ubuntu-release-upgrader-0.220.10/0000755000000000000000000000000013017612615013373 5ustar ubuntu-release-upgrader-0.220.10/AUTHORS0000644000000000000000000000057112431225715014446 0ustar Hackers ======= Michiel Sikkes Michael Vogt Translators =========== Jorge Bernal Jean Privat Martin Willemoes Hansen Zygmunt Krynicki Technical Author ================ Sean Wheller Icons ===== Jakub Steiner ubuntu-release-upgrader-0.220.10/missing0000755000000000000000000002403212431225715014773 0ustar #! /bin/sh # Common stub for a few missing GNU programs while installing. # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi case "$1" in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case "$1" in -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch]" ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing 0.4 - GNU automake" ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; aclocal*) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case "$f" in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is needed, and you do not seem to have it handy on your system. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.h fi ;; esac fi if [ ! -f y.tab.h ]; then echo >y.tab.h fi if [ ! -f y.tab.c ]; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if [ ! -f lex.yy.c ]; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` fi if [ -f "$file" ]; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then # We have makeinfo, but it failed. exit 1 fi echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` fi touch $file ;; tar) shift if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 fi # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case "$firstarg" in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case "$firstarg" in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and you do not seem to have it handy on your system. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 ubuntu-release-upgrader-0.220.10/tests/0000755000000000000000000000000013017612615014535 5ustar ubuntu-release-upgrader-0.220.10/tests/interactive_fetch_release_upgrader.py0000644000000000000000000000645112431225715024174 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- from __future__ import print_function import unittest from DistUpgrade.GtkProgress import GtkAcquireProgress from UpdateManager.UpdateManager import UpdateManager from UpdateManager.MetaReleaseGObject import MetaRelease from DistUpgrade.DistUpgradeFetcher import DistUpgradeFetcherGtk def _(s): return s # FIXME: use dogtail # something like (needs to run as a seperate process): # # from dogtail.procedural import * # focus.application('displayconfig-gtk') # focus.frame('Screen and Graphics Preferences') # click("Plug 'n' Play", roleName='push button') # focus.window('Choose Screen') # select('Flat Panel 1024x768', roleName='table cell') # keyCombo("Return") # click('OK', roleName='push button') class TestMetaReleaseGUI(unittest.TestCase): def setUp(self): self.new_dist = None def new_dist_available(self, meta_release, upgradable_to): #print("new dist: ", upgradable_to.name) #print("new dist: ", upgradable_to.version) #print("meta release: %s" % meta_release) self.new_dist = upgradable_to def testnewdist(self): meta = MetaRelease() uri = "http://changelogs.ubuntu.com/meta-release-unit-testing" meta.METARELEASE_URI = uri meta.connect("new_dist_available", self.new_dist_available) meta.download() self.assertTrue(meta.downloaded.is_set()) no_new_information = meta.check() self.assertFalse(no_new_information) self.assertTrue(self.new_dist is not None) class TestReleaseUpgradeFetcherGUI(unittest.TestCase): def _new_dist_available(self, meta_release, upgradable_to): self.new_dist = upgradable_to def setUp(self): meta = MetaRelease() uri = "http://changelogs.ubuntu.com/meta-release-unit-testing" meta.METARELEASE_URI = uri meta.connect("new_dist_available", self._new_dist_available) meta.download() self.assertTrue(meta.downloaded.is_set()) no_new_information = meta.check() self.assertFalse(no_new_information) self.assertTrue(self.new_dist is not None) def testdownloading(self): parent = UpdateManager("/usr/share/update-manager/", None) progress = GtkAcquireProgress(parent, "/usr/share/update-manager/", _("Downloading the upgrade " "tool"), _("The upgrade tool will " "guide you through the " "upgrade process.")) fetcher = DistUpgradeFetcherGtk(self.new_dist, parent=parent, progress=progress, datadir="/usr/share/update-manager/") self.assertTrue(fetcher.showReleaseNotes()) self.assertTrue(fetcher.fetchDistUpgrader()) self.assertTrue(fetcher.extractDistUpgrader()) fetcher.script = fetcher.tmpdir + "/gutsy" #fetcher.verifyDistUprader() self.assertTrue(fetcher.authenticate()) self.assertTrue(fetcher.runDistUpgrader()) if __name__ == '__main__': unittest.main() ubuntu-release-upgrader-0.220.10/tests/patchdir/0000755000000000000000000000000012431225715016333 5ustar ubuntu-release-upgrader-0.220.10/tests/patchdir/pycompile0000755000000000000000000003033012602567010020256 0ustar #! /usr/bin/python # -*- coding: utf-8 -*- # vim: et ts=4 sw=4 # Copyright © 2010 Piotr Ożarowski # Copyright © 2010 Canonical Ltd # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. from __future__ import with_statement import logging import optparse import os import sys from os import environ, listdir, walk from os.path import abspath, exists, isdir, isfile, join from subprocess import PIPE, STDOUT, Popen sys.path.insert(1, '/usr/share/python/') from debpython.version import SUPPORTED, debsorted, vrepr, \ get_requested_versions, parse_vrange, getver from debpython.option import Option, compile_regexpr from debpython.pydist import PUBLIC_DIR_RE from debpython.tools import memoize # initialize script logging.basicConfig(format='%(levelname).1s: %(module)s:%(lineno)d: ' '%(message)s') log = logging.getLogger(__name__) STDINS = {} WORKERS = {} """TODO: move it to manpage Examples: pycompile -p python-mako # package's public files pycompile -p foo /usr/share/foo # package's private files pycompile -p foo -V 2.6- /usr/share/foo # private files, Python >= 2.6 pycompile -V 2.6 /usr/lib/python2.6/dist-packages # python2.6 only pycompile -V 2.6 /usr/lib/foo/bar.py # python2.6 only """ ### FILES ###################################################### def get_directory_files(dname): """Generate *.py file names available in given directory.""" if isfile(dname) and dname.endswith('.py'): yield dname else: for root, dirs, file_names in walk(abspath(dname)): #if root != dname and not exists(join(root, '__init__.py')): # del dirs[:] # continue for fn in file_names: if fn.endswith('.py'): yield join(root, fn) def get_package_files(package_name): """Generate *.py file names available in given package.""" process = Popen("/usr/bin/dpkg -L %s" % package_name,\ shell=True, stdout=PIPE) stdout, stderr = process.communicate() if process.returncode != 0: log.error('cannot get content of %s', package_name) exit(2) for line in stdout.split('\n'): if line.endswith('.py'): yield line def get_private_files(files, dname): """Generate *.py file names that match given directory.""" for fn in files: if fn.startswith(dname): yield fn def get_public_files(files, versions): """Generate *.py file names that match given versions.""" versions_str = set("%d.%d" % i for i in versions) for fn in files: if fn.startswith('/usr/lib/python') and \ fn[15:18] in versions_str: yield fn ### EXCLUDES ################################################### @memoize def get_exclude_patterns_from_dir(name='/usr/share/python/bcep/'): """Return patterns for files that shouldn't be bytecompiled.""" if not isdir(name): return [] result = [] for fn in listdir(name): with file(join(name, fn), 'r') as lines: for line in lines: type_, vrange, dname, pattern = line.split('|', 3) vrange = parse_vrange(vrange) versions = get_requested_versions(vrange, available=True) if not versions: # pattern doesn't match installed Python versions continue pattern = pattern.rstrip('\n') if type_ == 're': pattern = compile_regexpr(None, None, pattern) result.append((type_, versions, dname, pattern)) return result def get_exclude_patterns(directory='/', patterns=None, versions=None): """Return patterns for files that shouldn't be compiled in given dir.""" if patterns: if versions is None: versions = set(SUPPORTED) patterns = [('re', versions, directory, i) for i in patterns] else: patterns = [] for type_, vers, dname, pattern in get_exclude_patterns_from_dir(): # skip patterns that do not match requested directory if not dname.startswith(directory[:len(dname)]): continue # skip patterns that do not match requested versions if versions and not versions & vers: continue patterns.append((type_, vers, dname, pattern)) return patterns def filter_files(files, e_patterns, compile_versions): """Generate (file, versions_to_compile) pairs.""" for fn in files: valid_versions = set(compile_versions) # all by default for type_, vers, dname, pattern in e_patterns: if type_ == 'dir' and fn.startswith(dname): valid_versions = valid_versions - vers elif type_ == 're' and pattern.match(fn): valid_versions = valid_versions - vers # move to the next file if all versions were removed if not valid_versions: break if valid_versions: public_dir = PUBLIC_DIR_RE.match(fn) if public_dir: yield fn, set([getver(public_dir.group(1))]) else: yield fn, valid_versions ### COMPILE #################################################### def py_compile(version, optimize, workers): if not isinstance(version, basestring): version = vrepr(version) cmd = "python%s%s -m py_compile -" \ % (version, '' if (__debug__ or not optimize) else ' -O') process = Popen(cmd, bufsize=1, shell=True, stdin=PIPE, close_fds=True) workers[version] = process # keep the reference for .communicate() stdin = process.stdin while True: filename = (yield) stdin.write(filename + '\n') def compile(files, versions, force, optimize, e_patterns=None): global STDINS, WORKERS # start Python interpreters that will handle byte compilation for version in versions: if version not in STDINS: coroutine = py_compile(version, optimize, WORKERS) coroutine.next() STDINS[version] = coroutine # byte compile files for fn, versions_to_compile in filter_files(files, e_patterns, versions): cfn = fn + 'c' if (__debug__ or not optimize) else 'o' if exists(cfn) and not force: ftime = os.stat(fn).st_mtime try: ctime = os.stat(cfn).st_mtime except os.error: ctime = 0 if (ctime > ftime): continue for version in versions_to_compile: try: pipe = STDINS[version] except KeyError: # `pycompile /usr/lib/` invoked, add missing worker pipe = py_compile(version, optimize, WORKERS) pipe.next() STDINS[version] = pipe pipe.send(fn) ################################################################ def main(): usage = '%prog [-V [X.Y][-][A.B]] DIR_OR_FILE [-X REGEXPR]\n' + \ ' %prog -p PACKAGE' parser = optparse.OptionParser(usage, version='%prog 0.9', option_class=Option) parser.add_option('-v', '--verbose', action='store_true', dest='verbose', help='turn verbose mode on') parser.add_option('-q', '--quiet', action='store_false', dest='verbose', default=False, help='be quiet') parser.add_option('-f', '--force', action='store_true', dest='force', default=False, help='force rebuild even if timestamps are up-to-date') parser.add_option('-O', action='store_true', dest='optimize', default=False, help="byte-compile to .pyo files") parser.add_option('-p', '--package', help='specify Debian package name whose files should be bytecompiled') parser.add_option('-V', type='version_range', dest='vrange', help="""force private modules to be bytecompiled with Python version from given range, regardless of the default Python version in the system. If there are no other options, bytecompile all public modules for installed Python versions that match given range. VERSION_RANGE examples: '2.5' (version 2.5 only), '2.5-' (version 2.5 or newer), '2.5-2.7' (version 2.5 or 2.6), '-3.0' (all supported 2.X versions)""") parser.add_option('-X', '--exclude', action='append', dest='regexpr', type='regexpr', help='exclude items that match given REGEXPR. You may use this option \ multiple times to build up a list of things to exclude.') (options, args) = parser.parse_args() if options.verbose or environ.get('PYCOMPILE_DEBUG') == '1': log.setLevel(logging.DEBUG) log.debug('argv: %s', sys.argv) log.debug('options: %s', options) log.debug('args: %s', args) else: log.setLevel(logging.WARN) if options.regexpr and not args: parser.error('--exclude option works with private directories ' 'only, please use /usr/share/python/bcep to specify ' 'public modules to skip') if options.vrange and options.vrange[0] == options.vrange[1] and\ options.vrange != (None, None) and\ exists("/usr/bin/python%d.%d" % options.vrange[0]): # specific version requested, use it even if it's not in SUPPORTED versions = set(options.vrange[:1]) else: versions = get_requested_versions(options.vrange, available=True) if not versions: log.error('Requested versions are not installed') exit(3) if options.package and args: # package's private directories # get requested Python version compile_versions = debsorted(versions)[:1] log.debug('compile versions: %s', versions) pkg_files = tuple(get_package_files(options.package)) for item in args: e_patterns = get_exclude_patterns(item, options.regexpr, \ compile_versions) if not exists(item): log.warn('No such file or directory: %s', item) else: log.debug('byte compiling %s using Python %s', item, compile_versions) files = get_private_files(pkg_files, item) compile(files, compile_versions, options.force, options.optimize, e_patterns) elif options.package: # package's public modules # no need to limit versions here, it's either pyr mode or version is # hardcoded in path / via -V option e_patterns = get_exclude_patterns() files = get_package_files(options.package) files = get_public_files(files, versions) compile(files, versions, options.force, options.optimize, e_patterns) elif args: # other directories/files (public ones mostly) versions = debsorted(versions)[:1] for item in args: e_patterns = get_exclude_patterns(item, options.regexpr, versions) files = get_directory_files(item) compile(files, versions, options.force, options.optimize, e_patterns) else: parser.print_usage() exit(1) # wait for all processes to finish rv = 0 for process in WORKERS.itervalues(): process.communicate() if process.returncode not in (None, 0): rv = process.returncode sys.exit(rv) if __name__ == '__main__': main() ubuntu-release-upgrader-0.220.10/tests/patchdir/dotdot_orig0000644000000000000000000000000212431225715020563 0ustar . ././@LongLink0000644000000000000000000000020100000000000011574 Lustar rootrootubuntu-release-upgrader-0.220.10/tests/patchdir/patchdir_fstab.a1b72f1370f4f847f602fd0e239265d2.c56d2d038afb651920c83106ec8dfd09ubuntu-release-upgrader-0.220.10/tests/patchdir/patchdir_fstab.a1b72f1370f4f847f602fd0e239265d2.c56d0000644000000000000000000000022712431225715026211 0ustar 17c # Some additional junk . 13a # lalal# lalalaa . 10c UUID=-05ff-43e4-9525-4206e8840761 / ext4 errors=remount-ro 0 1 . 3d ubuntu-release-upgrader-0.220.10/tests/patchdir/fail_orig0000644000000000000000000000011712431225715020210 0ustar This is a patch that is intended to fail to ensure that the md5sum check works ubuntu-release-upgrader-0.220.10/tests/patchdir/fail0000644000000000000000000000011712602567010017165 0ustar This is a patch that is intended to fail to ensure that the md5sum check works ubuntu-release-upgrader-0.220.10/tests/patchdir/dotdot0000644000000000000000000000000412602567010017542 0ustar . . ubuntu-release-upgrader-0.220.10/tests/patchdir/foo0000644000000000000000000000000612602567010017032 0ustar World ubuntu-release-upgrader-0.220.10/tests/patchdir/foo_orig0000644000000000000000000000001412431225715020054 0ustar Hello World ubuntu-release-upgrader-0.220.10/tests/patchdir/fstab0000644000000000000000000000132512602567010017353 0ustar # /etc/fstab: static file system information. # # for a device; this may be used with UUID= as a more robust way to name # devices that works even if disks are added and removed. See fstab(5). # # proc /proc proc nodev,noexec,nosuid 0 0 # / was on /dev/sda1 during installation UUID=-05ff-43e4-9525-4206e8840761 / ext4 errors=remount-ro 0 1 # swap was on /dev/sda5 during installation UUID=c8b0eb70-9f4c-4c38-81fe-7309fb1965d0 none swap sw 0 0 # lalal# lalalaa # 1.5tb disk UUID=e47814ee-ba9f-4c65-98cd-6f92a7fe26ba /space ext4 defaults 0 0 # Some additional junk ubuntu-release-upgrader-0.220.10/tests/patchdir/fstab_orig0000644000000000000000000000144112431225715020375 0ustar # /etc/fstab: static file system information. # # Use 'blkid -o value -s UUID' to print the universally unique identifier # for a device; this may be used with UUID= as a more robust way to name # devices that works even if disks are added and removed. See fstab(5). # # proc /proc proc nodev,noexec,nosuid 0 0 # / was on /dev/sda1 during installation UUID=6e45e093-05ff-43e4-9525-4206e8840761 / ext4 errors=remount-ro 0 1 # swap was on /dev/sda5 during installation UUID=c8b0eb70-9f4c-4c38-81fe-7309fb1965d0 none swap sw 0 0 # 1.5tb disk UUID=e47814ee-ba9f-4c65-98cd-6f92a7fe26ba /space ext4 defaults 0 0 #/dev/sr0 /cdrom iso9660 defaults 0 0 ././@LongLink0000644000000000000000000000017000000000000011601 Lustar rootrootubuntu-release-upgrader-0.220.10/tests/patchdir/patchdir_fail.ed04abbc6ee688ee7908c9dbb4b9e0a2.deadbeefdeadbeefdeadbeffubuntu-release-upgrader-0.220.10/tests/patchdir/patchdir_fail.ed04abbc6ee688ee7908c9dbb4b9e0a2.deadb0000644000000000000000000000000312431225715027044 0ustar 1d ././@LongLink0000644000000000000000000000020500000000000011600 Lustar rootrootubuntu-release-upgrader-0.220.10/tests/patchdir/patchdir_pycompile.b17cebfbf18d152702278b15710d5095.97c07a02e5951cf68cb3f86534f6f917ubuntu-release-upgrader-0.220.10/tests/patchdir/patchdir_pycompile.b17cebfbf18d152702278b15710d5095.0000644000000000000000000000420612431225715026423 0ustar 278a if process.returncode not in (None, 0): rv = process.returncode sys.exit(rv) . 276a rv = 0 . 271c compile(files, versions, options.force, options.optimize, e_patterns) . 265c compile(files, versions, options.force, options.optimize, e_patterns) . 258c compile(files, compile_versions, options.force, options.optimize, e_patterns) . 238c if options.vrange and options.vrange[0] == options.vrange[1] and\ options.vrange != (None, None) and\ exists("/usr/bin/python%d.%d" % options.vrange[0]): # specific version requested, use it even if it's not in SUPPORTED versions = set(options.vrange[:1]) else: versions = get_requested_versions(options.vrange, available=True) . 207a parser.add_option('-f', '--force', action='store_true', dest='force', default=False, help='force rebuild even if timestamps are up-to-date') parser.add_option('-O', action='store_true', dest='optimize', default=False, help="byte-compile to .pyo files") . 194c try: pipe = STDINS[version] except KeyError: # `pycompile /usr/lib/` invoked, add missing worker pipe = py_compile(version, optimize, WORKERS) pipe.next() STDINS[version] = pipe . 191,192c cfn = fn + 'c' if (__debug__ or not optimize) else 'o' if exists(cfn) and not force: ftime = os.stat(fn).st_mtime try: ctime = os.stat(cfn).st_mtime except os.error: ctime = 0 if (ctime > ftime): continue . 185c coroutine = py_compile(version, optimize, WORKERS) . 180c def compile(files, versions, force, optimize, e_patterns=None): . 170c cmd = "python%s%s -m py_compile -" \ % (version, '' if (__debug__ or not optimize) else ' -O') . 167c def py_compile(version, optimize, workers): . 31c from subprocess import PIPE, STDOUT, Popen . 27a import os . 5a # Copyright © 2010 Canonical Ltd . 2c # -*- coding: utf-8 -*- . ././@LongLink0000644000000000000000000000017700000000000011610 Lustar rootrootubuntu-release-upgrader-0.220.10/tests/patchdir/patchdir_foo.f41121a903eafadf258962abc57c8644.52f83ff6877e42f613bcd2444c22528cubuntu-release-upgrader-0.220.10/tests/patchdir/patchdir_foo.f41121a903eafadf258962abc57c8644.52f83f0000644000000000000000000000000312431225715026200 0ustar 1d ././@LongLink0000644000000000000000000000020200000000000011575 Lustar rootrootubuntu-release-upgrader-0.220.10/tests/patchdir/patchdir_dotdot.8cf8463b34caa8ac871a52d5dd7ad1ef.cddc4be46bedd91db15ddb9f7ddfa804ubuntu-release-upgrader-0.220.10/tests/patchdir/patchdir_dotdot.8cf8463b34caa8ac871a52d5dd7ad1ef.cdd0000644000000000000000000000001612431225715027036 0ustar 1a .. . s/.// ubuntu-release-upgrader-0.220.10/tests/patchdir/pycompile_orig0000755000000000000000000002535712431225715021316 0ustar #! /usr/bin/python # -*- coding: UTF-8 -*- # vim: et ts=4 sw=4 # Copyright © 2010 Piotr Ożarowski # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. from __future__ import with_statement import logging import optparse import sys from os import environ, listdir, walk from os.path import abspath, exists, isdir, isfile, join from subprocess import PIPE, Popen sys.path.insert(1, '/usr/share/python/') from debpython.version import SUPPORTED, debsorted, vrepr, \ get_requested_versions, parse_vrange, getver from debpython.option import Option, compile_regexpr from debpython.pydist import PUBLIC_DIR_RE from debpython.tools import memoize # initialize script logging.basicConfig(format='%(levelname).1s: %(module)s:%(lineno)d: ' '%(message)s') log = logging.getLogger(__name__) STDINS = {} WORKERS = {} """TODO: move it to manpage Examples: pycompile -p python-mako # package's public files pycompile -p foo /usr/share/foo # package's private files pycompile -p foo -V 2.6- /usr/share/foo # private files, Python >= 2.6 pycompile -V 2.6 /usr/lib/python2.6/dist-packages # python2.6 only pycompile -V 2.6 /usr/lib/foo/bar.py # python2.6 only """ ### FILES ###################################################### def get_directory_files(dname): """Generate *.py file names available in given directory.""" if isfile(dname) and dname.endswith('.py'): yield dname else: for root, dirs, file_names in walk(abspath(dname)): #if root != dname and not exists(join(root, '__init__.py')): # del dirs[:] # continue for fn in file_names: if fn.endswith('.py'): yield join(root, fn) def get_package_files(package_name): """Generate *.py file names available in given package.""" process = Popen("/usr/bin/dpkg -L %s" % package_name,\ shell=True, stdout=PIPE) stdout, stderr = process.communicate() if process.returncode != 0: log.error('cannot get content of %s', package_name) exit(2) for line in stdout.split('\n'): if line.endswith('.py'): yield line def get_private_files(files, dname): """Generate *.py file names that match given directory.""" for fn in files: if fn.startswith(dname): yield fn def get_public_files(files, versions): """Generate *.py file names that match given versions.""" versions_str = set("%d.%d" % i for i in versions) for fn in files: if fn.startswith('/usr/lib/python') and \ fn[15:18] in versions_str: yield fn ### EXCLUDES ################################################### @memoize def get_exclude_patterns_from_dir(name='/usr/share/python/bcep/'): """Return patterns for files that shouldn't be bytecompiled.""" if not isdir(name): return [] result = [] for fn in listdir(name): with file(join(name, fn), 'r') as lines: for line in lines: type_, vrange, dname, pattern = line.split('|', 3) vrange = parse_vrange(vrange) versions = get_requested_versions(vrange, available=True) if not versions: # pattern doesn't match installed Python versions continue pattern = pattern.rstrip('\n') if type_ == 're': pattern = compile_regexpr(None, None, pattern) result.append((type_, versions, dname, pattern)) return result def get_exclude_patterns(directory='/', patterns=None, versions=None): """Return patterns for files that shouldn't be compiled in given dir.""" if patterns: if versions is None: versions = set(SUPPORTED) patterns = [('re', versions, directory, i) for i in patterns] else: patterns = [] for type_, vers, dname, pattern in get_exclude_patterns_from_dir(): # skip patterns that do not match requested directory if not dname.startswith(directory[:len(dname)]): continue # skip patterns that do not match requested versions if versions and not versions & vers: continue patterns.append((type_, vers, dname, pattern)) return patterns def filter_files(files, e_patterns, compile_versions): """Generate (file, versions_to_compile) pairs.""" for fn in files: valid_versions = set(compile_versions) # all by default for type_, vers, dname, pattern in e_patterns: if type_ == 'dir' and fn.startswith(dname): valid_versions = valid_versions - vers elif type_ == 're' and pattern.match(fn): valid_versions = valid_versions - vers # move to the next file if all versions were removed if not valid_versions: break if valid_versions: public_dir = PUBLIC_DIR_RE.match(fn) if public_dir: yield fn, set([getver(public_dir.group(1))]) else: yield fn, valid_versions ### COMPILE #################################################### def py_compile(version, workers): if not isinstance(version, basestring): version = vrepr(version) cmd = "python%s -m py_compile -" % version process = Popen(cmd, bufsize=1, shell=True, stdin=PIPE, close_fds=True) workers[version] = process # keep the reference for .communicate() stdin = process.stdin while True: filename = (yield) stdin.write(filename + '\n') def compile(files, versions, e_patterns=None): global STDINS, WORKERS # start Python interpreters that will handle byte compilation for version in versions: if version not in STDINS: coroutine = py_compile(version, WORKERS) coroutine.next() STDINS[version] = coroutine # byte compile files for fn, versions_to_compile in filter_files(files, e_patterns, versions): if exists("%sc" % fn): continue for version in versions_to_compile: pipe = STDINS[version] pipe.send(fn) ################################################################ def main(): usage = '%prog [-V [X.Y][-][A.B]] DIR_OR_FILE [-X REGEXPR]\n' + \ ' %prog -p PACKAGE' parser = optparse.OptionParser(usage, version='%prog 0.9', option_class=Option) parser.add_option('-v', '--verbose', action='store_true', dest='verbose', help='turn verbose mode on') parser.add_option('-q', '--quiet', action='store_false', dest='verbose', default=False, help='be quiet') parser.add_option('-p', '--package', help='specify Debian package name whose files should be bytecompiled') parser.add_option('-V', type='version_range', dest='vrange', help="""force private modules to be bytecompiled with Python version from given range, regardless of the default Python version in the system. If there are no other options, bytecompile all public modules for installed Python versions that match given range. VERSION_RANGE examples: '2.5' (version 2.5 only), '2.5-' (version 2.5 or newer), '2.5-2.7' (version 2.5 or 2.6), '-3.0' (all supported 2.X versions)""") parser.add_option('-X', '--exclude', action='append', dest='regexpr', type='regexpr', help='exclude items that match given REGEXPR. You may use this option \ multiple times to build up a list of things to exclude.') (options, args) = parser.parse_args() if options.verbose or environ.get('PYCOMPILE_DEBUG') == '1': log.setLevel(logging.DEBUG) log.debug('argv: %s', sys.argv) log.debug('options: %s', options) log.debug('args: %s', args) else: log.setLevel(logging.WARN) if options.regexpr and not args: parser.error('--exclude option works with private directories ' 'only, please use /usr/share/python/bcep to specify ' 'public modules to skip') versions = get_requested_versions(options.vrange, available=True) if not versions: log.error('Requested versions are not installed') exit(3) if options.package and args: # package's private directories # get requested Python version compile_versions = debsorted(versions)[:1] log.debug('compile versions: %s', versions) pkg_files = tuple(get_package_files(options.package)) for item in args: e_patterns = get_exclude_patterns(item, options.regexpr, \ compile_versions) if not exists(item): log.warn('No such file or directory: %s', item) else: log.debug('byte compiling %s using Python %s', item, compile_versions) files = get_private_files(pkg_files, item) compile(files, compile_versions, e_patterns) elif options.package: # package's public modules # no need to limit versions here, it's either pyr mode or version is # hardcoded in path / via -V option e_patterns = get_exclude_patterns() files = get_package_files(options.package) files = get_public_files(files, versions) compile(files, versions, e_patterns) elif args: # other directories/files (public ones mostly) versions = debsorted(versions)[:1] for item in args: e_patterns = get_exclude_patterns(item, options.regexpr, versions) files = get_directory_files(item) compile(files, versions, e_patterns) else: parser.print_usage() exit(1) # wait for all processes to finish for process in WORKERS.itervalues(): process.communicate() if __name__ == '__main__': main() ubuntu-release-upgrader-0.220.10/tests/patchdir/dotdot_expected0000644000000000000000000000000412431225715021426 0ustar . . ubuntu-release-upgrader-0.220.10/tests/test-data-cdrom/0000755000000000000000000000000012431225715017525 5ustar ubuntu-release-upgrader-0.220.10/tests/test-data-cdrom/cdromupgrade0000755000000000000000000000166412431225715022136 0ustar #!/bin/sh # # "cdromupgrade" is a shell script wrapper around the dist-upgrader # to make it possible to put it onto the top-level dir of a CD and # run it from there # # Not that useful unfortunately when the CD is mounted "noexec". # # WARNING: make sure to call it with a absolute path! # (e.g. /cdrom/cdromupgrade) # the codename is AUTO-GENERATED from the build-host relase codename CODENAME=intrepid UPGRADER_DIR=dists/stable/main/dist-upgrader/binary-all/ cddirname="${0%\/*}" fullpath="$cddirname/$UPGRADER_DIR" # extrace the tar to a TMPDIR and run it from there if [ ! -f "$fullpath/$CODENAME.tar.gz" ]; then echo "Could not find the upgrade application archive, exiting" exit 1 fi TMPDIR=$(mktemp -d) cd $TMPDIR tar xzf "$fullpath/$CODENAME.tar.gz" if [ ! -x $TMPDIR/$CODENAME ]; then echo "Could not find the upgrade application in the archive, exiting" exit 1 fi $TMPDIR/$CODENAME --cdrom "$cddirname" $@ ubuntu-release-upgrader-0.220.10/tests/test-data-cdrom/install/0000755000000000000000000000000012431225715021173 5ustar ubuntu-release-upgrader-0.220.10/tests/test-data-cdrom/doc/0000755000000000000000000000000012431225715020272 5ustar ubuntu-release-upgrader-0.220.10/tests/test-data-cdrom/doc/install/0000755000000000000000000000000012431225715021740 5ustar ubuntu-release-upgrader-0.220.10/tests/test-data-cdrom/doc/install/manual/0000755000000000000000000000000012431225715023215 5ustar ubuntu-release-upgrader-0.220.10/tests/test-data-cdrom/doc/install/manual/en/0000755000000000000000000000000012431225715023617 5ustar ubuntu-release-upgrader-0.220.10/tests/test-data-cdrom/doc/install/manual/example-preseed.txt.gz0000644000000000000000000001204712431225715027461 0ustar [msǑ_1G" /b*uĪر˔j;&\lvv R>맻g_\wUHlOO>|*+h4ge\u[ƇҬ|*7+[o2[Du&:Wrڵ3Mڲg'ԛ--- W }}6\>!jr`.3vImۄ-m3OG-uomE4IgpSb6,dY1mɓõې"o*x~haC W}cͭM|r#AV~0Э6%BK鰤mz__0KG۹t!om kϮمƌO;VkmBPailmc6tCW!FOʙ`~ko\4!RƓN|glo:H VI&E'̅EB-É lM0 s6WMl.A(eX3&hY}j6o(3gc͙ NKJ#BUQb6b FCW%tr@Zڲ%F'-ݒw˶%F"װǔO9[4u,oP!y/=ޓ*50&G<>#;Yb'Q/R^Yb*7ehPݘU'}9׏r5 P9XLݳf˃徲y^xdfK-},8X_So*}^ޛM :)29.IΫ:lE 6<.(έ-ZST03_cGHPvZ ,[N_x/FxKqv`!OzFQΓby1M_S Nɋ#-/_~Ea=betc\\;܋8;^l\^H c$̑8bx\[r$o|]P-9VMY"5w&h?2 KʄSա Y(KDdx8pi!ᬍ3P^IYzvI[ } 4D~$Gi*4hU6-gEy}&-Z:l6XmƫaCyEFB4e3Yȉ:6[0І R͘@{J(!uJETseK1<],(>y_/IYȼEb/Wa"7]Ͽjvê.;(\me0)#B|1"w+Kz m%ߠ(G,XcSE?ܝVH`#(|hpU@c(P85KĪQ") 3 LFho}F,jvg&&s_fѕ Hۋ 5_Ɇd T:K\W@(,N8D_ xk*##/|[D1$ $Lx󷟳0 W'eR< 10B:Wc&wdZ9喰RՄx$gjXG8681h sIX  X *AP1~ˁ MiXODIrȧB^#  h5vksJ&sqT PJ^P Q;u`7\7Z\.H ,kBf %jc C'z5Q +]aƒfѹsmI_pyذ58"K@B54X77FA`h7&(yj _!?1+r܂wzW?C]kXpXl(\kG/z+&+;6y2@ -ػlQm,IhAt7\cTVh^?~q>>r6NJt1 HH<е,] &}[օA] [Gg6>R\ẆlLYsQu\ţ!%t|I;ө\yPb.RL77KXqwIpɧ[GP.5SL㵵:;cM(&-jV6uQ.%

ŃzDD MՕ@<0$淿@?'`/J@OɨH5/^\;|U)'!xB:]Wo&)HCF&b:$9]Ȃ+`c$bGh*;YRZI= o ](vSD^2O^B\z6Kkpw"lniC4O4[ڙ3n`ִCҜRNd=Jt[2+&0Laq~q\3DF`%X]w&X@r0݊H ̢Љmcys3WKfwWh$\.헔wx#o1}![<7Qvk~/.5Zq%Q.W%yfRGo͎`LWmQ {︭gET{G^iZy?FP\Fhb(i>&'o0hl7YWټ]|yqyqs+S<&V\.UD[#>@y )Gm4T}AJנ)!êAr%끠ْlk4'|bzB;`BQ`+@- nP=gN47&GqbRVMjk"9i_CQ_Cоa 02:qS?j QR)r/72o4Lf$S:١aؗG)FxNo7%SSDS1x na^ە{ѹ'l>m (sYc_fEO܄ʕ1nʲE>u}js42 )֌rҞ'MxA}lpGv{I-JB :\w‰p .B0B%[ILWTQ;[r[v^<%*Ux$9SHxi@S8w?ː4:iܖ2u%=C/y`Tk [ _^*ZBT:?[.Za/.&ХRVaRP%x-}tTsk*]9-&P,%4C ('M +\-!Kwk z'GVBqHYcHɣ`Tf]bLW`#K}*&±^3~/x"qqWNa9Ja)Ϙc.kxco0Gm8^uw0;q%ٵRǙƔpT3QRՑ ]ftz>W$1zl#=mRe7.060JQةx:id@yn@ k*9RYa#~1ohA]*V\r !z߄eGn vEpis\Rϋl7CK~ ~rBIW$ét2W OG,<&iS2s<}?Dѕ*S6%R߅OGS.)]^1j֘m s!"AKY0G ,dB {< ߧ|.5ȚSf.ܒ>DI}M_ K{%ArH^#+/8u ,/KS3{l-O4T;VA;T^^f͛c! H/gFr<1U Á3 Ჷ^_` #%6xzܾyYΝ;8>Cڶ+⟱O,Dz@Cwoie z{{ݞaz'4)%^B-T.z(fQ@oVK]tŵ\2g?R9F~Q1j)/i~6B\Eͳ4/1Lʫ/J0zKOEE'ETֶ*a8tT8Fcw0r(ߛH#*~M1#q'~add0odʫ0i;+}?IQBEJCՌC&3+`6"YU)2e͕lZW~/J((!i7ReH:O> @SqRjR}.&r~W d3e&I|˒4 $la Rbp7jZ}S.?7f װwIX5 I~A&FgM~Tk կ:>[O,dA{+[? #ºp2d 5 ~5U[̫Ggu-\rC׵tmuQ4b[r蹾[nm>~Fb31h` s~ 4O5kpgR/A ِYg/x:&#h9JIt e+=e_Bk4r]W3v&j=7~]>+\.j@%%ʁH&U߮m*"ݥ0VG@?PPd8IYg*jK%ԗe0Jwq2"O)xv8\;zZm /^P:Im YQC̆QOF鉜ٴ3A8><ƹ\k@/?6o o>]38C5?uFs ؂ I^O 5$.G+\${T*DEmixm? 7컁7\,<xUm#> i2lU)%dqwU|{"ܖK5ݐ!m4 2#t M 6@'=wXZ(l{0N_:r3q&ceMA8vk+\05=m&[fwAk6o]-!*T؍ں˟0$~dwXW0s? x y kn`2;7op'7GR&J J] t:#2DԚRR|_inIHMiy]}(5QϨl̵4[]%MiV"HT`:Mϕr);&2+-\]!\KqϪY9P-le!:1`BeSsՁ"? $~$cwsE>oru, T˲Zm$@&eaG#LMjd;1Ã:5&At.5/*2ciމ큩{uQHgA(xDSQ}WnDʘF dOϑ jW_A5pע-tJN- ߷Rg4>BI81zg+r W*M) YԿ{tB7X!q76_w^CTB={-U#GWvĕ\x^JvzTg# t/'$(JHG#8TO$#8A-]zDkgԧ,5 hH]E\]:j<Glg4*Q16]Td.- BL-EZ WhG )z^+It{82[k R: ۶& \X:}o{zw[^X5Z@t5^t@|=uI.&wɼ4;KмmXO(_7ϭp)]ABBS?Q]nGfo3M`Ȉ"I4}4_!!XR5?U= zg7\K5аH xjiIC(],7ڮSSl{5e;nC'Á=kɁ0 @YA;Ru'~'G-"lFwB)9lM*&$fZO=M!ec>-^`xCGZ}yxbMojdCC؟;&V7ay3lĢ۴=ub=;< ]#wn !v"Xȭp2vGҲVCշa(mk_Q ެ7է>lZ;G;.F0 {6<@ㆳ 溆; ohۖco[G-v[T)%2P',oCv-ק4NUd*#nT9UWsR꘷5?c"Ux}YV;'"ӄ(F6J]5$7gf1e\)K{YByj5׈SeS3`PrUU@ &D ofSTi BIĴFQѠy[= 7(rt5Ћm!5UD!vsBP4f PhTwRvأ8ɂ'c(A頓VAlth۸r- 6N4v`ޝU), (4!)^kҒ DOΙXZ| (7z0u<7,#%ddG rծgX03XO|ŵ 1acԩKala[;Cq=g!P_WU|)n+?"?e$?B@M~"__m/^MqB.8K]rSRޥ8Z ő/3ݘCYU65O< üN!v9dS J)Ʋ@`|e)k!JGc4N2+]fze y ڨe1QhRhP2:nzۮ5}D?Œ#̑A{TuM|}o۾¼alh0~U?ts觗yɄY$WqcȹG!l/@b~tyr1Ę(s<;1Dw7,r*hg^EB6,:g3CQk8dQ^L;(T D|T}n*'r~ cq|"`q WD_ҿط| ğųtr3K0ԃ"tᙙdmx 0.8d#.` xlZ#ˊz)@5\hR4RD l1Z? G)T8dy,au d:X̡j=&ђǡO_܌C=G2RJuCM9w"{HC/Ho#yo6p'4 :⋙-~"4n7xj17˄%D" Tuȁ$#b?r& /vNe/'MGja?d^v~\›) Wof۴BC"5seq#iƒ+o؊?%LplV7Xބf g|)me#KSROъHEH503߶IюCqA%fKN(S'q眙ѧ łubǻr>D 3( @'ᕌ,eMV،*ӳb \BF^ORia PvS<=&֛1ʾkmWubA§ Skubuntu-release-upgrader-0.220.10/tests/test-data-cdrom/dists/stable0000777000000000000000000000000012431225715023606 2intrepidustar ubuntu-release-upgrader-0.220.10/tests/test-data-cdrom/dists/unstable0000777000000000000000000000000012431225715024151 2intrepidustar ubuntu-release-upgrader-0.220.10/tests/Makefile0000644000000000000000000000017412431225715016177 0ustar #!/usr/bin/make mago_test: #MAGO_SHARE=./mago/ mago -f basic.xml MAGO_SHARE=./mago/ mago --log-level=debug -f basic.xml ubuntu-release-upgrader-0.220.10/tests/test-data/0000755000000000000000000000000012431225715016423 5ustar ubuntu-release-upgrader-0.220.10/tests/test-data/xorg.conf.multiseat0000644000000000000000000001007112431225715022256 0ustar Section "Files" FontPath "/usr/share/X11/fonts/misc" FontPath "/usr/share/X11/fonts/cyrillic" FontPath "/usr/share/X11/fonts/100dpi/:unscaled" FontPath "/usr/share/X11/fonts/75dpi/:unscaled" FontPath "/usr/share/X11/fonts/Type1" FontPath "/usr/share/X11/fonts/100dpi" FontPath "/usr/share/X11/fonts/75dpi" FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" EndSection Section "Module" Load "i2c" Load "bitmap" Load "ddc" Load "extmod" Load "freetype" Load "glx" Load "int10" Load "type1" Load "vbe" EndSection Section "ServerFlags" Option "DontZap" "true" EndSection # # Section "InputDevice" Identifier "Keyboard 0" Driver "evdev" Option "Device" "/dev/input/event1" Option "CoreKeyboard" Option "Protocol" "evdev" Option "XkbModel" "evdev" EndSection Section "InputDevice" Identifier "Mouse 0" Driver "mouse" Option "CorePointer" Option "Device" "/dev/input/by-id/usb-A4Tech_Wireless_Battery_Free_Optical_Mouse-mouse" Option "Protocol" "ExplorerPS/2" Option "ZAxisMapping" "4 5" EndSection Section "Monitor" Identifier "Monitor #0" Option "DPMS" EndSection Section "Device" Identifier "GeForce 6600 LE #0" Driver "nvidia" BusID "PCI:5:0:0" Option "NoLogo" "1" EndSection Section "Screen" Identifier "Screen 0" Device "GeForce 6600 LE #0" Monitor "Monitor #0" DefaultDepth 24 Option "AddARGBGLXVisuals" "True" SubSection "Display" Depth 24 Modes "1280x1024" EndSubSection EndSection Section "ServerLayout" Identifier "Layout0" Screen "Screen 0" InputDevice "Keyboard 0" InputDevice "Mouse 0" Option "AutoAddDevices" "off" EndSection # # # Section "InputDevice" Identifier "Keyboard 1" Driver "evdev" Option "Device" "/dev/input/event30" Option "CoreKeyboard" Option "Protocol" "evdev" Option "XkbModel" "evdev" EndSection Section "InputDevice" Identifier "Mouse 1" Driver "mouse" Option "CorePointer" Option "Device" "/dev/input/by-id/usb-Logitech_USB-PS.2_Optical_Mouse-mouse" Option "Protocol" "ExplorerPS/2" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" Identifier "stylus" Driver "wacom" Option "Device" "/dev/input/wacom" Option "Type" "stylus" Option "USB" "on" EndSection Section "InputDevice" Identifier "eraser" Driver "wacom" Option "Device" "/dev/input/wacom" Option "Type" "eraser" Option "USB" "on" EndSection Section "InputDevice" Identifier "cursor" Driver "wacom" Option "Device" "/dev/input/wacom" Option "Type" "cursor" Option "USB" "on" EndSection Section "Monitor" Identifier "Monitor #1" Option "DPMS" EndSection Section "Device" Identifier "GeForce 6600 LE #1" Driver "nvidia" BusID "PCI:4:0:0" Option "NoLogo" "1" EndSection Section "Screen" Identifier "Screen 1" Device "GeForce 6600 LE #1" Monitor "Monitor #1" DefaultDepth 24 Option "AddARGBGLXVisuals" "True" SubSection "Display" Depth 24 Modes "1680x1050" "1280x1024" EndSubSection EndSection Section "ServerLayout" Identifier "Layout1" Screen "Screen 1" InputDevice "Keyboard 1" InputDevice "Mouse 1" InputDevice "stylus" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" InputDevice "cursor" "SendCoreEvents" Option "AutoAddDevices" "off" EndSection ubuntu-release-upgrader-0.220.10/tests/test-data/cpuinfo-i5860000644000000000000000000000101412431225715020476 0ustar processor : 0 vendor_id : AuthenticAMD cpu family : 5 model : 10 model name : Geode(TM) Integrated Processor by AMD PCS stepping : 2 cpu MHz : 431.243 cache size : 128 KB fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : 1 wp : yes flags : fpu de pse tsc msr cx8 sep pge cmov clflush mmx mmxext 3dnowext 3dnow bogomips : 863.54 clflush size : 32 ubuntu-release-upgrader-0.220.10/tests/test-data/cpuinfo-i4860000644000000000000000000000053512431225715020504 0ustar processor : 0 vendor_id : unknown cpu family : 4 model : 0 model name : unknown stepping : unknown fdiv_bug : no hlt_bug : no sep_bug : no f00f_bug : no fpu : no fpu_exception : no cpuid level : -1 wp : yes flags : bogomips : 16.54 ubuntu-release-upgrader-0.220.10/tests/test-data/fstab.ntfs.original0000644000000000000000000000173712431225715022231 0ustar # /etc/fstab: static file system information. # # Use 'vol_id --uuid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # proc /proc proc defaults 0 0 # / was on /dev/sda1 during installation UUID=xxxxxxx-ba9f-4232-xxxx-xxxxxxx / ext4 relatime,errors=remount-ro 0 1 # swap was on /dev/sda5 during installation UUID=xxxxxxxx-xxx-xxxx-b210-xxxxxxxxa none swap sw 0 0 /dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0 /dev/sdb1 /media/xxx ext3 defaults 0 0 UUID=7260D4F760D4C2c2 /media/storage ntfs defaults,nls=utf8,umask=000,gid=46 0 1 /dev/sdb1 /media/xxx ext3 defaults 0 0 UUID=7260D4F760D4C2D1 /media/storage ntfs defaults,nls=utf8,umask=000,gid=46 0 1ubuntu-release-upgrader-0.220.10/tests/test-data/cpuinfo-without-sse0000644000000000000000000000231412431225715022302 0ustar processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 14 model name : Genuine Intel(R) CPU T2500 @ 2.00GHz stepping : 8 cpu MHz : 1000.000 cache size : 2048 KB physical id : 0 siblings : 2 core id : 0 cpu cores : 2 apicid : 0 initial apicid : 0 fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : 10 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor vmx est tm2 xtpr bogomips : 3989.95 clflush size : 64 power management: processor : 1 vendor_id : GenuineIntel cpu family : 6 model : 14 model name : Genuine Intel(R) CPU T2500 @ 2.00GHz stepping : 8 cpu MHz : 1000.000 cache size : 2048 KB physical id : 0 siblings : 2 core id : 1 cpu cores : 2 apicid : 1 initial apicid : 1 fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : 10 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor vmx est tm2 xtpr bogomips : 3990.06 clflush size : 64 power management: ubuntu-release-upgrader-0.220.10/tests/test-data/xorg.conf0000644000000000000000000000371312431225715020255 0ustar # xorg.conf (xorg X Window System server configuration file) # # This file was generated by failsafeDexconf, using # values from the debconf database and some overrides to use vesa mode. # # You should use dexconf or another such tool for creating a "real" xorg.conf # For example: # sudo dpkg-reconfigure -phigh xserver-xorg Section "Files" EndSection #Section "Module" # Disable "dbe" # Disable "dri" # Disable "glx" # Disable "vbe" #EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc104" Option "XkbLayout" "de" Option "XkbOptions" "ctrl:nocaps" EndSection #Section "InputDevice" # Identifier "Configured Mouse" # Driver "mouse" # Option "CorePointer" # Option "Device" "/dev/input/mice" # Option "Protocol" "ImPS/2" # Option "ZAxisMapping" "4 5" # Option "Emulate3Buttons" "true" # Option "EmulateWheel" "true" # Option "EmulateWheelButton" "2" #EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "evdev" Option "Device" "/dev/input/input9" Option "Emulate3Buttons" "true" Option "EmulateWheel" "true" Option "EmulateWheelButton" "2" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" Option "HorizScrollDelta" "0" EndSection Section "Device" Identifier "Failsafe Device" #Driver "vesa" #Driver "radeonhd" Driver "ati" # or "fglrx" #Driver "fglrx" EndSection Section "Monitor" Identifier "Failsafe Monitor" Option "DPMS" EndSection Section "Screen" Identifier "Default Screen" Device "Failsafe Device" Monitor "Failsafe Monitor" #Input "Configured Mouse" Defaultdepth 24 SubSection "Display" Depth 24 Modes "1400x1050" EndSubSection EndSection Section "ServerLayout" EndSection #Section "ServerLayout" #EndSection ubuntu-release-upgrader-0.220.10/tests/test-data/cpuinfo-without-cmov0000644000000000000000000000275012431225715022460 0ustar processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 23 model name : Intel(R) Core(TM)2 Duo CPU E7500 @ 2.93GHz stepping : 10 cpu MHz : 1600.000 cache size : 3072 KB physical id : 0 siblings : 2 core id : 0 cpu cores : 2 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 13 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm tpr_shadow vnmi flexpriority bogomips : 5866.60 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: processor : 1 vendor_id : GenuineIntel cpu family : 6 model : 23 model name : Intel(R) Core(TM)2 Duo CPU E7500 @ 2.93GHz stepping : 10 cpu MHz : 1600.000 cache size : 3072 KB physical id : 0 siblings : 2 core id : 1 cpu cores : 2 apicid : 1 initial apicid : 1 fpu : yes fpu_exception : yes cpuid level : 13 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm tpr_shadow vnmi flexpriority bogomips : 5866.57 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: ubuntu-release-upgrader-0.220.10/tests/test-data/meta-release0000644000000000000000000001424212431225715020715 0ustar Dist: warty Name: Warty Warthog Version: 04.10 Date: Wed, 20 Oct 2004 07:28:17 UTC Supported: 0 Description: This is the warty warthog release Release-File: http://archive.ubuntu.com/ubuntu/dists/warty/Release Dist: hoary Name: Hoary Hedgehog Version: 05.04 Date: Fri, 08 Apr 2005 08:18:19 UTC Supported: 0 Description: This is the Hoary Hedgehog release Release-File: http://archive.ubuntu.com/ubuntu/dists/hoary/Release Dist: breezy Name: Breezy Badger Version: 05.10 Date: Thu, 13 Oct 2005 19:34:42 UTC Supported: 0 Description: This is the Breezy Badger release Release-File: http://archive.ubuntu.com/ubuntu/dists/breezy/Release Dist: dapper Name: Dapper Drake Version: 6.06 LTS Date: Thu, 01 Jun 2006 9:00:00 UTC Supported: 1 Description: This is the Dapper Drake release Release-File: http://archive.ubuntu.com/ubuntu/dists/dapper/Release ReleaseNotes: http://changelogs.ubuntu.com/DapperReleaseAnnouncement UpgradeTool: http://archive.ubuntu.com/ubuntu/dists/dapper/main/dist-upgrader-all/current/dapper.tar.gz UpgradeToolSignature: http://archive.ubuntu.com/ubuntu/dists/dapper/main/dist-upgrader-all/current/dapper.tar.gz.gpg Dist: edgy Name: Edgy Eft Version: 6.10 Date: Thu, 26 Oct 2006 12:00:00 UTC Supported: 0 Description: This is the Edgy Eft release Release-File: http://archive.ubuntu.com/ubuntu/dists/edgy/Release ReleaseNotes: http://changelogs.ubuntu.com/EdgyReleaseAnnouncement UpgradeTool: http://archive.ubuntu.com/ubuntu/dists/edgy-updates/main/dist-upgrader-all/current/edgy.tar.gz UpgradeToolSignature: http://archive.ubuntu.com/ubuntu/dists/edgy-updates/main/dist-upgrader-all/current/edgy.tar.gz.gpg Dist: feisty Name: Feisty Fawn Version: 7.04 Date: Thu, 19 Apr 2007 13:00:00 +0200 Supported: 0 Description: This is the 7.04 release Release-File: http://old-releases.ubuntu.com/ubuntu/dists/feisty/Release ReleaseNotes: http://old-releases.ubuntu.com/ubuntu/dists/feisty-proposed/main/dist-upgrader-all/current/ReleaseAnnouncement UpgradeTool: http://old-releases.ubuntu.com/ubuntu/dists/feisty-proposed/main/dist-upgrader-all/current/feisty.tar.gz UpgradeToolSignature: http://old-releases.ubuntu.com/ubuntu/dists/feisty-proposed/main/dist-upgrader-all/current/feisty.tar.gz.gpg Dist: gutsy Name: Gutsy Gibbon Version: 7.10 Date: Thu, 18 Oct 2007 12:00:00 UTC Supported: 0 Description: This is the 7.10 release Release-File: http://archive.ubuntu.com/ubuntu/dists/gutsy/Release ReleaseNotes: http://archive.ubuntu.com/ubuntu/dists/gutsy/main/dist-upgrader-all/current/ReleaseAnnouncement UpgradeTool: http://archive.ubuntu.com/ubuntu/dists/gutsy/main/dist-upgrader-all/current/gutsy.tar.gz UpgradeToolSignature: http://archive.ubuntu.com/ubuntu/dists/gutsy/main/dist-upgrader-all/current/gutsy.tar.gz.gpg Dist: hardy Name: Hardy Heron Version: 8.04 LTS Date: Thu, 24 Apr 2008 12:00:00 UTC Supported: 1 Description: This is the 8.04 LTS release Release-File: http://archive.ubuntu.com/ubuntu/dists/hardy/Release ReleaseNotes: http://archive.ubuntu.com/ubuntu/dists/hardy-proposed/main/dist-upgrader-all/0.87.30/ReleaseAnnouncement UpgradeTool: http://archive.ubuntu.com/ubuntu/dists/hardy-proposed/main/dist-upgrader-all/0.87.30/hardy.tar.gz UpgradeToolSignature: http://archive.ubuntu.com/ubuntu/dists/hardy-proposed/main/dist-upgrader-all/0.87.30/hardy.tar.gz.gpg Dist: lucid Name: Lucid Lynx Version: 10.04 LTS Date: Thu, 30 Oct 2008 12:00:00 UTC Supported: 1 Description: This is the 10.04 LTS release Release-File: http://archive.ubuntu.com/ubuntu/dists/lucid/Release ReleaseNotes: http://archive.ubuntu.com/ubuntu/dists/lucid/main/dist-upgrader-all/current/ReleaseAnnouncement ReleaseNotesHtml: http://archive.ubuntu.com/ubuntu/dists/lucid/main/dist-upgrader-all/current/ReleaseAnnouncement UpgradeTool: http://archive.ubuntu.com/ubuntu/dists/lucid/main/dist-upgrader-all/current/lucid.tar.gz UpgradeToolSignature: http://archive.ubuntu.com/ubuntu/dists/lucid/main/dist-upgrader-all/current/lucid.tar.gz.gpg Dist: intrepid Name: Intrepid Ibex Version: 8.10 Date: Thu, 30 Oct 2008 12:00:00 UTC Supported: 0 Description: This is the 8.10 release Release-File: http://archive.ubuntu.com/ubuntu/dists/intrepid/Release ReleaseNotes: http://archive.ubuntu.com/ubuntu/dists/intrepid-proposed/main/dist-upgrader-all/0.93.34/ReleaseAnnouncement UpgradeTool: http://archive.ubuntu.com/ubuntu/dists/intrepid-proposed/main/dist-upgrader-all/0.93.34/intrepid.tar.gz UpgradeToolSignature: http://archive.ubuntu.com/ubuntu/dists/intrepid-proposed/main/dist-upgrader-all/0.93.34/intrepid.tar.gz.gpg Dist: jaunty Name: Jaunty Jackalope Version: 9.04 Date: Thu, 23 Apr 2009 12:00:00 UTC Supported: 1 Description: This is the 9.04 release Release-File: http://archive.ubuntu.com/ubuntu/dists/jaunty/Release ReleaseNotes: http://archive.ubuntu.com/ubuntu/dists/jaunty-proposed/main/dist-upgrader-all/0.111.8/ReleaseAnnouncement UpgradeTool: http://archive.ubuntu.com/ubuntu/dists/jaunty-proposed/main/dist-upgrader-all/0.111.8/jaunty.tar.gz UpgradeToolSignature: http://archive.ubuntu.com/ubuntu/dists/jaunty-proposed/main/dist-upgrader-all/0.111.8/jaunty.tar.gz.gpg Dist: karmic Name: Karmic Koala Version: 9.10 Date: Thu, 29 Oct 2009 12:00:00 UTC Supported: 1 Description: This is the 9.10 release Release-File: http://archive.ubuntu.com/ubuntu/dists/karmic/Release ReleaseNotes: http://archive.ubuntu.com/ubuntu/dists/karmic-proposed/main/dist-upgrader-all/0.126.9/ReleaseAnnouncement UpgradeTool: http://archive.ubuntu.com/ubuntu/dists/karmic-proposed/main/dist-upgrader-all/0.126.9/karmic.tar.gz UpgradeToolSignature: http://archive.ubuntu.com/ubuntu/dists/karmic-proposed/main/dist-upgrader-all/0.126.9/karmic.tar.gz.gpg Dist: lucid Name: Lucid Lynx Version: 10.04 LTS Date: Thu, 29 Apr 2010 12:00:00 UTC Supported: 1 Description: This is the 10.04 LTS release Release-File: http://archive.ubuntu.com/ubuntu/dists/lucid/Release ReleaseNotes: http://archive.ubuntu.com/ubuntu/dists/lucid/main/dist-upgrader-all/current/ReleaseAnnouncement ReleaseNotesHtml: http://archive.ubuntu.com/ubuntu/dists/lucid/main/dist-upgrader-all/current/ReleaseAnnouncement UpgradeTool: http://archive.ubuntu.com/ubuntu/dists/lucid/main/dist-upgrader-all/current/lucid.tar.gz UpgradeToolSignature: http://archive.ubuntu.com/ubuntu/dists/lucid/main/dist-upgrader-all/current/lucid.tar.gz.gpg ubuntu-release-upgrader-0.220.10/tests/test-data/xorg.conf.original0000644000000000000000000000371312431225715022060 0ustar # xorg.conf (xorg X Window System server configuration file) # # This file was generated by failsafeDexconf, using # values from the debconf database and some overrides to use vesa mode. # # You should use dexconf or another such tool for creating a "real" xorg.conf # For example: # sudo dpkg-reconfigure -phigh xserver-xorg Section "Files" EndSection #Section "Module" # Disable "dbe" # Disable "dri" # Disable "glx" # Disable "vbe" #EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc104" Option "XkbLayout" "de" Option "XkbOptions" "ctrl:nocaps" EndSection #Section "InputDevice" # Identifier "Configured Mouse" # Driver "mouse" # Option "CorePointer" # Option "Device" "/dev/input/mice" # Option "Protocol" "ImPS/2" # Option "ZAxisMapping" "4 5" # Option "Emulate3Buttons" "true" # Option "EmulateWheel" "true" # Option "EmulateWheelButton" "2" #EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "evdev" Option "Device" "/dev/input/input9" Option "Emulate3Buttons" "true" Option "EmulateWheel" "true" Option "EmulateWheelButton" "2" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" Option "HorizScrollDelta" "0" EndSection Section "Device" Identifier "Failsafe Device" #Driver "vesa" #Driver "radeonhd" Driver "ati" # or "fglrx" #Driver "fglrx" EndSection Section "Monitor" Identifier "Failsafe Monitor" Option "DPMS" EndSection Section "Screen" Identifier "Default Screen" Device "Failsafe Device" Monitor "Failsafe Monitor" #Input "Configured Mouse" Defaultdepth 24 SubSection "Display" Depth 24 Modes "1400x1050" EndSubSection EndSection Section "ServerLayout" EndSection #Section "ServerLayout" #EndSection ubuntu-release-upgrader-0.220.10/tests/test-data/cpuinfo-with-sse0000644000000000000000000000233612431225715021556 0ustar processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 14 model name : Genuine Intel(R) CPU T2500 @ 2.00GHz stepping : 8 cpu MHz : 2000.000 cache size : 2048 KB physical id : 0 siblings : 2 core id : 0 cpu cores : 2 apicid : 0 initial apicid : 0 fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : 10 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor vmx est tm2 xtpr bogomips : 3989.95 clflush size : 64 power management: processor : 1 vendor_id : GenuineIntel cpu family : 6 model : 14 model name : Genuine Intel(R) CPU T2500 @ 2.00GHz stepping : 8 cpu MHz : 2000.000 cache size : 2048 KB physical id : 0 siblings : 2 core id : 1 cpu cores : 2 apicid : 1 initial apicid : 1 fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : 10 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon bts pni monitor vmx est tm2 xtpr bogomips : 3990.06 clflush size : 64 power management: ubuntu-release-upgrader-0.220.10/tests/test-data/cpuinfo-via-c7m0000644000000000000000000000115312431225715021252 0ustar processor : 0 vendor_id : CentaurHauls cpu family : 6 model : 13 model name : VIA C7-M Processor 1000MHz stepping : 0 cpu MHz : 997.518 cache size : 128 KB fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : 1 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge cmov pat clflush acpi mmx fxsr sse sse2 tm nx up pni est tm2 xtpr rng rng_en ace ace_en ace2 ace2_en phe phe_en pmm pmm_en bogomips : 1996.85 clflush size : 64 ubuntu-release-upgrader-0.220.10/tests/test-data/xorg.conf.fglrx0000644000000000000000000000353612431225715021401 0ustar # xorg.conf (xorg X Window System server configuration file) # # This file was generated by failsafeDexconf, using # values from the debconf database and some overrides to use vesa mode. # # You should use dexconf or another such tool for creating a "real" xorg.conf # For example: # sudo dpkg-reconfigure -phigh xserver-xorg Section "Files" EndSection #Section "Module" # Disable "dbe" # Disable "dri" # Disable "glx" # Disable "vbe" #EndSection Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc104" Option "XkbLayout" "de" Option "XkbOptions" "ctrl:nocaps" EndSection #Section "InputDevice" # Identifier "Configured Mouse" # Driver "mouse" # Option "CorePointer" # Option "Device" "/dev/input/mice" # Option "Protocol" "ImPS/2" # Option "ZAxisMapping" "4 5" # Option "Emulate3Buttons" "true" # Option "EmulateWheel" "true" # Option "EmulateWheelButton" "2" #EndSection Section "InputDevice" Identifier "Configured Mouse" Driver "evdev" Option "Device" "/dev/input/input9" Option "Emulate3Buttons" "true" Option "EmulateWheel" "true" Option "EmulateWheelButton" "2" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" Option "HorizScrollDelta" "0" EndSection Section "Device" Identifier "Failsafe Device" #Driver "vesa" #Driver "radeonhd" Driver "fglrx" EndSection Section "Monitor" Identifier "Failsafe Monitor" Option "DPMS" EndSection Section "Screen" Identifier "Default Screen" Device "Failsafe Device" Monitor "Failsafe Monitor" #Input "Configured Mouse" Defaultdepth 24 SubSection "Display" Depth 24 Modes "1400x1050" EndSubSection EndSection ubuntu-release-upgrader-0.220.10/tests/test_pep8.py0000755000000000000000000000206112431225715017024 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- # Partly based on a script from Review Board, MIT license; but modified to # act as a unit test. from __future__ import print_function import os import subprocess import unittest CURDIR = os.path.dirname(os.path.abspath(__file__)) class TestPep8Clean(unittest.TestCase): """ ensure that the tree is pep8 clean """ def test_pep8_clean(self): # mvo: type -f here to avoid running pep8 on imported files # that are symlinks to other packages cmd = 'find %s/.. -type f -name "*.py" | xargs pep8 --ignore="W" ' % CURDIR p = subprocess.Popen( cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True, shell=True, universal_newlines=True) contents = p.communicate()[0].splitlines() for line in contents: print(line) self.assertEqual(0, len(contents)) if __name__ == "__main__": import logging logging.basicConfig(level=logging.DEBUG) unittest.main() ubuntu-release-upgrader-0.220.10/tests/test_prerequists.py0000644000000000000000000002071412431225715020540 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- from __future__ import print_function import unittest import tempfile import shutil import os.path import apt_pkg from DistUpgrade.DistUpgradeController import ( DistUpgradeController, NoBackportsFoundException) from DistUpgrade.DistUpgradeView import DistUpgradeView from DistUpgrade import DistUpgradeConfigParser DistUpgradeConfigParser.CONFIG_OVERRIDE_DIR = None CURDIR = os.path.dirname(os.path.abspath(__file__)) class testPreRequists(unittest.TestCase): " this test the prerequists fetching " testdir = os.path.abspath(CURDIR + "/data-sources-list-test/") orig_etc = '' orig_sourceparts = '' orig_state = '' orig_status = '' orig_trusted = '' def setUp(self): self.orig_etc = apt_pkg.config.get("Dir::Etc") self.orig_sourceparts = apt_pkg.config.get("Dir::Etc::sourceparts") self.orig_state = apt_pkg.config.get("Dir::State") self.orig_status = apt_pkg.config.get("Dir::State::status") self.orig_trusted = apt_pkg.config.get("APT::GPGV::TrustedKeyring") apt_pkg.config.set("Dir::Etc", self.testdir) apt_pkg.config.set("Dir::Etc::sourceparts", os.path.join(self.testdir, "sources.list.d")) self.dc = DistUpgradeController(DistUpgradeView(), datadir=self.testdir) def tearDown(self): apt_pkg.config.set("Dir::Etc", self.orig_etc) apt_pkg.config.set("Dir::Etc::sourceparts", self.orig_sourceparts) apt_pkg.config.set("Dir::State", self.orig_state) apt_pkg.config.set("Dir::State::status", self.orig_status) apt_pkg.config.set("APT::GPGV::TrustedKeyring", self.orig_trusted) def testPreReqSourcesListAddingSimple(self): " test adding the prerequists when a mirror is known " shutil.copy(os.path.join(self.testdir, "sources.list.in"), os.path.join(self.testdir, "sources.list")) template = os.path.join(self.testdir, "prerequists-sources.list.in") out = os.path.join(self.testdir, "sources.list.d", "prerequists-sources.list") self.dc._addPreRequistsSourcesList(template, out) self.assertTrue(os.path.getsize(out)) self._verifySources(out, "\n" "deb http://old-releases.ubuntu.com/ubuntu/ " "feisty-backports main/debian-installer\n" "\n") def testPreReqSourcesListAddingNoMultipleIdenticalLines(self): """ test adding the prerequists and ensure that no multiple identical lines are added """ shutil.copy(os.path.join(self.testdir, "sources.list.no_archive_u_c"), os.path.join(self.testdir, "sources.list")) template = os.path.join(self.testdir, "prerequists-sources.list.in") out = os.path.join(self.testdir, "sources.list.d", "prerequists-sources.list") self.dc._addPreRequistsSourcesList(template, out) self.assertTrue(os.path.getsize(out)) self._verifySources(out, "\n" "deb http://old-releases.ubuntu.com/ubuntu/ " "feisty-backports main/debian-installer\n" "\n") def testVerifyBackportsNotFound(self): " test the backport verification " # only minimal stuff in sources.list to speed up tests shutil.copy(os.path.join(self.testdir, "sources.list.minimal"), os.path.join(self.testdir, "sources.list")) tmpdir = tempfile.mkdtemp() # unset sourceparts apt_pkg.config.set("Dir::Etc::sourceparts", tmpdir) # write empty status file open(tmpdir + "/status", "w") os.makedirs(tmpdir + "/lists/partial") apt_pkg.config.set("Dir::State", tmpdir) apt_pkg.config.set("Dir::State::status", tmpdir + "/status") self.dc.openCache(lock=False) exp = False try: res = self.dc._verifyBackports() print(res) except NoBackportsFoundException: exp = True self.assertTrue(exp) def disabled__as_jaunty_is_EOL_testVerifyBackportsValid(self): " test the backport verification " # only minimal stuff in sources.list to speed up tests shutil.copy(os.path.join(self.testdir, "sources.list.minimal"), os.path.join(self.testdir, "sources.list")) tmpdir = tempfile.mkdtemp() #apt_pkg.config.set("Debug::pkgAcquire::Auth","true") #apt_pkg.config.set("Debug::Acquire::gpgv","true") apt_pkg.config.set("APT::GPGV::TrustedKeyring", self.testdir + "/trusted.gpg") # set sourceparts apt_pkg.config.set("Dir::Etc::sourceparts", tmpdir) template = os.path.join(self.testdir, "prerequists-sources.list.in") out = os.path.join(tmpdir, "prerequists-sources.list") # write empty status file open(tmpdir + "/status", "w") os.makedirs(tmpdir + "/lists/partial") apt_pkg.config.set("Dir::State", tmpdir) apt_pkg.config.set("Dir::State::status", tmpdir + "/status") self.dc._addPreRequistsSourcesList(template, out) self.dc.openCache(lock=False) res = self.dc._verifyBackports() self.assertTrue(res) def disabled__as_jaunty_is_EOL_testVerifyBackportsNoValidMirror(self): " test the backport verification with no valid mirror " # only minimal stuff in sources.list to speed up tests shutil.copy(os.path.join(self.testdir, "sources.list.no_valid_mirror"), os.path.join(self.testdir, "sources.list")) tmpdir = tempfile.mkdtemp() #apt_pkg.config.set("Debug::pkgAcquire::Auth","true") #apt_pkg.config.set("Debug::Acquire::gpgv","true") apt_pkg.config.set("APT::GPGV::TrustedKeyring", self.testdir + "/trusted.gpg") # set sourceparts apt_pkg.config.set("Dir::Etc::sourceparts", tmpdir) template = os.path.join( self.testdir, "prerequists-sources.list.in.no_archive_falllback") out = os.path.join(tmpdir, "prerequists-sources.list") # write empty status file open(tmpdir + "/status", "w") os.makedirs(tmpdir + "/lists/partial") apt_pkg.config.set("Dir::State", tmpdir) apt_pkg.config.set("Dir::State::status", tmpdir + "/status") self.dc._addPreRequistsSourcesList(template, out, dumb=True) self.dc.openCache(lock=False) res = self.dc._verifyBackports() self.assertTrue(res) def disabled__as_jaunty_is_EOL_testVerifyBackportsNoValidMirror2(self): " test the backport verification with no valid mirror " # only minimal stuff in sources.list to speed up tests shutil.copy(os.path.join(self.testdir, "sources.list.no_valid_mirror"), os.path.join(self.testdir, "sources.list")) tmpdir = tempfile.mkdtemp() #apt_pkg.config.set("Debug::pkgAcquire::Auth","true") #apt_pkg.config.set("Debug::Acquire::gpgv","true") apt_pkg.config.set("APT::GPGV::TrustedKeyring", self.testdir + "/trusted.gpg") # set sourceparts apt_pkg.config.set("Dir::Etc::sourceparts", tmpdir) template = os.path.join(self.testdir, "prerequists-sources.list.in.broken") out = os.path.join(tmpdir, "prerequists-sources.list") # write empty status file open(tmpdir + "/status", "w") os.makedirs(tmpdir + "/lists/partial") apt_pkg.config.set("Dir::State", tmpdir) apt_pkg.config.set("Dir::State::status", tmpdir + "/status") try: self.dc._addPreRequistsSourcesList(template, out, dumb=False) self.dc.openCache(lock=False) self.dc._verifyBackports() except NoBackportsFoundException: exp = True self.assertTrue(exp) def _verifySources(self, filename, expected): sources_list = open(filename).read() for l in expected.split("\n"): if l: self.assertTrue(l in sources_list, "expected entry '%s' in '%s' missing, " "got:\n%s" % (l, filename, open(filename).read())) if __name__ == "__main__": unittest.main() ubuntu-release-upgrader-0.220.10/tests/test_pyflakes.py0000644000000000000000000000371112431225715017766 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- # Partly based on a script from Review Board, MIT license; but modified to # act as a unit test. from __future__ import print_function import os import re import subprocess import unittest CURDIR = os.path.dirname(os.path.abspath(__file__)) class TestPyflakesClean(unittest.TestCase): """ ensure that the tree is pyflakes clean """ def read_exclusions(self): exclusions = {} try: excpath = os.path.join(CURDIR, "pyflakes.exclude") with open(excpath, "r") as fp: for line in fp: if not line.startswith("#"): exclusions[line.rstrip()] = 1 except IOError: pass return exclusions def filter_exclusions(self, contents): exclusions = self.read_exclusions() for line in contents: if line.startswith("#"): continue line = line.rstrip().split(CURDIR + '/', 1)[1] test_line = re.sub(r":[0-9]+:", r":*:", line, 1) test_line = re.sub(r"line [0-9]+", r"line *", test_line) if test_line not in exclusions: yield line def test_pyflakes_clean(self): # mvo: type -f here to avoid running pyflakes on imported files # that are symlinks to other packages cmd = 'find %s/.. -type f -name "*.py" | xargs pyflakes' % CURDIR p = subprocess.Popen( cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True, shell=True, universal_newlines=True) contents = p.communicate()[0].splitlines() filtered_contents = list(self.filter_exclusions(contents)) for line in filtered_contents: print(line) self.assertEqual(0, len(filtered_contents)) if __name__ == "__main__": import logging logging.basicConfig(level=logging.DEBUG) unittest.main() ubuntu-release-upgrader-0.220.10/tests/test_sources_list.py0000644000000000000000000004435312431225715020675 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- from __future__ import print_function import os import shutil import subprocess import apt_pkg import unittest from DistUpgrade.DistUpgradeController import ( DistUpgradeController, component_ordering_key, ) from DistUpgrade.DistUpgradeViewNonInteractive import DistUpgradeViewNonInteractive from DistUpgrade import DistUpgradeConfigParser from DistUpgrade.utils import url_downloadable import logging import mock DistUpgradeConfigParser.CONFIG_OVERRIDE_DIR = None CURDIR = os.path.dirname(os.path.abspath(__file__)) class TestComponentOrdering(unittest.TestCase): def test_component_ordering_key_from_set(self): self.assertEqual( sorted(set(["x", "restricted", "main"]), key=component_ordering_key), ["main", "restricted", "x"]) def test_component_ordering_key_from_list(self): self.assertEqual( sorted(["x", "main"], key=component_ordering_key), ["main", "x"]) self.assertEqual( sorted(["restricted", "main"], key=component_ordering_key), ["main", "restricted"]) self.assertEqual( sorted(["main", "restricted"], key=component_ordering_key), ["main", "restricted"]) self.assertEqual( sorted(["main", "multiverse", "restricted", "universe"], key=component_ordering_key), ["main", "restricted", "universe", "multiverse"]) self.assertEqual( sorted(["a", "main", "multiverse", "restricted", "universe"], key=component_ordering_key), ["main", "restricted", "universe", "multiverse", "a"]) class TestSourcesListUpdate(unittest.TestCase): testdir = os.path.abspath(CURDIR + "/data-sources-list-test/") def setUp(self): apt_pkg.config.set("Dir::Etc", self.testdir) apt_pkg.config.set("Dir::Etc::sourceparts", os.path.join(self.testdir, "sources.list.d")) if os.path.exists(os.path.join(self.testdir, "sources.list")): os.unlink(os.path.join(self.testdir, "sources.list")) def test_sources_list_with_nothing(self): """ test sources.list rewrite with nothing in it """ shutil.copy(os.path.join(self.testdir, "sources.list.nothing"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourcelist", "sources.list") v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) # now test the result self._verifySources(""" deb http://archive.ubuntu.com/ubuntu gutsy main restricted deb http://archive.ubuntu.com/ubuntu gutsy-updates main restricted deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted """) def test_sources_list_rewrite(self): """ test regular sources.list rewrite """ shutil.copy(os.path.join(self.testdir, "sources.list.in"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourcelist", "sources.list") v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) # now test the result #print(open(os.path.join(self.testdir,"sources.list")).read()) self._verifySources(""" # main repo deb http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse universe deb http://de.archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse deb-src http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted multiverse deb http://security.ubuntu.com/ubuntu/ gutsy-security universe """) # check that the backup file was created correctly self.assertEqual(0, subprocess.call( ["cmp", apt_pkg.config.find_file("Dir::Etc::sourcelist") + ".in", apt_pkg.config.find_file("Dir::Etc::sourcelist") + ".distUpgrade" ])) def test_commercial_transition(self): """ test transition of pre-gutsy archive.canonical.com archives """ shutil.copy(os.path.join(self.testdir, "sources.list.commercial-transition"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourceparts", os.path.join(self.testdir, "sources.list.d")) v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) # now test the result self._verifySources(""" deb http://archive.canonical.com/ubuntu gutsy partner """) def test_powerpc_transition(self): """ test transition of powerpc to ports.ubuntu.com """ arch = apt_pkg.config.find("APT::Architecture") apt_pkg.config.set("APT::Architecture", "powerpc") shutil.copy(os.path.join(self.testdir, "sources.list.powerpc"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourceparts", os.path.join(self.testdir, "sources.list.d")) v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) # now test the result self._verifySources(""" deb http://ports.ubuntu.com/ubuntu-ports/ gutsy main restricted multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse deb http://ports.ubuntu.com/ubuntu-ports/ gutsy-security main restricted universe multiverse """) apt_pkg.config.set("APT::Architecture", arch) def test_sparc_transition(self): """ test transition of sparc to ports.ubuntu.com """ arch = apt_pkg.config.find("APT::Architecture") apt_pkg.config.set("APT::Architecture", "sparc") shutil.copy(os.path.join(self.testdir, "sources.list.sparc"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourceparts", os.path.join(self.testdir, "sources.list.d")) v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.fromDist = "gutsy" d.toDist = "hardy" d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) # now test the result self._verifySources(""" deb http://ports.ubuntu.com/ubuntu-ports/ hardy main restricted multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ hardy main restricted multiverse deb http://ports.ubuntu.com/ubuntu-ports/ hardy-security main restricted universe multiverse """) apt_pkg.config.set("APT::Architecture", arch) def testVerifySourcesListEntry(self): from aptsources.sourceslist import SourceEntry v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) for scheme in ["http"]: entry = "deb %s://archive.ubuntu.com/ubuntu/ precise main universe restricted multiverse" % scheme self.assertTrue(d._sourcesListEntryDownloadable(SourceEntry(entry)), "entry '%s' not downloadable" % entry) entry = "deb %s://archive.ubuntu.com/ubuntu/ warty main universe restricted multiverse" % scheme self.assertFalse(d._sourcesListEntryDownloadable(SourceEntry(entry)), "entry '%s' not downloadable" % entry) entry = "deb %s://archive.ubuntu.com/ubuntu/ xxx main" % scheme self.assertFalse(d._sourcesListEntryDownloadable(SourceEntry(entry)), "entry '%s' not downloadable" % entry) def testEOL2EOLUpgrades(self): " test upgrade from EOL release to EOL release " v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) shutil.copy(os.path.join(self.testdir, "sources.list.EOL"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourceparts", os.path.join(self.testdir, "sources.list.d")) v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.fromDist = "warty" d.toDist = "hoary" d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) self._verifySources(""" # main repo deb http://old-releases.ubuntu.com/ubuntu hoary main restricted multiverse universe deb-src http://old-releases.ubuntu.com/ubuntu hoary main restricted multiverse deb http://old-releases.ubuntu.com/ubuntu hoary-security main restricted universe multiverse """) @unittest.skipUnless(url_downloadable( "http://us.archive.ubuntu.com/ubuntu", logging.debug), "Could not reach mirror") def testEOL2SupportedWithMirrorUpgrade(self): " test upgrade from a EOL release to a supported release with mirror" # Use us.archive.ubuntu.com, because it is available in Canonical's # data center, unlike most mirrors. This lets this test pass when # when run in their Jenkins test environment. os.environ["LANG"] = "en_US.UTF-8" v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) shutil.copy(os.path.join(self.testdir, "sources.list.EOL2Supported"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourceparts", os.path.join(self.testdir, "sources.list.d")) v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.fromDist = "oneiric" d.toDist = "precise" d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) self._verifySources(""" # main repo deb http://us.archive.ubuntu.com/ubuntu precise main restricted multiverse universe deb-src http://us.archive.ubuntu.com/ubuntu precise main restricted multiverse deb http://us.archive.ubuntu.com/ubuntu precise-security main restricted universe multiverse """) def testEOL2SupportedUpgrade(self): " test upgrade from a EOL release to a supported release " os.environ["LANG"] = "C" v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) shutil.copy(os.path.join(self.testdir, "sources.list.EOL2Supported"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourceparts", os.path.join(self.testdir, "sources.list.d")) v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.fromDist = "oneiric" d.toDist = "precise" d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) self._verifySources(""" # main repo deb http://archive.ubuntu.com/ubuntu precise main restricted multiverse universe deb-src http://archive.ubuntu.com/ubuntu precise main restricted multiverse deb http://archive.ubuntu.com/ubuntu precise-security main restricted universe multiverse """) def test_partner_update(self): """ test transition partner repository updates """ shutil.copy(os.path.join(self.testdir, "sources.list.partner"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourceparts", os.path.join(self.testdir, "sources.list.d")) v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) # now test the result self._verifySources(""" deb http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted universe multiverse deb http://archive.canonical.com/ubuntu gutsy partner """) def test_private_ppa_transition(self): if "RELEASE_UPRADER_ALLOW_THIRD_PARTY" in os.environ: del os.environ["RELEASE_UPRADER_ALLOW_THIRD_PARTY"] shutil.copy( os.path.join(self.testdir, "sources.list.commercial-ppa-uploaders"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourceparts", os.path.join(self.testdir, "sources.list.d")) v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) # now test the result self._verifySources(""" deb http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted universe multiverse # random one # deb http://user:pass@private-ppa.launchpad.net/random-ppa gutsy main # disabled on upgrade to gutsy # commercial PPA deb https://user:pass@private-ppa.launchpad.net/commercial-ppa-uploaders gutsy main """) def test_apt_cacher_and_apt_bittorent(self): """ test transition of apt-cacher/apt-torrent uris """ shutil.copy(os.path.join(self.testdir, "sources.list.apt-cacher"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourceparts", os.path.join(self.testdir, "sources.list.d")) v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) # now test the result self._verifySources(""" deb http://localhost:9977/security.ubuntu.com/ubuntu gutsy-security main restricted universe multiverse deb http://localhost:9977/archive.canonical.com/ubuntu gutsy partner deb http://localhost:9977/us.archive.ubuntu.com/ubuntu/ gutsy main deb http://localhost:9977/archive.ubuntu.com/ubuntu/ gutsy main deb http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted deb http://security.ubuntu.com/ubuntu/ gutsy-security universe deb http://archive.canonical.com/ubuntu gutsy partner """) def test_unicode_comments(self): """ test transition of apt-cacher/apt-torrent uris """ shutil.copy(os.path.join(self.testdir, "sources.list.unicode"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourcelist", "sources.list") v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) # verify it self._verifySources(""" deb http://archive.ubuntu.com/ubuntu gutsy main restricted deb http://archive.ubuntu.com/ubuntu gutsy-updates main restricted deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted # A PPA with a unicode comment # deb http://ppa.launchpad.net/random-ppa quantal main # ppa of Víctor R. Ruiz (vrruiz) disabled on upgrade to gutsy """) def test_local_mirror(self): """ test that a local mirror with official -backports works (LP:# 1067393) """ shutil.copy(os.path.join(self.testdir, "sources.list.local"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourcelist", "sources.list") v = DistUpgradeViewNonInteractive() d = DistUpgradeController(v, datadir=self.testdir) d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) # verify it self._verifySources(""" deb http://192.168.1.1/ubuntu gutsy main restricted deb http://192.168.1.1/ubuntu gutsy-updates main restricted deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted deb http://archive.ubuntu.com/ubuntu gutsy-backports main restricted universe multiverse """) def test_disable_proposed(self): """ Test that proposed is disabled when upgrading to a development release. """ shutil.copy(os.path.join(self.testdir, "sources.list.proposed_enabled"), os.path.join(self.testdir, "sources.list")) apt_pkg.config.set("Dir::Etc::sourcelist", "sources.list") v = DistUpgradeViewNonInteractive() options = mock.Mock() options.devel_release = True d = DistUpgradeController(v, options, datadir=self.testdir) d.openCache(lock=False) res = d.updateSourcesList() self.assertTrue(res) self._verifySources(""" deb http://archive.ubuntu.com/ubuntu gutsy main restricted deb http://archive.ubuntu.com/ubuntu gutsy-updates main restricted deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted # deb http://archive.ubuntu.com/ubuntu gutsy-proposed universe main multiverse restricted #Not for humans during development stage of release gutsy """) def _verifySources(self, expected): sources_file = apt_pkg.config.find_file("Dir::Etc::sourcelist") sources_list = open(sources_file).read() for l in expected.split("\n"): self.assertTrue( l in sources_list.split("\n"), "expected entry '%s' in sources.list missing. got:\n'''%s'''" % (l, sources_list)) if __name__ == "__main__": import sys for e in sys.argv: if e == "-v": logging.basicConfig(level=logging.DEBUG) unittest.main() ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/0000755000000000000000000000000012602567030021054 5ustar ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.commercial-transition0000644000000000000000000000052512431225715027741 0ustar # main repo deb http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse universe deb http://de.archive.ubuntu.com/ubuntu/ feisty main restricted multiverse deb-src http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse # the commercial repo (feisty) deb http://archive.canonical.com/ubuntu feisty-commercial main ././@LongLink0000644000000000000000000000015700000000000011606 Lustar rootrootubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/prerequists-sources.list.in.no_archive_falllbackubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/prerequists-sources.list.in.no_archive0000644000000000000000000000020512431225715030537 0ustar # sources.list fragment for pre-requists (mirror from sources.list + fallback) # this is safe to remove after the upgrade ${mirror} ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.no_valid_mirror0000644000000000000000000000026412431225715026623 0ustar # valid mirror, but not in the test-mirror files deb http://www.ftp.uni-erlangen.de/pub/mirrors/ubuntu/ feisty main deb http://security.ubuntu.com/ubuntu/ feisty-security main ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list0000644000000000000000000000053112602567030023433 0ustar deb http://archive.ubuntu.com/ubuntu gutsy main restricted deb http://archive.ubuntu.com/ubuntu gutsy-updates main restricted deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted # A PPA with a unicode comment # deb http://ppa.launchpad.net/random-ppa quantal main # ppa of Víctor R. Ruiz (vrruiz) disabled on upgrade to gutsy ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.commercial-ppa-uploaders0000644000000000000000000000065412431225715030326 0ustar # main repo deb http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse deb http://security.ubuntu.com/ubuntu/ feisty-security main restricted # random one deb http://user:pass@private-ppa.launchpad.net/random-ppa feisty main # commercial PPA deb https://user:pass@private-ppa.launchpad.net/commercial-ppa-uploaders feisty main ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/prerequists-sources.list.in0000644000000000000000000000050012431225715026421 0ustar # sources.list fragment for pre-requists (mirror from sources.list + fallback) # this is safe to remove after the upgrade deb http://old-releases.ubuntu.com/ubuntu/ feisty-backports main/debian-installer # below is just for testing #deb http://archive.dogfood.launchpad.net/ubuntu feisty-backports main/debian-installerubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.in0000644000000000000000000000057612431225715024052 0ustar # main repo deb http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse universe deb http://de.archive.ubuntu.com/ubuntu/ feisty main restricted multiverse deb-src http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse deb http://security.ubuntu.com/ubuntu/ feisty-security main restricted deb http://security.ubuntu.com/ubuntu/ feisty-security universe ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.no_archive_u_c0000644000000000000000000000046412431225715026403 0ustar # main repo #deb http://ftp.inf.tu-dresden.de/os/linux/dists/ubuntu/ feisty main restricted deb http://old-releases.ubuntu.com/ubuntu/ feisty main restricted deb-src http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse deb http://security.ubuntu.com/ubuntu/ feisty-security main restricted ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.minimal0000644000000000000000000000011312431225715025055 0ustar # main repo deb http://old-releases.ubuntu.com/ubuntu/ feisty restricted ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.unicode0000644000000000000000000000047212431225715025065 0ustar deb http://archive.ubuntu.com/ubuntu gutsy main restricted deb http://archive.ubuntu.com/ubuntu gutsy-updates main restricted deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted # A PPA with a unicode comment deb http://ppa.launchpad.net/random-ppa quantal main # ppa of Víctor R. Ruiz (vrruiz) ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/prerequists-sources.list.in.broken0000644000000000000000000000050612431225715027706 0ustar # sources.list fragment for pre-requists (mirror from sources.list + fallback) # this is safe to remove after the upgrade deb http://old-releases.ubuntu.com.xxx/ubuntu/ feisty-backports main/debian-installer # below is just for testing #deb http://archive.dogfood.launchpad.net/ubuntu feisty-backports main/debian-installer ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.sparc0000644000000000000000000000046712431225715024553 0ustar # main repo deb http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse universe deb http://de.archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse deb-src http://archive.ubuntu.com/ubuntu/ gutsy main restricted multiverse deb http://security.ubuntu.com/ubuntu gutsy-security main restrictedubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.EOL2Supported0000644000000000000000000000040012431225715026035 0ustar # main repo deb http://old-releases.ubuntu.com/ubuntu oneiric main restricted multiverse universe deb-src http://old-releases.ubuntu.com/ubuntu oneiric main restricted multiverse deb http://old-releases.ubuntu.com/ubuntu oneiric-security main restricted ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/trusted.gpg0000644000000000000000000001507112431225715023252 0ustar AD?.F1ف|޼*Dea^*C:aRʚ_ ۓ6+ tjc1>8-b c ű)QP!}dmeCVEX(Q6W0$Xvð h#WZ7uē;mnTH"'9,-<RАF,Qb@q*pt %ieץ[P Fpi0~8\?Wځ][-Z)m$`+RaK)X_HұG6 #|9F< 'Kuϧ7 m-$7 (Cv,_b>b.(J>$aY1ʟn%8/V ];Ubuntu Archive Automatic Signing Key ^AD?  @nC}$SHW2ǒZ\6;yHNs *FAQg 1*}1!\dǖ)K&A9> eo㿍;ȰFC 膧$eǢIט;Yj܎/87`2vF% XIFCK j8xUV%5GJC@@zk>[k-a⒰FD( Tm.A\b\_:Np"ޤL)&*%椇 EƔ*(FE [l3;]XnX ȇ{ o2^Кb:X*t6,)e FE /m4 " `S:~ͦKK,d-nƯ]fFE0 y_?4WP0XpD1Zn阜N"} FEB  9`˧f (@s!K'8<VaKX;-ݡFE` .P焢"$t 伧V8ܦu-(qƟ4FEg| ~K\T|1r?sn'Ԕ#7%?}_ ^5El FE) Y҇K* )lGV2"VNF0 o7Yk|FE }Fj8EqװE=*Dr3>P]iZzFE1 >;_uL^wR_WfۑA}ʾCi@mlHFF 3L|BL4ues>\q7רMsFB 0kUDƑ< Scr{yuTMu (Q8O,ɔ *UOaFB P&<x\؍z{b"ǀmaЪ6#?I Ep % "J/푘5}_M I5xgn '1ZG4ƕ  ?'/[ @|}aϮ~D==W#z#Gg NTofy`CN@Ɓ6)@2k\1X 7Q)Y͊vli}1c~aG TPV>ޜ#u埂)"XjN-.``vR{4zB5W~Y*^ tAe z |e ̑i ^VrNT#m9ܗX!G-joq'm6!yPsL# 5T5M)L>9jbeaQtwlP?mC Zȃ#.8@ Zҫ϶z ZAxb"W4AGϚs>wϤB- ip6[~n@G\HDqkɓAz61oF3 (8!;p扗eVLd<5ل®hAq73֐ f7M˟jt ADG%KLQ똶@n$)fQKڊZ$Ri7oSyZ0EXyJ(bpq3ujr]Z<ײJyr- N;rȶ(j~VUlE! :&|;R LvhHU*!bάFf}g PD+ƓOBu&Jh,H/ b$=RM<m,;|LN1_O,V,V ذO9ikſ'+ ؀5ɟs郂A#z)"d0NV=Qm`qAB`ڤ5SKR-' hڑ rVUeJNН(ymg;t2B'3BDA==b%4+#LZ g{][uXa,/W mLCj8rG2t7=s(p]}:z6lz7N:b#۪Q~JH݈d#_=I ADG @nC}XOm{ tD325O z zwtARx q7iUxUۯj=]|=k껜Z:\m5c@溃ĴxhvhTPC{-6ѧ7/DK'UDy{@rܽ)L#787[x͏Q Mg]OJږn$EF#5Vٵ(dlnCE >[5K5;^0e06~I`R[K>"]G;r֎p//`IBۣz{S.bŮ_|0ങwuF"aw1-`dr+',Ռ |ǟ$x#Vj,Qcs;-7#X&_۠_ye;[dqI(ݑ%* A:Ubuntu CD Image Automatic Signing Key ^ARx  F3TQyPwoJ(M_u@:FuFAԠ 3Lrhve (4PۂsbqYdv}rFDٍ Պ`+$Lw^Oh'+U.Kam6U-qܦB=FD/ :aSQ(/$j.ltQ4az_nCczl/FE [l3\=SLߞ3ea9xԚNqgpܬpf[܍vFEy Y҇KȦEw͛hJ/@>`pcd9lifFEk v>$P'\O *`c8#p?I Df UX ( eUT'S_4Ʒľ͵=^I|'ıݰI Ep % 2e(Dloّ0q/PN=CD|hCod R ._k(m9:?rc6Fyc%Eu\o|q\ZJ`!/pµ5:to3 % @w軦Kow b3'E8Wyzg4SМ>G0e3 o|tP"v^4ePP80 M-ݯaooD ig"s,Ñ 6?^Q3_Y,΍)QʼFH—cQY''bɔ19qYAe6W̭~<,P歷2;sER؍w2;taGO ,JEtӄa&z}xfs뮫D- ig"s,Ñ |CMmAFߍĬƓV}Qk4vcRܯ1pj:tt%^i&}3%>vK'Aj~Ac"$~c؏*cY={+1)H7 ՚|2}a(zt^%)OJxx#)#SGo^{/'_Rz#[ۦ0D! ig"s,Ñ kO8x; Pt9_䠀1 ]_a϶VN yo𐿦ΈuM;B2;|=|'}2&_YsZvH/1}]Tw5C/B?\ +v2i8tCR2U|)kgZQIrp(sz V}5o$' P{a.셂1HcI&Hܰ0D㴻 ig"s,Ñ ;TL˛5* tG& 4F DFKʻ`n5وvVo(;pIvU7rKO f[ƱZetoz:(^Ѿ.8=MIg9HNLηM׼4gp8a<.k|֢;`[sKnx`8g>Dڐy / rYᦞO5}|y Ͻ@+0td V W;@G4ƞ  ?'/[ަ?ldґ(=VppQl ;M|Kp{lLn~P 2?5]<,t ?{ApG~l޻4]@6,0 Rr+8oauSHB)|[r{KX)FX\bu}'@IpDkްr4ǥA"m\&b;n&7$$g'h *~[Ip؋^z٫< sn ö:иteis_aXѺ*wp%;Blok\(kqN$2QݹDUZᇍA, OjXΞgC;3(Cv|#3VL)k\K_J1 )Aev\kJaSy*sL{ZDzyUFG2lQїD4ͬ)R&U"6 ,Z or%(C1tNǏY`;=BǦubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.d/0000755000000000000000000000000012431225715023734 5ustar ././@LongLink0000644000000000000000000000014600000000000011604 Lustar rootrootubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.d/prerequists-sources.listubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.d/prerequists-sources.lis0000644000000000000000000000047612602567030030522 0ustar # sources.list fragment for pre-requists (mirror from sources.list + fallback) # this is safe to remove after the upgrade # deb http://archive.ubuntu.com/ubuntu feisty-backports main/debian-installer # below is just for testing # deb http://archive.dogfood.launchpad.net/ubuntu feisty-backports main/debian-installer ././@LongLink0000644000000000000000000000016200000000000011602 Lustar rootrootubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.d/prerequists-sources.list.distUpgradeubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.d/prerequists-sources.lis0000644000000000000000000000047612602567030030522 0ustar # sources.list fragment for pre-requists (mirror from sources.list + fallback) # this is safe to remove after the upgrade # deb http://archive.ubuntu.com/ubuntu feisty-backports main/debian-installer # below is just for testing # deb http://archive.dogfood.launchpad.net/ubuntu feisty-backports main/debian-installer ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.nothing0000644000000000000000000000002212431225715025074 0ustar # nothing in here ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.partner0000644000000000000000000000045112431225715025107 0ustar # main repo deb http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse universe deb-src http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse deb http://security.ubuntu.com/ubuntu/ feisty-security main restricted deb http://archive.canonical.com/ubuntu feisty partner ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.local0000644000000000000000000000042312431225715024525 0ustar deb http://192.168.1.1/ubuntu feisty main restricted deb http://192.168.1.1/ubuntu feisty-updates main restricted deb http://security.ubuntu.com/ubuntu/ feisty-security main restricted deb http://archive.ubuntu.com/ubuntu feisty-backports main restricted universe multiverse ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.apt-cacher0000644000000000000000000000135212431225715025444 0ustar deb http://localhost:9977/security.ubuntu.com/ubuntu feisty-security main restricted universe multiverse deb http://localhost:9977/archive.canonical.com/ubuntu feisty partner deb http://localhost:9977/us.archive.ubuntu.com/ubuntu/ feisty main deb http://localhost:9977/archive.ubuntu.com/ubuntu/ feisty main # main repo deb http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse universe deb http://de.archive.ubuntu.com/ubuntu/ feisty main restricted multiverse deb-src http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse deb http://security.ubuntu.com/ubuntu/ feisty-security main restricted deb http://security.ubuntu.com/ubuntu/ feisty-security universe deb http://archive.canonical.com/ubuntu feisty partner ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.proposed_enabled0000644000000000000000000000044112431225715026740 0ustar deb http://archive.ubuntu.com/ubuntu feisty main restricted deb http://archive.ubuntu.com/ubuntu feisty-updates main restricted deb http://security.ubuntu.com/ubuntu/ feisty-security main restricted deb http://archive.ubuntu.com/ubuntu feisty-proposed universe main multiverse restricted ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.hardy0000644000000000000000000000064712431225715024552 0ustar # main repo deb cdrom:[Ubuntu 8.10 _foo]/ hardy main deb ftp://uk.archive.ubuntu.com/ubuntu/ hardy main restricted multiverse universe deb http://de.archive.ubuntu.com/ubuntu/ hardy main restricted multiverse deb-src http://uk.archive.ubuntu.com/ubuntu/ hardy main restricted multiverse deb http://security.ubuntu.com/ubuntu/ hardy-security main restricted deb http://security.ubuntu.com/ubuntu/ hardy-security universe ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.EOL0000644000000000000000000000037212431225715024055 0ustar # main repo deb http://old-releases.ubuntu.com/ubuntu warty main restricted multiverse universe deb-src http://old-releases.ubuntu.com/ubuntu warty main restricted multiverse deb http://old-releases.ubuntu.com/ubuntu warty-security main restricted ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/DistUpgrade.cfg0000644000000000000000000000123012431225715023745 0ustar [View] View=DistUpgradeViewNonInteractive # Distro contains global information about the upgrade [Distro] MetaPkgs=ubuntu-desktop ;BaseMetaPkgs=ubuntu-minimal [ubuntu-desktop] KeyDependencies=gdm, gnome-panel, ubuntu-artwork PostUpgradeRemove=xscreensaver ForcedObsoletes=desktop-effects [Files] BackupExt=distUpgrade LogDir=data-sources-list-test/ [Sources] From=feisty To=gutsy ValidOrigin=Ubuntu ValidMirrors = mirrors.cfg Components=main,restricted,universe,multiverse Pockets=security,updates,proposed,backports [PreRequists] Packages=release-upgrader-apt,release-upgrader-dpkg SourcesList=prerequists-sources.dapper.list [Aufs] [Network] MaxRetries=3 ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.powerpc0000644000000000000000000000047312431225715025117 0ustar # main repo deb http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse universe deb http://de.archive.ubuntu.com/ubuntu/ feisty main restricted multiverse deb-src http://archive.ubuntu.com/ubuntu/ feisty main restricted multiverse deb http://security.ubuntu.com/ubuntu feisty-security main restrictedubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/mirrors.cfg0000644000000000000000000000062012431225715023231 0ustar #ubuntu http://archive.ubuntu.com/ubuntu/ http://security.ubuntu.com/ubuntu/ ftp://archive.ubuntu.com/ubuntu/ ftp://security.ubuntu.com/ubuntu/ #commercial (both urls are valid) http://archive.canonical.com http://archive.canonical.com/ubuntu/ #commercial-ppas https://private-ppa.launchpad.net/commercial-ppa-uploaders # random german mirror http://ftp.inf.tu-dresden.de/os/linux/dists/ubuntu/ ubuntu-release-upgrader-0.220.10/tests/data-sources-list-test/sources.list.distUpgrade0000644000000000000000000000047212602567030025711 0ustar deb http://archive.ubuntu.com/ubuntu gutsy main restricted deb http://archive.ubuntu.com/ubuntu gutsy-updates main restricted deb http://security.ubuntu.com/ubuntu/ gutsy-security main restricted # A PPA with a unicode comment deb http://ppa.launchpad.net/random-ppa quantal main # ppa of Víctor R. Ruiz (vrruiz) ubuntu-release-upgrader-0.220.10/tests/test_end_of_life.py0000644000000000000000000000465312431225715020407 0ustar #!/usr/bin/python from gi.repository import Gtk, GLib from mock import patch import mock import os import subprocess import unittest CURDIR = os.path.dirname(os.path.abspath(__file__)) class TestDistroEndOfLife(unittest.TestCase): # we need to test two cases: # - the current distro is end of life # - the next release (the upgrade target) is end of life @patch("subprocess.call") def test_distro_current_distro_end_of_life(self, mock_call): """ this code tests that check-new-release-gtk calls update-manager when it detects that the running distribution is no longer supported """ def _nag_dialog_close_helper(checker): # this helper is called to close the checker checker.close() # ---- try: from check_new_release_gtk import CheckNewReleaseGtk except ImportError: # This may fail in python2, since the Gtk bits needed only exist # in update-manager's python3-only code return options = mock.Mock() options.datadir = CURDIR + "/../data" options.test_uri = None checker = CheckNewReleaseGtk(options) meta_release = mock.Mock() # pretend the current distro is no longer supported meta_release.no_longer_supported = subprocess.Popen( ["lsb_release", "-c", "-s"], stdout=subprocess.PIPE, universal_newlines=True).communicate()[0].strip() meta_release.flavor_name = "Ubuntu" meta_release.current_dist_version = "0.0" # build new release mock new_dist = mock.Mock() new_dist.name = "zaphod" new_dist.version = "127.0" new_dist.supported = True new_dist.releaseNotesHtmlUri = "http://www.ubuntu.com/html" new_dist.releaseNotesURI = "http://www.ubuntu.com/text" meta_release.upgradable_to = new_dist # schedule a close event in 1 s GLib.timeout_add_seconds(1, _nag_dialog_close_helper, checker) # run the dialog, this will also run a gtk mainloop so that the # timeout works checker.new_dist_available(meta_release, new_dist) mock_call.assert_called_with(['update-manager', '--no-update']) def _p(self): while Gtk.events_pending(): Gtk.main_iteration() if __name__ == "__main__": import logging logging.basicConfig(level=logging.DEBUG) unittest.main() ubuntu-release-upgrader-0.220.10/tests/pyflakes.exclude0000644000000000000000000000244212431225715017730 0ustar # Exclude the following from pyflakes failures. # Alternate imports for Python 2/3 compatibility. ../DistUpgrade/DistUpgradeFetcherKDE.py:*: redefinition of unused 'urlopen' from line * ../DistUpgrade/DistUpgradeFetcherKDE.py:*: redefinition of unused 'HTTPError' from line * ../DistUpgrade/DistUpgradeFetcher.py:*: redefinition of unused 'urlopen' from line * ../DistUpgrade/DistUpgradeFetcher.py:*: redefinition of unused 'HTTPError' from line * ../DistUpgrade/DistUpgradeViewNonInteractive.py:*: redefinition of unused 'NoSectionError' from line * ../DistUpgrade/DistUpgradeViewNonInteractive.py:*: redefinition of unused 'NoOptionError' from line * ../DistUpgrade/DistUpgradeConfigParser.py:*: redefinition of unused 'SafeConfigParser' from line * ../DistUpgrade/DistUpgradeConfigParser.py:*: redefinition of unused 'NoOptionError' from line * ../DistUpgrade/DistUpgradeConfigParser.py:*: redefinition of unused 'NoSectionError' from line * ../DistUpgrade/DistUpgradeController.py:*: redefinition of unused 'SafeConfigParser' from line * ../DistUpgrade/DistUpgradeController.py:*: redefinition of unused 'NoOptionError' from line * ../DistUpgrade/DistUpgradeController.py:*: redefinition of unused 'urlsplit' from line * ../DistUpgrade/DistUpgradeCache.py:*: redefinition of unused 'configparser' from line * ubuntu-release-upgrader-0.220.10/tests/test_apport_crash.py0000755000000000000000000000315512431225715020642 0ustar #!/usr/bin/python import os import sys import tempfile import unittest from mock import patch sys.path.insert(0, "..") from DistUpgrade.DistUpgradeApport import ( _apport_append_logfiles, apport_pkgfailure, APPORT_WHITELIST, ) class TestApportInformationLeak(unittest.TestCase): def test_no_information_leak_in_apport_append_logfiles(self): tmpdir = tempfile.mkdtemp() from apport.report import Report report = Report() for name in ["apt.log", "system_state.tar.gz", "bar", "main.log"]: with open(os.path.join(tmpdir, name), "w") as f: f.write("some-data") _apport_append_logfiles(report, tmpdir) self.assertEqual( sorted([fname[0].name for fname in report.values() if isinstance(f, tuple)]), sorted([os.path.join(tmpdir, "main.log"), os.path.join(tmpdir, "apt.log")])) @patch("subprocess.Popen") def test_no_information_leak_in_apport_pkgfailure(self, mock_popen): # call apport_pkgfailure with mocked data apport_pkgfailure("apt", "random error msg") # extract the call arguments function_call_args, kwargs = mock_popen.call_args apport_cmd_args = function_call_args[0] # ensure that the whitelist is honored for i in range(1, len(apport_cmd_args), 2): option = apport_cmd_args[i] arg = apport_cmd_args[i + 1] if option == "-l": self.assertTrue(os.path.basename(arg) in APPORT_WHITELIST) if __name__ == "__main__": unittest.main() ubuntu-release-upgrader-0.220.10/tests/test_xorg_fix_intrepid.py0000644000000000000000000000326112431225715021673 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- import os import unittest import shutil import re from DistUpgrade.xorg_fix_proprietary import ( comment_out_driver_from_xorg, replace_driver_from_xorg, is_multiseat) CURDIR = os.path.dirname(os.path.abspath(__file__)) class testOriginMatcher(unittest.TestCase): ORIG = CURDIR + "/test-data/xorg.conf.original" FGLRX = CURDIR + "/test-data/xorg.conf.fglrx" MULTISEAT = CURDIR + "/test-data/xorg.conf.multiseat" NEW = CURDIR + "/test-data/xorg.conf" def testSimple(self): shutil.copy(self.ORIG, self.NEW) replace_driver_from_xorg("fglrx", "ati", self.NEW) self.assertEqual(open(self.NEW).read(), open(self.ORIG).read()) def testRemove(self): shutil.copy(self.FGLRX, self.NEW) self.assertTrue("fglrx" in open(self.NEW).read()) replace_driver_from_xorg("fglrx", "ati", self.NEW) self.assertFalse("fglrx" in open(self.NEW).read()) def testMultiseat(self): self.assertFalse(is_multiseat(self.ORIG)) self.assertFalse(is_multiseat(self.FGLRX)) self.assertTrue(is_multiseat(self.MULTISEAT)) def testComment(self): shutil.copy(self.FGLRX, self.NEW) comment_out_driver_from_xorg("fglrx", self.NEW) for line in open(self.NEW): if re.match('^#.*Driver.*fglrx', line): import logging logging.info("commented out line found") break else: raise Exception("commenting the line did *not* work") if __name__ == "__main__": import logging logging.basicConfig(level=logging.DEBUG) unittest.main() ubuntu-release-upgrader-0.220.10/tests/test_quirks.py0000644000000000000000000002053612431225715017472 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- import apt import apt_pkg import hashlib import mock import os import unittest import shutil import tempfile from DistUpgrade.DistUpgradeQuirks import DistUpgradeQuirks CURDIR = os.path.dirname(os.path.abspath(__file__)) class MockController(object): def __init__(self): self._view = None class MockConfig(object): pass class TestPatches(unittest.TestCase): orig_chdir = '' def setUp(self): # To patch, we need to be in the same directory as the patched files self.orig_chdir = os.getcwd() os.chdir(CURDIR) def tearDown(self): os.chdir(self.orig_chdir) def _verify_result_checksums(self): """ helper for test_patch to verify that we get the expected result """ # simple case is foo patchdir = CURDIR + "/patchdir/" self.assertFalse("Hello" in open(patchdir + "foo").read()) self.assertTrue("Hello" in open(patchdir + "foo_orig").read()) md5 = hashlib.md5() with open(patchdir + "foo", "rb") as patch: md5.update(patch.read()) self.assertEqual(md5.hexdigest(), "52f83ff6877e42f613bcd2444c22528c") # more complex example fstab md5 = hashlib.md5() with open(patchdir + "fstab", "rb") as patch: md5.update(patch.read()) self.assertEqual(md5.hexdigest(), "c56d2d038afb651920c83106ec8dfd09") # most complex example md5 = hashlib.md5() with open(patchdir + "pycompile", "rb") as patch: md5.update(patch.read()) self.assertEqual(md5.hexdigest(), "97c07a02e5951cf68cb3f86534f6f917") # with ".\n" md5 = hashlib.md5() with open(patchdir + "dotdot", "rb") as patch: md5.update(patch.read()) self.assertEqual(md5.hexdigest(), "cddc4be46bedd91db15ddb9f7ddfa804") # test that incorrect md5sum after patching rejects the patch self.assertEqual(open(patchdir + "fail").read(), open(patchdir + "fail_orig").read()) def test_patch(self): q = DistUpgradeQuirks(MockController(), MockConfig) # create patch environment patchdir = CURDIR + "/patchdir/" shutil.copy(patchdir + "foo_orig", patchdir + "foo") shutil.copy(patchdir + "fstab_orig", patchdir + "fstab") shutil.copy(patchdir + "pycompile_orig", patchdir + "pycompile") shutil.copy(patchdir + "dotdot_orig", patchdir + "dotdot") shutil.copy(patchdir + "fail_orig", patchdir + "fail") # apply patches q._applyPatches(patchdir=patchdir) self._verify_result_checksums() # now apply patches again and ensure we don't patch twice q._applyPatches(patchdir=patchdir) self._verify_result_checksums() def test_patch_lowlevel(self): #test lowlevel too from DistUpgrade.DistUpgradePatcher import patch, PatchError self.assertRaises(PatchError, patch, CURDIR + "/patchdir/fail", CURDIR + "/patchdir/patchdir_fail." "ed04abbc6ee688ee7908c9dbb4b9e0a2." "deadbeefdeadbeefdeadbeff", "deadbeefdeadbeefdeadbeff") class TestQuirks(unittest.TestCase): orig_recommends = '' orig_status = '' def setUp(self): self.orig_recommends = apt_pkg.config.get("APT::Install-Recommends") self.orig_status = apt_pkg.config.get("Dir::state::status") def tearDown(self): apt_pkg.config.set("APT::Install-Recommends", self.orig_recommends) apt_pkg.config.set("Dir::state::status", self.orig_status) def test_enable_recommends_during_upgrade(self): controller = mock.Mock() config = mock.Mock() q = DistUpgradeQuirks(controller, config) # server mode apt_pkg.config.set("APT::Install-Recommends", "0") controller.serverMode = True self.assertFalse(apt_pkg.config.find_b("APT::Install-Recommends")) q.ensure_recommends_are_installed_on_desktops() self.assertFalse(apt_pkg.config.find_b("APT::Install-Recommends")) # desktop mode apt_pkg.config.set("APT::Install-Recommends", "0") controller.serverMode = False self.assertFalse(apt_pkg.config.find_b("APT::Install-Recommends")) q.ensure_recommends_are_installed_on_desktops() self.assertTrue(apt_pkg.config.find_b("APT::Install-Recommends")) def test_parse_from_modaliases_header(self): pkgrec = { "Package": "foo", "Modaliases": "modules1(pci:v00001002d00006700sv*sd*bc03sc*i*, " "pci:v00001002d00006701sv*sd*bc03sc*i*), " "module2(pci:v00001002d00006702sv*sd*bc03sc*i*, " "pci:v00001001d00006702sv*sd*bc03sc*i*)" } controller = mock.Mock() config = mock.Mock() q = DistUpgradeQuirks(controller, config) self.assertEqual(q._parse_modaliases_from_pkg_header({}), []) self.assertEqual(q._parse_modaliases_from_pkg_header(pkgrec), [("modules1", ["pci:v00001002d00006700sv*sd*bc03sc*i*", "pci:v00001002d00006701sv*sd*bc03sc*i*"]), ("module2", ["pci:v00001002d00006702sv*sd*bc03sc*i*", "pci:v00001001d00006702sv*sd*bc03sc*i*"])]) def testFglrx(self): mock_lspci_good = set(['1002:9990']) mock_lspci_bad = set(['8086:ac56']) config = mock.Mock() cache = apt.Cache() controller = mock.Mock() controller.cache = cache q = DistUpgradeQuirks(controller, config) if q.arch not in ['i386', 'amd64']: return self.skipTest("Not on an arch with fglrx package") self.assertTrue(q._supportInModaliases("fglrx", mock_lspci_good)) self.assertFalse(q._supportInModaliases("fglrx", mock_lspci_bad)) def test_cpu_is_i686(self): q = DistUpgradeQuirks(MockController(), MockConfig) q.arch = "i386" testdir = CURDIR + "/test-data/" self.assertTrue( q._cpu_is_i686_and_has_cmov(testdir + "cpuinfo-with-sse")) self.assertFalse( q._cpu_is_i686_and_has_cmov(testdir + "cpuinfo-without-cmov")) self.assertFalse( q._cpu_is_i686_and_has_cmov(testdir + "cpuinfo-i586")) self.assertFalse( q._cpu_is_i686_and_has_cmov(testdir + "cpuinfo-i486")) self.assertTrue( q._cpu_is_i686_and_has_cmov(testdir + "cpuinfo-via-c7m")) def test_kde_card_games_transition(self): # fake nothing is installed empty_status = tempfile.NamedTemporaryFile() apt_pkg.config.set("Dir::state::status", empty_status.name) # create quirks class controller = mock.Mock() config = mock.Mock() quirks = DistUpgradeQuirks(controller, config) # add cache to the quirks class cache = quirks.controller.cache = apt.Cache() # add mark_install to the cache (this is part of mycache normally) cache.mark_install = lambda p, s: cache[p].mark_install() # test if the quirks handler works when kdegames-card is not installed # does not try to install it self.assertFalse(cache["kdegames-card-data-extra"].marked_install) quirks._add_kdegames_card_extra_if_installed() self.assertFalse(cache["kdegames-card-data-extra"].marked_install) # mark it for install cache["kdegames-card-data"].mark_install() self.assertFalse(cache["kdegames-card-data-extra"].marked_install) quirks._add_kdegames_card_extra_if_installed() # verify that the quirks handler is now installing it self.assertTrue(cache["kdegames-card-data-extra"].marked_install) def test_screensaver_poke(self): # fake nothing is installed empty_status = tempfile.NamedTemporaryFile() apt_pkg.config.set("Dir::state::status", empty_status.name) # create quirks class controller = mock.Mock() config = mock.Mock() quirks = DistUpgradeQuirks(controller, config) quirks._pokeScreensaver() res = quirks._stopPokeScreensaver() res # pyflakes if __name__ == "__main__": import logging logging.basicConfig(level=logging.DEBUG) unittest.main() ubuntu-release-upgrader-0.220.10/tests/test_view.py0000644000000000000000000000213712431225715017123 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- from __future__ import unicode_literals import os import tempfile import unittest from mock import patch from DistUpgrade.DistUpgradeViewText import DistUpgradeViewText class TestDistUpradeView(unittest.TestCase): def test_prompt_with_unicode_lp1071388(self): with tempfile.TemporaryFile() as f: f.write("some unicode: ä".encode("utf-8")) f.flush() f.seek(0) with patch("sys.stdin", f): v = DistUpgradeViewText() res = v.askYesNoQuestion("Some text", "some more") self.assertEqual(res, False) def test_show_in_pager_lp1068389(self): """Regression test for LP: #1068389""" output = tempfile.NamedTemporaryFile() os.environ["PAGER"] = "tee %s" % output.name v = DistUpgradeViewText() v.showInPager("äää") with open(output.name, "rb") as fp: self.assertEqual(fp.read().decode("utf-8"), "äää") if __name__ == "__main__": unittest.main() ubuntu-release-upgrader-0.220.10/tests/test_dist_upgrade_fetcher_core.py0000644000000000000000000000643112576364371023350 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- from __future__ import print_function import apt import apt_pkg import logging import os import unittest from UpdateManager.Core.MetaRelease import MetaReleaseCore from DistUpgrade.DistUpgradeFetcherCore import DistUpgradeFetcherCore # make sure we have a writable location for the meta-release file os.environ["XDG_CACHE_HOME"] = "/tmp" CURDIR = os.path.dirname(os.path.abspath(__file__)) def get_new_dist(): """ common code to test new dist fetching, get the new dist information for hardy+1 """ os.system("rm -rf /tmp/update-manager-core/") meta = MetaReleaseCore() #meta.DEBUG = True meta.current_dist_name = "precise" meta.METARELEASE_URI = "http://changelogs.ubuntu.com/meta-release" meta.downloaded.wait() meta._buildMetaReleaseFile() meta.download() return meta.new_dist class TestAcquireProgress(apt.progress.base.AcquireProgress): " class to test if the acquire progress was run " def start(self): self.started = True def stop(self): self.stopped = True def pulse(self, acquire): self.pulsed = True #for item in acquire.items: # print(item, item.destfile, item.desc_uri) return True class TestMetaReleaseCore(unittest.TestCase): def setUp(self): self.new_dist = None def testnewdist(self): new_dist = get_new_dist() self.assertTrue(new_dist is not None) class TestDistUpgradeFetcherCore(DistUpgradeFetcherCore): " subclass of the DistUpgradeFetcherCore class to make it testable " def runDistUpgrader(self): " do not actually run the upgrader here " return True class TestDistUpgradeFetcherCoreTestCase(unittest.TestCase): testdir = os.path.join(CURDIR, "data-sources-list-test/") orig_etc = '' orig_sourcelist = '' def setUp(self): self.new_dist = get_new_dist() self.orig_etc = apt_pkg.config.get("Dir::Etc") self.orig_sourcelist = apt_pkg.config.get("Dir::Etc::sourcelist") apt_pkg.config.set("Dir::Etc", self.testdir) apt_pkg.config.set("Dir::Etc::sourcelist", "sources.list.hardy") def tearDown(self): apt_pkg.config.set("Dir::Etc", self.orig_etc) apt_pkg.config.set("Dir::Etc::sourcelist", self.orig_sourcelist) def testfetcher(self): progress = TestAcquireProgress() fetcher = TestDistUpgradeFetcherCore(self.new_dist, progress) #fetcher.DEBUG=True res = fetcher.run() self.assertTrue(res) self.assertTrue(progress.started) self.assertTrue(progress.stopped) self.assertTrue(progress.pulsed) def disabled_because_ftp_is_not_reliable____testfetcher_ftp(self): progress = TestAcquireProgress() fetcher = TestDistUpgradeFetcherCore(self.new_dist, progress) fetcher.current_dist_name = "hardy" #fetcher.DEBUG=True res = fetcher.run() self.assertTrue(res) self.assertTrue(fetcher.uri.startswith("ftp://uk.archive.ubuntu.com")) self.assertTrue(progress.started) self.assertTrue(progress.stopped) self.assertTrue(progress.pulsed) if __name__ == '__main__': logging.basicConfig(level=logging.DEBUG) unittest.main() ubuntu-release-upgrader-0.220.10/tests/test_country_mirror.py0000644000000000000000000000150512431225715021244 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- import os import unittest from DistUpgrade.DistUpgradeFetcherCore import country_mirror CURDIR = os.path.dirname(os.path.abspath(__file__)) class testCountryMirror(unittest.TestCase): def testSimple(self): # empty try: del os.environ["LANG"] except KeyError: pass self.assertEqual(country_mirror(), '') # simple os.environ["LANG"] = 'de' self.assertEqual(country_mirror(), 'de.') # more complicated os.environ["LANG"] = 'en_DK.UTF-8' self.assertEqual(country_mirror(), 'dk.') os.environ["LANG"] = 'fr_FR@euro.ISO-8859-15' self.assertEqual(country_mirror(), 'fr.') if __name__ == "__main__": unittest.main() ubuntu-release-upgrader-0.220.10/tests/test_cdrom.py0000755000000000000000000001357512431225715017270 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- from __future__ import print_function import apt_pkg import os import tempfile import unittest from mock import Mock from DistUpgrade.DistUpgradeAptCdrom import AptCdrom CURDIR = os.path.dirname(os.path.abspath(__file__)) class TestAptCdrom(unittest.TestCase): " this test the apt-cdrom implementation " # def testAdd(self): # p = CURDIR + "/test-data-cdrom" # apt_pkg.config.set("Dir::State::lists","/tmp") # cdrom = AptCdrom(None, p) # self.assertTrue(cdrom._doAdd()) def testWriteDatabase(self): expect = \ "CD::36e3f69081b7d10081d167b137886a71-2 " \ "\"Ubuntu 8.10 _Intrepid Ibex_ - Beta amd64 (20080930.4)\";\n" \ "CD::36e3f69081b7d10081d167b137886a71-2::Label " \ "\"Ubuntu 8.10 _Intrepid Ibex_ - Beta amd64 (20080930.4)\";\n" p = CURDIR + "/test-data-cdrom/" database = CURDIR + "/test-data-cdrom/cdrom.list" apt_pkg.config.set("Dir::State::cdroms", database) apt_pkg.config.set("Acquire::cdrom::mount", p) apt_pkg.config.set("APT::CDROM::NoMount", "true") if os.path.exists(database): os.unlink(database) cdrom = AptCdrom(None, p) cdrom._writeDatabase() self.assertEqual(expect, open(database).read()) def testScanCD(self): p = CURDIR + "/test-data-cdrom" cdrom = AptCdrom(None, p) (p, s, i18n) = cdrom._scanCD() self.assertTrue(len(p) > 0 and len(s) > 0 and len(i18n) > 0, "failed to scan packages files (%s) (%s)" % (p, s)) #print(p,s,i18n) def testDropArch(self): p = CURDIR + "/test-data-cdrom" cdrom = AptCdrom(None, p) (p, s, i18n) = cdrom._scanCD() self.assertTrue(len(cdrom._dropArch(p)) < len(p), "drop arch did not drop (%s) < (%s)" % ( len(cdrom._dropArch(p)), len(p))) def testDiskName(self): " read and escape the disskname" cdrom = AptCdrom(None, CURDIR + "/test-data-cdrom") s = cdrom._readDiskName() self.assertEqual( "Ubuntu 8.10 _Intrepid Ibex_ - Beta amd64 (20080930.4)", s, "_readDiskName failed (got %s)" % s) def testGenerateSourcesListLine(self): cdrom = AptCdrom(None, CURDIR + "/test-data-cdrom") (p, s, i18n) = cdrom._scanCD() p = cdrom._dropArch(p) line = cdrom._generateSourcesListLine(cdrom._readDiskName(), p) #print(line) self.assertEqual("deb cdrom:[Ubuntu 8.10 _Intrepid Ibex_ - Beta amd64 " "(20080930.4)]/ intrepid restricted", line, "deb line wrong (got %s)" % line) def testCopyi18n(self): cdrom = AptCdrom(None, CURDIR + "/test-data-cdrom") (p, s, i18n) = cdrom._scanCD() p = cdrom._dropArch(p) d = tempfile.mkdtemp() cdrom._copyTranslations(i18n, d) self.assertTrue( os.path.exists(os.path.join(d, "Ubuntu%208.10%20%5fIntrepid%20Ibex" "%5f%20-%20Beta%20amd64%20(20080930.4)" "_dists_intrepid_main_i18n_" "Translation-be")), "no outfile in '%s'" % os.listdir(d)) def testCopyPackages(self): cdrom = AptCdrom(None, CURDIR + "/test-data-cdrom") (p, s, i18n) = cdrom._scanCD() p = cdrom._dropArch(p) d = tempfile.mkdtemp() cdrom._copyPackages(p, d) self.assertTrue( os.path.exists(os.path.join(d, "Ubuntu%208.10%20%5fIntrepid%20Ibex" "%5f%20-%20Beta%20amd64%20(20080930.4)" "_dists_intrepid_restricted_binary-" "amd64_Packages")), "no outfile in '%s'" % os.listdir(d)) def testVerifyRelease(self): cdrom = AptCdrom(None, CURDIR + "/test-data-cdrom") (p, s, i18n) = cdrom._scanCD() res = cdrom._verifyRelease(s) self.assertTrue(res) def testCopyRelease(self): cdrom = AptCdrom(None, CURDIR + "/test-data-cdrom") (p, s, i18n) = cdrom._scanCD() d = tempfile.mkdtemp() cdrom._copyRelease(s, d) self.assertTrue( os.path.exists(os.path.join(d, "Ubuntu%208.10%20%5fIntrepid%20Ibex" "%5f%20-%20Beta%20amd64%20(20080930.4)" "_dists_intrepid_Release")), "no outfile in '%s' (%s)" % (d, os.listdir(d))) def testSourcesList(self): cdrom = AptCdrom(None, CURDIR + "/test-data-cdrom") (p, s, i18n) = cdrom._scanCD() p = cdrom._dropArch(p) line = cdrom._generateSourcesListLine(cdrom._readDiskName(), p) self.assertEqual("deb cdrom:[Ubuntu 8.10 _Intrepid Ibex_ - Beta amd64 " "(20080930.4)]/ intrepid restricted", line, "sources.list line incorrect, got %s" % line) def test_comment_out(self): tmpdir = tempfile.mkdtemp() sourceslist = os.path.join(tmpdir, "sources.list") open(sourceslist, "w") apt_pkg.config.set("dir::etc::sourcelist", sourceslist) apt_pkg.config.set("dir::state::lists", tmpdir) view = Mock() cdrom = AptCdrom(view, CURDIR + "/test-data-cdrom") cdrom.add() cdrom.comment_out_cdrom_entry() for line in open(sourceslist): self.assertTrue(line.startswith("#")) self.assertEqual(len(open(sourceslist).readlines()), 2) if __name__ == "__main__": apt_pkg.init() apt_pkg.config.set("APT::Architecture", "amd64") unittest.main() ubuntu-release-upgrader-0.220.10/debian/0000755000000000000000000000000013262671454014625 5ustar ubuntu-release-upgrader-0.220.10/debian/91-release-upgrade0000755000000000000000000000045312431225715020041 0ustar #!/bin/sh # if the current release is under development there won't be a new one if [ "$(lsb_release -sd | cut -d' ' -f4)" = "(development" ]; then exit 0 fi if [ -x /usr/lib/ubuntu-release-upgrader/release-upgrade-motd ]; then exec /usr/lib/ubuntu-release-upgrader/release-upgrade-motd fi ubuntu-release-upgrader-0.220.10/debian/python3-distupgrade.install0000644000000000000000000000006612431225715022124 0ustar debian/tmp/usr/lib/python3*/dist-packages/DistUpgrade ubuntu-release-upgrader-0.220.10/debian/tests/0000755000000000000000000000000012431225715015757 5ustar ubuntu-release-upgrader-0.220.10/debian/tests/control0000644000000000000000000000014212431225715017357 0ustar Tests: nose-tests Depends: @, gir1.2-webkit-3.0, python3-mock, python3-nose, xvfb, python3-apport ubuntu-release-upgrader-0.220.10/debian/tests/nose-tests0000755000000000000000000000003612431225715020010 0ustar #!/bin/sh xvfb-run nosetests3 ubuntu-release-upgrader-0.220.10/debian/release-upgrade-motd0000755000000000000000000000272612431225715020560 0ustar #!/bin/sh -e # # 91-release-upgrade - display upgrade message or update the cache # in the background # # Copyright (C) 2010 Canonical Ltd. # # Authors: Dustin Kirkland # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3 of the License. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . stamp=/var/lib/ubuntu-release-upgrader/release-upgrade-available if [ -f "$stamp" ]; then # Stamp exists, see if it's expired now=$(date +%s) lastrun=$(stat -c %Y "$stamp") 2>/dev/null || lastrun=0 expiration=$(expr $lastrun + 86400) if [ $now -ge $expiration ]; then # Older than 1 day old, so update in the background /usr/lib/ubuntu-release-upgrader/check-new-release -q > "$stamp" & elif [ -s "$stamp" ]; then # Less than 1 day old, and non-empty, so display now cat "$stamp" echo fi else # No cache at all, so update in the background /usr/lib/ubuntu-release-upgrader/check-new-release -q > "$stamp" & fi ubuntu-release-upgrader-0.220.10/debian/rules0000755000000000000000000000277012431225715015703 0ustar #!/usr/bin/make -f ARCH=all DIST=$(shell lsb_release -c -s) DEBVER=$(shell LC_ALL=C dpkg-parsechangelog |sed -n -e '/^Version:/s/^Version: //p' | sed s/.*://) TARNAME=dist-upgrader_$(DEBVER)_$(ARCH).tar.gz DH_ARGS=--with=python3 PY3REQUESTED := $(shell py3versions -r) PY3DEFAULT := $(shell py3versions -d) # Run setup.py with the default python3 last so that the scripts use # #!/usr/bin/python3 and not #!/usr/bin/python3.X. PY3 := $(filter-out $(PY3DEFAULT),$(PY3REQUESTED)) python3 %: dh $@ $(DH_ARGS) override_dh_auto_clean: set -ex; for python in $(PY3); do \ LANG=C.UTF-8 LC_ALL=C.UTF-8 $$python setup.py clean -a; \ done find -name __pycache__ | xargs rm -rf rm -rf ./build ./DistUpgrade/$(DEBVER) ./DistUpgrade/mo \ ./DistUpgrade/$(DIST) ./DistUpgrade/$(DIST).tar.gz \ ./DistUpgrade/ubuntu-drivers-obsolete.pkgs ./po/mo binary-indep: dh $@ $(DH_ARGS) # now the dist-upgrader special tarball (cd DistUpgrade/ && \ ./build-tarball.sh && \ mkdir -p $(DEBVER) && \ cp $(DIST).tar.gz ./*ReleaseAnnouncement* $(DEBVER) && \ tar czvf ../../$(TARNAME) \ $(DEBVER)/*ReleaseAnnouncement* \ $(DEBVER)/$(DIST).tar.gz ) dpkg-distaddfile $(TARNAME) raw-dist-upgrader - override_dh_auto_build: set -ex; for python in $(PY3); do \ LANG=C.UTF-8 LC_ALL=C.UTF-8 $$python setup.py build; \ done override_dh_auto_install: set -ex; for python in $(PY3); do \ LANG=C.UTF-8 LC_ALL=C.UTF-8 $$python setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb; \ done ubuntu-release-upgrader-0.220.10/debian/ubuntu-release-upgrader-qt.install0000644000000000000000000000014312431225715023374 0ustar debian/tmp/usr/bin/kubuntu-devel-release-upgrade debian/tmp/usr/share/ubuntu-release-upgrader/*.ui ubuntu-release-upgrader-0.220.10/debian/control0000644000000000000000000000500212431225715016215 0ustar Source: ubuntu-release-upgrader Section: admin Priority: optional Maintainer: Ubuntu Developers Build-Depends: debhelper (>= 9), python3-all, python3-distutils-extra, python3-apt (>= 0.8.5~), lsb-release, ubuntu-drivers-common (>= 1:0.2.55) [i386 amd64], python3-update-manager, apt-clone (>= 0.2.3~ubuntu2) Build-Depends-Indep: libxml-parser-perl, intltool Standards-Version: 3.9.3 Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-core-dev/ubuntu-release-upgrader/trunk XS-Testsuite: autopkgtest X-Python3-Version: >= 3.2 Package: ubuntu-release-upgrader-core Architecture: all Pre-Depends: ${misc:Pre-Depends} Depends: ${python3:Depends}, ${misc:Depends}, python3-distupgrade (= ${source:Version}) Recommends: libpam-modules (>= 1.0.1-9ubuntu3) Replaces: update-manager (<< 1:0.165), update-manager-core (<< 1:0.165) Breaks: update-manager (<< 1:0.165), update-manager-core (<< 1:0.165), software-properties (<< 0.9.27) Description: manage release upgrades This is the core of the Ubuntu Release Upgrader Package: python3-distupgrade Architecture: all Section: python Pre-Depends: ${misc:Pre-Depends} Depends: ${python3:Depends}, ${misc:Depends}, python3-update-manager (>= 1:0.196.2~), python3-apt (>= 0.8.5~), lsb-release Replaces: python3-update-manager (<< 1:0.165) Breaks: python3-update-manager (<< 1:0.165) Description: manage release upgrades This is the DistUpgrade Python 3 module Package: ubuntu-release-upgrader-gtk Architecture: all Pre-Depends: ${misc:Pre-Depends} Depends: ${python3:Depends}, ${misc:Depends}, ubuntu-release-upgrader-core (= ${source:Version}), update-manager, python3-distupgrade (= ${source:Version}), python3-dbus, python3-gi (>= 3.8), gir1.2-vte-2.90, gir1.2-gtk-3.0, gir1.2-webkit-3.0 Description: manage release upgrades This is the GTK+ frontend of the Ubuntu Release Upgrader Package: ubuntu-release-upgrader-qt Architecture: all Pre-Depends: ${misc:Pre-Depends} Depends: ${misc:Depends}, ubuntu-release-upgrader-core (= ${source:Version}), python3-pykde4, kdesudo, psmisc Replaces: update-manager-kde (<< 1:0.165) Breaks: update-manager-kde (<< 1:0.165) Description: manage release upgrades This is the Qt frontend of the Ubuntu Release Upgrader ubuntu-release-upgrader-0.220.10/debian/ubuntu-release-upgrader-core.install0000644000000000000000000000067012431225715023705 0ustar debian/tmp/usr/bin/do-release-upgrade debian/tmp/etc/update-manager/* debian/tmp/usr/share/locale debian/tmp/usr/share/ubuntu-release-upgrader/*.cfg debian/tmp/usr/share/polkit-1/actions debian/tmp/usr/bin/do-partial-upgrade /usr/lib/ubuntu-release-upgrader debian/release-upgrade-motd usr/lib/ubuntu-release-upgrader debian/91-release-upgrade etc/update-motd.d/ debian/source_ubuntu-release-upgrader.py /usr/share/apport/package-hooks/ ubuntu-release-upgrader-0.220.10/debian/ubuntu-release-upgrader-core.postinst0000644000000000000000000000255512431225715024126 0ustar #!/bin/sh # postinst script for ubuntu-release-upgrader # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) if dpkg --compare-versions "$2" lt-nl 1:0.156.14.4; then # ensure permissions are right chmod -f 0600 /var/log/dist-upgrade/apt-clone_system_state.tar.gz || true chmod -f 0600 /var/log/dist-upgrade/system_state.tar.gz || true fi # Clear out upgrade-available flag; it will repopulate if necessary rm -f /var/lib/ubuntu-release-upgrader/release-upgrade-available ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 ubuntu-release-upgrader-0.220.10/debian/ubuntu-release-upgrader-core.preinst0000644000000000000000000000227012431225715023721 0ustar #!/bin/sh # preinst script for ubuntu-release-upgrader # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `install' # * `install' # * `upgrade' # * `abort-upgrade' # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in install|upgrade) # this is replaced to be a real file an not a symlink in version # 0.134.2, dpkg will not remove the symlink and put the new # file as .dpkg-new (can be removed post-lucid) if [ -L /etc/update-motd.d/91-release-upgrade ]; then rm -f /etc/update-motd.d/91-release-upgrade fi if dpkg --compare-versions "$2" lt 1:0.189 && [ -f /etc/update-manager/release-upgrades ]; then sed -i -s 's/^prompt=/Prompt=/' /etc/update-manager/release-upgrades fi ;; abort-upgrade) ;; *) echo "preinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 ubuntu-release-upgrader-0.220.10/debian/python3-distupgrade.links0000644000000000000000000000027612431225715021601 0ustar usr/lib/python3/dist-packages/janitor usr/lib/python3/dist-packages/DistUpgrade/janitor usr/lib/python3/dist-packages/NvidiaDetector usr/lib/python3/dist-packages/DistUpgrade/NvidiaDetector ubuntu-release-upgrader-0.220.10/debian/ubuntu-release-upgrader-core.manpages0000644000000000000000000000006312431225715024026 0ustar debian/tmp/usr/share/man/man8/do-release-upgrade.8 ubuntu-release-upgrader-0.220.10/debian/ubuntu-release-upgrader-core.dirs0000644000000000000000000000021512431225715023173 0ustar var/lib/ubuntu-release-upgrader var/lib/update-notifier var/log/dist-upgrade etc/update-motd.d etc/update-manager/release-upgrades.d usr/bin ubuntu-release-upgrader-0.220.10/debian/compat0000644000000000000000000000000212431225715016013 0ustar 9 ubuntu-release-upgrader-0.220.10/debian/copyright0000644000000000000000000000612012431225715016547 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Ubuntu Release Upgrader Source: https://code.launchpad.net/~ubuntu-core-dev/ubuntu-release-upgrader/trunk Files: * Copyright: 2004-2012 Canonical Ltd. License: GPL-2+ Files: do-partial-upgrade Copyright: 2004-2012 Canonical Ltd. 2004-2008 Michael Vogt 2004 Michiel Sikkes License: GPL-2+ Files: DistUpgrade/NvidiaDetector/nvidiadetector.py Copyright: 2008 Alberto Milone License: GPL-2+ Files: DistUpgrade/sourceslist.py Copyright: 2004-2009 Canonical Ltd. 2004 Michiel Sikkes 2006-2007 Sebastian Heinlein License: GPL-2+ Files: DistUpgrade/distinfo.py Copyright: 2005 Gustavo Noronha Silva 2006-2007 Sebastian Heinlein License: GPL-2+ Files: DistUpgrade/SimpleGtkbuilderApp.py DistUpgrade/SimpleGtk3builderApp.py Copyright: 2004 Sandino Flores Moreno License: GPL-2+ Files: DistUpgrade/ReleaseNotesViewer.py Copyright: 2006 Sebastian Heinlein License: GPL-2+ Files: DistUpgrade/imported/invoke-rc.d Copyright: 2000-2001 Henrique de Moraes Holschuh License: GPL-2+ Files: tests/patchdir/pycompile_orig Copyright: 2010 Piotr Ożarowski License: Expat License: GPL-2+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file /usr/share/common-licenses/GPL-2. License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ubuntu-release-upgrader-0.220.10/debian/source_ubuntu-release-upgrader.py0000644000000000000000000000411312431225715023315 0ustar '''apport package hook for ubuntu-release-upgrader (c) 2011-2014 Canonical Ltd. Author: Brian Murray ''' import os import re from apport.hookutils import ( attach_gsettings_package, attach_file_if_exists, attach_root_command_outputs, root_command_output) def add_info(report, ui): try: attach_gsettings_package(report, 'ubuntu-release-upgrader') except: pass report['CrashDB'] = 'ubuntu' report.setdefault('Tags', 'dist-upgrade') report['Tags'] += ' dist-upgrade' clone_file = '/var/log/dist-upgrade/apt-clone_system_state.tar.gz' if os.path.exists(clone_file): report['VarLogDistupgradeAptclonesystemstate.tar.gz'] = \ root_command_output(["cat", clone_file], decode_utf8=False) attach_file_if_exists(report, '/var/log/dist-upgrade/apt.log', 'VarLogDistupgradeAptlog') attach_file_if_exists(report, '/var/log/dist-upgrade/apt-term.log', 'VarLogDistupgradeApttermlog') attach_file_if_exists(report, '/var/log/dist-upgrade/history.log', 'VarLogDistupgradeAptHistorylog') attach_file_if_exists(report, '/var/log/dist-upgrade/lspci.txt', 'VarLogDistupgradeLspcitxt') attach_file_if_exists(report, '/var/log/dist-upgrade/main.log', 'VarLogDistupgradeMainlog') attach_file_if_exists(report, '/var/log/dist-upgrade/term.log', 'VarLogDistupgradeTermlog') attach_file_if_exists(report, '/var/log/dist-upgrade/screenlog.0', 'VarLogDistupgradeScreenlog') attach_root_command_outputs( report, {'CurrentDmesg.txt': 'dmesg | comm -13 --nocheck-order /var/log/dmesg -'}) problem_type = report.get("ProblemType", None) if problem_type == 'Crash': tmpdir = re.compile('ubuntu-release-upgrader-\w+') tb = report.get("Traceback", None) if tb: dupe_sig = '' for line in tb.splitlines(): scrub_line = tmpdir.sub('ubuntu-release-upgrader-tmpdir', line) dupe_sig += scrub_line + '\n' report["DuplicateSignature"] = dupe_sig ubuntu-release-upgrader-0.220.10/debian/ubuntu-release-upgrader-core.links0000644000000000000000000000011512431225715023351 0ustar usr/bin/do-release-upgrade usr/lib/ubuntu-release-upgrader/check-new-release ubuntu-release-upgrader-0.220.10/debian/source/0000755000000000000000000000000012431225715016115 5ustar ubuntu-release-upgrader-0.220.10/debian/source/format0000644000000000000000000000001512431225715017324 0ustar 3.0 (native) ubuntu-release-upgrader-0.220.10/debian/docs0000644000000000000000000000001712431225715015466 0ustar README AUTHORS ubuntu-release-upgrader-0.220.10/debian/bzr-builddeb.conf0000644000000000000000000000003112431225715020023 0ustar [BUILDDEB] native = True ubuntu-release-upgrader-0.220.10/debian/changelog0000644000000000000000000100762413262671252016505 0ustar ubuntu-release-upgrader (1:0.220.10) trusty-security; urgency=medium * Properly drop permissions when opening a browser. (LP: #1174007) -- Marc Deslauriers Mon, 09 Apr 2018 10:01:24 -0400 ubuntu-release-upgrader (1:0.220.9) trusty-proposed; urgency=medium * No change rebuild so the dist-upgrader tarball will be signed with the new method. (LP: #1645906) -- Brian Murray Wed, 30 Nov 2016 09:53:35 -0800 ubuntu-release-upgrader (1:0.220.8) trusty-proposed; urgency=medium * DistUpgrade/build-tarball.sh: Copy the contents of demoted.cfg so it is not a broken symlink. (LP: #1498193) -- Brian Murray Tue, 29 Sep 2015 12:56:26 -0700 ubuntu-release-upgrader (1:0.220.7) trusty; urgency=medium * DistUpgrade/DistUpgradeViewText.py: - flush stdout before reading user input. (LP: #1417880) -- Marius Gedminas Wed, 04 Feb 2015 10:49:34 -0500 ubuntu-release-upgrader (1:0.220.6) trusty-proposed; urgency=medium * data/removal_blacklist.cfg: make update-manager blacklist entry more specific so it does not match update-manager-kde. (LP: #1313165) -- Brian Murray Thu, 13 Nov 2014 14:10:13 -0800 ubuntu-release-upgrader (1:0.220.5) trusty-proposed; urgency=medium * DistUpgrade/DistUpgradeApport.py: - modify Popen call to set universal_newlines=True (LP: #1357034) - log that dependency problems are not reported. - all apport versions support --tags now so just add dist-upgrade tag - remove redundant ErrorMessage string -- Brian Murray Fri, 29 Aug 2014 13:09:31 -0700 ubuntu-release-upgrader (1:0.220.4) trusty-proposed; urgency=low * DistUpgrade/DistUpgradeCache.py: - fix crash in free space check for certain locales (LP: #1172740) - removal of essential packages that are not in the main arch is ok (LP: #1307904) - fix str/unicode crash in certain locales when a package is found in the removal blacklist (LP: #1310053) * DistUpgrade/DistUpgradeViewGtk3.py: - make details dialog resize when details are expanded/collapsed (LP: #1072460) - load webkit only when needed * DistUpgrade/DistUpgradeViewText.py: - fix py3 crash in text mode * DistUpgrade/DistUpgradeMain.py: - log python version * po/{eo,id,ug}.po: - fix translations of check-new-release-gtk which cause a crash (LP: #1311396) * data/demoted.cfg: - autmatic refresh of the demoted packages * po/*.po: - automatic refresh from launchpad -- Michael Vogt Thu, 24 Apr 2014 14:57:39 +0200 ubuntu-release-upgrader (1:0.220.2) trusty; urgency=medium * DistUpgrade/DistUpgradeController.py: - really backup sources.list first (LP: #1276931) -- Brian Murray Fri, 11 Apr 2014 15:25:07 -0700 ubuntu-release-upgrader (1:0.220.1) trusty; urgency=low * fix error message in motd on fresh install (LP: #1306673) -- Michael Vogt Fri, 11 Apr 2014 17:59:31 +0200 ubuntu-release-upgrader (1:0.220) trusty; urgency=low * DistUpgrade/DistUpgradeCache.py: - add Debug::pkgDepCache::Marker into the apt.log debug output * data/removal_blacklist.cfg: - gnome-session does not need special protection anymore * DistUpgrade/DistUpgradeViewText.py: - do not crash on EPIPE from the pager (e.g. if the user closes the pager early) -- Michael Vogt Tue, 08 Apr 2014 17:39:37 +0200 ubuntu-release-upgrader (1:0.219.4) trusty; urgency=low * data/release-upgrades: - set the default upgrade prompt to "lts" instead of "normal" so that the LTS users will only see the automatic upgrade prompt when the next LTS version is ready -- Michael Vogt Tue, 08 Apr 2014 09:12:55 +0200 ubuntu-release-upgrader (1:0.219.3) trusty; urgency=low * DistUpgrade/DistUpgradeView.py: - do not crash if a pkg is in Reinstall state (e.g. from pkgApplyStatus) LP: #1294124 * DistUpgrade/DistUpgradeViewGtk3.py: - disable plugins in html webkit view * pre-build.sh: - calculate demotions from saucy->trusty and precise->trusty * fix pylfakes issue -- Michael Vogt Mon, 07 Apr 2014 14:07:10 +0200 ubuntu-release-upgrader (1:0.219.2) trusty; urgency=medium * DistUpgrade/DevelReleaseAnnouncement: Stop using "alpha" or "beta" in the devel release warning, and use more generic devel wording. -- Adam Conrad Fri, 28 Mar 2014 16:14:44 -0600 ubuntu-release-upgrader (1:0.219.1) trusty; urgency=medium * DistUpgrade/DistUpgradeApport.py: if we are running with a display set assume that update-notifier is running and do not launch apport thereby preventing it from being launched two times. (LP: #1294814) -- Brian Murray Fri, 28 Mar 2014 07:43:25 -0700 ubuntu-release-upgrader (1:0.219) trusty; urgency=medium * DistUpgrade/DistUpgradeQuirks.py: only check for PAE support on i386 or amd64 systems. (LP: #1294392) -- Brian Murray Fri, 21 Mar 2014 14:27:34 -0700 ubuntu-release-upgrader (1:0.218) trusty; urgency=medium * DistUpgrade/DistUpgradeApport.py: for crashes in the release upgrader tarball set the package version to the one from the tarball i.e. DistUpgradeVersion.py. -- Brian Murray Tue, 18 Mar 2014 11:14:54 -0700 ubuntu-release-upgrader (1:0.217) trusty; urgency=medium * debian/91-release-upgrade: if using the development release don't check for a new release. * include new version of python-apt's sourceslist.py (LP: #1278280) -- Brian Murray Mon, 17 Mar 2014 16:30:41 -0700 ubuntu-release-upgrader (1:0.216.1) trusty; urgency=medium * debian/control: do not depend on python3-apport as this recommends apport which pull in a lot more packages on servers. -- Brian Murray Thu, 13 Mar 2014 10:06:07 -0700 ubuntu-release-upgrader (1:0.216) trusty; urgency=medium * debian/control.py: depend on python3-apport since the release upgrader for U will be using python3 not python2. -- Brian Murray Mon, 10 Mar 2014 10:01:49 -0700 ubuntu-release-upgrader (1:0.215) trusty; urgency=medium * do-release-upgrade: indicate that -p and -d switches are mutually exclusive (LP: #1071025) * debian/control.py: depend on python-apport since DistUpgradeApport.py imports it and the release upgrader does not use python3 (LP: #1289604) * debian/source_ubuntu-release-upgrader.py: create a DuplicateSignature by stripping out the tmpdir from the Traceback (LP: #1289850) -- Brian Murray Fri, 07 Mar 2014 14:29:14 -0800 ubuntu-release-upgrader (1:0.214) trusty; urgency=medium * DistUpgrade/DistUpgradeQuirks.py: On 12.04 stop the upgrade process if the system does not support PAE. Thanks to Chris Bainbridge for the initial patch. (LP: #1160346) -- Brian Murray Wed, 05 Mar 2014 12:53:48 -0800 ubuntu-release-upgrader (1:0.213) trusty; urgency=medium * DistUpgrade/DistUpgradeController.py: Catch exception if apport is not installed and fail gracefully. Thanks to Jean-Baptiste Lallement for the initial patch. (LP: #1285545) -- Brian Murray Wed, 05 Mar 2014 10:56:40 -0800 ubuntu-release-upgrader (1:0.212) trusty; urgency=medium * tests/test_quirks.py: Only run fglrx tests on amd64 and i386 -- Brian Murray Thu, 27 Feb 2014 15:05:32 -0800 ubuntu-release-upgrader (1:0.211) trusty; urgency=medium * DistUpgrade/DistUpgradeFetcherCore.py: set inheritance of file descriptors for python3.4 (LP: #1272387) -- Brian Murray Mon, 24 Feb 2014 16:28:23 -0800 ubuntu-release-upgrader (1:0.210) trusty; urgency=low [ Brian Murray ] * data/DistUpgrade.cfg.precise: change kernel removals to 3.2.0 * source_ubuntu-release-upgrader.py: collect dmesg info when reporting upgrade failures * Utilize new downloaded event from update-manager thereby speeding up usage of MetaReleaseCore. Thanks to Anders Kaseorg for the patch. * Don't build depend on scrollkeeper thanks to Jeremy Bicha for the patch. [ Harald Sitter ] * data/DistUpgrade.cfg.precise: change kubuntu-desktop key dependencies to plasma-desktop, kubuntu-default-settings (previous ones did not exist or were simply bad key dependencies) LP: #1264887 + Same for kubuntu-netbook using plasma-netbook, kubuntu-netbook-default-settings. * data/DistUpgrade.cfg: change kubuntu-desktop key dependencies to plasma-desktop, kubuntu-settings-desktop + Same for kubuntu-netbook using plasma-netbook, kubuntu-settings-netbook -- Brian Murray Thu, 23 Jan 2014 16:14:37 -0800 ubuntu-release-upgrader (1:0.209) trusty; urgency=low [ Jean-Baptiste Lallement ] * Add data/DistUpgrade.cfg.precise to support Precise to Trusty upgrades. (LP: #1245469) -- Brian Murray Tue, 29 Oct 2013 10:18:07 -0700 ubuntu-release-upgrader (1:0.208) trusty; urgency=low [ Brian Murray ] * Synchronize the list of metapackages used in the code. LP: #1225016. * Properly display error messages encountered by DistUpgradeFetcherCore. (LP: #1241660) * DistUpgrade/DistUpgradeCache.py: Do not initialize the cache until we know it is unlocked. (LP: #1214186) -- Brian Murray Fri, 25 Oct 2013 09:17:56 -0700 ubuntu-release-upgrader (1:0.207) trusty; urgency=low * Support saucy->trusty upgrades. -- Steve Langasek Wed, 23 Oct 2013 02:42:08 +0000 ubuntu-release-upgrader (1:0.206) trusty; urgency=low * Remove lubuntu-desktop PostUpgradeRemove rule as it is unnecessary (LP: #1241123) * Replace references to Saucy with Trusty -- Brian Murray Mon, 21 Oct 2013 09:31:39 -0700 ubuntu-release-upgrader (1:0.205) saucy; urgency=low * Instead of using gksu to authenticate for the distribution upgrade, use do-release-upgrade with pkexec (LP: #1210649) -- Brian Murray Fri, 04 Oct 2013 19:17:49 -0700 ubuntu-release-upgrader (1:0.204) saucy; urgency=low * Call update-manager instead of raising it's UnsupportedDialog error. (LP: #1210643) Thanks to Dylan McCall for some help with this. * Replace references to 13.04 with 13.10 (LP: #1225665) -- Brian Murray Tue, 17 Sep 2013 14:35:25 -0700 ubuntu-release-upgrader (1:0.203) saucy; urgency=low [ Brian Murray ] * test/test_sources_list.py: resolve test failure regarding EOL upgrades * DistUpgradeQuirks.py: pep8 cleanup, remove some additional unnecessary quirks * DistUpgrade/patches/: remove pycompile patch [ Steve Langasek ] * Drop all quirks for upgrades prior to the karmic->lucid upgrade; all releases earlier than 10.04 are entirely EOLed, and in any case users should not be upgrading directly from such old releases to 13.10 or later without going through the intermediate LTS releases, so this is all dead code. * Drop use of base-installer for detecting "recommended" kernels for the hardware. So far this code was only ever used for a one-time transition when more specialized kernel flavors became available on i386 that were preferred over the -386 flavor, and in the meantime the code is causing wrong results on upgrade for users of UbuntuStudio, which ships a kernel flavor that's not known by base-installer. LP: #1220898. -- Brian Murray Thu, 12 Sep 2013 10:38:41 -0700 ubuntu-release-upgrader (1:0.202) saucy; urgency=low * DistUpgradeQuirks.py: when removing .crash files also remove whoopsie .upload and .uploaded files * DistUpgradeCache.py: remove unhelpful system error message from upgrade failure dialog (LP: #1221307) -- Brian Murray Mon, 09 Sep 2013 16:37:20 -0700 ubuntu-release-upgrader (1:0.201) saucy; urgency=low [ Colin Watson ] * DistUpgrade/DistUpgradeController.py: Fix "alllowed" typo. [ Brian Murray ] * DistUpgrade/DevelReleaseAnnouncement: indicate that it is a Beta now -- Brian Murray Thu, 05 Sep 2013 10:07:13 -0700 ubuntu-release-upgrader (1:0.200) saucy; urgency=low * DistUpgradeFetcher.py: Properly pass Gtk.window to error (LP: #1199984) * ubuntu-release-upgrader-gtk: depend on gir1.2-webkit-3.0 (LP: #1215526) -- Brian Murray Thu, 22 Aug 2013 09:48:10 -0700 ubuntu-release-upgrader (1:0.199) saucy; urgency=low * Drop obsolete GObject.threads_init() calls to avoid warnings. Bump python-gi dependency. * Update release version in DistUpgradeQuirks.py (LP: #1202826) * Modify demotions so that they are generated for saucy * Modify how no_longer_supported_nag is set and fix test failure for test_end_of_life.py, thanks to Michael Terry. -- Brian Murray Tue, 06 Aug 2013 13:43:33 -0700 ubuntu-release-upgrader (1:0.198) saucy; urgency=low * Add devel_release to options so that the fix for bug 1199157 really works (LP: #1200135) -- Brian Murray Thu, 11 Jul 2013 11:09:44 -0700 ubuntu-release-upgrader (1:0.197) saucy; urgency=low [ Andrew Starr-Bochicchio ] * Disable proposed on upgrade to a development release (LP: #1199157). -- Brian Murray Tue, 09 Jul 2013 11:40:52 -0700 ubuntu-release-upgrader (1:0.196) saucy; urgency=low * Re-sync the local copy of invoke-rc.d with the one from sysvinit. Patch still applies cleanly. (LP: #1185364) -- Stéphane Graber Wed, 29 May 2013 11:16:20 -0400 ubuntu-release-upgrader (1:0.195) saucy; urgency=low [ Dustin Kirkland ] * debian/release-upgrade-motd: LP: #1173209 - recheck release upgrade once-a-day, even if stamp file is already populated - this partially fixes the sticky "upgrade available" message, after successfully upgrading, even if the stamp is not removed * DistUpgrade/DistUpgradeController.py: LP: #1173209 - remove the upgrade-available flag, on upgrade completion * debian/ubuntu-release-upgrader-core.postinst: LP: #1173209 - clear the upgrade-available flag, on postinst; it will automatically repopulate, if necessary [ Brian Murray ] * DistUpgradeCache.py: encode error message as UTF-8 (LP: #1177821) * DistUpgradeCache.py: double size estimate need in boot (LP: #1173468) -- Brian Murray Fri, 17 May 2013 09:09:01 -0700 ubuntu-release-upgrader (1:0.194) saucy; urgency=low * support raring->saucy release upgrades harder -- Adam Conrad Tue, 30 Apr 2013 11:43:32 -0600 ubuntu-release-upgrader (1:0.193) saucy; urgency=low * support raring->saucy release upgrades -- Brian Murray Mon, 29 Apr 2013 13:36:33 -0700 ubuntu-release-upgrader (1:0.192.10) raring; urgency=low * Add in Ubuntu.mirrors from python-apt-common for the release upgrader (LP: #1069745) -- Brian Murray Fri, 19 Apr 2013 08:18:15 -0700 ubuntu-release-upgrader (1:0.192.9) raring; urgency=low [ Barry Warsaw ] * Fix UnboundLocalError caused by corner case in the Python 3 language spec. (LP: #1102593) [ Jonathan Riddell ] * Use correct argument for frontend in kubuntu-devel-release-upgrade [ Brian Murray ] * Remove cups-pdf from ForcedObsoletes in DistUpgrade.cfg (LP: #457221) -- Brian Murray Thu, 18 Apr 2013 13:10:08 -0700 ubuntu-release-upgrader (1:0.192.8) raring; urgency=low * fallback to UTF-8 if getdefaultlocale returns None (LP: #1166346) -- Brian Murray Wed, 10 Apr 2013 10:49:50 -0700 ubuntu-release-upgrader (1:0.192.7) raring; urgency=low * in doPostInitialUpdate return false if there is no cache (LP: #1127451) -- Brian Murray Mon, 08 Apr 2013 14:23:32 -0700 ubuntu-release-upgrader (1:0.192.6) raring; urgency=low * No change rebuild to regenerate DevelReleaseAnnouncement.html -- Michael Terry Mon, 18 Mar 2013 13:23:37 -0400 ubuntu-release-upgrader (1:0.192.5) raring; urgency=low * Fix a couple path joins and bugs that prevented check-new-release-gtk from working. (LP: #1094777) -- Michael Terry Tue, 22 Jan 2013 09:46:57 -0500 ubuntu-release-upgrader (1:0.192.4) raring; urgency=low * Ensure that partial upgrades are fully translated (LP: #1072828) thanks to Gabor Kelemen for the initial patch. * Remove code enabling apport since it is always running (LP: #1068874) * check-new-release-gtk: set the correct translation domain thanks to Gabor Kelemen for patch (LP: #1093697) * DistUpgradeController.py: call apport-bug with the binary package name not the source package name (LP: #1098001) * source_ubuntu-release-upgrader.py: set the crash database to Ubuntu to allow reporting of bugs even if the package does not seem to be official (LP: #1067542) -- Brian Murray Fri, 11 Jan 2013 16:19:26 -0800 ubuntu-release-upgrader (1:0.192.3) raring; urgency=low * fix FTBFS if there are no __pycache__ dirs -- Michael Vogt Fri, 14 Dec 2012 14:44:49 +0100 ubuntu-release-upgrader (1:0.192.2) raring; urgency=low [ Brian Murray ] * Call dpkg using the full path (LP: #1085844) [ Colin Watson ] * Remove calls to (currently) Python 2-only dh_auto_* (LP: #1089861). [ Michael Vogt ] * fix GObject->GLib deprecation warnings * lp:~mvo/ubuntu-release-upgrader/fix-component-ordering/: - ensure stable component order in sources.list for official components, this fixes a ADT failure -- Michael Vogt Fri, 14 Dec 2012 13:29:38 +0100 ubuntu-release-upgrader (1:0.192.1) raring; urgency=low * Resolve an encoding issue when a user responds with non-ascii test in the text view (LP: #1071388) -- Brian Murray Tue, 11 Dec 2012 16:49:29 -0800 ubuntu-release-upgrader (1:0.192) raring; urgency=low * do-release-upgrade: - Fix crasher when not using gtk (LP: #1076186) -- Michael Terry Tue, 13 Nov 2012 10:18:47 -0500 ubuntu-release-upgrader (1:0.191.2) raring; urgency=low * tests/test_view.py: Use "tee" as pager instead of "less", so that this test also works in an environment without stdout. -- Martin Pitt Fri, 09 Nov 2012 13:51:34 +0100 ubuntu-release-upgrader (1:0.191.1) raring-proposed; urgency=low [ Michael Vogt ] * update all string for quantal->raring upgrade [ Brian Murray ] * rewrite sources if using a local mirror without backports (LP: #1067393) -- Michael Vogt Mon, 05 Nov 2012 09:44:11 +0100 ubuntu-release-upgrader (1:0.191) raring; urgency=low * support quantal->raring release upgrades -- Michael Vogt Tue, 30 Oct 2012 09:33:50 +0100 ubuntu-release-upgrader (1:0.190.3) quantal-proposed; urgency=low * DistUpgrade.ui: allow the conf file dialog to be resizable and set it to a larger initial size. Thanks to Michael Terry for the fix. (LP: #1065806) * DistUpgradeApport.py: check to see if --tags is available before trying to use it (LP: #1070043) -- Brian Murray Tue, 23 Oct 2012 10:45:58 -0700 ubuntu-release-upgrader (1:0.190.2) quantal-proposed; urgency=low * fix unicode releated crash in non-english locales (LP: #1068389) -- Michael Vogt Fri, 19 Oct 2012 09:30:36 +0200 ubuntu-release-upgrader (1:0.190.1) quantal-proposed; urgency=low * remove "gdm" from KeyDependencies (LP: #1067359) -- Michael Vogt Tue, 16 Oct 2012 16:26:02 +0200 ubuntu-release-upgrader (1:0.190) quantal-proposed; urgency=low * DistUpgrade/DistUpgradeController.py: - fix crash in "Invalid package information", thanks to Brian Murray -- Michael Vogt Fri, 12 Oct 2012 18:19:23 +0200 ubuntu-release-upgrader (1:0.189) quantal-proposed; urgency=low * debian/ubuntu-release-upgrader-core.preinst: modify prompt to be Prompt on new installs of ubuntu-release-upgrader too since it is a new package in quantal (LP: #1065754) -- Brian Murray Thu, 11 Oct 2012 16:21:11 -0700 ubuntu-release-upgrader (1:0.188) quantal; urgency=low * ensure that translations are loaded (LP: #1058102) * update translations from Launchpad -- Brian Murray Tue, 09 Oct 2012 09:07:12 -0700 ubuntu-release-upgrader (1:0.187) quantal; urgency=low * DistUpgradeMain.py: ensure that translations are loaded (LP: #1058102) -- Brian Murray Wed, 03 Oct 2012 16:22:48 -0700 ubuntu-release-upgrader (1:0.186) quantal; urgency=low * DistUpgradeApport.py: don't use a '/' as a key name in the apport report as this will cause an assertion error and prevent any attachments from being included (LP: #1060353) -- Brian Murray Tue, 02 Oct 2012 10:57:22 -0700 ubuntu-release-upgrader (1:0.185) quantal; urgency=low * Pass the current locale's preferred encoding to bytes.decode(), since Python 2 has a silly default. -- Colin Watson Tue, 02 Oct 2012 17:53:26 +0100 ubuntu-release-upgrader (1:0.184.1) quantal; urgency=low * lp:~mvo/ubuntu-release-upgrader/lp1052605 into lp:ubuntu-release-upgrader: - spinning on the dpkg lock for a short while before giving up - reverting cleanly if the cache open fails after a sources.list update but before anything got installed (LP: #1052605) -- Michael Vogt Tue, 02 Oct 2012 18:44:01 +0200 ubuntu-release-upgrader (1:0.184) quantal; urgency=low * Decode the output of apt_pkg.size_to_str() if necessary when substituting it into Unicode strings (LP: #1031882). * Ship /usr/share/keyrings/ubuntu-archive-keyring.gpg as utils/apt/trusted.gpg (although that's only for tests anyway), rather than whatever happens to be in /etc/apt/trusted.gpg on the system used to build the source package. -- Colin Watson Tue, 02 Oct 2012 16:09:02 +0100 ubuntu-release-upgrader (1:0.183) quantal; urgency=low * debian/ubuntu-release-upgrader-core.preinst: modify /etc/dist-upgrader/release-upgrades to use Prompt instead of prompt thereby avoiding a conffile prompt (LP: #1045579) -- Brian Murray Mon, 01 Oct 2012 17:28:23 -0700 ubuntu-release-upgrader (1:0.182) quantal; urgency=low * source_ubuntu_release_upgrader.py: Do not try to add apt-clone system state if it does not exist * DistUpgradeApport.py: handle the case where python-apport is not installed (LP: #1059403) -- Brian Murray Mon, 01 Oct 2012 12:56:39 -0700 ubuntu-release-upgrader (1:0.181) quantal; urgency=low [ Colin Watson ] * DistUpgrade/DistUpgradeController.py: Guard against UnboundLocalError in doDistUpgradeFetching. [ Brian Murray ] * ensure that apt-clone system state is included in bug reports filed by apport * DistUpgrade/DistUpgradeController.py: properly handle source entries with unicode comments in them (LP: #1039484) -- Brian Murray Thu, 27 Sep 2012 09:31:58 -0700 ubuntu-release-upgrader (1:0.180) quantal; urgency=low * drop "unity-2d" from removal blacklist -- Michael Vogt Tue, 04 Sep 2012 10:01:45 +0200 ubuntu-release-upgrader (1:0.179) quantal; urgency=low * include the gtkbuilder/ dir again in the tarball to fix GUI upgrades (LP: #1043696) -- Michael Vogt Thu, 30 Aug 2012 10:53:55 +0200 ubuntu-release-upgrader (1:0.178) quantal; urgency=low [ Michael Vogt ] * add unity_support_test as a upgrader quirk (LP: #1035261) [ Jonathan Riddell ] * Remove kdm and xsettings-kde -- Jonathan Riddell Fri, 10 Aug 2012 16:54:36 +0200 ubuntu-release-upgrader (1:0.177) quantal; urgency=low * Apparently the buildds also have LC_ALL set to C, so the previous upload wasn't enough to workaround the problem. This time override both LANG and LC_ALL. -- Stéphane Graber Wed, 08 Aug 2012 19:20:59 -0400 ubuntu-release-upgrader (1:0.176) quantal; urgency=low * Use LANG=C.UTF-8 to prevent a python crash when running setup.py with an uploader name containing utf-8 on buildds using LANG=C. -- Stéphane Graber Wed, 08 Aug 2012 18:55:01 -0400 ubuntu-release-upgrader (1:0.175) quantal; urgency=low * Fix removal_blacklist to blacklist "^screen$" instead of "screen". This fixes cases where the upgrade would fail because of a package containing "screen" being removed. (LP: #1029531) -- Stéphane Graber Wed, 08 Aug 2012 17:57:36 -0400 ubuntu-release-upgrader (1:0.174) quantal-proposed; urgency=low * DistUpgrade/DistUpgradeApport.py: use a whitelist to ensure that only specified files are gathered when creating an apport crash report (LP: #1004503) -- Brian Murray Wed, 25 Jul 2012 12:06:06 -0700 ubuntu-release-upgrader (1:0.173) quantal; urgency=low * tests/test_sources_list.py: - Skip mirror test if the mirror is unreachable - Use US mirror instead of DE mirror because the US one happens to be reachable inside the data center where the Jenkins automatic test are run. * DistUpgrade/build-tarball.sh: - Include .ui files in the tarball too, they got accidentally dropped by me in the big code reshuffle (LP: #1026067) -- Michael Terry Mon, 23 Jul 2012 11:04:01 -0400 ubuntu-release-upgrader (1:0.172) quantal; urgency=low [ Colin Watson ] * Depend on python3-mock for DEP-8 tests. [ Michael Terry ] * debian/python3-distupgrade.links: - Add links to janitor and NvidiaDetector modules as the code expects (LP: #1023594) -- Michael Terry Mon, 16 Jul 2012 10:14:02 -0400 ubuntu-release-upgrader (1:0.170) quantal; urgency=low [ Brian Murray ] * DistUpgrade/DistUpgradeMain.py: call clone.save_state with scrub_sources set so that VarLogDistUpgradeAptclonesystemstate can be included in bug reports again [ Colin Watson ] * Declare Breaks/Replaces from python3-distupgrade to old versions of python3-update-manager (LP: #1020229). [ Jeremy Bicha ] * data/release-upgrades: - set release upgrades default back to "normal" instead of "lts" -- Colin Watson Tue, 10 Jul 2012 11:50:11 +0100 ubuntu-release-upgrader (1:0.169) quantal; urgency=low * Add replaces/breaks onto old update-manager-kde -- Jonathan Riddell Mon, 09 Jul 2012 15:28:12 +0100 ubuntu-release-upgrader (1:0.168) quantal; urgency=low * Add *.cfg files back to the release tarball. -- Michael Terry Fri, 06 Jul 2012 13:55:51 -0400 ubuntu-release-upgrader (1:0.167) quantal; urgency=low * Build-Depend on python3-update-manager so its code is available when the dist upgrade tarball is created. -- Michael Terry Fri, 06 Jul 2012 09:48:47 -0400 ubuntu-release-upgrader (1:0.166) quantal; urgency=low * Fix release upgrade tarball to include some UpdateManager that it may need during upgrade. LP: #1020462 -- Michael Terry Fri, 06 Jul 2012 09:25:03 -0400 ubuntu-release-upgrader (1:0.165) quantal-proposed; urgency=low * Rename source package, split upgrade bits out of update-manager * do-partial-upgrade: - Add a private command for running a partial upgrade (dist-upgrade) * data/com.ubuntu.release-upgrader.policy: - Add a PolicyKit policy file to give nice user strings when do-partial-upgrade and do-release-upgrade are run under pkexec * debian/tests: - add dep8 tests -- Michael Terry Mon, 25 Jun 2012 12:10:31 -0400 update-manager (1:0.164) quantal; urgency=low [ Brian Murray ] * DistUpgrade/DistUpgradeApport.py: ensure package install failures are tagged dist-upgrade [ Robert Roth ] * UpdateManager/UpdateManager.py: check for None type from get_last_update_minutes (LP: #1013325) [ Colin Watson ] * DistUpgrade/NvidiaDetector, debian/control: Update symlink to Python 3 version, available as of ubuntu-drivers-common 1:0.2.55. * debian/rules: Make sure to run setup.py with the default python3 last, so that scripts get correct #! lines. [ Barry Warsaw ] * pre-build.sh: - Add python-gi as an explicit dependency. - python3-mock is required. * setup.py: - Fix the installation of the janitor.plugincore package for Python 3. (LP: #1013490) - Calculate the setup() version number from debian/changelog. - Remove package_dir since it's not actually needed. - Whitespace normalization. * tests/Makefile - Add sleep between Python 2 and Python 3 invocation of tests under xvfb-run, otherwise I get crashes where xvfb doesn't come up. -- Barry Warsaw Thu, 21 Jun 2012 20:42:23 -0400 update-manager (1:0.163) quantal; urgency=low [ Colin Watson ] * Isolate tests from local configuration in /etc/update-manager/release-upgrades.d/. * Use Python attributes rather than GObject.get_data and GObject.set_data, which have been removed upstream (LP: #1009859). * Switch default view class to Gtk3 and replace python-gobject dependency with python-gi. * Port away from old-style apt.Package candidateFoo and installedFoo properties, preferring candidate.foo and installed.foo. In a number of cases we have to check whether candidate/installed is non-None first. * Use apt_pkg.version_compare rather than apt_pkg.VersionCompare. * Use apt_pkg.uri_to_filename rather than apt_pkg.URItoFileName. * Use apt_pkg.TagFile (and related new-style API) rather than apt_pkg.ParseTagFile. * Use apt_pkg.PackageManager rather than apt_pkg.GetPackageManager. * Use apt_pkg.Acquire rather than apt_pkg.GetAcquire. * Use mark_foo/marked_foo rather than markFoo/markedFoo. * Use apt_pkg.ActionGroup rather than apt_pkg.GetPkgActionGroup. * Use apt_pkg.ProblemResolver rather than apt_pkg.GetPkgProblemResolver. * Use apt_pkg.read_config_file rather than apt_pkg.ReadConfigFile. * Use new spelling of apt_pkg.DepCache methods. * Rename several local cache methods to PEP-8 style to avoid showing up in the output of /usr/share/python-apt/migrate-0.8.py. * Use apt_pkg.size_to_str rather than apt_pkg.SizeToStr. * Use apt_pkg.PackageManager.get_archives rather than apt_pkg.PackageManager.GetArchives. * Use apt_pkg.Acquire.fetch_needed rather than apt_pkg.Acquire.FetchNeeded. * Use new spelling of apt_pkg.Package/Version/Dependency methods. * Use apt_pkg.pkgsystem_lock rather than apt_pkg.PkgSystemLock. * Use new spelling of apt_pkg dependency parsing methods. * Use new spelling of apt_pkg.SourceList methods. * Bump python-apt (build-)dependency to >= 0.8.0. * Add a scheme for excluding false positives from the pyflakes test, and enable it by default. * Rearrange the OptionParser workaround from 1:0.154.5 to work with Python 3, using gettext or ugettext as appropriate. * Always pass bytes to hashlib.md5.update. * Fix DistUpgradeAptCdrom to account for gzip files being opened in binary mode. * Convert the last use of os.popen to subprocess.check_output, which makes it easier to read str rather than bytes. (This requires Python 2.7.) * Decode bytes read from urlopened file objects. * UpdateManager/backend/InstallBackendSynaptic.py - Keep a reference to the data tuple passed to GObject.child_watch_add to avoid attempts to destroy it without a thread context (LP: #724687). - Open temporary synaptic selections file in text mode. * Define __bool__ rather than __nonzero__ method in Python 3. * sort(cmp=) and sorted(cmp=) no longer work in Python 3. Use appropriate key= arguments instead. * Fix ResourceWarning while reading /proc/mounts. * Make update-manager-kde depend on psmisc, for killall. * DistUpgrade/DistUpgradeView.py: - Use floor division in FuzzyTimeToStr. * DistUpgrade/DistUpgradeViewText.py: - Flush stdout after printing confirmation message, since it doesn't have a trailing newline. * Use the appropriate Unicode gettext methods in both Python 2 and 3, and drop lots of Python-3-unfriendly Unicode mangling as a result. * DistUpgrade/DistUpgradeViewKDE.py: - Open the terminal log in binary mode. * data/do-release-upgrade.8: - Provide a more useful NAME section. * DistUpgrade/DistUpgradeCache.py: - Tolerate SyntaxError from attempting to import NvidiaDetector, until such time as a complete ubuntu-drivers-common Python 3 port is in the archive. * Switch #! lines over to python3, apart from dist-upgrader which needs to stay as Python 2 for a while longer (and have some special arrangement for running with Python 3 for upgrades from >= quantal). * Run tests under both Python 2 and 3. [ Adam Conrad ] * Merge branch from Michael Terry to drop auto-upgrade-tester from update-manager and move it into its own source package [ Barry Warsaw ] * Begin refactoring of Computer Janitor code by renaming and re-situating all of it to janitor/plugincore. This will eventually be removed from here into its own separate branch. * Merge the temporary Python 3 sprint branch back into trunk, and close the py3 sprint branch. * Moved UpdateManager/backend and UpdateManager/UnitySupport.py to the python*-update-manager packages for apturl. [ Michael Vogt ] * UpdateManager/GtkProgress.py: - fix python-apt 0.8 API crash [ Stéphane Graber ] * Drop fdsend as it's not used and doesn't build with python3. * Make update-manager-core a binary all packages (everything is python). * Split update-manager-core into python-update-manager, python3-update-manager and update-manager-core. * Build-depend and depend on python-apt >= 0.8.5~ as we need proper python3 support. [ Steve Langasek ] * tests/test_country_mirror.py: the test suite shouldn't fail if $LANG isn't set in the environment. * update-manager is now using python3 as an interpreter, so fix these up to actually be python3 packages. -- Colin Watson Thu, 14 Jun 2012 00:57:42 +0100 update-manager (1:0.162) quantal; urgency=low * DistUpgrade/build-tarball.sh: - include "DistUpgrade" symlink in tarball to ensure relative imports keep working -- Michael Vogt Mon, 04 Jun 2012 14:27:50 +0200 update-manager (1:0.161) quantal; urgency=low * /usr/share/nvidia-common/obsolete was renamed to /usr/share/ubuntu-drivers-common/obsolete and moved packages. Cope with this. -- Colin Watson Fri, 01 Jun 2012 20:53:46 +0100 update-manager (1:0.160) quantal; urgency=low [ Colin Watson ] * Use Python 3-style print functions. * Use "except Exception as e" syntax rather than the old-style "except Exception, e". * Fix a few assorted pyflakes warnings. * Use string methods rather than functions from the string module. * Replace most uses of filter and map with list comprehensions or for loops. * Use open() rather than file(). * Use Python 3 renaming of ConfigParser if available. * Use "raise Exception(value)" syntax rather than the old-style "raise Exception, value". * Remove duplicate imports of os.path; 'import os' is enough. * Use Python 3 renamings of urllib, urllib2, and urlparse if available. * Remove all hard tabs from Python code. Python 3 no longer tolerates mixing tabs and spaces for indentation. * Use Python 3 renaming of httplib if available. * Use email.utils.parsedate (with a DST handling correction) rather than the long-deprecated rfc822.parsedate. * Use the threading module instead of thread (renamed to _thread in Python 3). * Tell Python to use absolute imports by default, and annotate cases where we need relative imports. * Update test_proxy to use gsettings and the python-apt 0.8 API. * Use new-style octal literals. * Drop use of deprecated statvfs module. * Use Python 3 renamings of BaseHTTPServer and SocketServer if available. * Modernise use of unittest methods. * Use python-apt 0.8 API spellings of apt_pkg.config methods. * Fix several ResourceWarnings with Python 3. * Port to python-apt 0.8 progress classes. * Since python-gnupginterface is not likely to be ported to Python 3, and since it's almost just as easy to call gpg directly via subprocess, do so. * Use gettext if ugettext does not exist (as in Python 3). * Ignore __pycache__ directories, and exclude them from dist-upgrader tarballs. * Fix up module path when running AutoUpgradeTester/auto-install-tester.py from the build tree. * Add a DistUpgrade -> . symlink in DistUpgrade/, to make it possible to have compatible imports both in update-manager proper and in dist-upgrader tarballs. * Use only absolute imports in AutoUpgradeTester/auto-install-tester.py and DistUpgrade/dist-upgrade.py; these have no __package__ and so cannot use relative imports. * Open subprocesses with universal_newlines=True when expecting to read text from them. On Python 2, this only enables \r\n conversion and the like, but on Python 3 this also causes subprocess-related file objects to read str rather than bytes. * Use "key in dict" rather than "dict.has_key(key)". * Pass globals() to __import__ so that relative imports work. [ Michael Vogt ] * DistUpgrade/*.py: - update for the 12.04 -> 12.10 upgrade * AutoUpgradeTester/profile/defaults.cfg.d/defaults.cfg: - update for precise->quantal * fix some remaining python-apt 0.8+ API issues [ Brian Murray ] * DistUpgrade/DistUpgradeApport.py - check errormsg for the English version of the dependency problems error first (LP: #999890) [ Michael Terry ] * Rename to Software Updater and fix some other strings to match mpt's spec. * lp:~mterry/update-manager/move-changelogs: - implement new app layout -- Michael Vogt Fri, 01 Jun 2012 17:48:54 +0200 update-manager (1:0.156.14.5) UNRELEASED; urgency=low * lp:~ember/update-manager/ubuntu.bug1002956: - fix missing ReleaseNotesViewerWebkit.py support, thanks to Pedro Fragoso (LP: #1002956) -- Michael Vogt Wed, 23 May 2012 11:26:59 +0200 update-manager (1:0.156.14.4) precise-security; urgency=low * SECURITY UPDATE: Incorrect permissions on system_state archive may expose repo passwords (LP: #954483) - DistUpgrade/DistUpgradeMain.py: create file with proper permissions. - debian/update-manager-core.postinst: clean up permissions on existing files. - CVE-2012-0948 * SECURITY UPDATE: Apport hook may upload system_state archive containing repo passwords (LP: #954483) - debian/source_update-manager.py: don't upload system_state archives. - CVE-2012-0949 * This package does _not_ contain the changes from (1:0.156.14.2) in precise-proposed. -- Marc Deslauriers Tue, 15 May 2012 08:13:39 -0400 update-manager (1:0.156.14.2) precise-proposed; urgency=low * fix automatic expand of the terminal if no activity happend for >300s (LP: #993190) -- Michael Vogt Fri, 04 May 2012 11:46:09 -0700 update-manager (1:0.156.14.1) precise-proposed; urgency=low * DistUpgrade/ReleaseAnnouncement: - add "LTS" to the version -- Michael Vogt Thu, 26 Apr 2012 13:59:24 +0200 update-manager (1:0.156.14) precise; urgency=low * debian/control: - fix description for update-manager-kde (LP: #984906), thanks to Scott Kitterman * DistUpgrade/DistUpgradeController.py: - do not set PYCENTRAL_NO_DPKG_QUERY (LP: #986233) -- Michael Vogt Fri, 20 Apr 2012 18:26:27 +0200 update-manager (1:0.156.13) precise; urgency=low * Improve the error message used when a package cannot be located after updating, probably caused by an overloaded mirror. (LP: #873468) -- Barry Warsaw Tue, 17 Apr 2012 16:02:54 -0400 update-manager (1:0.156.12) precise; urgency=low [ Colin Watson ] * data/gtkbuilder/UpgradePromptDialog.ui: - Remove has_separator property from dialog_really_do_not_upgrade (deprecated in GTK+ 2.22, removed in 3.0). * debian/control: - Restore gksu dependency, needed by e.g. check-new-release-gtk (LP: #980637). [ Michael Vogt ] * UpdateManager/UpdateManager.py: - disconnect model and clear store before rebuilding the cache, thanks to Colin Watson * po/*.po: - updated to the latest launchpad (LP: #628157) * DistUpgrade/DistUpgradeController.py: - remove backports sources.list.d file again after its no longer needed (LP: #973717) * DistUpgrade/DistUpgradeController.py: - when checking for the backports, its enough to check is the set of the needed ones is a subset of the found ones (LP: #969182) * DistUpgrade/DistUpgrade.cfg.lucid: - release-upgrader-libapt-pkg-dev is not needed for the upgrade itself * remove skype from the removal blacklist -- Michael Vogt Tue, 17 Apr 2012 21:27:54 +0200 update-manager (1:0.156.11) precise; urgency=low * DistUpgrade/DistUpgrade.cfg.lucid: - add in a missing backported package (LP: #969182) * DistUpgrade/Distupgrade.py: - workaround issue regarding removing selections, thanks to sampo555 for the patch (LP: #945536) * Automatic update of mirrors, demoted packages and of included source packages: base-installer -- Brian Murray Thu, 12 Apr 2012 11:02:52 -0700 update-manager (1:0.156.10) precise; urgency=low [ Michael Vogt ] * UpdateManager/Core/MyCache.py: - do not attempt to download changelogs from https locations if the uri requires credentials, thanks to Pat McGowan [ Colin Watson ] * UpdateManager/Core/MyCache.py: - Check that pkg.candidate.uri is not None when looking for changelogs (LP: #839986). -- Michael Vogt Tue, 27 Mar 2012 13:44:40 +0200 update-manager (1:0.156.9) precise; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeController.py: - support cdrom-only upgrades properly by using the backported libapt-{pkg,inst} and release-upgrader-python-apt from the CD * DistUpgrade/DistUpgrade.cfg: - update KernelRemoval/Version to match oneirics kernel * DistUpgrade/DistUpgrade.cfg.lucid: - update KernelRemoval/Version to match lucids kernel * data/release-upgrades: - set releae upgrades default to "lts" * DistUpgrade/DistUpgradeCache.py: - when selecting a new default kernel from base-installer, ensure to install the matching kernel headers too if previously kernel headers were installed (LP: #959307) [ Brian Murray ] * debian/source_update-manager.py: pass if attach_gsettings fails like on a server [ Gabor Kelemen ] * lp:~kelemeng/update-manager/bug957552: - Mark two accessible descriptions for translation. LP: #957552 -- Michael Vogt Tue, 20 Mar 2012 17:35:34 +0100 update-manager (1:0.156.8) precise; urgency=low [ Robert Roth ] * Update icon name to use FD.o standard (LP: #921310) [ Julien Lavergne ] * DistUpgrade/DistUpgrade.cfg, DistUpgrade/removal_blacklist.cfg, UpdateManager/Core/utils.py, AutoUpgradeTester/profile/lubuntu/DistUpgrade.cfg: - Add Lubuntu support, and don't upgrade gnome-components which have been removed from Lubuntu installation (LP: #945215) [ Barry Warsaw ] * Improve the warning issued when i8xx graphics hardware is detected. (LP: #941172) [ Brian Murray ] * DistUpgrade/removal_blacklist.cfg: - blacklist gnome-session so that users can always login after a failed partial upgrade (LP: #946539) [ James Hunt ] * Only attempt to stop screensaver if DISPLAY set, and throw away xdg-screensaver output. (LP: #883618) [ Colin Watson ] * Use 'from dbus.mainloop.glib import DBusGMainLoop; DBusGMainLoop(set_as_default=True)' to set up the main loop, rather than importing the deprecated dbus.glib. [ Gabor Kelemen ] * Fix misplaced parentheses. LP: #952959 -- Michael Vogt Tue, 13 Mar 2012 15:29:59 +0100 update-manager (1:0.156.7) precise; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeCache.py: - fix nvidia detection, thanks to Brian Murray * DistUpgrade/xorg_fix_proprietary.py: - fix crash when apt_pkg is not initialized (LP: #942106) * DistUpgrade/DistUpgradeController.py, DistUpgrade/mirrors.cfg: - support upgrades with commercial-ppas in the sources.list (LP: #939461) and add tests * UpdateManager/UpdateManager.py: - fix inaccurate string, thanks to JohnNapster (LP: #942590) [ Brian Murray ] * DistUpgrade/removal_blacklist.cfg: - Only blacklist unity-2d, not all packages whose names start with unity-2d. (LP: #940196) -- Michael Vogt Mon, 05 Mar 2012 09:02:14 +0100 update-manager (1:0.156.6) precise; urgency=low [ Robert Roth ] * lp:~evfool/update-manager/lp930177: - Add missing space (LP: #930177) [ Michael Vogt ] * DistUpgrade/DevelReleaseAnnouncement: - change label from alpha to beta release -- Michael Vogt Thu, 23 Feb 2012 16:44:50 +0100 update-manager (1:0.156.5) precise; urgency=low [ Brian Murray ] * do-release-upgrade: capitalize U in ubuntu * debian/source_update-manager.py: add screenlog.0 from /var/log/dist-upgrade to apport bug reports [ Marc Deslauriers ] * DistUpgrade/DistUpgradeViewKDE.py: fix regression caused by improper return value handling. (LP: #933225) -- Michael Vogt Thu, 16 Feb 2012 17:30:58 +0100 update-manager (1:0.156.4) precise; urgency=low * DistUpgrade/DistUpgrade.cfg.lucid: - Update libapt-pkg and libapt-inst versions. -- Colin Watson Mon, 06 Feb 2012 11:35:42 +0000 update-manager (1:0.156.3) precise; urgency=low [ Jean-Baptiste Lallement ] * lp:~jibel/update-manager/AutoUpgradeTester-desktoptests: New tests for Ubuntu Desktop LTS upgrade: * autologin check * user settings check: wallpaper, theme, keyboard layout, custom launchers (desktop and panel) * lp:~jibel/update-manager/AutoUpgradeTester-portlocking: - automatically allocate free ssh/vnc ports [ Colin Watson ] * Clean up a few pyflakes warnings. * DistUpgrade/DistUpgradeMain.py - Make sure main.log is actually created. * DistUpgrade/removal_blacklist.cfg: - Only blacklist unity, not all packages whose names start with unity. [ Robert Roth ] * lp:~evfool/update-manager/lp351665: - Use ngettext to humanize size (LP: #351665) * lp:~evfool/update-manager/distupgradefixes: - DistUpgrade changes dialog text fixes (LP: #348517, LP: #513908) - Fix resize on changes dialog to stretch the details (LP: #294293) [ Michael Vogt ] * add humanize_size() test * pyflakes fixes * tests/test_pyflakes.py: - always pyflakes as part of the pre-build process to ensure we are clean * disable apply_dselect_upgrades() -- Michael Vogt Fri, 03 Feb 2012 09:56:29 +0100 update-manager (1:0.156.2) precise; urgency=low [ Michael Vogt ] * DistUpgrade/removal_blacklist.cfg: - add unity, unity-2d [ Brian Murray ] * debian/source_update-manager.py: use attach_file for dist-upgrade log files rather than attach_root_command_outputs resolving the double gzipped apt clone attachment issue [ Matthew Linscott ] * UpdateManager/Core/utils.py - fixed typos in docstring for ExecutionTime [ Daniel Polehn ] * DistUpgrade/DistUpgradeView.py - Made usage of 'canceled' v. 'cancelled' consistent. LP: #918302 -- Brian Murray Wed, 25 Jan 2012 15:37:27 -0800 update-manager (1:0.156.1) precise; urgency=low * debian/source_update-manager.py: include AptDaemon messages from syslog to help identify failures -- Brian Murray Tue, 17 Jan 2012 15:21:37 -0800 update-manager (1:0.156) precise; urgency=low [ Michael Vogt ] * pyflake fixes, remove some dead code * update unity dependency [ Brian Murray ] * DistUpgrade/DistUpgradeController.py - call apport-cli directly for bug reporting of errors * check-new-release-gtk - ensure to write a integer when calculating the next time that the release available window will be presented (LP: #873424) - hide redundant release-notes button (LP: #873432) -- Michael Vogt Fri, 13 Jan 2012 11:08:32 +0100 update-manager (1:0.155.3) precise; urgency=low [ Michael Vogt ] * DistUpgrade/removal_blacklist.cfg: - add screen as the server upgrade runs inside it, thanks to Steve Langasek * DistUpgrade/DistUpgradeController.py, DistUpgrade/prerequists-sources.list: - use the release-upgrader-python-apt from lucid-updates instead of lucid-proposed [ Brian Murray ] * UpdateManager/UpdateManager.py - add periods to sentences in refresh_updates_count -- Michael Vogt Tue, 10 Jan 2012 10:04:38 +0100 update-manager (1:0.155.2) precise; urgency=low [ Robert Roth ] * DistUpgrade/DistUpgradeController.py: - Avoid using systemdir abbreviation (LP: #903939) [ Brian Murray ] * debian/source_update-manager.py: - Use attach_gesttings_package instead of attach_gconf [ Jean-Baptiste Lallement ] * lp:~jibel/update-manager/AutoUpgradeTester-aptclone: - support building a profile from a apt-clone file and testing that - add amd64 test profiles -- Michael Vogt Mon, 09 Jan 2012 11:30:56 +0100 update-manager (1:0.155.1) precise; urgency=low * fix crash in backports fetching code -- Michael Vogt Fri, 09 Dec 2011 21:34:43 +0100 update-manager (1:0.155) precise; urgency=low [ Michael Vogt ] * lp:~mvo/update-manager/lucid-precise-upgrades: - support upgrades with multiarch-support (for e.g. flash) from lucid to precise by using the release-upgrader-python-apt from lucid-proposed during the upgrade [ Gabor Kelemen ] * Mark a few strings for translation, make variables reorderable -- Michael Vogt Fri, 09 Dec 2011 15:12:13 +0100 update-manager (1:0.154.6) precise; urgency=low * DistUpgrade/DistUpgrade.ui: - remove as this is not supported by the gtkbuilder in lucid and makes the release upgrader crash (LP: #898482) -- Michael Vogt Thu, 01 Dec 2011 16:38:56 +0100 update-manager (1:0.154.5) precise; urgency=low [ Nicholas Skaggs ] * lp:~nskaggs/update-manager/fix-for-702418: - Removed gnome-power-manager dbus interface completely and only use freedesktop interface. Thanks to Nicholas Skaggs (LP: #702418) [ Gabor Kelemen ] * Replace gettext.install() with bindtextdomain() calls. Work around crash in OptionParser when displaying localized --help text, to not regress on bug LP: #557804 * Extract strings for translation from u-m-t and u-s-s executables [ Marc Deslauriers ] * SECURITY UPDATE: arbitrary code execution via directory traversal (LP: #881548) - UpdateManager/Core/DistUpgradeFetcherCore.py: verify signature before unpacking the tarball. - CVE-2011-3152 * SECURITY UPDATE: information leak via insecure temp file (LP: #881541) - DistUpgrade/DistUpgradeViewKDE.py: use mkstemp instead of mktemp. - CVE-2011-3154 [ Michael Vogt ] * UpdateManager/UpdateManager.py: - ensure that the origin headers state of "select all/dselect all" is consistent -- Michael Vogt Tue, 29 Nov 2011 09:58:15 +0100 update-manager (1:0.154.3) precise; urgency=low [ Alexey Feldgendler ] * lp:~feldgendler/update-manager/574436: Introduced the [ThirdPartyMirrors] configuration section for the distribution upgrader. All keys in it must have distinct names, but only values matter. Each value is a third-party source URI. Such whitelisted sources don't get disabled on upgrade; however, if they use "from" release name, it's replaced with the "to" release name. (LP: #574436) -- Michael Vogt Mon, 21 Nov 2011 15:36:02 +0100 update-manager (1:0.154.2) precise; urgency=low * UpdateManager/backend/InstallBackendSynaptic.py - fix crash when using synaptic (LP: #878719) * DistUpgrade/DistUpgradeController.py, DistUpgrade/DistUpgradeMain.py: - before doing the upgrade test if all systemdirs are actually writable, thanks to Brian Murray (LP: #889921) -- Michael Vogt Thu, 17 Nov 2011 10:15:29 +0100 update-manager (1:0.154.1) precise; urgency=low [ Robert Roth ] * Change up-to-date text to up to date (LP: #864336) [ Michael Vogt ] * DistUpgrade/DistUpgradeController.py: - add precise as a LTS release * AutoUpgradeTester/profile/*/DistUpgrade.cfg: - updated to test oneiric->precise and lucid->precise * AutoUpgradeTester/UpgradeTestBackendQemu.py: - add support for different architectures * AutoUpgradeTester/profile/server-amd64/DistUpgrade.cfg: - add amd64 server upgrade test profile * DistUpgrade/DistUpgradeConfigParser.py: - add new "defaults_dir" argument to allow simplifying the auto-upgrade-tester config * DistUpgrade/DistUpgrade.cfg.lucid: - add lucid->precise upgrade config * AutoUpgradeTester/UpgradeTestBackendQemu.py: - dynamically allocate ssh/vnc ports when multiple testers are run -- Michael Vogt Tue, 08 Nov 2011 09:35:27 +0100 update-manager (1:0.154) precise; urgency=low * lp:~barcc/update-manager/all_changes-wrong-use: - Fixed wrong use of self.cache.all_changes[name] in UpdateManager.on_treeview_update_cursor_changed * data/gtkbuilder/UpdateManager.ui: - set default height to 500 (thanks to Sebastien Bacher) * DistUpgrade/DistUpgradeController.py: - do not crash if apt-btrfs-snapshot fails to run (LP: #873411) * UpdateManager/Core/MyCache.py, DistUpgrade/DistUpgradeCache.py: - honor dselect request install state when calcuating the upgrade thanks to Evan for suggesting this * merge fixes from oneiric-proposed * DistUpgrade/* - update for oneiric->precise upgrades -- Michael Vogt Wed, 19 Oct 2011 16:21:16 +0200 update-manager (1:0.152.25.4) oneiric-proposed; urgency=low * DistUpgrade/removal_blacklist.cfg: - ensure that postgresql does not get removed (LP: #871893) -- Michael Vogt Wed, 19 Oct 2011 09:52:08 +0200 update-manager (1:0.152.25.3) oneiric-proposed; urgency=low * DistUpgrade/DistUpgradeCache.py: - fix crash when packages needs downgrading * UpdateManager/Core/utils.py: - do not crash if iptables does not exist, thanks to Daniel Holbach for reporting the issue (LP: #877514) * DistUpgrade/DistUpgradeQuirks.py: - keep poking the screensaver to ensure that it really won't activate during the upgrade (thanks to Jonathan Davies for the report) * tests/test_sources_list.py: - fix test (archive.ubuntu.com no longer listens to ftp) * po/*: - refresh again to fix regression (LP: #877461) -- Michael Vogt Tue, 18 Oct 2011 17:06:40 +0200 update-manager (1:0.152.25.2) oneiric-proposed; urgency=low * refresh translation for the release-upgrader (LP: #873905) -- Michael Vogt Fri, 14 Oct 2011 15:19:51 +0200 update-manager (1:0.152.25.1) oneiric-proposed; urgency=low * DistUpgrade/DistUpgradeController.py: - do not crash if apt-btrfs-snapshot fails to run (LP: #873411) -- Michael Vogt Thu, 13 Oct 2011 17:29:34 +0200 update-manager (1:0.152.25) oneiric; urgency=low * DistUpgrade/DistUpgradeController.py: - add workaround for a python-apt bug that causes the release upgrade to import the old version of "DistInfo" intead of the one that is bundled with the release-upgrader (LP: #871007) -- Michael Vogt Mon, 10 Oct 2011 13:15:29 +0200 update-manager (1:0.152.24) oneiric; urgency=low * AutoUpgradeTester/profile/eduubuntu/DistUpgrade.cfg: - Fix typo, renaming to edubuntu instead -- Stéphane Graber Sat, 08 Oct 2011 15:25:55 -0400 update-manager (1:0.152.23) oneiric; urgency=low * DistUpgrade/DistUpgrade.cfg: - ensure that edubuntu-desktop really gets upgraded * AutoUpgradeTester/profile/eduubuntu/DistUpgrade.cfg: - update profile for edubuntu -- Michael Vogt Sat, 08 Oct 2011 19:24:45 +0200 update-manager (1:0.152.22) oneiric; urgency=low * tests/test_update_origin.py, Janitor/computerjanitor/plugin.py: - fix tests * .bzr-builddeb/default.conf: - re-enable pre-build script to ensure we get a updated base-installer, demotions and html Announcements -- Michael Vogt Fri, 07 Oct 2011 10:07:26 +0200 update-manager (1:0.152.21) oneiric; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - increase the amd64 cache size to 48mb to workaround bug LP: #854090 during the natty -> oneiric upgrade -- Michael Vogt Fri, 30 Sep 2011 21:26:10 +0200 update-manager (1:0.152.20) oneiric; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - increase the default cache size on a multiarch system to avoid potential crash in natty apt (LP: #854090) * DistUpgrade/DistUpgradeController.py, UpdateManager/Core/utils.py: - do not leak password from sources.list entries into the logfile (LP: #839094) * UpdateManager/UpdateManager.py: - do not crash if a package can not be put into "install" state, instead, just keep the old (unmarked) state (LP: #850482) * UpdateManager/DistUpgradeFetcher.py: - fix crash for changed gtk2 -> gtk3 API (LP: #859862) * UpdateManager/backend/InstallBackendAptdaemon.py: - remove debug output (LP: #855495) -- Michael Vogt Fri, 30 Sep 2011 16:09:55 +0200 update-manager (1:0.152.19) oneiric; urgency=low * DistUpgrade/DistUpgradeCache.py: - do not use O_SYNC for the apt.log, its not important enough to justify the slowdown (LP: #852128) -- Michael Vogt Wed, 21 Sep 2011 17:55:53 +0200 update-manager (1:0.152.18) oneiric; urgency=low [ Michael Vogt ] * debian/pycompat: - removed, no longer needed * debian/rules: - fix incorrect invocation of --with=python2 [ Robert Roth ] * lp:~evfool/update-manager/handlewarning: - Only disconnect handler if it's still connected (LP: #133139) * lp:~evfool/update-manager/glibchangefix: - Call glib.markup_escape_text() correctly as per current gir (don't pass in string length; LP: #832745) * lp:~evfool/update-manager/fixcopylink: - Fix the "Copy web link" context menu item of the ChangeLog viewer. It did not work before of some Gtk changes, now it does work. Fixes LP: #831944. [ Stefano Rivera ] * extras is another special case where validTo=False (LP: #775694) -- Michael Vogt Tue, 13 Sep 2011 11:47:10 +0200 update-manager (1:0.152.17) oneiric; urgency=low * debian/source-update_manager.py: ask the reporter if their issue is regarding a distribution upgrade if so include log files (LP: #836846) -- Brian Murray Mon, 29 Aug 2011 10:10:15 -0700 update-manager (1:0.152.16) oneiric; urgency=low * DistUpgrade/DevelReleaseAnnouncement: - prepare text for the beta release -- Michael Vogt Thu, 25 Aug 2011 17:52:58 +0200 update-manager (1:0.152.15) oneiric; urgency=low [ Brian Murray ] * DistUpgrade/DistUpgradeApport.py: - properly add the tag 'dist-upgrade' to the bug report [ Michael Vogt ] * UpdateManager/backend/InstallBackendAptdaemon.py: - fix incorrect initialization * fix GLib.timeout_add_seconds() with the new GIR (LP: #829186) * call software-properties-gtk without gksu, that is no longer needed -- Michael Vogt Fri, 19 Aug 2011 12:15:35 +0200 update-manager (1:0.152.14) oneiric; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - enable multiarch on amd64 during the upgrade - add new "PreCacheOpen" hook and use it for the multiarch enabling * DistUpgrade/DistUpgradeCache.py: - when checking for missing "priority: required" packages ignore the foreign architecture ones -- Michael Vogt Tue, 16 Aug 2011 10:52:23 +0200 update-manager (1:0.152.13) oneiric; urgency=low [ Robert Roth ] * Fix link context menu in changelog viewer (LP: #824957) [ Michael Vogt ] * debian/control: - bump unity dependency to gir1.2-unity-4.0 -- Michael Vogt Fri, 12 Aug 2011 17:45:51 +0200 update-manager (1:0.152.12) oneiric; urgency=low [ Michael Vogt ] * AutoUpgradeTester/UpgradeTestBackendQemu.py: - add NonInterative/AddRepoUpgradeImmediately option that allows installing test package *before* the test upgrade runs (useful for e.g. testing a new apt or dpkg) [ Robert Roth ] * Added default value to be able to start UpdateManager without having gir-unity installed (LP: #823935) * Fixed changelog test with the new wording * Specify default -1 length for terminal response (LP: #817785) -- Michael Vogt Thu, 11 Aug 2011 17:58:35 +0200 update-manager (1:0.152.11) oneiric; urgency=low * DistUpgrade/DistUpgradeViewGtk3.py: - use vte.for_command_full() instead of fork_command() as fork_command is no longer available in the gir-2.90 (LP: #808738) -- Michael Vogt Tue, 09 Aug 2011 15:27:46 +0200 update-manager (1:0.152.10) oneiric; urgency=low [ Michael Vogt ] * merged lp:~evfool/update-manager/pkgsections, many thanks * debian/control: - fix dependency on python-aptdaemon.gtk3widgets * DistUpgrade/DistUpgradeController.py: - only ask for a reboot if the upgrade is not running inside a chroot [ Brian Murray ] * DistUpgrade/DistUpgradeController.py: - when upgrading do not disable deb-src entries in /etc/apt/sources.list * DistUpgrade/DistUpgradeMain.py: - string fix thanks to David Stansby for the fix (LP: #510681) [ Robert Roth ] * Give clear instructions when the last update timestamp is not found (LP: #821345) * Fix operation between NoneType and int (LP: #820126) -- Michael Vogt Fri, 05 Aug 2011 14:16:15 +0200 update-manager (1:0.152.9) oneiric; urgency=low * remove old UpdateManager.glade file * rename data/glade to data/gtkbuilder * merged lp:~rodrigo-moya/update-manager/use-new-power-interface, thanks to Rodrigo Moya * DistUpgrade/DistUpgradeQuirks.py: - when upgrading, ensure that zz-update-grub is early in /etc/kernel/postinst.d to ensure we always have a good grub config and not depend on the package upgrade ordering for that -- Michael Vogt Thu, 28 Jul 2011 16:59:58 +0200 update-manager (1:0.152.8) oneiric; urgency=low [ Robert Roth ] * Ordered the packages alphabetically on the dist-upgrade confirmation dialog. (LP: #764831) * Update last updated text every 15 minutes in the first hour after update (LP: #747336). Thanks to Fredrik Ekelund. [ Michael Vogt ] * UpdateManager/UpdateManager.py, data/glade/UpdateManager.ui: - remove old manual text wrap code that is now superseeded by gtk3 (LP: #812949) * data/glade/UpdateManager.ui: - fix the xalign and expand properties of the various alert labels -- Michael Vogt Wed, 27 Jul 2011 10:42:31 +0200 update-manager (1:0.152.7) oneiric; urgency=low [ Michael Vogt ] * merged lp:~mterry/update-manager/813778 to fix crash in initCache() LP: #813778. Many thanks to Michael Terry * add jenkins slave setup (config, upstart job), similar to the server-isotesting (disabled by default) * DistUpgrade/DistUpgrade.ui: - add minimal size for the details expander (and let glade reindent/reformat the entire file along the way) * merged lp:~evfool/update-manager/stringfixes [ Robert Roth ] * Updated translator comment to follow the Ubuntu Units policy * Display sizes according to the Ubuntu Units Policy (LP: #410310) * Fix ambiguous text explaining updates to running release (LP: #461780) * Added label to distinguish candidate version from installed version (LP: #537942) * Rename Check all/Uncheck all to Select/Deselect all -- Michael Vogt Mon, 25 Jul 2011 18:44:45 +0200 update-manager (1:0.152.6) oneiric; urgency=low * Only build dist-upgrader tarball in the binary-indep target, fixing both the non-x86 build failures, and Soyuz having a hissy fit over multiple identically-named files (LP: #813867) -- Adam Conrad Thu, 21 Jul 2011 00:24:32 -0600 update-manager (1:0.152.5) oneiric; urgency=low * DistUpgrade/DistUpgrade{Cache,Controller}.py: - if btrfs snapshots are used, add the additional required diskspace requierd into the free space calculation * debian/{rules,control}: - move to debhelper 7 -- Michael Vogt Wed, 20 Jul 2011 10:09:49 +0200 update-manager (1:0.152.4) oneiric; urgency=low * merged lp:~evfool/update-manager/fix622489, many thanks to "FooBar" and Robert Roth (evfool) * when downloading the html release notes, ensure to send a query string similar to ubiquity to allow more specific release notes -- Michael Vogt Tue, 19 Jul 2011 09:45:28 +0200 update-manager (1:0.152.3) oneiric; urgency=low * remove unneeded GConf imports (we are using gsettings now) LP: #807715 * a good bunch of pyflakes fixes -- Michael Vogt Fri, 15 Jul 2011 18:00:37 +0200 update-manager (1:0.152.2) oneiric; urgency=low * data/update-manager.convert: - ship gconf->gsettings convert script -- Michael Vogt Thu, 14 Jul 2011 10:01:18 +0200 update-manager (1:0.152.1) oneiric; urgency=low * fix release upgrade view dialog in gtk3 * UpdateManager/UpdateManager.py, check-new-release-gtk: - use GLib.timeout_add(priority, timeout, func, data) instead of the old glib.timeout_add() thanks to Michael Terry (lp:~mterry/update-manager/pygi-cleanups) * check-new-release-gtk, tests/test_end_of_life.py: - fix test failures -- Michael Vogt Mon, 11 Jul 2011 11:19:29 +0200 update-manager (1:0.152) oneiric; urgency=low * ported to gtk3/GI * port from gconf to gsettings * debian/control: - depend on python-gobject with overwrite bugfixes needed for update-manager -- Michael Vogt Fri, 08 Jul 2011 12:25:03 +0200 update-manager (1:0.151.10) oneiric; urgency=low [ Brian Murray ] * In apport hook, collect non-default gconf values. -- Barry Warsaw Thu, 07 Jul 2011 14:31:00 -0400 update-manager (1:0.151.9) oneiric; urgency=low * do not crash if lspci is not installed * merged lp:~brian-murray/update-manager/apport-hook-changes, thanks! * merged lp:~eapache/update-manager/unity-urgency-hint, many thanks to Evan Huus (LP: #799173) -- Michael Vogt Thu, 07 Jul 2011 11:16:14 +0200 update-manager (1:0.151.8) oneiric; urgency=low * DistUpgrade/DistUpgradeViewGtk.py: - set DPKG_UNTRANSLATED_MESSAGES to force untranslated dpkg terminal messages for easier package failure duplication detection * DistUpgrade/DistUpgradeCache.py: - when calculating the size of the space required in /boot use the size of the currently running kernel as the base and add a small safety margin (LP: #798462). * import new apt-btrfs-snapshot to fix crash for certain fstab entries (LP: #806065) -- Michael Vogt Wed, 06 Jul 2011 17:23:26 +0200 update-manager (1:0.151.7) oneiric; urgency=low * fix apt-btfs-snapshot releated crash -- Michael Vogt Mon, 27 Jun 2011 11:42:16 +0200 update-manager (1:0.151.6) oneiric; urgency=low * pre-build.sh: - automatically include apt_btrfs_snapshot.py in the release uprader tarball -- Michael Vogt Wed, 22 Jun 2011 15:37:08 +0200 update-manager (1:0.151.5) oneiric; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - warn intel i8xx user that the upgrade to oneiric may cause issues with their particular graphics hardware (LP: #774999) * merge patch from "eapache" to fix the unity progress bars (LP: #796311) -- Michael Vogt Fri, 17 Jun 2011 18:04:27 +0200 update-manager (1:0.151.4) oneiric; urgency=low [ Robert Roth ] * Fix problem of showing only integer MB count and causing size inconsistencies [ Brendan Donegan ] * Updated NetworkManagerHelper with new NM 0.9 states as well as updating the UpdateManager itself to handle codes more robustly [ Michael Vogt ] * merged lp:~brendan-donegan/update-manager/bug791548_networkmanager0.9, many thanks * merged lp:~evfool/update-manager/fixmbcount, many thanks * show progress inside unity, thanks to Bilal Akhtar for the initial version of the patch! -- Michael Vogt Fri, 10 Jun 2011 16:19:48 +0200 update-manager (1:0.151.3) oneiric; urgency=low [ Michael Vogt ] * merged lp:~brendan-donegan/update-manager/bug699660-fix-settings-shortcut thanks to Brendan Donegan * AutoUpgradeTester/profile/*: - updated for natty->oneiric * DistUpgrade/DistUpgradeViewGtk.py: - use VteTerminal "child-exit" signal instead of the Reaper object * optionally use webkit for the release notes viewer [ Brian Murray ] * do-release-upgrade: display version of the new release available not the code name * add an apport hook for update-manager and modify bug reporting instructions to recommend using apport (LP: #721382) -- Steve Langasek Fri, 03 Jun 2011 11:32:45 -0700 update-manager (1:0.151.2) oneiric; urgency=low * fix UnitySupport import -- Michael Vogt Mon, 16 May 2011 12:14:26 +0200 update-manager (1:0.151.1) oneiric; urgency=low * merged lp:~bilalakhtar/update-manager/unity-quicklist, many thanks to Bilal Akhtar for adding quickly support * merged lp:~mvo/update-manager/for-unity to make the support optional and to add updates count into the update-manager icon in unity -- Michael Vogt Mon, 02 May 2011 18:15:21 +0200 update-manager (1:0.151) oneiric; urgency=low * merged lp:~evfool/update-manager/sectionchecks, many thanks to Robert Roth * DistUpgrade/*: - updated for oneiric * fix arguments from "autInst" to "auto_inst" and "autoFix" -> "auto_fix" -- Michael Vogt Mon, 02 May 2011 14:25:55 +0200 update-manager (1:0.150.2) natty-proposed; urgency=low * debian/control: - point to "natty" branch * DistUpgrade/DistUpgrade.cfg: - remove "kde-plasmoid-cwp" early as it will break upgrades later (LP: #773022) * DistUpgrade/DistUpgradeCache.py: - do not fail if not all meta-package can not be upgraded, packages like ubuntu-desktop and xubuntu-desktop have implicit conflicts LP: #775411 -- Michael Vogt Mon, 02 May 2011 09:52:35 +0200 update-manager (1:0.150.1) natty-proposed; urgency=low [ Brian Murray ] * DistUpgrade/DistUpgradeApport.py: - do not report zero size attachments (LP: #772052) * DistUpgrade/DistUpgrade.cfg: - enable apport for distribution upgrades (LP: #772913) * DistUpgrade/DistUpgradeController.py: - use service to start apport [ Michael Vogt ] * DistUpgrade/DistUpgrade.cfg: - Remove 'dontzap' from kubuntu-desktops rules (LP: #769680). This fixes a upgrade issue when a old package is leftover -- Michael Vogt Fri, 29 Apr 2011 15:55:38 +0200 update-manager (1:0.150) natty; urgency=low * DistUpgrade/DistUpgradeQuirks.py, tests/test_quirks.py: - don't print a error for already patched files, this removes a misleading error from the upgrade logs - update tests -- Michael Vogt Wed, 20 Apr 2011 14:25:15 +0200 update-manager (1:0.147.6) natty; urgency=low * AutoUpgradeTester/profile/{euca-cloud,euca-nc,xubuntu}/DistUpgrade.cfg: - updated for maverick->natty now that the auto-upgrade-test server has more diskspace * DistUpgrade/DistUpgradeController.py, DistUpgrade/DistUpgradeMain.py: - make running-under-ssh check more robust by looking for sshd parent * DistUpgrade/DistUpgradeViewText.py: - make user confirm information() messages before continuing (important for e.g. the "sshd has started" message) * DistUpgrade/DistUpgradeQuirks.py, DistUpgrade/DistUpgradeController.py: - ensure that new recommends are installed on a desktop mode upgrade even if that got disabled e.g. via synaptic (LP: #759262) - add test for this feature -- Michael Vogt Fri, 15 Apr 2011 10:05:29 +0200 update-manager (1:0.147.5) natty; urgency=low * DistUpgrade/DistUpgradeController.py, DistUpgrade/DistUpgradeMain.py: - fix ssh detection (LP: #744995) -- Michael Vogt Fri, 08 Apr 2011 18:24:30 +0200 update-manager (1:0.147.4) natty; urgency=low * DistUpgrade/DistUpgradeViewKDE.py - Allow to view differences in conf file changes LP: #746431 -- Jonathan Riddell Thu, 07 Apr 2011 14:42:15 +0100 update-manager (1:0.147.3) natty; urgency=low * merged lp:~evfool/update-manager/fix665173 (LP: #665173), many thanks to Robert Roth (update the test a bit) * merged lp:~evfool/update-manager/fix150677 (LP: #150677), many thanks to Robert Roth * merged lp:~evfool/update-manager/fix727069 (LP: #727069), many thanks to Robert Roth -- Michael Vogt Wed, 06 Apr 2011 17:32:35 +0200 update-manager (1:0.147.2) natty; urgency=low * UpdateManager/backend/InstallBackendAptdaemon.py: - no not trigger a apport exception on user auth issues and if the user does not type the password in time (LP: #626798) -- Michael Vogt Tue, 05 Apr 2011 15:49:58 +0200 update-manager (1:0.147.1) natty; urgency=low * UpdateManager/backend/InstallBackendAptdaemon.py: - use pkgsystem_unlock, improve exception handling, add test * DistUpgrade/DistUpgradeQuirks.py: - add quirks handler for maverick->natty upgrade for the kdegames-card-data case (LP: #745396) * tests/test_quirks.py: - add test for LP: #745396 * UpdateManager/UpdateManager.py, do-release-upgrade: - point to http://www.ubuntu.com/releaseendoflife when the release is end-of-life message is displayed (LP: #671016) * DistUpgrade/EOLReleaseAnnouncement: - improve wording, this is displayed if the user is trying to upgrade from a unsupported version of Ubuntu to a already unsupported version. This now links to http://www.ubuntu.com/releaseendoflife (LP: #671016) -- Michael Vogt Mon, 04 Apr 2011 11:31:50 +0200 update-manager (1:0.147) natty; urgency=low [ Brian Murray] * UpdateManager/ReleaseNotesViewer.py: fix the path for gnome-open and default to xdg-open (LP: #693131) [ Michael Vogt ] * DistUpgrade/apt_clone.py: - use apt_clone.py from the apt-clone package * debian/control: - add apt-clone to the build-depends * DistUpgrade/DistUpgradePatcher.py: - add native ed-style patch implementation as e.g. chroots may not have ed installed and its critical to be able to ensure that pycompile is correct before the upgrade starts * do-release-upgrade: - use apt.progress.text.AcquireProgress to fix deprecation warning * DistUpgrade/DistUpgradeViewText.py: - fix deprecation warning (LP: #744990) * fix deprecation warnings in auxiliary scripts * DistUpgrade/DistUpgradeAptCdrom.py: - fixes with the python-apt 0.8 API -- Michael Vogt Thu, 31 Mar 2011 17:58:14 +0200 update-manager (1:0.146.6) natty; urgency=low * DistUpgrade/DevelReleaseAnnouncement: - fix description to say "BETA" * pre-build.sh: - cleanup cruft test leftover output -- Michael Vogt Tue, 29 Mar 2011 16:45:29 +0200 update-manager (1:0.146.5) natty; urgency=low * fix FTBFS by including a apt_clone.py copy until apt-clone makes it through NEW -- Michael Vogt Tue, 15 Mar 2011 20:54:30 +0100 update-manager (1:0.146.4) natty; urgency=low * DistUpgrade/DistUpgradeMain.py, DistUpgrade/apt_clone.py: Use apt-clone to create system-state instead of custom one (apt-clone_system_state.tar.gz) This makes reproducing problems a lot easier as apt-clone restore can be used. It also means that ubiquity can pick up failed upgrades from the state file and finish them. -- Michael Vogt Tue, 15 Mar 2011 16:05:11 +0100 update-manager (1:0.146.3) natty; urgency=low * DistUpgrade/DistUpgradeAptCdrom.py, DistUpgrade/DistUpgradeController.py: - comment out cdrom source after alternative CD based upgrade * DistUpgrade/DistUpgradeController.py: - show error message when cdrom fails to add * tests/test_cdrom.py: - add test for cdrom commenting -- Michael Vogt Wed, 09 Mar 2011 16:19:21 +0100 update-manager (1:0.146.2) natty; urgency=low [ Michael Vogt ] * data/glade/UpdateManager.ui, UpdateManager/UpdateManager.py: - improve wording of roaming warning, thanks to Alex Chiang - make the roaming warning label wrap * UpdateManager/UpdateManager.py: - fix crash in _get_last_apt_get_update_text (LP: #712346) - do not try to download changelogs if NM reports we are disconnected (LP: #19372) [ Julian Taylor ] * use dh_installman to install manpages * move do-release-upgrade manpage to update-manager-core (LP: #695186) [ Martin Pitt ] * debian/control: Update Breaks:/Conflicts: for the moved manpage. -- Michael Vogt Wed, 09 Mar 2011 10:25:11 +0100 update-manager (1:0.146.1) natty; urgency=low [ Michael Vogt ] * merged lp:~evfool/update-manager/fix689034: - Some basic string fixes (lp:#689034), thanks to Robert Roth * UpdateManager/Core/roam.py: - add backend for roaming detection, thanks to Alex Chiang - display warning when on 3g and when roaming (fixes half of LP: 323108) * merged lp:~thibault-lemaitre/ubuntu/natty/update-manager/from_pkg.isInstalled_to_pkg.is_installed that fixes a bunch of deprecated python-apt issues (many thanks!) [ Lionel Le Folgoc ] * UpdateManager/UpdateManager.py: try to reboot using consolekit if gnome-session isn't present (fixes rebooting on Xfce and LXDE, lp: #530161). -- Michael Vogt Tue, 01 Mar 2011 08:55:53 +0100 update-manager (1:0.146) natty; urgency=low * DistUpgrade/DistUpgradeView*.py: - pass apt.Package object to the view instead of strings, this allows to show additional info on the packages (like summary or size) * DistUpgrade/DistUpgradeViewGtk.py: - check for libgtk2-perl for debconf support * AutoUpgradeTester/install_blacklist.cfg: - update blacklist for creating main-all images * UpdateManager/ReleaseNotesViewer.py: - use monospace font (LP: #153228) * DistUpgrade/DistUpgradeController.py: - perform btrfs snapshot on upgrade if apt-btrfs-snapshot is available -- Michael Vogt Wed, 16 Feb 2011 21:19:12 +0100 update-manager (1:0.145.13) natty; urgency=low * fix ReleaseAnnoucement.html auto generation -- Michael Vogt Mon, 31 Jan 2011 20:48:42 +0100 update-manager (1:0.145.12) natty; urgency=low * debian/control: - drop build-depend on fglrx-modalias * DistUpgrade/DistUpgradeQuirks.py: - port fglrx-modalias checking code to new modaliases support from the pkgrecords * tests/test_quirks.py: - update tests -- Michael Vogt Mon, 31 Jan 2011 14:49:19 +0100 update-manager (1:0.145.11) natty; urgency=low * debian/91-release-upgrade: - test if the script exists before running it (thanks to Kees Cook) * pre-build.sh: - auto generate html files from the *ReleaseAnnoucement files * merged lp:~brendan-donegan/update-manager/updated-signal-and-no-update-option (many thanks) -- Michael Vogt Fri, 28 Jan 2011 22:27:56 +0100 update-manager (1:0.145.10) natty; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - fixup internal (ed) based patching tool * DistUpgrade/patches/ - add pycompile patch to ensure clean upgrade even when maverick-updates is not available (LP: #689615) * AutoUpgradeTester/profile/server/DistUpgrade.cfg: - updated for maverick * DistUpgrade/DistUpgradeCache.py: - minor python-apt 0.8 API update * tests/patchdir/_patchdir_foo.f41121a903eafadf258962abc57c8644: - update test for latest internal patching tool -- Michael Vogt Fri, 17 Dec 2010 18:24:36 +0100 update-manager (1:0.145.9) natty; urgency=low * fix FTBFS * improve install-backend error checking -- Michael Vogt Thu, 09 Dec 2010 15:55:39 +0100 update-manager (1:0.145.8) natty; urgency=low * remove update-manager-hildon -- Michael Vogt Wed, 08 Dec 2010 16:13:20 +0100 update-manager (1:0.145.7) natty; urgency=low * UpdateManager/backend/InstallBackendAptdaemon.py: - updated for aptdaemon 0.40 * merged lp:~alexlauni/update-manager/dbus, many thanks -- Michael Vogt Tue, 07 Dec 2010 15:13:20 +0100 update-manager (1:0.145.6) natty; urgency=low * debian/rules: - build with --skip-private, otherwise dh_python2 will generate a incorrect maintainer script for the auto-upgrade-tester package that contains a invalid version range string -- Michael Vogt Fri, 03 Dec 2010 10:22:03 +0100 update-manager (1:0.145.5) natty; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeViewText.py: - start with gnu screen integration * DistUpgrade/DistUpgradeController.py: - when starting a additional sshd detect if there is a firewall running and if so print information that the additional sshd may need to be added to the firewall rules * UpdateManager/Core/utils.py: - add iptables_active() helper * merged lp:~brian-murray/update-manager/has-completed, many thanks This fixes issues with the English past tense * merged lp:~mvo/update-manager/use-screen-in-text-frontend, this will use screen in the text version of the release upgrader * Janitor/plugins/dpkg_status_plugin.py, DistUpgrade/DistUpgradeViewGtk.py: - fix python-apt 0.8 API * merged lp:~kelemeng/update-manager/bug633036 (LP: #633036), many thanks to Gabor Kelemen * debian/rules, debian/control: - use dh_python2 instead of python-central and drop it from the build-depends [ Colin Watson ] * DistUpgrade/*ReleaseAnnouncement: - Fix "Narwahl" typo (LP: #684050). -- Michael Vogt Fri, 03 Dec 2010 09:46:34 +0100 update-manager (1:0.145.4) natty; urgency=low * DistUpgrade/*.ui: - updated window main heading for 11.04 * merged lp:~brian-murray/update-manager/upgrade-canceled-wording with wording and style fixes, many thanks! * DistUpgrade/DistUpgradeCache.py, UpdateManager/Core/utils.py: - check if running inside a chroot and if so, skip kernel selection * UpdateManager/Core/MetaRelease.py: - improve error checking and only present upgrade button if there is a working network - cleanup hardy code -- Michael Vogt Fri, 26 Nov 2010 16:59:29 +0100 update-manager (1:0.145.3) natty; urgency=low * do-release-upgrade: - output if the current release is no longer supported (part of other-ps-n-testing-upgrades-for-preinstall-hw) * check-new-release-gtk: - show "dist-no-longer-supported" dialog if the current release is no longer supported - automatically "unignore" a previously ignored upgrade if the current release becomes EOL * AutoUpgradeTester/profile/*/DistUpgrade.cfg: - update to auto test maverick to natty * DistUpgrade/DistUpgrade.cfg: - update kernel removal for natty too -- Michael Vogt Wed, 17 Nov 2010 17:40:09 +0100 update-manager (1:0.145.2) natty; urgency=low [ Barry Warsaw ] * Add required details to .emit() call. (LP: #631328) [ Michael Vogt ] * debian/control: - add or-dependency for python-aptdaemon-gtk and drop gksu dependency (its either brought in via synaptic or not needed) * UpdateManager/Core/utils.py: - add get_arch() call * DistUpgrade/DistUpgradeController.py, DistUpgrade/DistUpgradeQuirks.py: - use new utils.get_arch() call * merged fixes from lp:~ubuntu-core-dev/update-manager/maverick * debian/rules: - push EOLReleaseAnnouncement to the server too -- Michael Vogt Fri, 12 Nov 2010 15:56:32 +0100 update-manager (1:0.145.1) natty; urgency=low [ Michael Vogt ] * DistUpgrade/EOLReleaseAnnouncement: - add information for the time when the release is EOL (part of the fix for #671016) * UpdateManager/UpdateManager.py: - fix typo in EOL text * DistUpgrade/DistUpgradeController.py: - properly log excepition in the child to the main.log, thanks to Jonathan Davies [ Barry Warsaw ] * In Python 2.7, locale.format() input test has gotten more strict. It does not allow trailing text after the format string. Change this to locale.format_string(). See Python issue 10379. (LP: #673297) -- Michael Vogt Wed, 10 Nov 2010 17:39:41 +0100 update-manager (1:0.145) natty; urgency=low [ Michael Vogt ] * DistUpgrade/*: - updated for natty * tests/test_prerequists.py: - fix jaunty test now that this is moved to old-releases.ubuntu.com * pre-build.sh: - run testsuite on bzr-buildpackage * tests/test_dist_upgrade_fetcher_core.py: - fix test failures and ensure its python-apt 0.8 clean * po/update-manager.pot: - updated * DistUpgrade/DistUpgradeCache.py: - do not crash if no acquire progress is given * DistUpgrade/DistUpgradeController.py, DistUpgrade/DistUpgradeViewNonInteractive.py, UpdateManager/Core/DistUpgradeFetcherCore.py, tests/test_update_origin.py, tests/test_sources_list.py: - fixes in the python-apt 0.8 API * tests/*.py: - fix natty test failures [ Bilal Akhtar ] * UpdateManager/UpdateManager.py: - add more meaningful text if info is out-of-date (LP: #35009) -- Michael Vogt Thu, 04 Nov 2010 15:57:02 +0100 update-manager (1:0.142.22) maverick-proposed; urgency=low [ Barry Warsaw ] * Add required details to .emit() call when running with synaptic as the backend (LP: #631328) [ Michael Vogt ] * DistUpgrade/DistUpgradeQuirks.py: - fixes in the cmov quirks handler (LP: #587186) (thanks to Jean-Baptiste Lallement) -- Michael Vogt Fri, 12 Nov 2010 09:30:28 +0100 update-manager (1:0.142.21) maverick-proposed; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - abort the upgrade if the user runs on a i586 or a i686 with no "cmov" support (LP: #587186) -- Michael Vogt Fri, 15 Oct 2010 15:41:03 +0200 update-manager (1:0.142.20) maverick-proposed; urgency=low [ Michael Vogt ] * UpdateManager/UpdateManager.py: - do not crash if the free space check fails (LP: #656881) * DistUpgrade/DistUpgrade.cfg: - add blcr-dkms to the "BadVersions" variable. The current blcr-dkms source will not build with 2.6.35. Adding it here will cause the upgrade to abort with a message if it is installed. It also means that if support for 2.6.35 is added to blcr-dkms via a SRU that will automatically unblock the upgrade (LP: #555729) * DistUpgrade/DistUpgradeViewGtk.py, DistUpgrade/DistUpgradeViewKDE.py,: - workaround dpkg not sending the correct filename on conffile prompts over the status-fd (LP: #656912) [ Jonathan Riddell ] * DistUpgrade/DistUpgradeViewKDE.py: - disable confDialogue.show_difference_button, workaround for "distupgrade crashed during conf file change review" (LP: #656876) requires release note that user needs to view changes manually on command line -- Jonathan Riddell Sat, 09 Oct 2010 19:08:23 +0100 update-manager (1:0.142.19) maverick; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - only add extras.ubuntu.com for systems that have the matching keyring (LP: #653200). This ensures its not added on a server upgrade. -- Michael Vogt Mon, 04 Oct 2010 16:29:18 +0200 update-manager (1:0.142.18) maverick; urgency=low [ Alessandro Ghersi ] * DistUpgrade/DistUpgrade.cfg: - make sure that kbluetooth gets removed on upgrade (LP: #653838) [ Jonathan Riddell ] * Add kubuntu-devel-release-upgrade to setup.py -- Michael Vogt Mon, 04 Oct 2010 13:19:18 +0200 update-manager (1:0.142.17) maverick; urgency=low [ Jonathan Riddell] * Add kubuntu-devel-release-upgrade script to run the upgrade command for Kubuntu [ Michael Vogt ] * if foomatic-db-gutenprint needs to be removed during the upgrade because its not compatible with foomatic-db-compressed-ppds, try replacing it with ijsgutenprint-ppds which is the same content, just compressed in the same way like foomatic-db-compressed-ppds (LP: #647460) -- Michael Vogt Fri, 01 Oct 2010 21:28:24 +0200 update-manager (1:0.142.16) maverick; urgency=low * DistUpgrade/ReleaseAnnouncement: - add link to http://www.ubuntu.com/desktop/features to tell users about the new features in this release * DistUpgrade/DistUpgrade.cfg: - help the upgrade by removing printconf, foomatic-db-gutenprint and ebox-printers as they are not compatible with foomatic-db-compressed-ppds (LP: #647460) -- Michael Vogt Thu, 30 Sep 2010 20:22:36 +0200 update-manager (1:0.142.15) maverick; urgency=low * po/*.po: - updated from launchpad translations for the RC candidate * DistUpgrade/DevelReleaseAnnouncement: - updated for RC -- Michael Vogt Mon, 27 Sep 2010 14:21:57 +0200 update-manager (1:0.142.14) maverick; urgency=low [ Michael Vogt ] * DistUpgrade/mirrors.cfg: - add extras.ubuntu.com to known mirrors * DistUpgrade/DistUpgradeQuirks.py: - add extras.ubuntu.com on upgrade * AutoUpgradeTester/jeos/create-base-image.sh: - add workaround for issue with python-vm-builder that generates random filenames in maverick [ Gabor Kelemen ] * Fix invocation of gksu, use the correct .desktop file. Fixes LP: #640906 * Correct misplaced parentheses, so that l10n of strings will work. Fixes LP: #640972 -- Michael Vogt Tue, 21 Sep 2010 17:00:34 +0200 update-manager (1:0.142.13) maverick; urgency=low * DistUpgrade/DistUpgradeView.py: - only show demotions if we have at least one -- Michael Vogt Thu, 02 Sep 2010 09:37:39 +0200 update-manager (1:0.142.12) maverick; urgency=low * DistUpgrade/DevelReleaseAnnouncement: - updated for beta -- Michael Vogt Wed, 01 Sep 2010 09:14:59 +0200 update-manager (1:0.142.11) maverick; urgency=low * DistUpgrade/DistUpgradeController.py: - fix incorrect paramter passed to confirmChanges in doPostUpgrade (thanks to Jonathan Riddel, LP: #624599) -- Michael Vogt Fri, 27 Aug 2010 13:29:44 +0200 update-manager (1:0.142.10) maverick; urgency=low * UpdateManager/UpdateManager.py: - when NM thinks we have no network, do not disable the install button because for dialup users NM is frequently wrong and does not get that there is a network-connection (LP: #624894) (thanks to Mohamed Amine IL Idrissi) -- Michael Vogt Fri, 27 Aug 2010 10:54:42 +0200 update-manager (1:0.142.9) maverick; urgency=low [ Mohamed Amine IL Idrissi ] * UpdateManager/UpdateManager.py: Changed the whitespace place to not confuse translators, many thanks Milo Casagrande (LP: #621373) * DistUpgrade/DistUpgradeView.py: There won't be two spaces in FuzzyTimeToStr when days or hours are > 0 and hours or minutes are equal to 0 (LP: #288912) [ Michael Vogt ] * remove the seperate demotions dialog and move it into the "Confirm changes" step * use a treeview instead of a list to show the details of the changes in the gtk frontend * UpdateManager/UpdateManager.py, data/glade/UpdateManager.ui: - fix label wraping for label_downsize -- Michael Vogt Wed, 25 Aug 2010 11:17:00 +0200 update-manager (1:0.142.8) maverick; urgency=low * UpdateManager/Core/utils.py: - fix typo (LP: #615923) * UpdateManager/UpdateManager.py: - when NM thinks we have no network, do not disable the buttons because for dialup users NM is frequently wrong and does not get that there is a network-connection (thanks to "gambs") -- Michael Vogt Thu, 12 Aug 2010 11:53:47 +0200 update-manager (1:0.142.7) maverick; urgency=low [ Mohamed Amine IL Idrissi ] * Cache is no longer initialized when an operation is not authorized. LP: #394608 * List of updates is active when there are only kept packages. LP: #601127 (thanks, Nicolò Chieffo) [ Michael Vogt ] * merged lp:~simono/update-manager/fixes-bug-563640, many thanks (LP: #563640) * merged lp:~yofel/update-manager/lp601127 (LP: #601127) [ Jean-Baptiste Lallement ] * UpdateManager/Core/MyCache.py: - catch network error when fetching 3rd party changelogs (LP: #565896) [ Brian Murray ] * UpdateManager/UpdateManager.py: grammar fix -- Michael Vogt Wed, 11 Aug 2010 09:04:47 +0200 update-manager (1:0.142.6) maverick; urgency=low [ Mohamed Amine IL Idrissi ] * Implemented battery and network alerts directly in the main window. LP: #484249, #426708, #426710, #494772 [ Michael Vogt ] * UpdateManager/Core/MyCache.py: - support looking for the changelog by source version (and add tests) * UpdateManager/Core/utils.py: - fix crash when reading the synaptic config (LP: #614170) -- Michael Vogt Tue, 10 Aug 2010 15:16:27 +0200 update-manager (1:0.142.5) maverick; urgency=low * more python-apt 0.8 porting * less updates to the progressbar * DistUpgrade/DistUpgradeViewNonInteractive.py: - fix crash in non-interactive upgrader when a conffile prompt is detected -- Michael Vogt Thu, 05 Aug 2010 22:49:07 +0200 update-manager (1:0.142.4) maverick; urgency=low * DistUpgrade/DistUpgradeView.py: - fix missing initializer (python0.8 api releated) LP: #604250 -- Michael Vogt Mon, 12 Jul 2010 16:18:54 +0200 update-manager (1:0.142.3) maverick; urgency=low * merged lp:~and471/update-manager/fix-bug-386196, many thanks * DistUpgrade/DistUpgradeView*.py: - port progress to new python-apt 0.8 API * merged lp:~mdz/update-manager/small-fixes-20100707, many thanks * DistUpgrade/DistUpgradeViewGtk.py: - call progressbar.set_fraction() less often to avoid too much CPU consumption on certain graphic drivers * UpdateManager/GtkProgress.py: - limit the amount of set_fraction() here too (LP: #595845) * UpdateManager/UpdateManager.py: - disconnect the model before adding lots of new items, this speeds up the building of the view massively -- Michael Vogt Fri, 09 Jul 2010 10:07:34 +0200 update-manager (1:0.142.2) maverick; urgency=low * DistUpgrade/DistUpgradeController.py: - use privileged port 1022 instead of 9004 when (optinally) starting a additional sshd * UpdateManager/UpdateManager.py: - fix crash with --no-focus-on-map * data/release-upgrades: - set release upgrade policy to "normal" for maverick (instead of lts) -- Michael Vogt Fri, 25 Jun 2010 10:48:47 +0200 update-manager (1:0.142.1) maverick; urgency=low * UpdateManager/UpdateManager.py: - Show reboot required dialog inline instead of doing a popup dialog. When morphing windows land into maverick they can be used to make the inline information more pretty. But it should be better than the previous popup dialog -- Michael Vogt Thu, 10 Jun 2010 16:30:07 +0200 update-manager (1:0.142) maverick; urgency=low [ Michael Vogt ] * check-new-release-gtk: - fix "ask me later" button time * DistUpgrade/DistUpgradeController.py, DistUpgrade/DistUpgradeCache.py, UpdateManager/Core/MetaRelease.py, UpdateManager/Core/utils.py, UpdateManager/Core/MyCache.py, UpdateManager/Core/UpdateList.py, UpdateManager/GtkProgress.py, UpdateManager/UpdateManager.py: - update for python-apt 0.8 API, add tests (LP: #591236) * check-new-release-gtk: - remove no longer needed warnings filter [ Brian Murray ] * string fix for 'is aborted now' to 'has aborted' * fix in debian/control -- Michael Vogt Wed, 09 Jun 2010 14:32:05 +0200 update-manager (1:0.141) maverick; urgency=low * UpdateManager/backend/__init__.py: - switch to aptdaemon as install backend by default (unless the user has UPDATE_MANAGER_FORCE_BACKEND_SYNAPTIC in his environment) - merged lp:~glatzor/update-manager/ubuntu-glatzor (many thanks!) * DistUpgrade/DistUpgradeController.py: - use pockets from DistUpgrade.cfg instead of hard-coding them * tests/test_sources_list.py: - update tests * UpdateManager/Core/utils.py: - fix url_downloadable and add tests, based on the patch from Paulo Albuquerque, many thanks (LP: #396187) * UpdateManager/UpdateManager.py: - fix typo (thanks to seb128) * DistUpgrade/mirrors.cfg: - support upgrades when sources.list uses the new mirror://mirrors.ubuntu.com/mirrors.txt uri * UpdateManager/GtkProgress.py: - do not open a cache open progress window, instead show the progress inline in the window -- Michael Vogt Mon, 31 May 2010 15:14:22 +0200 update-manager (1:0.140) maverick; urgency=low * DistUpgrade/removal_blacklist.cfg: - remove gobuntu-desktop from the removal blacklist * DistUpgrade/DistUpgradeController.py: - start apport only, do not modify any conffile (all versions of apport we upgrade from support this now) * UpdateManager/UpdateManager.py: - fix crash when format string has the wrong number of arguments (LP: #569469) - fix minor UI resize issue (LP: #572228) * DistUpgrade/DistUpgrade.cfg: - add ubuntu-netbook (LP: #574279) * UpdateManager/Core/MetaRelease.py: - add looking for a "UpgradeBroken" tag that contains a reason string if the user should not be allowed to perform a release upgrade * UpdateManager/UpdateManager.py, do-release-upgrade: - honor "UpgradeBroken" flag and error in this case * updated to support lucid to maverick upgrades -- Michael Vogt Tue, 25 May 2010 10:48:27 +0200 update-manager (1:0.134.6) lucid; urgency=low * fix FTBFS caused by /usr/bin/check-new-release being a symlink instead of a real file -- Michael Vogt Thu, 15 Apr 2010 09:31:33 +0200 update-manager (1:0.134.5) lucid; urgency=low * DistUpgrade/DistUpgradeAufs.py: - fix crash in aufs (--sandbox mode) -- Michael Vogt Wed, 14 Apr 2010 20:07:14 +0200 update-manager (1:0.134.4) lucid; urgency=low * DistUpgrade/DistUpgrade.cfg, DistUpgrade/DistUpgrade.cfg.hardy: - do not enable apport anymore * DistUpgrade/DistUpgradeViewGtk.py: - set empty dialog titles for error/information dialogs (it looks like glade removed those for some reason from the .ui file) * DistUpgrade/DistUpgradeAufs.py: - fix crash if aufs (--sandbox mode) is used (LP: #562394) * DistUpgrade/DistUpgradeMain.py: - fix generation of system state file for non-existing dirs/files (LP: #561872) * UpdateManager/UpdateManager.py: - provide a LIST_TOGGLE_CHECKED column as a workaround for orca that does not work with values updated via column_install.set_cell_data_func (LP: #561563) * update-manager: - use gettext.install(unicode=True) to avoid breaking with optparse and ja.po (LP: #557804) -- Michael Vogt Wed, 14 Apr 2010 17:54:47 +0200 update-manager (1:0.134.3) lucid; urgency=low * do-release-upgrade: - print when a new release is available in "-q" so that the motd is correct (thanks to Dustin Kirkland) * debian/release-upgrade-motd: - add newline after release info (thanks to Dustin Kirkland) -- Michael Vogt Tue, 13 Apr 2010 22:52:08 +0200 update-manager (1:0.134.2) lucid; urgency=low * DistUpgrade/DistUpgradeMain.py: - ignore lspci errors * UpdateManager/Core/MyCache.py: - simplify url schema for third party changelogs (LP: #45129) * DistUpgrade/DistUpgradeCache.py: - check if the kernel returned from base-installer is downloadable (needed on hardy cdrom only upgrades) * debian/91-release-upgrade: - use a small script instead of a symlink to ensure that dpkg treats them as conffiles (LP: #559194) -- Michael Vogt Tue, 13 Apr 2010 15:44:39 +0200 update-manager (1:0.134.1) lucid; urgency=low * DistUpgrade/DistUpgradeController.py: - honor "DEBIAN_FRONTEND=noninteractive" on pkg failure (LP: #538206) * DistUpgrade/DistUpgradeQuirks.py: - stop apparmor before dpkg starts on hardy -> lucid upgrades to avoid potentially confusing error messages during the upgrade (LP: #559433) * DistUpgrade/DistUpgradeCache.py, DistUpgrade/build-tarball.sh: - include obselte nvidia pkgnames to properly transition old to new drivers (LP: #553369) * DistUpgrade/DistUpgradeViewText.py: - show packages that will be removed (because they were auto installed) as well (LP: #558438) - fix i18n bug in details output * UpdateManager/Core/MyCache.py: - support third party changelogs by using ArchiveURI() and append a similar structure as changelogs.ubuntu.com uses (LP: #45129) * UpdateManager/Core/MetaRelease.py: - do not crash if meta-release file can not be parsed, just remove the broken file instead (LP: #558396) -- Michael Vogt Mon, 12 Apr 2010 18:32:59 +0200 update-manager (1:0.134) lucid; urgency=low [ Barry Warsaw ] * Bump up the amount of /boot space calculated per kernel. The current value appears to undercount by about 260K/kernel. (LP: #132311) [ Michael Vogt ] * refresh translations from launchpad * update "10.04" strings to "10.04 LTS" and unfuzzy translations * when requesting the release announcement, append ?lang=current_lang to the request URI * update quirks for updates from hardy * DistUpgrade/DistUpgrade.cfg, DistUpgrade/DistUpgrade.cfg.hardy: - add extra protection against video driver removal (LP: #556629) * DistUpgrade/DistUpgradeMain.py: - improve logging and save system state before performing the upgrade. Suggested by Matt Zimmerman (LP: #551646) -- Michael Vogt Fri, 09 Apr 2010 23:18:25 +0200 update-manager (1:0.133.11) lucid; urgency=low * UpdateManager/GtkProgress.py: - remove window title on cache progress (LP: #549936) * check-new-release-gtk: - if no ReleaseNotesHtml key is found, do nothing (it means the meta-release file does not support this client) * check-new-release-gtk, UpdateManager/Core/MetaRelease.py: - improve debugging * UpdateManager/Core/utils.py: - add META_RELEASE_FAKE_CODENAME environment that can be used to test/force release upgrades * check-new-release-gtk: - append language parameter to uri - support --debug -- Michael Vogt Thu, 01 Apr 2010 00:10:14 +0200 update-manager (1:0.133.10) lucid; urgency=low * help upgrade by hinting usplash gets removed in favor of plymouth -- Michael Vogt Wed, 31 Mar 2010 19:38:15 +0200 update-manager (1:0.133.9) lucid; urgency=low * DistUpgrade/DistUpgradeController.py, DistUpgrade/DistUpgradeCache.py: - do not warn about demoted packages that get removed later anyway * DistUpgrade/DistUpgrade.cfg, DistUpgrade/DistUpgrade.cfg.hardy: - remove deskbar-applet, and nautilus-cd-burner on ubuntu-desktop upgrade (as discussed with the desktop team) - remove notification-daemon in favor of notify-osd in xubuntu-desktop (LP: #546857) * DistUpgrade/DistUpgrade.cfg.hardy: - remove tracker on hardy ubuntu-desktop upgrade -- Michael Vogt Mon, 29 Mar 2010 14:18:49 +0200 update-manager (1:0.133.8) lucid; urgency=low * DistUpgrade/sources.list.py, distro.py, distinfo.py: - temporarily stop embedding from the python-apt build host because of the python-apt api changes, use 0.7.13.5 version instead * debian/control: - point to lp:~ubuntu-core-dev/update-manager/lucid -- Michael Vogt Sat, 27 Mar 2010 09:56:50 +0100 update-manager (1:0.133.7) lucid; urgency=low [ Nathan Stratton Treadway ] * data/release-upgrades - Provide better explanation of what how the various options in the configuration file control which upgrades are presented to the user. (LP: #522910) [ Barry Warsaw ] * README - Minor clean up. [ Michael Vogt ] * DistUpgrade/DistUpgradeCache.py: - check if the kernel returned from base-installer is upgradable (needed on hardy cdrom only upgrades) * check-new-release-gtk: - fix "ask me later" button time * DistUpgrade/DistUpgradeQuirks.py: - fix 386 kernel check/transition on upgrades from hardy - move kubuntu-kde4-desktop transition into its own function * check-new-release-gtk: - use GtkProgress when downloading the release upgrader [ Dustin Kirkland ] * debian/91-release-upgrade: do the release upgrade check with the quiet option to avoid putting debug messages in the MOTD, LP: #548376 -- Michael Vogt Fri, 26 Mar 2010 22:13:17 +0100 update-manager (1:0.133.6) lucid; urgency=low * DistUpgrade/DistUpgradeView.py: - display the right number of packages that are going to be removed * DistUpgrade/cdromupgrade: - fix cddirname detection when called without a directory prefix * DistUpgrade/DistUpgradeViewGtk.py: - fix crash in webkit progress -- Michael Vogt Tue, 23 Mar 2010 13:21:54 +0100 update-manager (1:0.133.5) lucid; urgency=low [ Markus Korn ] * UpdateManager/Core/utils.py: - Modified UpdateManager.Core.utils.on_battery() to use UPower per default (and DeviceKit.Power as fallback) to check if a system is running on battery (LP: #539211) [ Michael Vogt ] * DistUpgrade/DistUpgrade.cfg: - hint that libparted1.8-12 can be removed to help the upgrader logic' * DistUpgrade/DistUpgradeViewGtk.py: - only run JS progress if there is actually a webkit view * DistUpgrade/DevelReleaseAnnouncement: - fix text to say that its a BETA release (LP: #544544) * DistUpgrade/DistUpgradeViewGtk.py: - only run JS updateProgress script if we have a valid slideshow -- Michael Vogt Tue, 23 Mar 2010 11:17:24 +0100 update-manager (1:0.133.4) lucid; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeController.py, DistUpgrade/DistUpgradeView.py: - detect pre-depends cycle and cleanly revert (LP: #516727) to the old system state * DistUpgrade/DistUpgradeCache.py: - only ensure translations are kept if they are still downloadable, there is a lot of churn in the translations area so its not feasible to keep them all - when checking the kernel list from base-installer, also consider kernels that are marked install (LP: #540114) - check rdepends of all packages (including auto-removal ones) again ensure the removal blacklist is honored in all cases (LP: #540823) * DistUpgrade/DistUpgradeController.py: - show progress information when searching for obsolete software (this can take a bit on a big install) * DistUpgrade/DistUpgradeViewNonInteractive.py: - fix crash in non-interactive mode (thanks to Andreas Hasenack) [ Colin Watson ] * Ship /var/lib/update-notifier directory in update-manager-core, so that it's always there for 91-release-upgrade (LP: #540159). -- Michael Vogt Fri, 19 Mar 2010 13:57:18 +0100 update-manager (1:0.133.3) lucid; urgency=low * DistUpgrade/DistUpgrade.cfg, DistUpgrade/DistUpgrade.cfg.hardy: - do not allow upgrades to openoffice.org-filter-binfilter that causes pre-depends loop (LP: #516727) -- Michael Vogt Tue, 16 Mar 2010 22:59:02 +0100 update-manager (1:0.133.2) lucid; urgency=low * DistUpgrade/DistUpgradeViewNonInteractive.py: - fix regression in conffile prompt handling (LP: #538206) - add default to the "NonInteractive", "DebugBrokenScripts" config option * DistUpgrade/DistUpgradeController.py: - honor "DEBIAN_FRONTEND=noninteractive" in recovery mode as well (LP: #538206) * DistUpgrade/DistUpgrade.cfg: - ensure that gtk-qt-engine is removed on upgrade (LP: #532968) -- Michael Vogt Tue, 16 Mar 2010 17:17:33 +0100 update-manager (1:0.133.1) lucid; urgency=low [ Barry Warsaw ] * Fix obvious NameError by adding a missing import. (LP: #537250) [ David Planella ] * Made some strings translatable and extractable as a fix for LP: #537277 [ Michael Vogt ] * po/*.po: - updated from rosetta * DistUpgrade/DistUpgradeApport.py: - do not try to add directories under /var/log/dist-upgrade to a apport report (LP: #369951) [ Shlomi Loubaton ] * Set text direction for update treeview to be always LTR regardless of current language settings (LP: #316171) -- Michael Vogt Fri, 12 Mar 2010 23:43:27 +0100 update-manager (1:0.133) lucid; urgency=low [ Michael Vogt ] * UpdateManager/Core/MetaRelease.py: - allow upgrade from unsupported version to unsupported version * DistUpgrade/removal_blacklist.cfg: - allow removal of update-manager-kde * check-new-release-gtk: - fixes in the gtk release upgrade check * DistUpgrade/xorg_fix_proprietary.py: - if /etc/X11/XF86Config-4 is found on upgrade, rename it to "XF86Config-4.obsolete" - write log to "/var/log/dist-upgrade/xorg_fixup.log" * do-release-upgrade, check-new-release: - implemented "check-releae-upgrade" as symlink to do-release-upgrade and automatically run with "--check-dist-upgrade-only" when called as c-r-u - add --quiet option to do-release-upgrade * debian/update-manager-core.links: - install /usr/lib/update-manager/check-new-release as symlink to do-release-upgrade -c [ Wesley Schwengle ] * Check for release upgrade is now also possible with do-release-upgrade command: do-release-upgrade -c. (LP: #415026) * Added --version/-V to do-release-upgrade (similar to update-manager) [ Dustin Kirkland ] * debian/91-release-upgrade, debian/update-manager-core.install, - some users are complaining of long login times due to the release check requiring network connectivity; this information clearly doesn't change as frequently as the user logging in, so maintain a cache file in /var/lib, display it if it's populated, but otherwise, update it in the background if its either missing or the file is older than a day old, LP: #522452 [ Jonathan Riddell ] * Do not allow for the removal of update-manager-kde, we do want it after all -- Michael Vogt Mon, 08 Mar 2010 20:58:44 +0100 update-manager (1:0.132.1) lucid; urgency=low * rename update-manager-support-status to ubuntu-support-status * check-new-release-gtk: - add gtk tool for release notification that is designed to be run from update-notifier (desktop-lucid-update-upgrade-requirements) * DistUpgrade/DistUpgradeCache.py: - fix crash in cleanup code - fix crash when /home is missing (LP: #463506) - fix component inconsitency detection debug output * DistUpgrade/DistUpgradeViewGtk.py: - remove old code that moved to python-apt * DistUpgrade/DistUpgradeController.py: - if universe is not enabled, explain that the demoted packages will be suggested for removal in the cleanup stage * UpdateManager/Core/MetaRelease.py: - fix urlopen() crash on hardy->lucid cdrom upgrades -- Michael Vogt Thu, 25 Feb 2010 21:54:57 +0100 update-manager (1:0.132) lucid; urgency=low [ Michael Vogt ] * UpdateManager/Core/MetaRelease.py: - add timeout to meta-release download * UpdateManager/MetaReleaseGObject.py: - make sure threading is enabled * DistUpgrade/DistUpgrade.cfg: - add kubuntu-netbook to known metapackages - remove usplash artwork from KeyDependencies * DistUpgrade/DistUpgradeController.py: - test for server mode again after the sources.list rewrite, to capture the case when the initial sources.list is empty * DistUpgrade/DistUpgradeCache.py: - when showing the demoted packages, skip packages that are automatic installed - improve performance on the removal checks by making use of the auto removable information more agressively - increase space required by the kernel (it grew) * DistUpgrade/DistUpgradeView.py, DistUpgrade/DistUpgradeView{Gtk,KDE}.py: - show only non auto-installed removals bold * update-manager-support-status: - add --show-supported, --show-unsupported and --show-all for summary - add --list option for full details [ Colin Watson ] * update-manager-support-status: - fix typo in get_maintenance_status (LP: #513303) - add support statistics to the output -- Michael Vogt Thu, 11 Feb 2010 10:31:37 +0100 update-manager (1:0.131.4) lucid; urgency=low * update-manager-support-status: - text mode tool that gives a overview on the support status of the packages * DistUpgrade/DistUpgrade.ui, DistUpgrade/window_main.ui: - fix version number (thanks to davmor2) * DistUpgrade/DistUpgrade.cfg.hardy: - fix upgrade target to lucid (LP: #512608) -- Michael Vogt Wed, 27 Jan 2010 12:00:53 +0100 update-manager (1:0.131.3) lucid; urgency=low * DistUpgrade/DistUpgradeController.py: - add missing check for ubuntu-security when testing for mirrors (thanks to Stuart Langridge) * DistUpgrade/DistUpgrade.cfg: - add example SlideshowUrl * DistUpgrade/DistUpgradeController.py, DistUpgrade/DistUpgradeView.py, DistUpgrade/DistUpgradeViewGtk.py: - add slideshow support based on webkit - call percent() JS method on the webkit view * check-new-release: - use exit codes if run with --quiet otherwise only print (LP: #494499) * DistUpgrade/DistUpgradeConfigParser.py: - fix crash in _interpolate (LP: #500705) * UpdateManager/Core/MetaRelease.py: - do not crash on stat failure (LP: #496144) * UpdateManager/Core/MyCache.py: - do not crash if the lock can not be released (LP: #410574) * UpdateManager/SafeGConfClient.py - implement gconfclient that does not crash if gconf is not working (LP: #261471) -- Michael Vogt Tue, 12 Jan 2010 18:15:52 +0100 update-manager (1:0.131.2) lucid; urgency=low * data/release-upgrades: - default to lts->lts upgrade prompts for lucid * AutoUpgradeTester/UpgradeTestBackendQemu.py: - allow virtio for block devices when the virtio option is given in the config * DistUpgrade/DistUpgrade.cfg, DistUpgrade/DistUpgrade.cfg.hardy: - cleanup PostUpgradePurge and add "linux-restricted-modules-common" - cleanup ForcedObsoletes rules - update kernel removal rules and BaseNames - fix belocs-locales-bin upgrade issue (LP: #474543) * DistUpgrade/DistUpgradeController.py: - check forh reboot-required files in partial upgrade mode, update-notifier is no longer doing that by default (foundations-lucid-restart-required-dialog spec) * DistUpgrade/DistUpgrade.ui: - add a bunch of missing "" - improve restart-required dialog -- Michael Vogt Mon, 14 Dec 2009 10:59:51 +0100 update-manager (1:0.131.1) lucid; urgency=low * DistUpgrade/DistUpgradeViewNonInteractive.py: - use getWithDefault() for "NonInteractive","ForceOverwrite" (thanks to Free Ekanayaka) * UpdateManager/Core/MyCache.py: - detect dirty dpkg journal and enter recovery mode in this case (thanks to Maco for reporting) * DistUpgrade/DistUpgrade.cfg: - remove kvm-source on upgrade * debian/update-manager-core.links: - use "91-release-upgrade" instead of "91-release_upgrade" to make run-parts happy * fix FTBFS -- Michael Vogt Mon, 07 Dec 2009 12:02:26 +0100 update-manager (1:0.131) lucid; urgency=low * UpdateManager/UpdateManager.py: - do not crash if setlocale() fails (LP: #471378) * UpdateManager/Core/DistUpgradeFetcherCore.py: - add missing "logging" import (LP: #475941) * DistUpgrade/DistUpgradeController.py: - better message for upgrades over ssh (LP: #463257) * UpdateManager/Core/utils.py: - improve proxy check and show error if proxy settings look invalid (LP: #472168) * AutoUpgradeTester/profile/*/DistUpgrade.cfg: - updated to test karimic -> lucid and hardy -> lucid * Janitor/plugins/deb_plugin.py: - use apt.progress.InstallProgress() to keep the computer-janitor UI responsive * AutoUpgradeTester/install_blacklist.cfg: - add ec2 to the blacklist for the kvm based testing * UpdateManager/UpdateManager.py: - show selected and download size in two rows (LP: #434062) * data/do-release-upgrade.8: - man page added, thanks to Willem Bogaerts * DistUpgrade/DistUpgrade.cfg: - add laptop-mode-tools to the forced obsoletes on upgrade (thanks to Steve Langasek) * UpdateManager/UpdateManager.py: - show restart required dialog in u-m when the upgrade is finished with proper parent * AutoUpgradeTester/post_upgrade_tests: - add python import, xorg and kernel tests * UpdateManager/dialog_release_notes.ui: - merged lp:~freinhard/update-manager/ui-fix (many thanks) * UpdateManager/Core/MetaRelease.py: - merge lp:~cristiklein/update-manager/use-xdg (many thanks) -- Michael Vogt Tue, 01 Dec 2009 21:23:59 +0100 update-manager (1:0.130) lucid; urgency=low * UpdateManager/UpdateManager.py: - set heading for the release-upgrader download window * DistUpgrade/DistUpgradeController.py: - force lts for lucid cdrom upgrades * AutoUpgradeTester/profile/: - fix missing BaseMetaPackages * AutoUpgradeTester/UpgradeTestBackendQemu.py: - fix AddRepo code * DistUpgrade/DistUpgradeConfigParser.py: - fix getWithDefault() to use the correct get{int,float,boolean} function based on the type of the default (LP: #465619) Thanks to Brian Murray for spotting this bug * DistUpgrade/DistUpgradeController.py: - fix typo (LP: #470011) * updated for karmic->lucid upgrades and hardy->lucid upgrades * UpdateManager/Core/utils.py:: - fix url_downloadable() when a proxy needs to be used (LP: #446552) -- Michael Vogt Tue, 03 Nov 2009 14:07:20 +0100 update-manager (1:0.126.9) karmic-proposed; urgency=low * DistUpgrade/DistUpgrade.cfg: - really stop enabling apport during the upgrade (LP: #465619) -- Brian Murray Fri, 30 Oct 2009 13:54:08 -0700 update-manager (1:0.126.8) karmic-proposed; urgency=low * when the server is overloaded and no Release file information can be obtained, show a better error message instead of the bogus "ubuntu-minimal" is missing (LP: #446956) -- Michael Vogt Fri, 30 Oct 2009 10:58:36 +0100 update-manager (1:0.126.7) karmic-proposed; urgency=low * po/*.po: - update translations from LP (LP: #460547) * UpdateManager/Core/DistUpgradeFetcherCore.py: - check if running on a system with noexec /tmp and give a propper error message (LP: #461744) * DistUpgrade/DistUpgradeViewGtk.py: - add missing locale.bindtextdomain() (LP: #460547) -- Michael Vogt Wed, 28 Oct 2009 14:11:41 +0100 update-manager (1:0.126.6) karmic; urgency=low * debian/control: - updated to point the karmic branch * UpdateManager/GtkProgress.py: - fix small cosmetic problem with the release-upgrader download window size * DistUpgrade/xorg_fix_proprietary.py: - if xorg.conf is zero size, remove it (LP: # 439551) * change unicode "◦" to "*" to make translations work (LP: #344693) and unfuzzy translations -- Michael Vogt Fri, 23 Oct 2009 14:06:21 +0200 update-manager (1:0.126.5) karmic; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - generate note if language-support is incomplete * DistUpgrade/DistUpgrade.cfg: - stop enabled apport during the upgrade * DistUpgrade/DistUpgradeView.py - add waitChild implementation from python-apt to ensure its working for buggy hardy python-apt * DistUpgrade/DistUpgradeQuirks.py: - mark mysql-{client,server}-5.0 manual installed in the cluster check (LP: #453513) - check if running under a vserver setup and error if this is the case. upstart does not support this kind of setup (LP: #452011) * UpdateManager/Core/utils.py: - do not show error if DeviceKit.Power is not available (LP: #452004) -- Michael Vogt Tue, 20 Oct 2009 18:14:28 +0200 update-manager (1:0.126.4) karmic; urgency=low * DistUpgrade/DistUpgradeController.py: - fix running under ssh detection * DistUpgrade/DistUpgradeQuirks.py: - add check if NBD clustering is in use in mysql server and do not upgrade to 5.1 is it is (LP: #450837) * DistUpgrade/DistUpgrade.cfg: - remove mysql-server rule, this is now done in the above quirks handler * DistUpgrade/DistUpgradeController.py: - do not do list cleanup so that cancel restores all of the previous state. the cleanup will be done later by the apt cron job -- Michael Vogt Thu, 15 Oct 2009 23:36:49 +0200 update-manager (1:0.126.3) karmic; urgency=low * UpdateManager/UpdateManager.py: - refresh "last updated" text periodically to ensure its not stale (LP: #450286) * DistUpgrade/DistUpgradeViewGtk.py: - deal with io errors when writing the log (LP: #447693) * debian/control: - add or-dependency to qemu-kvm * DistUpgrade/DistUpgrade.cfg: - add policykit-gnome and gnome-mount to the forced obsoleted packages (thanks to seb128) * merge translations from rosetta * DistUpgrade/DistUpgradeQuirks.py: - stop docvert-converter when the upgrade starts, otherwise OOo will not upgrade at all (LP: #450569) * pre-build.sh: - fix bug in the demoted.cfg generation - fixes in cleanup handling * UpdateManager/backend/__init__.py: - honor UPDATE_MANAGER_FORCE_BACKEND_APTDAEMON environment * DistUpgrade/DistUpgrade.cfg.hardy: - updated to include demoted.cfg.hardy -- Michael Vogt Wed, 14 Oct 2009 22:28:26 +0200 update-manager (1:0.126.2) karmic; urgency=low * setup.py: - fix FTBFS - the python from two days ago became stricter than it used to be (thanks to james_w) -- Michael Vogt Mon, 12 Oct 2009 20:44:11 +0200 update-manager (1:0.126.1) karmic; urgency=low * DistUpgrade/DistUpgradeView.py: - log exceptions from pm.DoInstall() into main.log. this helps identifiying Dpkg::Pre-Invoke problems * DistUpgrade/DistUpgradeCache.py: - fix sandbox upgrade mode * DistUpgrade/DistUpgrade.cfg: - hint for mysql-server upgrade (LP: #413789) * UpdateManager/backend/__init__.py: - change order of backends to: synaptic, aptdaemon -- Michael Vogt Mon, 12 Oct 2009 18:30:55 +0200 update-manager (1:0.126) karmic; urgency=low * DistUpgrade/DistUpgrade.cfg: - add gnome-app-install to the ForcedObsoletes * DistUpgrade/DistUpgrade.cfg.hardy: - add ability to upgrade from hardy to karmic (as asked for by Jonathan Riddell) * DistUpgrade/DistUpgradeQuirks.py: - add quirk handler to mark the dependencies of language-support-translations-* as manual on upgrade The language-support-translations- packages are removed in karmic and would otherwise be marked as auto-removable. (LP: #439296) - convert PASS value from 1 to 0 for ntfs entries in /etc/fstab (LP: #441242) and add tests for it - put 386 to generic transition code here and decouple from the kernel selection - inhibit gnome-screensaver once the upgrade started to avoid X crash (LP: #439594) * DistUpgrade/DistUpgradeCache.py: - workaround issues with kdesu when it drop the permission bits in a tmpdir (thanks to Jonathan Riddell) - fix base-installer kernel selection (LP: #441629) - fix log dir does not exist, create it (LP: #441959) * UpdateManager/backend/InstallBackendAptdaemon.py: - give up lock before running aptdaemon (LP: #445920) * po/ - updated from launchpad (required as during a release upgrade we can't use langpacks) -- Michael Vogt Thu, 08 Oct 2009 17:45:25 +0200 update-manager (1:0.125.6) karmic; urgency=low * AutoUpgradeTester/UpgradeTestBackendSSH.py: - use ssh batch mode * AutoUpgradeTester/auto-upgrade-tester: - show log files * DistUpgrade/DevelReleaseAnnouncement: - update for BETA * DistUpgrade/DistUpgradeCache.py: - add new rule to ensure that base meta packages are always kept installed. this helps the server upgrade with the syslogd to rsyslog transition -- Michael Vogt Tue, 29 Sep 2009 18:51:49 +0200 update-manager (1:0.125.5) karmic; urgency=low * DistUpgrade/DistUpgradeQuirks.py - fix kbluetooth name to kbluetooth4 -- Jonathan Riddell Mon, 28 Sep 2009 20:18:49 +0100 update-manager (1:0.125.4) karmic; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - fix brown paperbag bug in quirks hanlding (LP: #436302) * DistUpgrade/DistUpgradeViewGtk.py: - fix crash in gettext initialization (LP: #436438) -- Michael Vogt Fri, 25 Sep 2009 13:08:46 +0200 update-manager (1:0.125.3) karmic; urgency=low * DistUpgrade/DistUpgrade.cfg.hardy: - fix upgrades from hardy by allowing the removal of sysvutils * data/glade/UpdateManager.ui: - remove dialog title for cache open progress (LP: #435653) * DistUpgrade/DistUpgradeQuirks.py: - add translators hints for some strings (LP: #433116) * UpdateManager/Core/DistUpgradeFetcherCore.py: - fixed typo (thanks to Henrique P. Machado) * UpdateManager/UpdateManager.py: - fix i18n issues with gtkbuilder * DistUpgrade/DistUpgradeQuirks.py: - stop kblueplugd kbluetooth when the upgrade starts to avoid them crashing during the upgrade (thanks to Jonathan Riddell) * UpdateManager/backend/InstallBackendAptdaemon.py - setup correct window icon * data/glade/UpdateManager.ui: - switch from unicode … to "..." until the issues with gettext is resolved (LP: #434107) -- Michael Vogt Thu, 24 Sep 2009 18:41:22 +0200 update-manager (1:0.125.2) karmic; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeCache.py: - add check for 5Mb safety buffer in /tmp, this ensures that dkms can run and ensure we do not run when /tmp is mounted in overflow mode (LP: #427035) * data/glade/UpdateManager.ui: - remove dialog title for the battery warning and fix button order (thanks to Matthew Paul Thomas) * data/glade/UpdateManager.ui: - fix duplicated accelerator keys (LP: #425817) * UpdateManager/UpdateManager.py: - close app when ESC is pressed in the battery warning * UpdateManager/UpdateManager.py: - ensure that the changelog always matches the currently selected pkg by fixing race during download (LP: #424918) * UpdateManager/backend/InstallBackendAptdaemon.py: - do not hang when cancel is clicked (LP: #426718) * add sed patch facility and patch the gnome debconf frontend before the upgrade starts so that it can not crash when perl moves from 5.8.0 to 5.10.0 (LP: #387112) * data/glade/UpdateManager.ui: - use bigger default width (LP: #418201) [ Brian Murray ] * typo fixes (thanks to Brian Murray, LP: #423409) -- Michael Vogt Tue, 15 Sep 2009 10:50:24 +0200 update-manager (1:0.125.1) karmic; urgency=low [ Josh Holland ] * Fixed several typos (LP: #93804, LP: #277731, LP: #404435) [ Rugby471 ] * Center window on the screen (LP: #423355) [ Michael Vogt ] * DistUpgrade/DistUpgrade.ui: - remove unused "destroy_event" handler (LP: #428842) - remove unused handlers to avoid RunTime warning * DistUpgrade/DistUpgradeQuirks.py: - make ARMv6 error message clearer (LP: #409523) * UpdateManager/Core/MetaRelease.py: - more robustness for invalid configuration of the meta-release file (LP: #428558) - more robustness if the server sends invalid meta-release data * UpdateManager/GtkProgress.py: - make button_cancel click event work - add sensible default width * DistUpgrade/DistUpgradeCache.py: - fix crash in partial upgrade (LP: #428203) -- Michael Vogt Mon, 14 Sep 2009 12:01:41 +0200 update-manager (1:0.125) karmic; urgency=low [ Michael Vogt ] * integrate base-installer as a sub-component into the release upgrader and use the base-installer/kernel/*.sh functionality to ensure we select the most appropriate kernel on upgrade (LP: #353534) * integrate automatic updates to base-installer into the pre-build.sh bzr hook * UpdateManager/Core/UpdateList.py, UpdateManager/UpdateManager.py: - filter warnings * UpdateManager/SimpleGtkbuilderApp.py: - use logging instead of sys.stderr * data/glade/UpdateManager.ui: - set explicit translation domain * integrate base-installer component into auto-upgrade-tester [ Steve Langasek ] * Refresh .pot file (and .po files) so that new UI strings are available for translation in LP. LP: #425014. -- Michael Vogt Fri, 11 Sep 2009 20:07:20 +0200 update-manager (1:0.124.11) karmic; urgency=low * DistUpgrade/DistUpgradeView.py: - capture exceptions from pm.DoInstall() properly (fixes a hang when a package fails to install) * DistUpgrade/DistUpgradeViewGtk.py, DistUpgrade/DistUpgradeViewKDE.py: - return the full status of the exited child, not only the return code -- Michael Vogt Fri, 04 Sep 2009 10:57:06 +0200 update-manager (1:0.124.10) karmic; urgency=low * DistUpgrade/removal_blacklist.cfg: - add update-manager so that it does not * typo fixes (thanks to Brian Murray, LP: #418127) * merge the changes of seb128 into bzr * po/POTFILES.in: - fix ui file detection (thanks to Gabor Kelemen) LP: #420209 * DistUpgrade/DistUpgrade.ui: - fix duplicated id (LP: #422665) * fix crash when lsmod is not installed -- Michael Vogt Wed, 02 Sep 2009 15:04:53 +0200 update-manager (1:0.124.9ubuntu1) karmic; urgency=low * Clean build directory -- Sebastien Bacher Mon, 31 Aug 2009 22:19:51 +0200 update-manager (1:0.124.9) karmic; urgency=low * data/glade/UpdateManager.ui: - don't use some duplicated ids to fix update-manager not starting due to the new gtk version -- Sebastien Bacher Mon, 31 Aug 2009 22:02:20 +0200 update-manager (1:0.124.8) karmic; urgency=low * make the release-upgrader auto selection for the frontend more robust when no DISPLAY is avaiable * Janitor/computerjanitor/package_cruft.py: - use unicode string here (thanks to liw) * data/glade/UpdateManager.ui: - fix duplicated symbol (LP: #417301) * UpdateManager/UpdateManager.py: - show the on-battery warning on first map only (LP: #416067) * DistUpgrade/DistUpgradeController.py: - do not how a error when the upgrade is canceled by the user during download -- Michael Vogt Mon, 24 Aug 2009 17:48:45 +0200 update-manager (1:0.124.7) karmic; urgency=low * UpdateManager/UpdateManager.py: - recalulcate the heading label size dynamically to work around bugzilla #101968 (thanks to Juergen Kazmirzak for the patch) * UpdateManager/backend/__init__.py: - fix incomplete check for aptdaemon * UpdateManager/backend/InstallBackendAptdaemon.py: - update for latest aptdaemon * DistUpgrade/DistUpgradeController.py: - merge fixes from Brian Murray (thanks!), LP: #404274 -- Michael Vogt Mon, 17 Aug 2009 16:34:42 +0200 update-manager (1:0.124.6) karmic; urgency=low [ Oliver Grawert ] * DistUpgrade/DistUpgradeQuirks.py: add check for ARMv6 or greater to prevent jaunty->karmic upgrades on unsupported armel CPU arches [ Michael Vogt ] * UpdateManager/SimpleGtkbuilderApp.py: - updated to deal with widgets that overwrite get_name * update-manager: - add "--data-dir" switch * use aptdaemon as the install backend (if avaialble) -- Michael Vogt Fri, 24 Jul 2009 15:49:09 +0200 update-manager (1:0.124.5) karmic; urgency=low * debian/update-manager-core.links: change the update-motd link for release_upgrade to match other links (- instead of _), and move it to 91 (just after updates-available at 90), such that it's printed toward the end of the MOTD, rather than at 10, which is the beginning. -- Dustin Kirkland Thu, 16 Jul 2009 17:41:04 -0500 update-manager (1:0.124.4) karmic; urgency=low * debian/control: recommend libpam-modules, rather than update-motd -- Dustin Kirkland Thu, 16 Jul 2009 11:29:27 -0500 update-manager (1:0.124.3) karmic; urgency=low [ Michael Vogt ] * UpdateManager/UpdateManager.py: - fix description display (LP: #379945), thanks to Richard Thomas - fix crash in refresh_updates_count() * DistUpgrade/DistUpgradeApport.py: - deal with errors from apport better (LP: #357339), thanks to Patrick Horn) * UpdateManager/ChangelogViewer.py: - fix problem for http://host/document.html. style entries (LP: #396393) [ Dustin Kirkland ] * debian/update-manager-core.links: install 10_release_upgrade into /etc/update-motd.d, rather than the daily; update-motd-3.0 will now run these scripts on login, rather than at specified intervals -- Michael Vogt Thu, 09 Jul 2009 15:10:02 +0200 update-manager (1:0.124.2) karmic; urgency=low * UpdateManager/UpdateManager.py: - make it clearer if a package is a new install (as opposed to a upgrade) - thanks to Cody Sommerville - show amount of selected updates in the UI (LP: #330439) -- Michael Vogt Tue, 07 Jul 2009 15:11:31 +0200 update-manager (1:0.124.1) karmic; urgency=low * fix ftbfs -- Michael Vogt Tue, 07 Jul 2009 08:08:42 +0200 update-manager (1:0.124) karmic; urgency=low * AutoUpgradeTester: - add kubuntu, main-all, lts-server, lts-ubuntu profiles * ported to gtkbuilder * UpdateManager/UpdateManager.py: - warn if running on battery (LP: #377697) - make it less stealty by setting the stick() property if run in auto-open mode (LP: #369820) -- Michael Vogt Mon, 06 Jul 2009 17:11:07 +0200 update-manager (1:0.123) karmic; urgency=low * debian/control: - build auto-upgrade-tester package to allow easy upgrade testing with a set of default profiles * UpdateManager/Core/MyCache.py: - wording fix (thanks to Ng) * DistUpgrade/DistUpgradeViewNonInteractive.py: - fix bug in dpkg_progress_log filea * AutoUpgradeTester/UpgradeTestBackend.py: - import the http_proxy from the environment - make the resultdir configrable and default to /var/cache/auto-upgrade-tester/result/ * AutoUpgradeTester/UpgradeTestBackendQemu.py: - make the path for the kvm working images configurable and default to /var/cache/auto-upgrade-tester * AutoUpgradeTester/auto-upgrade-tester: - move login() into the backends * AutoUpgradeTester/auto-upgrade-tester: - allow shorthand profile names like "ubuntu" instead of full pathes -- Michael Vogt Mon, 22 Jun 2009 11:36:08 +0200 update-manager (1:0.122) karmic; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - add handler to check for wl module and transition to bcmwl-kernel-source (LP: #381684) * DistUpgrade/DistUpgradeViewNonInteractive.py: - add bool option "NonInteractive/DpkgProgressLog" to write a timing log of the upgrade (for the foundations-karmic-pre-unpacking spec) - add "NonInteractive/DebugBrokenScripts" option that will re-run failed maintainer scripts with debug options * DistUpgrade/DistUpgrade.cfg: - add defaults for the NonInteractive section that match the interactive upgrades (for better landscape support) - enable apport again * AutoUpgradeTester/chart_dpkg_progress.py: - add simple tool that can read the dpkg progress information -- Michael Vogt Thu, 18 Jun 2009 16:54:35 +0200 update-manager (1:0.121) karmic; urgency=low * DistUpgrade/DistUpgrade.cfg: - remove obsolete kubuntu-kde4-desktop meta package * DistUpgrade/DistUpgradeCache.py: - when guessing missing meta-packages stop after the first one was found - use internal _lookupPkgRecord() instead of pkg._lookupRecord * DistUpgrade/DistUpgradeQuirks.py: - move the kubuntu-kde4-desktop key dependency transition detection to the from_hardy quirks handler (LP: #368459) * UpdateManager/Core/MyCache.py: - always disable version number range of the changes in the details (LP: #251349) - make the distro supporting the changelogs easier to customize * DistUpgrade/xorg_fix_proprietary.py: - better comment when explaining why stuff got commented out (LP: #300504) * DistUpgrade/DistUpgradeController.py: - after updating the sources.list, check for both existance and downloadability of the BaseMetaPkgs and abort if that is not the case (thanks to Ulrich Kalkkuhl) LP: #370062 * UpdateManager/UpdateManager.py: - show origin field for other updates (like PPAs) to make it easier to see what comes from where (part of the foundations-karmic-apturl-policy spec) -- Michael Vogt Fri, 05 Jun 2009 20:53:37 +0200 update-manager (1:0.120) karmic; urgency=low * The 'Ready for karmic' version * DistUpgrade/DistUpgradeController.py: - do not fail in partial upgrades if apport must be enabled (LP: #357755) - when rewriting sources.list, check for cdrom entries that do not have associated list files and disable them (LP: #366459) - when rewriting sources.list, deal better with apt-cacher apt-torrent style uris (LP: #365537) * DistUpgrade/xorg_fix_proprietary.py: - instead of replacing fglrx->ati and nvidia->nv just comment out the driver and let xorg figure it out with its own magic (LP: #351394) - update tests/ for the change * UpdateManager/UpdateManager.py: - use a gtk link button to point the user to further upgrade information * DistUpgrade/DistUpgradeController.py: - ensure ./imported/invoke-rc.d is executable (LP: #147742) * refactor the quirks handlers and not run them in partial upgrade mode * tests/test_sources_list.py: - update tests for apt-torrent style uris (LP: #365537) * DistUpgrade/DistUpgrade.cfg: - remove edubuntu-desktop from the flavour metapackages, its not its own flavour anymore * help/C/update-manager-C.omf: - point to file:/usr/share/gnome/help/update-manager/C/update-manager.xml (LP: #368140) -- Michael Vogt Tue, 28 Apr 2009 14:43:26 +0200 update-manager (1:0.111.9) jaunty-proposed; urgency=low * DistUpgrade/DistUpgradeCache.py: - increase the size that the kernel requires in /boot (LP: #365623) * DistUpgrade/DistUpgradeApport.py: - fix apport hook integration (LP: #366048) * DistUpgrade/DistUpgradeController.py: - fix crash in partial upgrade (LP: #366048) * DistUpgrade/DistUpgradeQuirks.py: - make the gwenview upgrade transition more robust (LP: #365840) -- Michael Vogt Fri, 24 Apr 2009 14:41:14 +0200 update-manager (1:0.111.8) jaunty-proposed; urgency=low * DistUpgrade/DistUpgrade.cfg: - add "grub" to the list of packages to keep installed (LP: #363465) - ensure brasero is upgraded (thanks to Chris Jones for the report) (LP: #364136) - ensure guidance-power-manager is removed on upgrade (LP: #364620) * DistUpgrade/DistUpgradeCache.py: - support DistUpgradeCache.markUpgrade() * DistUpgrade/mirrors.cfg: - add "mirror.files.bigpond.com" (thanks to wgrant) * debian/control: - build-depend on latest nvidia-common (LP: #363500) to ensure the nvidia-common if is included in the internal copy of u-m * DistUpgrade/DistUpgradeQuirks.py: - when the upgrade starts, remove old hal.postinst to prevent the trigger from running that causes network-manager to shutdown all connections (LP: #327053) * UpdateManager/Core/MetaRelease.py, UpdateManager/MetaReleaseGObject.py: - fix "no longer supported" message (LP: #364583) -- Michael Vogt Mon, 20 Apr 2009 13:53:01 +0200 update-manager (1:0.111.7) jaunty; urgency=low * DistUpgrade/ReleaseAnnouncement: - updated for the final release * DistUpgrade/DistUpgradeQuirks.py: - ensure qwenview is upgraded (LP: #360222) -- Michael Vogt Fri, 17 Apr 2009 22:11:04 +0200 update-manager (1:0.111.6) jaunty; urgency=low * UpdateManager/UpdateManager.py: - fix crash in free space check (LP: #362066) -- Michael Vogt Thu, 16 Apr 2009 11:07:01 +0200 update-manager (1:0.111.5) jaunty; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - do not crash when patch is not installed (LP: #361194) * DistUpgrade/DistUpgradeCache.py: - more debug output -- Michael Vogt Wed, 15 Apr 2009 14:59:35 +0200 update-manager (1:0.111.4) jaunty; urgency=low * DistUpgrade/DistUpgradeViewKDE.py: - make the pyqt4 logger less verbose * DistUpgrade/DistUpgradeController.py: - deal with pre-configure errors more cleanly (LP: #356781) * DistUpgrade/DistUpgradeMain.py: - fix error when the backup log dir already exists * DistUpgrade/DistUpgrade.cfg: - stop enabling apport * DistUpgrade/DevelReleaseAnnouncement: - update text for the release candidate * po/*.po: - translation updates from rosetta -- Michael Vogt Wed, 08 Apr 2009 11:09:25 +0200 update-manager (1:0.111.3) jaunty; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - cleanup the quirks handling for the StartUgrade phase and move the code in here - apply patch for install-docs if the user can not install the fix from {hardy,intrepid}-proposed -- Michael Vogt Tue, 07 Apr 2009 18:59:43 +0200 update-manager (1:0.111.2) jaunty; urgency=low * UpdateManager/Core/MyCache.py: - when calculating what category a update should be put in, make sure that candidate versions for "other updates" always end up there - do not try to get changelogs for packages that do not have a ubuntu origin (LP: #354740) * DistUpgrade/removal_blacklist.cfg: - add skype to the removal blacklist (thanks to Nick Lally) -- Michael Vogt Tue, 07 Apr 2009 10:28:34 +0200 update-manager (1:0.111.1) jaunty; urgency=low * DistUpgrade/DistUpgrade.cfg: - ensure that dontzap is installed on kubuntu (LP: #349263) - ensure to not upgrade to a known broken python2.6 (e.g. if the mirrors do not catch up) * DistUpgrade/DistUpgradeController.py: - avoid conffile prompt because we enabled apport (LP: #348301) - deal better with apt ordering bugs and restore the system cleanly in this case - when commenting out third party sources, leave a space between previous comments (thanks to Sidnei da Silva) * DistUpgrade/DistUpgradeCache.py: - add "BadVersions" config option * UpdateManager/Core/MetaRelease.py: - ignore bad header line errors (LP: #353335) * UpdateManager/UpdateManager.py: - start minimized when run with --no-focus-on-map (LP: #353195) - set urgency hint when in the background (LP: #353195) * po/*.po: - updated translations from rosetta -- Michael Vogt Fri, 03 Apr 2009 22:42:17 +0200 update-manager (1:0.111.0) jaunty; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - fix pre r6xx/7xx fglrx->ati transition * DistUpgrade/DistUpgradeQuirks.py: - fix incorrect variable name * DistUpgrade/DistUpgradeView.py: - remove old crash files on upgrade (thanks to Martin Pitt) -- Michael Vogt Tue, 24 Mar 2009 20:49:50 +0100 update-manager (1:0.110.1) jaunty; urgency=low * DistUpgrade/DistUpgrade.cfg.hardy: - support hardy->jaunty upgrade for kubuntu * po/POTFILES.{in,missing}: - add missing files (thanks to Gabor Kelemen) LP: #347040 * po/*.po: - updated translations from launchpad -- Michael Vogt Mon, 23 Mar 2009 16:22:06 +0100 update-manager (1:0.110.0) jaunty; urgency=low * DistUpgrade/DistUpgradeCache.py: - take changes in update-initramfs into account when calculating the space requirements in /boot (LP: #287826) - when doing the space calculation, show the required space for each directory (if multiple need more space) LP: #219416 * DistUpgrade/DevelReleaseAnnouncement: - updated for beta * UpdateManager/DistUpgradeFetcher.py: - set 5s timeout for the ReleaseNotes fetching (LP: #109397) * UpdateManager/UpdateManager.py: - pass the correct FetchProgress to the release-upgrade fetching code instead of the incorrect OpProgress -- Michael Vogt Thu, 19 Mar 2009 16:48:11 +0100 update-manager (1:0.101.1) jaunty; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeCache.py: - catch cache.update() errors that do not raise exceptions * DistUpgrade/DistUpgradeController.py: - when calculating the obsolete packages, add extra paranoia for odd network failures (LP: #335154) * DistUpgrade/DistUpgradeAufs.py: - do not overlay /var/cache/apt/archives so that the user does not have to download the packages twice - honor the TMPDIR environment (by using tempfile) * DistUpgrade/DistUpgrade.cfg: - add powernowd to the forced obsoleted packages (the kernel does handle that with the builin ondemand governor now) [ Jonathan Riddell ] * DistUpgrade/DistUpgrade.cfg: - remove gtk-qt-engine in Kubuntu upgrades -- Michael Vogt Wed, 18 Mar 2009 17:57:54 +0100 update-manager (1:0.101.0) jaunty; urgency=low [ Brian Murray ] * UpdateManagerHildon/UpdateManagerHildon.py: - wording fix "will be" to "are being" (LP: #338943) [ Michael Vogt ] * UpdateManager/UpdateManagerText.py: - fix crash in changelog display (LP: #341577) (thanks to Steve Beattie) - support NEWS.Debian from the server as well * DistUpgrade/DistUpgradeAufs.py: - fix in is_submount detection (thanks to liw for reporting) [ Gabor Kelemen ] * data/glade/UpdateManager.glade: - fix missing "translatable" property (LP: #342011) -- Michael Vogt Fri, 13 Mar 2009 10:09:30 +0100 update-manager (1:0.100.1) jaunty; urgency=low * DistUpgrade/DistUpgradeCache.py: - fix crash (LP: #340828) when config is undefinied * UpdateManager/UpdateManager.py: - explicitely cast time.time() to int (LP: #340755) -- Michael Vogt Wed, 11 Mar 2009 09:10:02 +0100 update-manager (1:0.100) jaunty; urgency=low [ Andy Whitcroft ] * DistUpgrade/cdromupgrade: - if cdromupgrade is run with a relative path we will fail to find the installer components and error out. Ensure that the path is absolute. (LP: #335360) [ Michael Vogt ] * fix crash when help is not avaialble (LP: #338098) * data/glade/UpdateManager.glade: - remove the "Keep your system up-to-date" text (design team, LP: #336800) * fix crash when no network is avaialble for changelog fetching (LP: #334002) * debian/control: - add conflict against update-manager-kde to update-manager-hildon (LP: #333464) * UpdateManager/Core/MyCache.py: - show proper urls for sources with epochs (LP: #328164), thanks to Richie * UpdateManager/ChangelogViewer.py: - support copy to clipboard for URLs (LP: #85644), thanks to Richie * UpdateManager/UpdateManager.py: - disable fixed-hight mode, it can cause incorrect height calculation (thanks to Richie), LP: #273184 * DistUpgrade/DistUpgradeController.py: - do not allow gtk/kde upgrades over ssh session (LP: #322482) * merged aufs branch (disabled by default but useful for testing) -- Michael Vogt Tue, 10 Mar 2009 20:25:55 +0100 update-manager (1:0.99) jaunty; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeController.py: - enable apport crash capturing during upgrades * DistUpgrade/DistUpgradeView.py: - create /var/lib/pycentral/pkgremove before the upgrade to help pycentral transition to the new python policy (thanks to doko) * ensure pidgin-libnotify is upgraded (LP: #332328) * better wording for aborts (thanks to Gabor Kelemen and Jean-Baptiste Lallement), LP: #289303 * wording fixes, thanks to Brian Murray and Gabor Kelemen LP: #269583 * i18n fix, thanks to Gabor Kelemen, LP: #331821 * support /etc/update-manager/release-upgrades.d/ directory for local overrides of the upgrade process. Useful to force certain site-specific options (like third party repository handling) * allow "[FreeSpace]\nSkipCheck=yes" override to skip free space checks (useful for testing) * support "[Sources"]\nAllowThirdParty=yes" override to skip commenting out of unknown repositories (LP: #147080) * debian/*.install: - updated for the new python layout (/u/l/p/dist-packages instead of /u/l/p/site-packages) * debian/rules: - use DH_PYCENTRAL=include-links instead of "nomove" - use "--install-layout=deb" in distutils * debian/control: - use "XS-Python-Version: all" instead of current * DistUpgrade/DistUpgradeCache.py: - fix modalias path in NvidiaDetector * data/glade/UpdateManager.glade: - add "settings" button * UpdateManager/UpdateManager.py: - open software-properties when settings button is clicked (LP: #334959) - keep track of launch times via gconf (/apps/update-manager/launch_time) * debian/control: - recommend software-properties-gtk [ Brian Murray ] * DistUpgrade/multiple files: - fixed typographical error * DistUpgrade/DistUpgradeViewText.py: - change "Restart required" default to N (LP: #328452) -- Michael Vogt Tue, 03 Mar 2009 12:33:12 +0100 update-manager (1:0.98.1) jaunty; urgency=low * reenable the demotions.cfg generation and mirror updates * setup.py cleanup (thanks to liw) -- Michael Vogt Thu, 19 Feb 2009 00:22:58 +0100 update-manager (1:0.98) jaunty; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeController.py: - fixes in the error string (thanks to Jean-Baptiste Lallement, LP: #298296) * support getting NEWS.Debian information in addition to the changelog * debian/update-manager-core.links: - fix typo (thanks to tjaalton) * merge the 'computer-janitor' core and quirks code into update-manager-core (part of the jaunty-cruftremover-improvements spec) * conflicts with the current version of computer-janitor [ Brian Murray ] * DistUpgrade - Release Announcements: - Modified reporting bugs sections to recommend using ubuntu-bug instead of filing bugs directly in Launchpad. (LP: #327800) -- Michael Vogt Wed, 18 Feb 2009 23:44:17 +0100 update-manager (1:0.97.1) jaunty; urgency=low [ Michael Vogt ] * UpdateManager/UpdateManager.py: - make the gconf handling more robust (LP: #320586) * UpdateManager/Core/MyCache.py: - fix crash when no changelog can be found (LP: #320894) * UpdateManager/Core/MetaRelease.py: - do not crash on disk full (LP: #321872) * DistUpgrade/DistUpgradeController.py: - when commenting out third party repositories add a comment why they were disabled and update them to the current dist to make re-enabling easier * DistUpgrade/DistUpgradeQuirks.py: - run dpkg --forget-old-unvail after the upgrade finished - add "PostCleanup" hook * DistUpgrade/cdromupgrade: - fixed typo (LP: #312184) * add "--no-focus-on-map option to bring update-manager up in the background (UX team) * change default text and add /apps/update-manager/first_run gconf key for the first run welcome message (UX team) * UpdateManager/ChangelogViewer.py: - support "LP: #nr:" linking in changelog entries (LP: #274737) [ Jonathan Riddell ] * DistUpgrade/DistUpgrade.cfg - remove guidance-power-manager on kubuntu-desktop upgrade [ Andy Whitcroft ] * DistUpgrade/cdromupgrade - move to using dists/$CODENAME to locate the installer eliminating any dependance on symlinks in the image. This allows usb-creator based images to be used unmodified. (LP: #326856) -- Michael Vogt Mon, 09 Feb 2009 13:48:01 +0100 update-manager (1:0.97) jaunty; urgency=low * UpdateManager/Core/MetaRelease.py: - remove debug message (LP: #310046) * UpdateManager/Common/utils.py: - when initializing the proxy configuration, do in this order: * check apt setting * check synaptic setting * check users gconf * check http_proxy environment (LP: #24250) * UpdateManager/Core/DistUpgradeFetcherCore.py: - ensure correct error message if downloading failed (LP: #113658) - when fetching from mirrors, add fallback if the mirror is too loaded to cope - improve logic that detects what mirror is in use by sources.list inspection (LP: #107983) * DistUpgrade/DistUpgradeMain.py, dist-upgrade.py: - re-factor and make code more modular - do not overwrite existing log files on upgrade (LP: #111819) * reorganize the imports and get rid of "Common" submodule and merge that all into "Core" * improve the debug output via the "DEBUG_UPDATE_MANAGER" environment -- Michael Vogt Mon, 26 Jan 2009 17:26:40 +0100 update-manager (1:0.96.4) jaunty; urgency=low * DistUpgrade/DistUpgradeController.py: - do not generate apport report against update-manager if cache.commit() failed. the report is generated against the failing package instead (LP: #311220) - honor RELEASE_UPRADER_ALLOW_THIRD_PARTY environment and do not comment out third party repositories in this case (useful internal repositories, make sure that sudo does not clean this env when you make use of it) * DistUpgrade/DistUpgrade.cfg: - remove powermanagement-interface on upgrades for ubuntu and kubuntu (no longer needed by them) * DistUpgrade/DevelReleaseAnnouncement: - include a different release announcement for the development releases * pre-build.sh: - fix version parsing -- Michael Vogt Wed, 21 Jan 2009 22:12:06 +0100 update-manager (1:0.96.3) jaunty; urgency=low * DistUpgrade/DistUpgradeController.py: - when syncing inconsitent components, only sync those we know about (LP: #312092) * tests/test_sources_list.py: - add regression test for #312092 -- Michael Vogt Thu, 15 Jan 2009 14:14:01 +0100 update-manager (1:0.96.2) jaunty; urgency=low * AutoUpgradeTester/UpgradeTestBackendQemu.py: - add "NonInteractive","NoVirtio" switch - enable virtio in the kvm backend by default * AutoUpgradeTester/profile/server/DistUpgrade.cfg: - updated for intrepid->jaunty - add missing kernel removal section * DistUpgrade/DistUpgrade.cfg: - update KernelRemoval section for intrepid->jaunty * DistUpgrade/DistUpgradeApport.py, README: - add new RELEASE_UPRADER_NO_APPORT environement that can be used to force the upgrader to not run apport on pkg failures * DistUpgrade/DistUpgradeViewNonInteractive.py: - use RELEASE_UPRADER_NO_APPORT in the non-interactive upgrade tests * AutoUpgradeTester/profile/ubuntu/DistUpgrade.cfg: - updated for intrepid->jaunty * DistUpgrade/DistUpgrade.cfg: - enable DistUpgrade/xorg_fix_proprietary.py to transition users from proprietary drivers to free drivers if the proprietary driver is no longer available after the upgrade -- Michael Vogt Tue, 13 Jan 2009 20:56:36 +0100 update-manager (1:0.96.1) jaunty; urgency=low * DistUpgrade/DistUpgradeController.py: - deal better with upgrades from EOL releases by testing if the new release is on the country mirror or archive.ubuntu.com or still on old-releases.ubuntu.com (LP: #264181) * debian/control: - disable the auto-upgrader-tester package, its not quite ready yet -- Michael Vogt Tue, 13 Jan 2009 14:52:18 +0100 update-manager (1:0.96) jaunty; urgency=low * UpdateManager/Core/MetaRelease.py: - deal with full disks better when downloading the meta-release information (LP: #98666) * DistUpgrade/DistUpgradeView.py: - make the FuzzyTimeToStr() function not display minutes when the total time is > 3h (LP: #144455) * build update-manager-text package with text/newt based update-manager frontend (update-manager-text) * DistUpgrade/DistUpgradeQuirks.py: - check if both grub and lilo are installed and remove the one that is not used (LP: #314004) * po/POTFILES.in, po/POTFILES.skip: - updated * po/update-manager.pot: - refreshed -- Michael Vogt Mon, 12 Jan 2009 14:12:27 +0100 update-manager (1:0.95.2) jaunty; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - check the support of fglrx against the current PCI card (LP: #284408) * DistUpgrade/xorg_fix_intrepid.py: - do not rewrite multiseat configs (LP: #292774) * UpdateManager/Common/MyCache.py, UpdateManager/Common/UpdateList.py: - move the cache,updatelist implementation out into its own file * fix free space check on regular update-manager invocations (LP: #105113) * debian/rules - remove the arch-build target * DistUpgrade/DistUpgradeController.py: - improvements to the sources.list rewriting, better tests - when rewriting sources.list check for inconsistencies between what components are enabled in intrepid vs intrepid-updates and intrepid-security and automatically enable missing ones for intrepid-updates and intrepid-security - new test if the upgrade is run from a remote login (LP: #301787) -- Michael Vogt Mon, 15 Dec 2008 10:39:27 +0100 update-manager (1:0.95.1) jaunty; urgency=low * DistUpgrade/DistUpgrade.glade, DistUpgrade/window_main.ui: - show 9.04 upgrade target * debian/rules: - calculate demotions based on intrepid->jaunty * DistUpgrade/DistUpgradeCache.py: - when the dist-upgrade calculation fails, show the reason why in the error dialog (LP: #281286) - when a meta package can not be upgraded, show a proper error message with the package in question * DistUpgrade/DistUpgradeQuirks.py: - abort upgrade from hardy if evms is used in /proc/mounts evms got removed from the archive in intrepid (LP: #292179) - do not add "relatime" if "noatime" is already given (thanks to Ken Geis) * DistUpgrade/removal_blacklist.cfg: - remove overly broad postgresql regexp * DistUpgrade/DistUpgradeCache.py: - do not limit the removal blacklist to downloadable packages, this limits it too much * check-new-release: - install check for new releases into update-motd.d/daily -- Michael Vogt Tue, 11 Nov 2008 11:22:41 +0100 update-manager (1:0.95) jaunty; urgency=low * updated for jaunty -- Michael Vogt Wed, 05 Nov 2008 09:56:51 +0100 update-manager (1:0.93.34) intrepid-proposed; urgency=low * UpdateManager/UpdateManager.py: - simply the changelog download logic and make changelog fetching work properly again (now that the server side got improved as well) LP: #40058 -- Michael Vogt Tue, 04 Nov 2008 18:53:54 +0100 update-manager (1:0.93.33) intrepid; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeQuirks.py: - add detection for cards no longer supported via fglrx and ensure transition to "ati" (LP: #284408) * DistUpgrade/DistUpgradeCache.py: - check if the package is actually downloadable in the removal blacklist checking (LP: #293486) [ Jonathan Riddell ] * DistUpgrade/DistUpgradeViewKDE.py: - handle translations of non-ascii string on Cancel button correctly (LP: #291115) -- Michael Vogt Tue, 04 Nov 2008 14:58:10 +0100 update-manager (1:0.93.32) intrepid; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - when transitioning from kubuntu-kde4-desktop to kubuntu-desktop consider key dependencies as well even if kubuntu-kde4-desktop is no longer installed (LP: #277285) -- Michael Vogt Fri, 24 Oct 2008 17:54:50 +0200 update-manager (1:0.93.31) intrepid; urgency=low * DistUpgrade/DistUpgrade.cfg: - remove goubuntu-desktop from metapackages, we do no longer build it (LP: #283712) * DistUpgrade/DistUpgradeCache.py: - never remove packages in the "KeepInstalled" section - keep the GUI alive when calculating the packages to cleanup * DistUpgrade/DistUpgradeQuirks.py: - mark "language-pack-$lang" as manual installed to workaround changes in "language-support-$lang" (LP: #287551) * po/: - updated to the latest translations.launchpad.net version -- Michael Vogt Fri, 24 Oct 2008 15:02:03 +0200 update-manager (1:0.93.30) intrepid; urgency=low * DistUpgrade/DistUpgradeViewText.py: - ignore "default" argument handling in askYesNoQuestion to fix incorrect prompt for cdrom question * DistUpgrade/DistUpgradeQuirks.py: - ensure "landscape-common" is not marked auto-install (LP: #288051) * DistUpgrade/ReleaseAnnouncement: - updated for final release * DistUpgrade/DistUpgradeAptCdrom.py: - ignore "dist-upgrader" dirs when scanning for packages (LP: #288169) -- Michael Vogt Thu, 23 Oct 2008 16:53:43 +0200 update-manager (1:0.93.29) intrepid; urgency=low * fix incorrect case and typo in cpuHasSSESupport(), thanks to Steve Langasek -- Michael Vogt Mon, 20 Oct 2008 19:17:22 +0200 update-manager (1:0.93.28) intrepid; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - do not install nvidia-glx-{173,177} on systems without the "sse" cpu extension (LP: #272498) - fix case-sensitive parsing when checking for the xorg driver * DistUpgrade/DistUpgrade.cfg: - make sure that libflashsupport gets removed on upgrade (LP: #285657) * DistUpgrade/ReleaseAnnouncement: - updated for the release candidate -- Michael Vogt Mon, 20 Oct 2008 16:55:40 +0200 update-manager (1:0.93.27) intrepid; urgency=low * DistUpgrade/xorg_fix_intrepid.py: - only update the InputDevices if xserver-xorg-core actually is version 2:1.5.0 or higher - make section checks case-insensitive (thanks to Alberto Milone) * DistUpgrade/DistUpgrade.glade: - remove has_focus default in the conffiel dialog -- Michael Vogt Mon, 20 Oct 2008 09:47:57 +0200 update-manager (1:0.93.26) intrepid; urgency=low * DistUpgrade/DistUpgradeController.py: - workaround kde tmpfile permissions (LP: #277431) * UpdateManager/Common/utils.py: - do not crash if gconfd is not availabe/unusable (LP: #281248) * DistUpgrade/DistUpgradeViewKDE.py: - do not use "kde" frontend during the upgrade, it crashes because of the kde3->kde4 transition if run at the wrong time (LP: #283942) * DistUpgrade/DistUpgradeView.py: - ignore SIGPIPE when forking the Dpkg::Pre-Install scripts to fix error with etckeeper (LP: #283642) * po/ - updated from rosetta -- Michael Vogt Wed, 15 Oct 2008 22:03:05 +0200 update-manager (1:0.93.25) intrepid; urgency=low [ Jonathan Riddell ] * DistUpgrade/DistUpgradeQuirks.py: - Fix crash from not having gettext imported [ Michael Vogt ] * revert the fglrx->ati transition (LP: #247376) -- Michael Vogt Wed, 15 Oct 2008 10:03:04 +0200 update-manager (1:0.93.24) intrepid; urgency=low * DistUpgrade/DistUpgradeController.py: - disable the apt.cron.daily script during the upgrade (LP: #277079) * DistUpgrade/DistUpgradeAptCdrom.py: - work around the problem that the hardy "apt-cdrom add" will fail when no uncompressed Packages files are on the CD (LP: 276349) -- Michael Vogt Tue, 14 Oct 2008 16:30:41 +0200 update-manager (1:0.93.23) intrepid; urgency=low * DistUpgrade/xorg_fix_intrepid.py: - comment out input devices from xorg.conf (handled via hal now). Thanks to Alberto Milone for his help, LP: #247608 -- Michael Vogt Mon, 13 Oct 2008 20:35:06 +0200 update-manager (1:0.93.22) intrepid; urgency=low * DistUpgrade/DistUpgradeQuirks.py: - add rule to force kdelibs5-dev upgrade (LP: #279621), thanks to ScottK * DistUpgrade/DistUpgradeViewGtk.py: - do not hang if a script fails to run (LP: #280236) * DistUpgrade/DistUpgradeController.py: - do not run post-upgrade quirks handler in partial upgrade mode because they only apply to real release upgrades -- Michael Vogt Fri, 10 Oct 2008 16:51:36 +0200 update-manager (1:0.93.21) intrepid; urgency=low * Add useDevelopmentRelease and useProposed to DistUpgradeFetcherKDE.py * Fix call to error() in DistUpgradeFetcherCore.py -- Jonathan Riddell Wed, 08 Oct 2008 14:30:58 +0100 update-manager (1:0.93.20) intrepid; urgency=low * DistUpgrade/DistUpgradeGettext.py: - translated the empty "" into "" (the qt frontend may call this on empty strings in translate_widget) * DistUpgrade/DistUpgradeQuirks.py: - make sure to write a final newline in /etc/fstab when adding the relatime option (LP: #279093) -- Michael Vogt Tue, 07 Oct 2008 10:42:13 +0200 update-manager (1:0.93.19) intrepid; urgency=low * UpdateManager/Core/MetaRelease.py: - fix crash in CDROM upgrade (LP: #276363) * DistUpgrade/DistUpgradeQuirks.py: - fix crash in nvidia handling (thanks to Spencer Janssen) -- Michael Vogt Thu, 02 Oct 2008 11:26:30 +0200 update-manager (1:0.93.18) intrepid; urgency=low * DistUpgrade/DistUpgrade.cfg: - add KeepInstalled rule for adept to help the dependency resolver (thanks to MvG) - add kubuntu-kde4-desktop metapackage so that the meta package detection works for kde4 (LP: #274706) * DistUpgrade/DistUpgradeCache.py: - fix log for kept packages - make the log of the obsolete removal less verbose - fix kubuntu-kde4-desktop upgrades (LP: #274706) * DistUpgrade/ReleaseAnnouncement: - udpated for BETA * DistUpgrade/DistUpgradeViewGtk.py: - fix typo and unfuzzy translations. Thanks to Brian Murray for the patch, LP: #272726) * UpdateManager/UpdateManager.py: - add gconf key /apps/update-manager/show_versions to show version information (disabled by default, LP: #189406) * DistUpgrade/DistUpgradeQuirks.py: - add intrepidPreUpgrade() handler that detects fglrx in xorg.conf and warns about it before the upgrade - consolidate the various quirks into this file - add check for the nvidia-glx-71 and nvidia-glx-96 drivers and warn if they will be required * DistUpgrade/xorg_fix_intrepid.py: - add script that is run after the upgrade that ensures that the xorg.conf file gets transitioned to a free driver if the proprietary one does not work for intrepid - transition from fglrx and nvidia-glx-{71,96} to the free driver (LP: #274303) -- Michael Vogt Fri, 26 Sep 2008 14:16:56 +0200 update-manager (1:0.93.17) intrepid; urgency=low [ Michael Vogt ] * UpdateManager/UpdateManager.py: - fix typo (thanks to "Richie", LP: #271139) * DistUpgrade/DistUpgradeCache.py: - remove the landscape-client stub package on desktop upgrades [ Jonathan Riddell ] * DistUpgrade/DistUpgradeViewKDE.py fix crash when translating dialogue -- Jonathan Riddell Fri, 19 Sep 2008 00:24:58 +0100 update-manager (1:0.93.16) intrepid; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeController.py: - automatically add "relatime" to the mount options of ext2/ext3 * UpdateManager/Core/MetaRelease.py: - fix typo (thanks to Daniel Garcia) * DistUpgrade/DistUpgradeCache.py: - fix the removal of obsolete kernel packages when the old kernel abi package gets removed from -update and/or -security * UpdateManager/UpdateManager.py: - be more robust against server errors when fetching the changelogs (LP: #262982) * debian/control: - update the version dependency for python-apt, we need stuff from 0.7.5 (LP: #257781) * DistUpgrade/DistUpgradeView.py:# - make FuzzyTimeToStr() properly deal with plural forms (LP: #267234) [ Brian Murray ] * UpdateManager/UpdateManager.py: - preserve epoch in package version for changelogs at launchpad.net (LP: #270527) -- Michael Vogt Tue, 16 Sep 2008 14:15:18 +0200 update-manager (1:0.93.15) intrepid; urgency=low * UpdateManager/Core/DistUpgradeFetcherCore.py: - fix incorrect import -- Michael Vogt Mon, 15 Sep 2008 14:41:41 +0200 update-manager (1:0.93.14) intrepid; urgency=low * po/*.po: - updated to the latest launchpad translations * DistUpgrade/DistUpgradeGettext.py: - add more robust version of gettext() that does not crash if incorrect number arguments is passed (LP: #269379) -- Michael Vogt Mon, 15 Sep 2008 13:07:54 +0200 update-manager (1:0.93.13) intrepid; urgency=low * DistUpgrade/DistUpgrade.cfg: - better KeyDependencies for ubuntu-desktop to make the detection more robust -- Michael Vogt Fri, 12 Sep 2008 21:56:11 +0200 update-manager (1:0.93.12) intrepid; urgency=low * DistUpgrade: load DistUpgradeViewKDE not KDE4 * DistUpgradeViewKDE: Fix various translations * DistUpgradeViewKDE: Add window icon -- Jonathan Riddell Fri, 12 Sep 2008 13:17:52 +0100 update-manager (1:0.93.11) intrepid; urgency=low [ Jonathan Riddell ] * DistUpgradeViewKDE: don't use setHeaderHidden, doesn't exist in Qt 4.3 * DistUpgradeViewKDE: Disable terminal button until terminal exists [ Michael Vogt ] * rename DistUpgradeViewKDE4.py to DistUpgradeViewKDE.py because adept runs this frontend explicitely (instead of letting dist-upgrade.py decide) -- Michael Vogt Thu, 11 Sep 2008 12:42:10 +0200 update-manager (1:0.93.10) intrepid; urgency=low [ Jonathan Riddell ] * Add missing debian/update-manager-kde.install [ Michael Vogt ] * transition landscape.canonical.com to the main repository (LP: #268551) -- Michael Vogt Wed, 10 Sep 2008 15:55:47 +0200 update-manager (1:0.93.9) intrepid; urgency=low * do not build depend on nvidia-common for lpia -- Michael Vogt Tue, 09 Sep 2008 13:56:20 +0200 update-manager (1:0.93.8) intrepid; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeCache.py: - transition "kubuntu-desktop-kde4" to "kubuntu-desktop" (thanks to Jonathan Riddell) * DistUpgrade/DistUpgradeCache.py, DistUpgrade/DistUpgradeController.py: - fixes in the "AllowUnauthenticated" code (thanks to Adam Conrad) * debian/update-manager-hildon.install: - install only selected bits from Comon/ [ Emmet Hikory ] * Removed check to set automatic notifications in update-manager-hildon -- Michael Vogt Fri, 05 Sep 2008 19:41:04 +0200 update-manager (1:0.93.7) intrepid; urgency=low * Move Common/utils.py to update-manager-core * Fix build when rebuilding with -nc * UpdateManager/DistUpgradeFetcherKDE.py shouldn't import ReleaseNotesViewer * DistUpgrade/cdromupgrade should be intrepid -- Jonathan Riddell Thu, 04 Sep 2008 23:04:42 +0100 update-manager (1:0.93.6) intrepid; urgency=low * Make DistUpgradeFetcherKDE.py work as a module not just a standalone script -- Jonathan Riddell Thu, 28 Aug 2008 13:32:25 +0100 update-manager (1:0.93.5) intrepid; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeCache.py: - install new recommends on the hardy->intrepid upgrade (unless overwriten with the RELEASE_UPGRADE_NO_RECOMMENDS environment) * AutoUpgradeTester/UpgradeTestBackendQemu.py: - run ssh in the auto tester with "-t" * UpdateManager/UpdateManager.py: - fix plural forms (thanks to Bruce Cowan, LP: #189921) * DistUpgrade/DistUpgradeViewGtk.py: - show kB/sec (LP: #257778) [ Jonathan Riddell ] * Add KDE upgrade checking tools for use by Adept -- Jonathan Riddell Wed, 27 Aug 2008 15:19:01 +0100 update-manager (1:0.93.4) intrepid; urgency=low * DistUpgrade/removal_blacklist.cfg: - add openssh-blacklist-extra and openssh-extra * UpdateManager/UpdateManager.py: - do not crash if lsb_release can not be run (LP: #255319) * DistUpgrade/DistUpgradeApport.py: - do not generate apport reports against a package if the error indicates that its a full disk, this is a bug in update-manager than (failed to do the full disk checking) * DistUpgrade/DistUpgrade.cfg: - force obsoletion of cups-pdf on ubuntu-desktop, kubuntu-desktop and xubuntu-desktop * DistUpgrade/DistUpgradeController.py: - increase KERNEL_INITRD_SIZE a bit -- Michael Vogt Fri, 15 Aug 2008 19:40:46 +0200 update-manager (1:0.93.3) intrepid; urgency=low * fix ftbfs on powerpc -- Michael Vogt Tue, 05 Aug 2008 21:20:59 +0200 update-manager (1:0.93.2) intrepid; urgency=low * DistUpgrade/DistUpgradeCache.py: - work around problem with packages with no priority (LP: #253255) * DistUpgrade/DistUpgradeViewGtk.py: - detect ctrl-c presses in the terminal and warn the user that it will kill the upgrade (LP: #90866) * DistUpgrade/DistUpgrade.cfg: - when being run by the sandbox-upgrader, do not reboot automatically after the upgrade finished * DistUpgrade/DistUpgradeController.py: - when a upgrade is cancelt due to network errors, inform that the downloaded files will be kept (LP: #242111) -- Michael Vogt Tue, 05 Aug 2008 20:37:52 +0200 update-manager (1:0.93.1) intrepid; urgency=low * UpdateManager/UpdateManager.py: - make the init_proxy stuff look for the apt.conf proxy as well (thanks to vega--) * do-release-upgrade: - unify proxy configuration between gtk and cli UI * fix FBTFS by removing the kdepyuic calls during build (no longer needed in qt4) -- Michael Vogt Wed, 30 Jul 2008 11:29:00 +0200 update-manager (1:0.93) intrepid; urgency=low [ Michael Vogt ] * UpdateManager/UpdateManager.py: - fix typo (LP: #252195) * DistUpgrade/DistUpgradeController.py: - fix crash in cleanup code [ Jonathan Riddell ] * port the kde frontend to qt4 -- Michael Vogt Wed, 30 Jul 2008 09:01:45 +0200 update-manager (1:0.92) intrepid; urgency=low * DistUpgrade/DistUpgradeCache.py: - use nvidia-common to detect what driver package is needed and install it if the user had a previous nvidia driver (thanks to Alberto Milone) * improvements to the NonInteractive frontend -- Michael Vogt Fri, 25 Jul 2008 09:26:47 +0200 update-manager (1:0.91.10) intrepid; urgency=low * UpdateManager/Core/DistUpgradeFetcherCore.py: - improved error handling for people who run /tmp with noexec (LP: #219518) * DistUpgrade/ReleaseAnnouncement: - fixes in the announcement text (thanks to Brian Murray, LP: #250693) * DistUpgrade/removal_blacklist.cfg: - remove nvidia-glx from the removal blacklist, the naming schema changed in intrepid and the old packages need to go way (LP: #249329) -- Michael Vogt Tue, 22 Jul 2008 12:04:34 +0200 update-manager (1:0.91.9) intrepid; urgency=low * UpdateManager/Core/MetaRelease.py: - make the default meta-release location easily changable via /etc/update-manager/meta-release * data/meta-release: - make the default configuration easier configurable * data/release-upgrades: - default to "normal" upgrades for intrepid -- Michael Vogt Wed, 16 Jul 2008 13:30:28 +0100 update-manager (1:0.91.8) intrepid; urgency=low * data/glade/UpdateManager.glade: - make the shortcut key in the auto-updates dialog consistent with the main one (LP: 246321) * DistUpgrade/ReleaseAnnouncement: - updated for intrepid (LP: #246538) -- Michael Vogt Thu, 10 Jul 2008 14:40:14 +0300 update-manager (1:0.91.7) intrepid; urgency=low * DistUpgrade/DistUpgradeController.py: - add logging for kept packages - make the "use-network" question on cdrom upgrades more clear (LP: #229508) - do not just exit on upgrades with errors but show a proper finished message * DistUpgrade/DistUpgradeApport.py: - only run apport-{gtk,qt} if DISPLAY is set * DistUpgrade/DistUpgradeView{Gtk,KDE}.py: - do not show a error dialog for folloup errors from earlier errors (thanks to Alexander Sack for the report) -- Michael Vogt Wed, 02 Jul 2008 13:10:56 +0200 update-manager (1:0.91.6) intrepid; urgency=low * Make "--mode={server,desktop}" obsolete by adding automatic detection for this. This eliminates the bugreports where people run the text do-release-upgrade client that defaults to server mode * UpdateManager/UpdateManager.py: - improve the changelog version number scanner - if no information is available yet, display a launchpad link for interested people (not fetching from there automatically to not hammer LP too much) -- Michael Vogt Thu, 26 Jun 2008 17:33:30 +0200 update-manager (1:0.91.5) intrepid; urgency=low * DistUpgrade/DistUpgradeController.py: - support "old-releases.ubuntu.com" as a valid mirror and auto transition from that to the regular archive (LP: #235527) - add extra paraonoia when adding a missing admin group (thanks to LaMont Jones) LP: #241723 * UpdateManager/ChangelogViewer.py: - support "exo-open" (xfce) too (LP: #240473) * DistUpgrade/mirrors.cfg: - remove ftp.caliu.info (LP: #231966) * DistUpgrade/DistUpgradeController.py: - fix typo and unfuzzy translations (LP: #220505) * UpdateManager/UpdateManager.py, data/update-manager.schemas.in: - provide a gconf key /apps/update-manager/autoclose_install_window to make it possible to prevent automatic closing of the installation window (LP: #183209) * DistUpgrade/DistUpgrade.cfg.dapper: - remove ports.ubuntu.com from powerpc, it is not available on ports.ubuntu.com but on archive.ubuntu.com (LP: #241729) -- Michael Vogt Fri, 20 Jun 2008 20:02:50 +0200 update-manager (1:0.91.4) intrepid; urgency=low * update-manager: - string fixes (LP: #230865) * UpdateManager/UpdateManager.py: - support selecting/dselecting entire update categories by double clicking on the list header -- Michael Vogt Mon, 16 Jun 2008 12:22:35 +0200 update-manager (1:0.91.3) intrepid; urgency=low * DistUpgrade/mirrors.cfg: - remove ftp.caliu.info (LP: #231966) * UpdateManager/UpdateManager.py, data/update-manager.schemas.in: - provide a gconf key /apps/update-manager/autoclose_install_window to make it possible to prevent automatic closing of the installation window (LP: #183209) -- Michael Vogt Tue, 03 Jun 2008 12:25:11 +0200 update-manager (1:0.91.2) intrepid; urgency=low [ Brian Murray ] * String fix for "a unresolvable problem" (LP: #196269) * String fix for "A upgrade to" (LP: #196229) * String fix for "is in a inconsistent state" (LP: #197015) -- Michael Vogt Fri, 30 May 2008 17:19:29 +0200 update-manager (1:0.91.1) intrepid; urgency=low * debian/control: - add missing python-vte dependency to update-manager-hildon -- Michael Vogt Fri, 30 May 2008 11:47:18 +0200 update-manager (1:0.91) intrepid; urgency=low * DistUpgrade/DistUpgradeCache.py: - fix bug in withNetwork value propergation (LP: #227197) * DistUpgrade/DistUpgradeController.py: - fix bug with sources.list rewriting when mixed deb http://unknown-miror\ndeb-src http://known-mirror entries are used (#221730) * UpdateManager/Common/utils.py: - fix inhibit path (LP: #140754), thanks to Andreas Dalsgaard * DistUpgrade/DistUpgradeViewText.py: - use sensible-pager first and fallback to "more" if that is not available (thanks to Mithrandir) * DistUpgradeView{Gtk,KDE,Text}.py: - only overwrite the DEBIAN_FRONTEND if it is not set already (thanks to Guy Sheffer) * UpdateManagerHildon/UpdateManagerHildon.py: - add hildon support (thanks to Tollef Fog Heen and Emmet Hikory) -- Michael Vogt Wed, 21 May 2008 18:01:07 +0200 update-manager (1:0.90.0) intrepid; urgency=low * merged branches: - ~alefteris/update-manager/alefteris (thanks!) * UpdateManager/Core/DistUpgradeFetcherCore.py: - do not crash if the tarfile can not be read (LP: #203504) * fix a bunch of spelling mistakes (LP: #213040), thanks to Peter Cordes * AutoUpgradeTester/automatic-upgrade-testing: - add "--additional-pkgs" argument that can be used to install the given packages (seperated with ",") into the VM before the upgrade is performed * DistUpgrade/DistUpgradeConfigParser.py: - write error to log in getListFromFile() if file is not found * DistUpgrade/DistUpgradeCache.py: - fix plural form text (LP: #226695) * update-manager-core.install, update-manager.install: - move the DistUpgrade part into update-manager-core * DistUpgrade/DistUpgradeController.py, update-manager, dist-upgrade.py: - move partialUpgrade() functionality into the controller and expose it with --partial in dist-upgrade.py * DistUpgrade/DistUpgrade.cfg: - prepare for hardy->intrepid upgrades -- Michael Vogt Tue, 06 May 2008 10:02:16 +0200 update-manager (1:0.87.27) hardy-proposed; urgency=low * DistUpgrade/DistUpgradeCache.py: - make networkless upgrades more robust (LP: #227197) * po/ko.po: - fix translation for y/n prompt so that korean users can actually continue (LP: #223419) * DistUpgrade/DistUpgradeViewGtk.py: - work around hang in svg loader (LP: #186465) -- Michael Vogt Fri, 09 May 2008 13:47:12 +0200 update-manager (1:0.87.26) hardy-proposed; urgency=low * DistUpgrade/DistUpgradeController.py: - run in server mode on a server CD (LP: #222895) - deal with the landscape.canonical.com repository (LP: #224308) * DistUpgrade/DistUpradeCache.py: - make the code more robust against unavailable package records (LP: #223619) * DistUpgrade/cdromupgrade: - allow passing of arguments (like --mode=server) to better support server upgrades with the dvd (LP: #222895) * po/uk.po: - fix translation so that it gets the expected number of arguments (LP: #224294) -- Michael Vogt Wed, 30 Apr 2008 22:15:44 +0200 update-manager (1:0.87.25) hardy-proposed; urgency=low * DistUpgrade/DistUpgradeApport.py: - fix typo in log dir (LP: #223743) * DistUpgrade/DistUpgradeController.py: - if the "Crux" theme is used on dapper during the upgrade, switch to "Human" because Crux is known to crash (LP: #69124) * DistUpgrade/DistUpgradeCache.py: - do not crash if a meta package is not available in the cache (e.g. xubuntu-desktop that moved from main to universe) * DistUpgrade/DistUpgrade.cfg.dapper: - fix incorrect xubuntu-desktop detection * DistUpgrade/DistUpgradeView.py: - make sure that self.confirmChangesMessage is always initialized (LP: #221023) * DistUpgrade/mirrors.cfg: - added missing russion mirror (LP: #221730) - fixed incorrect mirror lines * DistUpgrade/DistUpgrade.cfg: - better detection to missing dependencies to fix ubuntustudio-desktop upgrade problem (LP: #219659) * util/demotions.py: - do not consider powerpc anymore, its not available on archive.ubuntu.com anymore * debian/rules: - do not run tests in arch-build target (only useful when there is a development release available to upgrade to) -- Michael Vogt Tue, 29 Apr 2008 12:49:16 +0200 update-manager (1:0.87.24) hardy; urgency=low * DistUpgrade/ReleaseAnnouncement: - modified https url to http so it is clickable (LP: #220386) * po/en_GB.po: - unfuzzy typo correction -- Brian Murray Mon, 21 Apr 2008 14:58:17 -0700 update-manager (1:0.87.23) hardy; urgency=low * DistUpgrade/DistUpgrade.cfg.dapper: - Add 'bash' to BaseMetaPkgs. This is needed because ubuntu-meta was uploaded into dapper-updates and that means that we the detection of a missing main archive in sources.list will not work correctly (LP: #220078) * DistUpgrade/ReleaseAnnouncement: - updated in preparation for the final release -- Michael Vogt Mon, 21 Apr 2008 18:07:31 +0200 update-manager (1:0.87.22) hardy; urgency=low * UpdateManager/UpdateManager.py: - only set http proxy if hostname/port is valid (LP: #219227) * DistUpgrade/DistUpgradeController.py: - some more debug logging - fix missing cache open - smaller default network time out - run the initial cache.update() on the unmodified sources.list with only a single retry because it may contain sources that do not respond -- Michael Vogt Sat, 19 Apr 2008 00:18:25 +0200 update-manager (1:0.87.21) hardy; urgency=low * DistUpgrade/DistUpgradeController.py: - transition sparc users to ports.ubuntu.com on upgrade * DistUpgrade/DistUpgrade.cfg.dapper: - point to ports.ubuntu.com when fetching release-upgrader-{apt,dpkg} on dapper->hardy upgrades -- Michael Vogt Thu, 17 Apr 2008 20:24:19 +0200 update-manager (1:0.87.20) hardy; urgency=low * DistUpgrade/DistUpgradeView.py: - fix incorrect _() call (thanks to Timo Jyrinki) * DistUpgrade/mirrors.cfg: - fix ports.ubuntu.com mirror URI (LP: #215346) * run dpkg with --force-overwrite by default on the server too to make the upgrade more robust. this can be overwriten with the RELEASE_UPGRADE_NO_FORCE_OVERWRITE environment -- Michael Vogt Wed, 16 Apr 2008 21:37:49 +0200 update-manager (1:0.87.19) hardy; urgency=low * DistUpgrade/DistUpgradeCache.py: - only try to upgrade held-back packages in the edgyQuirks handler if they are actually upgradable (thanks to Lamont Jones and James Troup) * po/fi.po - unfuzzy string (thanks to Timo Jyrinki) -- Michael Vogt Wed, 16 Apr 2008 20:51:05 +0200 update-manager (1:0.87.18) hardy; urgency=low * DistUpgrade/DistUpgradeCache.py: - remove mail-notificaton, gnome-translate from hardy quirks list (LP: #215690) * UpdateManager/DistUpgradeFetcher.py: - use sensible gksu prompt when asking for release upgrade (LP: #161888) -- Michael Vogt Mon, 14 Apr 2008 21:44:43 +0200 update-manager (1:0.87.17) hardy; urgency=low * DistUpgrade/DistUpgradeController.py: - when run from a CDROM upgrade on dapper, ensure to fetch the right files on tryUpdateSelf() (#215673) - ensure that language-support-$lang packages get upgraded if they are installed * UpdateManager/Core/MetaRelease.py: - support forceLTS option (#215673) * DistUpgrade/DistUpgradeView.py: - work around gutsy->hardy nvidia-glx uprade problem when libqt-perl is used (#205079) * DistUpgrade/ReleaseAnnouncement: - updated for RC -- Michael Vogt Fri, 11 Apr 2008 22:34:06 +0200 update-manager (1:0.87.16) hardy; urgency=low * DistUpgrade/DistUpgradeViewText.py: - show prompt again after showing details - use pager for long change entries (thanks to James Troup) - fix text wrap to not break lines on "-" (e.g. in package names) * DistUpgradeController.py: - do not leave 20archive.save files around - make the code that asks about starting a new ssh daemon (if run under ssh) more robust - set status to "Calculating changes" again after displaying demoted packages - improve logging if prerequisites download fails * DistUpgrade/DistUpgradeCache.py: - improve the evms detection/removal (thanks to Lamont Jones) * DistUpgrade/DistUpgrade.cfg.dapper: - add "lvm2" to the KeepInstalledPkgs (LP: #211488) - sync RemoveObsoletes, ForcedObsoletes, KeepInstalledSections with DistUpgrade.cfg - text wrap questions too * po/*.po: - updated translations (LP: #210699) -- Michael Vogt Fri, 04 Apr 2008 18:54:13 +0200 update-manager (1:0.87.15) hardy; urgency=low * DistUpgrade/DistUpgradeCache.py: - fix fd leak * DistUpgrade/DistUpgradeController.py: - abort when debsig-verify is installed, it makes any upgrade fail (LP: #208957) - run migrate-fstab-to-uuid.sh as PostInstallScript (LP: #209347) - set RELEASE_UPGRADE_MODE={server,desktop} environment * DistUpgrade/DistUpgradeViewKDE.py: - fix crash/race in terminal key press handler (LP: #205445) - fix encoding issue (LP: #208390) - call it 8.04 LTS (LP: #204659) * DistUpgrade/DistUpgradeViewGtk.py: - fix incorrect pango attribute assignment (LP: #207742) - call it 8.04 LTS (LP: #204659) * UpdateManager/UpdateManager.py: - do not crash if gconf database is not writable (LP: #208687) - do not crash on BadStatusLine exceptions (LP: #204075) * po/*.po: - make update-po -- Michael Vogt Tue, 01 Apr 2008 22:30:42 +0200 update-manager (1:0.87.14) hardy; urgency=low * DistUpgrade/ReleaseAnnouncement: - Fix typo * DistUpgrade/DistUpgradeViewKDE.py: - Add show/hide to upgrade package list * DistUpgrade/window_main.ui: - Sync strings with GTK frontend to pick up translations - Update icon to Oxygen -- Jonathan Riddell Fri, 21 Mar 2008 12:04:51 +0000 update-manager (1:0.87.13) hardy; urgency=low * DistUpgrade/DistUpgradeController.py: - only ask once about the sshd (LP: #156625) * DistUpgrade/DistUpgradeCache.py: - add hardyQuirks handler to deal with a gnome-translate upgrade issues (thanks to Daniel Holbach) - fix naming of the quirksHandlers * DistUpgrade/DistUpgrade.cfg: - add "ksplash-engine-moodin" to ForcedObsoletes * DistUpgrade/removal_blacklist.cfg: - add "^postgresql-.*"to the removal blacklist * DistUpgrade/DistUpgradeViewText.py: - flush() output in updateStatus() - show the demoted packages in a more readable manner - use textwrap when displaying text * DistUpgrade/DistUpgradeCache.py: - fix bug that prevented proper error message on upgrade calculation error in the text frontend - fix text download progress * DistUpgrade/ReleaseAnnouncement - updated for BETA -- Michael Vogt Thu, 20 Mar 2008 16:06:56 +0100 update-manager (1:0.87.12) hardy; urgency=low * DistUpgrade/DistUpgradeViewKDE.py: - fix display of non-ascii chars - improve editing capabilities of the terminal (should be fine with the readline fontend now) -- Michael Vogt Tue, 11 Mar 2008 22:01:36 +0100 update-manager (1:0.87.11) hardy; urgency=low * DistUpgrade/DistUpgradeControler.py: - when upgrading without network and with a empty sources.list, do not ask to add network sources * DistUpgrade/DistUpgradeCache.py: - do not crash if lookupRecords() failed (LP: #199482) * UpdateManager/UpdateManager.py: - use absolute path when calling gksu (LP: #194166), Thanks to Mihai Varzaru and James Westby * data/update-manager.desktop.in: - improve consistency with the rest of gnome (LP: #150205) * DistUpgrade/DistUpgradeViewKDE.py: - do no longer use konsole during upgrades but use a dumb terminal instead that only supports basic editing - log terminal activity to /var/log/dist-upgrade/term.log -- Michael Vogt Tue, 11 Mar 2008 09:40:49 +0100 update-manager (1:0.87.10) hardy; urgency=low * remove code duplication in the confirmChanges() code and make the warning more readable (LP: #188724) * DistUpgrade/DistUpgradeController.py: - when adding prerequists, ensure that no duplicated lines are added, plus add test for this (thanks to Kolbjørn Barmen) - honor APT::Get::AllowUnauthenticated (thanks to Kolbjørn Barmen) * DistUpgrade/cdromupgrade: - updated to hardy - fix bug in path handling (LP: #155833) * DistUpgrade/prerequists-sources.list: - remove cruft -- Michael Vogt Fri, 29 Feb 2008 23:23:38 +0100 update-manager (1:0.87.9) hardy; urgency=low * rebuild due to python-central issues -- Michael Vogt Tue, 19 Feb 2008 18:11:08 +0100 update-manager (1:0.87.8) hardy; urgency=low * deal with packages in broken reqreinst state by offering to remove them (LP: #1922578) * UpdateManager/UpdateManager.py: - display a meaningful message when no information of the last update can be found (LP: 192328) -- Michael Vogt Mon, 18 Feb 2008 17:08:47 +0100 update-manager (1:0.87.7) hardy; urgency=low [ Michael Vogt ] * UpdateManager/Core/MetaRelease.py: - honor DEBUG_UPDATE_MANAGER environment and give some debug output on the meta-release fetching/parsing * UpdateManager/DistUpgradeFetcher.py: - cancel if the ReleaseNotes window is closed via the window close control (thanks to Matthew Paul Thomas) * DistUpgrade/DistUpgradeViewGtk.py: - show update details in smaller font instead of italic * more UI improvements as suggested by Matthew Paul Thomas * DistUpgrade/DistUpgradeControler.py: - enforce KeepInstalledSection rule only when running on a network, otherwise we run into CD upgrade issues - when fetching the prerequists, be more robust in the mirror selection (and add tests for this) * DistUpgrade/DistUpgrade.cfg: - add slocate to the force obsoletes, mlocate replaces it [ Brian Murray ] * Dialog enhancements and typo fixes (LP: 182055) -- Michael Vogt Sat, 16 Feb 2008 00:25:33 +0100 update-manager (1:0.87.6) hardy; urgency=low * DistUpgrade/DistUpgradeCache.py: - fix removal of obsolete packages (regression from 0.87.5) -- Michael Vogt Fri, 08 Feb 2008 15:57:13 +0100 update-manager (1:0.87.5) hardy; urgency=low * UpdateManager/UpdateManager.py: - use /var/lib/apt/periodic/update-success-stamp for the calculation when the last update was performed (LP: #185894) * DistUpgrade/DistUpgradeController.py: - if the upgrade can not be calculated in partial upgrade mode, do not recommend reporting a bug (most likely transient anyway) * DistUpgradeView/DistUpgradeViewText.py: - make the restart required question more clear (LP: #155554) * UpdateManager/Core/DistUpgradeFetcherCore.py: - tidy up output when show authentication message * data/update-manager.8: - man page fixes (LP: #185615) * update-manager: - run gtk.init_check() to catch errors when DISPLAY is not set (pygtk does not do that automatically) -- Michael Vogt Wed, 06 Feb 2008 18:11:45 +0100 update-manager (1:0.87.4) hardy; urgency=low * UpdateManager/UpdateManager.py: - run the partial upgrader with error correction if the dependencies on the system are not ok (it will fix most problems) * DistUpgrade/DistUpgradeController.py, DistUpgradeCache.py: - if dpkg was interrupted, run "dpkg --configure -a" automatically - if the prerequists can not be authenticated, * DistUpgradeView/DistUpgradeView.py: - when calculating the download time in estimatedDownloadTime, use the average download speed so far (if available) -- Michael Vogt Fri, 25 Jan 2008 15:59:53 +0000 update-manager (1:0.87.3) hardy; urgency=low * add ports.ubuntu.com to the valid mirrors (LP: #184663) * add --proposed to the options for do-release-upgrade (LP: #109290) * fix crash in apport report duplicate checking -- Michael Vogt Tue, 22 Jan 2008 15:50:28 +0000 update-manager (1:0.87.2) hardy; urgency=low * DistUpgrade/DistUpgradeApport.py: - better detection for followup errors when a package failed earlier * DistUpgrade/DistUpgradeController.py: - Be more tolerant against errors in the initial apt-get update operation. We disable third party sources on the later sources.list rewrite anyway -- Michael Vogt Wed, 16 Jan 2008 15:06:00 +0100 update-manager (1:0.87.1) hardy; urgency=low * UpdateManager/UpdateManager.py: - fix crash if /var/lib/apt/periodic/update-stamp does not exists (LP: #181390) - fix misleading string when cache is rebuild (LP: #179354) * DistUpgrade/DistUpgradeCache.py: - be more careful with the obsoletes checking and get not confused if the hardy version is older than the gutsy one (LP: #181201) -- Michael Vogt Wed, 09 Jan 2008 09:53:33 +0100 update-manager (1:0.87) hardy; urgency=low * typo fixes (thanks to Brian Murray, LP: #99513, LP: #158175) * fix incorrect textual description (thanks to Brian Murray, LP: #145130) * support release-upgrades from dapper for architectures on ports.ubuntu.com * UpdateManager/UpdateManager.py: - remove the "from $version to $version" from the main list as this is duplicated information from the details tab - wording fixes (thanks to Matthew Paul Thomas) - if the update was successful, automatically close the install window - when no updates are available, display the information when the last apt-get update like operation was performed - if there are broken dependencies on the system, try to fix them on startup * data/UpdateManager.glade: - do not display what software updates are in startup progress dialog, this is already displayed in the main UI (thanks to Matthew Paul Thomas) - align the ""Download size:" text so that it matches the text inside the buttons -- Michael Vogt Mon, 17 Dec 2007 14:56:12 +0100 update-manager (1:0.86) hardy; urgency=low * DistUpgrade/DistUpgradeController.py: - merged fixes from Brian Murray (thanks!); LP: #162978, LP: #64473 - fix getting prerequists for ports.ubuntu.com (thanks to lamont) * DistUpgrade/DistUpgradeCache.py: - keep the lists dir locked all the time to avoid a possible race * DistUpgrade/DistUpgrade.cfg: - added gobuntu-desktop to the list of supported meta-packages * data/update-manager.desktop.in: - remove deprecated entries (thanks to Kmos) * UpdateManager/Core/MetaRelease.py: - add support to prompt only for specifc release upgrades (e.g. lts->lts) * data/release-upgrades: - set the default prompting for hardy to "Prompt only for a new lts version" * DistUpgrade/DistUpgrade.cfg.dapper, DistUpgrade/prerequists-sources.list.dapper: - add support for dapper->hardy upgrades * DistUpgrade/DistUpgradeConfigParser.py: - add overwrite support for the configuration to support upgrades to multiple target releases with the same upgrader * data/update-manager.schemas.in: - /apps/update-manager/check_dist_upgrades is deprecated * utils/demotions.py: - make it more flexible to support generating both dapper and gutsy demotions -- Michael Vogt Tue, 04 Dec 2007 15:56:22 +0100 update-manager (1:0.85.4) hardy; urgency=low * DistUpgrade/DistUpgradeCache.py: - do not use python2.5 try:/expect:/finally: - we need to run on 2.4 as well for dapper->hardy (LP: #164947) -- Michael Vogt Mon, 26 Nov 2007 10:47:57 +0100 update-manager (1:0.85.3) hardy; urgency=low * DistUpgrade/DistUpgrade.cfg, DistUpgrade/DistUpgrade.glade, DistUpgrade/ReleaseAnnouncement, DistUpgrade/window_main.ui: - updated for hardy * DistUpgrade/DistUpgradeControler.py,: DistUpgrade/DistUpgradeCache.py: - better description whats happening when calculating the release-upgrade - keep the GUI responsive while calculating the upgrade -- Michael Vogt Fri, 23 Nov 2007 18:24:12 +0100 update-manager (1:0.85.2) hardy; urgency=low * debian/control: - added missing "XS-Vcs-Bzr" header (thanks to Brian * debian/rules: - dh_iconcache is obsolete, use dh_icons instead -- Michael Vogt Fri, 09 Nov 2007 12:34:18 -0500 update-manager (1:0.85.1) hardy; urgency=low * fix FTBFS -- Michael Vogt Tue, 06 Nov 2007 08:24:57 -0500 update-manager (1:0.85) hardy; urgency=low * DistUpgrade/DistUpgradeCache.py: - fix crash when packages get downgraded (LP: #154257) * DistUpgrade/DistUpgradeController.py: - fix typo in classname (thanks to Matt T. Proud) * DistUpgrade/DistUpgrade.cfg: - update for hardy -- Michael Vogt Mon, 05 Nov 2007 21:12:13 -0500 update-manager (1:0.81) gutsy; urgency=low [ Jonathan Riddell ] * DistUpgrade/DistUpgradeViewKDE.py: - Add word wrap to quesiton dialogue [ Michael Vogt ] * DistUpgrade/DistUpgradeControler.py: - make the commercial archive transition more robust - when forcing the evms removal, ensure that all evms rdepends get obsoleted so that the safety checks in the upgrader do not kick in and prevent the removal - when calculating the size required in /boot take into account that installed initramfs images create a .bak file * updated list of demoted packages * updated ReleaseAnnouncement to include final text * updated demotions and mirrors to current gutsy -- Michael Vogt Fri, 12 Oct 2007 19:08:34 +0200 update-manager (1:0.80) gutsy; urgency=low * DistUpgrade/DistUpgradeControler.py: - enable transition to gutsy partner repository on upgrade now that we have a archive - workaround kde tempdir handling (LP: #149186) -- Michael Vogt Fri, 05 Oct 2007 20:11:32 +0200 update-manager (1:0.79) gutsy; urgency=low * DistUpgrade/DistUpgradeControler.py: - do not log apts debug output to the user in server upgrade mode - when running in partial upgrade mode, do not run apport, this is handled by the libapt apport integration now, (LP:#139394) * DistUpgrade/DistUpgradeCache.py,DistUpgradeControler.py: - detect and workaround upgrade issues with envy * update-manager: - show version with --version (LP: #137353) * DistUpgrade/DistUpgradeViewKDE.py: - fix crash with invalid utf-8 in polish locale (LP: #145351) * UpdateManager/UpdateManager.py: - remove debug output (LP: #145494) * DistUpgrade/DistUpgradeControler.py: - fix lock detection (LP: #145463) * UpdateManager/Common/utils.py: - show "0 KB" download size if there is nothing to download (LP: #145308) * DistUpgrade/demoted.cfg, utils/demotions.py: - do not display demotions if they are replaced by something that is in main (e.g. gaim->pidgin, LP: #145767) * DistUpgrade/ReleaseAnnouncement: - update for the beta release * DistUpgrade/DistUpgradeControler.py: - fix typo in pre-requists (thanks to Stuart Bishop) * debian/control: - tighten update-manager depend on update-manager-core * UpdateManager/Core/DistUpgradeFetcherCore.py: - move country_mirror code into Core (LP: #145116) * UpdateManager/Core/MetaReleaseCore.py, tests/interactive_fetch-release_upgrader.py: - fix test failure -- Michael Vogt Mon, 01 Oct 2007 15:32:12 +0200 update-manager (1:0.78) gutsy; urgency=low * DistUpgrade/DistUpgradeViewKDE.py: - Fix button in conffile dialogue -- Jonathan Riddell Tue, 25 Sep 2007 23:09:35 +0100 update-manager (1:0.77) gutsy; urgency=low * DistUpgrade/DistUpgradeViewKDE.py: - fix crash in conffile dialogue setup -- Jonathan Riddell Tue, 25 Sep 2007 14:22:55 +0100 update-manager (1:0.76) gutsy; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeCache.py: - ensure that the util-linux -> nfs-common transition happens (LP: #141559) [ Jonathan Riddell ] * DistUpgrade/DistUpgradeViewKDE.py: - copy Xauthority file if necessary -- Michael Vogt Mon, 24 Sep 2007 19:49:17 +0200 update-manager (1:0.75) gutsy; urgency=low * DistUpgrade/DistUpgradeViewGtk.py: - work around broken vte forkpty() env add * DistUpgrade/DistUpgradeControler.py: - fix type of installed_demotions from apt.Package to pkgname (LP: #144417) * po/*.po: - updated from latest launchpad translations * UpdateManager/DistUpgradeFetcherCore.py: - fix missing command line propergation when run as non-root (LP: #144451) -- Michael Vogt Mon, 24 Sep 2007 10:52:16 +0200 update-manager (1:0.74) gutsy; urgency=low * DistUpgrade/DistUpgradeCache.py: - ensure that users with the "lowlatency" kernel get transitioned correctly to a new kernel (LP: #129458) * DistUpgrade/DistUpgradeControler.py: - work around kde being too clever in tempdirs (LP: #139319) * po/POTFILES.in: - add missing files (LP: #141033) -- Michael Vogt Wed, 19 Sep 2007 23:15:39 +0100 update-manager (1:0.73) gutsy; urgency=low * UpdateManager/UpdateManager.py: - display new installs in the list * UpdateManager/Common/utils.py: - fix countrymirror to deal with non-utf8 locales (LP: #138299) * tests/test_update_origin.py: - added test for this country_mirror() * DistUpgrade/DistUpgradeControler.py: - check trust of pre-requists files before downloading them - support pre-requists on the CD as well - preserve the logs on self update from the net * DistUpgrade/build-tarball.sh: - fix auto-generation of target distro in cdromupgrade script (LP:#138354) * data/update-manager.8: - new manpage (thanks to Bruno Mangin, LP: #107015) -- Michael Vogt Thu, 13 Sep 2007 15:42:34 +0200 update-manager (1:0.72) gutsy; urgency=low * UpdateManager/Core/MetaRelease.py: - fix target filename for meta-release files so that correct I-M-S information is used * DistUpgrade/DistUpgrade.cfg: - use "release-upgrader-dpkg", "release-upgrader-apt" as update-pre-requists to fully support dpkg triggers (LP: #134000) - add mythubuntu-desktop to the valid metapackages * DistUpgrade/DistUpgradeControler.py: - fix pre-requists fetching, do not run the resolver as the udebss are not installable on a regular system - generate more log information to make diagnosing problems easier - setup RELEASE_UPGRADE_IN_PROGRESS environemnt - use custom invoke-rc.d during the upgrade so that failures to restart a daemon are not fatal * DistUpgrade/prerequists-sources.list: - point to the archive for the pre-requists now -- Michael Vogt Fri, 07 Sep 2007 23:29:40 +0200 update-manager (1:0.71) gutsy; urgency=low [ Michel Vogt ] * DistUpgrade/DistUpgradeViewGtk.py: - fix crash in _terminal_log code * DistUpgrade/DistUpgradeControler.py: - disable archive.canonical.com for now until a gutsy repository is created there - fix size requirement reporting (LP: #137539) [ Jonathan Riddell ] * DistUpgrade/DistUpgradeViewKDE.py - Implement show/hide button on conf file dialogue * DistUpgrade/removal_blacklist.cfg - Add xubuntu-desktop and gobuntu-desktop -- Michael Vogt Wed, 05 Sep 2007 19:16:56 +0200 update-manager (1:0.70) gutsy; urgency=low [ Jonathan Riddell ] * DistUpgrade/DistUpgradeViewKDE.py - Use apport for crashes - Don't use dcop, it doesn't work with kdesudo - Fix UI layout [ Michael Vogt ] * DistUpgrade/DistUpgradeControler.py: - show human readable size when displaying "not enough free space" error - when rewriting sources.list, transition the commercial package archive to the new location and "partner" name * DistUpgrade/DistUpgradeCache.py: - fix bogus log messages about missing "required" priority packages * DistUpgrade/DistUpgradeViewGtk.py: - remove debug messages * DistUpgrade/DistUpgrade.cfg: - remove gnome-cups-manager on upgrade, system-config-printer replaces it (LP: #107766) - set cursor to the start of the details list (LP: #134873) - added ubuntustudio-desktop, ichthux-desktop to valid metapackages (LP: #131936) * DistUpgrade/dist-upgrade.py, DistUpgrade/DistUpgradeViewText.py, DistUpgrade/DistUpgradeViewKDE.py, DistUpgrade/DistUpgradeViewGtk.py: - make logdir a config option too * UpdateManager/UpdateManager.py, UpdateManager/Common/utils.py: - move inhibit_sleep(), allow_sleep() into common code and call the freedesktop dbus interface instead of the deprecated gnome interface (LP: #136617) * tests/test_sources_list.py, tests/data-sources-list-test: - added tests for sources.list rewriting -- Michael Vogt Mon, 27 Aug 2007 16:39:10 +0200 update-manager (1:0.69) gutsy; urgency=low [ Michael Vogt ] * UpdateManager/Core/MetaRelease.py: - remove zero size meta-release files (LP: #127263) * utils/demoted.cfg: - updated to current gutsy * DistUpgrade/DistUpgrade.cfg: - added "esound", "esound-common" to forced obsoleted packages (replaced by pulseaudio) [ Jonathan Riddell ] * Change version text from 7.04 to 7.10 in KDE frontend -- Michael Vogt Wed, 08 Aug 2007 12:41:02 +0200 update-manager (1:0.68) gutsy; urgency=low * UpdateManager/DistUpgradeFetcherCore.py: - be extra paranoid when using ${countrymirror} * DistUpgrade/DistUpgradeControler.py: - support countrymirror in prerequists.sources.list file too * UpdateManager/Common/utils.py: - added country_mirror() function -- Michael Vogt Mon, 06 Aug 2007 17:48:43 +0200 update-manager (1:0.67) gutsy; urgency=low * UpdateManager/UpdateManager.py, tests/test_update_origin.py: - when checking for update category (Security, Important, ...) not only check candidateVersion but all intermediate versions too - added test for the new matcher behaviour * DistUpgrade/DistUpgradeControler.py: - fix PreRequists fetching - better error checking/logging * DistUpgrade/DistUpgradeViewGtk.py, DistUpgrade/DistUpgradeViewKDE.py,: - improve error message when a package fails to install (thanks to Chris Jones) * DistUpgrade/DistUpgradeViewGtk.py: - show "cancel" button while fetching stuff * UpdateManager/DistUpgradeFetcher.py, UpdateManager/DistUpgradeFetcherCore.py: - support ${countrymirror} in meta-release information * setup.py, setup.cfg: - updated for new python-distutils-extra -- Michael Vogt Wed, 25 Jul 2007 20:04:04 +0200 update-manager (1:0.66) gutsy; urgency=low * DistUpgrade/DistUpgradeControler.py: - support listing and fetching of upgrade PreRequists - transition archive.canonical.com to new layout - mark evms as obsolete if it is not in use - transition powerpc users to ports.ubuntu.com - implement Depends checking for the selected View (as speced in https://wiki.ubuntu.com/UpgradePrerequisites) * DistUpgrade/Core/DistUpgradeFetcherCore.py: - added ignore-time-conflict when calling gpg (thanks to Evan) * utils/demoted.cfg, DistUpgrade/mirrors.cfg, DistUpgrade/ReleaseAnnouncement: - updated for current gutsy * DistUpgrade/DistUpgrade.cfg: - mark desktop-effects as obsolete on ubuntu-desktop upgrades (the appearance capplet replaces it) -- Michael Vogt Tue, 10 Jul 2007 10:57:02 +0100 update-manager (1:0.65) gutsy; urgency=low * debian/rules: - add test for fetching the upgrader to release to arch-build target * update-manager.py: - fix breakage in "partial upgrade" mode -- Michael Vogt Mon, 25 Jun 2007 12:19:59 +0200 update-manager (1:0.64) gutsy; urgency=low * UpdateManager/DistUpgradeFetcher.py: - add missing "import os" * update-manager.py: - fix incorrect STEP_FETCH_INSTALL import (Fixes LP:#120484) -- Michael Vogt Mon, 18 Jun 2007 11:49:28 +0200 update-manager (1:0.63) gutsy; urgency=low * fix i18n issue (Fixes LP:#114207) * DistUpgrade/DistUpgradeCache.py: - if "386" (UP) kernel is installed on SMP machine, automatically switch to SMP kernel (Fixes LP: #106387) * DistUpgrade/DistUpgrade.cfg: - set python2.3 to remove list to ensure smooth upgrade (Fixes LP: #108147) * DistUpgrade/DistUpgradeControler.py: - show total needed space in not-enough-free-space message (Fixes LP: #46775) - fix in snapshot feature (Fixes LP: #108413) - deal better with very slow downloads (disable cache cleanup) - improve free space calculation in /boot (Fixes LP: #116163, #104337) - implement SystemCleanup spec kernel removal - implement SystemCleanup spec unused dependencies removal * Separate downloading and upgrading (Fixes LP: #91978) * Show demotions before runing the upgrade (Fixes LP: #91998) * UpdateManager/UpdateManager.py: - re-check for new releases too when the user clicks on "Check" (Fixes LP: #107452) -- Michael Vogt Wed, 13 Jun 2007 18:33:23 +0200 update-manager (1:0.62) gutsy; urgency=low * revert locking fix, it broke release upgrades * fix upgrade string -- Michael Vogt Fri, 25 May 2007 22:14:24 +0200 update-manager (1:0.61) gutsy; urgency=low * add missing dh_gconf (LP#114569) * fix mispelled entry in removal_blacklist (LP#107558) * fix locking problem (LP#108446) * make the wording of the free space message more clear -- Michael Vogt Mon, 14 May 2007 10:09:54 +0200 update-manager (1:0.60) gutsy; urgency=low * DistUpgrade/DistUpgradeControler.py: - fix free space check when the dir checked is a symlink (LP#106804) - increase minAge for the apt cleanup cron job during the upgrade to fix race for people with very slow network (LP#109548) - deal with invalid lines in /proc/mounts when calculating the free space (LP#108284) * cdromupgrade: - do not call any authentication mechanism, that is the responsibility of the user (LP#107431) * DistUpgrade/DistUpgradeViewKDE.py: - fix a bug in the cdrom progress (LP#107451) * DistUpgrade/DistUpgradeViewText.py: - send correct package failure information to log (LP#109209) * DistUpgrade/crashdialog.ui - Fix bug report URL in crash dialogue (LP#108969) * UpdateManager/Core/MetaRelease.py: - fix in I-M-S 304 handling (LP#109216) * DistUpgrade/DistUpgradeCache.py: - check RemovalBlacklist early when removing a package to work-around crash in problem resolver (LP#109014) * DistUpgrade/DistUpgrade.cfg: - updated for gutsy - add "ltsp-client", "ltspfsd" to the remove list to ensure that it does not get installed on a regular system (LP#109638) * DistUpgrade/DistUpgradeApport.py: - protect against errors when launching apport (LP#108131) -- Michael Vogt Tue, 24 Apr 2007 16:39:26 +0200 update-manager (1:0.59.21) feisty-proposed; urgency=low * UpdateManager/Core/MetaRelease.py: - send pragma: no-cache (LP#107716) - fix bug in time representation for i-m-s (LP#107716) -- Michael Vogt Fri, 20 Apr 2007 10:43:08 +0200 update-manager (1:0.59.20) feisty; urgency=low * DistUpgrade/DistUpgradeViewKDE.py: - do not crash in utf8() if the str is already unicode (LP#106863) -- Michael Vogt Mon, 16 Apr 2007 19:07:04 +0200 update-manager (1:0.59.19) feisty; urgency=low * DistUpgrade/DistUpgradeViewKDE.py: - disable apt-listchanges in the kde frontend too - fix broken terminal interaction (LP#106367) - ensure that there is only a single konsole widget visible (LP#106541) -- Michael Vogt Sat, 14 Apr 2007 23:27:48 +0200 update-manager (1:0.59.18) feisty; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeViewKDE.py: - fix i18n initialization (LP#106221) [ Jonathan Riddell ] * DistUpgrade/DistUpgradeViewKDE.py: - fix encoding in dialog_error (LP#106221) -- Michael Vogt Fri, 13 Apr 2007 16:32:33 +0200 update-manager (1:0.59.17) feisty; urgency=low * DistUpgrade/DistUpgradeViewGtk.py: - fix crash in on_window_main_delete_event() (LP#104701) * DistUpgrade/apt-autoinst-fixup.py: - set mdadm to manually installed (LP#105663) * DistUpgrade/DistUpgradeControler.py: - add python symlink sanity check (LP#75557) * DistUpgrade/ReleaseAnnouncement: - prepare for the final version * po/ - updated to the latest translations from rosetta -- Michael Vogt Fri, 13 Apr 2007 11:22:01 +0200 update-manager (1:0.59.16) feisty; urgency=low * set useDevelopmentRelease=False in the self updater on the CD (LP#99171) * fix another issue with a unresponsive GUI * work around upgrade issue with pango-libthai (LP#104384) -- Michael Vogt Sun, 8 Apr 2007 12:35:00 +0200 update-manager (1:0.59.15) feisty; urgency=low * DistUpgrade/DistUpgradeControler.py: - keep the GUI alive while calculating the obsolete packages -- Michael Vogt Wed, 4 Apr 2007 22:40:58 +0200 update-manager (1:0.59.14) feisty; urgency=low * DistUpgrade/DistUpgradeControler.py: - fix sources.list rewriting for people with internal or unofficial mirrors (LP#73463) * DistUpgrade/DistUpgradeCache.py: - workaround apache2/php5 upgrade failures (LP#95325) -- Michael Vogt Tue, 3 Apr 2007 16:08:58 +0200 update-manager (1:0.59.13) feisty; urgency=low * po/POTFILES.in: - reomove [type: ] this confused intltool * DistUpgradeControler.py: - work around problem with kde tempfile extraction (LP#99380) -- Michael Vogt Mon, 2 Apr 2007 11:46:40 +0200 update-manager (1:0.59.12) feisty; urgency=low * DistUpgrade/DistUpgradeViewKDE.py: - set debian frontend to "kde" * DistUpgrade/DistUpgradeCache.py: - do not crash when uname -r can't be parsed (LP#97663) - remove the nfs upgrade question again, the kernel team fixed the regression * DistUpgrade/DistUpgradeApport.py: - do not crash if no apport gui is available (LP#97498) * DistUpgrade/DistUpgradeViewText.py: - support details in text-mode (LP#94129) * DistUpgrade/DistUpgradeControler.py: - fix incorrect auto-installed information from meta-pkgs (LP#86921) - rewrite /etc/fstab cdrom entries (LP#86424,#79327) - fix upgrade for people with no admin group (LP#93279) - when encountering a error, first show the error dialog, then run the recover (LP#92366) * dist-upgrade.py: - support fallback when a frontend view can not be imported (LP#89568) - log the version of the upgrader as well * DistUpgrade/mirrors.cfg: - updated with the current mirror RSS feed from LP -- Michael Vogt Fri, 30 Mar 2007 20:53:17 +0200 update-manager (1:0.59.11) feisty; urgency=low * DistUpgrade/DistUpgradeViewKDE.py: - fix crash in mediaChange (LP#96849) * DistUpgrade/DistUpgradeViewText.py: - fix crash on broken packages (LP#96444) * DistUpgrade/DistUpgradeCache.py: - ensure that the latest kernel is always selected (LP#96196) - added nfs-common check in feistyQuirks and ask to install it if it appears to be missing * DistUpgrade/DistUpgradeControler.py: - add any additional sanity check at the start of the upgrade to check if the base distro is supported -- Michael Vogt Tue, 27 Mar 2007 22:48:54 +0200 update-manager (1:0.59.10) feisty; urgency=low [ Jonathan Riddell ] * DistUpgrade/DistUpgradeViewKDE.py: - i18n KDE frontend fixes, LP#95638, LP#94927 - set text on confirm dialogue buttons - (re)spawn embedded konsole for each fork, fixes crash when removing packages - Add on_window_main_delete_event, stops the user closing the window -- Jonathan Riddell Mon, 26 Mar 2007 23:56:31 +0100 update-manager (1:0.59.9) feisty; urgency=low [Sebastian Heinlein] * Hide help button - the outdated documentation is confusing (LP#44944) [Michael Vogt] * Use .update-manager-core dir * Fix bug in writable check for /var/lib/update-manager (LP#95599) * Ensure that /var/lib/update-manager is available * inhibit sleep when runing the release upgrader(LP#70058) * make sure that we do not run with a interactive debconf frontend on server upgrade (for packages like quagga) * fix race condition in free space checking (LP#96482), thanks to Jane Silber for reporting -- Michael Vogt Mon, 26 Mar 2007 11:29:00 +0200 update-manager (1:0.59.8) feisty; urgency=low * DistUpgrade/DistUpgradeViewKDE.py: - fix crash in error dialog (LP#94229) - i18n KDE frontend * DistUpgrade/DistUpgradeCache.py: - mention xubuntu-desktop too (LP#94443) * DistUpgrade/DistUpgradeCache.py: - fix in the logfile handling in server mode * DistUpgrade/DistUpgrade.cfg: - fix KeyDependency for xubuntu detection * UpdateManager/UpdateManager.py: - do not crash if UnInhibit dbus signal can not be send (LP#86572) -- Michael Vogt Sat, 24 Mar 2007 15:39:47 +0100 update-manager (1:0.59.7) feisty; urgency=low * NEWS: removed empty file (LP#92250) * DistUpgrade/DistUpgradeControler.py: - fix wording of the "use network" question - better apport integration - fix in the progress reporting where the report was off-by-one * DistUpgrade/DistUpgradeFetcherSelf.py: - fix run_options argument * UpdateManager/Core/MetaRelease.py: - fix race conditin in download thread (thanks to Matt Zimmerman for reporting the issue) * do-release-upgrade: - added option --frontend, --mode -- Michael Vogt Wed, 21 Mar 2007 10:04:45 +0100 update-manager (1:0.59.6) feisty; urgency=low * DistUpgrade/DistUpgradeView.py, DistUpgradeControler.py: - fixes in the apport integration -- Michael Vogt Wed, 14 Mar 2007 18:22:06 +0100 update-manager (1:0.59.5) feisty; urgency=low * UpdateManager/fakegconf.py: - Fix missing {get,set}_string() in fakegconf * DistUpgrade/dialog_changes.ui - Fix alignment of image * DistUpgrade/dialog_error.ui - Fix caption - Make text box read only * DistUpgrade/DistUpgradeViewKDE.py - remove unused argument to reportBug() - fix caption of information box - show close button on error box -- Jonathan Riddell Wed, 14 Mar 2007 11:05:22 +0000 update-manager (1:0.59.4) feisty; urgency=low * data/glade/UpdateManager.glade: - improve the wording of the dist-upgrade required dialog (LP#88706) * update-manager: - set better dialog caption (LP#88706) * DistUpgrade/DistUpgradeControler.py: - supress reboot notification when a upgrade is in progress (LP#91999) -- Michael Vogt Tue, 13 Mar 2007 22:11:11 +0100 update-manager (1:0.59.3) feisty; urgency=low * DistUpgrade/DistUpgradeViewKDE.py: - Fix incorrect variable name, LP No 91887 -- Jonathan Riddell Tue, 13 Mar 2007 20:05:22 +0000 update-manager (1:0.59.2) feisty; urgency=low * DistUpgrade/DistUpgradeViewKDE.py: - Fix reference to konsole_frame (LP No 84717 comment 33) -- Jonathan Riddell Tue, 13 Mar 2007 11:12:01 +0000 update-manager (1:0.59.1) feisty; urgency=low [ Michael Vogt ] * DistUpgrade/DistUpgradeViewGtk.py: - do not fail if loading the svg pixbuf loader fails (LP#91593) [ Jonathan Riddell ] * DistUpgrade/DistUpgradeViewKDE.py: - import KRun, closes https://launchpad.net/bugs/91072 - fix non-existant variable use, closes https://launchpad.net/bugs/91386 - fix incorrect method name, closes https://launchpad.net/bugs/91295 -- Jonathan Riddell Mon, 12 Mar 2007 19:00:07 +0000 update-manager (1:0.59) feisty; urgency=low * DistUpgrade/DistUpgradeViewKDE.py - quit any running instances of Adept * DistUpgrade/dist-upgrade.py - improve error message when failing to load frontend -- Jonathan Riddell Mon, 12 Mar 2007 13:08:07 +0000 update-manager (1:0.58) feisty; urgency=low * UpdateManager/UpdateManager.py: - do not crash if download size can not be calculated (LP#90547) * fix build for all python versions (thanks to doko for help!) (LP#90269) * strip changelog epoch too (LP#45566) * fix spelling mistakes (thanks to Bruce Cowan, LP#90833) * update download size if "check/uncheck" all was selected from right-click menu * correct download speed string (LP#73721) * fix in the german translation (LP#68384) -- Michael Vogt Fri, 9 Mar 2007 14:58:36 +0100 update-manager (1:0.57.8) feisty; urgency=low * debian/rules: - moved dist-upgrade_$version generation to binary-indep -- Michael Vogt Fri, 2 Mar 2007 10:49:53 +0100 update-manager (1:0.57.7) feisty; urgency=low * DistUpgrade/DistUpgradeView.py: - revert earlier commit in FuzzyTimeToStr() to make it not crash * debian/rules: - strip the epoch before runing dpkg-addfiles -- Michael Vogt Wed, 28 Feb 2007 14:25:39 +0100 update-manager (1:0.57.6) feisty; urgency=low [ Jonathan Riddell ] * DistUpgrade/DistUpgradeViewKDE.py - Fix crash with incorrect connect() calls [ Michael Vogt ] * UpdateManager/ChangelogViewer.py: - fix some margins (thanks to Sebastian Heinlein) -- Jonathan Riddell Tue, 27 Feb 2007 21:32:45 +0000 update-manager (1:0.57.5) feisty; urgency=low * UpdateManager/UpdateManager.py: - check for None in toggled() (LP#88032) -- Michael Vogt Mon, 26 Feb 2007 15:41:51 +0100 update-manager (1:0.57.4) feisty; urgency=low * DistUpgrade/DistUpgradeControler.py: - workaround problem in python-apt (no support for PyLong in SizeToStr) LP#84019 * DistUpgrade/DistUpgradeViewGtk.py: - keep a reference of the svg pibbuf loader around (LP#86699) * UpdateManager/fakegconf.py: - fix crash on xubuntu when gconf is not available (LP#86673) -- Michael Vogt Thu, 22 Feb 2007 16:09:18 +0100 update-manager (0.57.3) feisty; urgency=low * debian/rules: - build a raw-dist-upgrader in additon to the debs * data/glade/UpdateManager.glade: - fix bad grammar (thanks to Matthew Thomas) LP#85258 - make Update Manager the consistent name (thanks to Matthew Thomas) LP#85253 * merged ReleaseAnnouncement wording update from Brian Murray * UpdateManager/Core/MetaRelease.py: - fix missing import (LP#85515) -- Michael Vogt Thu, 22 Feb 2007 16:09:10 +0100 update-manager (0.57.2) feisty; urgency=low * fix crash in upgrade mode (LP#84915) -- Michael Vogt Tue, 13 Feb 2007 18:41:17 +0100 update-manager (0.57.1) feisty; urgency=low * fix proxy authentication parser (lp: #83563) * fix crash in check_all_updates_installable() (LP#84776) * fix exception when strange permissions are set on meta-release file (LP#84724) * fix error dialog if cache init fails (LP#83185) -- Michael Vogt Tue, 13 Feb 2007 13:27:09 +0100 update-manager (0.57) feisty; urgency=low * added clickable CVE and buglinks -- Michael Vogt Thu, 8 Feb 2007 12:11:04 +0100 update-manager (0.56.1) feisty; urgency=low * fix FTBFS * update po/ -- Michael Vogt Wed, 7 Feb 2007 21:18:39 +0100 update-manager (0.56) feisty; urgency=low * added --proposed switch to fetch a release-upgrader from a different location (similar to the -proposed pocket in the archive) * split into update-manager and update-manager-core and support cli release upgrades with the later * added fdsend module to support file descriptor passing over sockets this will allow a better seperation between frontend and backend in the future -- Michael Vogt Wed, 7 Feb 2007 18:02:35 +0100 update-manager (0.55.1) feisty; urgency=low * fix FTBFS (missing cdbs b-d) -- Michael Vogt Mon, 5 Feb 2007 13:58:15 +0100 update-manager (0.55) feisty; urgency=low * moved software-properties into its own source package to support a kde frontend -- Michael Vogt Mon, 5 Feb 2007 10:52:26 +0100 update-manager (0.53.6) feisty; urgency=low * properly extract the package name that fails before calling out to apports package_hook * fix crash on exit before the main loop is run (lp: #82744) -- Michael Vogt Thu, 1 Feb 2007 23:32:02 +0100 update-manager (0.53.5) feisty; urgency=low * update to the new exceptions from python-dbus in setupDBus (lp: #81802) * fix FTFBS -- Michael Vogt Mon, 29 Jan 2007 13:19:21 +0100 update-manager (0.53.4) feisty; urgency=low * fix python dependency (lp: #80976) * add apport support to send in bugreports -- Michael Vogt Thu, 25 Jan 2007 15:40:34 +0100 update-manager (0.53.3) feisty; urgency=low * fix python dependency (lp: #80976) * fix the GenericName in update-manager and software-properties (lp: #78932) * workaround problem when a meta-release file is created by root in the users homedir (lp: #80713) -- Michael Vogt Mon, 22 Jan 2007 13:59:18 +0100 update-manager (0.53.2) feisty; urgency=low * fix the cdromupgrade script to use feisty -- Michael Vogt Mon, 15 Jan 2007 12:59:01 +0100 update-manager (0.53.1) feisty; urgency=low * Build-depend on python-dev. -- Matthias Klose Sun, 14 Jan 2007 23:46:46 +0100 update-manager (0.52) feisty; urgency=low * UpdateManager/UpdateManager.py: - more robust error reporting from libapt (lp: #74797) * SoftwareProperties/SoftwareProperties.py: - do not crash if template is missing (lp: #70580) * updated to latest python policy -- Michael Vogt Fri, 12 Jan 2007 18:18:12 +0100 update-manager (0.51) feisty; urgency=low * data/channels/Ubuntu.info.in: - updated for feisty -- Michael Vogt Thu, 7 Dec 2006 17:46:10 +0100 update-manager (0.50) feisty; urgency=low * support --disable-component (AlwaysEnableUniverseMultiverse spec) * look for lsb_release in PATH instead of hardcoding it (lp: #73075) -- Michael Vogt Fri, 24 Nov 2006 08:52:33 +0100 update-manager (0.45.1) edgy-updates; urgency=low * handle unexpected data from data more gracefuly (lp: #68553) -- Michael Vogt Fri, 27 Oct 2006 10:23:39 +0200 update-manager (0.45) edgy; urgency=low * debian/control: - added dependency on python-gconf - removed recommends on python-gnome2 -- Michael Vogt Wed, 11 Oct 2006 18:32:17 +0200 update-manager (0.44.17) edgy; urgency=low * memory leak fixed (lp: #43096) -- Michael Vogt Mon, 9 Oct 2006 15:24:40 +0200 update-manager (0.44.16) edgy; urgency=low * fix proxy usage when runing in non-root mode (lp: #40626) -- Michael Vogt Fri, 6 Oct 2006 15:17:37 +0200 update-manager (0.44.15) edgy; urgency=low * added missing python-vte dependency (lp: #63609) * added missing gksu dependency (lp: #63572) * don't remove xchat automatically anymore on upgrade (leftover from breezy->dapper) (lp: #63881) * do not come up with bogus dist-upgrade suggestions * fix bad english grammar (lp: #63761, #63474) * fix in the edgyUpdates quirks handler (lp: #63723) * catch error from _tryMarkObsoleteForRemoval() (lp: #63617) * fix plural forms for ro, pl (lp: #46421) * properly escape comments before displaying them (lp: #63475) -- Michael Vogt Wed, 4 Oct 2006 21:10:40 +0200 update-manager (0.44.14) edgy; urgency=low * fix some incorrect i18n markings (lp: #62681) -- Michael Vogt Mon, 2 Oct 2006 14:41:52 +0200 update-manager (0.44.13) edgy; urgency=low * fix missing i18n declarations (lp: #62519) * data/glade/SoftwareProperties.glade: - fix missing "translatable" property (lp: #62681) * DistUpgrade: - deal better with the python transition and the hpijs upgrade (lp: #62948) * UpdateManager/UpdateManager.py: - put the cancel button inside the text-area to avoid flickering - make sure that src_ver is always initialized (thanks to Simira for reporting) - filter python-apt future warning (especially for seb128) * DistUprade/DistUpgradeControler.py: - check for self.sources, self.aptcdrom before using it (lp: #61852) -- Michael Vogt Sat, 23 Sep 2006 00:53:06 +0200 update-manager (0.44.12) edgy; urgency=low * DistUpgrade/DistUpgradeViewGtk.py: - use '%d' instead of '%s' where appropriate (lp: #60239) * fixed lots of typos (lp: #60633) -- Michael Vogt Mon, 18 Sep 2006 16:37:52 +0200 update-manager (0.44.11) edgy; urgency=low * UpdateManager/UpdateManager.py: - fix error in get_changelog (lp: #59940). Thanks to Denis Washington - bugfix in the ListStore - use the update-manager desktop file when runing synaptic as the backend to get a consistent UI - UI improvements (thanks to Sebastian Heinlein!) - remove branding -- Michael Vogt Tue, 12 Sep 2006 20:37:55 +0200 update-manager (0.44.10) edgy; urgency=low * aptsources.py: - fix add_component() to avoid duplicated components - added MirrorsFile key to DistInfo code to have a better idea about the available mirrors * debian/control: - updated dbus dependencies (lp: #59862) -- Michael Vogt Mon, 11 Sep 2006 09:38:21 +0200 update-manager (0.44.9) edgy; urgency=low * SoftwareProperties/SoftwareProperties.py: - bugfix in the popcon enable code (lp: #59540) -- Michael Vogt Sat, 9 Sep 2006 02:13:40 +0200 update-manager (0.44.8) edgy; urgency=low * fix missing /var/log/dist-upgrade -- Michael Vogt Fri, 8 Sep 2006 20:33:04 +0200 update-manager (0.44.7) edgy; urgency=low * UpdateManager/UpdateManager.py: - be more accurate about dependencies when the user selects only a supset of the packages -- Michael Vogt Wed, 6 Sep 2006 12:29:05 +0200 update-manager (0.44.6) edgy; urgency=low * SoftwareProperties/SoftwareProperties.py: - fix inconsistency in the new software-sources dialog * integrate DistUpgrade code into UpdateManager to make sure that after e.g. a CDROM upgrade the rest of the system can still be fully upgraded over the net -- Michael Vogt Tue, 5 Sep 2006 13:30:22 +0200 update-manager (0.44.5) edgy; urgency=low * install the DistUpgrade package too * data/channels/Ubuntu.info.in: - warty is no longer officially supported -- Michael Vogt Wed, 30 Aug 2006 11:32:24 +0200 update-manager (0.44.4) edgy; urgency=low * SoftwareProperties/SoftwareProperties.py: - don't bomb when searching for the mirror (lp: #57015) * UpdateManager/UpdateManager.py: - added "%s-proposed" to the list of known origins -- Michael Vogt Thu, 24 Aug 2006 13:00:23 +0200 update-manager (0.44.3) edgy; urgency=low * help/C/update-manager-C.omf: - fix url (thanks to daniel holbach, lp: #45548) * show the units better * don't jump around on row activation (thanks to Sebastian Heinlein) * send "inhibit sleep" to power-manager while applying updates (lp #40697) -- Michael Vogt Tue, 15 Aug 2006 18:06:53 +0200 update-manager (0.44.2) edgy; urgency=low * added select all/unselect all (thanks to Sebastian Heinlein) * wording fixes * fix update counting bug -- Michael Vogt Thu, 3 Aug 2006 17:52:09 +0200 update-manager (0.44.1) edgy; urgency=low * make UpdateManager check for new distribution releases by default again * fix dist-upgrade fetching when run as non-root. * sort the package list by the origin (UpdateManagerEdgy spec) -- Michael Vogt Wed, 2 Aug 2006 13:00:42 +0200 update-manager (0.44) edgy; urgency=low * new SoftwareProperties GUI (thanks to Sebastian Heinlein) * support easy Popcon pariticipation -- Michael Vogt Fri, 28 Jul 2006 01:06:16 +0200 update-manager (0.43) edgy; urgency=low * fixes in the changelog reading code * speedup in the cache clear code * runs as user by default now * uses dbus to implement singleton behaviour * updated the software-properties code to know about edgy -- Michael Vogt Tue, 4 Jul 2006 11:16:31 +0200 update-manager (0.42.2ubuntu22) dapper; urgency=low * UpdateManager/UpdateManager.py: - fix a 'brown paperback' bug when the Meta-Release file checked (#46537) -- Michael Vogt Thu, 25 May 2006 12:30:42 +0200 update-manager (0.42.2ubuntu21) dapper; urgency=low * UpdateManager/UpdateManager.py: - when a distribution release becomes available, display the version, not the codename (as per https://wiki.ubuntu.com/CodeNamesToVersionNumbers) - fix a string that was not marked transltable -- Michael Vogt Wed, 24 May 2006 15:07:19 +0200 update-manager (0.42.2ubuntu20) dapper; urgency=low * SoftwareProperties/aptsources.py, channels/Ubuntu.info.in: - remove the codenames from the releases (as per https://wiki.ubuntu.com/CodeNamesToVersionNumbers) -- Michael Vogt Tue, 23 May 2006 16:04:39 +0200 update-manager (0.42.2ubuntu19) dapper; urgency=low * help/C/figures: - applied "pngcrush" on the figures in the manual, this saves 4 MB uncompressed (ubuntu: #45901) -- Michael Vogt Mon, 22 May 2006 09:37:19 +0200 update-manager (0.42.2ubuntu18) dapper; urgency=low * data/SoftwareProperties.glade: - fix missing 'translatable="yes"' property (ubuntu: #44409) - increase width to 620 (ubuntu: #40540) -- Michael Vogt Fri, 19 May 2006 01:45:22 +0200 update-manager (0.42.2ubuntu17) dapper; urgency=low * debian/control: - depend on later python-apt (#45325) * SoftwareProperties/SoftwareProperties.py: - fix key updating after import (ubuntu #44927) * UpdateManager/UpdateManager.py: - remove debug output -- Michael Vogt Fri, 19 May 2006 00:04:02 +0200 update-manager (0.42.2ubuntu16) dapper; urgency=low * use version and section of the source package (if this information is available) when building the changelog URL (ubuntu #40058) * SoftwareProperties/SoftwareProperties.py: - if no config is found create a new one (ubuntu: #37560) * UpdateManager/UpdateManager.py: - fix problem in changelog reading code when matching against installed versions with epochs (ubuntu: #40058) -- Michael Vogt Thu, 11 May 2006 17:33:40 +0200 update-manager (0.42.2ubuntu15) dapper; urgency=low * disable the install button if there no updates (ubuntu: #42284) (Thanks to Sebastian Heinlein) * show main window *after* restoring the size (ubuntu: #42277) (Thanks to Sebastian Heinlein) * fix broken spelling, typos, wording (ubuntu: #42431, #28777, #40425, #40727) * help/C: merged from the docteam svn (ubuntu: 36092) -- Michael Vogt Tue, 2 May 2006 12:13:59 +0200 update-manager (0.42.2ubuntu14) dapper; urgency=low * wording/glade file fixes (thanks to Sebastian Heinlein) * many updates to the dist-upgrader code -- Michael Vogt Fri, 28 Apr 2006 23:04:08 +0200 update-manager (0.42.2ubuntu13) dapper; urgency=low * po/POTFILES.in: add missing desktop file (ubuntu: #39410) * UpdateManager/UpdateManager.py: - fix in the get_changelog logic (ubuntu: #40058) - correct a error in the changelog parser (ubuntu: #40060) - fix download size reporting (ubuntu: #39579) * debian/rules: added dh_iconcache * setup.py: install the icons into the hicolor icon schema (thanks to Sebastian Heinlein) -- Michael Vogt Thu, 20 Apr 2006 18:23:54 +0200 update-manager (0.42.2ubuntu12) dapper; urgency=low * channels/*.in: typo fix * po/POTFILES.in: add missing files (ubuntu: #38738) * fix the help string in update-manager (ubuntu: #23274) * fix the bad grammar in "Cannot install all available updates" (ubuntu: #32864) * don't inform about new distro release on dapper by default (can be changed via a gconf setting/commandline switch) * fix UI issue of the edit dialog for given templates (thanks to Chipzz for the patch) -- Michael Vogt Wed, 12 Apr 2006 20:23:21 +0200 update-manager (0.42.2ubuntu11) dapper; urgency=low * debian/control: - depend on unattended-upgrades - move python-gnome2 to recommends (we only use gconf from it) * UpdateManager/fakegconf.py: update for xubuntu (thanks to Jani Monoses) -- Michael Vogt Wed, 5 Apr 2006 14:46:10 +0200 update-manager (0.42.2ubuntu10) dapper; urgency=low * update-manger: fix a missing import (#36138) * typo fix (#36123) * correct dapper version number (#36136) * keybindings fixed (#36116) * calc the update before downloading the changelog (#36140) * add a fake gconf interface for xubuntu (nop for normal ubuntu) (Thanks to Jani Monoses for the patch) -- Michael Vogt Tue, 4 Apr 2006 18:17:16 +0200 update-manager (0.42.2ubuntu9) dapper; urgency=low * Better English (tm) (fixes #35985) * Use the the number of available and not selected updates to determinate if the system is up-to-date (fixes #35300) * fix ui problem with software preferences (fixes #35987) * fix width problem in SoftwareProperties -- Michael Vogt Wed, 22 Mar 2006 21:57:28 +0100 update-manager (0.42.2ubuntu8) dapper; urgency=low * fix a FTBFS -- Michael Vogt Wed, 15 Mar 2006 17:54:08 +0000 update-manager (0.42.2ubuntu7) dapper; urgency=low * various spelling fixes and ui-glitches -- Michael Vogt Tue, 14 Mar 2006 16:58:01 +0000 update-manager (0.42.2ubuntu6) dapper; urgency=low * po/pt_BR.po: updated translation (thanks to Carlos Eduardo Pedroza Santiviago) * po/pt.po: updated Portugise translation (thanks to Rui Azevedo) * debian/control: arch: all now * debian/rules: undo the detection in favour of the simpler update of the desktop files * data/gnome-software-properties.desktop.in, update-manager.desktop.in: - added X-Ubuntu-Gettext-Domain * help/*: updated to latest svn -- Michael Vogt Mon, 20 Feb 2006 15:58:09 +0100 update-manager (0.42.2ubuntu5) dapper; urgency=low * debian/rules: Add gettext domain to .server and .desktop files to get language pack support for them. (Similarly to cdbs' gnome.mk) -- Martin Pitt Thu, 23 Feb 2006 18:42:04 +0100 update-manager (0.42.2ubuntu4) dapper; urgency=low * removed some of the gnome dependencies (gconf still in) * the ReleaseNotes dialog has clickable links now (thanks to Sebastian Heinlein) -- Michael Vogt Mon, 20 Feb 2006 13:24:55 +0100 update-manager (0.42.2ubuntu3) dapper; urgency=low * fixed description of the ubuntu repository (#30813) * use the new synaptic --parent-window-id switch when runing the backend -- Michael Vogt Wed, 8 Feb 2006 20:53:46 +0100 update-manager (0.42.2ubuntu2) dapper; urgency=low * SoftwareProperties/SoftwareProperties.py: - re-added the internet update options (#27932) * data/gnome-software-properties.desktop: - use gksu instead of gksudo (#30057) * wording fixes (#30296) -- Michael Vogt Tue, 7 Feb 2006 13:13:09 +0100 update-manager (0.42.2ubuntu1) dapper; urgency=low * UpdateManager/MetaRelease.py: - never offer a upgrade to a unsupported (i.e. developer) dist * data/gnome-software-properties.desktop.in: use X-KDE-SubstituteUID=true * small UI layout changes (should fix the cancel/close button problem) -- Michael Vogt Tue, 31 Jan 2006 09:48:13 +0000 update-manager (0.42.1ubuntu1) dapper; urgency=low * UpdateManagert: improved the HIG complicane more, removed some of the uglines from the last version (Malone #22090) * SoftwareProperties: improved the HIG complicane (Malone #28530) (thanks to Sebastian Heinlein) -- Michael Vogt Tue, 17 Jan 2006 17:27:15 +0100 update-manager (0.42ubuntu1) dapper; urgency=low * improved the HIG comlicane, thanks to Sebastian Heinlein: - Rename the button "close" to "cancel" - Move status bar to a separate dialog - Wording - Add a wider border around the changelog and description - Align and capitalize the button "Cancel downloading" (ubuntu: #28453) * bugfixes in the cache locking -- Michael Vogt Mon, 16 Jan 2006 12:56:29 +0100 update-manager (0.40.2) dapper; urgency=low * SoftwareProperties/SoftwareProperties.py: - fix a problem with transient/parent window in custom apt line dialog (ubuntu #21585) - fix a problem in the conf file writer that can lead to absurdly large files -- Michael Vogt Thu, 5 Jan 2006 12:37:33 +0100 update-manager (0.40.1) dapper; urgency=low * SoftwareProperties/SoftwareProperties.py: - make it embedded friendlier -- Michael Vogt Fri, 16 Dec 2005 14:02:27 +0100 update-manager (0.40) dapper; urgency=low * new upstream release: - switched from autotools to distutils - massive code cleanups - use SimpleGladeApp now - SoftwareProperties has a new GUI - UpdateManager has support for upgrading from one dist to another now (given that the required "recipe" for the upgrade is available) See https://wiki.ubuntu.com/AutomaticUpgrade for details - use python-apt for "reload" and "add cdrom" now - improved the handling of sources.list a lot (including support for /etc/apt/sources.list.d) * support for the AutomaticUpgrades spec added via the meta-release information * data/update-manager.desktop.in: - use X-KDE-SubstituteUID added and use gksu now -- Michael Vogt Tue, 15 Nov 2005 17:22:12 +0100 update-manager (0.37.1+svn20050404.15) breezy; urgency=low * added intltool to build-depends (for rosetta) -- Michael Vogt Thu, 6 Oct 2005 17:30:38 +0200 update-manager (0.37.1+svn20050404.14) breezy; urgency=low * debian/rules: - run intltool-update -p for rosetta * src/update-manager.in: - release the lock before runing gnome-software-properties (ubuntu #17022) -- Michael Vogt Tue, 4 Oct 2005 22:28:43 +0200 update-manager (0.37.1+svn20050404.13) breezy; urgency=low * src/update-manager.in: - use the right column for type-ahead searching (ubuntu #16853) -- Michael Vogt Tue, 4 Oct 2005 11:01:58 +0200 update-manager (0.37.1+svn20050404.12) breezy; urgency=low * added locking support * use explicit path to python2.4 (thanks anthony!) (Ubuntu #16087) * CTRL-{w,q} close the update-manager window (Ubuntu #15729) -- Michael Vogt Wed, 28 Sep 2005 17:40:05 +0200 update-manager (0.37.1+svn20050404.11) breezy; urgency=low * fix a typo in the reload tooltip (thanks to P Jones) (ubuntu #14699) -- Michael Vogt Mon, 12 Sep 2005 14:49:13 +0200 update-manager (0.37.1+svn20050404.10) breezy; urgency=low * fix for a typo in the source of the last upload (*cough*) -- Michael Vogt Wed, 31 Aug 2005 15:39:53 +0200 update-manager (0.37.1+svn20050404.9) breezy; urgency=low * do a "save" dist-upgrade (add only, no removes) -- Michael Vogt Wed, 31 Aug 2005 12:09:20 +0200 update-manager (0.37.1+svn20050404.8) breezy; urgency=low * if repository window is running from inside synaptic, don't show "Add cdrom" button (it's available in the synaptic menu already) -- Michael Vogt Tue, 30 Aug 2005 14:12:50 +0200 update-manager (0.37.1+svn20050404.7) breezy; urgency=low * if running from inside another application (e.g. synaptic), make sure the dialogs get a correct parent (ubuntu #14001) * if nothing changed, do not run "reload" if runing from inside synaptic -- Michael Vogt Mon, 29 Aug 2005 12:09:12 +0200 update-manager (0.37.1+svn20050404.6) breezy; urgency=low * remove (parts of) ubuntu branding from the application * make it run only with python2.4 (ubuntu #10876) * make sure to always properly escape the strings displayed in the treeview -- Michael Vogt Tue, 23 Aug 2005 16:49:54 +0200 update-manager (0.37.1+svn20050404.5) breezy; urgency=low * updates where not shown sometimes, fixed that (ubuntu #13410) -- Michael Vogt Tue, 16 Aug 2005 10:49:46 +0200 update-manager (0.37.1+svn20050404.4) breezy; urgency=low * re-read the sources.list after a "add-custom" (ubuntu #9855) * settings window has a title (ubuntu #10756) * default actions for the buttons (ubuntu #10741) * various typos fixed (ubuntu #9866) * make sure that no dialogs are opened without a parent (ubuntu #10284) -- Michael Vogt Mon, 15 Aug 2005 15:15:06 +0200 update-manager (0.37.1+svn20050404.3) breezy; urgency=low * use breezy as default for newly created sources (ubuntu #13009) * be more carefull with preserving the mirror * a better explaination for the "Reload" button (ubuntu #11432) -- Michael Vogt Wed, 10 Aug 2005 12:07:55 +0200 update-manager (0.37.1+svn20050404.2) breezy; urgency=low * fix a small problem in the parsing code (ubuntu #8754) -- Michael Vogt Fri, 6 May 2005 11:24:17 +0200 update-manager (0.37.1+svn20050404.1) hoary; urgency=low * pickup the correct proxy settings from apt (#8668) -- Michael Vogt Wed, 6 Apr 2005 16:39:44 +0200 update-manager (0.37.1+svn20050404) hoary; urgency=low * translation updates: - xh, fr -- Michael Vogt Mon, 4 Apr 2005 22:21:17 +0200 update-manager (0.37.1+svn20050403) hoary; urgency=low * translation updates: - pt_BR, tw * documentation updates (thanks to Sean Wheller and Jeff Schering) * small fixes: - make sure to not duplicate sources.list entires (even for mirrors) - added the hoary-updates to the templates and matchers (#8600) - some missing i18n strings marked as such (thanks to Zygmunt Krynicki) - don't fail on missing net connections - always update the status label -- Michael Vogt Sun, 3 Apr 2005 20:54:42 +0200 update-manager (0.37.1+svn20050323) hoary; urgency=low * translation updates * gui can set the new apt cache properties now * warn about broken packages (#7688) * only ask to reload the package list if something changed (#7871) * various focus fixes (#7900) -- Michael Vogt Wed, 23 Mar 2005 01:18:38 +0100 update-manager (0.37.1+svn20050314) hoary; urgency=low * new svn snapshot, lot's of bugfixes and i18n updates. - fix for a ui problem (#6837) - read pined packages correctly (#7058) - update list correctly after reload (#7182) - tell user when dist-upgrade is needed (#7271) - cdrom sources can be added now too (#7315) - meta-release file bugfix (#7330) - translation updates (da, fr, es, ro, pl) -- Michael Vogt Mon, 14 Mar 2005 08:49:52 +0100 update-manager (0.37.1+svn20050304) hoary; urgency=low * new snapshot, use python-apt depcache now -- Michael Vogt Fri, 4 Mar 2005 22:55:46 +0100 update-manager (0.37.1+svn20050301) hoary; urgency=low * new snapshot, better de.po, better i18n support -- Michael Vogt Tue, 1 Mar 2005 12:06:39 +0100 update-manager (0.37.1+svn20050228.1) hoary; urgency=low * fixed a FTBFS (because of the "cleanfiles" in Makefile.am) -- Michael Vogt Mon, 28 Feb 2005 19:12:28 +0100 update-manager (0.37.1+svn20050228) hoary; urgency=low * get the correct candidate version for updatable packages (ubuntu #6825) -- Michael Vogt Mon, 28 Feb 2005 11:00:38 +0100 update-manager (0.37.1+svn20050221) hoary; urgency=low * new svn snapshot, fixes: - #6756: window size too big - #6767, #6780: gnome-software-properties window broken -- Michael Vogt Mon, 21 Feb 2005 11:30:52 +0100 update-manager (0.37.1+svn20050219) hoary; urgency=low * new svn snapshot, fixes: - #6565, #6565 (typo) - #6634 (remeber last details state) - #6635 (progress dialog merged in main window) - #6578 (hide details if no updates are available) -- Michael Vogt Sat, 19 Feb 2005 00:32:50 +0100 update-manager (0.37.1) hoary; urgency=low * typo (#6542) * package list is sorted now * applied "hide details if system is update-to-date" patch (#6578, thanks to Jorge Bernal) -- Michael Vogt Tue, 15 Feb 2005 10:49:17 +0100 update-manager (0.37) hoary; urgency=low * test for lock file and show error if the lock is already taken * use utf8 for the description * changelogs are fetched from http://changelogs.ubuntu.com/ now (closes: #6315) * handle 404 from http and set the error accordingly * set main_window to not sensitive when downloading changelogs * if no updates are available, hide the checkbox column (closes: #6443) -- Michael Vogt Mon, 14 Feb 2005 15:08:06 +0100 update-manager (0.36.6) hoary; urgency=low * various bugfixes and embedding of synaptics progress windows -- Michael Vogt Tue, 8 Feb 2005 22:12:53 +0100 update-manager (0.36.5) hoary; urgency=low * disabled sources can now be displayed too (optional preference) * comments can be added * various bugfixes -- Michael Vogt Thu, 3 Feb 2005 16:21:32 +0100 update-manager (0.36.4) hoary; urgency=low * regression of the last upload fixed * gnome-software-properties can be embedded into other windows now (usefull for e.g. synaptic) -- Michael Vogt Mon, 31 Jan 2005 22:59:35 +0100 update-manager (0.36.3) hoary; urgency=low * updates to the main window design -- Michael Vogt Mon, 31 Jan 2005 16:59:41 +0100 update-manager (0.36.2) hoary; urgency=low * new main window layout in update-manager (Michiel design, looks _so_ nice) -- Michael Vogt Fri, 28 Jan 2005 12:20:57 +0100 update-manager (0.36.1) hoary; urgency=low * columns are resizable now (closes: #5541) * lot's of typo/gui-glitches fixes (closes: #5200, #5816, #5801, #5802) -- Michael Vogt Mon, 24 Jan 2005 16:14:45 +0100 update-manager (0.36) hoary; urgency=low * new upstream release, added support to control APT::Periodic::* variables in gnome-software-properties -- Michael Vogt Wed, 19 Jan 2005 16:59:19 +0100 update-manager (0.35) hoary; urgency=low * new upstream release - typo fix (closes: #5200) -- Michael Vogt Wed, 5 Jan 2005 12:23:55 +0100 update-manager (0.34) hoary; urgency=low * new upstream release -- Michael Vogt Fri, 24 Dec 2004 12:50:13 +0100 update-manager (0.33) hoary; urgency=low * new upstream release, featuring the gnome-software-properties -- Michael Vogt Tue, 30 Nov 2004 12:41:06 +0100 update-manager (0.32) hoary; urgency=low * new upstream release -- Michael Vogt Tue, 23 Nov 2004 15:28:09 +0100 update-manager (0.31-1ubuntu1) hoary; urgency=low * Update Build-Deps and fix FTBFS. -- Fabio M. Di Nitto Mon, 22 Nov 2004 13:04:09 +0100 update-manager (0.31-1) hoary; urgency=low * new upstream release, added icon, desktop file and bugfix -- Michael Vogt Sat, 13 Nov 2004 11:30:37 +0100 update-manager (0.3-1) hoary; urgency=low * New upstream release, inital ubuntu release -- Michael Vogt Wed, 3 Nov 2004 14:48:14 +0100 update-manager (0.2-1) unstable; urgency=low * New upstream release. -- Michiel Sikkes Sat, 30 Oct 2004 02:22:12 +0200 update-manager (0.1-2) unstable; urgency=low * Um Yeah. -- Michiel Sikkes Tue, 26 Oct 2004 13:16:13 +0200 update-manager (0.1-1) unstable; urgency=low * Initial Release. -- Michiel Sikkes Mon, 25 Oct 2004 21:49:07 +0200 ubuntu-release-upgrader-0.220.10/debian/ubuntu-release-upgrader-gtk.install0000644000000000000000000000020712431225715023536 0ustar debian/tmp/usr/bin/check-new-release-gtk usr/lib/ubuntu-release-upgrader debian/tmp/usr/share/ubuntu-release-upgrader/gtkbuilder ubuntu-release-upgrader-0.220.10/messages.mo0000644000000000000000000012666512752710771015566 0ustar ul@A& %"S@GI&7Jax(q<fQ$G%;[R2;N_=5 F _S      !!/!H![!:k!]!!"&" ?"K"Z"i"&""$"" #2#I#h### ## ##&#$"$!7$ Y$'g$+$<$$$%"#%F%Z%[n%%%% &&{"&&!&&=& ,':'/Q''''$''s()) D) P) [) h)nu)))**6S++ ', 3,@, \, i,u,,,%,,,--$9-<^--:--& .&1.X.X/X?000 00 0&0 1 '131R18l1 1.1/12!/2Q2b2z2*22P3k3S3 4445 45 B5N5l55!555+m6666(6 7!71<7In7i8J":"m:e:/:&;C;,b;;<F=d=G>>r?K<@M@@wBBR}CC`D}D3E[E7KFF@ GJGLHyIIk%J J]JK7K?K,?LLlL*L$L M`&MMM M MMM MM N Nh$N.NlN_)OAOO[OV;PQQSwR*R.Rt%S-SFSKT[TbUU WXYY YYYY Y YYZZ0 ZQZ*SZ~Z ZZZZZ\2]]]^_H _0i_B___``4`+<`h`~``eaE2b}xb*bZ!c|cckcddd%deeBfg0g`Cgggg!g h#hAhZhwhShh4ei'i i i ii. j)9j.cj%j*jj%k)'kQkbk |kk k!k/k*kl$5lZl/ll3lBl5mIm?Ommm\mn3nQnhn }nn o(5o^oFqoooFo)-pWp)rp/ppvq<7r tr r r r}r#s$Asfst0tuuu#u v +v7vUvlv%vvv#v$w((wLQw%wAw&x1-x!_xxyfz%z${;{R{d{={{{ {{{H| P|-[|9|/|+|}1},J}5w}}B~*Z~~-.J&y,)@X2E&[ 4ۂ73WP*zӆ1N$&8̇" A:KNٍV(#&Wő.ْ\-KX NYs/iJLaܛ;>ez@0!3R- 6 @M^v Оڞ6al$]^b'o!-2*H[;U)9-cd| Ӭ /%2'%Z8@Xd ED qT'MS{c.WRb+ QP]lk i/t 5faJ[o2" #(1p~Nx_$)^r|&\zCZG!%h;0sjA?LO V649<FI 7HB-} Y 3:u>K*`nygwve,m=U Please report this bug in a browser at http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug and attach the files in /var/log/dist-upgrade/ to the bug report. %s You have to download a total of %s. %(amount)d installed package is no longer supported by Canonical. You can still get support from the community.%(amount)d installed packages are no longer supported by Canonical. You can still get support from the community.%(str_days)s %(str_hours)s%(str_hours)s %(str_minutes)s%d new package is going to be installed.%d new packages are going to be installed.%d package is going to be removed.%d packages are going to be removed.%d package is going to be upgraded.%d packages are going to be upgraded.%li day%li days%li hour%li hours%li minute%li minutes%li second%li seconds&Close*DEPRECATED* this option will be ignored<<< Hide Difference<<< Hide TerminalCancel the running upgrade? The system could be in an unusable state if you cancel the upgrade. You are strongly adviced to resume the upgrade.Cancel the running upgrade? The system could be in an unusable state if you cancel the upgrade. You are strongly advised to resume the upgrade.Restart the system to complete the upgradeRestart the system to complete the upgrade Please save your work before continuing.Start the upgrade?A new version of Ubuntu is available. Would you like to upgrade?Downgrade (%s)A fatal error occurredA problem occurred during the clean-up. Please see the below message for more information. A problem occurred during the update. This is usually some sort of network problem, please check your network connection and retry.AbortingAbout %s remainingAdd debug outputAfter scanning your 'sources.list' no valid entry for '%s' was found. Should default entries for '%s' be added? If you select 'No', the upgrade will cancel.An unresolvable problem occurred while calculating the upgrade: %s This can be caused by: * Upgrading to a pre-release version of Ubuntu * Running the current pre-release version of Ubuntu * Unofficial software packages not provided by Ubuntu An upgrade from '%s' to '%s' is not supported with this tool.Applying changesAsk Me LaterAuthenticating the upgrade failed. There may be a problem with the network or with the server. Authentication failedBroken packagesCalculating the changesCan not run the upgradeCan not upgradeCan not write to '%s'Can't guess meta-packageCan't install '%s'Cancel Upgrade?Check if upgrading to the latest devel release is possibleCheck only if a new distribution release is available and report the result via the exit codeChecking for a new Ubuntu releaseChecking package managerCleaning upContinue [Yn] Continue [yN] Continue running under SSH?Could not calculate sources.list entryCould not calculate the upgradeCould not download the release notesCould not download the upgradesCould not find the release notesCould not install '%s'Could not install the upgradesCould not run the upgrade toolCtrl-c pressedCustom serversDemoted: DetailsDetails [d]Difference between the filesDirectory that contains the data filesDisable GNU screen supportDistribution UpgradeDo you want to start the upgrade?Don't UpgradeDownloading additional package files...Downloading file %(current)li of %(total)liDownloading file %(current)li of %(total)li with %(speed)s/sDownloading the release upgrade toolErrorError authenticating some packagesError during commitError during updateExtracting the upgrade failed. There may be a problem with the network or with the server. Failed to add the CDFailed to add the cdromFailed to extractFailed to fetchFetchingFetching and installing the upgrade can take several hours. Once the download has finished, the process cannot be canceled.Fetching file %li of %liFetching file %li of %li at %sB/sFetching is completeFetching the upgrade failed. There may be a network problem. File %s of %sFile %s of %s at %sB/sFor upgrade information, please visit: %(url)s Generate default sources?Getting new packagesGetting new software channelsGetting upgrade prerequisites failedIf none of this applies, then please report this bug using the command 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal.If you run a firewall, you may need to temporarily open this port. As this is potentially dangerous it's not done automatically. You can open the port with e.g.: '%s'Include latest updates from the Internet?InformationInstall %sInstall (%s)Install: %s Installing the upgrade can take several hours. Once the download has finished, the process cannot be canceled.Installing the upgradesInvalid package informationIt was impossible to install a required package. Please report this as a bug using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal.It was not possible to authenticate some packages. This may be a transient network problem. You may want to try again later. See below for a list of unauthenticated packages.It was not possible to create the sandbox environment.Its not possible to write to the system directory '%s' on your system. The upgrade can not continue. Please make sure that the system directory is writable.Main serverMedia ChangeNew release '%s' available.No ARMv6 CPUNo i686 CPUNo init availableNo longer needed (%s)No longer supported %sNo longer supported by Canonical (%s)No longer supported: %s No new release foundNo valid mirror foundNot enough free disk spacePackage 'debsig-verify' is installedPackage in inconsistent statePackages in inconsistent statePerform a partial upgradePerform a partial upgrade only (no sources.list rewriting)Perform a release upgradePlease check your internet connection.Please insert '%s' into the drive '%s'Please report this as a bug (if you haven't already) and include the files /var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The upgrade has aborted. Your original sources.list was saved in /etc/apt/sources.list.distUpgrade.Please report this as a bug and include the files /var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The upgrade has aborted. Your original sources.list was saved in /etc/apt/sources.list.distUpgrade.Preparing the system for the upgrade failed so a bug reporting process is being started.Preparing the upgrade failedPreparing to upgradeReading cacheReboot requiredRelease NotesRelease upgrade not possible right nowRemove %sRemove (%s)Remove (was auto installed) %sRemove obsolete packages?Remove package in bad stateRemove packages in bad stateRemove: %s Removing the packages can take several hours. Replace the customized configuration file '%s'?Repository information invalidRequired depends is not installedRestart requiredRestarting the computerRestoring original system stateRun 'do-release-upgrade' to upgrade to it.Run in a special upgrade mode. Currently 'desktop' for regular upgrades of a desktop system and 'server' for server systems are supported.Run the specified frontendRunning partial upgradeRunning the 'unity' desktop environment is not fully supported by your graphics hardware. You will maybe end up in a very slow environment after the upgrade. Our advice is to keep the LTS version for now. For more information see https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still want to continue with the upgrade?Sandbox modeSandbox setup failedSandbox upgrade using aufsSearching for obsolete softwareServer for %sSet datadirSetting new software channelsShow Difference >>>Show Terminal >>>Show progress of individual filesShow version and exitSome third party entries in your sources.list were disabled. You can re-enable them after the upgrade with the 'software-properties' tool or your package manager.Sorry, adding the cdrom was not successful.Starting additional sshdSystem upgrade is complete.TerminalTest upgrade with a sandbox aufs overlayThe 'diff' command was not foundThe error message is '%s'.The essential package '%s' is marked for removal.The package '%s' is in an inconsistent state and needs to be reinstalled, but no archive can be found for it. Do you want to remove this package now to continue?The packages '%s' are in an inconsistent state and need to be reinstalled, but no archives can be found for them. Do you want to remove these packages now to continue?The package '%s' is in an inconsistent state and needs to be reinstalled, but no archive can be found for it. Please reinstall the package manually or remove it from the system.The packages '%s' are in an inconsistent state and need to be reinstalled, but no archive can be found for them. Please reinstall the packages manually or remove them from the system.The package '%s' is marked for removal but it is in the removal blacklist.The partial upgrade was completed.The release upgrade can not be performed currently, please try again later. The server reported: '%s'The required dependency '%s' is not installed. The server may be overloadedThe server may be overloaded. The software on this computer is up to date.The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited and you may encounter problems after the upgrade. For more information see https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to continue with the upgrade?The system was unable to get the prerequisites for the upgrade. The upgrade will abort now and restore the original system state. Additionally, a bug reporting process is being started.The upgrade can not continue with that package installed. Please remove it with synaptic or 'apt-get remove debsig-verify' first and run the upgrade again.The upgrade has aborted. Please check your Internet connection or installation media and try again. The upgrade has aborted. Please check your Internet connection or installation media and try again. All files downloaded so far have been kept.The upgrade has aborted. The upgrade needs a total of %s free space on disk '%s'. Please free at least an additional %s of disk space on '%s'. Empty your trash and remove temporary packages of former installations using 'sudo apt-get clean'.The upgrade has aborted. Your system could be in an unusable state. A recovery will run now (dpkg --configure -a).The upgrade has completed but there were errors during the upgrade process.The upgrade is finished and a reboot is required. Do you want to do this now?The upgrade system can use the internet to automatically download the latest updates and install them during the upgrade. If you have a network connection this is highly recommended. The upgrade will take longer, but when it is complete, your system will be fully up to date. You can choose not to do this, but you should install the latest updates soon after upgrading. If you answer 'no' here, the network is not used at all.The upgrade will cancel now and the original system state will be restored. You can resume the upgrade at a later time.The upgrade will continue but the '%s' package may not be in a working state. Please consider submitting a bug report about it.There are no upgrades available for your system. The upgrade will now be canceled.There was a error adding the CD, the upgrade will abort. Please report this as a bug if this is a valid Ubuntu CD. The error message was: '%s'Third party sources disabledThis computer is currently using the AMD 'fglrx' graphics driver. No version of this driver is available that works with your hardware in Ubuntu 10.04 LTS. Do you want to continue?This computer is currently using the NVIDIA 'nvidia' graphics driver. No version of this driver is available that works with your video card in Ubuntu 10.04 LTS. Do you want to continue?This download will take about %s with a 1Mbit DSL connection and about %s with a 56k modem.This download will take about %s with your connection. This is most likely a bug in the upgrade tool. Please report it as a bug using the command 'ubuntu-bug ubuntu-release-upgrader-core'.This is most likely a transient problem, please try again later.This session appears to be running under ssh. It is not recommended to perform a upgrade over ssh currently because in case of failure it is harder to recover. If you continue, an additional ssh daemon will be started at port '%s'. Do you want to continue?This upgrade is running in sandbox (test) mode. All changes are written to '%s' and will be lost on the next reboot. *No* changes written to a system directory from now until the next reboot are permanent.This usually is caused by a system where /tmp is mounted noexec. Please remount without noexec and run the upgrade again.This usually means that another package management application (like apt-get or aptitude) already running. Please close that application first.This will abort the operation and may leave the system in a broken state. Are you sure you want to do that?To continue please press [ENTER]To finish the upgrade, a restart is required. If you select 'y' the system will be restarted.To make recovery in case of failure easier, an additional sshd will be started on port '%s'. If anything goes wrong with the running ssh you can still connect to the additional one. To perform a partial upgrade, you need to authenticate.To prevent data loss close all open applications and documents.To upgrade Ubuntu, you need to authenticate.Try upgrading to the latest release using the upgrader from $distro-proposedTrying to install blacklisted version '%s'Ubuntu %(version)s Upgrade AvailableUnable to get exclusive lockUnable to locate any package files, perhaps this is not a Ubuntu Disc or the wrong architecture?Updating repository informationUpgradeUpgrade %sUpgrade (%s)Upgrade canceledUpgrade completeUpgrade toolUpgrade tool signatureUpgrade: %s UpgradingUpgrading may reduce desktop effects, and performance in games and other graphically intensive programs.Upgrading over remote connection not supportedUpgrading the repository information resulted in a invalid file so a bug reporting process is being started.Use frontend. Currently available: DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDEUse the given path to search for a cdrom with upgradable packagesVerification failedVerifying the upgrade failed. There may be a problem with the network or with the server. While scanning your repository information no mirror entry for the upgrade was found. This can happen if you run a internal mirror or if the mirror information is out of date. Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' here it will update all '%s' to '%s' entries. If you select 'No' the upgrade will cancel.Yes, Upgrade NowYou are running the upgrade over a remote ssh connection with a frontend that does not support this. Please try a text mode upgrade with 'do-release-upgrade'. The upgrade will abort now. Please try without ssh.You can upgrade at a later time by opening Software Updater and click on "Upgrade".You have declined the upgrade to Ubuntu %sYou have declined to upgrade to the new UbuntuYou will lose any changes you have made to this configuration file if you choose to replace it with a newer version.Your Ubuntu release is not supported anymore.Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS.Your python install is corrupted. Please fix the '/usr/bin/python' symlink.Your system appears to be a virtualised environment without an init daemon, e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of environment, requiring an update to your virtual machine configuration first. Are you sure you want to continue?Your system contains broken packages that couldn't be fixed with this software. Please fix them first using synaptic or apt-get before proceeding.Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-desktop or edubuntu-desktop package and it was not possible to detect which version of Ubuntu you are running. Please install one of the packages above first using synaptic or apt-get before proceeding.Your system uses an ARM CPU that is older than the ARMv6 architecture. All packages in karmic were built with optimizations requiring ARMv6 as the minimal architecture. It is not possible to upgrade your system to a new Ubuntu release with this hardware.Your system uses an i586 CPU or a CPU that does not have the 'cmov' extension. All packages were built with optimizations requiring i686 as the minimal architecture. It is not possible to upgrade your system to a new Ubuntu release with this hardware.Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' software is no longer supported, please switch it off and run the upgrade again when this is done._Cancel Upgrade_Continue_Keep_Remove_Replace_Report Bug_Restart Now_Resume Upgrade_Start Upgrade_Upgradeauthenticate '%(file)s' against '%(signature)s' ddependency problems - leaving unconfigureddisabled on upgrade to %sevms in useextracting '%s'nyProject-Id-Version: update-manager Report-Msgid-Bugs-To: sebastian.heinlein@web.de POT-Creation-Date: 2013-05-22 21:30+0100 PO-Revision-Date: 2013-05-23 02:43+0000 Last-Translator: Vilson Gjeci Language-Team: Albanian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=n != 1; X-Launchpad-Export-Date: 2014-04-23 06:50+0000 X-Generator: Launchpad (build 16985) Language: sq X-Poedit-Bookmarks: 126,-1,-1,-1,-1,-1,-1,-1,-1,-1 Ju lutemi ta raportoni këtë gabim në një shfletues interneti tek http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug dhe bashkangjitni skedarët tek /var/log/dist-upgrade/ në raportin e gabimit. %s Juve ju duhet të shkarkoni një total prej %s. %(amount)d paketa e instaluar nuk suportohet më nga Canonical. Ju mund të merrni prapëseprapë mbështetje nga bashkësia.%(amount)d paketat e instaluara nuk suportohen më nga Canonical. Ju mund të merrni prapëseprapë mbështetje nga bashkësia.%(str_days)s %(str_hours)s%(str_hours)s %(str_minutes)s%d paketë e re do të instalohet.%d paketa të reja do të instalohen.%d paketë do të hiqet.%d paketa do të hiqen.%d paketë do të përditësohet.%d paketa do të përditësohen.%li ditë%li ditët%li orë%li orë%li minutë%li minuta%li sekondë%li sekonda&Mbylle*DEPRECATED* ky opsion do të shpërfillet.<<< Fshihe Ndryshimin<<< Fshihe TerminalinTa fshijmë përditësimin e nisur? Sistemi mund të gjendet në një gjendje të paqëndrushme nëse e anulloni përditësimin. ju këshillojmë nxehtësisht që ta rinisni përditësimin.Ta anullojmë përditësimin që po kryhet? Sistemi mund të ngelet në një gjendje të paqëndrueshme nëse e anulloni përditësimin. Ju këshillojmë që ta vazhdoni përditësimin.Rinisni sistemin për të kompletuar përditësiminRindizni sistemin për të kompletuar përditësimin Ju lutemi të ruani punën tuaj para se të vezhdoni.Ta nisim përditësimin?Është i disponueshëm një version i ri i ubuntu. Do të donit ta përditësonit?Ulje në Shkallë (%s)Ndodhi një gabim fatalNjë problem ndodhi gjatë pastrimit. ju lutemi shikoni mesazhin e mësipërm për më tepër informacion. Ndodhi një problem gjatë përditësimit. Ky zakonisht është një lloj problemi me rrjetin, ju lutemi kontrolloni lidhjen tuaj me rrjetin dhe provojeni përsëri.Duke NdërprerëRreth %s të mbeturaShto daljen e kontrollit të gabimevePasi skanuam 'sources.list' nuk u gjet një hyrje e vlefshme '%s'. A duhet të shtohen hyrjet e parazgjedhura për '%s'? Nëse zgjidhni 'Jo', përditësimi do të anullohet.Ndodhi një problem i pazgjidhshëm ndërkohë që po llogarisnim përditësimin: %s Kjo mund të shkaktohet nga: * Përditësimi në një version testimi të Ubuntu * Nisja e versionit të testimit të Ubuntu * Paketa jo zyrtare të programeve që nuk jepen nga Ubuntu Një përditësim nga '%s' në '%s' nuk suportohet me këtë mjet.Duke aplikuar ndryshimetMë Pyet Më VonëIdentifikimi i përditësimit dështoi. Mund të ketë një problem me rrjetin ose me serverin. Identifikimi dështoiPaketat e dëmtuaraDuke llogaritur ndryshimetNuk mund të nisim përditësiminNuk mund të aktualizojNuk mund të shkruaj tek '%s'Can't guess meta-package'%s' nuk mund të instalohetAnullo Aktualizimin?Kontrollo nëse përditësimi në versionin e fundit dlevel është i disponueshëmKontrollo vetëm nëse një version i ri i distribucionit është i disponueshëm dhe raporto rezultatin me anë të kodit në daljeDuke kontrolluar për një version të ri të UbuntuDuke kontrolluar menaxhuesin e paketaveDuke pastruarVazhdo [Yn] Vazhdo [pJ] Të vazhdojmë punën nën SSH?Nuk mundëm të llogarisim hyrjen sources.listNuk mundëm të llogarisim përditësiminNuk mund të shkarkojmë shënimet e versionitNuk mund të aktualizohen, shkarkimetNuk mund të gjejmë shënimet e versionitNuk mund të instalojmë '%s'Nuk mund të instalohen, aktualizimetNuk mund ta nisim mjetin e përditësimitCtrl-c i shtypurServera të personalizuarDemoted: DetajetDetajet [d]Dallimet në mes të të dhënaveDirektori që përmban skedarët e të dhënaveÇaktivizo mbështetjen për ekranin e GNUPërditësim i DistribucionitDëshironi të nisni përditësimin?Mos e PërditësoDuke shkarkuar skedarë shtesë të paketave...Duke shkarkuar skedarin %(current)li nga %(total)liDuke shkarkuar skedarin %(current)li nga %(total)li me %(speed)s/sDuke shkarkuar mjetin për përditësimin e versionitGabimGabim gjatë vërtetimit të origjinalitetit të disa paketave.Gabim gjatë vendosjesGabim gjatë përditësimitNxjerrja e përditësimit dështoi. Mund të ketë një problem me rrjetin apo me serverin. Futja e CD dështoiDështova në shtimin e cdromDështuam në nxjerrjeDështuam në marrjeDuke mbledhurMarrja dhe instalimi i përditësimit mund të zgjasë disa orë. Pasi shkarkimi të ketë përfunduar, proçesi nuk mund të anullohet.Duke marrë skedarin %li të %liDuke marrë skedarin %li e %li në %sB/sMarrja u kompletuaMarrja e përditësimit dështoi. Mund të jetë një problem rrjeti. skedari %s nga %sSkedari %s nga %s në %sB/sPër informacionin e përditësimeve, ju lutemi të vizitoni: %(url)s Të gjenerojmë resurset e parazgjedhura?Duke marrë paketat e rejaDuke marrë kanalet e reja të programeveMarrja e kërkesave të përditësimit dështoiNëse asnjë nga këto nuk aplikohet, atëherë ju lutemi ta raportoni këtë gabim duke përdorur komandën 'ubuntu-bug ubuntu-release-upgrader-core' në një terminal.Nëse keni një firewall ju duhet që përkohësisht ta hapni këtë port. Duke qenë se kjo është potencialisht e rrezikshme nuk bëhet automatikisht. Ju mund ta hanpi portin me p.sh.: '%s'Të përfshijmë edhe përditësimet e fundit nga Interneti?InformacionInstalo %sInstalo (%s)Instalo: %s Instalimi i përditësimit mund të zgjasë disa orë. Pasi shkarkimi të ketë përfunduar, proçesi nuk mund të anullohet.Duke instaluar përditësimetInformacion i pavlefshëm i paketaveIshte i pamundur instalimi i një pakete të kërkuar. Ju lutemi ta raportoni këtë si një gabim duke përdorur 'ubuntu-bug ubuntu-release-upgrader-core' në një terminal.Disa paketa nuk mund të vërtetoheshin për origjinalitet.Kjo ka si pasojë problemet me rrjetin.Ju lutemi provoni më vonë edhe një herë.Paketat e mëposhtme nuk mund të vërtetohen për nga origjinaliteti.Nuk qe e mundur të krijohej ambienti i sandbox.Nuk është e mundur të shkruaj në drejtorinë e sistemit '%s' në sistemin tuaj. Përditësimi nuk mund të vazhdojë. Ju lutemi ta bëni të shkruajtshme drejtorinë tuaj të sistemit.Serveri KryesorNdryshim i MediasVersioni i ri '%s' i disponueshëm.Jo ARMv6 CPUJo i686 CPUNuk ka init të disponueshëmNuk nevojitet më (%s)Nuk suportohet më %sNuk suportohet më nga Canonical (%s)Nuk suportohet më: %s Nuk u gjet asnjë version i riNuk u gjet asnjë lidhje e vlefshmeNuk ka hapësirë të lirë sa duhetPaketa 'debsig-verify' është instaluarPaketë në gjendje të paqëndrueshmePaketa në gjendje të paqëndrueshmeKryej një përditësim të pjesshëmKryej një përditësim të pjesshëm (pa rishkruar sources.list)Bëni një përditësim të versionit.Ju lutemi kontrolloni lidhjen tuaj me internetin.Ju lutem Fut '%s' Në ngases '%s'Ju lutemi ta raportoni këtë gabim (nëse nuk e keni bërë tashmë) dhe përfshini skedarët /var/log/dist-upgrade/main.log dhe /var/log/dist-upgrade/apt.log në raportin tuaj. Përditësimi u anullua. Origjinali i sources.list u ruajt tek /etc/apt/sources.list.distUpgrade.Ju lutemi ta raportoni këtë gabim dhe përfshini skedarët /var/log/dist-upgrade/main.log dhe /var/log/dist-upgrade/apt.log në raportin tuaj. Përditësimi u anullua. Origjinali i sources.list u ruajt tek /etc/apt/sources.list.distUpgrade.Përgatitja e sistemit për përditësim dështoi ndaj një proçes i raportimit të gabimit po niset.Përgatitja e përditësimit dështoiDuke u përgatitur për përditësimDuke lexuar depozitënKërkohet rinisjaShënime Mbi VersioninPërditësimi i versionit nuk është i mundur për momentin.Largo %sHiqe (%s)Hiqe (ishte vetë instaluar) %sTi heqim paketat e vjetra?Fshije paketën në gjendje të keqeFshiji paketat në gjendje të keqeFshij: %s Heqja e paketave mund të zgjasë disa orë. Zëvendëso skedarin e përshtatur të konfigurimit '%s'?Informacioni i magazinës është i pavlefshëmVartësitë e kërkuara nuk janë instaluarKërkohet rinisjaDuke rinisur kompjuterinDuke kthyer gjendjen origjinale të sistemitNis 'do-release-upgrade' për të përditësuar atë.Nise në një mënyrë speciale përditësimi. Për momentin suportohet 'desktop' për përditësimet e rregullta dhe 'server' për sistemet server.Nis hapin e specifikuarDuke nisur një përditësim të pjesshëmNisja e ambientit të desktopit 'unity' nuk suportohet plotësisht nga hardware juaj i grafikëve. Ndoshta mund të përfundoni në një ambient shumë të ngadaltë pas përditësimit. Këshilla jonë është të mbani versionin LTS për momentin. Për më tepër informacion shikoni https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D. Prapëseprapë a dëshironi të vazhdoni me përditësimin?Mënyra SandboxInstalimi i Sandbox dështoiPo përditësojmë Sandbox duke përdorur aufsDuke kërkuar për programe të vjetraServeri për %sVendos datadirDuke vendosur kanale të reja të programeveShfaq Ndryshimin >>>Trego Terminalin >>>Shfaq progresin e skedarëve individualëShfaq versionin dhe dilDisa hyrje nga palë të treta në sources.list u çaktivizuan. Ju mund t'i riaktivizoni ato pas përditësimit me mjetin 'parametrat e programeve' ose me menaxhuesin tuaj të paketave.Më vjen keq, shtimi i cdrom nuk qe i suksesshëm.Po nisim sshd shtesëAktualizimi i sistemit është kompletTerminaliTestoje përditësimin me mbivedosjen e sandbox aufsKomanda 'diff' nuk u gjetMesazhi i gabimit është '%s'.Paketa thelbësore '%s' është shënuar për tu hequr.Paketa '%s' është në një gjendje të paqëndrueshme dhe ka nevojë të riinstalohet, por nuk është gjetur asnjë arkiv për të. Dëshironi ta hiqni këtë paketë tani për të vazhduar?Paketat '%s' janë në një gjendje të paqëndrueshme dhe kanë nevojë të riinstalohen, por nuk është gjetur asnjë arkiv për to. Dëshironi t'i hiqni këto paketa tani për të vazhduar?Paketa '%s' është në një gjendje jo të qëndrueshme dhe duhet riinstaluar, por për të nuk mund të gjendet asnjë arkiv. ju lutemi riinstalojeni paketën në mënyrë manuale ose hiqeni nga sistemi.Paketat '%s' janë në një gjendje jo të qëndrueshme dhe duhen riinstaluar, por për to nuk mund të gjendet asnjë arkiv. ju lutemi riinstalojini paketat në mënyrë manuale ose hiqini nga sistemi.Paketa '%s' është shënuar për tu hequr, por është në listën e zezë të heqjes.Përditësimi i pjesshëm nuk u kompletua.Përditësimi i versionit nuk mund të bëhet siç duhet. Ju lutemi ta provoni përsëri më vonë. Serveri raportoi: '%s'Vartësia e kërkuar '%s' nuk është instaluar. Serveri mund të jetë i mbingarkuarServeri mund të jetë i mbingarkuar. Programet në këtë kompjuter janë të përditësuara.Mbështetja në Ubuntu 12.04 LTS pëe hardware tuaj të grafikëve Intel është e kufizuar dhe ju mund të hansi në probleme pas përditësimit. Për më tepër informacion shikoni https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Dëshironi të vazhdoni me përditësimin?Sistemi nuk ishte në gjendje të merrte kërkesat paraprake përpërditësim. Përditësimi tani do të abortohet dhe do të kthejë gjendje origjinale të sistemit. Gjithashtu, një proçes i raportimit të gabimit do të niset.Përditësimi nuk mund të vazhdojë me atë paketë të instaluar. Ju lutemi hiqeni paraprakisht me synaptic ose 'apt-get remove debsig-verify' dhe nisni përditësimin përsëri.Përditësimi u anullua. Ju lutemi të kontrolloni lidhjen tuaj me internetin apo median e instalimit dhe të provoni përsëri. Përditësimi u anullua. Ju lutemi të kontrolloni lidhjen tuaj me internatin apo median tuaj të instalimit dhe ta provoni përsëri. Të gjithë skedarët e shkarkuar deri në këtë moment janë mbajtur.Ky përditësim u anullua. Përditësimi ka nevojë për një total prej %s hapësirë të lirë në diskun '%s'. Ju lutemi të lironi të paktën %s hapësirë shtesë në diskun '%s'. Zbrazni koshin e mbeturinave dhe hiqni paketat e përkohshme të instalimeve të mëparshme duke përdorur 'sudo apt-get clean'.Përditësimi u anullua. Sistemi juaj mund të jetë në një gjendje të paqëndrueshme. Tani do të nisë rekuperimi (dpkg --configure -a).Përditësimi u kompletua por pati gabime gjatë proçesit të përditësimit.Përditësimi përfundoi dhe kërkohet një rindezje. Dëshironi ta bëni këtë tani?Sistemi i përditësimit mund të përdorë internetin për të shkarkuar automatikisht përditësimet e fundit dhe për t'i instaluar ato gjatë përditësimit. Nëse keni një lidhje me rrjetin j'ua rekomandojmë nxehtësisht këtë. Përditësimi do të zgjasë më shumë, por kur të kompletohet, sistemi juaj do të jetë tërësisht i përditësuar. Ju mund të zgjidhni të mos e bëni këtë, por ju duhet të instaloni përditësimet e fundit me njëherë pas instalimit. Nëse përgjigjeni 'jo' këtu, rrjeti nuk do të përdoret fare.Përditësimi do të anullohet tani dhe do të kthehet gjendja origjinale e sistemit. Ju mund ta rinisni përditësimin më vonë.Përditësimi do të vazhdojë por paketa '%s' mund të mos jetë në gjendje pune. ju lutemi të konsideroni lëshimin e një raporti të defektit rreth saj.Ato aktualizime nuk jan te gatshem per sistemin tuaj. Aktualizimet nuk mun te largohen.Pati një gabim në shtimin e CD, përditësimi do të abortohet. Ju lutemi raportojeni këtë si një defekt nëse ky është një CD i vlefshëm i Ubuntu. Mesazhi i gabimit ishte: '%s'Burimet e palëve të treta janë çaktivizuarKy kompjuter për momentin po përdorin driverin e grafikëve AMD 'fglrx'. Nuk ka një version të disponueshëm të këtij driveri që të punojë me kartën tuaj video në Ubuntu 10.04 LTS. Dëshironi të vazhdoni?Ky kompjuter për momentin po përdorin driverin e grafikëve NVIDIA 'nvidia'. Nuk ka një version të disponueshëm të këtij driveri që të punojë me kartën tuaj video në Ubuntu 10.04 LTS. Dëshironi të vazhdoni?Ky shkarkim do të zgjasë rreth %s me një lidhje 1Mbit DSL dhe rreth %s me një modem 56k.Ky shkarkim do të dojë %s me lidhjen tuaj. Ky ka mundësi të jetë një gabim në mjetin e përditësimit. Ju lutemi ta raportoni si një gabim duke përdorur komandën 'ubuntu-bug ubuntu-release-upgrader-core'.Ky ka mundësi të jetë një problem kalimtar, ju lutemi provojeni përsëri më vonë.Ky seksion duket se është nisur me ssh. Nuk rekomandohet për momentin të kryeni një përditësim me ssh sepse në rast dështimi është e vështirë të rekuperoni. Nëse vazhdoni, një ssh daemon shtesë do të nisë në portin '%s'. Dëshironi të vazhdoni?Ky përditësim është nisur në mënyrën e kutisë së rërës (testimi). Të gjitha ndryshimet janë shkruar tek '%s' dhe do të humbasin pas rindezjes. *Asnjë* ndryshim i shkruajtur në një drejtori të sistemit nga tani e deri në rindezje nuk do të jetë i përhershëm.Kjo zakonisht shkaktohet nga një sistem ku /tmp montohet noexec. Ju lutemi ta rimontoni pa noexec dhe nisni përditësimin përsëri.Kjo dmth se me siguri, një tjetër Paketmanager është aktiv (si psh apt-get ose aptitude). Ju lutemi mbylleni së pari këtë aplikacion.Kjo mund të ndërpresë këtë operacion dhe bërë që sistemi të jetë jo i qëndrueshëm. A jeni të sigurtë, se dëshironi ta bëni këtë?Për të vazhduar ju lutemi të shtypni [ENTER]Për të mbaruar aktualizimin, kërkohet një rinisje. Në qoftëse ju zgjithni 'y' sistemi do të rinis.Për ta bërë riparimin më të lehtë në rastin e ndonjë dështimi, një sshd shtesë do të nisë në portin '%s'. Nëse diçka nuk shkon si duhet me ssh e nisur, ju mund të vazhdoni të lidheni me atë shtesë. Për të kryer një përditësim të pjesshëm, ju duhet të identifikoheni.Për të parandaluar humbjen e të dhënave mbyllni të gjitha programet dhe dokumentat e hapura.Për të përditësuar Ubuntu, ju duhet të identifikoheni.Përpiqu të përditësosh në versionin e fundit duke përdorur përditësuesin nga $distro-proposedDuke u përpjekur të istaloj versionin e listës së zezë '%s'Ubuntu %(versioni)s Përditësim i DisponueshëmËshtë e pamundur të merret një hyrje ekskluziveI pamundur lokalizimi i skedarëve të paketave, ndoshta ky nuk është një disk i Ubuntu ose është në arkitekturë e gabuar?Duke përditësuar informacionin e magazinësAktualizoAktualizo %sPërditëso (%s)Përditësimi u anulluaAktualizimi përfundoiMjeti përditësuesPërditësoni firmën e mjeteveAktualizo: %s AktualizoPërditësimi mund të pakësojë efektet e desktopit, performancën e lojërave dhe të programeve të tjerë me grafikë intensivë.Përditësimi nga një lidhje e largët nuk suportohetPërditësimi i informacionit të magazinës krijoi një skedar të apvlefshëm kështu që një proçes i raportimit të gabimit u krijua.Përdor frontend. E disponueshme për momentin: DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDEPërdor shkurtoren e dhënë për të kërkuar për një cdrom me paketa të përditësueshmeVerifikimi dështoiVerifikimi i përditësimit dështoi. Mund të ketë një problem me rrjetin apo me serverin. Ndërkohë që po skanonim informacionin e magazinave tuaja nuk u gjet një pasqyrë për përditësim. Kjo mund të ndodhë kur ju keni një pasqyrë të brendshme ose kur informacioni i pasqyrës nuk është i përditësuar. Dëshironi ta rishkruani gjithësesi skedarin tuaj 'sources.list'? Nëse zgjidhni 'Po' këtu ai do t'i përditësojë të gjitha hyrjet '%s' tek '%s'. Nëse zgjidhni 'Jo' përditësimi do të anullohet.Po, Përditësoje TaniJu po e nisni përditësimin nga një lidhje e largët ssh me një frontend që nuk e suporton atë. Ju lutemi të provoni një përditësim në mënyrë teksti me 'do-release-upgrade'. Përditësimi do të mbyllet tani. Ju lutemi provojeni pa ssh.Ju mund të përditësoni më vonë duke hapur Përditësuesin e Programeve dhe duke klikuar mbi "Përditëso".Ju e keni mohuar përditësimin tek ubuntu %sJu e keni mohuar përditësimin për Ubuntu-n e riJu do të humbisni çdo ndryshim që i keni bërë këtij skedari konfigurimi nëse vendosni që ta zëvendësoni atë me një version më të ri.Versioni juaj i Ubuntu nuk suportohet më.Grafikët tuaj mund të mos suportohen plotësisht në Ubuntu 12.04 LTS.Instalimi juaj i python është i dëmtuar. Ju lutemi rregulloni '/usr/bin/python' symlink.Sistemi juaj duket se është një ambient i virtulizuar pa një init daemon, pra Linux-VServer. Ubuntu 10.04 LTS nuk mund të funksionojë brenda këtij lloj ambienti, sepse kërkon që fillimisht ju t'i bëni një përditësim konfigurimit të makinës suaj virtuale. Jeni i sigurtë që dëshironi të vazhdoni?Sistemi juaj përmban paketa defekt, të cilat nuk mund të riparohen me këtë softuer.Ju lutemi riparoni këtë me Synaptic ose apt-get, para se të shkoni përpara.Sistemi juaj nuk prëmban një paketë ubuntu-desktop, kubuntu-desktop, xubuntu-desktop ose edubuntu-desktop dhe nuk kemi mundësi të dallojmë cilin version të Ubuntu dispononi. Ju lutemi instaloni fillimisht një nga paketat e mësipërme duke përdorur synaptic apo apt-get para proçedimit.Sistemi juaj përdor një ARM CPU i cili është më i vjetër se arkitektura ARMv6. Të gjitha paketat në KArmic janë ndërtuar me përmirësime që kërkojnë ARMv6 si arkitekturë minimale. Nuk është e mundur ta përditësoni sistemin tuaj në një version të ri të Ubuntu me këtë hardware.Sistemi juaj përdor një CPU i586 ose një CPU që nuk e ka zgjatimin 'cmov'. Të gjitha paketat janë ndërtuar me përmirësime që kërkojnë i686 si arkitekturë minimale. Nuk është e mundur ta përditësoni sistemin tuaj në një version të ri të Ubuntu me këtë hardware.Sistemi juaj përdor menaxhuesin e volumit 'evms' në /proc/mounts. Programi 'evms' nuk suportohet më, ju lutemi fikeni atë dhe nisni përditësimin përsëri kur të keni mbaruar._Ndërprej aktualizimin_Vazhdo_Mbaj_Hiqe_Zevëndëso_Raporto Bug_Rinis tani_Duke Rinisur Përditësimin_Starto Aktualizimin_Përditësoidentifiko '%(file)s' kundrejt '%(signature)s' dprobleme vartësie - po e lëmë të pakonfiguruaru çaktivizua në përditësimin e %sevms është në përdorimduke ekstraktuar '%s'jpubuntu-release-upgrader-0.220.10/check_new_release_gtk.py0000777000000000000000000000000012431225715024225 2check-new-release-gtkustar ubuntu-release-upgrader-0.220.10/mkinstalldirs0000755000000000000000000000370412431225715016205 0ustar #! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman # Created: 1993-05-16 # Public domain errstatus=0 dirmode="" usage="\ Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..." # process command line arguments while test $# -gt 0 ; do case $1 in -h | --help | --h*) # -h for help echo "$usage" 1>&2 exit 0 ;; -m) # -m PERM arg shift test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } dirmode=$1 shift ;; --) # stop option processing shift break ;; -*) # unknown option echo "$usage" 1>&2 exit 1 ;; *) # first non-opt arg break ;; esac done for file do if test -d "$file"; then shift else break fi done case $# in 0) exit 0 ;; esac case $dirmode in '') if mkdir -p -- . 2>/dev/null; then echo "mkdir -p -- $*" exec mkdir -p -- "$@" fi ;; *) if mkdir -m "$dirmode" -p -- . 2>/dev/null; then echo "mkdir -m $dirmode -p -- $*" exec mkdir -m "$dirmode" -p -- "$@" fi ;; esac for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d do pathcomp="$pathcomp$d" case $pathcomp in -*) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr else if test ! -z "$dirmode"; then echo "chmod $dirmode $pathcomp" lasterr="" chmod "$dirmode" "$pathcomp" || lasterr=$? if test ! -z "$lasterr"; then errstatus=$lasterr fi fi fi fi pathcomp="$pathcomp/" done done exit $errstatus # Local Variables: # mode: shell-script # sh-indentation: 2 # End: # mkinstalldirs ends here ubuntu-release-upgrader-0.220.10/pre-build.sh0000755000000000000000000000277712602567610015635 0ustar #!/bin/sh set -e # The testsuite has a sad if you're in a non-UTF-8 locale: export LANG='C.UTF-8' dpkg-checkbuilddeps -d 'python3-apt, apt-btrfs-snapshot, parsewiki, python-feedparser, python3-mock, xvfb, gir1.2-gtk-3.0, python3-gi, python3-nose' # update demotions (cd utils && ./demotions.py saucy trusty > demoted.cfg) # when this gets enabled, make sure to add symlink in DistUpgrade (cd utils && ./demotions.py precise trusty > demoted.cfg.precise) # update apt_btrfs_snapshot.py copy, this needs an installed # apt-btrfs-snapshot on the build machine if [ ! -e /usr/lib/python2.7/dist-packages/apt_btrfs_snapshot.py ]; then echo "please sudo apt-get install apt-btrfs-snapshot" exit 1 fi cp /usr/lib/python2.7/dist-packages/apt_btrfs_snapshot.py DistUpgrade # (auto) generate the required html if [ ! -x /usr/bin/parsewiki ]; then echo "please sudo apt-get install parsewiki" exit 1 fi (cd DistUpgrade; parsewiki DevelReleaseAnnouncement > DevelReleaseAnnouncement.html; parsewiki ReleaseAnnouncement > ReleaseAnnouncement.html; parsewiki EOLReleaseAnnouncement > EOLReleaseAnnouncement.html; ) # cleanup rm -rf utils/apt/lists utils/apt/*.bin (cd utils && ./update_mirrors.py ../data/mirrors.cfg) # run the test-suite #echo "Running integrated tests" nosetests3 # test leftovers rm -f ./tests/data-sources-list-test/apt.log # update version DEBVER=$(LC_ALL=C dpkg-parsechangelog |sed -n -e '/^Version:/s/^Version: //p' | sed s/.*://) echo "VERSION='$DEBVER'" > DistUpgrade/DistUpgradeVersion.py ubuntu-release-upgrader-0.220.10/utils/0000755000000000000000000000000013017612615014533 5ustar ubuntu-release-upgrader-0.220.10/utils/demoted.cfg.hardy0000644000000000000000000001764112431225715017754 0ustar # demoted packages from hardy to lucid acpi adept analog app-install-data-edubuntu aspell-af aspell-am aspell-ar aspell-bg aspell-bn aspell-br aspell-ca aspell-cs aspell-cy aspell-da aspell-de aspell-de-alt aspell-el aspell-eo aspell-es aspell-et aspell-fa aspell-fo aspell-fr aspell-ga aspell-gl-minimos aspell-gu aspell-he aspell-hr aspell-hu aspell-hy aspell-is aspell-it aspell-ku aspell-lt aspell-lv aspell-ml aspell-nl aspell-no aspell-nr aspell-ns aspell-or aspell-pa aspell-pl aspell-pt-br aspell-pt-pt aspell-ro aspell-ru aspell-sk aspell-sl aspell-ss aspell-st aspell-sv aspell-ta aspell-te aspell-tn aspell-ts aspell-uk aspell-xh aspell-zu atomix atomix-data bacula-traymonitor bicyclerepair binutils-static brazilian-conjugate bug-buddy capiutils cgilib compiz-fusion-plugins-extra console-tools console-tools-dev contacts-snapshot cpp-4.1 cpp-4.1-doc cpp-4.2 cpp-4.2-doc cricket cups-pdf cupsddk db4.6-doc db4.6-util debtags denemo desktop-base diff-doc discover1 dpkg-awk drdsl edubuntu-artwork edubuntu-desktop edubuntu-desktop-kde edubuntu-docs edubuntu-server elinks elinks-data elinks-doc elisa emacs22 emacs22-bin-common emacs22-common emacs22-el emacs22-nox enigmail epiphany-browser epiphany-browser-data epiphany-browser-dbg epiphany-browser-dev epiphany-extensions epiphany-gecko fbreader fdutils fontforge-doc freeradius-dialupadmin freeradius-iodbc freeradius-krb5 freeradius-ldap freeradius-mysql freeradius-postgresql g++-4.2 g++-4.2-multilib galculator gcc-4.1 gcc-4.1-base gcc-4.1-doc gcc-4.1-multilib gcc-4.1-source gcc-4.2 gcc-4.2-base gcc-4.2-doc gcc-4.2-locales gcc-4.2-multilib gcc-4.2-source gcompris gcompris-data gcompris-dbg gcompris-sound-ar gcompris-sound-bg gcompris-sound-br gcompris-sound-cs gcompris-sound-da gcompris-sound-de gcompris-sound-el gcompris-sound-en gcompris-sound-es gcompris-sound-eu gcompris-sound-fi gcompris-sound-fr gcompris-sound-hi gcompris-sound-hu gcompris-sound-id gcompris-sound-it gcompris-sound-mr gcompris-sound-nb gcompris-sound-nl gcompris-sound-pt gcompris-sound-ptbr gcompris-sound-ru gcompris-sound-so gcompris-sound-sr gcompris-sound-sv gcompris-sound-tr gcompris-sound-ur gengetopt gfortran-4.2 gfortran-4.2-doc glut-doc glutg3-dev gnome-icon-theme-gartoon gnome-mount gnome-netstatus-applet gnome-pilot gnome-pilot-conduits gnome-volume-manager gobby gobjc-4.2 gpaint gpgsm gstreamer0.10-gnomevfs gthumb gtk2-engines-sapwood gtk2-engines-sapwood-dbg guile-1.6 guile-1.6-dev guile-1.6-doc guile-1.6-libs hildon-control-panel hildon-control-panel-dbg hildon-control-panel-dev hildon-control-panel-l10n-engb hildon-control-panel-l10n-english hildon-thumbnail hildon-update-category-database human-icon-theme ibrazilian ibritish ibulgarian icatalan iczech idanish idutch iesperanto iestonian ifaroese ifrench-gut ihungarian iirish iitalian ilithuanian imanx indi ingerman inorwegian iogerman ipolish iportuguese ipppd irussian isdnutils-base isdnutils-doc isdnutils-xtools ispanish iswedish iswiss itagalog italc-client italc-master iukrainian javacc-doc kdeartwork-theme-icon kdeartwork-theme-window keep kernel-package kexi khelpcenter kino klogd kmplayer kmplayer-base koffice-data koffice-doc-html koffice-libs kspread ktorrent kubuntu-artwork-usplash kugar kwin-style-crystal kword kword-data kxsldbg language-support-writing-no language-support-writing-sw laptop-mode-tools lib32gfortran2 lib32gfortran2-dbg lib32stdc++6-4.2-dbg lib64gfortran2 lib64gfortran2-dbg lib64stdc++6-4.2-dbg libalut-dev libalut0 libapache2-mod-auth-pam libapache2-mod-auth-sys-group libapache2-svn libares-dev libares0 libavahi-compat-howl-dev libavahi-compat-howl0 libboost-python-dev libcapi20-3 libcapi20-dev libcdio7 libchicken-dev libconsole libdb4.2 libdb4.2++-dev libdb4.2++c2 libdb4.2-dev libdb4.6 libdb4.6++ libdb4.6++-dev libdb4.6-dbg libdb4.6-dev libdb4.6-java libdb4.6-java-dev libdb4.6-java-gcj libdiscover1-dev libehcache-java libesd-alsa0 libfile-which-perl libgda3-3 libgda3-3-dbg libgda3-common libgda3-dev libgda3-doc libgfortran2 libgfortran2-dbg libggz-gtk-dev libggz-gtk1 libggzdmod++-dev libggzdmod++1 libggzdmod-dev libggzdmod6 libglew1.5 libglew1.5-dev libglut3 libglut3-dev libgnet-dev libgnet2.0-0 libgnome-speech-dev libgnome-speech7 libgnomevfs2-bin libgnumail-java-doc libguile-ltdl-1 libhildon-1-0 libhildon-1-0-dbg libhildon-1-dev libhildonhelp-dev libhildonhelp0 libhildonhelp0-dbg libhildonmime-dev libhildonmime0 libhildonmime0-dbg libio-socket-ssl-perl libiso9660-dev libitalc libitext-java libiw29 libjakarta-poi-java libjakarta-poi-java-doc libjcommon-java libjcommon-java-doc libjsr107cache-java libkpathsea4 libloader-java libloader-java-doc liblockdev1 liblockdev1-dbg liblockdev1-dev libmatchbox-dev libmatchbox1 libmikmod2 libmikmod2-dev libmimelib1-dev libmimelib1c2a libmokoui2-0 libmokoui2-dev libmokoui2-doc libmysqlclient15off libnet-ssleay-perl libnet6-1.3-0 libnet6-1.3-0-dbg libnet6-1.3-dev libobby-0.4-1 libobby-0.4-dev libopenal-dev libopensync0 libopensync0-dbg libopensync0-dev libosso-dev libosso1 libosso1-dbg libosso1-doc libpam-thinkfinger libpigment-dbg libpigment0.3-dev libpixie-java libpolkit-gnome-dev libpolkit-gnome0 libportaudio-dev libportaudio-doc libportaudio0 libpqxx-2.6.9ldbl libpqxx-dev libpt-1.10.10 libpt-1.10.10-dbg libpt-1.10.10-plugins-alsa libpt-1.10.10-plugins-v4l libpt-1.10.10-plugins-v4l2 libqcad0-dev libqt-perl libqthreads-12 librsvg2-bin librsync-dev librsync1 libscim-dev libscim8c2a libsdl-image1.2 libsdl-image1.2-dev libsdl-mixer1.2 libsdl-mixer1.2-dev libsdl-pango-dev libsdl-pango1 libsdl-ttf2.0-0 libsdl-ttf2.0-dev libsensors-dev libsensors3 libskim-dev libskim0 libsmbios-dev libsmbios-doc libsmokeqt-dev libsmokeqt1 libsmpeg-dev libsmpeg0 libsnmp-session-perl libstdc++6-4.1-dbg libstdc++6-4.1-doc libstdc++6-4.2-dbg libstdc++6-4.2-dev libstdc++6-4.2-doc libsvn-java libsvn-ruby libsvn-ruby1.8 libthinkfinger-dev libthinkfinger-doc libthinkfinger0 libwriter2latex-java-doc libwv2-dev libxml-encoding-perl libxml-writer-perl libzlcore-dev libzltext-dev libzlui-gtk linux-headers-rt lsb-languages lsb-multimedia maemo-af-desktop-l10n-engb maemo-af-desktop-l10n-english matchbox-keyboard matchbox-window-manager mce-dev mesa-utils mii-diag mimetex minicom moodle myspell-da myspell-fr-gut myspell-sw netcat-traditional nut-hal-drivers openoffice.org-style-crystal openoffice.org-writer2latex osso-af-settings osso-gwconnect osso-gwconnect-dev pccts pidgin-otr planner planner-dev policykit-gnome policykit-gnome-doc poster powermanagement-interface powernowd pppdcapiplugin pyqt-tools python-bluez python-clientform python-daap python-gdata python-hildon python-hildon-dev python-launchpad-bugs python-mechanize python-numeric python-numeric-dbg python-numeric-ext python-numeric-ext-dbg python-pgm python-pqueue python-pylirc python-pysqlite2 python-pysqlite2-dbg python-qt-dev python-qt3 python-qt3-dbg python-qt3-doc python-qtext python-qtext-dbg python-selinux python-sexy python-tcm python-twisted-web2 python-tz python2.5 python2.5-dbg python2.5-doc python2.5-examples python2.5-minimal qca-tls qcad qcad-doc qt3-assistant quanta quanta-data rasmol rasmol-doc rdiff-backup rss-glx scim scim-anthy scim-bridge-agent scim-bridge-client-gtk scim-bridge-client-qt scim-bridge-client-qt4 scim-chewing scim-dev scim-dev-doc scim-gtk2-immodule scim-hangul scim-m17n scim-modules-socket scim-modules-table scim-pinyin scim-qtimm scim-tables-additional scim-tables-zh selinux-utils sensord sepol-utils skim sound-juicer speedcrunch student-control-panel swat sysklogd tagcoll tangerine-icon-theme tasks tasks-dbg tcl8.3 tcl8.3-dev tcl8.3-doc tdb-tools tetex-extra thin-client-manager-backend thin-client-manager-gnome thinkfinger-tools ttf-kochi-gothic ttf-kochi-mincho ttf-sil-andika ttf-sil-doulos ttf-sil-gentium tuxmath tuxpaint tuxpaint-data tuxpaint-stamps-default tuxtype tuxtype-data usplash-theme-ubuntu vlock w3c-dtd-xhtml workrave xaos xapian-examples xapian-tools xresprobe xsane xsane-common xsane-doc xserver-xorg-video-amd xserver-xorg-video-amd-dbg xserver-xorg-video-dummy xserver-xorg-video-glint xserver-xorg-video-via zope-common ubuntu-release-upgrader-0.220.10/utils/demoted.cfg.lucid0000644000000000000000000000000012431225715017722 0ustar ubuntu-release-upgrader-0.220.10/utils/apt/0000755000000000000000000000000013017612615015317 5ustar ubuntu-release-upgrader-0.220.10/utils/apt/sources.list0000644000000000000000000000006113017612141017666 0ustar deb http://archive.ubuntu.com/ubuntu trusty main ubuntu-release-upgrader-0.220.10/utils/apt/trusted.gpg0000644000000000000000000003624212431225715017517 0ustar AD?.F1ف|޼*Dea^*C:aRʚ_ ۓ6+ tjc1>8-b c ű)QP!}dmeCVEX(Q6W0$Xvð h#WZ7uē;mnTH"'9,-<RАF,Qb@q*pt %ieץ[P Fpi0~8\?Wځ][-Z)m$`+RaK)X_HұG6 #|9F< 'Kuϧ7 m-$7 (Cv,_b>b.(J>$aY1ʟn%8/V ];Ubuntu Archive Automatic Signing Key ^AD?  @nC}$SHW2ǒZ\6;yHNs *FAQg 1*}1!\dǖ)K&A9> eo㿍;ȰFC 膧$eǢIט;Yj܎/87`2vF% XIFCK j8xUV%5GJC@@zk>[k-a⒰FD( Tm.A\b\_:Np"ޤL)&*%椇 EƔ*(FE [l3;]XnX ȇ{ o2^Кb:X*t6,)e FE /m4 " `S:~ͦKK,d-nƯ]fFE0 y_?4WP0XpD1Zn阜N"} FEB  9`˧f (@s!K'8<VaKX;-ݡFE` .P焢"$t 伧V8ܦu-(qƟ4FEg| ~K\T|1r?sn'Ԕ#7%?}_ ^5El FE) Y҇K* )lGV2"VNF0 o7Yk|FE }Fj8EqװE=*Dr3>P]iZzFE1 >;_uL^wR_WfۑA}ʾCi@mlHFF 3L|BL4ues>\q7רMsFB 0kUDƑ< Scr{yuTMu (Q8O,ɔ *UOaFB P&<x\؍z{b"ǀmaЪ6#?I Ep % "J/푘5}_M I5xgn '1ZG4ƕ  ?'/[ @|}aϮ~D==W#z#Gg NTofy`CN@Ɓ6)@2k\1X 7Q)Y͊vli}1c~aG TPV>ޜ#u埂)"XjN-.``vR{4zB5W~Y*^ tAe z |e ̑i ^VrNT#m9ܗX!G-joq'm6!yPsL# 5T5M)L>9jbeaQtwlP?mC Zȃ#.8@ Zҫ϶z ZAxb"W4AGϚs>wϤB- ip6[~n@G\HDqkɓAz61oF3 (8!;p扗eVLd<5ل®hAq73֐ f7M˟jt ADG%KLQ똶@n$)fQKڊZ$Ri7oSyZ0EXyJ(bpq3ujr]Z<ײJyr- N;rȶ(j~VUlE! :&|;R LvhHU*!bάFf}g PD+ƓOBu&Jh,H/ b$=RM<m,;|LN1_O,V,V ذO9ikſ'+ ؀5ɟs郂A#z)"d0NV=Qm`qAB`ڤ5SKR-' hڑ rVUeJNН(ymg;t2B'3BDA==b%4+#LZ g{][uXa,/W mLCj8rG2t7=s(p]}:z6lz7N:b#۪Q~JH݈d#_=I ADG @nC}XOm{ tD325O z zwtARx q7iUxUۯj=]|=k껜Z:\m5c@溃ĴxhvhTPC{-6ѧ7/DK'UDy{@rܽ)L#787[x͏Q Mg]OJږn$EF#5Vٵ(dlnCE >[5K5;^0e06~I`R[K>"]G;r֎p//`IBۣz{S.bŮ_|0ങwuF"aw1-`dr+',Ռ |ǟ$x#Vj,Qcs;-7#X&_۠_ye;[dqI(ݑ%* A:Ubuntu CD Image Automatic Signing Key ^ARx  F3TQyPwoJ(M_u@:FuFAԠ 3Lrhve (4PۂsbqYdv}rFDٍ Պ`+$Lw^Oh'+U.Kam6U-qܦB=FD/ :aSQ(/$j.ltQ4az_nCczl/FE [l3\=SLߞ3ea9xԚNqgpܬpf[܍vFEy Y҇KȦEw͛hJ/@>`pcd9lifFEk v>$P'\O *`c8#p?I Df UX ( eUT'S_4Ʒľ͵=^I|'ıݰI Ep % 2e(Dloّ0q/PN=CD|hCod R ._k(m9:?rc6Fyc%Eu\o|q\ZJ`!/pµ5:to3 % @w軦Kow b3'E8Wyzg4SМ>G0e3 o|tP"v^4ePP80 M-ݯaooD ig"s,Ñ 6?^Q3_Y,΍)QʼFH—cQY''bɔ19qYAe6W̭~<,P歷2;sER؍w2;taGO ,JEtӄa&z}xfs뮫D- ig"s,Ñ |CMmAFߍĬƓV}Qk4vcRܯ1pj:tt%^i&}3%>vK'Aj~Ac"$~c؏*cY={+1)H7 ՚|2}a(zt^%)OJxx#)#SGo^{/'_Rz#[ۦ0D! ig"s,Ñ kO8x; Pt9_䠀1 ]_a϶VN yo𐿦ΈuM;B2;|=|'}2&_YsZvH/1}]Tw5C/B?\ +v2i8tCR2U|)kgZQIrp(sz V}5o$' P{a.셂1HcI&Hܰ0D㴻 ig"s,Ñ ;TL˛5* tG& 4F DFKʻ`n5وvVo(;pIvU7rKO f[ƱZetoz:(^Ѿ.8=MIg9HNLηM׼4gp8a<.k|֢;`[sKnx`8g>Dڐy / rYᦞO5}|y Ͻ@+0td V W;@G4ƞ  ?'/[ަ?ldґ(=VppQl ;M|Kp{lLn~P 2?5]<,t ?{ApG~l޻4]@6,0 Rr+8oauSHB)|[r{KX)FX\bu}'@IpDkްr4ǥA"m\&b;n&7$$g'h *~[Ip؋^z٫< sn ö:иteis_aXѺ*wp%;Blok\(kqN$2QݹDUZᇍA, OjXΞgC;3(Cv|#3VL)k\K_J1 )Aev\kJaSy*sL{ZDzyUFG2lQїD4ͬ)R&U"6 ,Z or%(C1tNǏY`;=BǦ Ox߈J4Q~CGǛY~o8FBuN-SUg/&C-m8Zu8X(Ԃ^5kЂ ԶRKgv >w[ɗg+7~{)|!C{X\ 2yU#~uF9an lkcK!ԫ~T$vSC3E5g>YU%)Qѿj~0Kf[n@ig19U"(7Pԡ_Ju(9vm-vqA}  K!N%#b H R 3lHz <*^E#ΑZYA+(?;%mtޟd]wZ$y8GҲ +VM[*)h l׭ChRE0oD1'ӹZjBbi0BUbuntu Archive Automatic Signing Key (2012) 8"Ox   ;O2]~t`̉rO"F2Dߖag T4xSB\g&ir$ŗBaXz7+IOq;GU@s[ =pR]de^<0 YHJnV xvɡ4) LRp.J ҩCF n*85G|Y ![ߪD|WrGI$~3RiQ1 ML*7bwNGg`ƥ G\|h˕Sqh"n C?"Φ mh%ߩ A}=;=5[Ơb+RN8zW"}UO\ 95}P _eei8!D _DȾEdWM0L>?ׄ[f6܄ *n9+K| #17W&J 1g~=cC5a V#/Xgk =ףzJhi(4͙P)ZO/"VM<kx677*$0NS9NTŕ8KZ~N8ңW:tQ0 z} H> ]dT.}n] d `\HP!wdz)C<:Toݥ4bXaNK.-wҿ1xs{r1ױ\7(bF^rsL,V~TuIs\hjA'3 _c?LJfgkqy91zA(H#cCeTO %Y|kJ;+xtO"1,̅Sgc*+PwP3]S݁{4Ob  ?'/[gjp?:%!b uC]Ts}_h>"3*k8!.>93z+#'.h mLP'W xp^RNsC5?9o!3[V[qp<*)g߇ثD¥cD]A ۂBy3lꢪl.o]Q+st65q=T5{+럀"0ߚb샻5<g loШ]f#JO1H֐ûӂ9hfѳО2W%D]7uh MqugEy IH'!NvἏz`/SتRiTtM۠ =|$~]ɧ2{oZdm%fmH@ D &vW S|Ǘ?=rtK-mn6]9F2۰O 1*K[:Ha\/5O)"^fOcN#B_:"e"0=?@/p;bPir;& 0-˘{N'7y>g/ɏCkI=)~f $#c!/: hYPD*EQnmEx=4`=iå NIKHBL|zIKCm%Ƨi=[ߕcViemXql)dmc-nv|:$n\YY'o.k}JLSgfF79A|{X6|pr K_~M&S6o."4G hsQ=7e 6KDqb9D@(; YD|,+SZsG E sh{WͦżvE7E_G`)XʺI٬:oxu%YH`oG]X;.s3,=+87ށE Z~۰ Oh= n$-H]+4TKӦqq6;oo_?j:UK 59@WL.v vn93u+n !h5rҮ>ǶmW%i;UHgŗ8hc\#B6y0.!|d}Gce]?eNDq&+&C,ECW: Ԅ{ͯ!y+AT2* l˓N-&&ۅɔ3ٙ$| 菄q\i]HhJo-q)Kt%l>9,֜s$42|:Sl?RCb[gLS qVֿ7 !Oh    JH@W2v,f*Iy"ش2L)TNHpɛC(S`-ڼJ;;HBeG_](3\7pIɞQȅ;pV&go98?46Y&tyf;:F5=1qrT)8];i>v,H0btlZ*IL P=_ovwB#,DrϽK|uDoM#A߿x>̔{qW%/X̑/^(p04o'-?9ϑL.{7'2M ƅZ[iC̘:nGI-Ј~֭tVh`Qψ[-ɻ(GhMk"\$-۳#jutvIJb2CsX&KV~#QzG'maxMS}yqCbtY?(ƮԐ+fhzzgO  ?'/[ߧ|L Z,˼*m66{l5 VRl2\|ez]g7"la:jS]ӅYsV0aRD=M3ui i 3݋aomz/16be*MvS|}Xx]glxT܅}S|۹HI};x$n!+|0(1U\Aw_ +=D<3JE=ۚ.O 95}P 'Fn9ƹc"F#/8N\ާV0>kZP|,* Opt( f9.mіgB 5$je"fƒ C&zd Sl><# 4M%d4qYK.l0PMVCU?̫6YX]AgT5N q5'CT/k̇X0N 4d'M?Lڰ@Sin;ˣD( .|R.J#6]an̤O!מ?M%N1f߲kAq W 1Gtfnj'mJyJM(1 VRqg,énJlr⒉ymC>S ֨XBo2QV,ң77vn8LéV?i/x튣''KB1 QS2>OF%Q[Z1^}  O9 WYPJd{Y`-TEwϟ[ EqrAF"V] Tv+p.ǝ=c>g2[p_\DB]L6~bL,>QjYA,2JJ pCf]uJ5q5v;aܦFrfN]3]H g&_H}qJF{f&՜w~T owL@|7vWhvG(&@B-._qJnfiZrGWrĤ|r 8Jn;VpKb8W<*]k5 QGt0:A|c7`J˷.cOhh$ FnP N1}brǫx [U$Yn~OA}z} ,*v2TCEj/w4Hc t2H.7E bOGaCď/Akrk`K}pl;`|GLiRs3F޶u]`-0nF"cJ>XUS,D*lNrB06<^nV_+OΣ'~IN!&ǜXSj-=Ypc2vF~j'/3.Q<([km zrb +E}>*$ E _]V0u$G=cˆQUA` 2 H_rnWzo[! r,CS í(.@EY#D:9 2_fcVoj`BdǾ8 9pOvV=cwER =` Li  m:>\˂K--A8'! C=ƤЫIug. 2Fg/ `݄F5iee·Yj1Kǭ$ΰDߏ2dt/8el,񜁒ajN@j>4 #R, $Launchpad PPA for Brian Murray Iug  ZjWⰍ?;Wn! !.FXʧQ- .WeQ8m s$mGv7WS"4?sHO+">[90}<ԪUS[--?hBEoFн.͑йϠEiu#P[4#F?ڒXoqCD֛4\DeS3/ugr]/(=s~/[HG }* ;|ƸL,IN,"rR]Zı7}᪶}?t=$]宣>9L*#K{.B6S5 7j=y ,V2&B+E *!dMsoEtJ E O%r7Q w{$f{pEX\g3$#Əo)]$v@/8J yN MleRϙJwF41x8Mi O`9_x7~/AB'vA(^_ôLGoogle, Inc. Linux Package Signing Key c# Fv @YJvǴ .fWsx$nWRa۞լ EoKzrLYp.:([H'}P` o(HΔYVW;=bUh[Boܶ3G 0]~k%E30w~npJEY=_ +qn`>^Zm(V$*3zUhɫS0;Ϭ5^lhJPX/D4KH0[=FKޑklb,Fj]+y+ÕMi a"oXH#jkNчm }$  `t{m2fKf X6d=$?٩u^4~#9NOϐ86 ~8;X)WemhyGFI/> Vkgr~ꄒ 2Oee{JxCR@bh cCz&kȚPw:SV]},0ą0ee9x2-VXTlU߮Bp~$,u}Z.R0: e ?*'K.G0ʫ Xy}Jؕ:pG8MELjj矽hZI?0N/A8'Mq]xN6IN8 $){yZPfÓMhpY\*m_#Wpu2l b #0xc2>iPE̢#c`pe\QUBMݰ5_㦔F1kፊ|Nk L~)4ۡ|:>N¨Z~ Launchpad PPA for Daisy Pluckers"Pf   Pg #5wE#yJVŇ$wln20|eMbʊFp]ի8e D;4Kf9%O<ĺ㼙(ӭe~8r;iT2fAOubuntu-release-upgrader-0.220.10/utils/apt/status0000644000000000000000000000000012431225715016553 0ustar ubuntu-release-upgrader-0.220.10/utils/apt/lists/0000755000000000000000000000000013017612173016454 5ustar ././@LongLink0000644000000000000000000000016300000000000011603 Lustar rootrootubuntu-release-upgrader-0.220.10/utils/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_main_binary-amd64_Packagesubuntu-release-upgrader-0.220.10/utils/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_main_binary-0000644000000000000000003732366612332705114031034 0ustar Package: account-plugin-aim Priority: optional Section: gnome Installed-Size: 941 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: account-plugin-empathy Depends: empathy (= 3.8.6-0ubuntu9), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Filename: pool/main/e/empathy/account-plugin-aim_3.8.6-0ubuntu9_amd64.deb Size: 8838 MD5sum: f7f709442600bb60bc5e230f905773ae SHA1: 588d6aa693e4b9a9bda228360bc65dfab4527ed8 SHA256: 4a34e416bb37191d0b8e6855b27cdbf7cd63fec182ab415cc9e71b19cfe55e48 Description: Messaging account plugin for AIM Homepage: http://wiki.gnome.org/Empathy Description-md5: 1a2069e5dd5f4777061642b2d7c9a76a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-facebook Priority: optional Section: gnome Installed-Size: 65 Maintainer: Ubuntu Desktop Team Architecture: all Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Depends: libaccount-plugin-generic-oauth | ubuntu-system-settings-online-accounts, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1) Filename: pool/main/a/account-plugins/account-plugin-facebook_0.11+14.04.20140409.1-0ubuntu1_all.deb Size: 3008 MD5sum: bffab5cb1974efc1cbb78cb0fe33d6a7 SHA1: e76677842b857754439b84481446cee0fa46a0d1 SHA256: f0b62d83fe5fcc85e458e77a1ab3ddb321cd629e5848a11e30b7a311060e05bd Description: GNOME Control Center account plugin for single signon - facebook Homepage: https://launchpad.net/account-plugins Description-md5: 01a81d75d91a6678012aaf832ed5a51c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-flickr Priority: optional Section: gnome Installed-Size: 64 Maintainer: Ubuntu Desktop Team Architecture: all Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Depends: libaccount-plugin-generic-oauth | ubuntu-system-settings-online-accounts, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1) Filename: pool/main/a/account-plugins/account-plugin-flickr_0.11+14.04.20140409.1-0ubuntu1_all.deb Size: 2618 MD5sum: c36fd8bb7b7073644f6ec0e99bc59dc0 SHA1: 040dfd8049e8b9030ff8a6585052c847cd3a5efb SHA256: edb047d9fa34f8c2bc793fb5cb51fc7b5e31eb619bc1974b56de43e4738e6eb0 Description: GNOME Control Center account plugin for single signon - flickr Homepage: https://launchpad.net/account-plugins Description-md5: 65227609ad37a6458b711608bad1c565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-google Priority: optional Section: gnome Installed-Size: 66 Maintainer: Ubuntu Desktop Team Architecture: all Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Depends: libaccount-plugin-google | ubuntu-system-settings-online-accounts, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1) Filename: pool/main/a/account-plugins/account-plugin-google_0.11+14.04.20140409.1-0ubuntu1_all.deb Size: 3358 MD5sum: 79a2116405bbc34b715f84024099c967 SHA1: c4c8ab57101e372df176e9bb79fc3ba4d39adae5 SHA256: 0667f6dfa3bbde4a5c77c2170215ba5d50d73d6bf4cb547c8d9556a3a45952fe Description: GNOME Control Center account plugin for single signon Homepage: https://launchpad.net/account-plugins Description-md5: 33423c62c8cdfe0c6a499715b18fd300 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-jabber Priority: optional Section: gnome Installed-Size: 941 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: account-plugin-empathy Depends: empathy (= 3.8.6-0ubuntu9), telepathy-gabble, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Filename: pool/main/e/empathy/account-plugin-jabber_3.8.6-0ubuntu9_amd64.deb Size: 8836 MD5sum: ed8ad645d6f3d78fbb7761f6ec6c5224 SHA1: b9fc1de4af964c41542ce51af55d1f19693cca9f SHA256: b9f3616b591cf2e49ecc60f0d0d60380d4e46a3c562836deb1bde67bb6cc014b Description: Messaging account plugin for Jabber/XMPP Homepage: http://wiki.gnome.org/Empathy Description-md5: a3b6eae3781031008639c5fca9ab3338 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-salut Priority: optional Section: gnome Installed-Size: 941 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: account-plugin-empathy Depends: empathy (= 3.8.6-0ubuntu9), telepathy-salut, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Filename: pool/main/e/empathy/account-plugin-salut_3.8.6-0ubuntu9_amd64.deb Size: 8864 MD5sum: ce416818aa2ae9200cc33ad53e5591c4 SHA1: 07f34056672a7d057228bfa1d45b9b142623eb1b SHA256: 3c4cc9f452050f83910024f0fe409259ecd22472fa50d7ba221bb8f91a8fb2ae Description: Messaging account plugin for Local XMPP (Salut) Homepage: http://wiki.gnome.org/Empathy Description-md5: 4d1868589be13e3e2f58afeefddbceff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-twitter Priority: optional Section: gnome Installed-Size: 63 Maintainer: Ubuntu Desktop Team Architecture: all Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Depends: libaccount-plugin-generic-oauth | ubuntu-system-settings-online-accounts, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1) Filename: pool/main/a/account-plugins/account-plugin-twitter_0.11+14.04.20140409.1-0ubuntu1_all.deb Size: 2332 MD5sum: 24cc9fcb2e1a7da130f5812174802054 SHA1: 6b25ca5f577da333acbbd9cd8d385343ce9fd68d SHA256: b88b4a24ecff55afa480a80191e4ca16919af2c9b8ce98f89808f720a6deffaa Description: GNOME Control Center account plugin for single signon - twitter Homepage: https://launchpad.net/account-plugins Description-md5: 66785ad58695c9ded73383857a9ed7b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-windows-live Priority: optional Section: gnome Installed-Size: 55 Maintainer: Ubuntu Desktop Team Architecture: all Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Depends: libaccount-plugin-generic-oauth, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1) Filename: pool/main/a/account-plugins/account-plugin-windows-live_0.11+14.04.20140409.1-0ubuntu1_all.deb Size: 2250 MD5sum: e9cfcac2aa9c29c838dbb5b23f694c3f SHA1: 14d44a8052117e4ca4691e2b3d0bb8328503d829 SHA256: b55fe18277b4803d4f950ec9e5605a09d8c1bed2dcbc2d6488291288c06b42a1 Description: GNOME Control Center account plugin for single signon - windows live Homepage: https://launchpad.net/account-plugins Description-md5: fcc0ce4adcd04c0f807e362ee5a229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-yahoo Priority: optional Section: gnome Installed-Size: 941 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: account-plugin-empathy Depends: empathy (= 3.8.6-0ubuntu9), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Filename: pool/main/e/empathy/account-plugin-yahoo_3.8.6-0ubuntu9_amd64.deb Size: 8846 MD5sum: 7e6095eae7df6dd7b837ca6778e66922 SHA1: a0a6ef21ad116515be80707e9c8d3d70f7f7b1ae SHA256: 6bf0e0aafd5cc7dd5ce13aa31bf6a7ba282ad9b214992d798b935f9016b08679 Description: Messaging account plugin for Yahoo! Homepage: http://wiki.gnome.org/Empathy Description-md5: 8478f3242edc90b5534110f689f38e24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: accounts-qml-module-doc Priority: optional Section: doc Installed-Size: 245 Maintainer: Ubuntu Desktop Team Architecture: all Source: accounts-qml-module Version: 0.4+14.04.20140317-0ubuntu1 Filename: pool/main/a/accounts-qml-module/accounts-qml-module-doc_0.4+14.04.20140317-0ubuntu1_all.deb Size: 15054 MD5sum: abb49fee53a0bec1785228f2f6553337 SHA1: 6d8ab6ddd7e5695ed2a12f87cf1fda4b79f3d870 SHA256: 7e18e859842e4d453a17e89647cb26196c9f33f1cfa7c10c317e06bf695a6e01 Description: Online Accounts QML - documentation Multi-Arch: foreign Homepage: https://launchpad.net/accounts-qml-module Description-md5: 122b4b6da41c90cb7a74515255f22c9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: accountsservice Priority: standard Section: gnome Installed-Size: 428 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Version: 0.6.35-0ubuntu7 Depends: dbus, libaccountsservice0 (= 0.6.35-0ubuntu7), libc6 (>= 2.4), libgcr-base-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.37.3), libpam0g (>= 0.99.7.1), libpolkit-gobject-1-0 (>= 0.99) Suggests: gnome-control-center Filename: pool/main/a/accountsservice/accountsservice_0.6.35-0ubuntu7_amd64.deb Size: 60318 MD5sum: d9860f14b914b24b32053e145035cdeb SHA1: 906d81d09d71b03905e6d249941e57760e978eeb SHA256: 2ea5cb960f976935484eff2a2f4f642a991c2af7a88d08b7731dfcd3e3cc3b20 Description: query and manipulate user account information Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: 8aeed0a03c7cd494f0c4b8d977483d7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: acct Priority: optional Section: admin Installed-Size: 332 Maintainer: Ubuntu Developers Original-Maintainer: Mathieu Trudel-Lapierre Architecture: amd64 Version: 6.5.5-1ubuntu5 Depends: libc6 (>= 2.14), dpkg (>= 1.15.4) | install-info Filename: pool/main/a/acct/acct_6.5.5-1ubuntu5_amd64.deb Size: 80558 MD5sum: 7cf1c866812159ff0e65f37c4e162a57 SHA1: 68ac7f10d79293c033adb502ade73d76d1996447 SHA256: 483c9a72d77dff423cd763d89db5ef2b4b35b02ba4d0353426b2102c476646cf Description: The GNU Accounting utilities for process and login accounting Homepage: http://www.gnu.org/software/acct/ Description-md5: b24f45ef7d67937aa65ecb8e36a7e5a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: acl Priority: optional Section: utils Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 2.2.52-1 Depends: libacl1 (= 2.2.52-1), libc6 (>= 2.14) Filename: pool/main/a/acl/acl_2.2.52-1_amd64.deb Size: 43790 MD5sum: ac8db6aa2095dfd83758db34cf31285a SHA1: 8c79b69058f7463b85a425d0bb4ed40f9f50844f SHA256: 55911b14809d9895fcd102939fe0f392c499cf0b76f69961a5fd9d8235f14823 Description: Access control list utilities Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/acl/ Description-md5: 75eddab5ddd2597445b43aa18f0db77a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: acpi-support Priority: optional Section: admin Installed-Size: 92 Maintainer: Ubuntu Core developers Original-Maintainer: Bart Samwel Architecture: amd64 Version: 0.142 Depends: acpid (>= 1.0.4-1ubuntu4) Recommends: toshset, wireless-tools Conflicts: uswsusp (<= 0.2) Filename: pool/main/a/acpi-support/acpi-support_0.142_amd64.deb Size: 10196 MD5sum: ea923e2b61721a806207fecdeb4eda96 SHA1: 0f989ffc0d36064c02c96ed8618d3b3d6b07172e SHA256: 846df5a0f64ce7c6c06c0da93996b169e7e737a520baa39e3c6904bf13e62c52 Description: scripts for handling many ACPI events Description-md5: 3da3f1fdfeedd4b9182ff4fd508042a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: acpica-tools Priority: optional Section: devel Installed-Size: 1829 Maintainer: Ubuntu Developers Original-Maintainer: Mattia Dongili Architecture: amd64 Source: acpica-unix Version: 20140214-1ubuntu1 Replaces: acpidump (<< 20100513-4), iasl (<< 20130214-0.1) Provides: acpidump, iasl Depends: libc6 (>= 2.14) Breaks: acpidump (<< 20100513-4), iasl (<< 20130214-0.1) Filename: pool/main/a/acpica-unix/acpica-tools_20140214-1ubuntu1_amd64.deb Size: 632666 MD5sum: 6e1473c6227ce4a0149364ac66b81c34 SHA1: bc6513a267ea188f422ab87a704fa219eefb21e5 SHA256: f9941f7380ea3a6c357dc9c07e5e6c31a66a1a7c8d23833d0c9edb0a2e7941ae Description: ACPICA tools for the development and debug of ACPI tables Homepage: http://www.acpica.org Description-md5: 49928e241f299a9ae2e7d4a00124a5ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: acpid Priority: optional Section: admin Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian Acpi Team Architecture: amd64 Version: 1:2.0.21-1ubuntu2 Depends: libc6 (>= 2.15), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.2-14), kmod Filename: pool/main/a/acpid/acpid_2.0.21-1ubuntu2_amd64.deb Size: 35030 MD5sum: 789f3e71e8b997a374c11dc19fb9360a SHA1: 67814867eb521200a3c16b9318c3dafa4960ceab SHA256: 5c44473f5fcd508b6ceba93e0731f9bd1d951720944e655e9dddf7fd3bec9ca8 Description: Advanced Configuration and Power Interface event daemon Homepage: http://www.tedfelix.com/linux/acpid-netlink.html Description-md5: 6a7c4e4695f570d8fbcaec667cdcfcfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: activity-log-manager Priority: optional Section: utils Installed-Size: 728 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: amd64 Version: 0.9.7-0ubuntu14 Replaces: activity-log-manager-common, activity-log-manager-control-center (<< 0.9.6) Depends: libc6 (>= 2.2.5), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.37.3), libgnome-control-center1 (>= 1:2.91.2), libgtk-3-0 (>= 3.5.12), libpango-1.0-0 (>= 1.22.0), libpolkit-gobject-1-0 (>= 0.99), libunity-control-center1 (>= 14.04.0), libwhoopsie-preferences0 (>= 0.9), libzeitgeist-2.0-0 (>= 0.9.9), zeitgeist-core (>= 0.8~) | zeitgeist (>= 0.8~), whoopsie-preferences Conflicts: activity-log-manager-common Breaks: activity-log-manager-control-center (<< 0.9.6) Filename: pool/main/a/activity-log-manager/activity-log-manager_0.9.7-0ubuntu14_amd64.deb Size: 101074 MD5sum: 2d1e99dcb80c92e1c2123417ed41bd12 SHA1: 5ec71ad2979b54fda8a3f2cb14223555cdf66db3 SHA256: 267c49486c2dcbd1c7f63dc16aaec847e3ef01ef45bcdef258765a55ad7a2e6c Description: blacklist configuration user interface for Zeitgeist Homepage: https://launchpad.net/activity-log-manager Description-md5: 7d35a32d4ba1123a4581b898008fd386 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: activity-log-manager-control-center Priority: optional Section: utils Installed-Size: 30 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: all Source: activity-log-manager Version: 0.9.7-0ubuntu14 Depends: activity-log-manager Filename: pool/main/a/activity-log-manager/activity-log-manager-control-center_0.9.7-0ubuntu14_all.deb Size: 1686 MD5sum: ffcf6c3906adb7dc1e7f8296fecfb9bd SHA1: 1ab980aea0d4d80b3d719a7f102ef4780a182a26 SHA256: 3eb533b3f9e54bccde4d447835a2487b455b9e2df12da2b7283550afed5bcd67 Description: blacklist configuration for Zeitgeist (transitional package) Homepage: https://launchpad.net/activity-log-manager Description-md5: 15308e023a784b2842ee8146a3cf38fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: adduser Priority: required Section: admin Installed-Size: 644 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Adduser Developers Architecture: all Version: 3.113+nmu3ubuntu3 Replaces: manpages-it (<< 0.3.4-2), manpages-pl (<= 20051117-1) Depends: perl-base (>= 5.6.0), passwd (>= 1:4.0.12), debconf | debconf-2.0 Suggests: liblocale-gettext-perl, perl-modules, ecryptfs-utils (>= 67-1) Filename: pool/main/a/adduser/adduser_3.113+nmu3ubuntu3_all.deb Size: 169360 MD5sum: 98c532cd738cfce59d448ed96ea5c8e7 SHA1: a64caa75eee209bacbc39cbbcb058db80e5042af SHA256: 1461ce364a68db36190a6981ad9e3889c8a5286e809e45c6e34a720905de46a4 Description: add and remove users and groups Multi-Arch: foreign Homepage: http://alioth.debian.org/projects/adduser/ Description-md5: 7965b5cd83972a254552a570bcd32c93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: adium-theme-ubuntu Priority: extra Section: gnome Installed-Size: 160 Maintainer: Ubuntu Artwork Team Architecture: all Version: 0.3.4-0ubuntu1 Filename: pool/main/a/adium-theme-ubuntu/adium-theme-ubuntu_0.3.4-0ubuntu1_all.deb Size: 42432 MD5sum: 6978e4eaad8e4c8ba8d725e8b76e7c19 SHA1: bfe15e682ad0d5afcfe31ad8e6b3041a4de39085 SHA256: b68071f467a7e95513fcb595f96b0eac5610e02311eacf761299fde0fe9afb23 Description: Adium message style for Ubuntu Homepage: http://launchpad.net/adium-theme-ubuntu Description-md5: 314da14682c298664cc6118ca7defcf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: advancecomp Priority: optional Section: utils Installed-Size: 812 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: amd64 Version: 1.18-1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Filename: pool/main/a/advancecomp/advancecomp_1.18-1_amd64.deb Size: 154706 MD5sum: 0bc5d3a818953ccfb7b54911e5980e15 SHA1: 4a286e0b9a5d7bcd2fb8c00659fbab389bb009f6 SHA256: 2e710f361f094b534ae78a597338ec793c77839fe58f110fc8ca68c8cff6d5fe Description: collection of recompression utilities Homepage: http://advancemame.sourceforge.net/ Description-md5: 45269d7ed6ff6092f699fce2e0061b74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: aide Priority: optional Section: admin Installed-Size: 1581 Maintainer: Ubuntu Developers Original-Maintainer: Aide Maintainers Architecture: amd64 Version: 0.16~a2.git20130520-2 Provides: aide-binary Recommends: aide-common (= 0.16~a2.git20130520-2) Conflicts: aide-dynamic, aide-xen Filename: pool/main/a/aide/aide_0.16~a2.git20130520-2_amd64.deb Size: 574516 MD5sum: f02a8b008899fbfd43f5cc0ebd0e381f SHA1: d3ac70726ad6a47a6785dbd86d7279d932b91893 SHA256: 5afc94f58164534717ecfb70806fa70b5ac98488c0b1bb2a5ccdd6c58f4bf94b Description: Advanced Intrusion Detection Environment - static binary Built-Using: acl (= 2.2.52-1), attr (= 1:2.4.47-1), e2fsprogs (= 1.42.9-2ubuntu1), eglibc (= 2.18-0ubuntu2), libselinux (= 2.2.1-1ubuntu2), mhash (= 0.9.9.9-4), zlib (= 1:1.2.8.dfsg-1ubuntu1) Homepage: http://aide.sourceforge.net Description-md5: 5cf26f0af8c95254f9ec7920c1214cbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: aide-common Priority: optional Section: admin Installed-Size: 303 Maintainer: Ubuntu Developers Original-Maintainer: Aide Maintainers Architecture: all Source: aide Version: 0.16~a2.git20130520-2 Depends: debconf (>= 0.5) | debconf-2.0, aide (>= 0.15.1-6) | aide-xen (>= 0.15.1-6) | aide-dynamic (>= 0.15.1-6), bsd-mailx | mailx, liblockfile1, ucf (>= 2.0020), initscripts (>= 2.88dsf-13.3) Recommends: cron Filename: pool/main/a/aide/aide-common_0.16~a2.git20130520-2_all.deb Size: 63768 MD5sum: e31367042430e83a61139b6395e5b8c4 SHA1: 0ed317921c59f6bc3f736ef0fdbd07777b80c0d9 SHA256: 156d73c326d440a50acc8bafed3df961454d19f686867047ee0ad3b2822e9c7c Description: Advanced Intrusion Detection Environment - Common files Homepage: http://aide.sourceforge.net Description-md5: 7a8490e442a29581e6cca1b191be3f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: aisleriot Priority: optional Section: games Installed-Size: 2940 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Version: 1:3.10.2-1 Replaces: gnome-games (<< 1:3.1.0), gnome-games-data (<< 1:3.1.0) Depends: dconf-gsettings-backend | gsettings-backend, gconf2 (>= 2.28.1-2), gconf-service, guile-2.0-libs, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.12), librsvg2-2 (>= 2.32.0) Recommends: yelp Suggests: gnome-cards-data Breaks: gnome-games (<< 1:3.1.0), gnome-games-data (<< 1:3.1.0) Filename: pool/main/a/aisleriot/aisleriot_3.10.2-1_amd64.deb Size: 584836 MD5sum: 46640eed73c463df2ba432a6d3108cef SHA1: a090a206c01a2310e3d4424e3959da0480e4a69b SHA256: 237e162d9e1dfb1f375e0f566315f8fc02cc55d1c6cb547cd5fd60a5d89b5220 Description: GNOME solitaire card game collection Homepage: https://wiki.gnome.org/Aisleriot Description-md5: e7f99df3aa92cf870d335784e155ec33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: alembic Priority: optional Section: python Installed-Size: 879 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.6.2+ds-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-sqlalchemy (>= 0.8~), python-sqlalchemy (<< 0.9), python-mako, libjs-sphinxdoc (>= 1.0) Recommends: python-pkg-resources Filename: pool/main/a/alembic/alembic_0.6.2+ds-1_all.deb Size: 140188 MD5sum: 5a3d3c0db358b45dc688cd10fac14a66 SHA1: d26ba2b4c05fac014a16a53c422c1cc00ae5222d SHA256: 811efc7bf9c1e384b391deed73d68285d2a93d37f4bb403258d0b6b79d94f5cd Description: lightweight database migration tool for SQLAlchemy Homepage: http://www.bitbucket.org/zzzeek/alembic Description-md5: 78c404926f64e6525ea240a527f23143 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: alien Priority: optional Section: admin Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Joey Hess Architecture: all Version: 8.90 Depends: debhelper (>= 7), perl, rpm (>= 2.4.4-2), dpkg-dev, make, cpio, rpm2cpio Suggests: patch, bzip2, lsb-rpm, lintian, lzma Filename: pool/main/a/alien/alien_8.90_all.deb Size: 54096 MD5sum: 5ef475206a42913ab6a490db7a369962 SHA1: 5cb324fcee0222146f50df49edfc45391a8405dc SHA256: 193e5c5b3e47a736f51c7bebf090597fd15a5311cc289b1af69f9549b86aa960 Description: convert and install rpm and other packages Homepage: http://kitenet.net/~joey/code/alien/ Description-md5: 250884c1c7113f08b8c335ac3cf22206 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: alsa-base Priority: optional Section: sound Installed-Size: 502 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian ALSA Maintainers Architecture: all Source: alsa-driver Version: 1.0.25+dfsg-0ubuntu4 Provides: alsa Depends: module-init-tools (>= 3.2.1), linux-sound-base, udev Recommends: alsa-utils Suggests: apmd (>= 3.0.2-1), alsa-oss, oss-compat Filename: pool/main/a/alsa-driver/alsa-base_1.0.25+dfsg-0ubuntu4_all.deb Size: 151320 MD5sum: 979111a2d4d2fcb0da0e76c2146249ce SHA1: 5e3469a8cd4c9fb070b05f49d91d19414d240db6 SHA256: 580a16e83995c22f2796e550dc1198fa53d7c5c6df2f352196e4c828ba37b76f Description: ALSA driver configuration files Multi-Arch: foreign Homepage: http://www.alsa-project.org/ Description-md5: 14d30d1beb8026b3d2636c32c5a92cca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: alsa-utils Priority: optional Section: sound Installed-Size: 2156 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: amd64 Version: 1.0.27.2-1ubuntu2 Provides: audio-mixer Depends: lsb-base (>= 3.0-9), kmod, whiptail | dialog, libasound2 (>= 1.0.27), libc6 (>= 2.15), libncursesw5 (>= 5.6+20080119), libsamplerate0 (>= 0.1.7), libtinfo5 Recommends: alsa-base (>= 1.0.15) Filename: pool/main/a/alsa-utils/alsa-utils_1.0.27.2-1ubuntu2_amd64.deb Size: 933378 MD5sum: 394ae5f17a5cc2789186e75cac2274a7 SHA1: bb1a9e9079961eb893e1222258d580d2c0dc6b7b SHA256: b2bf25aac22591772956660dac9c7d800dfc6ef0d095ce1ca2339fa2418f2d05 Description: Utilities for configuring and using ALSA Multi-Arch: foreign Homepage: http://www.alsa-project.org/ Description-md5: a4e555adf5e969eded25828df3763172 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: amavisd-new Priority: extra Section: mail Installed-Size: 2266 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: all Version: 1:2.7.1-2ubuntu3 Replaces: amavis Provides: amavis Depends: debconf (>= 0.5) | debconf-2.0, adduser (>= 3.34), file, libmime-tools-perl, libconvert-tnef-perl (>= 0.06), libconvert-uulib-perl (>= 1.0.5), libarchive-tar-perl, libarchive-zip-perl (>= 1.14), libmailtools-perl (>= 1.58), libunix-syslog-perl, libnet-server-perl, libtime-hires-perl, libdigest-md5-perl, libmime-base64-perl, libio-stringy-perl, libberkeleydb-perl, libmail-dkim-perl, pax, perl (>= 5.10.1) | libcompress-raw-zlib-perl (>= 2.017), perl Recommends: libnet-patricial-perl Suggests: spamassassin (>= 3.1.0a), clamav, clamav-daemon, lha, arj, unrar, zoo, nomarch, cpio, lzop, cabextract, apt-listchanges (>= 2.35), libnet-ldap-perl (>= 1:0.32), libauthen-sasl-perl, libdbi-perl (>= 1.43), dspam, libmail-dkim-perl (>= 0.31), p7zip, rpm, unrar-free, libsnmp-perl, lhasa, altermime, ripole Conflicts: amavis, logcheck (<= 1.2.62) Filename: pool/main/a/amavisd-new/amavisd-new_2.7.1-2ubuntu3_all.deb Size: 667726 MD5sum: 1910da28708751c7b42bb978816fb88c SHA1: d7e946e0adb6527800f387e62465b7d26fc68322 SHA256: d8832276611ab37bd6aa2021f91296434cc492389bd0dd624be6ab94ac0e0488 Description: Interface between MTA and virus scanner/content filters Description-md5: d95fd9c270e69763b2674a7c7629b731 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: anacron Priority: optional Section: admin Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: amd64 Version: 2.3-20ubuntu1 Replaces: pe Depends: libc6 (>= 2.7), debianutils (>= 1.7), init-system-helpers (>= 1.13~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.0-10) Recommends: cron (>= 3.0pl1-43), rsyslog | system-log-daemon Suggests: default-mta | mail-transport-agent, powermgmt-base Filename: pool/main/a/anacron/anacron_2.3-20ubuntu1_amd64.deb Size: 26232 MD5sum: bbee49e215e8ff30759162f2835f068d SHA1: 4b0489a220b6d8e11b575cb1fd6fd308c668b325 SHA256: 5080566fbc5c912c2ff5814e845f7860ff88e383f48983306d1f999b2be21e19 Description: cron-like program that doesn't go by time Homepage: http://sourceforge.net/projects/anacron/ Description-md5: cd9f07726e1ee3bc93fcfdb799520070 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: android-headers Priority: extra Section: libdevel Installed-Size: 602 Maintainer: Ubuntu Developers Architecture: all Version: 4.2.2-2-0ubuntu1 Replaces: android-platform-headers Conflicts: android-platform-headers Filename: pool/main/a/android-headers/android-headers_4.2.2-2-0ubuntu1_all.deb Size: 104452 MD5sum: 32a9594e86c8bf5c0e829255adb82357 SHA1: a99dc74b3303303ab32bab0e4ad70cef8efa27a2 SHA256: a9dcff12ff32162df0abe4f5fb7f4ebb1f63c0268018a6068c04801b4982ce81 Description: Android Platform Headers from AOSP releases Multi-Arch: foreign Description-md5: e1917201fcc7c3db3655fe7302aa91d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: android-tools-fsutils Priority: extra Section: devel Installed-Size: 481 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: android-tools Version: 4.2.2+git20130218-3ubuntu23 Depends: python:any, libc6 (>= 2.14), libselinux1 (>= 2.0.65), zlib1g (>= 1:1.2.3.4) Filename: pool/main/a/android-tools/android-tools-fsutils_4.2.2+git20130218-3ubuntu23_amd64.deb Size: 65566 MD5sum: b2b9dce5826a9e956d1d55b42c5a290e SHA1: b1b08ab02fa8c2a0f40d163a17908f9b82e6f183 SHA256: e7942a02253a1daf30721bba9737f4f483abf78120c1ae509e330b3dfd260423 Description: Android ext4 utilities with sparse support Homepage: http://developer.android.com/guide/developing/tools/adb.html Description-md5: fa313db8b2a8da5624dad8e1f2d2fb34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant Priority: optional Section: java Installed-Size: 2165 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.9.3-2build1 Replaces: ant-doc (<= 1.6.5-1), libant1.6-java Depends: default-jre-headless | java5-runtime-headless | java6-runtime-headless | java7-runtime-headless, libxerces2-java Recommends: ant-optional Suggests: ant-doc, ant-gcj, default-jdk | java-compiler | java-sdk Conflicts: libant1.6-java Breaks: ant-doc (<= 1.6.5-1) Filename: pool/main/a/ant/ant_1.9.3-2build1_all.deb Size: 1868788 MD5sum: de9cb334d44947cf78ce9ca36ad474b4 SHA1: 6cc6e4052b736d8d823ef486e0c531e108a19df6 SHA256: ad49e047a073c7c7dff3451df8f5ddfe9bcaeb7ba847e077dc663ed934f3a67d Description: Java based build tool like make Homepage: http://ant.apache.org Description-md5: 5ceb3b9317ae6734ab188db300acaade Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant-contrib Priority: extra Section: java Installed-Size: 523 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.0~b3+svn177-6 Depends: ant Suggests: libcommons-httpclient-java, libbcel-java, ivy Filename: pool/main/a/ant-contrib/ant-contrib_1.0~b3+svn177-6_all.deb Size: 254894 MD5sum: 55fd21b9bf0477c63ea80b6aa6143eb4 SHA1: b29478d8fd547f71e9e1d3ca6972c8b0c618e95d SHA256: f53548d6f1f34bb337b018107427511a1ebc5e7c7f8098d65dcc9735a0b9ae83 Description: collection of tasks, types and other tools for Apache Ant Enhances: ant Homepage: http://ant-contrib.sourceforge.net Description-md5: 8aabd2378cb21c875bf00bbf4783525c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant-doc Priority: optional Section: doc Installed-Size: 32534 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ant Version: 1.9.3-2build1 Suggests: ant Filename: pool/main/a/ant/ant-doc_1.9.3-2build1_all.deb Size: 1911166 MD5sum: 97732bce5313025f99eaed9d20b66101 SHA1: 304fcffc3f104271d86ea0a49c297af14389c03e SHA256: 77efee5617551743ed4926551cd5a673a9862c1076b2868c2a2c473c95efecc5 Description: Java based build tool like make - API documentation and manual Homepage: http://ant.apache.org Description-md5: 57a585c539546126acd9aa0e320f0d4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant-gcj Priority: optional Section: java Installed-Size: 9195 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: amd64 Source: ant Version: 1.9.3-2build1 Depends: ant, libgcj-common (>> 1:4.1.1-13), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.2-1~) Filename: pool/main/a/ant/ant-gcj_1.9.3-2build1_amd64.deb Size: 1681042 MD5sum: 78fdf82656bc6c897d7aed1bb855fc51 SHA1: 814d7e2a95e916b087405c7c61d70dfc50415357 SHA256: 4a54231a571835abb4f51c335a56078e05f8231811b5f982193ff13799f092e9 Description: Java based build tool like make (GCJ) Homepage: http://ant.apache.org Description-md5: 9817433be612930049ef6ea3cc5f558e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant-optional Priority: optional Section: java Installed-Size: 820 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ant Version: 1.9.3-2build1 Replaces: libant1.6-java Depends: ant (= 1.9.3-2build1) Suggests: ant-optional-gcj, antlr, javacc, junit, jython, libbcel-java (>= 5.0), libbsf-java, libcommons-logging-java, libcommons-net-java, libgnumail-java, libjaxp1.3-java, libjdepend-java, libjsch-java, liblog4j1.2-java, liboro-java, libregexp-java, libxalan2-java (>= 2.4.0-1), libxml-commons-resolver1.1-java Conflicts: libant1.6-java Filename: pool/main/a/ant/ant-optional_1.9.3-2build1_all.deb Size: 301518 MD5sum: 22a05d5dd04deca10c951c0e140b3d82 SHA1: b033badc97e2ee08095075ed56efb2606daaf710 SHA256: e92edd3d8e675bf3b2dc1a68321dbbedd81e268edfad1b1a66009a2e64a24697 Description: Java based build tool like make - optional libraries Homepage: http://ant.apache.org Description-md5: ccdbce1086b391c7aabff03d95a69d02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant-optional-gcj Priority: optional Section: java Installed-Size: 1648 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: amd64 Source: ant Version: 1.9.3-2build1 Depends: ant-optional, libgcj-common (>> 1:4.1.1-13), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.2-1~) Filename: pool/main/a/ant/ant-optional-gcj_1.9.3-2build1_amd64.deb Size: 300388 MD5sum: a5e2d78e28c022ba1c1829fd07714e05 SHA1: 3194d87f7bb19265cf1d635eab94bf64b25bf3e1 SHA256: 8d53d29a7c87e72e27302a79593cd866584ed520a5e531746be9a1f31c053aec Description: Java based build tool like make - optional libraries (GCJ) Homepage: http://ant.apache.org Description-md5: ee76e20b54d4379ceee2f186bd809836 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: anthy Priority: optional Section: utils Installed-Size: 422 Maintainer: Ubuntu Developers Original-Maintainer: NOKUBI Takatsugu Architecture: amd64 Version: 9100h-23ubuntu2 Replaces: anthy-cannadic, anthy-cannadic-2ch Depends: anthy-common, libanthy0 (= 9100h-23ubuntu2), libc6 (>= 2.15), debconf (>= 0.5) | debconf-2.0 Suggests: kasumi Conflicts: anthy-cannadic, anthy-cannadic-2ch Filename: pool/main/a/anthy/anthy_9100h-23ubuntu2_amd64.deb Size: 125962 MD5sum: 09e52e99e20db3650840d1706e51cb18 SHA1: de377567eef5c2ff942f0fcabc81526a1a5b2ffc SHA256: 720182641e6407fc54f406af126778e863edde8357275df8ae4454894bf46af2 Description: input method for Japanese - backend, dictionary and utility Homepage: http://anthy.sourceforge.jp/ Description-md5: 7ddaacfe3551af98af20a59f6fd95f97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-usb Package: anthy-common Priority: optional Section: utils Installed-Size: 13045 Maintainer: Ubuntu Developers Original-Maintainer: NOKUBI Takatsugu Architecture: all Source: anthy Version: 9100h-23ubuntu2 Pre-Depends: dpkg (>= 1.15.6~) Conflicts: anthy (<= 9100h-4) Filename: pool/main/a/anthy/anthy-common_9100h-23ubuntu2_all.deb Size: 2505838 MD5sum: 6f907b5bc728f95d9c066405a63118da SHA1: a004194b69d421112b74c9060e0721257a4e8715 SHA256: 9e6192fabcc602c0f177dd3cda0373ce6dc08a35d3b83a42cb6a24832b189be0 Description: input method for Japanese - common files and dictionary Multi-Arch: foreign Homepage: http://anthy.sourceforge.jp/ Description-md5: f52e2748066d910d80910ccdd02d1aad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-usb Package: antlr Priority: optional Section: devel Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.7.7+dfsg-5 Depends: libantlr-java (= 2.7.7+dfsg-5), default-jre-headless | java5-runtime-headless | java6-runtime-headless Filename: pool/main/a/antlr/antlr_2.7.7+dfsg-5_all.deb Size: 5646 MD5sum: 134f75632414cf327096a390a3347f2e SHA1: 368ef93370734cbd2a1b428e5d0601fbde31e912 SHA256: ccc0a578805f049d47592703b52d8126b69193b0b5fa4cceee7918d70432008d Description: language tool for constructing recognizers, compilers etc Homepage: http://www.antlr2.org/ Description-md5: 21a2d2105df695e242797a7829b2c9b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: antlr-doc Priority: optional Section: doc Installed-Size: 1798 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: antlr Version: 2.7.7+dfsg-5 Conflicts: antlr (<< 2.7.6-8) Filename: pool/main/a/antlr/antlr-doc_2.7.7+dfsg-5_all.deb Size: 889346 MD5sum: c2cd9d1c6ed52f3c6e242652046f3a42 SHA1: 57a59e5f3367f48e63b833e49841b82024e06846 SHA256: 69553f75ba1a6f77e670f0592e076172c94245574764e9aba3f5f7da5e40ca61 Description: language tool for constructing recognizers, compilers etc Homepage: http://www.antlr2.org/ Description-md5: 2c7eadb8bcc6ff951791285f19c40007 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apache2 Priority: optional Section: web Installed-Size: 462 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Version: 2.4.7-1ubuntu4 Replaces: apache2.2-common Depends: lsb-base, procps, perl, mime-support, apache2-bin (= 2.4.7-1ubuntu4), apache2-data (= 2.4.7-1ubuntu4) Recommends: ssl-cert Suggests: www-browser, apache2-doc, apache2-suexec-pristine | apache2-suexec-custom, ufw, apache2-utils Conflicts: apache2.2-common Filename: pool/main/a/apache2/apache2_2.4.7-1ubuntu4_amd64.deb Size: 87678 MD5sum: 6315cb8089099d2f4def0a79c290a1da SHA1: 01b34f5183a0045eedd24665cc8bea5032ffeacd SHA256: 12189c5ebd1278f9eb953c0f1f73b33ba6c559370173688b60cb98e414d7efcb Description: Apache HTTP Server Homepage: http://httpd.apache.org/ Description-md5: 2afad91d50cbfeff68d0e3436b9ce235 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: apache2-bin Priority: optional Section: httpd Installed-Size: 3296 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apache2 Version: 2.4.7-1ubuntu4 Replaces: apache2-mpm-event (<< 2.3~), apache2-mpm-itk (<< 2.3~), apache2-mpm-prefork (<< 2.3~), apache2-mpm-worker (<< 2.3~), apache2.2-bin (<< 2.3~), apache2.2-common, libapache2-mod-macro (<< 1:2.4.6-1~), libapache2-mod-proxy-html (<< 1:2.4.4-2~) Provides: apache2-api-20120211, httpd, httpd-cgi Depends: libapr1 (>= 1.5.0), libaprutil1 (>= 1.5.0), libaprutil1-dbd-sqlite3 | libaprutil1-dbd-mysql | libaprutil1-dbd-odbc | libaprutil1-dbd-pgsql | libaprutil1-dbd-freetds, libaprutil1-ldap, libc6 (>= 2.14), libldap-2.4-2 (>= 2.4.7), libpcre3, libssl1.0.0 (>= 1.0.1), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4), perl Suggests: www-browser, apache2-doc, apache2-suexec-pristine | apache2-suexec-custom Conflicts: apache2.2-bin (<< 2.3~), apache2.2-common Breaks: libapache2-mod-macro (<< 1:2.4.6-1~), libapache2-mod-proxy-html (<< 1:2.4.4-2~) Filename: pool/main/a/apache2/apache2-bin_2.4.7-1ubuntu4_amd64.deb Size: 839460 MD5sum: a66af2e426ca234d25d717bb1e6dba70 SHA1: f10a7e6e2a33c97a352cbcb2cffdf32852ee1ed5 SHA256: a6979e388e6587e9817e8093e950f09fdc86ec864ef928f6d76803330e0f44d2 Description: Apache HTTP Server (binary files and modules) Homepage: http://httpd.apache.org/ Description-md5: 768126d098ab290dd8fd72553414fb1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: apache2-data Priority: optional Section: httpd Installed-Size: 703 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: all Source: apache2 Version: 2.4.7-1ubuntu4 Replaces: apache2.2-common Conflicts: apache2.2-common Filename: pool/main/a/apache2/apache2-data_2.4.7-1ubuntu4_all.deb Size: 160074 MD5sum: b2a697ee4f8347ce8907ee21a70d97db SHA1: c132dad5b76f4c80c39be238e72b2ae859d5af01 SHA256: 30cd8b33825e01ca2cde2117d49e8d1c5efd6c6c0cf225513562aed37ba4c5cd Description: Apache HTTP Server (common files) Multi-Arch: foreign Homepage: http://httpd.apache.org/ Description-md5: 43b9030fc3d3460e30654e95c72c1277 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: apache2-dbg Priority: extra Section: debug Installed-Size: 8259 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apache2 Version: 2.4.7-1ubuntu4 Depends: apache2, apache2-bin (= 2.4.7-1ubuntu4) Filename: pool/main/a/apache2/apache2-dbg_2.4.7-1ubuntu4_amd64.deb Size: 1952908 MD5sum: e0d6af9ac8ee03fa14bb2f66782da594 SHA1: cb81299c7c8167c0c91ea0f458bcb377ccb617a7 SHA256: 8d48e8c2ed820ef750670ee3001e3a579f473fcc151502c26a79aa51e85963f8 Description: Apache debugging symbols Homepage: http://httpd.apache.org/ Description-md5: 9631d879f838030d45d1d561f55abee1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apache2-dev Priority: optional Section: httpd Installed-Size: 922 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apache2 Version: 2.4.7-1ubuntu4 Replaces: apache2-prefork-dev, apache2-threaded-dev Provides: apache2-prefork-dev, apache2-threaded-dev, dh-apache2 Depends: openssl, libapr1-dev, libaprutil1-dev, debhelper (>= 9), perl Conflicts: apache2-prefork-dev, apache2-threaded-dev Filename: pool/main/a/apache2/apache2-dev_2.4.7-1ubuntu4_amd64.deb Size: 166926 MD5sum: 5d1350d6afab6bb4069b53d5ebdfa3d5 SHA1: 780d53a20b41801f15a68d61bf9ece3c9a0c2209 SHA256: c55795e946655dd0c553052e38a7ca22c6df8b93f8b9f01c8b052744406e4810 Description: Apache HTTP Server (development headers) Homepage: http://httpd.apache.org/ Description-md5: 33ccaee882001bf3dff7d3a2f1df3b30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apache2-doc Priority: optional Section: doc Installed-Size: 19278 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: all Source: apache2 Version: 2.4.7-1ubuntu4 Recommends: apache2 Filename: pool/main/a/apache2/apache2-doc_2.4.7-1ubuntu4_all.deb Size: 2572800 MD5sum: b5fa091de85f2bc289bdde4f8052ce06 SHA1: 1bcc2e095c29d23bf03a65787bc8c1d63a745f8e SHA256: b7fba00ddd8fb685ecded34517dd41988ae7fe4b7a0ed76eaf0a35f0fa574081 Description: Apache HTTP Server (on-site documentation) Homepage: http://httpd.apache.org/ Description-md5: 35791cd71bc2556ea2bde4e6294a5ad3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apache2-mpm-event Priority: optional Section: web Installed-Size: 22 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apache2 Version: 2.4.7-1ubuntu4 Provides: httpd, httpd-cgi Depends: apache2 (= 2.4.7-1ubuntu4) Filename: pool/main/a/apache2/apache2-mpm-event_2.4.7-1ubuntu4_amd64.deb Size: 1458 MD5sum: c9d166aad6cf5b953f5a85a948352ed3 SHA1: 9209b45d47406f27dbbdd36f15da867abc656ef3 SHA256: 3b4bfa7ba51f43de9bb44d7968cdad4ef7e44ad5574b300f3692bfd8063f18a8 Description: transitional event MPM package for apache2 Homepage: http://httpd.apache.org/ Description-md5: e8836e8c2c34524fb11cc83011803e4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apache2-mpm-prefork Priority: optional Section: net Installed-Size: 22 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apache2 Version: 2.4.7-1ubuntu4 Provides: httpd, httpd-cgi Depends: apache2 (= 2.4.7-1ubuntu4) Filename: pool/main/a/apache2/apache2-mpm-prefork_2.4.7-1ubuntu4_amd64.deb Size: 1462 MD5sum: baeec3bdfb9bb96446e71df09735d5af SHA1: 7c681bbe6d4daeabd179a23be5e215ebd173912a SHA256: 991a5ea14fd0a4844f58be11c1822a2cfb9b8f5114ac9174871d085af9a1c71e Description: transitional prefork MPM package for apache2 Homepage: http://httpd.apache.org/ Description-md5: 2a27f385dd2020da306403c3748102b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: apache2-mpm-worker Priority: optional Section: net Installed-Size: 22 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apache2 Version: 2.4.7-1ubuntu4 Provides: httpd, httpd-cgi Depends: apache2 (= 2.4.7-1ubuntu4) Filename: pool/main/a/apache2/apache2-mpm-worker_2.4.7-1ubuntu4_amd64.deb Size: 1462 MD5sum: d35d35cd8d6a44d6fa47191adada5571 SHA1: 30dbced39d857029c810e7d7d8ad1b58ba1ee8d6 SHA256: a1404ed465c5b87fa094d1cc68ac322fe5854a1bc0733ec3a0612c0fe7b0a92d Description: transitional worker MPM package for apache2 Homepage: http://httpd.apache.org/ Description-md5: 4ed48ca29196089175ff0720834d5528 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apache2-utils Priority: optional Section: net Installed-Size: 337 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apache2 Version: 2.4.7-1ubuntu4 Depends: libapr1 (>= 1.4.8-2~), libaprutil1 (>= 1.5.0), libc6 (>= 2.14), libssl1.0.0 (>= 1.0.1) Filename: pool/main/a/apache2/apache2-utils_2.4.7-1ubuntu4_amd64.deb Size: 83250 MD5sum: c8c2e14b57c22cffd6f9f50f491e5434 SHA1: 917f1fd8337f37f275d2339427fc9ebf92d55e1d SHA256: b7aad2ce7520a1b619c33cc6e9437512ee9e02faa4d0aaafb1215a2ec26bf58c Description: Apache HTTP Server (utility programs for web servers) Multi-Arch: foreign Homepage: http://httpd.apache.org/ Description-md5: 3b2c95f65bdd470106fa63104997fa7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apache2.2-bin Priority: optional Section: httpd Installed-Size: 22 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apache2 Version: 2.4.7-1ubuntu4 Depends: apache2-bin (>= 2.3~) Breaks: gnome-user-share (<< 3.8.0-2~), libapache2-mod-dnssd (<< 0.6-3.1~) Filename: pool/main/a/apache2/apache2.2-bin_2.4.7-1ubuntu4_amd64.deb Size: 1474 MD5sum: f0ce79f74975c48f624b0746aad6b9f1 SHA1: a7c72dc318f873ffaae631cdbcf5d4176abc6687 SHA256: a991d8e6b5b86d30d34062dde45431b4d0905be75ef60c222122cafdafe32056 Description: Transitional package for apache2-bin Homepage: http://httpd.apache.org/ Description-md5: 36c293ebb5b77f14b95215fd3ffa7760 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apg Priority: optional Section: admin Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Marc Haber Architecture: amd64 Version: 2.2.3.dfsg.1-2ubuntu1 Depends: libc6 (>= 2.14) Filename: pool/main/a/apg/apg_2.2.3.dfsg.1-2ubuntu1_amd64.deb Size: 48316 MD5sum: 3bbfde0bbe310a23a690cc643c065f87 SHA1: 84fb90afe8948803d0314f9551fbdd8dadcdf9f8 SHA256: a207c48cb7de62743c9c30e93b4d60527ecc46cd861429038f3a9088652c2c68 Description: Automated Password Generator - Standalone version Description-md5: a5b52a98c91c8de997b830850fb4fb58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: app-install-data Priority: optional Section: gnome Installed-Size: 36228 Maintainer: Michael Vogt Architecture: all Source: app-install-data-ubuntu Version: 14.04.0 Filename: pool/main/a/app-install-data-ubuntu/app-install-data_14.04.0_all.deb Size: 12609342 MD5sum: 87817ca38286bd9572325a6e20473b15 SHA1: a3e83b05d21202eb785b16c3f8f0623b4e324c03 SHA256: 7f90992cace9d15d42e44834447bd29d11486b3049c92aa508467822f68a09ef Description: Ubuntu applications (data files) Description-md5: f60778a916e4cfc34f4e6d08cae5fa94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: app-install-data-partner Priority: optional Section: x11 Installed-Size: 39 Maintainer: Michael Vogt Architecture: all Version: 13.04 Filename: pool/main/a/app-install-data-partner/app-install-data-partner_13.04_all.deb Size: 2680 MD5sum: 02eaca93dca393694dcb0a88c183a851 SHA1: 4e4d8248d2afa8be506e2cd9b21149cd7cdc5f33 SHA256: 5cd9f7a0f220d8308d0b26321c0aff6ca39dca81eb4955ecf4728e8bcf2585e4 Description: Application Installer (data files for partner applications/repositories) Description-md5: e9d7d86a1ed75f4133d63f90545e9dbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: apparmor Priority: standard Section: admin Installed-Size: 1181 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Version: 2.8.95~2430-0ubuntu5 Replaces: apparmor-parser, apparmor-utils (<< 2.8.0-0ubuntu28), libapache2-mod-apparmor (<< 2.5.1-0ubuntu3) Depends: libc6 (>= 2.14), debconf (>= 0.5) | debconf-2.0, python3, libapparmor-perl, lsb-base, initramfs-tools, debconf Suggests: apparmor-profiles, apparmor-docs, apparmor-utils Breaks: apparmor-easyprof-ubuntu (<< 1.1.14), apparmor-utils (<< 2.8.0-0ubuntu28), libapache2-mod-apparmor (<< 2.5.1-0ubuntu3), libvirt-bin (<< 1.2.2-0ubuntu9~), lightdm (<< 1.9.14-0ubuntu2~), lxc (<< 1.0.2-0ubuntu2~) Filename: pool/main/a/apparmor/apparmor_2.8.95~2430-0ubuntu5_amd64.deb Size: 318796 MD5sum: 516aac30e5f03d2aa01319b99d7d7706 SHA1: 052f1df385cb1b44888b13330ead191007e6e340 SHA256: acfbe24412719585ad24ea39bd1f4f208544f31c11b4a8bc4b0df8a715099f9a Description: User-space parser utility for AppArmor Homepage: http://apparmor.net/ Description-md5: 35c06b71e31a437828d84b93a41bd493 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: apparmor-docs Priority: extra Section: doc Installed-Size: 293 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: apparmor Version: 2.8.95~2430-0ubuntu5 Filename: pool/main/a/apparmor/apparmor-docs_2.8.95~2430-0ubuntu5_all.deb Size: 241038 MD5sum: cc991fd96d85f1806b048e5a13a966c1 SHA1: 1a7a8c89ad80f5cb253ef0a0a050b820133065fc SHA256: 42c43a8125ba7e6fd720a1312064178557e1333a1ca1537560746fc3fed5c6a0 Description: Documentation for AppArmor Homepage: http://apparmor.net/ Description-md5: ca238fbee0c75e966c57c3649cd3bc9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apparmor-easyprof Priority: extra Section: admin Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: apparmor Version: 2.8.95~2430-0ubuntu5 Replaces: apparmor-utils (<< 2.8.0-0ubuntu14) Depends: python3.4, python3-apparmor Breaks: apparmor-utils (<< 2.8.0-0ubuntu14) Filename: pool/main/a/apparmor/apparmor-easyprof_2.8.95~2430-0ubuntu5_all.deb Size: 9832 MD5sum: 4efbb58616eeb63fd4b3ec74ca3ff3a8 SHA1: 8c3f3f865c25eeb0b00f9b44741bff6f65c3218f SHA256: 20493663b6da58ea3fbca95da3f1408ed483dca507435bb8dcdca76c0cf00d3e Description: AppArmor easyprof profiling tool Multi-Arch: foreign Homepage: http://apparmor.net/ Description-md5: e82ab0ed04f6b741d056bf09b6fa0a55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apparmor-easyprof-ubuntu Priority: optional Section: admin Installed-Size: 174 Maintainer: Jamie Strandboge Architecture: all Version: 1.1.16 Depends: apparmor (>= 2.8.95~2430-0ubuntu4) Filename: pool/main/a/apparmor-easyprof-ubuntu/apparmor-easyprof-ubuntu_1.1.16_all.deb Size: 15966 MD5sum: 657b98f1be9a2420de7343cebaaf366b SHA1: 6a25baef800a079752654a48ca7f5c342a53bd2e SHA256: a4761f4d1631f29712b6e982a32460565e6c212ae9e571036d73b0e779bbe9c8 Description: AppArmor easyprof templates for Ubuntu Description-md5: 7e6a2e2f170348400aa571f1e2095040 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apparmor-notify Priority: extra Section: admin Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: libapparmor-perl, perl Suggests: libnotify-bin Filename: pool/main/a/apparmor/apparmor-notify_2.8.95~2430-0ubuntu5_all.deb Size: 11564 MD5sum: 127111ca0c723bb413d251d0d940fc17 SHA1: d610c37842d165293d1f572a95b7107bfdee2ca4 SHA256: da257034b93b1fab11db7ea2eccf87e3562603388263d414cd9358d819436bfb Description: AppArmor notification system Homepage: http://apparmor.net/ Description-md5: e52281d3d6b2d671b6cf682c76155a65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apparmor-profiles Priority: extra Section: admin Installed-Size: 282 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: apparmor Version: 2.8.95~2430-0ubuntu5 Recommends: apparmor Filename: pool/main/a/apparmor/apparmor-profiles_2.8.95~2430-0ubuntu5_all.deb Size: 33304 MD5sum: 44d85bc8dcf83cf56b5105abba2f13f5 SHA1: 0c30f35d2529908fa0a698e46a278435deb3fd09 SHA256: 71ec15447c931aa13b56cb544c74f5497ae794770aef5f63aca25ccb798575e7 Description: Profiles for AppArmor Security policies Homepage: http://apparmor.net/ Description-md5: dd1ced2ad1af9effef302648735d913e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apparmor-utils Priority: optional Section: admin Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: apparmor (>= 2.6.1-4ubuntu1), libapparmor-perl, python3-apparmor, python3 Suggests: apparmor-docs, vim-addon-manager Filename: pool/main/a/apparmor/apparmor-utils_2.8.95~2430-0ubuntu5_amd64.deb Size: 52776 MD5sum: 5d25c011f44adb5a0e63a2d5675553da SHA1: 49dc32b96ba00d97b54171e58de3936cdf848538 SHA256: c5f09070f64d74f02759681af499f87614fedd0c69952cf4f9caf830288a8281 Description: Utilities for controlling AppArmor Homepage: http://apparmor.net/ Description-md5: 0db7c88e5f68968b04bd8031570a8ed9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: appmenu-qt Priority: optional Section: x11 Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Version: 0.2.7+14.04.20140305-0ubuntu1 Depends: libc6 (>= 2.14), libdbusmenu-qt2, libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8), libqtcore4 (>= 4:4.8), libqtgui4 (>= 4:4.8), libstdc++6 (>= 4.1.1) Filename: pool/main/a/appmenu-qt/appmenu-qt_0.2.7+14.04.20140305-0ubuntu1_amd64.deb Size: 22484 MD5sum: eb12b617ebd294f21ecea9fee71a0d0e SHA1: 2b8ea6cafd67e4cc2a6fa697a1acbe9205ef63be SHA256: 9819f46005237e547781a2cbbd4484787b394315077778d865ee84baaf34ece9 Description: application menu for Qt Homepage: https://launchpad.net/appmenu-qt Description-md5: ee9da32936e6c6776fb2c769b8cb5dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb Package: appmenu-qt5 Priority: extra Section: kde Installed-Size: 155 Maintainer: Ubuntu Developers Architecture: amd64 Version: 0.3.0+14.04.20140415-0ubuntu1 Depends: libc6 (>= 2.14), libdbusmenu-qt5, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.8.0), libqt5core5a (>= 5.0.2), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), libx11-6, qtbase-abi-5-2-1 Suggests: libqt5core5, libqt5gui5 Filename: pool/main/a/appmenu-qt5/appmenu-qt5_0.3.0+14.04.20140415-0ubuntu1_amd64.deb Size: 30374 MD5sum: b78946a2a60f5b7934db031c303ed480 SHA1: 50231366233ca4904178941565960eb685be4a72 SHA256: f290aa8b7872b5dbbb70fe7d5ef27052b96161bc97a5a338d3949153ee243413 Description: application menu for Qt5 Homepage: https://launchpad.net/appmenu-qt5 Description-md5: 82a58cac5babc8ae5fe18577980518dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: apport Priority: optional Section: utils Installed-Size: 1264 Maintainer: Martin Pitt Architecture: all Version: 2.14.1-0ubuntu3 Replaces: python-apport (<< 2.2-0ubuntu1) Depends: python3, python3-apport (>= 2.14.1-0ubuntu3), lsb-base (>= 3.0-6), python3-gi, gir1.2-glib-2.0 (>= 1.29.17), sysv-rc (>= 2.86.ds1-14.1ubuntu2), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Recommends: apport-symptoms, policykit-1 Suggests: apport-gtk | apport-kde Breaks: python-apport (<< 2.2-0ubuntu1) Filename: pool/main/a/apport/apport_2.14.1-0ubuntu3_all.deb Size: 177976 MD5sum: ca2867977ca6f40002f5058b08672863 SHA1: d1f3a2e2647e3c8e6f9a14f78cf6e573af08f5e7 SHA256: d8afc4820821c12e86e319ca931db373ac66947b19b4fbd824611a706873d0f0 Description: automatically generate crash reports for debugging Homepage: https://wiki.ubuntu.com/Apport Description-md5: c04626471654f9246cf5e28b560d262e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: apport-gtk Priority: optional Section: gnome Installed-Size: 203 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python3, python3-apport (>= 2.14.1-0ubuntu3), gir1.2-gtk-3.0 (>= 3.1.90), gir1.2-wnck-3.0, python3-gi, apport (>= 0.41), procps, x-terminal-emulator Recommends: update-notifier, gdb | gdb-minimal Filename: pool/main/a/apport/apport-gtk_2.14.1-0ubuntu3_all.deb Size: 9554 MD5sum: f23ea0f89ac24a1b409e69d97ee3d50e SHA1: 147b100aae8d7a5147b5577885b2c96e645f8600 SHA256: 1e355247fdc7f175756f59e34f07f99631c9810109ab33873ad215be1466f088 Description: GTK+ frontend for the apport crash report system Homepage: https://wiki.ubuntu.com/Apport Description-md5: 2f45e17d5bf22355d7921dba196ae6dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: apport-retrace Priority: optional Section: devel Installed-Size: 180 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python (>= 2.7), python3, python-apport (>= 2.14.1-0ubuntu3), apt, binutils, dpkg-dev, gdb, libc6-dbg | libc6-dbgsym | libc-dbg Suggests: gdb-multiarch Filename: pool/main/a/apport/apport-retrace_2.14.1-0ubuntu3_all.deb Size: 12236 MD5sum: 704bc65174009bb2760da8b45486ea40 SHA1: 93465188ab170e4e964e08740871b588d429c561 SHA256: 4eaae9c622c62af16edb58467329ce000b6c877ca43b209d6f95a9d666bf1f52 Description: tools for reprocessing Apport crash reports Homepage: https://wiki.ubuntu.com/Apport Description-md5: 7608c287131a28c4611767ba61f02050 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apport-symptoms Priority: optional Section: utils Installed-Size: 75 Maintainer: Ubuntu Developers Architecture: all Version: 0.20 Recommends: apport Filename: pool/main/a/apport-symptoms/apport-symptoms_0.20_all.deb Size: 14198 MD5sum: 089a296892f64423dcd98987979c871e SHA1: 6529a657af16afe87fc592f86fa4cec7db233e3d SHA256: 014f0a1fbe238342efc4eacba64c431271de5c01ab1e9dbea5e831b958136c1c Description: symptom scripts for apport Homepage: https://wiki.ubuntu.com/Apport Description-md5: 685dc189a71c0847d5bc525d477c0d11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: apt Priority: important Section: admin Installed-Size: 3576 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: amd64 Version: 1.0.1ubuntu2 Replaces: manpages-it (<< 2.80-4~), manpages-pl (<< 20060617-3~), openjdk-6-jdk (<< 6b24-1.11-0ubuntu1~), sun-java5-jdk (>> 0), sun-java6-jdk (>> 0) Depends: libapt-pkg4.12 (>= 0.9.16), libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), ubuntu-keyring, gnupg Suggests: aptitude | synaptic | wajig, dpkg-dev (>= 1.17.2), apt-doc, python-apt Conflicts: python-apt (<< 0.7.93.2~) Breaks: manpages-it (<< 2.80-4~), manpages-pl (<< 20060617-3~), openjdk-6-jdk (<< 6b24-1.11-0ubuntu1~), sun-java5-jdk (>> 0), sun-java6-jdk (>> 0) Filename: pool/main/a/apt/apt_1.0.1ubuntu2_amd64.deb Size: 953416 MD5sum: 08cc39e279ec0b778fa090947056e3e7 SHA1: fae98cdd011791c301508da789a3fb4f95d1dcef SHA256: 97c1b69a2d459a3be8c11a8457940dd1ca5c7da140566b30dfca72e2e408950f Description: commandline package manager Description-md5: 9fb97a88cb7383934ef963352b53b4a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: apt-clone Priority: extra Section: admin Installed-Size: 89 Maintainer: Michael Vogt Architecture: all Version: 0.3.1~ubuntu11 Depends: python3:any (>= 3.3.2-2~), python3, lsb-release, python3-apt Recommends: dpkg-repack Filename: pool/main/a/apt-clone/apt-clone_0.3.1~ubuntu11_all.deb Size: 12512 MD5sum: ab07fe381aa60cd82dfd0ba52e8ef16a SHA1: b60164f7722ce4bb7c6f94a5629505ee7e73ff56 SHA256: 00541332ecba53e0ed8cc8d45578b11133900c169f3412742992848703d6e74f Description: Script to create state bundles Homepage: https://launchpad.net/apt-clone Description-md5: 3b7312fdf94d9d4feb2e22a6ca187600 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: apt-doc Priority: optional Section: doc Installed-Size: 671 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: all Source: apt Version: 1.0.1ubuntu2 Filename: pool/main/a/apt/apt-doc_1.0.1ubuntu2_all.deb Size: 171780 MD5sum: 91c09ea0185c33a7a200827a9b96d875 SHA1: d8c9e63768c879876230491a6cd7da2eed73c8a2 SHA256: 3e547a4b8c1d8edfb9714c554c1c532f0d2d916a84de52eabb24869cc6f1dfb3 Description: documentation for APT Description-md5: bc2b838ed28e60af95d78926380a3300 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apt-listchanges Priority: optional Section: utils Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Sandro Tosi Architecture: all Version: 2.85.13ubuntu2 Depends: python:any (>= 2.7.1-0ubuntu2), apt (>= 0.8.9), python-apt (>= 0.7.93), ucf (>= 0.28), debianutils (>= 2.0.2), debconf (>= 0.5) | debconf-2.0 Suggests: x-terminal-emulator, www-browser, python-glade2, python-gtk2, default-mta | mail-transport-agent Filename: pool/main/a/apt-listchanges/apt-listchanges_2.85.13ubuntu2_all.deb Size: 46934 MD5sum: cf87a443c9dddd0c0f583773019bcab0 SHA1: 20d463341f2339f1aae65d1dc05654c418564dd7 SHA256: 14a9765497ef18f4d334a7a0ced64e41acf2c077d9cface2500f939d4e290880 Description: package change history notification tool Description-md5: ff242d11e25a826706c61be7ebf92ad4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apt-transport-https Priority: standard Section: admin Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: amd64 Source: apt Version: 1.0.1ubuntu2 Depends: libapt-pkg4.12 (>= 0.8.16~exp9), libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.2), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Filename: pool/main/a/apt/apt-transport-https_1.0.1ubuntu2_amd64.deb Size: 25122 MD5sum: dba822ee00c9e293808cf62ec1fd6eb0 SHA1: 1638f9c48b7d3aa03c7c218671584815be5d465b SHA256: 35264fe556d985fffa24273a88771648605241c400b13c23363053ac6d679f08 Description: https download transport for APT Description-md5: 3365a6b50bd0e4eef6e176a80c735f43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: apt-utils Priority: important Section: admin Installed-Size: 668 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: amd64 Source: apt Version: 1.0.1ubuntu2 Depends: libapt-inst1.5 (>= 0.9.15.4), libapt-pkg4.12 (>= 0.9.16), libc6 (>= 2.14), libdb5.3, libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Filename: pool/main/a/apt/apt-utils_1.0.1ubuntu2_amd64.deb Size: 171586 MD5sum: 9c523ce7d116bd782513b4c4b632c940 SHA1: 4fd855eddf1b419caa3e065e591d77788dd58041 SHA256: 390ba7af3e2c868b81e46ee6faf81468c1e62c9411209912ac13a38401368d01 Description: package management related utility programs Description-md5: 16cce27ec0fa5c8589595434ab59868e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: apt-xapian-index Priority: optional Section: admin Installed-Size: 328 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: all Version: 0.45ubuntu4 Depends: python (>= 2.7), python-xapian (>= 1.0.2), python-apt (>= 0.7.93.2), python-debian (>= 0.1.14), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: app-install-data, python-xdg Filename: pool/main/a/apt-xapian-index/apt-xapian-index_0.45ubuntu4_all.deb Size: 56368 MD5sum: 996a7231edaa325e96da81209386b4eb SHA1: bf1bdd19c1792bc7176af49dc366c634c27f38fe SHA256: 0085663c41c5aefa1d5d6871309e958c2495fc8ccb452910059969df2afac34c Description: maintenance and search tools for a Xapian index of Debian packages Homepage: http://www.enricozini.org/sw/apt-xapian-index/ Description-md5: 4d067fd0ee3f7e05edcd4cf184b9376f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: aptdaemon Priority: extra Section: admin Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Version: 1.1.1-1ubuntu5 Depends: python3:any (>= 3.2~), python3, gir1.2-glib-2.0, python3-aptdaemon (= 1.1.1-1ubuntu5), python3-gi, policykit-1 Recommends: lintian Breaks: software-center (<< 1.1.21) Filename: pool/main/a/aptdaemon/aptdaemon_1.1.1-1ubuntu5_all.deb Size: 13420 MD5sum: 31d3896b6d03e2f5daab6c9d745ed451 SHA1: cbe8a0e776657a53de430419b9c0221e6687b7d0 SHA256: c66cd594c0d40c57fd9cd794a82a1b703d11903f69ca91577aec92dfb61ba186 Description: transaction based package management service Homepage: https://launchpad.net/aptdaemon Description-md5: 5ed476246aefb12d0c1b0deb4818778b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: aptdaemon-data Priority: extra Section: admin Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Replaces: python-aptdaemon-gtk (<= 0.41+bzr580-0ubuntu1) Filename: pool/main/a/aptdaemon/aptdaemon-data_1.1.1-1ubuntu5_all.deb Size: 161488 MD5sum: beab625ea75fcbf8e8ba2049e320aa5b SHA1: 93ba7679f7d41f8400ed9aedc50cbc6ba8930789 SHA256: 6088a0c71884bcb1d51a7e2bd414af1e37e2b258e9b0b3ecc16f3e9eba37ca4f Description: data files for clients Homepage: https://launchpad.net/aptdaemon Description-md5: 3985974f0d80501bf717f4eee701d6e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: aptitude Priority: optional Section: admin Installed-Size: 4593 Maintainer: Ubuntu Developers Original-Maintainer: Aptitude Development Team Architecture: amd64 Version: 0.6.8.2-1ubuntu4 Depends: aptitude-common (= 0.6.8.2-1ubuntu4), libapt-pkg4.12 (>= 0.9.11), libboost-iostreams1.54.0, libc6 (>= 2.14), libcwidget3, libept1.4.12, libgcc1 (>= 1:4.1.1), libncursesw5 (>= 5.6+20070908), libsigc++-2.0-0c2a (>= 2.0.2), libsqlite3-0 (>= 3.6.5), libstdc++6 (>= 4.6), libtinfo5, libxapian22 Recommends: sensible-utils, apt-xapian-index, libparse-debianchangelog-perl Suggests: aptitude-doc-en | aptitude-doc, tasksel, debtags Conflicts: ia32-apt-get (<< 22) Filename: pool/main/a/aptitude/aptitude_0.6.8.2-1ubuntu4_amd64.deb Size: 1371226 MD5sum: c5790e67ba2ec122e2f6a0cb1e87859e SHA1: 6551306c93755ee66f503e57c301d49fc70f1ebe SHA256: 776d8f2314f5e1edef7fa06d5cbc1184a8a11d90b9fb35caa626032607a525bd Description: terminal-based package manager Homepage: http://aptitude.alioth.debian.org/ Description-md5: 6077c8b6794c43d6b34dfc9169fe4ee5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: aptitude-common Priority: optional Section: admin Installed-Size: 4180 Maintainer: Ubuntu Developers Original-Maintainer: Aptitude Development Team Architecture: all Source: aptitude Version: 0.6.8.2-1ubuntu4 Replaces: aptitude (<< 0.6.8-1) Recommends: aptitude Breaks: aptitude (<< 0.6.8-1) Filename: pool/main/a/aptitude/aptitude-common_0.6.8.2-1ubuntu4_all.deb Size: 699846 MD5sum: 2754aaf46ec1afa1625930ab94038a07 SHA1: acb6386f681912d4518550eaf387a3c838c00aac SHA256: 2f608d5d7694695264b0460c9459cc072300a63860787096abc14bfc8cd50ff4 Description: architecture indepedent files for the aptitude package manager Homepage: http://aptitude.alioth.debian.org/ Description-md5: 9a6108ce73d52516dd3b6e88cb5c0961 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: aptitude-dbg Priority: extra Section: devel Installed-Size: 19151 Maintainer: Ubuntu Developers Original-Maintainer: Aptitude Development Team Architecture: amd64 Source: aptitude Version: 0.6.8.2-1ubuntu4 Depends: aptitude (= 0.6.8.2-1ubuntu4) Recommends: libcwidget3-dbg Filename: pool/main/a/aptitude/aptitude-dbg_0.6.8.2-1ubuntu4_amd64.deb Size: 18574908 MD5sum: 743d97cf5876c257302d4128c769f4dd SHA1: 2fd97cd0fd74000c0c2754b3676eba5cdc439ee9 SHA256: 01683dec47a7b99b583f1c745f1f7ffe9f815e2af2ab827938530f2abf1701f8 Description: Debug symbols for the aptitude package manager Homepage: http://aptitude.alioth.debian.org/ Description-md5: 1113502e17f6968feafa2dabfeba01a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: aptitude-doc-en Priority: optional Section: admin Installed-Size: 1214 Maintainer: Ubuntu Developers Original-Maintainer: Aptitude Development Team Architecture: all Source: aptitude Version: 0.6.8.2-1ubuntu4 Provides: aptitude-doc Suggests: aptitude Filename: pool/main/a/aptitude/aptitude-doc-en_0.6.8.2-1ubuntu4_all.deb Size: 263610 MD5sum: f1b32fc1e376d03b1262d5c85bad6c22 SHA1: 2b6ff86d9df945d2647b2bd30cba5ed23d229ae2 SHA256: d3995081fe3d9298d225cd1eeeafcbe1af12f1818c496896ee1b045c2e07e80c Description: English manual for aptitude, a terminal-based package manager Homepage: http://aptitude.alioth.debian.org/ Description-md5: 2d2da927067ef4b395df37dd2ad5ed3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apturl Priority: optional Section: admin Installed-Size: 106 Maintainer: Michael Vogt Architecture: amd64 Version: 0.5.2ubuntu4 Depends: python3:any (>= 3.3.2-2~), python3, gconf2 (>= 2.28.1-2), apturl-common (= 0.5.2ubuntu4), gnome-icon-theme (>= 2.14.0-1), python3-gi, software-properties-gtk, python3-aptdaemon, python3-aptdaemon.gtk3widgets, gir1.2-gtk-3.0, gir1.2-webkit-3.0 Suggests: libgtk2-perl (>= 1:1.130) Filename: pool/main/a/apturl/apturl_0.5.2ubuntu4_amd64.deb Size: 8782 MD5sum: a77ff80c7779547878c0bd745cc81f7e SHA1: 302a9d3e7c97432f22c5baedcaeec17a19ef499a SHA256: ebadbbfff06cabadcd3f0124cf5c03f7da117424c33d1101c071011e9b1b7dd4 Description: install packages using the apt protocol - GTK+ frontend Description-md5: 0ff87045fbbd2d7c44b70b7ac3d409e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: apturl-common Priority: optional Section: admin Installed-Size: 168 Maintainer: Michael Vogt Architecture: amd64 Source: apturl Version: 0.5.2ubuntu4 Replaces: apturl (<< 0.3.6ubuntu2) Depends: python3:any (>= 3.3.2-2~), python3-apt, python3-update-manager Filename: pool/main/a/apturl/apturl-common_0.5.2ubuntu4_amd64.deb Size: 11296 MD5sum: e5039d93128c6ad6b9c0b3342a85185e SHA1: 164b4aa2ced73df2e90fc789b8da7396e8a8fa2a SHA256: 8c4af0ac3284e738f68eb2a523437e2c0ff528d16f2116aa5a7010f8d60afc43 Description: install packages using the apt protocol - common data Description-md5: 1a9a3582fbd6f80810cf5bf2bc1a5249 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: archdetect-deb Priority: optional Section: utils Installed-Size: 83 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: amd64 Source: hw-detect Version: 1.95ubuntu2 Depends: libc6 (>= 2.3.4), libdebian-installer4 (>= 0.88ubuntu3) Filename: pool/main/h/hw-detect/archdetect-deb_1.95ubuntu2_amd64.deb Size: 5742 MD5sum: b303253d1511d7cbc9f6f91fe61c76a8 SHA1: ad8d04d17cf83e2c234436a6bc04563b930df928 SHA256: 04d54416dd796af91026f82389840ee09938ad5e7a5b4bbe978aa61760d69974 Description: Hardware architecture detector Description-md5: 765a228bfe63c8b4154e609b8f7c1823 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: asciidoc Priority: optional Section: text Installed-Size: 2314 Maintainer: Ubuntu Developers Original-Maintainer: Fredrik Steen Architecture: all Version: 8.6.9-2ubuntu1 Depends: python (>= 2.4), python:any (>= 2.7.1-0ubuntu2) Recommends: dblatex, docbook-utils, libxml2-utils, xmlto Suggests: source-highlight, vim-addon-manager Filename: pool/main/a/asciidoc/asciidoc_8.6.9-2ubuntu1_all.deb Size: 688098 MD5sum: 19c38bfeac072d642710e4a895c7cc3a SHA1: ad02481e473862b019c131b4c2ed63063106bf48 SHA256: 1a3dc74d3a6e83342b88a10be827a5a94d92163f525be9c134dda56c66c5f741 Description: Highly configurable text format for writing documentation Multi-Arch: foreign Homepage: http://www.asciidoc.org Description-md5: db604821694f4714e2ebf12b4f45105d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: aspell Priority: optional Section: text Installed-Size: 364 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: amd64 Version: 0.60.7~20110707-1ubuntu1 Replaces: aspell-bin (<< 0.60.3-2), aspell-hi (<= 0.01-1), aspell-mr (<= 0.10-1) Provides: aspell-bin Depends: libaspell15 (= 0.60.7~20110707-1ubuntu1), libc6 (>= 2.14), libncursesw5 (>= 5.6+20070908), libstdc++6 (>= 4.1.1), libtinfo5, dictionaries-common (>> 0.40) Recommends: aspell-en | aspell-dictionary | aspell6a-dictionary Suggests: aspell-doc, spellutils Breaks: aspell-bin (<< 0.60.3-2) Filename: pool/main/a/aspell/aspell_0.60.7~20110707-1ubuntu1_amd64.deb Size: 78376 MD5sum: a53228dde8d617bf707c907b7dd5205f SHA1: 884c8e71aca514ee464a2f0d639888e8a0c18973 SHA256: c8c636da0a29b891740124e35fc5145475919b2bb33ba5f7f4170919b21afd8e Description: GNU Aspell spell-checker Homepage: http://aspell.net/ Description-md5: 21dcab5448cba7f61ba8df4ace46f1af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: aspell-doc Priority: optional Section: doc Installed-Size: 960 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: all Source: aspell Version: 0.60.7~20110707-1ubuntu1 Suggests: aspell (>> 0.60) Filename: pool/main/a/aspell/aspell-doc_0.60.7~20110707-1ubuntu1_all.deb Size: 227112 MD5sum: 602ac7668ebf4ef0199960384df79681 SHA1: 20eb0053bb7436b9f34bd0afe87d4470e3f9b698 SHA256: 2223029801538b32ef3b744bf375b4706c0248094f3c3e80cacc4437588ce333 Description: Documentation for GNU Aspell spell-checker Homepage: http://aspell.net/ Description-md5: 33c68b861d6f2e2ef1b189909b98b741 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: aspell-en Priority: optional Section: text Installed-Size: 330 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: all Version: 7.1-0-1 Provides: aspell-dictionary Depends: aspell (>= 0.60.3-2), dictionaries-common (>= 0.49.2) Filename: pool/main/a/aspell-en/aspell-en_7.1-0-1_all.deb Size: 267192 MD5sum: 194c3da8a684af52430a7d53ed2f3f4f SHA1: ab89dc931afb97a7cfad9dabe49d43c230b32db9 SHA256: c127889a2276b9f7d7b5dd72c2ba19ffed284bb04c46d328ca7625e94e32af3f Description: English dictionary for GNU Aspell Homepage: http://aspell.net/ Description-md5: 33430e0431f04d392965162affa799eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: at Priority: optional Section: admin Installed-Size: 194 Maintainer: Ubuntu Developers Original-Maintainer: Ansgar Burchardt Architecture: amd64 Version: 3.1.14-1ubuntu1 Depends: libc6 (>= 2.14), libpam0g (>= 0.99.7.1), init-system-helpers (>= 1.5), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.2-14), libpam-runtime (>= 1.0.1-11) Suggests: default-mta | mail-transport-agent Filename: pool/main/a/at/at_3.1.14-1ubuntu1_amd64.deb Size: 37636 MD5sum: 0f0d7f9d02e51fac7e25eb92ab1645c1 SHA1: b2e70ae7e12cda821c4cbcfc82eed662425f3ed6 SHA256: 860200d6b15f260ca3e6c26ef4348710ae40e47515fa5288a15de4fb2a2bad14 Description: Delayed job execution and batch processing Multi-Arch: foreign Description-md5: 97e204a9f4ad8c681dbd54ec7c505251 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server Package: at-spi2-core Priority: optional Section: misc Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Version: 2.10.2.is.2.10.1-0ubuntu1 Depends: libatspi2.0-0, libc6 (>= 2.7), libdbus-1-3 (>= 1.0.2), libglib2.0-0 (>= 2.37.3), libx11-6, libxtst6 Breaks: gdm3 (<< 3.4) Filename: pool/main/a/at-spi2-core/at-spi2-core_2.10.2.is.2.10.1-0ubuntu1_amd64.deb Size: 43076 MD5sum: 4c163f98a72669a546f3b6616f183698 SHA1: b38ccf8f56180d11667db6a61d5cc08968d961cb SHA256: 1ef4c7abee24f1bbe1cc6e0b2db10fb108be927b2094811e7350187142c5d067 Description: Assistive Technology Service Provider Interface (dbus core) Multi-Arch: foreign Homepage: http://live.gnome.org/Accessibility Description-md5: bfa19b4797e8c3ac7592c237175ae49e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: at-spi2-core-dbg Priority: extra Section: debug Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Depends: at-spi2-core (= 2.10.2.is.2.10.1-0ubuntu1) Filename: pool/main/a/at-spi2-core/at-spi2-core-dbg_2.10.2.is.2.10.1-0ubuntu1_amd64.deb Size: 105940 MD5sum: ac03b5cc3c1f91ff08cb1670c05123b0 SHA1: 48d40f8e9e4d57ae8002a07a6584162d3d92c452 SHA256: 5a99a0cabd54034d9d8ecdc47be5506c75f0af1f11b28b2a932cbc09cf86d890 Description: Assistive Technology Service Provider Interface - debugging symbols Homepage: http://live.gnome.org/Accessibility Description-md5: bed70eea3d0c01227e434bb20a6f0102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: at-spi2-doc Priority: optional Section: misc Installed-Size: 993 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Recommends: devhelp Filename: pool/main/a/at-spi2-core/at-spi2-doc_2.10.2.is.2.10.1-0ubuntu1_all.deb Size: 70526 MD5sum: d822933b903a0e7b1ecaa9628ea40253 SHA1: 614b79347bddad664aa8a35cfcac6ced41095293 SHA256: 0ab93bef3f09cbdb835d6ce1c591cc1a096aa25d4a99fde19d14d220143fd5ef Description: Assistive Technology Service Provider Interface (Documentation) Homepage: http://live.gnome.org/Accessibility Description-md5: e4ecae3df3f427dece5859c37aad6173 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: attr Priority: optional Section: utils Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 1:2.4.47-1ubuntu1 Depends: libattr1 (= 1:2.4.47-1ubuntu1), libc6 (>= 2.4) Conflicts: xfsdump (<< 2.0.0) Filename: pool/main/a/attr/attr_2.4.47-1ubuntu1_amd64.deb Size: 29346 MD5sum: b409b9d692330d8838a0521cb62f00b7 SHA1: effe5bf80d830d64ce27675b67b4e21c264197e8 SHA256: 7025ac8de1a9b1379e4e5238e27c0d7d27f2212ce94acda63101efc44a64d29c Description: Utilities for manipulating filesystem extended attributes Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/attr/ Description-md5: 06768ac28dead3beb310d915f4822f45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: auctex Priority: optional Section: tex Installed-Size: 3254 Maintainer: Ubuntu Developers Original-Maintainer: Davide G. M. Salvetti Architecture: all Version: 11.87-1ubuntu2 Replaces: preview-latex Provides: preview-latex Depends: emacs24 | emacs-snapshot, preview-latex-style, dpkg (>= 1.15.4) | install-info, debconf (>= 0.5) | debconf-2.0 Recommends: ghostscript, texlive-latex-recommended, evince | xpdf | evince-gtk, xdg-utils Suggests: catdvi, dvipng, lacheck Conflicts: preview-latex Breaks: emacspeak (<= 17.0-1) Filename: pool/main/a/auctex/auctex_11.87-1ubuntu2_all.deb Size: 1136670 MD5sum: b4a1b123f897b933c22f2fdd2a2e9bb6 SHA1: 8e386754b8a57e400c1f154a62932d76d21ef017 SHA256: 5c9394704e42229acb6b6e23ed1dc74ebe98ce7e8de51ffe7259a5c45e779679 Description: integrated document editing environment for TeX etc. Homepage: http://www.gnu.org/software/auctex/ Description-md5: 25baf0e24237a5e428db3cee78559130 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: auditd Priority: extra Section: admin Installed-Size: 632 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: audit Version: 1:2.3.2-2ubuntu1 Depends: lsb-base (>= 3.0-6), init-system-helpers (>= 1.13~), libaudit1 (>= 1:2.2.1), libauparse0 (>= 1:2.3.1), libc6 (>= 2.16) Suggests: audispd-plugins Filename: pool/main/a/audit/auditd_2.3.2-2ubuntu1_amd64.deb Size: 180542 MD5sum: cb4f91c7b2c5458de90b9322461ac740 SHA1: 8afffca774584b20eb74bbe95059cb1240200e83 SHA256: 50573e1e2fd6b38e029bdbdbb67008b45f889b67287d1c3c0dc3edb76f8ae590 Description: User space tools for security auditing Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: 77aaff86394a1a8da0659fa99413f455 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: augeas-dbg Priority: extra Section: debug Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: amd64 Source: augeas Version: 1.2.0-0ubuntu1 Depends: libaugeas0 (= 1.2.0-0ubuntu1), augeas-tools (= 1.2.0-0ubuntu1) Filename: pool/main/a/augeas/augeas-dbg_1.2.0-0ubuntu1_amd64.deb Size: 21452 MD5sum: 2ea4feb58036e42ff7588e4dc6746c89 SHA1: ade17e59095735ce647d67f1f8aaa34bb48400b5 SHA256: 12e505cfbce22f70633e5e6eb2f32e21bcd915b636ebaa43d51d1298e0834e3b Description: Debugging symbols for libaugeas0 Homepage: http://augeas.net/ Description-md5: 04bb4e8b4c50b75a43a23eeb7fc23ad2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: augeas-doc Priority: optional Section: doc Installed-Size: 11405 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: all Source: augeas Version: 1.2.0-0ubuntu1 Filename: pool/main/a/augeas/augeas-doc_1.2.0-0ubuntu1_all.deb Size: 677116 MD5sum: 30df692547bcef81dc61d0b791bff537 SHA1: 3f956c2c3f57a7e5fea11542e10b5f4d9b099039 SHA256: cd1a4211df8ee09eea9b8c1950951bfc09dce005d24264513b70bfd19135edd5 Description: Augeas lenses documentation Homepage: http://augeas.net/ Description-md5: df6d79b56cf65fba9d747321e87a4f25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: augeas-lenses Priority: optional Section: misc Installed-Size: 1227 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: all Source: augeas Version: 1.2.0-0ubuntu1 Suggests: augeas-doc Filename: pool/main/a/augeas/augeas-lenses_1.2.0-0ubuntu1_all.deb Size: 229376 MD5sum: b17b46de599fffc329a786b72dd30fa2 SHA1: 43e7bc674a826215166a09dc231e3beb415906b0 SHA256: 838b6a91c6f024256d28bba16b1042f501d387ca3af18a18559efb113971326f Description: Set of lenses needed by libaugeas0 to parse config files Homepage: http://augeas.net/ Description-md5: be11d5488843917c54ba7d49005b36de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: augeas-tools Priority: optional Section: admin Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: amd64 Source: augeas Version: 1.2.0-0ubuntu1 Depends: libaugeas0 (>= 0.10.0), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libreadline6 (>= 6.0) Filename: pool/main/a/augeas/augeas-tools_1.2.0-0ubuntu1_amd64.deb Size: 20782 MD5sum: 60de3c90250f6814cda3dab9b5c52e3c SHA1: 4e457e651418e28c4faad439039092266ce33c14 SHA256: 49a688a175b3b62c164347b793853c2c1d601b4e79193b415b31eb2c3f45aa40 Description: Augeas command line tools Homepage: http://augeas.net/ Description-md5: 3910bb8edac0a7a2eb4c78437f67490b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: auth-client-config Priority: optional Section: admin Installed-Size: 99 Maintainer: Jamie Strandboge Architecture: all Version: 0.9ubuntu1 Depends: python Suggests: libpam-cracklib Filename: pool/main/a/auth-client-config/auth-client-config_0.9ubuntu1_all.deb Size: 15406 MD5sum: f5ea3286e581f2db5133ee26199422a3 SHA1: 6b3c7da974e33d37637fdf85d615828cb9787d64 SHA256: 24332e773d6092b20a086baf095737315362ca0d1dcb15f989caee0fc945e900 Description: pam and NSS profile switcher Description-md5: 4cc8ab70be75a9c4a7a4aadde9497ff1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: authbind Priority: extra Section: utils Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Ian Jackson Architecture: amd64 Version: 2.1.1 Depends: libc6 (>= 2.14) Filename: pool/main/a/authbind/authbind_2.1.1_amd64.deb Size: 19644 MD5sum: 970d73e2beae6852c8af26a9b3ae1794 SHA1: 9342f8bd008ec46eed68e9257c1f862ca89d3484 SHA256: 0eb8e828a8ef67eac9e410e044c6639b860a065b415241497bb54fb81d84d315 Description: Allows non-root programs to bind() to low ports Description-md5: 6ffd268fa04a5e344832e2275265da15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: autoconf Priority: optional Section: devel Installed-Size: 1890 Maintainer: Ubuntu Developers Original-Maintainer: Ben Pfaff Architecture: all Version: 2.69-6 Depends: perl (>> 5.005), m4 (>= 1.4.13), debianutils (>= 1.8) Recommends: automake | automaken Suggests: autoconf2.13, autoconf-archive, gnu-standards, autoconf-doc, libtool, gettext Breaks: autoconf2.13 (<< 2.13-47), gettext (<< 0.10.39), pkg-config (<< 0.25-1.1) Filename: pool/main/a/autoconf/autoconf_2.69-6_all.deb Size: 322180 MD5sum: e2e5c30dc7112212301988d4c3329fe8 SHA1: 117ef68b22eb4f84cd2ac1e3a42bfe4d3825869c SHA256: 79639ce363f7964dc6d034dc13b489ada1a0e0d3c6f0c27e5f6c86405164eef8 Description: automatic configure script builder Multi-Arch: foreign Homepage: http://www.gnu.org/software/autoconf/ Description-md5: 4ce0439e1f4ccd6c825471aa546f1611 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: autoconf-doc Priority: optional Section: doc Installed-Size: 4342 Maintainer: Ubuntu Developers Original-Maintainer: Ben Pfaff Architecture: all Source: autoconf Version: 2.69-6 Depends: gnu-standards Filename: pool/main/a/autoconf/autoconf-doc_2.69-6_all.deb Size: 2815516 MD5sum: 31ea0171b79eec05ed29e1399ea2195e SHA1: 5f0cc7f47b44f069d4336215baf1db7522344d38 SHA256: 6a6a62788eaa8b869e4ec3dda61bb9d6b40b2e440dda687f72e108032c03120e Description: automatic configure script builder documentation Homepage: http://www.gnu.org/software/autoconf/ Description-md5: c941bf6d49c8e26e328c69ddd7cb39c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: autoconf2.13 Priority: optional Section: devel Installed-Size: 1258 Maintainer: Ubuntu Developers Original-Maintainer: Ben Pfaff Architecture: all Version: 2.13-62 Depends: m4, debianutils (>= 1.8), autoconf, perl, libfile-temp-perl, dpkg (>= 1.15.4) | install-info Recommends: automake1.4 Suggests: gnu-standards Filename: pool/main/a/autoconf2.13/autoconf2.13_2.13-62_all.deb Size: 351200 MD5sum: 6a44055f75aee8d1d884bfefe896c958 SHA1: c6167eb5c7ce4ae7b8c628bf023259577a33162f SHA256: 8409cded8e8e0b0d24fd3e5b5c1e32af2d4b73b6f13511ad078fa9160dd2587d Description: automatic configure script builder (obsolete version) Description-md5: bc5162b28a67120a5898327c3cd78daf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: autoconf2.64 Priority: extra Section: devel Installed-Size: 1920 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: all Version: 2.64-3 Replaces: autoconf (<< 2.50) Depends: m4, debianutils (>= 1.8), autoconf (>= 2.50), perl, libfile-temp-perl Conflicts: autoconf (<< 2.50) Filename: pool/main/a/autoconf2.64/autoconf2.64_2.64-3_all.deb Size: 512912 MD5sum: e010f4cfd67416bc35a77f5ecb12c102 SHA1: 11d75ef19c08fc0cf1a946257b0824c0f1b957aa SHA256: 8eb412d99f3ea6141a91b038ecc62b83bbf697b3a803630984e34ee12b444173 Description: automatic configure script builder (obsolete version) Description-md5: 10ebda51cac38f72fa38461f25a84819 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: autofs Priority: extra Section: utils Installed-Size: 1632 Maintainer: Ubuntu Developers Original-Maintainer: Michael Tokarev Architecture: amd64 Version: 5.0.7-3ubuntu3 Replaces: autofs5 (<< 5.0.6-1~) Provides: autofs5 Depends: libc6 (>= 2.16), libxml2 (>= 2.7.4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), ucf Pre-Depends: multiarch-support Recommends: nfs-common, kmod | module-init-tools Breaks: autofs5 (<< 5.0.6-1~) Filename: pool/main/a/autofs/autofs_5.0.7-3ubuntu3_amd64.deb Size: 281538 MD5sum: 062872d4dac507bea974a496068a6426 SHA1: d05490861ac00e8cdacce2d09d63ca8bfe91736c SHA256: 9a3806bcf963ce832e62ef227129d1dac80889c3be9a3ed5e4e9b747d87de405 Description: kernel-based automounter for Linux Homepage: http://www.kernel.org/pub/linux/daemons/autofs/v5/ Description-md5: c2943d4026686519e74f5ea404af6a90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: autofs5 Priority: extra Section: oldlibs Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Michael Tokarev Architecture: all Source: autofs Version: 5.0.7-3ubuntu3 Depends: autofs (>= 5.0.7-3ubuntu3) Filename: pool/main/a/autofs/autofs5_5.0.7-3ubuntu3_all.deb Size: 2546 MD5sum: 150b9a39ad327640226c082475c442f0 SHA1: 48d5e5259832c49ba5d0bcbaa7d7d71c851967ff SHA256: e60858c39204c7174ce5fcf11620f80ba4f7d10a32be6292d19567d21d8010a2 Description: transitional dummy package for 'autofs' Homepage: http://www.kernel.org/pub/linux/daemons/autofs/v5/ Description-md5: 1b300636de9a031d02d3d95b18d3b52a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: autogen Priority: optional Section: devel Installed-Size: 2979 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Metzler Architecture: amd64 Version: 1:5.18-2ubuntu2 Depends: guile-2.0-libs, libc6 (>= 2.14), libopts25 (>= 1:5.18), libxml2 (>= 2.7.4), libopts25-dev (= 1:5.18-2ubuntu2) Filename: pool/main/a/autogen/autogen_5.18-2ubuntu2_amd64.deb Size: 1060874 MD5sum: 2fbce3d5e64fa1cc822c78a742f67db5 SHA1: 6c0d0f3868742a312d5ad05ef28cc3042dcdf8c5 SHA256: 7fff018133fa7ea223b69ff4f1e03ade244d6914ae9da0de41e2e1e7c549cf94 Description: automated text file generator Multi-Arch: foreign Homepage: http://www.gnu.org/software/autogen/ Description-md5: 2f86cfabb08ada7ec7136b2b9acca967 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: automake Priority: optional Section: devel Installed-Size: 1492 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: all Source: automake-1.14 Version: 1:1.14.1-2ubuntu1 Provides: automake-1.14, automaken Depends: autoconf (>= 2.65), autotools-dev (>= 20020320.1) Conflicts: automake (<< 1:1.4-p5-1), automake1.10-doc, automake1.5 (<< 1.5-2), automake1.6 (<< 1.6.1-4) Filename: pool/main/a/automake-1.14/automake_1.14.1-2ubuntu1_all.deb Size: 510410 MD5sum: e9d110c27959df7ac9aef0e1c70d37fd SHA1: 415fe3c2973550ec8f38f676d18bf6c31036e78f SHA256: 5c89874cdd37762176158cb32d66ba3f251574408a0b142f73d939ca3f359a7c Description: Tool for generating GNU Standards-compliant Makefiles Multi-Arch: foreign Homepage: http://www.gnu.org/software/automake/ Description-md5: c12e147d0e0aa5be7a2c5d8d77613ff5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: automake1.10 Priority: optional Section: devel Installed-Size: 1363 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: all Version: 1:1.10.3-3.1ubuntu1 Replaces: automake (<< 1:1.11-1), automake1.10-doc Provides: automaken Depends: autoconf (>= 2.60), autotools-dev (>= 20020320.1) Conflicts: automake (<< 1:1.11-1), automake1.10-doc, automake1.5 (<< 1.5-2), automake1.6 (<< 1.6.1-4) Filename: pool/main/a/automake1.10/automake1.10_1.10.3-3.1ubuntu1_all.deb Size: 516722 MD5sum: 8c2a177524410c251e4daa75ae272e3b SHA1: f11781d3ef6c3f84ef4f2793343d06d520637bef SHA256: 5afad85d6e31e9141966ffe4a30333541d5d0302e1b56fdf1bb9b1c75a623d1f Description: Tool for generating GNU Standards-compliant Makefiles Homepage: http://www.gnu.org/software/automake/ Description-md5: 665f57a8fdf721ce5247d4bd57bad0af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: automake1.11 Priority: optional Section: devel Installed-Size: 1505 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: all Version: 1:1.11.6-2 Replaces: automake (<< 1:1.11.6-2~) Provides: automaken Depends: autoconf (>= 2.62), autotools-dev (>= 20020320.1) Conflicts: automake (<< 1:1.11.6-2~), automake1.10-doc, automake1.5 (<< 1.5-2), automake1.6 (<< 1.6.1-4) Filename: pool/main/a/automake1.11/automake1.11_1.11.6-2_all.deb Size: 577490 MD5sum: ec802ed6900acc9e39607be76c032bf0 SHA1: 3fd92e649a615fefd9f58fb0c5673102bbe0eb7e SHA256: ab0db78e200b240abc5d9d44098a07931e05a2077a7e7e671d6f576a26dba149 Description: Tool for generating GNU Standards-compliant Makefiles Multi-Arch: foreign Homepage: http://www.gnu.org/software/automake/ Description-md5: 325adcd2e2a33d77efe3948d260d2fad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: automake1.4 Priority: optional Section: devel Installed-Size: 932 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: all Source: automake Version: 1:1.4-p6-13.1 Replaces: automake, automake1.4-doc Provides: automake1.4-doc Depends: autoconf, autotools-dev (>= 20010511.2) Conflicts: automake (<< 1:1.4-p6-3), automake1.4-doc, automake1.5 Filename: pool/main/a/automake/automake1.4_1.4-p6-13.1_all.deb Size: 232476 MD5sum: 08dd057ba44cb66bb587c1cd5f03ad72 SHA1: a452d72333721b4192b3a498465ac3b2f5ba88f7 SHA256: dccd20885dfebf1584ad65702ed6dda1ec5f929a3cd19e7813e37dd4d3af5be3 Description: A tool for generating GNU Standards-compliant Makefiles Homepage: http://www.gnu.org/software/automake/ Description-md5: 549c257438a50b62feacc392e53bb8f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: automake1.9 Priority: optional Section: devel Installed-Size: 1137 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: all Version: 1.9.6+nogfdl-4ubuntu1 Provides: automaken Depends: autoconf (>= 2.58), autotools-dev (>= 20020320.1) Suggests: automake1.9-doc Conflicts: automake (<< 1:1.4-p5-1), automake1.5 (<< 1.5-2), automake1.6 (<< 1.6.1-4) Filename: pool/main/a/automake1.9/automake1.9_1.9.6+nogfdl-4ubuntu1_all.deb Size: 338192 MD5sum: 5bc0b73852c50927a98ac4150cf2c585 SHA1: 8dbab4e448dd095f7ab9dc6defe308823cd1b16a SHA256: 75358908ffe09e115d3971273c967306dd931b94edd846dbd6a762448e40cb56 Description: A tool for generating GNU Standards-compliant Makefiles Description-md5: 16f7c6a70ae85327f4522569aa2e0cc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: automoc Priority: extra Section: devel Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Version: 1.0~version-0.9.88-5build1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1), libqt4-dev Filename: pool/main/a/automoc/automoc_1.0~version-0.9.88-5build1_amd64.deb Size: 32888 MD5sum: 8235c41c8e1a375f302629fb10cc78df SHA1: e71501f6275287af03e74aaf4b8ee597d0b55abb SHA256: b920f1aa73f1708c8ef5a4376579cb9970ba6a1c71bc7f3dbcf3a49093946144 Description: automatic moc for Qt 4 packages Homepage: http://cia.vc/stats/project/kde/automoc Description-md5: 089a1b306f5bbbf5910999a44b5b53b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: autopkgtest Priority: optional Section: devel Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Autopkgtest team Architecture: all Version: 2.14.1 Depends: python (>= 2.6), debhelper, python-debian, apt-utils, pbuilder Suggests: autopkgtest-xenlvm, schroot, lxc, qemu-system, qemu-utils Filename: pool/main/a/autopkgtest/autopkgtest_2.14.1_all.deb Size: 65854 MD5sum: 9d3a13f9950bf662120b05d516fbe0ff SHA1: 3f0b67798e41e3a670048bdeb58f83f1b64cf1b9 SHA256: 08ef21d5bd666f5c8e8a2e05575e8c72dcad29ccd8b6374d8cb15cef3aac020e Description: automatic as-installed testing for Debian packages Description-md5: 837abf3c07beaa78ca6ce864013f7a3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: autopoint Priority: optional Section: devel Installed-Size: 442 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: gettext Version: 0.18.3.1-1ubuntu2 Replaces: gettext (<= 0.17-11) Depends: xz-utils Filename: pool/main/g/gettext/autopoint_0.18.3.1-1ubuntu2_all.deb Size: 369022 MD5sum: 6f571876dea2457bc791600243886dbb SHA1: 8f0142dd47093d0a883939bdcbf3546979fd4edf SHA256: 63d44d1f471089bbedc478c3ca783ab20db43595be58452fbd73b3e33c19bcfb Description: The autopoint program from GNU gettext Homepage: http://www.gnu.org/software/gettext/ Description-md5: 347fdc045a58fcfc2665ef5e73c453b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: autotools-dev Priority: optional Section: devel Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Henrique de Moraes Holschuh Architecture: all Version: 20130810.1 Filename: pool/main/a/autotools-dev/autotools-dev_20130810.1_all.deb Size: 44326 MD5sum: 31c2af2345b80945a9b60bec2ee31f06 SHA1: 3b38cc37ffe713ad76f54607bb85ffa8bd4863e6 SHA256: 81c286a8649e16eed5b0e14ceae9901420053e47a10d121de671ae013a9c8708 Description: Update infrastructure for config.{guess,sub} files Enhances: cdbs, debhelper Multi-Arch: foreign Homepage: http://savannah.gnu.org/projects/config/ Description-md5: 32ffa2f2f5e89ec7409d0b4d9086ce91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: avahi-autoipd Priority: optional Section: net Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libc6 (>= 2.14), libdaemon0 (>= 0.10), adduser Recommends: isc-dhcp-client, iproute Conflicts: zeroconf Filename: pool/main/a/avahi/avahi-autoipd_0.6.31-4ubuntu1_amd64.deb Size: 35740 MD5sum: 38223bc6250a65463b2d55574665a736 SHA1: 989ff8f265564519ad098d3642f9a9f6c89c7371 SHA256: 40285cd274b4ebff4cecc438bf584d41d3a366ea155bb187aa8387ea0ff09a97 Description: Avahi IPv4LL network address configuration daemon Homepage: http://avahi.org/ Description-md5: acd046468650e18ecf72b9fbe41992f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: avahi-daemon Priority: optional Section: net Installed-Size: 347 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (>= 0.6.16), libavahi-core7 (>= 0.6.24), libc6 (>= 2.14), libcap2 (>= 2.10), libdaemon0 (>= 0.13), libdbus-1-3 (>= 1.1.1), libexpat1 (>= 2.0.1), init-system-helpers (>= 1.13~), upstart (>= 0.6.7-4), adduser, dbus (>= 1.2.16-0ubuntu3), lsb-base (>= 3.0-6), bind9-host | host Recommends: libnss-mdns Suggests: avahi-autoipd Filename: pool/main/a/avahi/avahi-daemon_0.6.31-4ubuntu1_amd64.deb Size: 58668 MD5sum: 0a086f72e36f0c81122a611fa334aa25 SHA1: cc0e45f81762b8e642a5c3eecea4f4b452d0dc46 SHA256: 45e49183f472c876a039eaf9211a691472b12b97f84b3b1a356977c6c99b00e8 Description: Avahi mDNS/DNS-SD daemon Multi-Arch: foreign Homepage: http://avahi.org/ Description-md5: 13d651a25febc553220e03e75c6f4c7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: avahi-dbg Priority: extra Section: libdevel Installed-Size: 1174 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Filename: pool/main/a/avahi/avahi-dbg_0.6.31-4ubuntu1_amd64.deb Size: 852014 MD5sum: defa3c995040d1d254a1e423691323be SHA1: d69931c5dc76b3ddef201806c81f830418a04139 SHA256: 46735ffa0c76d53fddcc91299abdd6a841648d60bb75675de5d21723b07abc00 Description: Avahi - debugging symbols Homepage: http://avahi.org/ Description-md5: be77e76d0e7f31e403a87133b185f545 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: avahi-utils Priority: optional Section: net Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.22), libc6 (>= 2.4), libgdbm3 (>= 1.8.3), avahi-daemon Filename: pool/main/a/avahi/avahi-utils_0.6.31-4ubuntu1_amd64.deb Size: 24130 MD5sum: 2f3da986d3121ebcc072c6842866b43e SHA1: 97361d181392021be9d88f7a457eaf4487b8b87b SHA256: 231c4d3076b93752e5d471442351d21b6363922b24ba37d36d1e71dcfc1e4399 Description: Avahi browsing, publishing and discovery utilities Homepage: http://avahi.org/ Description-md5: 58895f03e39692a5213ffb4d5bbc3564 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: awstats Priority: optional Section: web Installed-Size: 3141 Maintainer: Ubuntu Developers Original-Maintainer: Sergey B Kirpichev Architecture: all Version: 7.2+dfsg-1 Depends: perl Recommends: libnet-xwhois-perl, coreutils (>= 7.4) Suggests: apache2 | httpd, libnet-dns-perl, libnet-ip-perl, libgeo-ipfree-perl, liburi-perl Filename: pool/main/a/awstats/awstats_7.2+dfsg-1_all.deb Size: 777742 MD5sum: 3eee86b73e0af4c30019fa7a82e36ec9 SHA1: 393ce056b4bff098cdfa6f29f7f57075522e2593 SHA256: bc95fdf465fd45c0b9db5bd3f0467ac73927890c0f882541bcb3cca547d10236 Description: powerful and featureful web server log analyzer Homepage: http://awstats.sourceforge.net/ Description-md5: 13563117d747b5d1acdce35986df9f8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: b43-fwcutter Priority: optional Section: utils Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Echeverry Architecture: amd64 Version: 1:018-2 Depends: libc6 (>= 2.14), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/b/b43-fwcutter/b43-fwcutter_018-2_amd64.deb Size: 26398 MD5sum: cf320b21c8873ede3170d63b923c3942 SHA1: 53736592f84782401c36d3ef0f8bf6ed9aa85692 SHA256: c40fb7868bb41646ef96ff1dc43d8d096e2888825bef087914c76f2f83547f07 Description: utility for extracting Broadcom 43xx firmware Homepage: http://wireless.kernel.org/en/users/Drivers/b43 Description-md5: 19713b4b3c64e57d9fe7a1aec56c25e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-live Package: backuppc Priority: optional Section: utils Installed-Size: 2210 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Drolez Architecture: amd64 Version: 3.3.0-1ubuntu1 Depends: libc6 (>= 2.2.5), perl, libdigest-md5-perl, libcompress-zlib-perl, libarchive-zip-perl, tar (>> 1.13), adduser (>= 3.9), dpkg (>= 1.8.3), apache2 | httpd, debconf (>= 0.5) | debconf-2.0, smbclient, samba-common-bin, bzip2, default-mta | mail-transport-agent, iputils-ping | inetutils-ping, ucf, libtime-modules-perl, libwww-perl, libsocket6-perl Recommends: rsync, libfile-rsyncp-perl (>= 0.68), openssh-client | ssh-client, rrdtool, libio-dirent-perl Suggests: w3m | www-browser, par2 Conflicts: libfile-rsyncp-perl (<< 0.68) Filename: pool/main/b/backuppc/backuppc_3.3.0-1ubuntu1_amd64.deb Size: 433434 MD5sum: 37fbe75f9ad7679517e6131ab746a86c SHA1: 29b4311cdb2e5ab70c721e59e7c07de5201fd09e SHA256: 1aae5796db3589174e0c5ed8ea0916509b2f1f4f2d92d5ea3bb634d342781c82 Description: high-performance, enterprise-grade system for backing up PCs Description-md5: 9cf963981a203dec6d92fb3ac952296c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula Priority: optional Section: admin Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: all Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-server, bacula-client, bacula-common Suggests: bacula-doc Filename: pool/main/b/bacula/bacula_5.2.6+dfsg-9.1ubuntu3_all.deb Size: 1468 MD5sum: b1ea4a06df5da3e89a86f1d203aef270 SHA1: 960927a92dc8e4dc7921678ce7d90f3ad12ce47e SHA256: 74d7fea840acfa7cd7e18d99219e686a39386dcd2921e3c03f9cbcb951f6f2df Description: network backup service - metapackage Homepage: http://www.bacula.org/ Description-md5: 009b2ac44623dcd1e29278295ca5947d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-client Priority: optional Section: admin Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: all Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-console (>= 5.2.6+dfsg-9.1ubuntu3), bacula-fd (>= 5.2.6+dfsg-9.1ubuntu3) Recommends: bacula-traymonitor Filename: pool/main/b/bacula/bacula-client_5.2.6+dfsg-9.1ubuntu3_all.deb Size: 15144 MD5sum: daae13045b12deb955ce3213b07ea463 SHA1: f305c481dfcd5a8cf546dd3949f82b217eeb70f5 SHA256: 1ce2e68725392fde7961d4ef10762eed4ee4cb91359cb88905f04ac0aaa438a5 Description: network backup service - client metapackage Homepage: http://www.bacula.org/ Description-md5: 227b9f3b8ef268598d29ad6660928fff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-common Priority: optional Section: admin Installed-Size: 1147 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director-common Depends: libc6 (>= 2.14), libcap2 (>= 2.10), libpython2.7 (>= 2.7), libssl1.0.0 (>= 1.0.0), libstdc++6 (>= 4.1.1), libwrap0 (>= 7.6-4~), zlib1g (>= 1:1.1.4), debconf (>= 0.5) | debconf-2.0 Pre-Depends: adduser Suggests: bacula-doc Filename: pool/main/b/bacula/bacula-common_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 577704 MD5sum: 3cced9f103dde6a5023f358b9e7046de SHA1: 10335f32d758c66524962b68205c21c4cbe6e4e5 SHA256: aba9d6bfa93ed1bf1642178997e7b68caad1130887e9d4b80a312932b5def3aa Description: network backup service - common support files Homepage: http://www.bacula.org/ Description-md5: a77a947b0f7c49ed7fa29da0fc3d1883 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-common-dbg Priority: extra Section: debug Installed-Size: 1741 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-common-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 438032 MD5sum: 186b814d9f30d55ede5833acfe3d929f SHA1: 3ef246b56abca9375d0312276fd84752f476f665 SHA256: 5469c7e1a224b772ab679dbbd188c0c148b157a5f7d5e02ec65907601c4f6390 Description: network backup service - common support files (debugging) Homepage: http://www.bacula.org/ Description-md5: b57c149082c2f659ca5a4102d5fc7018 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-common-mysql Priority: optional Section: admin Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common, libc6 (>= 2.14), libmysqlclient18 (>= 5.5.13-1), libstdc++6 (>= 4.1.1) Suggests: bacula-doc Conflicts: bacula-common-pgsql, bacula-common-sqlite3 Filename: pool/main/b/bacula/bacula-common-mysql_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 69376 MD5sum: c0488c5261843ad9bba31f9441d8d020 SHA1: fadeadcf3fa6f0011b673c87fc1773ae9c157a60 SHA256: 1fa8250ef15dd830c64b1eb00b4b495e81eba629ba1f918eadba7ced545c7f62 Description: network backup service - MySQL common files Homepage: http://www.bacula.org/ Description-md5: 18345f5e6d30abeca0dc5928c641250c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-common-mysql-dbg Priority: extra Section: debug Installed-Size: 562 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common-mysql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-common-pgsql-dbg, bacula-common-sqlite3-dbg Filename: pool/main/b/bacula/bacula-common-mysql-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 130658 MD5sum: 9b606e69dc9edf3f8f08990b90c6b599 SHA1: 06a95df38cba5a91aceb2fcad078e5395f569655 SHA256: ba9045f6e6226a5c50cbc3fd2d47e31e1f19fd32c42bafba825e9f96145afad9 Description: network backup service - MySQL common files (debugging) Homepage: http://www.bacula.org/ Description-md5: 0c0b18d0bc483e7d507fba51e43e7f0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-common-pgsql Priority: optional Section: admin Installed-Size: 295 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common, libc6 (>= 2.14), libpq5, libstdc++6 (>= 4.1.1) Suggests: bacula-doc Conflicts: bacula-common-mysql, bacula-common-sqlite3 Filename: pool/main/b/bacula/bacula-common-pgsql_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 72184 MD5sum: 0aac6d4bbf253ebeeb3d1ad7d413d3fa SHA1: 3eee85da12e643959de42e63dd43093dc4db1605 SHA256: 8b40489396f232cbbf63330a89c021f48861a815d8b5d8e70898bcddcf8636f5 Description: network backup service - PostgreSQL common files Homepage: http://www.bacula.org/ Description-md5: 68a19e17141f8502139794588d5498af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-common-pgsql-dbg Priority: extra Section: debug Installed-Size: 571 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common-pgsql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-common-mysql-dbg, bacula-common-sqlite3-dbg Filename: pool/main/b/bacula/bacula-common-pgsql-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 132436 MD5sum: 916a1f4b6df6af13d7acdb5e36fe92f1 SHA1: e59b32029c1883cf67ab8c1c02e7573a76ca52a4 SHA256: 4ffd81af5c6566caf7410f79a9b62064014e55b1db6e6ae6e83a03e4855ca07c Description: network backup service - PostgreSQL common files (debugging) Homepage: http://www.bacula.org/ Description-md5: 2803f6ecf155e03257b90d142dba1357 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-common-sqlite3 Priority: optional Section: admin Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common, libc6 (>= 2.14), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.1.1) Suggests: bacula-doc Conflicts: bacula-common-mysql, bacula-common-pgsql Filename: pool/main/b/bacula/bacula-common-sqlite3_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 69328 MD5sum: 054f342348d32dcdc6400024a8658b44 SHA1: ce88988ebfeb722aecbdf6b1412f52997f96a002 SHA256: 38433608a7821e64209d7bb8ab9e420903961dfba492b278a077e7cb923f37d3 Description: network backup service - SQLite v3 common files Homepage: http://www.bacula.org/ Description-md5: e90e2d51ca574a1be7259beee84f9963 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-common-sqlite3-dbg Priority: extra Section: debug Installed-Size: 558 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common-sqlite3 (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-common-mysql-dbg, bacula-common-pgsql-dbg Filename: pool/main/b/bacula/bacula-common-sqlite3-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 128524 MD5sum: ac49448bc87b8e23778bd0306ea903ac SHA1: 97e2476e7dbd5aef57a989a91fb2df3462d74664 SHA256: 8f540da9806b2c20ee783d0ba24f780380ff246c070f6f7af706bac9090dde8c Description: network backup service - SQLite v3 common files (debugging) Homepage: http://www.bacula.org/ Description-md5: ff80382efd1414d4185afbc43de043ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-console Priority: optional Section: admin Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), libc6 (>= 2.14), libreadline6 (>= 6.0) Filename: pool/main/b/bacula/bacula-console_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 30030 MD5sum: 3c3592060942f0352257a83ca5d18c9c SHA1: 470b071786a7ba3a3726d495af548ab6aef0c9b1 SHA256: c47f3eb3647297d5165aba2eeba76c74c3842034c1098b7dd64acf3661e6d197 Description: network backup service - text console Homepage: http://www.bacula.org/ Description-md5: 9c44424f651ece05595790d16593b74e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-console-dbg Priority: extra Section: debug Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-console (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-console-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 41728 MD5sum: ef867c058e93842df874e82073d484a5 SHA1: d541b1f5b9ecdb4faf743c7660b383a27a55544b SHA256: 88b48b560335377312c523a1b7c3e55892b053dff16ca2cbef9cb7273262fd5a Description: network backup service - text console (debugging) Homepage: http://www.bacula.org/ Description-md5: 0b80669d9604fe440ecbd7be99dc5769 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-console-qt Priority: optional Section: utils Installed-Size: 1566 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1) Filename: pool/main/b/bacula/bacula-console-qt_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 526722 MD5sum: a0b18c54b1c785ef05f70889befe8358 SHA1: e6622a08210f77dd41045d2b2f60cc444098bc87 SHA256: 1a799527467c85a658b4c07767c149b05ffdbcf370c9fdb62fd7062e34e399e4 Description: network backup service - Bacula Administration Tool Homepage: http://www.bacula.org/ Description-md5: a69c901abfe5cf76f5452e12b1daf08c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-console-qt-dbg Priority: extra Section: debug Installed-Size: 12243 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-console-qt (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-console-qt-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 2010584 MD5sum: ded6d0e824b367200463d92daabfaf26 SHA1: 9360ebb626727c68dd8a3818260b91b03d6a38a5 SHA256: 43d67f864732d79a1a8a7e8211abf802c4b30e4b250279e58a3890901e13a881 Description: network backup service - Bacula Administration Tool (debugging) Homepage: http://www.bacula.org/ Description-md5: 1100fa8432d3aa4a627e471b6d701e28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-director-common Priority: optional Section: admin Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), gawk, bsd-mailx | mailx, lsb-base, libc6 (>= 2.3.4) Filename: pool/main/b/bacula/bacula-director-common_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 23256 MD5sum: e9f442a6346b2f01a229c06a3c7e7712 SHA1: 7491e77388ed51656ce0ecd9bbb84bf37a2a35c1 SHA256: 27ba999f69decbd0e852836ed2f82adb599836694f1b1eac118616c67c900483 Description: network backup service - Director common files Homepage: http://www.bacula.org/ Description-md5: 694c22816210678ee08fdd75235da51c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-director-common-dbg Priority: extra Section: debug Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-director-common (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-director-common-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 7222 MD5sum: edc34bb22d924d3597fee03a695823cb SHA1: 97f8dc7e5086ceda3fac2cb783e9360d5bb6a6f6 SHA256: b6b4433f58039ac7ee5312511bed25c7d7230cf35d9bc1688ef4e145dbb22766 Description: network backup service - Director common files (debugging) Homepage: http://www.bacula.org/ Description-md5: 6e11c7bc87f8027c34226893fbcf35de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-director-mysql Priority: optional Section: admin Installed-Size: 811 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director Provides: bacula-director Depends: bacula-director-common (= 5.2.6+dfsg-9.1ubuntu3), bacula-common-mysql (>= 5.2.6+dfsg-9.1ubuntu3), dbconfig-common, mysql-client, ucf, bacula-common, libc6 (>= 2.14), libpython2.7 (>= 2.7), libstdc++6 (>= 4.1.1), debconf (>= 0.5) | debconf-2.0 Recommends: mysql-server Suggests: gawk Conflicts: bacula-director Filename: pool/main/b/bacula/bacula-director-mysql_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 227146 MD5sum: 4840172cf722e1ded9154c77a3076a30 SHA1: 8e79ec954a7ddee58c3bbca2deafcd123287f788 SHA256: d4f34cf509110f354ed6269a283be09962b7c0ee79001460c109ea4bf60a756a Description: network backup service - MySQL storage for Director Homepage: http://www.bacula.org/ Description-md5: 8ecb3ea825dc66e6049255bf579a3027 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-director-mysql-dbg Priority: extra Section: debug Installed-Size: 2434 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director-dbg Provides: bacula-director-dbg Depends: bacula-director-mysql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-director-dbg Filename: pool/main/b/bacula/bacula-director-mysql-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 518670 MD5sum: 3e2e72ced99ffb7f14c615b1b8b12858 SHA1: 05ed760a2fd140bf794746940284e58f1984ee30 SHA256: 81044b86f667a4e02acb0fb2cabeee7a8aa64553ca1f2dd08127164d25dde813 Description: network backup service - MySQL storage for Director (debugging) Homepage: http://www.bacula.org/ Description-md5: f0c37d6499f67a036b5c54f79b23d151 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-director-pgsql Priority: optional Section: admin Installed-Size: 819 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director Provides: bacula-director Depends: bacula-director-common (= 5.2.6+dfsg-9.1ubuntu3), bacula-common-pgsql (>= 5.2.6+dfsg-9.1ubuntu3), dbconfig-common, postgresql-client (>= 7.4), ucf, bacula-common, libc6 (>= 2.14), libpython2.7 (>= 2.7), libstdc++6 (>= 4.1.1), debconf (>= 0.5) | debconf-2.0 Recommends: postgresql (>= 7.4) Suggests: gawk, postgresql-contrib, postgresql-doc Conflicts: bacula-director Filename: pool/main/b/bacula/bacula-director-pgsql_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 228090 MD5sum: 7d77c4f11c787659257542d885fe909b SHA1: be45ecaddae8b6f9559bb5a204e0c68651dfb572 SHA256: 0017ad20d1114ea507abe6f716479152be41c96b5ccfe3ae90ae44f063a7c14c Description: network backup service - PostgreSQL storage for Director Homepage: http://www.bacula.org/ Description-md5: db7ac39ef41b2e5d6739d980eccc213a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-director-pgsql-dbg Priority: extra Section: debug Installed-Size: 2434 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director-dbg Provides: bacula-director-dbg Depends: bacula-director-pgsql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-director-dbg Filename: pool/main/b/bacula/bacula-director-pgsql-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 518672 MD5sum: d12f9c23b74ea0c7d5a2cd9cc1ba8524 SHA1: 075671d33b2ab65b38c312c42cc00498004c1774 SHA256: 3fae8ca706fc077baaf8fa4def19d13f122900224e221803402b23f5c3c1d21a Description: network backup service - PostgreSQL storage for Director (debugging) Homepage: http://www.bacula.org/ Description-md5: 70e8699e78b44febd70214aa0abcec17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-director-sqlite3 Priority: optional Section: admin Installed-Size: 816 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director Provides: bacula-director Depends: bacula-director-common (= 5.2.6+dfsg-9.1ubuntu3), bacula-common-sqlite3 (>= 5.2.6+dfsg-9.1ubuntu3), sqlite3, file, dbconfig-common, ucf, bacula-common, libc6 (>= 2.14), libpython2.7 (>= 2.7), libstdc++6 (>= 4.1.1), debconf (>= 0.5) | debconf-2.0 Suggests: gawk Conflicts: bacula-director Filename: pool/main/b/bacula/bacula-director-sqlite3_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 226490 MD5sum: 40686b4adc7ff0c4c611fb893eb2268d SHA1: bcb417ce051c2396e039cf2273d4cec6fef2394a SHA256: 427603a5283b86a6f838beb73b35bbc5afbc21f7fe10dfbdc9d1a85188ed7ce3 Description: network backup service - SQLite 3 storage for Director Homepage: http://www.bacula.org/ Description-md5: 0913f988bdfa3d7d5446a408a63ccee4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-director-sqlite3-dbg Priority: extra Section: debug Installed-Size: 2434 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director-dbg Provides: bacula-director-dbg Depends: bacula-director-sqlite3 (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-director-dbg Filename: pool/main/b/bacula/bacula-director-sqlite3-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 518816 MD5sum: 7c10868ce72bfe5210c9bc0b6ff607d5 SHA1: 1e1782f5f816027c6256c06a6ca221d9dcb3a403 SHA256: e3b447b433f27da85c64dcaf885705bc8ace8a9f3566c1c7b8c0db19f0eb2587 Description: network backup service - SQLite 3 storage for Director (debugging) Homepage: http://www.bacula.org/ Description-md5: c4953b4e7ca2c8227daea18be55382a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-fd Priority: optional Section: admin Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), lsb-base, ucf, libacl1 (>= 2.2.51-8), libc6 (>= 2.14), liblzo2-2, libpython2.7 (>= 2.7), zlib1g (>= 1:1.1.4) Suggests: bacula-traymonitor Filename: pool/main/b/bacula/bacula-fd_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 86178 MD5sum: 13e5ac5305453bed3278c09ec8b9eba7 SHA1: f56388110c29af8952e67387d6afab5e18b5e665 SHA256: 626b7afbf2ce27da8b9d5274239a81ced838f8324560bc3460f224acaa16d161 Description: network backup service - file daemon Homepage: http://www.bacula.org/ Description-md5: 154a2979b1f3aa0443cce61b74858b98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-fd-dbg Priority: extra Section: debug Installed-Size: 749 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-fd (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-fd-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 185914 MD5sum: c2fc4f7f643f981bccc7919cc2ca0745 SHA1: 1ebffccf84a988194d7065ee3ca176699ba5c782 SHA256: 5fe666931d3b5ed4750266f40c75d7e6da2cc67c91bbe8b1bc91202abf20de32 Description: network backup service - file daemon (debugging) Homepage: http://www.bacula.org/ Description-md5: c3ac38a4c97bd32504010a2b6565d137 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-sd Priority: optional Section: admin Installed-Size: 1064 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), mtx, python, lsb-base, ucf, libc6 (>= 2.14), liblzo2-2, libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Recommends: bacula-sd-mysql (>= 5.2.6+dfsg-9.1ubuntu3) | bacula-sd-tools Suggests: dds2tar, scsitools, sg3-utils, mt-st Filename: pool/main/b/bacula/bacula-sd_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 221044 MD5sum: fa9a72a72cbfc831c3e0dfe1e12ad5c4 SHA1: abe06983d5dcc604d0be5f9accdb07ee8ab0511a SHA256: fffda6959631ddac33ee0a059f52ffeeffa54bd3e813e9f5d446366639331550 Description: network backup service - storage daemon Homepage: http://www.bacula.org/ Description-md5: 0ad04d9a17c49eb0cb2f5769768cdab4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-sd-dbg Priority: extra Section: debug Installed-Size: 3777 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-sd (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-sd-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 536136 MD5sum: ad582ae9096998841578099ad8199293 SHA1: 8bf0479df701afd118400d1c64e552302e7f5e48 SHA256: e9e35e94e2aa18b2d939b404e2d5a665ce73052cf6dffed7a08332d324c956dc Description: network backup service - storage daemon (debugging) Homepage: http://www.bacula.org/ Description-md5: 886d52470fa179d58139efa5be26c1e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-sd-mysql Priority: optional Section: admin Installed-Size: 973 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools Provides: bacula-sd-tools Depends: bacula-sd (= 5.2.6+dfsg-9.1ubuntu3), bacula-common-mysql (>= 5.2.6+dfsg-9.1ubuntu3), bacula-common, libc6 (>= 2.14), libstdc++6 (>= 4.1.1) Conflicts: bacula-sd-tools Filename: pool/main/b/bacula/bacula-sd-mysql_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 200462 MD5sum: 98f3e553cbab433dbf1632191472e79a SHA1: 72056c282b9a02e7f86fe747ef30f7b0af9b927b SHA256: e2aea8d683844da202cfa8ddb4a22969e7b9e818c1cc0236df0cf51baf30cb5d Description: network backup service - MySQL SD tools Homepage: http://www.bacula.org/ Description-md5: 251b177333b22f114f807be8321bd987 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-sd-mysql-dbg Priority: extra Section: debug Installed-Size: 3530 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools-dbg Provides: bacula-sd-tools-dbg Depends: bacula-sd-mysql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-sd-tools-dbg Filename: pool/main/b/bacula/bacula-sd-mysql-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 499400 MD5sum: 71522810364f49118cdbe547f093a714 SHA1: fb0cfcbdb47b614daf21377c37234adc1f0d29e1 SHA256: 30fa0009860130571cc4d29739a3a1dc5207b88d56f93e5614db4be967f26541 Description: network backup service - MySQL SD tools (debugging) Homepage: http://www.bacula.org/ Description-md5: 7ddca0a2768062d8245d97b74435809e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-sd-pgsql Priority: optional Section: admin Installed-Size: 973 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools Provides: bacula-sd-tools Depends: bacula-sd (= 5.2.6+dfsg-9.1ubuntu3), bacula-common-pgsql (>= 5.2.6+dfsg-9.1ubuntu3), bacula-common, libc6 (>= 2.14), libstdc++6 (>= 4.1.1) Conflicts: bacula-sd-tools Filename: pool/main/b/bacula/bacula-sd-pgsql_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 200456 MD5sum: ed74b8a3ffeeda917986588bebb07214 SHA1: 8f195433ecd3023bfe201d8b106f15a1dd86a684 SHA256: abfae44d8ee2572567c58ce80d998dbda4a8e9dd74b1bdfd6a760b5604943605 Description: network backup service - PostgreSQL SD tools Homepage: http://www.bacula.org/ Description-md5: a7e27eeb3f6d087c5a1da0bd36ce1206 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-sd-pgsql-dbg Priority: extra Section: debug Installed-Size: 3530 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools-dbg Provides: bacula-sd-tools-dbg Depends: bacula-sd-pgsql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-sd-tools-dbg Filename: pool/main/b/bacula/bacula-sd-pgsql-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 499404 MD5sum: 58b290b6e8068bd322ade9a92807c170 SHA1: 20fe1cafebff1b96df4dc493b2e2f26e2e1540db SHA256: c60f9dfa3024c07a077cf12311bfa5478342ebf91df5fab464aacadde1018054 Description: network backup service - PostgreSQL SD tools (debugging) Homepage: http://www.bacula.org/ Description-md5: 2d6599db285b174b6ed46533339cf114 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-sd-sqlite3 Priority: optional Section: admin Installed-Size: 973 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools Provides: bacula-sd-tools Depends: bacula-sd (= 5.2.6+dfsg-9.1ubuntu3), bacula-common, bacula-common-sqlite3 (>= 5.2.6+dfsg-9.1ubuntu3), libc6 (>= 2.14), libstdc++6 (>= 4.1.1) Conflicts: bacula-sd-tools Filename: pool/main/b/bacula/bacula-sd-sqlite3_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 200460 MD5sum: ab815784f6ac18072b3f8ac0ee429ae9 SHA1: e7c416ce834e8483d060f27bab22f7d60c439554 SHA256: a1834514a47047a05a2639420f9a411c5e578f1163bcb6e578b20d5110f59e7c Description: network backup service - SQLite 3 SD tools Homepage: http://www.bacula.org/ Description-md5: 9f984fdef85da962861ec1189ef90985 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-sd-sqlite3-dbg Priority: extra Section: debug Installed-Size: 3530 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools-dbg Provides: bacula-sd-tools-dbg Depends: bacula-sd-sqlite3 (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-sd-tools-dbg Filename: pool/main/b/bacula/bacula-sd-sqlite3-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 498802 MD5sum: 9fcf4dfad5fd2fb2b3620b30e8ac002b SHA1: cc67028877b9fa45f743f5f70f78bb185b49c074 SHA256: 96dbf3abda6c048cb5594fd22ff675dc081e87055a4869a6c38627722380e9ba Description: network backup service - SQLite 3 SD tools (debugging) Homepage: http://www.bacula.org/ Description-md5: 2d83f4b73f0efee75d6929e75209743d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-server Priority: optional Section: admin Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: all Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-director-mysql (>= 5.2.6+dfsg-9.1ubuntu3) | bacula-director, bacula-sd (>= 5.2.6+dfsg-9.1ubuntu3), bacula-sd-mysql (>= 5.2.6+dfsg-9.1ubuntu3) | bacula-sd-tools Recommends: bacula-fd Filename: pool/main/b/bacula/bacula-server_5.2.6+dfsg-9.1ubuntu3_all.deb Size: 15062 MD5sum: 1e4234bf547df4e2c6ba715773cb409a SHA1: d95443ea24bb7cc6ccc26dbbf28521e44f097eee SHA256: 66da1098d43f0716395f59471a078b8dbaeb15204f487b580af0827a0415b286 Description: network backup service - server metapackage Homepage: http://www.bacula.org/ Description-md5: 2e8fb07015da38dc46006ec06da5cc4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-traymonitor Priority: optional Section: admin Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), libc6 (>= 2.14), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.16.0), libgtk2.0-0 (>= 2.10.0), libpango-1.0-0 (>= 1.14.0) Suggests: kde | gnome-desktop-environment Filename: pool/main/b/bacula/bacula-traymonitor_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 32474 MD5sum: 59532c752d20899d1ac56e87ebdecabd SHA1: 2637c8a48409772cffc25b20e4d7fdf97a3f393f SHA256: cdeb41076c5fc473ec7a2a961b29e1b811f7e3780af854512eb6af700c6b2382 Description: network backup service - tray monitor Homepage: http://www.bacula.org/ Description-md5: b0b637db66c8a655b0b2f0867973e199 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-traymonitor-dbg Priority: extra Section: debug Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: amd64 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-traymonitor (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-traymonitor-dbg_5.2.6+dfsg-9.1ubuntu3_amd64.deb Size: 55202 MD5sum: 53b0225a42296b59ff88f987259f09f6 SHA1: 8d8490cadea8ec15796f1b815f2e071d9cdc08a9 SHA256: 5f33729df1d427c95234bb41d5caaf4b5e0774c1517ee5198329968cc8502a96 Description: network backup service - tray monitor (debugging) Homepage: http://www.bacula.org/ Description-md5: ff88c2dec76e85dc57a5242d369a6534 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bamf-dbg Priority: extra Section: debug Installed-Size: 696 Maintainer: Didier Roche Architecture: amd64 Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Depends: libbamf3-2 (= 0.5.1+14.04.20140409-0ubuntu1) Filename: pool/main/b/bamf/bamf-dbg_0.5.1+14.04.20140409-0ubuntu1_amd64.deb Size: 477528 MD5sum: 7310708bce4a4e0470be04c7f76dcdd9 SHA1: 5a17d7848ecb101de2540f33c4d60dd92022ede2 SHA256: 2bb0fc67aeeea03dd4ab2be21d7ce87a0aa075df336155df993b4e3a449405ce Description: Window matching library - debugging symbols Homepage: https://launchpad.net/bamf Description-md5: d08673dde009c4e5d772fa886e34cfd2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bamfdaemon Priority: optional Section: libs Installed-Size: 360 Maintainer: Didier Roche Architecture: amd64 Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libgtop2-7 (>= 2.22.3), libwnck-3-0 (>= 3.4.7), libx11-6, libbamf3-2 (= 0.5.1+14.04.20140409-0ubuntu1) Filename: pool/main/b/bamf/bamfdaemon_0.5.1+14.04.20140409-0ubuntu1_amd64.deb Size: 78174 MD5sum: 2679dabd520633200b24c0c80e6b18ce SHA1: 7129ba1517ffe24768716b4b1bb6ce99bff3f3ab SHA256: a72bde5afd8bc8d09473c42bde0d8defa7f7a36bfd3351753f11726a912af62d Description: Window matching library - daemon Multi-Arch: foreign Homepage: https://launchpad.net/bamf Description-md5: 5e170802764cd2226fe0395c325fb65f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: baobab Priority: optional Section: gnome Installed-Size: 908 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.8.2-1ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.8.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), dconf-gsettings-backend | gsettings-backend Recommends: yelp Filename: pool/main/b/baobab/baobab_3.8.2-1ubuntu1_amd64.deb Size: 157628 MD5sum: 619fdea96670e1066644b011f45320b4 SHA1: afce007817884c6382870b3d25005d5d4f5b03c6 SHA256: 7b84dc2e1a6b47e2655761ba42069c6cf53a6e247c9a21cbaa83f359f75c0fa7 Description: GNOME disk usage analyzer Homepage: http://live.gnome.org/GnomeUtils Description-md5: 5f6072b89ebb1dc83433fa7658814dc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: base-files Essential: yes Priority: required Section: admin Installed-Size: 433 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 7.2ubuntu5 Replaces: base, dpkg (<= 1.15.0), miscutils Provides: base Pre-Depends: awk Breaks: initscripts (<< 2.88dsf-13.3), sendfile (<< 2.1b.20080616-5.2~) Filename: pool/main/b/base-files/base-files_7.2ubuntu5_amd64.deb Size: 67212 MD5sum: 10aa13b02a1d48c4515edfeb9f2baf8f SHA1: 6dbaaf3840ca94ce3b2e0fc92bb50ddd78479585 SHA256: 19b6c3bc0738b5c8cc4a33f7bc43053b3353d9a809ced536efad4ef80a31998c Description: Debian base system miscellaneous files Multi-Arch: foreign Description-md5: 6d16337f57b84c4747f56438355b2395 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: base-passwd Essential: yes Priority: required Section: admin Installed-Size: 252 Maintainer: Colin Watson Architecture: amd64 Version: 3.5.33 Replaces: base Depends: libc6 (>= 2.8), libdebconfclient0 (>= 0.145) Recommends: debconf (>= 0.5) | debconf-2.0 Filename: pool/main/b/base-passwd/base-passwd_3.5.33_amd64.deb Size: 47862 MD5sum: 92a98178a9e96f425bbde0320f9c5b77 SHA1: b15968393d03ee487c2511f584e84e57552dbe4e SHA256: c53bc7b5bae473df952b686d1558a0e6c7661cdfd9bfea2f0bd6ac722beff90f Description: Debian base system master password and group files Multi-Arch: foreign Description-md5: aad0cc52ee72b2469af5552851e49f03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: bash Essential: yes Priority: required Section: shells Installed-Size: 1480 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Version: 4.3-6ubuntu1 Replaces: bash-completion (<< 20060301-0), bash-doc (<= 2.05-1) Depends: base-files (>= 2.1.12), debianutils (>= 2.15) Pre-Depends: dash (>= 0.5.5.1-2.2), libc6 (>= 2.15), libtinfo5 Recommends: bash-completion (>= 20060301-0) Suggests: bash-doc Conflicts: bash-completion (<< 20060301-0) Filename: pool/main/b/bash/bash_4.3-6ubuntu1_amd64.deb Size: 574464 MD5sum: 4829101773fd90ae0574fa83e474603a SHA1: e83093dab2e82db5e8c72944585c17dc976dc0f5 SHA256: 9ebbf2a9c4dbffa7b20f22c9c17de0ea3b8d79619d2bbb740c1bc483514642e7 Description: GNU Bourne Again SHell Multi-Arch: foreign Homepage: http://tiswww.case.edu/php/chet/bash/bashtop.html Description-md5: 3522aa7b4374048d6450e348a5bb45d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: bash-completion Priority: standard Section: shells Installed-Size: 929 Maintainer: Ubuntu Developers Original-Maintainer: Bash Completion Maintainers Architecture: all Version: 1:2.1-4 Replaces: bash, cryptsetup (<< 2:1.1.2-2), xen-tools (<= 4.1-1) Depends: bash (>= 3.2) Pre-Depends: dpkg (>= 1.15.7.2~) Breaks: xen-tools (<= 4.1-1) Filename: pool/main/b/bash-completion/bash-completion_2.1-4_all.deb Size: 153944 MD5sum: e3971798754f0f73eb7a5a80b73c591e SHA1: 2dece2aaa8073cea586c2a506e301b9d9f56e16b SHA256: 9305a9cf2049e3e0ad5f78a33bf2d500a95a1a8826b133840049c0f49f972879 Description: programmable completion for the bash shell Multi-Arch: foreign Homepage: http://bash-completion.alioth.debian.org Description-md5: 00158d11d140744fbdcfdd08e81901ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: bash-doc Priority: optional Section: doc Installed-Size: 2585 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: bash Version: 4.3-6ubuntu1 Replaces: bash (<< 4.3-2) Depends: dpkg (>= 1.15.4) | install-info Filename: pool/main/b/bash/bash-doc_4.3-6ubuntu1_all.deb Size: 1118976 MD5sum: 67c6ec14705777869166eaa00c6ddb58 SHA1: b0cf59c1166639009840f8e41d17ed0be37d1488 SHA256: e6227a81764b456e454a5f77b2c16781d4475314b6e42f0a83a30eb9d0e141bc Description: Documentation and examples for the The GNU Bourne Again SHell Homepage: http://tiswww.case.edu/php/chet/bash/bashtop.html Description-md5: 87bcd31a74f29447890330d831edb1f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bbdb Priority: optional Section: mail Installed-Size: 1646 Maintainer: Ubuntu Developers Original-Maintainer: Joerg Jaspert Architecture: all Version: 2.36-3ubuntu1 Depends: make, emacs24 | emacsen, perl Suggests: vm, w3m-el, gnuserv, gnus | t-gnus Filename: pool/main/b/bbdb/bbdb_2.36-3ubuntu1_all.deb Size: 722994 MD5sum: e7c8b96ccd805fc962ed25abb3859b73 SHA1: b62e3aece7d7c5b1f025e1ae7865668de27b1c59 SHA256: ae14ef976f950acf1d43e3c5f4245493e9c41a5d6a44216f658f885e4cd7ffa7 Description: The Insidious Big Brother Database (email rolodex) for Emacs Homepage: http://bbdb.sourceforge.net/ Description-md5: cf6e32334b121b23ad0d84643800ce68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bbswitch-dkms Priority: extra Section: kernel Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: bbswitch Version: 0.7-2ubuntu1 Depends: dkms (>= 2.1.0.0) Suggests: bumblebee Filename: pool/main/b/bbswitch/bbswitch-dkms_0.7-2ubuntu1_amd64.deb Size: 10930 MD5sum: d339d194d242043f18ba9df6bc2b2589 SHA1: 838c4eb60a33775cc3c6949109fedc8281aea649 SHA256: 14532bddbaebf27739e04a6defec9bbf4b49654d8679f06c8551732bc97ad7ac Description: Interface for toggling the power on nVidia Optimus video cards Homepage: https://github.com/Bumblebee-Project/bbswitch Description-md5: ee3c559fb3c0692ad46e619a0a3007dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bc Priority: optional Section: math Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Ryan Kavanagh Architecture: amd64 Version: 1.06.95-8ubuntu1 Depends: libc6 (>= 2.14), libreadline6 (>= 6.0) Filename: pool/main/b/bc/bc_1.06.95-8ubuntu1_amd64.deb Size: 82176 MD5sum: b2c5f458583106390b391a0cbddc7d74 SHA1: c1a0edd2e17848c7c635519724e0582b1fff2275 SHA256: 0932e129041d5e13a21af90403ebde0cd6fe0f892bbc6bcbc7c16a6f355f1142 Description: GNU bc arbitrary precision calculator language Multi-Arch: foreign Homepage: http://ftp.gnu.org/gnu/bc/ Description-md5: b8da7e3f115e4c703a180cdb05aec611 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: bcc Priority: optional Section: devel Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Juan Cespedes Architecture: amd64 Source: linux86 Version: 0.16.17-3.1ubuntu3 Replaces: linux86 Provides: c-compiler Depends: libc6 (>= 2.14), bin86 (= 0.16.17-3.1ubuntu3) Recommends: elks-libc (= 0.16.17-3.1ubuntu3) Conflicts: linux86 Filename: pool/main/l/linux86/bcc_0.16.17-3.1ubuntu3_amd64.deb Size: 119826 MD5sum: db82530a327e9178356db68cf10165fd SHA1: bd7d6a5839d40245c0d8294453877459bfa7293e SHA256: 30dc4d1827c460792cd254a145859e39985936cb3eaa37c16d6b6e2c942fc112 Description: 16-bit x86 C compiler Description-md5: 268215b21e3311cc4ec3976927b43fee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bcrelay Priority: optional Section: net Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Christoph Biedl Architecture: amd64 Source: pptpd Version: 1.3.4+27+gddb30f8-1ubuntu1 Replaces: pptpd (<< 1.2.3-1) Depends: libc6 (>= 2.15) Filename: pool/main/p/pptpd/bcrelay_1.3.4+27+gddb30f8-1ubuntu1_amd64.deb Size: 13926 MD5sum: 103c3ee21ae54d89278a74bf67e7f3b2 SHA1: 0ba49872b891240dfdd1f0e669a07a33b9bf80a2 SHA256: 4798f5986b00f4ad419426fe6b9927e23c9f6a99cc500bdbb0aa4200182b95a9 Description: Broadcast relay daemon Homepage: http://poptop.sourceforge.net/dox/ Description-md5: 8169550aed31e33592b7b141c95a3b62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bdf2psf Priority: optional Section: utils Installed-Size: 217 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: console-setup Version: 1.70ubuntu8 Depends: perl Filename: pool/main/c/console-setup/bdf2psf_1.70ubuntu8_all.deb Size: 25442 MD5sum: 455ecbf3eac8abb4b1f2c9ad452e2555 SHA1: 6f0c5e06abdca1cc8ccec63765cf40e98343d67a SHA256: 3e81487246ae7cb498f23ef7fe966f4d2d6ce6bcfdae50142a33a3be6e19461f Description: font converter to generate console fonts from BDF source fonts Description-md5: 5eb98031ca1e36678eeeefee0d31085b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bdfresize Priority: optional Section: x11 Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Tatsuya Kinoshita Architecture: amd64 Version: 1.5-8 Depends: libc6 (>= 2.14) Filename: pool/main/b/bdfresize/bdfresize_1.5-8_amd64.deb Size: 12822 MD5sum: 2bdbe3de2379213f5d7b517908d6c99e SHA1: 34f1641bfb39291f13a1e4d030f241b0643727f5 SHA256: 42a01b2c07b472084215e47905fe5f8758ac7c6ee5f28d3fc320fb971234ea02 Description: tool for resizing BDF format font Homepage: http://openlab.jp/efont/ Description-md5: fdbe88767321eba83a9069b596b75cc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: beanstalkd Priority: extra Section: net Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Gregory Potamianos Architecture: amd64 Version: 1.9-2ubuntu1 Depends: libc6 (>= 2.14), init-system-helpers (>= 1.13~), adduser, netbase Suggests: doc-base Filename: pool/main/b/beanstalkd/beanstalkd_1.9-2ubuntu1_amd64.deb Size: 43172 MD5sum: 762869dd62ba746fdd9ac804e1298984 SHA1: 97cea3c6c13c4761f5143e5d7deec67c821b1bd2 SHA256: ae9673cbd9b91a974e7eaf96540bc1ee73c669f6d520471076ef2d64e0866971 Description: simple, in-memory, workqueue service Homepage: http://kr.github.com/beanstalkd/ Description-md5: c5918527026b57dc76d8a8c9e30ecf13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bf-utf-source Priority: extra Section: devel Installed-Size: 10137 Maintainer: Ubuntu Developers Original-Maintainer: Changwoo Ryu Architecture: all Source: bf-utf Version: 0.07 Filename: pool/main/b/bf-utf/bf-utf-source_0.07_all.deb Size: 1022906 MD5sum: eb462ec586eb2ed8873330a8401fc3ca SHA1: e1d202c223c861270b7e87f15759f55ddd6af414 SHA256: 2902f18c830a815635475ded29897d73fcc6822b6a11ed15579c7a33300d3228 Description: source for fonts needed to build Debian installers Description-md5: b71d2b1a2abb75a1dc34320f9bde9d23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bin86 Priority: optional Section: devel Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Juan Cespedes Architecture: amd64 Source: linux86 Version: 0.16.17-3.1ubuntu3 Depends: libc6 (>= 2.14) Conflicts: linux86 Filename: pool/main/l/linux86/bin86_0.16.17-3.1ubuntu3_amd64.deb Size: 88586 MD5sum: d7f3493466f6bceb10f8c42e89c6745b SHA1: d3d742e6a658e63fc33bd121c29e14da3240de11 SHA256: 0ef73253c51cf4f73aa37569dc17bff12e36c107629242f7ce56125d9193f84e Description: 16-bit x86 assembler and loader Description-md5: ab9b02e844161c194a3566d31fb8a4ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bind9 Priority: optional Section: net Installed-Size: 950 Maintainer: LaMont Jones Architecture: amd64 Version: 1:9.9.5.dfsg-3 Replaces: apparmor-profiles (<< 2.1+1075-0ubuntu4), bind, bind9utils (<< 1:9.9.3.dfsg.P2-3), dnsutils (<< 1:9.1.0-3) Depends: libbind9-90 (= 1:9.9.5.dfsg-3), libc6 (>= 2.14), libcap2 (>= 2.10), libdns100 (= 1:9.9.5.dfsg-3), libisc95 (= 1:9.9.5.dfsg-3), libisccc90 (= 1:9.9.5.dfsg-3), libisccfg90 (= 1:9.9.5.dfsg-3), liblwres90 (= 1:9.9.5.dfsg-3), libxml2 (>= 2.7.4), debconf (>= 0.5) | debconf-2.0, init-system-helpers (>= 1.13~), netbase, adduser, lsb-base (>= 3.2-14), bind9utils (= 1:9.9.5.dfsg-3), net-tools Suggests: dnsutils, bind9-doc, resolvconf, ufw Conflicts: apparmor-profiles (<< 2.1+1075-0ubuntu4), bind Filename: pool/main/b/bind9/bind9_9.9.5.dfsg-3_amd64.deb Size: 287124 MD5sum: 603683c76eeaa854935c75814c80de46 SHA1: 99218c4ad516e199296551e6c74050c5f077b3a8 SHA256: 9c8ea0c7f6bdc46f01704724bd9d4c04b012cc69a5528a716d69c2027696b388 Description: Internet Domain Name Server Description-md5: afd61d02df1ec6f856b928dfbf6fd201 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: dns-server Package: bind9-doc Priority: optional Section: doc Installed-Size: 1362 Maintainer: LaMont Jones Architecture: all Source: bind9 Version: 1:9.9.5.dfsg-3 Filename: pool/main/b/bind9/bind9-doc_9.9.5.dfsg-3_all.deb Size: 181844 MD5sum: ba4d250e42578ed36c909c4735338cb2 SHA1: 89876fa5216672123cb97148940f677c30aab111 SHA256: 775d6cbfec93ec9f0bc9d3c5aa12f5d5dce85a51e4b6d24353bceebf4f3ce169 Description: Documentation for BIND Description-md5: 329b8ef5cf9ad3d51ce47e6d8d13d75e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: dns-server Package: bind9-host Priority: standard Section: net Installed-Size: 174 Maintainer: LaMont Jones Architecture: amd64 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: dnsutils (<< 1:9.0.0), host (<< 1:9.7.0) Provides: host Depends: libbind9-90 (= 1:9.9.5.dfsg-3), libc6 (>= 2.4), libdns100 (= 1:9.9.5.dfsg-3), libisc95 (= 1:9.9.5.dfsg-3), libisccfg90 (= 1:9.9.5.dfsg-3), liblwres90 (= 1:9.9.5.dfsg-3) Conflicts: dnsutils (<< 1:9.0.0), host (<< 1:9.7.0) Filename: pool/main/b/bind9/bind9-host_9.9.5.dfsg-3_amd64.deb Size: 46352 MD5sum: 9e09568936bb52c24d468f7a66c049f5 SHA1: 293bc4aff80187aa9f2dc0a9e95787381fb2724f SHA256: 3f7c357d93af8930fbca794fccc6060de82dc82f92f023b6ee59e68e08fc8d56 Description: Version of 'host' bundled with BIND 9.X Description-md5: acdae162c721f5d2986f557bdefa1e70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: bind9utils Priority: optional Section: net Installed-Size: 644 Maintainer: LaMont Jones Architecture: amd64 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: bind9 (<= 1:9.9.5.dfsg-1) Depends: libbind9-90, libc6 (>= 2.4), libdns100, libisc95, libisccc90, libisccfg90, python, python-argparse Filename: pool/main/b/bind9/bind9utils_9.9.5.dfsg-3_amd64.deb Size: 144592 MD5sum: ad36e74b689e5ad130aa1ebbbeddbd0e SHA1: d015074887a68b64494cac4f81b045e826bda838 SHA256: d8aafac0f6896f39b05e719b3ba086748db0f8c9cf562bedb125e11b4c3277c3 Description: Utilities for BIND Description-md5: 5f6f5621a6edd04ef33a0fe5d2d5bff8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: dns-server Package: binfmt-support Priority: optional Section: admin Installed-Size: 245 Maintainer: Colin Watson Architecture: amd64 Version: 2.1.4-1 Depends: libc6 (>= 2.14), libpipeline1 (>= 1.0.0), init-system-helpers (>= 1.13~), lsb-base (>= 4.1+Debian3) Filename: pool/main/b/binfmt-support/binfmt-support_2.1.4-1_amd64.deb Size: 49048 MD5sum: fd7c64c41dc4633a7b4e02e8e9246bcd SHA1: f73f6211b84bee8af7b53c8f3c833de5a1975613 SHA256: 66bb42fcfc0d0c44b1f655938466b12d15543757a4bbc416bd3058fa05c30e68 Description: Support for extra binary formats Multi-Arch: foreign Homepage: http://binfmt-support.nongnu.org/ Description-md5: 29e82a31bb4248987c1cee43d589e134 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: binutils Priority: optional Section: devel Installed-Size: 11436 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: amd64 Version: 2.24-5ubuntu3 Replaces: binutils-gold (<< 2.20.51.20100415), binutils-mingw-w64-i686 (<< 2.23.52.20130612-1+3), binutils-mingw-w64-x86-64 (<< 2.23.52.20130612-1+3) Provides: binutils-gold, elf-binutils Depends: libc6 (>= 2.14), zlib1g (>= 1:1.2.0) Suggests: binutils-doc (>= 2.24-5ubuntu3) Conflicts: binutils-gold (<< 2.20.51.20100415), binutils-mingw-w64-i686 (<< 2.23.52.20130612-1+3), binutils-mingw-w64-x86-64 (<< 2.23.52.20130612-1+3), elf-binutils, gas, modutils (<< 2.4.19-1) Breaks: binutils-mingw-w64-i686 (<< 2.23.52.20130612-1+3), binutils-mingw-w64-x86-64 (<< 2.23.52.20130612-1+3) Filename: pool/main/b/binutils/binutils_2.24-5ubuntu3_amd64.deb Size: 2071336 MD5sum: 129330d099cb8c8daaea4306ab324c7a SHA1: 8d8737f31c91a6688d9deb56c9dc39541f895362 SHA256: 4f02ec0f9ac6c7dba09180b938d2b34385c8bddb1c54714b1e979e752de5d309 Description: GNU assembler, linker and binary utilities Description-md5: fde49b4cfeaad346a6e094f973da28d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: binutils-aarch64-linux-gnu Priority: extra Section: devel Installed-Size: 18892 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: binutils-arm64-cross (0.11) Version: 2.24-1ubuntu1cross0.11 Depends: binutils, libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Suggests: binutils-doc (= 2.24-1ubuntu1cross0.11) Filename: pool/main/b/binutils-arm64-cross/binutils-aarch64-linux-gnu_2.24-1ubuntu1cross0.11_amd64.deb Size: 2794282 MD5sum: d880fd814ac1a9aa4782d5754af39a62 SHA1: 02356fb17eb4f8e2a3c0fcd9b02a751759e504db SHA256: 93aff1e4ffe3c20519a50cf2514743533cfe68c715f844b674da8ba5cab54045 Description: GNU binary utilities, for aarch64-linux-gnu target Description-md5: 4f3566ae5e721ce41d5e747ddb0644a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 21727 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: binutils-armhf-cross (1.98) Version: 2.24-2ubuntu3cross1.98 Depends: binutils, libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Suggests: binutils-doc (= 2.24-2ubuntu3cross1.98) Filename: pool/main/b/binutils-armhf-cross/binutils-arm-linux-gnueabihf_2.24-2ubuntu3cross1.98_amd64.deb Size: 3975754 MD5sum: 82f8e221d556c669dfba6afe1b466b3b SHA1: ac243bd92cc82edbbf5f04d6432e959a07405d94 SHA256: c65820df2da0ccc92bc9dcf59c3c7104d6f5b6553e0005d959d8f24c99934333 Description: GNU binary utilities, for arm-linux-gnueabihf target Description-md5: 1c336f1a0f1cb48756b45db43be0ea57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-dev Priority: extra Section: devel Installed-Size: 16226 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: binutils Version: 2.24-5ubuntu3 Replaces: libbfd-dev, libc5-dev Provides: libbfd-dev Depends: binutils (= 2.24-5ubuntu3) Conflicts: libbfd-dev Filename: pool/main/b/binutils/binutils-dev_2.24-5ubuntu3_amd64.deb Size: 1959462 MD5sum: b01393572aa71e98130221efb5e744eb SHA1: d97b1add9f32376787963ca24f037610f39490dc SHA256: 49e2237eb431c942a82f68ddb8bc95385b91bf5c16d69811ddb1454bac31c4c1 Description: GNU binary utilities (BFD development files) Description-md5: ddc22c04156534b000b4f021b88a6023 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-doc Priority: optional Section: doc Installed-Size: 510 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: all Source: binutils Version: 2.24-5ubuntu3 Depends: dpkg (>= 1.15.4) | install-info Suggests: binutils (= 2.24-5ubuntu3) Conflicts: binutils (<< 2.9.1.0.25-3) Filename: pool/main/b/binutils/binutils-doc_2.24-5ubuntu3_all.deb Size: 452092 MD5sum: 3ed018a9af18416740b8025e78ba56b3 SHA1: 174c79bc97b8f55fbae958101e86d59d57d59466 SHA256: 06d3355bfbc497f61d90c9a66904c5798c29c343bff6498859bca74fe9437cb6 Description: Documentation for the GNU assembler, linker and binary utilities Description-md5: 61fd9f95707b9eb9ad8fe9b13a862636 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-multiarch Priority: extra Section: devel Installed-Size: 7334 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: binutils Version: 2.24-5ubuntu3 Depends: libc6 (>= 2.14), zlib1g (>= 1:1.2.0), binutils (= 2.24-5ubuntu3) Filename: pool/main/b/binutils/binutils-multiarch_2.24-5ubuntu3_amd64.deb Size: 1400180 MD5sum: d3c023126f4786f02c3c85ac6f5610fb SHA1: e1725b588dfe262f07190a9298214d5e5bef1183 SHA256: cd96b89506b3c74534fa1da15bc92713977a9499035cb2f2d8fdf7d287f924c2 Description: Binary utilities that support multi-arch targets Description-md5: f9de0df7e70bff89b6d3519f04688470 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-multiarch-dev Priority: extra Section: devel Installed-Size: 25 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: binutils Version: 2.24-5ubuntu3 Replaces: binutils-multiarch (<< 2.24-5) Depends: binutils-dev (= 2.24-5ubuntu3), binutils-multiarch (= 2.24-5ubuntu3) Filename: pool/main/b/binutils/binutils-multiarch-dev_2.24-5ubuntu3_amd64.deb Size: 1168 MD5sum: ea3fbd589e817c3baa85c0079faa9eb2 SHA1: 7499e9cce3da5a1b54beeb8df9fec15f176511a7 SHA256: 8f41b3f07207f002a2da1b664be82bac45ff7c1b59c48be81388d7b4eb615d35 Description: GNU binary utilities that support multi-arch targets (BFD development files) Description-md5: adf07629018b12b2492a658992c9a6a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 24496 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: binutils-powerpc-cross (0.10) Version: 2.24-2ubuntu1cross0.10 Depends: binutils, libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Suggests: binutils-doc (= 2.24-2ubuntu1cross0.10) Filename: pool/main/b/binutils-powerpc-cross/binutils-powerpc-linux-gnu_2.24-2ubuntu1cross0.10_amd64.deb Size: 3815332 MD5sum: 748301cd0ead33380d170d855bd6ab53 SHA1: d7c0f461103607ddce176cf75961387ba3470a03 SHA256: ceb38df53e2573ad06098dc7fab76d1848455fc36c9f0b612d8f2ef5dbc46f3a Description: GNU binary utilities, for powerpc-linux-gnu target Description-md5: b0372e82b679525fd97c0e17e8db82bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-powerpc64le-linux-gnu Priority: extra Section: devel Installed-Size: 24295 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: binutils-ppc64el-cross (0.4) Version: 2.24-2ubuntu3cross0.4 Depends: binutils, libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Suggests: binutils-doc (= 2.24-2ubuntu3cross0.4) Filename: pool/main/b/binutils-ppc64el-cross/binutils-powerpc64le-linux-gnu_2.24-2ubuntu3cross0.4_amd64.deb Size: 3857476 MD5sum: 5d429fe0effe6d61fe65f42b875ff765 SHA1: d889a0754b63a724287b87018be492b2392d9651 SHA256: 58b2f5b6c149e62bf55ffa926f497aec91f6e6942a2c9b09be5139d8d3185a70 Description: GNU binary utilities, for powerpc64le-linux-gnu target Description-md5: 99e8cb7d295747b431c63aaa6f3c121c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-source Priority: optional Section: devel Installed-Size: 19069 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: all Source: binutils Version: 2.24-5ubuntu3 Depends: texinfo, zlib1g-dev, make, python Filename: pool/main/b/binutils/binutils-source_2.24-5ubuntu3_all.deb Size: 16738212 MD5sum: 4e1ccfc47c9723388ffa86604af90392 SHA1: 0fc253eaea52d92c3c0844877689f995e1fe67b9 SHA256: d2000730e2ebbbf36c10ae78475d08e6e6ca1151e2911d4eedbe888c15746fab Description: GNU assembler, linker and binary utilities (source) Description-md5: acf2f0e289b8b831828996002f7eb6f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: biosdevname Priority: optional Section: misc Installed-Size: 106 Maintainer: Colin Watson Architecture: amd64 Version: 0.4.1-0ubuntu6 Depends: libc6 (>= 2.14), libpci3 (>= 1:3.2.1-1), udev Filename: pool/main/b/biosdevname/biosdevname_0.4.1-0ubuntu6_amd64.deb Size: 19668 MD5sum: a24b9d341fcb0836a87569d98a61e4d7 SHA1: 7ae6a97bb66ce71d1c2b357008f66516f685a0c7 SHA256: f5953198b199b09b1160da8cb6b40dc745faf78fc5b7f83b4b24b78e70f32223 Description: apply BIOS-given names to network devices Description-md5: f2f6eadace6aa3dd6e4a2c232d2665ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bison Priority: optional Section: devel Installed-Size: 1404 Maintainer: Ubuntu Developers Original-Maintainer: Chuan-kai Lin Architecture: amd64 Version: 2:3.0.2.dfsg-2 Depends: m4, libc6 (>= 2.15), libbison-dev (= 2:3.0.2.dfsg-2) Suggests: bison-doc Filename: pool/main/b/bison/bison_3.0.2.dfsg-2_amd64.deb Size: 257002 MD5sum: 49743f35d393f8c8395aebe3b0e27d33 SHA1: 910aacda1ab9c796210b45bb5b8fa39e7cf31e1f SHA256: 60d38906195d0d8400a75747b8b986ca0212bd448d03a99479fd82dd6f816c8c Description: YACC-compatible parser generator Multi-Arch: foreign Homepage: http://www.gnu.org/software/bison/ Description-md5: 3b8154d16aa228f689bcd81364e7088c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bison-doc Priority: optional Section: doc Installed-Size: 2623 Maintainer: Ubuntu Developers Original-Maintainer: Chuan-kai Lin Architecture: all Version: 1:3.0.2-1 Replaces: bison (<< 2.2.dfsg-1) Suggests: doc-base Filename: pool/main/b/bison-doc/bison-doc_3.0.2-1_all.deb Size: 1221400 MD5sum: 285b5b64e9d79b33cafd3d21302ae798 SHA1: 98507b7f7704a4f71e773e703fdd5eddc610ec39 SHA256: 46dbc38ee189eee4673732246ae3bc705d82df610f25514d1fb7d818660b8641 Description: Documentation for the Bison parser generator Homepage: http://www.gnu.org/software/bison/ Description-md5: 13fe90eab8084a7e8639929bf1218e17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bittornado Priority: optional Section: net Installed-Size: 634 Maintainer: Ubuntu Developers Original-Maintainer: Cameron Dale Architecture: all Version: 0.3.18-10ubuntu4 Replaces: bittorrent Provides: python-bittornado Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: mime-support, python-crypto Suggests: bittornado-gui, python-psyco Conflicts: bittorrent (<= 3.4.2-2) Filename: pool/main/b/bittornado/bittornado_0.3.18-10ubuntu4_all.deb Size: 129966 MD5sum: 7314ea86bef45f4c65f5e3002293929a SHA1: fb96fd3def55d3477bf6a3b217bca04fbe7d91ca SHA256: 386e2b10c873426aa695e851c09d888f98e3a189fc61c885b3b18ca9fb1034b2 Description: bittorrent client (and tracker) with console and curses interfaces Homepage: http://bittornado.com Description-md5: 369c0fcd3b015c34e46b68ad36098715 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: blt Priority: optional Section: libs Installed-Size: 2513 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Version: 2.4z-7ubuntu2 Replaces: blt-common, blt-demo (<< 2.4i-1), blt-dev (<< 2.4z-3), blt4.2, blt8.0, blt8.0-unoff Provides: blt-common Depends: libc6 (>= 2.14), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0), libx11-6 Suggests: blt-demo Conflicts: blt-common, blt4.2, blt8.0, blt8.0-unoff Filename: pool/main/b/blt/blt_2.4z-7ubuntu2_amd64.deb Size: 552506 MD5sum: 5150d3556fe591ecff8f619e273978ff SHA1: c8f240ce849a003f7066b8355c0bc8e5dbe2e6f0 SHA256: dd0975fb9c61cb3db9dec2e58ff2c7fcbc437c183e2175850a2d1767a8a2251a Description: graphics extension library for Tcl/Tk - run-time package Homepage: http://blt.sourceforge.net/ Description-md5: 56096f2217f06b9d3cf932028cad2bd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: blt-dev Priority: extra Section: devel Installed-Size: 2570 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: blt Version: 2.4z-7ubuntu2 Replaces: blt (<< 2.4i-1), blt4.2, blt4.2-dev, blt8.0-unoff Depends: blt (= 2.4z-7ubuntu2), tk8.6-dev, tcl8.6-dev Suggests: blt-demo Conflicts: blt8.0-dev, blt8.0-unoff Filename: pool/main/b/blt/blt-dev_2.4z-7ubuntu2_amd64.deb Size: 731620 MD5sum: 87cc9cf4a493c4119d3d4eac1e3aba65 SHA1: 9170c21da8063cb750d15130d40cef6fa31ae135 SHA256: 6ac2427679a8e5fc9faec599fe35d72b00db63a185650177d46ee43f94d9eeb0 Description: graphics extension library for Tcl/Tk - development files Homepage: http://blt.sourceforge.net/ Description-md5: 44af66f352120a6c751bc742de4a0748 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bluez Priority: optional Section: admin Installed-Size: 2539 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: amd64 Version: 4.101-0ubuntu13 Replaces: bluez-audio (<= 3.36-3), bluez-input, bluez-network, bluez-serial, bluez-utils (<= 3.36-3), udev (<< 170-1) Depends: libc6 (>= 2.15), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.28.0), libreadline6 (>= 6.0), libudev1 (>= 183), libusb-0.1-4 (>= 2:0.1.12), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), module-init-tools, udev (>= 170-1), lsb-base, dbus, python3-dbus Suggests: bluez-hcidump Conflicts: bluez-audio (<= 3.36-3), bluez-utils (<= 3.36-3) Breaks: udev (<< 170-1) Filename: pool/main/b/bluez/bluez_4.101-0ubuntu13_amd64.deb Size: 590682 MD5sum: a1a98d839ee21f8e695bd43567703ff0 SHA1: 4b7b75b0fb7538d4bfa52ae94c4d5864aea2887e SHA256: 6efc075d94693a811b6a782c0080b1c5563fa4bd958900374205747c74c9e96f Description: Bluetooth tools and daemons Multi-Arch: foreign Homepage: http://www.bluez.org Description-md5: ef25d6a9f4a57e78f32faa7b58ef4e59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: bluez-alsa Priority: optional Section: admin Installed-Size: 397 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: amd64 Source: bluez Version: 4.101-0ubuntu13 Replaces: bluez-audio Depends: libasound2 (>= 1.0.16), libc6 (>= 2.15), bluez Filename: pool/main/b/bluez/bluez-alsa_4.101-0ubuntu13_amd64.deb Size: 84234 MD5sum: f6f8e7a1e33c22a88e04622a0b6880f4 SHA1: dc00a855fecddfb16be7e84b735876c7d411eb17 SHA256: 03dda3e1485736823219e7f156863d92070b796fe07f4c1128dec69d9ff42968 Description: Bluetooth ALSA support Multi-Arch: same Homepage: http://www.bluez.org Description-md5: 930bafabe25000357ec6aaca35e4d911 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: bluez-cups Priority: optional Section: admin Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: amd64 Source: bluez Version: 4.101-0ubuntu13 Depends: libc6 (>= 2.15), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.28), cups Filename: pool/main/b/bluez/bluez-cups_4.101-0ubuntu13_amd64.deb Size: 58428 MD5sum: 390d1b94918c0e70bce289c798023165 SHA1: c19e08d5c65b301f6d9d4d9563e9c09c08dc654f SHA256: d7654391a3b7a727884dfadf8e14e964189a60caf37bcd250d0879e8ef4f0a9d Description: Bluetooth printer driver for CUPS Homepage: http://www.bluez.org Description-md5: 4e5f0a66844f2292ecbf023e856b77d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: bluez-dbg Priority: extra Section: debug Installed-Size: 6773 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: amd64 Source: bluez Version: 4.101-0ubuntu13 Depends: bluez (= 4.101-0ubuntu13), libbluetooth3-dbg (= 4.101-0ubuntu13) Filename: pool/main/b/bluez/bluez-dbg_4.101-0ubuntu13_amd64.deb Size: 1320448 MD5sum: 58991a64622c0534b676422ae5a46c08 SHA1: 559d056788183f882b73a4e0b0eb95cdc8b3980f SHA256: fda1e902bed73de41a01753bd6a75fd818b8cae20062574e061b1b9e7ed163af Description: Bluetooth tools and daemons (with debugging symbols) Homepage: http://www.bluez.org Description-md5: e8e0a3eaa44ef0a0697e2a30ce6147e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bogl-bterm Priority: optional Section: utils Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Samuel Thibault Architecture: amd64 Source: bogl Version: 0.1.18-9ubuntu1 Depends: libc6 (>= 2.15), ncurses-term (>= 5.9-7) Filename: pool/main/b/bogl/bogl-bterm_0.1.18-9ubuntu1_amd64.deb Size: 29152 MD5sum: 2a6f3e78626a56f7404c8875df3b1106 SHA1: 6da3a9318680947e9674e7f9ea950403324a5c3c SHA256: f956a0e2c9fdd722ec4044a91b3a3ef27d6d8fe13407405db659b010681fefbc Description: Ben's Own Graphics Library - graphical terminal Description-md5: fe97701510fdc5e5e434e93cc1a3672c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bonnie++ Priority: optional Section: utils Installed-Size: 197 Maintainer: Ubuntu Developers Original-Maintainer: Russell Coker Architecture: amd64 Version: 1.97.1 Replaces: bonnie, zcav Provides: bonnie, zcav Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: bonnie, bonnie++, zcav Filename: pool/main/b/bonnie++/bonnie++_1.97.1_amd64.deb Size: 67924 MD5sum: 76ed6ff736a9ce45f572f4fff7bc0dfe SHA1: d6cdb2851bce55b5c4eddd26b6ca0a4d279368bb SHA256: 3781e28a345c942b3cc5b69a0cab8c41d24c26a14d27c80795b3cf83305d77b3 Description: Hard drive benchmark suite Description-md5: a0ce87e811bb566159dfb37f3f86a518 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: branding-ubuntu Priority: optional Section: graphics Installed-Size: 1219 Maintainer: Scott Ritchie Architecture: all Version: 0.8 Provides: branding Filename: pool/main/b/branding-ubuntu/branding-ubuntu_0.8_all.deb Size: 370914 MD5sum: bc91fe135775bea46bc48d6fda7ed5b6 SHA1: f56f42726982465d342364a83ff989327ac47889 SHA256: 77922f058ea88784939c364a3beb39182044c84ccdadf5efd7f21e33de3c7be2 Description: Replacement artwork with Ubuntu branding Homepage: https://wiki.ubuntu.com/branding Description-md5: dcdbf2a78f33302112c02c85585f54cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: brasero Priority: optional Section: gnome Installed-Size: 1066 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.10.0-0ubuntu1 Depends: libbrasero-media3-1 (= 3.10.0-0ubuntu1), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.0.0), libice6 (>= 1:1.0.0), libnautilus-extension1a (>= 1:2.91), libpango-1.0-0 (>= 1.14.0), libsm6, libtotem-plparser18 (>= 3.10.0), libxml2 (>= 2.7.4), gstreamer1.0-plugins-base (>= 0.11.92), gnome-icon-theme, gvfs, brasero-common (= 3.10.0-0ubuntu1) Recommends: brasero-cdrkit, yelp Suggests: vcdimager, libdvdcss2 Conflicts: nautilus-cd-burner Filename: pool/main/b/brasero/brasero_3.10.0-0ubuntu1_amd64.deb Size: 149746 MD5sum: 34d4af3765de9373725e0a7246f8db96 SHA1: dae12c1b95d94065b5f7bd4a5fc71af6a9ad634f SHA256: 1107bb7de9773d954113324fc0a17639e24f78d75200d5adfc2a8ee6c71301e6 Description: CD/DVD burning application for GNOME Homepage: http://www.gnome.org/projects/brasero/ Description-md5: f8b587a21ec167a346c66c4d208477cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: brasero-cdrkit Priority: optional Section: gnome Installed-Size: 698 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: brasero Version: 3.10.0-0ubuntu1 Replaces: libbrasero-media3-1 (<< 3.8.0-1) Depends: libbrasero-media3-1 (= 3.10.0-0ubuntu1), libc6 (>= 2.7), libglib2.0-0 (>= 2.29.14), libgstreamer1.0-0 (>= 1.0.0), libxml2 (>= 2.7.4), genisoimage, growisofs, wodim Suggests: dvdauthor, readom Breaks: libbrasero-media3-1 (<< 3.8.0-1) Filename: pool/main/b/brasero/brasero-cdrkit_3.10.0-0ubuntu1_amd64.deb Size: 33178 MD5sum: f61861d3d12d6463cc8360da028d37ed SHA1: bf3d7646640d281a77726d0b7bbcca10c65ec214 SHA256: 45b74ff4abdbe632f9d50718f6ed376c3713ea171969169e8c54c2791c524b95 Description: cdrkit extensions for the Brasero burning application Homepage: http://www.gnome.org/projects/brasero/ Description-md5: f665c5ddfb353765cb64ff49e7f6bc98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: brasero-common Priority: optional Section: gnome Installed-Size: 2128 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: brasero Version: 3.10.0-0ubuntu1 Replaces: brasero (<< 2.26) Depends: dconf-gsettings-backend | gsettings-backend Breaks: brasero (<< 2.26) Filename: pool/main/b/brasero/brasero-common_3.10.0-0ubuntu1_all.deb Size: 284256 MD5sum: ef3e3c02803a08b7145475245dc8c786 SHA1: db25e089e0cd29cfc4aebb431a3566c84d03d7db SHA256: b7ff767d435085004f7df39d51d12fe37d7cf0ce81c918b3b754e2d0019eb9a9 Description: Common files for the Brasero CD burning application and library Homepage: http://www.gnome.org/projects/brasero/ Description-md5: 4606bf022bac975b6e53bb64c48943d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: bridge-utils Priority: optional Section: net Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Garcia Mantinan Architecture: amd64 Version: 1.5-6ubuntu2 Depends: libc6 (>= 2.7) Suggests: ifupdown, net-tools Conflicts: ifupdown (<< 0.6.0) Filename: pool/main/b/bridge-utils/bridge-utils_1.5-6ubuntu2_amd64.deb Size: 29192 MD5sum: 23f37038baab928f276fb1aa2fd0a6c2 SHA1: 870d9248c69084c5dc164ef5ab231f048b6c2ef6 SHA256: 4501312880ebfe59dc272f3e6e2be2b6d5041c904f8f8d6e0089f22bb6f3503a Description: Utilities for configuring the Linux Ethernet bridge Multi-Arch: foreign Description-md5: bc06a038a6315377cf0871ca4de79aac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: brltty Priority: extra Section: admin Installed-Size: 7084 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Version: 5.0-2ubuntu2 Replaces: libbrlapi1 (<< 3.7.2-7.1) Depends: libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.17), libgpm2 (>= 1.20.4), libicu52 (>= 52~m1-1~), libncursesw5 (>= 5.6+20070908), libtinfo5, init-system-helpers (>= 1.13~), lsb-base (>= 3.2-14), initramfs-tools (>= 0.40ubuntu30) Recommends: python3 Suggests: brltty-speechd, brltty-x11, console-braille Breaks: udev (<< 136-1) Filename: pool/main/b/brltty/brltty_5.0-2ubuntu2_amd64.deb Size: 1087634 MD5sum: 510117de436a100ea4dc1b692892cf14 SHA1: e5ea8a30f6d4e9d9e9184c015ab49dcd7510eb38 SHA256: 5e8cdd2fba211c75e5bba47e7b6ab97d4cde50e4d234a716b5ebb1938da3d24f Description: Access software for a blind person using a braille display Homepage: http://mielke.cc/brltty/ Description-md5: a37f99c1cd1793507aa1485689256c9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: brltty-dbg Priority: extra Section: debug Installed-Size: 5547 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: brltty Version: 5.0-2ubuntu2 Depends: brltty (= 5.0-2ubuntu2) Filename: pool/main/b/brltty/brltty-dbg_5.0-2ubuntu2_amd64.deb Size: 1093728 MD5sum: 123e45339311c9827eec435c6c1046f3 SHA1: ff7849f1752e2d3887e2199e20f307047fecd5cd SHA256: 87a4edfcdc6c8ce070fda84f2481593ad86c2a901ead70949cfd525b8e336db3 Description: debugging symbols for brltty Homepage: http://mielke.cc/brltty/ Description-md5: ac1ac77ad2a46d315e305a5db2a19a1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bsd-mailx Priority: optional Section: mail Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: amd64 Version: 8.1.2-0.20131005cvs-1 Replaces: mailx (<< 1:20071201) Provides: mail-reader, mailx Depends: base-files (>= 2.2.0), default-mta | mail-transport-agent, libbsd0 (>= 0.2.0), libc6 (>= 2.14), liblockfile1 (>= 1.0) Breaks: mailutils (<< 1:1.1+dfsg1-4), mailx (<< 1:20071201) Filename: pool/main/b/bsd-mailx/bsd-mailx_8.1.2-0.20131005cvs-1_amd64.deb Size: 66900 MD5sum: 3d23a2c7bea4a36bf5257c11a0d81525 SHA1: e1ef592a44a8c905c1ad9bfa0c2f71965d584381 SHA256: e52af28d59d22d0f53aa979b96c4792c6625087e7034c1cc64bcb8f00711999d Description: simple mail user agent Description-md5: 6a40d16f64cad8f0f3874f11989dc9c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: bsdmainutils Priority: standard Section: utils Installed-Size: 555 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bsdmainutils Team Architecture: amd64 Version: 9.0.5ubuntu1 Depends: libc6 (>= 2.14), libtinfo5, bsdutils (>= 3.0-0), debianutils (>= 1.8) Suggests: cpp, wamerican | wordlist, whois, vacation Breaks: bsdutils (<< 1:2.13-11) Filename: pool/main/b/bsdmainutils/bsdmainutils_9.0.5ubuntu1_amd64.deb Size: 202514 MD5sum: 56d222f6675e7858dfef6097440d373e SHA1: 6c2605564ecc4aea7910493b1e6ce2eb6afd2b6e SHA256: 81b99b33c6dccdd54d9f90ad049f1e4916630ee44ae56c25608a2c20b13b99e3 Description: collection of more utilities from FreeBSD Multi-Arch: foreign Description-md5: 156725110b9d8b7a144a6b1a40ed5446 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: bsdutils Essential: yes Priority: required Section: utils Installed-Size: 194 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: amd64 Source: util-linux (2.20.1-5.1ubuntu20) Version: 1:2.20.1-5.1ubuntu20 Depends: libc6 (>= 2.7) Recommends: bsdmainutils Filename: pool/main/u/util-linux/bsdutils_2.20.1-5.1ubuntu20_amd64.deb Size: 33966 MD5sum: 8a28eb449efe6bd9f924fc74a2ceca2e SHA1: def2f96e047e114c28472f907cb2e1f64d43132b SHA256: 1b608da2b1230ee625f6766724326f8ac1e149a3fb5833d73071188d6fba8b4a Description: Basic utilities from 4.4BSD-Lite Multi-Arch: foreign Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 1bf4bce740174530b7953a9832a5268e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: bsh Priority: optional Section: devel Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.0b4-15 Depends: default-jre-headless | java1-runtime-headless | java2-runtime-headless, libjline-java, libbsh-java (= 2.0b4-15) Suggests: bsh-doc, default-jre | java1-runtime | java2-runtime, libservlet3.0-java Filename: pool/main/b/bsh/bsh_2.0b4-15_all.deb Size: 4402 MD5sum: 3d8221b28424b0b7e8dc43e57181d76f SHA1: 3d5a70f952bde09062413a118fde9115a1145159 SHA256: eb102634bce7d5b27ef9f446ac976eea6ddfa80d16728ef7a39abc2df1aafa0c Description: Java scripting environment (BeanShell) Version 2 Enhances: libbsf-java Homepage: http://www.beanshell.org Description-md5: 7344effde5b85638644be4f2f28d5c66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bsh-doc Priority: optional Section: doc Installed-Size: 3690 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bsh Version: 2.0b4-15 Recommends: default-jdk-doc Suggests: bsh Filename: pool/main/b/bsh/bsh-doc_2.0b4-15_all.deb Size: 339388 MD5sum: a788bfd6a5408a9d5e75b594a54ae0f1 SHA1: 995cd833230ebcbae201d9298e90504a449ade09 SHA256: c35f6a4bdf39dacf4bcf7a95dc44595b1e88e41179ce61da38244c0019352e69 Description: Documentation for bsh Homepage: http://www.beanshell.org Description-md5: 185310e44d4c9d8cbde45a7662aad306 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: btrfs-tools Priority: optional Section: admin Installed-Size: 2449 Maintainer: Ubuntu Developers Original-Maintainer: Dimitri John Ledkov Architecture: amd64 Version: 3.12-1 Depends: e2fslibs (>= 1.42), libblkid1 (>= 2.17.2), libc6 (>= 2.7), libcomerr2 (>= 1.01), liblzo2-2, libuuid1 (>= 2.16), zlib1g (>= 1:1.2.0) Filename: pool/main/b/btrfs-tools/btrfs-tools_3.12-1_amd64.deb Size: 335208 MD5sum: e69af23a733d56e13072fd5b8689892d SHA1: ed8388c4e9b0357dee872073668b4c7d1a119343 SHA256: 1479fe5f84779ae8832579d878fe5336e47906a76bb2d9c7cbeb6b50ab75cc81 Description: Checksumming Copy on Write Filesystem utilities Homepage: http://btrfs.wiki.kernel.org/ Description-md5: b373529b44d89311deab77020f34ab70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, xubuntu-live, mythbuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: btrfs-tools-dbg Priority: extra Section: debug Installed-Size: 4508 Maintainer: Ubuntu Developers Original-Maintainer: Dimitri John Ledkov Architecture: amd64 Source: btrfs-tools Version: 3.12-1 Depends: btrfs-tools (= 3.12-1) Filename: pool/main/b/btrfs-tools/btrfs-tools-dbg_3.12-1_amd64.deb Size: 3557976 MD5sum: 5c2028a74e8f21ad64c062f4e02bdb13 SHA1: ed2e2cabc4808a180850ea3a87f098afeb9537e2 SHA256: deaa265f27e667739d3db14c3121760747fd092dced7e5568b6b92177f108a2d Description: Checksumming Copy on Write Filesystem utilities (debug) Homepage: http://btrfs.wiki.kernel.org/ Description-md5: 4af127eb36ab33d39c76f1b8545ca586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: build-essential Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Version: 11.6ubuntu6 Depends: libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5) Filename: pool/main/b/build-essential/build-essential_11.6ubuntu6_amd64.deb Size: 4838 MD5sum: 6fa3d082885a7440d512236685cd24fd SHA1: 488c10084cd20cafec7f8b917e752bad45a4f983 SHA256: 50c00d2da704e131855abda2f823f3ac2589ab1579f511ccd005be421f0a3954 Description: Informational list of build-essential packages Description-md5: 90ef0ef86cafda0bd16f746eb621d9da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Package: busybox-initramfs Priority: required Section: shells Installed-Size: 357 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: amd64 Source: busybox Version: 1:1.21.0-1ubuntu1 Replaces: busybox-cvs-initramfs Depends: libc6 (>= 2.14) Conflicts: busybox-cvs-initramfs Filename: pool/main/b/busybox/busybox-initramfs_1.21.0-1ubuntu1_amd64.deb Size: 184636 MD5sum: 92793616ec141cd067595952f8552c3e SHA1: fab712fa73993d436c0c000e0f0d76440099d42f SHA256: 52ad5ed565d6345b6317a999fa2061a2fa5c3780ba35c09cdc1a81692289bb0f Description: Standalone shell setup for initramfs Homepage: http://www.busybox.net Description-md5: 07bc91bcf5e1da8f300c48c3d990ca10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: busybox-static Priority: standard Section: shells Installed-Size: 1984 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: amd64 Source: busybox Version: 1:1.21.0-1ubuntu1 Replaces: busybox Conflicts: busybox Filename: pool/main/b/busybox/busybox-static_1.21.0-1ubuntu1_amd64.deb Size: 999048 MD5sum: f2dcf6921bfeccc3925f997084eb7b6a SHA1: 3d4dd43af2b854a9b78d14770393985e5f9afda0 SHA256: cfffd41bf1a562803e396877ce8aaeefdc9837883ce7029d38c694d65c538627 Description: Standalone rescue shell with tons of builtin utilities Homepage: http://www.busybox.net Description-md5: 1ccce12e08e4aa13a2e6bdd5ffb85b65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-live Package: byacc-j Priority: extra Section: devel Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Claude Architecture: amd64 Version: 1.15-1build2 Depends: libc6 (>= 2.4) Filename: pool/main/b/byacc-j/byacc-j_1.15-1build2_amd64.deb Size: 61168 MD5sum: 881f3487999824eda7ebe93e5e40ea44 SHA1: cdf88a302af7b7267e025d1d5cfc0571e639a83e SHA256: e0203c81a8b4a04d6e2e918a672af148259bd0147719058a5c226e58c56415eb Description: Berkeley YACC parser generator extended to generate Java code Homepage: http://byaccj.sourceforge.net/ Description-md5: 42880c5a059007b8a9f0571727aa92aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: byobu Priority: optional Section: misc Installed-Size: 629 Maintainer: Dustin Kirkland Architecture: all Version: 5.77-0ubuntu1 Replaces: byobu-extras (<< 2.17), screen-profiles (<< 2.0), screen-profiles-extras (<< 2.0) Provides: byobu-extras, screen-profiles, screen-profiles-extras Depends: debconf (>= 0.5) | debconf-2.0, gettext-base, python3 | python, python3-newt | python-newt, tmux (>= 1.5) | screen, gawk Recommends: screen, tmux (>= 1.5), run-one Suggests: apport, lsb-release, po-debconf, ttf-ubuntu-font-family (>= 0.80-0ubuntu1~medium), update-notifier-common, vim, w3m Breaks: byobu-extras (<< 2.17), screen-profiles (<< 2.0), screen-profiles-extras (<< 2.0) Filename: pool/main/b/byobu/byobu_5.77-0ubuntu1_all.deb Size: 102636 MD5sum: 9548ba592315dc89e7ea9473b645fd1f SHA1: a26e69b55edd8763fd36d5bba30b989fbbcd29a5 SHA256: d841f50903a596f4b9685fe20f46e8cf5fac3c75e473bb2c81d3e43442ba216e Description: powerful, text based window manager and shell multiplexer Enhances: screen Homepage: http://byobu.co Description-md5: 024f61f4fb7dd0808208a74ed4c03472 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-usb Package: bzip2 Priority: important Section: utils Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 1.0.6-5 Replaces: libbz2 (<< 0.9.5d-3) Depends: libbz2-1.0 (= 1.0.6-5), libc6 (>= 2.4) Suggests: bzip2-doc Filename: pool/main/b/bzip2/bzip2_1.0.6-5_amd64.deb Size: 38814 MD5sum: 23c0e0a686dc47bc2a7add0205dac7d4 SHA1: f3a14030b0ef44a747dcd7af15c70e20f660deaf SHA256: 5f6be468eae6ac8d97570f27c45d17b8a12de46684b46852d5acf6d1c6634632 Description: high-quality block-sorting file compressor - utilities Multi-Arch: foreign Homepage: http://www.bzip.org/ Description-md5: 26e9d96b611ed3cf741ba7007fd4f233 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: bzip2-doc Priority: optional Section: doc Installed-Size: 427 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: all Source: bzip2 Version: 1.0.6-5 Replaces: bzip2 (<< 1.0.4-0ubuntu2) Depends: dpkg (>= 1.15.4) | install-info Filename: pool/main/b/bzip2/bzip2-doc_1.0.6-5_all.deb Size: 297686 MD5sum: db43a6135d2c44b28953d54982322bf2 SHA1: 7e72bce1fda96eaa9e7b2e440c97777e62acfe2b SHA256: f41627754c65889e4559dd85f1d0d13b4d4c4df9888e6b3b9ec9b641d3f0dc47 Description: high-quality block-sorting file compressor - documentation Homepage: http://www.bzip.org/ Description-md5: 0a6a95149555ae52f2f3730b1a531c1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bzr Priority: optional Section: devel Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: all Version: 2.6.0+bzr6593-1ubuntu1 Depends: python-bzrlib (<= 2.6.0+bzr6593-1ubuntu1.1~), python-bzrlib (>= 2.6.0+bzr6593-1ubuntu1), python:any Recommends: python-gpgme Suggests: bzr-doc, bzrtools, python-bzrlib.tests Breaks: bzr-pqm (<< 1.4.0~bzr80), bzr-xmloutput (<< 0.8.8+bzr160), python-bzrlib (<< 2.4.0~beta3~) Filename: pool/main/b/bzr/bzr_2.6.0+bzr6593-1ubuntu1_all.deb Size: 37350 MD5sum: 8eca9b9925b1171995950957d625da21 SHA1: 22b7610ef97e23c1ab0eb0d984aedaa0cf6c597b SHA256: 3c3daca071c9742b7d4c67e061ed2fbf2896a0a22b9d040a267637fcdc502cc6 Description: easy to use distributed version control system Homepage: http://bazaar-vcs.org Description-md5: f32d9f21ee4179ce03ee1a7b140a6942 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bzr-doc Priority: optional Section: doc Installed-Size: 12879 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: all Source: bzr Version: 2.6.0+bzr6593-1ubuntu1 Replaces: bzr (<< 2.0.1) Depends: libjs-sphinxdoc (>= 1.0) Suggests: bzr Breaks: bzr (<< 2.0.1) Filename: pool/main/b/bzr/bzr-doc_2.6.0+bzr6593-1ubuntu1_all.deb Size: 3810730 MD5sum: 6696cb0f3d2cee40c5b31a6c772c8c23 SHA1: 0aff35a6f00c863e8e4275cceafbc898d1406713 SHA256: fc9d05e7b25772dc054fcbc3a7135bdb94ee0e95f8ef915125fa32276ab8e0eb Description: easy to use distributed version control system (documentation) Homepage: http://bazaar-vcs.org Description-md5: be78b3437844e0c0ae751828fbde0ee3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bzrtools Priority: optional Section: devel Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: all Version: 2.6.0-1 Depends: bzr (<< 2.7.0), bzr (>= 2.6~), patch, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: rsync Suggests: graphviz, librsvg2-bin Filename: pool/main/b/bzrtools/bzrtools_2.6.0-1_all.deb Size: 47280 MD5sum: 876c6763123bb3972e3155ed3be88d04 SHA1: 5b4aa7d89d892e16789dea3081e63a1378ac902b SHA256: bd6c07ffd10dc237a62d670dbbf30406e0295550587b339f1f80f9736c700883 Description: Collection of tools for bzr Homepage: http://bazaar-vcs.org/BzrTools Description-md5: 6c07f8b9822c3077213cf19f6c40285b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ca-certificates Priority: standard Section: misc Installed-Size: 432 Maintainer: Ubuntu Developers Original-Maintainer: Michael Shuler Architecture: all Version: 20130906ubuntu2 Depends: openssl (>= 1.0.0), debconf (>= 0.5) | debconf-2.0 Breaks: ca-certificates-java (<< 20121112+nmu1) Filename: pool/main/c/ca-certificates/ca-certificates_20130906ubuntu2_all.deb Size: 174738 MD5sum: ffc121a2863735a5e6f476a9291b6676 SHA1: 1f3e543caddf2bcfb81c4400ded151b8ce5fc359 SHA256: eae233fd19efe1c789d675c95e47631ddc59b26ffa219ecc1a418e28c3db92f1 Description: Common CA certificates Enhances: openssl Multi-Arch: foreign Description-md5: 085a1b1af3f2d16012dfc750cd9aedc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: ca-certificates-java Priority: optional Section: misc Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 20130815ubuntu1 Depends: ca-certificates (>= 20121114), openjdk-7-jre-headless (>= 7~u3-2.1.1~pre1-1) | java6-runtime-headless, libnss3 (>= 3.12.9+ckbi-1.82-0ubuntu3~) Filename: pool/main/c/ca-certificates-java/ca-certificates-java_20130815ubuntu1_all.deb Size: 13390 MD5sum: efc4948adfc7855968db71d52b181af0 SHA1: 4c8f66d50640d7b767e5122e34cd0653e0f89886 SHA256: 51ed9489be99ffff5a23201a23db9dd8b844e40fda50788465adc11383efebf0 Description: Common CA certificates (JKS keystore) Multi-Arch: foreign Description-md5: 304cd3554728e5d076f8ecbb3b5057d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: camlp4 Priority: optional Section: devel Installed-Size: 69939 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml Version: 4.01.0-3ubuntu3 Provides: camlp4-4.01.0 Depends: libc6 (>= 2.15), ocaml-nox-4.01.0 Filename: pool/main/o/ocaml/camlp4_4.01.0-3ubuntu3_amd64.deb Size: 8995920 MD5sum: 694743979b77738a6b29044b8668cc92 SHA1: 6b63fa6dd95f858627cbb4a42854612cf73806af SHA256: e906456bb0ff2dcd929177c34a8fa062a8166d3b3daa1206062e9bc53f505457 Description: Pre Processor Pretty Printer for OCaml Homepage: http://caml.inria.fr/ Description-md5: d3db06397da6a350ee47d34809fee848 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: camlp5 Priority: extra Section: devel Installed-Size: 23509 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Version: 6.11+dfsg-3 Replaces: ocaml-nox (<< 3.10.0) Provides: camlp5-ejbq9 Depends: ocaml-compiler-libs, ocaml-nox-4.01.0, libc6 (>= 2.14) Suggests: ocaml-findlib Breaks: ocaml-nox (<< 3.10.0) Filename: pool/main/c/camlp5/camlp5_6.11+dfsg-3_amd64.deb Size: 2202320 MD5sum: 2f4f6622939a7ccd611da6f14d1e41ed SHA1: 1815ecff0862804234759a0fa77ab39f4b6a70db SHA256: 6cbdfb5af6851d892e5bca0934c35c2c70f089a4296eb492e020808b312447ef Description: Pre Processor Pretty Printer for OCaml - classical version Homepage: http://pauillac.inria.fr/~ddr/camlp5/ Description-md5: 1113a8e1433440e62f5174bc5b44ee5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: casper Priority: extra Section: misc Installed-Size: 258 Maintainer: Ubuntu Developers Architecture: amd64 Version: 1.340 Depends: libc6 (>= 2.14), libplymouth2 (>= 0.8.0~-13~ppa1), initramfs-tools (>= 0.92bubuntu55), busybox-initramfs (>= 1:1.1.3-4ubuntu3), dmsetup, user-setup, sudo, eject, uuid-runtime, localechooser-data (>= 2.03ubuntu1), util-linux (>= 2.15-1), file, lzma, udev (>= 174), cifs-utils Conflicts: live-initramfs, usplash (<< 0.4-43) Breaks: genext2fs (<< 1.4.1) Filename: pool/main/c/casper/casper_1.340_amd64.deb Size: 42670 MD5sum: 277eab11079e7690a057bcd8d8e33316 SHA1: 93491ab37f777dda340a87a069a5c98f69333764 SHA256: 3470acbb6274792edd10d91a10c8fdb2eff53483bf84936c6a02d3b2ccd52006 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 Description-md5: 9be0120948307c7e897a16c45a69ba0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-live Package: ccache Priority: optional Section: devel Installed-Size: 255 Maintainer: Ubuntu Developers Original-Maintainer: Y Giridhar Appaji Nag Architecture: amd64 Version: 3.1.9-1 Depends: libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Suggests: distcc Filename: pool/main/c/ccache/ccache_3.1.9-1_amd64.deb Size: 77758 MD5sum: 1d7c05254f368c7e6238fed413006418 SHA1: d5dcb0af68fddf8f15cf412fdcc33bc068fb5555 SHA256: 65b17d8342bdf105d98128dcfae252bdcc08646e759f9521ea73609c24e8bf89 Description: Compiler cache for fast recompilation of C/C++ code Homepage: http://ccache.samba.org Description-md5: 25eb84ff8138d0e37480a4434b1571e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cdbs Priority: optional Section: devel Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: CDBS Hackers Architecture: all Version: 0.4.122ubuntu2 Depends: dh-translations, python-scour Recommends: autotools-dev Suggests: devscripts Filename: pool/main/c/cdbs/cdbs_0.4.122ubuntu2_all.deb Size: 42102 MD5sum: 970eb873b3d7de645dacbb4042816e47 SHA1: 4cc9986391a76d01c7a6582e2dcc8a4dd724c675 SHA256: 633baad09f8e1348c82d1c78b7fb14675700e675be41eeb4a93054b716d56276 Description: common build system for Debian packages Multi-Arch: foreign Description-md5: 600297a26a1bc2bcf29442cdb6deb9f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cdebconf Priority: extra Section: utils Installed-Size: 528 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: amd64 Version: 0.187ubuntu1 Provides: debconf-2.0 Depends: libc6 (>= 2.14), libdebian-installer4 (>= 0.88ubuntu2), libnewt0.52, libslang2 (>= 2.2.4), libtextwrap1, debconf, dpkg (>= 1.15.4) Suggests: cdebconf-gtk Filename: pool/main/c/cdebconf/cdebconf_0.187ubuntu1_amd64.deb Size: 132730 MD5sum: 80f366c21f52861194252053b60a3055 SHA1: 3d4429e43100b478e81bed923a21a560f58a6e67 SHA256: 1fb56839b718b248d338d4212f5c7cdb12efd1adfefa110a8ee65e47bd7747be Description: Debian Configuration Management System (C-implementation) Description-md5: 19ca11018968935708d0ed3262e5aa67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cdparanoia-dbg Priority: extra Section: devel Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: amd64 Source: cdparanoia Version: 3.10.2+debian-11 Depends: libcdparanoia0 (= 3.10.2+debian-11), libcdparanoia-dev (= 3.10.2+debian-11) Filename: pool/main/c/cdparanoia/cdparanoia-dbg_3.10.2+debian-11_amd64.deb Size: 9380 MD5sum: d137d49a09106bd0f5c189e54b73a2ee SHA1: debbebf5b6b723f70bf4b9e34dbded866fdc1865 SHA256: 76e103c1b7e7f6dc8ba7c57646db5eb19e77da494a3847fa0263a5fa3e5337b5 Description: audio extraction tool for sampling CDs (debug) Homepage: http://www.xiph.org/paranoia/ Description-md5: 6dcdd1263c2603bc6d0187c6de49d078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cdrkit-doc Priority: optional Section: doc Installed-Size: 263 Maintainer: Ubuntu Developers Original-Maintainer: Joerg Jaspert Architecture: all Source: cdrkit Version: 9:1.1.11-2ubuntu3 Replaces: cdrtools-doc Suggests: wodim, genisoimage, icedax Conflicts: cdrtools-doc Filename: pool/main/c/cdrkit/cdrkit-doc_1.1.11-2ubuntu3_all.deb Size: 141344 MD5sum: 5755eaf4e89e09a50a9dcb7a6340235a SHA1: 98f50d0f4dc110e80dfc8c57cb70c1fcbb975b84 SHA256: c1d6967b0b88099c5d7f5847913998f7fb896cb96034d467c9cd184d9acf5c00 Description: Documentation for the cdrkit package suite Description-md5: de4ca130903a6946310802d51064b32e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ceilometer-agent-central Priority: optional Section: python Installed-Size: 43 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: ceilometer-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/c/ceilometer/ceilometer-agent-central_2014.1-0ubuntu1_all.deb Size: 2658 MD5sum: 3e6f5062139e561066d1f3399777bbb9 SHA1: d1b04197ba8333be23b6231b9b5940319783b706 SHA256: 20494a471b914b6f46ed34cfd4d8a59ab343960423ff185db465e11275233a89 Description: ceilometer central agent Description-md5: 3038fa1055e9879da6f132abe24ba6a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceilometer-agent-compute Priority: optional Section: python Installed-Size: 43 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: ceilometer-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/c/ceilometer/ceilometer-agent-compute_2014.1-0ubuntu1_all.deb Size: 2654 MD5sum: 208dff107b791671515a9c9f5a36f3a2 SHA1: fb69a93826684985019afcd07e608330c896eac0 SHA256: 80e6e142d7dd72c0a0f1a50b8ce18be099850df07bcd2fd4d1ac7886a6962a35 Description: ceilometer compute agent Description-md5: 6dcabb824dba2d47ed7a641ea543ec62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceilometer-api Priority: optional Section: python Installed-Size: 43 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: ceilometer-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Suggests: mongodb Filename: pool/main/c/ceilometer/ceilometer-api_2014.1-0ubuntu1_all.deb Size: 2630 MD5sum: fd895e50cae802ce5d272e390ed13796 SHA1: bc0b8b8bba6bdc2807ed96ac7db8836fb3472db6 SHA256: 9fa0865ae1b373298b809b0c2516dacce2fbd07a680167914adbf5f681f54902 Description: ceilometer api service Description-md5: 54717dd842a1eba3c0dd18405956bea7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceilometer-collector Priority: optional Section: python Installed-Size: 43 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: ceilometer-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Suggests: mongodb Filename: pool/main/c/ceilometer/ceilometer-collector_2014.1-0ubuntu1_all.deb Size: 2668 MD5sum: c5ba292615da72ef599e909780a4ad4a SHA1: 10e09a53f30ec9555390a4f88818c998ad7ea07d SHA256: 5eb81828182b10936540c7f33ca380a08ac96c48acdf356cc0ebc5d89cc705ec Description: ceilometer collector service Description-md5: 08f79895957d580c9ce4de5524e1d4aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceilometer-common Priority: optional Section: python Installed-Size: 98 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: adduser, python-ceilometer (= 2014.1-0ubuntu1), python:any Filename: pool/main/c/ceilometer/ceilometer-common_2014.1-0ubuntu1_all.deb Size: 11210 MD5sum: 4825427eb9be2a1344ef28b32b9b86ec SHA1: c0df0964b52cc69c35217b56f6d36cdf33f4caf8 SHA256: a6a33c83f3a26891a7a9153a8203b9d4cb60a330960a015bde22c492f78bf87c Description: ceilometer common files Description-md5: becb34f2ab270eef3a49fdfdc648780f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceph Priority: optional Section: admin Installed-Size: 30151 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Version: 0.79-0ubuntu1 Replaces: gceph, librgw-dev, librgw1, librgw1-dbg, obsync Depends: binutils, ceph-common, cryptsetup-bin | cryptsetup, gdisk, hdparm | sdparm, parted, uuid-runtime, xfsprogs, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any, libaio1 (>= 0.3.93), libboost-system1.54.0, libboost-thread1.54.0, libc6 (>= 2.16), libgcc1 (>= 1:4.1.1), libgoogle-perftools4, libleveldb1, libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Recommends: libcephfs1, librados2, librbd1 Conflicts: gceph, librgw-dev, librgw1, librgw1-dbg, obsync Filename: pool/main/c/ceph/ceph_0.79-0ubuntu1_amd64.deb Size: 5276356 MD5sum: d4f3bb2b3cc5ec7370553aa19e035034 SHA1: f47da65b5deca7ba76f9ebabfa51e77695148521 SHA256: 6a929e8e216461dfaa46e2d43bf4a403f17e3f229dde4460d75c01c455d93be0 Description: distributed storage and file system Homepage: http://ceph.com/ Description-md5: 8076f05fe2327940c1772acbf6f471cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceph-common Priority: optional Section: admin Installed-Size: 21928 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Replaces: ceph-client-tools Depends: librbd1 (= 0.79-0ubuntu1), python-ceph (= 0.79-0ubuntu1), python:any, libaio1 (>= 0.3.93), libblkid1 (>= 2.17.2), libboost-system1.54.0, libboost-thread1.54.0, libc6 (>= 2.16), libcurl3-gnutls (>= 7.28.0), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libgoogle-perftools4, libkeyutils1, libleveldb1, libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), librados2, libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Suggests: ceph, ceph-mds Conflicts: ceph-client-tools Filename: pool/main/c/ceph/ceph-common_0.79-0ubuntu1_amd64.deb Size: 5029454 MD5sum: f94540846102680d1cc30d1769373982 SHA1: dd54da77b857435715ce1253de4410aa65687694 SHA256: 8e14acfe6a293558cfe89b61fcc69286652b392763f899f37d2a1761062ea1da Description: common utilities to mount and interact with a ceph storage cluster Homepage: http://ceph.com/ Description-md5: e302e645c41e2c6148fcff41573e283b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceph-common-dbg Priority: extra Section: debug Installed-Size: 89061 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Replaces: ceph-client-tools-dbg Depends: ceph-common (= 0.79-0ubuntu1) Conflicts: ceph-client-tools-dbg Filename: pool/main/c/ceph/ceph-common-dbg_0.79-0ubuntu1_amd64.deb Size: 85239862 MD5sum: 011fecabd79172aa3caf4a850a3218b8 SHA1: 3bc3cbb41d9f19d1fcbe0e265b6cb3d253ecc63c SHA256: b8532d833b6e6d4063e4df271bd2a6af109d6ac16d9ba0c2f387732d06773ec3 Description: debugging symbols for ceph-common Homepage: http://ceph.com/ Description-md5: 4e090d4d7aa07af441f4e2ba271159ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ceph-dbg Priority: extra Section: debug Installed-Size: 104774 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Replaces: gceph-dbg Depends: ceph (= 0.79-0ubuntu1) Conflicts: gceph-dbg Filename: pool/main/c/ceph/ceph-dbg_0.79-0ubuntu1_amd64.deb Size: 99663256 MD5sum: 6cf8fb714de0b3ba9832202405d5dd27 SHA1: 2605392cb6043c342990d8c6a2651182b0474d91 SHA256: e255aadd4f3b027df6ea81186adba669b5e9dfe4a9700121b9c0d340c1e5d324 Description: debugging symbols for ceph Homepage: http://ceph.com/ Description-md5: 43fb0fb4a4a9eb4d08ff4a0f12738692 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ceph-fuse Priority: optional Section: admin Installed-Size: 5093 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Depends: libboost-system1.54.0, libboost-thread1.54.0, libc6 (>= 2.16), libfuse2 (>= 2.8.1), libgcc1 (>= 1:4.1.1), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Recommends: fuse Filename: pool/main/c/ceph/ceph-fuse_0.79-0ubuntu1_amd64.deb Size: 1336900 MD5sum: 30bc70b1d01f44af878d6065fdf2b8d6 SHA1: b7dcfc72709baa5ce25e3f0021f12f0d7c05f5e6 SHA256: 8c5421472e550279d1f95e653b4e3a9c9caf296b062c501f942a454d39ba4418 Description: FUSE-based client for the Ceph distributed file system Homepage: http://ceph.com/ Description-md5: 2e66da405a3a0048edd7d65c675526ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ceph-fuse-dbg Priority: extra Section: debug Installed-Size: 21358 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Depends: ceph-fuse (= 0.79-0ubuntu1) Filename: pool/main/c/ceph/ceph-fuse-dbg_0.79-0ubuntu1_amd64.deb Size: 20494396 MD5sum: a16e2580038beac5444892fddf92abd2 SHA1: 238e179926beaafdab621f5de8cad7fd6a85f7c2 SHA256: cb52f13857fe4e8b23984de78d85d8f3e95083e9ca8a2bfbbc07b237c4b61ab1 Description: debugging symbols for ceph-fuse Homepage: http://ceph.com/ Description-md5: 3379c0e590cdcd0711795dc0925dd7a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cgmanager Priority: optional Section: admin Installed-Size: 267 Maintainer: Serge Hallyn Architecture: amd64 Version: 0.24-0ubuntu5 Depends: libc6 (>= 2.4), libcgmanager0, libdbus-1-3 (>= 1.2.16), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Suggests: cgmanager-utils Filename: pool/main/c/cgmanager/cgmanager_0.24-0ubuntu5_amd64.deb Size: 49112 MD5sum: 541f22491aa5bb96f167537dc2a0d00d SHA1: 236a40c742e1902324cc0e17b211acc54e3373d8 SHA256: 72be21d125d8fc506ac6be4b173d0956488049e5068482dd11ede0d83b9507c5 Description: Central cgroup manager daemon Homepage: http://cgmanager.linuxcontainers.org/ Description-md5: 573a1987c819a2ae4addaf68ae70241e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cgroup-lite Priority: extra Section: admin Installed-Size: 45 Maintainer: Ubuntu Developers Architecture: all Version: 1.9 Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), mountall (>> 2.48~) Conflicts: cgroup-bin (<< 0.38) Filename: pool/main/c/cgroup-lite/cgroup-lite_1.9_all.deb Size: 3918 MD5sum: fe1749ba83aaf6d4f3e87ccdbc3581d4 SHA1: 4aa02c17d9ef33e3373e414afdc125de22e99a7c SHA256: b54114f2656704134d71be24b91ec827b4ab0dcead09acfa5083726fafdb73c0 Description: Light-weight package to set up cgroups at system boot Description-md5: fe014e9d284dece1e33bea560fa15953 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: check Priority: optional Section: devel Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Robert Lemmen Architecture: amd64 Version: 0.9.10-6ubuntu3 Depends: dpkg (>= 1.15.4) | install-info, mawk Filename: pool/main/c/check/check_0.9.10-6ubuntu3_amd64.deb Size: 117018 MD5sum: be1c78cb58f23212e9f7119a23c8da0b SHA1: 114266cb3719b404c21eb63d38f006e39138b675 SHA256: fe700111f2bbbf4bb6007453430cf034c53a570229ec14969937d9085c1728a0 Description: unit test framework for C Multi-Arch: same Homepage: http://check.sourceforge.net/ Description-md5: a51fdfa929f98fb924854b88bd42548c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: checkbox-gui Priority: optional Section: utils Installed-Size: 752 Maintainer: Ubuntu Developers Architecture: amd64 Source: checkbox Version: 0.17.6-0ubuntu6 Replaces: checkbox-qt (<< 0.17.4ubuntu4) Depends: checkbox-ng-service, plainbox-provider-checkbox, qtdeclarative5-localstorage-plugin, qtdeclarative5-qtquick2-plugin, qtdeclarative5-ubuntu-ui-toolkit-plugin | qt-components-ubuntu Breaks: checkbox-qt (<< 0.17.4ubuntu4) Filename: pool/main/c/checkbox/checkbox-gui_0.17.6-0ubuntu6_amd64.deb Size: 175690 MD5sum: 4945e3291d4fb4900fce7368f78fcaa0 SHA1: e959132df2306df33cbd3f8940b01d13d17813df SHA256: 9c096b6882677c7c962ed612c05d118b3fba4d9139aa7c4b1a19f1b260603f44 Description: QML based interface for system testing based on Plainbox. Description-md5: 3c1efb42f6c99e058364c3af86d62ec5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: checkbox-ng Priority: optional Section: utils Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: all Version: 0.3-2 Replaces: checkbox (<< 0.17.6-0ubuntu1) Depends: python3-checkbox-ng (= 0.3-2), python3:any (>= 3.2~), python3 Breaks: checkbox (<< 0.17.6-0ubuntu1) Filename: pool/main/c/checkbox-ng/checkbox-ng_0.3-2_all.deb Size: 7332 MD5sum: 7604dce2eccfb238a86a0012ff9595b0 SHA1: 16b59a1b803c62447b6637035a6f039aa32dc935 SHA256: db9c4616eac3cda567552a1530ca2d123a63248f2b1613958a478cfc1ffb3da9 Description: PlainBox based test runner Homepage: http://launchpad.net/checkbox Description-md5: 94b5ef78da01f8122bfd9cc4f404005b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: checkbox-ng-service Priority: optional Section: utils Installed-Size: 35 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: all Source: checkbox-ng Version: 0.3-2 Depends: checkbox-ng (= 0.3-2), python3-dbus, python3-gi Filename: pool/main/c/checkbox-ng/checkbox-ng-service_0.3-2_all.deb Size: 2446 MD5sum: d35382ed84b4b97de89eac3702f3b011 SHA1: 8cfc3a3a7ecdbc64e8470c75b9562c3bac303804 SHA256: e5a824ef8f904f379d959740dc47845191d14557f11a1025dd239d33f888f298 Description: CheckBox D-Bus service Homepage: http://launchpad.net/checkbox Description-md5: 8ed91cf1ed3801026e33fc23ddaf8d4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: checksecurity Priority: optional Section: admin Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Javier Fernandez-Sanguino Pen~a Architecture: all Version: 2.0.14ubuntu1 Replaces: cron Depends: cron (>= 3.0pl1-74) | anacron, debconf (>= 0.5) | debconf-2.0, perl (>= 5.8.0), util-linux (>= 2.15~rc1-1) Suggests: apt-watch | cron-apt, lockfile-progs, tiger, logcheck, tripwire | integrit | aide | samhain | fcheck, fcron Conflicts: lockfile-progs (<< 0.1.7) Filename: pool/main/c/checksecurity/checksecurity_2.0.14ubuntu1_all.deb Size: 19376 MD5sum: c01ee1de167442fdb77852ae456e28f6 SHA1: 8612477cfa835568ae1e093243092c45a3126a41 SHA256: af97c67d9b2f9ba5312544aa5fcd39bace3de20037d506ddbbd2da9de4e6a46a Description: basic system security checks Description-md5: 26c46b0bdb352b8c55ce0f21193e0c60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cheese Priority: optional Section: gnome Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.10.2-0ubuntu2 Depends: libc6 (>= 2.3.4), libcanberra-gtk3-0 (>= 0.25), libcheese-gtk23 (>= 3.4.0), libcheese7 (>= 3.5.1), libclutter-1.0-0 (>= 1.13.2), libclutter-gtk-1.0-0 (>= 0.91.8), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.2.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.4.4), cheese-common (= 3.10.2-0ubuntu2), gnome-video-effects Recommends: gvfs, gnome-icon-theme, hicolor-icon-theme, nautilus-sendto, yelp Suggests: gnome-video-effects-frei0r, gnome-video-effects-extra Filename: pool/main/c/cheese/cheese_3.10.2-0ubuntu2_amd64.deb Size: 48594 MD5sum: b5469b555997aa049a1375087da44ac6 SHA1: 39bb45965d51da656782bfd1b5403528c7cc6375 SHA256: 5639e584e1fb2b16fec941840c3ef00fe46c010e21e3ee79078134b392192961 Description: tool to take pictures and videos from your webcam Homepage: http://projects.gnome.org/cheese/ Description-md5: d43e2962bb9e2e6472e35b9746fa32d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: cheese-common Priority: optional Section: gnome Installed-Size: 3532 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: cheese Version: 3.10.2-0ubuntu2 Replaces: cheese (<< 2.30.1-1) Depends: dconf-gsettings-backend | gsettings-backend Breaks: cheese (<< 2.30.1-1) Filename: pool/main/c/cheese/cheese-common_3.10.2-0ubuntu2_all.deb Size: 2721054 MD5sum: 3372782fce822f93a0208f97ec301531 SHA1: 1eee20d0c27b60835818054e05c2c090e32328a1 SHA256: e38c63470cf60f1f1332b528130df0e427b6d9906f55f0373483c27b538a72e8 Description: Common files for the Cheese tool to take pictures and videos Multi-Arch: foreign Homepage: http://projects.gnome.org/cheese/ Description-md5: bd8017d577dcb034b7c3327cc79fe310 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: chkrootkit Priority: optional Section: misc Installed-Size: 1027 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Iuculano Architecture: amd64 Version: 0.49-4.1ubuntu1 Depends: libc6 (>= 2.14), debconf (>= 0.5) | debconf-2.0, binutils, net-tools, debconf, procps Filename: pool/main/c/chkrootkit/chkrootkit_0.49-4.1ubuntu1_amd64.deb Size: 383062 MD5sum: e2d21c871a0bbede14042421f3f10a2d SHA1: 6ddcf84e399aae4bf554726962f7bd8a6ca45c7a SHA256: abe3dac7a551659932b1d01acc23c28aa1462a4617bc5175e4b0eacc8d7a26de Description: rootkit detector Homepage: http://www.chkrootkit.org/ Description-md5: 1fb422eb07ad1833888e688ab81e8df9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: chrpath Priority: optional Section: utils Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: amd64 Version: 0.14-3ubuntu1 Depends: libc6 (>= 2.7) Filename: pool/main/c/chrpath/chrpath_0.14-3ubuntu1_amd64.deb Size: 12506 MD5sum: 9534dce133ad508b759aa2d078908f09 SHA1: c664f573f89b3824a47144d5af59a90c49ae0d8f SHA256: 583c8a07713fd5255080a4102b614a71f960f021029b80dd39bb4bf53b916b0a Description: Tool to edit the rpath in ELF binaries Multi-Arch: foreign Description-md5: a999fc68ae2f1aed25b996deccacd83d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cifs-utils Priority: optional Section: otherosfs Installed-Size: 256 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Version: 2:6.0-1ubuntu2 Replaces: smbfs (<< 2:4.0~rc1-1) Depends: samba-common, libc6 (>= 2.17), libkeyutils1, libkrb5-3 (>= 1.10+dfsg~), libtalloc2 (>= 2.0.4~git20101213), libwbclient0 (>= 2:3.6.0~pre3) Recommends: keyutils Suggests: smbclient, winbind Filename: pool/main/c/cifs-utils/cifs-utils_6.0-1ubuntu2_amd64.deb Size: 86716 MD5sum: 8d98e628ad6ee1746a0946cf70afbfa8 SHA1: 35f3ad819061e80c6df34d038b3a459b88889d74 SHA256: bbed3cc97e4aee05462a246afa07e0fa3c8f17e5c06a60578dd953478af5a956 Description: Common Internet File System utilities Homepage: http://www.samba.org/~jlayton/cifs-utils/ Description-md5: 935040b98485786df2e3f301255ff219 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, samba-server, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: cinder-api Priority: extra Section: net Installed-Size: 58 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Depends: cinder-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/c/cinder/cinder-api_2014.1-0ubuntu1_all.deb Size: 3424 MD5sum: 32fa1f0a041226fa639b21b73d2fe89b SHA1: 882dbd9334aa7fa30a2b98fe4937c2797eddb38d SHA256: 6b204308ae86fb567c3e54c92efd5a5fa8c3af2bcab54d3ccac2f455e0843afa Description: Cinder storage service - API server Homepage: http://launchpad.net/cinder Description-md5: 325d82ff6875c8b415e2cbe731a45c21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cinder-backup Priority: extra Section: net Installed-Size: 50 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Depends: cinder-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/c/cinder/cinder-backup_2014.1-0ubuntu1_all.deb Size: 3186 MD5sum: 8f3d6a7cbe1df16360848d748c464677 SHA1: bfafcd11df1242bd8fa3f01f5084b31e600cf241 SHA256: 53630e4460c14b4163d3b863eb5457cc4fb7c3ac33b1f040aaecdfd428d26737 Description: Cinder storage service - Scheduler server Homepage: http://launchpad.net/cinder Description-md5: e2df85270f1e60cf99b08a0d7054224e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cinder-common Priority: extra Section: net Installed-Size: 117 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Depends: adduser, python-cinder (= 1:2014.1-0ubuntu1), python:any Filename: pool/main/c/cinder/cinder-common_2014.1-0ubuntu1_all.deb Size: 12154 MD5sum: 57128ffeed3876bfd670b16780e77089 SHA1: 04284345e891a72eb7e764a8b07ce97caff7a707 SHA256: b9282554104bfeb67cd6512b7fd17f1ac9e07e7b976766da267c3449f54583da Description: Cinder storage service - common files Homepage: http://launchpad.net/cinder Description-md5: d0c1f1d187fc251f073166729bba6897 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cinder-scheduler Priority: extra Section: net Installed-Size: 58 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Depends: cinder-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/c/cinder/cinder-scheduler_2014.1-0ubuntu1_all.deb Size: 3472 MD5sum: 57f5d0edc22a378cf4e541caa76a401e SHA1: 214c200af3eac73e74fde2a4171a3b764afd8ca3 SHA256: 4de84df5c2ccebfa90859fa2299855035f071be2468ed7f0c18d3fb11b5d2895 Description: Cinder storage service - Scheduler server Homepage: http://launchpad.net/cinder Description-md5: cdc56e77ac87da514cb5cf0c47684649 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cinder-volume Priority: extra Section: net Installed-Size: 109 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Replaces: cinder-common (<= 2012.2~rc1~20120907.1154-0ubuntu1) Depends: cinder-common (= 1:2014.1-0ubuntu1), lvm2, tgt, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: cinder-common (<= 2012.2~rc1~20120907.1154-0ubuntu1) Filename: pool/main/c/cinder/cinder-volume_2014.1-0ubuntu1_all.deb Size: 7130 MD5sum: 7577fbb882572a24e0d5c2a44d661b62 SHA1: 5edfe1ff6d37d21ff6a837d8fe398f963d4e0ec7 SHA256: ce68006b0a749b4754288ff2f82dd69003c474e4e80c5a652ad338d0580bb6af Description: Cinder storage service - Volume server Homepage: http://launchpad.net/cinder Description-md5: 47b3310ccd07d775fd3dc3ac73b9c761 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: clamav Priority: optional Section: utils Installed-Size: 634 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: amd64 Version: 0.98.1+dfsg-4ubuntu1 Depends: libc6 (>= 2.15), libclamav6 (>= 0.98.1+dfsg), zlib1g (>= 1:1.1.4), clamav-freshclam | clamav-data Recommends: clamav-base Suggests: clamav-docs Filename: pool/main/c/clamav/clamav_0.98.1+dfsg-4ubuntu1_amd64.deb Size: 83864 MD5sum: b797108d9f58e1ae290c394ebaef9b2d SHA1: f07172081f4155db6e691593a3f7f5c9a5026e50 SHA256: b5a246afd2d48c2daddf614c75ae6c17cf96987ae2a83ea741ef7656e018168e Description: anti-virus utility for Unix - command-line interface Homepage: http://www.clamav.net/ Description-md5: 25816a2f56a0c214a484e117fd9fe0b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: clamav-base Priority: optional Section: utils Installed-Size: 522 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: all Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Depends: debconf (>= 0.5) | debconf-2.0, adduser, ucf, logrotate Recommends: clamav Filename: pool/main/c/clamav/clamav-base_0.98.1+dfsg-4ubuntu1_all.deb Size: 105644 MD5sum: 5ff54d00b34fc450a22845a8808facc6 SHA1: 439d252c3669f36dd3509746d14125a13e1fa8ed SHA256: 1e71761b3a97de190086824e2814946bda9f1d86fcbd890c013c6997ac8df71f Description: anti-virus utility for Unix - base package Homepage: http://www.clamav.net/ Description-md5: 36333c8001fa330971bb9bf732bd846d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: clamav-daemon Priority: optional Section: utils Installed-Size: 883 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: amd64 Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Depends: libc6 (>= 2.15), libclamav6 (>= 0.98.1+dfsg), libncurses5 (>= 5.5-5~), libtinfo5, zlib1g (>= 1:1.2.0.2), clamav-base (= 0.98.1+dfsg-4ubuntu1), clamav-freshclam | clamav-data, lsb-base (>= 3.2-13), ucf Suggests: daemon, clamav-docs, apparmor (>= 2.3+1289) Filename: pool/main/c/clamav/clamav-daemon_0.98.1+dfsg-4ubuntu1_amd64.deb Size: 133418 MD5sum: 458da89395f1a0a4978babce190acf7d SHA1: 6caa44e4a321149b2d0b389bce80b690b33bc7f5 SHA256: a012461bb5b45d8dc12722eb1d951797be1ba15e164e42011d8e0e4f30ff45e3 Description: anti-virus utility for Unix - scanner daemon Homepage: http://www.clamav.net/ Description-md5: 67066a5cf6ee89fc8ce3ae691827a9ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: clamav-dbg Priority: extra Section: debug Installed-Size: 110033 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: amd64 Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Depends: libclamav6, clamav (= 0.98.1+dfsg-4ubuntu1) Filename: pool/main/c/clamav/clamav-dbg_0.98.1+dfsg-4ubuntu1_amd64.deb Size: 24847870 MD5sum: 90958ecbf9f5098b1f2b7dcaf9a39ade SHA1: 95893bfac25def5a8b68a296cb10aebada6b8e73 SHA256: b6700b985dc736b32f5ccf6a891ad35d46b84e9c7131a4d038dc626144562957 Description: debug symbols for ClamAV Homepage: http://www.clamav.net/ Description-md5: 33a33cc71dce345b4a0ce175ebeca8c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: clamav-docs Priority: optional Section: doc Installed-Size: 1529 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: all Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Filename: pool/main/c/clamav/clamav-docs_0.98.1+dfsg-4ubuntu1_all.deb Size: 1030292 MD5sum: bc94ea55b44e68ba2c5fa3213464379e SHA1: a7a523ffcb44e334c1371fb978994f1e26676e51 SHA256: fbe9d246d8fa299cbc6c5879aba69f317eb86d185b4db4c9add65ffe1432f8ae Description: anti-virus utility for Unix - documentation Homepage: http://www.clamav.net/ Description-md5: e2412f6e57d4fb282e22d549e939cb72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: clamav-freshclam Priority: optional Section: utils Installed-Size: 647 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: amd64 Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Provides: clamav-data Depends: debconf (>= 0.5) | debconf-2.0, clamav-base (>= 0.98.1+dfsg-4ubuntu1), libc6 (>= 2.15), libclamav6 (>= 0.98.1+dfsg), zlib1g (>= 1:1.1.4), ucf, logrotate, lsb-base (>= 3.2-13) Suggests: clamav-docs, apparmor (>= 2.3+1289) Conflicts: clamav-data, libclamav2, libclamav3 Filename: pool/main/c/clamav/clamav-freshclam_0.98.1+dfsg-4ubuntu1_amd64.deb Size: 106446 MD5sum: d5ee891bccdbed1d04111c228517df5d SHA1: da8d7da959de9141dce9c74479982a40d7da07d8 SHA256: bdadede8bb19d922face06c5edf467a5fa8e7dd60b2d2d98f8d04490c9e2282b Description: anti-virus utility for Unix - virus database update utility Homepage: http://www.clamav.net/ Description-md5: 824a85afc618e1467a907719e4edd7bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cli-common Priority: optional Section: interpreters Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Common Team Architecture: all Version: 0.9 Replaces: cli-common-dev (<< 0.5.1) Depends: perl-modules Filename: pool/main/c/cli-common/cli-common_0.9_all.deb Size: 171580 MD5sum: cf6f2231666fdaf2b67c265bebc848b0 SHA1: e63f16c98c3db82993524d1db3a271fee7445e2c SHA256: baf1abe35b2f7b3132730fc7f877e1c4db4d11b197dbad4eda1d00415959d769 Description: common files between all CLI packages Homepage: http://alioth.debian.org/projects/pkg-cli-common/ Description-md5: c868d733992b0f798d46399562a779bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: cli-common-dev Priority: optional Section: interpreters Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Common Team Architecture: all Source: cli-common Version: 0.9 Replaces: cli-common (<< 0.4.0) Depends: debhelper (>= 7.0.8), perl-modules, mono-utils (>= 3.0~) | cil-disassembler, mono-devel (>= 3.0~) | strong-name-tool, libxml-dom-perl Filename: pool/main/c/cli-common/cli-common-dev_0.9_all.deb Size: 39614 MD5sum: 5c81e5ab42971949a32353f2daa15209 SHA1: 2387bc59db05f0f6570924d660e0f944912a6d21 SHA256: 29e302b9cf67db08c08b69d67f7c2f353d1b323887a9f0172887ed4236a65120 Description: common files for building CLI packages Homepage: http://alioth.debian.org/projects/pkg-cli-common/ Description-md5: 3920a08599d8970b5296ceb111af4410 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: click Priority: optional Section: admin Installed-Size: 156 Maintainer: Colin Watson Architecture: amd64 Version: 0.4.21.1 Replaces: click-package Provides: click-package Depends: libc6 (>= 2.3.4), python3:any (>= 3.2~), python3, python3-click (= 0.4.21.1), adduser Pre-Depends: multiarch-support Recommends: click-apparmor, upstart-app-launch-tools Conflicts: click-package Filename: pool/main/c/click/click_0.4.21.1_amd64.deb Size: 13284 MD5sum: 854cf6cca036e0060150dad6a5644225 SHA1: 01fd789b77a355d995379350100c5bbd1a05ea21 SHA256: e50019ee3e08995def84ff08c8a26488438522bb1bdbf72171586cebf61c0380 Description: Click packages Description-md5: 1f88be1eec9a52975d22b0103f98879a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: click-apparmor Priority: optional Section: admin Installed-Size: 91 Maintainer: Steve Beattie Architecture: amd64 Version: 0.2 Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python3:any (>= 3.3~), python3, python3-apparmor-click (= 0.2), click, apparmor (>= 2.8.0-0ubuntu15) Filename: pool/main/c/click-apparmor/click-apparmor_0.2_amd64.deb Size: 10310 MD5sum: 6e0fcd8ea9f4103ff4aa178d9a964aff SHA1: ce7a5d52097702874e0e5757115d7c45dfb80c0c SHA256: 5b4ae65690914b71781b310ded2dc84569a2725814497a0743c9e39917334623 Description: Click manifest to AppArmor easyprof conversion tools Description-md5: 2f38f52265e23d1e53ff74e49c902daa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: click-dev Priority: optional Section: admin Installed-Size: 91 Maintainer: Colin Watson Architecture: amd64 Source: click Version: 0.4.21.1 Depends: perl, python3-click (= 0.4.21.1) Recommends: debootstrap, schroot Filename: pool/main/c/click/click-dev_0.4.21.1_amd64.deb Size: 7236 MD5sum: 1cec6d5314ed688bd7be043af0fafdf0 SHA1: f5d32f8963338e4ab8434e48f12dfc1e9ab33c31 SHA256: 21e22da8b612c47897041b6a82b2394a2bc5607cff5781f1ceb57aed2fe5f6c7 Description: build Click packages Multi-Arch: foreign Description-md5: 524a787d5934e296c23fd4c9d590ebf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: click-doc Priority: optional Section: doc Installed-Size: 220 Maintainer: Colin Watson Architecture: all Source: click Version: 0.4.21.1 Replaces: click-package-doc Provides: click-package-doc Depends: libjs-sphinxdoc (>= 1.0) Conflicts: click-package-doc Filename: pool/main/c/click/click-doc_0.4.21.1_all.deb Size: 40074 MD5sum: 9a24da6cb123b38fdf182c795b1023db SHA1: 285f90bb8fbc66eda656f642e5cae696ebc7a8d3 SHA256: bb6ef999cca4acd69f884d8217f763a9f628768d148f5be01fa99182686de231 Description: Click packages (documentation) Description-md5: 60608bb1e29a4ab375e8538c009ecb38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cliff-tablib Priority: extra Section: python Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.1-1 Depends: python-cliff, python-tablib, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/c/cliff-tablib/cliff-tablib_1.1-1_all.deb Size: 4106 MD5sum: 38b40e8358506f6922dd4cb907b36ed2 SHA1: 9fcb707705c51b4fc4d0661f7ba04d6099ac6195 SHA256: 458a3bd100bfda90ac733446e92ba10019312133eb796dc0696e7931ad5c8635 Description: tablib formatters for cliff Homepage: https://github.com/dreamhost/cliff-tablib Description-md5: d6e967db5586ebf950614f0b011e0005 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cloop-utils Priority: optional Section: misc Installed-Size: 219 Maintainer: Ubuntu Core Developers Original-Maintainer: Eduard Bloch Architecture: amd64 Source: cloop Version: 2.6.39.2-1ubuntu3 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/c/cloop/cloop-utils_2.6.39.2-1ubuntu3_amd64.deb Size: 69416 MD5sum: f4207b82e9529724b6fafa60eea214a4 SHA1: 61f159d7b5a28586a1a0083fb8d86d001dc88a13 SHA256: bd1c62fcdcb0fa511a4c6d3d90dc5d10b85497630a112c348b55686e792289a9 Description: Tools for handling with cloop compressed volumes Description-md5: 3d1d4288bcff38ee763800b505a55411 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cloud-guest-utils Priority: extra Section: admin Installed-Size: 74 Maintainer: Scott Moser Architecture: all Source: cloud-utils Version: 0.27-0ubuntu9 Replaces: cloud-utils (<< 0.27-0ubuntu3) Depends: e2fsprogs (>= 1.4), util-linux (>= 2.17.2), python:any Recommends: gdisk Conflicts: cloud-utils (<< 0.27-0ubuntu3) Filename: pool/main/c/cloud-utils/cloud-guest-utils_0.27-0ubuntu9_all.deb Size: 13762 MD5sum: d9ef94a7e36e0f9944aa650923103e96 SHA1: 1ef7e7862305546f7d7443b282d0ec041dda4af8 SHA256: cbc4d82be9f3c1064d18b51264b04f99e58c8add36da919ebd0cf3b488a3c265 Description: cloud guest utilities Description-md5: fda0c5237d2eca0ed770cea9796a01fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: cloud-image-utils Priority: extra Section: admin Installed-Size: 112 Maintainer: Scott Moser Architecture: all Source: cloud-utils Version: 0.27-0ubuntu9 Replaces: cloud-utils (<< 0.27-0ubuntu3) Depends: ca-certificates, euca2ools, file, genisoimage, qemu-utils, wget, python:any Recommends: distro-info, python-distro-info Conflicts: cloud-utils (<< 0.27-0ubuntu3) Filename: pool/main/c/cloud-utils/cloud-image-utils_0.27-0ubuntu9_all.deb Size: 25604 MD5sum: a117996d9df5a07f5fe6c714714b2782 SHA1: 45182cb334ce987843f190febdb4d9cd413bcaec SHA256: 3d22db96d4ad1187c624001ab687feae958b89222272a061f29e8a4d4c618735 Description: cloud image management utilities Description-md5: 765804be1cec3814207205510c2632bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cloud-init Priority: extra Section: admin Installed-Size: 964 Maintainer: Scott Moser Architecture: all Version: 0.7.5-0ubuntu1 Replaces: ec2-init (<< 0.5.3) Provides: ec2-init Depends: cloud-guest-utils | cloud-utils, ifupdown (>= 0.6.10ubuntu5), procps, python (>= 2.7), python-requests (>= 0.8.2), software-properties-common, debconf (>= 0.5) | debconf-2.0, python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-cheetah, python-prettytable, python-oauth, python-serial, python-configobj, python-yaml, python-jsonpatch Recommends: eatmydata Conflicts: ec2-init (<< 0.5.3) Filename: pool/main/c/cloud-init/cloud-init_0.7.5-0ubuntu1_all.deb Size: 190622 MD5sum: cc0d636ccbdff6f6969505eb33da29cc SHA1: 05aef5df1b3b7c0f4612b4b08cc5b8931efbf43f SHA256: e669b7b7bc7176219f013c1895e8662640e25e70f7fa0e76ba8333b9244fa397 Description: Init scripts for cloud instances Python-Version: 2.7 Description-md5: 8719ef0e4178017b7147590b1fde082e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: cloud-utils Priority: extra Section: admin Installed-Size: 31 Maintainer: Scott Moser Architecture: all Version: 0.27-0ubuntu9 Depends: cloud-guest-utils, cloud-image-utils Filename: pool/main/c/cloud-utils/cloud-utils_0.27-0ubuntu9_all.deb Size: 1506 MD5sum: 714a16c336ece8ec80b6a22a7de909ee SHA1: e8689dd3e842ff6597d965b3f73530206109f50a SHA256: 2dc7091beed00a5ef562fa07c5306c62cf6f807ea1936e5f03257603c80363e2 Description: metapackage for installation of upstream cloud-utils source Description-md5: 1e4961d514cf3ca76a2bdf19b3eb3abc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cluster-glue Priority: optional Section: admin Installed-Size: 1675 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Version: 1.0.11+hg2754-1.1build1 Replaces: heartbeat (<= 2.99.2+sles11r9-5), heartbeat-common (<= 2.99.2+sles11r9-5), libheartbeat2 (<= 2.99.2+sles11r9-5) Depends: libbz2-1.0, libc6 (>= 2.14), libcurl3 (>= 7.16.2), libdbus-glib-1-2 (>= 0.84), libglib2.0-0 (>= 2.24.0), liblrm2 (= 1.0.11+hg2754-1.1build1), libopenhpi2, libopenipmi0, libpils2 (= 1.0.11+hg2754-1.1build1), libplumb2 (= 1.0.11+hg2754-1.1build1), libplumbgpl2 (= 1.0.11+hg2754-1.1build1), libsnmp30 (>= 5.7.2~dfsg), libstonith1 (= 1.0.11+hg2754-1.1build1), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4), perl, python:any (>= 2.7.1-0ubuntu2), python2.7, libtimedate-perl Conflicts: heartbeat (<= 2.99.2+sles11r9-5), heartbeat-common (<= 2.99.2+sles11r9-5), libheartbeat2 (<= 2.99.2+sles11r9-5) Filename: pool/main/c/cluster-glue/cluster-glue_1.0.11+hg2754-1.1build1_amd64.deb Size: 310598 MD5sum: 1af6c058e40f096846ee32b95a9a8d8a SHA1: d0f19b6e2aa61aa272ae5e57beebaa2e3276616e SHA256: 6b609ea3e977b14385d5fb1bcc040267c3a2390c7c4b911ce016804a5c52722f Description: Reusable cluster components for Linux HA Homepage: http://hg.linux-ha.org/glue/ Description-md5: 6b0e3d7f13fd53c8e3c9d7292e7411ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cluster-glue-dev Priority: optional Section: admin Installed-Size: 11825 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1) Depends: liblrm2-dev (= 1.0.11+hg2754-1.1build1), libpils2-dev (= 1.0.11+hg2754-1.1build1), libplumb2-dev (= 1.0.11+hg2754-1.1build1), libplumbgpl2-dev (= 1.0.11+hg2754-1.1build1), libstonith1-dev (= 1.0.11+hg2754-1.1build1) Conflicts: libcluster-glue-dev (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/cluster-glue-dev_1.0.11+hg2754-1.1build1_amd64.deb Size: 901640 MD5sum: 9594564065a10c902f1aee72b647936f SHA1: 26389c75e89a384310f81473df40b498c1074acd SHA256: 801a5f6a2381a5e6d1d1efab35a24468eb0cdb0c46ba3735b130cac4b51f9173 Description: Development files for the cluster glue components Homepage: http://hg.linux-ha.org/glue/ Description-md5: 156dc1307d9731c4a3cd06a830aac444 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: clvm Priority: extra Section: admin Installed-Size: 806 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Source: lvm2 Version: 2.02.98-6ubuntu2 Depends: libc6 (>= 2.15), libcmap4 (>= 2.3.0), libcpg4 (>= 2.3.0), libdevmapper-event1.02.1 (>= 2:1.02.74), libdevmapper1.02.1 (>= 2:1.02.77), libdlm3, libquorum5 (>= 2.3.0), libudev1 (>= 183), lvm2 (= 2.02.98-6ubuntu2), lsb-base Recommends: corosync Filename: pool/main/l/lvm2/clvm_2.02.98-6ubuntu2_amd64.deb Size: 263040 MD5sum: 54673aa534845cfd06d1d120ae276d51 SHA1: d6ef6c00cef415cadfb044bf85838d5e5d917a8b SHA256: 0f107e236bffed866bf6f05a0538739bbdc1c403d9afa4d4d15eac0615784c16 Description: Cluster LVM Daemon for lvm2 Multi-Arch: foreign Homepage: http://sources.redhat.com/lvm2/ Description-md5: 46f93b5b21bc2e311bd9e9e51949e9a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cmake Priority: optional Section: devel Installed-Size: 13399 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: amd64 Version: 2.8.12.2-0ubuntu3 Depends: libarchive13, libc6 (>= 2.15), libcurl3 (>= 7.16.2), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.2.3.3), cmake-data (>= 2.8.12.2), procps Recommends: make, gcc Suggests: codeblocks, eclipse Filename: pool/main/c/cmake/cmake_2.8.12.2-0ubuntu3_amd64.deb Size: 2618178 MD5sum: cca6f3b1b63654961bab65e217ac90d0 SHA1: 646bf0ed0820f0be4e296bf16b50ecc9f8e320e1 SHA256: 3fe5b67784d15c37ea789eb152f269e4183bdb0cc4e1bac87fd474f6b609ef5d Description: cross-platform, open-source make system Multi-Arch: foreign Homepage: http://cmake.org/ Description-md5: 47b53839da906127970f1e8c870afc2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cmake-data Priority: optional Section: devel Installed-Size: 2853 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: all Source: cmake Version: 2.8.12.2-0ubuntu3 Replaces: cmake (<= 2.6.2-1) Conflicts: emacsen-common (<< 2.0.0) Breaks: cmake (<= 2.6.2-1) Filename: pool/main/c/cmake/cmake-data_2.8.12.2-0ubuntu3_all.deb Size: 676138 MD5sum: c45c69a56c25f93a52b1e1775ce3af23 SHA1: 317557782ab43cea035600906aaa3078161e1cb6 SHA256: 39e9c8633c7cb9885b8f5d36bba0d4b4acaab4d460af60002afbea6e3fd7619c Description: CMake data files (modules, templates and documentation) Homepage: http://cmake.org/ Description-md5: a70b3cf96f911b61c8fa1e1b3f34f44f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cmake-dbg Priority: extra Section: debug Installed-Size: 93632 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: amd64 Source: cmake Version: 2.8.12.2-0ubuntu3 Depends: cmake-data, cmake (= 2.8.12.2-0ubuntu3) Filename: pool/main/c/cmake/cmake-dbg_2.8.12.2-0ubuntu3_amd64.deb Size: 91957532 MD5sum: f2275cc5d53ec0815ce55c68119f827b SHA1: 614487468dc736cd0b5ad7ddb7f0076ada826695 SHA256: e794a022fc899c11cfc6934f971dfd71b20f5dd904a263d3ca6f2e32b0fc9e2f Description: debugging symbols for CMake Homepage: http://cmake.org/ Description-md5: 7f4ed0ea110853f600e8542e7e8e3db6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cmake-doc Priority: optional Section: doc Installed-Size: 5070 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: all Source: cmake Version: 2.8.12.2-0ubuntu3 Replaces: cmake (<= 2.8.2-1), cmake-curses-gui (<= 2.8.2-1), cmake-data (<= 2.8.2-1), cmake-qt-gui (<= 2.8.2-1) Depends: cmake-data Recommends: doc-base Suggests: cmake Breaks: cmake (<= 2.8.2-1), cmake-curses-gui (<= 2.8.2-1), cmake-data (<= 2.8.2-1), cmake-qt-gui (<= 2.8.2-1) Filename: pool/main/c/cmake/cmake-doc_2.8.12.2-0ubuntu3_all.deb Size: 1431254 MD5sum: c1afe00fb891d09fc72de5b4cbd2cd6a SHA1: f4871d2794d07063afe823e099d302e143b30b1a SHA256: 739e19f4351d3db54160bbda5c1c4db97d0e371969e5fd107a76caf0ebfbc7ee Description: extended documentation in various formats for CMake Homepage: http://cmake.org/ Description-md5: c77e6a2a8065e9574225a496b383a0cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: colord Priority: optional Section: graphics Installed-Size: 1384 Maintainer: Christopher James Halse Rogers Architecture: amd64 Version: 1.0.6-1 Depends: libc6 (>= 2.4), libcolord1 (>= 1.0.2), libcolorhug1 (>= 0.1.30), libdbus-1-3 (>= 1.0.2), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), libgusb2 (>= 0.1.3), liblcms2-2 (>= 2.2+git20110628), libpolkit-gobject-1-0 (>= 0.99), libsane (>= 1.0.11-3), libsqlite3-0 (>= 3.5.9), libsystemd-login0 (>= 31), dconf-gsettings-backend | gsettings-backend, adduser, acl, policykit-1 (>= 0.103) Filename: pool/main/c/colord/colord_1.0.6-1_amd64.deb Size: 212926 MD5sum: 302d32eb69aea2b5970f7f791dbad228 SHA1: ee4efe57636fd49bb78b8cefc2475757db144fa2 SHA256: 364cc9b7f931e1edaad87dad69401abada1bf499e2761302f65dfd2b382b628d Description: system service to manage device colour profiles -- system daemon Multi-Arch: foreign Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 64e70acbf5b727798902cde7ba73ee66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: comerr-dev Priority: extra Section: libdevel Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Source: e2fsprogs (1.42.9-3ubuntu1) Version: 2.1-1.42.9-3ubuntu1 Replaces: e2fslibs-dev (<< 1.33-2), libkrb5-dev (<< 1.3) Depends: libc6-dev | libc-dev, libcomerr2 (= 1.42.9-3ubuntu1) Suggests: doc-base Filename: pool/main/e/e2fsprogs/comerr-dev_2.1-1.42.9-3ubuntu1_amd64.deb Size: 38344 MD5sum: 39d51eace5b641b8c3b07f83f91bb49c SHA1: 8fbb30b5f3f2d5c5a0fbf46d5c7fc56e9c2d7fe0 SHA256: 63ec7357b7c2d0d731d6289b19fb52e32d2ff8db26d6d28e1a17810eda4d45e4 Description: common error description library - headers and static libraries Homepage: http://e2fsprogs.sourceforge.net Description-md5: 2188fc96978a9083bb050c70bc3cab2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: command-not-found Priority: standard Section: admin Installed-Size: 52 Maintainer: Michael Vogt Original-Maintainer: Zygmunt Krynicki Architecture: all Version: 0.3ubuntu12 Depends: python3-commandnotfound (>= 0.3ubuntu7) Filename: pool/main/c/command-not-found/command-not-found_0.3ubuntu12_all.deb Size: 3652 MD5sum: aeaba095167a9dbeabe9d60c02d221bd SHA1: 1b3a7f22f525a7974d6cdfcc5819fa1a02b1847b SHA256: ea80f8cd2bb22d48bac2d4610a0c1cacd2c78fe73db3ae2d9298717e04e6df77 Description: Suggest installation of packages in interactive bash sessions Description-md5: add5e86211cf27a4446f18bd0c777aa8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: command-not-found-data Priority: standard Section: admin Installed-Size: 3992 Maintainer: Michael Vogt Original-Maintainer: Zygmunt Krynicki Architecture: amd64 Source: command-not-found Version: 0.3ubuntu12 Filename: pool/main/c/command-not-found/command-not-found-data_0.3ubuntu12_amd64.deb Size: 791310 MD5sum: afd1a7d3c71a908a8ea8706282f460fb SHA1: 7efd0439f8f0f988ba1aad36ba6a203fb9f552d5 SHA256: c6b22e66c4f898df843e64cc9c3526c1fc7d169ab583cf4c6b53d44fd55b93ad Description: Set of data files for command-not-found. Description-md5: 730a06588855602fe72d37b151efeed2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: compiz Priority: optional Section: x11 Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:0.9.11+14.04.20140409-0ubuntu1 Provides: x-window-manager Depends: compiz-core (>= 1:0.9.11+14.04.20140409-0ubuntu1), compiz-plugins-default (>= 1:0.9.11+14.04.20140409-0ubuntu1), compiz-gnome, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/c/compiz/compiz_0.9.11+14.04.20140409-0ubuntu1_all.deb Size: 4042 MD5sum: dcc6a1b9a173160f13c8d7a21e91f429 SHA1: f14885637d650f0eb77f081511658d477794490a SHA256: 1ffd772778fdb7a7cae2ce867815731ed2e7d4807c6a4978f190e8a31e9eb41b Description: OpenGL window and compositing manager Description-md5: f8949ff691855a5244d51aa54ee72f8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: compiz-core Priority: optional Section: x11 Installed-Size: 1228 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Replaces: compizconfig-settings-manager (<< 0.9.8) Provides: compiz-core-abiversion-20140123 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.30.0), libglibmm-2.4-1c2a (>= 2.36.2), libice6 (>= 1:1.0.0), libsigc++-2.0-0c2a (>= 2.0.2), libsm6, libstartup-notification0 (>= 0.7), libstdc++6 (>= 4.6), libx11-6, libxext6, libxi6 (>= 2:1.2.99.4), libxinerama1, libxrandr2 Recommends: compiz-plugins-default Filename: pool/main/c/compiz/compiz-core_0.9.11+14.04.20140409-0ubuntu1_amd64.deb Size: 314170 MD5sum: d1f49f3f8649db063b71856b1e4a5282 SHA1: ba52dadab763d4948619a5f90572d3143af08023 SHA256: 6d494e7b2d477325db807c25dcb40972ddb7454af992aac10929fca313dd032e Description: OpenGL window and compositing manager Description-md5: 96330190075d58bc036c352e8a3a72fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: compiz-dev Priority: optional Section: x11 Installed-Size: 650 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Replaces: compiz-dev (<< 1:0.9.8), compiz-plugins-extra (<< 1:0.9.8), compiz-plugins-main-dev (<< 1:0.9.8) Depends: compiz-core (= 1:0.9.11+14.04.20140409-0ubuntu1), libdecoration0-dev (= 1:0.9.11+14.04.20140409-0ubuntu1), compiz-plugins-default (= 1:0.9.11+14.04.20140409-0ubuntu1), libgl1-mesa-dev | libgl-dev, libpng-dev, libxcomposite-dev (>= 1:0.3-2), libxfixes-dev (>= 1:4.0.1), libxdamage-dev (>= 1:1.0.3), libxinerama-dev, libxrandr-dev (>= 2:1.1.0.2), libxcursor-dev, libice-dev (>= 1:1.0.1), libsm-dev (>= 1:1.0.1), libstartup-notification0-dev (>= 0.7), libxslt1-dev, libxml2-dev, libx11-xcb-dev, libglib2.0-dev, libglibmm-2.4-dev, libgtk-3-dev Suggests: compiz-plugins Breaks: compiz-plugins-extra (<< 1:0.9.8), compiz-plugins-main-dev (<< 1:0.9.8) Filename: pool/main/c/compiz/compiz-dev_0.9.11+14.04.20140409-0ubuntu1_amd64.deb Size: 75428 MD5sum: 2cc24cb39f3f6d79d409e43ff224da24 SHA1: dd358c9a53146233b01f40ecd63c75834fc6f6f3 SHA256: eaeaa7d0e0b616ae433c585ceb97b3f6d93fcc6408ec3d0bd6a000bbec334634 Description: OpenGL window and compositing manager - development files Description-md5: 867507a9b714c75e96d3438264bda095 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: compiz-gnome Priority: optional Section: x11 Installed-Size: 1439 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Replaces: compiz-plugins-main (<= 1:0.9.8), compiz-plugins-main-default (<= 1:0.9.8), compizconfig-backend-gconf (<= 1:0.9.8), libcompizconfig0 (<= 1:0.9.8) Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libcairo2 (>= 1.2.4), libcompizconfig0, libdecoration0 (>= 1:0.9.8.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libmetacity-private0a (>= 1:2.34.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libwnck22 (>= 1:2.22), libx11-6, libxrender1, dconf-gsettings-backend | gsettings-backend, gconf2 (>= 2.28.1-2), session-migration, compiz-plugins-default (= 1:0.9.11+14.04.20140409-0ubuntu1), gsettings-desktop-schemas, gnome-settings-daemon-schemas (>= 3.4.2-0ubuntu9) Recommends: python-gconf, gnome-system-monitor Breaks: compiz-plugins-main (<= 1:0.9.8), compiz-plugins-main-default (<= 1:0.9.8), compizconfig-backend-gconf (<= 1:0.9.8) Filename: pool/main/c/compiz/compiz-gnome_0.9.11+14.04.20140409-0ubuntu1_amd64.deb Size: 155432 MD5sum: 53486664f75b77b25c339bb86ffa6a80 SHA1: 56ca86c04cc744459a7604af89f513831e4ea529 SHA256: f104ae2209f9995740058e8dfb8b21a9f50daa47b9233e1d0f7f6e49d69f146c Description: OpenGL window and compositing manager - GNOME window decorator Description-md5: f487b7706c4305676403c9a70567359c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: compiz-plugins-default Priority: optional Section: x11 Installed-Size: 4042 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Replaces: compiz-plugins (<< 1:0.9.10), compiz-plugins-main-default (<< 1:0.9.8) Depends: compiz-core (= 1:0.9.11+14.04.20140409-0ubuntu1), libdecoration0 (= 1:0.9.11+14.04.20140409-0ubuntu1), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libpng12-0 (>= 1.2.13-4), libstdc++6 (>= 4.6), libx11-6, libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3 (>= 1:4.0.1), libxml2 (>= 2.7.4), libxrandr2 (>= 4.3), libxrender1 Breaks: compiz-plugins (<< 1:0.9.10), compiz-plugins-main-default (<< 1:0.9.8) Filename: pool/main/c/compiz/compiz-plugins-default_0.9.11+14.04.20140409-0ubuntu1_amd64.deb Size: 753278 MD5sum: e5762bd26cb94db2c4edd99acdfd266d SHA1: e2851348f2a2f1c83310aafed8ff95dd96a89981 SHA256: 650c476f0d680dd38a7b97f5df76923a1191241fec4656febfed335782eb346d Description: OpenGL window and compositing manager - default plugins Description-md5: 946b91cace0c0f855a4d0dc9d9a9ed9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: compiz-plugins-main-dev Priority: extra Section: x11 Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Depends: compiz-dev Filename: pool/main/c/compiz/compiz-plugins-main-dev_0.9.11+14.04.20140409-0ubuntu1_all.deb Size: 3436 MD5sum: 61751918954c92985c500d5f9f7c65be SHA1: e725547178d9e19d143b3a8f0c4a7adaa2481add SHA256: 66cab346b400b6141dc80f972bd06091640c569dd02753750b7c897f2f935fd5 Description: transitional dummy package. Description-md5: 881dd7ae5d144e48dc92946d884ecd75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: console-setup Priority: important Section: utils Installed-Size: 1529 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Version: 1.70ubuntu8 Replaces: console-terminus Provides: console-terminus Depends: debconf (>= 1.5.34), xkb-data (>= 0.9), keyboard-configuration, initramfs-tools (>= 0.85eubuntu12), kbd (>= 1.15-1ubuntu3) Suggests: lsb-base (>= 3.0-6), locales Conflicts: console-terminus, lsb (<< 2.0-6), lsb-base (<< 3.0-6), lsb-core (<< 2.0-6) Filename: pool/main/c/console-setup/console-setup_1.70ubuntu8_all.deb Size: 1112668 MD5sum: 370ff02356551786ee5749a62e5a2fe6 SHA1: 239dd43ef88b28b4ff0de4afa77729d96914d4d2 SHA256: b66a09332645ab567ad1460825f422a17bd7aea9bf27c8d61d71ec0cfdda31b7 Description: console font and keymap setup program Description-md5: f2352fd13dfab31f8aa67306eb77bb05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: consolekit Priority: optional Section: admin Installed-Size: 462 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Version: 0.4.5-3.1ubuntu2 Depends: libc6 (>= 2.4), libck-connector0 (= 0.4.5-3.1ubuntu2), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.31.8), libpolkit-gobject-1-0 (>= 0.94), libx11-6, zlib1g (>= 1:1.1.4), dbus (>= 1.1.2) Recommends: libpam-ck-connector Breaks: udev (<< 147) Filename: pool/main/c/consolekit/consolekit_0.4.5-3.1ubuntu2_amd64.deb Size: 108544 MD5sum: 699cb6d7069d64a030c0c6ab676d1219 SHA1: a96d6cacde8fb41d72a72f541f9efa5c1b71237d SHA256: 63429aec8b10668f910fa6812c3373daa2bf19df9530a2dba7cae2050b6780ba Description: framework for defining and tracking users, sessions and seats Homepage: http://www.freedesktop.org/wiki/Software/ConsoleKit Description-md5: ebcb508a56f0ac7c55a29c37ded2a104 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, lubuntu-core, ubuntustudio-video, ubuntustudio-graphics Package: coreutils Essential: yes Priority: required Section: utils Installed-Size: 6024 Maintainer: Ubuntu Developers Original-Maintainer: Michael Stone Architecture: amd64 Version: 8.21-1ubuntu5 Replaces: mktemp, timeout Pre-Depends: libacl1 (>= 2.2.51-8), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.17), libselinux1 (>= 1.32) Conflicts: timeout Filename: pool/main/c/coreutils/coreutils_8.21-1ubuntu5_amd64.deb Size: 1090770 MD5sum: 9d8995da82c3379f88340c3273091a34 SHA1: 6d8739140eac704a5862da382312ea0655f47e0d SHA256: 39daddcad783b6c92cf1342d9082bfe5a026f92948f9336f8b4f400aee7cb1d2 Description: GNU core utilities Multi-Arch: foreign Homepage: http://gnu.org/software/coreutils Description-md5: ca29325ab0239421f7b6be11369cc121 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: corosync Priority: optional Section: admin Installed-Size: 978 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Version: 2.3.3-1ubuntu1 Depends: libc6 (>= 2.14), libcfg6 (= 2.3.3-1ubuntu1), libcmap4 (= 2.3.3-1ubuntu1), libcorosync-common4 (= 2.3.3-1ubuntu1), libcpg4 (= 2.3.3-1ubuntu1), libdbus-1-3 (>= 1.0.2), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libqb0, libquorum5 (= 2.3.3-1ubuntu1), libsam4 (= 2.3.3-1ubuntu1), libtotem-pg5 (= 2.3.3-1ubuntu1), libvotequorum6 (= 2.3.3-1ubuntu1), lsb-base (>= 3.0-6), adduser Conflicts: openais (<< 0.85), openais-legacy (<< 1.0.0) Filename: pool/main/c/corosync/corosync_2.3.3-1ubuntu1_amd64.deb Size: 218328 MD5sum: b9d9e13ec239a97c292d575b02bf5b09 SHA1: 219bcb93164c832260e4245bc142e2aa834e86ef SHA256: d53b28d2f40ea428a2e49798b7a3720472a4de3c5b637fb010319f32108ae7c2 Description: Standards-based cluster framework (daemon and modules) Description-md5: 6919b701a49bdb9b99ff093ba8f8a84f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: corosync-dbg Priority: extra Section: debug Installed-Size: 4361 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Depends: libcfg6 (= 2.3.3-1ubuntu1), libcmap4 (= 2.3.3-1ubuntu1), libcorosync-common4 (= 2.3.3-1ubuntu1), libcpg4 (= 2.3.3-1ubuntu1), libquorum5 (= 2.3.3-1ubuntu1), libsam4 (= 2.3.3-1ubuntu1), libtotem-pg5 (= 2.3.3-1ubuntu1), libvotequorum6 (= 2.3.3-1ubuntu1) Filename: pool/main/c/corosync/corosync-dbg_2.3.3-1ubuntu1_amd64.deb Size: 850250 MD5sum: cf061bd3debdc1f00829ac56a4a8d6b1 SHA1: 1b844a0d127a6db330ba42fe855813b182cc8d43 SHA256: 1aa928e9495b30666d4a93ba02347f6728f94b542502cae98f15964a32002406 Description: Standards-based cluster framework (debugging symbols) Description-md5: fd4a4e8fd33ddf4706a49a3a324162ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: corosync-dev Priority: optional Section: libdevel Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Depends: libcorosync-common-dev (= 2.3.3-1ubuntu1) Filename: pool/main/c/corosync/corosync-dev_2.3.3-1ubuntu1_amd64.deb Size: 3218 MD5sum: 7085a9137c8654c186239a8b9b91fd98 SHA1: 19ea343c9e5a3aef46b6de777d112ced7f09b43a SHA256: 0421c3957d67e84f6d0c727051e34eb5200566e8e365841a32758b158053be65 Description: Standards-based cluster framework (transitional package) Description-md5: 7b075c5ac6dc0b847b60b2f60289a719 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpio Priority: required Section: utils Installed-Size: 320 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: amd64 Version: 2.11+dfsg-1ubuntu1 Replaces: cpio-mt Depends: libc6 (>= 2.17) Suggests: libarchive1 Conflicts: cpio-mt, mt-st (<< 0.6) Filename: pool/main/c/cpio/cpio_2.11+dfsg-1ubuntu1_amd64.deb Size: 108394 MD5sum: f23a62256514a03a5ab4ab42a52a5834 SHA1: f9333e73751ef230c3e55b881c2f64eb6fdb58f3 SHA256: 30a39facda43025e8207919cf5d6fe4fc246af0b86dc69ef74d1f29bec799817 Description: GNU cpio -- a program to manage archives of files Multi-Arch: foreign Homepage: http://www.gnu.org/software/cpio/ Description-md5: 5f492bf139a41f29fd2d6fcadf43606e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: cpp Priority: optional Section: interpreters Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: cpp-4.8 (>= 4.8.2-5~) Suggests: cpp-doc Conflicts: cpp-doc (<< 1:2.95.3) Filename: pool/main/g/gcc-defaults/cpp_4.8.2-1ubuntu6_amd64.deb Size: 27452 MD5sum: 2ced23b24cf068b16b5a69222506fd79 SHA1: 73cdc2ad744cf9558c33bfb59454f36e0aa95510 SHA256: 870229f8770d82dd5f1180681a3da52fa746a61b2e2a591ac2269261cfd81ed2 Description: GNU C preprocessor (cpp) Multi-Arch: allowed Description-md5: aa450f6a454bdd6b0d8d9862a9240255 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cpp-4.7 Priority: optional Section: interpreters Installed-Size: 12827 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libc6 (>= 2.14), libcloog-ppl1, libgmp10, libmpc3, libmpfr4 (>= 3.1.2), libppl-c4, zlib1g (>= 1:1.1.4) Suggests: gcc-4.7-locales (>= 4.7.2-16) Filename: pool/main/g/gcc-4.7/cpp-4.7_4.7.3-12ubuntu1_amd64.deb Size: 4254188 MD5sum: 3e69b3b2042bb3fef804654e6aab3b67 SHA1: ff69dcb80c91fce202afe31426ff67bb66c707b5 SHA256: 1a1ba7be713112730352d52ac47108e5c39cb484e6f2d19088122d2280c1123b Description: GNU C preprocessor Homepage: http://gcc.gnu.org/ Description-md5: 93a75b5e1f4b43c36eba0239b6fab6a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.7-doc Priority: optional Section: doc Installed-Size: 550 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (>= 4.7.2-16), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.7/cpp-4.7-doc_4.7.3-12ubuntu1_all.deb Size: 175610 MD5sum: 88c41190b70236d09fd6663704b6a343 SHA1: 7ec16c07310513b311c7daa798e8e812155ccb44 SHA256: 7baa760c64bf5c0ec6172e59d0599926b7272c82f8fce5eea0e04556248fd357 Description: Documentation for the GNU C preprocessor (cpp) Homepage: http://gcc.gnu.org/ Description-md5: 22a9ba311e91d8d744a9e4df2030d2bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.8 Priority: optional Section: interpreters Installed-Size: 14100 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-locales (>= 4.8) Filename: pool/main/g/gcc-4.8/cpp-4.8_4.8.2-19ubuntu1_amd64.deb Size: 4439198 MD5sum: d80f3ce21e0dd6f2661c573720707ad9 SHA1: dfa420cf4db65dfde8dac98a43f7e34ca876a032 SHA256: 832dc4c38afd04c5d01c5dc7e74110b054ef2168f840c43d683e0d574a3cb91f Description: GNU C preprocessor Homepage: http://gcc.gnu.org/ Description-md5: 93a75b5e1f4b43c36eba0239b6fab6a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cpp-4.8-aarch64-linux-gnu Priority: extra Section: devel Installed-Size: 11703 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-locales (>= 4.8) Filename: pool/main/g/gcc-4.8-arm64-cross/cpp-4.8-aarch64-linux-gnu_4.8.2-13ubuntu1cross0.11_amd64.deb Size: 3895472 MD5sum: 63d8bf2ee6851d76355a84f634dec0df SHA1: 71d3c07c5bad018ee5529d138601fe7412783a8b SHA256: 700c9dd00869e68e9e95015c9a1193f2b7b5c2bf2ec63a409822195ca6513b59 Description: GNU C preprocessor Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 45f5a7d0ff0712ad443d07c2355c0a1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.8-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 14169 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-locales (>= 4.8) Filename: pool/main/g/gcc-4.8-armhf-cross/cpp-4.8-arm-linux-gnueabihf_4.8.2-16ubuntu4cross0.11_amd64.deb Size: 4667534 MD5sum: 930c0f7c603cd495713815a3155db98d SHA1: be15ebbee2c170b54414ea9bd1c449eb2974825a SHA256: 301fe7f57b9eabb39975bbfdd63b947c3e5627bcf46d172ccb7f50d745a50d78 Description: GNU C preprocessor Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 7f9493441e3cdf1166438a9959deefe1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.8-doc Priority: optional Section: doc Installed-Size: 551 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.8/cpp-4.8-doc_4.8.2-19ubuntu1_all.deb Size: 175874 MD5sum: 5740cae8e6078fa7d92ab7d7b1655141 SHA1: 84a3d473ec448faf2156c58ae32e1c0be774f256 SHA256: b556ef4df3207fe0d03f8450986e680f9a5e004e3baf36c905514ea9833f8c8a Description: Documentation for the GNU C preprocessor (cpp) Homepage: http://gcc.gnu.org/ Description-md5: 22a9ba311e91d8d744a9e4df2030d2bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.8-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 14682 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-locales (>= 4.8) Filename: pool/main/g/gcc-4.8-powerpc-cross/cpp-4.8-powerpc-linux-gnu_4.8.2-16ubuntu3cross0.11_amd64.deb Size: 4419756 MD5sum: e93a62dc3eb660c588a2fd4a665018f0 SHA1: a12f4c76db3a2e2bf8af8f3c732051c1063ce8e0 SHA256: 9931927f0cc93d68db43e12b028b9cdcfd52ab23d5c6882a925f0fc264005091 Description: GNU C preprocessor Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 4f91d407b8b7aa38dc64eff3ee27629c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.8-powerpc64le-linux-gnu Priority: extra Section: devel Installed-Size: 14682 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-locales (>= 4.8) Filename: pool/main/g/gcc-4.8-ppc64el-cross/cpp-4.8-powerpc64le-linux-gnu_4.8.2-16ubuntu4cross0.4_amd64.deb Size: 4575808 MD5sum: c7bfce64f339625ad70f9ec6a858d4d9 SHA1: 3995576ad3af5f49ab5356c970211da055811cf8 SHA256: 8a29bede846eff7268b352523442175e23d944174ee275198f1d4636f4136f7e Description: GNU C preprocessor Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 3c8dfbf0de7afc39cf0815e138362016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-aarch64-linux-gnu Priority: optional Section: interpreters Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-arm64-cross (0.4) Version: 4:4.8.2-1 Depends: cpp-4.8-aarch64-linux-gnu (>= 4.8.2-1) Suggests: cpp-doc Conflicts: cpp-4.4-aarch64-linux-gnu (<= 4.4.5-15~), cpp-4.5-aarch64-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-arm64-cross/cpp-aarch64-linux-gnu_4.8.2-1_amd64.deb Size: 1964 MD5sum: aaaf8ef17d568ac5f8b45f826eebe52c SHA1: 8f022a20338bd11f1d1c1f7513e433c4c9c5dcd7 SHA256: 93ca59fd9ec9fda1039703326c4a035273ddabe385916604224104df3d49e004 Description: The GNU C preprocessor (cpp) for arm64 architecture Description-md5: 6e957852a7f6cac226d33fd7f7b31252 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-arm-linux-gnueabihf Priority: optional Section: interpreters Installed-Size: 38 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-armhf-cross (1.16) Version: 4:4.8.2-1 Depends: cpp-4.8-arm-linux-gnueabihf (>= 4.8.2-1) Suggests: cpp-doc Conflicts: cpp-4.4-arm-linux-gnueabihf (<= 4.4.5-15~), cpp-4.5-arm-linux-gnueabihf (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-armhf-cross/cpp-arm-linux-gnueabihf_4.8.2-1_amd64.deb Size: 2524 MD5sum: 6f24c539f3d6bbb60ec79e907a4e6e88 SHA1: a173de25b6d36877a653654db54186432d2d2196 SHA256: 5de5833564851330700fa933358d84dc564dd5355a8023066fd5e5994a7640b4 Description: The GNU C preprocessor (cpp) for armhf architecture Description-md5: c20358ba520d7c2baa5f430290659867 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-doc Priority: optional Section: doc Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: cpp-4.8-doc (>= 4.8.2-5~) Suggests: cpp (>= 4:4.8.2-1ubuntu6) Filename: pool/main/g/gcc-defaults/cpp-doc_4.8.2-1ubuntu6_amd64.deb Size: 3500 MD5sum: b46aacf7a1e729c254e1f04f766d0aaa SHA1: 21ccbc91f3adb57b566ab0284c1df8d8ad824459 SHA256: 870e38f7cf5206cef568505fae7fa29a32474907c8f9515e8524c7da28c4b767 Description: Documentation for the GNU C preprocessor (cpp) Description-md5: bedc30e6ac711bb807bb5f49569e8b35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-powerpc-linux-gnu Priority: optional Section: interpreters Installed-Size: 37 Maintainer: Ubuntu Developers Architecture: amd64 Source: gcc-defaults-powerpc-cross (0.7) Version: 4:4.8.2-1 Depends: cpp-4.8-powerpc-linux-gnu (>= 4.8.2-1) Suggests: cpp-doc Conflicts: cpp-4.4-powerpc-linux-gnu (<= 4.4.5-15~), cpp-4.5-powerpc-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-powerpc-cross/cpp-powerpc-linux-gnu_4.8.2-1_amd64.deb Size: 1964 MD5sum: 51869d5744968024bf939643430a6ab6 SHA1: d5234164f741646fb76c670290bfbf1df395c9a4 SHA256: 6a0fd6b93ffa3296574a712064af1022a2b67eb5ad30bf574e71d613ba497612 Description: The GNU C preprocessor (cpp) for powerpc architecture Description-md5: 89245abafedbc05f3c9d982699229ef4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-powerpc64le-linux-gnu Priority: optional Section: interpreters Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-ppc64el-cross (0.2) Version: 4:4.8.2-1 Depends: cpp-4.8-powerpc64le-linux-gnu (>= 4.8.2-1) Suggests: cpp-doc Conflicts: cpp-4.4-powerpc64le-linux-gnu (<= 4.4.5-15~), cpp-4.5-powerpc64le-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-ppc64el-cross/cpp-powerpc64le-linux-gnu_4.8.2-1_amd64.deb Size: 1858 MD5sum: 47bba6cb383255eba53b6064b700ff55 SHA1: b53fb90a050c48bd5cf5e805ae5596a86b96434f SHA256: e0830e2790adf3f9f33226cd82de5377bea75c5c485f644863c630750e3ab0ed Description: The GNU C preprocessor (cpp) for ppc64el architecture Description-md5: eccbd0f1f8501d0309f3cdf37a1d2ada Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpu-checker Priority: optional Section: utils Installed-Size: 45 Maintainer: Kees Cook Architecture: amd64 Version: 0.7-0ubuntu4 Replaces: qemu-kvm (<< 0.12.3-0ubuntu13) Depends: msr-tools Conflicts: qemu-kvm (<< 0.12.3-0ubuntu13) Filename: pool/main/c/cpu-checker/cpu-checker_0.7-0ubuntu4_amd64.deb Size: 6834 MD5sum: 4369a69e41e5b78ab7a4623405455443 SHA1: 87c0a7787bcb013bedac85e2cdb909bfdc2cb263 SHA256: 6f9e724ab887a91ead1e588a97be216f716d8cf22b4805e85febbf3d4eea4826 Description: tools to help evaluate certain CPU (or BIOS) features Homepage: https://launchpad.net/cpu-checker Description-md5: c2cf9eeaa26a61213dc6270934083431 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: cracklib-runtime Priority: optional Section: admin Installed-Size: 613 Maintainer: Ubuntu Developers Original-Maintainer: Jan Dittberner Architecture: amd64 Source: cracklib2 Version: 2.9.1-1build1 Depends: file, libcrack2 (>= 2.9.1-1build1), libc6 (>= 2.4) Recommends: wamerican | wordlist Filename: pool/main/c/cracklib2/cracklib-runtime_2.9.1-1build1_amd64.deb Size: 137600 MD5sum: 91defb1567829447fa0342dac00ab46b SHA1: 4c4c603a9d6e15614fc74eb59bd9fb8e2cf07cb8 SHA256: 7fe149533d50b0a1e5c91f42cd5f9961fa031112403c683336fcc1bbcc5cdd8a Description: runtime support for password checker library cracklib2 Multi-Arch: foreign Homepage: http://sourceforge.net/projects/cracklib Description-md5: 735547e1edb1c58c3775b3a199b66896 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: cramfsprogs Priority: optional Section: utils Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian kernel team Architecture: amd64 Source: cramfs Version: 1.1-6build4 Replaces: mkcramfs Provides: mkcramfs Depends: libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Conflicts: mkcramfs Filename: pool/main/c/cramfs/cramfsprogs_1.1-6build4_amd64.deb Size: 21826 MD5sum: 96957102db95cb743b535627b14b1a9d SHA1: 24d569c3d929904b7a719105ff6cb2b13745d65b SHA256: a189a54809ea22d13e00ab522762eee11895676a929ec29f4debfe8dd6f9cc9f Description: Tools for CramFs (Compressed ROM File System) Description-md5: 84999f91c25bcc80c3b25c460b471672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: crash Priority: optional Section: utils Installed-Size: 7447 Maintainer: Ubuntu Developers Original-Maintainer: Troy Heber Architecture: amd64 Version: 7.0.3-3ubuntu2 Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libtinfo5, zlib1g (>= 1:1.2.0), binutils Suggests: kexec-tools, makedumpfile Filename: pool/main/c/crash/crash_7.0.3-3ubuntu2_amd64.deb Size: 2425748 MD5sum: 93277ee4b65e7bf58f1f69acaabd2975 SHA1: 31002763df3292e90c067ff6571665e4370be780 SHA256: d3492bb910078753efe6ee2d1cd116cc2ab30aea2e2cbb141b456c559ec10bd0 Description: kernel debugging utility, allowing gdb like syntax Description-md5: 62a3af04681a29149ddd988c1db996db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: crda Priority: optional Section: net Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Ben Hutchings Architecture: amd64 Version: 1.1.2-1ubuntu2 Replaces: wireless-crda (<< 1.15), wireless-regdb (= 2011.04.28-1ubuntu1), wireless-regdb (= 2011.04.28-1ubuntu2) Depends: libc6 (>= 2.4), libnl-3-200 (>= 3.2.7), libnl-genl-3-200 (>= 3.2.7), libssl1.0.0 (>= 1.0.0), wireless-regdb Recommends: iw Breaks: wireless-crda (<< 1.15), wireless-regdb (= 2011.04.28-1ubuntu1), wireless-regdb (= 2011.04.28-1ubuntu2) Filename: pool/main/c/crda/crda_1.1.2-1ubuntu2_amd64.deb Size: 15238 MD5sum: 32deec596ebb61ddb797eea98e4ef5c3 SHA1: f0e1d8d78765dcca7b426edbc379b85f0fc34e7f SHA256: 60a508d9e32161fbb5a6f8f31a7f06044e12f74061c85b1795b79d35550ec8c4 Description: wireless Central Regulatory Domain Agent Multi-Arch: foreign Homepage: http://wireless.kernel.org/en/developers/Regulatory/#CRDA Description-md5: 808a6a982a696519de07435805e6695e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: crmsh Priority: extra Section: admin Installed-Size: 1123 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: all Version: 1.2.5+hg1034-1ubuntu3 Replaces: pacemaker (<< 1.1.8-1) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-lxml Recommends: pacemaker (>= 1.1.8-1) Breaks: pacemaker (<< 1.1.8-1) Filename: pool/main/c/crmsh/crmsh_1.2.5+hg1034-1ubuntu3_all.deb Size: 256840 MD5sum: d9f6d3783786ff4de3fe908ef10ca3e8 SHA1: ff834b649542862ff093ca4d73c40e3fffc4d392 SHA256: 040d46c809c4c05cf9d1214072ba7478fd812f0ba50e72d095693db10648a494 Description: CRM shell for the pacemaker cluster manager Homepage: http://savannah.nongnu.org/projects/crmsh/ Description-md5: 8a58092e8c39ea609fa8214b76607d1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cron Priority: important Section: admin Installed-Size: 300 Maintainer: Ubuntu Developers Original-Maintainer: Maintainer: Javier Fernández-Sanguino Peña Architecture: amd64 Version: 3.0pl1-124ubuntu2 Provides: cron-daemon Depends: libc6 (>= 2.7), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), upstart-job, debianutils (>= 1.7), adduser, lsb-base (>= 3.0-10), libpam-runtime (>= 1.0.1-11) Pre-Depends: dpkg (>= 1.15.7.2) Suggests: anacron (>= 2.0-1), logrotate, checksecurity, exim4 | postfix | mail-transport-agent Breaks: dpkg (<< 1.15.4) Filename: pool/main/c/cron/cron_3.0pl1-124ubuntu2_amd64.deb Size: 81732 MD5sum: b737da756d7f398e52caf9f3a7c9acee SHA1: 59d82bbd87824f90162fbddafad94ec10db835a4 SHA256: 40fb20e8588676d056705e7888d61ad32f00ad8e0fad9ce20485044b68afe249 Description: process scheduling daemon Homepage: http://ftp.isc.org/isc/cron/ Description-md5: 7384e614068d48b9ac2335cb05added3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: crossbuild-essential-arm64 Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: build-essential Version: 11.6ubuntu6 Depends: libc6-dev:arm64, gcc-aarch64-linux-gnu (>= 4.7.2-3), g++-aarch64-linux-gnu (>= 4.7.2-3), pkg-config-aarch64-linux-gnu, dpkg-cross Filename: pool/main/b/build-essential/crossbuild-essential-arm64_11.6ubuntu6_all.deb Size: 4436 MD5sum: ce794e358d807785208bfa1d8bad6779 SHA1: 009f3503f5e2c22e7801fd3e26b534232dbcd180 SHA256: 7f8d7fca6e94577024c86052c20601ce94e9e86ec71b0e9d8aedb938b99f52db Description: Informational list of cross-build-essential packages Description-md5: 9b2629bcd07961cfcb27934f1371078a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: crossbuild-essential-armhf Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: build-essential Version: 11.6ubuntu6 Depends: libc6-dev:armhf, gcc-arm-linux-gnueabihf (>= 4.7.2-3), g++-arm-linux-gnueabihf (>= 4.7.2-3), pkg-config-arm-linux-gnueabihf, dpkg-cross Filename: pool/main/b/build-essential/crossbuild-essential-armhf_11.6ubuntu6_all.deb Size: 4438 MD5sum: 3d8f9a381bb09f0078e5378fed483404 SHA1: 42196a2661e4309ca74d1351871ae99633050fcc SHA256: 7aab41fbf4ee86a2554ffa5542d900e01e538006d797bb9ba3d0e6f4fccbf3bf Description: Informational list of cross-build-essential packages Description-md5: 9b2629bcd07961cfcb27934f1371078a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: crossbuild-essential-powerpc Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: build-essential Version: 11.6ubuntu6 Depends: libc6-dev:powerpc, gcc-powerpc-linux-gnu (>= 4.7.2-3), g++-powerpc-linux-gnu (>= 4.7.2-3), pkg-config-powerpc-linux-gnu, dpkg-cross Filename: pool/main/b/build-essential/crossbuild-essential-powerpc_11.6ubuntu6_all.deb Size: 4438 MD5sum: 100255572bc2ffcdac6abf92817b669c SHA1: c94597da71c9f720bf68fa2a2646bdeeb3b2aa78 SHA256: c32a4a91a82fc665f21a82cf4a473306cba1b5df7a9c3c5f5f3944fe93ae46e5 Description: Informational list of cross-build-essential packages Description-md5: 9b2629bcd07961cfcb27934f1371078a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: crossbuild-essential-ppc64el Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: build-essential Version: 11.6ubuntu6 Depends: libc6-dev:ppc64el, gcc-powerpc64le-linux-gnu (>= 4.7.2-3), g++-powerpc64le-linux-gnu (>= 4.7.2-3), pkg-config-powerpc64le-linux-gnu, dpkg-cross Filename: pool/main/b/build-essential/crossbuild-essential-ppc64el_11.6ubuntu6_all.deb Size: 4446 MD5sum: 0f1f6d68ccae10cd6f5ea198e15fc06f SHA1: 09f1816cf7cb8a2304528cb5acfc8fa863f0fa88 SHA256: 7deeba731553ae90e51b65806c69884aa97196cc84d3ffdf857f938dfb3084b8 Description: Informational list of cross-build-essential packages Description-md5: 9b2629bcd07961cfcb27934f1371078a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cryptsetup Priority: optional Section: admin Installed-Size: 347 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cryptsetup Team Architecture: amd64 Version: 2:1.6.1-1ubuntu1 Replaces: cryptsetup-luks, hashalot (<< 0.3-2) Provides: cryptsetup-luks Depends: libc6 (>= 2.15), debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), dmsetup, initramfs-tools (>= 0.91) | linux-initramfs-tool, plymouth, cryptsetup-bin Recommends: kbd, console-setup, busybox-static | busybox Suggests: dosfstools, liblocale-gettext-perl Conflicts: cryptsetup-luks Breaks: hashalot (<< 0.3-2) Filename: pool/main/c/cryptsetup/cryptsetup_1.6.1-1ubuntu1_amd64.deb Size: 115458 MD5sum: c9b3ea50aa7243de4db7b739c42b5211 SHA1: a40907ff48fcd934b78dee5cd8628c0bbee7903e SHA256: 3a25cd9e917dd9c930ed641617ba2ea72af5938bd6e0fd17a9c67979816f1ee8 Description: disk encryption support - startup scripts Homepage: http://code.google.com/p/cryptsetup/ Description-md5: 7d16ff8049ac55b58d616e4fc3a33f99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: cryptsetup-bin Priority: optional Section: admin Installed-Size: 264 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cryptsetup Team Architecture: amd64 Source: cryptsetup Version: 2:1.6.1-1ubuntu1 Replaces: cryptsetup (<< 2:1.4.1-2ubuntu2~) Depends: libc6 (>= 2.15), libcryptsetup4 (>= 2:1.6), libpopt0 (>= 1.14) Breaks: cryptsetup (<< 2:1.4.1-2ubuntu2~) Filename: pool/main/c/cryptsetup/cryptsetup-bin_1.6.1-1ubuntu1_amd64.deb Size: 80440 MD5sum: ae4ee141c87d2248af97a79c39ace7de SHA1: 9f3d3f38f23116fe4d863bd5c7d6280fe25a4e6e SHA256: 9bf52d586871268a6091bbd78eeca6da937463d819485a498683a45da7f9df83 Description: disk encryption support - command line tools Homepage: http://code.google.com/p/cryptsetup/ Description-md5: add9677f52cab4742cc168ac5534c9ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: cu Priority: extra Section: comm Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Richard A Nelson (Rick) Architecture: amd64 Source: uucp Version: 1.07-20.1 Replaces: uucp (<< 1.06.1+1.07beta1-patch2-1) Depends: libc6 (>= 2.15) Conflicts: uucp (<< 1.06.1+1.07beta1-patch2-1) Filename: pool/main/u/uucp/cu_1.07-20.1_amd64.deb Size: 72854 MD5sum: 7cf72d84bc081e12caf49ab7fe09f619 SHA1: e871f9205f4c59d29d4544459e80c3799aac50f5 SHA256: 9178fabbfd83ba7e288903112e07850a82dee1ed80944cfebbc8eff400b3b9d9 Description: call up another system Description-md5: 3be86ba2957547b80526914de84a5085 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: culmus Priority: optional Section: x11 Installed-Size: 2256 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: all Version: 0.130-1 Depends: xfonts-utils Filename: pool/main/c/culmus/culmus_0.130-1_all.deb Size: 1143794 MD5sum: 3b88fd215a6821022ac3601d916a6b5d SHA1: 301a1b48271f960e1f0f1a55ac3ce88fcdd1ca15 SHA256: 420369a314b487124c75a6874dfb671e31e495c88999d25d3418873afbfa23c8 Description: TrueType and Type1 Hebrew Fonts for X11 Homepage: http://culmus.sourceforge.net/ Description-md5: c74d0db338ef6e6969b558807c269bd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: cup Priority: optional Section: devel Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 0.11a+20060608-3build1 Depends: default-jre-headless | java1-runtime-headless | java2-runtime-headless Suggests: java-compiler Filename: pool/main/c/cup/cup_0.11a+20060608-3build1_all.deb Size: 120102 MD5sum: 83c30d2acc7ab453427509fbde2c18a7 SHA1: 03ae9a17248c70a0e7973ddf7a9a092ed590de4d SHA256: 3c46acbe632cec7750737e4fd53e531eb9570687a24364af24d1cfa5cedf7806 Description: LALR parser generator for Java(tm) Homepage: http://www2.cs.tum.edu/projects/cup/ Description-md5: e17ebf4be9cb3dd50e987f7295bcd089 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cups Priority: optional Section: net Installed-Size: 832 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Version: 1.7.2-0ubuntu1 Replaces: ghostscript-cups (<< 9.02~) Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.16), libcups2 (= 1.7.2-0ubuntu1), libcupscgi1 (>= 1.4.2), libcupsimage2 (>= 1.4.0), libcupsmime1 (>= 1.4.0), libcupsppdc1 (>= 1.4.0), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libusb-1.0-0 (>= 2:1.0.8), debconf (>= 1.2.9) | debconf-2.0, libc-bin (>= 2.13), cups-core-drivers (>= 1.7.2-0ubuntu1), cups-daemon (>= 1.7.2-0ubuntu1), poppler-utils (>= 0.12), procps, ghostscript (>= 9.02~), lsb-base (>= 3.2-14~), cups-common (>= 1.7.2-0ubuntu1), cups-server-common (>= 1.7.2-0ubuntu1), cups-client (>= 1.7.2-0ubuntu1), cups-ppdc, cups-filters (>= 1.0.24-3~) Recommends: avahi-daemon, colord, cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0), printer-driver-gutenprint, cups-filters (>= 1.0.36) | ghostscript-cups (>= 9.02~) Suggests: cups-bsd, foomatic-db-compressed-ppds | foomatic-db, printer-driver-hpcups, hplip, cups-pdf, udev, smbclient Breaks: foomatic-filters (<< 4.0), ghostscript-cups (<< 9.02~) Filename: pool/main/c/cups/cups_1.7.2-0ubuntu1_amd64.deb Size: 184328 MD5sum: ed0307d980ba347956899767b7f25f24 SHA1: e5595d2145dbb82f13d46e2edaf518e6abde99c7 SHA256: 49be0e4ad469a048a2529986022e2d8d654df1932553e572bf3066ec77e91e0e Description: Common UNIX Printing System(tm) - PPD/driver support, web interface Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: 757338adad655b8f7da62fcd23ed6453 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-browsed Priority: optional Section: net Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups-filters Version: 1.0.52-0ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.4), libcups2 (>= 1.6.0), libglib2.0-0 (>= 2.14.0), init-system-helpers (>= 1.13~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Recommends: avahi-daemon (>= 0.6.31-3~) Breaks: cups-daemon (<< 1.6.4) Filename: pool/main/c/cups-filters/cups-browsed_1.0.52-0ubuntu1_amd64.deb Size: 49078 MD5sum: a7717fd6edab593905abff626b89b0d4 SHA1: 90b70351beb03123448f6072a2091d95cdc7046f SHA256: 4f605c9ef68691a1964dea7589d65398cdd8303d81fb7a620fc7e706e71484fa Description: OpenPrinting CUPS Filters - cups-browsed Enhances: cups Homepage: http://www.openprinting.org/ Description-md5: 6841b0cfd74741276406b0948b8f9867 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-bsd Priority: extra Section: net Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Replaces: lpr Provides: lpr Depends: libc6 (>= 2.4), libcups2 (>= 1.6.2), debconf (>= 0.5) | debconf-2.0, cups-client (= 1.7.2-0ubuntu1), update-inetd, cups-common (>= 1.7.2-0ubuntu1) Suggests: cups Conflicts: lpr, lprng Filename: pool/main/c/cups/cups-bsd_1.7.2-0ubuntu1_amd64.deb Size: 26634 MD5sum: d5e2dbad338fb8b5f09f97c494a7170e SHA1: 60f09f68e3f31f166060502caf32142ef9eb1e4d SHA256: 828d3fbdfa42130d568eaece27da31f38d314806f57a8ca398769628f0753b5a Description: Common UNIX Printing System(tm) - BSD commands Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: 8ca999eda442e2096dafa2745e4db8de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-client Priority: optional Section: net Installed-Size: 1039 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.14), libcups2 (= 1.7.2-0ubuntu1), libcupsimage2 (>= 1.4.0), cups-common (>= 1.7.2-0ubuntu1), adduser Recommends: smbclient Suggests: cups, xpp, cups-bsd Conflicts: lprng Filename: pool/main/c/cups/cups-client_1.7.2-0ubuntu1_amd64.deb Size: 195730 MD5sum: 71b36082ce4bd4a115b5ad67302a70e5 SHA1: f94adb89d6bd2b6c2ac247d360858a6cc21d96cf SHA256: ee222f1e7ab04f7d58a2da88b16cd05641c375e5acd0bcdabf6925dd789e3e75 Description: Common UNIX Printing System(tm) - client programs (SysV) Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: 49064ce8151bc5cfbb65936322a4e2ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-common Priority: optional Section: net Installed-Size: 1652 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: cups Version: 1.7.2-0ubuntu1 Filename: pool/main/c/cups/cups-common_1.7.2-0ubuntu1_all.deb Size: 160238 MD5sum: 1e2e77b500fa601f137acc88dfb8ee9a SHA1: 8cf5c372f7ba532767a97163eaf7e28af7d90457 SHA256: e8a44aca28bb82c4a1ea46bc9a53b4d2bd11112e08770da6e004154c74594750 Description: Common UNIX Printing System(tm) - common files Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: ae28e55960aa62a85c88769b70d73eaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-core-drivers Priority: optional Section: net Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Replaces: cups (<< 1.7.1-4~) Depends: libc6 (>= 2.4), libcups2 (= 1.7.2-0ubuntu1), cups-daemon (>= 1.7.2-0ubuntu1), cups-filters-core-drivers (>= 1.0.24-3~) Recommends: avahi-daemon Breaks: cups (<< 1.7.1-4~) Filename: pool/main/c/cups/cups-core-drivers_1.7.2-0ubuntu1_amd64.deb Size: 25546 MD5sum: ec2896eaabff9dd898a4341f3e7bd693 SHA1: 31bdc13c64c0c8f1fd40318494594a07263a90d9 SHA256: bde0d149248cdbf0d2d3ab189c0ec512d7e48cbff8a19603032819a6b1cfff4c Description: Common UNIX Printing System(tm) - PPD-less printing Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: ce54982db957a747e5a00eb03d0acd3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-daemon Priority: optional Section: net Installed-Size: 950 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Replaces: cups (<< 1.6.1-1~) Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.15), libcups2 (= 1.7.2-0ubuntu1), libcupsmime1 (>= 1.5.0), libdbus-1-3 (>= 1.0.2), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), libpam0g (>= 0.99.7.1), libpaper1, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), procps, lsb-base (>= 3), ssl-cert (>= 1.0.11), adduser, bc Pre-Depends: dpkg (>= 1.15.7.2) Recommends: colord, cups-browsed Suggests: cups, cups-bsd, cups-common (>= 1.7.2-0ubuntu1), cups-server-common (>= 1.7.2-0ubuntu1), cups-client (>= 1.7.2-0ubuntu1), cups-ppdc, cups-filters, poppler-utils (>= 0.12), ghostscript (>= 9.02~), cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0), foomatic-db-compressed-ppds | foomatic-db, printer-driver-gutenprint, printer-driver-hpcups, hplip, cups-pdf, udev, smbclient Breaks: cups (<< 1.6.1-1~) Filename: pool/main/c/cups/cups-daemon_1.7.2-0ubuntu1_amd64.deb Size: 267358 MD5sum: 7b9b75428d598d28fc35035a76eea7ec SHA1: f205fc0d64a92d5c18ab65ce28b9596886914b05 SHA256: b360629eeda1bc98098b0d5236ad3488a249c9ba29068639b16efab9516946dd Description: Common UNIX Printing System(tm) - daemon Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: 559bf8b849cd67e4ad13a2a638aea615 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-dbg Priority: extra Section: libdevel Installed-Size: 2833 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: cups-daemon (= 1.7.2-0ubuntu1) Filename: pool/main/c/cups/cups-dbg_1.7.2-0ubuntu1_amd64.deb Size: 2024242 MD5sum: a414e0ba1aac3eb84158ff34b66966c5 SHA1: d0aa3cbfba8d6119b3ec0ec00e3ce5f07c65b4c7 SHA256: e84709ebf839bc56e41f6ddcdac77c4e7f97a5d7bd34ef7cb4ab7f8dffcc3f46 Description: Common UNIX Printing System(tm) - debugging symbols Homepage: http://www.cups.org Description-md5: 45781fd5891c0e6a36e3f989431c7203 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cups-driver-gutenprint Priority: optional Section: graphics Installed-Size: 21 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: all Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Depends: printer-driver-gutenprint Filename: pool/main/g/gutenprint/cups-driver-gutenprint_5.2.10~pre2-0ubuntu2_all.deb Size: 1402 MD5sum: d4fa73cf73da79a6a213d5f0c6eaf347 SHA1: d8f8f9c1930a0711aa91efd3365964daea9146bb SHA256: e23904a9d565da31cfee2c01471bcfafd38659d1a7a6b5fa3620349f62b38b58 Description: transitional dummy package for gutenprint printer driver Description-md5: 3d2831c87978ed0cc0cc99648dd71da8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: print-server, lubuntu-desktop, ubuntustudio-desktop Package: cups-filters Priority: optional Section: net Installed-Size: 1474 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Version: 1.0.52-0ubuntu1 Replaces: cups (<< 1.5.0-16), cups-common (<< 1.5.0-16), cups-ppdc (<< 1.6), foomatic-filters, ghostscript-cups Provides: foomatic-filters, ghostscript-cups Depends: libc6 (>= 2.15), libcups2 (>= 1.4.0), libcupsfilters1 (>= 1.0.42), libcupsimage2 (>= 1.4.0), libfontconfig1 (>= 2.9.0), libfontembed1 (>= 1.0.31), libgcc1 (>= 1:4.1.1), libijs-0.35 (>= 0.35), libpoppler44 (>= 0.24.5), libqpdf13 (>> 5.0.0~), libstdc++6 (>= 4.1.1), cups-filters-core-drivers (>= 1.0.52-0ubuntu1), bc, ghostscript (>= 9.02~) Recommends: colord Suggests: foomatic-db-compressed-ppds | foomatic-db Conflicts: foomatic-filters, ghostscript-cups Breaks: cups (<< 1.5.0-16), cups-common (<< 1.5.0-16), cups-ppdc (<< 1.6) Filename: pool/main/c/cups-filters/cups-filters_1.0.52-0ubuntu1_amd64.deb Size: 435786 MD5sum: 243e0b228ed7cc4b6a1ffb6d5085e54c SHA1: 1daa5fcd23c66d201fc5008df7bbbfead22e734a SHA256: d4bd2ea90f614c8911df4a81414b488199093219bfaf3f103dffffc159f51c7a Description: OpenPrinting CUPS Filters - Main Package Homepage: http://www.openprinting.org/ Description-md5: 3904eb1f4e7435cb00f37604454e097a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-filters-core-drivers Priority: optional Section: net Installed-Size: 364 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups-filters Version: 1.0.52-0ubuntu1 Replaces: cups (<< 1.5.0-16), cups-filters (<< 1.0.44-1~) Depends: libc6 (>= 2.14), libcups2 (>= 1.7.0), libcupsfilters1 (>= 1.0.36), libcupsimage2 (>= 1.4.0), libgcc1 (>= 1:4.1.1), liblcms2-2 (>= 2.2+git20110628), libpoppler44 (>= 0.24.5), libqpdf13 (>> 5.0.0~), libstdc++6 (>= 4.4.0), bc, poppler-utils Breaks: cups (<< 1.5.0-16), cups-filters (<< 1.0.44-1~) Filename: pool/main/c/cups-filters/cups-filters-core-drivers_1.0.52-0ubuntu1_amd64.deb Size: 92608 MD5sum: 8a5ba81b17b0464b93fe5725c9ab368e SHA1: 8118abb245a5d1f69222322044e4ac61d27b9250 SHA256: 1db595a09d29c35d88489b885bc988e3224b66b37675f7251671fb7f532c02bf Description: OpenPrinting CUPS Filters - PPD-less printing Homepage: http://www.openprinting.org/ Description-md5: 67465907d5010e764cd27bef007a9ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-pk-helper Priority: extra Section: gnome Installed-Size: 304 Maintainer: Ubuntu Developers Original-Maintainer: Guido Günther Architecture: amd64 Version: 0.2.5-0ubuntu1 Depends: libc6 (>= 2.4), libcups2 (>= 1.6.0), libglib2.0-0 (>= 2.31.8), libpolkit-gobject-1-0 (>= 0.99) Filename: pool/main/c/cups-pk-helper/cups-pk-helper_0.2.5-0ubuntu1_amd64.deb Size: 58756 MD5sum: bb8b85f230083be1f33f526482a8a0c6 SHA1: 5744e353711c997c208f8c5a5e20d80e75dc3749 SHA256: 87f80b5cd395dc284c3682ed416522607a1725fa5b6dc3df5c40a1afa4c27c78 Description: PolicyKit helper to configure cups with fine-grained privileges Homepage: http://www.freedesktop.org/wiki/Software/cups-pk-helper Description-md5: 99cdef8011b592b6ad8076a155343c2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: cups-ppdc Priority: optional Section: net Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libc6 (>= 2.4), libcups2 (>= 1.6.2), libcupsppdc1 (>= 1.4.0), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), cups-common (>= 1.7.2-0ubuntu1) Filename: pool/main/c/cups/cups-ppdc_1.7.2-0ubuntu1_amd64.deb Size: 25484 MD5sum: e76314e0444ea067dbcbb11f8ddb57c0 SHA1: d57f81d65d39e3985d63b2a982b6c7900445a4c7 SHA256: d4eae51ccc295d4b74cfcb93b187e0f89e1024bdbdeac2b57443d7fc3b8efab4 Description: Common UNIX Printing System(tm) - PPD manipulation utilities Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: ba3fa27bc468a14b73280f189057f4e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-server-common Priority: optional Section: net Installed-Size: 2692 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: cups Version: 1.7.2-0ubuntu1 Replaces: cups (<< 1.6.2-2~), cups-common (<< 1.7.0) Breaks: cups (<< 1.6.2-2~), cups-common (<< 1.7.0) Filename: pool/main/c/cups/cups-server-common_1.7.2-0ubuntu1_all.deb Size: 511712 MD5sum: e14d4e968345cb166a64ea4d9962b2bb SHA1: dc30249a7a12eafd588850412fcc17be05c1a11d SHA256: 6b31917b59a9bdc0ef7fcbf67a3f69d0a6c0f0c504f2d75c0baa768c6fca9e81 Description: Common UNIX Printing System(tm) - server common files Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: 78d6321e2b482147d6a44eac119c72bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: curl Priority: optional Section: web Installed-Size: 306 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Version: 7.35.0-1ubuntu2 Depends: libc6 (>= 2.17), libcurl3 (= 7.35.0-1ubuntu2), zlib1g (>= 1:1.1.4) Filename: pool/main/c/curl/curl_7.35.0-1ubuntu2_amd64.deb Size: 123126 MD5sum: b15d41f5dbe8fd8de792918bd572f29f SHA1: 3c4819f104cc634352e67bde6cb1555fccbb643c SHA256: a39d55484365b619e9f7080b0b38264e9662f459632798c327afb21d20d510ab Description: command line tool for transferring data with URL syntax Multi-Arch: foreign Homepage: http://curl.haxx.se Description-md5: f83293d10df083ae6f7bb7d01642913c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: curtin-common Priority: extra Section: admin Installed-Size: 60 Maintainer: Ubuntu Developers Architecture: all Source: curtin Version: 0.1.0~bzr126-0ubuntu1 Depends: util-linux (>= 2.20.1-1ubuntu3) Conflicts: curtin (<= 0.1.0~bzr54-0ubuntu1) Filename: pool/main/c/curtin/curtin-common_0.1.0~bzr126-0ubuntu1_all.deb Size: 8784 MD5sum: 6a3b3f5e03c55d143ca7819a8dcb3bd2 SHA1: 8da6d4534db85401b69e85b68814eda938e8e209 SHA256: b9889373cc1a2e0ca6ab609475e3d32d38a198ec7dc931c90324e7a214a6f5aa Description: Library and tools for curtin installer Homepage: http://launchpad.net/curtin Description-md5: b24ac6ac0cf9c430ccd5e7cc40c446ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cvs Priority: optional Section: devel Installed-Size: 4127 Maintainer: Ubuntu Developers Original-Maintainer: Thorsten Glaser Architecture: amd64 Version: 2:1.12.13+real-12 Replaces: cvs-doc Provides: cvs-doc Depends: libbsd0 (>= 0.0), libc6 (>= 2.17), libgssapi-krb5-2 (>= 1.10+dfsg~), libkrb5-3 (>= 1.6.dfsg.2), zlib1g (>= 1:1.1.4), adduser, dpkg (>= 1.15.4) | install-info Recommends: openssh-client Suggests: mksh (>= 40~), rcs Conflicts: cvs-doc Filename: pool/main/c/cvs/cvs_1.12.13+real-12_amd64.deb Size: 2325824 MD5sum: 3cb051956034eb762458f09c4acc3b2b SHA1: 9ad6ef1c891b6089090f1e2cc7e090c3a7dfc0ed SHA256: 29adb5c06bc06b328c298a98da5715a13e626c8a960c95982229e6a56d503a2d Description: Concurrent Versions System Multi-Arch: foreign Homepage: http://www.nongnu.org/cvs/ Description-md5: 62e6daa6a4968f3b8a09c5e8724afc0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cvsps Priority: optional Section: devel Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Version: 2.1-6build1 Depends: libc6 (>= 2.14), zlib1g (>= 1:1.1.4), cvs Filename: pool/main/c/cvsps/cvsps_2.1-6build1_amd64.deb Size: 45204 MD5sum: 9e97b0bccb3eb113a63ca2d1afaecc23 SHA1: 3955fb7e9708d0474070f4dd41f9975fa0f0a366 SHA256: df1afbfefeb9af78c00ee988bffe64c24cab25b9bdc257607034918ef7c23d54 Description: Tool to generate CVS patch set information Description-md5: 4a043ea6c8515d03de2571bcffdceb1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cyrus-sasl2-dbg Priority: extra Section: libdevel Installed-Size: 1053 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: amd64 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libsasl2-2 (= 2.1.25.dfsg1-17build1) Recommends: cyrus-sasl2-mit-dbg | cyrus-sasl2-heimdal-dbg Filename: pool/main/c/cyrus-sasl2/cyrus-sasl2-dbg_2.1.25.dfsg1-17build1_amd64.deb Size: 805754 MD5sum: b1937d2526643268884fddfbbe92c4d0 SHA1: 8a852f3025982772e9741420c6d84676ba8b4cb5 SHA256: 5a5835f6a877d8cf1100717d586515f312e83ec8e8e9f61d1246b44f7df65192 Description: Cyrus SASL - debugging symbols Homepage: http://www.cyrusimap.org/ Description-md5: 1dd80585b22a821c1f59f219462ebb5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cyrus-sasl2-doc Priority: optional Section: doc Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: all Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Filename: pool/main/c/cyrus-sasl2/cyrus-sasl2-doc_2.1.25.dfsg1-17build1_all.deb Size: 61982 MD5sum: b96745eeedff618918d4853cce2249d1 SHA1: 6c0fe35e0b716a94b6217ea5c664a0e253c6dcfa SHA256: 1e8e79959ca1198686ed715f0640ff9eb45c56782ad8d8a2193293e12080be3a Description: Cyrus SASL - documentation Homepage: http://www.cyrusimap.org/ Description-md5: d7d08ebfc592e9842e2cf44e2e6633b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cyrus-sasl2-heimdal-dbg Priority: extra Section: debug Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: amd64 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: cyrus-sasl2-dbg (= 2.1.25.dfsg1-17build1), libsasl2-modules-gssapi-heimdal (= 2.1.25.dfsg1-17build1) Conflicts: cyrus-sasl2-mit-dbg Filename: pool/main/c/cyrus-sasl2/cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-17build1_amd64.deb Size: 37064 MD5sum: d32c4889613877db35847fd5afe45d41 SHA1: 98318277298b43c180de09975acdfd039fa54ff4 SHA256: da0e00bf2f479db83fb9a0668ea63ff99ab674372062cf816297b35e0c5033a0 Description: Cyrus SASL - debugging symbols for Heimdal modules Homepage: http://www.cyrusimap.org/ Description-md5: d92a4bc29c5a0f1499816117127e70f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cyrus-sasl2-mit-dbg Priority: extra Section: debug Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: amd64 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: cyrus-sasl2-dbg (= 2.1.25.dfsg1-17build1), libsasl2-modules-gssapi-mit (= 2.1.25.dfsg1-17build1) Conflicts: cyrus-sasl2-heimdal-dbg Filename: pool/main/c/cyrus-sasl2/cyrus-sasl2-mit-dbg_2.1.25.dfsg1-17build1_amd64.deb Size: 36682 MD5sum: 856e2e29242b627356843305559708c6 SHA1: bb87a911246bed64be3031420c4a0e5acdaa6a97 SHA256: e7f7fd3416d56e5b89126dbd5e440805ad47a6d6990d72774173fbef51e735dd Description: Cyrus SASL - debugging symbols for MIT modules Homepage: http://www.cyrusimap.org/ Description-md5: 281cc95397fa0a6eb002c5962230b180 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cython Priority: optional Section: python Installed-Size: 6327 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: amd64 Version: 0.20.1+git90-g0e6e38e-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4) Recommends: python-dev, gcc Filename: pool/main/c/cython/cython_0.20.1+git90-g0e6e38e-1ubuntu2_amd64.deb Size: 1347442 MD5sum: 5e16bc066bcb35f388c00cb9d91d1a9d SHA1: ec3cd7a1febc685f13e0e3a8f979652ceccf1ac8 SHA256: 6b4d0f557646c34143e0137e95424ee2fe5a986dfc5819979a05add1e7aec3d3 Description: C-Extensions for Python Homepage: http://cython.org/ Description-md5: 8c2f4ce3deabcb6941dffa8d5f424759 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cython-dbg Priority: extra Section: debug Installed-Size: 18181 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: amd64 Source: cython Version: 0.20.1+git90-g0e6e38e-1ubuntu2 Depends: libc6 (>= 2.4), cython (= 0.20.1+git90-g0e6e38e-1ubuntu2) Filename: pool/main/c/cython/cython-dbg_0.20.1+git90-g0e6e38e-1ubuntu2_amd64.deb Size: 3348834 MD5sum: 0602898f20247ec665a1e3577a1bb195 SHA1: 1e9240da234990b78b3214a4069a382bf62b691d SHA256: c998336debd4b21146460dc181f2bf8286896fc3489cc276a74246589424f872 Description: C-Extensions for Python - debug build Homepage: http://cython.org/ Description-md5: 831a0dd08543e9409273899064e59998 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cython-doc Priority: optional Section: doc Installed-Size: 2035 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: all Source: cython Version: 0.20.1+git90-g0e6e38e-1ubuntu2 Depends: libjs-jquery, libjs-underscore Suggests: cython Filename: pool/main/c/cython/cython-doc_0.20.1+git90-g0e6e38e-1ubuntu2_all.deb Size: 358824 MD5sum: d5cff01dbdc1b96ce07176565bcf5c49 SHA1: f0dfce90f63656097b1dc52dc5938d30df372ad2 SHA256: c40209ac422caee3c25971691a6d12e9e60cc0bdfe26adbeed81b941ef14226a Description: C-Extensions for Python - documentation Homepage: http://cython.org/ Description-md5: b98326e90960af4cacb6e6e5f189b186 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cython3 Priority: optional Section: python Installed-Size: 6348 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: amd64 Source: cython Version: 0.20.1+git90-g0e6e38e-1ubuntu2 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4) Recommends: python3-dev, gcc Filename: pool/main/c/cython/cython3_0.20.1+git90-g0e6e38e-1ubuntu2_amd64.deb Size: 1350108 MD5sum: 031b6b9de750437992ba27f9092b69df SHA1: 5898ed0c2b3d36eec8e6beb5600e263425e3177c SHA256: ef5fb91fcc13106ee6c7ddcf47c8a8067f7c8ac1f45baf60f327c870ea7ad7d4 Description: C-Extensions for Python 3 Homepage: http://cython.org/ Description-md5: b3e5d225e2a7bc6b2e277f244314026c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cython3-dbg Priority: extra Section: debug Installed-Size: 22031 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: amd64 Source: cython Version: 0.20.1+git90-g0e6e38e-1ubuntu2 Depends: libc6 (>= 2.4), cython3 (= 0.20.1+git90-g0e6e38e-1ubuntu2) Filename: pool/main/c/cython/cython3-dbg_0.20.1+git90-g0e6e38e-1ubuntu2_amd64.deb Size: 4016060 MD5sum: 0ffe6dc448d360430457dae96adf79a0 SHA1: 7da5384715340c2b40c172085485b66faf92e111 SHA256: 04d332f220212a997265038232106960c065b3f3da614b8ed51fd68b25efd8c9 Description: C-Extensions for Python 3 - debug build Homepage: http://cython.org/ Description-md5: 520b1a6dd2231aab1f97775233a2363a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: d-shlibs Priority: optional Section: utils Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Smedegaard Architecture: all Version: 0.54ubuntu1 Depends: binutils, apt Filename: pool/main/d/d-shlibs/d-shlibs_0.54ubuntu1_all.deb Size: 10112 MD5sum: d897538a499b1c205c9bf5cbfe680e1f SHA1: 49f9e602a44e22c4303239360d814b956872e88a SHA256: 041a0a2aead0f50f286991e1b64a397ffb5d6a8388c65a5fde4d3a9ef4180f68 Description: Debian shared library package building helper scripts Description-md5: 466a25946a61d311253c205f77544680 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dash Essential: yes Priority: required Section: shells Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: amd64 Version: 0.5.7-4ubuntu1 Depends: debianutils (>= 2.15), dpkg (>= 1.15.0) Pre-Depends: libc6 (>= 2.14) Filename: pool/main/d/dash/dash_0.5.7-4ubuntu1_amd64.deb Size: 85072 MD5sum: bc4e7234842e533d98295faf559e86c2 SHA1: ce8e8a858783d4a02ba1ca98c2d5cea6525f73c1 SHA256: 5befdfa1b3adc0c41e43d4fa1b3c960efe54f170d434c85d94012611024c6069 Description: POSIX-compliant shell Homepage: http://gondor.apana.org.au/~herbert/dash/ Description-md5: 8d4d9c32c6b2b70328f7f774a0cc1248 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: datefudge Priority: optional Section: devel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: amd64 Version: 1.18ubuntu3 Depends: libc6 (>= 2.2.5) Pre-Depends: multiarch-support Filename: pool/main/d/datefudge/datefudge_1.18ubuntu3_amd64.deb Size: 7784 MD5sum: 60e02d0ea61cc27889f7982b878dc2fb SHA1: 872b7e071edfc8060d7c7abd49bfd6090492d383 SHA256: 4db448591d67bde3ed6f32134b8eabaaec757f4b1d3cbd85aa0cdb1ffb70d63f Description: Fake the system date Multi-Arch: same Description-md5: 90d216207ae2ffe441dfbc9f8a57f5df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: db-util Priority: extra Section: utils Installed-Size: 38 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: all Source: db-defaults Version: 1:5.3.21~exp1ubuntu1 Depends: db5.3-util Filename: pool/main/d/db-defaults/db-util_5.3.21~exp1ubuntu1_all.deb Size: 2724 MD5sum: 73011b8b5e7d63e07e7c5ae8d81a08a2 SHA1: 1c4455cd9664b8909dfbf5ce22bb2914b568345d SHA256: 116f57f7d107d484544256c0d9308161ad004307af46884469d4fda1038172a5 Description: Berkeley Database Utilities Description-md5: d85ea68b5af48dcbdc0e4173be4d602d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: db5.3-doc Priority: optional Section: doc Installed-Size: 75305 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: all Source: db5.3 Version: 5.3.28-3ubuntu3 Filename: pool/main/d/db5.3/db5.3-doc_5.3.28-3ubuntu3_all.deb Size: 19033424 MD5sum: 9ec133493fb3818c268071050dcd8a41 SHA1: c1f7a3cb91d72eeef559ccbd695bf34ab8fff677 SHA256: 58ed58d86466d71a693831a3fc918c7b8a07317990db4c95336c65ce9400c215 Description: Berkeley v5.3 Database Documentation [html] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 2826975d4a00b1b8491b8c516aaecf66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: db5.3-util Priority: optional Section: database Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.14), libdb5.3 Filename: pool/main/d/db5.3/db5.3-util_5.3.28-3ubuntu3_amd64.deb Size: 63630 MD5sum: 609ede7c6cbe20adf5fa23e8ab347ef9 SHA1: edec24ee4f8d539494d7fc2c876be251a23898fe SHA256: 1df1a762c19d1426727fcf380aed8c9f2db9d69136bf0d437527577748214ffc Description: Berkeley v5.3 Database Utilities Multi-Arch: foreign Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 4415a3b6c387cfe327a0d463376221c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dbconfig-common Priority: optional Section: admin Installed-Size: 1180 Maintainer: Ubuntu Developers Original-Maintainer: Sean Finney Architecture: all Version: 1.8.47+nmu1 Depends: ucf (>= 0.28), debconf (>= 0.5) | debconf-2.0 Suggests: virtual-mysql-client | mysql-client | postgresql-client Filename: pool/main/d/dbconfig-common/dbconfig-common_1.8.47+nmu1_all.deb Size: 467850 MD5sum: 5193d53a4fa411be8f40f2e4d4d134c4 SHA1: 17999aecea80f69cfb01d6bcf35d288a5a8cf157 SHA256: a07c3a741c41c34306fac4ea6145d42517b8b9e34cbd164d73839e34b23f11a3 Description: common framework for packaging database applications Description-md5: 9186eecaccc3c493ebe2ca055eea8697 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dblatex Priority: optional Section: text Installed-Size: 6800 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Hoenen Architecture: all Version: 0.3.4-3build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), docbook-xml, xsltproc, python-apt (>= 0.7.91), texlive (>= 2009), texlive-bibtex-extra (>= 2009), texlive-latex-extra (>= 2009), texlive-math-extra (>= 2009), texlive-extra-utils (>= 2009) Recommends: libxml2-utils Suggests: docbook, ghostscript, graphicsmagick-imagemagick-compat | imagemagick, latex-cjk-all, lmodern, opensp, pdf-viewer, texlive-lang-cyrillic (>= 2009), texlive-xetex (>= 2009), transfig Filename: pool/main/d/dblatex/dblatex_0.3.4-3build1_all.deb Size: 1405122 MD5sum: b10a74ef95a43fcd6707d9f889be7e64 SHA1: 8c6ce41fe7279d220e9fe7724bcbeba33fb92e3d SHA256: 59b631bc2a2bdf59539890ef804a483957bc085ead40422537c22500e88f8abd Description: Produces DVI, PostScript, PDF documents from DocBook sources Homepage: http://dblatex.sourceforge.net/ Description-md5: 15cf88c884f1b5720fc344f3f77ffa0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dbus Priority: standard Section: devel Installed-Size: 973 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Version: 1.6.18-0ubuntu4 Depends: libapparmor1 (>= 2.8.94-0ubuntu1), libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libexpat1 (>= 2.0.1), libselinux1 (>= 1.32), libsystemd-login0 (>= 31), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), adduser, lsb-base (>= 3.2-14), upstart (>= 0.6.3-6), netbase (>= 4.45ubuntu3) Recommends: libpam-systemd Suggests: dbus-x11 Breaks: unity-services (<< 6.0.0-0ubuntu6) Filename: pool/main/d/dbus/dbus_1.6.18-0ubuntu4_amd64.deb Size: 224798 MD5sum: 4546b0ee07097d0c310460996d76bb12 SHA1: 631d6b8769ce5a6b82383e143d1bb3b8b489126c SHA256: fe8624b97242a6e7c0f6f54145739e6c5e7a50a03321f522c92afb5e0a9ee83f Description: simple interprocess messaging system (daemon and utilities) Multi-Arch: foreign Homepage: http://dbus.freedesktop.org/ Description-md5: 8317e43242716ec7f7692a3ac5895e1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: dbus-1-dbg Priority: extra Section: debug Installed-Size: 6127 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: dbus Version: 1.6.18-0ubuntu4 Depends: libdbus-1-3 (= 1.6.18-0ubuntu4), dbus (= 1.6.18-0ubuntu4), dbus-x11 (= 1.6.18-0ubuntu4), libapparmor1 (>= 2.8.94-0ubuntu1), libc6 (>= 2.15), libexpat1 (>= 2.0.1), libselinux1 (>= 1.32), libsystemd-login0 (>= 31), libx11-6 Filename: pool/main/d/dbus/dbus-1-dbg_1.6.18-0ubuntu4_amd64.deb Size: 3201050 MD5sum: 54f53b9cd80b8310626e058523e4eb66 SHA1: 16526a833ddfb1f09159c135317a73416d853044 SHA256: 01c46b861895218c7c639d48cc1b435c068f2d70674152716f6bae514d2e3739 Description: simple interprocess messaging system (debug symbols) Homepage: http://dbus.freedesktop.org/ Description-md5: 8e652fad9ff7afdabd20cb27b87476a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dbus-1-doc Priority: optional Section: doc Installed-Size: 20692 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: dbus Version: 1.6.18-0ubuntu4 Suggests: libdbus-1-dev Filename: pool/main/d/dbus/dbus-1-doc_1.6.18-0ubuntu4_all.deb Size: 1289458 MD5sum: 46b3472ab4bb364d1a45dc1b3908b86f SHA1: 3070c99673c99dc78f0b733a0e123fd20a53d6c2 SHA256: 00eb9a184528b94df1410cde164c564a58050b98d1fe98a368ab7a9614f5a9cd Description: simple interprocess messaging system (documentation) Homepage: http://dbus.freedesktop.org/ Description-md5: 4ff746780e6dca0a27147236301ca4fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dbus-cpp-dev-examples Priority: optional Section: x11 Installed-Size: 872 Maintainer: Thomas Voß Architecture: amd64 Source: dbus-cpp Version: 2.0.0+14.04.20140326-0ubuntu1 Depends: libc6 (>= 2.4), libdbus-cpp2 (>= 2.0.0+14.04.20140310), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Filename: pool/main/d/dbus-cpp/dbus-cpp-dev-examples_2.0.0+14.04.20140326-0ubuntu1_amd64.deb Size: 138418 MD5sum: 0efb3bd3ff6586c870a3bf6453250122 SHA1: a36569222737048e619d5413a35c456d66ac7a6a SHA256: e88bbcd3329a9e409be0e5222254aaf678e38fba0aae20ee40b558dc64b8d51c Description: header-only dbus-binding leveraging C++-11, example binaries Multi-Arch: same Homepage: http://launchpad.net/dbus-cpp Description-md5: 72f28e813da4ccbfa0c2e6aa7651b308 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dbus-test-runner Priority: optional Section: gnome Installed-Size: 54 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 14.04.1+14.04.20140320-0ubuntu1 Depends: libc6 (>= 2.2.5), libdbustest1, libglib2.0-0 (>= 2.14.0), gvfs-backends, dbus Suggests: bustle Filename: pool/main/d/dbus-test-runner/dbus-test-runner_14.04.1+14.04.20140320-0ubuntu1_amd64.deb Size: 6722 MD5sum: 608c51e6b0e88ecf0ec3a1522f4e6006 SHA1: c17c175ee16361e1459f9118109b20626b0ba7b9 SHA256: a89166bb507657912b367da3907f6c3ad2fc26e05d1f26ad71d6e75be8cf8745 Description: Runs tests under a new DBus session Multi-Arch: foreign Homepage: https://launchpad.net/dbus-test-runner Description-md5: 88e7da912a798eb55139c316ccca5b7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dbus-x11 Priority: optional Section: x11 Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: dbus Version: 1.6.18-0ubuntu4 Depends: libc6 (>= 2.15), libx11-6, dbus Breaks: x11-common (<< 1:7.5+4) Filename: pool/main/d/dbus/dbus-x11_1.6.18-0ubuntu4_amd64.deb Size: 19204 MD5sum: 75bd343174cdb131269249555a373159 SHA1: 1b2d6a1d79a12cff832aaefca07d90c9d6425466 SHA256: a3fa0daa23bcca0a88a603362d2195b396f3f21c80b27e71b213cd260d9b0c90 Description: simple interprocess messaging system (X11 deps) Multi-Arch: foreign Homepage: http://dbus.freedesktop.org/ Description-md5: 101d13ea029d06116b86761850faa2f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dc Priority: optional Section: math Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Ryan Kavanagh Architecture: amd64 Source: bc Version: 1.06.95-8ubuntu1 Depends: libc6 (>= 2.14) Filename: pool/main/b/bc/dc_1.06.95-8ubuntu1_amd64.deb Size: 46086 MD5sum: af9d26cab3cb723e5ed45707e8ebd5f0 SHA1: b0553ffb5bb46f8aa6c196fd366f6c8a2a47f900 SHA256: a9c3dc0d7ead17a5e53d5fd46a6ded59b847d723d935c4266337a9877737d6f2 Description: GNU dc arbitrary precision reverse-polish calculator Multi-Arch: foreign Homepage: http://ftp.gnu.org/gnu/bc/ Description-md5: df0fb5699f014e0d2bb4210971dadffa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dconf-cli Priority: optional Section: utils Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: d-conf Version: 0.20.0-1 Replaces: dconf-tools (<< 0.16.0-2) Depends: libc6 (>= 2.14), libdconf1 (>= 0.14.0), libglib2.0-0 (>= 2.39.4) Conflicts: dconf Breaks: dconf-tools (<< 0.16.0-2) Filename: pool/main/d/d-conf/dconf-cli_0.20.0-1_amd64.deb Size: 22588 MD5sum: f56971b2b44c65b3644b30f5ddd65b27 SHA1: 835ca1cd56f5ac0a3fc6550550f3206cce96c15b SHA256: 7a19ea24ef481a7756828f035e2129cb06005afe0a0657c8fd571c3719b0c952 Description: simple configuration storage system - utilities Homepage: https://wiki.gnome.org/dconf Description-md5: 1d5ca74b35414d275ff0579f00176c88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: dconf-gsettings-backend Priority: optional Section: libs Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: d-conf Version: 0.20.0-1 Replaces: libdconf0 (<< 0.7.3-2) Provides: gsettings-backend Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.39.1), dconf-service (>= 0.20.0-1), dconf-service (<< 0.20.0-1.1~), libdconf1 (= 0.20.0-1) Breaks: libdconf0 (<< 0.7.3-2), libglib2.0-0 (<< 2.30) Filename: pool/main/d/d-conf/dconf-gsettings-backend_0.20.0-1_amd64.deb Size: 19262 MD5sum: 9a863773d86e069c8326861f34c7e41a SHA1: 4710ca681399a840161cfffe9b434c2a5af690d6 SHA256: 3c9d7a9b6effbd3dc55efee17f8ead42afe1f04a8a540573dae8525e1a9e9143 Description: simple configuration storage system - GSettings back-end Multi-Arch: same Homepage: https://wiki.gnome.org/dconf Description-md5: 6b19a0652a2cca6e9bf8daa15cc3026b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dconf-service Priority: optional Section: libs Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: d-conf Version: 0.20.0-1 Replaces: dconf-gsettings-backend (<< 0.10.0-2), libdconf0 (<< 0.7.3-2) Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.39.1), libdconf1 (= 0.20.0-1) Recommends: dconf-gsettings-backend Breaks: dconf-gsettings-backend (<< 0.10.0-2), libdconf0 (<< 0.7.3-2) Filename: pool/main/d/d-conf/dconf-service_0.20.0-1_amd64.deb Size: 26876 MD5sum: 227fadfa714e24dc19da9fe3220d041f SHA1: ee0e5d7a3280aa342dcfe3457935a8b1272f0608 SHA256: 9ef17fb416021c1799dc98d9e184993c9c446e855ab997dedb1d91ce6723eda3 Description: simple configuration storage system - D-Bus service Multi-Arch: foreign Homepage: https://wiki.gnome.org/dconf Description-md5: 8339e79de2cc17111e9f391efbb6d79f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dctrl-tools Priority: optional Section: utils Installed-Size: 340 Maintainer: Ubuntu Developers Original-Maintainer: dctrl-tools developers Architecture: amd64 Version: 2.23ubuntu1 Replaces: grep-dctrl Provides: grep-dctrl Depends: libc6 (>= 2.14) Suggests: apt, debtags Conflicts: grep-dctrl Filename: pool/main/d/dctrl-tools/dctrl-tools_2.23ubuntu1_amd64.deb Size: 100604 MD5sum: ce9012fcde2e90be18b44722228d0686 SHA1: ec54ab19e6e966dba6398691f74879a936e22809 SHA256: 3dcad71b785f38867e0ffea1d2b5d8f671ead09f5a384a8d0297e9508857d60f Description: Command-line tools to process Debian package information Multi-Arch: foreign Description-md5: 2be4fae2cb5697a030eba7e7ef050401 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debconf Priority: required Section: admin Installed-Size: 609 Maintainer: Colin Watson Original-Maintainer: Debconf Developers Architecture: all Version: 1.5.51ubuntu2 Replaces: debconf-tiny Provides: debconf-2.0 Pre-Depends: perl-base (>= 5.6.1-4) Recommends: apt-utils (>= 0.5.1), debconf-i18n Suggests: debconf-doc, debconf-utils, whiptail | dialog | gnome-utils, libterm-readline-gnu-perl, libgtk2-perl (>= 1:1.130), libnet-ldap-perl, perl, libqtgui4-perl, libqtcore4-perl 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) Filename: pool/main/d/debconf/debconf_1.5.51ubuntu2_all.deb Size: 136156 MD5sum: 083b7e0bc23eeeca392d35ab898b1eac SHA1: 3769003f2ff0f930fb3fa746b60f6ae2af110dd9 SHA256: 85670d1a5b314c12c2f7c60e7fb075eb0e47fa1643a5a9a92cb900927a9f99a7 Description: Debian configuration management system Multi-Arch: foreign Description-md5: 85b82bf406dfc9a635114f44ab7fb66d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: debconf-doc Priority: optional Section: doc Installed-Size: 454 Maintainer: Colin Watson Original-Maintainer: Debconf Developers Architecture: all Source: debconf Version: 1.5.51ubuntu2 Suggests: debian-policy (>= 3.5) Conflicts: debconf (<< 0.3.10) Filename: pool/main/d/debconf/debconf-doc_1.5.51ubuntu2_all.deb Size: 226792 MD5sum: a0ee566fb05ee0f85497488fb7f99410 SHA1: 582b12301aefece393535fde977391c518a5c889 SHA256: 6ea2f0cc4b65b0458920b8a2def1fb31ee8ca2d6c152a6b42f295facc25ce931 Description: debconf documentation Description-md5: da116c01af307835ff58f0c7931292af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: debconf-i18n Priority: important Section: admin Installed-Size: 1104 Maintainer: Colin Watson Original-Maintainer: Debconf Developers Architecture: all Source: debconf Version: 1.5.51ubuntu2 Replaces: debconf (<< 1.3.0), debconf-utils (<< 1.3.22) Depends: debconf, liblocale-gettext-perl, libtext-iconv-perl, libtext-wrapi18n-perl, libtext-charwidth-perl Conflicts: debconf-english, debconf-utils (<< 1.3.22) Filename: pool/main/d/debconf/debconf-i18n_1.5.51ubuntu2_all.deb Size: 207762 MD5sum: f263a8a394f490cf0dfad010cb1a8099 SHA1: 2bde705f627560331ee696f6b7f9c27a3e08a7bc SHA256: 4abe6a0ae30ef2f6daa8c6053f64472cd4f82d29eb5c293ee7887a0a4a234b6e Description: full internationalization support for debconf Description-md5: 3f303f9083a6c63ddcfd70b4738cca54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: debconf-utils Priority: optional Section: devel Installed-Size: 153 Maintainer: Colin Watson Original-Maintainer: Debconf Developers Architecture: all Source: debconf Version: 1.5.51ubuntu2 Replaces: debconf (<< 0.1.0) Depends: debconf (>= 1.3.20) Conflicts: debconf (<< 0.1.0) Filename: pool/main/d/debconf/debconf-utils_1.5.51ubuntu2_all.deb Size: 57388 MD5sum: f118bf526895959b2d88b5c1f7261b89 SHA1: 928020a8e37de2f7b90eb9beebbd5b6bc8e0c293 SHA256: 1ce0ef3b105a8704ab9bf687b8e57de534c1d485f0af930568061eaac78daf02 Description: debconf utilities Description-md5: 6ee047164ccc84b6b919790585947b39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debhelper Priority: optional Section: devel Installed-Size: 995 Maintainer: Ubuntu Developers Original-Maintainer: Debhelper Maintainers Architecture: all Version: 9.20131227ubuntu1 Depends: perl, file (>= 3.23), dpkg (>= 1.16.2), dpkg-dev (>= 1.17.0), binutils, po-debconf, man-db (>= 2.5.1-1), dh-apparmor Suggests: dh-make Conflicts: automake (<< 1.11.2), dpkg-cross (<< 1.18), python-central (<< 0.5.6), python-support (<< 0.5.3) Filename: pool/main/d/debhelper/debhelper_9.20131227ubuntu1_all.deb Size: 604320 MD5sum: 1b50829a28ce8da780c48a47ccb8cfa5 SHA1: 8f5aeb68847e226a4a159d6a1a7838aedbd12642 SHA256: 332196724d4cbcb2a55e0e7521334f699897f09400794e89adcf8114919a47f3 Description: helper programs for debian/rules Multi-Arch: foreign Homepage: http://kitenet.net/~joey/code/debhelper/ Description-md5: 7f6c2c5e1519e9ecdd8a657cdb536c4c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debian-goodies Priority: optional Section: utils Installed-Size: 190 Maintainer: Ubuntu Developers Original-Maintainer: Javier Fernandez-Sanguino Pen~a Architecture: all Version: 0.63 Replaces: debget Depends: curl, dctrl-tools | grep-dctrl, perl, python (>= 2.4), whiptail | dialog Recommends: lsof Suggests: popularity-contest, xdg-utils, zenity Conflicts: debget Filename: pool/main/d/debian-goodies/debian-goodies_0.63_all.deb Size: 62734 MD5sum: fe2397793fe261f70051b23898711fcd SHA1: 50bac694b581e23ef0c7691d8237c5fd90a2cd3d SHA256: 3a06b3df40a9d28d5d0d78804165ef16f2d3a62dd0a036732974092f84287438 Description: Small toolbox-style utilities for Debian systems Description-md5: 13b40a80b8f8855561f737d5d9bf6761 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debian-installer Priority: optional Section: devel Installed-Size: 1317 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: amd64 Version: 20101020ubuntu318 Filename: pool/main/d/debian-installer/debian-installer_20101020ubuntu318_amd64.deb Size: 675606 MD5sum: 083ca0f3bec836ae1285f199758080fa SHA1: d147f16703681c905d7ea9c39020d22886f0822d SHA256: 26a05b63f0c2f4377cd15487398c48289edfba2e59f2ae07db37ce3243ac7a3c Description: Debian installer Description-md5: 4971db8ed5ee1de169a33701c5a72c9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debiandoc-sgml Priority: optional Section: text Installed-Size: 1331 Maintainer: Ubuntu Developers Original-Maintainer: Osamu Aoki Architecture: all Version: 1.2.28-1 Depends: perl, sgml-base (>= 1.26+nmu2), libhtml-parser-perl, libroman-perl, libtext-format-perl, sgml-data, sgmlspl, sp Recommends: ghostscript, texlive, texlive-latex-extra, texinfo Suggests: debiandoc-sgml-doc, latex-cjk-all, texlive-lang-all Filename: pool/main/d/debiandoc-sgml/debiandoc-sgml_1.2.28-1_all.deb Size: 116790 MD5sum: 50b3d968c3b0a58453fa6592594979b2 SHA1: 3d285fe759a73a9070864fd36568b9f814b48075 SHA256: 0f152e2829853e83155440c8a60ed4b5965bdeb5da6e17e0dac2d42ba9b8d4ec Description: DebianDoc SGML DTD and formatting tools Multi-Arch: foreign Description-md5: 0da31969986c39eaecea1ef07f8b2c10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: debianutils Essential: yes Priority: required Section: utils Installed-Size: 283 Maintainer: Ubuntu Developers Original-Maintainer: Clint Adams Architecture: amd64 Version: 4.4 Replaces: manpages-pl (<< 1:0.5) Depends: sensible-utils Pre-Depends: libc6 (>= 2.15) Filename: pool/main/d/debianutils/debianutils_4.4_amd64.deb Size: 88688 MD5sum: 4e68265111d6b6e9325e7bc743e8f7ad SHA1: b9e6ed0a0768dabfc8433c57649c01f77af8fd01 SHA256: 8fd5c5b04cf668d39605f2d2165bdf33928b69580cdb8fb0e6d4f90849e396f6 Description: Miscellaneous utilities specific to Debian Multi-Arch: foreign Description-md5: ccafef5bb90a2453aecca96cbb772d23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: debootstrap Priority: extra Section: admin Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: all Version: 1.0.59 Depends: wget Recommends: gnupg, ubuntu-keyring Filename: pool/main/d/debootstrap/debootstrap_1.0.59_all.deb Size: 30060 MD5sum: 43020ddccf5175dad1e6fcfa33241b8f SHA1: a47f3606126a8d7526affaec07558090020413b1 SHA256: 1df1b167fed24eb2cae0bcc0ba6d5357f6a40fe0a8aaa6bfe828c7a007413f65 Description: Bootstrap a basic Debian system Description-md5: 883a8efb3ed16248b0d2091d9c0b60c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debugedit Priority: optional Section: admin Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: rpm Version: 4.11.1-3 Replaces: rpm (<< 4.11.1-2) Depends: libc6 (>= 2.14), libelf1 (>= 0.131), libpopt0 (>= 1.14), librpmio3 (>= 4.10.0) Suggests: rpm-i18n Breaks: rpm (<< 4.11.1-2) Filename: pool/main/r/rpm/debugedit_4.11.1-3_amd64.deb Size: 17746 MD5sum: dc6cf6562b3479528d6fe1f7f4fce67d SHA1: 3b785869bcca8382be41463eacdd7cad1031c928 SHA256: f53cc8d02edf49a55d5c0474c27b6a948b40d092fa40d25edd94a8779452fdd4 Description: tool to mangle source locations in .debug files Multi-Arch: foreign Homepage: http://rpm.org/ Description-md5: ed96261dd092de973eb3cefecd2b42e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: default-jdk Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: amd64 Source: java-common (0.51) Version: 2:1.7-51 Provides: java-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk Depends: default-jre (= 2:1.7-51), openjdk-7-jdk (>= 7~u3-2.1.1) Filename: pool/main/j/java-common/default-jdk_1.7-51_amd64.deb Size: 934 MD5sum: b9bd8be704442c823074f040120425fb SHA1: 578f1ad64575f6ff253cac3c3060b3676c5179cf SHA256: 4aaab4850767f8ba78727987858b315b9fbc9934900ac0af221b2f0256c2a459 Description: Standard Java or Java compatible Development Kit Description-md5: c67109f41dc41dd2756dcbcb27d0c2cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: default-jdk-doc Priority: optional Section: doc Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: all Source: java-common Version: 0.51 Depends: openjdk-7-doc Suggests: default-jdk Filename: pool/main/j/java-common/default-jdk-doc_0.51_all.deb Size: 3534 MD5sum: cae590c4fdd1df11f5b5272583d7f1d5 SHA1: bbe6b0c6d948678a50fd20dd8de17eaba9580e05 SHA256: 90f5916808f3bd29ebeecb3ba8af36122e780b7e04af8c205cc78d2fc609802f Description: Standard Java or Java compatible Development Kit (documentation) Description-md5: 58d45895ed109f4c99eeb57e53b8feb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: default-jre Priority: optional Section: interpreters Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: amd64 Source: java-common (0.51) Version: 2:1.7-51 Provides: java-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime Depends: default-jre-headless (= 2:1.7-51), openjdk-7-jre (>= 7~u3-2.1.1) Filename: pool/main/j/java-common/default-jre_1.7-51_amd64.deb Size: 940 MD5sum: 4bc7f5ca58d1e2e88a71922cf666b823 SHA1: 84f99eddf3870210f1745598a43991d085c0cd41 SHA256: 8de86605093cff99a2b788dfaadc583915546416cf981be4f9a8980513436dec Description: Standard Java or Java compatible Runtime Description-md5: edef88d83e514a8ddbe8d5868d07037a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: default-jre-headless Priority: optional Section: interpreters Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: amd64 Source: java-common (0.51) Version: 2:1.7-51 Replaces: openjdk-6-jre-headless (<< 6b23~pre8-2~) Provides: java-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless Depends: openjdk-7-jre-headless (>= 7~u3-2.1.1), java-common Suggests: default-jre Filename: pool/main/j/java-common/default-jre-headless_1.7-51_amd64.deb Size: 3834 MD5sum: 82babba8748dca94fddb6449c2e0c38e SHA1: ee5324aacd2f4a1502a222957a55e3e2453c0409 SHA256: df0d661d8dc83a066a40e9a49fa39a0cec7f2fb1e69775536f8a7f6a1863cf4e Description: Standard Java or Java compatible Runtime (headless) Description-md5: e5da5cbbcd2bc8982f52a7a482d2a0d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: deja-dup Priority: optional Section: utils Installed-Size: 2956 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: amd64 Version: 30.0-0ubuntu4 Depends: dconf-gsettings-backend | gsettings-backend, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libdbusmenu-glib4 (>= 0.4.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-control-center1 (>= 1:3.3.5), libgtk-3-0 (>= 3.9.12), libnautilus-extension1a (>= 1:2.91), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libpeas-1.0-0 (>= 1.0.0), libsecret-1-0 (>= 0.7), libunity-control-center1 (>= 14.04.0), libunity9 (>= 3.4.6), duplicity (>= 0.6.23), gnome-icon-theme-symbolic Pre-Depends: multiarch-support Recommends: deja-dup-backend-gvfs, policykit-1 Suggests: deja-dup-backend-cloudfiles, deja-dup-backend-s3 Filename: pool/main/d/deja-dup/deja-dup_30.0-0ubuntu4_amd64.deb Size: 281876 MD5sum: 793166a7a050b32995f1cc01df134f6f SHA1: 6479a287877cf09a763b51a0295b439e8aca7e8d SHA256: 00c308c65e4e00d530c0f97f6992aa312fa1ab793a85de754597bac4d6be411a Description: Back up your files Homepage: https://launchpad.net/deja-dup Description-md5: bcefeda9975db72a7a2ac610f40bac2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: deja-dup-backend-gvfs Priority: optional Section: utils Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: all Source: deja-dup Version: 30.0-0ubuntu4 Depends: deja-dup, gvfs-backends Filename: pool/main/d/deja-dup/deja-dup-backend-gvfs_30.0-0ubuntu4_all.deb Size: 2528 MD5sum: 82445583822f0d1d0fd677444840792f SHA1: ec0f071e422009ab070416689fa719a1b3d168e2 SHA256: c47f4ee8993889741083f16be61cc02dd897eb852b5c369f794ad19667005399 Description: Remote server support for Déjà Dup Homepage: https://launchpad.net/deja-dup Description-md5: 650d0424cc3225cff2629dcb8e14a5d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: dejagnu Priority: optional Section: devel Installed-Size: 1798 Maintainer: Ubuntu Developers Original-Maintainer: Hector Oron Architecture: all Version: 1.5-3build1 Depends: expect, dpkg (>= 1.15.4) | install-info Filename: pool/main/d/dejagnu/dejagnu_1.5-3build1_all.deb Size: 972994 MD5sum: b2f4f7c15bfbf2e8f2453e2635fbfc9b SHA1: 5f6c319155156ee2c85767d358129400723d8b10 SHA256: a9dd433168aa89a76f5af6a54d61c78ae2da72cfafdfebf4c5038f9eca500be6 Description: framework for running test suites on software tools Description-md5: 641b5a9db687ec0ef1d5efaa06180677 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: desktop-file-utils Priority: optional Section: devel Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: amd64 Version: 0.22-1ubuntu1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.28.0) Filename: pool/main/d/desktop-file-utils/desktop-file-utils_0.22-1ubuntu1_amd64.deb Size: 43230 MD5sum: 138b1f3fb0f22c4a8178c525ad738df1 SHA1: e183a46609aaa81daf3a3aaf1dca8219bd620de2 SHA256: cdb144d8e072caabf096a1e9c5636391b5e08ed9b73f57dd4b901463e70a48e2 Description: Utilities for .desktop files Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/desktop-file-utils Description-md5: b235afbde001f33936d80b8419f367f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: devhelp Priority: optional Section: devel Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.8.2-2ubuntu1 Depends: libc6 (>= 2.2.5), libdevhelp-3-2 (>= 3.6.1), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.0.0) Recommends: libgtk-3-doc, libglib2.0-doc, libpango1.0-doc Filename: pool/main/d/devhelp/devhelp_3.8.2-2ubuntu1_amd64.deb Size: 12072 MD5sum: 50896aa3bed8798269624405a5fc7e8e SHA1: f4f75457bc6d7590e120f8c37a9cdcc7dff1f559 SHA256: defa33693ced4d9c140a0769cef63b8f0f2a5dd96281130844331bdd086f5330 Description: GNOME developers help program Homepage: https://wiki.gnome.org/devhelp Description-md5: ae983a3767d2a0a40ed35bb280300912 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: devhelp-common Priority: optional Section: devel Installed-Size: 264 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: devhelp Version: 3.8.2-2ubuntu1 Replaces: libdevhelp-1-0 (<< 2.27.92-1) Depends: dconf-gsettings-backend | gsettings-backend, python3:any (>= 3.3.2-2~) Filename: pool/main/d/devhelp/devhelp-common_3.8.2-2ubuntu1_all.deb Size: 42148 MD5sum: 2c16278eff04512cd2073af068946da0 SHA1: fb2807c58c4601010b5df42584a7631df8aeaf8f SHA256: bfd1b5b95f16d861cc946f9f40e6916889596069608dea4758ede62a9ef60cab Description: Common files for devhelp and its library Homepage: https://wiki.gnome.org/devhelp Description-md5: 516ddf515c96f5c42cd65b6141da8c77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: device-tree-compiler Priority: extra Section: devel Installed-Size: 533 Maintainer: Ubuntu Developers Original-Maintainer: Hector Oron Architecture: amd64 Version: 1.4.0+dfsg-1 Depends: libc6 (>= 2.14) Filename: pool/main/d/device-tree-compiler/device-tree-compiler_1.4.0+dfsg-1_amd64.deb Size: 356098 MD5sum: 81342a2cdca624c4a5b87ac952449b12 SHA1: 6fa21a1505fdb33f2354fcf97061b3c852791a24 SHA256: c8dda6e873d859eba03ea6a728aa306383f43f7e51dcabd12712616856ab69f2 Description: Device Tree Compiler for Flat Device Trees Multi-Arch: foreign Homepage: http://git.jdl.com/gitweb/?p=dtc.git Description-md5: c14bd2aee94155eab7033dce0d089d26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: devio Priority: optional Section: utils Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Rod Whitby Architecture: amd64 Version: 1.2-1build2 Depends: libc6 (>= 2.14) Filename: pool/main/d/devio/devio_1.2-1build2_amd64.deb Size: 18158 MD5sum: 9b8146ac25e51b2bcfd01e12efbdda7e SHA1: fedfc6ed33217a29e2d64f46ee2331f70117f9d7 SHA256: f8af00f7a4af10d25e438a6cf885d54208d356655874d6f1f7a56d37af4879b6 Description: correctly read (or write) a region of a block device Description-md5: 0bd1a5ee0f78f228d879d86ec100473d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: devscripts Priority: optional Section: devel Installed-Size: 1765 Maintainer: Ubuntu Developers Original-Maintainer: Devscripts Devel Team Architecture: amd64 Version: 2.14.1 Replaces: ubuntu-dev-tools (<< 0.124~) Depends: dpkg-dev (>= 1.16.4), perl, python3, python3:any (>= 3.3.2-2~), libc6 (>= 2.3.4) Recommends: at, dctrl-tools, dput | dupload, fakeroot, gnupg, libdistro-info-perl, libencode-locale-perl, libjson-perl, libparse-debcontrol-perl, liburi-perl, libwww-perl, lintian, man-db, patch, patchutils, python3-debian (>= 0.1.15), python3-magic, sensible-utils, strace, unzip, wdiff, wget | curl, xz-utils Suggests: bsd-mailx | mailx, build-essential, cvs-buildpackage, devscripts-el, gnuplot, gpgv, libauthen-sasl-perl, libfile-desktopentry-perl, libnet-smtp-ssl-perl, libterm-size-perl, libtimedate-perl, libyaml-syck-perl, mutt, ssh-client, svn-buildpackage, w3m, debian-keyring, equivs, liblwp-protocol-https-perl, libsoap-lite-perl Breaks: ubuntu-dev-tools (<< 0.147~) Filename: pool/main/d/devscripts/devscripts_2.14.1_amd64.deb Size: 791250 MD5sum: a1a4b155d7d1784343d260e46b6fa7c1 SHA1: 0d8b888c1789d7ea35f9e218a7196f918693a526 SHA256: a724af720cc797e62bde72bc064f578f1f07754789c834c4765de773a422b8f1 Description: scripts to make the life of a Debian Package maintainer easier Multi-Arch: foreign Description-md5: c88970e1a384c95711009f8d50e92b41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dh-apparmor Priority: extra Section: devel Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: apparmor Version: 2.8.95~2430-0ubuntu5 Replaces: debhelper (<< 9.20120115ubuntu3) Suggests: apparmor-easyprof Breaks: debhelper (<< 9.20120115ubuntu3) Filename: pool/main/a/apparmor/dh-apparmor_2.8.95~2430-0ubuntu5_all.deb Size: 11326 MD5sum: cf8c08173dfa0b7aeb467439b4c6e736 SHA1: fd8689776c828319edc1dbdb61f3173c237ff0fe SHA256: 27019e0538273868f4cbe26b5894887d762e4c640a2dd5890d55f7535983bf25 Description: AppArmor debhelper routines Multi-Arch: foreign Homepage: http://apparmor.net/ Description-md5: efd212d2f49b2d33d3233f07e30c77cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dh-apport Priority: optional Section: devel Installed-Size: 170 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: perl Filename: pool/main/a/apport/dh-apport_2.14.1-0ubuntu3_all.deb Size: 6782 MD5sum: 4a2d88a63b317a27858867300eba7cd1 SHA1: f998ea9f36b8b8584f0a3721c2fbe9e0eec9a9bc SHA256: a48b0748c08fa662e222d43514c9b59f5e67e3fe4cd52ffec09ba2ee8f5ce5f0 Description: debhelper extension for the apport crash report system Multi-Arch: foreign Homepage: https://wiki.ubuntu.com/Apport Description-md5: a5c779df9e0b356100c76151d7cef527 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-autoreconf Priority: optional Section: devel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Version: 9 Depends: perl, debhelper, autoconf, automake | automaken, autopoint, libtool (>= 2.4.2) Filename: pool/main/d/dh-autoreconf/dh-autoreconf_9_all.deb Size: 15542 MD5sum: a2ec5e5eca4db22b5276fc22889b864c SHA1: 6cc4624ac47f369deb00356e902febe4bf167b9b SHA256: a4c22770c7a70f9b2f49b5eb2fc1fd9b6ba386da493fd685d4e00c85b3db0430 Description: debhelper add-on to call autoreconf and clean up after the build Enhances: cdbs, debhelper Multi-Arch: foreign Description-md5: 64431da0ae4318a5fbf441743bd5ffc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-buildinfo Priority: optional Section: devel Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Yann Dirson Architecture: all Version: 0.10ubuntu1 Depends: debhelper, perl, build-essential (>= 7) Filename: pool/main/d/dh-buildinfo/dh-buildinfo_0.10ubuntu1_all.deb Size: 14066 MD5sum: 9b9f0aaaee91839b5b494ca5be7576be SHA1: 2ae3258ff67b7b09e499bd198162e4148a6aa0ba SHA256: 0bbeab16490d8d893fe7fe1aee34459dfa009878d9e84170911b2ea0bed12b54 Description: Debhelper addon to track package versions used to build a package Multi-Arch: foreign Description-md5: 78727bb9b900caa5668c494ce4bf26b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-di Priority: optional Section: devel Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: all Version: 6 Depends: perl Filename: pool/main/d/dh-di/dh-di_6_all.deb Size: 11402 MD5sum: 5edb4169ff37b9649efdac9c4da0dfc7 SHA1: 3831f1b724ea81e66b778daf0926f679d79c840d SHA256: e42336ec636b4b68538ac88fdc51a1a8e6d1606b3efad5eb88badb361fa38663 Description: Debhelper addon for debian-installer Description-md5: d31938dbb9a87daa76cd0914921cf8da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-exec Priority: extra Section: devel Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Gergely Nagy Architecture: amd64 Version: 0.12 Depends: libc6 (>= 2.14), libpipeline1 (>= 1.0.0), perl (>= 5.14.2~), debhelper (>= 8.9.13~) Filename: pool/main/d/dh-exec/dh-exec_0.12_amd64.deb Size: 27126 MD5sum: 7c54683a658afbe1da0acdad0f1ddf15 SHA1: 2dbdd4955e46dfc6aa72138b597ee343210daaa9 SHA256: 07713ae102df6339139c0b3508f99725459d29fff8b1501e85e01f669ad5c9ef Description: Scripts to help with executable debhelper files Multi-Arch: foreign Homepage: https://github.com/algernon/dh-exec Description-md5: 3569ef1554e59b0180fa9e354c412863 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-linktree Priority: optional Section: devel Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Raphaël Hertzog Architecture: all Version: 0.4 Depends: debhelper, libdpkg-perl, perl Filename: pool/main/d/dh-linktree/dh-linktree_0.4_all.deb Size: 11030 MD5sum: 3942c0eb25297b7c75ecfa508e2d248d SHA1: b6d9ba88c0898b24ee6b011d3450ec23b2db4812 SHA256: 65660abc008905a732e4d611e389255081805745bad878be493be4036a587a77 Description: Create symlink trees within a Debian package Description-md5: 2db0ade7f7e567b15612bded5502ce65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-make Priority: optional Section: devel Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: all Version: 0.63 Depends: debhelper (>= 9), make, perl, dpkg-dev Suggests: build-essential Filename: pool/main/d/dh-make/dh-make_0.63_all.deb Size: 37556 MD5sum: fadb40ab5ffb3e05e91b4a8132994ed8 SHA1: 5a5dbae9b49cac349e241798306a3e7579ac365f SHA256: 1f22caf603e58355c9691f79380e79986bef1f050fff4b9a2e762f0ae2a2acd2 Description: tool that converts source archives into Debian package source Description-md5: 49189f3da1d1311b194d89a6376ec4e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dh-migrations Priority: extra Section: misc Installed-Size: 58 Maintainer: Didier Roche Architecture: all Source: session-migration Version: 0.2.1 Depends: debhelper Filename: pool/main/s/session-migration/dh-migrations_0.2.1_all.deb Size: 5446 MD5sum: fa88c63e896b1eb8a75cbd3c3cec1f42 SHA1: 56f3676229885bc8c9332f147692e4db76849aea SHA256: 556e3677e6d538537a02faaf1fe512afbefd8b3e80d21f37b58b1c11252e0dd7 Description: debhelper extension for session-migration support Homepage: https://launchpad.net/session-migration Description-md5: 0b12c10d8021951a91ae59cfe2ce0fb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-modaliases Priority: optional Section: admin Installed-Size: 74 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-drivers-common Version: 1:0.2.91.4 Depends: perl Filename: pool/main/u/ubuntu-drivers-common/dh-modaliases_0.2.91.4_all.deb Size: 8118 MD5sum: 502dfda2bc192428e817b4efe0cf84d2 SHA1: cf9b43b122fdf23100eff18c32c96a2996cf12cf SHA256: d0c25ea55471a3cf9ea5f3e31413a8fae5cbd4ba0697c468c8bf87fd6bc160a0 Description: debhelper extension for scanning kernel module aliases Enhances: debhelper Description-md5: 1a811f1261ebf8d94f48be93de246b96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-ocaml Priority: extra Section: devel Installed-Size: 299 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: all Version: 1.0.8 Replaces: ocaml (<< 3.11.0~beta1-1), ocaml-base (<< 3.11.0~beta1-1), ocaml-base-nox (<< 3.11.0~beta1-1), ocaml-nox (<< 3.11.0~beta1-1) Recommends: debhelper, ocaml-nox (>> 3.12) Suggests: git Breaks: ocaml (<< 3.12), ocaml-base (<< 3.12), ocaml-base-nox (<< 3.12), ocaml-nox (<< 3.12) Filename: pool/main/d/dh-ocaml/dh-ocaml_1.0.8_all.deb Size: 80538 MD5sum: c678e5bb22ec81500285f9e73c1bd52f SHA1: 85d16f1959d0272ddefb86d493ef7c1997b9c172 SHA256: 333449334f9b0688e1370b20c136f262da5d2b157577291a5b042f538a6ed382 Description: helper tools for maintaining OCaml-related Debian packages Description-md5: a2d96f5703de2b33380537be59e6a4c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-python Priority: important Section: python Installed-Size: 309 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Version: 1.20140128-1ubuntu8 Replaces: python3 (<< 3.3.2-4~) Depends: python3:any (>= 3.3.2-2~) Breaks: python3 (<< 3.3.2-4~) Filename: pool/main/d/dh-python/dh-python_1.20140128-1ubuntu8_all.deb Size: 51026 MD5sum: 3ede45ec37b676086dc1de5ad3213bc8 SHA1: b84642dfc6e7c19b9a151c70a1e2c0d5a9b72fdf SHA256: 6c76877dcda9c8c6a5e19530b4aef708bd01f6e488e936cbf24153241ab3e056 Description: Debian helper tools for packaging Python libraries and applications Multi-Arch: foreign Description-md5: 9f24690d2f6e9b70048dc4079a2dfca7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: dh-systemd Priority: extra Section: admin Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: pkg-systemd-maintainers Architecture: all Source: init-system-helpers Version: 1.14 Depends: perl, debhelper Filename: pool/main/i/init-system-helpers/dh-systemd_1.14_all.deb Size: 12806 MD5sum: bc1fd80cf1e2d61f5d1148cc445067b1 SHA1: de944635d4e508320fdd301d434bab769fd3fa1d SHA256: 2f8d066bdc0bfd5895c5d6a1142405e93580c1a51c74aa1c9e0c5c7413781089 Description: debhelper add-on to handle systemd unit files Multi-Arch: foreign Description-md5: 820ef7f34d93a6611a99b031c2c55eb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-translations Priority: extra Section: devel Installed-Size: 77 Maintainer: Ubuntu Developers Architecture: all Source: pkgbinarymangler Version: 121 Depends: debhelper, intltool Filename: pool/main/p/pkgbinarymangler/dh-translations_121_all.deb Size: 21596 MD5sum: 2359f10f56ef056993698cc212d36b23 SHA1: ca05f86529fa504f3c686ef883530f11c3cfd28f SHA256: 72f30b19e77d25943cb64bf94731390ee2f793da158f914e8bdd5eca5b0e2f77 Description: debhelper extension for translation support Description-md5: 7c1312ea3fd1cf79858c39fdb547739f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dh-xsp Priority: optional Section: web Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: xsp Version: 3.0.11-1 Replaces: mono-xsp-base Depends: perl, debhelper Conflicts: mono-utils (<= 1.1.9.2-1), mono-xsp-base Filename: pool/main/x/xsp/dh-xsp_3.0.11-1_all.deb Size: 10964 MD5sum: 95e4bcf2b6dfdf3e939726b392938339 SHA1: 86a59c467d112456c969b99c05b811a76786c98b SHA256: 17f4003bb3c482dc1f52cd7142b9b82e6b2744f26717c0646be130ba721732aa Description: debhelper add-on to handle ASP.NET sites Homepage: http://www.mono-project.com/ASP.NET Description-md5: 228c1bfe1a779be20859b0fbd2da6dc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dialog Priority: optional Section: misc Installed-Size: 1136 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 1.2-20130928-1 Provides: libdialog-dev Depends: libc6 (>= 2.15), libncursesw5 (>= 5.6+20070908), libtinfo5, debianutils (>= 1.6) Filename: pool/main/d/dialog/dialog_1.2-20130928-1_amd64.deb Size: 299704 MD5sum: 3f19af74d960bebd9e503a320eeb9650 SHA1: b8b583fff57b6ad7873b7c5a3f1df3dff0c80e21 SHA256: 27cf11b51077c2aca1d75a27398e7d7e494574ac4f22e6121109b63f40d4e148 Description: Displays user-friendly dialog boxes from shell scripts Homepage: http://invisible-island.net/dialog/dialog.html Description-md5: bcacb3d599cbbb23a47a1141ae12a28b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dict Priority: optional Section: text Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: amd64 Source: dictd Version: 1.12.1+dfsg-2 Provides: dict-client Depends: netbase, recode, libc6 (>= 2.14), libmaa3 (>= 1.2.0) Recommends: gawk, m4 Suggests: dictd | dict-server Filename: pool/main/d/dictd/dict_1.12.1+dfsg-2_amd64.deb Size: 54178 MD5sum: 1276e06c9162dd7feded2e727f70d50c SHA1: d17c1af0a78f319fa47ac35df4967573344ca18e SHA256: 8991aad7fdf56769a80bf031504afd33e68140326d327fa291899e633fe1ea5a Description: dictionary client Homepage: http://sourceforge.net/projects/dict/ Description-md5: 74d1a239ff1066a180ba971c6b64178b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dict-foldoc Priority: optional Section: text Installed-Size: 2515 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: all Version: 20120518-1 Provides: dictd-dictionary Depends: dictd | dict-server, base-files (>> 4) Filename: pool/main/d/dict-foldoc/dict-foldoc_20120518-1_all.deb Size: 2384320 MD5sum: 7716992021f9a41086e6519192804583 SHA1: 5415aecc79fc33718023d8603ae7e1afc8e476c0 SHA256: 6f9f367a2dac31f884864ae8faf9cdd75cd9ffe0eba5a52e72b0b0702627fc16 Description: FOLDOC dictionary database Homepage: http://foldoc.org/ Description-md5: 0101618028c7357f4f09a878b5f39054 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dict-gcide Priority: optional Section: text Installed-Size: 17122 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: all Version: 0.48.1 Replaces: dict-web1913 Provides: dict-web1913, dictd-dictionary Depends: dictd | dict-server Suggests: dict-wn Breaks: dict-web1913 (<= 1.4-0.47pd-3) Filename: pool/main/d/dict-gcide/dict-gcide_0.48.1_all.deb Size: 15121586 MD5sum: 4bb39b311fc89992e60d1e268499c655 SHA1: 05663b0a8fc2faf8d8f9116568e7b884fcfad988 SHA256: 3b8f983cd721d05ad9a091fa6f09b141035bf85ffc39f5dd0270a8ff64672121 Description: Comprehensive English Dictionary Homepage: http://git.debian.org/?p=collab-maint/dict-gcide.git Description-md5: 5de203d81ca57711d27ea9dedad7c40f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dict-jargon Priority: optional Section: text Installed-Size: 672 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: all Version: 4.4.7-2ubuntu1 Provides: dictd-dictionary Depends: dictd | dict-server Suggests: dict Filename: pool/main/d/dict-jargon/dict-jargon_4.4.7-2ubuntu1_all.deb Size: 616856 MD5sum: 5e0735f4496d4fdb759134ac10bafbb9 SHA1: 691f01c07091da5d7f21c76a82bb82f952d12bcd SHA256: 92e59e92410c6b4e534c290890180d3c1c2007a56edd99d98fd6fb6ed0ede153 Description: dict package for The Jargon Lexicon Homepage: http://catb.org/jargon/ Description-md5: 1eac195cce310e5397fbed31d9ca95a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dict-moby-thesaurus Priority: optional Section: text Installed-Size: 11112 Maintainer: Ubuntu Core Developers Original-Maintainer: John Goerzen Architecture: all Version: 1.0-6.2 Suggests: dict, dictd Filename: pool/main/d/dict-moby-thesaurus/dict-moby-thesaurus_1.0-6.2_all.deb Size: 11050520 MD5sum: 3062d9add4c8b57d257a86dc97591675 SHA1: e9d2fa4479d2abdb40dd938c4e3058694bc8dd38 SHA256: fa72466e4fc004c05606fd163a71801559481e77c8b1b6a72caa9f6f92a92eb1 Description: Largest and most comprehensive thesaurus Description-md5: a55792325c78ce9d5b51442d580243a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dict-vera Priority: optional Section: text Installed-Size: 386 Maintainer: Ubuntu Developers Original-Maintainer: Ryan Kavanagh Architecture: all Source: vera (1.20-1) Version: 1:1.20-1 Provides: dictd-dictionary Depends: dictd | dict-server Filename: pool/main/v/vera/dict-vera_1.20-1_all.deb Size: 298584 MD5sum: 8faab596b52b99be306e6ab280c3eb0e SHA1: 3c66393116d2e0aef2b37731962cf2c0b33de42d SHA256: cd044de82eee3cfcdd0d6df34c270a6f248d13a171f5e417662e10462c11e496 Description: Dictionary of computer related acronyms -- dict format Homepage: http://cgi.snafu.de/ohei/user-cgi-bin/veramain-e.cgi Description-md5: b9bd42acd3704e66d0e172d47d02e560 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dictd Priority: optional Section: text Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: amd64 Version: 1.12.1+dfsg-2 Provides: dict-server Depends: adduser, dictzip (>= 1.12.1+dfsg), lsb-base (>= 3.2-13), netbase, ucf (>= 3), update-inetd, debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.14), libmaa3 (>= 1.2.0), zlib1g (>= 1:1.1.4) Recommends: dict | dict-client Suggests: dict-foldoc, dict-gcide | dictd-dictionary, dict-jargon, dict-wn Conflicts: dict-server Filename: pool/main/d/dictd/dictd_1.12.1+dfsg-2_amd64.deb Size: 119008 MD5sum: 8d6388d87ff37e8767e9fe87e7f84a73 SHA1: a68279470a6c5ea7c3ade7eba133fd8730d97e88 SHA256: b008c45587af8d3806ffaa93d2d40f787c7f896b5cce44b6db2683c2d5a8ac68 Description: dictionary server Homepage: http://sourceforge.net/projects/dict/ Description-md5: 5442ec960cfda460694f725c1e289641 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dictfmt Priority: optional Section: utils Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: amd64 Source: dictd Version: 1.12.1+dfsg-2 Depends: libc6 (>= 2.14), libmaa3 (>= 1.2.0) Recommends: dictzip Filename: pool/main/d/dictd/dictfmt_1.12.1+dfsg-2_amd64.deb Size: 37972 MD5sum: 8041c701267b5b826fe79653a160e7d5 SHA1: 2610e3b163919c497ce93e697a8fc8751de66550 SHA256: 22c90ecc02adec5fbd8ced2db281b4689aadc45245dc3ad31beaafc30629c73a Description: utility to format a file for use by a dictd server Homepage: http://sourceforge.net/projects/dict/ Description-md5: 2f01edba47d44fe481f5b4f832bc34ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dictionaries-common Priority: optional Section: text Installed-Size: 923 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Version: 1.20.5 Replaces: openoffice.org-updatedicts Provides: openoffice.org-updatedicts Depends: debconf (>= 1.5.5) | debconf-2.0, libtext-iconv-perl Suggests: ispell | aspell | hunspell, wordlist, emacsen-common, jed-extra Conflicts: emacsen-common (<< 2.0.0) Breaks: hunspell-ar (<= 0.0.0+20080110-1.1), hunspell-da (<= 1:3.1.0), hunspell-de-at (<= 20100727-1), hunspell-de-ch (<= 20100727-1), hunspell-de-de (<= 20100727-1), hunspell-en-us (<= 20070829-4ubuntu2), hunspell-eu-es (<= 0.4.20081029-4), hunspell-gl-es (<= 2.2a-8), hunspell-kk (<= 1.1-1), hunspell-ko (<= 0.5.3-1), hunspell-se (<= 1.0~beta6.20081222-1.1), hunspell-uz (<= 0.6-3.1), hyphen-en-us (<< 2.8.3-1), myspell-bg (<= 3.0-12), myspell-ca (<= 0.6-10), myspell-cs (<= 20040229-5), myspell-cs-cz (<= 20040229-5), myspell-da (<= 1.6.25-1), myspell-de-at (<= 20100727-1), myspell-de-ch (<= 20100727-1), myspell-de-de (<= 20100727-1), myspell-de-de-oldspell (<= 1:2-27), myspell-el-gr (<= 0.8-1), myspell-en-au (<= 2.1-5), myspell-eo (<= 2.1.2000.02.25-42), myspell-es (<= 1.11-1), myspell-et (<= 1:20030606-12.1), myspell-eu-es (<= 0.4.20081029-4), myspell-fa (<= 0.20070816-2), myspell-fi (<= 0.7-17.3), myspell-fo (<= 0.2.44-2), myspell-fr (<= 1.4-25), myspell-fr-gut (<= 1:1.0-28), myspell-ga (<= 2.0-20), myspell-gd (<= 0.50-7), myspell-gl-es (<= 2.2a-8), myspell-gv (<= 0.50-9), myspell-he (<= 1.1-1), myspell-hr (<= 20060617-2), myspell-hu (<= 0.99.4-2), myspell-hy (<= 0.20.0-1), myspell-ku (<= 0.20.0-1.1), myspell-lv (<= 0.9.3-2), myspell-nb (<= 2.0.10-3.2), myspell-nl (<= 1:2.0-1), myspell-nn (<= 2.0.10-3.2), myspell-nr (<< 20070206-4ubuntu1), myspell-ns (<< 20070206-4ubuntu1), myspell-pl (<= 20100612-1), myspell-pt-br (<= 20101030-1), myspell-pt-pt (<= 20091013-2), myspell-ru (<= 0.99g5-8.1), myspell-sk (<= 0.5.5a-2.1fakesync1), myspell-sl (<< 1.0-3ubuntu1), myspell-ss (<< 20070206-4ubuntu1), myspell-sv-se (<= 1.3.8-6-2.2), myspell-tn (<< 20070206-4ubuntu1), myspell-ts (<< 20070207-4ubuntu1), myspell-uk (<= 1.6.0-1), myspell-ve (<< 20070206-3ubuntu1), myspell-xh (<< 20070206-4ubuntu1), myspell-zu (<< 20070207-5ubuntu1), mythes-it (<= 2.0.7.gh.deb1-3), openoffice.org-thesaurus-it (<< 2.0.7.gh.deb1-1.1ubuntu3) Filename: pool/main/d/dictionaries-common/dictionaries-common_1.20.5_all.deb Size: 231654 MD5sum: 428942cce9899c3c2760d21f42a2a348 SHA1: 61325b0bcbeefafe8160ed52f394ecbeb84e381d SHA256: 244b62756c70b52988053607126b3d2edc8fc20c8aff66c39b1e1881f1225b74 Description: Common utilities for spelling dictionary tools Homepage: http://dict-common.alioth.debian.org Description-md5: 7640c2b6d1773c8331f39ba17ae63f3a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dictionaries-common-dev Priority: optional Section: text Installed-Size: 308 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: dictionaries-common Version: 1.20.5 Depends: debhelper (>= 4.1.13), dictionaries-common (>> 0.3.6) Filename: pool/main/d/dictionaries-common/dictionaries-common-dev_1.20.5_all.deb Size: 68986 MD5sum: 842544eda8512587341c0e4da26c19e2 SHA1: a04e0b5f84ecdb8d2de11b41c450df6b965300e5 SHA256: 50616637f7ab27678415cb13879d5c080016e4052231bc6e950c49f8c08971e8 Description: Developer tools and Policy for spelling dictionary tools Homepage: http://dict-common.alioth.debian.org Description-md5: 7cc03ea985ef1f189a911159193d0e78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dictzip Priority: optional Section: text Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: amd64 Source: dictd Version: 1.12.1+dfsg-2 Replaces: dictd (<< 1.7.1-1) Depends: libc6 (>= 2.14), libmaa3 (>= 1.2.0), zlib1g (>= 1:1.1.4) Filename: pool/main/d/dictd/dictzip_1.12.1+dfsg-2_amd64.deb Size: 27720 MD5sum: d02ea66999d6a5f010afa4143effa444 SHA1: bd8ba7f67d4f15134b837d0b7ccfca77ddd3ad3d SHA256: 481ef8373747b937306f5a26773febf16d8142ce4ee06ce14b3d8e337ce4b1f2 Description: compression utility for dictionary databases Homepage: http://sourceforge.net/projects/dict/ Description-md5: 8b6985a0311f25c9b6975297145471f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: diffstat Priority: optional Section: devel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Sandro Tosi Architecture: amd64 Version: 1.58-1 Depends: libc6 (>= 2.14) Filename: pool/main/d/diffstat/diffstat_1.58-1_amd64.deb Size: 21846 MD5sum: e1a46170edf7ac69a75339ba245b1d56 SHA1: 218ada31efffa5d4a34d9657e7686a64caf5f889 SHA256: a141d6d7b75a844e5aee58ce139f19c2c4b1f76b7983d2cca74e701e2152c8c8 Description: produces graph of changes introduced by a diff file Homepage: http://invisible-island.net/diffstat/ Description-md5: 823a79fb1afafc025e5a1d8d5d0da641 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: diffutils Essential: yes Priority: required Section: utils Installed-Size: 428 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 1:3.3-1 Replaces: diff Pre-Depends: libc6 (>= 2.17) Suggests: diffutils-doc, wdiff Filename: pool/main/d/diffutils/diffutils_3.3-1_amd64.deb Size: 205792 MD5sum: 3432b6133d7e77d9847edc38c4a71d6a SHA1: 9ea4436dd0d947befa044b2687e6a76f00140c12 SHA256: 8ed25846bc54b991abe33a416f4be03f26961baa5975f55889c133d8d1cedd3f Description: File comparison utilities Homepage: http://www.gnu.org/software/diffutils/ Description-md5: 5cf0bc18e36aa2957e62b309d6aa34f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: diffutils-doc Priority: optional Section: doc Installed-Size: 717 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: diffutils Version: 1:3.3-1 Filename: pool/main/d/diffutils/diffutils-doc_3.3-1_all.deb Size: 104428 MD5sum: 8467abd62537b2e0d8a709106c330f07 SHA1: 35a72fee101dcbe447ca0b2bf72dc8fbae98d849 SHA256: e25d15b6666d8dcfad07afc2dd1426781e2630e7d81c3d96504018e6baa5b8e1 Description: Documentation for GNU diffutils in HTML format Homepage: http://www.gnu.org/software/diffutils/ Description-md5: 3c6b1148d808e7917d665c9ccd6d0bc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: distro-info Priority: optional Section: devel Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Drung Architecture: amd64 Version: 0.12 Replaces: ubuntu-dev-tools (<< 0.127~) Depends: distro-info-data (>= 0.7~), libc6 (>= 2.7) Suggests: shunit2 (>= 2.1.6) Breaks: ubuntu-dev-tools (<< 0.133~) Filename: pool/main/d/distro-info/distro-info_0.12_amd64.deb Size: 19258 MD5sum: 9ef931be8d7d79498793d17661ecc224 SHA1: 85ec2805916722999f08f486551167fd3349425f SHA256: dd61ec1699d8afe80f1a439acb2c435ee8f229ccd1cd77a383d09d46048f897d Description: provides information about the distributions' releases Description-md5: 5671943e370fd3dd7449d885e6363cee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: distro-info-data Priority: optional Section: devel Installed-Size: 34 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Drung Architecture: all Version: 0.18 Replaces: distro-info (<< 0.3~) Breaks: distro-info (<< 0.3~) Filename: pool/main/d/distro-info-data/distro-info-data_0.18_all.deb Size: 3962 MD5sum: 91bf6a885ab44625c664ad0f290f86f9 SHA1: 5f68ec254e1c4e38871a94d083bb3a83d40e9b89 SHA256: a0400b86cd4144b21bf988cb2aacf2a0469f9b33015f090a3e12af4b1ef70838 Description: information about the distributions' releases (data files) Description-md5: f7fe06a2e0396bbe8c1c7abad056bf48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: diveintopython Priority: optional Section: doc Installed-Size: 4220 Maintainer: Ubuntu Core Developers Original-Maintainer: Ross Burton Architecture: all Version: 5.4-2ubuntu2 Pre-Depends: dpkg (>= 1.10.24) Recommends: python Filename: pool/main/d/diveintopython/diveintopython_5.4-2ubuntu2_all.deb Size: 348358 MD5sum: 5071ded4626ce9342fbd34af55b166e0 SHA1: b15253f8a16bdb58633e510d9bbb140bf457d2e9 SHA256: b1dded5076cfd546ebc4d1967a161bd5f60703ee26f9f7dbcf01119efbf04fba Description: free Python book for experienced programmers Description-md5: 780747a46232db722f91ff1ef6884f9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: diveintopython-zh Priority: optional Section: doc Installed-Size: 4124 Maintainer: ZhengPeng Hou Architecture: all Version: 5.4b-1 Recommends: python Filename: pool/main/d/diveintopython-zh/diveintopython-zh_5.4b-1_all.deb Size: 536212 MD5sum: 5785d34428cbb1897a65b3e4229e4483 SHA1: dd73523d77e266b9231984b436391a08919c24e2 SHA256: 0e5bde584c6f51039e55eb2508bf3c6fe479173b82fd57c7c0313e0797598519 Description: free Python book for experienced programmers (zh translation) Description-md5: 4df8e54927ccaa5ad4d65927a0695a7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: djvulibre-dbg Priority: extra Section: libs Installed-Size: 613 Maintainer: Ubuntu Developers Original-Maintainer: Barak A. Pearlmutter Architecture: amd64 Source: djvulibre Version: 3.5.25.4-3 Depends: libdjvulibre21 (= 3.5.25.4-3) Filename: pool/main/d/djvulibre/djvulibre-dbg_3.5.25.4-3_amd64.deb Size: 81536 MD5sum: c1df7495a71bea1b8df162262d17c9eb SHA1: b08f42e240b19308ca153d213c870b6090c7b514 SHA256: 88ed8aba3f629c8a8ca4faa8e790b2ef8e065d9998e022bde625ef99fd74fcf7 Description: Debug symbols for the DjVu image format Multi-Arch: same Homepage: http://djvu.sourceforge.net/ Description-md5: 491e47717200675c2416d353ba9f4f8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dkms Priority: optional Section: admin Installed-Size: 341 Maintainer: Ubuntu Developers Original-Maintainer: Dynamic Kernel Modules Support Team Architecture: all Version: 2.2.0.3-1.1ubuntu5 Depends: module-init-tools, gcc, make | build-essential | dpkg-dev, coreutils (>= 7.4), patch Recommends: fakeroot, menu | sudo Suggests: dpkg-dev, debhelper Filename: pool/main/d/dkms/dkms_2.2.0.3-1.1ubuntu5_all.deb Size: 64416 MD5sum: c061b4c50bcebc9d51f65703f5f8fdaf SHA1: 2b896b95757e3e8a37e9cbb108251ce5e5848455 SHA256: e0cfaedc62da1afe2d2de3121a6fc0b1f5f64d0f4e4e440156408961883e7fb8 Description: Dynamic Kernel Module Support Framework Homepage: http://linux.dell.com/dkms Description-md5: b7b6bb6a6b083b2245e0648e7752a459 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dmidecode Priority: standard Section: utils Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: amd64 Version: 2.12-2 Depends: libc6 (>= 2.4) Filename: pool/main/d/dmidecode/dmidecode_2.12-2_amd64.deb Size: 45904 MD5sum: 43af0fd9cd67e19f84d9f320ae082d53 SHA1: 4b61c7e1099775048146f6314bce8c3d6871d377 SHA256: a7253a3bb17fea485496a27a09fb30c3d4f8b97f28beacb921712fc32cf510b8 Description: SMBIOS/DMI table decoder Homepage: http://dmidecode.nongnu.org/ Description-md5: 266176aa2231f4b521210b81955e4d36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: dmidecode-dbg Priority: extra Section: debug Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: amd64 Source: dmidecode Version: 2.12-2 Depends: dmidecode (= 2.12-2) Filename: pool/main/d/dmidecode/dmidecode-dbg_2.12-2_amd64.deb Size: 90518 MD5sum: 580113ae443f842321a7b5d948c9d477 SHA1: 2b6073d8d52fabd776021d25c56bfca9bcb96c5e SHA256: 097e9c9affa7e112cc13fa5219be9f725c7fd91ab05c5e8c7c533fa323966cf2 Description: SMBIOS/DMI table decoder (debug) Homepage: http://dmidecode.nongnu.org/ Description-md5: d50c751833be541ddf30c9f81198d451 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dmraid Priority: optional Section: admin Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Iuculano Architecture: amd64 Version: 1.0.0.rc16-4.2ubuntu3 Depends: libc6 (>= 2.4), libdmraid1.0.0.rc16 (>= 1.0.0.rc16), udev, dmsetup, kpartx-boot Breaks: mdadm (<= 3.2.5-5ubuntu2) Filename: pool/main/d/dmraid/dmraid_1.0.0.rc16-4.2ubuntu3_amd64.deb Size: 22874 MD5sum: e81a098accd68d5ae3318652d67839c7 SHA1: 87c5bf40a6b3e7fdafcde1644fcf3e3ea6843b70 SHA256: 3907e3b2445340d43f32d8b8a3be6fa4ef050fb3ee650c45d7cec6f4b08b8c56 Description: Device-Mapper Software RAID support tool Homepage: http://people.redhat.com/~heinzm/sw/dmraid/ Description-md5: 3e36d6b2b8560a6acc827d35c09fed48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: dmsetup Priority: important Section: admin Installed-Size: 181 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Source: lvm2 (2.02.98-6ubuntu2) Version: 2:1.02.77-6ubuntu2 Depends: libc6 (>= 2.14), libdevmapper1.02.1 (>= 2:1.02.77), initramfs-tools, util-linux (>> 2.16), udev (>> 141-2) Conflicts: devicekit-disks (<< 009) Breaks: udev (<< 138-1) Filename: pool/main/l/lvm2/dmsetup_1.02.77-6ubuntu2_amd64.deb Size: 37602 MD5sum: cf921d3f5dde0a80e2a9c43bbf298766 SHA1: 91333b47b55ca7bc2b0607a1066178cd9f4cff47 SHA256: 7b7ecd472e751377f4f12bb26e940e8a665b8a0012b02244be0b12754ecd2665 Description: Linux Kernel Device Mapper userspace library Multi-Arch: foreign Homepage: http://sources.redhat.com/lvm2/ Description-md5: 808f3b8b96c64d5f095bd9a6d6d9c928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: dmz-cursor-theme Priority: optional Section: gnome Installed-Size: 3462 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Version: 0.4.4ubuntu1 Filename: pool/main/d/dmz-cursor-theme/dmz-cursor-theme_0.4.4ubuntu1_all.deb Size: 192720 MD5sum: a4683048ac92cf17a5c58d72dc9ec43c SHA1: cb6569d9e6a708902f771d7a2912582dc4e51361 SHA256: 09e01d9eba09beaecdee226802089c73b7a6ae7c4268d425017d3534584fe55a Description: Style neutral, scalable cursor theme Description-md5: 486c37c0e4890a318fb8856ce996d5b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop Package: dnsmasq-base Priority: optional Section: net Installed-Size: 648 Maintainer: Ubuntu Developers Original-Maintainer: Simon Kelley Architecture: amd64 Source: dnsmasq Version: 2.68-1 Replaces: dnsmasq (<< 2.63-1~) Depends: adduser, libc6 (>= 2.15), libdbus-1-3 (>= 1.1.1), libidn11 (>= 1.13), libnetfilter-conntrack3 Breaks: dnsmasq (<< 2.63-1~) Filename: pool/main/d/dnsmasq/dnsmasq-base_2.68-1_amd64.deb Size: 257512 MD5sum: 60bafb9b863671bb02595505a447270c SHA1: ab4cba860fc099fd1badb07a68afddfd4b10bb5d SHA256: 8064b65d22724a4dca2a0cdbab8305b6a6054fac8e2b593dc1c1c2a11ff3ca24 Description: Small caching DNS proxy and DHCP/TFTP server Description-md5: 1f9c3f0c557ca377bcc6c659e4694437 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dnsmasq-utils Priority: optional Section: net Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Simon Kelley Architecture: amd64 Source: dnsmasq Version: 2.68-1 Depends: libc6 (>= 2.14) Conflicts: dnsmasq (<< 2.40) Filename: pool/main/d/dnsmasq/dnsmasq-utils_2.68-1_amd64.deb Size: 7972 MD5sum: 966ca476f4ef7e0bebdc72c6840b8391 SHA1: a02da86798aa050ad7855526589000d14f56470c SHA256: 3ae84afe5522ed7976eefe56b65ed92e08c0a20212c35391dc6f914d01e8c38c Description: Utilities for manipulating DHCP leases Description-md5: c01626c0b1b5fea18d3a8d04fbe44ea7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dnstracer Priority: optional Section: net Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Jari Aalto Architecture: amd64 Version: 1.9-4 Depends: libc6 (>= 2.15) Filename: pool/main/d/dnstracer/dnstracer_1.9-4_amd64.deb Size: 22800 MD5sum: 0bc0e83bbd6d555cd91f6a00e66c79bf SHA1: b12faeb497ce6f7a8394a2531672620474108f0f SHA256: 56b18851a952d117e0c9f74571e79cde2e8fec2908b3cbd84d8cf698845ecff7 Description: trace DNS queries to the source Homepage: http://freshmeat.net/projects/dnstracer Description-md5: 3508085f63f3549f0524dbe74f98a0bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dnsutils Priority: standard Section: net Installed-Size: 369 Maintainer: LaMont Jones Architecture: amd64 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: bind, bind9 (<< 1:9.1.0-3) Depends: libbind9-90 (= 1:9.9.5.dfsg-3), libc6 (>= 2.4), libdns100 (= 1:9.9.5.dfsg-3), libisc95 (= 1:9.9.5.dfsg-3), libisccfg90 (= 1:9.9.5.dfsg-3), libkrb5-3 (>= 1.6.dfsg.2), liblwres90 (= 1:9.9.5.dfsg-3), bind9-host | host Suggests: rblcheck Conflicts: netstd (<< 2.00) Filename: pool/main/b/bind9/dnsutils_9.9.5.dfsg-3_amd64.deb Size: 96816 MD5sum: 1b7989dd9def361c1ec92accc8dc5502 SHA1: 3c998f9187e2f780493d4e49ee14c4baf1e1357f SHA256: 66f635934ec0d46915d85637c74a1f2408749a631ad5f1153e577bae63acd988 Description: Clients provided with BIND Description-md5: 11090f3795381e992a73710a1cc4118b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: doc-base Priority: optional Section: doc Installed-Size: 460 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: all Version: 0.10.5 Depends: libuuid-perl, libyaml-tiny-perl Suggests: dhelp | dwww | doc-central | yelp | khelpcenter4, rarian-compat Filename: pool/main/d/doc-base/doc-base_0.10.5_all.deb Size: 86068 MD5sum: 1fa84b6b03d47b9197e6eea5921bc4b3 SHA1: 024823cd714bad098a5143e6289c846536f3e586 SHA256: f59df3b7a4b1de6a3600ea5140146bd59ca9916f95dee5ee57900814985bf1a8 Description: utilities to manage online documentation Description-md5: 795a15f13949941d9a1bf4330905c8bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: docbook Priority: optional Section: text Installed-Size: 2715 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 4.5-5.1ubuntu1 Depends: sgml-data (>= 1.5.0), sgml-base (>= 1.26+nmu2) Suggests: docbook-defguide, docbook-dsssl, docbook-xml, psgml Breaks: docbook-xml (<< 4.4-4~) Filename: pool/main/d/docbook/docbook_4.5-5.1ubuntu1_all.deb Size: 443342 MD5sum: facf8348ca0b1a7beeea3b4a5c29618e SHA1: 40b33741bd72c251bb49fa6fa8fb5bb7c454c6ed SHA256: 3b8d8abbd3ad97d785c9d4fe07e1dcddc786ec3c96b01b9e4bf78d08748b5a60 Description: standard SGML representation system for technical documents Multi-Arch: foreign Homepage: http://www.oasis-open.org/docbook/sgml/ Description-md5: ead20f911a71259289f56248053bcdf9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: docbook-dsssl Priority: optional Section: text Installed-Size: 2578 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: all Version: 1.79-7ubuntu1 Replaces: docbook-stylesheets Depends: openjade | openjade1.3 | jade, docbook (>= 3.1) | docbook-xml, sgml-base (>= 1.26+nmu2), perl Suggests: jadetex, docbook-dsssl-doc Conflicts: docbook-stylesheets Filename: pool/main/d/docbook-dsssl/docbook-dsssl_1.79-7ubuntu1_all.deb Size: 349710 MD5sum: 8e390aa049ce274660ecc89cc43fdcc5 SHA1: adc5d43092cd5e0048592ee01a57d482a1eaef80 SHA256: 8073d2319ebc65e450e4a76b5e6f79b4af70dacb56c64fcb780a1ee0be403bf3 Description: modular DocBook DSSSL stylesheets, for print and HTML Multi-Arch: foreign Homepage: http://docbook.sourceforge.net/projects/dsssl/ Description-md5: 858031b46e88a202ef467a0ea94f76d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: docbook-to-man Priority: optional Section: text Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: amd64 Version: 1:2.0.0-31 Depends: libc6 (>= 2.14), docbook, sp | opensp Filename: pool/main/d/docbook-to-man/docbook-to-man_2.0.0-31_amd64.deb Size: 81226 MD5sum: d8cb9e410e504da034e08448cb70b55d SHA1: ccbb07d19689fe772e3004a656027daee5fe9da0 SHA256: 38ee8cbd424582c8199984fed660d365ce61da2214599034a7fb0cb882655320 Description: converter from DocBook SGML into roff man macros Multi-Arch: foreign Homepage: http://www.oasis-open.org/docbook/tools/dtm/ Description-md5: 355b2afd3a17f2847b875415a346ff1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: docbook-utils Priority: optional Section: text Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 0.6.14-3ubuntu1 Replaces: cygnus-stylesheets, docbk-xml2x, docbook2man, docbook2texi, docbook2x-doc Depends: docbook-dsssl, jadetex, lynx | links | links2 | w3m, sgmlspl, sp, perl Recommends: docbook-xml Filename: pool/main/d/docbook-utils/docbook-utils_0.6.14-3ubuntu1_all.deb Size: 68010 MD5sum: 438e84629749b64a210cda8dbda2fad0 SHA1: d76b1a7a2616cc24e752314c1c9133d9a02cbe96 SHA256: 1c3491d30483de8971ce443d005f1e3c7120e26ee1703a9a8b161f36dd659207 Description: Convert DocBook files to other formats (HTML, RTF, PS, man, PDF) Multi-Arch: foreign Homepage: http://sources.redhat.com/docbook-tools/ Description-md5: cd7e3cec0a19dc4f52d33b1b531aacb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: docbook-xml Priority: optional Section: text Installed-Size: 2145 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 4.5-7.2 Provides: docbk-xml Depends: sgml-data (>= 2.0.2), sgml-base (>= 1.26+nmu2), xml-core (>= 0.12) Suggests: docbook, docbook-dsssl, docbook-xsl, docbook-defguide Filename: pool/main/d/docbook-xml/docbook-xml_4.5-7.2_all.deb Size: 335852 MD5sum: 8f68834fdf6514eab14ea6b17d05e1cd SHA1: ee12e73bdd90e22c79bc0de079c1828b95e6a272 SHA256: 5617c215cda5794d99d7ec0be027df423b53aae52aa1969b014933cefc22ea52 Description: standard XML documentation system for software and systems Homepage: http://docbook.org/schemas/4x.html Description-md5: 283ee39bcb227d4b875ce6f857e41f58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-desktop Package: docbook-xsl Priority: optional Section: text Installed-Size: 14454 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 1.78.1+dfsg-1 Depends: xml-core (>= 0.12) Recommends: docbook-xml (>= 4.1.2-4) Suggests: dbtoepub, docbook-xsl-doc-html | docbook-xsl-doc-pdf | docbook-xsl-doc-text | docbook-xsl-doc, docbook-xsl-saxon, fop, libsaxon-java, libxalan2-java, libxslthl-java, xalan Filename: pool/main/d/docbook-xsl/docbook-xsl_1.78.1+dfsg-1_all.deb Size: 2146476 MD5sum: 0f340fcf75e2ff5ce31a5eae2223aa1a SHA1: 5f941b3251bcac777f162b8f6d6d999cb795cfb4 SHA256: a5771665f051491b42dc36c06a6bc305cc0841a298821d1dce543803e8794c98 Description: stylesheets for processing DocBook XML to various output formats Multi-Arch: foreign Homepage: http://wiki.docbook.org/DocBookXslStylesheets Description-md5: 4798e7d834fe4007ed35a5da76675e12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: docbook-xsl-ns Priority: optional Section: text Installed-Size: 14488 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: docbook-xsl Version: 1.78.1+dfsg-1 Depends: xml-core (>= 0.12) Recommends: docbook5-xml (>> 5) Suggests: dbtoepub, docbook-xsl-doc-html | docbook-xsl-doc-pdf | docbook-xsl-doc-text | docbook-xsl-doc, docbook-xsl-saxon, fop, libsaxon-java, libxalan2-java, libxslthl-java, xalan Filename: pool/main/d/docbook-xsl/docbook-xsl-ns_1.78.1+dfsg-1_all.deb Size: 2136486 MD5sum: f673db31f846da67e71196bf0910d812 SHA1: 58e4e8d6346105fd2da2c5aebcd104b0363bce23 SHA256: 395d454b1d3ddf9471378fa0ef9c4e2742adb0f848d456ed3718a478833fce22 Description: stylesheets for processing DocBook 5 XML to various output formats Homepage: http://wiki.docbook.org/DocBookXslStylesheets Description-md5: feaf34e3e39a21ba45c997abe92b57b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: docbook2x Priority: optional Section: text Installed-Size: 1416 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Version: 0.8.8-9 Depends: libc6 (>= 2.14), xml-core (>= 0.12), perl, libxml-sax-expat-perl, libtext-wrapi18n-perl, opensp | sp, texinfo, xsltproc Recommends: docbook-xml, docbook-xsl Filename: pool/main/d/docbook2x/docbook2x_0.8.8-9_amd64.deb Size: 345380 MD5sum: cca15170676eb5d8ed32ac830bb0af25 SHA1: ef173360d2322484aff21744918cf78214ca481c SHA256: e2f8432fbaa69b9ce1431f6d48cd336e980e1d3250dc71e3d69323946a8c6a8a Description: Converts DocBook/XML documents into man pages and TeXinfo Homepage: http://docbook2x.sourceforge.net Description-md5: 0460a03df0bea65e00317c6f10f31272 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: docbook5-xml Priority: optional Section: text Installed-Size: 3540 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 5.0-2 Depends: xml-core (>= 0.12) Suggests: docbook-xsl-ns, docbook5-defguide Filename: pool/main/d/docbook5-xml/docbook5-xml_5.0-2_all.deb Size: 806724 MD5sum: 003ae8780f10826d3ac14d83720f2e68 SHA1: 88aadee36eeb6ba54fc8cfa8a2ead3dae4ac4e23 SHA256: e1c547052cfa92f39473232009f0ae97b01fedb0a89a97f93cd3a2b7391e92ab Description: standard XML documentation system for software and systems Homepage: http://docbook.org/schemas/5x.html Description-md5: 01c2468021dec31e79a7135346319d9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: docutils-common Priority: optional Section: python Installed-Size: 675 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-docutils Version: 0.11-3 Replaces: docutils-writer-odt, python-docutils (<< 0.7-3~), python-odtwriter Depends: sgml-base (>= 1.26+nmu2), xml-core (>= 0.12) Recommends: python-docutils | python3-docutils Conflicts: python-docutils (<< 0.7-3~) Breaks: docutils-writer-odt, python-odtwriter Filename: pool/main/p/python-docutils/docutils-common_0.11-3_all.deb Size: 143384 MD5sum: 8fcd1b48d490c1a16bc307cf51b29e88 SHA1: 334dec3878f7e69b847db99ab6de18fce126ba7f SHA256: 67025e47c6cf26de6f6b4199a864e694313c992b875957176435b636488726b6 Description: text processing system for reStructuredText - common data Homepage: http://docutils.sourceforge.net/ Description-md5: 84cf51ac94facf9d285421c8082ca5da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: docutils-doc Priority: optional Section: doc Installed-Size: 4133 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-docutils Version: 0.11-3 Replaces: python-docutils (<< 0.7-3~) Conflicts: python-docutils (<< 0.7-3~) Filename: pool/main/p/python-docutils/docutils-doc_0.11-3_all.deb Size: 888184 MD5sum: 78df317de3c8cbcdc76ec4c78d2d5921 SHA1: 54e56c79716faf85dfb31217eddcd6a0066bf79c SHA256: 05783ebc65c42260009c753b5d6c2fe9c65a19651a784e1d0bf685a6e3897af0 Description: text processing system for reStructuredText - documentation Homepage: http://docutils.sourceforge.net/ Description-md5: 60ab5df53b5ac456a51df5c40faee7f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dosfstools Priority: standard Section: otherosfs Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Version: 3.0.26-1 Depends: libc6 (>= 2.14) Filename: pool/main/d/dosfstools/dosfstools_3.0.26-1_amd64.deb Size: 59666 MD5sum: 535b2c86fa6a374931a0cc993b715bb4 SHA1: 57fad16843c1859c2ca06bf4dbd9399a9f02c9d1 SHA256: 6f60b545c218f4fccc24fdeac282be52ad8e94ad02f8d5da40d3979a154d8a5b Description: utilities for making and checking MS-DOS FAT filesystems Homepage: http://daniel-baumann.ch/software/dosfstools/ Description-md5: 6e6f1615505926a1cde788227bb8c0b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: dosfstools-dbg Priority: extra Section: devel Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Source: dosfstools Version: 3.0.26-1 Depends: dosfstools (= 3.0.26-1) Filename: pool/main/d/dosfstools/dosfstools-dbg_3.0.26-1_amd64.deb Size: 132332 MD5sum: 8e83a09e7d3d9bb60b82dc462754c83a SHA1: 074fe59ad1f1468267bffdfd51d9ce34291e7f6f SHA256: fd9843a52fa173d7ec11378ae82a03407e8c2b5d85a5cc0c1569ab00b9243959 Description: utilities for making and checking MS-DOS FAT filesystems (debug) Homepage: http://daniel-baumann.ch/software/dosfstools/ Description-md5: c36802847c419ec5329168f8bc43c65e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dovecot-core Priority: optional Section: mail Installed-Size: 6668 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: amd64 Source: dovecot Version: 1:2.2.9-1ubuntu2 Replaces: dovecot-common (<< 1:2.0.14-2~), mailavenger (<< 0.8.1-4) Provides: dovecot-common Depends: libbz2-1.0, libc6 (>= 2.17), libpam0g (>= 0.99.7.1), libssl1.0.0 (>= 1.0.0), libwrap0 (>= 7.6-4~), zlib1g (>= 1:1.1.4), debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libpam-runtime (>= 0.76-13.1), openssl, adduser, ucf (>= 2.0020), ssl-cert (>= 1.0-11ubuntu1), lsb-base (>= 3.2-12ubuntu3) Recommends: ntpdate Suggests: ntp, dovecot-gssapi, dovecot-sieve, dovecot-pgsql, dovecot-mysql, dovecot-sqlite, dovecot-ldap, dovecot-imapd, dovecot-pop3d, dovecot-lmtpd, dovecot-managesieved, dovecot-solr, ufw Breaks: dovecot-common (<< 1:2.0.14-2~), mailavenger (<< 0.8.1-4) Filename: pool/main/d/dovecot/dovecot-core_2.2.9-1ubuntu2_amd64.deb Size: 2096302 MD5sum: 2c5b726e528fe332b647360357013ff4 SHA1: 7d4d1e91dca26cd9d7fc9b1e82d04f660ab0c937 SHA256: ddf713194f2f4b40fcca65c84b5f1c57dc669b1b2b9cd98b310d088ae41234ac Description: secure POP3/IMAP server - core files Homepage: http://dovecot.org/ Description-md5: 42825422b1ef9e3a592c94dfafed375c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: dovecot-dbg Priority: extra Section: debug Installed-Size: 26465 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: amd64 Source: dovecot Version: 1:2.2.9-1ubuntu2 Depends: dovecot-core (= 1:2.2.9-1ubuntu2) Filename: pool/main/d/dovecot/dovecot-dbg_2.2.9-1ubuntu2_amd64.deb Size: 5899600 MD5sum: e0cc313e703afc773555649d680d677f SHA1: 1ba007f2f799af48ba8bc553721421104aa8305a SHA256: c85313a6a3d58b1b81d158c1664c55dc58537e1da89e47d44137541d63059fd2 Description: secure POP3/IMAP server - debug symbols Homepage: http://dovecot.org/ Description-md5: ffb457ad37715bf3c94d1439cfdd43cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dovecot-dev Priority: optional Section: mail Installed-Size: 1575 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: amd64 Source: dovecot Version: 1:2.2.9-1ubuntu2 Replaces: dovecot-common (<< 1:2.0.14-2~) Depends: dovecot-core (= 1:2.2.9-1ubuntu2) Breaks: dovecot-common (<< 1:2.0.14-2~) Filename: pool/main/d/dovecot/dovecot-dev_2.2.9-1ubuntu2_amd64.deb Size: 224686 MD5sum: dd8ce39e1314669bf6d51da3f8748733 SHA1: aa2916a9a9dfee7bf70975454870f300e52e58f1 SHA256: 631399dbd349e700ecaceba3442a503ed91f6ade0454f3c7ab185b008ad788ba Description: secure POP3/IMAP server - header files Homepage: http://dovecot.org/ Description-md5: ffb4394c4cda3a428a661a4a841033fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dovecot-imapd Priority: optional Section: mail Installed-Size: 936 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: amd64 Source: dovecot Version: 1:2.2.9-1ubuntu2 Provides: imap-server Depends: dovecot-core (= 1:2.2.9-1ubuntu2), libbz2-1.0, libc6 (>= 2.4), zlib1g (>= 1:1.1.4), ucf (>= 2.0020) Filename: pool/main/d/dovecot/dovecot-imapd_2.2.9-1ubuntu2_amd64.deb Size: 121120 MD5sum: 609356b23e1585d4bba6e190c9a0601c SHA1: 5c612c3b05a952bb3cfc25442aaca4dac9e9d026 SHA256: 3d8b4afca2f27ddcf40ae9b67d1ff03b07d121535d99a338ce02dc3722a2b087 Description: secure POP3/IMAP server - IMAP daemon Homepage: http://dovecot.org/ Description-md5: c160efea9f93533ab3404291018f7556 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: dovecot-managesieved Priority: optional Section: mail Installed-Size: 699 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: amd64 Source: dovecot Version: 1:2.2.9-1ubuntu2 Replaces: dovecot-common (<< 1:2.0.14-2~) Depends: dovecot-core (= 1:2.2.9-1ubuntu2), dovecot-sieve (= 1:2.2.9-1ubuntu2), libc6 (>= 2.4), ucf (>= 2.0020) Breaks: dovecot-common (<< 1:2.0.14-2~) Filename: pool/main/d/dovecot/dovecot-managesieved_2.2.9-1ubuntu2_amd64.deb Size: 46730 MD5sum: 09454b819a6030ce638f65cb3a57b938 SHA1: 8729fc41d4224ebf616310fb70bc363658c6cc62 SHA256: 71c76287d392e9f14314142cc2a92312fc4db5d28ee8ad7c6805b39d5aab462b Description: secure POP3/IMAP server - ManageSieve server Homepage: http://dovecot.org/ Description-md5: 9c22507acd609a92f0a6377258e2d338 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dovecot-pop3d Priority: optional Section: mail Installed-Size: 619 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: amd64 Source: dovecot Version: 1:2.2.9-1ubuntu2 Provides: pop3-server Depends: dovecot-core (= 1:2.2.9-1ubuntu2), libc6 (>= 2.4), ucf (>= 2.0020) Filename: pool/main/d/dovecot/dovecot-pop3d_2.2.9-1ubuntu2_amd64.deb Size: 28498 MD5sum: 54c9e8b5cb3eb79733e155ca831fa03d SHA1: 1430b5a9736956ea70803b0b812119c44b983376 SHA256: d301be7fc096147b0a146f9e47c998e4e78ca6847be1ed390ded87c9e805dfbf Description: secure POP3/IMAP server - POP3 daemon Homepage: http://dovecot.org/ Description-md5: 399e133dbb91be39d372ab3528375bab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: dovecot-sieve Priority: optional Section: mail Installed-Size: 1320 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: amd64 Source: dovecot Version: 1:2.2.9-1ubuntu2 Depends: dovecot-core (= 1:2.2.9-1ubuntu2), libc6 (>= 2.14), ucf (>= 2.0020) Filename: pool/main/d/dovecot/dovecot-sieve_2.2.9-1ubuntu2_amd64.deb Size: 234866 MD5sum: f6f3979d99e13cac0a0e95e055306275 SHA1: 91f4ddc4d883a268442be35dbe3a820c88cb4087 SHA256: aac9165d29441814a1248b4a6257440633c2e83666737dbef1ae3d74890d35ad Description: secure POP3/IMAP server - Sieve filters support Homepage: http://dovecot.org/ Description-md5: 70234206edc75d829fdb3617a653da24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: doxygen Priority: optional Section: devel Installed-Size: 9926 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Version: 1.8.6-2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Suggests: doxygen-latex, doxygen-doc, doxygen-gui, graphviz Conflicts: graphviz (<< 1.12) Filename: pool/main/d/doxygen/doxygen_1.8.6-2_amd64.deb Size: 2407600 MD5sum: a563f2db926f24fa1d2560387d495269 SHA1: 079f3950f1daa80405590eceb1f8d5810ed3ecc5 SHA256: 1a8f67996221c189644defcac52193a24fe2f4521230517f8a1f582a99e6d949 Description: Documentation system for C, C++, Java, Python and other languages Multi-Arch: foreign Homepage: http://www.stack.nl/~dimitri/doxygen/ Description-md5: 492da4d72df8e1b313e0a62be4fae0e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: doxygen-dbg Priority: extra Section: debug Installed-Size: 40394 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: doxygen Version: 1.8.6-2 Depends: doxygen (= 1.8.6-2) Filename: pool/main/d/doxygen/doxygen-dbg_1.8.6-2_amd64.deb Size: 8099650 MD5sum: 558843a1a2a361c2564c7b17098c4714 SHA1: 95c57b732614e39722fb36566c1b322bf7f10b0e SHA256: eefc6eafe28f1ab2ef0d91392160d5b6f329cf2f2b57538ef5fd16129af2855a Description: Debug symbols for doxygen Homepage: http://www.stack.nl/~dimitri/doxygen/ Description-md5: 3b3452c547a089b8eba5801720747d74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: doxygen-doc Priority: optional Section: doc Installed-Size: 4041 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: doxygen Version: 1.8.6-2 Replaces: doxygen (<< 1.2.14), doxygen-docs Provides: doxygen-docs Recommends: doxygen Conflicts: doxygen-docs Filename: pool/main/d/doxygen/doxygen-doc_1.8.6-2_all.deb Size: 1838160 MD5sum: 33037fa0aba30c049a7836dc33ec6e79 SHA1: fe87a5b3f5ae7a45f4947407e17ce86dff777a33 SHA256: bd2a81aab5ea4727e6413a373e6121c94fd11ef51d42d3d1d156f546bdd3139c Description: Documentation for doxygen Homepage: http://www.stack.nl/~dimitri/doxygen/ Description-md5: 95a07d9f5965b3499af7270363210b77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: doxygen-latex Priority: optional Section: devel Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: doxygen Version: 1.8.6-2 Depends: doxygen (>= 1.8.6-2), texlive-extra-utils, texlive-latex-extra, latex-xcolor, texlive-font-utils, ghostscript, texlive-fonts-recommended Filename: pool/main/d/doxygen/doxygen-latex_1.8.6-2_all.deb Size: 5120 MD5sum: d2a9349a312751adf81e3ca0d974dfef SHA1: fa5d12a0dc26c204717e83a510ff0687f281e1d1 SHA256: 89e1b23ce4a81928beeba0470ceb61bf85d975eca5440a240ff95d7684172252 Description: Documentation system for C, C++, Java, Python and other languages Multi-Arch: foreign Homepage: http://www.stack.nl/~dimitri/doxygen/ Description-md5: 0ef72aac65162cbb800870e839494cf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dpatch Priority: optional Section: devel Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Gergely Nagy Architecture: all Version: 2.0.35 Depends: bash (>= 3.0-6), dpkg-dev Recommends: fakeroot, patchutils Suggests: curl Filename: pool/main/d/dpatch/dpatch_2.0.35_all.deb Size: 54654 MD5sum: 97795d94a6d0f6feda375be2c5d73f80 SHA1: 72a68f6b0a869132881edcea9f2e26a24a363682 SHA256: c1a934bdba169ef1f59fe54e1c2cb0111b128b79ed091e534c4303e6862ed292 Description: patch maintenance system for Debian source packages Multi-Arch: foreign Description-md5: 286f2861a86b05464a69997c4054a622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dpkg Essential: yes Priority: required Section: admin Installed-Size: 6239 Maintainer: Ubuntu Developers Original-Maintainer: Dpkg Developers Architecture: amd64 Version: 1.17.5ubuntu5 Replaces: manpages-it (<< 2.80-4) Pre-Depends: libbz2-1.0, libc6 (>= 2.14), liblzma5 (>= 5.1.1alpha+20120614), libselinux1 (>= 2.1.0), zlib1g (>= 1:1.1.4), tar (>= 1.23) Suggests: apt Breaks: apt (<< 0.7.7), aptitude (<< 0.4.7-1), dpkg-dev (<< 1.15.8), libdpkg-perl (<< 1.15.8) Filename: pool/main/d/dpkg/dpkg_1.17.5ubuntu5_amd64.deb Size: 1956240 MD5sum: ed27e7e9c0fa6f2440f81700af419251 SHA1: 2fd8c704c6aee2c28ba59e9f5e2651239a160172 SHA256: 5f2980165aae60567d1947ec330a9e75e2eaaf974095cea5a5b20af709b49586 Description: Debian package management system Origin: Ubuntu Bugs: https://bugs.launchpad.net/ubuntu/+filebug Multi-Arch: foreign Homepage: https://wiki.debian.org/Teams/Dpkg Description-md5: 2f156c6a30cc39895ad3487111e8c190 Supported: 5y Task: minimal Package: dpkg-cross Priority: extra Section: utils Installed-Size: 204 Maintainer: Ubuntu Developers Original-Maintainer: Debian Embedded Group Architecture: all Version: 2.6.11ubuntu1 Depends: perl, debconf (>= 0.5) | debconf-2.0, dpkg-dev (>= 1.14.7), libconfig-auto-perl, libdebian-dpkgcross-perl (= 2.6.11ubuntu1) Recommends: fakeroot Suggests: binutils-multiarch Breaks: debhelper (<< 8.1.2~) Filename: pool/main/d/dpkg-cross/dpkg-cross_2.6.11ubuntu1_all.deb Size: 38438 MD5sum: abe829455c875a6fe9f6bb1bea1a3c11 SHA1: 1d48b41867966519225bf6ca9747a569a1547419 SHA256: 9ebc3a395cd9bfee242e6d7e57ed0925c5ee92c21568b3228a94b99328e0d4c6 Description: tools for cross compiling Debian packages Homepage: http://dpkg-cross.alioth.debian.org/ Description-md5: 9d0bf8c2e94aac7ec8ba6d07b4e081b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dpkg-dev Priority: optional Section: utils Installed-Size: 1634 Maintainer: Ubuntu Developers Original-Maintainer: Dpkg Developers Architecture: all Source: dpkg Version: 1.17.5ubuntu5 Replaces: manpages-it (<< 2.80-4) Depends: libdpkg-perl (= 1.17.5ubuntu5), bzip2, xz-utils, patch, make, binutils, base-files (>= 5.0.0) Recommends: gcc | c-compiler, build-essential, fakeroot, gnupg | gnupg2, gpgv | gpgv2, libalgorithm-merge-perl Suggests: debian-keyring Breaks: devscripts (<< 2.10.26), dpkg-cross (<< 2.0.0) Filename: pool/main/d/dpkg/dpkg-dev_1.17.5ubuntu5_all.deb Size: 726082 MD5sum: 8b00e60c75ce7dace3368967066721a6 SHA1: 10354d2d26d8e3b50b3d0c917bd74149fd30b93d SHA256: bd565a70d6b10ca68dc79c922414a3789fa44c6cafb99d646a8d9c0b244dffd9 Description: Debian package development tools Origin: Ubuntu Bugs: https://bugs.launchpad.net/ubuntu/+filebug Multi-Arch: foreign Homepage: https://wiki.debian.org/Teams/Dpkg Description-md5: 2eaf4b4a1cef9584869950f3a52106fc Build-Essential: yes Supported: 5y Package: dpkg-repack Priority: optional Section: admin Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Joey Hess Architecture: all Version: 1.37 Depends: perl Filename: pool/main/d/dpkg-repack/dpkg-repack_1.37_all.deb Size: 8280 MD5sum: d589f5b5630822f4ac4f6f3bfdaf2fa8 SHA1: 8a147b270733a9deabf61480262a3797a76f72ca SHA256: a3a8640d195972161334a3f83a914a760a7bcb918284715fd5982306898a3c69 Description: puts an unpacked .deb file back together Homepage: http://kitenet.net/~joey/code/dpkg-repack/ Description-md5: 35ebfa697cce16904a4a902c745064e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: dput Priority: optional Section: devel Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Y Giridhar Appaji Nag Architecture: all Version: 0.9.6.4ubuntu1 Depends: python (>= 2.5), gnupg Suggests: openssh-client, lintian, mini-dinstall, rsync, python-bzrlib Filename: pool/main/d/dput/dput_0.9.6.4ubuntu1_all.deb Size: 33128 MD5sum: de5ea4c148044a2dcfad57478e286d84 SHA1: 5949b7eabdf323431405a3526b93ab64f49beaa6 SHA256: 50e9f794630995fbb6c5c1efbc58a594c0bb6dfd7e3a1e0d7e66b3f3fc78c1dc Description: Debian package upload tool Description-md5: be606ab8f417df2f8c89a0ea937e9a78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: drac-dev Priority: optional Section: devel Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Noël Köthe Architecture: amd64 Source: drac Version: 1.12-8build1 Filename: pool/main/d/drac/drac-dev_1.12-8build1_amd64.deb Size: 6798 MD5sum: ffd495a157705230eb09d8ee2356193d SHA1: dc3cdea05529f8617144b306c8cad00eebeac11c SHA256: 44246526063a79302e0ff0a213abe2521b118c6751fb22f9fad4bf73105dd5f4 Description: Dynamic Relay Authorization Control (development files) Homepage: http://mail.cc.umanitoba.ca/drac/ Description-md5: b8d3a0f6e5fd46c1b5cdc83af4187251 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: drbd8-utils Priority: extra Section: admin Installed-Size: 944 Maintainer: Ubuntu Developers Original-Maintainer: Debian DRBD Maintainers Architecture: amd64 Source: drbd8 Version: 2:8.4.4-1ubuntu1 Replaces: drbd, drbd-utils Provides: drbd-utils Depends: libc6 (>= 2.16), init-system-helpers (>= 1.13~), perl Recommends: heirloom-mailx | mailx Suggests: heartbeat Conflicts: drbd-utils Filename: pool/main/d/drbd8/drbd8-utils_8.4.4-1ubuntu1_amd64.deb Size: 263132 MD5sum: 0dd9ab93d90b74f3c1f12c42cb3b9bd5 SHA1: 673ed7877a29fc1e53e7be96111e9640d3e2e290 SHA256: b68b163dbb3594c88c78c823b6020658902cbcac27a58ba2b24a04a836b2df26 Description: RAID 1 over TCP/IP for Linux (user utilities) Homepage: http://www.drbd.org/ Description-md5: 7da3dade742b03d1a9c08b339123f93b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dselect Priority: optional Section: admin Installed-Size: 1416 Maintainer: Ubuntu Developers Original-Maintainer: Dpkg Developers Architecture: amd64 Source: dpkg Version: 1.17.5ubuntu5 Replaces: dpkg-ftp, dpkg-multicd, manpages-it (<< 2.80-4) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libncursesw5 (>= 5.6+20070908), libstdc++6 (>= 4.1.1), libtinfo5, dpkg (>= 1.13.1) Suggests: perl Conflicts: dpkg-ftp, dpkg-multicd Filename: pool/main/d/dpkg/dselect_1.17.5ubuntu5_amd64.deb Size: 180670 MD5sum: 7fc079df9ef92e07006c00c20395684f SHA1: ae9679499844cee7853ee83739dbd11718c58cb7 SHA256: 4f8007d264fe4502e96d7683ad93eacfd357596e3ba38e9aef67ff7c64c18a1b Description: Debian package management front-end Origin: Ubuntu Bugs: https://bugs.launchpad.net/ubuntu/+filebug Multi-Arch: foreign Homepage: https://wiki.debian.org/Teams/Dpkg Description-md5: 269b383010cda7ddc3f6381398082aec Supported: 5y Package: duplicity Priority: optional Section: utils Installed-Size: 1164 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Zangerl Architecture: amd64 Version: 0.6.23-1ubuntu4 Depends: libc6 (>= 2.4), librsync1 (>= 0.9.6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-lockfile Suggests: rsync, python-paramiko, python-urllib3, python-oauthlib, python-boto, ncftp, python-cloudfiles, lftp, python-gdata, tahoe-lafs, python-swiftclient Breaks: deja-dup (<< 29.5) Filename: pool/main/d/duplicity/duplicity_0.6.23-1ubuntu4_amd64.deb Size: 198214 MD5sum: 6123b970cdb232747fe450e1f0ca74d6 SHA1: 9ae7bfe93ee8e179b56d0d749aeb5167e6f91654 SHA256: 68b44bf07e3db71eda78e9596d239555f915f733fd01965fe9b2045f1b0dd1c7 Description: encrypted bandwidth-efficient backup Homepage: http://duplicity.nongnu.org/ Description-md5: 4d1078d59b01217b0f9070c1c5c93a05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: dupload Priority: optional Section: devel Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: all Version: 2.7.0ubuntu1 Depends: perl, libnet-perl Recommends: openssh-client | ssh Suggests: lintian, mail-transport-agent Filename: pool/main/d/dupload/dupload_2.7.0ubuntu1_all.deb Size: 24984 MD5sum: dc6deb5ec548f23821a8c4558c9aa541 SHA1: 70a063da24e463c616905a6d719e73f0a855bc07 SHA256: 52d320c42a1702093ca611fd94f2f43cbeea8df9ce6fbf0c5fc6868120707dd8 Description: utility to upload Debian packages Description-md5: 86dd8dc6b2c98cc369b781a29edbde0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dvd+rw-tools Priority: optional Section: utils Installed-Size: 323 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: amd64 Version: 7.1-10build1 Depends: libc6 (>= 2.4), libstdc++6 (>= 4.1.1), genisoimage, growisofs (>= 7.1-9) Suggests: cdrskin Filename: pool/main/d/dvd+rw-tools/dvd+rw-tools_7.1-10build1_amd64.deb Size: 84104 MD5sum: a42d7d3758ede5c53c3ab28b3838d31e SHA1: 8ef57450dafc89a27ca858fb134c2609168d768f SHA256: e73fb745cb3ff9ede7fc2db55ae5e4a498581773e493c1be628fb0911c8149d8 Description: DVD+-RW/R tools Homepage: http://fy.chalmers.se/~appro/linux/DVD+RW/ Description-md5: 63f942222e20cd33a7d6646892c22266 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dvd+rw-tools-dbg Priority: extra Section: devel Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: amd64 Source: dvd+rw-tools Version: 7.1-10build1 Depends: dvd+rw-tools (= 7.1-10build1) Filename: pool/main/d/dvd+rw-tools/dvd+rw-tools-dbg_7.1-10build1_amd64.deb Size: 12082 MD5sum: 9929d22de79dd5e3312b1f9a3a7a8768 SHA1: 0c66958bac445f422101883ba694c27c782b72a7 SHA256: c2999cac897596f05bd4779edaf89e9192c3c5757e301087e7bc930e304dc333 Description: DVD+-RW/R tools (debug) Homepage: http://fy.chalmers.se/~appro/linux/DVD+RW/ Description-md5: ec18b175ab72dbb4b0c37e97b17de5bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dvipng Priority: optional Section: utils Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Varun Hiremath Architecture: amd64 Version: 1.14-2 Depends: libc6 (>= 2.14), libfreetype6 (>= 2.2.1), libgd3 (>= 2.1.0~alpha~), libkpathsea6, texlive-base-bin, ghostscript Filename: pool/main/d/dvipng/dvipng_1.14-2_amd64.deb Size: 81352 MD5sum: 11dda3f3076c1d696605fab28f118153 SHA1: 30a187017e520cfdadcc16b58627b7b791549191 SHA256: e92f18fef52655cf166950d896dc9647e88d039b0b1d92b3c018a95569cc3ac3 Description: convert DVI files to PNG graphics Homepage: http://www.nongnu.org/dvipng/ Description-md5: 5a07c90ad09a037b4cdf0fc0a7aa18bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dwarves Priority: extra Section: utils Installed-Size: 1074 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Girard Architecture: amd64 Source: dwarves-dfsg Version: 1.10-2 Depends: libc6 (>= 2.14), libdw1 (>= 0.148), libelf1 (>= 0.142), zlib1g (>= 1:1.1.4) Filename: pool/main/d/dwarves-dfsg/dwarves_1.10-2_amd64.deb Size: 480944 MD5sum: d516144ab456da3255d0a7200f0f00c8 SHA1: f7bfdbf9d3f069aa39667e3af6509f176522e68f SHA256: 78a96063f02b88d19778e30a01a4c1cff6f5bd2844c0544f4e1e14e93435cadb Description: set of advanced DWARF utilities Homepage: http://acmel.wordpress.com Description-md5: 33dbd1e2b20217578306e033e5d7c8e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: e2fslibs Priority: required Section: libs Installed-Size: 401 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Replaces: e2fsprogs (<< 1.34-1) Provides: libe2p2, libext2fs2 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/e/e2fsprogs/e2fslibs_1.42.9-3ubuntu1_amd64.deb Size: 182602 MD5sum: 0bf58efd3c2da680a4a83e715b7aab07 SHA1: b8badb1ef6290130175e98803b6ef1daa9aac0fb SHA256: dcb781ab54b30ce80cd983c1b7db1de05fef4bdb8c5e440e8cc2267e8e7f82af Description: ext2/ext3/ext4 file system libraries Multi-Arch: same Homepage: http://e2fsprogs.sourceforge.net Description-md5: ba4f61a3e0b238831f03143cbdce696e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: e2fslibs-dbg Priority: extra Section: libdevel Installed-Size: 1369 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Depends: e2fslibs (= 1.42.9-3ubuntu1) Filename: pool/main/e/e2fsprogs/e2fslibs-dbg_1.42.9-3ubuntu1_amd64.deb Size: 329494 MD5sum: cdf14a364adfaa0d7433fd7c4004552c SHA1: 4e178c5e83858e2ae513858f41e4dd7219427f44 SHA256: 88f7f58c23bba17dd6d0dfa5c4d545780c85a77149e1c0b9f6953fcf67335d85 Description: debugging information for e2fslibs Homepage: http://e2fsprogs.sourceforge.net Description-md5: 3ae73487772accd1aaa7b4e391b84e21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: e2fslibs-dev Priority: extra Section: libdevel Installed-Size: 870 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Replaces: libkrb5-dev (<< 1.3) Provides: e2p-dev, ext2fs-dev Depends: libc6-dev | libc-dev, comerr-dev, e2fslibs (= 1.42.9-3ubuntu1) Suggests: doc-base Filename: pool/main/e/e2fsprogs/e2fslibs-dev_1.42.9-3ubuntu1_amd64.deb Size: 200344 MD5sum: 578ba38a14d2bc08623ea1fe744c65ec SHA1: 7095fe84d9c31e776f60bf2a820c75c9cd7acfe2 SHA256: fcf375a25c87a16199681103e4c626f97fd5742731964e77e675e90caa24bcc8 Description: ext2/ext3/ext4 file system libraries - headers and static libraries Homepage: http://e2fsprogs.sourceforge.net Description-md5: 6c413fbf2fbe007c87112b744560fc94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: e2fsprogs Essential: yes Priority: required Section: admin Installed-Size: 2440 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Version: 1.42.9-3ubuntu1 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.42.9-3ubuntu1), libblkid1 (>= 2.17.2), libc6 (>= 2.14), libcomerr2 (>= 1.42~WIP-2011-10-05-1), libss2 (>= 1.34-1), libuuid1 (>= 2.16), util-linux (>= 2.15~rc1-1) Suggests: gpart, parted, e2fsck-static Conflicts: dump (<< 0.4b4-4), initscripts (<< 2.85-4), quota (<< 1.55-8.1), sysvinit (<< 2.85-4) Filename: pool/main/e/e2fsprogs/e2fsprogs_1.42.9-3ubuntu1_amd64.deb Size: 666172 MD5sum: 9520a4d67563c08a057df80a0d55c17e SHA1: 95900ebf0bc6758649e8d5f2df20a1fb51026549 SHA256: d8f7600f981c24174fcfef04bf47f1eee987f6f5d8fe20997be91cda64f1cd6e Description: ext2/ext3/ext4 file system utilities Multi-Arch: foreign Homepage: http://e2fsprogs.sourceforge.net Description-md5: 3cc82e29372f2405b28e6171db1e687d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: e2fsprogs-dbg Priority: extra Section: devel Installed-Size: 4507 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Depends: e2fsprogs (= 1.42.9-3ubuntu1) Filename: pool/main/e/e2fsprogs/e2fsprogs-dbg_1.42.9-3ubuntu1_amd64.deb Size: 967030 MD5sum: b9843a14c81f389f90bd1bb61275925c SHA1: f3ddc07199a4998fe1b7a7fd81c5538d4a9611d2 SHA256: 44ff75b602439a0868ce460d49c54545be43a962c1dc70f559e891928ea779f1 Description: debugging information for e2fsprogs Homepage: http://e2fsprogs.sourceforge.net Description-md5: f0f860f2f03441dce76ec09fc4fdde9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: eatmydata Priority: optional Section: utils Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: amd64 Source: libeatmydata Version: 26-2 Provides: libeatmydata Depends: libc6 (>= 2.2.5) Filename: pool/main/libe/libeatmydata/eatmydata_26-2_amd64.deb Size: 8034 MD5sum: a12811bc18802ca88eaac1c361c49dd1 SHA1: 4e928424bea40866e3daaaab332cd25ebee18c4a SHA256: 580b8d2d50910ddc435fc560801cba9653866047eb0a2f5a08c6f988ec101923 Description: library and utilities designed to disable fsync and friends Homepage: https://launchpad.net/libeatmydata Description-md5: 8b35348223c5f515ecb4a88949a00006 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: ebtables Priority: optional Section: net Installed-Size: 370 Maintainer: Ubuntu Developers Original-Maintainer: Jochen Friedrich Architecture: amd64 Version: 2.0.10.4-3ubuntu1 Depends: libc6 (>= 2.14) Recommends: iptables, kmod Filename: pool/main/e/ebtables/ebtables_2.0.10.4-3ubuntu1_amd64.deb Size: 77460 MD5sum: f96583701c00105823f3f47dea83d916 SHA1: 5a23606a5db0aef326bee5bab3586cf0243819b9 SHA256: 0428070cc21cd217165acf56321cf339b58a2aa2f5ac50cd828cc4747c460368 Description: Ethernet bridge frame table administration Homepage: http://ebtables.sourceforge.net Description-md5: 1ee8adc32f9027f83fc2926324d15ddf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: ecj Priority: optional Section: devel Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: amd64 Version: 3.9.0-1 Replaces: ecj-bootstrap (<< 3.2.2), eclipse-ecj Depends: libecj-java (>= 3.9.0-1), gcj-4.8-jre-headless (>= 4.4.6), gcj-4.8-jre-lib (>= 4.4.6), java-common (>= 0.23) Recommends: ecj-gcj Suggests: ant Conflicts: ecj-bootstrap (<< 3.2.2), eclipse-ecj Filename: pool/main/e/ecj/ecj_3.9.0-1_amd64.deb Size: 8800 MD5sum: 522b1933c138d0f99dda3d9c52888ff9 SHA1: c370139f645ba79d66a3cd15d9b0a5e0ad360845 SHA256: c39877a553db27d7b646be084cb824e04df913ce9f9ea57440ae4f3b6471d6d2 Description: standalone version of the Eclipse Java compiler Description-md5: e6284592785e30058ea1bd0ff42945b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ecj-gcj Priority: optional Section: devel Installed-Size: 4783 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: amd64 Source: ecj Version: 3.9.0-1 Replaces: ecj-bootstrap-gcj (<< 3.2.2), eclipse-ecj-gcj Provides: libecj-java-gcj Depends: ecj (>= 3.9.0-1), libecj-java-gcj (>= 3.9.0-1), libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.1-1~) Recommends: java-gcj-compat (>= 1.0.69) Conflicts: eclipse-ecj-gcj Filename: pool/main/e/ecj/ecj-gcj_3.9.0-1_amd64.deb Size: 1304110 MD5sum: b4f437257af36428675a96fa3659046f SHA1: 02468956f5c537241362b7e5ce9fefb5401c5433 SHA256: b74b96faf87cc2dc4b08e3d80767c74a64c54f2b4e7f8270809b07948f6ea11d Description: standalone version of the Eclipse Java compiler (native version) Description-md5: 87a3c61abece4f35d693d02aceff0ca5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ecryptfs-utils Priority: optional Section: misc Installed-Size: 560 Maintainer: Dustin Kirkland Original-Maintainer: Daniel Baumann Architecture: amd64 Version: 104-0ubuntu1 Depends: libc6 (>= 2.14), libecryptfs0, libkeyutils1, libpam0g (>= 0.99.7.1), gettext-base, keyutils, libnss3-1d, libpam-runtime (>= 1.0.1-6) Recommends: cryptsetup, lsof, rsync Suggests: opencryptoki, zescrow-client Filename: pool/main/e/ecryptfs-utils/ecryptfs-utils_104-0ubuntu1_amd64.deb Size: 102690 MD5sum: 930bbf6b2e2f61e4dd30c060e79c1479 SHA1: 58c9891e58952579148c21634fa461cbb01269b4 SHA256: 095e57c1a95b3e8b149d29cb35f0ecb8c7c2e108c131c837ee48d3dd5a07295c Description: ecryptfs cryptographic filesystem (utilities) Homepage: http://ecryptfs.org/ Description-md5: 86edf09a53857e8032a0fe1204a813d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: ecryptfs-utils-dbg Priority: extra Section: debug Installed-Size: 770 Maintainer: Dustin Kirkland Original-Maintainer: Daniel Baumann Architecture: amd64 Source: ecryptfs-utils Version: 104-0ubuntu1 Depends: ecryptfs-utils (= 104-0ubuntu1), libecryptfs0 (= 104-0ubuntu1), libecryptfs-dev (= 104-0ubuntu1) Filename: pool/main/e/ecryptfs-utils/ecryptfs-utils-dbg_104-0ubuntu1_amd64.deb Size: 230062 MD5sum: 78c5b042c53cd074fb84e5ee85f258c3 SHA1: cb3fc9e01af07105a0eeeedfc0d01ff972c2aee9 SHA256: 4650a0acd646c7e935ebc43a917ba1a7ed9e016655e1deec67a82d1d3403fcb4 Description: ecryptfs cryptographic filesystem (utilities; debug) Homepage: http://ecryptfs.org/ Description-md5: 6b21be33a53e819cceba44f8b3206783 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ed Priority: standard Section: editors Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Martin Zobel-Helas Architecture: amd64 Version: 1.9-2 Depends: libc6 (>= 2.14) Filename: pool/main/e/ed/ed_1.9-2_amd64.deb Size: 52552 MD5sum: 17c437d0d0919774c6b7042ea12fac24 SHA1: bdbdc8b0d63f2550e7e9c696f0e585d25757de25 SHA256: a6572ae066934d1e22e110a78d79f344000eba6a0498fabbce47016f6e3e7b8a Description: classic UNIX line editor Multi-Arch: foreign Homepage: http://www.gnu.org/software/ed/ Description-md5: 10ab4f4d0d094d088419c432af89cf48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: efibootmgr Priority: optional Section: admin Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: amd64 Version: 0.5.4-7ubuntu1 Depends: libc6 (>= 2.14), libpci3 (>= 1:3.2.1-1) Filename: pool/main/e/efibootmgr/efibootmgr_0.5.4-7ubuntu1_amd64.deb Size: 28392 MD5sum: c2b74ba7fc6bef59fdfcbafa4ec2f6c7 SHA1: 7dca3a4be1adebacf7385d03ea49525d6411d319 SHA256: 308590ecedd15b09df87532b121286b77da46cb428abdf3121233f4c9cab9003 Description: Interact with the EFI Boot Manager Description-md5: 88166155034b3db745bdc7b3f0220152 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: eglibc-source Priority: optional Section: devel Installed-Size: 24686 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: all Source: eglibc Version: 2.19-0ubuntu6 Recommends: xz-utils Filename: pool/main/e/eglibc/eglibc-source_2.19-0ubuntu6_all.deb Size: 13968406 MD5sum: da6133c140473f1b230e988085ff6e88 SHA1: 51d8c1432c962658b8f27caf17e11977698ddca1 SHA256: 29918417d44eed0032da07efa4cb3755fad542ab1beb662cdab933925042e4df Description: Embedded GNU C Library: sources Multi-Arch: foreign Homepage: http://www.eglibc.org Description-md5: e4d1c2960e50de66688b8a889117873c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: eject Priority: important Section: utils Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Frank Lichtenheld Architecture: amd64 Version: 2.1.5+deb1+cvs20081104-13.1 Depends: libc6 (>= 2.8), libdevmapper1.02.1 (>= 2:1.02.20) Suggests: cdtool, setcd Filename: pool/main/e/eject/eject_2.1.5+deb1+cvs20081104-13.1_amd64.deb Size: 23226 MD5sum: 00f6854e1f976a8631187818db0e47c4 SHA1: ffb513e724dc147c2185fdc097d2774f51d6d625 SHA256: 498860147bfa5dfb135008db9bd8d02d252806a57622f7b1204380ff64c1c7cd Description: ejects CDs and operates CD-Changers under Linux Multi-Arch: foreign Homepage: http://www.pobox.com/~tranter/eject.html Description-md5: 9a5f66fd7e4bca3deeb3357f3e927ab3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: elks-libc Priority: optional Section: devel Installed-Size: 651 Maintainer: Ubuntu Developers Original-Maintainer: Juan Cespedes Architecture: all Source: linux86 Version: 0.16.17-3.1ubuntu3 Replaces: bcc (<< 0.14.9), linux86 Recommends: bcc (= 0.16.17-3.1ubuntu3) Conflicts: linux86 Filename: pool/main/l/linux86/elks-libc_0.16.17-3.1ubuntu3_all.deb Size: 214574 MD5sum: 75d87d8c2c906579ec84624fff93d76d SHA1: 5cd6d3b9c5a881ad5fcdcffbd5a075761b017731 SHA256: 57bee73becbeae5dc2bc4cd859c13dc065e4a49472d876225e3e37fd6538feb2 Description: 16-bit x86 C library and include files Description-md5: 2da04d6881989db1f4a11df4a992c06f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: emacs Priority: optional Section: editors Installed-Size: 25 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Source: emacs-defaults Version: 45.0ubuntu1 Depends: emacs24 | emacs24-lucid | emacs24-nox Filename: pool/main/e/emacs-defaults/emacs_45.0ubuntu1_all.deb Size: 1624 MD5sum: 2648ac76d7058d4a722ae304e474aa06 SHA1: 6667aaf3b043b44f10271b943dbb9dbb9620dbf2 SHA256: cb9185c543841971a754ebf8c6a35396c865171532b407dce5b5447c41cfa232 Description: GNU Emacs editor (metapackage) Description-md5: 21fb7da111336097a2378959f6d6e6a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: emacs-goodies-el Priority: optional Section: editors Installed-Size: 3508 Maintainer: Ubuntu Developers Original-Maintainer: Peter S Galbraith Architecture: all Version: 35.8ubuntu2 Replaces: emacs-goodies-extra-el Provides: emacs-goodies-extra-el Depends: emacs24 | emacsen, bash (>= 2.05a) | bash-static, dpkg (>= 1.15.4) | install-info Recommends: dict, wget, perl-doc Filename: pool/main/e/emacs-goodies-el/emacs-goodies-el_35.8ubuntu2_all.deb Size: 654048 MD5sum: 47d0361a8edf728c0d14750fc0d93f2f SHA1: 660e1244966fae845e15f01314a40c18e0f1ef40 SHA256: ff8ce718940efcd3a9cf6949e9514951976eb6b18f4914333e84343869cf2e15 Description: Miscellaneous add-ons for Emacs Description-md5: ecf648ccbfa7121d2a087f7d0fdab229 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: emacs24 Priority: optional Section: editors Installed-Size: 16790 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: amd64 Version: 24.3+1-2ubuntu1 Replaces: emacs24-lucid, emacs24-nox Provides: editor, emacsen, info-browser, mail-reader, news-reader Depends: emacs24-bin-common (= 24.3+1-2ubuntu1), gconf-service, libasound2 (>= 1.0.16), libc6 (>= 2.15), libcairo2 (>= 1.2.4), libdbus-1-3 (>= 1.5.12), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgif4 (>= 4.1.4), libglib2.0-0 (>= 2.37.3), libgnutls26 (>= 2.12.17-0), libgpm2 (>= 1.20.4), libgtk-3-0 (>= 3.2.1), libice6 (>= 1:1.0.0), libjpeg8 (>= 8c), libm17n-0 (>= 1.6.1), libmagickcore5 (>= 8:6.7.7.10), libmagickwand5 (>= 8:6.7.7.10), libotf0 (>= 0.9.11), libpango-1.0-0 (>= 1.18.0), libpng12-0 (>= 1.2.13-4), librsvg2-2 (>= 2.14.4), libselinux1 (>= 1.32), libsm6, libtiff5 (>= 4.0.3), libtinfo5, libx11-6, libxft2 (>> 2.1.1), libxml2 (>= 2.7.4), libxpm4, libxrender1 Conflicts: emacs24-lucid, emacs24-nox Filename: pool/main/e/emacs24/emacs24_24.3+1-2ubuntu1_amd64.deb Size: 3178990 MD5sum: cf4a99d07c998a639185c33d6e608f7c SHA1: 7e6b68e5fbdab801d64c97d37e740290d4f7d2ed SHA256: e48857d497f16969dca2db3e5d9b111aaad5f9e8d9568ac434350f973c338ba4 Description: GNU Emacs editor (with GTK+ user interface) Homepage: http://www.gnu.org/software/emacs/ Description-md5: ac8913ffe24029ae506e2840dc7a29da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: emacs24-bin-common Priority: optional Section: editors Installed-Size: 435 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: amd64 Source: emacs24 Version: 24.3+1-2ubuntu1 Depends: emacs24-common (= 24.3+1-2ubuntu1), libc6 (>= 2.17), liblockfile1 (>= 1.0) Filename: pool/main/e/emacs24/emacs24-bin-common_24.3+1-2ubuntu1_amd64.deb Size: 103954 MD5sum: b27adee7d7111ec4aa62523ad940a2d7 SHA1: 27d7192018bfc75003941c1cc732423d27b2a458 SHA256: 26c54099364c9ee9a880c240aa4c35b6d81fca90755539013b6def13c8d08738 Description: GNU Emacs editor's shared, architecture dependent files Homepage: http://www.gnu.org/software/emacs/ Description-md5: 5ff3152634868791fef583ffea47e2ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: emacs24-common Priority: optional Section: editors Installed-Size: 62997 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Source: emacs24 Version: 24.3+1-2ubuntu1 Depends: emacsen-common (>= 1.4.10), dpkg (>= 1.15.4) | install-info, emacs24-common-non-dfsg Suggests: emacs24-el Conflicts: cedet, eieio, emacs24-el (<< 24.3+1-2ubuntu1), speedbar Filename: pool/main/e/emacs24/emacs24-common_24.3+1-2ubuntu1_all.deb Size: 13714576 MD5sum: 9495eedb7a75080e7c8a667dbaa939b1 SHA1: 1fe23bd8a96553c997869b1c1b348385b71a3fe8 SHA256: de1c8b7cd1fd80ba561d3772e71e190674638e61fec06c4e2bdcbfe5dda95758 Description: GNU Emacs editor's shared, architecture independent infrastructure Homepage: http://www.gnu.org/software/emacs/ Description-md5: 6a12ee1a523f1f778a591101a037892d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: emacs24-common-non-dfsg Priority: optional Section: editors Installed-Size: 4481 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Source: emacs24-non-dfsg Version: 24.3+1-1 Replaces: emacs22-common (<< 22.2) Depends: dpkg (>= 1.15.4) | install-info Conflicts: emacs22-common (<< 22.2) Filename: pool/main/e/emacs24-non-dfsg/emacs24-common-non-dfsg_24.3+1-1_all.deb Size: 4420980 MD5sum: b46d6f1d6adb20d6133f91a9d967ba23 SHA1: bae1325aa44d1e62cf360849005090a734b731b2 SHA256: e41bdd38edb58c3e25085932d830b223908b2ae0edc17552c994d4badf11e0f0 Description: GNU Emacs common non-DFSG items, including the core documentation Description-md5: 4ec84c62d4d6533d9f6a093fa1157b61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: emacs24-dbg Priority: extra Section: debug Installed-Size: 3511 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: amd64 Source: emacs24 Version: 24.3+1-2ubuntu1 Filename: pool/main/e/emacs24/emacs24-dbg_24.3+1-2ubuntu1_amd64.deb Size: 3185606 MD5sum: 24f9c4efc3073e9a165122e76e76566f SHA1: 696ca4427edb20ba235062a5228428acb500c30f SHA256: 351bdcdbb9974faf3f062172899e8aa4cd7b6859518603f93d011406da9642d4 Description: Debugging symbols for emacs24 Homepage: http://www.gnu.org/software/emacs/ Description-md5: 925a29ce071ba7bede24b5e8a656e2b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: emacs24-el Priority: optional Section: editors Installed-Size: 14443 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Source: emacs24 Version: 24.3+1-2ubuntu1 Depends: emacs24-common (= 24.3+1-2ubuntu1) Filename: pool/main/e/emacs24/emacs24-el_24.3+1-2ubuntu1_all.deb Size: 14786502 MD5sum: a7a3eba27a356cfa17c8dbf07d83601c SHA1: 5a339c8fa88747af0de41b16f6b63205634ac888 SHA256: 3181357118216d470e36802e5252979dc0c675fc44851adfeb52020c0ba54e23 Description: GNU Emacs LISP (.el) files Homepage: http://www.gnu.org/software/emacs/ Description-md5: 293759cc44e4faeb7e4ad6e292cf8c63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: emacs24-lucid-dbg Priority: extra Section: debug Installed-Size: 3524 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: amd64 Source: emacs24 Version: 24.3+1-2ubuntu1 Filename: pool/main/e/emacs24/emacs24-lucid-dbg_24.3+1-2ubuntu1_amd64.deb Size: 3201514 MD5sum: 8ad42f964bd0ebbd7ec46463e0a8a405 SHA1: 930efd8fc07e8dc1859c9bd715d803c88d5e37e3 SHA256: 8f3b1758bb83f7958b53137348033c9d941f8ffd5812fa97e03c75525e9b842e Description: Debugging symbols for emacs24-lucid Homepage: http://www.gnu.org/software/emacs/ Description-md5: 169d344d01c40efc75f57d32fba2d5eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: emacs24-nox Priority: optional Section: editors Installed-Size: 15442 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: amd64 Source: emacs24 Version: 24.3+1-2ubuntu1 Replaces: emacs24, emacs24-lucid Provides: editor, emacs24, emacsen, info-browser, mail-reader, news-reader Depends: emacs24-bin-common (= 24.3+1-2ubuntu1), libasound2 (>= 1.0.16), libc6 (>= 2.15), libdbus-1-3 (>= 1.5.12), libgnutls26 (>= 2.12.17-0), libgpm2 (>= 1.20.4), libselinux1 (>= 1.32), libtinfo5, libxml2 (>= 2.7.4) Conflicts: emacs24, emacs24-lucid Filename: pool/main/e/emacs24/emacs24-nox_24.3+1-2ubuntu1_amd64.deb Size: 2807352 MD5sum: fcbca59503e2ecd4a1ee99a81e311141 SHA1: c16fe4eab2e651e18d120a81de66f7f82fa5f4b3 SHA256: 6ca0e698efc798dafb938f25a4bd1d73fb0a99b896421651ca8b08db244d6839 Description: GNU Emacs editor (without X support) Homepage: http://www.gnu.org/software/emacs/ Description-md5: 266bc7f40cce319d43c2bee556304f6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: emacs24-nox-dbg Priority: extra Section: debug Installed-Size: 2497 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: amd64 Source: emacs24 Version: 24.3+1-2ubuntu1 Filename: pool/main/e/emacs24/emacs24-nox-dbg_24.3+1-2ubuntu1_amd64.deb Size: 2219382 MD5sum: 63cb1256cb4e682063ff2d39c1fc794e SHA1: feb45b897c614db322f57cfb9e5e99f3920ac86c SHA256: 00661484b8c2197aed7de2f8f50487e9b50a52ae859f194a54951b736b7c8796 Description: Debugging symbols for emacs24-nox Homepage: http://www.gnu.org/software/emacs/ Description-md5: 4389abe1e6662a2323ce69ab7cf9f2c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: emacsen-common Priority: optional Section: editors Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Version: 2.0.7 Filename: pool/main/e/emacsen-common/emacsen-common_2.0.7_all.deb Size: 17136 MD5sum: cd6d92d1f1fc4168a322adba7e980e12 SHA1: ea6a4dca015d0334cd9739de0f34dc9f52739ba2 SHA256: 509dd1c460038cdc7e7646533dc9ab48599c4ba046420bf24dc106938947fb25 Description: Common facilities for all emacsen Description-md5: 181ad2d7eef0b855d8f6d9bbf2373d8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: empathy Priority: optional Section: gnome Installed-Size: 2812 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Version: 3.8.6-0ubuntu9 Replaces: empathy-call, libempathy-gtk-common Provides: empathy-call Depends: libaccounts-glib0 (>= 1.0), libc6 (>= 2.7), libcairo2 (>= 1.2.4), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libcheese-gtk23 (>= 3.4.0), libclutter-1.0-0 (>= 1.10.0), libclutter-gst-2.0-0 (>= 0.10.0), libclutter-gtk-1.0-0 (>= 1.4), libcogl15 (>= 1.15.8), libdbus-glib-1-2 (>= 0.88), libenchant1c2a (>= 1.6.0), libfarstream-0.2-2 (>= 0.1.91), libfolks-telepathy25 (>= 0.6.6), libfolks25 (>= 0.7.3), libgcr-base-3-1 (>= 3.8.0), libgcr-ui-3-1 (>= 3.8.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libgee-0.8-2 (>= 0.8.3), libgeoclue0 (>= 0.11.1+git20091217), libglib2.0-0 (>= 2.37.3), libgnutls26 (>= 2.12.17-0), libgoa-1.0-0b (>= 3.5.1), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.5.1), libgudev-1.0-0 (>= 146), libido3-0.1-0 (>= 0.1.8), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.18.0), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), libsecret-1-0 (>= 0.7), libsignon-glib1 (>= 1.1), libsoup2.4-1 (>= 2.4.0), libtelepathy-farstream3 (>= 0.6.0), libtelepathy-glib0 (>= 0.19.9), libtelepathy-logger3 (>= 0.8.0), libunity9 (>= 3.4.6), libwebkitgtk-3.0-0 (>= 1.3.10), libx11-6, libxml2 (>= 2.7.4), dconf-gsettings-backend | gsettings-backend, empathy-common (= 3.8.6-0ubuntu9), telepathy-mission-control-5 (>= 1:5.12.0), gsettings-desktop-schemas, gnome-icon-theme (>= 2.30.0), geoclue, telepathy-logger (>= 0.2.13), dbus-x11, gstreamer1.0-pulseaudio Recommends: telepathy-gabble, telepathy-salut, telepathy-haze, gvfs-backends, gnome-contacts, mcp-account-manager-uoa | mcp-account-manager-goa, nautilus-sendto-empathy, sound-theme-freedesktop Suggests: vino, telepathy-idle Conflicts: empathy-call Filename: pool/main/e/empathy/empathy_3.8.6-0ubuntu9_amd64.deb Size: 570496 MD5sum: 946f7d8b77c1e4a6d46d23b50be6eb07 SHA1: 9c1cf0a2a3c629fecd1faa41c9d03246b8ab967b SHA256: cdd87e21e301774a1373e168049112b123c537a90da7a05e9c84e8f2f0d2f759 Description: GNOME multi-protocol chat and call client Homepage: http://wiki.gnome.org/Empathy Description-md5: 3de154866a0cfb4298a6b2fcadb16cac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: empathy-common Priority: optional Section: gnome Installed-Size: 4868 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: empathy Version: 3.8.6-0ubuntu9 Replaces: empathy (<< 2.27.92), empathy-doc, libempathy-common, libempathy-gtk-common Provides: empathy-doc, libempathy-common, libempathy-gtk-common Recommends: yelp Conflicts: empathy-doc, libempathy-common, libempathy-gtk-common Filename: pool/main/e/empathy/empathy-common_3.8.6-0ubuntu9_all.deb Size: 1518984 MD5sum: 5f8ec7f0d294362b7197cc0f268f11df SHA1: dbbf73dc6045bc212f175ccb68c22f2c50432b49 SHA256: 4e5aa6f6ad22c7a643a8ac201e49ba426ab2357dd4aefee0f72062ef1b95638e Description: GNOME multi-protocol chat and call client (common files) Homepage: http://wiki.gnome.org/Empathy Description-md5: 8058f46e415708e37ee31059dfde834a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: empathy-dbg Priority: extra Section: debug Installed-Size: 7530 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: empathy Version: 3.8.6-0ubuntu9 Depends: empathy (= 3.8.6-0ubuntu9) Filename: pool/main/e/empathy/empathy-dbg_3.8.6-0ubuntu9_amd64.deb Size: 1591598 MD5sum: fcf37aaa3aca354f08864aa6fa291040 SHA1: 0a068030ebe7543c3c436bb336f4fa00df8404e5 SHA256: 2f6b3da64efe9e461ccb3c6219391364176f82a797b99cea1aa6f1cf4b2a8717 Description: GNOME multi-protocol chat and call client (debug symbols) Homepage: http://wiki.gnome.org/Empathy Description-md5: 10c077168b23f9e2baf359b50747ddb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: enchant Priority: optional Section: text Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Prach Pongpanich Architecture: amd64 Version: 1.6.0-10ubuntu1 Replaces: libenchant1c2a (<< 1.6.0-4) Depends: libc6 (>= 2.3.4), libenchant1c2a (>= 1.6.0), libglib2.0-0 (>= 2.12.0) Breaks: libenchant1c2a (<< 1.6.0-4) Filename: pool/main/e/enchant/enchant_1.6.0-10ubuntu1_amd64.deb Size: 12168 MD5sum: 607c7d630aabf07e54c0f594deea56fd SHA1: a5f756f216264c9411a579480362685617b6c412 SHA256: 8b174c3f35627b2bcc0994c11b7f2e721db835c4457d11c68d0fcbc7aaea1413 Description: Wrapper for various spell checker engines (binary programs) Homepage: http://www.abisource.com/projects/enchant/ Description-md5: 468849838461717319f3b939b17d0750 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: eog Priority: optional Section: gnome Installed-Size: 2716 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.10.2-0ubuntu5 Replaces: gir1.2-eog-3.0 Depends: libatk1.0-0 (>= 1.32.0-2~), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libexempi3 (>= 2.2.0), libexif12, libgdk-pixbuf2.0-0 (>= 2.22.0), libgirepository-1.0-1 (>= 0.9.3), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.2.0), libgrip0 (>= 0.1.0), libgtk-3-0 (>= 3.7.8), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libpeas-1.0-0 (>= 1.0.0), librsvg2-2 (>= 2.36.2), libx11-6, libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4), dconf-gsettings-backend | gsettings-backend, gir1.2-gtk-3.0, gnome-icon-theme (>= 2.19.1), shared-mime-info (>= 0.20), gsettings-desktop-schemas (>= 2.91.92), gir1.2-peas-1.0 Recommends: librsvg2-common, yelp Conflicts: gir1.2-eog-3.0 Breaks: eog-plugins (<< 2.91) Filename: pool/main/e/eog/eog_3.10.2-0ubuntu5_amd64.deb Size: 625346 MD5sum: 55874632c6f4e473ab75eb3e383a0f27 SHA1: 609f4747def6f57ab65d8b18fb8b694d49d381e0 SHA256: db9088d07e4b07eae677e4c45a3ef3cbad714bf175197f80e2678504dd2c3a00 Description: Eye of GNOME graphics viewer program Homepage: http://projects.gnome.org/eog Description-md5: a17b1b698fda7b280b8e85d7b08c5d27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: eog-dbg Priority: extra Section: gnome Installed-Size: 2130 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: eog Version: 3.10.2-0ubuntu5 Depends: eog (= 3.10.2-0ubuntu5) Filename: pool/main/e/eog/eog-dbg_3.10.2-0ubuntu5_amd64.deb Size: 502054 MD5sum: bf20e92de29e87c24dd0df29f58ce65f SHA1: c0568d4e39f8604883bf659c5a1fe217ef740233 SHA256: f3d938d3955743133d8feffea6f7591146c9687ad790ddfe43e40a610b61398b Description: Eye of GNOME graphics viewer program - debugging symbols Homepage: http://projects.gnome.org/eog Description-md5: 2bd18fd76c12144cf92a1f8244b4214a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: eog-dev Priority: optional Section: gnome Installed-Size: 1404 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: eog Version: 3.10.2-0ubuntu5 Depends: eog (>= 3.10.2-0ubuntu5), libgtk-3-dev (>= 3.0.0) Filename: pool/main/e/eog/eog-dev_3.10.2-0ubuntu5_all.deb Size: 125822 MD5sum: 9c5f0a2226c2d60146d251fd0b24fc08 SHA1: c2e45623c329c9d3246335df6008b55c32de0148 SHA256: 6e04a84847c5c6fc8ddd50ac40e63888ad76acf49dcb78aae1e5efea636f0528 Description: Development files for the Eye of GNOME Homepage: http://projects.gnome.org/eog Description-md5: a1e8edcec2412e3deacc23f403c2195f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: eperl Priority: optional Section: devel Installed-Size: 313 Maintainer: Ubuntu Developers Original-Maintainer: Debian WML Packaging Team Architecture: amd64 Version: 2.2.14-20build1 Depends: libc6 (>= 2.14), libperl5.18 (>= 5.18.1), perl (>= 5.18.1-4), perlapi-5.18.1 Suggests: libapache2-mod-perl2 Filename: pool/main/e/eperl/eperl_2.2.14-20build1_amd64.deb Size: 116614 MD5sum: e5fe94623e00703684951a6df4e0c0b6 SHA1: 12786ec2cebfe35e7b8dae19e702a8d1bb589bdb SHA256: ede7aa6462bd14bfa3ce22f371d5eee777a890f277ae179b392f139f46554779 Description: Embedded Perl 5 Language Homepage: http://www.ossp.org/pkg/tool/eperl/ Description-md5: 8c031cf4d8b7bf7f078c7b2aac563af3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: epydoc-doc Priority: optional Section: doc Installed-Size: 14114 Maintainer: Ubuntu Developers Original-Maintainer: Kenneth J. Pronovici Architecture: all Source: epydoc Version: 3.0.1+dfsg-4 Recommends: iceweasel | www-browser Filename: pool/main/e/epydoc/epydoc-doc_3.0.1+dfsg-4_all.deb Size: 905442 MD5sum: 4f974688ea6b89954421b72f8f4f1e47 SHA1: 4312feb01ddf1472a1f80b601e57cf5c0c38abd4 SHA256: 6899fda99bae523dfa271c3bd9ee02f6717f331489fe9afaba92a266a431b4fc Description: tool for documenting Python modules (documentation) Homepage: http://epydoc.sourceforge.net/ Description-md5: 62a87a5b5e1f848de8ae6118f6c98253 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-asn1 Priority: optional Section: interpreters Installed-Size: 1112 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.14) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-asn1_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 737696 MD5sum: 6619cd0d891dd09acda30c778a32e085 SHA1: 2a03019874f08b75b2e758480cdab68c940a3bdb SHA256: 3d3b9e02f453978dff4882fd39c46ad560f6c80b0a336265ccb89ba0fa7c2141 Description: Erlang/OTP modules for ASN.1 support Homepage: http://www.erlang.org/ Description-md5: ee4d0b49672ea14e8a224f00c393a8c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-base Priority: optional Section: interpreters Installed-Size: 12565 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe, erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-doc-html (<< 1:13.b.4), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Provides: erlang-abi-15.b Depends: procps, libc6 (>= 2.14), libtinfo5, zlib1g (>= 1:1.2.2) Recommends: libsctp1 (>= 1.0.15+dfsg), erlang-crypto (= 1:16.b.3-dfsg-1ubuntu2), erlang-syntax-tools (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang-tools (= 1:16.b.3-dfsg-1ubuntu2), erlang, erlang-manpages, erlang-doc Conflicts: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe, erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-doc-html (<< 1:13.b.4), erlang-manpages (<= 1:11.b.1-2) Filename: pool/main/e/erlang/erlang-base_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 6518296 MD5sum: 06536f8d33673c959e862b45351ce6a2 SHA1: e6bedc33f0cbcf933fc609e271d9acdb562a9687 SHA256: e2783ee1f08d96a63642a7eb5df0589b419f805d81b199f7e8dc4a8818bfd752 Description: Erlang/OTP virtual machine and base applications Homepage: http://www.erlang.org/ Description-md5: eb27cf1ed982601f2dcb1802ba9d4396 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-corba Priority: optional Section: interpreters Installed-Size: 3467 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-inets (= 1:16.b.3-dfsg-1ubuntu2), erlang-mnesia (= 1:16.b.3-dfsg-1ubuntu2), erlang-ssl (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-corba_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 2234018 MD5sum: d7f82521a35bbfc9b16dcbc2102e1888 SHA1: a2d65b5ab58bd0beff6a05d2890d10c7df5f567b SHA256: 32ceeeff9f5475dc09e9aba552445b245ec071c24e5b09939fb7683dfe21a0e9 Description: Erlang/OTP applications for CORBA support Homepage: http://www.erlang.org/ Description-md5: f04931348634fb479d846559ba5c94f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-crypto Priority: optional Section: interpreters Installed-Size: 242 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-crypto_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 70238 MD5sum: 461533b8f7554bbd60f6515810d188fe SHA1: 072d9a69b0dba13f79d4e92a0c9fccc02723c101 SHA256: fb698e4df9300aa93f51b6b3e40c77097f63fc47150eda409b0d67c841767ea3 Description: Erlang/OTP cryptographic modules Homepage: http://www.erlang.org/ Description-md5: 6d6a5e48deb89695b61d6380e84e7e95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-dbg Priority: extra Section: debug Installed-Size: 20420 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-dbg_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 4237966 MD5sum: b6683681508a40e2a0b8bf5f1d902982 SHA1: a397b7436dbc4434a406ab6ac75f027514118754 SHA256: 898861f8a5b137f392f1da1209b0e81e426cdcbd6ff1de0dd258fe835ca2ea95 Description: Erlang/OTP symbol files Homepage: http://www.erlang.org/ Description-md5: e54a8e24d35ee5c70df6691a7e605b6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-dev Priority: optional Section: interpreters Installed-Size: 3967 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-dev_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 322480 MD5sum: 8773594606a6a0aa58a47339d4adbc42 SHA1: ed187820b5bbf32fafbe7bab9989eae76943e516 SHA256: cfa228f5f3556857500f26d231adb0d24825d7e548125d9b7c96a7fedb47b860 Description: Erlang/OTP development libraries and headers Homepage: http://www.erlang.org/ Description-md5: 023eca40c938a81e31cb3d07fa28976e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-diameter Priority: optional Section: interpreters Installed-Size: 997 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2), erlang-ssl (= 1:16.b.3-dfsg-1ubuntu2), erlang-syntax-tools (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-diameter_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 599862 MD5sum: d39d83b15cd1872c357cf44c5ba158c7 SHA1: 2be853b2ac6a4af0461a32af7fbf8279ab98c443 SHA256: 2634cc81bee68d3825e3f079e720a3cb91a1cb2056d01c72542778dcc804f27b Description: Erlang/OTP implementation of RFC 6733 protocol Homepage: http://www.erlang.org/ Description-md5: 42a0b30fc825ef17d696ef8100828e2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-doc Priority: optional Section: doc Installed-Size: 157368 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: all Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang-doc-html Provides: erlang-doc-html Suggests: erlang Conflicts: erlang-base (<< 1:13.b.4), erlang-base-hipe (<< 1:13.b.4), erlang-doc-html Filename: pool/main/e/erlang/erlang-doc_16.b.3-dfsg-1ubuntu2_all.deb Size: 16673206 MD5sum: bdfa86202701b32ca90d603e8a6f0b27 SHA1: 6a40b2b4b55e8c3d7f27789f947a8389a088316d SHA256: ce482083b9c4e951e522f5f04ced7ae58bbc5ae94836810465bbe0c3682dfa3c Description: Erlang/OTP HTML/PDF documentation Homepage: http://www.erlang.org/ Description-md5: d151a4898d82d984d031d1b1e1366eea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-edoc Priority: optional Section: interpreters Installed-Size: 512 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-inets (= 1:16.b.3-dfsg-1ubuntu2), erlang-syntax-tools (= 1:16.b.3-dfsg-1ubuntu2), erlang-xmerl (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-edoc_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 298212 MD5sum: 82871d5558e7bb704b67cb66b2101fc2 SHA1: e53f4f899b0706c6ef4168b3524d41826e0c2d41 SHA256: 839e1b5ed6c6cbd75987b68ebcbc75878f7c558be75bf5223c32fdee59d8b414 Description: Erlang/OTP module for generating documentation Homepage: http://www.erlang.org/ Description-md5: a3f918489b4ca4cd8e396c420e04b999 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-eldap Priority: optional Section: interpreters Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-asn1 (= 1:16.b.3-dfsg-1ubuntu2), erlang-ssl (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-eldap_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 91740 MD5sum: 4f805d6dafa7470c399880db37463112 SHA1: 5cf5d5d761e619122740464e31c6a3331c849a6c SHA256: 4c87e3361dca2c7178112f1ad39cfe5de41c1d24251f01aa9f4986b5c4324bf5 Description: Erlang/OTP LDAP library Homepage: http://www.erlang.org/ Description-md5: 84192ee472dc7261422d95bd91233523 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-erl-docgen Priority: optional Section: interpreters Installed-Size: 631 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-edoc (= 1:16.b.3-dfsg-1ubuntu2), erlang-xmerl (= 1:16.b.3-dfsg-1ubuntu2) Suggests: xsltproc, fop, erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-erl-docgen_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 134088 MD5sum: f95978435cae2170564d0a21325b06ec SHA1: 7ecf60d15a5ac7576da7ccfa82350c62e3459d29 SHA256: 6bcb7ba3874dc2d89928c14ec480e57f4035cb5f34d15e86930f34aa36d43a20 Description: Erlang/OTP documentation stylesheets Homepage: http://www.erlang.org/ Description-md5: 5f30cb8c9d86134a3ac21b268d81d997 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-eunit Priority: optional Section: interpreters Installed-Size: 290 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-eunit_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 137030 MD5sum: e4366276ab01ce53f76bd5d9ed770d4a SHA1: d394d2bd79c94f140d003be9b8768137dc99fe74 SHA256: 1cbd0c978df0499e02ee29408b68c4fbb2e3ccabb86c64778bf453cbab233e78 Description: Erlang/OTP module for unit testing Homepage: http://www.erlang.org/ Description-md5: 559493af07c14e28bf56267ccbd871a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-examples Priority: optional Section: interpreters Installed-Size: 2631 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: all Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (>= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (>= 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2.0) | erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2.0) Recommends: erlang-asn1, erlang-crypto, erlang-gs, erlang-inets, erlang-megaco, erlang-snmp, erlang-ssh, erlang-ssl, erlang-syntax-tools Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-examples_16.b.3-dfsg-1ubuntu2_all.deb Size: 1014900 MD5sum: 2ec7f9b3ca831e31d860eeb4009832ce SHA1: f546884c1cbd8428baa56275c12dbd8e397c25c8 SHA256: cc4c6c7340e7a82b93b38ef0c8be1d7c11a3841d2d9531cd45e2f6b15851c6ff Description: Erlang/OTP application examples Homepage: http://www.erlang.org/ Description-md5: 7fd4d1d18889e4d971a860ea2e41b36b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-gs Priority: optional Section: interpreters Installed-Size: 1068 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), tk | wish Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-gs_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 578776 MD5sum: 6af391ccd10d46b6cddb9126554b9d5d SHA1: cefe14a1501b0c5efef9692b87d465e1cf58fa97 SHA256: f8ba62c3aff6092eebe5b8f1b8aae79f119a0820b2144e4805e84acdd41f6c16 Description: Erlang/OTP graphics system Homepage: http://www.erlang.org/ Description-md5: e52ca1e4bb6bd044a046027c91209d06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-ic Priority: optional Section: interpreters Installed-Size: 1223 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang-ic-java, erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-ic_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 818572 MD5sum: cff31603192a83f7762d4fdc7b74d12f SHA1: b4873eaea23d04e76901c9bda86dc3e4b70f45bd SHA256: df39e7106c520c12a3c7cd2d009ebb91addd6e9d59cad6a01ef53cbfb2dedc6c Description: Erlang/OTP IDL compiler Homepage: http://www.erlang.org/ Description-md5: e0dcaf593d7a257b63b65fed1429bb17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-inets Priority: optional Section: interpreters Installed-Size: 1177 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-mnesia (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2), erlang-ssl (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-inets_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 753242 MD5sum: d71d1e895e479159b8116d1207bb7373 SHA1: 2344d64b351280384fc44cc3e27e3ada853836a6 SHA256: 75150f09de8f6dad74c673aed5a5aa21bae8273e5dd8ccde17135a3dd59d028f Description: Erlang/OTP Internet clients and servers Homepage: http://www.erlang.org/ Description-md5: 57f5c22cbb30db3a06eef4cd25d47c34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-megaco Priority: optional Section: interpreters Installed-Size: 9184 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-asn1 (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.3) Suggests: erlang-debugger (= 1:16.b.3-dfsg-1ubuntu2), erlang-et (= 1:16.b.3-dfsg-1ubuntu2), erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-megaco_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 5333260 MD5sum: 33a7b5bc063dc7048ab4f2698fd7a05a SHA1: ef2d1568eefe8cd78f87b3da0e1f79ba41d4803d SHA256: 31002977caa6a20d80f38c6efcc90f9791f79ce8413d95f71eede72e5d4ceac5 Description: Erlang/OTP implementation of Megaco/H.248 protocol Homepage: http://www.erlang.org/ Description-md5: 690fb9316fd0c68e524cdd808aa967b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-mnesia Priority: optional Section: interpreters Installed-Size: 992 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-mnesia_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 658396 MD5sum: f52e2f047996bcb07fdce711b12d53ff SHA1: 3bdadf1f3484851ee0617c151d5f3c6abd1ef6f5 SHA256: f987a78b96f8df28849684af7d7ae3dd64c2dc18c0d287bd1a35f050cf72f61e Description: Erlang/OTP distributed relational/object hybrid database Homepage: http://www.erlang.org/ Description-md5: 48d2214e21e1f80fbec2f00309f8406f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-nox Priority: optional Section: interpreters Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: all Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Depends: erlang-base | erlang-base-hipe, erlang-asn1, erlang-corba, erlang-crypto, erlang-diameter, erlang-edoc, erlang-eldap, erlang-erl-docgen, erlang-eunit, erlang-ic, erlang-inets, erlang-mnesia, erlang-odbc, erlang-os-mon, erlang-parsetools, erlang-percept, erlang-public-key, erlang-runtime-tools, erlang-snmp, erlang-ssh, erlang-ssl, erlang-syntax-tools, erlang-tools, erlang-webtool, erlang-xmerl Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-nox_16.b.3-dfsg-1ubuntu2_all.deb Size: 17596 MD5sum: 1c856c31318475610bb103e0d4749678 SHA1: ef07c7119f93386ffb85ff25f02d0830d4820428 SHA256: 1cf1322a6bad7e9c8c45f7490f4d6f771997dbcd9b712a0e8b392bc76f8435b1 Description: Erlang/OTP applications that don't require X Window System Homepage: http://www.erlang.org/ Description-md5: 7a788b312a01454a03fd4262bf827fcd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-odbc Priority: optional Section: interpreters Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.14), libodbc1 (>= 2.2.11) | unixodbc (>= 2.2.11) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-odbc_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 50302 MD5sum: dcb8a5f0852257eb9d26040c295a86e3 SHA1: 2a1bafb19dc21d691e3d13acc169af9f44abf566 SHA256: 2e802c248d30bdf40ad9420c122a110c1e42838cd99e567d3553bee356b59619 Description: Erlang/OTP interface to SQL databases Homepage: http://www.erlang.org/ Description-md5: 8fb16205445a0b6f3190216580f2428d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-os-mon Priority: optional Section: interpreters Installed-Size: 275 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-mnesia (= 1:16.b.3-dfsg-1ubuntu2), erlang-snmp (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.4) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-os-mon_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 94906 MD5sum: 9db61399cbebc4256194588994fee124 SHA1: 8f54656d25cf1807dbb341455c046fb24c5a2d82 SHA256: fff94ae4e16f604f9cb6fe1053d990f6352c4f998ed010f0cc9a56a969787988 Description: Erlang/OTP operating system monitor Homepage: http://www.erlang.org/ Description-md5: f8627add1b4145778041a638d379dc3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-parsetools Priority: optional Section: interpreters Installed-Size: 298 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-parsetools_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 156098 MD5sum: f45b6808ee8e27a3a15188bc7f8068f5 SHA1: 2b1f08c58a7707f432b3b5153941e40ea86dd37f SHA256: 5d74d0dd4b842bb7ab8095a821cedc20b1cb348a282ba71a1e07e9d928a6d932 Description: Erlang/OTP parsing tools Homepage: http://www.erlang.org/ Description-md5: 3e51e2f8676cdc2b45f2ac3d74b79580 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-percept Priority: optional Section: interpreters Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-inets (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-percept_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 136276 MD5sum: c106a063b1077c4b1227a6dc6160e725 SHA1: 28b304cd82f3106ec68e809585fc8d10e837b4e3 SHA256: 44baa6b8a63dc39299a08d30f0ce7d5445f329083e817eee42884b5064ec2864 Description: Erlang/OTP concurrency profiling tool Homepage: http://www.erlang.org/ Description-md5: c42515507b812528e2f0945482c60c14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-public-key Priority: optional Section: interpreters Installed-Size: 851 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-asn1 (= 1:16.b.3-dfsg-1ubuntu2), erlang-crypto (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-public-key_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 497652 MD5sum: db6b974240f5540b12fa8d6bff4fea5d SHA1: 8c0527cabf1dbb38890e250820f85d53867c4161 SHA256: 7d002e58fbc19387b218d1210e8076c28cebdc8dcd4d893eafa3198702dc513d Description: Erlang/OTP public key infrastructure Homepage: http://www.erlang.org/ Description-md5: e10bb8263805ad3875bec38b249b88db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-runtime-tools Priority: optional Section: interpreters Installed-Size: 386 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-mnesia (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.14) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-runtime-tools_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 157218 MD5sum: 32989265b2e9a361188b72ae946073c9 SHA1: 27ebc78749d6cb217727f875160ad9d525fb4738 SHA256: 485d8ac2d98b649c05e26af35eaa2e7d5f41a1183cb114d83197410df814dc0b Description: Erlang/OTP runtime tracing/debugging tools Homepage: http://www.erlang.org/ Description-md5: a0448be753203ae3013367e215bb963c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-snmp Priority: optional Section: interpreters Installed-Size: 2876 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-crypto (= 1:16.b.3-dfsg-1ubuntu2), erlang-mnesia (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-snmp_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 1496644 MD5sum: 2bf7ef6b1be364630baaa9b9b8e4d913 SHA1: 211b9b4ac87ad973537e16bf16d0e6c4a897b106 SHA256: 612e51512aa1b04f6e5d2057b2569bec0d9f14c080c3fd5d7ad24f3775b72ad1 Description: Erlang/OTP SNMP applications Homepage: http://www.erlang.org/ Description-md5: dfb924f9e0e51a8acfd28878335946b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-src Priority: optional Section: interpreters Installed-Size: 48015 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: all Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-erl-docgen (<< 1:16.b.3-dfsg-1ubuntu2), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (>= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (>= 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2.0) | erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2.0) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-src_16.b.3-dfsg-1ubuntu2_all.deb Size: 5464252 MD5sum: 0e4b975000abdf44aabd71a164f1d5fe SHA1: d2657e6975c7bd845a6814edb9b82233d8b166b7 SHA256: fcc309446e8207176c578343d644631ea0c2774ec297f6c7fa2782dc73892a41 Description: Erlang/OTP applications sources Homepage: http://www.erlang.org/ Description-md5: 6a6a52b3019a4fbd9d35a8cde25c0477 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-ssh Priority: optional Section: interpreters Installed-Size: 580 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-crypto (= 1:16.b.3-dfsg-1ubuntu2), erlang-public-key (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-ssh_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 361538 MD5sum: 979ea753daf868b0af49670528415a5b SHA1: 2a421e37b9eac00ce22b787d5d17746b53084536 SHA256: 6c12f36951474c5ece47583c82ccf885b061896af8ee873fcc0431b061ae1c4f Description: Erlang/OTP implementation of SSH protocol Homepage: http://www.erlang.org/ Description-md5: 2ab50c8973bb765ccc1c37f7e496762f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-ssl Priority: optional Section: interpreters Installed-Size: 762 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-crypto (= 1:16.b.3-dfsg-1ubuntu2), erlang-public-key (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-ssl_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 558674 MD5sum: 99f5f9ffc8cb3bc984bab261de7d8559 SHA1: c8431b33f7a9ce81a892f05bd74a761a69e03398 SHA256: acc0aa3a26194c14f096b0833495f1fad55f26d422f88bffa6dcc73f164a6a06 Description: Erlang/OTP implementation of SSL Homepage: http://www.erlang.org/ Description-md5: 15c091acf332c7d47a15da19885fdc6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-syntax-tools Priority: optional Section: interpreters Installed-Size: 497 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-syntax-tools_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 289006 MD5sum: 85745dd28e95277ccc2ef1f9b3430692 SHA1: 9b5b48816cb1b9e7de9e239562718cf04d73c184 SHA256: d93daad5e22f06b12db045b27c3d17b0e11ff6806cba56d5d1f4708c8879c0a1 Description: Erlang/OTP modules for handling abstract Erlang syntax trees Homepage: http://www.erlang.org/ Description-md5: 734d87e62fdb69e61b39974407f3d15f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-tools Priority: optional Section: interpreters Installed-Size: 1139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-inets (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2), erlang-webtool (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.14) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-tools_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 502616 MD5sum: e539e0f325ddc739212e0b0e221df118 SHA1: 73e911a8342fdcdae01179e2b368515745bc858e SHA256: 5fc8f87ab50d4e8c4f6ed4d313889519017d7b0345b60afb0d6a4d4e4405ffc5 Description: Erlang/OTP various tools Homepage: http://www.erlang.org/ Description-md5: 4285755cbac612fc7f4013b85cae332f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-webtool Priority: optional Section: interpreters Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-inets (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang-observer (= 1:16.b.3-dfsg-1ubuntu2), erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-webtool_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 39426 MD5sum: f2f7d9542dbd738baf33b54c8c72a5a5 SHA1: 2e864e8d28d7039a85de9103c963f93d9dd2e786 SHA256: 5b25b8f0b1fec4c6508821519d2299002def2a47ae494987bf908de1a664fb21 Description: Erlang/OTP helper for web-based tools Homepage: http://www.erlang.org/ Description-md5: b8b0e4887cb074b9d62eb4be3acf0a19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-xmerl Priority: optional Section: interpreters Installed-Size: 1635 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: amd64 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-xmerl_16.b.3-dfsg-1ubuntu2_amd64.deb Size: 972310 MD5sum: 9da0be8ff3b8a31f9f6fefc95b6c52b4 SHA1: babcf98e904e2420f9c1098dbdc89daf8bfbd6db SHA256: 8673bd63ed0c4136a5acdeca8d53597b0e58955381f425e1371df38002890faf Description: Erlang/OTP XML tools Homepage: http://www.erlang.org/ Description-md5: 222136c221feb614758c204affd11214 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: esound-common Priority: optional Section: sound Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: esound Version: 0.2.41-11 Conflicts: libesd-alsa0 Filename: pool/main/e/esound/esound-common_0.2.41-11_all.deb Size: 9558 MD5sum: ea82d1ec589a96744b42a355b71b1754 SHA1: b0fe3787445966261b0b5afad37a2a98fe4d9c3f SHA256: e168a1c286186fbd2d411a0c21cc6ca6165769249f1c5d0e741d4c6582cf45fe Description: Enlightened Sound Daemon - Common files Multi-Arch: foreign Description-md5: b75a4aad1c529ec1a944fb2841c7c0ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: espeak Priority: optional Section: sound Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Version: 1.47.11-1ubuntu1 Depends: libc6 (>= 2.4), libespeak1 (>= 1.47.11) Filename: pool/main/e/espeak/espeak_1.47.11-1ubuntu1_amd64.deb Size: 60028 MD5sum: 04b0a87d7231b201a332e64e61077f20 SHA1: f3d7ed04d108726a66c11742ecb5fd81c69f1610 SHA256: c284b6e11cd74ea0e062d39e1cb9109de4eae0f5d3d51bba6896ef061d6cf137 Description: Multi-lingual software speech synthesizer Multi-Arch: foreign Homepage: http://espeak.sourceforge.net/ Description-md5: e4d7ea42a09ed7423403adc9c62ce2f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, ubuntustudio-desktop Package: espeak-data Priority: optional Section: sound Installed-Size: 1873 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: espeak Version: 1.47.11-1ubuntu1 Filename: pool/main/e/espeak/espeak-data_1.47.11-1ubuntu1_amd64.deb Size: 852530 MD5sum: 50ed33f082255425ed16709dd080f623 SHA1: 08958863a7e33811f966f86d27d5a5a228d464ce SHA256: 40ce1ea7aca692983430fd5035022ebf30e0b33cff090a0e735eb1292e3d0c6c Description: Multi-lingual software speech synthesizer: speech data files Multi-Arch: same Homepage: http://espeak.sourceforge.net/ Description-md5: b42247f7f19f21e26acfed336bd9a588 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: espeak-dbg Priority: extra Section: debug Installed-Size: 1046 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: espeak Version: 1.47.11-1ubuntu1 Depends: espeak (= 1.47.11-1ubuntu1), libespeak1 (= 1.47.11-1ubuntu1) Filename: pool/main/e/espeak/espeak-dbg_1.47.11-1ubuntu1_amd64.deb Size: 271958 MD5sum: ab85144ecbe87e58ecdfa51e528c36a9 SHA1: 462a71e5cee02d479198d29374d42fa367829461 SHA256: df6e86fa106a85470cadc04dd1b89c7b04e51e2896241aefe962d135fcfa1c69 Description: Multi-lingual software speech synthesizer: debugging symbols Homepage: http://espeak.sourceforge.net/ Description-md5: 36379027743829246f1b7bead7323458 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: etckeeper Priority: optional Section: admin Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: Joey Hess Architecture: all Version: 1.9ubuntu2 Depends: bzr (>= 1.5~) | git (>= 1:1.7) | mercurial | darcs, hostname, debconf (>= 0.5) | debconf-2.0 Recommends: cron Suggests: sudo (>= 1.7.4p4) Conflicts: bzr (<< 1.5~) Filename: pool/main/e/etckeeper/etckeeper_1.9ubuntu2_all.deb Size: 26680 MD5sum: d2bc93f1900718579a0e4fab7cf5a806 SHA1: 333ddf2d76ae30de37a98c183ae091575a630df2 SHA256: ba5aca1d51666f9d1edf8d17227c25df47aa2618334478e5d227436f1bb1238e Description: store /etc in git, mercurial, bzr or darcs Homepage: http://kitenet.net/~joey/code/etckeeper/ Description-md5: 95cb5b7044929ac8be07759fde67a217 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ethtool Priority: optional Section: utils Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 1:3.13-1 Depends: libc6 (>= 2.7) Filename: pool/main/e/ethtool/ethtool_3.13-1_amd64.deb Size: 90896 MD5sum: b23c4d504e5b13decc47276ee40927b6 SHA1: d7a2a3bfcca6c5f639066ae5456204b19a50ca86 SHA256: 736265f25358eca63c0835f311bbded8aec3a93dfe065a282eda6b36fb7b9b86 Description: display or change Ethernet device settings Homepage: http://www.kernel.org/pub/software/network/ethtool/ Description-md5: 23bc6b45146ecc72a42d24b5993d6004 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: euca2ools Priority: optional Section: utils Installed-Size: 1089 Maintainer: Ubuntu Developers Original-Maintainer: Debian Eucalyptus Maintainers Architecture: all Version: 3.0.2-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-lxml, python-requestbuilder, python-requests, python-six, python-setuptools Recommends: openssl Filename: pool/main/e/euca2ools/euca2ools_3.0.2-1ubuntu1_all.deb Size: 250834 MD5sum: c4010c39e3a5e0a490a0d038ae9f5166 SHA1: 8ff341050f3f672f614d9b74e54599109626a3d5 SHA256: b178546b1d6d65298d63ce57587e1c87da7a4323b1b029a60e5e7a096b00e95c Description: tools for interacting with AWS API-compatible services Homepage: http://www.eucalyptus.com/download/euca2ools Description-md5: f6ee18e2bf2077bdd59e1f5810906ff2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: evince Priority: optional Section: gnome Installed-Size: 1191 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.10.3-0ubuntu10 Provides: djvu-viewer, pdf-viewer, postscript-viewer Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libevdocument3-4 (= 3.10.3-0ubuntu10), libevview3-3 (= 3.10.3-0ubuntu10), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.9.10), libice6 (>= 1:1.0.0), libnautilus-extension1a (>= 1:2.91), libpango-1.0-0 (>= 1.14.0), libsecret-1-0 (>= 0.7), libsm6, evince-common (>= 3.10), evince-common (<< 3.11), gnome-icon-theme (>= 2.17.1), shared-mime-info, gnome-icon-theme-symbolic Recommends: dbus-x11, gvfs Suggests: unrar, poppler-data, nautilus, apparmor Conflicts: evince-gtk Filename: pool/main/e/evince/evince_3.10.3-0ubuntu10_amd64.deb Size: 158802 MD5sum: 0753953c6f0e1a262acfdfefe2bcc32b SHA1: 24f49ac88943312761505987bddd68e5974ff33f SHA256: d601a2349fc85a16ad6c8560caaf0ad74587e11f8ed0e27406775d028ba7c496 Description: Document (PostScript, PDF) viewer Homepage: http://www.gnome.org/projects/evince/ Description-md5: 531974388dc5701b9dbc2f5d96f92ec6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: evince-common Priority: optional Section: gnome Installed-Size: 2680 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: evince Version: 3.10.3-0ubuntu10 Depends: dconf-gsettings-backend | gsettings-backend, gsettings-desktop-schemas Filename: pool/main/e/evince/evince-common_3.10.3-0ubuntu10_all.deb Size: 427188 MD5sum: 465b4e7d8e4b372560a0fc81190ee2a3 SHA1: cd80b7e6c63b465453e2aa5eed2776a51c3af470 SHA256: 997a17f3ffc226fbf740a6144b7e438cb87907c0ed530d25139c0a7646a6b7aa Description: Document (PostScript, PDF) viewer - common files Homepage: http://www.gnome.org/projects/evince/ Description-md5: cbee657abf0923de613d04ab6ccfdd8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: evince-dbg Priority: extra Section: gnome Installed-Size: 5161 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: evince Version: 3.10.3-0ubuntu10 Depends: evince (= 3.10.3-0ubuntu10), libevdocument3-4 (= 3.10.3-0ubuntu10), libevview3-3 (= 3.10.3-0ubuntu10) Filename: pool/main/e/evince/evince-dbg_3.10.3-0ubuntu10_amd64.deb Size: 1143110 MD5sum: 5d93445a6b987d2d631437a8a07a2800 SHA1: f7f274e84d8c8ecec96690f85d90043d967d4876 SHA256: bdaeaeaf17dc408c011bf574832ea1a0b68a12bedc61a712948ea40c5c00ab30 Description: Document (PostScript, PDF) viewer - debugging symbols Homepage: http://www.gnome.org/projects/evince/ Description-md5: 7aaf40301b0ad64e9c6e52927fc3e9b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution Priority: optional Section: gnome Installed-Size: 415 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Version: 3.10.4-0ubuntu1 Replaces: evolution-common (<< 2.91) Provides: imap-client, mail-reader Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcamel-1.2-45, libecal-1.2-16 (>= 3.7.90), libedataserver-1.2-18 (>= 3.5.91), libevolution (>= 3.10), libevolution (<< 3.11), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.0.0), libical1 (>= 1.0), libnotify4 (>= 0.7.0), libsoup2.4-1 (>= 2.32.2), libwebkitgtk-3.0-0 (>= 1.3.10), libxml2 (>= 2.7.4), evolution-common (= 3.10.4-0ubuntu1), evolution-data-server (>= 3.10), evolution-data-server (<< 3.11), gnome-icon-theme (>= 2.30.2.1), dbus, psmisc Pre-Depends: debconf (>= 1.4.69) | debconf-2.0 Recommends: evolution-plugins, evolution-indicator, yelp, spamassassin | bogofilter Suggests: evolution-ews, evolution-plugins-experimental, gnupg, network-manager Filename: pool/main/e/evolution/evolution_3.10.4-0ubuntu1_amd64.deb Size: 48348 MD5sum: 960a6f16f19ddf47f69daa196d8d618b SHA1: cc7bf30b124744cbee7b5609678724a6c466939f SHA256: 4a690a9c57edc115bff9b36c40dd5e6eb06652fb5bfa6b1184a2d3c5354a651a Description: groupware suite with mail client and organizer Homepage: http://projects.gnome.org/evolution/ Description-md5: cfafd27ead8392a897eb797ec9866714 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: evolution-common Priority: optional Section: gnome Installed-Size: 16320 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: all Source: evolution Version: 3.10.4-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend Recommends: evolution Filename: pool/main/e/evolution/evolution-common_3.10.4-0ubuntu1_all.deb Size: 1447780 MD5sum: b87dcdc58807e9422e101e6deef7545f SHA1: ddd6e10e2336a2de324bf4005637eca4d4ade2c8 SHA256: 8e0d7cc93ac96fc93f808892f0d5230d854653bb82d16b258d7413d267bfd0c5 Description: architecture independent files for Evolution Homepage: http://projects.gnome.org/evolution/ Description-md5: 63a9c80d6efb5e50b74aae7ebcc8bf5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: evolution-data-server Priority: optional Section: gnome Installed-Size: 1418 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Version: 3.10.4-0ubuntu1 Replaces: evolution-data-server-goa (<< 3.10.3-0ubuntu2~) Depends: libc6 (>= 2.14), libcamel-1.2-45 (= 3.10.4-0ubuntu1), libdb5.3, libebackend-1.2-7 (>= 3.8.4), libebook-1.2-14 (>= 3.10.0), libebook-contacts-1.2-0 (>= 3.7.90), libecal-1.2-16 (>= 3.7.90), libedata-book-1.2-20 (>= 3.7.90), libedata-cal-1.2-23 (>= 3.8.4), libedataserver-1.2-18 (>= 3.7.90), libgdata13 (>= 0.11.0), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.0.0), libgweather-3-6 (>= 3.7.91), libical1 (>= 1.0), libldap-2.4-2 (>= 2.4.7), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~beta3), libpango-1.0-0 (>= 1.14.0), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.40.3), libxml2 (>= 2.9.0), evolution-data-server-common (= 3.10.4-0ubuntu1) Recommends: evolution-data-server-online-accounts Suggests: evolution, evolution-data-server-dbg (= 3.10.4-0ubuntu1) Conflicts: evolution-data-server-goa (<< 3.10.3-0ubuntu2~) Breaks: libebook-1.2-12 (<< 3.4), libebook-1.2-13 (<< 3.6), libebook1.2-10 (<< 3.2), libebook1.2-9 (<< 2.32), libecal1.2-11 (<< 3.6), libecal1.2-7 (<< 2.32), libecal1.2-8 (<< 3.2), libedataserverui-3.0-5 Filename: pool/main/e/evolution-data-server/evolution-data-server_3.10.4-0ubuntu1_amd64.deb Size: 314336 MD5sum: 8b7baae5681f6b44f4c644fc128433dd SHA1: 061a8c74825b3aa762cd9087e8632eddd282a2af SHA256: a4d7f37dad5dd8526ee748f9d836f48badb2525b0895e208ebce7e346a4b928d Description: evolution database backend server Homepage: http://projects.gnome.org/evolution/ Description-md5: 00223d501d234f5cb46209c8c730f321 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: evolution-data-server-common Priority: optional Section: gnome Installed-Size: 320 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: all Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend Filename: pool/main/e/evolution-data-server/evolution-data-server-common_3.10.4-0ubuntu1_all.deb Size: 109344 MD5sum: ebbbceb1f323703e00b14dfce12c18f9 SHA1: d30796b32e18d88dc880c26b068ea459898c22b1 SHA256: 3fd7ad49183313bb19fa6cfc57c15853010639ac7deb032e19ac280606e18389 Description: architecture independent files for Evolution Data Server Homepage: http://projects.gnome.org/evolution/ Description-md5: 5cc3d01ab453e709e471f91ff4d74d00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: evolution-data-server-dbg Priority: extra Section: gnome Installed-Size: 6367 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: evolution-data-server (= 3.10.4-0ubuntu1) Filename: pool/main/e/evolution-data-server/evolution-data-server-dbg_3.10.4-0ubuntu1_amd64.deb Size: 5022644 MD5sum: 4f365450aeedaaa59e727f59cc22b254 SHA1: 88c99f5805fe3c3573d139a4b2741f6479a40751 SHA256: 56447a7a8e9669de65689fe81621933dda502fd2f6296bce0a5bec5eff7b8971 Description: evolution database backend server with debugging symbols Homepage: http://projects.gnome.org/evolution/ Description-md5: 67f33ddd8521aa2c8e1b89732e218dfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution-data-server-dev Priority: optional Section: gnome Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libglib2.0-dev (>= 2.34), libnss3-dev, libnspr4-dev Breaks: libedataserverui-3.0-dev Filename: pool/main/e/evolution-data-server/evolution-data-server-dev_3.10.4-0ubuntu1_amd64.deb Size: 96552 MD5sum: b390f2d98e49168b9d87c9065f8b1660 SHA1: 11c076b438305ca0e54c5119cbbca5c34b2db52f SHA256: 4b84e8c913dab127069a06c9f4bdbe9605f47c289efc8bf2b52a900db2d5d06d Description: Development files for evolution-data-server (metapackage) Homepage: http://projects.gnome.org/evolution/ Description-md5: f80e85b29ef7b2fa18ebc57f7a903dcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution-data-server-doc Priority: optional Section: doc Installed-Size: 12321 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: all Source: evolution-data-server Version: 3.10.4-0ubuntu1 Replaces: libcamel1.2-dev (<< 3.4.2), libebackend1.2-dev (<< 3.4.2), libebook1.2-dev (<< 3.4.2), libecal1.2-dev (<< 3.4.2), libedata-book1.2-dev (<< 3.4.2), libedata-cal1.2-dev (<< 3.4.2), libedataserver1.2-dev (<< 3.4.2), libedataserverui-3.0-dev (<< 3.4.2), libedataserverui1.2-dev Suggests: devhelp Breaks: libcamel1.2-dev (<< 3.4.2), libebackend1.2-dev (<< 3.4.2), libebook1.2-dev (<< 3.4.2), libecal1.2-dev (<< 3.4.2), libedata-book1.2-dev (<< 3.4.2), libedata-cal1.2-dev (<< 3.4.2), libedataserver1.2-dev (<< 3.4.2), libedataserverui-3.0-dev (<< 3.4.2), libedataserverui1.2-dev Filename: pool/main/e/evolution-data-server/evolution-data-server-doc_3.10.4-0ubuntu1_all.deb Size: 670876 MD5sum: f9e8e435b13800a75dbbc23c45f22020 SHA1: 1ce18a33572438865a25e0ca9f1a24daeb507d0d SHA256: 53d0df1f83bdddaae17216e081468269a49c195e4f1aa4015144cdbf8ea3c70a Description: Documentation files for the Evolution Data Server libraries Homepage: http://projects.gnome.org/evolution/ Description-md5: b241d0c600eee3a52e0b78eb3b6bbba5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution-data-server-online-accounts Priority: optional Section: gnome Installed-Size: 270 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Replaces: evolution-data-server (<< 3.8.3), evolution-data-server-common (<< 3.8.3-0ubuntu4~), evolution-data-server-goa (<< 3.10.3-0ubuntu2~), evolution-data-server-uoa (<< 3.10.3-0ubuntu2~) Provides: evolution-data-server-goa, evolution-data-server-uoa Depends: libaccounts-glib0 (>= 1.4), libc6 (>= 2.2.5), libcamel-1.2-45 (= 3.10.4-0ubuntu1), libebackend-1.2-7 (>= 3.7.90), libedataserver-1.2-18 (>= 3.7.90), libglib2.0-0 (>= 2.34), libgoa-1.0-0b (>= 3.7.91), libjson-glib-1.0-0 (>= 0.12.0), librest-0.7-0 (>= 0.7), libsignon-glib1 (>= 1.8), libsoup2.4-1 (>= 2.40.3), libxml2 (>= 2.9.0), evolution-data-server-common (= 3.10.4-0ubuntu1) Suggests: evolution Conflicts: evolution-data-server-goa (<< 3.10.3-0ubuntu2~), evolution-data-server-uoa (<< 3.10.3-0ubuntu2~) Breaks: evolution-data-server (<< 3.8.3), evolution-data-server-common (<< 3.8.3-0ubuntu4~) Filename: pool/main/e/evolution-data-server/evolution-data-server-online-accounts_3.10.4-0ubuntu1_amd64.deb Size: 30584 MD5sum: 296c56ac9ce4303d057b96a222da1fdf SHA1: 178b76f710fc8961412d57dc8d3987cf67af733a SHA256: 73303665e399a276e29d7a8230cbee784ce7f02567f3c15910e5daa17bcf251d Description: evolution data server integration with Ubuntu Online Accounts Homepage: http://projects.gnome.org/evolution/ Description-md5: bc63dd0a9ff4f5cb5bd5cc0805ed5f2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: evolution-dbg Priority: extra Section: gnome Installed-Size: 12513 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution Version: 3.10.4-0ubuntu1 Depends: evolution (= 3.10.4-0ubuntu1) Filename: pool/main/e/evolution/evolution-dbg_3.10.4-0ubuntu1_amd64.deb Size: 10271860 MD5sum: 2726f68d068142f67f09b37262f05144 SHA1: 011f6c1c2d3e03ea5646d202c371db91ed99426c SHA256: 76fbe85175cf4ceb80df141377a2a3dc16bfd5f2abaaa45caec32c2dd0dcf082 Description: debugging symbols for Evolution Homepage: http://projects.gnome.org/evolution/ Description-md5: 5264e3842eb3d96148e4540a2e161bde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution-dev Priority: optional Section: devel Installed-Size: 7662 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution Version: 3.10.4-0ubuntu1 Depends: libevolution (= 3.10.4-0ubuntu1), libxml2-dev, libcamel1.2-dev, libgtkhtml-4.0-dev, libgtkhtml-editor-4.0-dev, libebackend1.2-dev, libgtk-3-dev, libgnome-desktop-3-dev, libwebkitgtk-3.0-dev (>= 1.10.0), libedataserver1.2-dev Filename: pool/main/e/evolution/evolution-dev_3.10.4-0ubuntu1_amd64.deb Size: 495680 MD5sum: a5facb8b2e7f9c8a6d6703122d8c5033 SHA1: b4d25f9a375b1eed092ffadaed8974c4f1fd7a14 SHA256: dde5bbfd899276e1064d80a95d1f08d20b585318f79f3589dcff5f52a47cf708 Description: development library files for Evolution Homepage: http://projects.gnome.org/evolution/ Description-md5: e8841388a6199690879d253b06445273 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution-indicator Priority: extra Section: gnome Installed-Size: 100 Maintainer: Ubuntu Core Developers Architecture: amd64 Version: 0.2.20-0ubuntu15 Depends: gconf-service, libc6 (>= 2.2.5), libcamel-1.2-45, libcanberra0 (>= 0.2), libdbusmenu-glib4 (>= 0.4.2), libedataserver-1.2-18 (>= 3.5.91), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.0.0), libmessaging-menu0 (>= 12.10.0), libnotify4 (>= 0.7.0), libunity9 (>= 3.4.6), gconf2 (>= 2.28.1-2), evolution Filename: pool/main/e/evolution-indicator/evolution-indicator_0.2.20-0ubuntu15_amd64.deb Size: 13690 MD5sum: a32a9bcb9916a62f3ebb694712edd05f SHA1: 822fdc9af674ed7b64f2f8cd03bc47bdd5cf815d SHA256: a6bb382f96a6fd0d4f5ae9618d1a950fd0dd2bd41fda4deed5eca609ce10f549 Description: GNOME panel indicator applet for Evolution Homepage: https://launchpad.net/evolution-indicator Description-md5: 6944713b1e0d80d83d83552513d6ab38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: evolution-plugins Priority: optional Section: gnome Installed-Size: 586 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.4), libcamel-1.2-45, libcanberra0 (>= 0.2), libebook-1.2-14 (>= 3.5.91), libebook-contacts-1.2-0 (>= 3.7.90), libecal-1.2-16 (>= 3.7.90), libedataserver-1.2-18 (>= 3.5.91), libevolution (>= 3.10), libevolution (<< 3.11), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.4.0), libgtkhtml-editor-4.0-0 (>= 4.6), libgtkhtml-editor-4.0-0 (<< 4.8), libical1 (>= 1.0), libnotify4 (>= 0.7.0), libpst4 (>= 0.6.54), libxml2 (>= 2.7.4), evolution (= 3.10.4-0ubuntu1) Recommends: notification-daemon Filename: pool/main/e/evolution/evolution-plugins_3.10.4-0ubuntu1_amd64.deb Size: 83814 MD5sum: 9474231736e041e2b203ea177859d44c SHA1: 4d1c8f1a7794c84f6d872f74e127af5c8a79cc4a SHA256: 9e85a5ff4d4cd3d4ee8545901e4a045570ae592c37b8711aed094485f39b4a42 Description: standard plugins for Evolution Homepage: http://projects.gnome.org/evolution/ Description-md5: 156ab79328b91976048e2cd724c8542d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: example-content Priority: optional Section: x11 Installed-Size: 6217 Maintainer: Ubuntu Artwork Team Architecture: all Version: 48 Filename: pool/main/e/example-content/example-content_48_all.deb Size: 5223256 MD5sum: 23f9641fe76154e623f42fc90035c020 SHA1: 576dc02357ccf7506f7fc8cd3121ada85692f27f SHA256: 875894ddba9b9c1c1856b54f1bd8536b777d092673285fce110779fc0062e143 Description: Ubuntu example content Homepage: https://launchpad.net/example-content Description-md5: c3d0a7db62e70da762d52dfac33a7bd0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: execstack Priority: optional Section: admin Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: prelink Version: 0.0.20090925-8 Replaces: prelink Depends: libc6 (>= 2.14), libelfg0 (>= 0.8.12), libselinux1 (>= 1.32) Conflicts: prelink (<< 0.0.20090311-2) Filename: pool/main/p/prelink/execstack_0.0.20090925-8_amd64.deb Size: 72250 MD5sum: 66fc834828c5b900b0eccee6465f83ce SHA1: 06faa44c936f1b29cb0c9db240452125a35f9598 SHA256: ebab9e2d85752754837c6a3981572f2186478d5625904eeb2869667884c2097d Description: ELF GNU_STACK program header editing utility Description-md5: b4977f65448ec7a7e1fca51450d83efb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exim4 Priority: optional Section: mail Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: all Version: 4.82-3ubuntu2 Depends: debconf (>= 0.5) | debconf-2.0, debconf (>= 1.4.69) | cdebconf (>= 0.39), exim4-base (>= 4.82), exim4-daemon-light | exim4-daemon-heavy | exim4-daemon-custom Filename: pool/main/e/exim4/exim4_4.82-3ubuntu2_all.deb Size: 7876 MD5sum: 6045b17135cbec6b17c22e167a79e03f SHA1: 124a7c9d4309256d9737d0919b162dc3cc80054e SHA256: 8777c115822fe077f96fed0aa64160e867c1038c9773b58850be8480feb7335f Description: metapackage to ease Exim MTA (v4) installation Homepage: http://www.exim.org/ Description-md5: 458592f74d76e446735736c1d55ce615 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: exim4-base Priority: extra Section: mail Installed-Size: 1502 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: amd64 Source: exim4 Version: 4.82-3ubuntu2 Replaces: exim, exim-tls, exim4-daemon-custom, exim4-daemon-heavy, exim4-daemon-light Depends: libc6 (>= 2.14), libdb5.3, debconf (>= 0.5) | debconf-2.0, cron | fcron, exim4-config (>= 4.30) | exim4-config-2, adduser, netbase, lsb-base (>= 3.0-6) Recommends: psmisc, mailx, perl-modules Suggests: mail-reader, eximon4, exim4-doc-html | exim4-doc-info, gnutls-bin | openssl, file, spf-tools-perl, swaks Conflicts: exim, exim-tls Breaks: exim4-daemon-custom (<< 4.82), exim4-daemon-heavy (<< 4.82), exim4-daemon-light (<< 4.82) Filename: pool/main/e/exim4/exim4-base_4.82-3ubuntu2_amd64.deb Size: 853944 MD5sum: 51dccbc017a1fe973d0bcd89236cb950 SHA1: 1ce2d38e4b4f706f1ab7abd6858740b331953f31 SHA256: 1b415ccb82c9b602113e3789c3ed41b0f5af14bd629e75e3287e5c903f6e9989 Description: support files for all Exim MTA (v4) packages Homepage: http://www.exim.org/ Description-md5: ab23a802a5e7dee33641329abf2b6565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: exim4-config Priority: extra Section: mail Installed-Size: 1003 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: all Source: exim4 Version: 4.82-3ubuntu2 Provides: exim4-config-2 Depends: debconf (>= 0.5) | debconf-2.0, adduser Conflicts: courier-mta, esmtp-run, exim, exim-tls, exim4-config, exim4-config-2, hula-mta, masqmail, mta-dummy, nullmailer, postfix, sendmail-bin, smail, ssmtp, xmail, zmailer Breaks: exim4-daemon-heavy (<< 4.82~rc1), exim4-daemon-light (<< 4.82~rc1) Filename: pool/main/e/exim4/exim4-config_4.82-3ubuntu2_all.deb Size: 297758 MD5sum: b9ec5218ccbb23d5b6c24584dd05a0e8 SHA1: ac52144bd045389d5a94195668e4628253d52308 SHA256: 2afa9532b39fa57e9c1eba095efbb0f84a225d8ab04f4cfe1e9e878e1417c374 Description: configuration for the Exim MTA (v4) Homepage: http://www.exim.org/ Description-md5: 32395c972fcf7f5014c06bce8ee1c59a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: exim4-daemon-heavy Priority: optional Section: mail Installed-Size: 1277 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: amd64 Source: exim4 Version: 4.82-3ubuntu2 Replaces: exim4-base (<= 4.61-1), mail-transport-agent Provides: exim4-localscanapi-1.0, exim4-localscanapi-1.1, mail-transport-agent Depends: exim4-base (>= 4.82), libc6 (>= 2.15), libdb5.3, libgnutls26 (>= 2.12.17-0), libldap-2.4-2 (>= 2.4.7), libmysqlclient18 (>= 5.5.24+dfsg-1), libpam0g (>= 0.99.7.1), libpcre3, libperl5.18 (>= 5.18.2), libpq5, libsasl2-2 (>= 2.1.24), libsqlite3-0 (>= 3.5.9), debconf (>= 0.5) | debconf-2.0 Conflicts: mail-transport-agent Breaks: clamav-daemon (<< 0.95) Filename: pool/main/e/exim4/exim4-daemon-heavy_4.82-3ubuntu2_amd64.deb Size: 484116 MD5sum: 0d00116f15fa14eb2883de24279b4755 SHA1: 2cfdda10ede03fa9cf263604d59495771288d871 SHA256: 1eb49d494f1c6040a0f3a02bcc34b4e9ca8254a2c8d9eab747ccf1e4ec2fb961 Description: Exim MTA (v4) daemon with extended features, including exiscan-acl Homepage: http://www.exim.org/ Description-md5: 29c4b395a92bdc12932f151c3643a602 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: exim4-daemon-heavy-dbg Priority: extra Section: mail Installed-Size: 3576 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: amd64 Source: exim4 Version: 4.82-3ubuntu2 Depends: exim4-daemon-heavy Filename: pool/main/e/exim4/exim4-daemon-heavy-dbg_4.82-3ubuntu2_amd64.deb Size: 902584 MD5sum: c07482a3b6746e248a64014e2879b55c SHA1: fc0764b98c843c54fc07e90b88aacc5e8cc84d7e SHA256: b9c82b7ba4865b4fcbcd325547344b35106e30278333b0c9baec30c4bbfeb8ce Description: debugging symbols for the Exim MTA "heavy" daemon Homepage: http://www.exim.org/ Description-md5: c42822621e1df91a52982b923c500d4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exim4-daemon-light Priority: extra Section: mail Installed-Size: 1141 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: amd64 Source: exim4 Version: 4.82-3ubuntu2 Replaces: exim4-base (<= 4.61-1), mail-transport-agent Provides: exim4-localscanapi-1.0, exim4-localscanapi-1.1, mail-transport-agent Depends: exim4-base (>= 4.82), libc6 (>= 2.15), libdb5.3, libgnutls26 (>= 2.12.17-0), libpcre3, debconf (>= 0.5) | debconf-2.0 Conflicts: mail-transport-agent Filename: pool/main/e/exim4/exim4-daemon-light_4.82-3ubuntu2_amd64.deb Size: 435578 MD5sum: e3e0991287ce0eda5409e323eb6e90d3 SHA1: 05f3c925623f311798d3e83d6ab3b2d72f305957 SHA256: b4288fc19a904b7875f691727e17c2a13e3c66171644bea249c1b6afa2229092 Description: lightweight Exim MTA (v4) daemon Homepage: http://www.exim.org/ Description-md5: 3f5190a801cb3e11718c951f768c4d54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: exim4-daemon-light-dbg Priority: extra Section: mail Installed-Size: 3157 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: amd64 Source: exim4 Version: 4.82-3ubuntu2 Depends: exim4-daemon-light Filename: pool/main/e/exim4/exim4-daemon-light-dbg_4.82-3ubuntu2_amd64.deb Size: 789736 MD5sum: 810cc3aeefb58f04aa4b2be43af9c990 SHA1: 81425b09b509561d6735276fde9360d9bb2b7df8 SHA256: 807970792c73e3c396d3f76b3e58991c29ab59e44ca19a4e2b395c49abbe7c4c Description: debugging symbols for the Exim MTA "light" daemon Homepage: http://www.exim.org/ Description-md5: dff44febf1a413d05a89808719c665f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exim4-dbg Priority: extra Section: mail Installed-Size: 815 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: amd64 Source: exim4 Version: 4.82-3ubuntu2 Depends: exim4-base, exim4-config Recommends: eximon4 Filename: pool/main/e/exim4/exim4-dbg_4.82-3ubuntu2_amd64.deb Size: 184160 MD5sum: 118391a6f27972e422e2bc6f520e414b SHA1: 0624f2f5c3cfd6ec977fe21172220e1fc36bc781 SHA256: 6c737401ead20b343c697298be0ae3b746a3959b81afbcefa0bd15284184d1c9 Description: debugging symbols for the Exim MTA (utilities) Homepage: http://www.exim.org/ Description-md5: 5cf2fe8a21737e0585d95be54f8ada23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exim4-dev Priority: extra Section: mail Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: amd64 Source: exim4 Version: 4.82-3ubuntu2 Filename: pool/main/e/exim4/exim4-dev_4.82-3ubuntu2_amd64.deb Size: 15126 MD5sum: 70d2229845727c2ddcf8dad685d68e5a SHA1: 7d140030602c439545fc87a2864070d41b08e95e SHA256: 31132dd5738a944c9d457d5bd3c7fc2ad55ed6ca6bb88bdc4f67ca27ce768011 Description: header files for the Exim MTA (v4) packages Homepage: http://www.exim.org/ Description-md5: d5a123381ab67fa02f35533169e299d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exim4-doc-html Priority: optional Section: doc Installed-Size: 3233 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: all Source: eximdoc4 Version: 4.82-2 Replaces: eximdoc4-html Filename: pool/main/e/eximdoc4/exim4-doc-html_4.82-2_all.deb Size: 455346 MD5sum: 0b26558a7331008d5820453cfe7c12f9 SHA1: bdce5b372830f45d469a6093487cc44c59b34283 SHA256: 8e2603407100f263c8ecde8f1d469cacdec5aa773abca930e2c12eea7ac479aa Description: documentation for the Exim MTA (v4) in html format Homepage: http://www.exim.org/ Description-md5: 73ca59c47a017d63ed6c9d76704b5a85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: eximon4 Priority: optional Section: mail Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: amd64 Source: exim4 Version: 4.82-3ubuntu2 Replaces: eximon Depends: libc6 (>= 2.14), libpcre3, libx11-6, libxaw7, libxmu6, libxt6, exim4-base (>= 4.10) Conflicts: eximon Filename: pool/main/e/exim4/eximon4_4.82-3ubuntu2_amd64.deb Size: 44088 MD5sum: 34f1f5f9e4821b29fe816b139b05d07b SHA1: ca12ed2c625b6ff628a4186378e796d78231d243 SHA256: a651a0a6f476c5c8443c0856dd3a3f540d74afbb2110c93f5989af6123917f2a Description: monitor application for the Exim MTA (v4) (X11 interface) Homepage: http://www.exim.org/ Description-md5: 9d049018af5088cbceaa2af23692d02a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: expect Priority: optional Section: interpreters Installed-Size: 320 Maintainer: Ubuntu Developers Original-Maintainer: Sergei Golovan Architecture: amd64 Version: 5.45-5ubuntu1 Depends: libc6 (>= 2.14), libtcl8.6 (>= 8.6.0) Conflicts: expectk (<< 5.45) Filename: pool/main/e/expect/expect_5.45-5ubuntu1_amd64.deb Size: 151532 MD5sum: 068a766ac5cf401d35b2b398a1fd7499 SHA1: 16c49a0ae4e96e6cab6b393df125ab122657fa0d SHA256: 69915259149a7c47b49d501c98022d08a820ade4946b043772c64daac071ed1a Description: Automates interactive applications Homepage: http://sourceforge.net/projects/expect/ Description-md5: c1249473d87dda15c30aa04e1c9d08c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: expect-dev Priority: optional Section: devel Installed-Size: 277 Maintainer: Ubuntu Developers Original-Maintainer: Sergei Golovan Architecture: amd64 Source: expect Version: 5.45-5ubuntu1 Replaces: expect (<< 5.44.1.14) Depends: expect (= 5.45-5ubuntu1), tcl8.6-dev Recommends: tk8.6-dev Filename: pool/main/e/expect/expect-dev_5.45-5ubuntu1_amd64.deb Size: 75180 MD5sum: 84dddb9e4f593e7a36c8e115e952a1bb SHA1: 01953d201782f7830047b90e72177adb1a1c4b83 SHA256: 6526b47ca264144286d04dfee31b2b253228b061ccce84ca1d1dbfa84c0788a9 Description: Automates interactive applications (development) Homepage: http://sourceforge.net/projects/expect/ Description-md5: 1094390d25af288c90dbf968fc31aeb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exuberant-ctags Priority: optional Section: editors Installed-Size: 326 Maintainer: Colin Watson Architecture: amd64 Version: 1:5.9~svn20110310-7 Provides: ctags Depends: libc6 (>= 2.11) Suggests: vim | nvi | elvis | vile | emacsen Filename: pool/main/e/exuberant-ctags/exuberant-ctags_5.9~svn20110310-7_amd64.deb Size: 120046 MD5sum: 25f4f58587e384bdeeedd882956b6914 SHA1: 8c8ff81c26c0e14d2745a65ffb1a56942d9e2ff1 SHA256: ee32a907da8f2be2f92845e46439057f6762a96bbac910aad03edba39378b313 Description: build tag file indexes of source code definitions Multi-Arch: foreign Homepage: http://ctags.sourceforge.net/ Description-md5: dffcafa00047da8d3dac60f57fa4eef4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: facter Priority: optional Section: admin Installed-Size: 318 Maintainer: Ubuntu Developers Original-Maintainer: Puppet Package Maintainers Architecture: all Version: 1.7.5-1ubuntu1 Depends: bind9-host | host, net-tools, ruby-json, ruby | ruby-interpreter Recommends: pciutils, dmidecode Suggests: virt-what Filename: pool/main/f/facter/facter_1.7.5-1ubuntu1_all.deb Size: 67346 MD5sum: 1671b6aa619d14ed42233fca054297fb SHA1: e6dadf5928fa89cdbb9345e685f1fdaaea74e3e9 SHA256: f61cdfa242583ac01adceb43fbfd1c4dc0dbce259f05938fa68d2b5019f0cd1d Description: collect and display facts about the system Homepage: http://projects.puppetlabs.com/projects/facter Description-md5: aa6eefd05a936ac36b8b75f91c9a65ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fakeroot Priority: optional Section: utils Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Clint Adams Architecture: amd64 Version: 1.20-3ubuntu2 Depends: libc6 (>= 2.15), libfakeroot (>= 1.20-3ubuntu2) Filename: pool/main/f/fakeroot/fakeroot_1.20-3ubuntu2_amd64.deb Size: 55026 MD5sum: fad29881d632a463f5235f399fa65a14 SHA1: 0b688255113c3105edf71eae3b9d124f2a3a6b18 SHA256: bc777cf73529e8d9b0f1641f7ee5d01104eca2efb485f944cbcb27adca9b291e Description: tool for simulating superuser privileges Multi-Arch: foreign Description-md5: db2730aa4872dbe27ff20c4aad3c5429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: faketime Priority: extra Section: utils Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Kahn Gillmor Architecture: amd64 Version: 0.9.5-2 Depends: libc6 (>= 2.4), libfaketime (= 0.9.5-2) Pre-Depends: multiarch-support Filename: pool/main/f/faketime/faketime_0.9.5-2_amd64.deb Size: 9330 MD5sum: 5f08f5f5ed67b07c5b3628dd209935f1 SHA1: 90cb0d8e5401128792358a61380acc69e25e572d SHA256: 88d6620f8373abc648eb7c563f87022c539eff6dc700f51e6e70d6f6daa8a1e4 Description: report faked system time to programs Multi-Arch: foreign Homepage: http://www.code-wizards.com/projects/libfaketime/ Description-md5: 9230deac6c49626e80400467f9098477 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fastjar Priority: extra Section: misc Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Version: 2:0.98-5 Depends: dpkg (>= 1.15.4) | install-info, libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Filename: pool/main/f/fastjar/fastjar_0.98-5_amd64.deb Size: 77428 MD5sum: 96c5f93f7e23df187d656b1a0995928e SHA1: 4c877ac137b8887e2b94d463d1b8021d02ab5b95 SHA256: ee18f07e8edaf7b51bb929d1d28c502279b368bc8236c895f4ce75e396e8d276 Description: Jar creation utility Multi-Arch: foreign Description-md5: a0d7499d9046ecf1733ddfd9e23815be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fbset Priority: optional Section: admin Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: amd64 Version: 2.1-27 Depends: libc6 (>= 2.14), udev | makedev (>= 2.3.1-24) Filename: pool/main/f/fbset/fbset_2.1-27_amd64.deb Size: 123648 MD5sum: 2344d60e4adbb5a6078882b017ead0f0 SHA1: c0bedaf90a58a1ce448101264e1a9b9de023b623 SHA256: 75cb279fa25e2aff642cc37303322002efb2a50314636b96d0085fc7ff6bec15 Description: framebuffer device maintenance program Homepage: http://users.telenet.be/geertu/Linux/fbdev/ Description-md5: 7997084a9c5398cd30090426f11200a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fdupes Priority: optional Section: utils Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Sandro Tosi Architecture: amd64 Version: 1.51-1 Depends: libc6 (>= 2.14) Filename: pool/main/f/fdupes/fdupes_1.51-1_amd64.deb Size: 16754 MD5sum: 7a81f72c0d94beca6e3c08b25636e0a4 SHA1: 53694dbe7349e26e83de30d292835734957181c7 SHA256: 8aa0762d2bd2bb5b3c992dcfa79be71158b46165a683431e0bb9edc9da7020f1 Description: identifies duplicate files within given directories Multi-Arch: foreign Homepage: http://code.google.com/p/fdupes/ Description-md5: d917c30aa3870e8a38071caa9a905475 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fetchmail Priority: optional Section: mail Installed-Size: 924 Maintainer: Ubuntu Developers Original-Maintainer: Fetchmail Maintainers Architecture: amd64 Version: 6.3.26-1 Replaces: fetchmail-common, fetchmail-ssl Provides: fetchmail-ssl Depends: libc6 (>= 2.15), libcomerr2 (>= 1.01), libgssapi-krb5-2 (>= 1.10+dfsg~), libkrb5-3 (>= 1.6.dfsg.2), libssl1.0.0 (>= 1.0.0), debianutils (>= 1.7), adduser (>= 3.34), lsb-base (>= 3.2-13) Recommends: ca-certificates Suggests: fetchmailconf, default-mta | mail-transport-agent, resolvconf Conflicts: fetchmail-common Breaks: fetchmail-ssl (<= 6.2.5-12), logcheck (<< 1.1.1-9) Filename: pool/main/f/fetchmail/fetchmail_6.3.26-1_amd64.deb Size: 356576 MD5sum: b9ff0db571eaf9479861adbc1312e30b SHA1: ddcc0b870d9e349689f57514b315ee970a2658a7 SHA256: 12a750f98c945b85ea1693cecf3315f48d895c03faa5f56d55c6063fa3cd2e79 Description: SSL enabled POP3, APOP, IMAP mail gatherer/forwarder Homepage: http://www.fetchmail.info Description-md5: 05cb6c758ac9e6de53b36438f8f52a45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fglrx-pxpress Priority: optional Section: admin Installed-Size: 39 Maintainer: Ubuntu Developers Architecture: amd64 Source: ubuntu-drivers-common Version: 1:0.2.91.4 Depends: ubuntu-drivers-common Filename: pool/main/u/ubuntu-drivers-common/fglrx-pxpress_0.2.91.4_amd64.deb Size: 1306 MD5sum: 26c5794d5f1103ee25cde87e04cb2d72 SHA1: c67e7673e7936dee1e2c9da47b971181a109a2f0 SHA256: 78c5cea1a313da4206072de150e4e519d35d1183d3d1a95dfc7ff1dad5e5ccb4 Description: transitional package for ubuntu-drivers-common Description-md5: f11494e618e154235d7240541a9fc755 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: file Priority: important Section: utils Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: amd64 Version: 1:5.14-2ubuntu3 Depends: libc6 (>= 2.4), libmagic1 (= 1:5.14-2ubuntu3) Filename: pool/main/f/file/file_5.14-2ubuntu3_amd64.deb Size: 18752 MD5sum: dfc529c447608ee25ac93cd87a123a12 SHA1: a1d4cffa16cebcc2b07546518c8c613d3112f957 SHA256: 25930f0f2ecce668fb23ef65bf5cbcbb2ee5ad60edbdc56d681ecbae0ef50129 Description: Determines file type using "magic" numbers Multi-Arch: foreign Homepage: http://www.darwinsys.com/file/ Description-md5: 24356148df43e324f7cd0edfa5faa2fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: file-dbg Priority: extra Section: debug Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: amd64 Source: file Version: 1:5.14-2ubuntu3 Depends: libmagic1 (= 1:5.14-2ubuntu3) Filename: pool/main/f/file/file-dbg_5.14-2ubuntu3_amd64.deb Size: 130536 MD5sum: 365b6ba6a950ad5bf41561857ca65839 SHA1: 0cb20c0b3ec18429fad73260474479949ec3259f SHA256: 357b80af54e3c5741e471a3453906a938b880fa9892b73e4a6e052f747982ff4 Description: Determines file type using "magic" numbers (debug) Multi-Arch: foreign Homepage: http://www.darwinsys.com/file/ Description-md5: 7ed49ee2ef2414f5a9f875a720169751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: file-roller Priority: optional Section: gnome Installed-Size: 1888 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.10.2.1-0ubuntu4 Replaces: gnome-icon-theme (<< 2.14) Depends: bzip2, nautilus-data (>= 3.0), unzip, zip, dconf-gsettings-backend | gsettings-backend, libarchive13, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.10.0), libjson-glib-1.0-0 (>= 0.12.0), libmagic1 (>= 5.12), libnautilus-extension1a (>= 1:2.91), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0) Recommends: gnome-icon-theme (>= 2.18), gvfs, sessioninstaller, yelp Suggests: arj, lha, lzip, lzma, lzop, ncompress, p7zip-full, rpm2cpio, rzip, sharutils, unace, unalz, unar, xz-utils, zoo Filename: pool/main/f/file-roller/file-roller_3.10.2.1-0ubuntu4_amd64.deb Size: 302168 MD5sum: 1f2e92e6c6c5a352bafab70b0a0b08d0 SHA1: e302988b89b6e5a5c143e7888011c52eb52a8952 SHA256: acc4828875aefcf2915f804a4baaa503fcdcde548129eac380a3a815bd1003b2 Description: archive manager for GNOME Homepage: http://fileroller.sourceforge.net/ Description-md5: 38d3e4bf80de5287311da5585810d3db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: finch Priority: optional Section: net Installed-Size: 787 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: amd64 Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: pidgin-data (>= 1:2.10.9), pidgin-data (<< 1:2.10.9-z), libc6 (>= 2.14), libglib2.0-0 (>= 2.35.9), libgstreamer0.10-0 (>= 0.10.10), libncursesw5 (>= 5.6+20070908), libpurple0 (>= 1:2.8.0), libtinfo5, libxml2 (>= 2.7.4) Suggests: libx11-6 Filename: pool/main/p/pidgin/finch_2.10.9-0ubuntu3_amd64.deb Size: 197588 MD5sum: 99ff039b5cdda04afb28c2def502c2c9 SHA1: a435622fd06dba2b5f6ff56b47bec75f44a39816 SHA256: b787e84a2faf190ea448935dae58cd7172a556e52c5379fda550dcd027ab0028 Description: text-based multi-protocol instant messaging client Homepage: http://www.pidgin.im Description-md5: 6ddcf2f478810ed1b861f2343495f79b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: finch-dev Priority: optional Section: devel Installed-Size: 342 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: finch (>= 1:2.10.9), finch (<< 1:2.10.9+1~), pkg-config, libpurple-dev, libglib2.0-dev, libncursesw5-dev Filename: pool/main/p/pidgin/finch-dev_2.10.9-0ubuntu3_all.deb Size: 35438 MD5sum: a033349d2a1c4c1bf3f8a8cfb680bc70 SHA1: a491952325e058727a2d1df6aaddfa3cc6f7545d SHA256: e324e78ae564c79d76d052f219e9c50645f09871d8b6721d3e6b28701f9019d2 Description: text-based multi-protocol instant messaging client - development Homepage: http://www.pidgin.im Description-md5: 6a61ea06da490e4c5dc81a62a7ae4a2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: findutils Essential: yes Priority: required Section: utils Installed-Size: 816 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Metzler Architecture: amd64 Version: 4.4.2-7 Pre-Depends: libc6 (>= 2.17) Suggests: mlocate | locate Filename: pool/main/f/findutils/findutils_4.4.2-7_amd64.deb Size: 272014 MD5sum: 547d1eef8066a85da44d661fd6a0cc33 SHA1: 2cf2dbba67030f0a864e0e573526e4310333055a SHA256: a560326ea60908d369faa000bb86bc8da80c591f874c0836d3ca14207828a17b Description: utilities for finding files--find, xargs Multi-Arch: foreign Homepage: http://savannah.gnu.org/projects/findutils/ Description-md5: ad1a783819241ffdf3ff5f37a676af59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: firefox Priority: optional Section: web Installed-Size: 63980 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Version: 28.0+build2-0ubuntu2 Replaces: kubuntu-firefox-installer Provides: gnome-www-browser, iceweasel, www-browser Depends: lsb-release, libasound2 (>= 1.0.16), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.17), libcairo2 (>= 1.2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), libstartup-notification0 (>= 0.8), libstdc++6 (>= 4.6), libx11-6, libxext6, libxrender1, libxt6 Recommends: xul-ext-ubufox, libcanberra0, libdbusmenu-glib4, libdbusmenu-gtk4 Suggests: fonts-lyx Filename: pool/main/f/firefox/firefox_28.0+build2-0ubuntu2_amd64.deb Size: 25129086 MD5sum: 9e7a8e90eddd575b176a64b87708bd7d SHA1: b11f5be3f18451026ef28f7ff1d852bb4ad2957b SHA256: 73e77543219dc1847678ed9af58bf2bd3fb2d2365f909509184d692dcbbfa532 Description: Safe and easy web browser from Mozilla Xul-Appid: {ec8030f7-c20a-464f-9b0e-13a3a9e97384} Description-md5: 46b619f510631c4693dc09c1a3778a55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: firefox-dbg Priority: extra Section: debug Installed-Size: 853270 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Depends: firefox (= 28.0+build2-0ubuntu2) Filename: pool/main/f/firefox/firefox-dbg_28.0+build2-0ubuntu2_amd64.deb Size: 209497476 MD5sum: c438001428cca6539f3af4aa73ca55ec SHA1: def85a0d5e7baa589d9387ab23c08ee5515edb4e SHA256: 3b224845943930b6f674821ac0b259944f0de4cd68252f23b7dc23d28e2e1422 Description: Safe and easy web browser from Mozilla - debug symbols Description-md5: 2937d9d7faa9d066b938045bc076f879 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: firefox-dev Priority: extra Section: devel Installed-Size: 256 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Depends: firefox (= 28.0+build2-0ubuntu2) Conflicts: xulrunner-1.9-dev, xulrunner-1.9.2-dev, xulrunner-2.0-dev Filename: pool/main/f/firefox/firefox-dev_28.0+build2-0ubuntu2_amd64.deb Size: 22168 MD5sum: 02958c1da376b81dc817dcd01f7aec5f SHA1: f50882f3f4d55e9d6da4e9dc2eb48a3affe09f99 SHA256: df2a9df38d659c4d244bf163d3b0416a7053390e7aa9c2c0c981c5e178e356c8 Description: Safe and easy web browser from Mozilla - development files Description-md5: e6b1c31ba86625fb8e5f17ebd7dfd6c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: firefox-globalmenu Priority: optional Section: web Installed-Size: 171 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Depends: firefox Filename: pool/main/f/firefox/firefox-globalmenu_28.0+build2-0ubuntu2_amd64.deb Size: 8316 MD5sum: 90b6cc14dd92a7bdfdb091b6109662b1 SHA1: 260b8e0a8c1d270c5e817cb8c4b56a340d7033fb SHA256: a6022b55ca5ebab8610c5dc96ad058a53aa90106398282bfc9b04a9a7c3105a5 Description: Safe and easy web browser from Mozilla (transitional package) Description-md5: 1b267431605d90f28d4104239bf87ff8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: firefox-locale-af Priority: optional Section: web Installed-Size: 592 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-af-base Filename: pool/main/f/firefox/firefox-locale-af_28.0+build2-0ubuntu2_amd64.deb Size: 337182 MD5sum: 56846415025133ce8a3bd7d1bca24e30 SHA1: 1cae162f644a1afe926ac7abce4f863d77ba0563 SHA256: 78bf3d0c6d7a12c664f208eface04e05ae4ad0d08765361eda1e4de8ee838a4c Description: Afrikaans language pack for Firefox Description-md5: 1f2d31c5ec337989fa73d4561a877f98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-an Priority: optional Section: web Installed-Size: 593 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-an-base Filename: pool/main/f/firefox/firefox-locale-an_28.0+build2-0ubuntu2_amd64.deb Size: 341434 MD5sum: bfab4d9824eb39792a754e6ee412ae69 SHA1: 9cff8ada3f0346d2ebc9a896e02c0bc02cba43f1 SHA256: b1dbdc07c14a60f09a8df20a4ddff85bad3ff757d919c10ef39adfc6ad6ee3a4 Description: Aragonese language pack for Firefox Description-md5: 84dc3959cabfc22bb848244498e5653a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ar Priority: optional Section: web Installed-Size: 621 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ar-base Filename: pool/main/f/firefox/firefox-locale-ar_28.0+build2-0ubuntu2_amd64.deb Size: 366850 MD5sum: e22bd8e1e1994e1ad28d79d186075f23 SHA1: 507090a7856bb4e62aa8e3c294e501367dc9a71e SHA256: eb88ae279345deeefc5d9ffe57f8b5d2ce6d34c7b9a041a3d7476d825e70b209 Description: Arabic language pack for Firefox Description-md5: a5123286dfa8a3ded7978c0ec00ec6f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-as Priority: optional Section: web Installed-Size: 626 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-as-base Filename: pool/main/f/firefox/firefox-locale-as_28.0+build2-0ubuntu2_amd64.deb Size: 378718 MD5sum: a2d26870569dc6d660cdc6ec1ac36885 SHA1: 026c7e57496cd58b8c53254eb503bb90bfaeb234 SHA256: 3b9a94f1ca7a3b08a0d66dc444d5ee437cdaf8da1a9f9a3660ae18d217d079ed Description: Assamese language pack for Firefox Description-md5: 9c46a24962d3692dcff9f290ff8f2e5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ast Priority: optional Section: web Installed-Size: 540 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ast-base Filename: pool/main/f/firefox/firefox-locale-ast_28.0+build2-0ubuntu2_amd64.deb Size: 286878 MD5sum: 713cb24722143a8f8ce41c646b3c2920 SHA1: 71096c7b4665823dd7ee5d21fee25375c6cf8b16 SHA256: 468e12e4fb98872d9a2b9b48dd1d4bf6dbcbe0b6e0ec87d7667c1e87acdaf1f8 Description: Asturian language pack for Firefox Description-md5: f648bf0b51344fe4fc8b6419faaf903f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-be Priority: optional Section: web Installed-Size: 574 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-be-base Filename: pool/main/f/firefox/firefox-locale-be_28.0+build2-0ubuntu2_amd64.deb Size: 317568 MD5sum: d68e2e42841b325ce8446cc62589028a SHA1: 5ab6ea38f68189c6c4e51c75c7fd67f42482be7f SHA256: 78e151352e34bb3d90b2b1ec221d7c727c615b385d6066c07fe30d681a4f4fb3 Description: Belarusian language pack for Firefox Description-md5: 7b231b0d3f58acf262a12b2168cb358c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-bg Priority: optional Section: web Installed-Size: 613 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-bg-base Filename: pool/main/f/firefox/firefox-locale-bg_28.0+build2-0ubuntu2_amd64.deb Size: 363838 MD5sum: 0fa077fefa90d6a50177604ebf371674 SHA1: 780d4c94067073e4dfca6f4f55eec3ef9421a053 SHA256: 271ed6719698d8da0b36ec02c333dcb62d1ad0b4b76e4cdd87a05ad5d987c202 Description: Bulgarian language pack for Firefox Description-md5: a6418377c6a1864fbec5d0096027c80b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-bn Priority: optional Section: web Installed-Size: 1096 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-bn-base Filename: pool/main/f/firefox/firefox-locale-bn_28.0+build2-0ubuntu2_amd64.deb Size: 749620 MD5sum: 26e6a58a6a8651af80a37f739e83968c SHA1: 2ae280a616d98b3fe0e8cfbb77cd4b87e95710ee SHA256: fab4d9065663ad8e8ec74dd5be22f084544b9b96201489f302a3b4c29b2497cc Description: Bengali language pack for Firefox Description-md5: cd17d1988001fce46f906d72ce3c6612 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: firefox-locale-br Priority: optional Section: web Installed-Size: 579 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-br-base Filename: pool/main/f/firefox/firefox-locale-br_28.0+build2-0ubuntu2_amd64.deb Size: 327018 MD5sum: c50cbad118ebc33730055e11a423acd3 SHA1: 299a0b5a9ebed54530ab8149ea93ab3fcd5edee4 SHA256: 5571af08138a321909e1d72a62977706edd6b575f3844ed87ddbce25e59b038b Description: Breton language pack for Firefox Description-md5: 880da4a954cd5c32e28bc4be50b8dea2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-bs Priority: optional Section: web Installed-Size: 597 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-bs-base Filename: pool/main/f/firefox/firefox-locale-bs_28.0+build2-0ubuntu2_amd64.deb Size: 344434 MD5sum: dcd3bce08baa36021625ad3f08ee8257 SHA1: e17649987f92275b24ff2db484b4503f09b7c9a9 SHA256: aaf272ec0f3409a2a2f8844b1ade7af8f04f5f83e6030f0d77a3fd81051eeb04 Description: Bosnian language pack for Firefox Description-md5: 5ee279fa3b945b639bc360970fc44d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ca Priority: optional Section: web Installed-Size: 592 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ca-base Filename: pool/main/f/firefox/firefox-locale-ca_28.0+build2-0ubuntu2_amd64.deb Size: 340210 MD5sum: 3dc22ee2c56aafad9b52a3ef09f65fdd SHA1: 26e944a3022fccd7b92264173f8f7fe12063e52f SHA256: ea015b7d586b28cf3f24a552724ca404fdad3bf55a49a300fcba48d2e0c55bb2 Description: Catalan; Valencian language pack for Firefox Description-md5: d48166338c00f06f6c36f6214a5a0d8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-cs Priority: optional Section: web Installed-Size: 576 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-cs-base Filename: pool/main/f/firefox/firefox-locale-cs_28.0+build2-0ubuntu2_amd64.deb Size: 326066 MD5sum: 58c8d77b0b0880c8c97b934fb9333f90 SHA1: 28966c13e395e6c690b8ac1e90bca0bcfee4bfea SHA256: dd03daf5629ac5c01696684a9bcfb4fecdb2c37e131d7963e06cec582ced1dbf Description: Czech language pack for Firefox Description-md5: 9b0b230a019634cdfd1b60f7fd46b813 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-csb Priority: optional Section: web Installed-Size: 569 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-csb-base Filename: pool/main/f/firefox/firefox-locale-csb_28.0+build2-0ubuntu2_amd64.deb Size: 315844 MD5sum: 1fc22c8a3669af658ac096ec1681c6cc SHA1: 7fefb5e75468ae1a790be48325f2a785fccaae42 SHA256: 8d53ba0d038737a4a234d0475dd45ef01e624ff3f79587aeca43b397e06a7ac3 Description: Kashubian language pack for Firefox Description-md5: 76438ffb5606f4d03a5aba83c323a0da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-cy Priority: optional Section: web Installed-Size: 583 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-cy-base Filename: pool/main/f/firefox/firefox-locale-cy_28.0+build2-0ubuntu2_amd64.deb Size: 329012 MD5sum: 7284666c0bad6dfec0859820d59c62fc SHA1: cf2e9b6e81b8823affa08c0eaf37b7be7730916f SHA256: a8bca50e6b5b0130d44a583eb02f3a354bbad4b621ea28a9a3c79e2b3550b412 Description: Welsh language pack for Firefox Description-md5: 9f3df834aa7f35a8968d57963f462187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-da Priority: optional Section: web Installed-Size: 572 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-da-base Filename: pool/main/f/firefox/firefox-locale-da_28.0+build2-0ubuntu2_amd64.deb Size: 322560 MD5sum: 6a6f508a8c1371f00c4b7bf9a47d5bca SHA1: 7e5565988e206935d92d8c132af12bc3175b3eb8 SHA256: ec25f3bc199651cb77d36a32f4be15b8f32f1e60288b03680d24e50c36d3d429 Description: Danish language pack for Firefox Description-md5: 25350d542907c601644fdbaf48ce9060 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-de Priority: optional Section: web Installed-Size: 589 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-de-base Filename: pool/main/f/firefox/firefox-locale-de_28.0+build2-0ubuntu2_amd64.deb Size: 333540 MD5sum: a6cf9751f3fcc8dc01814185bb20d8cf SHA1: 9272e3eb55ccad3e87fc0ce5ed7f0327ec4df659 SHA256: 401d364723cb754014ac5a3729808f329d5cc8ee87c8734fe3953546a8e4d3c6 Description: German language pack for Firefox Description-md5: 97a5b441966c2394117490ceebbb8584 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: firefox-locale-el Priority: optional Section: web Installed-Size: 619 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-el-base Filename: pool/main/f/firefox/firefox-locale-el_28.0+build2-0ubuntu2_amd64.deb Size: 366540 MD5sum: 283353f3903ad5c3775c9e500eed5a29 SHA1: fa6d51dddd8d897b286ac76e076083cebbad5c7a SHA256: b2fad24b9acfa5807e479141a1931eaf6530559829750d0bc6e86ec7d7ddcc15 Description: Greek language pack for Firefox Description-md5: f0378f5c3eae2c3f377fbc483e6581b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-en Priority: optional Section: web Installed-Size: 939 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-en-base Filename: pool/main/f/firefox/firefox-locale-en_28.0+build2-0ubuntu2_amd64.deb Size: 521080 MD5sum: aa2b4292d2ab45ead7daf51c6408e182 SHA1: 32f7eb2d094bf71dd483a7afbd9c1d63ba4d8c21 SHA256: 92df74cb613b9d785c5d5e4137d9053d943f6256788a8d15c1106217564d3d68 Description: English language pack for Firefox Description-md5: 59e7e034b5f9626737da9a2c21a3e6b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: firefox-locale-eo Priority: optional Section: web Installed-Size: 598 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-eo-base Filename: pool/main/f/firefox/firefox-locale-eo_28.0+build2-0ubuntu2_amd64.deb Size: 340128 MD5sum: af9d5eb08551f4cc9c515d293e4456cb SHA1: cdfa5e82d27c2a8ef77c5a281a712c2308ad29c7 SHA256: 16b24242fbc732142656ff9ffee7507d850d64c0144b31ce260c9ee8ad3c5cb4 Description: Esperanto language pack for Firefox Description-md5: 1b15bec1df3ef8869a632d474dfb2589 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-es Priority: optional Section: web Installed-Size: 1656 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-es-base Filename: pool/main/f/firefox/firefox-locale-es_28.0+build2-0ubuntu2_amd64.deb Size: 1105948 MD5sum: 4a73d13930370faaac9f72358c394bac SHA1: 63ac56583ff1cc38114b229300c940ab0df19dee SHA256: 8f9b59951f5d29da2e78b19459499970499912173f043326c8e30fb44c2e1208 Description: Spanish; Castilian language pack for Firefox Description-md5: 30083dcb82dfa2029aeabd0206ce0f4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: firefox-locale-et Priority: optional Section: web Installed-Size: 567 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-et-base Filename: pool/main/f/firefox/firefox-locale-et_28.0+build2-0ubuntu2_amd64.deb Size: 317198 MD5sum: 5aacb0e2ce52ee57f1e8fb0a66bdb58d SHA1: d045b6bcad2a28295f1bafea2ed9791a5088c53f SHA256: 6c8929da8bc2bbd86285ff3dab6127685181b6cdebb4b10234d252d71960b565 Description: Estonian language pack for Firefox Description-md5: 334b47c1e5a384da36ae89623fec8e70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-eu Priority: optional Section: web Installed-Size: 597 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-eu-base Filename: pool/main/f/firefox/firefox-locale-eu_28.0+build2-0ubuntu2_amd64.deb Size: 340106 MD5sum: 9518b1a81f157c40460525c06defe420 SHA1: f362c794bd95d5cc89f222ae2b80e75a59da2cd4 SHA256: 67da86b57b826915e399f6dd2c7982321cef6a200ea6dae6fdce5be670e97c11 Description: Basque language pack for Firefox Description-md5: af348a109ea600cac4199bf41ea027f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-fa Priority: optional Section: web Installed-Size: 632 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-fa-base Filename: pool/main/f/firefox/firefox-locale-fa_28.0+build2-0ubuntu2_amd64.deb Size: 378812 MD5sum: 529f764b481d29b93a1d1b856279fa73 SHA1: 0916a4d974c5bdfa1787cd9b1c6f3ef9acffa8fb SHA256: 5b637f3f4670a99a9958a18d2107f8296e8ba6ef60e4a9ef9e75a6cbaea571e6 Description: Persian language pack for Firefox Description-md5: 39c9ec90bfa422dbe322c5144c9719eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-fi Priority: optional Section: web Installed-Size: 582 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-fi-base Filename: pool/main/f/firefox/firefox-locale-fi_28.0+build2-0ubuntu2_amd64.deb Size: 329900 MD5sum: 3cc8947cd2c30921e7c34b9b9c9a24a4 SHA1: 8e0498bba738e071f3200652b7c91bac777a5f9b SHA256: 25a77ceee6faadbb1f48b00f0cbb482ade118e7837f5588601389fea16962d92 Description: Finnish language pack for Firefox Description-md5: 845195bd76d02590d0c2a74ed1b5c5f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-fr Priority: optional Section: web Installed-Size: 603 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-fr-base Filename: pool/main/f/firefox/firefox-locale-fr_28.0+build2-0ubuntu2_amd64.deb Size: 346318 MD5sum: a5ca571d3e29b711f4073872395a9ac9 SHA1: e88c36750912a515cb0db06a7c72078014730227 SHA256: 681b3e80e0c7c208e04da33345030e7550df0206f8fe04a34a380774440c35f2 Description: French language pack for Firefox Description-md5: 4b599250252777b1f0b2e86222826241 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: firefox-locale-fy Priority: optional Section: web Installed-Size: 593 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-fy-base Filename: pool/main/f/firefox/firefox-locale-fy_28.0+build2-0ubuntu2_amd64.deb Size: 338502 MD5sum: 2ae872da99e5a4b081cb138839d007ed SHA1: 9504ee424172ac4f3f4c39ef3c7163ba6137fd1c SHA256: e99d909757f3b71f4143f540cf360660f7b9f41d1a2aa17d83d6d091af09dd6a Description: Western Frisian language pack for Firefox Description-md5: 73e0293d227dc25de2183bbda4ffb994 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ga Priority: optional Section: web Installed-Size: 600 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ga-base Filename: pool/main/f/firefox/firefox-locale-ga_28.0+build2-0ubuntu2_amd64.deb Size: 344376 MD5sum: 8c7307a4c646a33dad21eea34e8e00c6 SHA1: c21b10afeacb11ab90458eaae029ed69903e8076 SHA256: 98c0d28006be4e9bb37fce22c4fbcabadad1a532f1eddfa036a66163c49b8699 Description: Irish language pack for Firefox Description-md5: 3989bf0d690ce80122175c0328ae435d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-gd Priority: optional Section: web Installed-Size: 590 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-gd-base Filename: pool/main/f/firefox/firefox-locale-gd_28.0+build2-0ubuntu2_amd64.deb Size: 338578 MD5sum: 18fc596cf015192df58f67d82d2ae127 SHA1: 7b235cc061015210362c7e03a7c75914a4fbc58a SHA256: f3309c00a30cc1a9963139f0e6c85ca1af171267b11a2dce3fbd30392b2266a1 Description: Gaelic; Scottish Gaelic language pack for Firefox Description-md5: f88ffac5fcd5341c9502358cb67b49f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-gl Priority: optional Section: web Installed-Size: 574 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-gl-base Filename: pool/main/f/firefox/firefox-locale-gl_28.0+build2-0ubuntu2_amd64.deb Size: 325356 MD5sum: 80cf2d329d7bfaa1ee5926695012ccc4 SHA1: c0cc5d9f33c64322d5ade289a5db63f1d88203eb SHA256: fa23b4e6a2994d2124b4a4a7c4a6dfd40fe2854b9d8736a094fd651e108dc764 Description: Galician language pack for Firefox Description-md5: f411e16f3f4a2f154a90570e3ca52ef8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-gu Priority: optional Section: web Installed-Size: 607 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-gu-base Filename: pool/main/f/firefox/firefox-locale-gu_28.0+build2-0ubuntu2_amd64.deb Size: 353592 MD5sum: fc1edbe10e6f01f9537ab9e56ccd5f0d SHA1: 16e0a0fe94e83dd201f108f35d210681f1240253 SHA256: c819cfc83f8dfe7422354262d5674e92fcbebf6e5792d6559969c65ca61f4a18 Description: Gujarati language pack for Firefox Description-md5: c646198c5d0155da51530f8b2225818b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-he Priority: optional Section: web Installed-Size: 601 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-he-base Filename: pool/main/f/firefox/firefox-locale-he_28.0+build2-0ubuntu2_amd64.deb Size: 353902 MD5sum: baec567ad254269c1f4ac7f3e2b3d779 SHA1: 4ebb0052eac84d5f045875dc8701dd78a6f1377c SHA256: bcd3cc97e8edc52b476eec5f61e754c9a574b00600ce84359b5cfae22fdba6ae Description: Hebrew language pack for Firefox Description-md5: 8d33d6616f2426b1fe3287417f0d7949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-hi Priority: optional Section: web Installed-Size: 623 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-hi-base Filename: pool/main/f/firefox/firefox-locale-hi_28.0+build2-0ubuntu2_amd64.deb Size: 372426 MD5sum: 2bbfd45d4b3da6d3ce1bc31a3240d38d SHA1: 5617725b8ff65993ea35203e7849a6846d37ccfd SHA256: d6028a3aebdd6b1250f3222804bf8cb4376cc9ad8cbf97609037ff56bdb0e5b6 Description: Hindi language pack for Firefox Description-md5: 29f96336756fa58ec44eefd686bd6e85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: firefox-locale-hr Priority: optional Section: web Installed-Size: 604 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-hr-base Filename: pool/main/f/firefox/firefox-locale-hr_28.0+build2-0ubuntu2_amd64.deb Size: 347754 MD5sum: b700ee31ad73452ae381bb9f466b0e67 SHA1: 6f8976b51fec46dbca8069cc2a84d19a59ee1f30 SHA256: 88c8f7f78dda316934516de6d4f1c107dcd15482c5c6136cf54ed48ae540fc1a Description: Croatian language pack for Firefox Description-md5: 4138741435206cca66b4c3941d2b6e82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-hu Priority: optional Section: web Installed-Size: 583 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-hu-base Filename: pool/main/f/firefox/firefox-locale-hu_28.0+build2-0ubuntu2_amd64.deb Size: 335356 MD5sum: 554935b615de4ce2e6c2437193422bc8 SHA1: 58bae9ca4050b74f0f35e8a6644c8ceae1531dcd SHA256: c63f142de15d3b9de2017abbcdc39def4247bf85b60e88349a9f73f769c72cd5 Description: Hungarian language pack for Firefox Description-md5: 7587d24fac9230de0dab2a74b1b3c298 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-hy Priority: optional Section: web Installed-Size: 638 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-hy-base Filename: pool/main/f/firefox/firefox-locale-hy_28.0+build2-0ubuntu2_amd64.deb Size: 387008 MD5sum: 2bd5f1df7c5c6bf1dab627a51f2b7ef1 SHA1: 85f1165077ed4e7e5916d50fef8f1cb8749533e2 SHA256: 63b9e52af90f17dc279fc9f4b5b10a21114bb5332029049f482f774365bf020b Description: Armenian language pack for Firefox Description-md5: 2278344f15e1efe17aecd1af5a2be846 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-id Priority: optional Section: web Installed-Size: 561 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-id-base Filename: pool/main/f/firefox/firefox-locale-id_28.0+build2-0ubuntu2_amd64.deb Size: 313824 MD5sum: 093b3c129145131c13ca5c08023a0c69 SHA1: c04244ac761387fe4855145da0b009fa95fc1800 SHA256: 93b6f096b0ca50d54a7d20ec86716a574aa68459800f9552777bd46c75190f9a Description: Indonesian language pack for Firefox Description-md5: 568a225a428289bfedbfee77f12ef445 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-is Priority: optional Section: web Installed-Size: 592 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-is-base Filename: pool/main/f/firefox/firefox-locale-is_28.0+build2-0ubuntu2_amd64.deb Size: 335456 MD5sum: e1eeff82bc682cebbe1579ce2b5f54a7 SHA1: 2adb30c3d830e5119b55e45d6bdfe10dde301872 SHA256: ddbef704cc69a51771169532817bda7e392e8de750918d93e6f60340587098f3 Description: Icelandic language pack for Firefox Description-md5: 3a574633745f9b6d97f07f1c738599a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-it Priority: optional Section: web Installed-Size: 536 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-it-base Filename: pool/main/f/firefox/firefox-locale-it_28.0+build2-0ubuntu2_amd64.deb Size: 277070 MD5sum: 4cc430b144fee79f6d5d461e13f64815 SHA1: eaa3b4342647ce610a7800464c138995a688090c SHA256: 3a088a1afe78cf82e3bd0d3136f4f4e07427aec2d2bdfe9fa9b7fa0edc8a87d3 Description: Italian language pack for Firefox Description-md5: 67e195ac5003115f8cafa0ec0b0ec849 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-ja Priority: optional Section: web Installed-Size: 622 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ja-base Filename: pool/main/f/firefox/firefox-locale-ja_28.0+build2-0ubuntu2_amd64.deb Size: 370414 MD5sum: dda39773bc32cd22c5ddabd927d9ef83 SHA1: fa34e22395307a605d5592a53b39c9e4335eb591 SHA256: e163974c40b2a7495b087f8e16a390afe6974d684c16e72c3453f41cc9e0de35 Description: Japanese language pack for Firefox Description-md5: aa0b0e800989cac3ce480ef7507c17d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live Package: firefox-locale-ka Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-ka_28.0+build2-0ubuntu2_amd64.deb Size: 10402 MD5sum: dfc7c9935b1fbe45c53d34b60b099035 SHA1: 2a2d41fa5d803cfdc8a9629702ced934ff3e0a7c SHA256: a9956185a1a6211a331020d6af87fb7af89cd64aa726244c9675313a6113ac0e Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-kk Priority: optional Section: web Installed-Size: 622 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-kk-base Filename: pool/main/f/firefox/firefox-locale-kk_28.0+build2-0ubuntu2_amd64.deb Size: 373020 MD5sum: dc3ded538d5019137fe5734123a8333d SHA1: 5c84ebcffa84db56c0110b46b0ac241367abb7f8 SHA256: 74de066ca0cd44e42f924ca49ee3bb9229a43c4dd1ab7d3c9f586bfa0566e274 Description: Kazakh language pack for Firefox Description-md5: 98ad9668e81080f67619b3468ea616a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-km Priority: optional Section: web Installed-Size: 664 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-km-base Filename: pool/main/f/firefox/firefox-locale-km_28.0+build2-0ubuntu2_amd64.deb Size: 410522 MD5sum: 01fc77c72afb334821f3d1ea6bdcad16 SHA1: c3d26aee74551202b5837938cf15c3e7d2528952 SHA256: dcddc6eb8653137f732cc62a9c4ceb8e8a001204e8a19b9859952599f59366a4 Description: Central Khmer language pack for Firefox Description-md5: 5244e85b69105bab39ff55a3e06c2079 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-kn Priority: optional Section: web Installed-Size: 637 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-kn-base Filename: pool/main/f/firefox/firefox-locale-kn_28.0+build2-0ubuntu2_amd64.deb Size: 388290 MD5sum: 8e0be5a41bd53489cbd820d1a3e48d84 SHA1: 860a481480f033119d097151ce37f088450d2e63 SHA256: ac2f7cfc1868d915722b9c2c3201500dd47a9bea579b3b8cfd94cf6e55979c83 Description: Kannada language pack for Firefox Description-md5: 609de6cf2cadf99b292a639def3e15db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ko Priority: optional Section: web Installed-Size: 587 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ko-base Filename: pool/main/f/firefox/firefox-locale-ko_28.0+build2-0ubuntu2_amd64.deb Size: 333290 MD5sum: 35ba1311e6afba632077ed29c0628f20 SHA1: 2da3fb9208751f8ae9effbccef459da385b5483f SHA256: af860d275daba1420287ea8207fc80c0c172b73cf6dc685ea992451bd762fc29 Description: Korean language pack for Firefox Description-md5: 7477cc3b85c1cc2886c7438ffec39b8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ku Priority: optional Section: web Installed-Size: 601 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ku-base Filename: pool/main/f/firefox/firefox-locale-ku_28.0+build2-0ubuntu2_amd64.deb Size: 348130 MD5sum: fb0e1b4b9b9e8e4b49383cafc28863dd SHA1: 5dc47ed4e387379c9f134bae21f0969aa24ad405 SHA256: 5154d6108b58c0a6fb9bffe07a2b41727e2fe415c2c5582bb648f0ed316fa976 Description: Kurdish language pack for Firefox Description-md5: 9eb28b49c217558a45aff76b83b8990f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-lg Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-lg_28.0+build2-0ubuntu2_amd64.deb Size: 10392 MD5sum: 5dc9bdec7251b832bb2e199bd45fc8f5 SHA1: a550cfd93beb89019285feada80be3b923dfa93e SHA256: fddca59703601524065807461575caba4ccaad6d289303a708691185d139ffd7 Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-lt Priority: optional Section: web Installed-Size: 601 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-lt-base Filename: pool/main/f/firefox/firefox-locale-lt_28.0+build2-0ubuntu2_amd64.deb Size: 350596 MD5sum: 65af813fb61c440895502c9939038b9b SHA1: 57b3b7d6074059403f921b44e2b990252e625016 SHA256: 107d7b0239d09d5d85120324f2bcc58ed5e4f15da6c76e18521ab0218f522cec Description: Lithuanian language pack for Firefox Description-md5: 519f3c51c7a90ee972069b44a1acef4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-lv Priority: optional Section: web Installed-Size: 583 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-lv-base Filename: pool/main/f/firefox/firefox-locale-lv_28.0+build2-0ubuntu2_amd64.deb Size: 329416 MD5sum: eba5b917ee60f739fd30828faa66d82b SHA1: 0572e0599b68faab392d2bc6a43be8b247bec4e7 SHA256: df46335d26d2078fab7479630f6a5d5822e6c296c2912a702e623a32a280f16b Description: Latvian language pack for Firefox Description-md5: 355c458949586e8977646d1ce6c5096d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-mai Priority: optional Section: web Installed-Size: 626 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-mai-base Filename: pool/main/f/firefox/firefox-locale-mai_28.0+build2-0ubuntu2_amd64.deb Size: 375920 MD5sum: ffee8da44c64f6a1bc7b583de3cdb34f SHA1: b9692be272bc54b3aa695aeefc1e8e7780b33559 SHA256: 3a2024ee7412740bec7fb3f8c44eab5b2bd0111e86c4bfe5b0c38b6044570d6a Description: Maithili language pack for Firefox Description-md5: 9fd42103512e10b616b758b3e6da26f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-mk Priority: optional Section: web Installed-Size: 638 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-mk-base Filename: pool/main/f/firefox/firefox-locale-mk_28.0+build2-0ubuntu2_amd64.deb Size: 382202 MD5sum: 8210d73359f9006945110a667f1847c7 SHA1: 47140d0be404135e80cdd91595804709f0f18684 SHA256: ab7082ffb72dd1e9cb592871fb6ab239103799cc39a62faf5750c2267fc5cf78 Description: Macedonian language pack for Firefox Description-md5: 0731fc46c1b1fae2ba6f6b1105017640 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ml Priority: optional Section: web Installed-Size: 649 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ml-base Filename: pool/main/f/firefox/firefox-locale-ml_28.0+build2-0ubuntu2_amd64.deb Size: 397376 MD5sum: db3d7f47ca45d3f07242596383ff8271 SHA1: 57c42442e37ff39f2ab0bede06dd35628d12cdac SHA256: 2686a5b08c0d3a4a2cacc47c2e3d9c5f22b0c9cc0c9d9401c1c40510d99d7451 Description: Malayalam language pack for Firefox Description-md5: 90093d1da853cba1ef56fb07a5d3ccff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-mn Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-mn_28.0+build2-0ubuntu2_amd64.deb Size: 10394 MD5sum: e5c865e4803987bf70a267335fefc906 SHA1: c256a84d32dedc62e1435d68be713e24d3c44b25 SHA256: a452700e29c5010e47d72b89eae38fa18cca3a8b01150672a1fa73be29688139 Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-mr Priority: optional Section: web Installed-Size: 622 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-mr-base Filename: pool/main/f/firefox/firefox-locale-mr_28.0+build2-0ubuntu2_amd64.deb Size: 370940 MD5sum: 5626f759e1eb177a7a8f461485f40651 SHA1: 0ac4fdb05cd179c6749ccbce982cace56f76a9f4 SHA256: 275faa54067d8521222963a4d87f5edd2fc8db326a5c5717e908b141b11c90fb Description: Marathi language pack for Firefox Description-md5: b7ac24ce2d3f6d087e9a9bbf9c956d6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ms Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-ms_28.0+build2-0ubuntu2_amd64.deb Size: 10394 MD5sum: 7667dc49797b1560fd9489c636689494 SHA1: b55a6f8312c80fef67327aead21daed806b52d4a SHA256: e53bc6e76d107ecf22d02102f2bded1fa9f90a8fccba92224459109c57610bdb Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-nb Priority: optional Section: web Installed-Size: 584 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-nb-base Filename: pool/main/f/firefox/firefox-locale-nb_28.0+build2-0ubuntu2_amd64.deb Size: 327320 MD5sum: ba79d28a5bc6aad17eeaa10084646d93 SHA1: 4fe933fb5f0ec07aba16de63b0307d553df01838 SHA256: aa0327519e8aaea32e2c30b7a581f4997a5cebc1a75b6f24f727a24b5a29567f Description: Bokmål, Norwegian; Norwegian Bokmål language pack for Firefox Description-md5: 8a05e67a1c0fa64d86a13ead1dbd4981 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-nl Priority: optional Section: web Installed-Size: 581 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-nl-base Filename: pool/main/f/firefox/firefox-locale-nl_28.0+build2-0ubuntu2_amd64.deb Size: 329556 MD5sum: c34121cd9d96193b8cc22a981253e581 SHA1: 17f9b4aac7c49abced6e8f266be0b55ac26de080 SHA256: 5986a0df986a7e490304c908cd18777bd923e1ae646c81eb86e3d8083987726e Description: Dutch; Flemish language pack for Firefox Description-md5: c8c7d0f350530c7041fcfc71d8f297a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-nn Priority: optional Section: web Installed-Size: 577 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-nn-base Filename: pool/main/f/firefox/firefox-locale-nn_28.0+build2-0ubuntu2_amd64.deb Size: 322600 MD5sum: e1ffbb3e9d355ea84c41c5d80b305899 SHA1: 99007a5924c693d5194bec8dd4c8980be57aa5d2 SHA256: 2abee79aa63d19e8b0a4f62a3ecc452657608f677cb117031ebc6d124ef0bb0b Description: Norwegian Nynorsk; Nynorsk, Norwegian language pack for Firefox Description-md5: a2434677506d5d2ae1b6f340d5e3b2ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-nso Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-nso_28.0+build2-0ubuntu2_amd64.deb Size: 10398 MD5sum: 26479d3d27f9d530af3fa29010c0ece0 SHA1: 478d436648e8abb91998bce8c0f9c2fd2808df32 SHA256: 380330d01a9b028a169217f86d96cd39b460dd12aa2cf44139790f23e178d1f8 Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-oc Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-oc_28.0+build2-0ubuntu2_amd64.deb Size: 10390 MD5sum: 108f4f6e67f238bf15ace8d6cda37090 SHA1: ea9317936e1f6f148eeeb59bfabca09e4c515d09 SHA256: 0daee26aaa655095dad8ca6fbac5e98193c0958dc10ed4f6de1b645ad685ba68 Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-or Priority: optional Section: web Installed-Size: 643 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-or-base Filename: pool/main/f/firefox/firefox-locale-or_28.0+build2-0ubuntu2_amd64.deb Size: 393788 MD5sum: 890fc72dffc5eff16a9714621ff7efd3 SHA1: 03795c38ace55d86bdd1cb1ad2c0b37cf3d04374 SHA256: 41cdebe70f0c3e7d9955cbbcc7dc7cd1f090eb5b3a50589b8d459bedbb0a5271 Description: Oriya language pack for Firefox Description-md5: 5135d4190ce2532be58c91c5fd3f319b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-pa Priority: optional Section: web Installed-Size: 617 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-pa-base Filename: pool/main/f/firefox/firefox-locale-pa_28.0+build2-0ubuntu2_amd64.deb Size: 365678 MD5sum: 71e95779961a6fc6777689ca24dfd63b SHA1: 67f85b089378d984f5efe6032d5eabe4fe5a3745 SHA256: 2162a7e322a0ec022efef0792e00b0c5635e1990a78a2b801ee1b77c5c02a9a6 Description: Panjabi; Punjabi language pack for Firefox Description-md5: 3bfbd21e289c4d4ef3e9bd89d92a048f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-pl Priority: optional Section: web Installed-Size: 572 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-pl-base Filename: pool/main/f/firefox/firefox-locale-pl_28.0+build2-0ubuntu2_amd64.deb Size: 321082 MD5sum: d62ada9d35de2fd671c9eb67428b81ee SHA1: 87ea291a0ab1a2f4841521b9d83a894a17c1d29d SHA256: fdc11dc88f9d29a522ac60c983f5afb2af7255e98aa0b5ce98c31a300b74306a Description: Polish language pack for Firefox Description-md5: ffd73141d32fab7a8990d3663208d5ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-pt Priority: optional Section: web Installed-Size: 969 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-pt-base Filename: pool/main/f/firefox/firefox-locale-pt_28.0+build2-0ubuntu2_amd64.deb Size: 633582 MD5sum: 5871fda3f56f116b9906fbe3a98080a5 SHA1: 0fc3ffcc897d184fd163c087ea041acc08c1f150 SHA256: f52b39034923418a07d997d134271d6efecab0a851d31168bf7d93a73b885765 Description: Portuguese language pack for Firefox Description-md5: ba400e83844c93550cd9bbb88c3f610f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live Package: firefox-locale-ro Priority: optional Section: web Installed-Size: 621 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ro-base Filename: pool/main/f/firefox/firefox-locale-ro_28.0+build2-0ubuntu2_amd64.deb Size: 366682 MD5sum: 3bdff2593a8321fb45611657901a0c17 SHA1: 3ad94ee6c1a4347c490ae87e00deb357e7ad11dc SHA256: cc52038e0f1334e16582df7db969134519a3180268fc5cc507cf40951193162f Description: Romanian language pack for Firefox Description-md5: bfe768497923b95b007c38b40a8b5c77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ru Priority: optional Section: web Installed-Size: 565 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ru-base Filename: pool/main/f/firefox/firefox-locale-ru_28.0+build2-0ubuntu2_amd64.deb Size: 310024 MD5sum: 3968f10bc0016504682b9dd5284e8c7e SHA1: 5f1eec0fb102bf5cf5fbd11cc67fbd827c7731ec SHA256: 179533c959383b05a1b2a44816e784ec4510384645bbc3532fad85e012c71a74 Description: Russian language pack for Firefox Description-md5: b936b6c575ae73b427a148a37de4ebd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, lubuntu-live Package: firefox-locale-si Priority: optional Section: web Installed-Size: 624 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-si-base Filename: pool/main/f/firefox/firefox-locale-si_28.0+build2-0ubuntu2_amd64.deb Size: 373958 MD5sum: 1d9debd90584adee4b2a9d56331dcb80 SHA1: 6599c65efd1cd94a526b4923b08e650ffe847a98 SHA256: e3ebf14bd26746db2bd2befd4ba6d8ae614ab86aa53ff3bcd4deb02ed7344b30 Description: Sinhala; Sinhalese language pack for Firefox Description-md5: d336ad9f3d64d9c8b369c2627a15f388 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-sk Priority: optional Section: web Installed-Size: 590 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-sk-base Filename: pool/main/f/firefox/firefox-locale-sk_28.0+build2-0ubuntu2_amd64.deb Size: 339840 MD5sum: aa64e43edf99864c02dcebcfc4e4763c SHA1: c634b340576c38aabc9ebe7110ae9c7684616b3b SHA256: 24e2130969ce8c9c0a61e83773216f4b3ee741a783e04b3eacfd989d32d16994 Description: Slovak language pack for Firefox Description-md5: 66f1264b5485237c1ea88079ced9a6a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-sl Priority: optional Section: web Installed-Size: 573 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-sl-base Filename: pool/main/f/firefox/firefox-locale-sl_28.0+build2-0ubuntu2_amd64.deb Size: 323082 MD5sum: 1c7a8a950833882e6a85982e69951b44 SHA1: 816e75a587d7e6df032977d5e71d6bbf58ade22a SHA256: d1dedbdc94b5b18b69dba9446d1de5b0547a10506e39d5f6e1cdfe2ef53c3a4e Description: Slovenian language pack for Firefox Description-md5: 6fe2fc03696fbf18b2bf180914ee1eb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-sq Priority: optional Section: web Installed-Size: 598 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-sq-base Filename: pool/main/f/firefox/firefox-locale-sq_28.0+build2-0ubuntu2_amd64.deb Size: 344046 MD5sum: d33a51f459f4fdd35599cd590e038a2a SHA1: 556a759910233a1c912540f12ac4f54582d40e7f SHA256: d0f649f7097861c96130c9b833caf04e1394f6b822cf0ef8b96874abd582da2f Description: Albanian language pack for Firefox Description-md5: 6c9c10ead9f18734cd4a77e1c53deb4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-sr Priority: optional Section: web Installed-Size: 630 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-sr-base Filename: pool/main/f/firefox/firefox-locale-sr_28.0+build2-0ubuntu2_amd64.deb Size: 379442 MD5sum: 513e5f087ac59ca1fa24fcaa232bbad4 SHA1: c887bb1c1068508264e398a6061dd50a70fb3fcb SHA256: c937e24020659b933e4680009a368c0ae1ec57cce62739bfd85aa1a28160d059 Description: Serbian language pack for Firefox Description-md5: 8d2109908f20a4405f139a82593c158f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-sv Priority: optional Section: web Installed-Size: 588 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-sv-base Filename: pool/main/f/firefox/firefox-locale-sv_28.0+build2-0ubuntu2_amd64.deb Size: 332612 MD5sum: 31cd4d0aedfa9eb88684abc9994f74f4 SHA1: b6f6fde665652d7f12d1d2073191560d541c72e0 SHA256: 7082283c424768c60a475b17189d478be2e92eb227d2ef2624a50a9e5e34ae7f Description: Swedish language pack for Firefox Description-md5: 2ea193ea12432f41b53f83a470b59148 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-sw Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-sw_28.0+build2-0ubuntu2_amd64.deb Size: 10398 MD5sum: 65fe8c93a8903ab24b42cb206bbede26 SHA1: ad7acf7661fcac7b37cfe9de024eb5488bdcd7df SHA256: e3b8e1e0901d2e97a114389f156deedab762c02bb249e0594353cf863f464db9 Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ta Priority: optional Section: web Installed-Size: 630 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ta-base Filename: pool/main/f/firefox/firefox-locale-ta_28.0+build2-0ubuntu2_amd64.deb Size: 382468 MD5sum: c848d553bf276a9c14157b2ec99b50a5 SHA1: 1528fb0424d843b739afe0eb31515f5d1b3bccfd SHA256: b2618731cd4d816f11af4f89df0922f425367f50227a6e204e18f6256602b45e Description: Tamil language pack for Firefox Description-md5: 6ccedad7af96901a91334720c56bd490 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-te Priority: optional Section: web Installed-Size: 645 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-te-base Filename: pool/main/f/firefox/firefox-locale-te_28.0+build2-0ubuntu2_amd64.deb Size: 395950 MD5sum: c71eb3a37fcba24eb4e90e8597127963 SHA1: fc4a55e0cfd1ebb4bb120607e879a8d4a0878dd3 SHA256: f04a5320a17e2aac3c27655d3ad8d9639b402230176bf54359f4e8b7b34bd56b Description: Telugu language pack for Firefox Description-md5: d66752b03661f62d700263ab82e868e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-th Priority: optional Section: web Installed-Size: 640 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-th-base Filename: pool/main/f/firefox/firefox-locale-th_28.0+build2-0ubuntu2_amd64.deb Size: 384550 MD5sum: 026eb04dc67d000a4187baa899f4e507 SHA1: 03b35819206bb80fd3a1d0b6d1f41be9e3759cde SHA256: 404feae4c42860701c7d94322e6c166b4e118aef11e1aee046bc6fd85cf64a77 Description: Thai language pack for Firefox Description-md5: cc27bcd11daedf111f9aab87632f7263 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-tr Priority: optional Section: web Installed-Size: 585 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-tr-base Filename: pool/main/f/firefox/firefox-locale-tr_28.0+build2-0ubuntu2_amd64.deb Size: 334226 MD5sum: a47e9496e74b4e6c3fae9c61899b2ea6 SHA1: a5d34b5aae08edf80486593de8fc02ace47529fa SHA256: 596e0f79a17b2e0bc9f82d4f8ae18d3b8d92b7865eb20f5da5dd05c639a7ba36 Description: Turkish language pack for Firefox Description-md5: 3c205697910b54cdfc483ed64de82490 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-uk Priority: optional Section: web Installed-Size: 604 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-uk-base Filename: pool/main/f/firefox/firefox-locale-uk_28.0+build2-0ubuntu2_amd64.deb Size: 357836 MD5sum: 0d1a7405317ce7a6e2117cbef0db6a9d SHA1: b6ac51810f016faf65fa2b1b9687473559f30728 SHA256: 4638eab415b602a8214081fb0a9b0b204b64351df4d6c18f5cc937539590327e Description: Ukrainian language pack for Firefox Description-md5: ba467b5c78e88b367e14f3ac484d3816 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-vi Priority: optional Section: web Installed-Size: 606 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-vi-base Filename: pool/main/f/firefox/firefox-locale-vi_28.0+build2-0ubuntu2_amd64.deb Size: 352508 MD5sum: fe5e8a41581cc988e67510ec29eac61e SHA1: e41f9832052d00ad9ccd3ff52fa029132c4255ea SHA256: a57bf365e90b0fca447bb28863e14be1f813292fe7cc9ead23d369810a58112e Description: Vietnamese language pack for Firefox Description-md5: e187907de9840d733e0c8a14eafc65ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-xh Priority: optional Section: web Installed-Size: 576 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-xh-base Filename: pool/main/f/firefox/firefox-locale-xh_28.0+build2-0ubuntu2_amd64.deb Size: 328540 MD5sum: 27de1c554f417f196516020499536390 SHA1: abcaea713b5065c83d49a62744a3f1df198f0157 SHA256: f00af17457789b95b43764c863a3c450c1526adfac0c8bfc59e3abf05634279b Description: Xhosa language pack for Firefox Description-md5: e188707f31d9656051e8d08cd25f43fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: firefox-locale-zh-hans Priority: optional Section: web Installed-Size: 617 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-zh-hans-base Filename: pool/main/f/firefox/firefox-locale-zh-hans_28.0+build2-0ubuntu2_amd64.deb Size: 354708 MD5sum: f274385917f71f3009be0b581ddbd7c5 SHA1: 1b0cad86f07afd7b78e07e08b61f3f7504aaa61f SHA256: 3e83077ee000dc2dcafa3135e8565c2d3c2b7d89bd11cea4f3719e5332d2cd70 Description: Simplified Chinese language pack for Firefox Description-md5: 3e3ba5b1c9c87d325f38630cc1f5f593 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: firefox-locale-zh-hant Priority: optional Section: web Installed-Size: 599 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-zh-hant-base Filename: pool/main/f/firefox/firefox-locale-zh-hant_28.0+build2-0ubuntu2_amd64.deb Size: 346382 MD5sum: 14ee5ff646ffa1a5bdcde55098016ca6 SHA1: ca0bd14f0d785342bbf7887f1dedeb4337cad71e SHA256: a458eb0c1bdd5220e1ee730b67fa2fde872aea6f72806870770b18687a7ffcee Description: Traditional Chinese language pack for Firefox Description-md5: 344951ca63511f11ceb711b1ac9aa10f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-zu Priority: optional Section: web Installed-Size: 594 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-zu-base Filename: pool/main/f/firefox/firefox-locale-zu_28.0+build2-0ubuntu2_amd64.deb Size: 343314 MD5sum: f08953d29be4d282dc1b246bbc9bc77a SHA1: 7de05695ee3587635208304b3bcc57316dc08bc6 SHA256: 4a18b5967f95308d249f8c770ffd51532b14a99284277dc5a2d9c2952adcd521 Description: Zulu language pack for Firefox Description-md5: 17c6d848071fd7a4338f4653918fe50f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: flac Priority: optional Section: sound Installed-Size: 359 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Version: 1.3.0-2 Depends: libc6 (>= 2.14), libflac8 (>= 1.3.0) Filename: pool/main/f/flac/flac_1.3.0-2_amd64.deb Size: 147664 MD5sum: e9968a92fc8aa4b9b4b2641b0b4b75e7 SHA1: 34bdb37332a9376713c799593ab140ff672f8a5e SHA256: 959eac56a886043d020951cdb51637a1f3952b7de31b26b305772f8f97b4748d Description: Free Lossless Audio Codec - command line tools Homepage: http://xiph.org/flac/ Description-md5: f1560839832c89e0262853df6c9f7e62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: flex Priority: optional Section: devel Installed-Size: 492 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: amd64 Version: 2.5.35-10.1ubuntu2 Depends: libc6 (>= 2.14), m4, libfl-dev (= 2.5.35-10.1ubuntu2), dpkg (>= 1.15.4) | install-info Pre-Depends: debconf | debconf-2.0 Recommends: gcc | c-compiler Suggests: bison, build-essential Filename: pool/main/f/flex/flex_2.5.35-10.1ubuntu2_amd64.deb Size: 210796 MD5sum: 4ee0ff80df7a864f488302f81a5c30a2 SHA1: 3da13843f070e245d6d795b6e97d1d5605457a72 SHA256: f884056f0e4dd374793cb4df22367a4bb43969c6b8e5d12cb3f5ff87dd405d80 Description: A fast lexical analyzer generator. Multi-Arch: foreign Homepage: http://flex.sf.net/ Description-md5: 2e3fd254c37c87fd9abf35386a54cb30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: flex-doc Priority: optional Section: doc Installed-Size: 1561 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: all Source: flex Version: 2.5.35-10.1ubuntu2 Filename: pool/main/f/flex/flex-doc_2.5.35-10.1ubuntu2_all.deb Size: 142138 MD5sum: da09cb347fb1f693234ab18464fcc43a SHA1: 69a74a57b1f33c5d52e812fd9e1f402107faa2f6 SHA256: b665dfc12cf20244e659e4e1b8079413068a1405279f268239e6cee9c6733b48 Description: Documentation for flex (a fast lexical analyzer generator). Homepage: http://flex.sf.net/ Description-md5: c65756c236e334cd17819ad544508795 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: flite1-dev Priority: extra Section: devel Installed-Size: 28474 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: flite Version: 1.4-release-8 Provides: flite-dev Depends: libflite1 (= 1.4-release-8), libc6-dev Conflicts: flite-dev Filename: pool/main/f/flite/flite1-dev_1.4-release-8_amd64.deb Size: 12960276 MD5sum: da5aaef8d3e3ed97f1c50186db56512f SHA1: c4ddc04556ad6cfb8acc05c98aa359cfcbafeec8 SHA256: e934a216ed537cb90c711d44217bdda6146af9a2f19eb3bf2f7c25c274459d5e Description: Small run-time speech synthesis engine - development files Multi-Arch: same Homepage: http://www.speech.cs.cmu.edu/flite Description-md5: ae41b46b7487cddc69b0014a01855297 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fltk1.1-doc Priority: optional Section: doc Installed-Size: 2969 Maintainer: Ubuntu Developers Original-Maintainer: Aaron M. Ucko Architecture: all Source: fltk1.1 Version: 1.1.10-17 Filename: pool/main/f/fltk1.1/fltk1.1-doc_1.1.10-17_all.deb Size: 2130754 MD5sum: b3f474f59da57c65a0404ff0abeaf87f SHA1: 1fc5751b9c17b9bca8b134f18d7a4e344dfe1fde SHA256: 503b097f459c5c1af96b548020994aac5cbab442bd510fe9427c560faf4e855f Description: Fast Light Toolkit - documentation Homepage: http://www.fltk.org/ Description-md5: cb89fb265884e1336ad2c05695a67c80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: folks-common Priority: optional Section: libs Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: folks Version: 0.9.5-1ubuntu5 Depends: dconf-gsettings-backend | gsettings-backend Filename: pool/main/f/folks/folks-common_0.9.5-1ubuntu5_all.deb Size: 3996 MD5sum: 6131a321efc7494f9028a257dcaceb1e SHA1: 06e23c03d45c3e47828c1007493c041cc3f09d0d SHA256: a00fb35a843e4b1cc6dc4be775c196510d0e38a75bcac04ad90e363c6b9fbc19 Description: library to aggregates people into metacontacts (common files) Multi-Arch: foreign Homepage: https://live.gnome.org/Folks/ Description-md5: 51f0e7fa459256b7f6d53ea160bcc369 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: fontconfig Priority: optional Section: utils Installed-Size: 552 Maintainer: Ubuntu Developers Original-Maintainer: Keith Packard Architecture: amd64 Version: 2.11.0-0ubuntu4 Replaces: fontconfig-config (<< 2.5.93-1) Depends: fontconfig-config, libc6 (>= 2.3.4), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1) Filename: pool/main/f/fontconfig/fontconfig_2.11.0-0ubuntu4_amd64.deb Size: 175560 MD5sum: 2e23a78e5ceedd621dda0be586c8bdac SHA1: d2b0c27abd46e95631494df42c93d9082323dbcb SHA256: ab49ad4b0cbcd95ff97a0dec64d6fcd84479d72d08dc4a7874c06a950f66cd7f Description: generic font configuration library - support binaries Multi-Arch: foreign Description-md5: 4c47f79299a983151349c73c189cb29a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: fontconfig-config Priority: optional Section: libs Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Keith Packard Architecture: all Source: fontconfig Version: 2.11.0-0ubuntu4 Replaces: fontconfig (<< 2.3.2-2) Depends: fonts-dejavu-core | ttf-bitstream-vera | fonts-freefont-ttf | gsfonts-x11, ucf (>= 0.29) Conflicts: fontconfig (<< 2.3.2-2) Filename: pool/main/f/fontconfig/fontconfig-config_2.11.0-0ubuntu4_all.deb Size: 47348 MD5sum: ebbca95a18feb28a750339dc9c2d1285 SHA1: 8fa9c09f764133fa67b29c1d78d3f5f4922b5859 SHA256: 326f76effdf455ce0f36552f5108b866b71674ffb30a914ac60d28c1611e4b89 Description: generic font configuration library - configuration Multi-Arch: foreign Description-md5: 2e2f2fdd3e4ff822be010c67693043db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fontforge Priority: optional Section: x11 Installed-Size: 2543 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: amd64 Version: 20120731.b-5 Depends: fontforge-common (= 20120731.b-5), libfontforge1 (= 20120731.b-5), libgdraw4 (= 20120731.b-5), libc6 (>= 2.14), libpython2.7 (>= 2.7) Suggests: fontforge-doc, potrace, autotrace, python-fontforge, fontforge-extras Conflicts: defoma, fontforge-nox Filename: pool/main/f/fontforge/fontforge_20120731.b-5_amd64.deb Size: 899804 MD5sum: e4dd9c77805b7b1c9012270cd7d749d6 SHA1: 59ab853bb7f98c7fb93906f537b6f035075de80f SHA256: fdd6311c6a9e930452b2e13a57577ed7eba292ad236bb856c4ffbf2d341d5f4c Description: font editor Multi-Arch: foreign Homepage: http://fontforge.sourceforge.net/ Description-md5: 250c7e0cdfdcb9f2cd8e0a7d2de3d4b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: fontforge-common Priority: optional Section: fonts Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fontforge Version: 20120731.b-5 Breaks: fontforge (<< 0.0.20120101+git-3), fontforge-nox (<< 0.0.20120101+git-3) Filename: pool/main/f/fontforge/fontforge-common_20120731.b-5_all.deb Size: 25800 MD5sum: fc62a7dc29dd7eb8bf474f2fa76611e4 SHA1: 6dde4515b170d660d021ba9701116ac85f20edc2 SHA256: 722c5853a8ed2067864988fc3f6945b3536cc7e7cc58dc32e8118505115d1a2b Description: font editor (common files) Homepage: http://fontforge.sourceforge.net/ Description-md5: c406d1ea7efca96ecb4fe4e2386f60da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: fontforge-dbg Priority: extra Section: debug Installed-Size: 7758 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: amd64 Source: fontforge Version: 20120731.b-5 Depends: fontforge (= 20120731.b-5) Filename: pool/main/f/fontforge/fontforge-dbg_20120731.b-5_amd64.deb Size: 7146262 MD5sum: e1acda422f99e5f4b46647bd4b9c5e62 SHA1: 02e92781431ef3acac004cef0c507b5697f7b928 SHA256: e8aedd413d2469e9a5a63c888b573b0816acc5b58581910abfb65165a9a6f199 Description: debugging symbols for fontforge Homepage: http://fontforge.sourceforge.net/ Description-md5: 994a4bc983b816b0ec7b6998b7b18a0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fontforge-nox Priority: optional Section: graphics Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: amd64 Source: fontforge Version: 20120731.b-5 Depends: fontforge-common (= 20120731.b-5), libfontforge1 (= 20120731.b-5), libc6 (>= 2.4) Conflicts: defoma, fontforge Filename: pool/main/f/fontforge/fontforge-nox_20120731.b-5_amd64.deb Size: 8830 MD5sum: c0846303d60f80315e397adfd1efff6d SHA1: 4ec4d5024bd0f9e121de3de0cd57ec2045b9131e SHA256: 30d68aaeac03e49bd3b8eb522f83c3247b30c182b07816b897c79f25d6d0185a Description: font editor - non-X version Multi-Arch: foreign Homepage: http://fontforge.sourceforge.net/ Description-md5: 219220aaf625312684b5384c36e55f9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-arabeyes Priority: optional Section: fonts Installed-Size: 5564 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.1-3 Replaces: ttf-arabeyes (<< 2.1-3) Provides: ttf-arabeyes Conflicts: ttf-arabeyes (<< 2.1-3) Filename: pool/main/f/fonts-arabeyes/fonts-arabeyes_2.1-3_all.deb Size: 2306886 MD5sum: c858e4f5cee3c44a4691f141fafa25a7 SHA1: 5e562c6fd594e3027ef587fca1297dfd2c261cef SHA256: 9f90937ec79ff1e2f38ef9665ee23000b5c58121e7fa93b073cd226a2497d1de Description: Arabeyes GPL TrueType Arabic fonts Homepage: http://www.arabeyes.org/project.php?proj=Khotot Description-md5: 74f761affb4f770742400c9d8a19bc5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-arphic-bkai00mp Priority: optional Section: fonts Installed-Size: 10260 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.10-12 Replaces: ttf-arphic-bkai00mp (<< 2.10-9) Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-arphic-bkai00mp (<< 2.10-9) Filename: pool/main/f/fonts-arphic-bkai00mp/fonts-arphic-bkai00mp_2.10-12_all.deb Size: 4912630 MD5sum: 4f4a91a4bfd8feb1a3288fa798278dbf SHA1: 99659a9e9f058a44b7d966805aff0cbcdcfeb749 SHA256: a690e644898fbd2a04f1d8b42e7e89e600a8e692423181e87e24fb0486235d17 Description: "AR PL KaitiM Big5" Chinese TrueType font by Arphic Technology Multi-Arch: foreign Homepage: http://www.arphic.com.tw/ Description-md5: 2ec9ffa2923089a58a166fef4027defd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-arphic-bsmi00lp Priority: optional Section: fonts Installed-Size: 12434 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.10-13 Replaces: ttf-arphic-bsmi00lp (<< 2.10-10) Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-arphic-bsmi00lp (<< 2.10-10) Filename: pool/main/f/fonts-arphic-bsmi00lp/fonts-arphic-bsmi00lp_2.10-13_all.deb Size: 3765108 MD5sum: 2cea7c4d321b3e60e791ab72ed774994 SHA1: 6166baaf915ccf4b7c6a69b20a4a593920b844fb SHA256: 1fa359f05654ed2277c5bf8397f809c7ede8b1192c5caaf2545fc18f7ce4c228 Description: "AR PL Mingti2L Big5" Chinese TrueType font by Arphic Technology Multi-Arch: foreign Homepage: http://www.arphic.com.tw/ Description-md5: 1d9211b69ba018715b788a41accc598d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-arphic-gbsn00lp Priority: optional Section: fonts Installed-Size: 5158 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.11-13 Replaces: ttf-arphic-gbsn00lp (<< 2.11-10) Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-arphic-gbsn00lp (<< 2.11-10) Filename: pool/main/f/fonts-arphic-gbsn00lp/fonts-arphic-gbsn00lp_2.11-13_all.deb Size: 1721556 MD5sum: 117aa72a3c913ef70e0c8cc568a43a57 SHA1: 76c62a70f4fe0a0c72ef0196b2114f24e2fefbc3 SHA256: 7e896083aeee87cb57cc1db6a05b1d44d6485c0c280e5352a3693f22fb62eacf Description: "AR PL SungtiL GB" Chinese TrueType font by Arphic Technology Multi-Arch: foreign Homepage: http://www.arphic.com.tw/ Description-md5: 7e893935877172b3d8425067b18b266a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-arphic-gkai00mp Priority: optional Section: fonts Installed-Size: 4612 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.11-13 Replaces: ttf-arphic-gkai00mp (<< 2.11-10) Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-arphic-gkai00mp (<< 2.11-10) Filename: pool/main/f/fonts-arphic-gkai00mp/fonts-arphic-gkai00mp_2.11-13_all.deb Size: 2292364 MD5sum: 3622f59353e97914855409d681bb7e2e SHA1: 121ef4064a3ba5f6e5feb2dd66b9501a3e3b8b65 SHA256: 57193a58706b9daa822b99e50c203d22aefb9b59ecc38d306000ba38161d0f69 Description: "AR PL KaitiM GB" Chinese TrueType font by Arphic Technology Multi-Arch: foreign Homepage: http://www.arphic.com.tw/ Description-md5: 26e94e58214bc8d1a4374dbce196cdd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-arphic-ukai Priority: optional Section: fonts Installed-Size: 17282 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.2.20080216.2-4ubuntu2 Replaces: ttf-arphic-ukai (<< 0.2.20080216.1-2), ttf-arphic-ukai-mbe (<< 0.2.20080216.1-2) Breaks: ttf-arphic-ukai (<< 0.2.20080216.1-2), ttf-arphic-ukai-mbe (<< 0.2.20080216.1-2) Filename: pool/main/f/fonts-arphic-ukai/fonts-arphic-ukai_0.2.20080216.2-4ubuntu2_all.deb Size: 8287866 MD5sum: f59640583ddaf273aff6b00b4e0752f5 SHA1: 2ab266d1a25f411b33006c2a915f0e2bf9eea3cd SHA256: c96c1974d0a3e508767a2a3bfb7834d085752d5081bccb521ebb9507c076e4dd Description: "AR PL UKai" Chinese Unicode TrueType font collection Kaiti style Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/CJKUnifonts Description-md5: 9ee77285c529022b183ae872b6c54f2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-arphic-uming Priority: optional Section: fonts Installed-Size: 21049 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.2.20080216.2-7ubuntu2 Depends: debconf | debconf-2.0 Pre-Depends: dpkg (>= 1.15.6~) Conflicts: fonts-arphic-uming-mbe Breaks: ttf-arphic-uming (<< 0.2.20080216.2-1), ttf-arphic-uming-mbe (<< 0.2.20080216.2-1) Filename: pool/main/f/fonts-arphic-uming/fonts-arphic-uming_0.2.20080216.2-7ubuntu2_all.deb Size: 7815932 MD5sum: e65bfed903286eb54df91ef6dd6ce25b SHA1: ef7cfd16a7bcdb491cddbf9f2e0d9f225e513a25 SHA256: b7c92b6152f5545313fbcfb7ec8fa58b1ff731a7638363db0cf5fdfbf99585e0 Description: "AR PL UMing" Chinese Unicode TrueType font collection Mingti style Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/CJKUnifonts Description-md5: 89ebf2540943e6e6d5fb35dfcf8b85b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-dejavu Priority: optional Section: fonts Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.34-1ubuntu1 Replaces: ttf-dejavu (<< 2.33+svn2514-2~) Depends: fonts-dejavu-core, fonts-dejavu-extra Breaks: ttf-dejavu (<< 2.33+svn2514-2~) Filename: pool/main/f/fonts-dejavu/fonts-dejavu_2.34-1ubuntu1_all.deb Size: 3114 MD5sum: c1840421ddd674cd539dc3e20e3c8a31 SHA1: 40b37ca8a980e95fa9b14dc4b8eedbab8fd13289 SHA256: 882df93da0ba0dc966141e9517fb15d5adedd0d08bf958d23361a01f8648cf3d Description: metapackage to pull in fonts-dejavu-core and fonts-dejavu-extra Multi-Arch: foreign Homepage: http://dejavu-fonts.org/ Description-md5: 168fb05000ceed15f5c61146d1002737 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: fonts-dejavu-core Priority: optional Section: fonts Installed-Size: 2898 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-dejavu Version: 2.34-1ubuntu1 Replaces: ttf-dejavu (<< 2.20-1), ttf-dejavu-core (<< 2.33+svn2514-2~) Breaks: ttf-dejavu (<< 2.20-1), ttf-dejavu-core (<< 2.33+svn2514-2~) Filename: pool/main/f/fonts-dejavu/fonts-dejavu-core_2.34-1ubuntu1_all.deb Size: 1024460 MD5sum: 7167c133d8ec713c90fc64faab927994 SHA1: bd0e14ee289531295a3780659638cfda2db79c53 SHA256: d7eb9a90ecf62b85dcf2f3bb84a0d66e41fef81141240c73e5cab3351553dc03 Description: Vera font family derivate with additional characters Multi-Arch: foreign Homepage: http://dejavu-fonts.org/ Description-md5: e9860eb046746c77c9d46f69839006b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-dejavu-extra Priority: optional Section: fonts Installed-Size: 6544 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-dejavu Version: 2.34-1ubuntu1 Replaces: ttf-dejavu (<< 2.20-1), ttf-dejavu-extra (<< 2.33+svn2514-2~) Depends: fonts-dejavu-core Breaks: ttf-dejavu (<< 2.20-1), ttf-dejavu-extra (<< 2.33+svn2514-2~) Filename: pool/main/f/fonts-dejavu/fonts-dejavu-extra_2.34-1ubuntu1_all.deb Size: 1736420 MD5sum: 6ff5bf572089a3f2eb8d1c6e466c7851 SHA1: 7293cf1c769a85785d1b3f5295f8960b87daf75b SHA256: a204133c4cc9713439de0bc320490c97229a59b3f990499b45317dd1b988ba9a Description: Vera font family derivate with additional characters (extra variants) Multi-Arch: foreign Homepage: http://dejavu-fonts.org/ Description-md5: 9f9e099bb6723f306b78a94a60945eb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-font-meta Package: fonts-droid Priority: optional Section: fonts Installed-Size: 7591 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-android Version: 1:4.3-3ubuntu1 Replaces: ttf-droid (<< 1:4.2~r1-1~) Pre-Depends: dpkg (>= 1.15.7.2) Breaks: ttf-droid (<< 1:4.2~r1-1~) Filename: pool/main/f/fonts-android/fonts-droid_4.3-3ubuntu1_all.deb Size: 3040640 MD5sum: b661b4d9ff9f973d1214094cbc3e5299 SHA1: 417be07d5e1c76db8f213cf7d5656f78ab404fea SHA256: c6abc779f9a844fff8de7e4250b3c5df3d7b784df288288c78fb8c9d5922e070 Description: handheld device font with extensive style and language support Multi-Arch: foreign Homepage: https://android.googlesource.com/platform/frameworks/base/ Description-md5: 0844ca9145078c0fbfe116eafd82f0a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: fonts-farsiweb Priority: optional Section: fonts Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.4.dfsg-12 Replaces: ttf-farsiweb (<< 0.4.dfsg-10) Breaks: ttf-farsiweb (<< 0.4.dfsg-10) Filename: pool/main/f/fonts-farsiweb/fonts-farsiweb_0.4.dfsg-12_all.deb Size: 110950 MD5sum: b84e7771753afb2ca6a9d4a6ceb2a43a SHA1: f4dc619a3394fd1926bdd6439d02cae5ef418d01 SHA256: 306bdba0e3e99781d4e5b72ff29df9424b2e6b8a712d1fc081056829e70e417c Description: free TrueType fonts for Persian language Multi-Arch: foreign Description-md5: 3b31dc6c673688fa0360708e2cb68b3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-freefont-ttf Priority: optional Section: fonts Installed-Size: 10613 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-freefont Version: 20120503-4 Replaces: ttf-freefont (<< 20120503-1) Provides: ttf-freefont Breaks: ttf-freefont (<< 20120503-1) Filename: pool/main/f/fonts-freefont/fonts-freefont-ttf_20120503-4_all.deb Size: 4140296 MD5sum: 6badd2b9f94417d1a8fb4c0682829787 SHA1: b4ac1db35d40cd412674d3f2fac17af9df42030a SHA256: 993554c34ff6f24087ac2efa37631f7131f4ef3077495fd21dfb451981ba7904 Description: Freefont Serif, Sans and Mono Truetype fonts Multi-Arch: foreign Homepage: http://savannah.gnu.org/projects/freefont/ Description-md5: bcd17b715258e4f7c257d125d8ee8d2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-gubbi Priority: optional Section: fonts Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 1.3-3 Filename: pool/main/f/fonts-gubbi/fonts-gubbi_1.3-3_all.deb Size: 59376 MD5sum: 78a75f0d02b65e817c3edca8e625156b SHA1: 2c1dbe0f95a13dd2c3ff39d6eced02c177d6e49b SHA256: 869a4f1a6015ad6a4cc2b51ea49f3391c3c5059b4ad9e5a4bf7cd4e0ea951370 Description: Gubbi free font for Kannada script Multi-Arch: foreign Homepage: https://github.com/aravindavk/Gubbi Description-md5: eb63446925bdcbfdaaf6debc955a1a5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-ipafont-gothic Priority: optional Section: fonts Installed-Size: 12275 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-ipafont Version: 00303-12ubuntu1 Replaces: otf-ipafont-gothic (<< 00303-1) Provides: fonts-japanese-gothic Pre-Depends: dpkg (>= 1.15.6~) Recommends: fonts-ipafont-mincho Breaks: otf-ipafont (<= 00301-4), otf-ipafont-gothic (<< 00303-1), ttf-ipafont (<= 00203-13) Filename: pool/main/f/fonts-ipafont/fonts-ipafont-gothic_00303-12ubuntu1_all.deb Size: 3518818 MD5sum: 2f5c6da9089c6670088274e972548892 SHA1: 0bf84c762560f7d4ade8f947ffd367ea8519b380 SHA256: 76f4503b0715060143d6a9ecde08c1570b619baacdd7952bea0f099fc9be4bc4 Description: Japanese OpenType font set, IPA Gothic font Multi-Arch: foreign Homepage: http://ossipedia.ipa.go.jp/ipafont/index.html Description-md5: db4305028cbd86b5c8eed9ef8fe87874 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-ipafont-mincho Priority: optional Section: fonts Installed-Size: 15811 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-ipafont Version: 00303-12ubuntu1 Replaces: otf-ipafont-mincho (<< 00303-1) Provides: fonts-japanese-mincho Pre-Depends: dpkg (>= 1.15.6~) Recommends: fonts-ipafont-gothic Breaks: otf-ipafont (<= 00301-4), otf-ipafont-mincho (<< 00303-1), ttf-ipafont (<= 00203-13) Filename: pool/main/f/fonts-ipafont/fonts-ipafont-mincho_00303-12ubuntu1_all.deb Size: 4726398 MD5sum: d534ef0fa8b1abc46684d0a4eab5bf9a SHA1: 298711e14997e05fd3e1489e325820bc72f4d7ff SHA256: 133d928e4aab0f5f6671296b43504b4fbf6bafa0a6e374ae256f08b8db04ef7d Description: Japanese OpenType font set, IPA Mincho font Multi-Arch: foreign Homepage: http://ossipedia.ipa.go.jp/ipafont/index.html Description-md5: 18ed86abaa822df064d1c7e256237048 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-kacst Priority: optional Section: fonts Installed-Size: 1009 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.01+mry-10 Replaces: ttf-kacst (<< 2.01+mry-2) Provides: ttf-kacst Pre-Depends: dpkg (>= 1.15.6~) Recommends: fonts-kacst-one Breaks: ttf-kacst (<< 2.01+mry-2) Filename: pool/main/f/fonts-kacst/fonts-kacst_2.01+mry-10_all.deb Size: 305452 MD5sum: 3e977cc1cdf72dfbe68a806943802961 SHA1: 14dfd6d876a94f9a83f77580bfcd66152a2228b3 SHA256: b61538af0ebeb52896fba17c7314a3e2e8f99186fe1307f0a0f8c78beba4041f Description: KACST free TrueType Arabic fonts Multi-Arch: foreign Homepage: http://www.kacst.edu.sa/en/ Description-md5: 9fffa0bcade63a18b2b500875b4d9364 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-kacst-one Priority: optional Section: fonts Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 5.0+svn11846-7 Replaces: ttf-kacst-one (<< 5.0-1) Pre-Depends: dpkg (>= 1.15.6~) Recommends: fonts-kacst Breaks: ttf-kacst (<< 2.01+mry), ttf-kacst-one (<< 5.0-1) Filename: pool/main/f/fonts-kacst-one/fonts-kacst-one_5.0+svn11846-7_all.deb Size: 46714 MD5sum: 4d34c38bd6136bcf2559fb7cfc4e32a5 SHA1: 68c25df99c5e75b3bc6950f69f292b9089aad720 SHA256: 697c393237952614705d59676443a1af416c981275afa2a1531108e79e22f9e8 Description: TrueType font designed for Arabic language Multi-Arch: foreign Homepage: http://projects.arabeyes.org Description-md5: a65185b91bc3d8f45a9c53093befe7c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-khmeros Priority: optional Section: fonts Installed-Size: 2050 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 5.0-7ubuntu1 Replaces: ttf-khmeros (<< 5.0-4) Depends: fonts-khmeros-core Breaks: ttf-khmeros (<< 5.0-4) Filename: pool/main/f/fonts-khmeros/fonts-khmeros_5.0-7ubuntu1_all.deb Size: 247000 MD5sum: c2e5d25dbf19e4a0d6d3e0ae9dfe2a42 SHA1: 891b2744e7a558507928e5fd5b51764d3f60a68e SHA256: 44acf1b80621c955712e1ae4a60714ebc28a32ea5a2a54dda807589cd3a5e70b Description: KhmerOS Unicode fonts for the Khmer language of Cambodia Multi-Arch: foreign Homepage: http://www.khmeros.info Description-md5: 8ac7322b9c773c29a7403212d0bf419b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-khmeros-core Priority: optional Section: fonts Installed-Size: 571 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-khmeros Version: 5.0-7ubuntu1 Replaces: fonts-khmeros (<< 5.0-5ubuntu1), ttf-khmeros (<< 5.0-4), ttf-khmeros-core (<< 5.0-5ubuntu1) Breaks: fonts-khmeros (<< 5.0-5ubuntu1), ttf-khmeros (<< 5.0-4), ttf-khmeros-core (<< 5.0-5ubuntu1) Filename: pool/main/f/fonts-khmeros/fonts-khmeros-core_5.0-7ubuntu1_all.deb Size: 91242 MD5sum: 3b8019df8de03ed0e31e1c77daf3f683 SHA1: 5c9020e688d31664d49771d70aefcdaaf7c884d2 SHA256: 1d4b78e739a71483673a947a109b530428eb1a780b69eabeaa0bc3a45afd6850 Description: KhmerOS Unicode fonts for the Khmer language of Cambodia Homepage: http://www.khmeros.info Description-md5: 7253bb5aac00bdc165c6fa4e0950cc75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-lao Priority: optional Section: fonts Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Christian Perrier Architecture: all Version: 0.0.20060226-9 Filename: pool/main/f/fonts-lao/fonts-lao_0.0.20060226-9_all.deb Size: 49054 MD5sum: 39e912d6e23ac14fd3e3080bfa84a2d4 SHA1: 030df6094ac4b1356f528d50f446a0f1c333fd29 SHA256: 3417039c90b698b151b04ef645172ec7d8e38bfe985c16ddeff3d9b1e19ad99b Description: TrueType font for Lao language Multi-Arch: foreign Description-md5: eb63a168aea0b273845436a0088de3a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-liberation Priority: optional Section: fonts Installed-Size: 2119 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.07.3-3 Replaces: ttf-liberation (<< 1.07.0-2) Breaks: ttf-liberation (<< 1.07.0-2) Filename: pool/main/f/fonts-liberation/fonts-liberation_1.07.3-3_all.deb Size: 1320134 MD5sum: e49c41cbaaeae1a956f18a0f4efb5324 SHA1: 129ffa50eebc541bf6ab662110da022cd9337584 SHA256: 05d54a84c77c5df24342e058ca37fff5e70fda720ac6abff6ca8be5a233820c2 Description: Fonts with the same metrics as Times, Arial and Courier Multi-Arch: foreign Homepage: https://fedorahosted.org/liberation-fonts/ Description-md5: 9f375e761d413f36fd2c7df206c8836d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: fonts-lklug-sinhala Priority: optional Section: fonts Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.6-3 Replaces: sinhala-font-lklug, ttf-sinhala-lklug (<< 0.5.4-1) Breaks: sinhala-font-lklug, ttf-sinhala-lklug (<< 0.5.4-1) Filename: pool/main/f/fonts-lklug-sinhala/fonts-lklug-sinhala_0.6-3_all.deb Size: 73996 MD5sum: 9be067d551b98c494866ac800c9533f4 SHA1: 6e044a89234dcf1abd83c35ec565534974c5e768 SHA256: 147117ed2926459f2acd2c27586b7051dc399a01c7891b6eea4c5ff0e9ed3b21 Description: Unicode Sinhala font by Lanka Linux User Group Multi-Arch: foreign Homepage: http://www.lug.lk/fonts/lklug Description-md5: 8e3f8979a19f99371f1d76271ddfc4e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-lmodern Priority: optional Section: fonts Installed-Size: 10747 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Source: lmodern Version: 2.004.4-3 Replaces: lmodern (<= 2.004.2-1) Depends: dpkg (>= 1.14.18), tex-common (>= 4) Breaks: lmodern (<= 2.004.2-1) Filename: pool/main/l/lmodern/fonts-lmodern_2.004.4-3_all.deb Size: 6379826 MD5sum: 6149f0574451e118fd39b094d5bb6363 SHA1: f32686cc9d06fabd40ea3676f17360d95aff6463 SHA256: 0d89373efcca779fa026d8b9acccf4021616be2088a76f31ae0deaea796d3459 Description: OpenType fonts based on Computer Modern Homepage: http://www.gust.org.pl/projects/e-foundry/latin-modern/ Description-md5: 80d0553dfb3c18bdf3f44ed9358e1ac9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: fonts-manchufont Priority: optional Section: fonts Installed-Size: 1457 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.007.svn0068-4 Replaces: ttf-manchufont (<< 2.007.svn0068-2) Breaks: ttf-manchufont (<< 2.007.svn0068-2) Filename: pool/main/f/fonts-manchufont/fonts-manchufont_2.007.svn0068-4_all.deb Size: 1136726 MD5sum: a622f2d6a3f0805645c2115b4623a12d SHA1: 868194e3df25c4dee9c80ecab64e1c98deb1eb4e SHA256: 4ad30dc7859ad8bc1153e14d4dca8b5262c7d70d95584e3dd15129b2b658706a Description: Smart OpenType font for Manchu script Multi-Arch: foreign Homepage: http://sourceforge.net/projects/manchufont/ Description-md5: 43422cd839d1ea2881b54d015a36b75d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: fonts-mgopen Priority: optional Section: fonts Installed-Size: 1913 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.1-9 Replaces: ttf-mgopen (<< 1.1-6) Breaks: ttf-mgopen (<< 1.1-6) Filename: pool/main/f/fonts-mgopen/fonts-mgopen_1.1-9_all.deb Size: 566820 MD5sum: 8f041f018d7c8d5a42f94e2c9a825768 SHA1: b71544dbb3cac78586c9efb00545e8dadaef3924 SHA256: 6057bd06faba7c69b8d76a6677539184eb5a318786d341eb869e3d469d4b9b73 Description: Magenta MgOpen TrueType fonts Multi-Arch: foreign Homepage: http://www.magenta.gr/ Description-md5: 779afa88314e6ab13d708b63a8b6c1c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: fonts-nafees Priority: optional Section: fonts Installed-Size: 713 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.2-5ubuntu1 Replaces: ttf-nafees (<< 1.2-4) Breaks: ttf-nafees (<< 1.2-4) Filename: pool/main/f/fonts-nafees/fonts-nafees_1.2-5ubuntu1_all.deb Size: 224632 MD5sum: 54d7da0e96ae8d1c76008efb024aa0fa SHA1: ae17e2a4d8fb628d5fd179ca82278c73e98dcc15 SHA256: 9ac4007059a3b54beb5474a16ca3fe6bc7b046cbcd0048e949ea85ebd5129112 Description: nafees free OpenType Urdu fonts Multi-Arch: foreign Description-md5: 05cf2021a3860fb91760fffee74b5f04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-nanum Priority: optional Section: fonts Installed-Size: 25141 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 20131007-1 Replaces: ttf-nanum (<< 3.010-2) Pre-Depends: dpkg (>= 1.15.7.2) Breaks: ttf-nanum (<< 3.010-2) Filename: pool/main/f/fonts-nanum/fonts-nanum_20131007-1_all.deb Size: 8709238 MD5sum: 5706cd1325058aac7e5d346c990589d7 SHA1: a90f80db050db938bfef8b0489787dbb74495a69 SHA256: 32c2577507ad0b306b3e652925c4596061dca45fe8baf585540a5671ab347d73 Description: Nanum Korean fonts Multi-Arch: foreign Homepage: http://hangeul.naver.com/nanum.nhn Description-md5: 093af57339d69dba4ec6008634e86163 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: fonts-nanum-coding Priority: optional Section: fonts Installed-Size: 4515 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.0-6 Replaces: ttf-nanum-coding (<< 2.0-2) Breaks: ttf-nanum-coding (<< 2.0-2) Filename: pool/main/f/fonts-nanum-coding/fonts-nanum-coding_2.0-6_all.deb Size: 1424134 MD5sum: 3b5c8d7fbc2096fa1fc3fc8dc922d1fc SHA1: b8f299a502abeafbdf1db13402c4ecbbf16c8ea0 SHA256: 2fce8f3c66c2c6c26d7deda4aa37a8bcbe65e4f00160fa79e84247d4fdf916c1 Description: Nanum Coding fixed width Korean TrueType font Multi-Arch: foreign Homepage: http://dev.naver.com/projects/nanumfonts Description-md5: 2cf421beb958f4701e23667402158bc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-usb Package: fonts-nanum-extra Priority: optional Section: fonts Installed-Size: 17381 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-nanum Version: 20131007-1 Replaces: fonts-nanum-gothic-light (<< 1.000-4), ttf-nanum (<< 3.010-1), ttf-nanum-extra (<< 3.010-2) Pre-Depends: dpkg (>= 1.15.7.2) Breaks: fonts-nanum-gothic-light (<< 1.000-4), ttf-nanum (<< 3.010-1), ttf-nanum-extra (<< 3.010-2) Filename: pool/main/f/fonts-nanum/fonts-nanum-extra_20131007-1_all.deb Size: 4917268 MD5sum: f51216244a87cbe21cfe7f06885d1c4f SHA1: ac2f009f42076234c2bc4f8ebbcf0ea13b53ecc0 SHA256: ed1d9f0d785213f436a59831970f30040f6e06ee1f37a32e3a3494983311cd40 Description: Additional Nanum Korean fonts Multi-Arch: foreign Homepage: http://hangeul.naver.com/nanum.nhn Description-md5: e3201ae8a558f6181de55ff1d414f501 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-usb Package: fonts-navilu Priority: optional Section: fonts Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 1.2-2 Filename: pool/main/f/fonts-navilu/fonts-navilu_1.2-2_all.deb Size: 75302 MD5sum: a23e6846f128ea11c84ab2cd8173391b SHA1: c9cf35e80bba17e577927a39f66f952ec79097a1 SHA256: 56c9dd3c105fc4a2d514bc31a1d7928946c99cd543d423ee408a2929446304fd Description: Handwriting font for Kannada Multi-Arch: foreign Homepage: https://github.com/aravindavk/Navilu Description-md5: b6933f3ff2a68558c782f0ac51ab3bec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-opensymbol Priority: optional Section: fonts Installed-Size: 367 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice (1:4.2.3~rc3-0ubuntu2) Version: 2:102.6+LibO4.2.3~rc3-0ubuntu2 Replaces: ttf-opensymbol Provides: ttf-opensymbol Recommends: fontconfig Filename: pool/main/libr/libreoffice/fonts-opensymbol_102.6+LibO4.2.3~rc3-0ubuntu2_all.deb Size: 111118 MD5sum: 0e648664f2e41eee13cfae2369745f9c SHA1: 6cc40b25b4469b69706932aaeada8055c254998f SHA256: 8cbe2e86f7de67dada80894515daf6eac5b45663e3f7b8f94cf3b341d0a2312b Description: OpenSymbol TrueType font Homepage: http://www.libreoffice.org Description-md5: c976ef54f80faf44d726a46723d3fbd0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: fonts-pagul Priority: extra Section: fonts Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 1.0-7 Filename: pool/main/f/fonts-pagul/fonts-pagul_1.0-7_all.deb Size: 75348 MD5sum: 4cbc0a9919b6004d6418c13755d7d5c2 SHA1: 1dc178e90cd3ec5027deabd0e85e81f41dd6a194 SHA256: 7f2bfbd12fc957031883ffa72ff791d5f375868c7524baa12fc69b6aa1f0ce56 Description: Free TrueType font for the Sourashtra language Multi-Arch: foreign Homepage: https://sourceforge.net/projects/pagul/ Description-md5: e962bdab2a1e550cdc3d8630cbea149e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-sil-abyssinica Priority: optional Section: fonts Installed-Size: 1091 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.200-6 Replaces: ttf-sil-abyssinica (<< 1.200-1) Pre-Depends: dpkg (>= 1.15.6~) Suggests: fontconfig, libgraphite3, pango-graphite Breaks: ttf-sil-abyssinica (<< 1.200-1) Filename: pool/main/f/fonts-sil-abyssinica/fonts-sil-abyssinica_1.200-6_all.deb Size: 667084 MD5sum: 4517ec9e1083c6bbde9f554c3b9b41d7 SHA1: 44087bd4005cce20461738ce0b5cb63e5740a76f SHA256: 3d16474dce2321de0463094e20d2bf4e26917f1a985ed5d88de8f43aca884dc0 Description: smart Unicode font for Ethiopian and Erythrean scripts (Amharic et al.) Multi-Arch: foreign Homepage: http://scripts.sil.org/AbyssinicaSIL Description-md5: 8fccebec6e37d1916d24db0127e8c0c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-sil-ezra Priority: optional Section: fonts Installed-Size: 428 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.51-8 Replaces: ttf-sil-ezra (<< 2.51-7) Breaks: ttf-sil-ezra (<< 2.51-7) Filename: pool/main/f/fonts-sil-ezra/fonts-sil-ezra_2.51-8_all.deb Size: 130774 MD5sum: eff43fbc9b495df2692d1ac8d939f5c9 SHA1: bb9b1637cd13e620be33943afd3cb444b4474252 SHA256: 20dbd8b2daa96f786bbf3275ebf6344b65b41e3ae5c2beb9ea35968b65c222dc Description: smart Unicode font for Hebrew Multi-Arch: foreign Homepage: http://scripts.sil.org/EzraSIL_Home Description-md5: b4bbac17fa39d3a395628ade21910dcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-sil-nuosusil Priority: optional Section: fonts Installed-Size: 569 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.1.1-7 Replaces: fonts-sil-yi (<< 2.1.1-1), ttf-sil-nuosusil (<< 2.1.1-7) Provides: fonts-sil-yi, ttf-sil-nuosusil Conflicts: fonts-sil-yi (<< 2.1.1-1), ttf-sil-nuosusil (<< 2.1.1-7) Filename: pool/main/f/fonts-sil-nuosusil/fonts-sil-nuosusil_2.1.1-7_all.deb Size: 252530 MD5sum: b742b8a4b2a9e629ac58cedade55773d SHA1: 6fb0f531ad30632ce6495feb46f32e353182527d SHA256: 8f53dd2b0fb1499d0979f0d8377775e04a502d481e2d841fe96cb6063aba9609 Description: Unicode font for Yi (a script used in southwestern China) Homepage: http://scripts.sil.org/SILYi_Home Description-md5: d6ea72c7c14321fad5939a643e9354f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-sil-padauk Priority: optional Section: fonts Installed-Size: 1857 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.80-2 Replaces: ttf-sil-padauk (<< 2.61-4) Suggests: libgraphite2-3 Breaks: ttf-sil-padauk (<< 2.61-4) Filename: pool/main/f/fonts-sil-padauk/fonts-sil-padauk_2.80-2_all.deb Size: 269822 MD5sum: fe2ae01126639228fadd00352c455175 SHA1: 5e4557a90adcc9022f54d67e01ebff3a4b415e6b SHA256: b6e13fd43fc5f7d84f36d443f85a3e491519f8127ea329b1be916c7c57eaeb06 Description: smart Unicode font for languages in Myanmar Multi-Arch: foreign Homepage: http://scripts.sil.org/Padauk Description-md5: c3b7f670979534e77fce0a08284c2584 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-sil-scheherazade Priority: optional Section: fonts Installed-Size: 322 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.001-8 Replaces: ttf-sil-scheherazade (<< 1.001-7) Provides: ttf-sil-scheherazade Conflicts: ttf-sil-scheherazade (<< 1.001-7) Filename: pool/main/f/fonts-sil-scheherazade/fonts-sil-scheherazade_1.001-8_all.deb Size: 134570 MD5sum: 80dee349ebac308dd8f0a8c56679af2c SHA1: 55b20ae67681c6d934b99985ddd9f9341dde42cb SHA256: da8332e758cb2a10773b410ec4f65350606c6b64253b17d307282a291aa7642c Description: smart Unicode font for Arabic Homepage: http://scripts.sil.org/ArabicFonts Description-md5: 6a8207d145d1833524ba78bcd9eb3c1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-takao-gothic Priority: optional Section: fonts Installed-Size: 12046 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-takao Version: 003.02.01-9ubuntu2 Replaces: ttf-takao-gothic (<< 003.02.01-5) Provides: fonts-japanese-gothic Depends: fonts-takao-pgothic Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-takao-gothic (<< 003.02.01-5) Filename: pool/main/f/fonts-takao/fonts-takao-gothic_003.02.01-9ubuntu2_all.deb Size: 4809962 MD5sum: b242b7646c234253b63aad57d9ed9d21 SHA1: 6654e81e58c6a92052f58d429462495c6a36e945 SHA256: 9c734f309777b4175399d894a3b3e6b3f273ba439edea62b72dbcc7ebcd93427 Description: Japanese TrueType font set, Takao Gothic Fonts Multi-Arch: foreign Homepage: https://launchpad.net/takao-fonts Description-md5: 2feb186733f4ca332a716712c2b94e84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-takao-mincho Priority: optional Section: fonts Installed-Size: 23411 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-takao Version: 003.02.01-9ubuntu2 Replaces: ttf-takao-mincho (<< 003.02.01-5) Provides: fonts-japanese-mincho Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-takao-mincho (<< 003.02.01-5) Filename: pool/main/f/fonts-takao/fonts-takao-mincho_003.02.01-9ubuntu2_all.deb Size: 6342530 MD5sum: c72d91496b0ecc3e63071427d1c32af0 SHA1: 27890dfc31fd3f442f56f05df3f5d41b1ad6d2da SHA256: 76510584acbffec8c4c1482f14a8c54cbc036b420def042ab0321c086bde93b7 Description: Japanese TrueType font set, Takao Mincho Fonts Multi-Arch: foreign Homepage: https://launchpad.net/takao-fonts Description-md5: 4e7ce63e6bb9ed84b172c26835def9b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-takao-pgothic Priority: optional Section: fonts Installed-Size: 6170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-takao Version: 003.02.01-9ubuntu2 Replaces: fonts-takao-gothic (<< 003.02.01-5ubuntu1), ttf-takao-gothic (<< 003.02.01-5), ttf-takao-pgothic (<< 003.02.01-5ubuntu1) Provides: fonts-japanese-gothic Pre-Depends: dpkg (>= 1.15.6~) Conflicts: fonts-takao-gothic (<< 003.02.01-5ubuntu1), ttf-takao-gothic (<< 003.02.01-5), ttf-takao-pgothic (<< 003.02.01-5ubuntu1) Filename: pool/main/f/fonts-takao/fonts-takao-pgothic_003.02.01-9ubuntu2_all.deb Size: 3403360 MD5sum: 868fd2fffac89b8df128f01d9a6a76f6 SHA1: 66cacb8ed8cd990ebd2ec25258d0bad0a8b4521b SHA256: 23dd59decc5076194e98bd947963cbbff38598e7708b5a503148842d309cb388 Description: Japanese TrueType font set, Takao P Gothic Fonts Homepage: https://launchpad.net/takao-fonts Description-md5: 912deeb0144fb88b9943945137555612 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-texgyre Priority: optional Section: fonts Installed-Size: 13875 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Source: tex-gyre Version: 2.004.2-4 Replaces: tex-gyre (<= 2.004.1-4) Depends: dpkg (>= 1.14.18), tex-common (>= 4) Breaks: tex-gyre (<= 2.004.1-4) Filename: pool/main/t/tex-gyre/fonts-texgyre_2.004.2-4_all.deb Size: 9789890 MD5sum: a6ca506e183bf81cc2fa38302310a7c1 SHA1: fed82c4cfe3a3cb83c957b3e9571b0e0b9dad3d3 SHA256: 8bf5c66ed33fec0c47507a8e462759b12a1de0fa0a649a42f0706b71db1b9216 Description: OpenType fonts based on URW Fonts Homepage: http://www.gust.org.pl/projects/e-foundry/tex-gyre/ Description-md5: 0adbb149da23691487882aa3da65b90b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-thai-tlwg Priority: optional Section: fonts Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Depends: fonts-tlwg-garuda, fonts-tlwg-kinnari, fonts-tlwg-loma, fonts-tlwg-mono, fonts-tlwg-norasi, fonts-tlwg-purisa, fonts-tlwg-sawasdee, fonts-tlwg-typewriter, fonts-tlwg-typist, fonts-tlwg-typo, fonts-tlwg-umpush, fonts-tlwg-waree Filename: pool/main/f/fonts-tlwg/fonts-thai-tlwg_0.5.1-3_all.deb Size: 7254 MD5sum: 40e9a7f21a8e1e1dcf99276e42733248 SHA1: 4d4ddee9b2636798f80cce4c84f69370231181f6 SHA256: 55f872ed0b21073e7f0143fb972deedd671ebe03c5b6302f9ed39fe5b815ed3c Description: Thai fonts maintained by TLWG (meta package) Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 7c3d0b4786dd2c73109ba776d98ae5b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tibetan-machine Priority: optional Section: fonts Installed-Size: 4449 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.901b-5 Conflicts: ttf-tmuni (<< 1.901b-3) Breaks: ttf-tmuni (<< 1.901b-3) Filename: pool/main/f/fonts-tibetan-machine/fonts-tibetan-machine_1.901b-5_all.deb Size: 848824 MD5sum: e1c003f0a725c061df4e35bc02409542 SHA1: 3a59a51b22f4cec58a001afcd95044ee2b605417 SHA256: 509f3e5e5871f8d8c89428e6717b659066b4d7cc60368894a7b3f393b5f6d060 Description: font for Tibetan, Dzongkha and Ladakhi (OpenType Unicode) Multi-Arch: foreign Homepage: https://collab.itc.virginia.edu/wiki/tibetan-script/Tibet%20Machine%20Web.html Description-md5: be01a3b4eb62bd41e37a556440ff464b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-garuda Priority: optional Section: fonts Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-garuda_0.5.1-3_all.deb Size: 151392 MD5sum: e81b1f9b4378c9d75901d8b661d8ce9b SHA1: d1f134c028466931ad819f05aab06cae89771c94 SHA256: 1b70d93649e5d831cbef2117265869e82097371ffaf58be1b0f43c7083bde140 Description: Thai Garuda font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: df8af89ab64bd1769b931ba942051b9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-kinnari Priority: optional Section: fonts Installed-Size: 622 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-kinnari_0.5.1-3_all.deb Size: 260664 MD5sum: a190acfa741a9a69d3df7b8d146639d8 SHA1: 9f4282d2b67d8887723e4b96aef64d6b5f7d95c7 SHA256: 9045214d566093eab968cd81b437e26e550d3913e6f7b7a3b3f2945b40356fcd Description: Thai Kinnari font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 14791472e2e9c861709e53b801832749 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-loma Priority: optional Section: fonts Installed-Size: 402 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-loma_0.5.1-3_all.deb Size: 150696 MD5sum: 567d549614dfb099941b6dc183c792ad SHA1: 6ecc2708e0a1f198335df50fa2002ff964525843 SHA256: cb43cecc6a8ae413b891e28800c4f0133acc68d830987a516cd9b6cc569ed13e Description: Thai Loma font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 677a1f1fe68a7308a5462fb7c7db4bc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-mono Priority: optional Section: fonts Installed-Size: 469 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-mono_0.5.1-3_all.deb Size: 164046 MD5sum: f0cf322680de700dd93d5c852bb1e426 SHA1: a0210769fcb7f8f4f8d160867acd92f6584ff81d SHA256: 9f40f9a39aa4e0ccb69125a0a6e271e6aa1734f94beada938df415ac27764ed8 Description: Thai TlwgMono font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 6fb87a07512347418ba219eba68126fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-norasi Priority: optional Section: fonts Installed-Size: 720 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-norasi_0.5.1-3_all.deb Size: 296802 MD5sum: f834b0ae6b0beba5ecb1d1730b065f5c SHA1: 99d106360b04d43010f334700d0f44547346bfb1 SHA256: 8eb7f8f49503c8d419b19dcc8d81bf9ddd633d61fe28c217e414ea2f3d678715 Description: Thai Norasi font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: a2048ac58dfd7598ff2f94f63bbf3726 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-purisa Priority: optional Section: fonts Installed-Size: 664 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-purisa_0.5.1-3_all.deb Size: 298024 MD5sum: 627d7e2b69f989dc24c51b7261bdd623 SHA1: eb90c77fd4e340de65a7e330ac6ae9afad140c96 SHA256: 9fed9f4d2466b5fffea495f5e7c374074b4cb9571ba3c2ddddcf8b3efd765a9d Description: Thai Purisa font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: c3f2349dde83031076a097d595a923cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-sawasdee Priority: optional Section: fonts Installed-Size: 415 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-sawasdee_0.5.1-3_all.deb Size: 150090 MD5sum: 2d4bdf97825252e590c70975a5ab6a5a SHA1: 3f290c25059254537053bff8b3ad5c268520fd40 SHA256: 76b145649419d236ba49704495b9135764df250cb0031e4174b1a75a99eeb6f6 Description: Thai Sawasdee font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 3e02245948f937f38a8243317105f048 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-typewriter Priority: optional Section: fonts Installed-Size: 465 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-typewriter_0.5.1-3_all.deb Size: 165214 MD5sum: b4f0afec3f794c9eca5cc07ce8c45aa9 SHA1: ed22233ca73a48aadec3cda72d6c846f8c473c41 SHA256: 7577da442d44c16b8138de8643b5b7160ba5a41496f0e805cc45a0d567eeb17b Description: Thai TlwgTypewriter font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: b09761daf922fab4a000a00bca1fca8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-typist Priority: optional Section: fonts Installed-Size: 467 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-typist_0.5.1-3_all.deb Size: 165314 MD5sum: 899eb6f93ac04c4c679931bc351e05eb SHA1: 83e30c2393eb80ac9c6775be2f6fd80f0efce59a SHA256: a9499370fe44b46f45b6deb7a55c0d41eb950cf4d798df1d5b5953eb416685b7 Description: Thai TlwgTypist font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: e034beee1a066eab15c594da361a86fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-typo Priority: optional Section: fonts Installed-Size: 468 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-typo_0.5.1-3_all.deb Size: 165100 MD5sum: a5966de0aa1338b9ad7fb780d740a7b4 SHA1: c32e590861a21f6a4d0751483772bf5e57905d6a SHA256: d6e5691b7dc3274354480987df883d5de675d49ced7bc4b91094f5f5e4461bc4 Description: Thai TlwgTypo font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: f1ef38863656645d870623bfbd6ceea2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-umpush Priority: optional Section: fonts Installed-Size: 567 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-umpush_0.5.1-3_all.deb Size: 208408 MD5sum: 3b0da0f3b500d137cbd8d3d2e930ed40 SHA1: 55a49db444d8a4e70f7f5182cddb89014f26718b SHA256: 43d8c54470306a94882259730d775c2c42866f73611b7e5c0889ffc257f1efe7 Description: Thai Umpush font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 579761dffb2b613a75b881f45b635501 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-waree Priority: optional Section: fonts Installed-Size: 427 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-waree_0.5.1-3_all.deb Size: 156886 MD5sum: 62c29605411864d89b9417036c940178 SHA1: 1c898170393f19aa9968b11fb7fcaacd04ebf17c SHA256: 017da375d3d688aaf0f4c5cf30b8ed1c6299d36b8afa4f179bfcc83dd918c0da Description: Thai Waree font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 5af2b496ecd166395a958c9ca5bc49b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-ubuntu-font-family-console Priority: optional Section: fonts Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Paul Sladen Architecture: all Source: ubuntu-font-family-sources Version: 0.80-0ubuntu6 Filename: pool/main/u/ubuntu-font-family-sources/fonts-ubuntu-font-family-console_0.80-0ubuntu6_all.deb Size: 15614 MD5sum: 1a7533372064037f77632cc1f53fd362 SHA1: 13890f11cadd482ef047a765b5f43cdad696897b SHA256: 55fe56e51632d3267ce83743e5c68e0ed9118b4c6ed4ba53a166cd556d7b21ae Description: Ubuntu Font Family Linux console fonts, sans-serif monospace Multi-Arch: foreign Homepage: http://font.ubuntu.com/ Description-md5: ab3f2b5fd6cdd8d896b03ed48ae8c95a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server Package: fonts-ukij-uyghur Priority: optional Section: fonts Installed-Size: 20627 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 20110217-3 Filename: pool/main/f/fonts-ukij-uyghur/fonts-ukij-uyghur_20110217-3_all.deb Size: 5229700 MD5sum: 7eff9289fb49e8cf3852bc454487d321 SHA1: b9598caa5f354c59048b80aeb18ea78be1e74072 SHA256: 136c4114964bb912c1c9facbbc55bbf2e31e097ca17d08c8f01e05e2bc926e3f Description: fonts for Uyghur language Multi-Arch: foreign Homepage: http://ukij.org/fonts/ Description-md5: 61c4776cdf86a76293c2c22c81484834 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-unfonts-core Priority: optional Section: fonts Installed-Size: 33498 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.0.3.is.1.0.2-080608-10ubuntu1 Replaces: ttf-unfonts (<< 1.0.1-7), ttf-unfonts-core (<< 1.0.2-080608-4) Pre-Depends: dpkg (>= 1.15.7.2) Breaks: ttf-unfonts (<< 1.0.1-7), ttf-unfonts-core (<< 1.0.2-080608-4) Filename: pool/main/f/fonts-unfonts-core/fonts-unfonts-core_1.0.3.is.1.0.2-080608-10ubuntu1_all.deb Size: 14434120 MD5sum: 68b8a5be53820158e9ec684b05331d6a SHA1: 6a04284cbb46fb8ff5c83e8349e46deda6706503 SHA256: 2299ec9bafa6c40607d797c3df607bdb97b8d8496fe9f6879394751b5995ad30 Description: Un series Korean TrueType fonts Multi-Arch: foreign Homepage: http://kldp.net/projects/unfonts Description-md5: d2d7c4f882eca1661f5721fed9472492 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-desktop Package: fonts-vlgothic Priority: optional Section: fonts Installed-Size: 8169 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 20130607-1ubuntu1 Replaces: ttf-vlgothic (<< 20110414-1) Provides: fonts-japanese-gothic Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-vlgothic (<< 20110414-1) Filename: pool/main/f/fonts-vlgothic/fonts-vlgothic_20130607-1ubuntu1_all.deb Size: 2212796 MD5sum: f20e1d6ee9d21f9468a1c2f5cdf35d6c SHA1: 84e72db2abd762ef35742b72c15fdb499a031a2f SHA256: af2c66a35a2db68e00e262f26032e2114679e47877cd952bb44d25eae4907cdb Description: Japanese TrueType font from Vine Linux Multi-Arch: foreign Homepage: http://dicey.org/vlgothic/ Description-md5: f163dce2cbe8004517cecb6dcc146df6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-wqy-microhei Priority: optional Section: fonts Installed-Size: 5167 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.2.0-beta-2 Replaces: ttf-wqy-microhei (<< 0.2.0-beta-2) Provides: ttf-wqy-microhei Recommends: fontconfig (>= 2.3.1-1) Breaks: ttf-wqy-microhei (<< 0.2.0-beta-2) Filename: pool/main/f/fonts-wqy-microhei/fonts-wqy-microhei_0.2.0-beta-2_all.deb Size: 1607142 MD5sum: 5cbdb0b119f4b00f7acf48298399c72c SHA1: bb331b474dd4d6f8c6b5261388faec3a4915a6dd SHA256: f76aa2406eed010d23b2cd12070002c81616084cb3fedc99fea9c40c615d610b Description: Sans-serif style CJK font derived from Droid Multi-Arch: foreign Homepage: http://wenq.org/ Description-md5: c32a7f886f6870b4b8e9be19f98fbef8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-active, kubuntu-active Package: fonts-wqy-zenhei Priority: optional Section: fonts Installed-Size: 16459 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.9.45-5ubuntu1 Replaces: ttf-wqy-zenhei (<< 0.9.45-5) Provides: ttf-wqy-zenhei Depends: fontconfig (>= 2.3.1-1) Breaks: ttf-wqy-zenhei (<< 0.9.45-5) Filename: pool/main/f/fonts-wqy-zenhei/fonts-wqy-zenhei_0.9.45-5ubuntu1_all.deb Size: 7470352 MD5sum: d02ef9a5edd1b0d3f700d24d59405208 SHA1: 51cf563c6d3e4edfeb6fe47268a528752a5039a7 SHA256: 16029b33b02099e8085d8a819c62805dec7c791f7eb66cf873a768e2875cc6c2 Description: "WenQuanYi Zen Hei" A Hei-Ti Style (sans-serif) Chinese font Multi-Arch: foreign Homepage: http://wqy.sourceforge.net/ Description-md5: 1e5c788bfbd34f18409a1ccd47e50c2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: foomatic-db-compressed-ppds Priority: optional Section: text Installed-Size: 609 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Group Architecture: all Source: foomatic-db Version: 20140410-0ubuntu1 Replaces: foomatic-db, foomatic-db-hpijs Provides: foomatic-db Depends: python3, xz-utils Recommends: cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0), ghostscript, cups, cups-client Suggests: hplip, hplip-cups, cups-filters, openprinting-ppds, printer-driver-all (>= 0.20111206) Conflicts: foomatic-db, foomatic-db-hpijs Breaks: cups (<< 1.5.0-3~), foomatic-db Filename: pool/main/f/foomatic-db/foomatic-db-compressed-ppds_20140410-0ubuntu1_all.deb Size: 423966 MD5sum: a9ed7ae2222aece292c1ab37055ae6b2 SHA1: 6686c0f00bc702e51e2f6dd2c97d2c92e4661052 SHA256: af18142593b93ab3bee8db57017e55eacd3caea6f16e279774d1bbfc2911713f Description: OpenPrinting printer support - Compressed PPDs derived from the database Homepage: http://www.openprinting.org/ Description-md5: fb3b03f43036d62b4dc6ed630144d256 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: foomatic-db-engine Priority: extra Section: text Installed-Size: 790 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Group Architecture: amd64 Version: 4.0.11-0ubuntu1 Depends: libc6 (>= 2.4), libxml2 (>= 2.7.4), perl, cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0), wget | curl Pre-Depends: bash (>= 2.05) Recommends: cups, cups-client, foomatic-db-compressed-ppds | foomatic-db Suggests: foomatic-db-gutenprint, netcat Breaks: cups (<< 1.5.0-3~) Filename: pool/main/f/foomatic-db-engine/foomatic-db-engine_4.0.11-0ubuntu1_amd64.deb Size: 220856 MD5sum: 5ed1a4ef5f3a0cf04130e4bf8ba54743 SHA1: 8d8ea68fa742f24ce8a925a4168f1affb759be26 SHA256: 1fd79712d9a9544a39e7969246d41fb600106aa1aa253bd43ab54bd5efee6823 Description: OpenPrinting printer support - programs Homepage: http://www.openprinting.org/ Description-md5: 06dc0af0df2ebffe0b2cf09bedf80c7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fop Priority: optional Section: text Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1:1.1.dfsg-2ubuntu1 Depends: default-jre-headless | java2-runtime-headless, libfop-java (= 1:1.1.dfsg-2ubuntu1) Recommends: libsaxon-java Suggests: fop-doc, libservlet3.0-java Filename: pool/main/f/fop/fop_1.1.dfsg-2ubuntu1_all.deb Size: 13516 MD5sum: 063c034a1549350d464d0b908e743703 SHA1: 5118ae5f5f6d681b02552c076592f915c734641b SHA256: a1306820392e4470392d13219d480d0ff27871b697afdee8f3a41429914ff155 Description: XML formatter driven by XSL Formatting Objects (XSL-FO.) Homepage: http://xmlgraphics.apache.org/fop/ Description-md5: cdc9333d514b57a909e228652b544fef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fop-doc Priority: optional Section: doc Installed-Size: 67305 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: fop Version: 1:1.1.dfsg-2ubuntu1 Replaces: libfop-java-doc Filename: pool/main/f/fop/fop-doc_1.1.dfsg-2ubuntu1_all.deb Size: 5779150 MD5sum: c0e4362f3003c19aac0871d0de788574 SHA1: 144c7bb9b8fa12a116fe9c93a5d141e9ebcbe4f1 SHA256: 8e372435b7dea31073176c098ddbe39587296c4b1f165d4806321e76ead3bff4 Description: XML formatter driven by XSL Formatting Objects (doc) Homepage: http://xmlgraphics.apache.org/fop/ Description-md5: d016a404cbfacb599991ebf66fd3b5b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: freeglut3 Priority: optional Section: libs Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Anton Gladky Architecture: amd64 Source: freeglut Version: 2.8.1-1 Depends: libc6 (>= 2.17), libgl1-mesa-glx | libgl1, libx11-6 (>= 2:1.2.99.901), libxi6 (>= 2:1.2.99.4), libxxf86vm1 Pre-Depends: multiarch-support Filename: pool/main/f/freeglut/freeglut3_2.8.1-1_amd64.deb Size: 97450 MD5sum: 8e9d81083b6fc2d79f064eb472e1b89e SHA1: f5b44f09de0a7eb05feda1c757f98f8bfec51f07 SHA256: 2f7a80767969c700cd009f4acaa2df1b7848d136d5c3dc0420d798adffc569dd Description: OpenGL Utility Toolkit Multi-Arch: same Homepage: http://freeglut.sourceforge.net/ Description-md5: a6aaac3592e8283681e07e3278c82c7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: freeglut3-dbg Priority: extra Section: libdevel Installed-Size: 312 Maintainer: Ubuntu Developers Original-Maintainer: Anton Gladky Architecture: amd64 Source: freeglut Version: 2.8.1-1 Depends: freeglut3 (= 2.8.1-1) Filename: pool/main/f/freeglut/freeglut3-dbg_2.8.1-1_amd64.deb Size: 177342 MD5sum: 9bfc70d5bab5cb635895f86e61a84d64 SHA1: ab82e0cfecc2c738570d063d5f9698465e4cd598 SHA256: 93f81132b7375d9b9ff465016c7ac4178924689b870ad231a5fdac50f2e4589a Description: OpenGL Utility Toolkit debugging information Multi-Arch: same Homepage: http://freeglut.sourceforge.net/ Description-md5: e1f5f8fa74574791b9fd3f9314daffc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: freeglut3-dev Priority: optional Section: libdevel Installed-Size: 758 Maintainer: Ubuntu Developers Original-Maintainer: Anton Gladky Architecture: amd64 Source: freeglut Version: 2.8.1-1 Depends: freeglut3 (= 2.8.1-1), libgl1-mesa-dev | libgl-dev, libglu1-mesa-dev | libglu-dev, libxt-dev, libxext-dev Filename: pool/main/f/freeglut/freeglut3-dev_2.8.1-1_amd64.deb Size: 174624 MD5sum: 3c6e62700e945af69838bb474cdb2396 SHA1: 0c6075ec9c813f9171359276ad0d99e1b4530ea3 SHA256: a62c034bc78402b64a43420d751aba5556a89b94998509f7b78f6aaf9739513f Description: OpenGL Utility Toolkit development files Multi-Arch: same Homepage: http://freeglut.sourceforge.net/ Description-md5: 79f3fc9a50b1fb368d365cbd8188f334 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: freeipmi-common Priority: extra Section: admin Installed-Size: 446 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: all Source: freeipmi Version: 1.1.5-3ubuntu3 Pre-Depends: dpkg (>= 1.15.7.2~) Suggests: freeipmi-tools Filename: pool/main/f/freeipmi/freeipmi-common_1.1.5-3ubuntu3_all.deb Size: 159738 MD5sum: a16e777f97bdddf2de94d8854c7737db SHA1: aea7d7a04dcf342706be6dc807ed3a50039b42c2 SHA256: 6ef9bf1619c03868bc7be1fdd1baa9ee99fd27697bffc03c5d4cb0fb958031e7 Description: GNU implementation of the IPMI protocol - common files Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: e744e2bab7d803679befab25b3d06fcc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freeipmi-tools Priority: extra Section: admin Installed-Size: 3547 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: amd64 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libc6 (>= 2.15), libfreeipmi12 (>= 1.1.5), libipmiconsole2 (>= 1.1.5), libipmidetect0 (>= 1.1.5) Suggests: freeipmi-ipmidetect, freeipmi-bmc-watchdog Filename: pool/main/f/freeipmi/freeipmi-tools_1.1.5-3ubuntu3_amd64.deb Size: 735084 MD5sum: 88bf241d15f879f35a0077c7382edc1d SHA1: e65a4ad59073cde149381a9eec2c179ed84a3ca2 SHA256: 2156c807d598545d3f9dffc4b8aa8b98ae0f7e6a39cd7ad12d6a7348af146945 Description: GNU implementation of the IPMI protocol - tools Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: b9853a25f20aef237aed373e68bef1d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freeradius Priority: optional Section: net Installed-Size: 1901 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: amd64 Version: 2.1.12+dfsg-1.2ubuntu8 Provides: radius-server Depends: lsb-base (>= 3.1-23.2), libc6 (>= 2.15), libfreeradius2 (= 2.1.12+dfsg-1.2ubuntu8), libgdbm3 (>= 1.8.3), libltdl7 (>= 2.4.2), libpam0g (>= 0.99.7.1), libperl5.18 (>= 5.18.2), libpython2.7 (>= 2.7), libssl1.0.0 (>= 1.0.0), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), freeradius-common, ssl-cert, ca-certificates, adduser Recommends: freeradius-utils Suggests: freeradius-ldap, freeradius-postgresql, freeradius-mysql, freeradius-krb5 Filename: pool/main/f/freeradius/freeradius_2.1.12+dfsg-1.2ubuntu8_amd64.deb Size: 504734 MD5sum: a930dbc77cdbf5e8f7588017ee69ab26 SHA1: 0c802cf7b565baea9b54fb5d522b0ad2fe561813 SHA256: 2909ff5ec1f3ef87c2f05c6312f8efd6085bc1d4464ca433d4ca46e11a79b708 Description: high-performance and highly configurable RADIUS server Homepage: http://www.freeradius.org/ Description-md5: 55219a1267c72db69e230159726b4e4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freeradius-common Priority: optional Section: net Installed-Size: 909 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: all Source: freeradius Version: 2.1.12+dfsg-1.2ubuntu8 Replaces: freeradius (<< 2.0) Depends: adduser Conflicts: radiusd-livingston, xtradius, yardradius Filename: pool/main/f/freeradius/freeradius-common_2.1.12+dfsg-1.2ubuntu8_all.deb Size: 189326 MD5sum: a1850edc8dcc3c5bf27cdc075e53d489 SHA1: e19c739ea05449bd5b5749b2361127642a273aaa SHA256: 85099bc69da929bea27af32ca1f53b5c9bae75f798aa49251ad6d2fc454dc4e5 Description: FreeRADIUS common files Homepage: http://www.freeradius.org/ Description-md5: 1c7945f97894906b5aaee9b087c2f56c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freeradius-dbg Priority: optional Section: net Installed-Size: 4354 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: amd64 Source: freeradius Version: 2.1.12+dfsg-1.2ubuntu8 Depends: freeradius (= 2.1.12+dfsg-1.2ubuntu8) Filename: pool/main/f/freeradius/freeradius-dbg_2.1.12+dfsg-1.2ubuntu8_amd64.deb Size: 989910 MD5sum: 19f5c188bc1d1f112cd3189b79ddffa9 SHA1: c8dcc4f360e685329a85af873e1dcdb31568d895 SHA256: 73d2d6a2233538825fec2025d4f1dc197f235002d48767def295e60979104241 Description: debug symbols for the FreeRADIUS packages Homepage: http://www.freeradius.org/ Description-md5: 105d232caa700371774afccdc8cf3bd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: freeradius-utils Priority: optional Section: net Installed-Size: 250 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: amd64 Source: freeradius Version: 2.1.12+dfsg-1.2ubuntu8 Replaces: freeradius (<< 2.0) Depends: libc6 (>= 2.15), libfreeradius2 (= 2.1.12+dfsg-1.2ubuntu8), libgdbm3 (>= 1.8.3), libpcap0.8 (>= 0.9.8), freeradius-common Recommends: libdbi-perl Conflicts: radiusd-livingston, yardradius Filename: pool/main/f/freeradius/freeradius-utils_2.1.12+dfsg-1.2ubuntu8_amd64.deb Size: 54480 MD5sum: 91c7cbda39e56904cd054706b826d981 SHA1: 3cdb422f8bc6022fcbfe7bd2c371d07f7a8b284d SHA256: 26a8d64785032205c82addd510d61c24e2c603ca6c684fc006fca95dd14d4c3a Description: FreeRADIUS client utilities Homepage: http://www.freeradius.org/ Description-md5: 60c2c453c2c27871c03c6323f1d4cf90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freerdp-dbg Priority: extra Section: debug Installed-Size: 2014 Maintainer: Ubuntu Developers Original-Maintainer: Mike Gabriel Architecture: amd64 Source: freerdp Version: 1.0.2-2ubuntu1 Depends: freerdp-x11 (= 1.0.2-2ubuntu1), libfreerdp1 (= 1.0.2-2ubuntu1), libfreerdp-plugins-standard (= 1.0.2-2ubuntu1) Filename: pool/main/f/freerdp/freerdp-dbg_1.0.2-2ubuntu1_amd64.deb Size: 1681770 MD5sum: 3af150d59e9e8083634ad8135c930b1a SHA1: 8956c0edeb164ceb5e9701ae2ba67f5e6a5b95f0 SHA256: a6d4e32598e07d14c99c083dea2673cba9b79710b68931c5b10958d300fe6fcb Description: RDP client for Windows Terminal Services (debug) Homepage: http://www.freerdp.com/ Description-md5: b076a6058ef43b006433da2ad80ff6a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: freerdp-x11 Priority: optional Section: x11 Installed-Size: 643 Maintainer: Ubuntu Developers Original-Maintainer: Mike Gabriel Architecture: amd64 Source: freerdp Version: 1.0.2-2ubuntu1 Provides: freerdp Depends: libc6 (>= 2.15), libfreerdp1 (>= 1.0.1), libx11-6, libxcursor1 (>> 1.1.2), libxext6, libxinerama1, libxv1 Recommends: libfreerdp-plugins-standard Filename: pool/main/f/freerdp/freerdp-x11_1.0.2-2ubuntu1_amd64.deb Size: 50426 MD5sum: 880b22e7a2f1ad2a3e07630e7a1a5acc SHA1: da33be106a575e2caadcc82b26fffb2fd13a14a4 SHA256: 63b278520837da7109f87e306991003f76f7cca445c63c5694d1628523df5899 Description: RDP client for Windows Terminal Services Homepage: http://www.freerdp.com/ Description-md5: 59079f812101eee635ba7f9e171e46a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, ubuntustudio-desktop Package: freetds-common Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: all Source: freetds Version: 0.91-5 Replaces: libct3, libct4 (<< 0.82-1) Filename: pool/main/f/freetds/freetds-common_0.91-5_all.deb Size: 24256 MD5sum: 3eb2adb8cea310bece33c8a6c61657c2 SHA1: bdf3909101d9f6b65f9398c2d72c6390cf5d0212 SHA256: dd1ccfa8784a592e7e13d83ffcec16badca277dded1565847ee395678c222ee2 Description: configuration files for FreeTDS SQL client libraries Multi-Arch: foreign Homepage: http://www.freetds.org/ Description-md5: a0e753a476f0693fa2896e6335f586c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freetds-dev Priority: optional Section: devel Installed-Size: 1782 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: freetds Version: 0.91-5 Depends: libct4 (= 0.91-5), libsybdb5 (= 0.91-5) Conflicts: crystalspace-dev Filename: pool/main/f/freetds/freetds-dev_0.91-5_amd64.deb Size: 513814 MD5sum: b2c739c838e95b44827eeb60220c4ec2 SHA1: e635209141715cd5d9abe88dd99717545e14f43f SHA256: bafe3e2ee25566c408bedb1eb7f98a7c6316027e2d63334700db7e039056554a Description: MS SQL and Sybase client library (static libs and headers) Homepage: http://www.freetds.org/ Description-md5: 66f74ed837454f3b258fb8264488f827 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: friendly-recovery Priority: standard Section: admin Installed-Size: 67 Maintainer: Michael Vogt Architecture: all Version: 0.2.25 Depends: upstart-job, upstart, whiptail Recommends: gettext-base, update-manager-core (>= 0.90.0) Breaks: grub2 (<< 1.99-12ubuntu4), initramfs-tools (<< 0.99ubuntu4), upstart (<< 1.3-0ubuntu9) Filename: pool/main/f/friendly-recovery/friendly-recovery_0.2.25_all.deb Size: 9236 MD5sum: ec8080a245218171b8abede8a166c44d SHA1: f56953b6f69d3371b26c4946a410db8d45e1a79b SHA256: d789315f5d51442998bbf9a2090652e49b57fe540bc8d35a5d96c4d3cf7d3e6e Description: Make recovery more user-friendly Description-md5: 40525278a400423d374c64c78bc211a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: friends Priority: extra Section: misc Installed-Size: 88 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 0.2.0+14.04.20140217.1-0ubuntu1 Depends: libaccounts-glib0 (>= 1.0), libc6 (>= 2.2.5), libdee-1.0-4 (>= 0.5.12), libglib2.0-0 (>= 2.37.3), dconf-gsettings-backend | gsettings-backend, friends-dispatcher Filename: pool/main/f/friends/friends_0.2.0+14.04.20140217.1-0ubuntu1_amd64.deb Size: 14156 MD5sum: 8eafa3103e93ecbf91a0448d07958343 SHA1: 22f9de04937867f3eb1d34c10815c78f64b59df6 SHA256: 051eb8356c7143e10c7483292c4a35d8a978f0b47799524eb78e33e9ef99f8a0 Description: Social integration with the desktop Multi-Arch: foreign Homepage: https://launchpad.net/friends Description-md5: a6dcce49ed6a9d3cd70d71b3cbe5688e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: friends-dispatcher Priority: extra Section: misc Installed-Size: 253 Maintainer: Ubuntu Desktop Team Architecture: all Source: friends Version: 0.2.0+14.04.20140217.1-0ubuntu1 Depends: gir1.2-dee-1.0, gir1.2-ebook-1.2 (>= 3.8), gir1.2-ebookcontacts-1.2 (>= 3.8), gir1.2-edataserver-1.2 (>= 3.8), gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-networkmanager-1.0, gir1.2-notify-0.7, gir1.2-signon-1.0, gir1.2-soup-2.4, gir1.2-accounts-1.0, python3-pkg-resources, python3-dbus, python3-gi, python3-oauthlib, python3:any (>= 3.3.2-2~), python3 Recommends: friends-facebook, friends-twitter, gir1.2-dbusmenu-glib-0.4, gir1.2-messagingmenu-1.0, gir1.2-unity-5.0 Conflicts: friends (<< 0.1.1bzr13.02.12) Breaks: friends (<< 0.1.1bzr13.02.12) Filename: pool/main/f/friends/friends-dispatcher_0.2.0+14.04.20140217.1-0ubuntu1_all.deb Size: 42706 MD5sum: 3e04e67a6d22812ea42bba8a96169c37 SHA1: f5970e4d9d8b453a1abe47a839eeadcd990b3780 SHA256: 1cfa6c2370c6478879fa38f35a3e54dbc900dd50ca733ec94ad5f24c04cff5e2 Description: Social integration with the desktop Multi-Arch: foreign Homepage: https://launchpad.net/friends Description-md5: a6dcce49ed6a9d3cd70d71b3cbe5688e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: friends-facebook Priority: extra Section: misc Installed-Size: 63 Maintainer: Ubuntu Desktop Team Architecture: all Source: friends Version: 0.2.0+14.04.20140217.1-0ubuntu1 Depends: friends, python3:any (>= 3.3.2-2~), account-plugin-facebook Filename: pool/main/f/friends/friends-facebook_0.2.0+14.04.20140217.1-0ubuntu1_all.deb Size: 5554 MD5sum: b4601126858905736748700c69a5f00d SHA1: 82bf24f5182696b7848f54e1657b803fc91ec84f SHA256: 18eb0697f8cb6eb61b944b569fd6e76fa6d3f08681c1dadbaa2a7068efe0616b Description: Social integration with the desktop - Facebook Multi-Arch: foreign Homepage: https://launchpad.net/friends Description-md5: 3a31b7d978956f8c11b4dbb3699ecfca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: friends-flickr Priority: extra Section: misc Installed-Size: 57 Maintainer: Ubuntu Desktop Team Architecture: all Source: friends Version: 0.2.0+14.04.20140217.1-0ubuntu1 Depends: friends, python3:any (>= 3.3.2-2~), account-plugin-flickr Filename: pool/main/f/friends/friends-flickr_0.2.0+14.04.20140217.1-0ubuntu1_all.deb Size: 3904 MD5sum: 67c62b71ad3bf850445868362eca9873 SHA1: d1681e89e74eeec8f6c02a86fa2296af6e2c33ca SHA256: fa6365ae966b4cce88c8baf269fc8e6f05df40cf2cdaf28f706daefc8c5b5bb2 Description: Social integration with the desktop - Flickr Multi-Arch: foreign Homepage: https://launchpad.net/friends Description-md5: 41dffac763f165245b75f8ee0dddae2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: friends-twitter Priority: extra Section: misc Installed-Size: 68 Maintainer: Ubuntu Desktop Team Architecture: all Source: friends Version: 0.2.0+14.04.20140217.1-0ubuntu1 Depends: friends, python3:any (>= 3.3.2-2~), account-plugin-twitter Filename: pool/main/f/friends/friends-twitter_0.2.0+14.04.20140217.1-0ubuntu1_all.deb Size: 6484 MD5sum: 2fd552ce849c4967175c49e12209d3ab SHA1: 8bbd574fb3217825537c6067bbad8b7af6e53785 SHA256: 8fa4fb92fffc180d36029f372363bbf3d87c99db3ab61898a6b52a0876050b3e Description: Social integration with the desktop - Twitter Multi-Arch: foreign Homepage: https://launchpad.net/friends Description-md5: 1bdc9bb7fd13cd173ba94c65d1bf657f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ftp Priority: standard Section: net Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Alberto Gonzalez Iniesta Architecture: amd64 Source: netkit-ftp Version: 0.17-28 Replaces: netstd Depends: libc6 (>= 2.15), libreadline6 (>= 6.0), netbase Filename: pool/main/n/netkit-ftp/ftp_0.17-28_amd64.deb Size: 58106 MD5sum: f65f39fb22d01710ee7a7b626918dbc1 SHA1: 5f5247e17eac33cfe13535aa1876206f6cb84d4f SHA256: 470aba027a30abf7dd3884ef0553d0bb3ecaad24809030bc1fecbfe993160df7 Description: classical file transfer client Description-md5: ce93e483dfc5fef0655f73f364b3c01c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: fuse Priority: standard Section: utils Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Version: 2.9.2-4ubuntu4 Depends: libc6 (>= 2.14), libfuse2 (= 2.9.2-4ubuntu4), adduser, mount (>= 2.19.1), sed (>= 4), udev | makedev Filename: pool/main/f/fuse/fuse_2.9.2-4ubuntu4_amd64.deb Size: 25142 MD5sum: 24c17815dcc0bed83f566aed350ec270 SHA1: 6dfc4fccf6158b8ef1a333d5d7570230fdf5618c SHA256: 36ad326a5dc8e4020ba037a575e636aea67f6cb8c7dc56adfe6fb4f08ded1859 Description: Filesystem in Userspace Homepage: http://fuse.sourceforge.net/ Description-md5: 7c02c670c9296dcdf481f6c060b0083d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: fuse-dbg Priority: extra Section: debug Installed-Size: 395 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Source: fuse Version: 2.9.2-4ubuntu4 Depends: fuse (= 2.9.2-4ubuntu4), libfuse2 (= 2.9.2-4ubuntu4), libfuse-dev (= 2.9.2-4ubuntu4) Filename: pool/main/f/fuse/fuse-dbg_2.9.2-4ubuntu4_amd64.deb Size: 276002 MD5sum: 26d55f36abec996ef2535bff624f9e40 SHA1: b8b6c9d51e27f1d48a9054ee65b9ba95dbba01ba SHA256: c6ae5eb5a7a200d60a73e9094983cb9066074628e8dc1bc6d624cff280b0416b Description: Filesystem in Userspace Homepage: http://fuse.sourceforge.net/ Description-md5: 7c02c670c9296dcdf481f6c060b0083d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++ Priority: optional Section: devel Installed-Size: 34 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Provides: c++-compiler Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc (>= 4:4.8.2-1ubuntu6), g++-4.8 (>= 4.8.2-5~), gcc-4.8 (>= 4.8.2-5~) Suggests: g++-multilib Filename: pool/main/g/gcc-defaults/g++_4.8.2-1ubuntu6_amd64.deb Size: 1490 MD5sum: 7332a4e9116b821e167a3d0236ca413a SHA1: 2c7201808be1029d21b7691c5a855535a4fcbd51 SHA256: 02c3d204efe6c34bf3de655aaf6a9ce524511977aedf92d7bce7093d0581f977 Description: GNU C++ compiler Description-md5: 4d44b18774ae5123b7c3f70d940cf655 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Package: g++-4.7 Priority: optional Section: devel Installed-Size: 13754 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Provides: c++-compiler, c++abi2-dev Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), gcc-4.7 (= 4.7.3-12ubuntu1), libstdc++6-4.7-dev (= 4.7.3-12ubuntu1), libc6 (>= 2.14), libcloog-ppl1, libgmp10, libmpc3, libmpfr4 (>= 3.1.2), libppl-c4, zlib1g (>= 1:1.1.4) Suggests: g++-4.7-multilib, gcc-4.7-doc (>= 4.7.2-16), libstdc++6-4.7-dbg (>= 4.7.3-12ubuntu1) Filename: pool/main/g/gcc-4.7/g++-4.7_4.7.3-12ubuntu1_amd64.deb Size: 4620342 MD5sum: 5d78c0225cd20a74ae310fed96a5ec99 SHA1: aaf3a2a4df2bd7a48bfe80672876c52f5f3a4e90 SHA256: bb7576f0cb33bf3aa10eba3ee452e5357336bcba1324956855e655988779bf10 Description: GNU C++ compiler Homepage: http://gcc.gnu.org/ Description-md5: 0a3fad3367cb994bd16c61b0e16a8b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8 Priority: optional Section: devel Installed-Size: 17764 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Provides: c++-compiler, c++abi2-dev Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: g++-4.8-multilib, gcc-4.8-doc (>= 4.8), libstdc++6-4.8-dbg (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/g++-4.8_4.8.2-19ubuntu1_amd64.deb Size: 7038182 MD5sum: 25df6704792fa4c4b96ece237314e89d SHA1: 1b7f93528160edfd8800ba2cccd613e7c57f2414 SHA256: f5513c4b044bcb305f5cfaab07e2fb6e55336242f12c9cf9f16d23b06d67e475 Description: GNU C++ compiler Homepage: http://gcc.gnu.org/ Description-md5: 0a3fad3367cb994bd16c61b0e16a8b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Package: g++-4.8-aarch64-linux-gnu Priority: extra Section: devel Installed-Size: 12693 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Provides: c++-compiler-aarch64-linux-gnu, c++abi2-dev Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), gcc-4.8-aarch64-linux-gnu (= 4.8.2-13ubuntu1cross0.11), libstdc++-4.8-dev-arm64-cross (= 4.8.2-13ubuntu1cross0.11), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-doc (>= 4.8), libstdc++6-4.8-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11) Filename: pool/main/g/gcc-4.8-arm64-cross/g++-4.8-aarch64-linux-gnu_4.8.2-13ubuntu1cross0.11_amd64.deb Size: 4382122 MD5sum: 9a063c560b890732a66be66dbf518022 SHA1: 16b121fd31f1213cb9e12101a26bb8f7742adb26 SHA256: fc0b94e737600e95618fab03ccf5c5e369408597a1a3cb64f054b1088feb282b Description: GNU C++ compiler Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 375cdf23ac087e4b16d8e29883083ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 15165 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Provides: c++-compiler-arm-linux-gnueabihf, c++abi2-dev Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), gcc-4.8-arm-linux-gnueabihf (= 4.8.2-16ubuntu4cross0.11), libstdc++-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: g++-4.8-multilib-arm-linux-gnueabihf, gcc-4.8-doc (>= 4.8), libstdc++6-4.8-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) Filename: pool/main/g/gcc-4.8-armhf-cross/g++-4.8-arm-linux-gnueabihf_4.8.2-16ubuntu4cross0.11_amd64.deb Size: 5053580 MD5sum: f5a3fb1964be9b5add1745d9bc08fc31 SHA1: 30f3fe2e225e5c03b3a49aa606024c5b520a627c SHA256: 34a554f133272c42af10652fbfd3d7f892b17bf00018c37ef58bce1e067f986b Description: GNU C++ compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 1af3e5930fd0d3a33d12f0f8bc7e2f24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), g++-4.8 (= 4.8.2-19ubuntu1), gcc-4.8-multilib (= 4.8.2-19ubuntu1), lib32stdc++-4.8-dev (= 4.8.2-19ubuntu1), libx32stdc++-4.8-dev (= 4.8.2-19ubuntu1) Suggests: lib32stdc++6-4.8-dbg (>= 4.8.2-19ubuntu1), libx32stdc++6-4.8-dbg (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/g++-4.8-multilib_4.8.2-19ubuntu1_amd64.deb Size: 994 MD5sum: d67a2dea5789606751dc68a5dc88a806 SHA1: 1bbee5c7d31073acd318b66c9fca29bcd32645b7 SHA256: cf39e1cfca4335d3e815500310d4c1508c8353ef7694b72dc812ff20ec5bbdeb Description: GNU C++ compiler (multilib files) Homepage: http://gcc.gnu.org/ Description-md5: 0a4963e8755de4e48202cd72696d3556 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-multilib-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), g++-4.8-arm-linux-gnueabihf (= 4.8.2-16ubuntu4cross0.11), gcc-4.8-multilib-arm-linux-gnueabihf (= 4.8.2-16ubuntu4cross0.11), libsfstdc++-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11) | libsfstdc++-4.8-dev-armhf-cross Suggests: libsfstdc++6-4.8-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) | libsfstdc++6-4.8-dbg-armhf-cross Filename: pool/main/g/gcc-4.8-armhf-cross/g++-4.8-multilib-arm-linux-gnueabihf_4.8.2-16ubuntu4cross0.11_amd64.deb Size: 1096 MD5sum: cc4e7e6fe156aeb1ec3ca6f5de1e86e2 SHA1: 855de7fd2a32f21b8ad3e7b03a6ae034625b8a07 SHA256: ba85e3971b09fc6a2c94dc8316417f45bea207a2f0298291157b33fa87f17881 Description: GNU C++ compiler (multilib files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 0a4963e8755de4e48202cd72696d3556 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-multilib-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), g++-4.8-powerpc-linux-gnu (= 4.8.2-16ubuntu3cross0.11), gcc-4.8-multilib-powerpc-linux-gnu (= 4.8.2-16ubuntu3cross0.11), lib64stdc++-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11) Suggests: lib64stdc++6-4.8-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11) Filename: pool/main/g/gcc-4.8-powerpc-cross/g++-4.8-multilib-powerpc-linux-gnu_4.8.2-16ubuntu3cross0.11_amd64.deb Size: 1076 MD5sum: dadf5cba9f002b7b0212fe661fe9e8e9 SHA1: 11d6a1df6f5e7ef75ac3482e7d56dc69a89b9fea SHA256: 13b3b77d48f6da4c029fb420be73310d1d33ddc23dc75b03bc53645e59e141af Description: GNU C++ compiler (multilib files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 0a4963e8755de4e48202cd72696d3556 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 15673 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Provides: c++-compiler-powerpc-linux-gnu, c++abi2-dev Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), gcc-4.8-powerpc-linux-gnu (= 4.8.2-16ubuntu3cross0.11), libstdc++-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: g++-4.8-multilib-powerpc-linux-gnu, gcc-4.8-doc (>= 4.8), libstdc++6-4.8-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11) Filename: pool/main/g/gcc-4.8-powerpc-cross/g++-4.8-powerpc-linux-gnu_4.8.2-16ubuntu3cross0.11_amd64.deb Size: 4813122 MD5sum: 8f19c635fe1765e89ba0438fcc3b6649 SHA1: d30059c4b818cde9b27c052fee6ffcfa8493fe4d SHA256: 8d7e7add01fbc8746b59d6eca75ede7f462b3295e37b77593258a4d061529c49 Description: GNU C++ compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 2c5b1836d138ff53e7df7f27a0862e1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-powerpc64le-linux-gnu Priority: extra Section: devel Installed-Size: 15677 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Provides: c++-compiler-powerpc64le-linux-gnu, c++abi2-dev Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), gcc-4.8-powerpc64le-linux-gnu (= 4.8.2-16ubuntu4cross0.4), libstdc++-4.8-dev-ppc64el-cross (= 4.8.2-16ubuntu4cross0.4), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-doc (>= 4.8), libstdc++6-4.8-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4) Filename: pool/main/g/gcc-4.8-ppc64el-cross/g++-4.8-powerpc64le-linux-gnu_4.8.2-16ubuntu4cross0.4_amd64.deb Size: 4966170 MD5sum: 710260152fbab1360f4e4a217f8119a0 SHA1: 09939439e8af55c404dbe532c820058b3e4c8645 SHA256: 51f1b76acbe7db80d16581c1ac143afeb117170f64a1b63804be9f362bfd3e1c Description: GNU C++ compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 7326febff1363e9a9e082bce774ea2a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-aarch64-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-arm64-cross (0.4) Version: 4:4.8.2-1 Depends: cpp-aarch64-linux-gnu (>= 4:4.8.2-1), gcc-aarch64-linux-gnu (>= 4:4.8.2-1), g++-4.8-aarch64-linux-gnu (>= 4.8.2-1), gcc-4.8-aarch64-linux-gnu (>= 4.8.2-1) Conflicts: g++-4.4-aarch64-linux-gnu (<= 4.4.5-15~), g++-4.5-aarch64-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-arm64-cross/g++-aarch64-linux-gnu_4.8.2-1_amd64.deb Size: 1046 MD5sum: 8b8dea054cb8c0fdfbb6b876e088d932 SHA1: c1c6b1b30b0a2feb082412231fe4bef77dbb79d0 SHA256: 80f84c2173841c4215ad59d960de00bf4ef60684c65a8d9873c477a3fad82cbb Description: The GNU C++ compiler for arm64 architecture Description-md5: c170d59c5aa5c989fc7036dc7d932825 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-arm-linux-gnueabihf Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-armhf-cross (1.16) Version: 4:4.8.2-1 Depends: cpp-arm-linux-gnueabihf (>= 4:4.8.2-1), gcc-arm-linux-gnueabihf (>= 4:4.8.2-1), g++-4.8-multilib-arm-linux-gnueabihf (>= 4.8.2-1), gcc-4.8-multilib-arm-linux-gnueabihf (>= 4.8.2-1) Conflicts: g++-4.4-arm-linux-gnueabihf (<= 4.4.5-15~), g++-4.5-arm-linux-gnueabihf (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-armhf-cross/g++-arm-linux-gnueabihf_4.8.2-1_amd64.deb Size: 1058 MD5sum: aaa45d19b6d705540c8f293809d979ed SHA1: cfbef35e6c6c8a7417ed5b91e1b0b92985ffb331 SHA256: 00a51c8f388addd86b857b80b2f330343ea678f1e13b50187ae60d1e2cd14455 Description: The GNU C++ compiler for armhf architecture Description-md5: c8a07fa46539a050c506e4213fbe4719 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc-multilib (>= 4:4.8.2-1ubuntu6), g++ (>= 4:4.8.2-1ubuntu6), g++-4.8-multilib (>= 4.8.2-5~) Filename: pool/main/g/gcc-defaults/g++-multilib_4.8.2-1ubuntu6_amd64.deb Size: 930 MD5sum: 6ab544a950de82fdd78f1a0cf6dc7d37 SHA1: 83036d1306dc7806466d0c6e7ba59861d05e5f5f SHA256: 60b31d6ca921eacb26683e96840cf6e44d5b16bf9131af290b3a5ef4ce9ac858 Description: GNU C++ compiler (multilib files) Description-md5: 9df28aeef12fea2f44664b1d4c3bac30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-powerpc-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Architecture: amd64 Source: gcc-defaults-powerpc-cross (0.7) Version: 4:4.8.2-1 Depends: cpp-powerpc-linux-gnu (>= 4:4.8.2-1), gcc-powerpc-linux-gnu (>= 4:4.8.2-1), g++-4.8-multilib-powerpc-linux-gnu (>= 4.8.2-1), gcc-4.8-multilib-powerpc-linux-gnu (>= 4.8.2-1) Conflicts: g++-4.4-powerpc-linux-gnu (<= 4.4.5-15~), g++-4.5-powerpc-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-powerpc-cross/g++-powerpc-linux-gnu_4.8.2-1_amd64.deb Size: 1012 MD5sum: f4f7f35fee8e9104df19c38ab223e840 SHA1: 706254a2b9cb737046c43220a8aa92e69e5f22b9 SHA256: a3b0cb22ce09c8620bdfcf0661e03f4d542aad300f171df9bea3f815d3a4a1cc Description: The GNU C++ compiler for powerpc architecture Description-md5: 51becdb3258aa2f9a0fa67603dbc4407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-powerpc64le-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-ppc64el-cross (0.2) Version: 4:4.8.2-1 Depends: cpp-powerpc64le-linux-gnu (>= 4:4.8.2-1), gcc-powerpc64le-linux-gnu (>= 4:4.8.2-1), g++-4.8-powerpc64le-linux-gnu (>= 4.8.2-1), gcc-4.8-powerpc64le-linux-gnu (>= 4.8.2-1) Conflicts: g++-4.4-powerpc64le-linux-gnu (<= 4.4.5-15~), g++-4.5-powerpc64le-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-ppc64el-cross/g++-powerpc64le-linux-gnu_4.8.2-1_amd64.deb Size: 1060 MD5sum: ed9510b2cfedbea3c3fc44c5dc8117b4 SHA1: 9cf383bc6b71641bf5cd8062da2724fd7861eaa3 SHA256: 93d041a1399454b5859674e87b348417f22c28c618571769911d9cbd6991c22c Description: The GNU C++ compiler for ppc64el architecture Description-md5: 6c5f0d5dc319d0f980bdaff7ba6fe23e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gawk Priority: optional Section: interpreters Installed-Size: 1892 Maintainer: Ubuntu Developers Original-Maintainer: Arthur Loiret Architecture: amd64 Version: 1:4.0.1+dfsg-2.1ubuntu2 Provides: awk Pre-Depends: libc6 (>= 2.14), libreadline6 (>= 6.0), libsigsegv2 (>= 2.9) Suggests: gawk-doc Filename: pool/main/g/gawk/gawk_4.0.1+dfsg-2.1ubuntu2_amd64.deb Size: 781466 MD5sum: 799aeb4150f914136decbe942ef7de9a SHA1: 5db5d6718941d24344f657d0a9d9911b194c9b7b SHA256: 4b73b82f7dbc3d9b01b6e5ae63e63c1cc102cf6cf544db486d566aa9786c8a15 Description: GNU awk, a pattern scanning and processing language Multi-Arch: foreign Homepage: http://www.gnu.org/software/gawk/ Description-md5: 0dce81fe543994c3caea814e2777732e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-usb, cloud-image, server, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: gcc Priority: optional Section: devel Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Provides: c-compiler Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc-4.8 (>= 4.8.2-5~) Recommends: libc6-dev | libc-dev Suggests: gcc-multilib, make, manpages-dev, autoconf, automake1.9, libtool, flex, bison, gdb, gcc-doc Conflicts: gcc-doc (<< 1:2.95.3) Filename: pool/main/g/gcc-defaults/gcc_4.8.2-1ubuntu6_amd64.deb Size: 5098 MD5sum: 83b25d71df6df1c47a4b983596896f0b SHA1: 78d2b85296b8734341f566e791079289fd258011 SHA256: 347a0e747092e55d8c34805b39de3e432735e1485b923a2ed06ddac2ce41a277 Description: GNU C compiler Description-md5: c7efd71c7c651a9ac8b2adf36b137790 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gcc-4.7 Priority: optional Section: devel Installed-Size: 13727 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Version: 4.7.3-12ubuntu1 Provides: c-compiler Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), cpp-4.7 (= 4.7.3-12ubuntu1), binutils (>= 2.24), libgcc-4.7-dev (= 4.7.3-12ubuntu1), libc6 (>= 2.14), libcloog-ppl1, libgmp10, libmpc3, libmpfr4 (>= 3.1.2), libppl-c4, zlib1g (>= 1:1.1.4) Recommends: libc6-dev (>= 2.13-0ubuntu6) Suggests: gcc-4.7-multilib, libmudflap0-4.7-dev (>= 4.7.3-12ubuntu1), gcc-4.7-doc (>= 4.7.2-16), gcc-4.7-locales (>= 4.7.2-16), libgcc1-dbg (>= 1:4.7.3-12ubuntu1), libgomp1-dbg (>= 4.7.3-12ubuntu1), libitm1-dbg (>= 4.7.3-12ubuntu1), libquadmath0-dbg (>= 4.7.3-12ubuntu1), libmudflap0-dbg (>= 4.7.3-12ubuntu1), binutils-gold (>= 2.24) Filename: pool/main/g/gcc-4.7/gcc-4.7_4.7.3-12ubuntu1_amd64.deb Size: 4607032 MD5sum: 8761d7685c80e88e690f9376cadc88ce SHA1: 2ff298e38a1afcc58709cc20b866cfe1119a5c82 SHA256: edc593ffe73beb70d8c79549120eb209fb378ad9e5d407645ba9f341d556b542 Description: GNU C compiler Homepage: http://gcc.gnu.org/ Description-md5: 394374e688b1afb3af5f419895d29698 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.7-base Priority: optional Section: libs Installed-Size: 204 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Breaks: dehydra (<= 0.9.hg20110609-2), gcc-4.4-base (<< 4.4.7), gcj-4.4-base (<< 4.4.6-9~), gcj-4.6-base (<< 4.6.1-4~), gnat-4.4-base (<< 4.4.6-3~), gnat-4.6 (<< 4.6.1-5~) Filename: pool/main/g/gcc-4.7/gcc-4.7-base_4.7.3-12ubuntu1_amd64.deb Size: 13832 MD5sum: 811969162c507423fa0116523da62db4 SHA1: a389edf4dc6ae89172da935bea9b48182868e7e6 SHA256: 252870ffa1a1db1c9bfe4787e3e5a3542e61e9b54b5454e9e1dc05e7aff30348 Description: GCC, the GNU Compiler Collection (base package) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.7-doc Priority: optional Section: doc Installed-Size: 8396 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gcc (<= 2.7.2.3-4.3), gcc-docs (<< 2.95.2) Depends: gcc-4.7-base (>= 4.7.2-16), dpkg (>= 1.15.4) | install-info Conflicts: gcc-docs (<< 2.95.2) Filename: pool/main/g/gcc-4.7/gcc-4.7-doc_4.7.3-12ubuntu1_all.deb Size: 2035796 MD5sum: a97a50b2c93b16ccf708518b71eb7b8f SHA1: 76e42a85d38f8c6e98d6de7c2040e1af3c43eddb SHA256: fdb51d60fa6606aa4c67059c2ec45efa66b9ce30b99f8f93c0bd673722999b63 Description: Documentation for the GNU compilers (gcc, gobjc, g++) Homepage: http://gcc.gnu.org/ Description-md5: bf320d6d806b62ff03b567626d36b1fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.7-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), gcc-4.7 (= 4.7.3-12ubuntu1), libc6-dev-i386 (>= 2.11), libc6-dev-x32 (>= 2.11), lib32gcc-4.7-dev (= 4.7.3-12ubuntu1), libx32gcc-4.7-dev (= 4.7.3-12ubuntu1) Filename: pool/main/g/gcc-4.7/gcc-4.7-multilib_4.7.3-12ubuntu1_amd64.deb Size: 966 MD5sum: 2c0ab0d3fa251d83a2734ccc731e379f SHA1: 6351096d0de301106216c1283a61b116f8ba109c SHA256: 911b05cf861b736783f9829664d21cd5cff7eb0dee346dcae16327665c45dd57 Description: GNU C compiler (multilib files) Homepage: http://gcc.gnu.org/ Description-md5: f1f416f51fd3f11d562e86a79da6216a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.7-plugin-dev Priority: optional Section: devel Installed-Size: 5555 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), gcc-4.7 (= 4.7.3-12ubuntu1), libgmp-dev (>= 2:5.0.1~), libc6 (>= 2.14) Filename: pool/main/g/gcc-4.7/gcc-4.7-plugin-dev_4.7.3-12ubuntu1_amd64.deb Size: 704654 MD5sum: 15b9253ec75c805f895a0fd1e89c0c74 SHA1: dd8435bb8451eb7a526ed5e497d68c6c71b08d3e SHA256: 3e74a24cd7cca91aa7575ec53bceef470a15ec6cc0a785d5a2b7457e3233f67c Description: Files for GNU GCC plugin development. Homepage: http://gcc.gnu.org/ Description-md5: f04e3fe2e4b62ffb72f0dc5ae683f155 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8 Priority: optional Section: devel Installed-Size: 15290 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Version: 4.8.2-19ubuntu1 Provides: c-compiler Depends: cpp-4.8 (= 4.8.2-19ubuntu1), gcc-4.8-base (= 4.8.2-19ubuntu1), binutils (>= 2.24), libgcc-4.8-dev (= 4.8.2-19ubuntu1), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Recommends: libc6-dev (>= 2.13-0ubuntu6) Suggests: gcc-4.8-multilib, gcc-4.8-doc (>= 4.8), gcc-4.8-locales (>= 4.8), libgcc1-dbg (>= 1:4.8.2-19ubuntu1), libgomp1-dbg (>= 4.8.2-19ubuntu1), libitm1-dbg (>= 4.8.2-19ubuntu1), libatomic1-dbg (>= 4.8.2-19ubuntu1), libasan0-dbg (>= 4.8.2-19ubuntu1), libtsan0-dbg (>= 4.8.2-19ubuntu1), libbacktrace1-dbg (>= 4.8.2-19ubuntu1), libquadmath0-dbg (>= 4.8.2-19ubuntu1), binutils-gold (>= 2.24) Filename: pool/main/g/gcc-4.8/gcc-4.8_4.8.2-19ubuntu1_amd64.deb Size: 5012258 MD5sum: 8a94795493b6363680e6195406f6f0e2 SHA1: 57ba70691f215c9f3a92ddf206cfbe4f5fc97c2f SHA256: 22d41e16c0048f8edb5ca6125b344523a0b1d3687753f510ae57baa649f81793 Description: GNU C compiler Homepage: http://gcc.gnu.org/ Description-md5: 394374e688b1afb3af5f419895d29698 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gcc-4.8-aarch64-linux-gnu Priority: extra Section: devel Installed-Size: 12834 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Provides: c-compiler-aarch64-linux-gnu Depends: cpp-4.8-aarch64-linux-gnu (= 4.8.2-13ubuntu1cross0.11), binutils-aarch64-linux-gnu (>= 2.22), libgcc-4.8-dev-arm64-cross (= 4.8.2-13ubuntu1cross0.11), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Recommends: libc6-dev-arm64-cross (>= 2.13-0ubuntu6) Suggests: gcc-4.8-doc (>= 4.8), gcc-4.8-locales (>= 4.8), libgcc1-dbg-arm64-cross (>= 1:4.8.2-13ubuntu1cross0.11), libgomp1-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libitm1-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libatomic1-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libasan0-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libtsan0-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libbacktrace1-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libquadmath-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11) Conflicts: gcc-multilib Filename: pool/main/g/gcc-4.8-arm64-cross/gcc-4.8-aarch64-linux-gnu_4.8.2-13ubuntu1cross0.11_amd64.deb Size: 4296330 MD5sum: b08b76a032409064a33868f4be07ee23 SHA1: a9171ee5a57e55b5c2730d9d9da95909effc8ce5 SHA256: 17bae1e8fc6d26a0bcb3376722b5d8a9cf144602f4dd2769dd739fb023266371 Description: GNU C compiler Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 828abc0c548c8d3a65e71359bac1dfd7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-aarch64-linux-gnu-base Priority: extra Section: devel Installed-Size: 211 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Filename: pool/main/g/gcc-4.8-arm64-cross/gcc-4.8-aarch64-linux-gnu-base_4.8.2-13ubuntu1cross0.11_amd64.deb Size: 14518 MD5sum: 4d7c6175a4bb8fc3559fbd409eb104a0 SHA1: b241cc54b5d12a9bc53788f5d52216e614da9cb8 SHA256: f3d65b18dfa946002ab2e71de6f32c736773115ff8112013d51b8c030379bb06 Description: GCC, the GNU Compiler Collection (base package) Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 15320 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Provides: c-compiler-arm-linux-gnueabihf Depends: cpp-4.8-arm-linux-gnueabihf (= 4.8.2-16ubuntu4cross0.11), binutils-arm-linux-gnueabihf (>= 2.22), libgcc-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Recommends: libc6-dev-armhf-cross (>= 2.13-0ubuntu6) Suggests: gcc-4.8-multilib-arm-linux-gnueabihf, gcc-4.8-doc (>= 4.8), gcc-4.8-locales (>= 4.8), libgcc1-dbg-armhf-cross (>= 1:4.8.2-16ubuntu4cross0.11), libgomp1-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libitm1-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libatomic1-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libasan0-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libtsan0-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libbacktrace1-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libquadmath-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), binutils-gold (>= 2.22) Conflicts: gcc-multilib Filename: pool/main/g/gcc-4.8-armhf-cross/gcc-4.8-arm-linux-gnueabihf_4.8.2-16ubuntu4cross0.11_amd64.deb Size: 5071298 MD5sum: 6321b4f2e7dc77c2360326e422abfecb SHA1: 51b67e189555e0848d2169f964f1db9f641e544c SHA256: b49fb3a7c4efb6c1baa365cff45f0732823b170fd22a3fbba187b8c68d33df93 Description: GNU C compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: a8c6e1ef7e1b049137f2e6519bdc7073 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-arm-linux-gnueabihf-base Priority: extra Section: devel Installed-Size: 211 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Filename: pool/main/g/gcc-4.8-armhf-cross/gcc-4.8-arm-linux-gnueabihf-base_4.8.2-16ubuntu4cross0.11_amd64.deb Size: 14818 MD5sum: 44038e3315f9f6cce1a93837d1fbe501 SHA1: 67f7d9d84bd96bb60a387d8b8f0930d5dba614b5 SHA256: 51887d2b2785d14bfd56d5f29c0ee0cd5837cb926e6410159edf88dfd306511b Description: GCC, the GNU Compiler Collection (base package) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-base Priority: important Section: libs Installed-Size: 212 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Breaks: dehydra (<= 0.9.hg20110609-2), gcc-4.4-base (<< 4.4.7), gcc-4.7-base (<< 4.7.3), gcj-4.4-base (<< 4.4.6-9~), gcj-4.6-base (<< 4.6.1-4~), gnat-4.4-base (<< 4.4.6-3~), gnat-4.6 (<< 4.6.1-5~) Filename: pool/main/g/gcc-4.8/gcc-4.8-base_4.8.2-19ubuntu1_amd64.deb Size: 15430 MD5sum: fd8d7bb19630d18aa6b70b16e19aca56 SHA1: c0cce7dd6e367a53129a298b8b97bee6685a2dc3 SHA256: e57a05b17ee2e6420e3e507d3bf2c0ab67d6196cbb31c52ec6aa5c6a0db805d5 Description: GCC, the GNU Compiler Collection (base package) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: gcc-4.8-doc Priority: optional Section: doc Installed-Size: 8589 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcc (<= 2.7.2.3-4.3), gcc-docs (<< 2.95.2) Depends: gcc-4.8-base (>= 4.8), dpkg (>= 1.15.4) | install-info Conflicts: gcc-docs (<< 2.95.2) Filename: pool/main/g/gcc-4.8/gcc-4.8-doc_4.8.2-19ubuntu1_all.deb Size: 2080568 MD5sum: dce161f5b20ed462328baf0ca7e3344d SHA1: f0f964ad98a55ce0f395c3bb3ab2c8ba465b613f SHA256: dddbba1da23b1bb11a6ad8b373df7fc2c331fb4a5dae8e8a60e2df12dd83a394 Description: Documentation for the GNU compilers (gcc, gobjc, g++) Homepage: http://gcc.gnu.org/ Description-md5: bf320d6d806b62ff03b567626d36b1fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (= 4.8.2-19ubuntu1), libc6-dev-i386 (>= 2.11), libc6-dev-x32 (>= 2.11), lib32gcc-4.8-dev (= 4.8.2-19ubuntu1), libx32gcc-4.8-dev (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/gcc-4.8-multilib_4.8.2-19ubuntu1_amd64.deb Size: 968 MD5sum: 0099a61a833cc291cbe4870367273c3f SHA1: cdb4c9be31926b15a32a8bad7ad384f0e1df4dbe SHA256: 27b14b9b5081d38debd640b21d3795547764f6f2d9d0919a1d571ec99127c90f Description: GNU C compiler (multilib files) Homepage: http://gcc.gnu.org/ Description-md5: f1f416f51fd3f11d562e86a79da6216a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcc-4.8-multilib-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), gcc-4.8-arm-linux-gnueabihf (= 4.8.2-16ubuntu4cross0.11), libc6-dev-armel-armhf-cross (>= 2.11) | libc6-dev-armel-armhf-cross, libsfgcc-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11) | libsfgcc-4.8-dev-armhf-cross Filename: pool/main/g/gcc-4.8-armhf-cross/gcc-4.8-multilib-arm-linux-gnueabihf_4.8.2-16ubuntu4cross0.11_amd64.deb Size: 1066 MD5sum: 5b355c1ad8db3f3d5049fa3ca11436a5 SHA1: 685ca10f1ea3a6035bcbfcf097fbfa8616ad6349 SHA256: 9bae209144f13c35ed93dca0ed8b62c9b26f396e8f7c63fa7497a5f824c094c1 Description: GNU C compiler (multilib files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: f1f416f51fd3f11d562e86a79da6216a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-multilib-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), gcc-4.8-powerpc-linux-gnu (= 4.8.2-16ubuntu3cross0.11), libc6-dev-ppc64-powerpc-cross (>= 2.11), lib64gcc-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11) Filename: pool/main/g/gcc-4.8-powerpc-cross/gcc-4.8-multilib-powerpc-linux-gnu_4.8.2-16ubuntu3cross0.11_amd64.deb Size: 1052 MD5sum: 51f3b5209239c86308c6ed02d391f411 SHA1: b4d94dcf059e4df643ddcf8b1481e2288fc342e6 SHA256: fe97881e645a3da861461b37798753910598e8800dbee769296c8b65bfa88772 Description: GNU C compiler (multilib files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: f1f416f51fd3f11d562e86a79da6216a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-plugin-dev Priority: optional Section: devel Installed-Size: 4988 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (= 4.8.2-19ubuntu1), libgmp-dev (>= 2:5.0.1~), libc6 (>= 2.14) Filename: pool/main/g/gcc-4.8/gcc-4.8-plugin-dev_4.8.2-19ubuntu1_amd64.deb Size: 681336 MD5sum: 18042c4d74188e6b44a10831a6a4c268 SHA1: 23ec2542e0cbcd1622afe6641922d7eea89e0965 SHA256: 70b1b0688a262f99c0704f1a8a3a7591e70ebbfe7411200eef21c9e6feb35f7d Description: Files for GNU GCC plugin development. Homepage: http://gcc.gnu.org/ Description-md5: f04e3fe2e4b62ffb72f0dc5ae683f155 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 15782 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Provides: c-compiler-powerpc-linux-gnu Depends: cpp-4.8-powerpc-linux-gnu (= 4.8.2-16ubuntu3cross0.11), binutils-powerpc-linux-gnu (>= 2.22), libgcc-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Recommends: libc6-dev-powerpc-cross (>= 2.13-0ubuntu6) Suggests: gcc-4.8-multilib-powerpc-linux-gnu, gcc-4.8-doc (>= 4.8), gcc-4.8-locales (>= 4.8), libgcc1-dbg-powerpc-cross (>= 1:4.8.2-16ubuntu3cross0.11), libgomp1-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libitm1-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libatomic1-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libasan0-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libtsan0-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libbacktrace1-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libquadmath-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), binutils-gold (>= 2.22) Conflicts: gcc-multilib Filename: pool/main/g/gcc-4.8-powerpc-cross/gcc-4.8-powerpc-linux-gnu_4.8.2-16ubuntu3cross0.11_amd64.deb Size: 4844916 MD5sum: a001d2ea115e0c3ab9c961a288573e51 SHA1: 22a91ea84e7fa1321cc49a342698dff81c6a7e36 SHA256: f4090ff11f538c75b178b3adb0100aa04f7803daf223f329aa332ebec95ae985 Description: GNU C compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 33e193e34c96ee2f0388ed9d3fe40d3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-powerpc-linux-gnu-base Priority: extra Section: devel Installed-Size: 211 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Filename: pool/main/g/gcc-4.8-powerpc-cross/gcc-4.8-powerpc-linux-gnu-base_4.8.2-16ubuntu3cross0.11_amd64.deb Size: 14560 MD5sum: 9169d3ab56f8102b44fc86f3251c769c SHA1: 775096629bc9cacdd968c41d4fe7344b435e2985 SHA256: 614256f0dc8808aa01387e27d4ed79dda3ba2faec20e991900a880ef975a58bb Description: GCC, the GNU Compiler Collection (base package) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-powerpc64le-linux-gnu Priority: extra Section: devel Installed-Size: 15800 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Provides: c-compiler-powerpc64le-linux-gnu Depends: cpp-4.8-powerpc64le-linux-gnu (= 4.8.2-16ubuntu4cross0.4), binutils-powerpc64le-linux-gnu (>= 2.22), libgcc-4.8-dev-ppc64el-cross (= 4.8.2-16ubuntu4cross0.4), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Recommends: libc6-dev-ppc64el-cross (>= 2.13-0ubuntu6) Suggests: gcc-4.8-doc (>= 4.8), gcc-4.8-locales (>= 4.8), libgcc1-dbg-ppc64el-cross (>= 1:4.8.2-16ubuntu4cross0.4), libgomp1-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libitm1-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libatomic1-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libasan0-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libtsan0-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libbacktrace1-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libquadmath-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4) Conflicts: gcc-multilib Filename: pool/main/g/gcc-4.8-ppc64el-cross/gcc-4.8-powerpc64le-linux-gnu_4.8.2-16ubuntu4cross0.4_amd64.deb Size: 4858990 MD5sum: 3e619c248c72f57576f884ef2863d8de SHA1: d70b2b59922a42ca4cf92ee4b2409087d203d360 SHA256: 509fdafaf17d3518a7d96f76fbe32e7b7d5114a85432f5577ab18d1f2f2512fd Description: GNU C compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: b0d3628b0ae68d51d3d28e1503c35c1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-powerpc64le-linux-gnu-base Priority: extra Section: devel Installed-Size: 211 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Filename: pool/main/g/gcc-4.8-ppc64el-cross/gcc-4.8-powerpc64le-linux-gnu-base_4.8.2-16ubuntu4cross0.4_amd64.deb Size: 14210 MD5sum: 7a66e53598664e550f789c7baf4a0099 SHA1: 55b6c15369ac6e1b57c710dfff7a0555abe7a4b0 SHA256: f3e9f812a9668a9a8b7a2972505ba4ccab204ee99177ce1bc49ccbc39b6fd347 Description: GCC, the GNU Compiler Collection (base package) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-source Priority: optional Section: devel Installed-Size: 81362 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: make (>= 3.81), autoconf2.64, quilt, patchutils, gawk Filename: pool/main/g/gcc-4.8/gcc-4.8-source_4.8.2-19ubuntu1_all.deb Size: 68187040 MD5sum: ad8bd080e3640adda7f1978dee2fcbc2 SHA1: 47692788a405f5d756cd620040443b50dcf14fb9 SHA256: e54639c1df674b9df6b0a087d0fe752c4b161b3563721bc8699f291ef74904d2 Description: Source of the GNU Compiler Collection Homepage: http://gcc.gnu.org/ Description-md5: cb00049993a8c14b73bb041c050eb8c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.9-base Priority: required Section: libs Installed-Size: 211 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Breaks: dehydra (<= 0.9.hg20110609-2), gcc-4.4-base (<< 4.4.7), gcj-4.4-base (<< 4.4.6-9~), gcj-4.6-base (<< 4.6.1-4~), gnat-4.4-base (<< 4.4.6-3~), gnat-4.6 (<< 4.6.1-5~) Filename: pool/main/g/gccgo-4.9/gcc-4.9-base_4.9-20140406-0ubuntu1_amd64.deb Size: 13856 MD5sum: b9cad36e6a34f80d2365969c01e7640c SHA1: a314a2731d5f86d9af9d5909832f11167fa35b8d SHA256: eba0134ac01499b1f13a74a2eeffac10227ad15e2a4c3bd535903c8802ab26b5 Description: GCC, the GNU Compiler Collection (base package) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: gcc-aarch64-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-arm64-cross (0.4) Version: 4:4.8.2-1 Depends: cpp-aarch64-linux-gnu (>= 4:4.8.2-1), gcc-4.8-aarch64-linux-gnu (>= 4.8.2-1) Recommends: libc6-dev-arm64-cross | libc-dev-arm64-cross Suggests: make, manpages-dev, autoconf, automake1.9, libtool, flex, bison, gdb-aarch64-linux-gnu, gcc-doc Conflicts: gcc-4.4-aarch64-linux-gnu (<= 4.4.5-15~), gcc-4.5-aarch64-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-arm64-cross/gcc-aarch64-linux-gnu_4.8.2-1_amd64.deb Size: 1138 MD5sum: 3e6ab77fc9891b2f5ea9abb6269da953 SHA1: b4e6fcd977f23081e7a0ac9dcb51139ee4c9344a SHA256: a7677020213d0861265ab2fa0ec47569c0f82e00a979748d9b264c3be822e4b6 Description: The GNU C compiler for arm64 architecture Description-md5: 6840011a0c7c054951d46dc0508a69d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-arm-linux-gnueabihf Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-armhf-cross (1.16) Version: 4:4.8.2-1 Depends: cpp-arm-linux-gnueabihf (>= 4:4.8.2-1), gcc-4.8-multilib-arm-linux-gnueabihf (>= 4.8.2-1) Recommends: libc6-dev-armhf-cross | libc-dev-armhf-cross Suggests: make, manpages-dev, autoconf, automake1.9, libtool, flex, bison, gdb-arm-linux-gnueabihf, gcc-doc Conflicts: gcc-4.4-arm-linux-gnueabihf (<= 4.4.5-15~), gcc-4.5-arm-linux-gnueabihf (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-armhf-cross/gcc-arm-linux-gnueabihf_4.8.2-1_amd64.deb Size: 1150 MD5sum: 612d900163d73a2128978f05a2988cab SHA1: 52e29832e68ec6c4845099f9dcb6c5a84ecc30ef SHA256: b94ac0b6519f4c85e65420aba5dc1b473853007a1fe64d17d6b3cb9d84461095 Description: The GNU C compiler for armhf architecture Description-md5: 43964bcc6fc47c7ce1993cc9c56f31e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-doc Priority: optional Section: doc Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: gcc-4.8-doc (>= 4.8.2-5~) Suggests: gcc (>= 4:4.8.2-1ubuntu6) Filename: pool/main/g/gcc-defaults/gcc-doc_4.8.2-1ubuntu6_amd64.deb Size: 3530 MD5sum: 329e5e3dcbe2de9c9f51e537403a35ce SHA1: ce36911bc32bd86f0c4909e7f5a78063ae92a8a8 SHA256: a05b2c998f093e5a6b43c90bbf88ff3dc2fc40daebca4baa73262c9f34b6d751 Description: Documentation for the GNU C compilers (gcc, gobjc, g++) Description-md5: af77f0c56a32a74fc629f4cd7c91d2da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-multilib Priority: optional Section: devel Installed-Size: 25 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Replaces: gcc (<< 4.6.1-2ubuntu5) Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc (>= 4:4.8.2-1ubuntu6), gcc-4.8-multilib (>= 4.8.2-5~), linux-libc-dev (>= 3.0.0-2) Pre-Depends: linux-libc-dev (>= 2.6.38-8.42) Filename: pool/main/g/gcc-defaults/gcc-multilib_4.8.2-1ubuntu6_amd64.deb Size: 1024 MD5sum: 3f8e7f2841babdf0f3fbcfb8e84e00cd SHA1: 8784e8b4bda5096f4a1eae4838bacf34b3336f25 SHA256: 340e637128b291f66884910529e2549aaefc0b63a3cfdc97d3c4cd52cf8ff7cb Description: GNU C compiler (multilib files) Description-md5: a92261e9624fa45dc5948edfd86a1054 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcc-powerpc-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Architecture: amd64 Source: gcc-defaults-powerpc-cross (0.7) Version: 4:4.8.2-1 Depends: cpp-powerpc-linux-gnu (>= 4:4.8.2-1), gcc-4.8-multilib-powerpc-linux-gnu (>= 4.8.2-1) Recommends: libc6-dev-powerpc-cross | libc-dev-powerpc-cross Suggests: make, manpages-dev, autoconf, automake1.9, libtool, flex, bison, gdb-powerpc-linux-gnu, gcc-doc Conflicts: gcc-4.4-powerpc-linux-gnu (<= 4.4.5-15~), gcc-4.5-powerpc-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-powerpc-cross/gcc-powerpc-linux-gnu_4.8.2-1_amd64.deb Size: 1106 MD5sum: 952bef7e94e08e09c8899be1e64617cc SHA1: 206f6e51ff132e4f604b5891dfe506f9b05c2667 SHA256: 8384b2742461a15bffe99b446a218beaa036d052e42a791f37694e7022769907 Description: The GNU C compiler for powerpc architecture Description-md5: 2837b485f272cda25e5f5c89c6993b5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-powerpc64le-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-ppc64el-cross (0.2) Version: 4:4.8.2-1 Depends: cpp-powerpc64le-linux-gnu (>= 4:4.8.2-1), gcc-4.8-powerpc64le-linux-gnu (>= 4.8.2-1) Recommends: libc6-dev-ppc64el-cross | libc-dev-ppc64el-cross Suggests: make, manpages-dev, autoconf, automake1.9, libtool, flex, bison, gdb-powerpc64le-linux-gnu, gcc-doc Conflicts: gcc-4.4-powerpc64le-linux-gnu (<= 4.4.5-15~), gcc-4.5-powerpc64le-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-ppc64el-cross/gcc-powerpc64le-linux-gnu_4.8.2-1_amd64.deb Size: 1154 MD5sum: dccf98c49fcc9aac9fa5f0c9c9e6b46d SHA1: 7815a683498f96bcad77bfeaafb4b8d04081f1f3 SHA256: 88d7446442b4cecea2697dd4c1b60c9b614d768db2c53a2dd82d5bf60a0350a5 Description: The GNU C compiler for ppc64el architecture Description-md5: 7837db33d0ba4cb36938328d9c887d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gccgo-4.7-doc Priority: optional Section: doc Installed-Size: 147 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (>= 4.7.2-16), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.7/gccgo-4.7-doc_4.7.3-12ubuntu1_all.deb Size: 48666 MD5sum: 397dbbf3ca7e1377fa3f9c7496ba0b82 SHA1: 8ce707e59dfc141bf8a23d55693b87d47bd49819 SHA256: 07e1726c6eff41cc5aab91270aa315661fad874818c1a6a59b1138c76be79d4f Description: Documentation for the GNU Go compiler (gccgo) Homepage: http://gcc.gnu.org/ Description-md5: 76326180b2469131aa9547f46e5b3105 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gccgo-4.8-doc Priority: optional Section: doc Installed-Size: 147 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.8/gccgo-4.8-doc_4.8.2-19ubuntu1_all.deb Size: 48692 MD5sum: 55495bd2e668272461f57f383f40ef25 SHA1: 8ac43e223940ba04a1314adc134a44f28ea52cc0 SHA256: 88546b368678f298459b7c2bfeb2a74541a9806673e4dc618aa94e2bcea50ea2 Description: Documentation for the GNU Go compiler (gccgo) Homepage: http://gcc.gnu.org/ Description-md5: 76326180b2469131aa9547f46e5b3105 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gccgo-4.9-doc Priority: optional Section: doc Installed-Size: 147 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (>= 4.9), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gccgo-4.9/gccgo-4.9-doc_4.9-20140406-0ubuntu1_all.deb Size: 48746 MD5sum: 6102ac9ff08d89db8a1901ee40ad1ff7 SHA1: a456df64356a14a208312253bbc4ded4a0c5fc3a SHA256: aeea3d3379569d2b0555249b8d6aac244936a6e182a36eb16914360c0f549a33 Description: Documentation for the GNU Go compiler (gccgo) Homepage: http://gcc.gnu.org/ Description-md5: 76326180b2469131aa9547f46e5b3105 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcj-4.8 Priority: optional Section: java Installed-Size: 13758 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcj-4.8-jdk (<< 4.8.1-4), libgcj11 (<< 4.5-20100101-1) Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (>= 4.8), libc6-dev (>= 2.13-0ubuntu6), ecj-gcj, libecj-java-gcj (>= 3.5.1), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4), dpkg (>= 1.15.4) | install-info Conflicts: cpp-4.1 (<< 4.1.1), gcc-4.1 (<< 4.1.1), gcj-4.4 Filename: pool/main/g/gcc-4.8/gcj-4.8_4.8.2-19ubuntu1_amd64.deb Size: 4254512 MD5sum: 53d65ba54d2bbbf21685fc525c25b59d SHA1: 046a94ccd8cf5f28c499cf4b6960dff048627efa SHA256: aba58b1acc1de1858d533ef4b193fb447fa99469b43f1629824b6ae80dd7cc0a Description: GCJ byte code and native compiler for Java(TM) Homepage: http://gcc.gnu.org/ Description-md5: 8753e734cc2a7f934f8620bd89d6afe5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcj-4.8-jdk Priority: optional Section: java Installed-Size: 1139 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: libgcj11 (<< 4.5-20100101-1) Provides: java-compiler, java-sdk, java2-sdk, java5-sdk Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (>= 4.8), libc6-dev (>= 2.13-0ubuntu6), gcj-4.8 (= 4.8.2-19ubuntu1), gcj-4.8-jre (= 4.8.2-19ubuntu1), libgcj14-dev (= 4.8.2-19ubuntu1), fastjar, libgcj-bc, java-common, libantlr-java, libc6 (>= 2.14), libgcj14 (>= 4.8), zlib1g (>= 1:1.1.4), dpkg (>= 1.15.4) | install-info Recommends: libecj-java-gcj Suggests: gcj-4.8-source (>= 4.8), libgcj14-dbg (>= 4.8.2-19ubuntu1) Conflicts: cpp-4.1 (<< 4.1.1), gcc-4.1 (<< 4.1.1), gcj-4.4 Filename: pool/main/g/gcc-4.8/gcj-4.8-jdk_4.8.2-19ubuntu1_amd64.deb Size: 535742 MD5sum: c8de18c05463d22b921794fa4fefb364 SHA1: c9f98ec079c347ad8955a1861613eddb5bded044 SHA256: 38c46ad1e9d8703c4c114e53ac342c2dea5f6fd0e71767d26b6f2a3d6c514d0a Description: GCJ and Classpath development tools for Java(TM) Homepage: http://gcc.gnu.org/ Description-md5: 4dd080bc432002fe5f9359aef3f3f988 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcj-4.8-jre Priority: optional Section: java Installed-Size: 49 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcj-4.8-jre-headless (<< 4.8.2-2) Provides: java-runtime, java1-runtime, java2-runtime, java5-runtime Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcj-4.8-jre-headless (= 4.8.2-19ubuntu1), libgcj14-awt (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/gcj-4.8-jre_4.8.2-19ubuntu1_amd64.deb Size: 1272 MD5sum: 02a49c13f1342eb67662fc705b42b581 SHA1: 19846dc812d21fb87d7e4bf495e2bce970cda1b6 SHA256: 63405f245c5e8ff73e389cd64e35bde6a5036242ae02af0a3dc47b54afd48be1 Description: Java runtime environment using GIJ/Classpath Homepage: http://gcc.gnu.org/ Description-md5: 33bb6e364710093f6308dbe21c570d27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcj-4.8-jre-headless Priority: optional Section: java Installed-Size: 288 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcj-4.8-jre-lib (<< 4.8-20121219-0) Provides: java-runtime-headless, java1-runtime-headless, java2-runtime-headless, java5-runtime-headless Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcj-4.8-jre-lib (>= 4.8), libgcj14 (= 4.8.2-19ubuntu1), libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1) Suggests: fastjar, gcj-4.8-jdk (= 4.8.2-19ubuntu1), libgcj14-awt (= 4.8.2-19ubuntu1) Conflicts: gij-4.4, java-gcj-compat (<< 1.0.76-4) Filename: pool/main/g/gcc-4.8/gcj-4.8-jre-headless_4.8.2-19ubuntu1_amd64.deb Size: 56540 MD5sum: 866e0c4bc7fb68552d12abeae871fdd5 SHA1: 531f701baa611111bf787c62b533d9107605e1de SHA256: 2f9233d65384802df919b1afda09737607acfaf048958bdadfc64ea27e88f567 Description: Java runtime environment using GIJ/Classpath (headless version) Homepage: http://gcc.gnu.org/ Description-md5: b8134c13a4a7d7c52148d94bce341fa5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcj-4.8-jre-lib Priority: optional Section: java Installed-Size: 11193 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), libgcj14 (>= 4.8) Filename: pool/main/g/gcc-4.8/gcj-4.8-jre-lib_4.8.2-19ubuntu1_all.deb Size: 10350538 MD5sum: e0dac1e287fb14cc0a4e2a9c46f1ddde SHA1: 938f6839dac52c47734ea9b04572b3e95158e9ed SHA256: ae5163402a0475f79ed2eb99364332ed2a3ebe2da17d133a9fdce755c5bcf723 Description: Java runtime library for use with gcj (jar files) Homepage: http://gcc.gnu.org/ Description-md5: c6c8d4fc017cdac424e562b583372f96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcj-4.8-source Priority: optional Section: java Installed-Size: 12667 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), gcj-4.8-jdk (>= 4.8) Filename: pool/main/g/gcc-4.8/gcj-4.8-source_4.8.2-19ubuntu1_all.deb Size: 11661762 MD5sum: 6cba06d51b72a640630c386f7d823f3a SHA1: 9ac79248f4f2a398732bb29693c237cab876f119 SHA256: 677e1be4cafcc6f45b1dfc09886dfa620441401369be8497bbb0f3b984c82c2b Description: GCJ java sources for use in IDEs like eclipse and netbeans Homepage: http://gcc.gnu.org/ Description-md5: 4c55da0bb9881014d9bba36bde1b8806 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcj-jdk Priority: optional Section: java Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Replaces: gjdoc, java-gcj-compat-dev (<< 1.0.80-2) Provides: gjdoc, java-compiler, java-gcj-compat-dev, java-sdk, java2-sdk, java5-sdk Depends: libgcj-common (>= 1:4.8.2-1ubuntu6), gcj-jre (>= 4:4.8.2-1ubuntu6), gcj-4.8-jdk (>= 4.8.2-5~) Conflicts: classpath-common (<= 2:0.97.2-1.1), gcj (<< 4:4.4.0-2), gjdoc, java-gcj-compat-dev (<< 1.0.80-2) Filename: pool/main/g/gcc-defaults/gcj-jdk_4.8.2-1ubuntu6_amd64.deb Size: 6148 MD5sum: 4f49d772f2b510740356b8ece3024abe SHA1: 5555df0734e6e2f1e797ac46399d59154fe9ad65 SHA256: 8f0b6d64b85660943d1a6fb544f49f8da1ce19bdd01e665db3ac5ff9552a4eaf Description: gcj and Classpath development tools for Java(TM) Description-md5: 851163a88ca4f075c45ce19de1ec3bd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcj-jre Priority: optional Section: java Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Provides: java-gcj-compat, java-runtime, java1-runtime, java2-runtime, java5-runtime Depends: libgcj-common (>= 1:4.8.2-1ubuntu6), gcj-jre-headless (>= 4:4.8.2-1ubuntu6), gcj-4.8-jre (>= 4.8.2-5~) Filename: pool/main/g/gcc-defaults/gcj-jre_4.8.2-1ubuntu6_amd64.deb Size: 1116 MD5sum: 92e56ede3e7a4cbd7efcd314f04983dd SHA1: 90fd6e45e18fdeb91d77d5b01ff974eb6e9a41c3 SHA256: fda9aeee3babd91c236a52ea7d1dcdc76cbadd49a2769b9da8d1669b1e9621fa Description: Java runtime environment using GIJ/Classpath Description-md5: 33bb6e364710093f6308dbe21c570d27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcj-jre-headless Priority: optional Section: java Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Replaces: java-gcj-compat-headless (<< 1.0.80-6) Provides: java-gcj-compat-headless, java-runtime-headless, java-virtual-machine, java1-runtime-headless, java2-runtime-headless, java5-runtime-headless Depends: libgcj-common (>= 1:4.8.2-1ubuntu6), gcj-4.8-jre-headless (>= 4.8.2-5~) Suggests: gcj-jdk Conflicts: gij (<< 4:4.4.0-2), java-gcj-compat-headless (<< 1.0.80-6) Filename: pool/main/g/gcc-defaults/gcj-jre-headless_4.8.2-1ubuntu6_amd64.deb Size: 1550 MD5sum: c04513208d92d621f3aadde1c2157e0b SHA1: 8170ce37539624843fc8af9b98e9262084706f14 SHA256: 0c92aa71403da6631df069279cb61dbd6c74d1e4b7a38d71cadd78e46d6545fd Description: Java runtime environment using GIJ/Classpath (headless version) Description-md5: b8134c13a4a7d7c52148d94bce341fa5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcj-native-helper Priority: optional Section: java Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: amd64 Source: java-common (0.51) Version: 2:1.7-51 Replaces: default-jdk-builddep Provides: default-jdk-builddep Depends: default-jdk (= 2:1.7-51), gcj-jdk Conflicts: default-jdk-builddep Filename: pool/main/j/java-common/gcj-native-helper_1.7-51_amd64.deb Size: 1078 MD5sum: 72e06e8d769879d9a7042377b3a4a571 SHA1: 6a5c97932a49f7aa16a7ca88a8a6b55e3457b37e SHA256: e7a4e9c05d912b6ee091b650fc2fce7859d9abc85e1e28bdba243a54412b7c41 Description: Standard helper tools for creating gcj native packages Description-md5: 10c11f7828c6f1fceeb2a126d9c6ac58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gconf-service Priority: optional Section: libs Installed-Size: 377 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gconf Version: 3.2.6-0ubuntu2 Depends: gconf-service-backend (= 3.2.6-0ubuntu2) Filename: pool/main/g/gconf/gconf-service_3.2.6-0ubuntu2_amd64.deb Size: 2046 MD5sum: 27b968a720dea097d87a03659b3d7638 SHA1: 4db402e852b1b3c74004159620260821687251a2 SHA256: 74ca356bce7b2c5eea0b3a11cf4fa8a4a2c2b3955b0e6584ee6ae5464b2c67c9 Description: GNOME configuration database system (D-Bus service) Multi-Arch: foreign Homepage: http://projects.gnome.org/gconf/ Description-md5: 14dd873ae96b0afab2fa365fb38aa07d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gconf-service-backend Priority: optional Section: libs Installed-Size: 578 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gconf Version: 3.2.6-0ubuntu2 Replaces: gconf-service (<< 3.2.5-0ubuntu2), gconf2-common (<< 3.2.3-2) Depends: gconf-service, libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libgconf-2-4 (= 3.2.6-0ubuntu2), libglib2.0-0 (>= 2.25.9), libldap-2.4-2 (>= 2.4.7), libxml2 (>= 2.7.4), gconf2-common (= 3.2.6-0ubuntu2) Breaks: gconf2-common (<< 3.2.3-2) Filename: pool/main/g/gconf/gconf-service-backend_3.2.6-0ubuntu2_amd64.deb Size: 56338 MD5sum: 26ac312e1084961db7db5dc70eb7f717 SHA1: 7c2e268d915be266725b296262f120c32a34c15f SHA256: 76f492606fad476e188f42112498937b6b1d210ee19178c8d1be042f0d3b603d Description: GNOME configuration database system (D-Bus service) Homepage: http://projects.gnome.org/gconf/ Description-md5: bed955216fb5fa381f3812c7de667c52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gconf2 Priority: optional Section: libs Installed-Size: 608 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gconf Version: 3.2.6-0ubuntu2 Depends: gconf-service, libc6 (>= 2.14), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.31.8), libxml2 (>= 2.7.4), gconf-service-backend (= 3.2.6-0ubuntu2), psmisc, dbus-x11, python:any Suggests: gconf-defaults-service Filename: pool/main/g/gconf/gconf2_3.2.6-0ubuntu2_amd64.deb Size: 65470 MD5sum: 68b445e3f790f73310d72f1742255299 SHA1: d5e5aa5e25f696bd9bb45f6324bd325579330133 SHA256: e94482b24ee71bcb88963b110c044f4b44b1a6288abc613178638329ca0d822d Description: GNOME configuration database system (support tools) Multi-Arch: foreign Homepage: http://projects.gnome.org/gconf/ Description-md5: c44e6944a0e1021dcd2391ea71d64fb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gconf2-common Priority: optional Section: libs Installed-Size: 516 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: gconf Version: 3.2.6-0ubuntu2 Depends: ucf Breaks: libgconf2-4 (<< 3.2.3-2) Filename: pool/main/g/gconf/gconf2-common_3.2.6-0ubuntu2_all.deb Size: 20230 MD5sum: e6938b668c59737d159f8feefb310a1f SHA1: ccdd4b6052b7e2dfa0bf5fe4182d5e4c9832b97b SHA256: 70be19c0c5692ed4c75916265942c4e2eed22d01dea07fe1b95adfb9116cbc5f Description: GNOME configuration database system (common files) Multi-Arch: foreign Homepage: http://projects.gnome.org/gconf/ Description-md5: 7942b10b6a0626fe9c4f3821d2fc5d2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gcr Priority: optional Section: gnome Installed-Size: 484 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Version: 3.10.1-1 Replaces: gnome-keyring (<< 3.3) Depends: dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.4), libgcr-base-3-1 (>= 3.8.0), libgcr-ui-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.32.0), libgtk-3-0 (>= 3.0.0), dbus-x11 Breaks: gnome-keyring (<< 3.3) Filename: pool/main/g/gcr/gcr_3.10.1-1_amd64.deb Size: 48294 MD5sum: edb92c7f04fb845de2b4e42753f3e61e SHA1: 02c557d361a5eb8e4bdc437f7a1989eea47b7f87 SHA256: 7cf626f8e0feb35651534999509afb9301d99db2d9ac887842619f7eb1ac5b60 Description: GNOME crypto services (daemon and tools) Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: ee6145fe2ef6efa76055bc896f49f5f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gdb Priority: optional Section: devel Installed-Size: 6314 Maintainer: Ubuntu Core developers Original-Maintainer: Héctor Orón Martínez Architecture: amd64 Version: 7.7-0ubuntu3 Depends: libc6 (>= 2.15), libexpat1 (>= 2.0.1), liblzma5 (>= 5.1.1alpha+20110809), libncurses5 (>= 5.5-5~), libpython3.4 (>= 3.4~b1), libreadline6 (>= 6.0), libtinfo5, zlib1g (>= 1:1.2.0), libpython3-stdlib Recommends: libc-dbg, python3 Suggests: gdb-doc, gdbserver Filename: pool/main/g/gdb/gdb_7.7-0ubuntu3_amd64.deb Size: 2196610 MD5sum: a31a5c8ba31b9426452e71611775b3fd SHA1: a37c079e3c837868322944d672ef8a3474f92f46 SHA256: 9be5f35a8c2f8368594204896e2c238db4b22439c110c97e84f7d6004f323c2b Description: GNU Debugger Multi-Arch: allowed Homepage: http://www.gnu.org/s/gdb/ Description-md5: 4f2b8eb95df2ba7a5b11e0301c48b8e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gdb-doc Priority: optional Section: devel Installed-Size: 10573 Maintainer: Ubuntu Developers Original-Maintainer: Héctor Orón Martínez Architecture: amd64 Version: 7.6.2-1ubuntu1 Replaces: gdb (<< 6.4.50.20060511-1), insight (<< 6.1+cvs.2004.04.07-1) Filename: pool/main/g/gdb-doc/gdb-doc_7.6.2-1ubuntu1_amd64.deb Size: 4873618 MD5sum: 5b2d3f1ee79b2a8737812a509d22484b SHA1: 30d50f9059a73885923c79d2ab3bc21e362e3484 SHA256: 92fea10f09f2e4530a6c79ae8a6838628913aded63729f9d6433329deca2bfcb Description: The GNU Debugger Documentation Description-md5: 43091bf04b45c942f19804a19e09d5f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gdebi-core Priority: optional Section: admin Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Ubuntu Developers Architecture: all Source: gdebi Version: 0.9.5.3 Depends: python3:any (>= 3.3.2-2~), python3-apt, python3-debian, file Suggests: xz-utils | xz-lzma Filename: pool/main/g/gdebi/gdebi-core_0.9.5.3_all.deb Size: 9926 MD5sum: 9904c284605899e98e82d6058390abd4 SHA1: c3ed34d273212f1f43cb35cc19adfed53a14c35a SHA256: d47d10f868a842c59c24cd099c7a51a2c6ce7825287603cf65bf81e08c356b7f Description: simple tool to install deb files Description-md5: ca4b6f1506c62c4e8999e272cc575c97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-desktop Package: gdisk Priority: extra Section: admin Installed-Size: 743 Maintainer: Ubuntu Developers Original-Maintainer: Guillaume Delacour Architecture: amd64 Version: 0.8.8-1build1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libncurses5 (>= 5.5-5~), libpopt0 (>= 1.14), libstdc++6 (>= 4.4.0), libtinfo5, libuuid1 (>= 2.16) Recommends: groff-base Conflicts: gdisk-noicu Filename: pool/main/g/gdisk/gdisk_0.8.8-1build1_amd64.deb Size: 185768 MD5sum: 8ea31178d6563d9bea90d00a2a536e8a SHA1: ef0ca4aef97ce25334ceed7926ff68a40fab71af SHA256: e51d6111c861856ad6122a48f41733160ee500940e1ddd7a86bec3335bff60d3 Description: GPT fdisk text-mode partitioning tool Homepage: http://sourceforge.net/projects/gptfdisk/ Description-md5: b06cbe95055333a53ea37de280470adc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gedit Priority: optional Section: gnome Installed-Size: 2607 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.10.4-0ubuntu4 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libenchant1c2a (>= 1.6.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libgirepository-1.0-1 (>= 0.9.3), libglib2.0-0 (>= 2.38), libgtk-3-0 (>= 3.10), libgtksourceview-3.0-1 (>= 3.10.0), libpango-1.0-0 (>= 1.14.0), libpeas-1.0-0 (>= 1.1.0), libx11-6, libxml2 (>= 2.7.4), libzeitgeist-2.0-0 (>= 0.9.9), gedit-common (>= 3.10), gedit-common (<< 3.11), gsettings-desktop-schemas, python3-gi (>= 3.0), python-gi-cairo (>= 3.0), gir1.2-peas-1.0, iso-codes Recommends: gir1.2-gtksource-3.0, zenity, yelp Suggests: gedit-plugins Breaks: gedit-plugins (<< 2.91) Filename: pool/main/g/gedit/gedit_3.10.4-0ubuntu4_amd64.deb Size: 477968 MD5sum: 689c705772508d8d6bedf57179fc1ff3 SHA1: a2cb831d3c9b0c35d673f7912959d33381f27276 SHA256: 68b1c3fcc4f5a2c88bcb26f61499300960761e9b22e124f723b652d3b27408ad Description: official text editor of the GNOME desktop environment Homepage: http://www.gnome.org/projects/gedit/ Description-md5: 5091aaf6659e6bf7ca9b32695a59f9cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gedit-common Priority: optional Section: gnome Installed-Size: 3328 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gedit Version: 3.10.4-0ubuntu4 Depends: dconf-gsettings-backend | gsettings-backend Recommends: gedit Filename: pool/main/g/gedit/gedit-common_3.10.4-0ubuntu4_all.deb Size: 146158 MD5sum: f8e9cecb4eb58cad9e306f12dc3b7faf SHA1: ac6c389086dd54156424e45ab1ffa57c8f7693cc SHA256: 2120fcbe1f14c28f31346ce94606edc89c3e56455ba705cbf2ebd6a0c01520f2 Description: official text editor of the GNOME desktop environment (support files) Homepage: http://www.gnome.org/projects/gedit/ Description-md5: 193111e3506c371cfc98afccfffed3c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gedit-dev Priority: optional Section: devel Installed-Size: 1141 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gedit Version: 3.10.4-0ubuntu4 Depends: gedit (>= 3.10), gedit (<< 3.11), libgtksourceview-3.0-dev (>= 3.2.0), libpeas-dev Filename: pool/main/g/gedit/gedit-dev_3.10.4-0ubuntu4_amd64.deb Size: 63668 MD5sum: fc0b74bb6416cfd3e39824dfb826cc8b SHA1: 6c900c861d19aef37d49664be0f6dd5362097f1c SHA256: dbb3305ae1aec41a4f53f09fb373470e696d0c93d5f70ae8552bab2b8b9acdfe Description: official text editor of the GNOME desktop environment (development files) Homepage: http://www.gnome.org/projects/gedit/ Description-md5: 3432b77a961b8bf02ccb1564908edf94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gem2deb Priority: optional Section: ruby Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.6.1 Depends: ruby | ruby-interpreter, ruby1.9.1 (>= 1.9.3.0-1~), ruby1.9.1-dev (>= 1.9.3.0-1~), ruby2.0, ruby2.0-dev, build-essential, devscripts, debhelper (>= 7.0.50~), perl Filename: pool/main/g/gem2deb/gem2deb_0.6.1_all.deb Size: 41838 MD5sum: 997c3551ca724d593856f48c2bc3a394 SHA1: fbfea4063463c47c695efa3189a9103433cad63d SHA256: eee567573cf43ad86d24846a57e15632d9e504844fc38c95a69bdaee4a9473e3 Description: Debian Ruby packaging suite Description-md5: 3ed6a615741be6d1ca15c4b2a22b42c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: genext2fs Priority: optional Section: admin Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Jérémie Koenig Architecture: amd64 Version: 1.4.1-4build1 Depends: libc6 (>= 2.14) Filename: pool/main/g/genext2fs/genext2fs_1.4.1-4build1_amd64.deb Size: 24482 MD5sum: 1014524bd72dda5bcfd4bea40a4fdeef SHA1: 2ad6307fc71ef587ff790a8e40425cec29eac6b0 SHA256: 510fa72ddf0578455abf71cc17d957ff7e8c3dc769a8bb5d162b297260ca0810 Description: ext2 filesystem generator for embedded systems Description-md5: da14ae0f39cc44d3688a7cd107f79a2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: genisoimage Priority: optional Section: otherosfs Installed-Size: 1543 Maintainer: Ubuntu Developers Original-Maintainer: Joerg Jaspert Architecture: amd64 Source: cdrkit Version: 9:1.1.11-2ubuntu3 Replaces: mkisofs Provides: mkisofs Depends: libbz2-1.0, libc6 (>= 2.14), libmagic1, zlib1g (>= 1:1.1.4) Suggests: wodim, cdrkit-doc Conflicts: mkhybrid, mkisofs Filename: pool/main/c/cdrkit/genisoimage_1.1.11-2ubuntu3_amd64.deb Size: 587120 MD5sum: 69f0b6dcc3cc655d1ab27ca2aadb32b6 SHA1: cf14666217c2048dc3020bbccc3a958d88e95734 SHA256: d1d21d3e2c5d8a88a8e1ba94b1cc4a6e4b302b77e2c2cf81e96871a147217919 Description: Creates ISO-9660 CD-ROM filesystem images Description-md5: f771a046498c00cf831887fc4da45a69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: geoclue Priority: optional Section: utils Installed-Size: 111 Maintainer: Ubuntu Desktop Team Original-Maintainer: Laurent Bigonville Architecture: amd64 Version: 0.12.99-3ubuntu1 Depends: libc6 (>= 2.7), libdbus-glib-1-2 (>= 0.88), libgeoclue0 (>= 0.11.1), libglib2.0-0 (>= 2.37.3), libnm-glib4 (>= 0.7.999), libnm-util2 (>= 0.7.0), dconf-gsettings-backend | gsettings-backend Filename: pool/main/g/geoclue/geoclue_0.12.99-3ubuntu1_amd64.deb Size: 19360 MD5sum: b8432c4ce5814fba7882c84271be0641 SHA1: 284978ce58307ad6ef1a22182bca1a6011978982 SHA256: b17491b81a88aac28390a62411fd3acf1122bd0107c6708cb1f839473d1579db Description: Geographic information framework Homepage: http://www.freedesktop.org/wiki/Software/GeoClue Description-md5: 6da06cc93556594a6f287eb2dc09812e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: geoclue-examples Priority: optional Section: utils Installed-Size: 91 Maintainer: Ubuntu Desktop Team Original-Maintainer: Laurent Bigonville Architecture: amd64 Source: geoclue Version: 0.12.99-3ubuntu1 Replaces: geoclue (<< 0.11.1-4) Depends: libc6 (>= 2.4), libgeoclue0 (>= 0.11.1+git20091217), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.8.0), geoclue (= 0.12.99-3ubuntu1) Filename: pool/main/g/geoclue/geoclue-examples_0.12.99-3ubuntu1_amd64.deb Size: 11180 MD5sum: e78a2e1565a0ccba8109b19d6fda4d90 SHA1: 525f038e65db7b4468d0901802e1cb43b86270bd SHA256: f1c9b35dfce51ceaa0e4302fec8db5104609179e65d341e13415e2b85e6a8eb2 Description: GeoClue example clients Homepage: http://www.freedesktop.org/wiki/Software/GeoClue Description-md5: 87de327a2303da80e00291b7c43bbbdb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: geoclue-ubuntu-geoip Priority: optional Section: gnome Installed-Size: 79 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: ubuntu-geoip Version: 1.0.2+14.04.20131125-0ubuntu2 Provides: geoclue-provider Depends: geoclue, dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.2.5), libgeoclue0 (>= 0.12.0), libglib2.0-0 (>= 2.37.3), libnm-glib4 (>= 0.7.999), libsoup2.4-1 (>= 2.33.92) Filename: pool/main/u/ubuntu-geoip/geoclue-ubuntu-geoip_1.0.2+14.04.20131125-0ubuntu2_amd64.deb Size: 11220 MD5sum: 300908a681fa76615f025673121f7416 SHA1: 9a9711cb8da01fa8dc606752e0e2893fb3d05389 SHA256: e6599b8cbbf58373bae35b6798c4487299334ea7f20f12a5e74b35eba6ce4558 Description: Provide positioning for GeoClue via Ubuntu GeoIP services Homepage: https://launchpad.net/ubuntu-geoip Description-md5: df34267f7cce5e55cfbdebfaa4496638 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: geoip-bin Priority: optional Section: net Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Patrick Matthäi Architecture: amd64 Source: geoip Version: 1.6.0-1 Replaces: libgeoip1 (<= 1.4.4.dfsg-2) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgeoip1, libstdc++6 (>= 4.1.1) Filename: pool/main/g/geoip/geoip-bin_1.6.0-1_amd64.deb Size: 29858 MD5sum: fe177babdf868a2b969315d819694409 SHA1: aede9fc58f542cb5958801b3444c73f9375acf04 SHA256: 31fa764c14ce25320692f9345ba56597ba872aa2cabb7fc08c09f5f73bc753b1 Description: IP lookup command line tools that use the GeoIP library Multi-Arch: foreign Homepage: http://www.maxmind.com/ Description-md5: e058df40dc45f1ddd083b2822302409e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: geoip-database Priority: standard Section: net Installed-Size: 3881 Maintainer: Ubuntu Developers Original-Maintainer: Patrick Matthäi Architecture: all Version: 20140313-1 Recommends: libgeoip1 Breaks: libgeoip1 (<< 1.4.5.dfsg) Filename: pool/main/g/geoip-database/geoip-database_20140313-1_all.deb Size: 1195894 MD5sum: ab4d4f6bc0e04b25cad2fbe1479f44bc SHA1: 06d38aee4084124f86351dfa6f1c404a8ae3e83b SHA256: 30dc5a2c3296180ed0740fb4ec70eb1ea5b49efc5e48a091913a8106f6895c7e Description: IP lookup command line tools that use the GeoIP library (country database) Homepage: http://www.maxmind.com/ Description-md5: 3bfa5b4c9f973261799fb4d9355f3b6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: geoip-dbg Priority: extra Section: debug Installed-Size: 376 Maintainer: Ubuntu Developers Original-Maintainer: Patrick Matthäi Architecture: amd64 Source: geoip Version: 1.6.0-1 Depends: geoip-bin (= 1.6.0-1) | libgeoip1 (= 1.6.0-1) Filename: pool/main/g/geoip/geoip-dbg_1.6.0-1_amd64.deb Size: 228652 MD5sum: 53350c7137b6636503056cf579c5a4c2 SHA1: 2611f04cc968a06d1d0aad0ffc7cc8e997ce472b SHA256: 019c8fcb6bdaeb57175541e07512f1421df82c0cec6faacbacb6390489b162f9 Description: debugging symbols for the GeoIP packages Homepage: http://www.maxmind.com/ Description-md5: 1ad5bb1cea8a55e3d51a0d9303580aa6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: germinate Priority: optional Section: utils Installed-Size: 89 Maintainer: Colin Watson Architecture: all Version: 2.16 Depends: python3:any (>= 3.0~), python3, perl, python3-germinate (= 2.16) Filename: pool/main/g/germinate/germinate_2.16_all.deb Size: 19500 MD5sum: bff91256839bfef93453523fd0e7f241 SHA1: f378ffd07b0af20cb1d43aa3f03e71264c8aebab SHA256: 7e0b84dafd66256e5ec5ed53c9e177dbd7d566be6d39970c29e6fecaf98845db Description: expand dependencies in a list of seed packages Description-md5: 40e625c1a35fdcfca7f5a004d645f691 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gettext Priority: optional Section: devel Installed-Size: 3440 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 0.18.3.1-1ubuntu2 Depends: libc6 (>= 2.17), libcroco3 (>= 0.6.2), libgomp1 (>= 4.2.1), libtinfo5, libunistring0, libxml2 (>= 2.7.4), gettext-base, dpkg (>= 1.15.4) | install-info Recommends: curl | wget | lynx-cur, libasprintf-dev, libgettextpo-dev Suggests: gettext-doc Breaks: autopoint (<= 0.17-11) Filename: pool/main/g/gettext/gettext_0.18.3.1-1ubuntu2_amd64.deb Size: 831364 MD5sum: 7899b1cc1b7b8ec9f9d572b7f6cde31b SHA1: b68567a30f92f182b5e4e2da304abe1464264ff3 SHA256: dca6b2ae1e840093c0fa91776d2da517638cc28952d5cefd215e88b9b10b5c9d Description: GNU Internationalization utilities Multi-Arch: foreign Homepage: http://www.gnu.org/software/gettext/ Description-md5: 0db85b3962766eeef57d5324263a308e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gettext-base Priority: standard Section: utils Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Source: gettext Version: 0.18.3.1-1ubuntu2 Depends: libc6 (>= 2.14), libasprintf0c2 (>= 0.18.1.1-6) Filename: pool/main/g/gettext/gettext-base_0.18.3.1-1ubuntu2_amd64.deb Size: 48754 MD5sum: 8a90534ba877faf2c83932e65ecfb5c0 SHA1: bd68ff4aeca4eee66d7767602c9337b9606fe600 SHA256: ff660aab51eec4205bba3e6a6998be09c26e20aae2f055a45970de0250980025 Description: GNU Internationalization utilities for the base system Homepage: http://www.gnu.org/software/gettext/ Description-md5: 6c8ed1da584066e0871910b60d931f43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: gettext-doc Priority: optional Section: doc Installed-Size: 3917 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: gettext Version: 0.18.3.1-1ubuntu2 Filename: pool/main/g/gettext/gettext-doc_0.18.3.1-1ubuntu2_all.deb Size: 498664 MD5sum: f0c7911d6654b68087ac7ebdad0e35ff SHA1: 471267265a9823af1f6fdb01bd7af72aa137c58c SHA256: df5ea52cb34a139728aceacaa1cabfd4dec690e1c615892d1510203ffb77dca0 Description: Documentation for GNU gettext Homepage: http://www.gnu.org/software/gettext/ Description-md5: 966c7204112700e6dcb867375471b50b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gettext-el Priority: optional Section: lisp Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: gettext Version: 0.18.3.1-1ubuntu2 Depends: gettext, emacs24 | emacs23 | emacsen Filename: pool/main/g/gettext/gettext-el_0.18.3.1-1ubuntu2_all.deb Size: 34838 MD5sum: 14476f63efcfe7de1eca2c39f0e7edac SHA1: 242c84d966eb918ea723276ded1ce2a07d52775e SHA256: bd3c1aaec6e26ba17342ef89aa06591ee5b18613ae0ab281f155f4862c04125c Description: Emacs po-mode for editing gettext .po files Homepage: http://www.gnu.org/software/gettext/ Description-md5: a9d28f54d889f7c47e492c902c81accf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: gfortran Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Provides: fortran-compiler, gfortran-mod-10 Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc (>= 4:4.8.2-1ubuntu6), gfortran-4.8 (>= 4.8.2-5~) Suggests: gfortran-multilib, gfortran-doc Filename: pool/main/g/gcc-defaults/gfortran_4.8.2-1ubuntu6_amd64.deb Size: 1252 MD5sum: 11f6a08866623420f388007f0f1b444a SHA1: e7b001bd6e255e58f753750fb3f9de2fdff9268e SHA256: 968db42dcfefecf9d60f6bc226fdb23e2c134f5abf6c4c2a784c43c66a9307d4 Description: GNU Fortran 95 compiler Description-md5: 19814cb032299ba2188b0196ece62ba3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gfortran-4.7-doc Priority: optional Section: doc Installed-Size: 1388 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (>= 4.7.2-16), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.7/gfortran-4.7-doc_4.7.3-12ubuntu1_all.deb Size: 296412 MD5sum: 288b5b0e18ed3ba53e1816977a514aa4 SHA1: 11ad481bb2da1eea7e1ceffad709f7b2f744dbd5 SHA256: c1f03016222ed93b28f33dfc0ea44b8c75575b642aa771bb4a952813e1261b6b Description: Documentation for the GNU Fortran compiler (gfortran) Homepage: http://gcc.gnu.org/ Description-md5: 17a01a9ada93e104865a01e6615e2401 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gfortran-4.8 Priority: optional Section: devel Installed-Size: 14785 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Provides: fortran95-compiler, gfortran-mod-10 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (= 4.8.2-19ubuntu1), libgfortran-4.8-dev (= 4.8.2-19ubuntu1), libc6-dev (>= 2.13-0ubuntu6), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gfortran-4.8-multilib, gfortran-4.8-doc, libgfortran3-dbg (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/gfortran-4.8_4.8.2-19ubuntu1_amd64.deb Size: 4728232 MD5sum: 21424611f03216eb05c6b435c20d361c SHA1: 4df64f362fe43d4088445df70a0318feb1e89b82 SHA256: 68e4fc32e556e23a99e5d52c9c7f9d2b3a259c802fb3b2581045575eb288967c Description: GNU Fortran compiler Homepage: http://gcc.gnu.org/ Description-md5: 5dd93c5d21d0717205bc5a3b538b0ca2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gfortran-4.8-doc Priority: optional Section: doc Installed-Size: 1400 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.8/gfortran-4.8-doc_4.8.2-19ubuntu1_all.deb Size: 300252 MD5sum: 25bce03cae69ce9b631d7931a3746827 SHA1: 71d59f0acd48ab40d4336c91724a7c9722982cbb SHA256: 9f50122e1f9da7ef14ba1058ac6c43ebfc0a9f2b179a839a537a8ec604e3a6d2 Description: Documentation for the GNU Fortran compiler (gfortran) Homepage: http://gcc.gnu.org/ Description-md5: 17a01a9ada93e104865a01e6615e2401 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gfortran-4.8-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gfortran-4.8 (= 4.8.2-19ubuntu1), gcc-4.8-multilib (= 4.8.2-19ubuntu1), lib32gfortran-4.8-dev (= 4.8.2-19ubuntu1), libx32gfortran-4.8-dev (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/gfortran-4.8-multilib_4.8.2-19ubuntu1_amd64.deb Size: 976 MD5sum: b65b434832bb5bf44424a9d479a08fff SHA1: 628d617cdd0f68395810bdb1c9fafc976f389d96 SHA256: a0170d9f24e65f8be321c680565672cb2113fb0e08291a8b30e590bb23cc0fd7 Description: GNU Fortran compiler (multilib files) Homepage: http://gcc.gnu.org/ Description-md5: 005da023d3d2e21ed1c3e72be2361917 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gfortran-doc Priority: optional Section: doc Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: gfortran-4.8-doc (>= 4.8.2-5~) Suggests: gfortran (>= 4:4.8.2-1ubuntu6) Filename: pool/main/g/gcc-defaults/gfortran-doc_4.8.2-1ubuntu6_amd64.deb Size: 3272 MD5sum: dbbac6c01ffc4aea4f5f88eeb4d569b4 SHA1: e8498d2afd9fa6c52a23b440566e61dc06e1e64a SHA256: e9ea780092ea14a69460f855fe783bd23165ed556acd2c776801923b4f4e8d08 Description: Documentation for the GNU Fortran compiler (gfortran) Description-md5: 6855bbffb1ede02166da131963e7fd83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gfortran-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc-multilib (>= 4:4.8.2-1ubuntu6), gfortran (>= 4:4.8.2-1ubuntu6), gfortran-4.8-multilib (>= 4.8.2-5~) Filename: pool/main/g/gcc-defaults/gfortran-multilib_4.8.2-1ubuntu6_amd64.deb Size: 948 MD5sum: 46f2470e0f621d5293433d0b513c11bd SHA1: c63ad6c63546c568b2fe4f6bdea6ede2fd27066b SHA256: 6a83058dd41cc059c35639283890472c9ec590b0b7f66eef277b2e59f0abe05f Description: GNU Fortran 95 compiler (multilib files) Description-md5: de3f0253a1d23ed0c3ee4e62e170756b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gfxboot Priority: optional Section: utils Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Version: 4.5.1-3ubuntu1 Suggests: gfxboot-themes Filename: pool/main/g/gfxboot/gfxboot_4.5.1-3ubuntu1_amd64.deb Size: 20114 MD5sum: 09e7d85aa4d2d31bd8df4fc1781d643b SHA1: f0094770f962d584e176c7f7bf2dedaad1bb3395 SHA256: 34aa45272caa6f62e071466dc7bfe0dda0101c211646fd232bcf2533acac84e3 Description: tool to test and create graphical boot logos (runtime) Homepage: http://gfxboot.sourceforge.net/ Description-md5: dacebcc0ca068d91673a1386979de16b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gfxboot-dev Priority: extra Section: misc Installed-Size: 463 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Source: gfxboot Version: 4.5.1-3ubuntu1 Depends: libc6 (>= 2.14), libfreetype6 (>= 2.2.1), gfxboot (= 4.5.1-3ubuntu1), cpio, libfribidi0, libhtml-parser-perl Suggests: gfxboot-themes Filename: pool/main/g/gfxboot/gfxboot-dev_4.5.1-3ubuntu1_amd64.deb Size: 87194 MD5sum: 46fd22db8daa33afc1671d9bff7436ba SHA1: 33a1251e3e6288303b223df47b4f58f05e95fd67 SHA256: 0b3e1d4bf677fece0416edec3f907ab9a3a925ede9dc4ed2618e5a94a20c9683 Description: tool to test and create graphical boot logos (development) Homepage: http://gfxboot.sourceforge.net/ Description-md5: 368555be148adde019e0c934a1aedcd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gfxboot-theme-ubuntu Priority: optional Section: utils Installed-Size: 1412 Maintainer: Colin Watson Architecture: amd64 Version: 0.16.1 Depends: gfxboot (>= 3.3.28) Filename: pool/main/g/gfxboot-theme-ubuntu/gfxboot-theme-ubuntu_0.16.1_amd64.deb Size: 332726 MD5sum: bb666be0fc4046058cb2b4a1fac9f37e SHA1: 36d9db1122a172a159932e2a9912514d3bbb5fd1 SHA256: c525fc35cdd6d692b54a557fce73d71ba69d31902de9f93b7bce9117e2330376 Description: Ubuntu theme for gfxboot-compliant boot loaders Description-md5: 20c8ed8e2ecaec26141cbb8137defe84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ghostscript Priority: optional Section: text Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Version: 9.10~dfsg-0ubuntu10 Provides: postscript-viewer Depends: libc6 (>= 2.2.5), libgs9 (= 9.10~dfsg-0ubuntu10), gsfonts (>= 6.0-1), debconf | debconf-2.0, debianutils (>= 1.6) Suggests: ghostscript-x, hpijs Breaks: ghostscript-x (<< 8.64~dfsg-8) Filename: pool/main/g/ghostscript/ghostscript_9.10~dfsg-0ubuntu10_amd64.deb Size: 40770 MD5sum: f8b88ea47ca3880749582b4e12bd0139 SHA1: 551424eff75be9278839041a99df8fd33b58c2a9 SHA256: e647757583106a75bceddace556437eb1747ed5452216058aeaf7f4b45a44d7a Description: interpreter for the PostScript language and for PDF Multi-Arch: foreign Homepage: http://www.ghostscript.com/ Description-md5: 3b69f5ec8191e8f0d88dd3e30e7b1b69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ghostscript-dbg Priority: extra Section: debug Installed-Size: 25942 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Depends: libgs9 (= 9.10~dfsg-0ubuntu10) | ghostscript (= 9.10~dfsg-0ubuntu10) | ghostcript-cups (= 9.10~dfsg-0ubuntu10) | ghostcript-x (= 9.10~dfsg-0ubuntu10) Filename: pool/main/g/ghostscript/ghostscript-dbg_9.10~dfsg-0ubuntu10_amd64.deb Size: 5448316 MD5sum: 1677ff4ac332502a83ae481722318112 SHA1: 197683b847af103dfcca45e73626c2ae49711bd7 SHA256: fa5b56762453dad482ff7ff434247ad943b658d2824ab0a3ac22c2334ff7ba39 Description: interpreter for the PostScript language and for PDF - Debug symbols Homepage: http://www.ghostscript.com/ Description-md5: b88404b3189bdd4e7a7b79221e98739c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ghostscript-doc Priority: optional Section: text Installed-Size: 15728 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Suggests: ghostscript Filename: pool/main/g/ghostscript/ghostscript-doc_9.10~dfsg-0ubuntu10_all.deb Size: 5080626 MD5sum: 00d3da59e5aaef6522b32bef81bf0fd4 SHA1: f04b5a56d24156e292fa8953c40aed5d99158eb0 SHA256: 2e2d3df47dbbe0ac9e96f434ace108239d3793de84bf4cef40790adc9fb34273 Description: interpreter for the PostScript language and for PDF - Documentation Homepage: http://www.ghostscript.com/ Description-md5: 772951004a1a824bee59da206fba24e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ghostscript-x Priority: optional Section: text Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Depends: libc6 (>= 2.14), libx11-6, libxt6, ghostscript (= 9.10~dfsg-0ubuntu10) Filename: pool/main/g/ghostscript/ghostscript-x_9.10~dfsg-0ubuntu10_amd64.deb Size: 33316 MD5sum: 28d856056c5ce31ee9dfbbf8727987a1 SHA1: ed0a00c688027e8945c2a2bce3881b24050b7ca4 SHA256: 4df4e568905f577bfe8b1b72e59295283d4ba50e1a29e787f481b652461271fb Description: interpreter for the PostScript language and for PDF - X11 support Homepage: http://www.ghostscript.com/ Description-md5: 5f6f4265cecdf5f91c519e5f197328b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: giflib-dbg Priority: extra Section: libdevel Installed-Size: 674 Maintainer: Ubuntu Developers Original-Maintainer: Thibaut Gridel Architecture: amd64 Source: giflib Version: 4.1.6-11 Depends: giflib-tools (= 4.1.6-11), libgif4 (= 4.1.6-11), libgif-dev (= 4.1.6-11) Filename: pool/main/g/giflib/giflib-dbg_4.1.6-11_amd64.deb Size: 341512 MD5sum: b605783f0a35b8f36d9210570de6a180 SHA1: cbbe02245b9bf58580efa7852dcc5d23334c385b SHA256: 7dbfd9b94e26ce1323b59c0260dbdcfa49ccd7730dbd73dc91a2e2af3e02a594 Description: library for GIF images (debug) Homepage: http://giflib.sourceforge.net/ Description-md5: 7f99d5bf219b9cacea03ecc7f02fb695 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: giflib-tools Priority: optional Section: utils Installed-Size: 672 Maintainer: Ubuntu Developers Original-Maintainer: Thibaut Gridel Architecture: amd64 Source: giflib Version: 4.1.6-11 Provides: libungif-bin Depends: libc6 (>= 2.14), libgif4 (>= 4.1.4), libperl4-corelibs-perl | perl (<< 5.12.3-7) Filename: pool/main/g/giflib/giflib-tools_4.1.6-11_amd64.deb Size: 138706 MD5sum: dbd82ae2851c8c1684b226d3f1e6df5f SHA1: 6339bd77b1c1c48bc7286c990668263b9d1a2a5e SHA256: dced01e6d0dffa9b5e57ada5a2a64a716d6b8e848bbee1c5615e66f0a07dd68a Description: library for GIF images (utilities) Homepage: http://giflib.sourceforge.net/ Description-md5: a19e8498a460f459fbf8306ec5aabc61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gimp Priority: optional Section: graphics Installed-Size: 15370 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: amd64 Version: 2.8.10-0ubuntu1 Replaces: gimp-plugin-registry (<< 4.20120506) Provides: gimp-helpbrowser, gimp-python Depends: libgimp2.0 (>= 2.8.10), libgimp2.0 (<= 2.8.10-z), gimp-data (>= 2.8.10), gimp-data (<= 2.8.10-z), python-gtk2 (>= 2.8.0), libgdk-pixbuf2.0-0 (>= 2.24.1), libaa1 (>= 1.4p5), libbabl-0.1-0 (>= 0.1.10), libbz2-1.0, libc6 (>= 2.15), libcairo2 (>= 1.10.2), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libexif12, libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgegl-0.2-0 (>= 0.2.0), libglib2.0-0 (>= 2.37.3), libgs9 (>= 8.61.dfsg.1), libgtk2.0-0 (>= 2.24.10), libgudev-1.0-0 (>= 146), libjasper1, libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libmng2 (>= 1.0.10), libpango-1.0-0 (>= 1.29.4), libpangocairo-1.0-0 (>= 1.29.4), libpangoft2-1.0-0 (>= 1.29.4), libpng12-0 (>= 1.2.13-4), libpoppler-glib8 (>= 0.18.0), librsvg2-2 (>= 2.14.4), libtiff5 (>= 4.0.3), libwebkitgtk-1.0-0 (>= 1.3.10), libwmf0.2-7 (>= 0.2.8.4), libx11-6, libxcursor1 (>> 1.1.2), libxext6, libxfixes3, libxmu6, libxpm4, zlib1g (>= 1:1.1.4), python:any (>= 2.7.1-0ubuntu2), python2.7 Recommends: ghostscript Suggests: gimp-help-en | gimp-help, gimp-data-extras, gvfs-backends, libasound2 Breaks: gimp-plugin-registry (<< 4.20120506) Filename: pool/main/g/gimp/gimp_2.8.10-0ubuntu1_amd64.deb Size: 3411150 MD5sum: 0d84dacd204a7b7ce5ab77f6c6d8a56b SHA1: 0a99eab3cfcf9a2f625d31b04f8e6fe53f7acd8e SHA256: dbc0da90669f3e2e033c90124de68f0cb841e6cfaeb0afe55fa77a8a781428d3 Description: The GNU Image Manipulation Program Homepage: http://www.gimp.org/ Description-md5: ad6dd18a09fb86ea4529ac53f33168b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: gimp-data Priority: optional Section: graphics Installed-Size: 14700 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp Version: 2.8.10-0ubuntu1 Replaces: gimp (<< 2.4.0~rc2-2), gimp-python (<< 2.6.0) Recommends: gimp Conflicts: gimp (<< 2.4.0~rc2-2), gimp-python (<< 2.6.0) Filename: pool/main/g/gimp/gimp-data_2.8.10-0ubuntu1_all.deb Size: 3067712 MD5sum: f0b842ef8c86e888d57c2ce304058cca SHA1: 4dfa5ac6226885364b931dfe24dab7893b49f4ed SHA256: a0bf6c6ff1372eb760fc8e5d81446fdb434842ac68392451df061a5cc7a0ea3c Description: Data files for GIMP Homepage: http://www.gimp.org/ Description-md5: f70d84aecd044d27d27535082275ce75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: gimp-dbg Priority: extra Section: graphics Installed-Size: 55418 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: amd64 Source: gimp Version: 2.8.10-0ubuntu1 Depends: gimp (= 2.8.10-0ubuntu1) | libgimp2.0 (= 2.8.10-0ubuntu1) Filename: pool/main/g/gimp/gimp-dbg_2.8.10-0ubuntu1_amd64.deb Size: 11975906 MD5sum: 43d8b92d383b018d7040f01fc6182268 SHA1: ce0efe4280dacc9e8951c0f12959a52247bb361d SHA256: d08fe3f6ad0a23cb8242aba975212ecb5395361b95fbcd099715f809799be500 Description: Debugging symbols for GIMP Homepage: http://www.gimp.org/ Description-md5: 2f9db4a750267fb9aae49799596bcd26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gimp-help-common Priority: optional Section: doc Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Filename: pool/main/g/gimp-help/gimp-help-common_2.6.1-1_all.deb Size: 9220 MD5sum: fb9314b6ddb4a891a7deb9d06c522df9 SHA1: adb71a72ad1eb06de77802959269d36097344f0b SHA256: b1d81ed6379eaf31d61af4b6c087e328998aa9a10477e856cf1e29c642e94200 Description: Data files for the GIMP documentation Homepage: http://www.gimp.org Description-md5: c622b6265a4154156ac063b049290303 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-dvd-live, edubuntu-usb Package: gimp-help-de Priority: optional Section: doc Installed-Size: 44816 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-de_2.6.1-1_all.deb Size: 29884550 MD5sum: 9de7c657d4e68637bc44ca6ee5df0de2 SHA1: 8de5c8971dd843553d2828567dab390ef3815dbe SHA256: ea031b88772a62396f87da4bb193be254d5a2953ce30a2aa4c3f4ebc3030d723 Description: Documentation for the GIMP (German) Enhances: gimp Homepage: http://www.gimp.org Description-md5: c2f5a03af9efa144296c9c42f7c63d19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: gimp-help-en Priority: optional Section: doc Installed-Size: 40248 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-en_2.6.1-1_all.deb Size: 26076972 MD5sum: 8f6b36ab610118892382f53cdfdaa535 SHA1: a789dfb5c65971d1bc4b356ef162787bc9811178 SHA256: 00ef870149d275be1b5920f0d118351330b40a5967f0e77e087a8e5ea0ee770b Description: Documentation for the GIMP (English) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 44a9ca52b03dfcc2c9c4595709a17943 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-dvd-live, edubuntu-usb Package: gimp-help-es Priority: optional Section: doc Installed-Size: 41444 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-es_2.6.1-1_all.deb Size: 26810028 MD5sum: e1f77c2c4853bb231694c8dff7748ef0 SHA1: 8597009691d13c3d97bc1438ceedd2e05b8ea6b9 SHA256: 3384c9749ae495b04617fcf1df656ee17b9bc6629c37009de96c701cce7662ed Description: Documentation for the GIMP (Spanish) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 8de727556a253519c345cb654483a3da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-fr Priority: optional Section: doc Installed-Size: 40624 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-fr_2.6.1-1_all.deb Size: 25768780 MD5sum: f650d73696dd6b86270b8a268b39d376 SHA1: d1676e5b751b7b3711717ba1f047da3da20bc5fe SHA256: f03b57abfd9a1ea82a4ae1cd1e8b1bcd2390cac99ff0e405c2ab593bbf761e3e Description: Documentation for the GIMP (French) Enhances: gimp Homepage: http://www.gimp.org Description-md5: d56fa51bce3855e6068629e20ce6278b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: gimp-help-it Priority: optional Section: doc Installed-Size: 45376 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-it_2.6.1-1_all.deb Size: 30985150 MD5sum: 9850a4edeaa1c15a6a8ce531d451c07b SHA1: 2fb57306e2ac7d969ce035d6e42346136b08f583 SHA256: 1287fda7393a8911bf201f3a715ec55ea11b2b35092bce59e2505deb22bf4ecc Description: Documentation for the GIMP (Italian) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 0cc37908ae6e1669de9a5a8f41a62095 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-ko Priority: optional Section: doc Installed-Size: 39764 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-ko_2.6.1-1_all.deb Size: 25564180 MD5sum: f2bfbc65a8e647bebbaf1abb51f84448 SHA1: 9b9eee28116aefe9fdce0722e7ea3cf113057f3c SHA256: 51c415a309d9de31b3f0e987a65dcee4ba79502625ded1889341147b7a4d15fd Description: Documentation for the GIMP (Korean) Enhances: gimp Homepage: http://www.gimp.org Description-md5: e91196af2a2dea242371d6453abb7ff0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-nl Priority: optional Section: doc Installed-Size: 40400 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-nl_2.6.1-1_all.deb Size: 26121422 MD5sum: 537f69d8985392786acbee5de99480a3 SHA1: 20874c7027d5dcdc59dc8c58420cf662be2d1547 SHA256: 91a05368bcc1a890650b5916db5c1d16722499f1a16137c3fa5eee4d69d48823 Description: Documentation for the GIMP (Dutch) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 21a6a448fddd7bf5a39aa142a86a4b19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-nn Priority: optional Section: doc Installed-Size: 34300 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-nn_2.6.1-1_all.deb Size: 21561508 MD5sum: 0156dfad76b28c056158e1281f29366c SHA1: a990021cb9ae07f15abf35e7447cdd579c28b92f SHA256: 7669047312d1f9c4adc4c34773efe724cd3658d3d9fd3e2247a773cd762ae148 Description: Documentation for the GIMP (Norwegian) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 77bfe274a90f6b7f8c1326bcd0b85342 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-pl Priority: optional Section: doc Installed-Size: 40276 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-pl_2.6.1-1_all.deb Size: 26092186 MD5sum: e0622a14f455f03b9e5a65f1f7a5fb95 SHA1: a4afa3c0dea9562a63145ca7b925bc91f2718415 SHA256: 196c6fc5b674c4fb71f75f046f89d31cf063ceaa98caeadfbf459513b4231752 Description: Documentation for the GIMP (Polish) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 274b548dd6c2359aeda00e0162bdf78e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-ru Priority: optional Section: doc Installed-Size: 41196 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-ru_2.6.1-1_all.deb Size: 26457976 MD5sum: cae7f92cb3c59d85b86a1b12dcc501c1 SHA1: a0896e3784ebd3cb5f1bde70e0e888a8e14908be SHA256: f3a2c7190c9955930af41e6b7444e76d083d35e298d5bfe68e47c6341cc3e711 Description: Documentation for the GIMP (Russian) Enhances: gimp Homepage: http://www.gimp.org Description-md5: e7ac773da975d41de40cfe41fc7fd0e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-sv Priority: optional Section: doc Installed-Size: 40940 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-sv_2.6.1-1_all.deb Size: 26704982 MD5sum: 516421f7cfd55168bddec7a570ea7aab SHA1: b8459fc16028b7b4dbe793ee2dd3f255dfbdc115 SHA256: 2085e4a3a9b97c5fb8add77d11f68c55488129db584fc8ddf51b38d1a97785ad Description: Documentation for the GIMP (Swedish) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 8f04b34bd98f7e7f37a59c0a5f429049 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: gir1.2-accountplugin-1.0 Priority: optional Section: introspection Installed-Size: 43 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: gnome-control-center-signon Version: 0.1.7~+14.04.20140211.2-0ubuntu4 Depends: libaccount-plugin-1.0-0 (= 0.1.7~+14.04.20140211.2-0ubuntu4) Filename: pool/main/g/gnome-control-center-signon/gir1.2-accountplugin-1.0_0.1.7~+14.04.20140211.2-0ubuntu4_amd64.deb Size: 3178 MD5sum: 9bdf55ec74ce997caf363b6e1ed13b6a SHA1: 4862a124ad1ad49a7b627cd0c4e201f2c60f11b1 SHA256: aef796fc197c537de84b136410392f18a7e46c0550ac0ab6c217c1e896c10544 Description: typelib file for libaccount-plugin-1.0-0 Homepage: https://launchpad.net/online-accounts-gnome-control-center Description-md5: ae193a7ff62eeae274b269385244b87d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-accounts-1.0 Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libaccounts-glib Version: 1.15+14.04.20131126.2-0ubuntu3 Depends: libaccounts-glib0 (= 1.15+14.04.20131126.2-0ubuntu3) Filename: pool/main/liba/libaccounts-glib/gir1.2-accounts-1.0_1.15+14.04.20131126.2-0ubuntu3_amd64.deb Size: 6250 MD5sum: 099289aa677f332fb29404542520ed74 SHA1: 840080e573dc6674da50b966d28bde5c1e4740c8 SHA256: 3955a997f5ad705affa65d3dab791a00930835b91e3ce50b052140b0659298ba Description: typelib file for libaccounts-glib0 Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 030c7e7e113a19718bd61ed39007d4f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-accountsservice-1.0 Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: accountsservice Version: 0.6.35-0ubuntu7 Replaces: gir1.2-accountservice-1.0 (<< 0.6.12-4) Depends: gir1.2-glib-2.0, libaccountsservice0 (>= 0.6.35-0ubuntu7) Breaks: gir1.2-accountservice-1.0 (<< 0.6.12-4) Filename: pool/main/a/accountsservice/gir1.2-accountsservice-1.0_0.6.35-0ubuntu7_amd64.deb Size: 4672 MD5sum: f1223c670eccc8d688751a05008b1377 SHA1: 86de4f5032d5ab25d31ec27bc93d57a339eff465 SHA256: 3eea1b31fcb16291ae0e9b3469b5a07593f48c12b1c05befe07e048a6224c8f4 Description: GObject introspection data for AccountService Multi-Arch: foreign Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: 3e307108d5acfea1c79fd66a238baaf2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-appindicator-0.1 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: gir1.2-glib-2.0, gir1.2-gtk-2.0, libappindicator1 (>= 0.4.90) Filename: pool/main/liba/libappindicator/gir1.2-appindicator-0.1_12.10.1+13.10.20130920-0ubuntu4_amd64.deb Size: 3346 MD5sum: b105fb19476be86c25c4db99c615a406 SHA1: cb4b86a1b0157f2dc055c4526651b4295ac5b4dc SHA256: 0ebd02981435f0a839bff2641826a86e14f1bae405d1d210d76f95b2427fe344 Description: Typelib files for libappindicator1. Homepage: https://launchpad.net/libappindicator Description-md5: fd2d1c899c298f83c6cd1e90eb9f78b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-appindicator3-0.1 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libappindicator3-1 (>= 0.4.90) Filename: pool/main/liba/libappindicator/gir1.2-appindicator3-0.1_12.10.1+13.10.20130920-0ubuntu4_amd64.deb Size: 3354 MD5sum: 5022c6d3a9bd0532d5f868ef1b051094 SHA1: f98babaf463e4c52431fc61ccb4e711b1581823b SHA256: 7af206093f4f18a577a2594aca2d65b85d2e60ae832d2b03f3d045ae72ea72fa Description: Typelib files for libappindicator3-1. Homepage: https://launchpad.net/libappindicator Description-md5: a95ebdac40aa90c36d1a2a1108877142 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: gir1.2-atk-1.0 Priority: optional Section: libs Installed-Size: 143 Maintainer: Ubuntu Developers Architecture: amd64 Source: atk1.0 Version: 2.10.0-2ubuntu2 Replaces: gir1.0-gtk-2.0 (<< 2.22), gobject-introspection-repository Depends: gir1.2-glib-2.0, libatk1.0-0 (>= 2.10.0) Conflicts: gir1.0-atk-1.0 Filename: pool/main/a/atk1.0/gir1.2-atk-1.0_2.10.0-2ubuntu2_amd64.deb Size: 16272 MD5sum: 8ace6b9b62aab122b2727c18cb64b90e SHA1: b81d1459390563644a71df93f03b9838b707518f SHA256: 7e57499804fd4f736ba6a56f6b0f3894426808cb145ba3563adb035a5761a1a4 Description: ATK accessibility toolkit (GObject introspection) Homepage: http://www.gtk.org/ Description-md5: f14d9112796808986e9cae4624933403 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-atspi-2.0 Priority: optional Section: misc Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Replaces: gir1.0-gtk-2.0 (<< 2.22), gobject-introspection-repository Depends: gir1.2-glib-2.0, libatspi2.0-0 Filename: pool/main/a/at-spi2-core/gir1.2-atspi-2.0_2.10.2.is.2.10.1-0ubuntu1_amd64.deb Size: 13374 MD5sum: b845dede5a34d216047c1bb742a88311 SHA1: 2bc33b8b31d1002972c81029305e487cbb25c421 SHA256: bd858994e57d23c1957eff964dec05d9be4c0d239e9539756e76777cf4f01195 Description: Assistive Technology Service Provider (GObject introspection) Homepage: http://live.gnome.org/Accessibility Description-md5: b2f515b8cdef2fbe0cb29eb69f2ea27a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-bamf-3 Priority: optional Section: libs Installed-Size: 60 Maintainer: Didier Roche Architecture: amd64 Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Depends: gir1.2-glib-2.0, libbamf3-2 (>= 0.5.0) Filename: pool/main/b/bamf/gir1.2-bamf-3_0.5.1+14.04.20140409-0ubuntu1_amd64.deb Size: 6000 MD5sum: cd8a279da33ee951256e2ae72884d221 SHA1: f0561ecd57f0414353bf2a5370d2c694bfed55f0 SHA256: 94cd9330eba29fce49fb8cbb694f39ca0e88e50eea626d6d82ea8a30adaded86 Description: GObject introspection data for the Bamf library Homepage: https://launchpad.net/bamf Description-md5: 3b453325c374db76b542a9f2cc19639d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-brasero-3.0 Priority: optional Section: introspection Installed-Size: 616 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: brasero Version: 3.10.0-0ubuntu1 Depends: gir1.2-gtk-3.0, libbrasero-media3-1 (>= 3.0.0) Filename: pool/main/b/brasero/gir1.2-brasero-3.0_3.10.0-0ubuntu1_amd64.deb Size: 15148 MD5sum: f61b95d163512e580db8ce36bdb68bce SHA1: fdb948e8d6e03f6110be2cdb2af8c389ad79bc10 SHA256: 86dc489936c010a9865d4a9ee8babc58d420f162753b2088123679d49f5ebecd Description: CD/DVD burning library for GNOME - GObject introspection data Homepage: http://www.gnome.org/projects/brasero/ Description-md5: 7c1eeb238606ff6f5c6a9ecdcd3121f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-cheese-3.0 Priority: optional Section: libdevel Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: cheese Version: 3.10.2-0ubuntu2 Depends: gir1.2-clutter-1.0, gir1.2-freedesktop, gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gstreamer-1.0, libcheese7 (>= 3.5.1) Filename: pool/main/c/cheese/gir1.2-cheese-3.0_3.10.2-0ubuntu2_amd64.deb Size: 11740 MD5sum: a2d33bce9c1fd2dd79c18875104af97c SHA1: 1668c8f8f28926924eaea86d6c3868e9963f2571 SHA256: b1871d0059a0c2cea1329087b154695958c7cf014f1a56e604ee563d4af58e2d Description: tool to take pictures and videos from your webcam - gir bindings Homepage: http://projects.gnome.org/cheese/ Description-md5: 6bb6f1733150d36f15c99ff4d977005b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-click-0.4 Priority: optional Section: introspection Installed-Size: 58 Maintainer: Colin Watson Architecture: amd64 Source: click Version: 0.4.21.1 Depends: gir1.2-gee-0.8, gir1.2-glib-2.0, gir1.2-json-1.0, libclick-0.4-0 (= 0.4.21.1) Filename: pool/main/c/click/gir1.2-click-0.4_0.4.21.1_amd64.deb Size: 6192 MD5sum: c5434db865ce1dd9b0731fd4f0c56b08 SHA1: b1c6cdb65a684d08f064057e6405c97c128eb42e SHA256: 24afb9c4e67b5e00ff18fe1c1ef5ee60dccdfcfb727115b087e98f707d288944 Description: GIR bindings for Click package management library Description-md5: fbd7cef9943963b4852f1b41e72488ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-clutter-1.0 Priority: optional Section: libs Installed-Size: 653 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Replaces: gir1.0-clutter-1.0, libclutter-1.0-0 (<< 1.0.8) Depends: gir1.2-atk-1.0, gir1.2-cogl-1.0, gir1.2-coglpango-1.0, gir1.2-freedesktop, gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-json-1.0, libclutter-1.0-0 (>= 1.16.0) Conflicts: gir1.0-clutter-1.0 Breaks: libclutter-1.0-0 (<< 1.0.8) Filename: pool/main/c/clutter-1.0/gir1.2-clutter-1.0_1.16.4-0ubuntu2_amd64.deb Size: 103348 MD5sum: 9ae73b157d74f35064ddc58fcef1bd55 SHA1: 9752044b49df06ef0ea484089efcc3843600ee63 SHA256: 02611651c8bf6e218b4b036d00592cf4841ae0777e537bb73256408f6b364d55 Description: GObject introspection data for the Clutter 1.0 library Homepage: http://www.clutter-project.org/ Description-md5: 312bf4f2636f72196b1ab50b2a930bad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-clutter-gst-2.0 Priority: optional Section: introspection Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-gst-2.0 Version: 2.0.8-1build1 Depends: gir1.2-clutter-1.0, gir1.2-glib-2.0, gir1.2-gst-plugins-base-1.0, gir1.2-gstreamer-1.0, libclutter-gst-2.0-0 (>= 1.6.0) Filename: pool/main/c/clutter-gst-2.0/gir1.2-clutter-gst-2.0_2.0.8-1build1_amd64.deb Size: 4556 MD5sum: b820c07df67138ea2fd279efac6f4b3d SHA1: 323a521f3a8d2f1e9ea641ae523371d89c176a11 SHA256: 7598b55acac38626dacac7bd835f1a2ee2ae0a3ad29a9684e8f881f65c04d87a Description: Gobject introspection data for Clutter GStreamer elements Homepage: http://www.clutter-project.org/ Description-md5: 855dec98b1cf3c3349601619f57b8ade Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-cogl-1.0 Priority: optional Section: libs Installed-Size: 107 Maintainer: Rico Tzschichholz Architecture: amd64 Source: cogl Version: 1.16.2-1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libcogl15 (>= 1.15.8) Filename: pool/main/c/cogl/gir1.2-cogl-1.0_1.16.2-1_amd64.deb Size: 14268 MD5sum: ca7e80cc283d3e6d2f2d5162b55a01b4 SHA1: f780687b2dcbcfaf4be5e9ba5ce6a1b9e339cedd SHA256: ad60675a83efd3c84d8544cf1fd7e5cfb507dae8d96604ec97e1999316fb1b3e Description: GObject introspection data for the Cogl 1.0 library Description-md5: 148c6f8cbdcd16e6500ac32753a34daf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-coglpango-1.0 Priority: optional Section: libs Installed-Size: 64 Maintainer: Rico Tzschichholz Architecture: amd64 Source: cogl Version: 1.16.2-1 Depends: gir1.2-cogl-1.0 (= 1.16.2-1), gir1.2-pango-1.0, libcogl-pango15 (>= 1.15.8) Filename: pool/main/c/cogl/gir1.2-coglpango-1.0_1.16.2-1_amd64.deb Size: 4196 MD5sum: 32a34520d5eca5cc99f44f65f1f14c9d SHA1: 0d710b0f2d7d4ff4754ad604a0207bbda408730e SHA256: 017c22008aeefc7fa5c8feec21ec857c4eedb541fa53bd270d9ade6fdbdfabce Description: GObject introspection data for the CoglPango 1.0 library Description-md5: 9add089f4444192d7be4e46f724bc4b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-colord-1.0 Priority: optional Section: libs Installed-Size: 110 Maintainer: Christopher James Halse Rogers Architecture: amd64 Source: colord Version: 1.0.6-1 Depends: gir1.2-glib-2.0, libcolord1 (>= 1.0.2) Filename: pool/main/c/colord/gir1.2-colord-1.0_1.0.6-1_amd64.deb Size: 17728 MD5sum: 92c0deeca8e7862204a0d7aa958434d9 SHA1: d834b4c9c1eb15336692a8f985d0f70e2fd2f930 SHA256: 187fb1beb063e61c38901dea52c97f34f79152f37bae2891e37b09cfc10153af Description: GObject introspection data for the colord library Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 0c970be8eaa2db714c047406a0f5d648 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-colorhug-1.0 Priority: extra Section: introspection Installed-Size: 61 Maintainer: Christopher James Halse Rogers Architecture: amd64 Source: colord Version: 1.0.6-1 Depends: gir1.2-colord-1.0 (= 1.0.6-1), gir1.2-glib-2.0, gir1.2-gusb-1.0, libcolorhug1 (>= 0.1.31) Filename: pool/main/c/colord/gir1.2-colorhug-1.0_1.0.6-1_amd64.deb Size: 7580 MD5sum: 99ee0f37ac8ee8daa5946819d8069b31 SHA1: 849d234a098d8178c140754fbe8270429c301e6d SHA256: 9030b5f19042b375ccf4d2878081bb1b7a501f2ade7f4bc5c639d08d2fad77b2 Description: GObject introspection data for the colorhug library Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 85412213b22827c0cb9426e23da9a286 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-dbusmenu-glib-0.4 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libdbusmenu-glib4 (= 12.10.3+14.04.20140319-0ubuntu1) Filename: pool/main/libd/libdbusmenu/gir1.2-dbusmenu-glib-0.4_12.10.3+14.04.20140319-0ubuntu1_amd64.deb Size: 6104 MD5sum: d2589a28df6e7ac5a44eb1fec57d4826 SHA1: 48bf8e61475c17f3603b8751cd64cfc3c3e40398 SHA256: b590d8de763e2fb996bc1650f0f36c9a756def72b72bb831aa854bfeb9093749 Description: typelib file for libdbusmenu-glib4 Homepage: https://launchpad.net/dbusmenu Description-md5: 178deafecf0710d3aefd7dd5299fab54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-dbusmenu-gtk-0.4 Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libdbusmenu-gtk4 (= 12.10.3+14.04.20140319-0ubuntu1) Filename: pool/main/libd/libdbusmenu/gir1.2-dbusmenu-gtk-0.4_12.10.3+14.04.20140319-0ubuntu1_amd64.deb Size: 3000 MD5sum: 1a39a210bcf0df386a1dbed165dc67f7 SHA1: 6eddf3ef83b8be8a409815f9f8319f59f089ee10 SHA256: f8e2325c2f62a5be5dd49c9d29f154294a08b79c5900eee5eca165b7f17af5e4 Description: typelib file for libdbusmenu-gtk4 Homepage: https://launchpad.net/dbusmenu Description-md5: 3f3980e25152e413f88a2d127cddbec2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-dbusmenu-gtk3-0.4 Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libdbusmenu-gtk3-4 (= 12.10.3+14.04.20140319-0ubuntu1) Filename: pool/main/libd/libdbusmenu/gir1.2-dbusmenu-gtk3-0.4_12.10.3+14.04.20140319-0ubuntu1_amd64.deb Size: 2998 MD5sum: 295771b51693786c4ac6de3a07edbe88 SHA1: b37eca8352cb03fe6bd93390bf03e90bfa8557ca SHA256: 60e17959137ac55c36e03104a68fb443ce9cf87febbd3767437336f7f7a89440 Description: typelib file for libdbusmenu-gtk3-4 Homepage: https://launchpad.net/dbusmenu Description-md5: d3860f813354e5bde7033c08ab9c38eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-dee-1.0 Priority: optional Section: libs Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: amd64 Source: dee Version: 1.2.7+14.04.20140324-0ubuntu1 Replaces: gir1.2-dee-0.5 Depends: gir1.2-glib-2.0, libdee-1.0-4 (>= 1.2.7+13.10.20130924.1) Filename: pool/main/d/dee/gir1.2-dee-1.0_1.2.7+14.04.20140324-0ubuntu1_amd64.deb Size: 12512 MD5sum: 4c946fabd8a84cd67caa8c55641f602f SHA1: 22ebb86f14050f368916f0f1a8c53a4db5edc634 SHA256: 20e1228e1f093df1afee1b68b69de2b0aeb3c5c16cd3431eb19dacf1379c8707 Description: GObject introspection data for the Dee library Homepage: https://launchpad.net/dee Description-md5: 79b0788f2610b4887e4b3afe5e29363c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-ebook-1.2 Priority: optional Section: libs Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: gir1.2-ebookcontacts-1.2 (= 3.10.4-0ubuntu1), gir1.2-edataserver-1.2 (= 3.10.4-0ubuntu1), gir1.2-freedesktop, gir1.2-glib-2.0, libebook-1.2-14 (>= 3.10.0) Filename: pool/main/e/evolution-data-server/gir1.2-ebook-1.2_3.10.4-0ubuntu1_amd64.deb Size: 7114 MD5sum: 4998e2cd3c1c0f46f6702151616da452 SHA1: a963ec49f31551d7d4cd43690a2ecb7549462466 SHA256: 87ceb5352b089d49e3eae9d1263c141146231ea50de9fddcf0d59b58ddff3c82 Description: GObject introspection for the EBook library Homepage: http://projects.gnome.org/evolution/ Description-md5: eee3f328364fb5b2eb00182c350108b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-ebookcontacts-1.2 Priority: optional Section: introspection Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: gir1.2-edataserver-1.2 (= 3.10.4-0ubuntu1), gir1.2-freedesktop, gir1.2-glib-2.0, libebook-contacts-1.2-0 (>= 3.8.2) Filename: pool/main/e/evolution-data-server/gir1.2-ebookcontacts-1.2_3.10.4-0ubuntu1_amd64.deb Size: 12554 MD5sum: 72a77103419b37ac824cc1a6f562b16d SHA1: 979bd100c2a1e32e3cc988aa126e196d88555047 SHA256: 07ec0a101f846dbbdef957feb76f3df7fa2710df2dd491da8968509ea3e8fb0f Description: GObject introspection for the EBook Contacts library Homepage: http://projects.gnome.org/evolution/ Description-md5: 5c91e1ab067d8ddd63b0ef031e231a4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-edataserver-1.2 Priority: optional Section: libs Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libedataserver-1.2-18 (>= 3.10.0) Filename: pool/main/e/evolution-data-server/gir1.2-edataserver-1.2_3.10.4-0ubuntu1_amd64.deb Size: 18900 MD5sum: 67ed70cbd4b1e4304d0680a060eed53e SHA1: fd7633772e94423d49351b7c7617306ffe8e8384 SHA256: ae8ccdc57e47fd4fe22a9567779a2d0016fa8735ed27e501f7b5ef44e10b5914 Description: GObject introspection for the EDataServer library Homepage: http://projects.gnome.org/evolution/ Description-md5: 2ec1ed52300f0467a0d5460ca0faa785 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-evince-3.0 Priority: optional Section: libs Installed-Size: 685 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: evince Version: 3.10.3-0ubuntu10 Provides: gir1.2-evince-document-3.0, gir1.2-evince-view-3.0 Depends: gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, libevdocument3-4 (>= 3.9.5), libevview3-3 (>= 3.9.5) Filename: pool/main/e/evince/gir1.2-evince-3.0_3.10.3-0ubuntu10_amd64.deb Size: 24900 MD5sum: 267a4b3a64a494187e4570ec7fc753f8 SHA1: f522004743320d21942a0be79a4b56dd607bb10c SHA256: fb7673102104ee7b7557a3a82f4495fa53ca5d42aea6ce3a8d137b0fa9b71784 Description: GObject introspection data for the evince libraries Homepage: http://www.gnome.org/projects/evince/ Description-md5: 4dafa58edf36d098ff0274eb48552db5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-farstream-0.1 Priority: optional Section: introspection Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: farstream Version: 0.1.2-1ubuntu3 Depends: gir1.2-glib-2.0, gir1.2-gstreamer-0.10, libfarstream-0.1-0 (>= 0.1.1) Filename: pool/main/f/farstream/gir1.2-farstream-0.1_0.1.2-1ubuntu3_amd64.deb Size: 8080 MD5sum: ab0c55877e1bc46ba3346fd9d49e98c3 SHA1: 4ec5f033a3a4ec028f49b26cfd298786941688cb SHA256: be6ce62eaf13be172bccaec185f7f69652eb2fac6c16d7988dc52f8c68cb3366 Description: Audio/Video communications framework: GObject-Introspection Multi-Arch: same Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 372775129a67708a288c83d61f8d289c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-farstream-0.2 Priority: optional Section: introspection Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: farstream-0.2 Version: 0.2.3-1ubuntu2 Depends: gir1.2-glib-2.0, gir1.2-gstreamer-1.0, libfarstream-0.2-2 (>= 0.2.3) Filename: pool/main/f/farstream-0.2/gir1.2-farstream-0.2_0.2.3-1ubuntu2_amd64.deb Size: 8214 MD5sum: db2fafcdebe9ef863a4902f6ffe2e6ac SHA1: 0159e5e432f9e4018d9a8dd14197efaa3bf86308 SHA256: 30ba65fe31790222f3e6aa97a410d20c79550de4bc0b022d97c33cf49aad3bcf Description: Audio/Video communications framework: GObject-Introspection Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 372775129a67708a288c83d61f8d289c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-folks-0.6 Priority: optional Section: libs Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: folks Version: 0.9.5-1ubuntu5 Depends: gir1.2-ebookcontacts-1.2, gir1.2-edataserver-1.2, gir1.2-gee-0.8, gir1.2-glib-2.0, gir1.2-telepathyglib-0.12 Filename: pool/main/f/folks/gir1.2-folks-0.6_0.9.5-1ubuntu5_amd64.deb Size: 16058 MD5sum: 8ab00454019611a91a1b8fe9188c9122 SHA1: f2b3b5b78527ee1f6b17bdf5b97551dde8ba8e03 SHA256: 5d3a5120e7d3d8344a7518d22818b96667a3bd616a7ea6d67a5fea3a34b421db Description: library to aggregates people into metacontacts - GObject-Introspection Homepage: https://live.gnome.org/Folks/ Description-md5: 101a0cc9448dd2bd027680cded24f583 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-freedesktop Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gobject-introspection Version: 1.40.0-1 Depends: gir1.2-glib-2.0 (= 1.40.0-1) Conflicts: gir1.0-freedesktop, gobject-introspection-freedesktop Filename: pool/main/g/gobject-introspection/gir1.2-freedesktop_1.40.0-1_amd64.deb Size: 5668 MD5sum: 27497ace23b22b34599b292e1e64257c SHA1: 7283941968905fd569a808b6e44f751697016d3b SHA256: 391c81bbc7408c75c2aeb47355041e30334943de75234f3df80a066d3c505594 Description: Introspection data for some FreeDesktop components Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: e492870e481eb146e130bddc80b8d5df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-friends-0.1 Priority: extra Section: libs Installed-Size: 40 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: gir1.2-glib-2.0 Filename: pool/main/libf/libfriends/gir1.2-friends-0.1_0.1.2+14.04.20131108.1-0ubuntu1_amd64.deb Size: 4016 MD5sum: 3e94e086e63a7f8e569c9f0fb89a66c9 SHA1: 537053b06b401fc78796124ee8557ede497b41fc SHA256: 63061ebea69182e5e564a2342ea1a31fd725d57ac3ce0df27920311b66aab618 Description: GObject Introspection data for the Friends library Homepage: https://launchpad.net/friends Description-md5: 5d8236eb449f825e9323c35bc5bea857 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-friends-gtk-0.1 Priority: extra Section: libs Installed-Size: 38 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: gir1.2-friends-0.1 (= 0.1.2+14.04.20131108.1-0ubuntu1), libfriends-gtk0 (= 0.1.2+14.04.20131108.1-0ubuntu1), gir1.2-gtk-3.0 Filename: pool/main/libf/libfriends/gir1.2-friends-gtk-0.1_0.1.2+14.04.20131108.1-0ubuntu1_amd64.deb Size: 2774 MD5sum: 8c369c551aa6f69bfab8668812747596 SHA1: af4bacbbf4195f528ed76793b9050d4956fd1d16 SHA256: a1853dbc008b400e48d81acb67af9654586b720b3e6dee14623a960815efeb87 Description: GObject Introspection data for Friends GTK widgets Homepage: https://launchpad.net/friends Description-md5: 87968d653b3e7a765f1863a1397e763f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gck-1 Priority: optional Section: introspection Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gcr Version: 3.10.1-1 Depends: gir1.2-glib-2.0, libgck-1-0 (>= 3.3.90) Filename: pool/main/g/gcr/gir1.2-gck-1_3.10.1-1_amd64.deb Size: 9232 MD5sum: 0e1b3d43ab11e2c15ddd989d15d27d29 SHA1: ef7c6db7447f00bd898887aa415461039b7e165f SHA256: c6929aece45d0667c8703a6de63d3f8f6cd8b95fd44bfb4d903cd79333d60423 Description: GObject introspection data for the GCK library Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 9fe18a0ed10ac386dd01e38e2599f7d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-gconf-2.0 Priority: optional Section: libs Installed-Size: 400 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gconf Version: 3.2.6-0ubuntu2 Depends: gconf-service, gir1.2-glib-2.0, libgconf-2-4 (>= 2.31.1) Conflicts: gir1.0-gconf-2.0 Filename: pool/main/g/gconf/gir1.2-gconf-2.0_3.2.6-0ubuntu2_amd64.deb Size: 6182 MD5sum: 09df69c9d888f50fd1d662781255a69f SHA1: 7f01ddd0528f0cf4cf685792ee439bdbccc9402f SHA256: 01c9fce8ce74de30f74c29507c2f28afef5bdb583c98db8f6d99f00f3363875f Description: GNOME configuration database system (GObject-Introspection) Homepage: http://projects.gnome.org/gconf/ Description-md5: 1268956fd1a3637618828db77c2ef43c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: gir1.2-gcr-3 Priority: optional Section: introspection Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gcr Version: 3.10.1-1 Depends: gir1.2-gck-1 (= 3.10.1-1), gir1.2-glib-2.0, gir1.2-gtk-3.0, libgcr-base-3-1 (>= 3.8.0), libgcr-ui-3-1 (>= 3.10.1) Filename: pool/main/g/gcr/gir1.2-gcr-3_3.10.1-1_amd64.deb Size: 13566 MD5sum: 44028d281cb7741101e0ec0287d14235 SHA1: e2b298e55629beb5c7fe0b8a85335d45a3960e99 SHA256: 613cc093c2520bf0a7f0a424dbd0f1e6252e1c8ca3c2cea94118451fc780a7f7 Description: GObject introspection data for the GCR library Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: b69189318ad490ce96b37e11ad4c8b09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-gdata-0.0 Priority: optional Section: libs Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgdata Version: 0.14.1-1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, gir1.2-goa-1.0, gir1.2-soup-2.4, libgdata13 (>= 0.13.3) Conflicts: gir1.0-gdata-0.0 Filename: pool/main/libg/libgdata/gir1.2-gdata-0.0_0.14.1-1_amd64.deb Size: 31026 MD5sum: 5377f7e0fda2e833afa56fb340530eb7 SHA1: 4e172cf6d386ded42e79ef4490e9d808ba95835d SHA256: a705cd9f9f53ac112e4b077c5ae71cc0aae1bea6fb508b23b99835ea690063e0 Description: GObject introspection data for the GData webservices library Homepage: https://wiki.gnome.org/libgdata Description-md5: f54b7f85ee1176e1236a3584322d2174 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-gdesktopenums-3.0 Priority: optional Section: gnome Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gsettings-desktop-schemas Version: 3.10.1-0ubuntu1 Filename: pool/main/g/gsettings-desktop-schemas/gir1.2-gdesktopenums-3.0_3.10.1-0ubuntu1_amd64.deb Size: 8292 MD5sum: e394f2fbde502bb831780a765c2f62ce SHA1: 8be3b5f64bb10e7635ef6981533d130d366820d6 SHA256: e6a06e185d0b193c9e875c11d692b31603315d97e32581a2686be978cef65630 Description: GObject introspection for GSettings desktop-wide schemas Homepage: http://www.gnome.org/ Description-md5: 477a4df605ef5075dfb853bde74cb266 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gir1.2-gdkpixbuf-2.0 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Replaces: gir1.0-gtk-2.0 (<< 2.21.3), gir1.2-gtk-2.0 (<< 2.21.3) Depends: gir1.2-glib-2.0, libgdk-pixbuf2.0-0 (>= 2.30.1) Conflicts: gir1.0-gdkpixbuf-2.0 Filename: pool/main/g/gdk-pixbuf/gir1.2-gdkpixbuf-2.0_2.30.7-0ubuntu1_amd64.deb Size: 7958 MD5sum: 8dab777eb947da021ec9979ab306b0a4 SHA1: cf1159512634fa995c93aceebc8b218cb7ee0e1e SHA256: cb3ffa1a60fa8236ea721811286f6b0014e40738ecc990a8898d79ef09f82f61 Description: GDK Pixbuf library - GObject-Introspection Homepage: http://www.gtk.org/ Description-md5: 3ea1af7270ed1e5298c960b834579512 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gee-0.8 Priority: optional Section: introspection Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: libgee-0.8 Version: 0.10.5-1ubuntu1 Depends: gir1.2-glib-2.0 Filename: pool/main/libg/libgee-0.8/gir1.2-gee-0.8_0.10.5-1ubuntu1_amd64.deb Size: 18536 MD5sum: fb7fe4017b396b5b73a205cc3df669e0 SHA1: 44290aa9863e20d7481b19d8d2a734fcb8634ac4 SHA256: d8e5f5bfc8c25f0c20b6c0935466382c2b7e26285c5c9f136170c809f6418ee6 Description: GLib Telepathy connection manager library (GObject-Introspection) Homepage: http://live.gnome.org/Libgee Description-md5: 07711b2b9024af5a804714d7a13cd842 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gee-1.0 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: libgee Version: 0.6.8-1ubuntu1 Depends: gir1.2-glib-2.0 Filename: pool/main/libg/libgee/gir1.2-gee-1.0_0.6.8-1ubuntu1_amd64.deb Size: 12914 MD5sum: f8580a7a8c98f488bd0b783138bcf2aa SHA1: f1b21f9e2b5921f6b2a7f74c94bed8bf35782708 SHA256: 0071450ffd41d800f3c873c0e2235675a8620b67d6c75a68390280a2745b31e1 Description: GLib Telepathy connection manager library (GObject-Introspection) Homepage: http://live.gnome.org/Libgee Description-md5: 07711b2b9024af5a804714d7a13cd842 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gexiv2-0.10 Priority: optional Section: introspection Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: amd64 Source: gexiv2 Version: 0.10.0-1ubuntu1 Replaces: gir1.2-gexiv2-0.4 Depends: gir1.2-glib-2.0, libgexiv2-2 (>= 0.9.1) Conflicts: gir1.2-gexiv2-0.4 Filename: pool/main/g/gexiv2/gir1.2-gexiv2-0.10_0.10.0-1ubuntu1_amd64.deb Size: 6078 MD5sum: 061524bd5f85c8488a5eb52d92bd4cf3 SHA1: 2c87270354b34ecc52b9016c9f526cf6055caf5a SHA256: ed157e9d12b88a0c57238216acb1fa6c9c4a2bca8184ea1628a934b4e126d759 Description: GObject-based wrapper around the Exiv2 library - introspection data Multi-Arch: foreign Homepage: https://wiki.gnome.org/Projects/gexiv2 Description-md5: 557460c3f61388f7b58cf71018302220 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gkbd-3.0 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnomekbd Version: 3.6.0-0ubuntu2 Replaces: gir1.2-gnomekbd-3.0 Depends: gir1.2-atk-1.0, gir1.2-freedesktop, gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-pango-1.0, gir1.2-xkl-1.0, libgnomekbd8 (>= 3.0.0.1) Conflicts: gir1.2-gnomekbd-3.0 Filename: pool/main/libg/libgnomekbd/gir1.2-gkbd-3.0_3.6.0-0ubuntu2_amd64.deb Size: 6532 MD5sum: 61a5e2e5e1d1390ed8017922251b5614 SHA1: 64941d790582e53b99250e52fb7cb2455651b6f1 SHA256: 728681a408ca58eba45b321f062101ab8d0a6b737a92d1b64d059bb88669c7b0 Description: GObject introspection data for the GnomeKbd library Description-md5: 16f5d54ee1cc6d63963a1713fa8aea2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-gladeui-2.0 Priority: optional Section: libs Installed-Size: 673 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: glade Version: 3.16.1-0ubuntu2 Depends: gir1.2-gtk-3.0, libgladeui-2-6 (>= 3.16.1) Filename: pool/main/g/glade/gir1.2-gladeui-2.0_3.16.1-0ubuntu2_amd64.deb Size: 29662 MD5sum: 332f29492d7b18998a1eade2348a70d6 SHA1: 891f71fb696f282090002aaca8c07d5f606a2a16 SHA256: d7a3622b70c36c4648bb6f3d6bf8bf251ceb87d82588db4d4bc7e7640657e5dd Description: GObject introspection data for the GTK+ User Interface library Homepage: http://glade.gnome.org/ Description-md5: e7342a083294f60fa73d831c99cad50c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-glib-2.0 Priority: standard Section: libs Installed-Size: 619 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gobject-introspection Version: 1.40.0-1 Depends: libgirepository-1.0-1 (>= 1.35.9), libglib2.0-0 (>= 2.39.91) Conflicts: gir1.0-glib-2.0, gobject-introspection-glib-2.0 Breaks: gnome-shell (<< 3.0.2-6), python-gobject (<< 2.90) Filename: pool/main/g/gobject-introspection/gir1.2-glib-2.0_1.40.0-1_amd64.deb Size: 123596 MD5sum: e8232294cbb7ba9ae66adfcab969d030 SHA1: ad57979d54ff06828c3d16747d7c04eed07e5093 SHA256: a066b6256d9f5a5abe87035ac00be67fd4a6478d20b08080b42f8467cf68ce8d Description: Introspection data for GLib, GObject, Gio and GModule Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: 4a611c6bfb6cf3afde558f13b2ebca03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: gir1.2-gmenu-3.0 Priority: optional Section: libs Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-menus Version: 3.10.1-0ubuntu2 Depends: gir1.2-glib-2.0, libgnome-menu-3-0 (>= 3.6.0) Conflicts: gobject-introspection-repository Filename: pool/main/g/gnome-menus/gir1.2-gmenu-3.0_3.10.1-0ubuntu2_amd64.deb Size: 3662 MD5sum: dc10cfc85346ef94914fe4be69b98064 SHA1: aa263243c0393e71f56365a65666abe73e54d3d3 SHA256: 849c2bf6781ac0b52fa1c6ceb5b4c0ee6092ab6734a71bbbde8b49495a819d40 Description: GObject introspection data for the GNOME menu library Description-md5: 5d8df3e18602842907166fd6393f2e1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gnomebluetooth-1.0 Priority: optional Section: gnome Installed-Size: 245 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-bluetooth Version: 3.8.2.1-0ubuntu4 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libgnome-bluetooth11 (>= 3.4.0) Breaks: gnome-bluetooth (<< 3.8), gnome-shell (<< 3.4.2-9) Filename: pool/main/g/gnome-bluetooth/gir1.2-gnomebluetooth-1.0_3.8.2.1-0ubuntu4_amd64.deb Size: 5516 MD5sum: 7bf4ab9bac32869a2df652357129a79f SHA1: c166794aeb55dfb2f538ec5f987438159145ed98 SHA256: 169c5d4ba4eaddd8e77aac9270a4bbbeb31ea800346a63eac2d123bd60c60e0c Description: Introspection data for GnomeBluetooth Homepage: https://wiki.gnome.org/GnomeBluetooth Description-md5: eaf5b6e0a4c10828824d324c8ac01ee5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-gnomedesktop-3.0 Priority: optional Section: gnome Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-desktop3 Version: 3.8.4-0ubuntu3 Depends: gir1.2-gdesktopenums-3.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, libgnome-desktop-3-7 (>= 3.8.2) Breaks: gnome-shell (<< 3.7.90) Filename: pool/main/g/gnome-desktop3/gir1.2-gnomedesktop-3.0_3.8.4-0ubuntu3_amd64.deb Size: 8558 MD5sum: fd336055f1fa10cb546e34748a2e7a8a SHA1: 6e061bf8069d8749a4a590ad6d0f2afd43fe6205 SHA256: 55c077cec881ccd4595428e28128d738e6b1b4e19a3a05383bb0f32b842fbc82 Description: Introspection data for GnomeDesktop Description-md5: 20549ec984ca80b043c2764659dd5041 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gir1.2-gnomekeyring-1.0 Priority: optional Section: introspection Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnome-keyring Version: 3.8.0-2 Depends: libgnome-keyring0 (= 3.8.0-2), gir1.2-glib-2.0 Filename: pool/main/libg/libgnome-keyring/gir1.2-gnomekeyring-1.0_3.8.0-2_amd64.deb Size: 5898 MD5sum: 2e6b2194e5ce0da4786627f411cf7455 SHA1: a2ffcaa8c62cf53f2ed0da87aa0ac3287053c502 SHA256: dcf768916a823c3a138f8cf495187d96a729a940d044b30637c4ceee1675b664 Description: GNOME keyring services library - introspection data Homepage: http://live.gnome.org/GnomeKeyring Description-md5: ddbbb20d38606bc82ef49cdb852ecdc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-goa-1.0 Priority: optional Section: gnome Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Depends: gir1.2-glib-2.0, libgoa-1.0-0b (>= 3.7.91) Filename: pool/main/g/gnome-online-accounts/gir1.2-goa-1.0_3.10.3-0ubuntu1_amd64.deb Size: 10262 MD5sum: b7e119d23f989048197519e1c2cdb3d0 SHA1: 3b0c3778ed3bca6c2a96173d0e9f81f67f9e9339 SHA256: 62448bfa25e54e039df9ab0bcf713b36c215f0309051c2256b0fba19910775a6 Description: Introspection data for GNOME Online Accounts Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 32742d5948429e16ebbc1aef9ea991b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-grip Priority: optional Section: libs Installed-Size: 46 Maintainer: Ubuntu Developers Architecture: amd64 Source: libgrip Version: 0.3.7+14.04.20140303-0ubuntu1 Filename: pool/main/libg/libgrip/gir1.2-grip_0.3.7+14.04.20140303-0ubuntu1_amd64.deb Size: 5134 MD5sum: aaf8b67e509006db921dad3a99b1229d SHA1: 181da23cc850c85a1dd6eb0ece28204e1ef17bad SHA256: ddc0f233fb1ddf12233b394ff666e52f9e88ad321f5cbab59d4b737d9750816d Description: typelib file for libgrip Homepage: https://launchpad.net/libgrip Description-md5: dd972431806ac09582f1df4defb3aa48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gsf-1 Priority: optional Section: introspection Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Smirnov Architecture: amd64 Source: libgsf Version: 1.14.27-2ubuntu2 Replaces: gir1.2-libgsf-1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libgsf-1-114 (>= 1.14.27) Conflicts: gir1.2-libgsf-1 Filename: pool/main/libg/libgsf/gir1.2-gsf-1_1.14.27-2ubuntu2_amd64.deb Size: 12474 MD5sum: 1295c6c1a21de7ac28cd444ef86f43d9 SHA1: be59e2b25c8d7e9ca345766d1239ad879f590b0d SHA256: 8fb57a966cb4d99003275c1a0450d50d66433139adac380735d02d61a7b46d6f Description: GObject introspection data for the Structured File Library Homepage: http://projects.gnome.org/libgsf/ Description-md5: cafac8e6a223b52243bdc070459447ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gssdp-1.0 Priority: optional Section: libs Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: amd64 Source: gssdp Version: 0.14.7-1ubuntu1 Replaces: gir1.0-gssdp-1.0 Depends: gir1.2-glib-2.0, gir1.2-soup-2.4, libgssdp-1.0-3 (>= 0.14.6) Conflicts: gir1.0-gssdp-1.0 Filename: pool/main/g/gssdp/gir1.2-gssdp-1.0_0.14.7-1ubuntu1_amd64.deb Size: 3538 MD5sum: bbf7f08f28a040f04b1324e9f621fcff SHA1: ac76399dc809124f3ea54e8e3dbf48d53eb70e9d SHA256: 40e8863e3acced2523313a93e5352a26fe5587608e238c6d1f4742b424153d22 Description: GObject introspection data for the GSSDP library Homepage: http://www.gupnp.org Description-md5: f0adf17be0a5f9da4315bebe6d6f60e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gst-plugins-base-0.10 Priority: optional Section: libs Installed-Size: 299 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Replaces: gir1.0-gst-plugins-base-0.10, gobject-introspection-repository (<< 0.6.5-2), libgstreamer-plugins-base0.10-0 (<< 0.10.25-3) Depends: gir1.2-gstreamer-0.10 Conflicts: gir1.0-gst-plugins-base-0.10 Filename: pool/main/g/gst-plugins-base0.10/gir1.2-gst-plugins-base-0.10_0.10.36-1.1ubuntu2_amd64.deb Size: 99130 MD5sum: d3a618d210b99979b093af83f0d885ef SHA1: d9b6fc4ed764d8d621ea13254da9a2273aefb801 SHA256: d060802156f4ae84b91bd5b0ff07c293c4c7d394f7a287426ebf1f6533e0a8b3 Description: Description: GObject introspection data for the GStreamer Plugins Base library Homepage: http://gstreamer.freedesktop.org Description-md5: 1c3b9ff935990198956b8c00dd1b7da8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gst-plugins-base-1.0 Priority: optional Section: introspection Installed-Size: 313 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: gir1.2-glib-2.0, gir1.2-gstreamer-1.0 Filename: pool/main/g/gst-plugins-base1.0/gir1.2-gst-plugins-base-1.0_1.2.3-1_amd64.deb Size: 61860 MD5sum: 2c422c3e56f27fea8db552c7e1ec4af0 SHA1: 4fb5921f5ab72694567bfa564ea624add6373bde SHA256: d4aa3cfde990784bc74a69ee41cbfe50f703d95e982cca369a30c4107395aa2b Description: Description: GObject introspection data for the GStreamer Plugins Base library Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: 1c3b9ff935990198956b8c00dd1b7da8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-gstreamer-0.10 Priority: optional Section: libs Installed-Size: 854 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Replaces: gir1.0-gstreamer-0.10, gobject-introspection-repository (<< 0.6.5-2), libgstreamer0.10-0 (<< 0.10.25-3) Depends: gir1.2-freedesktop, gir1.2-glib-2.0 Conflicts: gir1.0-gstreamer-0.10 Filename: pool/main/g/gstreamer0.10/gir1.2-gstreamer-0.10_0.10.36-1.2ubuntu3_amd64.deb Size: 96708 MD5sum: f8f3b434f019150c9f6ce4af7274f07b SHA1: ccf2dc01c0b81b53af7284c70ce6479f819f587a SHA256: 4a873f5227e6107e0fcd8a9376766a50d72f0433545f49429f4095d3e8c2d30b Description: Description: GObject introspection data for the GStreamer library Homepage: http://gstreamer.freedesktop.org Description-md5: 77a6d9cb5ff0c6e1dc81858155a05394 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gstreamer-1.0 Priority: optional Section: introspection Installed-Size: 1060 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gstreamer1.0 Version: 1.2.3-1 Depends: gir1.2-glib-2.0 Filename: pool/main/g/gstreamer1.0/gir1.2-gstreamer-1.0_1.2.3-1_amd64.deb Size: 65484 MD5sum: 6693bbdb8c2243b31cd285542daa309f SHA1: 260025bec2bcd18660aa53b41a546ed64154c723 SHA256: 61ff616fd7ca1c588e09559510ff527698467f64a0413c380a2dd4f7b16df33f Description: Description: GObject introspection data for the GStreamer library Homepage: http://gstreamer.freedesktop.org Description-md5: 77a6d9cb5ff0c6e1dc81858155a05394 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gtk-2.0 Priority: optional Section: libs Installed-Size: 1355 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Replaces: gir1.0-gtk-2.0 Depends: libgtk2.0-common, gir1.2-atk-1.0, gir1.2-freedesktop, gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-pango-1.0, libgtk2.0-0 (>= 2.24.0) Conflicts: gir1.0-gtk-2.0, gobject-introspection-repository Filename: pool/main/g/gtk+2.0/gir1.2-gtk-2.0_2.24.23-0ubuntu1_amd64.deb Size: 171292 MD5sum: 19bd597e3120189c1d52e45b81926e9c SHA1: 36eb5be82a2555a039d37d2fbe9f8fd0036b24f9 SHA256: 698681e1942ab7a39790900b0cdfde77006b0fb3a14e3964277452355343c5a3 Description: GTK+ graphical user interface library -- gir bindings Homepage: http://www.gtk.org/ Description-md5: f16f9e8db01aaaf8ce43a52cf10f4f37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gtk-3.0 Priority: optional Section: libs Installed-Size: 932 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libgtk-3-common, gir1.2-atk-1.0, gir1.2-freedesktop, gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-pango-1.0, libgtk-3-0 (>= 3.10.0) Filename: pool/main/g/gtk+3.0/gir1.2-gtk-3.0_3.10.8-0ubuntu1_amd64.deb Size: 174226 MD5sum: c679dc83695761418383934c743457c7 SHA1: d97383aceb2ddba8b2393a05a3fb1c2daaafd551 SHA256: c42a0702dc2e770518dcdcf0d0d0ed97436241653d42856ea81942d64d3fb5fc Description: GTK+ graphical user interface library -- gir bindings Homepage: http://www.gtk.org/ Description-md5: f16f9e8db01aaaf8ce43a52cf10f4f37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gtk-vnc-2.0 Priority: optional Section: libs Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Provides: gir1.2-gvnc-1.0 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libgtk-vnc-2.0-0 (>= 0.5.2), libgvnc-1.0-0 (>= 0.5.3) Filename: pool/main/g/gtk-vnc/gir1.2-gtk-vnc-2.0_0.5.3-0ubuntu2_amd64.deb Size: 9646 MD5sum: d5c970771097ef566b6fbd6e9fab3a24 SHA1: ecad8e17d11cd0b43e8086b75c69327ee565b4c9 SHA256: 46272ea67ca5010fbc8f1af40869d7720147bade06966c89462ecfc5bfbb4bbc Description: GObject introspection data for GTK-VNC. Description-md5: bb391bfc3998f15e87f20fe7e89e3883 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gtkclutter-1.0 Priority: optional Section: libs Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-gtk Version: 1.4.4-3ubuntu2 Replaces: gir1.0-clutter-gtk-1.0 Depends: gir1.2-clutter-1.0, gir1.2-gtk-3.0, libclutter-gtk-1.0-0 (>= 1.3.2) Conflicts: gir1.0-clutter-gtk-1.0 Filename: pool/main/c/clutter-gtk/gir1.2-gtkclutter-1.0_1.4.4-3ubuntu2_amd64.deb Size: 3386 MD5sum: b9f61ae559fdcc84f236b38f370d19fa SHA1: 142e11d45c7d40b2a17856450ee2158dcb587e2a SHA256: 19d578e4c8f4f05ccfcf028c8d6c092271dc06b80d7e0f1dd625c0d69ba487bb Description: GObject introspection data for the GTK+ Clutter library Homepage: http://www.clutter-project.org/ Description-md5: bd3cdd6b014da3b5e717a64bade54654 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-gtksource-3.0 Priority: optional Section: libs Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtksourceview3 Version: 3.10.2-0ubuntu1 Depends: gir1.2-gtk-3.0, libgtksourceview-3.0-1 (>= 3.10.0) Filename: pool/main/g/gtksourceview3/gir1.2-gtksource-3.0_3.10.2-0ubuntu1_amd64.deb Size: 13890 MD5sum: 794abebd71edf1bb8796d7ee0255a887 SHA1: c484360770a1c69319e4c2ef42b109a74e2306e0 SHA256: d357ea8b18f3046f13a3600325fdf6e44b47243484b3fbbf3276e56dee210c95 Description: gir files for the GTK+ syntax highlighting widget Homepage: http://projects.gnome.org/gtksourceview/ Description-md5: cbb588ad5836e297ad1d488393c56be7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gtkspell3-3.0 Priority: optional Section: introspection Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtkspell3 Version: 3.0.4-1 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libgtkspell3-3-0 (>= 3.0.3) Filename: pool/main/g/gtkspell3/gir1.2-gtkspell3-3.0_3.0.4-1_amd64.deb Size: 2934 MD5sum: 3b3f01fc1117a2dccb3dee81047c10b5 SHA1: 903a0b90f5b7195581c0c99d349d8b70c2881855 SHA256: 3fc7837ccac50b1c27a0446f321bc9195d43d1fb26cd2794e781dd0c0a8e988f Description: GObject introspection data for the GtkSpell library Homepage: http://gtkspell.sourceforge.net/ Description-md5: 794a4b720b7e0b743b6bef5e77f3ca22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gtop-2.0 Priority: optional Section: libdevel Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgtop2 Version: 2.28.5-2 Depends: gir1.2-glib-2.0, libgtop2-7 (>= 2.24.0) Filename: pool/main/libg/libgtop2/gir1.2-gtop-2.0_2.28.5-2_amd64.deb Size: 11976 MD5sum: 6debabd18803d36b8bee23c707e3e30e SHA1: 68bbd07052107b3e2ae799d5566810dd62cf3de4 SHA256: 2b4e1e0749ebf211cc0b53798cfa7cdfa7a13911abd6ab95e14e3568009101d8 Description: gtop system monitoring library (gir bindings) Description-md5: 2645cb471358326290ce77b54b63dac8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-gucharmap-2.90 Priority: optional Section: libs Installed-Size: 281 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gucharmap Version: 1:3.10.1-0ubuntu2 Depends: gir1.2-gtk-3.0, gir1.2-pango-1.0, libgucharmap-2-90-7 (>= 1:3.4.0.1) Filename: pool/main/g/gucharmap/gir1.2-gucharmap-2.90_3.10.1-0ubuntu2_amd64.deb Size: 6928 MD5sum: 0650eba2b52bdb8a105472e1d0abfd2b SHA1: 804e1c94bdb5dbd9292ce62e3eddebc0874f4f43 SHA256: ddece373b64e309c7ebf1e61eac7d48b1fbef8375144ad3f147b51f02f2270c5 Description: GObject introspection data for the Unicode browser widget library Homepage: https://wiki.gnome.org/Gucharmap Description-md5: d5fe6cccb59d33ea7708000a049fedf5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gudev-1.0 Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd (204-5ubuntu20) Version: 1:204-5ubuntu20 Depends: gir1.2-glib-2.0, libgudev-1.0-0 (>= 165) Filename: pool/main/s/systemd/gir1.2-gudev-1.0_204-5ubuntu20_amd64.deb Size: 5484 MD5sum: cddfc7fd2086550a7fb0075ffe915a1c SHA1: e5c3eb9afe61283e1a30f8e36dd63410fcba7b3e SHA256: 9546e65beb071b904477dc744c3066d39af9f483dc743e5f62e37e4df1901248 Description: libgudev-1.0 introspection data Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 17b4f1d7865f064cde612f6abf30b636 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gupnp-1.0 Priority: optional Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: amd64 Source: gupnp Version: 0.20.10-1ubuntu1 Replaces: gir1.0-gupnp-1.0 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, gir1.2-gssdp-1.0, gir1.2-soup-2.4, libgupnp-1.0-4 (>= 0.20.9) Conflicts: gir1.0-gupnp-1.0 Filename: pool/main/g/gupnp/gir1.2-gupnp-1.0_0.20.10-1ubuntu1_amd64.deb Size: 8194 MD5sum: 9f640fcac29e0ce0da2f1b7b90313572 SHA1: 82b1df18b11cce0e87b03f956cb00ff3dbfe88ea SHA256: 30cc58f2b4e46020dc4fdb748a7a429feb824e62be1df4caa2990b66f07dc7fe Description: GObject introspection data for the GUPnP library Homepage: http://live.gnome.org/GObjectIntrospection Description-md5: 6a38bcbf4d96abcee783c7db0dbffa8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gupnpigd-1.0 Priority: optional Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: amd64 Source: gupnp-igd Version: 0.2.2-1 Depends: gir1.2-glib-2.0, libgupnp-igd-1.0-4 (>= 0.2.1) Filename: pool/main/g/gupnp-igd/gir1.2-gupnpigd-1.0_0.2.2-1_amd64.deb Size: 3016 MD5sum: 7f7c9d6c697ef10bcd1c9397e3ad60fa SHA1: 3d618d4a6ec226d9671b8e8e6a332a0f57527085 SHA256: 78bd5011e86a0983bb3e5d8d5e623891467bd533a95bd1d7b429f0219923b7c3 Description: GObject introspection data for the GUPnP IGD library Homepage: http://live.gnome.org/GObjectIntrospection Description-md5: 81f4ea8b350871b0d020a0e2ca6ee32a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gusb-1.0 Priority: extra Section: introspection Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: libgusb Version: 0.1.6-5 Depends: gir1.2-glib-2.0, libgusb2 (>= 0.1.5) Filename: pool/main/libg/libgusb/gir1.2-gusb-1.0_0.1.6-5_amd64.deb Size: 4398 MD5sum: 0b8740794c86e8b724905515e204949f SHA1: a79d948c3986be4369381285dd8109c4339bc1ea SHA256: d277b9785db1ebf66c4d0a3838bf1b5e8fef5d12ed3cf2b712abd4afc66f9bad Description: GObject introspection data for libgusb Homepage: http://www.hughski.com/downloads.html Description-md5: 31e266d00de17dd940874fd90941064f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gweather-3.0 Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgweather Version: 3.10.2-0ubuntu1 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libgweather-3-6 (>= 3.10.0) Filename: pool/main/libg/libgweather/gir1.2-gweather-3.0_3.10.2-0ubuntu1_amd64.deb Size: 6582 MD5sum: b46fef4c87dd54e5dd715f1ac31db7be SHA1: 31798557becb881e39ec055061847dc99bed0734 SHA256: 61e0d227d3d9c1487d50cdc2ecf7bbc5ebccd5ed4c057bd391e59d00d082795e Description: GObject introspection data for the GWeather library Description-md5: 638795aed97665a2afa63aa4e60c5689 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gxps-0.1 Priority: optional Section: introspection Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Savvas Radevic Architecture: amd64 Source: libgxps Version: 0.2.2-2ubuntu2 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libgxps2 (>= 0.2.1) Filename: pool/main/libg/libgxps/gir1.2-gxps-0.1_0.2.2-2ubuntu2_amd64.deb Size: 4026 MD5sum: 5cce28ed047458baae13e93892fb3a79 SHA1: 275128dd008b9e69e834e0e75878ae373197fbee SHA256: 41b1c3ac5c3b2bdb39391e4bb59fb2733dc5cc274e07e16ff5493938262a0834 Description: GObject introspection data for the gxps library Homepage: https://live.gnome.org/libgxps Description-md5: 9bace9af2707d467de2eeed8db04f4b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-harfbuzz-0.0 Priority: optional Section: introspection Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: amd64 Source: harfbuzz Version: 0.9.27-1 Depends: gir1.2-glib-2.0, libharfbuzz0b (>= 0.9.22) Filename: pool/main/h/harfbuzz/gir1.2-harfbuzz-0.0_0.9.27-1_amd64.deb Size: 13900 MD5sum: 1ef8ac3ce3d10e5ff3927805a14f2f25 SHA1: 3ac90a1a3b10d47c372817ab0506b71861061432 SHA256: 9b664cdbfa6971d936a0ebcd577e69c1e13202761fae035860d4733cfd77946c Description: OpenType text shaping engine (GObject introspection data) Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: 73d49920d5dd518c9cf268c2ffa20d38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-hud-2 Priority: optional Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Architecture: amd64 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud2 (= 13.10.1+14.04.20140402-0ubuntu1) Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/gir1.2-hud-2_13.10.1+14.04.20140402-0ubuntu1_amd64.deb Size: 2874 MD5sum: a453a3330df5d2293e642d55bc5c4714 SHA1: a3f623065e65e3d35e09b96f42a047d1fc9a9234 SHA256: de8a4626bd5130da40ae6b266a3a5d3aa46e31b4206363511e4290cb0c579a3a Description: typelib file for libhud2 Homepage: http://launchpad.net/hud Description-md5: 132e2d7534ebba5bd9dd3565bfef0fb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-hud-client-2 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Architecture: amd64 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud-client2 (= 13.10.1+14.04.20140402-0ubuntu1) Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/gir1.2-hud-client-2_13.10.1+14.04.20140402-0ubuntu1_amd64.deb Size: 3702 MD5sum: cfc221847cba21069ca844eb27b38c20 SHA1: 764158209c1a81d93b3ad3712d411b68ad8bc77b SHA256: da75eff99a1df582721f59474c8fab716de0e22fc8baa387d812ccb55525fa6b Description: typelib file for libhud-client-2 Homepage: http://launchpad.net/hud Description-md5: e3ebed3ce56a206c3d4e01263fac4f0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-ibus-1.0 Priority: optional Section: introspection Installed-Size: 341 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: ibus Version: 1.5.5-1ubuntu3 Depends: gir1.2-glib-2.0, libibus-1.0-5 (>= 1.5.5) Filename: pool/main/i/ibus/gir1.2-ibus-1.0_1.5.5-1ubuntu3_amd64.deb Size: 62006 MD5sum: d75c4f4fccb379771a0f4a3afbc91790 SHA1: 00237f6c276889e7c7017afe79336a5398a4078f SHA256: dc03534aefcae09184655bce43ce97dac4d63562d3641cb28810eaac2cd8f0da Description: Intelligent Input Bus - introspection data Homepage: http://code.google.com/p/ibus/ Description-md5: c39b02e52edca9051d32a1b84aa1381f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: gir1.2-ido3-0.1 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Architecture: amd64 Source: ido Version: 13.10.0+14.04.20140407-0ubuntu1 Depends: libido3-0.1-0 (>= 13.10.0+14.04.20140407-0ubuntu1) Filename: pool/main/i/ido/gir1.2-ido3-0.1_13.10.0+14.04.20140407-0ubuntu1_amd64.deb Size: 4650 MD5sum: 1648a0ca01ad5c448b175ea6560a5635 SHA1: e3cb4a834f0a4a48ee75426080945869ab2e897d SHA256: b1d954206844d8c7d7d8b72f4baacef4fb772b3c86863d49fcb98bf47e6f3b80 Description: Typelib file for libido3-0.1 Homepage: https://launchpad.net/ido Description-md5: bb7f368e7bdb21f88c804bac9be64243 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-javascriptcoregtk-1.0 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: gir1.2-webkit-1.0 (<< 1.5.0) Conflicts: gir1.0-webkit-1.0, gir1.2-webkit-1.0 (<< 1.5.0), gobject-introspection-repository Filename: pool/main/w/webkitgtk/gir1.2-javascriptcoregtk-1.0_2.4.0-1ubuntu2_amd64.deb Size: 11944 MD5sum: ac7f1ad5f6c888760ed3d61fbf71cdea SHA1: 4081465ca0efc0f86f42e41ab0050b18d150c76a SHA256: f24fb5d6b1a15ccba287c59af84d09ef0e4ca5cf5d1fb07b50e6a04dbfe5159b Description: JavaScript engine library from WebKitGTK+ - GObject introspection data Homepage: http://webkitgtk.org/ Description-md5: 9d556f63f3921052c006631a1b066bec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-javascriptcoregtk-3.0 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: gir1.2-webkit-3.0 (<< 1.5.0) Conflicts: gir1.0-webkit-3.0, gir1.2-webkit-3.0 (<< 1.5.0), gobject-introspection-repository Filename: pool/main/w/webkitgtk/gir1.2-javascriptcoregtk-3.0_2.4.0-1ubuntu2_amd64.deb Size: 11944 MD5sum: 74c581f771d4b664069be10cc872dfd1 SHA1: 21ce2cd2366014e1af93fe377317632fb36f1086 SHA256: da321cc5731d42588494a9b8dfc7b32ce676c2a9c6503ff0d1544e7b8f4f830a Description: JavaScript engine library from WebKitGTK+ - GObject introspection data Homepage: http://webkitgtk.org/ Description-md5: 21bf00274d5ad6876078c2b697e5743c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-json-1.0 Priority: optional Section: libs Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: json-glib Version: 0.16.2-1ubuntu1 Replaces: gir1.0-json-glib-1.0, gir1.2-json-glib-1.0 Depends: gir1.2-glib-2.0 (>= 0.9.12), libjson-glib-1.0-0 (>= 0.16.0) Conflicts: gir1.0-json-glib-1.0, gir1.2-json-glib-1.0 Filename: pool/main/j/json-glib/gir1.2-json-1.0_0.16.2-1ubuntu1_amd64.deb Size: 7324 MD5sum: 676784c1d55a0b25c198b2fc9f62c898 SHA1: e4be24d58fb074c07453067bef7497403c9d5f3a SHA256: c416450180a8e4cf8a0a9ed8adc5165a3cd684d1fe787bbe394e338a52a02e2e Description: GLib JSON manipulation library (introspection data) Homepage: https://wiki.gnome.org/JsonGlib Description-md5: 0f85fea1ebe80dc12ff040a9de582288 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-langtag-0.5 Priority: optional Section: introspection Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: liblangtag Version: 0.5.1-2 Depends: gir1.2-glib-2.0 Filename: pool/main/libl/liblangtag/gir1.2-langtag-0.5_0.5.1-2_amd64.deb Size: 7724 MD5sum: 748714b4306b6d6d3582fd85f7ffbf0e SHA1: f2fc7e0066645bab86089d0313df3f295af14646 SHA256: ccf0f0acc5c8319b277937b9e081a3ccf162ce65f949066049e056909c1ee707 Description: library to access tags for identifying languages - introspection Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: 5d8c04c5e4b0ea4b511a18580aa04fe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-lightdm-1 Priority: optional Section: libs Installed-Size: 68 Maintainer: Robert Ancell Architecture: amd64 Source: lightdm Version: 1.10.0-0ubuntu3 Depends: liblightdm-gobject-1-0 (= 1.10.0-0ubuntu3) Filename: pool/main/l/lightdm/gir1.2-lightdm-1_1.10.0-0ubuntu3_amd64.deb Size: 4806 MD5sum: 3e9a8c44a3c52c5a1ca7d4a5eb0662b2 SHA1: a8703f6c8d885e81c1847e7277111ef0a0b1cd35 SHA256: aef775aabb4f6b0390ff91b7231f87f5bb4c258acfae10a21698bbd423ee1ffb Description: Typelib file for liblightdm-1 Homepage: https://launchpad.net/lightdm Description-md5: 15edc3a87b41d0dccba5699c5b28aa73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-messagingmenu-1.0 Priority: optional Section: libs Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: indicator-messages Version: 13.10.1+14.04.20140410-0ubuntu1 Depends: gir1.2-glib-2.0, libmessaging-menu0 (>= 13.10.1+13.10.20130820) Filename: pool/main/i/indicator-messages/gir1.2-messagingmenu-1.0_13.10.1+14.04.20140410-0ubuntu1_amd64.deb Size: 2904 MD5sum: 7ca48516660900d74082fc8ac4b56a58 SHA1: e34827d172c952329f5a1f7f4c5a06ddafa41357 SHA256: a57d3bb1fa6fa15a138daa5cd5106553f6764c32262d6364e08c3aecd376a6ce Description: Messaging Menu - gir bindings Homepage: https://launchpad.net/indicator-messages Description-md5: c3332a75a05dc3da9846ebba71002ac1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-mx-1.0 Priority: optional Section: libs Installed-Size: 436 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: mx Version: 1.4.7-0ubuntu3 Depends: gir1.2-clutter-1.0, gir1.2-glib-2.0, gir1.2-gtk-2.0, libmx-1.0-2 (>= 1.4.1) Filename: pool/main/m/mx/gir1.2-mx-1.0_1.4.7-0ubuntu3_amd64.deb Size: 22068 MD5sum: 3dd789b55d12472f4ad20b6dda305b1b SHA1: 413ba978748c647c1c28cba46493e9dfddf5611d SHA256: 620eade6eefcc1c483a3c5174f3037ce17b7773a010a73c8129e052811222183 Description: GObject introspection data for the libmx library Homepage: http://www.clutter-project.org/ Description-md5: be97dd01cfceb8e3c4baee39f2bbb9ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-nautilus-3.0 Priority: optional Section: libdevel Installed-Size: 114 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: nautilus Version: 1:3.10.1-0ubuntu8 Replaces: gir1.0-nautilus-3.0 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libnautilus-extension1a (>= 1:2.91) Conflicts: gir1.0-nautilus-3.0 Filename: pool/main/n/nautilus/gir1.2-nautilus-3.0_3.10.1-0ubuntu8_amd64.deb Size: 5434 MD5sum: 8f210c537335e8fc489ab25601f79ec4 SHA1: 9c6cbaa3e9339fea08b0e42858fd3fddef0d4763 SHA256: 7f914bf55c5a5d0ee91eea70328ba3ce319ff93f7aff726d0c830a174a07edf5 Description: libraries for nautilus components - gir bindings Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: c96feb0c498fde4a37f1e7aa9514778c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-networkmanager-1.0 Priority: optional Section: libs Installed-Size: 260 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libnm-glib4 (>= 0.9.8.4), libnm-util2 (>= 0.9.8.0) Filename: pool/main/n/network-manager/gir1.2-networkmanager-1.0_0.9.8.8-0ubuntu7_amd64.deb Size: 35452 MD5sum: 41069a76fc04dfddd00e4e3c15a53d5f SHA1: 0eeb1122c2d5987e347ae4dbe755d0a4945edecb SHA256: c01eaa3f5fe973302abbfc232ba94de19f0baf563be164b260e04516e2c9ea86 Description: GObject introspection data for NetworkManager Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 1a7cb995cf66551c57433bbaf46aee25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-nmgtk-1.0 Priority: optional Section: libs Installed-Size: 71 Maintainer: Ubuntu Core Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager-applet Version: 0.9.8.8-0ubuntu4 Depends: gir1.2-gtk-3.0, gir1.2-networkmanager-1.0, libnm-gtk0 (>= 0.9.7.997) Filename: pool/main/n/network-manager-applet/gir1.2-nmgtk-1.0_0.9.8.8-0ubuntu4_amd64.deb Size: 4246 MD5sum: 79cba6b8e759f45eb4a1a96571743c83 SHA1: 431e30c8f4853332345796fdcdf9e27757c471a4 SHA256: cb0b4ea3950ffd09d15f023b380eff90abe6dad882482f20ea4da5031c1e3b8d Description: GObject introspection data for libnm-gtk Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: a6a3920bae0459439a680159bc6ba236 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-notify-0.7 Priority: optional Section: libs Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libnotify Version: 0.7.6-1ubuntu3 Depends: gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, libnotify4 (>= 0.7.3) Filename: pool/main/libn/libnotify/gir1.2-notify-0.7_0.7.6-1ubuntu3_amd64.deb Size: 3468 MD5sum: 2ce27878d9cf9e298d179f976ddeb9f3 SHA1: 0e4a8c204d4c2def6f3379a0c937e5e59be0614c SHA256: 0089dc906ac0ef16873f0131040bc6c667a024ecde87985516f3e9d545912b65 Description: sends desktop notifications to a notification daemon (Introspection files) Description-md5: be88d1ababa905c3de028ca3c2dba65c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-packagekitglib-1.0 Priority: optional Section: libs Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: amd64 Source: packagekit Version: 0.8.12-1ubuntu5 Depends: gir1.2-glib-2.0 (>= 0.10.1), libpackagekit-glib2-16 (>= 0.8.12) Filename: pool/main/p/packagekit/gir1.2-packagekitglib-1.0_0.8.12-1ubuntu5_amd64.deb Size: 27588 MD5sum: 6f16b5fcf3f8d27463db0e4003531890 SHA1: 1a604463a3a904b6416f334dedab9a32ef26ca89 SHA256: 6712c985a20dcb964f60593282e5ed4d20c6afece3f44fb9de76a81470dfbc4a Description: GObject introspection data for the PackageKit GLib library Homepage: http://www.packagekit.org Description-md5: 58dad6540a9f05da7569c62ae80d0533 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-pango-1.0 Priority: optional Section: libs Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: gir1.0-gtk-2.0 (<< 2.22), gir1.0-pango-1.0, gobject-introspection-repository Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libpango-1.0-0 (>= 1.36.0), libpangocairo-1.0-0 (>= 1.22.0), libpangoft2-1.0-0 (>= 1.14.0), libpangoxft-1.0-0 (>= 1.14.0) Conflicts: gir1.0-pango-1.0 Filename: pool/main/p/pango1.0/gir1.2-pango-1.0_1.36.3-1ubuntu1_amd64.deb Size: 19130 MD5sum: b3ab95f059dc28e8137e03a9e107af7d SHA1: 8271b731bd3940a027e22d0f670d177911a482e8 SHA256: 4fe5f1b7ca64c5df59da3f35e8120fd77f8979b932f4820e853267db39c6def3 Description: Layout and rendering of internationalized text - gir bindings Description-md5: f177c55f2e19760894bc8f51c468361c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-peas-1.0 Priority: extra Section: libs Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libpeas Version: 1.8.1-2ubuntu2 Replaces: gir1.0-libpeas-1.0, gir1.0-peas-1.0 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libpeas-1.0-0 (>= 1.6.2) Conflicts: gir1.0-libpeas-1.0, gir1.0-peas-1.0 Filename: pool/main/libp/libpeas/gir1.2-peas-1.0_1.8.1-2ubuntu2_amd64.deb Size: 5566 MD5sum: fec1559ee983722475f4e4b775a730a3 SHA1: 300db6a9a4e825e4b2e06b7f16d7226240c55431 SHA256: c306f50979584fc34a0f65bfa906b61dd2872b9d08ff7e03889e93f028875f3f Description: Application plugin library (introspection files) Homepage: https://wiki.gnome.org/Libpeas Description-md5: 39453a6e0ce93895a424e482b96aa4d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-polkit-1.0 Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: gir1.2-glib-2.0, libpolkit-agent-1-0 (>= 0.105), libpolkit-gobject-1-0 (>= 0.105) Filename: pool/main/p/policykit-1/gir1.2-polkit-1.0_0.105-4ubuntu2_amd64.deb Size: 7138 MD5sum: 40f30012cff3d1fe35caa081264eed2e SHA1: 2a85541a0561a72de61e96a9f8bfbbb577a6831f SHA256: 68705bc5c5618f4dd7412cd1d473f719eeee4c7cb457182d1720d4579f4db7af Description: GObject introspection data for PolicyKit Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 4f1754998d1990ea4af7a70d3a9b9278 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-poppler-0.18 Priority: optional Section: introspection Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libpoppler-glib8 (>= 0.22.1) Filename: pool/main/p/poppler/gir1.2-poppler-0.18_0.24.5-2ubuntu4_amd64.deb Size: 13792 MD5sum: b01e9ac4208c7f757ef1120469233ec2 SHA1: cee9c10e2c1525cad1ea6bc2ef544c6c630450a6 SHA256: e3f06a0b9ba58fc4a1efa3ee6c6338e4ab12fbf838e0cba894c8ba55ade6db24 Description: GObject introspection data for poppler-glib Homepage: http://poppler.freedesktop.org/ Description-md5: 6b6381807b3c5b1b31f06935b5817c74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-rb-3.0 Priority: optional Section: libs Installed-Size: 581 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: rhythmbox Version: 3.0.2-0ubuntu1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, gir1.2-gst-plugins-base-1.0, gir1.2-gstreamer-1.0, gir1.2-gtk-3.0, librhythmbox-core8 (>= 3.0.2) Filename: pool/main/r/rhythmbox/gir1.2-rb-3.0_3.0.2-0ubuntu1_amd64.deb Size: 37606 MD5sum: 03b33a2d8f1c46008745acfc7802920f SHA1: 9e4ec1032e7182df313241c7ba62536bed4bf8fe SHA256: a16f332018eea215b3bc6f86cc8bf1fb2e13eb613c38b6843e16b371a807b65e Description: GObject introspection data for the rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 43faa5bf87ed9c2f0ca8769fadf80dd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-rest-0.7 Priority: optional Section: libs Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: librest Version: 0.7.90-0ubuntu1 Depends: gir1.2-glib-2.0, librest-0.7-0 (>= 0.7.90) Filename: pool/main/libr/librest/gir1.2-rest-0.7_0.7.90-0ubuntu1_amd64.deb Size: 8464 MD5sum: d996acc6faa960146be4e10d6afbef27 SHA1: 6adfa307c689905b1e0210ee2dc3696c6190c6f4 SHA256: d52fa9557a32cc5e1045dfee2d2fcac1452d7f754fe1c500cdc2e8737b96136a Description: REST service access library (introspection files) Homepage: http://www.gnome.org/ Description-md5: 20603212d512dbb9aa6548318a9e63da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-rest-extras-0.7 Priority: optional Section: libs Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: librest Version: 0.7.90-0ubuntu1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, gir1.2-rest-0.7 (= 0.7.90-0ubuntu1), librest-extras-0.7-0 Filename: pool/main/libr/librest/gir1.2-rest-extras-0.7_0.7.90-0ubuntu1_amd64.deb Size: 4634 MD5sum: 1ccf2b4ef6961b9e2bb7ca57004362e3 SHA1: f340818c89baae14cdac4857e7e7f0eb9732a983 SHA256: 79c0a8466a4d4086eeb3acc6292848d1789af0ab11d80eeedea89ae96ba296c5 Description: REST service access library extra components (introspectionfiles) Homepage: http://www.gnome.org/ Description-md5: db3563d5908b29a3c9b980deadfc403a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-rsvg-2.0 Priority: optional Section: libs Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: librsvg Version: 2.40.2-1 Depends: gir1.2-freedesktop, gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, librsvg2-2 (>= 2.35.2) Filename: pool/main/libr/librsvg/gir1.2-rsvg-2.0_2.40.2-1_amd64.deb Size: 3550 MD5sum: 3814183e2a8ef2e516ac694447d51374 SHA1: 7f05047bb8ed978a49e1c6e9f2d7f69d10306c4c SHA256: 9400a003964109f61e33bc641a0acac7ec72a21e35821f327e03d5811f90c851 Description: gir files for renderer library for SVG files Homepage: http://live.gnome.org/LibRsvg Description-md5: a992477456c546e734bee1939289530a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-secret-1 Priority: optional Section: introspection Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libsecret Version: 0.16-0ubuntu1 Depends: gir1.2-glib-2.0, libsecret-1-0 (>= 0.16) Filename: pool/main/libs/libsecret/gir1.2-secret-1_0.16-0ubuntu1_amd64.deb Size: 8032 MD5sum: 6d8dcca2408ef01b7125155657967a3e SHA1: 09ac292d516bfe2ea2eef82ca33e47bd34119365 SHA256: 3b42c987f948fb85a7652f9b263fa41a379a11c32113959cc21da86d67990f0d Description: Secret store (GObject-Introspection) Homepage: https://live.gnome.org/Libsecret Description-md5: 282aebbdbea3a39223d0f976ec4df8d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-signon-1.0 Priority: optional Section: libs Installed-Size: 81 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libsignon-glib Version: 1.10daily13.06.25-0ubuntu2 Depends: libsignon-glib1 (= 1.10daily13.06.25-0ubuntu2) Filename: pool/main/libs/libsignon-glib/gir1.2-signon-1.0_1.10daily13.06.25-0ubuntu2_amd64.deb Size: 5360 MD5sum: 524c78bcca414ff0a1e3ebd38befe739 SHA1: 9e46d461a720a461e15fc2d8be64283d280619a5 SHA256: 8d0fee7de429fa721f458f7afabee955bee5df9b490bddf7930fdca16276ae2c Description: GObject introspection data for the Signon library Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 4c90684f152719c7772c481917663d90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-soup-2.4 Priority: optional Section: libs Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Provides: gir1.2-soup-gnome-2.4 Depends: gir1.2-glib-2.0, libsoup-gnome2.4-1 (>= 2.27.4), libsoup2.4-1 (>= 2.44.0) Conflicts: gir1.0-soup-2.4, gir1.0-soup-gnome-2.4 Filename: pool/main/libs/libsoup2.4/gir1.2-soup-2.4_2.44.2-1ubuntu2_amd64.deb Size: 22428 MD5sum: ad291b0ada2ae509931969682466d2c3 SHA1: 1241c77132e4300791344d97bb5ead25c91ecdca SHA256: 5620b3ea907a21c67b107db83d84d45ac10915c203101cff8e428d0238d2eaa2 Description: GObject introspection data for the libsoup HTTP library Description-md5: 538da50445bc19b8ea14ae946fa95a44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-telepathyglib-0.12 Priority: optional Section: libs Installed-Size: 264 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-glib Version: 0.22.1-1ubuntu2 Replaces: gir1.0-telepathyglib-0.12 Depends: gir1.2-glib-2.0, libtelepathy-glib0 (>= 0.21.2) Conflicts: gir1.0-telepathyglib-0.12 Filename: pool/main/t/telepathy-glib/gir1.2-telepathyglib-0.12_0.22.1-1ubuntu2_amd64.deb Size: 48266 MD5sum: 387e48b75ae8f36002d19ae8bf81e08d SHA1: 0e16dec1a6ec2ccc847a6c8013bfddbc6ee56652 SHA256: 89b006e9de746f0a95936a205be4537efc250bfc9c46d3705b71306ed378d5b4 Description: GLib Telepathy connection manager library (GObject-Introspection) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 79b134317a8965965a687e169f21caea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-telepathylogger-0.2 Priority: optional Section: libs Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-logger Version: 0.8.0-3 Depends: gir1.2-glib-2.0, gir1.2-telepathyglib-0.12, libtelepathy-logger3 (>= 0.8.0) Filename: pool/main/t/telepathy-logger/gir1.2-telepathylogger-0.2_0.8.0-3_amd64.deb Size: 4428 MD5sum: cc3319fcd492ba52992a7ffcea06132d SHA1: 0c622e39cf3571e6b693eb515d7165ee11a987dc SHA256: cdebf8f1e5398b4402c395810fb40a0814e3c8f4ad48699f340d332c8b0a1bd4 Description: Telepathy logger service - introspection Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 9d322246efc6be61a33d36f696cd71ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-timezonemap-1.0 Priority: optional Section: libs Installed-Size: 38 Maintainer: Ubuntu Developers Architecture: amd64 Source: libtimezonemap Version: 0.4.1 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-json-1.0, libtimezonemap1 (>= 0.4.1) Filename: pool/main/libt/libtimezonemap/gir1.2-timezonemap-1.0_0.4.1_amd64.deb Size: 2630 MD5sum: dc3e9dfc89d7a7520f0059a933606b31 SHA1: 3fcaf5aef194ef8b78ae7f39a5b5315d54dbb383 SHA256: 900d6e33f60d56736c3fe9fb66ce8d714a47ae2899cc904ab58ff9d4ff8937ef Description: typelib interface for libtimezonemap Description-md5: 231074d1b59567e384d19c2c4a8351dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: gir1.2-totem-1.0 Priority: optional Section: libs Installed-Size: 320 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: totem Version: 3.10.1-1ubuntu4 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-totem-plparser-1.0, libtotem0 (<< 3.11), libtotem0 (>= 3.10.1-1ubuntu4) Filename: pool/main/t/totem/gir1.2-totem-1.0_3.10.1-1ubuntu4_amd64.deb Size: 5674 MD5sum: 115f351b41d39d91eaf9c693fb311562 SHA1: 4e468f9071f2b2c2684fb2158187cfc1d8866bea SHA256: 4e3955d202198635152125f9f0c53ee0e26aed58b7fe55a8063dc81e5e5c1ba7 Description: GObject introspection data for Totem media player Homepage: http://www.gnome.org/projects/totem/ Description-md5: f8fb0d202ba3f9170c84de5e0c27a305 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-totem-plparser-1.0 Priority: optional Section: libs Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: totem-pl-parser Version: 3.10.2-0ubuntu1 Replaces: gir1.0-totem-plparser-1.0 Depends: gir1.2-glib-2.0, libtotem-plparser18 (>= 3.10.0) Conflicts: gir1.0-totem-plparser-1.0 Filename: pool/main/t/totem-pl-parser/gir1.2-totem-plparser-1.0_3.10.2-0ubuntu1_amd64.deb Size: 4760 MD5sum: d3eea38f6897226d2fad1729969e6afa SHA1: 6f54f5faddc2ffcf742def0b2387a6c3a8db8031 SHA256: 3735bfe9368af57492ceae725d488b831dacca5b9b5780a54b3ffa34f545528b Description: GObject introspection data for the Totem Playlist Parser library Description-md5: 6dff5eed01c354550bf8d8578ef0f76a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-udisks-2.0 Priority: optional Section: introspection Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: udisks2 Version: 2.1.3-1 Depends: gir1.2-glib-2.0, libudisks2-0 (>= 2.1.1) Filename: pool/main/u/udisks2/gir1.2-udisks-2.0_2.1.3-1_amd64.deb Size: 16246 MD5sum: 61a468526fa4929ce9b4a4f32373e88f SHA1: e07b53dacdc246e36a842e0ef748114b520b281c SHA256: 209187d5f2ccb03fd2e3cbbc37f0b02eb98f63c9aa63ad864f11dd9c3de0f000 Description: GObject based library to access udisks2 - introspection data Homepage: http://www.freedesktop.org/wiki/Software/udisks Description-md5: f5f1b5062052b10eabb6cc3d51d6bd13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-umockdev-1.0 Priority: optional Section: introspection Installed-Size: 38 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: amd64 Source: umockdev Version: 0.8.1-1 Depends: libumockdev0 (>= 0.8.1-1), gir1.2-glib-2.0 Filename: pool/main/u/umockdev/gir1.2-umockdev-1.0_0.8.1-1_amd64.deb Size: 2592 MD5sum: c050d2bf552d166413112463b244a437 SHA1: 904825af65735502aebf40988b63b69eccf5557b SHA256: 7126454a40893eecf42b7b519050c1cd2b7addb49aa81d7480012daba9b88593 Description: introspection data for umockdev library Homepage: https://github.com/martinpitt/umockdev/ Description-md5: fbb61fba8c934a3abb2dd226ec23d275 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-unity-5.0 Priority: optional Section: libs Installed-Size: 155 Maintainer: Ubuntu Core Developers Architecture: amd64 Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Depends: gir1.2-dbusmenu-glib-0.4, gir1.2-dee-1.0, gir1.2-glib-2.0, libunity9 (>= 7.1.1+13.10.20130920) Filename: pool/main/libu/libunity/gir1.2-unity-5.0_7.1.4+14.04.20140210-0ubuntu1_amd64.deb Size: 17434 MD5sum: cbe71b50ae0a0e29ab45b2921c422a2f SHA1: faf1ef914b5d18a02dc3e12508398c5b87fb25ac SHA256: f832552981866d68f3bae45f88f723c8516ec654f69e4165c5ec4bf433008807 Description: GObject introspection data for the Unity library Multi-Arch: same Homepage: https://launchpad.net/libunity Description-md5: 162c569a3952f4e1717dfc2d72f6bb6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-unity-webapps-0.2 Priority: optional Section: introspection Installed-Size: 63 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libunity-webapps Version: 2.5.0~+14.04.20140409-0ubuntu1 Filename: pool/main/libu/libunity-webapps/gir1.2-unity-webapps-0.2_2.5.0~+14.04.20140409-0ubuntu1_amd64.deb Size: 8666 MD5sum: ff8e2a7fa881cc16397fa9b52b54a261 SHA1: f37f43b86bce4da94bd6f3651228995ff164ad1c SHA256: 4dfc69bed8065a5d3ce361fc07ba2ade050e7f1aca59605ac0d8d5fc16d84e8a Description: GObject introspection data for the UnityWebapps library Homepage: https://launchpad.net/libunity-webapps Description-md5: aa958933c4aff1c55b3d2a05924987fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-upowerglib-1.0 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: upower Version: 0.9.23-2ubuntu1 Depends: gir1.2-glib-2.0, libupower-glib1 (>= 0.9.11) Filename: pool/main/u/upower/gir1.2-upowerglib-1.0_0.9.23-2ubuntu1_amd64.deb Size: 5814 MD5sum: 9651612740259c5ed5fc7571506c4805 SHA1: bc20519b3aa52315f17381ab5c2fe96356ac91de SHA256: e5ed49e2eb2580c68f03752ab21440c61ddf83ba9cb0ffbd34fe560ee93c75bf Description: GObject introspection data for upower Homepage: http://upower.freedesktop.org/ Description-md5: e44c29e9141611d185719724f06044c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-upstart-app-launch-2 Priority: optional Section: libs Installed-Size: 43 Maintainer: Ted Gould Architecture: amd64 Source: upstart-app-launch Version: 0.3+14.04.20140411-0ubuntu1 Depends: libupstart-app-launch2 (= 0.3+14.04.20140411-0ubuntu1), gir1.2-glib-2.0 Recommends: upstart-app-launch (= 0.3+14.04.20140411-0ubuntu1) Filename: pool/main/u/upstart-app-launch/gir1.2-upstart-app-launch-2_0.3+14.04.20140411-0ubuntu1_amd64.deb Size: 3022 MD5sum: 58a0fa27570eb4ff16fe7e6cc13770de SHA1: 3b584fc8d61670fa4a0c8f006881120812f3b634 SHA256: b030c39d88bc0c1cb57006e28dccc0a9e990a10fcc06f549bedd1743d25c74ec Description: typelib file for libupstart-app-launch2 Homepage: http://launchpad.net/upstart-app-launch Description-md5: d08ea3af8508e7409917d7cd0bc49a0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-vte-2.90 Priority: optional Section: libs Installed-Size: 436 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: vte3 Version: 1:0.34.9-1ubuntu1 Depends: gir1.2-gtk-3.0, gir1.2-pango-1.0, libvte-2.90-9 (>= 1:0.34.2) Filename: pool/main/v/vte3/gir1.2-vte-2.90_0.34.9-1ubuntu1_amd64.deb Size: 6558 MD5sum: 3da4520d1fd74c2c39d1de42cbeee13f SHA1: 5b70564ac8ea979717cdb20191dffbe3c4b2ec4f SHA256: 7a863e0e33f59b53d256c66e700bd677a421171d81e8fea0cda08d9f674b0f5c Description: GObject introspection data for the VTE library Description-md5: 41cb5d8a8e27456cf39b3e3fdc888730 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-webkit-1.0 Priority: optional Section: libs Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: gir1.2-javascriptcoregtk-1.0 (= 2.4.0-1ubuntu2), gir1.2-glib-2.0, gir1.2-gtk-2.0, gir1.2-soup-2.4, libwebkitgtk-1.0-0 (>= 2.3.90) Conflicts: gir1.0-webkit-1.0, gobject-introspection-repository Filename: pool/main/w/webkitgtk/gir1.2-webkit-1.0_2.4.0-1ubuntu2_amd64.deb Size: 60124 MD5sum: b497dad2534550542aefa1b8ebe0fdcd SHA1: e1f5b5f3d688aaed26e56c4f89bb98d64a44dd95 SHA256: 618914ebd549be5a79d1d994df047cd5977f628997e61b19da5a8ff8216d6cf3 Description: Web content engine library for GTK+ - GObject introspection data Homepage: http://webkitgtk.org/ Description-md5: 542f5a085cb7a4301e3da6c74903baa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-webkit-3.0 Priority: optional Section: libs Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: gir1.2-javascriptcoregtk-3.0 (= 2.4.0-1ubuntu2), gir1.2-glib-2.0, gir1.2-gtk-3.0 (>= 3.10.0), gir1.2-soup-2.4, libwebkitgtk-3.0-0 (>= 2.3.90) Conflicts: gir1.0-webkit-3.0, gobject-introspection-repository Filename: pool/main/w/webkitgtk/gir1.2-webkit-3.0_2.4.0-1ubuntu2_amd64.deb Size: 60082 MD5sum: 24dba7bf55d0c119bdea2434769940b0 SHA1: 48c26453a632c110f26d812e50f1358d7dccf098 SHA256: dc93ef28516238d33028098bd7e7840dd97a7416280fef331699faaf1f9f75a9 Description: Web content engine library for GTK+ - GObject introspection data Homepage: http://webkitgtk.org/ Description-md5: 77672bb78379c44449a96bdac9a39ec6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-webkit2-3.0 Priority: optional Section: introspection Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: gir1.2-javascriptcoregtk-3.0 (= 2.4.0-1ubuntu2), gir1.2-glib-2.0, gir1.2-gtk-3.0 (>= 3.10.0), gir1.2-soup-2.4, libwebkit2gtk-3.0-25 (>= 2.3.90) Conflicts: gir1.0-webkit-3.0, gobject-introspection-repository Filename: pool/main/w/webkitgtk/gir1.2-webkit2-3.0_2.4.0-1ubuntu2_amd64.deb Size: 26542 MD5sum: 299f8981dcd927427800094e1747baae SHA1: b6adf050e066714f8d87220482baf2b480099cb2 SHA256: 32803cf4521d93f46282e6408f700d510741e71ebe1f4985fd01b18a2cc8c3d7 Description: WebKit2 API layer for WebKitGTK+ - GObject introspection data Homepage: http://webkitgtk.org/ Description-md5: 930ecccf58bd28080ded64da6b9507d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-wnck-1.0 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libwnck Version: 1:2.30.7-0ubuntu4 Replaces: gir1.0-wnck-1.0 Depends: gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-2.0, libwnck22 (>= 1:2.30.2-0ubuntu3) Conflicts: gir1.0-wnck-1.0 Filename: pool/main/libw/libwnck/gir1.2-wnck-1.0_2.30.7-0ubuntu4_amd64.deb Size: 8426 MD5sum: 2ce5d1ce5a4ca4d609766992cb17f33e SHA1: d73cf3dca5ee3c1426348a9e155fc55093c6870d SHA256: 63b9048e52a5014c0c727027425e0fb11c03d44563863350f12bacb099cae307 Description: GObject introspection data for the WNCK library Description-md5: 27983425e71085c70259e80ee712ca44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-wnck-3.0 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libwnck3 Version: 3.4.7-0ubuntu3 Depends: gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, libwnck-3-0 (>= 3.4.7) Filename: pool/main/libw/libwnck3/gir1.2-wnck-3.0_3.4.7-0ubuntu3_amd64.deb Size: 8776 MD5sum: 5b1507a5b01e73dc006278462dbf6da9 SHA1: d3b1b06f6ca1b893fbbbe9adcbb143e2ec215ed8 SHA256: dfb948996d1e314ad824eb0a4adf7c62cb4d35fc735227d338084c3221848834 Description: GObject introspection data for the WNCK library Description-md5: 27983425e71085c70259e80ee712ca44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-xkl-1.0 Priority: optional Section: introspection Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libxklavier Version: 5.4-0ubuntu1 Depends: libxklavier16 (= 5.4-0ubuntu1), gir1.2-freedesktop, gir1.2-glib-2.0 Filename: pool/main/libx/libxklavier/gir1.2-xkl-1.0_5.4-0ubuntu1_amd64.deb Size: 5482 MD5sum: e08ff67cdd0ba3466cee2951c6debcbd SHA1: b44f7ef34dd6249fa1b86900e02bf7ca4f2914ea SHA256: eb2a1c2f7044e25a6326c5d4be0345af21ba216d73153a36d9eaf6855d47b1f4 Description: X Keyboard Extension high-level API - introspection data Homepage: http://www.freedesktop.org/wiki/Software/LibXklavier Description-md5: 127c3bf2e772bac3955bc6eecb367d73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-desktop Package: gir1.2-zeitgeist-2.0 Priority: optional Section: introspection Installed-Size: 94 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: amd64 Source: zeitgeist Version: 0.9.14-0ubuntu4 Depends: libzeitgeist-2.0-0 (= 0.9.14-0ubuntu4), gir1.2-glib-2.0 Filename: pool/main/z/zeitgeist/gir1.2-zeitgeist-2.0_0.9.14-0ubuntu4_amd64.deb Size: 13530 MD5sum: 35c35d38843512022166adda1836fe7b SHA1: 3b99c91b796a2ad048a8176673606844bb611396 SHA256: 677095fc1c44c0eadcc0b5b3aad1a11ddf1b6224a8e24221f14873c60e723c28 Description: library to access Zeitgeist - gir bindings Homepage: http://zeitgeist-project.com/ Description-md5: 8ed57a0ba976858d02578ddf84c24542 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: git Priority: optional Section: vcs Installed-Size: 19736 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: amd64 Version: 1:1.9.1-1 Replaces: git-core (<< 1:1.7.0.4-1.), gitweb (<< 1:1.7.4~rc1) Provides: git-completion, git-core Depends: libc6 (>= 2.16), libcurl3-gnutls (>= 7.16.2), libexpat1 (>= 2.0.1), libpcre3, zlib1g (>= 1:1.2.0), perl-modules, liberror-perl, git-man (>> 1:1.9.1), git-man (<< 1:1.9.1-.) Recommends: patch, less, rsync, ssh-client Suggests: gettext-base, git-daemon-run | git-daemon-sysvinit, git-doc, git-el, git-email, git-gui, gitk, gitweb, git-arch, git-bzr, git-cvs, git-mediawiki, git-svn Breaks: bash-completion (<< 1:1.90-1), cogito (<= 0.18.2+), git-buildpackage (<< 0.6.5), git-core (<< 1:1.7.0.4-1.), gitosis (<< 0.2+20090917-7), gitpkg (<< 0.15), gitweb (<< 1:1.7.4~rc1), guilt (<< 0.33), stgit (<< 0.15), stgit-contrib (<< 0.15) Filename: pool/main/g/git/git_1.9.1-1_amd64.deb Size: 2555304 MD5sum: 3a0703f14625bed792f375eef4ca3ce9 SHA1: 03d6fdec51ef74e56c1435320cbd53930c67bff5 SHA256: 81cbdf0604569f2e413b40b07bf5c010c9e4bd36dfd6a22d83c41efc38ba8b72 Description: fast, scalable, distributed revision control system Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: c1f968556452a190fe359bffd151c012 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: git-bzr Priority: extra Section: vcs Installed-Size: 616 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: all Source: git Version: 1:1.9.1-1 Provides: git-remote-bzr Depends: git (>> 1:1.9.1), git (<< 1:1.9.1-.), python, python-bzrlib Suggests: git-doc, bzr Conflicts: bzr-git Filename: pool/main/g/git/git-bzr_1.9.1-1_all.deb Size: 14296 MD5sum: 6697976b80f32ea0822fd1d5d48ec14b SHA1: b38daa318bdfb2ead8840d2b4dd0d40521af6d99 SHA256: f7f5fe3d67aee57b9430d69112f764da1bfed005a39a7afacfa6644200ececb4 Description: fast, scalable, distributed revision control system (bzr interoperability) Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: dc3cedae18205b05c02fc2af4e8c08cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: git-core Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: all Source: git Version: 1:1.9.1-1 Depends: git (>> 1:1.7.0.2) Filename: pool/main/g/git/git-core_1.9.1-1_all.deb Size: 1452 MD5sum: 63a2e8ce4d19b346045fb05c9d0d5725 SHA1: 40ed2d641fde0e76e67612ab023ca5c2f97bd815 SHA256: 8d4f9e359ceb8a397448f48350e3b3a7e7f3b802b07d325c4bce9ba06cd5ea23 Description: fast, scalable, distributed revision control system (obsolete) Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: a5277a215be4fbea0e2f9300b9266151 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: git-doc Priority: optional Section: devel Installed-Size: 9614 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: all Source: git Version: 1:1.9.1-1 Suggests: git, git-arch, git-cvs, git-svn, git-email, gitk, gitweb Filename: pool/main/g/git/git-doc_1.9.1-1_all.deb Size: 843684 MD5sum: 753a7bee56930c6e7078949857beead7 SHA1: 4682a8f3ef5bced0b3b542b8fb1252b95df02156 SHA256: 4dd5baea410166cb274a7a79ec0f2fbfd2a61ba95171e1b683784857725bdf33 Description: fast, scalable, distributed revision control system (documentation) Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: 067fe3355198c178fc97b3730c54a120 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: git-man Priority: optional Section: vcs Installed-Size: 1265 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: all Source: git Version: 1:1.9.1-1 Replaces: git (<< 1:1.7.4~rc1), git-core (<< 1:1.7.0.4-1.) Breaks: git (<< 1:1.7.4~rc1) Filename: pool/main/g/git/git-man_1.9.1-1_all.deb Size: 698014 MD5sum: a02db7ff67aeb4adc1ed1824c16061ac SHA1: 0f3cc7e2f904a74c12a6852d1276dbba91dfe0bf SHA256: 68e29d8261598b114ec3af374fa098a755166f8c52f7f1e4f1f57a7f7c6cf054 Description: fast, scalable, distributed revision control system (manual pages) Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: 0c79f507738c0cb72351c8ae551ee47d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gitk Priority: optional Section: devel Installed-Size: 1220 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: all Source: git Version: 1:1.9.1-1 Depends: git (>> 1:1.9.1), git (<< 1:1.9.1-.), tk Suggests: git-doc Filename: pool/main/g/git/gitk_1.9.1-1_all.deb Size: 120602 MD5sum: 5fad677d673e20b1352d36f22ccaf57e SHA1: ad4b61892ae57fc039be5a78682d0af540a376bc SHA256: 1b2f10701623c94a66cf3284c4c8ee55f4258a376a1993d86172bd809834c5f4 Description: fast, scalable, distributed revision control system (revision tree visualizer) Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: 09d5ab78b8aa2f432bbf841a62bb9abc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gkbd-capplet Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnomekbd Version: 3.6.0-0ubuntu2 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.26), libgnomekbd8 (>= 2.91.90), libgtk-3-0 (>= 3.0.0), libxklavier16 (>= 5.0) Filename: pool/main/libg/libgnomekbd/gkbd-capplet_3.6.0-0ubuntu2_amd64.deb Size: 4794 MD5sum: 9b921cc71f12e5026e54daebd3229433 SHA1: a9ae51f5c6b56538f422e40a41b1d205f6674a52 SHA256: 9198ba933ac57aacd81eb9804fb7096be3dfe7fb21c3369e38962eb3efbe2231 Description: GNOME Panel applet for libgnomekbd Description-md5: 92c48b524e722191ce19dd5017839c09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: glance Priority: extra Section: python Installed-Size: 33 Maintainer: Ubuntu OpenStack Architecture: all Version: 1:2014.1-0ubuntu1 Depends: glance-api (= 1:2014.1-0ubuntu1), glance-registry (= 1:2014.1-0ubuntu1) Suggests: python-ceph Filename: pool/main/g/glance/glance_2014.1-0ubuntu1_all.deb Size: 1738 MD5sum: 2426aa4b6f4894e8718347841fba8132 SHA1: 13551f81407a43cb6d181b4af7d1751c1c308386 SHA256: 03c24ade0cbb1b9ea4f87856a4f43c2cfadd6cd3d7dad98d627539e08dd408d5 Description: OpenStack Image Registry and Delivery Service - Daemons Homepage: http://launchpad.net/glance Description-md5: 339da060766773f0f887cd36e425e1e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: glance-api Priority: extra Section: python Installed-Size: 142 Maintainer: Ubuntu OpenStack Architecture: all Source: glance Version: 1:2014.1-0ubuntu1 Replaces: glance (<< 2012.1~e1~20110919.1021-0ubuntu2) Depends: glance-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Recommends: python-glanceclient Filename: pool/main/g/glance/glance-api_2014.1-0ubuntu1_all.deb Size: 22772 MD5sum: 4501230d9fee6505a6c4dfd107ef3072 SHA1: 36adc3a9bbb2ad24c31d0673bd6bcff5973458f7 SHA256: a7dd5ff5fe00a6e36142a80e5bb758c85b68f01c80996115557da40fcdb5db25 Description: OpenStack Image Registry and Delivery Service - API Homepage: http://launchpad.net/glance Description-md5: 42730c4382da9ba8dd9214037a2fa93e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: glance-common Priority: extra Section: python Installed-Size: 86 Maintainer: Ubuntu OpenStack Architecture: all Source: glance Version: 1:2014.1-0ubuntu1 Replaces: glance (<= 2011.3-0ubuntu4.1) Depends: adduser, python-glance (= 1:2014.1-0ubuntu1), python:any Breaks: glance (<= 2011.3-0ubuntu4.1) Filename: pool/main/g/glance/glance-common_2014.1-0ubuntu1_all.deb Size: 6534 MD5sum: 7cf734f1e8d21019c9bef2c886032fa8 SHA1: 12acbd52959db80f40a7a099c0ce69c7967e4b4e SHA256: 4bf982309af032c01448f99a1fcb44e8faa34251279e041eec63bbfbcb1d7bb5 Description: OpenStack Image Registry and Delivery Service - Common Homepage: http://launchpad.net/glance Description-md5: 30114b8292754cb9dbc0df08ef8677a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: glance-registry Priority: extra Section: python Installed-Size: 71 Maintainer: Ubuntu OpenStack Architecture: all Source: glance Version: 1:2014.1-0ubuntu1 Replaces: glance (<< 2012.1~e1~20110919.1021-0ubuntu2) Depends: glance-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Recommends: python-glanceclient Filename: pool/main/g/glance/glance-registry_2014.1-0ubuntu1_all.deb Size: 6922 MD5sum: c8990cc392e13c9a806fc982917f72e1 SHA1: ef2d1d6dfaa2352e76609e1aa3937c71689f1c23 SHA256: 02b45eff1c9d8e85d73483f08c8a3fab077e59ba7ab21c1f8aa5430fbfdebc65 Description: OpenStack Image Registry and Delivery Service - Registry Homepage: http://launchpad.net/glance Description-md5: fe9b1490f5110376f973da81ebc05838 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: glib-networking Priority: optional Section: libs Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 2.40.0-1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.39.4), libgnutls26 (>= 2.12.17-0), libp11-kit0 (>= 0.11), libproxy1 (>= 0.4.7), glib-networking-services (>= 2.40.0-1), glib-networking-services (<< 2.40.0-1.1~), glib-networking-common (= 2.40.0-1), gsettings-desktop-schemas Breaks: libglib2.0-0 (<< 2.30.1-2) Filename: pool/main/g/glib-networking/glib-networking_2.40.0-1_amd64.deb Size: 40056 MD5sum: a73c5547dda20f0dbda565c7c6d24d74 SHA1: f56dad556984bbe0b97312fcd662427393deddb1 SHA256: 87f344de47abfc29631ef06cb1b8dc1e5dd517086363f9b9f9ee572674530bb1 Description: network-related giomodules for GLib Multi-Arch: same Description-md5: dce7ee23bcf70829c58fe6f9a749eca7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: glib-networking-common Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: glib-networking Version: 2.40.0-1 Replaces: glib-networking (<< 2.30.1-2) Recommends: glib-networking Breaks: glib-networking (<< 2.30.1-2) Filename: pool/main/g/glib-networking/glib-networking-common_2.40.0-1_all.deb Size: 9086 MD5sum: 17e5436407e0fca90d1848da85ee3c5a SHA1: 9d260a86d456f8253bf153e59d11f4ca47ee5ef0 SHA256: d19aa7d6e1944dbe0157d84329a2983194e96c8d340e9b87725bb6bf8578df89 Description: network-related giomodules for GLib - data files Multi-Arch: foreign Description-md5: 53a1d4e1dd58e8fb13abe57894840f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: glib-networking-dbg Priority: extra Section: debug Installed-Size: 1080 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: glib-networking Version: 2.40.0-1 Depends: glib-networking (= 2.40.0-1) Filename: pool/main/g/glib-networking/glib-networking-dbg_2.40.0-1_amd64.deb Size: 235956 MD5sum: 462f73b8fec38d9ccfd1e9da1851289b SHA1: b5031e8f8b407485ea4e79f15dbe739c713936a6 SHA256: 09a5e8518a4ba3a132467607690a509c138caf488a5c016cc3584f3b005aa6b1 Description: network-related giomodules for GLib - debugging symbols Description-md5: b6d3f8f2df66550f6d6317646b5d1ee2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: glib-networking-services Priority: optional Section: libs Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: glib-networking Version: 2.40.0-1 Replaces: glib-networking (<< 2.30.1-2) Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.39.3), libproxy1 (>= 0.4.7), glib-networking-common (= 2.40.0-1) Recommends: glib-networking Breaks: glib-networking (<< 2.30.1-2) Filename: pool/main/g/glib-networking/glib-networking-services_2.40.0-1_amd64.deb Size: 13876 MD5sum: 6f5ad92bb5874280e87dfe7a5c1b02cd SHA1: fa4adf126e47db728c8f174cab73c7b2c21460fe SHA256: 3bf31ec8425e47114c7a22e45045c4144a10985a33ed2888835bc309a9353abb Description: network-related giomodules for GLib - D-Bus services Multi-Arch: foreign Description-md5: 365372e1c223a507a4114d685b245121 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: glibc-doc Priority: optional Section: doc Installed-Size: 2273 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: all Source: eglibc Version: 2.19-0ubuntu6 Depends: glibc-doc-reference (>= 2.18) Filename: pool/main/e/eglibc/glibc-doc_2.19-0ubuntu6_all.deb Size: 20118 MD5sum: 7390ec3e4d4006a87e4331fc6b1ac792 SHA1: 77e44f6651efde40930ec98863f39ae253e54b09 SHA256: 9887154b7c607372054c7b1dfe0ba78b0819c022937549e8cd8f7d2348acc536 Description: Embedded GNU C Library: Documentation Multi-Arch: foreign Homepage: http://www.eglibc.org Description-md5: 49341b064b2f9185d1eb2c96e4a87c33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: glibc-doc-reference Priority: optional Section: doc Installed-Size: 11988 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: all Version: 2.19-0ubuntu1 Replaces: glibc-doc (<< 2.16) Conflicts: glibc-doc (<< 2.4) Breaks: glibc-doc (<< 2.16) Filename: pool/main/g/glibc-doc-reference/glibc-doc-reference_2.19-0ubuntu1_all.deb Size: 5129978 MD5sum: e2a8f67e9cdba5c46ada923d9857981b SHA1: b5aa87776d2fa9bffc3a0550c2eebd79bf534e9b SHA256: 97e66c713bbfa0cbe1220b6ae7769b20a6b35052dfb98467c57a85ac61d0a16b Description: GNU C Library: Documentation Description-md5: e6c7ec3ab323b394692e513eddd3c5de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-accessibility-themes Priority: optional Section: gnome Installed-Size: 4691 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-themes-standard Version: 3.10.0-1ubuntu2 Replaces: gnome-themes-standard (<< 3.6.2-1) Breaks: gnome-themes-standard (<< 3.6.2-1) Filename: pool/main/g/gnome-themes-standard/gnome-accessibility-themes_3.10.0-1ubuntu2_all.deb Size: 1964630 MD5sum: ed1cdc45c453f65f363987f51c568544 SHA1: dee5f356ffe8b1f723433527a0a44a538e3b7ac8 SHA256: b110ef43f1b683312dbe7bc7be37cd87e9bc3b3d60121cec8d4c16b3ee6e3ac1 Description: Accessibility themes for the GNOME desktop Multi-Arch: foreign Description-md5: 9a3883fd96857ae09e00959fd97705f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-bluetooth Priority: optional Section: gnome Installed-Size: 1112 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.8.2.1-0ubuntu4 Replaces: nautilus-sendto (<< 2.28.4-2) Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libgnome-bluetooth11 (>= 3.4.0), libgtk-3-0 (>= 3.0.0), dconf-gsettings-backend | gsettings-backend, gir1.2-glib-2.0, gir1.2-gnomebluetooth-1.0 (= 3.8.2.1-0ubuntu4), gir1.2-gtk-3.0, bluez (>= 4.36), obexd-client, udev (>= 154), obex-data-server Recommends: gvfs-backends, unity-control-center | gnome-control-center, gnome-user-share Conflicts: bluez-gnome Breaks: gnome-phone-manager (<< 0.67), nautilus-sendto (<< 3.0), network-manager-gnome (<< 0.9.0-3) Filename: pool/main/g/gnome-bluetooth/gnome-bluetooth_3.8.2.1-0ubuntu4_amd64.deb Size: 130342 MD5sum: 5fd0e53637f61fdd06985984e1eb334f SHA1: a025f6eaa208bdfdb43e1677d12c91b9f1d847aa SHA256: ca87d28735a149753fdc75a920e49315128f1542e61ca4c020e99b2967ac02e5 Description: GNOME Bluetooth tools Homepage: https://wiki.gnome.org/GnomeBluetooth Description-md5: 8a12c9e4bfc6922e61abb655aec6a01b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-calculator Priority: optional Section: math Installed-Size: 2028 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 1:3.10.2-0ubuntu1 Replaces: gcalctool (<< 6.7) Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libglib2.0-0 (>= 2.31.18), libgtk-3-0 (>= 3.3.16), libpango-1.0-0 (>= 1.14.0), libxml2 (>= 2.7.4), dconf-gsettings-backend | gsettings-backend Recommends: yelp, gvfs, gnome-icon-theme Breaks: gcalctool (<< 6.7) Filename: pool/main/g/gnome-calculator/gnome-calculator_3.10.2-0ubuntu1_amd64.deb Size: 204994 MD5sum: 09b2e12b05cd0d7f5b4e7b09a50b6f85 SHA1: 7b17f9afe879415812ac645787488f0ba1a44e50 SHA256: 9bb2dc90aaccddef6434a2115e136de8a2b07415da9185d6c864152eff805b96 Description: GNOME desktop calculator Homepage: https://live.gnome.org/Calculator Description-md5: b799a60ac654f01c9ce535852ae2ec77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-common Priority: optional Section: gnome Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.10.0-1 Depends: autoconf, automake (>= 1:1.11), libtool, pkg-config, gettext, intltool, autopoint Filename: pool/main/g/gnome-common/gnome-common_3.10.0-1_all.deb Size: 15690 MD5sum: 34538c146a8cfb660f1bcea1154426a6 SHA1: d65c546c695573ad485c3e35629eecaa74149f49 SHA256: eef46a5df7008435054419cf0eb49cd9cbd1da92fea9772c3742b2e81751e110 Description: common scripts and macros to develop with GNOME Description-md5: 1c22ca15aa3a851a0b1118ceed08aff6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-contacts Priority: optional Section: gnome Installed-Size: 948 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.8.3-1ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.3.4), libcairo2 (>= 1.10.0), libcheese-gtk23 (>= 3.4.0), libcheese7 (>= 3.0.1), libedataserver-1.2-18 (>= 3.5.91), libfolks-eds25 (>= 0.7.3), libfolks-telepathy25 (>= 0.6.0), libfolks25 (>= 0.9.1), libgdk-pixbuf2.0-0 (>= 2.25.2), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.2.0), libgtk-3-0 (>= 3.7.10), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libtelepathy-glib0 (>= 0.17.6), dconf-gsettings-backend | gsettings-backend Filename: pool/main/g/gnome-contacts/gnome-contacts_3.8.3-1ubuntu1_amd64.deb Size: 190274 MD5sum: f2cf9173f89949235320f5c1b8f75afc SHA1: a4a891c92a0ccdf653f0acc0d522f554e79a966c SHA256: efcf18471f2c90d9dbfb468bfe93d618146522720b0b2f2592895c550455a5ea Description: Contacts manager for GNOME Description-md5: 79d9d8cdf2b5dd4c7e214e8397694bcd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-control-center Priority: optional Section: gnome Installed-Size: 3447 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 1:3.6.3-0ubuntu56 Replaces: gnome-bluetooth (<< 3.4.0) Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libcheese-gtk23 (>= 3.4.0), libcheese7 (>= 3.0.1), libcolord1 (>= 0.1.29), libcups2 (>= 1.6.0), libdbus-glib-1-2 (>= 0.78), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.23.0), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgnome-bluetooth11 (>= 3.4.0), libgnome-control-center1 (>= 1:3.5.2), libgnome-desktop-3-7 (>= 3.7.3), libgnome-menu-3-0 (>= 3.2.0.1), libgoa-1.0-0b (>= 3.5.90), libgoa-backend-1.0-1 (>= 3.10.0), libgtk-3-0 (>= 3.5.13), libgtop2-7 (>= 2.22.3), libibus-1.0-5 (>= 1.5.1), libkrb5-3 (>= 1.8+dfsg), libnm-glib4 (>= 0.9.2.0+git201202091648.c24c4d4), libnm-gtk0 (>= 0.9.1.95), libnm-util2 (>= 0.9.1.90+git.20111206t233146.dff0d2a), libnotify4 (>= 0.7.3), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.18.0), libpolkit-gobject-1-0 (>= 0.99), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), libpwquality1 (>= 1.1.0), libsystemd-login0 (>= 31), libupower-glib1 (>= 0.9.2), libwacom2 (>= 0.6), libx11-6, libxi6 (>= 2:1.2.99.4), libxml2 (>= 2.7.4), accountsservice, apg, desktop-file-utils, gkbd-capplet (>= 3.5.90), gnome-control-center-data (<< 1:3.7), gnome-control-center-data (>= 1:3.6.3-0ubuntu56), gnome-desktop3-data, gnome-icon-theme (>= 2.24), gnome-icon-theme-symbolic, gnome-menus (>= 2.12.0), gnome-settings-daemon (>= 3.8.4), gsettings-desktop-schemas (>= 3.5.91) Recommends: cups-pk-helper, gnome-session-bin, ubuntu-system-service, ibus (>= 1.5.0), iso-codes, mousetweaks, policykit-1-gnome, libcanberra-pulse, system-config-printer-gnome, gnome-control-center-shared-data Suggests: gnome-screensaver | xscreensaver, gnome-user-guide | ubuntu-docs, gstreamer0.10-pulseaudio, libcanberra-gtk-module, x11-xserver-utils Breaks: compiz (<< 1:0.9.8+bzr330), gnome-bluetooth (<< 3.4.0), gnome-power-manager (<< 3.0), gnome-session (<< 3.0), libglib2.0-0 (<< 2.28.6-2), metacity (<< 1:2.34.2), unity (<< 6.2-0ubuntu2~) Filename: pool/main/g/gnome-control-center/gnome-control-center_3.6.3-0ubuntu56_amd64.deb Size: 464112 MD5sum: 00a852a4be2c6bf248784a6dfd7f120f SHA1: 0b464476257d032f385485472ec9092edf6a9068 SHA256: bec3b8f3372ec58f9d94bfaf642ae53d61b2042cab4c56af660d7d6f52d31304 Description: utilities to configure the GNOME desktop Description-md5: 841ec7130e7cda8d105ccf44ab60b8fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gnome-control-center-data Priority: optional Section: gnome Installed-Size: 5100 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-control-center Version: 1:3.6.3-0ubuntu56 Replaces: capplets-data, gdm (<< 3.0), gdm3 (<< 3.0), gnome-media-common (<< 2.91), gnome-power-manager (<< 3.2), gnome-settings-daemon (<< 3.0) Provides: capplets-data Recommends: gnome-control-center (>= 1:3.6.3-0ubuntu56) Conflicts: capplets-data Breaks: gdm (<< 3.0), gdm3 (<< 3.0), gnome-power-manager (<< 3.2), gnome-settings-daemon (<< 3.0) Filename: pool/main/g/gnome-control-center/gnome-control-center-data_3.6.3-0ubuntu56_all.deb Size: 1216472 MD5sum: b5c0af991e56b87c86a85fd3560a4f93 SHA1: 9be1841fe16dbd02ee401c202833b8843fad92d1 SHA256: 96dd399196d959ecc5e14fa984ed9495aee3e7090763ca8f4f93fee8c54f8c4d Description: configuration applets for GNOME - data files Description-md5: 8bfe062731867305191b949e29fc5afa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gnome-control-center-dev Priority: optional Section: devel Installed-Size: 1506 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-control-center Version: 1:3.6.3-0ubuntu56 Filename: pool/main/g/gnome-control-center/gnome-control-center-dev_3.6.3-0ubuntu56_all.deb Size: 72764 MD5sum: 8b7f72f3e01901ff6fc2c833c1d61df9 SHA1: 6dbe4d4983c6fe110aa609a64f274f55d65f6b14 SHA256: d78ed4d195edd0c75c8dd7a623fca31a3bd2243da847c45f12f84a4e1827246f Description: utilities to configure the GNOME desktop Description-md5: ea55aa04a24ea847c61e4865c135347b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-control-center-shared-data Priority: optional Section: gnome Installed-Size: 1624 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-control-center Version: 1:3.6.3-0ubuntu56 Replaces: gnome-control-center-data (<< 1:3.6.3-0ubuntu54) Conflicts: gnome-control-center-data (<< 1:3.6.3-0ubuntu54) Filename: pool/main/g/gnome-control-center/gnome-control-center-shared-data_3.6.3-0ubuntu56_all.deb Size: 180722 MD5sum: 9cb509e3d08b99aef0454c6ac5de6ce1 SHA1: 09fdfcba1740cc99e8b0576d813002e1d0c03b7a SHA256: ac9693c5b10eebdc2555f728181ccb6837c4bc56becfb9af2cb7d70e29d1fe3c Description: configuration applets for GNOME - shared data Description-md5: 067e66f1b4aa5a4aea7fc154813ec964 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-desktop3-data Priority: optional Section: gnome Installed-Size: 600 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-desktop3 Version: 3.8.4-0ubuntu3 Replaces: gnome-desktop-data (<< 1:2.32.1-2) Breaks: gnome-desktop-data (<< 1:2.32.1-2) Filename: pool/main/g/gnome-desktop3/gnome-desktop3-data_3.8.4-0ubuntu3_all.deb Size: 49660 MD5sum: 0d2a2fdb300e3200854a4d357e7b00f2 SHA1: 50f1c751de81d360eb6d6ecf7ea3f1eac3178116 SHA256: e824451f12ede93984a983f964a09de143472d1030a3e91d5bfb101ef20c2fd5 Description: Common files for GNOME desktop apps Multi-Arch: foreign Description-md5: 5ce5840cc354bd74e7e4932be3851519 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-disk-utility Priority: optional Section: admin Installed-Size: 1208 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Version: 3.10.0-1ubuntu3 Depends: libc6 (>= 2.15), libcairo2 (>= 1.2.4), libcanberra-gtk3-0 (>= 0.25), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.8), liblzma5 (>= 5.1.1alpha+20120614), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libpwquality1 (>= 1.1.0), libsecret-1-0 (>= 0.7), libsystemd-login0 (>= 31), libudisks2-0 (>= 2.1.1), dconf-gsettings-backend | gsettings-backend, udisks2 (>= 2.1.1), gnome-icon-theme-symbolic Filename: pool/main/g/gnome-disk-utility/gnome-disk-utility_3.10.0-1ubuntu3_amd64.deb Size: 210550 MD5sum: f675204ec7801e50fd8b3c7b75e4743b SHA1: ce5c1cedc0fda79737afaa522ce4d9546c31319f SHA256: b10f3501db2bb8bb3652cfcfb58b3ba979a3132c56143b029a9269d489f3e093 Description: manage and configure disk drives and media Homepage: http://git.gnome.org/cgit/gnome-disk-utility/ Description-md5: 8bbfe121f73fcddf9e0a9c15f0e8afd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: gnome-doc-utils Priority: optional Section: gnome Installed-Size: 2512 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.20.10-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-libxml2, libxml2-utils, xsltproc Filename: pool/main/g/gnome-doc-utils/gnome-doc-utils_0.20.10-1build1_all.deb Size: 240166 MD5sum: c63a8e78dae5dff46773209ae2cf4767 SHA1: ed6d920e0c3424d63d0e1f6cdafe31adce85ec7c SHA256: c4c27350fdc84b2a925e42093da13741e3e887e14b5e4f96d0667b4a6f863dd5 Description: collection of documentation utilities for the GNOME project Homepage: https://live.gnome.org/GnomeDocUtils Description-md5: c3d9911ee7a34120e7583f410a1b1b75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-font-viewer Priority: optional Section: gnome Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.8.0-1build1 Replaces: capplets-data (<< 1:3.0.0), gnome-control-center (<< 1:3.0.0) Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.35.9), libgnome-desktop-3-7 (>= 3.2.0), libgtk-3-0 (>= 3.7.10), libpango-1.0-0 (>= 1.14.0) Breaks: capplets-data (<< 1:3.0.0), gnome-control-center (<< 1:3.0.0) Filename: pool/main/g/gnome-font-viewer/gnome-font-viewer_3.8.0-1build1_amd64.deb Size: 39218 MD5sum: ccc0147b14d1f0ec2842f4ece22a0300 SHA1: 3c8c18311c0a21ca98c485cae45487073746a3bb SHA256: 31af42fc39a75d1541598824752333d403521f75c6e3b5d334005208dea18cb2 Description: font viewer for GNOME Homepage: http://live.gnome.org/GnomeUtils Description-md5: 45d5c8d2f724b76011b8cba2eec0f28d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-icon-theme Priority: optional Section: gnome Installed-Size: 1074 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Version: 3.10.0-0ubuntu2 Replaces: gnome-icon-theme-full (<< 3.10.0-0ubuntu2) Depends: hicolor-icon-theme, libgtk-3-bin, librsvg2-common, humanity-icon-theme | gnome-icon-theme-full Breaks: evolution (<< 2.30), gnome-games (<< 1:2.30.2-1), mail-notification (<< 5.4.dfsg.1-2.2), netspeed (<< 0.15.2-2), rhythmbox (<< 0.12.8) Filename: pool/main/g/gnome-icon-theme/gnome-icon-theme_3.10.0-0ubuntu2_all.deb Size: 775460 MD5sum: 8993be3b5dc9499d209d7ae4d2f54d0c SHA1: f572c98c2799eba0f95e10c2c73975ff02ad9a64 SHA256: c79b89cb390d8f4bbebd42e7eef31d1e5e602ff8025f50c555fcd9ea983720b3 Description: GNOME Desktop icon theme (small subset) Enhances: nautilus (>= 2.2) Description-md5: ec613884d4bc3f3708c01949f5fec105 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-icon-theme-symbolic Priority: optional Section: gnome Installed-Size: 736 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.10.1-1ubuntu1 Replaces: gnome-power-manager (<< 3.2) Depends: hicolor-icon-theme, gnome-icon-theme (>= 3.10), gnome-icon-theme (<< 3.11) Breaks: gnome-power-manager (<< 3.2) Filename: pool/main/g/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic_3.10.1-1ubuntu1_all.deb Size: 92354 MD5sum: ab58385a397ef67b3288c5e38ca51183 SHA1: 9331a5b81cac36822820e1614da03505e2cdd786 SHA256: 5d616104ac6329622c3018e3cd84141a5e48428cc9ed0227feaecc5377ddc80a Description: GNOME desktop icon theme (symbolic icons) Enhances: gnome-icon-theme Description-md5: 800dd952295825b8b41722262e2a9ca1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-keyring Priority: optional Section: gnome Installed-Size: 3560 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Version: 3.10.1-1ubuntu4 Depends: dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.15), libcap-ng0, libdbus-1-3 (>= 1.1.1), libgck-1-0 (>= 3.3.90), libgcr-base-3-1 (>= 3.8.0), libgcrypt11 (>= 1.5.1), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), gcr (>= 3.4), dbus-x11, p11-kit (>= 0.16), libcap2-bin Pre-Depends: multiarch-support Recommends: libpam-gnome-keyring, libp11-kit-gnome-keyring Breaks: libgnome-keyring0 (<< 3.0), seahorse-plugins (<< 3.0) Filename: pool/main/g/gnome-keyring/gnome-keyring_3.10.1-1ubuntu4_amd64.deb Size: 565558 MD5sum: ff8d0f8b729829fa36df5f1782eaa690 SHA1: dd3094107d98ed6aea24375835b5f617d474b692 SHA256: 490542a7e794ec2f6c1793a3cd2f9f636a1b23491a3a7de7fe1320bc84f86b97 Description: GNOME keyring services (daemon and tools) Multi-Arch: foreign Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: ab339ead4844e2dd14c8a8c09473bb75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-mahjongg Priority: optional Section: games Installed-Size: 3972 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Version: 1:3.10.2-0ubuntu1 Replaces: mahjongg (<< 1:3.7.2) Depends: libc6 (>= 2.3.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.18), libgtk-3-0 (>= 3.4.0), librsvg2-2 (>= 2.32.0), dconf-gsettings-backend | gsettings-backend Recommends: yelp Breaks: mahjongg (<< 1:3.7.2) Filename: pool/main/g/gnome-mahjongg/gnome-mahjongg_3.10.2-0ubuntu1_amd64.deb Size: 2878226 MD5sum: b30cc4dc7b7b6a3c57364772aea62ad1 SHA1: 0ffb7d5fef31b23a2f3dbdb90db84d6429a52c3f SHA256: 01e22deb356c73c4a76d439f8c93a4c0b65bed32c5551afc114ca0d88b5b6f48 Description: classic Eastern tile game for GNOME Homepage: https://live.gnome.org/Mahjongg Description-md5: adc178a2d2b4ff75c015f3907a755657 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-menus Priority: optional Section: gnome Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.10.1-0ubuntu2 Depends: python3:any (>= 3.1~), python3 Breaks: alacarte (<< 0.13.2-2), gnome-control-center (<< 2.91), gnome-panel (<< 2.91) Filename: pool/main/g/gnome-menus/gnome-menus_3.10.1-0ubuntu2_amd64.deb Size: 23124 MD5sum: af9687a38fb81f5255bf4bfe9acb1b5a SHA1: 72e385e004136e3cbafb0369a48cc0faba5c1b59 SHA256: e6757473984ef1d4e29fce648a3fa22937c01ddd7571aad4ad5b6aa280bace5a Description: GNOME implementation of the freedesktop menu specification Description-md5: 340ecd22d4f56c95b252e114631d7311 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-mime-data Priority: optional Section: gnome Installed-Size: 4388 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 2.18.0-1 Filename: pool/main/g/gnome-mime-data/gnome-mime-data_2.18.0-1_all.deb Size: 361662 MD5sum: aec0e04401d4aaea789cbc1b7686a008 SHA1: e33a3fd01de0061526c9d66d4105c5e332c1f5ac SHA256: badd19eb59a616e24fea4bd48d5d2940c41356d83276f570f76530e93ae071d6 Description: base MIME and Application database for GNOME. Description-md5: 9b063ee1e2d34952bbfe193cf3ca0429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-mines Priority: optional Section: games Installed-Size: 1304 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 1:3.10.1-0ubuntu1 Replaces: gnomine (<< 1:3.7.2) Depends: libc6 (>= 2.3.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.4.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), librsvg2-2 (>= 2.32.0), dconf-gsettings-backend | gsettings-backend Recommends: yelp Breaks: gnomine (<< 1:3.7.2) Filename: pool/main/g/gnome-mines/gnome-mines_3.10.1-0ubuntu1_amd64.deb Size: 297640 MD5sum: 640013eb678e964fd82d061971e9d850 SHA1: 2d7f3571ecfdc8de7d735a6e32da965f7a5a7f48 SHA256: eb36edbec9923e7a3bfed179e366f2d09c57db89974df95efa131fdd64e6e520 Description: popular minesweeper puzzle game for GNOME Homepage: https://wiki.gnome.org/Mines Description-md5: 36262e86f4363ae5903b00c430f60af1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntu-gnome-desktop Package: gnome-orca Priority: optional Section: gnome Installed-Size: 5932 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Version: 3.10.3-0ubuntu1 Replaces: gnome-orca-common (<< 2.20.1-2) Depends: python3:any (>= 3.3.2-2~), python3, python3-speechd (>= 0.6.2), python3-gi (>= 3.4.2), python3-pyatspi (>= 2.6), python3-brlapi, python3-louis (>= 1.6.2), gir1.2-glib-2.0, gir1.2-pango-1.0, gir1.2-gtk-3.0 (>= 3.6.2), gir1.2-wnck-3.0 Conflicts: gnome-orca-common (<< 2.20.1-2) Filename: pool/main/g/gnome-orca/gnome-orca_3.10.3-0ubuntu1_all.deb Size: 751948 MD5sum: a08528efb758b14b06c6ac1f9735bc64 SHA1: fb59e3b98ed163f633490e99393fcd347490c877 SHA256: 88274fd630f476598ddaa3cb86b7a0a741aa9a521512bd4ba79291dc79a2d944 Description: Scriptable screen reader Homepage: http://live.gnome.org/Orca Description-md5: f65a62b4ea6bad4bd1544c0d34a697ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-pkg-tools Priority: optional Section: devel Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.19.3ubuntu2 Depends: perl, dh-translations, python-scour Suggests: svn-buildpackage Filename: pool/main/g/gnome-pkg-tools/gnome-pkg-tools_0.19.3ubuntu2_all.deb Size: 23130 MD5sum: a521f4888e04e2be5f225b13824ed176 SHA1: c82d973a4f2dc25037ffe7db25cfb19c385b536f SHA256: 18a73613c850800fb3c6f8292b783965f66daa85c69ab393fe182fc0fcd60984 Description: Tools for the Debian GNOME Packaging Team Multi-Arch: foreign Description-md5: c70a3c297a4da5c32996ed18c8c8e7f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-power-manager Priority: optional Section: gnome Installed-Size: 364 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.8.2-1ubuntu2 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.4.0), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libupower-glib1 (>= 0.9.1), dconf-gsettings-backend | gsettings-backend, notification-daemon, dbus-x11, upower, gnome-settings-daemon-schemas (>= 3.2) Suggests: policykit-1 Breaks: gnome-session (<< 2.28) Filename: pool/main/g/gnome-power-manager/gnome-power-manager_3.8.2-1ubuntu2_amd64.deb Size: 81794 MD5sum: e229b1573e9a65001cabd08627efddd9 SHA1: 5313bd8e5c4e86b55ac402e9bc7f7a1d966db133 SHA256: 861512440c53349b7b6ed4b0023458144b1fa9d474d30fd0fa838e4e45ee2a68 Description: power management tool for the GNOME desktop Homepage: http://www.gnome.org/projects/gnome-power-manager/ Description-md5: 1ece6a08127f01c856017ac9675775b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gnome-screensaver Priority: optional Section: gnome Installed-Size: 416 Maintainer: Ubuntu Desktop Team Original-Maintainer: Guilherme de S. Pastore Architecture: amd64 Version: 3.6.1-0ubuntu13 Depends: libc6 (>= 2.7), libcairo2 (>= 1.10.0), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.7.3), libgtk-3-0 (>= 3.0.0), libpam0g (>= 0.99.7.1), libsystemd-login0 (>= 31), libx11-6, libxext6, libxxf86vm1, dbus-x11, gnome-icon-theme (>= 2.15.90), gsettings-desktop-schemas (>= 2.91.92) Recommends: gnome-power-manager | xfce4-power-manager, libpam-gnome-keyring Filename: pool/main/g/gnome-screensaver/gnome-screensaver_3.6.1-0ubuntu13_amd64.deb Size: 85778 MD5sum: 6c45bc4c4bfba7af04a571f56e6da730 SHA1: 33471a63c2708d7c9d39fde0fbca8d5a00f03049 SHA256: c3bee93059bca7a04630af2754eb7c421a5d555a4119b92327ebd07be4f0eaf8 Description: GNOME screen saver and locker Homepage: http://live.gnome.org/GnomeScreensaver Description-md5: 4dad587fa91113f99b8fc502d8ecfc68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gnome-screenshot Priority: optional Section: gnome Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.10.1-0ubuntu1 Replaces: gnome-utils (<< 2.30.0-2) Depends: libc6 (>= 2.7), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libgdk-pixbuf2.0-0 (>= 2.23.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.16), libx11-6, libxext6, dconf-gsettings-backend | gsettings-backend Breaks: gnome-utils (<< 2.30.0-2) Filename: pool/main/g/gnome-screenshot/gnome-screenshot_3.10.1-0ubuntu1_amd64.deb Size: 29548 MD5sum: d5a450f80759753755214cd8aeff7639 SHA1: fbe86f474267ef11702fea4f7fb3cee254363cb4 SHA256: 783775494bfb1e387d49e910fbca0bcce9947d8a6cf9e8e5a7171f986022e9f6 Description: screenshot application for GNOME Homepage: https://wiki.gnome.org/GnomeUtils Description-md5: c90436a1a5b51bb06f2cb8922490040a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-session Priority: optional Section: gnome Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.9.90-0ubuntu12 Replaces: gnome-session-bin (<< 3.0), gnome3-session Provides: gnome3-session, x-session-manager Depends: gnome-settings-daemon (>= 3.0), gnome-session-bin (>= 3.9.90-0ubuntu12), gnome-session-bin (<< 3.10), gnome-session-common (= 3.9.90-0ubuntu12) Recommends: session-migration Suggests: gnome-user-guide, desktop-base, gnome-keyring Conflicts: gnome3-session Breaks: bug-buddy (<< 2.20), gnome-power-manager (<< 2.28), xserver-xorg (<< 1:7.4) Filename: pool/main/g/gnome-session/gnome-session_3.9.90-0ubuntu12_all.deb Size: 10354 MD5sum: b61ef76a0232ea73f2f22c5701eea71c SHA1: 8c942d29cdd0c14619d2edc7bede964910519182 SHA256: ba860452390211c5196ce93ed99306b8a64a9f90ed9a16fba49502367b488083 Description: GNOME Session Manager - GNOME 3 session Description-md5: 7cfb8372c3ddbf9bd501f540d336a524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gnome-session-bin Priority: optional Section: gnome Installed-Size: 625 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-session Version: 3.9.90-0ubuntu12 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libgdk-pixbuf2.0-0 (>= 2.22.0), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.7.90), libgtk-3-0 (>= 3.0.0), libice6 (>= 1:1.0.0), libjson-glib-1.0-0 (>= 0.12.0), libsm6, libsystemd-journal0 (>= 183), libsystemd-login0 (>= 43), libupower-glib1 (>= 0.9.0), libx11-6, libxau6, libxcomposite1 (>= 1:0.3-1), libxrender1, dconf-gsettings-backend | gsettings-backend, dbus-x11, gsettings-desktop-schemas, upower (>= 0.9.0) Conflicts: gnome-session (<< 3.9.90-0ubuntu8) Filename: pool/main/g/gnome-session/gnome-session-bin_3.9.90-0ubuntu12_amd64.deb Size: 139220 MD5sum: c31550cc77263bd57952023580961271 SHA1: 83207d0f3f76840adc39dfabd85b9cbab6d1ad16 SHA256: 44cc6bef1b86096f24318c782ad5608e360c0aae5b0a623e8cb76cd82abce9e1 Description: GNOME Session Manager - Minimal runtime Description-md5: 4c2133392307e0ef72a944d936883f7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-session-canberra Priority: optional Section: libs Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Replaces: libcanberra-gtk0 (<< 0.28-3ubuntu2) Depends: libc6 (>= 2.2.5), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.0.0), libcanberra-gtk0 Recommends: libcanberra-pulse Breaks: libcanberra-gtk0 (<< 0.28-3ubuntu2) Filename: pool/main/libc/libcanberra/gnome-session-canberra_0.30-0ubuntu3_amd64.deb Size: 6410 MD5sum: 5493ee3c27be45acfde2ce8e60657597 SHA1: f57c37a70d0a9d37ae8b24a8c61988ff826dcf10 SHA256: 7687b7ad0309d0a7d9a8a99c83433183075606ff5286438cba7ca137867a7e42 Description: GNOME session log in and log out sound events Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 2aefd6590467e10cdd2703be5a5a4d62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-session-common Priority: optional Section: gnome Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-session Version: 3.9.90-0ubuntu12 Replaces: gnome-session (<< 3.0), gnome-session-bin (<< 3.0), libgnomevfs2-common (<< 1:2.24.0-3) Filename: pool/main/g/gnome-session/gnome-session-common_3.9.90-0ubuntu12_all.deb Size: 42196 MD5sum: d92d41ef2a2eea45e377b1083c51c25d SHA1: fbab0b51bc8687357bfad7fa70c640919f0b509f SHA256: 8586d1a12c6ca68e8ceb0c5ad7a07558ec0f17a200facab7af74d476fd7b410f Description: GNOME Session Manager - common files Description-md5: 4e4f4b98eb1049a0a4a28d994692754e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-settings-daemon Priority: extra Section: gnome Installed-Size: 2576 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.8.6.1-0ubuntu11 Depends: libaccountsservice0 (>= 0.6.35-0ubuntu7), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libcolord1 (>= 0.1.31), libcups2 (>= 1.6.0), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.7.90), libgtk-3-0 (>= 3.9.10), libgudev-1.0-0 (>= 146), libibus-1.0-5 (>= 1.5.1), liblcms2-2 (>= 2.2+git20110628), libnotify4 (>= 0.7.3), libpango-1.0-0 (>= 1.22.0), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), librsvg2-2 (>= 2.36.2), libupower-glib1 (>= 0.9.0), libwacom2 (>= 0.7), libx11-6, libxext6, libxfixes3 (>= 1:4.0.1), libxi6 (>= 2:1.2.99.4), libxkbfile1, libxtst6, accountsservice (>= 0.6.34), gsettings-desktop-schemas (>= 3.7.2.1), nautilus-data (>= 2.91.3-1), gnome-settings-daemon-schemas (= 3.8.6.1-0ubuntu11) Recommends: ibus (>= 1.5.0), pulseaudio, systemd-services Suggests: x11-xserver-utils, gnome-screensaver, metacity | x-window-manager Breaks: banshee (<< 0.13.2+dfsg-7), gnome-color-manager (<< 3.0), gnome-control-center (<< 1:3.6.3-0ubuntu35), gnome-screensaver (<< 2.28.0), gnome-session (<< 3.9.90-0ubuntu6), indicator-datetime (<< 12.10.3daily13.03.26), rhythmbox (<< 0.11.5), totem (<< 2.22.0), unity-greeter (<< 0.2.1-0ubuntu1) Filename: pool/main/g/gnome-settings-daemon/gnome-settings-daemon_3.8.6.1-0ubuntu11_amd64.deb Size: 474740 MD5sum: b67ba6e9f43f1cdc9612f02506e30309 SHA1: 6999133faff191973ff7fe481bc0ab4243f7fdce SHA256: 621aff93c757c9e98421d46074b0b3853e706d45ca362feaa102d69a38aa70a4 Description: daemon handling the GNOME session settings Description-md5: ba41f64fe10326f7ff74ab22f1003a11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gnome-settings-daemon-dev Priority: extra Section: gnome Installed-Size: 141 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-settings-daemon Version: 3.8.6.1-0ubuntu11 Depends: libdbus-glib-1-dev (>= 0.74), libglib2.0-dev (>= 2.35.3) Filename: pool/main/g/gnome-settings-daemon/gnome-settings-daemon-dev_3.8.6.1-0ubuntu11_amd64.deb Size: 37540 MD5sum: 57e8f7d2e6b0b0ee89d02a4ccbb278ca SHA1: be1fdf4774569f9fc63800e731fc9df1006adf81 SHA256: 1cb57800277843f222e26a49379fc5e62da1d51361d9750d2e44c9790545482c Description: Headers for building applications communicating with gnome-settings-daemon Description-md5: 7da21b55f83cd4a428a2bd849fda6b81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-settings-daemon-schemas Priority: optional Section: gnome Installed-Size: 185 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-settings-daemon Version: 3.8.6.1-0ubuntu11 Replaces: gnome-settings-daemon (<< 3.8.6.1-0ubuntu8) Breaks: gnome-settings-daemon (<< 3.8.6.1-0ubuntu8) Filename: pool/main/g/gnome-settings-daemon/gnome-settings-daemon-schemas_3.8.6.1-0ubuntu11_all.deb Size: 44174 MD5sum: 5ba080b8be4e371ec3a4f21d191c41f6 SHA1: ccea43cb1523af4637cc11342bd8af72873ce0a5 SHA256: 9c45ffda513bb763902d1e89b4ea733b9f450a03d2acd6095979340ca1b28ee5 Description: gnome-settings-daemon schemas Description-md5: a578d96b60fe617a3adcc1429e6531f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-sharp2-examples Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Depends: mono-runtime (>= 2.10.1), libglib2.0-0 (>= 2.36.0), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgnome-vfs2.0-cil (>= 2.24.0), libgnome2.24-cil (>= 2.24.0), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1) Filename: pool/main/g/gnome-sharp2/gnome-sharp2-examples_2.24.2-3_all.deb Size: 26152 MD5sum: 5507a1afaa55cd4957ca9f6232efc514 SHA1: 5b9deedbd5a440daed8325275e8cb0b7497be2a4 SHA256: 43990424977f55b268f1ad9025dbf0ca411d8652f8884717770fb9a7f2662134 Description: sample applications for GNOME# 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 61ab43a373ebba41e28de5ef49732447 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-sudoku Priority: optional Section: games Installed-Size: 2252 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Version: 1:3.10.2-0ubuntu2 Depends: dconf-gsettings-backend | gsettings-backend, python3:any (>= 3.3.2-2~), python3, python3-gi (>= 2.90.1), python3-gi-cairo (>= 2.90.1), gir1.2-gtk-3.0, python3-cairo Recommends: yelp Filename: pool/main/g/gnome-sudoku/gnome-sudoku_3.10.2-0ubuntu2_all.deb Size: 771684 MD5sum: 6f80be047d23c2dbbcde6a4e0defb186 SHA1: f7b30e553d8412f4902f64a3ded4f4947b61996c SHA256: 217ace7f447ad73afb245ba595e5054fd75704e9967e3e72c3cbb6b9a775dc7e Description: Sudoku puzzle game for GNOME Homepage: https://live.gnome.org/GnomeSudoku Description-md5: 36f1efc2746ddf39c8f11ff90893cc96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntu-gnome-desktop Package: gnome-system-log Priority: optional Section: gnome Installed-Size: 1156 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.8.1-1svn1 Replaces: baobab (<< 3.3.3-1), gnome-utils (<< 2.30.0-2) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.31.18), libgtk-3-0 (>= 3.8.0), libpango-1.0-0 (>= 1.14.0), zlib1g (>= 1:1.1.4), dconf-gsettings-backend | gsettings-backend, gsettings-desktop-schemas, policykit-1 Suggests: yelp Breaks: baobab (<< 3.3.3-1), gnome-utils (<< 2.30.0-2) Filename: pool/main/g/gnome-system-log/gnome-system-log_3.8.1-1svn1_amd64.deb Size: 208482 MD5sum: 7efc8c96cc2f66febb7da24bdc347acc SHA1: 802c3bcb1478aa820943f53ca71ce528d2dddd6c SHA256: 828d394c011026b714816d196c2a756116577ebed5719256c47b588237e81bd5 Description: system log viewer for GNOME Homepage: http://live.gnome.org/GnomeUtils Description-md5: 537fd56b5adfd5b99fdf86c82e261f93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-system-monitor Priority: optional Section: gnome Installed-Size: 1556 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.8.2.1-2ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.8), libglibmm-2.4-1c2a (>= 2.36.2), libgtk-3-0 (>= 3.5.12), libgtkmm-3.0-1 (>= 3.8.1), libgtop2-7 (>= 2.22.3), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), librsvg2-2 (>= 2.35.0), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6), libwnck-3-0 (>= 2.91.6) Recommends: gvfs Filename: pool/main/g/gnome-system-monitor/gnome-system-monitor_3.8.2.1-2ubuntu1_amd64.deb Size: 353750 MD5sum: b9895e4fe44f10160c986c78ca5d5ade SHA1: 4cf2c29b313a6e0158837ece079e9cfd6ddeaa57 SHA256: 331459f66bf4fa699089e316c6997c60c2dbc84631745cf223ecbd1412f0f3cd Description: Process viewer and system resource monitor for GNOME Description-md5: bb5488674b14e5248e88189686b54d2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-terminal Priority: optional Section: gnome Installed-Size: 735 Maintainer: Ubuntu Desktop Team Original-Maintainer: Guilherme de S. Pastore Architecture: amd64 Version: 3.6.2-0ubuntu1 Replaces: gnome-terminal-data (<< 2.26.2-3) Provides: x-terminal-emulator Depends: gconf-service, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.16), libice6 (>= 1:1.0.0), libpango-1.0-0 (>= 1.14.0), libsm6, libvte-2.90-9 (>= 1:0.34.9), libx11-6, gsettings-desktop-schemas (>= 0.1.0), gnome-terminal-data (>= 3.6), gnome-terminal-data (<< 3.7) Recommends: yelp, gvfs Filename: pool/main/g/gnome-terminal/gnome-terminal_3.6.2-0ubuntu1_amd64.deb Size: 110034 MD5sum: 575f573f813e7f49a9cee5d12d8d4002 SHA1: 1813c748d0d1b816dc267d6bfdbdcb3dc8154b4e SHA256: d87d22e97731cf56d49259961fea8cbc3cfd03b6ea27ca2901db14a533f8eec6 Description: GNOME terminal emulator application Description-md5: c385379e72ae70e0ca5a4dee09859951 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-terminal-data Priority: optional Section: gnome Installed-Size: 1172 Maintainer: Ubuntu Desktop Team Original-Maintainer: Guilherme de S. Pastore Architecture: all Source: gnome-terminal Version: 3.6.2-0ubuntu1 Depends: gconf2 (>= 2.28.1-2) Recommends: gnome-terminal Filename: pool/main/g/gnome-terminal/gnome-terminal-data_3.6.2-0ubuntu1_all.deb Size: 60880 MD5sum: d50a5943b34f5a0d78b3592c2bf9132b SHA1: b4c460cb3c97bcb0b189cddd0dfd6995c4932e9f SHA256: 00e423c5e10793fefe9c45d79860284cf38260179cca6306848fdcbb8b88e56e Description: Data files for the GNOME terminal emulator Description-md5: 9b9dc36a1c83dd9ce4cb3aedf50168f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-user-guide Priority: optional Section: gnome Installed-Size: 29161 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-user-docs Version: 3.8.2-1 Depends: yelp (>= 3) Filename: pool/main/g/gnome-user-docs/gnome-user-guide_3.8.2-1_all.deb Size: 1866688 MD5sum: 3c44c6d741dd4d39b2191776720bca86 SHA1: 8334a8af37adcd7d82a722a3e0bae2427a4c4cdd SHA256: 662c689646fb0af0b04be430887747fc9fb0c984ab2106460fb00bc3b9bc9cdc Description: GNOME user's guide Description-md5: 3ee74fea06ef39daa7352728b1424f4c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-user-share Priority: optional Section: gnome Installed-Size: 864 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.0.4-0ubuntu1 Depends: libc6 (>= 2.4), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.28.0), libgnome-bluetooth11 (>= 2.91.2), libgtk-3-0 (>= 3.0.0), libnotify4 (>= 0.7.0), libselinux1 (>= 1.32), libx11-6, dconf-gsettings-backend | gsettings-backend, gconf2 (>= 2.28.1-2), obex-data-server, gnome-bluetooth Suggests: apache2.2-bin, libapache2-mod-dnssd (>= 0.6) Filename: pool/main/g/gnome-user-share/gnome-user-share_3.0.4-0ubuntu1_amd64.deb Size: 95712 MD5sum: 7933cc9846634d375eca705e6e444218 SHA1: b407ae07dc48cd9b90409c3d6cd87db4c3fd7f7c SHA256: 2c5af98e095f945067ac7c2561c54e4b5ac68e55c2270e718d736851aced4b3d Description: User level public file sharing via WebDAV or ObexFTP Description-md5: 33cfc5ae7457d2bb78e7d428c558106b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-video-effects Priority: optional Section: gnome Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.4.1-0ubuntu1 Depends: gstreamer1.0-plugins-good Suggests: gnome-video-effects-extra, gnome-video-effects-frei0r Filename: pool/main/g/gnome-video-effects/gnome-video-effects_0.4.1-0ubuntu1_all.deb Size: 35360 MD5sum: fc3fcc0378af448cf16d9ad22aa167a5 SHA1: 9ee15a0b4e9754edb72a0343291bb8c9573fa87f SHA256: bc2a10606855bacef911e998773b5d14e3f287410e1ef8055e530a373a1c78fd Description: GNOME Video Effects Homepage: http://live.gnome.org/GnomeVideoEffects Description-md5: e9646a04dcbef7ac50b4f5cff9a4fde7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-video-effects-dev Priority: optional Section: devel Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-video-effects Version: 0.4.1-0ubuntu1 Depends: gnome-video-effects (= 0.4.1-0ubuntu1) Suggests: gnome-video-effects-extra (= 0.4.1-0ubuntu1), gnome-video-effects-frei0r (= 0.4.1-0ubuntu1) Filename: pool/main/g/gnome-video-effects/gnome-video-effects-dev_0.4.1-0ubuntu1_all.deb Size: 1978 MD5sum: d0d428b2fa98c578296e97afe3a78fac SHA1: 345798ebb18298df411f25303735ece0f341d3c6 SHA256: 1bae61c7534cbe3b9a6ab6bb3943a1ab399270364dc1e37fb660d189c1066b59 Description: Development files for gnome-video-effects Homepage: http://live.gnome.org/GnomeVideoEffects Description-md5: bd0ba71689bb3aca69740a3295e8a94f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnomine Priority: optional Section: games Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-mines Version: 1:3.10.1-0ubuntu1 Depends: gnome-mines Filename: pool/main/g/gnome-mines/gnomine_3.10.1-0ubuntu1_all.deb Size: 11614 MD5sum: 7ca323cb1955e71f5c8d7075d90bfde1 SHA1: 11523269ed43253720c5822655f132e706d18a5e SHA256: ae92baed828b43d950515dcdfde9d0a660462b9995d6287caf6570e0cf92d800 Description: popular minesweeper puzzle game for GNOME (transitional package) Homepage: https://wiki.gnome.org/Mines Description-md5: f0f3029a7265c8c15e77b1b69d34cb9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: gnu-efi Priority: optional Section: devel Installed-Size: 583 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Version: 3.0u+debian-1ubuntu2 Filename: pool/main/g/gnu-efi/gnu-efi_3.0u+debian-1ubuntu2_amd64.deb Size: 98924 MD5sum: 95682aaeb851224355b9cd95c9d2d908 SHA1: 4b4956600ce9dcc24b71054c63ae7cba4ee54304 SHA256: 32813256de2522f21a8bb17ef586b43d8ad7853f96dff0b7be93ca7e8cd1092c Description: Library for developing EFI applications Homepage: http://sourceforge.net/projects/gnu-efi/ Description-md5: 426d4a05670bc3d994639e6e49d7b5b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnu-standards Priority: optional Section: doc Installed-Size: 1700 Maintainer: Ubuntu Developers Original-Maintainer: Tim Retout Architecture: all Version: 2010.03.11-1 Depends: dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gnu-standards/gnu-standards_2010.03.11-1_all.deb Size: 1280808 MD5sum: 45c941bc1a6daae03f5ff461510c4def SHA1: 531e3e06d6f01f4f95097666793f0ee905e70786 SHA256: 9b73cfa3bab8b3059b06f945a4284114eac3ec0dd5a405ba3cfc8ebecc0cd01b Description: GNU coding and package maintenance standards Homepage: http://savannah.gnu.org/projects/gnustandards Description-md5: 258c5a9a781b8c29f66d83021d8419a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gnupg Priority: important Section: utils Installed-Size: 1676 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuPG-Maintainers Architecture: amd64 Version: 1.4.16-1ubuntu2 Depends: libbz2-1.0, libc6 (>= 2.15), libreadline6 (>= 6.0), libusb-0.1-4 (>= 2:0.1.12), zlib1g (>= 1:1.1.4), gpgv Suggests: gnupg-curl, gnupg-doc, xloadimage | imagemagick | eog, libpcsclite1 Filename: pool/main/g/gnupg/gnupg_1.4.16-1ubuntu2_amd64.deb Size: 610100 MD5sum: cb1cc4654d6287fe92aef3bfed28e463 SHA1: 8235246a2c9cb3328a6380575dfde7afc92b82d6 SHA256: 360221590d63d3515b3f527787a6ad6f86a7450737d7bf68f65cfd05141605be Description: GNU privacy guard - a free PGP replacement Multi-Arch: foreign Homepage: http://www.gnupg.org Description-md5: f9c3b47becaeff9b3854707a8cb94146 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: gnupg-agent Priority: optional Section: utils Installed-Size: 982 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: gnupg2 Version: 2.0.22-3ubuntu1 Replaces: gnupg2 (<< 2.0.18-2), gpgsm (<< 2.0.18-2), newpg Depends: libassuan0 (>= 2.0.2), libc6 (>= 2.15), libgcrypt11 (>= 1.5.1), libgpg-error0 (>= 1.10), libpth20 (>= 2.0.7), libreadline6 (>= 6.0), pinentry-gtk2 | pinentry-curses | pinentry Recommends: gnupg2 | gpgsm | gnupg Conflicts: newpg Breaks: gnupg2 (<< 2.0.18-2), gpgsm (<< 2.0.18-2) Filename: pool/main/g/gnupg2/gnupg-agent_2.0.22-3ubuntu1_amd64.deb Size: 230024 MD5sum: a52bf00dca01a2ff3c114a7052f2ab17 SHA1: 45b15fd6669ed24b377afba7ae157d0d75210931 SHA256: 38735f259b1cdd411febd1ecf0679878ff5c0422d3ea74f312fb2a07bcfd81b4 Description: GNU privacy guard - password agent Multi-Arch: foreign Homepage: http://www.gnupg.org/ Description-md5: dcf7e2d3c3f22b87f14eec4c0034623c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: gnupg-doc Priority: optional Section: doc Installed-Size: 4489 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Version: 2003.04.06+dak1-1ubuntu1 Suggests: gnupg Filename: pool/main/g/gnupg-doc/gnupg-doc_2003.04.06+dak1-1ubuntu1_all.deb Size: 2974614 MD5sum: db2ebbaae65041fba2594df2c71af9db SHA1: 4636ca47646f4aa47081fe619bda902f5ac77458 SHA256: 6407c14d5df199142418ddb921e3aecfe4106200ef55450ac153626a268b15dd Description: GNU Privacy Guard documentation Description-md5: 5a7ad3c5aa6a169f89c0dd2ba615307b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gnupg2 Priority: extra Section: utils Installed-Size: 2164 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Version: 2.0.22-3ubuntu1 Depends: gnupg-agent (= 2.0.22-3ubuntu1), libassuan0 (>= 2.0.1), libbz2-1.0, libc6 (>= 2.15), libcurl3-gnutls (>= 7.16.2), libgcrypt11 (>= 1.5.1), libgpg-error0 (>= 1.10), libksba8 (>= 1.2.0), libreadline6 (>= 6.0), zlib1g (>= 1:1.1.4), dpkg (>= 1.15.4) | install-info Recommends: libldap-2.4-2 (>= 2.4.7) Suggests: gnupg-doc, xloadimage Conflicts: gpg-idea Filename: pool/main/g/gnupg2/gnupg2_2.0.22-3ubuntu1_amd64.deb Size: 678992 MD5sum: e9dc4b2f9b778954bedaf20ed9db8deb SHA1: d339bae75aaa35d49455fceaab702baf67c33c4b SHA256: c6539e7e556091e69a7f86ad72e7689cb6d851928739a0334d1c6877d3a17065 Description: GNU privacy guard - a free PGP replacement (new v2.x) Multi-Arch: foreign Homepage: http://www.gnupg.org/ Description-md5: 38ae35d9c0bbcf859092b0c70f889224 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: gnutls-bin Priority: optional Section: net Installed-Size: 747 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: gnutls26 (2.12.23-12ubuntu2) Version: 3.0.11+really2.12.23-12ubuntu2 Depends: libc6 (>= 2.15), libgnutls26 (>= 2.12.17-0) Filename: pool/main/g/gnutls26/gnutls-bin_3.0.11+really2.12.23-12ubuntu2_amd64.deb Size: 113414 MD5sum: f1e73459c7e7b0621c26134125acb26f SHA1: 1c922cf5a7118f956d87b96485f0a44ccb090c8e SHA256: cacd05e399d42fa1b8f2fd6ca923461c4ff02fadaf5c7702750823cf3951f29b Description: GNU TLS library - commandline utilities Multi-Arch: foreign Homepage: http://www.gnutls.org/ Description-md5: 33f669c0eda9ac17638870658371c713 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnutls26-doc Priority: optional Section: doc Installed-Size: 5883 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: all Source: gnutls26 Version: 2.12.23-12ubuntu2 Filename: pool/main/g/gnutls26/gnutls26-doc_2.12.23-12ubuntu2_all.deb Size: 2358670 MD5sum: 497773c2137e7ca646d744085dbc8955 SHA1: a5772b3f9e80125c8fde84f548d9e98e8d7ef0cb SHA256: 5b9f54d57c2afd7cd208e291344d3765d0624b007f3d4235d18b3cbeb4dcbe48 Description: GNU TLS library 2.x - documentation and examples Multi-Arch: foreign Homepage: http://www.gnutls.org/ Description-md5: b01a1eff3c9deeb4182f891e4e7c9467 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gob2 Priority: extra Section: devel Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Stephen Kitt Architecture: amd64 Version: 2.0.20-1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.16.0) Filename: pool/main/g/gob2/gob2_2.0.20-1_amd64.deb Size: 91302 MD5sum: 8ce94dad1d4c15ae20cb1937d422b973 SHA1: 1c508532cff15d496e5ccce6dfaf630823206543 SHA256: 7e146fce052b3de2b8a1639c8dec94dbeada299540e0dbba9e1f6d2da63db74c Description: GTK+ Object Builder Homepage: http://www.jirka.org/gob.html Description-md5: 0f5d229d9f79efbdbf11a584051163fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gobi-loader Priority: optional Section: comm Installed-Size: 67 Maintainer: Ubuntu Kernel Team Architecture: amd64 Version: 0.7-0ubuntu2 Depends: udev, libc6 (>= 2.4) Filename: pool/main/g/gobi-loader/gobi-loader_0.7-0ubuntu2_amd64.deb Size: 8828 MD5sum: ffc5c32f3ecd5199f2dc90556a5fa65e SHA1: 5c49b04cd91dffd079a926387cbba09f41cddd23 SHA256: acbecfa6b6a9945b700e08b1a1c90bb4fcd4855701ac223652afcc4bdff7f734 Description: Firmware loader for Qualcom GobiUSB chipsets Homepage: http://www.codon.org.uk/~mjg59/gobi_loader/ Description-md5: 0bc71f740c2e62e89ed4b58d4c0934a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gobjc Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Provides: objc-compiler Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc (>= 4:4.8.2-1ubuntu6), gobjc-4.8 (>= 4.8.2-5~) Suggests: gobjc-multilib Filename: pool/main/g/gcc-defaults/gobjc_4.8.2-1ubuntu6_amd64.deb Size: 946 MD5sum: 7d0e659aecb7c05a75f9e88bc0a17396 SHA1: cc4c2d82a100d485c0563946beb41f82464e0c20 SHA256: 4ef8c0e1be3afc75fa016b72f409d91f6e13363ef3045e9a20f73f90ecd64d19 Description: GNU Objective-C compiler Description-md5: 8eb5a7695a9f4935cb3126a66df29405 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gobjc-4.8 Priority: optional Section: devel Installed-Size: 13479 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Provides: objc-compiler Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (= 4.8.2-19ubuntu1), libc6-dev (>= 2.13-0ubuntu6), libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4), libobjc-4.8-dev (= 4.8.2-19ubuntu1) Suggests: gobjc-4.8-multilib, gcc-4.8-doc (>= 4.8), libobjc4-dbg (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/gobjc-4.8_4.8.2-19ubuntu1_amd64.deb Size: 4419924 MD5sum: 21ec3ee990fe13d3852838df57946dea SHA1: 1a9f88a122b3f990d10c7bc37031702493188307 SHA256: 9eb779aca0ed313ac941163c921e2d49732118b0d9826e0b1f577e7553e4dbe0 Description: GNU Objective-C compiler Homepage: http://gcc.gnu.org/ Description-md5: ef51de6b57526dc4a161944678606486 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gobject-introspection Priority: optional Section: devel Installed-Size: 1352 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 1.40.0-1 Depends: libc6 (>= 2.14), libffi6 (>= 3.0.4), libgirepository-1.0-1 (= 1.40.0-1), libglib2.0-0 (>= 2.39.0), python:any (>= 2.7.1-0ubuntu2), python2.7, build-essential, python-mako Filename: pool/main/g/gobject-introspection/gobject-introspection_1.40.0-1_amd64.deb Size: 254084 MD5sum: f051498b47eca133541a8487f28e7369 SHA1: 52c441ecaf1dd933d1ca9900e0095bb334e22b2d SHA256: 08aaf102cbdf8026ae355ed757c876ea0a105f4a8a9645356eb71702f6824cde Description: Generate interface introspection data for GObject libraries Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: 237f5e120c510b5b463f0799b240157e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: google-mock Priority: optional Section: devel Installed-Size: 3256 Maintainer: Ubuntu Developers Original-Maintainer: Fredrik Hallenberg Architecture: amd64 Version: 1.6.0+svn437-0ubuntu5 Depends: python:any Filename: pool/main/g/google-mock/google-mock_1.6.0+svn437-0ubuntu5_amd64.deb Size: 617414 MD5sum: e506d066fab9143b7fa0068a835469f8 SHA1: 23a4c8c9206495ccde3121fd09affb3c5398ab6b SHA256: 8fe5e0ae3dd5f943b209772e3dc300b67f9b133483eca2bf16d0c501ce338365 Description: Google's framework for writing and using C++ mock classes Multi-Arch: same Homepage: http://code.google.com/p/googlemock/ Description-md5: 95d9b26f75a8f8f8a93fbe8e13d5b0e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gparted Priority: optional Section: gnome Installed-Size: 1912 Maintainer: Phillip Susi Architecture: amd64 Version: 0.18.0-1 Depends: libatkmm-1.6-1 (>= 2.22.1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.12.0), libglibmm-2.4-1c2a (>= 2.36.2), libgtk2.0-0 (>= 2.14.0), libgtkmm-2.4-1c2a (>= 1:2.24.0), libpangomm-1.4-1 (>= 2.27.1), libparted0debian1 (>= 2.2-1), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Suggests: xfsprogs, reiserfsprogs, reiser4progs, jfsutils, ntfs-3g, dosfstools, yelp, kpartx, dmraid, dmsetup, gpart Filename: pool/main/g/gparted/gparted_0.18.0-1_amd64.deb Size: 524246 MD5sum: 009a4a0a3ac0fcd355b39ccb32d599f4 SHA1: 2429ed06f358e091ca8b74c5de97901624fc0868 SHA256: 7adf7ad8ac322233f9dc88fc288625ce4d3d1c518ec75ccab2194c71122e7271 Description: GNOME partition editor Homepage: http://gparted.sourceforge.net Description-md5: 1caa85feb72cd19af74db3487848870c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-live Package: gperf Priority: optional Section: devel Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Hilko Bengen Architecture: amd64 Version: 3.0.4-1 Replaces: libg++27-dev, libg++272-dev Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/g/gperf/gperf_3.0.4-1_amd64.deb Size: 110508 MD5sum: 6dc97fae882a878a39bafac7f3ab574e SHA1: 841deab16c8a3a65699b688ebfc62e357e847111 SHA256: 31dc21ba5ba98a0899cf20aa5bb9557de9d60de33c55b06bb3a7dab19f58f3a3 Description: Perfect hash function generator Multi-Arch: foreign Homepage: http://www.gnu.org/software/gperf/ Description-md5: 100d8b95fd17c0a38c7613dd1af69b60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gpgsm Priority: optional Section: utils Installed-Size: 516 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: gnupg2 Version: 2.0.22-3ubuntu1 Replaces: gnupg2 (<< 2.0.0-2) Depends: gnupg-agent (= 2.0.22-3ubuntu1), libassuan0 (>= 2.0.1), libc6 (>= 2.14), libgcrypt11 (>= 1.5.1), libgpg-error0 (>= 1.10), libksba8 (>= 1.2.0), libreadline6 (>= 6.0), scdaemon (= 2.0.22-3ubuntu1) Breaks: gnupg2 (<< 2.0.0-2) Filename: pool/main/g/gnupg2/gpgsm_2.0.22-3ubuntu1_amd64.deb Size: 191416 MD5sum: dd4546a15e75bc3b2131d59c68b60792 SHA1: aed97fc66fe284633592bf08439f8bc5cfdc3dce SHA256: 5b4dc99b33eb0f3398497039cd29618d5ab34e53faf70b6a1e7d6d59814ab01d Description: GNU privacy guard - S/MIME version Multi-Arch: foreign Homepage: http://www.gnupg.org/ Description-md5: eaa08168026822f8656ab2343df90485 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: gpgv Priority: important Section: utils Installed-Size: 443 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuPG-Maintainers Architecture: amd64 Source: gnupg Version: 1.4.16-1ubuntu2 Depends: libbz2-1.0, libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Suggests: gnupg Filename: pool/main/g/gnupg/gpgv_1.4.16-1ubuntu2_amd64.deb Size: 160224 MD5sum: 631466c59fe1fbe5f60453385c990f0f SHA1: 1ebbc6798ef5f296b34cf62f9171bc3e69bdd84f SHA256: 1614710af63c476c1b7f4b36717a325a909e73396407ac363ae438b11a819dd0 Description: GNU privacy guard - signature verification tool Multi-Arch: foreign Homepage: http://www.gnupg.org Description-md5: 19709c7fc27595437225fd34d295b347 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: grantlee-dbg Priority: extra Section: debug Installed-Size: 5315 Maintainer: Kubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: grantlee Version: 0.4.0-0ubuntu1 Depends: libgrantlee-core0 (= 0.4.0-0ubuntu1) | libgrantlee-gui0 (= 0.4.0-0ubuntu1) Suggests: libqt4-dbg Filename: pool/main/g/grantlee/grantlee-dbg_0.4.0-0ubuntu1_amd64.deb Size: 5060790 MD5sum: 538c4afc8505e5fc7bd10d49c9b4697a SHA1: 035f5ffa824ba0014c97472e50084ac2d04d5b98 SHA256: 3e20740c3821e25a80eeecad958d0ff8a1601d8db353747d727c944fa3646dc8 Description: Grantlee templating library (debugging symbols) Homepage: http://www.grantlee.org/ Description-md5: 1f690ca74827f47ed79925128d6d3469 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: graphviz Priority: optional Section: graphics Installed-Size: 1785 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: amd64 Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.15), libcdt5, libcgraph6, libexpat1 (>= 2.0.1), libgd3 (>= 2.1.0~alpha~), libgvc6, libgvpr2, libx11-6, libxaw7, libxmu6, libxt6 Recommends: fonts-liberation Suggests: gsfonts, graphviz-doc Conflicts: gdtclft Filename: pool/main/g/graphviz/graphviz_2.36.0-0ubuntu3_amd64.deb Size: 462228 MD5sum: 29bae3fc77de5192b10ccccd64f01024 SHA1: bd2fd8550564a5490ce9ab384b3f4251cb419bf9 SHA256: 2538ec575eca0b95ecab3fec9ddd0f7e2214cfad1afe78d09f781f19b0fcaf1b Description: rich set of graph drawing tools Multi-Arch: foreign Homepage: http://www.graphviz.org/ Description-md5: 3596bf983eb939217c51507635922cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: graphviz-dev Priority: optional Section: devel Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: all Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libgraphviz-dev Filename: pool/main/g/graphviz/graphviz-dev_2.36.0-0ubuntu3_all.deb Size: 11772 MD5sum: 5d0a3ec85360193b2301368c837c297e SHA1: 21fa6d5023d39364b8dd410ab5197ed7b74231c0 SHA256: 99f6d84ec5c9130fcfc010018681dccd38332bd514e89ce7e382ef8dc9e472cc Description: transitional package for graphviz-dev rename Homepage: http://www.graphviz.org/ Description-md5: 9f63b6f413c4d84a0c3d45a554d3697b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: graphviz-doc Priority: optional Section: doc Installed-Size: 5063 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: all Source: graphviz Version: 2.36.0-0ubuntu3 Suggests: graphviz Conflicts: graphviz (<< 2.12-1) Filename: pool/main/g/graphviz/graphviz-doc_2.36.0-0ubuntu3_all.deb Size: 3585704 MD5sum: d821cc94dac2f0bd6382d81f5fcf60dc SHA1: b19656533776095392c754f73e8899ee37f233c2 SHA256: 639f612d22009044d3d7119d77b1110b26dd8c8698c11886fda7fdeb41395d30 Description: additional documentation for graphviz Homepage: http://www.graphviz.org/ Description-md5: f78e17da4b5250c519aa60f99d9c7a3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grep Essential: yes Priority: required Section: utils Installed-Size: 712 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 2.16-1 Provides: rgrep Depends: dpkg (>= 1.15.4) | install-info Pre-Depends: libc6 (>= 2.14), libpcre3 Suggests: libpcre3 (>= 7.7) Conflicts: rgrep Filename: pool/main/g/grep/grep_2.16-1_amd64.deb Size: 162664 MD5sum: 85e64efbf4e1baf0639a9a723e1d73ca SHA1: 747f1ac4a4e909e6fb3eb77ea9096bc97622f640 SHA256: 1b039040096eff8b1094803d8313caf325cfee3a1699afe6374027cb35974e42 Description: GNU grep, egrep and fgrep Multi-Arch: foreign Homepage: http://www.gnu.org/software/grep/ Description-md5: f9188c5583d41955f3b3fe60b9d445f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: groff Priority: optional Section: text Installed-Size: 9790 Maintainer: Colin Watson Architecture: amd64 Version: 1.22.2-5 Replaces: groff-base (<< 1.17.2-9), groff-x11 (<< 1.18-1), jgroff (<< 1.17-1) Provides: groff-x11, jgroff Depends: groff-base (= 1.22.2-5), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libx11-6, libxaw7, libxmu6, libxt6 Recommends: ghostscript, imagemagick, libpaper1, netpbm, perl, psutils Breaks: groff-x11 (<< 1.18-1), jgroff (<< 1.17-1) Filename: pool/main/g/groff/groff_1.22.2-5_amd64.deb Size: 3175164 MD5sum: 4584e82f20ce2182d2e64a0094dc0215 SHA1: 36beaa14b8524d05130fe705ad267e33c212a15a SHA256: 924d5227b4350bfed77edeac5ddaf3d9163890e8bd825fca7d67c51c6fe151c5 Description: GNU troff text-formatting system Multi-Arch: foreign Homepage: https://www.gnu.org/software/groff/ Description-md5: 11123d1736a0022d49d06092e56ad563 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: groff-base Priority: standard Section: text Installed-Size: 2796 Maintainer: Colin Watson Architecture: amd64 Source: groff Version: 1.22.2-5 Replaces: groff (<< 1.20.1-6), jgroff (<< 1.17-1) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Suggests: groff Breaks: groff (<< 1.17-1), jgroff (<< 1.17-1), pmake (<< 1.45-7), troffcvt (<< 1.04-14) Filename: pool/main/g/groff/groff-base_1.22.2-5_amd64.deb Size: 1053374 MD5sum: de473c3cdced3ff1402bb4d7c3c45137 SHA1: 165395abdfe64c8020accd3b3e9a061c6a4f7d23 SHA256: 4e4a3a3df60dd6a4adc8b61c9646167c9b498ff79f1540d80df7a1b0cfe8eb51 Description: GNU troff text-formatting system (base system components) Multi-Arch: foreign Homepage: https://www.gnu.org/software/groff/ Description-md5: 106eb90e9251712205de3a823876b349 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: growisofs Priority: optional Section: video Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: amd64 Source: dvd+rw-tools Version: 7.1-10build1 Replaces: dvd+rw-tools (<< 7.1-9) Depends: libc6 (>= 2.14), libstdc++6 (>= 4.1.1) Breaks: dvd+rw-tools (<< 7.1-9) Filename: pool/main/d/dvd+rw-tools/growisofs_7.1-10build1_amd64.deb Size: 72616 MD5sum: 703e32a6dd8bf56f7a7be066ba030531 SHA1: dd1962939b414155fa91eca404df83503b0c1e1a SHA256: c84b8ba078c0d2677d08df432fd3ffc7ce2157b317a12d21a815938f1e738d3d Description: DVD+-RW/R recorder Homepage: http://fy.chalmers.se/~appro/linux/DVD+RW/ Description-md5: 11a5fa8747e3713569def36f6fbc2b0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: grub Priority: optional Section: admin Installed-Size: 2155 Maintainer: Ubuntu Kernel Team Original-Maintainer: Grub Maintainers Architecture: amd64 Version: 0.97-29ubuntu66 Provides: linux-boot-loader Depends: grub-common, udev (>= 117-5), ucf (>= 3.004-0ubuntu2), debconf (>= 1.5.19) | cdebconf, util-linux (>= 2.15-1) Suggests: grub-legacy-doc, mdadm Conflicts: grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-ieee1275, grub-pc Filename: pool/main/g/grub/grub_0.97-29ubuntu66_amd64.deb Size: 913126 MD5sum: a519860c965e7038c64dacbeaac14ea2 SHA1: 3297e4c0079b579cf76c8d10aed29be30c56a16d SHA256: 61f71d3422160c2a1f8914d32eee929398a31f3a62c377d256572476c9a03b2b Description: GRand Unified Bootloader (Legacy version) Description-md5: b4c258376515bf0b4c56cbfd21b52dc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-common Priority: optional Section: admin Installed-Size: 11484 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-coreboot (<< 2.00-4), grub-efi (<< 1.99-1), grub-efi-amd64 (<< 2.00-4), grub-efi-ia32 (<< 2.00-4), grub-efi-ia64 (<< 2.00-4), grub-ieee1275 (<< 2.00-4), grub-linuxbios (<< 1.96+20080831-1), grub-pc (<< 2.00-4), grub-yeeloong (<< 2.00-4) Depends: libc6 (>= 2.7), libdevmapper1.02.1 (>= 2:1.02.36), libfreetype6 (>= 2.2.1), libfuse2 (>= 2.8.1), liblzma5 (>= 5.1.1alpha+20120614), gettext-base, lsb-base (>= 3.0-6) Recommends: os-prober (>= 1.33) Suggests: multiboot-doc, grub-emu, xorriso (>= 0.5.6.pl00), desktop-base (>= 4.0.6), console-setup Conflicts: mdadm (<< 2.6.7-2) Breaks: apport (<< 2.1.1), friendly-recovery (<< 0.2.13), lupin-support (<< 0.55) Filename: pool/main/g/grub2/grub-common_2.02~beta2-9_amd64.deb Size: 1679960 MD5sum: 9344d010282ee15a6364b238973c91f1 SHA1: be9846946209957a8ce3d22ffacee3d93f3de2db SHA256: c24c7ae7d9f380c711eb535fabb93f7370dcfd9401eea43c4418f30f79f22237 Description: GRand Unified Bootloader (common files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 6e1c01c5245ffb9578aee58ee944229b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: grub-doc Priority: optional Section: doc Installed-Size: 146 Maintainer: Ubuntu Kernel Team Original-Maintainer: Grub Maintainers Architecture: all Source: grub Version: 0.97-29ubuntu66 Depends: grub-legacy-doc, multiboot-doc Filename: pool/main/g/grub/grub-doc_0.97-29ubuntu66_all.deb Size: 2356 MD5sum: 72a8479abdff9c5e41ddfa72f30cd924 SHA1: 13d95153b753bc98a4ae10315f89fb6cd1d05f0a SHA256: 0d33ef58f8220f8cc97a761fa9e8c419de6036a3eeb12b7ac8922aa146e30d6f Description: Documentation for GRand Unified Bootloader (dummy package) Description-md5: 5798584f2330e6f258a865c322f43f1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-efi Priority: extra Section: admin Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common, grub-efi-amd64 (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-efi_2.02~beta2-9_amd64.deb Size: 2550 MD5sum: 52c7b1dde301a8782bc72eef329b2097 SHA1: e6ddf0b6b11a5484e93a9bea2ffce0081074f3cf SHA256: 517eee37b809b424bbd2ace6a360ed7b6bf02f6c4686c92f78e0beff9787351c Description: GRand Unified Bootloader, version 2 (dummy package) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: ab0258bbb994f6742ad233346c11cf50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-efi-amd64 Priority: extra Section: admin Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Replaces: grub, grub-common (<= 1.97~beta2-1), grub-coreboot, grub-efi-ia32, grub-ieee1275, grub-legacy, grub-pc, grub2 (<< 2.02~beta2-9) Depends: debconf (>= 0.5) | debconf-2.0, grub-common, grub2-common (= 2.02~beta2-9), grub-efi-amd64-bin (= 2.02~beta2-9), ucf Conflicts: elilo, grub, grub-coreboot, grub-efi-ia32, grub-ieee1275, grub-legacy, grub-pc, grub-xen Filename: pool/main/g/grub2/grub-efi-amd64_2.02~beta2-9_amd64.deb Size: 44650 MD5sum: 197ce4f0af31c4fe56e94b4b4da6ba4a SHA1: 900527cf9eec580783b37d0df543b2a6fe43df5a SHA256: 53062bc7ef93063803f6aafce220a43acac272c5211b60de5ade24725c695a44 Description: GRand Unified Bootloader, version 2 (EFI-AMD64 version) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 1ec69fc2c3202308968b8f3288b1500c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-efi-amd64-bin Priority: extra Section: admin Installed-Size: 2656 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-common (<= 1.97~beta2-1), grub-efi-amd64 (<< 1.99-1), grub2 (<< 2.02~beta2-9) Depends: grub-common (= 2.02~beta2-9), efibootmgr Filename: pool/main/g/grub2/grub-efi-amd64-bin_2.02~beta2-9_amd64.deb Size: 649514 MD5sum: 83d1db7790d80be04fdeb311fbd63548 SHA1: 55beba080475fb7a8d45ff6bd93c406cd468df03 SHA256: 5aa005fc15bae97dd37df16a4079e206265c89b5b19773f09d9301bcfbf96d87 Description: GRand Unified Bootloader, version 2 (EFI-AMD64 binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 598ec5b1a14f26c488bd7d7079c3e538 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-efi-amd64-dbg Priority: extra Section: debug Installed-Size: 16720 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9), grub-efi-amd64-bin (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-efi-amd64-dbg_2.02~beta2-9_amd64.deb Size: 2880256 MD5sum: 1d8da166184fb972ebe45e7322ac8476 SHA1: a99e21828dfb298df001c023ceeab7382daebf16 SHA256: 12d293dce54052cf5b472a13e361cf4a408a587c323d93af6b1e513447942390 Description: GRand Unified Bootloader, version 2 (EFI-AMD64 debug files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 01a50868394847340399eb4743e46af0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-efi-amd64-signed Priority: optional Section: utils Installed-Size: 2921 Maintainer: Colin Watson Architecture: amd64 Source: grub2-signed (1.34) Version: 1.34+2.02~beta2-9 Depends: grub-efi-amd64 (= 2.02~beta2-9) Recommends: secureboot-db Filename: pool/main/g/grub2-signed/grub-efi-amd64-signed_1.34+2.02~beta2-9_amd64.deb Size: 244814 MD5sum: 4b3da735de7590abae40d410044510ad SHA1: 3a5a29d41d0a4f6db6967583a73c8de472b881f2 SHA256: 5110ffca668132117e313b25c5fcba46276e51c80be3a6b732c19821c8695c6e Description: GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed) Built-Using: grub2 (= 2.02~beta2-9) Description-md5: e51baf79d7fed18d4cd4c2b834b9958b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-efi-ia32 Priority: extra Section: admin Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Replaces: grub, grub-common (<= 1.97~beta2-1), grub-coreboot, grub-efi, grub-efi-amd64, grub-ieee1275, grub-legacy, grub-pc, grub2 (<< 2.02~beta2-9) Depends: debconf (>= 0.5) | debconf-2.0, grub-common, grub2-common (= 2.02~beta2-9), grub-efi-ia32-bin (= 2.02~beta2-9), ucf Conflicts: elilo, grub (<< 0.97-54), grub-coreboot, grub-efi-amd64, grub-ieee1275, grub-legacy, grub-pc, grub-xen Filename: pool/main/g/grub2/grub-efi-ia32_2.02~beta2-9_amd64.deb Size: 44672 MD5sum: 41165ed41740971d0d9e5269a6741dd5 SHA1: 906c3836b384e239b68ddea104421fae377d88a9 SHA256: 559029d7dedb47bff280ffbe25e03003f6a6f1b8a291494d1ec6a61f6373fe0a Description: GRand Unified Bootloader, version 2 (EFI-IA32 version) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 0b211963be056bf8e983c31763cd0a45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-efi-ia32-bin Priority: extra Section: admin Installed-Size: 1915 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-common (<= 1.97~beta2-1), grub-efi, grub-efi-ia32 (<< 1.99-1), grub2 (<< 2.02~beta2-9) Depends: grub-common (= 2.02~beta2-9), efibootmgr Filename: pool/main/g/grub2/grub-efi-ia32-bin_2.02~beta2-9_amd64.deb Size: 616798 MD5sum: 89960d570cfa516264515b7d7329cded SHA1: 4e4c28c49f00f947f46ff80617cfade2d8bfc8fd SHA256: aeab4fd75b078c3dc66f16b2c7ff26c84ec5a865bb3b468dcc0661e6b88b3c81 Description: GRand Unified Bootloader, version 2 (EFI-IA32 binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 9f83262e22d6097ee9567fff6e1de4bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-efi-ia32-dbg Priority: extra Section: debug Installed-Size: 11052 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9), grub-efi-ia32-bin (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-efi-ia32-dbg_2.02~beta2-9_amd64.deb Size: 2712164 MD5sum: 33c3b9ed690c0e9874ee15503eec3930 SHA1: 195929db85e89666a96f26f870df9df4cf4ccbea SHA256: d2dd3ca772ba087da114ef5e6a5982958f3014526d6a20eb24a2cb71fa7fcba1 Description: GRand Unified Bootloader, version 2 (EFI-IA32 debug files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 985cf475352ed91c8a577b3365c0062f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-gfxpayload-lists Priority: optional Section: admin Installed-Size: 47 Maintainer: Colin Watson Architecture: amd64 Version: 0.6 Depends: grub-pc (>= 1.99~20101210-1ubuntu2) Filename: pool/main/g/grub-gfxpayload-lists/grub-gfxpayload-lists_0.6_amd64.deb Size: 3506 MD5sum: 82863426e3be53d51f81f96122c21385 SHA1: 5e54b214a29a925eb7cdf53c646574bc87ccf9ba SHA256: 7e19b975f4302b0bddf852cf366c6d8d64a3e9e795add20c6b04247d8b668023 Description: GRUB gfxpayload blacklist Description-md5: 30331f38db8adc84acf67dc823e8b37c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: grub-ieee1275 Priority: extra Section: admin Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-common (<= 1.97~beta2-1), grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-legacy, grub-pc, grub2 (<< 2.02~beta2-9) Depends: debconf (>= 0.5) | debconf-2.0, grub-common, grub2-common (= 2.02~beta2-9), grub-ieee1275-bin (= 2.02~beta2-9), ucf Conflicts: grub (<< 0.97-54), grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-legacy, grub-pc, grub-xen Filename: pool/main/g/grub2/grub-ieee1275_2.02~beta2-9_amd64.deb Size: 44610 MD5sum: fd65b3885f5a23f623bcc9b8bb4125b4 SHA1: 0a88fa0ef489b01240424cb17dbb4e6c45759451 SHA256: cfd66102da500f20502af502bac68df80ca23c0baf1bb4e42293078653ff5cee Description: GRand Unified Bootloader, version 2 (Open Firmware version) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 2c687718a62801e41cd0aa29811470e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-ieee1275-bin Priority: extra Section: admin Installed-Size: 1799 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-common (<= 1.97~beta2-1), grub-ieee1275 (<< 1.99-1), grub2 (<< 2.02~beta2-9) Depends: grub-common (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-ieee1275-bin_2.02~beta2-9_amd64.deb Size: 590126 MD5sum: bc2a809a5f92bd8c1c64d5c0e52ef937 SHA1: 3e9153978d64ad1dfe8566b5a676c1329c718e63 SHA256: a44c66abc0ae18d7dc5bd9c2b3fce3105c9642ce69659e4ebb7fa0be828d18d0 Description: GRand Unified Bootloader, version 2 (Open Firmware binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 2aa28ecd15d342ed322b1e1858743f29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-ieee1275-dbg Priority: extra Section: debug Installed-Size: 10433 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9), grub-ieee1275-bin (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-ieee1275-dbg_2.02~beta2-9_amd64.deb Size: 2564184 MD5sum: d0c5576c7b2eb215c46f1e593119ca19 SHA1: 4b294075da740fb62ed88e430e1b0a2d96d45813 SHA256: 8fb6ed643c21448ac608c21815f14f6c06c3a5af27fbdba672cdedfbe1f29b97 Description: GRand Unified Bootloader, version 2 (Open Firmware debug files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 3e4b991fd886a5a8442d2e484c000e45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-ipxe Priority: optional Section: admin Installed-Size: 1098 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Blank Architecture: all Source: ipxe Version: 1.0.0+git-20131111.c3d1e78-2ubuntu1 Suggests: grub-pc (>= 1.96) Filename: pool/main/i/ipxe/grub-ipxe_1.0.0+git-20131111.c3d1e78-2ubuntu1_all.deb Size: 635380 MD5sum: f34fce145b5368bf87059f70618fe19c SHA1: 096049cd05721a613e18fc44265e2a03f2de00cf SHA256: 2d9384af7042f35f5a341895f4c12d5dcd3c2eaa06e73f0c62c98788ef532f13 Description: Network booting from GRUB using iPXE Homepage: http://ipxe.org/ Description-md5: 069f85eb75e193394b417a675f95bdda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-legacy-doc Priority: optional Section: doc Installed-Size: 214 Maintainer: Ubuntu Kernel Team Original-Maintainer: Grub Maintainers Architecture: all Source: grub Version: 0.97-29ubuntu66 Replaces: grub-doc Suggests: doc-base Filename: pool/main/g/grub/grub-legacy-doc_0.97-29ubuntu66_all.deb Size: 54696 MD5sum: 185c985507bc457214a64cc7128d36ae SHA1: b15748afed43992d52a234186c8cd14827d7b5d3 SHA256: c12d72d75cf0bc55f6d3c38849538007833e0459b6a5994d69b058176ef294e5 Description: Documentation for GRUB Legacy Description-md5: 89c7b20a06c65204f61a967d49c9207b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-legacy-ec2 Priority: extra Section: admin Installed-Size: 146 Maintainer: Scott Moser Architecture: all Source: cloud-init Version: 0.7.5-0ubuntu1 Depends: debconf (>= 1.5.19) | cdebconf, ucf, util-linux (>= 2.15-1), debconf (>= 0.5) | debconf-2.0 Suggests: grub-legacy-doc Conflicts: grub Filename: pool/main/c/cloud-init/grub-legacy-ec2_0.7.5-0ubuntu1_all.deb Size: 23232 MD5sum: fda82ec097f5327cdff90dadd1653ac5 SHA1: 028f3c99f8db19e2a96bc47f9d5b32359a889f24 SHA256: 72773e63033ad60349229390df43bdf5b35a597a0dc2201001f1ab3e8464abd6 Description: Handles update-grub for ec2 instances Description-md5: e5f8ea347000ef0d0aedb42c000e0b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: cloud-image Package: grub-pc Priority: optional Section: admin Installed-Size: 553 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Replaces: grub, grub-common (<= 1.97~beta2-1), grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-ieee1275, grub-legacy, grub2 (<< 2.02~beta2-9) Depends: debconf (>= 0.5) | debconf-2.0, grub-common, grub2-common (= 2.02~beta2-9), grub-pc-bin (= 2.02~beta2-9), ucf, grub-gfxpayload-lists Conflicts: grub (<< 0.97-54), grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-ieee1275, grub-legacy, grub-xen Filename: pool/main/g/grub2/grub-pc_2.02~beta2-9_amd64.deb Size: 172598 MD5sum: 7c46bd35bf9bcd46c1dd0cd0c0cbaa7b SHA1: 973c43b0266fe17a64aaa29534b285ded4166628 SHA256: 21a6c516444b835545214c9d9eb4da0fcd13858e121670aa952e413834129bba Description: GRand Unified Bootloader, version 2 (PC/BIOS version) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 7cb7fdca20b02381c6123a250be96bab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: grub-pc-bin Priority: optional Section: admin Installed-Size: 2795 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-common (<= 1.97~beta2-1), grub-pc (<< 1.99-1), grub2 (<< 2.02~beta2-9) Depends: libc6 (>= 2.7), libdevmapper1.02.1 (>= 2:1.02.36), grub-common (= 2.02~beta2-9) Suggests: desktop-base (>= 4.0.6) Filename: pool/main/g/grub2/grub-pc-bin_2.02~beta2-9_amd64.deb Size: 880958 MD5sum: 4aba0aa6d96a3f30a768c79574d8f4c2 SHA1: b4939ea94b1ce576392184d3015392c43bf92e1c SHA256: ea907a1e0e3637472b2785507bf4affe6809cff6009e8f8e8120a44745c33ad1 Description: GRand Unified Bootloader, version 2 (PC/BIOS binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: d3fd4372607d45553d46ed1fecfb4f99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: grub-pc-dbg Priority: extra Section: debug Installed-Size: 11514 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9), grub-pc-bin (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-pc-dbg_2.02~beta2-9_amd64.deb Size: 2795358 MD5sum: 3ebe1bb36dac150ac0739c8c8300376e SHA1: ffd0a18bf33f0a37f108a991e9a1a9230b225aaa SHA256: 5e05cb86472c730ff45f49fe4bf9b61e1af9e5f2265dde8123307eae65976a25 Description: GRand Unified Bootloader, version 2 (PC/BIOS debug files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 7c0972b8a14a3f1091b6056556730eb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-xen Priority: extra Section: admin Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Depends: debconf (>= 0.5) | debconf-2.0, grub-common, grub2-common (= 2.02~beta2-9), grub-xen-bin (= 2.02~beta2-9), ucf Conflicts: grub (<< 0.97-54), grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-ieee1275, grub-legacy, grub-pc Filename: pool/main/g/grub2/grub-xen_2.02~beta2-9_amd64.deb Size: 44586 MD5sum: 5e8e54a5223fa3f5137d26ebd5b18885 SHA1: f286e8e729e70532c23e953c5b12711f9d40cb9b SHA256: 3a3c78a845ff762793cff91d39883c3e18293fecfdf878caab72f6ab66c7ef44 Description: GRand Unified Bootloader, version 2 (Xen version) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: e5f5bd7dbe07e28d8c9a50b4c9b49ada Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-xen-bin Priority: extra Section: admin Installed-Size: 3515 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-xen-bin_2.02~beta2-9_amd64.deb Size: 912492 MD5sum: 9b05ca29e76362f68be0b7f95ca5aac9 SHA1: c1936265704d7fe0d1544d8104e874bc84e92357 SHA256: 58cade0ac6aa5b3ce89ab282e0b7d52220de38a2d14506e14015840e910e9e4b Description: GRand Unified Bootloader, version 2 (Xen binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: f5cc81c0440ba3a440462606e825c347 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-xen-dbg Priority: extra Section: debug Installed-Size: 20843 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9), grub-xen-bin (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-xen-dbg_2.02~beta2-9_amd64.deb Size: 4194680 MD5sum: 57951f9eb06f70ff886ee676e4e91a17 SHA1: ed421098db0bc3233467f8aa80574e99d8ae7f03 SHA256: 2c1018e35da766b523ac405bf481d89c03f65fe445f62e2398a243b6d8973ac0 Description: GRand Unified Bootloader, version 2 (Xen debug files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 08653de052a0b5d9f21f8d2925bd514b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub2-common Priority: optional Section: admin Installed-Size: 1127 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: amd64 Source: grub2 Version: 2.02~beta2-9 Replaces: grub, grub-common (<< 1.99-1), grub-coreboot (<< 2.00-4), grub-efi (<< 1.99-1), grub-efi-amd64 (<< 2.00-4), grub-efi-ia32 (<< 2.00-4), grub-efi-ia64 (<< 2.00-4), grub-ieee1275 (<< 2.00-4), grub-legacy, grub-linuxbios (<< 1.99-1), grub-pc (<< 2.00-4), grub-yeeloong (<< 2.00-4) Depends: grub-common (= 2.02~beta2-9), dpkg (>= 1.15.4) | install-info, libc6 (>= 2.7), libdevmapper1.02.1 (>= 2:1.02.36), liblzma5 (>= 5.1.1alpha+20120614) Conflicts: grub (<< 0.97-54), grub-doc (<< 0.97-29ubuntu60), grub-legacy, grub-legacy-doc (<< 0.97-29ubuntu60) Filename: pool/main/g/grub2/grub2-common_2.02~beta2-9_amd64.deb Size: 500292 MD5sum: 5b336b97b7c384bd7f43774fc73247e7 SHA1: 8617d7ba32baf6f4d9bb46381ac6c21408a0f696 SHA256: fe68ac00e0b5a507a2046fb13275c120b0a58d0364712c630fd57ae9e6d9e4ce Description: GRand Unified Bootloader (common files for version 2) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: a969e6536e745e177a340b30bdb5ba3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: gsettings-desktop-schemas Priority: optional Section: libs Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.10.1-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend Breaks: gnome-shell (<< 3.7.90) Filename: pool/main/g/gsettings-desktop-schemas/gsettings-desktop-schemas_3.10.1-0ubuntu1_all.deb Size: 24038 MD5sum: 89765ae8f693b23076bac9a9cad64c44 SHA1: b582f89d4e361eec4e160d75138510d17689ece5 SHA256: 5b67959dc294e04f1274aa37071b2be220c63c716db45bc998f24b89ee41012a Description: GSettings deskop-wide schemas Multi-Arch: foreign Homepage: http://www.gnome.org/ Description-md5: 8bee294b32252fd9454e02190c796c52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gsettings-desktop-schemas-dev Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gsettings-desktop-schemas Version: 3.10.1-0ubuntu1 Depends: gsettings-desktop-schemas (= 3.10.1-0ubuntu1), gir1.2-gdesktopenums-3.0 (= 3.10.1-0ubuntu1) Filename: pool/main/g/gsettings-desktop-schemas/gsettings-desktop-schemas-dev_3.10.1-0ubuntu1_amd64.deb Size: 4188 MD5sum: 9eb5999b0ae41b7053f6838c05934bdd SHA1: 7530d7d2163747969991dc4e45fb8ff6dd90e13e SHA256: 4cde6c0058cf2b6f622b8b06ccd8fe6db527e83bf1643fa1be16637fdfdfa563 Description: Development files for GSettings desktop-wide schemas Homepage: http://www.gnome.org/ Description-md5: 39628a8dda830ce47f0c6955f25c1dde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gsettings-ubuntu-schemas Priority: optional Section: gnome Installed-Size: 39 Maintainer: Ubuntu Desktop Team Architecture: all Source: gsettings-ubuntu-touch-schemas Version: 0.0.1+14.04.20140401-0ubuntu1 Replaces: gsettings-ubuntu-touch-schemas (<= 0.0.1+14.04.20140130.1-0ubuntu1) Depends: dconf-gsettings-backend | gsettings-backend Breaks: gsettings-ubuntu-touch-schemas (<= 0.0.1+14.04.20140130.1-0ubuntu1) Filename: pool/main/g/gsettings-ubuntu-touch-schemas/gsettings-ubuntu-schemas_0.0.1+14.04.20140401-0ubuntu1_all.deb Size: 4344 MD5sum: ae416080a07c9e5a6c9573353dca9d2e SHA1: 3c60b9674b8c3db64fe7f778a96d6581435ebd65 SHA256: 5ed54592b364034378baf2f9b1e7714cca54331aaeba9d3a40d9845b5fce5e43 Description: GSettings deskop-wide schemas for Ubuntu Multi-Arch: foreign Homepage: https://launchpad.net/gsettings-ubuntu-touch-schemas Description-md5: b9e4749e3e05f9b2715eeafdf172b511 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: gsfonts Priority: optional Section: text Installed-Size: 4764 Maintainer: Ubuntu Developers Original-Maintainer: Masayuki Hatta (mhatta) Architecture: all Version: 1:8.11+urwcyr1.0.7~pre44-4.2ubuntu1 Conflicts: gs (<< 5.50-5), gs-aladdin (<< 6.50-4), gsfonts-x11 (<< 0.13) Filename: pool/main/g/gsfonts/gsfonts_8.11+urwcyr1.0.7~pre44-4.2ubuntu1_all.deb Size: 3373970 MD5sum: 47126e30ae67398d61e7af8cff54f3db SHA1: 261a68c2136932e975e50e3f053233845af09923 SHA256: fae918c51d76e993f984d0a9e108c9abb64db0dfcd75d39a40f939d740972661 Description: Fonts for the Ghostscript interpreter(s) Homepage: http://www.ghostscript.com/ Description-md5: c77fd616d53a8b059361ca26ef255651 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gsfonts-x11 Priority: optional Section: x11 Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Version: 0.22 Depends: gsfonts (>= 6.0-2), xfonts-utils (>= 1:7.5+2) Breaks: gsfonts (<< 6.0-2) Filename: pool/main/g/gsfonts-x11/gsfonts-x11_0.22_all.deb Size: 9108 MD5sum: cf11cebee0cfa788dbc04484b20278e4 SHA1: 728e8cc0cdf8738b33e707153c18693a112c8642 SHA256: b8d2292d4cb075496768d98de02ff352cafabb868f510897ebd80f4ab9bab837 Description: Make Ghostscript fonts available to X11 Description-md5: c9e30693eb83345b91b7d2f3ddc42a3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: gstreamer-tools Priority: optional Section: utils Installed-Size: 725 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.24), gstreamer0.10-tools | gstreamer0.8-tools Conflicts: gstreamer0.8-tools (<< 0.8.11-2) Filename: pool/main/g/gstreamer0.10/gstreamer-tools_0.10.36-1.2ubuntu3_amd64.deb Size: 6292 MD5sum: 79787e0169f3ba54c2f1b9607b56136d SHA1: 26683bdc42f9f41911db928f8b68bd5318a31b48 SHA256: 45a7b9ce57e92bf9b110b4c2b399b723ecd2dfbbfad42f5723d52febd4b10e56 Description: Tools for use with GStreamer Homepage: http://gstreamer.freedesktop.org Description-md5: 4bf8ad824e4b1bcee731f8903efd36d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gstreamer0.10-alsa Priority: optional Section: libs Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Provides: gstreamer0.10-audiosink, gstreamer0.10-audiosource Depends: libasound2 (>= 1.0.16), libc6 (>= 2.14), libglib2.0-0 (>= 2.31.8), libgstreamer0.10-0 (>= 0.10.36), libgstreamer-plugins-base0.10-0 (>= 0.10.36) Recommends: alsa-base (>= 0.9.0) Suggests: alsa-utils (>= 0.9.0) Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-alsa_0.10.36-1.1ubuntu2_amd64.deb Size: 30268 MD5sum: 905ba68d5dba2aa36bec02e476839f8d SHA1: bf6acbe59779496548f9ccc771651cff4130f619 SHA256: c68e6b1875372014d7a20cc3460f3017ded0c5f5319c351be22b2b1e5ae59f80 Description: GStreamer plugin for ALSA Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Gstreamer-Elements: alsamixer, alsasink, alsasrc Gstreamer-Version: 0.10 Description-md5: 339f038172c486f3cef220df0c0e5ac4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer0.10-doc Priority: optional Section: doc Installed-Size: 7617 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Depends: libxml2-doc, libglib2.0-doc Recommends: libgstreamer0.10-dev (= 0.10.36-1.2ubuntu3) Filename: pool/main/g/gstreamer0.10/gstreamer0.10-doc_0.10.36-1.2ubuntu3_all.deb Size: 495440 MD5sum: 596c83ddb87428b8c5dab95d134ea167 SHA1: d1b7886bb16dd8868e55d98a72198401f707be16 SHA256: c7ca3349a22877c12da798acba2ac7c27e2da288149fa94c27f52b51f3a9464f Description: GStreamer core documentation and manuals Homepage: http://gstreamer.freedesktop.org Description-md5: 2274936f9039765c43e33252ae21527d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer0.10-gconf Priority: optional Section: sound Installed-Size: 164 Maintainer: Ubuntu Desktop Team Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-good0.10 Version: 0.10.31-3+nmu1ubuntu5 Replaces: gstreamer0.10-plugins-good (<< 0.10.30-2) Depends: gconf2 (>= 2.28.1-2), gconf-service, libc6 (>= 2.2.5), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.31.8), libgstreamer0.10-0 (>= 0.10.36) Breaks: gstreamer0.10-plugins-good (<< 0.10.30-2) Filename: pool/main/g/gst-plugins-good0.10/gstreamer0.10-gconf_0.10.31-3+nmu1ubuntu5_amd64.deb Size: 67862 MD5sum: 66145f9b0de2ba95dece4a82d3e1b95d SHA1: 79150e98b02b93ad46d12e1b69016e1e06d86643 SHA256: 46b437c16afb0902df8a5696c572b8622274dc394eede5312ae7682fc9515d2c Description: GStreamer plugin for getting the sink/source information from GConf Multi-Arch: same Gstreamer-Elements: gconfaudiosink, gconfaudiosrc, gconfvideosink, gconfvideosrc Gstreamer-Version: 0.10 Description-md5: d08fde0c4992c475ba15a5c96ec7e85c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: gstreamer0.10-nice Priority: optional Section: net Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: libnice Version: 0.1.4-1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.31.8), libgstreamer0.10-0 (>= 0.10.35.2-2), libnice10 (>= 0.1.0) Breaks: libgstfarsight0.10-0 (<< 0.0.23) Filename: pool/main/libn/libnice/gstreamer0.10-nice_0.1.4-1_amd64.deb Size: 18162 MD5sum: 13aee8b871cf19ff9ff65b3ec4ffd37d SHA1: 03862d2a6acb537650c912441f31ebbd34a60c25 SHA256: 2aab822fcb8614a1bda99df2cb495060f03a125525f161f74f9acf5d2bd0930e Description: ICE library (GStreamer 0.10 plugin) Multi-Arch: same Homepage: http://nice.freedesktop.org/ Description-md5: 8eab62208a4fc17f92a82e6b281f7f6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: gstreamer0.10-plugins-base Priority: optional Section: libs Installed-Size: 2122 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Replaces: gstreamer0.10-plugins-bad (<< 0.10.3+cvs20060814-0ubuntu4) Provides: gstreamer0.10-audiosource, gstreamer0.10-videosource Depends: libc6 (>= 2.14), libcdparanoia0 (>= 3.10.2+debian), libglib2.0-0 (>= 2.37.3), libgstreamer0.10-0 (>= 0.10.36-1.1), libogg0 (>= 1.0rc3), liborc-0.4-0 (>= 1:0.4.18), libtheora0 (>= 1.0), libvisual-0.4-0 (>= 0.4.0-4), libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libxml2 (>= 2.7.4), libgstreamer-plugins-base0.10-0 (>= 0.10.36) Suggests: gvfs Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-plugins-base_0.10.36-1.1ubuntu2_amd64.deb Size: 534914 MD5sum: 3b5bd65355abf90675240b8e14ac7d36 SHA1: df60cc82ab663c9cb27dbe8b5ed6a161df4295af SHA256: 1dd2eacb693b52c7b30e93a464aee156da591470ec78a6bc11b89512cac8e4e7 Description: GStreamer plugins from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Gstreamer-Decoders: application/ogg; application/x-annodex; application/x-ass; application/x-ogg-avi; application/x-ogm-audio; application/x-ogm-text; application/x-ogm-video; application/x-ssa; application/x-subtitle; application/x-subtitle-dks; application/x-subtitle-mpl2; application/x-subtitle-qttext; application/x-subtitle-sami; application/x-subtitle-tmplayer; audio/x-vorbis; video/x-theora Gstreamer-Elements: adder, appsink, appsrc, audioconvert, audiorate, audioresample, audiotestsrc, cdparanoiasrc, decodebin, decodebin2, encodebin, ffmpegcolorspace, gdpdepay, gdppay, giosink, giosrc, giostreamsink, giostreamsrc, multifdsink, oggaviparse, oggdemux, oggmux, oggparse, ogmaudioparse, ogmtextparse, ogmvideoparse, playbin, playbin2, playsink, ssaparse, subparse, subtitleoverlay, tcpclientsink, tcpclientsrc, tcpserversink, tcpserversrc, theoradec, theoraenc, theoraparse, uridecodebin, videorate, videoscale, videotestsrc, volume, vorbisdec, vorbisenc, vorbisparse, vorbistag Gstreamer-Encoders: application/ogg; application/x-gdp; audio/x-vorbis; video/x-theora Gstreamer-Uri-Sinks: appsink, file Gstreamer-Uri-Sources: appsrc, cdda, file Gstreamer-Version: 0.10 Description-md5: 73eb82d2de7fe71e4455e1742423e3e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer0.10-plugins-base-apps Priority: optional Section: utils Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.24), libgstreamer0.10-0 (>= 0.10.36), perl, gstreamer0.10-tools Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-plugins-base-apps_0.10.36-1.1ubuntu2_amd64.deb Size: 63316 MD5sum: eaf4d308083fabc44e6ec0142c766180 SHA1: 6ebb5e8c320b709fa1e124d4eb9f1c63294908f5 SHA256: 0b164fafb6c6043e508f892ec6dc27de4133d684921cde9f16858e0958efe937 Description: GStreamer helper programs from the "base" set Homepage: http://gstreamer.freedesktop.org Description-md5: 72cc51baa52c95f36129fb0f74a62970 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: gstreamer0.10-plugins-base-dbg Priority: extra Section: libdevel Installed-Size: 4554 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Replaces: gstreamer0.10-plugins-bad-dbg (<< 0.10.3+cvs20060814-0ubuntu4) Depends: gstreamer0.10-alsa (= 0.10.36-1.1ubuntu2), gstreamer0.10-plugins-base (= 0.10.36-1.1ubuntu2), gstreamer0.10-x (= 0.10.36-1.1ubuntu2), libgstreamer-plugins-base0.10-0 (= 0.10.36-1.1ubuntu2) Suggests: gstreamer0.10-gnomevfs (= 0.10.36-1.1ubuntu2) Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-plugins-base-dbg_0.10.36-1.1ubuntu2_amd64.deb Size: 3643318 MD5sum: 1113d1a8a8c9c528cfba6c9b2b7fd1de SHA1: a0e993aa86747a3ac77722e155f2aa0fc2d45e3a SHA256: 6a196bc1140a6d55bb0b37f4cd5d82eec223569062ae1702caaf3f117e2ff66f Description: GStreamer plugins from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: b7d3c79dd3992a2b1b542fa636eec13a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer0.10-plugins-base-doc Priority: optional Section: doc Installed-Size: 5141 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Depends: libglib2.0-doc, gstreamer0.10-doc Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-plugins-base-doc_0.10.36-1.1ubuntu2_all.deb Size: 357418 MD5sum: c45b53243d3e08af6568384add48069a SHA1: fe7255111f7c2c1b753c7b47a7caa36623d88e4f SHA256: d1aa0066b0fc4d7c49e4036d3a3bec37d6e93df65413fbc0921981618dd6e0c6 Description: GStreamer documentation for plugins from the "base" set Homepage: http://gstreamer.freedesktop.org Description-md5: aaf86bd34d894dca484623ae59419aad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer0.10-plugins-good Priority: optional Section: libs Installed-Size: 5196 Maintainer: Ubuntu Desktop Team Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-good0.10 Version: 0.10.31-3+nmu1ubuntu5 Replaces: gstreamer0.10-plugins-bad (<< 0.10.21.2), gstreamer0.10-plugins-good-doc (<< 0.10.6-2), gstreamer0.10-plugins-really-bad (<< 0.10.21.2) Provides: gstreamer0.10-audiosink, gstreamer0.10-audiosource, gstreamer0.10-videosink, gstreamer0.10-videosource, gstreamer0.10-visualization Depends: libaa1 (>= 1.4p5), libavc1394-0 (>= 0.5.3), libbz2-1.0, libc6 (>= 2.14), libcaca0 (>= 0.99.beta17-1), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10.0), libdv4, libflac8 (>= 1.3.0), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base0.10-0 (>= 0.10.36), libgstreamer0.10-0 (>= 0.10.36-1.1), libgudev-1.0-0 (>= 146), libiec61883-0 (>= 1.2.0), libjack-jackd2-0 (>= 1.9.5~dfsg-14) | libjack-0.116, libjpeg8 (>= 8c), liborc-0.4-0 (>= 1:0.4.18), libpng12-0 (>= 1.2.13-4), libraw1394-11, libshout3, libsoup-gnome2.4-1 (>= 2.27.4), libsoup2.4-1 (>= 2.26.1), libspeex1 (>= 1.2~beta3-1), libstdc++6 (>= 4.1.1), libtag1c2a (>= 1.5), libv4l-0 (>= 0.5.0), libwavpack1 (>= 4.40.0), libx11-6, libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxml2 (>= 2.7.4), libxv1, zlib1g (>= 1:1.1.4), gstreamer0.10-plugins-base Pre-Depends: multiarch-support Recommends: gstreamer0.10-x Breaks: gstreamer0.10-plugins-bad (<< 0.10.21.2), gstreamer0.10-plugins-really-bad (<< 0.10.21.2) Filename: pool/main/g/gst-plugins-good0.10/gstreamer0.10-plugins-good_0.10.31-3+nmu1ubuntu5_amd64.deb Size: 1366532 MD5sum: b0a5541463bbba7b72bd27fe50dcf1c1 SHA1: 9be65b856c75a0df9e3ff09b56cc967385719ff9 SHA256: cf809a03c0e7ccdf2aa53a283e04a7f08b41a00451305e48b4b62b5d2b86b7da Description: GStreamer plugins from the "good" set Multi-Arch: same Gstreamer-Decoders: application/x-3gp; application/x-apetag; application/x-icy; application/x-id3; application/x-navi-animation; application/x-rtcp; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string){ AMR, AMR-WB }, encoding-params=(string)1, octet-align=(string)1, crc=(string){ 0, 1 }, robust-sorting=(string)0, interleaving=(string)0; application/x-rtp, media=(string){ video, audio, application }, payload=(int)[ 96, 127 ], encoding-name=(string)MPEG4-GENERIC, streamtype=(string){ 4, 5 }, mode=(string){ generic, CELP-cbr, CELP-vbr, AAC-lbr, AAC-hbr }; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string)SPEEX, encoding-params=(string)1; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string)SIREN, dct-length=(int)320; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string)ILBC, mode=(string){ 20, 30 }; application/x-rtp, media=(string){ video, audio }, payload=(int)[ 96, 127 ], encoding-name=(string)DV, encode=(string){ SD-VCR/525-60, SD-VCR/625-50, HD-VCR/1125-60, HD-VCR/1250-50, SDL-VCR/525-60, SDL-VCR/625-50, 306M/525-60, 306M/625-50, 314M-25/525-60, 314M-25/625-50, 314M-50/525-60, 314M-50/625-50 }; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string){ TELEPHONE-EVENT, VORBIS, X-QDM, QCELP, MP4A-LATM, L16, MPA-ROBUST, X-MP3-DRAFT-00, X-MP3-DRAFT-01, X-MP3-DRAFT-02, X-MP3-DRAFT-03, X-MP3-DRAFT-04, X-MP3-DRAFT-05, X-MP3-DRAFT-06, MPA, PCMU, PCMA, GSM, G729, G726, G726-16, G726-24, G726-32, G726-40, AAL2-G726-16, AAL2-G726-24, AAL2-G726-32, AAL2-G726-40, G723, G722, CELT, BV16, BV32, AC3 }; application/x-rtp, payload=(int)[ 96, 127 ], media=(string){ audio, video }, encoding-name=(string){ X-QT, X-QUICKTIME }; application/x-rtp, media=(string)video, payload=(int)[ 96, 127 ], encoding-name=(string){ RAW, THEORA, X-SV3V-ES, X-SORENSON-VIDEO, X-SORENSONVIDEO, X-SorensonVideo, MP4V-ES, MP2T-ES, MP1S, JPEG, JPEG2000, H264, H263, H263-2000, MPV, H263-1998 }; application/x-rtp, media=(string)other, payload=(int)[ 96, 127 ], encoding-name=(string)MP1S; application/x-rtp, media=(string)video, payload=(int)34, encoding-name=(string)H263; application/x-rtp, media=(string)audio, payload=(int)0, encoding-name=(string)PCMU; application/x-rtp, media=(string)audio, payload=(int)8, encoding-name=(string)PCMA; application/x-rtp, media=(string)application, payload=(int)[ 96, 127 ], encoding-name=(string)X-GST; application/x-rtp, media=(string)audio, payload=(int){ 12, 10, 11, 14, 3, 18, 4, 9 }; application/x-rtp, media=(string)video, payload=(int){ 33, 26, 32 }; application/x-subtitle-avi; audio/ac3; audio/mpeg, mpegversion=(int){ 1, 2, 4 }; audio/x-ac3; audio/x-alaw; audio/x-amr-nb-sh; audio/x-amr-wb-sh; audio/x-au; audio/x-dts; audio/x-eac3; audio/x-flac; audio/x-m4a; audio/x-mulaw; audio/x-speex; audio/x-wav; audio/x-wavpack, framed=(boolean){ true, false }; audio/x-wavpack-correction, framed=(boolean)false; image/bmp; image/gif; image/jpeg, sof-marker=(int){ 0, 1, 2, 5, 6, 7, 9, 10, 13, 14 }; image/png; image/svg; image/svg+xml; image/tiff; image/vnd.wap.wbmp; image/x-MS-bmp; image/x-bitmap; image/x-bmp; image/x-cmu-raster; image/x-icon; image/x-pcx; image/x-pixmap; image/x-portable-anymap; image/x-portable-bitmap; image/x-portable-graymap; image/x-portable-pixmap; image/x-sun-raster; image/x-tga; multipart/x-mixed-replace; text/x-cmml, encoded=(boolean)true; video/mj2; video/quicktime; video/webm; video/x-dv, systemstream=(boolean){ false, true }; video/x-fli; video/x-flv; video/x-matroska; video/x-msvideo; video/x-smoke Gstreamer-Elements: 3gppmux, aacparse, aasink, ac3parse, agingtv, alawdec, alawenc, alpha, alphacolor, amrparse, apedemux, apev2mux, aspectratiocrop, asteriskh263, audioamplify, audiochebband, audiocheblimit, audiodynamic, audioecho, audiofirfilter, audioiirfilter, audioinvert, audiokaraoke, audiopanorama, audiowsincband, audiowsinclimit, auparse, autoaudiosink, autoaudiosrc, autoconvert, autovideoconvert, autovideosink, autovideosrc, avidemux, avimux, avisubtitle, breakmydata, cacasink, cairooverlay, cairorender, cairotextoverlay, cairotimeoverlay, capsdebug, capssetter, cmmldec, cmmlenc, cpureport, cutter, dcaparse, deinterlace, deinterleave, dicetv, dtmfdetect, dtmfsrc, dv1394src, dvdec, dvdemux, dynudpsink, edgetv, efence, equalizer-10bands, equalizer-3bands, equalizer-nbands, flacdec, flacenc, flacparse, flactag, flvdemux, flvmux, flxdec, gamma, gdkpixbufdec, gdkpixbufscale, gdkpixbufsink, goom, goom2k1, gppmux, gstrtpbin, gstrtpjitterbuffer, gstrtpptdemux, gstrtpsession, gstrtpssrcdemux, hdv1394src, icydemux, id3demux, id3v2mux, imagefreeze, interleave, ismlmux, jackaudiosink, jackaudiosrc, jifmux, jpegdec, jpegenc, jpegparse, level, liveadder, matroskademux, matroskamux, matroskaparse, mj2mux, monoscope, mp4mux, mpegaudioparse, mulawdec, mulawenc, multifilesink, multifilesrc, multipartdemux, multipartmux, multiudpsink, navigationtest, navseek, optv, oss4mixer, oss4sink, oss4src, ossmixer, osssink, osssrc, pngdec, pngenc, progressreport, pushfilesrc, qtdemux, qtmoovrecover, qtmux, quarktv, radioactv, revtv, rganalysis, rglimiter, rgvolume, rippletv, rndbuffersize, rtpL16depay, rtpL16pay, rtpac3depay, rtpac3pay, rtpamrdepay, rtpamrpay, rtpbvdepay, rtpbvpay, rtpceltdepay, rtpceltpay, rtpdec, rtpdepay, rtpdtmfdepay, rtpdtmfmux, rtpdtmfsrc, rtpdvdepay, rtpdvpay, rtpg722depay, rtpg722pay, rtpg723depay, rtpg723pay, rtpg726depay, rtpg726pay, rtpg729depay, rtpg729pay, rtpgsmdepay, rtpgsmpay, rtpgstdepay, rtpgstpay, rtph263depay, rtph263pay, rtph263pdepay, rtph263ppay, rtph264depay, rtph264pay, rtpilbcdepay, rtpilbcpay, rtpj2kdepay, rtpj2kpay, rtpjpegdepay, rtpjpegpay, rtpmp1sdepay, rtpmp2tdepay, rtpmp2tpay, rtpmp4adepay, rtpmp4apay, rtpmp4gdepay, rtpmp4gpay, rtpmp4vdepay, rtpmp4vpay, rtpmpadepay, rtpmpapay, rtpmparobustdepay, rtpmpvdepay, rtpmpvpay, rtpmux, rtppcmadepay, rtppcmapay, rtppcmudepay, rtppcmupay, rtpqcelpdepay, rtpqdm2depay, rtpsirendepay, rtpsirenpay, rtpspeexdepay, rtpspeexpay, rtpsv3vdepay, rtptheoradepay, rtptheorapay, rtpvorbisdepay, rtpvorbispay, rtpvrawdepay, rtpvrawpay, rtpxqtdepay, rtspsrc, shagadelictv, shapewipe, shmsink, shmsrc, shout2send, smokedec, smokeenc, smpte, smptealpha, souphttpclientsink, souphttpsrc, spectrum, speexdec, speexenc, splitfilesrc, streaktv, taginject, testsink, udpsink, udpsrc, v4l2radio, v4l2sink, v4l2src, vertigotv, videobalance, videobox, videocrop, videoflip, videomixer, videomixer2, warptv, wavenc, wavpackdec, wavpackenc, wavpackparse, wavparse, webmmux, ximagesrc, y4menc Gstreamer-Encoders: application/pdf; application/postscript; application/x-rtp; application/x-yuv4mpeg, y4mversion=(int)2; audio/x-alaw; audio/x-flac; audio/x-mulaw; audio/x-speex; audio/x-wav; audio/x-wavpack-correction, framed=(boolean)true; image/jpeg; image/png; image/svg+xml; multipart/x-mixed-replace; text/x-cmml, encoded=(boolean)true; video/mj2; video/quicktime; video/webm; video/x-flv; video/x-matroska; video/x-msvideo; video/x-smoke Gstreamer-Uri-Sinks: udp Gstreamer-Uri-Sources: dv, hdv, http, https, pushfile, radio, rtsp, rtsp-sdp, rtsph, rtspt, rtspu, udp, v4l2 Gstreamer-Version: 0.10 Description-md5: 5af11b405c70a6a41fff183475cb6042 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntu-gnome-desktop Package: gstreamer0.10-plugins-good-dbg Priority: extra Section: libdevel Installed-Size: 7633 Maintainer: Ubuntu Desktop Team Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-good0.10 Version: 0.10.31-3+nmu1ubuntu5 Replaces: gstreamer0.10-plugins-bad-dbg (<< 0.10.21.2) Depends: gstreamer0.10-plugins-good (= 0.10.31-3+nmu1ubuntu5), gstreamer0.10-pulseaudio (= 0.10.31-3+nmu1ubuntu5), gstreamer0.10-gconf (= 0.10.31-3+nmu1ubuntu5) Breaks: gstreamer0.10-plugins-bad-dbg (<< 0.10.21.2) Filename: pool/main/g/gst-plugins-good0.10/gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1ubuntu5_amd64.deb Size: 6238374 MD5sum: 7c3e6b71bc86287449fbfc684224627b SHA1: ab2f500393d3471d5fade01f6208b086e63dc5db SHA256: f862871eecba5c85773a956cab9ddd53d1765d762cc7bddc625af78bf3053b6c Description: GStreamer plugins from the "good" set Multi-Arch: same Description-md5: 23ae3e3874bef9755952358103d2a3d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer0.10-plugins-good-doc Priority: optional Section: doc Installed-Size: 2990 Maintainer: Ubuntu Desktop Team Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gst-plugins-good0.10 Version: 0.10.31-3+nmu1ubuntu5 Depends: gstreamer0.10-doc, gstreamer0.10-plugins-base-doc Filename: pool/main/g/gst-plugins-good0.10/gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1ubuntu5_all.deb Size: 221620 MD5sum: 661774d4442467df4cee6db52c860010 SHA1: 6d2f968ee3aa615a8f1be459c5cf1c5dca3d8070 SHA256: 908b920a84a908ec0076cf6c58e491dbf54869e17d6b087feec0a7f32054fdf5 Description: GStreamer documentation for plugins from the "good" set Description-md5: 39674248e63796a3ad344a5d7425ad8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer0.10-pulseaudio Priority: optional Section: sound Installed-Size: 249 Maintainer: Ubuntu Desktop Team Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-good0.10 Version: 0.10.31-3+nmu1ubuntu5 Provides: gstreamer0.10-audiosink, gstreamer0.10-audiosource Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base0.10-0 (>= 0.10.36), libgstreamer0.10-0 (>= 0.10.36), libpulse0 (>= 1:1.0) Filename: pool/main/g/gst-plugins-good0.10/gstreamer0.10-pulseaudio_0.10.31-3+nmu1ubuntu5_amd64.deb Size: 99720 MD5sum: 2f31e0052b3e879b477f0558a922730a SHA1: ec5a8b4eb0c74d73b8cdf4b9985649280d21a100 SHA256: a79507ac135263b6f3d2edcba8436e758394df4c75d06b262686477c08d3bb74 Description: GStreamer plugin for PulseAudio Multi-Arch: same Gstreamer-Elements: pulseaudiosink, pulsemixer, pulsesink, pulsesrc Gstreamer-Version: 0.10 Description-md5: b4aa98329fafbb54ea588de42c256d78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer0.10-tools Priority: optional Section: utils Installed-Size: 800 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.24.0), pkg-config, libgstreamer0.10-0 (>= 0.10.36) Suggests: gstreamer0.10-plugins-base Filename: pool/main/g/gstreamer0.10/gstreamer0.10-tools_0.10.36-1.2ubuntu3_amd64.deb Size: 41304 MD5sum: b5396026624dff137bbd14d782c7a134 SHA1: c331dabed63108f8c683d0fba1f1c0d4a0ada5bd SHA256: 6fa5811140d2cf166c6fdd0c6bef8d7ebc3dbb55e0f7ef00ba55cd78b23b8c03 Description: Tools for use with GStreamer Homepage: http://gstreamer.freedesktop.org Description-md5: 909df9df4ba32a53040e4e54751c1cfa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: gstreamer0.10-x Priority: optional Section: libs Installed-Size: 308 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Provides: gstreamer0.10-videosink Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.31.8), libgstreamer0.10-0 (>= 0.10.36), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.16.0), libx11-6, libxext6, libxv1, libgstreamer-plugins-base0.10-0 (>= 0.10.36) Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-x_0.10.36-1.1ubuntu2_amd64.deb Size: 58470 MD5sum: ab596d528113b86d8b7ad8adeafe6e64 SHA1: 28be1cc52a3c196e966d4fa8b695d054ae4928e3 SHA256: 08ba347e685833ddbc2fd80c776e0dbcf7c84d4eb4d0ed6ec5f4aefc4ac69284 Description: GStreamer plugins for X11 and Pango Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Gstreamer-Elements: clockoverlay, textoverlay, textrender, timeoverlay, ximagesink, xvimagesink Gstreamer-Version: 0.10 Description-md5: f30e1dbce14d6ece228c6b4e6dfdfdbd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntu-gnome-desktop Package: gstreamer1.0-alsa Priority: optional Section: libs Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base1.0 Version: 1.2.3-1 Provides: gstreamer1.0-audiosink, gstreamer1.0-audiosource Depends: libasound2 (>= 1.0.16), libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgstreamer1.0-0 (>= 1.0.0), libgstreamer-plugins-base1.0-0 (>= 1.2.3) Recommends: alsa-base (>= 0.9.0) Suggests: alsa-utils (>= 0.9.0) Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-alsa_1.2.3-1_amd64.deb Size: 28396 MD5sum: 766ed8cfec020651ec99fa7c7d4e0c7b SHA1: 9ddbb5f3bcb2e058a3b1ea4d5d8dd4cf5f206505 SHA256: 4171f56e84239ca843ce3f38004dd0fe7214c8fd848752629429a91188665bee Description: GStreamer plugin for ALSA Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Gstreamer-Elements: alsasink, alsasrc Gstreamer-Version: 1.2 Description-md5: 339f038172c486f3cef220df0c0e5ac4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gstreamer1.0-clutter Priority: optional Section: libs Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-gst-2.0 Version: 2.0.8-1build1 Depends: libc6 (>= 2.14), libclutter-1.0-0 (>= 1.13.0), libcogl15 (>= 1.15.8), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libx11-6 Filename: pool/main/c/clutter-gst-2.0/gstreamer1.0-clutter_2.0.8-1build1_amd64.deb Size: 23342 MD5sum: 8af145c4e575b90906d51a9187fff7e2 SHA1: 6dbb93dda37b191faa455770a130b124aff5fcb4 SHA256: 4a0a1e7aca5751b70cd7b2c61639bdecaddc72a16cc949f6f4539a7df69bc53b Description: Clutter PLugin for GStreamer 1.0 Homepage: http://www.clutter-project.org/ Description-md5: 8ea8d25fb358dcee12567aa5357196c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer1.0-doc Priority: optional Section: doc Installed-Size: 8210 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gstreamer1.0 Version: 1.2.3-1 Depends: libglib2.0-doc Recommends: libgstreamer1.0-dev (= 1.2.3-1) Filename: pool/main/g/gstreamer1.0/gstreamer1.0-doc_1.2.3-1_all.deb Size: 472624 MD5sum: 8ae49100d599a55e6274e2fb8a7c1a75 SHA1: 1b93ba08faa18c000ee918a574ad1a06c3c7e185 SHA256: a82cf6524062ef882d17ef86b586d85239552f60c6052b67117d54f5685d55b8 Description: GStreamer core documentation and manuals Homepage: http://gstreamer.freedesktop.org Description-md5: 2274936f9039765c43e33252ae21527d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer1.0-nice Priority: optional Section: net Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: libnice Version: 0.1.4-1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.31.8), libgstreamer1.0-0 (>= 1.0.0), libnice10 (>= 0.1.0) Filename: pool/main/libn/libnice/gstreamer1.0-nice_0.1.4-1_amd64.deb Size: 18254 MD5sum: f9dc253ac8d35c7f420ae62227e72f1e SHA1: 6ee5187fbfda91c31d3725e45b05ac65e003a053 SHA256: 84555d07fcbd2dc4cb94fcecf9e3b1fd74b66229eb3bfde04dc87e973dc8f124 Description: ICE library (GStreamer plugin) Multi-Arch: same Homepage: http://nice.freedesktop.org/ Description-md5: e6a5fecf0861bb3b1b3bda258d7f2552 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gstreamer1.0-plugins-base Priority: optional Section: libs Installed-Size: 1739 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base1.0 Version: 1.2.3-1 Provides: gstreamer1.0-audiosource, gstreamer1.0-videosource Depends: libc6 (>= 2.14), libcdparanoia0 (>= 3.10.2+debian), libglib2.0-0 (>= 2.37.3), libgstreamer1.0-0 (>= 1.2.0), libogg0 (>= 1.0rc3), liborc-0.4-0 (>= 1:0.4.18), libtheora0 (>= 1.0), libvisual-0.4-0 (>= 0.4.0-4), libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libgstreamer-plugins-base1.0-0 (>= 1.2.3) Suggests: gvfs Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-plugins-base_1.2.3-1_amd64.deb Size: 485946 MD5sum: 48087bd5f9dd71cd5b840cc17cad96ab SHA1: 8c1c66c96902cddcf36f6a6d79843a8e524b05eb SHA256: 1457ac365a7449ab345896e85defc958571adfda9453313aa4b99e1429e24305 Description: GStreamer plugins from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Gstreamer-Decoders: application/kate; application/ogg; application/x-ass; application/x-ogg-avi; application/x-ogm-audio; application/x-ogm-text; application/x-ogm-video; application/x-ssa; application/x-subtitle; application/x-subtitle-dks; application/x-subtitle-mpl2; application/x-subtitle-qttext; application/x-subtitle-sami; application/x-subtitle-tmplayer; audio/ogg; audio/x-vorbis; video/ogg; video/x-theora Gstreamer-Elements: adder, appsink, appsrc, audioconvert, audiorate, audioresample, audiotestsrc, cdparanoiasrc, decodebin, encodebin, giosink, giosrc, giostreamsink, giostreamsrc, multifdsink, multisocketsink, oggaviparse, oggdemux, oggmux, oggparse, ogmaudioparse, ogmtextparse, ogmvideoparse, playbin, playsink, ssaparse, streamsynchronizer, subparse, subtitleoverlay, tcpclientsink, tcpclientsrc, tcpserversink, tcpserversrc, theoradec, theoraenc, theoraparse, uridecodebin, videoconvert, videorate, videoscale, videotestsrc, volume, vorbisdec, vorbisenc, vorbisparse, vorbistag Gstreamer-Encoders: application/ogg; audio/ogg; audio/x-vorbis; video/ogg; video/x-theora Gstreamer-Uri-Sinks: appsink, file Gstreamer-Uri-Sources: appsrc, cdda, file Gstreamer-Version: 1.2 Description-md5: 73eb82d2de7fe71e4455e1742423e3e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer1.0-plugins-base-apps Priority: optional Section: utils Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.32), libgstreamer1.0-0 (>= 1.0.0), gstreamer1.0-tools Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-plugins-base-apps_1.2.3-1_amd64.deb Size: 25262 MD5sum: d5c1d69897b46e6b21865b41046991ed SHA1: 913844b6dc43cce59714c162f489c51acf5777e2 SHA256: 858708d859264c587f62533ded7553a2b22a2acbeca9155cbf43cdee4e31431d Description: GStreamer helper programs from the "base" set Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: 72cc51baa52c95f36129fb0f74a62970 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gstreamer1.0-plugins-base-dbg Priority: extra Section: debug Installed-Size: 4206 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: gstreamer1.0-alsa (= 1.2.3-1), gstreamer1.0-plugins-base (= 1.2.3-1), gstreamer1.0-x (= 1.2.3-1), libgstreamer-plugins-base1.0-0 (= 1.2.3-1) Suggests: gstreamer1.0-gnomevfs (= 1.2.3-1) Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-plugins-base-dbg_1.2.3-1_amd64.deb Size: 3314022 MD5sum: 3ea1b116310d7695e5dcb76cae68536a SHA1: 89abbc84d41e793b92fd095046a6d69ab1555413 SHA256: a83b97f88afc5e29ce0cee9f837edd022646d08fd8e400d7eac88ea1de4becba Description: GStreamer plugins from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: b7d3c79dd3992a2b1b542fa636eec13a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer1.0-plugins-base-doc Priority: optional Section: doc Installed-Size: 5464 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: libglib2.0-doc, gstreamer1.0-doc Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-plugins-base-doc_1.2.3-1_all.deb Size: 326274 MD5sum: 5b08511b8fc1e4c4cc83082219a11178 SHA1: 633a2c0aff5c911ff15decc70b6a53d193bcdf3b SHA256: 38e898fae422d2ae5de6c7c88da0386c9ced2dd01473b233a00e0d9d02ca3b9f Description: GStreamer documentation for plugins from the "base" set Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: aaf86bd34d894dca484623ae59419aad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer1.0-plugins-good Priority: optional Section: libs Installed-Size: 4904 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Replaces: gstreamer1.0-plugins-bad (<< 1.1.2) Provides: gstreamer1.0-audiosink, gstreamer1.0-audiosource, gstreamer1.0-videosink, gstreamer1.0-videosource, gstreamer1.0-visualization Depends: libaa1 (>= 1.4p5), libavc1394-0 (>= 0.5.3), libbz2-1.0, libc6 (>= 2.17), libcaca0 (>= 0.99.beta17-1), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10.0), libdv4, libflac8 (>= 1.3.0), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.2.1), libgstreamer-plugins-good1.0-0 (= 1.2.3-1ubuntu2), libgstreamer1.0-0 (>= 1.2.0), libiec61883-0 (>= 1.2.0), libjack-jackd2-0 (>= 1.9.5~dfsg-14) | libjack-0.116, libjpeg8 (>= 8c), liborc-0.4-0 (>= 1:0.4.18), libpng12-0 (>= 1.2.13-4), libraw1394-11, libshout3, libsoup2.4-1 (>= 2.38), libspeex1 (>= 1.2~beta3-1), libstdc++6 (>= 4.1.1), libtag1c2a (>= 1.5), libv4l-0 (>= 0.5.0), libvpx1 (>= 1.3.0), libwavpack1 (>= 4.40.0), libx11-6, libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxv1, zlib1g (>= 1:1.1.4), gstreamer1.0-plugins-base Recommends: gstreamer1.0-x Breaks: gstreamer1.0-plugins-bad (<< 1.1.2) Filename: pool/main/g/gst-plugins-good1.0/gstreamer1.0-plugins-good_1.2.3-1ubuntu2_amd64.deb Size: 1286364 MD5sum: fa68e6c21125b36bbd918c0b68a640ff SHA1: c5cee9f8615481128abacc711683540c81abeba7 SHA256: cf1fb8f5ab6be72d0af8fb454512f062154e4b5064bdeefe33a0fc796dece385 Description: GStreamer plugins from the "good" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Gstreamer-Decoders: application/x-3gp; application/x-apetag; application/x-icy; application/x-id3; application/x-navi-animation; application/x-rtp, media=(string)audio, encoding-name=(string){ AMR, AMR-WB }, encoding-params=(string)1, octet-align=(string)1; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string){ TELEPHONE-EVENT, SBC }; application/x-rtp, payload=(int)[ 96, 127 ], media=(string){ audio, video }, encoding-name=(string){ X-QT, X-QUICKTIME }; application/x-rtp, media=(string)audio, encoding-name=(string)SPEEX, encoding-params=(string)1; application/x-rtp, media=(string)audio, encoding-name=(string)SIREN, dct-length=(int)320; application/x-rtp, media=(string){ video, audio, application }, encoding-name=(string)MPEG4-GENERIC, mode=(string){ generic, CELP-cbr, CELP-vbr, AAC-lbr, AAC-hbr }; application/x-rtp, media=(string)audio, encoding-name=(string)ILBC, mode=(string){ 20, 30 }; application/x-rtp, media=(string){ video, audio }, encoding-name=(string)DV, encode=(string){ SD-VCR/525-60, SD-VCR/625-50, HD-VCR/1125-60, HD-VCR/1250-50, SDL-VCR/525-60, SDL-VCR/625-50, 306M/525-60, 306M/625-50, 314M-25/525-60, 314M-25/625-50, 314M-50/525-60, 314M-50/625-50 }; application/x-rtp, media=(string)video, encoding-name=(string){ RAW, VP8-DRAFT-IETF-01, THEORA, X-SV3V-ES, X-SORENSON-VIDEO, X-SORENSONVIDEO, X-SorensonVideo, MP4V-ES, MP2T, MP2T-ES, MP1S, JPEG, JPEG2000, H264, H263, H263-1998, H263-2000, MPV }; application/x-rtp, media=(string)audio, encoding-name=(string){ VORBIS, X-QDM, QCELP, MP4A-LATM, L24, L16, MPA-ROBUST, X-MP3-DRAFT-00, X-MP3-DRAFT-01, X-MP3-DRAFT-02, X-MP3-DRAFT-03, X-MP3-DRAFT-04, X-MP3-DRAFT-05, X-MP3-DRAFT-06, MPA, PCMU, PCMA, GSM, G729, G726, G726-16, G726-24, G726-32, G726-40, AAL2-G726-16, AAL2-G726-24, AAL2-G726-32, AAL2-G726-40, G723, G722, CELT, BV16, BV32, AC3 }; application/x-rtp, media=(string)audio, payload=(int){ 12, 10, 11, 14, 0, 8, 3, 18, 4, 9 }; application/x-rtp, media=(string)video, payload=(int){ 33, 26, 34, 32 }; application/x-rtp, media=(string)other, encoding-name=(string)MP1S; application/x-rtp, media=(string)application, encoding-name=(string)X-GST; application/x-subtitle-avi; audio/ac3; audio/mpeg, mpegversion=(int){ 1, 2, 4 }; audio/webm; audio/x-ac3; audio/x-alaw; audio/x-amr-nb-sh; audio/x-amr-wb-sh; audio/x-au; audio/x-dts; audio/x-eac3; audio/x-flac; audio/x-m4a; audio/x-matroska; audio/x-mulaw; audio/x-private1-ac3; audio/x-private1-dts; audio/x-sbc; audio/x-speex; audio/x-wav; audio/x-wavpack; image/bmp; image/gif; image/jpeg; image/png; image/svg; image/svg+xml; image/tiff; image/vnd.wap.wbmp; image/x-MS-bmp; image/x-bitmap; image/x-bmp; image/x-cmu-raster; image/x-icon; image/x-pcx; image/x-pixmap; image/x-portable-anymap; image/x-portable-bitmap; image/x-portable-graymap; image/x-portable-pixmap; image/x-sun-raster; image/x-tga; multipart/x-mixed-replace; video/mj2; video/quicktime; video/webm; video/x-dv, systemstream=(boolean){ false, true }; video/x-fli; video/x-flv; video/x-matroska; video/x-matroska-3d; video/x-msvideo; video/x-vp8; video/x-vp9 Gstreamer-Elements: 3gppmux, aacparse, aasink, ac3parse, agingtv, alawdec, alawenc, alpha, alphacolor, amrparse, apedemux, apev2mux, aspectratiocrop, asteriskh263, audioamplify, audiochebband, audiocheblimit, audiodynamic, audioecho, audiofirfilter, audioiirfilter, audioinvert, audiokaraoke, audiopanorama, audiowsincband, audiowsinclimit, auparse, autoaudiosink, autoaudiosrc, autovideosink, autovideosrc, avidemux, avimux, avisubtitle, breakmydata, cacasink, cairooverlay, capssetter, cpureport, cutter, dcaparse, deinterlace, deinterleave, dicetv, dtmfsrc, dv1394src, dvdec, dvdemux, dynudpsink, edgetv, equalizer-10bands, equalizer-3bands, equalizer-nbands, flacdec, flacenc, flacparse, flactag, flvdemux, flvmux, flxdec, gamma, gdkpixbufdec, gdkpixbufoverlay, gdkpixbufsink, goom, goom2k1, hdv1394src, icydemux, id3demux, id3v2mux, imagefreeze, interleave, ismlmux, jackaudiosink, jackaudiosrc, jifmux, jpegdec, jpegenc, jpegparse, level, matroskademux, matroskamux, matroskaparse, mj2mux, monoscope, mp4mux, mpegaudioparse, mulawdec, mulawenc, multifilesink, multifilesrc, multipartdemux, multipartmux, multiudpsink, navigationtest, navseek, optv, oss4sink, oss4src, osssink, osssrc, pngdec, pngenc, progressreport, pushfilesrc, qtdemux, qtmoovrecover, qtmux, quarktv, radioactv, revtv, rganalysis, rglimiter, rgvolume, rippletv, rndbuffersize, rtpL16depay, rtpL16pay, rtpL24depay, rtpL24pay, rtpac3depay, rtpac3pay, rtpamrdepay, rtpamrpay, rtpbin, rtpbvdepay, rtpbvpay, rtpceltdepay, rtpceltpay, rtpdec, rtpdtmfdepay, rtpdtmfmux, rtpdtmfsrc, rtpdvdepay, rtpdvpay, rtpg722depay, rtpg722pay, rtpg723depay, rtpg723pay, rtpg726depay, rtpg726pay, rtpg729depay, rtpg729pay, rtpgsmdepay, rtpgsmpay, rtpgstdepay, rtpgstpay, rtph263depay, rtph263pay, rtph263pdepay, rtph263ppay, rtph264depay, rtph264pay, rtpilbcdepay, rtpilbcpay, rtpj2kdepay, rtpj2kpay, rtpjitterbuffer, rtpjpegdepay, rtpjpegpay, rtpmp1sdepay, rtpmp2tdepay, rtpmp2tpay, rtpmp4adepay, rtpmp4apay, rtpmp4gdepay, rtpmp4gpay, rtpmp4vdepay, rtpmp4vpay, rtpmpadepay, rtpmpapay, rtpmparobustdepay, rtpmpvdepay, rtpmpvpay, rtpmux, rtppcmadepay, rtppcmapay, rtppcmudepay, rtppcmupay, rtpptdemux, rtpqcelpdepay, rtpqdm2depay, rtprtxqueue, rtpsbcdepay, rtpsbcpay, rtpsession, rtpsirendepay, rtpsirenpay, rtpspeexdepay, rtpspeexpay, rtpssrcdemux, rtpsv3vdepay, rtptheoradepay, rtptheorapay, rtpvorbisdepay, rtpvorbispay, rtpvp8depay, rtpvp8pay, rtpvrawdepay, rtpvrawpay, rtpxqtdepay, rtspsrc, sbcparse, scaletempo, shagadelictv, shapewipe, shout2send, smpte, smptealpha, souphttpclientsink, souphttpsrc, spectrum, speexdec, speexenc, splitfilesrc, streaktv, taginject, testsink, udpsink, udpsrc, v4l2radio, v4l2sink, v4l2src, vertigotv, videobalance, videobox, videocrop, videoflip, videomedian, videomixer, vp8dec, vp8enc, vp9dec, vp9enc, warptv, wavenc, wavpackdec, wavpackenc, wavpackparse, wavparse, webmmux, ximagesrc, y4menc Gstreamer-Encoders: application/x-rtp; application/x-yuv4mpeg, y4mversion=(int)2; audio/webm; audio/x-alaw; audio/x-flac; audio/x-matroska; audio/x-mulaw; audio/x-speex; audio/x-wav; audio/x-wavpack-correction, framed=(boolean)true; image/jpeg, sof-marker=(int){ 0, 1, 2, 9 }; image/png; multipart/x-mixed-replace; video/mj2; video/quicktime; video/webm; video/x-flv; video/x-matroska; video/x-matroska-3d; video/x-msvideo; video/x-vp8, profile=(string){ 0, 1, 2, 3 }; video/x-vp9, profile=(string){ 0, 1, 2, 3 } Gstreamer-Uri-Sinks: udp Gstreamer-Uri-Sources: dv, hdv, http, https, icy, icyx, pushfile, radio, rtsp, rtsp-sdp, rtsph, rtsps, rtspsh, rtspst, rtspsu, rtspt, rtspu, splitfile, udp, v4l2 Gstreamer-Version: 1.2 Description-md5: 5af11b405c70a6a41fff183475cb6042 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer1.0-plugins-good-dbg Priority: extra Section: debug Installed-Size: 6875 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Replaces: gstreamer1.0-plugins-bad (<< 1.1.2) Depends: gstreamer1.0-plugins-good (= 1.2.3-1ubuntu2), gstreamer1.0-pulseaudio (= 1.2.3-1ubuntu2) Breaks: gstreamer1.0-plugins-bad (<< 1.1.2) Filename: pool/main/g/gst-plugins-good1.0/gstreamer1.0-plugins-good-dbg_1.2.3-1ubuntu2_amd64.deb Size: 5558082 MD5sum: 22adba2208bce68a6a8098479f14a271 SHA1: 9428f198c17647bf4c53902ced3107fae61902cb SHA256: d2b670d9384665c1245d3ece8b56ac2f89c890b2cbee2dfaf80a5fdd2f25e7df Description: GStreamer plugins from the "good" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Description-md5: 23ae3e3874bef9755952358103d2a3d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer1.0-plugins-good-doc Priority: optional Section: doc Installed-Size: 3005 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Depends: gstreamer1.0-doc, gstreamer1.0-plugins-base-doc Filename: pool/main/g/gst-plugins-good1.0/gstreamer1.0-plugins-good-doc_1.2.3-1ubuntu2_all.deb Size: 185732 MD5sum: 20c09a9a8330e5f0b3b74942aef79527 SHA1: 030bd6f4dd4b6320367e220db2caf32e7e0d0e69 SHA256: 523f5b87d13f98f27eec5020b866a0c25eb5e8d0094be01651fe43405208ab44 Description: GStreamer documentation for plugins from the "good" set Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Description-md5: 39674248e63796a3ad344a5d7425ad8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer1.0-pulseaudio Priority: optional Section: sound Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Provides: gstreamer1.0-audiosink, gstreamer1.0-audiosource Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.2.0), libpulse0 (>= 1:2.0) Filename: pool/main/g/gst-plugins-good1.0/gstreamer1.0-pulseaudio_1.2.3-1ubuntu2_amd64.deb Size: 48970 MD5sum: eb1cb13dcb3e87bc2c7e1be70763280e SHA1: 5095c7e333ab1c44322894a300c07302256f82bb SHA256: 05362beced58a1ba48ff563418a2d7902015ab6735e3280737b97cb010812f31 Description: GStreamer plugin for PulseAudio Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Gstreamer-Elements: pulsesink, pulsesrc Gstreamer-Version: 1.2 Description-md5: b4aa98329fafbb54ea588de42c256d78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer1.0-tools Priority: optional Section: utils Installed-Size: 910 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gstreamer1.0 Version: 1.2.3-1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.32), pkg-config, libgstreamer1.0-0 (>= 1.2.3) Suggests: gstreamer1.0-plugins-base Filename: pool/main/g/gstreamer1.0/gstreamer1.0-tools_1.2.3-1_amd64.deb Size: 37086 MD5sum: 28cffcc4edd67b2a0561e8dbf15e571f SHA1: 4932ef04c484eccfba8d5796a35bca6ef40d627f SHA256: 7b0d316f6b110659bf1be99e721593c8a76fc0818bbbc8bf1c4c6d5d704d9516 Description: Tools for use with GStreamer Homepage: http://gstreamer.freedesktop.org Description-md5: 909df9df4ba32a53040e4e54751c1cfa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: gstreamer1.0-x Priority: optional Section: libs Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base1.0 Version: 1.2.3-1 Provides: gstreamer1.0-videosink Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgstreamer1.0-0 (>= 1.0.0), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.16.0), libx11-6, libxext6, libxv1, libgstreamer-plugins-base1.0-0 (>= 1.2.3) Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-x_1.2.3-1_amd64.deb Size: 64270 MD5sum: d27be7665cc1b55bf6a2d3ba91125cd3 SHA1: dea7ff4ab1bef53eba4193bac7c317b49a210f24 SHA256: 20d35f11b53d6ac68bc2cefb4327fbf899fc142c6f46b784fe978e51e4048f2c Description: GStreamer plugins for X11 and Pango Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Gstreamer-Elements: clockoverlay, textoverlay, textrender, timeoverlay, ximagesink, xvimagesink Gstreamer-Version: 1.2 Description-md5: f30e1dbce14d6ece228c6b4e6dfdfdbd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gtester2xunit Priority: extra Section: misc Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Martin Mrazik Architecture: all Version: 0.1daily13.06.05-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python-libxslt1 Filename: pool/main/g/gtester2xunit/gtester2xunit_0.1daily13.06.05-0ubuntu2_all.deb Size: 4884 MD5sum: e835fc42dd3ce45548dc7be29b85cce6 SHA1: e52d16eee311c132a6429dbe3e04d327c202a0d5 SHA256: 16ffb2ac5d338e9eb84da40b229e5f75d73cabd6eeebd1f656bae29200983211 Description: Helper for converting gtester xml output to xunit. Description-md5: 248c11eda3977a38c998cea31de71054 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk-3-examples Priority: extra Section: x11 Installed-Size: 2046 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Replaces: libgtk-3-common (<< 3.5.4) Depends: libc6 (>= 2.4), libcairo2 (>= 1.13.0~20140204), libgdk-pixbuf2.0-0 (>= 2.25.2), libglib2.0-0 (>= 2.37.5), libgtk-3-0 (= 3.10.8-0ubuntu1), libpango-1.0-0 (>= 1.32.4), libpangocairo-1.0-0 (>= 1.32.4), dconf-gsettings-backend | gsettings-backend Breaks: libgtk-3-common (<< 3.5.4) Filename: pool/main/g/gtk+3.0/gtk-3-examples_3.10.8-0ubuntu1_amd64.deb Size: 350638 MD5sum: 1a3343493370874f93477482f1c9c906 SHA1: 176abf7907af8ddd42dbe2e896aa443231fb65a6 SHA256: c64cac6e7466e78226d08a7384e44b7f17e62771e5cfeda632cfdce257744688 Description: example files for GTK+ 3 Homepage: http://www.gtk.org/ Description-md5: 20d01ceb8b030c4e6e1bcf1ff939c8a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk-doc-tools Priority: optional Section: gnome Installed-Size: 2629 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk-doc Version: 1.20-1ubuntu1 Depends: perl, python (>= 2.3), jade (>= 1.2.1-35), docbook-dsssl, docbook-xml (>= 4.3), docbook-xsl (>= 1.64.1.0), docbook-to-man, xsltproc (>= 1.1.15), gnome-common Recommends: pkg-config (>= 0.19.0) Conflicts: sgml2x (<< 1.0.0-2) Filename: pool/main/g/gtk-doc/gtk-doc-tools_1.20-1ubuntu1_all.deb Size: 155086 MD5sum: c37ae948418d20478872bf950d9eb479 SHA1: 8e78898e0756a5a66e63f2c18faff7c23943f5da SHA256: 75c60521c41953bbd9e39bcc6e6be9693fbc41bf83b2c0c153a50fcc3e21ae44 Description: GTK+ documentation tools Multi-Arch: foreign Description-md5: d81800b98624f248b7995144c6f0cbf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk-im-libthai Priority: optional Section: libs Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: amd64 Version: 0.2.1-4ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.24.5-4), libthai0 (>= 0.1.12) Recommends: im-switch Filename: pool/main/g/gtk-im-libthai/gtk-im-libthai_0.2.1-4ubuntu1_amd64.deb Size: 9448 MD5sum: 81376c1eeddec760c785b2cea960d2e1 SHA1: dc9903e6b07ca096162a770f140f96b3fa5f051f SHA256: ff5ec65c9ad72af576990daf8ecc902a7895e601cc12f26c5555ceae46b29075 Description: GTK+ 2 Input Method Module using LibThai Multi-Arch: same Homepage: http://linux.thai.net/projects/libthai Description-md5: 776effbebeeb007fc66f3ab370061078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gtk-sharp2-examples Priority: optional Section: libs Installed-Size: 903 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gtk-sharp2 Version: 2.12.10-5 Depends: mono-runtime (>= 2.10.1), libglade2.0-cil (>= 2.12.10-1ubuntu1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-cairo4.0-cil (>= 2.10.1), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-drawing4.0-cil (>= 1.0) Filename: pool/main/g/gtk-sharp2/gtk-sharp2-examples_2.12.10-5_all.deb Size: 270680 MD5sum: 9168349059cc3f6c143b746b3a480164 SHA1: 3ef3ead05c331f47e4a118ba5f74a0915a70818f SHA256: 0f7f55180aba7c5d59f5736b7dbc5d63e8a7e8588a759bca4af6dfa2b7385e01 Description: sample applications for the GTK# 2.10 toolkit Homepage: http://www.mono-project.com/GtkSharp Description-md5: ebe2699f12a4078218f82ff84d736171 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk-sharp2-gapi Priority: optional Section: libs Installed-Size: 374 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: amd64 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: gtk-sharp2-unstable-gapi Depends: libglib2.0-cil (>= 2.12.10-5), libxml-libxml-perl, mono-runtime (>= 2.10.1), libc6 (>= 2.16) | libc6.1 (>= 2.16) | libc0.1 (>= 2.16), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-xml4.0-cil (>= 1.0) Conflicts: gtk-sharp2-unstable-gapi Filename: pool/main/g/gtk-sharp2/gtk-sharp2-gapi_2.12.10-5_amd64.deb Size: 65994 MD5sum: 59afb2a3afa21f9ade56a782d07e4808 SHA1: c2fd879f7acec15d5c56f571270c405544775e4c SHA256: fb9ecafe544c0e9bab8fde5f0f948b9b6508ad0dbe85d6f8d2e66106bd3cbd5b Description: C source parser and C# code generator for GObject based APIs Homepage: http://www.mono-project.com/GtkSharp Description-md5: 38acd13008e1b751281924b2e53ad340 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk2-engines Priority: optional Section: gnome Installed-Size: 1177 Maintainer: Ubuntu Desktop Team Original-Maintainer: Ed Boraas Architecture: amd64 Version: 1:2.20.2-3ubuntu1 Depends: libc6 (>= 2.2.5), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.19.7-2) Breaks: gnome-themes-extras (<< 2) Filename: pool/main/g/gtk2-engines/gtk2-engines_2.20.2-3ubuntu1_amd64.deb Size: 214662 MD5sum: 34d251057d9eb33ae1240889fb1fc06a SHA1: 5b3be006fc0632d1a3d6025d574e1a74fcd722a3 SHA256: f448731706edd86439d9d2b73043985931791c339f0b9f9e1ec8c5b6f7e63769 Description: theme engines for GTK+ 2.x Multi-Arch: same Description-md5: 431d7b89dfc9dd3fc4ebcf14cfd7ba82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-core, ubuntustudio-desktop Package: gtk2-engines-murrine Priority: optional Section: x11 Installed-Size: 312 Maintainer: Ubuntu Core Developers Original-Maintainer: Yves-Alexis Perez Architecture: amd64 Version: 0.98.2-0ubuntu2 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.24.5-4), libpango1.0-0 (>= 1.14.0), libpixman-1-0 (>= 0.15.14) Suggests: murrine-themes (>= 0.98) Filename: pool/main/g/gtk2-engines-murrine/gtk2-engines-murrine_0.98.2-0ubuntu2_amd64.deb Size: 101212 MD5sum: 1b6eaf49699b32fa016efc2b480d899b SHA1: cb69b976f6300482ea2ace97f9a29adb04576d83 SHA256: 1301c4a20cdd3aa271680745049827748f6d9f8bf781377ac8ac4c99991193d5 Description: cairo-based gtk+-2.0 theme engine Multi-Arch: same Description-md5: a474aa12ce9f8a94946342fe0706c7f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop Package: gtk2.0-examples Priority: extra Section: x11 Installed-Size: 1437 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.6.4-6.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.28.3), libpangocairo-1.0-0 (>= 1.28.3), libgtk2.0-0 (= 2.24.23-0ubuntu1) Filename: pool/main/g/gtk+2.0/gtk2.0-examples_2.24.23-0ubuntu1_amd64.deb Size: 242588 MD5sum: 285e2021b68e0b8a25ab8049ae03f6ca SHA1: bb7c914dbf333b97fc8b787eeff6b8c0fd4d5654 SHA256: f5b4392ec2a85b69df294ab7f2cef636e3320323b561b5ddb1aed41f1dfea7f6 Description: example files for GTK+ 2.0 Homepage: http://www.gtk.org/ Description-md5: b21dc929fd32c106b404bb82eff33515 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk3-engines-unico Priority: optional Section: x11 Installed-Size: 62 Maintainer: Ubuntu Developers Architecture: amd64 Source: unico Version: 1.0.3+14.04.20140109-0ubuntu1 Depends: libc6 (>= 2.2.5), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.2) Filename: pool/main/u/unico/gtk3-engines-unico_1.0.3+14.04.20140109-0ubuntu1_amd64.deb Size: 8432 MD5sum: e323ce9db68c11653d5c1a95513d9c53 SHA1: 3bad6753043337464a5475416d8c52e4e7e0278c SHA256: 8281c6a107709d0f223178ec5495b2185c5fe3343cd9ac09180755f0eb7004e5 Description: Unico Gtk+ 3 theme engine Multi-Arch: same Homepage: https://launchpad.net/unico Description-md5: e8d181b58ea774fbea9ee3ad82a2d502 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core Package: gtkmm-documentation Priority: optional Section: doc Installed-Size: 8086 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: all Version: 3.8.0-1 Depends: lynx | www-browser, doc-base, libgtkmm-3.0-doc Recommends: libglibmm-2.4-doc Filename: pool/main/g/gtkmm-documentation/gtkmm-documentation_3.8.0-1_all.deb Size: 1844558 MD5sum: 7d362b78b03c6035ffb3aa6b828ee4ac SHA1: 685e48a9280edb429454e7515f1046daa82f3824 SHA256: 1e2abf11325ff3f3684d3bed7d9cf119b794d6c7a6e452ae21908b53fbc7521a Description: Documentation of C++ wrappers for GLib/GTK+ Homepage: http://www.gtkmm.org/ Description-md5: 233d7f913415bf5e7e16e4fa8fc4b021 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gucharmap Priority: optional Section: x11 Installed-Size: 596 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 1:3.10.1-0ubuntu2 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.4.0), libgucharmap-2-90-7 (= 1:3.10.1-0ubuntu2), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), dconf-gsettings-backend | gsettings-backend Recommends: yelp Filename: pool/main/g/gucharmap/gucharmap_3.10.1-0ubuntu2_amd64.deb Size: 31482 MD5sum: d088e6c0009bb298a3e2b8d718350f7e SHA1: f5c8966c26eb86f74e50bc51c0f1331ea833ad54 SHA256: 83cbf79cf02ce48dba209c04fdf9bf558a655cb1e555c784572d734bb7a581af Description: Unicode character picker and font browser Homepage: https://wiki.gnome.org/Gucharmap Description-md5: e99485eac2609af50962be9c053d886a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: guile-2.0 Priority: optional Section: lisp Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: amd64 Version: 2.0.9+1-1ubuntu1 Provides: guile Depends: guile-2.0-libs (= 2.0.9+1-1ubuntu1), libc6 (>= 2.3.4) Suggests: guile-2.0-doc Filename: pool/main/g/guile-2.0/guile-2.0_2.0.9+1-1ubuntu1_amd64.deb Size: 8006 MD5sum: 949b0e428d50e5277c2e55e59e7f121d SHA1: 1ebf830e9957de8eabe4afb0afdddb3fc147c199 SHA256: 0f29c0fef8210370457b685efde7f69cd36567d5a45ac4e92765dc8ffca99a46 Description: GNU extension language and Scheme interpreter Homepage: http://www.gnu.org/software/guile/ Description-md5: 92e64a8da1c1f586d1a7fc7b1ad1ec5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: guile-2.0-dev Priority: optional Section: lisp Installed-Size: 4349 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: amd64 Source: guile-2.0 Version: 2.0.9+1-1ubuntu1 Provides: libguile-dev Depends: guile-2.0 (= 2.0.9+1-1ubuntu1), libc6-dev, libncurses5-dev, libreadline6-dev, libltdl-dev, libgmp-dev, libgc-dev, pkg-config Conflicts: libguile-dev Filename: pool/main/g/guile-2.0/guile-2.0-dev_2.0.9+1-1ubuntu1_amd64.deb Size: 691036 MD5sum: 49308e693d3bd8695163bf3fdb68922f SHA1: 1748e97baa59e018d7dd5e8dde5b34792ea269da SHA256: 7ce7a140e28c20af0dae8b6c45865d15651a4d541672eea2121816a9a667f543 Description: Development files for Guile 2.0 Homepage: http://www.gnu.org/software/guile/ Description-md5: ff686195c9946b251edb1db64ccf707d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: guile-2.0-doc Priority: optional Section: doc Installed-Size: 850 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Source: guile-2.0 Version: 2.0.9+1-1ubuntu1 Depends: dpkg (>= 1.15.4) | install-info Suggests: guile-2.0-doc-non-dfsg Filename: pool/main/g/guile-2.0/guile-2.0-doc_2.0.9+1-1ubuntu1_all.deb Size: 841926 MD5sum: bf0a94e33e546366ed052a2e0a2924f9 SHA1: 64a0a361ae7410a67f0ce978ffa724f302e2f50e SHA256: acc97cab494b793b1aefcd97a780180bfc4de613f6825f0b8c59e4770dc9abbe Description: Documentation for Guile 2.0 Homepage: http://www.gnu.org/software/guile/ Description-md5: 0a004c9e5b876d950b35f4408ccf6e80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: guile-2.0-libs Priority: optional Section: lisp Installed-Size: 10341 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: amd64 Source: guile-2.0 Version: 2.0.9+1-1ubuntu1 Provides: guile-2.0-slib Depends: libc6 (>= 2.17), libffi6 (>= 3.0.4), libgc1c2 (>= 1:7.2d), libgmp10, libltdl7 (>= 2.4.2), libreadline6 (>= 6.0), libunistring0 Conflicts: guile-2.0-slib Filename: pool/main/g/guile-2.0/guile-2.0-libs_2.0.9+1-1ubuntu1_amd64.deb Size: 2126748 MD5sum: 040cc4de4acdd5c233c841a437a4ec06 SHA1: 908a4756ed6345f30a254d40690ea9e206741f59 SHA256: 5cb3061397e443e3d65a0e4d56886dc4580aac978840cca750d7371f69e68d47 Description: Core Guile libraries Homepage: http://www.gnu.org/software/guile/ Description-md5: cba24c28494e692c2455c31f93fe375a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gunicorn Priority: optional Section: python Installed-Size: 576 Maintainer: Ubuntu Developers Original-Maintainer: Chris Lamb Architecture: all Version: 17.5-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources, python-setuptools Suggests: python-tornado, python-gevent, python-pastedeploy, python-setproctitle Filename: pool/main/g/gunicorn/gunicorn_17.5-2build1_all.deb Size: 122090 MD5sum: 17287d1ba95071e4826ba2f83091b3a1 SHA1: a61af3d7c747939c0721ad260b0e213a118e18c5 SHA256: 588b593ca5180a4cddb13b1792d9a61259af61b87c2cdbdf8b2722793bf35536 Description: Event-based HTTP/WSGI server Homepage: http://gunicorn.org/ Description-md5: 2ff72d8c5c219c7f7f89448c09a76c6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gutenprint-doc Priority: optional Section: doc Installed-Size: 757 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: all Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Suggests: printer-driver-gutenprint (>= 5.2.10~pre2-0ubuntu2), foomatic-db-gutenprint (>= 5.2.10~pre2-0ubuntu2), gimp-gutenprint (>= 5.2.10~pre2-0ubuntu2), ijsgutenprint (>= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/gutenprint-doc_5.2.10~pre2-0ubuntu2_all.deb Size: 646246 MD5sum: 1918000e3e52e3f8f8a3a087d156145e SHA1: 7e142f7e7926fa6b9ed98ab08e39c3697653503f SHA256: 70fa81a3596bf1ffec3e12cdbd29c548412c0202b346ce2fa3b6f95139137e91 Description: users' guide for Gutenprint and CUPS Description-md5: fd0b498e1d4569443dd02bcdb60e5771 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gutenprint-locales Priority: optional Section: libs Installed-Size: 10932 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: all Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Filename: pool/main/g/gutenprint/gutenprint-locales_5.2.10~pre2-0ubuntu2_all.deb Size: 366190 MD5sum: bdd092d13ad637471737885f32abc096 SHA1: 43059fb16ff7215aa75dbc4d118e56b782b30843 SHA256: 193c14d64cec8788fee7d7ee455831470fbc2fbf9f26b9610c68efe69e01ac62 Description: locale data files for Gutenprint Description-md5: f67db937fb075a8b53b8e5766040a9b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gvfs Priority: optional Section: libs Installed-Size: 577 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 1.20.1-1ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libudev1 (>= 183), gvfs-daemons (>= 1.20.1-1ubuntu1), gvfs-daemons (<< 1.20.1-1ubuntu1.1~), gvfs-libs (= 1.20.1-1ubuntu1), gvfs-common (= 1.20.1-1ubuntu1) Suggests: gvfs-backends, gvfs-backends-goa Breaks: brasero (<< 2.28.0-2), libgdu0 (<< 2.28.1-3), libglib2.0-0 (<< 2.30), rhythmbox (<< 0.12.6-2) Filename: pool/main/g/gvfs/gvfs_1.20.1-1ubuntu1_amd64.deb Size: 89740 MD5sum: fe1cad7239ba50d8edeba6cbea7fb07b SHA1: 8ad06fd96b1c1484fae8e7a4cd086c1ec04f960d SHA256: 73ff85012d07a0b8b335539f7468bb110ca9c9fa0e41661fd6b217a9fd66cb88 Description: userspace virtual filesystem - GIO module Multi-Arch: same Description-md5: 61f453207c2ab18880315d27f13ee0fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-backends Priority: optional Section: libs Installed-Size: 1536 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gvfs Version: 1.20.1-1ubuntu1 Replaces: gvfs-common (<< 1.13) Depends: libarchive13, libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libbluetooth3 (>= 4.91), libc6 (>= 2.14), libcdio-cdda1 (>= 0.83), libcdio-paranoia1 (>= 0.83), libcdio13 (>= 0.83), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libexpat1 (>= 2.0.1), libgcrypt11 (>= 1.5.1), libglib2.0-0 (>= 2.37.3), libgphoto2-6 (>= 2.5.2), libgphoto2-port10 (>= 2.5.2), libgtk-3-0 (>= 3.0.0), libgudev-1.0-0 (>= 146), libimobiledevice4 (>= 1.1.5), libmtp9 (>= 1.1.6), libplist1 (>= 0.16), libsmbclient (>= 2:4.0.3+dfsg1), libsoup2.4-1 (>= 2.42.0), libxml2 (>= 2.7.4), dconf-gsettings-backend | gsettings-backend, gvfs (= 1.20.1-1ubuntu1), gvfs-daemons (= 1.20.1-1ubuntu1), gvfs-libs (= 1.20.1-1ubuntu1), gvfs-common (= 1.20.1-1ubuntu1), psmisc Recommends: gnome-keyring Suggests: obex-data-server, samba-common Breaks: gvfs-common (<< 1.13) Filename: pool/main/g/gvfs/gvfs-backends_1.20.1-1ubuntu1_amd64.deb Size: 270998 MD5sum: 8ad2a39b15654ffb2e485bfb33c65dff SHA1: da070a54a12316ba403db6717d6f785948e4d9f6 SHA256: 65877149956b8396b3f2b667bad633bb640bce6903eb2cdf7b916f1cdb6d8093 Description: userspace virtual filesystem - backends Multi-Arch: foreign Description-md5: 33d9d0b77211277edc2b5fdaf9916857 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-bin Priority: optional Section: libs Installed-Size: 460 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gvfs Version: 1.20.1-1ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.0), gvfs-common (= 1.20.1-1ubuntu1) Suggests: gvfs Filename: pool/main/g/gvfs/gvfs-bin_1.20.1-1ubuntu1_amd64.deb Size: 50628 MD5sum: 5f36efba5aec7b84d307b7d928a16759 SHA1: a60aa9aa9dc89871008a666696af5a737c187360 SHA256: 6df8cb973e51dbe78f0a85ea2670882498b7f3d0f132ec3648e69e311a02423c Description: userspace virtual filesystem - binaries Multi-Arch: foreign Description-md5: 02be92bf6407403290f8dec1428dea18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-common Priority: optional Section: libs Installed-Size: 372 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gvfs Version: 1.20.1-1ubuntu1 Replaces: gvfs (<< 1.10.1-1) Depends: desktop-file-utils Recommends: gvfs Breaks: gvfs (<< 1.10.1-1) Filename: pool/main/g/gvfs/gvfs-common_1.20.1-1ubuntu1_all.deb Size: 42046 MD5sum: f7a88f1a344a8769519b8b67385217f0 SHA1: 9ba4f84dd0b55b5d54255b85577da7346e9e4ba1 SHA256: 1dee0c940b5b2a0aae83a8fbbeb7b461d4b095f3bf89b64e552126508df17ca0 Description: userspace virtual filesystem - common data files Multi-Arch: foreign Description-md5: 9572165fd324aff77138e36127f7d629 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-daemons Priority: optional Section: libs Installed-Size: 695 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gvfs Version: 1.20.1-1ubuntu1 Replaces: gvfs (<< 1.10.1-1), gvfs-backends (<< 1.8.1-1) Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), libsecret-1-0 (>= 0.7), libsystemd-login0 (>= 31), libudev1 (>= 183), libudisks2-0 (>= 2.0.91), x11-utils, udisks2, gvfs-libs (= 1.20.1-1ubuntu1), gvfs-common (= 1.20.1-1ubuntu1) Recommends: dbus, policykit-1-gnome, gvfs Suggests: gvfs-backends, gvfs-backends-goa Breaks: brasero (<< 2.28.0-2), gvfs (<< 1.10.1-1), gvfs-backends (<< 1.8.1-1), libgdu0 (<< 2.28.1-3), libglib2.0-0 (<< 2.28.6-2), rhythmbox (<< 0.12.6-2) Filename: pool/main/g/gvfs/gvfs-daemons_1.20.1-1ubuntu1_amd64.deb Size: 108154 MD5sum: e6fff9eee4f15b24fbf5452be555eeee SHA1: 2a85e059516f12555898975e00922c2bc9c09ad4 SHA256: ef909811c4217187d28da93f45b17390a724201f57f1260b958f59ec26d198c8 Description: userspace virtual filesystem - servers Multi-Arch: foreign Description-md5: 3ce59381bd6888364e59f20a23789369 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-dbg Priority: extra Section: debug Installed-Size: 8550 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gvfs Version: 1.20.1-1ubuntu1 Depends: gvfs (= 1.20.1-1ubuntu1) Filename: pool/main/g/gvfs/gvfs-dbg_1.20.1-1ubuntu1_amd64.deb Size: 1634092 MD5sum: 04d70af122f5ba25983b5a8f8c147220 SHA1: 4f9326cb152e1c7b6c1534e7d43d4115f791b4f7 SHA256: 323b1faae3c804831ee04f4a3fb376dbedc57507446ad5c6027cb25ae98769e5 Description: userspace virtual filesystem - debugging information Description-md5: 5812d809c0496325bb376dd4fd9c9dc0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gvfs-fuse Priority: optional Section: libs Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gvfs Version: 1.20.1-1ubuntu1 Depends: libc6 (>= 2.2.5), libfuse2 (>= 2.8.1), libglib2.0-0 (>= 2.37.0), gvfs (= 1.20.1-1ubuntu1), fuse (>= 2.8.4) Filename: pool/main/g/gvfs/gvfs-fuse_1.20.1-1ubuntu1_amd64.deb Size: 14328 MD5sum: b279da4b234847bb0c1ce8f29b22c060 SHA1: c51ce9dbdf859365c12b3a664550d0476af6db9b SHA256: efc84594d3fe9f508d1c12ceafc4e8857be143fa1ad3f9d2aeb329cf499c6201 Description: userspace virtual filesystem - fuse server Description-md5: e8ae435dfe556826602d3a021208211e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-libs Priority: optional Section: libs Installed-Size: 628 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gvfs Version: 1.20.1-1ubuntu1 Replaces: gvfs (<< 1.10.1-1), libgvfscommon0 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libsecret-1-0 (>= 0.7), gvfs-common (= 1.20.1-1ubuntu1) Conflicts: libgvfscommon0 Breaks: gvfs (<< 1.10.1-1) Filename: pool/main/g/gvfs/gvfs-libs_1.20.1-1ubuntu1_amd64.deb Size: 104500 MD5sum: a68233453276bba21167081bc8ec4ca5 SHA1: 148340d8bc311cf0b043ac1aebc56e1984945d99 SHA256: 3ea85c9120821ada20e825cfde27b801c1b9af1ef5943b804fe02b3e0704f67d Description: userspace virtual filesystem - private libraries Multi-Arch: same Description-md5: 6558598d97ea2bbb18ca95c90e7c0683 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gzip Essential: yes Priority: required Section: utils Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Bdale Garbee Architecture: amd64 Version: 1.6-3ubuntu1 Depends: dpkg (>= 1.15.4) | install-info Pre-Depends: libc6 (>= 2.17) Suggests: less Filename: pool/main/g/gzip/gzip_1.6-3ubuntu1_amd64.deb Size: 86806 MD5sum: 69e8059af02d90116781bd167cfc63c9 SHA1: 52b9cc0b87ee451c5d00656eb0c0c8f8149eb6fd SHA256: bac82bdec3c79ba3522f3723b49ea09b5642f35a605385f38ae2d7047878028f Description: GNU compression utilities Description-md5: 100720c9e2c6508f1a1f3731537b38e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: haproxy Priority: optional Section: net Installed-Size: 803 Maintainer: Ubuntu Developers Original-Maintainer: Debian HAProxy Maintainers Architecture: amd64 Version: 1.4.24-2 Depends: libc6 (>= 2.15), libpcre3 (>= 8.10), adduser Suggests: vim-haproxy Filename: pool/main/h/haproxy/haproxy_1.4.24-2_amd64.deb Size: 453020 MD5sum: dbaeca283d32652ed72a8aad71d846a6 SHA1: 9a4efd7832c26c6661172e651a92553bc5a142cf SHA256: a6a1aad744b8d868f2613efd6e9581539ed8c275882a2510e5eea3c197ee61c4 Description: fast and reliable load balancing reverse proxy Homepage: http://haproxy.1wt.eu/ Description-md5: 29390feb7563fd9f1e74f245bf31a64c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hardening-includes Priority: extra Section: devel Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Package Hardening Architecture: all Source: hardening-wrapper Version: 2.5ubuntu2 Depends: perl, make, binutils Filename: pool/main/h/hardening-wrapper/hardening-includes_2.5ubuntu2_all.deb Size: 13872 MD5sum: 50970196e03dd107d29058ecd5013311 SHA1: 02775bed72d023a786877f4477028bafb8fec1e5 SHA256: 358814defd29727a28c90ccec5e325c781fb7c712b41389f6dc01165d70f10bd Description: Makefile for enabling compiler flags for security hardening Multi-Arch: foreign Homepage: http://wiki.debian.org/Hardening Description-md5: 751856277fa8b95a4cbaccf7d392446f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hardening-wrapper Priority: extra Section: devel Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Package Hardening Architecture: amd64 Version: 2.5ubuntu2 Depends: gcc | g++, perl Filename: pool/main/h/hardening-wrapper/hardening-wrapper_2.5ubuntu2_amd64.deb Size: 10458 MD5sum: bac8025b5f251eee1dd1699f694de760 SHA1: c34d6ee1c2bc86e004d8228d25b1e728ee5a02c0 SHA256: df629d8e1195312c9f62629e47914241e7502e7f78dd00aabc22d268859e7a83 Description: Compiler wrapper to enable security hardening flags Multi-Arch: foreign Homepage: http://wiki.debian.org/Hardening Description-md5: 3345448d3a8754631900ad7f4bb201db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hdparm Priority: standard Section: admin Installed-Size: 270 Maintainer: Ubuntu Developers Original-Maintainer: Stephen Gran Architecture: amd64 Version: 9.43-1ubuntu3 Replaces: apmd (<= 3.0.2-1.15) Depends: libc6 (>= 2.14) Recommends: powermgmt-base Suggests: apmd Filename: pool/main/h/hdparm/hdparm_9.43-1ubuntu3_amd64.deb Size: 95132 MD5sum: d3abfe77fa3ffd605e4bcac2b167d939 SHA1: d8cc0f98d7fc6ce575507e3a989e8db64c2cf492 SHA256: 54708966ed6cc12429d83ca4df8e8e599f9902ca63d58c6a962542ff4ba414f4 Description: tune hard disk parameters for high performance Homepage: http://sourceforge.net/projects/hdparm/ Description-md5: ba89c51b95ba0e5ec35eb04f2e427585 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: hdparm-dbg Priority: extra Section: admin Installed-Size: 355 Maintainer: Ubuntu Developers Original-Maintainer: Stephen Gran Architecture: amd64 Source: hdparm Version: 9.43-1ubuntu3 Depends: hdparm (= 9.43-1ubuntu3) Filename: pool/main/h/hdparm/hdparm-dbg_9.43-1ubuntu3_amd64.deb Size: 99428 MD5sum: ed505c453b6e76e4aee5076a6dff1081 SHA1: f9032538017436901395ac55f74550a3b4e88d2a SHA256: b18ba450575566a3e9ed4f666525708d91110ec47c2ce844325fa4051f916bab Description: debug files for hdparm Homepage: http://sourceforge.net/projects/hdparm/ Description-md5: 9baaf3d17ca4e8aa6b12eba3612fdf1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: heartbeat Priority: optional Section: admin Installed-Size: 1263 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Version: 1:3.0.5-3.2 Provides: cluster-messaging-framework Depends: python:any (>= 2.7.1-0ubuntu2), libbz2-1.0, libc6 (>= 2.15), libglib2.0-0 (>= 2.16.0), libheartbeat2 (>= 1:3.0.5), libpils2 (>= 1.0.11+hg2754), libplumb2 (>= 1.0.11+hg2754), libplumbgpl2 (>= 1.0.11+hg2754), libstonith1 (>= 1.0.11+hg2754), zlib1g (>= 1:1.1.4), cluster-glue, iproute, adduser, iputils-ping, psmisc, gawk, mawk, libxml2-utils, libpam-runtime (>= 0.76-14), resource-agents Recommends: rsyslog | system-log-daemon, logrotate, iptables, pacemaker (>= 1.0.6) Filename: pool/main/h/heartbeat/heartbeat_3.0.5-3.2_amd64.deb Size: 288378 MD5sum: e71e38b1a88f3c16ee22de0031894abe SHA1: dee03dd225ef05ad6c067ce6db9cc6e224f43052 SHA256: 4f67c1025e501858d25a4d4d01841640b07364a0c22da8763eff92763d5ce3d8 Description: Subsystem for High-Availability Linux Homepage: http://www.linux-ha.org/ Description-md5: ddb086c6c9251076ab28140d4a3653ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heartbeat-dev Priority: optional Section: admin Installed-Size: 7801 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: heartbeat Version: 1:3.0.5-3.2 Depends: heartbeat (= 1:3.0.5-3.2) Conflicts: libpils-dev (<< 2.0.8-3), libstonith-dev (<< 2.0.8-3), pacemaker-dev (<< 1.0.1-1) Filename: pool/main/h/heartbeat/heartbeat-dev_3.0.5-3.2_amd64.deb Size: 492228 MD5sum: b35ada898849050e670f3a744b198676 SHA1: bdca1115c5444325822b1f69dec5f5a0069850a3 SHA256: 120d4342b4895321f89ca7860900c41c69a86ceddb0e72aae316628ef5e21bda Description: Subsystem for High-Availability Linux - development files Homepage: http://www.linux-ha.org/ Description-md5: 2db4a8a5564e6bdaa093155ea6bcbb9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: heat-api Priority: optional Section: web Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: adduser, heat-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/h/heat/heat-api_2014.1-0ubuntu1_all.deb Size: 5310 MD5sum: 095764015903637d07abc222d2c212e0 SHA1: c33e88116a412359ad827fc72f7740efa912c811 SHA256: 64080cf3c8331d7327f0b468482678580c57f675a73386825d5d991799cf9245 Description: OpenStack orchestration service - ReST API Homepage: http://wiki.openstack.org/Heat Description-md5: 862c7d73d236c2f223f925fc152f96c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heat-api-cfn Priority: optional Section: web Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: adduser, heat-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/h/heat/heat-api-cfn_2014.1-0ubuntu1_all.deb Size: 5440 MD5sum: 648cf3ff667deecc3317b3fff4fc92d3 SHA1: da1a78b839f3af835e212aa58c7f884f18e8b06f SHA256: cf5b5f03a52e03e0161c10f3ad0e42163b4c5564659f5d48e1d885d9b59cae20 Description: OpenStack orchestration service - CFN API Homepage: http://wiki.openstack.org/Heat Description-md5: 19dff3990205e341e40adec7f5ec18da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heat-api-cloudwatch Priority: optional Section: web Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: adduser, heat-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/h/heat/heat-api-cloudwatch_2014.1-0ubuntu1_all.deb Size: 5376 MD5sum: 264ac8ed43b215a2df6864c8982dd8b1 SHA1: 1d7b94101d862df2947ffe9b8b72d59a8728cec5 SHA256: 269b36ff925328701284d650a375f7b98bc0a8c4c7d66d67efaa51fad1247ebf Description: OpenStack orchestration service - CloudWatch API Homepage: http://wiki.openstack.org/Heat Description-md5: 8800fa04f4f5972ec900ba33c3acce59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heat-common Priority: optional Section: web Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: adduser, python-heat (= 2014.1-0ubuntu1), python:any Filename: pool/main/h/heat/heat-common_2014.1-0ubuntu1_all.deb Size: 14970 MD5sum: f86b6c33efd877c75b26628d9b006c49 SHA1: a8207afa84a838d456f6676018658a5ad336f0cf SHA256: 26f4529d8c36c6f0956f9478c8ffc297d7d6da05316e121be794a88e1171c0a0 Description: OpenStack orchestration service - common files Homepage: http://wiki.openstack.org/Heat Description-md5: 6870a02e61dd51e197ab6a39a8cbf67b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heat-engine Priority: optional Section: web Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: adduser, heat-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/h/heat/heat-engine_2014.1-0ubuntu1_all.deb Size: 5726 MD5sum: ce12715766ff55452dddc6d58ab002d7 SHA1: 3c7d60dac514e404a40976689caf13459106f9ea SHA256: c0c1bf0b0fde09d3b8a7f62132b0f9109517bf6b62b4b20842a89f2c42af33a7 Description: OpenStack orchestration service - engine Homepage: http://wiki.openstack.org/Heat Description-md5: 53042942302aa61b9edbcfcd47dd563f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heimdal-dbg Priority: extra Section: debug Installed-Size: 15327 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libkrb5-26-heimdal (= 1.6~git20131207+dfsg-1ubuntu1) Filename: pool/main/h/heimdal/heimdal-dbg_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 3370084 MD5sum: 79c4530d26a1c96394de5f7dbe557417 SHA1: 93416263e35e30364c565bccb6c1a229f4032ba2 SHA256: e0c2bf0a7f5dfdc08d183d216e191e69a9f11d7f2c12f2e62e49e1ed7f4762e7 Description: Heimdal Kerberos - debugging symbols Homepage: http://www.h5l.org/ Description-md5: acd8be250d493898cc42ffd860fba6b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: heimdal-dev Priority: extra Section: devel Installed-Size: 1269 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: heimdal-multidev (= 1.6~git20131207+dfsg-1ubuntu1) Conflicts: libkrb5-dev Filename: pool/main/h/heimdal/heimdal-dev_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 120364 MD5sum: d32ad756afe0df4c9ad3caf7c490b780 SHA1: 612f9811d1cc7138fa3df7949dfa70dce72b431f SHA256: 485d00efa7d4e40939cfd460b77a71b12f0c029fc3075ec719e84eee553e2847 Description: Heimdal Kerberos - development files Homepage: http://www.h5l.org/ Description-md5: 2afcb518ba77da818c92ff450076c587 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: heimdal-docs Priority: extra Section: net Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: all Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Replaces: heimdal-lib (<< 0.3c-5), heimdal-servers (<< 0.6.3-3), libkrb5-15-heimdal Depends: dpkg (>= 1.15.4) | install-info Suggests: heimdal-clients, heimdal-clients-x, heimdal-servers, heimdal-servers-x Conflicts: heimdal-lib (<< 0.3c-5) Filename: pool/main/h/heimdal/heimdal-docs_1.6~git20131207+dfsg-1ubuntu1_all.deb Size: 78354 MD5sum: 51b13bcd3fe0f060c986641a36e65b03 SHA1: f674ef88c273478ea1ecc5a15eced9d19f44b8c8 SHA256: 0e5da2ed919c21501d871d977ec505c969dd294bd71080aff6361a14ef1cfb30 Description: Heimdal Kerberos - documentation Homepage: http://www.h5l.org/ Description-md5: 8c3b64daa0902eebf8cd924e71d8e102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: heimdal-multidev Priority: extra Section: devel Installed-Size: 6382 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Replaces: heimdal-clients (<< 0.4e-7), heimdal-dev (<< 1.6~git20131117+dfsg-2) Depends: comerr-dev, libasn1-8-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libgssapi3-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libhcrypto4-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libhdb9-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libheimbase1-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libhx509-5-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libkadm5clnt7-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libkadm5srv8-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libkafs0-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libkdc2-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libkrb5-26-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libwind0-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libotp0-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libsl0-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libc6 (>= 2.14), libcomerr2 (>= 1.01), libroken18-heimdal (>= 1.4.0+git20110226) Suggests: heimdal-docs Conflicts: heimdal-clients (<< 0.4e-7), kerberos4kth-dev Filename: pool/main/h/heimdal/heimdal-multidev_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 1063402 MD5sum: 51877da803a30add080a0706d98d9cae SHA1: 28a7f7b0f65f1ea1d2e20de985005f8bf123a6b1 SHA256: cbc74f2c1fea7c32650733274a0929a714d9e9246b0873e0643cd8f2b0e4cdef Description: Heimdal Kerberos - Multi-implementation Development Homepage: http://www.h5l.org/ Description-md5: 2c68ae41ae2a5a78791f623671e565b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hello Priority: optional Section: devel Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 2.8-4 Depends: libc6 (>= 2.14), dpkg (>= 1.15.4) | install-info Filename: pool/main/h/hello/hello_2.8-4_amd64.deb Size: 28148 MD5sum: af651f8b526976269affa5b888e63db7 SHA1: c353f6e99dad0dc628b5604741bfbf97eaf74bcf SHA256: 0cd79de61001c8f6ab7611ba724f0f7da7fd0998bf0fd98710fe26d81f0a6b18 Description: The classic greeting, and a good example Homepage: http://www.gnu.org/software/hello/ Description-md5: b7df6fe7ffb325083a3a60819a7df548 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hello-debhelper Priority: extra Section: devel Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 2.8-1 Replaces: hello Provides: hello Depends: libc6 (>= 2.14), dpkg (>= 1.15.4) | install-info Conflicts: hello Filename: pool/main/h/hello-debhelper/hello-debhelper_2.8-1_amd64.deb Size: 28092 MD5sum: af084f945db87dd892e8fedbf01d5aa1 SHA1: 9e73f11103891c6b1974dcd60fcf088a0fe5c9eb SHA256: f6f9952164f113d785db439204458eac89fb22fe8af6b85a258b1ecf04b9fbb7 Description: The classic greeting, and a good example Homepage: http://www.gnu.org/software/hello/ Description-md5: b5040bf1400ca86808cb22ddf3c17197 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: help2man Priority: optional Section: devel Installed-Size: 312 Maintainer: Ubuntu Developers Original-Maintainer: Brendan O'Dea Architecture: amd64 Version: 1.44.1 Depends: perl (>= 5.18.2-2), libc6 (>= 2.2.5), liblocale-gettext-perl, dpkg (>= 1.15.4) | install-info Filename: pool/main/h/help2man/help2man_1.44.1_amd64.deb Size: 59422 MD5sum: 4d6cc2159aafa14043c27b3f1aca9f74 SHA1: a8c891b075721f78151af132a028e622c20eae4b SHA256: a049c77648b1194226f14ede71325442c7d1ceaf3c6672fe28805dcf15cdbeb4 Description: Automatic manpage generator Multi-Arch: foreign Description-md5: 81b7f764f56e92da4f916f9b4836fe21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hevea Priority: optional Section: tex Installed-Size: 2142 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: all Version: 2.09-2 Depends: ghostscript, netpbm (>= 2:9.10-1), texlive-base, ocaml-base-nox-4.01.0, dpkg (>= 1.14.18), tex-common (>= 3) Suggests: hevea-doc, texlive-latex-extra Filename: pool/main/h/hevea/hevea_2.09-2_all.deb Size: 307518 MD5sum: 442cd25123ebdb5274ab1c4155dae5e5 SHA1: 872aebff5e00ae3b30e1d20f1ecd63230a5ed45a SHA256: bac4d0e17ed58d31f96a507a4ec7c9dd9b0c6eed3abb06b3d20f66a03524825a Description: translates from LaTeX to HTML, info, or text Homepage: http://hevea.inria.fr/ Description-md5: c2eb86fe7224c45959f529c65265c0a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hfsplus Priority: optional Section: otherosfs Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: Aurélien GÉRÔME Architecture: amd64 Version: 1.0.4-12.1 Depends: libc6 (>= 2.14), libhfsp0 Filename: pool/main/h/hfsplus/hfsplus_1.0.4-12.1_amd64.deb Size: 39064 MD5sum: c25821be49cdee40548a7cb0c5ce7228 SHA1: 1184d05a92a1a61fd32b4d7bf8f75e5ed2797827 SHA256: 0acbdde728fc77b826c6ef12d23ae0e1a5fedd687cc74cb43fb065791561d0e0 Description: Tools to access HFS+ formatted volumes Description-md5: 7e515c0e4f0451b5ec9743b7fc5e7b9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hfsutils Priority: optional Section: otherosfs Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Version: 3.2.6-12ubuntu3 Depends: libc6 (>= 2.14) Suggests: hfsutils-tcltk Filename: pool/main/h/hfsutils/hfsutils_3.2.6-12ubuntu3_amd64.deb Size: 69412 MD5sum: 35987784f95f96f4c6af6e45757cb28a SHA1: 057fc82a9f70136740e36234d6e3c7fdbd17dd8d SHA256: 901e1ae544194b2cf2fc01f7726d3d503bce714f15f0c3695cc02cb3e3b49336 Description: Tools for reading and writing Macintosh volumes Homepage: http://www.mars.org/home/rob/proj/hfs/ Description-md5: bc1cfdae0eb986fc7820c770cf54995a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hicolor-icon-theme Priority: optional Section: misc Installed-Size: 1415 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: all Version: 0.13-1 Filename: pool/main/h/hicolor-icon-theme/hicolor-icon-theme_0.13-1_all.deb Size: 7140 MD5sum: 36c0aaa4eb741993539d6d575046d4d0 SHA1: 23ed43a06e3564afdd81ab24321e624b2d44430e SHA256: a024f667b77de7b72f614031fe33c096b4fce4d668c5866d404efc8e0bea11ed Description: default fallback theme for FreeDesktop.org icon themes Multi-Arch: foreign Description-md5: 653c5f5ecfe0f797f5a047b73a60b6d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hostname Essential: yes Priority: required Section: admin Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hostname Team Architecture: amd64 Version: 3.15ubuntu1 Replaces: nis (<< 3.17-30) Pre-Depends: libc6 (>= 2.4) Breaks: nis (<< 3.17-30) Filename: pool/main/h/hostname/hostname_3.15ubuntu1_amd64.deb Size: 11322 MD5sum: ead071255b578203c30e1e5b530f3880 SHA1: 9201b8a9354162c4ae68f17291a8a592987e29d9 SHA256: 20947b04ab3ddf48d10e733432734065f0ee4fa5ac1469bf707f18b168bf57fa Description: utility to set/show the host name or domain name Description-md5: a5a22acc3c69a7f40f07f1a8dfc93af1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: hplip Priority: optional Section: utils Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: amd64 Version: 3.14.3-0ubuntu3 Depends: libc6 (>= 2.14), libcups2 (>= 1.6.0), libdbus-1-3 (>= 1.0.2), libhpmud0 (= 3.14.3-0ubuntu3), libsane (>= 1.0.11-3), libsane-hpaio (= 3.14.3-0ubuntu3), hplip-data (= 3.14.3-0ubuntu3), printer-driver-hpcups (= 3.14.3-0ubuntu3), python (>= 2.7), python (<< 2.8), python-dbus (>= 0.80), python-imaging, python-pexpect, python-reportlab, coreutils (>= 5.1.0), lsb-base (>= 3), adduser (>= 3.34), cups (>= 1.1.20), policykit-1, python-gobject-2, wget Recommends: printer-driver-postscript-hp, sane-utils, avahi-daemon Suggests: hplip-gui, hplip-doc, python-notify, system-config-printer Filename: pool/main/h/hplip/hplip_3.14.3-0ubuntu3_amd64.deb Size: 65664 MD5sum: 4246f305b11c75e2bc566d2628ae3887 SHA1: 697f15c7a8fea7f9618b0775c59a1b2a103786a7 SHA256: 89990b5648671901417349190c2c7ef4d50f98ab1efac175d9ca7e14ec28007b Description: HP Linux Printing and Imaging System (HPLIP) Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 2c0bf2568da19b1e4a1da75410d4aa8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hplip-data Priority: optional Section: utils Installed-Size: 9549 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: all Source: hplip Version: 3.14.3-0ubuntu3 Depends: python:any (>= 2.7.1-0ubuntu2), xz-utils Suggests: hplip Filename: pool/main/h/hplip/hplip-data_3.14.3-0ubuntu3_all.deb Size: 6390402 MD5sum: e4d1ca7be2b77d2ad734b071737e9bc8 SHA1: e25b5916865951381cf0049aa733227e6c1b0121 SHA256: 41e3ddc6ed0f78f9d419f7d58e78f3c74a0f5493d3c6979d8dc6f3e4dc02e3cf Description: HP Linux Printing and Imaging - data files Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 99432a59ee13492042933313a6992d32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hplip-dbg Priority: extra Section: utils Installed-Size: 1729 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: amd64 Source: hplip Version: 3.14.3-0ubuntu3 Depends: hplip (= 3.14.3-0ubuntu3) | printer-driver-hpcups (= 3.14.3-0ubuntu3) | printer-driver-hpijs (= 3.14.3-0ubuntu3) Breaks: hplip (<< 3.10.2-2ubuntu2) Filename: pool/main/h/hplip/hplip-dbg_3.14.3-0ubuntu3_amd64.deb Size: 1340508 MD5sum: 3dc5b67dbc50b7c866aa424fe3f033a7 SHA1: 4e539f82b62b84e16f368380dee6cead3547aaa0 SHA256: 54eb4d7792b1703cc4b7ca85c6374741fa1b3f89f1a7681d1db5ca697ac4ecc4 Description: HP Linux Printing and Imaging - debugging information Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 710137fceefc7e3d667c64008f481e76 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hplip-doc Priority: optional Section: doc Installed-Size: 787 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: all Source: hplip Version: 3.14.3-0ubuntu3 Suggests: hplip Filename: pool/main/h/hplip/hplip-doc_3.14.3-0ubuntu3_all.deb Size: 590874 MD5sum: 55cf6d3471022f9debf9115e82250b13 SHA1: 7266134694e4e8204a5f4ca4b465116a44b32947 SHA256: c0777701542eb2dcecd671d9d0ef4ce867095bbaa78079351eccbcf7017751dd Description: HP Linux Printing and Imaging - documentation Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 7a9d622f180b9cbe47e31edb62d9f944 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hspell Priority: extra Section: text Installed-Size: 1021 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: amd64 Version: 1.2-2 Depends: libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Filename: pool/main/h/hspell/hspell_1.2-2_amd64.deb Size: 855204 MD5sum: fe026cf36bddf4f85fa883c73c1fec83 SHA1: bd77625b371cb20c4b814c855b0db7b0655424cb SHA256: a6020d2a16edf3cd29d5c5fcd80829c973e1387c1e09828c81f655143271b216 Description: Hebrew spell checker and morphological analyzer Homepage: http://hspell.ivrix.org.il/ Description-md5: e857f190ff37945e27152a7e8a1ccdef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: html2text Priority: optional Section: web Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Holger Levsen Architecture: amd64 Version: 1.3.2a-17 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Suggests: curl | wget Filename: pool/main/h/html2text/html2text_1.3.2a-17_amd64.deb Size: 80012 MD5sum: 51df02bd593791d130a33fe4fcb63433 SHA1: 0fe6e5e49779496a25d03a7539e6ddd1f00640a7 SHA256: a616b121527a1281e66fc5eb409407ca7f5edad1f77ad32e9d012d09cbb2fe87 Description: advanced HTML to text converter Homepage: http://www.mbayer.de/html2text/ Description-md5: a57fb9ed5921cd11bfc59269f601f3c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: htmldoc Priority: optional Section: web Installed-Size: 538 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Licquia Architecture: amd64 Version: 1.8.27-8ubuntu1 Depends: libc6 (>= 2.15), libfltk1.1 (>= 1.1.6), libgcc1 (>= 1:4.1.1), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libssl1.0.0 (>= 1.0.0), libxpm4, zlib1g (>= 1:1.1.4), htmldoc-common Filename: pool/main/h/htmldoc/htmldoc_1.8.27-8ubuntu1_amd64.deb Size: 217836 MD5sum: 4f24de5ab920132a1f8443d1c11fd262 SHA1: db3a291df00c0084945082186d233622ba4c6fd0 SHA256: eaf471667788f37e17554b8cbce3f55c8d59cda306156d9f4039697692af9cb0 Description: HTML processor that generates indexed HTML, PS, and PDF Homepage: http://www.htmldoc.org/ Description-md5: 7eac64051be488714b6fe5cba14de685 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: htmldoc-common Priority: extra Section: web Installed-Size: 7956 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Licquia Architecture: all Source: htmldoc Version: 1.8.27-8ubuntu1 Replaces: htmldoc (<< 1.8.27) Conflicts: htmldoc (<< 1.8.27) Filename: pool/main/h/htmldoc/htmldoc-common_1.8.27-8ubuntu1_all.deb Size: 5107666 MD5sum: 1f26d8deea461a3fb431d0bbf058c76b SHA1: e5ce18717b0a6f3599642a2e2ff5a2a6d6dd406b SHA256: ae0a5596347b4a85f01ce78f407a4a1ac007a1f698d7a3481ebf38d94ddb4a0a Description: Common arch-independent files for htmldoc Homepage: http://www.htmldoc.org/ Description-md5: 901a9dca8c859918d977a5cca8bdc4a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hud Priority: optional Section: gnome Installed-Size: 932 Maintainer: Ubuntu Developers Architecture: amd64 Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.14), libcolumbus1 (>= 1.1.0+14.04.20140325.3), libdbusmenu-qt5, libdee-1.0-4 (>= 1.2.7+13.10.20130924.1), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libgsettings-qt1, libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5sql5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.6), libunityvoice1 (>= 0.1), unity-voice-service, libqt5sql5-sqlite Conflicts: indicator-appmenu (<< 13) Filename: pool/main/h/hud/hud_13.10.1+14.04.20140402-0ubuntu1_amd64.deb Size: 211308 MD5sum: 7ea782265531fa9b22472fa9b9d11a0d SHA1: 4a439b0c3181e61b70b3eece6d528e04e3a493de SHA256: fbf572e01d53812ffa4c9d1e235b8500bee8b9d231b803326cd43bba2b0cc74a Description: Backend for the Unity HUD Homepage: http://launchpad.net/hud Description-md5: b04907a06b678f3d59cae82834a5efa4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: hud-doc Priority: optional Section: doc Installed-Size: 80 Maintainer: Ubuntu Developers Architecture: all Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/hud-doc_13.10.1+14.04.20140402-0ubuntu1_all.deb Size: 9378 MD5sum: f4fec1e32a0062cc64081dfc4ea94a0f SHA1: bdca791704c9b3697669731bcee346fc421e411b SHA256: cfc730f71aaf3da26d3b77276e3ae675ed0ca1715a1daad075dde10d9bb25fd2 Description: Backend for the Unity HUD Homepage: http://launchpad.net/hud Description-md5: 6f462a46ce37bf857af0688d624e6f32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: human-theme Priority: optional Section: x11 Installed-Size: 504 Maintainer: Ubuntu Artwork Team Architecture: all Version: 0.39.2 Replaces: gtk2-engines-ubuntulooks, human-cursors-theme (<= 0.5), human-gtk-theme, ubuntu-artwork (<< 31) Provides: human-gtk-theme Depends: dmz-cursor-theme, humanity-icon-theme, gtk2-engines-murrine Conflicts: gtk2-engines-ubuntulooks, human-cursors-theme (<= 0.5), human-gtk-theme, ubuntu-artwork (<< 31) Filename: pool/main/h/human-theme/human-theme_0.39.2_all.deb Size: 58790 MD5sum: 51a226a1f4cfedd504018e84ee303e07 SHA1: a0bd62dccbc1c7741b1ed1b82a3618fe4ac8c78a SHA256: d18c2ad3c01c2d960237e111e0d3a209dbac9f4903695349da273f3935c57256 Description: Human theme Description-md5: d0a1fff6e60b7a3fbe81de0845282c9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: humanity-icon-theme Priority: optional Section: gnome Installed-Size: 14658 Maintainer: Ubuntu MOTU Developers Architecture: all Version: 0.6.5 Depends: gnome-icon-theme, hicolor-icon-theme Filename: pool/main/h/humanity-icon-theme/humanity-icon-theme_0.6.5_all.deb Size: 1315458 MD5sum: 102123113755224bbc058ea92501887f SHA1: 83f9c22db62d329fd25150e9b753f7fc40a9eefc SHA256: 830cfc45f636d8fcae13258b0a6a345e47764d8c2e403a490a216f349f2e555a Description: Humanity Icon theme Description-md5: 75b3fa4ecc35cdc4c2e608df830504f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hunspell Priority: optional Section: text Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Version: 1.3.2-6ubuntu2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libhunspell-1.3-0, libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libstdc++6 (>= 4.1.1), libtinfo5, hunspell-en-us | hunspell-dictionary | myspell-dictionary Filename: pool/main/h/hunspell/hunspell_1.3.2-6ubuntu2_amd64.deb Size: 41952 MD5sum: 1bbd42617f9946779f8b8dce92214dbe SHA1: 1f43562f4a578c95cc450f73f396ab0fed3ad471 SHA256: 7258ad5ae86d879768d4c0f55ede39c367cb783557a76738f7276f53387e28c6 Description: spell checker and morphological analyzer (program) Multi-Arch: foreign Homepage: http://hunspell.sourceforge.net/ Description-md5: 50f852033e680e7617350acb7eb6aee9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-an Priority: optional Section: text Installed-Size: 324 Maintainer: Ubuntu Developers Original-Maintainer: Jordi Mallach Architecture: all Version: 0.2-1 Provides: hunspell-dictionary, hunspell-dictionary-an, myspell-an, openoffice.org-spellcheck-an Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceweasel | icedove | iceape-browser Filename: pool/main/h/hunspell-an/hunspell-an_0.2-1_all.deb Size: 91516 MD5sum: a75454aaac0a325e95d09cf0951e58d8 SHA1: 5af2f577ab1f2230c5dfc6decfab36895fcb6ebc SHA256: be27e829c1b487d75817a83081f000238f7e993ba47d2f9a24ea7254a4d7971e Description: Aragonese dictionary for hunspell Homepage: https://addons.mozilla.org/es-ES/firefox/addon/corrector-ortografico-aragones/ Description-md5: d0054bf706f5de42b827b582b439a58f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-ar Priority: optional Section: text Installed-Size: 3829 Maintainer: Ubuntu Developers Original-Maintainer: Debian Arabic Packaging Team Architecture: all Version: 3.2-1 Provides: hunspell-dictionary, hunspell-dictionary-ar Depends: dictionaries-common (>= 0.10) Suggests: hunspell Filename: pool/main/h/hunspell-ar/hunspell-ar_3.2-1_all.deb Size: 824022 MD5sum: 97c97c0a3d332a881d8e62c839893ad6 SHA1: be83a5d0cd1f35c417a29f6482fd8e8231c73a54 SHA256: 76138d8ddd9f94332dddbcb342ba11a38559a4bc85255b02d9d96ce142a4b49b Description: Arabic dictionary for hunspell Homepage: http://ayaspell.sourceforge.net/ Description-md5: 93f6185c2690f32654b636259724d0bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-be Priority: optional Section: text Installed-Size: 1761 Maintainer: Ubuntu Developers Original-Maintainer: Hleb Valoshka <375gnu@gmail.com> Architecture: all Version: 0.53-3 Provides: hunspell-dictionary, hunspell-dictionary-be Depends: dictionaries-common (>= 1.0.0) Suggests: iceape-browser | iceweasel | icedove, libreoffice Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/h/hunspell-be/hunspell-be_0.53-3_all.deb Size: 363532 MD5sum: dfe948beaa2a2d983dc0a741a7002f8d SHA1: fee4e02e687821a382b042b833b361ac379e3a90 SHA256: 795b7cfcdd9efda88643e47c682377f969e19d8019942bee0ab8a037546e4e6b Description: Belarusian dictionary for hunspell and academic orthography Homepage: http://spell-be.sourceforge.net/ Description-md5: 39aa502ba34dadde5fc56275b1b45406 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-br Priority: optional Section: text Installed-Size: 5563 Maintainer: Ubuntu Developers Original-Maintainer: Elie Roux Architecture: all Version: 0.11-1 Provides: hunspell-dictionary, hunspell-dictionary-br Depends: dictionaries-common (>= 1.10.5) Suggests: iceape-browser | iceweasel | icedove, libreoffice Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/h/hunspell-br/hunspell-br_0.11-1_all.deb Size: 1244606 MD5sum: 0df7229dc83f73ef4479fdc24c00d345 SHA1: 7ea444d5a14b7f211ec778e2dc451812237e7052 SHA256: ea762e2b8adb750796427b2c5fbf011955064fff7fb87589bf78a1f0c503282f Description: Breton language dictionary for hunspell Homepage: http://www.drouizig.org/index.php/en/binviou-en/difazier-hunspell Description-md5: e3293c4c9da8adeaff107fcbc4829e30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-da Priority: optional Section: text Installed-Size: 3022 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-da Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-da, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-da_4.2.1-0ubuntu1_all.deb Size: 538060 MD5sum: 0c133e4c4154b5982f036db043cb0f8a SHA1: aa34b21a35a8b6bf935054d943aa00b7129adeb9 SHA256: 97a7210f255a689d37566473c3be64dbbd5a30faa31dd928fe9b4d8ae13de6e6 Description: Danish dictionary for hunspell Description-md5: 5a8c985009284b57be78cdc2f636af8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-de-at Priority: optional Section: text Installed-Size: 1112 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: igerman98 Version: 20120607-1 Replaces: myspell-de-at, openoffice.org-spellcheck-de-at Provides: hunspell-dictionary, hunspell-dictionary-de, openoffice.org-spellcheck-de-at Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: myspell-de-at, openoffice.org-spellcheck-de-at Breaks: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/i/igerman98/hunspell-de-at_20120607-1_all.deb Size: 333204 MD5sum: 1934c8838f3cd25ba8d3c5275179802b SHA1: 21898d6618ef3fc9053aff05c75a073ebc2e348a SHA256: dd97b2d9c435854f5ed241c3ba359880e866f53e0c65b8fff6971115d2408f03 Description: Austrian (German) dictionary for hunspell Homepage: http://j3e.de/ispell/igerman98/ Description-md5: 21dbb27e1a8c96ac29937a738480f386 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-de-ch Priority: optional Section: text Installed-Size: 1111 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: igerman98 Version: 20120607-1 Replaces: myspell-de-ch, openoffice.org-spellcheck-de-ch Provides: hunspell-dictionary, hunspell-dictionary-de, openoffice.org-spellcheck-de-ch Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: myspell-de-ch, openoffice.org-spellcheck-de-ch Breaks: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/i/igerman98/hunspell-de-ch_20120607-1_all.deb Size: 332726 MD5sum: 32dadcfb6bcb4e147ac80d29b43847f6 SHA1: 24fcee4bc0c10fe05ab6e47e7d8bbeb4fc9a2918 SHA256: 982704c02237c8d6f49e63e6acc9842101b8b865d7ef21d8d6724f35740c3fb0 Description: Swiss (German) dictionary for hunspell Homepage: http://j3e.de/ispell/igerman98/ Description-md5: f5edb11368cd12014803d27fd484dfc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-de-de Priority: optional Section: text Installed-Size: 1108 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: igerman98 Version: 20120607-1 Replaces: myspell-de-de, openoffice.org-spellcheck-de-de Provides: hunspell-dictionary, hunspell-dictionary-de, openoffice.org-spellcheck-de-de Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: myspell-de-de, openoffice.org-spellcheck-de-de Breaks: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/i/igerman98/hunspell-de-de_20120607-1_all.deb Size: 332674 MD5sum: a8efcbd0f485b0f52da0a7b12531fc84 SHA1: e752f542ef20b66497389f5c8b3da05eff36153d SHA256: 07d4ee40880e2a80ef0edcff6c249f234da9ac8a8805ba63b850a768555fd77d Description: German dictionary for hunspell Homepage: http://j3e.de/ispell/igerman98/ Description-md5: 55d7da2ec74619bc1b79858a0ee72905 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-en-ca Priority: optional Section: text Installed-Size: 736 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-en Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-en-ca_4.2.1-0ubuntu1_all.deb Size: 195434 MD5sum: 01c3400109a217fd6c77ac3bacf82b5b SHA1: fbafc1bb0f66d4c549c13e9d4183f70d04802bbe SHA256: ed0e9618d00adc10d579e0789e55dddf6a28d2851d86821c9064ea73df1aa50b Description: English_canadian dictionary for hunspell Description-md5: bf68da2bd6cf4e84d7793b2eaa15efc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-en-us Priority: optional Section: text Installed-Size: 726 Maintainer: Ubuntu Core Developers Original-Maintainer: Rene Engelhard Architecture: all Version: 20070829-4ubuntu3 Replaces: myspell-en-us, openoffice.org-spellcheck-en-us Provides: hunspell-dictionary, hunspell-dictionary-en Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-en-us, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/h/hunspell-en-us/hunspell-en-us_20070829-4ubuntu3_all.deb Size: 248460 MD5sum: 1316333195e60281db9673bbab5fee7e SHA1: 4e5a57e174350253ae6b61aa882197ebafeecc05 SHA256: 5a1d14ffbe474a743f87248a5b0049ef35619a58e5935263ac95be61128750ac Description: English_american dictionary for hunspell Description-md5: 9f2626c060235fd5c6d1fd50ba24e576 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hunspell-eu-es Priority: optional Section: text Installed-Size: 4872 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: xuxen-eu-spell Version: 0.4.20081029-6 Replaces: myspell-eu-es, openoffice.org-spellcheck-eu Provides: hunspell-dictionary, hunspell-dictionary-eu, myspell-eu-es, openoffice.org-spellcheck-eu Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-eu-es, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), openoffice.org-spellcheck-eu, thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/x/xuxen-eu-spell/hunspell-eu-es_0.4.20081029-6_all.deb Size: 643736 MD5sum: 040d86f50b74486be1b08ced3bf6dff3 SHA1: 8203956e1d57b749bf437f578b79851fa8a238a6 SHA256: a09321a80158fba03da6dbfbf8107aa3a56b96009a91f8f11538a9c53ecd5672 Description: Basque (Euskera) dictionary for hunspell Homepage: http://www.euskara.euskadi.net/r59-20660/es/contenidos/informacion/euskarazko_softwarea/es_9568/xuxen.html Description-md5: 605aa62d43f45421d8ec5a4a2bcf7cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-fr Priority: optional Section: text Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Sébastien Villemot Architecture: all Version: 1:5.0.2-1 Depends: hunspell-fr-classical | hunspell-fr-modern | hunspell-fr-revised | hunspell-fr-comprehensive Filename: pool/main/h/hunspell-fr/hunspell-fr_5.0.2-1_all.deb Size: 7672 MD5sum: b42ee1d68e1a37e353e606e7b1d0f2b3 SHA1: 21ad68e4cb8613de2454232b8a703e5acdc6fc1c SHA256: bd9478eeff60e90453e274924ad843a171284622a28ff52e43133423b2d3bd3f Description: French dictionary for hunspell (dependency package) Homepage: http://www.dicollecte.org/ Description-md5: 83a51849a5574ba453f74b91afbd6161 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-fr-classical Priority: optional Section: text Installed-Size: 1373 Maintainer: Ubuntu Developers Original-Maintainer: Sébastien Villemot Architecture: all Source: hunspell-fr Version: 1:5.0.2-1 Replaces: hunspell-fr (<< 1:4.11-1~) Provides: hunspell-dictionary, hunspell-dictionary-fr Depends: dictionaries-common (>= 0.10) Suggests: hunspell Conflicts: hunspell-fr-comprehensive, hunspell-fr-modern, hunspell-fr-revised, myspell-fr, myspell-fr-gut Breaks: hunspell-fr (<< 1:4.11-1~) Filename: pool/main/h/hunspell-fr/hunspell-fr-classical_5.0.2-1_all.deb Size: 289552 MD5sum: e73e3884a3384db25d3c1f62f2fe0eeb SHA1: ed40d7e8e3f5de5e468d5a8ead8065d650aeca34 SHA256: a07e896762b8c4aa20b3865ebe1043a9a7912085cc4e3ffa17d897ee1b9fcbea Description: French dictionary for hunspell (classical version) Homepage: http://www.dicollecte.org/ Description-md5: 81f2c4bc1c217aeb02b80308cfa4cfc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-gl-es Priority: optional Section: text Installed-Size: 969 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Version: 2.2a-10 Replaces: hunspell-gl, myspell-gl-es, openoffice.org-spellcheck-gl Provides: hunspell-dictionary, hunspell-dictionary-gl, hunspell-gl, myspell-gl-es, openoffice.org-spellcheck-gl Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: firefox (<< 2.0.0.3-2), hunspell-gl, iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-gl-es, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), openoffice.org-spellcheck-gl, thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/h/hunspell-gl-es/hunspell-gl-es_2.2a-10_all.deb Size: 223722 MD5sum: cb675148c923feb8a115535a3a4cbabc SHA1: 154c2efe640a06cf308ad58c3429cd8d9b9ae8fb SHA256: 1a8f6b12667c6f9e3233f3dc63244b524bd3d69dfe84891a4870842dbf79df66 Description: Galician dictionary for hunspell Homepage: http://wiki.mancomun.org/index.php/Corrector_ortogr%C3%A1fico_para_OpenOffice.org Description-md5: 58ac884f39337d4cf44d94f67c627ee8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-hu Priority: optional Section: text Installed-Size: 3516 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: myspell-hu Provides: hunspell-dictionary, hunspell-dictionary-hu, myspell-hu Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-da, myspell-hu, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-hu_4.2.1-0ubuntu1_all.deb Size: 543004 MD5sum: d87b3dfc37d203ead236e3dd3417500f SHA1: f0c67ebecd317631245da9a9ea0c486bc8701ce2 SHA256: 8102534248eba51c0e94e9cf9c50a27f4c1d2746e583424c5ffdbfeb776154d2 Description: Hungarian dictionary for hunspell Description-md5: 8e74ec5f6be4b535670181b99998df49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-kk Priority: optional Section: text Installed-Size: 2256 Maintainer: Ubuntu Developers Original-Maintainer: Timur Birsh Architecture: all Version: 1.1-2 Provides: hunspell-dictionary, hunspell-dictionary-kk, myspell-dictionary, myspell-dictionary-kk Depends: dictionaries-common (>= 1.10.5) Suggests: iceape-browser | iceweasel | icedove, openoffice.org (>= 1.0.3-3) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/h/hunspell-kk/hunspell-kk_1.1-2_all.deb Size: 216156 MD5sum: a48f830cc421573e4c44d1b1e9295aaf SHA1: 6b48e493e150ed2e79ab2fc18b76200e339fadf7 SHA256: 0449dfb318fe36bde99cae7fba86db50be1d8f7188c7e0ea18bfa8da82844072 Description: Kazakh dictionary for hunspell Homepage: http://extensions.services.openoffice.org/en/project/dict-kk Description-md5: 2a25a1bf5003dfcc4ae3090cbf1088f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-ko Priority: optional Section: text Installed-Size: 16624 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: all Source: hunspell-dict-ko Version: 0.5.6-1 Provides: hunspell-dictionary, hunspell-dictionary-ko Depends: dictionaries-common (>= 1.0) Conflicts: libhunspell-1.2-0 (<< 1.2.14) Filename: pool/main/h/hunspell-dict-ko/hunspell-ko_0.5.6-1_all.deb Size: 623858 MD5sum: ff9c4999258406674729a35558dc5916 SHA1: e6718df6b1cacc1c8ae69084db9565f3fddfbf2e SHA256: 23057192b9d6d829c4c57911bf6c4c14cab5609c397bc885815a3202bbe7953b Description: Korean dictionary for hunspell Homepage: http://code.google.com/p/spellcheck-ko Description-md5: 090019df0067a4bc2d2bafee381ca3e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-ml Priority: optional Section: text Installed-Size: 5300 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.1-2 Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Filename: pool/main/h/hunspell-ml/hunspell-ml_0.1-2_all.deb Size: 738970 MD5sum: a3bc871934952d7482668433b525023c SHA1: a359b594ca1c12dc3c368dbba410ce1cdec544e3 SHA256: 8540416bd3b2630c50c0382ecd3cee74d9c004c8351488144b043ebe51fcf553 Description: Malayalam dictionary for hunspell Homepage: http://git.savannah.gnu.org/cgit/smc.git/tree/spellcheck/hunspell-ml Description-md5: 0609042d7ef531b2f5f045a0543d5b3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-ne Priority: optional Section: text Installed-Size: 914 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-ne Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-ne_4.2.1-0ubuntu1_all.deb Size: 136874 MD5sum: 1051b71943df5c2bd66a1cac99722cda SHA1: eec123d01cc97421130dc2c67ad2fdda771056b3 SHA256: a84630a1e7593e3cfe24ba69169b998c47b4dfef1e0045bb90bf1640f69c662d Description: Nepali dictionary for hunspell Description-md5: 571921f9ddb4141e43e9bfe8b2e04f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-ro Priority: optional Section: text Installed-Size: 2245 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-ro Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-ro_4.2.1-0ubuntu1_all.deb Size: 488842 MD5sum: acadd4905304da78e3f9f7f8ba186275 SHA1: e6afecb23d4de57f5274ab8b5b0b6c8c744e8009 SHA256: 88fd4fc07ccd2f920640155797e07a6fdd6535efd98c5d807ea995f2c3f7d1da Description: Romanian dictionary for hunspell Description-md5: 10607c959078651c46285f922caeda7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-ru Priority: optional Section: text Installed-Size: 5435 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Kurochkin Architecture: all Version: 20120501-1 Replaces: myspell-ru Provides: hunspell-dictionary, hunspell-dictionary-ru Depends: dictionaries-common (>= 1.0.0) Suggests: iceape-browser | iceweasel | icedove, libreoffice Conflicts: myspell-ru, openoffice.org (<= 1.0.3-2) Filename: pool/main/h/hunspell-ru/hunspell-ru_20120501-1_all.deb Size: 780236 MD5sum: 5f9b273b937afa8970319ccc7a3fca7d SHA1: 266c607d578a8be636ba8641db575c7d60d7e03f SHA256: 8d43078286f4401a657eae0ea453649da2dc75336a6d863624484e1113915848 Description: Russian dictionary for hunspell Homepage: http://code.google.com/p/hunspell-ru Description-md5: b2560ee0149ee7f786e1c222fb14fbba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-se Priority: optional Section: text Installed-Size: 25440 Maintainer: Ubuntu Developers Original-Maintainer: Petter Reinholdtsen Architecture: all Version: 1.0~beta6.20081222-1.2 Provides: hunspell-dictionary, hunspell-dictionary-se Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 1:2.4) Conflicts: openoffice.org-core (<< 1:2.4) Filename: pool/main/h/hunspell-se/hunspell-se_1.0~beta6.20081222-1.2_all.deb Size: 3323480 MD5sum: e9c3a30d18aa31f0ef9b9bd4a57ebd38 SHA1: c8d3b5fdec195095f6a54c1453278c8f2945825c SHA256: dfc7cf40a5c8f4560a72d81e39f2c14418a11ee7f3ecec60804d2a8f938b9732 Description: North Sámi Hunspell dictionary Homepage: http://www.divvun.no/ Description-md5: 62b6e0369fa956d93175e6dd703ef89b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-sh Priority: optional Section: text Installed-Size: 2072 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: openoffice.org-dictionaries (1:3.3.0~rc10-2ubuntu3) Version: 1:3.3.0-2ubuntu3 Provides: hunspell-dictionary, hunspell-dictionary-sh Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-da, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/o/openoffice.org-dictionaries/hunspell-sh_3.3.0-2ubuntu3_all.deb Size: 541366 MD5sum: 67a4d53507babd1e3dc104dcda35f548 SHA1: 7ac847f161247b07f284d4c1bf315c01b519891a SHA256: 4cc65ef67dcb38fd4b908a5181d874f90d5ccac7a99e2ff80f9539ee5d6323cd Description: Serbian (Latin) dictionary for hunspell Description-md5: 04f47a26d13c0b2005e61c629953367b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-sr Priority: optional Section: text Installed-Size: 3603 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-sr Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-da, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-sr_4.2.1-0ubuntu1_all.deb Size: 435646 MD5sum: 07d2cf62ad3ef1e49dadc9ee85ca6790 SHA1: c245d3e7d20b5374998b365fff9760c64bc5b489 SHA256: 03bdcb28f07727af902f9bad5709a6728291e6621da01df5b46cac7817bc77a1 Description: Serbian (Cyrillic) dictionary for hunspell Description-md5: f5d57030825603e08dd13f5c2c349e39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-sv-se Priority: optional Section: text Installed-Size: 1237 Maintainer: Ubuntu Developers Original-Maintainer: Jon Lachmann (JoTaB) Architecture: all Source: hunspell-sv Version: 1.51-1 Replaces: myspell-sv-se (<< 1.46) Provides: hunspell-dictionary, hunspell-dictionary-sv Depends: dictionaries-common (>= 0.10) Suggests: libreoffice, iceape-browser | iceweasel | icedove Conflicts: openoffice.org (<= 1.0.3-2) Breaks: myspell-sv-se (<< 1.46) Filename: pool/main/h/hunspell-sv/hunspell-sv-se_1.51-1_all.deb Size: 385848 MD5sum: 3cb9adf0cab1c86c0751c75e0e257a47 SHA1: b42c5a6968096b80e194a8a1eaa6e4bb4bad3d5b SHA256: 46c4662b0a79144b40c3d85039e7d4a8f921467148674933dca20efb67ad1d4c Description: Swedish (SE) dictionary for hunspell Homepage: http://dsso.se Description-md5: 4c9bea8a4d209b5a408d3b2c7d5a0f38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-tools Priority: optional Section: text Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: hunspell Version: 1.3.2-6ubuntu2 Replaces: hunspell (<< 1.2.7-2), libmyspell-dev Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libhunspell-1.3-0, libstdc++6 (>= 4.1.1), perl Conflicts: libmyspell-dev Filename: pool/main/h/hunspell/hunspell-tools_1.3.2-6ubuntu2_amd64.deb Size: 36874 MD5sum: 11f14389208c25ac3647fb08ea529145 SHA1: a49eb0db201fe5e32dd6399ed2c541bf6c57c589 SHA256: cb226e42f204f0c91cf0a428b8ef5b1b0d0d6b5e60aac56176714a20abdca872 Description: tools for hunspell Multi-Arch: foreign Homepage: http://hunspell.sourceforge.net/ Description-md5: faef56263ef510ba98b31e7b12846321 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-uz Priority: optional Section: text Installed-Size: 2227 Maintainer: Ubuntu Developers Original-Maintainer: Mashrab Kuvatov Architecture: all Source: uzbek-wordlist Version: 0.6-3.2ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-uz, openoffice.org-spellcheck-uz Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/u/uzbek-wordlist/hunspell-uz_0.6-3.2ubuntu1_all.deb Size: 301378 MD5sum: d1a045ff3d4fc93399a3576c046f333e SHA1: ab670c4cce1b043c97b1a759749d66c37d373044 SHA256: 05761128217d43c8de6d7c96fb83f0cc5e112a7d0f9b744f7397f2bcb3cb25dc Description: The Uzbek dictionary for Hunspell Homepage: http://www.uni-bremen.de/~kmashrab/uzbek-word-list Description-md5: 90697b4c1ee13d3b9009d6e0ac988ba4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-vi Priority: optional Section: text Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-vi Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-da, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-vi_4.2.1-0ubuntu1_all.deb Size: 10806 MD5sum: fff9e19e3f1c3a41aedba324884704b4 SHA1: b70e78fd46ee0eac220fb4b0d6b959d0839bd95c SHA256: 575d59e8e0031d6df157acbc7074b79cd523cd754cc750a2cf3834616d2fe0f0 Description: Vietnamese dictionary for hunspell Description-md5: 1b093cf1df281717e230d01b4d824e4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hv-kvp-daemon-init Priority: extra Section: admin Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-cloud-tools-virtual | linux-cloud-tools Filename: pool/main/l/linux-meta/hv-kvp-daemon-init_3.13.0.24.28_amd64.deb Size: 1806 MD5sum: 07a18e6201b6b9412e12e20100bd5362 SHA1: fb174abd071114e017d75c855e433763e172f7b8 SHA256: 9c18644e65b28506e45a8858bfb49c0f4ec7cefb5a7081c7002fbaefbc1aa103 Description: Transitional Package for Hyper-V tools Description-md5: 69bbfc72663e014f51ae5e8f255eda2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hwdata Priority: optional Section: misc Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Noël Köthe Architecture: all Version: 0.249-1 Depends: usbutils, pciutils Filename: pool/main/h/hwdata/hwdata_0.249-1_all.deb Size: 26150 MD5sum: 26b339ce45c8f1e4c537a6e884d7b00b SHA1: 33eff2aaf91dafe095f7723ffee3ab6e44aec4b1 SHA256: 9aa1f7cece971609030c1678e76516cbea1b718a5a4f318422be64343b2594a2 Description: hardware identification / configuration data Homepage: http://git.fedorahosted.org/git/hwdata.git Description-md5: 6e7179178cc057e540de50958531ced6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: hyphen-af Priority: optional Section: text Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-af (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-af, openoffice.org-hyphenation-af Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-af (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-af_4.2.1-0ubuntu1_all.deb Size: 23640 MD5sum: 82326f6b9453094ec3f9465decd536f5 SHA1: 101847e30bab7e65b37f6d4786e5daff4b73cef6 SHA256: 341abe5601c7a05e37c52fb4dee2c2033e327bc40e4658308537781aa46e3327 Description: Afrikaans hyphenation patterns for LibreOffice Description-md5: a5307d02f0ae0a971eafea3ee9d16123 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-as Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-1 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-as/hyphen-as_0.7.0-1_all.deb Size: 3086 MD5sum: 2f1acda3219686245bba4c38fb0b8890 SHA1: 44938d20c024ed77f4f8e2f1eb7cd4c78f5d8bc6 SHA256: 7173d85398aa1cffa5404ab047cd733d942ad2ab1b61d4d33eb6379fac7a4c4c Description: Assamese hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 6499970f8f88c6b64e1f6671ea5823a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-bn Priority: optional Section: text Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-2 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-bn/hyphen-bn_0.7.0-2_all.deb Size: 3812 MD5sum: 86610eb4a295416384f9d1163aaae4c5 SHA1: 59b35fbf356132a6ea3257b9b2a0ed9444268f53 SHA256: 844595783b3bda96aa7b8bb7990e01f701ce760dee8865527b269eab06aef0bc Description: Bengali hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 7a3d01dd5a3f7a2b80717116e4452956 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-ca Priority: optional Section: text Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-ca (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-ca, openoffice.org-hyphenation-ca Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-ca (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-ca_4.2.1-0ubuntu1_all.deb Size: 8068 MD5sum: 78b5e63f5f6a0c836cf9f1e7f4488e29 SHA1: f0ffd5712b81e3060a8d694e512405effdaa51f5 SHA256: 344227d098d162c0227b77b3c0c2dc7ad1ffe3e6463aad4dc00edffa631888b6 Description: Catalan hyphenation patterns for LibreOffice Description-md5: b1f0417bf15f8eabfe99965dd80f1dd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-de Priority: optional Section: text Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-de (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-de, openoffice.org-hyphenation-de Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-de (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-de_4.2.1-0ubuntu1_all.deb Size: 26046 MD5sum: 4ef97d6a0c39ada6ab9dc3e0f7e2707b SHA1: 955457163f10a8dc11e10c3f4d44bed50c6ab3bb SHA256: 17507f233d5b4d7870b6d18d8064d3a912d560aef69ffa5f1c71847496df8b31 Description: German hyphenation patterns for LibreOffice Description-md5: fcb85331c55478e80f68c456aa2befde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-en-us Priority: optional Section: text Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: hyphen Version: 2.8.6-3ubuntu2 Replaces: openoffice.org-hyphenation-en-us Provides: hyphen-hyphenation-pattern, openoffice.org-hyphenation, openoffice.org-hyphenation-en, openoffice.org-hyphenation-en-us Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen/hyphen-en-us_2.8.6-3ubuntu2_all.deb Size: 47986 MD5sum: 024461af435c7e6965d0af41fed9d21b SHA1: 8ebc880260d256c3a2b88b28ca4530eb19ae16c5 SHA256: 59c34d10dae5ee70809e62cd408fa9024f510d4ed61b93da9122ebf802d9ce9f Description: US English hyphenation patterns for LibreOffice/OpenOffice.org Description-md5: e60be58f330008eaa2d82bc454b9864d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-fr Priority: optional Section: text Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-fr (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-fr, openoffice.org-hyphenation-fr Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-fr (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-fr_4.2.1-0ubuntu1_all.deb Size: 9828 MD5sum: 91816630dffc57bea6c81abcf347106f SHA1: de62ce64ca671f051008af52ee36e7e2c2eb384e SHA256: a0fd4607eaff51db72a75061dc93931e0a62a3b7ad2b41c4c3b589392f2b28ba Description: French hyphenation patterns for LibreOffice Description-md5: 0f4d7ed46797c4f30c8039c2ee661596 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-gu Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-2 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-gu/hyphen-gu_0.7.0-2_all.deb Size: 3542 MD5sum: 9bc08b5dea1a573e9cb5f86b71080ee9 SHA1: ca4dabc89c5ff48ffce1cef8aaea5892adf97d5b SHA256: 9852039dacf7a8e974563e93db260d735616aba12589399f4d3e7da2ea3ceb6c Description: Gujarati hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 292fddf2b1d5ea525c7e1c7fe8c637d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-hi Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Muneeb Shaikh Architecture: all Version: 0.7.0-3 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-hi/hyphen-hi_0.7.0-3_all.deb Size: 3484 MD5sum: aa883828f00caa139e1cb5e26dcee30e SHA1: 77d3b76e9aa8b9623a962419ff6f2b73ae893f37 SHA256: 07ec17beeda7ab51185d80e40feee164bdc66bf9e3b3daf92600fd8c3212629d Description: Hindi hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: a19c86db8d7ccfaf5d8b3bffee4d412a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-hr Priority: optional Section: text Installed-Size: 38 Maintainer: Ubuntu Developers Original-Maintainer: Vedran Furač Architecture: all Source: myspell-hr Version: 20060617-2.4 Replaces: openoffice.org-hyphenation-hr (<< 20060617-2.2~) Provides: openoffice.org-hyphenation Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer Conflicts: openoffice.org (<= 1.0.3-2) Breaks: openoffice.org-hyphenation-hr (<< 20060617-2.2~) Filename: pool/main/m/myspell-hr/hyphen-hr_20060617-2.4_all.deb Size: 6758 MD5sum: 0be44682a093563e65e49f0b82545f03 SHA1: e134cf22ef89e1559fd7fc851e7217fdc285421b SHA256: c37e15cee88f98004480640804478a9d33d383baff0877ef75da4b3ec279a735 Description: Croatian hyphenation pattern for LibreOffice Description-md5: 76e715122f93e2498e1bdb1687793fa3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-hu Priority: optional Section: text Installed-Size: 887 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-hu (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-hu, openoffice.org-hyphenation-hu Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-hu (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-hu_4.2.1-0ubuntu1_all.deb Size: 248582 MD5sum: 8c088aff6ff8c63e761329c3a15ab72e SHA1: aa0da1edc09a94a95b3fe32088c673f9167e74bd SHA256: d69927f8e291b4d22baac55660a72e6bca4c86c1ec80e88bf8d91bc2562b7843 Description: Hungarian hyphenation patterns for LibreOffice Description-md5: 4f2acefedfb909095eeb06a6d77715a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-it Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-it (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-it, openoffice.org-hyphenation-it Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-it (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-it_4.2.1-0ubuntu1_all.deb Size: 3078 MD5sum: ef21ff5d7aa3d2f837280c3a779a32c9 SHA1: 2f31486eba13c7f575a1214166887f618ff65f63 SHA256: fde3a6e9f41350bf613d8146ffc094744af2491bd2d3b426d2b5c69314173bab Description: Italian hyphenation patterns for LibreOffice Description-md5: f6685448f1574540a5e86ebdf6749ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-kn Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-2 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-kn/hyphen-kn_0.7.0-2_all.deb Size: 3676 MD5sum: e1a10215a0f43c1fb1b9a42b4141c9c9 SHA1: beb65ddb9e459be8b9f8908a4552efaa14057feb SHA256: d99bb1f586608f7830d9dac34cf17389a2005c6a06788bf620adf25d7f915b7c Description: Kannada hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 5213b4d38f170a9c5e1105a71b0e99d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-mr Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-1 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-mr/hyphen-mr_0.7.0-1_all.deb Size: 3034 MD5sum: 28af8d2506659d98d9701fbea589171f SHA1: c75d251ceb2147766919acab7bc7ba7b9ce59e3d SHA256: 0b2715d5399f57ca836bcef56b5f5baeb8386c2c365011ccf5fc5edc0bdda195 Description: Marathi hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 7df3a5107229e9c0f812da60a80d88d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-pa Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-1 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-pa/hyphen-pa_0.7.0-1_all.deb Size: 3692 MD5sum: 23ddbf0d8d00326436acc83db6f39b82 SHA1: 311fdb8e55f82cd613ef9e68d606d2cfb79982d7 SHA256: 26223b57116c647f010f4db9d244d65e9dbaf53f7808673290a090cb2efaa11e Description: Punjabi hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: b4d8e0f9cd3afa9821e7f14002ae9b4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-pl Priority: optional Section: text Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Mateusz Skowronski Architecture: all Source: openoffice.org-hyphenation-pl Version: 1:3.0a-4 Replaces: openoffice.org-hyphenation-pl Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-pl, openoffice.org-hyphenation-pl Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/o/openoffice.org-hyphenation-pl/hyphen-pl_3.0a-4_all.deb Size: 17260 MD5sum: 680d3b791ad70aa4f8b176d0386f1781 SHA1: 058caa547cbdf12e4af1b6b4603df1626dfa4970 SHA256: a67635c63925110617ce92511487ec67e4813214c941aaddca49f4b6af414b19 Description: Polish hyphenation patterns for LibreOffice/OpenOffice.org Description-md5: 86fb13e848cc82c9df265b4d3fdfe085 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-ro Priority: optional Section: text Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-ro (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-ro, openoffice.org-hyphenation-ro Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-ro (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-ro_4.2.1-0ubuntu1_all.deb Size: 8204 MD5sum: b8851e14761478ef0e71835f48890c28 SHA1: e13ab99fea8022937284b41a70ef91881a5d1130 SHA256: c75188ea245438e47b6ca238f588d757ae500510784f665ff1623dbd7e0437fa Description: Romanian hyphenation patterns for LibreOffice Description-md5: a0078210900c6e76ce285e3ff5e926a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-ru Priority: optional Section: text Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Ilyas Gasanov Architecture: all Version: 20030310-1ubuntu1 Replaces: openoffice.org-hyphenation (<< 0.7), openoffice.org-hyphenation-ru Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-ru, openoffice.org-hyphenation-ru Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Breaks: openoffice.org-hyphenation (<< 0.7) Filename: pool/main/h/hyphen-ru/hyphen-ru_20030310-1ubuntu1_all.deb Size: 22680 MD5sum: 9dd03835efea668d842c5c944d2695dd SHA1: 8039b836d789099b0067b13066075edada28838b SHA256: 3bde382418ee6e537b9a9c4d1cb418b9342d12de31201a7b2f339abad1d8e395 Description: Russian hyphenation patterns for LibreOffice/OpenOffice.org Homepage: http://scon155.phys.msu.su/~swan/hyphenation.html Description-md5: ba659b49955c19970596e82b98770436 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-sh Priority: optional Section: text Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: openoffice.org-dictionaries (1:3.3.0~rc10-2ubuntu3) Version: 1:3.3.0-2ubuntu3 Replaces: openoffice.org-hyphenation-sh (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-sh, openoffice.org-hyphenation-sh Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-sh (<< 1:3.3.0-7) Filename: pool/main/o/openoffice.org-dictionaries/hyphen-sh_3.3.0-2ubuntu3_all.deb Size: 14302 MD5sum: 8df23c6701ad510dc4c7eafc0dfd5a11 SHA1: f05d21fb45cf073f489d83b232a27b21e3a1be3f SHA256: e7ee3c1a15e53443e12289a6ed157b09739b5cc48f6d4b176f20383a11037ba4 Description: Serbian (Latin) hyphenation patterns for LibreOffice/OpenOffice.org Description-md5: 563012a55349dc830a2b661943bacfb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-sl Priority: optional Section: text Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-sl (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-sl, openoffice.org-hyphenation-sl Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-sl (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-sl_4.2.1-0ubuntu1_all.deb Size: 5902 MD5sum: cf7a2e7c73c2d1ca1bd118a2c5b8f686 SHA1: 0d2dc49514b00a55e165015d0250c8452503363b SHA256: 18164a6c6712a1a151b7cbf0d3788f70a77d8effd5a2271550d7b1ba557b2dfb Description: Slovenian hyphenation patterns for LibreOffice Description-md5: 40e0c6917588d7bc8619905ed09e9a40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-sr Priority: optional Section: text Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-sr (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-sr, openoffice.org-hyphenation-sr Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-sr (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-sr_4.2.1-0ubuntu1_all.deb Size: 16524 MD5sum: cd3747428f153b010c21a75d5caaa329 SHA1: 490c470bc3f26f97199b8f411206e6fd733342d6 SHA256: 5c11f66183786c659f5acb22977fbf4f242adeb20dc270616e33a7236509d2fd Description: Serbian (Cyrillic) hyphenation patterns for LibreOffice Description-md5: 23a66c4273e59dab0a4d572c511db1f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-ta Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-1 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-ta/hyphen-ta_0.7.0-1_all.deb Size: 3052 MD5sum: eff2b213f0d68ed42e8c1fbdc02ed727 SHA1: a7e449e826ee7b804235473101a0033648d0f9a8 SHA256: 37d34e0de7c60cf29710a54242e8ca65bad74332b872d8b67efb8f04adcb038b Description: Tamil hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 32da4ff48e819de74500813b3bd605ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-te Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-1 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-te/hyphen-te_0.7.0-1_all.deb Size: 3054 MD5sum: 818cae0be81c4078e017552dfbd67ded SHA1: c1bf7450690c886ef82cdfe8029d324d91a4d9d4 SHA256: f71fd17049473faaefc52dcc6123418916144810eabe2e27a0163d0b764d8082 Description: Telugu hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: ecc3d6cb3d015e0e244c6efef50fa087 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-zu Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-zu (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-zu, openoffice.org-hyphenation-ui Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-zu (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-zu_4.2.1-0ubuntu1_all.deb Size: 3002 MD5sum: 3cd978b07cdfd44d070ca77de214546a SHA1: db7123666d21c4a2c6d55392667750df2e7ffdf1 SHA256: 1c28c93ae37dd256990d492170c302001f1564a321638143fa266180ebd5aa14 Description: Zulu hyphenation patterns for LibreOffice Description-md5: 1c92337321e978ec9c5d724ac0cb3b41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: iamerican Priority: optional Section: text Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: all Source: ispell Version: 3.3.02-6 Provides: ispell-dictionary Depends: dictionaries-common, ienglish-common (= 3.3.02-6), ispell, debconf (>= 0.5) | debconf-2.0 Suggests: wamerican Filename: pool/main/i/ispell/iamerican_3.3.02-6_all.deb Size: 187706 MD5sum: 4645f680fd237250e769736c7328be03 SHA1: 5dca913ec6ffa31a106d5eec06ecac1eecadb975 SHA256: 03e0d2d6d0fe3cb0370f4868d3a2ff827e81e8ea9caf3f1d829ef492ade33a3c Description: American English dictionary for ispell (standard version) Homepage: http://www.lasr.cs.ucla.edu/geoff/ispell.html Description-md5: b5822be7a8c9b0ed058672fb296cf975 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iasl Priority: optional Section: devel Installed-Size: 30 Maintainer: Ubuntu Developers Original-Maintainer: Mattia Dongili Architecture: all Source: acpica-unix Version: 20140214-1ubuntu1 Depends: acpica-tools Filename: pool/main/a/acpica-unix/iasl_20140214-1ubuntu1_all.deb Size: 2174 MD5sum: c4bfa92bcaf442cfd232b4943b039f41 SHA1: 666546cc338480c4813ec430624009f96cfbed9c SHA256: 7d895c9f3a2fe4fb48894f968fba6cfed45e071176cc8de307a02bd83fd14ff4 Description: transitional dummy package Homepage: http://www.acpica.org Description-md5: a5c8edd2e468efe26034ff0306cb9680 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibmasm-utils Priority: extra Section: admin Installed-Size: 140 Maintainer: Chuck Short Architecture: amd64 Version: 3.0-1ubuntu11 Depends: libc6 (>= 2.4) Conflicts: ibmasm Filename: pool/main/i/ibmasm-utils/ibmasm-utils_3.0-1ubuntu11_amd64.deb Size: 17104 MD5sum: 668629cff0931e66e1891636e1788bb7 SHA1: 2a46d5177d8aec481342715239af2443f03160fd SHA256: 3cf182962f75cbb930f2b6bb83c59c35469f0098029ae776d63e772e04d25103 Description: IBM Advanced System Management Drivers Description-md5: 1492d898c61fc6156c9371da240e8fd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ibus Priority: optional Section: utils Installed-Size: 1224 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Version: 1.5.5-1ubuntu3 Depends: dconf-cli, gir1.2-gtk-3.0 (>= 3.8.5), gir1.2-ibus-1.0 (= 1.5.5-1ubuntu3), gnome-icon-theme, librsvg2-common, python-gi, python-notify, dconf-gsettings-backend | gsettings-backend, python:any (>= 2.7.1-0ubuntu2), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libdconf1 (>= 0.14.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.2.1), libgtk2.0-0 (>= 2.24.5-4), libibus-1.0-5 (>= 1.5.5), libpango-1.0-0 (>= 1.14.0), libx11-6, libxi6 (>= 2:1.2.99.4) Recommends: ibus-gtk | ibus-qt4, ibus-gtk3 | ibus-qt4, im-config Suggests: ibus-clutter, ibus-doc, ibus-qt4 Breaks: ibus-anthy (<< 1.5.3-2), ibus-el (<< 0.3.2-2), ibus-googlepinyin (<< 0.1.2-2) Filename: pool/main/i/ibus/ibus_1.5.5-1ubuntu3_amd64.deb Size: 184506 MD5sum: 8b8e65b70bc54f395ada4fa3110be4ea SHA1: 9fa554030603a1d045fc5aa0e18f11ac8b66047b SHA256: 972dd4de6d18f61cc4856b53f6b7ee10ae7bf76fdebd52c12dbae112b4942e4f Description: Intelligent Input Bus - core Multi-Arch: foreign Homepage: http://code.google.com/p/ibus/ Description-md5: 489faf3b419b10c90a2fd62eb552cc93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: ibus-anthy Priority: optional Section: utils Installed-Size: 728 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Version: 1.5.4-2 Depends: anthy, ibus (>= 1.5), python:any (>= 2.7.1-0ubuntu2), libanthy0, libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/i/ibus-anthy/ibus-anthy_1.5.4-2_amd64.deb Size: 65870 MD5sum: eb3ef582e5ae89dda7dd444fc9d49e0b SHA1: f3c56871d3a75685c8b44786a3f675355e63fc64 SHA256: 713afb6a111721d7edf4c923283dd0fb0e4e72fc8c2221313d0bf181a85f5ffc Description: anthy engine for IBus Homepage: http://code.google.com/p/ibus Description-md5: 505c94c7454cb60018e66638b33fc6c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-usb Package: ibus-anthy-dev Priority: optional Section: libdevel Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: ibus-anthy Version: 1.5.4-2 Depends: anthy, ibus (>= 1.5) Filename: pool/main/i/ibus-anthy/ibus-anthy-dev_1.5.4-2_amd64.deb Size: 6342 MD5sum: 4149600044c8f61bb8c9d7546799200c SHA1: 1af34dcc027c3633b47ba4131d45afdfa1bf82b7 SHA256: ad4b925d0118c75c0c86a55ae2c6cd4abe48fc21d28afe9fbd1fbfb979370990 Description: anthy engine for IBus, development files Multi-Arch: same Homepage: http://code.google.com/p/ibus Description-md5: 51066f2ee01056b293e228aa3638e623 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibus-chewing Priority: optional Section: utils Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Version: 1.4.10.1-1 Depends: libc6 (>= 2.4), libchewing3 (>= 0.3.4), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.12.0), libibus-1.0-5 (>= 1.5.1), libx11-6, gconf2 (>= 2.28.1-2), ibus (>= 1.5) Filename: pool/main/i/ibus-chewing/ibus-chewing_1.4.10.1-1_amd64.deb Size: 40378 MD5sum: c06b32c9e1b64fe78d0695998ca0f294 SHA1: 9ddf69b0a7b9c95250354cf89ebc17514d05aa73 SHA256: a0ff0868e5f7415b33f177d7e95029d63c975730ef92adae3a27c74c0b7d5684 Description: Chewing engine for IBus Homepage: http://code.google.com/p/ibus Description-md5: 41b0580d9f7567a74d302851c00d4d6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-chewing-dbg Priority: extra Section: debug Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: ibus-chewing Version: 1.4.10.1-1 Depends: ibus-chewing (= 1.4.10.1-1) Filename: pool/main/i/ibus-chewing/ibus-chewing-dbg_1.4.10.1-1_amd64.deb Size: 90492 MD5sum: fd83e0c1741c797d738d710ae3c7a42a SHA1: c1bd6aa444505c658aa49057e505abf8192cccfb SHA256: 1df2524926cfa6ebe2181a676cc4bb51f55c876061a7c4a6e49ca0be11f9f8cc Description: Chewing engine for IBus - debugging symbols Homepage: http://code.google.com/p/ibus Description-md5: bb518b51a924dee6927d341072e34d00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibus-doc Priority: optional Section: doc Installed-Size: 4174 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus Version: 1.5.5-1ubuntu3 Filename: pool/main/i/ibus/ibus-doc_1.5.5-1ubuntu3_all.deb Size: 238112 MD5sum: e159530e174724c67c5ef5d975866cf6 SHA1: bf5ccf7b2909017a972b34525368b0e799ffe5c7 SHA256: 85b9f6ac90f59179986aadb215f08aa2ff2d62e0cffd085875ddc6d6db7c0db4 Description: Intelligent Input Bus - development documentation Homepage: http://code.google.com/p/ibus/ Description-md5: 09048d4e789485a527aee6fb9a9dd253 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibus-gtk Priority: optional Section: utils Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: ibus Version: 1.5.5-1ubuntu3 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.31.8), libgtk2.0-0 (>= 2.24.5-4), libibus-1.0-5 (>= 1.5.1), libpango-1.0-0 (>= 1.14.0) Filename: pool/main/i/ibus/ibus-gtk_1.5.5-1ubuntu3_amd64.deb Size: 12912 MD5sum: 77e91bd31e58fd59bcb898c279963fac SHA1: fcfac31c47f02cacb0f783f4f51b12ebe437cd87 SHA256: c4260f1e78fe151f0b5894db8c5ea4f32aefd17fc40ca6168224d8f8728b7a66 Description: Intelligent Input Bus - GTK+2 support Multi-Arch: same Homepage: http://code.google.com/p/ibus/ Description-md5: 1f9ea675e099fe199fcaa23aae7ef941 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ibus-gtk3 Priority: optional Section: utils Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: ibus Version: 1.5.5-1ubuntu3 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.0.0), libibus-1.0-5 (>= 1.5.4), libpango-1.0-0 (>= 1.14.0) Filename: pool/main/i/ibus/ibus-gtk3_1.5.5-1ubuntu3_amd64.deb Size: 13020 MD5sum: 7aedaac6f409b09d986dea7419828b0c SHA1: ac5ca62e09413dc5124da2254b4857194af80c6d SHA256: c0559311ee628a69d1a2d130a7b33564c8307d169edae6d381675e9a0e9094fa Description: Intelligent Input Bus - GTK+3 support Multi-Arch: same Homepage: http://code.google.com/p/ibus/ Description-md5: bffc1306e64ce23ae551c3e11837360a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ibus-hangul Priority: optional Section: utils Installed-Size: 312 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Version: 1.4.2-3 Depends: gir1.2-gtk-3.0, ibus, python-gi (>= 3.0), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3.4), libglib2.0-0 (>= 2.24.0), libhangul1 (>= 0.1.0), libibus-1.0-5 (>= 1.5.1) Filename: pool/main/i/ibus-hangul/ibus-hangul_1.4.2-3_amd64.deb Size: 52236 MD5sum: eb3e021e003c6adc0583a6547e7fad9d SHA1: 0b0370ca202522df607c67876b3e95f000d2d693 SHA256: d62a84b989ee7dcced822932170121beb7b16f7c26b3a551f5828a476c1c4f9e Description: Hangul engine for IBus Homepage: http://code.google.com/p/ibus Description-md5: 4e243516689250cc0c28c7b8c9ef79a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-m17n Priority: optional Section: utils Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Version: 1.3.4-3ubuntu1 Depends: ibus, libc6 (>= 2.2.5), libglib2.0-0 (>= 2.28.0), libgtk-3-0 (>= 3.0.0), libibus-1.0-5 (>= 1.5.1), libm17n-0 (>= 1.6.3) Filename: pool/main/i/ibus-m17n/ibus-m17n_1.3.4-3ubuntu1_amd64.deb Size: 31658 MD5sum: 3d58eb30131d4e5ef750592177a5a85b SHA1: da584bc64495a53ce6526c397968220ea7b2690b SHA256: a11df472866a380b44d51d7157b5c20e110ba33db615c67998f9174ecbfeed16 Description: m17n engine for IBus Homepage: http://code.google.com/p/ibus Description-md5: 708da2b84aa9b56aa3d1fd82f0066c89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibus-pinyin Priority: optional Section: utils Installed-Size: 1408 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Version: 1.5.0-1ubuntu1 Depends: ibus (>= 1.5), libpyzy-1.0-0, python-ibus, python-xdg, python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.37.3), libibus-1.0-5 (>= 1.5.1), liblua5.2-0, libsqlite3-0 (>= 3.6.11), libstdc++6 (>= 4.5) Filename: pool/main/i/ibus-pinyin/ibus-pinyin_1.5.0-1ubuntu1_amd64.deb Size: 413670 MD5sum: c878cbbda4f47cbd2f0e741493e40f7a SHA1: 79ce169b55a45f02bb6c65b3edb2be29b3c527ed SHA256: e1a65ac77e38e9b5256c151456d38b925e675d940f57311dc881d523d35d41b3 Description: Pinyin engine for IBus Multi-Arch: foreign Homepage: http://code.google.com/p/ibus Description-md5: cbc95a4d4b71d4719d3b69058e9a3ecf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ibus-sunpinyin Priority: optional Section: utils Installed-Size: 560 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Version: 2.0.3-5build1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.35.9), libibus-1.0-5 (>= 1.5.1), libstdc++6 (>= 4.2.1), libsunpinyin3, python (>= 2.7.1-0ubuntu2), sunpinyin-data, python-glade2 Filename: pool/main/i/ibus-sunpinyin/ibus-sunpinyin_2.0.3-5build1_amd64.deb Size: 190712 MD5sum: 6051e298ac16a4d01dc90c483275397e SHA1: 6eb441bf3a1f2c03426cfc0514c25582bc4ff25f SHA256: 873f43697dda1d3bdf7a1ad26fdee3f16fe9fa95e8b8d032e0952dcb4dca718c Description: sunpinyin engine for ibus Homepage: http://code.google.com/p/sunpinyin Description-md5: 09535412ce7ac7a2dbc02de8607f3f55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibus-table Priority: optional Section: utils Installed-Size: 744 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Version: 1.5.0.is.1.5.0.20130419-2 Depends: ibus (>= 1.5.0), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/i/ibus-table/ibus-table_1.5.0.is.1.5.0.20130419-2_all.deb Size: 214052 MD5sum: ab0aebd55182d92437d50d3da7a47e9c SHA1: f14caa6952dd556e13c58c028efb546c3c6d5869 SHA256: 2c992bd86533d76c33f4cbe9f4787b5059ea8db61558fa06b2c156a593ce2b18 Description: table engine for IBus Homepage: http://code.google.com/p/ibus Description-md5: e031a824eef34ac558f88d83af479d09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ibus-table-cangjie Priority: optional Section: utils Installed-Size: 28 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table-cangjie3, ibus-table-cangjie5, ibus-table-cangjie-big Filename: pool/main/i/ibus-table-chinese/ibus-table-cangjie_1.4.6-Source-1_all.deb Size: 2662 MD5sum: b12595f789fa9ef8956fb0ecef7174c2 SHA1: 5a34402c40ecbe25e9688cfa4efb16a33c214759 SHA256: 20eb13243e113fff337c9bb648ab751af3a2e027de583c51107f2698fe6bc83d Description: ibus-table input method: CangJie (dummy package) Homepage: http://code.google.com/p/ibus Description-md5: acb60694cc35cb702c2977198bf13ef4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-cangjie-big Priority: optional Section: utils Installed-Size: 4985 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-cangjie-big_1.4.6-Source-1_all.deb Size: 1931784 MD5sum: 4a576c19418e0924d0199778fce9900d SHA1: a09eedf231785af00b33188b3962c12144b0bdc8 SHA256: 3278585169a8ecd7930a87454f00b994f9438e69a8a3581f6b1d363a38a3361f Description: ibus-table input method: CangJie (big) Homepage: http://code.google.com/p/ibus Description-md5: 8fedd8c480d9cbf548915bcb43772119 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-cangjie3 Priority: optional Section: utils Installed-Size: 2954 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-cangjie3_1.4.6-Source-1_all.deb Size: 1128944 MD5sum: 71034b4e6d38659e330750149b0d7ff7 SHA1: bb4913a9b9be90fffcecaf52d7e3303ec290c08f SHA256: 0aac043676aff8e2b551e3a96ff9d386dbc0cb88a6cbf2b2b7e26e53974016fc Description: ibus-table input method: CangJie3 Homepage: http://code.google.com/p/ibus Description-md5: d4a5ff016a00bc9265ad90550fcab2be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-cangjie5 Priority: optional Section: utils Installed-Size: 6482 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-cangjie5_1.4.6-Source-1_all.deb Size: 2511380 MD5sum: 08976235eaaf0dfffef8abb025ff3376 SHA1: 809cd21087402fa9311a08ad9a7d5e2d04525ca9 SHA256: a89869e4097378fa4a28e92f6ee45a8d38c738b42f3d7ef7f6f2706547f32d20 Description: ibus-table input method: CangJie5 Homepage: http://code.google.com/p/ibus Description-md5: 59317e407747164d15e633e19cc42e10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-erbi Priority: optional Section: utils Installed-Size: 3857 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-erbi_1.4.6-Source-1_all.deb Size: 1781918 MD5sum: 710fba1b653a38cd21aaa04639b1a4f6 SHA1: 5e4225a0777c00b90a17005ff4346e0570891089 SHA256: ad2b9c31dccd03e2e7f818b7d73e06c9c78375a3560819ad296993989738a0bc Description: ibus-table input method: ErBi Homepage: http://code.google.com/p/ibus Description-md5: 392dfe636cd5717cb1f83161bc72cfb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-extraphrase Priority: optional Section: utils Installed-Size: 5184 Maintainer: Ubuntu Developers Original-Maintainer: LI Daobing Architecture: all Version: 1.2.0.20100305-1 Filename: pool/main/i/ibus-table-extraphrase/ibus-table-extraphrase_1.2.0.20100305-1_all.deb Size: 2123480 MD5sum: 3c18c4db7228d18896885f952d29ca34 SHA1: 84508eadcc7eb02c0a35264e87d21ecb94277386 SHA256: dde103284d7df0c0cb36fa3fb4a2a388a63134eeb183d80c425b2e289390f009 Description: Extra phrase for table engine of ibus Homepage: http://code.google.com/p/ibus Description-md5: 01d06f393cb71e1e2c8434088db312c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-wubi Priority: optional Section: utils Installed-Size: 26128 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-wubi_1.4.6-Source-1_all.deb Size: 11635436 MD5sum: 4f3b8427bca1426cecf503c6b71514f0 SHA1: e5c6bd50705e844d49db273d6a459b815f23505f SHA256: ccbcbf64eaa8b8c8fe7f8f7e35ca40b5f932f0741eeb1791510a7a7d8a28a1dd Description: ibus-table input method: Wubi Homepage: http://code.google.com/p/ibus Description-md5: 278793ebd142ced486093b43728001bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-yong Priority: optional Section: utils Installed-Size: 5407 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-yong_1.4.6-Source-1_all.deb Size: 2185650 MD5sum: 10810a0b0875a2d62049b64c0bdec75b SHA1: 3b16f056c266e27710498b4e6db85be5da23d1bb SHA256: 66ede9e6f163fad6099afca9ba1fd2f784e20c435121cc4bd76ca75b0866b423 Description: ibus-table input method: YongMa Homepage: http://code.google.com/p/ibus Description-md5: 721d8a21a95b0d10850050efbef1d0b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-unikey Priority: extra Section: utils Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: Lê Quốc Tuấn Architecture: amd64 Version: 0.6.1-1build2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.12.0), libibus-1.0-5 (>= 1.5.1), libstdc++6 (>= 4.4.0), libx11-6, ibus (>= 1.3.99) Filename: pool/main/i/ibus-unikey/ibus-unikey_0.6.1-1build2_amd64.deb Size: 84784 MD5sum: 125ddeceb2d962edd33257f49d807fc8 SHA1: 83024ae78850ac39c9d6cb8f15114a2822b8b4d5 SHA256: 7443fdb858685fec5c0fc21306f342f91770b1409c28604e6a9df4ab0ffb3946 Description: Vietnamese Input Method Engine for IBus using Unikey Engine Homepage: http://ibus-unikey.googlecode.com/ Description-md5: 985e023e854ac292f0b39058569a0321 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: icc-profiles-free Priority: optional Section: graphics Installed-Size: 1665 Maintainer: Ubuntu Developers Original-Maintainer: Oleksandr Moskalenko Architecture: all Version: 2.0.1+dfsg-1 Replaces: icc-profiles (<= 2.0-2) Conflicts: icc-profiles (<= 2.0-2) Breaks: icc-profiles (<= 2.0-2) Filename: pool/main/i/icc-profiles-free/icc-profiles-free_2.0.1+dfsg-1_all.deb Size: 549198 MD5sum: 01697f6893a029a8e5b6d2b25d1f895a SHA1: e0415862cbf0ceb1b446143f68973c965b9b3385 SHA256: f59b543a8bd6ddc50c2889e4c74c6bd27011ccca72787cd7ff6de6aab3e4ac1f Description: ICC color profiles for use with color profile aware software Description-md5: 6584abf9fda2e191cfa8f85a81a04059 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, ubuntustudio-publishing, ubuntustudio-photography Package: icedtea-7-jre-jamvm Priority: extra Section: java Installed-Size: 1850 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: amd64 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Depends: openjdk-7-jre-headless (= 7u51-2.4.6-1ubuntu4), libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Filename: pool/main/o/openjdk-7/icedtea-7-jre-jamvm_7u51-2.4.6-1ubuntu4_amd64.deb Size: 425954 MD5sum: cee73ecba5d53041375d764a90a27092 SHA1: b67f455f05c82377289ac96abad749d1ed17a18c SHA256: 4c7048d4f06871c4da5517f340b8fe239875732fd0e7223c730eed16ff889594 Description: Alternative JVM for OpenJDK, using JamVM Multi-Arch: same Homepage: http://openjdk.java.net/ Description-md5: a3b67c2c3683232269f84a02ede3fd4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: icedtea-7-plugin Priority: extra Section: web Installed-Size: 653 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: amd64 Source: icedtea-web Version: 1.5-1ubuntu1 Depends: openjdk-7-jre, icedtea-netx (= 1.5-1ubuntu1), libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libstdc++6 (>= 4.6) Conflicts: icedtea-gcjwebplugin (<< 1.0-1ubuntu4), icedtea-plugin (<< 1.2~pre1-1~), icedtea6-plugin (<< 6b21.2~pre1-1~) Filename: pool/main/i/icedtea-web/icedtea-7-plugin_1.5-1ubuntu1_amd64.deb Size: 183526 MD5sum: f4dc40f0eea083b3b62896af55ce11fd SHA1: a951cc8cbb387c1d73a9ddc96304e4cfc41e6e37 SHA256: 37158090360a357a72aea21e984419c72118516de543175566f8e5eb773838fe Description: web browser plugin based on OpenJDK and IcedTea to execute Java applets Multi-Arch: same Homepage: http://icedtea.classpath.org/wiki/IcedTea-Web Npp-Applications: ec8030f7-c20a-464f-9b0e-13a3a9e97384, 92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a, aa5ca914-c309-495d-91cf-3141bbb04115 Npp-Description: IcedTea Java Web Browser Plugin for OpenJDK 7 (execution of applets on web pages) Npp-Mimetype: application/x-java-vm, application/x-java-applet, application/x-java-applet;version=1.1, application/x-java-applet;version=1.1.1, application/x-java-applet;version=1.1.2, application/x-java-applet;version=1.1.3, application/x-java-applet;version=1.2, application/x-java-applet;version=1.2.1, application/x-java-applet;version=1.2.2, application/x-java-applet;version=1.3, application/x-java-applet;version=1.3.1, application/x-java-applet;version=1.4, application/x-java-applet;version=1.4.1, application/x-java-applet;version=1.4.2, application/x-java-applet;version=1.5, application/x-java-applet;version=1.6, application/x-java-applet;version=1.7, application/x-java-applet;jpi-version=1.7.0_00, application/x-java-bean, application/x-java-bean;version=1.1, application/x-java-bean;version=1.1.1, application/x-java-bean;version=1.1.2, application/x-java-bean;version=1.1.3, application/x-java-bean;version=1.2, application/x-java-bean;version=1.2.1, application/x-java-bean;version=1.2.2, application/x-java-bean;version=1.3, application/x-java-bean;version=1.3.1, application/x-java-bean;version=1.4, application/x-java-bean;version=1.4.1, application/x-java-bean;version=1.4.2, application/x-java-bean;version=1.5, application/x-java-bean;version=1.6, application/x-java-bean;version=1.7, application/x-java-bean;jpi-version=1.7.0_00 Npp-Name: The IcedTea Web Browser Plugin Description-md5: 73779ff36047046383e1c1bd3e13a884 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-dvd-live, kubuntu-active-dvd-live Package: icedtea-netx Priority: extra Section: java Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: amd64 Source: icedtea-web Version: 1.5-1ubuntu1 Replaces: openjdk-6-jre (<< 6b18-1.8.7-3), openjdk-6-jre-headless (<< 6b18-1.8.7-3) Depends: openjdk-7-jre | openjdk-6-jre (>= 6b23~pre10~), icedtea-netx-common (>= 1.5-1ubuntu1) Conflicts: openjdk-6-jre (<< 6b18-1.8.7-3), openjdk-6-jre-headless (<< 6b18-1.8.7-3) Filename: pool/main/i/icedtea-web/icedtea-netx_1.5-1ubuntu1_amd64.deb Size: 19606 MD5sum: a0b78fe493f2ae63f18f246dd3f4ede4 SHA1: 7e26acd93f2f9c94f313fa33546b4735963c19ba SHA256: 42e44b59d33f7e6c6107565c9d5319a030456a02979b7c31d4ecc2490939e60e Description: NetX - implementation of the Java Network Launching Protocol (JNLP) Multi-Arch: same Homepage: http://icedtea.classpath.org/wiki/IcedTea-Web Description-md5: 052037f44a864c63fefe21804d48141f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-dvd-live, kubuntu-active-dvd-live Package: icedtea-netx-common Priority: extra Section: java Installed-Size: 1334 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: all Source: icedtea-web Version: 1.5-1ubuntu1 Replaces: icedtea-netx (<< 1.2~), icedtea-plugin (<< 1.1.2-1~), openjdk-6-jre (<< 6b18-1.8.7-3), openjdk-6-jre-headless (<< 6b18-1.8.7-3) Conflicts: openjdk-6-jre (<< 6b18-1.8.7-3), openjdk-6-jre-headless (<< 6b18-1.8.7-3) Filename: pool/main/i/icedtea-web/icedtea-netx-common_1.5-1ubuntu1_all.deb Size: 1137090 MD5sum: ab6c09c10297d9da4f5b4a2a3d510a40 SHA1: 7280a201f725014ba1999993c51c5e640c37763e SHA256: f9c2cd4d0225de61dfa9717eb681db65e3663ff5440e63f785d771a381e091ff Description: NetX - implementation of the Java Network Launching Protocol (JNLP) Multi-Arch: foreign Homepage: http://icedtea.classpath.org/wiki/IcedTea-Web Description-md5: f1e89cc323726441544f1bc048dd4946 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-dvd-live, kubuntu-active-dvd-live Package: icedtea-plugin Priority: extra Section: web Installed-Size: 35 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: all Source: icedtea-web Version: 1.5-1ubuntu1 Depends: icedtea-7-plugin Filename: pool/main/i/icedtea-web/icedtea-plugin_1.5-1ubuntu1_all.deb Size: 3214 MD5sum: 888f7bfd4dbf32bc8a986c3f62eff389 SHA1: fcf9159f3680b8b0bec3e43d4d1a6b8cc3632bb4 SHA256: c7793bb6b76ee507bb348e591ca592389c5e8ba11605a5c3ca1b3797128b4170 Description: web browser plugin to execute Java applets (dependency package) Homepage: http://icedtea.classpath.org/wiki/IcedTea-Web Description-md5: 6da6e3fbb572567cdab3a35a85e93560 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-dvd-live, kubuntu-active-dvd-live Package: icon-naming-utils Priority: optional Section: gnome Installed-Size: 108 Maintainer: Ubuntu Core Developers Original-Maintainer: Philipp Kern Architecture: all Version: 0.8.90-2 Depends: perl, libxml-simple-perl Filename: pool/main/i/icon-naming-utils/icon-naming-utils_0.8.90-2_all.deb Size: 11492 MD5sum: 9ad12f4ddbd5fa9259e9b389717cdefc SHA1: cb75959a340c983443d1435fbe0c961ceae3ef9c SHA256: cca4af936f1eff50345008c65a4461d72cae22f7db9fbf4ec78912b578ca9aad Description: script for maintaining backwards compatibility of Tango Project Homepage: http://www.tango-project.org Description-md5: 5aaeb0f96a8778a442c08d744b22e0bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: icu-devtools Priority: optional Section: libdevel Installed-Size: 535 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: icu Version: 52.1-3 Replaces: icu-tools (<< 52.1-3~), libicu-dev (<< 52.1-3) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1) Breaks: icu-tools (<< 52.1-3~), libicu-dev (<< 52.1-3) Filename: pool/main/i/icu/icu-devtools_52.1-3_amd64.deb Size: 163012 MD5sum: c7626264573e00386607acf6e6bd7c1b SHA1: da11e9cf367b246e52c5d17b4ac4b0d7d2727e45 SHA256: 6d4e0cac3dd73a65f934f0ace3fbd473cece49215a72573f2c4ef02c9bb4b07d Description: Development utilities for International Components for Unicode Multi-Arch: foreign Homepage: http://www.icu-project.org Description-md5: 4f58797462ac478415b579bf552abff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: icu-doc Priority: optional Section: doc Installed-Size: 41798 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: all Source: icu Version: 52.1-3 Filename: pool/main/i/icu/icu-doc_52.1-3_all.deb Size: 2627658 MD5sum: 5b0da581886ca0e9c331c3634a0371bf SHA1: 8d27110bcb2cc9f112000e9b6b618eb305846fea SHA256: 4a6c28c90b7c880395afaefee58b49e81f37b086feb69779de2a75d2fbb2e6d8 Description: API documentation for ICU classes and functions Homepage: http://www.icu-project.org Description-md5: 85b63ef20f81e6ed56386e76f65f4297 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: idle Priority: optional Section: python Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-defaults Version: 2.7.5-5ubuntu3 Replaces: python (<< 2.7.3-1~) Depends: python (>= 2.7.5-5ubuntu3), python-tk, idle-python2.7 Breaks: python (<< 2.7.3-1~) Filename: pool/main/p/python-defaults/idle_2.7.5-5ubuntu3_all.deb Size: 3114 MD5sum: c18627e5a82c87a441cc1b8a3c278240 SHA1: 44525cf376f81a06da8374e0f4309e7756efd181 SHA256: 8776508df7c4df3f3e71d608596cd4c27470e9b7dacfde86361320c63e6d3ab8 Description: IDE for Python using Tkinter (default version) Enhances: python Homepage: http://www.python.org/ Description-md5: d98c42430725f0a7a890e93ce1835e7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: idle-python2.7 Priority: optional Section: python Installed-Size: 1084 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.6.1-2) Depends: python2.7, python-tk (>= 2.6~a3), python2.7-tk Filename: pool/main/p/python2.7/idle-python2.7_2.7.6-8_all.deb Size: 222576 MD5sum: aad47d4c9a0ac711ebd48ae0bdd1dafa SHA1: a3b33a43caaa29c13c6ea98af2e282b40ad456ac SHA256: 56fa53afc073607ab228799c7d145ea89d73affbbcdbf19217e1381f62974557 Description: IDE for Python (v2.7) using Tkinter Enhances: python2.7 Description-md5: 1fd93a936611995336444949b73d0b8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: idle-python3.4 Priority: optional Section: python Installed-Size: 200 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: python3.4, python3-tk, python3.4-tk Filename: pool/main/p/python3.4/idle-python3.4_3.4.0-2ubuntu1_all.deb Size: 33678 MD5sum: 70521cbd17fef167fd23f2a554374783 SHA1: 1ab9de4965ec9c9fd73fce50c553f5805f626225 SHA256: 0b5290ee3af92b7d44f09f32bd65a1f739795ec614d9041c1509c44ccaa65d97 Description: IDE for Python (v3.4) using Tkinter Enhances: python3.4 Description-md5: e512a89469c399100e6c8d9b845e1aea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: idle3 Priority: optional Section: python Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3-defaults Version: 3.4.0-0ubuntu2 Replaces: python3 (<< 3.2.3-1~) Depends: python3 (>= 3.4.0-0ubuntu2), python3-tk, idle-python3.4 Breaks: python3 (<< 3.2.3-1~) Filename: pool/main/p/python3-defaults/idle3_3.4.0-0ubuntu2_all.deb Size: 3080 MD5sum: 583c7eea45a327946d05cb369a61a41c SHA1: 8051f1b75bb55b6cd489ac3ec8a2cf4884a7c192 SHA256: 3d4f6e1e98e18bca3788377ab62cdda9e3eba2dd86d268467ca8365011a7c98e Description: IDE for Python using Tkinter (default version) Enhances: python3 Homepage: http://www.python.org/ Description-md5: 68e68d2a1fb7d9696e2efbe40970bf3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ienglish-common Priority: optional Section: text Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: all Source: ispell Version: 3.3.02-6 Depends: dictionaries-common (>= 1.10.6~), ispell (>= 3.3.02) Recommends: iamerican | iamerican-small | iamerican-large | iamerican-huge | iamerican-insane | ibritish | ibritish-small | ibritish-large | ibritish-huge | ibritish-insane Filename: pool/main/i/ispell/ienglish-common_3.3.02-6_all.deb Size: 11164 MD5sum: 7ceb2b1a5de472d31503528c19fe6587 SHA1: f01236a3ce28a3e2c858ac43f835e4aae2e34b57 SHA256: 7a8392e57e9a00d9f483a5df6e0b060ec947fe693ad6ef420dd5b9fde942ca43 Description: Common files for British and American ispell dictionaries Homepage: http://www.lasr.cs.ucla.edu/geoff/ispell.html Description-md5: 00100424e9bbeb721b9f506e8d037b49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ifenslave Priority: optional Section: net Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: all Version: 2.4ubuntu1 Replaces: ifenslave-2.6 (<< 1.1.0-22) Depends: ifupdown, iproute2 Recommends: net-tools Breaks: ifenslave-2.6 (<< 1.1.0-22) Filename: pool/main/i/ifenslave/ifenslave_2.4ubuntu1_all.deb Size: 12922 MD5sum: 939a6c5c389757ace752bb01d0467064 SHA1: 200c21cf95c8b746ae961ce0e87214c6bd8aea5a SHA256: 1f457ab74ca730d3499155dec69a55f97a51fbba0b31e045099e3767f8937078 Description: configure network interfaces for parallel routing (bonding) Multi-Arch: foreign Description-md5: 74732f22bb89d876029092ddddb4e653 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ifenslave-2.6 Priority: optional Section: net Installed-Size: 30 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: all Source: ifenslave Version: 2.4ubuntu1 Depends: ifenslave (>= 2.2) Filename: pool/main/i/ifenslave/ifenslave-2.6_2.4ubuntu1_all.deb Size: 1642 MD5sum: 38759149a444c81e9f8261540c0dcf30 SHA1: fc6f17d90471fe85f9808130aa7516bb14d39cb7 SHA256: dab0e0d47c22b5a460f45f22fa52ca1767e2e5973678ae58358d2490fd193bf2 Description: transitional package, use "ifenslave" Multi-Arch: foreign Description-md5: 9c4d28f6aed0f5dbf0603d3f68d763cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ifupdown Priority: required Section: admin Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Andrew Shadura Architecture: amd64 Version: 0.7.47.2ubuntu4 Replaces: netbase (<< 5.0) Depends: iproute2, libc6 (>= 2.14), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 4.1+Debian3), initscripts (>= 2.88dsf-25), adduser Recommends: isc-dhcp-client | dhcp-client Suggests: ppp, rdnssd, net-tools Breaks: dhcp3-client (<< 4.0), netbase (<< 5.0) Filename: pool/main/i/ifupdown/ifupdown_0.7.47.2ubuntu4_amd64.deb Size: 51894 MD5sum: 2740f5c1db153a07c51bf8a36509ab52 SHA1: 49d9c74153b41156d00882ccef677bf89506db5b SHA256: 61272a16ea205d4f3a90b17d933d51d8e27cf0fe1a10b31ac1d0029f14ed735a Description: high level tools to configure network interfaces Multi-Arch: foreign Description-md5: 442edbd184a6e1febc9b203604eb38f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: im-config Priority: optional Section: x11 Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Osamu Aoki Architecture: all Version: 0.24-1ubuntu4 Provides: im-switch Depends: zenity | kde-baseapps-bin | dialog, gettext-base Recommends: x11-common, dialog Conflicts: im-switch Filename: pool/main/i/im-config/im-config_0.24-1ubuntu4_all.deb Size: 22214 MD5sum: 12851d1e0109616dbacb5bfac7a582c0 SHA1: 248a88a09b9605d12fc7358427413fa711487423 SHA256: 5c7fbf8265b7394c41a74227aae88e92a04b5da2549511c9c7af38157180e3ea Description: Input method configuration framework Description-md5: 7ebedf87e8f65c091969a42e1c5aaad4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: imagemagick Priority: optional Section: graphics Installed-Size: 448 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: amd64 Version: 8:6.7.7.10-6ubuntu3 Depends: libc6 (>= 2.2.5), libmagickcore5 (>= 8:6.7.7.10), libmagickwand5 (>= 8:6.7.7.10), hicolor-icon-theme Recommends: libmagickcore5-extra, ghostscript, netpbm Suggests: imagemagick-doc, autotrace, cups-bsd | lpr | lprng, curl, enscript, ffmpeg, gimp, gnuplot, grads, groff-base, hp2xx, html2ps, libwmf-bin, mplayer, povray, radiance, sane-utils, texlive-base-bin, transfig, xdg-utils, ufraw-batch Filename: pool/main/i/imagemagick/imagemagick_6.7.7.10-6ubuntu3_amd64.deb Size: 188098 MD5sum: 46f2c3d4684c8583825589719325b7ba SHA1: 0ed69f44cfe44528fd2d5bb89601051803674427 SHA256: 3c1b06f6c117bdef5545cd56d1d9a7373851f371950709bad7a3f0c47feaf2df Description: image manipulation programs Multi-Arch: foreign Homepage: http://www.imagemagick.org/ Description-md5: 7c91199cdb23d3f0345a662d072b5a37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics Package: imagemagick-common Priority: optional Section: graphics Installed-Size: 295 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: all Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Pre-Depends: dpkg (>= 1.15.7.2) Filename: pool/main/i/imagemagick/imagemagick-common_6.7.7.10-6ubuntu3_all.deb Size: 37156 MD5sum: 8218c800bf862f820cc6a4cdc23f09a6 SHA1: be00884ba3f35d0cdad69dd3f4cbee53fb57d52e SHA256: 6ec5d7974b285ad5bcc8b3bba988ba94bf50fffb485c9c13fc5f23d2acb2fe6b Description: image manipulation programs -- infrastructure Multi-Arch: foreign Homepage: http://www.imagemagick.org/ Description-md5: 374ab3990448f9e5ee5a8ddca297d3a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: imagemagick-dbg Priority: extra Section: libdevel Installed-Size: 7482 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: amd64 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: imagemagick (= 8:6.7.7.10-6ubuntu3), libmagick++5 (= 8:6.7.7.10-6ubuntu3), libmagickcore5-extra (= 8:6.7.7.10-6ubuntu3), perlmagick (= 8:6.7.7.10-6ubuntu3) Filename: pool/main/i/imagemagick/imagemagick-dbg_6.7.7.10-6ubuntu3_amd64.deb Size: 5802802 MD5sum: 40ec5b156e40d190dc7702f0836eaf52 SHA1: a6692bddf71659444641946305562a27ec8ae124 SHA256: e76c9bbbe7285beb601d856067d67dad00a165d774c971eeb49984d5da18c3fe Description: debugging symbols for ImageMagick Homepage: http://www.imagemagick.org/ Description-md5: bcd82c976803bc08e1948c79a714f76d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: imagemagick-doc Priority: optional Section: doc Installed-Size: 21712 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: all Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Recommends: www-browser Suggests: imagemagick Conflicts: imagemagick (<= 7:6.4.0) Filename: pool/main/i/imagemagick/imagemagick-doc_6.7.7.10-6ubuntu3_all.deb Size: 4216086 MD5sum: 0f91cd3f93415d5de4a1f18e8cb9e645 SHA1: c1374781716450d28c3420fd9e7860ff4b53a520 SHA256: 43858b7cd972c605868fed015074fbb685e100a36590b6fe33585c19bce9f6d5 Description: document files of ImageMagick Homepage: http://www.imagemagick.org/ Description-md5: 5d9b7cb104f5e68c9f08614fbae829f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: indent Priority: optional Section: devel Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 2.2.11-4 Depends: libc6 (>= 2.14) Filename: pool/main/i/indent/indent_2.2.11-4_amd64.deb Size: 82868 MD5sum: b81e6ef867b39bdfadc501619a464259 SHA1: ff7cfe6178402728cf018612f1e23d31e006efd1 SHA256: 75908f925a046c91ebfa67b39fc8cb20b642d5762b9392a5964dd636a2cf44e5 Description: C language source code formatting program Multi-Arch: foreign Description-md5: 89cfc962c403fb895c513c63c128c266 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: indent-doc Priority: optional Section: doc Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: indent Version: 2.2.11-4 Filename: pool/main/i/indent/indent-doc_2.2.11-4_all.deb Size: 27252 MD5sum: 379b6b0113a2f223434c0953c73748a8 SHA1: abc6a9b82170f676166243ef8bd2a8cfa17baf1f SHA256: 83c68ba9f38371bf67d169895968200d5bb6cb702f3866eb69a1495df4c88aff Description: Documentation for GNU indent Description-md5: b1d6cfeff8b582dee47070d3d3ba2886 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: indicator-application Priority: optional Section: gnome Installed-Size: 161 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 12.10.1+14.04.20140407-0ubuntu1 Depends: libappindicator3-1 (>= 0.2.92), libc6 (>= 2.2.5), libdbus-glib-1-2 (>= 0.88), libdbusmenu-gtk3-4 (>= 0.4.2), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libindicator3-7 (>= 0.4.90), libpango-1.0-0 (>= 1.14.0) Filename: pool/main/i/indicator-application/indicator-application_12.10.1+14.04.20140407-0ubuntu1_amd64.deb Size: 23750 MD5sum: 9129c09a588437e673f6d787f4b5d5b6 SHA1: b5a9b25630de737842ff229f9c9ee71512d132d9 SHA256: 496788f5561d5594764070436dd39515f7df3afebae42c27a844b441c7358d50 Description: Application Indicators Homepage: https://launchpad.net/indicator-application Description-md5: fec3a294dcadc4ec7cf73d92b3adc2ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: indicator-appmenu Priority: optional Section: gnome Installed-Size: 139 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 13.01.0+14.04.20140404-0ubuntu1 Depends: libbamf3-2 (>= 0.2.110), libc6 (>= 2.4), libdbusmenu-glib4 (>= 0.4.2), libdbusmenu-gtk3-4 (>= 0.4.2), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.12), libindicator3-7 (>= 0.4.90), libx11-6, dconf-gsettings-backend | gsettings-backend Recommends: indicator-applet | indicator-renderer, unity-gtk2-module, unity-gtk3-module, appmenu-qt, appmenu-qt5 Filename: pool/main/i/indicator-appmenu/indicator-appmenu_13.01.0+14.04.20140404-0ubuntu1_amd64.deb Size: 24726 MD5sum: e77f7dc56936d1bc489076be7dac3e8e SHA1: 230352f8f71dfe5d31e612d0efbdb7a6dcd82619 SHA256: c0f3ef21390b037f8ba05bc2482aec046d259bafd491ce8dddeef8dfb3491630 Description: Indicator for application menus. Homepage: http://launchpad.net/indicator-appmenu Description-md5: 411fe4661e19ef0cd325d0a6c997ec00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-bluetooth Priority: extra Section: gnome Installed-Size: 296 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 0.0.6+14.04.20140207-0ubuntu2 Replaces: gnome-bluetooth (<< 3.6.1-0ubuntu2) Depends: dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), liburl-dispatcher1 (>= 0.1), bluez (>= 4.36), unity-control-center | gnome-control-center | ubuntu-system-settings, gnome-bluetooth | ubuntu-system-settings Breaks: gnome-bluetooth (<< 3.6.1-0ubuntu2) Filename: pool/main/i/indicator-bluetooth/indicator-bluetooth_0.0.6+14.04.20140207-0ubuntu2_amd64.deb Size: 45646 MD5sum: 934cc02ac7db00cdfd2e033d34673a20 SHA1: aa7442d6e8ce64b98e33b42c2f4c595de7c368b2 SHA256: f0d2f171693a65b5e53d67249bc9003553922ec1c213cc319d8a113f0c2f7ad1 Description: System bluetooth indicator. Homepage: https://launchpad.net/indicator-bluetooth Description-md5: 6c65b08124db76931866665b2baebc9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-datetime Priority: optional Section: misc Installed-Size: 804 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 13.10.0+14.04.20140415.3-0ubuntu1 Replaces: indicator-datetime (<< 13.10.0) Depends: libc6 (>= 2.4), libcanberra0 (>= 0.2), libecal-1.2-16 (>= 3.7.90), libedataserver-1.2-18 (>= 3.5.91), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.37.0), libical1 (>= 1.0), libnotify4 (>= 0.7.6), libstdc++6 (>= 4.6), liburl-dispatcher1 (>= 0.1), dconf-gsettings-backend | gsettings-backend, systemd-services, systemd-shim Recommends: indicator-applet | indicator-renderer, evolution-data-server, geoclue-ubuntu-geoip | geoclue-provider, unity-control-center (>= 14.04.3) | ubuntu-system-settings Suggests: click Conflicts: indicator-datetime (<< 13.10.0) Filename: pool/main/i/indicator-datetime/indicator-datetime_13.10.0+14.04.20140415.3-0ubuntu1_amd64.deb Size: 145850 MD5sum: 116a76ce074adbbca77737c047e0d393 SHA1: a70e2e13483e67c0b7a4ae444c6715122a3f47b8 SHA256: 5131d04ea6f0ea7034e62bc2f665a8e8708913b679199cd7afce0eb2818bcd0a Description: Simple clock Homepage: https://launchpad.net/indicator-datetime Description-md5: 083f98dd29157b1f6c5a8c4594d7d774 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-keyboard Priority: optional Section: gnome Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: William Hua Architecture: amd64 Version: 0.0.0+14.04.20140410.1-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend, libaccountsservice0 (>= 0.6.35-0ubuntu7), libc6 (>= 2.2.5), libcairo2 (>= 1.2.4), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.5), libgnome-desktop-3-7 (>= 3.5.2), libgtk-3-0 (>= 3.1.6), libibus-1.0-5 (>= 1.5.1), liblightdm-gobject-1-0 (>= 1.1.3), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libxklavier16 (>= 5.1) Breaks: ibus (<< 1.5.5-1ubuntu3) Filename: pool/main/i/indicator-keyboard/indicator-keyboard_0.0.0+14.04.20140410.1-0ubuntu1_amd64.deb Size: 42462 MD5sum: 5d97f901fc67f59856c4a66a1d4fc925 SHA1: e550814af8ab750f0baeac868fbe20332ae5f294 SHA256: e81008c2e60bca2e14216e3e7c8a8911fcc147b75e5b619a19ba9ffa5adf21c4 Description: Keyboard indicator Homepage: https://code.launchpad.net/indicator-keyboard Description-md5: 0399ae266619db0e430ad43d8d5ad076 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-messages Priority: optional Section: gnome Installed-Size: 364 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Version: 13.10.1+14.04.20140410-0ubuntu1 Replaces: indicator-status-provider-emesene, indicator-status-provider-mc5, indicator-status-provider-pidgin, indicator-status-provider-telepathy, libindicator-messages-status-provider-dev, libindicator-messages-status-provider1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), dconf-gsettings-backend | gsettings-backend Recommends: indicator-applet | indicator-renderer Conflicts: indicator-status-provider-emesene, indicator-status-provider-mc5, indicator-status-provider-pidgin, indicator-status-provider-telepathy, libindicator-messages-status-provider-dev, libindicator-messages-status-provider1 Breaks: gwibber-services (<< 3.5.4-0ubuntu1~), telepathy-indicator (<< 0.3.0-0ubuntu1~), thunderbird (<< 15.0+build1-0ubuntu1~), xchat-gnome-indicator (<< 0.3.11-0ubuntu2~), xchat-indicator (<< 0.3.11-0ubuntu2~) Filename: pool/main/i/indicator-messages/indicator-messages_13.10.1+14.04.20140410-0ubuntu1_amd64.deb Size: 64752 MD5sum: 7d4514e2f99d52988c9486e18e448851 SHA1: 782acb43f44646e5018c57b02a98ffa7430faef1 SHA256: f4449a5d8f8c2a6579a8854b38378cc7b2b95e149fc0108a8218a70222b255c7 Description: indicator that collects messages that need a response Homepage: https://launchpad.net/indicator-messages Description-md5: 4b542e22d4916b1b888ba25c790e7864 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: indicator-power Priority: optional Section: gnome Installed-Size: 171 Maintainer: Ubuntu Core Developers Architecture: amd64 Version: 12.10.6+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), liburl-dispatcher1 (>= 0.1), dconf-gsettings-backend | gsettings-backend, upower Recommends: unity-control-center | gnome-control-center (>= 3.1) | ubuntu-system-settings | xfce4-power-manager, indicator-applet (>= 0.2) | indicator-renderer Filename: pool/main/i/indicator-power/indicator-power_12.10.6+14.04.20140411-0ubuntu1_amd64.deb Size: 28952 MD5sum: d2fdc9de518aba1fade8a3379c1af9ca SHA1: 2482a80f87a3c8f51e8bd8b6607d8da040529c9f SHA256: 5915150123e47d196807e35ad589a6b41833524b8736a93e0375b7cff61eae21 Description: Indicator showing power state. Homepage: https://launchpad.net/indicator-power Description-md5: a640c20ce04b08d6092562fe0fecbddd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: indicator-printers Priority: extra Section: gnome Installed-Size: 219 Maintainer: Ubuntu Desktop Team Original-Maintainer: Lars Uebernickel Architecture: amd64 Version: 0.1.7+14.04.20140313-0ubuntu1 Depends: libc6 (>= 2.2.5), libcairo2 (>= 1.2.4), libcups2 (>= 1.6.0), libdbusmenu-glib4 (>= 0.4.2), libdbusmenu-gtk3-4 (>= 0.4.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libindicator3-7 (>= 0.4.90), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), cups (>= 1.5) Recommends: indicator-applet (>= 0.2) | indicator-renderer, system-config-printer-gnome Filename: pool/main/i/indicator-printers/indicator-printers_0.1.7+14.04.20140313-0ubuntu1_amd64.deb Size: 25194 MD5sum: 6baa105f9290d756b5b16a8f5f48e145 SHA1: 903eb237fcedeb7caa144f2c791e1f950b4f38db SHA256: 0f94092f684ce8f8c3d914025637e9ef41323cc3b15b9adbd6f6bfa265e95818 Description: indicator showing active print jobs Homepage: https://launchpad.net/indicator-printers Description-md5: 3b6c1a985bc7a48b6754888ad18d064e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-session Priority: optional Section: gnome Installed-Size: 872 Maintainer: Ubuntu Developers Architecture: amd64 Version: 12.10.5+14.04.20140410-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), dconf-gsettings-backend | gsettings-backend, systemd-services, gnome-settings-daemon-schemas, gsettings-desktop-schemas Recommends: indicator-applet (>= 0.2) | indicator-renderer, gnome-screensaver, yelp, unity-control-center | gnome-control-center, unity-control-center-signon | gnome-control-center-signon Suggests: lightdm, apport, zenity Filename: pool/main/i/indicator-session/indicator-session_12.10.5+14.04.20140410-0ubuntu1_amd64.deb Size: 103940 MD5sum: ee731fe4c8d487140e8b7199070bc90c SHA1: baf7d59aa78ec9cb2bf2420b0399f7f4e08b702f SHA256: 363453222923c61315eb7aac0cf35e203c31504547aa318442cae98de9e51cd2 Description: indicator showing session management, status and user switching Homepage: https://launchpad.net/indicator-session Description-md5: 039ad83f5a2abd8ebf915df110887494 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-sound Priority: extra Section: sound Installed-Size: 370 Maintainer: Ubuntu Desktop Team Original-Maintainer: Conor Curran Architecture: amd64 Version: 12.10.2+14.04.20140401-0ubuntu1 Depends: libaccountsservice0 (>= 0.6.8), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libnotify4 (>= 0.7.0), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), liburl-dispatcher1 (>= 0.1), dconf-gsettings-backend | gsettings-backend, pulseaudio, gsettings-ubuntu-schemas (>= 0.0.1+14.04.20140224) Recommends: unity-control-center | gnome-control-center | ubuntu-system-settings | pavucontrol, accountsservice Suggests: unity-greeter-session-broadcast Filename: pool/main/i/indicator-sound/indicator-sound_12.10.2+14.04.20140401-0ubuntu1_amd64.deb Size: 62702 MD5sum: 75030421e3c8f13b743fa2cc92611e83 SHA1: a77dd3e97406747501fc741c8832edff9bf45552 SHA256: 58d5b1debd8389ca5dfce1ff7a73d71b8ef76be71c1264bfb15c08452a7cc598 Description: System sound indicator. Homepage: https://launchpad.net/indicator-sound Description-md5: fab6eabedadace061843b11db0e18547 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: info Priority: standard Section: doc Installed-Size: 451 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: amd64 Source: texinfo Version: 5.2.0.dfsg.1-2 Replaces: texinfo (<< 4.7-2) Provides: info-browser Depends: libc6 (>= 2.15), libtinfo5, install-info Suggests: texinfo-doc-nonfree Filename: pool/main/t/texinfo/info_5.2.0.dfsg.1-2_amd64.deb Size: 99094 MD5sum: 378be8612e0a416587e38fbef3002cf7 SHA1: a415e92660a956ac3db867abff30c5e81ea5af38 SHA256: 35ff58f7c3ac19ba3cbf34d7d0aa2e9f7a08f1891cba63678f168dd0cec99514 Description: Standalone GNU Info documentation browser Multi-Arch: foreign Description-md5: 98475bbce3804b8961f7886328b1baea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: init-system-helpers Priority: important Section: admin Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: pkg-systemd-maintainers Architecture: all Version: 1.14 Depends: perl Breaks: systemd (<< 44-12) Filename: pool/main/i/init-system-helpers/init-system-helpers_1.14_all.deb Size: 12064 MD5sum: d5d0546bbf94e8dee1e73d900fb9801e SHA1: f8607d8ae1717fb53814dacb62f1efc3eac6cdd2 SHA256: b2de4721e6eafbf18db8ce4bb5c22a9014a06e88ec57151a52ca5f4f37133e17 Description: helper tools for all init systems Multi-Arch: foreign Description-md5: aa78a7dd54f7afeb8b7fc4843f230f13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: initramfs-tools Priority: required Section: utils Installed-Size: 365 Maintainer: Ubuntu Kernel Team Original-Maintainer: Debian kernel team Architecture: all Version: 0.103ubuntu4 Provides: linux-initramfs-tool Depends: initramfs-tools-bin (>= 0.103ubuntu4), initramfs-tools-bin (<< 0.103ubuntu4.1~), klibc-utils (>= 2.0-1~), busybox-initramfs (>= 1:1.13.3-1ubuntu5), cpio, module-init-tools, udev (>= 147~-5), findutils (>= 4.2.24), util-linux (>> 2.15~rc1) Suggests: bash-completion Conflicts: usplash (<< 0.5.50) Breaks: cryptsetup (<< 2:1.1.0-2.1), elilo (<< 3.12-3.1~), lilo (<< 22.8-8.2~), mountall (<< 2.0~), s390-tools (<< 1.8.3-2~) Filename: pool/main/i/initramfs-tools/initramfs-tools_0.103ubuntu4_all.deb Size: 44304 MD5sum: ec53fad89eee19fdf565b165501a1244 SHA1: 65ecd9c476c6dec370b626138ecf6cf137a399bc SHA256: 4a914c1ff5c2cfb4762e3120f675bdcf24f6c2c444a7b39d6d165d41cedbe1b5 Description: tools for generating an initramfs Multi-Arch: foreign Description-md5: a490e1911ad8a5615a7f99c834d1a8d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: initramfs-tools-bin Priority: required Section: utils Installed-Size: 121 Maintainer: Ubuntu Kernel Team Original-Maintainer: Debian kernel team Architecture: amd64 Source: initramfs-tools Version: 0.103ubuntu4 Depends: libc6 (>= 2.4), libudev1 (>= 183) Filename: pool/main/i/initramfs-tools/initramfs-tools-bin_0.103ubuntu4_amd64.deb Size: 8766 MD5sum: 6f3894e195e162386d136afb05372ff5 SHA1: d94027ad0d9c1e3b5b90fa1bbeb655a103e5a3d6 SHA256: 4b9dc7558589430e65f49f5cd991441ccce7d76a6519aede6f68fa265bd6a33b Description: binaries used by initramfs-tools Description-md5: 14e601bd8c0a0905d238d89be3036fa8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: initscripts Priority: required Section: admin Installed-Size: 223 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian sysvinit maintainers Architecture: amd64 Source: sysvinit Version: 2.88dsf-41ubuntu6 Replaces: libc0.1, libc0.3, libc6, libc6.1 Depends: libc6 (>= 2.4), mount (>= 2.11x-1), debianutils (>= 4), lsb-base (>= 3.2-14), sysvinit-utils (>= 2.86.ds1-64), sysv-rc | file-rc, coreutils (>= 5.93), passwd, upstart, mountall (>= 2.28) Recommends: psmisc, e2fsprogs Conflicts: libdevmapper1.02.1 (<< 2:1.02.24-1) Breaks: aide (<< 0.15.1-5), atm-tools (<< 1:2.5.1-1.3), bootchart (<< 0.10~svn407-3.3), console-common (<< 0.7.86), cruft (<< 0.9.16), eepc-acpi-scripts (<< 1.1.12), fcheck (<< 2.7.59-16), hostapd (<< 1:0.7.3-3), hostname (<< 2.95ubuntu1~boot2), ifupdown (<< 0.6.8ubuntu27), libpam-mount (<< 2.13-1), ltsp-client-core (<< 5.2.16-1), mdadm (<< 3.2.2-1), nbd-client (<< 1:2.9.23-1), nfs-common (<< 1:1.2.5-3), portmap (<< 6.0.0-2), readahead-fedora (<< 2:1.5.6-3), resolvconf (<< 1.49), rpcbind (<< 0.2.0-7), rsyslog (<< 5.8.2-2), selinux-policy-default (<= 2:0.2.20100524-9), splashy (<< 0.3.13-5.1+b1), sysklogd (<< 1.5-6.2), udev (<< 146-2~boot6), upstart (<< 0.6.3-2~boot4), wpasupplicant (<< 0.7.3-4), xymon (<< 4.3.0~beta2.dfsg-9) Filename: pool/main/s/sysvinit/initscripts_2.88dsf-41ubuntu6_amd64.deb Size: 27668 MD5sum: fa33b1eafeff2a99e02752185eb2bf1f SHA1: 04ce4d3f2d9efc7ac867b1a7daef8483ec54038b SHA256: 5c9b3476509e8ee0fac45fb41c6ee68af85f0c9a0bbebbf703a3bfae2117fedd Description: scripts for initializing and shutting down the system Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/sysvinit Description-md5: db9003c179cd2a623493209da58ea2ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: inkscape Priority: optional Section: graphics Installed-Size: 62232 Maintainer: Ubuntu Developers Original-Maintainer: Wolfram Quester Architecture: amd64 Version: 0.48.4-3ubuntu2 Depends: python:any (>= 2.7.1-0ubuntu2), libaspell15 (>= 0.60.7~20110707), libatkmm-1.6-1 (>= 2.22.1), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libcairomm-1.0-1 (>= 1.6.4), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgc1c2 (>= 1:7.2d), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.35.9), libglibmm-2.4-1c2a (>= 2.36.2), libgnomevfs2-0 (>= 1:2.17.90), libgomp1 (>= 4.2.1), libgsl0ldbl (>= 1.9), libgtk2.0-0 (>= 2.24.0), libgtkmm-2.4-1c2a (>= 1:2.24.0), libgtkspell0 (>= 2.0.10), liblcms2-2 (>= 2.2+git20110628), libmagick++5 (>= 8:6.7.7.10), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpangoft2-1.0-0 (>= 1.14.0), libpangomm-1.4-1 (>= 2.27.1), libpng12-0 (>= 1.2.13-4), libpoppler-glib8 (>= 0.18.0), libpoppler44 (>= 0.24.5), libpopt0 (>= 1.14), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6), libwpd-0.9-9, libwpg-0.2-2, libx11-6, libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), zlib1g (>= 1:1.1.4) Recommends: aspell, imagemagick, libgnomevfs2-extra, libwmf-bin, perlmagick, python-lxml, python-numpy, transfig Suggests: pstoedit, dia | dia-gnome, libsvg-perl, libxml-xql-perl, python-uniconvertor, ruby Filename: pool/main/i/inkscape/inkscape_0.48.4-3ubuntu2_amd64.deb Size: 9890172 MD5sum: 8c622ece67082c94412392f593bedac0 SHA1: 540d2454a48ccc0e6d91e28b6040e3f0fd68e146 SHA256: 565a5928efe6a9dba0a56bfbcf013739ad1b5588d32aeec19c33f660526e2bdf Description: vector-based drawing program Homepage: http://www.inkscape.org/ Description-md5: c0b92a491186d76eb1f17936e7516236 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: inputattach Priority: extra Section: utils Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Stephen Kitt Architecture: amd64 Source: joystick Version: 1:1.4.7-1 Depends: libc6 (>= 2.15) Breaks: joystick (<< 20051019-6) Filename: pool/main/j/joystick/inputattach_1.4.7-1_amd64.deb Size: 18844 MD5sum: 5d790e8486626e2b34e971175c2ad134 SHA1: 1cacb3bfaa3ccd2cd353fd3ef6ffdea6071b0cd7 SHA256: 35593d9469ea9821c390f67ae6fa61648424535ea2725106eefa0849b7c29a57 Description: utility to connect serial-attached peripherals to the input subsystem Homepage: https://sourceforge.net/projects/linuxconsole/ Description-md5: 4411fd970af7a25054439075e5312465 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: insserv Priority: required Section: misc Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: Petter Reinholdtsen Architecture: amd64 Version: 1.14.0-5ubuntu2 Depends: libc6 (>= 2.14) Suggests: bootchart2 Breaks: sysv-rc (<< 2.87dsf-3) Filename: pool/main/i/insserv/insserv_1.14.0-5ubuntu2_amd64.deb Size: 43298 MD5sum: 1674cac89d548d954b996d04053fc4ff SHA1: e2db8fb8812d1cd6e75d8d10870be3d468a71741 SHA256: c645ec87fe839f2a1f120d838bdff9a30e46fecd4b21c8293d2f6e4d5cd6fec2 Description: boot sequence organizer using LSB init.d script dependency information Homepage: http://savannah.nongnu.org/projects/sysvinit Description-md5: 0be88d1805bf68a98b830e9ce52bf123 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: install-info Priority: standard Section: doc Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: amd64 Source: texinfo Version: 5.2.0.dfsg.1-2 Replaces: texinfo (<< 4.13a.dfsg.1-2) Depends: libc6 (>= 2.14) Pre-Depends: dpkg (>= 1.16.1) Breaks: texinfo (<< 4.13a.dfsg.1-2) Filename: pool/main/t/texinfo/install-info_5.2.0.dfsg.1-2_amd64.deb Size: 51582 MD5sum: 5ef793c8b5d033e7b0dd5e0fa173fa44 SHA1: 69779172fe5a585721668cdd6c15f5ee3b45d3ed SHA256: b6bc5a2d2d978933529af7019122fa4237bdbbd4244944559a7d1f9eff7fe0cc Description: Manage installed documentation in info format Multi-Arch: foreign Description-md5: 1fc51f7aec70d7bdeff2e1bf59b3ebbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: installation-guide-amd64 Priority: optional Section: doc Installed-Size: 1800 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: installation-guide Version: 20100518ubuntu10 Conflicts: installation-guide Filename: pool/main/i/installation-guide/installation-guide-amd64_20100518ubuntu10_all.deb Size: 1261260 MD5sum: 3816e6f57ced245fc0a5bfc03e5c6c9f SHA1: 96517da48f6dac753a5fa16b03be9a840590cbb7 SHA256: c6fb8301d95acf0f6c7d825d062071941b0e2582b6678662c47e2a1a17f89710 Description: Ubuntu installation guide for amd64 Description-md5: 1f8ea366e0beb2b4a9e47f52f3983d54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: installation-guide-armhf Priority: optional Section: doc Installed-Size: 1580 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: installation-guide Version: 20100518ubuntu10 Conflicts: installation-guide Filename: pool/main/i/installation-guide/installation-guide-armhf_20100518ubuntu10_all.deb Size: 1102882 MD5sum: 9a5302dd1f37c020e3dfabff4d5e96a5 SHA1: 5a9c0c5d0f2efe87178d8216a1adfb692429bb08 SHA256: 7f837476a33faf6d61a7e1205eea7696bb9bcd09cf7a436813e2fbec3811b8bc Description: Ubuntu installation guide for armhf Description-md5: 1f1eb5b199d592723594860507e756da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: installation-guide-i386 Priority: optional Section: doc Installed-Size: 1810 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: installation-guide Version: 20100518ubuntu10 Conflicts: installation-guide Filename: pool/main/i/installation-guide/installation-guide-i386_20100518ubuntu10_all.deb Size: 1271504 MD5sum: 41f318711afff2c15ff02f2350979a0e SHA1: 3ac7c8c4604ac6d9c3389d7611506f61a77107ce SHA256: d2106de570cadb2a0b8cc0d6d82755f1c92b85301deef7c1c190d0975d6b938a Description: Ubuntu installation guide for i386 Description-md5: 2741a9539428bef3a28fc0b9092ef544 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: installation-guide-powerpc Priority: optional Section: doc Installed-Size: 1661 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: installation-guide Version: 20100518ubuntu10 Conflicts: installation-guide Filename: pool/main/i/installation-guide/installation-guide-powerpc_20100518ubuntu10_all.deb Size: 1162666 MD5sum: 3cc3135a318195a665c737a1b3cfd066 SHA1: 00a1126f6a62b418dc064ad5233930b2eb8aa1b0 SHA256: 8b69219f51b089c66285d52d540a42410b48b64feafbb201b7f52db16bef1bcf Description: Ubuntu installation guide for powerpc Description-md5: 92a1f217bd580e43e3bcf77a8a095906 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: installation-report Priority: optional Section: misc Installed-Size: 79 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Version: 2.54ubuntu1 Depends: debconf Recommends: pciutils Filename: pool/main/i/installation-report/installation-report_2.54ubuntu1_all.deb Size: 7476 MD5sum: c1819867e163b6917bdf5f7055628144 SHA1: 417c31fa55ae2369238c6e80b6fcd4f576059647 SHA256: 9693c12a53d7d0b13fbeadd1a6f024811da0911d12db19f8026b5dd32dce58b6 Description: system installation report Description-md5: 1807d9b3c4b555bdb2fbab05932b1fa9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: intel-gpu-tools Priority: optional Section: x11 Installed-Size: 646 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1.3-0ubuntu2 Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libdrm-intel1 (>= 2.4.36), libdrm2 (>= 2.4.30), libpciaccess0 (>= 0.8.0+git20071002) Conflicts: xserver-xorg-video-intel (<< 2.9.1) Filename: pool/main/i/intel-gpu-tools/intel-gpu-tools_1.3-0ubuntu2_amd64.deb Size: 188730 MD5sum: 42d41105379bdcf1aa8529563299cdf7 SHA1: 8e02e200b77b5f3db7d77d3ed9b57b2ef24dd5a9 SHA256: df1fe246294bf2f0b28fcf6f75c15025ef8464340665a55cdd4182885d284bda Description: tools for debugging the Intel graphics driver Homepage: http://www.intellinuxgraphics.org/ Description-md5: 564f3bda44ca25bdb6227f2b18149b73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: intltool Priority: optional Section: devel Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.50.2-2 Provides: xml-i18n-tools Depends: gettext (>= 0.10.36-1), patch, automake | automaken, perl (>= 5.8.1), libxml-parser-perl, file Filename: pool/main/i/intltool/intltool_0.50.2-2_all.deb Size: 52040 MD5sum: 2ce0153413e48213cd4f661aee5d032e SHA1: 52b6bea4ec6768985adae0c335d7755d07e2aef7 SHA256: 869ae3083501c82b01623755a54b2d49375ab4a44e72b5a787f716116f62f197 Description: Utility scripts for internationalizing XML Multi-Arch: foreign Homepage: https://launchpad.net/intltool Description-md5: 72cf82626aca7106375b8705c1270e71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: intltool-debian Priority: optional Section: devel Installed-Size: 140 Maintainer: Ubuntu Core Developers Original-Maintainer: Nicolas FRANCOIS (Nekral) Architecture: all Version: 0.35.0+20060710.1 Depends: perl, gettext Filename: pool/main/i/intltool-debian/intltool-debian_0.35.0+20060710.1_all.deb Size: 31574 MD5sum: f44cdcbab68d6dba3bc89ff4df61c64e SHA1: bacbb9b6f45e76611d1273fd5b72d81ac2596816 SHA256: 16e27fb8e90c8d3f15213e315cb087667d49f7ae6f38e21273d3aa5d18a0c1be Description: Help i18n of RFC822 compliant config files Description-md5: f7eec8ae3ead840be969d214dcf411d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: iproute Priority: optional Section: net Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: Debian iproute2 Maintainers Architecture: all Source: iproute2 (3.12.0-2) Version: 1:3.12.0-2 Depends: iproute2 Filename: pool/main/i/iproute2/iproute_3.12.0-2_all.deb Size: 2384 MD5sum: 0c0e23538c05211f3459d5a565de2dc1 SHA1: 7368bc7d6a67de06db50b46a27cf3635b9cce900 SHA256: 3879ba896b4d5211d3b42c878c9f3164881716084c2cfb844d30b1de68e964ce Description: transitional dummy package for iproute2 Homepage: http://www.linux-foundation.org/en/Net:Iproute2 Description-md5: ba97e0c6cd2fc3c5cae2e667fb15a030 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: iproute-doc Priority: optional Section: doc Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: Debian iproute2 Maintainers Architecture: all Source: iproute2 (3.12.0-2) Version: 1:3.12.0-2 Depends: iproute2-doc Filename: pool/main/i/iproute2/iproute-doc_3.12.0-2_all.deb Size: 2388 MD5sum: 4efd0b7d4a7b012b50cb2fdb834e2ff9 SHA1: 009d285434665b6588c855fbdb62eb67c39903c6 SHA256: 60c30322203dfa497ae2fd3b9359e81952d4fba4761b167217ab34b336483ff7 Description: transitional dummy package for iproute2-doc Homepage: http://www.linux-foundation.org/en/Net:Iproute2 Description-md5: ca2b9e91562ef4c829cc2050464e7083 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iproute2 Priority: required Section: net Installed-Size: 1147 Maintainer: Ubuntu Developers Original-Maintainer: Debian iproute2 Maintainers Architecture: amd64 Version: 3.12.0-2 Replaces: iproute Provides: arpd Depends: libc6 (>= 2.14), libdb5.3 Recommends: libatm1 (>= 2.4.1-17~), libxtables10 Suggests: iproute2-doc Conflicts: arpd, iproute (<< 20130000-1) Filename: pool/main/i/iproute2/iproute2_3.12.0-2_amd64.deb Size: 399966 MD5sum: c42f26bf580f71ed30e6c2ded3687e26 SHA1: 84f46124118117f274b99e5b3ad209cd3e46f8ef SHA256: be0007c38cfc6b908ff3e50f44b276c0ccc3c0d83bd996666e82eb3b4c79a5b0 Description: networking and traffic control tools Multi-Arch: foreign Homepage: http://www.linux-foundation.org/en/Net:Iproute2 Description-md5: d10cc46ca4a9e5489b7d2c879fcfba17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: iproute2-doc Priority: optional Section: doc Installed-Size: 1006 Maintainer: Ubuntu Developers Original-Maintainer: Debian iproute2 Maintainers Architecture: all Source: iproute2 Version: 3.12.0-2 Replaces: iproute-doc Conflicts: iproute-doc (<< 20130000-1) Filename: pool/main/i/iproute2/iproute2-doc_3.12.0-2_all.deb Size: 917868 MD5sum: 999f0283f5996772759e9ea3d99ca5c6 SHA1: b99ab4bd8a8b3581e0cf7e50ad68d212b258560e SHA256: 88fc7998283f5a2f62bd8e22dce96633be7c0e1a8ce2fa9aeb5fa5c1c40644bd Description: networking and traffic control tools - documentation Homepage: http://www.linux-foundation.org/en/Net:Iproute2 Description-md5: 04b627412e2f9e6b31ebbbedd1b39794 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iptables Priority: standard Section: net Installed-Size: 1575 Maintainer: Ubuntu Developers Original-Maintainer: Laurence J. Lane Architecture: amd64 Version: 1.4.21-1ubuntu1 Depends: libc6 (>= 2.14), libnfnetlink0, libxtables10 (= 1.4.21-1ubuntu1) Filename: pool/main/i/iptables/iptables_1.4.21-1ubuntu1_amd64.deb Size: 260732 MD5sum: 39346e54eed658a8da8f11c3e78c2fb9 SHA1: 5ad1140d55b6842a4574f684286572f06553fe8c SHA256: d89cf318d3c7562e34b310fa61cbc0a45aade994d79cdf7b06766a78f015fc2f Description: administration tools for packet filtering and NAT Homepage: http://www.netfilter.org/ Description-md5: c998471c84128382a425d500ab6155da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: iptables-dev Priority: optional Section: devel Installed-Size: 295 Maintainer: Ubuntu Developers Original-Maintainer: Laurence J. Lane Architecture: amd64 Source: iptables Version: 1.4.21-1ubuntu1 Depends: iptables (= 1.4.21-1ubuntu1) Conflicts: iptables (<< 1.4.2-2) Breaks: linux-libc-dev (<< 3.5) Filename: pool/main/i/iptables/iptables-dev_1.4.21-1ubuntu1_amd64.deb Size: 55312 MD5sum: e3628fbfb3884acff73fb2bf81ec1e66 SHA1: a00db2bef6350ffe0cb4056ec61d839d7a4bc718 SHA256: d73226ba66c2c38e42c21d66c2ab261f6fb73ed356aadf7826f8b53004cf740b Description: iptables development files Homepage: http://www.netfilter.org/ Description-md5: 0af7161abbc31c70e9f70c1b93871c64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iptraf Priority: optional Section: net Installed-Size: 605 Maintainer: Ubuntu Developers Original-Maintainer: Frederic Peters Architecture: amd64 Version: 3.0.0-8.1 Depends: libc6 (>= 2.14), libncurses5 (>= 5.5-5~), libtinfo5 Filename: pool/main/i/iptraf/iptraf_3.0.0-8.1_amd64.deb Size: 157048 MD5sum: c1e0ec807545fd49cc87ce055d281430 SHA1: 04a1cc0ac98a5aeb5ea716f56cb6916c879dcffe SHA256: 1f1a081197356061cd4211d2b0174a15373b28b93ce53b4d9fe6b809335de2bc Description: Interactive Colorful IP LAN Monitor Description-md5: 375f1b3b30ae8305e36a4575ba82dbda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: iputils-arping Priority: optional Section: net Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: amd64 Source: iputils Version: 3:20121221-4ubuntu1 Depends: libc6 (>= 2.14), libcap2 (>= 2.10) Recommends: libcap2-bin Conflicts: arping Filename: pool/main/i/iputils/iputils-arping_20121221-4ubuntu1_amd64.deb Size: 26494 MD5sum: 07ea6e577fa3c81cee7135591b2d6adc SHA1: e2a727179acbb7e33b67a3742c62677dc528d871 SHA256: e6b4f2c9420a111c9d2ea49f263dd233e3c2d5ea6a86e9df575844acff805f68 Description: Tool to send ICMP echo requests to an ARP address Description-md5: bb18b14837d8c79e0cf4999c5662365c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: iputils-ping Priority: important Section: net Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: amd64 Source: iputils Version: 3:20121221-4ubuntu1 Provides: ping Depends: libc6 (>= 2.14), libcap2 (>= 2.10), libgnutls-openssl27 Recommends: libcap2-bin Filename: pool/main/i/iputils/iputils-ping_20121221-4ubuntu1_amd64.deb Size: 52570 MD5sum: c2a181c1999b7a85965542e6e9b633ad SHA1: e87e2dca3e897b593e6a8d00e6bf549a6b3af204 SHA256: 500daf10d08660bd56c83d1e2cf0a047c30a3402fe821c09f810c822c4677e21 Description: Tools to test the reachability of network hosts Description-md5: d70a0a65fee86f2e5c78f759703e9922 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: iputils-tracepath Priority: standard Section: net Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: amd64 Source: iputils Version: 3:20121221-4ubuntu1 Depends: libc6 (>= 2.15), libcap2 (>= 2.10) Suggests: traceroute Filename: pool/main/i/iputils/iputils-tracepath_20121221-4ubuntu1_amd64.deb Size: 32520 MD5sum: 7b25067e194eecbbb397abe3db00ac08 SHA1: 57cc5fbdc31e903a11a39e3df685f9f3586f21db SHA256: 69b480655e54ae0d4dc763964f6053970aaca8fe4af1329bd459f708992dbc55 Description: Tools to trace the network path to a remote host Description-md5: 78111c7284c2d6a95b25d6b8054e11b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: ipvsadm Priority: extra Section: net Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: amd64 Version: 1:1.26-2ubuntu1 Replaces: lvs Depends: libc6 (>= 2.14), libnl-3-200 (>= 3.2.16), libnl-genl-3-200 (>= 3.2.16), libpopt0 (>= 1.14), debconf (>= 0.5) | debconf-2.0, lsb-base (>= 3.0-6) Suggests: heartbeat, keepalived, ldirectord Conflicts: lvs Filename: pool/main/i/ipvsadm/ipvsadm_1.26-2ubuntu1_amd64.deb Size: 44396 MD5sum: d62d75f400a4466eded2949d91c40ff8 SHA1: df5a85636ef8d9e32110125e22016bbc4abf38f1 SHA256: 64a811074d6903590c886adf7cbdb6600528c8d22d533d76a89bf8143ec8fe8b Description: Linux Virtual Server support programs Description-md5: 2da8a6ae3f9cfd71d98b31040016c5b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ipxe Priority: optional Section: admin Installed-Size: 2269 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Blank Architecture: all Version: 1.0.0+git-20131111.c3d1e78-2ubuntu1 Depends: ipxe-qemu, grub-ipxe Filename: pool/main/i/ipxe/ipxe_1.0.0+git-20131111.c3d1e78-2ubuntu1_all.deb Size: 807198 MD5sum: 39d39dc54285ef2c7e3784d3f850cdf2 SHA1: 45dd580b5f16e5920b9ca067de2367ac8b200cd3 SHA256: 18c76d7fbb5d7becded4749489e93a7e6bcefa14f9858d5678eb140af7f8f504 Description: PXE boot firmware Multi-Arch: foreign Homepage: http://ipxe.org/ Description-md5: 464080e9cd2fc9e60db75303b8932264 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ipxe-qemu Priority: optional Section: admin Installed-Size: 1944 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Blank Architecture: all Source: ipxe Version: 1.0.0+git-20131111.c3d1e78-2ubuntu1 Replaces: kvm-ipxe (<< 1.0.0+git-20130710.936134e-0ubuntu1) Breaks: kvm-ipxe (<< 1.0.0+git-20130710.936134e-0ubuntu1) Filename: pool/main/i/ipxe/ipxe-qemu_1.0.0+git-20131111.c3d1e78-2ubuntu1_all.deb Size: 506160 MD5sum: a9b184f7e6590ab8ba597faa254763a5 SHA1: 95e8756844307a67edc68163aecd3a545047c6cc SHA256: f3d152a2998f753567050330eb3d0e60b96bbdff3ee137d9eebab9073f7d20c9 Description: PXE boot firmware - ROM images for qemu Multi-Arch: foreign Homepage: http://ipxe.org/ Description-md5: 61c8bdd569b68d2eeeb8615a8b57f65e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: irda-utils Priority: optional Section: utils Installed-Size: 285 Maintainer: Ubuntu Core Developers Original-Maintainer: Alberto Gonzalez Iniesta Architecture: amd64 Version: 0.9.18-12ubuntu1 Replaces: irda-common, irda-tools Provides: irda-tools Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.12.0), libpci3 (>= 1:3.1.9-2), debconf (>= 0.5) | debconf-2.0, udev | makedev, kmod Pre-Depends: debconf | debconf-2.0 Recommends: openobex-apps, setserial Suggests: libgsmme1c102, liblinc1, obexftp Conflicts: irda-common, irda-tools Filename: pool/main/i/irda-utils/irda-utils_0.9.18-12ubuntu1_amd64.deb Size: 91400 MD5sum: 789757957914658cd42179d8b0f35058 SHA1: 568323341178e3c54de79930fd8425df59fc0e35 SHA256: 273830566bab29336d73d243610978758368a109282df5d292d533a4c06adb1d Description: IrDA management and handling utilities Homepage: http://irda.sourceforge.net Description-md5: dccf1c24ff86cb1061cf9d1d11729575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: irqbalance Priority: standard Section: utils Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 1.0.6-2 Depends: libc6 (>= 2.4), libcap-ng0, libglib2.0-0 (>= 2.28.0), libnuma1, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.1) Filename: pool/main/i/irqbalance/irqbalance_1.0.6-2_amd64.deb Size: 30708 MD5sum: fd3796915938717c66b748638e7e325f SHA1: 7f99a4ddee3e2d992840208de5ef7333507298e2 SHA256: 72e690c66d21b35c1c1f190cb88f6a3eb388fee81421ec1c0d4ae4b60eeada2b Description: Daemon to balance interrupts for SMP systems Homepage: http://code.google.com/p/irqbalance/ Description-md5: accb4bce861e7ccb0e8eb0424467337d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: irssi Priority: optional Section: net Installed-Size: 2336 Maintainer: Ubuntu Developers Original-Maintainer: Gerfried Fuchs Architecture: amd64 Version: 0.8.15-5ubuntu3 Depends: libc6 (>= 2.15), libglib2.0-0 (>= 2.35.9), libperl5.18 (>= 5.18.1), libssl1.0.0 (>= 1.0.0), libtinfo5, perl (>= 5.18.1-4), perlapi-5.18.1, perl-base (>= 5.8.1) Suggests: irssi-scripts Filename: pool/main/i/irssi/irssi_0.8.15-5ubuntu3_amd64.deb Size: 884788 MD5sum: a024d3cff577657b3bd71e6490a1293b SHA1: 88a0932e3a2b31567985168d1388b54e50947531 SHA256: a7501b332403ff2bec348aab316449a1277a95ce560a9632345adee9dbf4a3e5 Description: terminal based IRC client Homepage: http://irssi.org/ Description-md5: f222734d8d370d75bf620389270c0ade Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: irssi-dev Priority: optional Section: net Installed-Size: 472 Maintainer: Ubuntu Developers Original-Maintainer: Gerfried Fuchs Architecture: amd64 Source: irssi Version: 0.8.15-5ubuntu3 Depends: irssi Filename: pool/main/i/irssi/irssi-dev_0.8.15-5ubuntu3_amd64.deb Size: 47272 MD5sum: 0d0688bef424080bb4de3150d6caf52f SHA1: 38bd135bb90609c8446ee4ce2ccf3cfebc090c69 SHA256: 1d744b15f45c4c34186e190080a2d41c63589cae6d160835423fd2a8fdf0285f Description: terminal based IRC client - development files Homepage: http://irssi.org/ Description-md5: 48f02dc7e9ee186db7d00968bfcaaf49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: isc-dhcp-client Priority: important Section: net Installed-Size: 1823 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: amd64 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Replaces: dhcp3-client Provides: dhcp-client, dhcp3-client Depends: libc6 (>= 2.15), debianutils (>= 2.8.2), isc-dhcp-common (= 4.2.4-7ubuntu12), iproute2 Suggests: resolvconf, avahi-autoipd, apparmor Conflicts: dhcp-client (<< 3.0), ifupdown (<< 0.6.8+nmu3), resolvconf (<= 1.45), samba-common (<< 3.0.0beta1-2) Filename: pool/main/i/isc-dhcp/isc-dhcp-client_4.2.4-7ubuntu12_amd64.deb Size: 640536 MD5sum: 4c428d216f716d1c46146db5207f14cd SHA1: d5c7d62e55cff70cbd832cff04a0d497ec573950 SHA256: 3968ee764beab796a25925d56d2b0189346173765ca370cdb2505c3674650fdd Description: ISC DHCP client Description-md5: 7d48c04c85ad9235ca7273ba8da51bbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: isc-dhcp-client-dbg Priority: extra Section: debug Installed-Size: 6228 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: amd64 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Depends: debianutils (>= 2.8.2), isc-dhcp-common (= 4.2.4-7ubuntu12) Suggests: resolvconf, avahi-autoipd Conflicts: dhcp-client (<< 3.0), samba-common (<< 3.0.0beta1-2) Filename: pool/main/i/isc-dhcp/isc-dhcp-client-dbg_4.2.4-7ubuntu12_amd64.deb Size: 1455138 MD5sum: af67788c87ef1d45a431173caf47ba2d SHA1: 52d02b6f0c7e9de04d49ba770253251bc0028d6d SHA256: da309cbe64ef2f19ba33e495aaebaea3a5cb2426d7cd14906878cc2c28c299af Description: ISC DHCP client (debugging symbols) Description-md5: 65f8c2f2d81ecd053c5bca54e46ec524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: isc-dhcp-common Priority: important Section: net Installed-Size: 1768 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: amd64 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Replaces: dhcp3-common Provides: dhcp3-common Depends: libc6 (>= 2.15), debianutils (>= 2.8.2) Filename: pool/main/i/isc-dhcp/isc-dhcp-common_4.2.4-7ubuntu12_amd64.deb Size: 708240 MD5sum: 9aa0f214408b37844cf35db98703e841 SHA1: 8ff43d7d79652616f2d14e827101f2228ccc6da9 SHA256: b723b8eb94356f8b37837dcb3b77742b7d5bdf91a9cb19d1110b458992ce7ab1 Description: common files used by all the isc-dhcp* packages Description-md5: 5683d165d1bf7aa98dc09ae338bc059f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: isc-dhcp-dev Priority: optional Section: devel Installed-Size: 2413 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: amd64 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Replaces: dhcp3-dev Provides: dhcp3-dev Depends: libc6-dev Filename: pool/main/i/isc-dhcp/isc-dhcp-dev_4.2.4-7ubuntu12_amd64.deb Size: 380616 MD5sum: a9bafe4331b69263de2086f6d3affab6 SHA1: db7a3c39825a47e2920a077e3fa6ef483281e3ae SHA256: 2d4c9b0bb8b5f4a38db415bb8a793a4ab469a005de48622b5d1c2680b4a4c8ac Description: API for accessing and modifying the DHCP server and client state Description-md5: 629de35b97db45a08414abd22d153d05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: isc-dhcp-relay-dbg Priority: extra Section: debug Installed-Size: 5988 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: amd64 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Depends: debianutils (>= 2.8.2), isc-dhcp-common (= 4.2.4-7ubuntu12) Conflicts: dhcp-relay Filename: pool/main/i/isc-dhcp/isc-dhcp-relay-dbg_4.2.4-7ubuntu12_amd64.deb Size: 1391106 MD5sum: 8837346f1b904abf5d0f7a2557b6b549 SHA1: 13969ab50678902bb9951b519607cc48269785bc SHA256: 59a52978f92fd549c0e7b24a61bc3b70c84ff782500e2d1bcfa0f79d3c9e5120 Description: DHCP relay daemon (debugging symbols) Description-md5: 02902cd378278d57c30d249e39a858b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: isc-dhcp-server Priority: optional Section: net Installed-Size: 2088 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: amd64 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Replaces: dhcp3-server Provides: dhcp3-server Depends: debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.15), debianutils (>= 2.8.2), isc-dhcp-common (= 4.2.4-7ubuntu12), lsb-base, adduser Suggests: isc-dhcp-server-ldap, apparmor Conflicts: dhcp Filename: pool/main/i/isc-dhcp/isc-dhcp-server_4.2.4-7ubuntu12_amd64.deb Size: 761648 MD5sum: 52aab34fd68ae0435a3cf541f3e49018 SHA1: ac70bc9ca7d26980707311485be38e3eabf1e10c SHA256: eaf4daffb705cfe0cfa4f14b7fc759954bc9a4deb77b925107fb8c4180938b63 Description: ISC DHCP server for automatic IP address assignment Description-md5: 4f5d533c02fa72751acbaefe5e28258d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: isc-dhcp-server-dbg Priority: extra Section: debug Installed-Size: 7083 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: amd64 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Depends: debianutils (>= 2.8.2), isc-dhcp-common (= 4.2.4-7ubuntu12), lsb-base Suggests: isc-dhcp-server-ldap Conflicts: dhcp Filename: pool/main/i/isc-dhcp/isc-dhcp-server-dbg_4.2.4-7ubuntu12_amd64.deb Size: 1635860 MD5sum: e18925e9761d5725325843b238bf3eab SHA1: 9529cb4c0aa62dda5bef3f7ffecdf06f5ca15a80 SHA256: ce538587264dfc420e734fdb9fe21f81276edc99587e60846f98613bafee74e0 Description: ISC DHCP server for automatic IP address assignment (debug) Description-md5: b66d42f652cf79ebf5bf05f89e2126b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iso-codes Priority: standard Section: libs Installed-Size: 15207 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Quathamer Architecture: all Version: 3.52-1 Suggests: isoquery Filename: pool/main/i/iso-codes/iso-codes_3.52-1_all.deb Size: 2072544 MD5sum: 793218360e85540bc396352fcc3973cf SHA1: ceb6e1a25292af89d9fcf018eb5f6d5c36a716b9 SHA256: 811d9131a21a1e22fc8f978c7b751f19c9c9ef0253a0e1502373985375ec4f64 Description: ISO language, territory, currency, script codes and their translations Multi-Arch: foreign Homepage: http://pkg-isocodes.alioth.debian.org/ Description-md5: b58345a815d3102f83ba9b7d058c5dee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: isoquery Priority: optional Section: misc Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Quathamer Architecture: all Version: 1.7-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-lxml Recommends: iso-codes Filename: pool/main/i/isoquery/isoquery_1.7-1build1_all.deb Size: 20162 MD5sum: 31b39a8f956136cc66ce8ebdd383b962 SHA1: 7ef0d7ecb5e09a10b119ec20b6cefca748863127 SHA256: a0b2ebb6bc463548e1feccf9055e65a853dc7587aa777aa7c68333b184a69038 Description: Search and display various ISO codes (country, language, ...) Description-md5: 866b111a4e7daff346e02925b145017f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ispell Priority: optional Section: text Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: amd64 Version: 3.3.02-6 Depends: dictionaries-common, libc6 (>= 2.14), libtinfo5 Recommends: iamerican | ispell-dictionary, wamerican | wordlist Suggests: spell Breaks: iamerican (<= 3.1.20.0-9), ibritish (<= 3.1.20.0-9), ibulgarian (<= 3.0-12), iczech (<= 20040229-5), idanish (<= 1.6.25-1), iestonian (<= 1:20030606-12.1), ifinnish (<= 0.7-17.3), ifinnish-large (<= 0.7-17.3), ifrench (<= 1.4-25), ifrench-gut (<= 1:1.0-27), igaelic (<= 0.50-7), ihungarian (<= 0.99.4-2), iirish (<= 2.0-20), iitalian (<= 1:2.3-2), imanx (<= 0.50-8), inorwegian (<= 2.0.10-3.2), iogerman (<= 1:2-26), ipolish (<= 20100612-1), irussian (<= 0.99g5-8.1), iswedish (<= 1.4.5-2), iukrainian (<= 1.6.0-1) Filename: pool/main/i/ispell/ispell_3.3.02-6_amd64.deb Size: 163080 MD5sum: a8f9f00750acab82ced44ec959fa72d9 SHA1: 4242f95dbc2e83e649caa81992acdb0db80a9eaa SHA256: 07133a9c0997847945a4ec53d84da5d8ebf3f58db56c5d57c589eeafe7cb5004 Description: International Ispell (an interactive spelling corrector) Multi-Arch: foreign Homepage: http://www.lasr.cs.ucla.edu/geoff/ispell.html Description-md5: 577e95b1fdc6375f1bcda985b53bef21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: itstool Priority: extra Section: gnome Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: all Version: 2.0.2-2 Depends: python, python-libxml2 Filename: pool/main/i/itstool/itstool_2.0.2-2_all.deb Size: 19764 MD5sum: f1699d73115cecb3084da16428f5d697 SHA1: 570f451f8ad067f40261376d82f07726ef4a8bfa SHA256: bc4de7a780a5c3f7470d7198b1f96cab1aa50934b7c354e1f676fff1c9592f9c Description: tool for translating XML documents with PO files Homepage: http://itstool.org/ Description-md5: 9f2ec5e942fbd453418d12d2a39ade84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: ivy Priority: optional Section: libs Installed-Size: 1259 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.3.0-3 Depends: default-jre-headless | java2-runtime-headless Suggests: libjsch-java, libbcprov-java, libbcpg-java, ivy-doc, default-jre | java2-runtime Filename: pool/main/i/ivy/ivy_2.3.0-3_all.deb Size: 1107908 MD5sum: 6f5d1601a483cafdb6ecada50551dffa SHA1: 63f69b284d5b70dd2a18b7c78e72df7c5cd35268 SHA256: 53a34f3bdc1195a42dda05da73bca51052045ab2c6eb815cbf821e90f6d59d46 Description: agile dependency manager Homepage: http://ant.apache.org/ivy/ Description-md5: 0ab55554c371b847fd21b35c7c384d95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ivy-doc Priority: optional Section: doc Installed-Size: 12057 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ivy Version: 2.3.0-3 Depends: default-jdk-doc Filename: pool/main/i/ivy/ivy-doc_2.3.0-3_all.deb Size: 851624 MD5sum: 009b193b2ce34d4e6e390999d7ff3277 SHA1: 2b289899be661910f75b145ee2eafc611b75b2fb SHA256: 4fac1bc68a6899cea01e53944e0fae22f4535f61fea52256e032ba3f38c6a53e Description: agile dependency manager (documentation) Homepage: http://ant.apache.org/ivy/ Description-md5: 9cb552d087d4baa4a77179acd6a17c53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iw Priority: optional Section: net Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu wpasupplicant Maintainers Architecture: amd64 Version: 3.4-1 Replaces: aircrack-ng (<< 1:1.0~rc2-1) Depends: libc6 (>= 2.7), libnl-3-200 (>= 3.2.3), libnl-genl-3-200 (>= 3.2.3) Recommends: crda Breaks: aircrack-ng (<< 1:1.0~rc2-1) Filename: pool/main/i/iw/iw_3.4-1_amd64.deb Size: 51660 MD5sum: eede6190cb718a940f22a65e93ab77ee SHA1: 98f19080cea5f2babd53e6ef91e249d5d233124e SHA256: 6fd8d18c130c16ffc6a01b37480b6a6a1ac61fd7695d042409784463f5fc7fc7 Description: tool for configuring Linux wireless devices Multi-Arch: foreign Homepage: http://wireless.kernel.org/en/users/Documentation/iw Description-md5: 4c6223f7a0c9b6124876da23f91821d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: jade Priority: optional Section: text Installed-Size: 867 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: amd64 Version: 1.2.1-47.3ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libsp1c2 (>= 1.3.4-1.2.1-44), libstdc++6 (>= 4.1.1), sgml-base (>= 1.26+nmu2) Suggests: doc-base, sgml-data, sp Filename: pool/main/j/jade/jade_1.2.1-47.3ubuntu1_amd64.deb Size: 223090 MD5sum: 938e4d1d46850e283a59320dc5d3817b SHA1: 3f3843188af86d06dc5147786a6195f4ce9cb10c SHA256: 5af3514a6a46281d0b6b9a9412afdf747dc49675bf8ee1ab79cbb63e782f89a1 Description: James Clark's DSSSL Engine Multi-Arch: foreign Description-md5: fa4940aa399a19ee92a71f4060910110 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: jadetex Priority: optional Section: tex Installed-Size: 683 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Task Force Architecture: all Version: 3.13-14 Depends: dpkg (>= 1.14.18), tex-common (>= 3), debianutils (>= 1.7), texlive-latex-base, texlive-fonts-recommended, texlive-latex-recommended, texlive-generic-recommended, tipa Recommends: openjade1.3 | openjade | jade (>= 1.2-1) Suggests: docbook-dsssl Conflicts: cslatex, csplain, tetex-base (<= 2.0.2a-2) Filename: pool/main/j/jadetex/jadetex_3.13-14_all.deb Size: 240156 MD5sum: 452566914ef23f6d5996dfbcc66e38bb SHA1: ed23429ef74cbf2541096219823a485629a30088 SHA256: 5bc1c8ede1d3024eb03a3acdcd2e3085b1c43594b3a34c0ea9a6352e9b70a9fd Description: generator of printable output from SGML or XML using Jade Homepage: http://jadetex.sourceforge.net/ Description-md5: b38d27947c8b7139909f3a0eda619d0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: jasper Priority: extra Section: misc Installed-Size: 79 Maintainer: Canonical ARM Architecture: all Source: jasper-initramfs Version: 0.69 Depends: initramfs-tools, busybox-initramfs, util-linux (>= 2.17.2-0), uuid-runtime, e2fsprogs (>= 1.41.11-1), coreutils (>= 7.4-2), oem-config, dosfstools, u-boot-tools | uboot-mkimage, bc, app-install-data Filename: pool/main/j/jasper-initramfs/jasper_0.69_all.deb Size: 8420 MD5sum: 6e06a8dfa42963bc7f122eed33744580 SHA1: 12301497039a7165ad537b4acee72c56e8d1b9f2 SHA256: c4fc496b5144f171e1cd9ceb312b9de9d0b823f3076a432c5c6c6e5f90be416d Description: Configure a preinstalled ext2/3 system image Description-md5: 903e60d35a4d8b5516793d8f0e202ab9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: java-common Priority: optional Section: misc Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: all Version: 0.51 Suggests: default-jre, equivs Filename: pool/main/j/java-common/java-common_0.51_all.deb Size: 129966 MD5sum: c8352e7908b8a260b2657f9b80c08031 SHA1: b65f54d0115be1ff96cc26027376ad70f7807dff SHA256: b8fe15437858f758f8d80a20682ff29de0940669bf64ee68ffebdc9cbfcdaad8 Description: Base of all Java packages Multi-Arch: foreign Description-md5: 96d3cc2a3d292493a37a344e5f38de0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: java-wrappers Priority: optional Section: misc Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 0.1.27 Depends: unzip Filename: pool/main/j/java-wrappers/java-wrappers_0.1.27_all.deb Size: 9908 MD5sum: 83d30f1c7f70b7a6e5d9ab82fcafd64c SHA1: fc55a890a798890f2e4e3cebef21e34fae92f951 SHA256: 02b0f4cc5c4ec8b1e7669191834958fcdb189a092d12cfc5f5b27868c1f9e8c0 Description: wrappers for java executables Description-md5: e86d708e5e3f275f38cfa60fd19637c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: javacc Priority: optional Section: devel Installed-Size: 380 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 5.0-5 Depends: default-jre-headless | java1-runtime-headless | java2-runtime-headless Suggests: javacc-doc Filename: pool/main/j/javacc/javacc_5.0-5_all.deb Size: 284562 MD5sum: c825ef668f2da4628a88e8a7115fc6f8 SHA1: 48ebae1b8237af6c94a736d87dfda86016a59233 SHA256: ba9b4d132e13adff01bfff1043eb878ba37e2c90a25d9b9c784c5728d330fdef Description: Parser generator for use with Java Homepage: http://javacc.java.net Description-md5: 61505d89a764133cbd782b370c93fe98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: javahelper Priority: optional Section: devel Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: javatools Version: 0.45ubuntu1 Depends: debhelper, devscripts, bsdmainutils, dpkg-dev, dctrl-tools, libarchive-zip-perl (>= 1.30-6~) Suggests: cvs, gawk, tofrodos Filename: pool/main/j/javatools/javahelper_0.45ubuntu1_all.deb Size: 77456 MD5sum: e1c24c40f7c3535502369a15f45459e8 SHA1: c0d9ba12444c61e171b765f7ef6fc55da387547f SHA256: ab3cdafab7aa4954538c6c658227670929552b1e068af0f168f000519fd8f17e Description: Helper scripts for packaging Java programs Description-md5: d45b9daf1c52a4839fc72a1c8d80017d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: javascript-common Priority: optional Section: web Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Version: 11 Suggests: apache2 (>= 2.4.6~) | lighttpd | httpd Filename: pool/main/j/javascript-common/javascript-common_11_all.deb Size: 6066 MD5sum: 97257c1c7151131cd487ee09bbb1b653 SHA1: 0442d0d4975c8ed6be5811fbd4508eef2ced1b8a SHA256: 83d6f46fb68dfb160de8a9f2a28349fa944d3e5c526888cbbf02ef5073933d3c Description: Base support for JavaScript library packages Description-md5: 1c8d846310501114a6acd24c4e760036 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-photography Package: jflex Priority: optional Section: devel Installed-Size: 1395 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.4.3-3 Depends: default-jre-headless | java1-runtime | java2-runtime Filename: pool/main/j/jflex/jflex_1.4.3-3_all.deb Size: 1065894 MD5sum: e3b50048e62ba5118796f9add7e146c7 SHA1: ce8b26d886a283c3edbf667cb6225fb8620d827c SHA256: afcc66596a15348816e2ddb3fbf8cdb13c6ccf9ef22f74388b86084be5caf5a2 Description: lexical analyzer generator for Java Enhances: ant-optional Homepage: http://www.jflex.de/ Description-md5: 8cfe78ca20814658bf3751fbef74366b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: jfsutils Priority: optional Section: admin Installed-Size: 1068 Maintainer: Ubuntu Developers Original-Maintainer: Stefan Hornburg (Racke) Architecture: amd64 Version: 1.1.15-2.1 Depends: libc6 (>= 2.14), libuuid1 (>= 2.16) Filename: pool/main/j/jfsutils/jfsutils_1.1.15-2.1_amd64.deb Size: 271600 MD5sum: dcf3fe7dc13dadc003e317eea059a711 SHA1: 5cb0ce8c55ff0d66d414e0ccf1c0d9d89c56fc22 SHA256: 10a9e390f93052425cbdaa560bacc4dedd53d6d75eef129be189ab6efc19c340 Description: utilities for managing the JFS filesystem Homepage: http://jfs.sourceforge.net/ Description-md5: a5f4fa74fc33c6f6eaa400813f226b20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: jigit Priority: extra Section: utils Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: amd64 Version: 1.19-2 Depends: libbz2-1.0, libc6 (>= 2.14), zlib1g (>= 1:1.2.3.3), libio-compress-perl Recommends: wget Filename: pool/main/j/jigit/jigit_1.19-2_amd64.deb Size: 31492 MD5sum: adfc32ca6d588d082f44c9d0d3b83371 SHA1: 94230c487c45db28283ca4e4a11ec98ae54d24bd SHA256: a98e6fe0b2446d7127481787cb3a57fa1ebc6efca63daa0e5ff1d572d00abfd7 Description: tools for working with jigdo files Homepage: http://www.einval.com/~steve/software/JTE/ Description-md5: d1cccff5286555330cb70d9bdd9e62ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: jlex Priority: optional Section: devel Installed-Size: 152 Maintainer: Colin Watson Architecture: all Version: 1.2.6-7 Replaces: javalex Depends: default-jre | java5-runtime | java6-runtime | java7-runtime Conflicts: javalex Filename: pool/main/j/jlex/jlex_1.2.6-7_all.deb Size: 67476 MD5sum: 50cd2bc9de8912ea72f8a69593fced3f SHA1: 437ac88d3b8009871627784491a8b2f755edfc85 SHA256: fe11d04c5ca9999c2ccbd080bad5e5d6e25ada94a54cea516c70d90a1dc8259f Description: Lex-style lexical analyser generator for Java Multi-Arch: foreign Homepage: http://www.cs.princeton.edu/~appel/modern/java/JLex/ Description-md5: 42f9e8c7f031dc6088bd557e08ba56b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: john Priority: optional Section: admin Installed-Size: 441 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: amd64 Version: 1.8.0-1 Depends: libc6 (>= 2.14), john-data (= 1.8.0-1) Suggests: wordlist Filename: pool/main/j/john/john_1.8.0-1_amd64.deb Size: 209036 MD5sum: 4b5a076504f8d69c67176c31dcdede3c SHA1: ea6f9aa04bcb6a82fac7014b9892f798ab8bb417 SHA256: 361adb8b4c38e7449c6725e3bfa220287b671d6f223e89b994e52191ad44d5dd Description: active password cracking tool Homepage: http://www.openwall.com/john/ Description-md5: 2ffcaf0da9fa0a8266bfe4aa906d4742 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: john-data Priority: optional Section: admin Installed-Size: 7265 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: all Source: john Version: 1.8.0-1 Breaks: john (<= 1.7.2-1) Filename: pool/main/j/john/john-data_1.8.0-1_all.deb Size: 5195992 MD5sum: 12c553e51f25d56ad7527bd26ce7d772 SHA1: 66627f4450ed3e9c0655235ef0d4669246042670 SHA256: 381ef55ea3684c5e85bf6f9970afa46c28580eef322b4f6d37c75cfea6d653cd Description: active password cracking tool - character sets Enhances: john Homepage: http://www.openwall.com/john/ Description-md5: a3317ed0e06a264c46ef425d9336ae80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: joyent-mdata-client Priority: optional Section: admin Installed-Size: 123 Maintainer: Ben Howard Architecture: amd64 Version: 0.0.1-0ubuntu2 Depends: libc6 (>= 2.4) Filename: pool/main/j/joyent-mdata-client/joyent-mdata-client_0.0.1-0ubuntu2_amd64.deb Size: 22624 MD5sum: 54fd53cfb3d143bfff25e99fe4e27944 SHA1: e80a60c093ff08a3884a324f085f97d3e0c7eded SHA256: 42131b9574fc692ef3c4467cfd16081c6ef5c8782edf6be7f048d0e5bae43af8 Description: metadata client for use on SmartOS hyper-visor Homepage: https://github.com/joyent/mdata-client Description-md5: 78fe19782c892d527d85becaf017e2ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: junit Priority: optional Section: devel Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 3.8.2-8build1 Recommends: default-jre (>= 1.4) | default-jre-headless (>= 1.4) | java2-runtime | java2-runtime-headless Suggests: junit-doc Filename: pool/main/j/junit/junit_3.8.2-8build1_all.deb Size: 106136 MD5sum: d02751e894a869d29c58bd00df24ae8e SHA1: da382b110af5beb8da3d1dd507c8778744b4725f SHA256: 0faae5b5c8d0ec9cd1c8b3004a2adaf22fcfa76853e89a9545eb2f8e2e50fb85 Description: Automated testing framework for Java Enhances: ant-optional Homepage: http://www.junit.org Description-md5: 4656faacf15a15de9e0ff0fcff36bb0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: junit-doc Priority: optional Section: devel Installed-Size: 1087 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: junit Version: 3.8.2-8build1 Suggests: junit Filename: pool/main/j/junit/junit-doc_3.8.2-8build1_all.deb Size: 113154 MD5sum: aa780fc5c19540427095faef88e95559 SHA1: 111affdae32b4460c38cf852e78f4521d0de3f38 SHA256: 72208163beaf50e592e5627280e288602ba2fade36bfec1d0e12cd827c4a39f6 Description: Document for JUnit Homepage: http://www.junit.org Description-md5: dafa4198cbea8c6e6ef9d5bfc82954ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: junit4 Priority: optional Section: devel Installed-Size: 310 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 4.11-2 Depends: default-jre-headless | java5-runtime-headless, libhamcrest-java Filename: pool/main/j/junit4/junit4_4.11-2_all.deb Size: 227210 MD5sum: 6c2deb61c467b8bdc5d569837b375022 SHA1: 0cb25c0c51b99471a341d7cb363dcd3b0d1bc68c SHA256: 4e965b4edda06cf994d4aa1311266eeae3f19c6ff7630ff4b366b763cfe756ff Description: JUnit regression test framework for Java Homepage: http://www.junit.org/ Description-md5: 6e472ef1eb53b7098f32665495dd5b52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: junit4-doc Priority: optional Section: doc Installed-Size: 2390 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: junit4 Version: 4.11-2 Recommends: default-jdk-doc, libhamcrest-java-doc Suggests: junit4 Filename: pool/main/j/junit4/junit4-doc_4.11-2_all.deb Size: 312920 MD5sum: 9d63182a2292a5e359d5644db3707253 SHA1: bffe5a34a1889b34308bf92cafc8eb11bf1c59e6 SHA256: ab514b1b5373ab165d3d25d804798493adc3f81c6e99d4b80162beb569da7b4e Description: JUnit regression test framework for Java - documentation Homepage: http://www.junit.org/ Description-md5: 76c2a881e3392afd1eddd749d9d0edd7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: kbd Priority: important Section: utils Installed-Size: 1032 Maintainer: Ubuntu Developers Original-Maintainer: Console utilities maintainers Architecture: amd64 Version: 1.15.5-1ubuntu1 Provides: console-utilities Depends: libc6 (>= 2.14), console-setup, lsb-base (>= 3.0-10), initramfs-tools Pre-Depends: dpkg (>= 1.15.7.2) Conflicts: console-utilities Filename: pool/main/k/kbd/kbd_1.15.5-1ubuntu1_amd64.deb Size: 253934 MD5sum: 9c67184b8e13bc39cd08a3045d041cae SHA1: 46a6e7f02ef2722d3e42845ab5b9682ce2dfea1c SHA256: 17b7d3ada3e39bcb566c5cfd38d8b8c54e43f881d7b0721ab8a6c4d3323d24c7 Description: Linux console font and keytable utilities Description-md5: cd8bb3115cf19677906ec372cf3956da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: kdelibs-bin Priority: optional Section: libs Installed-Size: 914 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.15), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkjsapi4 (= 4:4.13.0-0ubuntu1), libkjsembed4 (= 4:4.13.0-0ubuntu1), libkrosscore4 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libnepomukutils4 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libsoprano4 (>= 2.7.56), libstdc++6 (>= 4.4.0), libx11-6 Conflicts: kdelibs4c2a, kjscmd Filename: pool/main/k/kde4libs/kdelibs-bin_4.13.0-0ubuntu1_amd64.deb Size: 199022 MD5sum: bf891dd39bac6dca3250f313fe424502 SHA1: c29c868c4d64dba722d1e30d8a31932ef3fc6388 SHA256: 417aca9147059577bf81d727133bf51db5582907c9708e77277324d2ae6bd95b Description: core executables for KDE Applications Homepage: http://www.kde.org/ Description-md5: 8c1a7b51c921c425f6300691dd629da4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: kdelibs5-data Priority: optional Section: libs Installed-Size: 7492 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: kde4libs Version: 4:4.13.0-0ubuntu1 Replaces: kdebase-runtime-data (<< 4:4.5.85), libplasma2 Depends: perl, hicolor-icon-theme Breaks: kdebase-runtime-data (<< 4:4.5.85), libplasma2 Filename: pool/main/k/kde4libs/kdelibs5-data_4.13.0-0ubuntu1_all.deb Size: 2590876 MD5sum: 3de03402bf1ac8b0b800a30a86594edd SHA1: 1de1df5cca9f5174dd6ceb3dc2fc86a36c870148 SHA256: 53695be293f859bd404276b758929c45ae88555fd15c54e0986ddd6c95d91bff Description: core shared data for all KDE Applications Homepage: http://www.kde.org/ Description-md5: 2bd024f64244b4a4f31312afcf299c8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: kdelibs5-dbg Priority: extra Section: libdevel Installed-Size: 375603 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libkdecore5 (= 4:4.13.0-0ubuntu1), libqt4-dbg (>= 4:4.6), libc6-dbg Recommends: libkdeui5 (= 4:4.13.0-0ubuntu1), libkpty4 (= 4:4.13.0-0ubuntu1), libkdesu5 (= 4:4.13.0-0ubuntu1), libkjsapi4 (= 4:4.13.0-0ubuntu1), libkjsembed4 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkntlm4 (= 4:4.13.0-0ubuntu1), libsolid4 (= 4:4.13.0-0ubuntu1), libkde3support4 (= 4:4.13.0-0ubuntu1), libkfile4 (= 4:4.13.0-0ubuntu1), libknewstuff2-4 (= 4:4.13.0-0ubuntu1), libknewstuff3-4 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libkutils4 (= 4:4.13.0-0ubuntu1), libthreadweaver4 (= 4:4.13.0-0ubuntu1), libkhtml5 (= 4:4.13.0-0ubuntu1), libkimproxy4 (= 4:4.13.0-0ubuntu1), libkmediaplayer4 (= 4:4.13.0-0ubuntu1), libktexteditor4 (= 4:4.13.0-0ubuntu1), libknotifyconfig4 (= 4:4.13.0-0ubuntu1), libkdnssd4 (= 4:4.13.0-0ubuntu1), libkrosscore4 (= 4:4.13.0-0ubuntu1), libkrossui4 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libnepomukutils4 (= 4:4.13.0-0ubuntu1), libnepomukquery4a (= 4:4.13.0-0ubuntu1), libplasma3 (= 4:4.13.0-0ubuntu1), libkunitconversion4 (= 4:4.13.0-0ubuntu1), libkdewebkit5 (= 4:4.13.0-0ubuntu1), libkcmutils4 (= 4:4.13.0-0ubuntu1), libkemoticons4 (= 4:4.13.0-0ubuntu1), libkidletime4 (= 4:4.13.0-0ubuntu1), libkprintutils4 (= 4:4.13.0-0ubuntu1), libkdeclarative5 (= 4:4.13.0-0ubuntu1), kdelibs-bin (= 4:4.13.0-0ubuntu1) Filename: pool/main/k/kde4libs/kdelibs5-dbg_4.13.0-0ubuntu1_amd64.deb Size: 80816082 MD5sum: 2de8773d43aab9e7fd7c92221c190efe SHA1: c67204b13a3ccb387bbbcad6c418de566aed9f56 SHA256: f4c0affb022b19732cd722aca337816a3d231afe31b53073294f8cd839539d80 Description: debugging symbols for the KDE Development Platform libraries Homepage: http://www.kde.org/ Description-md5: 5267f8d9119e5ba93ffb45270c660c6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: kdelibs5-dev Priority: optional Section: libdevel Installed-Size: 8868 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Replaces: kdelibs5-data (<< 4:4.9.2-0ubuntu2), kdelibs5-experimental-dev (<< 4:4.8.80~), libplasma-dev (<< 4:4.1.96), pkg-kde-tools (<< 0.15.3ubuntu5) Depends: libc6 (>= 2.14), libkde3support4 (= 4:4.13.0-0ubuntu1), libkdecore5 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkpty4 (= 4:4.13.0-0ubuntu1), libkdesu5 (= 4:4.13.0-0ubuntu1), libkjsapi4 (= 4:4.13.0-0ubuntu1), libkjsembed4 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkntlm4 (= 4:4.13.0-0ubuntu1), libsolid4 (= 4:4.13.0-0ubuntu1), libkfile4 (= 4:4.13.0-0ubuntu1), libknewstuff2-4 (= 4:4.13.0-0ubuntu1), libknewstuff3-4 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libkutils4 (= 4:4.13.0-0ubuntu1), libthreadweaver4 (= 4:4.13.0-0ubuntu1), libkhtml5 (= 4:4.13.0-0ubuntu1), libkimproxy4 (= 4:4.13.0-0ubuntu1), libkmediaplayer4 (= 4:4.13.0-0ubuntu1), libktexteditor4 (= 4:4.13.0-0ubuntu1), libknotifyconfig4 (= 4:4.13.0-0ubuntu1), libkdnssd4 (= 4:4.13.0-0ubuntu1), libkrosscore4 (= 4:4.13.0-0ubuntu1), libkrossui4 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libnepomukutils4 (= 4:4.13.0-0ubuntu1), libnepomukquery4a (= 4:4.13.0-0ubuntu1), libplasma3 (= 4:4.13.0-0ubuntu1), libkunitconversion4 (= 4:4.13.0-0ubuntu1), libkdewebkit5 (= 4:4.13.0-0ubuntu1), libkcmutils4 (= 4:4.13.0-0ubuntu1), libkemoticons4 (= 4:4.13.0-0ubuntu1), libkidletime4 (= 4:4.13.0-0ubuntu1), libkprintutils4 (= 4:4.13.0-0ubuntu1), libkdeclarative5 (= 4:4.13.0-0ubuntu1), kdoctools (= 4:4.13.0-0ubuntu1), kdelibs-bin (= 4:4.13.0-0ubuntu1), automoc (>= 1.0~version-0.9.88), libqt4-dev (>= 4:4.8.0), libsoprano-dev (>= 2.7.56), libphonon-dev (>= 4:4.6.0really4.4.3) Recommends: libqt4-opengl-dev (>= 4:4.7.0) Conflicts: kdelibs4-dev, libkjsembed-dev Breaks: kdelibs5-data (<< 4:4.9.2-0ubuntu2), kdelibs5-experimental-dev (<< 4:4.8.80~), libplasma-dev (<< 4:4.1.96), pkg-kde-tools (<< 0.15.3ubuntu5) Filename: pool/main/k/kde4libs/kdelibs5-dev_4.13.0-0ubuntu1_amd64.deb Size: 1411602 MD5sum: dd86a103d12a4c6a2e8af26a308ed818 SHA1: 8ef82d47072cef3241cf93b5d53429549e20ede4 SHA256: 7f2a6ae0781dc6b97e93c9e9d5ae1556eb61a104c9e9aa3abe32c2378268fb57 Description: development files for the KDE Development Platform libraries Homepage: http://www.kde.org/ Description-md5: 4143b0754ef485c998c2c10e78ae60ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: kdoctools Priority: optional Section: libs Installed-Size: 2055 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), docbook-xml, docbook-xsl, libxml2-utils Filename: pool/main/k/kde4libs/kdoctools_4.13.0-0ubuntu1_amd64.deb Size: 172048 MD5sum: 83c4d6a23aafca09a617e4631f9178eb SHA1: e157fea55bad79ad7aa63ec303d5ef8f83e1be42 SHA256: dab1640196a0291046dacba1e37e88530eb071bb2e9e32dfa478611dc0769fdb Description: various tools for accessing application documentation Homepage: http://www.kde.org/ Description-md5: 238d6e603fc4c3e7e34babe8e5e78683 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: kdump-tools Priority: optional Section: devel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: John Wright Architecture: all Source: makedumpfile Version: 1.5.5-2ubuntu1 Depends: makedumpfile, kexec-tools Filename: pool/main/m/makedumpfile/kdump-tools_1.5.5-2ubuntu1_all.deb Size: 12726 MD5sum: ae8e48d55d7de4c6d448d3c564e5e8c5 SHA1: b1567c318849a52fa30bf55cd0f00119197eb35c SHA256: 1cc2a70435e62e8215cecb47bdd6ccd4f51aeeb8fa400c931f4e26f60c3ed1fc Description: scripts and tools for automating kdump (Linux crash dumps) Description-md5: e4c630411cca5f22a32a48bd81b16449 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: keepalived Priority: optional Section: admin Installed-Size: 412 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: amd64 Version: 1:1.2.7-1ubuntu1 Depends: iproute, ipvsadm, libc6 (>= 2.15), libnl-3-200 (>= 3.2.16), libnl-genl-3-200 (>= 3.2.16), libpopt0 (>= 1.14), libsnmp30 (>= 5.7.2~dfsg), libssl1.0.0 (>= 1.0.0) Filename: pool/main/k/keepalived/keepalived_1.2.7-1ubuntu1_amd64.deb Size: 154638 MD5sum: 9ddaa824b2a8f690613aaa42855f827f SHA1: 2f2e38276e91187a758a64db63f259c7977d3ce6 SHA256: 87ef8b1d18f444d813c2d486b1fa2834f4c8a7ac70282365f61f6e98e93d28ad Description: Failover and monitoring daemon for LVS clusters Description-md5: e2d2506352721e77c2c351de4714ddd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: kernel-wedge Priority: optional Section: utils Installed-Size: 125 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Version: 2.87ubuntu1 Depends: debhelper (>= 9), make Filename: pool/main/k/kernel-wedge/kernel-wedge_2.87ubuntu1_all.deb Size: 21924 MD5sum: 8ff0a0d1d51a288b5b792821db99066f SHA1: b401b5bd69eebc1e78844b91999050bc40ddbdc7 SHA256: 799412aaf09338fa833966184484fa786f83318f03876e10f696882d3adb810c Description: udeb package builder for Debian-Installer Description-md5: fb028eb3928d8d0a511055c3e1f6fab8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: kerneloops-daemon Priority: optional Section: utils Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: kerneloops Version: 0.12+git20090217-3ubuntu8 Replaces: kerneloops (<< 0.12+git20090217-2) Depends: libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.2), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.14.0), lsb-base (>= 3.2-14), adduser Recommends: apport Breaks: kerneloops (<< 0.12+git20090217-2) Filename: pool/main/k/kerneloops/kerneloops-daemon_0.12+git20090217-3ubuntu8_amd64.deb Size: 18532 MD5sum: e0d34dad7635ffc2ea52f32e2a457abf SHA1: 3e90dd622bb6a96aea8b421a45404d3704149453 SHA256: be9513163b44ad8540c7ca925ffea5b64eea860e595c3af093822b726a403870 Description: kernel oops tracker Homepage: http://www.kerneloops.org/ Description-md5: 330bcb97ef14d708a3f5db273fe5cd73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: kexec-tools Priority: optional Section: admin Installed-Size: 291 Maintainer: Ubuntu Developers Original-Maintainer: Khalid Aziz Architecture: amd64 Version: 1:2.0.6-0ubuntu2 Depends: libc6 (>= 2.14), debconf (>= 0.5) | debconf-2.0, debconf Filename: pool/main/k/kexec-tools/kexec-tools_2.0.6-0ubuntu2_amd64.deb Size: 73944 MD5sum: e3e66c74d8730f550086ab2ee9b681db SHA1: 4f6b8c8fabb173690c32d66ea0f4d28a2025e50a SHA256: 670466b039f2b0b779df2de9bc3f0d5b882a44a5ad4e6c41fcb6c612cff27fa4 Description: tools to support fast kexec reboots Homepage: http://kernel.org/pub/linux/utils/kernel/kexec/ Description-md5: 8d39a422632d6a4c4a9ed06e009b2673 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: keyboard-configuration Priority: important Section: utils Installed-Size: 2304 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: console-setup Version: 1.70ubuntu8 Replaces: console-setup (<< 1.47), console-setup-mini (<< 1.47) Depends: debconf (>= 1.5.34), liblocale-gettext-perl Conflicts: console-setup (<< 1.47), console-setup-mini (<< 1.47) Filename: pool/main/c/console-setup/keyboard-configuration_1.70ubuntu8_all.deb Size: 555622 MD5sum: 7bf4385a6e3be4bf3549ca06c79977ab SHA1: 8cad9803d396354edc741443cda94840fb2cee20 SHA256: 997ddef05a1f2afe5eb96289a526bef665157e7fc481a77215bbf67277ae47ff Description: system-wide keyboard preferences Description-md5: 85ee5b58c8d635ba9041b52f81058494 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: keymapper Priority: optional Section: utils Installed-Size: 193 Maintainer: Colin Watson Architecture: all Version: 0.5.3-10.1build2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), xkb-data | xkeyboard-config, yapps2-runtime (>= 2.1.1-17) Suggests: graphviz Filename: pool/main/k/keymapper/keymapper_0.5.3-10.1build2_all.deb Size: 38220 MD5sum: ea6f277ffd74c894d8c1210a0061804c SHA1: 11820054b36a5de4972c7dc16f52bb9979d8fcf2 SHA256: 1d8ef2c94e151df53d22654141422f98b0b77297477dc86ee99e53f69eff04a0 Description: Keyboard map decision tree builder and interpreter Description-md5: bbe579d785b279437415488f97281034 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: keystone Priority: extra Section: python Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Monty Taylor Architecture: all Version: 1:2014.1-0ubuntu1 Depends: adduser, python-keystone (= 1:2014.1-0ubuntu1), ssl-cert (>= 1.0.12), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/k/keystone/keystone_2014.1-0ubuntu1_all.deb Size: 24038 MD5sum: 97e8341601e1ea21ad1657f66471c98d SHA1: 552d99b3f1c35a599116239f5414361dd3b2c53d SHA256: 0480fd64f158ed3abcb580f6107f5392618fc1dd566f09d89de47b3833202307 Description: OpenStack identity service - Daemons Homepage: http://launchpad.net/keystone Description-md5: 27421a6db50f80b519e733aec71dae10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: keystone-doc Priority: extra Section: doc Installed-Size: 2550 Maintainer: Ubuntu Developers Original-Maintainer: Monty Taylor Architecture: all Source: keystone Version: 1:2014.1-0ubuntu1 Depends: libjs-jquery Filename: pool/main/k/keystone/keystone-doc_2014.1-0ubuntu1_all.deb Size: 854566 MD5sum: 7f8fff7e16265e3eb761c226803aea35 SHA1: 31e4e4e4c1b04484197ed481a47cccfa79673012 SHA256: 1b35d866d7da77e7b6e5c9419e5d5c72596b2a40dafe2146f6ff96cf41feae73 Description: OpenStack identity service - Documentation Homepage: http://launchpad.net/keystone Description-md5: 42b26822f99c12d16268512a33f6dfd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: keyutils Priority: optional Section: misc Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: amd64 Version: 1.5.6-1 Depends: libc6 (>= 2.15), libkeyutils1 Filename: pool/main/k/keyutils/keyutils_1.5.6-1_amd64.deb Size: 33588 MD5sum: a49da8cb9cc16bdaf1ef8b205bf99d2e SHA1: 4621959d695309af5b56c37a201ca234183211bb SHA256: e7cae8bbf851e3e36052950cf642e1c0fcc3324aebe20cb8dbd72f40e173aae7 Description: Linux Key Management Utilities Homepage: http://people.redhat.com/~dhowells/keyutils/ Description-md5: 2d8745863e4f147ac2e1dded0b9fa058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, samba-server, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: keyutils-dbg Priority: extra Section: devel Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: amd64 Source: keyutils Version: 1.5.6-1 Depends: keyutils (= 1.5.6-1), libkeyutils1 (= 1.5.6-1), libkeyutils-dev (= 1.5.6-1) Filename: pool/main/k/keyutils/keyutils-dbg_1.5.6-1_amd64.deb Size: 57194 MD5sum: 495e1548c9a1f38b2dffcfe387dad74d SHA1: a5eedd96b43e03d7e0991ccb086485a6d1c58111 SHA256: 900e3022e4492eb33392a7e79bf998677aec45d7107a961c52c05377998680cc Description: Linux Key Management Utilities (debug) Homepage: http://people.redhat.com/~dhowells/keyutils/ Description-md5: 6934d10b03c868f12d7b84829730e608 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: klibc-utils Priority: required Section: libs Installed-Size: 387 Maintainer: Ubuntu Developers Original-Maintainer: maximilian attems Architecture: amd64 Source: klibc Version: 2.0.3-0ubuntu1 Depends: libklibc (= 2.0.3-0ubuntu1) Breaks: initramfs-tools (<< 0.103) Filename: pool/main/k/klibc/klibc-utils_2.0.3-0ubuntu1_amd64.deb Size: 107224 MD5sum: 23a9b516f537979f2a0518530f499f7a SHA1: 4a33510488e7044ce470a06edc7046de1556ba9b SHA256: 4fad19ef6c1696f7cab4c871875dbdab9b0cee39242a7bf72a2de45e7750cfd5 Description: small utilities built with klibc for early boot Homepage: http://git.kernel.org/?p=libs/klibc/klibc.git;a=summary Description-md5: c3467a84f84cfb54cfe339be01214b23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: kmod Priority: required Section: admin Installed-Size: 282 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: amd64 Version: 15-0ubuntu6 Replaces: module-init-tools (<< 4) Depends: libc6 (>= 2.17), libkmod2, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.0-6) Breaks: module-init-tools (<< 4) Filename: pool/main/k/kmod/kmod_15-0ubuntu6_amd64.deb Size: 84908 MD5sum: cd9d6022b4c6b8aef1cfffacb3f1c437 SHA1: 39f280059d4bf9c6b1edb6bbb2c49911cd0c27b5 SHA256: 42782082d765af2c3fa36cebf012bb7802b5a8681cc064b105dd75e8f8208b6b Description: tools for managing Linux kernel modules Multi-Arch: foreign Description-md5: 0cd8f9566ff621a593309a12fd64999f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: konwert Priority: optional Section: text Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Yann Dirson Architecture: amd64 Version: 1.8-11.2build2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1), perl, konwert-filters Suggests: konwert-dev Filename: pool/main/k/konwert/konwert_1.8-11.2build2_amd64.deb Size: 46672 MD5sum: f87e051e4f84d2a18bc688359936eef6 SHA1: 0c556231f785d1d8f76f154c98342f57d9149367 SHA256: ef53a78d9f661cf0c7a22530a13dcd615eefb444ec37e4ac985a8c95e20d67ec Description: Charset conversion for files or terminal I/O Description-md5: 926256ae6d5bc4067982801086f63ea3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: konwert-dev Priority: extra Section: text Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Yann Dirson Architecture: all Source: konwert Version: 1.8-11.2build2 Depends: konwert Suggests: g++ Filename: pool/main/k/konwert/konwert-dev_1.8-11.2build2_all.deb Size: 21962 MD5sum: b7b9f78bd46e95cb0c77798c4f4c152d SHA1: 2d84aa3d4865557f2502cc839328ce8c565468e1 SHA256: 686a5979ac4f685f145a818a0feb77468d5ba4ce4fcbe60c7a6b491777634a07 Description: Tools to define new charset conversion for konwert Description-md5: d8ecc77619a386925b83b8579073fbe5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: konwert-filters Priority: optional Section: text Installed-Size: 542 Maintainer: Ubuntu Developers Original-Maintainer: Yann Dirson Architecture: all Source: konwert Version: 1.8-11.2build2 Depends: perl, libfile-temp-perl Recommends: konwert Filename: pool/main/k/konwert/konwert-filters_1.8-11.2build2_all.deb Size: 227960 MD5sum: df138cb262ca61f928760e4465d57981 SHA1: 70684656078648d30097da1dfd6f9bc481282076 SHA256: d4a1bed828cb511bffdbb57b81b28808c81b8450fe9f0baee7c94f2b0210a2a0 Description: Filters used by konwert for charset conversion Description-md5: 6fde49421294c6c2e8fcec04e1459871 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: kpartx Priority: extra Section: admin Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Source: multipath-tools Version: 0.4.9-3ubuntu7 Replaces: multipath-tools (<< 0.4.7-3) Depends: libc6 (>= 2.14), libdevmapper1.02.1 (>= 2:1.02.36), udev (>> 136-1), dmsetup (>= 2:1.02.24) Filename: pool/main/m/multipath-tools/kpartx_0.4.9-3ubuntu7_amd64.deb Size: 24972 MD5sum: 563ac6414bde7b63843fde976aba264a SHA1: 7e861983cde95403d02609c1958c8705b71d0f25 SHA256: 5c9a1986203a47e7d55ba92e7728062486980e93cf4b29542398e3c31487f83b Description: create device mappings for partitions Homepage: http://christophe.varoqui.free.fr/ Description-md5: 5edc0d8999e24d591b49f95449a8741f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: kpartx-boot Priority: extra Section: admin Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian LVM Team Architecture: all Source: multipath-tools Version: 0.4.9-3ubuntu7 Depends: initramfs-tools, kpartx (>= 0.4.9-3ubuntu7), kpartx (<< 0.4.9-3ubuntu7.1~) Filename: pool/main/m/multipath-tools/kpartx-boot_0.4.9-3ubuntu7_all.deb Size: 2076 MD5sum: 005ff7e502feb0a71411aa5cf8992105 SHA1: 929586139f286670b43845fd37f85a27625c4988 SHA256: 6bfd5dc5966417469ac1d78175e905c4c381995e362688da5b59e39a8d2546b8 Description: Provides kpartx during boot Homepage: http://christophe.varoqui.free.fr/ Description-md5: 10329bba552304246c0935379a51e55f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: krb5-config Priority: optional Section: net Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: all Source: kerberos-configs Version: 2.3 Depends: debconf (>= 0.5) | debconf-2.0, bind9-host Filename: pool/main/k/kerberos-configs/krb5-config_2.3_all.deb Size: 23388 MD5sum: ce80bcaaeb9e8ebb8d8538fe5a5614f3 SHA1: dd72c2d76dbee418ceb5d2c8da85e3a991af7138 SHA256: cb1245cb267bf12bb9f0ebfe6c46ad04825bcc14e54b4fa02ab87f6381f3201b Description: Configuration files for Kerberos Version 5 Description-md5: 36570a434cf5f024efb3ccc2fd73ab6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: krb5-doc Priority: optional Section: doc Installed-Size: 13021 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: all Source: krb5 Version: 1.12+dfsg-2ubuntu4 Conflicts: heimdal-docs Filename: pool/main/k/krb5/krb5-doc_1.12+dfsg-2ubuntu4_all.deb Size: 2044512 MD5sum: c879887667d5f1e8c6c2f2656794dac4 SHA1: fa86dcba46080a06a538cbe47a6a7382b513a3ab SHA256: a99366cfc437dfd9ec7b6eb945eb5fa1db3138575c6ea9a8cb6608333679fab3 Description: Documentation for MIT Kerberos Homepage: http://web.mit.edu/kerberos/ Description-md5: 82977cdecba51fe5a20802f9dee9fabf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: krb5-locales Priority: standard Section: localization Installed-Size: 2660 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: all Source: krb5 Version: 1.12+dfsg-2ubuntu4 Filename: pool/main/k/krb5/krb5-locales_1.12+dfsg-2ubuntu4_all.deb Size: 12332 MD5sum: 7d23105af6bdc0c2f1023bf00cb66b6f SHA1: 790c1f405c4f6c766be1069c4610dc06a24bf169 SHA256: 6610c635beaa30a043006706d57ead944ee84ff552a6a0243ed87d8015dca869 Description: Internationalization support for MIT Kerberos Multi-Arch: foreign Homepage: http://web.mit.edu/kerberos/ Description-md5: 9832530db9d027f2921f0105bd4c102e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: krb5-multidev Priority: optional Section: libdevel Installed-Size: 782 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libkrb5-3 (= 1.12+dfsg-2ubuntu4), libk5crypto3 (= 1.12+dfsg-2ubuntu4), libgssapi-krb5-2 (= 1.12+dfsg-2ubuntu4), libgssrpc4 (= 1.12+dfsg-2ubuntu4), libkadm5srv-mit9 (= 1.12+dfsg-2ubuntu4), libkadm5clnt-mit9 (= 1.12+dfsg-2ubuntu4), comerr-dev Suggests: krb5-doc Filename: pool/main/k/krb5/krb5-multidev_1.12+dfsg-2ubuntu4_amd64.deb Size: 110844 MD5sum: 068caecb9bd164546d9a61955a396ed7 SHA1: e847decd0f630773662a038b9fb4c3299c29bdf9 SHA256: c401b9839abb2e523fbb1d5b11fd7498b9f4f186616b981e511c6cf74f9b4ae0 Description: Development files for MIT Kerberos without Heimdal conflict Homepage: http://web.mit.edu/kerberos/ Description-md5: 7761820aba399b20f00deab931782fe1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: landscape-client Priority: optional Section: admin Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Landscape Team Architecture: amd64 Version: 14.01-0ubuntu3 Depends: python:any, debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.2.5), python-twisted-web, python-twisted-names, python-pycurl, landscape-common (= 14.01-0ubuntu3) Filename: pool/main/l/landscape-client/landscape-client_14.01-0ubuntu3_amd64.deb Size: 19006 MD5sum: 3a90e5c109cb95b82eaa3eeefe253246 SHA1: 217655c1e8015c7fb45eecc3d4c134eab2f656d0 SHA256: 3835047e053e4fa74f5f2ff98cbf43b15df305063a9d1de1eb261ee78c0d439d Description: The Landscape administration system client Description-md5: 3b6c233c041e3a732a8f320ae24c6a60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: landscape-client-ui Priority: optional Section: admin Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Landscape Team Architecture: amd64 Source: landscape-client Version: 14.01-0ubuntu3 Replaces: landscape-client (<< 13.05.1+bzr682) Depends: python:any, landscape-client (= 14.01-0ubuntu3), landscape-client-ui-install (= 14.01-0ubuntu3), python-gi, python-dbus, policykit-1, gir1.2-notify-0.7, gir1.2-gtk-3.0 Filename: pool/main/l/landscape-client/landscape-client-ui_14.01-0ubuntu3_amd64.deb Size: 4150 MD5sum: 52e964eb2809f0a9fa9bd0e2b7b1ccec SHA1: 45c290b82f020d4d2e318c5e4edc7f876477fe03 SHA256: 1f41eddfd96c150283c20f007d6645eb4403b2f5bbccf91cc98cb0b82a6c898d Description: The Landscape administration system client - UI configuration Description-md5: 492e934962914cbe7430f25c3860cdec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: landscape-client-ui-install Priority: optional Section: admin Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Landscape Team Architecture: amd64 Source: landscape-client Version: 14.01-0ubuntu3 Depends: python:any, python-gi, python-dbus, policykit-1, gir1.2-gtk-3.0, python-aptdaemon.gtk3widgets Filename: pool/main/l/landscape-client/landscape-client-ui-install_14.01-0ubuntu3_amd64.deb Size: 6384 MD5sum: 0ae7453c28d2faa19da1925530cfd6ec SHA1: 5cfc95734ccd4569b94aa5d4b0adb0071172e687 SHA256: 2e82c5a0a20aa3df60ee724ed38feb74e94edc313640ade6b6fc8dbed1fa0623 Description: The Landscape administration system client - UI installer Description-md5: 3d4cc26e92f97555be860321697a84bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: landscape-common Priority: optional Section: admin Installed-Size: 961 Maintainer: Ubuntu Developers Original-Maintainer: Landscape Team Architecture: amd64 Source: landscape-client Version: 14.01-0ubuntu3 Replaces: landscape-client (<< 12.09+bzr582) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), debconf (>= 0.5) | debconf-2.0, python-twisted-core, python-configobj, python-apt, ca-certificates, python-gdbm, lsb-release, lsb-base, adduser, bc, lshw, libpam-modules Filename: pool/main/l/landscape-client/landscape-common_14.01-0ubuntu3_amd64.deb Size: 168196 MD5sum: e63662ee0843f1b57a76689c3ca3c8e2 SHA1: 9c0b011982f4a30c5e747136d0004323535cdd2e SHA256: 11e43dbd80f69f72d241f656a3c15c828885d821ea992a482548c79ac535cf1f Description: The Landscape administration system client - Common files Python-Version: 2.7 Description-md5: 835e5462d72cec2787f651391834f9a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server Package: language-pack-aa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-aa (<< 1:14.04+20140410), language-pack-aa-base, language-pack-gnome-aa (<< 1:14.04+20140410), language-pack-gnome-aa-base (<< 1:14.04+20140410), language-pack-kde-aa (<< 1:14.04+20140410), language-pack-kde-aa-base (<< 1:14.04+20140410) Depends: language-pack-aa-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-aa/language-pack-aa_14.04+20140410_all.deb Size: 1976 MD5sum: 8f45a466bf19172992e808dfdfde7392 SHA1: 45d7151db628b61035a7e765ca8ab0bf195be974 SHA256: 3b90d735ca2cf4e457e36147fc91bf011e503c9dc3f2c4df919ea48730439360 Description: translation updates for language Afar Description-md5: 83fcc5a2b60002b773a7152e98365c0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-aa-base Priority: optional Section: translations Installed-Size: 55 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-aa (<< 1:14.04+20140410), language-pack-aa-base (<< 1:14.04+20140410), language-pack-gnome-aa (<< 1:14.04+20140410), language-pack-gnome-aa-base (<< 1:14.04+20140410), language-pack-kde-aa (<< 1:14.04+20140410), language-pack-kde-aa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-aa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-aa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-aa-base/language-pack-aa-base_14.04+20140410_all.deb Size: 3100 MD5sum: f320e923bdf7c9f30ed79382ffa1d4b7 SHA1: ba2ea25387d8df9b8f88f25916038413c17e8ad1 SHA256: 7631840d39712fc0ecb798081da8708639beaefb4ba6900bbc6a75666dca9a78 Description: translations for language Afar Description-md5: 83d559e19a35101e0d08280200265f89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-af Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-af (<< 1:14.04+20140410), language-pack-af-base, language-pack-gnome-af (<< 1:14.04+20140410), language-pack-gnome-af-base (<< 1:14.04+20140410), language-pack-kde-af (<< 1:14.04+20140410), language-pack-kde-af-base (<< 1:14.04+20140410) Depends: language-pack-af-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-af/language-pack-af_14.04+20140410_all.deb Size: 1982 MD5sum: 62c6ecffc80ac182edc0c81e2e8a06ea SHA1: a5b2913c5e422edcddef69f00dc444f366b74133 SHA256: 597b461a2c5ef50e1f5d142f385083527fdd8c343c03d22efefb4c16664397ef Description: translation updates for language Afrikaans Description-md5: d2d9e90761f53e2a13002b27ce8f5d64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-af-base Priority: optional Section: translations Installed-Size: 872 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-af (<< 1:14.04+20140410), language-pack-af-base (<< 1:14.04+20140410), language-pack-gnome-af (<< 1:14.04+20140410), language-pack-gnome-af-base (<< 1:14.04+20140410), language-pack-kde-af (<< 1:14.04+20140410), language-pack-kde-af-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-af (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-af Conflicts: language-pack-af (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-af-base/language-pack-af-base_14.04+20140410_all.deb Size: 280734 MD5sum: ca6be3f25dc4121616864b4d25fc8fdf SHA1: f964e5dd705deaa101cfe596f47a89e5def65358 SHA256: e0007112bfecd4ce8f92b6f469930e3346b6b159b27796f7118464640bd66627 Description: translations for language Afrikaans Description-md5: f2472f2187166553fd095a522d2d6014 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-am Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-am (<< 1:14.04+20140410), language-pack-am-base, language-pack-gnome-am (<< 1:14.04+20140410), language-pack-gnome-am-base (<< 1:14.04+20140410), language-pack-kde-am (<< 1:14.04+20140410), language-pack-kde-am-base (<< 1:14.04+20140410) Depends: language-pack-am-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-am/language-pack-am_14.04+20140410_all.deb Size: 1962 MD5sum: 9bb73c2e67b10c0b1f9160d2271bf906 SHA1: 9c6e61479cd26e2676696bcb5f60d66e2d5c57f2 SHA256: ada4726b2e03b549f51988e6cbf522d8e38ec05e1546647eeb2d80588dc5f1f4 Description: translation updates for language Amharic Description-md5: b1e3cb56c9a6998181138cf208c5317c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-am-base Priority: optional Section: translations Installed-Size: 140 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-am (<< 1:14.04+20140410), language-pack-am-base (<< 1:14.04+20140410), language-pack-gnome-am (<< 1:14.04+20140410), language-pack-gnome-am-base (<< 1:14.04+20140410), language-pack-kde-am (<< 1:14.04+20140410), language-pack-kde-am-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-am (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-am (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-am-base/language-pack-am-base_14.04+20140410_all.deb Size: 28292 MD5sum: 948358e76113976826ad35014d9bde65 SHA1: c51e1f8b3368bdb39feb19e65c0bed5402201ce5 SHA256: 1998a6bdb7aa0f1447e9317006477dcb7bb524dc64335b2a93f09d2af9842b2e Description: translations for language Amharic Description-md5: 225a82c408273f3a2be38716c8a70a5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-an Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-an (<< 1:14.04+20140410), language-pack-an-base, language-pack-gnome-an (<< 1:14.04+20140410), language-pack-gnome-an-base (<< 1:14.04+20140410), language-pack-kde-an (<< 1:14.04+20140410), language-pack-kde-an-base (<< 1:14.04+20140410) Depends: language-pack-an-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-an/language-pack-an_14.04+20140410_all.deb Size: 1972 MD5sum: 2c122028b55c54f76f31ed5c981c2f1d SHA1: 295ac37bd7f0347e42265384d5379fdee5203db2 SHA256: e16c120a915287b49aa9dbb4a55ce3fa068635ce19a03072d7d6d3101812f4a4 Description: translation updates for language Aragonese Description-md5: e2a096d70c7c7fec5b3ec7bbe59a0267 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-an-base Priority: optional Section: translations Installed-Size: 73 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-an (<< 1:14.04+20140410), language-pack-an-base (<< 1:14.04+20140410), language-pack-gnome-an (<< 1:14.04+20140410), language-pack-gnome-an-base (<< 1:14.04+20140410), language-pack-kde-an (<< 1:14.04+20140410), language-pack-kde-an-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-an (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-an Conflicts: language-pack-an (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-an-base/language-pack-an-base_14.04+20140410_all.deb Size: 9576 MD5sum: aa22470fcd06141b173246f94b876d31 SHA1: 803ee44b2500c4fa8e70b6af25ab2e3cb8d42b6d SHA256: b99590d51368553dfe8dda09730dd9b1cb2db03df1ff234ee23f0cd4eabefdd8 Description: translations for language Aragonese Description-md5: 10bfd3179da46c760b2294e970e184da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ar Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ar (<< 1:14.04+20140410), language-pack-ar-base, language-pack-gnome-ar (<< 1:14.04+20140410), language-pack-gnome-ar-base (<< 1:14.04+20140410), language-pack-kde-ar (<< 1:14.04+20140410), language-pack-kde-ar-base (<< 1:14.04+20140410) Depends: language-pack-ar-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ar/language-pack-ar_14.04+20140410_all.deb Size: 1986 MD5sum: 2216ff80a723d91e31bebbf41bad1706 SHA1: 11d2772dd3add01143b82443189983835b882aed SHA256: 482fa373b342bc1b5722877f7389638237fc3b85f20f930941911112d1c99b3a Description: translation updates for language Arabic Description-md5: b7461fa593f1c6fcd1db9db0c40d9039 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ar-base Priority: optional Section: translations Installed-Size: 1000 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ar (<< 1:14.04+20140410), language-pack-ar-base (<< 1:14.04+20140410), language-pack-gnome-ar (<< 1:14.04+20140410), language-pack-gnome-ar-base (<< 1:14.04+20140410), language-pack-kde-ar (<< 1:14.04+20140410), language-pack-kde-ar-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ar (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ar Conflicts: language-pack-ar (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ar-base/language-pack-ar-base_14.04+20140410_all.deb Size: 261222 MD5sum: caed09bbaabfcc879472e861acc63a92 SHA1: cfb4457d0f5d6f5fa84c5c32fc4752a150064645 SHA256: f1d92546f6fde2428df3f9bf1712997e2bc64ac11ea69f70d9f04a35e2cf203e Description: translations for language Arabic Description-md5: 774e1cdd50e244f821c0560eba60e5d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-as Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-as (<< 1:14.04+20140410), language-pack-as-base, language-pack-gnome-as (<< 1:14.04+20140410), language-pack-gnome-as-base (<< 1:14.04+20140410), language-pack-kde-as (<< 1:14.04+20140410), language-pack-kde-as-base (<< 1:14.04+20140410) Depends: language-pack-as-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-as/language-pack-as_14.04+20140410_all.deb Size: 1992 MD5sum: e54bc716acf59213a20f804dbf6cf30d SHA1: 829ed702011c6889d18b0c82d1884a240ae80a78 SHA256: e253f2c58fab57980271b27f3738a21552c82ae8e5e0aa481f686b4dfa93c3fc Description: translation updates for language Assamese Description-md5: b579abb9f9b0b339e949f69fd53f77ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-as-base Priority: optional Section: translations Installed-Size: 1445 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-as (<< 1:14.04+20140410), language-pack-as-base (<< 1:14.04+20140410), language-pack-gnome-as (<< 1:14.04+20140410), language-pack-gnome-as-base (<< 1:14.04+20140410), language-pack-kde-as (<< 1:14.04+20140410), language-pack-kde-as-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-as (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-as Conflicts: language-pack-as (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-as-base/language-pack-as-base_14.04+20140410_all.deb Size: 274132 MD5sum: 8541956b526688eb14a0ac681f50a3d3 SHA1: 268d9178c3152c162a95912e988f77d55da289cb SHA256: 34cce863a5a86f5a78acecfb5041f6843763d20a94d78875cdd1831528b30602 Description: translations for language Assamese Description-md5: e8c511c0d62d945198e81649b65b18ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ast Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ast (<< 1:14.04+20140410), language-pack-ast-base, language-pack-gnome-ast (<< 1:14.04+20140410), language-pack-gnome-ast-base (<< 1:14.04+20140410), language-pack-kde-ast (<< 1:14.04+20140410), language-pack-kde-ast-base (<< 1:14.04+20140410) Depends: language-pack-ast-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ast/language-pack-ast_14.04+20140410_all.deb Size: 1980 MD5sum: 5eb18f623c26eaee9e751d88cf009e9a SHA1: cd0a722bf997dcdd8250b5d60382b48cf459ec3a SHA256: b74e82a8ba1625bdf810b9c2f83d0576b03923f1700ff122274c1a309721ae47 Description: translation updates for language Asturian Description-md5: 786fb5ebccafbf7ec8c011f2a4076942 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ast-base Priority: optional Section: translations Installed-Size: 4255 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ast (<< 1:14.04+20140410), language-pack-ast-base (<< 1:14.04+20140410), language-pack-gnome-ast (<< 1:14.04+20140410), language-pack-gnome-ast-base (<< 1:14.04+20140410), language-pack-kde-ast (<< 1:14.04+20140410), language-pack-kde-ast-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ast (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ast Conflicts: language-pack-ast (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ast-base/language-pack-ast-base_14.04+20140410_all.deb Size: 1298320 MD5sum: 101c6e6c95e7057d5b8178e1d13f2f6c SHA1: b6b77608fdb0cc750cdced43839f123a86f11134 SHA256: b968072d940fdc0e953b53ee2f962407d2b215bf44bd7aa0b50f84ad09b8cb4c Description: translations for language Asturian Description-md5: e812a27ce8778aa9ee7c4e14ad29e632 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-az Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-az (<< 1:14.04+20140410), language-pack-az-base, language-pack-gnome-az (<< 1:14.04+20140410), language-pack-gnome-az-base (<< 1:14.04+20140410), language-pack-kde-az (<< 1:14.04+20140410), language-pack-kde-az-base (<< 1:14.04+20140410) Depends: language-pack-az-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-az/language-pack-az_14.04+20140410_all.deb Size: 1966 MD5sum: 302cbcacf9e81c52ca6f7153530146c6 SHA1: a0acfb8c9df9004ace16dcc42d8315c95a18a6ad SHA256: 719f3b31a89167ffbddbc50bbabb420419b47efc64d7352e5b06439e5c13a9b0 Description: translation updates for language Azerbaijani Description-md5: df7b32eca79a0fba5010572dd26a64e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-az-base Priority: optional Section: translations Installed-Size: 200 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-az (<< 1:14.04+20140410), language-pack-az-base (<< 1:14.04+20140410), language-pack-gnome-az (<< 1:14.04+20140410), language-pack-gnome-az-base (<< 1:14.04+20140410), language-pack-kde-az (<< 1:14.04+20140410), language-pack-kde-az-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-az (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-az (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-az-base/language-pack-az-base_14.04+20140410_all.deb Size: 55026 MD5sum: 1a61a370a7b7a3224b4e989a36d9b9c9 SHA1: af5dddfe21f2f7796d9009b1445ccdbec6681b32 SHA256: d37098af467847e6d12b97062180b4441902415a9602ddd6ab227ca7662b49ba Description: translations for language Azerbaijani Description-md5: 97d3d5c8aa79adb5ed68001d5410e2b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-be Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-be (<< 1:14.04+20140410), language-pack-be-base, language-pack-gnome-be (<< 1:14.04+20140410), language-pack-gnome-be-base (<< 1:14.04+20140410), language-pack-kde-be (<< 1:14.04+20140410), language-pack-kde-be-base (<< 1:14.04+20140410) Depends: language-pack-be-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-be/language-pack-be_14.04+20140410_all.deb Size: 1978 MD5sum: add6d2d84e016686db3bd4a526ebd755 SHA1: 93c46bee901f1b4ae900f06a4931dbab6077509d SHA256: 508475cd976ea088923a0be960a7429852ecce392f50e06e6aae8511d7bdd940 Description: translation updates for language Belarusian Description-md5: b33689d929a5da2b17030649e9dbcbcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-be-base Priority: optional Section: translations Installed-Size: 1575 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-be (<< 1:14.04+20140410), language-pack-be-base (<< 1:14.04+20140410), language-pack-gnome-be (<< 1:14.04+20140410), language-pack-gnome-be-base (<< 1:14.04+20140410), language-pack-kde-be (<< 1:14.04+20140410), language-pack-kde-be-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-be (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-be Conflicts: language-pack-be (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-be-base/language-pack-be-base_14.04+20140410_all.deb Size: 422344 MD5sum: 70baba0efa9c9a52268f016cf144c2be SHA1: 9a1475ba884d0ce82f5a34ab8b81613f42ec3cc8 SHA256: 1c0e9aa5497a7085ff78c0b68897305c03da8e3046b9b35ff66a5081ec7d311e Description: translations for language Belarusian Description-md5: 8845113bd3cc7413c31f90b0871d0d18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bem Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bem (<< 1:14.04+20140410), language-pack-bem-base, language-pack-gnome-bem (<< 1:14.04+20140410), language-pack-gnome-bem-base (<< 1:14.04+20140410), language-pack-kde-bem (<< 1:14.04+20140410), language-pack-kde-bem-base (<< 1:14.04+20140410) Depends: language-pack-bem-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bem/language-pack-bem_14.04+20140410_all.deb Size: 1988 MD5sum: 21ab7830c586c699e0d3b1afeaf73206 SHA1: d90c5d6af72695e2b520e44e0ff1b541a49d25e5 SHA256: 3fe62667597cbce8f22c0489d5bf9ed9cf683843b214d521d22e4bf9b9a45685 Description: translation updates for language Bemba (Zambia) Description-md5: 25a5fe4c115df1123100888b65fdeb84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bem-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bem (<< 1:14.04+20140410), language-pack-bem-base (<< 1:14.04+20140410), language-pack-gnome-bem (<< 1:14.04+20140410), language-pack-gnome-bem-base (<< 1:14.04+20140410), language-pack-kde-bem (<< 1:14.04+20140410), language-pack-kde-bem-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bem (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-bem (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bem-base/language-pack-bem-base_14.04+20140410_all.deb Size: 2314 MD5sum: 3a5bd392eb4ff2e6da5bc166cec90f85 SHA1: 5923b1d85e9b4aec6aa0d250ac2532378ffba20a SHA256: 8b28fe224807bbb5e074b8536d60358717b2659637c6f12a85c741d2321d7dd3 Description: translations for language Bemba (Zambia) Description-md5: 2d03dc4e28fd62ed6f94e02a00980b7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ber Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ber (<< 1:14.04+20140410), language-pack-ber-base, language-pack-gnome-ber (<< 1:14.04+20140410), language-pack-gnome-ber-base (<< 1:14.04+20140410), language-pack-kde-ber (<< 1:14.04+20140410), language-pack-kde-ber-base (<< 1:14.04+20140410) Depends: language-pack-ber-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ber/language-pack-ber_14.04+20140410_all.deb Size: 1958 MD5sum: 67060ed211bcfa8c257b70fb8d249d96 SHA1: fbb021c929b5e650fc116fe96cb082bd289fa436 SHA256: 671ef273a12afe186c37bb9d87e6f523e5f8628efcfcfefaf71ae3bbb2749844 Description: translation updates for language Berber languages Description-md5: 08a0b2567f6732ea7c7215915554c568 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ber-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ber (<< 1:14.04+20140410), language-pack-ber-base (<< 1:14.04+20140410), language-pack-gnome-ber (<< 1:14.04+20140410), language-pack-gnome-ber-base (<< 1:14.04+20140410), language-pack-kde-ber (<< 1:14.04+20140410), language-pack-kde-ber-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ber (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ber (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ber-base/language-pack-ber-base_14.04+20140410_all.deb Size: 2310 MD5sum: e0b6092a2bedcf41a5d2dd591277b1ae SHA1: a27929ab3252cbbcf398642b3fa8f2b445e0ba51 SHA256: e2382e1fedf63130fb355f8ec3f5fa6be61509ba23321a0398115ba132c5ec93 Description: translations for language Berber languages Description-md5: 335252b22911cb54251f2c63dc1d2e9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bg (<< 1:14.04+20140410), language-pack-bg-base, language-pack-gnome-bg (<< 1:14.04+20140410), language-pack-gnome-bg-base (<< 1:14.04+20140410), language-pack-kde-bg (<< 1:14.04+20140410), language-pack-kde-bg-base (<< 1:14.04+20140410) Depends: language-pack-bg-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bg/language-pack-bg_14.04+20140410_all.deb Size: 1986 MD5sum: 841bcd58225f4e16f046c11bf7aeca31 SHA1: e0e50c3af03e17f4b154fe5b6b9e85a90bdc2bbf SHA256: e3145c56f2e69127470262a487e3630320dd930b50b2d42014890e46ab5c71a4 Description: translation updates for language Bulgarian Description-md5: b28d78176a301f6f96615efcf80f1808 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bg-base Priority: optional Section: translations Installed-Size: 2775 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bg (<< 1:14.04+20140410), language-pack-bg-base (<< 1:14.04+20140410), language-pack-gnome-bg (<< 1:14.04+20140410), language-pack-gnome-bg-base (<< 1:14.04+20140410), language-pack-kde-bg (<< 1:14.04+20140410), language-pack-kde-bg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-bg Conflicts: language-pack-bg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bg-base/language-pack-bg-base_14.04+20140410_all.deb Size: 702020 MD5sum: 23d347faf97d90b74162d1173348b972 SHA1: e221e4668aa6aa4c0f7c365256da713c9dbef3b4 SHA256: 2c39b45009820c9a3937e770cc0790a4968fa815e3242026206772864f22623c Description: translations for language Bulgarian Description-md5: e00ad017be5b63638fc61d319592abe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bho Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bho (<< 1:14.04+20140410), language-pack-bho-base, language-pack-gnome-bho (<< 1:14.04+20140410), language-pack-gnome-bho-base (<< 1:14.04+20140410), language-pack-kde-bho (<< 1:14.04+20140410), language-pack-kde-bho-base (<< 1:14.04+20140410) Depends: language-pack-bho-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bho/language-pack-bho_14.04+20140410_all.deb Size: 1986 MD5sum: a6022211b7c2e472981b0b822e279045 SHA1: 074b86881879b22afe7512567b96410c57d3d186 SHA256: ef8d6c489cd1cc0bcbf88df9ceb075359fedda1c858f962051d1bc8c2402badb Description: translation updates for language Bhojpuri Description-md5: b76784318bb1360201b89ecb1064cb50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bho-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bho (<< 1:14.04+20140410), language-pack-bho-base (<< 1:14.04+20140410), language-pack-gnome-bho (<< 1:14.04+20140410), language-pack-gnome-bho-base (<< 1:14.04+20140410), language-pack-kde-bho (<< 1:14.04+20140410), language-pack-kde-bho-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bho (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-bho (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bho-base/language-pack-bho-base_14.04+20140410_all.deb Size: 2294 MD5sum: a11df987cb69a4684fdfd50dd323b094 SHA1: 4843b0fb8eb99de310fcb3f1a105e6f9fc527ccd SHA256: 002a4c8e9ab3bcc2bd99f3c8affd4d7027bc2535721a065b829c5797eb02a1e1 Description: translations for language Bhojpuri Description-md5: c652118c5f9301f72ad3ffd6c9491ea2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bn (<< 1:14.04+20140410), language-pack-bn-base, language-pack-gnome-bn (<< 1:14.04+20140410), language-pack-gnome-bn-base (<< 1:14.04+20140410), language-pack-kde-bn (<< 1:14.04+20140410), language-pack-kde-bn-base (<< 1:14.04+20140410) Depends: language-pack-bn-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bn/language-pack-bn_14.04+20140410_all.deb Size: 1968 MD5sum: c37a075aed452644cc68de7913852eee SHA1: ce7bc4ca5c1c95e16c0d8c1619bf6a228ddebd1d SHA256: 213ba0dd4273a4be6f1bcf640202666256601958f67b0abd88ce7cab36921e91 Description: translation updates for language Bengali Description-md5: b7438f245e95831586edbc40b4301839 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-bn-base Priority: optional Section: translations Installed-Size: 1451 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bn (<< 1:14.04+20140410), language-pack-bn-base (<< 1:14.04+20140410), language-pack-gnome-bn (<< 1:14.04+20140410), language-pack-gnome-bn-base (<< 1:14.04+20140410), language-pack-kde-bn (<< 1:14.04+20140410), language-pack-kde-bn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-bn Conflicts: language-pack-bn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bn-base/language-pack-bn-base_14.04+20140410_all.deb Size: 326906 MD5sum: 1e33e4ec5fe75b65cb141dffe568fe8e SHA1: 829711e0dfdf4a15743c08554c9b813f618e6d99 SHA256: 44ff05d57db0c4fdf0c3880ae293853ddf3559178c8d717b99ccc836adda82dd Description: translations for language Bengali Description-md5: c39fe7e4cf544b672027c38cc37a29f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-bo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bo (<< 1:14.04+20140410), language-pack-bo-base, language-pack-gnome-bo (<< 1:14.04+20140410), language-pack-gnome-bo-base (<< 1:14.04+20140410), language-pack-kde-bo (<< 1:14.04+20140410), language-pack-kde-bo-base (<< 1:14.04+20140410) Depends: language-pack-bo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bo/language-pack-bo_14.04+20140410_all.deb Size: 1988 MD5sum: e877e62afb7fc09cbe04491e2018337d SHA1: 8adb08afc0c0dab694c27528a2eae2e1313c3ed6 SHA256: 35b66f183f1665d4f98637c6919ed7cb7e3cf7f49cb07d6f8729426a759bda9b Description: translation updates for language Tibetan Description-md5: 081118ec2e7ce3ca2c25ffdd61a80881 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bo-base Priority: optional Section: translations Installed-Size: 185 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bo (<< 1:14.04+20140410), language-pack-bo-base (<< 1:14.04+20140410), language-pack-gnome-bo (<< 1:14.04+20140410), language-pack-gnome-bo-base (<< 1:14.04+20140410), language-pack-kde-bo (<< 1:14.04+20140410), language-pack-kde-bo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-bo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bo-base/language-pack-bo-base_14.04+20140410_all.deb Size: 35466 MD5sum: 3f07e0f7b9838a68aa8d44a3c0bbe94f SHA1: c35d7de1c4aba32ef3c8e7dbb01d4c488b3e827b SHA256: 9ad7270cad1bf4d472581c4bc784aa2734d9282a95928b89693a17d32f3e022b Description: translations for language Tibetan Description-md5: 6eb3e916d13ab024a2cfced5768e5fda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-br Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-br (<< 1:14.04+20140410), language-pack-br-base, language-pack-gnome-br (<< 1:14.04+20140410), language-pack-gnome-br-base (<< 1:14.04+20140410), language-pack-kde-br (<< 1:14.04+20140410), language-pack-kde-br-base (<< 1:14.04+20140410) Depends: language-pack-br-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-br/language-pack-br_14.04+20140410_all.deb Size: 1972 MD5sum: 3cf58d6e4e01310d75c87abd69fa072d SHA1: 3aabba26d0b0b0671c7abc2d312d602cce9a8ce6 SHA256: 9f2c00dd9748b9bc51d682997cc67863e0d65a920566ed8ccb5dab238a4b4818 Description: translation updates for language Breton Description-md5: 9e1867192aa855c7e89f8b4d52aa2d33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-br-base Priority: optional Section: translations Installed-Size: 287 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-br (<< 1:14.04+20140410), language-pack-br-base (<< 1:14.04+20140410), language-pack-gnome-br (<< 1:14.04+20140410), language-pack-gnome-br-base (<< 1:14.04+20140410), language-pack-kde-br (<< 1:14.04+20140410), language-pack-kde-br-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-br (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-br Conflicts: language-pack-br (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-br-base/language-pack-br-base_14.04+20140410_all.deb Size: 80398 MD5sum: 8c890dac145ecb107203c63fec3befe0 SHA1: 6c7764647a708b20db20eae0fd68061f3c642a3a SHA256: e09f368bbf9377bd0e7eda01807848cd04acf2399666404d75a63ca334a376c9 Description: translations for language Breton Description-md5: 98574dcbc6266fe3445df8a302417f44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bs (<< 1:14.04+20140410), language-pack-bs-base, language-pack-gnome-bs (<< 1:14.04+20140410), language-pack-gnome-bs-base (<< 1:14.04+20140410), language-pack-kde-bs (<< 1:14.04+20140410), language-pack-kde-bs-base (<< 1:14.04+20140410) Depends: language-pack-bs-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bs/language-pack-bs_14.04+20140410_all.deb Size: 1964 MD5sum: 9b76ed39136bf86b722b31ec7d620463 SHA1: 25cea21cf283cdef78b4d37f18b577f8396b19f5 SHA256: bb20a810791687cb0430b4f310c1275818c38a9ec2dd6e2718cfeed9c9419ddf Description: translation updates for language Bosnian Description-md5: f3915a5e2e0641fa35f76f6ca40b33fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bs-base Priority: optional Section: translations Installed-Size: 12811 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bs (<< 1:14.04+20140410), language-pack-bs-base (<< 1:14.04+20140410), language-pack-gnome-bs (<< 1:14.04+20140410), language-pack-gnome-bs-base (<< 1:14.04+20140410), language-pack-kde-bs (<< 1:14.04+20140410), language-pack-kde-bs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-bs Conflicts: language-pack-bs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bs-base/language-pack-bs-base_14.04+20140410_all.deb Size: 4044900 MD5sum: 29fc2bbc66eea2887f9eaec011731866 SHA1: 196bee174f1dd3bc28c06d73bc2b73ae6a0c9dc9 SHA256: 59bd20d44ad4420143fc8083d87cd51f211b2707fe92a472e14bb8610274cdbd Description: translations for language Bosnian Description-md5: 087e28594f1a2191d43d3443e4ca8eea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ca Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ca (<< 1:14.04+20140410), language-pack-ca-base, language-pack-gnome-ca (<< 1:14.04+20140410), language-pack-gnome-ca-base (<< 1:14.04+20140410), language-pack-kde-ca (<< 1:14.04+20140410), language-pack-kde-ca-base (<< 1:14.04+20140410) Depends: language-pack-ca-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ca/language-pack-ca_14.04+20140410_all.deb Size: 1984 MD5sum: d2f736f228faf32174ddfcc00f1c43a1 SHA1: eb87142201964aeceadc1d851880cb15d2c3288e SHA256: e8b5d8e0ef5cc500b9fbed572152fb401971eae906ba683d0711ec296116d19c Description: translation updates for language Catalan; Valencian Description-md5: 9180e20f11f818db00710984b1673248 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ca-base Priority: optional Section: translations Installed-Size: 4903 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ca (<< 1:14.04+20140410), language-pack-ca-base (<< 1:14.04+20140410), language-pack-gnome-ca (<< 1:14.04+20140410), language-pack-gnome-ca-base (<< 1:14.04+20140410), language-pack-kde-ca (<< 1:14.04+20140410), language-pack-kde-ca-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ca (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ca Conflicts: language-pack-ca (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ca-base/language-pack-ca-base_14.04+20140410_all.deb Size: 1519676 MD5sum: c7525e5a44867f555ce2d66a9ce1126a SHA1: 466a10cdc2b275361f41078882c0ae59d1609c4c SHA256: 4fe42f3fe1aaf0ac540d0c31038dfe0402aafa60374d69207a4e25a6df2790ac Description: translations for language Catalan; Valencian Description-md5: e922c99335fe678d232e144046cf228b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-crh Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-crh (<< 1:14.04+20140410), language-pack-crh-base, language-pack-gnome-crh (<< 1:14.04+20140410), language-pack-gnome-crh-base (<< 1:14.04+20140410), language-pack-kde-crh (<< 1:14.04+20140410), language-pack-kde-crh-base (<< 1:14.04+20140410) Depends: language-pack-crh-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-crh/language-pack-crh_14.04+20140410_all.deb Size: 1976 MD5sum: 8cde4ccfa093db1bae242cb5e033d0b5 SHA1: 82a3e9823f45c12b2ccdc8a4a5357a6d8af274fc SHA256: 22462f80bc3a8b68832c5bae1feb6cae3d9be7a10718372f32992fd14c8c0100 Description: translation updates for language Tatar, Crimean Description-md5: 3f01f6112f372d4eff9acacca078b7ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-crh-base Priority: optional Section: translations Installed-Size: 467 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-crh (<< 1:14.04+20140410), language-pack-crh-base (<< 1:14.04+20140410), language-pack-gnome-crh (<< 1:14.04+20140410), language-pack-gnome-crh-base (<< 1:14.04+20140410), language-pack-kde-crh (<< 1:14.04+20140410), language-pack-kde-crh-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-crh (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-crh (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-crh-base/language-pack-crh-base_14.04+20140410_all.deb Size: 157178 MD5sum: 2b9655ab6e58e99fa4ee3be6f9835fb0 SHA1: 9d3ba150f9ab30e546dd1ff627287dd9f43e1bd9 SHA256: 39c46228b4b5734963afb0f747544ebf7c816f195c1fbc6d170e54d3e43c2088 Description: translations for language Tatar, Crimean Description-md5: 53f1d0dfa0f2f89c276040c632cc9c8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-cs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cs (<< 1:14.04+20140410), language-pack-cs-base, language-pack-gnome-cs (<< 1:14.04+20140410), language-pack-gnome-cs-base (<< 1:14.04+20140410), language-pack-kde-cs (<< 1:14.04+20140410), language-pack-kde-cs-base (<< 1:14.04+20140410) Depends: language-pack-cs-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-cs/language-pack-cs_14.04+20140410_all.deb Size: 1976 MD5sum: d9b0a2d0466b774b220fe776e9a35834 SHA1: ab213b4031a40967e0d1cb9a90cd3953c31ae21d SHA256: 17d15350de3a569e1ed46eb76727977552a6fce5208d90891a77ab3d55ad754a Description: translation updates for language Czech Description-md5: c82e1ffc721dc9c65221596ec679a707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-cs-base Priority: optional Section: translations Installed-Size: 5976 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cs (<< 1:14.04+20140410), language-pack-cs-base (<< 1:14.04+20140410), language-pack-gnome-cs (<< 1:14.04+20140410), language-pack-gnome-cs-base (<< 1:14.04+20140410), language-pack-kde-cs (<< 1:14.04+20140410), language-pack-kde-cs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-cs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-cs Conflicts: language-pack-cs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-cs-base/language-pack-cs-base_14.04+20140410_all.deb Size: 1884016 MD5sum: df84904c7881cd62c3eb0e34f4c2f2a7 SHA1: 52ae2479aac6b4c4fb9c9432a920ac2f59ce3a14 SHA256: dc94cba3f102da7c68cfaa8ea3526d1cc9949bce6074aea28b789632e217b61e Description: translations for language Czech Description-md5: 6fec579a922fe521d2e3be90c00aa659 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-csb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-csb (<< 1:14.04+20140410), language-pack-csb-base, language-pack-gnome-csb (<< 1:14.04+20140410), language-pack-gnome-csb-base (<< 1:14.04+20140410), language-pack-kde-csb (<< 1:14.04+20140410), language-pack-kde-csb-base (<< 1:14.04+20140410) Depends: language-pack-csb-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-csb/language-pack-csb_14.04+20140410_all.deb Size: 1994 MD5sum: 7556ec0ae93fab7d691f27214ea80f5a SHA1: a9bf0dbd36851fc2907f5c2b747a3b985018313f SHA256: 7f7777935d823a0d44fc667e02f700515b42799e24d1ef23ef2c6c479ee7d623 Description: translation updates for language Kashubian Description-md5: 01def04713c70bae615f4bb1ed72b8bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-csb-base Priority: optional Section: translations Installed-Size: 107 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-csb (<< 1:14.04+20140410), language-pack-csb-base (<< 1:14.04+20140410), language-pack-gnome-csb (<< 1:14.04+20140410), language-pack-gnome-csb-base (<< 1:14.04+20140410), language-pack-kde-csb (<< 1:14.04+20140410), language-pack-kde-csb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-csb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-csb Conflicts: language-pack-csb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-csb-base/language-pack-csb-base_14.04+20140410_all.deb Size: 21490 MD5sum: b72c395561ba9e4f5106e4f675d25eba SHA1: 107789485e5dca5fc0535db47e7b02190bc490a1 SHA256: b87fa916c2293917de9e21112ad9eb6cb00b3a209d17eb656fe971d40334f14a Description: translations for language Kashubian Description-md5: 3d5c1e7cd98bacd40dccc518887eb916 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-cv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cv (<< 1:14.04+20140410), language-pack-cv-base, language-pack-gnome-cv (<< 1:14.04+20140410), language-pack-gnome-cv-base (<< 1:14.04+20140410), language-pack-kde-cv (<< 1:14.04+20140410), language-pack-kde-cv-base (<< 1:14.04+20140410) Depends: language-pack-cv-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-cv/language-pack-cv_14.04+20140410_all.deb Size: 1984 MD5sum: a93c95dd7e118e6774fba99452234180 SHA1: f1151b4c0ea18d68207d2623990e14060f189ba9 SHA256: 4d61e5870b19cb970070e2a64edd315ef5530779280590d4a036a71463336ca4 Description: translation updates for language Chuvash Description-md5: e1e78a9e6f64733059e7eac58ac2af07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-cv-base Priority: optional Section: translations Installed-Size: 63 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cv (<< 1:14.04+20140410), language-pack-cv-base (<< 1:14.04+20140410), language-pack-gnome-cv (<< 1:14.04+20140410), language-pack-gnome-cv-base (<< 1:14.04+20140410), language-pack-kde-cv (<< 1:14.04+20140410), language-pack-kde-cv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-cv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-cv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-cv-base/language-pack-cv-base_14.04+20140410_all.deb Size: 5918 MD5sum: 5cfd7d04fd65ab12a5dc89081c75ad1d SHA1: 41174761c262e08ca602d6609588206f00f2cb42 SHA256: 54d5c903ed3ba99505f6d15f5506b005bdd1a6e598d6e8b47d1f6cb22d96de19 Description: translations for language Chuvash Description-md5: b00b93e2274d80ece171005f4ab2f6fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-cy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cy (<< 1:14.04+20140410), language-pack-cy-base, language-pack-gnome-cy (<< 1:14.04+20140410), language-pack-gnome-cy-base (<< 1:14.04+20140410), language-pack-kde-cy (<< 1:14.04+20140410), language-pack-kde-cy-base (<< 1:14.04+20140410) Depends: language-pack-cy-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-cy/language-pack-cy_14.04+20140410_all.deb Size: 1976 MD5sum: 97f78cc5439772ebf75d5d4baa10bd81 SHA1: 03ece323090ba61ff463647aea53c2a186cffb3a SHA256: 2dbb95adddedddafc970d1c86267ce696e2aa14074a68b0b353fc8a441a1a7ba Description: translation updates for language Welsh Description-md5: 237a3a7bfbd7baafb5578f26255a48d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-cy-base Priority: optional Section: translations Installed-Size: 172 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cy (<< 1:14.04+20140410), language-pack-cy-base (<< 1:14.04+20140410), language-pack-gnome-cy (<< 1:14.04+20140410), language-pack-gnome-cy-base (<< 1:14.04+20140410), language-pack-kde-cy (<< 1:14.04+20140410), language-pack-kde-cy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-cy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-cy Conflicts: language-pack-cy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-cy-base/language-pack-cy-base_14.04+20140410_all.deb Size: 42580 MD5sum: 3e59ff7eacf11a4b7d07af95fde6de51 SHA1: c06847113c8c1e26fa4e8247189411ad2653a80e SHA256: d00547f6f1c504c1e0f0475cd605a7963384d98fedf899b8e39c0fc8dc01fe63 Description: translations for language Welsh Description-md5: 26fd7802a1ad32b58ee571950199fd6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-da Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-da (<< 1:14.04+20140410), language-pack-da-base, language-pack-gnome-da (<< 1:14.04+20140410), language-pack-gnome-da-base (<< 1:14.04+20140410), language-pack-kde-da (<< 1:14.04+20140410), language-pack-kde-da-base (<< 1:14.04+20140410) Depends: language-pack-da-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-da/language-pack-da_14.04+20140410_all.deb Size: 1980 MD5sum: 55021062ec30db14962532d74b609630 SHA1: 61a057a16ee825e0e612012f6f1aaa4eff221895 SHA256: 9df77e483fd2f831a60938f912892a892738b04cb7e79c42c5a558e1a32c9806 Description: translation updates for language Danish Description-md5: fc5b985c1d9d555ab3e3dfc9c09c087b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-da-base Priority: optional Section: translations Installed-Size: 5117 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-da (<< 1:14.04+20140410), language-pack-da-base (<< 1:14.04+20140410), language-pack-gnome-da (<< 1:14.04+20140410), language-pack-gnome-da-base (<< 1:14.04+20140410), language-pack-kde-da (<< 1:14.04+20140410), language-pack-kde-da-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-da (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-da Conflicts: language-pack-da (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-da-base/language-pack-da-base_14.04+20140410_all.deb Size: 1625550 MD5sum: 701de353512623f2d9f972122ec79023 SHA1: 1fadef7ce72727162468089ae198418010d11f87 SHA256: 3106e30f71d6e86a50bff9e30fd464d33d4437765607830a9914c35634e6fdb3 Description: translations for language Danish Description-md5: 75d3ac723dbbaf2ea917ca16377b26f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-de Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-de (<< 1:14.04+20140410), language-pack-de-base, language-pack-gnome-de (<< 1:14.04+20140410), language-pack-gnome-de-base (<< 1:14.04+20140410), language-pack-kde-de (<< 1:14.04+20140410), language-pack-kde-de-base (<< 1:14.04+20140410) Depends: language-pack-de-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-de/language-pack-de_14.04+20140410_all.deb Size: 1984 MD5sum: 12bf28f4238b99c1aafbe98254475995 SHA1: cf269feefd1ce0d0d1399b67b280eaaf698e0786 SHA256: 211fe7c2ebcbfe88bc02a9cb8fa7c7e24c676c1786a03083cf5b37ab937f91ae Description: translation updates for language German Description-md5: 7e1003aa8b32be447478e2f728aca1c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-de-base Priority: optional Section: translations Installed-Size: 12003 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-de (<< 1:14.04+20140410), language-pack-de-base (<< 1:14.04+20140410), language-pack-gnome-de (<< 1:14.04+20140410), language-pack-gnome-de-base (<< 1:14.04+20140410), language-pack-kde-de (<< 1:14.04+20140410), language-pack-kde-de-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-de (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-de Conflicts: language-pack-de (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-de-base/language-pack-de-base_14.04+20140410_all.deb Size: 3609380 MD5sum: b6e887bb9af8d43119d7ed79bd418fe6 SHA1: a49757622e7a931a68c2ce08f849e72d6ace2caa SHA256: 694fb5af6ada9fdde97616ad208499fdf90550a082d4c186cfdc806fdfdccdbd Description: translations for language German Description-md5: cce71c30c95918c49a4b12ee178005ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-dv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dv (<< 1:14.04+20140410), language-pack-dv-base, language-pack-gnome-dv (<< 1:14.04+20140410), language-pack-gnome-dv-base (<< 1:14.04+20140410), language-pack-kde-dv (<< 1:14.04+20140410), language-pack-kde-dv-base (<< 1:14.04+20140410) Depends: language-pack-dv-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-dv/language-pack-dv_14.04+20140410_all.deb Size: 1998 MD5sum: 57415840b19970058654343fa51689b1 SHA1: 172f0e339fc3bcca5a640b52f9e569e6887d3260 SHA256: 71c8eedc3b41e967550bca3c54a59f99de2688607ccd73264445170200dc9a3c Description: translation updates for language Divehi; Dhivehi; Maldivian Description-md5: 71d2ea52e20184ff8de58b94cf0d7997 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-dv-base Priority: optional Section: translations Installed-Size: 83 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dv (<< 1:14.04+20140410), language-pack-dv-base (<< 1:14.04+20140410), language-pack-gnome-dv (<< 1:14.04+20140410), language-pack-gnome-dv-base (<< 1:14.04+20140410), language-pack-kde-dv (<< 1:14.04+20140410), language-pack-kde-dv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-dv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-dv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-dv-base/language-pack-dv-base_14.04+20140410_all.deb Size: 11836 MD5sum: d898e725caa25f171b725a3f39d2b533 SHA1: 3ba77e7a4a824114937a0f628a9f955e4e0e024f SHA256: 22998ccc8c3494e5b21f6677d6b6824f32b3ce5471c7c718245cbaa7b8cdb11f Description: translations for language Divehi; Dhivehi; Maldivian Description-md5: f147999b910001f79fe5d83a846f7afc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-dz Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dz (<< 1:14.04+20140410), language-pack-dz-base, language-pack-gnome-dz (<< 1:14.04+20140410), language-pack-gnome-dz-base (<< 1:14.04+20140410), language-pack-kde-dz (<< 1:14.04+20140410), language-pack-kde-dz-base (<< 1:14.04+20140410) Depends: language-pack-dz-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-dz/language-pack-dz_14.04+20140410_all.deb Size: 1996 MD5sum: ee5308dea1bbb65bd6d061041cf019e1 SHA1: 8d22d2afcb0bf9704115159835afbf9936de59a6 SHA256: 0e4bdbc599112c553327acabec494cff2bbe41d4908fa43048db3aca8d61124b Description: translation updates for language Dzongkha Description-md5: 08aa62e809ba382e782284536ab109dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-dz-base Priority: optional Section: translations Installed-Size: 783 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dz (<< 1:14.04+20140410), language-pack-dz-base (<< 1:14.04+20140410), language-pack-gnome-dz (<< 1:14.04+20140410), language-pack-gnome-dz-base (<< 1:14.04+20140410), language-pack-kde-dz (<< 1:14.04+20140410), language-pack-kde-dz-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-dz (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-dz (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-dz-base/language-pack-dz-base_14.04+20140410_all.deb Size: 131876 MD5sum: b9b8fb1178119ba524894554730b36a7 SHA1: 38506d07137a1a2de270dd065a09c53034fb1a37 SHA256: c3a2f4b82edab99d54b30709ad614e12a700f88c23ed1a5cc52ddc977cdda6bb Description: translations for language Dzongkha Description-md5: 8ed30f03c05041b4b42814ff34fab38f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-el Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-el (<< 1:14.04+20140410), language-pack-el-base, language-pack-gnome-el (<< 1:14.04+20140410), language-pack-gnome-el-base (<< 1:14.04+20140410), language-pack-kde-el (<< 1:14.04+20140410), language-pack-kde-el-base (<< 1:14.04+20140410) Depends: language-pack-el-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-el/language-pack-el_14.04+20140410_all.deb Size: 1984 MD5sum: ecccc9d159432dd40b9e549a0c2f7c01 SHA1: af7085f0e3fa02fe4fb994ee7f7552bbf06b5ed4 SHA256: bd5c51138220f1e91760d94e908d1e4db42f91409db6e0dfb361a42ae979ea72 Description: translation updates for language Greek, Modern (1453-) Description-md5: bf069b368d39f9c1d8f4eda8c75b5832 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-el-base Priority: optional Section: translations Installed-Size: 3643 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-el (<< 1:14.04+20140410), language-pack-el-base (<< 1:14.04+20140410), language-pack-gnome-el (<< 1:14.04+20140410), language-pack-gnome-el-base (<< 1:14.04+20140410), language-pack-kde-el (<< 1:14.04+20140410), language-pack-kde-el-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-el (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-el Conflicts: language-pack-el (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-el-base/language-pack-el-base_14.04+20140410_all.deb Size: 910270 MD5sum: b7d5287b16cfa4b6184690aa469b6436 SHA1: e2486d7411fbe85e254e97bbc2c2ba20a332384e SHA256: 1f817196555542c8b1715e8a3bacd757d3df899a1e83dfeb1f1e06572aa3cd5b Description: translations for language Greek, Modern (1453-) Description-md5: 801f1f369eb9ebad57eba9a14b69f2cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-en Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-en (<< 1:14.04+20140410), language-pack-en-base, language-pack-gnome-en (<< 1:14.04+20140410), language-pack-gnome-en-base (<< 1:14.04+20140410), language-pack-kde-en (<< 1:14.04+20140410), language-pack-kde-en-base (<< 1:14.04+20140410) Depends: language-pack-en-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-en/language-pack-en_14.04+20140410_all.deb Size: 1986 MD5sum: 1e207eb3fb9b4ef5c98bfe1689a28844 SHA1: 02d955b873d93c71a74afbe9955592f46706af74 SHA256: 1e1224c589c7f581368441fac46c65e2b41ff5c7febafd9f5412ee7a940b2a8d Description: translation updates for language English Description-md5: 1d50dcc1c889caf78b59116d95acb689 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: language-pack-en-base Priority: optional Section: translations Installed-Size: 4076 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-en (<< 1:14.04+20140410), language-pack-en-base (<< 1:14.04+20140410), language-pack-gnome-en (<< 1:14.04+20140410), language-pack-gnome-en-base (<< 1:14.04+20140410), language-pack-kde-en (<< 1:14.04+20140410), language-pack-kde-en-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-en (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-en Conflicts: language-pack-en (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-en-base/language-pack-en-base_14.04+20140410_all.deb Size: 850206 MD5sum: 5827ee01737867ece3602daedf997ed5 SHA1: a96a846473e546dbb62afe07fb571a10dbb3fd0e SHA256: 7900f115662363eedd741a63f652a2af4fd61a18883ea0b10ca546cafd355cb8 Description: translations for language English Description-md5: 4d50ec3e150f74689e2c54919b300631 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: language-pack-eo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eo (<< 1:14.04+20140410), language-pack-eo-base, language-pack-gnome-eo (<< 1:14.04+20140410), language-pack-gnome-eo-base (<< 1:14.04+20140410), language-pack-kde-eo (<< 1:14.04+20140410), language-pack-kde-eo-base (<< 1:14.04+20140410) Depends: language-pack-eo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-eo/language-pack-eo_14.04+20140410_all.deb Size: 1992 MD5sum: aef4d50cbe54ea79daea57b76d96c7a7 SHA1: 621f30fb20c561c662d523227b47fa85aabe9cc0 SHA256: 7eaf3cc4e3dfec6ca68d84b1c3f456ebf88be23af98f3eb4ed1a82e7d9faac61 Description: translation updates for language Esperanto Description-md5: 4d612644e4af68b4fad26a544958714b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-eo-base Priority: optional Section: translations Installed-Size: 2391 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eo (<< 1:14.04+20140410), language-pack-eo-base (<< 1:14.04+20140410), language-pack-gnome-eo (<< 1:14.04+20140410), language-pack-gnome-eo-base (<< 1:14.04+20140410), language-pack-kde-eo (<< 1:14.04+20140410), language-pack-kde-eo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-eo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-eo Conflicts: language-pack-eo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-eo-base/language-pack-eo-base_14.04+20140410_all.deb Size: 741754 MD5sum: 6d1faae22a71a7f5ecc1899a36e20d4a SHA1: c5d1e7af76de7ebd408106d832227c53b51c7524 SHA256: 0b62da972c23e1753ddfc8a1028077f149f3cf2dd99540e0d1409ace919aae0f Description: translations for language Esperanto Description-md5: 7131d1d335bbae33aa87fd61ebb8728e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-es Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-es (<< 1:14.04+20140410), language-pack-es-base, language-pack-gnome-es (<< 1:14.04+20140410), language-pack-gnome-es-base (<< 1:14.04+20140410), language-pack-kde-es (<< 1:14.04+20140410), language-pack-kde-es-base (<< 1:14.04+20140410) Depends: language-pack-es-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-es/language-pack-es_14.04+20140410_all.deb Size: 1988 MD5sum: 506a6800ce142cd4857a281db60c11c5 SHA1: 2150db93c7eb4f6163405a57248298dc6b1155d4 SHA256: 66c91341f32f7da23c70d8008ccc3f979ee069578e721545ac750ff8206664c3 Description: translation updates for language Spanish; Castilian Description-md5: 7a373fb17da933b78cbebcb492badd03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-es-base Priority: optional Section: translations Installed-Size: 13321 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-es (<< 1:14.04+20140410), language-pack-es-base (<< 1:14.04+20140410), language-pack-gnome-es (<< 1:14.04+20140410), language-pack-gnome-es-base (<< 1:14.04+20140410), language-pack-kde-es (<< 1:14.04+20140410), language-pack-kde-es-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-es (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-es Conflicts: language-pack-es (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-es-base/language-pack-es-base_14.04+20140410_all.deb Size: 3980786 MD5sum: 8b0761c924ee21e3f530d88df60276ca SHA1: 1470576e21d8e515ad13b6c8bd75bd447053292a SHA256: 42fb41465ebba9b8299225793071c5b214ce5aa0cb86ce9d37ff60c8fc5ace3c Description: translations for language Spanish; Castilian Description-md5: 1d6b26e2e1f0d7a530581fe3843d3540 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-et Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-et (<< 1:14.04+20140410), language-pack-et-base, language-pack-gnome-et (<< 1:14.04+20140410), language-pack-gnome-et-base (<< 1:14.04+20140410), language-pack-kde-et (<< 1:14.04+20140410), language-pack-kde-et-base (<< 1:14.04+20140410) Depends: language-pack-et-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-et/language-pack-et_14.04+20140410_all.deb Size: 1964 MD5sum: bb763a0ec0104e6070938f0a1cfc0859 SHA1: 71398a0179ec808546623f147a5c4edd88df5040 SHA256: f3394326fb5970f80513606e78417bc3a324d0c6d34f22fcb834a0f860586168 Description: translation updates for language Estonian Description-md5: 22b7da0baed9516fb9ce2d51cca0c41d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-et-base Priority: optional Section: translations Installed-Size: 2173 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-et (<< 1:14.04+20140410), language-pack-et-base (<< 1:14.04+20140410), language-pack-gnome-et (<< 1:14.04+20140410), language-pack-gnome-et-base (<< 1:14.04+20140410), language-pack-kde-et (<< 1:14.04+20140410), language-pack-kde-et-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-et (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-et Conflicts: language-pack-et (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-et-base/language-pack-et-base_14.04+20140410_all.deb Size: 678978 MD5sum: 281e95ec7cb5256e79126032bb28da54 SHA1: 1e3ffe78e4fbaab938fcaad8590e9c8dc676699d SHA256: aa772657e36dab494e73ca4141a218989fdd4a840e01db9cd6be731295a4f47a Description: translations for language Estonian Description-md5: d0009203f1fe500fb705a3840c1478f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-eu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eu (<< 1:14.04+20140410), language-pack-eu-base, language-pack-gnome-eu (<< 1:14.04+20140410), language-pack-gnome-eu-base (<< 1:14.04+20140410), language-pack-kde-eu (<< 1:14.04+20140410), language-pack-kde-eu-base (<< 1:14.04+20140410) Depends: language-pack-eu-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-eu/language-pack-eu_14.04+20140410_all.deb Size: 1974 MD5sum: f7209d38c7d7f4e8a2ed5d8b02f74b22 SHA1: ab9114e2d628d5f6bca3f4aa8b0d56a46148e0f8 SHA256: ff8f978fa9890995142bca7994e5b5c45d8119ef4349dddeccd1419d70a2d0ae Description: translation updates for language Basque Description-md5: 3df38419401806ba95f38ddb438ac3c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-eu-base Priority: optional Section: translations Installed-Size: 1839 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eu (<< 1:14.04+20140410), language-pack-eu-base (<< 1:14.04+20140410), language-pack-gnome-eu (<< 1:14.04+20140410), language-pack-gnome-eu-base (<< 1:14.04+20140410), language-pack-kde-eu (<< 1:14.04+20140410), language-pack-kde-eu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-eu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-eu Conflicts: language-pack-eu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-eu-base/language-pack-eu-base_14.04+20140410_all.deb Size: 565746 MD5sum: 9b430c7e5c0416e2f4a5eaababa93d36 SHA1: 76ecb6f647ba69f37551b82908ba17e62098722b SHA256: 8dc484e4cba41da33767375e2a13726c34ee955df4b66cb8e01ca8deacd31fb8 Description: translations for language Basque Description-md5: f66eef54282ee6ff8369aaacfffec24c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fa (<< 1:14.04+20140410), language-pack-fa-base, language-pack-gnome-fa (<< 1:14.04+20140410), language-pack-gnome-fa-base (<< 1:14.04+20140410), language-pack-kde-fa (<< 1:14.04+20140410), language-pack-kde-fa-base (<< 1:14.04+20140410) Depends: language-pack-fa-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fa/language-pack-fa_14.04+20140410_all.deb Size: 1970 MD5sum: 21c6bdc8b4d0cb4df50a6d6cb9a720bd SHA1: 1eb3be6f973b39f2d9d349aa59d276c8f12adbde SHA256: 40d154556f85d3c0081c5093820fd2e59ea21e8978edde152245ddf2221434f9 Description: translation updates for language Persian Description-md5: 12c78e97a2b9b2415cb66832cf0d8e0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fa-base Priority: optional Section: translations Installed-Size: 458 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fa (<< 1:14.04+20140410), language-pack-fa-base (<< 1:14.04+20140410), language-pack-gnome-fa (<< 1:14.04+20140410), language-pack-gnome-fa-base (<< 1:14.04+20140410), language-pack-kde-fa (<< 1:14.04+20140410), language-pack-kde-fa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-fa Conflicts: language-pack-fa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fa-base/language-pack-fa-base_14.04+20140410_all.deb Size: 115980 MD5sum: 34c0dc0bfccd41bc1527264982d71685 SHA1: 381d3c7b9215fb46d80360cf7cdf2ac2c45e3a4d SHA256: cfe785c83222f24fc9bf6d28c52d92153858ab39658db4603b91dedc77a6f7df Description: translations for language Persian Description-md5: 3d60abe7c26b4c5c64b88c3e5626cb74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ff Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ff (<< 1:14.04+20140410), language-pack-ff-base, language-pack-gnome-ff (<< 1:14.04+20140410), language-pack-gnome-ff-base (<< 1:14.04+20140410), language-pack-kde-ff (<< 1:14.04+20140410), language-pack-kde-ff-base (<< 1:14.04+20140410) Depends: language-pack-ff-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ff/language-pack-ff_14.04+20140410_all.deb Size: 1970 MD5sum: 8124b54c24f1c7e5fde58d792ea83380 SHA1: 31d1117653d772dbe7b043fa0a8cce3f88e3da0b SHA256: a429d64b4fb62d029e7b1c2d4f20e156acb35719b1cc5db8232298d1442ec208 Description: translation updates for language Fulah Description-md5: 4088f5e7c8292dc2fb07a9e80f92cefa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ff-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ff (<< 1:14.04+20140410), language-pack-ff-base (<< 1:14.04+20140410), language-pack-gnome-ff (<< 1:14.04+20140410), language-pack-gnome-ff-base (<< 1:14.04+20140410), language-pack-kde-ff (<< 1:14.04+20140410), language-pack-kde-ff-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ff (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ff (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ff-base/language-pack-ff-base_14.04+20140410_all.deb Size: 2312 MD5sum: 2ab05e2ada113e7a6635688e7a365e4d SHA1: 7d50d63f5d8d03c15313ab091961f1d7ea99c74e SHA256: 76eb0e582c458c8bcb371eaeea1390dc740164d4e5c2ac9f72e795657d070c33 Description: translations for language Fulah Description-md5: 856b3bf5e55a85f2407bfeb0135a39db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fi (<< 1:14.04+20140410), language-pack-fi-base, language-pack-gnome-fi (<< 1:14.04+20140410), language-pack-gnome-fi-base (<< 1:14.04+20140410), language-pack-kde-fi (<< 1:14.04+20140410), language-pack-kde-fi-base (<< 1:14.04+20140410) Depends: language-pack-fi-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fi/language-pack-fi_14.04+20140410_all.deb Size: 1970 MD5sum: d83625f84af8c0fdc152b26f43a88069 SHA1: 04d4467c5bcbc11aecc978ee51fcd60c5793ec38 SHA256: 54346e2c9912e61a6e22aa680e5a4d94894601b92b36d458227f6c4d6d47b195 Description: translation updates for language Finnish Description-md5: 5a3181df23020923606c71d3f11f2400 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fi-base Priority: optional Section: translations Installed-Size: 4853 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fi (<< 1:14.04+20140410), language-pack-fi-base (<< 1:14.04+20140410), language-pack-gnome-fi (<< 1:14.04+20140410), language-pack-gnome-fi-base (<< 1:14.04+20140410), language-pack-kde-fi (<< 1:14.04+20140410), language-pack-kde-fi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-fi Conflicts: language-pack-fi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fi-base/language-pack-fi-base_14.04+20140410_all.deb Size: 1514044 MD5sum: 51cc81cbd0d6341b47b30aa8f705b307 SHA1: 536cfc9e3f8595b80bcd313e22657b224079de3a SHA256: 16101d4e8ffe7090c0e5b6f8c78ade7b40a197984fd6d4a8583c81645d6545b8 Description: translations for language Finnish Description-md5: 69649dcd35128b8bab70b6a7c3423916 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fil Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fil (<< 1:14.04+20140410), language-pack-fil-base, language-pack-gnome-fil (<< 1:14.04+20140410), language-pack-gnome-fil-base (<< 1:14.04+20140410), language-pack-kde-fil (<< 1:14.04+20140410), language-pack-kde-fil-base (<< 1:14.04+20140410) Depends: language-pack-fil-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fil/language-pack-fil_14.04+20140410_all.deb Size: 1978 MD5sum: 1255f12ca3da4871be0b3b7546545522 SHA1: 5d8103813909840ecece7d8c7795e835bd444f10 SHA256: 94d0b6dba7f285d039534ba3c136c85abf2a8c348a328cf5d340fa7df09e6041 Description: translation updates for language Filipino Description-md5: f351fef4cc881a3c795e754e98cd3d97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fil-base Priority: optional Section: translations Installed-Size: 76 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fil (<< 1:14.04+20140410), language-pack-fil-base (<< 1:14.04+20140410), language-pack-gnome-fil (<< 1:14.04+20140410), language-pack-gnome-fil-base (<< 1:14.04+20140410), language-pack-kde-fil (<< 1:14.04+20140410), language-pack-kde-fil-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fil (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-fil (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fil-base/language-pack-fil-base_14.04+20140410_all.deb Size: 10698 MD5sum: 0111adaea14dc39d2b009d27fbeb99d9 SHA1: 0c8f7b4dfe51a23f941d0843769627b38d6be94c SHA256: ce3602fb45951742de2e4c0d1c72080563afc23980f4569a3815023c5b8b957b Description: translations for language Filipino Description-md5: 11a581c578643aa3cd64817e9b25f163 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fo (<< 1:14.04+20140410), language-pack-fo-base, language-pack-gnome-fo (<< 1:14.04+20140410), language-pack-gnome-fo-base (<< 1:14.04+20140410), language-pack-kde-fo (<< 1:14.04+20140410), language-pack-kde-fo-base (<< 1:14.04+20140410) Depends: language-pack-fo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fo/language-pack-fo_14.04+20140410_all.deb Size: 1982 MD5sum: 1c23f355ac6b2576b2e4d4cb34d1b062 SHA1: e63373829a008d68fc8210d258f77c453c25bfdd SHA256: fde98bef021ecc97a8ff3b1bcd05a442922b8cbab279fe62bfb976df6a5258e2 Description: translation updates for language Faroese Description-md5: ed9ea590d69244c2bdedfc4a4a41c2bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fo-base Priority: optional Section: translations Installed-Size: 136 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fo (<< 1:14.04+20140410), language-pack-fo-base (<< 1:14.04+20140410), language-pack-gnome-fo (<< 1:14.04+20140410), language-pack-gnome-fo-base (<< 1:14.04+20140410), language-pack-kde-fo (<< 1:14.04+20140410), language-pack-kde-fo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-fo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fo-base/language-pack-fo-base_14.04+20140410_all.deb Size: 32596 MD5sum: a614034d516a0c3a07c9f94bf4fab284 SHA1: c1515e1b30e4d62a85ceb1c9d54995e0518a421a SHA256: 53ce9ad5514dfc8f7e5fd675a932a472f096e0ea34962f47d9051e8ee950d44e Description: translations for language Faroese Description-md5: f95c425be0233b99f4a92c980e944570 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fr (<< 1:14.04+20140410), language-pack-fr-base, language-pack-gnome-fr (<< 1:14.04+20140410), language-pack-gnome-fr-base (<< 1:14.04+20140410), language-pack-kde-fr (<< 1:14.04+20140410), language-pack-kde-fr-base (<< 1:14.04+20140410) Depends: language-pack-fr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fr/language-pack-fr_14.04+20140410_all.deb Size: 1960 MD5sum: fad75b022da1ac744eec389bde0c6011 SHA1: b2068218d723ba56c90271e2d1730ed9b73ae7d1 SHA256: 560728505f1b683e89a741bf58b6b25ecea0a0650715726be7fd5b9a3b0026be Description: translation updates for language French Description-md5: 309dd7e54102d66deb2a59a73577d65d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-fr-base Priority: optional Section: translations Installed-Size: 10192 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fr (<< 1:14.04+20140410), language-pack-fr-base (<< 1:14.04+20140410), language-pack-gnome-fr (<< 1:14.04+20140410), language-pack-gnome-fr-base (<< 1:14.04+20140410), language-pack-kde-fr (<< 1:14.04+20140410), language-pack-kde-fr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-fr Conflicts: language-pack-fr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fr-base/language-pack-fr-base_14.04+20140410_all.deb Size: 3039260 MD5sum: bed4c4765ca1491f1ff09aca3bc1a71b SHA1: 51d9034dfd731eb853d3621fd388896d4651bea3 SHA256: 8d27a3b8f7293d288349aa1a6a8082bcb984de46dd12bd9e87a6f879d865b596 Description: translations for language French Description-md5: 9b0508a6b9e7b451bcdb734707b962a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-fur Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fur (<< 1:14.04+20140410), language-pack-fur-base, language-pack-gnome-fur (<< 1:14.04+20140410), language-pack-gnome-fur-base (<< 1:14.04+20140410), language-pack-kde-fur (<< 1:14.04+20140410), language-pack-kde-fur-base (<< 1:14.04+20140410) Depends: language-pack-fur-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fur/language-pack-fur_14.04+20140410_all.deb Size: 1968 MD5sum: 767624cceee37f8dc1fc32c5ce4ec7c4 SHA1: f1426527bd6f96a6312f239db985a7c230b20674 SHA256: cd959ad3025e47e86299e7744181478ba4d57be2d0c11dff712dcb8156a471fc Description: translation updates for language Friulian Description-md5: db72674d838c425e7a6eca326e7ab2a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fur-base Priority: optional Section: translations Installed-Size: 76 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fur (<< 1:14.04+20140410), language-pack-fur-base (<< 1:14.04+20140410), language-pack-gnome-fur (<< 1:14.04+20140410), language-pack-gnome-fur-base (<< 1:14.04+20140410), language-pack-kde-fur (<< 1:14.04+20140410), language-pack-kde-fur-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fur (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-fur (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fur-base/language-pack-fur-base_14.04+20140410_all.deb Size: 11104 MD5sum: 091431b046fae976d6f22d77bce3aeeb SHA1: 51d107b000206ee216530bf5734288c5df0e9d7c SHA256: ed9637374fcca7471487197c42799d034d7ad152f6d0c3543ece85d0e8f8b08e Description: translations for language Friulian Description-md5: 06f57bdef39db5007711fe13347d5e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fy (<< 1:14.04+20140410), language-pack-fy-base, language-pack-gnome-fy (<< 1:14.04+20140410), language-pack-gnome-fy-base (<< 1:14.04+20140410), language-pack-kde-fy (<< 1:14.04+20140410), language-pack-kde-fy-base (<< 1:14.04+20140410) Depends: language-pack-fy-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fy/language-pack-fy_14.04+20140410_all.deb Size: 1956 MD5sum: 5a2206cb1050578ab2242f574eb27a97 SHA1: f250841b11afb62fdf96befbab60f7b0781de081 SHA256: 20fb2e4bdae7312abca72696a31fb445cd3bb34c05cfdeaa576bf3af3786d45e Description: translation updates for language Western Frisian Description-md5: ccd4d4bb6f4681f06e04c2b8577e1a6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fy-base Priority: optional Section: translations Installed-Size: 84 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fy (<< 1:14.04+20140410), language-pack-fy-base (<< 1:14.04+20140410), language-pack-gnome-fy (<< 1:14.04+20140410), language-pack-gnome-fy-base (<< 1:14.04+20140410), language-pack-kde-fy (<< 1:14.04+20140410), language-pack-kde-fy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-fy Conflicts: language-pack-fy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fy-base/language-pack-fy-base_14.04+20140410_all.deb Size: 13036 MD5sum: 9a4e8e206bf9678a1be69c8fc32c81bf SHA1: 4117ce0f6b8197d19a3a605e6356adb88cad86d0 SHA256: cf890b7d2f1ecea20ca19613270ae15ae83f66a802aa3e07adbb1575683c0ac4 Description: translations for language Western Frisian Description-md5: e16544cbb4c091363255a6ee09033e4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ga Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ga (<< 1:14.04+20140410), language-pack-ga-base, language-pack-gnome-ga (<< 1:14.04+20140410), language-pack-gnome-ga-base (<< 1:14.04+20140410), language-pack-kde-ga (<< 1:14.04+20140410), language-pack-kde-ga-base (<< 1:14.04+20140410) Depends: language-pack-ga-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ga/language-pack-ga_14.04+20140410_all.deb Size: 1978 MD5sum: e46e82eebae2084b6da5691b3b704dba SHA1: 5eb210a50103808ef911d33e7c69d520646bb676 SHA256: 0ca48030adf0858239f01277ae66abc9956ca83b90edda4e864a23f1161429c7 Description: translation updates for language Irish Description-md5: afb72cd0308b4388a5de1d5376d8f710 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ga-base Priority: optional Section: translations Installed-Size: 1238 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ga (<< 1:14.04+20140410), language-pack-ga-base (<< 1:14.04+20140410), language-pack-gnome-ga (<< 1:14.04+20140410), language-pack-gnome-ga-base (<< 1:14.04+20140410), language-pack-kde-ga (<< 1:14.04+20140410), language-pack-kde-ga-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ga (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ga Conflicts: language-pack-ga (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ga-base/language-pack-ga-base_14.04+20140410_all.deb Size: 372930 MD5sum: 2baa825f2ba0b08ba5638d195c2f8e4a SHA1: d45f79b10523694b6377016bdb024590d45319a3 SHA256: 267baa60efda3f52b75d25765e3a8e510966fa474f81d3d0fe9b3b5d3f7a8880 Description: translations for language Irish Description-md5: dad2ef2f3b51f47660a1325ecb6e8444 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gd Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gd (<< 1:14.04+20140410), language-pack-gd-base, language-pack-gnome-gd (<< 1:14.04+20140410), language-pack-gnome-gd-base (<< 1:14.04+20140410), language-pack-kde-gd (<< 1:14.04+20140410), language-pack-kde-gd-base (<< 1:14.04+20140410) Depends: language-pack-gd-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gd/language-pack-gd_14.04+20140410_all.deb Size: 1968 MD5sum: 8fb589b10d12d1adba38e71040bd2ca2 SHA1: a97755a73401670d6a41172aad89a9a2b163ea8a SHA256: 5614efa0e69dea8b96e69ef97a99ab2f15b82cead24a70f386995989917df603 Description: translation updates for language Gaelic; Scottish Gaelic Description-md5: 0a78a0b775ced525d1b02c4dbd4bd246 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gd-base Priority: optional Section: translations Installed-Size: 556 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gd (<< 1:14.04+20140410), language-pack-gd-base (<< 1:14.04+20140410), language-pack-gnome-gd (<< 1:14.04+20140410), language-pack-gnome-gd-base (<< 1:14.04+20140410), language-pack-kde-gd (<< 1:14.04+20140410), language-pack-kde-gd-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gd (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-gd Conflicts: language-pack-gd (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gd-base/language-pack-gd-base_14.04+20140410_all.deb Size: 162860 MD5sum: d205b75b68cca093dcd7baf269f52a7c SHA1: 9f7229e0ad651f19d08f7d53a714092f28ec5900 SHA256: f2ba3f71e17c9d1efdfcc113b0e46841a20b8efb4e8490bbf18a60ffa5812403 Description: translations for language Gaelic; Scottish Gaelic Description-md5: c5dcf19f2ce8a70ee10441e51b9c9f4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gl (<< 1:14.04+20140410), language-pack-gl-base, language-pack-gnome-gl (<< 1:14.04+20140410), language-pack-gnome-gl-base (<< 1:14.04+20140410), language-pack-kde-gl (<< 1:14.04+20140410), language-pack-kde-gl-base (<< 1:14.04+20140410) Depends: language-pack-gl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gl/language-pack-gl_14.04+20140410_all.deb Size: 1986 MD5sum: e4714c04ab968e4def5a0962e77e32f5 SHA1: 1b825f065b0923e8737c3fa3f3d3bab40df38baf SHA256: 540d3780e8d02c964b40dff80b5eb0d6af72728e16dc16a3ba4f7a9de9b7cf5b Description: translation updates for language Galician Description-md5: 401e02a1f6e5b0070cbf6816eb820b99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gl-base Priority: optional Section: translations Installed-Size: 4774 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gl (<< 1:14.04+20140410), language-pack-gl-base (<< 1:14.04+20140410), language-pack-gnome-gl (<< 1:14.04+20140410), language-pack-gnome-gl-base (<< 1:14.04+20140410), language-pack-kde-gl (<< 1:14.04+20140410), language-pack-kde-gl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-gl Conflicts: language-pack-gl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gl-base/language-pack-gl-base_14.04+20140410_all.deb Size: 1473876 MD5sum: a4b5cde97d0984007d33e7515c2e6269 SHA1: 8f18d1ac58c55bea3ada7ff83e0cce60a7e965de SHA256: df23791f1d8b8f4c0e7057fc29cfc74a4548a55f1c5c0d39daca4dc555477e9e Description: translations for language Galician Description-md5: fdc37bc5f999ce7b299370b71557d91b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-aa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-aa (<< 1:14.04+20140410), language-pack-aa-base (<< 1:14.04+20140410), language-pack-gnome-aa (<< 1:14.04+20140410), language-pack-gnome-aa-base, language-pack-kde-aa (<< 1:14.04+20140410), language-pack-kde-aa-base (<< 1:14.04+20140410) Depends: language-pack-gnome-aa-base (>= 1:14.04+20140410), language-pack-aa Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-aa/language-pack-gnome-aa_14.04+20140410_all.deb Size: 2010 MD5sum: d37b0cae33901fd0791527275b43708c SHA1: 3193b17e95cd34fb0363549c0974a07c28487341 SHA256: 964d3916774aeb2f7bd2145e6e497d4d54a30891fee9a6cda768710eb9b444d1 Description: GNOME translation updates for language Afar Description-md5: 465ba2a19defd5c25ad711d044ce9ed7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-aa-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-aa (<< 1:14.04+20140410), language-pack-aa-base (<< 1:14.04+20140410), language-pack-gnome-aa (<< 1:14.04+20140410), language-pack-gnome-aa-base (<< 1:14.04+20140410), language-pack-kde-aa (<< 1:14.04+20140410), language-pack-kde-aa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-aa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-aa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-aa-base/language-pack-gnome-aa-base_14.04+20140410_all.deb Size: 5732 MD5sum: f6001c19d544e9d0bfcf1aa29b77ab50 SHA1: 2aefeb030c5deaf7b13e094eb6325e59d0ad6b5d SHA256: 1586831472350264b6df21dc23652e601565f7cb0bbc070d9603286d8a84e248 Description: GNOME translations for language Afar Description-md5: 59b0ce1007716d7295d7798f28946bd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-af Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-af (<< 1:14.04+20140410), language-pack-af-base (<< 1:14.04+20140410), language-pack-gnome-af (<< 1:14.04+20140410), language-pack-gnome-af-base, language-pack-kde-af (<< 1:14.04+20140410), language-pack-kde-af-base (<< 1:14.04+20140410) Depends: language-pack-gnome-af-base (>= 1:14.04+20140410), language-pack-af Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-af/language-pack-gnome-af_14.04+20140410_all.deb Size: 2010 MD5sum: 2a5992ba9a353b4e1c168a33f4b5a7af SHA1: 833340c5ed51a2b0a44342b9d7970af4dc861879 SHA256: b0690487192ba99c1805842b1742749a269fe3d4c20bb94013e49895da947eea Description: GNOME translation updates for language Afrikaans Description-md5: 03f00246cba45c8f55d1443f8e7dc385 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-af-base Priority: optional Section: translations Installed-Size: 1631 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-af (<< 1:14.04+20140410), language-pack-af-base (<< 1:14.04+20140410), language-pack-gnome-af (<< 1:14.04+20140410), language-pack-gnome-af-base (<< 1:14.04+20140410), language-pack-kde-af (<< 1:14.04+20140410), language-pack-kde-af-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-af (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-af (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-af-base/language-pack-gnome-af-base_14.04+20140410_all.deb Size: 517356 MD5sum: ee6bdc296e4973f7a3fe676d24ea9832 SHA1: 74f4403abf8daf812acc43966ab137f65469deb8 SHA256: 4d76919305d47943a0f6f876fb41dce11864a05814b22b624ecd722f1d0ff05f Description: GNOME translations for language Afrikaans Description-md5: 8e716c92217a4d1abc824304e2590795 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-am Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-am (<< 1:14.04+20140410), language-pack-am-base (<< 1:14.04+20140410), language-pack-gnome-am (<< 1:14.04+20140410), language-pack-gnome-am-base, language-pack-kde-am (<< 1:14.04+20140410), language-pack-kde-am-base (<< 1:14.04+20140410) Depends: language-pack-gnome-am-base (>= 1:14.04+20140410), language-pack-am Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-am/language-pack-gnome-am_14.04+20140410_all.deb Size: 2002 MD5sum: b005717c54f546df013b7fb0f8e8a29b SHA1: 34bf85b09d6f4827e2b964d6ed474d9a87953ff9 SHA256: 020d4115da5c8de9dc03314a3d90a2cadc503f531e7eb2bb45588b74ede11287 Description: GNOME translation updates for language Amharic Description-md5: 6a0f6906d5e65f8d586a550508d05fb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-am-base Priority: optional Section: translations Installed-Size: 1133 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-am (<< 1:14.04+20140410), language-pack-am-base (<< 1:14.04+20140410), language-pack-gnome-am (<< 1:14.04+20140410), language-pack-gnome-am-base (<< 1:14.04+20140410), language-pack-kde-am (<< 1:14.04+20140410), language-pack-kde-am-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-am (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-am (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-am-base/language-pack-gnome-am-base_14.04+20140410_all.deb Size: 242118 MD5sum: 1f99ca330a47e28cba438a1adc184402 SHA1: 637b2d25a3b32dd636facec1948bb857252a1689 SHA256: 2f730fd17a5047439bbfc81b7467c851f08c5414661c8e9c686da9b1e077b2f2 Description: GNOME translations for language Amharic Description-md5: fc178baa34307057585db99c60f5ae4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-an Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-an (<< 1:14.04+20140410), language-pack-an-base (<< 1:14.04+20140410), language-pack-gnome-an (<< 1:14.04+20140410), language-pack-gnome-an-base, language-pack-kde-an (<< 1:14.04+20140410), language-pack-kde-an-base (<< 1:14.04+20140410) Depends: language-pack-gnome-an-base (>= 1:14.04+20140410), language-pack-an Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-an/language-pack-gnome-an_14.04+20140410_all.deb Size: 1994 MD5sum: ae8ef8369a69d8d5a86292110f23bd60 SHA1: 8f399245ccd1c4072760c74e9db4cb333ddedbbf SHA256: 55b3464207632622bbbdcd194642dd63cf7ebef914ecfacc33f1516f296750b0 Description: GNOME translation updates for language Aragonese Description-md5: 0aac3e51000a31708c6f4462b77eafbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-an-base Priority: optional Section: translations Installed-Size: 815 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-an (<< 1:14.04+20140410), language-pack-an-base (<< 1:14.04+20140410), language-pack-gnome-an (<< 1:14.04+20140410), language-pack-gnome-an-base (<< 1:14.04+20140410), language-pack-kde-an (<< 1:14.04+20140410), language-pack-kde-an-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-an (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-an (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-an-base/language-pack-gnome-an-base_14.04+20140410_all.deb Size: 237992 MD5sum: 316b936a678fc54d49943dfcbc55c494 SHA1: f8bdfd2c2e30f76ffc29c0be9bd867fdfc50061e SHA256: ba705bf4338abda11f3be09138a24050180031d5cea1d96038f9cc1b832a0546 Description: GNOME translations for language Aragonese Description-md5: 4cc2b9efba21b7cd1d341f2b6448d179 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ar Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ar (<< 1:14.04+20140410), language-pack-ar-base (<< 1:14.04+20140410), language-pack-gnome-ar (<< 1:14.04+20140410), language-pack-gnome-ar-base, language-pack-kde-ar (<< 1:14.04+20140410), language-pack-kde-ar-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ar-base (>= 1:14.04+20140410), language-pack-ar Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ar/language-pack-gnome-ar_14.04+20140410_all.deb Size: 2022 MD5sum: 276bacb46f1deab2c1a22b3823a50383 SHA1: 9899baa4c28228709733084644ebd374816d656d SHA256: ccf8ac8db992a72fa3a4dc0bf17bd01b6e2bb74a533e2770e7768d9746778ec6 Description: GNOME translation updates for language Arabic Description-md5: 0f6f92054b1a7dc34e76963baffa4d89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ar-base Priority: optional Section: translations Installed-Size: 5591 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ar (<< 1:14.04+20140410), language-pack-ar-base (<< 1:14.04+20140410), language-pack-gnome-ar (<< 1:14.04+20140410), language-pack-gnome-ar-base (<< 1:14.04+20140410), language-pack-kde-ar (<< 1:14.04+20140410), language-pack-kde-ar-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ar (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ar (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ar-base/language-pack-gnome-ar-base_14.04+20140410_all.deb Size: 1485736 MD5sum: 1673fc2c648035395077629c56679b67 SHA1: f2833e8d93fae6e84a27d4bfe2cf37e9a6d093fd SHA256: 9e64eaddc38f6ab186ad4db3d1c66c46ccf17a79bde3712d062e9b5a257c805d Description: GNOME translations for language Arabic Description-md5: 6b409ad3ecfa0957ec92465c34b220a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-as Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-as (<< 1:14.04+20140410), language-pack-as-base (<< 1:14.04+20140410), language-pack-gnome-as (<< 1:14.04+20140410), language-pack-gnome-as-base, language-pack-kde-as (<< 1:14.04+20140410), language-pack-kde-as-base (<< 1:14.04+20140410) Depends: language-pack-gnome-as-base (>= 1:14.04+20140410), language-pack-as Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-as/language-pack-gnome-as_14.04+20140410_all.deb Size: 2016 MD5sum: 6fddfe2af75423a0ee133f9627cc4e7a SHA1: 9cc65047c769f3e636cb4da777f714fc62369576 SHA256: 06acfc86296bcf53923a008540efa3d141a997ac280c6490b49ff5760a700c68 Description: GNOME translation updates for language Assamese Description-md5: 44e6111f833f0bca06a9339dc76a1fa4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-as-base Priority: optional Section: translations Installed-Size: 4565 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-as (<< 1:14.04+20140410), language-pack-as-base (<< 1:14.04+20140410), language-pack-gnome-as (<< 1:14.04+20140410), language-pack-gnome-as-base (<< 1:14.04+20140410), language-pack-kde-as (<< 1:14.04+20140410), language-pack-kde-as-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-as (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-as (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-as-base/language-pack-gnome-as-base_14.04+20140410_all.deb Size: 993878 MD5sum: b51b657db25db8b472b46dc7a8f7888c SHA1: a112fcaf665f762f6bed60cb4deaef72e102c621 SHA256: 0b5697125bba49580fc09060a5553f67b8e383a372664f413a25328457b0039e Description: GNOME translations for language Assamese Description-md5: 9e5b46ee392770c61be053e586db1d1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ast Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ast (<< 1:14.04+20140410), language-pack-ast-base (<< 1:14.04+20140410), language-pack-gnome-ast (<< 1:14.04+20140410), language-pack-gnome-ast-base, language-pack-kde-ast (<< 1:14.04+20140410), language-pack-kde-ast-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ast-base (>= 1:14.04+20140410), language-pack-ast Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ast/language-pack-gnome-ast_14.04+20140410_all.deb Size: 2010 MD5sum: f34f348808b4c53f03974346a28afa68 SHA1: 7cbee94979b1ec7b815e23b4fa4f5ca4aa65f830 SHA256: e1e693d9617639d4003da2c58e8a7dcbb1da5bb55fb933ee98e66900e96f2bd2 Description: GNOME translation updates for language Asturian Description-md5: 6a3be15a2b74123351bfddd4c40ccb80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ast-base Priority: optional Section: translations Installed-Size: 5460 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ast (<< 1:14.04+20140410), language-pack-ast-base (<< 1:14.04+20140410), language-pack-gnome-ast (<< 1:14.04+20140410), language-pack-gnome-ast-base (<< 1:14.04+20140410), language-pack-kde-ast (<< 1:14.04+20140410), language-pack-kde-ast-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ast (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ast (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ast-base/language-pack-gnome-ast-base_14.04+20140410_all.deb Size: 1635232 MD5sum: acebc8207af8ac2f5e2f4131cf3661ec SHA1: a9fc5fe3bafa91320af79a77ab3da053de4c9716 SHA256: f3ee9c5fd7fa589b4e829c7b5c3898cf0f6240d6128ffb5b122d95c6cb131f5d Description: GNOME translations for language Asturian Description-md5: 29a3c2b3c1e77a9a015f376afe296fc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-az Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-az (<< 1:14.04+20140410), language-pack-az-base (<< 1:14.04+20140410), language-pack-gnome-az (<< 1:14.04+20140410), language-pack-gnome-az-base, language-pack-kde-az (<< 1:14.04+20140410), language-pack-kde-az-base (<< 1:14.04+20140410) Depends: language-pack-gnome-az-base (>= 1:14.04+20140410), language-pack-az Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-az/language-pack-gnome-az_14.04+20140410_all.deb Size: 2010 MD5sum: dd9e19e29df672ae1b2acdf64acd6113 SHA1: 4233288bc7ea822080d393b7be7889bd7c8cd508 SHA256: 6545d590af67d04d18234c2f3cd9be6f9e38a0dd856c552d315612d0fbca05dd Description: GNOME translation updates for language Azerbaijani Description-md5: 0586b807626a158d1c297704e9693094 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-az-base Priority: optional Section: translations Installed-Size: 1773 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-az (<< 1:14.04+20140410), language-pack-az-base (<< 1:14.04+20140410), language-pack-gnome-az (<< 1:14.04+20140410), language-pack-gnome-az-base (<< 1:14.04+20140410), language-pack-kde-az (<< 1:14.04+20140410), language-pack-kde-az-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-az (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-az (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-az-base/language-pack-gnome-az-base_14.04+20140410_all.deb Size: 439622 MD5sum: f09d1a36b2874279c22e2082c6d25013 SHA1: 886646a836e55912f088f544704c264c11b11145 SHA256: 7e62a65b2e84e62388fe547c814a81a283d0ccd760a6d84fbf88dcd58056a2f7 Description: GNOME translations for language Azerbaijani Description-md5: 4a0cc5000417da2b02fbaf7e1b56b638 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-be Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-be (<< 1:14.04+20140410), language-pack-be-base (<< 1:14.04+20140410), language-pack-gnome-be (<< 1:14.04+20140410), language-pack-gnome-be-base, language-pack-kde-be (<< 1:14.04+20140410), language-pack-kde-be-base (<< 1:14.04+20140410) Depends: language-pack-gnome-be-base (>= 1:14.04+20140410), language-pack-be Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-be/language-pack-gnome-be_14.04+20140410_all.deb Size: 2012 MD5sum: 35b095450936aaeecd33e4183ac9c06c SHA1: a09343d877a3ace92339e05742008811e9b38660 SHA256: b32e90c9d2c42cb935c82780e060afea02c773162b44b7309f26a2a6b56b2966 Description: GNOME translation updates for language Belarusian Description-md5: 96ea9c7f50faf1c2a796fb79251da380 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-be-base Priority: optional Section: translations Installed-Size: 6459 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-be (<< 1:14.04+20140410), language-pack-be-base (<< 1:14.04+20140410), language-pack-gnome-be (<< 1:14.04+20140410), language-pack-gnome-be-base (<< 1:14.04+20140410), language-pack-kde-be (<< 1:14.04+20140410), language-pack-kde-be-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-be (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-be (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-be-base/language-pack-gnome-be-base_14.04+20140410_all.deb Size: 1753712 MD5sum: e7634aac3fcd87cd0e08c69a40eca81a SHA1: 0220cd6db6f85df346a58223c1ccd9663e8125b6 SHA256: 0f5b78f7eed6c8f77e814a81ef0dacdd71aaaec8076e99fbfe17dba152b26a57 Description: GNOME translations for language Belarusian Description-md5: 2f05d17b9a548c01ecb664544f50ba1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bem Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bem (<< 1:14.04+20140410), language-pack-bem-base (<< 1:14.04+20140410), language-pack-gnome-bem (<< 1:14.04+20140410), language-pack-gnome-bem-base, language-pack-kde-bem (<< 1:14.04+20140410), language-pack-kde-bem-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bem-base (>= 1:14.04+20140410), language-pack-bem Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bem/language-pack-gnome-bem_14.04+20140410_all.deb Size: 2022 MD5sum: fbc19330249d5e609004911549b5ae61 SHA1: 184aac993bb99bcaa725ae9b3c93aeb09df6982d SHA256: 3ca9a92e723d1b819ebfb0c23339439f1731f24972fc532e89d6b7581acbf37e Description: GNOME translation updates for language Bemba (Zambia) Description-md5: b8f14bbeb2f24760fce51992fe1522e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bem-base Priority: optional Section: translations Installed-Size: 50 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bem (<< 1:14.04+20140410), language-pack-bem-base (<< 1:14.04+20140410), language-pack-gnome-bem (<< 1:14.04+20140410), language-pack-gnome-bem-base (<< 1:14.04+20140410), language-pack-kde-bem (<< 1:14.04+20140410), language-pack-kde-bem-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bem (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bem (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bem-base/language-pack-gnome-bem-base_14.04+20140410_all.deb Size: 7392 MD5sum: fe985e94d76c65f7301c86898e0c953b SHA1: 84132105dca01f5870244785865609f5b1796e8c SHA256: ffbe29c3a5c1949beeada209e4d117558ca83b3214400b63bc87d027067b6541 Description: GNOME translations for language Bemba (Zambia) Description-md5: 3e675e504c56683738036ded7e375a72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ber Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ber (<< 1:14.04+20140410), language-pack-ber-base (<< 1:14.04+20140410), language-pack-gnome-ber (<< 1:14.04+20140410), language-pack-gnome-ber-base, language-pack-kde-ber (<< 1:14.04+20140410), language-pack-kde-ber-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ber-base (>= 1:14.04+20140410), language-pack-ber Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ber/language-pack-gnome-ber_14.04+20140410_all.deb Size: 2034 MD5sum: cafc58bd5ecffc24c7638ff1a6b35ec1 SHA1: 42bcfe3541aeda1d29b8110a51688dbb8a741c44 SHA256: cf8d784fa823ba46020398b0c74a62aca64b46c3cf7dc41c034ed0511065f3fd Description: GNOME translation updates for language Berber languages Description-md5: 434c83b8a697928f35c9867f8c684ea3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ber-base Priority: optional Section: translations Installed-Size: 39 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ber (<< 1:14.04+20140410), language-pack-ber-base (<< 1:14.04+20140410), language-pack-gnome-ber (<< 1:14.04+20140410), language-pack-gnome-ber-base (<< 1:14.04+20140410), language-pack-kde-ber (<< 1:14.04+20140410), language-pack-kde-ber-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ber (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ber (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ber-base/language-pack-gnome-ber-base_14.04+20140410_all.deb Size: 2726 MD5sum: 50e79f06d3fbda5914863ba1275bf4d2 SHA1: c530953b9d1bd72c9562fbc8923f929c7b2e4055 SHA256: 4db9aa4d8010235fcf0602f0caca1d21358660cf81bac8c3bec0fd40682bde38 Description: GNOME translations for language Berber languages Description-md5: ffc57e61b310d1bddca40f1100428466 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bg (<< 1:14.04+20140410), language-pack-bg-base (<< 1:14.04+20140410), language-pack-gnome-bg (<< 1:14.04+20140410), language-pack-gnome-bg-base, language-pack-kde-bg (<< 1:14.04+20140410), language-pack-kde-bg-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bg-base (>= 1:14.04+20140410), language-pack-bg Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bg/language-pack-gnome-bg_14.04+20140410_all.deb Size: 1994 MD5sum: 9940f0a9efac7746200b3e05d8241c28 SHA1: 65b8196417d086491a641cd257aad0268c23d290 SHA256: 5c5203d71f141867aa66d8e7b45f076788c85cf7a4cda6575b28431190a6d350 Description: GNOME translation updates for language Bulgarian Description-md5: 39c75e4a5d413cd9c9ed74d6edc586d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bg-base Priority: optional Section: translations Installed-Size: 8273 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bg (<< 1:14.04+20140410), language-pack-bg-base (<< 1:14.04+20140410), language-pack-gnome-bg (<< 1:14.04+20140410), language-pack-gnome-bg-base (<< 1:14.04+20140410), language-pack-kde-bg (<< 1:14.04+20140410), language-pack-kde-bg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bg-base/language-pack-gnome-bg-base_14.04+20140410_all.deb Size: 2442748 MD5sum: 0c52172a103d1708f7b13b17c645dfbd SHA1: ae63a1e4bc73867fdcead4edb82e21bc49debbff SHA256: 0dbfdfd600c21b4e60e8286fc2e754661270e4d53e9145461e11797148508882 Description: GNOME translations for language Bulgarian Description-md5: 8a1d1b6f6fce08ac4b4f8f1b8b6c61ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bho Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bho (<< 1:14.04+20140410), language-pack-bho-base (<< 1:14.04+20140410), language-pack-gnome-bho (<< 1:14.04+20140410), language-pack-gnome-bho-base, language-pack-kde-bho (<< 1:14.04+20140410), language-pack-kde-bho-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bho-base (>= 1:14.04+20140410), language-pack-bho Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bho/language-pack-gnome-bho_14.04+20140410_all.deb Size: 2028 MD5sum: b8dad9bcbd09ad21cea34792e3ad2824 SHA1: be2319fc9195566907c7eff192b533048d5e0d68 SHA256: 09658839dbb284d3a09bf97ee03cbe65c287635a9fc40b0f3b1ca010ab23a29c Description: GNOME translation updates for language Bhojpuri Description-md5: 21240d1be764e70438124da003e4236d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bho-base Priority: optional Section: translations Installed-Size: 41 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bho (<< 1:14.04+20140410), language-pack-bho-base (<< 1:14.04+20140410), language-pack-gnome-bho (<< 1:14.04+20140410), language-pack-gnome-bho-base (<< 1:14.04+20140410), language-pack-kde-bho (<< 1:14.04+20140410), language-pack-kde-bho-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bho (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bho (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bho-base/language-pack-gnome-bho-base_14.04+20140410_all.deb Size: 3760 MD5sum: 9c5361f058f1827d1a03a70201bcceea SHA1: 0a4186c6d1da188753cf4cbc54638b00e295c606 SHA256: f021143f8b7fb449ce4221e3b292b3c7ea76a3281dd7d0ebcc11aaa52f6ef246 Description: GNOME translations for language Bhojpuri Description-md5: 54ce160c0a580f31e2b6ba05930db1ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bn (<< 1:14.04+20140410), language-pack-bn-base (<< 1:14.04+20140410), language-pack-gnome-bn (<< 1:14.04+20140410), language-pack-gnome-bn-base, language-pack-kde-bn (<< 1:14.04+20140410), language-pack-kde-bn-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bn-base (>= 1:14.04+20140410), language-pack-bn Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bn/language-pack-gnome-bn_14.04+20140410_all.deb Size: 2000 MD5sum: f1881d26a80a1db5ebffaaebe6cbfa7e SHA1: 37537e9b499ee9d72998ce10c5e5d779c24a4692 SHA256: 92b13f70da1a8573b1205a626cf222950dfc6bc49c07891c59d0f7edacc70435 Description: GNOME translation updates for language Bengali Description-md5: 618bad86984babbaea7527bcf3af1813 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-bn-base Priority: optional Section: translations Installed-Size: 5143 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bn (<< 1:14.04+20140410), language-pack-bn-base (<< 1:14.04+20140410), language-pack-gnome-bn (<< 1:14.04+20140410), language-pack-gnome-bn-base (<< 1:14.04+20140410), language-pack-kde-bn (<< 1:14.04+20140410), language-pack-kde-bn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bn-base/language-pack-gnome-bn-base_14.04+20140410_all.deb Size: 1100906 MD5sum: 1dc1a893faba527e059218f0838b89ee SHA1: fd845a609fa9786004cb6eb494dac67046120994 SHA256: f6589437c5ef1889009bf557b3694a944e14f4e99a23c75c316a9c6e9caa67d3 Description: GNOME translations for language Bengali Description-md5: 683861dab0513ec045b4707f39a7c1d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-bo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bo (<< 1:14.04+20140410), language-pack-bo-base (<< 1:14.04+20140410), language-pack-gnome-bo (<< 1:14.04+20140410), language-pack-gnome-bo-base, language-pack-kde-bo (<< 1:14.04+20140410), language-pack-kde-bo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bo-base (>= 1:14.04+20140410), language-pack-bo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bo/language-pack-gnome-bo_14.04+20140410_all.deb Size: 2020 MD5sum: 15ade55026f04ce6a6bb65c71e2ec295 SHA1: 38ed268d477f494c87fca50e534713a16331ee98 SHA256: bfa9ab423736ea9bca94abecab219c65cc893df3baed371411cc7df74bda1b6a Description: GNOME translation updates for language Tibetan Description-md5: 56d4ff5bbc721854ba87992bf16e98ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bo-base Priority: optional Section: translations Installed-Size: 2007 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bo (<< 1:14.04+20140410), language-pack-bo-base (<< 1:14.04+20140410), language-pack-gnome-bo (<< 1:14.04+20140410), language-pack-gnome-bo-base (<< 1:14.04+20140410), language-pack-kde-bo (<< 1:14.04+20140410), language-pack-kde-bo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bo-base/language-pack-gnome-bo-base_14.04+20140410_all.deb Size: 383778 MD5sum: 0b32813c4e5ba862eaff387504acb997 SHA1: e3201d7aecbfb018a08e2c9dbb001b72ffa62b7c SHA256: 8689832b1e183bda45a0182514a621af6ff4b04b873d9b125ae6a719b4fb533a Description: GNOME translations for language Tibetan Description-md5: 9bc1467dffd8ad92726244fced455f91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-br Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-br (<< 1:14.04+20140410), language-pack-br-base (<< 1:14.04+20140410), language-pack-gnome-br (<< 1:14.04+20140410), language-pack-gnome-br-base, language-pack-kde-br (<< 1:14.04+20140410), language-pack-kde-br-base (<< 1:14.04+20140410) Depends: language-pack-gnome-br-base (>= 1:14.04+20140410), language-pack-br Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-br/language-pack-gnome-br_14.04+20140410_all.deb Size: 2022 MD5sum: f546a14bb37a6b9af5d73da4e273c3a0 SHA1: f4bf5bddf4f8a6e900ca619512a7bcc1655de8cf SHA256: 07d949255c7e088317ccab42b18903f0e92c37ca8979d33f44946fc0b4ea1b5d Description: GNOME translation updates for language Breton Description-md5: 0e0fd3c24b3d534422651bb466272942 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-br-base Priority: optional Section: translations Installed-Size: 2859 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-br (<< 1:14.04+20140410), language-pack-br-base (<< 1:14.04+20140410), language-pack-gnome-br (<< 1:14.04+20140410), language-pack-gnome-br-base (<< 1:14.04+20140410), language-pack-kde-br (<< 1:14.04+20140410), language-pack-kde-br-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-br (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-br (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-br-base/language-pack-gnome-br-base_14.04+20140410_all.deb Size: 831670 MD5sum: 83a0eb729f541befba011fe7cca3f924 SHA1: 6f309a3a19967cf003c2dd9ba234a3b3dba49d6e SHA256: 133bba99b890a69ef52da5bebd4c19cf9153db10ac521ba533d1454c776c4f72 Description: GNOME translations for language Breton Description-md5: e9faf34a465a703d7b022af6b6b8bb42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bs (<< 1:14.04+20140410), language-pack-bs-base (<< 1:14.04+20140410), language-pack-gnome-bs (<< 1:14.04+20140410), language-pack-gnome-bs-base, language-pack-kde-bs (<< 1:14.04+20140410), language-pack-kde-bs-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bs-base (>= 1:14.04+20140410), language-pack-bs Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bs/language-pack-gnome-bs_14.04+20140410_all.deb Size: 1996 MD5sum: b40f8d30fbbd10214cbaf6e1b77172be SHA1: 7118449ace722055c7c1a96ea2226345cbaa0aef SHA256: f3f87033e397d357441eb436eefbd074dace238779b2fa89743b4b6b2b8456d7 Description: GNOME translation updates for language Bosnian Description-md5: 26d9ed7b5bbba1b9b962f4048b050736 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bs-base Priority: optional Section: translations Installed-Size: 6194 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bs (<< 1:14.04+20140410), language-pack-bs-base (<< 1:14.04+20140410), language-pack-gnome-bs (<< 1:14.04+20140410), language-pack-gnome-bs-base (<< 1:14.04+20140410), language-pack-kde-bs (<< 1:14.04+20140410), language-pack-kde-bs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bs-base/language-pack-gnome-bs-base_14.04+20140410_all.deb Size: 1926040 MD5sum: b075c61246f4d746b4ade18110a76d00 SHA1: ebd02698d87e02d5575cd1edfe011d7f880eb19c SHA256: 314fb760a2a0bb36774a09540dcf1725ff400dfbcda0140f9195f786c6435a5b Description: GNOME translations for language Bosnian Description-md5: 20a297709f48558e680c7ebc9220901a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ca Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ca (<< 1:14.04+20140410), language-pack-ca-base (<< 1:14.04+20140410), language-pack-gnome-ca (<< 1:14.04+20140410), language-pack-gnome-ca-base, language-pack-kde-ca (<< 1:14.04+20140410), language-pack-kde-ca-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ca-base (>= 1:14.04+20140410), language-pack-ca Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ca/language-pack-gnome-ca_14.04+20140410_all.deb Size: 2002 MD5sum: f498ad17080174ee2bc4fd4d4abf9ceb SHA1: 2953ca5d0a35e9f1bca1738c4730f6150899b199 SHA256: 9ad417e91451fe4098b85754296a75fdf82ee9440fc2aeb8e2cd9c25e9e239e1 Description: GNOME translation updates for language Catalan; Valencian Description-md5: ab87ef4d7d2098ed4c1a34a7f113d9bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ca-base Priority: optional Section: translations Installed-Size: 14246 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ca (<< 1:14.04+20140410), language-pack-ca-base (<< 1:14.04+20140410), language-pack-gnome-ca (<< 1:14.04+20140410), language-pack-gnome-ca-base (<< 1:14.04+20140410), language-pack-kde-ca (<< 1:14.04+20140410), language-pack-kde-ca-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ca (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ca (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ca-base/language-pack-gnome-ca-base_14.04+20140410_all.deb Size: 4182722 MD5sum: b7ad09cbe034e9f321086eed6ee41cff SHA1: 37b271b522aed7b3366a12233c7e7bbdd3318210 SHA256: ca82aa4ef7f04ad44fe83158a5875df1e3d9a7016287088c092c9bb672ce1c82 Description: GNOME translations for language Catalan; Valencian Description-md5: 4e3e5530fe505c7e26aae7e22b0c6082 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-crh Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-crh (<< 1:14.04+20140410), language-pack-crh-base (<< 1:14.04+20140410), language-pack-gnome-crh (<< 1:14.04+20140410), language-pack-gnome-crh-base, language-pack-kde-crh (<< 1:14.04+20140410), language-pack-kde-crh-base (<< 1:14.04+20140410) Depends: language-pack-gnome-crh-base (>= 1:14.04+20140410), language-pack-crh Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-crh/language-pack-gnome-crh_14.04+20140410_all.deb Size: 2012 MD5sum: a680d8e0b125da3b045de5816724b4b0 SHA1: 6f88b151d4e09acaf7f9edd70c1bb821dd68a852 SHA256: 8827216e3a8375274a1b732d79cf8527131959c58a6b120d166627be17a4f5f9 Description: GNOME translation updates for language Tatar, Crimean Description-md5: 34ec837b5f9517fa4cb242bc2911d9be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-crh-base Priority: optional Section: translations Installed-Size: 1542 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-crh (<< 1:14.04+20140410), language-pack-crh-base (<< 1:14.04+20140410), language-pack-gnome-crh (<< 1:14.04+20140410), language-pack-gnome-crh-base (<< 1:14.04+20140410), language-pack-kde-crh (<< 1:14.04+20140410), language-pack-kde-crh-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-crh (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-crh (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-crh-base/language-pack-gnome-crh-base_14.04+20140410_all.deb Size: 490080 MD5sum: 6b60220588f39f401a1d434dbccc64e3 SHA1: 8284063a15c117ca1b762701d89f086dd6151a37 SHA256: dcb283839c1e972b7236282e6f9d682141c574fc646626c12d7bebc4c9970d0b Description: GNOME translations for language Tatar, Crimean Description-md5: 96baee078fb9271f9d992c02185b3503 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cs (<< 1:14.04+20140410), language-pack-cs-base (<< 1:14.04+20140410), language-pack-gnome-cs (<< 1:14.04+20140410), language-pack-gnome-cs-base, language-pack-kde-cs (<< 1:14.04+20140410), language-pack-kde-cs-base (<< 1:14.04+20140410) Depends: language-pack-gnome-cs-base (>= 1:14.04+20140410), language-pack-cs Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-cs/language-pack-gnome-cs_14.04+20140410_all.deb Size: 2026 MD5sum: 644e93ac10e19fe28028bd250cf7b5d2 SHA1: a526b2d10d9864f7c3e52ebd192d74b056a886e9 SHA256: 6839cacae290af53f870fd25d28ca9537bdabd86ea7bea539adf5801455045fa Description: GNOME translation updates for language Czech Description-md5: 3f1f01e2f8dae65e579521a8e5e78a11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cs-base Priority: optional Section: translations Installed-Size: 9660 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cs (<< 1:14.04+20140410), language-pack-cs-base (<< 1:14.04+20140410), language-pack-gnome-cs (<< 1:14.04+20140410), language-pack-gnome-cs-base (<< 1:14.04+20140410), language-pack-kde-cs (<< 1:14.04+20140410), language-pack-kde-cs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-cs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-cs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-cs-base/language-pack-gnome-cs-base_14.04+20140410_all.deb Size: 3164450 MD5sum: e1edc9cb99d8a5d7398901629fc9fb46 SHA1: 8739f05696baf56663c4f05c6e6f7f88089e8782 SHA256: 24f31a37efa6f44fa8bae0a260fa7111d8318abac21a10def57ed817d0a1bedd Description: GNOME translations for language Czech Description-md5: 00a4405b87530e19774eeb1016adab80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-csb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-csb (<< 1:14.04+20140410), language-pack-csb-base (<< 1:14.04+20140410), language-pack-gnome-csb (<< 1:14.04+20140410), language-pack-gnome-csb-base, language-pack-kde-csb (<< 1:14.04+20140410), language-pack-kde-csb-base (<< 1:14.04+20140410) Depends: language-pack-gnome-csb-base (>= 1:14.04+20140410), language-pack-csb Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-csb/language-pack-gnome-csb_14.04+20140410_all.deb Size: 2010 MD5sum: f839d97ef9b655a317712bd23db77a95 SHA1: 47735554f05be323ec38923ee579371ae316d331 SHA256: 3650a1156ac498793081c5fe213d2afff55cff75b83fd4953a262f0ecba62d64 Description: GNOME translation updates for language Kashubian Description-md5: a68275ab880925493c02fb7b617163ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-csb-base Priority: optional Section: translations Installed-Size: 158 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-csb (<< 1:14.04+20140410), language-pack-csb-base (<< 1:14.04+20140410), language-pack-gnome-csb (<< 1:14.04+20140410), language-pack-gnome-csb-base (<< 1:14.04+20140410), language-pack-kde-csb (<< 1:14.04+20140410), language-pack-kde-csb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-csb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-csb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-csb-base/language-pack-gnome-csb-base_14.04+20140410_all.deb Size: 42798 MD5sum: 1e4ebad734bdc5b9f24e2f78ac9ae27c SHA1: b064fff5f2fbe5caa814b9afe82be4a8aa98a063 SHA256: 68b5af43dc04e5d38aedda2a29a89ea2872bc7725a2996af884d731ff1c936d8 Description: GNOME translations for language Kashubian Description-md5: d071c0b9bb569c8f77eb6f43204dee4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cv (<< 1:14.04+20140410), language-pack-cv-base (<< 1:14.04+20140410), language-pack-gnome-cv (<< 1:14.04+20140410), language-pack-gnome-cv-base, language-pack-kde-cv (<< 1:14.04+20140410), language-pack-kde-cv-base (<< 1:14.04+20140410) Depends: language-pack-gnome-cv-base (>= 1:14.04+20140410), language-pack-cv Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-cv/language-pack-gnome-cv_14.04+20140410_all.deb Size: 2026 MD5sum: 9640675c15ef4270f18d1cc989e6a574 SHA1: 112948bd2c4347d95233d4c6319ce1d7c5b85881 SHA256: ee847c5ffc998499a8346262a2f8e096459f99f04cf4f1ed45327344884c4bd6 Description: GNOME translation updates for language Chuvash Description-md5: 9ad1527306a851ff43c9b89336fe8a79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cv-base Priority: optional Section: translations Installed-Size: 69 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cv (<< 1:14.04+20140410), language-pack-cv-base (<< 1:14.04+20140410), language-pack-gnome-cv (<< 1:14.04+20140410), language-pack-gnome-cv-base (<< 1:14.04+20140410), language-pack-kde-cv (<< 1:14.04+20140410), language-pack-kde-cv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-cv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-cv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-cv-base/language-pack-gnome-cv-base_14.04+20140410_all.deb Size: 12320 MD5sum: 90668f2d03654235fbe7089495faf30f SHA1: 6319e9541e6da214f5ebe91a457ce12e02bad65e SHA256: 04f28018551e331d5dc8b2862340a3a767b2852580190781e129e310735f26fa Description: GNOME translations for language Chuvash Description-md5: cb8a93c30d4547469dc0b196647ad14d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cy (<< 1:14.04+20140410), language-pack-cy-base (<< 1:14.04+20140410), language-pack-gnome-cy (<< 1:14.04+20140410), language-pack-gnome-cy-base, language-pack-kde-cy (<< 1:14.04+20140410), language-pack-kde-cy-base (<< 1:14.04+20140410) Depends: language-pack-gnome-cy-base (>= 1:14.04+20140410), language-pack-cy Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-cy/language-pack-gnome-cy_14.04+20140410_all.deb Size: 2012 MD5sum: e2255bad19b671919c8121953a123cec SHA1: 8e7c754a6439353eaa468ab177a944751080e294 SHA256: 8c6f1ef62b7fd17b9f9e4644fbae85c74f31df9335decd324c74cee421387693 Description: GNOME translation updates for language Welsh Description-md5: ed81e88151014cb5147dce245cda6627 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cy-base Priority: optional Section: translations Installed-Size: 1518 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cy (<< 1:14.04+20140410), language-pack-cy-base (<< 1:14.04+20140410), language-pack-gnome-cy (<< 1:14.04+20140410), language-pack-gnome-cy-base (<< 1:14.04+20140410), language-pack-kde-cy (<< 1:14.04+20140410), language-pack-kde-cy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-cy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-cy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-cy-base/language-pack-gnome-cy-base_14.04+20140410_all.deb Size: 489040 MD5sum: 3718a1a4bdb144b42ce123021deebfd7 SHA1: 360607845522f599d2bdd574176857b3c2ad3f37 SHA256: 8ba5f6681e004dc1ef777acaa79db89e29a51bc4640acc33bcb1c6e6e7cc2643 Description: GNOME translations for language Welsh Description-md5: 8ca7498014d0db547925dd15582efc47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-da Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-da (<< 1:14.04+20140410), language-pack-da-base (<< 1:14.04+20140410), language-pack-gnome-da (<< 1:14.04+20140410), language-pack-gnome-da-base, language-pack-kde-da (<< 1:14.04+20140410), language-pack-kde-da-base (<< 1:14.04+20140410) Depends: language-pack-gnome-da-base (>= 1:14.04+20140410), language-pack-da Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-da/language-pack-gnome-da_14.04+20140410_all.deb Size: 2016 MD5sum: 77904fd2745226d88bd902081a47bb17 SHA1: 6c0089cb1a6a4ca2264cdc37dac79f4adf383031 SHA256: 6934a2b1e9f49388e4a0e286d8951f26d4e162986e1592233e1acb4dbc83a016 Description: GNOME translation updates for language Danish Description-md5: f351d23d28ad484bafd77fcc6fba4150 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-da-base Priority: optional Section: translations Installed-Size: 6373 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-da (<< 1:14.04+20140410), language-pack-da-base (<< 1:14.04+20140410), language-pack-gnome-da (<< 1:14.04+20140410), language-pack-gnome-da-base (<< 1:14.04+20140410), language-pack-kde-da (<< 1:14.04+20140410), language-pack-kde-da-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-da (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-da (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-da-base/language-pack-gnome-da-base_14.04+20140410_all.deb Size: 1793006 MD5sum: 0fb17fcd11bb59f4aa7cda32cd36b90e SHA1: fd01cadc8b203c8c1398b5bfe88efa5b392e256c SHA256: d9202e718a749ff8317b316f9923da10412595d4e4d1175ac634d8735d6cf884 Description: GNOME translations for language Danish Description-md5: e085e168402e89c38da8d5f7ed9dac1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-de Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-de (<< 1:14.04+20140410), language-pack-de-base (<< 1:14.04+20140410), language-pack-gnome-de (<< 1:14.04+20140410), language-pack-gnome-de-base, language-pack-kde-de (<< 1:14.04+20140410), language-pack-kde-de-base (<< 1:14.04+20140410) Depends: language-pack-gnome-de-base (>= 1:14.04+20140410), language-pack-de Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-de/language-pack-gnome-de_14.04+20140410_all.deb Size: 2006 MD5sum: 34ac728e32e4b04603f4b485cc90d0bf SHA1: 2c4e8325215bc282af6421073ef7c8026fc0882c SHA256: e7bfdc54c612c92aaac9c63fd67b2adb2ec07d5be0492a6e200c247842736929 Description: GNOME translation updates for language German Description-md5: a0958a91362128ab3efbd66e6933f5b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-gnome-de-base Priority: optional Section: translations Installed-Size: 17104 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-de (<< 1:14.04+20140410), language-pack-de-base (<< 1:14.04+20140410), language-pack-gnome-de (<< 1:14.04+20140410), language-pack-gnome-de-base (<< 1:14.04+20140410), language-pack-kde-de (<< 1:14.04+20140410), language-pack-kde-de-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-de (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-de (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-de-base/language-pack-gnome-de-base_14.04+20140410_all.deb Size: 7213326 MD5sum: 3c235a4049ad179fb85bf062289df9a1 SHA1: 27345280e23f2f7ae989fac61ccbd3b3a64c16e8 SHA256: 046154d1efb121bc0ce5b926d0cba0d331e6cd6bfd52a86d548d618ae28ae7bf Description: GNOME translations for language German Description-md5: f54c9d1d096ce5abd63fbb6d2bbf173e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-gnome-dv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dv (<< 1:14.04+20140410), language-pack-dv-base (<< 1:14.04+20140410), language-pack-gnome-dv (<< 1:14.04+20140410), language-pack-gnome-dv-base, language-pack-kde-dv (<< 1:14.04+20140410), language-pack-kde-dv-base (<< 1:14.04+20140410) Depends: language-pack-gnome-dv-base (>= 1:14.04+20140410), language-pack-dv Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-dv/language-pack-gnome-dv_14.04+20140410_all.deb Size: 2038 MD5sum: a9477a0d9fc04212f918084fa85b2fbd SHA1: 2274393027c2cd70dbd70ab6d651bab07d4da663 SHA256: ad7d690124d20a3290e00d3cf58f6510a31a3fbdf8552ec4fecbeb0619448446 Description: GNOME translation updates for language Divehi; Dhivehi; Maldivian Description-md5: c7f64160794a161eb3234142563f4154 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-dv-base Priority: optional Section: translations Installed-Size: 378 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dv (<< 1:14.04+20140410), language-pack-dv-base (<< 1:14.04+20140410), language-pack-gnome-dv (<< 1:14.04+20140410), language-pack-gnome-dv-base (<< 1:14.04+20140410), language-pack-kde-dv (<< 1:14.04+20140410), language-pack-kde-dv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-dv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-dv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-dv-base/language-pack-gnome-dv-base_14.04+20140410_all.deb Size: 86522 MD5sum: bdc894ff31c1e9582e9195fd4593d1be SHA1: 47afe23f933a74657b08f13fe43156b549bfcaff SHA256: fd6dc5650a61dc7f8e7f74eab58a3f6f4230329907300011a4cac08bf7bc870e Description: GNOME translations for language Divehi; Dhivehi; Maldivian Description-md5: a5a212de01f2a5da9a78258bae6baf31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-dz Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dz (<< 1:14.04+20140410), language-pack-dz-base (<< 1:14.04+20140410), language-pack-gnome-dz (<< 1:14.04+20140410), language-pack-gnome-dz-base, language-pack-kde-dz (<< 1:14.04+20140410), language-pack-kde-dz-base (<< 1:14.04+20140410) Depends: language-pack-gnome-dz-base (>= 1:14.04+20140410), language-pack-dz Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-dz/language-pack-gnome-dz_14.04+20140410_all.deb Size: 2008 MD5sum: c68a98eda214e3be0681a092ac5fd13d SHA1: 6db2e9d6439e3157996f41fb2c6848369e1b4555 SHA256: ab55f3db4e4fa9453f55c8c6c70188994d4a9d06b9373bcf82b5f03ee800ae7d Description: GNOME translation updates for language Dzongkha Description-md5: b1d3795c03d04099c6060bca58c796ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-dz-base Priority: optional Section: translations Installed-Size: 3618 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dz (<< 1:14.04+20140410), language-pack-dz-base (<< 1:14.04+20140410), language-pack-gnome-dz (<< 1:14.04+20140410), language-pack-gnome-dz-base (<< 1:14.04+20140410), language-pack-kde-dz (<< 1:14.04+20140410), language-pack-kde-dz-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-dz (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-dz (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-dz-base/language-pack-gnome-dz-base_14.04+20140410_all.deb Size: 678004 MD5sum: 3dc07c9f9d6154779b5af3370ad4d58e SHA1: f49479572343a97d45e13312d35c282617b41511 SHA256: c2849851990a54a6b70fb9576fd906219caa9790073c6fefadaf4bf323dd4c34 Description: GNOME translations for language Dzongkha Description-md5: 9f2dc473f82dbc7b0b961130085c12cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-el Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-el (<< 1:14.04+20140410), language-pack-el-base (<< 1:14.04+20140410), language-pack-gnome-el (<< 1:14.04+20140410), language-pack-gnome-el-base, language-pack-kde-el (<< 1:14.04+20140410), language-pack-kde-el-base (<< 1:14.04+20140410) Depends: language-pack-gnome-el-base (>= 1:14.04+20140410), language-pack-el Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-el/language-pack-gnome-el_14.04+20140410_all.deb Size: 2020 MD5sum: e4817267a2866d3b231d52e3f9965d35 SHA1: 21994f5018985b5965e4b5ff7c532d171c99e35a SHA256: 9109589be2debca138c86d5936795a07f5c387fd6393f16f874704d3bc586fdf Description: GNOME translation updates for language Greek, Modern (1453-) Description-md5: 6dbbb5bc65518f12afeb2c03afec9aea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-el-base Priority: optional Section: translations Installed-Size: 15597 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-el (<< 1:14.04+20140410), language-pack-el-base (<< 1:14.04+20140410), language-pack-gnome-el (<< 1:14.04+20140410), language-pack-gnome-el-base (<< 1:14.04+20140410), language-pack-kde-el (<< 1:14.04+20140410), language-pack-kde-el-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-el (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-el (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-el-base/language-pack-gnome-el-base_14.04+20140410_all.deb Size: 4161576 MD5sum: 40972f5aa6c8025ab057469b7d174301 SHA1: 87c31a2e850e52e829a032c243a26db904469de2 SHA256: 07ba2cad79ae8f10e0aea47efbb1065cfbe0d7d63192478362f91ea794877590 Description: GNOME translations for language Greek, Modern (1453-) Description-md5: 0e506815db01ae3de0db70d82358b239 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-en Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-en (<< 1:14.04+20140410), language-pack-en-base (<< 1:14.04+20140410), language-pack-gnome-en (<< 1:14.04+20140410), language-pack-gnome-en-base, language-pack-kde-en (<< 1:14.04+20140410), language-pack-kde-en-base (<< 1:14.04+20140410) Depends: language-pack-gnome-en-base (>= 1:14.04+20140410), language-pack-en Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-en/language-pack-gnome-en_14.04+20140410_all.deb Size: 2018 MD5sum: b5fa52a22281d9397cba48cb0a5639cb SHA1: 697fbf4a2b87c1d2958107bf27eb66458060df25 SHA256: 09c8d72df49c6f426dd71ab403e1a85695061c7d4a7f2282b43a2bb292abb241 Description: GNOME translation updates for language English Description-md5: f157b41ce91b17658e35473d760b0ee8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-dvd-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: language-pack-gnome-en-base Priority: optional Section: translations Installed-Size: 7019 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-en (<< 1:14.04+20140410), language-pack-en-base (<< 1:14.04+20140410), language-pack-gnome-en (<< 1:14.04+20140410), language-pack-gnome-en-base (<< 1:14.04+20140410), language-pack-kde-en (<< 1:14.04+20140410), language-pack-kde-en-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-en (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-en (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-en-base/language-pack-gnome-en-base_14.04+20140410_all.deb Size: 1296544 MD5sum: 9ef62f4174f1efab4ef5422bc6f87b2b SHA1: 3356f3963fbb96d25d7dcb67193288b84303abf8 SHA256: 1e3aaf33693bd7b01790fb86c16bcf2cc4b8ef3582d19eec24d51db407be725e Description: GNOME translations for language English Description-md5: 6dcf0d0aa5e8c80949aea145d961d4ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-dvd-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: language-pack-gnome-eo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eo (<< 1:14.04+20140410), language-pack-eo-base (<< 1:14.04+20140410), language-pack-gnome-eo (<< 1:14.04+20140410), language-pack-gnome-eo-base, language-pack-kde-eo (<< 1:14.04+20140410), language-pack-kde-eo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-eo-base (>= 1:14.04+20140410), language-pack-eo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-eo/language-pack-gnome-eo_14.04+20140410_all.deb Size: 2008 MD5sum: 7ffbe0cced6176a8ad20b5f1005741ba SHA1: 91990bceb09e3ba7fbc79c9078c38c85fa8b4c1f SHA256: d7f5874123caa646ef3e2d64407651e8fb9e08587271e2c79811f16975e29577 Description: GNOME translation updates for language Esperanto Description-md5: ceacc3b2057b1f72d1b6327d8759fbeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-eo-base Priority: optional Section: translations Installed-Size: 3054 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eo (<< 1:14.04+20140410), language-pack-eo-base (<< 1:14.04+20140410), language-pack-gnome-eo (<< 1:14.04+20140410), language-pack-gnome-eo-base (<< 1:14.04+20140410), language-pack-kde-eo (<< 1:14.04+20140410), language-pack-kde-eo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-eo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-eo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-eo-base/language-pack-gnome-eo-base_14.04+20140410_all.deb Size: 999636 MD5sum: afe6e7630d6f17bb00ef5ced2d6ca545 SHA1: 81335aed275e771b90666d04d266c34d67ccd1d1 SHA256: 6274713bd2cf6bb472803467c2eaf01affc05c2616b1931994c1e202ad812dfc Description: GNOME translations for language Esperanto Description-md5: 86d3eb823a1db57d463e3879f090b212 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-es Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-es (<< 1:14.04+20140410), language-pack-es-base (<< 1:14.04+20140410), language-pack-gnome-es (<< 1:14.04+20140410), language-pack-gnome-es-base, language-pack-kde-es (<< 1:14.04+20140410), language-pack-kde-es-base (<< 1:14.04+20140410) Depends: language-pack-gnome-es-base (>= 1:14.04+20140410), language-pack-es Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-es/language-pack-gnome-es_14.04+20140410_all.deb Size: 2022 MD5sum: 4908f95b2c7be2063bfec61019d29280 SHA1: c0e8f626328105d0a6ff55db1000300ab4fa6ffb SHA256: c60a31562df62d8b055389e1418e60b41c2933d329e97c364e81d45a63d85960 Description: GNOME translation updates for language Spanish; Castilian Description-md5: 7a7b33095707884163c9cbe9ae7373b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-es-base Priority: optional Section: translations Installed-Size: 13595 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-es (<< 1:14.04+20140410), language-pack-es-base (<< 1:14.04+20140410), language-pack-gnome-es (<< 1:14.04+20140410), language-pack-gnome-es-base (<< 1:14.04+20140410), language-pack-kde-es (<< 1:14.04+20140410), language-pack-kde-es-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-es (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-es (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-es-base/language-pack-gnome-es-base_14.04+20140410_all.deb Size: 4584814 MD5sum: 3e361118e34965d8d3b4114ed9c7d3ba SHA1: 50589bf6145ff8679f8cc7260dd57a75e07f8e2f SHA256: ed143f4f72bd8b73d99ca8956cc6d46d0fe5761ae83cf46371ec50be84230950 Description: GNOME translations for language Spanish; Castilian Description-md5: 983d0cbe31440ccade3b4083c6c8d49e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-et Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-et (<< 1:14.04+20140410), language-pack-et-base (<< 1:14.04+20140410), language-pack-gnome-et (<< 1:14.04+20140410), language-pack-gnome-et-base, language-pack-kde-et (<< 1:14.04+20140410), language-pack-kde-et-base (<< 1:14.04+20140410) Depends: language-pack-gnome-et-base (>= 1:14.04+20140410), language-pack-et Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-et/language-pack-gnome-et_14.04+20140410_all.deb Size: 2006 MD5sum: 13b8834256191e815ba447056515c828 SHA1: 11904ae0a360669cd65849383db51146c0b910c3 SHA256: bd829559f25164fb7b0e86c3c68ad431e34908c8c5640211400c47bb23015766 Description: GNOME translation updates for language Estonian Description-md5: fab1585cf3e8c550080ac329d5e52581 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-et-base Priority: optional Section: translations Installed-Size: 4377 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-et (<< 1:14.04+20140410), language-pack-et-base (<< 1:14.04+20140410), language-pack-gnome-et (<< 1:14.04+20140410), language-pack-gnome-et-base (<< 1:14.04+20140410), language-pack-kde-et (<< 1:14.04+20140410), language-pack-kde-et-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-et (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-et (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-et-base/language-pack-gnome-et-base_14.04+20140410_all.deb Size: 1309972 MD5sum: ea6808f4c5c5e4c1a68e7d23125cf550 SHA1: f61ffa36e93d2ebb31149c8e3488982cf0d54500 SHA256: 1a6c1c2dc2dc05ad4a7b778c3d06833544727994767c6552db9d1e852fb1b6c0 Description: GNOME translations for language Estonian Description-md5: 09789edfaecf691231d91a73a577d329 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-eu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eu (<< 1:14.04+20140410), language-pack-eu-base (<< 1:14.04+20140410), language-pack-gnome-eu (<< 1:14.04+20140410), language-pack-gnome-eu-base, language-pack-kde-eu (<< 1:14.04+20140410), language-pack-kde-eu-base (<< 1:14.04+20140410) Depends: language-pack-gnome-eu-base (>= 1:14.04+20140410), language-pack-eu Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-eu/language-pack-gnome-eu_14.04+20140410_all.deb Size: 2008 MD5sum: 048e44def5577b28141f5c098cdfbf99 SHA1: b1ec3727a480453cf662fbdf9b2ec798c7a1c7a1 SHA256: d56dff52079adb26e90020fa844d44a41c2731eecce712cca6a5441a49350667 Description: GNOME translation updates for language Basque Description-md5: 9d58b7ea5c4c440d487ef4a0edfc5906 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-eu-base Priority: optional Section: translations Installed-Size: 9140 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eu (<< 1:14.04+20140410), language-pack-eu-base (<< 1:14.04+20140410), language-pack-gnome-eu (<< 1:14.04+20140410), language-pack-gnome-eu-base (<< 1:14.04+20140410), language-pack-kde-eu (<< 1:14.04+20140410), language-pack-kde-eu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-eu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-eu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-eu-base/language-pack-gnome-eu-base_14.04+20140410_all.deb Size: 3257298 MD5sum: dcb9602358b825284e5f8d3bab95fe88 SHA1: 2282349bc6a65f05fc9eddbc44d270f8faf352ad SHA256: dd607cde495778dbf6cbbb266c490b3e0ec516668da2dc327ac43088a7027c80 Description: GNOME translations for language Basque Description-md5: 601a3771386658d41ca9f180a5d6ac5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fa (<< 1:14.04+20140410), language-pack-fa-base (<< 1:14.04+20140410), language-pack-gnome-fa (<< 1:14.04+20140410), language-pack-gnome-fa-base, language-pack-kde-fa (<< 1:14.04+20140410), language-pack-kde-fa-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fa-base (>= 1:14.04+20140410), language-pack-fa Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fa/language-pack-gnome-fa_14.04+20140410_all.deb Size: 2026 MD5sum: f14992585c33bbe503b95e665c0b9db8 SHA1: 47ebb437fba9adddb54c8f00d5e7781e7a512eee SHA256: 9c3841bebfd85c2ce90be65f3fee4e813ef4cfff1cbea63be78cbc1b077ac053 Description: GNOME translation updates for language Persian Description-md5: 551205c028d3eef0365255924c6f6016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fa-base Priority: optional Section: translations Installed-Size: 3031 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fa (<< 1:14.04+20140410), language-pack-fa-base (<< 1:14.04+20140410), language-pack-gnome-fa (<< 1:14.04+20140410), language-pack-gnome-fa-base (<< 1:14.04+20140410), language-pack-kde-fa (<< 1:14.04+20140410), language-pack-kde-fa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fa-base/language-pack-gnome-fa-base_14.04+20140410_all.deb Size: 830516 MD5sum: a5465a7f310dde0c7d016a10163071ea SHA1: a72c6e951d747a652d65e45a464d5350bf8a2669 SHA256: f071761a434ec6cfcbb55e1e8468fe7b37f1ce21b9c7434ba9433fa64e05f053 Description: GNOME translations for language Persian Description-md5: 52384612794213c4d4d9f267a0463a98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ff Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ff (<< 1:14.04+20140410), language-pack-ff-base (<< 1:14.04+20140410), language-pack-gnome-ff (<< 1:14.04+20140410), language-pack-gnome-ff-base, language-pack-kde-ff (<< 1:14.04+20140410), language-pack-kde-ff-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ff-base (>= 1:14.04+20140410), language-pack-ff Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ff/language-pack-gnome-ff_14.04+20140410_all.deb Size: 2000 MD5sum: 58fdf265a7ebca75618ec9656a157755 SHA1: 9d0a05508b7f2b4eb7c66b102b0d2ab415e35022 SHA256: 79c5ee075ccb429799d7056b80d9a339605a2e33b45140bc1ebb4717c04b5f6e Description: GNOME translation updates for language Fulah Description-md5: 306a1ca4120144a0c3a770761e425c0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ff-base Priority: optional Section: translations Installed-Size: 39 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ff (<< 1:14.04+20140410), language-pack-ff-base (<< 1:14.04+20140410), language-pack-gnome-ff (<< 1:14.04+20140410), language-pack-gnome-ff-base (<< 1:14.04+20140410), language-pack-kde-ff (<< 1:14.04+20140410), language-pack-kde-ff-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ff (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ff (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ff-base/language-pack-gnome-ff-base_14.04+20140410_all.deb Size: 2822 MD5sum: 776f4f77f394e382514615013116a487 SHA1: 2f7770a7a36517b0fbda6bfb0ab54687b8589a9b SHA256: 75cf8c9e8a39c9a64e7e77f56aefdc13e9428f9e432ea097e6e38962e055b432 Description: GNOME translations for language Fulah Description-md5: 2283d7be6b64e6dc1d60ec39072e1306 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fi (<< 1:14.04+20140410), language-pack-fi-base (<< 1:14.04+20140410), language-pack-gnome-fi (<< 1:14.04+20140410), language-pack-gnome-fi-base, language-pack-kde-fi (<< 1:14.04+20140410), language-pack-kde-fi-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fi-base (>= 1:14.04+20140410), language-pack-fi Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fi/language-pack-gnome-fi_14.04+20140410_all.deb Size: 2002 MD5sum: a9668d0f9b51cc340fe3a0dce988ef20 SHA1: 3a8a55c9712c3f9b14773ae0e2ebe901e20d03ff SHA256: 381da965dc3143d2cf51dc153f02377b21479c550436902536a9c2f0ebbb70fa Description: GNOME translation updates for language Finnish Description-md5: 04748a1b6c60eb8cb3ed435bc40e6c63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fi-base Priority: optional Section: translations Installed-Size: 7393 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fi (<< 1:14.04+20140410), language-pack-fi-base (<< 1:14.04+20140410), language-pack-gnome-fi (<< 1:14.04+20140410), language-pack-gnome-fi-base (<< 1:14.04+20140410), language-pack-kde-fi (<< 1:14.04+20140410), language-pack-kde-fi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fi-base/language-pack-gnome-fi-base_14.04+20140410_all.deb Size: 2111158 MD5sum: 8f1dc9f689e2d352a911de3761339e61 SHA1: 6cf8805c88618f9969cdc3dd4d9afd4b162a5b0c SHA256: 1117ca7b0a42221352cccebcf740c57db45f2006c0da520113a07587935ea75c Description: GNOME translations for language Finnish Description-md5: fc10ffbbd8a598c55917993acbe77a9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fil Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fil (<< 1:14.04+20140410), language-pack-fil-base (<< 1:14.04+20140410), language-pack-gnome-fil (<< 1:14.04+20140410), language-pack-gnome-fil-base, language-pack-kde-fil (<< 1:14.04+20140410), language-pack-kde-fil-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fil-base (>= 1:14.04+20140410), language-pack-fil Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fil/language-pack-gnome-fil_14.04+20140410_all.deb Size: 2006 MD5sum: 18fb9693a8d0938305d4670064688baf SHA1: 1312a6a477e973cf71663bc5393b90ba8da2e854 SHA256: f3ab414a8127632a1fd2483b32aaf6bb65dbffce69ef443007cbbd3d2ea49287 Description: GNOME translation updates for language Filipino Description-md5: 994e6f9bb26ea7f5b18a544330dea20f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fil-base Priority: optional Section: translations Installed-Size: 120 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fil (<< 1:14.04+20140410), language-pack-fil-base (<< 1:14.04+20140410), language-pack-gnome-fil (<< 1:14.04+20140410), language-pack-gnome-fil-base (<< 1:14.04+20140410), language-pack-kde-fil (<< 1:14.04+20140410), language-pack-kde-fil-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fil (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fil (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fil-base/language-pack-gnome-fil-base_14.04+20140410_all.deb Size: 29366 MD5sum: 4ca3776a28a7e4f7cae157880ec7f671 SHA1: de4eb22c0c640f7aa85b8b74ebad52c2fc091aba SHA256: 5d1053dc92064ebef05f537f45cc1395f936c8232ed53832ea339dce06bec0a5 Description: GNOME translations for language Filipino Description-md5: 27792fe59a82f17297f7063131ff0c81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fo (<< 1:14.04+20140410), language-pack-fo-base (<< 1:14.04+20140410), language-pack-gnome-fo (<< 1:14.04+20140410), language-pack-gnome-fo-base, language-pack-kde-fo (<< 1:14.04+20140410), language-pack-kde-fo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fo-base (>= 1:14.04+20140410), language-pack-fo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fo/language-pack-gnome-fo_14.04+20140410_all.deb Size: 1996 MD5sum: a0dbcd3a826fef00a5b5882451bcd195 SHA1: 2f395a0876308a730f6d27117e32beec8b96c607 SHA256: 624ae0d6c170e855ada1a8f71a1c24a2e2d353a2591e4f82a0a7478f91e9f6ef Description: GNOME translation updates for language Faroese Description-md5: e505f858592774d131cf480d44a66bc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fo-base Priority: optional Section: translations Installed-Size: 918 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fo (<< 1:14.04+20140410), language-pack-fo-base (<< 1:14.04+20140410), language-pack-gnome-fo (<< 1:14.04+20140410), language-pack-gnome-fo-base (<< 1:14.04+20140410), language-pack-kde-fo (<< 1:14.04+20140410), language-pack-kde-fo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fo-base/language-pack-gnome-fo-base_14.04+20140410_all.deb Size: 182100 MD5sum: f0b5ec05e89f368c97e20e816d4a967b SHA1: d9a4e3c1fd43b9ffccd294b4cb7690ef6125acf0 SHA256: 410cc956392b962d0ff532267bfed628cd934e8057eda0fe067be843f10f9563 Description: GNOME translations for language Faroese Description-md5: ad827fc1fba03b1536905c35d2d01824 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fr (<< 1:14.04+20140410), language-pack-fr-base (<< 1:14.04+20140410), language-pack-gnome-fr (<< 1:14.04+20140410), language-pack-gnome-fr-base, language-pack-kde-fr (<< 1:14.04+20140410), language-pack-kde-fr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fr-base (>= 1:14.04+20140410), language-pack-fr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fr/language-pack-gnome-fr_14.04+20140410_all.deb Size: 2002 MD5sum: 1bd6837cb367e36a821ccfc72e3fdba6 SHA1: ddd92e04b1f7dbe11f826184f5d94df01e7b5661 SHA256: 018942e36b733469ecdf79c62499ea552aeeed3ec71da6b5b466a0419c05acff Description: GNOME translation updates for language French Description-md5: 21adbce30a921a4d7cc42bf6b23ce710 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-gnome-fr-base Priority: optional Section: translations Installed-Size: 15334 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fr (<< 1:14.04+20140410), language-pack-fr-base (<< 1:14.04+20140410), language-pack-gnome-fr (<< 1:14.04+20140410), language-pack-gnome-fr-base (<< 1:14.04+20140410), language-pack-kde-fr (<< 1:14.04+20140410), language-pack-kde-fr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fr-base/language-pack-gnome-fr-base_14.04+20140410_all.deb Size: 5310174 MD5sum: f81d08786f451fd9b3e7e50fef8e4c5d SHA1: 5a74d9815f09e29554313c88a2ee6863d613d5e6 SHA256: f1d6bc2663203cfaf719d7a3b79169e0c6b1ef0915e6d11550e62d611ecce120 Description: GNOME translations for language French Description-md5: b901a09fbcee9911358fb23d15c18001 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-gnome-fur Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fur (<< 1:14.04+20140410), language-pack-fur-base (<< 1:14.04+20140410), language-pack-gnome-fur (<< 1:14.04+20140410), language-pack-gnome-fur-base, language-pack-kde-fur (<< 1:14.04+20140410), language-pack-kde-fur-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fur-base (>= 1:14.04+20140410), language-pack-fur Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fur/language-pack-gnome-fur_14.04+20140410_all.deb Size: 2026 MD5sum: 85fae7c5a1ae5dbe7c64cd1aded5f2e5 SHA1: a7c651f4f78a2eaba8065402a19d4ad698a0eca6 SHA256: 502c9cf8c149fa9d8942b0d5e84f39a1fb306183bb756fc7176cdecbb1214ffe Description: GNOME translation updates for language Friulian Description-md5: 59d75262a1634576c2eea782910d9e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fur-base Priority: optional Section: translations Installed-Size: 358 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fur (<< 1:14.04+20140410), language-pack-fur-base (<< 1:14.04+20140410), language-pack-gnome-fur (<< 1:14.04+20140410), language-pack-gnome-fur-base (<< 1:14.04+20140410), language-pack-kde-fur (<< 1:14.04+20140410), language-pack-kde-fur-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fur (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fur (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fur-base/language-pack-gnome-fur-base_14.04+20140410_all.deb Size: 100654 MD5sum: 5c40b99bcc15ab0c4a1ba5d79cd9a85b SHA1: fe9fe53ba0a9a5178c2750d6b75a1ea7e7c7b199 SHA256: 4fe25faec9451782a6393d4915864f1e7dd74656b608cd41a8ff575447035664 Description: GNOME translations for language Friulian Description-md5: 1b22c65e63a13d96b4dd14a3e0265b1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fy (<< 1:14.04+20140410), language-pack-fy-base (<< 1:14.04+20140410), language-pack-gnome-fy (<< 1:14.04+20140410), language-pack-gnome-fy-base, language-pack-kde-fy (<< 1:14.04+20140410), language-pack-kde-fy-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fy-base (>= 1:14.04+20140410), language-pack-fy Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fy/language-pack-gnome-fy_14.04+20140410_all.deb Size: 2036 MD5sum: a19eac1e29da4288d0910a5757a02d57 SHA1: 4352aa4ce22aa8325e54be65ed298a2b5d193cbe SHA256: 1893846564c97a280e2fb213739b5ca4f11fbe905e6e9ab21dcf3bf5e6de8480 Description: GNOME translation updates for language Western Frisian Description-md5: fe574fd39ec51e5587da6fa4f22fbeda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fy-base Priority: optional Section: translations Installed-Size: 409 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fy (<< 1:14.04+20140410), language-pack-fy-base (<< 1:14.04+20140410), language-pack-gnome-fy (<< 1:14.04+20140410), language-pack-gnome-fy-base (<< 1:14.04+20140410), language-pack-kde-fy (<< 1:14.04+20140410), language-pack-kde-fy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fy-base/language-pack-gnome-fy-base_14.04+20140410_all.deb Size: 113914 MD5sum: a177f0cbff78d3605cd6f4acc6a8f90e SHA1: a2a3c36788414b5c4954c5e6b31894323d4e04f2 SHA256: f6553cb00b446b2b9e65a6f5369e2ea140d9fe09d87ff557e1d0b19bf897dbea Description: GNOME translations for language Western Frisian Description-md5: 6d368dded6d79f66721ae864f2259bfa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ga Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ga (<< 1:14.04+20140410), language-pack-ga-base (<< 1:14.04+20140410), language-pack-gnome-ga (<< 1:14.04+20140410), language-pack-gnome-ga-base, language-pack-kde-ga (<< 1:14.04+20140410), language-pack-kde-ga-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ga-base (>= 1:14.04+20140410), language-pack-ga Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ga/language-pack-gnome-ga_14.04+20140410_all.deb Size: 2014 MD5sum: 97ab83252be9774d2e391e6e7e80355d SHA1: 3f07a7355252fcb16aa8d3b79025deb2ac9e6b2c SHA256: 09b9f96f6cfe013dcf8a8b73540a1034d0084d570b5eaa6b9060d1a5cbcb7dde Description: GNOME translation updates for language Irish Description-md5: 0cc908d04c46970488a92d91e1fa3eb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ga-base Priority: optional Section: translations Installed-Size: 1121 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ga (<< 1:14.04+20140410), language-pack-ga-base (<< 1:14.04+20140410), language-pack-gnome-ga (<< 1:14.04+20140410), language-pack-gnome-ga-base (<< 1:14.04+20140410), language-pack-kde-ga (<< 1:14.04+20140410), language-pack-kde-ga-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ga (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ga (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ga-base/language-pack-gnome-ga-base_14.04+20140410_all.deb Size: 354506 MD5sum: dd05256728afcd53f772b7162aeff2ff SHA1: 1ddf3f41aaa9e85214ada70cf15d7cef281890ec SHA256: 9264189af00db2069185c79108681278511ab7769a4b36c206da9435da8d1a16 Description: GNOME translations for language Irish Description-md5: 4b0fc4db3cca34a82e094aa0594f30aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gd Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gd (<< 1:14.04+20140410), language-pack-gd-base (<< 1:14.04+20140410), language-pack-gnome-gd (<< 1:14.04+20140410), language-pack-gnome-gd-base, language-pack-kde-gd (<< 1:14.04+20140410), language-pack-kde-gd-base (<< 1:14.04+20140410) Depends: language-pack-gnome-gd-base (>= 1:14.04+20140410), language-pack-gd Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-gd/language-pack-gnome-gd_14.04+20140410_all.deb Size: 2004 MD5sum: 701e28e63e2b38c4a66778f229380308 SHA1: 6f961bf9b1e890913adf977f56092de7810947d5 SHA256: 525fa261a8d5f46f5b57b48c7636c63237e6174f08a2587e4a9a8d03ceb0e469 Description: GNOME translation updates for language Gaelic; Scottish Gaelic Description-md5: d3d41a5b8521d7116325ee5f62bc4b6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gd-base Priority: optional Section: translations Installed-Size: 2484 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gd (<< 1:14.04+20140410), language-pack-gd-base (<< 1:14.04+20140410), language-pack-gnome-gd (<< 1:14.04+20140410), language-pack-gnome-gd-base (<< 1:14.04+20140410), language-pack-kde-gd (<< 1:14.04+20140410), language-pack-kde-gd-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-gd (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-gd (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-gd-base/language-pack-gnome-gd-base_14.04+20140410_all.deb Size: 715362 MD5sum: c08adc7bb5d7cda554c68fa4c03046d6 SHA1: 5c72e5248732b51e27d137558af84fb69d16a7b6 SHA256: 88ee8f740d9dfe5d6dd38a94026ba8f80aa1347f18c1395e0a4457d77dde1ec4 Description: GNOME translations for language Gaelic; Scottish Gaelic Description-md5: dcb3564a2bab75ff5ce823b7dfd6e695 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gl (<< 1:14.04+20140410), language-pack-gl-base (<< 1:14.04+20140410), language-pack-gnome-gl (<< 1:14.04+20140410), language-pack-gnome-gl-base, language-pack-kde-gl (<< 1:14.04+20140410), language-pack-kde-gl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-gl-base (>= 1:14.04+20140410), language-pack-gl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-gl/language-pack-gnome-gl_14.04+20140410_all.deb Size: 2024 MD5sum: 3232a9cf703e88bcaf322c05cb8f7776 SHA1: 2c5ab2dee28df7f443b6a94f95e52802f1e293f1 SHA256: 89be70d19d859155a6b09a126c9199bafb7891852c273385a33bdbc206efdf2d Description: GNOME translation updates for language Galician Description-md5: 3f6b490651b0c00a48c9d5ea7dbb0540 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gl-base Priority: optional Section: translations Installed-Size: 9486 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gl (<< 1:14.04+20140410), language-pack-gl-base (<< 1:14.04+20140410), language-pack-gnome-gl (<< 1:14.04+20140410), language-pack-gnome-gl-base (<< 1:14.04+20140410), language-pack-kde-gl (<< 1:14.04+20140410), language-pack-kde-gl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-gl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-gl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-gl-base/language-pack-gnome-gl-base_14.04+20140410_all.deb Size: 2590082 MD5sum: 4337df2497e378b4f165139dfb8359b2 SHA1: bf06eadcf7518290929a8a1be5fcb90c93688a1a SHA256: f688b60c4218335eb0ecb3448ef436aea925bbd348ce6ec89458eda47bacb3fa Description: GNOME translations for language Galician Description-md5: b58d2983ed777a15a2ad903880d96493 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gu (<< 1:14.04+20140410), language-pack-gnome-gu-base, language-pack-gu (<< 1:14.04+20140410), language-pack-gu-base (<< 1:14.04+20140410), language-pack-kde-gu (<< 1:14.04+20140410), language-pack-kde-gu-base (<< 1:14.04+20140410) Depends: language-pack-gnome-gu-base (>= 1:14.04+20140410), language-pack-gu Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-gu/language-pack-gnome-gu_14.04+20140410_all.deb Size: 2012 MD5sum: 2e30001c1b4a439d2b3aef8865ad2263 SHA1: 80d2676bcc1b25d49ca7681bb580f601ad221350 SHA256: 463c626454d61810eea02f5f7d8d63d5bd7d0f40ae15ce1e4ffd515e2adb0974 Description: GNOME translation updates for language Gujarati Description-md5: bf62acc24f1c0ad53a1acb347048aaf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gu-base Priority: optional Section: translations Installed-Size: 5109 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gu (<< 1:14.04+20140410), language-pack-gnome-gu-base (<< 1:14.04+20140410), language-pack-gu (<< 1:14.04+20140410), language-pack-gu-base (<< 1:14.04+20140410), language-pack-kde-gu (<< 1:14.04+20140410), language-pack-kde-gu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-gu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-gu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-gu-base/language-pack-gnome-gu-base_14.04+20140410_all.deb Size: 1148014 MD5sum: 5b017392f527f62da8ef08e7c4a95448 SHA1: af464dcf307cdf5e54f3ee395a76d89142f582f7 SHA256: 26164b170de20f244c037bbb40436a9ae46f31fc9658eeec21ac4329e7051ca4 Description: GNOME translations for language Gujarati Description-md5: f7582ec407a93e7d514123e211b2df50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gv (<< 1:14.04+20140410), language-pack-gnome-gv-base, language-pack-gv (<< 1:14.04+20140410), language-pack-gv-base (<< 1:14.04+20140410), language-pack-kde-gv (<< 1:14.04+20140410), language-pack-kde-gv-base (<< 1:14.04+20140410) Depends: language-pack-gnome-gv-base (>= 1:14.04+20140410), language-pack-gv Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-gv/language-pack-gnome-gv_14.04+20140410_all.deb Size: 2006 MD5sum: 60f5d24fb1aa4483e7d64ca89fa37242 SHA1: fc6b81e761d02ddebc891435f739571ca88c3d1b SHA256: 1e2275ca010b10bf6c6e229369ccc5363252e09003dcd4b3a45a85e786819e1c Description: GNOME translation updates for language Manx Description-md5: f8ff66d663013ba21c25d4837b858694 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gv-base Priority: optional Section: translations Installed-Size: 236 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gv (<< 1:14.04+20140410), language-pack-gnome-gv-base (<< 1:14.04+20140410), language-pack-gv (<< 1:14.04+20140410), language-pack-gv-base (<< 1:14.04+20140410), language-pack-kde-gv (<< 1:14.04+20140410), language-pack-kde-gv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-gv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-gv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-gv-base/language-pack-gnome-gv-base_14.04+20140410_all.deb Size: 66494 MD5sum: 7a0ccaca6467a1a04f3544c2c140d9a8 SHA1: e14a0920893e483678ae05235f3bea2d17f2af17 SHA256: 6343738eaa83dca905e4b087963996875af2e995b84b88cb97a02d63ff1dc41e Description: GNOME translations for language Manx Description-md5: e558809b15364c524dac0755838ba627 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ha Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ha (<< 1:14.04+20140410), language-pack-gnome-ha-base, language-pack-ha (<< 1:14.04+20140410), language-pack-ha-base (<< 1:14.04+20140410), language-pack-kde-ha (<< 1:14.04+20140410), language-pack-kde-ha-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ha-base (>= 1:14.04+20140410), language-pack-ha Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ha/language-pack-gnome-ha_14.04+20140410_all.deb Size: 1996 MD5sum: 276566e36f702a435be3ed50d8a6a857 SHA1: 5497b5dbc33e59b26f352af28b2374a6a74be378 SHA256: 2b09edec3ddbfbf993a930f2290183bb342f45f4da65f671272d46514f6a9101 Description: GNOME translation updates for language Hausa Description-md5: 4a7ba7424f53091ad20bcd041997e08c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ha-base Priority: optional Section: translations Installed-Size: 66 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ha (<< 1:14.04+20140410), language-pack-gnome-ha-base (<< 1:14.04+20140410), language-pack-ha (<< 1:14.04+20140410), language-pack-ha-base (<< 1:14.04+20140410), language-pack-kde-ha (<< 1:14.04+20140410), language-pack-kde-ha-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ha (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ha (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ha-base/language-pack-gnome-ha-base_14.04+20140410_all.deb Size: 12828 MD5sum: a23627e561d3de2145f50b9b9329e7b5 SHA1: c3bac8f1a7730232e746548a27c5c12b5c43ea93 SHA256: ef95ea84f97cbef5c6b7f72d445368edc67a59d5b8957fe19d922da13b634b95 Description: GNOME translations for language Hausa Description-md5: 7cf14c3e0dc4153f5a08791a1daa2c10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-he Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-he (<< 1:14.04+20140410), language-pack-gnome-he-base, language-pack-he (<< 1:14.04+20140410), language-pack-he-base (<< 1:14.04+20140410), language-pack-kde-he (<< 1:14.04+20140410), language-pack-kde-he-base (<< 1:14.04+20140410) Depends: language-pack-gnome-he-base (>= 1:14.04+20140410), language-pack-he Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-he/language-pack-gnome-he_14.04+20140410_all.deb Size: 2002 MD5sum: 14bfe86a28f37e6db505561ac2b33cdc SHA1: 12bd221e2bd7fc278bc314581d53bda862569e85 SHA256: fddba78d16fece899fb59f13f6d5a695fae8a5bd8f3ddeea3f1300d85cd99610 Description: GNOME translation updates for language Hebrew Description-md5: 011d59ad93627223b59a1d2f1f8ba819 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-he-base Priority: optional Section: translations Installed-Size: 5297 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-he (<< 1:14.04+20140410), language-pack-gnome-he-base (<< 1:14.04+20140410), language-pack-he (<< 1:14.04+20140410), language-pack-he-base (<< 1:14.04+20140410), language-pack-kde-he (<< 1:14.04+20140410), language-pack-kde-he-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-he (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-he (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-he-base/language-pack-gnome-he-base_14.04+20140410_all.deb Size: 1396782 MD5sum: 6fc065b562cd7f32526fb4514143610e SHA1: 485ea88c7afbc59fa1ae5e258a386b6c2f06bbd8 SHA256: b5c86b78d16af83f88aff65b01fc8c16eee104e7b8e2a2a11510fce30e5e2db0 Description: GNOME translations for language Hebrew Description-md5: beff55082040d0366e73f9ae97bb8be5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hi (<< 1:14.04+20140410), language-pack-gnome-hi-base, language-pack-hi (<< 1:14.04+20140410), language-pack-hi-base (<< 1:14.04+20140410), language-pack-kde-hi (<< 1:14.04+20140410), language-pack-kde-hi-base (<< 1:14.04+20140410) Depends: language-pack-gnome-hi-base (>= 1:14.04+20140410), language-pack-hi Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-hi/language-pack-gnome-hi_14.04+20140410_all.deb Size: 1998 MD5sum: dc6436a77c7f79da3594adacc602cc4f SHA1: cda94520b86ea10da8428e5af380597318b740f4 SHA256: 69db1fe800372ceb5bd95e7eb7b86317cfb9147172476d9367fdb322a6fb703f Description: GNOME translation updates for language Hindi Description-md5: 9d65f9fe672554b8a95723b2f44b0535 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-hi-base Priority: optional Section: translations Installed-Size: 6800 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hi (<< 1:14.04+20140410), language-pack-gnome-hi-base (<< 1:14.04+20140410), language-pack-hi (<< 1:14.04+20140410), language-pack-hi-base (<< 1:14.04+20140410), language-pack-kde-hi (<< 1:14.04+20140410), language-pack-kde-hi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-hi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-hi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-hi-base/language-pack-gnome-hi-base_14.04+20140410_all.deb Size: 1445656 MD5sum: ec2ba6fdab7101a40fb70d8063c4f227 SHA1: e8102a179f1b105f52c57e0ef065ec0ac9fea611 SHA256: 1dc24d54bbe45c85bdfab13601845697ed78e15905a8e6fd14c718e0846fbc97 Description: GNOME translations for language Hindi Description-md5: 8971cdb99d712d856b39264edf215aa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-hr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hr (<< 1:14.04+20140410), language-pack-gnome-hr-base, language-pack-hr (<< 1:14.04+20140410), language-pack-hr-base (<< 1:14.04+20140410), language-pack-kde-hr (<< 1:14.04+20140410), language-pack-kde-hr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-hr-base (>= 1:14.04+20140410), language-pack-hr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-hr/language-pack-gnome-hr_14.04+20140410_all.deb Size: 1980 MD5sum: 3851435d09a9437271f720d098948ced SHA1: d5d3d5ee7b218a0147d1f9afe14fb54f4bb868c7 SHA256: 1374b3200f11698a05dda1dcc2a88d254cf892b3d6f2865a35e41cbe21d7ad14 Description: GNOME translation updates for language Croatian Description-md5: 044892d57458d04841f2ae46766bbe68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hr-base Priority: optional Section: translations Installed-Size: 3622 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hr (<< 1:14.04+20140410), language-pack-gnome-hr-base (<< 1:14.04+20140410), language-pack-hr (<< 1:14.04+20140410), language-pack-hr-base (<< 1:14.04+20140410), language-pack-kde-hr (<< 1:14.04+20140410), language-pack-kde-hr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-hr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-hr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-hr-base/language-pack-gnome-hr-base_14.04+20140410_all.deb Size: 1064430 MD5sum: 06817a293d5208bdffb56871d0aee5f7 SHA1: f9db8e23aae396c56d4ffeefc0416f34b8d0573c SHA256: afcd7e030b8316bf88c53251f4551f96a0770fc05a0203099ab058518cde8aa5 Description: GNOME translations for language Croatian Description-md5: 11be93aa79c21ac5e9d40b3719403117 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ht Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ht (<< 1:14.04+20140410), language-pack-gnome-ht-base, language-pack-ht (<< 1:14.04+20140410), language-pack-ht-base (<< 1:14.04+20140410), language-pack-kde-ht (<< 1:14.04+20140410), language-pack-kde-ht-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ht-base (>= 1:14.04+20140410), language-pack-ht Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ht/language-pack-gnome-ht_14.04+20140410_all.deb Size: 2044 MD5sum: d026def6f49a85d52dc456b48cef9032 SHA1: 0066f18272fe6ed4787e2f9815604fe47ff2ede3 SHA256: c73a804ba3c83fb54c6b785d83636a7be9b30073024b5417ee22bfd8e034d9bd Description: GNOME translation updates for language Haitian; Haitian Creole Description-md5: 23fb6115636bca5b2c257fdad69b02e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ht-base Priority: optional Section: translations Installed-Size: 54 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ht (<< 1:14.04+20140410), language-pack-gnome-ht-base (<< 1:14.04+20140410), language-pack-ht (<< 1:14.04+20140410), language-pack-ht-base (<< 1:14.04+20140410), language-pack-kde-ht (<< 1:14.04+20140410), language-pack-kde-ht-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ht (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ht (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ht-base/language-pack-gnome-ht-base_14.04+20140410_all.deb Size: 8458 MD5sum: 549406237a8f331f48d1872891c33986 SHA1: 19c3b985f407cbfc5ffa27bf5fc81274b5ce6fd1 SHA256: 2a458f1fe775c6b4d9b19f9d3f0ccd6af9107abc16b74155d08bac4d611a68d1 Description: GNOME translations for language Haitian; Haitian Creole Description-md5: 57d2119d3e8bda0e15b5ea21900b2139 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hu (<< 1:14.04+20140410), language-pack-gnome-hu-base, language-pack-hu (<< 1:14.04+20140410), language-pack-hu-base (<< 1:14.04+20140410), language-pack-kde-hu (<< 1:14.04+20140410), language-pack-kde-hu-base (<< 1:14.04+20140410) Depends: language-pack-gnome-hu-base (>= 1:14.04+20140410), language-pack-hu Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-hu/language-pack-gnome-hu_14.04+20140410_all.deb Size: 2022 MD5sum: 53bc7da6a686b6e7dd9604d2aad4fae2 SHA1: 875343658a074306ae91757839255fcefa285cba SHA256: 7f8926d8ae447fb209af7711773cf724cb0b2d5f100053043a248657c3583754 Description: GNOME translation updates for language Hungarian Description-md5: 7eace40e3cbcdb248004e88dea56dec4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hu-base Priority: optional Section: translations Installed-Size: 9152 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hu (<< 1:14.04+20140410), language-pack-gnome-hu-base (<< 1:14.04+20140410), language-pack-hu (<< 1:14.04+20140410), language-pack-hu-base (<< 1:14.04+20140410), language-pack-kde-hu (<< 1:14.04+20140410), language-pack-kde-hu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-hu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-hu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-hu-base/language-pack-gnome-hu-base_14.04+20140410_all.deb Size: 2228058 MD5sum: 6e6deb1f831eddf6b4da9f598f70431a SHA1: 8de405ee80a43c73e5a372c0664b0dcdb3c37923 SHA256: bbba1d5c4201b67c0af9e2e8892b542844aac83ad7f1eb4ae258110d74bf3069 Description: GNOME translations for language Hungarian Description-md5: 5f77cf8b924f572be024835291c44cef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hy (<< 1:14.04+20140410), language-pack-gnome-hy-base, language-pack-hy (<< 1:14.04+20140410), language-pack-hy-base (<< 1:14.04+20140410), language-pack-kde-hy (<< 1:14.04+20140410), language-pack-kde-hy-base (<< 1:14.04+20140410) Depends: language-pack-gnome-hy-base (>= 1:14.04+20140410), language-pack-hy Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-hy/language-pack-gnome-hy_14.04+20140410_all.deb Size: 1986 MD5sum: af97901d19c6511dfb80ead11801ec42 SHA1: 07414319887b7bac1c7f8457161bf1deead3e4fd SHA256: 49d8d60a1fce8b50981832289d8aa3f8bd4d72e623fb426ac9e33d5ff35113be Description: GNOME translation updates for language Armenian Description-md5: 7662e0ac8d9a861b610f915339625f38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hy-base Priority: optional Section: translations Installed-Size: 852 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hy (<< 1:14.04+20140410), language-pack-gnome-hy-base (<< 1:14.04+20140410), language-pack-hy (<< 1:14.04+20140410), language-pack-hy-base (<< 1:14.04+20140410), language-pack-kde-hy (<< 1:14.04+20140410), language-pack-kde-hy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-hy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-hy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-hy-base/language-pack-gnome-hy-base_14.04+20140410_all.deb Size: 200082 MD5sum: f1e44165c8e520b2270574ad1c40a1d3 SHA1: 277c20b6bb97e2f0b36960fcd516bf3475f0e06a SHA256: bcf962e57715b6e8c5a771bca2cfbffed84e7a6bfcaf96428f8f168c43b73597 Description: GNOME translations for language Armenian Description-md5: 5f80263914549f24a56fd804b7ea8268 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ia Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ia (<< 1:14.04+20140410), language-pack-gnome-ia-base, language-pack-ia (<< 1:14.04+20140410), language-pack-ia-base (<< 1:14.04+20140410), language-pack-kde-ia (<< 1:14.04+20140410), language-pack-kde-ia-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ia-base (>= 1:14.04+20140410), language-pack-ia Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ia/language-pack-gnome-ia_14.04+20140410_all.deb Size: 2016 MD5sum: 16f0bae7bec85312103b97ca8e997ecf SHA1: 9091d8dfc8ef1cff3a1c70eaa481f8b485e35e0b SHA256: 95b2e690d13816f411b8a53d7358e1480113dcffbb261ad15967607dc16eb130 Description: GNOME translation updates for language Interlingua (International Auxiliary Language Association) Description-md5: de3fb08a7b5ad1827191893cd6ad11cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ia-base Priority: optional Section: translations Installed-Size: 182 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ia (<< 1:14.04+20140410), language-pack-gnome-ia-base (<< 1:14.04+20140410), language-pack-ia (<< 1:14.04+20140410), language-pack-ia-base (<< 1:14.04+20140410), language-pack-kde-ia (<< 1:14.04+20140410), language-pack-kde-ia-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ia (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ia (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ia-base/language-pack-gnome-ia-base_14.04+20140410_all.deb Size: 45294 MD5sum: 0bd3c0d90de4f66992a233b8eeb2e2b6 SHA1: 9af20be58fb14546951db1906ab057acbd632bd2 SHA256: f158240df0833c9e1976757e8176fd7d37c866a0ff4f6d0e4b48dcbb51b6ca3e Description: GNOME translations for language Interlingua (International Auxiliary Language Association) Description-md5: 8a76f2f4c32992f8db56551f1df2cf29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-id Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-id (<< 1:14.04+20140410), language-pack-gnome-id-base, language-pack-id (<< 1:14.04+20140410), language-pack-id-base (<< 1:14.04+20140410), language-pack-kde-id (<< 1:14.04+20140410), language-pack-kde-id-base (<< 1:14.04+20140410) Depends: language-pack-gnome-id-base (>= 1:14.04+20140410), language-pack-id Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-id/language-pack-gnome-id_14.04+20140410_all.deb Size: 2002 MD5sum: c784df12bdc23412a819c6c6999826e2 SHA1: 56c61293206b448e76d93acb4ebaaa00745a4a2f SHA256: 4ff8de080aaf070ba915c3e7dfeaf65ffab0861279c52c9a05db14e73085f9c4 Description: GNOME translation updates for language Indonesian Description-md5: 6911adb303367e541af85d78473fee32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-id-base Priority: optional Section: translations Installed-Size: 6215 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-id (<< 1:14.04+20140410), language-pack-gnome-id-base (<< 1:14.04+20140410), language-pack-id (<< 1:14.04+20140410), language-pack-id-base (<< 1:14.04+20140410), language-pack-kde-id (<< 1:14.04+20140410), language-pack-kde-id-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-id (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-id (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-id-base/language-pack-gnome-id-base_14.04+20140410_all.deb Size: 1669060 MD5sum: 1c0dfdb1c65888a3d059c1df0f08f29c SHA1: 6859982accafcbf4811c047ca6cf6a33028789d6 SHA256: 84b32cfbf664386b3cd8e20c9882c4e41666cba5296f9e1ef0cb72bbb338ad88 Description: GNOME translations for language Indonesian Description-md5: 7debbdf0cb01fd3c61b80db33a66a598 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ig Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ig (<< 1:14.04+20140410), language-pack-gnome-ig-base, language-pack-ig (<< 1:14.04+20140410), language-pack-ig-base (<< 1:14.04+20140410), language-pack-kde-ig (<< 1:14.04+20140410), language-pack-kde-ig-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ig-base (>= 1:14.04+20140410), language-pack-ig Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ig/language-pack-gnome-ig_14.04+20140410_all.deb Size: 2012 MD5sum: 12eadc571f636c66b2cdea988f8eac6c SHA1: 9b3767b17daa38888d0db128e057f19a0c4a5ae5 SHA256: b5003f86a2c999384729d90be3cf615831084975c5528ea173b6278acfa78867 Description: GNOME translation updates for language Igbo Description-md5: 0f783ca5727b56d998626d7e6334dc4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ig-base Priority: optional Section: translations Installed-Size: 96 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ig (<< 1:14.04+20140410), language-pack-gnome-ig-base (<< 1:14.04+20140410), language-pack-ig (<< 1:14.04+20140410), language-pack-ig-base (<< 1:14.04+20140410), language-pack-kde-ig (<< 1:14.04+20140410), language-pack-kde-ig-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ig (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ig (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ig-base/language-pack-gnome-ig-base_14.04+20140410_all.deb Size: 22128 MD5sum: 4d1197d216773d51e9b12916179e0192 SHA1: d58fb5ab76c84937efac309a3375bacc381c89e9 SHA256: 188e946588aa5f284963c27207f16f4b59865d51b2fc7a00f55a7793c91c7e76 Description: GNOME translations for language Igbo Description-md5: 365d013a0736ef9a2e355ce4d7cb3464 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-is Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-is (<< 1:14.04+20140410), language-pack-gnome-is-base, language-pack-is (<< 1:14.04+20140410), language-pack-is-base (<< 1:14.04+20140410), language-pack-kde-is (<< 1:14.04+20140410), language-pack-kde-is-base (<< 1:14.04+20140410) Depends: language-pack-gnome-is-base (>= 1:14.04+20140410), language-pack-is Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-is/language-pack-gnome-is_14.04+20140410_all.deb Size: 2004 MD5sum: 58b910acd26cd99bee0f25854607cf31 SHA1: 128385f593f5a63c6400e5f1164a72de35516b48 SHA256: b2c2645265c2b9d78d9d9306bce96ddb078f3d67f0f3dd4228e26dcaae795b45 Description: GNOME translation updates for language Icelandic Description-md5: a26cf69f6d0d6210f13f5abfdea8c869 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-is-base Priority: optional Section: translations Installed-Size: 1663 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-is (<< 1:14.04+20140410), language-pack-gnome-is-base (<< 1:14.04+20140410), language-pack-is (<< 1:14.04+20140410), language-pack-is-base (<< 1:14.04+20140410), language-pack-kde-is (<< 1:14.04+20140410), language-pack-kde-is-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-is (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-is (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-is-base/language-pack-gnome-is-base_14.04+20140410_all.deb Size: 535368 MD5sum: 335424a389f73f95d16d2483f970cbd5 SHA1: b1e00f968a1bcbf5b5bf1c3c3cd91bcefd5e8023 SHA256: a307a3ec4ed23c62eabdbd57442a0059ec668025dc74ad8de61e2058c083b763 Description: GNOME translations for language Icelandic Description-md5: 701eaaf2c397ba4c8abcd517267b7bd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-it Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-it (<< 1:14.04+20140410), language-pack-gnome-it-base, language-pack-it (<< 1:14.04+20140410), language-pack-it-base (<< 1:14.04+20140410), language-pack-kde-it (<< 1:14.04+20140410), language-pack-kde-it-base (<< 1:14.04+20140410) Depends: language-pack-gnome-it-base (>= 1:14.04+20140410), language-pack-it Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-it/language-pack-gnome-it_14.04+20140410_all.deb Size: 2002 MD5sum: 567dd87a2fcc8dec9c5925167a81d5c0 SHA1: 7eb1f367e7d31a2c1185361c310880906b069240 SHA256: 581ea649624364ce9712aeaf4e383454e154fa3882384ccf3e1d7f68389be18a Description: GNOME translation updates for language Italian Description-md5: 32f81303de09a8b4c153e2c9f933756e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-it-base Priority: optional Section: translations Installed-Size: 9086 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-it (<< 1:14.04+20140410), language-pack-gnome-it-base (<< 1:14.04+20140410), language-pack-it (<< 1:14.04+20140410), language-pack-it-base (<< 1:14.04+20140410), language-pack-kde-it (<< 1:14.04+20140410), language-pack-kde-it-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-it (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-it (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-it-base/language-pack-gnome-it-base_14.04+20140410_all.deb Size: 2792978 MD5sum: 438e1b0eb18031f7a045e9795763c877 SHA1: b03ce937128a6d752b5a1ae1d2b9c276b4d13502 SHA256: 4b4f09d13b55636567bbcb4458db5dfaa6c7deb55ff3dcdb85a0849d3ee048ee Description: GNOME translations for language Italian Description-md5: 127bd385b638390c80e6549d357158da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ja Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ja (<< 1:14.04+20140410), language-pack-gnome-ja-base, language-pack-ja (<< 1:14.04+20140410), language-pack-ja-base (<< 1:14.04+20140410), language-pack-kde-ja (<< 1:14.04+20140410), language-pack-kde-ja-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ja-base (>= 1:14.04+20140410), language-pack-ja Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ja/language-pack-gnome-ja_14.04+20140410_all.deb Size: 2014 MD5sum: 3d97bc0eeff625e72cdc4adb4fd12ea5 SHA1: f8050be7e8dce706d979525b15c2c9d89628123e SHA256: 2c06801dadaa13e87a6939c3f82ebb87ac9044db28ba9b3594ff33adab945751 Description: GNOME translation updates for language Japanese Description-md5: 4a04c4a4bd51eccfcc200fe3c710ee1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-ja-base Priority: optional Section: translations Installed-Size: 9498 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ja (<< 1:14.04+20140410), language-pack-gnome-ja-base (<< 1:14.04+20140410), language-pack-ja (<< 1:14.04+20140410), language-pack-ja-base (<< 1:14.04+20140410), language-pack-kde-ja (<< 1:14.04+20140410), language-pack-kde-ja-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ja (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ja (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ja-base/language-pack-gnome-ja-base_14.04+20140410_all.deb Size: 2637080 MD5sum: 9a0236056b9a00448139309b8553d1b6 SHA1: c4d2b32578e785c91c2c5cf60750e1ee26bc0e1e SHA256: a49071d75a5f0552c5240034ad87a51b5bab1346980c95383e96e2288ace9e7b Description: GNOME translations for language Japanese Description-md5: 13319f21aefdbb1cb1c486f5f8c7d7a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-ka Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ka (<< 1:14.04+20140410), language-pack-gnome-ka-base, language-pack-ka (<< 1:14.04+20140410), language-pack-ka-base (<< 1:14.04+20140410), language-pack-kde-ka (<< 1:14.04+20140410), language-pack-kde-ka-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ka-base (>= 1:14.04+20140410), language-pack-ka Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ka/language-pack-gnome-ka_14.04+20140410_all.deb Size: 2002 MD5sum: 80a7fe695486970fbc3ef51cfc2e8e35 SHA1: 5142f3b70e62611ae9fc839e42a5026b79a8d9b3 SHA256: 7b1f675a027bbf19bbd2d41222ce41ea407017ff46d1d40f48c7a8fae017a3b2 Description: GNOME translation updates for language Georgian Description-md5: ec29bcfa3737fb537c84960a86a2257e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ka-base Priority: optional Section: translations Installed-Size: 1635 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ka (<< 1:14.04+20140410), language-pack-gnome-ka-base (<< 1:14.04+20140410), language-pack-ka (<< 1:14.04+20140410), language-pack-ka-base (<< 1:14.04+20140410), language-pack-kde-ka (<< 1:14.04+20140410), language-pack-kde-ka-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ka (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ka (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ka-base/language-pack-gnome-ka-base_14.04+20140410_all.deb Size: 358930 MD5sum: 4c33b7778d8efb97d19ebd40f19485bc SHA1: e57d78ac6f11c42ced36a4796b8d7e9d41ea3425 SHA256: 22ce605115a731f509cf605513ef1ee18bd69d43c80a21568e9025f3236d38bb Description: GNOME translations for language Georgian Description-md5: 7c03451b213b867665adccb84361abff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kk (<< 1:14.04+20140410), language-pack-gnome-kk-base, language-pack-kde-kk (<< 1:14.04+20140410), language-pack-kde-kk-base (<< 1:14.04+20140410), language-pack-kk (<< 1:14.04+20140410), language-pack-kk-base (<< 1:14.04+20140410) Depends: language-pack-gnome-kk-base (>= 1:14.04+20140410), language-pack-kk Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-kk/language-pack-gnome-kk_14.04+20140410_all.deb Size: 1998 MD5sum: a0b24cc7eec5e0e4fa444a4d96ff3952 SHA1: 12b33ed2d4df26f78cdf8f025e464d95f7d55b3e SHA256: c477be00f8915507b9852c053fc0cb3007ba3fd04d2e9948d3032524662ae2a8 Description: GNOME translation updates for language Kazakh Description-md5: 714afabe2ef0f5eb4fa6a2cb9eb4c5ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kk-base Priority: optional Section: translations Installed-Size: 1937 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kk (<< 1:14.04+20140410), language-pack-gnome-kk-base (<< 1:14.04+20140410), language-pack-kde-kk (<< 1:14.04+20140410), language-pack-kde-kk-base (<< 1:14.04+20140410), language-pack-kk (<< 1:14.04+20140410), language-pack-kk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-kk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-kk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-kk-base/language-pack-gnome-kk-base_14.04+20140410_all.deb Size: 439986 MD5sum: 066547028700451b2921a08bb92ec73e SHA1: 6b1ae1258f6b4635c2cd174539069f4160283989 SHA256: 7abb364f757552df885b400e3b707a6c08ba2b5fd8826ee1e74d5684b2ca074f Description: GNOME translations for language Kazakh Description-md5: e60f8c0fb55f84da371ee524f749163c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kl (<< 1:14.04+20140410), language-pack-gnome-kl-base, language-pack-kde-kl (<< 1:14.04+20140410), language-pack-kde-kl-base (<< 1:14.04+20140410), language-pack-kl (<< 1:14.04+20140410), language-pack-kl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-kl-base (>= 1:14.04+20140410), language-pack-kl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-kl/language-pack-gnome-kl_14.04+20140410_all.deb Size: 1994 MD5sum: e8e0160187130e46f63105e226e1a2e3 SHA1: 92f0fc8a9be16a72c4b52391f99c76a5633367a8 SHA256: 0d62ffbb30fd563c25581e37f9e355748b9d298ef9e586e767f49ecb7612b1aa Description: GNOME translation updates for language Kalaallisut; Greenlandic Description-md5: c557476b901eb95c853c32746bcc813f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kl-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kl (<< 1:14.04+20140410), language-pack-gnome-kl-base (<< 1:14.04+20140410), language-pack-kde-kl (<< 1:14.04+20140410), language-pack-kde-kl-base (<< 1:14.04+20140410), language-pack-kl (<< 1:14.04+20140410), language-pack-kl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-kl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-kl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-kl-base/language-pack-gnome-kl-base_14.04+20140410_all.deb Size: 5470 MD5sum: ed9785fb41a56d47ae66dcea2d34bfa4 SHA1: cc4d2b39a997fc99c16e2ce853e7c0442582cc9a SHA256: d9c00f8ffe88d769dc99caf0ec9a83de4be2803b555c26f1101ce4649f981e24 Description: GNOME translations for language Kalaallisut; Greenlandic Description-md5: feead0b70fde93da631a34cea11dda18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-km Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-km (<< 1:14.04+20140410), language-pack-gnome-km-base, language-pack-kde-km (<< 1:14.04+20140410), language-pack-kde-km-base (<< 1:14.04+20140410), language-pack-km (<< 1:14.04+20140410), language-pack-km-base (<< 1:14.04+20140410) Depends: language-pack-gnome-km-base (>= 1:14.04+20140410), language-pack-km Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-km/language-pack-gnome-km_14.04+20140410_all.deb Size: 2018 MD5sum: 44ea9f7aeaa1b34ec5f7d32b94bd9d9a SHA1: 3445a77b49133d3a09db28e14252e834c49facc5 SHA256: 9cf33c0a070e2fbd48b9236ac8f35e6b97e17c4533f30f9edb53a56d79cf2319 Description: GNOME translation updates for language Central Khmer Description-md5: e14deb3436dbea25abc58ec302b968f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-km-base Priority: optional Section: translations Installed-Size: 6229 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-km (<< 1:14.04+20140410), language-pack-gnome-km-base (<< 1:14.04+20140410), language-pack-kde-km (<< 1:14.04+20140410), language-pack-kde-km-base (<< 1:14.04+20140410), language-pack-km (<< 1:14.04+20140410), language-pack-km-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-km (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-km (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-km-base/language-pack-gnome-km-base_14.04+20140410_all.deb Size: 1216538 MD5sum: f110e30ff2034fb3d2f6b71e6dea8009 SHA1: 5e1f4b3cad6c70d1636e25b183bc4b6f3c224329 SHA256: 4bf8cd0808dda7642c5b66da0037e4dfe065d0139810503074d128fa2d7d39ed Description: GNOME translations for language Central Khmer Description-md5: 539644a98859f7b9915b32f93acc41bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kn (<< 1:14.04+20140410), language-pack-gnome-kn-base, language-pack-kde-kn (<< 1:14.04+20140410), language-pack-kde-kn-base (<< 1:14.04+20140410), language-pack-kn (<< 1:14.04+20140410), language-pack-kn-base (<< 1:14.04+20140410) Depends: language-pack-gnome-kn-base (>= 1:14.04+20140410), language-pack-kn Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-kn/language-pack-gnome-kn_14.04+20140410_all.deb Size: 2026 MD5sum: 90874c5d81a64efbfed10110ef54f43e SHA1: 2d3433e51d46acada53962e0a1e78f88dce55e2c SHA256: 85e83ed29747ebcca7cc64f7f8579b0489678131fe39d20c311c69de73a08141 Description: GNOME translation updates for language Kannada Description-md5: a5aa28c8af1e1dcea8b7ed58d1dc79ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kn-base Priority: optional Section: translations Installed-Size: 5794 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kn (<< 1:14.04+20140410), language-pack-gnome-kn-base (<< 1:14.04+20140410), language-pack-kde-kn (<< 1:14.04+20140410), language-pack-kde-kn-base (<< 1:14.04+20140410), language-pack-kn (<< 1:14.04+20140410), language-pack-kn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-kn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-kn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-kn-base/language-pack-gnome-kn-base_14.04+20140410_all.deb Size: 1178058 MD5sum: 79de1196b923a8dd106619d20c10c6a1 SHA1: a68f9af361615304dd602cdacd0aa08865cc6fad SHA256: bc9456bcf6afbf9447b8ac10024e8f0a6e4a267833c6a50cf070aefb6e98d7e7 Description: GNOME translations for language Kannada Description-md5: 813626350bec0223e8660a5546539b16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ko Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ko (<< 1:14.04+20140410), language-pack-gnome-ko-base, language-pack-kde-ko (<< 1:14.04+20140410), language-pack-kde-ko-base (<< 1:14.04+20140410), language-pack-ko (<< 1:14.04+20140410), language-pack-ko-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ko-base (>= 1:14.04+20140410), language-pack-ko Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ko/language-pack-gnome-ko_14.04+20140410_all.deb Size: 2004 MD5sum: 01f8cd946ea84957f9408dc9027381f2 SHA1: 9e4c34eec34c700af0af746007a968d5c040c72a SHA256: 0ddd99be5d5a1d90c4256ff7e60f740b64220e5802abd8625ec695eda30623d6 Description: GNOME translation updates for language Korean Description-md5: 4828e180b1e2aa3b76474b717ec1111f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ko-base Priority: optional Section: translations Installed-Size: 6616 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ko (<< 1:14.04+20140410), language-pack-gnome-ko-base (<< 1:14.04+20140410), language-pack-kde-ko (<< 1:14.04+20140410), language-pack-kde-ko-base (<< 1:14.04+20140410), language-pack-ko (<< 1:14.04+20140410), language-pack-ko-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ko (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ko (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ko-base/language-pack-gnome-ko-base_14.04+20140410_all.deb Size: 1772258 MD5sum: ce1a0bf4fc17f8328ca6b9b45a13a4a7 SHA1: bf0a8d2448a56b83dfe1f6a5ccfca3c40616d7a6 SHA256: 91bd3fd25b4eafcdcf5081944ac9aa96fafcd567acf3ad9b037f88b58916bbc5 Description: GNOME translations for language Korean Description-md5: 7c19ce071b7c68f137ffd5ed07445cda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ks Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ks (<< 1:14.04+20140410), language-pack-gnome-ks-base, language-pack-kde-ks (<< 1:14.04+20140410), language-pack-kde-ks-base (<< 1:14.04+20140410), language-pack-ks (<< 1:14.04+20140410), language-pack-ks-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ks-base (>= 1:14.04+20140410), language-pack-ks Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ks/language-pack-gnome-ks_14.04+20140410_all.deb Size: 2024 MD5sum: 3ec3f40803a2d6d1975df3fede0a0ca2 SHA1: 19fa0d7999659f324d81d4921f87750d98f50230 SHA256: 20faaee14e0896649719a5ffacfc271fe38143aa2e9db81b7887b50d69c330b3 Description: GNOME translation updates for language Kashmiri Description-md5: 04ac20233c1c24f813b17f5ce881270f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ks-base Priority: optional Section: translations Installed-Size: 66 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ks (<< 1:14.04+20140410), language-pack-gnome-ks-base (<< 1:14.04+20140410), language-pack-kde-ks (<< 1:14.04+20140410), language-pack-kde-ks-base (<< 1:14.04+20140410), language-pack-ks (<< 1:14.04+20140410), language-pack-ks-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ks (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ks (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ks-base/language-pack-gnome-ks-base_14.04+20140410_all.deb Size: 11372 MD5sum: ed7e03ae831c4366958d72b56e77a474 SHA1: a6cf5f97d096907f091338ddadd23fa4c843fb24 SHA256: 3fed790986cbc2a088b29e44291933bbf48fd74a7f3c155dbb875a4b2367f8ec Description: GNOME translations for language Kashmiri Description-md5: b06856346dd05003eab3dc0e3782dd27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ku Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ku (<< 1:14.04+20140410), language-pack-gnome-ku-base, language-pack-kde-ku (<< 1:14.04+20140410), language-pack-kde-ku-base (<< 1:14.04+20140410), language-pack-ku (<< 1:14.04+20140410), language-pack-ku-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ku-base (>= 1:14.04+20140410), language-pack-ku Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ku/language-pack-gnome-ku_14.04+20140410_all.deb Size: 1998 MD5sum: 0afd184c4bf4e1a8df4d45c543c158b1 SHA1: af192780e9efccb4d0d3a35b9e5ad25f52de33ae SHA256: 08f92600f292308b0580977efe618029515aa564010a23a063c339bf8beb3c10 Description: GNOME translation updates for language Kurdish Description-md5: 533d53605921556aaeeabfb009c47e40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ku-base Priority: optional Section: translations Installed-Size: 857 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ku (<< 1:14.04+20140410), language-pack-gnome-ku-base (<< 1:14.04+20140410), language-pack-kde-ku (<< 1:14.04+20140410), language-pack-kde-ku-base (<< 1:14.04+20140410), language-pack-ku (<< 1:14.04+20140410), language-pack-ku-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ku (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ku (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ku-base/language-pack-gnome-ku-base_14.04+20140410_all.deb Size: 271958 MD5sum: 9e23aead8735241900f0ac27c9c86ea7 SHA1: 3d5f2c591a535040aea9b0fb813d2217a84b4399 SHA256: c8bd27e0c72413ef387c2797697adc48fae29ddd084c19365d3e535e13bfff53 Description: GNOME translations for language Kurdish Description-md5: 08e62d14f8279cdcf46a6d0100c1894c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kw (<< 1:14.04+20140410), language-pack-gnome-kw-base, language-pack-kde-kw (<< 1:14.04+20140410), language-pack-kde-kw-base (<< 1:14.04+20140410), language-pack-kw (<< 1:14.04+20140410), language-pack-kw-base (<< 1:14.04+20140410) Depends: language-pack-gnome-kw-base (>= 1:14.04+20140410), language-pack-kw Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-kw/language-pack-gnome-kw_14.04+20140410_all.deb Size: 1982 MD5sum: deb4eb35c148b77c664fe59381d244c9 SHA1: af2a7243bd29f04eab2e16fcba0006657aa884fd SHA256: e89d9a5d2fc9df5360e8df03b807346a177d55310d90472388603e09123365a0 Description: GNOME translation updates for language Cornish Description-md5: bb569c59cbc699ac6518dee822bb89c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kw-base Priority: optional Section: translations Installed-Size: 110 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kw (<< 1:14.04+20140410), language-pack-gnome-kw-base (<< 1:14.04+20140410), language-pack-kde-kw (<< 1:14.04+20140410), language-pack-kde-kw-base (<< 1:14.04+20140410), language-pack-kw (<< 1:14.04+20140410), language-pack-kw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-kw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-kw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-kw-base/language-pack-gnome-kw-base_14.04+20140410_all.deb Size: 25268 MD5sum: 14feca216feb911c361892156e5a8ccf SHA1: cd7c1ce405bc2ea48a865d6e8252a4e7c2f4d7ea SHA256: ba7f01604eff35744f0bf2b1bd860b2732ee2d95c015cb51a52274c879e17892 Description: GNOME translations for language Cornish Description-md5: d1d5c7bf9506b8207f70817d02d5bf7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ky Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ky (<< 1:14.04+20140410), language-pack-gnome-ky-base, language-pack-kde-ky (<< 1:14.04+20140410), language-pack-kde-ky-base (<< 1:14.04+20140410), language-pack-ky (<< 1:14.04+20140410), language-pack-ky-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ky-base (>= 1:14.04+20140410), language-pack-ky Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ky/language-pack-gnome-ky_14.04+20140410_all.deb Size: 2018 MD5sum: 4692c3cd8b546bc7b97a6f71c6cc7345 SHA1: bf209976e88689b1cf66ff32d53b2bf00ae2fae1 SHA256: 00dd5622b8396bedc16a8ad148f48e49aa6f6a2f646cd45d7f7eeebc2c18ac41 Description: GNOME translation updates for language Kirghiz; Kyrgyz Description-md5: e040bd6c796ccd8d9fd664fd3518b46b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ky-base Priority: optional Section: translations Installed-Size: 472 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ky (<< 1:14.04+20140410), language-pack-gnome-ky-base (<< 1:14.04+20140410), language-pack-kde-ky (<< 1:14.04+20140410), language-pack-kde-ky-base (<< 1:14.04+20140410), language-pack-ky (<< 1:14.04+20140410), language-pack-ky-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ky (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ky (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ky-base/language-pack-gnome-ky-base_14.04+20140410_all.deb Size: 138250 MD5sum: b8d92e9be01125b2c2492d285374227c SHA1: 0778204460feabd3599e1c9b7856269a13b5ef82 SHA256: 44dfb11e732120cf6ce1a7bac2e9dcbe0eebf36937bacd3f53fa590f7a0ddee8 Description: GNOME translations for language Kirghiz; Kyrgyz Description-md5: 6c88610b73d5a1c0aa0ddb7611503df5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lb (<< 1:14.04+20140410), language-pack-gnome-lb-base, language-pack-kde-lb (<< 1:14.04+20140410), language-pack-kde-lb-base (<< 1:14.04+20140410), language-pack-lb (<< 1:14.04+20140410), language-pack-lb-base (<< 1:14.04+20140410) Depends: language-pack-gnome-lb-base (>= 1:14.04+20140410), language-pack-lb Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-lb/language-pack-gnome-lb_14.04+20140410_all.deb Size: 2030 MD5sum: 3e6155fbc5cab1318db2d77de087759c SHA1: 83a2aa405a9786226802aba3f90c43c240f3f9a4 SHA256: 1eb936b4ab5b6ed3c9bc7ca1ac72ade7fe14d14ed2e1b773147467aa2d069fa3 Description: GNOME translation updates for language Luxembourgish; Letzeburgesch Description-md5: 53ffde6473d532178ad74c89af83cf06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lb-base Priority: optional Section: translations Installed-Size: 169 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lb (<< 1:14.04+20140410), language-pack-gnome-lb-base (<< 1:14.04+20140410), language-pack-kde-lb (<< 1:14.04+20140410), language-pack-kde-lb-base (<< 1:14.04+20140410), language-pack-lb (<< 1:14.04+20140410), language-pack-lb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-lb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-lb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-lb-base/language-pack-gnome-lb-base_14.04+20140410_all.deb Size: 43274 MD5sum: 3030cc586ae5638779e1444e12ff61be SHA1: e61b797800458ae772fe54ed0aa6ca591451500a SHA256: a1965afc34d991bca3213a814f0e23733acef63451f0dce3c0f7a9ed5d329f3e Description: GNOME translations for language Luxembourgish; Letzeburgesch Description-md5: 6fea25dc8205f50b27fde35d15920f86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lg (<< 1:14.04+20140410), language-pack-gnome-lg-base, language-pack-kde-lg (<< 1:14.04+20140410), language-pack-kde-lg-base (<< 1:14.04+20140410), language-pack-lg (<< 1:14.04+20140410), language-pack-lg-base (<< 1:14.04+20140410) Depends: language-pack-gnome-lg-base (>= 1:14.04+20140410), language-pack-lg Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-lg/language-pack-gnome-lg_14.04+20140410_all.deb Size: 1990 MD5sum: 195e8c1ad75d00f3dca51e67010baaa6 SHA1: 95d379a559fa631d02ad0bcfa08d26a555296f92 SHA256: 0c8870f11fd67b0ebaa34662fddf845142bc94c326e4e48a2cd1ba04de8ae5ad Description: GNOME translation updates for language Ganda Description-md5: 77dc9acf868d98ba72944d114146531e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lg-base Priority: optional Section: translations Installed-Size: 85 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lg (<< 1:14.04+20140410), language-pack-gnome-lg-base (<< 1:14.04+20140410), language-pack-kde-lg (<< 1:14.04+20140410), language-pack-kde-lg-base (<< 1:14.04+20140410), language-pack-lg (<< 1:14.04+20140410), language-pack-lg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-lg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-lg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-lg-base/language-pack-gnome-lg-base_14.04+20140410_all.deb Size: 21218 MD5sum: ba5345a8eae757707157448aeccad3c4 SHA1: 920ed9a423867ea320905a574d5899d0039dc615 SHA256: d25e3f5614e458fdfb59cd82b33d70ae7c577b63f6447ebf90fdf5add9a22f83 Description: GNOME translations for language Ganda Description-md5: 1f3665f7bb974f4d891a3136c84d3202 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-li Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-li (<< 1:14.04+20140410), language-pack-gnome-li-base, language-pack-kde-li (<< 1:14.04+20140410), language-pack-kde-li-base (<< 1:14.04+20140410), language-pack-li (<< 1:14.04+20140410), language-pack-li-base (<< 1:14.04+20140410) Depends: language-pack-gnome-li-base (>= 1:14.04+20140410), language-pack-li Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-li/language-pack-gnome-li_14.04+20140410_all.deb Size: 2012 MD5sum: afffcc3a18ac87a9e5ceb101915daf15 SHA1: c96ee13ce9e82439d4833ad601943543f9e1965f SHA256: 661fe561860b756409fe9c2d2fd85d0bfcea09840770df1df3eef960c3031c34 Description: GNOME translation updates for language Limburgan; Limburger; Limburgish Description-md5: 805bc9fe9874e1fd47903561043bdc71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-li-base Priority: optional Section: translations Installed-Size: 299 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-li (<< 1:14.04+20140410), language-pack-gnome-li-base (<< 1:14.04+20140410), language-pack-kde-li (<< 1:14.04+20140410), language-pack-kde-li-base (<< 1:14.04+20140410), language-pack-li (<< 1:14.04+20140410), language-pack-li-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-li (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-li (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-li-base/language-pack-gnome-li-base_14.04+20140410_all.deb Size: 81650 MD5sum: 95b3809262211b9a7fcfd6f1bc0f6afb SHA1: 86cec42526fb5fd5215b2de929ffbf3784cb9da7 SHA256: 5fd4bf1d5c8752624e320716753ec76cb141f0b9841d63caea8912237e963a62 Description: GNOME translations for language Limburgan; Limburger; Limburgish Description-md5: 3bed3215f800b46f0a2e223fbbc72acc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lo (<< 1:14.04+20140410), language-pack-gnome-lo-base, language-pack-kde-lo (<< 1:14.04+20140410), language-pack-kde-lo-base (<< 1:14.04+20140410), language-pack-lo (<< 1:14.04+20140410), language-pack-lo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-lo-base (>= 1:14.04+20140410), language-pack-lo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-lo/language-pack-gnome-lo_14.04+20140410_all.deb Size: 1998 MD5sum: 479dd619026ffb49a57e5e1e629c7192 SHA1: 4306a73b7f4ba19b8c67630127a58662c9abd273 SHA256: c73623b29f113e81c9eb0d4ccd7a265dd73d35491eff266909bebb777a6cee6f Description: GNOME translation updates for language Lao Description-md5: 3fcfb4957a33b7684fcbba7e88bd298e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lo-base Priority: optional Section: translations Installed-Size: 62 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lo (<< 1:14.04+20140410), language-pack-gnome-lo-base (<< 1:14.04+20140410), language-pack-kde-lo (<< 1:14.04+20140410), language-pack-kde-lo-base (<< 1:14.04+20140410), language-pack-lo (<< 1:14.04+20140410), language-pack-lo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-lo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-lo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-lo-base/language-pack-gnome-lo-base_14.04+20140410_all.deb Size: 9582 MD5sum: 7205831cf1e4b728afa513d4e0745e67 SHA1: 7b7b4952e117d5901dd4af9f0548c6b2b03ea2f0 SHA256: b37893c1e12243c2509270ca0f1d432884b78d5aa851109d352d04a6f457256b Description: GNOME translations for language Lao Description-md5: 39943fc9a2e71276c92b601805ff5e4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lt (<< 1:14.04+20140410), language-pack-gnome-lt-base, language-pack-kde-lt (<< 1:14.04+20140410), language-pack-kde-lt-base (<< 1:14.04+20140410), language-pack-lt (<< 1:14.04+20140410), language-pack-lt-base (<< 1:14.04+20140410) Depends: language-pack-gnome-lt-base (>= 1:14.04+20140410), language-pack-lt Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-lt/language-pack-gnome-lt_14.04+20140410_all.deb Size: 2018 MD5sum: 833673bc9c1530f5daf698078927fcfc SHA1: 5f5f2f3edebad225bd11d27e813d60dfc5d77565 SHA256: c37df34a57e5100588d150f47c674c803d1b8663cee37f4e9160b30efef63e02 Description: GNOME translation updates for language Lithuanian Description-md5: 4ba7442de17833bbc1569f5cc3616989 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lt-base Priority: optional Section: translations Installed-Size: 5526 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lt (<< 1:14.04+20140410), language-pack-gnome-lt-base (<< 1:14.04+20140410), language-pack-kde-lt (<< 1:14.04+20140410), language-pack-kde-lt-base (<< 1:14.04+20140410), language-pack-lt (<< 1:14.04+20140410), language-pack-lt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-lt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-lt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-lt-base/language-pack-gnome-lt-base_14.04+20140410_all.deb Size: 1628190 MD5sum: 7f886d7dfab7410c7cceeb4a3f0537f6 SHA1: c98f47340d4e8e879a065f8fd4f7ce5d39d1728e SHA256: 6df0d7735fa19781fa5f6ecc495423efbac23fcd78da9ab445673ccdc587ee02 Description: GNOME translations for language Lithuanian Description-md5: 7d1b02dac8da0b68d1ff87b3e743ecab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lv (<< 1:14.04+20140410), language-pack-gnome-lv-base, language-pack-kde-lv (<< 1:14.04+20140410), language-pack-kde-lv-base (<< 1:14.04+20140410), language-pack-lv (<< 1:14.04+20140410), language-pack-lv-base (<< 1:14.04+20140410) Depends: language-pack-gnome-lv-base (>= 1:14.04+20140410), language-pack-lv Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-lv/language-pack-gnome-lv_14.04+20140410_all.deb Size: 2022 MD5sum: cd4a72390564f1140431c4c816be22ba SHA1: a4e30c8afe3bf1fd5b44da687f2accbc4907030a SHA256: 0bdf61f3378777bf408ff7e07a2a2c119f1fed1feb2c0d8a263cdfd72cc31dfe Description: GNOME translation updates for language Latvian Description-md5: b2cc43479ccef9c8e91e041ed3c30d31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lv-base Priority: optional Section: translations Installed-Size: 7242 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lv (<< 1:14.04+20140410), language-pack-gnome-lv-base (<< 1:14.04+20140410), language-pack-kde-lv (<< 1:14.04+20140410), language-pack-kde-lv-base (<< 1:14.04+20140410), language-pack-lv (<< 1:14.04+20140410), language-pack-lv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-lv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-lv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-lv-base/language-pack-gnome-lv-base_14.04+20140410_all.deb Size: 2036098 MD5sum: 5f19f0faa8daef7f7dd1f01e71c53366 SHA1: 37a4b474d2eb9373788fedef3fa4a6be38b4599c SHA256: 58679b34230a1f8d85f71b6249f6fe31bcca8f14071c84ca245844f9b1cbeb8a Description: GNOME translations for language Latvian Description-md5: c740682e1c1a0f947b9927d10dcbd552 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mai Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mai (<< 1:14.04+20140410), language-pack-gnome-mai-base, language-pack-kde-mai (<< 1:14.04+20140410), language-pack-kde-mai-base (<< 1:14.04+20140410), language-pack-mai (<< 1:14.04+20140410), language-pack-mai-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mai-base (>= 1:14.04+20140410), language-pack-mai Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mai/language-pack-gnome-mai_14.04+20140410_all.deb Size: 2006 MD5sum: bcce00f27739a122a223da595f41273b SHA1: 152bd058154695bfb82ba0d41d4751c6021fe1a0 SHA256: 95652febd4dab492e14ac2b07d684954a2976bb6472c82ddf25d936db276f8c4 Description: GNOME translation updates for language Maithili Description-md5: a117b47da8535d9bc1607413af0e4990 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mai-base Priority: optional Section: translations Installed-Size: 1713 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mai (<< 1:14.04+20140410), language-pack-gnome-mai-base (<< 1:14.04+20140410), language-pack-kde-mai (<< 1:14.04+20140410), language-pack-kde-mai-base (<< 1:14.04+20140410), language-pack-mai (<< 1:14.04+20140410), language-pack-mai-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mai (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mai (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mai-base/language-pack-gnome-mai-base_14.04+20140410_all.deb Size: 408562 MD5sum: fd74e1b7aae2f5613c2b094b4df713b8 SHA1: 0087dd69d7e01b3bc192eef60d8ad4c3c9609eb0 SHA256: b66ba6f008e8df83eba32ebc919071a934d3b4c41f2b77c1cd1813050339438b Description: GNOME translations for language Maithili Description-md5: 99b3f5dc53db18cc6c155766c921a3c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mg (<< 1:14.04+20140410), language-pack-gnome-mg-base, language-pack-kde-mg (<< 1:14.04+20140410), language-pack-kde-mg-base (<< 1:14.04+20140410), language-pack-mg (<< 1:14.04+20140410), language-pack-mg-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mg-base (>= 1:14.04+20140410), language-pack-mg Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mg/language-pack-gnome-mg_14.04+20140410_all.deb Size: 1994 MD5sum: a00e5887a166a06c7a629a0257fef937 SHA1: 9524e731333f8e6bbe6d5830b959e792d9399c6a SHA256: eb8bf5334282f63020aaaab502486b2b1626d0fe4f60aefef19dd1374fe95c15 Description: GNOME translation updates for language Malagasy Description-md5: 624f9541ee66640349544b28ed64b1e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mg-base Priority: optional Section: translations Installed-Size: 1299 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mg (<< 1:14.04+20140410), language-pack-gnome-mg-base (<< 1:14.04+20140410), language-pack-kde-mg (<< 1:14.04+20140410), language-pack-kde-mg-base (<< 1:14.04+20140410), language-pack-mg (<< 1:14.04+20140410), language-pack-mg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mg-base/language-pack-gnome-mg-base_14.04+20140410_all.deb Size: 298032 MD5sum: bdde1753eef397cc0f200e8bd91071aa SHA1: 7ea34f10f1269f9bbd65a59b789431e555314094 SHA256: ef2463114fda42a4492036970f7cc92b732cf85911e0faf31bd5dca693cc5541 Description: GNOME translations for language Malagasy Description-md5: 3de90c9eca8a11e22b3cbabdecba3226 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mhr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mhr (<< 1:14.04+20140410), language-pack-gnome-mhr-base, language-pack-kde-mhr (<< 1:14.04+20140410), language-pack-kde-mhr-base (<< 1:14.04+20140410), language-pack-mhr (<< 1:14.04+20140410), language-pack-mhr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mhr-base (>= 1:14.04+20140410), language-pack-mhr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mhr/language-pack-gnome-mhr_14.04+20140410_all.deb Size: 2026 MD5sum: 7c3ad15eb0d69e8b17fcd3fc3777f114 SHA1: cb8623d0e48efe8cbfc2993c25823d41bc341540 SHA256: c8fed3c22e5af54f71135dcd863166bc2b34018207006e19546752417f9ee5ca Description: GNOME translation updates for language Mari, Eastern Description-md5: 0ff1059e1ee42c958a4b4748af077021 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mhr-base Priority: optional Section: translations Installed-Size: 95 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mhr (<< 1:14.04+20140410), language-pack-gnome-mhr-base (<< 1:14.04+20140410), language-pack-kde-mhr (<< 1:14.04+20140410), language-pack-kde-mhr-base (<< 1:14.04+20140410), language-pack-mhr (<< 1:14.04+20140410), language-pack-mhr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mhr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mhr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mhr-base/language-pack-gnome-mhr-base_14.04+20140410_all.deb Size: 19168 MD5sum: 8edd6e022912e414c9c12767a79741da SHA1: d21b63c7ce4c19360142ac73dc3fab8020e3e707 SHA256: 5989d8e756f96d2d39ea3fb3ddfdd89edbeb0abe741e584c059ebc9261ce021a Description: GNOME translations for language Mari, Eastern Description-md5: 3363aa952b93565b9f596546c6d97502 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mi (<< 1:14.04+20140410), language-pack-gnome-mi-base, language-pack-kde-mi (<< 1:14.04+20140410), language-pack-kde-mi-base (<< 1:14.04+20140410), language-pack-mi (<< 1:14.04+20140410), language-pack-mi-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mi-base (>= 1:14.04+20140410), language-pack-mi Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mi/language-pack-gnome-mi_14.04+20140410_all.deb Size: 2008 MD5sum: 533df897b47662f30cff99d04c15ac52 SHA1: e81390454cb594aec096079c44818b0ca78dd04d SHA256: 9fc0a84a21a8415d42a263fba2f97462051ff232a0402dbd688c1e9ae8a9ecc9 Description: GNOME translation updates for language Maori Description-md5: f6bf22a1785fa557d50a4c8214977e38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mi-base Priority: optional Section: translations Installed-Size: 135 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mi (<< 1:14.04+20140410), language-pack-gnome-mi-base (<< 1:14.04+20140410), language-pack-kde-mi (<< 1:14.04+20140410), language-pack-kde-mi-base (<< 1:14.04+20140410), language-pack-mi (<< 1:14.04+20140410), language-pack-mi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mi-base/language-pack-gnome-mi-base_14.04+20140410_all.deb Size: 32878 MD5sum: 89314d03ab454c5a37f3812eda904a71 SHA1: e27d1204d059ef62ba2a3d1a83e4eb7c2a2f0b43 SHA256: feba5c0262d8038503dc6d8363ee5d3aaad7b06d733b9cb785328b154a11c2ab Description: GNOME translations for language Maori Description-md5: 8a24bfd55810955e7d484e9fdc67b7be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mk (<< 1:14.04+20140410), language-pack-gnome-mk-base, language-pack-kde-mk (<< 1:14.04+20140410), language-pack-kde-mk-base (<< 1:14.04+20140410), language-pack-mk (<< 1:14.04+20140410), language-pack-mk-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mk-base (>= 1:14.04+20140410), language-pack-mk Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mk/language-pack-gnome-mk_14.04+20140410_all.deb Size: 2002 MD5sum: 2ff864625853ea023ed2c222d20e5cb3 SHA1: 1f892c3dad5314ceb5720070ff064de8ef168197 SHA256: b7ce0a67220dbd1bb44fb878a8787ac4a23acfdef3c2b9aa724a3cf3a6906c46 Description: GNOME translation updates for language Macedonian Description-md5: 2922782fc5716cf8bc95473be5487aaf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mk-base Priority: optional Section: translations Installed-Size: 3969 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mk (<< 1:14.04+20140410), language-pack-gnome-mk-base (<< 1:14.04+20140410), language-pack-kde-mk (<< 1:14.04+20140410), language-pack-kde-mk-base (<< 1:14.04+20140410), language-pack-mk (<< 1:14.04+20140410), language-pack-mk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mk-base/language-pack-gnome-mk-base_14.04+20140410_all.deb Size: 984838 MD5sum: c26f990d6a04001ee7261b04637de64f SHA1: f1f78a029e1d5ffecc63a66b480c9fd47a7c30ef SHA256: 2c56a6fff5f97305ad33f2f03cadf1be13969ae31c5b7d1d62c57740a24e1b16 Description: GNOME translations for language Macedonian Description-md5: 74a11822caab07b3e843010a06c61308 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ml Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ml (<< 1:14.04+20140410), language-pack-gnome-ml-base, language-pack-kde-ml (<< 1:14.04+20140410), language-pack-kde-ml-base (<< 1:14.04+20140410), language-pack-ml (<< 1:14.04+20140410), language-pack-ml-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ml-base (>= 1:14.04+20140410), language-pack-ml Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ml/language-pack-gnome-ml_14.04+20140410_all.deb Size: 1996 MD5sum: cbab62bf2d00b04210a0ed1394d81803 SHA1: 026db43cf03eead0f08ec71bd73c55e2abb6db7c SHA256: 50b8881ba11a46d07719174949a86f3b23ed52c199627ff95f1b95551d0d254f Description: GNOME translation updates for language Malayalam Description-md5: 12e323acf19a1fa6542aea20129fd772 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ml-base Priority: optional Section: translations Installed-Size: 5174 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ml (<< 1:14.04+20140410), language-pack-gnome-ml-base (<< 1:14.04+20140410), language-pack-kde-ml (<< 1:14.04+20140410), language-pack-kde-ml-base (<< 1:14.04+20140410), language-pack-ml (<< 1:14.04+20140410), language-pack-ml-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ml (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ml (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ml-base/language-pack-gnome-ml-base_14.04+20140410_all.deb Size: 1006332 MD5sum: 8533194f7b529d288bf84d1cafb26738 SHA1: ca4791d126c700765506affb1a6e0b81446ed9d7 SHA256: cbd97cba13668c83dabea89096a29d6b82a8bf18ed8c3d97e4cbc7fd5f3bd700 Description: GNOME translations for language Malayalam Description-md5: b8ee340a84ec0331b3810dca05b3af4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mn (<< 1:14.04+20140410), language-pack-gnome-mn-base, language-pack-kde-mn (<< 1:14.04+20140410), language-pack-kde-mn-base (<< 1:14.04+20140410), language-pack-mn (<< 1:14.04+20140410), language-pack-mn-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mn-base (>= 1:14.04+20140410), language-pack-mn Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mn/language-pack-gnome-mn_14.04+20140410_all.deb Size: 1994 MD5sum: 9c663da0836bf047a2d03452a0506161 SHA1: ea2fd385b2980328c4f6c701869d0efa2c64a0f7 SHA256: d37b0770ac414a3d6be97dc11dde13868d6a78dadf511da1fcd3ad4816ecca14 Description: GNOME translation updates for language Mongolian Description-md5: 0cd528d078542e079e14cd1c1abb2d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mn-base Priority: optional Section: translations Installed-Size: 974 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mn (<< 1:14.04+20140410), language-pack-gnome-mn-base (<< 1:14.04+20140410), language-pack-kde-mn (<< 1:14.04+20140410), language-pack-kde-mn-base (<< 1:14.04+20140410), language-pack-mn (<< 1:14.04+20140410), language-pack-mn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mn-base/language-pack-gnome-mn-base_14.04+20140410_all.deb Size: 236688 MD5sum: a1a058ed338fc158c4c7ca8d5c2dae8e SHA1: b3d3f18d09a24ad59324a46f5563fec1eb82f909 SHA256: ba537a6600ca6c7d23b8994440da49171f087878860313b04c1ec896fb3e64e7 Description: GNOME translations for language Mongolian Description-md5: cb296431d37da08a5bf8aae2a014fa04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mr (<< 1:14.04+20140410), language-pack-gnome-mr-base, language-pack-kde-mr (<< 1:14.04+20140410), language-pack-kde-mr-base (<< 1:14.04+20140410), language-pack-mr (<< 1:14.04+20140410), language-pack-mr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mr-base (>= 1:14.04+20140410), language-pack-mr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mr/language-pack-gnome-mr_14.04+20140410_all.deb Size: 1996 MD5sum: a248fd373b53745ef79c109fb3b08081 SHA1: a557e07beda42a675610df46daa99d61163450f1 SHA256: 03119b72b52c350b39575ed1e3c65776b5b124e0b197c807a43410eba5766f05 Description: GNOME translation updates for language Marathi Description-md5: 9b0e9d1864953992f55621e31fea2dd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mr-base Priority: optional Section: translations Installed-Size: 4962 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mr (<< 1:14.04+20140410), language-pack-gnome-mr-base (<< 1:14.04+20140410), language-pack-kde-mr (<< 1:14.04+20140410), language-pack-kde-mr-base (<< 1:14.04+20140410), language-pack-mr (<< 1:14.04+20140410), language-pack-mr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mr-base/language-pack-gnome-mr-base_14.04+20140410_all.deb Size: 1124212 MD5sum: bebc39cd27f3741a1ae61bca4c97b43b SHA1: a65361d858ea38a2aaf4a1e3d650b4e52da65cda SHA256: 75a5071e5ff4a26d893c30028c86d0830f46ba85a95d6b850e2c49d6359296d0 Description: GNOME translations for language Marathi Description-md5: 082eb38e25b22826d51c644f5f1c4154 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ms Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ms (<< 1:14.04+20140410), language-pack-gnome-ms-base, language-pack-kde-ms (<< 1:14.04+20140410), language-pack-kde-ms-base (<< 1:14.04+20140410), language-pack-ms (<< 1:14.04+20140410), language-pack-ms-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ms-base (>= 1:14.04+20140410), language-pack-ms Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ms/language-pack-gnome-ms_14.04+20140410_all.deb Size: 1998 MD5sum: 12e250c30fe4480cb9f42cdafba90822 SHA1: 1a856ce9dbdb6634fba082c42bdfdcf6b1b2ecc2 SHA256: 2ec67ae796af393a4cd0f7934232dd5bc64a591fbd7b7f54361089595e2a6456 Description: GNOME translation updates for language Malay Description-md5: 87e64cf63dc5ec9474864761c98cc277 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ms-base Priority: optional Section: translations Installed-Size: 5867 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ms (<< 1:14.04+20140410), language-pack-gnome-ms-base (<< 1:14.04+20140410), language-pack-kde-ms (<< 1:14.04+20140410), language-pack-kde-ms-base (<< 1:14.04+20140410), language-pack-ms (<< 1:14.04+20140410), language-pack-ms-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ms (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ms (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ms-base/language-pack-gnome-ms-base_14.04+20140410_all.deb Size: 1757376 MD5sum: 36fd11cd4b95791f2902cb21038e25b6 SHA1: 60b79210d9cd04ca031bfd368bc835a72f2e83b3 SHA256: 24d248efd4a83ba37b2c12d2e043e27e048ece6fd9d1f9d4d30e0f5773c930af Description: GNOME translations for language Malay Description-md5: dae19fdc27a75f13b37dfbd554b9920d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mt (<< 1:14.04+20140410), language-pack-gnome-mt-base, language-pack-kde-mt (<< 1:14.04+20140410), language-pack-kde-mt-base (<< 1:14.04+20140410), language-pack-mt (<< 1:14.04+20140410), language-pack-mt-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mt-base (>= 1:14.04+20140410), language-pack-mt Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mt/language-pack-gnome-mt_14.04+20140410_all.deb Size: 1990 MD5sum: 9473610dcd037609752ba322291e3bcd SHA1: e41748e99b3425e07686d0de8f8869eeee388f40 SHA256: cd2e9c9ba937b9088d580114e29a78be06e09e44f394c3968817720fd57c8cfc Description: GNOME translation updates for language Maltese Description-md5: 507ae9329767e80851c2a048aed7c686 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mt-base Priority: optional Section: translations Installed-Size: 52 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mt (<< 1:14.04+20140410), language-pack-gnome-mt-base (<< 1:14.04+20140410), language-pack-kde-mt (<< 1:14.04+20140410), language-pack-kde-mt-base (<< 1:14.04+20140410), language-pack-mt (<< 1:14.04+20140410), language-pack-mt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mt-base/language-pack-gnome-mt-base_14.04+20140410_all.deb Size: 7978 MD5sum: b0163b2bd8ca3cd67337122f1a9903f5 SHA1: a3dc6b380ef72a0ce6f8d2f1c8c51b29a44a972c SHA256: e612c4e991356323f301c99ec740dcf6a0671e8193a8097f4ee004cfac66c358 Description: GNOME translations for language Maltese Description-md5: b3836852aaf1a8aec3eb8f5a64ec6a5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-my Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-my (<< 1:14.04+20140410), language-pack-gnome-my-base, language-pack-kde-my (<< 1:14.04+20140410), language-pack-kde-my-base (<< 1:14.04+20140410), language-pack-my (<< 1:14.04+20140410), language-pack-my-base (<< 1:14.04+20140410) Depends: language-pack-gnome-my-base (>= 1:14.04+20140410), language-pack-my Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-my/language-pack-gnome-my_14.04+20140410_all.deb Size: 1994 MD5sum: 021f681bbb28a282115afdbe7012e33d SHA1: f4a3895f04cd4ea59aecab7c9e1006615e1030d0 SHA256: 8d2dddb9e20eb7cdfc3b61ae4c5f29c221251548bc498e62ce0e45d2178dc3da Description: GNOME translation updates for language Burmese Description-md5: 6e30200fe15bd569b10f3710ff2733d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-my-base Priority: optional Section: translations Installed-Size: 3561 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-my (<< 1:14.04+20140410), language-pack-gnome-my-base (<< 1:14.04+20140410), language-pack-kde-my (<< 1:14.04+20140410), language-pack-kde-my-base (<< 1:14.04+20140410), language-pack-my (<< 1:14.04+20140410), language-pack-my-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-my (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-my (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-my-base/language-pack-gnome-my-base_14.04+20140410_all.deb Size: 748954 MD5sum: 15a856f438dca7ed97a2abcbba5b6dc4 SHA1: 79152dbfddf968d643fc9c33008c9769ac9830fa SHA256: 2a3f06b6a793a6948b83365e1f96938dd7923fa2e7a0f3de5cd94756b841f0e0 Description: GNOME translations for language Burmese Description-md5: 9c88e8c1f302f2efb13f7f63fa40f37e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nan Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nan (<< 1:14.04+20140410), language-pack-gnome-nan-base, language-pack-kde-nan (<< 1:14.04+20140410), language-pack-kde-nan-base (<< 1:14.04+20140410), language-pack-nan (<< 1:14.04+20140410), language-pack-nan-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nan-base (>= 1:14.04+20140410), language-pack-nan Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nan/language-pack-gnome-nan_14.04+20140410_all.deb Size: 2010 MD5sum: 395a3b233fa33086e034949223d3493a SHA1: 983454232a4b9e0e1b1ae243fbf4e30349fa050f SHA256: 75c3423ea4ad99cd86236fdf490a7e7f5cf94f7694eeb2738ffe481fccc9ff5b Description: GNOME translation updates for language Chinese, Min Nan Description-md5: d70e650fcd9c2d6e393a03dc0ab4a418 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nan-base Priority: optional Section: translations Installed-Size: 41 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nan (<< 1:14.04+20140410), language-pack-gnome-nan-base (<< 1:14.04+20140410), language-pack-kde-nan (<< 1:14.04+20140410), language-pack-kde-nan-base (<< 1:14.04+20140410), language-pack-nan (<< 1:14.04+20140410), language-pack-nan-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nan (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nan (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nan-base/language-pack-gnome-nan-base_14.04+20140410_all.deb Size: 3966 MD5sum: f394722c35512c14dc3584b42b643d7d SHA1: d36991c50de6998f935d394ec4d4ead5c019f524 SHA256: 45808c5042c5c5e93b404481d4cfe308d2b6e63e71b87e9c1f64926d51793346 Description: GNOME translations for language Chinese, Min Nan Description-md5: d5faf8f6166e747d9c0068c139b43d7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nb (<< 1:14.04+20140410), language-pack-gnome-nb-base, language-pack-kde-nb (<< 1:14.04+20140410), language-pack-kde-nb-base (<< 1:14.04+20140410), language-pack-nb (<< 1:14.04+20140410), language-pack-nb-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nb-base (>= 1:14.04+20140410), language-pack-nb Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nb/language-pack-gnome-nb_14.04+20140410_all.deb Size: 2016 MD5sum: df104cb9a8bad29d6baa2db8ce465364 SHA1: 2ef9e48249e17a6368838909a665abc651020d90 SHA256: c4f8017c9b57a2d4b53358cf8050320435f69711d662eb377228a7860b45823d Description: GNOME translation updates for language Bokmål, Norwegian; Norwegian Bokmål Description-md5: 6a1b73da105a57b595b139f8bf97ef1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nb-base Priority: optional Section: translations Installed-Size: 5511 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nb (<< 1:14.04+20140410), language-pack-gnome-nb-base (<< 1:14.04+20140410), language-pack-kde-nb (<< 1:14.04+20140410), language-pack-kde-nb-base (<< 1:14.04+20140410), language-pack-nb (<< 1:14.04+20140410), language-pack-nb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nb-base/language-pack-gnome-nb-base_14.04+20140410_all.deb Size: 1665170 MD5sum: a8434a710de5791d3020bd6fa1bffd3e SHA1: 638f8aee822e19b7e705222c892a3ea4caf22d74 SHA256: 13f77fb0486db61458f4c4e56bf21e8e87b361588bbd148df905b95856892c56 Description: GNOME translations for language Bokmål, Norwegian; Norwegian Bokmål Description-md5: 7acea85112366268273879cf1fb63d00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nds Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nds (<< 1:14.04+20140410), language-pack-gnome-nds-base, language-pack-kde-nds (<< 1:14.04+20140410), language-pack-kde-nds-base (<< 1:14.04+20140410), language-pack-nds (<< 1:14.04+20140410), language-pack-nds-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nds-base (>= 1:14.04+20140410), language-pack-nds Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nds/language-pack-gnome-nds_14.04+20140410_all.deb Size: 2006 MD5sum: f942071ea6f0afa36c60fd7c0489464d SHA1: e79194c9662dfd509459668c5ff1f0a803b0e247 SHA256: 1f988244b99a5f76ca2b25b84fa2d5a2c0ed822a81a177b914a6b97e04599d8e Description: GNOME translation updates for language German, Low Description-md5: 82bbe4142808df0f11e1203cbb622a52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nds-base Priority: optional Section: translations Installed-Size: 737 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nds (<< 1:14.04+20140410), language-pack-gnome-nds-base (<< 1:14.04+20140410), language-pack-kde-nds (<< 1:14.04+20140410), language-pack-kde-nds-base (<< 1:14.04+20140410), language-pack-nds (<< 1:14.04+20140410), language-pack-nds-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nds (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nds (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nds-base/language-pack-gnome-nds-base_14.04+20140410_all.deb Size: 231912 MD5sum: d4595946663c449dabbc0c545adf27a8 SHA1: a1e6e812812cb212d6d8d18cf49552ada49db066 SHA256: 8e009e2e89b476bd0c720090bd17e3e69b3ff8483cf65f5dbc5cf1b21c1ae927 Description: GNOME translations for language German, Low Description-md5: 4c461a96f247e0bc6766c05feca8af92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ne Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ne (<< 1:14.04+20140410), language-pack-gnome-ne-base, language-pack-kde-ne (<< 1:14.04+20140410), language-pack-kde-ne-base (<< 1:14.04+20140410), language-pack-ne (<< 1:14.04+20140410), language-pack-ne-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ne-base (>= 1:14.04+20140410), language-pack-ne Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ne/language-pack-gnome-ne_14.04+20140410_all.deb Size: 1988 MD5sum: d329538ef8a3f05b782191b1f843c25d SHA1: 267357835afd913cc91984e8dcaa98a9ac3938ba SHA256: 7dd6d85f5cdb525b35a09880e3c94acc87b9b4dde01c75ecbfe2946e68020538 Description: GNOME translation updates for language Nepali Description-md5: 2f1a937545a84cfe0c3b4ffca7267bf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ne-base Priority: optional Section: translations Installed-Size: 2747 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ne (<< 1:14.04+20140410), language-pack-gnome-ne-base (<< 1:14.04+20140410), language-pack-kde-ne (<< 1:14.04+20140410), language-pack-kde-ne-base (<< 1:14.04+20140410), language-pack-ne (<< 1:14.04+20140410), language-pack-ne-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ne (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ne (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ne-base/language-pack-gnome-ne-base_14.04+20140410_all.deb Size: 594070 MD5sum: 4fa0184df18c814305c908c1ad1b3001 SHA1: f1fb54a8c651faa8d16b12ee6f229499ef0499be SHA256: ec44cfeb122a64a463fc6e4fffea51f8fc396c3bcdf10e60611ed5f48439ba2b Description: GNOME translations for language Nepali Description-md5: cc44ea151a4ae98b863e289583f1ebfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nl (<< 1:14.04+20140410), language-pack-gnome-nl-base, language-pack-kde-nl (<< 1:14.04+20140410), language-pack-kde-nl-base (<< 1:14.04+20140410), language-pack-nl (<< 1:14.04+20140410), language-pack-nl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nl-base (>= 1:14.04+20140410), language-pack-nl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nl/language-pack-gnome-nl_14.04+20140410_all.deb Size: 2014 MD5sum: 7441e0e0d28fc50bc6b3d08422241411 SHA1: 0d603ca8902c3490ba973b7239c1fc277e030070 SHA256: 6af21e653577016fcb308db8ff7feca15a3b3723ee5634aae9bc98414884820c Description: GNOME translation updates for language Dutch; Flemish Description-md5: 1d604658a57e2a027894f420d2aeb9f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nl-base Priority: optional Section: translations Installed-Size: 6893 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nl (<< 1:14.04+20140410), language-pack-gnome-nl-base (<< 1:14.04+20140410), language-pack-kde-nl (<< 1:14.04+20140410), language-pack-kde-nl-base (<< 1:14.04+20140410), language-pack-nl (<< 1:14.04+20140410), language-pack-nl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nl-base/language-pack-gnome-nl-base_14.04+20140410_all.deb Size: 1940332 MD5sum: 18da2d2856e986a42322de9b1c281891 SHA1: 78f52820acf34141ac4c0ee72feebcc37c1cc8f9 SHA256: 63e2f2081189655d0b1be8f0bef4df6a7508fec451fa993af94b9908c652af22 Description: GNOME translations for language Dutch; Flemish Description-md5: 37834e64ef66a034f09effbb51f4fab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nn (<< 1:14.04+20140410), language-pack-gnome-nn-base, language-pack-kde-nn (<< 1:14.04+20140410), language-pack-kde-nn-base (<< 1:14.04+20140410), language-pack-nn (<< 1:14.04+20140410), language-pack-nn-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nn-base (>= 1:14.04+20140410), language-pack-nn Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nn/language-pack-gnome-nn_14.04+20140410_all.deb Size: 2018 MD5sum: 9fb4babfc58b8025d6a16eaaf81d5545 SHA1: 500af70503c75732debce4a9989e5e7ca48ce297 SHA256: 401f09d9ebfd0d06fe1c6c31dc5c4d313238b749a0f1ffd7845809b24ad797b9 Description: GNOME translation updates for language Norwegian Nynorsk; Nynorsk, Norwegian Description-md5: 94f1a27ad27bb708529205507fd85429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nn-base Priority: optional Section: translations Installed-Size: 2820 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nn (<< 1:14.04+20140410), language-pack-gnome-nn-base (<< 1:14.04+20140410), language-pack-kde-nn (<< 1:14.04+20140410), language-pack-kde-nn-base (<< 1:14.04+20140410), language-pack-nn (<< 1:14.04+20140410), language-pack-nn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nn-base/language-pack-gnome-nn-base_14.04+20140410_all.deb Size: 923364 MD5sum: a965443474a6271f136cfad0c20625f1 SHA1: 4e9352c9a32f28fd45d1c5006e2c0f7ea124fd3d SHA256: 07945cbc88513b9b7f47d0b481229821f49e8ef8967dace97f794c76de372cce Description: GNOME translations for language Norwegian Nynorsk; Nynorsk, Norwegian Description-md5: 2361eaea8d3fbffd19c12235a054647d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nso Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nso (<< 1:14.04+20140410), language-pack-gnome-nso-base, language-pack-kde-nso (<< 1:14.04+20140410), language-pack-kde-nso-base (<< 1:14.04+20140410), language-pack-nso (<< 1:14.04+20140410), language-pack-nso-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nso-base (>= 1:14.04+20140410), language-pack-nso Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nso/language-pack-gnome-nso_14.04+20140410_all.deb Size: 2022 MD5sum: 90decf9c8d1b6f0d5af6a66bed993ed5 SHA1: 0dbc0fb4a02994f6bc517053d7127e9dda8d0f04 SHA256: b5853384acc5dd04b5ea696f3402eb09d76efda24c7a794950e8a8b9376ae34e Description: GNOME translation updates for language Pedi Description-md5: 32d80bc1603f393765a511ff0b1028ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nso-base Priority: optional Section: translations Installed-Size: 375 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nso (<< 1:14.04+20140410), language-pack-gnome-nso-base (<< 1:14.04+20140410), language-pack-kde-nso (<< 1:14.04+20140410), language-pack-kde-nso-base (<< 1:14.04+20140410), language-pack-nso (<< 1:14.04+20140410), language-pack-nso-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nso (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nso (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nso-base/language-pack-gnome-nso-base_14.04+20140410_all.deb Size: 92582 MD5sum: d3a5f6d2fc32a73fdcb7294d038b3247 SHA1: fe3f1a97af8831677a9966c91015d129cd29cff2 SHA256: 0e06400025f129e4cb6b192db0b918db366db6608c997af21c4e96cfdb4ab547 Description: GNOME translations for language Pedi Description-md5: 96c3f28b147a95be68917c3c3b81349d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-oc Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-oc (<< 1:14.04+20140410), language-pack-gnome-oc-base, language-pack-kde-oc (<< 1:14.04+20140410), language-pack-kde-oc-base (<< 1:14.04+20140410), language-pack-oc (<< 1:14.04+20140410), language-pack-oc-base (<< 1:14.04+20140410) Depends: language-pack-gnome-oc-base (>= 1:14.04+20140410), language-pack-oc Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-oc/language-pack-gnome-oc_14.04+20140410_all.deb Size: 2016 MD5sum: 28ceb84ecc6a20406de40c0fdeacedc8 SHA1: 21196c7163336dc21969641ac3d39b44cc3ead20 SHA256: ce639166755bf5346af307b922339f9432bbaabd2d03e0c2a65a322a23be22f6 Description: GNOME translation updates for language Occitan (post 1500) Description-md5: 66709e79725308337ddae299414597b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-oc-base Priority: optional Section: translations Installed-Size: 6733 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-oc (<< 1:14.04+20140410), language-pack-gnome-oc-base (<< 1:14.04+20140410), language-pack-kde-oc (<< 1:14.04+20140410), language-pack-kde-oc-base (<< 1:14.04+20140410), language-pack-oc (<< 1:14.04+20140410), language-pack-oc-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-oc (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-oc (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-oc-base/language-pack-gnome-oc-base_14.04+20140410_all.deb Size: 1717118 MD5sum: 030fcaa45e95f3505788acafbf777242 SHA1: ad1eb0eeff2b934ddded978b73a694a97ab717fa SHA256: 128763f10aa79747f489fcd628657e08cb32402120f16d8188626bff678fe168 Description: GNOME translations for language Occitan (post 1500) Description-md5: 03f6d0a0742ef2501a78fa0c46af92cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-om Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-om (<< 1:14.04+20140410), language-pack-gnome-om-base, language-pack-kde-om (<< 1:14.04+20140410), language-pack-kde-om-base (<< 1:14.04+20140410), language-pack-om (<< 1:14.04+20140410), language-pack-om-base (<< 1:14.04+20140410) Depends: language-pack-gnome-om-base (>= 1:14.04+20140410), language-pack-om Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-om/language-pack-gnome-om_14.04+20140410_all.deb Size: 2004 MD5sum: a099f25d78d477669a652d881646ea28 SHA1: 7ec98fc9c37e58316a235d3a39d0ec6f5ac0cc45 SHA256: 036e3720b1c90283ac5f8c2f0f405ee239e78b7400fe73068e4cc3723ec4f723 Description: GNOME translation updates for language Oromo Description-md5: cfacd0839921b9bb8c34d3d5de323562 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-om-base Priority: optional Section: translations Installed-Size: 42 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-om (<< 1:14.04+20140410), language-pack-gnome-om-base (<< 1:14.04+20140410), language-pack-kde-om (<< 1:14.04+20140410), language-pack-kde-om-base (<< 1:14.04+20140410), language-pack-om (<< 1:14.04+20140410), language-pack-om-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-om (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-om (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-om-base/language-pack-gnome-om-base_14.04+20140410_all.deb Size: 4482 MD5sum: c2af7bbbb81f2cd6b30d3d182f5eaf33 SHA1: 484077eb5020d45096e93afc70ad4550abf613a0 SHA256: e1148b78791d0b8edf1d8532553892e02f1524fc1366c2c6eeeba7ec58f73995 Description: GNOME translations for language Oromo Description-md5: da878de684a821f28071564ae85ecc62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-or Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-or (<< 1:14.04+20140410), language-pack-gnome-or-base, language-pack-kde-or (<< 1:14.04+20140410), language-pack-kde-or-base (<< 1:14.04+20140410), language-pack-or (<< 1:14.04+20140410), language-pack-or-base (<< 1:14.04+20140410) Depends: language-pack-gnome-or-base (>= 1:14.04+20140410), language-pack-or Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-or/language-pack-gnome-or_14.04+20140410_all.deb Size: 2010 MD5sum: a0f74e062d662a8d81a35647fe7a398b SHA1: 3927cad7a1fbffebf59cf018487ddffea3eb16ee SHA256: 117db81977167a979daae481dec8eeca83e97a1b850a8860cd9b547c2fd03f8e Description: GNOME translation updates for language Oriya Description-md5: b54573c8a85273e8395d289e946e17da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-or-base Priority: optional Section: translations Installed-Size: 4754 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-or (<< 1:14.04+20140410), language-pack-gnome-or-base (<< 1:14.04+20140410), language-pack-kde-or (<< 1:14.04+20140410), language-pack-kde-or-base (<< 1:14.04+20140410), language-pack-or (<< 1:14.04+20140410), language-pack-or-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-or (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-or (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-or-base/language-pack-gnome-or-base_14.04+20140410_all.deb Size: 1006378 MD5sum: 0e1861c1d418420ae050c183d75ea1be SHA1: fca07a2d51cc1cc80a9b868b7dc1fe20d9b019f8 SHA256: 7d53b74cc7a16152c66bdba3b3b386e037955f19ae4f252cdf6333b1f3e4da95 Description: GNOME translations for language Oriya Description-md5: 83d7866a97d42af7d9a004ca2752c21a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-os Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-os (<< 1:14.04+20140410), language-pack-gnome-os-base, language-pack-kde-os (<< 1:14.04+20140410), language-pack-kde-os-base (<< 1:14.04+20140410), language-pack-os (<< 1:14.04+20140410), language-pack-os-base (<< 1:14.04+20140410) Depends: language-pack-gnome-os-base (>= 1:14.04+20140410), language-pack-os Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-os/language-pack-gnome-os_14.04+20140410_all.deb Size: 1998 MD5sum: b4cb0f05c1880ded91fa1ef3be1e427e SHA1: 0e200c0b1cd3e7092636f7c36a0398d6e898a378 SHA256: 444ed22073e0892d813edb42fd1c9a7af9a1f1ebb1158a5acd9acd11cb4bfe8e Description: GNOME translation updates for language Ossetian; Ossetic Description-md5: 398bf3070ba332d16dd4d3cbea91951d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-os-base Priority: optional Section: translations Installed-Size: 101 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-os (<< 1:14.04+20140410), language-pack-gnome-os-base (<< 1:14.04+20140410), language-pack-kde-os (<< 1:14.04+20140410), language-pack-kde-os-base (<< 1:14.04+20140410), language-pack-os (<< 1:14.04+20140410), language-pack-os-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-os (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-os (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-os-base/language-pack-gnome-os-base_14.04+20140410_all.deb Size: 21788 MD5sum: 31e930a9282e19b74bb842f6504b41df SHA1: b515b3892175d172ba2c17fd6d2d0f79fa181dde SHA256: 73d3f9af661c68ceb66d880b4ddcbc3735c0469e88a1cfcf0da725a51b4648c8 Description: GNOME translations for language Ossetian; Ossetic Description-md5: 9bbdd1be9ea52b74df20166a65a32f78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pa (<< 1:14.04+20140410), language-pack-gnome-pa-base, language-pack-kde-pa (<< 1:14.04+20140410), language-pack-kde-pa-base (<< 1:14.04+20140410), language-pack-pa (<< 1:14.04+20140410), language-pack-pa-base (<< 1:14.04+20140410) Depends: language-pack-gnome-pa-base (>= 1:14.04+20140410), language-pack-pa Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-pa/language-pack-gnome-pa_14.04+20140410_all.deb Size: 2000 MD5sum: 5b165a55714f057a566b2d807f8d8311 SHA1: 11746a9cd4a591c904a889259a391d537b6cedbb SHA256: c21c6592da0c55a61c37f69b38af80f420f26e59b56bf328c3e6dee31e814e83 Description: GNOME translation updates for language Panjabi; Punjabi Description-md5: 5be4e374eb6b9e6959faf7cad9d7f66b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pa-base Priority: optional Section: translations Installed-Size: 6571 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pa (<< 1:14.04+20140410), language-pack-gnome-pa-base (<< 1:14.04+20140410), language-pack-kde-pa (<< 1:14.04+20140410), language-pack-kde-pa-base (<< 1:14.04+20140410), language-pack-pa (<< 1:14.04+20140410), language-pack-pa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-pa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-pa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-pa-base/language-pack-gnome-pa-base_14.04+20140410_all.deb Size: 1518772 MD5sum: d33d4c16067bf79e76ab39b0f1f671b1 SHA1: 31a05d427b9aa41a8ca81c1ee3e0b8dc1826a0a3 SHA256: 63c099b7db2132c14f860a55f60ab62b3ee0aac60fa4e91c7211023c5c4e8bb2 Description: GNOME translations for language Panjabi; Punjabi Description-md5: c6a8dfc20918971e648f39bd171d7538 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pap Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pap (<< 1:14.04+20140410), language-pack-gnome-pap-base, language-pack-kde-pap (<< 1:14.04+20140410), language-pack-kde-pap-base (<< 1:14.04+20140410), language-pack-pap (<< 1:14.04+20140410), language-pack-pap-base (<< 1:14.04+20140410) Depends: language-pack-gnome-pap-base (>= 1:14.04+20140410), language-pack-pap Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-pap/language-pack-gnome-pap_14.04+20140410_all.deb Size: 2016 MD5sum: 39f9f3dfa63f896bbf1607f27db98f14 SHA1: 0458033495c872c620e3e0102f0001555b3a7bea SHA256: 9d1ce0f139d59af5f9d9b05098e553c30994a320c6f325d778adc9f6bf705ef4 Description: GNOME translation updates for language Papiamento Description-md5: 801a8a38476d486baa9e55c78c896d89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pap-base Priority: optional Section: translations Installed-Size: 44 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pap (<< 1:14.04+20140410), language-pack-gnome-pap-base (<< 1:14.04+20140410), language-pack-kde-pap (<< 1:14.04+20140410), language-pack-kde-pap-base (<< 1:14.04+20140410), language-pack-pap (<< 1:14.04+20140410), language-pack-pap-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-pap (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-pap (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-pap-base/language-pack-gnome-pap-base_14.04+20140410_all.deb Size: 5212 MD5sum: d4fefa1574abb27861a6378edef0ad99 SHA1: eff58306dfa03801c3000cebdc79a803f6ca301c SHA256: aa6ec09c78a08d41d45f9bdd827dffe097592be2d976cbd3f07a36a3d58a8f18 Description: GNOME translations for language Papiamento Description-md5: 401902f1b4e7d47cbc2ca5803fd92720 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pl (<< 1:14.04+20140410), language-pack-gnome-pl-base, language-pack-kde-pl (<< 1:14.04+20140410), language-pack-kde-pl-base (<< 1:14.04+20140410), language-pack-pl (<< 1:14.04+20140410), language-pack-pl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-pl-base (>= 1:14.04+20140410), language-pack-pl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-pl/language-pack-gnome-pl_14.04+20140410_all.deb Size: 1990 MD5sum: b5dbd66cccdfe9672bc707e68f51575a SHA1: 36b678f545b008805fb97b1ffeeb6ab72097a405 SHA256: 3bcae594caffe21deab9eedf66d6934b449ab93cdd85e5d033b53a564bb1bfa6 Description: GNOME translation updates for language Polish Description-md5: f43ceb1b03f4255958e3e4557c37aa58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pl-base Priority: optional Section: translations Installed-Size: 6748 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pl (<< 1:14.04+20140410), language-pack-gnome-pl-base (<< 1:14.04+20140410), language-pack-kde-pl (<< 1:14.04+20140410), language-pack-kde-pl-base (<< 1:14.04+20140410), language-pack-pl (<< 1:14.04+20140410), language-pack-pl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-pl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-pl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-pl-base/language-pack-gnome-pl-base_14.04+20140410_all.deb Size: 2010086 MD5sum: 235c6470e0f3a95b2023b40bcc9a8e8d SHA1: af44efc68f12ce401144c71edef0e65eeb378818 SHA256: 662c3414c578d92428c012c454735f2a6fe7101730be8df8385bf000814dd195 Description: GNOME translations for language Polish Description-md5: 6315e4744f9582612befc793db907b66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ps Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ps (<< 1:14.04+20140410), language-pack-gnome-ps-base, language-pack-kde-ps (<< 1:14.04+20140410), language-pack-kde-ps-base (<< 1:14.04+20140410), language-pack-ps (<< 1:14.04+20140410), language-pack-ps-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ps-base (>= 1:14.04+20140410), language-pack-ps Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ps/language-pack-gnome-ps_14.04+20140410_all.deb Size: 2014 MD5sum: da042e99d695e390470f71daf27e59b2 SHA1: e627fe9c76e18ca3e9d9ad45f32ac215ffd2b19a SHA256: 107775415b23ff35fc7bbb63b2d162bbb08330855cd48c6e2e4f783e6e9814de Description: GNOME translation updates for language Pushto; Pashto Description-md5: 6e5833284f0c3fa71c4aa83a3b69ab0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ps-base Priority: optional Section: translations Installed-Size: 512 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ps (<< 1:14.04+20140410), language-pack-gnome-ps-base (<< 1:14.04+20140410), language-pack-kde-ps (<< 1:14.04+20140410), language-pack-kde-ps-base (<< 1:14.04+20140410), language-pack-ps (<< 1:14.04+20140410), language-pack-ps-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ps (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ps (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ps-base/language-pack-gnome-ps-base_14.04+20140410_all.deb Size: 132412 MD5sum: b92b58a56287d23500dba2291a19a248 SHA1: 882bbd2575c7940646ca05823848911f79103067 SHA256: 51bde3b44146baedf1679f54d284b1e3f900a43ed2e2b4f722199e4e5d7b6809 Description: GNOME translations for language Pushto; Pashto Description-md5: 3d552d798b636e6fe4846300f8411e5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pt (<< 1:14.04+20140410), language-pack-gnome-pt-base, language-pack-kde-pt (<< 1:14.04+20140410), language-pack-kde-pt-base (<< 1:14.04+20140410), language-pack-pt (<< 1:14.04+20140410), language-pack-pt-base (<< 1:14.04+20140410) Depends: language-pack-gnome-pt-base (>= 1:14.04+20140410), language-pack-pt Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-pt/language-pack-gnome-pt_14.04+20140410_all.deb Size: 2004 MD5sum: bef178945f231bd5f118a3dadf16c42e SHA1: d7cd1b913319f7e39a8a8a68dafa9705be61f2e0 SHA256: adec03dc8966fe96af5a5f7523eda66c0a037fa34d60469ca57f6254148abc83 Description: GNOME translation updates for language Portuguese Description-md5: 8bd089c6a5524f01c6f3ca61600de39c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-pt-base Priority: optional Section: translations Installed-Size: 16881 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pt (<< 1:14.04+20140410), language-pack-gnome-pt-base (<< 1:14.04+20140410), language-pack-kde-pt (<< 1:14.04+20140410), language-pack-kde-pt-base (<< 1:14.04+20140410), language-pack-pt (<< 1:14.04+20140410), language-pack-pt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-pt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-pt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-pt-base/language-pack-gnome-pt-base_14.04+20140410_all.deb Size: 4846636 MD5sum: 86c016c5e3c71d064e27fd9a11e6ca5a SHA1: e759710e0bb2d8da144c86d22269e0665b88eb9c SHA256: caf7a251d67903f773fae9d65c500cd4c9d80116ed0733ad03e0d797d9327e66 Description: GNOME translations for language Portuguese Description-md5: 4ee89c98e155a3fca14d1ccad82fc438 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-ro Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ro (<< 1:14.04+20140410), language-pack-gnome-ro-base, language-pack-kde-ro (<< 1:14.04+20140410), language-pack-kde-ro-base (<< 1:14.04+20140410), language-pack-ro (<< 1:14.04+20140410), language-pack-ro-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ro-base (>= 1:14.04+20140410), language-pack-ro Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ro/language-pack-gnome-ro_14.04+20140410_all.deb Size: 2002 MD5sum: 8c1069b29ebabca52aa87597bffaeba6 SHA1: 52069ba0b7f995d1251f675c514dd819818e7af6 SHA256: 64c9f3bcd5e208a1109a941552ceadfae09077c44320c578610c2f004d010930 Description: GNOME translation updates for language Romanian Description-md5: 3540af51111fa5be98432a3342d524b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ro-base Priority: optional Section: translations Installed-Size: 6364 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ro (<< 1:14.04+20140410), language-pack-gnome-ro-base (<< 1:14.04+20140410), language-pack-kde-ro (<< 1:14.04+20140410), language-pack-kde-ro-base (<< 1:14.04+20140410), language-pack-ro (<< 1:14.04+20140410), language-pack-ro-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ro (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ro (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ro-base/language-pack-gnome-ro-base_14.04+20140410_all.deb Size: 2038272 MD5sum: 08f08f63b2dc97568ccaf16d20cf4fbd SHA1: c94805f730a99e52355787dba1f61d8224d52d51 SHA256: fd632d2de953e16a915314932d21f894a0f03191e645c97e8af9aed8d514b13c Description: GNOME translations for language Romanian Description-md5: 7cae8d5120001604efabf2f7f91a0274 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ru Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ru (<< 1:14.04+20140410), language-pack-gnome-ru-base, language-pack-kde-ru (<< 1:14.04+20140410), language-pack-kde-ru-base (<< 1:14.04+20140410), language-pack-ru (<< 1:14.04+20140410), language-pack-ru-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ru-base (>= 1:14.04+20140410), language-pack-ru Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ru/language-pack-gnome-ru_14.04+20140410_all.deb Size: 1996 MD5sum: 5a2184ff2ff42f781ff1edf12f7ad482 SHA1: 814b88fe3e4c6341659fa6d5726298ec1e94fc47 SHA256: 9272911ebd53351dca2db8f25e1c2ba46d5cf31bac9b13a7be6773f28a8baffb Description: GNOME translation updates for language Russian Description-md5: ba49f5482199ce5fcccb32e707e43111 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, lubuntu-live Package: language-pack-gnome-ru-base Priority: optional Section: translations Installed-Size: 12239 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ru (<< 1:14.04+20140410), language-pack-gnome-ru-base (<< 1:14.04+20140410), language-pack-kde-ru (<< 1:14.04+20140410), language-pack-kde-ru-base (<< 1:14.04+20140410), language-pack-ru (<< 1:14.04+20140410), language-pack-ru-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ru (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ru (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ru-base/language-pack-gnome-ru-base_14.04+20140410_all.deb Size: 2758112 MD5sum: 7fd0e6bcdc2c85a5d623d1a756cafc68 SHA1: 4c7a3e36625527782796633d7b0d622bcb753ebd SHA256: a52b6098f562707a200c0e73991e637674d42651dfc5cf22f32527b6a4a88c27 Description: GNOME translations for language Russian Description-md5: 80a178c6df431d1149ac2879c976c67b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, lubuntu-live Package: language-pack-gnome-rw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-rw (<< 1:14.04+20140410), language-pack-gnome-rw-base, language-pack-kde-rw (<< 1:14.04+20140410), language-pack-kde-rw-base (<< 1:14.04+20140410), language-pack-rw (<< 1:14.04+20140410), language-pack-rw-base (<< 1:14.04+20140410) Depends: language-pack-gnome-rw-base (>= 1:14.04+20140410), language-pack-rw Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-rw/language-pack-gnome-rw_14.04+20140410_all.deb Size: 2012 MD5sum: 9dbce867e46eb1aff622aef628da863c SHA1: 51b5dd364600509cc9607c14b714681c85883df5 SHA256: 417f1f0445065608c0fda5924c5396ce1c43bd12e665fc9f092ed400c817f497 Description: GNOME translation updates for language Kinyarwanda Description-md5: 829669d440217f95e488ad94edbb1164 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-rw-base Priority: optional Section: translations Installed-Size: 146 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-rw (<< 1:14.04+20140410), language-pack-gnome-rw-base (<< 1:14.04+20140410), language-pack-kde-rw (<< 1:14.04+20140410), language-pack-kde-rw-base (<< 1:14.04+20140410), language-pack-rw (<< 1:14.04+20140410), language-pack-rw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-rw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-rw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-rw-base/language-pack-gnome-rw-base_14.04+20140410_all.deb Size: 35106 MD5sum: 128c74e40617a06b5f5b4b398641c161 SHA1: 6763f0c0d03d2008309a8cd9556893fc51320291 SHA256: dd04684a964d15f758dd7bb2d2c8a3f466a404fe7a6842d3c1976de351988488 Description: GNOME translations for language Kinyarwanda Description-md5: f14653fecf5e554de093e19f7c82a160 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sa (<< 1:14.04+20140410), language-pack-gnome-sa-base, language-pack-kde-sa (<< 1:14.04+20140410), language-pack-kde-sa-base (<< 1:14.04+20140410), language-pack-sa (<< 1:14.04+20140410), language-pack-sa-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sa-base (>= 1:14.04+20140410), language-pack-sa Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sa/language-pack-gnome-sa_14.04+20140410_all.deb Size: 2014 MD5sum: edaa13702907c55efcad42d7dd165c6d SHA1: c28c3d7f342f4bbe9f4499cd4b54fed3ef6ab332 SHA256: d5f6fd17c347dc3809afd899624cd5dcde4a5cad59e3349a56bd261884ac8917 Description: GNOME translation updates for language Sanskrit Description-md5: df4ab564ac5657d1952207e87228e171 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sa-base Priority: optional Section: translations Installed-Size: 39 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sa (<< 1:14.04+20140410), language-pack-gnome-sa-base (<< 1:14.04+20140410), language-pack-kde-sa (<< 1:14.04+20140410), language-pack-kde-sa-base (<< 1:14.04+20140410), language-pack-sa (<< 1:14.04+20140410), language-pack-sa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sa-base/language-pack-gnome-sa-base_14.04+20140410_all.deb Size: 2980 MD5sum: 8add1d3d33c6779daa9bda334b443b5f SHA1: 7a317dbcd3e7398291ac336521260296e00f18b2 SHA256: 7714873a8d180b5732a7dc7ed59e7d8f3cfe6eb58d8e6916677715274e004eb7 Description: GNOME translations for language Sanskrit Description-md5: 417914845e6c6774f95f66d67d6c697a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sc Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sc (<< 1:14.04+20140410), language-pack-gnome-sc-base, language-pack-kde-sc (<< 1:14.04+20140410), language-pack-kde-sc-base (<< 1:14.04+20140410), language-pack-sc (<< 1:14.04+20140410), language-pack-sc-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sc-base (>= 1:14.04+20140410), language-pack-sc Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sc/language-pack-gnome-sc_14.04+20140410_all.deb Size: 2002 MD5sum: 463fdf1bef3cd2f55e8b7d548b1650cd SHA1: 403148df47feb065f15aa466a772ed6cdc11e50e SHA256: bf77cdf3e7e38e8237ec01f274b7b75bc592299d5bee24350a5b1b38f26025c3 Description: GNOME translation updates for language Sardinian Description-md5: 0114ca5ce79b6d6a75fc523f2738e369 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sc-base Priority: optional Section: translations Installed-Size: 90 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sc (<< 1:14.04+20140410), language-pack-gnome-sc-base (<< 1:14.04+20140410), language-pack-kde-sc (<< 1:14.04+20140410), language-pack-kde-sc-base (<< 1:14.04+20140410), language-pack-sc (<< 1:14.04+20140410), language-pack-sc-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sc (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sc (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sc-base/language-pack-gnome-sc-base_14.04+20140410_all.deb Size: 20762 MD5sum: e41f894e9476078b8e3bd35c3b0d9b4d SHA1: 431d4cb92d3cd60c07d184ea4b19b2229b2af6f2 SHA256: 85f876f3eaaf74ccc2928ebd8af17ddc6e967178493fd9b098d1648a2368fe56 Description: GNOME translations for language Sardinian Description-md5: a7d9e1a217748b1ca1d2ff387dbca90d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sd Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sd (<< 1:14.04+20140410), language-pack-gnome-sd-base, language-pack-kde-sd (<< 1:14.04+20140410), language-pack-kde-sd-base (<< 1:14.04+20140410), language-pack-sd (<< 1:14.04+20140410), language-pack-sd-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sd-base (>= 1:14.04+20140410), language-pack-sd Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sd/language-pack-gnome-sd_14.04+20140410_all.deb Size: 1986 MD5sum: bb78d01d8ee1b0560c1b1d8e950aba0a SHA1: b743f884121ad7d9fea2b08241f98f05231b1970 SHA256: 8d13b54b1ff11ebcfa180bacfa376a228a05c93ba3798f091dfe8c59eff9ecc9 Description: GNOME translation updates for language Sindhi Description-md5: a1c09554ebfb2a2c6bcb71a4568ada8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sd-base Priority: optional Section: translations Installed-Size: 354 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sd (<< 1:14.04+20140410), language-pack-gnome-sd-base (<< 1:14.04+20140410), language-pack-kde-sd (<< 1:14.04+20140410), language-pack-kde-sd-base (<< 1:14.04+20140410), language-pack-sd (<< 1:14.04+20140410), language-pack-sd-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sd (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sd (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sd-base/language-pack-gnome-sd-base_14.04+20140410_all.deb Size: 88042 MD5sum: 09a416189adfab82fb37c9bc576f84a0 SHA1: d5e4e944bae33ed833060e59ad13e04d5bb50e70 SHA256: e6086bfbb4eaf1a64ff117d25e00ef57054557cb1db29c6af9d10b1b9a850680 Description: GNOME translations for language Sindhi Description-md5: 010bf621413f8b2f30fd8a3a1140df1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-se Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-se (<< 1:14.04+20140410), language-pack-gnome-se-base, language-pack-kde-se (<< 1:14.04+20140410), language-pack-kde-se-base (<< 1:14.04+20140410), language-pack-se (<< 1:14.04+20140410), language-pack-se-base (<< 1:14.04+20140410) Depends: language-pack-gnome-se-base (>= 1:14.04+20140410), language-pack-se Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-se/language-pack-gnome-se_14.04+20140410_all.deb Size: 1994 MD5sum: 119b5c74af27877ac2d4169a4fa23500 SHA1: 0039b0a6277ca7558d0203f3223a0b8c4eba268a SHA256: 5fc6127ce2d67765f13aa579b74765a3d7aa074f1e4a86a8dfc42ce709bfd5e3 Description: GNOME translation updates for language Northern Sami Description-md5: 661531223c0c7b08dcd35eeee531c68a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-se-base Priority: optional Section: translations Installed-Size: 197 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-se (<< 1:14.04+20140410), language-pack-gnome-se-base (<< 1:14.04+20140410), language-pack-kde-se (<< 1:14.04+20140410), language-pack-kde-se-base (<< 1:14.04+20140410), language-pack-se (<< 1:14.04+20140410), language-pack-se-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-se (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-se (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-se-base/language-pack-gnome-se-base_14.04+20140410_all.deb Size: 47904 MD5sum: c9831df6fecf3fe3b4adcae4d1e53236 SHA1: cbde18b0e082b6820a7bf9f56ed5bf14329563ee SHA256: 4a0de6f810042f4a81e8cf5886383043dedce1d2b055577ebcbaafb73411c881 Description: GNOME translations for language Northern Sami Description-md5: 5ff065de071f81e4a0e534155a553742 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-shs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-shs (<< 1:14.04+20140410), language-pack-gnome-shs-base, language-pack-kde-shs (<< 1:14.04+20140410), language-pack-kde-shs-base (<< 1:14.04+20140410), language-pack-shs (<< 1:14.04+20140410), language-pack-shs-base (<< 1:14.04+20140410) Depends: language-pack-gnome-shs-base (>= 1:14.04+20140410), language-pack-shs Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-shs/language-pack-gnome-shs_14.04+20140410_all.deb Size: 2002 MD5sum: de7f010d27a38a6272e51a9bf31a79cb SHA1: fe28101c587a8193a6c7a71a8938a9f8be6d3053 SHA256: 7ff6347cd640594d245303b604ed77f23e97d1a37b55fd5eb3950f8175bbd051 Description: GNOME translation updates for language Shuswap Description-md5: 085706656685d487137034c8638624e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-shs-base Priority: optional Section: translations Installed-Size: 38 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-shs (<< 1:14.04+20140410), language-pack-gnome-shs-base (<< 1:14.04+20140410), language-pack-kde-shs (<< 1:14.04+20140410), language-pack-kde-shs-base (<< 1:14.04+20140410), language-pack-shs (<< 1:14.04+20140410), language-pack-shs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-shs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-shs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-shs-base/language-pack-gnome-shs-base_14.04+20140410_all.deb Size: 2734 MD5sum: 6642f98bc3f9fac00fdc8a7aeced0cdd SHA1: 8026ce8a0ddfaadcec6001c1638a91a39644cbf9 SHA256: 2a44e0847600a975a33996ea0cebd95b816553106b1c7ab1648dedb2a3c19494 Description: GNOME translations for language Shuswap Description-md5: 6e2062e36b127ecee06fa8fd24e04bf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-si Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-si (<< 1:14.04+20140410), language-pack-gnome-si-base, language-pack-kde-si (<< 1:14.04+20140410), language-pack-kde-si-base (<< 1:14.04+20140410), language-pack-si (<< 1:14.04+20140410), language-pack-si-base (<< 1:14.04+20140410) Depends: language-pack-gnome-si-base (>= 1:14.04+20140410), language-pack-si Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-si/language-pack-gnome-si_14.04+20140410_all.deb Size: 1994 MD5sum: 6b138cb8387778f99d1eca1b74b46750 SHA1: 9c40ec25abd2757e67497d5463b6b410230141e5 SHA256: 9ace6454229a36c1cfe943223a4d91b68f28e9ec17a1aec91b53ced048c0c858 Description: GNOME translation updates for language Sinhala; Sinhalese Description-md5: eff7b3f9c7b20c6316294b4b87994efb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-si-base Priority: optional Section: translations Installed-Size: 2028 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-si (<< 1:14.04+20140410), language-pack-gnome-si-base (<< 1:14.04+20140410), language-pack-kde-si (<< 1:14.04+20140410), language-pack-kde-si-base (<< 1:14.04+20140410), language-pack-si (<< 1:14.04+20140410), language-pack-si-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-si (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-si (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-si-base/language-pack-gnome-si-base_14.04+20140410_all.deb Size: 445388 MD5sum: e7533e4d353d3af21cb3438cf97e845c SHA1: 8884f681bfcada1acc78f1f9f475d1fbbd74fbff SHA256: 5ec4e45a178ab2308ca6442588550dc513c4955d70e6cd495cc313e774df56b7 Description: GNOME translations for language Sinhala; Sinhalese Description-md5: 7de9ae6781852cc9f642191a54229c23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sk (<< 1:14.04+20140410), language-pack-gnome-sk-base, language-pack-kde-sk (<< 1:14.04+20140410), language-pack-kde-sk-base (<< 1:14.04+20140410), language-pack-sk (<< 1:14.04+20140410), language-pack-sk-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sk-base (>= 1:14.04+20140410), language-pack-sk Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sk/language-pack-gnome-sk_14.04+20140410_all.deb Size: 2002 MD5sum: 3004f1cfcf01c8d028a36ec3f327b8f8 SHA1: b87655db50667f69f6b59cb8268648eb6a97fbdb SHA256: e14b824e8d338b70ac6f8c0cebd50e717af793de1d99cb6035b61009db2dbdd6 Description: GNOME translation updates for language Slovak Description-md5: 7f1bb07378a0d7c8013f9aeaebdef863 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sk-base Priority: optional Section: translations Installed-Size: 5658 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sk (<< 1:14.04+20140410), language-pack-gnome-sk-base (<< 1:14.04+20140410), language-pack-kde-sk (<< 1:14.04+20140410), language-pack-kde-sk-base (<< 1:14.04+20140410), language-pack-sk (<< 1:14.04+20140410), language-pack-sk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sk-base/language-pack-gnome-sk-base_14.04+20140410_all.deb Size: 1692038 MD5sum: 9eb2d7a9a503931294eb983ef5b46fa7 SHA1: f32b6dd593a47abea68fb02f569e8d904920ac38 SHA256: 1e768a56db95e08ac5247124adea971eef94ba07b4d532c7237db7caf25ee21e Description: GNOME translations for language Slovak Description-md5: f7d2bf42f49309958b0c8270abd6f043 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sl (<< 1:14.04+20140410), language-pack-gnome-sl-base, language-pack-kde-sl (<< 1:14.04+20140410), language-pack-kde-sl-base (<< 1:14.04+20140410), language-pack-sl (<< 1:14.04+20140410), language-pack-sl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sl-base (>= 1:14.04+20140410), language-pack-sl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sl/language-pack-gnome-sl_14.04+20140410_all.deb Size: 2012 MD5sum: 1cce95cc83c9047d0dba7f205723c998 SHA1: 2af3633671bd16363fdc48f3237bf03ea93b122a SHA256: 24d0919de9a02c83727787228acbd312aa7002aa93977332061a5bf30b43ee93 Description: GNOME translation updates for language Slovenian Description-md5: 9ff05ef79f08a9edbbf7d641dada217c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sl-base Priority: optional Section: translations Installed-Size: 10160 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sl (<< 1:14.04+20140410), language-pack-gnome-sl-base (<< 1:14.04+20140410), language-pack-kde-sl (<< 1:14.04+20140410), language-pack-kde-sl-base (<< 1:14.04+20140410), language-pack-sl (<< 1:14.04+20140410), language-pack-sl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sl-base/language-pack-gnome-sl-base_14.04+20140410_all.deb Size: 2543238 MD5sum: d79a878e7df06c5f7ba790559fc03fd5 SHA1: 523ee4157057826961a21798d8763b7d996a75e6 SHA256: 02f7ec52f4a55a002d65206d7c30f7598558370b6fe263cdd28f6cd185fa90d4 Description: GNOME translations for language Slovenian Description-md5: d1c125d5e64d7cb437dcfc5aecfc010b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-so Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:13.04+20130418 Replaces: language-pack-gnome-so (<< 1:13.04+20130418), language-pack-gnome-so-base, language-pack-kde-so (<< 1:13.04+20130418), language-pack-kde-so-base (<< 1:13.04+20130418), language-pack-so (<< 1:13.04+20130418), language-pack-so-base (<< 1:13.04+20130418) Depends: language-pack-gnome-so-base (>= 1:13.04+20130418), language-pack-so Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-so/language-pack-gnome-so_13.04+20130418_all.deb Size: 2000 MD5sum: eda7b8fcdf5899cf1e2c371cc57325aa SHA1: cc5892967f5b986b045cc5c4a9675fe020861cc5 SHA256: fa546ad9f78ea0dd5a3d282bf91beeed22e0fbbbbb5bcfa137e214638b56be02 Description: GNOME translation updates for language Somali Description-md5: 43dd1318affa4c413078ab37655db066 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-so-base Priority: optional Section: translations Installed-Size: 38 Maintainer: Language pack maintainers Architecture: all Version: 1:13.04+20130418 Replaces: language-pack-gnome-so (<< 1:13.04+20130418), language-pack-gnome-so-base (<< 1:13.04+20130418), language-pack-kde-so (<< 1:13.04+20130418), language-pack-kde-so-base (<< 1:13.04+20130418), language-pack-so (<< 1:13.04+20130418), language-pack-so-base (<< 1:13.04+20130418) Depends: locales (>= 2.3.6), language-pack-gnome-so (>= 1:13.04+20130418) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-so (<< 1:13.04+20130418) Filename: pool/main/l/language-pack-gnome-so-base/language-pack-gnome-so-base_13.04+20130418_all.deb Size: 2724 MD5sum: 616b8f6cb5e8f32aa5c37ce7b167fe54 SHA1: 4adb80135f5cdec22297bb5e4ea4776a76d1a109 SHA256: 25d1c6f9f3077dce62cf4bd7c998fc0bd03d9e0dee171cba094aa8cef56771d8 Description: GNOME translations for language Somali Description-md5: cbe1e13e0e3a56c20adec9a37c96b2a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sq Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sq (<< 1:14.04+20140410), language-pack-gnome-sq-base, language-pack-kde-sq (<< 1:14.04+20140410), language-pack-kde-sq-base (<< 1:14.04+20140410), language-pack-sq (<< 1:14.04+20140410), language-pack-sq-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sq-base (>= 1:14.04+20140410), language-pack-sq Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sq/language-pack-gnome-sq_14.04+20140410_all.deb Size: 2004 MD5sum: 7430f4729729ae2ffe7bac8d9dd3abf3 SHA1: d1b8a9cc6f202076f7aa74ef833b4e8025e3faea SHA256: 5436b76183d4dbf2940ca9143aea30e9037f3290c92f604a988a2661e49420fc Description: GNOME translation updates for language Albanian Description-md5: b1866be86dde73bbc352177c4681624a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sq-base Priority: optional Section: translations Installed-Size: 4073 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sq (<< 1:14.04+20140410), language-pack-gnome-sq-base (<< 1:14.04+20140410), language-pack-kde-sq (<< 1:14.04+20140410), language-pack-kde-sq-base (<< 1:14.04+20140410), language-pack-sq (<< 1:14.04+20140410), language-pack-sq-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sq (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sq (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sq-base/language-pack-gnome-sq-base_14.04+20140410_all.deb Size: 1181370 MD5sum: 992cdcddeac3b45833b517fea1642544 SHA1: 239ee546632451cf66a7fb42620dc1fa8ec0d775 SHA256: d539df9e1dc137661ac5c92a518efc9729e4d46bdca601ef6f47032d504d723b Description: GNOME translations for language Albanian Description-md5: 4dde5935c1ef292cfb9a3847415f9203 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sr (<< 1:14.04+20140410), language-pack-gnome-sr-base, language-pack-kde-sr (<< 1:14.04+20140410), language-pack-kde-sr-base (<< 1:14.04+20140410), language-pack-sr (<< 1:14.04+20140410), language-pack-sr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sr-base (>= 1:14.04+20140410), language-pack-sr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sr/language-pack-gnome-sr_14.04+20140410_all.deb Size: 1982 MD5sum: 653d3798c690ad44d820c438c88b4e3d SHA1: 5d8804c2950c2dfc62228f5153165dd612c9e640 SHA256: 8d95015d98be7d74e8dc53745b97ac15e7f729672fa8c847034f522ca91bc57d Description: GNOME translation updates for language Serbian Description-md5: 45acfa8d4ee7923177892692b5119e1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sr-base Priority: optional Section: translations Installed-Size: 16161 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sr (<< 1:14.04+20140410), language-pack-gnome-sr-base (<< 1:14.04+20140410), language-pack-kde-sr (<< 1:14.04+20140410), language-pack-kde-sr-base (<< 1:14.04+20140410), language-pack-sr (<< 1:14.04+20140410), language-pack-sr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sr-base/language-pack-gnome-sr-base_14.04+20140410_all.deb Size: 5402038 MD5sum: bd38d4db5e4dcc4709f896cf9e0e926d SHA1: c175427750c42c3d8bddde03b26038929ec7df31 SHA256: cc8aa26d341d25c95d21154719e41118e244d4c39e858962e494489337aaf564 Description: GNOME translations for language Serbian Description-md5: d6bba7853de4421ad89ce866e3448768 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-st Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-st (<< 1:14.04+20140410), language-pack-gnome-st-base, language-pack-kde-st (<< 1:14.04+20140410), language-pack-kde-st-base (<< 1:14.04+20140410), language-pack-st (<< 1:14.04+20140410), language-pack-st-base (<< 1:14.04+20140410) Depends: language-pack-gnome-st-base (>= 1:14.04+20140410), language-pack-st Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-st/language-pack-gnome-st_14.04+20140410_all.deb Size: 2000 MD5sum: 8347d408c2e58f11bb5369795083c506 SHA1: 18e95c0695e047afb5851bb1ef8f2de0f0f763e0 SHA256: 22a7e040c4b10c4faf17f138fcbc870a72ea234a0160be70fdbcae075a605a63 Description: GNOME translation updates for language Sotho, Southern Description-md5: 2dd1bc892c465ef6bf871f9d028b774b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-st-base Priority: optional Section: translations Installed-Size: 40 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-st (<< 1:14.04+20140410), language-pack-gnome-st-base (<< 1:14.04+20140410), language-pack-kde-st (<< 1:14.04+20140410), language-pack-kde-st-base (<< 1:14.04+20140410), language-pack-st (<< 1:14.04+20140410), language-pack-st-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-st (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-st (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-st-base/language-pack-gnome-st-base_14.04+20140410_all.deb Size: 3580 MD5sum: 12fddac1595e1d614809020b5f7d4a63 SHA1: 7aa7689933868446dc214608364e7379aff2b0ae SHA256: 5a59ba5dd381757ee427c3f969786ee409d1bf22e40a29efa988fd5976a0862e Description: GNOME translations for language Sotho, Southern Description-md5: d444736ae0167710db8e1437fe1e678c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sv (<< 1:14.04+20140410), language-pack-gnome-sv-base, language-pack-kde-sv (<< 1:14.04+20140410), language-pack-kde-sv-base (<< 1:14.04+20140410), language-pack-sv (<< 1:14.04+20140410), language-pack-sv-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sv-base (>= 1:14.04+20140410), language-pack-sv Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sv/language-pack-gnome-sv_14.04+20140410_all.deb Size: 2016 MD5sum: b0c0ee3f25c6485cdb31f250f5d00365 SHA1: ce89296dc5985dd6460d21d18a38cf6c36aa6244 SHA256: 4d5dcd40601774ee2c35ef1b69eda785835781a2f5b523a8deadc86c10534231 Description: GNOME translation updates for language Swedish Description-md5: bb1d72d15af6affc7a4b16c6e635c08f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sv-base Priority: optional Section: translations Installed-Size: 9591 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sv (<< 1:14.04+20140410), language-pack-gnome-sv-base (<< 1:14.04+20140410), language-pack-kde-sv (<< 1:14.04+20140410), language-pack-kde-sv-base (<< 1:14.04+20140410), language-pack-sv (<< 1:14.04+20140410), language-pack-sv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sv-base/language-pack-gnome-sv-base_14.04+20140410_all.deb Size: 3079850 MD5sum: dc56257652d4c043d2585886b5800168 SHA1: 8495e0f8d2bd4a59c3fc8fe611dc041a91c0d7aa SHA256: f5e031693482ebb5c4fffe887c29551eafaf4f80068624291c64bb1b0975f0a1 Description: GNOME translations for language Swedish Description-md5: f5f380a948362efc4eb39306fd6b25a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sw (<< 1:14.04+20140410), language-pack-gnome-sw-base, language-pack-kde-sw (<< 1:14.04+20140410), language-pack-kde-sw-base (<< 1:14.04+20140410), language-pack-sw (<< 1:14.04+20140410), language-pack-sw-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sw-base (>= 1:14.04+20140410), language-pack-sw Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sw/language-pack-gnome-sw_14.04+20140410_all.deb Size: 1990 MD5sum: 85a95bdff8838581e078692bb58a87a5 SHA1: 0a75fe8f6b8367e05965f48a17a1ea822c6e7862 SHA256: 45b188fac796cd6f95126f4a724f7c98188b4a0dc847ef9793c56850920e4ff6 Description: GNOME translation updates for language Swahili Description-md5: e7b055006ad05880a4fbff1b425d6524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sw-base Priority: optional Section: translations Installed-Size: 65 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sw (<< 1:14.04+20140410), language-pack-gnome-sw-base (<< 1:14.04+20140410), language-pack-kde-sw (<< 1:14.04+20140410), language-pack-kde-sw-base (<< 1:14.04+20140410), language-pack-sw (<< 1:14.04+20140410), language-pack-sw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sw-base/language-pack-gnome-sw-base_14.04+20140410_all.deb Size: 11924 MD5sum: 158345255639db6a6db67a529064fa9a SHA1: e98fa24b10ac04edc2fde216fab50347cee59074 SHA256: c024807e316c3e142315ffa6553541a24dde355911c7929308096727deaaa714 Description: GNOME translations for language Swahili Description-md5: 0b03031a128d203b76dca8f5d4b536ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ta Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ta (<< 1:14.04+20140410), language-pack-gnome-ta-base, language-pack-kde-ta (<< 1:14.04+20140410), language-pack-kde-ta-base (<< 1:14.04+20140410), language-pack-ta (<< 1:14.04+20140410), language-pack-ta-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ta-base (>= 1:14.04+20140410), language-pack-ta Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ta/language-pack-gnome-ta_14.04+20140410_all.deb Size: 2004 MD5sum: 2efdf3e178f3a59c9fd5e8fa7ddf536f SHA1: f1156edc13d6155c5eeac80c9d32d1e6fb619d63 SHA256: 41e540aaaf0d2448758175f6f1ed1d6edf901d9d50f86d5a89de504af850f516 Description: GNOME translation updates for language Tamil Description-md5: 1f87e19e829b55bdf13e56bd13043076 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ta-base Priority: optional Section: translations Installed-Size: 6858 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ta (<< 1:14.04+20140410), language-pack-gnome-ta-base (<< 1:14.04+20140410), language-pack-kde-ta (<< 1:14.04+20140410), language-pack-kde-ta-base (<< 1:14.04+20140410), language-pack-ta (<< 1:14.04+20140410), language-pack-ta-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ta (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ta (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ta-base/language-pack-gnome-ta-base_14.04+20140410_all.deb Size: 1379016 MD5sum: 2956741bcadaebc1afcdda95a6ac7426 SHA1: 4711c932bfbdd79860ddfa9d6f4403d187587dfa SHA256: d2e4d42934ab7f87bb26f65dc12a22d8d65640d03a033672fa1d63bf2fa13de4 Description: GNOME translations for language Tamil Description-md5: 7f9198f392bf94345eae66f7812b20f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-te Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-te (<< 1:14.04+20140410), language-pack-gnome-te-base, language-pack-kde-te (<< 1:14.04+20140410), language-pack-kde-te-base (<< 1:14.04+20140410), language-pack-te (<< 1:14.04+20140410), language-pack-te-base (<< 1:14.04+20140410) Depends: language-pack-gnome-te-base (>= 1:14.04+20140410), language-pack-te Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-te/language-pack-gnome-te_14.04+20140410_all.deb Size: 1984 MD5sum: fd5fadd8c3f293c8b2731e65efdf51d5 SHA1: 4618eb8e0c7ae6c4c4a375c7e0a3f46fc6c334bb SHA256: 1d3efd63439d59b447d5e292d12eda1da9afc10a620c9dd285d20c645cc35dcd Description: GNOME translation updates for language Telugu Description-md5: 943b70671888a44264daf05f3045ef34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-te-base Priority: optional Section: translations Installed-Size: 8556 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-te (<< 1:14.04+20140410), language-pack-gnome-te-base (<< 1:14.04+20140410), language-pack-kde-te (<< 1:14.04+20140410), language-pack-kde-te-base (<< 1:14.04+20140410), language-pack-te (<< 1:14.04+20140410), language-pack-te-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-te (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-te (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-te-base/language-pack-gnome-te-base_14.04+20140410_all.deb Size: 1705522 MD5sum: df13c0e852154702cc1ff071c97d1b73 SHA1: e4209d172fb62205e8387b4a60342423bd81d55d SHA256: 9368ffb2698e28a69fc9c1dbee81c7834cebc0aedf978778af3e1e356f699338 Description: GNOME translations for language Telugu Description-md5: 905b65e342303bb10d18388b38b96353 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tg (<< 1:14.04+20140410), language-pack-gnome-tg-base, language-pack-kde-tg (<< 1:14.04+20140410), language-pack-kde-tg-base (<< 1:14.04+20140410), language-pack-tg (<< 1:14.04+20140410), language-pack-tg-base (<< 1:14.04+20140410) Depends: language-pack-gnome-tg-base (>= 1:14.04+20140410), language-pack-tg Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-tg/language-pack-gnome-tg_14.04+20140410_all.deb Size: 1996 MD5sum: eca449a8563fd621a555c5c84b78a029 SHA1: 2c10e6e8f43dcdb68b3d8371da37cf148689d681 SHA256: 901d5a7628cb51c970ea4468e7869954b918c91ec7efdc48be69c373324e462b Description: GNOME translation updates for language Tajik Description-md5: a703bae4ff921305bab998f41cbead33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tg-base Priority: optional Section: translations Installed-Size: 2353 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tg (<< 1:14.04+20140410), language-pack-gnome-tg-base (<< 1:14.04+20140410), language-pack-kde-tg (<< 1:14.04+20140410), language-pack-kde-tg-base (<< 1:14.04+20140410), language-pack-tg (<< 1:14.04+20140410), language-pack-tg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-tg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-tg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-tg-base/language-pack-gnome-tg-base_14.04+20140410_all.deb Size: 521716 MD5sum: 4541df3b6d41b968ea2a7a3020568240 SHA1: cda4349fb27b0ed5b895d151a0fc071ca209bd10 SHA256: 4027331fe5bb5ea34c0db8f27bade2011db062d8e8463bda91bf90b4e4dbc6df Description: GNOME translations for language Tajik Description-md5: b207702403ebfbcc2179cdc72f31c9ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-th Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-th (<< 1:14.04+20140410), language-pack-gnome-th-base, language-pack-kde-th (<< 1:14.04+20140410), language-pack-kde-th-base (<< 1:14.04+20140410), language-pack-th (<< 1:14.04+20140410), language-pack-th-base (<< 1:14.04+20140410) Depends: language-pack-gnome-th-base (>= 1:14.04+20140410), language-pack-th Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-th/language-pack-gnome-th_14.04+20140410_all.deb Size: 2002 MD5sum: a24f2434aa6668c7560fc15c05f81613 SHA1: 59716e10d11cf2b59c90315e746bb7b49a63155b SHA256: 3cdbf2257107ec7d305f103c381d32cc9c6c1b6f0e2bf78fdb44ae9cdd43d517 Description: GNOME translation updates for language Thai Description-md5: 260f7893c953bfa370cfcd3e18dc2333 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-th-base Priority: optional Section: translations Installed-Size: 5781 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-th (<< 1:14.04+20140410), language-pack-gnome-th-base (<< 1:14.04+20140410), language-pack-kde-th (<< 1:14.04+20140410), language-pack-kde-th-base (<< 1:14.04+20140410), language-pack-th (<< 1:14.04+20140410), language-pack-th-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-th (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-th (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-th-base/language-pack-gnome-th-base_14.04+20140410_all.deb Size: 1193126 MD5sum: 0c5570fee0f9c4bfd19b6f5177aa6f3d SHA1: e8d527b2dcccdcaa491cfa23e72bb9f973236a22 SHA256: d15637aac37d6fdcc6361e1c431076b95783ea832ecf5ee880f325043bef46e1 Description: GNOME translations for language Thai Description-md5: 5ad4875bbdd96dcd96c47b6942cbcdea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ti Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ti (<< 1:14.04+20140410), language-pack-gnome-ti-base, language-pack-kde-ti (<< 1:14.04+20140410), language-pack-kde-ti-base (<< 1:14.04+20140410), language-pack-ti (<< 1:14.04+20140410), language-pack-ti-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ti-base (>= 1:14.04+20140410), language-pack-ti Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ti/language-pack-gnome-ti_14.04+20140410_all.deb Size: 2022 MD5sum: dace9bbc83572476b2c19d859082cebc SHA1: ec6b5583e270f3ab2420f8a5ea16a8845ffe1abc SHA256: 3a07c7a5cc08bc862c57bc3db4d7ebc3ecef72b6a19f7b7937f2c16bd3a47f20 Description: GNOME translation updates for language Tigrinya Description-md5: d5c8ed473e6de5a7582c072fd0d44426 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ti-base Priority: optional Section: translations Installed-Size: 49 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ti (<< 1:14.04+20140410), language-pack-gnome-ti-base (<< 1:14.04+20140410), language-pack-kde-ti (<< 1:14.04+20140410), language-pack-kde-ti-base (<< 1:14.04+20140410), language-pack-ti (<< 1:14.04+20140410), language-pack-ti-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ti (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ti (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ti-base/language-pack-gnome-ti-base_14.04+20140410_all.deb Size: 6754 MD5sum: c703e87c346b25582ad374e4d0d83d80 SHA1: ed24c3f5d6ae67e10ecb7740d4fcf59d69761d1b SHA256: ebb1c2b9c3590539841ebead18139bc5ee5cddb8af3d9355dbaec1071f525db2 Description: GNOME translations for language Tigrinya Description-md5: 674d0dce2efd3cd931d57472eaba5286 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tk (<< 1:14.04+20140410), language-pack-gnome-tk-base, language-pack-kde-tk (<< 1:14.04+20140410), language-pack-kde-tk-base (<< 1:14.04+20140410), language-pack-tk (<< 1:14.04+20140410), language-pack-tk-base (<< 1:14.04+20140410) Depends: language-pack-gnome-tk-base (>= 1:14.04+20140410), language-pack-tk Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-tk/language-pack-gnome-tk_14.04+20140410_all.deb Size: 2040 MD5sum: deb8dcb37c8fd34bdb7cbb7d5dd33964 SHA1: 51911b17678d1502f43e4411cd741d04a2e9d285 SHA256: 27cd1ec4beae953bba32fc62a2656fe6af6ca0b5129028962dd3fffc28f7246b Description: GNOME translation updates for language Turkmen Description-md5: 3025b7914da5dc42801d8bc3117a8894 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tk-base Priority: optional Section: translations Installed-Size: 130 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tk (<< 1:14.04+20140410), language-pack-gnome-tk-base (<< 1:14.04+20140410), language-pack-kde-tk (<< 1:14.04+20140410), language-pack-kde-tk-base (<< 1:14.04+20140410), language-pack-tk (<< 1:14.04+20140410), language-pack-tk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-tk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-tk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-tk-base/language-pack-gnome-tk-base_14.04+20140410_all.deb Size: 34972 MD5sum: 793cb385845bfe19dbb109ef4545304d SHA1: a308cb65f5ed36621d7b63f2298b33c6ac01b3f0 SHA256: bc8fb507ea78f80cb7244e7263ac1a824af7cb101bcd422783d3c94a1d3dfba5 Description: GNOME translations for language Turkmen Description-md5: 2de52385fc3bc9381c2beaea3cacbbbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tl (<< 1:14.04+20140410), language-pack-gnome-tl-base, language-pack-kde-tl (<< 1:14.04+20140410), language-pack-kde-tl-base (<< 1:14.04+20140410), language-pack-tl (<< 1:14.04+20140410), language-pack-tl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-tl-base (>= 1:14.04+20140410), language-pack-tl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-tl/language-pack-gnome-tl_14.04+20140410_all.deb Size: 1994 MD5sum: 21be2c1e5cf34e4b37e116e7895c692e SHA1: 38cdc07104566af6b2cf2fe6ab49d1ff6ffa133e SHA256: 6ae6e809ead63906d059500cea556c4b63afa9eb541a2b660e231c93c3ea3c5d Description: GNOME translation updates for language Tagalog Description-md5: 842cd1089ad73599f7c57dc2063355dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tl-base Priority: optional Section: translations Installed-Size: 854 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tl (<< 1:14.04+20140410), language-pack-gnome-tl-base (<< 1:14.04+20140410), language-pack-kde-tl (<< 1:14.04+20140410), language-pack-kde-tl-base (<< 1:14.04+20140410), language-pack-tl (<< 1:14.04+20140410), language-pack-tl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-tl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-tl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-tl-base/language-pack-gnome-tl-base_14.04+20140410_all.deb Size: 156046 MD5sum: db4bfb9050f516b79d83083f943346e4 SHA1: 9ca158071e10df216a70f6378f8d94a219b549d3 SHA256: 067429d7ad5c1cf00d1c5d44cdfe9ff9b4d8288060dd8c4c68a4b1ac95313d9a Description: GNOME translations for language Tagalog Description-md5: fc2daa475fdb6ef54d08eb375fb1016f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tr (<< 1:14.04+20140410), language-pack-gnome-tr-base, language-pack-kde-tr (<< 1:14.04+20140410), language-pack-kde-tr-base (<< 1:14.04+20140410), language-pack-tr (<< 1:14.04+20140410), language-pack-tr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-tr-base (>= 1:14.04+20140410), language-pack-tr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-tr/language-pack-gnome-tr_14.04+20140410_all.deb Size: 2000 MD5sum: 0b7bbc505c2e86c1f74868ccc164c13e SHA1: d942be5a187b94f9bde6faa5ff53832fbc20c6a9 SHA256: f74b0ae1d5e4512ef73757eb837584ba61a0a99b10e1a1aa81cafa899c6c0301 Description: GNOME translation updates for language Turkish Description-md5: 1df43f38739a28f0cf07581e88d49cc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tr-base Priority: optional Section: translations Installed-Size: 5601 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tr (<< 1:14.04+20140410), language-pack-gnome-tr-base (<< 1:14.04+20140410), language-pack-kde-tr (<< 1:14.04+20140410), language-pack-kde-tr-base (<< 1:14.04+20140410), language-pack-tr (<< 1:14.04+20140410), language-pack-tr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-tr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-tr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-tr-base/language-pack-gnome-tr-base_14.04+20140410_all.deb Size: 1657954 MD5sum: 924ae577ba7d29401d1604a93f540258 SHA1: 9b0221ba4e754d249157ff9bbe0a84577281e4b1 SHA256: 93f4e4c8ed8cce9d2733d5e757c5e9cc8842de9443004b62e5ca388495c72107 Description: GNOME translations for language Turkish Description-md5: d3e2fd89dcaf73ded0f30af0c2c0deae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ts Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ts (<< 1:14.04+20140410), language-pack-gnome-ts-base, language-pack-kde-ts (<< 1:14.04+20140410), language-pack-kde-ts-base (<< 1:14.04+20140410), language-pack-ts (<< 1:14.04+20140410), language-pack-ts-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ts-base (>= 1:14.04+20140410), language-pack-ts Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ts/language-pack-gnome-ts_14.04+20140410_all.deb Size: 2004 MD5sum: 241adb1d2af37a3efbbbf98a4826f1ed SHA1: fd9a20eeb7d45d290779773f63bb935bade5b3b4 SHA256: faf21e59a2c7a2b8cbc42245522ec0b6a8f9f9323601da514c73ecf8b8f71400 Description: GNOME translation updates for language Tsonga Description-md5: 81cfc2a339b10496770ac18ec3704329 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ts-base Priority: optional Section: translations Installed-Size: 68 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ts (<< 1:14.04+20140410), language-pack-gnome-ts-base (<< 1:14.04+20140410), language-pack-kde-ts (<< 1:14.04+20140410), language-pack-kde-ts-base (<< 1:14.04+20140410), language-pack-ts (<< 1:14.04+20140410), language-pack-ts-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ts (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ts (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ts-base/language-pack-gnome-ts-base_14.04+20140410_all.deb Size: 14292 MD5sum: 2b6422dcdd030f10808c23a13eb78392 SHA1: cab6a09d8974c54042729f87e60c3ea5e221a189 SHA256: c55dbbf7695dc58118233659926536baae353b1a9e11f79717f554d51472c3fc Description: GNOME translations for language Tsonga Description-md5: 2feab753ef977f259b87078c209c02fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tt (<< 1:14.04+20140410), language-pack-gnome-tt-base, language-pack-kde-tt (<< 1:14.04+20140410), language-pack-kde-tt-base (<< 1:14.04+20140410), language-pack-tt (<< 1:14.04+20140410), language-pack-tt-base (<< 1:14.04+20140410) Depends: language-pack-gnome-tt-base (>= 1:14.04+20140410), language-pack-tt Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-tt/language-pack-gnome-tt_14.04+20140410_all.deb Size: 1998 MD5sum: 4d691776cb378d43c4f354d3787479b7 SHA1: b4042bc018bf6433442d56db77dffb9c550ee6d2 SHA256: f66038e4cdf96bbbe58027cd1d3853bc10eb3ad597fefe711949ed3dfdcc35d3 Description: GNOME translation updates for language Tatar Description-md5: c88474b65f3b6d3f1e5ec95ad2ecab2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tt-base Priority: optional Section: translations Installed-Size: 152 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tt (<< 1:14.04+20140410), language-pack-gnome-tt-base (<< 1:14.04+20140410), language-pack-kde-tt (<< 1:14.04+20140410), language-pack-kde-tt-base (<< 1:14.04+20140410), language-pack-tt (<< 1:14.04+20140410), language-pack-tt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-tt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-tt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-tt-base/language-pack-gnome-tt-base_14.04+20140410_all.deb Size: 39742 MD5sum: 09da324e9bc9d0cfcb4422913446cada SHA1: 37c6c51fc8a816e129d51ea8761b4dda935d33c1 SHA256: 6528604f86571f0d67ca4ae708dce54d3eee5b7e1ef0a04ba02b2c692778353b Description: GNOME translations for language Tatar Description-md5: 40990a9f12b4525a80b5590caf7ede4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ug Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ug (<< 1:14.04+20140410), language-pack-gnome-ug-base, language-pack-kde-ug (<< 1:14.04+20140410), language-pack-kde-ug-base (<< 1:14.04+20140410), language-pack-ug (<< 1:14.04+20140410), language-pack-ug-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ug-base (>= 1:14.04+20140410), language-pack-ug Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ug/language-pack-gnome-ug_14.04+20140410_all.deb Size: 2006 MD5sum: 3bc2ff96ea10af096e65727dd0c5c010 SHA1: 1f1320e49ccd2f3be0ffce9f9198bf2a80a756a8 SHA256: 08efb55e431202b839f0e33adff885c0f665632ff58c5cc54fe286ef489cca4a Description: GNOME translation updates for language Uighur; Uyghur Description-md5: da26f9c049165224a38795991258e233 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ug-base Priority: optional Section: translations Installed-Size: 6115 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ug (<< 1:14.04+20140410), language-pack-gnome-ug-base (<< 1:14.04+20140410), language-pack-kde-ug (<< 1:14.04+20140410), language-pack-kde-ug-base (<< 1:14.04+20140410), language-pack-ug (<< 1:14.04+20140410), language-pack-ug-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ug (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ug (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ug-base/language-pack-gnome-ug-base_14.04+20140410_all.deb Size: 1408234 MD5sum: 3b510eeb0396a09a1f9eb784e8bb32d2 SHA1: 6000a1628aa1d78c2a50d35fe117fc526ed10c6b SHA256: 9e15d86e64e4bfef0f58304f16f1a064c664d20d7ef991ae9d4ed07cfc2a3f36 Description: GNOME translations for language Uighur; Uyghur Description-md5: e8294230eaaf997c67b0359525b1cf62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-uk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uk (<< 1:14.04+20140410), language-pack-gnome-uk-base, language-pack-kde-uk (<< 1:14.04+20140410), language-pack-kde-uk-base (<< 1:14.04+20140410), language-pack-uk (<< 1:14.04+20140410), language-pack-uk-base (<< 1:14.04+20140410) Depends: language-pack-gnome-uk-base (>= 1:14.04+20140410), language-pack-uk Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-uk/language-pack-gnome-uk_14.04+20140410_all.deb Size: 1996 MD5sum: 4aedfc52091addbb482791a2af191672 SHA1: b9eb870d503040226958096185504055cac6e2f1 SHA256: 03c5ee20d88790dbf6014302a15fb1a13b5e8ff8d821032188ae4c267a953881 Description: GNOME translation updates for language Ukrainian Description-md5: 8e4299e1c45206c9c3a1355ea82b7a6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-uk-base Priority: optional Section: translations Installed-Size: 9380 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uk (<< 1:14.04+20140410), language-pack-gnome-uk-base (<< 1:14.04+20140410), language-pack-kde-uk (<< 1:14.04+20140410), language-pack-kde-uk-base (<< 1:14.04+20140410), language-pack-uk (<< 1:14.04+20140410), language-pack-uk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-uk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-uk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-uk-base/language-pack-gnome-uk-base_14.04+20140410_all.deb Size: 2312256 MD5sum: 183f8bd6d1c8b84723ef053b2a0b7c66 SHA1: fcd0eaebd3f931f9983fd102de4bbb65849f9165 SHA256: 78505103288a4b407b20a8416b5418fe51d46ad72b81f05e57703a4952b9350b Description: GNOME translations for language Ukrainian Description-md5: a66bca391cb5c1553a32b03d6ba89e03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ur Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ur (<< 1:14.04+20140410), language-pack-gnome-ur-base, language-pack-kde-ur (<< 1:14.04+20140410), language-pack-kde-ur-base (<< 1:14.04+20140410), language-pack-ur (<< 1:14.04+20140410), language-pack-ur-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ur-base (>= 1:14.04+20140410), language-pack-ur Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ur/language-pack-gnome-ur_14.04+20140410_all.deb Size: 2010 MD5sum: f9378818854c84cf9d68bd2799f35b6e SHA1: 3c9358f632f87e8e901b1930ec850f9369b39b52 SHA256: a43fa2cf8d58b134a960927f315f750859430c8f57b730d43291f849faad4c49 Description: GNOME translation updates for language Urdu Description-md5: def38b01d3dfd7698b77f0b0497d5949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ur-base Priority: optional Section: translations Installed-Size: 887 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ur (<< 1:14.04+20140410), language-pack-gnome-ur-base (<< 1:14.04+20140410), language-pack-kde-ur (<< 1:14.04+20140410), language-pack-kde-ur-base (<< 1:14.04+20140410), language-pack-ur (<< 1:14.04+20140410), language-pack-ur-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ur (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ur (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ur-base/language-pack-gnome-ur-base_14.04+20140410_all.deb Size: 161072 MD5sum: 42dc2cb092883b752c533c741d929c02 SHA1: 60022bae91073298f60b466f18ab4c828ae39fd7 SHA256: a216635c0225ff7e3a8f05f18e3472df955b0c5286c6351cc2a5bc4c0d8ef50e Description: GNOME translations for language Urdu Description-md5: 52bc5cfa982b85d655f1729669a1b25f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-uz Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uz (<< 1:14.04+20140410), language-pack-gnome-uz-base, language-pack-kde-uz (<< 1:14.04+20140410), language-pack-kde-uz-base (<< 1:14.04+20140410), language-pack-uz (<< 1:14.04+20140410), language-pack-uz-base (<< 1:14.04+20140410) Depends: language-pack-gnome-uz-base (>= 1:14.04+20140410), language-pack-uz Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-uz/language-pack-gnome-uz_14.04+20140410_all.deb Size: 2004 MD5sum: 831033d9ab1b88a7c4a06f2d12977be8 SHA1: dfd5e67dff82dddc72dc4de96f0e8efa7f24fe52 SHA256: 2c5c74d4d0db0d7e770af636fbf81646432f3f79f174f5e6a806a1c1025f1ec9 Description: GNOME translation updates for language Uzbek Description-md5: 1c1ee1a05a45a5ec9d01942bd00dbb3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-uz-base Priority: optional Section: translations Installed-Size: 1770 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uz (<< 1:14.04+20140410), language-pack-gnome-uz-base (<< 1:14.04+20140410), language-pack-kde-uz (<< 1:14.04+20140410), language-pack-kde-uz-base (<< 1:14.04+20140410), language-pack-uz (<< 1:14.04+20140410), language-pack-uz-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-uz (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-uz (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-uz-base/language-pack-gnome-uz-base_14.04+20140410_all.deb Size: 376436 MD5sum: dbd0ba970b6e8c3d72d99382b50316e0 SHA1: 0713c7faa86fa062af20bd7f581395e5c2b4e6fd SHA256: 9d123385b4ad6fdafec28ec5cbdaff281f0b5867a6446f101bc3f0c7da9bf2f9 Description: GNOME translations for language Uzbek Description-md5: 44dd98c0189933d7e086ac0805bcc7e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ve Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ve (<< 1:14.04+20140410), language-pack-gnome-ve-base, language-pack-kde-ve (<< 1:14.04+20140410), language-pack-kde-ve-base (<< 1:14.04+20140410), language-pack-ve (<< 1:14.04+20140410), language-pack-ve-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ve-base (>= 1:14.04+20140410), language-pack-ve Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ve/language-pack-gnome-ve_14.04+20140410_all.deb Size: 2010 MD5sum: 38c2a8f63f01044d2de2ec2a7d46141b SHA1: 033d81e2184455ed22477c61c38563ab830af3c3 SHA256: ca43a4fc2f01b5e114bd432c9ae090c38e357a489898a3ac3214dd8bac4292ff Description: GNOME translation updates for language Venda Description-md5: e8b57752983c85b3d7e8fdd9ddaf7f4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ve-base Priority: optional Section: translations Installed-Size: 39 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ve (<< 1:14.04+20140410), language-pack-gnome-ve-base (<< 1:14.04+20140410), language-pack-kde-ve (<< 1:14.04+20140410), language-pack-kde-ve-base (<< 1:14.04+20140410), language-pack-ve (<< 1:14.04+20140410), language-pack-ve-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ve (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ve (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ve-base/language-pack-gnome-ve-base_14.04+20140410_all.deb Size: 2834 MD5sum: 5545a64e7644c47cb4585cfdef6dac30 SHA1: de0ef0a7b56c7dbb626dd45ddd0ccae7e4e90c47 SHA256: e7da0120e97f548d4a5df2545e8d76651a42b0745f421e66bcf2ca2df2853ea1 Description: GNOME translations for language Venda Description-md5: d266860ee6ae34c7e672be44b5fccb63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-vi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-vi (<< 1:14.04+20140410), language-pack-gnome-vi-base, language-pack-kde-vi (<< 1:14.04+20140410), language-pack-kde-vi-base (<< 1:14.04+20140410), language-pack-vi (<< 1:14.04+20140410), language-pack-vi-base (<< 1:14.04+20140410) Depends: language-pack-gnome-vi-base (>= 1:14.04+20140410), language-pack-vi Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-vi/language-pack-gnome-vi_14.04+20140410_all.deb Size: 2006 MD5sum: aefafce569227c7012d4a6dd6f53fb1c SHA1: 0725d1e7cbd0ce15c8f9f827a4bb094033625774 SHA256: 1ad13e9dadec50416088d0d600d5c5dbd2eab45ff175922be6875b1cda0c4125 Description: GNOME translation updates for language Vietnamese Description-md5: cb187da4eec75784dd42a52057c4afe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-vi-base Priority: optional Section: translations Installed-Size: 6615 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-vi (<< 1:14.04+20140410), language-pack-gnome-vi-base (<< 1:14.04+20140410), language-pack-kde-vi (<< 1:14.04+20140410), language-pack-kde-vi-base (<< 1:14.04+20140410), language-pack-vi (<< 1:14.04+20140410), language-pack-vi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-vi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-vi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-vi-base/language-pack-gnome-vi-base_14.04+20140410_all.deb Size: 2082164 MD5sum: d69be5887dfc9240cf95cfbd55efb084 SHA1: d2dd9c1f2308b8878a53c4570a2bed21b50ca445 SHA256: a980c9c4736ea98fec9089a76d1b1301b034eb4e78fb9f5f6ef68b303df63a15 Description: GNOME translations for language Vietnamese Description-md5: a02fe55b4937f4d212b038e3ff928c4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wa (<< 1:14.04+20140410), language-pack-gnome-wa-base, language-pack-kde-wa (<< 1:14.04+20140410), language-pack-kde-wa-base (<< 1:14.04+20140410), language-pack-wa (<< 1:14.04+20140410), language-pack-wa-base (<< 1:14.04+20140410) Depends: language-pack-gnome-wa-base (>= 1:14.04+20140410), language-pack-wa Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-wa/language-pack-gnome-wa_14.04+20140410_all.deb Size: 1984 MD5sum: a5b5a97cb9b60c2ccb3f17846706af4b SHA1: be0e89f1c71f7fee67e56a2e937a4bc01c78169b SHA256: f7799c3ceaeb1ce8b57efafafbe5037793d5fff98ac5229bcc02ec217e7abf16 Description: GNOME translation updates for language Walloon Description-md5: cf5374429f2ac83519e28b491731e8d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wa-base Priority: optional Section: translations Installed-Size: 399 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wa (<< 1:14.04+20140410), language-pack-gnome-wa-base (<< 1:14.04+20140410), language-pack-kde-wa (<< 1:14.04+20140410), language-pack-kde-wa-base (<< 1:14.04+20140410), language-pack-wa (<< 1:14.04+20140410), language-pack-wa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-wa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-wa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-wa-base/language-pack-gnome-wa-base_14.04+20140410_all.deb Size: 109652 MD5sum: 03b80041b6508b71eee53a7e9bb2e867 SHA1: 4cf7d924b0c73a61de64214ed9adc6b66bb51f33 SHA256: 7c7f6d56c61a0556b561af8f21776bb8e61f825469692f94e05c1f592ccba276 Description: GNOME translations for language Walloon Description-md5: cbe68441dcb9b05299dadae277d7bf26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wae Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wae (<< 1:14.04+20140410), language-pack-gnome-wae-base, language-pack-kde-wae (<< 1:14.04+20140410), language-pack-kde-wae-base (<< 1:14.04+20140410), language-pack-wae (<< 1:14.04+20140410), language-pack-wae-base (<< 1:14.04+20140410) Depends: language-pack-gnome-wae-base (>= 1:14.04+20140410), language-pack-wae Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-wae/language-pack-gnome-wae_14.04+20140410_all.deb Size: 2006 MD5sum: 992175715d16aa50d53119b87e29f622 SHA1: 115946e74172cc15785a3e102d8abb5e7f163076 SHA256: 314b7445f5153c5c0ba2565626d3cfc6ceb5489253c56eb3eb8c352bebf8a0b2 Description: GNOME translation updates for language Walser Description-md5: 01f05ef89346e77faebd1321dece3dd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wae-base Priority: optional Section: translations Installed-Size: 84 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wae (<< 1:14.04+20140410), language-pack-gnome-wae-base (<< 1:14.04+20140410), language-pack-kde-wae (<< 1:14.04+20140410), language-pack-kde-wae-base (<< 1:14.04+20140410), language-pack-wae (<< 1:14.04+20140410), language-pack-wae-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-wae (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-wae (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-wae-base/language-pack-gnome-wae-base_14.04+20140410_all.deb Size: 20598 MD5sum: bf1159f82c14d34dad9250ffa74281f1 SHA1: 0fdfe88ed73f4c743c41d289c2a8a0ec55e9173e SHA256: 3c0f21126db7d9cf918dd9ca6da32d791af6888eb7e267f4969fbbc5e00f408a Description: GNOME translations for language Walser Description-md5: cf24d41ebc556c570c932d8c14a528f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wo (<< 1:14.04+20140410), language-pack-gnome-wo-base, language-pack-kde-wo (<< 1:14.04+20140410), language-pack-kde-wo-base (<< 1:14.04+20140410), language-pack-wo (<< 1:14.04+20140410), language-pack-wo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-wo-base (>= 1:14.04+20140410), language-pack-wo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-wo/language-pack-gnome-wo_14.04+20140410_all.deb Size: 2006 MD5sum: acfc50638f47bb74017fa940c6bc9034 SHA1: e1beea636d7b31f7927fee5921545278dd992500 SHA256: b9a0d4a4db978b01eb1bcae89d895ad2be63e5f9d33dfc15dca9f4e275312b6f Description: GNOME translation updates for language Wolof Description-md5: 6470a3fd200b3b12b8a70ca898998757 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wo-base Priority: optional Section: translations Installed-Size: 48 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wo (<< 1:14.04+20140410), language-pack-gnome-wo-base (<< 1:14.04+20140410), language-pack-kde-wo (<< 1:14.04+20140410), language-pack-kde-wo-base (<< 1:14.04+20140410), language-pack-wo (<< 1:14.04+20140410), language-pack-wo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-wo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-wo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-wo-base/language-pack-gnome-wo-base_14.04+20140410_all.deb Size: 6516 MD5sum: 1e146d186dffc0b9a2ae0a47bb679892 SHA1: ef30b7110f545ef5d260b2f6029c0144730ec104 SHA256: b4082a157af1badfb35ed84e596c656a80e876c92c958e89404ff31a5f94e143 Description: GNOME translations for language Wolof Description-md5: f416d99b183a7f0b1ea907e5d5891734 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-xh Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-xh (<< 1:14.04+20140410), language-pack-gnome-xh-base, language-pack-kde-xh (<< 1:14.04+20140410), language-pack-kde-xh-base (<< 1:14.04+20140410), language-pack-xh (<< 1:14.04+20140410), language-pack-xh-base (<< 1:14.04+20140410) Depends: language-pack-gnome-xh-base (>= 1:14.04+20140410), language-pack-xh Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-xh/language-pack-gnome-xh_14.04+20140410_all.deb Size: 1992 MD5sum: b7e28dd75ff6ecd633dbcc1e99515310 SHA1: ef2560017ddfb6b189e7202e66a6e5ce2d1fd42a SHA256: 95ecefcf82c260e883abd98d1c8612ce3b6bf9ec0c8a9223ad280c9457b32d4f Description: GNOME translation updates for language Xhosa Description-md5: 2dba3fa9542517d2f2567cb4556b3f6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-xh-base Priority: optional Section: translations Installed-Size: 1115 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-xh (<< 1:14.04+20140410), language-pack-gnome-xh-base (<< 1:14.04+20140410), language-pack-kde-xh (<< 1:14.04+20140410), language-pack-kde-xh-base (<< 1:14.04+20140410), language-pack-xh (<< 1:14.04+20140410), language-pack-xh-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-xh (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-xh (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-xh-base/language-pack-gnome-xh-base_14.04+20140410_all.deb Size: 329720 MD5sum: 93c2b22824b935c762926bbb5992a722 SHA1: 88bd003e97c0c2fb7cb5c0c255a60d6e52c70cc9 SHA256: 9a7b1576e7697d07f8cfa0b00a05881a7c032b2d09c3b3bafbc34be68ba5d30b Description: GNOME translations for language Xhosa Description-md5: 2c5af6d03c4bfc16093a2a6c5cb21b3a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-yi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yi (<< 1:14.04+20140410), language-pack-gnome-yi-base, language-pack-kde-yi (<< 1:14.04+20140410), language-pack-kde-yi-base (<< 1:14.04+20140410), language-pack-yi (<< 1:14.04+20140410), language-pack-yi-base (<< 1:14.04+20140410) Depends: language-pack-gnome-yi-base (>= 1:14.04+20140410), language-pack-yi Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-yi/language-pack-gnome-yi_14.04+20140410_all.deb Size: 2000 MD5sum: 09095fdfce826c76f35f144d7ccf5029 SHA1: e26aed2129210742808c98454ea10afc35acfc98 SHA256: f23d14675d6c9229f572422a1364b7969db9258c534dedff8e94f7559bf6462a Description: GNOME translation updates for language Yiddish Description-md5: cc8f1518846242780629f49e8673724f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-yi-base Priority: optional Section: translations Installed-Size: 305 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yi (<< 1:14.04+20140410), language-pack-gnome-yi-base (<< 1:14.04+20140410), language-pack-kde-yi (<< 1:14.04+20140410), language-pack-kde-yi-base (<< 1:14.04+20140410), language-pack-yi (<< 1:14.04+20140410), language-pack-yi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-yi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-yi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-yi-base/language-pack-gnome-yi-base_14.04+20140410_all.deb Size: 59382 MD5sum: c71da298e658685958ca1f340db76f5a SHA1: fd23cfad8bc6bea814d935360185c968ee5c2b1f SHA256: 2158c95c91321691fdb92c868e1082117df45d9ad73ee705a743adc2405241dd Description: GNOME translations for language Yiddish Description-md5: ae7abc3ebc81a77513ab584d4882f25d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-yo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yo (<< 1:14.04+20140410), language-pack-gnome-yo-base, language-pack-kde-yo (<< 1:14.04+20140410), language-pack-kde-yo-base (<< 1:14.04+20140410), language-pack-yo (<< 1:14.04+20140410), language-pack-yo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-yo-base (>= 1:14.04+20140410), language-pack-yo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-yo/language-pack-gnome-yo_14.04+20140410_all.deb Size: 2026 MD5sum: 3a91e7a7bcbc2b8084d964d5a3cbfaa1 SHA1: bb76f13c94960261bb429c8ee9b37344f062ec3f SHA256: b2ccde0d562939969b61a18ed1fa676105b97e57185f379e3773a6d55fc3a39e Description: GNOME translation updates for language Yoruba Description-md5: 605366d86a567afb5bb001ec36dbb140 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-yo-base Priority: optional Section: translations Installed-Size: 103 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yo (<< 1:14.04+20140410), language-pack-gnome-yo-base (<< 1:14.04+20140410), language-pack-kde-yo (<< 1:14.04+20140410), language-pack-kde-yo-base (<< 1:14.04+20140410), language-pack-yo (<< 1:14.04+20140410), language-pack-yo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-yo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-yo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-yo-base/language-pack-gnome-yo-base_14.04+20140410_all.deb Size: 22720 MD5sum: a11fe11bee9aae2678e16d905e941481 SHA1: c1e3c49d01e2aade113636a39fe7accf0d5e8529 SHA256: b9eb2d578906c3a45be27dfd8334b68e23447bbe6aa2954eb730b5c6a7294548 Description: GNOME translations for language Yoruba Description-md5: 324fdbb5f99cd5125f6d9b40e2d47e02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-zh-hans Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh (<< 1:9.10), language-pack-gnome-zh-hans (<< 1:14.04+20140410), language-pack-gnome-zh-hans-base, language-pack-kde-zh-hans (<< 1:14.04+20140410), language-pack-kde-zh-hans-base (<< 1:14.04+20140410), language-pack-zh-hans (<< 1:14.04+20140410), language-pack-zh-hans-base (<< 1:14.04+20140410) Depends: language-pack-gnome-zh-hans-base (>= 1:14.04+20140410), language-pack-zh-hans Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-zh (<< 1:9.10) Filename: pool/main/l/language-pack-gnome-zh-hans/language-pack-gnome-zh-hans_14.04+20140410_all.deb Size: 2050 MD5sum: a97d37fb63a5090afe738c68de0a10a5 SHA1: 375e7a3ffb35d4706c497e9645e619f03519e47c SHA256: 98050560dd5ebdb52ce2a11c2d86cd89255bb66d781b573e33a3bd642c97a9ae Description: GNOME translation updates for language Simplified Chinese Description-md5: 00a9e6c608c7c1c1ea6b2a39cdb1d336 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-zh-hans-base Priority: optional Section: translations Installed-Size: 8834 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-base (<< 1:9.10), language-pack-gnome-zh-hans (<< 1:14.04+20140410), language-pack-gnome-zh-hans-base (<< 1:14.04+20140410), language-pack-kde-zh-hans (<< 1:14.04+20140410), language-pack-kde-zh-hans-base (<< 1:14.04+20140410), language-pack-zh-hans (<< 1:14.04+20140410), language-pack-zh-hans-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-zh-hans (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-zh-base (<< 1:9.10), language-pack-gnome-zh-hans (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-zh-hans-base/language-pack-gnome-zh-hans-base_14.04+20140410_all.deb Size: 2446218 MD5sum: 5cd73fe67b0df5e3bbee5e0b936250c1 SHA1: 24ffc7f5c9783467a554cc45031abff07425d561 SHA256: da24e2b54f52d2a9ab916485564ee5738fd5fbc01c8f8998a16f31d18c639fde Description: GNOME translations for language Simplified Chinese Description-md5: 8d266886048cd59372d7b7b25cad65e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-zh-hant Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh (<< 1:9.10), language-pack-gnome-zh-hant (<< 1:14.04+20140410), language-pack-gnome-zh-hant-base, language-pack-kde-zh-hant (<< 1:14.04+20140410), language-pack-kde-zh-hant-base (<< 1:14.04+20140410), language-pack-zh-hant (<< 1:14.04+20140410), language-pack-zh-hant-base (<< 1:14.04+20140410) Depends: language-pack-gnome-zh-hant-base (>= 1:14.04+20140410), language-pack-zh-hant Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-zh (<< 1:9.10) Filename: pool/main/l/language-pack-gnome-zh-hant/language-pack-gnome-zh-hant_14.04+20140410_all.deb Size: 2060 MD5sum: 90579cf765e11a38332baef2a5e0f2ca SHA1: f50d83a3343fab59b656b9e8297ee137b8dd6c57 SHA256: 942b86edaf6b71155028e6ff502350a56073ba92d9d3d7f6d5b0c3675d8761fa Description: GNOME translation updates for language Traditional Chinese Description-md5: 98d147f4998bf5fd350d5dcd4b0bdd8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-zh-hant-base Priority: optional Section: translations Installed-Size: 11014 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-base (<< 1:9.10), language-pack-gnome-zh-hant (<< 1:14.04+20140410), language-pack-gnome-zh-hant-base (<< 1:14.04+20140410), language-pack-kde-zh-hant (<< 1:14.04+20140410), language-pack-kde-zh-hant-base (<< 1:14.04+20140410), language-pack-zh-hant (<< 1:14.04+20140410), language-pack-zh-hant-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-zh-hant (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-zh-base (<< 1:9.10), language-pack-gnome-zh-hant (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-zh-hant-base/language-pack-gnome-zh-hant-base_14.04+20140410_all.deb Size: 3361288 MD5sum: 8ecd206218c8aafc4c18004b75835e98 SHA1: 320ef5ca510cfb29c1131d7e50c940e1074a90c1 SHA256: 131c752856f1cfb4bf5063488028b2192c6b989c19d53317996008b4f836a785 Description: GNOME translations for language Traditional Chinese Description-md5: 7f6891c51d198dbbd0787b942b59e90e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-zu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zu (<< 1:14.04+20140410), language-pack-gnome-zu-base, language-pack-kde-zu (<< 1:14.04+20140410), language-pack-kde-zu-base (<< 1:14.04+20140410), language-pack-zu (<< 1:14.04+20140410), language-pack-zu-base (<< 1:14.04+20140410) Depends: language-pack-gnome-zu-base (>= 1:14.04+20140410), language-pack-zu Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-zu/language-pack-gnome-zu_14.04+20140410_all.deb Size: 2014 MD5sum: 6eb9415ae9f309ce0b087af653f740dc SHA1: a9812ada93056c62a37144ce232b91cc92166c94 SHA256: 1ba5d553fd7425b8e59d9bbf7878c96068543852f94e5e39c8e8e60b30861708 Description: GNOME translation updates for language Zulu Description-md5: 455dfb781169e21059ba39f8cc612cc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-zu-base Priority: optional Section: translations Installed-Size: 319 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zu (<< 1:14.04+20140410), language-pack-gnome-zu-base (<< 1:14.04+20140410), language-pack-kde-zu (<< 1:14.04+20140410), language-pack-kde-zu-base (<< 1:14.04+20140410), language-pack-zu (<< 1:14.04+20140410), language-pack-zu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-zu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-zu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-zu-base/language-pack-gnome-zu-base_14.04+20140410_all.deb Size: 95126 MD5sum: 399d5465164de209ea1f256b86d668ca SHA1: c0e3d1601ca205da8a637776925770b9203386a0 SHA256: 46af292adc0eb7e01d3feda556c4568b7f27f3343fed7fb4783589d15c541488 Description: GNOME translations for language Zulu Description-md5: 872849a62f18d896be604d295c3d4eef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gu (<< 1:14.04+20140410), language-pack-gnome-gu-base (<< 1:14.04+20140410), language-pack-gu (<< 1:14.04+20140410), language-pack-gu-base, language-pack-kde-gu (<< 1:14.04+20140410), language-pack-kde-gu-base (<< 1:14.04+20140410) Depends: language-pack-gu-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gu/language-pack-gu_14.04+20140410_all.deb Size: 1974 MD5sum: 0c5f62f966698f9da1537accec435f58 SHA1: 0a2c0ba647a5fcaf9faf7d9baa864fec258d5975 SHA256: 92193ef9d1d6b98f90611fa8b39714b3e2284dea3209b336b1e632c6d9289ca1 Description: translation updates for language Gujarati Description-md5: 630a37df7a4b998890d0d8ec4d67508d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gu-base Priority: optional Section: translations Installed-Size: 2053 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gu (<< 1:14.04+20140410), language-pack-gnome-gu-base (<< 1:14.04+20140410), language-pack-gu (<< 1:14.04+20140410), language-pack-gu-base (<< 1:14.04+20140410), language-pack-kde-gu (<< 1:14.04+20140410), language-pack-kde-gu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-gu Conflicts: language-pack-gu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gu-base/language-pack-gu-base_14.04+20140410_all.deb Size: 406432 MD5sum: cdcd6b979981d3ce8523ee69249c9fc3 SHA1: 006298628ab14a146bf6ce7221da7eef8cd05c68 SHA256: e2c874097c5d62816c8fe45d878897e8c720a2ee0e3bf4942450f65e9c31a108 Description: translations for language Gujarati Description-md5: afa7eb56251783b45b7a9c22d14a6f9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gv (<< 1:14.04+20140410), language-pack-gnome-gv-base (<< 1:14.04+20140410), language-pack-gv (<< 1:14.04+20140410), language-pack-gv-base, language-pack-kde-gv (<< 1:14.04+20140410), language-pack-kde-gv-base (<< 1:14.04+20140410) Depends: language-pack-gv-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gv/language-pack-gv_14.04+20140410_all.deb Size: 1966 MD5sum: 30a91b8557b581555d40e6a078fd76ae SHA1: 82ccd21fb524fbe7e1bf14c122a29c4b2f9807f8 SHA256: 7c417b53fd2d82fd8a127f7c71fe5b3d9b5fa5680cc507b6a5b7a7007762319d Description: translation updates for language Manx Description-md5: 81d27c68fdc35922f46541a837b287f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gv-base Priority: optional Section: translations Installed-Size: 63 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gv (<< 1:14.04+20140410), language-pack-gnome-gv-base (<< 1:14.04+20140410), language-pack-gv (<< 1:14.04+20140410), language-pack-gv-base (<< 1:14.04+20140410), language-pack-kde-gv (<< 1:14.04+20140410), language-pack-kde-gv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gv-base/language-pack-gv-base_14.04+20140410_all.deb Size: 6174 MD5sum: cc3c2b72c2080cf69875893503a35af8 SHA1: d6a9212b4a8fc3f5e8e5a36092603f9e08303f41 SHA256: 2ffcee6852a01bd1a810916b79a54a3a2294396210874df7f411bc00f31b21ce Description: translations for language Manx Description-md5: c075128fbccb267975089be9f5777b53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ha Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ha (<< 1:14.04+20140410), language-pack-gnome-ha-base (<< 1:14.04+20140410), language-pack-ha (<< 1:14.04+20140410), language-pack-ha-base, language-pack-kde-ha (<< 1:14.04+20140410), language-pack-kde-ha-base (<< 1:14.04+20140410) Depends: language-pack-ha-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ha/language-pack-ha_14.04+20140410_all.deb Size: 1998 MD5sum: 086da66c33eeee08579e648cad28e550 SHA1: e97da9ca1b69db0d07a75c21b6ac1b70c4dc221a SHA256: d04007e10eb7f42628084c7017ff0f556a67a06eb570957b3f856682d9f2b024 Description: translation updates for language Hausa Description-md5: d4f3b3231976d0ae593e22b09041eb27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ha-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ha (<< 1:14.04+20140410), language-pack-gnome-ha-base (<< 1:14.04+20140410), language-pack-ha (<< 1:14.04+20140410), language-pack-ha-base (<< 1:14.04+20140410), language-pack-kde-ha (<< 1:14.04+20140410), language-pack-kde-ha-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ha (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ha (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ha-base/language-pack-ha-base_14.04+20140410_all.deb Size: 2304 MD5sum: d944dd8d7f78d20a22c272563a799a90 SHA1: e4c6761e0ceaf45d4c3afef560f2aec196b20d61 SHA256: 509092e4c9ffcb5800978a100733bb9c8efa05a9347b6c4189c966a3c68263ce Description: translations for language Hausa Description-md5: 485224adc71797f98daf0dc075c0e3de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-he Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-he (<< 1:14.04+20140410), language-pack-gnome-he-base (<< 1:14.04+20140410), language-pack-he (<< 1:14.04+20140410), language-pack-he-base, language-pack-kde-he (<< 1:14.04+20140410), language-pack-kde-he-base (<< 1:14.04+20140410) Depends: language-pack-he-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-he/language-pack-he_14.04+20140410_all.deb Size: 1964 MD5sum: 2909b3d5f8a7a0e6a8023e5a7b1c0fdf SHA1: 3cc8813d07a4df7bee3e39b1bacd21b54af9b897 SHA256: 55091b81453a4d6eb1b5101ae06929ba3ce2dd5a9625a8eb6ac6f0f61fda6ed5 Description: translation updates for language Hebrew Description-md5: d818a44b8d69f5c3570e19e1052d8c44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-he-base Priority: optional Section: translations Installed-Size: 1771 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-he (<< 1:14.04+20140410), language-pack-gnome-he-base (<< 1:14.04+20140410), language-pack-he (<< 1:14.04+20140410), language-pack-he-base (<< 1:14.04+20140410), language-pack-kde-he (<< 1:14.04+20140410), language-pack-kde-he-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-he (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-he Conflicts: language-pack-he (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-he-base/language-pack-he-base_14.04+20140410_all.deb Size: 479380 MD5sum: 2f022bac61347211a5b960979358befa SHA1: 2f63027b83bc89ce9b181b5c84af30a7b8c7000b SHA256: 23f1599701f1844373c4ee278da6238ae3eb2a38de34454a96f9082fb9f7fc03 Description: translations for language Hebrew Description-md5: faf62eb70bf7b4cbe788cca7e662d04b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hi (<< 1:14.04+20140410), language-pack-gnome-hi-base (<< 1:14.04+20140410), language-pack-hi (<< 1:14.04+20140410), language-pack-hi-base, language-pack-kde-hi (<< 1:14.04+20140410), language-pack-kde-hi-base (<< 1:14.04+20140410) Depends: language-pack-hi-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hi/language-pack-hi_14.04+20140410_all.deb Size: 1974 MD5sum: 5ce7002e6e57a7ab29c8f88221f05c32 SHA1: 760f5d781f5843c939a98a84eebe40ee9e775ed1 SHA256: b0c76f94773cbb94f5adf86b2042cc59d984600d48a390eeb5054226f9b33e2a Description: translation updates for language Hindi Description-md5: 10c81a58a59764580519acdd9584b1b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-hi-base Priority: optional Section: translations Installed-Size: 1876 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hi (<< 1:14.04+20140410), language-pack-gnome-hi-base (<< 1:14.04+20140410), language-pack-hi (<< 1:14.04+20140410), language-pack-hi-base (<< 1:14.04+20140410), language-pack-kde-hi (<< 1:14.04+20140410), language-pack-kde-hi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-hi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-hi Conflicts: language-pack-hi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-hi-base/language-pack-hi-base_14.04+20140410_all.deb Size: 401418 MD5sum: 049136e0019547cfba64f1f2f3ebe487 SHA1: 980807c3a12103be5956830add3db5cbf94320c9 SHA256: 5fb53e946b68e178496e2f565641dab65616dbd76bd8c5ed6cd3b0340887e8a8 Description: translations for language Hindi Description-md5: c0196984bd1163f90f6ecaa40a72d855 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-hne Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-hne (<< 1:12.04+20120417), language-pack-gnome-hne-base (<< 1:12.04+20120417), language-pack-hne (<< 1:12.04+20120417), language-pack-hne-base, language-pack-kde-hne (<< 1:12.04+20120417), language-pack-kde-hne-base (<< 1:12.04+20120417) Depends: language-pack-hne-base (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hne/language-pack-hne_12.04+20120417_all.deb Size: 1974 MD5sum: 63813c8e3eda1a8e6e3bbedd06ad311b SHA1: 0981716ed326d849637b3996938220cd50fc3656 SHA256: 633b16564df07cf5abaf443e483a862fdca3402b8930111e9ce1920ed05b9c6c Description: translation updates for language Chhattisgarhi Description-md5: 4d4e9ad3ea6e40c3089581ffa466f591 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hne-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-hne (<< 1:12.04+20120417), language-pack-gnome-hne-base (<< 1:12.04+20120417), language-pack-hne (<< 1:12.04+20120417), language-pack-hne-base (<< 1:12.04+20120417), language-pack-kde-hne (<< 1:12.04+20120417), language-pack-kde-hne-base (<< 1:12.04+20120417) Depends: locales (>= 2.3.6), language-pack-hne (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-hne (<< 1:12.04+20120417) Filename: pool/main/l/language-pack-hne-base/language-pack-hne-base_12.04+20120417_all.deb Size: 2316 MD5sum: 41f6b16def706cd0405495c96ecfe35f SHA1: 0c54791d35bd55eadddac6bd963be064efcbfb61 SHA256: a746554d6e8e3f05365a4c3cd4b978df39734e988cbf33d26ebe8ea06f9c56e4 Description: translations for language Chhattisgarhi Description-md5: bb768c9a1c693f232a17c2e8f9ac7417 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hr (<< 1:14.04+20140410), language-pack-gnome-hr-base (<< 1:14.04+20140410), language-pack-hr (<< 1:14.04+20140410), language-pack-hr-base, language-pack-kde-hr (<< 1:14.04+20140410), language-pack-kde-hr-base (<< 1:14.04+20140410) Depends: language-pack-hr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hr/language-pack-hr_14.04+20140410_all.deb Size: 1976 MD5sum: f56905fd311338d36b0cacf6acff27fd SHA1: 483dbc6a2e1c171236787a0c8d83e503b8fb1fcf SHA256: 9cede99f6ab78f9eb038774230c6015ecef25d5b6364b821ade15b1e625a1c04 Description: translation updates for language Croatian Description-md5: 34c162e587e1cdea815ca5ed6f077313 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hr-base Priority: optional Section: translations Installed-Size: 1594 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hr (<< 1:14.04+20140410), language-pack-gnome-hr-base (<< 1:14.04+20140410), language-pack-hr (<< 1:14.04+20140410), language-pack-hr-base (<< 1:14.04+20140410), language-pack-kde-hr (<< 1:14.04+20140410), language-pack-kde-hr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-hr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-hr Conflicts: language-pack-hr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-hr-base/language-pack-hr-base_14.04+20140410_all.deb Size: 479962 MD5sum: ff38779554cd197b4b7434c8bbda232b SHA1: d0227de960b7b5bbb7b7091bd4f4cef48f94aee8 SHA256: 6586cb192077b6be943c149d3685d6cbdc4fe0a7149cbba7a81adac49c808e34 Description: translations for language Croatian Description-md5: a447d80c901274a32ff85590aab5e8ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hsb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-hsb (<< 1:12.04+20120417), language-pack-gnome-hsb-base (<< 1:12.04+20120417), language-pack-hsb (<< 1:12.04+20120417), language-pack-hsb-base, language-pack-kde-hsb (<< 1:12.04+20120417), language-pack-kde-hsb-base (<< 1:12.04+20120417) Depends: language-pack-hsb-base (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hsb/language-pack-hsb_12.04+20120417_all.deb Size: 2008 MD5sum: 4c88c7e0ba6d417c0302b1737ecdbdf9 SHA1: 6cbe88828a743009fea14016019dab356278960f SHA256: 7dca8c4316e78664aa7fb444566613c9b93f4d169e5f4412d74cc5865200cfd6 Description: translation updates for language Sorbian, Upper Description-md5: c49dae26fac1eb490a74c8e7373087aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hsb-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-hsb (<< 1:12.04+20120417), language-pack-gnome-hsb-base (<< 1:12.04+20120417), language-pack-hsb (<< 1:12.04+20120417), language-pack-hsb-base (<< 1:12.04+20120417), language-pack-kde-hsb (<< 1:12.04+20120417), language-pack-kde-hsb-base (<< 1:12.04+20120417) Depends: locales (>= 2.3.6), language-pack-hsb (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-hsb (<< 1:12.04+20120417) Filename: pool/main/l/language-pack-hsb-base/language-pack-hsb-base_12.04+20120417_all.deb Size: 2326 MD5sum: 40406d8f95ceba02e2b6a381627160cf SHA1: 67dadb7d0c3d72f7ffa3a6f8c0828a93dbb47321 SHA256: 2308c401e1f293281f64a8ec5aaa191bf39e40a8075bdfca561106ce1cbae9c1 Description: translations for language Sorbian, Upper Description-md5: 9d791420224b5f3a9a8ed7a952653246 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ht Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ht (<< 1:14.04+20140410), language-pack-gnome-ht-base (<< 1:14.04+20140410), language-pack-ht (<< 1:14.04+20140410), language-pack-ht-base, language-pack-kde-ht (<< 1:14.04+20140410), language-pack-kde-ht-base (<< 1:14.04+20140410) Depends: language-pack-ht-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ht/language-pack-ht_14.04+20140410_all.deb Size: 2006 MD5sum: 976790105d418891d68af7aa6c2e98ac SHA1: b6a0a9f84114c87466058b59d50c0095b9660910 SHA256: eb5603cb811a341f8f3f4763f5d8885456a94faf754e8dab9638a0f4033b6fa3 Description: translation updates for language Haitian; Haitian Creole Description-md5: 0ec3bf8b2d3a1f37f7b8966379b6d628 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ht-base Priority: optional Section: translations Installed-Size: 61 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ht (<< 1:14.04+20140410), language-pack-gnome-ht-base (<< 1:14.04+20140410), language-pack-ht (<< 1:14.04+20140410), language-pack-ht-base (<< 1:14.04+20140410), language-pack-kde-ht (<< 1:14.04+20140410), language-pack-kde-ht-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ht (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ht (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ht-base/language-pack-ht-base_14.04+20140410_all.deb Size: 5642 MD5sum: 7332ce98681b2d5782863b530578f5f3 SHA1: 1e74e2574895259905afad159dfa14646357032f SHA256: 698946af6f9e6c46c8a9df4aa056725e15174a348c3b35350a75817d60c0834a Description: translations for language Haitian; Haitian Creole Description-md5: 98160a22567281f8bb9c5446e10f56a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hu (<< 1:14.04+20140410), language-pack-gnome-hu-base (<< 1:14.04+20140410), language-pack-hu (<< 1:14.04+20140410), language-pack-hu-base, language-pack-kde-hu (<< 1:14.04+20140410), language-pack-kde-hu-base (<< 1:14.04+20140410) Depends: language-pack-hu-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hu/language-pack-hu_14.04+20140410_all.deb Size: 1976 MD5sum: 6eab761c281236bde4f102d5e229528d SHA1: b9f05c4940448cdbb5c9939001ad2d106aa740fc SHA256: dd68e55a879d35b0cf19accf9c9b2cf51bb033b498f9ffcb65409ce1797fb20d Description: translation updates for language Hungarian Description-md5: 0d0313d349ce5698586fe79ae7734182 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-hu-base Priority: optional Section: translations Installed-Size: 3876 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hu (<< 1:14.04+20140410), language-pack-gnome-hu-base (<< 1:14.04+20140410), language-pack-hu (<< 1:14.04+20140410), language-pack-hu-base (<< 1:14.04+20140410), language-pack-kde-hu (<< 1:14.04+20140410), language-pack-kde-hu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-hu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-hu Conflicts: language-pack-hu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-hu-base/language-pack-hu-base_14.04+20140410_all.deb Size: 1202130 MD5sum: d4c3b565938632354d2cc9f72a05d3e3 SHA1: b81b3355d56f2b0a56878a84170a1b25da60aa84 SHA256: 2148345c158f368e99a9eb2cf15c977199e56bd3f9a39b900ae9d8cc224d372b Description: translations for language Hungarian Description-md5: b68965ab3e4c15fb92f2826979c1c76d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-hy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hy (<< 1:14.04+20140410), language-pack-gnome-hy-base (<< 1:14.04+20140410), language-pack-hy (<< 1:14.04+20140410), language-pack-hy-base, language-pack-kde-hy (<< 1:14.04+20140410), language-pack-kde-hy-base (<< 1:14.04+20140410) Depends: language-pack-hy-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hy/language-pack-hy_14.04+20140410_all.deb Size: 1972 MD5sum: 190b7820242e568eb38fba923aa63a36 SHA1: 0c853d64a0584d3d49ede712e13cda6434f7f750 SHA256: 582d9779e61e64b249ba405118e27a354e8f427b4c8dc0fb541c39bc8c019e49 Description: translation updates for language Armenian Description-md5: 4db20f8fbcc35f2c868fdff4899f2a41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hy-base Priority: optional Section: translations Installed-Size: 100 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hy (<< 1:14.04+20140410), language-pack-gnome-hy-base (<< 1:14.04+20140410), language-pack-hy (<< 1:14.04+20140410), language-pack-hy-base (<< 1:14.04+20140410), language-pack-kde-hy (<< 1:14.04+20140410), language-pack-kde-hy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-hy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-hy Conflicts: language-pack-hy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-hy-base/language-pack-hy-base_14.04+20140410_all.deb Size: 16384 MD5sum: 09d4605564ca3791f67fa149f0f8face SHA1: a82332f82682f82f78b180f520b2749d4ea39ff1 SHA256: 99e02cc0d6241a015f9c9b83f171751dc26130d7ad57ae3b93b2c38f9a3b5b4b Description: translations for language Armenian Description-md5: 009cbd292ee46edfba0d86a267b634a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ia Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ia (<< 1:14.04+20140410), language-pack-gnome-ia-base (<< 1:14.04+20140410), language-pack-ia (<< 1:14.04+20140410), language-pack-ia-base, language-pack-kde-ia (<< 1:14.04+20140410), language-pack-kde-ia-base (<< 1:14.04+20140410) Depends: language-pack-ia-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ia/language-pack-ia_14.04+20140410_all.deb Size: 1996 MD5sum: 8fc2eb546234e7ba0ed44582737dc1fc SHA1: 38c5f01f972f8aa7a0f30bae96244c98d98dc987 SHA256: 246efdd82db98522550a595559a1735349e59b17523f388dea644aab985ec841 Description: translation updates for language Interlingua (International Auxiliary Language Association) Description-md5: 30050b7a8422ff40904e643dd296c76a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ia-base Priority: optional Section: translations Installed-Size: 396 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ia (<< 1:14.04+20140410), language-pack-gnome-ia-base (<< 1:14.04+20140410), language-pack-ia (<< 1:14.04+20140410), language-pack-ia-base (<< 1:14.04+20140410), language-pack-kde-ia (<< 1:14.04+20140410), language-pack-kde-ia-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ia (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ia (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ia-base/language-pack-ia-base_14.04+20140410_all.deb Size: 97462 MD5sum: 1613440fc749f7ced3086d1b48f4c1fd SHA1: 08b3becd8a896bcee67589842fdc2cd1136ed86c SHA256: 0bc56c0debff47170ecb691bed56e6da6e59e0e119230aaf7ff22fc7311c4f10 Description: translations for language Interlingua (International Auxiliary Language Association) Description-md5: 9b3f157dbcedaffd5e4578c398861bc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-id Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-id (<< 1:14.04+20140410), language-pack-gnome-id-base (<< 1:14.04+20140410), language-pack-id (<< 1:14.04+20140410), language-pack-id-base, language-pack-kde-id (<< 1:14.04+20140410), language-pack-kde-id-base (<< 1:14.04+20140410) Depends: language-pack-id-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-id/language-pack-id_14.04+20140410_all.deb Size: 1962 MD5sum: c9afc22182a598cfa66bea461f32f39c SHA1: 4f9f17f87fa3c4f8357f532137e1ad749e788b99 SHA256: 3d053c16e448108d07d3cabfe2bb3b73a48386751cb822342a25d4a3edea2b48 Description: translation updates for language Indonesian Description-md5: c4c927885d7ce41f7307a8312a52b719 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-id-base Priority: optional Section: translations Installed-Size: 4682 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-id (<< 1:14.04+20140410), language-pack-gnome-id-base (<< 1:14.04+20140410), language-pack-id (<< 1:14.04+20140410), language-pack-id-base (<< 1:14.04+20140410), language-pack-kde-id (<< 1:14.04+20140410), language-pack-kde-id-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-id (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-id Conflicts: language-pack-id (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-id-base/language-pack-id-base_14.04+20140410_all.deb Size: 1394626 MD5sum: 67fb2b29cba9c84720241c52fff6d91e SHA1: 44d5aa07fbbf3ac659d527c7b55821b9beab006e SHA256: 09a8a7d0d01a1a8faee3f7f728956fc34882bb80214ff8499dfc025f4389bc81 Description: translations for language Indonesian Description-md5: 2952f1905ad6e2359ace30f7900fab0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ig Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ig (<< 1:14.04+20140410), language-pack-gnome-ig-base (<< 1:14.04+20140410), language-pack-ig (<< 1:14.04+20140410), language-pack-ig-base, language-pack-kde-ig (<< 1:14.04+20140410), language-pack-kde-ig-base (<< 1:14.04+20140410) Depends: language-pack-ig-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ig/language-pack-ig_14.04+20140410_all.deb Size: 1978 MD5sum: 5937897e79f39c0db9d5421d1fa876c5 SHA1: 44a442e4f671620af1781a7f9430eb5297ad33a2 SHA256: 6cec8a9d8451c0898da9b8919a192ef70d0db06b32a65b3b1284a1fc855a9a1e Description: translation updates for language Igbo Description-md5: 5fda8c9cd99daa29690203e1b085a104 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ig-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ig (<< 1:14.04+20140410), language-pack-gnome-ig-base (<< 1:14.04+20140410), language-pack-ig (<< 1:14.04+20140410), language-pack-ig-base (<< 1:14.04+20140410), language-pack-kde-ig (<< 1:14.04+20140410), language-pack-kde-ig-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ig (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ig (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ig-base/language-pack-ig-base_14.04+20140410_all.deb Size: 2304 MD5sum: 6938107de7089606e5f931faee63fc44 SHA1: 2154c83ee10c7646468cc615ce629b31c59f143c SHA256: 76a37a450e9e1463a7ce368a24cb56f46cf3beb03c5073a8de63595c6d7642c3 Description: translations for language Igbo Description-md5: a48c4bee660a62f54e5667d5d63a2d80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-is Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-is (<< 1:14.04+20140410), language-pack-gnome-is-base (<< 1:14.04+20140410), language-pack-is (<< 1:14.04+20140410), language-pack-is-base, language-pack-kde-is (<< 1:14.04+20140410), language-pack-kde-is-base (<< 1:14.04+20140410) Depends: language-pack-is-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-is/language-pack-is_14.04+20140410_all.deb Size: 1980 MD5sum: b6675876339a886554e6d0780bdaf240 SHA1: 8d4aeeb72f2c0b3f0edf6ed9ded282b1f206fd71 SHA256: 3db26da39d1364b9e06e6aea1efeb0a22e04675c5a46a5e86a006d699b1961fa Description: translation updates for language Icelandic Description-md5: ebb478ce4fa6147467d4a5addcbfe91c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-is-base Priority: optional Section: translations Installed-Size: 540 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-is (<< 1:14.04+20140410), language-pack-gnome-is-base (<< 1:14.04+20140410), language-pack-is (<< 1:14.04+20140410), language-pack-is-base (<< 1:14.04+20140410), language-pack-kde-is (<< 1:14.04+20140410), language-pack-kde-is-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-is (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-is Conflicts: language-pack-is (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-is-base/language-pack-is-base_14.04+20140410_all.deb Size: 161408 MD5sum: 4cb210d5a21dcb3cb0bce03e5bc80ed1 SHA1: 5d8a6ff674989ade71bc60005aea6d4be552aa7c SHA256: aaf51c11ff3a5c595cf4029072ed80ecd3c5791126c58aca498d3125b70b1617 Description: translations for language Icelandic Description-md5: 38850b6e2e9899518ffc186078b8911f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-it Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-it (<< 1:14.04+20140410), language-pack-gnome-it-base (<< 1:14.04+20140410), language-pack-it (<< 1:14.04+20140410), language-pack-it-base, language-pack-kde-it (<< 1:14.04+20140410), language-pack-kde-it-base (<< 1:14.04+20140410) Depends: language-pack-it-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-it/language-pack-it_14.04+20140410_all.deb Size: 1978 MD5sum: 388ec59d1b275c373c359a7e23ec8b4b SHA1: be00cdd5552cc9f809925ffc7025f7054bc9a437 SHA256: 20a509081d8142358a0717ee109b8a5b23feab88155a785261b52cda2829851b Description: translation updates for language Italian Description-md5: e120dba4eaa0911d53e8c96b72adf578 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-it-base Priority: optional Section: translations Installed-Size: 7170 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-it (<< 1:14.04+20140410), language-pack-gnome-it-base (<< 1:14.04+20140410), language-pack-it (<< 1:14.04+20140410), language-pack-it-base (<< 1:14.04+20140410), language-pack-kde-it (<< 1:14.04+20140410), language-pack-kde-it-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-it (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-it Conflicts: language-pack-it (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-it-base/language-pack-it-base_14.04+20140410_all.deb Size: 2165800 MD5sum: e960ea682182a3d96721d49308412629 SHA1: 0ea1183789fd58fa8e2435c7d1364beadb563b75 SHA256: 9adeaa4db73e5cd87f5645f9935e0715c307544f98e3590f52f6eecf3a8e9dbb Description: translations for language Italian Description-md5: 99813ee4cadd38f6c7b74f675b34a449 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-ja Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ja (<< 1:14.04+20140410), language-pack-gnome-ja-base (<< 1:14.04+20140410), language-pack-ja (<< 1:14.04+20140410), language-pack-ja-base, language-pack-kde-ja (<< 1:14.04+20140410), language-pack-kde-ja-base (<< 1:14.04+20140410) Depends: language-pack-ja-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ja/language-pack-ja_14.04+20140410_all.deb Size: 1958 MD5sum: 3abd33a2b6bc8cc639454f87af4c5a38 SHA1: fae02b922eb2100444c29f57276c3c44a129e2b0 SHA256: c8d86be7e5e9c374cb9f52e5d46e394bc6992b93c5a33a80ff35e921ed46494a Description: translation updates for language Japanese Description-md5: 7afb2a563f87356ed6329dc527a32e94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live Package: language-pack-ja-base Priority: optional Section: translations Installed-Size: 8390 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ja (<< 1:14.04+20140410), language-pack-gnome-ja-base (<< 1:14.04+20140410), language-pack-ja (<< 1:14.04+20140410), language-pack-ja-base (<< 1:14.04+20140410), language-pack-kde-ja (<< 1:14.04+20140410), language-pack-kde-ja-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ja (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ja Conflicts: language-pack-ja (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ja-base/language-pack-ja-base_14.04+20140410_all.deb Size: 2259710 MD5sum: 0190c187fff135c9bc80d66915e7635c SHA1: 05eb46884add1b6b5340ce097126587f2caddd17 SHA256: ac04e4bd05f6366e3753d0f81186fee9d434f5bb8910ffdc258fb9e67af03c69 Description: translations for language Japanese Description-md5: c52151431d27e2dcc1ed2fc2152797c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live Package: language-pack-ka Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ka (<< 1:14.04+20140410), language-pack-gnome-ka-base (<< 1:14.04+20140410), language-pack-ka (<< 1:14.04+20140410), language-pack-ka-base, language-pack-kde-ka (<< 1:14.04+20140410), language-pack-kde-ka-base (<< 1:14.04+20140410) Depends: language-pack-ka-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ka/language-pack-ka_14.04+20140410_all.deb Size: 1958 MD5sum: b851474e7fd6ec66ea61630d59fc217a SHA1: 485415a548a9a6fbe86301fe1d81633ea361fab7 SHA256: 40cbf0eb3e859dc5e3321f04d08ff6f9169f8ea1d585ce3c1a4773bd0361f61c Description: translation updates for language Georgian Description-md5: 4a6c0052acdeb3e339afe50aeb4eab8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ka-base Priority: optional Section: translations Installed-Size: 262 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ka (<< 1:14.04+20140410), language-pack-gnome-ka-base (<< 1:14.04+20140410), language-pack-ka (<< 1:14.04+20140410), language-pack-ka-base (<< 1:14.04+20140410), language-pack-kde-ka (<< 1:14.04+20140410), language-pack-kde-ka-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ka (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ka Conflicts: language-pack-ka (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ka-base/language-pack-ka-base_14.04+20140410_all.deb Size: 55732 MD5sum: 501fc200dae8b2752f81355ed5a19d8e SHA1: 6124d8edb8f3f0e779554af2aff0bc56dee842a1 SHA256: d6b04d8428f007f7cbdafb4630e776c99f70df764fb37d5835fdb77c6ae0821e Description: translations for language Georgian Description-md5: 133981ca5e178582776e1f7cc31edefa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kk (<< 1:14.04+20140410), language-pack-gnome-kk-base (<< 1:14.04+20140410), language-pack-kde-kk (<< 1:14.04+20140410), language-pack-kde-kk-base (<< 1:14.04+20140410), language-pack-kk (<< 1:14.04+20140410), language-pack-kk-base Depends: language-pack-kk-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-kk/language-pack-kk_14.04+20140410_all.deb Size: 1966 MD5sum: e1fd714dc7a932b8d5a250d13597c811 SHA1: 1f65360a15dee09d81cfc98d443f1914759985c1 SHA256: 1eaba79d5d6427e02311c66f2afdbe989c31f50349a26e2bf5c7b84f51a2140d Description: translation updates for language Kazakh Description-md5: 98e9c347910ee2332ebb439bf240c098 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kk-base Priority: optional Section: translations Installed-Size: 291 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kk (<< 1:14.04+20140410), language-pack-gnome-kk-base (<< 1:14.04+20140410), language-pack-kde-kk (<< 1:14.04+20140410), language-pack-kde-kk-base (<< 1:14.04+20140410), language-pack-kk (<< 1:14.04+20140410), language-pack-kk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-kk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-kk Conflicts: language-pack-kk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-kk-base/language-pack-kk-base_14.04+20140410_all.deb Size: 69116 MD5sum: eb3e00d411afb6725f42bb285da1f8f6 SHA1: 19843df34c504eb9b12f3d174e3ede557454c024 SHA256: fb7163127cf000d90a0f881e2b76f155614701f49219a2d560c05ab2549e34e4 Description: translations for language Kazakh Description-md5: 0321ed270db14e0a0e6ca71f6dca09ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kl (<< 1:14.04+20140410), language-pack-gnome-kl-base (<< 1:14.04+20140410), language-pack-kde-kl (<< 1:14.04+20140410), language-pack-kde-kl-base (<< 1:14.04+20140410), language-pack-kl (<< 1:14.04+20140410), language-pack-kl-base Depends: language-pack-kl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-kl/language-pack-kl_14.04+20140410_all.deb Size: 1998 MD5sum: 83185e87e70e599a72d5933dfc4f9b63 SHA1: 1fc5de70ae73345ac07d0e64a0662e3613e448bb SHA256: bd61f01592412febcc51b27d38db70c48e44dc38a6e30b4334f3bd5358a0a335 Description: translation updates for language Kalaallisut; Greenlandic Description-md5: fdb5099e989a4024e9a506808d27a0e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kl-base Priority: optional Section: translations Installed-Size: 58 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kl (<< 1:14.04+20140410), language-pack-gnome-kl-base (<< 1:14.04+20140410), language-pack-kde-kl (<< 1:14.04+20140410), language-pack-kde-kl-base (<< 1:14.04+20140410), language-pack-kl (<< 1:14.04+20140410), language-pack-kl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-kl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-kl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-kl-base/language-pack-kl-base_14.04+20140410_all.deb Size: 4482 MD5sum: d21e7b78ba200b0b41f6eef4874a5f30 SHA1: e2a65baccec771d5c3ddeb08adf88bcace5de85a SHA256: 58a80fee14867f3f2cdc256a0f21ff6992e5d5fc8ef3d5dd59231829fab44f2c Description: translations for language Kalaallisut; Greenlandic Description-md5: 1265b941877165341e798f4d09470198 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-km Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-km (<< 1:14.04+20140410), language-pack-gnome-km-base (<< 1:14.04+20140410), language-pack-kde-km (<< 1:14.04+20140410), language-pack-kde-km-base (<< 1:14.04+20140410), language-pack-km (<< 1:14.04+20140410), language-pack-km-base Depends: language-pack-km-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-km/language-pack-km_14.04+20140410_all.deb Size: 1982 MD5sum: 4099efb1dd16a512f28d5c8f6ab9e865 SHA1: f6d4c0a3bb0007c76a3664b2c26e89fbedc48dcc SHA256: c2e9945b5927dd54b0284295e2af1bb48c6b4ab97aa7d83a444ec70beca9b41a Description: translation updates for language Central Khmer Description-md5: ca40fa76b2a05d161972d2b9fe61acf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-km-base Priority: optional Section: translations Installed-Size: 2042 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-km (<< 1:14.04+20140410), language-pack-gnome-km-base (<< 1:14.04+20140410), language-pack-kde-km (<< 1:14.04+20140410), language-pack-kde-km-base (<< 1:14.04+20140410), language-pack-km (<< 1:14.04+20140410), language-pack-km-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-km (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-km Conflicts: language-pack-km (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-km-base/language-pack-km-base_14.04+20140410_all.deb Size: 433276 MD5sum: e86d664ffb5265f34b8ca6ea2e3d1372 SHA1: 30295f4550d8bec697560d98b704ce18483ac784 SHA256: a9c470f60330809076083eeabd3749b442e5a379b64b9a5369356bc846dff20b Description: translations for language Central Khmer Description-md5: 382521288b14ddd695dcaab74e373dd2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kn (<< 1:14.04+20140410), language-pack-gnome-kn-base (<< 1:14.04+20140410), language-pack-kde-kn (<< 1:14.04+20140410), language-pack-kde-kn-base (<< 1:14.04+20140410), language-pack-kn (<< 1:14.04+20140410), language-pack-kn-base Depends: language-pack-kn-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-kn/language-pack-kn_14.04+20140410_all.deb Size: 1986 MD5sum: 75a4db98c6eea6277f7d8100ecf5b33a SHA1: 369caee4f82fa77195ebbf537907dd893180ec71 SHA256: a52db1660e26f32980f0bf999cf1972edd312ea27da1fc73d2d5527b139b7db5 Description: translation updates for language Kannada Description-md5: 8368f135dfe46a8b81c37c2f7870e7b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kn-base Priority: optional Section: translations Installed-Size: 2202 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kn (<< 1:14.04+20140410), language-pack-gnome-kn-base (<< 1:14.04+20140410), language-pack-kde-kn (<< 1:14.04+20140410), language-pack-kde-kn-base (<< 1:14.04+20140410), language-pack-kn (<< 1:14.04+20140410), language-pack-kn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-kn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-kn Conflicts: language-pack-kn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-kn-base/language-pack-kn-base_14.04+20140410_all.deb Size: 396430 MD5sum: 13a3973d99d1566fa55b71b028899f3c SHA1: 72e2da736e08d27e0b412c94e729a6e7cced8df1 SHA256: 76303d50cb84c4107291b00cdbd57f61e2a1bb09a6fb44bebca2aa29949cc15a Description: translations for language Kannada Description-md5: c2017a7c289d9baf67e7d222d28ae9b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ko Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ko (<< 1:14.04+20140410), language-pack-gnome-ko-base (<< 1:14.04+20140410), language-pack-kde-ko (<< 1:14.04+20140410), language-pack-kde-ko-base (<< 1:14.04+20140410), language-pack-ko (<< 1:14.04+20140410), language-pack-ko-base Depends: language-pack-ko-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ko/language-pack-ko_14.04+20140410_all.deb Size: 1982 MD5sum: 79061e44126fee84a0d0775b249b5852 SHA1: f615605bb01b745fffae9703b6eed15a5338b46f SHA256: 8fe5a682b4f8dcdfad49164e8b5f2efd1218dadda4a12192b903273a0caa6a47 Description: translation updates for language Korean Description-md5: 771f757939a95209894f9aa91be69bdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ko-base Priority: optional Section: translations Installed-Size: 3075 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ko (<< 1:14.04+20140410), language-pack-gnome-ko-base (<< 1:14.04+20140410), language-pack-kde-ko (<< 1:14.04+20140410), language-pack-kde-ko-base (<< 1:14.04+20140410), language-pack-ko (<< 1:14.04+20140410), language-pack-ko-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ko (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ko Conflicts: language-pack-ko (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ko-base/language-pack-ko-base_14.04+20140410_all.deb Size: 866668 MD5sum: 3165bb954497da20e12f51d227c5c314 SHA1: e0609ef4220313278770fd555eefc3ae6afb1c59 SHA256: e5bbd9a3753e0bdbc07f7d9c9e10f84226f9af3423b615869ccb9e7aa41c4dc3 Description: translations for language Korean Description-md5: 333c6f787443de547e92672f3ee91c6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ks Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ks (<< 1:14.04+20140410), language-pack-gnome-ks-base (<< 1:14.04+20140410), language-pack-kde-ks (<< 1:14.04+20140410), language-pack-kde-ks-base (<< 1:14.04+20140410), language-pack-ks (<< 1:14.04+20140410), language-pack-ks-base Depends: language-pack-ks-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ks/language-pack-ks_14.04+20140410_all.deb Size: 1992 MD5sum: f2972f952e5043873a3c9f090196fabd SHA1: 36fa52364dd8918e8a0e63d7105f3a68d0ad2274 SHA256: ccc90bbb20453779fa047be319a530a5cf036d1bf09c8e444f7eb8c70620b7e8 Description: translation updates for language Kashmiri Description-md5: 92539c43d5b468fd082d81065e66ac81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ks-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ks (<< 1:14.04+20140410), language-pack-gnome-ks-base (<< 1:14.04+20140410), language-pack-kde-ks (<< 1:14.04+20140410), language-pack-kde-ks-base (<< 1:14.04+20140410), language-pack-ks (<< 1:14.04+20140410), language-pack-ks-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ks (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ks (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ks-base/language-pack-ks-base_14.04+20140410_all.deb Size: 2318 MD5sum: 123029032ecd7cc70389ce4816509846 SHA1: dbef6039e25cb84621c953250f06e66d1c5e2261 SHA256: 263e5f3cfe4819fe3ba6df0ef4e69422db0ed0616751bde1e4a88452e7896f4b Description: translations for language Kashmiri Description-md5: b3997fac45545ecfd182ae5705aa825b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ku Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ku (<< 1:14.04+20140410), language-pack-gnome-ku-base (<< 1:14.04+20140410), language-pack-kde-ku (<< 1:14.04+20140410), language-pack-kde-ku-base (<< 1:14.04+20140410), language-pack-ku (<< 1:14.04+20140410), language-pack-ku-base Depends: language-pack-ku-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ku/language-pack-ku_14.04+20140410_all.deb Size: 1978 MD5sum: 3d6e2c90d7cfa07a14d04de27245a1bf SHA1: 59a30670ec4ffd1280fbce370831e0c660882782 SHA256: de93c30f520dc5ba587dfd2956be96f7cb51b5ec784d1241ff6fd253ec87d6fa Description: translation updates for language Kurdish Description-md5: 3592b9815f5e61a1a402749bd9a44ccd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ku-base Priority: optional Section: translations Installed-Size: 419 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ku (<< 1:14.04+20140410), language-pack-gnome-ku-base (<< 1:14.04+20140410), language-pack-kde-ku (<< 1:14.04+20140410), language-pack-kde-ku-base (<< 1:14.04+20140410), language-pack-ku (<< 1:14.04+20140410), language-pack-ku-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ku (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ku Conflicts: language-pack-ku (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ku-base/language-pack-ku-base_14.04+20140410_all.deb Size: 126338 MD5sum: ba790caf1dcc766b15b2b8abd640d187 SHA1: 8c8e9cba8fc0f8f6757276154a4ab802e1f5c6af SHA256: bc25a78c6a990e3f9767ae0be02b5fd15d4de80ff3f1cac5fc2d9014e8b5f0f6 Description: translations for language Kurdish Description-md5: 9d60d4781a1a8118cf6da846f6ce8b12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kw (<< 1:14.04+20140410), language-pack-gnome-kw-base (<< 1:14.04+20140410), language-pack-kde-kw (<< 1:14.04+20140410), language-pack-kde-kw-base (<< 1:14.04+20140410), language-pack-kw (<< 1:14.04+20140410), language-pack-kw-base Depends: language-pack-kw-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-kw/language-pack-kw_14.04+20140410_all.deb Size: 1962 MD5sum: 0399080e57864d4af2eee3109f51e36a SHA1: c937a6eea7bba3362b76467578f6319d47558598 SHA256: 55b0d6a408ff3ed5dfc4ee481f4de60a3362fe135d3ab9ae7b1a47bf73a72928 Description: translation updates for language Cornish Description-md5: c9418196d93c919dcbc06293c473a972 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kw-base Priority: optional Section: translations Installed-Size: 69 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kw (<< 1:14.04+20140410), language-pack-gnome-kw-base (<< 1:14.04+20140410), language-pack-kde-kw (<< 1:14.04+20140410), language-pack-kde-kw-base (<< 1:14.04+20140410), language-pack-kw (<< 1:14.04+20140410), language-pack-kw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-kw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-kw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-kw-base/language-pack-kw-base_14.04+20140410_all.deb Size: 8344 MD5sum: 0b9e1efae107980a906fcf19580953be SHA1: 5961f3fc96f0f74f4a90653c61e5cf4385d6db52 SHA256: b8af3c4aabeef0927470bade008ae3c4fb3f2dc2839d3e5b9afb0ee2d30dc25f Description: translations for language Cornish Description-md5: 53d662aa3993bb5d875875f06cce8c54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ky Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ky (<< 1:14.04+20140410), language-pack-gnome-ky-base (<< 1:14.04+20140410), language-pack-kde-ky (<< 1:14.04+20140410), language-pack-kde-ky-base (<< 1:14.04+20140410), language-pack-ky (<< 1:14.04+20140410), language-pack-ky-base Depends: language-pack-ky-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ky/language-pack-ky_14.04+20140410_all.deb Size: 1976 MD5sum: 2d3daa912e55084530b4a448b6fa229a SHA1: f7134a237e47210058e74360fbe95239c6cdffd0 SHA256: 88a13a8752209af29a8497bfb43fdd1acce2d0c6783648c0a42f4705f6ed4172 Description: translation updates for language Kirghiz; Kyrgyz Description-md5: 07f850699cc8940cd521bb7bb53e8317 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ky-base Priority: optional Section: translations Installed-Size: 145 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ky (<< 1:14.04+20140410), language-pack-gnome-ky-base (<< 1:14.04+20140410), language-pack-kde-ky (<< 1:14.04+20140410), language-pack-kde-ky-base (<< 1:14.04+20140410), language-pack-ky (<< 1:14.04+20140410), language-pack-ky-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ky (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ky (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ky-base/language-pack-ky-base_14.04+20140410_all.deb Size: 30742 MD5sum: 5dd797970964264d5f90eafaea7aee52 SHA1: ff96d5aa68595d7491332c78410b9987d46d9daf SHA256: fcb4ee5ade88822f411b194a65b2e6667edab3b187d88527c51685c1e40620cf Description: translations for language Kirghiz; Kyrgyz Description-md5: 8205b33b8a1ad794919d4a78a2f02c9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lb (<< 1:14.04+20140410), language-pack-gnome-lb-base (<< 1:14.04+20140410), language-pack-kde-lb (<< 1:14.04+20140410), language-pack-kde-lb-base (<< 1:14.04+20140410), language-pack-lb (<< 1:14.04+20140410), language-pack-lb-base Depends: language-pack-lb-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-lb/language-pack-lb_14.04+20140410_all.deb Size: 2008 MD5sum: 15af12d9542c8119ef00cc3172783801 SHA1: cdb42fc0100df6992c4175fbdb1d188d4d25b969 SHA256: 9b30a44dda4710d27d64527e43712c31d091ded702f9246d4b474ab276e02460 Description: translation updates for language Luxembourgish; Letzeburgesch Description-md5: 29b9a13057c011ffe475ad6d28f7707c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lb-base Priority: optional Section: translations Installed-Size: 170 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lb (<< 1:14.04+20140410), language-pack-gnome-lb-base (<< 1:14.04+20140410), language-pack-kde-lb (<< 1:14.04+20140410), language-pack-kde-lb-base (<< 1:14.04+20140410), language-pack-lb (<< 1:14.04+20140410), language-pack-lb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-lb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-lb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-lb-base/language-pack-lb-base_14.04+20140410_all.deb Size: 42622 MD5sum: 17c3e94afc128f2dca4556e21c62a75c SHA1: 171a54c1be0d677f5038bd87e2bc06fe82028b9e SHA256: b55ac8768f6ae3de21c05591e21a4b499e24b702216d744f37e3b95eda30d4e3 Description: translations for language Luxembourgish; Letzeburgesch Description-md5: 18da36b0671337fba170251539955d33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lg (<< 1:14.04+20140410), language-pack-gnome-lg-base (<< 1:14.04+20140410), language-pack-kde-lg (<< 1:14.04+20140410), language-pack-kde-lg-base (<< 1:14.04+20140410), language-pack-lg (<< 1:14.04+20140410), language-pack-lg-base Depends: language-pack-lg-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-lg/language-pack-lg_14.04+20140410_all.deb Size: 1996 MD5sum: c8a3d17ff33b254cecb1bc4888d7eee2 SHA1: 5d06043049b04f8d9c9cc227a78e8fdb02b9182c SHA256: 2cb4f996b3c5ca9a79dbde9351a81c61b0a93247e1b6f9b00bce3a7fc376f659 Description: translation updates for language Ganda Description-md5: dc53f5f6accf5c17e5a4f97d65e8eb02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lg-base Priority: optional Section: translations Installed-Size: 359 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lg (<< 1:14.04+20140410), language-pack-gnome-lg-base (<< 1:14.04+20140410), language-pack-kde-lg (<< 1:14.04+20140410), language-pack-kde-lg-base (<< 1:14.04+20140410), language-pack-lg (<< 1:14.04+20140410), language-pack-lg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-lg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-lg Conflicts: language-pack-lg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-lg-base/language-pack-lg-base_14.04+20140410_all.deb Size: 85724 MD5sum: 42cbe751e3923817862a33d8ccc3b7e3 SHA1: f63f03397300e7750297e9a7a1fee2b233c3d140 SHA256: 00f1ad2a2a8a8ba89ddbc68cd50e8d0e543fb37afa9f7d092d09617b7c436c76 Description: translations for language Ganda Description-md5: f3cad9fe1486894db728a8562be06667 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-li Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-li (<< 1:14.04+20140410), language-pack-gnome-li-base (<< 1:14.04+20140410), language-pack-kde-li (<< 1:14.04+20140410), language-pack-kde-li-base (<< 1:14.04+20140410), language-pack-li (<< 1:14.04+20140410), language-pack-li-base Depends: language-pack-li-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-li/language-pack-li_14.04+20140410_all.deb Size: 2012 MD5sum: c21f50919bd8ddd0397e10d9d62428c1 SHA1: c37c63d7275e55293b029797796b32c0ff470891 SHA256: 1a89094a9a25895b767f574c25c3aafc012cbe1897fcf2d10512de6aec1cca32 Description: translation updates for language Limburgan; Limburger; Limburgish Description-md5: 167e6db03e43d9b435ec56a04c8e004d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-li-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-li (<< 1:14.04+20140410), language-pack-gnome-li-base (<< 1:14.04+20140410), language-pack-kde-li (<< 1:14.04+20140410), language-pack-kde-li-base (<< 1:14.04+20140410), language-pack-li (<< 1:14.04+20140410), language-pack-li-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-li (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-li (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-li-base/language-pack-li-base_14.04+20140410_all.deb Size: 2310 MD5sum: a7900f9885cdc2854e5748c5c5276b9f SHA1: 740e03a653a80a98fb834d7fb1ac1e022e88199e SHA256: 4245944286721498c3d9c0ec0ae75e350289b2a674f7db2d8a6078f9624a4641 Description: translations for language Limburgan; Limburger; Limburgish Description-md5: d79abb5c3992b572ca46198d807374ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lo (<< 1:14.04+20140410), language-pack-gnome-lo-base (<< 1:14.04+20140410), language-pack-kde-lo (<< 1:14.04+20140410), language-pack-kde-lo-base (<< 1:14.04+20140410), language-pack-lo (<< 1:14.04+20140410), language-pack-lo-base Depends: language-pack-lo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-lo/language-pack-lo_14.04+20140410_all.deb Size: 1972 MD5sum: 184cd53a0dbd55b45227873fedd24f1e SHA1: 4525c61d0b358cb41325c58d251508b698a126d2 SHA256: 3ec0c84345d893239a2b1ab9d0c76bed94df8fd86b8698892982049e69d7952f Description: translation updates for language Lao Description-md5: 1ea34c02248959a0e4d245025939bf22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lo-base Priority: optional Section: translations Installed-Size: 153 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lo (<< 1:14.04+20140410), language-pack-gnome-lo-base (<< 1:14.04+20140410), language-pack-kde-lo (<< 1:14.04+20140410), language-pack-kde-lo-base (<< 1:14.04+20140410), language-pack-lo (<< 1:14.04+20140410), language-pack-lo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-lo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-lo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-lo-base/language-pack-lo-base_14.04+20140410_all.deb Size: 26434 MD5sum: e573c6a77f750c25d7c4c47b1539c5bc SHA1: 4d50ad755c977cac210b7f2991f95b5abe99ac06 SHA256: 26dda6b9ac9ffd68baea2b2264612e416b5b7322c7aceeda57fc5eeee0f2383c Description: translations for language Lao Description-md5: 19afb8a7e8e7f44f6106f269aa4eebbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lt (<< 1:14.04+20140410), language-pack-gnome-lt-base (<< 1:14.04+20140410), language-pack-kde-lt (<< 1:14.04+20140410), language-pack-kde-lt-base (<< 1:14.04+20140410), language-pack-lt (<< 1:14.04+20140410), language-pack-lt-base Depends: language-pack-lt-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-lt/language-pack-lt_14.04+20140410_all.deb Size: 1978 MD5sum: 8a0696867b65ae33c3e5e92a1bdcbebe SHA1: 182ef5cd7c704abcdb34c2ac7a0b34ded76c7930 SHA256: e29a0ac7ed0f397e959126ca587d8d8ee5398457a9a095f93f2b9f18c4007861 Description: translation updates for language Lithuanian Description-md5: 0aa9b7870b4e450291143f74e957e291 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lt-base Priority: optional Section: translations Installed-Size: 1561 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lt (<< 1:14.04+20140410), language-pack-gnome-lt-base (<< 1:14.04+20140410), language-pack-kde-lt (<< 1:14.04+20140410), language-pack-kde-lt-base (<< 1:14.04+20140410), language-pack-lt (<< 1:14.04+20140410), language-pack-lt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-lt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-lt Conflicts: language-pack-lt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-lt-base/language-pack-lt-base_14.04+20140410_all.deb Size: 487070 MD5sum: 310f55ba5596765418ed2f5e8c83c957 SHA1: 8fedf423c11b130e6c0b12662966d1218a648a47 SHA256: 957056cc4339c0863902a66d47bed5edd3c0b4fc1a441440d41deebc12475a72 Description: translations for language Lithuanian Description-md5: 047f9630396ed1a0259a4bb51e951c29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lv (<< 1:14.04+20140410), language-pack-gnome-lv-base (<< 1:14.04+20140410), language-pack-kde-lv (<< 1:14.04+20140410), language-pack-kde-lv-base (<< 1:14.04+20140410), language-pack-lv (<< 1:14.04+20140410), language-pack-lv-base Depends: language-pack-lv-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-lv/language-pack-lv_14.04+20140410_all.deb Size: 1974 MD5sum: 44b800930ee1401a1c988b716bfb9f28 SHA1: 67eb91165b849d212734996c7391b3c575c2ad85 SHA256: e5aeb47ece5bd83258f6f1c23f0edc6463084652475ec4cd48340b846c011131 Description: translation updates for language Latvian Description-md5: 0514f99032fd1976655c4bf7e03146bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lv-base Priority: optional Section: translations Installed-Size: 667 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lv (<< 1:14.04+20140410), language-pack-gnome-lv-base (<< 1:14.04+20140410), language-pack-kde-lv (<< 1:14.04+20140410), language-pack-kde-lv-base (<< 1:14.04+20140410), language-pack-lv (<< 1:14.04+20140410), language-pack-lv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-lv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-lv Conflicts: language-pack-lv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-lv-base/language-pack-lv-base_14.04+20140410_all.deb Size: 196706 MD5sum: 64bade976b1f8e8cb7cb0067f2e4211e SHA1: 6ba984fe1ce15ff247b2ce133024b4af104ce77d SHA256: 3aa7f2b5f6710c0922a42d9c680b538ef4a410e49c36a80e6c93cf9f3694428d Description: translations for language Latvian Description-md5: a2c4b8a2b8ddc06f922a6291ade84644 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mai Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mai (<< 1:14.04+20140410), language-pack-gnome-mai-base (<< 1:14.04+20140410), language-pack-kde-mai (<< 1:14.04+20140410), language-pack-kde-mai-base (<< 1:14.04+20140410), language-pack-mai (<< 1:14.04+20140410), language-pack-mai-base Depends: language-pack-mai-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mai/language-pack-mai_14.04+20140410_all.deb Size: 1978 MD5sum: 6ce046a2e2ad63fb15c92affecabe07a SHA1: dd2612835f3494433bbeb26bdaedf224b1f454f4 SHA256: c4353600a4a330561bdd25ac744bc9e037d9ccb20a31d299c01bd8ae17fcd288 Description: translation updates for language Maithili Description-md5: 3f30c4eb0cd24bb561962e8944e1ae94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mai-base Priority: optional Section: translations Installed-Size: 389 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mai (<< 1:14.04+20140410), language-pack-gnome-mai-base (<< 1:14.04+20140410), language-pack-kde-mai (<< 1:14.04+20140410), language-pack-kde-mai-base (<< 1:14.04+20140410), language-pack-mai (<< 1:14.04+20140410), language-pack-mai-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mai (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-mai Conflicts: language-pack-mai (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mai-base/language-pack-mai-base_14.04+20140410_all.deb Size: 82146 MD5sum: cc5b929f168b91639b84ba1555073a19 SHA1: bb0beadbe081d546ad9dfb3c38b90425bfad47bb SHA256: a3f4952ceee32866b381879ee87aeaed6b315a99ace34f45b4b946f540dac307 Description: translations for language Maithili Description-md5: 5b14f287c08e4c4a2441ebccbbad6326 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mg (<< 1:14.04+20140410), language-pack-gnome-mg-base (<< 1:14.04+20140410), language-pack-kde-mg (<< 1:14.04+20140410), language-pack-kde-mg-base (<< 1:14.04+20140410), language-pack-mg (<< 1:14.04+20140410), language-pack-mg-base Depends: language-pack-mg-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mg/language-pack-mg_14.04+20140410_all.deb Size: 1964 MD5sum: f7cbc4d26da61c7809b3c1593500d998 SHA1: 95e61971fd228a332ed5c6c95499f6ebda815721 SHA256: 2ab7f3561f5cd9b9911921e82a20254a3f3de4fb983e5ab133ccfc27e0704983 Description: translation updates for language Malagasy Description-md5: 9735e26fab2615ce1f07455f43c80c18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mg-base Priority: optional Section: translations Installed-Size: 66 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mg (<< 1:14.04+20140410), language-pack-gnome-mg-base (<< 1:14.04+20140410), language-pack-kde-mg (<< 1:14.04+20140410), language-pack-kde-mg-base (<< 1:14.04+20140410), language-pack-mg (<< 1:14.04+20140410), language-pack-mg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-mg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mg-base/language-pack-mg-base_14.04+20140410_all.deb Size: 7056 MD5sum: b55f942d3acfa025b084b79b0dbf07b1 SHA1: c1379f6a52a88259e8c57907d5147d676c886c3f SHA256: a643909653ba2680559c6d41a7f6364a8dc8a70e28467f0f4e5497cc6530098c Description: translations for language Malagasy Description-md5: 627408b57387efc1e84177b265b49548 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mhr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mhr (<< 1:14.04+20140410), language-pack-gnome-mhr-base (<< 1:14.04+20140410), language-pack-kde-mhr (<< 1:14.04+20140410), language-pack-kde-mhr-base (<< 1:14.04+20140410), language-pack-mhr (<< 1:14.04+20140410), language-pack-mhr-base Depends: language-pack-mhr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mhr/language-pack-mhr_14.04+20140410_all.deb Size: 1974 MD5sum: 1529a5e154e583baf52a1e4de67a5252 SHA1: 29fa2e4f0f8cd456cb9327224d7d7fd7ae2912b5 SHA256: b84533caf0aefaeb037e9d6d9037eccb77fa604a535cb0dfac5e5468a63e6c8f Description: translation updates for language Mari, Eastern Description-md5: 9bc018ae73b4ac969beedd81b505cad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mhr-base Priority: optional Section: translations Installed-Size: 451 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mhr (<< 1:14.04+20140410), language-pack-gnome-mhr-base (<< 1:14.04+20140410), language-pack-kde-mhr (<< 1:14.04+20140410), language-pack-kde-mhr-base (<< 1:14.04+20140410), language-pack-mhr (<< 1:14.04+20140410), language-pack-mhr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mhr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-mhr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mhr-base/language-pack-mhr-base_14.04+20140410_all.deb Size: 106892 MD5sum: b31c68cba053d1702c2cfc4e47c9bd12 SHA1: 06d2dbe6a2ccb95ae7fc218f3500581992c4d512 SHA256: 0497cf8720e95948b886ef9e84b26fa2d0203e3f81bf0250e06524c1fbeac318 Description: translations for language Mari, Eastern Description-md5: bcebffceddd49e05e105d0da1aa05ebb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mi (<< 1:14.04+20140410), language-pack-gnome-mi-base (<< 1:14.04+20140410), language-pack-kde-mi (<< 1:14.04+20140410), language-pack-kde-mi-base (<< 1:14.04+20140410), language-pack-mi (<< 1:14.04+20140410), language-pack-mi-base Depends: language-pack-mi-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mi/language-pack-mi_14.04+20140410_all.deb Size: 1968 MD5sum: 53387eba315dd6cd3da8346ae5f6f109 SHA1: 00dc021125e78f37ac6d4d72a498460c43813aec SHA256: 5ee71462de71e83274f0dd34777af7d0123c1435a10f6b3e8edf9a145798b2c0 Description: translation updates for language Maori Description-md5: b2761457a20745c49d546a0de3e1a874 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mi-base Priority: optional Section: translations Installed-Size: 65 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mi (<< 1:14.04+20140410), language-pack-gnome-mi-base (<< 1:14.04+20140410), language-pack-kde-mi (<< 1:14.04+20140410), language-pack-kde-mi-base (<< 1:14.04+20140410), language-pack-mi (<< 1:14.04+20140410), language-pack-mi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-mi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mi-base/language-pack-mi-base_14.04+20140410_all.deb Size: 6228 MD5sum: 27bb9d9b83d977f70c544f5628f5e60d SHA1: acf3a4805e30a11fc300fe4095c8bed9bc316c5a SHA256: d2cfe9b96d828bc736bdf9d38c3f25a9353b8060ca0e6e43faccaf23d245516e Description: translations for language Maori Description-md5: 7c61e46eaba33ce65cdb79bffeb31ddf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mk (<< 1:14.04+20140410), language-pack-gnome-mk-base (<< 1:14.04+20140410), language-pack-kde-mk (<< 1:14.04+20140410), language-pack-kde-mk-base (<< 1:14.04+20140410), language-pack-mk (<< 1:14.04+20140410), language-pack-mk-base Depends: language-pack-mk-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mk/language-pack-mk_14.04+20140410_all.deb Size: 1988 MD5sum: df86983b7e5c44a28c89bd266caeafc4 SHA1: 0dca4098c12163f19a4295bf31daeda228f8c86d SHA256: 3156b95121e78d7d5c01dc81d2b9283ee4fffd37c11081e2752b5777ade5d74d Description: translation updates for language Macedonian Description-md5: a36efa2e9ffdbe0e1c5132e7b3bc555b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mk-base Priority: optional Section: translations Installed-Size: 578 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mk (<< 1:14.04+20140410), language-pack-gnome-mk-base (<< 1:14.04+20140410), language-pack-kde-mk (<< 1:14.04+20140410), language-pack-kde-mk-base (<< 1:14.04+20140410), language-pack-mk (<< 1:14.04+20140410), language-pack-mk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-mk Conflicts: language-pack-mk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mk-base/language-pack-mk-base_14.04+20140410_all.deb Size: 138596 MD5sum: aae28e000bd1938a44f03d6df94aaa0c SHA1: 0e9b8dd15e6bea39960b7f2f37d3f7febdb72e60 SHA256: 3aff53362a7b382b076f7489382530d7996577fd2233aa67bb8385caef4cb44f Description: translations for language Macedonian Description-md5: 54ed36b2d46b04c8b30c110398daa507 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ml Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ml (<< 1:14.04+20140410), language-pack-gnome-ml-base (<< 1:14.04+20140410), language-pack-kde-ml (<< 1:14.04+20140410), language-pack-kde-ml-base (<< 1:14.04+20140410), language-pack-ml (<< 1:14.04+20140410), language-pack-ml-base Depends: language-pack-ml-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ml/language-pack-ml_14.04+20140410_all.deb Size: 1968 MD5sum: 9e00c1209fafda449b8bb84dda9b6a00 SHA1: 1e8e43ed6fc3074beb26a20304d91748132a8751 SHA256: 05d03b79027655895a9b11951eb4d0076d19ed7994b0e5472665eae4ca131b2d Description: translation updates for language Malayalam Description-md5: 15eb580da4dd803cc6c7d597c3a74bb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ml-base Priority: optional Section: translations Installed-Size: 1834 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ml (<< 1:14.04+20140410), language-pack-gnome-ml-base (<< 1:14.04+20140410), language-pack-kde-ml (<< 1:14.04+20140410), language-pack-kde-ml-base (<< 1:14.04+20140410), language-pack-ml (<< 1:14.04+20140410), language-pack-ml-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ml (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ml Conflicts: language-pack-ml (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ml-base/language-pack-ml-base_14.04+20140410_all.deb Size: 300014 MD5sum: 5c62db9ddc94af663e6ca74087f98969 SHA1: e6c766e8294a80a75a1e52db5e29c731e2294908 SHA256: 51df3b440df1fc198c46ffbe953be16fd2ccaec84e497fa20f032fe7a034a674 Description: translations for language Malayalam Description-md5: eccb849404152b1da1bb6a4a06a3918c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mn (<< 1:14.04+20140410), language-pack-gnome-mn-base (<< 1:14.04+20140410), language-pack-kde-mn (<< 1:14.04+20140410), language-pack-kde-mn-base (<< 1:14.04+20140410), language-pack-mn (<< 1:14.04+20140410), language-pack-mn-base Depends: language-pack-mn-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mn/language-pack-mn_14.04+20140410_all.deb Size: 1990 MD5sum: dc3ddae677ef6e9a230ab87c48d149cc SHA1: f1978a41d9fa508c7cedcefe26786e13637b3a01 SHA256: ef3ce2ed15d6516902627c73aacdaa84687c940323cba2d8743915d248c0c51c Description: translation updates for language Mongolian Description-md5: b708d38cee42e6573bf3981b72d6c26d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mn-base Priority: optional Section: translations Installed-Size: 327 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mn (<< 1:14.04+20140410), language-pack-gnome-mn-base (<< 1:14.04+20140410), language-pack-kde-mn (<< 1:14.04+20140410), language-pack-kde-mn-base (<< 1:14.04+20140410), language-pack-mn (<< 1:14.04+20140410), language-pack-mn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-mn Conflicts: language-pack-mn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mn-base/language-pack-mn-base_14.04+20140410_all.deb Size: 78730 MD5sum: 72bea0f7ff0857c4ad98e604b704279a SHA1: 03d3cb0df278bb6eef5f1174baff37ec4f2bafae SHA256: e89e331d4146085d517b842ee84b8782133ee72f68f1908f22b5828df20053fe Description: translations for language Mongolian Description-md5: 13b66b45da6a7d3a04a8011ff050480c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mr (<< 1:14.04+20140410), language-pack-gnome-mr-base (<< 1:14.04+20140410), language-pack-kde-mr (<< 1:14.04+20140410), language-pack-kde-mr-base (<< 1:14.04+20140410), language-pack-mr (<< 1:14.04+20140410), language-pack-mr-base Depends: language-pack-mr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mr/language-pack-mr_14.04+20140410_all.deb Size: 1988 MD5sum: 055423a498a7267cbb95f1ffa9916b71 SHA1: 150e1866c1aafad1f69a645c57f095ebb111ae88 SHA256: e6de0e7f6879b3d33ae3ab72886da59cc27cb17f08fbbfee7bff81c1dadc1661 Description: translation updates for language Marathi Description-md5: c1463a5845988903df6aae41d673717f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mr-base Priority: optional Section: translations Installed-Size: 2274 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mr (<< 1:14.04+20140410), language-pack-gnome-mr-base (<< 1:14.04+20140410), language-pack-kde-mr (<< 1:14.04+20140410), language-pack-kde-mr-base (<< 1:14.04+20140410), language-pack-mr (<< 1:14.04+20140410), language-pack-mr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-mr Conflicts: language-pack-mr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mr-base/language-pack-mr-base_14.04+20140410_all.deb Size: 456220 MD5sum: dce44ad5531d803610cc1a09ebe72254 SHA1: b1760872ce60258960db9ba851170ababb12c2b7 SHA256: fed75c3c070ae727dc80376838859dbb17d33b8fbf43411c25a788a7f70ffef4 Description: translations for language Marathi Description-md5: f0dd3c75c5552c902ae573917be0988c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ms Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ms (<< 1:14.04+20140410), language-pack-gnome-ms-base (<< 1:14.04+20140410), language-pack-kde-ms (<< 1:14.04+20140410), language-pack-kde-ms-base (<< 1:14.04+20140410), language-pack-ms (<< 1:14.04+20140410), language-pack-ms-base Depends: language-pack-ms-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ms/language-pack-ms_14.04+20140410_all.deb Size: 1980 MD5sum: 4b1c3e6319cfdb4fec9d0ab2c9aad71f SHA1: b674ba23c6785a0d103f6682a5f678a2297bb69b SHA256: 7ffd7d18489230aeb2f1ca318b45e8bd4f14ceecd37d1b2d85153a1eb43dc6a8 Description: translation updates for language Malay Description-md5: 6fac81122e8e9c5fc177bd018d9c2d5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ms-base Priority: optional Section: translations Installed-Size: 4829 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ms (<< 1:14.04+20140410), language-pack-gnome-ms-base (<< 1:14.04+20140410), language-pack-kde-ms (<< 1:14.04+20140410), language-pack-kde-ms-base (<< 1:14.04+20140410), language-pack-ms (<< 1:14.04+20140410), language-pack-ms-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ms (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ms Conflicts: language-pack-ms (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ms-base/language-pack-ms-base_14.04+20140410_all.deb Size: 1502066 MD5sum: 56e08e1df4bddd76d909def4fe44322d SHA1: 0273f7584a56e9bf02d28d6894a5a79ef3e57b9c SHA256: 86f123c8c28d4acc02f8352682dc4036953744675f5233c12588a836d558adae Description: translations for language Malay Description-md5: 7b2a5d2a92b917facc024ac10ec1e808 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mt (<< 1:14.04+20140410), language-pack-gnome-mt-base (<< 1:14.04+20140410), language-pack-kde-mt (<< 1:14.04+20140410), language-pack-kde-mt-base (<< 1:14.04+20140410), language-pack-mt (<< 1:14.04+20140410), language-pack-mt-base Depends: language-pack-mt-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mt/language-pack-mt_14.04+20140410_all.deb Size: 1986 MD5sum: 06e08c014c50ada7b141bdfaf8e78b21 SHA1: 7bfd59327658d147c19828510b6a723cb9262fbd SHA256: 495589ba5db9518a4e4cb4e0966138d1f785953616c8aff06423886629ca1687 Description: translation updates for language Maltese Description-md5: b974b9217182a6c4c78b7c620aaffcb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mt-base Priority: optional Section: translations Installed-Size: 64 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mt (<< 1:14.04+20140410), language-pack-gnome-mt-base (<< 1:14.04+20140410), language-pack-kde-mt (<< 1:14.04+20140410), language-pack-kde-mt-base (<< 1:14.04+20140410), language-pack-mt (<< 1:14.04+20140410), language-pack-mt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-mt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mt-base/language-pack-mt-base_14.04+20140410_all.deb Size: 6520 MD5sum: 49dcce56a7a8ddce2d64549b004bef3e SHA1: ca05c7c3afd79907d68365199f7d42b7377e2e06 SHA256: d3b60f27a1db9420455adf299712b250c06176fb7d5844e5c6ab6feaf1e1f0be Description: translations for language Maltese Description-md5: 1ba04e49d0a8bf4cce9e44eb93ad502a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-my Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-my (<< 1:14.04+20140410), language-pack-gnome-my-base (<< 1:14.04+20140410), language-pack-kde-my (<< 1:14.04+20140410), language-pack-kde-my-base (<< 1:14.04+20140410), language-pack-my (<< 1:14.04+20140410), language-pack-my-base Depends: language-pack-my-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-my/language-pack-my_14.04+20140410_all.deb Size: 1968 MD5sum: 96e3fd7eaaca5fb8d8149506a4338c0e SHA1: 858dec7504b12606ae27c2dd1122fcb9981f7745 SHA256: 5d292766588cfd71c480c2ce522d1cb2af061a18a52491aca31e5048816f6f4c Description: translation updates for language Burmese Description-md5: 11692a65ba9a3150357090110381ee19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-my-base Priority: optional Section: translations Installed-Size: 745 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-my (<< 1:14.04+20140410), language-pack-gnome-my-base (<< 1:14.04+20140410), language-pack-kde-my (<< 1:14.04+20140410), language-pack-kde-my-base (<< 1:14.04+20140410), language-pack-my (<< 1:14.04+20140410), language-pack-my-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-my (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-my (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-my-base/language-pack-my-base_14.04+20140410_all.deb Size: 162460 MD5sum: 23aeca579413c5cfe1a30331b1a1b777 SHA1: 2e0d35d4a4a805c1affd2e823247251b52cca4e5 SHA256: ce03bebf7a6f118bf3689330ce657fbeb5f74af1c485e69f5879508d2b920dfd Description: translations for language Burmese Description-md5: eafee3e6ffb98e3bfbb14217961edb0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nan Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nan (<< 1:14.04+20140410), language-pack-gnome-nan-base (<< 1:14.04+20140410), language-pack-kde-nan (<< 1:14.04+20140410), language-pack-kde-nan-base (<< 1:14.04+20140410), language-pack-nan (<< 1:14.04+20140410), language-pack-nan-base Depends: language-pack-nan-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nan/language-pack-nan_14.04+20140410_all.deb Size: 1980 MD5sum: 42adb6318d6ba6e87534e1b1afbc1ae1 SHA1: dad039526e87ffe874afcaea5139b58842b637f5 SHA256: ecf933c844a12df8d826587a9dd66ef65eedb3af2e385ddbb2e1d4690b15986b Description: translation updates for language Chinese, Min Nan Description-md5: 61215204ad55c0ad1e57663525e47f2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nan-base Priority: optional Section: translations Installed-Size: 55 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nan (<< 1:14.04+20140410), language-pack-gnome-nan-base (<< 1:14.04+20140410), language-pack-kde-nan (<< 1:14.04+20140410), language-pack-kde-nan-base (<< 1:14.04+20140410), language-pack-nan (<< 1:14.04+20140410), language-pack-nan-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nan (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-nan (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nan-base/language-pack-nan-base_14.04+20140410_all.deb Size: 2986 MD5sum: 974b2bf6f42fb86604e8cad4019d9b52 SHA1: 7c6c941b147ad9ad82fb89a6b623dc1151dee4df SHA256: 9ef4117ea4d0519a02d4faf3f02c996c63784c99ae45639df3b2a89b9f37bc95 Description: translations for language Chinese, Min Nan Description-md5: ec8947c764d312d9ff19e593b0bdb75f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nb (<< 1:14.04+20140410), language-pack-gnome-nb-base (<< 1:14.04+20140410), language-pack-kde-nb (<< 1:14.04+20140410), language-pack-kde-nb-base (<< 1:14.04+20140410), language-pack-nb (<< 1:14.04+20140410), language-pack-nb-base Depends: language-pack-nb-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nb/language-pack-nb_14.04+20140410_all.deb Size: 1998 MD5sum: 6104030c099383b67ab10a3eee4515d9 SHA1: 80238544d69fce0ffcd7cdc9dd43b1a86826d160 SHA256: 50e058a3aec50a8aee00ce589c8df38b4c652abcbf70e07fb85dd74268389e65 Description: translation updates for language Bokmål, Norwegian; Norwegian Bokmål Description-md5: e5a81539419b99b61d7ff8c5a7b0985b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nb-base Priority: optional Section: translations Installed-Size: 2907 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nb (<< 1:14.04+20140410), language-pack-gnome-nb-base (<< 1:14.04+20140410), language-pack-kde-nb (<< 1:14.04+20140410), language-pack-kde-nb-base (<< 1:14.04+20140410), language-pack-nb (<< 1:14.04+20140410), language-pack-nb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-nb Conflicts: language-pack-nb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nb-base/language-pack-nb-base_14.04+20140410_all.deb Size: 910210 MD5sum: d4dcd8e625844383c3218ce63e7b9343 SHA1: de27a55f3c3b9d40f43d9320c3bba1f7a4a1b901 SHA256: d4dbfd1241d6dbbe54b028bc92df0435a961e8594b25daa3cb831a9b4cc2f755 Description: translations for language Bokmål, Norwegian; Norwegian Bokmål Description-md5: 848a8c4db84a81ca1844e7323c727f3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nds Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nds (<< 1:14.04+20140410), language-pack-gnome-nds-base (<< 1:14.04+20140410), language-pack-kde-nds (<< 1:14.04+20140410), language-pack-kde-nds-base (<< 1:14.04+20140410), language-pack-nds (<< 1:14.04+20140410), language-pack-nds-base Depends: language-pack-nds-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nds/language-pack-nds_14.04+20140410_all.deb Size: 1974 MD5sum: 964092aece0689fd6e0e525d324d452c SHA1: fda3f44e1bdfd3fbee0c73766a8e1fdca18670e9 SHA256: b928d5af69333f802b080cde0227daa9d5c8c6172d082210a04c6c5ce0bf289b Description: translation updates for language German, Low Description-md5: d1696da67bdcea01dacc28a956dd70c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nds-base Priority: optional Section: translations Installed-Size: 90 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nds (<< 1:14.04+20140410), language-pack-gnome-nds-base (<< 1:14.04+20140410), language-pack-kde-nds (<< 1:14.04+20140410), language-pack-kde-nds-base (<< 1:14.04+20140410), language-pack-nds (<< 1:14.04+20140410), language-pack-nds-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nds (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-nds (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nds-base/language-pack-nds-base_14.04+20140410_all.deb Size: 15036 MD5sum: add31de8f120a88fabe77b3b4f6b4505 SHA1: dfc2bc4b20833ef8dd02c46321ee5278c75ee4f9 SHA256: d0757308b7306f84cbac468fa7099b6a6e2da5cf083bc540de78fc1465dc589b Description: translations for language German, Low Description-md5: 137e7c9b7acb23f43087a960c65fcdac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ne Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ne (<< 1:14.04+20140410), language-pack-gnome-ne-base (<< 1:14.04+20140410), language-pack-kde-ne (<< 1:14.04+20140410), language-pack-kde-ne-base (<< 1:14.04+20140410), language-pack-ne (<< 1:14.04+20140410), language-pack-ne-base Depends: language-pack-ne-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ne/language-pack-ne_14.04+20140410_all.deb Size: 1978 MD5sum: 40860d1b952416b69594ffaa458aad25 SHA1: b02c768ebecc4982ee95e30d0d39513e00628958 SHA256: ca557b39430039b50bd5e621068aeb3871670c1d8690bf745c3edecd6e6dbb47 Description: translation updates for language Nepali Description-md5: c1403e2f1c360545ad4ecd7ec86dd29f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ne-base Priority: optional Section: translations Installed-Size: 584 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ne (<< 1:14.04+20140410), language-pack-gnome-ne-base (<< 1:14.04+20140410), language-pack-kde-ne (<< 1:14.04+20140410), language-pack-kde-ne-base (<< 1:14.04+20140410), language-pack-ne (<< 1:14.04+20140410), language-pack-ne-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ne (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ne (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ne-base/language-pack-ne-base_14.04+20140410_all.deb Size: 113430 MD5sum: 6da8f161b3379c871919c89c5a802789 SHA1: 360b8aa8038789e335c71cd25d72d4865dd9b260 SHA256: 87018302ed1a9c2cccb7c85a4eb927ceea5daedd13f903f75e551d3eb0108db9 Description: translations for language Nepali Description-md5: 73778da7d2c04e5881d1bb9c676a8b2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nl (<< 1:14.04+20140410), language-pack-gnome-nl-base (<< 1:14.04+20140410), language-pack-kde-nl (<< 1:14.04+20140410), language-pack-kde-nl-base (<< 1:14.04+20140410), language-pack-nl (<< 1:14.04+20140410), language-pack-nl-base Depends: language-pack-nl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nl/language-pack-nl_14.04+20140410_all.deb Size: 1960 MD5sum: 812e8b0e1b784ce040fc6e504dd53a0d SHA1: 16a5b5f0e3e1f4d15cdfce99e8bee3be71e2ec85 SHA256: e58d483902ca0b37bba5dd11e49b330906f6861d4299e16fe5a2c791cf7d2d19 Description: translation updates for language Dutch; Flemish Description-md5: abbd06c2b718cf6ca34c0db17f0d7c37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-nl-base Priority: optional Section: translations Installed-Size: 5904 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nl (<< 1:14.04+20140410), language-pack-gnome-nl-base (<< 1:14.04+20140410), language-pack-kde-nl (<< 1:14.04+20140410), language-pack-kde-nl-base (<< 1:14.04+20140410), language-pack-nl (<< 1:14.04+20140410), language-pack-nl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-nl Conflicts: language-pack-nl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nl-base/language-pack-nl-base_14.04+20140410_all.deb Size: 1819932 MD5sum: 5f13216a1772470c0f7e55f7ab64a472 SHA1: e2840bd869da32b3f7d0a9832813f47b960f8870 SHA256: 2eecd8656e87e0cf2100939714af8dd3f2571f80892ff7770b404baee6807333 Description: translations for language Dutch; Flemish Description-md5: 2c07d61e37160964bb9c1bddec329524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-nn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nn (<< 1:14.04+20140410), language-pack-gnome-nn-base (<< 1:14.04+20140410), language-pack-kde-nn (<< 1:14.04+20140410), language-pack-kde-nn-base (<< 1:14.04+20140410), language-pack-nn (<< 1:14.04+20140410), language-pack-nn-base Depends: language-pack-nn-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nn/language-pack-nn_14.04+20140410_all.deb Size: 1988 MD5sum: 45e8184cc0696a8683825935fd907f41 SHA1: b9f67c11a5e1c8d756e971649924c0758cce66f9 SHA256: 8d16bc086b60ab092e083a6eb78016b5d29f670734d58fd6c62d3c266ae5b99c Description: translation updates for language Norwegian Nynorsk; Nynorsk, Norwegian Description-md5: 12e80421f55580d4f4bb594b12a48b81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nn-base Priority: optional Section: translations Installed-Size: 779 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nn (<< 1:14.04+20140410), language-pack-gnome-nn-base (<< 1:14.04+20140410), language-pack-kde-nn (<< 1:14.04+20140410), language-pack-kde-nn-base (<< 1:14.04+20140410), language-pack-nn (<< 1:14.04+20140410), language-pack-nn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-nn Conflicts: language-pack-nn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nn-base/language-pack-nn-base_14.04+20140410_all.deb Size: 236830 MD5sum: 044242db926b70075fdb43244ff88af3 SHA1: de105ce174d7c6166e85b8fa119b0004ecbca690 SHA256: a03cf5bd286be0f89122911ba116e83dbf1a7a120da77795bf8bf7beb1dbc7f4 Description: translations for language Norwegian Nynorsk; Nynorsk, Norwegian Description-md5: d5b06940bc7cef7e58d75032b2147707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nso Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nso (<< 1:14.04+20140410), language-pack-gnome-nso-base (<< 1:14.04+20140410), language-pack-kde-nso (<< 1:14.04+20140410), language-pack-kde-nso-base (<< 1:14.04+20140410), language-pack-nso (<< 1:14.04+20140410), language-pack-nso-base Depends: language-pack-nso-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nso/language-pack-nso_14.04+20140410_all.deb Size: 1966 MD5sum: e4301eba6a3c766c4376d5f46db94051 SHA1: ef1b17b2698c9e0922f274b55abbf86dc4038a3c SHA256: 10e2f6e95ef41000ad2394ea23b57c87964e47a0f2f3c51028f85a80bc9f3584 Description: translation updates for language Pedi Description-md5: cb00c3e5ce7aa506d7bfcc7dcde84f30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nso-base Priority: optional Section: translations Installed-Size: 71 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nso (<< 1:14.04+20140410), language-pack-gnome-nso-base (<< 1:14.04+20140410), language-pack-kde-nso (<< 1:14.04+20140410), language-pack-kde-nso-base (<< 1:14.04+20140410), language-pack-nso (<< 1:14.04+20140410), language-pack-nso-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nso (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-nso Conflicts: language-pack-nso (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nso-base/language-pack-nso-base_14.04+20140410_all.deb Size: 7496 MD5sum: 72d69a38f53596897949d6cb835b9ece SHA1: ac9522e05d7ee9ef61156eb5af49619d27792955 SHA256: 82126686db8c1545e0ffbe9d20e83bd628c1db22baea165304a506f41c61b401 Description: translations for language Pedi Description-md5: 33db3bda3312bfd02bb81b59a6b03822 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-oc Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-oc (<< 1:14.04+20140410), language-pack-gnome-oc-base (<< 1:14.04+20140410), language-pack-kde-oc (<< 1:14.04+20140410), language-pack-kde-oc-base (<< 1:14.04+20140410), language-pack-oc (<< 1:14.04+20140410), language-pack-oc-base Depends: language-pack-oc-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-oc/language-pack-oc_14.04+20140410_all.deb Size: 2002 MD5sum: 993c605f5c17b1e7450c3eb75984167d SHA1: bf9c39b478fd4062099a46bb266f343b8edc7b4f SHA256: e7396329ba5653995c8d4798095ef0590a40d92a9dc023bd7fcc56b30097ba08 Description: translation updates for language Occitan (post 1500) Description-md5: c7d8488edf73defd42378e02543b8708 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-oc-base Priority: optional Section: translations Installed-Size: 2758 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-oc (<< 1:14.04+20140410), language-pack-gnome-oc-base (<< 1:14.04+20140410), language-pack-kde-oc (<< 1:14.04+20140410), language-pack-kde-oc-base (<< 1:14.04+20140410), language-pack-oc (<< 1:14.04+20140410), language-pack-oc-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-oc (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-oc Conflicts: language-pack-oc (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-oc-base/language-pack-oc-base_14.04+20140410_all.deb Size: 884280 MD5sum: 9142e6b43200a0bf60f17c88ae1b2592 SHA1: 5f7402cedc4e16583f20542f76b6e35ac9cbaaa2 SHA256: 6947105ab17fd5a5fd185f30e1bd5d0b45ddceb111dbced112213e11d5dd944e Description: translations for language Occitan (post 1500) Description-md5: b480e25408b2374ec4df3c0785121b10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-om Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-om (<< 1:14.04+20140410), language-pack-gnome-om-base (<< 1:14.04+20140410), language-pack-kde-om (<< 1:14.04+20140410), language-pack-kde-om-base (<< 1:14.04+20140410), language-pack-om (<< 1:14.04+20140410), language-pack-om-base Depends: language-pack-om-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-om/language-pack-om_14.04+20140410_all.deb Size: 1972 MD5sum: e51a6b3e9b35fea71ec86ea9653f50e9 SHA1: 8c1aecedcfc9c393776523a0e57e60ba0a835eb4 SHA256: 054ed5538773eb4aa1fcb788bc223bc41b14b9a3bb1e931f3056ba8af40dce77 Description: translation updates for language Oromo Description-md5: 432bb1c3495f415356fba9d2682e23b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-om-base Priority: optional Section: translations Installed-Size: 58 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-om (<< 1:14.04+20140410), language-pack-gnome-om-base (<< 1:14.04+20140410), language-pack-kde-om (<< 1:14.04+20140410), language-pack-kde-om-base (<< 1:14.04+20140410), language-pack-om (<< 1:14.04+20140410), language-pack-om-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-om (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-om (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-om-base/language-pack-om-base_14.04+20140410_all.deb Size: 4286 MD5sum: 47679902a79081c17aa732069893371d SHA1: 4153589a6a4f9e1fcc8e8230f6d5f62b2a0a6c1b SHA256: 07372e638ff8521b033b35b6f366978e08005e750be4b4c824bdc22f7a8076ba Description: translations for language Oromo Description-md5: 3c48e7c524bd62f241220dbb862be2d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-or Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-or (<< 1:14.04+20140410), language-pack-gnome-or-base (<< 1:14.04+20140410), language-pack-kde-or (<< 1:14.04+20140410), language-pack-kde-or-base (<< 1:14.04+20140410), language-pack-or (<< 1:14.04+20140410), language-pack-or-base Depends: language-pack-or-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-or/language-pack-or_14.04+20140410_all.deb Size: 1970 MD5sum: c02d5629da9a6243a20d06204e31009c SHA1: 911761b39d38c62316e107c83f530113f012aaec SHA256: 3c4503244266edf9a0c0e2cd28e187d4fbe2d535c7280802943e52480eed54e9 Description: translation updates for language Oriya Description-md5: 849d17e9eac687848aa688c4876f4723 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-or-base Priority: optional Section: translations Installed-Size: 1686 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-or (<< 1:14.04+20140410), language-pack-gnome-or-base (<< 1:14.04+20140410), language-pack-kde-or (<< 1:14.04+20140410), language-pack-kde-or-base (<< 1:14.04+20140410), language-pack-or (<< 1:14.04+20140410), language-pack-or-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-or (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-or Conflicts: language-pack-or (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-or-base/language-pack-or-base_14.04+20140410_all.deb Size: 320362 MD5sum: 45cad5d91905f227582c710f8e5c5a6e SHA1: e1f8a157e6bea9285f810dad729585b256a1a133 SHA256: ca4f1ffbb4830a0ead0dd40e394b733c03cf05c3c2a6d2822a534b80c3e62ded Description: translations for language Oriya Description-md5: 8ab6ee3ce7a0b1ce4b6d84f8ac3d3287 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-os Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-os (<< 1:14.04+20140410), language-pack-gnome-os-base (<< 1:14.04+20140410), language-pack-kde-os (<< 1:14.04+20140410), language-pack-kde-os-base (<< 1:14.04+20140410), language-pack-os (<< 1:14.04+20140410), language-pack-os-base Depends: language-pack-os-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-os/language-pack-os_14.04+20140410_all.deb Size: 1980 MD5sum: 9c4ee75f58f821c8f4695bf17a3b47f9 SHA1: 531d3afe934f6451008c1e2da20bcda2178450e1 SHA256: c429c903b82657f28d4df51ab9f6a66ab195ac30f0c61020e657ea879b041e5a Description: translation updates for language Ossetian; Ossetic Description-md5: fa7d4673e3fcb72bea74d39bae6710d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-os-base Priority: optional Section: translations Installed-Size: 64 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-os (<< 1:14.04+20140410), language-pack-gnome-os-base (<< 1:14.04+20140410), language-pack-kde-os (<< 1:14.04+20140410), language-pack-kde-os-base (<< 1:14.04+20140410), language-pack-os (<< 1:14.04+20140410), language-pack-os-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-os (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-os (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-os-base/language-pack-os-base_14.04+20140410_all.deb Size: 6640 MD5sum: 86343fc3b594157bab78a87aafc1dfcd SHA1: d4d7a754fa1f6590fa7c433b08a78fbd7ce5480d SHA256: 98b4178bce4c96c4f7af14f30a5c24ae7bb129fefc03a9549fb4dd65ca084a4c Description: translations for language Ossetian; Ossetic Description-md5: 3e5448b654a90314b8890aea03a032cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pa (<< 1:14.04+20140410), language-pack-gnome-pa-base (<< 1:14.04+20140410), language-pack-kde-pa (<< 1:14.04+20140410), language-pack-kde-pa-base (<< 1:14.04+20140410), language-pack-pa (<< 1:14.04+20140410), language-pack-pa-base Depends: language-pack-pa-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-pa/language-pack-pa_14.04+20140410_all.deb Size: 1970 MD5sum: 34a2f71700d60e382ea3c3cd5840cdeb SHA1: a5c500c2b849f24947368acc0bc196a3f3e69740 SHA256: 510055d9bb001c25c29a0ba96f3543d014b9702e417d569c7edf3ec00904b41f Description: translation updates for language Panjabi; Punjabi Description-md5: e0b453c4f3b09ad56c98e5ec913147a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pa-base Priority: optional Section: translations Installed-Size: 2035 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pa (<< 1:14.04+20140410), language-pack-gnome-pa-base (<< 1:14.04+20140410), language-pack-kde-pa (<< 1:14.04+20140410), language-pack-kde-pa-base (<< 1:14.04+20140410), language-pack-pa (<< 1:14.04+20140410), language-pack-pa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-pa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-pa Conflicts: language-pack-pa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-pa-base/language-pack-pa-base_14.04+20140410_all.deb Size: 437056 MD5sum: afe00ded50c46e4c5ba608991385a323 SHA1: 7a0638742d5f78ebcc042c499eea75dcbf249209 SHA256: e0fa80593a51ccc83e013340b0602d9bb04fd61e491debd0d7fe24dc98ce82a6 Description: translations for language Panjabi; Punjabi Description-md5: e579ea480c2c7b2878cf7bab852c841b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pap Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pap (<< 1:14.04+20140410), language-pack-gnome-pap-base (<< 1:14.04+20140410), language-pack-kde-pap (<< 1:14.04+20140410), language-pack-kde-pap-base (<< 1:14.04+20140410), language-pack-pap (<< 1:14.04+20140410), language-pack-pap-base Depends: language-pack-pap-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-pap/language-pack-pap_14.04+20140410_all.deb Size: 1974 MD5sum: 7b17e0d66931630eaa03ee1d46eb14d5 SHA1: 2f02266ecdb0e6ff8149e62231c34249db4c90a3 SHA256: 1198704cad7b30edccb19b8e258237a8ca96a33fd89e6fcb669a32b4e2d8c364 Description: translation updates for language Papiamento Description-md5: 2713f73fe41c251536b15e040b0c3eb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pap-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pap (<< 1:14.04+20140410), language-pack-gnome-pap-base (<< 1:14.04+20140410), language-pack-kde-pap (<< 1:14.04+20140410), language-pack-kde-pap-base (<< 1:14.04+20140410), language-pack-pap (<< 1:14.04+20140410), language-pack-pap-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-pap (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-pap (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-pap-base/language-pack-pap-base_14.04+20140410_all.deb Size: 2304 MD5sum: 23713c3ff9dcfed80e5edeacdbf53886 SHA1: c8523b2cf52fd9decdfc77ad9b358cbb4771f6dd SHA256: cffcfd8896772f811ba0cbc7c5a61ab25383e8e6339f9c9fd1b57b11e838ed26 Description: translations for language Papiamento Description-md5: 01a1807ee95c8dc257f947c8ba6607fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pl (<< 1:14.04+20140410), language-pack-gnome-pl-base (<< 1:14.04+20140410), language-pack-kde-pl (<< 1:14.04+20140410), language-pack-kde-pl-base (<< 1:14.04+20140410), language-pack-pl (<< 1:14.04+20140410), language-pack-pl-base Depends: language-pack-pl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-pl/language-pack-pl_14.04+20140410_all.deb Size: 1966 MD5sum: c5ad9648a1fb4bf24564a7ea59f8de00 SHA1: 01a869d855102a5b5f7138fd6496d032123e98f0 SHA256: 40ab73a77791cc4800745a01a2189dd3c5ec9da4d3bf35e0fd2994785af4e1d0 Description: translation updates for language Polish Description-md5: d9c80d720a6c8fa05d28f1a32c741463 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-pl-base Priority: optional Section: translations Installed-Size: 7810 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pl (<< 1:14.04+20140410), language-pack-gnome-pl-base (<< 1:14.04+20140410), language-pack-kde-pl (<< 1:14.04+20140410), language-pack-kde-pl-base (<< 1:14.04+20140410), language-pack-pl (<< 1:14.04+20140410), language-pack-pl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-pl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-pl Conflicts: language-pack-pl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-pl-base/language-pack-pl-base_14.04+20140410_all.deb Size: 2402228 MD5sum: d66cd7a550e31e26318b50725c85eaca SHA1: 4981070999122c26388fc91c0367bca4ff8c8dca SHA256: dd40008f0f20fad8d2385f16710ec3af97f2b6008726f8466c33f12b722a5036 Description: translations for language Polish Description-md5: 218d3c66cebc55614ff111887b1501aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-ps Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ps (<< 1:14.04+20140410), language-pack-gnome-ps-base (<< 1:14.04+20140410), language-pack-kde-ps (<< 1:14.04+20140410), language-pack-kde-ps-base (<< 1:14.04+20140410), language-pack-ps (<< 1:14.04+20140410), language-pack-ps-base Depends: language-pack-ps-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ps/language-pack-ps_14.04+20140410_all.deb Size: 1964 MD5sum: 6bfa38dcbf84087913759cdf5cb28992 SHA1: 8a53161b24c5f9c16853adcb9d60edf767662057 SHA256: 7193209e498334067a8d142ef59bd0213c62edfbe51e041f06e0ca82ed681d47 Description: translation updates for language Pushto; Pashto Description-md5: b448169ed995af6518c3dc0822eb318a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ps-base Priority: optional Section: translations Installed-Size: 105 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ps (<< 1:14.04+20140410), language-pack-gnome-ps-base (<< 1:14.04+20140410), language-pack-kde-ps (<< 1:14.04+20140410), language-pack-kde-ps-base (<< 1:14.04+20140410), language-pack-ps (<< 1:14.04+20140410), language-pack-ps-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ps (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ps (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ps-base/language-pack-ps-base_14.04+20140410_all.deb Size: 20328 MD5sum: 3afecca8ab3e1fe966ce34a847af964b SHA1: 2d69bfcb4ae887026bbd3a4008b2c56d6b2c25e6 SHA256: 10fa05401f17ff4db8f5d6bb280e630f8e55ce68a35317d74c2b170ebb89e5e4 Description: translations for language Pushto; Pashto Description-md5: 2efc67b41c2b11920af34f638a82521e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pt (<< 1:14.04+20140410), language-pack-gnome-pt-base (<< 1:14.04+20140410), language-pack-kde-pt (<< 1:14.04+20140410), language-pack-kde-pt-base (<< 1:14.04+20140410), language-pack-pt (<< 1:14.04+20140410), language-pack-pt-base Depends: language-pack-pt-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-pt/language-pack-pt_14.04+20140410_all.deb Size: 1992 MD5sum: e111e8602169a4077c45ccb2c33d2bce SHA1: 1fa1859f620d4916d42872fbeca7005cfe06d9a2 SHA256: 8c64889acf3b7d29a77d2c740d4c68a5bea284fc7b1d708ac8d8b6eca93043a6 Description: translation updates for language Portuguese Description-md5: bdb80b4ddacaf5fa67fbad83cb7c6f9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live Package: language-pack-pt-base Priority: optional Section: translations Installed-Size: 14095 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pt (<< 1:14.04+20140410), language-pack-gnome-pt-base (<< 1:14.04+20140410), language-pack-kde-pt (<< 1:14.04+20140410), language-pack-kde-pt-base (<< 1:14.04+20140410), language-pack-pt (<< 1:14.04+20140410), language-pack-pt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-pt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-pt Conflicts: language-pack-pt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-pt-base/language-pack-pt-base_14.04+20140410_all.deb Size: 4301518 MD5sum: 467d46e948d00e77f3ae7d9bcf342279 SHA1: 249e9f55a7e12338bb5cf20292f5cd84fca08c16 SHA256: 6c35bb3a20261ab6f5718455e1d82c39ecbed17090f0d57399c98800a4bb95bf Description: translations for language Portuguese Description-md5: 43d77c941af707d0ba018624927e0fad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live Package: language-pack-ro Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ro (<< 1:14.04+20140410), language-pack-gnome-ro-base (<< 1:14.04+20140410), language-pack-kde-ro (<< 1:14.04+20140410), language-pack-kde-ro-base (<< 1:14.04+20140410), language-pack-ro (<< 1:14.04+20140410), language-pack-ro-base Depends: language-pack-ro-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ro/language-pack-ro_14.04+20140410_all.deb Size: 1952 MD5sum: 74c677256f02aff283b541e7b74e4ecb SHA1: dce4c0f571267a1657bf8071501d7e0e1cb4972c SHA256: 40c94317910bbd74f5b455a741a9efb64e7761b7f50394bdfe80d90ebf17b0a5 Description: translation updates for language Romanian Description-md5: e446108efaa2fbd79747c4078a6fecd0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ro-base Priority: optional Section: translations Installed-Size: 3321 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ro (<< 1:14.04+20140410), language-pack-gnome-ro-base (<< 1:14.04+20140410), language-pack-kde-ro (<< 1:14.04+20140410), language-pack-kde-ro-base (<< 1:14.04+20140410), language-pack-ro (<< 1:14.04+20140410), language-pack-ro-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ro (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ro Conflicts: language-pack-ro (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ro-base/language-pack-ro-base_14.04+20140410_all.deb Size: 1038792 MD5sum: e6ddd3e9e2d1fe77028bc90ea83be9bd SHA1: 165f3fea90729bece2b89342a2d016a6328c3e77 SHA256: a37ded22772d23cf93fec90306926f901533f3b68986c1e21535a83c5a4d0963 Description: translations for language Romanian Description-md5: 8889e6b4d2a003928f1f0b07f5029651 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ru Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ru (<< 1:14.04+20140410), language-pack-gnome-ru-base (<< 1:14.04+20140410), language-pack-kde-ru (<< 1:14.04+20140410), language-pack-kde-ru-base (<< 1:14.04+20140410), language-pack-ru (<< 1:14.04+20140410), language-pack-ru-base Depends: language-pack-ru-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ru/language-pack-ru_14.04+20140410_all.deb Size: 1968 MD5sum: b1415b120e5658af7623c6c860dc302d SHA1: 27fbe745c9ed9372cdb5ce00bcb48ffd09e22ee5 SHA256: d102416486906f3e8ed5f323f7cb85d63f91876620633a5d8eeb35af284fbcea Description: translation updates for language Russian Description-md5: cd093e2891d1268b4a62b984f94669b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, lubuntu-live Package: language-pack-ru-base Priority: optional Section: translations Installed-Size: 10548 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ru (<< 1:14.04+20140410), language-pack-gnome-ru-base (<< 1:14.04+20140410), language-pack-kde-ru (<< 1:14.04+20140410), language-pack-kde-ru-base (<< 1:14.04+20140410), language-pack-ru (<< 1:14.04+20140410), language-pack-ru-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ru (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ru Conflicts: language-pack-ru (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ru-base/language-pack-ru-base_14.04+20140410_all.deb Size: 2583286 MD5sum: b7730f8f275c96c25200d74982e667d3 SHA1: 5cbce5ac6903871cd3a34391fe4b4af64cc71aed SHA256: 338f3e981b8bba4061bb6317a88cb70054005b088582f614442bc8ca0bc020ab Description: translations for language Russian Description-md5: 67ed1fd3b278192ef03b250e781dd666 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, lubuntu-live Package: language-pack-rw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-rw (<< 1:14.04+20140410), language-pack-gnome-rw-base (<< 1:14.04+20140410), language-pack-kde-rw (<< 1:14.04+20140410), language-pack-kde-rw-base (<< 1:14.04+20140410), language-pack-rw (<< 1:14.04+20140410), language-pack-rw-base Depends: language-pack-rw-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-rw/language-pack-rw_14.04+20140410_all.deb Size: 1974 MD5sum: 99a2bf55b677f25cc05528aab9c71b4c SHA1: 850d86d298afd1fb78d293e000847309de212c7e SHA256: bbd9a04a4cc3c2121016885d847522aadb04c9fc9bd6054de162eeeadb84afe6 Description: translation updates for language Kinyarwanda Description-md5: c97828242a30f6d2ee5909bac5f68c93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-rw-base Priority: optional Section: translations Installed-Size: 75 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-rw (<< 1:14.04+20140410), language-pack-gnome-rw-base (<< 1:14.04+20140410), language-pack-kde-rw (<< 1:14.04+20140410), language-pack-kde-rw-base (<< 1:14.04+20140410), language-pack-rw (<< 1:14.04+20140410), language-pack-rw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-rw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-rw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-rw-base/language-pack-rw-base_14.04+20140410_all.deb Size: 8850 MD5sum: 22adc23c82ef965d1a52dee0e705780b SHA1: f09390491ebe1932820f059c640a3a35c8b1d5a1 SHA256: 8b271a5ef593499bdf090453bbeba15d284c7ec75d22c5223117600ac32809ae Description: translations for language Kinyarwanda Description-md5: 1a245f0b9b3a6f946afc7ac7d75b60fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sa (<< 1:14.04+20140410), language-pack-gnome-sa-base (<< 1:14.04+20140410), language-pack-kde-sa (<< 1:14.04+20140410), language-pack-kde-sa-base (<< 1:14.04+20140410), language-pack-sa (<< 1:14.04+20140410), language-pack-sa-base Depends: language-pack-sa-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sa/language-pack-sa_14.04+20140410_all.deb Size: 1984 MD5sum: 1cad9ff823ea6af9d7ca4f5e3e55090c SHA1: 14c79cbff9418393675c17b7b8030c3136f6866f SHA256: b5fa970f90f0d159ee80d8f79f17c96b252d00dc68ec7a9d783368ab0f3c22e8 Description: translation updates for language Sanskrit Description-md5: 29207b0e9c7c66e6ab904fd84a3d9ab0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sa-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sa (<< 1:14.04+20140410), language-pack-gnome-sa-base (<< 1:14.04+20140410), language-pack-kde-sa (<< 1:14.04+20140410), language-pack-kde-sa-base (<< 1:14.04+20140410), language-pack-sa (<< 1:14.04+20140410), language-pack-sa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-sa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sa-base/language-pack-sa-base_14.04+20140410_all.deb Size: 2276 MD5sum: 8ddd1535c7caf4cb98d4b7faa8b5ca6f SHA1: 81c1604cea025052caf5daf6176e27f967adfbc1 SHA256: 0f2e7a089f54eeea4e38f7e6aed4d165dcd64f87d317238a3c2f7e03f756ecf9 Description: translations for language Sanskrit Description-md5: 01f89e63b4b693064112df988668ea51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sc Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sc (<< 1:14.04+20140410), language-pack-gnome-sc-base (<< 1:14.04+20140410), language-pack-kde-sc (<< 1:14.04+20140410), language-pack-kde-sc-base (<< 1:14.04+20140410), language-pack-sc (<< 1:14.04+20140410), language-pack-sc-base Depends: language-pack-sc-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sc/language-pack-sc_14.04+20140410_all.deb Size: 1972 MD5sum: ddf7f6e7c3f1057cbff8861fd61b810d SHA1: cbdcf67bf6a73f37c096e1f65752bdd78473c4d6 SHA256: 857063f5e5c541ea78b93fa7a6d71f537fde57d4ac2317f3a6f474027b0cc001 Description: translation updates for language Sardinian Description-md5: c9c0eb092595f1b123c095dd0eeaf0df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sc-base Priority: optional Section: translations Installed-Size: 75 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sc (<< 1:14.04+20140410), language-pack-gnome-sc-base (<< 1:14.04+20140410), language-pack-kde-sc (<< 1:14.04+20140410), language-pack-kde-sc-base (<< 1:14.04+20140410), language-pack-sc (<< 1:14.04+20140410), language-pack-sc-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sc (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-sc (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sc-base/language-pack-sc-base_14.04+20140410_all.deb Size: 10780 MD5sum: 7753a88f17381c13fcb34b04ae5ca04b SHA1: 3ccb88feb42bcf50874edcdc318e597d77dd2db7 SHA256: 52270392567cd0837b79fd7415932be110751d6a3cc62ac20df2f2e905bcf05c Description: translations for language Sardinian Description-md5: 1a82312bfe2283f71bc34f9dcbfc7edc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sd Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sd (<< 1:14.04+20140410), language-pack-gnome-sd-base (<< 1:14.04+20140410), language-pack-kde-sd (<< 1:14.04+20140410), language-pack-kde-sd-base (<< 1:14.04+20140410), language-pack-sd (<< 1:14.04+20140410), language-pack-sd-base Depends: language-pack-sd-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sd/language-pack-sd_14.04+20140410_all.deb Size: 1984 MD5sum: 7b45931ad62015a5d268ae26280da562 SHA1: ed346ad8417a59640fa8c3fa703f05ae265ab8df SHA256: f21fad127aa60084908c21e6958f81c6bfdb1be107960ae1a391be960c30aba8 Description: translation updates for language Sindhi Description-md5: f94a8f0c7e9135334271d7551fbc3ad9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sd-base Priority: optional Section: translations Installed-Size: 97 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sd (<< 1:14.04+20140410), language-pack-gnome-sd-base (<< 1:14.04+20140410), language-pack-kde-sd (<< 1:14.04+20140410), language-pack-kde-sd-base (<< 1:14.04+20140410), language-pack-sd (<< 1:14.04+20140410), language-pack-sd-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sd (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-sd (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sd-base/language-pack-sd-base_14.04+20140410_all.deb Size: 15704 MD5sum: d668aeb9d91e48a4134551a86b9964e0 SHA1: 553b962346c1dd502ab9183b87ae0fc6c8e1553d SHA256: a573a36d64831d680d4ac706060e2a7bbceebc4c24a986ed82eeadf24ba0cd0a Description: translations for language Sindhi Description-md5: f61edd9219594f9c59a537aa4e8f9cc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-se Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-se (<< 1:14.04+20140410), language-pack-gnome-se-base (<< 1:14.04+20140410), language-pack-kde-se (<< 1:14.04+20140410), language-pack-kde-se-base (<< 1:14.04+20140410), language-pack-se (<< 1:14.04+20140410), language-pack-se-base Depends: language-pack-se-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-se/language-pack-se_14.04+20140410_all.deb Size: 1988 MD5sum: f7eb3e7c1a1e7efd14026c415bb4c33e SHA1: 4130be0ee83861983006e0414985dbac3149c3d9 SHA256: 1d05d532901f3c7e7442496b97a70596f233bad86dee0c81bc946949dd575fc6 Description: translation updates for language Northern Sami Description-md5: ae2b2a287fbb238071d2d2237fa1da97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-se-base Priority: optional Section: translations Installed-Size: 100 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-se (<< 1:14.04+20140410), language-pack-gnome-se-base (<< 1:14.04+20140410), language-pack-kde-se (<< 1:14.04+20140410), language-pack-kde-se-base (<< 1:14.04+20140410), language-pack-se (<< 1:14.04+20140410), language-pack-se-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-se (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-se (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-se-base/language-pack-se-base_14.04+20140410_all.deb Size: 18684 MD5sum: a33b3eda7cafd34da62c36bc4623d562 SHA1: e5f75590a374f8237011402b29db4fffaf09c312 SHA256: 1d9b41e088284cf24d3d1b1310125e8cd43a99ac2039f131e3caded12afcfe54 Description: translations for language Northern Sami Description-md5: 4a22de8f82e5fda7bc1ac5c1a5794a26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-shs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-shs (<< 1:14.04+20140410), language-pack-gnome-shs-base (<< 1:14.04+20140410), language-pack-kde-shs (<< 1:14.04+20140410), language-pack-kde-shs-base (<< 1:14.04+20140410), language-pack-shs (<< 1:14.04+20140410), language-pack-shs-base Depends: language-pack-shs-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-shs/language-pack-shs_14.04+20140410_all.deb Size: 1994 MD5sum: f00e17836df4ee2bb8bfd434aed15cb4 SHA1: a39fb1b0599e178a5aff16fea635b49f013994e7 SHA256: ebe192a7f5e7390524b2817e06d222ae0a8da43bf702245a2cac22a9870eb54f Description: translation updates for language Shuswap Description-md5: 9b020f8e491a3364f0770eeee5a302c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-shs-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-shs (<< 1:14.04+20140410), language-pack-gnome-shs-base (<< 1:14.04+20140410), language-pack-kde-shs (<< 1:14.04+20140410), language-pack-kde-shs-base (<< 1:14.04+20140410), language-pack-shs (<< 1:14.04+20140410), language-pack-shs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-shs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-shs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-shs-base/language-pack-shs-base_14.04+20140410_all.deb Size: 2318 MD5sum: cfe246f4acbde8acd97545a58676ff48 SHA1: 73eb4f588d4cc65f99267e862adfd1e2ada2dde2 SHA256: e832ab9d86f296f829b770d1119c6f18134b4525538c88e721bc1fc04bb32098 Description: translations for language Shuswap Description-md5: ef3e65e6ff59403a11b534691fad3376 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-si Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-si (<< 1:14.04+20140410), language-pack-gnome-si-base (<< 1:14.04+20140410), language-pack-kde-si (<< 1:14.04+20140410), language-pack-kde-si-base (<< 1:14.04+20140410), language-pack-si (<< 1:14.04+20140410), language-pack-si-base Depends: language-pack-si-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-si/language-pack-si_14.04+20140410_all.deb Size: 1964 MD5sum: 046133b9adcf2e26a74b20f677a9a8d2 SHA1: db7c0833ce0207e30221af9bc517273018a2c4ea SHA256: 8c032c4e9cfe022928912d1e88a9742ae78cd4c7cfe9008d7afcc8d7146b8920 Description: translation updates for language Sinhala; Sinhalese Description-md5: 67913d4ae51f73da5cd7fe8f67ae68cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-si-base Priority: optional Section: translations Installed-Size: 219 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-si (<< 1:14.04+20140410), language-pack-gnome-si-base (<< 1:14.04+20140410), language-pack-kde-si (<< 1:14.04+20140410), language-pack-kde-si-base (<< 1:14.04+20140410), language-pack-si (<< 1:14.04+20140410), language-pack-si-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-si (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-si Conflicts: language-pack-si (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-si-base/language-pack-si-base_14.04+20140410_all.deb Size: 46222 MD5sum: 1e70d28816c7c9fd7c9f96bc0f052521 SHA1: bf131644edd22d7c5e97d8aca686e392547160ab SHA256: 0728c27511a589a960b023b966bdf9fc384d459f45d792eb032499fade891548 Description: translations for language Sinhala; Sinhalese Description-md5: 13f18bb3984eb7f7490a7404c7e1fc27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sk (<< 1:14.04+20140410), language-pack-gnome-sk-base (<< 1:14.04+20140410), language-pack-kde-sk (<< 1:14.04+20140410), language-pack-kde-sk-base (<< 1:14.04+20140410), language-pack-sk (<< 1:14.04+20140410), language-pack-sk-base Depends: language-pack-sk-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sk/language-pack-sk_14.04+20140410_all.deb Size: 1996 MD5sum: c326cac64dd1e1cf932a9031c66a142b SHA1: 6eb1a9eaf0f0fdefe77e398d2422783d14a7435b SHA256: ebdc278fbdb5f24587e689a23eab3f034b733d0f6c1facaa94c476c87a477658 Description: translation updates for language Slovak Description-md5: a1e721be17e337b689ba82909703eb86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sk-base Priority: optional Section: translations Installed-Size: 3318 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sk (<< 1:14.04+20140410), language-pack-gnome-sk-base (<< 1:14.04+20140410), language-pack-kde-sk (<< 1:14.04+20140410), language-pack-kde-sk-base (<< 1:14.04+20140410), language-pack-sk (<< 1:14.04+20140410), language-pack-sk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sk Conflicts: language-pack-sk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sk-base/language-pack-sk-base_14.04+20140410_all.deb Size: 1014788 MD5sum: 2fff2075ed2b6ab6e18e8797d25e411b SHA1: d34b419b547ab38e326e17211f982dba7cd4ab08 SHA256: 40afd624e2b840e67a7109f920ad53f8ee07dabf1f3c088d697b933a5167e004 Description: translations for language Slovak Description-md5: fa9be67348c603c233261a1d699ee4ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sl (<< 1:14.04+20140410), language-pack-gnome-sl-base (<< 1:14.04+20140410), language-pack-kde-sl (<< 1:14.04+20140410), language-pack-kde-sl-base (<< 1:14.04+20140410), language-pack-sl (<< 1:14.04+20140410), language-pack-sl-base Depends: language-pack-sl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sl/language-pack-sl_14.04+20140410_all.deb Size: 1968 MD5sum: d2eb0d2115509713ac27056346637c0b SHA1: 89950fd22229867df39ce42ee0f80a0c7b9b73a4 SHA256: 4f438cfdb3eca465afd90b7428fc896debb90d7d5db4681d57b4c2b3bbc9bd9f Description: translation updates for language Slovenian Description-md5: b1747d91b5340c785a6855fc4dea8bdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sl-base Priority: optional Section: translations Installed-Size: 4682 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sl (<< 1:14.04+20140410), language-pack-gnome-sl-base (<< 1:14.04+20140410), language-pack-kde-sl (<< 1:14.04+20140410), language-pack-kde-sl-base (<< 1:14.04+20140410), language-pack-sl (<< 1:14.04+20140410), language-pack-sl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sl Conflicts: language-pack-sl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sl-base/language-pack-sl-base_14.04+20140410_all.deb Size: 1485174 MD5sum: cb73315d9abcb0c45b4e1f1708303799 SHA1: c4cbf95d65252d582dbf67212b8410c42e8a28d0 SHA256: c590b5c6aa5623e9058ccbc3b6799674a7c565761e85014fab79685203a92be3 Description: translations for language Slovenian Description-md5: 542b7bd70d1fd323cda92a7875446e75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-so Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:13.04+20130418 Replaces: language-pack-gnome-so (<< 1:13.04+20130418), language-pack-gnome-so-base (<< 1:13.04+20130418), language-pack-kde-so (<< 1:13.04+20130418), language-pack-kde-so-base (<< 1:13.04+20130418), language-pack-so (<< 1:13.04+20130418), language-pack-so-base Depends: language-pack-so-base (>= 1:13.04+20130418) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-so/language-pack-so_13.04+20130418_all.deb Size: 1952 MD5sum: 65063fa70fc11f63ca9d335f80a0d3b0 SHA1: 835aa8250e14606f6e1d92da093d9db0b731d4ae SHA256: 99b465255d243ab083231e10e4162dc5d4e1501228fd69504a031a86f8531829 Description: translation updates for language Somali Description-md5: 78a07196f1dec552990304420b9a1458 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-so-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:13.04+20130418 Replaces: language-pack-gnome-so (<< 1:13.04+20130418), language-pack-gnome-so-base (<< 1:13.04+20130418), language-pack-kde-so (<< 1:13.04+20130418), language-pack-kde-so-base (<< 1:13.04+20130418), language-pack-so (<< 1:13.04+20130418), language-pack-so-base (<< 1:13.04+20130418) Depends: locales (>= 2.3.6), language-pack-so (>= 1:13.04+20130418) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-so (<< 1:13.04+20130418) Filename: pool/main/l/language-pack-so-base/language-pack-so-base_13.04+20130418_all.deb Size: 2324 MD5sum: b273547be828cdef151fd40ce0eb68c3 SHA1: a2e50164380c39387f7ebe41e1fc3d0ae2943031 SHA256: 594c9c5272c3e1a026a8f22cc9ebabe520bd2f39be1e157970ff01e72e7b85b0 Description: translations for language Somali Description-md5: 7f51e3ccb9dc32f5b36fbd61cfbde719 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sq Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sq (<< 1:14.04+20140410), language-pack-gnome-sq-base (<< 1:14.04+20140410), language-pack-kde-sq (<< 1:14.04+20140410), language-pack-kde-sq-base (<< 1:14.04+20140410), language-pack-sq (<< 1:14.04+20140410), language-pack-sq-base Depends: language-pack-sq-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sq/language-pack-sq_14.04+20140410_all.deb Size: 1988 MD5sum: eddf506bdb338cc6359c0f56cc821789 SHA1: 601eacf62839d055e7b780edab8287855a526b9b SHA256: b03d7e37c901dbea7ce956c924d3aaaf9ffa8ad596bf7e7f482d8a4fa576f0c8 Description: translation updates for language Albanian Description-md5: 65c046608d75d827e60d17bd98616840 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sq-base Priority: optional Section: translations Installed-Size: 2080 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sq (<< 1:14.04+20140410), language-pack-gnome-sq-base (<< 1:14.04+20140410), language-pack-kde-sq (<< 1:14.04+20140410), language-pack-kde-sq-base (<< 1:14.04+20140410), language-pack-sq (<< 1:14.04+20140410), language-pack-sq-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sq (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sq Conflicts: language-pack-sq (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sq-base/language-pack-sq-base_14.04+20140410_all.deb Size: 657142 MD5sum: 0a65ee7033e6f3e316f733fa72d18f99 SHA1: 11dd0aebdc7431e0961d5d1498d99fda0d5ef2f6 SHA256: fe5838541a7c24d7461b474be04445dc713505a97147ec89eeec2e77acbeadc4 Description: translations for language Albanian Description-md5: de1f3ebacd8d0aae60790904e97d7dc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sr (<< 1:14.04+20140410), language-pack-gnome-sr-base (<< 1:14.04+20140410), language-pack-kde-sr (<< 1:14.04+20140410), language-pack-kde-sr-base (<< 1:14.04+20140410), language-pack-sr (<< 1:14.04+20140410), language-pack-sr-base Depends: language-pack-sr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sr/language-pack-sr_14.04+20140410_all.deb Size: 1988 MD5sum: ce41f64a876105f7600d99be94ed8830 SHA1: 8ddaef2355392b7ee09506ef52e3d4169cb182df SHA256: 6011f59838c54494c7a604ec5594015f831de5e5a65ff6bd4f5e90ffde309063 Description: translation updates for language Serbian Description-md5: b8fd6921a9a342c76ce0490ba7305e76 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sr-base Priority: optional Section: translations Installed-Size: 5562 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sr (<< 1:14.04+20140410), language-pack-gnome-sr-base (<< 1:14.04+20140410), language-pack-kde-sr (<< 1:14.04+20140410), language-pack-kde-sr-base (<< 1:14.04+20140410), language-pack-sr (<< 1:14.04+20140410), language-pack-sr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sr Conflicts: language-pack-sr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sr-base/language-pack-sr-base_14.04+20140410_all.deb Size: 1409008 MD5sum: 2b83812ac1f633eb26119fdeca3016cc SHA1: a8b33be164a58ab5203fa8a9df1a252e0757c14e SHA256: 652af69076ddd60fbb506d1db2783b3ffb68e71ceca7c26a5cf82913496cb223 Description: translations for language Serbian Description-md5: 0d70e941c5569ccc3a517fcd3ec3a8f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ss Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-ss (<< 1:12.04+20120417), language-pack-gnome-ss-base (<< 1:12.04+20120417), language-pack-kde-ss (<< 1:12.04+20120417), language-pack-kde-ss-base (<< 1:12.04+20120417), language-pack-ss (<< 1:12.04+20120417), language-pack-ss-base Depends: language-pack-ss-base (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ss/language-pack-ss_12.04+20120417_all.deb Size: 1990 MD5sum: 6f4bb623b4711f0b65049647f31c00e7 SHA1: 49f36c5f852601a90f957e13fa2b243b840a6474 SHA256: 0afb8e2b73a8602631103a3666d8a3326f3ce796bcbae9830dbffbbaa3a7c3a4 Description: translation updates for language Swati Description-md5: 07304703e6d4890e533a4eaaec5eb67b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ss-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-ss (<< 1:12.04+20120417), language-pack-gnome-ss-base (<< 1:12.04+20120417), language-pack-kde-ss (<< 1:12.04+20120417), language-pack-kde-ss-base (<< 1:12.04+20120417), language-pack-ss (<< 1:12.04+20120417), language-pack-ss-base (<< 1:12.04+20120417) Depends: locales (>= 2.3.6), language-pack-ss (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ss (<< 1:12.04+20120417) Filename: pool/main/l/language-pack-ss-base/language-pack-ss-base_12.04+20120417_all.deb Size: 2294 MD5sum: 4217591fd2866bfccdf6a7263d5294d9 SHA1: 097ad6f9c25ecf97a2dea8732da9b4851a4d071d SHA256: 99e7b97dc46456c19d93d46cbf664bad0bce4b7cb44f8a25c7d5b632a62c8a35 Description: translations for language Swati Description-md5: 75396859577a77b8099c47bc36b7e917 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-st Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-st (<< 1:14.04+20140410), language-pack-gnome-st-base (<< 1:14.04+20140410), language-pack-kde-st (<< 1:14.04+20140410), language-pack-kde-st-base (<< 1:14.04+20140410), language-pack-st (<< 1:14.04+20140410), language-pack-st-base Depends: language-pack-st-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-st/language-pack-st_14.04+20140410_all.deb Size: 1978 MD5sum: 637e3ef1ff3588349ebd98ceda40c934 SHA1: 975a927d7967196557f413c2d85754154b1a36b8 SHA256: 80c6fc318ea8817187d0ac32362b59b7f3a7bf03550a9b9d58198482f5e333ea Description: translation updates for language Sotho, Southern Description-md5: 432170d54acbd15deed207506d9056fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-st-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-st (<< 1:14.04+20140410), language-pack-gnome-st-base (<< 1:14.04+20140410), language-pack-kde-st (<< 1:14.04+20140410), language-pack-kde-st-base (<< 1:14.04+20140410), language-pack-st (<< 1:14.04+20140410), language-pack-st-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-st (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-st (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-st-base/language-pack-st-base_14.04+20140410_all.deb Size: 2316 MD5sum: eb619630d253d27d4e45b7ee45dc2e93 SHA1: bc374f2d3cf0c023a9ec9d107b2bf1a197c27d36 SHA256: b33e8dfaf80ea250a3b2a84cd74005b2757c78d68cf3d745f94817e6dad3faf5 Description: translations for language Sotho, Southern Description-md5: fcd076252ae590d0ce48603e5f63112c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sv (<< 1:14.04+20140410), language-pack-gnome-sv-base (<< 1:14.04+20140410), language-pack-kde-sv (<< 1:14.04+20140410), language-pack-kde-sv-base (<< 1:14.04+20140410), language-pack-sv (<< 1:14.04+20140410), language-pack-sv-base Depends: language-pack-sv-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sv/language-pack-sv_14.04+20140410_all.deb Size: 1966 MD5sum: d8ae4250ecd25da9ab58ad50b6ecd699 SHA1: 98c0f6d69ea9f5a63debee320ff3e8646c4cd483 SHA256: daff510873263451f1d7f3a43051c0b6430d1ee9891bb4a248d31c898ccbbe9d Description: translation updates for language Swedish Description-md5: 4dbf209ddea3cc582301e63976d4b356 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-sv-base Priority: optional Section: translations Installed-Size: 7227 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sv (<< 1:14.04+20140410), language-pack-gnome-sv-base (<< 1:14.04+20140410), language-pack-kde-sv (<< 1:14.04+20140410), language-pack-kde-sv-base (<< 1:14.04+20140410), language-pack-sv (<< 1:14.04+20140410), language-pack-sv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sv Conflicts: language-pack-sv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sv-base/language-pack-sv-base_14.04+20140410_all.deb Size: 2201968 MD5sum: c37b96b35351b9c9a4e38c1f55e72028 SHA1: 47e9bb7f4f47e44e87786ae2b72c6f41ca81dd69 SHA256: 34eb3da11e7ad483eb0c42b145e6e8d8fccf60814cf9a62254d62c2880f2deb2 Description: translations for language Swedish Description-md5: 31338056c9d389070cb14776e4f489dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-sw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sw (<< 1:14.04+20140410), language-pack-gnome-sw-base (<< 1:14.04+20140410), language-pack-kde-sw (<< 1:14.04+20140410), language-pack-kde-sw-base (<< 1:14.04+20140410), language-pack-sw (<< 1:14.04+20140410), language-pack-sw-base Depends: language-pack-sw-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sw/language-pack-sw_14.04+20140410_all.deb Size: 1968 MD5sum: 856a8cff33bb9d2679f48c411570bb03 SHA1: 00b0f88d58c1a5867f70dd3c6c57132af63f2ab0 SHA256: e83d9b18b53b2ba348325b8848b953d12ecd5a3730eeb5147ad814d6810f1834 Description: translation updates for language Swahili Description-md5: 2c5465b9342aab609549057d9c1b96eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sw-base Priority: optional Section: translations Installed-Size: 64 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sw (<< 1:14.04+20140410), language-pack-gnome-sw-base (<< 1:14.04+20140410), language-pack-kde-sw (<< 1:14.04+20140410), language-pack-kde-sw-base (<< 1:14.04+20140410), language-pack-sw (<< 1:14.04+20140410), language-pack-sw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sw Conflicts: language-pack-sw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sw-base/language-pack-sw-base_14.04+20140410_all.deb Size: 7170 MD5sum: ab786a49e99478b75562bd9d718b661f SHA1: fdf8a159e6c7b18dd408570d1a46e7850d1c015c SHA256: 297f799f89fa4663dbe62dce477bea08330008f473b1896db0706546cc5bbab7 Description: translations for language Swahili Description-md5: bbe452ddd856c9f34b1d8c2e96f0ab4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ta Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ta (<< 1:14.04+20140410), language-pack-gnome-ta-base (<< 1:14.04+20140410), language-pack-kde-ta (<< 1:14.04+20140410), language-pack-kde-ta-base (<< 1:14.04+20140410), language-pack-ta (<< 1:14.04+20140410), language-pack-ta-base Depends: language-pack-ta-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ta/language-pack-ta_14.04+20140410_all.deb Size: 1990 MD5sum: b32fc6f5c339cf6e0047e345fca88294 SHA1: fe36223f55acf22b3ce32ddcc1cddc118ccabb0a SHA256: ed3105f031b3559a3f7dcb0d486c00a6695cbeef126f73085672d86b181d868a Description: translation updates for language Tamil Description-md5: 8806053a2a2cb360f22ec971454fc79c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ta-base Priority: optional Section: translations Installed-Size: 2394 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ta (<< 1:14.04+20140410), language-pack-gnome-ta-base (<< 1:14.04+20140410), language-pack-kde-ta (<< 1:14.04+20140410), language-pack-kde-ta-base (<< 1:14.04+20140410), language-pack-ta (<< 1:14.04+20140410), language-pack-ta-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ta (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ta Conflicts: language-pack-ta (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ta-base/language-pack-ta-base_14.04+20140410_all.deb Size: 437584 MD5sum: 795e8270e06d566568023cd3d3c0f526 SHA1: e9cd0d21c6c94c5cd9b0923da1bc25c37d9951db SHA256: 9de7b37d1da819709aa1cdfcc54561a1013052071b6eb659729640ef1a45e993 Description: translations for language Tamil Description-md5: e40fddde8d8e33cc3807e4ff0b719e2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-te Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-te (<< 1:14.04+20140410), language-pack-gnome-te-base (<< 1:14.04+20140410), language-pack-kde-te (<< 1:14.04+20140410), language-pack-kde-te-base (<< 1:14.04+20140410), language-pack-te (<< 1:14.04+20140410), language-pack-te-base Depends: language-pack-te-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-te/language-pack-te_14.04+20140410_all.deb Size: 1992 MD5sum: b2bdaab6d0cfb0f0cc04a4fa03b26d8e SHA1: 9e75e3ce1a88759d8978a7c0a9e432cbd8461d2d SHA256: dccf05cf8f3c45fee427535c507b0349f2529b6b12ba51eb382e3c2a3c8ed43b Description: translation updates for language Telugu Description-md5: 1bd9ffcc21f1b8219e3889e3d08b45fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-te-base Priority: optional Section: translations Installed-Size: 2097 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-te (<< 1:14.04+20140410), language-pack-gnome-te-base (<< 1:14.04+20140410), language-pack-kde-te (<< 1:14.04+20140410), language-pack-kde-te-base (<< 1:14.04+20140410), language-pack-te (<< 1:14.04+20140410), language-pack-te-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-te (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-te Conflicts: language-pack-te (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-te-base/language-pack-te-base_14.04+20140410_all.deb Size: 404392 MD5sum: 918b8b2f28fc14e1c53401c4d16ff9a5 SHA1: c662e014a382ae0dd8fc8dd1e271f406f8ce0f1e SHA256: f232c71d2e5e770deaa727451ab3cb45404b9f3c5b460ae5ef7896e70489efa5 Description: translations for language Telugu Description-md5: e39a6b0a53bcbbd383ebbc7c100bf10e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tg (<< 1:14.04+20140410), language-pack-gnome-tg-base (<< 1:14.04+20140410), language-pack-kde-tg (<< 1:14.04+20140410), language-pack-kde-tg-base (<< 1:14.04+20140410), language-pack-tg (<< 1:14.04+20140410), language-pack-tg-base Depends: language-pack-tg-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-tg/language-pack-tg_14.04+20140410_all.deb Size: 1968 MD5sum: 3c7d6b59f6a4a9c84e0b4584635c698f SHA1: a86f96afd800595c871d0b56f19a196f2ae50f0a SHA256: 8174b639121f787c24f748a14359bc071a1542dd63d357952157d293e90d28cf Description: translation updates for language Tajik Description-md5: 743531e7d990fe4031553acad6bc4446 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tg-base Priority: optional Section: translations Installed-Size: 418 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tg (<< 1:14.04+20140410), language-pack-gnome-tg-base (<< 1:14.04+20140410), language-pack-kde-tg (<< 1:14.04+20140410), language-pack-kde-tg-base (<< 1:14.04+20140410), language-pack-tg (<< 1:14.04+20140410), language-pack-tg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-tg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-tg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-tg-base/language-pack-tg-base_14.04+20140410_all.deb Size: 110670 MD5sum: 0b9057a5641a93f0b38fba57b851334d SHA1: 81217ddb96aa726d09681125bb996b667ece7831 SHA256: 902a13a6da376a624cf6c9618ac40975f51465d0710327045817aae52d81bbb6 Description: translations for language Tajik Description-md5: fec26409c467da2ecab75d602330d746 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-th Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-th (<< 1:14.04+20140410), language-pack-gnome-th-base (<< 1:14.04+20140410), language-pack-kde-th (<< 1:14.04+20140410), language-pack-kde-th-base (<< 1:14.04+20140410), language-pack-th (<< 1:14.04+20140410), language-pack-th-base Depends: language-pack-th-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-th/language-pack-th_14.04+20140410_all.deb Size: 1982 MD5sum: bddf39c5903833e0bdd3f4621c6eca87 SHA1: bcad5c761cc0b2a2d1559013149f91ec1ea01526 SHA256: 6fdd0c1759d7cc7f7f7ea81b66624abd7014683649c9da44df1387316dc261d2 Description: translation updates for language Thai Description-md5: eec8937ad930f325d8698415c162aa1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-th-base Priority: optional Section: translations Installed-Size: 766 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-th (<< 1:14.04+20140410), language-pack-gnome-th-base (<< 1:14.04+20140410), language-pack-kde-th (<< 1:14.04+20140410), language-pack-kde-th-base (<< 1:14.04+20140410), language-pack-th (<< 1:14.04+20140410), language-pack-th-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-th (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-th Conflicts: language-pack-th (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-th-base/language-pack-th-base_14.04+20140410_all.deb Size: 155106 MD5sum: 1cef9e42df0976ffee9d0fb5b888e5e0 SHA1: 8e5596cde1947b99926d915df5f89671ef81b115 SHA256: 97829c949c2cd622e373d255fccdc7326437f9920846391a567810feef7bd21e Description: translations for language Thai Description-md5: a49c51a351a1ae67524621ae73d455c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ti Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ti (<< 1:14.04+20140410), language-pack-gnome-ti-base (<< 1:14.04+20140410), language-pack-kde-ti (<< 1:14.04+20140410), language-pack-kde-ti-base (<< 1:14.04+20140410), language-pack-ti (<< 1:14.04+20140410), language-pack-ti-base Depends: language-pack-ti-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ti/language-pack-ti_14.04+20140410_all.deb Size: 1970 MD5sum: 6aa72a9fb30097902d2c490fb699eeb0 SHA1: bc3903dc5490556c7068e138461061bcdac779cd SHA256: a1a1aa78487e3ce0f055dd282e94a441f531b4715314c527089f39edcd836d7c Description: translation updates for language Tigrinya Description-md5: c9fa1d03ce22382a23631a020cb7b322 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ti-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ti (<< 1:14.04+20140410), language-pack-gnome-ti-base (<< 1:14.04+20140410), language-pack-kde-ti (<< 1:14.04+20140410), language-pack-kde-ti-base (<< 1:14.04+20140410), language-pack-ti (<< 1:14.04+20140410), language-pack-ti-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ti (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ti (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ti-base/language-pack-ti-base_14.04+20140410_all.deb Size: 2276 MD5sum: 82c55a3511c372a0717f00ffd83436a3 SHA1: d4b4eb056ebacb1c9e22f1762ec4f5b19c3a58dd SHA256: 992bd148c5ed2345c0852111de573fcf267575dd6541aca44e95295c2b5952f0 Description: translations for language Tigrinya Description-md5: f8a404460737ece587dc48dbdfff872e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tk (<< 1:14.04+20140410), language-pack-gnome-tk-base (<< 1:14.04+20140410), language-pack-kde-tk (<< 1:14.04+20140410), language-pack-kde-tk-base (<< 1:14.04+20140410), language-pack-tk (<< 1:14.04+20140410), language-pack-tk-base Depends: language-pack-tk-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-tk/language-pack-tk_14.04+20140410_all.deb Size: 1996 MD5sum: 84e3c087948cec433d2bc151d6348d46 SHA1: 94f6e4783a9a56cca1a74f37c5cd1e917973476a SHA256: c3b2a485734bf22d7d699adeb227b8016166e81f0e5f6e99dce429a86a5a84f9 Description: translation updates for language Turkmen Description-md5: eb70be9380f5f52e1e9d5742c4448fa9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tk-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tk (<< 1:14.04+20140410), language-pack-gnome-tk-base (<< 1:14.04+20140410), language-pack-kde-tk (<< 1:14.04+20140410), language-pack-kde-tk-base (<< 1:14.04+20140410), language-pack-tk (<< 1:14.04+20140410), language-pack-tk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-tk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-tk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-tk-base/language-pack-tk-base_14.04+20140410_all.deb Size: 2288 MD5sum: 03cc61c200d8145018d7b0a86adffd33 SHA1: 6ceaad22cfead08ad04e34d1cd24fd8808c769ba SHA256: 3a9655b260ef8e794357014eaef954bb079c80352322364b2ec66793c2185415 Description: translations for language Turkmen Description-md5: 7761c85249b1c98808ecedb5a9fb7e13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tl (<< 1:14.04+20140410), language-pack-gnome-tl-base (<< 1:14.04+20140410), language-pack-kde-tl (<< 1:14.04+20140410), language-pack-kde-tl-base (<< 1:14.04+20140410), language-pack-tl (<< 1:14.04+20140410), language-pack-tl-base Depends: language-pack-tl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-tl/language-pack-tl_14.04+20140410_all.deb Size: 1988 MD5sum: 14ba0eec7db05710be3ede6dd52ded29 SHA1: d8b2ba6abafe4ad3e50c4c0f4538135a7e1ae03e SHA256: 9005f5dd5110b1aa592165bb6bc009b6c4461e7ef17a5500e3a65fa34019098a Description: translation updates for language Tagalog Description-md5: 9dd6b9cfcd1ac0b0f33038565350a683 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tl-base Priority: optional Section: translations Installed-Size: 306 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tl (<< 1:14.04+20140410), language-pack-gnome-tl-base (<< 1:14.04+20140410), language-pack-kde-tl (<< 1:14.04+20140410), language-pack-kde-tl-base (<< 1:14.04+20140410), language-pack-tl (<< 1:14.04+20140410), language-pack-tl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-tl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-tl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-tl-base/language-pack-tl-base_14.04+20140410_all.deb Size: 78804 MD5sum: 2b54491840253cfa1f7f5a94baf36582 SHA1: f8e00b31dac1e19b7b2f758e7783cbbaef4e48c5 SHA256: 613eedc68968fbe930eb6a8305cbc700b7404f882cad1ae51e245e2b0a2708db Description: translations for language Tagalog Description-md5: 7ed478d7c2bbcdf1b54562c6b971d6bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tr (<< 1:14.04+20140410), language-pack-gnome-tr-base (<< 1:14.04+20140410), language-pack-kde-tr (<< 1:14.04+20140410), language-pack-kde-tr-base (<< 1:14.04+20140410), language-pack-tr (<< 1:14.04+20140410), language-pack-tr-base Depends: language-pack-tr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-tr/language-pack-tr_14.04+20140410_all.deb Size: 1980 MD5sum: 806c370ae1126116414d63680e6b9117 SHA1: 72cd82bccd82847c9f2a4a1273a7207ecb26a02d SHA256: 48efd16d98e8e14ae32b7dd1826f01414c88aa196c4db88a6ea70313d6add416 Description: translation updates for language Turkish Description-md5: dfefbe4b5c37c26ad9200ad67f24f22f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tr-base Priority: optional Section: translations Installed-Size: 6900 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tr (<< 1:14.04+20140410), language-pack-gnome-tr-base (<< 1:14.04+20140410), language-pack-kde-tr (<< 1:14.04+20140410), language-pack-kde-tr-base (<< 1:14.04+20140410), language-pack-tr (<< 1:14.04+20140410), language-pack-tr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-tr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-tr Conflicts: language-pack-tr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-tr-base/language-pack-tr-base_14.04+20140410_all.deb Size: 2179042 MD5sum: 414c5d62fce9f11eef5d646d48653780 SHA1: 2548cc825d17be9917e0297e18fb7e433f5148a4 SHA256: 5ba15f9e6e748dee991b5687b3046e7f2b7b6e63b38dafc87e8087ecf9e31db1 Description: translations for language Turkish Description-md5: 52118f29dc98ce6760c6c37492106298 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ts Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ts (<< 1:14.04+20140410), language-pack-gnome-ts-base (<< 1:14.04+20140410), language-pack-kde-ts (<< 1:14.04+20140410), language-pack-kde-ts-base (<< 1:14.04+20140410), language-pack-ts (<< 1:14.04+20140410), language-pack-ts-base Depends: language-pack-ts-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ts/language-pack-ts_14.04+20140410_all.deb Size: 1954 MD5sum: ac4f6d792f80ef86e9cbdddc97d0240e SHA1: d3909a3f8dc2fc091550afdf847b9d37954cc1e6 SHA256: baeb5d7bdf1a66a7e84e31e0b81206cc74e83adab96f6535cdec116069b00e49 Description: translation updates for language Tsonga Description-md5: 80af7e3af261456c616a3ed251a6822a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ts-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ts (<< 1:14.04+20140410), language-pack-gnome-ts-base (<< 1:14.04+20140410), language-pack-kde-ts (<< 1:14.04+20140410), language-pack-kde-ts-base (<< 1:14.04+20140410), language-pack-ts (<< 1:14.04+20140410), language-pack-ts-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ts (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ts (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ts-base/language-pack-ts-base_14.04+20140410_all.deb Size: 2286 MD5sum: 8da2691abc292d73cd5a890d7b835faf SHA1: 5cbc2fdb20dc03ef352c7a534e57715cccdc143a SHA256: eee5b92db45422c2a7eed5aa0a0c3b37cedbfa9619ca9b2a8811553dc21b5c64 Description: translations for language Tsonga Description-md5: 759bba521e2db9cad346887c277426e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tt (<< 1:14.04+20140410), language-pack-gnome-tt-base (<< 1:14.04+20140410), language-pack-kde-tt (<< 1:14.04+20140410), language-pack-kde-tt-base (<< 1:14.04+20140410), language-pack-tt (<< 1:14.04+20140410), language-pack-tt-base Depends: language-pack-tt-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-tt/language-pack-tt_14.04+20140410_all.deb Size: 1962 MD5sum: a48afc0a590916d6361470f5649abdec SHA1: f58c00be706c8e8f9415334e513a4c8863adc5ae SHA256: 4943c8c4fc8e0be32795061af7a0b28d746056879a90baddf8302180755a752f Description: translation updates for language Tatar Description-md5: 001ed68d9152610ee94da8d4a32b18b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tt-base Priority: optional Section: translations Installed-Size: 63 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tt (<< 1:14.04+20140410), language-pack-gnome-tt-base (<< 1:14.04+20140410), language-pack-kde-tt (<< 1:14.04+20140410), language-pack-kde-tt-base (<< 1:14.04+20140410), language-pack-tt (<< 1:14.04+20140410), language-pack-tt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-tt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-tt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-tt-base/language-pack-tt-base_14.04+20140410_all.deb Size: 6576 MD5sum: d5352f2b27b3219918b4696e35dabe66 SHA1: 74e2be14c23c0541166aac33fd4b471e34da5dae SHA256: 46d753a31691e2fb0125a6c7f2babfadddd572b62f3741ab32bf8ebcb94902f4 Description: translations for language Tatar Description-md5: 17f1d1de78e155f7dcc311e50f866488 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ug Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ug (<< 1:14.04+20140410), language-pack-gnome-ug-base (<< 1:14.04+20140410), language-pack-kde-ug (<< 1:14.04+20140410), language-pack-kde-ug-base (<< 1:14.04+20140410), language-pack-ug (<< 1:14.04+20140410), language-pack-ug-base Depends: language-pack-ug-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ug/language-pack-ug_14.04+20140410_all.deb Size: 1960 MD5sum: dc7b7cdf0a703b39cd02c6879a34f3f6 SHA1: b9cd7ab8c6fb835a2cc67a9622e1290e7635d87c SHA256: a065322c3565ce5a8f69c3d1303e06a97c88fb130a9bfce651923ce9202b7676 Description: translation updates for language Uighur; Uyghur Description-md5: 98fee795d8737d35feb2278d1100a452 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ug-base Priority: optional Section: translations Installed-Size: 1299 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ug (<< 1:14.04+20140410), language-pack-gnome-ug-base (<< 1:14.04+20140410), language-pack-kde-ug (<< 1:14.04+20140410), language-pack-kde-ug-base (<< 1:14.04+20140410), language-pack-ug (<< 1:14.04+20140410), language-pack-ug-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ug (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ug (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ug-base/language-pack-ug-base_14.04+20140410_all.deb Size: 343722 MD5sum: ed0efb75d4eec4907e55da2b6068c24d SHA1: 1d85a3f11d7fba7845efe3131505a9c5b4a2bc18 SHA256: 80b2c411e4e618b54a5525979545674bd081219a1a1e8578f6100bdfbddaa7e0 Description: translations for language Uighur; Uyghur Description-md5: 7f1890dbe624bdc07b25a22382fc0fe0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-uk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uk (<< 1:14.04+20140410), language-pack-gnome-uk-base (<< 1:14.04+20140410), language-pack-kde-uk (<< 1:14.04+20140410), language-pack-kde-uk-base (<< 1:14.04+20140410), language-pack-uk (<< 1:14.04+20140410), language-pack-uk-base Depends: language-pack-uk-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-uk/language-pack-uk_14.04+20140410_all.deb Size: 1976 MD5sum: b598cde2fb67a38234d66947c6f53b4f SHA1: 4ebab0a2dd5c56d52ccbaa23964f00ef01c0a912 SHA256: 85c710073c82fcf2d745f62899efa7c65b0af39eb7f98ac79cc0ea9b34ed290b Description: translation updates for language Ukrainian Description-md5: b4984ef0be7336d993df2f61982b4595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-uk-base Priority: optional Section: translations Installed-Size: 11880 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uk (<< 1:14.04+20140410), language-pack-gnome-uk-base (<< 1:14.04+20140410), language-pack-kde-uk (<< 1:14.04+20140410), language-pack-kde-uk-base (<< 1:14.04+20140410), language-pack-uk (<< 1:14.04+20140410), language-pack-uk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-uk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-uk Conflicts: language-pack-uk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-uk-base/language-pack-uk-base_14.04+20140410_all.deb Size: 2902656 MD5sum: bca231c7747ccf76a4ce7d497e935068 SHA1: 1c619c927143c58c50b5da8d66591e19bd2278f6 SHA256: 4bbde4f25f78a2ffc672a1ce91329c87ae377291ca7f78dc08131779669b210a Description: translations for language Ukrainian Description-md5: 2afe15affd75b38e2531a951f33d7cb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ur Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ur (<< 1:14.04+20140410), language-pack-gnome-ur-base (<< 1:14.04+20140410), language-pack-kde-ur (<< 1:14.04+20140410), language-pack-kde-ur-base (<< 1:14.04+20140410), language-pack-ur (<< 1:14.04+20140410), language-pack-ur-base Depends: language-pack-ur-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ur/language-pack-ur_14.04+20140410_all.deb Size: 1974 MD5sum: 0780fe8126450fef761c663769a9b88e SHA1: 4f4f185e9fdbe8675d54eae8a07fe7064169a1fc SHA256: 56d2ab8c401b896d94f964aee048b1170843bd91d007093202f45f46f7e034e9 Description: translation updates for language Urdu Description-md5: 469e93f68fdb2f05c5bf98f21b4d2348 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ur-base Priority: optional Section: translations Installed-Size: 313 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ur (<< 1:14.04+20140410), language-pack-gnome-ur-base (<< 1:14.04+20140410), language-pack-kde-ur (<< 1:14.04+20140410), language-pack-kde-ur-base (<< 1:14.04+20140410), language-pack-ur (<< 1:14.04+20140410), language-pack-ur-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ur (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ur (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ur-base/language-pack-ur-base_14.04+20140410_all.deb Size: 79426 MD5sum: aa5d6c400ad62c8011d90cd17eca7e78 SHA1: 213ec6e04fd560eca72e82b934f32a81248da905 SHA256: 8a3e9f9e98e636f1adf7d59d3e877f4cf56b7efc291b7f312e12d577b47d2564 Description: translations for language Urdu Description-md5: 312cf33c8a0e5344fed86ee352ac217d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-uz Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uz (<< 1:14.04+20140410), language-pack-gnome-uz-base (<< 1:14.04+20140410), language-pack-kde-uz (<< 1:14.04+20140410), language-pack-kde-uz-base (<< 1:14.04+20140410), language-pack-uz (<< 1:14.04+20140410), language-pack-uz-base Depends: language-pack-uz-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-uz/language-pack-uz_14.04+20140410_all.deb Size: 1976 MD5sum: 54c071646f99abe2ea9aa009a892bf95 SHA1: 775993ff4f322d1a84dc68bb019511c16a15a37a SHA256: 9ad2565b588307214eff868716a632415dd4905038d9bbf2cd2719e214dee93d Description: translation updates for language Uzbek Description-md5: 78c0868100eb08408b6125a8ece4d131 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-uz-base Priority: optional Section: translations Installed-Size: 161 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uz (<< 1:14.04+20140410), language-pack-gnome-uz-base (<< 1:14.04+20140410), language-pack-kde-uz (<< 1:14.04+20140410), language-pack-kde-uz-base (<< 1:14.04+20140410), language-pack-uz (<< 1:14.04+20140410), language-pack-uz-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-uz (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-uz (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-uz-base/language-pack-uz-base_14.04+20140410_all.deb Size: 33448 MD5sum: 8f36890146eb17cee7b1d20b43d25c06 SHA1: d41545075cf9f2669e6f5f03906bdc5662aa1b24 SHA256: 682d115feddc37b6a28e4465f85f9cef76e262b21f757b555aeb6c3050ba7a38 Description: translations for language Uzbek Description-md5: f899616f0f8a77ee9a7c6c4b39421ea5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ve Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ve (<< 1:14.04+20140410), language-pack-gnome-ve-base (<< 1:14.04+20140410), language-pack-kde-ve (<< 1:14.04+20140410), language-pack-kde-ve-base (<< 1:14.04+20140410), language-pack-ve (<< 1:14.04+20140410), language-pack-ve-base Depends: language-pack-ve-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ve/language-pack-ve_14.04+20140410_all.deb Size: 1972 MD5sum: e64a40a4e3d5c50d62387afbf077a4b9 SHA1: e23ab0b20b0db754cf05f3a2c7f95f101ec1a038 SHA256: b9723f8181dff24ad2f1b2d9c833acda0927fa3215ff423a128ebc6a1da65024 Description: translation updates for language Venda Description-md5: 3f9c63888ed4622136f233bd0ebbda4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ve-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ve (<< 1:14.04+20140410), language-pack-gnome-ve-base (<< 1:14.04+20140410), language-pack-kde-ve (<< 1:14.04+20140410), language-pack-kde-ve-base (<< 1:14.04+20140410), language-pack-ve (<< 1:14.04+20140410), language-pack-ve-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ve (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ve (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ve-base/language-pack-ve-base_14.04+20140410_all.deb Size: 2298 MD5sum: b83da3df82f5cd010c1a25f567b8c64b SHA1: 312a7eb460dc8f0840a2e47deeea1f473996f97e SHA256: f04cdf29c80f83d8da5590f1087912411035d015028dac19b0ca498059283151 Description: translations for language Venda Description-md5: e2215449dcc3f7bbb8d381073676f561 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-vi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-vi (<< 1:14.04+20140410), language-pack-gnome-vi-base (<< 1:14.04+20140410), language-pack-kde-vi (<< 1:14.04+20140410), language-pack-kde-vi-base (<< 1:14.04+20140410), language-pack-vi (<< 1:14.04+20140410), language-pack-vi-base Depends: language-pack-vi-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-vi/language-pack-vi_14.04+20140410_all.deb Size: 1964 MD5sum: 34782a51c4b407f116c0ffd6ca01d179 SHA1: b86d105f754191893e62d73a30f89a810df56ef6 SHA256: db81eaa76fa3759ecb8887f8a01c7784cdda5f3fdfe9f446cd5ce487d3928224 Description: translation updates for language Vietnamese Description-md5: c05ab7d70ecda888c4f951b61413e4c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-vi-base Priority: optional Section: translations Installed-Size: 6989 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-vi (<< 1:14.04+20140410), language-pack-gnome-vi-base (<< 1:14.04+20140410), language-pack-kde-vi (<< 1:14.04+20140410), language-pack-kde-vi-base (<< 1:14.04+20140410), language-pack-vi (<< 1:14.04+20140410), language-pack-vi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-vi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-vi Conflicts: language-pack-vi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-vi-base/language-pack-vi-base_14.04+20140410_all.deb Size: 1994400 MD5sum: 23f739b3f27607ebd5e6a004d47da0a2 SHA1: acc59fb8ede438b9a10f795b128992f5ca347179 SHA256: dcfca8b438593243fad162335a944af92e55c652850248a83743f70069f32290 Description: translations for language Vietnamese Description-md5: fc29673a60b8307b9261c9782712193e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wa (<< 1:14.04+20140410), language-pack-gnome-wa-base (<< 1:14.04+20140410), language-pack-kde-wa (<< 1:14.04+20140410), language-pack-kde-wa-base (<< 1:14.04+20140410), language-pack-wa (<< 1:14.04+20140410), language-pack-wa-base Depends: language-pack-wa-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-wa/language-pack-wa_14.04+20140410_all.deb Size: 1972 MD5sum: 2876bbedf95ba98199a350a970954f2c SHA1: 607caf6b3a19076d75b157be811d30e24c10fe23 SHA256: 6fb23094e3f8a2b0172471014e0ef44a3a89fab6ddcc76282eccbef4f399dddd Description: translation updates for language Walloon Description-md5: 96b9ab96403db99e2299f7a7a9475924 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wa-base Priority: optional Section: translations Installed-Size: 74 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wa (<< 1:14.04+20140410), language-pack-gnome-wa-base (<< 1:14.04+20140410), language-pack-kde-wa (<< 1:14.04+20140410), language-pack-kde-wa-base (<< 1:14.04+20140410), language-pack-wa (<< 1:14.04+20140410), language-pack-wa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-wa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-wa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-wa-base/language-pack-wa-base_14.04+20140410_all.deb Size: 10418 MD5sum: b35b91c0a120d15522e42f071d1aba4c SHA1: a21c147efc5b83ac0485a1e65254b6882bd7ee9c SHA256: c9c5ff278f60c2846e63d1a44e9d6f2ec4ffa1a29d23f5521ca4cba1a47c74e8 Description: translations for language Walloon Description-md5: 455e8c9e339419e03db066b3c895c30d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wae Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wae (<< 1:14.04+20140410), language-pack-gnome-wae-base (<< 1:14.04+20140410), language-pack-kde-wae (<< 1:14.04+20140410), language-pack-kde-wae-base (<< 1:14.04+20140410), language-pack-wae (<< 1:14.04+20140410), language-pack-wae-base Depends: language-pack-wae-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-wae/language-pack-wae_14.04+20140410_all.deb Size: 1998 MD5sum: e7457227dca31227e1ebc97e4e44e24a SHA1: 39782be5f89fe944a53883b19c79e50c1c0365a5 SHA256: 58162aa460e69441756f53f847256023afb22cd026161ce29b14bb304fc1479b Description: translation updates for language Walser Description-md5: 6d9c3fe8c9f0ddbc1d71cb0cc6aca979 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wae-base Priority: optional Section: translations Installed-Size: 57 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wae (<< 1:14.04+20140410), language-pack-gnome-wae-base (<< 1:14.04+20140410), language-pack-kde-wae (<< 1:14.04+20140410), language-pack-kde-wae-base (<< 1:14.04+20140410), language-pack-wae (<< 1:14.04+20140410), language-pack-wae-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-wae (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-wae (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-wae-base/language-pack-wae-base_14.04+20140410_all.deb Size: 3758 MD5sum: 8cccd456421a0f0c2799c9cee72d9372 SHA1: 6c24fe9a9cbef99ed09ef6a683613040bef1bbfc SHA256: cdc630e9588ab8bfde728b436683f82a0618ee76614dfa9c867b2f8f501ef22e Description: translations for language Walser Description-md5: 9dac9b3ac536a3b6ba62907b22cf7733 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wo (<< 1:14.04+20140410), language-pack-gnome-wo-base (<< 1:14.04+20140410), language-pack-kde-wo (<< 1:14.04+20140410), language-pack-kde-wo-base (<< 1:14.04+20140410), language-pack-wo (<< 1:14.04+20140410), language-pack-wo-base Depends: language-pack-wo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-wo/language-pack-wo_14.04+20140410_all.deb Size: 1988 MD5sum: ded5d404d3b9d1ba30c54d786df2cb38 SHA1: 1c6b61e4b84ab3419d68447325e050c545a3ca52 SHA256: 124dd47ddf242e126da0be55b88239e6f8f47c53738c8983f3e84a395d36a852 Description: translation updates for language Wolof Description-md5: 2d3865bfde51cf4c4c2f5344613388b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wo-base Priority: optional Section: translations Installed-Size: 60 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wo (<< 1:14.04+20140410), language-pack-gnome-wo-base (<< 1:14.04+20140410), language-pack-kde-wo (<< 1:14.04+20140410), language-pack-kde-wo-base (<< 1:14.04+20140410), language-pack-wo (<< 1:14.04+20140410), language-pack-wo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-wo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-wo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-wo-base/language-pack-wo-base_14.04+20140410_all.deb Size: 4858 MD5sum: 6b2e22c683ce1096999ce1c41a9c3b32 SHA1: 82df9ea460e45549d91419ea98a384ba82ce2a7d SHA256: 6902a17ad6be6525d9ff3b5df67d6e28eb3d9836282987724426461658d667df Description: translations for language Wolof Description-md5: 6516ee85aa5f5193e08081f09502fd21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-xh Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-xh (<< 1:14.04+20140410), language-pack-gnome-xh-base (<< 1:14.04+20140410), language-pack-kde-xh (<< 1:14.04+20140410), language-pack-kde-xh-base (<< 1:14.04+20140410), language-pack-xh (<< 1:14.04+20140410), language-pack-xh-base Depends: language-pack-xh-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-xh/language-pack-xh_14.04+20140410_all.deb Size: 1974 MD5sum: 51de2efebd22b3abe4a55277bf8a1448 SHA1: bc392b40e6370187c330ff83df79e82ce3368284 SHA256: b3d0a9d5e67af138c38644b530c2cb2c9bb4e05cd6cfe3f7e5be4cae2effa68a Description: translation updates for language Xhosa Description-md5: ed25f787ca09539bd5981188f693a27f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-xh-base Priority: optional Section: translations Installed-Size: 186 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-xh (<< 1:14.04+20140410), language-pack-gnome-xh-base (<< 1:14.04+20140410), language-pack-kde-xh (<< 1:14.04+20140410), language-pack-kde-xh-base (<< 1:14.04+20140410), language-pack-xh (<< 1:14.04+20140410), language-pack-xh-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-xh (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-xh Conflicts: language-pack-xh (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-xh-base/language-pack-xh-base_14.04+20140410_all.deb Size: 48830 MD5sum: 631cfd99722e0aeeff593cd99ca239b7 SHA1: f51dfd422172998cf33b9a04e60d0f3d5c42728b SHA256: eed16fb09384950f25262fd81b5e36ba86a48079e650664592cef9fed516684a Description: translations for language Xhosa Description-md5: 95413a55151aa4dad9558a2d4e9a79d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-yi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yi (<< 1:14.04+20140410), language-pack-gnome-yi-base (<< 1:14.04+20140410), language-pack-kde-yi (<< 1:14.04+20140410), language-pack-kde-yi-base (<< 1:14.04+20140410), language-pack-yi (<< 1:14.04+20140410), language-pack-yi-base Depends: language-pack-yi-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-yi/language-pack-yi_14.04+20140410_all.deb Size: 1980 MD5sum: 76f7525086ae1a9ae6ba6091ee7e1aae SHA1: f732b82590195ec0757f8d37ea06bb4c5f15c732 SHA256: 93489a1caf7493e838ef5e4d10b5fe196892098c93fd63ba52cef2148e810f0f Description: translation updates for language Yiddish Description-md5: 6e11de4f5860eb14f76adcb86ad81922 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-yi-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yi (<< 1:14.04+20140410), language-pack-gnome-yi-base (<< 1:14.04+20140410), language-pack-kde-yi (<< 1:14.04+20140410), language-pack-kde-yi-base (<< 1:14.04+20140410), language-pack-yi (<< 1:14.04+20140410), language-pack-yi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-yi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-yi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-yi-base/language-pack-yi-base_14.04+20140410_all.deb Size: 2310 MD5sum: e2f1107a06c317d39b477a24f49e66e3 SHA1: 98f7af95cdac27f0ae4ffe57b0b4b3ee92300f0b SHA256: 640a85dc50f9bd1f7264059521ac99ce466ad1f9f22d2b3b3e8348525b66c3ea Description: translations for language Yiddish Description-md5: 353f698af4862953549ed8d853bf55b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-yo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yo (<< 1:14.04+20140410), language-pack-gnome-yo-base (<< 1:14.04+20140410), language-pack-kde-yo (<< 1:14.04+20140410), language-pack-kde-yo-base (<< 1:14.04+20140410), language-pack-yo (<< 1:14.04+20140410), language-pack-yo-base Depends: language-pack-yo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-yo/language-pack-yo_14.04+20140410_all.deb Size: 1974 MD5sum: 9bad126c881eaca4aa6af1a9674c91c7 SHA1: 05c58ea460e11a68af9693820d41f0e3d34030fa SHA256: fc10fa550d07857922cdc9ab5801fcc86e7d13da9d9e8634106ff287cb31806a Description: translation updates for language Yoruba Description-md5: cebc4d1e87448efe2569027124c752cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-yo-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yo (<< 1:14.04+20140410), language-pack-gnome-yo-base (<< 1:14.04+20140410), language-pack-kde-yo (<< 1:14.04+20140410), language-pack-kde-yo-base (<< 1:14.04+20140410), language-pack-yo (<< 1:14.04+20140410), language-pack-yo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-yo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-yo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-yo-base/language-pack-yo-base_14.04+20140410_all.deb Size: 2280 MD5sum: 82340bedc75d36f941c1188f1522097d SHA1: fd4c5608fb56ffe0eb350c1b17a326995e5c959e SHA256: 664ef7ceda116f6e0932552f749daf7d6baa35d0ec39db37db4f2ed5d950e9aa Description: translations for language Yoruba Description-md5: d6c0a9797e84c463ea66f0e903b19f57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-zh-hans Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-hans (<< 1:14.04+20140410), language-pack-gnome-zh-hans-base (<< 1:14.04+20140410), language-pack-kde-zh-hans (<< 1:14.04+20140410), language-pack-kde-zh-hans-base (<< 1:14.04+20140410), language-pack-zh (<< 1:9.10), language-pack-zh-hans (<< 1:14.04+20140410), language-pack-zh-hans-base Depends: language-pack-zh-hans-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-zh (<< 1:9.10) Filename: pool/main/l/language-pack-zh-hans/language-pack-zh-hans_14.04+20140410_all.deb Size: 2024 MD5sum: e60930f17a1dee522662c449505afd10 SHA1: cb83ec54e3d88d559738087d8ad8ea978f7296ca SHA256: b293dfc4654fd1fc980aa917b2ca72265e6cdf7f23840445f91972941d7fd3bf Description: translation updates for language Simplified Chinese Description-md5: 964ab477e1a08bec8503df90f7f29cc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-zh-hans-base Priority: optional Section: translations Installed-Size: 6764 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-hans (<< 1:14.04+20140410), language-pack-gnome-zh-hans-base (<< 1:14.04+20140410), language-pack-kde-zh-hans (<< 1:14.04+20140410), language-pack-kde-zh-hans-base (<< 1:14.04+20140410), language-pack-zh-base (<< 1:9.10), language-pack-zh-hans (<< 1:14.04+20140410), language-pack-zh-hans-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-zh-hans (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-zh-hans Conflicts: language-pack-zh-base (<< 1:9.10), language-pack-zh-hans (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-zh-hans-base/language-pack-zh-hans-base_14.04+20140410_all.deb Size: 2145826 MD5sum: 8d79b312c5e87c138da05ff44e90c539 SHA1: d2a5a00000c902344ed4444540f43d7b7b6c1aee SHA256: 8174faa24b1743fb2ab22b39b6654529106f9ba8d2839163df5d79e7bdeca247 Description: translations for language Simplified Chinese Description-md5: 090e3187cf4b4c0881472ca8fbbc69cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-zh-hant Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-hant (<< 1:14.04+20140410), language-pack-gnome-zh-hant-base (<< 1:14.04+20140410), language-pack-kde-zh-hant (<< 1:14.04+20140410), language-pack-kde-zh-hant-base (<< 1:14.04+20140410), language-pack-zh (<< 1:9.10), language-pack-zh-hant (<< 1:14.04+20140410), language-pack-zh-hant-base Depends: language-pack-zh-hant-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-zh (<< 1:9.10) Filename: pool/main/l/language-pack-zh-hant/language-pack-zh-hant_14.04+20140410_all.deb Size: 2028 MD5sum: a96dd4281d7ad419a2f35939ea23cdb4 SHA1: b5cf14dd5253630c580938b5ef9eddd848800b3a SHA256: 59e62f25f61aa7e5d1376fb68dee4ccae3f0baadae7d1d15611f53d03ab6ac28 Description: translation updates for language Traditional Chinese Description-md5: 4e63dbe1bf430bb900a0e6924be90980 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-zh-hant-base Priority: optional Section: translations Installed-Size: 5278 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-hant (<< 1:14.04+20140410), language-pack-gnome-zh-hant-base (<< 1:14.04+20140410), language-pack-kde-zh-hant (<< 1:14.04+20140410), language-pack-kde-zh-hant-base (<< 1:14.04+20140410), language-pack-zh-base (<< 1:9.10), language-pack-zh-hant (<< 1:14.04+20140410), language-pack-zh-hant-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-zh-hant (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-zh-hant Conflicts: language-pack-zh-base (<< 1:9.10), language-pack-zh-hant (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-zh-hant-base/language-pack-zh-hant-base_14.04+20140410_all.deb Size: 1712058 MD5sum: b977ce212e7fffeef9c3eec8cd8b5c59 SHA1: 96f35c9b0907e509e6380e58cbd35210dcad6c0f SHA256: f269f057f91db013c784449412a98de7f5fc6b5a63449632586d6750582216f6 Description: translations for language Traditional Chinese Description-md5: f8e445efc00758ad96a2d1f9f951f23b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-zu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zu (<< 1:14.04+20140410), language-pack-gnome-zu-base (<< 1:14.04+20140410), language-pack-kde-zu (<< 1:14.04+20140410), language-pack-kde-zu-base (<< 1:14.04+20140410), language-pack-zu (<< 1:14.04+20140410), language-pack-zu-base Depends: language-pack-zu-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-zu/language-pack-zu_14.04+20140410_all.deb Size: 1984 MD5sum: e9122d95c051fc56633dfb8c39b844e3 SHA1: ac484df667c7d448e6052a5baf8f0b87b4cee5c4 SHA256: f6cbb3a560455c2d25606dc59dfe414a6b0a9c2dbcfc183cec7ecc85690ba982 Description: translation updates for language Zulu Description-md5: 168afb79ed76475e269c5d27b939c071 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-zu-base Priority: optional Section: translations Installed-Size: 98 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zu (<< 1:14.04+20140410), language-pack-gnome-zu-base (<< 1:14.04+20140410), language-pack-kde-zu (<< 1:14.04+20140410), language-pack-kde-zu-base (<< 1:14.04+20140410), language-pack-zu (<< 1:14.04+20140410), language-pack-zu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-zu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-zu Conflicts: language-pack-zu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-zu-base/language-pack-zu-base_14.04+20140410_all.deb Size: 17028 MD5sum: 524d5f2d02123a36872511e0840192c5 SHA1: 2f10f7a151688e753ec6832c6d12388db775653d SHA256: ca7f16ebe96553e319148cb249d0a0157689fca98fdaaac6691a292807081a64 Description: translations for language Zulu Description-md5: d94e403a84d34de4c8dfd22db4efb654 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-selector-common Priority: standard Section: admin Installed-Size: 2293 Maintainer: Ubuntu Developers Architecture: all Source: language-selector Version: 0.129 Depends: python3, python3:any (>= 3.3.2-2~), iso-codes, python3-apt (>= 0.7.12.0), python3-dbus, dbus, accountsservice (>= 0.6.29-1ubuntu6) Pre-Depends: dpkg (>= 1.15.7.2) Filename: pool/main/l/language-selector/language-selector-common_0.129_all.deb Size: 203394 MD5sum: 563c06b446595727142ba05772dbfc13 SHA1: 6e1b637d7fafe2568788f95a9a44ab5df5bccd23 SHA256: d589c40071dd2cd4306a5746218b582b6754863dc5c51ea057d58f14fb64653f Description: Language selector for Ubuntu Description-md5: 2289b4df765931b87d6dfc592bc87ebc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-live Package: language-selector-gnome Priority: optional Section: admin Installed-Size: 169 Maintainer: Ubuntu Developers Architecture: all Source: language-selector Version: 0.129 Replaces: language-selector (<< 0.17) Depends: language-selector-common (= 0.129), python3, python3:any (>= 3.3.2-2~), python3-gi, gir1.2-gtk-3.0, gir1.2-vte-2.90, python3-apt, aptdaemon (>= 0.40+bzr527), python3-aptdaemon.gtk3widgets, im-config (>= 0.24-1ubuntu2~) Recommends: yelp Conflicts: language-selector (<< 0.17) Filename: pool/main/l/language-selector/language-selector-gnome_0.129_all.deb Size: 18542 MD5sum: 316678e47a1b1e9248e4833f2033b230 SHA1: 9fb78dcbd0a1e1f6bb15a28131db2615382d656a SHA256: 5aa02f224c19c2f11dde44cf551a56ee8bfe79e3b492c47f5e82f70599768638 Description: Language selector for Ubuntu Description-md5: 788d18b75f9a70e3ac7605d12641951d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop Package: laptop-detect Priority: optional Section: utils Installed-Size: 56 Maintainer: Ubuntu Core Developers Original-Maintainer: Otavio Salvador Architecture: amd64 Version: 0.13.7ubuntu2 Depends: dmidecode (>> 2.8-2) Filename: pool/main/l/laptop-detect/laptop-detect_0.13.7ubuntu2_amd64.deb Size: 5608 MD5sum: 0762eb1ae14076638ace46baf061990b SHA1: 8a73ee0cb8970858e7c7e69b7d1508ff2d7e0ac4 SHA256: 4478f63ac6ebd888d0612d1aeb9df7e1e545c43b8aa435bc75e0df71df38a122 Description: attempt to detect a laptop Description-md5: 34713d67b4e15ec22232fa2992ac84bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: latex-beamer Priority: optional Section: tex Installed-Size: 5606 Maintainer: Ubuntu Developers Original-Maintainer: OHURA Makoto Architecture: all Version: 3.24-1 Depends: dpkg (>= 1.14.18), tex-common (>= 4), pgf (>= 1.00-1), latex-xcolor (>= 2.00-1), texlive-latex-base Filename: pool/main/l/latex-beamer/latex-beamer_3.24-1_all.deb Size: 3787886 MD5sum: 6c54bfddda967b89ea7fb53fc6d6e7c3 SHA1: 66848e3dbd4b5cf7e4e28199f99af48c6f2f2132 SHA256: 3263c68762078a3f5e30e8460ca217ce0686bc8cb806c6ae222e14dff92f41bf Description: LaTeX class to produce presentations Description-md5: d2345de1842406c63c25458fb9c962ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: latex-xcolor Priority: optional Section: tex Installed-Size: 723 Maintainer: Ubuntu Developers Original-Maintainer: OHURA Makoto Architecture: all Version: 2.11-1.1 Depends: texlive-latex-recommended, dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/l/latex-xcolor/latex-xcolor_2.11-1.1_all.deb Size: 602582 MD5sum: f5f44b7625b3ae1acefb541906c9a24a SHA1: 9023ee79b811b1f4f2cf9666cf2d3da15a2475c1 SHA256: 9733d26703b4a65774994c7420c82ebe1dd95d744d6c5462dba288050cd408c6 Description: Easy driver-independent TeX class for color Description-md5: 627f963a445a9e604f4714a47daebdb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: latex2html Priority: optional Section: tex Installed-Size: 5174 Maintainer: Ubuntu Developers Original-Maintainer: Roland Stigge Architecture: all Version: 2008-debian1-10 Depends: dpkg (>= 1.14.18), tex-common (>= 3), perl, netpbm (>= 2:9.20), ghostscript-x, texlive-base-bin, texlive-latex-recommended, texlive-fonts-recommended, texlive-latex-extra, perl-doc Filename: pool/main/l/latex2html/latex2html_2008-debian1-10_all.deb Size: 2073610 MD5sum: a9b4ce11fbc5ba127836fcf353618718 SHA1: 7666e32fb39efde17027b80de9c3681c7a8ef838 SHA256: e1edf9d6d92eb388c88db6a3d9d71e94e291129a3f387c11380fb798e9210122 Description: LaTeX to HTML translator Description-md5: c54cf0081b5e186a36ce7c53ee9032c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lbdb Priority: optional Section: mail Installed-Size: 279 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: amd64 Version: 0.38ubuntu1 Depends: libc6 (>= 2.14), libvformat0 (>= 1.13-6~), perl Suggests: mutt | mutt-ja, procmail, finger, abook, libpalm-perl, libnet-ldap-perl Filename: pool/main/l/lbdb/lbdb_0.38ubuntu1_amd64.deb Size: 79484 MD5sum: cdbce02bbf4dc9cd530cc9c5c0010f1c SHA1: 9469d5f057600ea99144ee4a62c400679087dd55 SHA256: bb58eacec6be27fcba374275f74ac2c64e3c9e127ec8ce4698ab33f333c2e4fc Description: Little Brother's DataBase for the mutt mail reader Homepage: http://www.spinnaker.de/lbdb/ Description-md5: bf7ab45b569ec588663f9de6e4526d93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldap-auth-client Priority: extra Section: admin Installed-Size: 26 Maintainer: Rick Clark Architecture: all Version: 0.5.3 Depends: libpam-ldap, libnss-ldap Conflicts: libnss-ldap (<< 255-1ubuntu1), libpam-ldap (<< 184-1ubuntu1) Filename: pool/main/l/ldap-auth-client/ldap-auth-client_0.5.3_all.deb Size: 2760 MD5sum: 7dec34fdaae760ca763360012276464f SHA1: 2f5fda907538a8dfba90a4e815369626db526a8a SHA256: aa2f525209c933f5d72eb80ab0aac401fca6b43e36f36777912176c65fa416c2 Description: meta-package for LDAP authentication Description-md5: 50269fd0d6d0f7be7b9b925af000b0dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldap-auth-config Priority: extra Section: admin Installed-Size: 65 Maintainer: Rick Clark Architecture: all Source: ldap-auth-client Version: 0.5.3 Depends: debconf (>= 0.5) | debconf-2.0, sed (>= 3.95), ldap-auth-client Pre-Depends: auth-client-config Filename: pool/main/l/ldap-auth-client/ldap-auth-config_0.5.3_all.deb Size: 9434 MD5sum: ed0ba47060c1ea46b5e6af5e5b349e81 SHA1: 7ce15a894fa33bcf1afa8cd12c12b376ab9c1cbe SHA256: 860dff81332327c937eb940580deab4271a8f6eba6f883ec2f22d47e7d63476b Description: Config package for LDAP authentication Multi-Arch: foreign Description-md5: 890b066be5bf7e92c9cb54c68d4f89c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldap-utils Priority: optional Section: net Installed-Size: 679 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: amd64 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Replaces: openldap-utils, openldapd, slapd (<< 2.2.23-0.pre6) Provides: ldap-client, openldap-utils Depends: libc6 (>= 2.14), libldap-2.4-2 (= 2.4.31-1+nmu2ubuntu8), libsasl2-2 (>= 2.1.24) Recommends: libsasl2-modules Conflicts: ldap-client, openldap-utils, umich-ldap-utils Filename: pool/main/o/openldap/ldap-utils_2.4.31-1+nmu2ubuntu8_amd64.deb Size: 123498 MD5sum: 874c7791708d3b6b936c84750e1bfa1c SHA1: bc1450b2d916a7ade3ad1e1edafabcbe3aa7af10 SHA256: 09f3d2c453320f12d6d44d1e3a62418b62c497ebf8ae244ce5bdec9fe5f5a9bf Description: OpenLDAP utilities Homepage: http://www.openldap.org/ Description-md5: f5d300156245ae8fa5972cf30bf60206 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-dvd-live Package: ldm Priority: optional Section: misc Installed-Size: 572 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: amd64 Version: 2:2.2.13-1 Replaces: ltsp-client-core (<= 5.0.40~bzr20080121-2) Depends: libc6 (>= 2.15), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.22.0), libgtk2.0-0 (>= 2.18.0), libx11-6, libxext6, openssh-client | ssh, xserver-xorg | xserver, gettext-base, python, procps Recommends: netcat-traditional | netcat, gtk2-engines, dmz-cursor-theme Breaks: ltsp-client-core (<= 5.0.40~bzr20080121-2) Filename: pool/main/l/ldm/ldm_2.2.13-1_amd64.deb Size: 100292 MD5sum: fa40b38601f62fab4fb5b884415d99bb SHA1: d414fea25b81bb1c3da040293c19ab66d34f31f4 SHA256: 959ded7fd601bbee527d6fd9a948022205c928b9f8451e5e7238c8468a49e251 Description: LTSP display manager Homepage: http://ltsp.org/ Description-md5: ea42de5b1b58281bf77ec88afc3ce73b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldm-server Priority: optional Section: misc Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: all Source: ldm Version: 2:2.2.13-1 Replaces: ltsp-server (<= 5.1.62) Depends: python, x11-common, openssh-server, update-inetd, openbsd-inetd | inet-superserver Recommends: ltspfs, gnome-session | x-session-manager | x-window-manager, libasound2-plugins, xauth Breaks: ltsp-server (<= 5.1.62) Filename: pool/main/l/ldm/ldm-server_2.2.13-1_all.deb Size: 8750 MD5sum: 3db5f61fe38d3862bc9ebe8a65860770 SHA1: 0b9d716b0d2f9975aae064833d20122b72692a25 SHA256: b8a9a4bb8991b477a6b2d2882049de8c7f53308636c31dee663603878e5d4ffc Description: server components for LTSP display manager Homepage: http://ltsp.org/ Description-md5: 83333381bb32c5d4cb09d85c656d4009 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldm-ubuntu-theme Priority: optional Section: misc Installed-Size: 410 Maintainer: Ubuntu Core Developers Architecture: all Source: ldm-ubuntu-themes Version: 2:2.0.47 Provides: ldm-themes Depends: human-theme, ldm (>= 2:2.0.6-1ubuntu1), ttf-ubuntu-font-family Conflicts: ldm-ubuntu-themes (<= 2:2.0.40.1) Filename: pool/main/l/ldm-ubuntu-themes/ldm-ubuntu-theme_2.0.47_all.deb Size: 349698 MD5sum: 5f50ee76d22c0c54eabe45af13ee60e3 SHA1: 71842e05d2d39397c37df21685fafdc2781dc580 SHA256: 0efc28d934181b1e290fe9a063f14cd17c156d8367b95669f7cc7fa907973f28 Description: Ubuntu theme for the LTSP Display Manager Description-md5: 2facb1227f5099161294dac67bad23bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldp-docbook-xsl Priority: optional Section: text Installed-Size: 168 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: ldp-docbook-stylesheets Version: 0.0.20040321-2build1 Depends: docbook-xsl Filename: pool/main/l/ldp-docbook-stylesheets/ldp-docbook-xsl_0.0.20040321-2build1_all.deb Size: 29422 MD5sum: a3d16eb14a29c4b5997dbeaef2143954 SHA1: 9f0f0e89af302141828449916f464dfac9aecf81 SHA256: a183541e07d54db8cdacf6069616e53345cd99d0951e1ef711e7c45129fe04f7 Description: The Linux Documentation Project's XSL stylesheets Description-md5: f299ed5f0e3625ba8a45dcc75f6c232e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ledit Priority: optional Section: editors Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: all Version: 2.03-2build1 Provides: readline-editor Depends: ocaml-base-nox-4.01.0 Filename: pool/main/l/ledit/ledit_2.03-2build1_all.deb Size: 33808 MD5sum: 35e97efedd1a0b19a5f03bfb8a3f1d0f SHA1: c60443c2724c84f2a6894487ff9f176c3ad8f00b SHA256: 273b2289f24af6f81fb30f6058c5dea1adb4cbbe3656f50c6f7b38b57569a782 Description: line editor for interactive programs Homepage: http://cristal.inria.fr/~ddr/ledit/ Description-md5: 1f10287a364948723289d1e9c2700025 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: less Priority: important Section: text Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 458-2 Depends: libc6 (>= 2.14), libtinfo5, debianutils (>= 1.8) Filename: pool/main/l/less/less_458-2_amd64.deb Size: 116354 MD5sum: abb4cbfbfecc92b21c7fda9118c3da6b SHA1: ca5daa0bec8c7f07f74243522c6da79982ee0c07 SHA256: 4148888d871443b0bc67ed92a585f5d9abef726ea3ec2e9cf5fe79ebc9acd2f1 Description: pager program similar to more Multi-Arch: foreign Homepage: http://www.greenwoodsoftware.com/less/ Description-md5: a2c2d2eff1fb9762b71faf7540cf8dce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: leveldb-doc Priority: optional Section: doc Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: all Source: leveldb Version: 1.15.0-2 Filename: pool/main/l/leveldb/leveldb-doc_1.15.0-2_all.deb Size: 30670 MD5sum: e53fe1b497dae7d5d14eba516e5c01f8 SHA1: 81776ef39ccb40e9db46a44c6258959d1f590c9a SHA256: 30bd121da5c3c4059bc4d9a0ef718727b64e1748b1f1c861be6124ecbb9650e9 Description: LevelDB documentation Homepage: http://code.google.com/p/leveldb/ Description-md5: 06fa5885fbd2bea65afac7d42b4775a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lftp Priority: optional Section: net Installed-Size: 1176 Maintainer: Ubuntu Developers Original-Maintainer: Noël Köthe Architecture: amd64 Version: 4.4.13-1 Depends: libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libgnutls26 (>= 2.12.17-0), libreadline6 (>= 6.0), libtinfo5, zlib1g (>= 1:1.1.4), netbase Filename: pool/main/l/lftp/lftp_4.4.13-1_amd64.deb Size: 421564 MD5sum: 7a266bd68fa209e0ed01594f2151a3e7 SHA1: d1783a01a0851e54a589019243d240cd20c08cb4 SHA256: 3a0846cc1fb15faedd99259da586069e41fffe9b7010dfc73986a917b5ef2ca0 Description: Sophisticated command-line FTP/HTTP client programs Homepage: http://lftp.yar.ru/ Description-md5: c47b6714677978e167da4cdd38e54a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lib32asan0 Priority: extra Section: libs Installed-Size: 216 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gcc1 (>= 1:4.1.1), libc6-i386 (>= 2.4) Filename: pool/main/g/gcc-4.8/lib32asan0_4.8.2-19ubuntu1_amd64.deb Size: 64182 MD5sum: 1b062877ad86e90a8ad5e3d371ca99c7 SHA1: 28b87546bde19d8c8bee05f15dbe35340bfee9e6 SHA256: 40c66de7140a17e3c98a68938e23e2755037507a9133201869d89f4e43396bd1 Description: AddressSanitizer -- a fast memory error detector (32bit) Homepage: http://gcc.gnu.org/ Description-md5: 21a3c42c398c2fff43ee9449787256e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32asan0-dbg Priority: extra Section: debug Installed-Size: 793 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32asan0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib32asan0-dbg_4.8.2-19ubuntu1_amd64.deb Size: 222336 MD5sum: 40e37cbf42a8c7cc1d9756f5ce2e07de SHA1: 3ec7db50a5dfca0ffe89c0f8cc295e7034ec17cf SHA256: f35898e85428e1d33d555b1b6882cd92d31115154367cae5a2370c59bda5b81b Description: AddressSanitizer -- a fast memory error detector (32 bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: bde72eaadd150a362fa2a39d6da988d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32atomic1 Priority: optional Section: libs Installed-Size: 49 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-i386 (>= 2.4) Filename: pool/main/g/gcc-4.8/lib32atomic1_4.8.2-19ubuntu1_amd64.deb Size: 8228 MD5sum: c10c14d6e737a6804e92b8bf1d244a59 SHA1: d7bf2835101a483b802157b055690f2ce5bc4560 SHA256: 5c2311075704bf5cb9fcf9654f3bf51ad2eb95eb5448960121e240399ed67ff4 Description: support library providing __atomic built-in functions (32bit) Homepage: http://gcc.gnu.org/ Description-md5: 4b9cd7e59833a54167ec848b4c3d9e48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32atomic1-dbg Priority: extra Section: debug Installed-Size: 112 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32atomic1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib32atomic1-dbg_4.8.2-19ubuntu1_amd64.deb Size: 14678 MD5sum: 98963a91111c201fb9e0e7caffdf17d3 SHA1: 77d6a1c5afb4f0a4384875cf6b2a065375394410 SHA256: b93fb45cf0ec60c874ed99702dbe1008bbe7a83f9afbe6cf9dd663b24fd9290d Description: support library providing __atomic built-in functions (32 bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 865d3c01985d4c1517371f8f439ecadf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32bz2-1.0 Priority: optional Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: bzip2 Version: 1.0.6-5 Replaces: ia32-libs Pre-Depends: libc6-i386 (>= 2.9-18) Filename: pool/main/b/bzip2/lib32bz2-1.0_1.0.6-5_amd64.deb Size: 33248 MD5sum: 2a9cdfbabd95f159c4e0fdc0f7fe3e4f SHA1: 11ceaeb627cd304651707ae06b08ac8aae4b150b SHA256: 27bde23b8f2f1af0fafdbefdc919e859d78345a85a373a85f115cc592abc8ee3 Description: high-quality block-sorting file compressor library - 32bit runtime Homepage: http://www.bzip.org/ Description-md5: 0082787efd6a5f4e77edd00ab4f76450 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32bz2-dev Priority: optional Section: libdevel Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: bzip2 Version: 1.0.6-5 Replaces: ia32-libs-dev Depends: lib32bz2-1.0 (= 1.0.6-5), libbz2-dev (= 1.0.6-5), libc6-dev-i386 Filename: pool/main/b/bzip2/lib32bz2-dev_1.0.6-5_amd64.deb Size: 29854 MD5sum: 106f5bf5837a130cb2dd440d5c261c09 SHA1: 62c7b94d0d0964c5bbc3f11884f9728e91f621d6 SHA256: 84bb33b1cb6a0dae9ae9b92a184470988e71ec8091f30c0773af90c27a74752c Description: high-quality block-sorting file compressor library - 32bit development Homepage: http://www.bzip.org/ Description-md5: fd2c184fb25c736c14aae192990ce096 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32gcc-4.7-dev Priority: optional Section: libdevel Installed-Size: 4188 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gcc-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib32gcc1 (>= 1:4.7.3-12ubuntu1), libx32gcc1 (>= 1:4.7.3-12ubuntu1), lib32gomp1 (>= 4.7.3-12ubuntu1), libx32gomp1 (>= 4.7.3-12ubuntu1), lib32itm1 (>= 4.7.3-12ubuntu1), libx32itm1 (>= 4.7.3-12ubuntu1), lib32quadmath0 (>= 4.7.3-12ubuntu1), libx32quadmath0 (>= 4.7.3-12ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.7/lib32gcc-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 1563066 MD5sum: 44ff2555cee965cfe77bd66a34b727a0 SHA1: d20edd9af6e1e9f57e3369bb2590c419e688266c SHA256: 6bdc6aaddd16dfe4fa22f76b7d919054ad07f9831af70e5a3513ab525f541a3d Description: GCC support library (32 bit development files) Homepage: http://gcc.gnu.org/ Description-md5: 50201ee0230693f6a9313820d5854393 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32gcc-4.8-dev Priority: optional Section: libdevel Installed-Size: 4656 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gcc1 (>= 1:4.8.2-19ubuntu1), libx32gcc1 (>= 1:4.8.2-19ubuntu1), lib32gomp1 (>= 4.8.2-19ubuntu1), libx32gomp1 (>= 4.8.2-19ubuntu1), lib32itm1 (>= 4.8.2-19ubuntu1), libx32itm1 (>= 4.8.2-19ubuntu1), lib32atomic1 (>= 4.8.2-19ubuntu1), libx32atomic1 (>= 4.8.2-19ubuntu1), lib32asan0 (>= 4.8.2-19ubuntu1), libx32asan0 (>= 4.8.2-19ubuntu1), lib32quadmath0 (>= 4.8.2-19ubuntu1), libx32quadmath0 (>= 4.8.2-19ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8/lib32gcc-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 1684168 MD5sum: 09a5c3f550ecd21d85a63d8303d40857 SHA1: 53fa46f4094b2c74bcd00e01abf5b46c16e6989d SHA256: 5b8327f81de6e465a4985d4e4514a85f0aa5e2665eef35f8b795676c38066ab0 Description: GCC support library (32 bit development files) Homepage: http://gcc.gnu.org/ Description-md5: 50201ee0230693f6a9313820d5854393 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32gcc1 Priority: extra Section: libs Installed-Size: 140 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libc6-i386 (>= 2.2.4) Filename: pool/main/g/gccgo-4.9/lib32gcc1_4.9-20140406-0ubuntu1_amd64.deb Size: 47628 MD5sum: 4b8dcdff0fcc2751ba9e3deab6ff17b4 SHA1: 4b6b493f9640bc003c109258bdd03ad1704f5427 SHA256: 0e44054a14c414474eeabb1646c18f3153cbc74aa51acf25ba8de16db4e08f50 Description: GCC support library (32 bit Version) Homepage: http://gcc.gnu.org/ Description-md5: a31c67d540f86442c895f2663cb4d5c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32gcc1-dbg Priority: extra Section: debug Installed-Size: 384 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), lib32gcc1 (= 1:4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/lib32gcc1-dbg_4.9-20140406-0ubuntu1_amd64.deb Size: 84000 MD5sum: 82e66e4815e8a5dd27e3b52122b06301 SHA1: d42dd72e93ab2ee21e30e6941703086f56af00fe SHA256: 2e6c43c36c1654f7f50b245eb89502c50813f32d482768b7b03056b152d37bf7 Description: GCC support library (debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: d2281f8d5a2b7dae7c362df43affcb03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32gfortran-4.7-dev Priority: optional Section: libdevel Installed-Size: 1894 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gfortran-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib32gfortran3 (>= 4.7.3-12ubuntu1) Breaks: gfortran-4.7-multilib (<< 4.7.2-10) Filename: pool/main/g/gcc-4.7/lib32gfortran-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 250548 MD5sum: f78fee7ff8b959ba52c4fa83ee134576 SHA1: 41dac75bbcb46a489421b2af5484809d7f48104c SHA256: d88418779301ce94189234e2464902f3fcaada59c817e6ff8ecc40c217fada3b Description: Runtime library for GNU Fortran applications (32bit development files) Homepage: http://gcc.gnu.org/ Description-md5: 6b37f3090548ca719a28233db2276849 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32gfortran-4.8-dev Priority: optional Section: libdevel Installed-Size: 1891 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gcc-4.8-dev (= 4.8.2-19ubuntu1), lib32gfortran3 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib32gfortran-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 243160 MD5sum: 1f8acb7ae6e5c28b5b8a54e19b0a7531 SHA1: 7d07cda0747f3e7aec8d0e7585f5a38da4f61672 SHA256: bc42cf29d7cd6eeca0412df28834bd92caccb94bf3cac7e8523474d0e0603b99 Description: Runtime library for GNU Fortran applications (32bit development files) Homepage: http://gcc.gnu.org/ Description-md5: 6b37f3090548ca719a28233db2276849 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32gfortran3 Priority: optional Section: libs Installed-Size: 1081 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gcc1 (>= 1:4.4.0), lib32quadmath0 (>= 4.6), libc6-i386 (>= 2.17) Filename: pool/main/g/gcc-4.8/lib32gfortran3_4.8.2-19ubuntu1_amd64.deb Size: 225714 MD5sum: c644f0b5c5d4638a1ccfe3d4d8c81d07 SHA1: 945671a468c56360ee43b6b117a6700218968e24 SHA256: 337a43e93a57412e8c41b1d4600255972eeb455ed99f0ef37ceb2777fa745be5 Description: Runtime library for GNU Fortran applications (32bit) Homepage: http://gcc.gnu.org/ Description-md5: 6b1141cbf03c78b07b329d00c2e7823f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32gfortran3-dbg Priority: extra Section: debug Installed-Size: 2884 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gfortran3 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib32gfortran3-dbg_4.8.2-19ubuntu1_amd64.deb Size: 507674 MD5sum: a3c6706fcf4f60b969b6f791dc929980 SHA1: 64ed4279b1f8c4cf1161305995a0c4ea81231f70 SHA256: 2985fbd7400caa0e62e3b2f52e0630a8cea90907d6e07d2a4ed094a34b6c54ad Description: Runtime library for GNU Fortran applications (32 bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: f1c6c70ede14acca0d8908ffcb0e809d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32go4 Priority: optional Section: libs Installed-Size: 10274 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: lib32go3 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gcc1 (>= 1:4.1.1), libc6-i386 (>= 2.10) Filename: pool/main/g/gcc-4.8/lib32go4_4.8.2-19ubuntu1_amd64.deb Size: 2227502 MD5sum: abd2d3df82935204f7ad800216797078 SHA1: ea17a08e38095f7300fd659b4d01ac9f49cb6f03 SHA256: 055d2ed482f1052d68304ada493347f8fdec9394534ba1d58336bd5fe683c12a Description: Runtime library for GNU Go applications (32bit) Homepage: http://gcc.gnu.org/ Description-md5: 7174520aedfeba49e54b8c36f55b7e95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32go4-dbg Priority: extra Section: debug Installed-Size: 8414 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32go4 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib32go4-dbg_4.8.2-19ubuntu1_amd64.deb Size: 2286776 MD5sum: 7619b623faa3bbbbe03d9d1845249025 SHA1: 3bc21bd3683316a9aff75987d2f1ae3f84f95df5 SHA256: 6425709aeb8dbf0f07cc2f19eff359a0a44bbef18dc14b126f4b7ffd938c25b9 Description: Runtime library for GNU Go applications (32 bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 72c228be8582558b16673761bbe2726f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32go5 Priority: optional Section: libs Installed-Size: 11644 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Replaces: lib32go3 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), lib32gcc1 (>= 1:4.1.1), libc6-i386 (>= 2.10) Filename: pool/main/g/gccgo-4.9/lib32go5_4.9-20140406-0ubuntu1_amd64.deb Size: 2584680 MD5sum: c4d1fbe6b306eb89746fda3b9a4cf39d SHA1: ea09fc602e67e5df3f1b1a39831c6cad6c60af72 SHA256: c372bb1f1a70898a3241e293cc2adf100a8d6685921640c35857afc93991221d Description: Runtime library for GNU Go applications (32bit) Homepage: http://gcc.gnu.org/ Description-md5: 7174520aedfeba49e54b8c36f55b7e95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Package: lib32go5-dbg Priority: extra Section: debug Installed-Size: 6942 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), lib32go5 (= 4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/lib32go5-dbg_4.9-20140406-0ubuntu1_amd64.deb Size: 1774414 MD5sum: 5a4a66a1568e7762efe4a16f26c1d350 SHA1: 6153dc729c2fd268f65aa98e0befc29e05bf0f4f SHA256: a939c8474f674d4bec8746b7c51e371c3d998191228d97d3078ac314ae745f31 Description: Runtime library for GNU Go applications (32 bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 72c228be8582558b16673761bbe2726f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Package: lib32gomp1 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-i386 (>= 2.17) Filename: pool/main/g/gcc-4.8/lib32gomp1_4.8.2-19ubuntu1_amd64.deb Size: 24824 MD5sum: 74ae7a70cf297eb240e2dd92049d0d8e SHA1: 6ae49d4d587b26e59986c359b48a09e3d1fe9157 SHA256: 0cbb51d7bd7a55366874e74e3f18f545df6c19b6ff9fd430a78b96fcf7196331 Description: GCC OpenMP (GOMP) support library (32bit) Homepage: http://gcc.gnu.org/ Description-md5: e631a6bc5701a04082ff06d4907faecf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32gomp1-dbg Priority: extra Section: debug Installed-Size: 232 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gomp1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib32gomp1-dbg_4.8.2-19ubuntu1_amd64.deb Size: 56380 MD5sum: 856f3beaa057051dd6e5d1f8d9d826a7 SHA1: 82599d455076a1d8a22ec609257bbe8cca223d0d SHA256: a93eddfa9c5b41f17b8bfb28f5e0384de07bacaf5d16d93bc5c1ca6f2319a856 Description: GCC OpenMP (GOMP) support library (32 bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 91ff2112f352a83cd9b7528de9b7a7c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32itm1 Priority: optional Section: libs Installed-Size: 143 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-i386 (>= 2.3.4) Filename: pool/main/g/gcc-4.8/lib32itm1_4.8.2-19ubuntu1_amd64.deb Size: 28466 MD5sum: c7940b54efcb35f690a8d35b571a489e SHA1: db527cf17d65fd46d563f2f5d5ccf1613683e569 SHA256: 678eb9e0b4cd9dd63d20beac053fb7bbabc269cbdb4b292f95e938fa21058895 Description: GNU Transactional Memory Library (32bit) Homepage: http://gcc.gnu.org/ Description-md5: dab7174f3ba5f3317b7d12b57522f05a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32itm1-dbg Priority: extra Section: debug Installed-Size: 856 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32itm1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib32itm1-dbg_4.8.2-19ubuntu1_amd64.deb Size: 177834 MD5sum: a2fac8ff3f122202554ed0f8b64f26cb SHA1: b02d3d790cfbf83e7a6f2937a816ec201da92961 SHA256: 8ec249cdf20da91675f7d1004d6a69b50277457976507453ae62aa1759de555f Description: GNU Transactional Memory Library (32 bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 7e27c82a201c45d900c2bb92b43713b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32ncurses5 Priority: optional Section: libs Installed-Size: 280 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: ia32-libs (<< 1.10) Depends: lib32tinfo5 (= 5.9+20140118-1ubuntu1), libc6-i386 (>= 2.4) Filename: pool/main/n/ncurses/lib32ncurses5_5.9+20140118-1ubuntu1_amd64.deb Size: 92936 MD5sum: d8a30ea1d9de18e02fa61bace310e156 SHA1: 513c61c31994a8f446be7280b73dac5970b48a9f SHA256: 19de292d57ec43468f0889660a77a4143aeffaf0ef9a06ccfe479aa0ebafe830 Description: shared libraries for terminal handling (32-bit) Homepage: http://invisible-island.net/ncurses/ Description-md5: 8c6342a7f12cb0debbe6158b1b61a805 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32ncurses5-dev Priority: optional Section: libdevel Installed-Size: 546 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: lib32tinfo5 (= 5.9+20140118-1ubuntu1), lib32ncurses5 (= 5.9+20140118-1ubuntu1), lib32tinfo-dev (= 5.9+20140118-1ubuntu1), libncurses5-dev (= 5.9+20140118-1ubuntu1), lib32c-dev Suggests: ncurses-doc Filename: pool/main/n/ncurses/lib32ncurses5-dev_5.9+20140118-1ubuntu1_amd64.deb Size: 116684 MD5sum: c98b228abc51d292f8bab59d18d9da46 SHA1: 39ed9c0b14f4bfc003ae86a29053f5bc692926dc SHA256: de983063b0df4b0ff4588695e863afaa46ff7fcf1a54d5390784412bedf09164 Description: developer's libraries for ncurses (32-bit) Homepage: http://invisible-island.net/ncurses/ Description-md5: bac3e7f3ca63651fa01fb109ba48a2bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32ncursesw5 Priority: optional Section: libs Installed-Size: 370 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: lib32tinfo5 (= 5.9+20140118-1ubuntu1), libc6-i386 (>= 2.4) Filename: pool/main/n/ncurses/lib32ncursesw5_5.9+20140118-1ubuntu1_amd64.deb Size: 121890 MD5sum: 7ca6a7b7febaeeb03d2f91e1e66097d3 SHA1: f1cf185defe5f82b8eb1d87fdf647d7d4184da75 SHA256: 6a171ba53cb49d5f0851814f8a941379baf32de003b869e0134ae545438f6048 Description: shared libraries for terminal handling (wide character support) (32-bit) Homepage: http://invisible-island.net/ncurses/ Description-md5: 1128887e431e21c11b633fc3998f93db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32ncursesw5-dev Priority: optional Section: libdevel Installed-Size: 654 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: lib32tinfo5 (= 5.9+20140118-1ubuntu1), lib32ncursesw5 (= 5.9+20140118-1ubuntu1), lib32tinfo-dev (= 5.9+20140118-1ubuntu1), libncursesw5-dev (= 5.9+20140118-1ubuntu1), lib32c-dev Suggests: ncurses-doc Filename: pool/main/n/ncurses/lib32ncursesw5-dev_5.9+20140118-1ubuntu1_amd64.deb Size: 145772 MD5sum: 069e7823afe7e3bbf3591e6ec707eace SHA1: 779e867adc430eb9661ba2da6b71666bd1a09dde SHA256: 8b76e9ad8e9ae889f7902f1bc4da73a0c960955a3e64dfc6c3fbaf9f2530a2fb Description: developer's libraries for ncursesw (32-bit) Homepage: http://invisible-island.net/ncurses/ Description-md5: e1c250be1f872d6666773e1110cb1a4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32objc-4.7-dev Priority: optional Section: libdevel Installed-Size: 1644 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gobjc-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib32gcc-4.7-dev (= 4.7.3-12ubuntu1), lib32objc4 (>= 4.7.3-12ubuntu1) Filename: pool/main/g/gcc-4.7/lib32objc-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 336548 MD5sum: 892a96b1f64d256be55b47d7c4cf6b8a SHA1: 1036ce65df0432a559d1918671d67fac0a50e407 SHA256: 799a1eace51be780b512069f9260de856ec2d695805f08f896cd315dca2f6f13 Description: Runtime library for GNU Objective-C applications (32bit development files) Homepage: http://gcc.gnu.org/ Description-md5: 4563909f76273e1eff5ff297d7d93981 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32objc-4.8-dev Priority: optional Section: libdevel Installed-Size: 1847 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gcc-4.8-dev (= 4.8.2-19ubuntu1), lib32objc4 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib32objc-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 343476 MD5sum: 0df4f2b16e69a047fdceb09bc4c15362 SHA1: cd6ee049743bfe307d1bd8254d9ea097398cba1a SHA256: 6d91621fe7b8a33eaefdd931154dbf780bf6338957a097e8990f7ac63e7d80c3 Description: Runtime library for GNU Objective-C applications (32bit development files) Homepage: http://gcc.gnu.org/ Description-md5: 4563909f76273e1eff5ff297d7d93981 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32objc4 Priority: optional Section: libs Installed-Size: 410 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gcc1 (>= 1:4.1.1), libc6-i386 (>= 2.11) Filename: pool/main/g/gcc-4.8/lib32objc4_4.8.2-19ubuntu1_amd64.deb Size: 109100 MD5sum: e29504022ca88c28b07794320fcf6a71 SHA1: 253674216313d4b651195cffe44bb221c7b11bb9 SHA256: 60ace669764dfa2683b303508ebe7f8fa64c90a99f92dfc1f5755b62d5d80b0e Description: Runtime library for GNU Objective-C applications (32bit) Homepage: http://gcc.gnu.org/ Description-md5: cdc9d0be22d98fa7275d3376afaddcc0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32objc4-dbg Priority: extra Section: debug Installed-Size: 804 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32objc4 (= 4.8.2-19ubuntu1), lib32gcc1-dbg (>= 1:4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib32objc4-dbg_4.8.2-19ubuntu1_amd64.deb Size: 205566 MD5sum: a2f335b852d7845bfdb61a55136e2051 SHA1: 4a94c06ce463072a77516f6efb8105feac3e8151 SHA256: b1eb2fb916fa113f2cc89b3f3a61a9473197adda05328dd8c0c0d0dea5e07393 Description: Runtime library for GNU Objective-C applications (32 bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 06d620c114d0d3329b9b2be2112a0894 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32quadmath0 Priority: optional Section: libs Installed-Size: 513 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-i386 (>= 2.10) Filename: pool/main/g/gcc-4.8/lib32quadmath0_4.8.2-19ubuntu1_amd64.deb Size: 186498 MD5sum: 9368dc996eeb48b23da7a915887b2f6b SHA1: 352fc07be87758563b05f3efbab70b015b4f8de7 SHA256: 015bc78bee7cbaf943b3fcf42f34e520a2fc466dbe70d7f01ca17a9053da697d Description: GCC Quad-Precision Math Library (32bit) Homepage: http://gcc.gnu.org/ Description-md5: d7a03dac94565e412ed600a16f543d54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32quadmath0-dbg Priority: extra Section: debug Installed-Size: 591 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32quadmath0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib32quadmath0-dbg_4.8.2-19ubuntu1_amd64.deb Size: 155172 MD5sum: df272d1b9b953add66d5467408b3d1b7 SHA1: f01afbaacfdf05dbcb34f5f186c823b4d85a0f8c SHA256: 874ff37aea074cf3cd8cceb46d00a4e217a1e641436149f36059054b6e4baf08 Description: GCC Quad-Precision Math Library (32 bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 2408724947bd37356dc923703c9b320e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32readline-gplv2-dev Priority: extra Section: libdevel Installed-Size: 369 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: readline5 Version: 5.2+dfsg-2 Replaces: lib32readline5-dev Depends: lib32readline5 (= 5.2+dfsg-2), lib32tinfo-dev, libc6-dev-i386 Conflicts: lib32readline-dev, lib32readline5-dev Filename: pool/main/r/readline5/lib32readline-gplv2-dev_5.2+dfsg-2_amd64.deb Size: 132120 MD5sum: 8d995f36193229c92661284d8ea75093 SHA1: e04095d3dd50a2fc9b58d2c1f56cb867c3748216 SHA256: ba37803a71cfa5ae41ca64e9c28705213094a383215f3e9538b9dad428fd7445 Description: GNU readline and history libraries, development files (32-bit) Description-md5: 668df0fb60b54c6018797f8b7e97a1eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32readline5 Priority: optional Section: libs Installed-Size: 307 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: readline5 Version: 5.2+dfsg-2 Depends: readline-common, lib32tinfo5, libc6-i386 (>= 2.15) Filename: pool/main/r/readline5/lib32readline5_5.2+dfsg-2_amd64.deb Size: 122464 MD5sum: f72c9fb5077f57f46fb77061b900644c SHA1: 50c81863ba5152cf021ef9fe1b9d34de1949f6cc SHA256: 60ebcf38d7e0ed5360a50d0f50918c3b7df794d3a8d4828b92f76eed7183a38b Description: GNU readline and history libraries, run-time libraries (32-bit) Description-md5: 4803b78bfa952422311277cc70d77bea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32readline6 Priority: optional Section: libs Installed-Size: 352 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: readline6 Version: 6.3-4ubuntu2 Depends: readline-common, lib32tinfo5, libc6-i386 (>= 2.15) Filename: pool/main/r/readline6/lib32readline6_6.3-4ubuntu2_amd64.deb Size: 108100 MD5sum: 1e9732d7279d94b171217e9373aded5b SHA1: 572b445e25391fbc561dfc6162f4357bcca61093 SHA256: c0a8ace71d07df878e87a2a10d408abb874e8817034bbcf5fb214c682d094f37 Description: GNU readline and history libraries, run-time libraries (32-bit) Description-md5: 4803b78bfa952422311277cc70d77bea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32readline6-dev Priority: optional Section: libdevel Installed-Size: 418 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: readline6 Version: 6.3-4ubuntu2 Provides: lib32readline-dev Depends: lib32readline6 (= 6.3-4ubuntu2), lib32tinfo-dev, libc6-dev-i386 Conflicts: lib32readline-dev, lib32readline-gplv2-dev Filename: pool/main/r/readline6/lib32readline6-dev_6.3-4ubuntu2_amd64.deb Size: 103082 MD5sum: 44524dbdc787b4c029e64d512b468480 SHA1: 9a76ac0a5c43763f8b9ba269b2e10d49f9720652 SHA256: 87dccdfa11942fd1ecddf1414e0ad139223b7976aba6a69e3ff4b361b76a4981 Description: GNU readline and history libraries, development files (32-bit) Description-md5: 668df0fb60b54c6018797f8b7e97a1eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32stdc++-4.8-dev Priority: optional Section: libdevel Installed-Size: 4989 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gcc-4.8-dev (= 4.8.2-19ubuntu1), lib32stdc++6 (>= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib32stdc++-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 320794 MD5sum: caae0c9077d02bf91de6d436ac5901a5 SHA1: 542db6fe87874a879d9e1e258062ca84e0bc8318 SHA256: 96a699ca00392d8240a603382d9c2e3eee58ba63075c44f71c3346039d8231cd Description: GNU Standard C++ Library v3 (development files) Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32stdc++6 Priority: extra Section: libs Installed-Size: 1149 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gcc1 (>= 1:4.1.1), libc6-i386 (>= 2.17) Filename: pool/main/g/gcc-4.8/lib32stdc++6_4.8.2-19ubuntu1_amd64.deb Size: 260670 MD5sum: d6d135fee19690e1d32d834673fe7f3d SHA1: 0daf3685ab1a9fbf8802cf72f953ff809cd9f949 SHA256: aade3310a88d8f381ec6bb39e7976248d1a0449ca94dd01ed12091a6b026c7cf Description: GNU Standard C++ Library v3 (32 bit Version) Homepage: http://gcc.gnu.org/ Description-md5: 2124b81bef171d19a7c047c58ae7058f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32stdc++6-4.7-dbg Priority: extra Section: debug Installed-Size: 16678 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib32stdc++6 (>= 4.7.3-12ubuntu1), libstdc++6-4.7-dev (= 4.7.3-12ubuntu1), lib32gcc1-dbg (>= 1:4.7.3-12ubuntu1), lib32gcc1 (>= 1:4.1.1), libc6-i386 (>= 2.4) Conflicts: lib32stdc++6-4.0-dbg, lib32stdc++6-4.1-dbg, lib32stdc++6-4.2-dbg, lib32stdc++6-4.3-dbg, lib32stdc++6-4.4-dbg, lib32stdc++6-4.5-dbg, lib32stdc++6-4.6-dbg, lib32stdc++6-dbg Filename: pool/main/g/gcc-4.7/lib32stdc++6-4.7-dbg_4.7.3-12ubuntu1_amd64.deb Size: 2537744 MD5sum: 83c4e4c970ef905192dd7e924940931a SHA1: 8d6ec327e604078c2e1bbbd678108b05b9fa50f3 SHA256: 6b32e01f23f14f7b8f4826da69dbac7772077a9e288479fc4ee2606d453e862c Description: GNU Standard C++ Library v3 (debugging files) Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32stdc++6-4.7-dev Priority: optional Section: libdevel Installed-Size: 4894 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: g++-4.7-multilib (<< 4.7.2-10), libstdc++6-4.7-dev (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib32gcc-4.7-dev (= 4.7.3-12ubuntu1), lib32stdc++6 (>= 4.7.3-12ubuntu1), libstdc++6-4.7-dev (= 4.7.3-12ubuntu1) Breaks: g++-4.7-multilib (<< 4.7.2-10), libstdc++6-4.7-dev (<< 4.7.2-10) Filename: pool/main/g/gcc-4.7/lib32stdc++6-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 314260 MD5sum: 8f7c27693cb496df858397f6d5130ca5 SHA1: df784dcb0676240383fbff31957ba4ac9584abcc SHA256: 6c3eecd78ae2bc4db0031381237884b1a748c4597ef2fd8970ee8cf57ae7ee80 Description: GNU Standard C++ Library v3 (development files) Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32stdc++6-4.8-dbg Priority: extra Section: debug Installed-Size: 20590 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32stdc++6 (>= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1), lib32gcc1-dbg (>= 1:4.8.2-19ubuntu1), lib32gcc1 (>= 1:4.1.1), libc6-i386 (>= 2.17) Conflicts: lib32stdc++6-4.0-dbg, lib32stdc++6-4.1-dbg, lib32stdc++6-4.2-dbg, lib32stdc++6-4.3-dbg, lib32stdc++6-4.4-dbg, lib32stdc++6-4.5-dbg, lib32stdc++6-4.6-dbg, lib32stdc++6-4.7-dbg, lib32stdc++6-dbg Filename: pool/main/g/gcc-4.8/lib32stdc++6-4.8-dbg_4.8.2-19ubuntu1_amd64.deb Size: 3554548 MD5sum: 0b180607345e69122d24d6e6ac57c732 SHA1: 0e3803a977d6e1a6b3bd69ca98d4a083925a6af1 SHA256: 54e69872ed165cb6acc2ec752e4e413332ce5d92d93f64c136e455cb7b26c217 Description: GNU Standard C++ Library v3 (debugging files) Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32tinfo-dev Priority: optional Section: libdevel Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: lib32ncurses5-dev (<< 5.9-3), lib32tinfo5-dev Depends: lib32tinfo5 (= 5.9+20140118-1ubuntu1), lib32c-dev Breaks: lib32ncurses5-dev (<< 5.9-3) Filename: pool/main/n/ncurses/lib32tinfo-dev_5.9+20140118-1ubuntu1_amd64.deb Size: 69116 MD5sum: 227d3888c0922ae1a1dd2cc2b39ccbb3 SHA1: 9b7f899af1e60377eec2ecb9fa4e76840005b845 SHA256: 91730694ad6a139f003a60f8303c3209f21dcc7dc775e0793715f872fc26f548 Description: developer's library for the low-level terminfo library (32-bit) Homepage: http://invisible-island.net/ncurses/ Description-md5: 08e20ee82af6ae3c80f602841e0d3ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32tinfo5 Priority: optional Section: libs Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: lib32ncurses5 (<< 5.9-3) Depends: libc6-i386 (>= 2.16) Breaks: lib32ncurses5 (<< 5.9-3) Filename: pool/main/n/ncurses/lib32tinfo5_5.9+20140118-1ubuntu1_amd64.deb Size: 70272 MD5sum: b4587a8c9cdd974df71632bce71ebad5 SHA1: 7f06ddaf7cb71f1f058b34fb31f1ff092067bb21 SHA256: 6090d3c540a6366b09f8598a2dc6c93dc17e816e1f7fe8409e4f85cf0252ef50 Description: shared low-level terminfo library for terminal handling (32-bit) Homepage: http://invisible-island.net/ncurses/ Description-md5: 66317228486310575adb7d0605bca630 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32z1 Priority: optional Section: libs Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: amd64 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Replaces: ia32-libs (<< 1.5) Depends: libc6-i386 (>= 2.4) Conflicts: libc6-i386 (<= 2.9-18) Filename: pool/main/z/zlib/lib32z1_1.2.8.dfsg-1ubuntu1_amd64.deb Size: 57542 MD5sum: dd7de71a868ea17281d1e47f869e83d0 SHA1: e43dd48f870f91702b9873f35aaf63385b8d32c4 SHA256: a273c61b6e5bbe0b4bbe8eecc500048d3959bda5103f6d765e1f28db788b58af Description: compression library - 32 bit runtime Homepage: http://zlib.net/ Description-md5: 8844cb824b8b6f7b621a350ef76f732a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib32z1-dev Priority: optional Section: libdevel Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: amd64 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Replaces: ia32-libs-dev (<< 1.5) Provides: lib32z-dev Depends: lib32z1 (= 1:1.2.8.dfsg-1ubuntu1), zlib1g-dev (= 1:1.2.8.dfsg-1ubuntu1), lib32c-dev Conflicts: libc6-i386 (<= 2.9-18) Filename: pool/main/z/zlib/lib32z1-dev_1.2.8.dfsg-1ubuntu1_amd64.deb Size: 58004 MD5sum: c0180be11437e70b4d3ebcca6455e163 SHA1: 174e607f147a8b00558027ccada65ac927562dfd SHA256: 6b6204a18f2f6049fb2946f69370aaa0d51d15318a52ccbd4b150929d9b189ee Description: compression library - 32 bit development Homepage: http://zlib.net/ Description-md5: f70b0dae15f4c85146a5ba6b6aa76610 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64asan0-powerpc-cross Priority: extra Section: devel Installed-Size: 266 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), lib64gcc1-powerpc-cross, libc6-ppc64-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64asan0-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 62646 MD5sum: b1e2b05437197ce249f0e34fbd171844 SHA1: 76c3af1a6f9a828b8c24efa381ad519e2511d09e SHA256: 7f9c70f344812e3be6cfea50f6dd8d4be21b1f6c5b2d27832bc7dc51617390a2 Description: AddressSanitizer -- a fast memory error detector (64bit) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 1a9f659ca4439e2038933f842e164011 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64atomic1-powerpc-cross Priority: extra Section: devel Installed-Size: 69 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-ppc64-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64atomic1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 8284 MD5sum: 9882334a86f2b431d3122da3ef8a2247 SHA1: 6ed057925e9e51a02cb355fde080ccf79b93a412 SHA256: 87b18e3fdb8b66b8d3ee7b55d42603934c684f604e52eb4eee8f82c075e1c913 Description: support library providing __atomic built-in functions (64bit) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: dcde910e366c584abcb0cd438bd4f06e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64gcc-4.8-dev-powerpc-cross Priority: optional Section: libdevel Installed-Size: 1661 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), lib64gcc1-powerpc-cross (>= 1:4.8.2-16ubuntu3cross0.11), lib64gomp1-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), lib64atomic1-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), lib64asan0-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11) Recommends: libc6-dev-powerpc-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64gcc-4.8-dev-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 247242 MD5sum: 7776e3c6d96cfcab074a3d4be8ea10e3 SHA1: 317a2e06c433f6534e3f543703885f2eec5cae8f SHA256: b040249c3333cfb22c8919a409f40a43e8da8b9dbd0e18ce3905302cc19d6fbb Description: GCC support library (64bit development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 44d3aaff7c21b9d5950416cabd2035a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64gcc1-powerpc-cross Priority: extra Section: devel Installed-Size: 119 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 1:4.8.2-16ubuntu3cross0.11 Provides: lib64gcc1-powerpc-dcv1 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-ppc64-powerpc-cross (>= 2.18) Conflicts: libgcc1-powerpc-cross (<= 1:3.3-0pre9) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64gcc1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 28506 MD5sum: 76e992bd50b952a961aac323416692a5 SHA1: 1370028c16294d12942b00492a6edbecfa45b41d SHA256: 9f9ef78cb342bd6bad2f45d1cd982a3da71867a12c4c90c56c6ac1bf4d570c5a Description: GCC support library (64bit) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 3bf79ce9852504418b0dfc9b851b45eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64gomp1-powerpc-cross Priority: extra Section: devel Installed-Size: 108 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-ppc64-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64gomp1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 22024 MD5sum: 554d8685f70cb376578b483a938c81a3 SHA1: 979250ba702d2405a92fb18ad7552d139b6cea34 SHA256: 342caf05153deb08f1f09cecabcf1e98e05364edb911bae3d78ad4dbcc38e1ad Description: GCC OpenMP (GOMP) support library (64bit) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: a0950cb11ce700192ac4d8252bba5f9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64stdc++-4.8-dev-powerpc-cross Priority: extra Section: devel Installed-Size: 7394 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), lib64gcc-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11), lib64stdc++6-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libstdc++-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64stdc++-4.8-dev-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 319848 MD5sum: 1dfc45eda5f4823dd5a023ea2168964a SHA1: 2c8ade3c5a41020f283f0940f153cb9bf090a4b3 SHA256: 4d1f53fa007897d60d2916cb13b50794c5cb996edbc023362acb2aa24b9bd8b5 Description: GNU Standard C++ Library v3 (development files) (powerpc) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 9fad388828b4fa14ecd808a58b88704b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64stdc++6-powerpc-cross Priority: extra Section: devel Installed-Size: 1530 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Provides: lib64stdc++6-powerpc-dcv1 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), lib64gcc1-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libc6-ppc64-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64stdc++6-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 252674 MD5sum: 739fe3b5413b42d8503dc077d17100d5 SHA1: 14e7e863ef75f9cfdf5a12ee1cbd69c0f7d19c60 SHA256: ea67e717ffd101c4c7db2498f20d5dec393aed026d40235b33092e8b49faef40 Description: GNU Standard C++ Library v3 (64bit) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 0d9878cc5a1368affffc14c4004138ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaa1 Priority: optional Section: libs Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Gergely Nagy Architecture: amd64 Source: aalib Version: 1.4p5-41 Replaces: aalib1 Provides: aalib1 Depends: libc6 (>= 2.15), libgpm2 (>= 1.20.4), libncurses5 (>= 5.5-5~), libslang2 (>= 2.2.4), libtinfo5, libx11-6 Pre-Depends: multiarch-support Filename: pool/main/a/aalib/libaa1_1.4p5-41_amd64.deb Size: 54774 MD5sum: 689b5f395db5517cc96719f65b8a7289 SHA1: 7b28daabe80f3cf429868131b66e2da3122e7e6d SHA256: 763ebc3b2cf057f805863d0611584af4a06b9bc8ffc0a1461bff5ceb5f444b26 Description: ASCII art library Multi-Arch: same Homepage: http://aa-project.sourceforge.net/aalib/ Description-md5: e2907f5353392e24d8f1f2a5e56005ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libaa1-dbg Priority: extra Section: libs Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Gergely Nagy Architecture: amd64 Source: aalib Version: 1.4p5-41 Depends: libaa1 (= 1.4p5-41) Filename: pool/main/a/aalib/libaa1-dbg_1.4p5-41_amd64.deb Size: 108810 MD5sum: d3f072d2563d781faac8a328a59435f2 SHA1: ceca2639ef61d15d895c42b7f9b12586ec2cf7ab SHA256: c4230ec2e0e7a04b8e32865c6be46e80f9187d53e3e9dd262a60a1e5869bf265 Description: ASCII art library, debugging symbols Multi-Arch: same Homepage: http://aa-project.sourceforge.net/aalib/ Description-md5: 76947bc97a610d93762196ee9d41bc3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaa1-dev Priority: optional Section: libdevel Installed-Size: 392 Maintainer: Ubuntu Developers Original-Maintainer: Gergely Nagy Architecture: amd64 Source: aalib Version: 1.4p5-41 Replaces: aalib1-dev Depends: libaa1 (= 1.4p5-41), libx11-dev, libslang2-dev, libncurses5-dev Conflicts: aalib1-dev Filename: pool/main/a/aalib/libaa1-dev_1.4p5-41_amd64.deb Size: 145778 MD5sum: 111a1b019f8b81dbb74c16b4e387f5aa SHA1: 7b796ac63563391e3de5867c080fdfd63522064e SHA256: 7ec919938fc5cf3deae2875ddc47e58ca4f1fc77d0f3576ebc8e9a13ea21b728 Description: ASCII art library, development kit Homepage: http://aa-project.sourceforge.net/aalib/ Description-md5: 79d999bcaca61f08c24bfa21e8c81ce2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaal-dev Priority: optional Section: libdevel Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Felix Zielcke Architecture: amd64 Source: libaal Version: 1.0.5-6 Depends: libc6-dev | libc-dev Breaks: libreiser4-dev (<< 1.0.7-3) Filename: pool/main/liba/libaal/libaal-dev_1.0.5-6_amd64.deb Size: 28118 MD5sum: e806393a2a109d3f0a55121678a3267a SHA1: 310af61f50cbfbf0c7c65d342581ee0f1691ce23 SHA256: 9803502f3e7f46712eb9322817cfb390a2de877e1060529217a562721ac441b3 Description: Reiser4's application abstraction library: Development files Homepage: http://sourceforge.net/projects/reiser4/ Description-md5: 51836a2ec851d7d89347baeca39945c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccount-plugin-1.0-0 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: gnome-control-center-signon Version: 0.1.7~+14.04.20140211.2-0ubuntu4 Depends: libaccounts-glib0 (>= 1.5), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libsignon-glib1 (>= 1.8), signond Recommends: unity-control-center-signon Filename: pool/main/g/gnome-control-center-signon/libaccount-plugin-1.0-0_0.1.7~+14.04.20140211.2-0ubuntu4_amd64.deb Size: 16154 MD5sum: ca294d5d3f23b7d5ba3c0d38e3addd50 SHA1: 661b7f21cfe0c64b816f31951e65262867204b7a SHA256: 95d76d08d4d5f30afd61a4a0a0b886ccf5ba31715ca133846d7b9e8bd70a13ab Description: libaccount-plugin for Unity Control Center Homepage: https://launchpad.net/online-accounts-gnome-control-center Description-md5: 44d7283d153c93a3029c4ed8c484c707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libaccount-plugin-1.0-dev Priority: optional Section: libdevel Installed-Size: 120 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: gnome-control-center-signon Version: 0.1.7~+14.04.20140211.2-0ubuntu4 Depends: gir1.2-accountplugin-1.0, libaccount-plugin-1.0-0 (= 0.1.7~+14.04.20140211.2-0ubuntu4), libglib2.0-dev, libgtk-3-dev, libaccounts-glib-dev (>= 1.7), libsignon-glib-dev (>= 1.8) Filename: pool/main/g/gnome-control-center-signon/libaccount-plugin-1.0-dev_0.1.7~+14.04.20140211.2-0ubuntu4_amd64.deb Size: 8442 MD5sum: beb50af0776f95016f769c3e53fd3537 SHA1: 11cd1bd4fa41c61c35fcc536af6f839877a535a3 SHA256: 8eef6d29b2cd02631d7ec1b8e1e98caea266fb1cff922f3ffe7fb8b1d2740377 Description: libaccount-plugin for Unity Control Center - devel Homepage: https://launchpad.net/online-accounts-gnome-control-center Description-md5: 6004044a8b47bc8ad3d74da0eb75fa79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccount-plugin-1.0-doc Priority: optional Section: doc Installed-Size: 174 Maintainer: Ubuntu Desktop Team Architecture: all Source: gnome-control-center-signon Version: 0.1.7~+14.04.20140211.2-0ubuntu4 Filename: pool/main/g/gnome-control-center-signon/libaccount-plugin-1.0-doc_0.1.7~+14.04.20140211.2-0ubuntu4_all.deb Size: 16442 MD5sum: ed2c46c089b3601bc396818679349b41 SHA1: d4f57307cabcc56b99a031fac88550150fe0be68 SHA256: b7cba2fc6636d2b78b669150adaecd3ea1bfd7e81a23e9275620bde10814b698 Description: libaccount-plugin for Unity Control Center - Developer Docs Homepage: https://launchpad.net/online-accounts-gnome-control-center Description-md5: cf59e543993094c4ff7fb97f60bde28e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccount-plugin-generic-oauth Priority: optional Section: gnome Installed-Size: 47 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Replaces: account-plugin-generic-oauth (<< 0.10bzr13.04.30) Depends: libaccount-plugin-1.0-0 (>= 0.0.1), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.14.0), signon-plugin-oauth2 Conflicts: account-plugin-generic-oauth (<< 0.10bzr13.04.30) Breaks: account-plugin-generic-oauth (<< 0.10bzr13.04.30) Filename: pool/main/a/account-plugins/libaccount-plugin-generic-oauth_0.11+14.04.20140409.1-0ubuntu1_amd64.deb Size: 4638 MD5sum: d1fe7e5c8da9de53e396239a75255e4c SHA1: f3ad320a5121a1c70a2c10a2864f04114d8240c8 SHA256: 691d01a828985fba2e838a44a3f7658bae7d874b822656bb92ab32661f3a841c Description: GNOME Control Center account plugin for single signon - generic OAuth Homepage: https://launchpad.net/account-plugins Description-md5: 88383e5d8dc041d75f5a4d258c5d6347 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libaccount-plugin-google Priority: optional Section: gnome Installed-Size: 51 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Replaces: account-plugin-google (<< 0.10bzr13.04.30) Depends: libaccount-plugin-1.0-0 (>= 0.0.6), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.14.0), signon-plugin-oauth2 Conflicts: account-plugin-google (<< 0.10bzr13.04.30) Breaks: account-plugin-google (<< 0.10bzr13.04.30) Filename: pool/main/a/account-plugins/libaccount-plugin-google_0.11+14.04.20140409.1-0ubuntu1_amd64.deb Size: 5032 MD5sum: 9aeddb9b1190159d326a5e0728195e29 SHA1: a1ec4e46b6061943ea3a0573910cd01438d177eb SHA256: 1240282068a05c2dbc8dd02f7463b697b40f220d8904adb92395294632fde846 Description: GNOME Control Center account plugin for single signon - Google Auth Homepage: https://launchpad.net/account-plugins Description-md5: 61ca924881c1aaeb0a91de03d0a65ac7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libaccounts-glib-dev Priority: optional Section: libdevel Installed-Size: 264 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libaccounts-glib Version: 1.15+14.04.20131126.2-0ubuntu3 Depends: gir1.2-accounts-1.0, libaccounts-glib0 (= 1.15+14.04.20131126.2-0ubuntu3), libdbus-glib-1-dev, libglib2.0-dev, libsqlite3-dev, libxml2-dev Filename: pool/main/liba/libaccounts-glib/libaccounts-glib-dev_1.15+14.04.20131126.2-0ubuntu3_amd64.deb Size: 19982 MD5sum: 847ebb9ffd23b0ff476a34a3663fcb3a SHA1: 81d151d44dbb28af14a432a7cbbe50ba7f11d3cb SHA256: 93bc3978d173ab61cf3e082279c78a1c58a2a0924cb85f1fc7b9d860e87dfd34 Description: library for single signon - development files Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 765d6d1ddff9dd3cf4394fe30970f017 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccounts-glib-doc Priority: optional Section: doc Installed-Size: 576 Maintainer: Ubuntu Desktop Team Architecture: all Source: libaccounts-glib Version: 1.15+14.04.20131126.2-0ubuntu3 Filename: pool/main/liba/libaccounts-glib/libaccounts-glib-doc_1.15+14.04.20131126.2-0ubuntu3_all.deb Size: 44498 MD5sum: 5a3ef2b317c2bfaf05933225aec558f6 SHA1: c6751e30a5b3213dd809cb0405e5839f5a0894e9 SHA256: c6abe1a04da8903cec9baf78544df62beaa3df87ce4b7d0248d065a72a84ba97 Description: library for single signon - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 8a097664e340ebf00e0822ccc0ac4e04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccounts-glib0 Priority: optional Section: libs Installed-Size: 148 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libaccounts-glib Version: 1.15+14.04.20131126.2-0ubuntu3 Depends: libc6 (>= 2.17), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/liba/libaccounts-glib/libaccounts-glib0_1.15+14.04.20131126.2-0ubuntu3_amd64.deb Size: 38834 MD5sum: 3cb1050f2e5268b73a98b0a315d45715 SHA1: 6cb8e64e36c1222f9c9c3ea5fc73b5d98aae664c SHA256: 7118c802f7df0d1c36b1ee4ac976032f58da2a62961651696398174e7085a8a5 Description: library for single signon Multi-Arch: same Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 04337bac8cab900bc597648cf0e9cf55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libaccounts-qt-dev Priority: optional Section: libdevel Installed-Size: 89 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libaccounts-qt Version: 1.11+14.04.20140410.1-0ubuntu1 Replaces: libaccounts-qt5-dev (<< 1.11+14.04.20140410) Depends: libaccounts-qt1 (= 1.11+14.04.20140410.1-0ubuntu1) Breaks: libaccounts-qt5-dev (<< 1.11+14.04.20140410) Filename: pool/main/liba/libaccounts-qt/libaccounts-qt-dev_1.11+14.04.20140410.1-0ubuntu1_amd64.deb Size: 7602 MD5sum: 024a2319d21525de86aba245336c0d14 SHA1: ad1b9bd1b05b9ab6dd43a435ce668f475c3c4b91 SHA256: d9b1be040889941ffa998e8f332d45c08b0e47aded0750dcdf1cb9ba995d6f37 Description: QT library for single sign on - development files Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 398e3f15b81b6da49a898ee092e3c4de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccounts-qt-doc Priority: optional Section: doc Installed-Size: 1381 Maintainer: Ubuntu Desktop Team Architecture: all Source: libaccounts-qt Version: 1.11+14.04.20140410.1-0ubuntu1 Filename: pool/main/liba/libaccounts-qt/libaccounts-qt-doc_1.11+14.04.20140410.1-0ubuntu1_all.deb Size: 333774 MD5sum: 59165a681b7cd2f88fc9206e473d4489 SHA1: c1c087fd5926bdbd1860c2afda611b66be23dd9e SHA256: d46defdaa0658884f6f3f58acc9f48b7fe5b60a4fff78dd24f8aafbfd13b6b18 Description: QT library for single sign on - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 3f63e418e13b388be318058ef8ec1098 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccounts-qt1 Priority: optional Section: libs Installed-Size: 135 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libaccounts-qt Version: 1.11+14.04.20140410.1-0ubuntu1 Depends: libaccounts-glib0 (>= 1.14), libc6 (>= 2.14), libglib2.0-0 (>= 2.35.8), libqt4-xml (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/liba/libaccounts-qt/libaccounts-qt1_1.11+14.04.20140410.1-0ubuntu1_amd64.deb Size: 30186 MD5sum: 0dc3fe5216560e6f853ce00198525997 SHA1: cec7393109555b5a3fb6614a118340df850141bc SHA256: a186ca0408c2fd811e3b2019475cf70f375353e7a9a711aa4746f0eb5dd85287 Description: QT library for single sign on Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 4ff445e13de255a469861d743f92e199 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libaccounts-qt5-1 Priority: optional Section: libs Installed-Size: 143 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libaccounts-qt Version: 1.11+14.04.20140410.1-0ubuntu1 Depends: libaccounts-glib0 (>= 1.14), libc6 (>= 2.14), libglib2.0-0 (>= 2.35.8), libqt5core5a (>= 5.0.2), libqt5xml5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/liba/libaccounts-qt/libaccounts-qt5-1_1.11+14.04.20140410.1-0ubuntu1_amd64.deb Size: 33290 MD5sum: 42fc93f42b9087448a4b18ef2f3dd2a7 SHA1: 61d06b7d1bd8d3c1e42e411b727016dfdc5760e8 SHA256: d5cffdd7a454d12c08433cdd3bd9cade38ffe889a5fe95b71ea67a32d2d53083 Description: QT library for single sign on Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 4ff445e13de255a469861d743f92e199 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libaccounts-qt5-dev Priority: optional Section: libdevel Installed-Size: 81 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libaccounts-qt Version: 1.11+14.04.20140410.1-0ubuntu1 Depends: libaccounts-qt5-1 (= 1.11+14.04.20140410.1-0ubuntu1) Filename: pool/main/liba/libaccounts-qt/libaccounts-qt5-dev_1.11+14.04.20140410.1-0ubuntu1_amd64.deb Size: 7238 MD5sum: 63a69050ef8a2cbd902f70e7c53ed7f8 SHA1: b424faf4b7b84a3cadc33feaf9b3994e9c8656df SHA256: a9b0f77c218da6f5aff57f14d815a5ba8bc5c3030d5d0fd9df164786369f47a0 Description: QT library for single sign on - development files Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 398e3f15b81b6da49a898ee092e3c4de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccountsservice-dbg Priority: extra Section: debug Installed-Size: 356 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: accountsservice Version: 0.6.35-0ubuntu7 Depends: libaccountsservice0 (= 0.6.35-0ubuntu7) Filename: pool/main/a/accountsservice/libaccountsservice-dbg_0.6.35-0ubuntu7_amd64.deb Size: 221910 MD5sum: ca3626ce4ff7bcbb727d11bc0f67485a SHA1: 38a121c65fc26737ae78449e692b4956c127c7ed SHA256: cd6b2daf386904e2fae40e77b70bd6a619ab96dd207e7a66e5ea5ecf6c7dc67e Description: query and manipulate user account information - debug Multi-Arch: same Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: 67e2c3a1e0dc7dd3b34232ab48d143a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccountsservice-dev Priority: optional Section: libdevel Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: accountsservice Version: 0.6.35-0ubuntu7 Depends: gir1.2-accountsservice-1.0 (= 0.6.35-0ubuntu7), libaccountsservice0 (= 0.6.35-0ubuntu7), libglib2.0-dev (>= 2.25.11), libpolkit-gobject-1-dev Filename: pool/main/a/accountsservice/libaccountsservice-dev_0.6.35-0ubuntu7_amd64.deb Size: 9910 MD5sum: 35acb97cfc280d02dbdad77c01ad07f4 SHA1: ab588b3f5f6ab1834eaf4706970b482d40b731a6 SHA256: e5a158b137c88729905f373f799ddf3736e6f628d0fad591679a41ec020ebd26 Description: query and manipulate user account information - header files Multi-Arch: same Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: d0607148cea2974f2cc311a5e0bab4f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccountsservice-doc Priority: optional Section: doc Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: all Source: accountsservice Version: 0.6.35-0ubuntu7 Filename: pool/main/a/accountsservice/libaccountsservice-doc_0.6.35-0ubuntu7_all.deb Size: 19820 MD5sum: 5a07cf89418dc337e37384de930f5d89 SHA1: a8d3e011372367e24628e8c7da3350030099867c SHA256: a2a68e68bbcba7ac44407df31ed85db0964ea89d4ff706f81e09c50d0eecdae1 Description: query and manipulate user account information - documentation Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: 15ee25a15ef232cbf860503a04604aa7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccountsservice0 Priority: standard Section: libs Installed-Size: 364 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: accountsservice Version: 0.6.35-0ubuntu7 Depends: libc6 (>= 2.2.5), libgcr-base-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.37.3), libsystemd-login0 (>= 186) Breaks: accountsservice (<< 0.6.5) Filename: pool/main/a/accountsservice/libaccountsservice0_0.6.35-0ubuntu7_amd64.deb Size: 69588 MD5sum: 712322ea19ca5e0595fadfebb96cb259 SHA1: 11177e64cc322409f20a6133e69773124669d61d SHA256: 73892e97d2f914d3c10f317754da2d4da8fc38d27f8450794b2fef4b8559fad1 Description: query and manipulate user account information - shared libraries Multi-Arch: same Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: d536aa425d73c3ead2f37bd9a771e648 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libacl1 Priority: required Section: libs Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: acl Version: 2.2.52-1 Depends: libattr1 (>= 1:2.4.46-8), libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: acl (<< 2.0.0), libacl1-kerberos4kth Filename: pool/main/a/acl/libacl1_2.2.52-1_amd64.deb Size: 18066 MD5sum: c079f04eec2e4274987f7e01410b7543 SHA1: 78b32bfdb9e41e70eb440c4d57124d712559ac1c SHA256: 81277c93162b2e57b65786602668e01e14521b37d04cd28cc4f126ed14e6eb55 Description: Access control list shared library Multi-Arch: same Homepage: http://savannah.nongnu.org/projects/acl/ Description-md5: 65c1428a85567ba04597e882b0aecfe2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libacl1-dev Priority: extra Section: libdevel Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: acl Version: 2.2.52-1 Replaces: acl-dev Provides: acl-dev Depends: libc6-dev | libc-dev, libacl1 (= 2.2.52-1), libattr1-dev (>= 1:2.4.46-8) Conflicts: acl (<< 2.0.0), acl-dev, kerberos4kth-dev (<< 1.2.2-4) Filename: pool/main/a/acl/libacl1-dev_2.2.52-1_amd64.deb Size: 78826 MD5sum: 57a4a55d442eed430a65b70898a6f684 SHA1: 3644aada3ea501947101c23ad84cdec727bc6bb2 SHA256: f3ad40c6fe8076bcdaa73a123c835186d2176e0b3eff00216b9c14d71ddde7cc Description: Access control list static libraries and headers Homepage: http://savannah.nongnu.org/projects/acl/ Description-md5: 6f959f1da9dd08f65124fad3eb738dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libadns1 Priority: optional Section: libs Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: adns Version: 1.4-2ubuntu1 Depends: libc6 (>= 2.16) Suggests: adns-tools Filename: pool/main/a/adns/libadns1_1.4-2ubuntu1_amd64.deb Size: 54716 MD5sum: 0c8b9344db4f80b10ad3c0307551c19f SHA1: de1bbd7f7051175d547a053df0136c42a930cf1c SHA256: 130f9de0381f6f4f3c316da35e3f66b61d63416e04c6fd4fe3c5014007504d61 Description: Asynchronous-capable DNS client library and utilities Homepage: http://www.chiark.greenend.org.uk/~ian/adns/ Description-md5: ab5fbefe25e360eb57b7ed6cb736bfcf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libadns1-dev Priority: optional Section: libdevel Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: adns Version: 1.4-2ubuntu1 Depends: libadns1 (= 1.4-2ubuntu1), libc6-dev Conflicts: libadns0 Filename: pool/main/a/adns/libadns1-dev_1.4-2ubuntu1_amd64.deb Size: 62250 MD5sum: 9127b6cc5b6263e2c898b24e916ebcf4 SHA1: 6c04c04d6ea8f321e26a6c91caf08bca1e07d45a SHA256: c7cd2b4f385666fe3307542c7423edc3a4db02b18ed30535d56573cbe086bc5b Description: Asynchronous-capable DNS client library and utilities Homepage: http://www.chiark.greenend.org.uk/~ian/adns/ Description-md5: c8c0ae8098645d1f31b45547febb1b87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaio-dev Priority: optional Section: libdevel Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: amd64 Source: libaio Version: 0.3.109-4 Depends: libaio1 (= 0.3.109-4) Filename: pool/main/liba/libaio/libaio-dev_0.3.109-4_amd64.deb Size: 13812 MD5sum: 7f1f38b5f020abcb5600a0fd89165f26 SHA1: 6fc1671e9a0646cddeacf9f79e145c0830b512cf SHA256: b3eee2615545c94b68a8824a4de95707f2deee89deb6f00ad4c156d5462a038c Description: Linux kernel AIO access library - development files Homepage: http://www.kernel.org/pub/linux/libs/aio/ Description-md5: d20b50c4f342f11af5f6427456b725d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libaio1 Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: amd64 Source: libaio Version: 0.3.109-4 Pre-Depends: multiarch-support Filename: pool/main/liba/libaio/libaio1_0.3.109-4_amd64.deb Size: 6364 MD5sum: cd9da2f52a5d7713e5080c5ed6916a41 SHA1: 6ba128949ea62436fd917115d325cf3f2fa83e10 SHA256: d8093876a0be5b3c9560368a042bb80acd2732b7f15a9bbf5a54e9cb7c6cdf05 Description: Linux kernel AIO access library - shared library Multi-Arch: same Homepage: http://www.kernel.org/pub/linux/libs/aio/ Description-md5: 157af2c75c8ea8af75b168f50ebe9f96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, samba-server, lamp-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libaio1-dbg Priority: optional Section: libdevel Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: amd64 Source: libaio Version: 0.3.109-4 Depends: libaio1 (= 0.3.109-4) Filename: pool/main/liba/libaio/libaio1-dbg_0.3.109-4_amd64.deb Size: 6352 MD5sum: e9f1424c11e560a6219bd3d3b5f51546 SHA1: 2969356eea7ecb6950b3b62b67e88a67397dac6d SHA256: 93f03d411d72b5f16687471d6ca2bf769896ad0acca19e64d8c01c1c5a5645a7 Description: Linux kernel AIO access library - debugging symbols Multi-Arch: same Homepage: http://www.kernel.org/pub/linux/libs/aio/ Description-md5: 3f639d1fe235cfbdc7c19a3472492f53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libalgorithm-c3-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.08-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/liba/libalgorithm-c3-perl/libalgorithm-c3-perl_0.08-1_all.deb Size: 11804 MD5sum: 4bd0af66c7c44e5ef196530b59e2610b SHA1: db354e55f1f949965ab33118cc7d8de3810f4788 SHA256: b5eda8c1439e15989f96631ea5c967ac7231368282afc9b5611ce9107882f3e2 Description: Perl module for merging hierarchies using the C3 algorithm Homepage: http://search.cpan.org/dist/Algorithm-C3/ Description-md5: e385bd8aff28a1a6cf99ba81ce8712a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libalgorithm-diff-perl Priority: optional Section: perl Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.19.02-3 Depends: perl Recommends: libalgorithm-diff-xs-perl Filename: pool/main/liba/libalgorithm-diff-perl/libalgorithm-diff-perl_1.19.02-3_all.deb Size: 49964 MD5sum: 7462f70e9e9b691ca4a4657371d6ba8e SHA1: e6a0ab1c5408a912216dcc8daa6499ec37cbf252 SHA256: dfaa00d820b4a854acb53b4ffa1049e4d500f05802471e48189208c36f136c6d Description: module to find differences between files Homepage: http://search.cpan.org/~tyemq/Algorithm-Diff/ Description-md5: 68eff3df92c200909c91eac9a8db8a70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libalgorithm-diff-xs-perl Priority: optional Section: perl Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.04-2build4 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.14), libalgorithm-diff-perl Filename: pool/main/liba/libalgorithm-diff-xs-perl/libalgorithm-diff-xs-perl_0.04-2build4_amd64.deb Size: 12572 MD5sum: a1bd654bf2b8f30d464a6f95225a0744 SHA1: d2d4cf40715d86d3b826fabaac7811426119df1e SHA256: 5840a4a8e509e3060ab73cccec80ea6fa7c102abccae397f26fe6901dae967f2 Description: module to find differences between files (XS accelerated) Homepage: http://search.cpan.org/dist/Algorithm-Diff-XS/ Description-md5: 56feaeb59eda2127e36fd831b5a423ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libalgorithm-merge-perl Priority: optional Section: perl Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.08-2 Depends: perl, libalgorithm-diff-perl Filename: pool/main/liba/libalgorithm-merge-perl/libalgorithm-merge-perl_0.08-2_all.deb Size: 12672 MD5sum: bf1355aea7ab249fcd344cf0c692bc6c SHA1: 54f2881183605c5cd41f9272942b9e860d459025 SHA256: 5ac0a3029a7ad1f3f52e2c313f6f4d02c5e3a500931c0114c376498fce6bca90 Description: Perl module for three-way merge of textual data Homepage: http://search.cpan.org/dist/Algorithm-Merge/ Description-md5: 24ecd848b7a3429afcfb05486a52c941 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libamd2.3.1 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.2.5) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libamd2.3.1_4.2.1-3ubuntu1_amd64.deb Size: 23458 MD5sum: bdddd740792ad7bce168d984e83af5c0 SHA1: 76753cf91a572bafc9353d73d4a488ec513f01c4 SHA256: 03ae8dbf376274a22339aa4952b9a7d5c88b87d5218316fe8120ccb5105e5717 Description: approximate minimum degree ordering library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 97217997208933cd4300b4fdf03c0d3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libandroid-properties-dev Priority: extra Section: libdevel Installed-Size: 67 Maintainer: Ubuntu Developers Architecture: amd64 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Depends: libandroid-properties1 (= 0.1.0+git20131207+e452e83-0ubuntu12) Filename: pool/main/libh/libhybris/libandroid-properties-dev_0.1.0+git20131207+e452e83-0ubuntu12_amd64.deb Size: 5144 MD5sum: 901fe1de3309a2c6c27d569a86c2d8b4 SHA1: 2c39e10bc4cf92836b6f19360c08e688ada0b9b2 SHA256: b5aeffc49a834b6e37c6636464853c6a97beb74acdb6c1b794e03c13fb1ae591 Description: Development headers files for libandroid-properties Description-md5: fd78846cc0eb621999aaf215babfb840 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libandroid-properties1 Priority: extra Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Architecture: amd64 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Depends: libc6 (>= 2.4) Filename: pool/main/libh/libhybris/libandroid-properties1_0.1.0+git20131207+e452e83-0ubuntu12_amd64.deb Size: 9494 MD5sum: d84b376e8ed81d6819dad4a09e86424f SHA1: a5b9f04856a8dff62ba35db4f72cee332e4f7a41 SHA256: 774fd251c1555de75e06b5999eaa1ee4e35c226143132b7e81c0bcd9727d0b9a Description: Library to provide access to get, set and list Android properties Description-md5: 9af1ee376636863e49ba13ab6b202faa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libanthy-dev Priority: optional Section: libdevel Installed-Size: 696 Maintainer: Ubuntu Developers Original-Maintainer: NOKUBI Takatsugu Architecture: amd64 Source: anthy Version: 9100h-23ubuntu2 Depends: libanthy0 (= 9100h-23ubuntu2) Filename: pool/main/a/anthy/libanthy-dev_9100h-23ubuntu2_amd64.deb Size: 156604 MD5sum: 4ba4b96d1755b49454d6045b45e81bae SHA1: 1b2bf3834fb37497d8157304f2b8dab342ff2540 SHA256: a6fd25e8a33e99a5e1e1cc4389f44fdeaeb08962642b852e614b773f7b852ab5 Description: input method for Japanese - development files Multi-Arch: same Homepage: http://anthy.sourceforge.jp/ Description-md5: 1609cf41dbe5259268a28711eb7c2e06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libanthy0 Priority: optional Section: libs Installed-Size: 506 Maintainer: Ubuntu Developers Original-Maintainer: NOKUBI Takatsugu Architecture: amd64 Source: anthy Version: 9100h-23ubuntu2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/a/anthy/libanthy0_9100h-23ubuntu2_amd64.deb Size: 132176 MD5sum: f5f702a02b56845fc05506e4dd3ad00f SHA1: 05e7c445c65287a79c0d085489d67319e1291044 SHA256: 7cafa4fb0d5249d98783b5a560966a5d06b5a800fd445eed44b663fa47d858cf Description: input method for Japanese - runtime library Multi-Arch: same Homepage: http://anthy.sourceforge.jp/ Description-md5: d11bb6a6c71781db2098f5a10adebb24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-usb Package: libantlr-dev Priority: optional Section: libdevel Installed-Size: 1634 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: amd64 Source: antlr Version: 2.7.7+dfsg-5 Recommends: antlr Filename: pool/main/a/antlr/libantlr-dev_2.7.7+dfsg-5_amd64.deb Size: 344884 MD5sum: 326183bb2b18117339f5103d02a6b89d SHA1: bdeed3bc95e46e9a29e2e921867f26d17e8ead80 SHA256: 10a3d54f49e624d962a8442b6d40c2ce6109f975ec0b9a1e5d4cfe0ab592b7f1 Description: language tool for constructing recognizers, compilers etc Homepage: http://www.antlr2.org/ Description-md5: 0aded9465f9780556491dc34397d806c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libantlr-java Priority: optional Section: devel Installed-Size: 492 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: antlr Version: 2.7.7+dfsg-5 Replaces: antlr (<< 2.7.7-8) Breaks: antlr (<< 2.7.7-8) Filename: pool/main/a/antlr/libantlr-java_2.7.7+dfsg-5_all.deb Size: 427352 MD5sum: ae77a5c634e35d8bfe06822964b5a27b SHA1: 50def6cbeb1360fc9a7f7c0cdea22b71c5679e99 SHA256: f7f6792adb4bc3c92fff430c25d3b4cb45c7b4e0e70e5bc21ae9659a0c9fb0d2 Description: language tool for constructing recognizers, compilers etc (java library) Homepage: http://www.antlr2.org/ Description-md5: 4ab4ec9aa6420590f40b10392c10776e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libao-common Priority: optional Section: libs Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: all Source: libao Version: 1.1.0-2ubuntu2 Replaces: libao4 (<< 1.0.0-2) Conflicts: libao2 Breaks: libao4 (<< 1.0.0-2) Filename: pool/main/liba/libao/libao-common_1.1.0-2ubuntu2_all.deb Size: 6278 MD5sum: f3f848ab211c5f4c77675ca86fba0e15 SHA1: 6cac05d571eb31cf7a85d6eba525564b6675ee32 SHA256: 6b67d19dd12a85db1a2842997048f5b4452439e1393955bab9e25b23f98e7948 Description: Cross Platform Audio Output Library (Common files) Multi-Arch: foreign Homepage: http://www.xiph.org/ao/ Description-md5: 1d9ee00d87630ccf7aaefc64d0d7db8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-dvd-live, ubuntustudio-audio Package: libao-dbg Priority: extra Section: libdevel Installed-Size: 181 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: amd64 Source: libao Version: 1.1.0-2ubuntu2 Depends: libao4 (= 1.1.0-2ubuntu2) Filename: pool/main/liba/libao/libao-dbg_1.1.0-2ubuntu2_amd64.deb Size: 83226 MD5sum: f541d47903af168643f845c09d577c2f SHA1: db4daeefbea787f3bb743c1f59c2b849bbbed39f SHA256: fafcba7fdd586669247e420dcc2e9bdde41e8d666015bcb1893a08f7175ec5b3 Description: Cross Platform Audio Output Library Debug Symbols Multi-Arch: same Homepage: http://www.xiph.org/ao/ Description-md5: 32ad063053b3245f115bae362892de40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libao-dev Priority: optional Section: libdevel Installed-Size: 279 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: amd64 Source: libao Version: 1.1.0-2ubuntu2 Depends: libao4 (= 1.1.0-2ubuntu2), libc6-dev Filename: pool/main/liba/libao/libao-dev_1.1.0-2ubuntu2_amd64.deb Size: 46798 MD5sum: 353e16f128715bfb4187bd430483e08c SHA1: d0072ff109ef52b2b20273daae3f943c5fd6de13 SHA256: 25afb6631beac4caf86d7d41d78deadda2e3a212dfab6a107f089961795f061a Description: Cross Platform Audio Output Library Development Multi-Arch: same Homepage: http://www.xiph.org/ao/ Description-md5: ca2756e818c8b0080fd300dca01c2429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libao4 Priority: optional Section: libs Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: amd64 Source: libao Version: 1.1.0-2ubuntu2 Replaces: libao-pulse Depends: libc6 (>= 2.14), libao-common Pre-Depends: multiarch-support Suggests: libasound2, libaudio2, libesd0 | libesd-alsa0, libpulse0 Filename: pool/main/liba/libao/libao4_1.1.0-2ubuntu2_amd64.deb Size: 31540 MD5sum: 374c442b8c0bf96864470af41697e9ec SHA1: 3e612ea6c606d4cce7c94a0cd02e53412af5bd22 SHA256: 8ebf887428e14e7ea25ee52281a95a1ee947ec7d11c06b8df06515da1c5e3150 Description: Cross Platform Audio Output Library Multi-Arch: same Homepage: http://www.xiph.org/ao/ Description-md5: 56c5e1da00794da09de8d22338ca5b2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-dvd-live, ubuntustudio-audio Package: libapache-pom-java Priority: optional Section: java Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: apache-pom Version: 10-2build1 Filename: pool/main/a/apache-pom/libapache-pom-java_10-2build1_all.deb Size: 4022 MD5sum: 4553871e98d3c8c0de6963da1570bc01 SHA1: 4996de47c2593fed1f42a31531752ec0b1df021a SHA256: f6c170c4ba19ddc76244900aab165e2cca9b2062a3211b31c52dc026dc165afe Description: Maven metadata for all Apache Software projects Homepage: http://maven.apache.org/pom/asf/ Description-md5: d7026a9defe5034a197af30017c1b176 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapache2-mod-apparmor Priority: extra Section: web Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: libapparmor1 (>= 2.7.0~beta1+bzr1772), libc6 (>= 2.2.5), apache2-api-20120211 Filename: pool/main/a/apparmor/libapache2-mod-apparmor_2.8.95~2430-0ubuntu5_amd64.deb Size: 14226 MD5sum: 7c25fe5b5a8422afc687fee119721a8c SHA1: 2aee686cb26e174a85f9f1bc65231e27a7bcc747 SHA256: b47ba0d093a67e09cf388b4ea17e492d8e2133f83bf4c266ea9fbc7dbe4f902e Description: changehat AppArmor library as an Apache module Homepage: http://apparmor.net/ Description-md5: a5901c8ca6f4b08d12fc507332ec3d1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapache2-mod-auth-mysql Priority: optional Section: web Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Joey Schulze Architecture: amd64 Source: mod-auth-mysql Version: 4.3.9-13.1ubuntu3 Depends: libc6 (>= 2.4), libmysqlclient18 (>= 5.5.24+dfsg-1) Filename: pool/main/m/mod-auth-mysql/libapache2-mod-auth-mysql_4.3.9-13.1ubuntu3_amd64.deb Size: 20910 MD5sum: 3449c265061d8a2735290dd5e6f4dd91 SHA1: 989011b3af79f2b195296e1617c5d3085145e8ec SHA256: 7684307d3127d180970f2e9dba07ab47e5abf09a920545061f778f3a18c4e70d Description: Apache 2 module for MySQL authentication Description-md5: ef80cee8ed7ae93c707d9527ba185c06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-auth-pgsql Priority: extra Section: httpd Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Marco Nenciarini Architecture: amd64 Version: 2.0.3-6 Depends: libc6 (>= 2.4), libpq5, apache2-api-20120211 Filename: pool/main/liba/libapache2-mod-auth-pgsql/libapache2-mod-auth-pgsql_2.0.3-6_amd64.deb Size: 21156 MD5sum: 9faadee0ee75acc038ae497a458a8fc0 SHA1: 10c4a2435bc53a33fa6759bdfda23eba8a814e19 SHA256: eba4d016e9fb408e4a638cf2d7fb7dcea1b52054d5100447b0cf3c799ab0b485 Description: Module for Apache2 which provides PostgreSQL authentication Homepage: http://www.giuseppetanzilli.it/mod_auth_pgsql2 Description-md5: 2853269f88c16d4ec6dd68d03d66ad23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-auth-plain Priority: extra Section: web Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Version: 2.0.52 Depends: libc6 (>= 2.4), apache2-api-20120211 Filename: pool/main/liba/libapache2-mod-auth-plain/libapache2-mod-auth-plain_2.0.52_amd64.deb Size: 9608 MD5sum: 356fb30ccc677f887178675e7279af78 SHA1: ebd7e9f9846c90efd9a229ec7725012242902072 SHA256: a338fff2378e951c2100db2dd3108c726952e9e127fd5520c524fea87a93f456 Description: Module for Apache2 which provides plaintext authentication Description-md5: 3e01238a16b9a1c7773380c220a515ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-macro Priority: extra Section: web Installed-Size: 22 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apache2 (2.4.7-1ubuntu4) Version: 1:2.4.7-1ubuntu4 Depends: apache2-bin (>= 2.3~) Filename: pool/main/a/apache2/libapache2-mod-macro_2.4.7-1ubuntu4_amd64.deb Size: 1454 MD5sum: 78f7e2e2b6760905d710dedf68376b0f SHA1: fea001542f4d1a123a769ecda9bc2977c44a93f8 SHA256: 2f1fa849b71033db22ac0d6fc165ff635a7d4645c319388fdf9ac2cb685e8158 Description: Transitional package for apache2-bin Homepage: http://httpd.apache.org/ Description-md5: 36c293ebb5b77f14b95215fd3ffa7760 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-perl2 Priority: optional Section: perl Installed-Size: 3163 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 2.0.8+httpd24-r1449661-6ubuntu2 Depends: apache2-api-20120211, perl (>= 5.18.1-4), perlapi-5.18.1, libapr1 (>= 1.2.7), libaprutil1 (>= 1.2.7+dfsg), libc6 (>= 2.14), libperl5.18 (>= 5.18.1), libdevel-symdump-perl, liburi-perl, libwww-perl, netbase Recommends: libbsd-resource-perl, libapache2-reload-perl Filename: pool/main/liba/libapache2-mod-perl2/libapache2-mod-perl2_2.0.8+httpd24-r1449661-6ubuntu2_amd64.deb Size: 1041306 MD5sum: a5c446ab10b67c077e6d7cda46e26f39 SHA1: 317e3bd9d912a95bea223ba59475db93df75a83f SHA256: f6e9d390cb1a5f5fa7bc8739c0d37ccc463d1fbf4d8318d0cb3e98c79e742680 Description: Integration of perl with the Apache2 web server Homepage: http://perl.apache.org/ Description-md5: e23cfdfee05b531a38b9a93d5d690a15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-perl2-dev Priority: optional Section: web Installed-Size: 241 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Source: libapache2-mod-perl2 Version: 2.0.8+httpd24-r1449661-6ubuntu2 Depends: libapache2-mod-perl2 (>= 2.0.8+httpd24-r1449661-6ubuntu2), libapache2-mod-perl2 (<< 2.0.8+httpd24-r1449661-6ubuntu2.1~) Filename: pool/main/liba/libapache2-mod-perl2/libapache2-mod-perl2-dev_2.0.8+httpd24-r1449661-6ubuntu2_all.deb Size: 36962 MD5sum: 3f0cd10965b0a326d94a7712302f71a5 SHA1: 04fafe636be313a63fb7524055b6cb1e255b3c57 SHA256: 26276ffb60c6ec16169acdc6e05296e26be9920d5da20b3984800645ee0de505 Description: Integration of perl with the Apache2 web server - development files Homepage: http://perl.apache.org/ Description-md5: c1f3b7f361a55b50e3b5ca768f1817d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapache2-mod-perl2-doc Priority: optional Section: web Installed-Size: 3401 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Source: libapache2-mod-perl2 Version: 2.0.8+httpd24-r1449661-6ubuntu2 Suggests: dwww Filename: pool/main/liba/libapache2-mod-perl2/libapache2-mod-perl2-doc_2.0.8+httpd24-r1449661-6ubuntu2_all.deb Size: 1855428 MD5sum: b2aa0b15b9f470f4fdb5bc8c00ce1cb5 SHA1: 1d7644bd9f69d21ba5f5e78247f3b13ece44252e SHA256: 1ab9d3f0fc7f62faa88665d2ff1c563713438950480ee44105f62d65732996ca Description: Integration of perl with the Apache2 web server - documentation Homepage: http://perl.apache.org/ Description-md5: 7399b209f03abbb5942d6a356f373572 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapache2-mod-php5 Priority: optional Section: httpd Installed-Size: 9669 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libbz2-1.0, libc6 (>= 2.15), libdb5.3, libpcre3, libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.9.0), zlib1g (>= 1:1.1.4), apache2-api-20120211, apache2 (>= 2.4), mime-support, php5-common (= 5.5.9+dfsg-1ubuntu4), libmagic1, ucf, tzdata Recommends: php5-cli Suggests: php-pear Conflicts: libapache2-mod-php4, libapache2-mod-php5filter Filename: pool/main/p/php5/libapache2-mod-php5_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 2210246 MD5sum: 1ff173aa3eaba570c9f5bffade74664a SHA1: cbf9f8107096822b015a19edbf7d8bf67088df60 SHA256: 73e89f84adf9e4981d3f705c3226d89d977030d9446d47fb279538118cd046ff Description: server-side, HTML-embedded scripting language (Apache 2 module) Homepage: http://www.php.net/ Description-md5: bcf9a0837d83a4d93e1acc9c247605c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libapache2-mod-python Priority: optional Section: python Installed-Size: 464 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Version: 3.3.1-11ubuntu2 Depends: apache2-api-20120211, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libpython2.7 (>= 2.7) Suggests: libapache2-mod-python-doc Filename: pool/main/liba/libapache2-mod-python/libapache2-mod-python_3.3.1-11ubuntu2_amd64.deb Size: 106458 MD5sum: a279133a74d4f0041f3262dc97e3d00e SHA1: f2b1436e0a3be7eed00fbc4cab76915e6befbd21 SHA256: 99170e1df6db2a185b938029b06a39af43b192f13042e9a4068ec60f4deb71a1 Description: Python-embedding module for Apache 2 Homepage: http://www.modpython.org/ Description-md5: 1d713411251bc8919aabac20971e2a54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-python-doc Priority: optional Section: python Installed-Size: 940 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: libapache2-mod-python Version: 3.3.1-11ubuntu2 Suggests: www-browser Filename: pool/main/liba/libapache2-mod-python/libapache2-mod-python-doc_3.3.1-11ubuntu2_all.deb Size: 108526 MD5sum: d58529f7ade43a207026cc52f77854b8 SHA1: fc5a7a1a723c5368c345a5d41ccd75539eec817c SHA256: 45bbb169a1e3518fd67474a02266204955795b296f992ea634fabde534c00930 Description: Python-embedding module for Apache 2 - documentation Homepage: http://www.modpython.org/ Description-md5: 9564caeb173aa6a96d396d2bfafe8b8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-wsgi Priority: optional Section: python Installed-Size: 238 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: mod-wsgi Version: 3.4-4ubuntu2 Provides: httpd-wsgi Depends: libc6 (>= 2.14), libpython2.7 (>= 2.7), apache2-api-20120211, python (>= 2.7), python (<< 2.8) Filename: pool/main/m/mod-wsgi/libapache2-mod-wsgi_3.4-4ubuntu2_amd64.deb Size: 67116 MD5sum: 11b4c16be9924acdc2ee765db5f8d03a SHA1: c759aa5d625fb3113f60670c05060d61182fb64f SHA256: e4a3e685a6ce508bab8dbc4c2eed11c4ade0caf9a210df5299db244695a29ab6 Description: Python WSGI adapter module for Apache Homepage: http://www.modwsgi.org/ Description-md5: 524e8bdbab4989bd739c548590367eb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-reload-perl Priority: optional Section: perl Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.12-2 Depends: perl, libapache2-mod-perl2 Filename: pool/main/liba/libapache2-reload-perl/libapache2-reload-perl_0.12-2_all.deb Size: 17302 MD5sum: 40a777c3bd592c8e9cca953c5aa83fba SHA1: 4e4e2e6363b33c721e3b437177618724e21e0a34 SHA256: 8f8a398586d97af7d17efc7397174bdb31756a9bd53f7162bf0eb7cdef3545c4 Description: module for reloading Perl modules when changed on disk Homepage: https://metacpan.org/release/Apache-Reload/ Description-md5: 9133f4572c0362fca02856e42bb7d655 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapp-fatpacker-perl Priority: optional Section: perl Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.010000-1 Provides: fatpack Depends: perl Filename: pool/main/liba/libapp-fatpacker-perl/libapp-fatpacker-perl_0.010000-1_all.deb Size: 17022 MD5sum: e397d7c0691748363d40684bbdc084f4 SHA1: e87dad8433219831ce44874aba618d55082d2689 SHA256: a7aad39c17aab277a26524846a9f995e2b842c26cf0b394be63d3b21018c1518 Description: module to pack dependencies onto script files Homepage: https://metacpan.org/release/App-FatPacker Description-md5: e0cc551a5034b831dad4132e9d948d33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapparmor-dev Priority: extra Section: libdevel Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Replaces: libapparmor1 (<< 2.8.95~2395-0ubuntu1) Depends: libapparmor1 (= 2.8.95~2430-0ubuntu5) Breaks: libapparmor1 (<< 2.8.95~2395-0ubuntu1) Filename: pool/main/a/apparmor/libapparmor-dev_2.8.95~2430-0ubuntu5_amd64.deb Size: 38656 MD5sum: 42321c036230707f48a2ae3c59acd53f SHA1: f2d718f9eab96008143d15eb2afa1e0ad185ae08 SHA256: ceceae1ebc5ce556cd5a2ff0aca3a9d3e9bbe82f96c46119bfd58fcbbba547dc Description: AppArmor development libraries and header files Multi-Arch: same Homepage: http://apparmor.net/ Description-md5: 4854e8f39d4ec17f1ef336b898438f73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapparmor-perl Priority: standard Section: perl Installed-Size: 197 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: perl-base (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libapparmor1 (>= 2.8.94-0ubuntu1), libc6 (>= 2.14) Filename: pool/main/a/apparmor/libapparmor-perl_2.8.95~2430-0ubuntu5_amd64.deb Size: 26868 MD5sum: d9af0d9a15a2286ccebbfff9e1068326 SHA1: 686aa580dbbaa08848a10196dbd455e0b98c48cd SHA256: 0cf555a69e39628a1ec27044d44e90cf6bfb8e9f25dcd59f52ca6d1d9c0b0ffe Description: AppArmor library Perl bindings Homepage: http://apparmor.net/ Description-md5: 42d32a45493e77e0e2b388d84ea70892 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: libapparmor1 Priority: standard Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: libc6 (>= 2.14) Filename: pool/main/a/apparmor/libapparmor1_2.8.95~2430-0ubuntu5_amd64.deb Size: 24412 MD5sum: 7a978ee50714ece1f82017478a0a7ec3 SHA1: a17e7afd31ff9003027e24e63e6bbcea837c615b SHA256: e6617d53afa551f7591e38af77099a54614da4bbb2eb9b22641969052c491203 Description: changehat AppArmor library Multi-Arch: same Homepage: http://apparmor.net/ Description-md5: b066f3d6ec4f1e72570ebf49e31e9490 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libappconfig-perl Priority: optional Section: perl Installed-Size: 209 Maintainer: Ubuntu Developers Original-Maintainer: Stefan Hornburg (Racke) Architecture: all Source: appconfig Version: 1.66-1 Depends: perl Filename: pool/main/a/appconfig/libappconfig-perl_1.66-1_all.deb Size: 75464 MD5sum: e7776a9103b5346a974149eb140d0e74 SHA1: e123218af082e2f57ac1cad429b4163d0a76fabb SHA256: ba83df8aea129c6c28c5c93c388fa2697658b0e11b7bba622f220b7df45910c8 Description: Perl module for configuration file and command line handling Description-md5: 968a51d0c2668816fa49f49f0bee5fd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libappindicator-dev Priority: optional Section: libdevel Installed-Size: 145 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: gir1.2-appindicator-0.1 (= 12.10.1+13.10.20130920-0ubuntu4), libdbusmenu-glib-dev (>= 0.1.8), libdbus-glib-1-dev (>= 0.76), libappindicator1 (= 12.10.1+13.10.20130920-0ubuntu4) Filename: pool/main/liba/libappindicator/libappindicator-dev_12.10.1+13.10.20130920-0ubuntu4_amd64.deb Size: 10768 MD5sum: c042f7ce588a06e1f36ff08116af9d7b SHA1: cd4cdaf05a340553274d758311fe58f59612be7a SHA256: 97bf9960d02916b9ecd08468e87b1bbacb5c407b449e591fe9c568b38429d9d3 Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 8892169afb7b9bc499e71c9594bafe1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libappindicator-doc Priority: optional Section: doc Installed-Size: 223 Maintainer: Ubuntu Desktop Team Architecture: all Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Filename: pool/main/liba/libappindicator/libappindicator-doc_12.10.1+13.10.20130920-0ubuntu4_all.deb Size: 19094 MD5sum: a9a1e2195619d7cfdc389792276fce0f SHA1: e3dbf33a4f280bbfa24bb712c342a72fd5dd6358 SHA256: 5bafa18450845775183db791156230fc481f11b4726615c451ddeb792dffda03 Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 02ba3477e299ea6febe16c1b60467b01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libappindicator0.1-cil Priority: optional Section: cli-mono Installed-Size: 83 Maintainer: Ubuntu Desktop Team Architecture: all Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: cli-common (>= 0.5.1), libappindicator1, libglib2.0-cil (>= 2.12.10-1ubuntu1), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.5-cil (>= 3.2.3) Filename: pool/main/liba/libappindicator/libappindicator0.1-cil_12.10.1+13.10.20130920-0ubuntu4_all.deb Size: 9448 MD5sum: 72152e9d5e374d502776d5cb533b0141 SHA1: d61ae4288d3fd91c35d529f30ceb1a95e319d8f8 SHA256: 762003741dad342cfb2fee01c888e1a26d5055677076023bffff3c34cdc07e7b Description: CLI bindings for libappindicator Homepage: https://launchpad.net/libappindicator Description-md5: 1847e304f46bfd56eda1cdad308e1f7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libappindicator0.1-cil-dev Priority: optional Section: libdevel Installed-Size: 39 Maintainer: Ubuntu Desktop Team Architecture: all Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: libappindicator0.1-cil (= 12.10.1+13.10.20130920-0ubuntu4) Filename: pool/main/liba/libappindicator/libappindicator0.1-cil-dev_12.10.1+13.10.20130920-0ubuntu4_all.deb Size: 1600 MD5sum: b6fdd6822e12289890acfb8256d36a1e SHA1: 5abb818c7fc69292dff889dee2bb56098d2769eb SHA256: f2d755262266f769055c87a6b0e48ee96a6cfcb1c9f086aeeee721777bc7750f Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 8892169afb7b9bc499e71c9594bafe1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libappindicator1 Priority: optional Section: libs Installed-Size: 95 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: libc6 (>= 2.2.5), libdbusmenu-glib4 (>= 0.4.2), libdbusmenu-gtk4 (>= 0.4.2), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.20.0), libindicator7 (>= 0.4.90) Pre-Depends: multiarch-support Recommends: indicator-application (>= 0.2.93) Filename: pool/main/liba/libappindicator/libappindicator1_12.10.1+13.10.20130920-0ubuntu4_amd64.deb Size: 18230 MD5sum: 7e3ce6b4b1c69e7095ac466de4f03c67 SHA1: f8f9dadd72f80b660ce72065070965740d05ef29 SHA256: 2993735f38a5eecb6b2f68af99dabaa32d9c44ff16c4c9c5d8e95a07e9e78cd5 Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 19c351a0f9348d05d8bfa4468c6db3f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video Package: libappindicator3-1 Priority: optional Section: libs Installed-Size: 95 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: libc6 (>= 2.2.5), libdbusmenu-glib4 (>= 0.4.2), libdbusmenu-gtk3-4 (>= 0.4.2), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libindicator3-7 (>= 0.4.90) Pre-Depends: multiarch-support Recommends: indicator-application (>= 0.2.93) Filename: pool/main/liba/libappindicator/libappindicator3-1_12.10.1+13.10.20130920-0ubuntu4_amd64.deb Size: 18234 MD5sum: 0a0463def8192699c5ab44afb7e6cd84 SHA1: 3b92a68e181bb015ed84b04f6d545d3769b0499c SHA256: 474de9c12a1779944848e08e9222569bbe72167764558f6b7d04b565dad4354c Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 19c351a0f9348d05d8bfa4468c6db3f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libappindicator3-dev Priority: optional Section: libdevel Installed-Size: 145 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: gir1.2-appindicator3-0.1 (= 12.10.1+13.10.20130920-0ubuntu4), libdbusmenu-glib-dev (>= 0.1.8), libdbus-glib-1-dev (>= 0.76), libappindicator3-1 (= 12.10.1+13.10.20130920-0ubuntu4) Filename: pool/main/liba/libappindicator/libappindicator3-dev_12.10.1+13.10.20130920-0ubuntu4_amd64.deb Size: 10772 MD5sum: f29361eedf7217f7cb5972785c8ed467 SHA1: 9dc52174edb1fada307629f45ecf34555261d8a1 SHA256: 039cc76c6a42c3a29ed4396e91c84e2ebd36a8d4a56bbf95f49efab993c7d4f6 Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 8892169afb7b9bc499e71c9594bafe1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapr1 Priority: optional Section: libs Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apr Version: 1.5.0-1 Depends: libc6 (>= 2.15), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Conflicts: libapr1.0 Filename: pool/main/a/apr/libapr1_1.5.0-1_amd64.deb Size: 85056 MD5sum: 710311d20d36259cb9beb6473e252c9a SHA1: defd73aeb230ec01527b2eee293b60c08d5c6e50 SHA256: 422a3f162a4b99eab8d9378240bb8fc06b4f0caa1b06f7884db3626fc23af984 Description: Apache Portable Runtime Library Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: daaca3900e2bd4d38f204bf1b0ef044a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libapr1-dbg Priority: extra Section: libdevel Installed-Size: 315 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apr Version: 1.5.0-1 Depends: libapr1 (= 1.5.0-1) Filename: pool/main/a/apr/libapr1-dbg_1.5.0-1_amd64.deb Size: 233886 MD5sum: bec9d0a422b9fec8031b55585bea5498 SHA1: 33ddf82c1cc0c7db6421c9c7cd954ee703256159 SHA256: add8efbef9ebdc7ba531f8bf288299dc155e23c4a1f0aeb83abce20ecedd21d0 Description: Apache Portable Runtime Library - Debugging Symbols Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: c3c017e48521f94794214d8ee73f3bef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapr1-dev Priority: optional Section: libdevel Installed-Size: 8032 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apr Version: 1.5.0-1 Depends: libapr1 (= 1.5.0-1), uuid-dev, libsctp-dev Suggests: python Conflicts: libapr0-dev, libapr1.0-dev Filename: pool/main/a/apr/libapr1-dev_1.5.0-1_amd64.deb Size: 598526 MD5sum: 4675c74c2262dc74bff14edfe8a2375f SHA1: 67e5cdd6b4993cf57793585b0d7a9dbfd20fed87 SHA256: 565d80b794a5ec0a2889bba89a8fc0c12c5642f424c3e61ad6cfe94bffacc447 Description: Apache Portable Runtime Library - Development Headers Homepage: http://apr.apache.org/ Description-md5: 7242f99e86343755e74ffc6220d354b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaprutil1 Priority: optional Section: libs Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apr-util Version: 1.5.3-1 Depends: libapr1 (>= 1.4.8-2~), libc6 (>= 2.14), libdb5.3, libexpat1 (>= 2.0.1), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Breaks: libapr1 (<< 1.4.8-2~) Filename: pool/main/a/apr-util/libaprutil1_1.5.3-1_amd64.deb Size: 76376 MD5sum: 91d3810e9d5f5012b36e6ab06037c532 SHA1: 51cc3b189961d10475d7804e092dc3e831db1310 SHA256: c415d795be6e3012544d2595e57e6aaa6d30be18e6740495fc670808f1dd7bb9 Description: Apache Portable Runtime Utility Library Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: e0d4198f7ab8d2d00a12d0e044194068 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libaprutil1-dbd-sqlite3 Priority: optional Section: libs Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apr-util Version: 1.5.3-1 Depends: libaprutil1 (= 1.5.3-1), libc6 (>= 2.2.5), libsqlite3-0 (>= 3.5.9) Filename: pool/main/a/apr-util/libaprutil1-dbd-sqlite3_1.5.3-1_amd64.deb Size: 10538 MD5sum: f9d34d338d857020a9f329fdb37692ca SHA1: eb062bea8354eb3ff2aa433f8824c81130ee9788 SHA256: c8e40b60a103c1be8c170a706336bbf46187205d4c890f830fecfe6e4b0cff53 Description: Apache Portable Runtime Utility Library - SQLite3 Driver Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: f471c87c1f3c003cda76426ff2939b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libaprutil1-dbg Priority: extra Section: libdevel Installed-Size: 432 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apr-util Version: 1.5.3-1 Depends: libaprutil1 (= 1.5.3-1) Filename: pool/main/a/apr-util/libaprutil1-dbg_1.5.3-1_amd64.deb Size: 287394 MD5sum: 32022f43569279a12c4c9ed00095ec2d SHA1: 39ddaef8ba4230cf96b88cc002d4ee9f268788ec SHA256: 8628c853f1f7e44ce2e19e81511c6dfe54646fd4f01aeb8073b2572a6ed1e064 Description: Apache Portable Runtime Utility Library - Debugging Symbols Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: 8e79c59d712eb77f803ccf06c2077e42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaprutil1-dev Priority: optional Section: libdevel Installed-Size: 4412 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apr-util Version: 1.5.3-1 Depends: libaprutil1 (= 1.5.3-1), libldap2-dev, libexpat1-dev, libpcre3-dev, libapr1-dev (>= 1.2.2-1), libsqlite3-dev, libpq-dev, libmysqlclient-dev Filename: pool/main/a/apr-util/libaprutil1-dev_1.5.3-1_amd64.deb Size: 333550 MD5sum: 89e801dc932357a354d629f88ddc649d SHA1: 169ad8c979468b826731b07203af0a64214f5762 SHA256: 444fd850071340c85ea48709060d1966575fd0517a3861eff558dceb11fa9044 Description: Apache Portable Runtime Utility Library - Development Headers Homepage: http://apr.apache.org/ Description-md5: d6ae06fa24afa413ea1d1cd0db69d8a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaprutil1-ldap Priority: optional Section: libs Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: amd64 Source: apr-util Version: 1.5.3-1 Depends: libaprutil1 (= 1.5.3-1), libc6 (>= 2.2.5), libldap-2.4-2 (>= 2.4.7) Filename: pool/main/a/apr-util/libaprutil1-ldap_1.5.3-1_amd64.deb Size: 8634 MD5sum: 78087b008a7705b2abc8800cabfacf37 SHA1: 14eeb9abbc7d6f1bec7be039069fa1075fd99c3f SHA256: b9e0fc876fe474af768b62eba40fdd324a7150efa735a5dd3649c99f57298c6d Description: Apache Portable Runtime Utility Library - LDAP Driver Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: d25faaa24a0fbf145505cba06b4192d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libapt-inst1.5 Priority: important Section: admin Installed-Size: 735 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: amd64 Source: apt Version: 1.0.1ubuntu2 Depends: libapt-pkg4.12 (>= 0.8.16~exp9), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/a/apt/libapt-inst1.5_1.0.1ubuntu2_amd64.deb Size: 58588 MD5sum: fa7c342a42e686ce339d03ff26261d8f SHA1: ef309094eb8d47da47703778256185d181a634d8 SHA256: 7421b0a1756d33fc691bcb3ba24164889af40d618d1c7a31c83fe449d827e422 Description: deb package format runtime library Multi-Arch: same Description-md5: 5df05e67cb17e91ac56a732061d88850 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libapt-pkg-dev Priority: optional Section: libdevel Installed-Size: 536 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: amd64 Source: apt Version: 1.0.1ubuntu2 Depends: libapt-pkg4.12 (= 1.0.1ubuntu2), libapt-inst1.5 (= 1.0.1ubuntu2), zlib1g-dev Filename: pool/main/a/apt/libapt-pkg-dev_1.0.1ubuntu2_amd64.deb Size: 82410 MD5sum: 3353657d2a1bc28044d2eba71de33591 SHA1: 728df2c65656e8f0764b96b6c9fe69cba446e642 SHA256: a27306b0b5518264a00df53a91ddc9ee6385a68bf09974656ff71c93def4f659 Description: development files for APT's libapt-pkg and libapt-inst Multi-Arch: same Description-md5: 8e463f77664788b23a47f5ac592f4595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapt-pkg-doc Priority: optional Section: doc Installed-Size: 11060 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: all Source: apt Version: 1.0.1ubuntu2 Filename: pool/main/a/apt/libapt-pkg-doc_1.0.1ubuntu2_all.deb Size: 666500 MD5sum: f3ede9b16ff71d97704dec2d6413306d SHA1: 8c9993487bc8cec61c71fcb5a27b2b98a23bd152 SHA256: 46bde832e5190269522dc265df4fe37d5b325221f9618a9ba7ee14d2322b7910 Description: documentation for APT development Description-md5: decce989b471f196cddabf52bee63592 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapt-pkg-perl Priority: optional Section: perl Installed-Size: 259 Maintainer: Ubuntu Developers Original-Maintainer: Brendan O'Dea Architecture: amd64 Version: 0.1.29build1 Depends: perl-base (>= 5.18.1-4), perlapi-5.18.1, libapt-pkg4.12 (>= 0.8.0), libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/liba/libapt-pkg-perl/libapt-pkg-perl_0.1.29build1_amd64.deb Size: 85904 MD5sum: 8b0d725a17241eb0c36fb3127776ae21 SHA1: 875bef3fc7afe700ccae00e2a26d86c2340c6cbf SHA256: 3610a28d7802aee55b754c829f453bb6e3bc30ef5897c3affc07b45ae52ab5f4 Description: Perl interface to libapt-pkg Description-md5: b90df5c972edb2fc10beeac8dffd2963 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libapt-pkg4.12 Priority: important Section: admin Installed-Size: 2875 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: amd64 Source: apt Version: 1.0.1ubuntu2 Depends: libbz2-1.0, libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), liblzma5 (>= 5.1.1alpha+20120614), libstdc++6 (>= 4.6), zlib1g (>= 1:1.2.2.3) Pre-Depends: multiarch-support Breaks: apt (<< 0.9.4~), libapt-inst1.5 (<< 0.9.9~) Filename: pool/main/a/apt/libapt-pkg4.12_1.0.1ubuntu2_amd64.deb Size: 638472 MD5sum: 1a989e90a387a263b1909091627d2d75 SHA1: c8e61034778730fcb2b9beaa56f8ecbdd17c71bf SHA256: 84eadc5b816f725be3de6d3740b3c9a7c61f224f52d91f177b7448dd552d30ec Description: package management runtime library Multi-Arch: same Description-md5: b80ec138bbd00d445bb187bcc0acc8fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: libarchive-dev Priority: optional Section: libdevel Installed-Size: 1401 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libarchive Maintainers Architecture: amd64 Source: libarchive Version: 3.1.2-7ubuntu2 Replaces: libarchive1 (<< 2.8.5-3) Depends: libarchive13 (= 3.1.2-7ubuntu2) Breaks: libarchive1 (<< 2.8.5-3) Filename: pool/main/liba/libarchive/libarchive-dev_3.1.2-7ubuntu2_amd64.deb Size: 423852 MD5sum: 2b6537beed175e934ec9216c40187fd8 SHA1: 71369b0e2f773bd5868a957bba949e32c372da43 SHA256: 3a7301b2946e67734207d603351700b681569bc85f91b2298d6255ce60c0590b Description: Multi-format archive and compression library (development files) Multi-Arch: same Homepage: http://www.libarchive.org/ Description-md5: 4fedaf2f347af4287edce946b56ba586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libarchive-extract-perl Priority: important Section: perl Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.70-1 Depends: perl (>= 5.13.6) Filename: pool/main/liba/libarchive-extract-perl/libarchive-extract-perl_0.70-1_all.deb Size: 20324 MD5sum: 0d4c74fefd219a4ef3274c7a7848f79c SHA1: ff3a31d9a7a537deb9449d545bdb78daf6e7e754 SHA256: 6bda339c1f27f1157ec900fc32ceaeb5d487b1b62cc81eaf55c65d9ee6a10fe6 Description: generic archive extracting module Homepage: https://metacpan.org/release/Archive-Extract/ Description-md5: a9917e6be8ae1dd729c20bd956a215e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libarchive-zip-perl Priority: optional Section: perl Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.30-7 Depends: perl Filename: pool/main/liba/libarchive-zip-perl/libarchive-zip-perl_1.30-7_all.deb Size: 90080 MD5sum: 32ed5cb16540f45008ad6e5b311e26cb SHA1: 018081102460d6a2fb561b803684e72ddfefbc0a SHA256: 91f91bad66e0adb4313ed8cc62d11ef45db032a4d92da1e4fb6344fc51c70f65 Description: Perl module for manipulation of ZIP archives Homepage: https://metacpan.org/release/Archive-Zip/ Description-md5: d79121ddf62669813decdcb1d31db043 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libarchive13 Priority: optional Section: libs Installed-Size: 693 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libarchive Maintainers Architecture: amd64 Source: libarchive Version: 3.1.2-7ubuntu2 Depends: libattr1 (>= 1:2.4.46-8), libbz2-1.0, libc6 (>= 2.16), liblzma5 (>= 5.1.1alpha+20120614), liblzo2-2, libnettle4 (>= 2.3), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: lrzip Filename: pool/main/liba/libarchive/libarchive13_3.1.2-7ubuntu2_amd64.deb Size: 259264 MD5sum: 782062c638da2c894fd3fabbc3f00907 SHA1: ea6472f7b4cc9dd6ae1c6732f7c1a2535d1f846f SHA256: d4c3471090106e3a3039ebc5d4f9fdabfa4f2718ec718142a568e08c36800546 Description: Multi-format archive and compression library (shared library) Multi-Arch: same Homepage: http://www.libarchive.org/ Description-md5: 3efebf57a3d06179c6d5746db080711f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libart-2.0-2 Priority: optional Section: libs Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libart-lgpl Version: 2.3.21-2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/liba/libart-lgpl/libart-2.0-2_2.3.21-2_amd64.deb Size: 56918 MD5sum: 85d36e91c874f41c4d14d1f5f1f7090b SHA1: 5a52de0a0573646b30f0d88eaef1ebd4c80280e0 SHA256: a280d7eba3c5a54ecc927f1f5797be66f0d2511fb8ae251b644475d79d19c3df Description: Library of functions for 2D graphics - runtime files Multi-Arch: same Description-md5: c79e80a684d0e1f530bef577fc6a7eed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libart-2.0-dev Priority: optional Section: libdevel Installed-Size: 326 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libart-lgpl Version: 2.3.21-2 Depends: libart-2.0-2 (= 2.3.21-2), pkg-config Filename: pool/main/liba/libart-lgpl/libart-2.0-dev_2.3.21-2_amd64.deb Size: 75100 MD5sum: c0e0b3e1a4d71dda8e9211760e07e7a3 SHA1: 246270a7a88495f323f7c0ce66909f312b571bb2 SHA256: 7067b88646e7ccaf5f88666df79464239b429495f9285f8c3767094b84c8298e Description: Library of functions for 2D graphics - development files Description-md5: 18a0bfc8b4617d3d22b390966c9ece77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libart2.0-cil Priority: optional Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: gtk-sharp2-gapi (<< 2.10.0-1), libart2.24-cil, libgnome2.0-cil (<< 2.16.0-4) Depends: cli-common (>= 0.5.1), libart-2.0-2, libglib2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1) Suggests: monodoc-gtk2.0-manual Conflicts: libart2.24-cil Filename: pool/main/g/gnome-sharp2/libart2.0-cil_2.24.2-3_all.deb Size: 20946 MD5sum: 956a8758565886aa425a2f567347313c SHA1: 5c0ac8e21c101025083daaf1d085c31adcac31eb SHA256: a7d1035125e526244aefefffaef201eb8d658dbfa040864ea62d105fee25f1d8 Description: CLI binding for libart 2.3 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 8db29a9592d413f32791e2e6c15f7a82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libart2.0-cil-dev Priority: optional Section: libs Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: libart2.0-cil (<< 2.24.1-5), libart2.24-cil Depends: libart2.0-cil (= 2.24.2-3) Filename: pool/main/g/gnome-sharp2/libart2.0-cil-dev_2.24.2-3_all.deb Size: 7000 MD5sum: e40be2dadedaf4f0267c02f7871b957f SHA1: 1d1c9ef00b4def3eaf4acff9d2c06e50b4084b18 SHA256: 8d60ba03a5b01d7e1f75a59a27059fbc9efaa76ddf9c4dc734d26dcf374f195e Description: CLI binding for libart 2.3 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 9c9edffaf04cc5204d580ce1eda0ca7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasan0 Priority: optional Section: libs Installed-Size: 201 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libasan0_4.8.2-19ubuntu1_amd64.deb Size: 63032 MD5sum: 0de6c2ba4fe163df4413729cb0681eda SHA1: 1e7211cbae8fc3acacfda470e62f2b62b82ef2ea SHA256: 85135f5efe151e7d20eff82cd8d6635bb1e0b4a7c7d387a709e8296991993fe8 Description: AddressSanitizer -- a fast memory error detector Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 04e20d522e263c6563c2ea719c87026f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libasan0-armhf-cross Priority: extra Section: devel Installed-Size: 147 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armhf-cross (>= 2.19), libgcc1-armhf-cross Filename: pool/main/g/gcc-4.8-armhf-cross/libasan0-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 55846 MD5sum: 55ee7425fca18a885ad4d34d44817a90 SHA1: 9ed74be7a560ec1f45d4314df64acdef8ba97eb8 SHA256: e04285c6de11b252a1f18410fd2522c47eed3411a25d6538b6896dba6ddaadd3 Description: AddressSanitizer -- a fast memory error detector Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 04e20d522e263c6563c2ea719c87026f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasan0-dbg Priority: extra Section: debug Installed-Size: 1053 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libasan0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libasan0-dbg_4.8.2-19ubuntu1_amd64.deb Size: 231474 MD5sum: 66d2bba89773e6de79d5900a5555be6d SHA1: aeb2c776f1d9bb77be254a04daeee302d4bedd26 SHA256: efe7768cb083499ee2db4428051837b66489051ef9e76ad40a0ad7f8bd17b0c5 Description: AddressSanitizer -- a fast memory error detector (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: e0ab64cebecfb2c8f3560d8854956043 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasan0-powerpc-cross Priority: extra Section: devel Installed-Size: 234 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-powerpc-cross (>= 2.18), libgcc1-powerpc-cross Filename: pool/main/g/gcc-4.8-powerpc-cross/libasan0-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 61590 MD5sum: ed2ff59b5a7cb2660483b17612887b1e SHA1: 100a0c5fd399ece3cf239110a80b3eb943972737 SHA256: 83e2e3b0024f277720c651b577f0e8538e285ba0c9377aab7664d56a0410e7dc Description: AddressSanitizer -- a fast memory error detector Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 04e20d522e263c6563c2ea719c87026f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm-dev Priority: optional Section: libdevel Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: amd64 Source: elfutils Version: 0.158-0ubuntu5 Depends: libasm1 (= 0.158-0ubuntu5), libelf-dev Conflicts: libasm0-dev, libelfsh0-dev Filename: pool/main/e/elfutils/libasm-dev_0.158-0ubuntu5_amd64.deb Size: 16898 MD5sum: daf5f1d66d2c8a9de2f8353113ae857b SHA1: e26933f5ee04f68e48849d0e8d2cf175c2d236f6 SHA256: 31f8503cc8017369ae5362d51bd5c7052d42cf22ee3a7bbfe4d99c9b40a1eb41 Description: libasm development libraries and header files Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: 013678075a0c3718f0cb70bbd4172cbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm1 Priority: optional Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: amd64 Source: elfutils Version: 0.158-0ubuntu5 Depends: libc6 (>= 2.14), libelf1 (= 0.158-0ubuntu5), libdw1 (= 0.158-0ubuntu5) Pre-Depends: multiarch-support Filename: pool/main/e/elfutils/libasm1_0.158-0ubuntu5_amd64.deb Size: 15308 MD5sum: 33650e9b7bdf4b7ec994fd6f47f8b4ca SHA1: f26b3ca85253c51057732457b2e88fd53881520b SHA256: a30a6b7d06022602ec5c3e3f30a27e98884815a625088f207132d26314ea560a Description: library with a programmable assembler interface Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: 109ac518b441c307fe4c75e886e56331 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm3-java Priority: optional Section: devel Installed-Size: 875 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: asm3 Version: 3.3.2-2 Filename: pool/main/a/asm3/libasm3-java_3.3.2-2_all.deb Size: 669092 MD5sum: 65c2b1e3af8cfe12ae7cb8ad4a499df2 SHA1: 5ca4422f99bbd0186272ac48a8b417ab846a3866 SHA256: 87ad28f00e151ac7b34e5916b531af9a34fa1a868f05e79d6f5f97a09aee9e1e Description: Java bytecode manipulation framework Homepage: http://asm.objectweb.org/ Description-md5: 821ca42f9901b1a9158de90b6afda2b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm3-java-doc Priority: optional Section: doc Installed-Size: 5794 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: asm3 Version: 3.3.2-2 Suggests: libasm3-java Filename: pool/main/a/asm3/libasm3-java-doc_3.3.2-2_all.deb Size: 506474 MD5sum: 0fc87fa95bf916563ebc024ced77bd6d SHA1: 1094ed8bb7e5d54cc7adaf5f9d0e4809e7cec60a SHA256: 6ddffd19a15783e9c7a0030e4cde73f174f4ba9d43ebb0630e916fd30faacf1b Description: Documentation for ASM, the Java(TM) bytecode manipulation framework Homepage: http://asm.objectweb.org/ Description-md5: e2d878653675aa3fa2a955f9ce360a8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm4-java Priority: optional Section: java Installed-Size: 880 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 4.1-3 Filename: pool/main/liba/libasm4-java/libasm4-java_4.1-3_all.deb Size: 633298 MD5sum: fccda971207bbe12ee22e843cc579b33 SHA1: 4f0b08bf7704f6bf4f4e60422d5a15c60cc6b246 SHA256: 657f1e1f305f4a216362be7f19252966906cfbbb2d59ac8a8b2f400f4bce1171 Description: Java bytecode manipulation framework Homepage: http://asm.objectweb.org/ Description-md5: 821ca42f9901b1a9158de90b6afda2b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm4-java-doc Priority: optional Section: doc Installed-Size: 6007 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libasm4-java Version: 4.1-3 Suggests: libasm4-java Filename: pool/main/liba/libasm4-java/libasm4-java-doc_4.1-3_all.deb Size: 515550 MD5sum: ae026be507d3ccb47673344b090402e0 SHA1: 5536bb6bb2baf9ebe2ead17410d0b3ead12dcd22 SHA256: b291d60a39b4b71a51844d884b2a14344438be3de594981d4dd59a06b0726ed3 Description: Documentation for ASM, the Java(TM) bytecode manipulation framework Homepage: http://asm.objectweb.org/ Description-md5: e2d878653675aa3fa2a955f9ce360a8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasn1-8-heimdal Priority: standard Section: libs Installed-Size: 803 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.14), libcomerr2 (>= 1.01), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libasn1-8-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 160256 MD5sum: 4b61c543fffe8f1b44ea36b621efbc9e SHA1: 41d766c1e8d358e59e7fa7c85f7ff8263b7cb294 SHA256: 209b55ff0c9a8ca1be92d4f1410a101954213d517290377f7c4eea642aa34778 Description: Heimdal Kerberos - ASN.1 library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 3d09240ec7d82874031da02109d856a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libasound2 Priority: optional Section: libs Installed-Size: 1163 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: amd64 Source: alsa-lib Version: 1.0.27.2-3ubuntu7 Depends: libc6 (>= 2.16), libasound2-data (>= 1.0.27.2-3ubuntu7) Pre-Depends: multiarch-support Suggests: libasound2-plugins (>= 1.0.24) Breaks: bluez-alsa (<= 4.94-2), libasound2-plugin-equal (<= 0.6-1), libasound2-plugins (<< 1.0.24) Filename: pool/main/a/alsa-lib/libasound2_1.0.27.2-3ubuntu7_amd64.deb Size: 327374 MD5sum: 68d7619e0a70770c5feef628f8296409 SHA1: bbb2addf54e99b4253b824ef60a7b3a500fa66d6 SHA256: 04dbcbb653c059a0a605f8eac645f2a679ad8e63bd0b1fd290af404bf61503ff Description: shared library for ALSA applications Multi-Arch: same Homepage: http://www.alsa-project.org/ Description-md5: f80c24ce80b76f9116fc6c7d1a8aa34b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libasound2-data Priority: optional Section: libs Installed-Size: 338 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: all Source: alsa-lib Version: 1.0.27.2-3ubuntu7 Replaces: libasound2 (<< 1.0.27-4) Suggests: alsa-utils Breaks: libasound2 (<< 1.0.27-4) Filename: pool/main/a/alsa-lib/libasound2-data_1.0.27.2-3ubuntu7_all.deb Size: 26264 MD5sum: 1b78d6d03ed4303e843ba2c5bae3bc53 SHA1: 1b1e162c971a3eb5487beef6637d55b0b37bde86 SHA256: 6c3530e3e3333071df10fcb6e2282e44abd247b08af6c9b0f79fdfb9c44f385c Description: Configuration files and profiles for ALSA drivers Multi-Arch: foreign Homepage: http://www.alsa-project.org/ Description-md5: ccfa849033bc48b7ca28261b57c3eba7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libasound2-dbg Priority: extra Section: debug Installed-Size: 1386 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: amd64 Source: alsa-lib Version: 1.0.27.2-3ubuntu7 Depends: libasound2 (= 1.0.27.2-3ubuntu7) Filename: pool/main/a/alsa-lib/libasound2-dbg_1.0.27.2-3ubuntu7_amd64.deb Size: 1086994 MD5sum: 180f30f3ee2c872b0acc7f613609b743 SHA1: 86775dbb50d24aca3d3d5006d4c7fa1c68ad1810 SHA256: 076f3536ca16d77e897fadf23b2ea3a641ce94ac0d1c335219ec2bfbc2f9d0a0 Description: debugging symbols for libasound2 Multi-Arch: same Homepage: http://www.alsa-project.org/ Description-md5: 232fcf589d65c42d570a335193dc6cfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasound2-dev Priority: optional Section: libdevel Installed-Size: 468 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: amd64 Source: alsa-lib Version: 1.0.27.2-3ubuntu7 Provides: libasound-dev Depends: libasound2 (= 1.0.27.2-3ubuntu7) Suggests: libasound2-doc Filename: pool/main/a/alsa-lib/libasound2-dev_1.0.27.2-3ubuntu7_amd64.deb Size: 59292 MD5sum: 24efc8aa09add4972a644cd5ae964cde SHA1: 26c7688fd8926cb5eacdd097d837f999bc5d2a54 SHA256: 0fbc23a308d6430896cc21233a84e59812285304b9f5221125d553fc64f2cf9e Description: shared library for ALSA applications -- development files Multi-Arch: same Homepage: http://www.alsa-project.org/ Description-md5: 6049c8294e480247b4c02744f09d51fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasound2-doc Priority: optional Section: libdevel Installed-Size: 12854 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: all Source: alsa-lib Version: 1.0.27.2-3ubuntu7 Depends: libjs-jquery Suggests: libasound2-dev Filename: pool/main/a/alsa-lib/libasound2-doc_1.0.27.2-3ubuntu7_all.deb Size: 585374 MD5sum: df3fab921e416a91b878e9df92fced4a SHA1: 48ea8465ec9b541ac56c40a79a047ee4d8397f2d SHA256: 6a5e818b469a020bb3381aee1229488fbadd89af45b26613bf29c09f1c261370 Description: documentation for user-space ALSA application programming Homepage: http://www.alsa-project.org/ Description-md5: 73dfd0644e1f116cf7c39ae3f4f19a1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasound2-plugins Priority: optional Section: libs Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: amd64 Source: alsa-plugins Version: 1.0.27-2ubuntu2 Depends: libasound2 (>= 1.0.25), libc6 (>= 2.15), libjack-jackd2-0 (>= 1.9.5~dfsg-14) | libjack-0.116, libpulse0 (>= 1:0.99.1), libsamplerate0 (>= 0.1.7), libspeexdsp1 (>= 1.2~beta3.2-1) Pre-Depends: multiarch-support Filename: pool/main/a/alsa-plugins/libasound2-plugins_1.0.27-2ubuntu2_amd64.deb Size: 68846 MD5sum: 468f5742b924dfa56463a901bc7f0c23 SHA1: edfa72b2a14170b860af16e686f0aaf6c3b8b719 SHA256: ec1ea81328fbc7cb72e23b7135b9ee2dba1e9a622edf54cbe3dcd49280387a4a Description: ALSA library additional plugins Multi-Arch: same Homepage: http://www.alsa-project.org/ Description-md5: c0d2cf058a71ca3009a28dc5e2fd2801 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libaspell-dev Priority: optional Section: libdevel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: amd64 Source: aspell Version: 0.60.7~20110707-1ubuntu1 Depends: libaspell15 (= 0.60.7~20110707-1ubuntu1) Suggests: aspell-doc Filename: pool/main/a/aspell/libaspell-dev_0.60.7~20110707-1ubuntu1_amd64.deb Size: 7218 MD5sum: cfaa0ba72b7d312541319a862420d689 SHA1: f444136977da4119c2c34d297b4138cdc3902c31 SHA256: eb02f8baf3f9062e9de30eba87d8f2035460ed45fc2ff45246d5b2f8e921d559 Description: Development files for applications with GNU Aspell support Homepage: http://aspell.net/ Description-md5: d095354c8f2a86e3e8733fec8ffeb6fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaspell15 Priority: optional Section: libs Installed-Size: 2263 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: amd64 Source: aspell Version: 0.60.7~20110707-1ubuntu1 Depends: libc6 (>= 2.14), libstdc++6 (>= 4.6) Recommends: aspell-en | aspell-dictionary | aspell6a-dictionary Suggests: aspell Conflicts: aspell6-dictionary Breaks: aspell-bin (<< 0.60.3-2) Filename: pool/main/a/aspell/libaspell15_0.60.7~20110707-1ubuntu1_amd64.deb Size: 334942 MD5sum: 54939c515ae40797694aa8f1ed2e6781 SHA1: 4572918c83e2d304f7f6c57816f58605ecad0299 SHA256: 1f41321324bec0a4d385ebf097b8a31ba1885f0345a1ea0b077af0864ddcc119 Description: GNU Aspell spell-checker runtime library Homepage: http://aspell.net/ Description-md5: 6b1b157cf893a6b279b08af6c2efbd71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libasprintf-dev Priority: optional Section: libdevel Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Source: gettext Version: 0.18.3.1-1ubuntu2 Replaces: gettext (<< 0.18.1.1-10) Depends: libasprintf0c2 (= 0.18.3.1-1ubuntu2) Suggests: gettext-doc Breaks: gettext (<< 0.18.1.1-10) Filename: pool/main/g/gettext/libasprintf-dev_0.18.3.1-1ubuntu2_amd64.deb Size: 4444 MD5sum: aabe2b52e16a970099ba64c4e364b1ce SHA1: 61a6286a6ce3fdeaf9cd35da034d10adee4be27b SHA256: 22f4ac12960821e71bbf75e6bd2856ba7a2430f7c1f2f233cfc9cfe8d01758ab Description: GNU Internationalization library development files Multi-Arch: same Homepage: http://www.gnu.org/software/gettext/ Description-md5: 393d9426ed23b67dd70484172664fc9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libasprintf0c2 Priority: standard Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Source: gettext Version: 0.18.3.1-1ubuntu2 Replaces: gettext-base (<< 0.18.1.1-6) Depends: libc6 (>= 2.14), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: gettext-base (<< 0.18.1.1-6) Filename: pool/main/g/gettext/libasprintf0c2_0.18.3.1-1ubuntu2_amd64.deb Size: 6654 MD5sum: 6832d7d70d9cc9451dbf9a55bd69bf2c SHA1: a73e19186fa1392ac5e2544cc57b31ee9f7cf760 SHA256: 18a9d6e32c70d71a47ffd150c4bdca70d212e9790284937530473402f917a873 Description: GNU library to use fprintf and friends in C++ Multi-Arch: same Homepage: http://www.gnu.org/software/gettext/ Description-md5: 6eb9b97491340c986012d5953e1dc01b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libassuan-dev Priority: optional Section: libdevel Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: libassuan Version: 2.1.1-1ubuntu1 Depends: libassuan0 (= 2.1.1-1ubuntu1), dpkg (>= 1.15.4) | install-info Filename: pool/main/liba/libassuan/libassuan-dev_2.1.1-1ubuntu1_amd64.deb Size: 84702 MD5sum: 1a20147693971a468c349f652108115d SHA1: e4ea33097ca5a83dc2c93593954e6fbb878559c3 SHA256: 89064b629b8181a684f2db5c1576b11306f99ef3dd5328456449d948e77e88bd Description: IPC library for the GnuPG components Homepage: http://www.gnupg.org/(en)/related_software/libassuan/index.html Description-md5: 21f42f002a320cdf878147698100e624 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libassuan0 Priority: optional Section: libs Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: libassuan Version: 2.1.1-1ubuntu1 Depends: libc6 (>= 2.14), libgpg-error0 (>= 1.10) Pre-Depends: multiarch-support Filename: pool/main/liba/libassuan/libassuan0_2.1.1-1ubuntu1_amd64.deb Size: 29748 MD5sum: f691dce6c7037983513d9c40bd038c4a SHA1: 4bb3d3253488e8bc4a80c086b029d595d67f8d24 SHA256: 1a0c9a850a5479fe9bfd18a2cc5a2e2ff6d87a03c24fbd0792ceaff97f07d1b7 Description: IPC library for the GnuPG components Multi-Arch: same Homepage: http://www.gnupg.org/(en)/related_software/libassuan/index.html Description-md5: 843ea2cfa8c78142dfe1e4eb215ca365 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, mail-server, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libassuan0-dbg Priority: extra Section: debug Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: libassuan Version: 2.1.1-1ubuntu1 Depends: libassuan0 (= 2.1.1-1ubuntu1) Filename: pool/main/liba/libassuan/libassuan0-dbg_2.1.1-1ubuntu1_amd64.deb Size: 108106 MD5sum: 1b0d7e1ef141fc5f65cc7c247c18c963 SHA1: abf64322a44851077fe348e82977365166919b60 SHA256: 7ff8276e7d2f39b84498bc07ade46515cbb7b858eca8eede9605943e4f3e047d Description: IPC library for the GnuPG components -- debugging symbols Multi-Arch: same Homepage: http://www.gnupg.org/(en)/related_software/libassuan/index.html Description-md5: 173295a7eb844c6edbc69762fc5121a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasyncns-dev Priority: optional Section: libdevel Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Tanguy Ortolo Architecture: amd64 Source: libasyncns Version: 0.8-4ubuntu2 Depends: libasyncns0 (= 0.8-4ubuntu2) Filename: pool/main/liba/libasyncns/libasyncns-dev_0.8-4ubuntu2_amd64.deb Size: 84464 MD5sum: fc6c70110539b0c1bec4736e2695e15d SHA1: 25be8d807185d4744e8d2d595091c5739e0cf30c SHA256: fd5b5dc7783e3169a21c3dabcc82d380bb775b9cc4f99228f82ccbec16527de9 Description: Asynchronous name service query library development files Homepage: http://0pointer.de/lennart/projects/libasyncns/ Description-md5: fc74527707b369413fc2c96164fbb7bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasyncns0 Priority: optional Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Tanguy Ortolo Architecture: amd64 Source: libasyncns Version: 0.8-4ubuntu2 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/liba/libasyncns/libasyncns0_0.8-4ubuntu2_amd64.deb Size: 11886 MD5sum: bf233bc958e37dab60c0f1ab7f8c6bf0 SHA1: 81388a10e70274af4360eb463c877b1e2981ef60 SHA256: 592dd8e93d69612027f7b87a4f46ed2c12aea2d1c64ea874f6545871071535d2 Description: Asynchronous name service query library Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libasyncns/ Description-md5: bf0514d5327bc2f861035ea0499ea160 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libatasmart-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: libatasmart Version: 0.19-3 Depends: libatasmart4 (= 0.19-3) Filename: pool/main/liba/libatasmart/libatasmart-dev_0.19-3_amd64.deb Size: 5284 MD5sum: d7630a7208077e430675635a3253b548 SHA1: a96f4ef3d286d22988210aa951850156f410ec17 SHA256: 69df291af9812e7dce4508ebd328454b38eadc59550c00811ee750a8048cb387 Description: ATA S.M.A.R.T. reading and parsing library - development files Homepage: http://0pointer.de/blog/projects/being-smart.html Description-md5: d276b59da8737c9307085e946262c4d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatasmart4 Priority: optional Section: libs Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: libatasmart Version: 0.19-3 Depends: libc6 (>= 2.14), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/liba/libatasmart/libatasmart4_0.19-3_amd64.deb Size: 27090 MD5sum: ba78557654a73927930481c4a082d884 SHA1: 4eefad9f722969f1f9d65471f9de6a4bbd4fcc39 SHA256: 690b86d1275aa1ef7aab7159d3850465185ee80e798e7344030f10ff5bb356b2 Description: ATA S.M.A.R.T. reading and parsing library Multi-Arch: same Homepage: http://0pointer.de/blog/projects/being-smart.html Description-md5: 4fb72691593fceb8c154958820feb0ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatk-adaptor Priority: optional Section: misc Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: at-spi2-atk Version: 2.10.2-2ubuntu1 Replaces: at-spi Provides: at-spi Depends: libatk-bridge2.0-0 (>= 2.5.3), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.12.0) Conflicts: at-spi Filename: pool/main/a/at-spi2-atk/libatk-adaptor_2.10.2-2ubuntu1_amd64.deb Size: 9864 MD5sum: a8007ec24bfd8e2904d682ef4af4e33a SHA1: 989985680470e656f90ca2be8a2c94072a35e8b5 SHA256: 750d5d62250971f8c35bc155bae06b4a86f58c032821cb6a8fd8e019ee344aa8 Description: AT-SPI 2 toolkit bridge Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 555ac72f9da0fe143c3859b4404b33e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatk-adaptor-dbg Priority: extra Section: debug Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: at-spi2-atk Version: 2.10.2-2ubuntu1 Depends: libatk-adaptor (= 2.10.2-2ubuntu1) Filename: pool/main/a/at-spi2-atk/libatk-adaptor-dbg_2.10.2-2ubuntu1_amd64.deb Size: 4234 MD5sum: 2f04442aa5c283d8377b4a14e515d028 SHA1: 43694aa9d8d9fb4fa0be056c0e70e360c4a16ffc SHA256: 84e33d6660e8417fc15c0a6a4a8bbf19233c0dba733e72a6ab5db8a5a0f3d2b2 Description: AT-SPI 2 toolkit bridge - debugging symbols Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 54d72f2b48843e611d994b4a51c4f160 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatk-bridge2.0-0 Priority: optional Section: libs Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: at-spi2-atk Version: 2.10.2-2ubuntu1 Depends: libatk1.0-0 (>= 2.10.0), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/a/at-spi2-atk/libatk-bridge2.0-0_2.10.2-2ubuntu1_amd64.deb Size: 46842 MD5sum: 3ef7182feb14ac2bdd209a377b2325bc SHA1: 7a5c544af9594616feb6712ee3de914f2de4db4e SHA256: 6db696d9fa224c4339a5eaca3863d1ca1c8e14bf0ffbb58ec35ba561c4599ddb Description: AT-SPI 2 toolkit bridge - shared library Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: c290f0f14adb88ba9a3084abd9dc2268 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatk-bridge2.0-0-dbg Priority: extra Section: debug Installed-Size: 257 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: at-spi2-atk Version: 2.10.2-2ubuntu1 Depends: libatk-bridge2.0-0 (= 2.10.2-2ubuntu1) Filename: pool/main/a/at-spi2-atk/libatk-bridge2.0-0-dbg_2.10.2-2ubuntu1_amd64.deb Size: 173544 MD5sum: 2e2b6c44c8fafc8c7c477f35f1c35b67 SHA1: b4328c221b708a20366f9bdc0c148734d27b7296 SHA256: 9261c81b67433fd43ae2a173ab6f97a6f27f92afd6fa2cbe7194c0a77ad6267c Description: AT-SPI 2 toolkit bridge - debugging symbols Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 0f47ff42a5311c3b6c914986ff693d8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatk-bridge2.0-dev Priority: optional Section: libdevel Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: at-spi2-atk Version: 2.10.2-2ubuntu1 Depends: libatk-bridge2.0-0 (= 2.10.2-2ubuntu1), libglib2.0-dev (>= 2.4.1-2) Filename: pool/main/a/at-spi2-atk/libatk-bridge2.0-dev_2.10.2-2ubuntu1_amd64.deb Size: 2778 MD5sum: d587f5bed9a2274e28020b7aeaaec155 SHA1: 25b0c6ee7bdc2849b2ca0f36603f3207fed81347 SHA256: 21d1e8e245fadab2bd7c9b10324ba01cd6feddb368236c63b355b9cde8b2b60a Description: Development files for the AT-SPI 2 toolkit bridge Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 178e73fa408e4d41e0478ebc5a88e6f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatk-wrapper-java Priority: optional Section: java Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: java-atk-wrapper Version: 0.30.4-4 Depends: default-jre | java2-runtime Recommends: libatk-wrapper-java-jni Filename: pool/main/j/java-atk-wrapper/libatk-wrapper-java_0.30.4-4_all.deb Size: 30172 MD5sum: 014b8ad7900e10b8097d9197b104eb4b SHA1: 042775635ea3d4ce70040eb53dc2779e4b42c049 SHA256: 0662c2f751100346012c4123fa49d1272da1a778de8ba1ff1ab45124c3090712 Description: ATK implementation for Java using JNI Multi-Arch: foreign Homepage: http://ftp.gnome.org/pub/GNOME/sources/java-atk-wrapper/ Description-md5: 2435a7ab3fb5e265d740a2fa375e41e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: libatk-wrapper-java-jni Priority: optional Section: java Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: java-atk-wrapper Version: 0.30.4-4 Depends: libatk1.0-0 (>= 1.18.0), libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.12.0), default-jre | java2-runtime, libatk-wrapper-java (>= 0.30.4-4) Pre-Depends: multiarch-support Filename: pool/main/j/java-atk-wrapper/libatk-wrapper-java-jni_0.30.4-4_amd64.deb Size: 25236 MD5sum: ee55eb580bc5391a03c66f1008eecac7 SHA1: 1fa355329eaf05d1d149c785a7aa367a79ab35e7 SHA256: 54263418944e340e212c1ae3f94cc2580efc3225a7e27518b1021745458346ad Description: ATK implementation for Java using JNI (JNI bindings) Multi-Arch: same Homepage: http://ftp.gnome.org/pub/GNOME/sources/java-atk-wrapper/ Description-md5: ba571b57059ec7e09d91c5389edc0996 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: libatk1.0-0 Priority: optional Section: libs Installed-Size: 224 Maintainer: Ubuntu Developers Architecture: amd64 Source: atk1.0 Version: 2.10.0-2ubuntu2 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libatk1.0-data (= 2.10.0-2ubuntu2) Pre-Depends: multiarch-support Filename: pool/main/a/atk1.0/libatk1.0-0_2.10.0-2ubuntu2_amd64.deb Size: 50896 MD5sum: cc6d2d3e3bbecec67c66b5901861ed12 SHA1: 26513b37575b8794292a812fb841ec2062665b68 SHA256: d3aa0af6852a85bd8a7d4db250f040f91f6df4084d7a0ac09fcce59749f3e047 Description: ATK accessibility toolkit Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 1c89fa26cb3e32fd7a97c099285532f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatk1.0-data Priority: optional Section: misc Installed-Size: 92 Maintainer: Ubuntu Developers Architecture: all Source: atk1.0 Version: 2.10.0-2ubuntu2 Filename: pool/main/a/atk1.0/libatk1.0-data_2.10.0-2ubuntu2_all.deb Size: 13736 MD5sum: 023fba9076d80ade2849987daf871532 SHA1: 118ce636ecc156ea91f08f8ecb6d60b93732b994 SHA256: 43e680d915cf6f43b9bf83a3da0030e340cddd6683122346f215abcbfebd0676 Description: Common files for the ATK accessibility toolkit Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 63757e00246d87f2d55232721e35abc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatk1.0-dbg Priority: extra Section: libdevel Installed-Size: 255 Maintainer: Ubuntu Developers Architecture: amd64 Source: atk1.0 Version: 2.10.0-2ubuntu2 Depends: libatk1.0-0 (= 2.10.0-2ubuntu2) Filename: pool/main/a/atk1.0/libatk1.0-dbg_2.10.0-2ubuntu2_amd64.deb Size: 137144 MD5sum: ceb9d7815c337f80754c8e346f36c84d SHA1: d30552240efd7a5793d2df732a625966bce3cb61 SHA256: 44a8fecb61db6b60a69baa8fe26c7b33e51ab01535a8b4c2af0488f21d990151 Description: ATK libraries and debugging symbols Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 80bcc20a15a8cede2d753e7ffc4fcb70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatk1.0-dev Priority: optional Section: libdevel Installed-Size: 935 Maintainer: Ubuntu Developers Architecture: amd64 Source: atk1.0 Version: 2.10.0-2ubuntu2 Replaces: gir-repository-dev Depends: libatk1.0-0 (= 2.10.0-2ubuntu2), gir1.2-atk-1.0 (= 2.10.0-2ubuntu2), pkg-config, libglib2.0-dev (>= 2.31.2) Filename: pool/main/a/atk1.0/libatk1.0-dev_2.10.0-2ubuntu2_amd64.deb Size: 67808 MD5sum: e7da491ce87f69ab85281d9af6bd4c6d SHA1: 8d0dae5e56fec6e80f8b1d227253c68d499b8b41 SHA256: f023c0ffd2d180824087a0a446da71d14a4df5b8168dd588d196f7d6abb4ab33 Description: Development files for the ATK accessibility toolkit Homepage: http://www.gtk.org/ Description-md5: 53650239fb69a38c98ea6ac0aaa4e43a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatk1.0-doc Priority: optional Section: doc Installed-Size: 1106 Maintainer: Ubuntu Developers Architecture: all Source: atk1.0 Version: 2.10.0-2ubuntu2 Suggests: libglib2.0-doc, libgtk2.0-doc, devhelp Filename: pool/main/a/atk1.0/libatk1.0-doc_2.10.0-2ubuntu2_all.deb Size: 91336 MD5sum: 30996fbf108d285b8571e06784c607b7 SHA1: fa83a493f149508ab5d7aa000435e024705b3140 SHA256: 29eaefb79702c521ae855e00fcdc93909718ee552128aeb72618efec3c44c2a6 Description: Documentation files for the ATK toolkit Homepage: http://www.gtk.org/ Description-md5: 1cd17cc7acbbb1b0f9afe07b816b808b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libatkmm-1.6-1 Priority: optional Section: libs Installed-Size: 326 Maintainer: Ubuntu Developers Original-Maintainer: Krzysztof Klimonda Architecture: amd64 Source: atkmm1.6 Version: 2.22.7-2ubuntu1 Replaces: libgtkmm-2.4-1c2a (<< 1:2.22.0) Depends: libatk1.0-0 (>= 1.12.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libglibmm-2.4-1c2a (>= 2.36.2), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: libgtkmm-2.4-1c2a (<< 1:2.22.0) Filename: pool/main/a/atkmm1.6/libatkmm-1.6-1_2.22.7-2ubuntu1_amd64.deb Size: 58450 MD5sum: 2352d75763594a4b8333eda90d45ab6c SHA1: 5fd191734cc8ba07e0b1aa82033613aa181b1003 SHA256: d6ea60d5e57bc029dbe22919bbf42621e939148455d33c9f5e288e40a34adbf0 Description: C++ wrappers for ATK accessibility toolkit (shared libraries) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: f8f61bf9439c2cdfdc1b6675c29553dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatkmm-1.6-dbg Priority: extra Section: debug Installed-Size: 597 Maintainer: Ubuntu Developers Original-Maintainer: Krzysztof Klimonda Architecture: amd64 Source: atkmm1.6 Version: 2.22.7-2ubuntu1 Replaces: libgtkmm-2.4-dbg (<< 1:2.22.0) Depends: libatkmm-1.6-1 (= 2.22.7-2ubuntu1) Breaks: libgtkmm-2.4-dbg (<< 1:2.22.0) Filename: pool/main/a/atkmm1.6/libatkmm-1.6-dbg_2.22.7-2ubuntu1_amd64.deb Size: 490280 MD5sum: 1a6e37aeedf5873486b09f4dc468efc8 SHA1: aac8ea1f08e74f4cd302e8a5eb2dc65563a322af SHA256: a3948f7bfbf3b370a09d6e50680a42832c3c8e17c4fbb87a557898203fbc276a Description: C++ wrappers for ATK accessibility toolkit (debug symbols) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: caf14a5d54e8e5e415813e74d9d006d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatkmm-1.6-dev Priority: optional Section: libdevel Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Krzysztof Klimonda Architecture: amd64 Source: atkmm1.6 Version: 2.22.7-2ubuntu1 Replaces: libgtkmm-2.4-dev (<< 1:2.22.0) Depends: libatkmm-1.6-1 (= 2.22.7-2ubuntu1), libglibmm-2.4-dev (>= 2.36.0), libatk1.0-dev (>= 1.12.0) Suggests: libatkmm-1.6-doc Breaks: libgtkmm-2.4-dev (<< 1:2.22.0) Filename: pool/main/a/atkmm1.6/libatkmm-1.6-dev_2.22.7-2ubuntu1_amd64.deb Size: 27202 MD5sum: e5df24b53d7f648dd5e1075433d7383e SHA1: 97b46fa5589c5e4fcaf42fc3acd9084e31f2017b SHA256: 9b7ea64af3e29f71fe828bb0b2549358cb74a1b1427d8f5d22e6f3ad9920a05c Description: C++ wrappers for ATK accessibility toolkit (development files) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 2f43001f33ccae4bec69147e61af7d18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatkmm-1.6-doc Priority: optional Section: doc Installed-Size: 1338 Maintainer: Ubuntu Developers Original-Maintainer: Krzysztof Klimonda Architecture: all Source: atkmm1.6 Version: 2.22.7-2ubuntu1 Depends: lynx | www-browser, doc-base Recommends: gtkmm-documentation Filename: pool/main/a/atkmm1.6/libatkmm-1.6-doc_2.22.7-2ubuntu1_all.deb Size: 89712 MD5sum: 77bf0ba4cee7d8be6fddb5d1692abecb SHA1: d860a6274101def76e22772743dad326a26c9e62 SHA256: c46e3e0bf84b437426423210965c01caa2f76be79587ac4aa0e0d5690c3a63b2 Description: C++ wrappers for ATK accessibility toolkit (documentation) Multi-Arch: foreign Homepage: http://www.gtkmm.org/ Description-md5: a8e26cc9a5de19c795cfb2d35352e480 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatm1 Priority: optional Section: libs Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Peter De Schrijver (p2) Architecture: amd64 Source: linux-atm Version: 1:2.5.1-1.5 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: atm-tools (<< 2.4.1-6) Filename: pool/main/l/linux-atm/libatm1_2.5.1-1.5_amd64.deb Size: 24248 MD5sum: 660841797374d33e8cafd0f541bea7cf SHA1: d2e8f519987edc75e2a4b65b941fdcebf553dee2 SHA256: 976dcfa4e7538010c41563ff84b259575e50d41fc864d8611c8ff9fdb8eed8e8 Description: shared library for ATM (Asynchronous Transfer Mode) Multi-Arch: same Homepage: http://linux-atm.sourceforge.net/ Description-md5: f31a6a0202925696ffa68472e483852e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-live Package: libatm1-dev Priority: optional Section: libdevel Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Peter De Schrijver (p2) Architecture: amd64 Source: linux-atm Version: 1:2.5.1-1.5 Replaces: atm-dev (<< 2.4.1-7) Provides: libatm-dev Depends: libatm1 (= 1:2.5.1-1.5) Conflicts: atm-dev (<< 2.4.1-7) Filename: pool/main/l/linux-atm/libatm1-dev_2.5.1-1.5_amd64.deb Size: 45144 MD5sum: 83d32bd05fc04480553c7a438a03e657 SHA1: 87eadb6f6c5f1c65913f4f00f8c1b0275afd3f65 SHA256: f8ad8ef4214d1fb8f05632407bf71a3b66216b6118460b4358fde1af725895c2 Description: Development files for compiling ATM programs Homepage: http://linux-atm.sourceforge.net/ Description-md5: b034705fcdd3f4d2345d779744f7526d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic-ops-dev Priority: optional Section: libdevel Installed-Size: 674 Maintainer: Ubuntu Developers Original-Maintainer: Ian Wienand Architecture: amd64 Source: libatomic-ops Version: 7.4-0ubuntu3 Replaces: libatomic-ops Filename: pool/main/liba/libatomic-ops/libatomic-ops-dev_7.4-0ubuntu3_amd64.deb Size: 69734 MD5sum: 5ea14a256afbf4e328ff37d1e980f979 SHA1: d702c5a4638a7fdba9e67e0b69bb9f8e1dc8a764 SHA256: 3728b6d98436f7267ddad34b04e3b8035e90189237ac5d611e0fd7263ca8fae9 Description: A library for atomic operations (development files) Description-md5: d0d2699cb21face9e489b82ad0d63d49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic1 Priority: optional Section: libs Installed-Size: 58 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libatomic1_4.8.2-19ubuntu1_amd64.deb Size: 8626 MD5sum: 837ddeb604164e6dae3bf516fce95654 SHA1: 6e6d8a746387791ec56ba9e85a3b225586a8c7ca SHA256: aad515992ce4842ad51a8f3a0ab9d953adffd1f195fac7a862e9e638c0b9a1a4 Description: support library providing __atomic built-in functions Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 16938852526fc26bdbcb46c18435ed08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatomic1-arm64-cross Priority: extra Section: devel Installed-Size: 47 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libc6-arm64-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-arm64-cross/libatomic1-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 5722 MD5sum: 2c1f18aef46c2c331f501ad1a6feaf02 SHA1: 20d1250c7d6ed14a15669eb163eb2956d2fe3938 SHA256: 858cedfa4afa76b6dbfacdf6bda637af8542591474dc3174a42d0a3b4c3e15b1 Description: support library providing __atomic built-in functions Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 16938852526fc26bdbcb46c18435ed08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic1-armhf-cross Priority: extra Section: devel Installed-Size: 42 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libatomic1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 5748 MD5sum: a3ad12300426a6783cf2d450ec7b8bbb SHA1: b86744d84eaf1f4210bab6c1253e24e407aaedbb SHA256: 1e0bb270ea1c0370f8da3a8eebc985b8177943e44f99000bafd609e00deb7ad1 Description: support library providing __atomic built-in functions Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 16938852526fc26bdbcb46c18435ed08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic1-dbg Priority: extra Section: debug Installed-Size: 142 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libatomic1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libatomic1-dbg_4.8.2-19ubuntu1_amd64.deb Size: 16472 MD5sum: 5ee47b0f4d118ad71fe75caa1ececdd5 SHA1: 46f214116b9c71e596f702c2068762e88d6c0acb SHA256: 0952a6cd7c17c7fbd35774de9ffa74eabb435bc8a23b3e613d04b3a3a6197da7 Description: support library providing __atomic built-in functions (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 26d76486cdd4f1973b721c8f322e9e61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic1-powerpc-cross Priority: extra Section: devel Installed-Size: 54 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/libatomic1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 6846 MD5sum: d8fc4ed81a1cade6eb757894478f2c39 SHA1: d1fe34274b2bd1ea1366bd81420894f22a3bcc55 SHA256: 432e6c0d60ea40655e5bbadda39199a5dea73483ecba2c5d39d8d05a6bc5b8da Description: support library providing __atomic built-in functions Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 16938852526fc26bdbcb46c18435ed08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic1-ppc64el-cross Priority: extra Section: devel Installed-Size: 58 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6-ppc64el-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libatomic1-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 7644 MD5sum: ed0828efaaa1629df469c535d62cb455 SHA1: a171243a68ce6246e4ded44cffab7e41551410b6 SHA256: af3e061809d18f1691e18ff5efe9e10206e456f3f2054f46e2e5223991dce189 Description: support library providing __atomic built-in functions Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 16938852526fc26bdbcb46c18435ed08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatspi2.0-0 Priority: optional Section: misc Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Depends: libc6 (>= 2.7), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.37.3), libx11-6 Pre-Depends: multiarch-support Recommends: at-spi2-core (= 2.10.2.is.2.10.1-0ubuntu1) Filename: pool/main/a/at-spi2-core/libatspi2.0-0_2.10.2.is.2.10.1-0ubuntu1_amd64.deb Size: 53134 MD5sum: a604761754399a22384e4c1906c3e2e6 SHA1: 42da1c1d9effbf9a9c2a9cf1e28e00c51f199a93 SHA256: 999c6571f6147442209476b0cdc7d9892d58cbafd37abd70b2da82e6b9ff3ed7 Description: Assistive Technology Service Provider Interface - shared library Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 8e8543c1983d4f5d6305bf8bf14c302b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatspi2.0-0-dbg Priority: extra Section: debug Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Depends: libatspi2.0-0 (= 2.10.2.is.2.10.1-0ubuntu1) Filename: pool/main/a/at-spi2-core/libatspi2.0-0-dbg_2.10.2.is.2.10.1-0ubuntu1_amd64.deb Size: 158974 MD5sum: 1a9e1d479925af9e3d6bb23f2ef3dede SHA1: 232855516943880bd450d92e0b805bd42e2dab0f SHA256: 0793b3579124297f1160aed30cc481806c2285c1354527ebddde55583153634c Description: Assistive Technology Service Provider Interface - debugging symbols Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 2f09127682a7556899d0526f5ed08a5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatspi2.0-dev Priority: optional Section: libdevel Installed-Size: 558 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Replaces: gir-repository-dev Depends: gir1.2-atspi-2.0 (= 2.10.2.is.2.10.1-0ubuntu1), libatspi2.0-0 (= 2.10.2.is.2.10.1-0ubuntu1), libglib2.0-dev (>= 2.4.1-2), libdbus-1-dev, libdbus-glib-1-dev, dbus, libxtst-dev Filename: pool/main/a/at-spi2-core/libatspi2.0-dev_2.10.2.is.2.10.1-0ubuntu1_amd64.deb Size: 55640 MD5sum: 71e19634c7c86ee8cf5772aecb4a7a29 SHA1: 202eab7553a64fe99483089ae426593aecde5594 SHA256: 20f0c1683d7f26da22ead9760b1e4713311a898fe36fe5951b74697fe6c6c7e8 Description: Development files for the assistive technology serice provider Homepage: http://live.gnome.org/Accessibility Description-md5: bec738c7ab772a19d5eca02168d4c616 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libattica-dbg Priority: extra Section: debug Installed-Size: 3544 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: attica Version: 0.4.2-1 Depends: libattica0.4 (= 0.4.2-1) Filename: pool/main/a/attica/libattica-dbg_0.4.2-1_amd64.deb Size: 3410988 MD5sum: 1d3656e5718e38d53d551855d9c3d3d0 SHA1: 7e1f13de3857df17b393b838163410f175af39a3 SHA256: 22f6f088028fc57a741ecbba84fd739c81f047a0e9747206889f922e98564a77 Description: debug symbols for libattica Multi-Arch: same Homepage: https://projects.kde.org/attica Description-md5: d2a407a3867a8f94e53be8010010d6d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libattica-dev Priority: optional Section: libdevel Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: attica Version: 0.4.2-1 Depends: libattica0.4 (= 0.4.2-1), libqt4-dev Filename: pool/main/a/attica/libattica-dev_0.4.2-1_amd64.deb Size: 23160 MD5sum: d8ada1cdd2ce44bbcb49f2fab5ceb5a3 SHA1: c2e980a3df25d938f0a83ee22af6350cdcc5dfd4 SHA256: fe2bee64d53b7471bc72f9dcc033aa59d7b538fc964a9a034057976b108bf61e Description: development files for libattica Homepage: https://projects.kde.org/attica Description-md5: eb7e7920f297acf37f5a7bd13ce86c11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libattica0.4 Priority: optional Section: libs Installed-Size: 1032 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: attica Version: 0.4.2-1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-network (>= 4:4.7), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/a/attica/libattica0.4_0.4.2-1_amd64.deb Size: 283844 MD5sum: 169b10aa4fd09d5de786c1d322d04dcd SHA1: 3b581e6cb9c94cf086ef46106eb06765d7460322 SHA256: 42c7d05253db6966fbe10244629a422f99ef35854c4b3ce69ad13a70d965a5a1 Description: Qt library that implements the Open Collaboration Services API Multi-Arch: same Homepage: https://projects.kde.org/attica Description-md5: 2b0297fc24f9bdc9f8e014f379f87612 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libattr1 Priority: required Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: attr Version: 1:2.4.47-1ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: attr (<< 2.0.0) Filename: pool/main/a/attr/libattr1_2.4.47-1ubuntu1_amd64.deb Size: 9590 MD5sum: 6a6e53733162247d1bcc1da7aa2517ca SHA1: 5506bf1c306279adce8ee19b51f36e58b7204d5d SHA256: f405e4cd78bf09a4f3340fba7f22cce806cd27ffbb56234e11813c6e63a5bc18 Description: Extended attribute shared library Multi-Arch: same Homepage: http://savannah.nongnu.org/projects/attr/ Description-md5: 828e462109496dfbca870108ebcb31fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libattr1-dev Priority: extra Section: libdevel Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: attr Version: 1:2.4.47-1ubuntu1 Replaces: attr-dev Provides: attr-dev Depends: libc6-dev | libc-dev, libattr1 (= 1:2.4.47-1ubuntu1) Conflicts: attr (<< 2.0.0), attr-dev Filename: pool/main/a/attr/libattr1-dev_2.4.47-1ubuntu1_amd64.deb Size: 33578 MD5sum: eeebe09424af8847360667ac12a083d6 SHA1: 41b59d80f4704719518ce6c4028f3e84a449f32f SHA256: 70ef75d24246141ce219d9230fb7470c5d5c59fcef5d077c68b513d16fa54469 Description: Extended attribute static libraries and headers Multi-Arch: same Homepage: http://savannah.nongnu.org/projects/attr/ Description-md5: 094f1b349383bbd827cf50256c2c1c7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaudio-dev Priority: extra Section: libdevel Installed-Size: 1834 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: amd64 Source: nas Version: 1.9.4-1 Replaces: nas-dev Provides: nas-dev Depends: libaudio2 (= 1.9.4-1), libc6 (>= 2.15), libxau6, libxt6 Conflicts: nas-dev Filename: pool/main/n/nas/libaudio-dev_1.9.4-1_amd64.deb Size: 566146 MD5sum: 2d07e8bdca4f5ea252ce44f24ee3ea02 SHA1: 964a0711adf2643f00418f251da9611b98982edc SHA256: ee0000ce3c68975ff6ada4e5127ffa590cce27ba7443829501d5abf3872bfd16 Description: Network Audio System - development files Multi-Arch: same Description-md5: 64f0a82f05b3c53e80a2a946147df4f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaudio2 Priority: optional Section: libs Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: amd64 Source: nas Version: 1.9.4-1 Replaces: nas-lib Provides: nas-lib Depends: libc6 (>= 2.15), libxau6, libxt6 Pre-Depends: multiarch-support Suggests: nas Filename: pool/main/n/nas/libaudio2_1.9.4-1_amd64.deb Size: 57110 MD5sum: 0b27842e98b174ee49dfe44c436cf9ec SHA1: 2e4860fad7382e46839e34651bcbd3eb8a9f9c09 SHA256: d13ad1a06613b91282312309dfbc18c577f664df236957ac17d0709d4c582568 Description: Network Audio System - shared libraries Multi-Arch: same Description-md5: e406a6ba4c2219d0fa8de179e6be344c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libaudiofile-dbg Priority: extra Section: debug Installed-Size: 653 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: audiofile Version: 0.3.6-2 Depends: libaudiofile1 (= 0.3.6-2) Filename: pool/main/a/audiofile/libaudiofile-dbg_0.3.6-2_amd64.deb Size: 596888 MD5sum: f1344ec72c1be255bfd4ac599dad8538 SHA1: 331e527053d5b1b7eb109ebe339a690fa70c21a9 SHA256: fc713344c480aecf80860b2750d584b2e8a2636d7e377c92ff62832239198ecf Description: Open-source version of SGI's audiofile library (debug) Multi-Arch: same Homepage: http://audiofile.68k.org/ Description-md5: 9cd7fb91eb23aab5a8ad7eae250d2d66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaudiofile-dev Priority: optional Section: libdevel Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: audiofile Version: 0.3.6-2 Depends: libaudiofile1 (= 0.3.6-2) Recommends: pkg-config Filename: pool/main/a/audiofile/libaudiofile-dev_0.3.6-2_amd64.deb Size: 37798 MD5sum: 523e1109610bdee896e613a61d1f8ad9 SHA1: 9a7c035ee18d2c8405419d0e017d3c73b424485d SHA256: 035f56f6002e0b9653aabfbff00e0048ca8d0626140437ed4582f4bae4f1d9e8 Description: Open-source version of SGI's audiofile library (header files) Multi-Arch: same Homepage: http://audiofile.68k.org/ Description-md5: aada0cfba076707b0be8faab61d1e438 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaudiofile1 Priority: optional Section: libs Installed-Size: 283 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: audiofile Version: 0.3.6-2 Depends: libc6 (>= 2.14), libflac8 (>= 1.2.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/a/audiofile/libaudiofile1_0.3.6-2_amd64.deb Size: 110638 MD5sum: 50cd488bc8dc6d4ee9471fdd26e4a0a2 SHA1: c72cd2760d0cf0c28da5795540ee001643acc4f7 SHA256: d7cb9a1302132579352e114d62d20a3ab258dad1682ca6db503f4d40e099a0a9 Description: Open-source version of SGI's audiofile library Multi-Arch: same Homepage: http://audiofile.68k.org/ Description-md5: 4514295eed6d5fc564db1ca78517ee90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libaudit-common Priority: required Section: libs Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Source: audit Version: 1:2.3.2-2ubuntu1 Replaces: libaudit0, libaudit1 (<< 1:2.2.1-2) Breaks: libaudit0, libaudit1 (<< 1:2.2.1-2) Filename: pool/main/a/audit/libaudit-common_2.3.2-2ubuntu1_all.deb Size: 5372 MD5sum: 26dcbed153579639985b25f47a59118d SHA1: fa1ebe94534326ed1c4e19132a517331e5768ce8 SHA256: ef9751457270b682fcf39ef8629ba2ce89f4a2f38be4077a8c102021a39e3e46 Description: Dynamic library for security auditing - common files Multi-Arch: foreign Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: f1e698fe58902299a06c8f79f079ac9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libaudit-dev Priority: extra Section: libdevel Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: audit Version: 1:2.3.2-2ubuntu1 Depends: libaudit1 (= 1:2.3.2-2ubuntu1) Filename: pool/main/a/audit/libaudit-dev_2.3.2-2ubuntu1_amd64.deb Size: 59728 MD5sum: 7b588c35a0e5c12259de8c88aedd8e16 SHA1: befec0c6e41de5c43f994768b3c43bb5282191de SHA256: ab4f18bf5b136893a4fe60daa46e5e87ee06d7e2696b9e5f2148d86d5e130f2f Description: Header files and static library for security auditing Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: fb095c1a1f1082c97ac0fa907e55f7a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaudit1 Priority: required Section: libs Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: audit Version: 1:2.3.2-2ubuntu1 Depends: libaudit-common (= 1:2.3.2-2ubuntu1), libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/a/audit/libaudit1_2.3.2-2ubuntu1_amd64.deb Size: 35410 MD5sum: c0b982333b5c1cc65649ce4f7b555854 SHA1: 1ee093a28ddc55ef79ac29f8692452ff0c217402 SHA256: 92a40b408f14e95191ce6416ef9e1828b07b51bd54ee99a9e1405a46d97dd543 Description: Dynamic library for security auditing Multi-Arch: same Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: ec521af3cbcca51c5a26a117f114a9b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libaugeas-dev Priority: optional Section: libdevel Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: amd64 Source: augeas Version: 1.2.0-0ubuntu1 Depends: libaugeas0 (= 1.2.0-0ubuntu1), libxml2-dev Filename: pool/main/a/augeas/libaugeas-dev_1.2.0-0ubuntu1_amd64.deb Size: 11122 MD5sum: ec2c07695174696b3853a1e6cc048009 SHA1: 163f7e3c5811ff2ac9103ba6613fc984199b3eac SHA256: e65c37d23ed6ec4b385c4277d56cb91fc55277737cd30b4576b6de428d8442b8 Description: Development files for writing applications based on libaugeas0 Homepage: http://augeas.net/ Description-md5: ed145203b749773dd79ed363ff832678 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaugeas-ruby1.8 Priority: optional Section: libs Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Source: ruby-augeas Version: 0.5.0-2 Depends: ruby-augeas Filename: pool/main/r/ruby-augeas/libaugeas-ruby1.8_0.5.0-2_all.deb Size: 1406 MD5sum: dcb41612c96bd01308eaa5e4a91284d9 SHA1: e6c9466b917adfefc49bb223cd186919d741023d SHA256: 9012daf4844506e76dd41eb34d08c74bb2678a4b8f3ef52f6cfcd5eaed775edd Description: Transitional package for ruby-augeas Homepage: http://augeas.net/ Description-md5: 86bd2838689e1a32a55f0df7314dbad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaugeas-ruby1.9.1 Priority: optional Section: ruby Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Source: ruby-augeas Version: 0.5.0-2 Depends: ruby-augeas Filename: pool/main/r/ruby-augeas/libaugeas-ruby1.9.1_0.5.0-2_all.deb Size: 1410 MD5sum: e1b270aedd79094603dd18d989b942f4 SHA1: 670eadf113e4a5ea9c4bc4642a89da63dbebc0cd SHA256: 172cc384379b2e9681693b7c90b62503ad63e67111a0f2bb085c194e5bc62985 Description: Transitional package for ruby-augeas Homepage: http://augeas.net/ Description-md5: 86bd2838689e1a32a55f0df7314dbad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaugeas0 Priority: optional Section: libs Installed-Size: 557 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: amd64 Source: augeas Version: 1.2.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libxml2 (>= 2.7.4), augeas-lenses Suggests: augeas-tools Filename: pool/main/a/augeas/libaugeas0_1.2.0-0ubuntu1_amd64.deb Size: 139526 MD5sum: a727dddeff889e254779f19d9afcfd09 SHA1: 9ddecfd647cc1fba60d3db3efc5b1150b4047072 SHA256: 0b69dba1c5294d152d97103bcea9155c6f42465c28945f13e219039802c86bd0 Description: Augeas configuration editing library and API Homepage: http://augeas.net/ Description-md5: 309877ef689bd8ed561675486502059a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libauparse-dev Priority: extra Section: libdevel Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: audit Version: 1:2.3.2-2ubuntu1 Replaces: libaudit-dev (<< 1:2.2.1-2) Depends: libauparse0 (= 1:2.3.2-2ubuntu1) Breaks: libaudit-dev (<< 1:2.2.1-2) Filename: pool/main/a/audit/libauparse-dev_2.3.2-2ubuntu1_amd64.deb Size: 60282 MD5sum: 90df6e825f87e74645b44fa9d15756c7 SHA1: a0d89cdd2ac84c36ba099959590a560b3f1df64d SHA256: b09f65a1b6bad536c7ced95885a0e6709a19b56ddee25a0d95f0079902dbf3d8 Description: Header files and static library for the libauparse0 library Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: 44274718be015b9669c36ffc31b8d828 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libauparse0 Priority: optional Section: libs Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: audit Version: 1:2.3.2-2ubuntu1 Replaces: libaudit0, libaudit1 (<< 1:2.2.1-2) Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.14) Pre-Depends: multiarch-support Breaks: libaudit0, libaudit1 (<< 1:2.2.1-2) Filename: pool/main/a/audit/libauparse0_2.3.2-2ubuntu1_amd64.deb Size: 33750 MD5sum: 124dbae0e57e721547809b86f7a15c55 SHA1: 8482f0155fc67ab6e3d5b3a272dd5835685c0af5 SHA256: c33fa7c5e2ae67b87655a58fc7613e26ade15103591ec4bf8a20f0a951ff9b56 Description: Dynamic library for parsing security auditing Multi-Arch: same Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: 364e3e4ce52a621a1d7dbb7226da14a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libauthen-sasl-perl Priority: extra Section: perl Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.1500-1 Depends: perl Suggests: libdigest-hmac-perl, libgssapi-perl Filename: pool/main/liba/libauthen-sasl-perl/libauthen-sasl-perl_2.1500-1_all.deb Size: 53192 MD5sum: 77c54d59791a7e684ed60557c512f52e SHA1: 4e57a0705e33737d787449b631966c36c98da48c SHA256: c4a6bb0024d9d460b836f317eab59828acb0974baee0cb401a1ed3bc62ece056 Description: Authen::SASL - SASL Authentication framework Homepage: http://search.cpan.org/dist/Authen-SASL/ Description-md5: add7806e00b58d9322dd910e2bb144df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libautodie-perl Priority: optional Section: perl Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.23-1 Depends: perl, libsub-identify-perl Recommends: libipc-system-simple-perl Filename: pool/main/liba/libautodie-perl/libautodie-perl_2.23-1_all.deb Size: 60564 MD5sum: a1a7a6152ffb63c94273d35d0f629259 SHA1: 169c0d1d20785fa10fed6cbffed51f4fe8fd3443 SHA256: 36ab51c893267ddb5aa913ad66baec311adc27b1f2bd4b3120750858b1638a61 Description: Perl pragma to make certain failures fatal Homepage: https://metacpan.org/release/autodie/ Description-md5: c8658a0874c1cd681f7cbe4fe17f699c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-client-dev Priority: optional Section: net Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (= 0.6.31-4ubuntu1), libavahi-common-dev, libdbus-1-dev (>= 0.60) Filename: pool/main/a/avahi/libavahi-client-dev_0.6.31-4ubuntu1_amd64.deb Size: 30214 MD5sum: 2e343d05ff687c6c8b341f4f212fee11 SHA1: b4f747acae7632b08548cb39ff0218ae62f6d777 SHA256: fd98f2b02cff7c7374f3eda613c5e0dcd1862567f2b165920f9e12cc06b12018 Description: Development files for the Avahi client library Homepage: http://avahi.org/ Description-md5: 70b3114997bfcd9053f7bf3f89550ef9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-client3 Priority: optional Section: libs Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (>= 0.6.22), libc6 (>= 2.4), libdbus-1-3 (>= 1.1.1) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-client3_0.6.31-4ubuntu1_amd64.deb Size: 25150 MD5sum: eec45ae98569b6479800e8b00739abb4 SHA1: d1ea94f5f369bedc7173e61530cd1a0e04fc5f06 SHA256: e16fabd436e70b039af9cf3b62fc227c0eb47287709c934a820de4705198d629 Description: Avahi client library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 23a3240e3fa4fb5375126d82ae53d14b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-common-data Priority: optional Section: libs Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Filename: pool/main/a/avahi/libavahi-common-data_0.6.31-4ubuntu1_amd64.deb Size: 21214 MD5sum: a1b4378b37be0edac4eb8f4b3bd12ec6 SHA1: e512b5ef0ac19baa831a887c56037c42df424cc8 SHA256: 70abc73627f274adeeb3dbc03bd047bec574731518f3c0a27b7dea12d0f99635 Description: Avahi common data files Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 7262221e9aafb47f2911e3153296fab1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-common-dev Priority: optional Section: net Installed-Size: 227 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (= 0.6.31-4ubuntu1) Filename: pool/main/a/avahi/libavahi-common-dev_0.6.31-4ubuntu1_amd64.deb Size: 36324 MD5sum: ed0fa66c84bc85b13eb5c25cba532736 SHA1: 138b7a612ba0011d1ba8a918569d981619eb2754 SHA256: 6788247a17cf0aab1082ba49c3bdc98fbb9bfe886f0baabd38127e041f139ce9 Description: Development files for the Avahi common library Homepage: http://avahi.org/ Description-md5: 2bd45c44b0f13fa2319c808bd7de79e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-common3 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libc6 (>= 2.14), libavahi-common-data Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-common3_0.6.31-4ubuntu1_amd64.deb Size: 21712 MD5sum: d63a809ea7ad51739547232994429cbb SHA1: 6bc24ecc99dedd101a4b59e7f5c251ceeef4e512 SHA256: dc0f07de787900d4bfb2c5ccd9bc6bab567dfb9d5641f300a902682a077aab62 Description: Avahi common library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: bbc06dc3aaf84439dd323000d2524550 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-compat-libdnssd-dev Priority: optional Section: libdevel Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-compat-libdnssd1 (= 0.6.31-4ubuntu1), libavahi-client-dev Filename: pool/main/a/avahi/libavahi-compat-libdnssd-dev_0.6.31-4ubuntu1_amd64.deb Size: 31246 MD5sum: f8fb5d99ba5aea77e5e90ebc806e1224 SHA1: 2763c8af095fe5e19af35cc326de55a812d122ad SHA256: be4712af65472427812222bf212b5ffcc5e4157cd275016591fc070c587c1a8c Description: Development headers for the Avahi Apple Bonjour compatibility library Homepage: http://avahi.org/ Description-md5: b649eb808a8fb7e872951939f15bc53f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-compat-libdnssd1 Priority: optional Section: libs Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.14) Pre-Depends: multiarch-support Recommends: libnss-mdns Filename: pool/main/a/avahi/libavahi-compat-libdnssd1_0.6.31-4ubuntu1_amd64.deb Size: 16332 MD5sum: a1706cf1caf519aa627aede2efd17178 SHA1: 4dd47ece7171efa94948fd407f52780e576c438c SHA256: 92f501f443383bb2ead609d4df490ee93fb47f140701576abb7c880ece842643 Description: Avahi Apple Bonjour compatibility library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: b65a9302d5f5a107a6de3804ec9351c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libavahi-core-dev Priority: optional Section: net Installed-Size: 572 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-core7 (= 0.6.31-4ubuntu1), libavahi-common-dev Filename: pool/main/a/avahi/libavahi-core-dev_0.6.31-4ubuntu1_amd64.deb Size: 97216 MD5sum: f8424371dfb3ad7181766cb6bc75cf4b SHA1: b87f9430927252e120710f6ae81883d90a456953 SHA256: 9067dd7f2da526da1010079727dd198f5ed9550827f33556dd029dfdca4636b0 Description: Development files for Avahi's embeddable mDNS/DNS-SD library Homepage: http://avahi.org/ Description-md5: 9090641583bbaecbe0ef5fa8d0108f64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-core7 Priority: optional Section: libs Installed-Size: 282 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (>= 0.6.16), libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-core7_0.6.31-4ubuntu1_amd64.deb Size: 80854 MD5sum: e59928913d2457d84dcba69f36f15716 SHA1: 266842fcbbc7c008891dee91f0ff9dec95c6eba2 SHA256: b058451edf67807d85875ba8f42e27d16a95a3d7b855be5d6973910ee2b6ce25 Description: Avahi's embeddable mDNS/DNS-SD library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 22b9d09fb6eef6b3d23199e3164eb87c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-glib-dev Priority: optional Section: net Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-glib1 (= 0.6.31-4ubuntu1), libglib2.0-dev, libavahi-common-dev Filename: pool/main/a/avahi/libavahi-glib-dev_0.6.31-4ubuntu1_amd64.deb Size: 8192 MD5sum: 7742eb848ff3a3435b1b62c31754c071 SHA1: b5cdf947fdd2f3bc9df7588155d7624f000e052e SHA256: cb916fef9c1285f4950fefde32f95cab3e389efee21cc2a3b4b02c18d5c7bd3a Description: Development headers for the Avahi GLib integration library Homepage: http://avahi.org/ Description-md5: c53bef724d42cfdb907059e698dd69b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-glib1 Priority: optional Section: libs Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (>= 0.6.16), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.16.0) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-glib1_0.6.31-4ubuntu1_amd64.deb Size: 7756 MD5sum: 313ed1ca9f503b50bfe85c1546503fe6 SHA1: 45d98ee028c0499b0846d10bc58024bb6d2f7cc0 SHA256: 15e4042e74c2c27bf23bc0965d709cfdeb125645134c5e0554e1e7d4eb7ada0a Description: Avahi GLib integration library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 81eecad87a5c1892fe68f50918d70247 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-gobject-dev Priority: optional Section: libdevel Installed-Size: 190 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-gobject0 (= 0.6.31-4ubuntu1), libglib2.0-dev, libavahi-client-dev, libavahi-glib-dev Filename: pool/main/a/avahi/libavahi-gobject-dev_0.6.31-4ubuntu1_amd64.deb Size: 20682 MD5sum: ccf92276f73fa7877315249856c92161 SHA1: 09774a58b6c93960fc7f3ca7b39dcf84328779bb SHA256: 79bd8300c041f78a5d189ca170c31a2a4922a7dcd369a47373e989c9abc8a1ef Description: Development headers for the Avahi GObject library Homepage: http://avahi.org/ Description-md5: b53a4bd17d9a35135092d4ba964682db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-gobject0 Priority: optional Section: libs Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-gobject0_0.6.31-4ubuntu1_amd64.deb Size: 17008 MD5sum: 5873492cabe8542c34deb7d3ded36ced SHA1: 7b5f1c27b182da61c55196c61f37e08c5ef9d700 SHA256: c6ad32fd6d01e45fb2a0fc22f840b100b76ea8ed28946e1d30b216145daa3b25 Description: Avahi GObject library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 44a1978a9ae30e9695613c7683efa9b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-qt4-1 Priority: optional Section: libs Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (>= 0.6.16), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-qt4-1_0.6.31-4ubuntu1_amd64.deb Size: 7702 MD5sum: 99f8826b30b746e39f482e0fb6658cb6 SHA1: b37c18fce31499041ecb1884e0dbf45b4ffcc0de SHA256: 6d8343f697c80bc4351b86579f3ab5dab7484cebfee9b1502347b87a6e31d402 Description: Avahi Qt 4 integration library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 5722b93b169f461a7b1e7428fbaacb83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-qt4-dev Priority: optional Section: libdevel Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-qt4-1 (= 0.6.31-4ubuntu1), libqt4-dev, libavahi-common-dev Filename: pool/main/a/avahi/libavahi-qt4-dev_0.6.31-4ubuntu1_amd64.deb Size: 7898 MD5sum: 512fc39e9ce016a81ceeb97825ccc7b1 SHA1: b34b147cc63b9a5399ccff0c499d5183e78ea053 SHA256: e3c40a60395c8644b4d2726b38c21d99b9bbae137faf7b50c188af6ca18df774 Description: Development headers for the Avahi Qt 4 integration library Homepage: http://avahi.org/ Description-md5: 63265d92bdc9e13edccc29be45e4a852 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-ui-dev Priority: optional Section: libdevel Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-ui0 (= 0.6.31-4ubuntu1), libavahi-client-dev, libavahi-glib-dev, libgtk2.0-dev Filename: pool/main/a/avahi/libavahi-ui-dev_0.6.31-4ubuntu1_amd64.deb Size: 19078 MD5sum: 66c22162fcaef6e14a41610f84ed8f77 SHA1: cefdb9dead195a423b2b32f4d8445e1e81949419 SHA256: e71135bbca1c0046b98c94ca9968390e2a26020bb6eaf11e0f4cad668ef29c4e Description: Development headers for the Avahi GTK+ User interface library Homepage: http://avahi.org/ Description-md5: 93b46403f0b56ce77c0111c4f8b14d40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-ui-gtk3-0 Priority: optional Section: libs Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.22), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.4), libgdbm3 (>= 1.8.3), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-ui-gtk3-0_0.6.31-4ubuntu1_amd64.deb Size: 18918 MD5sum: c527869e5123fa4398808b43d7cfdd62 SHA1: 305d7d27b2da9b8b69ba15072bf531dd38c96005 SHA256: 10f974d1a0b094054fa6fd84cf2098fffaf97b2ecdb82bccf9ba44734120a0b1 Description: Avahi GTK+ User interface library for GTK3 Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 55a81fa77d7687e44f84d058e85c4486 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-desktop Package: libavahi-ui-gtk3-dev Priority: optional Section: libdevel Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-ui-gtk3-0 (= 0.6.31-4ubuntu1), libavahi-client-dev, libavahi-glib-dev, libgtk-3-dev Conflicts: libavahi-ui-dev Filename: pool/main/a/avahi/libavahi-ui-gtk3-dev_0.6.31-4ubuntu1_amd64.deb Size: 19090 MD5sum: 22f2dffb61f8f1528142f5446825858f SHA1: 501b8ddc367085a5397c14ac1df99ee86194f5b1 SHA256: 3a68ee3c847f5573a2d71528b9b3824db07824bc37b88e12c1fc679e88c571f4 Description: Development headers for the Avahi GTK+ User interface library Homepage: http://avahi.org/ Description-md5: 93b46403f0b56ce77c0111c4f8b14d40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-ui0 Priority: optional Section: libs Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.22), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.4), libgdbm3 (>= 1.8.3), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.14.0) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-ui0_0.6.31-4ubuntu1_amd64.deb Size: 19012 MD5sum: 94159f38a123072f7d83dfb3b4137f3f SHA1: 64a77f3538ceb5ecf80dd961a118fc0f1ebcc76b SHA256: c0e9801192054b7181ca1061f8d5d5f6645e89b3566c5cc4ec0fdc4f0d2911bf Description: Avahi GTK+ User interface library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 340ad1b36b81985d7e469a4a734a0367 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavalon-framework-java Priority: optional Section: libs Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: avalon-framework Version: 4.2.0-9 Suggests: libavalon-framework-java-doc Filename: pool/main/a/avalon-framework/libavalon-framework-java_4.2.0-9_all.deb Size: 70326 MD5sum: a2bc0b6525c3c66d913eefbceabaa40d SHA1: cf5a225120fc981fcedf5730a505c1b5f2c19fc0 SHA256: 98d91f719eb89399f7592e42e98ec4028792a70b4bb6529aa283c4d47850c411 Description: Common framework for Java server applications Homepage: http://excalibur.apache.org/ Description-md5: f9117fbf931d7d1e73c2658b182d9d0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavalon-framework-java-doc Priority: optional Section: doc Installed-Size: 1834 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: avalon-framework Version: 4.2.0-9 Suggests: libavalon-framework-java Filename: pool/main/a/avalon-framework/libavalon-framework-java-doc_4.2.0-9_all.deb Size: 156912 MD5sum: b27926761136736d28c003b014d92a76 SHA1: 8c2525440199ba6c5fd8f5e36b9a71b63166ce34 SHA256: 12af13cc455cea3e7da02f3a82faba8952c8290f458e667e9788eb390575024a Description: Common framework for Java server applications (API) Homepage: http://excalibur.apache.org/ Description-md5: f5c1e89e0e6d236615f930bed9800007 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavc1394-0 Priority: extra Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: libavc1394 Version: 0.5.4-2 Depends: libc6 (>= 2.14), libraw1394-11 Pre-Depends: multiarch-support Filename: pool/main/liba/libavc1394/libavc1394-0_0.5.4-2_amd64.deb Size: 19996 MD5sum: c6277f182c11d0f0c3a81d01e0170e52 SHA1: 0726df5340bea4b3cca8f4e8606301c5fa409bae SHA256: d24d2e0b1de6b60f02d988fe5192a373b42b8d3f3184b06c35b28ebe5a1970ac Description: control IEEE 1394 audio/video devices Multi-Arch: same Homepage: http://sourceforge.net/projects/libavc1394/ Description-md5: cb6a1c443459f233bd1d723b97970a7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavc1394-dev Priority: extra Section: libdevel Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: libavc1394 Version: 0.5.4-2 Depends: libavc1394-0 (= 0.5.4-2) Suggests: pkg-config Filename: pool/main/liba/libavc1394/libavc1394-dev_0.5.4-2_amd64.deb Size: 8064 MD5sum: 115927d9a1a3b77946a5f5ea4344aae6 SHA1: 88df632082fb056c5762ea79f1410c9e9c098cf0 SHA256: 53884ac7cd6181d2bd3bf5ede135e91a0eb00a1f4c48d8a2a371acd4971a4150 Description: control IEEE 1394 audio/video devices (development files) Multi-Arch: same Homepage: http://sourceforge.net/projects/libavc1394/ Description-md5: 27025243e973058efe22de7dfab25bd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libb-hooks-endofscope-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.13-1 Depends: perl, libmodule-implementation-perl, libmodule-runtime-perl (>= 0.012), libsub-exporter-progressive-perl, libvariable-magic-perl (>= 0.48) Filename: pool/main/libb/libb-hooks-endofscope-perl/libb-hooks-endofscope-perl_0.13-1_all.deb Size: 14384 MD5sum: b896c8269ff86ae433803ec5ff385569 SHA1: 68620831cf7d915ca0217fb2971200ac026d57ed SHA256: 4446d8ef153fa1dab457cc2438b5d186a725b07c37a406475a86fdae94046c27 Description: module for executing code after a scope finished compilation Homepage: https://metacpan.org/release/B-Hooks-EndOfScope/ Description-md5: ed6059b7ec1cc37be7844823dcfb1ab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libb-hooks-op-check-perl Priority: optional Section: perl Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.19-1build2 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libb/libb-hooks-op-check-perl/libb-hooks-op-check-perl_0.19-1build2_amd64.deb Size: 10558 MD5sum: c2275183cf3d11c78b43e7d7c5e6d93d SHA1: 134a25cb2b3a936f3dc64c90de0c310d4a9749a4 SHA256: 222dd9c81e09cb6a952430c70dce4fbbdbf2d0040f41ae4d2b033097a96d239f Description: Perl wrapper for OP check callbacks Homepage: http://search.cpan.org/dist/B-Hooks-OP-Check/ Description-md5: 178740e79b5d43634e60c7b6db232207 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libb-keywords-perl Priority: optional Section: perl Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.13-1 Depends: perl Filename: pool/main/libb/libb-keywords-perl/libb-keywords-perl_1.13-1_all.deb Size: 11316 MD5sum: f0461f9deba1feb623c226477cd8f810 SHA1: 4e293be75ee4cbdfd0ee3f9745c7c6efbf5efe90 SHA256: ebfd6eb76a6832f39245603e3b047515a446935916125938069643b94a54a750 Description: lists of internal perl keywords Homepage: https://metacpan.org/release/B-Keywords/ Description-md5: 867be8146ae40a9735fca6dc5f66de66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbabl-0.1-0 Priority: optional Section: libs Installed-Size: 309 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: babl Version: 0.1.10-1ubuntu2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/b/babl/libbabl-0.1-0_0.1.10-1ubuntu2_amd64.deb Size: 78018 MD5sum: 5301296eb82f90e58e234089e24171a8 SHA1: 5a0965e4b3987406c1f08920b957030e5bc39495 SHA256: 9bedf7a07ad5958c51db7baea4e35518800aaaccfbd110fec187dcbb7a35cb83 Description: Dynamic, any to any, pixel format conversion library Multi-Arch: same Homepage: http://gegl.org/babl/ Description-md5: ff900fc6f030f93197b9e121afde6c95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libbabl-0.1-0-dbg Priority: extra Section: debug Installed-Size: 821 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: babl Version: 0.1.10-1ubuntu2 Depends: libbabl-0.1-0 (= 0.1.10-1ubuntu2) Filename: pool/main/b/babl/libbabl-0.1-0-dbg_0.1.10-1ubuntu2_amd64.deb Size: 156020 MD5sum: 25b6f9ca91d2ad39e0fc270656ea2aa5 SHA1: 2d01319e30f24e6c72e5f4fe9393ea441abea43a SHA256: cf79e7343baa6677575dc5c22a86a8fba2c33f86e915b26722fbf09cec2708dd Description: Dynamic, any to any, pixel format conversion library (debugging symbols) Multi-Arch: same Homepage: http://gegl.org/babl/ Description-md5: b08378a00c467547de8f234092ef2e0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbabl-dev Priority: optional Section: libdevel Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: babl Version: 0.1.10-1ubuntu2 Replaces: libbabl-0.0-0-dev Provides: libbabl-0.0-0-dev Depends: libbabl-0.1-0 (= 0.1.10-1ubuntu2) Breaks: libbabl-0.0-0-dev Filename: pool/main/b/babl/libbabl-dev_0.1.10-1ubuntu2_amd64.deb Size: 12242 MD5sum: dc4a0f612e3c8a80999752b123e85ddd SHA1: 7d958a5a79a985c8ec0f3051114bf5d5098f0396 SHA256: c6a96067a77cbc26b632fad1c65f9275394592eefbeb089e66811dbf63eccd71 Description: Dynamic, any to any, pixel format conversion library (development files) Multi-Arch: same Homepage: http://gegl.org/babl/ Description-md5: 8222faeeaa3c6abb27290df29be5d457 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbabl-doc Priority: optional Section: doc Installed-Size: 1926 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: all Source: babl Version: 0.1.10-1ubuntu2 Replaces: libbabl-0.0-doc Breaks: libbabl-0.0-doc Filename: pool/main/b/babl/libbabl-doc_0.1.10-1ubuntu2_all.deb Size: 113348 MD5sum: 186224ae3e416ff7a1aa0a396c9ba20a SHA1: 6cbb9be9c18a490b8828be45766343b52c6755a5 SHA256: e3e0326c5b17d7d7ddbd7bdc90f58fb1247557ec85eb6dc24462098d652e0059 Description: Dynamic, any to any, pixel format conversion library (documentation) Multi-Arch: foreign Homepage: http://gegl.org/babl/ Description-md5: 1843cc45fff811e1ae47f159d418f66d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbamf-doc Priority: optional Section: doc Installed-Size: 276 Maintainer: Didier Roche Architecture: all Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Suggests: devhelp Filename: pool/main/b/bamf/libbamf-doc_0.5.1+14.04.20140409-0ubuntu1_all.deb Size: 22352 MD5sum: 8303deb1ca2088fff0c383bd2572de6f SHA1: c1748c9a65d9fcca19c031f9a7401721f0aae4c7 SHA256: dcaa10a7c5face8acba628487a69156b5e506550a63896c223d0d1240957edd8 Description: Window matching library - documentation Homepage: https://launchpad.net/bamf Description-md5: 11f61fe589985b977cd6f7ea9a9db116 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbamf3-2 Priority: optional Section: libs Installed-Size: 255 Maintainer: Didier Roche Architecture: amd64 Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Breaks: unity (<< 3.2.12) Filename: pool/main/b/bamf/libbamf3-2_0.5.1+14.04.20140409-0ubuntu1_amd64.deb Size: 50114 MD5sum: d96330b5d56ad15a822b5b427d61e976 SHA1: e0f12fe892dd88196de8df6c907bd6acd90c3e64 SHA256: fc9a290c0888498f12a6593cdbb283f992e10ba60a08d17f43a8294f4fb9b9fa Description: Window matching library - shared library Multi-Arch: same Homepage: https://launchpad.net/bamf Description-md5: 11d37ab9301d7178a8b4e967e68c0316 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libbamf3-dev Priority: optional Section: libdevel Installed-Size: 209 Maintainer: Didier Roche Architecture: amd64 Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Depends: gir1.2-bamf-3 (= 0.5.1+14.04.20140409-0ubuntu1), libbamf3-2 (= 0.5.1+14.04.20140409-0ubuntu1), libglib2.0-dev (>= 2.30.0) Suggests: libbamf-doc Filename: pool/main/b/bamf/libbamf3-dev_0.5.1+14.04.20140409-0ubuntu1_amd64.deb Size: 13390 MD5sum: 43663f848f13f50cc5bfdf1f9b3ad455 SHA1: 49325992cb9fc629548079b25a979cf243a424fc SHA256: 458d8ecdcb11c583c8159cff57c3c5da713ab486c94ccc40b6058bf7ff225fca Description: Window matching library - development files Homepage: https://launchpad.net/bamf Description-md5: 701d26c3fffca1e031bcd5e22b1bbf2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbareword-filehandles-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.003-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5), libb-hooks-op-check-perl, liblexical-sealrequirehints-perl Filename: pool/main/libb/libbareword-filehandles-perl/libbareword-filehandles-perl_0.003-1build1_amd64.deb Size: 9380 MD5sum: 638a4f2a0842ffba2a2d7c7034e88b8f SHA1: f9d47cb43a045fff9931b2303100b4c9ce25de41 SHA256: 9628911f7993313c3ce6438172c2bc6be7cd9d495fdecdb91b04319fb4abdb18 Description: Perl pragma to disable bareword filehandles Homepage: http://search.cpan.org/dist/bareword-filehandles/ Description-md5: a315ce39c7cb346ac405ccfbd6b86972 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbasicobjects-dev Priority: extra Section: libdevel Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Depends: libbasicobjects0 (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libbasicobjects-dev_0.3.0.1-4_amd64.deb Size: 4036 MD5sum: 08b8aa960550efe454ef2e321d670ce1 SHA1: 06d19ac18eca243478322c2aecaadf297d1581f2 SHA256: 8d2d2e8899615b15a60987d2cde99dfc8c7cd89c9e0fd3db12e5417ab7496afa Description: Basic object types for C -- development files Homepage: https://fedorahosted.org/sssd/ Description-md5: 321450c10ecdfe8c867dd0ec79f8ed14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbasicobjects0 Priority: extra Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/d/ding-libs/libbasicobjects0_0.3.0.1-4_amd64.deb Size: 5628 MD5sum: 0d9696c8d33226c13da455397cb876db SHA1: a818652902f970886c2eddae1251d66458002065 SHA256: c8081e5f823066553982cc0bba2015179a53eb5683b72b17d626df72f377b9b9 Description: Basic object types for C Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 73d865f732ef29d6cec8df632e3e355c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbatik-java Priority: optional Section: libs Installed-Size: 10803 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: batik Version: 1.7.ubuntu-8ubuntu2 Depends: default-jre-headless | java2-runtime-headless, libxalan2-java, libbsf-java, libavalon-framework-java (>= 4.2.0), libcommons-io-java, libcommons-logging-java, java-wrappers (>= 0.1.12), libxml-commons-external-java Recommends: fop (>= 1:0.94), rhino, default-jre | java2-runtime Filename: pool/main/b/batik/libbatik-java_1.7.ubuntu-8ubuntu2_all.deb Size: 9030040 MD5sum: ed8360265920e9798fa45eaca98d4af3 SHA1: bb52f847d8e39a926879e34b373f348d0ce12379 SHA256: 618dd76e16596b58e42458d9f78bbdb6a62f5502344534b03e4388097ffeea4a Description: xml.apache.org SVG Library Homepage: http://xml.apache.org/batik/ Description-md5: 7b184faa1b3cf8713ca5674d8a7583ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcel-java Priority: optional Section: libs Installed-Size: 580 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bcel Version: 5.2-9build1 Suggests: libbcel-java-doc Filename: pool/main/b/bcel/libbcel-java_5.2-9build1_all.deb Size: 476432 MD5sum: 602e35ea909a815f76cca5ac38bd1bef SHA1: 7bc7197270f1ca8bec0892d16eb45e959de400e4 SHA256: e5ca5179c51b7c15b2d1c588c2cdbaf516bc81839f0e76eef8152be37648f476 Description: Analyze, create, and manipulate (binary) Java class files Homepage: http://jakarta.apache.org/bcel/ Description-md5: 130e464457303867bf0628be20236a5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcel-java-doc Priority: optional Section: libs Installed-Size: 31706 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bcel Version: 5.2-9build1 Recommends: default-jdk-doc Suggests: libbcel-java Filename: pool/main/b/bcel/libbcel-java-doc_5.2-9build1_all.deb Size: 1956660 MD5sum: a2d6df3782d469d8673ac41fed304cf0 SHA1: 695e4e78a7dc8951ba2849594366ed3e4b545be3 SHA256: 93f49c5f4e4502f00e6a48c78e4d6de1fd757c9b2a84c652b8563affe774dae9 Description: Documentation for Byte Code Engineering Library (BCEL) Homepage: http://jakarta.apache.org/bcel/ Description-md5: 28e1f469ef323ac95315d9f3b3f77df6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcmail-java-doc Priority: optional Section: doc Installed-Size: 1286 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Filename: pool/main/b/bouncycastle/libbcmail-java-doc_1.49+dfsg-2_all.deb Size: 97126 MD5sum: 172a2d1d4035335714c4de8eee5260e7 SHA1: f6f6940489012c91c63680a37457682463365206 SHA256: 61b7268d0f687f0a4521f56242fb09e18cdef9822e58c638ab967f0854d5144d Description: Bouncy Castle generators/processors for S/MIME and CMS (Documentation) Homepage: http://www.bouncycastle.org Description-md5: d8a6e0dfe63dc470544a1e91492cbb7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcpg-java Priority: optional Section: libs Installed-Size: 316 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Depends: libbcprov-java (>= 1.49+dfsg-2) Suggests: libbcpg-java-doc Filename: pool/main/b/bouncycastle/libbcpg-java_1.49+dfsg-2_all.deb Size: 204286 MD5sum: ad33257c4d8d754fa5bca9e7d6d12519 SHA1: d52188f6413c5777f78f8bd8a04ee5db673d7c00 SHA256: f3e01ebe259480441fe4bb6e56a05d2417b6f384d69ba51f4572f10d5697b10c Description: Bouncy Castle generators/processors for OpenPGP Homepage: http://www.bouncycastle.org Description-md5: fb261bacf9406a7cc08d3ab0f013ae4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcpg-java-doc Priority: optional Section: doc Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Filename: pool/main/b/bouncycastle/libbcpg-java-doc_1.49+dfsg-2_all.deb Size: 4420 MD5sum: 2932a612e5b18d87508f65536274a38e SHA1: b70eb4ec623f99c43440dd1dbdfae96276e4d7bc SHA256: 4633cccf9f32bdbf75052d7d66802da26097bcd43f7c9f337d12c30d78ecc2ec Description: Bouncy Castle generators/processors for OpenPGP (Documentation) Homepage: http://www.bouncycastle.org Description-md5: 382c4791eee554acd4c9cefa6f870dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcpkix-java-doc Priority: optional Section: doc Installed-Size: 8339 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Filename: pool/main/b/bouncycastle/libbcpkix-java-doc_1.49+dfsg-2_all.deb Size: 501134 MD5sum: 4b6c746458df1e776aaf1eea3ea89a38 SHA1: f3d36502b3b40635540a330dc90e0f73a1710a78 SHA256: daa8e4512288320af626b93109f157adeca7832f6e10e3b58024e2ab1d813718 Description: Bouncy Castle Java API for PKIX, CMS, EAC, TSP, PKCS... (Documentation) Homepage: http://www.bouncycastle.org Description-md5: d0ec732d002d1d25ee8a9203867dfca6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcprov-java Priority: optional Section: libs Installed-Size: 2381 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Suggests: libbcprov-java-doc Breaks: jakarta-jmeter (<< 2.8-1~), jenkins-instance-identity (<< 1.3-1~), jglobus (<< 2.0.6-1~), libitext-java (<< 2.1.7-6~), libpdfbox-java (<< 1:1.8.2+dfsg-1~), voms-api-java (<< 2.0.9-1.1~) Filename: pool/main/b/bouncycastle/libbcprov-java_1.49+dfsg-2_all.deb Size: 2008470 MD5sum: 7af4b38766c1204b63e030067a1dae41 SHA1: d29cfab331735454d379d805ddbf8a0181b33c56 SHA256: c309cddac61ed01e23f9b03adec80f3f1e6342870817ec9b26db73128efeec55 Description: Bouncy Castle Java Cryptographic Service Provider Homepage: http://www.bouncycastle.org Description-md5: 522bfc51b38b2fda273cc08a1fd66df1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcprov-java-doc Priority: optional Section: libs Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Filename: pool/main/b/bouncycastle/libbcprov-java-doc_1.49+dfsg-2_all.deb Size: 56880 MD5sum: eb7533aeef0c0e17ce985cc4f06f1e56 SHA1: e9614b6574a0c7aa25355223c2ff3be26e6e05f6 SHA256: 5896e663f56fe4c18212e52840d25049ed93df773081a8cbb40de4256c0640ca Description: Bouncy Castle Java Cryptographic Service Provider (Documentation) Homepage: http://www.bouncycastle.org Description-md5: e307199093bf86957104c3ad997f9a16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libberkeleydb-perl Priority: optional Section: perl Installed-Size: 404 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: amd64 Version: 0.54-1 Depends: libc6 (>= 2.14), libdb5.3, perl (>= 5.18.1-5), perlapi-5.18.1 Filename: pool/main/libb/libberkeleydb-perl/libberkeleydb-perl_0.54-1_amd64.deb Size: 109036 MD5sum: dd58b734be26d381560bdd2e0355ee26 SHA1: c188fc2e1bd11263fa1776e55270f25e1e0d308f SHA256: bcb571bcc5fe9badc802caf111ccb0f065b05fd29f43530f071b6b179e3f3ccb Description: use Berkeley DB databases from Perl Description-md5: 9ce5d80703dc56df86a5ff913c319ed2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libbind-dev Priority: optional Section: libdevel Installed-Size: 6248 Maintainer: LaMont Jones Architecture: amd64 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: bind-dev Depends: libdns100 (= 1:9.9.5.dfsg-3), libisccfg90 (= 1:9.9.5.dfsg-3), libisc95 (= 1:9.9.5.dfsg-3), liblwres90 (= 1:9.9.5.dfsg-3), libbind9-90 (= 1:9.9.5.dfsg-3) Conflicts: bind-dev Filename: pool/main/b/bind9/libbind-dev_9.9.5.dfsg-3_amd64.deb Size: 1177434 MD5sum: dfb7927e4c1fdff4530dd417d5ff0292 SHA1: c8a5d014d09657f610326a4e52947c3fc699ece6 SHA256: 9f920edea0e6549faadfca48b98c952f1f942feac89b4c3b6d82735fff95c8d9 Description: Static Libraries and Headers used by BIND Description-md5: 2224f8c1f8613ab53bfc2393a6add6a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbind9-90 Priority: standard Section: libs Installed-Size: 107 Maintainer: LaMont Jones Architecture: amd64 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.4), libdns100, libisc95, libisccfg90 Conflicts: libbind0, libbind9-41 Filename: pool/main/b/bind9/libbind9-90_9.9.5.dfsg-3_amd64.deb Size: 21934 MD5sum: f7a66914672b0886e5483e8f99cc0c45 SHA1: 81c4ababd047062a9a64e74ac0b11a121019975f SHA256: 4cee780ae271d10d843c0a3100ebdaf80c8a57a7882e80fcbc6eb8f404be141c Description: BIND9 Shared Library used by BIND Description-md5: 29eb09ddc694703c77f94b42a079fe3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libbison-dev Priority: optional Section: libdevel Installed-Size: 369 Maintainer: Ubuntu Developers Original-Maintainer: Chuan-kai Lin Architecture: amd64 Source: bison Version: 2:3.0.2.dfsg-2 Recommends: bison Filename: pool/main/b/bison/libbison-dev_3.0.2.dfsg-2_amd64.deb Size: 337842 MD5sum: 003d8f64e26a49c3f01489b406ebaccb SHA1: 9d6770c524595529de95c1e5a3e6f51bc9d6c1d9 SHA256: bff6615b1d88a888d07241dd89b0a65bc59c4300db750545ad6582d1c7862dc8 Description: YACC-compatible parser generator - development library Multi-Arch: same Homepage: http://www.gnu.org/software/bison/ Description-md5: 9e58100d40bcef7ed1b8baab2a762770 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libbit-vector-perl Priority: optional Section: perl Installed-Size: 458 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 7.3-1build1 Depends: libc6 (>= 2.3), perl (>= 5.18.1-4), perlapi-5.18.1, libcarp-clan-perl Filename: pool/main/libb/libbit-vector-perl/libbit-vector-perl_7.3-1build1_amd64.deb Size: 160030 MD5sum: 8ccccffcb76c7c6126f80da97e0a537c SHA1: 55afe19f70af49dbc89707d8015f9859033dd207 SHA256: c7f5e43c600c1327d03920662819ab1bc4596373ba35e80f03812177531c1a15 Description: Perl module for bit vectors and more Homepage: https://metacpan.org/release/Bit-Vector/ Description-md5: 667b66c34bb915821018851127ec800f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libblas-dev Priority: optional Section: libdevel Installed-Size: 1192 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: blas Version: 1.2.20110419-7 Provides: libblas.so Depends: libblas3 (= 1.2.20110419-7) Filename: pool/main/b/blas/libblas-dev_1.2.20110419-7_amd64.deb Size: 239690 MD5sum: 43899d202468c6177f3b0cb64dcb6ab9 SHA1: 251e5dfd337699cd0185a366eb7b3fcca0404351 SHA256: c4916265ade921d229feed958065ed492fb3bfd98e7f1d3f5c5a9db305689324 Description: Basic Linear Algebra Subroutines 3, static library Homepage: http://www.netlib.org/blas/ Description-md5: da562eb21b2bf3e5296ce3e18fbf8cf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libblas-doc Priority: optional Section: doc Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: all Source: blas Version: 1.2.20110419-7 Filename: pool/main/b/blas/libblas-doc_1.2.20110419-7_all.deb Size: 390646 MD5sum: ea388abcababd3ce6e1fe3d67744babd SHA1: 9d4c7890f61a027b99fb0e07af20396fb335f674 SHA256: fbd51e0850c68e2beda26bda48593e25f7624bb6dd8a15e6d0ad06b4bc2c0ff2 Description: Basic Linear Algebra Subroutines 3, documentation Homepage: http://www.netlib.org/blas/ Description-md5: b18ca095ddf47b29497314b3940342a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libblas3 Priority: optional Section: libs Installed-Size: 544 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: blas Version: 1.2.20110419-7 Replaces: libatlas3gf-base (<< 3.8.4-4), libblas3gf (<< 1.2.20110419-3), libopenblas-base (<< 0.1.1-3) Provides: libblas.so.3, libblas.so.3gf, libblas3gf Depends: libc6 (>= 2.4) Conflicts: octave3.2 Breaks: libatlas3gf-base (<< 3.8.4-4), libblas3gf (<< 1.2.20110419-3), libopenblas-base (<< 0.1.1-3) Filename: pool/main/b/blas/libblas3_1.2.20110419-7_amd64.deb Size: 214586 MD5sum: 3dc4c7e9af05c17cd1539b3415d870b8 SHA1: 93f81c8ca546c5e84091d2bd27573d117be80291 SHA256: b41ea3f4f269c7155b5b797b517237c1f2bf0c59ce6960acc518fc0ac83171eb Description: Basic Linear Algebra Reference implementations, shared library Homepage: http://www.netlib.org/blas/ Description-md5: a36805beaf33b431991a1e3ce32f8143 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libblkid-dev Priority: extra Section: libdevel Installed-Size: 513 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: amd64 Source: util-linux Version: 2.20.1-5.1ubuntu20 Depends: libc6-dev | libc-dev, libblkid1 (= 2.20.1-5.1ubuntu20), uuid-dev Filename: pool/main/u/util-linux/libblkid-dev_2.20.1-5.1ubuntu20_amd64.deb Size: 80370 MD5sum: 9e0cac55f47bf23fd16403e5d7813d74 SHA1: 6dfd5988a1294597a0f083c3ca5c7efe760a6a76 SHA256: bc03d7c4adb71ceeb97c4f365147897b75099acedb024bf314ecc4684714fcf3 Description: block device id library - headers and static libraries Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 597c258bdc4c32a8a6bda6d1ae6f88a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libblkid1 Priority: required Section: libs Installed-Size: 247 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: amd64 Source: util-linux Version: 2.20.1-5.1ubuntu20 Depends: libc6 (>= 2.14), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Filename: pool/main/u/util-linux/libblkid1_2.20.1-5.1ubuntu20_amd64.deb Size: 62600 MD5sum: 1223fc4aec28d18c94d11149d016bc7c SHA1: 7d8df2fead88dfe87ea08a109b75266e863f386e SHA256: dbe663d85e9ee8aea59ed91f742d2280eb361c67470064cdbe7d716d37ac4820 Description: block device id library Multi-Arch: same Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 9f5b2c2cfc1959cf76c0457903a778b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libbluetooth-dev Priority: extra Section: libdevel Installed-Size: 399 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: amd64 Source: bluez Version: 4.101-0ubuntu13 Replaces: libsdp2-dev (<= 1.5.2) Provides: libbluetooth3-dev Depends: libbluetooth3 (= 4.101-0ubuntu13), libc6-dev | libc-dev Suggests: pkg-config Conflicts: bluez-pan, libbluetooth-dev, libsdp2-dev (<= 1.5.2) Filename: pool/main/b/bluez/libbluetooth-dev_4.101-0ubuntu13_amd64.deb Size: 66400 MD5sum: 81285a5b4ac26df4423b23e81f6a0168 SHA1: f7fc58b271ed55c5fc3e21b9899594d36b0ce7c2 SHA256: fdd1c1f0ae9491a663b070ac3e34e96b2c7d17681bb9c6d29143424300d49e0a Description: Development files for using the BlueZ Linux Bluetooth library Homepage: http://www.bluez.org Description-md5: 8b6c03a029e3a8f7be5c49ed7b41a971 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbluetooth3 Priority: optional Section: libs Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: amd64 Source: bluez Version: 4.101-0ubuntu13 Replaces: libsdp2 (<= 1.5-2) Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Conflicts: libsdp2 (<= 1.5-2) Filename: pool/main/b/bluez/libbluetooth3_4.101-0ubuntu13_amd64.deb Size: 53330 MD5sum: 2a129be90d371a5b4c80ac35ed854dbe SHA1: 072aecc012150d5efc3428f4bf780fb344196757 SHA256: 646c4e53a546d8845bfc12bf8561aa42255a5923a43fd909d7a0dd05fdbe57ac Description: Library to use the BlueZ Linux Bluetooth stack Multi-Arch: same Homepage: http://www.bluez.org Description-md5: 99ecfc643816cbb50cd9ae690a10287d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libbluetooth3-dbg Priority: extra Section: debug Installed-Size: 378 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: amd64 Source: bluez Version: 4.101-0ubuntu13 Depends: libbluetooth3 (= 4.101-0ubuntu13) Filename: pool/main/b/bluez/libbluetooth3-dbg_4.101-0ubuntu13_amd64.deb Size: 79864 MD5sum: c9d8a4df054416c9900b4cc311d48e5b SHA1: ae8d3cb4cc8e62884f40858c478f3e348915dffd SHA256: 42be9aa41515335f418cff068aa5e517ab9e0775c2e25e378d61491373ea3581 Description: Library to use the BlueZ Linux Bluetooth stack with debugging symbols Homepage: http://www.bluez.org Description-md5: 397e91470345aa1bcafbb2ed78507c5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbogl-dev Priority: optional Section: libdevel Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Samuel Thibault Architecture: amd64 Source: bogl Version: 0.1.18-9ubuntu1 Depends: libbogl0 (= 0.1.18-9ubuntu1), libc6-dev, libc6 (>= 2.14), libgd3 (>= 2.1.0~alpha~) Filename: pool/main/b/bogl/libbogl-dev_0.1.18-9ubuntu1_amd64.deb Size: 92934 MD5sum: 0b6022daeecac699d4da6d3792f9ed23 SHA1: c889456585676db4e10230b585fac78cd72dd1d2 SHA256: 5c9a4730e16dc1aa56a3468cfde2d153bcc5c5a0bb09db11f3d41dfc4c686485 Description: Ben's Own Graphics Library - development files Description-md5: 0c4bcd395d29b221f4253a517fd7ca08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbogl0 Priority: optional Section: libs Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Samuel Thibault Architecture: amd64 Source: bogl Version: 0.1.18-9ubuntu1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/b/bogl/libbogl0_0.1.18-9ubuntu1_amd64.deb Size: 50360 MD5sum: 1063e1103653f4176cd7173a97580a50 SHA1: 03f0585646bbaca865038c5238c0835ba2a6ec7f SHA256: 3396bd0acf8dd7c6a1a9fb1b03166bb235cb76d0a0a34fb8cc6db4cc567372ac Description: Ben's Own Graphics Library - shared library Multi-Arch: same Description-md5: 97b017ae8b9897959e3db5455d4978a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbonobo2-0 Priority: optional Section: libs Installed-Size: 1059 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libbonobo Version: 2.32.1-0ubuntu5 Replaces: libbonobo-activation4 (<< 1:2.4), libbonobo2-common (<< 2.32.1-0ubuntu2) Depends: libbonobo2-common (= 2.32.1-0ubuntu5), liborbit2 (>= 1:2.14.19-0.1ubuntu1), libc6 (>= 2.14), libglib2.0-0 (>= 2.31.8), liborbit-2-0 (>= 1:2.14.10), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Recommends: dbus-x11 Suggests: libbonobo2-bin Conflicts: libbonobo-activation4 (<< 1:2.4), nautilus (<< 2.2.4-5) Filename: pool/main/libb/libbonobo/libbonobo2-0_2.32.1-0ubuntu5_amd64.deb Size: 213966 MD5sum: f84fde7657b71cf0ea523885f676f210 SHA1: df17763f33f31a639bdf5e8444433d36d839d8ff SHA256: bb771b2921fd0537aaaf9488ea2fbbe134e28a68638c11b3ab94a31232218bf0 Description: Bonobo CORBA interfaces library Multi-Arch: same Description-md5: c045e6a5f3f268ea5ea59e1f0823c439 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libbonobo2-common Priority: optional Section: devel Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libbonobo Version: 2.32.1-0ubuntu5 Replaces: bonobo-activation (<< 1:2.4) Conflicts: bonobo-activation (<< 1:2.4) Filename: pool/main/libb/libbonobo/libbonobo2-common_2.32.1-0ubuntu5_all.deb Size: 34192 MD5sum: 3c03c136e70e3515e70db77f40690c61 SHA1: 2fb5814a2477215efecf959a05137d4155e70f87 SHA256: 620ac8dcad752b9ba204b391822806146c8f6948b4a54dec44f981f53ab9738c Description: Bonobo CORBA interfaces library -- support files Multi-Arch: foreign Description-md5: a396085518bc23be3c6afe583dbdd9a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libbonobo2-dev Priority: optional Section: libdevel Installed-Size: 3272 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libbonobo Version: 2.32.1-0ubuntu5 Replaces: libbonobo-activation-dev (<< 1:2.4), libbonobo2-common (<< 2.20.3-1) Depends: libbonobo2-0 (= 2.32.1-0ubuntu5), libglib2.0-dev (>= 2.8.0), liborbit2-dev (>= 1:2.12.4), libpopt-dev Conflicts: libbonobo-activation-dev (<< 1:2.4) Filename: pool/main/libb/libbonobo/libbonobo2-dev_2.32.1-0ubuntu5_amd64.deb Size: 406606 MD5sum: e0a3aaf833d712b325054fa8c34e9b2c SHA1: e3b00cf6961c9f4c0cc0f659107cf590c8503df0 SHA256: d30bab773c8959d57a4b23a62b6b43845b2c8fef3eedb5d6a8a1856a45fbf4b2 Description: Bonobo CORBA interfaces library -- development files Multi-Arch: same Description-md5: 85ead80ed3866e82a21dd2eea58627d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbonoboui2-0 Priority: optional Section: libs Installed-Size: 549 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libbonoboui Version: 2.24.5-0ubuntu3 Replaces: libbonoboui2-common (<= 2.4.3-1) Depends: gconf-service, libart-2.0-2 (>= 2.3.19), libatk1.0-0 (>= 1.12.4), libbonobo2-0 (>= 2.15.0), libc6 (>= 2.14), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglade2-0 (>= 1:2.6.1), libglib2.0-0 (>= 2.37.3), libgnome2-0 (>= 2.17.3), libgnomecanvas2-0 (>= 2.11.1), libgtk2.0-0 (>= 2.24.0), liborbit-2-0 (>= 1:2.14.10), libpopt0 (>= 1.14), libx11-6, libxml2 (>= 2.7.4), libbonoboui2-common (>= 2.24), libbonoboui2-common (<< 2.25) Pre-Depends: multiarch-support Filename: pool/main/libb/libbonoboui/libbonoboui2-0_2.24.5-0ubuntu3_amd64.deb Size: 150832 MD5sum: da279f49c4712741748d33440cf22564 SHA1: 1fbc0fa5e25c57c1a26227ca4afb043c8e7f8376 SHA256: f08b1b806ebb246e8295fc34fa5e40cc76edae038c1c44efb7d0053375bc400b Description: The Bonobo UI library Multi-Arch: same Description-md5: 4fe3bd3a5987f980cdb316f8874b0ab5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: libbonoboui2-common Priority: optional Section: libs Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libbonoboui Version: 2.24.5-0ubuntu3 Conflicts: libbonoboui2-0 (<= 2.4.3-1) Filename: pool/main/libb/libbonoboui/libbonoboui2-common_2.24.5-0ubuntu3_all.deb Size: 11388 MD5sum: e6187dbf9ccc1cb119a3e151fb9000c6 SHA1: 7f5a4f5f60a9633fce5420919457057f9526d032 SHA256: 98df9a6ddb3e5429fd41b7cbdeff9b3ced041d47126d8bf4d8a3fbf2222a992c Description: The Bonobo UI library -- common files Multi-Arch: foreign Description-md5: dd3df0e40f04d2209b504a4cbf2e6f9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: libbonoboui2-dev Priority: optional Section: libdevel Installed-Size: 2186 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libbonoboui Version: 2.24.5-0ubuntu3 Replaces: libbonoboui2-common (<< 2.24.3-2) Depends: libbonoboui2-0 (= 2.24.5-0ubuntu3), libbonobo2-0 (>= 2.15.0), libc6 (>= 2.3.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.16.0), libgnome2-0 (>= 2.17.3), libgtk2.0-0 (>= 2.8.0), liborbit-2-0 (>= 1:2.14.10), libglib2.0-dev (>= 2.6.0), libbonobo2-dev (>= 2.13.0), libgnomecanvas2-dev (>= 2.6.0), libgnome2-dev (>= 2.13.0), liborbit2-dev, libxml2-dev (>= 2.4.20), libsm-dev, libice-dev, libx11-dev Filename: pool/main/libb/libbonoboui/libbonoboui2-dev_2.24.5-0ubuntu3_amd64.deb Size: 283718 MD5sum: 1032b0ea57d90c8340e4ebb56d0fecbd SHA1: 98dffd8c79fd200f3695255cdb2ae1db83e104cd SHA256: 5fa88ab8f353219c12158b8fbb9a422895dc007ba94f8384e083c0612a876926 Description: The Bonobo UI library - development files Multi-Arch: same Description-md5: e5333991c7b9786529fbbcfbccd87e1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-atomic1.54-dev Priority: optional Section: libdevel Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-atomic1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-atomic1.53-dev Filename: pool/main/b/boost1.54/libboost-atomic1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 4906 MD5sum: 1cea9a5aa5ba0c82a3f32eb6ee7c3033 SHA1: eb9a51929f99c154b8d81956f889c3d7f0defbc7 SHA256: b32802d4ccbc6a0100a80eb6d20cf5a9dc65e058db2288164da48d38736c3131 Description: atomic data types, operations, and memory ordering constraints Multi-Arch: same Homepage: http://www.boost.org/libs/atomic/ Description-md5: 1aa2477e97733797bec0d32670d4e90e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-atomic1.54.0 Priority: optional Section: libs Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-atomic1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 8042 MD5sum: 348bb92aff38fc2a090421495a46f0ed SHA1: c67d7f013db4b0cc903f51f5c20f15e1a39704b6 SHA256: 776b201b0ea5568a0fd26738826f38057d828fa4dfea8a6e4566416122f57cd6 Description: atomic data types, operations, and memory ordering constraints Multi-Arch: same Homepage: http://www.boost.org/libs/atomic/ Description-md5: 1aa2477e97733797bec0d32670d4e90e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-chrono-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-chrono1.54-dev Filename: pool/main/b/boost-defaults/libboost-chrono-dev_1.54.0.1ubuntu1_amd64.deb Size: 3450 MD5sum: 0ec7f4729f1ee8d8d896e5d8fc7d5bb2 SHA1: 86b45f208ef03c6edb2370cc229beab634013db3 SHA256: c352dd98fa5b502c459dac3ae95296721f8e0384be75eb9cc02ec83637a92e07 Description: C++ representation of time duration, time point, and clocks (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/chrono/ Description-md5: 3ed0b8e3d2049ac6e9d2bf16559bf039 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-chrono1.54-dev Priority: optional Section: libdevel Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-chrono1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-chrono1.48-dev, libboost-chrono1.49-dev, libboost-chrono1.50-dev, libboost-chrono1.52-dev, libboost-chrono1.53-dev Filename: pool/main/b/boost1.54/libboost-chrono1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 14206 MD5sum: f8c8b07742bd23850657e96c1b585996 SHA1: 88d712325528bd5408c2a58d63dfa0e63885233e SHA256: bd808724c55af510ff960978cacb484ddb93264a4056cd0737f34d4ffc62f5c9 Description: C++ representation of time duration, time point, and clocks Multi-Arch: same Homepage: http://www.boost.org/libs/chrono/ Description-md5: 885c86b3701dab9982f79d2dcc83515c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-chrono1.54.0 Priority: optional Section: libs Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost-system1.54.0, libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-chrono1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 12550 MD5sum: 1b114d44e892da3abe69e597284ca539 SHA1: e94742777b74d81716f8969f5f4707534af46070 SHA256: f22ac4085157da4f706439a8758e6afc7d9fd8d0582da5d9435a82c46b551994 Description: C++ representation of time duration, time point, and clocks Multi-Arch: same Homepage: http://www.boost.org/libs/chrono/ Description-md5: 48bd785e2e56a406e6dbf1b5ba8ce77e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-date-time-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-date-time1.54-dev Filename: pool/main/b/boost-defaults/libboost-date-time-dev_1.54.0.1ubuntu1_amd64.deb Size: 2826 MD5sum: 7da6b21062b41190a5e4b9536dff1654 SHA1: 78f585174cce0e213e68c38001321fea015b7b2c SHA256: 8941bf2652c69b63ba742aa5a51f01a4520cc7df9bcefb853cf973a2e62f20cd Description: set of date-time libraries based on generic programming concepts (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/date_time/ Description-md5: fec011752e597965a5e71bea50d0cadc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-date-time1.54-dev Priority: optional Section: libdevel Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-date-time1.54.0 (= 1.54.0-4ubuntu3), libboost-serialization1.54-dev (= 1.54.0-4ubuntu3) Conflicts: libboost-date-time1.42-dev, libboost-date-time1.46-dev, libboost-date-time1.48-dev, libboost-date-time1.49-dev, libboost-date-time1.50-dev, libboost-date-time1.52-dev, libboost-date-time1.53-dev Filename: pool/main/b/boost1.54/libboost-date-time1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 25248 MD5sum: 5a33411a436bba8db5cbfd366330e77b SHA1: 0d1964d6573669071ccc920d05c2eb286e27fce4 SHA256: 5d5d15b91bd6eff5d63fe03d2fad318d1c1aeaf36695d6cd98ec9e75dd688e1d Description: set of date-time libraries based on generic programming concepts Multi-Arch: same Homepage: http://www.boost.org/libs/date_time/ Description-md5: fca468edfa68f3723647bff7a2ed63c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-date-time1.54.0 Priority: optional Section: libs Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-date-time1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 20742 MD5sum: 579dc1a91509f30c5fa28318a60b26ac SHA1: ec32d6e54e7a7bd235b2d548c41f5e40dc2a09b1 SHA256: cc9b08add5af44f5ad6bf0186fc6c18f41cd36e96b510d18695287a4b6ad5a64 Description: set of date-time libraries based on generic programming concepts Multi-Arch: same Homepage: http://www.boost.org/libs/date_time/ Description-md5: fca468edfa68f3723647bff7a2ed63c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libboost-dbg Priority: extra Section: debug Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-dev (= 1.54.0.1ubuntu1), libboost1.54-dbg Filename: pool/main/b/boost-defaults/libboost-dbg_1.54.0.1ubuntu1_amd64.deb Size: 1752 MD5sum: 09773f3261203547c3ee8fd3cd9703c2 SHA1: d6684dc85677acae2e20b5d3eea72628ee059788 SHA256: 7a624cb8243f4731c320ea03a3d108b871c67ba54d3ccf9f25b557b88ddf1dd6 Description: Boost C++ Libraries with debug symbols (default version) Multi-Arch: same Homepage: http://www.boost.org/ Description-md5: 4cb12452359b4fc13c9231dcd7bb8e81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost1.54-dev Suggests: libboost-doc Filename: pool/main/b/boost-defaults/libboost-dev_1.54.0.1ubuntu1_amd64.deb Size: 3076 MD5sum: baf6382cbbb1c5939b0a4655491c0db7 SHA1: 9a76bea478c1cc27e5ed419d7076dd90e8ebc9d0 SHA256: a99bc042f9b95307445510dfe91a24b8411120ba169cc2705da6a0792d1d53fe Description: Boost C++ Libraries development files (default version) Homepage: http://www.boost.org/ Description-md5: 75ed75185f266a5557b99a2d3d7e97bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-doc Priority: optional Section: doc Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: all Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost1.54-doc Filename: pool/main/b/boost-defaults/libboost-doc_1.54.0.1ubuntu1_all.deb Size: 3000 MD5sum: 27e0e00ddf558ff46f6a74b78170ecc2 SHA1: cd7054c685265efe294de675663bfe6f7386fefb SHA256: 0a970c82023ef0aaa1532d2407fe6ad5f7c0cf416b92c2fde1ca53f5f052d10a Description: Boost.org libraries documentation (default version) Homepage: http://www.boost.org/libs/ Description-md5: ce55d0e81f2b2ccba040dddda5d87edc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-filesystem-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-filesystem1.54-dev Filename: pool/main/b/boost-defaults/libboost-filesystem-dev_1.54.0.1ubuntu1_amd64.deb Size: 2854 MD5sum: a5a4be0605a10073afa537bb1720d575 SHA1: 1f90f93972324322943c1414888568fcea120864 SHA256: 3a6ee217d0d5a789db84aaf5ed8b89b017763763552e00ce7fa8af237de00fd1 Description: filesystem operations (portable paths, iteration over directories, etc) in C++ (default version) Multi-Arch: same Homepage: http://boost.org/libs/filesystem/ Description-md5: 6e07b9602e3f267bb81f55c9327b6a54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-filesystem1.54-dev Priority: optional Section: libdevel Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-filesystem1.54.0 (= 1.54.0-4ubuntu3), libboost-system1.54-dev (= 1.54.0-4ubuntu3) Conflicts: libboost-filesystem1.42-dev, libboost-filesystem1.46-dev, libboost-filesystem1.48-dev, libboost-filesystem1.49-dev, libboost-filesystem1.50-dev, libboost-filesystem1.52-dev, libboost-filesystem1.53-dev Filename: pool/main/b/boost1.54/libboost-filesystem1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 41768 MD5sum: ffa31c76741827957845ca730ee54b72 SHA1: 250732c999f2a1543a8a6aa528f9bd8a97be515b SHA256: 5796c0e5b5638f28997510c3e61b78c3a560ffbcea6375e46edcaf1d3bbbd158 Description: filesystem operations (portable paths, iteration over directories, etc) in C++ Multi-Arch: same Homepage: http://boost.org/libs/filesystem/ Description-md5: 2491b00e1306a35046eca365dc71ba1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-filesystem1.54.0 Priority: optional Section: libs Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost-system1.54.0, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-filesystem1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 34222 MD5sum: 23f0d7731566377c56ca7b086c92963a SHA1: f2062d369168862e6025519c5e33bc73b6f0f402 SHA256: 6aa223f143179f0b627d148ef27b60ae3846ec0db1a840a21b4e09e3b234440b Description: filesystem operations (portable paths, iteration over directories, etc) in C++ Multi-Arch: same Homepage: http://boost.org/libs/filesystem/ Description-md5: 2491b00e1306a35046eca365dc71ba1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntustudio-graphics Package: libboost-iostreams-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-iostreams1.54-dev Filename: pool/main/b/boost-defaults/libboost-iostreams-dev_1.54.0.1ubuntu1_amd64.deb Size: 2816 MD5sum: dc86b807adc3f13a1d577fabc0724b8b SHA1: 1d34e06894aeac86daa9f502ee76caeb78662f00 SHA256: ddc49fed8658b7c3c524a321ab4f8baae745dc0d6baf7186fb8e7cc0101a7877 Description: Boost.Iostreams Library development files (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/iostreams/ Description-md5: 5975602c88bc022c958917952dd5e364 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-iostreams1.54-dev Priority: optional Section: libdevel Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-regex1.54-dev (= 1.54.0-4ubuntu3), libboost-iostreams1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-iostreams1.42-dev, libboost-iostreams1.46-dev, libboost-iostreams1.48-dev, libboost-iostreams1.49-dev, libboost-iostreams1.50-dev, libboost-iostreams1.52-dev, libboost-iostreams1.53-dev Filename: pool/main/b/boost1.54/libboost-iostreams1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 32754 MD5sum: 50207a10c58e74f4cfe5bd0cdca7f59b SHA1: 4d7852f02e282f7e035d57b57c02d8bdcd58924d SHA256: e0ca99712c22b4fa97a7333e464d6f031ab13d26bf1f3a97b3c61e81f30cda62 Description: Boost.Iostreams Library development files Multi-Arch: same Homepage: http://www.boost.org/libs/iostreams/ Description-md5: c5f42432b54f040f1daea1900a535e47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-iostreams1.54.0 Priority: optional Section: libs Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libbz2-1.0, libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-iostreams1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 29136 MD5sum: 210b5aafdb4551d141e92a86a5182ef1 SHA1: e0fef47e8c32aef47ef4c22a6c9017f27a22b8e1 SHA256: fabb2aeb6fe9b6305f79f819e4a39a9f66f0c72f4276a2ab3afbde91ec2ac45e Description: Boost.Iostreams Library Multi-Arch: same Homepage: http://www.boost.org/libs/iostreams/ Description-md5: 3c388d3a296c3c5ceb93d6073902d96e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: libboost-program-options-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-program-options1.54-dev Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.54.0.1ubuntu1_amd64.deb Size: 2840 MD5sum: 875c3619fecdcc7f8097c20f403f1386 SHA1: 156aa158630e44a9e73623c1678bf3a8f455e2bf SHA256: 25b62fe1341a38b55c709ba69693c0b7e3d111cfe4eaa24057282e7ed08211da Description: program options library for C++ (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/program_options/ Description-md5: a440475d847084d39ab082669e382824 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-program-options1.54-dev Priority: optional Section: libdevel Installed-Size: 1322 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-program-options1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-program-options1.42-dev, libboost-program-options1.46-dev, libboost-program-options1.48-dev, libboost-program-options1.49-dev, libboost-program-options1.50-dev, libboost-program-options1.52-dev, libboost-program-options1.53-dev Filename: pool/main/b/boost1.54/libboost-program-options1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 132714 MD5sum: 7595e57d97e70490dc75a46051eca25c SHA1: 34aa749493bdaee4dd90953ddcef71c7d34b5caa SHA256: da1858125a187244d2f9942cb76452345fd607171b7d325dfbf00bd616886e9c Description: program options library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/program_options/ Description-md5: 9ab9e15257fa51221c16c7f0a9e40597 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-program-options1.54.0 Priority: optional Section: libs Installed-Size: 507 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-program-options1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 115370 MD5sum: d7f424848dc7aca6ae094bea5d0a0296 SHA1: 06a30208205ee4428221845d43e725916588dbda SHA256: 3cee47e208e5a14e500204cb1d3f4f3b6bdc27b722e3cbd28ecd7a68cd8382f9 Description: program options library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/program_options/ Description-md5: 9ab9e15257fa51221c16c7f0a9e40597 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libboost-python-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-python1.54-dev Filename: pool/main/b/boost-defaults/libboost-python-dev_1.54.0.1ubuntu1_amd64.deb Size: 3204 MD5sum: 44820c4cc2fd114f782268a86ff1b786 SHA1: e56a8223dfe1b59fb057d2bfb070a4dc631bd09a SHA256: 05fd9d6434ff7a7be66d8d5c5a2dc8f4ae5d0edbc052c6a50ac4444048340556 Description: Boost.Python Library development files (default version) Homepage: http://www.boost.org/libs/python/ Description-md5: 4390e1abd33bbf45540fd859d22b2ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-python1.54-dev Priority: optional Section: libdevel Installed-Size: 2021 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-python1.54.0 (= 1.54.0-4ubuntu3), libpython-dev | libpython3-dev Suggests: libboost1.54-doc, python-pyste Conflicts: libboost-python1.42-dev, libboost-python1.46-dev, libboost-python1.48-dev, libboost-python1.49-dev, libboost-python1.50-dev, libboost-python1.52-dev, libboost-python1.53-dev Filename: pool/main/b/boost1.54/libboost-python1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 119590 MD5sum: 182863dec8be18b119569b0157392a56 SHA1: a4ca1d81a964c2520c41aa57388ce5bbd05a5280 SHA256: b7d966b2428c2a07da7aab669982f4528bf594d6f9e2f11cb2225bc987832c52 Description: Boost.Python Library development files Multi-Arch: same Homepage: http://www.boost.org/libs/python/ Description-md5: 8c2dd471f4dbeb52cefdbe65edd291f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-python1.54.0 Priority: optional Section: python Installed-Size: 981 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-python1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 128714 MD5sum: f3680e92f5de162996b351f0f221335a SHA1: f100eeb057b0032dbdbad9cc20f1abba3e0efdca SHA256: 4c3b36f3cfabbcbad100a7d523ef4854e83a0b29447bf9db3b63acfac6de3386 Description: Boost.Python Library Multi-Arch: same Homepage: http://www.boost.org/libs/python/ Description-md5: 1fd3f0310a5498412ebe02c4766ff0b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, ubuntustudio-photography Package: libboost-regex-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-regex1.54-dev Filename: pool/main/b/boost-defaults/libboost-regex-dev_1.54.0.1ubuntu1_amd64.deb Size: 3084 MD5sum: 1d2f12e7f03fd63329306d5e6a6fefa5 SHA1: c7ece82121b879d99f467dd646dbc0b0f05e4be9 SHA256: d702b2fe2f2313b97dfb9ae65d455dfdce5c8597fe21982dfa332acf83c746e1 Description: regular expression library for C++ (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/regex/ Description-md5: f59ca6bb3564e2f39161592c7212d8f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-regex1.54-dev Priority: optional Section: libdevel Installed-Size: 2782 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-regex1.54.0 (= 1.54.0-4ubuntu3), libicu-dev Conflicts: libboost-regex1.42-dev, libboost-regex1.46-dev, libboost-regex1.48-dev, libboost-regex1.49-dev, libboost-regex1.50-dev, libboost-regex1.52-dev, libboost-regex1.53-dev Filename: pool/main/b/boost1.54/libboost-regex1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 301808 MD5sum: 3107c99c0918c12fee8da65473cfad0e SHA1: 23504dcfc03c00bb3b3a6e820aa210238bc44fdb SHA256: 3ae71f463e4bf493273854c1956361dfa2f8e8ccaaa0eb9cda8073dcab1a261a Description: regular expression library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/regex/ Description-md5: 798250c772fac56d605e432dcc6fe14f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-regex1.54.0 Priority: optional Section: libs Installed-Size: 1118 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-regex1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 261058 MD5sum: 6b61bd2a756980f9056ed00a3b592b02 SHA1: cba583c479e024d8bcc540676417f8d800a771a4 SHA256: a216857548b09f6cb044db62a9502d63161dc89aa23a99522f7a47ea23884056 Description: regular expression library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/regex/ Description-md5: 798250c772fac56d605e432dcc6fe14f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntustudio-graphics Package: libboost-serialization-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-serialization1.54-dev Filename: pool/main/b/boost-defaults/libboost-serialization-dev_1.54.0.1ubuntu1_amd64.deb Size: 3050 MD5sum: 0579a130d267233ba0ae4c17e1316cb7 SHA1: 0de7010f0428f151a20a522f4c35cb3c331e2b2c SHA256: 0e0927a0f930b928bf4139dc87558af8caab48b044a5200c5c02e541f0ced57c Description: serialization library for C++ (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/serialization/ Description-md5: 63afaec10662af03e819c54a399c6c92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-serialization1.54-dev Priority: optional Section: libdevel Installed-Size: 2162 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-serialization1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-serialization1.42-dev, libboost-serialization1.46-dev, libboost-serialization1.48-dev, libboost-serialization1.49-dev, libboost-serialization1.50-dev, libboost-serialization1.52-dev, libboost-serialization1.53-dev Filename: pool/main/b/boost1.54/libboost-serialization1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 152328 MD5sum: 559dc0e7a6c6e82be92747be7905210d SHA1: c2950122a41b95fd6323cfa2a2b00b2bacf2d128 SHA256: fe1a04a2c32d6863b280eb60072fdbd82e0e848b9efe4067f691bb09f7df4473 Description: serialization library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/serialization/ Description-md5: 94da985e07c2397fc71a3f86ec4da7dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-serialization1.54.0 Priority: optional Section: libs Installed-Size: 806 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-serialization1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 125624 MD5sum: 0d62347c3474cb19ef9fea6ec6a039f1 SHA1: 5d582572a38a38e388f688d8187249c2120483d1 SHA256: 33d7a07e1d5e0b0e6a170d2df60dd728ca40979bfbb209b188ae80857ddc452f Description: serialization library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/serialization/ Description-md5: 94da985e07c2397fc71a3f86ec4da7dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-system-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-system1.54-dev Filename: pool/main/b/boost-defaults/libboost-system-dev_1.54.0.1ubuntu1_amd64.deb Size: 2956 MD5sum: b5a538390fde36b44166ba2e5b80e4fc SHA1: 266150968ccdaa0d024bc3c68f133de65ef8d83f SHA256: e77bd3b5d46e76ad6477287b848f20dcbce7406547eb480c9853070287a09c5b Description: Operating system (e.g. diagnostics support) library (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/system/ Description-md5: 511c8b59885e43461ebbf17ad95baf29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-system1.54-dev Priority: optional Section: libdevel Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-system1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-system1.42-dev, libboost-system1.46-dev, libboost-system1.48-dev, libboost-system1.49-dev, libboost-system1.50-dev, libboost-system1.52-dev, libboost-system1.53-dev Filename: pool/main/b/boost1.54/libboost-system1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 8494 MD5sum: 00067283fcad5f784b665403a8349a01 SHA1: 4151a21e9e750719bbec1f96709f07ac53694a89 SHA256: 6e1ceec77ca0aebf23021f8dd6f37d4ae20ee9cada45a0347748284fea4c5282 Description: Operating system (e.g. diagnostics support) library Multi-Arch: same Homepage: http://www.boost.org/libs/system/ Description-md5: 1197eb2ee52a77c28d5e31e8e74c41eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-system1.54.0 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-system1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 10138 MD5sum: 423856f1fa176ceebbd980793e3d26c2 SHA1: 3938c2ea8e0a5a0c80d247c7f6c8cfb6c6967226 SHA256: bc528cb8034ad90c69d36bef2a070f9645104fd80e91133900a553d14bbf17cc Description: Operating system (e.g. diagnostics support) library Multi-Arch: same Homepage: http://www.boost.org/libs/system/ Description-md5: 1197eb2ee52a77c28d5e31e8e74c41eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: libboost-test-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-test1.54-dev Filename: pool/main/b/boost-defaults/libboost-test-dev_1.54.0.1ubuntu1_amd64.deb Size: 2858 MD5sum: bc512001e5dbfaf7d2958b1e8f38f56f SHA1: 08c2c19e4859c865c4550d1822876679503bb001 SHA256: b00d5b71f702014ffa170ff0fabfe76ef724028240625a2464473d7502600c70 Description: components for writing and executing test suites (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/test/ Description-md5: f5e9255f27b6f1dbc482e7659b46a588 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-test1.54-dev Priority: optional Section: libdevel Installed-Size: 3895 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-test1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-test1.42-dev, libboost-test1.46-dev, libboost-test1.48-dev, libboost-test1.49-dev, libboost-test1.50-dev, libboost-test1.52-dev, libboost-test1.53-dev Filename: pool/main/b/boost1.54/libboost-test1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 213456 MD5sum: 04f38542a7f7c3c69289fbcfee9af8e7 SHA1: 0fd29e4269fb6713ab2b460139956a00642a9717 SHA256: b6ee231151a85615d893324716bdc8b3a7fa5ba40a9de65cffcf5bb8eb9d0b06 Description: components for writing and executing test suites Multi-Arch: same Homepage: http://www.boost.org/libs/test/ Description-md5: 73a9e2027ebac32df5b898db3154448b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-test1.54.0 Priority: optional Section: libs Installed-Size: 774 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-test1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 178134 MD5sum: 1f183f6366e90310e70b0abfc36e7dfe SHA1: c857a2640becf8e0f0a5efd936568d646e0b0988 SHA256: c2e7f17d883902f8e49bf1b672152db8af2f948e725ebf06754ee7beb195b338 Description: components for writing and executing test suites Multi-Arch: same Homepage: http://www.boost.org/libs/test/ Description-md5: 73a9e2027ebac32df5b898db3154448b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-thread-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-thread1.54-dev Filename: pool/main/b/boost-defaults/libboost-thread-dev_1.54.0.1ubuntu1_amd64.deb Size: 2848 MD5sum: 04e501f1393f25c5640d7793882dfe1d SHA1: 1965e2c14d6b00bc10aee0e50f3e1d48781f6510 SHA256: b902099850b41024d75f1d48c16b3113edee0d3b52f71214a1b08cd4457553d1 Description: portable C++ multi-threading (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/thread/ Description-md5: 370f39f5c5f5773a2c3c264a53bf3abe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-thread1.54-dev Priority: optional Section: libdevel Installed-Size: 254 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-atomic1.54-dev (= 1.54.0-4ubuntu3), libboost-chrono1.54-dev (= 1.54.0-4ubuntu3), libboost-date-time1.54-dev (= 1.54.0-4ubuntu3), libboost-system1.54-dev (= 1.54.0-4ubuntu3), libboost-thread1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-thread1.42-dev, libboost-thread1.46-dev, libboost-thread1.48-dev, libboost-thread1.49-dev, libboost-thread1.50-dev, libboost-thread1.52-dev, libboost-thread1.53-dev Filename: pool/main/b/boost1.54/libboost-thread1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 26070 MD5sum: 87edbc4c44720b1b524457f9fa1d005d SHA1: 77d2ca2a817f050222b83cc2ed6c9b5154666cb7 SHA256: 9b18610f4034cd909ca3428be55304878b5e9788a48ed3863d829173e1f315ae Description: portable C++ multi-threading Multi-Arch: same Homepage: http://www.boost.org/libs/thread/ Description-md5: d19954bb99722597efd2b9b392158287 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-thread1.54.0 Priority: optional Section: libs Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost-system1.54.0, libc6 (>= 2.3.2), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-thread1.54.0_1.54.0-4ubuntu3_amd64.deb Size: 26508 MD5sum: 77b7bb98814b9e94fd526cd4866450d9 SHA1: c1079a7c3a0d3229bd35dfe64647d96de880b6d8 SHA256: 6f5873c252a099ffec29e4c8ee2e3fe48b02cf478a0baca3ac26dc1eb3d4872a Description: portable C++ multi-threading Multi-Arch: same Homepage: http://www.boost.org/libs/thread/ Description-md5: d19954bb99722597efd2b9b392158287 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libboost1.54-dbg Priority: extra Section: debug Installed-Size: 43985 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3) Conflicts: libboost1.42-dbg, libboost1.46-dbg, libboost1.48-dbg, libboost1.49-dbg, libboost1.50-dbg, libboost1.52-dbg, libboost1.53-dbg Filename: pool/main/b/boost1.54/libboost1.54-dbg_1.54.0-4ubuntu3_amd64.deb Size: 39531060 MD5sum: 85eb7d43c161cbcbb97e04e67437e2f8 SHA1: 1c1b498838c2fbfe9be6e919e9af2d1b19eed6a3 SHA256: 84d3582082d5fd51f190b0b5a5e6b945f3e4fafd1991ba682b017b9365a1e73e Description: Boost C++ Libraries with debug symbols Multi-Arch: same Homepage: http://www.boost.org/ Description-md5: 2890e3b727db77a6ba70dab955875bfc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost1.54-dev Priority: optional Section: libdevel Installed-Size: 93840 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libstdc++-4.8-dev | libstdc++-dev Suggests: libboost1.54-doc, libboost-atomic1.54-dev, libboost-chrono1.54-dev, libboost-context1.54-dev, libboost-coroutine.54-dev, libboost-date-time1.54-dev, libboost-exception1.54-dev, libboost-filesystem1.54-dev, libboost-graph1.54-dev, libboost-graph-parallel1.54-dev, libboost-iostreams1.54-dev, libboost-locale1.54-dev, libboost-log.54-dev, libboost-math1.54-dev, libboost-mpi1.54-dev, libboost-mpi-python1.54-dev, libboost-program-options1.54-dev, libboost-python1.54-dev, libboost-random1.54-dev, libboost-regex1.54-dev, libboost-serialization1.54-dev, libboost-signals1.54-dev, libboost-system1.54-dev, libboost-test1.54-dev, libboost-thread1.54-dev, libboost-timer1.54-dev, libboost-wave1.54-dev, libboost1.54-tools-dev, libmpfrc++-dev, libntl-dev Conflicts: bjam, boost-build, libboost1.42-dev, libboost1.46-dev, libboost1.48-dev, libboost1.49-dev, libboost1.50-dev, libboost1.52-dev, libboost1.53-dev Filename: pool/main/b/boost1.54/libboost1.54-dev_1.54.0-4ubuntu3_amd64.deb Size: 5669744 MD5sum: 2a8c858de2b6da202df036f7793197d0 SHA1: d1b4fcdf78ac0f252a55908fe2b57deeeb9d2db0 SHA256: eb0aad2337f11a678157da49b73ab88faf877bfc3a32ca199ee686a90e115a32 Description: Boost C++ Libraries development files Homepage: http://www.boost.org/ Description-md5: afccffe6a3ce49022d7832b028860029 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost1.54-doc Priority: optional Section: doc Installed-Size: 218750 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: all Source: boost1.54 Version: 1.54.0-4ubuntu3 Suggests: libboost1.54-dev (>= 1.54.0-4ubuntu3) Conflicts: libboost1.42-doc, libboost1.46-doc, libboost1.48-doc, libboost1.49-doc, libboost1.50-doc, libboost1.52-doc, libboost1.53-doc Filename: pool/main/b/boost1.54/libboost1.54-doc_1.54.0-4ubuntu3_all.deb Size: 36117554 MD5sum: 269a838d13d502c2c12ad0e07dc983be SHA1: 4db9edf7bbefccecd33f96bd8daf612190195c3f SHA256: 2fdb9cebc6d76b72b7c201f17e4622ddf6016363953d2edb53b459010ccd0904 Description: Boost.org libraries documentation Homepage: http://www.boost.org/libs/ Description-md5: 6a49ab761468ce3b7d5a6611af2773bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost1.54-tools-dev Priority: optional Section: libdevel Installed-Size: 4870 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: amd64 Source: boost1.54 Version: 1.54.0-4ubuntu3 Replaces: bjam, boost-build, libboost1.49-dev, libboost1.53-dev, libboost1.53-tools-dev Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Suggests: xsltproc, doxygen, docbook-xml (>= 4.2), docbook-xsl (>= 1.73.2), default-jdk (>= 1.4), fop (>= 0.94) Conflicts: bjam, boost-build, libboost1.49-dev, libboost1.53-tools-dev Filename: pool/main/b/boost1.54/libboost1.54-tools-dev_1.54.0-4ubuntu3_amd64.deb Size: 1048226 MD5sum: 11f0a69347e188b1382d3693433d7660 SHA1: 19c8a0734c57478f2edd2ec9aca34597a09d8f14 SHA256: f265c6a81ed2e30e296a4170483767d6cf766c239e32fe7e28d66c37dea6d556 Description: Boost C++ Libraries development tools Multi-Arch: foreign Homepage: http://www.boost.org/ Description-md5: b20d39e2efe0c14e144ce9d2c5d01d38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbrasero-media3-1 Priority: optional Section: libs Installed-Size: 1768 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: brasero Version: 3.10.0-0ubuntu1 Depends: libappindicator3-1 (>= 0.2.96), libburn4 (>= 1.3.4), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.0.0), libisofs6 (>= 1.2.6), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libtotem-plparser18 (>= 3.10.0), libunity9 (>= 3.4.6), libxml2 (>= 2.7.4), brasero-common (= 3.10.0-0ubuntu1), dvd+rw-tools Recommends: gnome-icon-theme, gstreamer1.0-plugins-good Suggests: gstreamer1.0-plugins-ugly, cdrdao (>= 1:1.2.3), gstreamer1.0-fluendo-mp3, gstreamer1.0-plugins-bad Filename: pool/main/b/brasero/libbrasero-media3-1_3.10.0-0ubuntu1_amd64.deb Size: 354182 MD5sum: 491c917c3c07b21303c017b3ade35fb0 SHA1: 86bda9afc6dfe16b9242bf9b84ebcd44dffd8e36 SHA256: 8ba97ea9435a8e82322496ddb3c60d2cc4cefef8f25c65d33e09cd9e6471c21f Description: CD/DVD burning library for GNOME - runtime Homepage: http://www.gnome.org/projects/brasero/ Description-md5: 24b5258efe5b1e76dca7a3f333ac5af7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libbrasero-media3-dev Priority: optional Section: libdevel Installed-Size: 2081 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: brasero Version: 3.10.0-0ubuntu1 Replaces: libbrasero-media-dev Depends: libbrasero-media3-1 (= 3.10.0-0ubuntu1), gir1.2-brasero-3.0 (= 3.10.0-0ubuntu1), libglib2.0-dev, libgtk-3-dev Filename: pool/main/b/brasero/libbrasero-media3-dev_3.10.0-0ubuntu1_amd64.deb Size: 88924 MD5sum: 49e696d4bb8faab290f01e6d137bbe1f SHA1: d0b042c7ab86ba5e11be22cf66fb7af346306012 SHA256: 7325c66074478d0813b81d08ada957fd58a4ef83882486f368fbe769344bd11e Description: CD/DVD burning library for GNOME - development Homepage: http://www.gnome.org/projects/brasero/ Description-md5: e5d0a609d9371ea0dd9ee6e59e1db375 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbrlapi-dbg Priority: extra Section: debug Installed-Size: 1435 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: brltty Version: 5.0-2ubuntu2 Depends: libbrlapi0.6 (= 5.0-2ubuntu2) Filename: pool/main/b/brltty/libbrlapi-dbg_5.0-2ubuntu2_amd64.deb Size: 256216 MD5sum: b94e8c5a084640d8bf68b5fc44cda0df SHA1: 787fb8fb8d1149f204d83873b963b94bd586bff0 SHA256: af6bb9b016b3f4ab800f4ec0763d1f3344059fe15027796e685b9ac1104b9e2d Description: braille display access via BRLTTY - shared library debugging symbols Homepage: http://mielke.cc/brltty/ Description-md5: 23a22943a5f502e7531a59d18cc512e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbrlapi-dev Priority: extra Section: libdevel Installed-Size: 574 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: brltty Version: 5.0-2ubuntu2 Depends: libbrlapi0.6 (= 5.0-2ubuntu2) Conflicts: libbrlapi1-dev (<< 3.8) Filename: pool/main/b/brltty/libbrlapi-dev_5.0-2ubuntu2_amd64.deb Size: 147348 MD5sum: f2873b6b83f2221f008ccd01285bfc58 SHA1: 7bdacd4b4ee00db3d92aa3f3275cb6e6a3e89c41 SHA256: ea54b9ccef3c41e5530224b502205509d63a44f6ea583dfd6566d099ac78e047 Description: Library for communication with BRLTTY - static libs and headers Multi-Arch: same Homepage: http://mielke.cc/brltty/ Description-md5: 90ebedc1883fd213db0ca76e379a6159 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbrlapi0.6 Priority: extra Section: libs Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: brltty Version: 5.0-2ubuntu2 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/b/brltty/libbrlapi0.6_5.0-2ubuntu2_amd64.deb Size: 20910 MD5sum: d0072983318e559dc57fea88c494ed33 SHA1: 9338faa83f4d1ce049c127d0ff6d585504bab053 SHA256: 79d5e3b9c8186c34e82c55b8f2ebfbfa9e729b2bf87dcac785d12caaf449441a Description: braille display access via BRLTTY - shared library Multi-Arch: same Homepage: http://mielke.cc/brltty/ Description-md5: d7471913aa262901576c796cae4d0b04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libbsd-dev Priority: optional Section: libdevel Installed-Size: 397 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: amd64 Source: libbsd Version: 0.6.0-2ubuntu1 Replaces: libfreebsd-dev (<< 0.0-8) Depends: libbsd0 (= 0.6.0-2ubuntu1) Filename: pool/main/libb/libbsd/libbsd-dev_0.6.0-2ubuntu1_amd64.deb Size: 114968 MD5sum: 9b21c970d412835d09b7b166af2f284e SHA1: f56d0fe821590ed946174a374106e8dfba502ab6 SHA256: 1d51e71fc154d0681402fc2eae02362a1ee93e41c3bb9198102bf2cb23d731cc Description: utility functions from BSD systems - development files Homepage: http://libbsd.freedesktop.org/ Description-md5: e38ece2858014cfcdc89b4a9d7ebeca9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbsd-resource-perl Priority: extra Section: perl Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.2907-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libb/libbsd-resource-perl/libbsd-resource-perl_1.2907-1build1_amd64.deb Size: 31782 MD5sum: f8e8db6c4978a0f96053006a01eab6ac SHA1: c1b9a410ebc8bc299d40ad0d1d678d8ca87fc5ca SHA256: 62b1e1b5c77494473c0be8a9334b8848519fa991cd53f860a3da4f5c9b5c128d Description: BSD process resource limit and priority functions Homepage: https://metacpan.org/release/BSD-Resource/ Description-md5: 97e499ae57ca3a884ae47cea9b49f135 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libbsd0 Priority: important Section: libs Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: amd64 Source: libbsd Version: 0.6.0-2ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libb/libbsd/libbsd0_0.6.0-2ubuntu1_amd64.deb Size: 32196 MD5sum: 6f9a318a31e30536b1e6397de3978f43 SHA1: 79babffe7da5d297203511ed6f52c1d3860b51ee SHA256: ae7f3b8337f0a16dc677faf53c8cb9f33bfa89f51f2506e2b4b1d5f83fbafd2f Description: utility functions from BSD systems - shared library Multi-Arch: same Homepage: http://libbsd.freedesktop.org/ Description-md5: 6341cc74d71c795b192431f79c0bc778 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libbsd0-dbg Priority: extra Section: libs Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: amd64 Source: libbsd Version: 0.6.0-2ubuntu1 Depends: libbsd0 (= 0.6.0-2ubuntu1) Filename: pool/main/libb/libbsd/libbsd0-dbg_0.6.0-2ubuntu1_amd64.deb Size: 66952 MD5sum: 92891e2eb3840d1074c227227394f442 SHA1: 0070b7bb9b9a94285ab20f13a76eed1941bc1019 SHA256: 74bbe109c1457ab136b85ec6cb5436c4521f2f93380da477ce4f68b92607b15c Description: utility functions from BSD systems - debugging symbols Multi-Arch: same Homepage: http://libbsd.freedesktop.org/ Description-md5: 93629d020232f83fa6cc92af8bfa2fec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbsf-java Priority: optional Section: libs Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1:2.4.0-5build1 Depends: libapache-pom-java Suggests: bsh, libxalan2-java, rhino Filename: pool/main/libb/libbsf-java/libbsf-java_2.4.0-5build1_all.deb Size: 71232 MD5sum: 04834ac2a769b170ae47a5a6e7795005 SHA1: 85bfaff3da1562f4de46e91435fa9df46add8b8b SHA256: aa0f8a9bbeb40a270fde192ccc50bf717ba99dbe22ff558984c68887bf202dff Description: Bean Scripting Framework to support scripting languages in Java Homepage: http://jakarta.apache.org/bsf/ Description-md5: 7edf52967a3df85d4e3d6a32472105f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbsf-java-doc Priority: optional Section: doc Installed-Size: 1946 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libbsf-java Version: 1:2.4.0-5build1 Replaces: libbsf-java (<< 1:2.4.0-5) Suggests: libbsf-java Breaks: libbsf-java (<< 1:2.4.0-5) Filename: pool/main/libb/libbsf-java/libbsf-java-doc_2.4.0-5build1_all.deb Size: 119644 MD5sum: 46a65011cff793e95b95e4b9f62388cb SHA1: ae6f0445b1d2aa62962bcf688f0bbaf6caa1a7e3 SHA256: c956fa225fb5d5109c5737e58b8a596d563f8adf859521641e52aa88692edece Description: Bean Scripting Framework to support scripting - documentation Homepage: http://jakarta.apache.org/bsf/ Description-md5: 92502baf2a10b38aeaf5b2752e5730e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbsh-java Priority: optional Section: java Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bsh Version: 2.0b4-15 Replaces: bsh (<= 2.0b4-13~) Breaks: bsh (<= 2.0b4-13~) Filename: pool/main/b/bsh/libbsh-java_2.0b4-15_all.deb Size: 264220 MD5sum: 02b161114371038012993b00f7c687e7 SHA1: 28bc7bf581d25a1768182c088b0ef731bfc3ace7 SHA256: c80273d0898008b93f5273b5a0e7515660dd20abae0f402d663df0c58655bb16 Description: Java scripting environment (BeanShell) Version 2 (library) Homepage: http://www.beanshell.org Description-md5: 9438acca3862ed2b76eba52014902e6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbtf1.2.0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.2.5) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libbtf1.2.0_4.2.1-3ubuntu1_amd64.deb Size: 10060 MD5sum: 9faaea978e09c4b5c03e5b7ed3c8db97 SHA1: ba8003ffc2052b3896d692bc0a99ded5e45caf19 SHA256: 0e7b8bdd773427dab39c8243481238fdc40f57d2701b80ebc071f1c1c53a1b57 Description: permutation to block triangular form library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 6e365bf2b7dd8b53a71ca8cd3531be8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libburn-dbg Priority: extra Section: libdevel Installed-Size: 1297 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: amd64 Source: libburn Version: 1.3.4-0ubuntu1 Depends: libburn4 (= 1.3.4-0ubuntu1) Filename: pool/main/libb/libburn/libburn-dbg_1.3.4-0ubuntu1_amd64.deb Size: 327718 MD5sum: 225c4f3578315146cfff44f64c1fc437 SHA1: 43902976d1bcc3af67139e9585bbb8a8c7f426c6 SHA256: 6868e22371eb59d3697d7328c2514c8a7d00841a6804d424e6285cf02fb29aec Description: debugging symbols for libburn and cdrskin Homepage: http://libburnia-project.org Description-md5: b71a359cc4a9303ddd3ea0d3a4650049 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libburn-dev Priority: optional Section: libdevel Installed-Size: 704 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: amd64 Source: libburn Version: 1.3.4-0ubuntu1 Depends: libburn4 (= 1.3.4-0ubuntu1) Suggests: libburn-doc (= 1.3.4-0ubuntu1) Filename: pool/main/libb/libburn/libburn-dev_1.3.4-0ubuntu1_amd64.deb Size: 174100 MD5sum: fe83452713cb632b270203d8ede731a5 SHA1: 4dfe019abc086b34f4269b15f5095945b8876da3 SHA256: 26d8ada6b0d8d80ea668a23dbf4b921d085b0c12fd01e232ece231ddd9c09fa9 Description: development package for libburn4 Homepage: http://libburnia-project.org Description-md5: 854de87c553918b83e5daae6f54aa114 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libburn-doc Priority: optional Section: doc Installed-Size: 2471 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: all Source: libburn Version: 1.3.4-0ubuntu1 Filename: pool/main/libb/libburn/libburn-doc_1.3.4-0ubuntu1_all.deb Size: 302590 MD5sum: dbcdeb433fa1539571c2a465d91b3991 SHA1: dca0835dc8ea659e88fc20426d07eb37ccac6755 SHA256: 1126980afa05d7c15fcf37efde5b9a3f0ea2d7e97c6dbb56a722dc99c05f1119 Description: API documentation for libburn library Homepage: http://libburnia-project.org Description-md5: 5ad35af2e43ccc2693002e90b6e34c39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libburn4 Priority: optional Section: libs Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: amd64 Source: libburn Version: 1.3.4-0ubuntu1 Depends: libc6 (>= 2.14) Filename: pool/main/libb/libburn/libburn4_1.3.4-0ubuntu1_amd64.deb Size: 136756 MD5sum: 680202c781b3c2db4fafcfe7f5904966 SHA1: 147e7928bad0fa3b327e62ef87f313e5ce3d99c1 SHA256: 148b681f26d5eb8369510dd49e976d26dd1bfc7f4b73344b29e36825a90429aa Description: library to provide CD/DVD writing functions Homepage: http://libburnia-project.org Description-md5: bef2be60a0b4c082247dac63ace7c72f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libbusiness-isbn-data-perl Priority: optional Section: perl Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 20120719.001-1 Depends: perl Filename: pool/main/libb/libbusiness-isbn-data-perl/libbusiness-isbn-data-perl_20120719.001-1_all.deb Size: 19220 MD5sum: 9535cb54f3e86e7cb7a0654f1e04e606 SHA1: 7031fc90494407f62b2e7e867a5b52803361afb9 SHA256: af4184bc488ffa78e374ea9860fd8e5bd7b3fb0fbf041cf82b369c9664be8cf6 Description: data pack for Business::ISBN Homepage: http://search.cpan.org/dist/Business-ISBN-Data/ Description-md5: 8d0e38cef4621235676190262eac2227 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbusiness-isbn-perl Priority: optional Section: perl Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.07-1 Depends: perl, libbusiness-isbn-data-perl (>= 20120719.001) Suggests: libgd-barcode-perl Filename: pool/main/libb/libbusiness-isbn-perl/libbusiness-isbn-perl_2.07-1_all.deb Size: 18092 MD5sum: face1173589ab0a9b5959e7460db9683 SHA1: 2dca1045ec6458a0f227bd6df83b1919702cba95 SHA256: c25d5ab7dd1144131954022c9ef02e11bef5a8e87a456e1435667d8ba287997b Description: Perl library to work with International Standard Book Numbers Homepage: http://sourceforge.net/projects/perl-isbn/ Description-md5: 70e3939e29425484ad8e7999a53e663c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbz2-1.0 Priority: required Section: libs Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: bzip2 Version: 1.0.6-5 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/b/bzip2/libbz2-1.0_1.0.6-5_amd64.deb Size: 33946 MD5sum: 6255e3cc75e11222564f3a8681869761 SHA1: 3e8540c58777ae0b517fac18d7919d6b8e1974a7 SHA256: 11855053a893fc406423fdbd7abdc8fbcd540e307c87e72bd36377ad9c280fb2 Description: high-quality block-sorting file compressor library - runtime Multi-Arch: same Homepage: http://www.bzip.org/ Description-md5: e921dd6ddb4bb508e6f1b62169b85d70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libbz2-dev Priority: optional Section: libdevel Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: bzip2 Version: 1.0.6-5 Replaces: bzip2 (<< 0.9.5d-3) Depends: libbz2-1.0 (= 1.0.6-5), libc6-dev | libc-dev Filename: pool/main/b/bzip2/libbz2-dev_1.0.6-5_amd64.deb Size: 33160 MD5sum: d607a83ce368646285f467f22691625a SHA1: 5a69414205f8fcd4ef2b2fbe7071c5f457030e0f SHA256: 7b9eb55d2c0873b9e7c617643a2373cb086d6e5f97fcc099eb05698ccd3905e8 Description: high-quality block-sorting file compressor library - development Multi-Arch: same Homepage: http://www.bzip.org/ Description-md5: d144fb5e23e545a63e204740e6628ad3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc-ares-dev Priority: extra Section: libdevel Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Schuldei Architecture: amd64 Source: c-ares Version: 1.10.0-2 Depends: libc-ares2 (= 1.10.0-2) Conflicts: libares-dev Filename: pool/main/c/c-ares/libc-ares-dev_1.10.0-2_amd64.deb Size: 108548 MD5sum: 7faf21d20b20e6617ec17477177842e8 SHA1: fdca26100d49a1cc0876caedf837109941028a98 SHA256: c6b84f8dd9b8851595045c285ab4effc3c327919e23c17b9b7518c2aea7bb1df Description: asynchronous name resolver - development files Multi-Arch: same Homepage: http://c-ares.haxx.se/ Description-md5: 457af4d18b9753c3360923898df35b1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc-ares2 Priority: extra Section: libs Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Schuldei Architecture: amd64 Source: c-ares Version: 1.10.0-2 Replaces: libc-ares1 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Conflicts: libcares2 Filename: pool/main/c/c-ares/libc-ares2_1.10.0-2_amd64.deb Size: 38506 MD5sum: 6214ba851e29a2a7db2b9db91f360df4 SHA1: aca6d5aba4abff2d2616fdd40c2264c27e6f2321 SHA256: f1b038e1ebcb1547d3b1d8b86e55e34fe77a8cd5d7b60f701f349597939a0349 Description: asynchronous name resolver Multi-Arch: same Homepage: http://c-ares.haxx.se/ Description-md5: 2ddfa5de14223839b0bc40795e305cef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc-bin Essential: yes Priority: required Section: libs Installed-Size: 3449 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Replaces: libc0.1, libc0.3, libc6, libc6.1 Depends: libc6 (>> 2.19), libc6 (<< 2.20), libcap2 (>= 2.10) Breaks: libc0.1 (<< 2.10), libc0.3 (<< 2.10), libc6 (<< 2.10), libc6.1 (<< 2.10) Filename: pool/main/e/eglibc/libc-bin_2.19-0ubuntu6_amd64.deb Size: 1168038 MD5sum: 29734cf23a3d37693bc54b2e41c6c50c SHA1: 5c5e2e885d2280bcfb153eb9267e60d22b51c293 SHA256: b05b44db73d301263cdd0262d87f51f9756529ff2955e910d0c31928a25ca9d7 Description: Embedded GNU C Library: Binaries Multi-Arch: foreign Homepage: http://www.eglibc.org Description-md5: 522a2db5296e3eb124bc283f6680cc58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libc-dev-bin Priority: optional Section: libdevel Installed-Size: 372 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Replaces: libc0.1-dev, libc0.3-dev, libc6-dev, libc6.1-dev Depends: libc6 (>> 2.19), libc6 (<< 2.20) Recommends: manpages-dev Filename: pool/main/e/eglibc/libc-dev-bin_2.19-0ubuntu6_amd64.deb Size: 68958 MD5sum: 8cb8af426ba0cdc0d0182bc4da9de6c1 SHA1: 060d883940a18338f4e672bbb41572244ad3969a SHA256: b1fa0ff70f30fadc96a9bdbbeb9318f7eed161de9abbc5518f1a93ef4f95a5a5 Description: Embedded GNU C Library: Development binaries Multi-Arch: foreign Homepage: http://www.eglibc.org Description-md5: fd5fdd2377062e0827c669a30c97e2dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libc6 Priority: required Section: libs Installed-Size: 10496 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Replaces: libc6-amd64 Provides: glibc-2.19-1 Depends: libgcc1 Suggests: glibc-doc, debconf | debconf-2.0, locales Conflicts: prelink (<= 0.0.20090311-1), tzdata (<< 2007k-1), tzdata-etch Breaks: hurd (<< 1:0.5.git20140203-1), lsb-core (<= 3.2-27), nscd (<< 2.19) Filename: pool/main/e/eglibc/libc6_2.19-0ubuntu6_amd64.deb Size: 4729214 MD5sum: 3a4619b64715f14e0e94725adcab1839 SHA1: 267fd1c9b3555e740f63fec5f55ee8d3a509bac3 SHA256: d82bcd1f16a43b1dc4fa35a738d87c5dd25d6a87f8e0a529b2c188e984866ded Description: Embedded GNU C Library: Shared libraries Multi-Arch: same Homepage: http://www.eglibc.org Description-md5: 5089b4da6684d7432ab618fb5b79cec5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libc6-arm64-cross Priority: extra Section: libs Maintainer: Ubuntu Developers Architecture: all Source: arm64-cross-toolchain-base (0.10) Version: 2.19-0ubuntu2cross0.10 Provides: glibc-2.19-1-arm64-cross, libc6-arm64-dcv1 Conflicts: prelink-arm64-cross (<= 0.0.20090311-1), tzdata-etch-arm64-cross Filename: pool/main/a/arm64-cross-toolchain-base/libc6-arm64-cross_2.19-0ubuntu2cross0.10_all.deb Size: 991662 MD5sum: dbd6f633558507c62f2cde88a3081902 SHA1: bedcb52b357d9cc77d6e5d3189752128c3ea3065 SHA256: 56248e65042667797c33874aa0fb6863824857b2429b7085084c5b8f9d9110a9 Description: Embedded GNU C Library: Shared libraries (for cross-compiling) Description-md5: 24a92b169d87e4acb423e610210802be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-armel-armhf-cross Priority: extra Section: devel Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: all Source: armhf-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Depends: libc6-armel-cross Filename: pool/main/a/armhf-cross-toolchain-base/libc6-armel-armhf-cross_2.19-0ubuntu2cross1.104_all.deb Size: 1388 MD5sum: aed47a28254fde24a2e08ebb4c133361 SHA1: ff637c4febc9ddb7afd605f187d7575825a73a63 SHA256: a98bcb22a6a98e5a236d8ae78017d4685fb2fa229f2ab2ff801855f4be8557a1 Description: Dummy package to get libc6:armel installed Description-md5: 780e9a19653fff3e8fee03fa7d0e12fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-armel-cross Priority: extra Section: devel Maintainer: Ubuntu Developers Architecture: all Source: armel-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Provides: glibc-2.19-1-armel-cross, libc6-armel-armel-cross, libc6-armel-dcv1 Conflicts: prelink-armel-cross (<= 0.0.20090311-1), tzdata-etch-armel-cross Filename: pool/main/a/armel-cross-toolchain-base/libc6-armel-cross_2.19-0ubuntu2cross1.104_all.deb Size: 966534 MD5sum: e7e6a77330bd5131546c020ddaee7696 SHA1: 05381a0ad488a41b53421583bb1ba1db06693f55 SHA256: db977c4383267885bd6137f6b99491b1a487dedd7bdb005cff0a2a1c4688ed02 Description: Embedded GNU C Library: Shared libraries (for cross-compiling) Description-md5: 24a92b169d87e4acb423e610210802be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-armhf-cross Priority: extra Section: libs Maintainer: Ubuntu Developers Architecture: all Source: armhf-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Provides: glibc-2.19-1-armhf-cross, libc6-armhf-armhf-cross, libc6-armhf-dcv1 Conflicts: prelink-armhf-cross (<= 0.0.20090311-1), tzdata-etch-armhf-cross Filename: pool/main/a/armhf-cross-toolchain-base/libc6-armhf-cross_2.19-0ubuntu2cross1.104_all.deb Size: 946028 MD5sum: 76602a7c49f9954a995cbf17e57222c7 SHA1: 6e277fbf6ba462038aa351d7aad5f2f2d0e76582 SHA256: ac8c3cd764a01ab001f01f8ed505e370ad20d3a2de8de11ea077b3693657559d Description: Embedded GNU C Library: Shared libraries (for cross-compiling) Description-md5: 24a92b169d87e4acb423e610210802be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dbg Priority: extra Section: debug Installed-Size: 22300 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Provides: libc-dbg Depends: libc6 (= 2.19-0ubuntu6) Filename: pool/main/e/eglibc/libc6-dbg_2.19-0ubuntu6_amd64.deb Size: 3456158 MD5sum: 811563f5a5f98c378e84a6978e4074d7 SHA1: 0f7e3e7db98b68c8f00697c5611b30ec109e3140 SHA256: f582a531405c51dc388506bada3b36bf44ac5032e5ae06c0dc8ace4bde0f69ce Description: Embedded GNU C Library: detached debugging symbols Multi-Arch: same Homepage: http://www.eglibc.org Description-md5: 277bfaa2a11e93ce7a8e08b0947e8bd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libc6-dev Priority: optional Section: libdevel Installed-Size: 12139 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Provides: libc-dev Depends: libc6 (= 2.19-0ubuntu6), libc-dev-bin (= 2.19-0ubuntu6), linux-libc-dev Recommends: gcc | c-compiler Suggests: glibc-doc, manpages-dev Conflicts: libc0.1-dev, libc0.3-dev, libc6.1-dev Breaks: binutils (<< 2.20.1-1), binutils-gold (<< 2.20.1-11), cmake (<< 2.8.4+dfsg.1-5), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2), gcc-4.6 (<< 4.6.0-12), libhwloc-dev (<< 1.2-3), libjna-java (<< 3.2.7-4), liblouis-dev (<< 2.3.0-2), liblouisxml-dev (<< 2.4.0-2), make (<< 3.81-8.1), pkg-config (<< 0.26-1) Filename: pool/main/e/eglibc/libc6-dev_2.19-0ubuntu6_amd64.deb Size: 1910710 MD5sum: 507e5aad9877cf1a8136efd491156488 SHA1: dfbd9e3d4ac3888a10d08abfa5bf1df4db3691c8 SHA256: 71a737cabeb49801ee38de577e5edf2f4c2671185ac44f23fc14b0660359a4d1 Description: Embedded GNU C Library: Development Libraries and Header Files Multi-Arch: same Homepage: http://www.eglibc.org Description-md5: 67dac41d6c8268d6a08835d858b160af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libc6-dev-arm64-cross Priority: extra Section: libdevel Maintainer: Ubuntu Developers Architecture: all Source: arm64-cross-toolchain-base (0.10) Version: 2.19-0ubuntu2cross0.10 Provides: libc-dev-arm64-cross, libc6-dev-arm64-dcv1 Depends: libc6-arm64-cross (= 2.19-0ubuntu2cross0.10), linux-libc-dev-arm64-cross Conflicts: libc0.1-dev-arm64-cross, libc0.3-dev-arm64-cross, libc6.1-dev-arm64-cross Filename: pool/main/a/arm64-cross-toolchain-base/libc6-dev-arm64-cross_2.19-0ubuntu2cross0.10_all.deb Size: 1687894 MD5sum: 978135bf49885f600e2d5bab8c6eb4b5 SHA1: dd8df5e1795505aed7aa92cce341d5a2f14906c6 SHA256: 580873ec2f36930861f7df8f7f57a48b5935b0daefeedcd67daf0a43d4c1db19 Description: Embedded GNU C Library: Development Libraries and Header Files (for cross-compiling) Description-md5: 9367b9762a0012b825ea039bd9a1e844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-armel-armhf-cross Priority: extra Section: devel Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: all Source: armhf-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Depends: libc6-dev-armel-cross Filename: pool/main/a/armhf-cross-toolchain-base/libc6-dev-armel-armhf-cross_2.19-0ubuntu2cross1.104_all.deb Size: 1132 MD5sum: 89929809f5e7867dd7c86c8efc8d66f5 SHA1: e746ba936aa226110854a7882753c88278474092 SHA256: 8fa2ac79f356f30275140288c7b131be21beb0c802719e2f12a3d1bcc7e4d36c Description: Dummy package to get libc6-dev:armel installed Description-md5: f80e6c73db074d37066ad221aa84dc6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-armel-cross Priority: extra Section: devel Maintainer: Ubuntu Developers Architecture: all Source: armel-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Provides: libc-dev-armel-cross, libc6-dev-armel-armel-cross, libc6-dev-armel-dcv1 Depends: libc6-armel-cross (= 2.19-0ubuntu2cross1.104), linux-libc-dev-armel-cross Conflicts: libc0.1-dev-armel-cross, libc0.3-dev-armel-cross, libc6.1-dev-armel-cross Filename: pool/main/a/armel-cross-toolchain-base/libc6-dev-armel-cross_2.19-0ubuntu2cross1.104_all.deb Size: 1615598 MD5sum: a724455e754d585a9de82d7ea750f3d8 SHA1: 9bf8d8d5cdb205baedf71f06e80dd659e7ab8081 SHA256: 0f79e39a26068ab4539494c70fa36d1d6e9cc0e5c5c764084718c6540c97421e Description: Embedded GNU C Library: Development Libraries and Header Files (for cross-compiling) Description-md5: 9367b9762a0012b825ea039bd9a1e844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-armhf-cross Priority: extra Section: libdevel Maintainer: Ubuntu Developers Architecture: all Source: armhf-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Provides: libc-dev-armhf-cross, libc6-dev-armhf-armhf-cross, libc6-dev-armhf-dcv1 Depends: libc6-armhf-cross (= 2.19-0ubuntu2cross1.104), linux-libc-dev-armhf-cross Conflicts: libc0.1-dev-armhf-cross, libc0.3-dev-armhf-cross, libc6.1-dev-armhf-cross Filename: pool/main/a/armhf-cross-toolchain-base/libc6-dev-armhf-cross_2.19-0ubuntu2cross1.104_all.deb Size: 1587368 MD5sum: 9942268c1d8d2ce50e609804c23020ac SHA1: 1723a0aa5bccf34a45bea20af68e1e61aef91633 SHA256: 1f02e9b93c21efc99ee5b413d63dc8e5ed191aba9fb5ccabc4a0b0f0e135570e Description: Embedded GNU C Library: Development Libraries and Header Files (for cross-compiling) Description-md5: 9367b9762a0012b825ea039bd9a1e844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-i386 Priority: optional Section: libdevel Installed-Size: 6188 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Replaces: libc6-dev (<< 2.13-11) Provides: lib32c-dev Depends: libc6-i386 (= 2.19-0ubuntu6), libc6-dev (= 2.19-0ubuntu6) Recommends: gcc-multilib Conflicts: libc6-dev (<< 2.13-14), libc6-i386 (<= 2.9-18) Filename: pool/main/e/eglibc/libc6-dev-i386_2.19-0ubuntu6_amd64.deb Size: 1148584 MD5sum: ce74b0164e61f262c8846b02233f2588 SHA1: d7c706f51dc3b5108a1cd40274bd8ef7972c16ae SHA256: 4eb7e4aef20ff8b66514a193aef290b9bcce3bc14963807f71c657a16421069f Description: Embedded GNU C Library: 32-bit development libraries for AMD64 Homepage: http://www.eglibc.org Description-md5: 7c1b5a7fe354423c59e0053eb8cb613d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-powerpc-cross Priority: extra Section: libdevel Maintainer: Ubuntu Developers Architecture: all Source: powerpc-cross-toolchain-base (1.1) Version: 2.19-0ubuntu2cross1.1 Provides: libc-dev-powerpc-cross, libc6-dev-powerpc-dcv1 Depends: libc6-powerpc-cross (= 2.19-0ubuntu2cross1.1), linux-libc-dev-powerpc-cross Conflicts: libc0.1-dev-powerpc-cross, libc0.3-dev-powerpc-cross, libc6.1-dev-powerpc-cross Filename: pool/main/p/powerpc-cross-toolchain-base/libc6-dev-powerpc-cross_2.19-0ubuntu2cross1.1_all.deb Size: 1774564 MD5sum: 80b60d20c3857cbb8196e858ae1ff59a SHA1: c3e7b90b48cdb0b57d6154808a23468ce6c980ca SHA256: 38521ee2270efb19553de3316172a5ff13244fea953e361b8b5c9890cf95906d Description: Embedded GNU C Library: Development Libraries and Header Files (for cross-compiling) Description-md5: 9367b9762a0012b825ea039bd9a1e844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-ppc64-powerpc-cross Priority: extra Section: libdevel Maintainer: Ubuntu Developers Architecture: all Source: powerpc-cross-toolchain-base (1.1) Version: 2.19-0ubuntu2cross1.1 Replaces: libc6-dev-powerpc-cross (<< 2.13-11) Provides: lib64c-dev-powerpc-cross, libc6-dev-ppc64-powerpc-dcv1 Depends: libc6-ppc64-powerpc-cross (= 2.19-0ubuntu2cross1.1), libc6-dev-powerpc-cross (= 2.19-0ubuntu2cross1.1) Conflicts: libc6-dev-powerpc-cross (<< 2.13-14) Filename: pool/main/p/powerpc-cross-toolchain-base/libc6-dev-ppc64-powerpc-cross_2.19-0ubuntu2cross1.1_all.deb Size: 1427632 MD5sum: 2ff8da742e91e01a317ac3426aafbcca SHA1: 72f0e8754ae36311c3694e05246bc2433aacbbb9 SHA256: 41dd1805f2fb6098b1722b6c2bb4d3cb7c1f8a9ca52e3f01db0d9db90ff936db Description: Embedded GNU C Library: 64bit Development Libraries for PowerPC64 (for cross-compiling) Description-md5: 299efbff8dd103d807798f8961769770 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-ppc64el-cross Priority: extra Section: libdevel Maintainer: Ubuntu Developers Architecture: all Source: ppc64el-cross-toolchain-base (0.2) Version: 2.19-0ubuntu2cross0.2 Provides: libc-dev-ppc64el-cross, libc6-dev-ppc64el-dcv1 Depends: libc6-ppc64el-cross (= 2.19-0ubuntu2cross0.2), linux-libc-dev-ppc64el-cross Conflicts: libc0.1-dev-ppc64el-cross, libc0.3-dev-ppc64el-cross, libc6.1-dev-ppc64el-cross Filename: pool/main/p/ppc64el-cross-toolchain-base/libc6-dev-ppc64el-cross_2.19-0ubuntu2cross0.2_all.deb Size: 1957228 MD5sum: 438056e9d253684400a311a2eb64510a SHA1: a253bf1129f463423e5e8e230df55f96b0da9fb0 SHA256: 97ee80a9350e4dd537f0e87ea9ac6b369290e17535fadbdcefa900d7c5d84b95 Description: Embedded GNU C Library: Development Libraries and Header Files (for cross-compiling) Description-md5: 9367b9762a0012b825ea039bd9a1e844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-x32 Priority: optional Section: libdevel Installed-Size: 7389 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Depends: libc6-x32 (= 2.19-0ubuntu6), libc6-dev-i386 (= 2.19-0ubuntu6), libc6-dev (= 2.19-0ubuntu6) Filename: pool/main/e/eglibc/libc6-dev-x32_2.19-0ubuntu6_amd64.deb Size: 1410294 MD5sum: ba948bb8695c05dba2d8b8acb1a56bc5 SHA1: c9946f3a01a9e27f808aaa7dc1f2837fc1e39612 SHA256: 96d1402977045c638f43f74ae2e3bc74fdf74fa4ca4df2da3733e012eecee570 Description: Embedded GNU C Library: X32 ABI Development Libraries for AMD64 Homepage: http://www.eglibc.org Description-md5: 140597acae786a385454e1181b2fbecb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libc6-i386 Priority: optional Section: libs Installed-Size: 9631 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Replaces: libc6-dev-i386 Depends: libc6 (= 2.19-0ubuntu6) Filename: pool/main/e/eglibc/libc6-i386_2.19-0ubuntu6_amd64.deb Size: 2204320 MD5sum: 12ca7758922a285958f278a5928841b7 SHA1: 7d84f8bcd07faa439ff8f011c0a62901e727fa29 SHA256: 45374414aeec8ef8cd0ac2b539a0e24cf6e15f3d82ac66334f62528e6fcf8038 Description: Embedded GNU C Library: 32-bit shared libraries for AMD64 Homepage: http://www.eglibc.org Description-md5: df3228b44bd419350356b93fc5a98cb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-pic Priority: optional Section: libdevel Installed-Size: 8688 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Provides: glibc-pic, libc-pic Depends: libc6 (= 2.19-0ubuntu6) Conflicts: libc-pic Filename: pool/main/e/eglibc/libc6-pic_2.19-0ubuntu6_amd64.deb Size: 1369990 MD5sum: 7bb6891b5ed60f5c4a42cefa76146ac5 SHA1: c36e62afe81b9fc84583f43555cde1f8e2c0c8a5 SHA256: 7618317b4a4508da23ad3d379b2bd91b4c9d7df72ee57e00424790f7489d273f Description: Embedded GNU C Library: PIC archive library Multi-Arch: same Homepage: http://www.eglibc.org Description-md5: 85973cd40f4511da29e5fd362e133f28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-powerpc-cross Priority: extra Section: libs Maintainer: Ubuntu Developers Architecture: all Source: powerpc-cross-toolchain-base (1.1) Version: 2.19-0ubuntu2cross1.1 Replaces: libc6-powerpc-powerpc-cross Provides: glibc-2.19-1-powerpc-cross, libc6-powerpc-dcv1 Conflicts: prelink-powerpc-cross (<= 0.0.20090311-1), tzdata-etch-powerpc-cross Filename: pool/main/p/powerpc-cross-toolchain-base/libc6-powerpc-cross_2.19-0ubuntu2cross1.1_all.deb Size: 1073706 MD5sum: e3e1b2816d34fa25f3b76c3e48beb6c2 SHA1: 123fb0e974691b166bad7f3196798cf7c2fa23f1 SHA256: ff4f5d32c43a49b474d4eee3679bb8ecb9e34c72de05204c0cfc254ec482888d Description: Embedded GNU C Library: Shared libraries (for cross-compiling) Description-md5: 24a92b169d87e4acb423e610210802be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-ppc64-powerpc-cross Priority: extra Section: libs Maintainer: Ubuntu Developers Architecture: all Source: powerpc-cross-toolchain-base (1.1) Version: 2.19-0ubuntu2cross1.1 Provides: libc6-ppc64-powerpc-dcv1 Filename: pool/main/p/powerpc-cross-toolchain-base/libc6-ppc64-powerpc-cross_2.19-0ubuntu2cross1.1_all.deb Size: 1239250 MD5sum: 56c382cfab9a688bb451b2292bae417d SHA1: f04838578003e2decc715d31956e2bdf120287cf SHA256: c6c70d6d4289157687622edb840855072223332bd8a0f34a1be403b1ca9f90ba Description: Embedded GNU C Library: 64bit Shared libraries for PowerPC64 (for cross-compiling) Description-md5: 53c6ccf5f962b10779c2e791cdc50a86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-ppc64el-cross Priority: extra Section: libs Maintainer: Ubuntu Developers Architecture: all Source: ppc64el-cross-toolchain-base (0.2) Version: 2.19-0ubuntu2cross0.2 Provides: glibc-2.19-1-ppc64el-cross, libc6-ppc64el-dcv1 Conflicts: prelink-ppc64el-cross (<= 0.0.20090311-1), tzdata-etch-ppc64el-cross Filename: pool/main/p/ppc64el-cross-toolchain-base/libc6-ppc64el-cross_2.19-0ubuntu2cross0.2_all.deb Size: 1167910 MD5sum: eba68ef9921dada1178f75e03d7d6daf SHA1: 219fa21e476607bf4c3e5a664c48675ae631e9e2 SHA256: 919c1a16909d2a61c860abf12442daee7f435b64d4bbd60fee75f21b0cdf7b3d Description: Embedded GNU C Library: Shared libraries (for cross-compiling) Description-md5: 24a92b169d87e4acb423e610210802be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-prof Priority: extra Section: libdevel Installed-Size: 9950 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Depends: libc6 (= 2.19-0ubuntu6) Filename: pool/main/e/eglibc/libc6-prof_2.19-0ubuntu6_amd64.deb Size: 1520710 MD5sum: 589d8b1f5babe2054f83889e7275f094 SHA1: 21749418891c8d4363bdc7947b504422665beb33 SHA256: 75e9939c644d9c371c96a751173a8b35e0476b1b5396d2e9469fe5724c45cacc Description: Embedded GNU C Library: Profiling Libraries Multi-Arch: same Homepage: http://www.eglibc.org Description-md5: 37f174a2430988386de68890169f5224 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libc6-x32 Priority: optional Section: libs Installed-Size: 10289 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Depends: libc6 (= 2.19-0ubuntu6) Filename: pool/main/e/eglibc/libc6-x32_2.19-0ubuntu6_amd64.deb Size: 2435726 MD5sum: e09d5ec759ce4df7af1707a0447589ab SHA1: e75efa4107f1bf1923c5bd4ca1c1968bda089ce0 SHA256: 53ca34f91b18ce82f3f9f1394f60177a88e72bba65f46af82413e8066c5de41e Description: Embedded GNU C Library: X32 ABI Shared libraries for AMD64 Homepage: http://www.eglibc.org Description-md5: f36805e5d41866f6c61e0d5467d9294b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcaca-dev Priority: optional Section: libdevel Installed-Size: 2117 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hocevar Architecture: amd64 Source: libcaca Version: 0.99.beta18-1ubuntu5 Depends: libcaca0 (= 0.99.beta18-1ubuntu5), libslang2-dev Filename: pool/main/libc/libcaca/libcaca-dev_0.99.beta18-1ubuntu5_amd64.deb Size: 331226 MD5sum: cafda04c7fa877f5168a58782eceb12c SHA1: 4ff63b6cb0ab1ec68dc32db99025e7d2fdb65e3d SHA256: 5f8474aa1f1f5fec2f545bc2bbd74d30d495e4d31c805b6214246d25957cd501 Description: development files for libcaca Homepage: http://caca.zoy.org/wiki/libcaca Description-md5: a8407cdc111c971683cb4652610d1e8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcaca0 Priority: optional Section: libs Installed-Size: 1049 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hocevar Architecture: amd64 Source: libcaca Version: 0.99.beta18-1ubuntu5 Depends: libc6 (>= 2.14), libncursesw5 (>= 5.6+20070908), libslang2 (>= 2.2.4), libstdc++6 (>= 4.1.1), libtinfo5, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/libc/libcaca/libcaca0_0.99.beta18-1ubuntu5_amd64.deb Size: 202162 MD5sum: 2532fc55507b526751257c826e6b1b43 SHA1: 8d9db25e57a4acf23e2306414e2e6ffc6625f646 SHA256: 490e2da5678f75916fb807e9b06c7ff1c997c9bf0bc9d72f2b267aa85a3977fb Description: colour ASCII art library Multi-Arch: same Homepage: http://caca.zoy.org/wiki/libcaca Description-md5: d4849604710d4ce2aca997ad664f17fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcairo-gobject2 Priority: optional Section: libs Installed-Size: 332 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: cairo Version: 1.13.0~20140204-0ubuntu1 Depends: libc6 (>= 2.2.5), libcairo2 (>= 1.10.0), libglib2.0-0 (>= 2.14.0) Pre-Depends: multiarch-support Filename: pool/main/c/cairo/libcairo-gobject2_1.13.0~20140204-0ubuntu1_amd64.deb Size: 17258 MD5sum: 04832c19e3fae1163ad68175f6088baa SHA1: 45a73e66de4f5714c6d389122b9a604dccb8ac3e SHA256: feab2c1cd931732844b8806a47e95e6a4d32014a33dd72a07f6b511590730067 Description: The Cairo 2D vector graphics library (GObject library) Multi-Arch: same Homepage: http://cairographics.org/ Description-md5: 90e74160b3e9c9c5bd23b0262b83c47f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcairo-script-interpreter2 Priority: optional Section: libs Installed-Size: 444 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: cairo Version: 1.13.0~20140204-0ubuntu1 Depends: libc6 (>= 2.14), libcairo2 (>= 1.13.0~20140204), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), liblzo2-2, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/c/cairo/libcairo-script-interpreter2_1.13.0~20140204-0ubuntu1_amd64.deb Size: 53356 MD5sum: 69ce3734174613a6322496228101f1e4 SHA1: 826512e59437f40cfa8ce3dd311b5db007078370 SHA256: bcd275fbca5c6b18bc26d2ad0dc4e0cb4fde21ecc21473fe5f53f13a7d9239b4 Description: The Cairo 2D vector graphics library (script interpreter) Multi-Arch: same Homepage: http://cairographics.org/ Description-md5: 4845e41ff7468a737b9a3d9086b27385 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcairo2 Priority: optional Section: libs Installed-Size: 1373 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: cairo Version: 1.13.0~20140204-0ubuntu1 Depends: libc6 (>= 2.14), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.5), libpixman-1-0 (>= 0.30.0), libpng12-0 (>= 1.2.13-4), libx11-6, libxcb-render0, libxcb-shm0, libxcb1 (>= 1.6), libxext6, libxrender1, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Breaks: iceape-browser (<= 2.0.3-3), libgtk-directfb-2.0-0, xulrunner-1.9, xulrunner-1.9.1 (<= 1.9.1.8-3) Filename: pool/main/c/cairo/libcairo2_1.13.0~20140204-0ubuntu1_amd64.deb Size: 535128 MD5sum: eaa06887f990af8d282ea6656c8cb5d4 SHA1: bbcf2ee1528a0c1978634af28672a62b9edd0a78 SHA256: 74cd2674d46f00984d2da21af8f69e65bd5b4e6e579a3dfa666be1b059aaaeff Description: The Cairo 2D vector graphics library Multi-Arch: same Homepage: http://cairographics.org/ Description-md5: 263d485b1d6e2e1e534a91e570d6d5de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcairo2-dbg Priority: extra Section: libdevel Installed-Size: 6034 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: cairo Version: 1.13.0~20140204-0ubuntu1 Depends: libcairo2 (= 1.13.0~20140204-0ubuntu1) Suggests: libcairo-gobject2 (= 1.13.0~20140204-0ubuntu1), libcairo-script-interpreter2 (= 1.13.0~20140204-0ubuntu1), cairo-perf-utils (= 1.13.0~20140204-0ubuntu1) Filename: pool/main/c/cairo/libcairo2-dbg_1.13.0~20140204-0ubuntu1_amd64.deb Size: 1353216 MD5sum: 17ad7bf3fb2733c5f8f3ef2ca4c3c711 SHA1: ce7162b75d13dc266d7e8ce1d3c718c323309cce SHA256: 851d1f4fdd4f984be1e94a3caa00253690c9bd8c3001ce18d344fb10cd064d02 Description: The Cairo 2D vector graphics library (debugging symbols) Multi-Arch: same Homepage: http://cairographics.org/ Description-md5: 6d08317e1e0b4a57845b4cec25ce8351 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcairo2-dev Priority: optional Section: libdevel Installed-Size: 2737 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: cairo Version: 1.13.0~20140204-0ubuntu1 Provides: libcairo-dev Depends: libcairo2 (= 1.13.0~20140204-0ubuntu1), libcairo-gobject2 (= 1.13.0~20140204-0ubuntu1), libcairo-script-interpreter2 (= 1.13.0~20140204-0ubuntu1), libfontconfig1-dev (>= 2.2.95), libfreetype6-dev (>= 2.1.10), libx11-dev, libxrender-dev (>= 0.6), libpng-dev, libsm-dev, libpixman-1-dev (>= 0.22.0), libxcb1-dev (>= 1.6), libxcb-render0-dev (>= 1.6), libxcb-shm0-dev, libxext-dev, libglib2.0-dev Suggests: libcairo2-doc Filename: pool/main/c/cairo/libcairo2-dev_1.13.0~20140204-0ubuntu1_amd64.deb Size: 573232 MD5sum: 82623d1e102bc092e11af76200b8c396 SHA1: 3d963b43caf2e032d20ac97ef3c1d2ecb4c53b12 SHA256: 68c4b3d4660a248cc35359984d507b32293e11503520c5b139007f4796f70302 Description: Development files for the Cairo 2D graphics library Homepage: http://cairographics.org/ Description-md5: 07fe86d11452aa2efc887db335b46f58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcairo2-doc Priority: optional Section: libs Installed-Size: 2026 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: all Source: cairo Version: 1.13.0~20140204-0ubuntu1 Recommends: lynx | www-browser Filename: pool/main/c/cairo/libcairo2-doc_1.13.0~20140204-0ubuntu1_all.deb Size: 233190 MD5sum: ed8f775713b62d019bf595bbef412ca7 SHA1: 7a9da89a6d1e9250b58ed9d760784a94141ef417 SHA256: bf1a18375bcdc9a5e7ce75c2a776adefc32d50cd18c3461a24cd9b4a3b207c90 Description: Documentation for the Cairo Multi-platform 2D graphics library Homepage: http://cairographics.org/ Description-md5: 4603e32e069e318a18ec80fe36526ad6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcairomm-1.0-1 Priority: optional Section: libs Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: cairomm Version: 1.10.0-1ubuntu3 Replaces: libcairomm-1.0-0 Depends: libc6 (>= 2.14), libcairo2 (>= 1.10.0), libgcc1 (>= 1:4.1.1), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/c/cairomm/libcairomm-1.0-1_1.10.0-1ubuntu3_amd64.deb Size: 40498 MD5sum: ed970b14f222edbd6bb31c4b13fe6e9a SHA1: fd64bc63302c8e2848659a6d02305f64105557cc SHA256: 7cc9897df2b247881b32c77b28d03f105734061dc053472461c80bfb932c270e Description: C++ wrappers for Cairo (shared libraries) Multi-Arch: same Homepage: http://cairographics.org/cairomm/ Description-md5: 9c233d1a7e5d4352725228498d10f142 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcairomm-1.0-dev Priority: optional Section: libdevel Installed-Size: 543 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: cairomm Version: 1.10.0-1ubuntu3 Depends: libcairomm-1.0-1 (= 1.10.0-1ubuntu3), libcairo2-dev (>= 1.10.0), libsigc++-2.0-dev Suggests: libcairomm-1.0-doc Filename: pool/main/c/cairomm/libcairomm-1.0-dev_1.10.0-1ubuntu3_amd64.deb Size: 73484 MD5sum: 0933b78b8354a3129b90ef0c19be5dc4 SHA1: c70a34b39b99e822c0adb157d4ba7603ef439dc1 SHA256: a1d0787bc02a93d6800f3d6c7ea9b4b3b5cd4e2f56efb63f7dccffef389cd18b Description: C++ wrappers for Cairo (development files) Multi-Arch: same Homepage: http://cairographics.org/cairomm/ Description-md5: a2c3c7b4cc9b846b20056a6c91abe5d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcairomm-1.0-doc Priority: optional Section: doc Installed-Size: 2339 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: all Source: cairomm Version: 1.10.0-1ubuntu3 Suggests: www-browser Filename: pool/main/c/cairomm/libcairomm-1.0-doc_1.10.0-1ubuntu3_all.deb Size: 395514 MD5sum: ef02260371974126e579890f5a95da59 SHA1: 0388c43b3acbede682615bcced19fb05dfa9919c SHA256: 637506dd16d6fa93d2914faa241c046a24b688582ef300d0856ea12babe2196f Description: C++ wrappers for Cairo (documentation) Homepage: http://cairographics.org/cairomm/ Description-md5: d5774e305168423f6cfea4081006286c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcamd2.3.1 Priority: optional Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.2.5) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libcamd2.3.1_4.2.1-3ubuntu1_amd64.deb Size: 21894 MD5sum: a8e292160d2f735e808cb7596aa5e66d SHA1: 0f3e98ef66d81c69e649cc3d314d61dc463bf648 SHA256: 5fb1c659f78034af8b8e1a4e4036150454373a0e81b32f3a6ce7ff78916a16cd Description: symmetric approximate minimum degree library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 33f572e7507f842b25b406aac73c7832 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libcamel-1.2-45 Priority: optional Section: libs Installed-Size: 1603 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.15), libcomerr2 (>= 1.01), libglib2.0-0 (>= 2.35.9), libgssapi-krb5-2 (>= 1.10+dfsg~), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~beta3), libsqlite3-0 (>= 3.6.0), zlib1g (>= 1:1.1.4) Breaks: evolution (<< 2.26) Filename: pool/main/e/evolution-data-server/libcamel-1.2-45_3.10.4-0ubuntu1_amd64.deb Size: 548414 MD5sum: 3a9d49833bbf859a5a7e8bf992511917 SHA1: f838deff1821e841c75d826c7129de30a8a43102 SHA256: c47de2f522f83b58c682d688876f80d7b76bac61c99988adb5988fd1246aca04 Description: Evolution MIME message handling library Homepage: http://projects.gnome.org/evolution/ Description-md5: 43ee52bbe1cd65f95cd1bd1abbdbcedd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libcamel1.2-dev Priority: optional Section: libdevel Installed-Size: 708 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libcamel-1.2-45 (= 3.10.4-0ubuntu1), libglib2.0-dev, libedataserver1.2-dev (= 3.10.4-0ubuntu1), libsqlite3-dev (>= 3.5), libnss3-dev, libnspr4-dev Filename: pool/main/e/evolution-data-server/libcamel1.2-dev_3.10.4-0ubuntu1_amd64.deb Size: 72572 MD5sum: 33080881c9130e771c17a949930c64de SHA1: 472fbf036ed8fe1e2337c5378259ff84a33f262f SHA256: a09195aa92bcb8ec0ce6aeae3320a8be240d1515afd5b54ddb5d1721cc22d4ed Description: Development files for libcamel Homepage: http://projects.gnome.org/evolution/ Description-md5: 24e22bc22b8cf416a7ef05c26c0d1807 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-dev Priority: optional Section: libdevel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra0 (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-dev_0.30-0ubuntu3_amd64.deb Size: 6800 MD5sum: c9e16b004c560eea7c1eae0c8cff680a SHA1: fc6433ca8739d0b47fce2e1ec189b45f5be1bbe2 SHA256: 91e9c525bbe494e12d4bea936fd26922561397fb2cd8ab18a88a49ef0ebaa0c2 Description: simple abstract interface for playing event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 33daa26374470334d81b5d41c69f51c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-doc Priority: optional Section: doc Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: all Source: libcanberra Version: 0.30-0ubuntu3 Filename: pool/main/libc/libcanberra/libcanberra-doc_0.30-0ubuntu3_all.deb Size: 24652 MD5sum: f9c1ae43b9951d697e1bbbed5d453e18 SHA1: b6563e30415b6d9fca572482489dd13f3faf7b45 SHA256: 5ca77c01c4d110bb856171431aa556ab2aac5b5ee075639336d65c62aa344d78 Description: simple abstract interface for playing event sounds - doc Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: a2055006d08141cee13dba3f7df7be75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gstreamer Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.3.4), libcanberra0 (= 0.30-0ubuntu3), libglib2.0-0 (>= 2.32), libgstreamer1.0-0 (>= 1.0.0) Filename: pool/main/libc/libcanberra/libcanberra-gstreamer_0.30-0ubuntu3_amd64.deb Size: 7890 MD5sum: 017893c1cb8d24d5a50ecf6b281d962f SHA1: e3c675322b02aaa07de5c076daa98c69cd2b88d1 SHA256: 1572f3269d7d3906f537d34d202e3bc3d550f3613cfa9ed3d15a8c55a142bf43 Description: GStreamer backend for libcanberra Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 6ed9b79f20215c7d94edabb80133434f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gstreamer-dbg Priority: extra Section: debug Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gstreamer (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-gstreamer-dbg_0.30-0ubuntu3_amd64.deb Size: 18980 MD5sum: 549688fc7ab05767aac8a11b5484ee13 SHA1: b51014fa66c18ca34a70b4fb8e1263b5ec474fb6 SHA256: e17b7cf8f9c4b6125037303466422d48587f7269c45feb99b3a8b0edaf4eb3aa Description: GStreamer libcanberra backend detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 5400bf2af6a3b426d6cef7a524c195dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk-common-dev Priority: optional Section: libdevel Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: all Source: libcanberra Version: 0.30-0ubuntu3 Replaces: libcanberra-gtk-dev (<< 0.26-1) Breaks: libcanberra-gtk-dev (<< 0.26-1) Filename: pool/main/libc/libcanberra/libcanberra-gtk-common-dev_0.30-0ubuntu3_all.deb Size: 8512 MD5sum: 63bb5a51c6512d8b4f6d94327980f82a SHA1: 214c94640ba24f91dcfdca6301a5a11bfb7ab3fa SHA256: d56185459f48ff3e0fd36a790aa0a162828b291342859a0dd16a6860a9dad63c Description: simple abstract interface for playing event sounds Multi-Arch: foreign Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: dfadcafa9c35e2f4291932f0df1611a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk-dev Priority: optional Section: libdevel Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk0 (= 0.30-0ubuntu3), libcanberra-dev (= 0.30-0ubuntu3), libgtk2.0-dev (>= 2.20), libx11-dev, libcanberra-gtk-common-dev Filename: pool/main/libc/libcanberra/libcanberra-gtk-dev_0.30-0ubuntu3_amd64.deb Size: 1984 MD5sum: 2220d14f65da1835caa367ad6118180b SHA1: 806d86e850f5c651d631377354376ae3419aadf3 SHA256: 755012a40d3314a29e5e2d9960977af8d41b51c15f995e798ce63a334d43717d Description: simple abstract interface for playing event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 9e052b90b219863489863bd5ebe0b6f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk-module Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.2.5), libcanberra-gtk0 (>= 0.2), libglib2.0-0 (>= 2.32), libgtk2.0-0 (>= 2.24.5-4), libx11-6 Filename: pool/main/libc/libcanberra/libcanberra-gtk-module_0.30-0ubuntu3_amd64.deb Size: 9206 MD5sum: a51558a62bf49820247593a4031a0c72 SHA1: c22503ee00695e8673f8b3043a12bfd650158490 SHA256: f5c7f985674b909ced7eba75613f266375e969f1a646024f2ee0654e6e7c6af7 Description: translates GTK+ widgets signals to event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 405adfc13d8fdb076cf1c2bffb2842ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-photography, ubuntu-gnome-desktop Package: libcanberra-gtk-module-dbg Priority: extra Section: libs Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk-module (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-gtk-module-dbg_0.30-0ubuntu3_amd64.deb Size: 24320 MD5sum: 3e52458940df5b517c700491a8531895 SHA1: 3a9c1226e2e4fe23a6934d9726175e10f6159cb8 SHA256: fd7857b07e839e9c2a2fcc4ac1ec7bcb8143861ed2a7b4f9f0ce30a47973a85e Description: libcanberra GtkModule detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 618dd90cfe9881b0bb35f4b09319fb5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk0 Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.3.4), libcanberra0 (>= 0.12), libglib2.0-0 (>= 2.32), libgtk2.0-0 (>= 2.24.0), libx11-6 Pre-Depends: multiarch-support Recommends: libcanberra-gtk-module Filename: pool/main/libc/libcanberra/libcanberra-gtk0_0.30-0ubuntu3_amd64.deb Size: 7656 MD5sum: 4455bf409e9466f78ddd5760c8f7a3c3 SHA1: b82ccab3e5d6e8b31c3da9148dcc7f809ccbaa9f SHA256: d8214216afb2d1efc2642a932702f07900e98b6c787ae5227162059e60a656d6 Description: GTK+ helper for playing widget event sounds with libcanberra Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 341328ccbf871bdf01238ff50e7bd58f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-photography, ubuntu-gnome-desktop Package: libcanberra-gtk0-dbg Priority: extra Section: libs Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk0 (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-gtk0-dbg_0.30-0ubuntu3_amd64.deb Size: 19056 MD5sum: ffd5a4eea4ff6c4ab9cad3129ee1fbcf SHA1: 674c2197822a20854843aa284c72a68d2d6e25fc SHA256: 590e6314f20fa4087af92b0afa8dad2d022e8c18e066bf42516c0b30e79d9322 Description: libcanberra-gtk libraries detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 8e5c2972e04d6c415ff3fc83608884de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk3-0 Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.3.4), libcanberra0 (>= 0.12), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.0.0), libx11-6 Pre-Depends: multiarch-support Recommends: libcanberra-gtk3-module Filename: pool/main/libc/libcanberra/libcanberra-gtk3-0_0.30-0ubuntu3_amd64.deb Size: 7614 MD5sum: b202736f07a5d8d21a5b54464b1b7a1e SHA1: c6d2ae0b2507e8c28830d7e09e4b4753f83dbb0f SHA256: 59d40a8842508fd375d6487546d9d153fb9840e9b259acf776b5321320f11526 Description: GTK+ 3.0 helper for playing widget event sounds with libcanberra Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 28d6a7626596fa7a0b31bcefc4258694 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcanberra-gtk3-0-dbg Priority: extra Section: debug Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk3-0 (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-gtk3-0-dbg_0.30-0ubuntu3_amd64.deb Size: 15656 MD5sum: 717d29cd19d03520b1cfc1720a359615 SHA1: 44e1ec2934d6ed002efb7ac0ca8391b0e048edf0 SHA256: b16369865d5687bec6ada0b81ec6f5ff0aa46a6187817ffc2dfcff25e58c3d15 Description: libcanberra-gtk libraries detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: cbbbc0152e4e505c3a514d927bacd7a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk3-dev Priority: optional Section: libdevel Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk3-0 (= 0.30-0ubuntu3), libcanberra-dev (= 0.30-0ubuntu3), libcanberra-gtk-common-dev, libgtk-3-dev, libx11-dev Filename: pool/main/libc/libcanberra/libcanberra-gtk3-dev_0.30-0ubuntu3_amd64.deb Size: 1986 MD5sum: 036e4ed9e6dbe9827f77837bdcf7289d SHA1: fa68e3e20b61fe0e4afbddd946882bd17915a55a SHA256: 6b92880da328109d05f31ad2d43248bec183c0eabd9f6f1e6ccaa03d20f59625 Description: simple abstract interface for playing event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 3b72bc87209dcf7255d86a9cc09eb6d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk3-module Priority: extra Section: debug Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.2.5), libcanberra-gtk3-0 (>= 0.25), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.2.2-3), libx11-6 Filename: pool/main/libc/libcanberra/libcanberra-gtk3-module_0.30-0ubuntu3_amd64.deb Size: 9402 MD5sum: da0f8a60296995446ccdabdbf2fd8b86 SHA1: ac1b7063353b084e1fd2be7bcff690715e3cbda7 SHA256: 48784d4b33c3e365507187fb0e992118a5dddfde4340798db088197c2f911840 Description: translates GTK3 widgets signals to event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 58c5135ab21e644eaa3987ff9a609e4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcanberra-gtk3-module-dbg Priority: extra Section: debug Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk3-module (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-gtk3-module-dbg_0.30-0ubuntu3_amd64.deb Size: 20646 MD5sum: ea935529b785c937de2b34b5d0027669 SHA1: 6cd8d28f11fb806acf346eb167794c5ca38362a7 SHA256: d2d2ff28a34106a6f058c958cc9e94218d36fadc2ba3fd435038ecf008f93699 Description: libcanberra GtkModule detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 3a548785c55b42f735d5b2711622a6ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-pulse Priority: optional Section: libdevel Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.3.4), libcanberra0 (= 0.30-0ubuntu3), libpulse0 (>= 1:0.99.1), pulseaudio Filename: pool/main/libc/libcanberra/libcanberra-pulse_0.30-0ubuntu3_amd64.deb Size: 11244 MD5sum: 4b2e6bd887bea60ece8b486f5ade7906 SHA1: d5d9e03bdafe57befdb28ebd6f829984a6bb3a7d SHA256: d1eace42774f6fe97e2eaac287c823177cc165ec0cce8f40a7007ecf121f3128 Description: PulseAudio backend for libcanberra Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 4d30b366834b96439df096fd4f8db59b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libcanberra-pulse-dbg Priority: extra Section: debug Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-pulse (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-pulse-dbg_0.30-0ubuntu3_amd64.deb Size: 22426 MD5sum: bb50a002bff040b9d7a998b44674ef8d SHA1: 6b8b05f623eee900f1efa49a97adca6106158624 SHA256: e3aca7a92fe957eaaad99054b75f22736f0cb141042ac8278f9908c572acedfe Description: PulseAudio libcanberra backend detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: c6932573dc901519ad80f84abd58e016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra0 Priority: optional Section: libs Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.14), libltdl7 (>= 2.4.2), libtdb1 (>= 1.2.7+git20101214), libvorbisfile3 (>= 1.1.2), sound-theme-freedesktop Pre-Depends: multiarch-support Suggests: libcanberra-gtk0, libcanberra-pulse Filename: pool/main/libc/libcanberra/libcanberra0_0.30-0ubuntu3_amd64.deb Size: 36508 MD5sum: 2838d3d7423112add574dd148311547b SHA1: afe4e37f3d0bacbbdc9ae507decd772dc9965dc4 SHA256: ee236e68a82ace7e9b829db17719b109a41f4db9986ffea6b07f1bc4cd9ad894 Description: simple abstract interface for playing event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: cddaf8d318137467db05076564b9e1fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcanberra0-dbg Priority: extra Section: libs Installed-Size: 310 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: amd64 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra0 (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra0-dbg_0.30-0ubuntu3_amd64.deb Size: 65886 MD5sum: a6019ed06183c2a50ef1983ad35384e7 SHA1: ff9527bc5c28bb9c71c677ffc2c50015e38b5f76 SHA256: c169865b556e719b994dda74786cb5d45a5a7d3e9160842f0347399b9c931e1c Description: libcanberra libraries detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 78e8bb06d92e73a48ea54757e983614c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcap-dev Priority: optional Section: libdevel Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Werner Architecture: amd64 Source: libcap2 Version: 1:2.24-0ubuntu2 Replaces: libcap2-dev Provides: libcap2-dev Depends: libcap2 (= 1:2.24-0ubuntu2) Suggests: manpages-dev Conflicts: libcap2-dev Filename: pool/main/libc/libcap2/libcap-dev_2.24-0ubuntu2_amd64.deb Size: 21592 MD5sum: 83d798e41d73cedd7c9da62f0d861cc4 SHA1: ea7be4f69b1ff131847eb716a87f990c331283e7 SHA256: 301bb0c136ba33dd9a76f3a6f6ad300b49004026434766860365b5e0755e04ad Description: development libraries and header files for libcap2 Multi-Arch: same Homepage: http://sites.google.com/site/fullycapable/ Description-md5: d69347927c96a3f49a38efab9a73d32d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcap-ng-dev Priority: optional Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: amd64 Source: libcap-ng Version: 0.7.3-1ubuntu2 Depends: libcap-ng0 (= 0.7.3-1ubuntu2) Filename: pool/main/libc/libcap-ng/libcap-ng-dev_0.7.3-1ubuntu2_amd64.deb Size: 21276 MD5sum: e84270e18a51f2aed4cbc2fa20397a43 SHA1: ac0fec13f011419dd466c7f2029a6097b45c986d SHA256: ae966edc4397c6d8ad7f9428bb846a8919b4747e285d0b210a7aa3bcfcc0f0eb Description: Development and header files for libcap-ng Homepage: http://people.redhat.com/sgrubb/libcap-ng Description-md5: 64bc86cc1334255a166399bd218d1df6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcap-ng0 Priority: standard Section: libs Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: amd64 Source: libcap-ng Version: 0.7.3-1ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libc/libcap-ng/libcap-ng0_0.7.3-1ubuntu2_amd64.deb Size: 9876 MD5sum: 1924881f610166b54fda4b4fe9cdc0e5 SHA1: f3685d85e70e70ae41f0bba4f23c180b8c9c9ecb SHA256: d492d774f1d5db5309d8185eb8bffb98a5a5a10cc1952694ff298907e16bd952 Description: An alternate POSIX capabilities library Homepage: http://people.redhat.com/sgrubb/libcap-ng Description-md5: a9611912ade327f38052faa7edd07603 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libcap2 Priority: required Section: libs Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Werner Architecture: amd64 Version: 1:2.24-0ubuntu2 Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Filename: pool/main/libc/libcap2/libcap2_2.24-0ubuntu2_amd64.deb Size: 10538 MD5sum: cda4985b1036c02f7f0f0b42a522cd20 SHA1: bce4633b8e4de753eceafd63168f6ebf61c19503 SHA256: 14a3f5581d58e1aeff82a0c8a172d98e0741fb1f9bba9da36b9aef11eea29965 Description: support for getting/setting POSIX.1e capabilities Multi-Arch: same Homepage: http://sites.google.com/site/fullycapable/ Description-md5: 70bc0599e63caf0281090292b349ac9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libcap2-bin Priority: important Section: utils Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Werner Architecture: amd64 Source: libcap2 Version: 1:2.24-0ubuntu2 Depends: libc6 (>= 2.14), libcap2 (>= 2.10) Recommends: libpam-cap Suggests: libcap-dev Conflicts: libcap-bin Filename: pool/main/libc/libcap2/libcap2-bin_2.24-0ubuntu2_amd64.deb Size: 15664 MD5sum: d65620b12b179b36d3468fd373d01e73 SHA1: 9fc94f7afbb7be158cbf65a5f77fff9f590d1de0 SHA256: ff4d8d5ec2bd231f9931de1ac8dc2b66c3ff5e680f7861c37ab8fbaf86c7e6b3 Description: basic utility programs for using capabilities Homepage: http://sites.google.com/site/fullycapable/ Description-md5: 91b6887d53faf2a601809e4df7e37739 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libcapture-tiny-perl Priority: optional Section: perl Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.24-1 Depends: perl Filename: pool/main/libc/libcapture-tiny-perl/libcapture-tiny-perl_0.24-1_all.deb Size: 18600 MD5sum: 5d3c7c469ea44feedf42467892b08c5c SHA1: 5be0455ebc684c3b3136829241f282b7c7b1d5c9 SHA256: bfc29c0550e279972076c07b32e1c98806daf7ed6559b2669892a1e5c449cc16 Description: module to capture STDOUT and STDERR Homepage: https://metacpan.org/release/Capture-Tiny/ Description-md5: 5c1326e5886eb960290e2887315c0062 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcarp-clan-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.04-1 Depends: perl Filename: pool/main/libc/libcarp-clan-perl/libcarp-clan-perl_6.04-1_all.deb Size: 14144 MD5sum: ae3644d49e5550144911a4a33bb1a5fd SHA1: 20c8380d9c86c71b83ad4a072d0b9f9a19756ecb SHA256: f2f2213d55f659dfe76e58a4f941521d8d2ac3eb0b20990311d948d06fe13266 Description: Perl enhancement to Carp error logging facilities Homepage: http://search.cpan.org/dist/Carp-Clan/ Description-md5: e5a6eb72f36e93a94e8c3ddae4f4e21c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libccolamd2.8.0 Priority: optional Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.2.5) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libccolamd2.8.0_4.2.1-3ubuntu1_amd64.deb Size: 23254 MD5sum: 950aca26b8e384527d5ccf281194a349 SHA1: 0f29adf0a4e7f51a0c77185191bf57a75c661ce3 SHA256: c311a006e3d0373fbe39bd5d999b78f31aafcea4d9a9c7851eca319300523ccc Description: constrained column approximate library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 5f3652d2b70c784dca41724ec361ac90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libcdb-dev Priority: optional Section: libdevel Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Michael Tokarev Architecture: amd64 Source: tinycdb Version: 0.78 Replaces: tinycdb (<< 0.75) Depends: libcdb1 (= 0.78) Recommends: tinycdb Filename: pool/main/t/tinycdb/libcdb-dev_0.78_amd64.deb Size: 19170 MD5sum: 0cf14cdfe08e1e501ec6b6a5e5630da6 SHA1: e95d648d4000b27eb0fa9c55107c2c15ad25b7ad SHA256: fc2186ffd31822be5bf5204ef164083b3f19c221773283784709a9384c81eb35 Description: development files for constant databases (cdb) Description-md5: 99a3c220b50d0876b5c71d671a218cb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdb1 Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Michael Tokarev Architecture: amd64 Source: tinycdb Version: 0.78 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/t/tinycdb/libcdb1_0.78_amd64.deb Size: 13582 MD5sum: f744be6412ffa1ce7744742109ab349c SHA1: 430250f79353ca865cd414e0971662ad559970f6 SHA256: dffbf7a26ecff4f16d5aa2f27c04bf86d0dc7a56acb85bbf1644c0d3f85d24ef Description: shared library for constant databases (cdb) Multi-Arch: same Description-md5: 49231186403d20807df971e388513617 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcdio-cdda-dev Priority: optional Section: libdevel Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: amd64 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libcdio-cdda1 (= 0.83-4.1ubuntu1), libcdio-dev, libc6-dev | libc-dev Filename: pool/main/libc/libcdio/libcdio-cdda-dev_0.83-4.1ubuntu1_amd64.deb Size: 19906 MD5sum: 4426a17da856f57d0369a3c3dadc4a3f SHA1: d50f997c809be21bb52ee93b20bb6ac2f1d7d580 SHA256: 1a868f39d605ba52c9c4f03f4d5ffce92be1d5b2bc26dd0845d4b1b632e673d3 Description: library to read and control digital audio CDs (development files) Homepage: http://www.gnu.org/software/libcdio/ Description-md5: cc879d65dd0f0f2b5cf3ad5083cd91c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdio-cdda1 Priority: optional Section: libs Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: amd64 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libc6 (>= 2.14), libcdio13 (>= 0.83) Filename: pool/main/libc/libcdio/libcdio-cdda1_0.83-4.1ubuntu1_amd64.deb Size: 15466 MD5sum: f6ad4965aea9a78673e8889c7310899d SHA1: 59bf41f7ffd28c39231fc67be151d3c017cc4e2b SHA256: 79505625d22b44e7ee491deba81d6fd5c931b5f4939f3324901001488d8dcf04 Description: library to read and control digital audio CDs Homepage: http://www.gnu.org/software/libcdio/ Description-md5: 37e67b059e05685fe9088e224253ecdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libcdio-dev Priority: optional Section: devel Installed-Size: 675 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: amd64 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libcdio13 (= 0.83-4.1ubuntu1), libc6-dev | libc-dev, dpkg (>= 1.15.4) | install-info Filename: pool/main/libc/libcdio/libcdio-dev_0.83-4.1ubuntu1_amd64.deb Size: 152288 MD5sum: a792d5dc92c390c52513dba8e6bfbec8 SHA1: 1870880467f766daf44a1f479c3e6390cfc4e042 SHA256: a8a8505d1dcb889ae3ba5f01b76ca616c479a5e65213a33866ef35d3116e5c38 Description: library to read and control CD-ROM (development files) Homepage: http://www.gnu.org/software/libcdio/ Description-md5: 69075d5ba09a07334affe44f52f94b6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdio-paranoia-dev Priority: optional Section: libdevel Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: amd64 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libcdio-paranoia1 (= 0.83-4.1ubuntu1), libcdio-cdda-dev, libcdio-dev, libc6-dev | libc-dev Filename: pool/main/libc/libcdio/libcdio-paranoia-dev_0.83-4.1ubuntu1_amd64.deb Size: 17756 MD5sum: 0bed59b9bffe79ef056be78692e44913 SHA1: dd257771d4b2e1fd0660f72ff7ef4138bed52ccf SHA256: 506f8b5ae294da6c814fc2565306dad31bf107dc6f27cc5f67d54c997b5f4746 Description: library to read digital audio CDs with error correction (development files) Homepage: http://www.gnu.org/software/libcdio/ Description-md5: f83a8c84a36846105e3494b5dea4244c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdio-paranoia1 Priority: optional Section: libs Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: amd64 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libc6 (>= 2.14), libcdio-cdda1 (>= 0.83), libcdio13 (>= 0.83) Filename: pool/main/libc/libcdio/libcdio-paranoia1_0.83-4.1ubuntu1_amd64.deb Size: 15158 MD5sum: c1d21142a9066f178e7506f66879c43e SHA1: baf8dbde4b323986f88868049a49a38dff079f1a SHA256: e7165c541b89995a57a733509ae5d810249e6032d02cc2f03bffcdea19a9280a Description: library to read digital audio CDs with error correction Homepage: http://www.gnu.org/software/libcdio/ Description-md5: cc3435321a161f5f503f93431943251b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libcdio13 Priority: optional Section: libs Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: amd64 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libc6 (>= 2.14) Filename: pool/main/libc/libcdio/libcdio13_0.83-4.1ubuntu1_amd64.deb Size: 53586 MD5sum: 6f29424ef9e77cb48bf731531f1a2fc3 SHA1: f1d756e5af50713d007b04c51678f344a7d34a84 SHA256: 0acb02fc11eb1bba3959dbc0f0970de24d32ff3084c9a20caf4d8331698286d6 Description: library to read and control CD-ROM Homepage: http://www.gnu.org/software/libcdio/ Description-md5: cfd26896ddfcc94bc6dec5a0e3cefbf9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libcdparanoia-dev Priority: optional Section: libdevel Installed-Size: 190 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: amd64 Source: cdparanoia Version: 3.10.2+debian-11 Provides: libcdparanoia0-dev Depends: libcdparanoia0 (= 3.10.2+debian-11) Filename: pool/main/c/cdparanoia/libcdparanoia-dev_3.10.2+debian-11_amd64.deb Size: 53190 MD5sum: 3d080c4152f113f130536b83fa209112 SHA1: c2ababffe660bb3d4d57bab978bbbb2f45d2051e SHA256: 1ca1700b2e3feaaafa578e85b01acfba19877423d38d535f01b32f2015e6fb3d Description: audio extraction tool for sampling CDs (development) Multi-Arch: same Homepage: http://www.xiph.org/paranoia/ Description-md5: acec99a4d550d44b0eb2da3c75a21736 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdparanoia0 Priority: optional Section: sound Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: amd64 Source: cdparanoia Version: 3.10.2+debian-11 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/c/cdparanoia/libcdparanoia0_3.10.2+debian-11_amd64.deb Size: 53142 MD5sum: 17524772a17e7bdaef7a744e4c8097b2 SHA1: 987e841f8cccb9f8392998cf6af552280166ef07 SHA256: 1b99c9eb57e31dc4b04de8785f1fecd7e9672b9d08695493f13f0084e74d7da2 Description: audio extraction tool for sampling CDs (library) Multi-Arch: same Homepage: http://www.xiph.org/paranoia/ Description-md5: 9c2625360224a2ad47519f64ce1f1f5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcdr-0.0-0 Priority: optional Section: libs Installed-Size: 905 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libcdr Version: 0.0.15-1ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), liblcms2-2 (>= 2.2+git20110628), libstdc++6 (>= 4.4.0), libwpd-0.9-9, zlib1g (>= 1:1.1.4) Filename: pool/main/libc/libcdr/libcdr-0.0-0_0.0.15-1ubuntu1_amd64.deb Size: 370640 MD5sum: 1cd5ea4b82bf632fcd6151847ec54b38 SHA1: b538f4573521767be834cb726cfca9dccf999d0f SHA256: 35a445a95226ff1d0f92edfec90fe85a7e836863d406c3323a08fb3bdb773cd2 Description: library for reading and converting Corel DRAW files Homepage: http://freedesktop.org/wiki/Software/libcdr Description-md5: 4762a6ae7e1d1806578fd6a25e9711c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libcdr-dev Priority: optional Section: libdevel Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libcdr Version: 0.0.15-1ubuntu1 Depends: libcdr-0.0-0 (= 0.0.15-1ubuntu1), liblcms2-dev, libwpd-dev (>= 0.9.0), libwpg-dev (>= 0.2.0), zlib1g-dev Filename: pool/main/libc/libcdr/libcdr-dev_0.0.15-1ubuntu1_amd64.deb Size: 3822 MD5sum: d53ec2efe45396a5cac3b25a8e7ca96d SHA1: e58d5749853593dfe8aefb7a5461cecf3f436718 SHA256: 6a79aa21984dcb7194f896aa9c7477be1bafcd9f3d9bb9d5eb048c09fa1ee8cb Description: library for reading and converting Corel DRAW files -- development Homepage: http://freedesktop.org/wiki/Software/libcdr Description-md5: e2c8541fd0b2625eecd3c470db2019a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdr-doc Priority: optional Section: doc Installed-Size: 7034 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libcdr Version: 0.0.15-1ubuntu1 Filename: pool/main/libc/libcdr/libcdr-doc_0.0.15-1ubuntu1_all.deb Size: 507990 MD5sum: 785667f0d5db6ec566e6ceee854524dc SHA1: 7066f38fac39e48158f1dcdeccf53b21a1b5515f SHA256: 726726133abd7cf7ae4d874a3c0d907c9480e8a2635eb5cb20ab82f0860d2c48 Description: library for reading and converting Corel DRAW files -- documentation Homepage: http://freedesktop.org/wiki/Software/libcdr Description-md5: 521f5a1d55246aaf7ad691d6113bfffe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdt5 Priority: optional Section: libs Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: amd64 Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.2.5) Conflicts: libgraphviz4 Filename: pool/main/g/graphviz/libcdt5_2.36.0-0ubuntu3_amd64.deb Size: 23104 MD5sum: 884957c19b9448d758e0557eb47fa8a0 SHA1: e8391d96c0b4d9dc7c5788b960175447bc229e4a SHA256: c1ccf7b77846cd10f9c856a3f503586f65a30edb68e98116cf4436c93b9cd3e1 Description: rich set of graph drawing tools - cdt library Homepage: http://www.graphviz.org/ Description-md5: d9902443b1aa2da91da7ca4482e5eb20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-audio Package: libcephfs-dev Priority: optional Section: libdevel Installed-Size: 234872 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Replaces: libceph-dev, libceph1-dev, libcephfs1-dev Depends: libcephfs1 (= 0.79-0ubuntu1) Conflicts: libceph-dev, libceph1-dev, libcephfs1-dev Filename: pool/main/c/ceph/libcephfs-dev_0.79-0ubuntu1_amd64.deb Size: 26392124 MD5sum: 4f0c1033c18378e2ece47749f3355b8a SHA1: fa2720d5482582e7421a72b2df4ec67c943eea7c SHA256: 11182e1ba034b5624cfe4df5b1dc2379cd491215451b8791d4546ea8e1555515 Description: Ceph distributed file system client library (development files) Homepage: http://ceph.com/ Description-md5: 6b03c162d6b2cd6497a86ae380717147 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcephfs-jni Priority: optional Section: libs Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Depends: libcephfs1 (= 0.79-0ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Filename: pool/main/c/ceph/libcephfs-jni_0.79-0ubuntu1_amd64.deb Size: 32338 MD5sum: 5cf42dd132af779fab11925d0ba8e14c SHA1: 970e7a1f6841436d67af802f0237f1927338e68e SHA256: 7568f14f4a9090eb49bdadbd689c722841ec7871aca79ddc3d219bd84007d8c5 Description: Java Native Interface library for CephFS Java bindings Homepage: http://ceph.com/ Description-md5: eeccae7ad4653bc059b325a5ec4ddd58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcephfs-jni-dbg Priority: extra Section: debug Installed-Size: 318 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Depends: libcephfs-jni (= 0.79-0ubuntu1) Filename: pool/main/c/ceph/libcephfs-jni-dbg_0.79-0ubuntu1_amd64.deb Size: 258430 MD5sum: 89deb8b3ec5d4f567ac933fe71e2c5c7 SHA1: a37a2fdaf6bff5dae790920003e570951e05d0b8 SHA256: 4a8a760d6a690ff680afe805488d4b63807a830e012bb46d921f6eb1118a7ba1 Description: Debugging symbols for libcephfs-jni Homepage: http://ceph.com/ Description-md5: b463ee0275120595e8db9a2d2d079cf8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcephfs1 Priority: optional Section: libs Installed-Size: 5815 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Replaces: libceph, libceph1, libcephfs Depends: libboost-system1.54.0, libboost-thread1.54.0, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Conflicts: libceph, libceph1, libcephfs Filename: pool/main/c/ceph/libcephfs1_0.79-0ubuntu1_amd64.deb Size: 1487050 MD5sum: 7b2f92ac11c9ff71be48dc91c0cf3555 SHA1: 2b31e49a88f19f7606aa99e7dc85f7c1d451fd33 SHA256: 4d579a52ecdb0ce68943f9986796029564f2a4ad01e4aa84831b4e597639855e Description: Ceph distributed file system client library Homepage: http://ceph.com/ Description-md5: 02d5e7983127037e5b5e5e07dea2a6e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcephfs1-dbg Priority: extra Section: debug Installed-Size: 23062 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Replaces: libceph1-dbg Depends: libcephfs1 (= 0.79-0ubuntu1) Conflicts: libceph1-dbg Filename: pool/main/c/ceph/libcephfs1-dbg_0.79-0ubuntu1_amd64.deb Size: 23343198 MD5sum: bde5ee617acc112c42eb8d7b62639088 SHA1: 7cc02b4abfd37bc2525125b64c7c54a5309aa7db SHA256: f6afaa63ea7f58590af13d46f62984c9bc01916fc5c7648a06d7017fe4a5c4fb Description: debugging symbols for libcephfs1 Homepage: http://ceph.com/ Description-md5: ef23abe3fb9706def734dae7e4f8e64f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcfg-dev Priority: optional Section: libdevel Installed-Size: 234 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libcfg6 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libcfg-dev_2.3.3-1ubuntu1_amd64.deb Size: 7792 MD5sum: ca883120c1255631a0c0c9cb4c77e8c4 SHA1: edf85466aa03d9989b7dce40d4f2ab51ee08b9ec SHA256: 404d1c1cf208241497484465bb01c3c3d17d93f91cbc899bb2e2a5a770b4dbbb Description: Standards-based cluster framework, Cfg devel files Description-md5: 8368430935fc23defcffcc2f2784d781 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcfg6 Priority: optional Section: libs Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.4), libcorosync-common4 (>= 2.3.3), libqb0 Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libcfg6_2.3.3-1ubuntu1_amd64.deb Size: 7760 MD5sum: b4c7a615d6e9c591ccd3b7ccf4349fee SHA1: 772eccf4104e9867bfd938e65c1372a7bd776c79 SHA256: 1040ed05842b77153c0974732b3bf7276c7b9f3e3301e637826d0d9fd874b80f Description: Standards-based cluster framework, Cfg library Description-md5: d2e0d05de0acab0cdc443672b08301eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcglib-java Priority: optional Section: java Installed-Size: 830 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: cglib Version: 2.2.2+dfsg-5 Replaces: libcglib2.1-java Provides: libcglib2.1-java Depends: libasm3-java Conflicts: libcglib2.1-java Filename: pool/main/c/cglib/libcglib-java_2.2.2+dfsg-5_all.deb Size: 710300 MD5sum: 47001482dab20558c5a1d17b509d0ff9 SHA1: 1599d37358e6c7b6c2f2223a90f97ed3508d202b SHA256: 02080a426aada64e0fac2f9463334d7fa3de61a7a84c598d4fcd0c7d05a42856 Description: code generation library for Java Homepage: http://cglib.sourceforge.net Description-md5: a256be95c96c00f4ed2b5abb30d71453 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcglib-java-doc Priority: optional Section: doc Installed-Size: 2123 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: cglib Version: 2.2.2+dfsg-5 Suggests: libcglib-java Filename: pool/main/c/cglib/libcglib-java-doc_2.2.2+dfsg-5_all.deb Size: 158016 MD5sum: 32b5b21a9a142a40f47e64429822a01c SHA1: 15975b18363141299003a1a3e053a7bcacb6c43e SHA256: 055112af08159851ab0478010bb503bbab9e3e0480f7e39263fa664a6514a3c5 Description: code generation library for Java - documentation Homepage: http://cglib.sourceforge.net Description-md5: 782423f4e2f08258c01d5e58b7ffca69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcgmanager-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Serge Hallyn Architecture: amd64 Source: cgmanager Version: 0.24-0ubuntu5 Depends: libcgmanager0 (= 0.24-0ubuntu5), libdbus-1-dev, libnih-dbus-dev Filename: pool/main/c/cgmanager/libcgmanager-dev_0.24-0ubuntu5_amd64.deb Size: 3866 MD5sum: 4c0c0fa34fe4ba31dfb312a34ec589a0 SHA1: f6d6e37d63ddaabec956b2d9b095aca024308e41 SHA256: fbf3eb3b76f41576e34baa0a59aa0dd7f643c097d138a4c8accf0366e0d78128 Description: Central cgroup manager daemon (dev) Multi-Arch: same Homepage: http://cgmanager.linuxcontainers.org/ Description-md5: 12f79f20c7c5ba65465769cf23c10653 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcgmanager0 Priority: required Section: admin Installed-Size: 140 Maintainer: Serge Hallyn Architecture: amd64 Source: cgmanager Version: 0.24-0ubuntu5 Depends: libc6 (>= 2.2.5), libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) Filename: pool/main/c/cgmanager/libcgmanager0_0.24-0ubuntu5_amd64.deb Size: 27688 MD5sum: 1267e5984512619fac4c1d59180254a5 SHA1: d156c2a07959080838bd24d03d85aed833f94d6e SHA256: 8b2e68bc45643c6ce74b6b27c2760279c5698c65216107ed76292af35b5e0b13 Description: Central cgroup manager daemon (client library) Multi-Arch: same Homepage: http://cgmanager.linuxcontainers.org/ Description-md5: ccb0bd9b73bea53fd951e4e6f59842e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libcgraph6 Priority: optional Section: libs Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: amd64 Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.14), libcdt5 Conflicts: libgraphviz4 Filename: pool/main/g/graphviz/libcgraph6_2.36.0-0ubuntu3_amd64.deb Size: 43926 MD5sum: 9cac6d35beaf25a785f7c3e3ec5d3d7e SHA1: 4e430ab2974f721a07c5761f3e9d86df96b2134e SHA256: 5b69f52a15368dbdf08f7e4dfe36d177919d5038d0fab2733b46bfc10b51cc34 Description: rich set of graph drawing tools - cgraph library Homepage: http://www.graphviz.org/ Description-md5: 3c0eff44ae2d3aa5e19d60a4384485eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-audio Package: libchart-perl Priority: optional Section: perl Installed-Size: 2010 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.4.6-1 Depends: perl, libgd-gd2-perl | libgd-gd2-noxpm-perl Filename: pool/main/libc/libchart-perl/libchart-perl_2.4.6-1_all.deb Size: 922686 MD5sum: 2c1fb56be2142020d9c34da221de0fcc SHA1: 21ef9c7ec68364d9ed41741ebed61625ef101da6 SHA256: f27e552554ca9a255617f425cd004a7f49d41d0e5398c6ca3578772ad9c99af5 Description: Chart library for Perl Homepage: https://metacpan.org/release/Chart/ Description-md5: 51f1d5392546d63db20afa344b08a11c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcheese-dev Priority: optional Section: libdevel Installed-Size: 353 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: cheese Version: 3.10.2-0ubuntu2 Replaces: libcheese-gtk-dev (<< 3.0.1-1) Depends: libcheese7 (= 3.10.2-0ubuntu2), gir1.2-cheese-3.0 (= 3.10.2-0ubuntu2), libglib2.0-dev (>= 2.28.0), libclutter-1.0-dev (>= 1.10.0), libgstreamer1.0-dev (>= 0.11.0), libgstreamer-plugins-base1.0-dev (>= 0.11.0), libclutter-gst-2.0-dev (>= 1.9.0), libgdk-pixbuf2.0-dev Suggests: libcheese-doc Breaks: libcheese-gtk-dev (<< 3.0.1-1) Filename: pool/main/c/cheese/libcheese-dev_3.10.2-0ubuntu2_amd64.deb Size: 17108 MD5sum: 5d2cba3acb325bb8a71b8140db785527 SHA1: 6dd026f73287ab23abe452659d39dbbb1e77973d SHA256: 715682f497d79ae0ffcc1879dceb2298908010b589cebcb10462de011ea92e67 Description: tool to take pictures and videos from your webcam - base dev Homepage: http://projects.gnome.org/cheese/ Description-md5: 97bf1923e096fe62cf8744df6670dd07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcheese-doc Priority: optional Section: doc Installed-Size: 671 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: cheese Version: 3.10.2-0ubuntu2 Replaces: libcheese-gtk-dev (<< 3.6.1-1) Suggests: devhelp Breaks: libcheese-gtk-dev (<< 3.6.1-1) Filename: pool/main/c/cheese/libcheese-doc_3.10.2-0ubuntu2_all.deb Size: 211470 MD5sum: 3dc300bd4f6b3da4ad91c1a2b6eb636f SHA1: 97c85491896cda3fa0bc29fe5a1381e626ebaeac SHA256: a2060dfe950aafd7383ecdad24d34fe0bf40c50c3ad5a9afa22a298bc5939e23 Description: tool to take pictures and videos from your webcam - documentation Homepage: http://projects.gnome.org/cheese/ Description-md5: e7e5a84dea3e28141102c32189f08a96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcheese-gtk-dev Priority: optional Section: libdevel Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: cheese Version: 3.10.2-0ubuntu2 Depends: libcheese-gtk23 (= 3.10.2-0ubuntu2), libcheese-dev (= 3.10.2-0ubuntu2), libglib2.0-dev (>= 2.28.0), libgtk-3-dev (>= 3.4.4), libgstreamer1.0-dev (>= 0.11.0), libgstreamer-plugins-base1.0-dev (>= 0.11.0), libclutter-gtk-1.0-dev (>= 0.91.8), libcanberra-gtk3-dev (>= 0.26) Suggests: libcheese-doc Filename: pool/main/c/cheese/libcheese-gtk-dev_3.10.2-0ubuntu2_amd64.deb Size: 10700 MD5sum: c00d7028c17cf9ff44f4771a867c7c8d SHA1: c5ede5305e523fdee890abae24b0e9bfbce867a4 SHA256: a1f41185587aed39450d6f9d8fc44027e30a8e1b4b7e7872aedeed06edb7cd21 Description: tool to take pictures and videos from your webcam - widgets dev Homepage: http://projects.gnome.org/cheese/ Description-md5: e13b89c841b34de912019e4e459cd320 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcheese-gtk23 Priority: optional Section: libs Installed-Size: 313 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: cheese Version: 3.10.2-0ubuntu2 Depends: libc6 (>= 2.2.5), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcheese7 (>= 3.4.0), libclutter-1.0-0 (>= 1.13.2), libclutter-gtk-1.0-0 (>= 0.91.8), libcogl15 (>= 1.15.8), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.4.4), libx11-6, cheese-common (= 3.10.2-0ubuntu2) Pre-Depends: multiarch-support Filename: pool/main/c/cheese/libcheese-gtk23_3.10.2-0ubuntu2_amd64.deb Size: 24580 MD5sum: 52a27de7d3a09e835c212f9b2f43fe23 SHA1: 02cc9c0e34bb0bccecd8fdd38dc110e31977b16c SHA256: e8d88103cc06c86ddd63fb6b50397d045bc3fe4e65c9d1ee705226acf695231e Description: tool to take pictures and videos from your webcam - widgets Multi-Arch: same Homepage: http://projects.gnome.org/cheese/ Description-md5: 8bb60b9097c6aeb14d65a7555ae93d33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libcheese7 Priority: optional Section: libs Installed-Size: 335 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: cheese Version: 3.10.2-0ubuntu2 Depends: libc6 (>= 2.4), libclutter-gst-2.0-0 (>= 0.10.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgudev-1.0-0 (>= 146), cheese-common (= 3.10.2-0ubuntu2), gstreamer1.0-clutter, gstreamer1.0-plugins-base (>= 0.11.0), gstreamer1.0-plugins-good (>= 0.11.0), gstreamer1.0-x Pre-Depends: multiarch-support Filename: pool/main/c/cheese/libcheese7_3.10.2-0ubuntu2_amd64.deb Size: 81068 MD5sum: 12ac460ea68247e57c4f427f0f6b9a05 SHA1: 9fd35e51be69107c81c35625508ac6a3c83b7687 SHA256: 9b681c8508400b36c15b80f4fa4abad86bc16dc333a0dc072c414d9b5fcc2812 Description: tool to take pictures and videos from your webcam - base library Multi-Arch: same Homepage: http://projects.gnome.org/cheese/ Description-md5: e56ab6b768d752b78de0633ed49e3dc4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libchewing3 Priority: optional Section: libs Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: libchewing Version: 0.3.5-4build1 Provides: libchewing Depends: libchewing3-data (= 0.3.5-4build1), libc6 (>= 2.14) Pre-Depends: multiarch-support Breaks: scim-chewing (<< 0.3.3) Filename: pool/main/libc/libchewing/libchewing3_0.3.5-4build1_amd64.deb Size: 39272 MD5sum: 9d0b1ad8fa3bccbd16132f3498b7df9a SHA1: 1cbf1192871923f02f603b2f71a0e1dc89d9446a SHA256: 334d7ac896872b39595497ebe163b0814251969717c747433b4816c4ee5009d9 Description: intelligent phonetic input method library Multi-Arch: same Homepage: http://chewing.im Description-md5: 183658a3741630fdcf77aacc92f9d147 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libchewing3-data Priority: optional Section: misc Installed-Size: 4868 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: libchewing Version: 0.3.5-4build1 Provides: libchewing-data Breaks: libchewing-data (<= 0.2.7) Filename: pool/main/libc/libchewing/libchewing3-data_0.3.5-4build1_amd64.deb Size: 1358544 MD5sum: a25501013544159a4f9ea3cbcfa57739 SHA1: af6eacf67ebaefe83b6d6add4d37ec3f4d426245 SHA256: 12da84abb1644bc22019c22d4676bded1b8a2308bc5cdf8de7f0616b02b911d8 Description: intelligent phonetic input method library - data files Multi-Arch: same Homepage: http://chewing.im Description-md5: 879154f5e48749b3e8cd4efee026a476 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libchewing3-dbg Priority: extra Section: debug Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: libchewing Version: 0.3.5-4build1 Depends: libchewing3 (= 0.3.5-4build1) Filename: pool/main/libc/libchewing/libchewing3-dbg_0.3.5-4build1_amd64.deb Size: 105784 MD5sum: 23d1035d2d524aac4b7a2337bc41093e SHA1: 8e40e9a60a50226f291daa711ff11df94b790047 SHA256: c4d65b8cdccfd9425d1a2eeb906a8ceba340952dd09065b487a59667f06ec857 Description: intelligent phonetic input method library - debug files Multi-Arch: same Homepage: http://chewing.im Description-md5: 65bec7e4e56d3a1d4ef543b83e9eda4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libchewing3-dev Priority: optional Section: libdevel Installed-Size: 250 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: libchewing Version: 0.3.5-4build1 Depends: libchewing3 (= 0.3.5-4build1) Conflicts: libchewing-dev, libchewing1-dev, libchewing2-dev Filename: pool/main/libc/libchewing/libchewing3-dev_0.3.5-4build1_amd64.deb Size: 53238 MD5sum: 3871d21931c2dc354d775447cbf067db SHA1: 5c46824355e95d1f493093045ff86e01233faf2e SHA256: f4da3e59bfa8c113581e62fd20bbdb4acc55c2a43ea4aed6cc52e7942efeb72d Description: intelligent phonetic input method library (developer version) Homepage: http://chewing.im Description-md5: 8e328c3577cf1adcf013f475c7ccf220 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcholmod2.1.2 Priority: optional Section: libs Installed-Size: 883 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libamd2.3.1, libblas3 | libblas.so.3, libc6 (>= 2.7), libcamd2.3.1, libccolamd2.8.0, libcolamd2.8.0, liblapack3 | liblapack.so.3 Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libcholmod2.1.2_4.2.1-3ubuntu1_amd64.deb Size: 280826 MD5sum: aa057fd86c19b6b5d261ed5e2e74c4db SHA1: 4a4c9f3333467c5b4dc41b850a69f00a7239c56f SHA256: bbb0943c2b541ad7ce23ad38645d53aa2f2a14c6392d9c9b548f23752d8c9f77 Description: sparse Cholesky factorization library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 25fa37b74d5c43d409795092b01492b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libcib3 Priority: optional Section: libs Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcib1, libcib2, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libc6 (>= 2.14), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.12.0), libgnutls26 (>= 2.12.17-0), libpe-rules2 (>= 1.1.10+git20130802), libqb0, libxml2 (>= 2.7.4) Conflicts: libcib1, libcib2, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libcib3_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 40140 MD5sum: 2356c6add104ce573118014db8d4b901 SHA1: f4bdc6399081f853d2271a0be4bcd381a7462f09 SHA256: e0b51b2fc2b00f91d2180c497752b317588634cc9b89618c042ca09942694560 Description: Pacemaker libraries - CIB Homepage: http://clusterlabs.org/ Description-md5: e4c9b943061f8bb08f63f286e0e29ccb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcib3-dev Priority: optional Section: libdevel Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcib1-dev, libcib2-dev, pacemaker-dev (<< 1.1.8+git20121010-1) Depends: libcib3 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libcib1-dev, libcib2-dev, pacemaker-dev (<< 1.1.8+git20121010-1) Filename: pool/main/p/pacemaker/libcib3-dev_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 47196 MD5sum: 61bd9c1eecfad1df93add15d14933dcd SHA1: 90434fe9328f7a38fc7037f1675642c8a1482ee4 SHA256: 3d0c5558b8662994c6e828f0a2f4b0f4a90d09f43f93e88840c7604bbdb3d7c8 Description: Development file for pacemaker's cib library Homepage: http://clusterlabs.org/ Description-md5: fce0c8bd401410afbf71087b9faf9799 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libck-connector-dev Priority: optional Section: libdevel Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: consolekit Version: 0.4.5-3.1ubuntu2 Depends: libck-connector0 (= 0.4.5-3.1ubuntu2), libdbus-1-dev Filename: pool/main/c/consolekit/libck-connector-dev_0.4.5-3.1ubuntu2_amd64.deb Size: 19444 MD5sum: c233225dbf2504c286b841542f12826d SHA1: 17ceb6d29d0084b73c2a0479cf503e4666dabd86 SHA256: 3e81b1a28190149db2fff0fe181501acf2d569718dfaff0d3298a4d908b2783f Description: ConsoleKit development files Homepage: http://www.freedesktop.org/wiki/Software/ConsoleKit Description-md5: 2269a65061f7abfeace2eec5a9d881f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libck-connector0 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: consolekit Version: 0.4.5-3.1ubuntu2 Depends: libc6 (>= 2.3.4), libdbus-1-3 (>= 1.0.2) Pre-Depends: multiarch-support Filename: pool/main/c/consolekit/libck-connector0_0.4.5-3.1ubuntu2_amd64.deb Size: 10530 MD5sum: 9c2ed608b0f03ae21fe082093bce9a8a SHA1: ca51c41c4f7035324a58018c6612ca272d687ca4 SHA256: 77475621670d256826fccaf2a4db86564e5ee5fafc43bd8bf6815079ffcdcc83 Description: ConsoleKit libraries Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/ConsoleKit Description-md5: 9d47a31a9e2b24daac8abcb9b63d7396 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-video, ubuntustudio-graphics Package: libclamav-dev Priority: optional Section: libdevel Installed-Size: 310 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: amd64 Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Depends: libclamav6 (= 0.98.1+dfsg-4ubuntu1), libssl-dev, libidn11-dev, libc6-dev | libc-dev, zlib1g-dev, libbz2-dev, libtommath-dev Filename: pool/main/c/clamav/libclamav-dev_0.98.1+dfsg-4ubuntu1_amd64.deb Size: 13716 MD5sum: 48404ff69aaf079d81874cca761601e8 SHA1: 77ac9c9145c23ec239132ce1d2d9b79baf41312b SHA256: 03c11ec105cfde9e0a12c7ec98df93866244ef4a973627eda40d35845e53af91 Description: anti-virus utility for Unix - development files Homepage: http://www.clamav.net/ Description-md5: f9403f3147d4d160269156db01264656 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclamav6 Priority: optional Section: libs Installed-Size: 10843 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: amd64 Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Depends: libbz2-1.0, libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libltdl7 (>= 2.4.2), libstdc++6 (>= 4.2.1), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Suggests: libclamunrar6 Filename: pool/main/c/clamav/libclamav6_0.98.1+dfsg-4ubuntu1_amd64.deb Size: 3181346 MD5sum: 98f0911416fb646912a942286bfcd849 SHA1: 1b3dcef9b8bdc07fc1e35d70b8abde19850b56de SHA256: 9dba9fdf9f1b03204f883f57570962ba3b375cf84b746fc8b54c4da4bc4aede6 Description: anti-virus utility for Unix - library Homepage: http://www.clamav.net/ Description-md5: 8eec48379ead2492f2f06feeb97a6a2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libclass-accessor-perl Priority: optional Section: perl Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.34-1 Depends: perl, libsub-name-perl Filename: pool/main/libc/libclass-accessor-perl/libclass-accessor-perl_0.34-1_all.deb Size: 26038 MD5sum: b8dc3f1734b92b8ccd6e9ba464ca42c0 SHA1: 566e5fa15fbedfc182f8c876691eee870df96bd6 SHA256: 4afa5673b05a2527754bb9b0ca546b7dc7846d2ba37d58153e39f6a0a7722a75 Description: Perl module that automatically generates accessors Homepage: http://search.cpan.org/dist/Class-Accessor/ Description-md5: 478fde937a7300dacb3834b3ffdba459 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libclass-c3-perl Priority: optional Section: perl Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.25-1 Depends: perl, libalgorithm-c3-perl Recommends: libclass-c3-xs-perl Filename: pool/main/libc/libclass-c3-perl/libclass-c3-perl_0.25-1_all.deb Size: 21510 MD5sum: 1efad6aa39c730ce1e2e114f4030f583 SHA1: 308d8dd0c1f56b74c640475b51d71ba4fc979c1f SHA256: e7de878bcc20ba0a70fab188886eff8bac6d32e4b1b077383a75c6bdfcb0e1e5 Description: pragma for using the C3 method resolution order Homepage: https://metacpan.org/release/Class-C3/ Description-md5: 3f1d1676f63dab7129fb8ece8f37bbb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclass-c3-xs-perl Priority: optional Section: perl Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.13-1build4 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libc/libclass-c3-xs-perl/libclass-c3-xs-perl_0.13-1build4_amd64.deb Size: 15138 MD5sum: 5c2a065d59a108fc3c30b6b111d72cf4 SHA1: 32b873eee0a94284ff88c098d1ef1503f5ae9213 SHA256: 0aea74f0d0783fb7fcf2367ed965b05bc73f7721bd7d73f7de4df3c84b65f88f Description: Perl module to accelerate Class::C3 Enhances: libclass-c3-perl (>= 0.16) Homepage: http://search.cpan.org/dist/Class-C3-XS/ Description-md5: a3ab4e438147fb81f1438e0b60c3904d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclass-data-inheritable-perl Priority: optional Section: perl Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.08-2 Depends: perl Filename: pool/main/libc/libclass-data-inheritable-perl/libclass-data-inheritable-perl_0.08-2_all.deb Size: 8774 MD5sum: 9039e8e68cb0dd670c7ee0975ce25774 SHA1: 2b9e2fc96580f4b040a38bcd5a741aa15c8c664d SHA256: 2d69dc9307d522f2dc5ba2972ad80947388ea5cf33622e9ccbe467b64556d1d5 Description: Perl module to create accessors to class data Homepage: https://metacpan.org/release/Class-Data-Inheritable/ Description-md5: 82bba9e65b0ab1d72fbef1e5e404c956 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclass-factory-util-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.7-2 Depends: perl (>= 5.6.0-16) Filename: pool/main/libc/libclass-factory-util-perl/libclass-factory-util-perl_1.7-2_all.deb Size: 7226 MD5sum: 7dc3b7ec8496ad0fb91699f47adc022f SHA1: 40f3f620d9b1367e5f84a6ec63bbfba246a1e4f0 SHA256: 713c6fb6bcaef7ef414550cb0568a30e2b652e35787df88be1e3b0a7cec35f50 Description: Utility method for factory classes Homepage: http://search.cpan.org/dist/Class-Factory-Util/ Description-md5: 34967d7a91719552ddacafe66eca6dc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libclass-inspector-perl Priority: optional Section: perl Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.28-1 Depends: perl Filename: pool/main/libc/libclass-inspector-perl/libclass-inspector-perl_1.28-1_all.deb Size: 18668 MD5sum: 9bd3a7cf779cfcf1b6cada5c754ab417 SHA1: efe6574d75d7787bbc6c1653a156731e162afb15 SHA256: ab710909e8bec268df436ef44d4854f3a89df1fb3983fbf122eadb902d44b845 Description: Perl module that provides information about classes Homepage: https://metacpan.org/release/Class-Inspector/ Description-md5: d5eb5ee11b9996f68f80dc05e4bedce4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libclass-load-perl Priority: optional Section: perl Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.20-1 Depends: perl, libdata-optlist-perl, libmodule-implementation-perl, libmodule-runtime-perl (>= 0.012), libpackage-stash-perl (>= 0.14), libtry-tiny-perl Filename: pool/main/libc/libclass-load-perl/libclass-load-perl_0.20-1_all.deb Size: 11582 MD5sum: 51c3b04e78103e53938f188521866449 SHA1: 535042d8915dd6df7de54f207a1ae55df876a9df SHA256: 7c5410ed54ce18d16ef858d889d0ccef9f054dab1b3f1797bf6e5eee669e359a Description: module for loading modules by name Homepage: http://search.cpan.org/dist/Class-Load/ Description-md5: b63795dd8b16286a9628af577cf946a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libclass-load-xs-perl Priority: optional Section: perl Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.06-1build1 Depends: libc6 (>= 2.2.5), perl (>= 5.18.1-4), perlapi-5.18.1, libclass-load-perl (>= 0.20) Filename: pool/main/libc/libclass-load-xs-perl/libclass-load-xs-perl_0.06-1build1_amd64.deb Size: 13870 MD5sum: 5f8864fb1b928481fa2e86bf6101ea14 SHA1: 6b9fb5028a1425bd39818d517adecd3ac22ec133 SHA256: dd292e689e42b21496f7df038133082e8157e5fc1435b722b3915b9b5f05f958 Description: XS implementation of parts of Class::Load Homepage: http://search.cpan.org/dist/Class-Load-XS/ Description-md5: e162500685b8f5f11cd4963332723776 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclass-method-modifiers-perl Priority: optional Section: perl Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.09-1 Depends: perl Filename: pool/main/libc/libclass-method-modifiers-perl/libclass-method-modifiers-perl_2.09-1_all.deb Size: 15208 MD5sum: dafaa7bd5bbb1cd5fd255d74c7e6f331 SHA1: cf4481cbdd1c39b327d47f84b5e4401cf1b2034b SHA256: 0c1f6cd4774a3ae6c60f0d7d0c32df27e551e54a623b76ef3148d6342129d240 Description: Perl module providing method modifiers Homepage: https://metacpan.org/release/Class-Method-Modifiers/ Description-md5: f1e6913eb390add5f060deebe6e85707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclass-singleton-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.4-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/libc/libclass-singleton-perl/libclass-singleton-perl_1.4-1_all.deb Size: 13616 MD5sum: bb7b4bd19f537ea7c163b34fa81fa5f7 SHA1: 0657d29e595bcf2b9919e4d6a973362d6cb4dbc4 SHA256: b3e0313d4aa12cf25979e16e66799d663b24cd6101a9106767330bd7271c85d9 Description: implementation of a "Singleton" class Homepage: http://search.cpan.org/dist/Class-Singleton/ Description-md5: a3bcd5a81069e913babf02f25eaf47f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libclass-tiny-perl Priority: optional Section: perl Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.012-1 Depends: perl, perl (>= 5.14.0) | libdevel-globaldestruction-perl Filename: pool/main/libc/libclass-tiny-perl/libclass-tiny-perl_0.012-1_all.deb Size: 14854 MD5sum: d0c02ecd07cd14ae94aa833799fb4fda SHA1: 4467f6711051d4c2b47f9e102924435a60e69a2e SHA256: 9a8d957cb168e07ec7f29bfd080d8323784bb6f59eea95c9a3f3dc2209454929 Description: minimalist class construction module for Perl Homepage: https://metacpan.org/release/Class-Tiny Description-md5: af73ea7f0ad0fbd0adf688f2cab87c59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclick-0.4-0 Priority: optional Section: libs Installed-Size: 202 Maintainer: Colin Watson Architecture: amd64 Source: click Version: 0.4.21.1 Depends: libc6 (>= 2.3), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.34), libjson-glib-1.0-0 (>= 0.12.0) Pre-Depends: multiarch-support Filename: pool/main/c/click/libclick-0.4-0_0.4.21.1_amd64.deb Size: 52070 MD5sum: a1d25b41c999154b6d8350c058cc6f5d SHA1: 183cc5afc2c3435d6c168145763506c2c2b6b4a6 SHA256: 8bee08306847c95686a5f538e9093ab79b5df8b955590084562773dbe81c97cc Description: run-time Click package management library Multi-Arch: same Description-md5: 00fddc5709ae09f963921e7a94d1e017 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclick-0.4-dev Priority: optional Section: libdevel Installed-Size: 121 Maintainer: Colin Watson Architecture: amd64 Source: click Version: 0.4.21.1 Depends: libclick-0.4-0 (= 0.4.21.1), libglib2.0-dev, libjson-glib-dev Filename: pool/main/c/click/libclick-0.4-dev_0.4.21.1_amd64.deb Size: 8416 MD5sum: f07e074963b05b4c1ab9d5edc5efa237 SHA1: ba9f0672f6e6ff1ecae5bc1b6762384ba29a76d1 SHA256: 7efb1e0531133e034aeaf6273f2a380b07c87794ed6f47859eed82b4528c60d4 Description: development files for Click package management library Multi-Arch: same Description-md5: e6db64e1a45e66e69c5e7a6e77046966 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclone-perl Priority: optional Section: perl Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.36-1 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libc/libclone-perl/libclone-perl_0.36-1_amd64.deb Size: 10958 MD5sum: 7df88a373254e70dc5d0d0c4d5d705e5 SHA1: 1f2099873ba93c1a5bbbfbdbb1d9b2f00a7a9a69 SHA256: bf8f5e189159cf2221ada75335b96780be372cd442b2fbdf67d2e2fc73bde74e Description: module for recursively copying Perl datatypes Homepage: https://metacpan.org/release/Clone/ Description-md5: f0346601158f65d4b4cbf16b7ddeb57a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcloog-isl-dev Priority: optional Section: libdevel Installed-Size: 377 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: cloog Version: 0.18.2-1 Depends: libisl-dev (>= 0.11), libgmp-dev, libcloog-isl4 (= 0.18.2-1), dpkg (>= 1.15.4) | install-info Conflicts: libcloog-ppl-dev Filename: pool/main/c/cloog/libcloog-isl-dev_0.18.2-1_amd64.deb Size: 67588 MD5sum: 5d192154558e7488b790a1559ac6ce0a SHA1: ab29290b9279ffd0eabe34b9a7689fc5a3defd8e SHA256: 2a291cd9de63a5520da767ceaedbabad10ad88ae2ebc1abb2bfe1521f3ea5883 Description: Chunky Loop Generator (development files) Multi-Arch: same Homepage: http://www.CLooG.org Description-md5: 8004e8b80eb2afe6beff143361c74aee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcloog-isl4 Priority: optional Section: libs Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: cloog Version: 0.18.2-1 Depends: libc6 (>= 2.14), libgmp10, libisl10 (>= 0.11) Pre-Depends: multiarch-support Filename: pool/main/c/cloog/libcloog-isl4_0.18.2-1_amd64.deb Size: 57502 MD5sum: da71de63b0e24eb02afb817c0b285d6a SHA1: 72c88ce812ffe6e55110fa9b5b209c4b7d1a08d8 SHA256: c42936ac171d9cf5b99e5380688ee71cb153f223539310a451117d747dc794b9 Description: Chunky Loop Generator (runtime library) Multi-Arch: same Homepage: http://www.CLooG.org Description-md5: 4a5659656cc332664fb33eb2309007bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcloog-ppl-dev Priority: optional Section: libdevel Installed-Size: 372 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: cloog-ppl Version: 0.16.1-5 Depends: libppl-dev (>= 1:1.1), libgmp-dev, libcloog-ppl1 (= 0.16.1-5), dpkg (>= 1.15.4) | install-info Filename: pool/main/c/cloog-ppl/libcloog-ppl-dev_0.16.1-5_amd64.deb Size: 66658 MD5sum: 62b072e75e829e0ccc48a25f9a6cf17b SHA1: 65280c4b70f952e3eeae949d85eb20ee37314ab8 SHA256: 2dfe8bc496e6b479410962110987fbba97df31efdda61367c4aa04bed1704212 Description: Chunky Loop Generator (development files) Multi-Arch: same Homepage: http://www.CLooG.org Description-md5: 55293a867d8486dd49aca1b5471c4f43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcloog-ppl1 Priority: optional Section: libs Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: cloog-ppl Version: 0.16.1-5 Depends: libc6 (>= 2.7), libgmp10, libppl-c4 Pre-Depends: multiarch-support Filename: pool/main/c/cloog-ppl/libcloog-ppl1_0.16.1-5_amd64.deb Size: 55246 MD5sum: fcc6abd5dbea24f574953e85087a9131 SHA1: b9cffdd41dc3c399ced592b4eaf83ff21df40bc3 SHA256: d681692f95ef19e328db5eb7e18895888e965e643ee29fbc62c03ae1f5dea87f Description: Chunky Loop Generator (runtime library) Multi-Arch: same Homepage: http://www.CLooG.org Description-md5: 4a5659656cc332664fb33eb2309007bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclucene-contribs1 Priority: optional Section: libs Installed-Size: 438 Maintainer: Ubuntu Developers Original-Maintainer: Fathi Boudra Architecture: amd64 Source: clucene-core Version: 2.3.3.4-4build1 Depends: libc6 (>= 2.4), libclucene-core1 (>= 2.3.3.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/c/clucene-core/libclucene-contribs1_2.3.3.4-4build1_amd64.deb Size: 110676 MD5sum: e6235da0a03a398b7b0d4eb6c528ad1c SHA1: b2deaada3a096d78d2d884fe724c81879eec1ec9 SHA256: 1b703c1df79113226fa84c24f3866ee61aaec3aef15d5ff732808e3e99a3d86f Description: language specific text analyzers (runtime) Multi-Arch: same Homepage: http://clucene.sourceforge.net Description-md5: b8f105fe2b28a7ca61f9fa1429c94c84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libclucene-core1 Priority: optional Section: libs Installed-Size: 1746 Maintainer: Ubuntu Developers Original-Maintainer: Fathi Boudra Architecture: amd64 Source: clucene-core Version: 2.3.3.4-4build1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/c/clucene-core/libclucene-core1_2.3.3.4-4build1_amd64.deb Size: 583726 MD5sum: 9fa917363975af87e798970f37128169 SHA1: f37616bdf49a36a543eee0189ee25827b1e709a9 SHA256: e1281347b1de54f6a302e9e0a1f1b663973291ab0b0b628af19e4026ad727a34 Description: core library for full-featured text search engine (runtime) Multi-Arch: same Homepage: http://clucene.sourceforge.net Description-md5: 444089d45d353e1cb29acf147817805d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libclucene-dev Priority: optional Section: libdevel Installed-Size: 752 Maintainer: Ubuntu Developers Original-Maintainer: Fathi Boudra Architecture: amd64 Source: clucene-core Version: 2.3.3.4-4build1 Depends: libc6-dev, libclucene-contribs1 (= 2.3.3.4-4build1), libclucene-core1 (= 2.3.3.4-4build1) Filename: pool/main/c/clucene-core/libclucene-dev_2.3.3.4-4build1_amd64.deb Size: 157666 MD5sum: d5a93f6acbe911d0589e2203c23169a9 SHA1: b9e6952422f7a70b0c90aa71f9661ef4030245bc SHA256: f0161fc320fdd80b61d0328af74048880b7c23a2cddf135d46d0dd87cd0c8553 Description: library for full-featured text search engine (development) Homepage: http://clucene.sourceforge.net Description-md5: 575ed8411b755e9b5a7c9ce4030c35c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcluster-glue-dev Priority: optional Section: libdevel Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: all Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Depends: liblrm2-dev (>= 1.0.11+hg2754-1.1build1), libpils2-dev (>= 1.0.11+hg2754-1.1build1), libplumb2-dev (>= 1.0.11+hg2754-1.1build1), libplumbgpl2-dev (>= 1.0.11+hg2754-1.1build1), libstonith1-dev (>= 1.0.11+hg2754-1.1build1) Filename: pool/main/c/cluster-glue/libcluster-glue-dev_1.0.11+hg2754-1.1build1_all.deb Size: 3396 MD5sum: ee87bd15d6c07e553279e818f03f958e SHA1: a859a15a1d674aa6fa05d5b408874e8a3e83749b SHA256: bb8a2504b5a034333ef2d57adbb3af51747c9037465e12be5dc60ca5f8f7b1f7 Description: Reusable cluster components for Linux HA (transitional package) Homepage: http://hg.linux-ha.org/glue/ Description-md5: 8b468cb71213a5cd9941d4fff87973b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-1.0-0 Priority: optional Section: libs Installed-Size: 1513 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Depends: libatk1.0-0 (>= 2.5.3), libc6 (>= 2.14), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10), libcogl-pango15 (>= 1.15.8), libcogl15 (>= 1.15.8), libfontconfig1 (>= 2.9.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.18), libjson-glib-1.0-0 (>= 0.12.0), libpango-1.0-0 (>= 1.30), libpangocairo-1.0-0 (>= 1.30), libpangoft2-1.0-0 (>= 1.30), libx11-6 (>= 2:1.2.99.901), libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxi6 (>= 2:1.2.99.4) Pre-Depends: multiarch-support Recommends: libclutter-1.0-common Breaks: libcogl11, libcogl12, libcogl9 Filename: pool/main/c/clutter-1.0/libclutter-1.0-0_1.16.4-0ubuntu2_amd64.deb Size: 488084 MD5sum: 43b46c0df336e1b2d71b3f45cbc7f152 SHA1: 428b3a9361d93f9a778c4d8250f1e1c82bd4a7eb SHA256: c88b03ac1f60f18aae6632952bceb7b5f3a418d14dc6b2a96a9dfb4efa896e32 Description: Open GL based interactive canvas library Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: a61582dd624c05cff2d537148daf6e7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libclutter-1.0-common Priority: optional Section: libs Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Filename: pool/main/c/clutter-1.0/libclutter-1.0-common_1.16.4-0ubuntu2_all.deb Size: 81642 MD5sum: 56efc1ee316ac50e444011d283bfa641 SHA1: 2b622477757d74f4d37a609887caf3529701d354 SHA256: 234240f8f5eb8dcc9c8958db72ba0da2f8b4fdf58bda66f11a70ba2389e94176 Description: Open GL based interactive canvas library (common files) Multi-Arch: foreign Homepage: http://www.clutter-project.org/ Description-md5: 38161479c76808c77cc7cac8fb452207 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libclutter-1.0-dbg Priority: extra Section: debug Installed-Size: 5122 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Depends: libclutter-1.0-0 (= 1.16.4-0ubuntu2) Filename: pool/main/c/clutter-1.0/libclutter-1.0-dbg_1.16.4-0ubuntu2_amd64.deb Size: 1151820 MD5sum: f23ceb67b8982a3dfcb7bdc798eb71e8 SHA1: 443a9397d19839473c7e9fcb858f1159fd833efd SHA256: 8785463bf7df3e8ef23421626bbd49bbcdd6096a0a8954cc48cafe531f392f87 Description: Open GL based interactive canvas library (debug files) Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: fd1375dceedf124a35a174c0c643601c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-1.0-dev Priority: optional Section: libdevel Installed-Size: 4124 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Depends: libclutter-1.0-0 (= 1.16.4-0ubuntu2), gir1.2-clutter-1.0 (= 1.16.4-0ubuntu2), libgdk-pixbuf2.0-dev, libcairo2-dev (>= 1.10), libatk1.0-dev (>= 2.5.3), libpango1.0-dev (>= 1.30), libcogl-dev (>= 1.14.0), libcogl-pango-dev (>= 1.14.0), libgl1-mesa-dev (>= 7.1~rc3-1~), libgtk-3-dev, libdrm-dev, libx11-dev, libxext-dev, libxfixes-dev, libxdamage-dev, libxcomposite-dev, libxi-dev, libjson-glib-dev (>= 0.12) Recommends: pkg-config Suggests: libclutter-1.0-doc Filename: pool/main/c/clutter-1.0/libclutter-1.0-dev_1.16.4-0ubuntu2_amd64.deb Size: 298260 MD5sum: 810a5e2e57c74b4d5c639649e8742a99 SHA1: f1d67ee75aed277b7c1213097ff49540434db52e SHA256: e1b6502e8fb9478121ec0991b8b57d4a0bf8704d4b237624121e2cac75a3f052 Description: Open GL based interactive canvas library (development files) Homepage: http://www.clutter-project.org/ Description-md5: d2f107ca493c4c999db05729a9a06672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-1.0-doc Priority: optional Section: doc Installed-Size: 10715 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Replaces: libclutter-0.1-doc Suggests: devhelp Conflicts: libclutter-0.1-doc, libclutter-doc Filename: pool/main/c/clutter-1.0/libclutter-1.0-doc_1.16.4-0ubuntu2_all.deb Size: 2571212 MD5sum: d9377a5c890a8dea362152e8c0e81b09 SHA1: 3ede261c272f48ab4ae851c6d18c5a721457d12d SHA256: 7136f680cc684564151091510d413a5a6b01752de8fbf4684969f0c2da1e34e3 Description: Open GL based interactive canvas library (documentation) Homepage: http://www.clutter-project.org/ Description-md5: 02635797d227670df03bfcc254b316dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gst-2.0-0 Priority: optional Section: libs Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-gst-2.0 Version: 2.0.8-1build1 Depends: libc6 (>= 2.14), libclutter-1.0-0 (>= 1.13.0), libcogl15 (>= 1.15.8), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libx11-6 Pre-Depends: multiarch-support Filename: pool/main/c/clutter-gst-2.0/libclutter-gst-2.0-0_2.0.8-1build1_amd64.deb Size: 33482 MD5sum: 1f125912e3df4dac73122de24c8a4945 SHA1: 0c8c10e3ff5f9d462925fec3ebb41d7c69503d10 SHA256: b6cb65afa5a536d939608946a458cc2809b659e718905dee3c4b94dae4bb68f5 Description: Open GL based interactive canvas library GStreamer elements Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: 68c63db77bdc02fd5cd00999c8634190 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libclutter-gst-2.0-dbg Priority: extra Section: debug Installed-Size: 438 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-gst-2.0 Version: 2.0.8-1build1 Depends: libclutter-gst-2.0-0 (= 2.0.8-1build1) Filename: pool/main/c/clutter-gst-2.0/libclutter-gst-2.0-dbg_2.0.8-1build1_amd64.deb Size: 98112 MD5sum: 899472304f30feb36e6db3cdc6cc40e1 SHA1: 42f91f44e9b5a77cd7b93bc608513743849e38ef SHA256: c1a41e2bb2f07bfc0cdf440a40f1069d87845bb48a2e5bb4081f820e3ec2c736 Description: Open GL based interactive canvas library GStreamer elements (debug files) Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: 9c77fb97df7a7751964a4f9c65704b23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gst-2.0-dev Priority: optional Section: libdevel Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-gst-2.0 Version: 2.0.8-1build1 Depends: libclutter-gst-2.0-0 (= 2.0.8-1build1), gir1.2-clutter-gst-2.0 (= 2.0.8-1build1), gstreamer1.0-clutter (= 2.0.8-1build1), pkg-config, libclutter-1.0-dev (>= 1.6.10-3), libgstreamer1.0-dev (>= 1.0.0), libgstreamer-plugins-base1.0-dev (>= 1.0.0) Suggests: libclutter-gst-2.0-doc Filename: pool/main/c/clutter-gst-2.0/libclutter-gst-2.0-dev_2.0.8-1build1_amd64.deb Size: 59984 MD5sum: 584d7f5dba2aac0b2529ea1f72046a39 SHA1: 5721fbfe5003d02c3d240583eba161f6fa1841c0 SHA256: 91f97e5fc61dc76a9b2cff800737e128f336b1e9320d24e6991ca32406bca222 Description: Open GL based interactive canvas library GStreamer elements (development files) Homepage: http://www.clutter-project.org/ Description-md5: 226f3bbc8ad7bee2e20aa688dabd66d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gst-2.0-doc Priority: optional Section: doc Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: clutter-gst-2.0 Version: 2.0.8-1build1 Suggests: devhelp Conflicts: libclutter-gst-doc Filename: pool/main/c/clutter-gst-2.0/libclutter-gst-2.0-doc_2.0.8-1build1_all.deb Size: 23782 MD5sum: 2a83fd322282354d557dbc2e46cf5af0 SHA1: 711b38d3f2c16bd66ced79ebebf852ba3824ccb9 SHA256: 69487195fd7be434bb8facc6c7e39a9cd2247056f4f8b61328da0aa824f2ed62 Description: Open GL based interactive canvas library GStreamer elements (documentation) Homepage: http://www.clutter-project.org/ Description-md5: 30572bfe8177705fb4404f6968d24263 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gtk-1.0-0 Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-gtk Version: 1.4.4-3ubuntu2 Depends: libc6 (>= 2.2.5), libcairo2 (>= 1.2.4), libclutter-1.0-0 (>= 1.13.10), libcogl15 (>= 1.15.8), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.6.0) Pre-Depends: multiarch-support Filename: pool/main/c/clutter-gtk/libclutter-gtk-1.0-0_1.4.4-3ubuntu2_amd64.deb Size: 22086 MD5sum: 130a245c60d2faf46eefb554ecb9a0c4 SHA1: 83a14d2ca31a80df6fb8f9db71a0b38ee785097f SHA256: 3b1e878abe0ebed0aca7bf67bf56c27a94dfb80ea31a97f236a1d239007c6035 Description: Open GL based interactive canvas library GTK+ widget Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: b45ee0f005530aab6651f7cd9600f11a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libclutter-gtk-1.0-dbg Priority: extra Section: debug Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-gtk Version: 1.4.4-3ubuntu2 Depends: libclutter-gtk-1.0-0 (= 1.4.4-3ubuntu2) Filename: pool/main/c/clutter-gtk/libclutter-gtk-1.0-dbg_1.4.4-3ubuntu2_amd64.deb Size: 57904 MD5sum: e563048952bd1170dca59988751323e2 SHA1: d6b695d42dd6cefd5b8454db890de4c5a2138683 SHA256: 38ba04004946ff6b82811d1aa8113cde6a0164ad21028e650297aafa389380d8 Description: Open GL based interactive canvas library GTK+ widget (debug files) Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: af32fd57db2598d70bdf9ec1db8d3e73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gtk-1.0-dev Priority: optional Section: libdevel Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: clutter-gtk Version: 1.4.4-3ubuntu2 Depends: libclutter-gtk-1.0-0 (= 1.4.4-3ubuntu2), gir1.2-gtkclutter-1.0 (= 1.4.4-3ubuntu2), pkg-config, libgtk-3-dev (>= 3.6.0), libclutter-1.0-dev (>= 1.13.10) Suggests: libclutter-gtk-1.0-doc Filename: pool/main/c/clutter-gtk/libclutter-gtk-1.0-dev_1.4.4-3ubuntu2_amd64.deb Size: 22878 MD5sum: fcd226023f800617074f427b1d93fe03 SHA1: b134c6e41b87fe7928270bb22281cb8a758a0c62 SHA256: 59e6761b6ca13367a57801f54363921fbd4462bac16839f3108d0bdebc493809 Description: Open GL based interactive canvas library GTK+ widget (development files) Homepage: http://www.clutter-project.org/ Description-md5: e9e6bec0e5d64d1155b64afd7e289839 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gtk-1.0-doc Priority: optional Section: doc Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: clutter-gtk Version: 1.4.4-3ubuntu2 Replaces: libclutter-gtk-0.10-doc, libclutter-gtk-doc Recommends: libclutter-1.0-doc Suggests: devhelp Conflicts: libclutter-gtk-0.10-doc, libclutter-gtk-doc Filename: pool/main/c/clutter-gtk/libclutter-gtk-1.0-doc_1.4.4-3ubuntu2_all.deb Size: 22228 MD5sum: c208947fdd6c202dd3d3424a04a9c826 SHA1: 66353b2ac14591c9e85d21d552b757b5c9099710 SHA256: 1010e3ffb8ab86589168e426df04e0cff1eeb936e05fa6a8ff9e240c2e60acfb Description: Open GL based interactive canvas library GTK+ widget (documentation) Homepage: http://www.clutter-project.org/ Description-md5: 30dead2af292731b7e504c7925a6b467 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcmap-dev Priority: optional Section: libdevel Installed-Size: 375 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libcmap4 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libcmap-dev_2.3.3-1ubuntu1_amd64.deb Size: 48634 MD5sum: 8f301134186828911cc2085daf65e332 SHA1: 8122b51c69e8df88c400212b7c881ad50056f83f SHA256: e714b3ed41ef961212065107a526b101a4e1e48b6c8ab60c5c4bee514c3a8435 Description: Standards-based cluster framework, Cmap devel files Description-md5: 6adabd0c7b46a5a4a23096bfd28a34a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcmap4 Priority: optional Section: libs Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.14), libcorosync-common4 (>= 2.3.3), libqb0 Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libcmap4_2.3.3-1ubuntu1_amd64.deb Size: 9664 MD5sum: ff81ec5bf567665c61ec63ce5f7cfc77 SHA1: f7b36bec6658f972508217c4628f9ac2055078f3 SHA256: ca33a4380c1177b5881c5b36b4a370260908060a04e51e8f0c880b961b33dac5 Description: Standards-based cluster framework, Cmap library Description-md5: f1c1a1df18465bf3a5d1bd58b0c1c807 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcmis-0.4-4 Priority: optional Section: libs Installed-Size: 1478 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libcmis Version: 0.4.1-3ubuntu4 Depends: libboost-date-time1.54.0, libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.2), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libxml2 (>= 2.7.4) Filename: pool/main/libc/libcmis/libcmis-0.4-4_0.4.1-3ubuntu4_amd64.deb Size: 361154 MD5sum: fa52dff16ae0244a1e25c460c5d8fb12 SHA1: b335caa1d9a90676b4d852cdf141c5df8f1236d7 SHA256: 5b9af773d4feaccedcc46937683ff60dc56f0e2eb0047706a8e6449d6775ed98 Description: CMIS protocol client library Homepage: http://libcmis.sourceforge.net/ Description-md5: 11699a5b32c25fb91e259053a84ad624 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libcmis-dev Priority: optional Section: libdevel Installed-Size: 4582 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libcmis Version: 0.4.1-3ubuntu4 Depends: libcmis-0.4-4 (= 0.4.1-3ubuntu4), libcurl4-gnutls-dev, libxml2-dev Filename: pool/main/libc/libcmis/libcmis-dev_0.4.1-3ubuntu4_amd64.deb Size: 482946 MD5sum: dbdeb7e49087e13ae6d7b0b1bd6997d8 SHA1: fec58eb5c530ddd7be73a7341cdfd8b41bdae68c SHA256: 35a659fed539ad6250ecd39384493057dfe0331d616d16df8459e7c4e4ba9d5f Description: CMIS protocol client library -- development Homepage: http://libcmis.sourceforge.net/ Description-md5: 72ec2e8e22c9018b8744a8af90e49968 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-common Priority: optional Section: libs Installed-Size: 248 Maintainer: Rico Tzschichholz Architecture: all Source: cogl Version: 1.16.2-1 Filename: pool/main/c/cogl/libcogl-common_1.16.2-1_all.deb Size: 194324 MD5sum: a915ed2b8b0c1c49486e872b2f83ef47 SHA1: d9e3285e38dcc3f9de1e54960539d5ac48c9884d SHA256: 5ca53746a70dcffe4f1e64bcc703e8e0fbb92b1aec966e84b78b3f459193732c Description: Object oriented GL/GLES Abstraction/Utility Layer (common files) Multi-Arch: foreign Description-md5: d546b96c6a3a291dcdcc684916b2a0c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcogl-dev Priority: optional Section: libdevel Installed-Size: 1394 Maintainer: Rico Tzschichholz Architecture: amd64 Source: cogl Version: 1.16.2-1 Depends: libcogl15 (= 1.16.2-1), gir1.2-cogl-1.0 (= 1.16.2-1), libgl1-mesa-dev (>= 7.1~rc3-1~), libgles2-mesa-dev (>= 7.1~rc3-1~) | libgles2-dev, libglib2.0-dev (>= 2.28.0), libdrm-dev, libwayland-dev, libgbm-dev, libgdk-pixbuf2.0-dev (>= 2.0), libx11-dev, libxcomposite-dev, libxext-dev, libxfixes-dev, libxdamage-dev Recommends: pkg-config Suggests: libcogl-doc Filename: pool/main/c/cogl/libcogl-dev_1.16.2-1_amd64.deb Size: 154138 MD5sum: 2e319ac16176ff76801292f60bd6cbd4 SHA1: 0465d0dacf95d4179fd07899167b30be3cd5beb6 SHA256: 0fee9da8757b140b658d090475c1f4c01a00b77331b253215961e43830c3114a Description: Object oriented GL/GLES Abstraction/Utility Layer (development files) Description-md5: be3115f4a0115636a1065d55d8a70f4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-doc Priority: optional Section: doc Installed-Size: 3715 Maintainer: Rico Tzschichholz Architecture: all Source: cogl Version: 1.16.2-1 Suggests: devhelp Filename: pool/main/c/cogl/libcogl-doc_1.16.2-1_all.deb Size: 250106 MD5sum: b689ef129941c431d8364f0751e6e61c SHA1: 9eb248f081a5d2eee8064ddbd48f4184dba60695 SHA256: 0e43f8bb68e2c4ca0513e938ca27abd97db6ac908146705bea7feee377881deb Description: Object oriented GL/GLES Abstraction/Utility Layer (documentation) Description-md5: 6b316c36c70b839fe5274cc7bbbd7eaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-gles2-15 Priority: optional Section: libs Installed-Size: 92 Maintainer: Rico Tzschichholz Architecture: amd64 Source: cogl Version: 1.16.2-1 Replaces: libcogl12 (<< 1.13.4-2) Depends: libc6 (>= 2.2.5), libgl1-mesa-glx Pre-Depends: multiarch-support Recommends: libcogl-common Suggests: libgles2-mesa | libgles2 Filename: pool/main/c/cogl/libcogl-gles2-15_1.16.2-1_amd64.deb Size: 32112 MD5sum: da80581add3710a3b57f20a46019e3f9 SHA1: 0a3ac69c357e1fb7c7b7fbf187c689fcd098fa2a SHA256: 2eac672fb5d7192503ebf88781a74418a44c88858b5065cb0f8591ebef906638 Description: Object oriented GL/GLES Abstraction/Utility Layer Multi-Arch: same Description-md5: d02a59a79a39b027f378070c58e31dd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-gles2-dev Priority: optional Section: libdevel Installed-Size: 166 Maintainer: Rico Tzschichholz Architecture: amd64 Source: cogl Version: 1.16.2-1 Replaces: libcogl-dev (<< 1.14.0-1) Depends: libcogl-gles2-15 (= 1.16.2-1), libcogl-dev (= 1.16.2-1) Recommends: pkg-config Suggests: libcogl-doc Breaks: libcogl-dev (<< 1.14.0-1) Filename: pool/main/c/cogl/libcogl-gles2-dev_1.16.2-1_amd64.deb Size: 13816 MD5sum: f62e7cea2eed006b2a5c76611f37c195 SHA1: 9b8b97b7700cefa04b57a77e006b6d0e014c6229 SHA256: 0fb2448e50eb2cf35ab69c279967fc0758c22576020076365dde5a1a3a9b05a6 Description: Object oriented GL/GLES Abstraction/Utility Layer (development files) Description-md5: be3115f4a0115636a1065d55d8a70f4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-pango-dev Priority: optional Section: libdevel Installed-Size: 106 Maintainer: Rico Tzschichholz Architecture: amd64 Source: cogl Version: 1.16.2-1 Depends: libcogl-pango15 (= 1.16.2-1), gir1.2-coglpango-1.0 (= 1.16.2-1), libcogl-dev (= 1.16.2-1), libglib2.0-dev (>= 2.28.0), libcairo2-dev (>= 1.10), libdrm-dev, libgdk-pixbuf2.0-dev (>= 2.0), libpango1.0-dev (>= 1.20), libx11-dev, libxcomposite-dev, libxext-dev, libxfixes-dev, libxdamage-dev Recommends: pkg-config Suggests: libcogl-doc Filename: pool/main/c/cogl/libcogl-pango-dev_1.16.2-1_amd64.deb Size: 7324 MD5sum: c55d71632885c35b02667c65b3a15109 SHA1: 4c8ab764aa3e27032ed5ea810611b94aa8aab895 SHA256: 601ea736f2415b7b4a8418f964c135a5e9302851d338a4c440f904f38186c05b Description: Object oriented GL/GLES Abstraction/Utility Layer (development files) Description-md5: 5c4e7ce27e624192d91d8d0db6688471 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-pango15 Priority: optional Section: libs Installed-Size: 94 Maintainer: Rico Tzschichholz Architecture: amd64 Source: cogl Version: 1.16.2-1 Depends: libc6 (>= 2.2.5), libcairo2 (>= 1.10), libcogl15 (>= 1.15.8), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.28.3-5), libpangocairo-1.0-0 (>= 1.28.3-5) Pre-Depends: multiarch-support Recommends: libcogl-common Filename: pool/main/c/cogl/libcogl-pango15_1.16.2-1_amd64.deb Size: 13996 MD5sum: dc88a5517f8d1206d448bcb4d47c9c71 SHA1: d576eec2a8daaf18d6620c9b20d40212b31ea54e SHA256: f18a5b4b268075694aeee56ac3d9ff32889dd6311124b6fed5e85989ef891522 Description: Object oriented GL/GLES Abstraction/Utility Layer Multi-Arch: same Description-md5: 8c0fee75492f726194fa0be454f54661 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcogl-pango15-dbg Priority: extra Section: debug Installed-Size: 278 Maintainer: Rico Tzschichholz Architecture: amd64 Source: cogl Version: 1.16.2-1 Depends: libcogl-pango15 (= 1.16.2-1) Filename: pool/main/c/cogl/libcogl-pango15-dbg_1.16.2-1_amd64.deb Size: 65210 MD5sum: 4dfadd9e9db0a44ab7ea077a6f3091a2 SHA1: 806ef81cf2d629e8d95ffe90e26ab0c1f1df7148 SHA256: 72bbc915691ec6d13100cf8d2c9d20fb039a99e400ded9da3a01b901b72d8ced Description: Object oriented GL/GLES Abstraction/Utility Layer (debug files) Multi-Arch: same Description-md5: 858ef4ee207459a233afecb58be377b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl15 Priority: optional Section: libs Installed-Size: 757 Maintainer: Rico Tzschichholz Architecture: amd64 Source: cogl Version: 1.16.2-1 Depends: libc6 (>= 2.17), libdrm2 (>= 2.4.17), libegl1-mesa (>= 7.8.1) | libegl1-x11, libegl1-mesa-drivers, libgbm1 (>= 8.1~0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.32.0), libwayland-client0 (>= 1.3.92), libwayland-server0 (>= 1.2.0), libx11-6, libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxrandr2 (>= 2:1.2.0), libgl1-mesa-glx Pre-Depends: multiarch-support Recommends: libcogl-common Suggests: libgles2-mesa | libgles2 Breaks: libclutter-1.0-0 (<< 1.15) Filename: pool/main/c/cogl/libcogl15_1.16.2-1_amd64.deb Size: 268362 MD5sum: 7934a21406317573139c74d0760348bc SHA1: 326c21c37c2a9ac70744c6f83013f4f7e1e42c6c SHA256: 3fdf640646d8e5fe98147b1a66074436eecbc9abe1e35f1a551cf6f450da551a Description: Object oriented GL/GLES Abstraction/Utility Layer Multi-Arch: same Description-md5: 8c0fee75492f726194fa0be454f54661 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcogl15-dbg Priority: extra Section: debug Installed-Size: 4496 Maintainer: Rico Tzschichholz Architecture: amd64 Source: cogl Version: 1.16.2-1 Depends: libcogl15 (= 1.16.2-1) Filename: pool/main/c/cogl/libcogl15-dbg_1.16.2-1_amd64.deb Size: 1055024 MD5sum: 13fd836bdd03f1e6a253f1b20205f2de SHA1: 3f58b840a6d26b8b7c4d05eaf7c5909d3e252809 SHA256: e7bb9912fc67fea312a77750a42dd03dbb9dcf4f122475eb6634340956700895 Description: Object oriented GL/GLES Abstraction/Utility Layer (debug files) Multi-Arch: same Description-md5: 6184f9688915cd7d80df1dba1ea3282a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcolamd2.8.0 Priority: optional Section: libs Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.2.5) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libcolamd2.8.0_4.2.1-3ubuntu1_amd64.deb Size: 17708 MD5sum: a642d35f6a0fdf08e6b06f71e9d3a275 SHA1: afde87ce606982e0cb47d43b3c76ed410be0034b SHA256: 5be60b2bbaf40e0055d8c72025291f76d52cc6d23a289cf83a45175a025c426e Description: column approximate minimum degree ordering library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 8deaa08627160807bac22fabb0a29a30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libcollection-dev Priority: extra Section: libdevel Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Depends: libcollection2 (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libcollection-dev_0.3.0.1-4_amd64.deb Size: 37102 MD5sum: 29c85e57e839e7df717f9d4ec68db39f SHA1: fef50bcc67cd95cb46e6e03e7c31271e4c8480c1 SHA256: a371f3b9e7158e8880efe484a1a1a6a633da3438434d11d7f73568ffbdc4022f Description: Development files for libcollection Homepage: https://fedorahosted.org/sssd/ Description-md5: 032378fdcf3e622c55ae4a2852001238 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcollection2 Priority: extra Section: libs Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Replaces: libcollection Provides: libcollection Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libcollection Filename: pool/main/d/ding-libs/libcollection2_0.3.0.1-4_amd64.deb Size: 20222 MD5sum: 9cb9a9146a050b129c5baadf917ddfe4 SHA1: d28f429e57fb5ea12225145bce0546cd7b5eeaf4 SHA256: cfdf97878f20998062335cfe13eab5357bffbf285c56ea2c970a283def008dcf Description: Collection data-type for C Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 5016b92c89c873a9311c032bc7d6f4ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcolord-dev Priority: optional Section: libdevel Installed-Size: 735 Maintainer: Christopher James Halse Rogers Architecture: amd64 Source: colord Version: 1.0.6-1 Depends: libcolord1 (= 1.0.6-1), liblcms2-dev, libglib2.0-dev, libdbus-1-dev Filename: pool/main/c/colord/libcolord-dev_1.0.6-1_amd64.deb Size: 47820 MD5sum: edef47121ac3fed2365e8a84cc487256 SHA1: adaaf6849dc1c1d648c72b330ba4ef21880a5ccf SHA256: 19788ef6b3b962ecffb102f5b5a21ffb0be9c453ad665ad890b50e63a9f91caf Description: system service to manage device colour profiles -- development files Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 46f99fd2edfb515f6b8ebf04d3e975ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcolord1 Priority: optional Section: libs Installed-Size: 333 Maintainer: Christopher James Halse Rogers Architecture: amd64 Source: colord Version: 1.0.6-1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), liblcms2-2 (>= 2.5) Pre-Depends: multiarch-support Recommends: colord Filename: pool/main/c/colord/libcolord1_1.0.6-1_amd64.deb Size: 83142 MD5sum: 647022a6805fb7f4c7a787e6802eae71 SHA1: 1faf3c9de045cdab61c336a5718b26aabb9be5f9 SHA256: a60c9142e8179e584f7c4e534f3f7e47cf1123ca4a4f4d2461d9927365d21188 Description: system service to manage device colour profiles -- runtime Multi-Arch: same Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 4d55f8607f36d5762f983bc2d927fd71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcolorhug-dev Priority: extra Section: libdevel Installed-Size: 237 Maintainer: Christopher James Halse Rogers Architecture: amd64 Source: colord Version: 1.0.6-1 Replaces: colorhug-client (<< 0.2.0-3) Depends: libcolorhug1 (= 1.0.6-1), libglib2.0-dev, libgusb-dev, libcolord-dev, gir1.2-colorhug-1.0 Breaks: colorhug-client (<< 0.2.0-3) Filename: pool/main/c/colord/libcolorhug-dev_1.0.6-1_amd64.deb Size: 17478 MD5sum: f12eac4a36e45e9db45a89970ef33fae SHA1: 0c94d9596a57144ef8ac7e866bc5f1e66b35de18 SHA256: f4a325610f36506f5c52796778745adced85a28461867f1ef47f0181e61b1d81 Description: library to access the ColorHug colourimeter -- development files Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 2b848b49bfa0ae456fb4d9fe1028bea1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcolorhug1 Priority: extra Section: graphics Installed-Size: 105 Maintainer: Christopher James Halse Rogers Architecture: amd64 Source: colord Version: 1.0.6-1 Depends: libc6 (>= 2.14), libcolord1 (>= 0.1.29), libglib2.0-0 (>= 2.37.3), libgusb2 (>= 0.1.3) Pre-Depends: multiarch-support Filename: pool/main/c/colord/libcolorhug1_1.0.6-1_amd64.deb Size: 21712 MD5sum: d82b23242cedc5a7b1ca4416e52e9503 SHA1: 9091fc01595b335f040bfa6f4be301f088e00d38 SHA256: 5a48451592c4b278dc9182015ce567165cfbc50baecc8a66c906b63951274472 Description: library to access the ColorHug colourimeter -- runtime Multi-Arch: same Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 5430db5db6b48bf89c6516c60d791c0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcolumbus1 Priority: optional Section: libs Installed-Size: 300 Maintainer: Ubuntu Developers Architecture: amd64 Source: libcolumbus Version: 1.1.0+14.04.20140325.3-0ubuntu1 Depends: libcolumbus1-common (= 1.1.0+14.04.20140325.3-0ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/libc/libcolumbus/libcolumbus1_1.1.0+14.04.20140325.3-0ubuntu1_amd64.deb Size: 77722 MD5sum: a4e34ac8317baafa4d024580477ba170 SHA1: 6a10003a320aec4a9237a60ba3046ceaf83b7160 SHA256: b66099d210175ef32177477d8281b1ed0dc50367c5a44688ed4fe16a3d6484b1 Description: error tolerant matching engine - shared library Multi-Arch: same Homepage: https://launchpad.net/libcolombus Description-md5: 1d8b3c73e578079ae9f55edfd2476ba0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libcolumbus1-common Priority: optional Section: libs Installed-Size: 31 Maintainer: Ubuntu Developers Architecture: all Source: libcolumbus Version: 1.1.0+14.04.20140325.3-0ubuntu1 Filename: pool/main/libc/libcolumbus/libcolumbus1-common_1.1.0+14.04.20140325.3-0ubuntu1_all.deb Size: 3182 MD5sum: c191c9219e8ed203342840e456c98746 SHA1: cbebc1d832f216613c7fe39d24cbc9f716814a3c SHA256: ddc33d3990e1c23b60f0de64767c50f28031de9d3e7bea77a58f6b407678e0a6 Description: error tolerant matching engine - common files Multi-Arch: foreign Homepage: https://launchpad.net/libcolombus Description-md5: 5b1a13928164c8e90dd3ac0c29030efa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libcolumbus1-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Architecture: amd64 Source: libcolumbus Version: 1.1.0+14.04.20140325.3-0ubuntu1 Depends: libcolumbus1 (= 1.1.0+14.04.20140325.3-0ubuntu1) Filename: pool/main/libc/libcolumbus/libcolumbus1-dev_1.1.0+14.04.20140325.3-0ubuntu1_amd64.deb Size: 6490 MD5sum: 8e259a75f7ecb8476a6e1743d41a1c8f SHA1: ce4536a8cef38a0cf20550616b6c43286135d957 SHA256: 06c43059da7de8ceebf8b6c2b92a4c235d50cc6a5c7f40bbb5fe3c9113b66148 Description: error tolerant matching engine - development files Multi-Arch: same Homepage: https://launchpad.net/libcolombus Description-md5: c297587e723b1f50e5f866cbfb42b63d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcomerr2 Priority: required Section: libs Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Replaces: e2fsprogs (<< 1.34-1) Provides: libcomerr-kth-compat Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/e/e2fsprogs/libcomerr2_1.42.9-3ubuntu1_amd64.deb Size: 62630 MD5sum: 1e6569c756e64bad47b72740277e0067 SHA1: 311e459a8c6c825103ba3a3b4604badea3be30a9 SHA256: c2489968a1a7030a1d54ec2fa25e101ffdb608c7e3621fba8255e7385538865b Description: common error description library Multi-Arch: same Homepage: http://e2fsprogs.sourceforge.net Description-md5: 5611f795c9947cfb9a2980a01506a1b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libcomerr2-dbg Priority: extra Section: libdevel Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Depends: libcomerr2 (= 1.42.9-3ubuntu1) Filename: pool/main/e/e2fsprogs/libcomerr2-dbg_1.42.9-3ubuntu1_amd64.deb Size: 66140 MD5sum: 9d377191ec41b29f091a8ca2c3773b48 SHA1: 2f43ec26f238d5975360ed38d343407d6104b16d SHA256: 12f154b66806caa90de6f2c676cbd1f64f35b509778d77e441a5841235f22d80 Description: debugging information for libcomerr2 Homepage: http://e2fsprogs.sourceforge.net Description-md5: 4013b4954dedd9e2a50c709e662dfc0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommon-sense-perl Priority: optional Section: perl Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 3.72-2build1 Depends: perl (>= 5.18.2), perl (<< 5.18.3~) Filename: pool/main/libc/libcommon-sense-perl/libcommon-sense-perl_3.72-2build1_amd64.deb Size: 20374 MD5sum: 504bd548e5bf4efd8f97bec372c131b0 SHA1: ee60ce7b785e57390b877d5045252a23193350d1 SHA256: 750d07dc41feba0f0b83d574c220710f8d6d3dbd7f637ca8ae5123da980fcb70 Description: module that implements some sane defaults for Perl programs Homepage: http://search.cpan.org/dist/common-sense/ Description-md5: e7cabe54423a93004585d32869c8c1a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libcommons-cli-java Priority: optional Section: libs Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.2-3ubuntu1 Depends: libcommons-lang-java (>= 2.0) Filename: pool/main/libc/libcommons-cli-java/libcommons-cli-java_1.2-3ubuntu1_all.deb Size: 39008 MD5sum: f3a98e68fb7db7fb03d3583a27f1e9ff SHA1: 3389d6357f3fc8adfe05d6f250320bc48362a19c SHA256: 529d1c353eee51c4d706b5d3dbd1331efe026bc4f32ad09195db32ab2de6f0ea Description: API for working with the command line arguments and options Homepage: http://commons.apache.org/cli/ Description-md5: 081495f1c941687ec491aba0a644d409 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-codec-java Priority: optional Section: libs Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.9-1 Filename: pool/main/libc/libcommons-codec-java/libcommons-codec-java_1.9-1_all.deb Size: 214016 MD5sum: a863c457f1bf27251f574c9827240a54 SHA1: 615179906d4643e8fd723cc4068d2641a913074c SHA256: a8e08fbe4465504a7d6ff427c6ab816958a18f5fb9e9e51883d9a5a90487bf87 Description: encoder and decoders such as Base64 and hexadecimal codec Homepage: http://commons.apache.org/codec/ Description-md5: f0d1153fdd8793191c09de4105b02fc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-codec-java-doc Priority: optional Section: doc Installed-Size: 2810 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-codec-java Version: 1.9-1 Suggests: libcommons-codec-java Filename: pool/main/libc/libcommons-codec-java/libcommons-codec-java-doc_1.9-1_all.deb Size: 136122 MD5sum: 123b2c6b6065d3757924659a6bb7913a SHA1: 0813765db1c8662028c70c958d99963cd806701f SHA256: 6e79d95e38d96de615d57646ad155e11b8a853e00437127e1cd986a9a236e1fa Description: encoder and decoders such as Base64 and hexadecimal codec - documentation Homepage: http://commons.apache.org/codec/ Description-md5: dc9519c04fe756132c46205b11a7b2aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-collections3-java Priority: optional Section: libs Installed-Size: 729 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 3.2.1-6 Suggests: libcommons-collections3-java-doc Filename: pool/main/libc/libcommons-collections3-java/libcommons-collections3-java_3.2.1-6_all.deb Size: 602438 MD5sum: 5fde5cc0e14a119139babf1fb6344ef8 SHA1: 557843bb1ab27100b7583ae8acf18ab3ffa68a2d SHA256: 9ed2103615e960654a870a10de3a94423c4659c76f0b067c4bff1816fd803cb6 Description: Apache Commons Collections - Extended Collections API for Java Homepage: http://commons.apache.org/collections/ Description-md5: 4c7697aecd4b1c3a87686654049680ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libcommons-collections3-java-doc Priority: optional Section: libs Installed-Size: 14556 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-collections3-java Version: 3.2.1-6 Filename: pool/main/libc/libcommons-collections3-java/libcommons-collections3-java-doc_3.2.1-6_all.deb Size: 1077070 MD5sum: ac71043b0b2854ec8803be2fc981037f SHA1: 04422917df6306695a3bd8653e1f0e53622a4746 SHA256: 42ab47ccccdee7a7ee0e5c57446979c676d13460c4f81c475d3358d0c2053195 Description: Documentation for libcommons-collections3-java Homepage: http://commons.apache.org/collections/ Description-md5: e3f1eb5029394fb5f70496470789bb5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-compress-java Priority: optional Section: libs Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.6-1 Depends: libxz-java Filename: pool/main/libc/libcommons-compress-java/libcommons-compress-java_1.6-1_all.deb Size: 280140 MD5sum: 536594bd1c96980c12a42fd379314df5 SHA1: 9590d4d7b3d15eaabe53de8039f17280b774bc1c SHA256: 6b599bb10ea4566000fd53896032154d5cee281e1701cce2e5fb730e64bfa761 Description: Java API for working with compression and archive formats Homepage: http://commons.apache.org/compress/ Description-md5: 76de17b70e6e21e15df11e627978c90b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-dbcp-java Priority: optional Section: libs Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.4-3ubuntu1 Depends: libcommons-pool-java, libcommons-collections3-java Recommends: libgeronimo-jta-1.1-spec-java Suggests: libcommons-dbcp-java-doc Filename: pool/main/libc/libcommons-dbcp-java/libcommons-dbcp-java_1.4-3ubuntu1_all.deb Size: 148800 MD5sum: 0342cf94639067ae867d2c487ab325ce SHA1: 326ea8868c397ac8ded2a5a68b05a8519a01c2a4 SHA256: 00d9930bc79a8e61e02413efc511ceefa051413cc8747eac9ae67269918d5af2 Description: Database Connection Pooling Services Homepage: http://commons.apache.org/dbcp/ Description-md5: f2f7170da4a16dd656c8f4ad419adda9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libcommons-httpclient-java Priority: optional Section: libs Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-httpclient Version: 3.1-10.2 Depends: libcommons-logging-java, libcommons-codec-java Suggests: libcommons-httpclient-java-doc Filename: pool/main/c/commons-httpclient/libcommons-httpclient-java_3.1-10.2_all.deb Size: 290038 MD5sum: ffb75243a5237f24143a07d32f154351 SHA1: f67d59dd2a1fc40d84beebefc6b0f29389aeaf56 SHA256: 2edc95b33244fdd00712be9fe2c405a334071a3df363dfc1aec7cf65e3dddbb9 Description: A Java(TM) library for creating HTTP clients Homepage: http://hc.apache.org/httpclient-3.x Description-md5: 99727d397d64841b730572b9bf6b2abc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-httpclient-java-doc Priority: optional Section: libs Installed-Size: 14426 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-httpclient Version: 3.1-10.2 Suggests: libcommons-httpclient-java Filename: pool/main/c/commons-httpclient/libcommons-httpclient-java-doc_3.1-10.2_all.deb Size: 1517922 MD5sum: a9cfc9fd3204e765422c8951ff382597 SHA1: ef2b2c562fd43ac020bbb0b3cf19ab5aa071dac8 SHA256: daa9bf80f4096e1bbc86c129e49fae2bfa5e5d809c7f8febcaaf6a810cedaae9 Description: Documentation for libcommons-httpclient-java Homepage: http://hc.apache.org/httpclient-3.x Description-md5: 1070d64e1758482d619f5f0747f7157a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-io-java Priority: optional Section: libs Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-io Version: 2.4-2 Suggests: libcommons-io-java-doc Filename: pool/main/c/commons-io/libcommons-io-java_2.4-2_all.deb Size: 175848 MD5sum: 421de30d6e10473d22cecb07e3e988ca SHA1: 917acfb762b6d34ad3538b4f96a9aadc3dba4f71 SHA256: 2905eec038bf5cfb4a784823b6e433b72a53fa37b99ba9b0e43120deb6700a6f Description: Common useful IO related classes Homepage: http://commons.apache.org/io/ Description-md5: ab9a7ea305f82fb4e55b875ca4cdebe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-io-java-doc Priority: optional Section: doc Installed-Size: 3674 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-io Version: 2.4-2 Suggests: libcommons-io-java Filename: pool/main/c/commons-io/libcommons-io-java-doc_2.4-2_all.deb Size: 311380 MD5sum: df155f4a97abecdb822389045db732f6 SHA1: e55893be2710bd2bfd1e6bb1dc8e2e70d97e6aa4 SHA256: a189f4f207678580334c39556d0664d5a4bba7f57b435c0c65f6e6c7b86e612d Description: Common useful IO related classes - documentation Homepage: http://commons.apache.org/io/ Description-md5: 4208986ef444c6a3799df296be1e7b40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-lang-java Priority: optional Section: libs Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.6-3ubuntu2 Filename: pool/main/libc/libcommons-lang-java/libcommons-lang-java_2.6-3ubuntu2_all.deb Size: 269544 MD5sum: b8f439ab800d5e8b02ce1e391bb70d9f SHA1: 10dfb872ea0124b6835c98ada31366cee8b1ae36 SHA256: 87c2ac1b7c88b23c6d87882ac00d1605014a98c8fa0d814c0a04fb14ec282ba2 Description: Extension of the java.lang package Homepage: http://commons.apache.org/lang/ Description-md5: 9161abb49dba489be4e0433f38eb91fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-lang-java-doc Priority: optional Section: doc Installed-Size: 6618 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-lang-java Version: 2.6-3ubuntu2 Suggests: default-jdk-doc Filename: pool/main/libc/libcommons-lang-java/libcommons-lang-java-doc_2.6-3ubuntu2_all.deb Size: 520100 MD5sum: 9ecce0c2488fbd11dc852b787e5392b5 SHA1: 22ea277677c864f9ac9a0519d3acf67ec283b684 SHA256: 05e8d977c288e6cfbe64be17be4cc60bd18d0cdeb5bcd0fd6e19f26359464834 Description: Documentation for an extension of the java.lang package Homepage: http://commons.apache.org/lang/ Description-md5: ed7508efd02cb48f78275d96aa679a2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-logging-java Priority: optional Section: libs Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.3-1 Depends: libcommons-parent-java Suggests: libavalon-framework-java, libcommons-logging-java-doc, libexcalibur-logkit-java, liblog4j1.2-java, libservlet3.0-java Filename: pool/main/libc/libcommons-logging-java/libcommons-logging-java_1.1.3-1_all.deb Size: 120236 MD5sum: a0fd31a255cd5bd83622ae76c57661a9 SHA1: bdb9594641e2d1679503ee3b36cc3a902252d41b SHA256: 6de04da2b2e0ae481d5294c6f594d247910e28ae98fe8072cce009f429420f2f Description: common wrapper interface for several logging APIs Homepage: http://commons.apache.org/logging Description-md5: 73a7ea23210de9009f87c35d126ccfbd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-logging-java-doc Priority: optional Section: doc Installed-Size: 959 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-logging-java Version: 1.1.3-1 Filename: pool/main/libc/libcommons-logging-java/libcommons-logging-java-doc_1.1.3-1_all.deb Size: 116316 MD5sum: f1803454087e20bf1a04d74feac64390 SHA1: 0fde6080bb4e839bbf6f6c28ac8dc60310cf2fac SHA256: ae5f896bb4095560dd353b86b556a48d25eb446d494a4882f97a0ce1ff765ac5 Description: common wrapper interface for several logging APIs (documentation) Homepage: http://commons.apache.org/logging Description-md5: 53cdcf907ecf9a99d6246542131d7037 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-net-java Priority: optional Section: libs Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-net1-java Version: 1.4.1-5build1 Depends: libcommons-net1-java (= 1.4.1-5build1) Filename: pool/main/libc/libcommons-net1-java/libcommons-net-java_1.4.1-5build1_all.deb Size: 2472 MD5sum: ffb31b0225860c32d3a996c8d74fc570 SHA1: e7968c345cc71f0338e485475eb32ab14e74f4de SHA256: a47f04beb25304889dca3b4a1e1f76c880c232be9816ca78904d90b6e0960b32 Description: dummy package for upgrading to libcommons-net-java Homepage: http://commons.apache.org/net/ Description-md5: a503f3909f939e6f721b1efa0a665379 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-net1-java Priority: optional Section: java Installed-Size: 5224 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.4.1-5build1 Replaces: libcommons-net-java (<< 1.4.1-4~) Depends: liboro-java (>= 2.0.8) Conflicts: libcommons-net-java (<< 1.4.1-4~) Filename: pool/main/libc/libcommons-net1-java/libcommons-net1-java_1.4.1-5build1_all.deb Size: 584402 MD5sum: f6a0f790964651bfef71525bc4720db6 SHA1: 8c78099ec466ce9e70835272dc4e7b836a98f55b SHA256: 32e0198015c78b16ca0a13dc09ca51c1c591f2f4ad94aae8709cabfe866f40bb Description: internet protocol suite Java library Homepage: http://commons.apache.org/net/ Description-md5: 9a728e9eab438e51687c9363e60ad82d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-net2-java Priority: optional Section: java Installed-Size: 262 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.2-2 Suggests: libcommons-net2-java-doc Filename: pool/main/libc/libcommons-net2-java/libcommons-net2-java_2.2-2_all.deb Size: 193584 MD5sum: 92cdc7be1b34da71256eab8146195334 SHA1: dc743ec204bc8dffd776f33d9705afeec00c1362 SHA256: f629d4ca87f69041726a39bb58724b4adc23285a334b35dc4cb4d764b74f15a1 Description: internet protocol suite Java library Homepage: http://commons.apache.org/net/ Description-md5: 2ffffee07559c3a3e3e50730c14bee7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-net2-java-doc Priority: optional Section: doc Installed-Size: 5632 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-net2-java Version: 2.2-2 Recommends: default-jdk-doc Suggests: libcommons-net2-java Filename: pool/main/libc/libcommons-net2-java/libcommons-net2-java-doc_2.2-2_all.deb Size: 462364 MD5sum: ad663b9c62ba0c09c95d6689cab93842 SHA1: be65db1b5e3090caae4c7e00f1cb405164275839 SHA256: 21d767989ec75613f790d49a34714ef3cdf508406e7e786d3eed5af31f50b337 Description: internet protocol suite Java library - API docs Homepage: http://commons.apache.org/net/ Description-md5: e3e308bfb40230758e02c11e6753fecb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-parent-java Priority: optional Section: java Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-parent Version: 22-2build1 Depends: libapache-pom-java (>= 9) Filename: pool/main/c/commons-parent/libcommons-parent-java_22-2build1_all.deb Size: 6968 MD5sum: c73bfd5c49dcd677ced09f2362525dea SHA1: f74af2b4ece589b006c095e9f0b17e543bd14cf8 SHA256: ccc484bed85967667d6217b3efbe8eff52e02d4490aa0ab184b7fae39221fffa Description: Maven metadata for Apache Commons project Homepage: http://commons.apache.org/ Description-md5: d0073f82178a5a011e65b320564c5b57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-pool-java Priority: optional Section: libs Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-pool Version: 1.6-2 Filename: pool/main/c/commons-pool/libcommons-pool-java_1.6-2_all.deb Size: 104698 MD5sum: b7519f833b9a303167c61335f97412bf SHA1: 3c143d98bd33140a31349d0300267a8004ffa719 SHA256: 666059d4dd9e4accae0a6d1f6ec5c4122e1addd40b7110b462f1e88f4f77186a Description: pooling implementation for Java objects Homepage: http://commons.apache.org/pool/ Description-md5: 3a9df963586886381885c548196b37ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libcommons-pool-java-doc Priority: optional Section: doc Installed-Size: 1301 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-pool Version: 1.6-2 Recommends: default-jdk-doc Suggests: libcommons-pool-java Filename: pool/main/c/commons-pool/libcommons-pool-java-doc_1.6-2_all.deb Size: 121430 MD5sum: 8ec49b4034848dbcceed187c71417081 SHA1: ab5fa43ae2860b8ca0135adf1ba98a69115fdce9 SHA256: f7f6c46e98f6783a1024c5a3cafdd62069c08634720d07d84bba417f3d561e1d Description: pooling implementation for Java objects - documentation Homepage: http://commons.apache.org/pool/ Description-md5: b5d4dff62691b14e441858a4f24575b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-vfs-java Priority: optional Section: libs Installed-Size: 496 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-vfs Version: 2.0-3ubuntu1 Depends: libcommons-logging-java Recommends: ant, libcommons-collections3-java, libcommons-httpclient-java, libcommons-net2-java, libjsch-java Suggests: libcommons-vfs-java-doc Filename: pool/main/c/commons-vfs/libcommons-vfs-java_2.0-3ubuntu1_all.deb Size: 372648 MD5sum: 263a12fc464a59515c31e79484352207 SHA1: 91d1d99cdd81cec67a6bc908199714b622b2acdc SHA256: 4211702f391c6338c421e0a673c4180a04a6b2782de6fccf73798ecf2ceece3b Description: Java API for accessing various filesystems Homepage: http://commons.apache.org/vfs/ Description-md5: 8f23be4ffb3c69c4e3bb95bf6387e149 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-vfs-java-doc Priority: optional Section: doc Installed-Size: 5999 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-vfs Version: 2.0-3ubuntu1 Depends: libcommons-collections3-java-doc, libcommons-httpclient-java-doc, libcommons-logging-java-doc, libcommons-net2-java-doc Recommends: default-jdk-doc Suggests: libcommons-vfs-java Filename: pool/main/c/commons-vfs/libcommons-vfs-java-doc_2.0-3ubuntu1_all.deb Size: 454210 MD5sum: 4d0e2451052bf081705252e76ef3e46f SHA1: f6fdf2e9dc8bb459ff240a5d8afdd14c0552cb69 SHA256: 9edae37716adc2bc7a42dfcda56c3589f4efe4a40ed76f0e2ae2fdc62f2f09ca Description: Java API for accessing various filesystems - documentation Homepage: http://commons.apache.org/vfs/ Description-md5: 5d7572cd48b7c03c4eb03d3cd10b5a49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcompizconfig0 Priority: extra Section: libs Installed-Size: 540 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Depends: compiz-core (= 1:0.9.11+14.04.20140409-0ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libprotobuf8, libstdc++6 (>= 4.1.1), libx11-6, libxml2 (>= 2.7.4) Filename: pool/main/c/compiz/libcompizconfig0_0.9.11+14.04.20140409-0ubuntu1_amd64.deb Size: 117262 MD5sum: a7891062542633c96f64df0fc562bd0b SHA1: 3a4aeceeadfba3c0f522e164e86339eecc8ad7ec SHA256: 9c2ce35708e2a3ee8eb942bc1884eaa1f2789f2007ac5a5c16b5732e0cf7ebf8 Description: Settings library for plugins - OpenCompositing Project Description-md5: 9b1501bf431a077bb890354ada003ea2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libcompizconfig0-dev Priority: extra Section: libs Installed-Size: 234 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Depends: libcompizconfig0 (= 1:0.9.11+14.04.20140409-0ubuntu1), compiz-dev Filename: pool/main/c/compiz/libcompizconfig0-dev_0.9.11+14.04.20140409-0ubuntu1_amd64.deb Size: 19834 MD5sum: cbbab47bf47520d1635b2187384e07f1 SHA1: 250d1758fd683ef429c9f70f6e627aae6e6edc14 SHA256: f6a3dd387db973a3b8cbfd962f4d873df5d55f0a92ff83fafbd181bb4a6fdfa0 Description: Development file for plugin settings - OpenCompositing Project Description-md5: 61d1c40aa4308fbedaf76a0b0daed3ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig++-dbg Priority: extra Section: debug Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: amd64 Source: libconfig Version: 1.4.9-2 Depends: libconfig9 (= 1.4.9-2), libconfig++9 (= 1.4.9-2) Filename: pool/main/libc/libconfig/libconfig++-dbg_1.4.9-2_amd64.deb Size: 85038 MD5sum: 7e771df7c9b0a79832fe806c1ed394d1 SHA1: 41f18c12f253126b5af5e797a314971714c92926 SHA256: 0e65316c8bcfc25efa23c1e333111dfac661373628a6d32627547a5f818c47c8 Description: parsing/manipulation of structured config files (C++ debug symbols) Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: fbe2762da28b88720f4093f85b6d0653 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig++-dev Priority: optional Section: libdevel Installed-Size: 753 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: amd64 Source: libconfig Version: 1.4.9-2 Replaces: libconfig++8-dev (<< 1.4.8) Depends: libconfig++9 (= 1.4.9-2), libconfig-dev, pkg-config (>= 0.20) Breaks: libconfig++8-dev (<< 1.4.8) Filename: pool/main/libc/libconfig/libconfig++-dev_1.4.9-2_amd64.deb Size: 115698 MD5sum: d8ab80ecf28b7fbd64fb6ee1122cb5a3 SHA1: 264b0cebb1cd1fb49ec7d349425f215f95bb536b SHA256: 23a460aa2dd3434f0bca2498a1c612f5d7898d74fe3ed9e3ba62224adccec5dc Description: parsing/manipulation of structured config files (C++ development) Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: f5222f17a36cd1f595adc29edaa8e337 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig++8-dev Priority: optional Section: libdevel Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: amd64 Source: libconfig Version: 1.4.9-2 Depends: libconfig++-dev Filename: pool/main/libc/libconfig/libconfig++8-dev_1.4.9-2_amd64.deb Size: 1764 MD5sum: 876ab549f2b298f36a896e6a26ecfe68 SHA1: 43d459bf77a68b88b0a5e908f70634ffaa98d2cb SHA256: 045fb0257a80e2f6215bb59a9c95500726f1aee5d880eefad5ff60c3e0d1fdf5 Description: Transitional package for libconfig++-dev Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: cbbd85a6ac8cc27b5a39bddc176e3858 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig++9 Priority: optional Section: libs Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: amd64 Source: libconfig Version: 1.4.9-2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/libc/libconfig/libconfig++9_1.4.9-2_amd64.deb Size: 30970 MD5sum: fe4ae9eabf9d327d66b0d9f508c2fd18 SHA1: 3bbafa6550618fa956e899b9baf695b575ea3e06 SHA256: 0c1363b97508cbc4546d33214f1510004844c59c398d1c017ec9577ca3940872 Description: parsing/manipulation of structured configuration files (C++ binding) Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: 9a8df51133928631226892f0ee52493b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libconfig-auto-perl Priority: optional Section: perl Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.42-1 Depends: perl, libconfig-inifiles-perl, libio-string-perl, libxml-simple-perl, libyaml-perl (>= 0.67) Filename: pool/main/libc/libconfig-auto-perl/libconfig-auto-perl_0.42-1_all.deb Size: 18310 MD5sum: 9014d2e24a710762ef73ef8e8d947c26 SHA1: b29cfe1ff02dd09a8e1ae2a6d1a61c0a6f266ca5 SHA256: 696e7c3a3574dadb9c1574f2fd2143c4311786fead05c9983e2e33075ff7b66f Description: magical config file parser Homepage: http://search.cpan.org/dist/Config-Auto/ Description-md5: a21c1ce97ab57c25137804f64a29091a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig-dbg Priority: extra Section: debug Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: amd64 Source: libconfig Version: 1.4.9-2 Depends: libconfig9 (= 1.4.9-2) Filename: pool/main/libc/libconfig/libconfig-dbg_1.4.9-2_amd64.deb Size: 37828 MD5sum: 6e5cc6a0a5c9678eaf6ecb7079d8b276 SHA1: d6ab790effb33de4c2b0e267e91899646c498071 SHA256: cdbd206dc4a6540cff82f78ed200eaa75cbb5eb7da2067fb316cad5e9393f1cc Description: parsing/manipulation of structured config files (debug symbols) Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: 760f799dc7517e67fc428436cec7cc8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig-dev Priority: optional Section: libdevel Installed-Size: 345 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: amd64 Source: libconfig Version: 1.4.9-2 Replaces: libconfig8-dev (<< 1.4.8) Depends: libconfig9 (= 1.4.9-2), pkg-config (>= 0.20) Recommends: libconfig-doc Breaks: libconfig8-dev (<< 1.4.8) Filename: pool/main/libc/libconfig/libconfig-dev_1.4.9-2_amd64.deb Size: 85080 MD5sum: de04482ab55fd9bb2b4c20baaf3e742c SHA1: bd3f7a3bea1d6f1ef2172ede80073a98b0be38d9 SHA256: 635deb851d419202887ee1255510ae19a2c8e9f5dc04bda8971cade2effb626d Description: parsing/manipulation of structured config files (development) Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: 21ea54675951d05055b8aadda5a21743 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig-doc Priority: optional Section: doc Installed-Size: 319 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: all Source: libconfig Version: 1.4.9-2 Replaces: libconfig-dev (<= 1.4.8) Breaks: libconfig-dev (<= 1.4.8) Filename: pool/main/libc/libconfig/libconfig-doc_1.4.9-2_all.deb Size: 299532 MD5sum: 948bdda620a5228ebed7d25a0062ffa9 SHA1: 7db303167f41111b8e3e823b70b96251fa5705d7 SHA256: 1e08b3eff7009ecd55d3a85d954f2302b70ee2e776c5abff70c50ba3ec4bedda Description: parsing/manipulation of structured config files (Documentation) Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: 6392d9fb9c41805d37675a398591bb07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig-general-perl Priority: optional Section: perl Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Francesco Cecconi Architecture: all Version: 2.52-1 Depends: perl Filename: pool/main/libc/libconfig-general-perl/libconfig-general-perl_2.52-1_all.deb Size: 59036 MD5sum: 42dd64a2e8c1dd19c1f0efd52da3af41 SHA1: 4d705e617be957a597aceaeb62c604686fb277bc SHA256: eea06cd989822f74dba19911b1fbbcd4c1da037a5e8d9da2d452ca7e92451cd2 Description: Generic Configuration Module Homepage: http://search.cpan.org/dist/Config-General/ Description-md5: f788b822bb960d9c8c20404681f2f894 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libconfig-inifiles-perl Priority: extra Section: perl Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.82-1 Depends: liblist-moreutils-perl (>= 0.33) Filename: pool/main/libc/libconfig-inifiles-perl/libconfig-inifiles-perl_2.82-1_all.deb Size: 40042 MD5sum: cee7b6f0a27b1024e8c362493dad1d01 SHA1: 25cb83b73dd91ec6d747daa6b4a34235a3a7dba9 SHA256: 47360f3acd7592f8fe5cb649b9875dd1415e8196c03841c19c3519c07797e519 Description: Read .ini-style configuration files Homepage: http://search.cpan.org/dist/Config-IniFiles/ Description-md5: d24d974f36f7f51c4a836526d3ca23a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libconfig-tiny-perl Priority: optional Section: perl Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Dominic Hargreaves Architecture: all Version: 2.20-1 Depends: perl Filename: pool/main/libc/libconfig-tiny-perl/libconfig-tiny-perl_2.20-1_all.deb Size: 13562 MD5sum: 8317bc8a88186d5bb1ea6642b018859e SHA1: a8109fcb766d0fddb072a1980dd7be5870247539 SHA256: a05d7333b313d279252f09b3bc1db0dafb02e0e8f57af67249aefbf8518f2d8d Description: Read/Write .ini style files with as little code as possible Homepage: http://search.cpan.org/dist/Config-Tiny/ Description-md5: 2ed241fe044ca857ea722391dda4ed88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig8-dev Priority: optional Section: libdevel Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: amd64 Source: libconfig Version: 1.4.9-2 Depends: libconfig-dev Filename: pool/main/libc/libconfig/libconfig8-dev_1.4.9-2_amd64.deb Size: 1766 MD5sum: eb53d9792ab6660a4835ef24101ecd38 SHA1: d13d88514f5b61d0f52ecc65e1e5e8bda59d177e SHA256: 182bfbff464e22c7bd2314b8c21633b78c9de6ae89a62262bd6f85c550b8a827 Description: Transitional package for libconfig-dev Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: 31c557599e2ff6f782f0af9b8f4e2846 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig9 Priority: optional Section: libs Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: amd64 Source: libconfig Version: 1.4.9-2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libc/libconfig/libconfig9_1.4.9-2_amd64.deb Size: 21678 MD5sum: 315b7c7a883797203d336310791df37d SHA1: 0f043c96b42ed2b46f976c358b7df96ea2ccf176 SHA256: ac75018c78bcbf7dab5704986bbd4bf2f8b65292c088a1102de76911b37183f7 Description: parsing/manipulation of structured configuration files Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: f9e4a016d7fc40b75858220651e186b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconvert-asn1-perl Priority: optional Section: perl Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.26-1 Depends: perl, libmath-bigint-perl (>= 1.997) | perl (>= 5.15.3) Filename: pool/main/libc/libconvert-asn1-perl/libconvert-asn1-perl_0.26-1_all.deb Size: 43218 MD5sum: 9d1ed2ec26285221b50a4f523477f2aa SHA1: a0b83ea75a3e08a45c92a09ee72a0b920d5d45f3 SHA256: 307e6c96346fece2e130074e7515f0fca395f1793c89936e9ec8ad9dc2613d8d Description: Perl module for encoding and decoding ASN.1 data structures Homepage: http://search.cpan.org/dist/Convert-ASN1/ Description-md5: 95c0985828ade60ac629fccf28e83751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libconvert-binhex-perl Priority: optional Section: perl Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.123-1 Depends: perl Filename: pool/main/libc/libconvert-binhex-perl/libconvert-binhex-perl_1.123-1_all.deb Size: 32200 MD5sum: 633414005f9bf75a4c3151a26c4eb38a SHA1: e327452d6045bebc5a9a093b0af73903194044db SHA256: ef65c62af00220e1fc7b89f2227dff67aada2179bf20b75da55145412ac466f4 Description: Perl5 module for extracting data from macintosh BinHex files Homepage: https://metacpan.org/release/Convert-BinHex/ Description-md5: 1336112e61403d754353a49e3bfb2b2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libconvert-tnef-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.18-1 Depends: perl, libio-stringy-perl, libmime-tools-perl Filename: pool/main/libc/libconvert-tnef-perl/libconvert-tnef-perl_0.18-1_all.deb Size: 19742 MD5sum: 2830bbc8caf0406018d60efa0ee27cd7 SHA1: 3489f9687aa359d050b8c5a91a3541a96134bc87 SHA256: 919914ba106035c41fee5236fbc36643338145ce867ff24b0094adc8d0a44dfd Description: Perl module to read TNEF files Homepage: http://search.cpan.org/dist/Convert-TNEF/ Description-md5: 10ea4ce87255fafa7cdf59ba7808ae75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libconvert-uulib-perl Priority: optional Section: perl Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1:1.4~dfsg-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.14) Filename: pool/main/libc/libconvert-uulib-perl/libconvert-uulib-perl_1.4~dfsg-1build3_amd64.deb Size: 103430 MD5sum: e4c2a56ef2b835996f2f41f8ff65c835 SHA1: 0387b10987c0c8bda5736687410b3b0bc573bb94 SHA256: cb1d8d8f5fc2b53bdd48e68cbe453e4a134586d1a6f27222bb18ce192c04b9bb Description: Perl interface to the uulib library (a.k.a. uudeview/uuenview) Homepage: http://search.cpan.org/dist/Convert::UUlib/ Description-md5: ad0fefb3ebad6ecaa1f26cdfdfa5e762 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcorosync-common-dev Priority: optional Section: libdevel Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libcorosync-common4 (= 2.3.3-1ubuntu1), libqb-dev Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libcorosync-common-dev_2.3.3-1ubuntu1_amd64.deb Size: 6880 MD5sum: a9693e1715b9b6999a41bd4956536b1d SHA1: f569f23201c71638cefeaa5fde244fc365fd7bc3 SHA256: 566edccef91163f044e9dfcea1ac2ed855f5d68e46588e7202a65afcdaf463f3 Description: Standards-based cluster framework, common devel files Description-md5: 9f69c5d4e0e003621503cdd3322c20a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcorosync-common4 Priority: optional Section: libs Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.2.5) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libcorosync-common4_2.3.3-1ubuntu1_amd64.deb Size: 6622 MD5sum: 023b2db48714ead763b48e85cdcb6ad6 SHA1: 47b22b71473ce650db92e00a603fbd5f35af2944 SHA256: 24e83d0cead981a907ad7bcb817f9a1bfa40373f802d34292d9542b69d240638 Description: Standards-based cluster framework, common library Description-md5: e2510e42f361d7ebd6029fbbba636768 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcorosync-dev Priority: optional Section: libdevel Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: all Source: corosync Version: 2.3.3-1ubuntu1 Depends: libcfg-dev, libcmap-dev, libcorosync-common-dev, libcpg-dev, libquorum-dev, libsam-dev, libtotem-pg-dev, libvotequorum-dev Conflicts: libopenais-dev (<< 0.85), libopenais-legacy-dev (<< 1.0.0) Filename: pool/main/c/corosync/libcorosync-dev_2.3.3-1ubuntu1_all.deb Size: 3270 MD5sum: 422aefa161dc439b87287bc3a4d1bd2c SHA1: 4a7dbf56313cbb702920b07956455066882803e0 SHA256: 38b43185ba4c43bd4dfe8b66fb0eacee47dffcb4d68b8168a453b04fb480df80 Description: Standards-based cluster framework (transitional package) Description-md5: 6e6d0431e37192faa27fa9bcdcf6fa08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcorosync4 Priority: optional Section: libs Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: all Source: corosync Version: 2.3.3-1ubuntu1 Depends: libcfg6, libcmap4, libcorosync-common4, libcpg4, libquorum5, libsam4, libtotem-pg5, libvotequorum6 Conflicts: libopenais2 (<< 0.85) Filename: pool/main/c/corosync/libcorosync4_2.3.3-1ubuntu1_all.deb Size: 3254 MD5sum: 23db5d16f577b8e9743ca295357b9c46 SHA1: 6d80d40ae3da305df79678c288250acf7d5bcebf SHA256: 94aad13ddc2f1757f902cba064e5e5a6301a1fced0889540ead5d0ba1f6fe716 Description: Standards-based cluster framework (transitional package) Description-md5: 0733b47ac69d02d40f10868bc8aeac0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcpan-changes-perl Priority: optional Section: perl Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.27-1 Depends: perl, perl (>= 5.11.4) | libversion-perl Filename: pool/main/libc/libcpan-changes-perl/libcpan-changes-perl_0.27-1_all.deb Size: 27566 MD5sum: ac851aeb76831362f5693c46a3ff6527 SHA1: 4f8a39e4bc2369fd738842224cd175b2ef381e0b SHA256: b23e6e6e6f3b88dc6e4dcca53758b513f26226f864579712541644dfcf3fa23e Description: module for reading and writing CPAN Changes files Homepage: https://metacpan.org/release/CPAN-Changes/ Description-md5: 2e59ee9cf3588f641e251e3a898749ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcpan-meta-check-perl Priority: optional Section: perl Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.007-1 Depends: libcpan-meta-perl (>= 2.120920), libcpan-meta-requirements-perl, perl (>= 5.14) | libmodule-metatadata-perl, perl Filename: pool/main/libc/libcpan-meta-check-perl/libcpan-meta-check-perl_0.007-1_all.deb Size: 7716 MD5sum: c4e02e9ac97e0be591cb5b2eb14ad744 SHA1: 09f887e96b5a94f693993bc7bde0ce10d202cee9 SHA256: f170d63494839258d04e26429c4216e6164ea2bf8dc9f859bfc2673dc4ec33fb Description: verify requirements in a CPAN::Meta object Homepage: http://search.cpan.org/dist/CPAN-Meta-Check/ Description-md5: fdb3101dc776ee51f79469ae21e1e0e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcpan-meta-perl Priority: optional Section: perl Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.133380-2 Depends: perl, liblist-moreutils-perl, perl (>= 5.15.0) | libjson-pp-perl, perl (>= 5.17.1) | libcpan-meta-requirements-perl, perl (>= 5.17.1) | libcpan-meta-yaml-perl, perl (>= 5.17.1) | libparse-cpan-meta-perl (>= 1.4403) Filename: pool/main/libc/libcpan-meta-perl/libcpan-meta-perl_2.133380-2_all.deb Size: 69174 MD5sum: 4067458bb20331f3fe68f7e5b9043b2a SHA1: 929044b07e85b77f31a5108a80a6458a03874ada SHA256: fc1706673e3a1bb10ea067531fdc8aa7ceb31ec752d236743311993b1c2717d2 Description: Perl module to access CPAN distributions metadata Homepage: https://metacpan.org/release/CPAN-Meta Description-md5: ebe59ab652f4f628152652601afd7b16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcpg-dev Priority: optional Section: libdevel Installed-Size: 371 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libcpg4 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libcpg-dev_2.3.3-1ubuntu1_amd64.deb Size: 52458 MD5sum: b0a5d7e22e58ee1214429536e1f01fb2 SHA1: a01bc224d130e84b761a72f456fbcb65155c9f68 SHA256: 3c65bb7203f5d0ec4e1f287745ea03e83a14ff0ea12c31df1e2757db328ebd46 Description: Standards-based cluster framework, Cpg devel files Description-md5: 5fa5451460cbdcc4cc8217f081b6f257 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcpg4 Priority: optional Section: libs Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.14), libcorosync-common4 (>= 2.3.3), libqb0 Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libcpg4_2.3.3-1ubuntu1_amd64.deb Size: 9968 MD5sum: 3d411db8a12c6c622ef3abec553ca85a SHA1: 22749173142413443ebed05255ebd4bfe5546aeb SHA256: e5cbe1ef01b84e7c02d43b82d28c4135fe9eef42502a7c066ffbb7819efaa9f7 Description: Standards-based cluster framework, Cpg library Description-md5: 9b778c6c94d6c27e4761b03ab11317f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcppunit-1.13-0 Priority: optional Section: libs Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Steve M. Robbins Architecture: amd64 Source: cppunit Version: 1.13.1-2ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/c/cppunit/libcppunit-1.13-0_1.13.1-2ubuntu1_amd64.deb Size: 76442 MD5sum: 9ab3f91040b70faeb48763a5bf44079a SHA1: ef55edb4d5b05d5111da21b511e4b263a4b433a7 SHA256: d65a2162ec9a98af596bcbef3406ab9e602b1f5d5aa3c19bbee2d75c72cd7d0f Description: Unit Testing Library for C++ Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/cppunit Description-md5: dca7bb14a898276dca99f38b635142d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcppunit-dev Priority: optional Section: libdevel Installed-Size: 872 Maintainer: Ubuntu Developers Original-Maintainer: Steve M. Robbins Architecture: amd64 Source: cppunit Version: 1.13.1-2ubuntu1 Replaces: cppunit (<< 1.10.0-3) Depends: libcppunit-1.13-0 (= 1.13.1-2ubuntu1) Suggests: libcppunit-doc Filename: pool/main/c/cppunit/libcppunit-dev_1.13.1-2ubuntu1_amd64.deb Size: 131012 MD5sum: 1fa041945fc32d3dde4ccf7e2b201965 SHA1: e587829ce6babb2ce8adb398cd8f70812e736d3e SHA256: dc5ef3a26ecb7e3400fda72b33c2c3c6a868627bda0714bc6715f6e59135c8c9 Description: Unit Testing Library for C++ Homepage: http://www.freedesktop.org/wiki/Software/cppunit Description-md5: dca7bb14a898276dca99f38b635142d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcppunit-doc Priority: optional Section: doc Installed-Size: 4838 Maintainer: Ubuntu Developers Original-Maintainer: Steve M. Robbins Architecture: all Source: cppunit Version: 1.13.1-2ubuntu1 Replaces: cppunit (<< 1.10.0-3), libcppunit-dev (<< 1.10.2-6) Conflicts: cppunit (<< 1.10.0-3), libcppunit-dev (<< 1.10.2-6) Filename: pool/main/c/cppunit/libcppunit-doc_1.13.1-2ubuntu1_all.deb Size: 483480 MD5sum: 485997ff4908cb774eb49cd26c48eda2 SHA1: d33f4fb7859ed290c7415de3f1308d6f9b5b52fe SHA256: 8be2fc5066d113470fe06778ac47b2cb61ddfd4c22d71ac9298b58035bc1a1d0 Description: Unit Testing Library for C++ Homepage: http://www.freedesktop.org/wiki/Software/cppunit Description-md5: dca7bb14a898276dca99f38b635142d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcppunit-subunit-dev Priority: optional Section: libdevel Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: subunit Version: 0.0.18-0ubuntu7 Depends: libcppunit-subunit0 (= 0.0.18-0ubuntu7) Filename: pool/main/s/subunit/libcppunit-subunit-dev_0.0.18-0ubuntu7_amd64.deb Size: 8220 MD5sum: 4636c7ea49db451b7210bc51f69f13d3 SHA1: f9abe118d4e72596fc620dc5f2e0e688c14cc5e7 SHA256: 1f5cb862fb1c0a38fe8eb275711e2dc16724b7bbc1c6e0649720e6500951b84c Description: SubunitTestProgressListener for CPPUnit - Development headers Homepage: http://code.launchpad.net/subunit Description-md5: 08b4f72b7a686430a6e3c1c2b2dde6fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcppunit-subunit0 Priority: optional Section: devel Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: subunit Version: 0.0.18-0ubuntu7 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/s/subunit/libcppunit-subunit0_0.0.18-0ubuntu7_amd64.deb Size: 8938 MD5sum: 87f905df14d398b39a7b1051ede59042 SHA1: 43f40f8852ec148185f94353e7117ca777df8d9e SHA256: 8579be55b31ec437e4045976f6ccab223ba6cd3a6e2526131642484dd56e3827 Description: SubunitTestProgressListener for CPPUnit - C++ shared library Multi-Arch: same Homepage: http://code.launchpad.net/subunit Description-md5: 3ea9828398b961d84b4bcf0c84e16d64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrack2 Priority: optional Section: libs Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Jan Dittberner Architecture: amd64 Source: cracklib2 Version: 2.9.1-1build1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Recommends: cracklib-runtime Filename: pool/main/c/cracklib2/libcrack2_2.9.1-1build1_amd64.deb Size: 27176 MD5sum: 97c68c9947aea9399b8392f6d9641eea SHA1: b460411a28b609fb24ef93550ac14c86424547ae SHA256: 30970548552b760bbf1ab337b4d5d8d0dfda00a06c33fe2be47c35ae9660dc4c Description: pro-active password checker library Multi-Arch: same Homepage: http://sourceforge.net/projects/cracklib Description-md5: 7c7145f5450c1a0c56b8fff046f9d67e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: libcrack2-dev Priority: extra Section: libdevel Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Jan Dittberner Architecture: amd64 Source: cracklib2 Version: 2.9.1-1build1 Depends: libcrack2 (= 2.9.1-1build1) Recommends: cracklib-runtime Filename: pool/main/c/cracklib2/libcrack2-dev_2.9.1-1build1_amd64.deb Size: 20302 MD5sum: 3d9ce048a3c1c016f258b78ed9cdccb8 SHA1: e7672b116e6b3adbe7b857b4274c8d220def4648 SHA256: a295afd315e70085bfa37fe14b21b6e1745a503c956c5201ca1ad93571c21573 Description: pro-active password checker library - development files Homepage: http://sourceforge.net/projects/cracklib Description-md5: 0779bde9a363a04a44e6699096819016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrmcluster4 Priority: optional Section: libs Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcrmcluster1, libcrmcluster2, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libbz2-1.0, libc6 (>= 2.14), libcmap4 (>= 2.3.0), libcorosync-common4 (>= 2.3.0), libcpg4 (>= 2.3.0), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.16.0), libplumb2 (>= 1.0.11+hg2754), libqb0, libquorum5 (>= 2.3.0), libstonithd2 (>= 1.1.10+git20130802), libxml2 (>= 2.7.4) Conflicts: libcrmcluster1, libcrmcluster2, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libcrmcluster4_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 31304 MD5sum: 64ae92e5b2b3e2e339c77a44c04790bc SHA1: ce11c1c2ed2d1d439ca0551e4fc8862a8242ae5a SHA256: f9505a11266841911084d8eb5272e1b46cc30e496e45e33cfd293e6d744c466b Description: Pacemaker libraries - CRM Homepage: http://clusterlabs.org/ Description-md5: a892ca8a76afa79809cd4a0148b7b15b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcrmcluster4-dev Priority: optional Section: libdevel Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcrmcluster1-dev, libcrmcluster2-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libcrmcluster4 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libcrmcluster1-dev, libcrmcluster2-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libcrmcluster4-dev_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 50250 MD5sum: 3d141cc92b84b63ea4d03eca6bcdf4a5 SHA1: 5e52fd5398d1256a9dd72c3789f2d98bc3d6c25f SHA256: 45adc8a089f1db5b415d1944a8043aea86709e4ae191947a0c23a2572503d91d Description: Development file for pacemaker's crm library Homepage: http://clusterlabs.org/ Description-md5: 8e8b9f56e872e331ed3643e7092c0d20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrmcommon3 Priority: optional Section: libs Installed-Size: 305 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcrmcommon2, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libbz2-1.0, libc6 (>= 2.17), libglib2.0-0 (>= 2.28.0), libgnutls26 (>= 2.12.17-0), libqb0, libuuid1 (>= 2.16), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25) Conflicts: libcrmcommon2, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libcrmcommon3_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 90960 MD5sum: 8f71470e05d4d9ce81e67520a8597d42 SHA1: 35fa4afcf9deb1bb9c1235d6e124217127bc65d2 SHA256: d92f68fbe10f857c4314b2ab5192196fdf8ff9c56426885cbf14490cb8a3bcc7 Description: Pacemaker libraries - common CRM Homepage: http://clusterlabs.org/ Description-md5: f0a505f556eae75644cdd2bc62447550 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcrmcommon3-dev Priority: optional Section: libdevel Installed-Size: 599 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcrmcommon2-dev, pacemaker-dev (<< 1.1.8+git20121010-1) Depends: libcrmcommon3 (= 1.1.10+git20130802-1ubuntu2), cluster-glue-dev (>= 1.0.11+hg2754) Conflicts: libcrmcommon2-dev, pacemaker-dev (<< 1.1.8+git20121010-1) Filename: pool/main/p/pacemaker/libcrmcommon3-dev_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 108250 MD5sum: 33ff6be2fbd7c018522bf8de14a9b1eb SHA1: 2a5b8c7b6dd4c19ccd55e09b3b150d8ad2a2f0ae SHA256: 410af38c8fa80670cd8bd9d3c3b55b877b4186129981ba6212f7bf1afe958260 Description: Development file for pacemaker's common library Homepage: http://clusterlabs.org/ Description-md5: 58679e4fb14f5fff47a5f79805af3682 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrmservice1 Priority: optional Section: libs Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Depends: libc6 (>= 2.8), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libqb0 Filename: pool/main/p/pacemaker/libcrmservice1_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 17320 MD5sum: 89ec015520c5d9620a8c37e1a94a35eb SHA1: a803a729285b7c765b3d88bff7e85c55d338eb81 SHA256: 5c36a47c070a55ff91bf5730ace1918490ca9786e7286b43934b005653114a38 Description: Pacemaker libraries - crmservice Homepage: http://clusterlabs.org/ Description-md5: c43d70cca679c3f725d486ebcc426fb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcrmservice1-dev Priority: optional Section: libdevel Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Depends: libcrmservice1 (= 1.1.10+git20130802-1ubuntu2) Filename: pool/main/p/pacemaker/libcrmservice1-dev_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 18784 MD5sum: f1c8bc0366302d4997096338339cd6a9 SHA1: 2bdc7623f78a4e4bc4a8833afd97e8829ba360c7 SHA256: 7e95fd1774c216c9f3dfd40995f75e56b405532e669356533b80a79247c3da68 Description: Development file for pacemaker's crmservice library Homepage: http://clusterlabs.org/ Description-md5: 0833331082c9a7f7951b058c9fc388e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcroco3 Priority: optional Section: libs Installed-Size: 339 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libcroco Version: 0.6.8-2ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.16.0), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/libc/libcroco/libcroco3_0.6.8-2ubuntu1_amd64.deb Size: 82392 MD5sum: 4b33744a9f017c706d68621e7132f6b9 SHA1: 7bc17c18943444b119bbb8f6bc867e29c252391f SHA256: af60a4a2db4744e4c16413af84bb237a8afb0e1fa299c9b56abdfded2213de0c Description: Cascading Style Sheet (CSS) parsing and manipulation toolkit Multi-Arch: same Description-md5: f77093d47da59d05dfec832709bee0eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcroco3-dev Priority: optional Section: libdevel Installed-Size: 666 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libcroco Version: 0.6.8-2ubuntu1 Depends: libcroco3 (= 0.6.8-2ubuntu1), libxml2-dev (>= 2.4.23), libglib2.0-dev (>= 2.0) Filename: pool/main/libc/libcroco/libcroco3-dev_0.6.8-2ubuntu1_amd64.deb Size: 99694 MD5sum: 82f1f7140a4a441f280ff0e2f7535fb0 SHA1: 1bdf750251e1de9a5d37c833beaab691859e3555 SHA256: 7c2f304e68c23f008875e3fb6a2b2d6ee992a6ba99e16b4ef899d4a4ae04df2b Description: Cascading Style Sheet (CSS) parsing and manipulation toolkit Multi-Arch: same Description-md5: db6605ebc061de99b3182ccf1ad077b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrypt-openssl-bignum-perl Priority: optional Section: perl Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.04-4build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5), libssl1.0.0 (>= 1.0.0) Filename: pool/main/libc/libcrypt-openssl-bignum-perl/libcrypt-openssl-bignum-perl_0.04-4build1_amd64.deb Size: 23494 MD5sum: df01b1f2d23f0f4b9e659af2f8934298 SHA1: f24c4ccc1db7ff720e5b90076ac2c7a166609908 SHA256: 808af3bf4587cf7f0444aeac3ba5f56029c95222b043720504efe695978f3573 Description: Perl module to access OpenSSL multiprecision integer arithmetic libraries Homepage: http://perl-openssl.sourceforge.net/ Description-md5: 6dbdf541a3152b7a4d7fd11123451e3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcrypt-openssl-random-perl Priority: optional Section: perl Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.04-1build6 Depends: libc6 (>= 2.2.5), libssl1.0.0 (>= 1.0.0), perl (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libc/libcrypt-openssl-random-perl/libcrypt-openssl-random-perl_0.04-1build6_amd64.deb Size: 11274 MD5sum: c94aff73c9d14767c3c2818bf5794e6a SHA1: f61bbfd50e08902d210d35d147c793fd384f92a1 SHA256: 493ba948abd2d7331709d26a0a4a9b124511dacecaa30be3aa7c5bc6ac4b54b2 Description: Access to the OpenSSL pseudo-random number generator Homepage: http://perl-openssl.sourceforge.net/ Description-md5: 92be18be42f2aeaec53a59896805704e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrypt-openssl-rsa-perl Priority: optional Section: perl Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.28-1build1 Depends: libc6 (>= 2.2.5), libssl1.0.0 (>= 1.0.0), perl (>= 5.18.1-4), perlapi-5.18.1, libcrypt-openssl-bignum-perl Filename: pool/main/libc/libcrypt-openssl-rsa-perl/libcrypt-openssl-rsa-perl_0.28-1build1_amd64.deb Size: 25250 MD5sum: 2073af5012d0f36ac8a438345bf4705f SHA1: 2f73d18ba3aff02ca09f5df2b265dd2754b9cabe SHA256: c291f3f1bfe87744812f0eeb78bb797061e2e858b0258bed5e6320509a1859d7 Description: module for RSA encryption using OpenSSL Homepage: http://perl-openssl.sourceforge.net/ Description-md5: 67bab379e746ed51e6818294689a0db5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcrypt-passwdmd5-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Bart Martens Architecture: all Version: 1.3-10 Depends: perl Filename: pool/main/libc/libcrypt-passwdmd5-perl/libcrypt-passwdmd5-perl_1.3-10_all.deb Size: 10384 MD5sum: 9e6f58659b4eaf111a13e3fd398e4e86 SHA1: ee3de9efb004651f0ae891af27346c9538bd93ee SHA256: ce19edadf5094edc374cad3d65eb65814c333abcb6e9e620ba527c0d671c9ee6 Description: interoperable MD5-based crypt() for perl Homepage: http://search.cpan.org/dist/Crypt-PasswdMD5/ Description-md5: 4c8749ca27c33021eee507bb6519d7e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcryptsetup-dev Priority: optional Section: libdevel Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cryptsetup Team Architecture: amd64 Source: cryptsetup Version: 2:1.6.1-1ubuntu1 Depends: libcryptsetup4 (= 2:1.6.1-1ubuntu1) Filename: pool/main/c/cryptsetup/libcryptsetup-dev_1.6.1-1ubuntu1_amd64.deb Size: 14810 MD5sum: bbbad3e3b05af8ddf4682e04db11b7e2 SHA1: 1b641418ca8659cdae1877cd3afb5e552cccac64 SHA256: 048ff7d276543002aff0784a51cb932e0c890aed3c41f029962bb308637b85ec Description: disk encryption support - development files Homepage: http://code.google.com/p/cryptsetup/ Description-md5: f9f5cbe91fe7a25a22798d2891748370 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcryptsetup4 Priority: optional Section: libs Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cryptsetup Team Architecture: amd64 Source: cryptsetup Version: 2:1.6.1-1ubuntu1 Depends: libc6 (>= 2.15), libdevmapper1.02.1 (>= 2:1.02.74), libgcrypt11 (>= 1.4.6-3), libuuid1 (>= 2.16), libgpg-error0 (>= 1.10-0.1) Filename: pool/main/c/cryptsetup/libcryptsetup4_1.6.1-1ubuntu1_amd64.deb Size: 77020 MD5sum: 989de0f231fdea8da9fbb9b8e8945940 SHA1: a8e2f635fc0caee0d90d67b0f0a0bd931eb7c48d SHA256: 6e1c07e540050834b954748a4435daa139cdc93232257ad24698cec0466277d2 Description: disk encryption support - shared library Homepage: http://code.google.com/p/cryptsetup/ Description-md5: 4d51c661b0adee027561376db6e58853 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libcsparse3.1.2 Priority: optional Section: libs Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libcsparse3.1.2_4.2.1-3ubuntu1_amd64.deb Size: 25250 MD5sum: c92b152140ca54109b0239ad9bf43a6d SHA1: 3830af85eeed3c6ef03932365a6da2ac6496465c SHA256: b795c82ed3f581584bcb899d6bc7a12d5b952d2a04d05d8eb9d6c12bdf9d9819 Description: concise sparse matrix library Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 6530f377281485af9bf1b1318db9dd6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcss-minifier-xs-perl Priority: optional Section: perl Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.09-1 Depends: perl (>= 5.18.1-4build1), perlapi-5.18.1, libc6 (>= 2.14) Filename: pool/main/libc/libcss-minifier-xs-perl/libcss-minifier-xs-perl_0.09-1_amd64.deb Size: 14740 MD5sum: 2c330616de673d9340498760e8cd9118 SHA1: 261511cf6ba376bd1890ee5718cec389febdbeac SHA256: b564786bf30e102ea350785159a2310301c4edb7ef232504f38dfe413b50382c Description: XS based CSS minifier Homepage: https://metacpan.org/release/CSS-Minifier-XS/ Description-md5: e509baab9bc260a0df11d72e6e9f47f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libct4 Priority: optional Section: libs Installed-Size: 387 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: freetds Version: 0.91-5 Depends: libc6 (>= 2.17), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), freetds-common Pre-Depends: multiarch-support Filename: pool/main/f/freetds/libct4_0.91-5_amd64.deb Size: 165904 MD5sum: d1727c006f4ba7c729d100d2075a71fe SHA1: f57325f652c0e9a9a8bef6592058a4e2e43b7708 SHA256: 9dcf640438c594beb01f6a065320b0544a94015f5e636ab624f69cea11397e99 Description: libraries for connecting to MS SQL and Sybase SQL servers Multi-Arch: same Homepage: http://www.freetds.org/ Description-md5: 88bdfc8ca47c9a060f885576c2df10f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcunit1 Priority: optional Section: libs Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: amd64 Source: cunit Version: 2.1-2.dfsg-1 Depends: libc6 (>= 2.14) Filename: pool/main/c/cunit/libcunit1_2.1-2.dfsg-1_amd64.deb Size: 28734 MD5sum: 78d9d3d40887ba7d6bf11a6667be3be4 SHA1: c54bd9f0ac69aab6fff3defe82bae1b34e8273d2 SHA256: a83e01886cb41cd177a8f9073edb78bbc8a79f861f4a9c9598f525c417b245d2 Description: Unit Testing Library for C Homepage: http://cunit.sourceforge.net/ Description-md5: d0b137bee12b1343ccbd0196c105fe5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcunit1-dev Priority: optional Section: libdevel Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: amd64 Source: cunit Version: 2.1-2.dfsg-1 Depends: libcunit1 (= 2.1-2.dfsg-1) Suggests: libcunit1-doc (= 2.1-2.dfsg-1) Filename: pool/main/c/cunit/libcunit1-dev_2.1-2.dfsg-1_amd64.deb Size: 63222 MD5sum: 03a6707c42931485c29ec16a514d2d22 SHA1: d0b3dfc0955320d25f3bc313e952706f143b6d0d SHA256: 26aa9efebb63d5d7fa15dc0128a3e778d5a60d2eb48629e437c6e00f8651041f Description: Unit Testing Library for C -- development files Homepage: http://cunit.sourceforge.net/ Description-md5: dfbf5c3edeed16e4dd326140c16cdd1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcunit1-doc Priority: optional Section: doc Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: all Source: cunit Version: 2.1-2.dfsg-1 Filename: pool/main/c/cunit/libcunit1-doc_2.1-2.dfsg-1_all.deb Size: 134210 MD5sum: 7e44b435a6e54767aeb1246fe9635c87 SHA1: 8cbfb946c0d812ddc9b9f806407645067f8351c1 SHA256: e2a5f4b4d5a0e4b170b3594267cb404017f06c0df9234f3c3b869f4928b0355d Description: Unit Testing Library for C -- documentation Homepage: http://cunit.sourceforge.net/ Description-md5: 2cbdb5eb40e8588e88b3a0064f056d48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcunit1-ncurses Priority: optional Section: libs Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: amd64 Source: cunit Version: 2.1-2.dfsg-1 Depends: libc6 (>= 2.14), libncurses5 (>= 5.5-5~), libtinfo5 Conflicts: libcunit1 Filename: pool/main/c/cunit/libcunit1-ncurses_2.1-2.dfsg-1_amd64.deb Size: 35852 MD5sum: 4b961ca9a9428bc6a637034d59869c66 SHA1: eb6b79c0544b424288f0fbe115f053bb7c7dc0c8 SHA256: 083ae4a89fce1f0e4c4717a9d19b6b2764c2a92e0eacdd13e6b700c53ca24d39 Description: Unit Testing Library for C (ncurses) Homepage: http://cunit.sourceforge.net/ Description-md5: f2d60ed2cd7ddafcae6f521b5841b289 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcunit1-ncurses-dev Priority: optional Section: libdevel Installed-Size: 318 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: amd64 Source: cunit Version: 2.1-2.dfsg-1 Depends: libcunit1-ncurses (= 2.1-2.dfsg-1) Suggests: libcunit1-doc (= 2.1-2.dfsg-1) Conflicts: libcunit1-dev Filename: pool/main/c/cunit/libcunit1-ncurses-dev_2.1-2.dfsg-1_amd64.deb Size: 68090 MD5sum: 9ea2f3916a5728da5b2b5a932eb0459a SHA1: d255852542fa657459635dab97db63275bea8204 SHA256: bc159f0365e19d3f58ca944722f8b9968fdb3d454eb744b0d990ab02dda96af4 Description: Unit Testing Library for C (ncurses) -- development files Homepage: http://cunit.sourceforge.net/ Description-md5: 74ec0b41b188358436cbd9609f517c77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcups2 Priority: optional Section: libs Installed-Size: 615 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.14), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Suggests: cups-common Breaks: cups (<< 1.5.0) Filename: pool/main/c/cups/libcups2_1.7.2-0ubuntu1_amd64.deb Size: 178628 MD5sum: 94b80ce7ca3c409fd0ed01f9acb5e0b6 SHA1: 9bd3d125cf35413ff8eee32bccd0d082679e4189 SHA256: 18c7da6c52dc2c409260918e47c71efeeb140f8d97dece9c54dff97641437df2 Description: Common UNIX Printing System(tm) - Core library Multi-Arch: same Homepage: http://www.cups.org Description-md5: cce9961cb86712146cb19e1b4636f79d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcups2-dev Priority: optional Section: libdevel Installed-Size: 1115 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libcups2 (= 1.7.2-0ubuntu1), libgnutls-dev, libkrb5-dev Filename: pool/main/c/cups/libcups2-dev_1.7.2-0ubuntu1_amd64.deb Size: 216838 MD5sum: 48e1d6cfbd3d4d02a223a76ffb302897 SHA1: 7f57afa7382b4d2db09869a755da5e51c2fbc625 SHA256: 7cd8d59aa2e7485284d04cd36aaa2050eca2667438526c6fca007a597b51eb1e Description: Common UNIX Printing System(tm) - Development files CUPS library Homepage: http://www.cups.org Description-md5: bf3f385e98251c2563c3f58554d2adce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcupscgi1 Priority: optional Section: libs Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libc6 (>= 2.14), libcups2 (= 1.7.2-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/c/cups/libcupscgi1_1.7.2-0ubuntu1_amd64.deb Size: 26284 MD5sum: bd8e25f46ceed4d3f36fe3c062bb932f SHA1: 601824536be30ae01fddf0ddf7b421d9d425a95a SHA256: 7e173f794bcfae442d63a6697b8c450fda2e24ddb34519aa14a7e169d78b1a19 Description: Common UNIX Printing System(tm) - CGI library Multi-Arch: same Homepage: http://www.cups.org Description-md5: 3660b0ffb79cde60a9580ea571ecfbcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcupscgi1-dev Priority: optional Section: libdevel Installed-Size: 242 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libcupscgi1 (= 1.7.2-0ubuntu1), libcups2-dev (= 1.7.2-0ubuntu1) Filename: pool/main/c/cups/libcupscgi1-dev_1.7.2-0ubuntu1_amd64.deb Size: 29022 MD5sum: 576053322e843d7de4bdbf49ea72ebba SHA1: 47b769b9cd8e3138f10a36c485bb41d0bdd86de3 SHA256: fee16cf7e2459ecb553e9d6d6c7913f6fc64994806c6302506844b5fbdacacc8 Description: Common UNIX Printing System(tm) - Development files for CGI library Homepage: http://www.cups.org Description-md5: 433b937ac75daeec3873b3445bb48090 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcupsfilters-dev Priority: optional Section: libdevel Installed-Size: 333 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups-filters Version: 1.0.52-0ubuntu1 Depends: libcupsfilters1 (= 1.0.52-0ubuntu1) Filename: pool/main/c/cups-filters/libcupsfilters-dev_1.0.52-0ubuntu1_amd64.deb Size: 62654 MD5sum: f210f41db2bcc20d1f6ac02faf2c5c09 SHA1: c1ad2275f278a68c73e86390e0c3a68fc3f2c574 SHA256: aabb3b17950e2e633c0ac2f936a3f1b5f938a4a326257f8780a24463a4ac9647 Description: OpenPrinting CUPS Filters - Development files for the library Homepage: http://www.openprinting.org/ Description-md5: b9e86d6395fb70bb943d64a4a7cfaa29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcupsfilters1 Priority: optional Section: libs Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups-filters Version: 1.0.52-0ubuntu1 Depends: libc6 (>= 2.14), libcups2 (>= 1.7.0), libdbus-1-3 (>= 1.0.2), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3) Pre-Depends: multiarch-support Filename: pool/main/c/cups-filters/libcupsfilters1_1.0.52-0ubuntu1_amd64.deb Size: 74274 MD5sum: 911c2a1ecd7ec3b8c1b96345ed787461 SHA1: ca30071629ccfca95365f04a482957a5d2343d9c SHA256: 1865c81da57758e9602bc71072fe311ec89a5338bb95dcb5dd5d39ca825e1bd3 Description: OpenPrinting CUPS Filters - Shared library Multi-Arch: same Homepage: http://www.openprinting.org/ Description-md5: b891bc072c10210e109ee7d9699a32a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcupsimage2 Priority: optional Section: libs Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libc6 (>= 2.14), libcups2 (= 1.7.2-0ubuntu1), libcupsfilters1 (>= 1.0~b1) Pre-Depends: multiarch-support Filename: pool/main/c/cups/libcupsimage2_1.7.2-0ubuntu1_amd64.deb Size: 15294 MD5sum: c2f2f77efb917e30c720cef13681e851 SHA1: 3f3a018dbcb75e474a054237ffe1289908d3560b SHA256: 7063001bcb2745b370340424bc2c010a06145cae05602fd68a6d6350887e88e1 Description: Common UNIX Printing System(tm) - Raster image library Multi-Arch: same Homepage: http://www.cups.org Description-md5: f4451fb5498322724719d7d3a8635bf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcupsimage2-dev Priority: optional Section: libdevel Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libcupsimage2 (= 1.7.2-0ubuntu1), libcups2-dev (= 1.7.2-0ubuntu1), libcupsfilters-dev (>= 1.0~b1), libpng-dev, libtiff-dev, libjpeg8-dev | libjpeg-dev, zlib1g-dev Filename: pool/main/c/cups/libcupsimage2-dev_1.7.2-0ubuntu1_amd64.deb Size: 18204 MD5sum: 99acb6bed592456b4c8a1aba302b12f1 SHA1: 99a2ccb09cfa49ad05b0b32e63eaee55082348df SHA256: d1953c42471998ff2f2d2a0cf4d4a646c3baaa3e01d2f455f45ed474dd213bf1 Description: Common UNIX Printing System(tm) - Development files CUPS image library Homepage: http://www.cups.org Description-md5: 419c750b3360d0933e0bbc9e17913244 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcupsmime1 Priority: optional Section: libs Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libc6 (>= 2.14), libcups2 (= 1.7.2-0ubuntu1) Pre-Depends: multiarch-support Breaks: cups (<< 1.5.0) Filename: pool/main/c/cups/libcupsmime1_1.7.2-0ubuntu1_amd64.deb Size: 12126 MD5sum: de306f54a29b886e792ff7fcfe26beb5 SHA1: 8960b0a10bd2a791ef189e9d4c32b78d33a41551 SHA256: 05c78be4fc9e552655824f21d8503afdfe52109b66adc289a9e34707cc5945bc Description: Common UNIX Printing System(tm) - MIME library Multi-Arch: same Homepage: http://www.cups.org Description-md5: 3c738d1cd62835670ace55e8d83b4f80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcupsmime1-dev Priority: optional Section: libdevel Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libcupsmime1 (= 1.7.2-0ubuntu1), libcups2-dev (= 1.7.2-0ubuntu1) Filename: pool/main/c/cups/libcupsmime1-dev_1.7.2-0ubuntu1_amd64.deb Size: 12900 MD5sum: da048e798db0fe3801b8b8ae1d731709 SHA1: 719c361d0c56be6dbfae485d19061230e352817b SHA256: 92a8515479fb6f98407e1f6dbd3ecef0f919cc118c793fb9be7f768587842218 Description: Common UNIX Printing System(tm) - Development files MIME library Homepage: http://www.cups.org Description-md5: ee515191b340413216668249b8b6097b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcupsppdc1 Priority: optional Section: libs Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libc6 (>= 2.14), libcups2 (= 1.7.2-0ubuntu1), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/c/cups/libcupsppdc1_1.7.2-0ubuntu1_amd64.deb Size: 43946 MD5sum: 816e7b64dc5ed789863f7297973ad8da SHA1: 52027a3349d197a6097f49d9ffc6cb14380e8373 SHA256: b1e4ef0370ea3ac769c5b4ff1be900d0b8ea37721a2c1a24569ec12f6eb9c6c7 Description: Common UNIX Printing System(tm) - PPD manipulation library Multi-Arch: same Homepage: http://www.cups.org Description-md5: a2ce16897499bbac7df75d4d297b1713 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcupsppdc1-dev Priority: optional Section: libdevel Installed-Size: 411 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups Version: 1.7.2-0ubuntu1 Depends: libcupsppdc1 (= 1.7.2-0ubuntu1), libcups2-dev (= 1.7.2-0ubuntu1) Filename: pool/main/c/cups/libcupsppdc1-dev_1.7.2-0ubuntu1_amd64.deb Size: 49540 MD5sum: cdfc08648b871972b18c53092e6502a7 SHA1: 854770dcba34c5ad2e542008aa537652c4741f2c SHA256: a0fa2aaf05eda102bd8cbe65d6a2a0e2b48f9958983cbc5a6031a81e4697fbf5 Description: Common UNIX Printing System(tm) - Development files PPD library Homepage: http://www.cups.org Description-md5: f1c111d7276de209cb50ebccbc551f69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl3 Priority: optional Section: libs Installed-Size: 545 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Source: curl Version: 7.35.0-1ubuntu2 Depends: libc6 (>= 2.17), libgssapi-krb5-2 (>= 1.10+dfsg~), libidn11 (>= 1.13), libldap-2.4-2 (>= 2.4.7), librtmp0 (>= 2.3), libssl1.0.0 (>= 1.0.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: ca-certificates Filename: pool/main/c/curl/libcurl3_7.35.0-1ubuntu2_amd64.deb Size: 171830 MD5sum: 9421fe8ae8ca0ab3ee83443c1559b5b5 SHA1: 07222c20876554f4f7f5ec591cce97d87026cb06 SHA256: a497b271642d98af2f22b5e54fe8c704db95f88806168b27855ce75091636a87 Description: easy-to-use client-side URL transfer library (OpenSSL flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: f1c7f18aba2d8ab7a7e32acea1dc61e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntu-gnome-desktop Package: libcurl3-dbg Priority: extra Section: libdevel Installed-Size: 3574 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Source: curl Version: 7.35.0-1ubuntu2 Provides: libcurl4-dbg Depends: libcurl3 (= 7.35.0-1ubuntu2) | libcurl3-gnutls (= 7.35.0-1ubuntu2) | libcurl3-nss (= 7.35.0-1ubuntu2) Suggests: libc-dbg Filename: pool/main/c/curl/libcurl3-dbg_7.35.0-1ubuntu2_amd64.deb Size: 3200404 MD5sum: dc01755c4994982e09e3a0dbe6a2a1af SHA1: 97a3f3f6d276fef464e9eb6a5387a2b176ff45f8 SHA256: 48bd43d973bab03300ee78ed4240231fbdd0eeae79a3350d50a838f7d7065a01 Description: debugging symbols for libcurl (OpenSSL, GnuTLS and NSS flavours) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: fb54017039bcf3b29ee313d6fc59d8cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl3-gnutls Priority: standard Section: libs Installed-Size: 521 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Source: curl Version: 7.35.0-1ubuntu2 Depends: libc6 (>= 2.17), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), libidn11 (>= 1.13), libldap-2.4-2 (>= 2.4.7), librtmp0 (>= 2.3), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: ca-certificates Filename: pool/main/c/curl/libcurl3-gnutls_7.35.0-1ubuntu2_amd64.deb Size: 164540 MD5sum: 24f23f83a331ac4dfb4fda76f1045d45 SHA1: 34572841bf420f8bc4d82414c49691fa6fca04a6 SHA256: 210bc9e45e845434ec082b0f014a2763bc3c6564c7e4b66c950ffed95dc80cea Description: easy-to-use client-side URL transfer library (GnuTLS flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: 785baf29d91f9f781677a7f569940052 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libcurl3-nss Priority: optional Section: libs Installed-Size: 549 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Source: curl Version: 7.35.0-1ubuntu2 Depends: libc6 (>= 2.17), libgssapi-krb5-2 (>= 1.10+dfsg~), libidn11 (>= 1.13), libldap-2.4-2 (>= 2.4.7), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.14), librtmp0 (>= 2.3), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: ca-certificates Filename: pool/main/c/curl/libcurl3-nss_7.35.0-1ubuntu2_amd64.deb Size: 175336 MD5sum: 30e0e888ecaad106da12300b81a2fd00 SHA1: d106f5e157e4a07bbf4a97a5d2edebd872cff2cb SHA256: 5e4411cf7ed13e10d82f81b2bf51fe5ab260728826caa49e23aa2995400991c0 Description: easy-to-use client-side URL transfer library (NSS flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: 459d2b4fbb16cf9975276e1d24a7ffe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl4-doc Priority: optional Section: doc Installed-Size: 1922 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: all Source: curl Version: 7.35.0-1ubuntu2 Replaces: libcurl4-gnutls-dev (<< 7.30.0-2), libcurl4-nss-dev (<< 7.30.0-2), libcurl4-openssl-dev (<< 7.30.0-2) Breaks: libcurl4-gnutls-dev (<< 7.30.0-2), libcurl4-nss-dev (<< 7.30.0-2), libcurl4-openssl-dev (<< 7.30.0-2) Filename: pool/main/c/curl/libcurl4-doc_7.35.0-1ubuntu2_all.deb Size: 927522 MD5sum: 1599c1a82c5a632c0427c38c56a3a919 SHA1: 4dd6a4a2a78b95001faebf971ba0a8b97c9467c1 SHA256: 1da6543e45e091b473e0d05ab7bff3d60acf308ccad9215c8fa88a5a8053f717 Description: documentation for libcurl Homepage: http://curl.haxx.se Description-md5: 6462959fec3647baef16ff31a5f39d94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl4-gnutls-dev Priority: optional Section: libdevel Installed-Size: 1163 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Source: curl Version: 7.35.0-1ubuntu2 Provides: libcurl-dev, libcurl-ssl-dev, libcurl3-gnutls-dev, libcurl4-dev Depends: libcurl3-gnutls (= 7.35.0-1ubuntu2), libc6-dev | libc-dev, libgnutls-dev, libidn11-dev, libkrb5-dev, libldap2-dev, librtmp-dev, zlib1g-dev Suggests: libcurl4-doc, libcurl3-dbg Conflicts: libcurl4-nss-dev, libcurl4-openssl-dev Filename: pool/main/c/curl/libcurl4-gnutls-dev_7.35.0-1ubuntu2_amd64.deb Size: 235164 MD5sum: 2f5ab86bd7560479bf73bf6a4cd67064 SHA1: 4de56b370ff530b9c4948004a0af05e4a4f72021 SHA256: d79a1b6df92201ad833db0c22fde71918f759c6c99a544979bea2b9033ea73aa Description: development files and documentation for libcurl (GnuTLS flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: 934268033e9ea26fd8907507a9f641bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl4-nss-dev Priority: optional Section: libdevel Installed-Size: 1205 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Source: curl Version: 7.35.0-1ubuntu2 Provides: libcurl-dev, libcurl-ssl-dev, libcurl3-nss-dev, libcurl4-dev Depends: libcurl3-nss (= 7.35.0-1ubuntu2), libc6-dev | libc-dev, libidn11-dev, libkrb5-dev, libldap2-dev, libnss3-dev, librtmp-dev, zlib1g-dev Suggests: libcurl4-doc, libcurl3-dbg Conflicts: libcurl4-gnutls-dev, libcurl4-openssl-dev Filename: pool/main/c/curl/libcurl4-nss-dev_7.35.0-1ubuntu2_amd64.deb Size: 247346 MD5sum: 542524569f31a15324dc3dd379ec69aa SHA1: aeacd32e3f8b06d4d4705891c50e8983658752d6 SHA256: 5dccc3c22d3e087de2b2c4b84693e0602efed7f651815f84a39019bc8c78c21a Description: development files and documentation for libcurl (NSS flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: 03ed99f13850346b8ac59c56c3e4521f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl4-openssl-dev Priority: optional Section: libdevel Installed-Size: 1197 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Source: curl Version: 7.35.0-1ubuntu2 Provides: libcurl-dev, libcurl-ssl-dev, libcurl3-dev, libcurl3-openssl-dev, libcurl4-dev Depends: libcurl3 (= 7.35.0-1ubuntu2), libc6-dev | libc-dev, libidn11-dev, libkrb5-dev, libldap2-dev, librtmp-dev, libssl-dev, zlib1g-dev Suggests: libcurl4-doc, libcurl3-dbg Conflicts: libcurl4-gnutls-dev, libcurl4-nss-dev Filename: pool/main/c/curl/libcurl4-openssl-dev_7.35.0-1ubuntu2_amd64.deb Size: 243100 MD5sum: 03e9530effce3a09e0595345060fec0f SHA1: a6f37a0764449e6c7ea29cc6f7baf4a948d71c60 SHA256: f5df5de5464f2cb327a4c4655185357b16afbb7b01d35f67070f30f50a572ac1 Description: development files and documentation for libcurl (OpenSSL flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: 9ef3e0d3a9a6f50f79b0deaff858c410 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcwidget-dev Priority: extra Section: libdevel Installed-Size: 2913 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: amd64 Source: cwidget Version: 0.5.16-3.5ubuntu1 Depends: libcwidget3 (= 0.5.16-3.5ubuntu1), libsigc++-2.0-dev, libncursesw5-dev, pkg-config Suggests: libcwidget-doc Filename: pool/main/c/cwidget/libcwidget-dev_0.5.16-3.5ubuntu1_amd64.deb Size: 396438 MD5sum: dd14c4565992bef728576f3fd5f11179 SHA1: e6566e128d6122671957f92635a4507ec2caa444 SHA256: 29d942870fbec160746dfb3df67f53dd1f2e5a051ba47585e8a628aa290a35a6 Description: high-level terminal interface library for C++ (development files) Homepage: http://cwidget.alioth.debian.org Description-md5: d5195ade0a17480093dcedac51daaa4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcwidget-doc Priority: extra Section: libdevel Installed-Size: 7074 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: all Source: cwidget Version: 0.5.16-3.5ubuntu1 Recommends: iceweasel | www-browser Suggests: libcwidget-dev Filename: pool/main/c/cwidget/libcwidget-doc_0.5.16-3.5ubuntu1_all.deb Size: 334528 MD5sum: 900bf2747f37dd9622e1ba072fa119c7 SHA1: 035623eb08c93403e8bf9112f67f3d96e55cc66f SHA256: 89ef78c2d1f7d3a68db7ba2661ecafc063a5d08cdecae4cdd1c000b3a12cf0ea Description: high-level terminal interface library for C++ (documentation) Homepage: http://cwidget.alioth.debian.org Description-md5: c6b9ff80fc177d60deb9717229781d19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcwidget3 Priority: optional Section: libs Installed-Size: 1088 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: amd64 Source: cwidget Version: 0.5.16-3.5ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libncursesw5 (>= 5.6+20070908), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6), libtinfo5 Suggests: libcwidget-dev Filename: pool/main/c/cwidget/libcwidget3_0.5.16-3.5ubuntu1_amd64.deb Size: 306852 MD5sum: 6a7798a963bf07a0f84d79ed57629d0a SHA1: 5653b16229c4eb1d5632bb8c7c0ae16254670af6 SHA256: 0233c34860630f80153e88eb3d981940f416d6a45799d9fe09e5cff2dce0d48b Description: high-level terminal interface library for C++ (runtime files) Homepage: http://cwidget.alioth.debian.org Description-md5: 25817f3f038c1f33b9d63aafe32c6d75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: libcwidget3-dbg Priority: extra Section: libdevel Installed-Size: 10000 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: amd64 Source: cwidget Version: 0.5.16-3.5ubuntu1 Depends: libcwidget3 (= 0.5.16-3.5ubuntu1) Suggests: libcwidget-dev Filename: pool/main/c/cwidget/libcwidget3-dbg_0.5.16-3.5ubuntu1_amd64.deb Size: 1880592 MD5sum: ab4dda242d7768a12d05e9b0d33f481f SHA1: cf1b5e2f2a4728ad7b72471a90a5790f920a04cd SHA256: b63431a1540da76f951871a661876d31a4418d6de817e5b2a71574e6b22f6234 Description: high-level terminal interface library for C++ (debugging files) Homepage: http://cwidget.alioth.debian.org Description-md5: 94c149131ad8df1cd3a2166f75cbc127 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcxsparse3.1.2 Priority: optional Section: libs Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libcxsparse3.1.2_4.2.1-3ubuntu1_amd64.deb Size: 61456 MD5sum: d6336b36f87de1f2cc7d9b4fcb31366f SHA1: f3996ceea414d5ac0d0b02949075709d22ba8a98 SHA256: a67c91a886f6e94c60274c436160ea6386a8b619d97367e0b165f20596af4602 Description: concise sparse matrix library (complex, int and long int support) Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: f6d7a859e2e3907c881edcfe15aad57a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdaemon-dev Priority: optional Section: devel Installed-Size: 620 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: libdaemon Version: 0.14-2ubuntu1 Depends: libdaemon0 (= 0.14-2ubuntu1) Filename: pool/main/libd/libdaemon/libdaemon-dev_0.14-2ubuntu1_amd64.deb Size: 107600 MD5sum: 36306f32b6e6368c2f0f58cb69542fa6 SHA1: 1fac87764d1c19a1a8f93bb0e18453a1170fee0e SHA256: b8c69938c7a23221ddc25710933b4cfa923905ed7dd454ed69cbdd0d32f682ee Description: lightweight C library for daemons - development files Homepage: http://0pointer.de/lennart/projects/libdaemon/ Description-md5: 2c3ce17b6be7fbe6fb3a110c27a94bcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdaemon0 Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: libdaemon Version: 0.14-2ubuntu1 Depends: libc6 (>= 2.15) Filename: pool/main/libd/libdaemon/libdaemon0_0.14-2ubuntu1_amd64.deb Size: 16404 MD5sum: 9d9c021472bd29fc3ddfac00debc24a2 SHA1: 4da87c01a1ed3e60b81a4143a163fc78dde5d7fa SHA256: 82be8f6f090a034af4a02f5d5a6dd1013176c7b01d45ec9cd40104e1800b8a33 Description: lightweight C library for daemons - runtime library Homepage: http://0pointer.de/lennart/projects/libdaemon/ Description-md5: 60b193432f6e7d8b0987f77d36bc9084 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdaemon0-dbg Priority: extra Section: libdevel Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: libdaemon Version: 0.14-2ubuntu1 Depends: libdaemon0 (= 0.14-2ubuntu1) Filename: pool/main/libd/libdaemon/libdaemon0-dbg_0.14-2ubuntu1_amd64.deb Size: 22822 MD5sum: eb1a76dcc4aa8f3c6023d1b7f4cf4d0a SHA1: b1f4c41e06cf394481b82df72b52721887a826ed SHA256: 8e56220da8d725a863271761a8824b2962cc738dc727dd694e68b1960b19a71b Description: lightweight C library for daemons - debugging symbols Homepage: http://0pointer.de/lennart/projects/libdaemon/ Description-md5: 0de392b2ae096c1f8e209f34c991642e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdata-optlist-perl Priority: optional Section: perl Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.109-1 Depends: perl, libparams-util-perl, libsub-install-perl Filename: pool/main/libd/libdata-optlist-perl/libdata-optlist-perl_0.109-1_all.deb Size: 9920 MD5sum: 5777250824e4f17206ae0df49d8e32f3 SHA1: 2dfd03787bf25e9edc9170fc198ceaced4e0bec0 SHA256: d93b8cd517ed78a78b2738ee84c4dff102c641ecb91ae827f8b20704ef8e4549 Description: module to parse and validate simple name/value option pairs Homepage: https://metacpan.org/release/Data-OptList/ Description-md5: a02528c5c88129d91015cfed0286ba18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdata-section-perl Priority: optional Section: perl Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.200005-1 Depends: perl, libmro-compat-perl, libsub-exporter-perl Filename: pool/main/libd/libdata-section-perl/libdata-section-perl_0.200005-1_all.deb Size: 11520 MD5sum: 854ab624ad50b0a7225d3ead3428aa93 SHA1: ba3e4c61aa317e41efdb98431bc79c2cdf1c90ef SHA256: bc084b828e9c54951d54eaef179d4159ae7cc3b830867f78c8dd9232b23b0875 Description: module to read chunks of data from a module's DATA section Homepage: https://github.com/rjbs/Data-Section Description-md5: 8bfe8cc5d6583ae3a3cafe8428bbee49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdata-section-simple-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.05-1 Depends: perl Filename: pool/main/libd/libdata-section-simple-perl/libdata-section-simple-perl_0.05-1_all.deb Size: 7466 MD5sum: d94c8568fbdb1481e2de1fad6f2fd617 SHA1: 66c1cd2a9ec602c8663f0b1b01f238311f61d2f8 SHA256: b87b619ef6ea27b5b054a577c29f7289e6afb7e5695a9b505efb620222905f1a Description: Perl module for reading data from __DATA__ section of the file Homepage: https://metacpan.org/release/Data-Section-Simple/ Description-md5: 78aab0d9fdb7da152bcc669160f98a8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdate-manip-perl Priority: optional Section: perl Installed-Size: 10577 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.42-1 Depends: perl Filename: pool/main/libd/libdate-manip-perl/libdate-manip-perl_6.42-1_all.deb Size: 912922 MD5sum: c0ca9c42520bc12add8d3e565fbb7662 SHA1: e34ce8ae9592f3cb9937fd977b80773c1cd985be SHA256: 0b39eacccbce4f6108b8a3160917a8dfd2ecfa128f70305804af8a0b03317137 Description: module for manipulating dates Homepage: https://metacpan.org/release/Date-Manip/ Description-md5: 76af4628055c478892d3eda050329d85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatetime-format-builder-perl Priority: optional Section: perl Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.8100-1 Depends: perl, libclass-factory-util-perl, libdatetime-format-strptime-perl, libdatetime-perl (>= 2:1.00), libparams-validate-perl Filename: pool/main/libd/libdatetime-format-builder-perl/libdatetime-format-builder-perl_0.8100-1_all.deb Size: 68256 MD5sum: ebe078fb8bf1d8d300dee6fe87df4dc5 SHA1: 917b8dcdc2df30700a289c63f57ba51cf91ab55e SHA256: 2396155ec597a15bcbe8c40ac7943fe5bc5feb90d03b23c0e608d88298bdd4cd Description: module to create DateTime parsers Homepage: https://metacpan.org/release/DateTime-Format-Builder/ Description-md5: b3b7f0364f7437abf9820fd05acb16cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatetime-format-mail-perl Priority: optional Section: perl Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.3001-2 Depends: libdatetime-perl, libparams-validate-perl, perl Filename: pool/main/libd/libdatetime-format-mail-perl/libdatetime-format-mail-perl_0.3001-2_all.deb Size: 13378 MD5sum: 03ce2b806ad829538c2af9d389c3a04b SHA1: f3057fbbb891f593bc840d641cacf38a48a2c12b SHA256: b69248a2e043577508be2938ac4db8f8d86dbc994aa50db67e6c805ed6fef16b Description: Convert between DateTime and RFC2822/822 formats Homepage: https://metacpan.org/release/DateTime-Format-Mail Description-md5: 18e41cf13895ba643ac612063cc679ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdatetime-format-mysql-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.04-3 Depends: perl, libdatetime-perl, libdatetime-format-builder-perl Filename: pool/main/libd/libdatetime-format-mysql-perl/libdatetime-format-mysql-perl_0.04-3_all.deb Size: 6988 MD5sum: cb07ca9e8ef652d26d0935bc30dee290 SHA1: 96b538f62656a814f7a4f34459e8013524e89b5f SHA256: 295430572da8de7f8ff574bd8d87c93fc73a51f23c00f12679209788bfa8a990 Description: Parse and format MySQL dates and times Homepage: https://metacpan.org/release/DateTime-Format-MySQL/ Description-md5: c3239034f66a11bed09d5f9df17cb0a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdatetime-format-strptime-perl Priority: optional Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.5400-1 Depends: perl, libdatetime-locale-perl, libdatetime-perl, libdatetime-timezone-perl, libparams-validate-perl Filename: pool/main/libd/libdatetime-format-strptime-perl/libdatetime-format-strptime-perl_1.5400-1_all.deb Size: 24234 MD5sum: 0364e44434bf0280d419254ffc5d0d51 SHA1: f4561474bd5ba89a301ae5833b257fd9547e5a92 SHA256: 0f7e2680c93d743c346ef43ad76248d9f35673c658f3d789302fe08bc1c37dc3 Description: Perl module to parse and format strp and strf time patterns Homepage: http://datetime.perl.org/ Description-md5: 5fdc55fcc6751419baaa069d930a67e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatetime-locale-perl Priority: extra Section: perl Installed-Size: 7164 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1:0.45-2 Depends: perl, liblist-moreutils-perl, libparams-validate-perl Filename: pool/main/libd/libdatetime-locale-perl/libdatetime-locale-perl_0.45-2_all.deb Size: 2273708 MD5sum: 8fe7a9860d2ec906231c63a569f57b05 SHA1: 37404c3a609677d26813a1784b3769eceeac46c1 SHA256: 16a3abfd1e6c0586a2cb92917f81445019091bf58e917422aebc0c8f0bd0835c Description: Perl extension providing localization support for DateTime Homepage: http://datetime.perl.org/ Description-md5: 8de47fc8419a2e0a4cc5c0d0194a351b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatetime-perl Priority: extra Section: perl Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 2:1.06-1 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.2.5), libdatetime-locale-perl, libdatetime-timezone-perl, libparams-validate-perl, libtry-tiny-perl Filename: pool/main/libd/libdatetime-perl/libdatetime-perl_1.06-1_amd64.deb Size: 82564 MD5sum: 28768e29628e22f16bc264ff9b621f8e SHA1: 91bb6aa32c602bf2f1caff5068667a8ba632cbfb SHA256: ad1d52cd0d757af306b4ead96043a7976ef7c0dee0cb4ea82a4fe5e69da239a6 Description: module for manipulating dates, times and timestamps Homepage: http://datetime.perl.org/ Description-md5: abf0de5650ddf21a59440d99dbd1c161 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatetime-timezone-perl Priority: extra Section: perl Installed-Size: 6294 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1:1.63-1+2013h Depends: perl, libclass-load-perl, libclass-singleton-perl, libparams-validate-perl Filename: pool/main/libd/libdatetime-timezone-perl/libdatetime-timezone-perl_1.63-1+2013h_all.deb Size: 255204 MD5sum: e9a6a737fc8f64de0e6b15967c3af747 SHA1: 512325df99a10b59ec500ff1ea87283492590f17 SHA256: 47951472c86bab90bbc218e447a38791ce6ec08c1809d56ae8c6a7d9b7b9a175 Description: framework exposing the Olson time zone database to Perl Homepage: http://datetime.perl.org/ Description-md5: 49fff32146b7c0ac14d7bcca1f92bfe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatrie-dev Priority: optional Section: libdevel Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: amd64 Source: libdatrie Version: 0.2.8-1 Depends: libdatrie1 (= 0.2.8-1) Suggests: libdatrie-doc (= 0.2.8-1) Conflicts: libdatrie0-dev Filename: pool/main/libd/libdatrie/libdatrie-dev_0.2.8-1_amd64.deb Size: 17164 MD5sum: 9dfa39b965c5fd56795c94e71db075eb SHA1: 67b08b1be329b2dc1d6ce0dd5465ff6b0dd0e190 SHA256: 340e5687f081abf20726bce552055202427df8555045d9de2a3b6fb314366f34 Description: Development files for double-array trie library Multi-Arch: same Homepage: http://linux.thai.net/projects/libthai Description-md5: aba60c2eb6bbe73331e039cccc12d3da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdatrie-doc Priority: optional Section: doc Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: libdatrie Version: 0.2.8-1 Depends: lynx | www-browser Conflicts: libdatrie0-doc Filename: pool/main/libd/libdatrie/libdatrie-doc_0.2.8-1_all.deb Size: 39732 MD5sum: 404fda39bd908ba687cdc681650c7303 SHA1: 6703a2c86bc2bf015e49989f8320c58b7ead1fef SHA256: 5bf096dbd36aacf3913194faa99c8e7873c661850339441c940fddee5b432a99 Description: Documentation files for double-array trie library Multi-Arch: foreign Homepage: http://linux.thai.net/projects/libthai Description-md5: 5e24c523a65f1703fd0422ed0e625cf0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdatrie1 Priority: optional Section: libs Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: amd64 Source: libdatrie Version: 0.2.8-1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libd/libdatrie/libdatrie1_0.2.8-1_amd64.deb Size: 16724 MD5sum: 2266444e4ce1766c3cfdbe21d15d0321 SHA1: fbd9ccb8ab4eea79329a40546a53859dc9cff075 SHA256: 2a52c5d04f91dd370cc6bdac98c0b6ea0ccc17c87551edb65b7b4aad1d2d548f Description: Double-array trie library Multi-Arch: same Homepage: http://linux.thai.net/projects/libthai Description-md5: bad75292299725e815dfa340308fd98b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdatrie1-bin Priority: optional Section: misc Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: amd64 Source: libdatrie Version: 0.2.8-1 Depends: libc6 (>= 2.7), libdatrie1 (>= 0.2.0) Filename: pool/main/libd/libdatrie/libdatrie1-bin_0.2.8-1_amd64.deb Size: 9744 MD5sum: 3a569550c14e47213b8c0446b79d5d24 SHA1: 88bf30b74c2a986411dfabc85edc230e8e5f92b8 SHA256: 64e3aec7266515d86cf3d3abd645123fde98e00028279588eb0371ed58ab67ce Description: Programs for double-array trie library Homepage: http://linux.thai.net/projects/libthai Description-md5: 5bde3cde365843ae025e4ef31881d0a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb++-dev Priority: extra Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db-defaults Version: 1:5.3.21~exp1ubuntu1 Depends: libdb5.3++-dev Conflicts: libdb4.6++-dev, libdb4.7++-dev, libdb4.8++-dev, libdb5.1++-dev Filename: pool/main/d/db-defaults/libdb++-dev_5.3.21~exp1ubuntu1_amd64.deb Size: 2330 MD5sum: c140de19933f6841e4d2c5b303fb2af9 SHA1: 24dd5e89ec2fabd2454e0376b447347165d5a3c7 SHA256: d02829df2a925cd87a6543c23a36b9fce53727b7b060569ce024ff1b2202688d Description: Berkeley Database Libraries for C++ [development] Multi-Arch: same Description-md5: 77047aba6756736aa06d1c92297f0f0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb-dev Priority: extra Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db-defaults Version: 1:5.3.21~exp1ubuntu1 Depends: libdb5.3-dev Conflicts: libdb4.6-dev, libdb4.7-dev, libdb4.8-dev, libdb5.1-dev Filename: pool/main/d/db-defaults/libdb-dev_5.3.21~exp1ubuntu1_amd64.deb Size: 2282 MD5sum: 817b1080065fad0d06fb6bdbf00d2571 SHA1: 168c6eb165d467ed3fd167e3af8885b9452448cb SHA256: 4e79cd6abfe649d9809a27b553efb5f039a52ad820597ab9d5730782032dced1 Description: Berkeley Database Libraries [development] Multi-Arch: same Description-md5: cc7d9357e644c1601c2255220178f551 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb-java-dev Priority: extra Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db-defaults Version: 1:5.3.21~exp1ubuntu1 Depends: libdb5.3-java-dev Conflicts: libdb4.6-java-dev, libdb4.7-java-dev, libdb4.8-java-dev, libdb5.1-java-dev Filename: pool/main/d/db-defaults/libdb-java-dev_5.3.21~exp1ubuntu1_amd64.deb Size: 2290 MD5sum: a30fe2737498f96573a31a76ab2ffd67 SHA1: ca9404a764a524031e19cb4bda74ade8b73387bd SHA256: 6719be1e4223078ce688297dfb939fb5a932a4c31906ba4f43a99ca23f2731c3 Description: Berkeley Database Libraries for Java [development] Multi-Arch: same Description-md5: 059e0f73d17247a508b8413c2d19a8ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb-sql-dev Priority: extra Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db-defaults Version: 1:5.3.21~exp1ubuntu1 Depends: libdb5.3-sql-dev Conflicts: libdb5.1-sql-dev Filename: pool/main/d/db-defaults/libdb-sql-dev_5.3.21~exp1ubuntu1_amd64.deb Size: 2280 MD5sum: dd8ad8a916ea8358e2fadf5b6ef6e375 SHA1: 261c0d0562fe9bc7407b93f33033438939e408cf SHA256: 88a2c08b0b11a98e0589ac43e75e47fa8daff2707dcb8b5799f7b06b5e14987f Description: Berkeley Database Libraries [SQL development] Multi-Arch: same Description-md5: a34f23f909f1599952a5f67265ecb074 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3 Priority: required Section: libs Installed-Size: 1725 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/d/db5.3/libdb5.3_5.3.28-3ubuntu3_amd64.deb Size: 646450 MD5sum: e271858df239251c4e02325a1ad7f203 SHA1: 2900c633e499ee48a2764a488a4427fabe5027b6 SHA256: eb81b387ce9d181caecfca99c93362792cb1f1e17655f27e388d0749f65c3030 Description: Berkeley v5.3 Database Libraries [runtime] Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 6cef0d1fc062f09a5c2c1209dc807be1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libdb5.3++ Priority: optional Section: libs Installed-Size: 1848 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1), libdb5.3 Pre-Depends: multiarch-support Filename: pool/main/d/db5.3/libdb5.3++_5.3.28-3ubuntu3_amd64.deb Size: 674780 MD5sum: 747f4229fc353dd3325d920b9e139f08 SHA1: 79627be064546c19879dd188c366c855dc045af3 SHA256: a7297db5facf776102c6ac71dfc750c20d31591c380a57acc303cbdc8bcd461d Description: Berkeley v5.3 Database Libraries for C++ [runtime] Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: fa02dd6e6118cdb8ba3a2bb75d0e2ce3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3++-dev Priority: extra Section: libdevel Installed-Size: 3087 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3++ (= 5.3.28-3ubuntu3), libdb5.3-dev (= 5.3.28-3ubuntu3), libdb5.3 Conflicts: libdb4.6++-dev, libdb4.7++-dev, libdb4.8++-dev, libdb5.1++-dev, libdb5.2++-dev Filename: pool/main/d/db5.3/libdb5.3++-dev_5.3.28-3ubuntu3_amd64.deb Size: 728138 MD5sum: 8b045d75aefe588a897286a30e527eda SHA1: c749e51b959491706117ab4009148493c8a48d8b SHA256: 327eb26d0fece456d2300f939095a7d379a8b70cc51492ec2a0acfbe039ccf44 Description: Berkeley v5.3 Database Libraries for C++ [development] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: a7a998f0313107491f90e490e2ad171f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-dbg Priority: extra Section: debug Installed-Size: 39302 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3 (= 5.3.28-3ubuntu3) Filename: pool/main/d/db5.3/libdb5.3-dbg_5.3.28-3ubuntu3_amd64.deb Size: 37199484 MD5sum: 7fad20f0dc751e0bb52be42228a0a5be SHA1: df8361583bd1a3d8756c89f6e4061d4fd21fa3a5 SHA256: b11b25550f437888ab225fcf808bf0b15236afb95906a21311a33908a0c7b304 Description: Berkeley v5.3 Database Libraries [debug] Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: b6795af6080c8d7c57c3e3f9c05328ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-dev Priority: extra Section: libdevel Installed-Size: 2932 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3 (= 5.3.28-3ubuntu3) Suggests: db5.3-doc Conflicts: libdb4.6-dev, libdb4.7-dev, libdb4.8-dev, libdb5.1-dev, libdb5.2-dev Filename: pool/main/d/db5.3/libdb5.3-dev_5.3.28-3ubuntu3_amd64.deb Size: 715640 MD5sum: 48b2f605ef25b8582bcc3f9d86f2e2ab SHA1: 6d848cecb66820bd78b51ecefae1ca8bbb269bf1 SHA256: 003fe8a3d46ca76de8322f80a91be9732035b5602f199909e4f372f190f98639 Description: Berkeley v5.3 Database Libraries [development] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: a8fcb954a01494ec75806217ea263fd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-java Priority: optional Section: java Installed-Size: 613 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: all Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3-java-jni (>= 5.3.28-3ubuntu3), libdb5.3 Suggests: libdb5.3-java-gcj Filename: pool/main/d/db5.3/libdb5.3-java_5.3.28-3ubuntu3_all.deb Size: 547810 MD5sum: b08b31aeb3a5384e7ebee4eca2be3fc0 SHA1: 3a4a9660e7e248310a4f989c51da82ed452a44a7 SHA256: b9e6938a54605e694bf4dcb0678d0ee6c1399c4c275a03cc4f4799f251287199 Description: Berkeley v5.3 Database Libraries for Java Multi-Arch: foreign Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 7fe5662ba085d6fe249eb0a22491cd95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-java-dev Priority: optional Section: libdevel Installed-Size: 3081 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3-java (= 5.3.28-3ubuntu3), libdb5.3 Conflicts: libdb4.6-java-dev, libdb4.7-java-dev, libdb4.8-java-dev, libdb5.1-java-dev, libdb5.2-java-dev Filename: pool/main/d/db5.3/libdb5.3-java-dev_5.3.28-3ubuntu3_amd64.deb Size: 727608 MD5sum: d55fcd4d84dd8b85770e449e2cecd41e SHA1: 6996bdf48c1ee47f772e98672806362ede375a14 SHA256: f6cbeeb4544d00cc6c3d5606d6f4a8247935d0aa7b6caea666a2912a1821fb6f Description: Berkeley v5.3 Database Libraries for Java [development] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 10357cd4b2e7bc530ef77abbf53eea71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-java-gcj Priority: optional Section: java Installed-Size: 3456 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3-java (= 5.3.28-3ubuntu3), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.2-1~), libdb5.3, libgcj-common (>> 1:4.1.1-13) Filename: pool/main/d/db5.3/libdb5.3-java-gcj_5.3.28-3ubuntu3_amd64.deb Size: 614096 MD5sum: 4bd04dfc84fcdba5c448f0c543cbba28 SHA1: 74a1dec59e1570b55e19dd19f6b49b30d31d8467 SHA256: fc63993b2f9e1e8238119c27cb110712a9267cef38620fa815a4e2ff6e9cf6e4 Description: Berkeley v5.3 Database Libraries for Java (native code) Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 0603fab127b8432390749d24581d70a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-java-jni Priority: optional Section: java Installed-Size: 1912 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.17), libdb5.3 Pre-Depends: multiarch-support Conflicts: libdb5.1-java, libdb5.2-java Breaks: libdb5.3-java (<< 5.3.28-3ubuntu3) Filename: pool/main/d/db5.3/libdb5.3-java-jni_5.3.28-3ubuntu3_amd64.deb Size: 680714 MD5sum: ee81ed7604fce014dc341088697ada38 SHA1: 694fd733a1bb8550a9f9572ade0f3d0c8eb3280b SHA256: bad7f461db89c8ba99038a4b39571867237ccaef6539ac6880df8f8263cfb843 Description: Berkeley v5.3 Database Libraries for Java Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 7fe5662ba085d6fe249eb0a22491cd95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-sql Priority: extra Section: libs Installed-Size: 2218 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.17), libdb5.3 Pre-Depends: multiarch-support Filename: pool/main/d/db5.3/libdb5.3-sql_5.3.28-3ubuntu3_amd64.deb Size: 866390 MD5sum: 1ef7907f19a59f4f949d05920d180d93 SHA1: cf8f022ea41f05e537e23db48ac90036cbfa5012 SHA256: bdac509290349bdddf2d7068493e90fe69944ca9e6294e8c12b80d0bc7781035 Description: Berkeley v5.3 Database Libraries [SQL runtime] Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 71e39b5f9b4bfe07a3a092747c1d6bc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-sql-dev Priority: extra Section: libdevel Installed-Size: 3801 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3-sql (= 5.3.28-3ubuntu3), libdb5.3 Suggests: db5.3-doc Conflicts: libdb5.1-sql-dev, libdb5.2-sql-dev Filename: pool/main/d/db5.3/libdb5.3-sql-dev_5.3.28-3ubuntu3_amd64.deb Size: 990696 MD5sum: 6b6f497dd3aed9d77f5b1c80a82f9d3f SHA1: da05c3f47319fd90b4cfec1c35c67d2d8df2b842 SHA256: 08afc903a29d3ee14b36498ebcf09498e753d908486ac3c29289e38bfa0d5484 Description: Berkeley v5.3 Database Libraries [SQL development] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 75785db09c2db2de461c5e9b1296e888 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-stl Priority: extra Section: libs Installed-Size: 1937 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1), libdb5.3 Pre-Depends: multiarch-support Filename: pool/main/d/db5.3/libdb5.3-stl_5.3.28-3ubuntu3_amd64.deb Size: 697502 MD5sum: 8163e8c1782159dc63c3e87a9373dcdc SHA1: 14b6ff1674d84e759755e345d4232852d42cae17 SHA256: ff51c48eb14ab4435321e699ace6bf1058f7f974c0545997430dd75b34b1b794 Description: Berkeley v5.3 Database Libraries [STL runtime] Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: a4333c095837e70b0d0d67c82a44ba80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-stl-dev Priority: extra Section: libdevel Installed-Size: 3629 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: amd64 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3-stl (= 5.3.28-3ubuntu3), libdb5.3 Suggests: db5.3-doc Conflicts: libdb5.1-stl-dev, libdb5.2-stl-dev Filename: pool/main/d/db5.3/libdb5.3-stl-dev_5.3.28-3ubuntu3_amd64.deb Size: 813720 MD5sum: 1a9dda3d483fdab9104073ec1b352b20 SHA1: b46f8d9c4f19bd15cd7c2a1a165d14ddbad9860d SHA256: 4ca20a7c8cedf94201acd8184e571120fecb3d5d319fc3b7db58c1cf53cba960 Description: Berkeley v5.3 Database Libraries [STL development] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: edbeff150a3779fb5554f4b8c92bea16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbd-freetds Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: libdbi-drivers Version: 0.9.0-2ubuntu2 Depends: libc6 (>= 2.8), libct4 (>= 0.64), libdbi1 (>= 0.8.4) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbi-drivers/libdbd-freetds_0.9.0-2ubuntu2_amd64.deb Size: 13108 MD5sum: 1f2d56c6330673f9094872843031f645 SHA1: 8cde8ae3c7a0fff743e2ae69667a1872b655df68 SHA256: 7cf02d477247c9f56d5654147ef96e2859ea17a50e00bc3b4db231d93c16682d Description: Freetds database server driver for libdbi Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: 437893fe7e8036a8f1aaebb14b0de68e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdbd-mysql Priority: optional Section: libs Installed-Size: 331 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: libdbi-drivers Version: 0.9.0-2ubuntu2 Depends: libc6 (>= 2.14), libdbi1 (>= 0.8.4), libmysqlclient18 (>= 5.5.13-1) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbi-drivers/libdbd-mysql_0.9.0-2ubuntu2_amd64.deb Size: 146942 MD5sum: 8b6350e64a7df95360811491d6d93c40 SHA1: e9c732a181959a5f3a08a2a6b74e012d61ab987a SHA256: c51c6d5cd51b033423640e338d6c26695b068dba5ec95823e15468fa0b76dbc7 Description: MySQL database server driver for libdbi Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: 2f6453a1b87e77abc15937f5ab7942e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdbd-mysql-perl Priority: optional Section: perl Installed-Size: 307 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 4.025-1 Depends: perl (>= 5.18.1-4build1), perl-dbdabi-94, perlapi-5.18.1, libc6 (>= 2.4), libmysqlclient18 (>= 5.5.13-1), libdbi-perl Filename: pool/main/libd/libdbd-mysql-perl/libdbd-mysql-perl_4.025-1_amd64.deb Size: 99300 MD5sum: 2409373cd5f8fb702e6c636c28eb5e2e SHA1: e58ee40cc3a274ce9448ff5fea8de71262f3effc SHA256: 9c26ab7949c13c3d6bf7cb21c5875594802128ae7f8bd669864f264b93d4e581 Description: Perl5 database interface to the MySQL database Homepage: https://metacpan.org/release/DBD-mysql Description-md5: a95c384ff544205a63fc25a89e6e9737 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libdbd-pgsql Priority: optional Section: libs Installed-Size: 310 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: libdbi-drivers Version: 0.9.0-2ubuntu2 Depends: libc6 (>= 2.8), libdbi1 (>= 0.8.4), libpq5 Pre-Depends: multiarch-support Filename: pool/main/libd/libdbi-drivers/libdbd-pgsql_0.9.0-2ubuntu2_amd64.deb Size: 145376 MD5sum: 8b63ff5197efa6708f5b61fbae2fd2b4 SHA1: 76da606d1274e232b8c49057bb89288365fa974e SHA256: 4b5fc1b9be6b60a3bfe2d44cb5ce9fdeabffe5e43c1a0fd4278767e64d09e932 Description: PostgreSQL database server driver for libdbi Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: fe889b22a31ff8978490eec7cfd7eec3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdbd-sqlite3 Priority: optional Section: libs Installed-Size: 351 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: libdbi-drivers Version: 0.9.0-2ubuntu2 Depends: libc6 (>= 2.8), libdbi1 (>= 0.9.0), libsqlite3-0 (>= 3.5.9) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbi-drivers/libdbd-sqlite3_0.9.0-2ubuntu2_amd64.deb Size: 175194 MD5sum: 192c7c1775d618675495fc7042fd67b5 SHA1: 581c9c419856fce74e1bd967ea3d07ebeb98b464 SHA256: e1cdafd7de4bf7ff93a68a7a9d67e7eb5ae59da267301b0d11943c8e85836ff7 Description: SQLite3 database driver for libdbi Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: bbac5c425b82d758def37597a82c7afd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdbd-sqlite3-perl Priority: optional Section: perl Installed-Size: 299 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.40-3 Depends: perl (>= 5.18.1-5), perl-dbdabi-94, perlapi-5.18.1, libc6 (>= 2.14), libsqlite3-0 (>= 3.7.10) Filename: pool/main/libd/libdbd-sqlite3-perl/libdbd-sqlite3-perl_1.40-3_amd64.deb Size: 92848 MD5sum: 2b8f023768ede0479fae5e22e7ed51eb SHA1: 40a837056d7de10d085884882bf99016003f806f SHA256: cb7eeaceff35b1e0a7387fa8829f9c1f2212c0364d1e21312a7c824cd971c375 Description: Perl DBI driver with a self-contained RDBMS Homepage: https://metacpan.org/release/DBD-SQLite/ Description-md5: 8a3b0ad4d51c995e128a17cddbee5420 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbi-dev Priority: optional Section: libdevel Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: libdbi Version: 0.9.0-1 Replaces: libdbi0, libdbi0-dev, libdbi1 (<< 0.8.4-2) Provides: libdbi0-dev Depends: libdbi1 (= 0.9.0-1) Conflicts: libdbi0-dev Filename: pool/main/libd/libdbi/libdbi-dev_0.9.0-1_amd64.deb Size: 25992 MD5sum: 4e78f4c144b04c32c310959a59b276fb SHA1: a1069d1fab9e86fcd12f6e35a0ba208bea23e6e2 SHA256: e639a7f1d3055372b35e4786b2608f178d27e0b0f203c03c815dc35fe837c079 Description: DB Independent Abstraction Layer for C -- development files Homepage: http://libdbi.sourceforge.net/ Description-md5: 98dc3b749976b17d062eeee349991034 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbi-doc Priority: optional Section: doc Installed-Size: 1167 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: all Source: libdbi Version: 0.9.0-1 Filename: pool/main/libd/libdbi/libdbi-doc_0.9.0-1_all.deb Size: 750900 MD5sum: 714139edf80ad8cfbcbb1f8371f4319e SHA1: 4c7c0d222b9c70b4a40eb0176e2afd7aaa52be81 SHA256: 2d04f2a183c4a1c2128ce54883a1e635848c0ba7a146b5774af643a115f9082a Description: DB Independent Abstraction Layer for C -- documentation Homepage: http://libdbi.sourceforge.net/ Description-md5: a972248745e8c7bb9f2c106e8246b70b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbi-perl Priority: optional Section: perl Installed-Size: 2155 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.630-1 Provides: perl-dbdabi-94 Depends: perl (>= 5.18.1-4build1), perlapi-5.18.1, libc6 (>= 2.4) Suggests: libclone-perl (>= 0.34), libmldbm-perl, libnet-daemon-perl, libplrpc-perl, libsql-statement-perl (>= 1.402) Breaks: libdbd-anydata-perl (<< 0.11+), libdbd-csv-perl (<< 0.3600+), libsql-statement-perl (<< 1.33+) Filename: pool/main/libd/libdbi-perl/libdbi-perl_1.630-1_amd64.deb Size: 879494 MD5sum: 53c59ad9793bbd09d9c8dedcdecaba1c SHA1: a054d3f769f7f937fba66fa06e97d2459d58c26a SHA256: 78876f123aacb348e7251877e97a2bc9a4ca2d238f361b1c441ce2c7d5776b1c Description: Perl Database Interface (DBI) Homepage: http://dbi.perl.org/ Description-md5: aa070f52bfbf0d9e220aa40da4b4ced1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libdbi1 Priority: optional Section: libs Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: libdbi Version: 0.9.0-1 Depends: libc6 (>= 2.14) Breaks: libapache2-mod-log-sql-dbi (<= 1.100-11), libdbd-mysql (<< 0.8.2-1), libdbd-pgsql (<< 0.8.2-1), libdbd-sqlite (<< 0.8.2-1) Filename: pool/main/libd/libdbi/libdbi1_0.9.0-1_amd64.deb Size: 28240 MD5sum: 04d5c4d9f0c01dbb4caebe22374ef7c5 SHA1: 57ba9caab310572f1f6e3d83443a413ecc145da3 SHA256: 5acc2779d0ee814fbba0a9e5197b3520ff6745ec521e60f716a8596763cc967f Description: DB Independent Abstraction Layer for C -- shared library Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: 68fb04da0e97eaa776bc3ae20156b39c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdbi1-dbg Priority: extra Section: debug Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: libdbi Version: 0.9.0-1 Depends: libdbi1 (= 0.9.0-1) Filename: pool/main/libd/libdbi/libdbi1-dbg_0.9.0-1_amd64.deb Size: 51818 MD5sum: 0327f2a590314966d42a3daaf6f37303 SHA1: b97fd29d74f97da8b36d94132c5a43e5716d7243 SHA256: b67ab436c8f67f88ee0af9e5e6ed26210cd3fc28f45f805fd4c878813afa6932 Description: DB Independent Abstraction Layer for C -- debugging symbols Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: 8e7672c71437c79da8c88da87f06433b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbm-deep-perl Priority: optional Section: perl Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.0011-1 Depends: perl Suggests: libdbi-perl, libdbd-sqlite3-perl | libdbd-mysql-perl Filename: pool/main/libd/libdbm-deep-perl/libdbm-deep-perl_2.0011-1_all.deb Size: 103716 MD5sum: e686f93fa0f15240588e93679a97f9bf SHA1: 9c2f98f200d3a19813de4b601d6c43b2994dcd81 SHA256: 4baae2212b3d2a3d3c50b2df6b5f30f362ab5f4a4ecfc3d69a35566569c67f50 Description: pure perl multi-level hash/array DBM that supports transactions Homepage: https://metacpan.org/release/DBM-Deep/ Description-md5: 239b9b1c3e41ef14bc74e72629e57b91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-1-3 Priority: required Section: libs Installed-Size: 379 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: dbus Version: 1.6.18-0ubuntu4 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Recommends: dbus Breaks: kde-window-manager (<< 4:4.4.5-9), kdebase-workspace-bin (<< 4:4.4.5-9) Filename: pool/main/d/dbus/libdbus-1-3_1.6.18-0ubuntu4_amd64.deb Size: 131956 MD5sum: 96db90f5a33331d533bc7c9a328a80c6 SHA1: 67879e6ff5d19e1c6e45997f2e1ca6fb6e9df5ed SHA256: 24f4ef1aee77e6c5b5d06f07cf6509a1c6359537b06fca9eee7d694e1a641651 Description: simple interprocess messaging system (library) Multi-Arch: same Homepage: http://dbus.freedesktop.org/ Description-md5: 394b84dd0007d22bc4bb591ca6b5fa31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libdbus-1-dev Priority: optional Section: libdevel Installed-Size: 878 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: dbus Version: 1.6.18-0ubuntu4 Depends: libdbus-1-3 (= 1.6.18-0ubuntu4), pkg-config Filename: pool/main/d/dbus/libdbus-1-dev_1.6.18-0ubuntu4_amd64.deb Size: 150664 MD5sum: 7f7e3d3357a2b83e2224b76087699284 SHA1: b5d5e1ba25d45f64519a7e2e1a91295b5a075fba SHA256: fa1e5edef7a8db94106844dd26ec235d52778c8740e3e92f50ceee750197663a Description: simple interprocess messaging system (development headers) Multi-Arch: same Homepage: http://dbus.freedesktop.org/ Description-md5: 59e71e7e764b950dc1184788af416a7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-c++-1-0 Priority: optional Section: libs Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Cheng Architecture: amd64 Source: dbus-c++ Version: 0.9.0-6ubuntu1 Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/d/dbus-c++/libdbus-c++-1-0_0.9.0-6ubuntu1_amd64.deb Size: 78864 MD5sum: 9ebe3b19902cf6673a1f8387bc509df8 SHA1: 332ecd1cfd2516b7106382be93efd0c7cda7d4b1 SHA256: a4cebddfc472ab4c0c250dfc309b01255fb68e616cc59636bac2ffd63b90f82b Description: C++ API for D-Bus (runtime package) Multi-Arch: same Homepage: http://sourceforge.net/projects/dbus-cplusplus/ Description-md5: e5b1c64b0141a3e970558211fa3293cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libdbus-c++-bin Priority: optional Section: utils Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Cheng Architecture: amd64 Source: dbus-c++ Version: 0.9.0-6ubuntu1 Replaces: libdbus-c++-dev (<< 0.9.0-5) Depends: libdbus-c++-1-0 (= 0.9.0-6ubuntu1), libc6 (>= 2.14), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Suggests: libdbus-c++-dev Breaks: libdbus-c++-dev (<< 0.9.0-5) Filename: pool/main/d/dbus-c++/libdbus-c++-bin_0.9.0-6ubuntu1_amd64.deb Size: 66674 MD5sum: b37e30cb72f4cce61dbbb6e278178812 SHA1: cc7a5446b197f7b1a95bd5b67fa7cd241f55eb4d SHA256: 56613c00b81a0a0df0f78064e1ea4e43f98107dedb0dd9cb69cd2338e175c8a0 Description: C++ API for D-Bus (utilities) Multi-Arch: foreign Homepage: http://sourceforge.net/projects/dbus-cplusplus/ Description-md5: 11fea8988ab523e211c9b2a393825830 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-c++-dbg Priority: extra Section: debug Installed-Size: 1114 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Cheng Architecture: amd64 Source: dbus-c++ Version: 0.9.0-6ubuntu1 Depends: libdbus-c++-1-0 (= 0.9.0-6ubuntu1) Filename: pool/main/d/dbus-c++/libdbus-c++-dbg_0.9.0-6ubuntu1_amd64.deb Size: 990838 MD5sum: 834d3e4a1d96647491e756979774b5c8 SHA1: f66ad97a09fa4ab1cb2763909482167368d0f880 SHA256: 8f234e3e22e3029c001480ec9a81ab184acebbd53ff0a3dbfc07c417f320aafd Description: C++ API for D-Bus (debugging symbols) Multi-Arch: same Homepage: http://sourceforge.net/projects/dbus-cplusplus/ Description-md5: b870962dc8aad60f27dcee65a515a96f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-c++-dev Priority: extra Section: libdevel Installed-Size: 708 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Cheng Architecture: amd64 Source: dbus-c++ Version: 0.9.0-6ubuntu1 Depends: libdbus-c++-1-0 (= 0.9.0-6ubuntu1), libdbus-c++-bin (= 0.9.0-6ubuntu1) Filename: pool/main/d/dbus-c++/libdbus-c++-dev_0.9.0-6ubuntu1_amd64.deb Size: 144242 MD5sum: e6e6a66f61beadbd2d1bff6e2283c49e SHA1: 308ff043c1630f55d67ddf4a955f597b7f6bc64e SHA256: a772f577cbcf30ce295a9f8d51ce5f74d4973a69eb1d00d0c3919c36669a7551 Description: C++ API for D-Bus (development package) Multi-Arch: same Homepage: http://sourceforge.net/projects/dbus-cplusplus/ Description-md5: 28bfd5efb403f1587ce0104458bf8259 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-c++-doc Priority: optional Section: doc Installed-Size: 13096 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Cheng Architecture: all Source: dbus-c++ Version: 0.9.0-6ubuntu1 Suggests: libdbus-c++-dev Filename: pool/main/d/dbus-c++/libdbus-c++-doc_0.9.0-6ubuntu1_all.deb Size: 8758088 MD5sum: 62925b542157ce3c075512d388e66d26 SHA1: 3e293ae568a2165e22c48b909755f48515b9c2b1 SHA256: 774244ca84d4e07e3f7b420ecffc546e50c8bf88405d3868cdb2b07486be601f Description: C++ API for D-Bus (documentation) Homepage: http://sourceforge.net/projects/dbus-cplusplus/ Description-md5: eb500f187c5f0c1247ff129ddac8ec71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-cpp-dev Priority: optional Section: libdevel Installed-Size: 289 Maintainer: Thomas Voß Architecture: amd64 Source: dbus-cpp Version: 2.0.0+14.04.20140326-0ubuntu1 Replaces: dbus-cpp-dev Provides: dbus-cpp-dev Depends: dbus, libdbus-cpp2 (= 2.0.0+14.04.20140326-0ubuntu1) Conflicts: dbus-cpp-dev Filename: pool/main/d/dbus-cpp/libdbus-cpp-dev_2.0.0+14.04.20140326-0ubuntu1_amd64.deb Size: 29828 MD5sum: 33c088ff1331a3fc7cbcce75b3d8d31d SHA1: 9f0a2cb12956a6c458980c597f6993f00c4a1bfd SHA256: 76696015a388fdcb0eb83f4f7c5da2694afedc3bb10965aefa7c24726f7db48a Description: header-only dbus-binding leveraging C++-11 Multi-Arch: same Homepage: http://launchpad.net/dbus-cpp Description-md5: d97e755c33b36b87f5426fb54680aa16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-cpp2 Priority: optional Section: libdevel Installed-Size: 337 Maintainer: Thomas Voß Architecture: amd64 Source: dbus-cpp Version: 2.0.0+14.04.20140326-0ubuntu1 Depends: libboost-system1.54.0, libc6 (>= 2.14), libdbus-1-3 (>= 1.5.12), libgcc1 (>= 1:4.1.1), libprocess-cpp1 (>= 1.0.0+14.04.20140326.2), libstdc++6 (>= 4.6) Filename: pool/main/d/dbus-cpp/libdbus-cpp2_2.0.0+14.04.20140326-0ubuntu1_amd64.deb Size: 92868 MD5sum: a174faf941081e447f1d01f136e84355 SHA1: cf83a59792d82a4c56b9b6e1a29fad24b12ee0fa SHA256: 838561a66c53fa8ed002d871e1062fc2a2515307a3d1aac25a0790f8c89e6da2 Description: header-only dbus-binding leveraging C++-11 Multi-Arch: same Homepage: http://launchpad.net/dbus-cpp Description-md5: fadd479c0a893a82d7c86d90d21f71cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Package: libdbus-glib-1-2 Priority: standard Section: libs Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: dbus-glib Version: 0.100.2-1 Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.2.16), libglib2.0-0 (>= 2.31.8) Pre-Depends: multiarch-support Filename: pool/main/d/dbus-glib/libdbus-glib-1-2_0.100.2-1_amd64.deb Size: 74066 MD5sum: fea25ddd78bc2403bda70df0cb2cf9a6 SHA1: 2f08f8171065fe5739ebd6e09d1580c557a52c57 SHA256: 5d8edd985809876228adbab151f5f8ae827befb7830d93d1fc26ca2747c2d421 Description: simple interprocess messaging system (GLib-based shared library) Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings Description-md5: 8e029ea0c5a369338dd772bd50b9c2ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libdbus-glib-1-2-dbg Priority: extra Section: libdevel Installed-Size: 908 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: dbus-glib Version: 0.100.2-1 Depends: libdbus-glib-1-2 (= 0.100.2-1) Pre-Depends: multiarch-support Filename: pool/main/d/dbus-glib/libdbus-glib-1-2-dbg_0.100.2-1_amd64.deb Size: 276672 MD5sum: d61599e2e23060bc868f3c81e92c885b SHA1: 17a5f77d8b9d005ebe82596a1f784a08d9773591 SHA256: bfde39e359a5cb25b194ffe0d51c67dbbf7d8a4f33992c7781c8436765c78f79 Description: simple interprocess messaging system (GLib library debug symbols) Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings Description-md5: 2283298a7ca8f3bbce925fe63eaae0fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-glib-1-dev Priority: optional Section: libdevel Installed-Size: 511 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: dbus-glib Version: 0.100.2-1 Replaces: dbus-glib-1-dev, libdbus-1-dev (<< 0.90), libdbus-glib0-dev Depends: libdbus-glib-1-2 (= 0.100.2-1), libdbus-1-dev (>= 1.1), libglib2.0-dev, libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libexpat1 (>= 2.0.1), libglib2.0-0 (>= 2.26) Conflicts: dbus-1-utils (<< 0.50-2), dbus-glib-1-dev, libdbus-glib-dev Filename: pool/main/d/dbus-glib/libdbus-glib-1-dev_0.100.2-1_amd64.deb Size: 124732 MD5sum: b7a50e1b373afeb7dcd52c3d9425e2d6 SHA1: 159de0c73120af9f489e26a2a2964c6db3f7e519 SHA256: 278518f4602f3831f666435b128eb48ab0db21df7d070c42f0786ca278327a66 Description: simple interprocess messaging system (GLib interface) Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings Description-md5: 5ea06bb77132d80541f7a3ebc3402f7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-glib-1-doc Priority: optional Section: doc Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: dbus-glib Version: 0.100.2-1 Depends: lynx | www-browser Suggests: devhelp Filename: pool/main/d/dbus-glib/libdbus-glib-1-doc_0.100.2-1_all.deb Size: 51344 MD5sum: 2f606bf2d61730b9d807bd08b4e34d2a SHA1: 9836dad28556ccb98e5ace6790f178024e4c2600 SHA256: 5d3b737f30992525df808351b7181de3aef2f48556952553872693aa965520e3 Description: simple interprocess messaging system (GLib library documentation) Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings Description-md5: 3a88be189c8cacf1869dd0947bf8992c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-glib-dev Priority: optional Section: libdevel Installed-Size: 484 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: gir1.2-dbusmenu-glib-0.4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbusmenu-glib4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbus-glib-1-dev (>= 0.76), libgtk2.0-dev (>= 2.12.0) Filename: pool/main/libd/libdbusmenu/libdbusmenu-glib-dev_12.10.3+14.04.20140319-0ubuntu1_amd64.deb Size: 60250 MD5sum: 4ba1b68fc56d5f6f2fe333ed4c82d796 SHA1: d13975c24b5d9f4757ff51947e579411d68f8baa SHA256: ce7b4d62fe2c07e450d3d63d0d539f0166f68c987ece421ac1a7b136ebae45d2 Description: library for passing menus over DBus - development files Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 58fdbd052d2353e5107fe93d2ee4c2dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-glib-doc Priority: optional Section: doc Installed-Size: 379 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: all Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Filename: pool/main/libd/libdbusmenu/libdbusmenu-glib-doc_12.10.3+14.04.20140319-0ubuntu1_all.deb Size: 29440 MD5sum: e3ca18498f08845bacc342b64e927508 SHA1: 322fa63400425076d008f12965cc74381f032815 SHA256: f2a5c6863f8ffbbcae2eec507cbce40e06ae6e9bee8b8b16c00e17ca82bf28f3 Description: library for passing menus over DBus - documentation Homepage: https://launchpad.net/dbusmenu Description-md5: 1ffdc025924bc65b6e7979b1ccb175c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-glib4 Priority: optional Section: libs Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Pre-Depends: multiarch-support Filename: pool/main/libd/libdbusmenu/libdbusmenu-glib4_12.10.3+14.04.20140319-0ubuntu1_amd64.deb Size: 39906 MD5sum: 63fe799be8013ea98f5da343de24f238 SHA1: d378403071a83b81d62c4a6e34a49cd36e746d38 SHA256: bfdf6cb1703870bad18034bc7c70e2efde203a25db3ed90fa6b46f3cf27a4b0c Description: library for passing menus over DBus Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: a6315d20d559a38a0d81a231c032d91e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdbusmenu-gtk-dev Priority: optional Section: libdevel Installed-Size: 250 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: gir1.2-dbusmenu-gtk-0.4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbusmenu-gtk4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbus-glib-1-dev (>= 0.76), libgtk2.0-dev (>= 2.12.0), libdbusmenu-glib-dev Filename: pool/main/libd/libdbusmenu/libdbusmenu-gtk-dev_12.10.3+14.04.20140319-0ubuntu1_amd64.deb Size: 33622 MD5sum: 787d92abc37557d3a522d236a390ff1f SHA1: 5e8850fb92bfe76cf303e0e8bb9cbecc87b163c0 SHA256: 532988bdf0d1bc82f7767e3fb4285262e2e53e4cba6a0693bd5ff10fc75a2dce Description: library for passing menus over DBus - GTK+ version developement files Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 67bb3e998dab738032b93e4b5bb82284 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-gtk-doc Priority: optional Section: doc Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: all Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Filename: pool/main/libd/libdbusmenu/libdbusmenu-gtk-doc_12.10.3+14.04.20140319-0ubuntu1_all.deb Size: 15940 MD5sum: 715e069cd65e1eded9e726e90e4478cd SHA1: 9197fce78c24b1ed1fe8fc32434772743209f104 SHA256: e7b3036f35ac87e71f61c5aac955919ca300014ecae006ca4a108bbe5777ce4a Description: library for passing menus over DBus - GTK+ version documentation Homepage: https://launchpad.net/dbusmenu Description-md5: a7a9a931f5576eb00980d2018473e7f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-gtk3-4 Priority: optional Section: libs Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.2.5), libdbusmenu-glib4 (>= 0.5.90), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.14.0) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbusmenu/libdbusmenu-gtk3-4_12.10.3+14.04.20140319-0ubuntu1_amd64.deb Size: 26266 MD5sum: ab1ab18142332853affd79791f562961 SHA1: 3379916836ef601976b05f469ced96c8730f9c6a SHA256: 13b4f3623836d77a8385602b58e0c3548fc5227f219b6be1d477adcb6f898d31 Description: library for passing menus over DBus - GTK+ version Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 4ba40d4f9c3c572696eb980868211738 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdbusmenu-gtk3-dev Priority: optional Section: libdevel Installed-Size: 251 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: gir1.2-dbusmenu-gtk3-0.4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbusmenu-gtk3-4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbus-glib-1-dev (>= 0.76), libgtk-3-dev (>= 2.91.4-0ubuntu1), libdbusmenu-glib-dev Filename: pool/main/libd/libdbusmenu/libdbusmenu-gtk3-dev_12.10.3+14.04.20140319-0ubuntu1_amd64.deb Size: 33708 MD5sum: 948a96b4525c508c569ef634b7d55a9f SHA1: 6b73af569635e724604be5dabdf135f9a35de71e SHA256: fb95185bc46b0674b049f2d42e0603e9f6b3015b39151875b164dd853da8aa3d Description: library for passing menus over DBus - GTK+ version developement files Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 67bb3e998dab738032b93e4b5bb82284 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-gtk4 Priority: optional Section: libs Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.2.5), libdbusmenu-glib4 (>= 0.5.90), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.14.0) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbusmenu/libdbusmenu-gtk4_12.10.3+14.04.20140319-0ubuntu1_amd64.deb Size: 26332 MD5sum: 6aff0bebcfd7442057f37236238b0c54 SHA1: e2e9d44b3d580dcc19ed712eb112c900fe33e2b8 SHA256: 21308bf922639a7b3afe3387f17049b15301cf4cffe9a0e9cd76be036373701a Description: library for passing menus over DBus - GTK+ version Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 4ba40d4f9c3c572696eb980868211738 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdbusmenu-jsonloader-dev Priority: optional Section: libdevel Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libdbusmenu-jsonloader4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbus-glib-1-dev (>= 0.76), libdbusmenu-glib-dev (= 12.10.3+14.04.20140319-0ubuntu1), libjson-glib-dev Filename: pool/main/libd/libdbusmenu/libdbusmenu-jsonloader-dev_12.10.3+14.04.20140319-0ubuntu1_amd64.deb Size: 5066 MD5sum: b0b510ad4df95299ab67b998453ec736 SHA1: 29a2e04c61553a61ab6a76f8c9757c0708dd201a SHA256: 9c95938d832441a433bf20af2eb44e0f2a27ad0e8535690616825625d22c1427 Description: library for passing menus over DBus - Test lib development files Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: ee7366a5b0c7b5d39e6c8d71e57cb54f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-jsonloader4 Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Pre-Depends: multiarch-support Filename: pool/main/libd/libdbusmenu/libdbusmenu-jsonloader4_12.10.3+14.04.20140319-0ubuntu1_amd64.deb Size: 7042 MD5sum: 97d77666c6bee4f238ea439aaced2c18 SHA1: af4d6099561cf46017c887abd0d894db554de5e5 SHA256: 61a750cc3346b6d0067735d47bf721b143a879801e3df55e2f1f5d81c2d24cc1 Description: library for passing menus over DBus - Test lib Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 31f242c10f2e529e839b458606442772 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-qt-dev Priority: optional Section: libdevel Installed-Size: 75 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: amd64 Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libdbusmenu-qt2 (= 0.9.3+14.04.20140314-0ubuntu1), libqt4-dev Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt-dev_0.9.3+14.04.20140314-0ubuntu1_amd64.deb Size: 6912 MD5sum: 78b970f789cb46f267752501bb1c545d SHA1: 26dad31e319f80f804eee3f501c880972ff460bf SHA256: 11aa28b705db5abe856a3d07db949cebd2375de973dc4a000d03a52225031bf4 Description: Qt implementation of the DBusMenu protocol (development) Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: 96bb127582683d0569a1c58e2c1ecb45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-qt-doc Priority: optional Section: doc Installed-Size: 263 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: all Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libjs-jquery Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt-doc_0.9.3+14.04.20140314-0ubuntu1_all.deb Size: 40826 MD5sum: f613acb24bfc69357b99814af2870b4d SHA1: 1773ded69579c676dd7870fb516bc988a0345385 SHA256: 04752c7906f9ed0f1f769b3aed1174a3efb1e26889e9d6573b3f0625bcc5574d Description: Qt implementation of the DBusMenu protocol (documentation) Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: ad7ef979e88a0b8aa837faede69206db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-qt2 Priority: optional Section: libs Installed-Size: 241 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: amd64 Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.7.0~beta2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt2_0.9.3+14.04.20140314-0ubuntu1_amd64.deb Size: 72170 MD5sum: 27af8e386279885f47938b720d8d3e2c SHA1: cb9587b93b1ae197a7038a45fb45e56665cc28e4 SHA256: ba706b956e8ca28f3a202d8ff89fc94d8cbef6947918fa963437544a547780ab Description: Qt implementation of the DBusMenu protocol Multi-Arch: same Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: 766edd98073f4d3a21908d0cdef3b2f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: libdbusmenu-qt5 Priority: optional Section: libs Installed-Size: 246 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: amd64 Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Suggests: libqt5dbus5, libqt5gui5, libqt5widgets5 Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt5_0.9.3+14.04.20140314-0ubuntu1_amd64.deb Size: 71350 MD5sum: 9bc4ce00d084d1b7a173aeec3493dcd6 SHA1: fc309f3b4602f2e6ab4c1d0fe142595111e05ba4 SHA256: ca06d2bdc705bc98e78890de0fac0c4213cbdd4d6d1d214a5204e117a633c7ca Description: Qt5 implementation of the DBusMenu protocol Multi-Arch: same Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: b41fc7ee924555e1c2013886fe3c4e28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libdbusmenu-qt5-dev Priority: optional Section: libdevel Installed-Size: 75 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: amd64 Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libdbusmenu-qt5 (= 0.9.3+14.04.20140314-0ubuntu1), qtbase5-dev Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt5-dev_0.9.3+14.04.20140314-0ubuntu1_amd64.deb Size: 6932 MD5sum: d0115c2f86db94918d06e81131405a44 SHA1: b1c5213c97091a4dfda8e16dd08f13baea6cc8e6 SHA256: 21848705aa00db1e9c5ec8a6bf0aae2b713db92a539d0b98aa81c5254796427c Description: Qt5 implementation of the DBusMenu protocol (development) Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: 7316f530720c097bef78ae3b5660df5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-qt5-doc Priority: optional Section: doc Installed-Size: 263 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: all Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libjs-jquery Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt5-doc_0.9.3+14.04.20140314-0ubuntu1_all.deb Size: 40832 MD5sum: 0382540e846ede9f88a4c0ca64abe157 SHA1: 2b44cf683e15f11ff957fc3fe33c509bbf8286f5 SHA256: e971601d858947fee4d464d615dcd6f6cdcc58913513c28ee49f1b3a118d1cf4 Description: Qt5 implementation of the DBusMenu protocol (documentation) Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: e6e9bf1b1d902742b48a46005ae5ba10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbustest1 Priority: optional Section: libs Installed-Size: 131 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: dbus-test-runner Version: 14.04.1+14.04.20140320-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3) Recommends: python3-dbusmock Filename: pool/main/d/dbus-test-runner/libdbustest1_14.04.1+14.04.20140320-0ubuntu1_amd64.deb Size: 29472 MD5sum: 6bd440904f064a962a7ff2694a88f615 SHA1: 4260796a4d381081248943dcce9a39b783d47f99 SHA256: cfedbcaf092d8f096c6fdc894f0011347c0e210184e1e37824f414e673761a46 Description: Runs tests under a new DBus session Multi-Arch: same Homepage: https://launchpad.net/dbus-test-runner Description-md5: b819ee72bb8252917f5d12ee31a140ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbustest1-dev Priority: optional Section: libdevel Installed-Size: 71 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: dbus-test-runner Version: 14.04.1+14.04.20140320-0ubuntu1 Depends: libglib2.0-dev, libdbustest1 (= 14.04.1+14.04.20140320-0ubuntu1) Filename: pool/main/d/dbus-test-runner/libdbustest1-dev_14.04.1+14.04.20140320-0ubuntu1_amd64.deb Size: 4308 MD5sum: c5da21c9d20d3fdc1c3aec4ab8ee21a2 SHA1: 543dfdb81a7a4f073ca899566ea2c37849437c68 SHA256: 7360e17f748f8bacc5f47d130c6504e4c58978eaf05ed84b3cba0b70694abb73 Description: Runs tests under a new DBus session Multi-Arch: same Homepage: https://launchpad.net/dbus-test-runner Description-md5: c23166453f6694d3b290d878db7e207e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-dbg Priority: extra Section: debug Installed-Size: 229 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: d-conf Version: 0.20.0-1 Depends: libdconf1 (= 0.20.0-1) Filename: pool/main/d/d-conf/libdconf-dbg_0.20.0-1_amd64.deb Size: 48826 MD5sum: 2ad25bd43413563ceb5232cd6f90d515 SHA1: 9a0939fe675d769f9622d32f6385e9b1d67c4445 SHA256: 738ff490eff3c6686a5d2cde2e266670b7254fd1220db2b57b0e8fcc593a606b Description: simple configuration storage system - debugging symbols Multi-Arch: same Homepage: https://wiki.gnome.org/dconf Description-md5: 9f29eee974332ab712be9d4e3b38dc3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-dbus-1-0 Priority: optional Section: libs Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: d-conf Version: 0.20.0-1 Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libglib2.0-0 (>= 2.39.1), libdconf1 (= 0.20.0-1) Pre-Depends: multiarch-support Filename: pool/main/d/d-conf/libdconf-dbus-1-0_0.20.0-1_amd64.deb Size: 19858 MD5sum: e2ed60fc15833d819098b9f236a5a095 SHA1: 4a52752d364cb73ab4a5c72df40a7e99816068aa SHA256: f340e8f066f7bc93ffaaff03eee81bbd0fd79e63b0f79a8da89151bf8587fa6a Description: simple configuration storage system - D-Bus library Multi-Arch: same Homepage: https://wiki.gnome.org/dconf Description-md5: b4c812c63f2e0c9c75235c294edc9d00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-dbus-1-dbg Priority: extra Section: debug Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: d-conf Version: 0.20.0-1 Depends: libdconf-dbus-1-0 (= 0.20.0-1) Filename: pool/main/d/d-conf/libdconf-dbus-1-dbg_0.20.0-1_amd64.deb Size: 46270 MD5sum: 074ecb8464af69aeee53338e6d36c8d7 SHA1: 9c5188731c870a5ec970287fb939b8adfcfc3a6b SHA256: 10aeb93e1dc09115cec627800d43625294ce4ed048c24bae8545170ff851c83e Description: simple configuration storage system - D-Bus debug symbols Multi-Arch: same Homepage: https://wiki.gnome.org/dconf Description-md5: b374a9264268fcabd65e57a147b475a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-dbus-1-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: d-conf Version: 0.20.0-1 Depends: libdconf-dbus-1-0 (= 0.20.0-1), libglib2.0-dev, libdbus-1-dev Filename: pool/main/d/d-conf/libdconf-dbus-1-dev_0.20.0-1_amd64.deb Size: 2678 MD5sum: a6985cc0c71112bb51e0d7764dfc311c SHA1: 047d02ebc2980beb1070e6ab9b99e7f75c85f3c0 SHA256: a6d9681a08a2e7c12c8ef4d1e979887f2097481bab2d286a46f477d4317a7d07 Description: simple configuration storage system - D-Bus development files Homepage: https://wiki.gnome.org/dconf Description-md5: 77b935cb77a45744b41f7fe36924e8dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-dev Priority: extra Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: d-conf Version: 0.20.0-1 Replaces: valac (<< 0.9.5) Depends: libdconf1 (= 0.20.0-1), libglib2.0-dev (>= 2.25.7) Recommends: libdconf-doc Breaks: valac (<< 0.9.5) Filename: pool/main/d/d-conf/libdconf-dev_0.20.0-1_amd64.deb Size: 4270 MD5sum: 58fde5891229a9fd8a206b54b1a6673a SHA1: 81161a6a4ce2d4e9b111842a4ff690eab7e2e602 SHA256: 4e6c195052555ece939e0c798270072aa1aeae1ec7ae7eee0a252960d5fae4e5 Description: simple configuration storage system - development files Homepage: https://wiki.gnome.org/dconf Description-md5: 8a468e7db91abdc3f6a00615352bdbd2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-doc Priority: optional Section: doc Installed-Size: 222 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: d-conf Version: 0.20.0-1 Filename: pool/main/d/d-conf/libdconf-doc_0.20.0-1_all.deb Size: 33424 MD5sum: 67fe6ef044d016d6a4ca3b8097507752 SHA1: 2cb5af80a7aef1ede521b1319440600efea467f6 SHA256: 7c22bec5df66084e3e5ace0870036e6cf689397abe0652f5f9f2d15d66b942b4 Description: simple configuration storage system - documentation Homepage: https://wiki.gnome.org/dconf Description-md5: 91ad4a904f2b2483abe22942755105f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf1 Priority: optional Section: libs Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: d-conf Version: 0.20.0-1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.39.1) Pre-Depends: multiarch-support Breaks: dconf-gsettings-backend (<< 0.10.0), gdm3 (<< 3.4.1-9) Filename: pool/main/d/d-conf/libdconf1_0.20.0-1_amd64.deb Size: 31466 MD5sum: 3c6adca1043585fcf3b1a45632b9c8f1 SHA1: c22c5b77aa0737bc77aee5450ffa5d57fa6edcd0 SHA256: b242688ce081bd648cb441b940c113fe3f3d73252169906fa314650e2ece53e3 Description: simple configuration storage system - runtime library Multi-Arch: same Homepage: https://wiki.gnome.org/dconf Description-md5: 468650903e334e192e00b3ec386e4f42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdebconfclient0 Priority: required Section: libs Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: amd64 Source: cdebconf Version: 0.187ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/c/cdebconf/libdebconfclient0_0.187ubuntu1_amd64.deb Size: 6662 MD5sum: 6e445ba429a00d5b7341ce401bad72df SHA1: c78427e0b6ce7229507b840285ee64df566cac42 SHA256: b863f6e00dd950f6073cf7719e1532f279bd72cba1b12a7a0d1729fc03cf15d2 Description: Debian Configuration Management System (C-implementation library) Multi-Arch: same Description-md5: b378bda47ef5bd480fd87eac7a8cd0fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libdebconfclient0-dev Priority: optional Section: libdevel Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: amd64 Source: cdebconf Version: 0.187ubuntu1 Replaces: libdebconf-dev Provides: libdebconfclient-dev Depends: libdebconfclient0 (= 0.187ubuntu1) Conflicts: cdebconf-dev, libcdebconf-dev, libdebconf-dev, libdebconfclient-dev Filename: pool/main/c/cdebconf/libdebconfclient0-dev_0.187ubuntu1_amd64.deb Size: 9254 MD5sum: aa0729a4ebf3f3f627f7c19f6b15bc68 SHA1: 06e8e778a7d818525a3202e7f9baafbe4de96dc9 SHA256: 2adc727b37b7f25724b04f6f892a11715d861cda9f78d2d03601aa2368ad7d35 Description: Development files for cdebconf Multi-Arch: same Description-md5: 1a0c286931d2b4648ca209c2b325b1a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdebian-dpkgcross-perl Priority: extra Section: perl Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian Embedded Group Architecture: all Source: dpkg-cross Version: 2.6.11ubuntu1 Depends: perl, file, dpkg-dev (>> 1.14.6), libfile-temp-perl, libconfig-auto-perl, libfile-homedir-perl, liblocale-gettext-perl Filename: pool/main/d/dpkg-cross/libdebian-dpkgcross-perl_2.6.11ubuntu1_all.deb Size: 15894 MD5sum: 26e73fcef1c79353fcd812cfe1412614 SHA1: 5ec4e586c4e2f39b892f1213cf145246ca14410a SHA256: fd6b5270e83e24446353b21d8d137f01bc9ebe8663077d46765901f422b69aba Description: functions to aid cross-compiling Debian packages Homepage: http://dpkg-cross.alioth.debian.org/ Description-md5: db09ab9b6aecc2d54799cd5bbea2c491 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdebian-installer-extra4 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: amd64 Source: libdebian-installer Version: 0.88ubuntu4 Depends: libc6 (>= 2.7), libdebian-installer4 (= 0.88ubuntu4) Filename: pool/main/libd/libdebian-installer/libdebian-installer-extra4_0.88ubuntu4_amd64.deb Size: 5150 MD5sum: 020da1705a712d67726370b7afd7649a SHA1: 5e2b286a7d4a785460c676c55eba99e21dcf42f9 SHA256: ee67e91b5b677b0004be0adee4ddcc5c161a462ccf52046b084e5aac7ab0cd42 Description: Library of some extra debian-installer functions Multi-Arch: same Description-md5: 32e7f9f03c25886318648f08caae21cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdebian-installer4 Priority: optional Section: libs Installed-Size: 98 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: amd64 Source: libdebian-installer Version: 0.88ubuntu4 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libd/libdebian-installer/libdebian-installer4_0.88ubuntu4_amd64.deb Size: 21184 MD5sum: 44e5ac6da20c331d37a0ac39180db877 SHA1: 62d16c74db283683cdfa683454e963b831a99eec SHA256: 5994c7f8fa272b159c2f518eeefb845a22ae2a6d3416b2de14c10e2f4c1ba41f Description: Library of common debian-installer functions Multi-Arch: same Description-md5: 00094361ed8983bbb1d7b850c62f3e1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libdebian-installer4-dev Priority: optional Section: libdevel Installed-Size: 1670 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: amd64 Source: libdebian-installer Version: 0.88ubuntu4 Provides: libdebian-installer-dev Depends: libdebian-installer4 (= 0.88ubuntu4), libdebian-installer-extra4 (= 0.88ubuntu4) Conflicts: libdebian-installer-dev Filename: pool/main/libd/libdebian-installer/libdebian-installer4-dev_0.88ubuntu4_amd64.deb Size: 114608 MD5sum: f11c18a7d11c6b96fd94ccd5d4439d9c SHA1: 14cba603ffb077c3e757fc55d28cc9d8082e226d SHA256: 9d51d35de1aa0d42cd947cd6d2c3f35ba9e8a433afa131809312adc47e4f9e1c Description: Library of common debian-installer functions Description-md5: 814b97674c6f9c4cc2c9d5abc86ff4f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdecoration0 Priority: optional Section: x11 Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Depends: libc6 (>= 2.4), libx11-6, libxrender1 Filename: pool/main/c/compiz/libdecoration0_0.9.11+14.04.20140409-0ubuntu1_amd64.deb Size: 46976 MD5sum: 69e9041f868c5e1e4f03a30f206e2d09 SHA1: 7e0cf45d3ad033dca801b0a48d47fe4733a0d512 SHA256: 61cc1107ab5e78f82f6b127850e926f2324ae9ac3501b8cf4af257ea6b43ddf1 Description: Compiz window decoration library Description-md5: d54ec3ae170fe82084878bdc1b4f8687 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libdecoration0-dev Priority: optional Section: x11 Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Depends: libdecoration0 (= 1:0.9.11+14.04.20140409-0ubuntu1), libx11-dev, libxrender-dev (>= 1:0.9.1) Filename: pool/main/c/compiz/libdecoration0-dev_0.9.11+14.04.20140409-0ubuntu1_amd64.deb Size: 6894 MD5sum: 7266badc6b8a7a8197a3ea6e3ba4554f SHA1: 4ddfb45613d6466fe320513fe8fcd05b4383c03a SHA256: 0ae54c6cb2e845d9993e862cc2530a989f5f5043ac4c9db2534d9dfe3cef4ff4 Description: Compiz window decoration library - development files Description-md5: 6a66c25de23fa410e973153207110423 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-1.0-4 Priority: optional Section: libs Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: amd64 Source: dee Version: 1.2.7+14.04.20140324-0ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libicu52 (>= 52~m1-1~) Pre-Depends: multiarch-support Filename: pool/main/d/dee/libdee-1.0-4_1.2.7+14.04.20140324-0ubuntu1_amd64.deb Size: 75352 MD5sum: 3a124f04fadf5a3ebb68f81e917f718d SHA1: 75e0e7f6f98d6e469087d70f6b8ef8d7507133b1 SHA256: 813cb8a4f7677f8a14741c1015e1cce38ebe6721ef31746eff336ecd6ba5e62c Description: model to synchronize multiple instances over DBus - shared lib Multi-Arch: same Homepage: https://launchpad.net/dee Description-md5: 7515a92a14357ed2c6efcfe54eae04b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdee-1.0-4-dbg Priority: extra Section: debug Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: amd64 Source: dee Version: 1.2.7+14.04.20140324-0ubuntu1 Depends: libdee-1.0-4 (= 1.2.7+14.04.20140324-0ubuntu1) Filename: pool/main/d/dee/libdee-1.0-4-dbg_1.2.7+14.04.20140324-0ubuntu1_amd64.deb Size: 277954 MD5sum: 69d94321b1f0b6d98be8e7672f9b7af9 SHA1: 7df19e8f5553df36017ffad0850210af2ee050c0 SHA256: 15de3f9a76e3477e5cf6d501d7343098415454a266e4ec47dd9f7e1153fdd309 Description: model to synchronize multiple instances over DBus Multi-Arch: same Homepage: https://launchpad.net/dee Description-md5: 1b25071dd4527b6b7599ca16ec39b41d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-dev Priority: optional Section: libdevel Installed-Size: 610 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: amd64 Source: dee Version: 1.2.7+14.04.20140324-0ubuntu1 Depends: libdee-1.0-4 (= 1.2.7+14.04.20140324-0ubuntu1), gir1.2-dee-1.0, libglib2.0-dev (>= 2.22.0), libdbus-glib-1-dev (>= 0.80) Suggests: libdee-doc Filename: pool/main/d/dee/libdee-dev_1.2.7+14.04.20140324-0ubuntu1_amd64.deb Size: 44000 MD5sum: aa22985c2797d110a6641622af1fbc11 SHA1: 6d930cd783025bac538fe3a78e3010c8139a43ab SHA256: aa38525759dfbd25c4072fa806b26a45b4fc4a641d44f4ad0e6ef9f0021778f5 Description: model to synchronize multiple instances over DBus - dev files Homepage: https://launchpad.net/dee Description-md5: 6851491fad355b0d3a4ee0086a377d34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-doc Priority: optional Section: doc Installed-Size: 776 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: all Source: dee Version: 1.2.7+14.04.20140324-0ubuntu1 Suggests: devhelp Filename: pool/main/d/dee/libdee-doc_1.2.7+14.04.20140324-0ubuntu1_all.deb Size: 58462 MD5sum: 00d7032c53c7c4ee7cd63ba0b1572f51 SHA1: 5b359921487500f656a6a66e576f683f32b6125d SHA256: d0860b31d09d884d26d19dd503e726ddb1ab50de731cd1367069b34689577a14 Description: model to synchronize multiple instances over DBus - documentation Homepage: https://launchpad.net/dee Description-md5: 11e5cff5e70ffaff6a342d3d4a0ef736 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-qt4-3 Priority: optional Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Olivier Tilloy Architecture: amd64 Source: dee-qt Version: 3.3+14.04.20140317-0ubuntu1 Depends: libdee-1.0-4 (>= 0.5.2), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1), libqt4-dbus, libqt4-declarative Pre-Depends: multiarch-support Filename: pool/main/d/dee-qt/libdee-qt4-3_3.3+14.04.20140317-0ubuntu1_amd64.deb Size: 16414 MD5sum: 1aa30c429505677971fa12271a2bf683 SHA1: 3d54c8365ae03f076967157fff0c36ed598999e4 SHA256: b17b76ecb8ebf6454d70c8af440664452c2c6b9587fbb435dd7d0f62cafb3e27 Description: Qt4 binding for Dee - shared library Multi-Arch: same Homepage: https://launchpad.net/dee-qt Description-md5: 4a30dc66e0016030ab14f687ab5e17b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-qt4-dev Priority: optional Section: libdevel Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Olivier Tilloy Architecture: amd64 Source: dee-qt Version: 3.3+14.04.20140317-0ubuntu1 Replaces: libqtdee-dev Provides: libqtdee-dev Depends: libdee-qt4-3 (= 3.3+14.04.20140317-0ubuntu1), libqt4-dev (>= 4.7), libdee-dev (>= 1.0.0) Conflicts: libqtdee-dev Filename: pool/main/d/dee-qt/libdee-qt4-dev_3.3+14.04.20140317-0ubuntu1_amd64.deb Size: 2772 MD5sum: 5fee10b8614c437ad57fa1a641a79ef5 SHA1: f0b8bf3d8fa0fc11d459a9c74c758206e50b74fc SHA256: ebf4a41e49146a3ef3714e8b602911e8aea34ed9bdc7c05abd6e38e2102a7f90 Description: Qt binding for Dee - development files Homepage: https://launchpad.net/dee-qt Description-md5: ca2373cd878f932f15a9892fe12cae84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-qt5-3 Priority: optional Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Olivier Tilloy Architecture: amd64 Source: dee-qt Version: 3.3+14.04.20140317-0ubuntu1 Depends: libc6 (>= 2.2.5), libdee-1.0-4 (>= 0.5.2), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/d/dee-qt/libdee-qt5-3_3.3+14.04.20140317-0ubuntu1_amd64.deb Size: 17252 MD5sum: 0364706454c4000b3faa7820428abbc7 SHA1: d404d8a7c6992aab47a00b765e7389cb21515627 SHA256: 444c5b6e66625d5bd63454a604b36136f311873e1b7177464387a5f299cd8fa7 Description: Qt5 binding for Dee - shared library Multi-Arch: same Homepage: https://launchpad.net/dee-qt Description-md5: aec6908c79bf56620b44026260c1da22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-qt5-dev Priority: optional Section: libdevel Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Olivier Tilloy Architecture: amd64 Source: dee-qt Version: 3.3+14.04.20140317-0ubuntu1 Depends: libdee-qt5-3 (= 3.3+14.04.20140317-0ubuntu1), libdee-dev (>= 1.0.0) Filename: pool/main/d/dee-qt/libdee-qt5-dev_3.3+14.04.20140317-0ubuntu1_amd64.deb Size: 2770 MD5sum: bb91a7e83498aa54ebb63fd0f047963d SHA1: fabf207808884f6957e88ce242435f442c27d8ef SHA256: 1c4bb36d4710d3e495bf24630525caf3372f4e5cbe0651241afbea290af4b3d9 Description: Qt5 binding and QtQuick2 plugin for Dee - development files Multi-Arch: same Homepage: https://launchpad.net/dee-qt Description-md5: 40eaf02e7d38ac76fa416e7abf5abf4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-caller-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 2.06-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5), libpadwalker-perl Filename: pool/main/libd/libdevel-caller-perl/libdevel-caller-perl_2.06-1build1_amd64.deb Size: 12132 MD5sum: aac7458aedc95a0c553f467e67246aeb SHA1: 2c120c9e8871fa9c3497c970fd1d159487052fbf SHA256: 62fd717d235409868aafba8403b9555007556674d8e4ce41306746f200bb46cb Description: module providing enhanced caller() support Homepage: https://metacpan.org/release/Devel-Caller/ Description-md5: ad0dfe370ee7ed1b42895e16e40aafe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-cover-perl Priority: optional Section: perl Installed-Size: 582 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.08-1ubuntu2 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.3.4), perl (<< 5.18.3~) Suggests: libbrowser-open-perl, libjson-xs-perl, libpod-coverage-perl, libppi-html-perl | perltidy, libtemplate-perl, libtest-differences-perl Filename: pool/main/libd/libdevel-cover-perl/libdevel-cover-perl_1.08-1ubuntu2_amd64.deb Size: 184374 MD5sum: d3bcebea3d001cdacacd616f7d09d1ea SHA1: 9d0e8036ccc00be714047e0e05885b4e2f562c89 SHA256: afa103a87dc8a908ff2fdd6369105b4cbf4f81292f3634921be5b3f987bf3ce7 Description: Perl tool for determining code coverage metrics Homepage: https://metacpan.org/release/Devel-Cover/ Description-md5: 14aa017ee7cc6570ae7dd3bfb556e39c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-cycle-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.11-2 Depends: perl Suggests: libpadwalker-perl Filename: pool/main/libd/libdevel-cycle-perl/libdevel-cycle-perl_1.11-2_all.deb Size: 11734 MD5sum: 206bd223e4362ab3dac2050e609f6ab1 SHA1: 08960b22cb85df20fca799eca18c0604242c4ec7 SHA256: 6683cfce0579c7982685cc0fdc861a876496c0d809eec27065b85209feb800bc Description: Perl module to detect memory cycles in Perl objects Homepage: http://search.cpan.org/dist/Devel-Cycle/ Description-md5: ce8d683024731355a4200a498ff50253 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-declare-perl Priority: optional Section: perl Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.006015-1 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.14), libb-hooks-endofscope-perl, libb-hooks-op-check-perl (>= 0.19), libsub-name-perl Filename: pool/main/libd/libdevel-declare-perl/libdevel-declare-perl_0.006015-1_amd64.deb Size: 31048 MD5sum: 86e6ae9b13e487c007a1d9843ce71a7a SHA1: 08e5e46dfd18d5ad518ef07d2587bbb9d34f0ce0 SHA256: 58095ed49ee9e55a221e017c35764a3c8ec2d365947f6167b1597f4bd2b0db93 Description: module to add new syntax to Perl Homepage: https://metacpan.org/release/Devel-Declare/ Description-md5: b1fb2e3a206c7c529fa629292fa647a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-globaldestruction-perl Priority: optional Section: perl Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.12-1 Depends: perl (>= 5.14.0), libsub-exporter-progressive-perl Filename: pool/main/libd/libdevel-globaldestruction-perl/libdevel-globaldestruction-perl_0.12-1_all.deb Size: 7858 MD5sum: 1d68209d82bc5ae75d1114ebec785138 SHA1: 3cde642dde0ba02934052f7ad7758ace382fa87b SHA256: 19846cbf52486ee963bc75c5be1579fc82dd7e661d732cd93aeae9d764d1d6bb Description: module to expose the flag that marks global destruction Homepage: https://metacpan.org/release/Devel-GlobalDestruction/ Description-md5: 52ac232f589fd38c2f99c464fe256d6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-lexalias-perl Priority: optional Section: perl Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.05-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5), libdevel-caller-perl Filename: pool/main/libd/libdevel-lexalias-perl/libdevel-lexalias-perl_0.05-1build1_amd64.deb Size: 9962 MD5sum: 25afec426ad7d1b99cee3430df291529 SHA1: adf93eea8c010ce04c1c903c8146396ecc2e9da6 SHA256: 6c2972d32fc0c481e297e031d530c06f785bbeb4d9f9a8b7e6e2351b3cdf4770 Description: Perl module that provides alias lexical variables Homepage: https://metacpan.org/release/Devel-LexAlias/ Description-md5: 80abecf1b6cb0c7b68436eccabcd51ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-partialdump-perl Priority: optional Section: perl Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.17-1 Depends: perl, libclass-tiny-perl, libnamespace-clean-perl (>= 0.20), libsub-exporter-perl Filename: pool/main/libd/libdevel-partialdump-perl/libdevel-partialdump-perl_0.17-1_all.deb Size: 13564 MD5sum: 663ae5d7093afc8ce0e89cb2beb9aa0e SHA1: 68c26c4764fa7a4bf52ec55d4862bd9bbd2c9e49 SHA256: e924b8202f327086265845291124b7dfcfcea6e94805bd9b825459ae6d3116e6 Description: Perl module to dump subroutine parameters concisely Homepage: https://metacpan.org/release/Devel-PartialDump/ Description-md5: 54bf265531fcc2601d743c0e527fb225 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-stacktrace-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.3000-1 Depends: perl Filename: pool/main/libd/libdevel-stacktrace-perl/libdevel-stacktrace-perl_1.3000-1_all.deb Size: 19894 MD5sum: 7c6103eb49f678921c8fa682d7aa2057 SHA1: b019ef7ad227d3996028493e14de3d273fc44ee4 SHA256: 5597f7db3c0ba04449266092a42c59390ad5cdb7cd348c2fb1337eb6565036b4 Description: Perl module containing stack trace and related objects Homepage: http://search.cpan.org/dist/Devel-StackTrace/ Description-md5: 00a628b735f7b2b23ad12a8bc4664922 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-symdump-perl Priority: optional Section: perl Installed-Size: 66 Maintainer: Colin Watson Architecture: all Version: 2.11-2 Depends: perl Filename: pool/main/libd/libdevel-symdump-perl/libdevel-symdump-perl_2.11-2_all.deb Size: 13420 MD5sum: 9ac683b0280399e69445f5eae21d07c7 SHA1: 74ccef0983200698989185b3bae5ed5b4c8e83ba SHA256: 2e1ae9ab13c1a0a9224c7145d09cc6aaf7ad3703cae23ef8a3534da0775932eb Description: Perl module for inspecting perl's symbol table Homepage: http://search.cpan.org/dist/Devel-Symdump/ Description-md5: 0b924661c0d3111e3fb79cac3c9803f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdevhelp-3-2 Priority: optional Section: libs Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: devhelp Version: 3.8.2-2ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.6), libpango-1.0-0 (>= 1.14.0), libwebkitgtk-3.0-0 (>= 1.3.10), zlib1g (>= 1:1.1.4), devhelp-common (>= 3.8.2-2ubuntu1) Filename: pool/main/d/devhelp/libdevhelp-3-2_3.8.2-2ubuntu1_amd64.deb Size: 71174 MD5sum: 04813de6b363fb0fb39bb719fdc1d68e SHA1: 0763ea1d42b68109f540fe26a0025d3ec1459c9c SHA256: 86a716a7d49fa5a99e0008e4273bcbba1a9fe57a0076480954dacaef1b7bf6c2 Description: Library providing documentation browser functionality Homepage: https://wiki.gnome.org/devhelp Description-md5: 21ddcea70a9cb4ee9c6d175af1786078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libdevhelp-dev Priority: optional Section: libdevel Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: devhelp Version: 3.8.2-2ubuntu1 Depends: libdevhelp-3-2 (= 3.8.2-2ubuntu1), libgtk-3-dev (>= 3.5.6), libwebkitgtk-3.0-dev (>= 1.6.0) Filename: pool/main/d/devhelp/libdevhelp-dev_3.8.2-2ubuntu1_amd64.deb Size: 6064 MD5sum: 101def115aa561dfef10b870140d0309 SHA1: 4bce4bdad850a7aef0abde60d9072b120427bdff SHA256: e01c189f10650bf3610e1304b5e7bbde45b70af9345bc654673516ea3186bdb7 Description: Library providing documentation browser functionality (development) Homepage: https://wiki.gnome.org/devhelp Description-md5: 7b49d3b0b0dd45d57e9ee7c132199c03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevmapper-dev Priority: optional Section: libdevel Installed-Size: 135 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Source: lvm2 (2.02.98-6ubuntu2) Version: 2:1.02.77-6ubuntu2 Depends: libdevmapper1.02.1 (= 2:1.02.77-6ubuntu2), libdevmapper-event1.02.1 (= 2:1.02.77-6ubuntu2), libselinux1-dev, libudev-dev Filename: pool/main/l/lvm2/libdevmapper-dev_1.02.77-6ubuntu2_amd64.deb Size: 17208 MD5sum: 12de5e86225b0748fa85cd6f5a8cff91 SHA1: efb46b60f268d3d919a0c27b7be34dd87fc238e5 SHA256: 0e71f3024d2f8b66193f7d6ff6bcb9524751b84934aa16c7a044a5c238f4acc8 Description: Linux Kernel Device Mapper header files Multi-Arch: same Homepage: http://sources.redhat.com/lvm2/ Description-md5: cd4f4f9d4fde600f0d1e37da66d54c85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevmapper-event1.02.1 Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Source: lvm2 (2.02.98-6ubuntu2) Version: 2:1.02.77-6ubuntu2 Depends: libc6 (>= 2.15), libdevmapper1.02.1 (>= 2:1.02.63) Pre-Depends: multiarch-support Breaks: dmeventd (<< 2.02.95-4ubuntu1) Filename: pool/main/l/lvm2/libdevmapper-event1.02.1_1.02.77-6ubuntu2_amd64.deb Size: 10812 MD5sum: 094eb17d3fb1a5498f56536831d6417a SHA1: 2873ddde9dfa3897918fb48a470fdf6ba511e182 SHA256: 4d9c5319467cfeb84fd341839b240682a4f0b1fec092d1d1abe2637c9190bf29 Description: Linux Kernel Device Mapper event support library Multi-Arch: same Homepage: http://sources.redhat.com/lvm2/ Description-md5: 13d66a8a0057f6e6c6d6c2b25188a38d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libdevmapper1.02.1 Priority: important Section: libs Installed-Size: 301 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Source: lvm2 (2.02.98-6ubuntu2) Version: 2:1.02.77-6ubuntu2 Depends: libc6 (>= 2.14), libselinux1 (>= 1.32), libudev1 (>= 183), dmsetup (>= 2:1.02.77-6ubuntu2) Pre-Depends: multiarch-support Conflicts: libdevmapper1.02 Breaks: lvm2 (<< 2.02.66) Filename: pool/main/l/lvm2/libdevmapper1.02.1_1.02.77-6ubuntu2_amd64.deb Size: 93304 MD5sum: 01437601964f3d16cbede0c1c95ac15f SHA1: 2d325e7bd05c084fbaa462aec7c5f853133dc75b SHA256: 59fa509ce7bdef8376ea3c7bf64aa305f52411674ca65dca76304619cf124dc8 Description: Linux Kernel Device Mapper userspace library Multi-Arch: same Homepage: http://sources.redhat.com/lvm2/ Description-md5: f57d8a0a3606e56cb6cc150cb7a19e50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libdhash-dev Priority: extra Section: libdevel Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Depends: libdhash1 (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libdhash-dev_0.3.0.1-4_amd64.deb Size: 17056 MD5sum: ae401c90a22977d26eec9f6760fe0730 SHA1: 09c1c2a707f486dcd38c120beea3d08725fdb75a SHA256: 627d120b1f4a7054fcab3b7e75fdeaa3b6b387f99266b045e392c916782d9e6c Description: Development files for libdhash Homepage: https://fedorahosted.org/sssd/ Description-md5: fe73aeb2d9bd8c430796eb752ba7b30d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdhash1 Priority: extra Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Replaces: libdhash Provides: libdhash Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libdhash Filename: pool/main/d/ding-libs/libdhash1_0.3.0.1-4_amd64.deb Size: 8442 MD5sum: 1d0f93b7ac5c6242d60a77e8ec8907c7 SHA1: a3ded927736b97965ed139839c8e40f5fae09ce3 SHA256: 5e58065ec175725f85e753a21b7380c2590b0fc588c134752a6318d7eeb3cf21 Description: Dynamic hash table Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 0ca14de908fde381445369392f95dd0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdigest-hmac-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.03+dfsg-1 Depends: perl Filename: pool/main/libd/libdigest-hmac-perl/libdigest-hmac-perl_1.03+dfsg-1_all.deb Size: 12072 MD5sum: 7e10db441e0124fe8f0fe37ee9be74c3 SHA1: b50c708919a3c993e8298f0ac299b54dcc92f853 SHA256: c9fe7c086822e99131e4cd4b7075a964292684999f1ee2bedf4608bf7801dbfc Description: module for creating standard message integrity checks Homepage: http://search.cpan.org/dist/Digest-HMAC/ Description-md5: 70b680cf8c7387e1649b0563fe38d90d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdiscid-doc Priority: optional Section: doc Installed-Size: 318 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: all Source: libdiscid Version: 0.6.1-2 Depends: libjs-jquery Filename: pool/main/libd/libdiscid/libdiscid-doc_0.6.1-2_all.deb Size: 65216 MD5sum: 331512b63f557a02ae68539f07773f53 SHA1: f24d9b0d60675e1c5c50797a2a9aa8d8376f0b06 SHA256: e004e4f17421138dd715f58b7a4967cefe1cfc5080747b8f4e7271539cd545f4 Description: library for creating MusicBrainz DiscIDs (documentation) Multi-Arch: foreign Homepage: http://musicbrainz.org/doc/libdiscid Description-md5: fcfa93615ae573d7d31e819bce1ae97f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdiscid0 Priority: optional Section: libs Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: libdiscid Version: 0.6.1-2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Suggests: libdiscid0-dbg (= 0.6.1-2) Filename: pool/main/libd/libdiscid/libdiscid0_0.6.1-2_amd64.deb Size: 15588 MD5sum: 49979225ea2d5d1e6a1b40e3e707e17a SHA1: 7123d5a6af4322ae80c001935d73d7decc9f2c1a SHA256: 3994e7128e2f64e8475af3292988bf05003613676bbbda36016174f602f72d33 Description: library for creating MusicBrainz DiscIDs Multi-Arch: same Homepage: http://musicbrainz.org/doc/libdiscid Description-md5: 5344ed68feeead8556eb80f81eafd6f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, lubuntu-desktop Package: libdiscid0-dbg Priority: extra Section: debug Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: libdiscid Version: 0.6.1-2 Depends: libdiscid0 (= 0.6.1-2) Filename: pool/main/libd/libdiscid/libdiscid0-dbg_0.6.1-2_amd64.deb Size: 26642 MD5sum: 9e05294f857eee8be98373c478152fe3 SHA1: ba2c0792200a34b1f00617daf13ece6cd3e9d774 SHA256: 85743509c7585afef72ca2cfd8e70dc6bb804e7e7ffcaaaecb247679cc58fa4f Description: library for creating MusicBrainz DiscIDs (debugging symbols) Multi-Arch: same Homepage: http://musicbrainz.org/doc/libdiscid Description-md5: 59bb38546b37a2c8085df18e6afb4368 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdiscid0-dev Priority: optional Section: libdevel Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: libdiscid Version: 0.6.1-2 Depends: libdiscid0 (= 0.6.1-2) Suggests: libdiscid-doc Filename: pool/main/libd/libdiscid/libdiscid0-dev_0.6.1-2_amd64.deb Size: 49776 MD5sum: 566c9866e256f1827a11eac89356cc20 SHA1: 68305150bdc8db5ab3e083bc0eafbfe29373a252 SHA256: 2ace6da39f954b5732838e5a282e279a2a177138cdececa59531a2e60d437f2f Description: library for creating MusicBrainz DiscIDs (development files) Multi-Arch: same Homepage: http://musicbrainz.org/doc/libdiscid Description-md5: 7913462ea257bb6936e13f248507dc2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdist-checkconflicts-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.10-1 Depends: perl, liblist-moreutils-perl, libmodule-runtime-perl (>= 0.009) Filename: pool/main/libd/libdist-checkconflicts-perl/libdist-checkconflicts-perl_0.10-1_all.deb Size: 10058 MD5sum: d522001c5c4d8e9e98064266fca37c0f SHA1: 5eb267d3201f4b7c4dd4b19ac6573ae5279530c0 SHA256: 71834aba9cea5f869ff333e460967615239a410219fbce32da0cb16bb23a4f6f Description: module for declaring version conflicts for a distribution Homepage: https://metacpan.org/release/Dist-CheckConflicts/ Description-md5: 3ed68cbbfaa3fbc4f2e4e4db8290e3f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdistro-info-perl Priority: optional Section: perl Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Drung Architecture: all Source: distro-info Version: 0.12 Depends: distro-info-data, perl Filename: pool/main/d/distro-info/libdistro-info-perl_0.12_all.deb Size: 4682 MD5sum: b0fdea33bec6b92e33f7402a015e720e SHA1: dacd88150f716e814edea59fe16c6322ee2883ed SHA256: 14a1f301a981cf40fbf1cdea83c443403d0e77a5d57160ba82ff2fba05e7f10e Description: information about distributions' releases (Perl module) Description-md5: f417f8a2f224f083f2115d9569272b72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdjvulibre-dev Priority: optional Section: devel Installed-Size: 5885 Maintainer: Ubuntu Developers Original-Maintainer: Barak A. Pearlmutter Architecture: amd64 Source: djvulibre Version: 3.5.25.4-3 Depends: libdjvulibre21 (= 3.5.25.4-3), libjpeg-dev Filename: pool/main/d/djvulibre/libdjvulibre-dev_3.5.25.4-3_amd64.deb Size: 2362520 MD5sum: 249cef079cffb85dd0b278d3b85b6bff SHA1: 854734f070bc99e0a8d05011b62312bf5d8d7e37 SHA256: 3ee2684dd681a94d985ddb1fba7723717f66fe4a70a97d7c7b1e7f85ebb71382 Description: Development files for the DjVu image format Multi-Arch: same Homepage: http://djvu.sourceforge.net/ Description-md5: 7a47b77e06ba2a68a7aff0a9650a0118 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdjvulibre-text Priority: optional Section: libs Installed-Size: 382 Maintainer: Ubuntu Developers Original-Maintainer: Barak A. Pearlmutter Architecture: all Source: djvulibre Version: 3.5.25.4-3 Replaces: djview3 (= 3.5.20-9), djvulibre-desktop (<< 3.5.20-9), libdjvulibre15 Filename: pool/main/d/djvulibre/libdjvulibre-text_3.5.25.4-3_all.deb Size: 48840 MD5sum: 6b6fc3adede52eaec6490ab152480d98 SHA1: e54c2a243830263ab30a7ba60e6a83998db982dc SHA256: 35ecb11d65a2b48c4062313e68bf102388d7d2828d0956592e9c215f09de6c53 Description: Linguistic support files for libdjvulibre Multi-Arch: foreign Homepage: http://djvu.sourceforge.net/ Description-md5: d5fca3d4995b08f997ca3b715715e14b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdjvulibre21 Priority: optional Section: libs Installed-Size: 1649 Maintainer: Ubuntu Developers Original-Maintainer: Barak A. Pearlmutter Architecture: amd64 Source: djvulibre Version: 3.5.25.4-3 Replaces: libdjvulibre1, libdjvulibre15 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libjpeg8 (>= 8c), libstdc++6 (>= 4.1.1), libdjvulibre-text (>= 3.5.25.4-3) Pre-Depends: multiarch-support Conflicts: libdjvulibre1 Filename: pool/main/d/djvulibre/libdjvulibre21_3.5.25.4-3_amd64.deb Size: 553374 MD5sum: 4385e808ca87c8f6ca0dc58214bc62f4 SHA1: abd52dd8bdb712e8e0b97dbee6813c17423ebb06 SHA256: 1739c662e742b9787bf69451fd5142b73dea99c9963fab8e125e9cfba963d3a3 Description: Runtime support for the DjVu image format Multi-Arch: same Homepage: http://djvu.sourceforge.net/ Description-md5: 377e0a8fb1d56ba31c3feadafc4781b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdlm-dev Priority: optional Section: libdevel Installed-Size: 63 Maintainer: Andres Rodriguez Architecture: amd64 Source: dlm Version: 4.0.1-0ubuntu1 Replaces: libdlm-dev (<= 3.1.8-1.1) Depends: libdlm3 (= 4.0.1-0ubuntu1) Breaks: libdlm-dev (<= 3.1.8-1.1) Filename: pool/main/d/dlm/libdlm-dev_4.0.1-0ubuntu1_amd64.deb Size: 12876 MD5sum: 0f89d0f3e28a7788be2a96eb47825255 SHA1: 269e116015d335aa7b4c00d31b79ae514d2760c0 SHA256: c41094a06c3281af98e0bdf3560847a8799533734e7c6acd1468dbc70cd45c8a Description: DLM - distributed lock manager development files Homepage: https://git.fedorahosted.org/git/dlm.git Description-md5: 355f1dc46a5e6c94ed993f8849f5ed1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdlm3 Priority: optional Section: libs Installed-Size: 85 Maintainer: Andres Rodriguez Architecture: amd64 Source: dlm Version: 4.0.1-0ubuntu1 Replaces: libdlm3 (<= 3.1.8-1.1) Depends: libc6 (>= 2.4) Breaks: libdlm3 (<= 3.1.8-1.1), udev (<< 0.136-1) Filename: pool/main/d/dlm/libdlm3_4.0.1-0ubuntu1_amd64.deb Size: 15138 MD5sum: ef4b640e3d954ee40f951ec0a74994e1 SHA1: cae9807578b61103650c35581842a003da7b3848 SHA256: 6f61ce7723259078b161bf7f3ef22a4a8bc0ae5a000ff7c92730d9bdc1e90c12 Description: DLM - distributed lock manager library Homepage: https://git.fedorahosted.org/git/dlm.git Description-md5: 0f627d9f2c1694e4b99ad977bf755732 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdlmcontrol-dev Priority: optional Section: libdevel Installed-Size: 39 Maintainer: Andres Rodriguez Architecture: amd64 Source: dlm Version: 4.0.1-0ubuntu1 Replaces: libdlmcontrol-dev (<= 3.1.8-1.1) Depends: libdlmcontrol3 (= 4.0.1-0ubuntu1) Breaks: libdlmcontrol-dev (<= 3.1.8-1.1) Filename: pool/main/d/dlm/libdlmcontrol-dev_4.0.1-0ubuntu1_amd64.deb Size: 3214 MD5sum: fd59ad785be8085f3a25cfa509f54d55 SHA1: 16b90095f4cbcc4fa4f05793b35127bdecae1ddf SHA256: f31b0e784b0575b011e6e2a587c89a439d211ad2e186a5058713521c4e844343 Description: DLM - distributed lock manager development files Homepage: https://git.fedorahosted.org/git/dlm.git Description-md5: 355f1dc46a5e6c94ed993f8849f5ed1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdlmcontrol3 Priority: optional Section: libs Installed-Size: 50 Maintainer: Andres Rodriguez Architecture: amd64 Source: dlm Version: 4.0.1-0ubuntu1 Replaces: libdlmcontrol3 (<= 3.1.8-1.1) Depends: libc6 (>= 2.14) Breaks: libdlmcontrol3 (<= 3.1.8-1.1) Filename: pool/main/d/dlm/libdlmcontrol3_4.0.1-0ubuntu1_amd64.deb Size: 9490 MD5sum: c44a4ec748dc2f75936ac77b24684b88 SHA1: 8aa0f828712c491c1d4bb6aaa4317e2d88b184a9 SHA256: f93ddd6181bf0dc5a6c56c267380162f3e18116ebf050e41a4921b1393128801 Description: DLM - distributed lock manager library Homepage: https://git.fedorahosted.org/git/dlm.git Description-md5: 0f627d9f2c1694e4b99ad977bf755732 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdlrestrictions-dev Priority: extra Section: libdevel Installed-Size: 75 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: pkg-kde-tools Version: 0.15.12ubuntu1 Depends: libdlrestrictions1 (= 0.15.12ubuntu1) Filename: pool/main/p/pkg-kde-tools/libdlrestrictions-dev_0.15.12ubuntu1_amd64.deb Size: 5944 MD5sum: 69843416d98c75da41183d1e17276f95 SHA1: bf91f344096a64deeca52d4c663da6bef2dfccd2 SHA256: 5f78abd8f86d9cd5a5d60a6c689c635c61041681ca7be508634b784c3484e3f1 Description: development files for the DLRestrictions library Description-md5: fb7334f5c092bc11ad2eb318b1465d65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdlrestrictions1 Priority: extra Section: libs Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: pkg-kde-tools Version: 0.15.12ubuntu1 Depends: libc6 (>= 2.4) Filename: pool/main/p/pkg-kde-tools/libdlrestrictions1_0.15.12ubuntu1_amd64.deb Size: 10442 MD5sum: daf393fec134600fad2a09d813d6adb8 SHA1: ade2108dc01cdb28b8162cc13148b283379a5ed0 SHA256: 699825e4d0641cebeed7cf95d56dc2d5acece4f61ac092067c7708a725bb9f18 Description: library that implements library compatibility checks for dlopen() Description-md5: 28164c3828b6557ee21d394cbcb4648a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libdmapsharing-3.0-2 Priority: optional Section: libs Installed-Size: 249 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libdmapsharing Version: 2.9.24-0ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.14), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libsoup2.4-1 (>= 2.32), zlib1g (>= 1:1.1.4) Filename: pool/main/libd/libdmapsharing/libdmapsharing-3.0-2_2.9.24-0ubuntu1_amd64.deb Size: 65820 MD5sum: 44a9ee8ee0965dea1add72581a244ce4 SHA1: ee6f3c9945f955d4dd78833a24d3989a8aaad7ba SHA256: 6f0a564f0e8da29bc6048fb962e71dc7e665a47ffb746a41ffbf9446d7c73dbc Description: DMAP client and server library - runtime Homepage: http://www.flyn.org/projects/libdmapsharing/ Description-md5: b3621e4cd46512c95e25c2d5cff67ae1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libdmapsharing-3.0-dev Priority: optional Section: libdevel Installed-Size: 478 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libdmapsharing Version: 2.9.24-0ubuntu1 Depends: libdmapsharing-3.0-2 (= 2.9.24-0ubuntu1), libglib2.0-dev, libsoup2.4-dev, libgstreamer1.0-dev Filename: pool/main/libd/libdmapsharing/libdmapsharing-3.0-dev_2.9.24-0ubuntu1_amd64.deb Size: 33560 MD5sum: a1102f5bf8103ab74796734dc512047d SHA1: 6fd9f3f975499ebd80dd8b8f821e55ea4cb1e3bf SHA256: 730e9e7f6ff8bcee7f5397d8652898d89189b1860e96fd6a81792f6e2ca6fa33 Description: DMAP client and server library - development Homepage: http://www.flyn.org/projects/libdmapsharing/ Description-md5: bb8f55d5c3a4142b22a433e34c58a8cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdmraid-dev Priority: optional Section: libdevel Installed-Size: 510 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Iuculano Architecture: amd64 Source: dmraid Version: 1.0.0.rc16-4.2ubuntu3 Depends: libdmraid1.0.0.rc16 (= 1.0.0.rc16-4.2ubuntu3) Filename: pool/main/d/dmraid/libdmraid-dev_1.0.0.rc16-4.2ubuntu3_amd64.deb Size: 105222 MD5sum: 9859055d1972467748629ce948271e33 SHA1: e4a5a5d2bce4d76608b4a3ed7bc6a6ca3e5ae156 SHA256: 719c35b1bf4c3db0d3376767756050278832a4743e7b4fad059cac8bc296b4d0 Description: Device-Mapper Software RAID support tool - header files Homepage: http://people.redhat.com/~heinzm/sw/dmraid/ Description-md5: e5a3901320dc2ca7963a3c9dcf456f14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdmraid1.0.0.rc16 Priority: optional Section: libs Installed-Size: 259 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Iuculano Architecture: amd64 Source: dmraid Version: 1.0.0.rc16-4.2ubuntu3 Replaces: libdmraid1.0.0.rc15 (<< 1.0.0.rc16-1) Depends: libc6 (>= 2.14), libdevmapper1.02.1 (>= 2:1.02.20) Filename: pool/main/d/dmraid/libdmraid1.0.0.rc16_1.0.0.rc16-4.2ubuntu3_amd64.deb Size: 84834 MD5sum: a1fe1ca68c2b12f87af0951fb4683388 SHA1: 5ee07f1d884caabcb83b5a90bb3c6108ea2f89c7 SHA256: 4d42418327f5798c0e22a80f98b55756dafa3064ff0cb58c40b327437dbec1c1 Description: Device-Mapper Software RAID support tool - shared library Homepage: http://people.redhat.com/~heinzm/sw/dmraid/ Description-md5: 46a093f4e6b08aef038639f58de18e32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libdmx-dev Priority: optional Section: libdevel Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdmx Version: 1:1.1.3-1 Replaces: x11proto-dmx-dev (<< 1:2.2.99.1) Depends: libdmx1 (= 1:1.1.3-1), libx11-dev, x11proto-dmx-dev Filename: pool/main/libd/libdmx/libdmx-dev_1.1.3-1_amd64.deb Size: 34380 MD5sum: 1adf78b60088887ced658f5683f16215 SHA1: 0e08da63c407f885370aa1a219b34b1b907f64eb SHA256: 74c47f1199cf0e5d5bc0d09d1d5b2103c020303e259fbb06d558b68e2f5d967e Description: X11 Distributed Multihead extension library (development headers) Multi-Arch: same Description-md5: 4c3cc722eb34563e5337ba949cffc8b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdmx1 Priority: optional Section: libs Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdmx Version: 1:1.1.3-1 Depends: libc6 (>= 2.14), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libd/libdmx/libdmx1_1.1.3-1_amd64.deb Size: 10400 MD5sum: dd8075e887ad5dadff681a3f78e3a60e SHA1: 9a74edd66fa7626ef414d554dd87456b28bbffff SHA256: 1ff5eae25baa807936a9b6d7e56e5c52f9b17fc4e3c65a0e14674b394c2e2ec9 Description: X11 Distributed Multihead extension library Multi-Arch: same Description-md5: 3bb7f6af7b22c4a1e37a2eb6f705b674 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdmx1-dbg Priority: extra Section: libdevel Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdmx Version: 1:1.1.3-1 Depends: libdmx1 (= 1:1.1.3-1) Pre-Depends: multiarch-support Filename: pool/main/libd/libdmx/libdmx1-dbg_1.1.3-1_amd64.deb Size: 27996 MD5sum: fb0c5b66ac28dc8c585c8e6a54a79a05 SHA1: c07ec6ebda87f442db07bcf870e942be53db87a6 SHA256: b54871d743d12f59ae7cbd557f0106791b54659f00cb3fe053747a073a1e6b0c Description: X11 Distributed Multihead library (debug package) Multi-Arch: same Description-md5: c7776342d319349800d5af565864c2c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdns100 Priority: standard Section: libs Installed-Size: 1916 Maintainer: LaMont Jones Architecture: amd64 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.14), libgeoip1, libgssapi-krb5-2 (>= 1.10+dfsg~), libisc95, libkrb5-3 (>= 1.6.dfsg.2), libssl1.0.0 (>= 1.0.0) Conflicts: libbind0, libbind9-41 Filename: pool/main/b/bind9/libdns100_9.9.5.dfsg-3_amd64.deb Size: 641628 MD5sum: 6dd84f40ab709b815f10d5102fc1fa95 SHA1: df5a506b30ca176280ed73a045de9c820f3b1283 SHA256: a499e539668e24147a045ff920356fbccef6f1b4331feda43209b26a046e7a89 Description: DNS Shared Library used by BIND Description-md5: fadbc60724c646c80c4b57d45d5e5161 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libdom4j-java Priority: optional Section: libs Installed-Size: 534 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: dom4j Version: 1.6.1+dfsg.3-2ubuntu1 Depends: libjaxen-java, libxpp2-java, libxpp3-java Suggests: libdom4j-java-doc Filename: pool/main/d/dom4j/libdom4j-java_1.6.1+dfsg.3-2ubuntu1_all.deb Size: 322862 MD5sum: 8fe4ede8082d57cd8a8e3af43ea2e085 SHA1: c88a4494fe9de842caa408fab794b8dd73975da9 SHA256: 5baa70c6dc64cfff9ce3ef80811b64dd187292a7b7c330bdd273e124ddc334bd Description: flexible XML framework for Java Homepage: http://sourceforge.net/projects/dom4j/ Description-md5: 50343e417d92798c418312c3142cb194 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdom4j-java-doc Priority: optional Section: doc Installed-Size: 4216 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: dom4j Version: 1.6.1+dfsg.3-2ubuntu1 Suggests: libdom4j-java Filename: pool/main/d/dom4j/libdom4j-java-doc_1.6.1+dfsg.3-2ubuntu1_all.deb Size: 493660 MD5sum: 91b5c67bc60a7a85f556fc62c639c242 SHA1: 9e772d04530d2ba9373b092bb4967ccc87737aec SHA256: f30259b160aac67e5b5ea05541cb54d9084bbacf760c30dfdf1002ee67225d03 Description: documentation for libdom4j-java Homepage: http://sourceforge.net/projects/dom4j/ Description-md5: fbba057eda34d9bea731ee2a1f4b3900 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdotconf-dev Priority: extra Section: libdevel Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Shane Wegner Architecture: amd64 Source: dotconf Version: 1.3-0ubuntu2 Depends: libdotconf0 (= 1.3-0ubuntu2), libc6-dev Filename: pool/main/d/dotconf/libdotconf-dev_1.3-0ubuntu2_amd64.deb Size: 19882 MD5sum: 3d7234430266167ad05751ef1d89dd29 SHA1: 5bcdece5280d03634eb18d93d37d502d9795b5a6 SHA256: 92d3cba431a8fd5c69843fb8cb36fd1dbdc2f2ab51cfc2d0614987992a2aa8c2 Description: Configuration file parser library - development files Description-md5: 48a406c7a7d2dd536c0d327fe0dc1849 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdotconf0 Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Shane Wegner Architecture: amd64 Source: dotconf Version: 1.3-0ubuntu2 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/d/dotconf/libdotconf0_1.3-0ubuntu2_amd64.deb Size: 13574 MD5sum: a4ccb76f4c23ac7de2c5954843cc6fa8 SHA1: d100084ece15e022dd47769287481b44a7bdb179 SHA256: 41312dcad53cc3a28360c434d31588565694050aae74e353c72084bc6f64b5dc Description: Configuration file parser library - runtime files Multi-Arch: same Description-md5: 921e2a5f88f20a745f43216bdd13ed16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdotconf0-dbg Priority: extra Section: debug Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Shane Wegner Architecture: amd64 Source: dotconf Version: 1.3-0ubuntu2 Depends: libdotconf0 (= 1.3-0ubuntu2) Pre-Depends: multiarch-support Filename: pool/main/d/dotconf/libdotconf0-dbg_1.3-0ubuntu2_amd64.deb Size: 23230 MD5sum: 7757abc5f9be5d348c626a45b596968d SHA1: e1e61e30a1ff48edaa299f40ea8623337ac2e624 SHA256: fc7395894b4640b4ae028c196c9911adc04fa8ecacb6a2efad9fe45c18666db2 Description: Configuration file parser library - runtime files Multi-Arch: same Description-md5: 552f331f37966f8a47a288a6e6c2622a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdpkg-dev Priority: optional Section: libdevel Installed-Size: 1122 Maintainer: Ubuntu Developers Original-Maintainer: Dpkg Developers Architecture: amd64 Source: dpkg Version: 1.17.5ubuntu5 Depends: zlib1g-dev, liblzma-dev, libbz2-dev Filename: pool/main/d/dpkg/libdpkg-dev_1.17.5ubuntu5_amd64.deb Size: 98402 MD5sum: 51b9d903fb74c7071cec29fa25b452c2 SHA1: 052790d6b55affb06cb2aaaa51cca51d7a9cd2a0 SHA256: a7e80fa0317fa0f990e208d4d1f645207043ac196304d9874cacaad30aaa4167 Description: Debian package management static library Origin: Ubuntu Bugs: https://bugs.launchpad.net/ubuntu/+filebug Homepage: https://wiki.debian.org/Teams/Dpkg Description-md5: 0fd17a1a6d9f7c47ceec993ee3976f22 Supported: 9m Package: libdpkg-perl Priority: optional Section: perl Installed-Size: 1520 Maintainer: Ubuntu Developers Original-Maintainer: Dpkg Developers Architecture: all Source: dpkg Version: 1.17.5ubuntu5 Replaces: dpkg (<< 1.15.8), dpkg-dev (<< 1.15.6) Depends: dpkg (>= 1.15.8), perl, libtimedate-perl Recommends: libfile-fcntllock-perl, bzip2, xz-utils Suggests: debian-keyring, gnupg | gnupg2, gpgv | gpgv2, gcc | c-compiler, binutils, patch Breaks: dpkg-dev (<< 1.15.6) Filename: pool/main/d/dpkg/libdpkg-perl_1.17.5ubuntu5_all.deb Size: 178470 MD5sum: 2048e5dd2281ff705d7c78533f13378f SHA1: b5066b701cf4dace92b5d133825b7543a6eb4b6e SHA256: e03c1a9bc8f7cd50ff763b9e29009aa713c604c7815220ef10c1f180099b4932 Description: Dpkg perl modules Origin: Ubuntu Bugs: https://bugs.launchpad.net/ubuntu/+filebug Multi-Arch: foreign Homepage: https://wiki.debian.org/Teams/Dpkg Description-md5: 3ee0a12d9e55e3d4d997dfd0f577ac59 Build-Essential: yes Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdrm-dev Priority: optional Section: libdevel Installed-Size: 740 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdrm Version: 2.4.52-1 Replaces: linux-libc-dev (<< 2.6.32-10) Depends: libdrm2 (= 2.4.52-1), libdrm-intel1 (= 2.4.52-1), libdrm-radeon1 (= 2.4.52-1), libdrm-nouveau2 (= 2.4.52-1) Filename: pool/main/libd/libdrm/libdrm-dev_2.4.52-1_amd64.deb Size: 168806 MD5sum: 088e70293447eed6f2e41af7a739ef6c SHA1: a90c7e10576bc0973f806d7b085fbc6053efe170 SHA256: 25ac9a506024fe2856222017524a73c918f653ddcf4f332c3956fd0e4684fb81 Description: Userspace interface to kernel DRM services -- development files Multi-Arch: same Description-md5: 26367cfc3b23b21ad8b59e1f0974ff45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libdrm-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libdrm-dev Filename: pool/main/x/xorg-lts-transitional/libdrm-dev-lts-quantal_5_amd64.deb Size: 1526 MD5sum: 371f4f44512b4522858e622b2a73192d SHA1: ec3ef170d9bed70d287a019e0bb1a1741d722185 SHA256: c86ab9f5f8f5477cedd6d2eafa896de95e26ac32064f69181da7b2677feb1c54 Description: Transitional package for libdrm-dev Description-md5: fa7d49c117a134050f84258d6b8f3ab8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdrm-intel1 Priority: optional Section: libs Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdrm Version: 2.4.52-1 Depends: libc6 (>= 2.17), libdrm2 (>= 2.4.38), libpciaccess0 Pre-Depends: multiarch-support Filename: pool/main/libd/libdrm/libdrm-intel1_2.4.52-1_amd64.deb Size: 54804 MD5sum: e3d8965c1dacdd9416f2f8f54fac9607 SHA1: b1c3bb1ba22447c640d53c0a5161d0d1d310d1ea SHA256: 3509f88bec44230260fb4eb6d01abd7dd30f6b026cc12d2f21c55bfab90d0e41 Description: Userspace interface to intel-specific kernel DRM services -- runtime Multi-Arch: same Description-md5: a0ec25778ef74dfe186d7ace2946e2e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdrm-intel1-dbg Priority: extra Section: libdevel Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdrm Version: 2.4.52-1 Depends: libdrm-intel1 (= 2.4.52-1) Filename: pool/main/libd/libdrm/libdrm-intel1-dbg_2.4.52-1_amd64.deb Size: 94684 MD5sum: 058635637fdd665523c3dd1b77f84158 SHA1: 1fc8c647b3ad0642215d4b4b5d753ecf76ffc55b SHA256: 858557809b9f65e9b16e63f611e3d7f117ae34be9e0fe71889a146091f7e106b Description: Userspace interface to intel-specific kernel DRM services -- debugging symbols Multi-Arch: same Description-md5: 479d5fd9b792b0e4005a9def65feed19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdrm-nouveau2 Priority: optional Section: libs Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdrm Version: 2.4.52-1 Depends: libc6 (>= 2.14), libdrm2 (>= 2.4.38) Pre-Depends: multiarch-support Filename: pool/main/libd/libdrm/libdrm-nouveau2_2.4.52-1_amd64.deb Size: 13414 MD5sum: 496b0d720d60eb93a2be109c2373c52a SHA1: 55b9296244df403d02916b1ba02d0293e1d20e3b SHA256: 03d91706040a5d26e6e01e47d0ec1a38674258a3bd449afc0b5c145a1bb08880 Description: Userspace interface to nouveau-specific kernel DRM services -- runtime Multi-Arch: same Description-md5: e9d35521833d93a9e60b0579def3745c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdrm-nouveau2-dbg Priority: extra Section: debug Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdrm Version: 2.4.52-1 Depends: libdrm-nouveau2 (= 2.4.52-1) Filename: pool/main/libd/libdrm/libdrm-nouveau2-dbg_2.4.52-1_amd64.deb Size: 26878 MD5sum: 0b1f4cb1e0971fa11c1842efed62d95f SHA1: abec9f5a9012453d6ed312e33403a20393aa389b SHA256: addf71f08899f8d2c24b50cc40d04051ef226dfa2d6cb257561f4bcb0c22fdca Description: Userspace interface to nouveau-specific kernel DRM -- debugging symbols Multi-Arch: same Description-md5: bc7863f85d24e4be61774283f8d6e55d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdrm-radeon1 Priority: optional Section: libs Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdrm Version: 2.4.52-1 Depends: libc6 (>= 2.14), libdrm2 (>= 2.4.38) Pre-Depends: multiarch-support Filename: pool/main/libd/libdrm/libdrm-radeon1_2.4.52-1_amd64.deb Size: 23826 MD5sum: e3802e44c65a611d6ef8ff2a299e0bfd SHA1: 62d59ee6d7d80ae8e74d2d27951161c4277153be SHA256: 64d0649adde6a954d4792d84163d8022da655e777e0377339f13f5c9084a8140 Description: Userspace interface to radeon-specific kernel DRM services -- runtime Multi-Arch: same Description-md5: fbdefd428f29bf05163182b24d86f2a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdrm-radeon1-dbg Priority: extra Section: debug Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdrm Version: 2.4.52-1 Depends: libdrm-radeon1 (= 2.4.52-1) Filename: pool/main/libd/libdrm/libdrm-radeon1-dbg_2.4.52-1_amd64.deb Size: 48258 MD5sum: d8ab0c6b8efae7ad255a7f83af0882ac SHA1: 4f985d89da27f1c2794f8b72f0e1812dcb8d48e3 SHA256: 82324f89877d8e18c7b2e64e115fb0d349798aa0a26ca4e3522d54dbd9ea333f Description: Userspace interface to radeon-specific kernel DRM services -- debugging symbols Multi-Arch: same Description-md5: 56a3655eb825ab9851b19faa2d4fad7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdrm2 Priority: required Section: libs Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdrm Version: 2.4.52-1 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/libd/libdrm/libdrm2_2.4.52-1_amd64.deb Size: 22714 MD5sum: 0602c3dcc9383410558e861c11106ae3 SHA1: 3f38b58ef9d15705f1c17752c03e1f2b7cd6fdbe SHA256: baaca39c2c4c6878541f1e6a2f55d5121b931f59355a1754e562d5c1f7110185 Description: Userspace interface to kernel DRM services -- runtime Multi-Arch: same Description-md5: aefc4200d84a6f2aee6f342bdd88dc24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libdrm2-dbg Priority: extra Section: libdevel Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libdrm Version: 2.4.52-1 Depends: libdrm2 (= 2.4.52-1) Filename: pool/main/libd/libdrm/libdrm2-dbg_2.4.52-1_amd64.deb Size: 48644 MD5sum: 4b8e452d9dc9c3d06357adbc409ab9cf SHA1: d386fe6fe691c8ce588595a0070beb87e2e513db SHA256: 847f4b4ab304919f84dc6329cc798b414e3819869f6dafc2fb3d568bd3a50841 Description: Userspace interface to kernel DRM services -- debugging symbols Multi-Arch: same Description-md5: 4ca6944e55bdf07eb73a9e7bebdd7276 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdumbnet-dev Priority: optional Section: libdevel Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: libdumbnet Version: 1.12-4build1 Depends: libc6 (>= 2.7), libdumbnet1 (= 1.12-4build1) Filename: pool/main/libd/libdumbnet/libdumbnet-dev_1.12-4build1_amd64.deb Size: 53952 MD5sum: 094d4b18ebb8537f5866ff932745879f SHA1: 9761d4128931efb9c5d04be17f0f05aefac46fd8 SHA256: cf02146483b943e5e0a42e3a7c351ff992d97ae04d111462a796bdc5e9ae8c90 Description: A dumb, portable networking library -- development files Homepage: http://code.google.com/p/libdnet/ Description-md5: 17b1f78b19b9fc67ae6fbefaee6f16f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdumbnet1 Priority: optional Section: libs Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: libdumbnet Version: 1.12-4build1 Depends: libc6 (>= 2.14) Filename: pool/main/libd/libdumbnet/libdumbnet1_1.12-4build1_amd64.deb Size: 25714 MD5sum: ff1cc58c8f6cf3c5777062ef72879104 SHA1: f253c7bf536ad2771dc818577aae898f192f22cb SHA256: f65387d1aa1f1fd3c7fae8851701bf64bbe61377defaa5f3012965bd49765e6c Description: A dumb, portable networking library -- shared library Homepage: http://code.google.com/p/libdnet/ Description-md5: 76bb88e5df2b0c5aebe7bf74bed27710 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: libdv4 Priority: optional Section: libs Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: libdv Version: 1.0.0-6 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Suggests: libdv-bin, oss-compat Filename: pool/main/libd/libdv/libdv4_1.0.0-6_amd64.deb Size: 66466 MD5sum: 4918e0a187058fad445bb3ad6e2f3c43 SHA1: 001e5d680423ca2d2164f0e8234e5fa01b494a32 SHA256: e680fbafe66b76e475700f73d5d4bf0b8832f6ad7993ed195758b178ff4de5c0 Description: software library for DV format digital video (runtime lib) Multi-Arch: same Homepage: http://libdv.sourceforge.net/ Description-md5: 736b863777ce31e159d4bbc98f81e587 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdv4-dev Priority: extra Section: libdevel Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: libdv Version: 1.0.0-6 Replaces: libdv-dev Provides: libdv-dev Depends: libdv4 (= 1.0.0-6), libpopt-dev Recommends: pkg-config Conflicts: libdv-dev Filename: pool/main/libd/libdv/libdv4-dev_1.0.0-6_amd64.deb Size: 9060 MD5sum: d388c276088e540376246b3a3af833d0 SHA1: 778936c9c5a30304928b965c57170a8cec86e641 SHA256: 2032dfbcf56fea0964c66299d45e86c1daa7e9a3848cc9297d0c48cbb08d4127 Description: software library for DV format digital video (devel files) Multi-Arch: same Homepage: http://libdv.sourceforge.net/ Description-md5: d017c359e4a26d0707ca717b327a65a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdw-dev Priority: optional Section: libdevel Installed-Size: 718 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: amd64 Source: elfutils Version: 0.158-0ubuntu5 Depends: libelf-dev, libdw1 (= 0.158-0ubuntu5) Filename: pool/main/e/elfutils/libdw-dev_0.158-0ubuntu5_amd64.deb Size: 134538 MD5sum: 7740a99ea6cabc33b8ea0f9b85718e33 SHA1: 544b53b852e4693d194553e931033e9bab9f9e01 SHA256: 648654ecb775854108c5cb270d09c44e058f6725c6fb828bb213466a28380382 Description: libdw1 development libraries and header files Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: f125fde79e7cf4843502f64d2aca123c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdw1 Priority: optional Section: libs Installed-Size: 680 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: amd64 Source: elfutils Version: 0.158-0ubuntu5 Depends: libbz2-1.0, libc6 (>= 2.14), libelf1 (= 0.158-0ubuntu5), liblzma5 (>= 5.1.1alpha+20120614), zlib1g (>= 1:1.2.2.3) Pre-Depends: multiarch-support Filename: pool/main/e/elfutils/libdw1_0.158-0ubuntu5_amd64.deb Size: 173372 MD5sum: 4f8aec9837104b461d42a7bd89db59fd SHA1: cb8b76f1c07cb1e24cd063caa9b012341d1a7b5d SHA256: 7f6ba0bfc5bbcbbcec613d1094244b2339b13bb76d50d280bba6cb3cc9dafcdf Description: library that provides access to the DWARF debug information Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: 6238c70828caf72448d9f8116f0e5c97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libeasymock-java Priority: optional Section: libs Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: easymock Version: 2.5.2+ds-1 Suggests: junit4, libeasymock-java-doc Filename: pool/main/e/easymock/libeasymock-java_2.5.2+ds-1_all.deb Size: 66628 MD5sum: 20fcece73d4a645edf82c03e73db8d8e SHA1: 6969d1071bdf14497cb65a343162484275b3b3fb SHA256: 171e870b2df2497c2707a22e748187ec13586788185ce8b45a32a1fb3216a47b Description: Java library to generate Mock Objects for given interfaces Homepage: http://www.easymock.org Description-md5: ee077391c76cc4f7c567a56880a8e2da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libeasymock-java-doc Priority: optional Section: doc Installed-Size: 1619 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: easymock Version: 2.5.2+ds-1 Filename: pool/main/e/easymock/libeasymock-java-doc_2.5.2+ds-1_all.deb Size: 145698 MD5sum: c713b854ce190d41b99804107b32f48b SHA1: 4b60c3fc5c9e796dfcde8ba2a1df91f55731591a SHA256: cdfe1c4ee4f18f37c89950e3c7c2386c93dcba02df28e16d46eca55267eb3423 Description: Java library to generate Mock Objects for given interfaces (documentation) Enhances: libeasymock-java Homepage: http://www.easymock.org Description-md5: 44526f7427f08f22fe15fffcb5b0d1bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libebackend-1.2-7 Priority: optional Section: libs Installed-Size: 622 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.4), libdb5.3, libedataserver-1.2-18 (>= 3.10.0), libgcr-base-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.37.3), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.40.3), libsqlite3-0 (>= 3.6.0) Filename: pool/main/e/evolution-data-server/libebackend-1.2-7_3.10.4-0ubuntu1_amd64.deb Size: 111824 MD5sum: b3f4ba8d524f70c4d62f2d25230860ab SHA1: 4c41f9858db355c70026e204099faed573c0c366 SHA256: 9b636f2ac72ea6654c463e3fbb840071e097b4dcf05bd515c90e6bc84be203c7 Description: Utility library for evolution data servers Homepage: http://projects.gnome.org/evolution/ Description-md5: b3d133d6b14648a896d4e2d251b6dcae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libebackend1.2-dev Priority: optional Section: libdevel Installed-Size: 234 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libebackend-1.2-7 (= 3.10.4-0ubuntu1), libglib2.0-dev Filename: pool/main/e/evolution-data-server/libebackend1.2-dev_3.10.4-0ubuntu1_amd64.deb Size: 13572 MD5sum: c5091954346f6b9211bdaafb8eda6dda SHA1: a132704a23fbaeef7856bc274d13975a81205a6f SHA256: 51897e0e8c9edb75e30411337344eb6ede074e63e7f584f4c6fb33e72e2a38cc Description: Utility library for evolution data servers (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: a5d72b476981a785a5ae2459f4a20808 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libebook-1.2-14 Priority: optional Section: libs Installed-Size: 305 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.4), libcamel-1.2-45, libebackend-1.2-7, libebook-contacts-1.2-0 (>= 3.7.90), libedata-book-1.2-20 (>= 3.10.0), libedataserver-1.2-18 (>= 3.10.0), libglib2.0-0 (>= 2.34), libxml2 (>= 2.7.4) Filename: pool/main/e/evolution-data-server/libebook-1.2-14_3.10.4-0ubuntu1_amd64.deb Size: 46340 MD5sum: a4e922e9c31f504e7631ebb21b7244a9 SHA1: 376183162cb7c5812264098f8606a5f1902e0093 SHA256: c28dd5df7344136397352dead0a7770339a5946aabd380ff34d49333ef2bf27c Description: Client library for evolution address books Homepage: http://projects.gnome.org/evolution/ Description-md5: cb24488ae2ac69e00752272e7be5221f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libebook-contacts-1.2-0 Priority: optional Section: libs Installed-Size: 290 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.14), libedataserver-1.2-18 (>= 3.7.90), libglib2.0-0 (>= 2.34) Filename: pool/main/e/evolution-data-server/libebook-contacts-1.2-0_3.10.4-0ubuntu1_amd64.deb Size: 47460 MD5sum: 34508567ddc1b1bde4585a07fce83d09 SHA1: c2ea3869f220b8e921270c4af4698921881b226f SHA256: ae4b751ed7f4e7eebb780d3068820ce428d27fc0226ec8de8b0406cda2628531 Description: Client library for evolution contacts books Homepage: http://projects.gnome.org/evolution/ Description-md5: fd8f6220cee9a3b2df95847a5d20af2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libebook-contacts1.2-dev Priority: optional Section: libdevel Installed-Size: 449 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libebook-contacts-1.2-0 (= 3.10.4-0ubuntu1), libedataserver1.2-dev (= 3.10.4-0ubuntu1), libcamel1.2-dev (= 3.10.4-0ubuntu1) Filename: pool/main/e/evolution-data-server/libebook-contacts1.2-dev_3.10.4-0ubuntu1_amd64.deb Size: 33286 MD5sum: 4805df30104fc7ebbeaafc29e837886c SHA1: 9b920e2921ce055d9bd238540090479473436208 SHA256: 7fb698553c32aa000d2ecd77b113147a690e8bda0b6c2a2578752894603f8b25 Description: Client library for evolution contacts books (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: db02360a3dd32c2d99c43b5ea29a380d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libebook1.2-dev Priority: optional Section: libdevel Installed-Size: 326 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libebook-1.2-14 (= 3.10.4-0ubuntu1), gir1.2-ebook-1.2 (= 3.10.4-0ubuntu1), libedataserver1.2-dev (= 3.10.4-0ubuntu1), libebook-contacts1.2-dev (= 3.10.4-0ubuntu1), libcamel1.2-dev (= 3.10.4-0ubuntu1), libglib2.0-dev Filename: pool/main/e/evolution-data-server/libebook1.2-dev_3.10.4-0ubuntu1_amd64.deb Size: 18274 MD5sum: c57c0ea039f5241d347f06fea7431d07 SHA1: 771e0ffb0cce6669a27555e36ee1068f4288c503 SHA256: 38760a5242417116627484904a247bba69b9963a4c5ef683a781ed770e5ba9d7 Description: Client library for evolution address books (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: ef3ee2f270bec1dd37ca08ab22a90311 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecal-1.2-16 Priority: optional Section: libs Installed-Size: 481 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.14), libedataserver-1.2-18 (>= 3.10.0), libglib2.0-0 (>= 2.34), libical1 (>= 1.0) Filename: pool/main/e/evolution-data-server/libecal-1.2-16_3.10.4-0ubuntu1_amd64.deb Size: 97454 MD5sum: 8bf8498975d437c245dbeb2d7e82a35c SHA1: b0c3deea17b8a11715e73db9e6a5e7ad133a5ed9 SHA256: f64f0c99eba321fb6a0ebec20570af473164447a69fc225e9b4772e7ed3d3b2a Description: Client library for evolution calendars Homepage: http://projects.gnome.org/evolution/ Description-md5: 04cb425637b47946ccd00f8590d52db8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libecal1.2-dev Priority: optional Section: libdevel Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libecal-1.2-16 (= 3.10.4-0ubuntu1), libical-dev (>= 0.43), libedataserver1.2-dev (= 3.10.4-0ubuntu1), libglib2.0-dev Filename: pool/main/e/evolution-data-server/libecal1.2-dev_3.10.4-0ubuntu1_amd64.deb Size: 15614 MD5sum: 324c047cd8eae0f8f4082cbd240cec73 SHA1: 49ba050a9a97c80e184271a094dd304df15b2e95 SHA256: f3e9b6a162455ad09b6a5016fbc2874499385f1f00de513fd5bd68e35defd281 Description: Client library for evolution calendars (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: 64e78a627bc19180d08e2006a3590372 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecap2 Priority: extra Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: amd64 Source: libecap Version: 0.2.0-1ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Filename: pool/main/libe/libecap/libecap2_0.2.0-1ubuntu4_amd64.deb Size: 15212 MD5sum: ab92e6b9aa5e39cc4038c1be67fb2ac4 SHA1: 635febc293262a4b9d52c255e83766a446fedf58 SHA256: 19c9d57a7f35a0e114fdd5dee81a58e60bdf09df7e55b849980e886dbf6c0f10 Description: eCAP library Homepage: http://www.e-cap.org/Downloads Description-md5: 9f1455007fb909c55f6b50ea29d233b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libecap2-dev Priority: extra Section: libdevel Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: amd64 Source: libecap Version: 0.2.0-1ubuntu4 Depends: libecap2 (= 0.2.0-1ubuntu4) Filename: pool/main/libe/libecap/libecap2-dev_0.2.0-1ubuntu4_amd64.deb Size: 22136 MD5sum: bb924c15686f5e96ab3bd8d1e97e73eb SHA1: bec6e31904ef18802b1ea513bb3c92175e8ef994 SHA256: 629e435fad880dc790062079fba30eb005595e1cdba10e9f07c700f281d36157 Description: eCAP development libraries Homepage: http://www.e-cap.org/Downloads Description-md5: df61b63e1494ff2ae59b89ae61f05f87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecj-java Priority: optional Section: libs Installed-Size: 1463 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ecj Version: 3.9.0-1 Replaces: ecj (<< 3.3.0-1), ecj-bootstrap (<< 3.2.2), eclipse-ecj Depends: java-common (>= 0.23) Recommends: default-jre-headless | java2-runtime-headless | java5-runtime-headless Suggests: ecj, ant, libecj-java-gcj Conflicts: ecj-bootstrap (<< 3.2.2), eclipse-ecj Filename: pool/main/e/ecj/libecj-java_3.9.0-1_all.deb Size: 1351576 MD5sum: cb4121aaadcbc7ba580f95cb8dcb3bfc SHA1: 2ef8b9fbcc953e6e09a54d4a38bc5894f1002b44 SHA256: 1f24d0cb24129bc92277754da48ba601e734803348fd171cc244c424d2437eb6 Description: Eclipse Java compiler (library) Description-md5: e33d4f11c75dd8a51173cfad687ae2c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libecj-java-gcj Priority: optional Section: libs Installed-Size: 6849 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: amd64 Source: ecj Version: 3.9.0-1 Replaces: ecj-bootstrap-gcj (<< 3.2.2), ecj-gcj (<< 3.3.0+0728), eclipse-ecj-gcj Depends: java-common (>= 0.23), libecj-java (>= 3.9.0-1), libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.1-1~) Filename: pool/main/e/ecj/libecj-java-gcj_3.9.0-1_amd64.deb Size: 1522032 MD5sum: 00e8a6d26352689021daee164140cb38 SHA1: 6f3439e8ed2b64c2913f9e43c06a7b86ce058594 SHA256: 1478913f5c8270a7c1eaf8b724ac5db3a19df19292bad0b5bbd5328a0d1eb0f9 Description: Eclipse Java compiler (native library) Description-md5: 6a2c7480e747805957b4acfa89583de5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libecpg-compat3 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.14), libecpg6 (>= 9.0~), libpgtypes3 Filename: pool/main/p/postgresql-9.3/libecpg-compat3_9.3.4-1_amd64.deb Size: 11088 MD5sum: cedc56c5c00dbc3224cd837375c1c230 SHA1: 027fbe8c2d65447c076d12423b4d0020315d0456 SHA256: e1658e9f24a9cc42f952dd1a5be5066718ff26821fc109f7ebbece41e3ceaa00 Description: older version of run-time library for ECPG programs Homepage: http://www.postgresql.org/ Description-md5: 66ce228306ea5636e1cb757bd540255b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecpg-dev Priority: optional Section: libdevel Installed-Size: 1114 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.14), libpq-dev, libecpg6 (= 9.3.4-1), libecpg-compat3 (= 9.3.4-1), libpgtypes3 (= 9.3.4-1) Filename: pool/main/p/postgresql-9.3/libecpg-dev_9.3.4-1_amd64.deb Size: 210466 MD5sum: 57ca91f5bb5fb1c86a358e3af258daa5 SHA1: 3cc73723ea06596775bc44f8fd76bbcf5fc5a958 SHA256: 15910497f968c10574ddf472850033cf5a2271abbd2fbb4768d55c27ec4d2156 Description: development files for ECPG (Embedded PostgreSQL for C) Homepage: http://www.postgresql.org/ Description-md5: 5eb928e68d1075508e3d6a4d7fc6f514 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecpg6 Priority: optional Section: libs Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.14), libpgtypes3, libpq5 (>= 9.0~) Filename: pool/main/p/postgresql-9.3/libecpg6_9.3.4-1_amd64.deb Size: 35164 MD5sum: 04e1cce9cee2204035e05d0e72e5003a SHA1: be6586d14332e59da3e963679413f7b262df5e7f SHA256: 8cbe6789df25398b0ad2742f33cdc38cc03e1709fe1f58bba293ca3d59c40d77 Description: run-time library for ECPG programs Homepage: http://www.postgresql.org/ Description-md5: 51ed6df58b24baddae9952acb91903bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecryptfs-dev Priority: optional Section: libdevel Installed-Size: 264 Maintainer: Dustin Kirkland Original-Maintainer: Daniel Baumann Architecture: amd64 Source: ecryptfs-utils Version: 104-0ubuntu1 Depends: libecryptfs0 (= 104-0ubuntu1), libgcrypt11-dev, libgpg-error-dev, libgpgme11-dev, libkeyutils-dev, libopencryptoki-dev, libpam0g-dev, libpkcs11-helper1-dev, libtspi-dev Filename: pool/main/e/ecryptfs-utils/libecryptfs-dev_104-0ubuntu1_amd64.deb Size: 49088 MD5sum: 73e95b5186fd2eecbd9b662a905210d3 SHA1: 4442b81fd33b3dda3ced24bd251fa81606278eab SHA256: 2d39025a4b39e03d84ebb70c54f638f06686f6208eeb88084d7b14c7c6dded7c Description: ecryptfs cryptographic filesystem (development) Homepage: http://ecryptfs.org/ Description-md5: 4c5880400c7ab1144565f4ece5848c65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecryptfs0 Priority: optional Section: libs Installed-Size: 184 Maintainer: Dustin Kirkland Original-Maintainer: Daniel Baumann Architecture: amd64 Source: ecryptfs-utils Version: 104-0ubuntu1 Depends: libc6 (>= 2.14), libkeyutils1, libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1) Filename: pool/main/e/ecryptfs-utils/libecryptfs0_104-0ubuntu1_amd64.deb Size: 46614 MD5sum: 87533947e1690dd9c3ea589ef2a14b92 SHA1: d917c28cb2242a874e5b8847dcf0e77e6d97ad57 SHA256: ee6003060ce124d427778eb7f8404b9938c73a4624e9fbe32383ad52f4b59c39 Description: ecryptfs cryptographic filesystem (library) Homepage: http://ecryptfs.org/ Description-md5: 958faad97f1c3055b5fe02dce3e30b37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libedata-book-1.2-20 Priority: optional Section: libs Installed-Size: 376 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.7), libebackend-1.2-7 (>= 3.7.90), libebook-contacts-1.2-0 (>= 3.8.2), libedataserver-1.2-18 (>= 3.10.0), libglib2.0-0 (>= 2.34), libsqlite3-0 (>= 3.5.9) Filename: pool/main/e/evolution-data-server/libedata-book-1.2-20_3.10.4-0ubuntu1_amd64.deb Size: 69806 MD5sum: 081dc944202c2f539ec15d376d6098ab SHA1: a45e677d80c027a5626e75d3a5cf9caf4e4c9d72 SHA256: c6dcdbff4af73ebe26eca1342cf9a483ef6c311037a4ca2d4c05d2f78ef8771d Description: Backend library for evolution address books Homepage: http://projects.gnome.org/evolution/ Description-md5: 2951cda855016cedfd37b2b06ff0940f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libedata-book1.2-dev Priority: optional Section: libdevel Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libedata-book-1.2-20 (= 3.10.4-0ubuntu1), libedataserver1.2-dev (= 3.10.4-0ubuntu1), libebackend1.2-dev (= 3.10.4-0ubuntu1), libebook1.2-dev (= 3.10.4-0ubuntu1), libglib2.0-dev Filename: pool/main/e/evolution-data-server/libedata-book1.2-dev_3.10.4-0ubuntu1_amd64.deb Size: 10794 MD5sum: 4e722cf54325aa7d7f03c759387801f7 SHA1: d6c4da01db528e89ca6f153a59571b15f9cac882 SHA256: 4343f11ee0c325f0c05b4c66025046bf54e0b89411d9e311dfbcd7b484ca13cc Description: Backend library for evolution address books (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: daf7a85467bbdfac33345b2709b9f36d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libedata-cal-1.2-23 Priority: optional Section: libs Installed-Size: 380 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.4), libebackend-1.2-7 (>= 3.8.2), libecal-1.2-16 (>= 3.10.0), libedataserver-1.2-18 (>= 3.10.0), libglib2.0-0 (>= 2.34), libical1 (>= 1.0) Filename: pool/main/e/evolution-data-server/libedata-cal-1.2-23_3.10.4-0ubuntu1_amd64.deb Size: 65700 MD5sum: 712a33b2e226100e7edcf30c57a2aae6 SHA1: 574b478a5b8113ab96356788c22936ebf99ce33a SHA256: 19fe582b4ceb1bfd9472267e9b96d3f9d4bdfe8178ba53a4b38cd616f8086794 Description: Backend library for evolution calendars Homepage: http://projects.gnome.org/evolution/ Description-md5: 6f9b6ccd1e5738678caa1d75cb84cf43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libedata-cal1.2-dev Priority: optional Section: libdevel Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libedata-cal-1.2-23 (= 3.10.4-0ubuntu1), libical-dev (>= 0.43), libedataserver1.2-dev (= 3.10.4-0ubuntu1), libecal1.2-dev (= 3.10.4-0ubuntu1), libebackend1.2-dev (= 3.10.4-0ubuntu1), libglib2.0-dev Filename: pool/main/e/evolution-data-server/libedata-cal1.2-dev_3.10.4-0ubuntu1_amd64.deb Size: 10830 MD5sum: 5ffb465e54d16d766c5e4a7cfc1f9bd0 SHA1: 13713091b27cd21a107a4039f78db5c4ae224f7d SHA256: f667a8b65e18624d8455e58f137ee6dd7557e449104ea445473182403f8ce785 Description: Backend library for evolution calendars (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: e696a09b21241ebcdcff5dd7e60f1c19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libedataserver-1.2-18 Priority: optional Section: libs Installed-Size: 848 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.14), libcamel-1.2-45, libgcr-base-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.37.3), libsoup2.4-1 (>= 2.40.3), libxml2 (>= 2.7.4), evolution-data-server-common (>= 3.10) Filename: pool/main/e/evolution-data-server/libedataserver-1.2-18_3.10.4-0ubuntu1_amd64.deb Size: 170464 MD5sum: 83f96f8c74b765ece340321a52a74e72 SHA1: 46b574d3a2998f2382953eb0d4e626c9a6139fd7 SHA256: bcf9c4c3050c710c8e93dbc1b0106b047cd56ff43a7035918476454a22601bca Description: Utility library for evolution data servers Homepage: http://projects.gnome.org/evolution/ Description-md5: fda04a0fcd5d6e38514bd04afa3d3e7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libedataserver1.2-dev Priority: optional Section: libdevel Installed-Size: 1085 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libedataserver-1.2-18 (= 3.10.4-0ubuntu1), gir1.2-edataserver-1.2 (= 3.10.4-0ubuntu1), libedata-book1.2-dev, libcamel1.2-dev (= 3.10.4-0ubuntu1), libxml2-dev, libglib2.0-dev, libsoup2.4-dev, libsecret-1-dev Filename: pool/main/e/evolution-data-server/libedataserver1.2-dev_3.10.4-0ubuntu1_amd64.deb Size: 74390 MD5sum: b0485001b5c8a7858c59771590525555 SHA1: bad69c291f7353ba102d170a8bcd8f0b698cb24a SHA256: ecaaba69fdf026ae173088a860c7fae4dfb0b095ebf3a810e021361857e4bd7a Description: Utility library for evolution data servers (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: f544598afd99e88bcd01bf63f94d1b5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libedit-dev Priority: optional Section: libdevel Installed-Size: 529 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: amd64 Source: libedit Version: 3.1-20130712-2 Depends: libedit2 (= 3.1-20130712-2), libbsd-dev (>= 0.1.3), libtinfo-dev Filename: pool/main/libe/libedit/libedit-dev_3.1-20130712-2_amd64.deb Size: 114124 MD5sum: 1b73e64a360a903c0e1af5add6f2ae03 SHA1: 234a5fa84a1f4688ef1b9c3841e6cfd417d61eb4 SHA256: 2b9cf300424e519551fb1fbe2316ef4363200485248e15e7247674b00dde0386 Description: BSD editline and history libraries (development files) Multi-Arch: same Homepage: http://www.thrysoee.dk/editline/ Description-md5: 54bb892c6aa0a1d35b93b92b02a75cbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libedit2 Priority: standard Section: libs Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: amd64 Source: libedit Version: 3.1-20130712-2 Depends: libc6 (>= 2.17), libtinfo5 Pre-Depends: multiarch-support Filename: pool/main/libe/libedit/libedit2_3.1-20130712-2_amd64.deb Size: 86688 MD5sum: 1e3147a3da42e8c8847d0fb66d38cd6b SHA1: 2c8d643a960c1cced2feca0ba291bd115a7cccec SHA256: be4af578e9239c6c0e5dba202c4264e77fd9e67589897a932bbe38dd8f50c649 Description: BSD editline and history libraries Multi-Arch: same Homepage: http://www.thrysoee.dk/editline/ Description-md5: a6f790fcede07b70d3e02dd525b33082 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libedit2-dbg Priority: extra Section: debug Installed-Size: 225 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: amd64 Source: libedit Version: 3.1-20130712-2 Depends: libedit2 (= 3.1-20130712-2) Filename: pool/main/libe/libedit/libedit2-dbg_3.1-20130712-2_amd64.deb Size: 162116 MD5sum: 5036e814d545e3d77099ea9a185a4661 SHA1: 60dd829ebf230a4d64f5268bf56b0a960f0d2c89 SHA256: 512e7df26867dd25505ab63be0123417d9760a2265a08de124e3c4605fd1d437 Description: BSD editline and history libraries (debug package) Multi-Arch: same Homepage: http://www.thrysoee.dk/editline/ Description-md5: b43859a00f9b459ff0bf594bd0cbfbdb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa Priority: optional Section: libs Installed-Size: 248 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libegl1-x11 Provides: libegl1-x11 Depends: libc6 (>= 2.14), libdrm2 (>= 2.4.25), libgbm1 (>= 7.11~1), libwayland-client0 (>= 1.3.92), libwayland-server0 (>= 1.2.0), libx11-6, libx11-xcb1, libxcb-dri2-0 (>= 1.8), libxcb-xfixes0, libxcb1, libudev1 | libudev0 Pre-Depends: multiarch-support Recommends: libegl1-mesa-drivers Conflicts: libegl1-x11 Filename: pool/main/m/mesa/libegl1-mesa_10.1.0-4ubuntu5_amd64.deb Size: 58952 MD5sum: e5a710e314d35a3fb6b43470686be4f0 SHA1: f6936f68594be8dfc9a531f56ad2e8208e37bc12 SHA256: ad058fc9ce43080164b77507a8b095f15205a0c6305cb847c6f13b2875499fa1 Description: free implementation of the EGL API -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 303131c20d722e28695d1b6357d3c1c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libegl1-mesa-dbg Priority: extra Section: debug Installed-Size: 772 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libegl1-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libegl1-mesa-dbg_10.1.0-4ubuntu5_amd64.deb Size: 174868 MD5sum: ea80a29d899f50f9874df6a9aff84ac3 SHA1: 690f96a3aa69ea5aa02445050082e496852f5124 SHA256: 860c80d50ed5a2c6411f27b998061483440d2e48ea1d228346dd18c5925bf1d3 Description: free implementation of the EGL API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 2f865519d57e73074704ab36dee31207 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-dev Priority: optional Section: libdevel Installed-Size: 165 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libegl1-mesa (= 10.1.0-4ubuntu5), libegl1-mesa-drivers (= 10.1.0-4ubuntu5), libdrm-dev (>= 2.4.52), x11proto-dri2-dev (>= 2.6), x11proto-gl-dev (>= 1.4.14), libx11-dev, libxext-dev, libxxf86vm-dev, libxdamage-dev, libxfixes-dev, libxcb-glx0-dev, libxcb-dri2-0-dev, libxcb-dri3-dev, libxcb-present-dev, libxcb-sync-dev, libxshmfence-dev, libx11-xcb-dev, libmirclient-dev, libwayland-dev (>= 1.2.0) Filename: pool/main/m/mesa/libegl1-mesa-dev_10.1.0-4ubuntu5_amd64.deb Size: 16632 MD5sum: 76dbffb3898bdf3cea813343462484e7 SHA1: d364a3c256ff42ab9860997d4761fd430e2f06de SHA256: 0c9ff45f3b670cf28ba6ddd0d5dad4fd73b7589004ec4f40ca0693fc4e4ed08f Description: free implementation of the EGL API -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 8e7125460d26d2b46c63ba2792ce25e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-dev-lts-quantal_5_amd64.deb Size: 1552 MD5sum: 0bdc53f1878071286c6296f7688b5e37 SHA1: 1b923781a8c0dace5f56066974bed3a6c9142c3f SHA256: 822099d329d9b89dfa98dfaa4c45d6b48772715432d1994d58690f8984a2dbd2 Description: Transitional package for libegl1-mesa-dev Multi-Arch: same Description-md5: 4bca898e2a1c7dbed7511b8f328edb3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-dev-lts-raring_5_amd64.deb Size: 1548 MD5sum: 9eea2879a4f868722856e5395c6c9fae SHA1: 96a27573a39c384d3cebd2b561e794cd71403243 SHA256: 3bc7d78ac788f2f9c11c85af8abb85f3945ba1c7410bd406dacfc7b26e60f8e7 Description: Transitional package for libegl1-mesa-dev Multi-Arch: same Description-md5: 4bca898e2a1c7dbed7511b8f328edb3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-dev-lts-saucy_5_amd64.deb Size: 1550 MD5sum: b35afbda708a71880966701de9bae60f SHA1: 6e440333cc559760702dea707d009223dab6420d SHA256: d9ca96a25be46830c0947378fdbd2d395f4be9dbe1bc7e04ef072cee1e22a9be Description: Transitional package for libegl1-mesa-dev Multi-Arch: same Description-md5: 4bca898e2a1c7dbed7511b8f328edb3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers Priority: optional Section: libs Installed-Size: 6758 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libc6 (>= 2.14), libdrm-nouveau2 (>= 2.4.38), libdrm-radeon1 (>= 2.4.31), libdrm2 (>= 2.4.38), libegl1-mesa (= 10.1.0-4ubuntu5), libelf1 (>= 0.142), libgbm1 (>= 7.11~1), libgcc1 (>= 1:4.1.1), libgl1-mesa-dri, libglapi-mesa (= 10.1.0-4ubuntu5), libllvm3.4, libopenvg1-mesa (>= 7.9~) | libopenvg1, libstdc++6 (>= 4.6), libwayland-client0 (>= 1.3.92), libwayland-server0 (>= 1.2.0), libx11-6 (>= 2:1.4.99.1), libxext6, libxfixes3, libwayland-egl1-mesa (= 10.1.0-4ubuntu5), libudev1 | libudev0 Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libegl1-mesa-drivers_10.1.0-4ubuntu5_amd64.deb Size: 2028406 MD5sum: 1008e952f1d03a7b34f7cf377df27ebb SHA1: 62e01a7d01b0edd4c24d7085965fb1eec76825d9 SHA256: 36fab529789520f4f024e92174b3e2b27b184691fee14a5507602ac74c12c444 Description: free implementation of the EGL API -- hardware drivers Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 6f63ffb98c579f02a36dc4f9945d5353 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libegl1-mesa-drivers-dbg Priority: extra Section: debug Installed-Size: 45857 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libegl1-mesa-drivers (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libegl1-mesa-drivers-dbg_10.1.0-4ubuntu5_amd64.deb Size: 8716076 MD5sum: e743f4cc0a7443663c6a791e8f6ff707 SHA1: 0dbd39278d054c94552f002cb91fa94fe9ea564d SHA256: 62809d07bbf540d35375687ec2550b116609790ba6c31dcb3b9656f77be66d87 Description: free implementation of the EGL API -- driver debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 2a77b1ce20257ac2bbd8df0260110ab0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-quantal_5_amd64.deb Size: 1556 MD5sum: 627df6ce2563195f581792a7f16fd84c SHA1: 16d01cdf08b71f12a608ccf27eef4eebdf1d16b6 SHA256: 506755c16447fe14c21755015a7ab020b715268bc132ddc81fece77e74372d1d Description: Transitional package for libegl1-mesa-drivers Multi-Arch: same Description-md5: a5a8d66f909cb9994360bb92e98a6d2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-quantal-dbg_5_amd64.deb Size: 1558 MD5sum: 3937dc7777c01dbbb40611baefbf520b SHA1: e51710e06ea71cba7eab4002158d0a043e394ce9 SHA256: 2f4002c2445dcf72ecafbed499afd5d815e9ade52a7680c4a64d5fae764168e2 Description: Transitional package for libegl1-mesa-drivers-dbg Multi-Arch: same Description-md5: 9127c7ac5c0d15075efb2cc58aac1fd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-raring_5_amd64.deb Size: 1550 MD5sum: 2884650751771d65f02d96465c466ff0 SHA1: 3c2444a532296453590249a82c92c75912fa1891 SHA256: ff775cc7a7ad6a789034114b9c8642cccab66bf64ccf9e1edcd05348b14b9672 Description: Transitional package for libegl1-mesa-drivers Multi-Arch: same Description-md5: a5a8d66f909cb9994360bb92e98a6d2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-raring-dbg_5_amd64.deb Size: 1558 MD5sum: 5f0ca5360355537bce106a43d46c2d01 SHA1: 37091286efa27bd3451867bd058c768c206945a6 SHA256: 11f0463380ad267cdeeba236ebd9866c8e97f93e91171b1302b47cc81fb27329 Description: Transitional package for libegl1-mesa-drivers-dbg Multi-Arch: same Description-md5: 9127c7ac5c0d15075efb2cc58aac1fd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-saucy_5_amd64.deb Size: 1554 MD5sum: d1ab00b889c7d46aeff9710b20eed47a SHA1: c7fc18f0dafebc6fdfb7063ae62efc8eacf2f1eb SHA256: 53e3dda83941b9fa20359728cc3220d2e05b5d5c27a8dfdfe5c1a83c80895609 Description: Transitional package for libegl1-mesa-drivers Multi-Arch: same Description-md5: a5a8d66f909cb9994360bb92e98a6d2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-saucy-dbg_5_amd64.deb Size: 1560 MD5sum: e19dd8b22d2cab4d7a0f595af7a7846b SHA1: 77c9a2c581cfca202a4da40d2330ba5033cbe575 SHA256: 4e3173c6f30013c039ad63b7d1d9bf4474cadb895e67956b6abcca96a4609d21 Description: Transitional package for libegl1-mesa-drivers-dbg Multi-Arch: same Description-md5: 9127c7ac5c0d15075efb2cc58aac1fd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-quantal_5_amd64.deb Size: 1538 MD5sum: b2ba3ee76e8a7a451f57ec30bea16a1c SHA1: 5bc72f8c00ae6dcb82f8782e257330b7f6271d05 SHA256: 8388f2174ee338970307fbb0e684fa700a5b868d96480429096021f31d00aa0c Description: Transitional package for libegl1-mesa Multi-Arch: same Description-md5: 600805425833c1513eb7e523ef85ff03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-quantal-dbg_5_amd64.deb Size: 1552 MD5sum: 9f3816cec49750d251f64fbc757bae5e SHA1: e42ce03337ae247e1b22a028820baec304dc7ca0 SHA256: 733baa5699f91fe5aab2bb764cc6728784b642fd138295ea7df3afbe1c2c171a Description: Transitional package for libegl1-mesa-dbg Multi-Arch: same Description-md5: 7b641c3f5bb10795f532cff4c739cf9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-raring_5_amd64.deb Size: 1538 MD5sum: e49504a43fe1d6dbb250ad0c6865e5de SHA1: b42c013ae98310fc02bf74221b91f2e01b9c44f8 SHA256: 639bd437456c1bf359206972f9e5f17c383f91adfabc7efa5713f4f25b7af62f Description: Transitional package for libegl1-mesa Multi-Arch: same Description-md5: 600805425833c1513eb7e523ef85ff03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-raring-dbg_5_amd64.deb Size: 1548 MD5sum: 31c9e7ee61542cebf8faf23c43591310 SHA1: 269ff86d052b01540048f4996f035ed3c19cbaa5 SHA256: 71566a3e8931be15006860d6a7c094842f2d45a7d0128654ed08949b676dd264 Description: Transitional package for libegl1-mesa-dbg Multi-Arch: same Description-md5: 7b641c3f5bb10795f532cff4c739cf9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-saucy_5_amd64.deb Size: 1538 MD5sum: cd49108b96de5629eca4f2bb6ada760d SHA1: 9ad474be7bc923061d56ad78f3bd98a9d6490e02 SHA256: a6f476b2b59756594d0a64bd2ce52b38490f04e55e0c21ba4bdcc9e4a058506e Description: Transitional package for libegl1-mesa Multi-Arch: same Description-md5: 600805425833c1513eb7e523ef85ff03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-saucy-dbg_5_amd64.deb Size: 1550 MD5sum: 780ed9697b03c99a9ea8caea48eb383a SHA1: a13cefd1b0c0ae1948cf4739873a92dd43e6f3e2 SHA256: 2f35f29e59ed40d9806f9c98fa48bfdb1325d785455817b5878112e22e2e53f3 Description: Transitional package for libegl1-mesa-dbg Multi-Arch: same Description-md5: 7b641c3f5bb10795f532cff4c739cf9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libelf-dev Priority: optional Section: libdevel Installed-Size: 345 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: amd64 Source: elfutils Version: 0.158-0ubuntu5 Depends: libelf1 (= 0.158-0ubuntu5) Conflicts: libelfg0-dev Filename: pool/main/e/elfutils/libelf-dev_0.158-0ubuntu5_amd64.deb Size: 47074 MD5sum: f1013676fa28da4c217f14f4d554ebd3 SHA1: 5af86537d9b43e31e4613ff76b09b5c2f168d423 SHA256: ef3e821886980f3cf87e530217f52723552f0d6a421bdd1bdacfec2492b42b2a Description: libelf1 development libraries and header files Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: 987fe60edac82d9ad80df9bdb9c08f33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libelf1 Priority: standard Section: libs Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: amd64 Source: elfutils Version: 0.158-0ubuntu5 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/e/elfutils/libelf1_0.158-0ubuntu5_amd64.deb Size: 38320 MD5sum: 9dc003185cae7da65d5cca45fae5cb91 SHA1: 62969d195303be38d4623dfd64659bd66bdb1455 SHA256: 10111e80ca714453cdbee25dcf6009cffe42bca4cde74b9b7356eb21dcdc2300 Description: library to read and write ELF files Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: 5188e87e91e6292255a5ccd72d2f25ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libelfg0 Priority: optional Section: libs Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Alex Pennace Architecture: amd64 Source: libelf Version: 0.8.13-5 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libelf, libelf0 (<= 0.6.4-5) Filename: pool/main/libe/libelf/libelfg0_0.8.13-5_amd64.deb Size: 37580 MD5sum: f9ef0586623bc6980ebfc915967f7d47 SHA1: 1ce1a3bdf2eaf7c76a4488686ed7028b5400f0bf SHA256: eb9d80b01f272f3150df85955c5a582a327bf56da7da4bbfd258a6e4a8c62222 Description: an ELF object file access library Multi-Arch: same Description-md5: a7a2d847dc1ecc76622578d858b2494f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libelfg0-dev Priority: optional Section: libdevel Installed-Size: 283 Maintainer: Ubuntu Developers Original-Maintainer: Alex Pennace Architecture: amd64 Source: libelf Version: 0.8.13-5 Depends: libelfg0 (= 0.8.13-5), libc6-dev Conflicts: libelf-dev, libelf0-dev, libelf1-dev Filename: pool/main/libe/libelf/libelfg0-dev_0.8.13-5_amd64.deb Size: 42660 MD5sum: 45da8bde92ffee2deb91bd3c86b9bd60 SHA1: f566ec60876f6a4fc27addc9de4bed59893a8e66 SHA256: 8c95371febddc0ad8f4dd3a87cfa020b47ae71f88a6d38c861d95c2434aa0f4c Description: an ELF object file access library: development files Description-md5: cbac14f2c9ec1f9653f66af58dac7ccb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libemail-address-perl Priority: optional Section: perl Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.900-1 Depends: perl Filename: pool/main/libe/libemail-address-perl/libemail-address-perl_1.900-1_all.deb Size: 25666 MD5sum: 20fe10c11d967ab4e314571be152a151 SHA1: 1be745e39d91d70cc19ef8fa0ef380c795b92a7e SHA256: 1fc046df1ef147959789629921f7325863891f5f4acda5c73d203aa09388bb56 Description: Perl module for RFC 2822 address parsing and creation Homepage: https://metacpan.org/release/Email-Address/ Description-md5: 1e8970fa9c7abc7402d943397bdc2c75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libemail-valid-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.192-1 Depends: perl, libmailtools-perl, libnet-dns-perl, libnet-domain-tld-perl, netbase Filename: pool/main/libe/libemail-valid-perl/libemail-valid-perl_1.192-1_all.deb Size: 16454 MD5sum: 2c581079c452e918c934af9c27d7c659 SHA1: 643cbd7389cc2fdff6aa5ea3076e1faf02bd182d SHA256: 6460766fd76365c0cc84ac2c045db7f1c9d0030ef22e748d66d42c5f749e4a03 Description: Perl module for checking the validity of Internet email addresses Homepage: https://metacpan.org/release/Email-Valid/ Description-md5: 1fc85da7a0b1d6032d180b11db5e1387 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libenchant-dev Priority: optional Section: libdevel Installed-Size: 267 Maintainer: Ubuntu Developers Original-Maintainer: Prach Pongpanich Architecture: amd64 Source: enchant Version: 1.6.0-10ubuntu1 Depends: libenchant1c2a (= 1.6.0-10ubuntu1), libglib2.0-dev Filename: pool/main/e/enchant/libenchant-dev_1.6.0-10ubuntu1_amd64.deb Size: 51916 MD5sum: 44ba71fbd8c6363923fd607c807e7d20 SHA1: c2da4e9b25f67a3cac011b1f0a9cbdc7950b3d42 SHA256: 0ec9633bf1d62ca4a9cc6a2e11fb215710052298706b6f2dcbe106109aba1340 Description: Wrapper library for various spell checker engines (development) Homepage: http://www.abisource.com/projects/enchant/ Description-md5: b2620cb0d943a1db9ccdedf63e68ee00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libenchant-voikko Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Prach Pongpanich Architecture: amd64 Source: enchant Version: 1.6.0-10ubuntu1 Replaces: libenchant1c2a (= 1.4.2-3) Depends: libc6 (>= 2.2.5), libenchant1c2a (>= 1.6.0), libglib2.0-0 (>= 2.12.0), libvoikko1 Pre-Depends: multiarch-support Breaks: libenchant1c2a (= 1.4.2-3) Filename: pool/main/e/enchant/libenchant-voikko_1.6.0-10ubuntu1_amd64.deb Size: 5366 MD5sum: 45e0d4e19dcb92cfd4fd65e28abfde58 SHA1: c0b3ca2e27f4e6e3acf874bde57e340dd6ba9fde SHA256: 5cb14132c3a2fafb43f540866fc94dd77e62a366569980e746972237bc0fe143 Description: Voikko spell-checker libenchant plugin Multi-Arch: same Homepage: http://www.abisource.com/projects/enchant/ Description-md5: 6ba31c01c5eaf63c081ad274d913fe07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libenchant1c2a Priority: optional Section: libs Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Prach Pongpanich Architecture: amd64 Source: enchant Version: 1.6.0-10ubuntu1 Replaces: libenchant-dev (<< 1.1.1++cvs.2003.11.08), libenchant1, libenchant1c2 Depends: aspell-en | myspell-dictionary | aspell-dictionary | ispell-dictionary | hunspell-dictionary, libaspell15 (>= 0.60.7~20110707), libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.35.9), libhunspell-1.3-0, libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: enchant Suggests: libenchant-voikko Breaks: ispell (<< 3.3.02), libenchant1, libenchant1c2 Filename: pool/main/e/enchant/libenchant1c2a_1.6.0-10ubuntu1_amd64.deb Size: 64740 MD5sum: 8fe6ce03a2964df5e3514bd968c48f30 SHA1: 45a286b6c095d9d5ad08f6104437d9d48555daab SHA256: b17f9f3e36036d6782de245206aded6f71c78f4e4c6a7576995193e3ebba0f05 Description: Wrapper library for various spell checker engines (runtime libs) Multi-Arch: same Homepage: http://www.abisource.com/projects/enchant/ Description-md5: 376c35f65a2fde728d882fde534aa99e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libencode-hanextra-perl Priority: optional Section: perl Installed-Size: 11070 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.23-2build3 Depends: libc6 (>= 2.2.5), perl (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libe/libencode-hanextra-perl/libencode-hanextra-perl_0.23-2build3_amd64.deb Size: 2804094 MD5sum: b4f5927f0fb43fb97fde5576e0fe7c0f SHA1: 4303b01a5a00b70745f1052f19d272454eb72a7e SHA256: a0fcf9d640c8d50b86cde1d61f01166c79fe7b9a667913a87ac143927864e340 Description: perl module providing extra sets of Chinese character encodings Homepage: http://search.cpan.org/dist/Encode-HanExtra/ Description-md5: c9657081f76f7811fdc359b8cf30270d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libencode-locale-perl Priority: optional Section: perl Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.03-1 Depends: perl Filename: pool/main/libe/libencode-locale-perl/libencode-locale-perl_1.03-1_all.deb Size: 12382 MD5sum: 0c83753bf3cd85dc4e0a837d1225ef31 SHA1: 39cf67b9896d69c1963d90413c31360112b66cb0 SHA256: 8524e2e53f849ac606d0714e3cbe2754702b14e1aeb4698f19337f1b7a18f521 Description: utility to determine the locale encoding Homepage: http://search.cpan.org/dist/Encode-Locale/ Description-md5: 56ab0dbfeb69a085703b46539790f388 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libept-dev Priority: optional Section: libdevel Installed-Size: 3704 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: amd64 Source: libept Version: 1.0.12 Depends: libept1.4.12 (= 1.0.12), libwibble-dev (>= 1.1), libwibble-dev (<< 2.0), libtagcoll2-dev (>= 2.0.6), libtagcoll2-dev (<< 2.1), libapt-pkg-dev (>= 0.6.46.1), libxapian-dev (>= 1.0.5) Recommends: pkg-config Filename: pool/main/libe/libept/libept-dev_1.0.12_amd64.deb Size: 566698 MD5sum: 8303b7365c977a7fc41e6cd3f08c1373 SHA1: befef4384b1235580e9c47a2a52e6ce7c611c641 SHA256: 705fac0a758d2d0aeeb7575379c82c805d54c656a777d7ea0a726c1c7d188c07 Description: High-level library for managing Debian package information Description-md5: db1ebb07da1715a36bf605f6d6b727d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libept1.4.12 Priority: optional Section: libs Installed-Size: 401 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: amd64 Source: libept Version: 1.0.12 Depends: libapt-pkg4.12 (>= 0.8.16~exp9), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/libe/libept/libept1.4.12_1.0.12_amd64.deb Size: 142168 MD5sum: 0bab3f08b170e12bdf963c5232e06791 SHA1: cf037a437ef7e57f11e64d08b5f59b2a6ff9c8f6 SHA256: 8e0166aee9aeb46e61165fcbe86e7ee8165f27cbb458f1f691e30e59f410e1cc Description: High-level library for managing Debian package information Multi-Arch: same Description-md5: dc36b06ff413539afcd133bd1698dd39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, lubuntu-desktop, ubuntustudio-desktop Package: liberror-perl Priority: optional Section: perl Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Clint Burfoot Architecture: all Version: 0.17-1.1 Depends: perl Filename: pool/main/libe/liberror-perl/liberror-perl_0.17-1.1_all.deb Size: 21062 MD5sum: 4988e40e65eeba03317411bfdd52b76c SHA1: 0fa82466fc39398e507eec6567e5a68270b82cda SHA256: 8b4ec546320c0f490cb7c90495abb7cb561229d939d063dde562cb73b796f468 Description: Perl module for error/exception handling in an OO-ish way Description-md5: 06d4af0c3e20d6842d89ce9b62d22ebf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libesd0 Priority: optional Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: esound Version: 0.2.41-11 Depends: libasound2 (>= 1.0.16), libaudiofile1 (>= 0.3.6), libc6 (>= 2.15), esound-common (= 0.2.41-11) Pre-Depends: multiarch-support Suggests: pulseaudio-esound-compat Conflicts: libesd-alsa0 Filename: pool/main/e/esound/libesd0_0.2.41-11_amd64.deb Size: 16686 MD5sum: 17d0bb99f80953987144f975063e9e99 SHA1: cc39f382c7016f698df80ec3382b5f9dce0486fd SHA256: d369a03adb69142c2294875464e6f5639550a8647988ceb1bc4acbe1e48939dd Description: Enlightened Sound Daemon - Shared libraries Multi-Arch: same Description-md5: 23af9daea845a74362f4e1a63a3e5895 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libesd0-dev Priority: optional Section: libdevel Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: esound Version: 0.2.41-11 Depends: libesd0 (= 0.2.41-11), esound-common (= 0.2.41-11), libaudiofile-dev (>= 0.1.5), pkg-config Filename: pool/main/e/esound/libesd0-dev_0.2.41-11_amd64.deb Size: 24352 MD5sum: 5f677d7ef673cd3c3426180132ceb0d4 SHA1: 21e0bc078e5c9e3de3b5d6d77c4b2da13987e9ac SHA256: 74a9047d7841e1e8e5608eb5ad7b15f606862ab909af2b7f3a72f16ae69ae4b1 Description: Enlightened Sound Daemon - Development files Description-md5: c845070216fefb0dc80aaf6ac702ae74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libesmtp-dev Priority: optional Section: libdevel Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy T. Bouse Architecture: amd64 Source: libesmtp Version: 1.0.6-1ubuntu2 Depends: libesmtp6 (= 1.0.6-1ubuntu2), libc6-dev Filename: pool/main/libe/libesmtp/libesmtp-dev_1.0.6-1ubuntu2_amd64.deb Size: 43734 MD5sum: cea55d80e47edacf165bbe5671b040c6 SHA1: 670d90a30e3a43282331b4c0ebe4657b03fadbf3 SHA256: c8050e69bc1e90adfca76360298b3952c3a15e8ff5765343d82e44ae0d6b0276 Description: LibESMTP SMTP client library development files Homepage: http://www.stafford.uklinux.net/libesmtp/ Description-md5: e311e7ad55f947033bf2f9c1bd9e8b92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libesmtp6 Priority: optional Section: libs Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy T. Bouse Architecture: amd64 Source: libesmtp Version: 1.0.6-1ubuntu2 Replaces: libesmtp5 Depends: libc6 (>= 2.16), libssl1.0.0 (>= 1.0.0) Filename: pool/main/libe/libesmtp/libesmtp6_1.0.6-1ubuntu2_amd64.deb Size: 40992 MD5sum: a81d04045ba2332e01babdc93cec28fa SHA1: d3b794acdf4c567df91bc91a2763f27f4ea7f480 SHA256: d299a1bfdad1f4d7f7bbcb6c24d6d724af5d76c7a8351803acb21361dcb11ab7 Description: LibESMTP SMTP client library Homepage: http://www.stafford.uklinux.net/libesmtp/ Description-md5: 1355416562036733fdccb1164963edfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libespeak-dev Priority: optional Section: libdevel Installed-Size: 624 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: espeak Version: 1.47.11-1ubuntu1 Depends: libespeak1 (= 1.47.11-1ubuntu1) Filename: pool/main/e/espeak/libespeak-dev_1.47.11-1ubuntu1_amd64.deb Size: 167054 MD5sum: c94d63281958c7e1f7e0ae6a907c9c50 SHA1: 10d9e0ee0322e6c3b52893385f6558361603ad6f SHA256: e28b851393b7a68665ee2be7c071bd115034669f1d63cfd4233d8489b2c8b225 Description: Multi-lingual software speech synthesizer: development files Multi-Arch: same Homepage: http://espeak.sourceforge.net/ Description-md5: 16f8bdcde457d8c2150cb171d904d7ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libespeak1 Priority: optional Section: libs Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: espeak Version: 1.47.11-1ubuntu1 Depends: libc6 (>= 2.16), libportaudio2 (>= 19+svn20101113), libpulse0 (>= 1:0.99.1), libsonic0 (>= 0.1.10), espeak-data (= 1.47.11-1ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/e/espeak/libespeak1_1.47.11-1ubuntu1_amd64.deb Size: 138298 MD5sum: 166896de536ce7110326d6b21458e845 SHA1: 7731ca2009a4021354958670e3574c738bc11f28 SHA256: 7e7b947233888d7074e13d85f359783dd33b45d9a506caf32d08bb391638a0c8 Description: Multi-lingual software speech synthesizer: shared library Multi-Arch: same Homepage: http://espeak.sourceforge.net/ Description-md5: 979c4445019f29a7a752783878e7fe06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libestr-dev Priority: extra Section: libdevel Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: amd64 Source: libestr Version: 0.1.9-0ubuntu2 Depends: libestr0 (= 0.1.9-0ubuntu2) Filename: pool/main/libe/libestr/libestr-dev_0.1.9-0ubuntu2_amd64.deb Size: 6450 MD5sum: e31c9750362232072e488e6eb4365625 SHA1: c066319dfa38fbe39434e579a4d665f9e5335f6c SHA256: 63e132a1df6ba200ea87e4cc6259b91d2c097a31c7ceb1095ea71fdffcfde56b Description: Helper functions for handling strings (headers) Homepage: http://libestr.sourceforge.net/ Description-md5: c5c3f002eb52c877efe4bd30f3ac45c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libestr0 Priority: important Section: libs Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: amd64 Source: libestr Version: 0.1.9-0ubuntu2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libe/libestr/libestr0_0.1.9-0ubuntu2_amd64.deb Size: 7220 MD5sum: e3a6fe4fecafa0c5485a3c37e005ad97 SHA1: c165a4d9ef9da9f835e3116c9f287f043bce25f5 SHA256: 41e5a9d8b7ae6b29085fe53c4db9154add0c5f979713ec0648ca1d6ebdc65b78 Description: Helper functions for handling strings (lib) Homepage: http://libestr.sourceforge.net/ Description-md5: 9f10d2f5728b61168f4eac12d6f3e6d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libeval-closure-perl Priority: optional Section: perl Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.11-1 Depends: perl, libsub-exporter-perl, libtry-tiny-perl Recommends: libdevel-lexalias-perl (>= 0.05) Filename: pool/main/libe/libeval-closure-perl/libeval-closure-perl_0.11-1_all.deb Size: 11280 MD5sum: 779e3e6a6ca70d468849bbc70bb54ec5 SHA1: e41cea2186aaa5b469cfc7c6bf6625239321f5ce SHA256: 7b017feff06862950956df76a4ce71311378fb3788c0c363cba63b3f85217924 Description: Perl module to safely and cleanly create closures via string eval Homepage: https://metacpan.org/release/Eval-Closure/ Description-md5: e89014767dce167c131f30955893fe75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevdocument3-4 Priority: optional Section: libs Installed-Size: 1215 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: evince Version: 3.10.3-0ubuntu10 Replaces: libevince3-3 Depends: libc6 (>= 2.14), libcairo2 (>= 1.10.0), libdjvulibre21 (>= 3.5.25.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.8.0), libgxps2 (>= 0.2.1), libkpathsea6, libpango-1.0-0 (>= 1.14.0), libpoppler-glib8 (>= 0.24.0), libspectre1 (>= 0.2.3), libt1-5 (>= 5.1.0), libtiff5 (>= 4.0.3), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Breaks: libevince3-3 Filename: pool/main/e/evince/libevdocument3-4_3.10.3-0ubuntu10_amd64.deb Size: 218236 MD5sum: 479dbc42ba61bce88c9d2e71dc7f949f SHA1: e899eff636207e0868be427b207d46940d962663 SHA256: 58cbf935f9182e51676fcfcb956763ed150246afc1f8122272c60786167820b9 Description: Document (PostScript, PDF) rendering library Homepage: http://www.gnome.org/projects/evince/ Description-md5: 956c243a0a4027d023c642ebca2308fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libevent-2.0-5 Priority: optional Section: libs Installed-Size: 311 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/libe/libevent/libevent-2.0-5_2.0.21-stable-1ubuntu1_amd64.deb Size: 125728 MD5sum: b70ef7336fcee79376c95b4e3efd2d26 SHA1: cdab1678f68dbc0131f9743030fb850ee97d0f39 SHA256: 70020d4194046f1cb16d3d2bafb0a4f26fdef0aabaffca7172d3d2ca36b2da4f Description: Asynchronous event notification library Multi-Arch: same Homepage: http://libevent.org/ Description-md5: 45b333b614c8e682d2a525e278f5c233 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libevent-core-2.0-5 Priority: optional Section: libs Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/libe/libevent/libevent-core-2.0-5_2.0.21-stable-1ubuntu1_amd64.deb Size: 77866 MD5sum: b0565c255b28f2abe1c5dbec5daa063c SHA1: c676b8c6cecc50671b524e716dd031b0693e1a4e SHA256: 3cb46a600ed7fb277c1a7a26958df8d2277199803baccce21aaa8ef9f9eb9262 Description: Asynchronous event notification library (core) Multi-Arch: same Homepage: http://libevent.org/ Description-md5: 951eaa6250fb2e171dca3efbd48a13f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevent-dbg Priority: extra Section: debug Installed-Size: 782 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libevent-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-core-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-extra-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-pthreads-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-openssl-2.0-5 (= 2.0.21-stable-1ubuntu1) Filename: pool/main/libe/libevent/libevent-dbg_2.0.21-stable-1ubuntu1_amd64.deb Size: 644450 MD5sum: c8171c3a796b4b5b6b0a6e3dfa7639ca SHA1: 38e063efe2d311cd420f711bdecdc23abb56989d SHA256: 62c44ffad1113b6834a5b35888e6ad2914067e9d28dfb93757a4c5b8bdd6b3ac Description: Asynchronous event notification library (debug symbols) Multi-Arch: same Homepage: http://libevent.org/ Description-md5: bb5dc0220b6e054969b4eb43196d2663 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevent-dev Priority: optional Section: libdevel Installed-Size: 1388 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libevent-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-core-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-extra-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-pthreads-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-openssl-2.0-5 (= 2.0.21-stable-1ubuntu1) Filename: pool/main/libe/libevent/libevent-dev_2.0.21-stable-1ubuntu1_amd64.deb Size: 258818 MD5sum: 4e8f415d3d07d7db8d8a565fdd719631 SHA1: 513d6a1d808a24847b94fa77237a99b14dee7d41 SHA256: e78047366fae10eb625eba7a5cde94106a6dcd7b21e82a5a551889b520275b65 Description: Asynchronous event notification library (development files) Homepage: http://libevent.org/ Description-md5: a0372b2adf9c0952b500f3fdbe22e52d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevent-extra-2.0-5 Priority: optional Section: libs Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libc6 (>= 2.14), libevent-core-2.0-5 (= 2.0.21-stable-1ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/libe/libevent/libevent-extra-2.0-5_2.0.21-stable-1ubuntu1_amd64.deb Size: 57786 MD5sum: adeeb2f3eb9265b0ec093af630bd8551 SHA1: 07bd164784f68a63946a61c2ccba309d18cea6c4 SHA256: cc4f1a5fbc808ec5f2e9433b7bde1f2a56b63e46831b7e164154b9a1c548ad53 Description: Asynchronous event notification library (extra) Multi-Arch: same Homepage: http://libevent.org/ Description-md5: 7e81dabcc83d13ad144b6515c21b85c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevent-openssl-2.0-5 Priority: optional Section: libs Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libc6 (>= 2.2.5), libevent-core-2.0-5 (= 2.0.21-stable-1ubuntu1), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/libe/libevent/libevent-openssl-2.0-5_2.0.21-stable-1ubuntu1_amd64.deb Size: 12678 MD5sum: b8635f824a0b3c59a98a3e92af06253d SHA1: 51efaf2a30d6ac3856de0beee267e6323fb5038f SHA256: 0dcab2c058c24fef2e061e1bc9eb9ed0999d0e926e4eb76914ebd251d9ecae76 Description: Asynchronous event notification library (openssl) Multi-Arch: same Homepage: http://libevent.org/ Description-md5: 9fbb926ce82ae47152f531168a5a07bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevent-pthreads-2.0-5 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libc6 (>= 2.3.2), libevent-core-2.0-5 (= 2.0.21-stable-1ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/libe/libevent/libevent-pthreads-2.0-5_2.0.21-stable-1ubuntu1_amd64.deb Size: 6132 MD5sum: d26c1b94e5361c432cd329f08232744f SHA1: 1d2ca6a1067139bcf86bc7fba3f9b77a3f5276af SHA256: 2d52ab468d207ff871a40aabbb5194bfe4cdeb83aaa12fda673653b90ec6fdd1 Description: Asynchronous event notification library (pthreads) Multi-Arch: same Homepage: http://libevent.org/ Description-md5: 1a5d857791ab89f821f6bb92b9d541ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevince-dev Priority: optional Section: libdevel Installed-Size: 2826 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: evince Version: 3.10.3-0ubuntu10 Depends: libevdocument3-4 (= 3.10.3-0ubuntu10), libevview3-3 (= 3.10.3-0ubuntu10), gir1.2-evince-3.0 (= 3.10.3-0ubuntu10), libgtk-3-dev (>= 3.8.0), libglib2.0-dev (>= 2.36) Filename: pool/main/e/evince/libevince-dev_3.10.3-0ubuntu10_amd64.deb Size: 261212 MD5sum: 3d3c2afccfbe86cbec35cc6d3f08090e SHA1: 41ed8466262ac18640661136f93a9a2c028a4bb1 SHA256: bda8eb399f701d9e2e81287aba926541a06d915bd33295042fa33feb9fa6e72f Description: Document (PostScript, PDF) rendering library - development files Homepage: http://www.gnome.org/projects/evince/ Description-md5: 708a823ea6956d2cc85b60391375a7cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevolution Priority: optional Section: gnome Installed-Size: 7255 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: evolution Version: 3.10.4-0ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10.0), libcamel-1.2-45 (>= 3.8.2), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libebackend-1.2-7 (>= 3.7.3), libebook-1.2-14 (>= 3.7.90), libebook-contacts-1.2-0 (>= 3.7.90), libecal-1.2-16 (>= 3.7.90), libedataserver-1.2-18 (>= 3.10.0), libgail-3-0 (>= 3.0.0), libgdata13 (>= 0.10.1), libgdk-pixbuf2.0-0 (>= 2.23.0), libglib2.0-0 (>= 2.35.9), libgnome-desktop-3-7 (>= 3.2.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.4.0), libgtkhtml-4.0-0 (>= 4.6), libgtkhtml-4.0-0 (<< 4.8), libgtkhtml-editor-4.0-0 (>= 4.6), libgtkhtml-editor-4.0-0 (<< 4.8), libgweather-3-6 (>= 3.7.91), libical1 (>= 1.0), libldap-2.4-2 (>= 2.4.7), libnotify4 (>= 0.7.0), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libpango-1.0-0 (>= 1.20.0), libpangocairo-1.0-0 (>= 1.14.0), libsecret-1-0 (>= 0.7), libsoup-gnome2.4-1 (>= 2.40.3), libsoup2.4-1 (>= 2.33.92), libwebkitgtk-3.0-0 (>= 2.1.90), libxml2 (>= 2.9.0), libytnef0 Filename: pool/main/e/evolution/libevolution_3.10.4-0ubuntu1_amd64.deb Size: 2027998 MD5sum: 735c897a8e861c48d424059f4580c9d1 SHA1: 7c59aeea50fa0c70829ed46cf2add5ee19b02ae8 SHA256: bc37b368d30a15a929ddbcfad84e45a43983b61f56b88e8e830a01bd90e077ba Description: evolution libraries Homepage: http://projects.gnome.org/evolution/ Description-md5: 7436231c1d82f82c18cdb494998d7362 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libevview3-3 Priority: optional Section: libs Installed-Size: 905 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: evince Version: 3.10.3-0ubuntu10 Replaces: libevince3-3 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.2.5), libcairo2 (>= 1.10.0), libevdocument3-4 (>= 3.9.5), libgail-3-0 (>= 3.0.0), libglib2.0-0 (>= 2.37.3), libgrip0 (>= 0.1.0), libgtk-3-0 (>= 3.8.0), libpango-1.0-0 (>= 1.14.0) Breaks: libevince3-3 Filename: pool/main/e/evince/libevview3-3_3.10.3-0ubuntu10_amd64.deb Size: 100638 MD5sum: 40d446d5bb5865d2796ae4ed50db7bd1 SHA1: cabbf34b4c463ded2f6c5b2f65a8eb51d148c4fa SHA256: 42df282dd40b47eb7b28ffd544c0c26b3fb1a55c5c4b118d53dac42d6adaba29 Description: Document (PostScript, PDF) rendering library - Gtk+ widgets Homepage: http://www.gnome.org/projects/evince/ Description-md5: ecf4f1038683832203c18a4989faaa7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libexcalibur-logkit-java Priority: optional Section: java Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: excalibur-logkit Version: 2.0-10 Replaces: liblogkit-java Conflicts: liblogkit-java Filename: pool/main/e/excalibur-logkit/libexcalibur-logkit-java_2.0-10_all.deb Size: 76560 MD5sum: 19f006fc3adf2779d04112f1f24bfa9a SHA1: 36876cd679e97095feb64d6dc1ad808f1caff653 SHA256: 41f33248443f97e9144b8f67ced9de0342cc9a91650cf2282b165041ddc1d149 Description: Lightweight and fast designed logging toolkit for Java Homepage: http://excalibur.apache.org/ Description-md5: 08162c5b39eb983f2aa76430dfd6d01b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexcalibur-logkit-java-doc Priority: optional Section: doc Installed-Size: 2563 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: excalibur-logkit Version: 2.0-10 Filename: pool/main/e/excalibur-logkit/libexcalibur-logkit-java-doc_2.0-10_all.deb Size: 185160 MD5sum: fa285a7ddcd6a2099600c194f062300f SHA1: 4830066d9a4057b8bd0c9ef7b6dcae851a2fff50 SHA256: 5d57f7ea1b18be6b068e19abe2d5193220342f5d31bd937b0d871953500e6b9d Description: Lightweight and fast designed logging toolkit for Java (API docs) Homepage: http://excalibur.apache.org/ Description-md5: 36f1596f4e096b21f4dfd712caf3cc39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexception-class-perl Priority: optional Section: perl Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.37-1 Depends: perl, libclass-data-inheritable-perl, libdevel-stacktrace-perl Filename: pool/main/libe/libexception-class-perl/libexception-class-perl_1.37-1_all.deb Size: 25864 MD5sum: 1eec870d566feaeaec55db0bd4dfa58a SHA1: b7d666ae27cfdf13c48182837359700275bfbcee SHA256: 0a3663e97af09d77b52b60edcd1b616e165be963153f5636d8248fbfcda837b0 Description: module that allows you to declare real exception classes in Perl Homepage: https://metacpan.org/release/Exception-Class/ Description-md5: fee2d46a930b8837b66c328030aa8d13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexempi-dev Priority: optional Section: libdevel Installed-Size: 2486 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: amd64 Source: exempi Version: 2.2.1-1ubuntu1 Depends: libexempi3 (= 2.2.1-1ubuntu1) Filename: pool/main/e/exempi/libexempi-dev_2.2.1-1ubuntu1_amd64.deb Size: 683616 MD5sum: 9167476ff017d39c99804a3b11a3bf09 SHA1: 6b4051aa9ce7b0709ce94c7a25cb4be386415909 SHA256: 1c1fa497f38c298d56304f7c62b71ee70be78b6aa95ec3eee7b387e12a69fe85 Description: library to parse XMP metadata (Development files) Multi-Arch: same Homepage: http://libopenraw.freedesktop.org/wiki/Exempi Description-md5: 29a8433f55412caee7501825a1bc21e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexempi3 Priority: optional Section: libs Installed-Size: 1126 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: amd64 Source: exempi Version: 2.2.1-1ubuntu1 Depends: libc6 (>= 2.14), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/e/exempi/libexempi3_2.2.1-1ubuntu1_amd64.deb Size: 472322 MD5sum: 82926461367e684ed23d7192f6eca00f SHA1: ff3f09d1e2f971b4c011639dc57bb6dd967afa49 SHA256: 61476ccac23f4d3a538c4d0346af99bf1d414f8016c1809c6259bf814022c762 Description: library to parse XMP metadata (Library) Multi-Arch: same Homepage: http://libopenraw.freedesktop.org/wiki/Exempi Description-md5: a1c9bcccb3f7f9214a240f613e875fbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libexempi3-dbg Priority: extra Section: debug Installed-Size: 3106 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: amd64 Source: exempi Version: 2.2.1-1ubuntu1 Depends: libexempi3 (= 2.2.1-1ubuntu1) Filename: pool/main/e/exempi/libexempi3-dbg_2.2.1-1ubuntu1_amd64.deb Size: 3100310 MD5sum: 23a2b829b52123eb084678484c7cf0e9 SHA1: 57bc5f3060e03a514ea682b4085c5d0c708fd075 SHA256: dd23f248505a1bc101e4a6b77a4206439db43b56c43d6a1e120341c298546105 Description: library to parse XMP metadata (Debug files) Multi-Arch: same Homepage: http://libopenraw.freedesktop.org/wiki/Exempi Description-md5: 59f67d930d936c935bf6cbb1d13acb68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexif-dev Priority: optional Section: libdevel Installed-Size: 1639 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: amd64 Source: libexif Version: 0.6.21-1ubuntu1 Depends: libc6-dev, libexif12 (= 0.6.21-1ubuntu1), libjs-jquery Filename: pool/main/libe/libexif/libexif-dev_0.6.21-1ubuntu1_amd64.deb Size: 270384 MD5sum: ffebd47e56c7496fff3b2b8094a40579 SHA1: cbb030934a4bfbcea43c9f3695d5c6a164400f8d SHA256: 30a32d79402bb7895ff67ad0dfa6ab8358dc03101e122b9d1d6204034ddde795 Description: library to parse EXIF files (development files) Homepage: http://libexif.sourceforge.net/ Description-md5: 8c30e3b15204de874eb1e6fb7a6a74ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexif12 Priority: optional Section: libs Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: amd64 Source: libexif Version: 0.6.21-1ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libe/libexif/libexif12_0.6.21-1ubuntu1_amd64.deb Size: 75512 MD5sum: fc7c3e2f682f61d407c05b3e3a2ee9c7 SHA1: b0ce2fb93f855676253260cfefe7e6233be28366 SHA256: efc84075647f0fa60195394d5b380ae9bc5468bab33b4098c398c6ecbe501352 Description: library to parse EXIF files Multi-Arch: same Homepage: http://libexif.sourceforge.net/ Description-md5: 7cb2387fed63f9f1902bcc28bafbd66b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libexiv2-12 Priority: optional Section: libs Installed-Size: 2301 Maintainer: Ubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: exiv2 Version: 0.23-1ubuntu2 Depends: libc6 (>= 2.14), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Suggests: exiv2 Filename: pool/main/e/exiv2/libexiv2-12_0.23-1ubuntu2_amd64.deb Size: 598036 MD5sum: a83b3809435b06f668556dc8c9ed2c93 SHA1: ce67f700547f07b9b05211e51349229ddd204f2b SHA256: 1d85dedc41dbf01ce39d3557b91c6f4258bfb4b636e885fe03fc5ed494137a2d Description: EXIF/IPTC metadata manipulation library Homepage: http://www.exiv2.org Description-md5: 6e76ca4adbe1f5d1291bf7773427c33d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libexiv2-dbg Priority: extra Section: debug Installed-Size: 18341 Maintainer: Ubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: exiv2 Version: 0.23-1ubuntu2 Depends: libexiv2-12 (= 0.23-1ubuntu2) Filename: pool/main/e/exiv2/libexiv2-dbg_0.23-1ubuntu2_amd64.deb Size: 3479112 MD5sum: dd45d921252b2714bb4abe284b255603 SHA1: a5f8b71cfae154603d03abfad99c4cf5c5b14e29 SHA256: c8232d2897eb3962c356aa63f22d1b27c53a86188ebe266fa1bcac701ec9625d Description: EXIF/IPTC metadata manipulation library - debug Homepage: http://www.exiv2.org Description-md5: 1c3a4d0dcba5b770d4ef282ad13ec59f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexiv2-dev Priority: optional Section: libdevel Installed-Size: 6292 Maintainer: Ubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: exiv2 Version: 0.23-1ubuntu2 Depends: libexiv2-12 (= 0.23-1ubuntu2), pkg-config Suggests: libexiv2-doc Filename: pool/main/e/exiv2/libexiv2-dev_0.23-1ubuntu2_amd64.deb Size: 776130 MD5sum: a6026154bb7791a5e63e169bb51310ba SHA1: 0f69fe24226a16b7f92ac7e6fea8126ad0025c8a SHA256: a07019572955eba617bb17831b608b850247783ae7a8dd1b76d2aae0d4b88dd2 Description: EXIF/IPTC metadata manipulation library - development files Homepage: http://www.exiv2.org Description-md5: 8408a1b5fb81618ee3ee0c6864f4ab39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexiv2-doc Priority: optional Section: doc Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: all Source: exiv2 Version: 0.23-1ubuntu2 Filename: pool/main/e/exiv2/libexiv2-doc_0.23-1ubuntu2_all.deb Size: 39018 MD5sum: 5bc93dbb9ecb942313e4e7cd697da55a SHA1: 8c6057875e1033b991543609055af485a01fae1f SHA256: 9db438573bba9cec6560b0b92e27ed052473df1ee631236817c2457ed433abaa Description: EXIF/IPTC metadata manipulation library - HTML documentation Homepage: http://www.exiv2.org Description-md5: 4f4a1c5f79034f3277873dbc9a2e0d34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexpat1 Priority: important Section: libs Installed-Size: 390 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: expat Version: 2.1.0-4ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: wink (<= 1.5.1060-4) Filename: pool/main/e/expat/libexpat1_2.1.0-4ubuntu1_amd64.deb Size: 71062 MD5sum: 205be3358c2336f34bb338adff003028 SHA1: 6b98cca868d7a6957836581b4ec0975defd774eb SHA256: f2afcc23ec364cd9df7aaaa1ecd73a1dae9c0b05c404fda05eb55756da8bfadb Description: XML parsing C library - runtime library Multi-Arch: same Homepage: http://expat.sourceforge.net Description-md5: 969a775adb36dbfb73b9d7ef67f13bd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libexpat1-dev Priority: optional Section: libdevel Installed-Size: 904 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: expat Version: 2.1.0-4ubuntu1 Provides: libexpat-dev Depends: libexpat1 (= 2.1.0-4ubuntu1), libc6-dev | libc-dev Conflicts: libexpat-dev Filename: pool/main/e/expat/libexpat1-dev_2.1.0-4ubuntu1_amd64.deb Size: 114822 MD5sum: 51136f2b589a7e650fc8e751b2e65ff8 SHA1: af0b562647e1ed092dc252b82123e52e21716ef9 SHA256: 850ce18da3e580668fa30412157bd07908be5226b8b9b5426f3e9e5d70de478c Description: XML parsing C library - development kit Multi-Arch: same Homepage: http://expat.sourceforge.net Description-md5: 0b45073661cf63b9161c598405a4e62d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libexporter-lite-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.02-2 Depends: perl Filename: pool/main/libe/libexporter-lite-perl/libexporter-lite-perl_0.02-2_all.deb Size: 8924 MD5sum: a4f3a1c1ae2d6b023f6b155660de1113 SHA1: af83231bdf5cd989caf389445a7b93158c62cb5d SHA256: a6f15371521232ffbd30d306e4e0ca6f555b13971f51ee80c53dfc8103135e07 Description: lightweight subset of Exporter Homepage: http://search.cpan.org/dist/Exporter-Lite/ Description-md5: c56451c6043a4eb8b5548b0cb5637ed6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libexttextcat-2.0-0 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libexttextcat Version: 3.4.3-1ubuntu1 Depends: libc6 (>= 2.14), libexttextcat-data (= 3.4.3-1ubuntu1) Filename: pool/main/libe/libexttextcat/libexttextcat-2.0-0_3.4.3-1ubuntu1_amd64.deb Size: 13048 MD5sum: 19cd619031ca969fb05a777e08a02315 SHA1: 73082e7f5ccf0814bd38d235163ce4d176c142a0 SHA256: 3ec52c1a3252825c92cb57059eac35df84b73865c5c845f01c6877cc948bb63d Description: Language detection library Homepage: http://software.wise-guys.nl/libtextcat/ Description-md5: 401d653d08b2ed885c9aa59a7d2b02ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libexttextcat-data Priority: optional Section: text Installed-Size: 412 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libexttextcat Version: 3.4.3-1ubuntu1 Filename: pool/main/libe/libexttextcat/libexttextcat-data_3.4.3-1ubuntu1_all.deb Size: 155494 MD5sum: 8402a440eea26b579c2ef82f1718c199 SHA1: 7b6dc1432273313cce015946facab3e6326c3542 SHA256: 695727d22ae8f5e4a0abb883b3b868e4308a6912e04e28fc043c14de7ba9ca22 Description: Language detection library - data files Homepage: http://software.wise-guys.nl/libtextcat/ Description-md5: 28d014fb56e2d488e67aa91cc00d1e72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libexttextcat-dev Priority: optional Section: libdevel Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libexttextcat Version: 3.4.3-1ubuntu1 Depends: libexttextcat-2.0-0 (= 3.4.3-1ubuntu1) Filename: pool/main/libe/libexttextcat/libexttextcat-dev_3.4.3-1ubuntu1_amd64.deb Size: 13128 MD5sum: 1d8d0c56bb8ff50542d62a56ab18ee7a SHA1: 8c88c91ce5a6118a57bccbb296791293fd6351f8 SHA256: b3bc6b6d357fa411c73a2bdd3f0b2c5eaa917c1ddb8c838fb1d2cc27c5d71aa0 Description: Language detection library - development files Homepage: http://software.wise-guys.nl/libtextcat/ Description-md5: c21866821072dd789b2090997112eefb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libextutils-config-perl Priority: optional Section: perl Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.007-1 Depends: perl Filename: pool/main/libe/libextutils-config-perl/libextutils-config-perl_0.007-1_all.deb Size: 5484 MD5sum: 2229f354fc1e6f15ddbe16c0c24f8912 SHA1: 533010518ad790938781964365e2c386e81cd220 SHA256: e451d3abfb01ac9e3ccfc1340738a269bdaddb097cadd66cb3c8b12996e4339e Description: wrapper for perl's configuration Homepage: https://metacpan.org/release/ExtUtils-Config/ Description-md5: 685246915fbd707d7cf48c820e30f1c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libextutils-depends-perl Priority: optional Section: perl Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.305-1 Depends: perl Filename: pool/main/libe/libextutils-depends-perl/libextutils-depends-perl_0.305-1_all.deb Size: 15390 MD5sum: 5f76b78e99bb2b3fa9c9e8544adf5515 SHA1: d5035790f68edb96594a834166e07dd491fadf9a SHA256: 76b5158a89cf7f241769f9d20624c3015d7fbada0734de2b1d73d0e2f8592845 Description: Perl module for building extensions that depend on other extensions Homepage: http://gtk2-perl.sourceforge.net/ Description-md5: 539143b0ed56ca42100d14545eb4f268 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libextutils-helpers-perl Priority: optional Section: perl Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.021-1 Depends: perl Filename: pool/main/libe/libextutils-helpers-perl/libextutils-helpers-perl_0.021-1_all.deb Size: 15472 MD5sum: 5d1916c23c73b582e0d34fa2edd33fcf SHA1: 2f88bee11a1c8140255cf1fec83a86efdbb94987 SHA256: b3c284d3357920710ecf902e8d363d082a85ca2cbbfc6d0c47e748d54dcd0247 Description: various portability utilities for module builders Homepage: https://metacpan.org/release/ExtUtils-Helpers/ Description-md5: f503768c460faf962e5783f9d0d72d03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libextutils-installpaths-perl Priority: optional Section: perl Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.010-1 Depends: perl, libextutils-config-perl Filename: pool/main/libe/libextutils-installpaths-perl/libextutils-installpaths-perl_0.010-1_all.deb Size: 14544 MD5sum: ef95376100527c4234b0a6f4aea25f26 SHA1: 2255d527b2597e72ed89c1c20ffaa797dec01a3d SHA256: bebbd6b3584c34c1f0186c1526efea7b09004d664fcd9f2a56d1307098cabfcc Description: module to make Build.PL install path logic easy Homepage: https://metacpan.org/release/ExtUtils-InstallPaths Description-md5: 05a1ecf4b53ddd0c54ea0336dfd5257d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfakeroot Priority: optional Section: utils Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Clint Adams Architecture: amd64 Source: fakeroot Version: 1.20-3ubuntu2 Replaces: fakeroot (<< 1.20-2~) Depends: libc6 (>= 2.14) Breaks: fakeroot (<< 1.20-2~) Filename: pool/main/f/fakeroot/libfakeroot_1.20-3ubuntu2_amd64.deb Size: 25392 MD5sum: 856c7401d7d5a63ea231f706c18d9261 SHA1: 0f8a118e10eac05012ebc3d9afe2ae7646fd70cf SHA256: bd20ddfb0706a1719f24af770dfa99c1627bda6eecc2fca35bb774a3fdf5557c Description: tool for simulating superuser privileges - shared libraries Multi-Arch: same Description-md5: 22ea5d7d46de1e430af3ef824ed6d524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfaketime Priority: extra Section: utils Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Kahn Gillmor Architecture: amd64 Source: faketime Version: 0.9.5-2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/f/faketime/libfaketime_0.9.5-2_amd64.deb Size: 20590 MD5sum: 733a2d432c501c21f4702cc1df47f6e5 SHA1: 65db59637d8de7a067f964c46464b2f6ab4acce6 SHA256: 291a048fa04a842f1c1b4964a6cab1b96e2eed9e797e651234cd225d70076b35 Description: report faked system time to programs Multi-Arch: same Homepage: http://www.code-wizards.com/projects/libfaketime/ Description-md5: 9230deac6c49626e80400467f9098477 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.1-0 Priority: optional Section: libs Installed-Size: 703 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: farstream Version: 0.1.2-1ubuntu3 Replaces: libgstfarsight0.10-0 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base0.10-0 (>= 0.10.33), libgstreamer0.10-0 (>= 0.10.33), libnice10 (>= 0.1.0), gstreamer0.10-plugins-base (>= 0.10.33), gstreamer0.10-plugins-good (>= 0.10.29), gstreamer0.10-nice (>= 0.1.0) Pre-Depends: multiarch-support Conflicts: libgstfarsight0.10-0 Filename: pool/main/f/farstream/libfarstream-0.1-0_0.1.2-1ubuntu3_amd64.deb Size: 183318 MD5sum: 8787305e11d00ba6778fd1797c9643e1 SHA1: 652a72a1750ec97cf755b62a528be195ef5342b5 SHA256: 1fae40a3234285d177dd0e15f2ffdfece9314d8d87751feb14b7031acffa53ab Description: Audio/Video communications framework: core library Multi-Arch: same Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: f7d95180a5bfbf33d770c2d677e3d23a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libfarstream-0.1-dbg Priority: extra Section: debug Installed-Size: 1069 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: farstream Version: 0.1.2-1ubuntu3 Depends: libfarstream-0.1-0 (= 0.1.2-1ubuntu3), libgstreamer0.10-dev Filename: pool/main/f/farstream/libfarstream-0.1-dbg_0.1.2-1ubuntu3_amd64.deb Size: 826120 MD5sum: 79ac77cee89dd867f6137e15c64e6510 SHA1: 557bf12a1dd0da4c3546d4ca66673b4ad5cf692b SHA256: e57c6dc999edef67952270be1575a07579240287439269fffc48ae13f52c4d4e Description: Audio/Video communications framework: debugging symbols Multi-Arch: same Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 1bbfbb00dc986d10b6c659758cff41aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.1-dev Priority: optional Section: libdevel Installed-Size: 457 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: farstream Version: 0.1.2-1ubuntu3 Depends: libfarstream-0.1-0 (= 0.1.2-1ubuntu3), libgstreamer0.10-dev, gir1.2-farstream-0.1 Filename: pool/main/f/farstream/libfarstream-0.1-dev_0.1.2-1ubuntu3_amd64.deb Size: 52390 MD5sum: 1e30cc4e8dd68a9763c5235aa2e122b0 SHA1: ea7efd280d17626f1e7dea3269aa84842abcff15 SHA256: 7e37c052ef3b581496671406f1f6582b04b6e3ff98b343e2391105fad0ef01de Description: Audio/Video communications framework: development files Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 3738ffa6e8fc2324f1230a8c8a058ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.1-doc Priority: optional Section: doc Installed-Size: 683 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: farstream Version: 0.1.2-1ubuntu3 Filename: pool/main/f/farstream/libfarstream-0.1-doc_0.1.2-1ubuntu3_all.deb Size: 51898 MD5sum: 78d8ac35840bc5d88dd049a447628964 SHA1: 6123e1e34f4800aab72ed6ca4e0bb99488d89c95 SHA256: 04a771f5a64301037cfad38fafb8869c7042516f316f61bf3584bb6239489075 Description: Audio/Video communications framework: documentation Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 37859e01ed610b45e8284b5a141d0595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.2-2 Priority: optional Section: libs Installed-Size: 676 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: farstream-0.2 Version: 0.2.3-1ubuntu2 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.35.9), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgupnp-igd-1.0-4 (>= 0.2.1), libnice10 (>= 0.1.0), gstreamer1.0-plugins-base, gstreamer1.0-plugins-good, gstreamer1.0-nice Pre-Depends: multiarch-support Conflicts: libfarstream-0.2-0 Filename: pool/main/f/farstream-0.2/libfarstream-0.2-2_0.2.3-1ubuntu2_amd64.deb Size: 182234 MD5sum: 1147db37868c1f41de1d90f7b581ec7b SHA1: 6c716ab486b039c7bd5fe1421b5d09afbb9a923a SHA256: e2af281f8d6f2dd6d526b1f10d2714785b47094186df5640d01d69ebde53f734 Description: Audio/Video communications framework: core library Multi-Arch: same Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: f7d95180a5bfbf33d770c2d677e3d23a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libfarstream-0.2-dbg Priority: extra Section: debug Installed-Size: 911 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: farstream-0.2 Version: 0.2.3-1ubuntu2 Depends: libfarstream-0.2-2 (= 0.2.3-1ubuntu2), libgstreamer1.0-dev Filename: pool/main/f/farstream-0.2/libfarstream-0.2-dbg_0.2.3-1ubuntu2_amd64.deb Size: 697494 MD5sum: 1a952a1999eb6dbeea8cc50bb5db4ab4 SHA1: 6b34f430e469ca2b6e3a7016c04c1867e8889f47 SHA256: 6c29d804a319d09664af8b1311c1d340c616647e9bcafb511fe1f0a443e2e6f9 Description: Audio/Video communications framework: debugging symbols Multi-Arch: same Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 1bbfbb00dc986d10b6c659758cff41aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.2-dev Priority: optional Section: libdevel Installed-Size: 315 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: farstream-0.2 Version: 0.2.3-1ubuntu2 Depends: libfarstream-0.2-2 (= 0.2.3-1ubuntu2), libgstreamer1.0-dev, gir1.2-farstream-0.2 Filename: pool/main/f/farstream-0.2/libfarstream-0.2-dev_0.2.3-1ubuntu2_amd64.deb Size: 28040 MD5sum: fb1e930834550af379b07f846e71ff8f SHA1: fe04350e813e1343a772361d6c12add9fccde1c6 SHA256: c064fc638cae2cc02d0d696e46a0947d5cf0f28b80eaf4f88cb547db6fc49172 Description: Audio/Video communications framework: development files Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 3738ffa6e8fc2324f1230a8c8a058ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.2-doc Priority: optional Section: doc Installed-Size: 661 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: farstream-0.2 Version: 0.2.3-1ubuntu2 Filename: pool/main/f/farstream-0.2/libfarstream-0.2-doc_0.2.3-1ubuntu2_all.deb Size: 52234 MD5sum: 674c00d629a18fe427482db83ce198a7 SHA1: f3d92c4530d439f810b7c890f427478c2f3bce55 SHA256: bf295ac1056f432fa8fdc48e3cf5dbea0ea1a341104a57118c1f5c7465097c71 Description: Audio/Video communications framework: documentation Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 37859e01ed610b45e8284b5a141d0595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfcgi-dev Priority: optional Section: libdevel Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Tatsuki Sugiura Architecture: amd64 Source: libfcgi Version: 2.4.0-8.1ubuntu5 Depends: libfcgi0ldbl (= 2.4.0-8.1ubuntu5) Filename: pool/main/libf/libfcgi/libfcgi-dev_2.4.0-8.1ubuntu5_amd64.deb Size: 30698 MD5sum: 9e61430525718b9deb1baafab1a12adc SHA1: 8840741a9e45ebff9d2a6dd286811fa1f0f02f6c SHA256: 565cb7c0058921b3d6e1e249add7845214a1df568f2777e6f39950dceaabbf4c Description: Header files of FastCGI Homepage: http://www.fastcgi.com/drupal/ Description-md5: 009cd06efa144074b4d3ca259df10f47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfcgi0ldbl Priority: optional Section: libs Installed-Size: 488 Maintainer: Ubuntu Developers Original-Maintainer: Tatsuki Sugiura Architecture: amd64 Source: libfcgi Version: 2.4.0-8.1ubuntu5 Replaces: libfcgi0, libfcgi0c2 Provides: libfcgi Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: libfcgi0, libfcgi0c2 Filename: pool/main/libf/libfcgi/libfcgi0ldbl_2.4.0-8.1ubuntu5_amd64.deb Size: 161430 MD5sum: 3eeb8c183c413dcaac2eab5cf4ec1db8 SHA1: 7ea90ad7b77e5404337ddcc082d681fd685451d0 SHA256: c6035d4b471be7b127adf2c9c05303908fbae81aa9741124f3ad55545f5f0942 Description: Shared library of FastCGI Homepage: http://www.fastcgi.com/drupal/ Description-md5: 02d3c70a95e5835be90e8145cadd24cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfdt-dev Priority: extra Section: libdevel Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Hector Oron Architecture: amd64 Source: device-tree-compiler Version: 1.4.0+dfsg-1 Depends: libfdt1 (= 1.4.0+dfsg-1) Filename: pool/main/d/device-tree-compiler/libfdt-dev_1.4.0+dfsg-1_amd64.deb Size: 22122 MD5sum: 71cddc7a897a3c171bbe35040de98a67 SHA1: 806ab9350871345191e90affc589537a509e150b SHA256: f6f65d639a4120fc6c75f0b8674cd04e70383030741a55ea9f7ccef58f617b4e Description: Flat Device Trees manipulation library - development files Homepage: http://git.jdl.com/gitweb/?p=dtc.git Description-md5: ad28e5f86214823e1f8f3d325c48bfcf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfdt1 Priority: extra Section: libs Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Hector Oron Architecture: amd64 Source: device-tree-compiler Version: 1.4.0+dfsg-1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/d/device-tree-compiler/libfdt1_1.4.0+dfsg-1_amd64.deb Size: 15678 MD5sum: 5dd80e05348eec241f62ff8dd7d2e8f2 SHA1: dfe4a055084e4cab7866bfdd15a4dfb2f1d8bc87 SHA256: 0da2d053ec0f291499701758b8d8ed2556126200dd2c64e0ed5966751655782c Description: Flat Device Trees manipulation library Multi-Arch: same Homepage: http://git.jdl.com/gitweb/?p=dtc.git Description-md5: f077c697bf6c3a18b07f993cec1cb219 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libffado-dev Priority: optional Section: libdevel Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: libffado Version: 2.1.0+svn2240-1ubuntu3 Depends: libffado2 (= 2.1.0+svn2240-1ubuntu3), libxml2-dev Filename: pool/main/libf/libffado/libffado-dev_2.1.0+svn2240-1ubuntu3_amd64.deb Size: 6906 MD5sum: 689e67b980842ffffed38dc7d292cd7a SHA1: c0381187a5ccdb435e54f34911174995a86a76f5 SHA256: 82de5b5215d29f69452d03fc659b16bc5540e3b3dfc09355eba6fdf0b0a83669 Description: FFADO API - development files Homepage: http://www.ffado.org Description-md5: 9d3a45b6227b7fe7aebb546d9d19f3a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libffado2 Priority: optional Section: libs Installed-Size: 5488 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: libffado Version: 2.1.0+svn2240-1ubuntu3 Depends: libc6 (>= 2.16), libconfig++9, libgcc1 (>= 1:4.1.1), libglibmm-2.4-1c2a (>= 2.36.2), libiec61883-0 (>= 1.2.0), libraw1394-11, libstdc++6 (>= 4.4.0), libxml++2.6-2 (>= 2.36.0) Filename: pool/main/libf/libffado/libffado2_2.1.0+svn2240-1ubuntu3_amd64.deb Size: 1650794 MD5sum: f396203c95de7ac7971fc7cb29a9714f SHA1: 3fee2991bd0b3d208ab8e26d994b2469ebd14cfe SHA256: 8f43caf21fd74f21c77557dee37eb01ceb11361010a18e7b7f4b3996c849463d Description: FFADO API Homepage: http://www.ffado.org Description-md5: 4c331f90e31074719b77f3d0b71de841 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libffi-dev Priority: extra Section: libdevel Installed-Size: 315 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: libffi Version: 3.1~rc1+r3.0.13-12 Depends: libffi6 (= 3.1~rc1+r3.0.13-12), dpkg (>= 1.15.4) | install-info Conflicts: libffi4-dev Filename: pool/main/libf/libffi/libffi-dev_3.1~rc1+r3.0.13-12_amd64.deb Size: 99766 MD5sum: 0a64ecf8f639acd715f3ce2574a4a2bb SHA1: 47a9355cd0b5264454dd212b2a681aeb6a30c3eb SHA256: 188782fdbbb2bc60be89605677cd5e65f35667b3d142ee699ee9cc4babb10026 Description: Foreign Function Interface library (development files) Multi-Arch: same Description-md5: cb5b8c2fd242772cae1be91db134642c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libffi6 Priority: important Section: libs Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: libffi Version: 3.1~rc1+r3.0.13-12 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libf/libffi/libffi6_3.1~rc1+r3.0.13-12_amd64.deb Size: 17396 MD5sum: 5a20a122b11058d07fcce6555fa8d206 SHA1: 5cb66afecefd3716eebe754e85e5c88c4ba2ee15 SHA256: 43f6f8e0a4886c12eaf3c912f171eaa0ae750eb56683d6a0b57724b2aa372297 Description: Foreign Function Interface library runtime Multi-Arch: same Description-md5: aa11fa9e12227fc9a1de7b2cb193c270 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libffi6-dbg Priority: extra Section: debug Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: libffi Version: 3.1~rc1+r3.0.13-12 Depends: libffi6 (= 3.1~rc1+r3.0.13-12) Filename: pool/main/libf/libffi/libffi6-dbg_3.1~rc1+r3.0.13-12_amd64.deb Size: 30626 MD5sum: c7fbbcc53b39b8adee1f9e9b7aa54714 SHA1: e2c95425e45f737205245547e8c1f6a94af906d5 SHA256: fe33be115f20ce4ae85a5456725fab6293ce4a93d651d91bdafbb14f2d41a64c Description: Foreign Function Interface library runtime (debug symbols) Multi-Arch: same Description-md5: 20af1eabe0d6190ef16f6991d091b7b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-bin Priority: optional Section: libs Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: libfftw3-dev (<< 3.3.2-1) Depends: libc6 (>= 2.7), libfftw3-double3, libfftw3-long3, libfftw3-quad3, libfftw3-single3 Breaks: libfftw3-dev (<< 3.3.2-1) Filename: pool/main/f/fftw3/libfftw3-bin_3.3.3-7ubuntu3_amd64.deb Size: 32632 MD5sum: 5db77132dbf8539e964871a085300188 SHA1: eadedf79d2b29ed269df1c6fbb181e0d78fd840b SHA256: 8679a4d9c6d89274cceeb7eb3811ff0f0c7e25f68c263847f1dc8906770aa4fb Description: Library for computing Fast Fourier Transforms - Tools Multi-Arch: foreign Homepage: http://fftw.org Description-md5: 1634796eb61b0b82db0ba1955d8060ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-dbg Priority: extra Section: debug Installed-Size: 81440 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: fftw3 Version: 3.3.3-7ubuntu3 Depends: libfftw3-dev (= 3.3.3-7ubuntu3) Filename: pool/main/f/fftw3/libfftw3-dbg_3.3.3-7ubuntu3_amd64.deb Size: 9622754 MD5sum: 3fb5cb6a7f5c57ceca95624981391c12 SHA1: 97f9e00dd4dad632f88f2612763622a0f6a19aad SHA256: f75d03742126d000ad289a7c32caedee61c6e23c7fd0c1c873da1d267c049610 Description: Library for computing Fast Fourier Transforms - debug symbols Homepage: http://fftw.org Description-md5: 4ae9cef69209f997f0c8420fde5bfa58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-dev Priority: optional Section: libdevel Installed-Size: 15545 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: fftw3-dev Provides: fftw3-dev Depends: libfftw3-bin (= 3.3.3-7ubuntu3), libfftw3-double3 (= 3.3.3-7ubuntu3), libfftw3-long3 (= 3.3.3-7ubuntu3), libfftw3-quad3 (= 3.3.3-7ubuntu3), libfftw3-single3 (= 3.3.3-7ubuntu3) Conflicts: fftw3-dev Filename: pool/main/f/fftw3/libfftw3-dev_3.3.3-7ubuntu3_amd64.deb Size: 2066728 MD5sum: 72a7bcd5528035f3d263d1902b692055 SHA1: df511c0312be281557ee5062263f04772714fb03 SHA256: e0288680e076b79158f063bbb4b4aed896c6b033f24edf50d497108865947a87 Description: Library for computing Fast Fourier Transforms - development Multi-Arch: same Homepage: http://fftw.org Description-md5: 0458906aced3a568dab153e7bdeb04f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-doc Priority: optional Section: doc Installed-Size: 1375 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: all Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: fftw3-doc Provides: fftw3-doc Suggests: libfftw3-3 Conflicts: fftw3-doc Filename: pool/main/f/fftw3/libfftw3-doc_3.3.3-7ubuntu3_all.deb Size: 185070 MD5sum: 2eb1c7be2f8da91a3f1eaa51f55b1e1f SHA1: 0d3995375b9d43f8a46a2be1059eb719fbe99623 SHA256: 403bb965373a7b4f95e3be0dd100d88ff8bc60a6db8f5b41b497d07a7bf3e43d Description: Documentation for fftw version 3 Homepage: http://fftw.org Description-md5: 4b102f0a50a0f8857bbe78f39afb5b51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-double3 Priority: optional Section: libs Installed-Size: 2114 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: libfftw3-3 (<< 3.3.3-1) Depends: libc6 (>= 2.14), libgomp1 (>= 4.2.1) Pre-Depends: multiarch-support Suggests: libfftw3-bin, libfftw3-dev Breaks: libfftw3-3 (<< 3.3.3-1) Filename: pool/main/f/fftw3/libfftw3-double3_3.3.3-7ubuntu3_amd64.deb Size: 701832 MD5sum: 73781c532ad012a5bc0e624b34f89306 SHA1: 1d4ce0e592fe4f6b2720c3192ce5a8898f576b96 SHA256: 7c4d14b7e767c70c91ffe5a89f54ceb73194ed49d449e0091058d5678a74c180 Description: Library for computing Fast Fourier Transforms - Double precision Multi-Arch: same Homepage: http://fftw.org Description-md5: 9621f1cfaad5927e844a719259a992d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libfftw3-long3 Priority: optional Section: libs Installed-Size: 978 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: libfftw3-3 (<< 3.3.3-1) Depends: libc6 (>= 2.14), libgomp1 (>= 4.2.1) Pre-Depends: multiarch-support Suggests: libfftw3-bin, libfftw3-dev Breaks: libfftw3-3 (<< 3.3.3-1) Filename: pool/main/f/fftw3/libfftw3-long3_3.3.3-7ubuntu3_amd64.deb Size: 304682 MD5sum: 0ba6347e4fe73b809709b261c794485a SHA1: 656642ad2454916b62a5c2574b07e42a57d92a67 SHA256: 5ee29c0723fa8cb9b096fb17070a843c03d53d4284ca81db824d4291b369dc9d Description: Library for computing Fast Fourier Transforms - Long precision Multi-Arch: same Homepage: http://fftw.org Description-md5: 635b21b639bb88b0432e61e40d91de25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libfftw3-quad3 Priority: optional Section: libs Installed-Size: 2122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: fftw3 Version: 3.3.3-7ubuntu3 Depends: libc6 (>= 2.14), libgomp1 (>= 4.2.1), libquadmath0 (>= 4.6) Pre-Depends: multiarch-support Suggests: libfftw3-bin, libfftw3-dev Filename: pool/main/f/fftw3/libfftw3-quad3_3.3.3-7ubuntu3_amd64.deb Size: 548436 MD5sum: eea469282ed2bac450f33899279b0eae SHA1: 45cdc870c4e379f3c91c4c9964f7c5152090b2b1 SHA256: 3b898556017dd11e564108154d428475802931ec49a21dceed83cda6f97fdcea Description: Library for computing Fast Fourier Transforms - Quad precision Multi-Arch: same Homepage: http://fftw.org Description-md5: 0257bc9fe8f3f3c4a5554facc0480200 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-single3 Priority: optional Section: libs Installed-Size: 2166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: libfftw3-3 (<< 3.3.3-1) Depends: libc6 (>= 2.14), libgomp1 (>= 4.2.1) Pre-Depends: multiarch-support Suggests: libfftw3-bin, libfftw3-dev Breaks: libfftw3-3 (<< 3.3.3-1) Filename: pool/main/f/fftw3/libfftw3-single3_3.3.3-7ubuntu3_amd64.deb Size: 733044 MD5sum: a0b3520b462637003d5cf0b0c9e2565c SHA1: f1a251eb1fb613a6430f94e692fcd0876df8e9c4 SHA256: 5cd853f168bec06f3e37755120fc47717b7d14457e9bb5045110271b8b2ef10f Description: Library for computing Fast Fourier Transforms - Single precision Multi-Arch: same Homepage: http://fftw.org Description-md5: 92b4a1a5847803599048be98e9eb70b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfile-basedir-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.03-1fakesync1 Depends: perl Filename: pool/main/libf/libfile-basedir-perl/libfile-basedir-perl_0.03-1fakesync1_all.deb Size: 10540 MD5sum: be0421f5e8ef45b51a354342edbcd165 SHA1: 253ad7cd1c340498975fc61d78d559b612b539fc SHA256: 39b20a9071b410037eeb80b6dedffbd03d5f18e90b17085073b0af83453b541c Description: Perl module to use the freedesktop basedir specification Homepage: http://search.cpan.org/dist/File-BaseDir/ Description-md5: e2d62144b6daacc640d5b6d78efd1111 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libfile-copy-recursive-perl Priority: optional Section: perl Installed-Size: 88 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.38-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/libf/libfile-copy-recursive-perl/libfile-copy-recursive-perl_0.38-1_all.deb Size: 20586 MD5sum: f9f292787835ae54426e80678737509c SHA1: 9167b509c2f681e637c6cd176f2010b03e8548ed SHA256: fc4d4bc6f138107487821184316a027e1fde31c77c38057b77f8b89ca874c4e0 Description: Perl extension for recursively copying files and directories Homepage: http://search.cpan.org/dist/File-Copy-Recursive/ Description-md5: a107442d1b00e794c7a17b73e1706430 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfile-desktopentry-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.07-1 Depends: perl, libfile-basedir-perl Filename: pool/main/libf/libfile-desktopentry-perl/libfile-desktopentry-perl_0.07-1_all.deb Size: 19428 MD5sum: 556e25e3c9edc07cfe59b0d9d1c7c026 SHA1: b3a50348b86d24767770fb777f1c80c2a5dbe3c2 SHA256: 3c6ff6753ac914e82f7fe183f25ccca42c28e43397088fee07c1775e56cb9958 Description: Perl module to handle freedesktop .desktop files Homepage: https://metacpan.org/release/File-DesktopEntry/ Description-md5: 8f24eaa02c2a203865d9e9866abd69ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libfile-fcntllock-perl Priority: optional Section: perl Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.14-2build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libf/libfile-fcntllock-perl/libfile-fcntllock-perl_0.14-2build1_amd64.deb Size: 15932 MD5sum: 18813758778ece61bcdf84018218fc1d SHA1: ca155b16f5c45415725117a389245192582b7af7 SHA256: 43e6b638834e017ce55469194d847aac396ec79912b8e5bf32a01675960108b1 Description: Perl module for file locking with fcntl(2) Homepage: http://search.cpan.org/dist/File-FcntlLock/ Description-md5: 1376b0e0447b0e66b49e18521ea5b355 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfile-find-rule-perl Priority: optional Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.33-1 Depends: perl, libnumber-compare-perl, libtext-glob-perl Filename: pool/main/libf/libfile-find-rule-perl/libfile-find-rule-perl_0.33-1_all.deb Size: 29218 MD5sum: 4c2bd96772117f29f635cf42b7f90c55 SHA1: d8387c884558772dcb59303cbc1052599a118288 SHA256: 1dbf00181141e7366cd6ca72c7430cc5d0b69d92837b3084aafefd1282936357 Description: module to search for files based on rules Homepage: http://search.cpan.org/dist/File-Find-Rule/ Description-md5: 8cd4d0f3eaa3be198fad597b8d5381f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-find-rule-perl-perl Priority: optional Section: perl Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.13-1 Depends: perl, libfile-find-rule-perl, libparams-util-perl Filename: pool/main/libf/libfile-find-rule-perl-perl/libfile-find-rule-perl-perl_1.13-1_all.deb Size: 10348 MD5sum: 9c285a96e916dec1cc98d0ec82fdacf9 SHA1: ac4fecbd3bc18d2a93c067177093163c5be1bfc5 SHA256: 129789efecef86c79a41604bfd9000c39a850c1b7a105a1e85b5ee81376d40b0 Description: Perl module for searching Perl things Homepage: https://metacpan.org/release/File-Find-Rule-Perl/ Description-md5: 2c67e603b83c64a2eba394ccb9ca2109 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-homedir-perl Priority: optional Section: perl Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.00-1 Depends: perl, libfile-which-perl Filename: pool/main/libf/libfile-homedir-perl/libfile-homedir-perl_1.00-1_all.deb Size: 46028 MD5sum: 546840e5fe60b5e6db5096c3727ef8f4 SHA1: ef33d2b15fc2cdf74cc29e4950ad3bd83bb248f9 SHA256: 19f105f05a8f062336d8427d286869b4711180ad8bb151d3de0e72f5c2bf053b Description: Perl module for finding user directories across platforms Homepage: https://metacpan.org/release/File-HomeDir/ Description-md5: ade98c07a00a07f3124fef8d30765fff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-listing-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.04-1 Replaces: libwww-perl (<< 6.00) Depends: perl, libhttp-date-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libf/libfile-listing-perl/libfile-listing-perl_6.04-1_all.deb Size: 9774 MD5sum: a69f2a45649ddd30a1679e5a90db41c5 SHA1: 7e13a66085509f229b7e51008cdaab5c813ec36a SHA256: b3557750ae80d586d6e0fccf16d3d8b2cbd60f14e21e7710bf56e9180b4f286f Description: module to parse directory listings Homepage: http://search.cpan.org/dist/File-Listing/ Description-md5: 2ae02de0eba22eeba98280c10ba05d83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfile-mimeinfo-perl Priority: optional Section: perl Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.22-1 Depends: perl, libfile-basedir-perl, libfile-desktopentry-perl, shared-mime-info Filename: pool/main/libf/libfile-mimeinfo-perl/libfile-mimeinfo-perl_0.22-1_all.deb Size: 46628 MD5sum: 8bea1816bbf4780675f6f316d05cb1f0 SHA1: 1b5df89c69eec1290d75a84791a751c3bbc2b575 SHA256: 208b5340b0a7e3f109ff923144347daf24b563c593efa96d4fa34c0a8b9c2ab5 Description: Perl module to determine file types Homepage: https://metacpan.org/release/File-MimeInfo Description-md5: bf8d7b2ddae0ccc7b3c6b157af85a455 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libfile-remove-perl Priority: optional Section: perl Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.52-1 Depends: perl (>= 5.10.1) Filename: pool/main/libf/libfile-remove-perl/libfile-remove-perl_1.52-1_all.deb Size: 12020 MD5sum: 77ee0786fa711d25d8d7591373d1a5eb SHA1: 3d0384afbd74e67195263b1cab5eb1a3481f86a7 SHA256: 514517ebb721673225013b9e38e575a5aea7ea94767de2562e6bbd5c10298b81 Description: Perl module to remove files or directories Homepage: http://search.cpan.org/dist/File-Remove/ Description-md5: f2d0713273291555ac69f343cc9c92e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-rsyncp-perl Priority: optional Section: perl Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Drolez Architecture: amd64 Version: 0.70-1ubuntu3 Depends: libc6 (>= 2.14), perl (>= 5.18.1-4build1), perlapi-5.18.1 Filename: pool/main/libf/libfile-rsyncp-perl/libfile-rsyncp-perl_0.70-1ubuntu3_amd64.deb Size: 93924 MD5sum: 983283e2cad2ed34b7dd24cf5bbea4dd SHA1: 0acaa6e8d6cce1922a7466bf71ecddd514866483 SHA256: 0ae989dccc4c1db88764a375ecc45c8a75f5b01c0dd5eb9d5575da99f16c7f0a Description: Perl based implementation of an Rsync client Description-md5: 7dde1ee87fa156812a3730ba7c20b95c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfile-sharedir-install-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.07-1 Depends: perl Filename: pool/main/libf/libfile-sharedir-install-perl/libfile-sharedir-install-perl_0.07-1_all.deb Size: 9688 MD5sum: 289cc312010a85b45a6752155a31fef8 SHA1: 70777779e5d5cd25b4f5fe42b31cfd0e70aabd36 SHA256: 3da9d3dab8f7ef9d96f2f2cb586785a5ed2db18e1f4f2f551177a72e88ee8f5e Description: module for installing read-only data files Homepage: https://metacpan.org/release/File-ShareDir-Install/ Description-md5: d6511539f0ade5fb7280a04a2728e6aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-sharedir-perl Priority: optional Section: perl Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.03-1 Depends: perl, libclass-inspector-perl Filename: pool/main/libf/libfile-sharedir-perl/libfile-sharedir-perl_1.03-1_all.deb Size: 11990 MD5sum: da62b4c709f1dec0a6a8991dd177dd9b SHA1: ecafe3f4e526ac6c1feba813e88c661240317f3a SHA256: 15cc2a2c7b24b9a1b30762872a73c29dc7d4fdd6600bc908e07c471c826e3c54 Description: module to locate non-code files during run-time Homepage: http://metacpan.org/release/File-ShareDir Description-md5: f89049a15c9c1ec82bcd4c1549cb4200 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-sharedir-projectdistdir-perl Priority: optional Section: perl Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.5.2-1 Depends: perl, libfile-sharedir-perl, libpath-class-perl, libpath-finddev-perl, libpath-isdev-perl, libpath-tiny-perl, libsub-exporter-perl Filename: pool/main/libf/libfile-sharedir-projectdistdir-perl/libfile-sharedir-projectdistdir-perl_0.5.2-1_all.deb Size: 12802 MD5sum: 74ff6164db39596fd7d38424ecd4dfb2 SHA1: 14844c4a171a8cdee10aee2ee2f923c7b29ca211 SHA256: e8a07cc3cee5ce68907d201454838987adface1b3462a03d3188f70232e04dc1 Description: simple set-and-forget use of a share directory in the project root Homepage: https://metacpan.org/release/File-ShareDir-ProjectDistDir Description-md5: e63f0eb84dc590f61f2b4cd78da2a28a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-slurp-perl Priority: extra Section: perl Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Zangerl Architecture: all Version: 9999.19-4 Depends: perl Filename: pool/main/libf/libfile-slurp-perl/libfile-slurp-perl_9999.19-4_all.deb Size: 41308 MD5sum: f0ebd5184288680f2243f00112396cab SHA1: bf15a2ff0ec0efb5c3990ac29eabcabab6152f1b SHA256: d6381a4e6ca6603a370758e7e806d819e517cbaa06007d1f9485a8468900af69 Description: single call read & write file routines Homepage: http://search.cpan.org/~uri/ Description-md5: a5d3680247ec670449656cbec8684e1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libfile-which-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.09-1 Depends: perl Filename: pool/main/libf/libfile-which-perl/libfile-which-perl_1.09-1_all.deb Size: 11628 MD5sum: 00c764e850f86335e4a8cc740235212a SHA1: f6300da5f54b711f1aca4b4b3a86ba1131ca5e8a SHA256: 8b6c0d72467bb77ae4fc1c4b988eb0420c5b9b9156e3ed59ff8b50033f33c319 Description: Perl module for searching paths for executable programs Homepage: http://search.cpan.org/dist/File-Which/ Description-md5: 627223f305dd82cde8da8e723d765351 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfilehandle-fmode-perl Priority: optional Section: perl Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.13-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libf/libfilehandle-fmode-perl/libfilehandle-fmode-perl_0.13-1build1_amd64.deb Size: 11176 MD5sum: cefcef2198d6cdd65485a2eb4c21d606 SHA1: 1b9e8d4590101b3150afc84d6b4429fab3d1ff86 SHA256: 2bcfde97e3b6582cd6986a020dd34c6e65239debc2085c98508bca129a1b5f8d Description: Perl module for checking filehandle status Homepage: http://search.cpan.org/dist/FileHandle-Fmode/ Description-md5: 0ccf2c0dc7d718e35447bf8445764d98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfindlib-ocaml Priority: optional Section: ocaml Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: findlib Version: 1.4-2 Replaces: ocaml-findlib (<< 1.2.4-3) Provides: libfindlib-ocaml-ugx61 Depends: ocaml-base-nox-4.01.0 Breaks: ocaml-findlib (<< 1.2.4-3) Filename: pool/main/f/findlib/libfindlib-ocaml_1.4-2_amd64.deb Size: 97230 MD5sum: 6761bf10d05e9408d2b586cb8a6b00d7 SHA1: 302c154615c79754e0459b68a6864177082297e4 SHA256: b900be202fd3ed3e72432f3be1f240a1a551a0a0907c4f189c87bb462fe639f4 Description: library for managing OCaml libraries (runtime) Homepage: http://projects.camlcity.org/projects/findlib.html Description-md5: 01a205b5d1b557788906974aab0a0eb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfindlib-ocaml-dev Priority: optional Section: ocaml Installed-Size: 730 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: findlib Version: 1.4-2 Replaces: ocaml-findlib (<< 1.2.4-3) Provides: libfindlib-ocaml-dev-ugx61 Depends: libfindlib-ocaml-ugx61, ocaml-nox-4.01.0 Recommends: ocaml-findlib Breaks: ocaml-findlib (<< 1.2.4-3) Filename: pool/main/f/findlib/libfindlib-ocaml-dev_1.4-2_amd64.deb Size: 110994 MD5sum: 86492eeb1e34f1f1551d31c1701d91ed SHA1: 5037f88a79d9bdaf6d869d7deb90c762d0c6c4d5 SHA256: 0dcafb2ecda013d6167a78592ebbd7f305a6e1240d8eb98843db103acda60bd9 Description: library for managing OCaml libraries (development files) Homepage: http://projects.camlcity.org/projects/findlib.html Description-md5: caf97965ee3f3c53c2568ee3fc1f5f9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfl-dev Priority: optional Section: libdevel Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: amd64 Source: flex Version: 2.5.35-10.1ubuntu2 Replaces: flex (<< 2.5.35-10ubuntu2) Breaks: flex (<< 2.5.35-10ubuntu2) Filename: pool/main/f/flex/libfl-dev_2.5.35-10.1ubuntu2_amd64.deb Size: 17194 MD5sum: 43d889a4cbdca00bf06e7b2392db1c84 SHA1: 33a20353491189c4405b5d324ef858ac39c24fb2 SHA256: e9bc7c2a091d84e367967c19b49ea40f6631561aeff228d2f445803eae9beb67 Description: static library for flex (a fast lexical analyzer generator). Multi-Arch: same Homepage: http://flex.sf.net/ Description-md5: 6047d1200bb6bfb43f2f751be6a566fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libflac++-dev Priority: optional Section: libdevel Installed-Size: 282 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: flac Version: 1.3.0-2 Depends: libflac++6 (= 1.3.0-2), libflac-dev Filename: pool/main/f/flac/libflac++-dev_1.3.0-2_amd64.deb Size: 43918 MD5sum: 28870d987371356bd0ed471ae2c06cf4 SHA1: 0b2618547279175f7b6d751bb2b1e75284417253 SHA256: f8dfe404fb4673e337dbd275b24fd83dc46e452d3708d1e97d93e76293748d18 Description: Free Lossless Audio Codec - C++ development library Multi-Arch: same Homepage: http://xiph.org/flac/ Description-md5: 587748b0cbc64da87e6a3c66a716974c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libflac++6 Priority: optional Section: libs Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: flac Version: 1.3.0-2 Depends: libc6 (>= 2.14), libflac8 (>= 1.3.0), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/f/flac/libflac++6_1.3.0-2_amd64.deb Size: 30476 MD5sum: 90e4e8e61d37621d7f385430b708ec56 SHA1: 3793ea3e70061f6534e00d1a21bfeda02a3e0527 SHA256: ca3650bc63e9d1124c09409dc3cced0f762589d2f2c3a85612a94fae5e5dea88 Description: Free Lossless Audio Codec - C++ runtime library Multi-Arch: same Homepage: http://xiph.org/flac/ Description-md5: 3e16a4b738821651b2d456b30ceedb19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-dvd-live, ubuntustudio-video, ubuntustudio-audio Package: libflac-dev Priority: optional Section: libdevel Installed-Size: 689 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: flac Version: 1.3.0-2 Depends: libflac8 (= 1.3.0-2), libogg-dev Filename: pool/main/f/flac/libflac-dev_1.3.0-2_amd64.deb Size: 168342 MD5sum: 6f22ffdf473670dfd07f05edfdeda7b7 SHA1: 8cb045ed2d641fd7606e97dfbd4a4a9969f9b00e SHA256: d67718c5fc1f5400c2de79d8136119bac74281cb755db5c9b12f79834df670ec Description: Free Lossless Audio Codec - C development library Multi-Arch: same Homepage: http://xiph.org/flac/ Description-md5: cee7b37a9102c16f614988533407b6e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libflac-doc Priority: optional Section: doc Installed-Size: 5218 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: all Source: flac Version: 1.3.0-2 Recommends: doc-base Suggests: libflac-dev Filename: pool/main/f/flac/libflac-doc_1.3.0-2_all.deb Size: 1030494 MD5sum: 663a666534208e4dfa23b139b8c9608b SHA1: e0bbd781bb012dcdec08ead2a6cbdf2c8bfbcf81 SHA256: 1a74ff5f40c6c70379c5c145811705b903cf7e780d729850baaca95c7d9028fd Description: Free Lossless Audio Codec - library documentation Homepage: http://xiph.org/flac/ Description-md5: 0c0d8036449a3363599955cce1a15a27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libflac8 Priority: optional Section: libs Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: flac Version: 1.3.0-2 Depends: libc6 (>= 2.14), libogg0 (>= 1.0rc3) Pre-Depends: multiarch-support Filename: pool/main/f/flac/libflac8_1.3.0-2_amd64.deb Size: 94550 MD5sum: 42d2e2a13cf8fd1aa6d1bd5903e6ddb1 SHA1: 315272cb812af97ece6735e641f2d254ecd4d3e1 SHA256: 5b6b14e539909e2013c22b51cd83248884c1e14ea4468e474bed8622ffed6b20 Description: Free Lossless Audio Codec - runtime C library Multi-Arch: same Homepage: http://xiph.org/flac/ Description-md5: f4e8094378ea7f3b5f74adc1e78593b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libflite1 Priority: extra Section: libs Installed-Size: 24164 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: flite Version: 1.4-release-8 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.14) Pre-Depends: multiarch-support Suggests: alsa-base Filename: pool/main/f/flite/libflite1_1.4-release-8_amd64.deb Size: 13010856 MD5sum: efbfe21202e38617438d6f68278fb9af SHA1: bf19159ca2aae126676931297f5c3e413ca5d7c1 SHA256: 3b8bc0636538d3a64a00ed07200fa3d8cf0c3ec771813514b29b4e9c11ae412e Description: Small run-time speech synthesis engine - shared libraries Multi-Arch: same Homepage: http://www.speech.cs.cmu.edu/flite Description-md5: be295a27d8aa7208ed274d8c974494b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libfltk1.1 Priority: optional Section: libs Installed-Size: 966 Maintainer: Ubuntu Developers Original-Maintainer: Aaron M. Ucko Architecture: amd64 Source: fltk1.1 Version: 1.1.10-17 Depends: libc6 (>= 2.15), libfontconfig1 (>= 2.9.0), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libstdc++6 (>= 4.1.1), libx11-6, libxft2 (>> 2.1.1), libxinerama1 Pre-Depends: multiarch-support Breaks: flwm (<= 1.02-2) Filename: pool/main/f/fltk1.1/libfltk1.1_1.1.10-17_amd64.deb Size: 317536 MD5sum: c0ae2010ee8accf24aba49d5bb82e8a4 SHA1: fe5c8c88edb04eaf4ce8398b65975de8d53bf364 SHA256: 4c3d1cab42e52e50a3c9032c69fe1110f7de3cc329d5ea6a2a383d638860862d Description: Fast Light Toolkit - shared libraries Multi-Arch: same Homepage: http://www.fltk.org/ Description-md5: 1258b55a967eac77a8cf269244ce33f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libfltk1.1-dbg Priority: extra Section: libdevel Installed-Size: 1263 Maintainer: Ubuntu Developers Original-Maintainer: Aaron M. Ucko Architecture: amd64 Source: fltk1.1 Version: 1.1.10-17 Depends: libfltk1.1 (= 1.1.10-17) Recommends: gdb Filename: pool/main/f/fltk1.1/libfltk1.1-dbg_1.1.10-17_amd64.deb Size: 1033272 MD5sum: e38f902a334d53db4a4da74d51ace762 SHA1: fdedeec6d420e9f22ef1894476929dc901c57c59 SHA256: 4a582137097213bc354ba50c4551135c51aca14d2bc2774ec2a6ac2014083b2c Description: Fast Light Toolkit - shared libraries with debugging symbols Multi-Arch: same Homepage: http://www.fltk.org/ Description-md5: 1f1941337a021b4274529d38c4ee46bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfltk1.1-dev Priority: optional Section: libdevel Installed-Size: 2218 Maintainer: Ubuntu Developers Original-Maintainer: Aaron M. Ucko Architecture: amd64 Source: fltk1.1 Version: 1.1.10-17 Replaces: libfltk-dev Provides: libfltk-dev Depends: libfltk1.1 (= 1.1.10-17), libx11-dev, debconf (>= 0.5) | debconf-2.0 Recommends: libgl1-mesa-dev | libgl-dev Suggests: fltk1.1-doc, fluid, libglu1-mesa-dev | libglu-dev, libjpeg-dev, libpng-dev, libxext-dev, libxft-dev, libxinerama-dev, zlib1g-dev | libz-dev Conflicts: libfltk-dev Filename: pool/main/f/fltk1.1/libfltk1.1-dev_1.1.10-17_amd64.deb Size: 402896 MD5sum: ccf65e2e72606787a56c1b567360ecaf SHA1: f7208e93813ed589d042c27690e67dec8862857a SHA256: 3ef1d62a7bed1faff578d40f055292c73724f207ac1169a951945f39e82a36ba Description: Fast Light Toolkit - development files Homepage: http://www.fltk.org/ Description-md5: fd19f539170e49b3078fef85e7a556c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-dbg Priority: extra Section: debug Installed-Size: 757 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks25 (= 0.9.5-1ubuntu5) Filename: pool/main/f/folks/libfolks-dbg_0.9.5-1ubuntu5_amd64.deb Size: 598934 MD5sum: b0919f6097b67caa0264474844ab67d5 SHA1: e86100d3829f82bb978fac4781daf449e7d6ebca SHA256: f74d6904089b2c640bfb096155045b6a6c2e2c6b79bf7b118fdc6b8fa523e6b4 Description: library to aggregates people into metacontact - debugging symbols Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: 2cf9acc6886eab671e51660aadda2353 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-dev Priority: optional Section: libdevel Installed-Size: 420 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks25 (= 0.9.5-1ubuntu5), gir1.2-folks-0.6 (= 0.9.5-1ubuntu5), libglib2.0-dev (>= 2.32.0), libgee-0.8-dev Filename: pool/main/f/folks/libfolks-dev_0.9.5-1ubuntu5_amd64.deb Size: 27260 MD5sum: e876d9730a596db86bd769ab1e88afa3 SHA1: fce6d9bbbcb2f89a86f10e988ad08d23bda87673 SHA256: c71f9a38e3db2140b667b937cd823529701f647a8995f7f34c2ad2a11ae3d519 Description: library to aggregates people into metacontact - development files Homepage: https://live.gnome.org/Folks/ Description-md5: 9299190f6ecb951322db84a9c8470e8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-eds-dbg Priority: extra Section: debug Installed-Size: 359 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks-eds25 (= 0.9.5-1ubuntu5) Filename: pool/main/f/folks/libfolks-eds-dbg_0.9.5-1ubuntu5_amd64.deb Size: 252182 MD5sum: 92ae4c83ca67b86f03bd7d132989dd24 SHA1: 38dbcf5bfba4c5aa66f8f2fa65ad3a4d5ab7dfbc SHA256: 1fe705d10359f3c11936e77fb862834f50e320c9de97f82892775edb40d4df07 Description: Evolution-data-server backend for libfolks - debugging symbols Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: a8d0e5a2f4a57261c73a56ca80a64a55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-eds-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks-eds25 (= 0.9.5-1ubuntu5), libfolks-dev (= 0.9.5-1ubuntu5), libglib2.0-dev (>= 2.24), libebook1.2-dev, libedataserver1.2-dev Filename: pool/main/f/folks/libfolks-eds-dev_0.9.5-1ubuntu5_amd64.deb Size: 4242 MD5sum: 693db40a15f05ecbb72a313850f89c58 SHA1: 3eddcc6bc9af1997ac7876632bec1d70a618d041 SHA256: b9a8f8fb4fdc80e22da8daf98de920093082e21f8f3c0aefb5e0c2f7e6ebf0d2 Description: Evolution-data-server backend for libfolks - development files Homepage: https://live.gnome.org/Folks/ Description-md5: 32e240aaa6d2e3b4945053fff6a3156c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-eds25 Priority: optional Section: libs Installed-Size: 298 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: folks Version: 0.9.5-1ubuntu5 Depends: libc6 (>= 2.14), libebook-1.2-14 (>= 3.7.90), libebook-contacts-1.2-0 (>= 3.7.90), libedataserver-1.2-18 (>= 3.5.92), libfolks25 (= 0.9.5-1ubuntu5), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.32.0), evolution-data-server (>= 3.2.0) Pre-Depends: multiarch-support Recommends: folks-common (= 0.9.5-1ubuntu5) Filename: pool/main/f/folks/libfolks-eds25_0.9.5-1ubuntu5_amd64.deb Size: 65164 MD5sum: 5bdc4639bc40eb6b4f2e56d0b9c3d78d SHA1: 3280b925c45370a6861fc76f3d85da2b35ac8331 SHA256: d1f39388d886c377ba7f907739d91115010f358a2d3cc11521452b3cab9e5652 Description: Evolution-data-server backend for libfolks Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: 1b5e53fef2dc5f59dafced129d0380dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libfolks-telepathy-dbg Priority: extra Section: debug Installed-Size: 346 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks-telepathy25 (= 0.9.5-1ubuntu5) Filename: pool/main/f/folks/libfolks-telepathy-dbg_0.9.5-1ubuntu5_amd64.deb Size: 240896 MD5sum: 0a9736e0646d4cd758e17a312e28a9b2 SHA1: dba81ee84d4dfd3ede50231a60498177af9406bd SHA256: 0ef747c91b8e2363f0b4d5a35f60508fb93672b3feeefa21c43a932e217fdf43 Description: Telepathy backend for libfolks - debugging symbols Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: 6d72901fc607c6b5a7b1bc57f8a3f4e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-telepathy-dev Priority: optional Section: libdevel Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks-telepathy25 (= 0.9.5-1ubuntu5), libfolks-dev (= 0.9.5-1ubuntu5), libglib2.0-dev (>= 2.24), libtelepathy-glib-dev (>= 0.13.1) Filename: pool/main/f/folks/libfolks-telepathy-dev_0.9.5-1ubuntu5_amd64.deb Size: 3756 MD5sum: bda28f2df8ff64fcfc51b32a40c5b78e SHA1: b278492fa78de54d6fc0f9863186cfaa563002d1 SHA256: 125a8bad17e67e5719b3de4a20b26d9916d9cddd4244f3215c7cd259b858bb38 Description: Telepathy backend for libfolks - development files Homepage: https://live.gnome.org/Folks/ Description-md5: 567a965724d2307678b47d578c88cb87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-telepathy25 Priority: optional Section: libs Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: folks Version: 0.9.5-1ubuntu5 Depends: libc6 (>= 2.2.5), libfolks25 (= 0.9.5-1ubuntu5), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.37.3), libtelepathy-glib0 (>= 0.19.0), libzeitgeist-2.0-0 (>= 0.9.9) Pre-Depends: multiarch-support Recommends: folks-common (= 0.9.5-1ubuntu5) Filename: pool/main/f/folks/libfolks-telepathy25_0.9.5-1ubuntu5_amd64.deb Size: 64120 MD5sum: 6e5ba6528a95263e7f47c7e29c56595b SHA1: 2eeeee57b18da2204aed6c394606fa1cdd26246f SHA256: c1f9c1a8a37c8ad3b6d515225a42543c7e99433ee36702281b0a37fc6a3f66c4 Description: Telepathy backend for libfolks Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: fa12a105274bcb2f4d39c88598931432 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libfolks25 Priority: optional Section: libs Installed-Size: 566 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: folks Version: 0.9.5-1ubuntu5 Depends: libc6 (>= 2.3.4), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.37.3), folks-common (= 0.9.5-1ubuntu5) Pre-Depends: multiarch-support Recommends: libfolks-eds25 Breaks: libfolks-eds25 (<< 0.8.0-2~), libfolks-telepathy25 (<< 0.8.0-2~) Filename: pool/main/f/folks/libfolks25_0.9.5-1ubuntu5_amd64.deb Size: 141940 MD5sum: e994e3dc5f12d6b361deab0f6040365b SHA1: 69a22269a1493a3ee6d72c638959d7dd24501c75 SHA256: b17a2a21a326fef73b58148bc0c2c586cb764a9fe9c211d252bc58752c0c77de Description: library to aggregates people into metacontacts Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: 6cf733f30836cfa6b9d6cd795bc30e6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libfont-afm-perl Priority: optional Section: perl Installed-Size: 120 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.20-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/libf/libfont-afm-perl/libfont-afm-perl_1.20-1_all.deb Size: 14288 MD5sum: 2322f8db827053cf4754f6182c30572f SHA1: a7363550f0c34f39f453cd20bc01efab5bff77df SHA256: ad470846b303cc5c3182b873f30bcc6dc1eaed2d67da028073a75be9fab45e00 Description: Font::AFM - Interface to Adobe Font Metrics files Homepage: http://search.cpan.org/dist/Font-AFM/ Description-md5: 251d04770a8f6c548fa442cde83c641d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfont-ttf-perl Priority: optional Section: perl Installed-Size: 1011 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.04-1 Depends: perl, libio-string-perl Suggests: libxml-parser-perl Filename: pool/main/libf/libfont-ttf-perl/libfont-ttf-perl_1.04-1_all.deb Size: 353146 MD5sum: 4a2eba06819718d08b6b7e158473457e SHA1: 6a82bf2b164e7e8c092f3aca5b5ee7821f59468a SHA256: 9f7c79d0988b93c887ff2d1640e60c69ed134c3658cd97744495f86ad160b19b Description: Perl module for TrueType font hacking Homepage: https://metacpan.org/release/Font-TTF/ Description-md5: c2adf749125bb1420434f9d47bc7461d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontconfig1 Priority: optional Section: libs Installed-Size: 498 Maintainer: Ubuntu Developers Original-Maintainer: Keith Packard Architecture: amd64 Source: fontconfig Version: 2.11.0-0ubuntu4 Provides: libfontconfig Depends: fontconfig-config (= 2.11.0-0ubuntu4), libc6 (>= 2.14), libexpat1 (>= 2.0.1), libfreetype6 (>= 2.2.1) Pre-Depends: multiarch-support Filename: pool/main/f/fontconfig/libfontconfig1_2.11.0-0ubuntu4_amd64.deb Size: 123006 MD5sum: 5322a52dcfc0e29a6d1792fe168edc2c SHA1: 8b03257dab5d60bc3cab06e21d33f1b853d75731 SHA256: 1e30a4b4957569397824bdd71097b879aaba7ed135d9b9470242069eb8fbad2f Description: generic font configuration library - runtime Multi-Arch: same Description-md5: 79e15bc25852b501452288a133d57a43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfontconfig1-dbg Priority: extra Section: libdevel Installed-Size: 663 Maintainer: Ubuntu Developers Original-Maintainer: Keith Packard Architecture: amd64 Source: fontconfig Version: 2.11.0-0ubuntu4 Depends: libfontconfig1 (= 2.11.0-0ubuntu4) Filename: pool/main/f/fontconfig/libfontconfig1-dbg_2.11.0-0ubuntu4_amd64.deb Size: 289864 MD5sum: b6d362d886df3aed8f0ebd8e1b207842 SHA1: 0604f7d4c8c7284aca70b7ffd1f0fde6e1b03a78 SHA256: ef790399f5a6fea86cc4f23b9da02c2727bec168ec8c412fdfa605ef8747dcda Description: generic font configuration library - debugging symbols Description-md5: 626d31b62d1e9e091f20eb6ec4edac78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontconfig1-dev Priority: optional Section: libdevel Installed-Size: 1847 Maintainer: Ubuntu Developers Original-Maintainer: Keith Packard Architecture: amd64 Source: fontconfig Version: 2.11.0-0ubuntu4 Provides: libfontconfig-dev Depends: libexpat1-dev, libfontconfig1 (= 2.11.0-0ubuntu4), libfreetype6-dev (>= 2.1.7), pkg-config Filename: pool/main/f/fontconfig/libfontconfig1-dev_2.11.0-0ubuntu4_amd64.deb Size: 665002 MD5sum: 6f482d0b3ba87e20e7829e1423278804 SHA1: 6a30cdde2d4405fdf8102c90f95ca9497f5107d2 SHA256: dd57ac07a2f470f1390b340df420b1fe45ac56d34e3b699a47de2a2507b1c19a Description: generic font configuration library - development Description-md5: 050db170deaa19847a8222ec11c75166 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfontembed-dev Priority: optional Section: libdevel Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups-filters Version: 1.0.52-0ubuntu1 Depends: libfontembed1 (= 1.0.52-0ubuntu1) Filename: pool/main/c/cups-filters/libfontembed-dev_1.0.52-0ubuntu1_amd64.deb Size: 28438 MD5sum: 82380303767d289a78bff4fdba829400 SHA1: 14f870c2e0d6cc4cfb258feac36a719174db1504 SHA256: fd827bc0688ae5921554237bdda6037a47a898b0322b94bbba8dbb53929cfcba Description: OpenPrinting CUPS Filters - Development files for font embed library Homepage: http://www.openprinting.org/ Description-md5: c4c7345ca8b55eb3517e71b0b8ae9ac4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontembed1 Priority: optional Section: libs Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: cups-filters Version: 1.0.52-0ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/c/cups-filters/libfontembed1_1.0.52-0ubuntu1_amd64.deb Size: 43966 MD5sum: 196d14f405c419292a9afa252ff2fe38 SHA1: b5d17176aff219414861e3e3c40a97eb980580ae SHA256: 6ecc39721772d7d57e8e287016ebff12056f16a8255d069af6fc2ad9a7f08273 Description: OpenPrinting CUPS Filters - Font Embed Shared library Multi-Arch: same Homepage: http://www.openprinting.org/ Description-md5: 8224b9ef51388c11e00f94a6367092f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfontenc-dev Priority: optional Section: x11 Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libfontenc Version: 1:1.1.2-1 Depends: libfontenc1 (= 1:1.1.2-1), zlib1g-dev Filename: pool/main/libf/libfontenc/libfontenc-dev_1.1.2-1_amd64.deb Size: 16736 MD5sum: c36ac6ff147ea38b50c9f48f20a6cdd8 SHA1: e7b3016b1ea5f3bf074ae43f7e96d27469a27949 SHA256: 30867e5461e05dc0b7f69c6d0a34317b2bc0700dee196204999e0aa485f2563e Description: X11 font encoding library (development headers) Multi-Arch: same Description-md5: 37a55bd1ad8c6306a02543c3bd4d426c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontenc1 Priority: optional Section: x11 Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libfontenc Version: 1:1.1.2-1 Depends: libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/libf/libfontenc/libfontenc1_1.1.2-1_amd64.deb Size: 15622 MD5sum: 51e96240d4244545849b615dcf3c9125 SHA1: c6cc39b98869f140d8fef6be268b4787dcb80a6b SHA256: 9a39c07cf15c8468fbb2119d6d0b696f95b2122d8f7d6a415d29e7eb86ca257b Description: X11 font encoding library Multi-Arch: same Description-md5: 7b4f6c27df2fd0d1bc06021e797d04f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfontenc1-dbg Priority: extra Section: x11 Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libfontenc Version: 1:1.1.2-1 Depends: libfontenc1 (= 1:1.1.2-1) Pre-Depends: multiarch-support Filename: pool/main/libf/libfontenc/libfontenc1-dbg_1.1.2-1_amd64.deb Size: 19660 MD5sum: 07378430a6ea14707f144bb2e5b15b90 SHA1: eb3c60f443efca0b109d1568785ad6b8de5f5263 SHA256: 7371ccb867168e6847705f3ab4d7f7d5648c20a015a00a93e470d092bc848c1a Description: X11 font encoding library (debug package) Multi-Arch: same Description-md5: 3ac1b00bf4fd929c54e9c45f1bb650f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontforge-dev Priority: optional Section: libdevel Installed-Size: 520 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: amd64 Source: fontforge Version: 20120731.b-5 Depends: libfontforge1 (= 20120731.b-5), libgdraw4 (= 20120731.b-5) Filename: pool/main/f/fontforge/libfontforge-dev_20120731.b-5_amd64.deb Size: 103172 MD5sum: 6e7bc522a03a339d4845d0f54deef22a SHA1: af700a42ae0e82bbaabcf51eb5058f37ec2c368a SHA256: e044a95f4965fc11692af37fdbe6060d8d4acc12001fe758d5e195a8dccba20c Description: font editor - runtime library (development files) Homepage: http://fontforge.sourceforge.net/ Description-md5: 9a5c812671af7c58235e812a87f2d571 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontforge1 Priority: optional Section: libs Installed-Size: 7130 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: amd64 Source: fontforge Version: 20120731.b-5 Replaces: fontforge (<= 0.0.20090224), libfontforge-dev (<< 0.0.20120101+git-3) Depends: libc6 (>= 2.15), libfreetype6 (>= 2.2.1), libgif4 (>= 4.1.4), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libpython2.7 (>= 2.7), libspiro0 (>= 20071029), libtiff5 (>= 4.0.3), libuninameslist0, libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Breaks: fontforge (<= 0.0.20090224), libfontforge-dev (<< 0.0.20120101+git-3) Filename: pool/main/f/fontforge/libfontforge1_20120731.b-5_amd64.deb Size: 1826748 MD5sum: a412e538964a97902d8e01ab1ba9391e SHA1: 5807bba88c1abd70f1854b68c8ae97df5ca13692 SHA256: 6ff8a6dc983cbd14007f29f336edd00b40c73a936c8937dba7378a7109429856 Description: font editor - runtime library Homepage: http://fontforge.sourceforge.net/ Description-md5: 4458ad30f3dfc98340b1d416ab2c8d24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: libfop-java Priority: optional Section: java Installed-Size: 10057 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: fop Version: 1:1.1.dfsg-2ubuntu1 Replaces: fop (<< 1:1.0.dfsg2-6) Depends: libxerces2-java, libxalan2-java, libbsf-java, libavalon-framework-java (>= 4.1.2-2), libbatik-java (>= 1.7), libcommons-io-java, libcommons-logging-java, libxt6, libxtst6, libxmlgraphics-commons-java (>= 1.4), java-wrappers (>= 0.1.15), libxml-commons-external-java Recommends: libsaxon-java Breaks: fop (<< 1:1.0.dfsg2-6) Filename: pool/main/f/fop/libfop-java_1.1.dfsg-2ubuntu1_all.deb Size: 9586588 MD5sum: f9e716c6ce74f4e6be53a80cac274267 SHA1: 48f57d89831124382fa65244bb987d9e676d27e8 SHA256: 694fc1ae7a2da4bb156d18c2cf466252f072e41612a6d6e280f6675482052aa0 Description: XML formatter driven by XSL Formatting Objects (XSL-FO.) Homepage: http://xmlgraphics.apache.org/fop/ Description-md5: 59558b1c113913229b219b4a66fb002a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libframe-dev Priority: optional Section: libdevel Installed-Size: 88 Maintainer: Ubuntu Developers Architecture: amd64 Source: frame Version: 2.5.0daily13.06.05-0ubuntu1 Replaces: libutouch-frame-dev Depends: libframe6 (= 2.5.0daily13.06.05-0ubuntu1) Conflicts: libutouch-frame-dev Filename: pool/main/f/frame/libframe-dev_2.5.0daily13.06.05-0ubuntu1_amd64.deb Size: 9716 MD5sum: eaee6eccb6179166c52975cee95e0f97 SHA1: 42342d77731c73dea23f6370443598504e2e2b6a SHA256: 125972e864ad502655fdbff61f137cf76e77bca28673dfb9a85906a97edbac6b Description: Touch Frame Library - dev files Homepage: https://launchpad.net/frame Description-md5: 6c95e02fcb8bce93e6276c04dbe79524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libframe6 Priority: optional Section: libs Installed-Size: 158 Maintainer: Ubuntu Developers Architecture: amd64 Source: frame Version: 2.5.0daily13.06.05-0ubuntu1 Depends: libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libx11-6, libxi6 (>= 2:1.5.99.2) Pre-Depends: multiarch-support Filename: pool/main/f/frame/libframe6_2.5.0daily13.06.05-0ubuntu1_amd64.deb Size: 45542 MD5sum: 6f13bede6e6a14cd92d54ed35515a9cc SHA1: 6525620a87ccc0661037e214fdd5618090032a3d SHA256: 62d9d6afe05a251651273e9364997183cde08cc48aa5e1bd69eab8300e5b065e Description: Touch Frame Library Multi-Arch: same Homepage: https://launchpad.net/frame Description-md5: e7b15dda3833200cc3273f72cc4aef44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfreeipmi-dev Priority: extra Section: libdevel Installed-Size: 6951 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: amd64 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libfreeipmi12 (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libfreeipmi-dev_1.1.5-3ubuntu3_amd64.deb Size: 793166 MD5sum: 3ffbb9ef279c520b6fb5d8eadf3de36c SHA1: 8e692d74a32267000b851b4132a631fe642cd6fb SHA256: 0d3db04ade7ebd03cb7b39f5a8f2c2339b921101f9ba135e9d6eaccd38bf3790 Description: GNU IPMI - development package Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: 4bd7c7d7ecc7c9a2ade84bbae733437d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfreeipmi12 Priority: extra Section: libs Installed-Size: 4611 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: amd64 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libc6 (>= 2.15), libgcrypt11 (>= 1.5.1), freeipmi-common (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libfreeipmi12_1.1.5-3ubuntu3_amd64.deb Size: 719840 MD5sum: bcc5d474e6039c826b1db9db44921dd2 SHA1: a4d867348ef27101993ffe7e6ec3e78ba61a601b SHA256: ab0baed26f6d3329b9ee207703bd13370b24d98857ad4407a221146c9ec6661f Description: GNU IPMI - libraries Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: 551e6ddaf5141d9148d078f03ee68154 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfreeradius-dev Priority: optional Section: libdevel Installed-Size: 477 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: amd64 Source: freeradius Version: 2.1.12+dfsg-1.2ubuntu8 Depends: libfreeradius2 (= 2.1.12+dfsg-1.2ubuntu8) Filename: pool/main/f/freeradius/libfreeradius-dev_2.1.12+dfsg-1.2ubuntu8_amd64.deb Size: 102386 MD5sum: f8a97cf689f33fc724bce3a6e24fb281 SHA1: de2bae1a9130bfab820ed26b4cf72aeacc51e5b4 SHA256: efcd8f95738ebbbe636c45dc54094e324f6ba608197e22dc7a6af5d275d45daa Description: FreeRADIUS shared library development files Homepage: http://www.freeradius.org/ Description-md5: 3c0c3d13bc398f9c14b6ccb3e25e2af3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfreeradius2 Priority: optional Section: net Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: amd64 Source: freeradius Version: 2.1.12+dfsg-1.2ubuntu8 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Filename: pool/main/f/freeradius/libfreeradius2_2.1.12+dfsg-1.2ubuntu8_amd64.deb Size: 72962 MD5sum: e85a7da274b4367e5760ed4ace23e2a8 SHA1: caa713ac0bd8cca56a2576535280c40979bbacd9 SHA256: 7f49a45eeaf53cfad4da6d2bb73f125d6102c74562f15809ab2cd04c7e261e4e Description: FreeRADIUS shared library Homepage: http://www.freeradius.org/ Description-md5: 919b31a593d09cd5d4a89177002536aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfreerdp-dev Priority: optional Section: libdevel Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Mike Gabriel Architecture: amd64 Source: freerdp Version: 1.0.2-2ubuntu1 Depends: libfreerdp1 (= 1.0.2-2ubuntu1), libfreerdp-plugins-standard (= 1.0.2-2ubuntu1) Filename: pool/main/f/freerdp/libfreerdp-dev_1.0.2-2ubuntu1_amd64.deb Size: 52978 MD5sum: d6c5168d4b415a5346fc2708667e81a2 SHA1: ebbff4b0d9804194f22500f9ec2b98745328c642 SHA256: fbf8ad8ef6a416fc14b85fa73e1a76bb96eb77bd896086d78111ff16cab1cf6b Description: RDP client for Windows Terminal Services (development) Homepage: http://www.freerdp.com/ Description-md5: a097a02e403e05e19dd894fd2672c390 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfreerdp-plugins-standard Priority: optional Section: x11 Installed-Size: 319 Maintainer: Ubuntu Developers Original-Maintainer: Mike Gabriel Architecture: amd64 Source: freerdp Version: 1.0.2-2ubuntu1 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.15), libcups2 (>= 1.4.0), libfreerdp1 (>= 1.0~beta5), libpulse0 (>= 1:0.99.1) Pre-Depends: multiarch-support Filename: pool/main/f/freerdp/libfreerdp-plugins-standard_1.0.2-2ubuntu1_amd64.deb Size: 84534 MD5sum: 97d4a970030e01884fbb11f6c33a70e4 SHA1: ada51b721f450c2afc75f2a14c42e81a8f0f8cff SHA256: 7674723dded7209a50ddedc5366b667f367d7ca137a74633e7ec133ba47a9e77 Description: RDP client for Windows Terminal Services (plugins) Multi-Arch: same Homepage: http://www.freerdp.com/ Description-md5: 885816f7707483db8486029572844035 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop Package: libfreerdp1 Priority: optional Section: libs Installed-Size: 705 Maintainer: Ubuntu Developers Original-Maintainer: Mike Gabriel Architecture: amd64 Source: freerdp Version: 1.0.2-2ubuntu1 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0), libx11-6, libxkbfile1 Pre-Depends: multiarch-support Suggests: freerdp-x11 Filename: pool/main/f/freerdp/libfreerdp1_1.0.2-2ubuntu1_amd64.deb Size: 243598 MD5sum: 2b4c1bc10d0b4f393c73fc549973c77d SHA1: eca785f485411e3b21352d679ee6303e7c509f83 SHA256: b034de4dd13e31e1912d5f7d0d2af6ad6a18bbd3f62868e904c948972989f201 Description: RDP client for Windows Terminal Services (library) Multi-Arch: same Homepage: http://www.freerdp.com/ Description-md5: 939d0226ec88d437872c299a62844c96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop Package: libfreetype6 Priority: optional Section: libs Installed-Size: 894 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: freetype Version: 2.5.2-1ubuntu2 Depends: libc6 (>= 2.14), libpng12-0 (>= 1.2.13-4), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/f/freetype/libfreetype6_2.5.2-1ubuntu2_amd64.deb Size: 304628 MD5sum: 0306b98f5eaacbaf4d80c2f5c9d2711a SHA1: a8c008bdcebfff9078131d5c7d3f3d2b18f593c1 SHA256: 5d93857c89e97e6a735e75bfdb5e880a071076ddfa87839920e70ac8ae22460f Description: FreeType 2 font engine, shared library files Multi-Arch: same Homepage: http://www.freetype.org Description-md5: 74d3ddb20419b75f6ffeda0bea0b0ade Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfreetype6-dev Priority: optional Section: libdevel Installed-Size: 3515 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: freetype Version: 2.5.2-1ubuntu2 Depends: libfreetype6 (= 2.5.2-1ubuntu2), libc6-dev | libc-dev, zlib1g-dev | libz-dev, libpng-dev Filename: pool/main/f/freetype/libfreetype6-dev_2.5.2-1ubuntu2_amd64.deb Size: 622570 MD5sum: 0a7a4a0b92606a950a2857d1c6de4e2e SHA1: e7acddd7c832cc6eb8d81b5babd857d4e8246c57 SHA256: 968ac7d2dddfe1e7a281002f1c8bb7f42d644309f8fcb6da1c321dd0fb34d160 Description: FreeType 2 font engine, development files Homepage: http://www.freetype.org Description-md5: 172d8a56d9acb662016bcd69f56b4640 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfribidi-bin Priority: optional Section: utils Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: amd64 Source: fribidi Version: 0.19.6-1 Replaces: libfribidi0 (<< 0.19.2-3) Depends: libc6 (>= 2.4), libfribidi0 (>= 0.19.2) Breaks: libfribidi0 (<< 0.19.2-3) Filename: pool/main/f/fribidi/libfribidi-bin_0.19.6-1_amd64.deb Size: 8592 MD5sum: 5551e8b7a4ce5318b3e9d5e1920e4a5c SHA1: f1ed67415d60c616b37c903e7f021d75a3ab9707 SHA256: 91d69c63e4336edb351101c7e12239723169de20d84115e649578307380d4c84 Description: Free Implementation of the Unicode BiDi algorithm (utility) Homepage: http://www.fribidi.org/ Description-md5: 5bd2ed1fd36acd62b51191a5c088558f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfribidi-dev Priority: optional Section: libdevel Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: amd64 Source: fribidi Version: 0.19.6-1 Depends: libfribidi0 (= 0.19.6-1) Filename: pool/main/f/fribidi/libfribidi-dev_0.19.6-1_amd64.deb Size: 42602 MD5sum: 6b6b461bfb32ee79b13c1978c2ef3c1a SHA1: 78949abbd0f08dffa7b433107f2a5e370db4cbee SHA256: 58d8c83f74e1dd3aeee027d03918e51a6ae49fa57b57f50eaf103bc419f7173c Description: Development files for FreeBidi library Homepage: http://www.fribidi.org/ Description-md5: 4dddf6b79d76d215e47387fa37ab5e90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfribidi0 Priority: important Section: libs Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: amd64 Source: fribidi Version: 0.19.6-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/f/fribidi/libfribidi0_0.19.6-1_amd64.deb Size: 25560 MD5sum: 3e710d210d545d32684b1c9d333a1aaf SHA1: de44ef05cb9e5d597e2635c75adb514ad2d376bd SHA256: 95e51ba9a780645e1f08b4275bcecf24cf583f891d39bd4bb694f3803f6426c6 Description: Free Implementation of the Unicode BiDi algorithm Multi-Arch: same Homepage: http://www.fribidi.org/ Description-md5: 61cf20beb4c9c8cddf96f40bdc83fbb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libfriends-dev Priority: extra Section: libdevel Installed-Size: 195 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: gir1.2-friends-0.1, libfriends0 (= 0.1.2+14.04.20131108.1-0ubuntu1) Filename: pool/main/libf/libfriends/libfriends-dev_0.1.2+14.04.20131108.1-0ubuntu1_amd64.deb Size: 26604 MD5sum: ffacb21e3fc76e30ea2e6e8211df513f SHA1: 7d51d44635713990fd03daf59c41d12c04c385a0 SHA256: b40809556fa53e7aeb97b3c077dc0fa23512dff50b0de58fecc688cb23cd5a02 Description: Development files for accessing social networks Multi-Arch: same Homepage: https://launchpad.net/friends Description-md5: 603d4ff9220dc0ba3c774e06f4d89222 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfriends-gtk-dev Priority: extra Section: libdevel Installed-Size: 163 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: gir1.2-friends-gtk-0.1 (= 0.1.2+14.04.20131108.1-0ubuntu1), libfriends-dev (= 0.1.2+14.04.20131108.1-0ubuntu1), libfriends-gtk0 (= 0.1.2+14.04.20131108.1-0ubuntu1) Filename: pool/main/libf/libfriends/libfriends-gtk-dev_0.1.2+14.04.20131108.1-0ubuntu1_amd64.deb Size: 26760 MD5sum: 9fd95a376d4e786ce918523f8dd34dfb SHA1: 682938e9a996c067f232dcd7d3eefc58ebf78fd4 SHA256: 6913d106edd2de18e986fcec3848b52fc23e73086222848d98a15640fffb958f Description: Development files for Friends GTK widgets Multi-Arch: same Homepage: https://launchpad.net/friends Description-md5: d53c4abf562b92026cbbe0c522b736ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfriends-gtk0 Priority: extra Section: libs Installed-Size: 87 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: libaccounts-glib0 (>= 1.0), libc6 (>= 2.2.5), libcairo2 (>= 1.2.4), libfriends0 (>= 0.1.0), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.18.0), libgtk-3-0 (>= 3.0.0), libgtkspell3-3-0 Pre-Depends: multiarch-support Filename: pool/main/libf/libfriends/libfriends-gtk0_0.1.2+14.04.20131108.1-0ubuntu1_amd64.deb Size: 20886 MD5sum: ca2b0d0abb47a39d94837ad81801bc86 SHA1: e51afd79db36ecbda4e4ae7b03aea726ef76c22d SHA256: 85a62968468aad1785c36e3ea676f3bec13ac06895fd7c39fd5c296ff7d409d6 Description: Friends GTK Widgets Multi-Arch: same Homepage: https://launchpad.net/friends Description-md5: 94dd030906b261873e6ce818c3c59cfa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfriends0 Priority: extra Section: libs Installed-Size: 99 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: friends-dispatcher, libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libjson-glib-1.0-0 (>= 0.12.0) Pre-Depends: multiarch-support Filename: pool/main/libf/libfriends/libfriends0_0.1.2+14.04.20131108.1-0ubuntu1_amd64.deb Size: 22836 MD5sum: c24d60ef29c8ba11b8553f7ff96a04b7 SHA1: 510d8826730e675fb8947780fb1c937c3c470673 SHA256: b48e7b43390c5e4247397406aa6ec8a1794e171c45ff927f14ad19647cbe253e Description: Provides an API for accessing social networks Multi-Arch: same Homepage: https://launchpad.net/friends Description-md5: 93265cdabbaa2758bae4a6173ecf28fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libfs-dev Priority: optional Section: libdevel Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libfs Version: 2:1.0.5-1 Depends: libfs6 (= 2:1.0.5-1), x11proto-core-dev, x11proto-fonts-dev Filename: pool/main/libf/libfs/libfs-dev_1.0.5-1_amd64.deb Size: 33388 MD5sum: 9e3a4b842c61690ffcbca46f5cd40eb5 SHA1: 414c4688db1d8f00aaeb3a3ce4f4b6d1460394b9 SHA256: 95caff2dc40ca1a2e18980e434fb81b9c7262096756ea9b9cdf742646ae283ff Description: X11 Font Services library (development headers) Multi-Arch: same Description-md5: 8afa50cb2254f0d5b40ef30959e297da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfs6 Priority: optional Section: libs Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libfs Version: 2:1.0.5-1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/libf/libfs/libfs6_1.0.5-1_amd64.deb Size: 25902 MD5sum: 9105e51cf6550f5f09558c3dd290a626 SHA1: fa38582ef8a5c4b02188f280dfa49a0e9b8deeba SHA256: 10f80838994eccd3ca3580d57b0781c311bc12762c570ca86531824e08a5398a Description: X11 Font Services library Multi-Arch: same Description-md5: bc296d2b3e22926a5940397b64e85665 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfs6-dbg Priority: extra Section: libdevel Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libfs Version: 2:1.0.5-1 Depends: libfs6 (= 2:1.0.5-1) Pre-Depends: multiarch-support Filename: pool/main/libf/libfs/libfs6-dbg_1.0.5-1_amd64.deb Size: 70482 MD5sum: c13f4cf9232cadb3c999ea52dd4470f5 SHA1: 981c954de0addc116c2feadfd92bbc2757341073 SHA256: 1458adaef01a4621c5b90e7d75a8ed3337aa2176067bbc72679c69fb1535fdd5 Description: X11 Font Services library (debug package) Multi-Arch: same Description-md5: 4adf63290da4ca2067cfdbd7d8c74262 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libftdi-dev Priority: optional Section: devel Installed-Size: 1815 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libftdi Version: 0.20-1ubuntu1 Depends: libftdi1 (= 0.20-1ubuntu1), libusb-dev (>= 0.1.11) Filename: pool/main/libf/libftdi/libftdi-dev_0.20-1ubuntu1_amd64.deb Size: 122742 MD5sum: 058673bd29489e0c3bd89e74b7494328 SHA1: e7d57cbab05919585950f7e5cb843d30f2b2c1b6 SHA256: b04626f22cd575b1c373c293b8f0a2b2f8f29448be3cb5166d809e8baf574e5f Description: Development files for libftdi Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: 5d69cf46af3e5eb6b47a8652070827e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libftdi1 Priority: optional Section: libs Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libftdi Version: 0.20-1ubuntu1 Depends: libc6 (>= 2.15), libusb-0.1-4 (>= 2:0.1.12) Pre-Depends: multiarch-support Filename: pool/main/libf/libftdi/libftdi1_0.20-1ubuntu1_amd64.deb Size: 15114 MD5sum: 984c0fe6a998272762258b925fc71ddc SHA1: 5ea1d0c1870e9364ae0319de923e27678d83784c SHA256: aaff9a7f85c1f5387a8826d19b923118aceb0092eca0068d765cb6a22df52450 Description: Library to control and program the FTDI USB controller Multi-Arch: same Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: e2f74d64618af8aead3354b7bdfc1891 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libftdi1-dbg Priority: extra Section: debug Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libftdi Version: 0.20-1ubuntu1 Depends: libftdi1 (= 0.20-1ubuntu1) Filename: pool/main/libf/libftdi/libftdi1-dbg_0.20-1ubuntu1_amd64.deb Size: 19874 MD5sum: 448cb1bbddb459bc08dead158018e190 SHA1: 31ca090cea84aee60a3af8069344deb36795e930 SHA256: 478d74183d9aa7b544b6d1f412fa3343b3f5e40ca76748345887ed3adef5caf3 Description: Debugging symbols for libftdi1 Multi-Arch: same Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: 649a167bf6227c1dc1d870e1b30c6f7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libftdipp-dev Priority: optional Section: libdevel Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libftdi Version: 0.20-1ubuntu1 Depends: libftdipp1 (= 0.20-1ubuntu1), libftdi-dev (= 0.20-1ubuntu1), libboost-dev (>= 1.33) Filename: pool/main/libf/libftdi/libftdipp-dev_0.20-1ubuntu1_amd64.deb Size: 11068 MD5sum: 18ce4e16ccf4de075d3c5bae878b2ee1 SHA1: e2b5dc98b9753c91dd29b8150a149affe4d648af SHA256: bbc55fd6aca3c1b774374391940d680bf1fff536f5f72112faf0c3554163f525 Description: Development files for libftdipp Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: 9256afecac7fb32622c95945655af9e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libftdipp1 Priority: optional Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libftdi Version: 0.20-1ubuntu1 Depends: libc6 (>= 2.4), libftdi1 (>= 0.20), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libusb-0.1-4 (>= 2:0.1.12) Pre-Depends: multiarch-support Filename: pool/main/libf/libftdi/libftdipp1_0.20-1ubuntu1_amd64.deb Size: 10852 MD5sum: 25ca3d191275e91788a37cd06fdc3fc4 SHA1: ffbdaed456a09c3e5ab80b5146f35091f2b96c96 SHA256: f2cecea59b229c125ca19a81ab8d31d372f5acd107f350ca9af44380a9bf9607 Description: Library to control and program the FTDI USB controller Multi-Arch: same Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: 2a0c22c2f360e2d63d883500e9e232bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libftdipp1-dbg Priority: extra Section: debug Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libftdi Version: 0.20-1ubuntu1 Depends: libftdipp1 (= 0.20-1ubuntu1) Filename: pool/main/libf/libftdi/libftdipp1-dbg_0.20-1ubuntu1_amd64.deb Size: 44632 MD5sum: 3f36ecf23b45d694f731a84dee2590e5 SHA1: 2c75f9f3e1b288a8e425853d3b9821881a7d6de2 SHA256: 84ee4bf2dc49d3aa7ddc10452a14129f8d1753c02d75a040a7f775838ae5cfeb Description: Debugging symbols for libftdipp1 Multi-Arch: same Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: 969d3e4aa92b08f97263e951ddb059e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfuse-dev Priority: optional Section: libdevel Installed-Size: 594 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Source: fuse Version: 2.9.2-4ubuntu4 Depends: libfuse2 (= 2.9.2-4ubuntu4), libselinux-dev Suggests: fuse Filename: pool/main/f/fuse/libfuse-dev_2.9.2-4ubuntu4_amd64.deb Size: 102998 MD5sum: 02874f13a858d05290ee52ab36e79906 SHA1: 1c14e6b44fd7da934318b8920e4dbe0c5ca4007f SHA256: 407887a2f4934ffbd874a16417dae322170e8970d3ce5899eab98dbe6b89302c Description: Filesystem in Userspace (development) Homepage: http://fuse.sourceforge.net/ Description-md5: da11b1a71c864509638e23fbce6723a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfuse2 Priority: standard Section: libs Installed-Size: 321 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Source: fuse Version: 2.9.2-4ubuntu4 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Suggests: fuse Conflicts: fuse (<< 2.9.2-4ubuntu4) Filename: pool/main/f/fuse/libfuse2_2.9.2-4ubuntu4_amd64.deb Size: 87212 MD5sum: b3d78ecc97bc2c1808d0a9b4f5dc3ece SHA1: 3c02046383cbd2b9409e5a2c977365efb9bdb04c SHA256: 3f3173b9cb2dfdd46d266f566d63a9cb934c0a5f7651a9feb960c855c6a91552 Description: Filesystem in Userspace (library) Multi-Arch: same Homepage: http://fuse.sourceforge.net/ Description-md5: 2838d8f82765d1fc4d4e07819a7b8d25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libgail-3-0 Priority: optional Section: libs Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libatk1.0-0 (>= 2.7.5), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.5), libgtk-3-0 (= 3.10.8-0ubuntu1), libpango-1.0-0 (>= 1.32.4), at-spi2-core Pre-Depends: multiarch-support Filename: pool/main/g/gtk+3.0/libgail-3-0_3.10.8-0ubuntu1_amd64.deb Size: 20254 MD5sum: 57919300e51db24fd3ff0887ee772149 SHA1: 21a6285a930fc0e14eb4069df9706703b43d2ddf SHA256: 1a8eac2ba6b5355e27630a37b449c39bdf360222b95c283cd30d01d0847b9d7e Description: GNOME Accessibility Implementation Library -- shared libraries Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: ab3b6da8ff97ae53ae0793ae62e8ce35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgail-3-0-dbg Priority: extra Section: debug Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libgail-3-0 (= 3.10.8-0ubuntu1) Recommends: libgtk-3-0-dbg Filename: pool/main/g/gtk+3.0/libgail-3-0-dbg_3.10.8-0ubuntu1_amd64.deb Size: 31706 MD5sum: ebb24712ea4617569d6b3cdd87b880d3 SHA1: 6c6f83eee32ec8b0576b0e51ddfe49095bd63249 SHA256: 1a0fd2cbca15d84a7901a2d82940b42e3dd0f53e4f2a7147e5f18a5859f57a96 Description: Gail libraries and debugging symbols Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 7572e37e6047b9331d4e75a86129227b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail-3-dev Priority: optional Section: libdevel Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libgail-3-0 (= 3.10.8-0ubuntu1), libgtk-3-dev (= 3.10.8-0ubuntu1), pkg-config (>= 0.26-1), libatk1.0-dev (>= 2.2.0) Suggests: libgail-3-doc Filename: pool/main/g/gtk+3.0/libgail-3-dev_3.10.8-0ubuntu1_amd64.deb Size: 12466 MD5sum: 5f6d9089057ba2de9c51a3af39f9afce SHA1: 22f223531bce0185d2edf97c3eaa3c98951cb6b8 SHA256: 09291208d61abfaee6479a4f98e5dfedfa73228cc2bfddc8250610c84e8ddc2a Description: GNOME Accessibility Implementation Library -- development files Homepage: http://www.gtk.org/ Description-md5: 2af7ddcc4fb4dffeaea80c02eeee7d6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail-3-doc Priority: optional Section: doc Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Suggests: devhelp Filename: pool/main/g/gtk+3.0/libgail-3-doc_3.10.8-0ubuntu1_all.deb Size: 23378 MD5sum: 81ac125136aa7c50985c4ad786a46a1a SHA1: 6a941b8ad6bfac9f650fa0dc42119d810fd0bbd4 SHA256: dff96749bc3d52e52af2fa9a379177d1165c554da447df9f629e720b9d378c21 Description: documentation files of the Gail library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 82b0cc78ae040a44793411b60fb12902 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail-common Priority: optional Section: libs Installed-Size: 929 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libatk1.0-0 (>= 1.32.0), libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.28.3), libx11-6, libgail18 (= 2.24.23-0ubuntu1) Breaks: libgnome2-0 (<< 2.32.1-2) Filename: pool/main/g/gtk+2.0/libgail-common_2.24.23-0ubuntu1_amd64.deb Size: 109876 MD5sum: 2ee23dcdd886e646834af0c4cc2c928a SHA1: 5eda8f6423d4b0f12b74ff68146a7b5bc800bbc6 SHA256: 7f26739b4e232d1f72a4fb72294f7504160a30874d2077df3b72a3568d3ee54a Description: GNOME Accessibility Implementation Library -- common modules Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 1e096c69a430c00ddb1188437065bc5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgail-dbg Priority: extra Section: libdevel Installed-Size: 2464 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libgail18 (= 2.24.23-0ubuntu1) Recommends: libgtk2.0-0-dbg Filename: pool/main/g/gtk+2.0/libgail-dbg_2.24.23-0ubuntu1_amd64.deb Size: 443146 MD5sum: 2a22515522076a35b48d75480f5fc7d2 SHA1: 97a0b4387c69e593fa8bffdc3e71526218e89caa SHA256: a239e43d416a5bfe1bb75454e8e4e7507377c0de894663bc960b2a3a01e94ee9 Description: Gail libraries and debugging symbols Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 7572e37e6047b9331d4e75a86129227b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail-dev Priority: optional Section: libdevel Installed-Size: 617 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libgail18 (= 2.24.23-0ubuntu1), libgail-common (= 2.24.23-0ubuntu1), libgtk2.0-dev (= 2.24.23-0ubuntu1), pkg-config (>= 0.26-1), libatk1.0-dev (>= 1.13.0) Suggests: libgail-doc Filename: pool/main/g/gtk+2.0/libgail-dev_2.24.23-0ubuntu1_amd64.deb Size: 14424 MD5sum: 416697fcec7e0b4cb607d57b58b87ba7 SHA1: d577a22282d775dd369d7716b041dbfbdcec30b4 SHA256: 7a021dd9d4d9d9067292d2ac3aa5b23c7e969b59e6827705910e6675667a7601 Description: GNOME Accessibility Implementation Library -- development files Homepage: http://www.gtk.org/ Description-md5: 2af7ddcc4fb4dffeaea80c02eeee7d6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail-doc Priority: optional Section: doc Installed-Size: 623 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Suggests: devhelp Filename: pool/main/g/gtk+2.0/libgail-doc_2.24.23-0ubuntu1_all.deb Size: 16992 MD5sum: e5d498acf9fc54c5342890fd8512b6f0 SHA1: 61c0a87b7b847fb7e9a9cd5dae1faa43143e4f08 SHA256: af5395678dce5a8153e81c6d21158033d03f196f64fedc49e3b2be0a7115f86f Description: documentation files of the Gail library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 82b0cc78ae040a44793411b60fb12902 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail18 Priority: optional Section: libs Installed-Size: 581 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libatk1.0-0 (>= 1.32.0), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.27.3), libpango-1.0-0 (>= 1.28.3), libgtk2.0-0 (= 2.24.23-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/g/gtk+2.0/libgail18_2.24.23-0ubuntu1_amd64.deb Size: 14106 MD5sum: 9f89360be1b7962e690c47c83db2bc6d SHA1: a0ea3fdf7892aaa0f4e9d2093f26ad380861435c SHA256: 0e0f9e6359cbbd01eafd8dcf9717e09ee49e32ecac348f79afbaab230f6539c9 Description: GNOME Accessibility Implementation Library -- shared libraries Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: ab3b6da8ff97ae53ae0793ae62e8ce35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgbm-dev Priority: optional Section: libdevel Installed-Size: 103 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgbm1 (= 10.1.0-4ubuntu5), libudev-dev Filename: pool/main/m/mesa/libgbm-dev_10.1.0-4ubuntu5_amd64.deb Size: 7150 MD5sum: 5a65729f139fe8b19cff56515389cdcd SHA1: 67320b2ff46b8c4145a5489745207b0ae66bab70 SHA256: 09a905e361e96dc5fa76951fe97b5f238db3f52d740b8bd308f333de66aed9ef Description: generic buffer management API -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 97d3ae24c3bec4dfba8e29c665cda9e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm-dev Filename: pool/main/x/xorg-lts-transitional/libgbm-dev-lts-quantal_5_amd64.deb Size: 1540 MD5sum: f588069973cdc412de8bc9e8e6c899d0 SHA1: 6f4b6336cd085c494d5b18782ede891a6676df51 SHA256: d9db817c069dc09278bf89660c5753179aa01d8ea5b9108978952e6760115517 Description: Transitional package for libgbm-dev Multi-Arch: same Description-md5: 2d55bec335777ad7b05e83021832846e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm-dev Filename: pool/main/x/xorg-lts-transitional/libgbm-dev-lts-raring_5_amd64.deb Size: 1536 MD5sum: dfece6275c2459c3327c3f791cccb5ff SHA1: 3a7d6ca1f20c6d3855155d6959f023c398c775c8 SHA256: df7229028bca783d8ff56acdd28d0a0d6ac963d4ff24030df26fb2ee9d84bda2 Description: Transitional package for libgbm-dev Multi-Arch: same Description-md5: 2d55bec335777ad7b05e83021832846e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm-dev Filename: pool/main/x/xorg-lts-transitional/libgbm-dev-lts-saucy_5_amd64.deb Size: 1536 MD5sum: 82dfe96042d3eaf2913635f67588a096 SHA1: 733c77b58014d629f49ea64df264bbfd6393cf8a SHA256: 559a37aae7c9acf0d75ab46b78a3adbc526e4d097987bc68496bf395752c8a2d Description: Transitional package for libgbm-dev Multi-Arch: same Description-md5: 2d55bec335777ad7b05e83021832846e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1 Priority: optional Section: libs Installed-Size: 142 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libc6 (>= 2.14), libdrm2 (>= 2.4.3), libgl1-mesa-dri, libwayland-client0 (>= 1.2.0), libwayland-server0 (>= 1.2.0), libxcb-dri2-0, libxcb1, libudev1 | libudev0 Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libgbm1_10.1.0-4ubuntu5_amd64.deb Size: 18792 MD5sum: 23c3e6176b5f8e673746652649a3b01f SHA1: 6bff59339053af5f2b65fd086f891233aaa28829 SHA256: db65ed266ded48ebabfe57f4778966af1c7634385963312316a618c9519e6c67 Description: generic buffer management API -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 9c1f8de2c17715ff7ed9524db86be4dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgbm1-dbg Priority: extra Section: debug Installed-Size: 301 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgbm1 (= 10.1.0-4ubuntu5) Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libgbm1-dbg_10.1.0-4ubuntu5_amd64.deb Size: 60084 MD5sum: 061ee501155ab434d61ca96f9712a522 SHA1: 2019ac0e9b7cae6e50a645735b17325a577126e5 SHA256: e869c24382007a5255ba315239284ad18ffa54b38c573a9b784c4f9cec5acd31 Description: generic buffer management API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: ff539259b350b2362cba34825ad1a809 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1 Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-quantal_5_amd64.deb Size: 1536 MD5sum: 30ae7bfb89c23e8ec62c78213ef7e909 SHA1: 0c3bc3b659a1c339a48aad67cf1460449432abc9 SHA256: 522b4b501e61246f8bb9ff4960e887f0f167a01d5e7707a1b7f418045bdce2bd Description: Transitional package for libgbm1 Multi-Arch: same Description-md5: 9606d8798ea4957d3a621bbe7949753e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1-dbg Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-quantal-dbg_5_amd64.deb Size: 1540 MD5sum: 94e9f0fc457fcc79e95084615b7e24b6 SHA1: 3094d3254ddcdac283f7094320126c84796319f6 SHA256: 020befc2b7ccea74d4b9a79e16c104e284a22d3fd95c064638ae5bdaa7835f4e Description: Transitional package for libgbm1-dbg Multi-Arch: same Description-md5: 9919d79420c26d0a2251c550f97a00af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1 Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-raring_5_amd64.deb Size: 1530 MD5sum: 58405a076f04bc6043424af8426327be SHA1: 48120fc015d4443c1944bc8db64534be618e3d50 SHA256: 1297369d510daf807773357010b808f0c0eede6224e9d56f61f9bc15c4ea2916 Description: Transitional package for libgbm1 Multi-Arch: same Description-md5: 9606d8798ea4957d3a621bbe7949753e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1-dbg Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-raring-dbg_5_amd64.deb Size: 1540 MD5sum: 15e9538eb7138b844494c897ef11a1dd SHA1: 642e99eedada05cab27c14d35581cdf17fce0124 SHA256: 795245197090f1720e5aaa73afa44845cd0ba21da31f57aad15fc2016f6b4740 Description: Transitional package for libgbm1-dbg Multi-Arch: same Description-md5: 9919d79420c26d0a2251c550f97a00af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1 Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-saucy_5_amd64.deb Size: 1528 MD5sum: 01b5163193b3ccf7c3605c3b012ecfa2 SHA1: 4c29cb3e867e23decd15ddd6ebaee7a5afb6df97 SHA256: b86fba3c13553175bc7f3e57d75041635358c0d1e2f2b41133cf10430e7c7d99 Description: Transitional package for libgbm1 Multi-Arch: same Description-md5: 9606d8798ea4957d3a621bbe7949753e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1-dbg Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-saucy-dbg_5_amd64.deb Size: 1540 MD5sum: 53495dfd46ad4b0b86166b4c9e7ec85e SHA1: 0d6a1a17c537ac94ce30a14321e1d602b448858b SHA256: 9abd80029b0d50460e7f5e4763cb834784d6979125c9303a471d30c03bc8fc33 Description: Transitional package for libgbm1-dbg Multi-Arch: same Description-md5: 9919d79420c26d0a2251c550f97a00af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgc-dev Priority: optional Section: devel Installed-Size: 769 Maintainer: Ubuntu Developers Original-Maintainer: Christoph Egger Architecture: amd64 Source: libgc Version: 1:7.2d-5ubuntu2 Depends: libgc1c2 (= 1:7.2d-5ubuntu2), libc-dev Filename: pool/main/libg/libgc/libgc-dev_7.2d-5ubuntu2_amd64.deb Size: 166690 MD5sum: 3d7cadb938a490027542306ea1920ff9 SHA1: f69d699774115c83775f962c4057e6fd4fd09840 SHA256: 4e3f0918d9f9d372adeedcf727b9471292cc7ac89fa588b9b8d4221bbc0cd43e Description: conservative garbage collector for C (development) Multi-Arch: same Homepage: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ Description-md5: 6024ab577069982922a45069ab44dff3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgc1c2 Priority: optional Section: libs Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Christoph Egger Architecture: amd64 Source: libgc Version: 1:7.2d-5ubuntu2 Replaces: libgc1, libgc1c3 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libgc1 Filename: pool/main/libg/libgc/libgc1c2_7.2d-5ubuntu2_amd64.deb Size: 74356 MD5sum: 77b7d6c1e799ff3f449999f48c62193b SHA1: 81d88a7138ea814f56753d2b5ed854dec8686c39 SHA256: 2a864617efb26800c4a81adaaa2030749e3f5362de937e815570bcabf66d2640 Description: conservative garbage collector for C and C++ Multi-Arch: same Homepage: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ Description-md5: fb0bc4e8a25a8d1d4508437085e3f5c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libgcc-4.7-dev Priority: optional Section: libdevel Installed-Size: 4396 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gcc-4.7 (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libgcc1 (>= 1:4.7.3-12ubuntu1), libgomp1 (>= 4.7.3-12ubuntu1), libitm1 (>= 4.7.3-12ubuntu1), libquadmath0 (>= 4.7.3-12ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.7/libgcc-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 1488046 MD5sum: 778916b3dfe4fa8dcf391703e138bca2 SHA1: b8ab70417c229b15923fcace6a5649495135dd7f SHA256: 60224ffb7c37404ad82df321164ef411487c5a306cdfc2743326f794e4401a2b Description: GCC support library (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc-4.8-dev Priority: optional Section: libdevel Installed-Size: 5774 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcc1 (>= 1:4.8.2-19ubuntu1), libgomp1 (>= 4.8.2-19ubuntu1), libitm1 (>= 4.8.2-19ubuntu1), libatomic1 (>= 4.8.2-19ubuntu1), libasan0 (>= 4.8.2-19ubuntu1), libtsan0 (>= 4.8.2-19ubuntu1), libquadmath0 (>= 4.8.2-19ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8/libgcc-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 1687854 MD5sum: 9ae0e3e80286ac25c7b8d16a6d7aa0fd SHA1: 8490e99def20981343705cd75b68da6faa30028f SHA256: 510f1d745e9f040231906bf3fbc493528b6ef30200f8c07e218cae7aedf788cc Description: GCC support library (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgcc-4.8-dev-arm64-cross Priority: optional Section: libdevel Installed-Size: 1480 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libgcc1-arm64-cross (>= 1:4.8.2-13ubuntu1cross0.11), libgomp1-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libatomic1-arm64-cross (>= 4.8.2-13ubuntu1cross0.11) Recommends: libc6-dev-arm64-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-arm64-cross/libgcc-4.8-dev-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 131624 MD5sum: 6952002523304ce93d34ba79fecc18ad SHA1: 945d370f8eeab0147dd164b4e65cbf4725b6a73e SHA256: 40cad2a5affbca173f54d5139d3587c1fe43c426323efd135ee9028c6225c096 Description: GCC support library (development files) Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc-4.8-dev-armhf-cross Priority: optional Section: libdevel Installed-Size: 2669 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libgcc1-armhf-cross (>= 1:4.8.2-16ubuntu4cross0.11), libgomp1-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libatomic1-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libasan0-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) Recommends: libc6-dev-armhf-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-armhf-cross/libgcc-4.8-dev-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 211032 MD5sum: 09d74e8aa5a50405093bb638a14834ad SHA1: 0e4e98a23b6e7f0be79158d45845fb7683c0afb8 SHA256: feac8b5c80f978bbeba56b5ce97c933c960da944c58ef2f2a1247d7609cb4179 Description: GCC support library (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc-4.8-dev-powerpc-cross Priority: optional Section: libdevel Installed-Size: 1508 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libgcc1-powerpc-cross (>= 1:4.8.2-16ubuntu3cross0.11), libgomp1-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libatomic1-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libasan0-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11) Recommends: libc6-dev-powerpc-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-powerpc-cross/libgcc-4.8-dev-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 285876 MD5sum: d0965e86f963fcc2167eb26b025f28c7 SHA1: a82cfd7b1de2800f0152f88b0c4afb8ed1fec017 SHA256: 16d8699f8a4533414b892d33153180b3d789813b994432f1dba693443ec99c61 Description: GCC support library (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc-4.8-dev-ppc64el-cross Priority: optional Section: libdevel Installed-Size: 1689 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libgcc1-ppc64el-cross (>= 1:4.8.2-16ubuntu4cross0.4), libgomp1-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libitm1-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libatomic1-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4) Recommends: libc6-dev-ppc64el-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libgcc-4.8-dev-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 245584 MD5sum: 8d014e158ca2ad98d5af842a7ac2f24f SHA1: 7998290a9928220b65aae7660566f76b9d921ad7 SHA256: 83768eae683a7a5253050974ae7457c05412c7366e305d2d434fa66613873be5 Description: GCC support library (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc1 Priority: required Section: libs Installed-Size: 129 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libc6 (>= 2.14) Pre-Depends: multiarch-support Breaks: gcc-4.1, gcc-4.3 (<< 4.3.6-1), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2) Filename: pool/main/g/gccgo-4.9/libgcc1_4.9-20140406-0ubuntu1_amd64.deb Size: 39176 MD5sum: 332eae9b8c4841e5a71c57298f24419d SHA1: aff8b88824077fbbfcbac1a110cb2374e43187e9 SHA256: 97c8e163cdc651cfbac7e9c7f91723feeab37e1da19c28983179c4cd58e67f7c Description: GCC support library Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: bbd60d723e97d8e06c04228ee4c76f10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libgcc1-arm64-cross Priority: extra Section: devel Installed-Size: 111 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 1:4.8.2-13ubuntu1cross0.11 Provides: libgcc1-arm64-dcv1 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libc6-arm64-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-arm64-cross/libgcc1-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 29272 MD5sum: 14e365312b564150ed93a5c0a06731fc SHA1: ffd0bc18b9edc753e86fd63b5c042b66da651038 SHA256: 87c4a26e1d56dfcba3f3afc57dfd250b738110b53d01f1309dcdad33e02c2030 Description: GCC support library Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: cde62b14dfad8bdbb610bc5af8262ced Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc1-armhf-cross Priority: extra Section: devel Installed-Size: 138 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 1:4.8.2-16ubuntu4cross0.11 Provides: libgcc1-armhf-dcv1 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libgcc1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 36462 MD5sum: a96f1e852a83d4fa1c1f0606b70e324c SHA1: e2898fe9c2f54f0d73bad731cc3d3e7ea15b2098 SHA256: 4c7f372012d169b861265fbc523f168b3ff27e7f9e081c957da651459319e960 Description: GCC support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: ef0d6f8d0383298ffaea5e6c0dd3d90b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc1-dbg Priority: extra Section: debug Installed-Size: 483 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libgcc1 (= 1:4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/libgcc1-dbg_4.9-20140406-0ubuntu1_amd64.deb Size: 85594 MD5sum: 54fa7b49cff17da5f331dc478709ebe3 SHA1: 9fd25c3459d20fb8d7e6f806e1fc271a9b40da14 SHA256: fc7c190a8c19f845c2702c5df3931cc3c04bcdd27d6c251e653a21fd4021ca48 Description: GCC support library (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: d2281f8d5a2b7dae7c362df43affcb03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc1-powerpc-cross Priority: extra Section: devel Installed-Size: 126 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 1:4.8.2-16ubuntu3cross0.11 Provides: libgcc1-powerpc-dcv1 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/libgcc1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 34204 MD5sum: 1cedf49926b7ddf761ecfad8b6089648 SHA1: 8de3ce3b45216199cc5e26d2ba93dced757c9ec0 SHA256: 6bb69fdc1048db506c8d5bbe13dda8962ff00d2fb7b8528bda2edb68758b033d Description: GCC support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: e1bd35e39eccaed54d86a8950b109d57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc1-ppc64el-cross Priority: extra Section: devel Installed-Size: 115 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 1:4.8.2-16ubuntu4cross0.4 Provides: libgcc1-ppc64el-dcv1 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6-ppc64el-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libgcc1-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 28126 MD5sum: 0147697ed46e85542eb405f383cf6c04 SHA1: 2c5371646774f95f16e7363c37e3d0d8feb917d5 SHA256: 9d5bbf621f66a81c7798ef5382be1a159b0ff313463529f536ea6d077aff7b3f Description: GCC support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: ec819759719b2cca6329501a97792102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcj-bc Priority: optional Section: java Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-defaults (1.124ubuntu6) Version: 4.8.2-1ubuntu6 Depends: libgcj-common (>= 1:4.8.2-1ubuntu6), libgcj14 (>= 4.8.2-5~) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-defaults/libgcj-bc_4.8.2-1ubuntu6_amd64.deb Size: 1290 MD5sum: d096260a4ab2a52be7d257585e63e2df SHA1: 8b867148aa9d1e30e9a9fe1f0fdfe64019a3ab70 SHA256: ef49672e3ad85569fe4459be5a8817938238c9a98132b9af796cbe0c54330554 Description: Link time only library for use with gcj Multi-Arch: same Description-md5: 92531142394600eb3406f5fc89716c34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgcj-common Priority: optional Section: libs Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-defaults (1.124ubuntu6) Version: 1:4.8.2-1ubuntu6 Replaces: java-gcj-compat (<< 1.0.65-8), java-gcj-compat-dev (<< 1.0.80-2) Depends: python:any Conflicts: classpath (<= 0.04-4) Filename: pool/main/g/gcc-defaults/libgcj-common_4.8.2-1ubuntu6_all.deb Size: 136672 MD5sum: 0cd3bcde56b8cf0573c7e8d7d19a973e SHA1: 36a2585a02711dce081ce4f0ccf1e189f4e8d253 SHA256: 4dfdb194a36031d92f1255eebd8a576508fb700ee21e188facf67b682392e4d8 Description: Java runtime library (common files) Multi-Arch: foreign Description-md5: 2f28079fd19fff52fbee4f6fbfa23148 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgcj-doc Priority: optional Section: doc Installed-Size: 429781 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Provides: classpath-doc Depends: gcc-4.8-base (>= 4.8) Filename: pool/main/g/gcc-4.8/libgcj-doc_4.8.2-19ubuntu1_all.deb Size: 18747984 MD5sum: c5e461ae3a5df2168ac3ba956ddb7c25 SHA1: 06926e3dde775488f50cec8c0c9d0eecbdf487e6 SHA256: eaa03692ef92d414f6d79ac3699135b43f99d874221da51514538006f51f48e6 Description: libgcj API documentation and example programs Enhances: libgcj14-dev Homepage: http://gcc.gnu.org/ Description-md5: f5a770b1765898ba56a3f1f8c749ab2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcj14 Priority: optional Section: libs Installed-Size: 53983 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcj-4.8-jre-headless (<< 4.8.2-5), gij-4.4 (<< 4.4.0-1) Depends: gcc-4.8-base (>= 4.8), libgcj-common (>= 1:4.1.1-21), libasound2 (>= 1.0.16), libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libgmp10, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: gcj-4.8-jre-lib (>= 4.8) Suggests: libgcj14-dbg (>= 4.8.2-19ubuntu1), libgcj14-awt (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libgcj14_4.8.2-19ubuntu1_amd64.deb Size: 9226778 MD5sum: 880ec0d569a417427c8c589c6ea310b8 SHA1: 61bc320c960a7073ec150f3713d8cfca3b0f2726 SHA256: a5c253b94c9f22f7adcecc89e0e763a02b4a1c282af50ba29d6665e147b17f2f Description: Java runtime library for use with gcj Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 7f6bc4eae7de535afdc86e015c966562 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgcj14-awt Priority: optional Section: libs Installed-Size: 273 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), libgcj14 (= 4.8.2-19ubuntu1), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libfreetype6 (>= 2.2.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.22.0), libpangoft2-1.0-0 (>= 1.14.0), libxrandr2 (>= 4.3), libxrender1, libxtst6 Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libgcj14-awt_4.8.2-19ubuntu1_amd64.deb Size: 61922 MD5sum: 6b5d6cf09523c163786f7161031feb3e SHA1: 3e91dcd8a4bffb73b96a945201aaee356026f944 SHA256: dea33d90579923e3f7859ccb7369b01387b246523055c0eae5cd83d8dc0ccdec Description: AWT peer runtime libraries for use with gcj Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 62c9d0df7d6fb42f9efbc0d8df5ad545 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgcj14-dbg Priority: extra Section: debug Installed-Size: 129589 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcj14 (= 4.8.2-19ubuntu1) Pre-Depends: multiarch-support Recommends: binutils, libc6-dbg | libc-dbg Filename: pool/main/g/gcc-4.8/libgcj14-dbg_4.8.2-19ubuntu1_amd64.deb Size: 16638318 MD5sum: 6a120a46977719e9a3e562a663d0f550 SHA1: 72d4ffcc12e6b682b7234b0c8562e9e267da3776 SHA256: 07e83fbb6a8bea356ed4c2551b6fb7c5c2c44ba9c4eb105314a5b31bbc9e118f Description: Debugging symbols for libraries provided in libgcj14-dev Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: f7fe8a6b64bcf70fe0281e03d761a5bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcj14-dev Priority: optional Section: libdevel Installed-Size: 6674 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcj14-awt (= 4.8.2-19ubuntu1), libgcj-bc, zlib1g-dev Suggests: libgcj-doc Filename: pool/main/g/gcc-4.8/libgcj14-dev_4.8.2-19ubuntu1_amd64.deb Size: 598990 MD5sum: 6678e518023816e3d9f28fad148d4246 SHA1: 2dba4837c0505b67899c52688ca2178e025cc286 SHA256: 65c9debfe86226362ec5fcdb679db06a15a55c2796c8892184746e74801d6830 Description: Java development headers for use with gcj Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 7161f4f8afb8f0860b930120a5520479 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgck-1-0 Priority: standard Section: libs Installed-Size: 392 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gcr Version: 3.10.1-1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libp11-kit0 (>= 0.20.0) Pre-Depends: multiarch-support Breaks: gnome-keyring (<< 3.4), seahorse (<< 3.4) Filename: pool/main/g/gcr/libgck-1-0_3.10.1-1_amd64.deb Size: 76768 MD5sum: f80785d5e062e3c8d01e90ff177d976e SHA1: 8ffa5e6fae5238a978c02896646e3a1fe0e1d33b SHA256: b22abe66f7e818c8e2fd5caa02f4152c043db2b09b4448d3887f02a7c4d6748c Description: Glib wrapper library for PKCS#11 - runtime Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 295051c0037e672e4d1c6a05313400f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgck-1-dev Priority: optional Section: libdevel Installed-Size: 678 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gcr Version: 3.10.1-1 Depends: gir1.2-gck-1 (= 3.10.1-1), libgck-1-0 (= 3.10.1-1), libglib2.0-dev (>= 2.32.0), libp11-kit-dev Suggests: libgck-1-doc Filename: pool/main/g/gcr/libgck-1-dev_3.10.1-1_amd64.deb Size: 37170 MD5sum: d71d1dfdaded59c73ed7308676cd4d2f SHA1: c97a20b370bfc18de6148e91a71c34d3a1fab6a4 SHA256: 6dfc122265a88f9e6d002b5c576d7b5ccee84c2fed4a78c8ae5b77da4c1a9840 Description: GLib wrapper library for PKCS#11 - development Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: cfa95aba9f3b2a479b52494f03079fe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgck-1-doc Priority: optional Section: doc Installed-Size: 1135 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: gcr Version: 3.10.1-1 Replaces: libgck-dev (<< 3.2.2-1) Suggests: devhelp Breaks: libgck-dev (<< 3.2.2-1) Filename: pool/main/g/gcr/libgck-1-doc_3.10.1-1_all.deb Size: 56750 MD5sum: c98badeb2bb0f694a313097267cae38f SHA1: 10a9b3830e406cef7f1aec41a1ab6c950ea0f042 SHA256: 2a2148a987aab2c0dab33aae50bf55ec0b9029408cce40597c7fda6276cbf746 Description: GLib wrapper library for PKCS#11 - documentation Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 1eff4110e2151494884bd0cc3ad14eee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgconf-2-4 Priority: optional Section: libs Installed-Size: 573 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gconf Version: 3.2.6-0ubuntu2 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.35.9), gconf2-common (= 3.2.6-0ubuntu2) Pre-Depends: multiarch-support Recommends: gconf-service Conflicts: libbonobo2-0 (<< 2.24) Breaks: gconf2 (<< 3.2.3-2), libgconf2-4 (<< 3.2.3-2) Filename: pool/main/g/gconf/libgconf-2-4_3.2.6-0ubuntu2_amd64.deb Size: 80806 MD5sum: 775d9a0387a9aa3cee1cff1f211ddd92 SHA1: b0bf03a3ccf9f3d4dc31ee6880381a61af1c3fc9 SHA256: 952e3f4ed08461e2f95f38b54c66f6a84a6a393a4580e0a64ce9fe84db5b5530 Description: GNOME configuration database system (shared libraries) Multi-Arch: same Homepage: http://projects.gnome.org/gconf/ Description-md5: f0df76e5dd08f004e77a327343ed3f6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgconf2-4 Priority: optional Section: libs Installed-Size: 377 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gconf Version: 3.2.6-0ubuntu2 Depends: libgconf-2-4 (= 3.2.6-0ubuntu2), gconf-service Breaks: gconf2 (<< 3.2.3-2) Filename: pool/main/g/gconf/libgconf2-4_3.2.6-0ubuntu2_amd64.deb Size: 2042 MD5sum: c563cdab9f06d02e41ae6c2287838cb0 SHA1: 06d8190554ea931a5f58ac203b290474e0bdd6c3 SHA256: 7ff16c2ee9d18cb6e5d8ba63edfb26c1af913034cf5715cdbaaf0cffb528baa5 Description: GNOME configuration database system (dummy package) Multi-Arch: same Homepage: http://projects.gnome.org/gconf/ Description-md5: 33fc155702d066b4526ff5b7c66e6992 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: libgconf2-dev Priority: optional Section: libdevel Installed-Size: 994 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gconf Version: 3.2.6-0ubuntu2 Replaces: gir-repository-dev (<< 0.6.5-7) Depends: libgconf-2-4 (= 3.2.6-0ubuntu2), gir1.2-gconf-2.0 (= 3.2.6-0ubuntu2), libglib2.0-dev (>= 2.25.9), libdbus-1-dev (>= 1.0.0), gconf2 (= 3.2.6-0ubuntu2) Recommends: libgconf2-doc Filename: pool/main/g/gconf/libgconf2-dev_3.2.6-0ubuntu2_amd64.deb Size: 91210 MD5sum: e97ed00129e5433eb9bd7b4231bc4d80 SHA1: 6dda9cd004dbf059a70be2b6074f90bf4a00b4b4 SHA256: fa4ce38b4d423c439fef97103b939d61ead133c779031772433937e4e68c37d8 Description: GNOME configuration database system (development) Homepage: http://projects.gnome.org/gconf/ Description-md5: 5a2f2e9f08aa6128fd4ac6475d2776ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgconf2-doc Priority: optional Section: doc Installed-Size: 1187 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: gconf Version: 3.2.6-0ubuntu2 Conflicts: libgconf2-dev (<< 3.2.3-2) Filename: pool/main/g/gconf/libgconf2-doc_3.2.6-0ubuntu2_all.deb Size: 75298 MD5sum: 4360b6e746e66e0db71b69b1a7e477e6 SHA1: cb833f0720010b08b8984674a663c6c7a9f87a72 SHA256: 378293b39eee16116b2308e3a2de291ce9658c22ac22279d1376f1cfab58ecf6 Description: GNOME configuration database system (API reference) Multi-Arch: foreign Homepage: http://projects.gnome.org/gconf/ Description-md5: 32322fe8cd70986e49b9cbc726e7e6f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgconf2.0-cil Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: libgconf2.24-cil, libgnome2.0-cil (<< 2.16.0-6) Depends: cli-common (>= 0.5.1), libdbus-glib-1-2 (>= 0.100.2), libgconf-2-4 (>= 2.31.1), gconf-service, libglib2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1) Suggests: monodoc-gtk2.0-manual Conflicts: libgconf2.24-cil Filename: pool/main/g/gnome-sharp2/libgconf2.0-cil_2.24.2-3_all.deb Size: 13996 MD5sum: 44d6f2bc45ae0c019201a9ceb90f4663 SHA1: 4a2f8538b94803f3eacc424176b5b670d2a4c310 SHA256: 822266dd8fb27264448be5c95e7358969ccba1b960084ce578b6969995696611 Description: CLI binding for GConf 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 5e568e797e3ab7a66ad95372b118db09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libgconf2.0-cil-dev Priority: optional Section: libs Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: libgconf2.0-cil (<< 2.24.1-5), libgconf2.24-cil Depends: libgconf2.0-cil (= 2.24.2-3), mono-runtime (>= 2.10.1), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-xml4.0-cil (>= 1.0) Filename: pool/main/g/gnome-sharp2/libgconf2.0-cil-dev_2.24.2-3_all.deb Size: 6300 MD5sum: 7b98a86228975205556829fd6cb39679 SHA1: d6bf8340f4e413a05a658723063fca53964e627f SHA256: e8a4fccd1ebd36e96dcbc968a20a19dc9f27b066a52f525d24875707a20d2747 Description: CLI binding for GConf 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 36b4a0c50ef408145809459a9a3fcf1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcr-3-common Priority: standard Section: libs Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: gcr Version: 3.10.1-1 Replaces: libgcr-3-0 (<< 3.2.2-1) Breaks: libgcr-3-0 (<< 3.2.2-1) Filename: pool/main/g/gcr/libgcr-3-common_3.10.1-1_all.deb Size: 8482 MD5sum: 20339639563f808aa7030347e4c0d2d6 SHA1: fe221acfa1e7f8c2245cabc3ea7a750997ee8fe4 SHA256: 90ec63b7e9c2fe0706541c750b22733e40bf594246452cb4c2f1dcf19ff50fce Description: Library for Crypto UI related tasks - common files Multi-Arch: foreign Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 0cf2bf26103907f5de0b12c22c99bf53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgcr-3-dev Priority: optional Section: libdevel Installed-Size: 790 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gcr Version: 3.10.1-1 Replaces: libgcr-dev (<< 3.0.0-2~) Depends: gir1.2-gcr-3 (= 3.10.1-1), libgcr-base-3-1 (= 3.10.1-1), libgcr-ui-3-1 (= 3.10.1-1), libglib2.0-dev (>= 2.32.0), libgck-1-dev (= 3.10.1-1), libgtk-3-dev (>= 3.0.0), libtasn1-3-dev, libtasn1-3-bin, libp11-kit-dev Suggests: libgcr-3-doc Breaks: libgcr-dev (<< 3.0.0-2~) Filename: pool/main/g/gcr/libgcr-3-dev_3.10.1-1_amd64.deb Size: 50906 MD5sum: 7127e874d39d0faf4be82cdc7a4896e1 SHA1: ad4c39fd1da5dcddf4295007877ec53f6953979a SHA256: dab00bfabdbe74e39942a836a975df631f3d65c684df95bc23e194204746b5fa Description: Library for Crypto UI related tasks - development Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 2c7f08f369b97bd861c14d57fe6e7323 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcr-3-doc Priority: optional Section: doc Installed-Size: 1169 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: gcr Version: 3.10.1-1 Replaces: libgcr-3-dev (<< 3.2.2-1) Suggests: devhelp Breaks: libgcr-3-dev (<< 3.2.2-1) Filename: pool/main/g/gcr/libgcr-3-doc_3.10.1-1_all.deb Size: 134058 MD5sum: 65865347e80a165416a2deeda93ab2ea SHA1: 72fd774f16121766a6d5bbfe91f2c98d2dbf163d SHA256: b1d92549b4d11d81db8e4aa5f3f6d9fb1bc72cddd406d0742c7e0932956f4428 Description: Library for Crypto UI related tasks - documentation Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: d42e997633a20f948abe39568f9aaca9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcr-base-3-1 Priority: standard Section: libs Installed-Size: 772 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gcr Version: 3.10.1-1 Replaces: libgcr-3-1 (<< 3.8.2-2) Depends: libc6 (>= 2.14), libgck-1-0 (>= 3.3.90), libgcrypt11 (>= 1.4.5), libglib2.0-0 (>= 2.37.3), libp11-kit0 (>= 0.20.0), libgcr-3-common Pre-Depends: multiarch-support Breaks: libgcr-3-1 (<< 3.8.2-2) Filename: pool/main/g/gcr/libgcr-base-3-1_3.10.1-1_amd64.deb Size: 180342 MD5sum: 0f8c983b3eba569ffc5dc031c555dd01 SHA1: f80492998e0722094e70f83f92d24599c222f762 SHA256: 00b6edfd5eefa7ea2149a81a86f7d617fd5368e57487303f5c2491cc9fac4e62 Description: Library for Crypto related tasks Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 14e274d3cca43006fcf7e2eab5df3b13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgcr-ui-3-1 Priority: optional Section: libs Installed-Size: 630 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gcr Version: 3.10.1-1 Replaces: libgcr-3-1 (<< 3.8.2-2) Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgck-1-0 (>= 3.3.90), libgcr-base-3-1 (>= 3.8.0), libgcrypt11 (>= 1.4.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.1.4), libpango-1.0-0 (>= 1.18.0), libgcr-3-common Pre-Depends: multiarch-support Breaks: libgcr-3-1 (<< 3.8.2-2) Filename: pool/main/g/gcr/libgcr-ui-3-1_3.10.1-1_amd64.deb Size: 134836 MD5sum: e0e526aa613aba3f9ace6b746e1d485d SHA1: b47568cf67250c3e79c5f896281ebf9bb7cf12f3 SHA256: 4381e464cafc9a9128558bf86d1a394d2d1ffad734bd61f4c08440c3495d90e0 Description: Library for Crypto UI related tasks Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: f0160c7d3daed603681dfd3b0562507f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgcrypt11 Priority: important Section: libs Installed-Size: 583 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Version: 1.5.3-2ubuntu4 Depends: libc6 (>= 2.15), libgpg-error0 (>= 1.10) Pre-Depends: multiarch-support Suggests: rng-tools Breaks: gnupg2 (<< 2.0.17-2ubuntu2), gpgsm (<< 2.0.17-2ubuntu2), libgnutls26 (<< 2.12.7-3) Filename: pool/main/libg/libgcrypt11/libgcrypt11_1.5.3-2ubuntu4_amd64.deb Size: 237540 MD5sum: 766687998ef52f4d9f85e4d86998f4b1 SHA1: 641aba07864680cbea2b0161965ae7c37f4df563 SHA256: 3f44c9dba1e0a14ebef2e470c9c243318178ce79de34fe2936f54e0cd20201d8 Description: LGPL Crypto library - runtime library Multi-Arch: same Homepage: http://directory.fsf.org/project/libgcrypt/ Description-md5: 9d1cc66909a9f1d1b631303b1886e8fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libgcrypt11-dbg Priority: extra Section: libdevel Installed-Size: 648 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: libgcrypt11 Version: 1.5.3-2ubuntu4 Depends: libgcrypt11 (= 1.5.3-2ubuntu4) Filename: pool/main/libg/libgcrypt11/libgcrypt11-dbg_1.5.3-2ubuntu4_amd64.deb Size: 520934 MD5sum: 2743153f358d44ec040fcb0ac77b1fc2 SHA1: 7490eefc2c7313103914a005bdb9f8e57999b14f SHA256: 3c582b19c8593b1f1f9d129b856a5350427f6d9e3e13d6e91998e7e80e72200b Description: LGPL Crypto library - debugger files Multi-Arch: same Homepage: http://directory.fsf.org/project/libgcrypt/ Description-md5: 5a4b74c85d10ae086a05eeb54015f0a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcrypt11-dev Priority: optional Section: libdevel Installed-Size: 1114 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: libgcrypt11 Version: 1.5.3-2ubuntu4 Provides: libgcrypt-dev Depends: libgcrypt11 (= 1.5.3-2ubuntu4), libc6-dev | libc-dev, libgpg-error-dev Suggests: libgcrypt11-doc Conflicts: libgcrypt-dev Filename: pool/main/libg/libgcrypt11/libgcrypt11-dev_1.5.3-2ubuntu4_amd64.deb Size: 272564 MD5sum: 55784c46a72aedc8f49ef3480ef7f129 SHA1: 150a1893710d1ea6033ad1a916c08248140d9704 SHA256: bf6897b18c11ad9b4136bb79be922aa8eae13372cd916b5b210c7d4fd18591b9 Description: LGPL Crypto library - development files Homepage: http://directory.fsf.org/project/libgcrypt/ Description-md5: 488e2729b4b628201774de847d36a243 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcrypt11-doc Priority: optional Section: doc Installed-Size: 1324 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: all Source: libgcrypt11 Version: 1.5.3-2ubuntu4 Replaces: libgcrypt-doc, libgcrypt7-doc Suggests: libgcrypt11-dev Conflicts: libgcrypt-doc, libgcrypt7-doc Filename: pool/main/libg/libgcrypt11/libgcrypt11-doc_1.5.3-2ubuntu4_all.deb Size: 617022 MD5sum: 46d70a4a8b6c449ffb9c8ea660969d65 SHA1: b171516a47dccef901d7430b2ed42279f8f389f6 SHA256: bdbc843c4dac141942cd224586e4cc33428da618feb9a3a1ba311ec1c7896427 Description: LGPL Crypto library - documentation Homepage: http://directory.fsf.org/project/libgcrypt/ Description-md5: 28eb339f6a25d24f5489ecff03309b7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd-barcode-perl Priority: optional Section: perl Installed-Size: 11584 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.15-5ubuntu1 Depends: perl, libgd-gd2-perl | libgd-gd2-noxpm-perl Filename: pool/main/libg/libgd-barcode-perl/libgd-barcode-perl_1.15-5ubuntu1_all.deb Size: 925056 MD5sum: a32dc2564d0b868eb7f3f82ca17dd0d0 SHA1: 8ffcf91b3ad5622f8794d7a8211beb14266fd536 SHA256: f980483a63d2e4ceb24107e0ca6226f1ffe98970fa6dc9a66dcbd9118d2e1dec Description: Perl module to create barcode images (GD::Barcode) Homepage: http://search.cpan.org/dist/GD-Barcode/ Description-md5: 39ad70c6dcfcb5e02c487a14c1ad7c0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd-dbg Priority: extra Section: debug Installed-Size: 492 Maintainer: Ubuntu Developers Original-Maintainer: GD team Architecture: amd64 Source: libgd2 Version: 2.1.0-3 Depends: libgd3 (= 2.1.0-3) | libgd-tools (= 2.1.0-3) Recommends: gdb Filename: pool/main/libg/libgd2/libgd-dbg_2.1.0-3_amd64.deb Size: 318506 MD5sum: 8cb171a65552f3e49a1a57f14f9e2487 SHA1: 9bef8b9b8b5d23cc9a1ac23ba99f5214fcd7209b SHA256: 9be71ae51c63cf19b165331013bd2e2a42fc289d35ce273161874b915f26933d Description: Debug symbols for GD Graphics Library Multi-Arch: same Homepage: http://www.libgd.org/ Description-md5: 916f9f3f32784956dbf8677e17dee321 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd-dev Priority: optional Section: libdevel Installed-Size: 854 Maintainer: Ubuntu Developers Original-Maintainer: GD team Architecture: amd64 Source: libgd2 Version: 2.1.0-3 Replaces: libgd2-dev (<< 2.1.0~alpha1-2~), libgd2-noxpm-dev (<< 2.1.0~), libgd2-xpm-dev (<< 2.1.0~) Provides: libgd2-dev, libgd2-noxpm-dev, libgd2-xpm-dev Depends: libgd3 (= 2.1.0-3), libpng-dev, libz-dev, libjpeg-dev, libfreetype6-dev, libxpm-dev, libx11-dev, libxt-dev, libfontconfig-dev, libvpx-dev, libtiff-dev Breaks: libgd2-dev (<< 2.1.0~alpha1-2~), libgd2-noxpm-dev (<< 2.1.0~), libgd2-xpm-dev (<< 2.1.0~) Filename: pool/main/libg/libgd2/libgd-dev_2.1.0-3_amd64.deb Size: 291982 MD5sum: 3bf086d3b2f098fd8984adbf7c071f2b SHA1: 303c514d62a87505d2e1ca92ee6350edd7ac8c87 SHA256: 7eb491bda8df7c262e6dddc4aa769ae80d92a1c0150ebeb5f0cfa67ee64190b1 Description: GD Graphics Library (development version) Multi-Arch: same Homepage: http://www.libgd.org/ Description-md5: e2e1452132bfe957f8694d8a8920856e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd-gd2-perl Priority: extra Section: perl Installed-Size: 432 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1:2.46-3.1build1 Depends: libc6 (>= 2.14), libgd3 (>= 2.1.0~alpha~), perl (>= 5.18.1-4), perlapi-5.18.1 Conflicts: libgd-gd1-noxpm-perl, libgd-gd1-perl, libgd-gd2-noxpm-perl, libgd-noxpm-perl, libgd-perl Filename: pool/main/libg/libgd-gd2-perl/libgd-gd2-perl_2.46-3.1build1_amd64.deb Size: 180550 MD5sum: bd5a6c68c569becd614802fec40db6b8 SHA1: 03a837a8b954d8d04740867b731347083dda8bad SHA256: 75a2ab759a91b14fd5505afcce7543dae62c19de22bb30cfd2c18b5767bcaddf Description: Perl module wrapper for libgd - gd2 variant Homepage: http://search.cpan.org/dist/GD/ Description-md5: 6b490b42580f69c7d85417026b064777 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgd-graph-perl Priority: extra Section: perl Installed-Size: 860 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.44-6 Depends: libgd-text-perl (>= 0.80), perl Suggests: ttf-dustin Filename: pool/main/libg/libgd-graph-perl/libgd-graph-perl_1.44-6_all.deb Size: 370556 MD5sum: 13bd83de29b5ed5f47a59393d44bfc21 SHA1: d04c59dd765e5c94d00daa8a573201732875ebbd SHA256: 32f4242b8a41a065fc60bd9e617bfd011152d363d5111a8d01961b0e2af00fd8 Description: Graph Plotting Module for Perl 5 Homepage: http://search.cpan.org/dist/GDGraph/ Description-md5: fc0d40385abd7f55ebea6990e8a0e323 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgd-text-perl Priority: extra Section: perl Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.86-8 Depends: libgd-gd2-perl, perl Suggests: ttf-dustin Filename: pool/main/libg/libgd-text-perl/libgd-text-perl_0.86-8_all.deb Size: 38160 MD5sum: f192160aa4530d66c2a3e506b89378be SHA1: 9cbd415552bc50c7565e9f6ec8122e35ada8724e SHA256: 46d712cd7f01f7399942c42e8a0a56a688392b53ee2e5b5ceaca8615af57264f Description: Text utilities for use with GD Homepage: http://search.cpan.org/dist/GDTextUtil/ Description-md5: d9f4bc5f8094ecfb630546573c918eda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgd2-noxpm-dev Priority: optional Section: libdevel Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: GD team Architecture: all Source: libgd2 Version: 2.1.0-3 Depends: libgd-dev Filename: pool/main/libg/libgd2/libgd2-noxpm-dev_2.1.0-3_all.deb Size: 1138 MD5sum: cb7682811ecbff885b4b09e9b9da9cb6 SHA1: c95a232a77d07354976140f873e1e085e3a9f66c SHA256: 7b90dbaa69a3426c6266550e55840399c9de1883085d98f98ae7ff7c8a65407f Description: GD Graphics Library (transitional package) Multi-Arch: foreign Homepage: http://www.libgd.org/ Description-md5: 4962b85e50b036a61d232e9405ec95c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd2-xpm-dev Priority: optional Section: libdevel Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: GD team Architecture: all Source: libgd2 Version: 2.1.0-3 Depends: libgd-dev Filename: pool/main/libg/libgd2/libgd2-xpm-dev_2.1.0-3_all.deb Size: 1132 MD5sum: 94194fcfc540f37071bde5669567992c SHA1: 9fb54954a6482566e84afde6c22453624af1ac39 SHA256: 50f70c05b47dab65e9beb24ba453baf2286d4719f369bde244937866c404998b Description: GD Graphics Library (transitional package) Multi-Arch: foreign Homepage: http://www.libgd.org/ Description-md5: 4962b85e50b036a61d232e9405ec95c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd3 Priority: optional Section: libs Installed-Size: 482 Maintainer: Ubuntu Developers Original-Maintainer: GD team Architecture: amd64 Source: libgd2 Version: 2.1.0-3 Depends: libc6 (>= 2.14), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>> 4.0.0-1~), libvpx1 (>= 1.0.0), libxpm4, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: libgd-tools Filename: pool/main/libg/libgd2/libgd3_2.1.0-3_amd64.deb Size: 147258 MD5sum: d9af97027e33e6f1aa29ed2e4ed0a52e SHA1: d85564198b33d586660568a6080b01cc375a81f3 SHA256: d9de6f01fd2c9cb9beb00112c0ad9c9c2620cd2329564cd006eaef7ef0ee1979 Description: GD Graphics Library Multi-Arch: same Homepage: http://www.libgd.org/ Description-md5: c60ac65f313e96eb4257868f1294e7fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgdata-common Priority: optional Section: libs Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgdata Version: 0.14.1-1 Filename: pool/main/libg/libgdata/libgdata-common_0.14.1-1_all.deb Size: 18530 MD5sum: a208ce161f22730f16e87109180da688 SHA1: 9f97db3c5f7a1aa19faf3f73e4b56386e98d7533 SHA256: ee9f695e98b0b4519a685e4c18d9c8a559aa6f47813d4a654905bbc76180ad8b Description: Library for accessing GData webservices - common data files Homepage: https://wiki.gnome.org/libgdata Description-md5: 5d011a11f567ab94a8c35d7b48cad649 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgdata-dev Priority: optional Section: libdevel Installed-Size: 3841 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgdata Version: 0.14.1-1 Depends: libgdata13 (= 0.14.1-1), gir1.2-gdata-0.0 (= 0.14.1-1), libgcr-3-dev, libglib2.0-dev (>= 2.31.0), libgoa-1.0-dev (>= 3.2), liboauth-dev (>= 0.9.4), libsoup2.4-dev (>= 2.37.91), libxml2-dev Suggests: libgdata-doc Filename: pool/main/libg/libgdata/libgdata-dev_0.14.1-1_amd64.deb Size: 344344 MD5sum: dcb384aa5498ffc3e0c5527cf1deeb97 SHA1: 59eed0c51b3b4471f4fece6dc091a9b292e2297d SHA256: 340b56d30987e8120874981917b60bd006be94d835b4365b6f540cc4a7fda0a9 Description: Library for accessing GData webservices - development files Homepage: https://wiki.gnome.org/libgdata Description-md5: 9892c19f92db563fe9dd7a426623ff57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdata-doc Priority: optional Section: doc Installed-Size: 5776 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgdata Version: 0.14.1-1 Recommends: libgdata-dev Suggests: devhelp Filename: pool/main/libg/libgdata/libgdata-doc_0.14.1-1_all.deb Size: 318300 MD5sum: 1311f7ff647a74c72825f5ef1db98584 SHA1: cf365778fcc50e3d9ae0897890671b4764f93ccb SHA256: 90ca7b76088485a172fccfcb86e9d5cb1d62be6721191af1905986caeb7b050c Description: Library for accessing GData webservices - documentation Homepage: https://wiki.gnome.org/libgdata Description-md5: 457badc41d89dbaf51ffd8a78ca96272 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdata13 Priority: optional Section: libs Installed-Size: 961 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgdata Version: 0.14.1-1 Depends: libc6 (>= 2.14), libgcr-base-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.37.3), libgoa-1.0-0b (>= 3.1.90), liboauth0 (>= 0.9.1), libsoup2.4-1 (>= 2.41.90), libxml2 (>= 2.7.4), libgdata-common Filename: pool/main/libg/libgdata/libgdata13_0.14.1-1_amd64.deb Size: 208960 MD5sum: 5f64b2067558236ec1c5a41aec790727 SHA1: 404230c1d10fa8be8ca960cf93725684e4ce63c2 SHA256: f0ee9c4c82af230807130691f030217c45361055c59a3d63e1c7ce9e20d147b7 Description: Library for accessing GData webservices - shared libraries Homepage: https://wiki.gnome.org/libgdata Description-md5: 2206a13104622d0ae3e6b435b0e80fc0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgdbm-dev Priority: optional Section: libdevel Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: gdbm Version: 1.8.3-12build1 Replaces: libgdbmg1-dev Depends: libc6-dev | libc-dev, libgdbm3 (= 1.8.3-12build1) Conflicts: libgdbm1-dev, libgdbmg1-dev Filename: pool/main/g/gdbm/libgdbm-dev_1.8.3-12build1_amd64.deb Size: 24936 MD5sum: 17a87beda246ce2b2a95a607d7913ec8 SHA1: 153a2846eb962a4abcfabd141d49c6b6c1e9a791 SHA256: af9ca59c7b2c6ddbf1d0083e6ebd037b23869841347c4070e11ac5c5cba5ae87 Description: GNU dbm database routines (development files) Homepage: http://directory.fsf.org/project/gdbm/ Description-md5: ebbee6ca49fb46d5019df4512658e99f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdbm3 Priority: important Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: gdbm Version: 1.8.3-12build1 Depends: libc6 (>= 2.14), dpkg (>= 1.15.4) | install-info Pre-Depends: multiarch-support Filename: pool/main/g/gdbm/libgdbm3_1.8.3-12build1_amd64.deb Size: 33486 MD5sum: 570f8a143bc38cb7e69d81f1b482993a SHA1: d2f6a9755fbaba2bc635eba206e919a6baef6d29 SHA256: c7b848c5f084de01907f66e6766fc91a6a000ae0f8a0b35be09b748f1c48572c Description: GNU dbm database routines (runtime version) Multi-Arch: same Homepage: http://directory.fsf.org/project/gdbm/ Description-md5: 900375b4641d82391c1c951c3b8647f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: libgdiplus Priority: optional Section: libs Installed-Size: 449 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Version: 2.11+git20131008.9732566-5ubuntu1 Depends: libc6 (>= 2.14), libcairo2 (>= 1.4), libexif12, libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgif4 (>= 4.1.4), libglib2.0-0 (>= 2.31.8), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3), libx11-6 Filename: pool/main/libg/libgdiplus/libgdiplus_2.11+git20131008.9732566-5ubuntu1_amd64.deb Size: 136642 MD5sum: 7428948bbedc693cef1b6d8d1e71fcdd SHA1: 99c16580ff029a8ed950675a027244243d56214a SHA256: 901c64261bcda40ae56f0f9723f5b2ea974453ce713764e62637fddbcdbadaa6 Description: interface library for System.Drawing of Mono Homepage: http://www.mono-project.com/Libgdiplus Description-md5: 448897d7c1f6d9b0a49096653fa8811b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libgdk-pixbuf2.0-0 Priority: optional Section: libs Installed-Size: 561 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Replaces: libgtk2.0-0 (<< 2.21.3), libgtk2.0-bin (<< 2.21.3) Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.6), libjasper1, libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3), libx11-6, libgdk-pixbuf2.0-common (= 2.30.7-0ubuntu1) Pre-Depends: multiarch-support Breaks: libgtk2.0-0 (<< 2.21.3), libgtk2.0-bin (<< 2.21.3), librsvg2-2 (<< 2.26.3-2), libwmf0.2-7 (<< 0.2.8.4-7) Filename: pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-0_2.30.7-0ubuntu1_amd64.deb Size: 159982 MD5sum: e46fa18b4dc234ec795dee7fcefaaade SHA1: 54dc7753aa11f7e0470ad3d8d9b4b6b3422b8bd4 SHA256: 6bac3d0f5287a072ebd6c716f42eb4f84f8f5cefa13e06cea9205ac68f344ee7 Description: GDK Pixbuf library Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 63eb319f3f676573afbb3b5585491e65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgdk-pixbuf2.0-0-dbg Priority: extra Section: debug Installed-Size: 726 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Depends: libgdk-pixbuf2.0-0 (= 2.30.7-0ubuntu1) Filename: pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-0-dbg_2.30.7-0ubuntu1_amd64.deb Size: 440408 MD5sum: dbf49befd30ce397485c9a79476847a1 SHA1: b2078f8ff9166cbf57da88b9588f6a69e92f52a6 SHA256: d415579e0c3b0ab32f33f72ec4517a7dc60b8e1c71eb060338b36e991c5a03c8 Description: GDK Pixbuf library - debug symbols Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 217d8f2ea9520f6108077353561fc1a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdk-pixbuf2.0-common Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Replaces: libgdk-pixbuf2.0-0 (<< 2.24.0-2) Breaks: libgdk-pixbuf2.0-0 (<< 2.24.0-2) Filename: pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-common_2.30.7-0ubuntu1_all.deb Size: 8610 MD5sum: a727c1c947675d9ffcb3413045b19b39 SHA1: 1e316caf2e4b3ab59345c1e910dbb8f0822a3586 SHA256: 1e99d0fe90e7625cd3a957f681ee89996df9cf240907cd1c19013048d1a198cb Description: GDK Pixbuf library - data files Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: cd3fff9d184ca859b9cd83a1a6a9e258 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgdk-pixbuf2.0-dev Priority: optional Section: libdevel Installed-Size: 349 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Replaces: gir-repository-dev, libgtk2.0-bin (<< 2.21.3), libgtk2.0-dev (<< 2.21.3) Depends: libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (= 2.30.7-0ubuntu1), libglib2.0-0 (>= 2.37.6), gir1.2-gdkpixbuf-2.0 (= 2.30.7-0ubuntu1), libglib2.0-dev (>= 2.37.6), libx11-dev, libpng12-dev Breaks: libgtk2.0-bin (<< 2.21.3), libgtk2.0-dev (<< 2.21.3) Filename: pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-dev_2.30.7-0ubuntu1_amd64.deb Size: 42940 MD5sum: b9c8c3f05358863826cdb63f2f0ff964 SHA1: d1c08cbe26e0afd2909ee8742d35a13f8703e979 SHA256: 59aa375c83cab09df21d522ad11d47e93a23e9a50f28cb681c0e64994e02e525 Description: GDK Pixbuf library (development files) Homepage: http://www.gtk.org/ Description-md5: 5aafdeaef76aa0707bd91e0f31424078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdk-pixbuf2.0-doc Priority: optional Section: doc Installed-Size: 929 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Replaces: libgtk2.0-doc (<< 2.21.3) Breaks: libgtk2.0-doc (<< 2.21.3) Filename: pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-doc_2.30.7-0ubuntu1_all.deb Size: 173034 MD5sum: 8cf65030abff080d1d2c7d8587886906 SHA1: 30deab91030dcf9f649bebea0da291748621ef63 SHA256: b02bd017b4ce9fbbe42361b7494461f7d3c30d91dd4dc312b25022a690f8c020 Description: GDK Pixbuf library (documentation) Homepage: http://www.gtk.org/ Description-md5: c05c1d454653d6d30698975f8ff15372 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdraw4 Priority: optional Section: libs Installed-Size: 880 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: amd64 Source: fontforge Version: 20120731.b-5 Replaces: fontforge (<= 0.0.20090224) Depends: libc6 (>= 2.15), libcairo2 (>= 1.6.0), libfontconfig1 (>= 2.9.0), libfontforge1, libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpangoxft-1.0-0 (>= 1.14.0), libuninameslist0, libx11-6, libxft2 (>> 2.1.1) Breaks: fontforge (<= 0.0.20090224) Filename: pool/main/f/fontforge/libgdraw4_20120731.b-5_amd64.deb Size: 300554 MD5sum: e4fc3561437c4e85017cfcaa498f1546 SHA1: 204629649abf9fc03017c6b20c38ccdea8f53cf4 SHA256: 82172940a19d264d602d2810d0fc727b3c5db1013de31489563685dc3587ba09 Description: font editor - runtime graphics and widget library Homepage: http://fontforge.sourceforge.net/ Description-md5: 5183d393beee991eb82e9672ad02a523 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: libgee-0.8-2 Priority: optional Section: libs Installed-Size: 763 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: libgee-0.8 Version: 0.10.5-1ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.32) Pre-Depends: multiarch-support Filename: pool/main/libg/libgee-0.8/libgee-0.8-2_0.10.5-1ubuntu1_amd64.deb Size: 178044 MD5sum: d7e18ae86001a7e5a37359bcbf769911 SHA1: 1abd126184748829046e5dfd0738649a361297f2 SHA256: c3827b74d9d6f208596b57b74945195ac011092681e720a23022ae961fba628f Description: GObject based collection library Multi-Arch: same Homepage: http://live.gnome.org/Libgee Description-md5: fdef2224902ba3d67e7c148642480993 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgee-0.8-2-dbg Priority: extra Section: debug Installed-Size: 1313 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: libgee-0.8 Version: 0.10.5-1ubuntu1 Depends: libgee-0.8-2 (= 0.10.5-1ubuntu1) Filename: pool/main/libg/libgee-0.8/libgee-0.8-2-dbg_0.10.5-1ubuntu1_amd64.deb Size: 1053648 MD5sum: 34f3227dc480a1916d74e47d98c50f90 SHA1: ec877127d093a1421d6cf6e40797d726637fbc96 SHA256: 15e6f4a9c3d25bfc4793bd87f0800051fc50c395389669cc2088b51707a36d3f Description: GObject based collection library - library symbols Homepage: http://live.gnome.org/Libgee Description-md5: 03e32312216775ea7722d0b6a5a7f839 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgee-0.8-dev Priority: optional Section: libdevel Installed-Size: 519 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: libgee-0.8 Version: 0.10.5-1ubuntu1 Depends: libgee-0.8-2 (= 0.10.5-1ubuntu1), gir1.2-gee-0.8 (= 0.10.5-1ubuntu1), libglib2.0-dev (>= 2.12.0) Filename: pool/main/libg/libgee-0.8/libgee-0.8-dev_0.10.5-1ubuntu1_amd64.deb Size: 27060 MD5sum: cb60d3ce4f24e1691bada020e6e6c1cd SHA1: 103db3cf14757dc9fad0a628f130ccd58603703b SHA256: 512eb42e60b0145440ec4dafa6cdf5d46e906e31005784531dfe84a160993247 Description: GObject based collection library (development files) Homepage: http://live.gnome.org/Libgee Description-md5: e5006d899b9747f05d1ffd554017042d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgee-dev Priority: optional Section: libdevel Installed-Size: 326 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: libgee Version: 0.6.8-1ubuntu1 Depends: libgee2 (= 0.6.8-1ubuntu1), gir1.2-gee-1.0 (= 0.6.8-1ubuntu1), libglib2.0-dev (>= 2.12.0) Filename: pool/main/libg/libgee/libgee-dev_0.6.8-1ubuntu1_amd64.deb Size: 17504 MD5sum: 733012a4f0a5ea3721b6511fea7259a4 SHA1: 53e04ae80e87297f73bbe1767f27ad7a796a8221 SHA256: 5a33b6d471c7d21430aac0c819f44a2dd4454e8f0b285c5600ec56c996ac8457 Description: GObject based collection library (development files) Homepage: http://live.gnome.org/Libgee Description-md5: e5006d899b9747f05d1ffd554017042d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgee2 Priority: optional Section: libs Installed-Size: 380 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: libgee Version: 0.6.8-1ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.25) Pre-Depends: multiarch-support Filename: pool/main/libg/libgee/libgee2_0.6.8-1ubuntu1_amd64.deb Size: 88878 MD5sum: 008907c3f5d7a5a20dc718b167ba4bcb SHA1: 7de7efe52f6386324f760ed1ad890eada4bb7a8d SHA256: df6b53da3d7fa5911dcaf0e15d69ced1e9f1d676df70384f266051655c6472a1 Description: GObject based collection library Multi-Arch: same Homepage: http://live.gnome.org/Libgee Description-md5: fdef2224902ba3d67e7c148642480993 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libgee2-dbg Priority: extra Section: debug Installed-Size: 641 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: libgee Version: 0.6.8-1ubuntu1 Depends: libgee2 (= 0.6.8-1ubuntu1) Filename: pool/main/libg/libgee/libgee2-dbg_0.6.8-1ubuntu1_amd64.deb Size: 499830 MD5sum: cc9dd8eb5f32c13fd8769695ddac87b6 SHA1: fe16c8ab5828a0a83341144e060d5d1a0094f6ea SHA256: 34b7ccfc3cf000b0ec124dc998d8e126f9d340ff3c2359f34d8e201a383c65ad Description: GObject based collection library - library symbols Homepage: http://live.gnome.org/Libgee Description-md5: 03e32312216775ea7722d0b6a5a7f839 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgegl-0.2-0 Priority: optional Section: libs Installed-Size: 2319 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: gegl Version: 0.2.0-4ubuntu1 Depends: libbabl-0.1-0, libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libjasper1, libjpeg8 (>= 8c), libopenexr6 (>= 1.6.1), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpng12-0 (>= 1.2.13-4), librsvg2-2 (>= 2.14.4), libsdl1.2debian (>= 1.2.11), libstdc++6 (>= 4.1.1), libumfpack5.6.2 Pre-Depends: multiarch-support Filename: pool/main/g/gegl/libgegl-0.2-0_0.2.0-4ubuntu1_amd64.deb Size: 392500 MD5sum: 48dee9a3bb6213a56753e4854c48ce79 SHA1: e3f776900171684d99d674cb832be1bddfb42e53 SHA256: 1eea45e7ce67c89ffca47af2dc64cf3070903b2905e5f4e5e54f8c2885caaf06 Description: Generic Graphics Library Multi-Arch: same Homepage: http://gegl.org/ Description-md5: e11f6f0593fe04ad9db47d6eb6c3c502 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libgegl-0.2-0-dbg Priority: extra Section: debug Installed-Size: 3285 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: gegl Version: 0.2.0-4ubuntu1 Replaces: libgegl-0.0-dbg, libgegl-0.1-0-dbg Depends: libgegl-0.2-0 (= 0.2.0-4ubuntu1) Breaks: libgegl-0.0-dbg, libgegl-0.1-0-dbg Filename: pool/main/g/gegl/libgegl-0.2-0-dbg_0.2.0-4ubuntu1_amd64.deb Size: 1850552 MD5sum: 44e456b848a86c982c32021a3058542d SHA1: 0e68d184c24176029349d4f42790c936aea56933 SHA256: 6ad3e804677baf993b4aa0f3a0b98c7a2b0bd0b1424f7d8b126d844cf96db428 Description: Generic Graphics Library (debugging symbols) Homepage: http://gegl.org/ Description-md5: 8880af6d69d402af45445c1bafe1515b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgegl-dev Priority: optional Section: libdevel Installed-Size: 536 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: gegl Version: 0.2.0-4ubuntu1 Replaces: libgegl-0.0-dev Provides: libgegl-0.0-dev Depends: libbabl-dev (>= 0.1.10), libgegl-0.2-0 (= 0.2.0-4ubuntu1), libglib2.0-dev (>= 2.16.1) Breaks: libgegl-0.0-dev Filename: pool/main/g/gegl/libgegl-dev_0.2.0-4ubuntu1_amd64.deb Size: 51510 MD5sum: 71c364de3ec8d8decf6624a012afaf26 SHA1: e22171c5a11e3b9415e1e10338f953f0303e04b5 SHA256: c9efccdafa544ebf2f384695d60cd628c1e87d66abe41f75915053145cf76f11 Description: Generic Graphics Library (development files) Multi-Arch: same Homepage: http://gegl.org/ Description-md5: 53c453824550aacef970a7078d70e876 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgegl-doc Priority: optional Section: doc Installed-Size: 2465 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: all Source: gegl Version: 0.2.0-4ubuntu1 Replaces: libgegl-0.0-doc Breaks: libgegl-0.0-doc Filename: pool/main/g/gegl/libgegl-doc_0.2.0-4ubuntu1_all.deb Size: 1276316 MD5sum: 523e1f4b6ac6e3fb797bd554cc3c8d67 SHA1: 0b231904a51658ff238ae9674e3503b317e2bcb9 SHA256: 6aebfef8b33f8a95254fd13ddf0a063e5e39ab7eacf98507c1308521195ce7c3 Description: Generic Graphics Library (documentation) Multi-Arch: foreign Homepage: http://gegl.org/ Description-md5: 55c9429d61c63406180cddcb65b36001 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeis-dev Priority: extra Section: libdevel Installed-Size: 126 Maintainer: Ubuntu Developers Architecture: amd64 Source: geis Version: 2.2.16+14.04.20140303-0ubuntu1 Replaces: libutouch-geis-dev Depends: libgeis1 (= 2.2.16+14.04.20140303-0ubuntu1) Conflicts: libutouch-geis-dev Filename: pool/main/g/geis/libgeis-dev_2.2.16+14.04.20140303-0ubuntu1_amd64.deb Size: 16612 MD5sum: 3f86d5034f45427f71dac8152e820d6d SHA1: 6101f3817343859d59f05957eb0577c63c91a26b SHA256: 8466e549a0a4495dc53621837aad47f997e7e8cb7645e612f05cf77a2f96bde9 Description: Gesture engine interface support - dev files Multi-Arch: same Homepage: https://launchpad.net/geis Description-md5: 2ff2cbb222e64416fdb9d07cbc3e9b72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeis-doc Priority: extra Section: doc Installed-Size: 1414 Maintainer: Ubuntu Developers Architecture: all Source: geis Version: 2.2.16+14.04.20140303-0ubuntu1 Replaces: libutouch-geis-doc Conflicts: libutouch-geis-doc Filename: pool/main/g/geis/libgeis-doc_2.2.16+14.04.20140303-0ubuntu1_all.deb Size: 134320 MD5sum: a36203fcd3b9c674d32bc32b98ee6d50 SHA1: 27f93c57cf219ed8e6b0319672511036ae72edf5 SHA256: 8efaeefd6162887d1517d2806d78139d96c0762082a24ce8ba23eea56d211009 Description: Gesture engine interface support - documentation Multi-Arch: foreign Homepage: https://launchpad.net/geis Description-md5: 9642f1590b474c5c7f69225a3b0fa0ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeis1 Priority: extra Section: libs Installed-Size: 201 Maintainer: Ubuntu Developers Architecture: amd64 Source: geis Version: 2.2.16+14.04.20140303-0ubuntu1 Depends: libc6 (>= 2.15), libdbus-1-3 (>= 1.1.1), libframe6 (>= 2.2.4), libgrail6 (>= 3.0.8), libx11-6 (>= 2:1.2.99.901), libxext6, libxi6 (>= 2:1.5.99.2) Pre-Depends: multiarch-support Filename: pool/main/g/geis/libgeis1_2.2.16+14.04.20140303-0ubuntu1_amd64.deb Size: 54748 MD5sum: b1fafe415517934d90a90c4e30f40377 SHA1: 98ab3314228a26c8c526aad3e7d0338780c17be1 SHA256: 66ec6274c8d902cc6b9e58c38b6a379fe84bee324c56acd0b967d7a93b4829df Description: Gesture engine interface support Multi-Arch: same Homepage: https://launchpad.net/geis Description-md5: f7495ef36ba1b4f2f35ba465c3a4e4be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgeoclue-dev Priority: optional Section: libdevel Installed-Size: 744 Maintainer: Ubuntu Desktop Team Original-Maintainer: Laurent Bigonville Architecture: amd64 Source: geoclue Version: 0.12.99-3ubuntu1 Depends: libgeoclue0 (= 0.12.99-3ubuntu1), pkg-config, libdbus-glib-1-dev, libxml2-dev Filename: pool/main/g/geoclue/libgeoclue-dev_0.12.99-3ubuntu1_amd64.deb Size: 77856 MD5sum: 0cc4ca8e883c8531eb34910f4ae3ae2a SHA1: b1a4e33909852a7f6342a5ff976e9fec8e3c07a0 SHA256: 400d615467dbd709a28205398a5cef8478733b2d9c4c06e2e8f7fcf3db3b0493 Description: C API for GeoClue (development files) Homepage: http://www.freedesktop.org/wiki/Software/GeoClue Description-md5: b601e42f27b83d12b146f02fd7b4a527 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeoclue0 Priority: optional Section: libs Installed-Size: 130 Maintainer: Ubuntu Desktop Team Original-Maintainer: Laurent Bigonville Architecture: amd64 Source: geoclue Version: 0.12.99-3ubuntu1 Depends: libc6 (>= 2.4), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Suggests: geoclue Filename: pool/main/g/geoclue/libgeoclue0_0.12.99-3ubuntu1_amd64.deb Size: 27282 MD5sum: 12937ba029a0c96c19ae2b6f2a08d2cf SHA1: 1299d74e003fe70cdc1cd8b1ce50302fe58afa70 SHA256: fbf604658bbb435ec0c60ffbbccfbc09f9da8dcc04e6e510de514b22b9848c51 Description: C API for GeoClue Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/GeoClue Description-md5: d2d9cc3fab1673420a38fd5310a46063 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgeoip-dev Priority: optional Section: libdevel Installed-Size: 654 Maintainer: Ubuntu Developers Original-Maintainer: Patrick Matthäi Architecture: amd64 Source: geoip Version: 1.6.0-1 Depends: libgeoip1 (= 1.6.0-1), geoip-bin (= 1.6.0-1) Filename: pool/main/g/geoip/libgeoip-dev_1.6.0-1_amd64.deb Size: 112980 MD5sum: 67a9f646349d72977f41c59a675fe2f7 SHA1: 0439d78c7bb068f7afdcf69fb55242fd1bef794c SHA256: 83a70713574cd17148e2ae5397e6fc03e620122abf35f07fe6b6c87239ecee6c Description: Development files for the GeoIP library Homepage: http://www.maxmind.com/ Description-md5: afee88869c565d97ba7d87e66323e47c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeoip1 Priority: standard Section: libs Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Patrick Matthäi Architecture: amd64 Source: geoip Version: 1.6.0-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: geoip-database Suggests: geoip-bin Filename: pool/main/g/geoip/libgeoip1_1.6.0-1_amd64.deb Size: 70982 MD5sum: 1f4c657e23cc86696b2323147891588a SHA1: 5c6e22a2499bb1014975d5c67caf4a3f35acdf1f SHA256: c5d62dbf337af3c996435ca22807eaf7f2290db0355196dd353b61175514ab5b Description: non-DNS IP-to-country resolver library Multi-Arch: same Homepage: http://www.maxmind.com/ Description-md5: cc64f48b3eca4b1690c3b7284f2bd5fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgeronimo-jms-1.1-spec-java Priority: optional Section: libs Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Chris Grzegorczyk Architecture: all Source: geronimo-jms-1.1-spec Version: 1.1-1.2ubuntu3 Depends: default-jre-headless | java5-runtime-headless Filename: pool/main/g/geronimo-jms-1.1-spec/libgeronimo-jms-1.1-spec-java_1.1-1.2ubuntu3_all.deb Size: 22626 MD5sum: 6aecfd76bf61d4b0f8248f1fae2591f7 SHA1: 6d0b40fa283494f8f3980dba8e85f0ea760ad1e7 SHA256: 9a1f73bf77259b116ec83cb9020cc20ce737dc6b3ecbb2ee7b03dbc43c536905 Description: Geronimo API implementation of the JMS 1.1 spec Description-md5: 18837dffe48bfce6f4dd58dfc6a59043 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeronimo-jta-1.1-spec-java Priority: optional Section: java Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: geronimo-jta-1.1-spec Version: 1.1.1-3ubuntu1 Replaces: libgeronimo-jta-1.0.1b-spec-java Provides: libgeronimo-jta-1.0.1b-spec-java Suggests: libgeronimo-jta-java-doc Conflicts: libgeronimo-jta-1.0.1b-spec-java Filename: pool/main/g/geronimo-jta-1.1-spec/libgeronimo-jta-1.1-spec-java_1.1.1-3ubuntu1_all.deb Size: 12428 MD5sum: 69dac65fa7a2612c152ab5e54cf35af0 SHA1: 5fb4ef6b1196b574b0f3dcf14186c6c9ebe9cbb9 SHA256: 0448eb1e9e445c38b1cfd5908eb8709cef03043e3204be195367d9f543415177 Description: Geronimo API implementation of the JTA 1.1 spec Homepage: http://geronimo.apache.org Description-md5: e0e1acab9e3fa9733d01db251177ed90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libgeronimo-jta-1.1-spec-java-doc Priority: optional Section: doc Installed-Size: 469 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: geronimo-jta-1.1-spec Version: 1.1.1-3ubuntu1 Suggests: libgeronimo-jta-java Filename: pool/main/g/geronimo-jta-1.1-spec/libgeronimo-jta-1.1-spec-java-doc_1.1.1-3ubuntu1_all.deb Size: 44670 MD5sum: b1b601e582753ca05b9db0e6ff263666 SHA1: ac6aad46d6e89a4cf75789c37078b70367245864 SHA256: ccacd428a3e06b4f9c2d313cdcced7f2fd517d97a09972ea001069e667b9291e Description: Documentation for the JTA 1.1 spec Homepage: http://geronimo.apache.org Description-md5: da905d4b4c2225fa91f4b0464729ffde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgettextpo-dev Priority: optional Section: libdevel Installed-Size: 694 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Source: gettext Version: 0.18.3.1-1ubuntu2 Replaces: gettext (<< 0.18.1.1-10) Depends: libgettextpo0 (= 0.18.3.1-1ubuntu2) Suggests: gettext-doc Breaks: gettext (<< 0.18.1.1-10) Filename: pool/main/g/gettext/libgettextpo-dev_0.18.3.1-1ubuntu2_amd64.deb Size: 123694 MD5sum: cb5ff778b03a2ecfbaddf04fab6ee459 SHA1: 75c92b38f179013e2d8696dec8e4455e51a652fe SHA256: ecf2a6d2e1734d31a09c5aff6a1612e1db24ab375410c15b6e598d45df7b90ed Description: GNU Internationalization library development files Multi-Arch: same Homepage: http://www.gnu.org/software/gettext/ Description-md5: 2c61a6422d46693142537473ae5017c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgettextpo0 Priority: optional Section: devel Installed-Size: 372 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Source: gettext Version: 0.18.3.1-1ubuntu2 Replaces: gettext (<< 0.18.1.1-6) Depends: libc6 (>= 2.14), libunistring0 Pre-Depends: multiarch-support Breaks: gettext (<< 0.18.1.1-6) Filename: pool/main/g/gettext/libgettextpo0_0.18.3.1-1ubuntu2_amd64.deb Size: 109916 MD5sum: ce8c8991513cc9885bb4e2af5c33281f SHA1: 4df0c329a4c9100fc6ede457fcfe1ec9ac191fad SHA256: d15ac33e4c6496632c12674b69cc7a2b6e1eb9baff5cc3d1d7e6f975517bed7f Description: GNU Internationalization library Multi-Arch: same Homepage: http://www.gnu.org/software/gettext/ Description-md5: 34be8e77b3524b55ecae7e97edf3c2ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgexiv2-2 Priority: optional Section: libs Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: amd64 Source: gexiv2 Version: 0.10.0-1ubuntu1 Depends: libc6 (>= 2.14), libexiv2-12, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.37.3), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Breaks: shotwell (<< 0.12) Filename: pool/main/g/gexiv2/libgexiv2-2_0.10.0-1ubuntu1_amd64.deb Size: 40932 MD5sum: 15a78e75c0bc6ae2d29a993ec3fc68a6 SHA1: 39e544a72063a1e3b315d0ff64f280a3bf7c7edd SHA256: 8d0f2c34123c4ad272d327da81ebb573b6745fb6ce3f0342c953d92f4822dd81 Description: GObject-based wrapper around the Exiv2 library Multi-Arch: same Homepage: https://wiki.gnome.org/Projects/gexiv2 Description-md5: 09e54078832a4676c504f775b7cea605 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgexiv2-2-dbg Priority: extra Section: debug Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: amd64 Source: gexiv2 Version: 0.10.0-1ubuntu1 Depends: libgexiv2-2 (= 0.10.0-1ubuntu1) Filename: pool/main/g/gexiv2/libgexiv2-2-dbg_0.10.0-1ubuntu1_amd64.deb Size: 339378 MD5sum: 932bee8b0f03d21c7841760d7be6d315 SHA1: 12745a796d30a6391c83ec5cad238bd83129397a SHA256: dbf1931cccd2d54963d3b6e3493774daa5bb36087f8dd21e9ebd78fb20a87101 Description: GObject-based wrapper around the Exiv2 library (debugging symbols) Multi-Arch: same Homepage: https://wiki.gnome.org/Projects/gexiv2 Description-md5: 9d6468417be2dd31c32b511f5c862952 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgexiv2-dev Priority: extra Section: libdevel Installed-Size: 419 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: amd64 Source: gexiv2 Version: 0.10.0-1ubuntu1 Depends: libgexiv2-2 (= 0.10.0-1ubuntu1), gir1.2-gexiv2-0.10 (= 0.10.0-1ubuntu1), libglib2.0-dev Filename: pool/main/g/gexiv2/libgexiv2-dev_0.10.0-1ubuntu1_amd64.deb Size: 52046 MD5sum: 05be31e565073c092e48f87129c6f4a7 SHA1: 4f2c22afbecca705009e9c69f8e832af2f79eae8 SHA256: 209cb39cc95a163e370d132b04f19ead6506b909f78f78cca48dfe474dfc14cf Description: GObject-based wrapper around the Exiv2 library - development files Multi-Arch: foreign Homepage: https://wiki.gnome.org/Projects/gexiv2 Description-md5: 24ca90ed7b6b0c3a0a3c4385dd3a81a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgflags-dev Priority: optional Section: libdevel Installed-Size: 557 Maintainer: Ubuntu Developers Original-Maintainer: Koichi Akabe Architecture: amd64 Source: gflags Version: 2.0-1.1ubuntu1 Depends: libgflags2 (= 2.0-1.1ubuntu1) Filename: pool/main/g/gflags/libgflags-dev_2.0-1.1ubuntu1_amd64.deb Size: 72714 MD5sum: 207048070cb760476ba58bb9e32f300c SHA1: 7ff41c4d5d4a7fc4a5f3b546dd608bd4c012be10 SHA256: b178b9d2250717accf4eb47070d33238c1a1cd658697f78ef01e5ddacb7df100 Description: commandline flags module for C++ (development files) Homepage: https://code.google.com/p/gflags/ Description-md5: 5c18b4b4e8e0e1671fd33b5406ce23c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgflags-doc Priority: optional Section: doc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Koichi Akabe Architecture: all Source: gflags Version: 2.0-1.1ubuntu1 Filename: pool/main/g/gflags/libgflags-doc_2.0-1.1ubuntu1_all.deb Size: 13882 MD5sum: cdc947e573a2a54b139ea44c4d74114f SHA1: 5bc08287bc145f371f2b3811003915eb07b8c718 SHA256: 5e920df30f0e91fb9b64135653f4177d12600f50e7fb229b6a82ab414d63fddc Description: documentation of gflags Homepage: https://code.google.com/p/gflags/ Description-md5: d8899120f7c0b6bd34c6b0618822e113 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgflags2 Priority: optional Section: libs Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Koichi Akabe Architecture: amd64 Source: gflags Version: 2.0-1.1ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/g/gflags/libgflags2_2.0-1.1ubuntu1_amd64.deb Size: 65938 MD5sum: 4c000f6f10d16569df7be5389e599237 SHA1: c436f5f41e83346ec61880b622c6494b73e34fec SHA256: 8afe8874844f5238958dc4a40023f8c86e6247c01ea68edd202146159dfe3641 Description: commandline flags module for C++ (shared library) Homepage: https://code.google.com/p/gflags/ Description-md5: 9efc698726dbf2a2dd40dc6bcdfbdeb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgfortran-4.7-dev Priority: optional Section: libdevel Installed-Size: 2697 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gfortran-4.7 (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libgfortran3 (>= 4.7.3-12ubuntu1) Breaks: gfortran-4.7 (<< 4.7.2-10) Filename: pool/main/g/gcc-4.7/libgfortran-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 266562 MD5sum: f761eafa7e4543f853a179ac8c4f6f88 SHA1: ca38d0375b58a132834050169a298df50d22628a SHA256: 06ddd33ec5e07526740466bdf827b1132f2feb47e507a09ec46f3889bca57d02 Description: Runtime library for GNU Fortran applications (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 146f5739f84c8211389d84c7aa5bf949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgfortran-4.8-dev Priority: optional Section: libdevel Installed-Size: 2711 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcc-4.8-dev (= 4.8.2-19ubuntu1), libgfortran3 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libgfortran-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 269286 MD5sum: d4623ad19af2b8bbfe176a9f982c063e SHA1: 5cde5a0414752b0753e2ca3cde853b2bd5427560 SHA256: d0d7498601fc0f54c3eda73ee8d97b8a6f8e9aac08f381447e322bcaf46f2c1b Description: Runtime library for GNU Fortran applications (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 146f5739f84c8211389d84c7aa5bf949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgfortran3 Priority: optional Section: libs Installed-Size: 1201 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.17), libgcc1 (>= 1:4.4.0), libquadmath0 (>= 4.6) Pre-Depends: multiarch-support Breaks: gcc-4.1, gcc-4.3 (<< 4.3.6-1), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2) Filename: pool/main/g/gcc-4.8/libgfortran3_4.8.2-19ubuntu1_amd64.deb Size: 249708 MD5sum: e176a202ded90694642eeeaa80653118 SHA1: 7f22123c8802886f6dd70e38cbf14fa5a830c628 SHA256: d520823bfffad2bc6af86c24b14f2a4b18e4004bfaa0f74ae406644c4c48f371 Description: Runtime library for GNU Fortran applications Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: bb4b9e7dbbaa67e95441936718b11f39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libgfortran3-dbg Priority: extra Section: debug Installed-Size: 4250 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgfortran3 (= 4.8.2-19ubuntu1), libgcc1-dbg (>= 1:4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libgfortran3-dbg_4.8.2-19ubuntu1_amd64.deb Size: 612410 MD5sum: 70ce9cafcbbc502598deb9fd3f6df053 SHA1: 0db31fc42c7af14125aa1f2f4d3965f8822c762a SHA256: cb3934500d2a0d02339850e80c3719d8a4a78a19349a9fa3f387b5b10fc05eed Description: Runtime library for GNU Fortran applications (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 8e6e17da8d0b42fc976ade7330c11a20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgif-dev Priority: optional Section: libdevel Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Thibaut Gridel Architecture: amd64 Source: giflib Version: 4.1.6-11 Depends: libgif4 (= 4.1.6-11) Filename: pool/main/g/giflib/libgif-dev_4.1.6-11_amd64.deb Size: 20276 MD5sum: c6719e0f959b067ff4d8b7519ea530c8 SHA1: 48b311a868b7dd032f0d3a556962b3a1d8b11a50 SHA256: 72ba778ca5019a32f3eb0c2a5dacd4391287b128441de37385efcc2c895596b1 Description: library for GIF images (development) Homepage: http://giflib.sourceforge.net/ Description-md5: 0bfe767ea8e86d9cab3f10708a06203a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgif4 Priority: optional Section: libs Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Thibaut Gridel Architecture: amd64 Source: giflib Version: 4.1.6-11 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/g/giflib/libgif4_4.1.6-11_amd64.deb Size: 28554 MD5sum: 044ac290c0e4162fd240dcf6a2821efb SHA1: bfa5e18b7103e783830e53355f7ba9cf23943d34 SHA256: b2ece016a798de41a150f122e5f98af788534ab0c61960904bd31834ef761a83 Description: library for GIF images (library) Multi-Arch: same Homepage: http://giflib.sourceforge.net/ Description-md5: 6e1b50f7983687352e4b68758c6a50d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, edubuntu-usb, lubuntu-core, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libgimp2.0 Priority: optional Section: libs Installed-Size: 2912 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: amd64 Source: gimp Version: 2.8.10-0ubuntu1 Depends: libc6 (>= 2.15), libcairo2 (>= 1.10.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.10), libpango-1.0-0 (>= 1.29.4), libpangocairo-1.0-0 (>= 1.29.4) Recommends: gimp-data (>= 2.8.10), gimp-data (<= 2.8.10-z) Filename: pool/main/g/gimp/libgimp2.0_2.8.10-0ubuntu1_amd64.deb Size: 484410 MD5sum: f2005b0869b2f70abcca6729b3920f57 SHA1: 5a442e915c159f925ab969c0175a86c4c3e3857f SHA256: f646cbd75c265a7e4345d0fb86d89e5404b0372e42df7dbaa0983c26c187bc3c Description: Libraries for the GNU Image Manipulation Program Homepage: http://www.gimp.org/ Description-md5: 87c9f62281987fda19082f1b5cc2c95c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libgimp2.0-dev Priority: optional Section: libdevel Installed-Size: 1720 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: amd64 Source: gimp Version: 2.8.10-0ubuntu1 Depends: libc6 (>= 2.4), libgimp2.0 (= 2.8.10-0ubuntu1), libglib2.0-0 (>= 2.30.2), libgtk2.0-dev (>= 2.12.5), pkg-config Suggests: libgimp2.0-doc Filename: pool/main/g/gimp/libgimp2.0-dev_2.8.10-0ubuntu1_amd64.deb Size: 85742 MD5sum: 0d76b339f046e6a31744068c4732aeb9 SHA1: 6e6ac9dcb326f17cffbae0df56cb31a1c66f99e7 SHA256: 644e6907940d9f4675cb63da49d71ca4b8aaaff0259ba0c91a641920b1940fb1 Description: Headers and other files for compiling plugins for GIMP Homepage: http://www.gimp.org/ Description-md5: c7c7d24560c6f749d332154868167ed5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgimp2.0-doc Priority: optional Section: doc Installed-Size: 7283 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp Version: 2.8.10-0ubuntu1 Depends: lynx | www-browser Filename: pool/main/g/gimp/libgimp2.0-doc_2.8.10-0ubuntu1_all.deb Size: 361452 MD5sum: def3def6322a5269ee0399566163b93b SHA1: d56cbdf26a6ca7b3b53e3564bc2a8d74e496dd70 SHA256: b3596036613f4d1ab6ceee5dec745f7b579c981bbe3f5c81c3dbe47d5e8b300b Description: Developers' Documentation for the GIMP library Homepage: http://www.gimp.org/ Description-md5: 8acaa3767b69bc8f021740c983e4e23a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgirepository-1.0-1 Priority: standard Section: libs Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gobject-introspection Version: 1.40.0-1 Replaces: libgirepository1.0-1 Provides: libgirepository1.0-1 Depends: libc6 (>= 2.14), libffi6 (>= 3.0.4), libglib2.0-0 (>= 2.39.0) Conflicts: libgirepository1.0-1 Breaks: libgjs0c Filename: pool/main/g/gobject-introspection/libgirepository-1.0-1_1.40.0-1_amd64.deb Size: 85670 MD5sum: dce13b0a262c2758f17f988fb18b4e7a SHA1: c1eb1e0347b00dc690930d7f5bddf79002ac5cca SHA256: 9bb8aeedeb9d956d80f1740a1d6c95cc11310e4940c5c3def5d802202440267b Description: Library for handling GObject introspection data (runtime library) Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: 44b96e4ecd5e1fbee0c83bdf6ed90274 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgirepository1.0-dev Priority: optional Section: libdevel Installed-Size: 7301 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gobject-introspection Version: 1.40.0-1 Replaces: gir-repository-dev, libgirepository-dev Depends: libgirepository-1.0-1 (= 1.40.0-1), gobject-introspection (= 1.40.0-1), gir1.2-glib-2.0 (= 1.40.0-1), gir1.2-freedesktop (= 1.40.0-1), libglib2.0-dev (>= 2.35.0), libffi-dev Suggests: libgirepository1.0-doc Conflicts: gobject-introspection-freedesktop, gobject-introspection-glib-2.0, libgirepository-dev Filename: pool/main/g/gobject-introspection/libgirepository1.0-dev_1.40.0-1_amd64.deb Size: 631314 MD5sum: 8442a200a1777ced33a3fa02dd830753 SHA1: 9c80c5f8c6110f780cfdbfb0d04eec2a47ebed51 SHA256: c0de831d3d79de2eb5849639a6c2598e22314af46ead5e8cbe479c12d6f18888 Description: Library for handling GObject introspection data (development files) Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: a6c667390603ef838b5a07b03b5406c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgirepository1.0-doc Priority: optional Section: doc Installed-Size: 1114 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gobject-introspection Version: 1.40.0-1 Replaces: libgirepository1.0-dev (<< 0.6.14-2) Recommends: libglib2.0-doc Breaks: libgirepository1.0-dev (<< 0.6.14-2) Filename: pool/main/g/gobject-introspection/libgirepository1.0-doc_1.40.0-1_all.deb Size: 180778 MD5sum: 4a5d3e2997bba1839acf7473d9c75cd0 SHA1: 5c337d4d34674f026da3feed3a2709aebc66333c SHA256: 1971a940e2c289aa9e1239dfd6ca7a948d37a2c60580f8ca061f1499a7644fcb Description: Library for handling GObject introspection data (documentation) Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: e9606a60123772534331de7277565f67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dev Priority: extra Section: libdevel Installed-Size: 92 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl-dev, libgl1-mesa-dri-dev Provides: libgl-dev, libgl1-mesa-dri-dev Depends: mesa-common-dev (= 10.1.0-4ubuntu5), libgl1-mesa-glx (= 10.1.0-4ubuntu5), libdrm-dev (>= 2.4.52), libx11-dev, libx11-xcb-dev, libxcb-dri3-dev, libxcb-present-dev, libxcb-sync-dev, libxshmfence-dev, libxcb-dri2-0-dev, libxcb-glx0-dev, libxdamage-dev, libxext-dev, libxfixes-dev, libxxf86vm-dev, x11proto-dri2-dev (>= 2.6), x11proto-gl-dev (>= 1.4.14) Conflicts: libgl-dev, libgl1-mesa-dri-dev Filename: pool/main/m/mesa/libgl1-mesa-dev_10.1.0-4ubuntu5_amd64.deb Size: 5238 MD5sum: 4cdd4b60dc0ddf5b47b84c3f2488d9c4 SHA1: afde4203ddf5b3bcb0601b1071b9dd95d5b2859c SHA256: b5063a01aa7ddab7b7743559016f53860ee6c129096501e5cb922e4772b75956 Description: free implementation of the OpenGL API -- GLX development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: edeb377b6e64f69c00b2215e4025a28a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libgl1-mesa-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dev-lts-quantal_5_amd64.deb Size: 1548 MD5sum: f8ba2f06da46798941a34fb31bee824a SHA1: 97b813faf7b99150f51afd06281d38476046f773 SHA256: 11d124d5d009039e0722a38a523c815258fdd6bde0a56ffa39a0ce7615198137 Description: Transitional package for libgl1-mesa-dev Multi-Arch: same Description-md5: a5b924af74c24a6321ba46ddecb7d82d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dev-lts-raring_5_amd64.deb Size: 1550 MD5sum: f7d3995d2846abe62871f7671d2724dd SHA1: f96aa3eeea6e2b0b9e09dfcc4dea6d406c438330 SHA256: 26c7a712e1afe53212ab4b586f8b6c90cb9cae9d5601712c7d75a4f2b31430a8 Description: Transitional package for libgl1-mesa-dev Multi-Arch: same Description-md5: a5b924af74c24a6321ba46ddecb7d82d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dev-lts-saucy_5_amd64.deb Size: 1546 MD5sum: d31231972fdbc80b5fc56c1f85dca1cd SHA1: 9ee318e44de5915ab400c6459db817d6de606b1e SHA256: 1e214344eee2ca8ff1257ff6bafdf5fdba59f41b261419f41c10f4bdff7891ee Description: Transitional package for libgl1-mesa-dev Multi-Arch: same Description-md5: a5b924af74c24a6321ba46ddecb7d82d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri Priority: optional Section: libs Installed-Size: 32605 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1-mesa-dri-experimental (<< 7.11.1), xlibmesa-dri (<< 1:7.0.0) Depends: libc6 (>= 2.17), libdrm-intel1 (>= 2.4.48), libdrm-nouveau2 (>= 2.4.38), libdrm-radeon1 (>= 2.4.31), libdrm2 (>= 2.4.38), libelf1 (>= 0.142), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libllvm3.4, libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Recommends: libtxc-dxtn-s2tc0 | libtxc-dxtn0 Suggests: libglide3 Conflicts: xlibmesa-dri (<< 1:7.0.0) Breaks: libgl1-mesa-dri-experimental (<< 7.11.1), libgl1-mesa-glx (<< 7.10.2-4), libgl1-mesa-glx-no-multiarch, xserver-xorg-core (<< 2:1.14.3-5), xserver-xorg-core-no-multiarch Filename: pool/main/m/mesa/libgl1-mesa-dri_10.1.0-4ubuntu5_amd64.deb Size: 4912972 MD5sum: d0bfead387db128dbe62d19388c09240 SHA1: c2c68490706c7e6fc7b6048331f7e57a404c95bf SHA256: b316b760b730bc90236f096981bcb66dd3f66abca41515aecc05b4ad73c7e2ca Description: free implementation of the OpenGL API -- DRI modules Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: da6c27328d7c638224ef0acc251a333d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgl1-mesa-dri-dbg Priority: extra Section: libdevel Installed-Size: 209454 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1-mesa-dri-experimental-dbg (<< 7.11.1) Depends: libgl1-mesa-dri (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libgl1-mesa-dri-dbg_10.1.0-4ubuntu5_amd64.deb Size: 37340582 MD5sum: db1ce535d7657200094d263b573aee69 SHA1: a2a0a3cf486eaa6dbe27f7c8d4c46af3855ddf87 SHA256: 2737df89a505da64b76facf5dfb280d4eed2b8cf6aefa3ea1858300327d3dcff Description: Debugging symbols for the Mesa DRI modules Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: fb1e2b71da0f9ac97628cc83179582ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-quantal_5_amd64.deb Size: 1546 MD5sum: c6a2df30e38ec00a5936beb599a0079b SHA1: f33d05f188445887d6d92cc7e21a4746ea58f3be SHA256: e2ad2ca6ccbfe4a805c5d8466a1f40788e91d379b7a5078cb68f992023af8b14 Description: Transitional package for libgl1-mesa-dri Multi-Arch: same Description-md5: 9a7de445e8bac29ba462ed2ed1c389cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-quantal-dbg_5_amd64.deb Size: 1550 MD5sum: 860aa555703de2dfc65df9e81ac7bc0c SHA1: ffd18c8566e6b39f294676638c43bdf17c78dde8 SHA256: 9a5d6103d7b510d882e250aad5d16ee0bcd8039f41afb4c3cf84bba93b758097 Description: Transitional package for libgl1-mesa-dri-dbg Multi-Arch: same Description-md5: d72a23e5517e82e7f8ee69acfa3811a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-raring_5_amd64.deb Size: 1548 MD5sum: ab59c62d6fea1c2072ed4dd4bdbb31ff SHA1: 83aef956c28828ae61f1a670ad0a595f40def58a SHA256: 90b09456e69830407f4498667ea81ccced921e7a6e0d023f6ea269bfd6c86e5d Description: Transitional package for libgl1-mesa-dri Multi-Arch: same Description-md5: 9a7de445e8bac29ba462ed2ed1c389cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-raring-dbg_5_amd64.deb Size: 1554 MD5sum: ca5c2aced63e165094d9e914480c21fc SHA1: c3856c54a47e5d12534e7f1b86df1ba8d4f8f2e2 SHA256: e3084f04041960e69fe6fe5a0266769a8f177453e6eb8a2b4c895faeae2206d0 Description: Transitional package for libgl1-mesa-dri-dbg Multi-Arch: same Description-md5: d72a23e5517e82e7f8ee69acfa3811a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-saucy_5_amd64.deb Size: 1544 MD5sum: 3d1ad1cf1d46f8f09b21d5efc048e712 SHA1: 815001ab594f62302bc261aa2a648cd49a4b8510 SHA256: e4d8641d5030b253973948839f82b61348232f2f5a148e99c23f7d0497e9ae2d Description: Transitional package for libgl1-mesa-dri Multi-Arch: same Description-md5: 9a7de445e8bac29ba462ed2ed1c389cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-saucy-dbg_5_amd64.deb Size: 1554 MD5sum: 5770acf3a6654fc3966c3cbd1899fc9d SHA1: 6b469d417deca57580af6ffb861b8ff5d3caf013 SHA256: 7b7708b40ada293b2317248c3c045495ac5d48fe976c243aee80dfdb6a81a62f Description: Transitional package for libgl1-mesa-dri-dbg Multi-Arch: same Description-md5: d72a23e5517e82e7f8ee69acfa3811a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx Priority: optional Section: libs Installed-Size: 505 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1, libgl1-mesa-dri (<< 6.4.0) Provides: libgl1 Depends: libc6 (>= 2.14), libdrm2 (>= 2.3.1), libglapi-mesa (= 10.1.0-4ubuntu5), libx11-6 (>= 2:1.4.99.1), libx11-xcb1, libxcb-dri2-0 (>= 1.8), libxcb-dri3-0, libxcb-glx0 (>= 1.8), libxcb-present0, libxcb-sync1, libxcb1 (>= 1.9.2), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxshmfence1, libxxf86vm1, libudev1 | libudev0 Pre-Depends: multiarch-support Recommends: libgl1-mesa-dri (>= 7.2) Conflicts: libgl1, libgl1-mesa-dri (<< 6.4.0) Breaks: fglrx-glx (<< 1:11-6-1), glx-diversions (<< 0.4), libgl1-nvidia-alternatives (<= 275.09.07-1) Filename: pool/main/m/mesa/libgl1-mesa-glx_10.1.0-4ubuntu5_amd64.deb Size: 113188 MD5sum: 7cb841b439a2afabecf11f4f5ad7ef16 SHA1: 6d31634fec9d99d8e0c3c33e7da3f82824f9ebfc SHA256: 1a72cbd7d6af9a534e8a525da7f35f0f09fa1f4b44fe66951ec266500e1a46ce Description: free implementation of the OpenGL API -- GLX runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 55c9cfe284958a4586b3c6b8323ccf0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgl1-mesa-glx-dbg Priority: extra Section: libdevel Installed-Size: 2089 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgl1-mesa-glx (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libgl1-mesa-glx-dbg_10.1.0-4ubuntu5_amd64.deb Size: 382734 MD5sum: b59e023d8bec53cb7cce3a41f3680af6 SHA1: 098bc06d20d2ab69a04d15cf352c985b4dee9cd6 SHA256: 0394181c2789dbeb54dfd3b526107080f39a5c85673fc34a669d4619e0d8317c Description: Debugging symbols for the Mesa GLX runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 164c9f30dd80a2fb1fdca740b3ebe620 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-quantal_5_amd64.deb Size: 1548 MD5sum: 0ac974bd5c0a128cd32f8374f1b7b9fe SHA1: f37a0144b948ea9acbe253b7a4c4f95a5f57e5cb SHA256: d85fd9b894e59322efc2cceb6f9308f96cdf1ac80cb349b3ee7c1c156ff1eae3 Description: Transitional package for libgl1-mesa-glx Multi-Arch: same Description-md5: c69f8a316627c7b70013b3d025870bea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-quantal-dbg_5_amd64.deb Size: 1554 MD5sum: c6259c9b871f8214bc187cef2caf8453 SHA1: a4873de341500fd6f4bbb374dbad752d3f8779c7 SHA256: 1b25d975ed917c96cf042288e7e1c6116e91d27efbe0e1a23ce1568630401a88 Description: Transitional package for libgl1-mesa-glx-dbg Multi-Arch: same Description-md5: dc372af57f5a0ca55ac96da97e4f10e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-raring_5_amd64.deb Size: 1548 MD5sum: 774e71d8587f0a73e44e9a81926fc274 SHA1: 9ad6331d6e546de59c7555f4ff693b186ac9dadc SHA256: cc00388f93d97fb436d3a68b2ce51a10b2ca5a93f833cf07cb95f96714b27aa5 Description: Transitional package for libgl1-mesa-glx Multi-Arch: same Description-md5: c69f8a316627c7b70013b3d025870bea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-raring-dbg_5_amd64.deb Size: 1556 MD5sum: ed3acb2dbcff95b1d481008618502c82 SHA1: e324536ece7d3ea61743cf898beaf62ac077daba SHA256: f4a777bcb9a2b5fc758e381cd3142ca948adee714ba784f272833756590c3258 Description: Transitional package for libgl1-mesa-glx-dbg Multi-Arch: same Description-md5: dc372af57f5a0ca55ac96da97e4f10e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-saucy_5_amd64.deb Size: 1544 MD5sum: 748716837b90c6ae2218ca744644e4a6 SHA1: 99602ef384412258c0d5047328dabe8b1a32d049 SHA256: c621f279a4a2b35ebd24d80ac7be9e0da4a9ca35b4785264ea705fa0d60efe8f Description: Transitional package for libgl1-mesa-glx Multi-Arch: same Description-md5: c69f8a316627c7b70013b3d025870bea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-saucy-dbg_5_amd64.deb Size: 1550 MD5sum: e51b9093f584c21174f647298e6db2bb SHA1: 9e5724a0d134e94d55b211588072a0771a0ded5d SHA256: 5802b2ce506bb3727dc76f093eda507af8a008a729b9ae7bf8a390a2277afa3b Description: Transitional package for libgl1-mesa-glx-dbg Multi-Arch: same Description-md5: dc372af57f5a0ca55ac96da97e4f10e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglade2-0 Priority: optional Section: libs Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Rottmann Architecture: amd64 Source: libglade2 Version: 1:2.6.4-2 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.8.0), libpango-1.0-0 (>= 1.14.0), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/libg/libglade2/libglade2-0_2.6.4-2_amd64.deb Size: 44618 MD5sum: 71f03b9e7cbfc019a6126fd488c43a70 SHA1: 7cae9365ba8b458e701317e1af313bc46c6e344b SHA256: d5ba8e5eade800d95aa890177be9f279f4ee1d556761d48ce0ee4c8ced066370 Description: library to load .glade files at runtime Multi-Arch: same Description-md5: 6e56664fb6001810a1e64733986a86de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop Package: libglade2-dev Priority: optional Section: libdevel Installed-Size: 523 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Rottmann Architecture: amd64 Source: libglade2 Version: 1:2.6.4-2 Replaces: libglade2-0 (<< 2.0.1-10) Depends: libglade2-0 (= 1:2.6.4-2), libgtk2.0-dev (>= 2.0.6), libxml2-dev, python:any (>= 2.0) Suggests: glade | glade-gnome Filename: pool/main/libg/libglade2/libglade2-dev_2.6.4-2_amd64.deb Size: 72974 MD5sum: 94ad34b148fc2416b9a312c48b7b4de4 SHA1: 8bf7a412de9aa2e7f8c75c60595aeb9c7bf9cc2a SHA256: f5cd8f9d14a62060cbf904d98fd1b8aa7c255885a25434254efecca53f867a8a Description: development files for libglade Multi-Arch: same Description-md5: 00fc238e403e022fdf1a77940c605775 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglade2.0-cil Priority: optional Section: libs Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: amd64 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: gtk-sharp2-gapi (<< 2.10.0-1) Depends: cli-common (>= 0.5.6), libglade2-0 (>= 1:2.6.1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1), libc6 (>= 2.2.5) Suggests: monodoc-gtk2.0-manual Filename: pool/main/g/gtk-sharp2/libglade2.0-cil_2.12.10-5_amd64.deb Size: 20324 MD5sum: add4e2f11ee717662aec25d8ea43e48d SHA1: a01543a08378be4379982854a51fa4a55b0fe908 SHA256: b0ff1db54341964746b0f6805039d4bd1d20a9b1f718cb935bd7ca1f1714ba5b Description: CLI binding for the Glade libraries 2.6 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 0faa79edc932878ece4f6691793afad3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libglade2.0-cil-dev Priority: optional Section: libs Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: amd64 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: libglade2.0-cil (<< 2.12.9-2) Depends: libglade2.0-cil (= 2.12.10-5), libgtk2.0-cil-dev (= 2.12.10-5) Filename: pool/main/g/gtk-sharp2/libglade2.0-cil-dev_2.12.10-5_amd64.deb Size: 4418 MD5sum: d63a9a80cfba95462d541b3bc6142939 SHA1: b3e57b96203c2741cb268faedbbc3893867887a9 SHA256: 802f28aadec12262a10816fcddefaa36d11ef9ec84b2c227e35763f96d0c63f2 Description: CLI binding for the Glade libraries 2.6 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 6b4b0183170e2855e04ceccbdcec3491 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgladeui-2-6 Priority: optional Section: libs Installed-Size: 1899 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: glade Version: 3.16.1-0ubuntu2 Replaces: libgladeui-2-0, libgladeui-2-4 Depends: libc6 (>= 2.14), libcairo2 (>= 1.10.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.10), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libpython2.7 (>= 2.7), libxml2 (>= 2.7.4), libgladeui-common (= 3.16.1-0ubuntu2) Conflicts: libgladeui-2-0, libgladeui-2-4 Filename: pool/main/g/glade/libgladeui-2-6_3.16.1-0ubuntu2_amd64.deb Size: 448234 MD5sum: c30b4ff1bdf57b2572bac9fbf8d6fd6c SHA1: 2a65c8a4823c3062702afe67deea353de8d8bb5d SHA256: ef932f6daa5f68c26129d97562ee6b9033a48582f4e29201ca04671576ab2deb Description: GTK+ User Interface Build core library Homepage: http://glade.gnome.org/ Description-md5: 715dec2c8acd12f4db222b35b00c8973 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgladeui-common Priority: optional Section: libs Installed-Size: 2076 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: glade Version: 3.16.1-0ubuntu2 Replaces: libgladeui-1-9 Filename: pool/main/g/glade/libgladeui-common_3.16.1-0ubuntu2_all.deb Size: 95688 MD5sum: e3fc780f3c24d3d5c7daeaa2e6284f3b SHA1: 4348ff60f1a61982d6c4ce5e7739edd0496fda64 SHA256: cbba5f04aa3e0d62172ac5983eb2cb2569aa3eaa8899d9b9e84197d8c790bd37 Description: GTK+ User Interface Build core library (common files) Homepage: http://glade.gnome.org/ Description-md5: 88409110f44042d9e0426a606647b036 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgladeui-dev Priority: optional Section: libdevel Installed-Size: 1467 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: glade Version: 3.16.1-0ubuntu2 Depends: libgladeui-2-6 (= 3.16.1-0ubuntu2), gir1.2-gladeui-2.0 (= 3.16.1-0ubuntu2), libgtk-3-dev (>= 3.10), libxml2-dev (>= 2.4.0) Suggests: libgladeui-doc Filename: pool/main/g/glade/libgladeui-dev_3.16.1-0ubuntu2_amd64.deb Size: 75052 MD5sum: 5dd6883006916a8addbd9c8fa32b880d SHA1: 72d185395230ab1b43cc0fe066cdab7a5d80e33b SHA256: 04958f0ae7ce9792fd23eff02595920f2bf199ab8edec30fdd610e2b317f3483 Description: GTK+ User Interface Build core library (development files) Homepage: http://glade.gnome.org/ Description-md5: fb03358fc973ba5e6abda03b615d8640 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgladeui-doc Priority: optional Section: doc Installed-Size: 1690 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: glade Version: 3.16.1-0ubuntu2 Filename: pool/main/g/glade/libgladeui-doc_3.16.1-0ubuntu2_all.deb Size: 110938 MD5sum: ee5c89376069a1209047d6dda77d9824 SHA1: 0c469f67f1076e6e994e5f1b761ade65130c6041 SHA256: 9c8337fa99990d9f5fe2a817b6a41d75e10929012cd930ee939395210dbda0d9 Description: GTK+ User Interface Build core library (documentation) Homepage: http://glade.gnome.org/ Description-md5: c3b00de69ef3a31852a6b4b9622628b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglamor-dev Priority: optional Section: libdevel Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: glamor-egl Version: 0.6.0-0ubuntu4 Depends: libglamor0 (= 0.6.0-0ubuntu4) Filename: pool/main/g/glamor-egl/libglamor-dev_0.6.0-0ubuntu4_amd64.deb Size: 6476 MD5sum: ffd7dd0d4d998b7851bc44d4f0380c8b SHA1: bcd42e1642d2a85a77b8ea31b5de48037512ec67 SHA256: d8f16636bdd40e171f2bf0c74c857603e8b8a47a532d97deb5995341fa8a5c42 Description: shared graphics acceleration library based on OpenGL -- development files Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/Glamor Description-md5: 93fd7b9cc39d2090caf46ed2cba776e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglamor-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libglamor-dev Filename: pool/main/x/xorg-lts-transitional/libglamor-dev-lts-saucy_5_amd64.deb Size: 1526 MD5sum: f7d50ccd3e83aa6dcfcda609ef5bc946 SHA1: 42e4d84fe2b5a4cc9d138048dc348769b59e8bf3 SHA256: 24dad40b064ead2ec26c2caa8c86b0163a68472f4fd9099e2ce786ef7ff48764 Description: Transitional package for libglamor-dev Description-md5: 797405077fd2e85ec9c2a8f78323633b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglamor-ltss0 Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libglamor0 Filename: pool/main/x/xorg-lts-transitional/libglamor-ltss0_5_amd64.deb Size: 1514 MD5sum: 71f8510f02b463e82b759c1a502cbb04 SHA1: 5abe12175d2365535f5d2f8056a997a4bd633c0e SHA256: 703ffdbc233448d5daf088fd071256c6d02f82ccc32359a71ffdbe65acda38d7 Description: Transitional package for libglamor0 Description-md5: 76a3aedff60474abfd73b3bdcebc50c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglamor0 Priority: optional Section: libs Installed-Size: 251 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: glamor-egl Version: 0.6.0-0ubuntu4 Depends: libc6 (>= 2.14), libgl1-mesa-glx | libgl1 Pre-Depends: multiarch-support Filename: pool/main/g/glamor-egl/libglamor0_0.6.0-0ubuntu4_amd64.deb Size: 84900 MD5sum: cf1bfd73dd8fb9fb5e549c891e100b68 SHA1: 1b81623c2a7f855e9f26d6627535f45f564f4dec SHA256: 1f8527c8e3eb61d168f773d4ec38475256e03e429e22d318093ebc996258af66 Description: shared graphics acceleration library based on OpenGL Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/Glamor Description-md5: 14a7b54bbef377c02b5f70bf4463697e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libglapi-mesa Priority: optional Section: libs Installed-Size: 242 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libglapi-mesa_10.1.0-4ubuntu5_amd64.deb Size: 21332 MD5sum: 2749d8fd44164cac4bbf267292d19e22 SHA1: 9cf380a1c233c6ea9f539bd44208f102fb6091a0 SHA256: d51cf762d8ee2e334c33ecc8162f7e0a0c17ba6cc08d5543243bff57ecd20b96 Description: free implementation of the GL API -- shared library Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 6da05dae0e50a214ae9b1d095f83c561 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libglapi-mesa-dbg Priority: extra Section: debug Installed-Size: 180 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libglapi-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libglapi-mesa-dbg_10.1.0-4ubuntu5_amd64.deb Size: 20294 MD5sum: d73ae57edca6dc6ac8a137eede348ce0 SHA1: 6c1b3684f075c153fd0d93c351bc8782151e5f18 SHA256: e161df7316b9ed2749949d1b149adbec048809890bdff7bd3a02a3393d88c2ed Description: free implementation of the GL API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 06022288c7b9a148961fac43facd60e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-quantal_5_amd64.deb Size: 1542 MD5sum: cb15cb13cc15a94b51bd7c34f4df8e7e SHA1: 4c515fc3f64ccd3a78ae0c9dee7a73bc9c6a0ef4 SHA256: 5bff1b690ec5c069d017a089041cfe0a1f4e9cbaad7dc2194f00fe528d2f90fc Description: Transitional package for libglapi-mesa Multi-Arch: same Description-md5: aa66a98097067f6c56807fdf09aa36d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-quantal-dbg_5_amd64.deb Size: 1548 MD5sum: c0cd181b75f485185fe1f592f98748ec SHA1: c2ebb796ca6507fd208bb7f0373f1f96237d2a1f SHA256: 4158bf3412c46b5efd280e82ff7c89e52fb19408852355a5df49e20f8e35e8c6 Description: Transitional package for libglapi-mesa-dbg Multi-Arch: same Description-md5: 06c6856ae6502d3123d7e06c0e28f26b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-raring_5_amd64.deb Size: 1540 MD5sum: 5961960b9eb466d4899ac9b353833773 SHA1: 9fe8be745dc09534844f27b83098be4da19cf60e SHA256: be0d4a751aac5d1e861c085e3f75f0f006e1c3483d70f5e9aa223acc08f9bbf5 Description: Transitional package for libglapi-mesa Multi-Arch: same Description-md5: aa66a98097067f6c56807fdf09aa36d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-raring-dbg_5_amd64.deb Size: 1548 MD5sum: f54a6fa1058fece9cdf5bb3b61647ac6 SHA1: 6e8e3e60501af42a59568cb5bca5cfc6ee4a639e SHA256: 4b975fc643773aa099d3c4f000028cbacb6180319d78202bf4e8ccd52eadce68 Description: Transitional package for libglapi-mesa-dbg Multi-Arch: same Description-md5: 06c6856ae6502d3123d7e06c0e28f26b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-saucy_5_amd64.deb Size: 1538 MD5sum: c52cafb36d00fb4443a7072536fccd36 SHA1: e9a6accb63e3c88fc94e4170fe89ac4510736d8b SHA256: 84c520afa34552478540f2f3e8fe90066e5a27bfda292b086396bbf1b08898b2 Description: Transitional package for libglapi-mesa Multi-Arch: same Description-md5: aa66a98097067f6c56807fdf09aa36d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-saucy-dbg_5_amd64.deb Size: 1548 MD5sum: d184e7bc1de655475a8725017a1c91e3 SHA1: f6ecaf718cec3265eae57f9693c260ced051e97b SHA256: 4ca96412cf62df923bbd4e43f33eaca5fbc168a9e3fa48e3a2834e348352adfc Description: Transitional package for libglapi-mesa-dbg Multi-Arch: same Description-md5: 06c6856ae6502d3123d7e06c0e28f26b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa Priority: optional Section: libs Installed-Size: 124 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgles1 Provides: libgles1 Depends: libglapi-mesa (= 10.1.0-4ubuntu5), libc6 (>= 2.2.5) Pre-Depends: multiarch-support Conflicts: libgles1 Filename: pool/main/m/mesa/libgles1-mesa_10.1.0-4ubuntu5_amd64.deb Size: 11392 MD5sum: 7c6f5645272394e1d351c4a39e5f871b SHA1: a48f2bea3b9ce986a68e64a9f8d16304eb07ba1b SHA256: a2dc79a19cbf7e0d97037fc2d5caf8abb49426f316a6b6581ca11e094b016bc3 Description: free implementation of the OpenGL|ES 1.x API -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 5d45602a19e7c4d5c096452a8c1b6ee3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-dbg Priority: extra Section: debug Installed-Size: 115 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgles1-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libgles1-mesa-dbg_10.1.0-4ubuntu5_amd64.deb Size: 8742 MD5sum: b83ce23933b9d031fd75147e609ae498 SHA1: c8418897d78c0cc4d8425196924b88a1289ff656 SHA256: c6b2416a1b06c9a089a85e25f67d34515f2db4ccd4c2c87275e6e6d8f1a3870f Description: free implementation of the OpenGL|ES 1.x API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 4fa9b5bb249bd2e4b78b460050218045 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-dev Priority: optional Section: libdevel Installed-Size: 197 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgles1-mesa (= 10.1.0-4ubuntu5), libegl1-mesa-dev Filename: pool/main/m/mesa/libgles1-mesa-dev_10.1.0-4ubuntu5_amd64.deb Size: 17872 MD5sum: aaba4f14d2d7db17941995935c16904b SHA1: 63c71e21533ce503bdd87ed17987274b8ecfbbf7 SHA256: fde53d3446e336997c8cb94f7b347552209b7aa610f6194362fc01a804a125dd Description: free implementation of the OpenGL|ES 1.x API -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 3fc8f0ee3bdb7f86c55dc67a5bbbf86f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-dev-lts-quantal_5_amd64.deb Size: 1548 MD5sum: 860e4e86e2d6584170e634a35ca84442 SHA1: ff6f13219e1f8eb856581fa425c9aa01a94f004c SHA256: 01da8e724380b5d69ae1c95ad6365e2ef9079e0fa4a29242cc0034e400fb00a6 Description: Transitional package for libgles1-mesa-dev Multi-Arch: same Description-md5: f75f14079c14bb6ae344962b324edfa0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-dev-lts-raring_5_amd64.deb Size: 1552 MD5sum: 33c55a3f96a1fbc83dda1988ac08ac69 SHA1: 6c7f53a897091090d6cb4b4e30ada53f8c5e7008 SHA256: 45641738a191ff6ee29aba47e527ca669ac372ea762587e2830d3e50b2442958 Description: Transitional package for libgles1-mesa-dev Multi-Arch: same Description-md5: f75f14079c14bb6ae344962b324edfa0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-dev-lts-saucy_5_amd64.deb Size: 1550 MD5sum: f5d5e5b86346fb05bda1791a42bcc59a SHA1: 3cba32e8b730ab780002a68416a66e3cc9fa5844 SHA256: dea65a83064243c2a6517af31c19390c3d961057a49d69fd429ae6d9ffd238fa Description: Transitional package for libgles1-mesa-dev Multi-Arch: same Description-md5: f75f14079c14bb6ae344962b324edfa0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-quantal_5_amd64.deb Size: 1548 MD5sum: 01b65b2c84083fc3c7ef111c01e7ea4d SHA1: c84d5eb37480d940e702c44140a71c41cec83216 SHA256: 933b52c7deeb059a74be2ce359b992539df9301e21ebf38d3df5f5a57837e7c1 Description: Transitional package for libgles1-mesa Multi-Arch: same Description-md5: 52ab3f953888468c24626193efeb8d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-quantal-dbg_5_amd64.deb Size: 1552 MD5sum: f60d5a79e40b047db59cdef1dc2598ba SHA1: f47afcf35670d83572b83139a6ccbd582162f149 SHA256: f9159bd13e17818cecf2ba7aec1f9c832c3bd2a24213fe31a5b999202e6aa3f6 Description: Transitional package for libgles1-mesa-dbg Multi-Arch: same Description-md5: e22be8065b33b33fb58623694b2a9ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-raring_5_amd64.deb Size: 1538 MD5sum: b58ff60cc29021782d26ffc6e1362951 SHA1: 4c9c05cd113e8367e7b0f33683c2fbecbef20783 SHA256: 7f77dbde94a3cc5a1c96cdfe0df54587c319b3fd7b6b654becb52b52b6e23c1a Description: Transitional package for libgles1-mesa Multi-Arch: same Description-md5: 52ab3f953888468c24626193efeb8d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-raring-dbg_5_amd64.deb Size: 1552 MD5sum: 7f512271fc46891c52482dacda43a8fd SHA1: 6250584e3c85c9687adc9b82a9eb8ccee4f236c4 SHA256: 50a98f1915154864abfc7021e985eb22a541d5604505fd769fd2527e63e84d84 Description: Transitional package for libgles1-mesa-dbg Multi-Arch: same Description-md5: e22be8065b33b33fb58623694b2a9ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-saucy_5_amd64.deb Size: 1542 MD5sum: d80e3c8d4ee2294dab386e5961cb6242 SHA1: 0a430889f422fd8e0aaa072221ec8435a7db25b0 SHA256: d6af01aa18d8f05c3ee34ffddc6bc1049bf11e2ab02ae8c6950365f111f42ae7 Description: Transitional package for libgles1-mesa Multi-Arch: same Description-md5: 52ab3f953888468c24626193efeb8d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-saucy-dbg_5_amd64.deb Size: 1552 MD5sum: 84cea18b71e67c15d20a9a6c57ed4047 SHA1: 78cb27a1ed2cf826582cb164f6c3f586e3387e0f SHA256: 8b8890b64a7263ff21ac9aad2e5ae91cf54f1855de93a3a9e7f3bc7173c6fec8 Description: Transitional package for libgles1-mesa-dbg Multi-Arch: same Description-md5: e22be8065b33b33fb58623694b2a9ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa Priority: optional Section: libs Installed-Size: 133 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgles2 Provides: libgles2 Depends: libglapi-mesa (= 10.1.0-4ubuntu5), libc6 (>= 2.2.5) Pre-Depends: multiarch-support Conflicts: libgles2 Filename: pool/main/m/mesa/libgles2-mesa_10.1.0-4ubuntu5_amd64.deb Size: 12566 MD5sum: 0b8f39f7b2b6f36beab0eeebdffd3d24 SHA1: 9359a94e3efe432dd4420ac8bcf2bff77c38df12 SHA256: ecf6c128c622744e13f3a23cc82252dd0958c83a21f70c94a7fdaef2f33b55e4 Description: free implementation of the OpenGL|ES 2.x API -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 385f5e9ca66553853ff0600865879832 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb Package: libgles2-mesa-dbg Priority: extra Section: debug Installed-Size: 117 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgles2-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libgles2-mesa-dbg_10.1.0-4ubuntu5_amd64.deb Size: 9138 MD5sum: 5c93c32ef5386f5d98cbe4f0a5d46699 SHA1: f321ff349997b119b52bdad0886c904c1fcf3fa3 SHA256: aec206aef62b87852e32c5543bc8fb12469889e7037d59f80773916fe5536d3b Description: free implementation of the OpenGL|ES 2.x API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: b9ce4487980b8d0298c3fd42c2ad83a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-dev Priority: optional Section: libdevel Installed-Size: 280 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgles2-mesa (= 10.1.0-4ubuntu5), libegl1-mesa-dev Filename: pool/main/m/mesa/libgles2-mesa-dev_10.1.0-4ubuntu5_amd64.deb Size: 23678 MD5sum: 736d670a52fa4f75791964816aa2a52f SHA1: d4380fb5318732c4636843cd50bb48400b7be131 SHA256: 7c475c264b9f770636ff81e8b0fcb9710db909f7ce55f024ddfe529ebc493b97 Description: free implementation of the OpenGL|ES 2.x API -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 7598b085943a2f03c7a2a79086dffcee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-dev-lts-quantal_5_amd64.deb Size: 1548 MD5sum: b75f4eec6b0a230f6fd720378ede5200 SHA1: 42937c644f47536c2512eb6b1eaa759bc8a52862 SHA256: fa671fdcbb659f47bccb85d7e46b3a9e41df0976d3aeced1432f288776090a98 Description: Transitional package for libgles2-mesa-dev Multi-Arch: same Description-md5: 663e4338469bb8090710c9b14cfa1743 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-dev-lts-raring_5_amd64.deb Size: 1552 MD5sum: 18d160a1a71bd41cc0d8e8910717406a SHA1: 625843e407f41cb5f35ea47d294ccfe7b6c4e30e SHA256: b2829057b151981258e03705a654573a260e7e28a3a0e6c71cdd556053bfe853 Description: Transitional package for libgles2-mesa-dev Multi-Arch: same Description-md5: 663e4338469bb8090710c9b14cfa1743 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-dev-lts-saucy_5_amd64.deb Size: 1550 MD5sum: 76b6a7b3088ff5e73d824fd7e10268cd SHA1: 754be3b994fb6b2160f0769b01cbe7eb6b806aff SHA256: f25662c320950210895b15d95297c902b47e9a1b4b49100694ad87f81811fda3 Description: Transitional package for libgles2-mesa-dev Multi-Arch: same Description-md5: 663e4338469bb8090710c9b14cfa1743 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-quantal_5_amd64.deb Size: 1544 MD5sum: a74003d0f1977f8c861c8bfb28b2c010 SHA1: 64d8ab4be1ab79b459e6c8a23ef3063d4834aa78 SHA256: dd691503e85eb5895fbccb9a216353548511b5ee73e9a655281f8111e502edeb Description: Transitional package for libgles2-mesa Multi-Arch: same Description-md5: 0bd6303519e75090503badf99b6db9fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-quantal-dbg_5_amd64.deb Size: 1554 MD5sum: 78213ca3630ecda284e7c86ddb9594cb SHA1: 26017c36f5ce105a893cb8dd577af67accee04dd SHA256: e0ab7031578e6d3f889a8800557a7003cddaefd62373ace2cd23a00defc4adfc Description: Transitional package for libgles2-mesa-dbg Multi-Arch: same Description-md5: b0c686a6bfb7b0a2517f21826b9df109 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-raring_5_amd64.deb Size: 1544 MD5sum: c03e8a3252edcf64c0333ef1a5df5902 SHA1: 5352d70c9b31da83fccd8ad1a2415b9ee6d66adc SHA256: b8fb6b26565333e7193608380bf7e7c7c61a50c41fdc49ee05a4abb28b88890c Description: Transitional package for libgles2-mesa Multi-Arch: same Description-md5: 0bd6303519e75090503badf99b6db9fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-raring-dbg_5_amd64.deb Size: 1552 MD5sum: 6c2992b60ffb338a731eb3984b6b74f4 SHA1: ab53e614b70df5ba387ec0cc2a7d55f1d3269ed8 SHA256: c9dfa3cd8e73226e135918426ab72f99e1c13937e952b199de9e10a539b1241b Description: Transitional package for libgles2-mesa-dbg Multi-Arch: same Description-md5: b0c686a6bfb7b0a2517f21826b9df109 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-saucy_5_amd64.deb Size: 1542 MD5sum: 3c0252318401e1c3efea5edcd910a561 SHA1: 2d6dbdf7eecc280196ff4d507ed55adaa847fd1b SHA256: 2a6f0dc42595d728d34aa541f8a200be15287b209de6cb306d2fe5fcc865f674 Description: Transitional package for libgles2-mesa Multi-Arch: same Description-md5: 0bd6303519e75090503badf99b6db9fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-saucy-dbg_5_amd64.deb Size: 1552 MD5sum: 36e8ff85932e1e9c652f377df377a0a2 SHA1: e116fa5421d601d2c2ef5dc11a91d52475416a2c SHA256: cdf1c3b5cce9ca709cdf6142f2c7320abc9e847b87b95cf3c07517b25a1b4dbe Description: Transitional package for libgles2-mesa-dbg Multi-Arch: same Description-md5: b0c686a6bfb7b0a2517f21826b9df109 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglew-dbg Priority: extra Section: debug Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: glew Version: 1.10.0-3 Depends: libglew1.10 (= 1.10.0-3) Filename: pool/main/g/glew/libglew-dbg_1.10.0-3_amd64.deb Size: 29832 MD5sum: 64c0c539f51fa6291fd03b5700ed0305 SHA1: 76f8780f7fd0853d00b1440f01a7fab2cd82efcf SHA256: 047bc0be986c62e1a2ee60bfc9e0154b66e4a0b6f0993fa9a0d0559107e2fed0 Description: OpenGL Extension Wrangler (debugging symbols) Homepage: http://glew.sourceforge.net Description-md5: 412d1a425b081ef439e5512c62496c47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglew-dev Priority: optional Section: libdevel Installed-Size: 1087 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: glew Version: 1.10.0-3 Provides: libglew1.5-dev, libglew1.6-dev Depends: libgl1-mesa-dev | libgl-dev, libglew1.10 (= 1.10.0-3), libglu1-mesa-dev | libglu-dev Conflicts: libglew1.6-dev Filename: pool/main/g/glew/libglew-dev_1.10.0-3_amd64.deb Size: 109244 MD5sum: ba828e7c440d1524d100e71d2bf07912 SHA1: 4ab54c470efe705fcfd0a1b460f0b43369d9c52a SHA256: 327bdc7e62ea3886b93b8b00f899dc077e5fde7e2292b31d89f346f18fd49fb7 Description: OpenGL Extension Wrangler - development environment Multi-Arch: same Homepage: http://glew.sourceforge.net Description-md5: 7427fd4ce3a98efd3c555bb26ce0059c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglew1.10 Priority: optional Section: libs Installed-Size: 696 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: glew Version: 1.10.0-3 Depends: libc6 (>= 2.2.5), libgl1-mesa-glx | libgl1 Pre-Depends: multiarch-support Suggests: glew-utils Conflicts: libglew1 Filename: pool/main/g/glew/libglew1.10_1.10.0-3_amd64.deb Size: 136168 MD5sum: 4395f734f4a6ae0bb0d3f6e85ebd820b SHA1: 063e5a71fdfa63e767dcfd0d1d61de742d82ef6d SHA256: 121b61c3ab4faecb01ca75031522fd6a51effee38cfb47ad856a23a990a346e0 Description: OpenGL Extension Wrangler - runtime environment Multi-Arch: same Homepage: http://glew.sourceforge.net Description-md5: 6745d43b8defe395b5a7da9eac9e1e7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libglewmx-dbg Priority: extra Section: debug Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: glew Version: 1.10.0-3 Depends: libglewmx1.10 (= 1.10.0-3) Filename: pool/main/g/glew/libglewmx-dbg_1.10.0-3_amd64.deb Size: 22854 MD5sum: 5662af8d55753a77f83d63cc88bf510c SHA1: 42f468266cfa0ad5b42838f2f5ec2cd46f00e414 SHA256: f02ebd9941d341dcb6f0893c6fa15191c9b860a57d3f752fa7cbf351c6df3e70 Description: OpenGL Extension Wrangler MX (debugging symbols) Homepage: http://glew.sourceforge.net Description-md5: c3bee54b07904264a64c192a7f06ac29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglewmx-dev Priority: optional Section: libdevel Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: glew Version: 1.10.0-3 Provides: libglewmx1.5-dev, libglewmx1.6-dev Depends: libglew-dev, libglewmx1.10 (= 1.10.0-3) Conflicts: libglewmx1.6-dev Filename: pool/main/g/glew/libglewmx-dev_1.10.0-3_amd64.deb Size: 3492 MD5sum: 51373e5adb17d5f48ad40788e61dd1fe SHA1: a6b1b9a4d10dcfdaf6425ee879ba430282f9960b SHA256: 70f22e7663c08cdf52c9884f0b98eb0a4f6f8fab6cac070f15ff2690dd6ca574 Description: OpenGL Extension Wrangler MX - development environment Multi-Arch: same Homepage: http://glew.sourceforge.net Description-md5: c95e54d7d437f73f192c317a764f9d0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglewmx1.10 Priority: optional Section: libs Installed-Size: 617 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: amd64 Source: glew Version: 1.10.0-3 Depends: libc6 (>= 2.2.5), libgl1-mesa-glx | libgl1 Pre-Depends: multiarch-support Conflicts: libglew1 Filename: pool/main/g/glew/libglewmx1.10_1.10.0-3_amd64.deb Size: 121098 MD5sum: e7009848443c540ba9dce917dba15b88 SHA1: 6253042209ef3fe0b5f1dc697d9aae92b33d2dff SHA256: e116b8e98de694367486a152dee0def878d69f8174b4e07d60063d0fe7ac51ce Description: OpenGL Extension Wrangler (Multiple Rendering Contexts) Multi-Arch: same Homepage: http://glew.sourceforge.net Description-md5: e0a1d2c5e61300cfeae79ea23128afb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libglib2.0-0 Priority: standard Section: libs Installed-Size: 4596 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: glib2.0 Version: 2.40.0-2 Replaces: libglib2.0-dev (<< 2.23.2-2) Depends: libc6 (>= 2.17), libffi6 (>= 3.0.4), libpcre3, libselinux1 (>= 1.32), zlib1g (>= 1:1.2.2) Pre-Depends: multiarch-support Recommends: libglib2.0-data, shared-mime-info Breaks: glib-networking (<< 2.33.12), gvfs (<< 1.8), libgnome-desktop-3-2 (<< 3.4.2-2), python-gi (<< 3.7.2) Filename: pool/main/g/glib2.0/libglib2.0-0_2.40.0-2_amd64.deb Size: 1057370 MD5sum: b6f17f2ba72a945cd69ff200e2947cde SHA1: 398ca1ceef7c186d6f29f538b2042545d5658a7d SHA256: 46643eac9c42c58a91395f1ab186315e20f0da3b71bfac75a631de7c11123e6f Description: GLib library of C routines Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: f44de6293be1aa02cd13d73f591580a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libglib2.0-0-dbg Priority: extra Section: libdevel Installed-Size: 10585 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: glib2.0 Version: 2.40.0-2 Replaces: libglib2.0-dbg Depends: libglib2.0-0 (= 2.40.0-2) Conflicts: libglib2.0-dbg Filename: pool/main/g/glib2.0/libglib2.0-0-dbg_2.40.0-2_amd64.deb Size: 6109412 MD5sum: 29acc72b5f6edff329873c5f6ea30963 SHA1: 2c5b9067748b31d63a4c3d66e9aa7b4cfd2d96a7 SHA256: 3282da255dc574723965934c97819c6093be791ba1086e7d35016b2b029c1e1f Description: Debugging symbols for the GLib libraries Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 5650e35d4052b9bd7fc47bcc10bd8f50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglib2.0-bin Priority: optional Section: misc Installed-Size: 1425 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: glib2.0 Version: 2.40.0-2 Replaces: libglib2.0-0 (<< 2.25.11-2), libglib2.0-dev (<< 2.25.11-2) Depends: libc6 (>= 2.2.5), libelfg0 (>= 0.8.12), libglib2.0-0 (= 2.40.0-2), libglib2.0-data Conflicts: libglib2.0-0 (<< 2.25.11-2) Filename: pool/main/g/glib2.0/libglib2.0-bin_2.40.0-2_amd64.deb Size: 34882 MD5sum: 4873c462f5f94f55512fc34c14548130 SHA1: 175c7099c9473c2e0dd002c691f4653d8262c71a SHA256: fa6f90ef4e54aa2cb70c650b7a8107fb4f64d2eb915b67cafb9a1b19e166ac67 Description: Programs for the GLib library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: b999624c61f8058d0201077f097c87ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libglib2.0-cil Priority: optional Section: libs Installed-Size: 304 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: amd64 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: gtk-sharp2-gapi (<< 2.10.0-1) Depends: cli-common (>= 0.5.6), libglib2.0-0 (>= 2.34.1), libmono-corlib4.0-cil (>= 2.10.1), libmono-system4.0-cil (>= 2.10.7), libc6 (>= 2.2.5) Suggests: monodoc-gtk2.0-manual Filename: pool/main/g/gtk-sharp2/libglib2.0-cil_2.12.10-5_amd64.deb Size: 50324 MD5sum: 98d96665d7e44d80539b91f0c2c61523 SHA1: 61585f5c55713c418dc6126050b422c074629881 SHA256: 0b97c14d0efa84c0d9c2ef57b9805b5fdcdc31ab8c1be65b3f2ddcf9eb0f6ba0 Description: CLI binding for the GLib utility library 2.12 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 3b6e979e1352e96a2f3eca3f708e29c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libglib2.0-cil-dev Priority: optional Section: libs Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: amd64 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: libglib2.0-cil (<< 2.12.9-2) Depends: libglib2.0-cil (= 2.12.10-5) Filename: pool/main/g/gtk-sharp2/libglib2.0-cil-dev_2.12.10-5_amd64.deb Size: 2408 MD5sum: 6327151775cc37741b4c91434313b1f9 SHA1: cccadc6c4465ef372c490b4615fdaabb3cd4c187 SHA256: 68d1bf21656211703d65a7452e281d056ffe5d822db4475bba32ac16eebdbed4 Description: CLI binding for the GLib utility library 2.12 Homepage: http://www.mono-project.com/GtkSharp Description-md5: e7432bd7eb91c1c711c14150f81a3556 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglib2.0-data Priority: standard Section: misc Installed-Size: 1340 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: glib2.0 Version: 2.40.0-2 Filename: pool/main/g/glib2.0/libglib2.0-data_2.40.0-2_all.deb Size: 115598 MD5sum: c918281e0d1005cb2a74d9ced2a5ae45 SHA1: 3e9a998f3749fe855ba8beb70b7a2b3ea9ed5d41 SHA256: 64858f2aba356c45b5d7fc97f339f5bfe0e00a3db3736074fc9a0f2039dfb4fc Description: Common files for GLib library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: e30141317e2f372da30c78d06ac076ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libglib2.0-dev Priority: optional Section: libdevel Installed-Size: 9580 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: glib2.0 Version: 2.40.0-2 Depends: libc6 (>= 2.4), libglib2.0-0 (= 2.40.0-2), python:any (>= 2.7.1-0ubuntu2), libglib2.0-bin (= 2.40.0-2), libpcre3-dev (>= 1:8.31), pkg-config (>= 0.16.0), zlib1g-dev Suggests: libglib2.0-doc Filename: pool/main/g/glib2.0/libglib2.0-dev_2.40.0-2_amd64.deb Size: 1322786 MD5sum: a74fe50e447ba077f0bf1ed0eb5ea297 SHA1: 55e051ca9090dfa8c8bdfe12815fd68539705fb1 SHA256: 0c513fb48e314d3934e8b9072aafb0125762b9fc593abde33cae9c9da82a0bd9 Description: Development files for the GLib library Homepage: http://www.gtk.org/ Description-md5: f1a310bc28a3b8566d2f79a4116e8a0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglib2.0-doc Priority: optional Section: doc Installed-Size: 19660 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: glib2.0 Version: 2.40.0-2 Suggests: devhelp Filename: pool/main/g/glib2.0/libglib2.0-doc_2.40.0-2_all.deb Size: 1460876 MD5sum: d5d90fa45651bec7b8755cdb2a20a656 SHA1: 729fe6e15ab5a5003ec77be8d97fc53cc413609c SHA256: 043aeb20ae669d6fc1f91c0e1e9c22a78d9b21b2bd08946289281a7b0bc8b04d Description: Documentation files for the GLib library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: bdb9aa53f83dabd5dab7d58c0e8cd803 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libglibmm-2.4-1c2a Priority: optional Section: libs Installed-Size: 2215 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: amd64 Source: glibmm2.4 Version: 2.39.93-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.39.90), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/g/glibmm2.4/libglibmm-2.4-1c2a_2.39.93-0ubuntu1_amd64.deb Size: 416318 MD5sum: 56f1109a3cd2505428fceed751e16907 SHA1: c473e27a6ea20f23bb70407215458cab05003fee SHA256: fe0c8d8a71ab4261f73469871c06665941a04c2e26c71cd6cbb3c2dd42faa2b9 Description: C++ wrapper for the GLib toolkit (shared libraries) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 87d5a10c4444939b2982878ee5b90405 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libglibmm-2.4-dbg Priority: extra Section: libdevel Installed-Size: 12762 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: amd64 Source: glibmm2.4 Version: 2.39.93-0ubuntu1 Depends: libglibmm-2.4-1c2a (= 2.39.93-0ubuntu1) Filename: pool/main/g/glibmm2.4/libglibmm-2.4-dbg_2.39.93-0ubuntu1_amd64.deb Size: 2769408 MD5sum: a3ab2bd2a3262a7b09562c684b27a052 SHA1: b8922feee41fcdd06c5d9c2cd0d66ef9e2570b0c SHA256: f0f0bf7add182b621a3b9e210ee9f286956aec07a63843009e65a9dde9421a5f Description: C++ wrapper for the GLib toolkit (debug symbols) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 04d73beb338e22969273f09d2dc94f81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglibmm-2.4-dev Priority: optional Section: libdevel Installed-Size: 7080 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: amd64 Source: glibmm2.4 Version: 2.39.93-0ubuntu1 Depends: libglibmm-2.4-1c2a (= 2.39.93-0ubuntu1), libglib2.0-dev (>= 2.39.4), libsigc++-2.0-dev (>= 2.2.10), pkg-config Suggests: libglibmm-2.4-doc, libgtkmm-3.0-dev Filename: pool/main/g/glibmm2.4/libglibmm-2.4-dev_2.39.93-0ubuntu1_amd64.deb Size: 764178 MD5sum: 9afb365ec52d3ee5ee39dfa347005e0c SHA1: 1b064f985d60768a7b670e14310e731707b84437 SHA256: d6519cb99d4bc9dc256512305af12867cb25eed9004ef6de011a0933e141952e Description: C++ wrapper for the GLib toolkit (development files) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: f2f4409738ae61132ca83383cf54bdfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglibmm-2.4-doc Priority: optional Section: doc Installed-Size: 32147 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: all Source: glibmm2.4 Version: 2.39.93-0ubuntu1 Depends: doc-base, lynx | www-browser Suggests: gtkmm-documentation Filename: pool/main/g/glibmm2.4/libglibmm-2.4-doc_2.39.93-0ubuntu1_all.deb Size: 4493154 MD5sum: 0a2bed3b6055fa1f9cd37ad502df75b7 SHA1: 1a43ef0dc6005961dcb46bc28522af2092907d35 SHA256: e310c5deab70c2f31b792c8a5bb04a392ec3247819de2232310e64cfb6380c81 Description: C++ wrapper for the GLib toolkit (documentation) Multi-Arch: foreign Homepage: http://www.gtkmm.org/ Description-md5: 514e1a665a2ffb9cbb3d6ff36c78ed8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglm-dev Priority: extra Section: libdevel Installed-Size: 1899 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: all Source: glm Version: 0.9.5.1-1 Filename: pool/main/g/glm/libglm-dev_0.9.5.1-1_all.deb Size: 144912 MD5sum: 02853842a922c1fb399d5cac20a47d31 SHA1: e6ca19bc535cc94224770cfb8febff48a65ff50e SHA256: 804d9755d32f82bae521080d0347b1709636ef30cc619568bc67be25e00a8a46 Description: C++ library for OpenGL GLSL type-based mathematics Multi-Arch: foreign Homepage: http://glm.g-truc.net/ Description-md5: 8481f3d0f0d4f49f42598ace739888b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglm-doc Priority: extra Section: doc Installed-Size: 9221 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: all Source: glm Version: 0.9.5.1-1 Filename: pool/main/g/glm/libglm-doc_0.9.5.1-1_all.deb Size: 1422636 MD5sum: a4d19fddb52186441dd904c55c449bc5 SHA1: 7b2b27e992d02f1b09af9f29223aee92103ab8c1 SHA256: d86edeb1d0ae05bd96b3f0b6e3147e467cf94902c969b04dd96d6508aa335e70 Description: documentation for the OpenGL Mathematics (GLM) library Homepage: http://glm.g-truc.net/ Description-md5: c61948db7a4e625b05ad24cc17500c9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglu1-mesa Priority: extra Section: libs Installed-Size: 485 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libglu Version: 9.0.0-2 Replaces: libglu1 Provides: libglu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Conflicts: libglu1, mesag3 (<< 5.0.0-1), xlibmesa3 Filename: pool/main/libg/libglu/libglu1-mesa_9.0.0-2_amd64.deb Size: 195026 MD5sum: 36e93b89947e209dfeff10db54091728 SHA1: 9168f9acb90e96d443ed86b76821ab965b001aee SHA256: 1a38ee690908f47aae61ca7e239f9540772c662f81fdcb2dfd2354a34c337866 Description: Mesa OpenGL utility library (GLU) Multi-Arch: same Description-md5: 2479dddf6e2110db8dadaf1c564ba1d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libglu1-mesa-dev Priority: optional Section: libdevel Installed-Size: 951 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libglu Version: 9.0.0-2 Replaces: libglu-dev Provides: libglu-dev, xlibmesa-glu-dev Depends: libglu1-mesa (= 9.0.0-2), libgl1-mesa-dev | libgl-dev Conflicts: mesa-glide2-dev (<< 5.0.0-1), mesag-dev (<< 5.0.0-1), mesag3+ggi-dev (<< 5.0.0-1), xlibmesa-dev Filename: pool/main/libg/libglu/libglu1-mesa-dev_9.0.0-2_amd64.deb Size: 269502 MD5sum: 3bf302bae336a6cccbcd3a02868024d0 SHA1: 9e30eb5fbd6124d92f8990d716a2cf595353a1c8 SHA256: 025a4119fa8153e05b99b82b94e2b7604c098c18a80d083ddcb2d2afa82d888c Description: Mesa OpenGL utility library -- development files Description-md5: d97a0f3667fdda94fa2fd42dea41e5c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libgmime-2.6-0 Priority: optional Section: libs Installed-Size: 499 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: amd64 Source: gmime Version: 2.6.20-0ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.31.8), libgpgme11 (>= 1.2.0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/g/gmime/libgmime-2.6-0_2.6.20-0ubuntu1_amd64.deb Size: 142220 MD5sum: 68fbe01116442a7a2c6b0e72131a122a SHA1: 6866538a110bf9073bdbaf88e057dd556a218052 SHA256: be93056e30276b719e0fe43f82574b84d04611c37700d56ef0e64cdfc6eb08c8 Description: MIME message parser and creator library - runtime Multi-Arch: same Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: e8d929444d5769f228cc01ac215a5e18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgmime-2.6-0-dbg Priority: extra Section: debug Installed-Size: 568 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: amd64 Source: gmime Version: 2.6.20-0ubuntu1 Depends: libgmime-2.6-0 (= 2.6.20-0ubuntu1) Filename: pool/main/g/gmime/libgmime-2.6-0-dbg_2.6.20-0ubuntu1_amd64.deb Size: 431760 MD5sum: 60d0d6842f3e699a8de4c3cabc82f852 SHA1: 8dc4649e111fa960376cbace9fe4940be2a3103b SHA256: ed7e41cb763b9e3c29815fea30598201f7925552955a03a58055d161a777fff0 Description: MIME message parser and creator library - debugging symbols Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: c41a9758f4812951cc08dfc261bbc7cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmime-2.6-dev Priority: optional Section: libdevel Installed-Size: 1071 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: amd64 Source: gmime Version: 2.6.20-0ubuntu1 Depends: libgmime-2.6-0 (= 2.6.20-0ubuntu1), libc6-dev, libglib2.0-dev Filename: pool/main/g/gmime/libgmime-2.6-dev_2.6.20-0ubuntu1_amd64.deb Size: 183118 MD5sum: edc3e5de43c43a5cbfdfaab506e8fe37 SHA1: 3d0b7d73292b0568a0cc677ea7200507266694a1 SHA256: e9b68b8d6d5ff616d78cdcf1acd134f1699438462198d591391126bec6a1c98e Description: MIME message parser and creator library - development files Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: 134b2f4140ea4e87aaf0baa3bfdba513 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmime-2.6-doc Priority: optional Section: doc Installed-Size: 1560 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: all Source: gmime Version: 2.6.20-0ubuntu1 Filename: pool/main/g/gmime/libgmime-2.6-doc_2.6.20-0ubuntu1_all.deb Size: 152160 MD5sum: a1a150cede1f3965d672b27902586cd0 SHA1: ee44c5e384167693683ee4efafb5e2d2d5da38c1 SHA256: 16f76c07a3acb1bd074b23478a1d9f0032ccf4474613f9f560f5e79d9a34e03b Description: MIME message parser and creator library - documentation Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: 22a37969f19bd66d18dc07c3c13a5719 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmime2.6-cil Priority: optional Section: cli-mono Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: all Source: gmime Version: 2.6.20-0ubuntu1 Depends: cli-common (>= 0.5.1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgmime-2.6-0 (>= 2.6.0), libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/g/gmime/libgmime2.6-cil_2.6.20-0ubuntu1_all.deb Size: 32462 MD5sum: 11b165756ae9c8412194ad3fbfb26caf SHA1: 187959e303f71abdbe21128d9f017f4788f533f0 SHA256: 6ad975b9c71b1b585fdb9895b676595c422788a5fbe840cff348e78fd452e1e8 Description: CLI binding for the GMime library Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: 46d117a645ac6c61fdfc10daa6ab7340 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libgmime2.6-cil-dev Priority: optional Section: cli-mono Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: all Source: gmime Version: 2.6.20-0ubuntu1 Depends: libgmime2.6-cil (= 2.6.20-0ubuntu1) Filename: pool/main/g/gmime/libgmime2.6-cil-dev_2.6.20-0ubuntu1_all.deb Size: 2550 MD5sum: 78ce7e92551eb8bb1e5234afe7bca6f2 SHA1: e5cf2d938f736eb42d4baee3d3770da8c46b14ce SHA256: 9671a4d1835d0a142b6a96270bfff6e01db15c670c96d058faaae5a73a43e146 Description: CLI binding for the GMime library Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: 39572f6ff523bc101a2b68250b253900 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmp-dev Priority: optional Section: libdevel Installed-Size: 1559 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: gmp Version: 2:5.1.3+dfsg-1ubuntu1 Replaces: libgmp10-dev, libgmp3-dev Provides: libgmp10-dev Depends: libgmp10 (= 2:5.1.3+dfsg-1ubuntu1), libgmpxx4ldbl (= 2:5.1.3+dfsg-1ubuntu1) Recommends: libstdc++-4.8-dev | libstdc++-dev Suggests: libgmp10-doc, libmpfr-dev Conflicts: libgmp10-dev, libgmp3-dev (<< 5.0.1) Breaks: guile-1.8-dev (<< 1.8.8+1-1), libcdd-dev (<< 094b.dfsg-4.2), libcln-dev (<< 1.3.2-1.1), libmpc-dev (<< 0.9-3), libmpfr-dev (<< 3.0.1-5), librep-dev (<< 0.90.2-1.3), regina-normal-dev (<< 4.6-3) Filename: pool/main/g/gmp/libgmp-dev_5.1.3+dfsg-1ubuntu1_amd64.deb Size: 291644 MD5sum: 4a6d83e3e2a350891c3341d1eebeec7c SHA1: ac81b1cdb2634726bd866a9c851521d010eb9621 SHA256: c7154a69c14581bf12de1b1792fa892550a6ddd25034a3174debdbd57d83d550 Description: Multiprecision arithmetic library developers tools Multi-Arch: same Homepage: http://gmplib.org/ Description-md5: db56254d94fec9ce85e93ebf60b032a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmp10 Priority: optional Section: libs Installed-Size: 511 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: gmp Version: 2:5.1.3+dfsg-1ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/g/gmp/libgmp10_5.1.3+dfsg-1ubuntu1_amd64.deb Size: 218280 MD5sum: 5a25bb81aa2e0ca83e2d349d58b435d5 SHA1: 4c8baba6fb6eaa8b6814d4673c3016ebd50c29dd SHA256: 03084f0a06e1b8f079556e7b3d9c6c8a9521cfe5d9235002ce5670a13c59d79a Description: Multiprecision arithmetic library Multi-Arch: same Homepage: http://gmplib.org/ Description-md5: cf6b3a218331a8f680398794acac47a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgmp10-doc Priority: optional Section: doc Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: all Source: gmp Version: 2:5.1.3+dfsg-1ubuntu1 Filename: pool/main/g/gmp/libgmp10-doc_5.1.3+dfsg-1ubuntu1_all.deb Size: 161236 MD5sum: c4284ca8ecc291d97a59a49833d6b914 SHA1: 413ff2df5baca33745246240329f2654da548581 SHA256: ccc8b5286806a163232cb697dcce6de4c1c2fbff96978b9f902c66fe3d0c7224 Description: Multiprecision arithmetic library example code Homepage: http://gmplib.org/ Description-md5: 02df6801faa05ef8fa25146b14042cf3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmp3-dev Priority: optional Section: libdevel Installed-Size: 38 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: gmp Version: 2:5.1.3+dfsg-1ubuntu1 Replaces: libgmp10-dev Depends: libgmp-dev (= 2:5.1.3+dfsg-1ubuntu1) Conflicts: libgmp10-dev (<< 2:5.0.1+dfsg-7) Filename: pool/main/g/gmp/libgmp3-dev_5.1.3+dfsg-1ubuntu1_amd64.deb Size: 1866 MD5sum: 926ea18dc9c66bfba32779df0c837844 SHA1: 112b05e707cac4fc9d75f6d82490eed213c05796 SHA256: 92a4cde7f683877c974dcfeb2392506a0ef52afabeb3d05521745b1640f7d63e Description: Multiprecision arithmetic library developers tools Homepage: http://gmplib.org/ Description-md5: 782dc7b458f3c5dbb9f4f83f367d6fef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmpxx4ldbl Priority: optional Section: libs Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: gmp Version: 2:5.1.3+dfsg-1ubuntu1 Replaces: libgmp3 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libgmp10, libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Conflicts: libgmp3, libgmpxx4 Filename: pool/main/g/gmp/libgmpxx4ldbl_5.1.3+dfsg-1ubuntu1_amd64.deb Size: 8736 MD5sum: 919189045b270b4e8cb1de6e327c1e22 SHA1: bfc629e10b45698d806968115993a778bcee41ed SHA256: 47432bd9cdd9e0084431313e361cd65e4258be3a3c30c017dcdac1461e61ce2c Description: Multiprecision arithmetic library (C++ bindings) Multi-Arch: same Homepage: http://gmplib.org/ Description-md5: 0066a3c29cda07ddd72dc17f19d92017 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-bluetooth-dev Priority: extra Section: libdevel Installed-Size: 537 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-bluetooth Version: 3.8.2.1-0ubuntu4 Depends: libgnome-bluetooth11 (= 3.8.2.1-0ubuntu4), gir1.2-gnomebluetooth-1.0 (= 3.8.2.1-0ubuntu4), libgtk-3-dev, libglib2.0-dev Suggests: pkg-config Filename: pool/main/g/gnome-bluetooth/libgnome-bluetooth-dev_3.8.2.1-0ubuntu4_amd64.deb Size: 28884 MD5sum: b043af2fe41076bdc7468ac68effc08b SHA1: 195bac3e1428cb1936b148c861e73e241dee9b00 SHA256: 757363e78e26441a1d083a48c36cdf7c85f639bfd22f9474772ffd8d5a65f98f Description: GNOME Bluetooth tools - support library development files Homepage: https://wiki.gnome.org/GnomeBluetooth Description-md5: d4a23fcbf8644791fc9f3efc1e86671d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-bluetooth11 Priority: optional Section: libs Installed-Size: 390 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-bluetooth Version: 3.8.2.1-0ubuntu4 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0) Filename: pool/main/g/gnome-bluetooth/libgnome-bluetooth11_3.8.2.1-0ubuntu4_amd64.deb Size: 56926 MD5sum: a3907f2b5441b27e27f4c082d51d44e6 SHA1: 71fbc0c6fee45396137cccb8cee3c656d6a09c83 SHA256: 6af4280aabaf0814fdaaab7f9dfe37a1c969dbda63dfcf20ef4a4e8f20d9dc2e Description: GNOME Bluetooth tools - support library Homepage: https://wiki.gnome.org/GnomeBluetooth Description-md5: db93bef1e8554f50b96803fc7eb52b75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgnome-control-center-dev Priority: optional Section: libdevel Installed-Size: 1536 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-control-center Version: 1:3.6.3-0ubuntu56 Depends: libgnome-control-center1 (= 1:3.6.3-0ubuntu56) Filename: pool/main/g/gnome-control-center/libgnome-control-center-dev_3.6.3-0ubuntu56_amd64.deb Size: 4064 MD5sum: 48f9efddd91b3e318891848a0dd3a2e3 SHA1: ce90d74f7496accff45871e427aeced7d44f3bc3 SHA256: 4466974d71068c06d5ecf9e41f9f96ef2cd07664776cf8acb5d13cfa76d2415b Description: utilities to configure the GNOME desktop Description-md5: d94b8cc23eade4594fdcf9cbed49b9fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-control-center1 Priority: optional Section: libs Installed-Size: 1537 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-control-center Version: 1:3.6.3-0ubuntu56 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.14), libpango-1.0-0 (>= 1.14.0) Filename: pool/main/g/gnome-control-center/libgnome-control-center1_3.6.3-0ubuntu56_amd64.deb Size: 80512 MD5sum: 108a6014c72ba3c876e13e30e20e7ce4 SHA1: 064a0c83e00145bbae0271f9cd174b6c3002de88 SHA256: 85ec7d4e01f3316a1d90d6bcb1a87324b95c4a851a81032337b47d40de297a2d Description: utilities to configure the GNOME desktop Description-md5: d35b85c0b8b73f7bf4cf19c7aa215660 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgnome-desktop-3-7 Priority: optional Section: libs Installed-Size: 391 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-desktop3 Version: 3.8.4-0ubuntu3 Replaces: libgnome-desktop-3-2 (<< 3.5.2), libgnome-desktop-3-4 (<< 3.7.90) Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.6), libx11-6, libxext6, libxkbfile1, libxrandr2 (>= 2:1.2.99.3), gsettings-desktop-schemas (>= 3.5.91), gnome-desktop3-data (>= 3.8.4-0ubuntu3) Recommends: hwdata (>= 0.227-1) Filename: pool/main/g/gnome-desktop3/libgnome-desktop-3-7_3.8.4-0ubuntu3_amd64.deb Size: 103932 MD5sum: 8cc6cfa266c781af237db3826f976ba2 SHA1: 952040c5ce7949560d0e6529fac0220a8e078418 SHA256: b873d3f036207e30e7a449406c3b2cb9c0089cd9faf4ab25b819e8afd8ea746a Description: Utility library for loading .desktop files - runtime files Description-md5: 9612c39f0e5a5b66bbc4c91706766770 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgnome-desktop-3-dev Priority: optional Section: libdevel Installed-Size: 768 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-desktop3 Version: 3.8.4-0ubuntu3 Depends: libgnome-desktop-3-7 (= 3.8.4-0ubuntu3), gir1.2-gnomedesktop-3.0 (= 3.8.4-0ubuntu3), libgtk-3-dev (>= 3.3.6), gsettings-desktop-schemas-dev, libxkbfile-dev Filename: pool/main/g/gnome-desktop3/libgnome-desktop-3-dev_3.8.4-0ubuntu3_amd64.deb Size: 46686 MD5sum: 58054958fec7aa499cf49c4fae2d1d57 SHA1: c8af898fddac05ae6059999204ce0bfa19342ab0 SHA256: eea234b2ce8be3118fc856d685f6164e8810eebde9ad67fac667b444fb7bea6c Description: Utility library for loading .desktop files - development files Description-md5: 56a8ba33b1e9ed69ca462c02df34810e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-keyring-common Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnome-keyring Version: 3.8.0-2 Replaces: libgnome-keyring0 (<< 3.2.0-4) Breaks: libgnome-keyring0 (<< 3.2.0-4) Filename: pool/main/libg/libgnome-keyring/libgnome-keyring-common_3.8.0-2_all.deb Size: 5536 MD5sum: 5e903e2b2d427bb8c2e4794dc57b103e SHA1: 3bf462bb9204fd458b90486c639598d7e77a27fe SHA256: 30371612dfe17d9184c8b1b23deaee9cbbc298af120374b3df33e3205fcb8899 Description: GNOME keyring services library - data files Multi-Arch: foreign Homepage: http://live.gnome.org/GnomeKeyring Description-md5: a99a0b0c07fa51601e613d5f4c2ff6bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgnome-keyring-dev Priority: optional Section: libdevel Installed-Size: 884 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnome-keyring Version: 3.8.0-2 Depends: libgnome-keyring0 (= 3.8.0-2), gir1.2-gnomekeyring-1.0 (= 3.8.0-2), libglib2.0-dev (>= 2.16) Filename: pool/main/libg/libgnome-keyring/libgnome-keyring-dev_3.8.0-2_amd64.deb Size: 45318 MD5sum: a86dd8be3c09d04327aa582b47757ad6 SHA1: af8499cd793e17bc002aad88688f2077048c3551 SHA256: 157bc350024d3760f92008f32f10e5630e02d767398b3348a1959230b8dfc7b8 Description: Development files for GNOME keyring service Homepage: http://live.gnome.org/GnomeKeyring Description-md5: 06811260d9185f752b2b103b554445c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-keyring0 Priority: optional Section: libs Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnome-keyring Version: 3.8.0-2 Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.1.1), libgcrypt11 (>= 1.4.5), libglib2.0-0 (>= 2.31.8), libgnome-keyring-common (= 3.8.0-2) Pre-Depends: multiarch-support Suggests: gnome-keyring Breaks: gnome-keyring (<< 3.0) Filename: pool/main/libg/libgnome-keyring/libgnome-keyring0_3.8.0-2_amd64.deb Size: 55350 MD5sum: ffbd1c63d692e29f8926aadbb547420c SHA1: a10f57813bd553197e1496051b54bebb0c64c174 SHA256: e64be847b03a56c78da47878ec65ba44d35596e5e1deb36815e4a1e43b12610c Description: GNOME keyring services library Multi-Arch: same Homepage: http://live.gnome.org/GnomeKeyring Description-md5: f150a94bdcf9084181d7bf821cee44e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgnome-keyring0-dbg Priority: optional Section: debug Installed-Size: 251 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnome-keyring Version: 3.8.0-2 Depends: libgnome-keyring0 (= 3.8.0-2) Filename: pool/main/libg/libgnome-keyring/libgnome-keyring0-dbg_3.8.0-2_amd64.deb Size: 147336 MD5sum: a96bccc1cf6e54ada2b96be330fee61a SHA1: 9a4e8d3f57f189142a276d85675fa96fe4ebd06b SHA256: 6d3d8506fa40c0498c57c5a22205310910ca83b0eb7a27b4843dcc0ce3830c01 Description: GNOME keyring services library (debugging symbols) Multi-Arch: same Homepage: http://live.gnome.org/GnomeKeyring Description-md5: 9adb41e9aa1b463b9d6adb692fe855ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-menu-3-0 Priority: optional Section: gnome Installed-Size: 204 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-menus Version: 3.10.1-0ubuntu2 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3) Filename: pool/main/g/gnome-menus/libgnome-menu-3-0_3.10.1-0ubuntu2_amd64.deb Size: 54448 MD5sum: a681fd127e8fe209b51d58964dfe02d8 SHA1: 386bef83c21943a7df011356b88b791f9e96d4ee SHA256: 9dfdabf240178ea7e0ebdb2633702becb78163023be810b7a128ebe7615afd0d Description: GNOME implementation of the freedesktop menu specification Description-md5: c6885fb9ed6a22440597626b04ff66f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgnome-menu-3-0-dbg Priority: extra Section: debug Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-menus Version: 3.10.1-0ubuntu2 Depends: libgnome-menu-3-0 (= 3.10.1-0ubuntu2) Filename: pool/main/g/gnome-menus/libgnome-menu-3-0-dbg_3.10.1-0ubuntu2_amd64.deb Size: 119308 MD5sum: b748b7cb216dd4360685ad95bf102a68 SHA1: 6390761c935c5e2cf3114246e0ad2a6a6eb719d9 SHA256: 59ffea7d9fd923620f11386fb685c37074c47b504082f79c56e7735d4ccfaa2e Description: GNOME implementation of the freedesktop menu specification Description-md5: e740dca2bd062f452e75ce5752f1637f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-menu-3-dev Priority: optional Section: libdevel Installed-Size: 347 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-menus Version: 3.10.1-0ubuntu2 Replaces: gir-repository-dev (<< 0.6.5-6) Depends: libgnome-menu-3-0 (= 3.10.1-0ubuntu2), gir1.2-gmenu-3.0 (= 3.10.1-0ubuntu2), libglib2.0-dev (>= 2.30.0) Filename: pool/main/g/gnome-menus/libgnome-menu-3-dev_3.10.1-0ubuntu2_amd64.deb Size: 49566 MD5sum: 4c4309cd4a5f5843a78f69d8643f077d SHA1: dc12d924585ebe6c204711a6be388f1b081c4bae SHA256: e6f8df1fa727808df23d95aeab9277115abfca359cd45f1ddfddc249de11f1ef Description: GNOME implementation of the freedesktop menu specification Description-md5: afd73c86a97aafa140ad96e55a77e8f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-vfs2.0-cil Priority: optional Section: libs Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: gtk-sharp2-gapi (<< 2.10.0-1), libgnome-vfs2.24-cil, libgnome2.0-cil (<< 2.16.0-4) Depends: cli-common (>= 0.5.1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgnomevfs2-0 (>= 1:2.17.90), libmono-corlib4.0-cil (>= 2.10.1) Suggests: monodoc-gtk2.0-manual Conflicts: libgnome-vfs2.24-cil Filename: pool/main/g/gnome-sharp2/libgnome-vfs2.0-cil_2.24.2-3_all.deb Size: 53594 MD5sum: 85f764dac180bec7314e973670bcce8f SHA1: b2f13c9ad375c219d97bb74752cb7e1b447f0707 SHA256: 8976d2d9664b86ec17d1d1e4bd9bdef4fdfeb85d1686f2a4982b9c6fb2de1203 Description: CLI binding for GnomeVFS 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 12c2df85a884a0b47b38950078f94601 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-vfs2.0-cil-dev Priority: optional Section: libs Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: libgnome-vfs2.0-cil (<< 2.24.1-5), libgnome-vfs2.24-cil Depends: libgnome-vfs2.0-cil (= 2.24.2-3) Filename: pool/main/g/gnome-sharp2/libgnome-vfs2.0-cil-dev_2.24.2-3_all.deb Size: 17354 MD5sum: 252e086ed381d633bc35f7e09429f654 SHA1: 426177da21e16135957a0cd7e98a8373b85f9354 SHA256: 370aa8af5f3dcd16ed37a41f317ff4711c14400d3a8a7df9eb1c1cb0dd47ab78 Description: CLI binding for GnomeVFS 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: f4c6545bd564cea43ef56c0b7e0d36c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome2-0 Priority: optional Section: libs Installed-Size: 603 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libgnome Version: 2.32.1-4ubuntu1 Depends: gconf-service, libbonobo2-0 (>= 2.32.1-0ubuntu1.1), libc6 (>= 2.14), libcanberra0 (>= 0.2), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.35.9), libgnomevfs2-0 (>= 1:2.17.90), liborbit-2-0 (>= 1:2.14.10), libpopt0 (>= 1.14), libgnome2-common (>= 2.32), libgnome2-common (<< 2.33), libgnome2-bin Pre-Depends: multiarch-support Recommends: gvfs Filename: pool/main/libg/libgnome/libgnome2-0_2.32.1-4ubuntu1_amd64.deb Size: 43200 MD5sum: 6ceee4c9849521fdc2c850e21fb3a085 SHA1: 00316b540328c85a55c7163991bc6b625e7fb88b SHA256: 48af2c56a43000b9fbe0184cbf22b662f0e18c210d10e95e1aded083bce977f8 Description: The GNOME library - runtime files Multi-Arch: same Description-md5: 97cf103f7a4db485fa237d4d1267d5af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libgnome2-bin Priority: optional Section: libs Installed-Size: 466 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libgnome Version: 2.32.1-4ubuntu1 Replaces: libgnome2-0 (<= 2.32.1-2ubuntu1) Depends: libc6 (>= 2.3.4), libglib2.0-0 (>= 2.18.0), libgnome2-0 (>= 2.17.3) Filename: pool/main/libg/libgnome/libgnome2-bin_2.32.1-4ubuntu1_amd64.deb Size: 15030 MD5sum: 6cf8084c6ac437cc74b9253518ffbf5f SHA1: fbef1561d5c96927349ca26e32ef13b0ebd5c969 SHA256: 372ecd12ad2a2e473e166f05c8c44999eaefdd18e6395032067f4bedb39742f0 Description: The GNOME library - binary files Multi-Arch: foreign Description-md5: d5eb422e84c2d9adfc0eee3b383dee8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libgnome2-common Priority: optional Section: libs Installed-Size: 672 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: libgnome Version: 2.32.1-4ubuntu1 Depends: gconf2 (>= 2.28.1-2) Suggests: desktop-base (>= 0.3.16) Breaks: gnome-panel (<< 2.28) Filename: pool/main/libg/libgnome/libgnome2-common_2.32.1-4ubuntu1_all.deb Size: 33342 MD5sum: c7d1e13f3eb120ce33cb9345c2087fa6 SHA1: 4902b118f5ddb5977a281e1a90c1901d6dff505c SHA256: 06778bcc79f088482a8369ad27ad0c399140b6d900f834b42af4b61dd696e083 Description: The GNOME library - common files Multi-Arch: foreign Description-md5: ba1f1700e3ae67d6d4fcf81148b9503e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libgnome2-dbg Priority: extra Section: libdevel Installed-Size: 806 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libgnome Version: 2.32.1-4ubuntu1 Depends: libgnome2-0 (= 2.32.1-4ubuntu1) Filename: pool/main/libg/libgnome/libgnome2-dbg_2.32.1-4ubuntu1_amd64.deb Size: 95932 MD5sum: 6000d31675009740eca94178f16b8871 SHA1: 4e3c52e150ef3a22aecaf0f5db63b13031caa195 SHA256: 2407769c8fc9e429bfc25a027930abd24d50a01459484d87f538f96426585d0e Description: The GNOME library - debugging symbols Description-md5: 3b76765629e0dcb7d40522c9f6df0465 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome2-dev Priority: optional Section: libdevel Installed-Size: 669 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libgnome Version: 2.32.1-4ubuntu1 Depends: libgnome2-0 (= 2.32.1-4ubuntu1), libglib2.0-dev, libbonobo2-dev, liborbit2-dev, libgconf2-dev, libgnomevfs2-dev, libcanberra-dev, libpopt-dev Suggests: libgnome2-doc Filename: pool/main/libg/libgnome/libgnome2-dev_2.32.1-4ubuntu1_amd64.deb Size: 44750 MD5sum: 1e37fe8f7e2123e12f74800a25e4a3a6 SHA1: 6f70c992fbb76d0b3fd2b0fcd1b8bc42f6d0d1f9 SHA256: ea36cb8c2b2939d971b091598d99e2a3a40380225c4292b39ce91b91bccd6461 Description: The GNOME library - development files Multi-Arch: same Description-md5: 4ae3cc6272ad8d25682d5eae91fd71ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome2-doc Priority: optional Section: doc Installed-Size: 873 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: libgnome Version: 2.32.1-4ubuntu1 Suggests: devhelp Filename: pool/main/libg/libgnome/libgnome2-doc_2.32.1-4ubuntu1_all.deb Size: 46400 MD5sum: 62ac395c36ec22dadd168a045efa6d8d SHA1: b69c69532d3e35b043033241558322b634c91538 SHA256: 44f748e3937f1d6e3c8992365cfd46a0af57037da3a8b0512e132f23b55db22d Description: The GNOME library - documentation files Description-md5: 3598ba27d8b1d9488e310498a70e31f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome2.0-cil-dev Priority: optional Section: libs Installed-Size: 279 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: amd64 Source: gnome-sharp2 Version: 2.24.2-3 Replaces: libgnome2.0-cil, libgnome2.24-cil (<< 2.24.1-5) Depends: libart2.0-cil-dev (= 2.24.2-3), libgnome-vfs2.0-cil-dev (= 2.24.2-3), libgnome2.24-cil (= 2.24.2-3), libgtk2.0-cil-dev Filename: pool/main/g/gnome-sharp2/libgnome2.0-cil-dev_2.24.2-3_amd64.deb Size: 26526 MD5sum: a2c3c5ded3fbca0e31f8251aeb302a08 SHA1: edcb41e0b800726adacfcacf94f1bb3e12cd45d9 SHA256: a3feeeee22c555d6d6f20d45b027041276d8218c57136ab58761a0c19eef168d Description: CLI binding for GNOME 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 5a50dbc1145299a604d294e871395cce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome2.24-cil Priority: optional Section: libs Installed-Size: 337 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: amd64 Source: gnome-sharp2 Version: 2.24.2-3 Replaces: gtk-sharp2-gapi (<< 2.10.0-1), libgconf2.0-cil (<< 2.16.1), libgnome2.0-cil Depends: libart2.0-cil (= 2.24.2-3), libgconf2.0-cil (= 2.24.2-3), libgnome-vfs2.0-cil (= 2.24.2-3), cli-common (>= 0.5.1), libglade2.0-cil (>= 2.12.10-1ubuntu1), libglib2.0-0 (>= 2.36.0), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgnome2-0 (>= 2.17.3), libgnomecanvas2-0 (>= 2.11.1), libgnomeui-0 (>= 2.22.0), libgtk2.0-0 (>= 2.24.0), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1), libc6 (>= 2.2.5) Suggests: monodoc-gtk2.0-manual Filename: pool/main/g/gnome-sharp2/libgnome2.24-cil_2.24.2-3_amd64.deb Size: 99478 MD5sum: 18d1a60c8d713b9a34934fd2dafb9cdf SHA1: 9af8fb8078e4fa142a5bc60c325133300636e976 SHA256: b0b86c0a968f4fa7c9fac43b92c539a880d0f8a5bb4c018411aaf9fdb1326f87 Description: CLI binding for GNOME 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 2261446b092e871d9e6c2b254be790ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomecanvas2-0 Priority: optional Section: libs Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnomecanvas Version: 2.30.3-2 Depends: libart-2.0-2 (>= 2.3.19), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libgail18 (>= 1.18.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglade2-0 (>= 1:2.6.4-2~), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.8.17), libpango-1.0-0 (>= 1.14.0), libpangoft2-1.0-0 (>= 1.14.0), libgnomecanvas2-common (= 2.30.3-2) Pre-Depends: multiarch-support Filename: pool/main/libg/libgnomecanvas/libgnomecanvas2-0_2.30.3-2_amd64.deb Size: 82720 MD5sum: 68d277ecf8227f2e6cc2b0d4f1eecdf4 SHA1: 0cfaae9a1a91120a55849b3f22f0e16cb88a3205 SHA256: 50f129b9feaebf54e7fa778b389b4c41704b37dbb61c02255ccc01522bfe7244 Description: powerful object-oriented display engine - runtime files Multi-Arch: same Description-md5: c2991c3ab3a90b3887e2afdd8cf49121 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography, ubuntustudio-audio Package: libgnomecanvas2-common Priority: optional Section: x11 Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnomecanvas Version: 2.30.3-2 Filename: pool/main/libg/libgnomecanvas/libgnomecanvas2-common_2.30.3-2_all.deb Size: 9080 MD5sum: 0ec4beacdf791d276bde42a52fe77674 SHA1: 5a8b7e5323a8976a62b2d24a3a11dc163dfc03ab SHA256: 393d90f4e26bff37f0ba3e9b3629f164da876731f61b0b6e61b7ea96e7201075 Description: powerful object-oriented display engine - common files Multi-Arch: foreign Description-md5: cccfbd722cc06a1517ee663b1c9e3c13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography, ubuntustudio-audio Package: libgnomecanvas2-dbg Priority: extra Section: debug Installed-Size: 949 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnomecanvas Version: 2.30.3-2 Depends: libgnomecanvas2-0 (= 2.30.3-2) Filename: pool/main/libg/libgnomecanvas/libgnomecanvas2-dbg_2.30.3-2_amd64.deb Size: 213800 MD5sum: 62df1f3f7608458639fe17ff16cb792a SHA1: 37d6fb3ec40b6a57775ee3608ea7d52d67f31973 SHA256: 7947806ddadef72b70729ef2ea002f965205a0afd5ad1d2adc4469b1ddcce7f9 Description: powerful object-oriented display engine - debugging symbols Description-md5: 9d15b98f1afeb86b49ebaabaea2d02af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomecanvas2-dev Priority: optional Section: libdevel Installed-Size: 559 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnomecanvas Version: 2.30.3-2 Depends: libgnomecanvas2-0 (= 2.30.3-2), libart-2.0-dev (>= 2.3.16), libgtk2.0-dev (>= 2.8.17), libgail-dev (>= 1.9.0) Suggests: libgnomecanvas2-doc Filename: pool/main/libg/libgnomecanvas/libgnomecanvas2-dev_2.30.3-2_amd64.deb Size: 94696 MD5sum: d50b152b7eb921deb5bd1f4deca7d7c4 SHA1: 56b3c3c6d47c62977857c52f2c2c8627e191a14f SHA256: 78ddf45bd0d389588c53f8148b49bf1a59b85447d36484feea3bbfb664965461 Description: powerful object-oriented display engine - development files Multi-Arch: same Description-md5: 882668dc99aed65213a3671b39452e66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomecanvas2-doc Priority: optional Section: doc Installed-Size: 501 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnomecanvas Version: 2.30.3-2 Filename: pool/main/libg/libgnomecanvas/libgnomecanvas2-doc_2.30.3-2_all.deb Size: 42946 MD5sum: fbd37daa0812d56e97fe01bd8157f60d SHA1: f62653b49f4cc982e20f8b4c79c487178f34393d SHA256: b8ade5efc02d2a7b9f670c6381825d5a6d46ccafcfcf4ea65ea370b0479b8ae3 Description: powerful object-oriented display engine - documentation files Description-md5: 83c9ac6e16e2d71b826d912f8a1aeddc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomekbd-common Priority: optional Section: libs Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnomekbd Version: 3.6.0-0ubuntu2 Replaces: gkbd-capplet (<= 2.91.2-1) Depends: dconf-gsettings-backend | gsettings-backend Breaks: gkbd-capplet (<= 2.91.2-1) Filename: pool/main/libg/libgnomekbd/libgnomekbd-common_3.6.0-0ubuntu2_all.deb Size: 8064 MD5sum: 4a2a50b09572a791734ce131d075d0dd SHA1: 3fe1340e95d87680a8a11c16f5119eeb57e2d84f SHA256: affa02dcf875caed8c6a9993af5bceba26fbbf7946bd91298c88e9d04522be44 Description: GNOME library to manage keyboard configuration - common files Description-md5: 5975fb27dd14bb43c79c9935c681f328 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgnomekbd-dev Priority: optional Section: libdevel Installed-Size: 322 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnomekbd Version: 3.6.0-0ubuntu2 Depends: libgnomekbd8 (= 3.6.0-0ubuntu2), gir1.2-gkbd-3.0 (= 3.6.0-0ubuntu2), libglib2.0-dev (>= 2.26), libgtk-3-dev (>= 3.0.0), libxklavier-dev (>= 5.2), libx11-dev Filename: pool/main/libg/libgnomekbd/libgnomekbd-dev_3.6.0-0ubuntu2_amd64.deb Size: 48306 MD5sum: af258816fc02a781eee0827d04221037 SHA1: fb164a1a020ef6136bfd035e45afdaaaee31125b SHA256: 85a9fe45d68f37a04971b6105b397df2a506b2a809170cfbb1e91af0b29c5b7e Description: GNOME library to manage keyboard configuration - development files Description-md5: 353cd231a62082c6784b7cd9c5727a8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomekbd8 Priority: optional Section: libs Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnomekbd Version: 3.6.0-0ubuntu2 Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.26.0), libgtk-3-0 (>= 3.0.0), libpango1.0-0 (>= 1.22.0), libx11-6, libxklavier16 (>= 5.0), libgnomekbd-common (>= 3.6.0-0ubuntu2), iso-codes Filename: pool/main/libg/libgnomekbd/libgnomekbd8_3.6.0-0ubuntu2_amd64.deb Size: 43806 MD5sum: 1b79270a147402f83d6bd858f1d62661 SHA1: 0d70c0241599d34c14a979f916540066c6282b16 SHA256: d1cde61d158bbfd26c2b5e67ca977be06fbd1c96b3bc31376ad07484ac08cb57 Description: GNOME library to manage keyboard configuration - shared library Description-md5: af3a5d9e866a2d8042968d3f6510a8a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgnomeui-0 Priority: optional Section: libs Installed-Size: 816 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnomeui Version: 2.24.5-3 Depends: gconf-service, libart-2.0-2 (>= 2.3.17), libatk1.0-0 (>= 1.12.4), libbonoboui2-0 (>= 2.15.1), libc6 (>= 2.14), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglade2-0 (>= 1:2.6.4-2~), libglib2.0-0 (>= 2.37.3), libgnome-keyring0 (>= 2.20.3), libgnome2-0 (>= 2.17.3), libgnomecanvas2-0 (>= 2.11.1), libgnomevfs2-0 (>= 1:2.17.90), libgtk2.0-0 (>= 2.14), libice6 (>= 1:1.0.0), libpango-1.0-0 (>= 1.17.5), libsm6, libgnomeui-common (= 2.24.5-3) Pre-Depends: multiarch-support Suggests: gnome-icon-theme Filename: pool/main/libg/libgnomeui/libgnomeui-0_2.24.5-3_amd64.deb Size: 203418 MD5sum: f344dde33e7b512554367dd4f89c42a2 SHA1: c54ef0c4f78346a83cc1496706aab5055faff7e1 SHA256: 9f1f4bdb0add338878cf4dad4e4147f4a73f9f14542595060c9fa9dc77196981 Description: GNOME user interface library - runtime files Multi-Arch: same Description-md5: cb811d94f3ad018439e5b2b11c176655 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: libgnomeui-0-dbg Priority: extra Section: libdevel Installed-Size: 2425 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnomeui Version: 2.24.5-3 Depends: libgnomeui-0 (= 2.24.5-3) Filename: pool/main/libg/libgnomeui/libgnomeui-0-dbg_2.24.5-3_amd64.deb Size: 554096 MD5sum: 22dddb378b3d298640d68dcd2d41f860 SHA1: 1e3e3c5051d9c5165552f2ffa267cc6c239e9878 SHA256: 763a68c20f24fe63f0f28a1f10764e8f7df2123f076140d20c439d0aaec4029e Description: GNOME user interface library - debugging symbols Description-md5: 7a2d66362f4935c495f930f8e2838deb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomeui-common Priority: optional Section: libs Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnomeui Version: 2.24.5-3 Filename: pool/main/libg/libgnomeui/libgnomeui-common_2.24.5-3_all.deb Size: 16520 MD5sum: 3c62276ad60956c52d77ddd817e605e4 SHA1: d1f1dcdcf653dd91dba392494ed4e64afa19d8cd SHA256: 35df7b09a81bda7413fce1d6b893c104c8038319e5ba33e4c9fc0c3fd4e8e955 Description: GNOME user interface library - common files Multi-Arch: foreign Description-md5: 1ceb3c761cd65eec041926edeb269d20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: libgnomeui-dev Priority: optional Section: libdevel Installed-Size: 1596 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgnomeui Version: 2.24.5-3 Depends: libgnomeui-0 (= 2.24.5-3), libgnome2-dev (>= 2.13.7), libgtk2.0-dev (>= 2.12.0), libgnomecanvas2-dev (>= 2.6.0), libgnome-keyring-dev (>= 0.4), libgconf2-dev (>= 2.6.0), libbonoboui2-dev (>= 2.13.1), libgnomevfs2-dev (>= 2.8.4-2), libsm-dev, libice-dev, libpango1.0-dev (>= 1.1.2), libglib2.0-dev (>= 2.16.0) Suggests: libgnomeui-doc Filename: pool/main/libg/libgnomeui/libgnomeui-dev_2.24.5-3_amd64.deb Size: 246256 MD5sum: f647b3af05c74f6249f797d0079f3695 SHA1: 6a20e97bb19adbdf34ca49b2bf7aeca125fb2080 SHA256: d65f3e8bacf793001eb1e576b96e5ea78d7ddfcf7b479dc22387185071242b7e Description: GNOME user interface library - development files Multi-Arch: same Description-md5: 9fa85ad2ad07b12c48c9678c64f3cd00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomeui-doc Priority: optional Section: doc Installed-Size: 2513 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnomeui Version: 2.24.5-3 Filename: pool/main/libg/libgnomeui/libgnomeui-doc_2.24.5-3_all.deb Size: 204862 MD5sum: 83e31b7cd38e97e7982f8256ac781cd9 SHA1: e0a72738677c4ca755b8e5a17833b3213a98288d SHA256: 518c77ad2cd8355a31b846ed10304cf4859981327849ae4d89abb88202ad24a7 Description: GNOME user interface library - documentation files Description-md5: 656a2ead275e05111edae9a931de3276 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomevfs2-0 Priority: optional Section: libs Installed-Size: 1021 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gnome-vfs Version: 1:2.24.4-1ubuntu6 Replaces: libgnomevfs2-common (<< 1:2.24.4-1) Depends: gconf-service, libacl1 (>= 2.2.51-8), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.15), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.35.9), libgnutls26 (>= 2.12.17-0), libselinux1 (>= 1.32), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4), dbus (>= 0.90), libgnomevfs2-common (>= 1:2.24), libgnomevfs2-common (<< 1:2.25) Pre-Depends: multiarch-support Recommends: dbus-x11 Suggests: libgnomevfs2-bin, libgnomevfs2-extra, gamin | fam Conflicts: libbonobo2-0 (<< 2.15.0) Breaks: libgnomevfs2-common (<< 1:2.24.4-1) Filename: pool/main/g/gnome-vfs/libgnomevfs2-0_2.24.4-1ubuntu6_amd64.deb Size: 210102 MD5sum: 2d325d237a2d4e5ad5f3d5407624db12 SHA1: a243b85d50079ea45226d1ea2ba93e39ce326d86 SHA256: 6886b82e1bd6c92f66d90a7bdebc270959fa3f9aa00778b81150abb7e74809fa Description: GNOME Virtual File System (runtime libraries) Multi-Arch: same Description-md5: fe613be0e6a5d18afcbb8b9e615566c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libgnomevfs2-0-dbg Priority: extra Section: libs Installed-Size: 3620 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gnome-vfs Version: 1:2.24.4-1ubuntu6 Depends: libgnomevfs2-0 (= 1:2.24.4-1ubuntu6) Filename: pool/main/g/gnome-vfs/libgnomevfs2-0-dbg_2.24.4-1ubuntu6_amd64.deb Size: 829412 MD5sum: 621b1c72b56b0336d12729e6805115fa SHA1: 36c9a2d67dbd7c0e2d73464af9a37ac21efa17fa SHA256: 94171b93fb2af301324879d63f244335bfc3d3d487dc77769d9e78158140b386 Description: GNOME Virtual File System (debugging libraries) Description-md5: 33f7f857d4dff5f6f47d9e36d735a8a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomevfs2-common Priority: optional Section: devel Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gnome-vfs Version: 1:2.24.4-1ubuntu6 Depends: gconf2 (>= 2.28.1-2), shared-mime-info Suggests: gnome-mime-data Conflicts: gnome-panel (<< 2.10.0), libgnomevfs2-0 (<< 2.12.2-4), libgnomevfs2-extra (<< 1:2.16.3-6) Filename: pool/main/g/gnome-vfs/libgnomevfs2-common_2.24.4-1ubuntu6_amd64.deb Size: 22772 MD5sum: ee61a68a8e46b3edcc113c25a5bfa64c SHA1: c7ff701796a23bcd1017141b09f4842bd4cfae9c SHA256: f8359b068b881608a45df2512a7a05fa1f2dd3c0034658a24588c8d92bd498f5 Description: GNOME Virtual File System (common files) Multi-Arch: foreign Description-md5: f5eddba2d9a18e1fb027a583e5aa5c69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libgnomevfs2-dev Priority: optional Section: libdevel Installed-Size: 3298 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gnome-vfs Version: 1:2.24.4-1ubuntu6 Depends: libgnomevfs2-0 (= 1:2.24.4-1ubuntu6), libgconf2-dev (>= 2.8.0-1), libgnutls-dev, libxml2-dev, libavahi-client-dev (>= 0.6), libavahi-glib-dev (>= 0.6), libdbus-1-dev, libselinux1-dev Filename: pool/main/g/gnome-vfs/libgnomevfs2-dev_2.24.4-1ubuntu6_amd64.deb Size: 312180 MD5sum: 9a7132f4cbb0ab56166365ca067c51e4 SHA1: ccac1d590cb741f663a9b66f047612576bd21025 SHA256: e2ec222e5090d8e405522ae4b02bc06edf5127e66b8f505b40c64b60c55480f0 Description: GNOME Virtual File System library (development files) Multi-Arch: same Description-md5: 98e964831c248a766a1a7af8d13d131a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomevfs2-extra Priority: optional Section: libs Installed-Size: 566 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gnome-vfs Version: 1:2.24.4-1ubuntu6 Depends: gconf-service, libbz2-1.0, libc6 (>= 2.14), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.35.9), libgnomevfs2-0 (>= 1:2.17.90), libgssapi-krb5-2 (>= 1.10+dfsg~), libsmbclient (>= 3.0.24), libxml2 (>= 2.7.4), libgnomevfs2-common (>= 1:2.24), libgnomevfs2-common (<< 1:2.25) Conflicts: libgnomevfs2-0 (<< 1:2.16.0-1), libgnomevfs2-common (<< 2.12.2-7) Filename: pool/main/g/gnome-vfs/libgnomevfs2-extra_2.24.4-1ubuntu6_amd64.deb Size: 76520 MD5sum: a9f0a32157173270713f7517a130a37e SHA1: 13397db10a7a62c3adcc4df4b8532cab9f036130 SHA256: 0af9bcac3a030290cc07d02364c74c7f8bd4a58e58d53065135c3d589cc1dcbc Description: GNOME Virtual File System (extra modules) Multi-Arch: same Description-md5: cd20afe8f22aedf41c6d52162891c7a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: libgnuinet-java Priority: optional Section: libs Installed-Size: 3067 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.2-2build1 Filename: pool/main/libg/libgnuinet-java/libgnuinet-java_1.1.2-2build1_all.deb Size: 406068 MD5sum: e6449aa4c87b2c47c74f1357048557aa SHA1: a750e5768177d48f69761c3b6fab8903ef8d1931 SHA256: c995f682d26324d038e60048ea68632cd5873300f95c50b9138194eaf1a92159 Description: extension library to provide extra network protocol support Homepage: http://savannah.gnu.org/projects/classpath Description-md5: 7723ac8ef97820b080e1df88310c3ebc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnumail-java Priority: optional Section: libs Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.2-9ubuntu3 Depends: libgnuinet-java Suggests: libgnumail-java-doc Filename: pool/main/libg/libgnumail-java/libgnumail-java_1.1.2-9ubuntu3_all.deb Size: 272684 MD5sum: adeca3a1946017b4f552b73018153182 SHA1: cbbf69168a630b7de09c8a6d4ceb98bb62cbfc73 SHA256: fb4a366ad1e67098b3d0f6183aadeec7ceb9f9f0b55c47d952f4ad35019a6c65 Description: free implementation of the javamail API Homepage: http://savannah.gnu.org/projects/classpathx Description-md5: 628efd4791d60c5ff5e5c721f8465df4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnumail-java-doc Priority: optional Section: doc Installed-Size: 5425 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libgnumail-java Version: 1.1.2-9ubuntu3 Recommends: default-jdk-doc, libgnuinet-java Suggests: libgnumail-java Filename: pool/main/libg/libgnumail-java/libgnumail-java-doc_1.1.2-9ubuntu3_all.deb Size: 199972 MD5sum: 2dfdd2797967d27717e11416cec4df27 SHA1: 9ce390ffb453e5d5de48360129120c9435075fdb SHA256: e5bb9c95808f25be5722829361bfbb4653ae5144752b4e78e78c602c249ca776 Description: free implementation of the javamail API (Javadocs) Homepage: http://savannah.gnu.org/projects/classpathx Description-md5: ff58e470c4b1c0fdbcb2043bf938cc05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnutls-dev Priority: optional Section: libdevel Installed-Size: 2323 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: gnutls26 Version: 2.12.23-12ubuntu2 Replaces: gnutls-dev Provides: gnutls-dev, libgnutls-openssl-dev Depends: libgnutls26 (= 2.12.23-12ubuntu2), libgnutlsxx27 (= 2.12.23-12ubuntu2), libgnutls-openssl27 (= 2.12.23-12ubuntu2), libgcrypt11-dev (>= 1.4.0), libc6-dev | libc-dev, zlib1g-dev, libtasn1-6-dev, libp11-kit-dev (>= 0.4) Suggests: gnutls26-doc, gnutls-bin Conflicts: gnutls-dev Filename: pool/main/g/gnutls26/libgnutls-dev_2.12.23-12ubuntu2_amd64.deb Size: 370882 MD5sum: 0bc3f5db3affe5e170deaa84d44ae75e SHA1: fccc2ae0ea616b95359342a30c1de4000ad9481a SHA256: a3f71ae82b25168ba2e059a1e70e4a1f5b04407670de63183e7239b121175fdb Description: GNU TLS library - development files Homepage: http://www.gnutls.org/ Description-md5: e2a3e8bac6f6874ae5a4bc8e489881a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnutls-openssl27 Priority: important Section: libs Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: gnutls26 Version: 2.12.23-12ubuntu2 Depends: libgnutls26 (= 2.12.23-12ubuntu2), libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/g/gnutls26/libgnutls-openssl27_2.12.23-12ubuntu2_amd64.deb Size: 18348 MD5sum: 04a47da2c8f8d87dd20fcee77d8e40e9 SHA1: d08b98d9ead3152b2da8f7f42e9aaa1181a7eeba SHA256: 275193668ca3d62e76d3787adf5ccb58f9f70c0b8387fa879395063de23b5308 Description: GNU TLS library - OpenSSL wrapper Multi-Arch: same Homepage: http://www.gnutls.org/ Description-md5: ed7bc845df883f3776627eaef9179481 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libgnutls26 Priority: important Section: libs Installed-Size: 1072 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: gnutls26 Version: 2.12.23-12ubuntu2 Replaces: gnutls0, gnutls0.4, gnutls3 Depends: libc6 (>= 2.14), libgcrypt11 (>= 1.5.1), libp11-kit0 (>= 0.11), libtasn1-6 (>= 3.4-0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: gnutls-bin Conflicts: gnutls0, gnutls0.4 Breaks: ccbuild (<= 2.0.1-1), csync2 (<= 1.34-2.2), freewheeling (<= 0.6-1.1), gkrellm (<= 2.3.4-1), libsoup2.4-1 (= 2.31.2-1), libsoup2.4-1 (<= 2.30.1-1), macopix-gtk2 (<= 1.7.4-3), pokerth (<= 0.8.3-3+b1), pokerth-server (<= 0.8.3-3+b1), sipsak (<= 0.9.6-2.1), slrn (<= 1.0.0~pre18-1.1), slrnpull (<= 1.0.0~pre18-1.1), snowdrop (<= 0.02b-9), ssmtp (<= 2.64-4), tf5 (<= 5.0beta8-4), wput (<= 0.6.2-2), zoneminder (<= 1.24.4-1) Filename: pool/main/g/gnutls26/libgnutls26_2.12.23-12ubuntu2_amd64.deb Size: 393652 MD5sum: 226615922531b5944ded63dbd3f246b6 SHA1: f2987c48a7898e23708469616de18ed0d8394950 SHA256: 5df47c68e95147a10ba4219e51e2f3c936d820c91c52830dbc4ee48a0d974312 Description: GNU TLS library - runtime library Multi-Arch: same Homepage: http://www.gnutls.org/ Description-md5: 07e0914117156d2b3fcf0d63e9ef8ac2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libgnutls26-dbg Priority: extra Section: devel Installed-Size: 1929 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: gnutls26 Version: 2.12.23-12ubuntu2 Depends: libgnutls26 (= 2.12.23-12ubuntu2) Conflicts: libgnutls13-dbg, libgnutls28-dbg Filename: pool/main/g/gnutls26/libgnutls26-dbg_2.12.23-12ubuntu2_amd64.deb Size: 1431478 MD5sum: 6635653af593e18eaedb705eadff5ca6 SHA1: 9b5b48c0bdb2570fb02b7274ab8dc1a3c7b5f82d SHA256: a09442eaea4f62894c251157409d67883469e71fda3dd0e0362ee8d73e37e8b6 Description: GNU TLS library - debugger symbols Multi-Arch: same Homepage: http://www.gnutls.org/ Description-md5: 49ef95a26f6727eeaa8d2c979d728b2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnutlsxx27 Priority: extra Section: libs Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: gnutls26 Version: 2.12.23-12ubuntu2 Depends: libgnutls26 (= 2.12.23-12ubuntu2), libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gnutls26/libgnutlsxx27_2.12.23-12ubuntu2_amd64.deb Size: 17340 MD5sum: 19b26c9eb37bf624c02d0e9d7048ef5e SHA1: c7fe091f871c8313b26044bf95042586857f7e51 SHA256: 330c267ac6c17fa5909ae69a4ee14dfef2f44759ffb71e3a08d77f64e43dde95 Description: GNU TLS library - C++ runtime library Multi-Arch: same Homepage: http://www.gnutls.org/ Description-md5: afe5e834531764319ee8050592126f1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgo4 Priority: optional Section: libs Installed-Size: 13788 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: libgo3 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libgo4_4.8.2-19ubuntu1_amd64.deb Size: 2337564 MD5sum: 7bce5d4f683fa9621a3a47be8170e084 SHA1: 8f09fcac12eeeb1dfad842217175f8bdf68821b4 SHA256: 31ecea58b60df304873764f2ecba56a7b747d05a4f2b4c11e95a8d3f0ce5e7f6 Description: Runtime library for GNU Go applications Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 9dac71a6885be90d89c8d4e0ae4b9f2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgo4-dbg Priority: extra Section: debug Installed-Size: 12455 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgo4 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libgo4-dbg_4.8.2-19ubuntu1_amd64.deb Size: 2714848 MD5sum: 8366427cae46331792ebd2f391b3e936 SHA1: f064a483272cea37a3d2b1016aabffb3739b00f4 SHA256: 83bc83d963ecd7e7f326787597f2d5836f00ccd0b6b72d74890f3cb86f42951a Description: Runtime library for GNU Go applications (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 8e5db8ab219adb4818e0e98ececdb3ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgo5 Priority: optional Section: libs Installed-Size: 15064 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Replaces: libgo3 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gccgo-4.9/libgo5_4.9-20140406-0ubuntu1_amd64.deb Size: 2595746 MD5sum: 8849966e89492c825042325b0e7adc93 SHA1: 1be7041f6b9865c6e4f0370f174b635ae12e54a0 SHA256: e08a1f13a179137853de6d78bc6180d3dbef573989c0d4ce007909b57de145f3 Description: Runtime library for GNU Go applications Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 9dac71a6885be90d89c8d4e0ae4b9f2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgo5-dbg Priority: extra Section: debug Installed-Size: 13404 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libgo5 (= 4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/libgo5-dbg_4.9-20140406-0ubuntu1_amd64.deb Size: 2935900 MD5sum: b9ad53ddc35881739a907fd874f7f805 SHA1: 5a5c466eb75079f5ac13977c5a0cd8c34894b0a5 SHA256: 05450bcaf595ae15196301a1de0c6fc8a7b1df7cdd6cf64bd28222a9b198c92a Description: Runtime library for GNU Go applications (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 8e5db8ab219adb4818e0e98ececdb3ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoa-1.0-0b Priority: optional Section: libs Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Replaces: libgoa-1.0-0 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.38), libgoa-1.0-common (= 3.10.3-0ubuntu1) Pre-Depends: multiarch-support Conflicts: libgoa-1.0-0 Filename: pool/main/g/gnome-online-accounts/libgoa-1.0-0b_3.10.3-0ubuntu1_amd64.deb Size: 57064 MD5sum: 29d50f685f052b27f08b3b9c3a494231 SHA1: b48b2cba7aebd863f1965d4e7a43af7d7520a8b7 SHA256: 1c7c4d993556bb96d9ea551d0d307480fd255c4becd3c8877e7e90a1eda831d9 Description: library for GNOME Online Accounts Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 552490d3e14a107decec4ee36ed111f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgoa-1.0-common Priority: optional Section: libs Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Replaces: libgoa-1.0-0 (<< 3.8.2) Breaks: libgoa-1.0-0 (<< 3.8.2) Filename: pool/main/g/gnome-online-accounts/libgoa-1.0-common_3.10.3-0ubuntu1_all.deb Size: 11788 MD5sum: cb7eee1cd2e9c655c11dcafae3787352 SHA1: 8f3bd49aff1bbdf33cb50ff55d148c4832bcb5f3 SHA256: ca10114d497ae40b21dcac1ca02a2471e45e1efc6146e6408c14c2e0c6c0b831 Description: library for GNOME Online Accounts - common files Multi-Arch: foreign Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 2842d00135dfd07a49e67517e0da8c5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgoa-1.0-dev Priority: optional Section: libdevel Installed-Size: 773 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Depends: libgoa-1.0-0b (= 3.10.3-0ubuntu1), libgoa-backend-1.0-dev, libglib2.0-dev, libgtk-3-dev, librest-dev, gir1.2-goa-1.0 (= 3.10.3-0ubuntu1) Suggests: libgoa-1.0-doc Filename: pool/main/g/gnome-online-accounts/libgoa-1.0-dev_3.10.3-0ubuntu1_amd64.deb Size: 29572 MD5sum: 011f7d0340640d1982039985285d3b98 SHA1: 6a5ca957fb034c4ca793fdf609591e66a2669dd4 SHA256: 90db637aca714cfd6aadc53c18ad2a9886f72a534fe1bafc14188ed53bbe8ff3 Description: library for GNOME Online Accounts - development files Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 9bea771687b36e66a35d8eb109b74a84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoa-1.0-doc Priority: optional Section: doc Installed-Size: 1983 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Recommends: libglib2.0-doc Suggests: devhelp Filename: pool/main/g/gnome-online-accounts/libgoa-1.0-doc_3.10.3-0ubuntu1_all.deb Size: 101656 MD5sum: 9047ac9a2077b949504bd58fcccb380f SHA1: 15b5e6b455da9f8f5ed685bba9441c143cf478a8 SHA256: 683469b569ac9146be9d43f391f4ba6100fd80983e06c3e5ae11c9205d06217e Description: library for GNOME Online Accounts - documentation files Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 6e6a90b593144637e1e2aadec6654557 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoa-backend-1.0-1 Priority: optional Section: libs Installed-Size: 724 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Depends: libc6 (>= 2.4), libgcr-base-3-1 (>= 3.8.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.38), libgoa-1.0-0b (>= 3.7.90), libgtk-3-0 (>= 3.5.1), libjson-glib-1.0-0 (>= 0.12.0), libpango-1.0-0 (>= 1.14.0), librest-0.7-0 (>= 0.7), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.41), libtelepathy-glib0 (>= 0.19.9), libwebkitgtk-3.0-0 (>= 2.1.90), libxml2 (>= 2.9.0), libgoa-1.0-common (= 3.10.3-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/g/gnome-online-accounts/libgoa-backend-1.0-1_3.10.3-0ubuntu1_amd64.deb Size: 198440 MD5sum: e6de8bc57afca39970dd82586eec0045 SHA1: e8f5c6240faaa20a1740dc491b0919db28910b96 SHA256: 50b77d5d3341a3495465cf0d7051b08341a5f6567501558c4cea4c97b200faab Description: backend library for GNOME Online Accounts Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: a213e85dc3ab27d93fbec976e186f091 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: libgoa-backend-1.0-dev Priority: optional Section: libdevel Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Replaces: libgoa-1.0-dev (<< 3.10.0) Depends: libgoa-backend-1.0-1 (= 3.10.3-0ubuntu1), libglib2.0-dev, libgtk-3-dev, librest-dev, gir1.2-goa-1.0 (= 3.10.3-0ubuntu1) Suggests: libgoa-1.0-doc Conflicts: libgoa-1.0-dev (<< 3.10.0) Filename: pool/main/g/gnome-online-accounts/libgoa-backend-1.0-dev_3.10.3-0ubuntu1_amd64.deb Size: 5378 MD5sum: a5e4c3fdf713a75252cf64b8bdb6b8fc SHA1: 1e2dc4333f26b1b0ca5f3e8bdb8f2fb68487209f SHA256: 76f7528baf2c7ea4a79648981f67544bb6cb39b287384abb5062ed3109d52199 Description: backend library for GNOME Online Accounts - development files Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 97c3fcbfc559b12800632f5dcd6b8415 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgomp1 Priority: optional Section: libs Installed-Size: 93 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.17) Pre-Depends: multiarch-support Breaks: gcc-4.1, gcc-4.3 (<< 4.3.6-1), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2) Filename: pool/main/g/gcc-4.8/libgomp1_4.8.2-19ubuntu1_amd64.deb Size: 23168 MD5sum: 68263fca7caf6253269ab5d68f98b407 SHA1: 85efa5d6bc04294af15b10dff19faeb5d2d9e804 SHA256: a03e417d12c9c2b428a422f94aec88e51f67a3c7101e6bf36d329582d8b8f650 Description: GCC OpenMP (GOMP) support library Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 9651123458dd1bf3c162dfb6a6292ff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgomp1-arm64-cross Priority: extra Section: devel Installed-Size: 79 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libc6-arm64-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-arm64-cross/libgomp1-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 18302 MD5sum: 6644c74cfe829895b8d15a65b8e5a7c0 SHA1: f00c2468ac8713ba04b330ffd961a2a5389559b1 SHA256: 1819f5c528fff2c34fead99995e2b1db03cb3da6ce8af795cca6bff50b361402 Description: GCC OpenMP (GOMP) support library Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 9651123458dd1bf3c162dfb6a6292ff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgomp1-armhf-cross Priority: extra Section: devel Installed-Size: 70 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libgomp1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 21570 MD5sum: 70ecb8e9cf0097288edffa571ad1f916 SHA1: 1f9ab75a5a3075c52ef45296b3179c480204d069 SHA256: 1e43e62fe9593a8adcc111fc4aeac499177552d5dd87304f295bdd7dbd473ece Description: GCC OpenMP (GOMP) support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 9651123458dd1bf3c162dfb6a6292ff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgomp1-dbg Priority: extra Section: debug Installed-Size: 277 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgomp1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libgomp1-dbg_4.8.2-19ubuntu1_amd64.deb Size: 56126 MD5sum: 69028f1b6ca1ed8be7a301a55e2c97c6 SHA1: a775934f57ada59e30fbf2d91b0cc10cf0e01e3e SHA256: a5c5042cacdf744659ac9a9ecfd4b520cf29efead8870a871b122aa3a0ac8506 Description: GCC OpenMP (GOMP) support library (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 7e2cdd49ce630cb7e2347d7fe5ca5677 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgomp1-powerpc-cross Priority: extra Section: devel Installed-Size: 98 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/libgomp1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 23194 MD5sum: dd57ab0c6827951ebef6cbcfd9a47099 SHA1: fd0615163fb6f17dc6554a1810d266d188cb1b93 SHA256: 27a75739f7308dc04e805075927af0095b8249d49adbe3325bb49008ebfc6cfe Description: GCC OpenMP (GOMP) support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 9651123458dd1bf3c162dfb6a6292ff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgomp1-ppc64el-cross Priority: extra Section: devel Installed-Size: 95 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6-ppc64el-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libgomp1-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 21324 MD5sum: 25a859ce47b704b2f5e9ad7eacb1cef9 SHA1: edca1bf27196a808667ffa828a14a57996bb9c09 SHA256: c4c80bd3028c2943a68fedccde85e8e2359740afdd780526cc4832805cc2edf9 Description: GCC OpenMP (GOMP) support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 9651123458dd1bf3c162dfb6a6292ff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoogle-glog-dev Priority: optional Section: libdevel Installed-Size: 473 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: google-glog Version: 0.3.3-1 Depends: libgoogle-glog0 (= 0.3.3-1), libgflags-dev Filename: pool/main/g/google-glog/libgoogle-glog-dev_0.3.3-1_amd64.deb Size: 104542 MD5sum: 76fc5264c23326236bd35c359b81270b SHA1: 9a8daff05b7082e341320569fd37c2af239e2943 SHA256: b3b49e8c95b167682034c16c6a21a793f339c181f97bdd8efd466bf5ae4f7ee6 Description: library that implements application-level logging. Homepage: http://code.google.com/p/google-glog/ Description-md5: b551db4318894659d49fe968ad2eb1f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoogle-glog-doc Priority: optional Section: doc Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: all Source: google-glog Version: 0.3.3-1 Filename: pool/main/g/google-glog/libgoogle-glog-doc_0.3.3-1_all.deb Size: 12782 MD5sum: 5d4914a4746274e5cd49c926dce72011 SHA1: 1c73754c3e92ea70eb43cc57d55cf18e8e034e80 SHA256: dd28ad3faccbbf9737882e8170c243a5364fbc1feee295587efb589909a51db1 Description: documentation of gloogle-glog Homepage: http://code.google.com/p/google-glog/ Description-md5: e3a25f367e3ae0367e8824c0fa6643d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoogle-glog0 Priority: optional Section: libs Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: google-glog Version: 0.3.3-1 Depends: libc6 (>= 2.14), libgflags2, libstdc++6 (>= 4.1.1), libunwind8 Pre-Depends: multiarch-support Filename: pool/main/g/google-glog/libgoogle-glog0_0.3.3-1_amd64.deb Size: 61320 MD5sum: b2aab844cb0cbc58beee424af2dda4cd SHA1: 7e59ca74b911701ca5c66b7c2332ea02d2091cec SHA256: 9d44f61eeecc3d74470f6bcc3335d87377883dfbd7271d0a579a02c6bde81fe8 Description: library that implements application-level logging. Homepage: http://code.google.com/p/google-glog/ Description-md5: 829accffb10209e63959eb79e6ebd913 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoogle-perftools-dev Priority: optional Section: libdevel Installed-Size: 3391 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: google-perftools Version: 2.1-2ubuntu1 Depends: libgoogle-perftools4 (= 2.1-2ubuntu1), libtcmalloc-minimal4 (= 2.1-2ubuntu1), libunwind8-dev Filename: pool/main/g/google-perftools/libgoogle-perftools-dev_2.1-2ubuntu1_amd64.deb Size: 406856 MD5sum: d8a7265c249f6de7bddae7a08e46d466 SHA1: 0e25c733b099957f07f234872b420781303ae229 SHA256: f517a005ab05cb175747fa5d4b240b3483b67039f74cd8c1d6f7fd6939fb43d8 Description: libraries for CPU and heap analysis, plus an efficient thread-caching malloc Homepage: http://code.google.com/p/gperftools/ Description-md5: dbfe1cce18ce426a0a1a69ed420f918e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoogle-perftools4 Priority: optional Section: libs Installed-Size: 996 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: google-perftools Version: 2.1-2ubuntu1 Depends: libtcmalloc-minimal4 (= 2.1-2ubuntu1), libc6 (>= 2.14), libstdc++6 (>= 4.6), libunwind8 Conflicts: libgoogle-perftools0 Filename: pool/main/g/google-perftools/libgoogle-perftools4_2.1-2ubuntu1_amd64.deb Size: 183700 MD5sum: 9d9ea08b8a231ecd9845e9d59b27d13a SHA1: 94fc8ab17019dc7e771676e0fc4638824b77b1e6 SHA256: c62aa009830eca53e79347aaba0ba9d7a7cb0839b726d845539000bb983002c2 Description: libraries for CPU and heap analysis, plus an efficient thread-caching malloc Homepage: http://code.google.com/p/gperftools/ Description-md5: 9d3b2cf4c6afb08fb8e226be47a1fb1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgoogle-perftools4-dbg Priority: extra Section: debug Installed-Size: 2302 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: google-perftools Version: 2.1-2ubuntu1 Depends: libgoogle-perftools4 (= 2.1-2ubuntu1) Filename: pool/main/g/google-perftools/libgoogle-perftools4-dbg_2.1-2ubuntu1_amd64.deb Size: 2043288 MD5sum: 1323c7ca0c9be705f65e3f2a47ce5b03 SHA1: f35151aace4146edd2e7368fd70e907281c3a566 SHA256: a5f84871503be3326711a61264f48124fab49027dec25678ec3466b5085a1a3b Description: libraries for CPU and heap analysis, plus an efficient thread-caching malloc Homepage: http://code.google.com/p/gperftools/ Description-md5: 382bc63473014f90a0a6213ed348c214 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpg-error-dev Priority: optional Section: libdevel Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: amd64 Source: libgpg-error Version: 1.12-0.2ubuntu1 Depends: libgpg-error0 (= 1.12-0.2ubuntu1), libc6 (>= 2.3.4) Filename: pool/main/libg/libgpg-error/libgpg-error-dev_1.12-0.2ubuntu1_amd64.deb Size: 20126 MD5sum: b30e7e2c112faafa2b11f5be04a46a4a SHA1: 6c5a80a7fdb7624767e545b5c35b4dc89cd39569 SHA256: a9383001e87df12e76533c0faaf78fe1666c4b20de489679fdb45a7791a1076f Description: library for common error values and messages in GnuPG components (development) Homepage: http://www.gnupg.org/related_software/libgpg-error/ Description-md5: e9d7dd73a021cc106c5f4c856319e138 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpg-error0 Priority: important Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: amd64 Source: libgpg-error Version: 1.12-0.2ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libg/libgpg-error/libgpg-error0_1.12-0.2ubuntu1_amd64.deb Size: 10870 MD5sum: dd1ece537f8b62bbf6a93835f9a884f2 SHA1: 69a8976ef2f4c94a9106c9a2f37e5daf26a44dc1 SHA256: efb69c247d1e890906ae113884d19fd05b0f971f13604b375eb676ed5b296d05 Description: library for common error values and messages in GnuPG components Multi-Arch: same Homepage: http://www.gnupg.org/related_software/libgpg-error/ Description-md5: 69f556e12b915238b7c815f26da80be5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libgpgme11 Priority: optional Section: libs Installed-Size: 473 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: amd64 Source: gpgme1.0 Version: 1.4.3-0.1ubuntu5 Depends: gnupg (>= 1.4.6-2) | gnupg2 (>> 2.0.4), libassuan0 (>= 2.0.1), libc6 (>= 2.15), libgpg-error0 (>= 1.10) Pre-Depends: multiarch-support Suggests: gpgsm (>> 1.9.6) Filename: pool/main/g/gpgme1.0/libgpgme11_1.4.3-0.1ubuntu5_amd64.deb Size: 95810 MD5sum: 4337c5f6e80bbc6aa439d9360fbe63d1 SHA1: 6b22e64690fc39458a60adbce1dd7570b783cf84 SHA256: 12ceab392b65374fdf0517f2eff7b8784d2b4c305cbc13d43ac94ba6d102b8a2 Description: GPGME - GnuPG Made Easy (library) Multi-Arch: same Homepage: http://www.gnupg.org/gpgme.html Description-md5: 7305da3bebc903cedb7fa94da8ad1fbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, mail-server, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgpgme11-dev Priority: optional Section: libdevel Installed-Size: 1228 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: amd64 Source: gpgme1.0 Version: 1.4.3-0.1ubuntu5 Depends: libassuan-dev, libc6-dev, libgpg-error-dev, libgpgme11 (= 1.4.3-0.1ubuntu5), libpth-dev Conflicts: libgpgme-dev, libgpgme10-dev Filename: pool/main/g/gpgme1.0/libgpgme11-dev_1.4.3-0.1ubuntu5_amd64.deb Size: 222934 MD5sum: 4e0c0b201bba103bb89ab6288aa9d245 SHA1: e5b319b22e50e34440138f75d86c22a4e9125e18 SHA256: 9d692808c7d5eac0bbb4e6810d2efcb39ec2580c88a4aaaa61355fdbf6695961 Description: GPGME - GnuPG Made Easy (development files) Homepage: http://www.gnupg.org/gpgme.html Description-md5: 025318585b10ac584c814b2079ede759 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgphoto2-2-dev Priority: extra Section: oldlibs Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: amd64 Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Depends: libgphoto2-dev (= 2.5.3.1-1ubuntu2) Filename: pool/main/libg/libgphoto2/libgphoto2-2-dev_2.5.3.1-1ubuntu2_amd64.deb Size: 7518 MD5sum: ba6410b044e49af3be52b14c42ac27be SHA1: 856b0931f1a58e9f3fcf9f75d631280cd3ef7050 SHA256: 42299eca6c8f1cb22bf1b6ac0daddd6f3eb5ad6e1397e1e9be9656ed3c774be9 Description: gphoto2 digital camera library (transitional package) Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: f6e2458481485a8200b061ef6bec5c1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgphoto2-6 Priority: optional Section: libs Installed-Size: 3367 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: amd64 Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Depends: libc6 (>= 2.15), libexif12, libgd3 (>= 2.1.0~alpha~), libgphoto2-port10 (>= 2.5.2), libjpeg8 (>= 8c), libltdl7 (>= 2.4.2), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Recommends: udev (>= 201), libgphoto2-l10n (>= 2.5.3.1-1ubuntu2) Suggests: gphoto2 (>= 2.1.1) Breaks: gphoto2 (<= 2.1.1) Filename: pool/main/libg/libgphoto2/libgphoto2-6_2.5.3.1-1ubuntu2_amd64.deb Size: 735856 MD5sum: 66fa1c4126b0e683ca5870c4bc4ceb0e SHA1: 4a2603806efd43121c83d9d7897472209f35edb5 SHA256: a2c5adb35ae0909f219bfde2ae32acfce6a772d6768f0923c98db6715240c3f1 Description: gphoto2 digital camera library Multi-Arch: same Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: 0667f79ceb3d5a999a0ff55ad225e156 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgphoto2-dev Priority: optional Section: libdevel Installed-Size: 11837 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: amd64 Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Replaces: libgphoto2-2-dev (<< 2.5.2-1~) Depends: libgphoto2-6 (= 2.5.3.1-1ubuntu2), libexif-dev, pkg-config Breaks: libgphoto2-2-dev (<< 2.5.2-1~) Filename: pool/main/libg/libgphoto2/libgphoto2-dev_2.5.3.1-1ubuntu2_amd64.deb Size: 2142418 MD5sum: 51f2e40a7f15a9e36bfb35f2ececa654 SHA1: 01af9786dd29f7959cc8b7cd12229767675db6ef SHA256: 59cb00d018244076dfc9615253f5596fe1b154ac71c5f21be5c2838b5dc5a324 Description: gphoto2 digital camera library (development files) Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: 09f6d0ae3f118a398b90fb84845618e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgphoto2-dev-doc Priority: optional Section: doc Installed-Size: 6567 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: all Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Depends: libjs-jquery Filename: pool/main/libg/libgphoto2/libgphoto2-dev-doc_2.5.3.1-1ubuntu2_all.deb Size: 2575828 MD5sum: a53d4b1f66f43457e1395caeb6343efb SHA1: f3711cedaf7d9571dc4122739627b55001fe22bd SHA256: 6900694f10abc5c1633f5616edf1fc68b0a84cb9a7d5380ec48b75ff240cd000 Description: gphoto2 digital camera library (development documentation) Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: 80bdc5b1f735d5956b63d68eeabdaa75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgphoto2-l10n Priority: optional Section: localization Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: all Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Replaces: libgphoto2-2 (<= 2.4.10.1-4) Breaks: libgphoto2-2 (<= 2.4.10.1-4) Filename: pool/main/libg/libgphoto2/libgphoto2-l10n_2.5.3.1-1ubuntu2_all.deb Size: 7534 MD5sum: af74b060af172dd9bda6da62e8ea341e SHA1: 3e979afc3b9b0f5fe770b9454e55e8d18e56ac9b SHA256: 803d088708c666a058cd7395d0c09e167e37ca8768fdd6a29c25510e38f6a7b2 Description: gphoto2 digital camera library - localized messages Multi-Arch: foreign Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: ab44a2500d46c48e4f7f5c712df346d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgphoto2-port10 Priority: optional Section: libs Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: amd64 Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Depends: libc6 (>= 2.15), libltdl7 (>= 2.4.2), libusb-1.0-0 (>= 2:1.0.8) Pre-Depends: multiarch-support Suggests: gphoto2 (>> 2.1.0), gtkam Breaks: gphoto2 (<= 2.1.1) Filename: pool/main/libg/libgphoto2/libgphoto2-port10_2.5.3.1-1ubuntu2_amd64.deb Size: 40820 MD5sum: 9a360d7ec2579181c1b2cabf44c1294d SHA1: 5bab2bc592445f06fde390f45bb4fb469584bd41 SHA256: 6be6a22985df6729d14a132abc73faddf9654c1dcf2dacf08f45eb57ba616c6c Description: gphoto2 digital camera port library Multi-Arch: same Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: 6e52236fade1dd1f9b033de909479e66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgpm-dev Priority: optional Section: libdevel Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Source: gpm Version: 1.20.4-6.1 Provides: libgpmg1-dev Depends: libgpm2 (= 1.20.4-6.1), libc6-dev | libc-dev Conflicts: libgpmg1-dev Filename: pool/main/g/gpm/libgpm-dev_1.20.4-6.1_amd64.deb Size: 17218 MD5sum: d6b056d19889c3d73cf4947c37735ff5 SHA1: 29da111336273690ac2071828c33410a2309cc38 SHA256: 9f0f4d991be8e082eee4ed6763e1a6838b8f26d10a2bb9ee2d94074fc5f009a5 Description: General Purpose Mouse - development files Multi-Arch: same Homepage: http://www.nico.schottelius.org/software/gpm/ Description-md5: 9c6c4769bf624eea9163234b6f001a86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpm2 Priority: optional Section: libs Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Source: gpm Version: 1.20.4-6.1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Suggests: gpm Filename: pool/main/g/gpm/libgpm2_1.20.4-6.1_amd64.deb Size: 16530 MD5sum: 373392b7277ea8d2c012ae5a3bb69403 SHA1: 2afbbc39552e10c8d52fab55127f013bc7472d1c SHA256: 22fb03ea7ae2ddc0f32cf7fa514b0608a78234b72844068c7eb26bea9fdcc5e6 Description: General Purpose Mouse - shared library Multi-Arch: same Homepage: http://www.nico.schottelius.org/software/gpm/ Description-md5: e77c023597910bf799fb8eb6602823ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgpod-cil Priority: optional Section: cli-mono Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libglib2.0-cil (>= 2.12.10-1ubuntu1), libgpod4 (>= 0.7.94), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.5-cil (>= 3.2.3), libmono-system-core4.0-cil (>= 3.2.1) Filename: pool/main/libg/libgpod/libgpod-cil_0.8.3-4ubuntu3_amd64.deb Size: 17576 MD5sum: 0148e29d9ec160a3c2a972914385be0d SHA1: 270fa4c506da888f42424716944414f9e3686c27 SHA256: dd1038cddaec706f3a0d15fa54055803e40d587403ee25e20065c3eac73c5a5a Description: CLI bindings for libgpod Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 131f461c9278ab268320d20d8b94825b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpod-cil-dev Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libgpod-cil (= 0.8.3-4ubuntu3) Filename: pool/main/libg/libgpod/libgpod-cil-dev_0.8.3-4ubuntu3_amd64.deb Size: 4210 MD5sum: f61485e0be530628d9e852cc1de80bb4 SHA1: fc283f451e1270379a56b0c6d0755a1facd4e5bc SHA256: d67f040a18be90b0e33f50c8e369f9a09d5bb812c2843283c4fc00a737ce02fa Description: CLI bindings for libgpod -- development files Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 7afe1fd9e9aa601e2f65edf80b266775 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpod-common Priority: optional Section: libs Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libgpod Version: 0.8.3-4ubuntu3 Replaces: libgpod0 (<< 0.3.0-4) Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.31.18), libgpod4-nogtk (>= 0.7.90) | libgpod4 (>= 0.7.90), libimobiledevice4 (>= 0.9.7), libplist1 (>= 0.16), libsgutils2-2 (>= 1.27), libusb-1.0-0 (>= 2:1.0.8), libxml2 (>= 2.7.4) Filename: pool/main/libg/libgpod/libgpod-common_0.8.3-4ubuntu3_amd64.deb Size: 22296 MD5sum: 6d196ad77a19090eee979142123ef86f SHA1: 8b67c29a0272f42b6c26b9627ddf5c34b0bffa61 SHA256: c1845cc480643610f76da67928978cace38b8656c854b410511c7b8ee4c9b5ea Description: common files for libgpod Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 0eae2c1963cba37ea794f90b5823ca74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgpod-dev Priority: optional Section: libdevel Installed-Size: 826 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libgpod4 (= 0.8.3-4ubuntu3), libgtk2.0-dev, libglib2.0-dev, libgdk-pixbuf2.0-dev, libimobiledevice-dev Suggests: libgpod-doc Conflicts: libgpod-nogtk-dev Filename: pool/main/libg/libgpod/libgpod-dev_0.8.3-4ubuntu3_amd64.deb Size: 203042 MD5sum: e18e217800ee38c7bec582f13f033f8e SHA1: 7ce39e37f5af5f6309032b163d0a6a4e8a368805 SHA256: 9013b9507a3e11bfc1b62d4238621dee9145d800a75aade723019d1d26c9df1a Description: development files for libgpod Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 344168e89c989d05df365c2e722e3f86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpod-doc Priority: optional Section: doc Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: all Source: libgpod Version: 0.8.3-4ubuntu3 Replaces: libgpod-common (<< 0.6.0-6), libgpod0 (<< 0.3.0-4) Filename: pool/main/libg/libgpod/libgpod-doc_0.8.3-4ubuntu3_all.deb Size: 31120 MD5sum: ad36179fd58044419afb4927d6bc6871 SHA1: 1967b7a144d6589f0fbcfc5fd69993a9467eee03 SHA256: 388890b6f07722eb627e7768853cff35fae6c400fc9e310dbd242401fecda449 Description: documentation for libgpod Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: c1d9226f5190e2340cc4c43db6f32214 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpod-nogtk-dev Priority: optional Section: libdevel Installed-Size: 608 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libgpod4-nogtk (= 0.8.3-4ubuntu3), libglib2.0-dev, libimobiledevice-dev Suggests: libgpod-doc Conflicts: libgpod-dev Filename: pool/main/libg/libgpod/libgpod-nogtk-dev_0.8.3-4ubuntu3_amd64.deb Size: 114458 MD5sum: 110a6e743a53f598a912e72f92d48ddc SHA1: b38a411af67db29c1ffb6917330c94bdac16348d SHA256: d825f052efd551324e42978398c5a6372060f832159dc5d26b9460da4e645e27 Description: development files for libgpod (version without artwork support) Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 8a148c015966976f4adc89561e46e439 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpod4 Priority: optional Section: libs Installed-Size: 533 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libc6 (>= 2.14), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.18), libimobiledevice4 (>= 0.9.7), libplist1 (>= 0.16), libsqlite3-0 (>= 3.5.9), libxml2 (>= 2.7.4), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Recommends: libgpod-common Conflicts: libgpod4-nogtk Filename: pool/main/libg/libgpod/libgpod4_0.8.3-4ubuntu3_amd64.deb Size: 184302 MD5sum: 7bf3c4fbe08835f2cf1cedd274541fd4 SHA1: 05c1c6daa9d8fa307f2308ac277919519142a104 SHA256: 3665e8574e898ddc3fa1ee10874cd97fee70f6bf4cf77d9032620b74efc9640a Description: library to read and write songs and artwork to an iPod Multi-Arch: same Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 89537791a1486eb992b2f5d253d0289c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: libgpod4-nogtk Priority: extra Section: libs Installed-Size: 353 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.31.18), libimobiledevice4 (>= 0.9.7), libplist1 (>= 0.16), libsqlite3-0 (>= 3.5.9), libxml2 (>= 2.7.4), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Recommends: libgpod-common Conflicts: libgpod4 Filename: pool/main/libg/libgpod/libgpod4-nogtk_0.8.3-4ubuntu3_amd64.deb Size: 98558 MD5sum: dcb895ba3c5a5e346c2d8bbe846e4d97 SHA1: bd41b4942a27ad5ec04a1a98c58fcba2f186211d SHA256: 83916de72a0184ed82a525871a128c32b314ff4487e47676755fd275531941da Description: library to read and write songs to an iPod Multi-Arch: same Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 25e878c1fe823f8e88a4637884a93ad3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgrail-dev Priority: optional Section: libdevel Installed-Size: 68 Maintainer: Ubuntu Developers Architecture: amd64 Source: grail Version: 3.1.0daily13.06.05-0ubuntu1 Replaces: libutouch-grail-dev Depends: libframe-dev, libgrail6 (= 3.1.0daily13.06.05-0ubuntu1) Conflicts: libutouch-grail-dev Filename: pool/main/g/grail/libgrail-dev_3.1.0daily13.06.05-0ubuntu1_amd64.deb Size: 6776 MD5sum: 105f968641e0c18abb44a3e8202f32b9 SHA1: 096d1235189aebaf64e5daf3af975e9e099bb03e SHA256: 48df6feadb26d7516d6a231cdc56e43c9da826f667c8c434ced763963ddf9aa4 Description: Gesture Recognition And Instantiation Library - dev files Homepage: https://launchpad.net/grail Description-md5: aaa7fea4cee4953a0ab1a52e4a02990c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgrail6 Priority: optional Section: libs Installed-Size: 172 Maintainer: Ubuntu Developers Architecture: amd64 Source: grail Version: 3.1.0daily13.06.05-0ubuntu1 Depends: libc6 (>= 2.14), libframe6 (>= 2.5.0), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/g/grail/libgrail6_3.1.0daily13.06.05-0ubuntu1_amd64.deb Size: 57918 MD5sum: 5688172db2992c7a0aabf74c5a4a23a7 SHA1: cace6e76440283fe96073c454ebc7029918ea258 SHA256: d39bded72eab1071ff4049b930d89435daa89a643ace8a278cfe96d5bc266aa7 Description: Gesture Recognition And Instantiation Library Homepage: https://launchpad.net/grail Description-md5: 8a3d2f9d4700637341ac103638491767 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgrantlee-core0 Priority: extra Section: libs Installed-Size: 882 Maintainer: Kubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: grantlee Version: 0.4.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-script (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Filename: pool/main/g/grantlee/libgrantlee-core0_0.4.0-0ubuntu1_amd64.deb Size: 222248 MD5sum: d63c2562ec32c4dae4c37240cd33a36f SHA1: 31859393760a74e9490600a1ce921956238ef656 SHA256: 8eba2b6bd57c79f19c32383d80d24830ef0fed9a11fb5b7cd7696eb6d534bc63 Description: Grantlee templating library for Qt - Core Homepage: http://www.grantlee.org/ Description-md5: 5b39a85487ef7217f6fcac0eec65abe5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libgrantlee-dev Priority: extra Section: libdevel Installed-Size: 219 Maintainer: Kubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: grantlee Version: 0.4.0-0ubuntu1 Depends: libgrantlee-core0 (= 0.4.0-0ubuntu1), libgrantlee-gui0 (= 0.4.0-0ubuntu1), libqt4-dev Filename: pool/main/g/grantlee/libgrantlee-dev_0.4.0-0ubuntu1_amd64.deb Size: 33560 MD5sum: a9b7bb35978c1f26487bb38e3cd93d1e SHA1: b8429c4d3f43b5bd46419d48df9d9fd16688dbae SHA256: b912415780f64cbda4db74c4ee1d19cfaef0e516a2c6a2fe3fe4cd7ddf3a7491 Description: Grantlee templating library development files Homepage: http://www.grantlee.org/ Description-md5: e07afc1e6e310f775ba8d324d30b04dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgrantlee-gui0 Priority: extra Section: libs Installed-Size: 160 Maintainer: Kubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: grantlee Version: 0.4.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Filename: pool/main/g/grantlee/libgrantlee-gui0_0.4.0-0ubuntu1_amd64.deb Size: 38382 MD5sum: fb618d725458562230fcebee1292f1b8 SHA1: edf07e118256fa1c774d97c59db47fd83a4d9a10 SHA256: 7445b7dc44185d405a961e1548339d834a9bba087e75527fcb66a2a7eea9f47d Description: Grantlee templating library for Qt - GUI Homepage: http://www.grantlee.org/ Description-md5: 303fffca2326cf0c9a45a6a6f415afb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: libgraphite2-3 Priority: optional Section: libs Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Team Architecture: amd64 Source: graphite2 Version: 1.2.4-1ubuntu1 Replaces: libgraphite2-2.0.0 Provides: libgraphite2-2.0.0 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Breaks: libgraphite2-2.0.0 (<< 1.2.0) Filename: pool/main/g/graphite2/libgraphite2-3_1.2.4-1ubuntu1_amd64.deb Size: 53824 MD5sum: 741675e53d56ac95777c9a220670802a SHA1: 620eed6034e0fefcfd074877513e58b3280f34f4 SHA256: c5d329ba3cbe17a1616be68dfdfa7f7f118078c3985c78ab795d32fe34852c6f Description: Font rendering engine for Complex Scripts -- library Multi-Arch: same Description-md5: 68d1591bf212ce8230272a42a5738b72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libgraphite2-3-dbg Priority: extra Section: debug Installed-Size: 560 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Team Architecture: amd64 Source: graphite2 Version: 1.2.4-1ubuntu1 Depends: libgraphite2-3 (= 1.2.4-1ubuntu1) Filename: pool/main/g/graphite2/libgraphite2-3-dbg_1.2.4-1ubuntu1_amd64.deb Size: 495340 MD5sum: 94ba45eb17ecb0c402f91c2ac7141e8f SHA1: 6baa06a5ecc4b24678c84a2e516a42c189f17bff SHA256: 2ce249b309f701df5656ac52ab440a10ffc5ecc23675566a55e2061adbf00677 Description: Debug symbols for libgraphite2 Description-md5: 014e4150f06b5c7cc832e2cdcce8f9c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgraphite2-dev Priority: optional Section: libdevel Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Team Architecture: amd64 Source: graphite2 Version: 1.2.4-1ubuntu1 Depends: libgraphite2-3 (= 1.2.4-1ubuntu1) Filename: pool/main/g/graphite2/libgraphite2-dev_1.2.4-1ubuntu1_amd64.deb Size: 14316 MD5sum: dd6e5f6e023dd65a81f4f108496b73ee SHA1: 2b509bb30335ce964e96762215a6159e22d66c14 SHA256: 5c19c254bc84d2a4fa2bcc393e78daab8c3b4c314c24d1d9ab4fb03ac1a6a9d7 Description: Development files for libgraphite2 Description-md5: 7f19707ec760b78fb24460b38ecf78bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgraphite2-doc Priority: optional Section: doc Installed-Size: 1367 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Team Architecture: all Source: graphite2 Version: 1.2.4-1ubuntu1 Filename: pool/main/g/graphite2/libgraphite2-doc_1.2.4-1ubuntu1_all.deb Size: 503778 MD5sum: 6fea0873b4be02ccd6be2a92ed4d5ddf SHA1: 2e3bd6a088f44a8ca62b7d4b45398dd2374640ce SHA256: 4cf257b9d5e4331864ed663390bb79d0408777509f427aabdf37d339e268d4c9 Description: Documentation for libgraphite2 Description-md5: b0b3ea4dd05ea53f9d34d1f006dde09b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgraphviz-dev Priority: optional Section: libdevel Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: amd64 Source: graphviz Version: 2.36.0-0ubuntu3 Replaces: libgraphviz3-dev, libgraphviz4-dev (<< 2.16-3) Provides: graphviz-dev Depends: libcdt5 (= 2.36.0-0ubuntu3), libcgraph6 (= 2.36.0-0ubuntu3), libgvc6 (= 2.36.0-0ubuntu3), libgvpr2 (= 2.36.0-0ubuntu3), libpathplan4 (= 2.36.0-0ubuntu3), libxdot4 (= 2.36.0-0ubuntu3), libexpat1-dev, libltdl7-dev, zlib1g-dev Conflicts: graphviz-dev (<< 2.12-1), libgraphviz3-dev, libgraphviz4-dev (<< 2.16-3) Filename: pool/main/g/graphviz/libgraphviz-dev_2.36.0-0ubuntu3_amd64.deb Size: 60818 MD5sum: a71a2a48d1ba9291311ef33ef3eb88b0 SHA1: d6c8a6bc3430cdf1868716b981ff10afa377cfd9 SHA256: 876969e579f6e862c2ba65c55218526ec752901bf953a2dc6f17e46f849ae331 Description: graphviz libs and headers against which to build applications Homepage: http://www.graphviz.org/ Description-md5: c3a8010bf765807229fbc858755d3ad0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgrip-dev Priority: optional Section: libdevel Installed-Size: 230 Maintainer: Ubuntu Developers Architecture: amd64 Source: libgrip Version: 0.3.7+14.04.20140303-0ubuntu1 Depends: libglib2.0-dev (>= 2.28.6), libgrip0 (= 0.3.7+14.04.20140303-0ubuntu1), libgtk-3-dev (>= 3.0.8), libgeis-dev, pkg-config Filename: pool/main/libg/libgrip/libgrip-dev_0.3.7+14.04.20140303-0ubuntu1_amd64.deb Size: 20212 MD5sum: d5f8a338178a622a1969c49195754010 SHA1: 4bdca4e9d1c29f50d8713575ee909b3cb0f94f70 SHA256: 3ed602fea8b45a13fdab54687dd585c8b7923864ac300a53df9c5800b7df54c4 Description: multitouch gestures for GTK+ apps -- development files Homepage: https://launchpad.net/libgrip Description-md5: a3259508256ceae95b658a23ccbec265 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgrip0 Priority: optional Section: libs Installed-Size: 69 Maintainer: Ubuntu Developers Architecture: amd64 Source: libgrip Version: 0.3.7+14.04.20140303-0ubuntu1 Depends: libc6 (>= 2.4), libgeis1 (>= 2.0.1), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.8-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/libg/libgrip/libgrip0_0.3.7+14.04.20140303-0ubuntu1_amd64.deb Size: 13542 MD5sum: 8a14dc2ebf786ba4e57db7d3b9cfb3bf SHA1: 47157462f7b641f02f8f18d70de2eeea1c8801ed SHA256: 763d2417ab62e73b3e2c68febcc0f8e06b765c52e9fc4831d9be4d165cdf862a Description: multitouch gestures for GTK+ apps Homepage: https://launchpad.net/libgrip Description-md5: 636f53cde51d687a2c811daefc5138a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgs-dev Priority: optional Section: text Installed-Size: 15456 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Depends: libgs9 (= 9.10~dfsg-0ubuntu10), libc6-dev, libcups2-dev, libcupsimage2-dev, libfontconfig1-dev, libidn11-dev, libijs-dev, libjbig2dec0-dev, libjpeg-dev, libpaper-dev, libpng12-0-dev, libtiff5-dev, zlib1g-dev Filename: pool/main/g/ghostscript/libgs-dev_9.10~dfsg-0ubuntu10_amd64.deb Size: 2175716 MD5sum: bb4904c598afc24d3382fdf615967f15 SHA1: 612aec78033f1df6e5e2d7673936b3fa4bf4cdd2 SHA256: 38eb21d9ef568f95c0d792cb4f745d9ff1f62c03524bd84f640492e1c396fd4e Description: interpreter for the PostScript language and for PDF - Development Files Homepage: http://www.ghostscript.com/ Description-md5: f4c1713297a6c688a87d0b2876caf1fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgs9 Priority: optional Section: libs Installed-Size: 11946 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Depends: libc6 (>= 2.14), libcups2 (>= 1.4.0), libcupsimage2 (>= 1.4.0), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libidn11 (>= 1.13), libijs-0.35 (>= 0.35), libjbig2dec0 (>= 0.11), libjpeg8 (>= 8c), liblcms2-2 (>= 2.5), libpaper1, libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3), zlib1g (>= 1:1.1.4), poppler-data (>= 0.4.5-3~) | gs-cjk-resource, libgs9-common (>= 9.10~dfsg) Filename: pool/main/g/ghostscript/libgs9_9.10~dfsg-0ubuntu10_amd64.deb Size: 1942452 MD5sum: e4b8a07e83cfaf07cc22fbcb4fa6e669 SHA1: b9ef192edef2f3c2c4aa727c7642e12f8757ec94 SHA256: 3e314d78ada81fa834ae16a677c545c394d3b11bda3edc3a39cb647723f8d65f Description: interpreter for the PostScript language and for PDF - Library Homepage: http://www.ghostscript.com/ Description-md5: 77d0d233cd004663a71b1ef44e87d3f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgs9-common Priority: optional Section: libs Installed-Size: 4198 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Suggests: fonts-droid Filename: pool/main/g/ghostscript/libgs9-common_9.10~dfsg-0ubuntu10_all.deb Size: 2067674 MD5sum: 09774b8af94a71a64d3bb6e9a43b4beb SHA1: 4c76eae6297cb614ac68d064fabe20cb913d3f9b SHA256: 5e83f5dafc82e546d5bedf3be4e18714d3f2dfce20480ce6818474fa5479cd08 Description: interpreter for the PostScript language and for PDF - common files Homepage: http://www.ghostscript.com/ Description-md5: f08f64f97de70ffa2ec3f07307565bf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgsettings-qt-dev Priority: extra Section: libdevel Installed-Size: 55 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: gsettings-qt Version: 0.1+14.04.20140408-0ubuntu1 Depends: libgsettings-qt1 (= 0.1+14.04.20140408-0ubuntu1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/g/gsettings-qt/libgsettings-qt-dev_0.1+14.04.20140408-0ubuntu1_amd64.deb Size: 3136 MD5sum: 906340e013011ad17e4341636d6fe2cb SHA1: af6c59e6c2ecba06e425cf9e427105b17d1ba5ca SHA256: 158f3346d6b8704dcc702e7dffa8c217397a95090ee159d6340184f51bda24e3 Description: Library to access GSettings from Qt - devel Homepage: https://launchpad.net/gsettings-qt Description-md5: 29fccfd290f8e58d776ea7334c5a9685 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgsettings-qt1 Priority: extra Section: libs Installed-Size: 70 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: gsettings-qt Version: 0.1+14.04.20140408-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gsettings-qt/libgsettings-qt1_0.1+14.04.20140408-0ubuntu1_amd64.deb Size: 13676 MD5sum: fde7a82d51a722e8b90e6d3c78fdec87 SHA1: cbe7e2e2f9080f233558a37369569e3e4df9c009 SHA256: 0b8c4b0c4ddafc258370d433b106ffed7ee05d60f547f749e6a64f76b6e11f3b Description: Library to access GSettings from Qt Multi-Arch: same Homepage: https://launchpad.net/gsettings-qt Description-md5: a693c4a56022026ccf2efeacdaa6887a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libgsf-1-114 Priority: optional Section: libs Installed-Size: 321 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Smirnov Architecture: amd64 Source: libgsf Version: 1.14.27-2ubuntu2 Depends: libgsf-1-common (>= 1.14.27-2ubuntu2), libbz2-1.0, libc6 (>= 2.14), libglib2.0-0 (>= 2.31.8), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Filename: pool/main/libg/libgsf/libgsf-1-114_1.14.27-2ubuntu2_amd64.deb Size: 94938 MD5sum: 12579e6b3fa3d3068a38fc78f5d06391 SHA1: 1d4afd7179fa55eb4924a0a19dc38591d5c13949 SHA256: 2af598627d6a582656d478eef1e522a9509c84d3e196cfa3be5e111b4d505634 Description: Structured File Library - runtime version Homepage: http://projects.gnome.org/libgsf/ Description-md5: 6f2a19cee2252e04518882eb04caab00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libgsf-1-114-dbg Priority: extra Section: debug Installed-Size: 448 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Smirnov Architecture: amd64 Source: libgsf Version: 1.14.27-2ubuntu2 Depends: libgsf-1-114 (= 1.14.27-2ubuntu2) Filename: pool/main/libg/libgsf/libgsf-1-114-dbg_1.14.27-2ubuntu2_amd64.deb Size: 335362 MD5sum: e9624332d238905712326c71a84f9db3 SHA1: 131f009a8aa3bc4ef4c9b1458881135a4d3ce2a9 SHA256: f6db133b9cf02c46df4c90079743148b81ee6f0a83423112884a290b6a532118 Description: Structured File Library - debugging files (basic version) Homepage: http://projects.gnome.org/libgsf/ Description-md5: e3a7b6bf418c7b49e5144843c59fb2a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgsf-1-common Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Smirnov Architecture: all Source: libgsf Version: 1.14.27-2ubuntu2 Replaces: libgsf-1 (<= 1.12.3-4) Filename: pool/main/libg/libgsf/libgsf-1-common_1.14.27-2ubuntu2_all.deb Size: 11824 MD5sum: 3bdb90305d0227dcd7fdb0ff4355ebce SHA1: 681c6ecbb06833a1ab46d03b23a84f629e48ad2b SHA256: bc2ca400865b8d049cdfa8d4e7319a78c126748df20111804219a586fca6c955 Description: Structured File Library - common files Homepage: http://projects.gnome.org/libgsf/ Description-md5: 63c4e64ca9b6d79b4947e39b148fe3e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libgsf-1-dev Priority: optional Section: libdevel Installed-Size: 1709 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Smirnov Architecture: amd64 Source: libgsf Version: 1.14.27-2ubuntu2 Replaces: gir1.2-libgsf-1, libgsf-1-114 (<< 1.14.25-2~), libgsf-gnome-1-dev (<= 1.14.8-1) Depends: libgsf-1-114 (= 1.14.27-2ubuntu2), gir1.2-gsf-1 (= 1.14.27-2ubuntu2), libbz2-dev, libglib2.0-dev, libxml2-dev Recommends: pkg-config Conflicts: gir1.2-libgsf-1 Breaks: libgsf-1-114 (<< 1.14.25-2~) Filename: pool/main/libg/libgsf/libgsf-1-dev_1.14.27-2ubuntu2_amd64.deb Size: 192498 MD5sum: 73186e775a76abb7bfed7bbb803a5d74 SHA1: f5aeceb6b6255f9e3f955dd85400cfba1f8e03c7 SHA256: e84ce1bc1cf5eb9558fbe4bd7888910607f7da8e6254eb90f307014365b84cd6 Description: Structured File Library - development files Homepage: http://projects.gnome.org/libgsf/ Description-md5: c26c685203445077273bff5424a425c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgsl0-dbg Priority: extra Section: libdevel Installed-Size: 9162 Maintainer: Ubuntu Developers Original-Maintainer: Dirk Eddelbuettel Architecture: amd64 Source: gsl Version: 1.16+dfsg-1ubuntu1 Depends: libgsl0ldbl (= 1.16+dfsg-1ubuntu1) Filename: pool/main/g/gsl/libgsl0-dbg_1.16+dfsg-1ubuntu1_amd64.deb Size: 1644106 MD5sum: 8c8f7791245b38bd1e11c454bd40727d SHA1: 33f51859f80bea433f47e3eed4854acfc9408d6d SHA256: e6a6cce42fa31dbff1c1726bca557b9787fb2ae870c32574cad848bb707a59c2 Description: GNU Scientific Library (GSL) -- debug symbols package Homepage: http://www.gnu.org/software/gsl Description-md5: 5643f5b8950f7a867c6a8e769d83e918 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgsl0-dev Priority: optional Section: libdevel Installed-Size: 6085 Maintainer: Ubuntu Developers Original-Maintainer: Dirk Eddelbuettel Architecture: amd64 Source: gsl Version: 1.16+dfsg-1ubuntu1 Replaces: gsl-dev, libgsl0 (<= 1.9-4) Depends: libgsl0ldbl (= 1.16+dfsg-1ubuntu1) Conflicts: gsl-dev Filename: pool/main/g/gsl/libgsl0-dev_1.16+dfsg-1ubuntu1_amd64.deb Size: 982398 MD5sum: 44e1e9d5da76b6b07cda2c914f10c6e1 SHA1: 99806c760bc6b5b2c8392a6be3d30824243738ad SHA256: 3965e9ee8cb7307d660c474afffefe52d8aaf36e553eb3a5510dc112b2ddbb1c Description: GNU Scientific Library (GSL) -- development package Homepage: http://www.gnu.org/software/gsl Description-md5: f82bf91c76eb8a810492207c71d95b23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgsl0ldbl Priority: optional Section: math Installed-Size: 2827 Maintainer: Ubuntu Developers Original-Maintainer: Dirk Eddelbuettel Architecture: amd64 Source: gsl Version: 1.16+dfsg-1ubuntu1 Replaces: gsl, libgsl0 (<= 1.9-4) Depends: libc6 (>= 2.14) Suggests: gsl-ref-psdoc | gsl-doc-pdf | gsl-doc-info | gsl-ref-html Conflicts: gsl, libgsl0 Filename: pool/main/g/gsl/libgsl0ldbl_1.16+dfsg-1ubuntu1_amd64.deb Size: 877758 MD5sum: 4e1d01da81f1d0de58a743c5c5294d54 SHA1: a5f843203b4612083b543b7b47675219ff62fc5c SHA256: c04dd675222979d297094d8496cf3ee48945d71dfcc9e3018da8496b84e14b0e Description: GNU Scientific Library (GSL) -- library package Homepage: http://www.gnu.org/software/gsl Description-md5: c18364d1c52158ec186a19bfe690fbf6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: libgssapi-krb5-2 Priority: standard Section: libs Installed-Size: 402 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libcomerr2 (>= 1.34), libk5crypto3 (>= 1.8+dfsg), libkrb5-3 (= 1.12+dfsg-2ubuntu4), libkrb5support0 (>= 1.12~alpha1+dfsg) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Breaks: libgssglue1 (<< 0.2-2) Filename: pool/main/k/krb5/libgssapi-krb5-2_1.12+dfsg-2ubuntu4_amd64.deb Size: 113056 MD5sum: be47ad1a30ba39c645598575c405da60 SHA1: 9d68007781adae90de96bd1e39130d7837243b3d SHA256: 6b216c8ec2dee1adb1d254e919ad269168dc168d574783ffe5206b85a9cac15f Description: MIT Kerberos runtime libraries - krb5 GSS-API Mechanism Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 2dd7fe357b29d0ba6727171c01f0301c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgssapi-perl Priority: optional Section: perl Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.28-2build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.14), libgssapi-krb5-2 (>= 1.10+dfsg~) Filename: pool/main/libg/libgssapi-perl/libgssapi-perl_0.28-2build1_amd64.deb Size: 57516 MD5sum: f492ce6dc63990334197cb459419832c SHA1: 1aeb1e4f3f35f32539a75afe176038549eadc0fb SHA256: 7a99808da0e9e7d158be4ad95d961d49fd1ac12f32958e9fb5d93ffc9737e5d9 Description: Perl extension providing access to the GSSAPIv2 library Homepage: http://search.cpan.org/dist/GSSAPI/ Description-md5: ca68d5f988b8c3fc2ac22f49b2b065ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgssapi3-heimdal Priority: standard Section: libs Installed-Size: 323 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libasn1-8-heimdal (>= 1.4.0+git20110226), libc6 (>= 2.14), libcomerr2 (>= 1.01), libhcrypto4-heimdal (>= 1.4.0+git20110226), libheimntlm0-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.6~git20131117), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Conflicts: libgssapi3 Filename: pool/main/h/heimdal/libgssapi3-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 90126 MD5sum: 93c5c3efbcf29a456f1f84069d5f809e SHA1: 7f7822b7e95e528e015bd9d28ad664f674223ea4 SHA256: 187d9c6e4f72443f46731359cdb3b3e9c859d0e594c462f0d26d4691ab492e95 Description: Heimdal Kerberos - GSSAPI support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: af366fc4a421c3a53900cab1af5922e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgssdp-1.0-3 Priority: optional Section: libs Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: amd64 Source: gssdp Version: 0.14.7-1ubuntu1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libsoup2.4-1 (>= 2.26.1) Filename: pool/main/g/gssdp/libgssdp-1.0-3_0.14.7-1ubuntu1_amd64.deb Size: 26008 MD5sum: a982a0419385ed127b3128a458770a3a SHA1: 3bfa89c9f3a20424a8d05dd9824ef15e03153207 SHA256: c7d9c7ea59c0c64fe4829db0dcd2deb5eb0d4974746f17479b19b706f19dc683 Description: GObject-based library for SSDP Homepage: http://www.gupnp.org Description-md5: 1f32e3405a87412ac4a2f1ab29fdc11e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libgssdp-1.0-dbg Priority: optional Section: libdevel Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: amd64 Source: gssdp Version: 0.14.7-1ubuntu1 Depends: libgssdp-1.0-3 (= 0.14.7-1ubuntu1) Filename: pool/main/g/gssdp/libgssdp-1.0-dbg_0.14.7-1ubuntu1_amd64.deb Size: 84080 MD5sum: 63ce946391b0167c30bc04514e3a7c14 SHA1: 273e54501b10c5b9fcf589b5f847fe02ea5f34c0 SHA256: 24b311f15e70e5747aeb955eb782551fea1df99ce9d2d5518e3e7429e9fe7c33 Description: GObject-based library for SSDP (debug symbols) Homepage: http://www.gupnp.org Description-md5: bf28d5d39c668581bf6540b27ef584b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgssdp-1.0-dev Priority: optional Section: libdevel Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: amd64 Source: gssdp Version: 0.14.7-1ubuntu1 Replaces: gir-repository-dev (<= 0.6.5-5), gupnp-vala (<= 0.10.4) Depends: libgssdp-1.0-3 (= 0.14.7-1ubuntu1), gir1.2-gssdp-1.0 (= 0.14.7-1ubuntu1), libsoup2.4-dev Suggests: libgssdp-doc Breaks: gir-repository-dev (<= 0.6.5-5), gupnp-vala (<= 0.10.4) Filename: pool/main/g/gssdp/libgssdp-1.0-dev_0.14.7-1ubuntu1_amd64.deb Size: 27324 MD5sum: 99e2731ff7c3ee36cfdc73d577908f2f SHA1: f5129789fbe0250ad3ac30eea719aeeb5d1dd7fb SHA256: cdce52961796280ef04e798d0839950dc1bb60ac103bfb4b14bfb8bb7e0942d1 Description: GObject-based library for SSDP (development files) Homepage: http://www.gupnp.org Description-md5: 24d125dcec038893face07f8c878be98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgssdp-doc Priority: optional Section: doc Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: all Source: gssdp Version: 0.14.7-1ubuntu1 Depends: lynx | www-browser Filename: pool/main/g/gssdp/libgssdp-doc_0.14.7-1ubuntu1_all.deb Size: 20782 MD5sum: f9c0650cba4abfc190d492c22f663ddb SHA1: e9db92c26f2cecdb68b55ea862b1a0fc92062847 SHA256: da1c6cb074223deb7f59694a3e055411a36465e70640aa1a7f570c248d7224e5 Description: GObject-based library for SSDP (documentation) Homepage: http://www.gupnp.org Description-md5: e8ae890da00b06f4d32e389d620a1a18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgssglue-dev Priority: optional Section: libdevel Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libgssglue Version: 0.4-2ubuntu1 Replaces: libgssapi-dev (<= 0.11-1) Depends: libgssglue1 (= 0.4-2ubuntu1) Conflicts: libgssapi-dev (<= 0.11-1) Filename: pool/main/libg/libgssglue/libgssglue-dev_0.4-2ubuntu1_amd64.deb Size: 25822 MD5sum: f0b440bbc8d4dd444bc52324d96b4303 SHA1: 817ad288c730a7f201af79ce8e80440e75d1263c SHA256: 7d034c9ff3faa9ff5bd207a6d24bb465f45eae0efca219aa70df9522d2fe53a5 Description: header files and docs for libgssglue Homepage: http://www.citi.umich.edu/projects/nfsv4/linux/ Description-md5: 35720ad4288bc22005305dbcc9ea02a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgssglue1 Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libgssglue Version: 0.4-2ubuntu1 Replaces: libgssapi2 (<= 0.11-1) Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libgssapi2 (<= 0.11-1) Filename: pool/main/libg/libgssglue/libgssglue1_0.4-2ubuntu1_amd64.deb Size: 19710 MD5sum: 08250dff6de699fceff270123f609b49 SHA1: f2c0e33b6e80a819abdfc558dd49864a023b6f41 SHA256: 12d7887720a7093fa2935b483941bf0fbd6d704da03509634769e04daaa2e300 Description: mechanism-switch gssapi library Multi-Arch: same Homepage: http://www.citi.umich.edu/projects/nfsv4/linux/ Description-md5: 33d237300a5fcf648297ee929270d1f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgssrpc4 Priority: optional Section: libs Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.15), libgssapi-krb5-2 (>= 1.10+dfsg~) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Conflicts: libkadm55 Filename: pool/main/k/krb5/libgssrpc4_1.12+dfsg-2ubuntu4_amd64.deb Size: 53108 MD5sum: 88a53a0dd01247f9e0b3a22e3c494eaa SHA1: 9730b3b6947802a15388ae482b6454d617c0eb8f SHA256: c31611206985bf6c4277178362e80fb12d5c930e1c2a3fde508a5211717c4bb0 Description: MIT Kerberos runtime libraries - GSS enabled ONCRPC Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: f18b3ce27893cc2b96de6c617dc25d94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer-plugins-base0.10-0 Priority: optional Section: libs Installed-Size: 1440 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Replaces: gobject-introspection-repository (<< 0.6.5-2) Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libgstreamer0.10-0 (>= 0.10.36), liborc-0.4-0 (>= 1:0.4.18), zlib1g (>= 1:1.1.4), iso-codes Pre-Depends: multiarch-support Suggests: libvisual-0.4-plugins, gstreamer-codec-install | gnome-codec-install Conflicts: gstreamer0.10-pulseaudio (<< 0.10.16-4), totem-gstreamer (<= 2.17.92-0ubuntu1) Filename: pool/main/g/gst-plugins-base0.10/libgstreamer-plugins-base0.10-0_0.10.36-1.1ubuntu2_amd64.deb Size: 426350 MD5sum: f66ef6134da8d68d61b242a6e046a18e SHA1: 15705cd9d51798b6f3c68d87b5d27253d2a88eef SHA256: 924e9b810b7a68c27e68993b2403f1463a048c59071f27e997e81799b441c8d0 Description: GStreamer libraries from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: 1f83d48f1815b1413bf5322dc753ba59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgstreamer-plugins-base0.10-dev Priority: optional Section: libdevel Installed-Size: 2064 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Replaces: gobject-introspection-repository (<< 0.6.5-2) Depends: libgstreamer-plugins-base0.10-0 (= 0.10.36-1.1ubuntu2), libc6-dev | libc-dev, pkg-config, libgstreamer0.10-dev (>= 0.10.36), libglib2.0-dev, libxml2-dev, gir1.2-gst-plugins-base-0.10 (= 0.10.36-1.1ubuntu2) Filename: pool/main/g/gst-plugins-base0.10/libgstreamer-plugins-base0.10-dev_0.10.36-1.1ubuntu2_amd64.deb Size: 177608 MD5sum: 10caac491ca3cfac270aff611b146439 SHA1: c5e2dbb4f0692bbb9269a2a11a66454f334cfe0d SHA256: 25af75ff13cbe22550fdd63f38901d71cd8fe7dd9e3b625d4c0a01c79156c13d Description: GStreamer development files for libraries from the "base" set Homepage: http://gstreamer.freedesktop.org Description-md5: 0acc042058e8c9e8d17fbca59836d2a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer-plugins-base1.0-0 Priority: optional Section: libs Installed-Size: 1612 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libgstreamer1.0-0 (>= 1.2.0), liborc-0.4-0 (>= 1:0.4.18), zlib1g (>= 1:1.1.4), iso-codes Pre-Depends: multiarch-support Suggests: libvisual-0.4-plugins, gstreamer-codec-install | gnome-codec-install Breaks: totem-gstreamer (<= 2.17.92-0ubuntu1) Filename: pool/main/g/gst-plugins-base1.0/libgstreamer-plugins-base1.0-0_1.2.3-1_amd64.deb Size: 434978 MD5sum: 174c24ad0cfab05c6b78a1b1c50170f6 SHA1: ed9f85f885e620fd6356d5663e8d044198ec7e86 SHA256: 53fc258d1dfc437f6c4e96e892f1ecf193d6a7a96acbdc356a2cd9847d7b8ace Description: GStreamer libraries from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: 1f83d48f1815b1413bf5322dc753ba59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgstreamer-plugins-base1.0-dev Priority: optional Section: libdevel Installed-Size: 2275 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: libgstreamer-plugins-base1.0-0 (= 1.2.3-1), libc6-dev | libc-dev, pkg-config, libgstreamer1.0-dev (>= 1.2.0), libglib2.0-dev, libxml2-dev, gir1.2-gst-plugins-base-1.0 (= 1.2.3-1) Filename: pool/main/g/gst-plugins-base1.0/libgstreamer-plugins-base1.0-dev_1.2.3-1_amd64.deb Size: 195906 MD5sum: a226c9751870bc5ce688452faac2c527 SHA1: 89ff2b437873f7b5fc5bbc5a20364bdd0809a4f0 SHA256: 5521f4c95fe2ff2b916de42bd95912516960c6d88517df557a005cf6e641fa54 Description: GStreamer development files for libraries from the "base" set Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: 0acc042058e8c9e8d17fbca59836d2a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer-plugins-good1.0-0 Priority: extra Section: libs Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Replaces: gstreamer1.0-plugins-good (= 1.0.3-1ubuntu1), libgstreamer-plugins-bad1.0-0 (<< 1.0.3-1ubuntu1) Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0) Pre-Depends: multiarch-support Breaks: libgstreamer-plugins-bad1.0-0 (<< 1.0.3-1ubuntu1) Filename: pool/main/g/gst-plugins-good1.0/libgstreamer-plugins-good1.0-0_1.2.3-1ubuntu2_amd64.deb Size: 31530 MD5sum: 2bef8cac00fa22d4c64cb98315ba1fc8 SHA1: 5f8dccf4b5bbe48fd5a4405d11ce96bb5adc636b SHA256: 4df06a30c32f89f9fbca6e9fd74d6d087f8bfcff6e9483026ef8dd1fb7369071 Description: GStreamer development files for libraries from the "good" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Description-md5: 99c064697a600533c69cdc00ad0f48ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgstreamer-plugins-good1.0-dev Priority: extra Section: libdevel Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Depends: libgstreamer-plugins-good1.0-0 (= 1.2.3-1ubuntu2), libgstreamer1.0-dev Filename: pool/main/g/gst-plugins-good1.0/libgstreamer-plugins-good1.0-dev_1.2.3-1ubuntu2_amd64.deb Size: 16914 MD5sum: 199c62eff79b7c4f5167d6c931dd52a2 SHA1: 5d593e254f2dc1d9d0ec3d585c3c1503dbad5699 SHA256: 58cb54ea86de60bd02d20eba464d0b706c47fda6a12ee034636c9a9c078b4ed9 Description: GStreamer development files for libraries from the "good" set Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Description-md5: d5b042b5551683fe8cf1d03a80a7c168 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer0.10-0 Priority: optional Section: libs Installed-Size: 2604 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Replaces: gobject-introspection-repository (<< 0.6.5-2) Depends: libc6 (>= 2.17), libglib2.0-0 (>= 2.37.3), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Suggests: gstreamer0.10-tools, gstreamer0.10-plugins-base Conflicts: gstreamer0.10-plugins-base (<< 0.10.25.2), libgstreamer-plugins-base0.10-0 (<< 0.10.11cvs20070110-0ubuntu5) Filename: pool/main/g/gstreamer0.10/libgstreamer0.10-0_0.10.36-1.2ubuntu3_amd64.deb Size: 617708 MD5sum: 84e61f5eda991b978fa168d6762f7990 SHA1: 2ac20f8fe046162941a7fb675bc9f8bce7211bbb SHA256: 7bdbd408b96ee77019ed33514bde4016700ddeb8fc6d2254f787f633c9f15080 Description: Core GStreamer libraries and elements Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: f08b5d59945781d0a8d4897e45d5a847 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgstreamer0.10-0-dbg Priority: extra Section: libdevel Installed-Size: 3081 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Depends: libgstreamer0.10-0 (= 0.10.36-1.2ubuntu3) Filename: pool/main/g/gstreamer0.10/libgstreamer0.10-0-dbg_0.10.36-1.2ubuntu3_amd64.deb Size: 2046782 MD5sum: be403d86d41626ec788b972bb48897a1 SHA1: f89dd8922e4a1fd605b85d51df7c6e4b33a3d479 SHA256: cf1afd66c67566bbc556f041e242fc1ff23b76b17f950886d01e9e379168e7c6 Description: Core GStreamer libraries and elements Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: eca1cd2ce224cc45fde385a4110da4ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer0.10-dev Priority: optional Section: libdevel Installed-Size: 6624 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Replaces: gobject-introspection-repository (<< 0.6.5-2), gstreamer-tools (<< 0.10.20-2) Depends: libgstreamer0.10-0 (= 0.10.36-1.2ubuntu3), libc6-dev | libc-dev, pkg-config, libglib2.0-dev, libxml2-dev, libc6 (>= 2.2.5), libglib2.0-0 (>= 2.24), gir1.2-gstreamer-0.10 (= 0.10.36-1.2ubuntu3) Recommends: debhelper Suggests: gstreamer0.10-doc Filename: pool/main/g/gstreamer0.10/libgstreamer0.10-dev_0.10.36-1.2ubuntu3_amd64.deb Size: 816360 MD5sum: d0fbe471b95d5bcb279ad2d9ae92124c SHA1: 4112ca0db806bda992857926ef4777df5ec8e05d SHA256: 67fc49a14d73a642b951e75d7006b4608a82cc8e367dd045928f86dea92257d7 Description: GStreamer core development files Homepage: http://gstreamer.freedesktop.org Description-md5: de1692260510350a48f76ec91eae40a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer1.0-0 Priority: optional Section: libs Installed-Size: 2772 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gstreamer1.0 Version: 1.2.3-1 Depends: libc6 (>= 2.17), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Suggests: gstreamer1.0-tools, gstreamer1.0-plugins-base Filename: pool/main/g/gstreamer1.0/libgstreamer1.0-0_1.2.3-1_amd64.deb Size: 597452 MD5sum: 7a7ae5340164425433fe5a2468ef702e SHA1: f0c064646596c6e58e6111c2eff855913797b60c SHA256: 659488663d316544f22f61ecb17f4c74c7e9d34bfa18a1ff8636e2f89ee1efc2 Description: Core GStreamer libraries and elements Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: f08b5d59945781d0a8d4897e45d5a847 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgstreamer1.0-0-dbg Priority: extra Section: debug Installed-Size: 3091 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gstreamer1.0 Version: 1.2.3-1 Depends: libgstreamer1.0-0 (= 1.2.3-1) Filename: pool/main/g/gstreamer1.0/libgstreamer1.0-0-dbg_1.2.3-1_amd64.deb Size: 1918794 MD5sum: 2619e716f229a1560d900e7553fdd0fa SHA1: b80bb64b3922646c79de7280596c6554aa377fa6 SHA256: d57f4210e487f2c5a1c4508f89427f9188d2d624a76fceef1879f27d23806efe Description: Core GStreamer libraries and elements Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: eca1cd2ce224cc45fde385a4110da4ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer1.0-dev Priority: optional Section: libdevel Installed-Size: 4073 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gstreamer1.0 Version: 1.2.3-1 Depends: libgstreamer1.0-0 (= 1.2.3-1), libc6-dev | libc-dev, pkg-config, libglib2.0-dev, libc6 (>= 2.2.5), libglib2.0-0 (>= 2.32), gir1.2-gstreamer-1.0 (= 1.2.3-1) Recommends: debhelper Suggests: gstreamer1.0-doc Filename: pool/main/g/gstreamer1.0/libgstreamer1.0-dev_1.2.3-1_amd64.deb Size: 322684 MD5sum: 7b8c9975c0f37422fdc15ce7dbb86008 SHA1: 9f3859b95391ed9b6bcd409e5d6c351b451ffc12 SHA256: d5b749eb6e7b59b0be41c40ec1a1c5bcea94f82af59322dfdc6c2e663f4a78b8 Description: GStreamer core development files Homepage: http://gstreamer.freedesktop.org Description-md5: de1692260510350a48f76ec91eae40a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtest-dev Priority: optional Section: libdevel Installed-Size: 1302 Maintainer: Ubuntu Developers Original-Maintainer: Steve M. Robbins Architecture: all Source: gtest Version: 1.6.0-1ubuntu6 Filename: pool/main/g/gtest/libgtest-dev_1.6.0-1ubuntu6_all.deb Size: 262206 MD5sum: 3952cdc66cdead128769b18d13df4bd7 SHA1: d47ddbabd85abc4c6ba6ae4f54b7aefd3782f54e SHA256: 144e70bde71d5894da4cf8a4762a88cc5ca97df6b374828e59c83168151c7916 Description: Google's framework for writing C++ tests - header files Multi-Arch: foreign Homepage: http://code.google.com/p/googletest/ Description-md5: 91f80794a8414047791bb3f205c9aa39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-3-0 Priority: optional Section: libs Installed-Size: 6546 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Provides: gtk3-binver-3.0.0 Depends: libgtk-3-common (>= 3.10.8), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.7.5), libc6 (>= 2.14), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.13.0~20140204), libcolord1 (>= 0.1.10), libcups2 (>= 1.6.2), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.27.1), libglib2.0-0 (>= 2.39.4), libpango-1.0-0 (>= 1.32.4), libpangocairo-1.0-0 (>= 1.32.4), libpangoft2-1.0-0 (>= 1.32.4), libwayland-client0 (>= 1.3.92), libwayland-cursor0 (>= 1.2.0), libx11-6 (>= 2:1.4.99.1), libxcomposite1 (>= 1:0.3-1), libxcursor1 (>> 1.1.2), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxi6 (>= 2:1.2.99.4), libxinerama1, libxkbcommon0 (>= 0.2.0-0ubuntu3~), libxrandr2 (>= 2:1.2.99.3), shared-mime-info Pre-Depends: multiarch-support Recommends: hicolor-icon-theme, libgtk-3-bin Suggests: librsvg2-common, gvfs Breaks: gnome-themes-standard (<< 3.6), gtk3-engines-unico (<< 1.0.2-0ubuntu2), libvte-2.90-9 (<< 1:0.32), libwebkitgtk-3.0-0 (<< 1.8.0), murrine-themes (<= 0.98.2) Filename: pool/main/g/gtk+3.0/libgtk-3-0_3.10.8-0ubuntu1_amd64.deb Size: 1959484 MD5sum: fd302d459225223266a91211628827a6 SHA1: 3130e54fba46fc3ccdb64ef5a7257b4ec876b1eb SHA256: 68375ad38f71586470b420afc2bc5b630419aae086e31a8b6515768f3de80c61 Description: GTK+ graphical user interface library Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 2d73631a8c144c8ea021cee46ee049b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk-3-0-dbg Priority: extra Section: debug Installed-Size: 22991 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libgtk-3-0 (= 3.10.8-0ubuntu1), libgtk-3-common Filename: pool/main/g/gtk+3.0/libgtk-3-0-dbg_3.10.8-0ubuntu1_amd64.deb Size: 5353754 MD5sum: 594ffd6fdd1838245b6f304f05501917 SHA1: 175982f5d9820d0213742380f7559dd4eacce61a SHA256: 038ea350b53640110da1175651c0d0f02957cc219b487bff34a07d6251b17b36 Description: GTK+ libraries and debugging symbols Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: dc8b9ec0e4c1ec0225178df62ff88672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-3-bin Priority: optional Section: misc Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.5), libgtk-3-0 (>= 3.10.8-0ubuntu1), libgtk-3-common (>= 3.10.8) Filename: pool/main/g/gtk+3.0/libgtk-3-bin_3.10.8-0ubuntu1_amd64.deb Size: 18138 MD5sum: bef30bb14a4ec2e96edc9a818d7f02cf SHA1: 2612bed2e4959316dd1c97053e65f65bef249e27 SHA256: a690f387d48170daaaa595a2a5581ded0c20315be70595c9c4bb0ad3750d08f5 Description: programs for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 35573b29e3a6877ccd55de7c6873d715 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk-3-common Priority: optional Section: misc Installed-Size: 352 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Replaces: libgtk-3-0 (<< 3.5.4) Depends: dconf-gsettings-backend | gsettings-backend Recommends: libgtk-3-0 Breaks: libgtk-3-0 (<< 3.5.4) Filename: pool/main/g/gtk+3.0/libgtk-3-common_3.10.8-0ubuntu1_all.deb Size: 167556 MD5sum: d4813d01e43889bf2b464e8f89dd919d SHA1: 1b838c0b33ac4e5ca9fefa420af40cecafc9fbfd SHA256: 53866d86711233389c48fb0c680c4c6d658e1517d8f24417ff5cbb0b75e220f8 Description: common files for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 3ebc2dc44381a6b09ce3f8e0696e2008 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk-3-dev Priority: optional Section: libdevel Installed-Size: 9627 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libgtk-3-0 (= 3.10.8-0ubuntu1), gir1.2-gtk-3.0 (= 3.10.8-0ubuntu1), libgtk-3-common, libglib2.0-dev (>= 2.37.5), libgdk-pixbuf2.0-dev (>= 2.27.1), libpango1.0-dev (>= 1.32.4), libatk1.0-dev (>= 2.7.5), libatk-bridge2.0-dev, libcairo2-dev (>= 1.13.0~20140204), libwayland-dev (>= 1.2.0), libx11-dev, libxkbcommon-dev, libxext-dev, libxinerama-dev, libxi-dev, libxrandr-dev, libxcursor-dev, libxfixes-dev, libxcomposite-dev, libxdamage-dev, pkg-config (>= 0.26-1) Suggests: libgtk-3-doc Filename: pool/main/g/gtk+3.0/libgtk-3-dev_3.10.8-0ubuntu1_amd64.deb Size: 800374 MD5sum: cf91ca66dea0e669cc571ffdc014d420 SHA1: bc6ee005ef6c75b6f24d96e7cb1460b40a0e6f33 SHA256: aa7882af664a8c6c28e1e4e3de17019cb7b2b6109843c70039b9635de8d4f718 Description: development files for the GTK+ library Homepage: http://www.gtk.org/ Description-md5: 5e247317651e3625eb226ee49f0cfec7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-3-doc Priority: optional Section: doc Installed-Size: 20091 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Recommends: libglib2.0-doc, libatk1.0-doc, libpango1.0-doc Suggests: devhelp Filename: pool/main/g/gtk+3.0/libgtk-3-doc_3.10.8-0ubuntu1_all.deb Size: 2558832 MD5sum: 4cdbca2577504cb84afad4b5a9d3eb1a SHA1: 9e877807f67c0ce216c70764535073a9124323bb SHA256: d90f542e5cd1395593f4d4a58c9e6b1117e63b456df43fb3e7079fd668e5a55b Description: documentation for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 0daae17852bb4b449b026f369e26dde3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libgtk-vnc-1.0-0 Priority: optional Section: libs Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.22.0), libgvnc-1.0-0 (>= 0.5.1), libx11-6 Filename: pool/main/g/gtk-vnc/libgtk-vnc-1.0-0_0.5.3-0ubuntu2_amd64.deb Size: 22790 MD5sum: 38c22a4011e14b8e16044f4caa27a56e SHA1: 6266518ff8193209d55e9cdf6d4ab05839b9914c SHA256: e600a8c9ac5c0e26e43bb231841e2dd92b162d297423f24850e10d82853a0e80 Description: VNC viewer widget for GTK+2 (runtime libraries) Description-md5: 001aae7cbcebe01925d88ddfb225fe00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgtk-vnc-1.0-0-dbg Priority: extra Section: libs Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libgtk-vnc-1.0-0 (= 0.5.3-0ubuntu2) Filename: pool/main/g/gtk-vnc/libgtk-vnc-1.0-0-dbg_0.5.3-0ubuntu2_amd64.deb Size: 59886 MD5sum: a1bd57e98693110238609c858300419d SHA1: 72ede3e227ae751c05dc7ec9854811bf6b10e611 SHA256: 8440313468cd5962386b728cd2e50d5f6c2a776571f014c60df93411d3afbabd Description: VNC viewer widget for GTK+2 (debugging symbols) Description-md5: 189086149200162afe0125d2da22b952 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-vnc-1.0-dev Priority: optional Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libgtk-vnc-1.0-0 (= 0.5.3-0ubuntu2), libgvnc-1.0-dev (= 0.5.3-0ubuntu2), libgtk2.0-dev (>= 2.0), libgnutls-dev (>= 1.4.0), libcairo2-dev (>= 1.2.0) Filename: pool/main/g/gtk-vnc/libgtk-vnc-1.0-dev_0.5.3-0ubuntu2_amd64.deb Size: 5026 MD5sum: 3b57533ef8fffff3bf95b3076442fd8c SHA1: 2baa71d07bd1f1de160733c22b6b646e55e7c8ff SHA256: fc815cde09a3f7f843563fabcca837883acd155c74bfd26da460781ec89479a9 Description: VNC viewer widget for GTK+2 (development files) Description-md5: 53b35ac1e97a5884b2b4d9f64793eae1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-vnc-2.0-0 Priority: optional Section: libs Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libgvnc-1.0-0 (>= 0.5.1), libx11-6 Filename: pool/main/g/gtk-vnc/libgtk-vnc-2.0-0_0.5.3-0ubuntu2_amd64.deb Size: 22290 MD5sum: cd4be687a1fa9f5b56e8390e90eaf621 SHA1: 5d4ba086da5495fc1a99425e1282cfc7bad9e0e7 SHA256: 26daba97c5c037db5288cf28788823d4e9bd72ca947fb9c0e7143ad7eb3db02a Description: VNC viewer widget for GTK+3 (runtime libraries) Description-md5: fc348729f8e6c7823db7b251e45bac96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-desktop Package: libgtk-vnc-2.0-0-dbg Priority: extra Section: debug Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libgtk-vnc-2.0-0 (= 0.5.3-0ubuntu2) Filename: pool/main/g/gtk-vnc/libgtk-vnc-2.0-0-dbg_0.5.3-0ubuntu2_amd64.deb Size: 55568 MD5sum: 08853c241493aa83f8bdaebc469decad SHA1: 5079928fba5ca6287d7bebe2c524586cb2fd60cc SHA256: 437d0d6165a6496eac8fc84c215dcd6b1db8abfaefc3c30c5caa59de4883d0c0 Description: VNC viewer widget for GTK+3 (debugging symbols) Description-md5: 2cac0edf07284a74e3223eda1e9cd0a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-vnc-2.0-dev Priority: optional Section: libdevel Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libgvnc-1.0-dev (= 0.5.3-0ubuntu2), libgtk-vnc-2.0-0 (= 0.5.3-0ubuntu2), gir1.2-gtk-vnc-2.0 (= 0.5.3-0ubuntu2), libgtk-3-dev, libgnutls-dev (>= 1.4.0), libcairo2-dev (>= 1.2.0) Filename: pool/main/g/gtk-vnc/libgtk-vnc-2.0-dev_0.5.3-0ubuntu2_amd64.deb Size: 9290 MD5sum: 40783556e16c28289d844b9f6a677096 SHA1: 60dd1356f105f043dcb7272216ceaf22ab61522f SHA256: 328618e078dc572e088c97eac629867d47395389caac0811f979ca527f939c62 Description: VNC viewer widget for GTK+3 (development files) Description-md5: 0daa1fb1862eab5c045613d5b035a5e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk2.0-0 Priority: optional Section: libs Installed-Size: 6136 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Provides: gtk2.0-binver-2.10.0 Depends: libgtk2.0-common, libatk1.0-0 (>= 1.32.0), libc6 (>= 2.14), libcairo2 (>= 1.6.4-6.1), libcups2 (>= 1.6.2), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.28.3), libpangocairo-1.0-0 (>= 1.28.3), libpangoft2-1.0-0 (>= 1.28.3), libx11-6 (>= 2:1.4.99.1), libxcomposite1 (>= 1:0.3-1), libxcursor1 (>> 1.1.2), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxi6, libxinerama1, libxrandr2 (>= 2:1.2.99.3), libxrender1, shared-mime-info Pre-Depends: multiarch-support Recommends: hicolor-icon-theme, libgtk2.0-bin Suggests: librsvg2-common, gvfs Filename: pool/main/g/gtk+2.0/libgtk2.0-0_2.24.23-0ubuntu1_amd64.deb Size: 1733412 MD5sum: 9c60860748721b811d46214bbd5adfa0 SHA1: f1fb202a91ee3ce0bae52066fecac4e033417fbc SHA256: de73533c5ec22cd50afb4d2618b8ad2719b1b6314f735cc3efefe3829311517b Description: GTK+ graphical user interface library Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 2d73631a8c144c8ea021cee46ee049b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk2.0-0-dbg Priority: extra Section: libdevel Installed-Size: 20844 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libgtk2.0-0 (= 2.24.23-0ubuntu1), libgtk2.0-common Filename: pool/main/g/gtk+2.0/libgtk2.0-0-dbg_2.24.23-0ubuntu1_amd64.deb Size: 4723780 MD5sum: 377b35663f5da4e84a12e2342176d02c SHA1: c7508b0232476ff9fc330d4a0432e6a1cb1fd522 SHA256: b4603658f481eae335af27466e4ac35f9a9c995b01b1f8d8522ca5d0ec9782ba Description: GTK+ libraries and debugging symbols Homepage: http://www.gtk.org/ Description-md5: dc8b9ec0e4c1ec0225178df62ff88672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk2.0-bin Priority: optional Section: misc Installed-Size: 570 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libgtk2.0-0 (= 2.24.23-0ubuntu1), libgtk2.0-common Filename: pool/main/g/gtk+2.0/libgtk2.0-bin_2.24.23-0ubuntu1_amd64.deb Size: 9788 MD5sum: 514622c1fd24467fd91b974c7c858257 SHA1: ebf6bfb69490b458c806603d77806917d4ae5aa5 SHA256: b04a0857210ec4982b9bb96cc83f020741715224c6d37eaaf52a2068f9375d88 Description: programs for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 35573b29e3a6877ccd55de7c6873d715 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk2.0-cil Priority: optional Section: libs Installed-Size: 2330 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: amd64 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: gtk-sharp2-gapi (<< 2.10.0-1) Depends: cli-common (>= 0.5.6), libatk1.0-0 (>= 2.6.0), libcairo2 (>= 1.12.0), libgdk-pixbuf2.0-0 (>= 2.26.4), libglib2.0-0 (>= 2.34.1), libglib2.0-cil (= 2.12.10-5), libgtk2.0-0 (>= 2.24.0), libmono-cairo4.0-cil (>= 2.10.1), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-drawing4.0-cil (>= 1.0), libpango1.0-0 (>= 1.29.4), libc6 (>= 2.2.5) Suggests: monodoc-gtk2.0-manual Filename: pool/main/g/gtk-sharp2/libgtk2.0-cil_2.12.10-5_amd64.deb Size: 620752 MD5sum: 77a40b773e5eeec617554befba9eaf0f SHA1: 1c9eaa009cc3c9b3d414ec8d2a7e8de194e2a5a7 SHA256: 038ec1ac2c61eae17c597d9c2a60bf39fc45dabb3485d15ed218b706174a68e8 Description: CLI binding for the GTK+ toolkit 2.12 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 302b3671c7a7ae8862c5bf47e00cad6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libgtk2.0-cil-dev Priority: optional Section: libs Installed-Size: 1696 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: amd64 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: libgtk2.0-cil (<< 2.12.9-2) Depends: libglib2.0-cil-dev (= 2.12.10-5), libgtk2.0-cil (= 2.12.10-5) Filename: pool/main/g/gtk-sharp2/libgtk2.0-cil-dev_2.12.10-5_amd64.deb Size: 155366 MD5sum: a42b7e618c211d6c9abf8991e2a8a2ca SHA1: 7809abec0871afabb0e63e5d575fd2c2e48185ef SHA256: 4fe312541d4cc8dc29d0b00ee13cc9bb2f56b4107f7c0ad1831828a048c0e0cf Description: CLI binding for the GTK+ toolkit 2.12 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 4ae2d98a41b4ac28fdcee18f721494a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk2.0-common Priority: optional Section: misc Installed-Size: 732 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Replaces: libgtk2.0-0 (<< 2.24.8-2) Recommends: libgtk2.0-0 Breaks: libgtk2.0-0 (<< 2.24.8-2) Filename: pool/main/g/gtk+2.0/libgtk2.0-common_2.24.23-0ubuntu1_all.deb Size: 120808 MD5sum: c64b2bb1846e583b318d07a8c043839f SHA1: 1365ea4c5a4e54c4643a0e0bd4af32224f85e2ab SHA256: 06677a831a9608d72bc3bcdb55a058dbcbc41162a5b7ad692522ef1f591c1842 Description: common files for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 3ebc2dc44381a6b09ce3f8e0696e2008 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk2.0-dev Priority: optional Section: libdevel Installed-Size: 19428 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Replaces: gir-repository-dev Depends: libgtk2.0-0 (= 2.24.23-0ubuntu1), gir1.2-gtk-2.0 (= 2.24.23-0ubuntu1), libgtk2.0-common, libglib2.0-dev (>= 2.27.3), libgdk-pixbuf2.0-dev (>= 2.21.0), libpango1.0-dev (>= 1.20), libatk1.0-dev (>= 1.29.2), libcairo2-dev (>= 1.6.4-6.1), libx11-dev (>= 2:1.0.0-6), libxext-dev (>= 1:1.0.1-2), libxinerama-dev (>= 1:1.0.1-4.1), libxi-dev (>= 1:1.0.1-4), libxrandr-dev (>= 2:1.2.99), libxcursor-dev, libxfixes-dev (>= 1:3.0.0-3), libxcomposite-dev (>= 1:0.2.0-3), libxdamage-dev (>= 1:1.0.1-3), pkg-config (>= 0.26-1), libxml2-utils Recommends: python (>= 2.4), debhelper Suggests: libgtk2.0-doc Filename: pool/main/g/gtk+2.0/libgtk2.0-dev_2.24.23-0ubuntu1_amd64.deb Size: 2560220 MD5sum: fdf6f33ebbee6890e9442538dc5af508 SHA1: f07322bd09aa14c458d1f5bb46eece0c5fdf0ad3 SHA256: 1c361ecc94de973661e7fce0b5445b3e3b20a4b957b9e0a0c3cca605565b19af Description: development files for the GTK+ library Homepage: http://www.gtk.org/ Description-md5: af1caa5ba73fd17300b1f1bca4680e0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk2.0-doc Priority: optional Section: doc Installed-Size: 22858 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Recommends: libglib2.0-doc, libatk1.0-doc, libpango1.0-doc Suggests: devhelp Filename: pool/main/g/gtk+2.0/libgtk2.0-doc_2.24.23-0ubuntu1_all.deb Size: 2306840 MD5sum: 317a3d8ead8994a975f9278fce496286 SHA1: 9762fcfe4d22b3e4f66bc412cb87ba0a2c105a0e SHA256: 8494572ba64106905a14f83a5381b8adf8208fef8b4f79cd6f71bbb74c413235 Description: documentation for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 72db06b5e9e6765255aec71fbc48af5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkhtml-4.0-0 Priority: optional Section: libs Installed-Size: 906 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libgail-3-0 (>= 3.0.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.30.0), libgtk-3-0 (>= 3.0.2), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libgtkhtml-4.0-common (= 4.6.6-2ubuntu1) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-4.0-0_4.6.6-2ubuntu1_amd64.deb Size: 297556 MD5sum: 615e6f7e1ba7dd0814c7e64a1eeb9927 SHA1: 3f279a1ae38587937bc33313865735939fd22c3a SHA256: d7e9f7fd0b4d415d212eb940282b03790f988f76fd1d450336b911f069d9a048 Description: HTML rendering/editing library - runtime files Homepage: http://www.gnome.org/projects/evolution/ Description-md5: 9cabb26478f8a12fecfd8e07ff59fc16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libgtkhtml-4.0-common Priority: optional Section: libs Installed-Size: 456 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: all Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: gnome-icon-theme (>= 2.22.0) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-4.0-common_4.6.6-2ubuntu1_all.deb Size: 72666 MD5sum: e654d176d3bf687b2716dbc03cd1e392 SHA1: 444e39e77dedccf76378bf8ac00bc1a8f64f15db SHA256: e54e67095eb5e403cfec1bbe7fb65cb35e942074e806888244549becbe9696b8 Description: HTML rendering/editing library - common data Homepage: http://www.gnome.org/projects/evolution/ Description-md5: f0166ef4eba4f8bf8d64fe29e5f22160 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libgtkhtml-4.0-dbg Priority: extra Section: debug Installed-Size: 1704 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: libgtkhtml-4.0-0 (= 4.6.6-2ubuntu1), libgtkhtml-editor-4.0-0 (= 4.6.6-2ubuntu1) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-4.0-dbg_4.6.6-2ubuntu1_amd64.deb Size: 1400800 MD5sum: 1c5654e03fe436e970330bcfc6360819 SHA1: 968d4a8d9183faa4545daa1656a438fe177949fb SHA256: 940b6370a31d6438334024bba5dc79e442ab0315688fb833bac334fc975e1ce6 Description: HTML rendering/editing library - debug files Homepage: http://www.gnome.org/projects/evolution/ Description-md5: a8f18136331960bb060ad924b6d25d0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkhtml-4.0-dev Priority: optional Section: libdevel Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: libgtkhtml-4.0-0 (= 4.6.6-2ubuntu1), gsettings-desktop-schemas-dev, iso-codes, libcairo2-dev (>= 1.10.0), libenchant-dev (>= 1.1.7), libgconf2-dev, libgtk-3-dev (>= 3.0.2) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-4.0-dev_4.6.6-2ubuntu1_amd64.deb Size: 12182 MD5sum: 7120bd9b2351e90b31dce5a4e678e17b SHA1: 876b0dad69e34a0abc478a1377674c9cfa63c005 SHA256: f6c47c5a54ed79fe50977daa363b2548f06c8da7fb12edcdc8bf5b52f63a8064 Description: HTML rendering/editing library - development files Homepage: http://www.gnome.org/projects/evolution/ Description-md5: a569918f85273db7998216472807e4ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkhtml-editor-4.0-0 Priority: optional Section: libs Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: libc6 (>= 2.2.5), libcairo2 (>= 1.10.0), libenchant1c2a (>= 1.6.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.2), libgtkhtml-4.0-0 (= 4.6.6-2ubuntu1), libgtkhtml-4.0-common (= 4.6.6-2ubuntu1) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-editor-4.0-0_4.6.6-2ubuntu1_amd64.deb Size: 63978 MD5sum: e388d0bb6f5af5935a1556c1ce5869fe SHA1: 817dc6cf6b8c7cb788696c10eb19771fc4659489 SHA256: 4f5daa013599bc2d442f09257902185bd1cf45038a0fe23f35758d752b607f22 Description: HTML rendering/editing library - editor widget Homepage: http://www.gnome.org/projects/evolution/ Description-md5: 763620e467dcce962478a03f98b839ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libgtkhtml-editor-4.0-dev Priority: extra Section: libdevel Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: amd64 Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: libgtkhtml-editor-4.0-0 (= 4.6.6-2ubuntu1), libgtkhtml-4.0-dev (= 4.6.6-2ubuntu1) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-editor-4.0-dev_4.6.6-2ubuntu1_amd64.deb Size: 6864 MD5sum: 8507eb1ecba2ff26dff0ee0540c89650 SHA1: 9e5274a44fd25084593f83c738f287b82a2e6821 SHA256: e9c8f79489773e211bfb88d59097a5a02393760b07a1f1119ca9ba422f2fa217 Description: HTML rendering/editing library - editor widget development files Homepage: http://www.gnome.org/projects/evolution/ Description-md5: e231fd3ca061829155ca7ee4294ecab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-2.4-1c2a Priority: optional Section: libs Installed-Size: 4796 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: amd64 Source: gtkmm2.4 Version: 1:2.24.4-1ubuntu1 Depends: libatkmm-1.6-1 (>= 2.22.1), libc6 (>= 2.14), libcairomm-1.0-1 (>= 1.6.4), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libglibmm-2.4-1c2a (>= 2.36.2), libgtk2.0-0 (>= 2.24.0), libpangomm-1.4-1 (>= 2.27.1), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/g/gtkmm2.4/libgtkmm-2.4-1c2a_2.24.4-1ubuntu1_amd64.deb Size: 655370 MD5sum: 157183afd7fe8df99acfa2776248ae32 SHA1: 4d7344848df05b5e9fad250bc86c319365173b5f SHA256: 08c80590fb5baa5e1be9a6f418dcaf672334213b1ae3aaba77e0560ee8fce39a Description: C++ wrappers for GTK+ (shared libraries) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 4a2b51cf5fb6a6ce6ead2e4920180ec3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb, edubuntu-live, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-live, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-live Package: libgtkmm-2.4-dbg Priority: extra Section: libdevel Installed-Size: 8158 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: amd64 Source: gtkmm2.4 Version: 1:2.24.4-1ubuntu1 Depends: libgtkmm-2.4-1c2a (= 1:2.24.4-1ubuntu1) Filename: pool/main/g/gtkmm2.4/libgtkmm-2.4-dbg_2.24.4-1ubuntu1_amd64.deb Size: 7144874 MD5sum: c67aa45b3a4efac072f3f41b6a4f1fb0 SHA1: a26d6cd75a4cee9d4349665759de3142c92aeff8 SHA256: 8bd96f08bbf545d33351ad37ee785409f240fbc74d19fd8cf8415a05c45591df Description: C++ wrappers for GTK+ (debug symbols) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: e76dcadfb10d67c229191a66c3e42c42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-2.4-dev Priority: optional Section: libdevel Installed-Size: 3707 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: amd64 Source: gtkmm2.4 Version: 1:2.24.4-1ubuntu1 Depends: libgtkmm-2.4-1c2a (= 1:2.24.4-1ubuntu1), libgtk2.0-dev (>= 2.24.0), libglibmm-2.4-dev (>= 2.27.93), libpangomm-1.4-dev (>= 2.27.1), libatkmm-1.6-dev (>= 2.22.2) Suggests: libgtkmm-2.4-doc Filename: pool/main/g/gtkmm2.4/libgtkmm-2.4-dev_2.24.4-1ubuntu1_amd64.deb Size: 392318 MD5sum: 3ce498a3e027ac9c700851078855d683 SHA1: 2e5adeb8bffd1aca31018c7a01b4301fadbc7ef3 SHA256: 3cf4ef9e3a9adc463caf0f3951c8ffe6ebb7ed10c873eed2ef894962c377e316 Description: C++ wrappers for GTK+ (development files) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: e68a2abad5b07fd4f30810093eb12c3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-2.4-doc Priority: optional Section: doc Installed-Size: 48788 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: all Source: gtkmm2.4 Version: 1:2.24.4-1ubuntu1 Depends: lynx | www-browser, doc-base Recommends: gtkmm-documentation Filename: pool/main/g/gtkmm2.4/libgtkmm-2.4-doc_2.24.4-1ubuntu1_all.deb Size: 9009384 MD5sum: 61c27cae34712b5d9bf95b4d58b2304e SHA1: 8ca512a9e4bc5c456837fd27aded3644570f44dc SHA256: f049cae6a4fca2abba92f608b29e63cc85705f6603a3de8f4ef57aece1440143 Description: C++ wrappers for GTK+ (documentation) Multi-Arch: foreign Homepage: http://www.gtkmm.org/ Description-md5: d6c9e996ef21360e23ce9c23697f8561 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-3.0-1 Priority: optional Section: libs Installed-Size: 5487 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtkmm3.0 Version: 3.10.1-0ubuntu2 Depends: libatkmm-1.6-1 (>= 2.22.1), libc6 (>= 2.14), libcairomm-1.0-1 (>= 1.6.4), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.18.0), libglibmm-2.4-1c2a (>= 2.36.2), libgtk-3-0 (>= 3.10.0), libpangomm-1.4-1 (>= 2.27.1), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/g/gtkmm3.0/libgtkmm-3.0-1_3.10.1-0ubuntu2_amd64.deb Size: 727536 MD5sum: 15e783058ac016560ebc4a6e6a0dc054 SHA1: 55e29446394ba53e12838aa3da6d784049db8427 SHA256: 3c38a974dc09df8c260821c4407df1b5c317c0e149376529873078d66353f1ec Description: C++ wrappers for GTK+ (shared libraries) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 9e871052eb8d513d5dd06b03c8db0f3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtkmm-3.0-dbg Priority: extra Section: debug Installed-Size: 20705 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtkmm3.0 Version: 3.10.1-0ubuntu2 Depends: libgtkmm-3.0-1 (= 3.10.1-0ubuntu2) Filename: pool/main/g/gtkmm3.0/libgtkmm-3.0-dbg_3.10.1-0ubuntu2_amd64.deb Size: 4253876 MD5sum: 18df373386be8c2feefe54e03dee7ecc SHA1: 533be7b903f422314458760cdc6baaf077558ab2 SHA256: 9823cc8e6bfe72edec2e3f1dd911167d13c215c473f4de53cfbd8bcc0f018053 Description: C++ wrappers for GTK+ (debug symbols) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: a3b89ae4c7b8bd10be117b16a28882e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-3.0-dev Priority: optional Section: libdevel Installed-Size: 4390 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtkmm3.0 Version: 3.10.1-0ubuntu2 Depends: libgtkmm-3.0-1 (= 3.10.1-0ubuntu2), libgtk-3-dev (>= 3.10.0), libglibmm-2.4-dev (>= 2.38.0), libcairomm-1.0-dev (>= 1.9.2), libpangomm-1.4-dev (>= 2.27.1), libatkmm-1.6-dev (>= 2.22.2), libgdk-pixbuf2.0-dev (>= 2.22.1) Suggests: libgtkmm-3.0-doc Filename: pool/main/g/gtkmm3.0/libgtkmm-3.0-dev_3.10.1-0ubuntu2_amd64.deb Size: 462428 MD5sum: de4d9d69b13c00cd6f82973535ddc7fe SHA1: 295ef6ec61478452e0964e81e6c3d874acf7a5f8 SHA256: 533879d207790a3f4c9f5b188b69029b8041d5ca3e6f714b80f81b2fc3982e35 Description: C++ wrappers for GTK+ (development files) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 3ee9e8a54eda63f3e68a65b54efa009a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-3.0-doc Priority: optional Section: doc Installed-Size: 112734 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtkmm3.0 Version: 3.10.1-0ubuntu2 Depends: lynx | www-browser, doc-base Recommends: gtkmm-documentation Filename: pool/main/g/gtkmm3.0/libgtkmm-3.0-doc_3.10.1-0ubuntu2_all.deb Size: 9025014 MD5sum: b4bc89477f1060a10adad194a6f04aa4 SHA1: 5bec9e6f5f022109aaed7e75be12769c0c3d692a SHA256: 49b3fc4f6a62681e4d7234b0e0e36d35116de6cab7b27d609ae48136cc1aaa75 Description: C++ wrappers for GTK+ (documentation) Multi-Arch: foreign Homepage: http://www.gtkmm.org/ Description-md5: 6074cd934d2d7a906fb053982152b389 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtksourceview-3.0-1 Priority: optional Section: libs Installed-Size: 705 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtksourceview3 Version: 3.10.2-0ubuntu1 Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.38.0), libgtk-3-0 (>= 3.10), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libxml2 (>= 2.7.4), libgtksourceview-3.0-common (>= 3.10.2-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/g/gtksourceview3/libgtksourceview-3.0-1_3.10.2-0ubuntu1_amd64.deb Size: 169058 MD5sum: 553f674d3308aeb5266389a709e24ed4 SHA1: eb5ec095c76e1b205553f8b5ad2091a2c9463731 SHA256: e748dfdbbb72d38b8bfc41a70067d3a86049954cf04726f10186a718b2eaeadc Description: shared libraries for the GTK+ syntax highlighting widget Multi-Arch: same Homepage: http://projects.gnome.org/gtksourceview/ Description-md5: 86c0657d8cc2203a66f02fa09a5105a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtksourceview-3.0-common Priority: optional Section: libs Installed-Size: 1656 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtksourceview3 Version: 3.10.2-0ubuntu1 Replaces: libgtksourceview-3.0-0 Conflicts: libgtksourceview-3.0-0 Filename: pool/main/g/gtksourceview3/libgtksourceview-3.0-common_3.10.2-0ubuntu1_all.deb Size: 154540 MD5sum: 8a0886475055caab7201921575e2b518 SHA1: 1484a5b4822c9ccb46ac707d3e2738cb2b4f352c SHA256: e9b934e7858268f92b32bb756d377a24f401d9ca4f68cbffe90450b575447c6b Description: common files for the GTK+ syntax highlighting widget Multi-Arch: foreign Homepage: http://projects.gnome.org/gtksourceview/ Description-md5: 048429c0fa63ec73efc5c1e93957e6ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtksourceview-3.0-dev Priority: optional Section: libdevel Installed-Size: 1825 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtksourceview3 Version: 3.10.2-0ubuntu1 Replaces: libgtksourceview-3.0-common (<< 3.2.3-2) Depends: libgtksourceview-3.0-1 (= 3.10.2-0ubuntu1), gir1.2-gtksource-3.0 (= 3.10.2-0ubuntu1), libgtk-3-dev (>= 3.10), libxml2-dev (>= 2.6.0) Suggests: libgtksourceview-3.0-doc Breaks: libgtksourceview-3.0-common (<< 3.2.3-2) Filename: pool/main/g/gtksourceview3/libgtksourceview-3.0-dev_3.10.2-0ubuntu1_amd64.deb Size: 225470 MD5sum: ca2060d85e3beb31e7ccb83b5c69c272 SHA1: 061c236131e923834f952e0f5455c4fb99d4df0b SHA256: a7c5a71a5efe9ce90e3cd2cfbd0930668232d3db90992476f5c3c9aad146f85a Description: development files for the GTK+ syntax highlighting widget Homepage: http://projects.gnome.org/gtksourceview/ Description-md5: 63bb614e6573822ae0f4723474fb9ea4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtksourceview-3.0-doc Priority: optional Section: doc Installed-Size: 1655 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtksourceview3 Version: 3.10.2-0ubuntu1 Suggests: devhelp Filename: pool/main/g/gtksourceview3/libgtksourceview-3.0-doc_3.10.2-0ubuntu1_all.deb Size: 99682 MD5sum: f51a4a979ef5d3a4dd316ce310c2545e SHA1: 84c4c66b529eb8a42e5d054429751adf6b9ef835 SHA256: 483b2e10e50e5e6d3d90f493ba6fca6aecb2524b66b8b7d62989823c221ce4f5 Description: documentation for the GTK+ syntax highlighting widget Homepage: http://projects.gnome.org/gtksourceview/ Description-md5: 7ee458d7d2be7ad3d17fbeefc5af1abf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkspell-dev Priority: optional Section: libdevel Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: amd64 Source: gtkspell Version: 2.0.16-1ubuntu7 Depends: libenchant-dev, libgtk2.0-dev, libgtkspell0 (= 2.0.16-1ubuntu7) Filename: pool/main/g/gtkspell/libgtkspell-dev_2.0.16-1ubuntu7_amd64.deb Size: 22872 MD5sum: 413a7d4ac28a14f1c5e84230a185e4ec SHA1: 002510c559e9c886b7d2baebb163ffa1dcb5d600 SHA256: cb2352befbefd385408443658343c7dc2df4afbdb4fb53bbc1b80953c8439530 Description: Development files for GtkSpell Description-md5: 1e3b6ed0827fd853c17cd8f846d1a124 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkspell0 Priority: optional Section: libs Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: amd64 Source: gtkspell Version: 2.0.16-1ubuntu7 Depends: libc6 (>= 2.2.5), libenchant1c2a (>= 1.6.0), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.8.0) Filename: pool/main/g/gtkspell/libgtkspell0_2.0.16-1ubuntu7_amd64.deb Size: 11044 MD5sum: 0ad5e311620f503b1cdaa35881be1021 SHA1: e7142e50e86af5d750a74c7b3d0652fe45b12384 SHA256: fddb05747715abe92589c45306df48823a50d228c726cb7169998371fc0d1c51 Description: a spell-checking addon for GTK's TextView widget Description-md5: 3b548eff3a5e85463c18931153926871 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics Package: libgtkspell3-3-0 Priority: optional Section: libs Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtkspell3 Version: 3.0.4-1 Replaces: libgtkspell-3-0 Depends: libc6 (>= 2.2.5), libenchant1c2a (>= 1.6.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0) Conflicts: libgtkspell-3-0 Filename: pool/main/g/gtkspell3/libgtkspell3-3-0_3.0.4-1_amd64.deb Size: 16646 MD5sum: fdfd934042aa067e2afca11ee0a818ef SHA1: fc84283ad9971758bc919aef6e40ac2cea1d613e SHA256: 046c0a3551691ad6966689846a5e606b7308166d2328969ebff88c33334bb43b Description: spell-checking addon for GTK+'s TextView widget Homepage: http://gtkspell.sourceforge.net/ Description-md5: d6bae8d16129c3922c33ea551554ecdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkspell3-3-dev Priority: optional Section: libdevel Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gtkspell3 Version: 3.0.4-1 Replaces: libgtkspell-3-dev Depends: libenchant-dev, libgtk-3-dev, libgtkspell3-3-0 (= 3.0.4-1), gir1.2-gtkspell3-3.0 (= 3.0.4-1) Conflicts: libgtkspell-3-dev Filename: pool/main/g/gtkspell3/libgtkspell3-3-dev_3.0.4-1_amd64.deb Size: 25348 MD5sum: 20cf499cadd92b59febf1d900f91b7f3 SHA1: ed7b46ca1caadf0344a7d53bac044b2295c3e890 SHA256: 047a1c62814beab209e1bf66bacf1a9970106b9d2b8f03d84db212a01de66ede Description: Development files for GtkSpell Homepage: http://gtkspell.sourceforge.net/ Description-md5: 1e3b6ed0827fd853c17cd8f846d1a124 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtop2-7 Priority: optional Section: libs Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgtop2 Version: 2.28.5-2 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.18.0), libxau6, libgtop2-common (>= 2.28.5-2) Filename: pool/main/libg/libgtop2/libgtop2-7_2.28.5-2_amd64.deb Size: 33714 MD5sum: 9f74c4750fb1802d6d4a0bb8ddfbc9fb SHA1: 29090edd4094ea2646b1a5d21fb81610d4123ed3 SHA256: e84bc7032c88975a34cbf9fe4fac078af4556db77546ad8b2afbebecb44336e3 Description: gtop system monitoring library (shared) Description-md5: 44bda4ce7737c0e09f96b0c554b20c79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntu-gnome-desktop Package: libgtop2-common Priority: optional Section: libs Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgtop2 Version: 2.28.5-2 Filename: pool/main/libg/libgtop2/libgtop2-common_2.28.5-2_all.deb Size: 9626 MD5sum: f5eae565fe6b5667d0f8a17e05b33ae1 SHA1: 996bcd82ad76e6c4527f529949ae53c7c3d50f6e SHA256: daad5f6427d85f44f952a161763e5cc9d685ddaec08d5e0b792be02a9753486f Description: gtop system monitoring library (common) Description-md5: 69a00376b64bd3e535f709b92c3ed675 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntu-gnome-desktop Package: libgtop2-dev Priority: optional Section: libdevel Installed-Size: 526 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgtop2 Version: 2.28.5-2 Depends: libgtop2-7 (= 2.28.5-2), gir1.2-gtop-2.0 (= 2.28.5-2), libglib2.0-dev Filename: pool/main/libg/libgtop2/libgtop2-dev_2.28.5-2_amd64.deb Size: 53510 MD5sum: c516f9aba4da37884b2a307b5446ef4d SHA1: 8527c1b3b3f6c6c4d14821168add630c3e1f4960 SHA256: b2fa90b41ae2c2dcf07b12ad5d1c6afdca16411b6019a6c0ca6b68262378c2f4 Description: gtop system monitoring library (devel) Description-md5: 874845d45287f157d1c203227529deef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtop2-doc Priority: optional Section: doc Installed-Size: 637 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgtop2 Version: 2.28.5-2 Replaces: libgtop2-dev (<< 2.28.0-1) Filename: pool/main/libg/libgtop2/libgtop2-doc_2.28.5-2_all.deb Size: 66012 MD5sum: 334c7192e4eda894b683423c91b49474 SHA1: 1a15cd089cd58acda464a9fe046ace763f62b56e SHA256: e3e49910bb0bd80cf0b400bfbf878605216dd6e46f0ba82a9ccafbe51128933e Description: gtop system monitoring library (documentation) Description-md5: 51c61f2f38a5c86ee29ed756c1ec1d49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgucharmap-2-90-7 Priority: optional Section: libs Installed-Size: 4336 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gucharmap Version: 1:3.10.1-0ubuntu2 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.4.0), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0) Filename: pool/main/g/gucharmap/libgucharmap-2-90-7_3.10.1-0ubuntu2_amd64.deb Size: 928236 MD5sum: f0fc4fe37357cefb59c7aca28c62ba70 SHA1: 561323aa175daee6ae3045162b72ab301cff18bb SHA256: 12dbe04f012fceea8d6be1dbfed5b003655dafdc6f1968009abd52cc994b96d4 Description: Unicode browser widget library (shared library) Homepage: https://wiki.gnome.org/Gucharmap Description-md5: 23d03262b30ea8c75f637ac989fdc205 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgucharmap-2-90-dev Priority: optional Section: libdevel Installed-Size: 691 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: gucharmap Version: 1:3.10.1-0ubuntu2 Replaces: libgucharmap-dev Depends: libgucharmap-2-90-7 (= 1:3.10.1-0ubuntu2), gir1.2-gucharmap-2.90 (= 1:3.10.1-0ubuntu2), libgtk-3-dev, libglib2.0-dev Conflicts: libgucharmap-dev Filename: pool/main/g/gucharmap/libgucharmap-2-90-dev_3.10.1-0ubuntu2_amd64.deb Size: 30618 MD5sum: 4cc9c51b537827f23dbd8aee3624a8f2 SHA1: 4dd85e92a0dc9231f4f9079337b6f28f63cf4108 SHA256: 024895fd0f0cf4fc70232a7ea291d9bb195589ff4ad2561a8be1df7193902492 Description: Unicode browser widget library (development headers) Homepage: https://wiki.gnome.org/Gucharmap Description-md5: 3a5187f96ac5928425f930b46f048433 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgudev-1.0-0 Priority: optional Section: libs Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd (204-5ubuntu20) Version: 1:204-5ubuntu20 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libgudev-1.0-0_204-5ubuntu20_amd64.deb Size: 14084 MD5sum: b06e9a689bf60d257260f695c981c9ac SHA1: 5d00caf4997889f74afcd25c345ac22843b88cee SHA256: 34eecdb15a02b4b9a5157b600c24f7332ce2f2af9ee0780281e5e09d295a77e4 Description: GObject-based wrapper library for libudev Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 69c67b853f66d1327190cab12680738c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgudev-1.0-dev Priority: optional Section: libdevel Installed-Size: 374 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd (204-5ubuntu20) Version: 1:204-5ubuntu20 Depends: libgudev-1.0-0 (= 1:204-5ubuntu20), gir1.2-gudev-1.0 (= 1:204-5ubuntu20), libglib2.0-dev, pkg-config Filename: pool/main/s/systemd/libgudev-1.0-dev_204-5ubuntu20_amd64.deb Size: 25956 MD5sum: 985e73f6a99a134cfbf1a217739c2b0f SHA1: edc55ada0ac79c8ce743d9f352c1bf3d0dbf44c3 SHA256: adfef6dfb009b3d53c0501951abfddcada064cecd40cfa3a9ab0d13ac84b0c70 Description: libgudev-1.0 development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 903f84519fd86bd5fb271a04acb09731 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-1.0-4 Priority: optional Section: libs Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: amd64 Source: gupnp Version: 0.20.10-1ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgssdp-1.0-3 (>= 0.14.0), libsoup2.4-1 (>= 2.34.0-1~), libuuid1 (>= 2.16), libxml2 (>= 2.7.4), shared-mime-info Filename: pool/main/g/gupnp/libgupnp-1.0-4_0.20.10-1ubuntu1_amd64.deb Size: 67178 MD5sum: 6f493bfdcadb0095ae0b13212ebf06d6 SHA1: 7859c78a783ec5112a30a63574d038a16d177f89 SHA256: 3cdb8834ed4f91e227ff0088d8f32a4354c44d51a2d1947cdb3fd31286286ea4 Description: GObject-based library for UPnP Homepage: http://www.gupnp.org Description-md5: 0cf65a702f3453c4d3e7c4b3a7dc9341 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libgupnp-1.0-dbg Priority: optional Section: libdevel Installed-Size: 306 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: amd64 Source: gupnp Version: 0.20.10-1ubuntu1 Depends: libgupnp-1.0-4 (= 0.20.10-1ubuntu1) Recommends: libgssdp-1.0-dbg, libglib2.0-0-dbg Filename: pool/main/g/gupnp/libgupnp-1.0-dbg_0.20.10-1ubuntu1_amd64.deb Size: 215880 MD5sum: 91109287ae7f7306a7a1fae5d6184f73 SHA1: 1af2ff83a8601dfcc7ce204ec7e92785c9ae819f SHA256: b53409f0dca05ce331180a49a7a810140dd10822c174e35fd26784935bec68ce Description: GObject-based library for UPnP (debug symbols) Homepage: http://www.gupnp.org Description-md5: 2696751c17a04f25b712cbedaee4b251 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-1.0-dev Priority: optional Section: libdevel Installed-Size: 763 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: amd64 Source: gupnp Version: 0.20.10-1ubuntu1 Replaces: gir-repository-dev (<= 0.6.5-5), gupnp-vala (<< 0.10.5) Depends: libgupnp-1.0-4 (= 0.20.10-1ubuntu1), gir1.2-gupnp-1.0 (= 0.20.10-1ubuntu1), libgssdp-1.0-dev (>= 0.6.1), libsoup2.4-dev, libxml2-dev, uuid-dev Recommends: python Suggests: libgupnp-doc Breaks: gir-repository-dev (<= 0.6.5-5), gupnp-vala (<< 0.10.5) Filename: pool/main/g/gupnp/libgupnp-1.0-dev_0.20.10-1ubuntu1_amd64.deb Size: 105060 MD5sum: 99290b07964f1673d5998385c50d71fb SHA1: 646477561f03d0dd0703a2dc21fdd05282fe4970 SHA256: ed2c2cf0eaa7326f223bfa472cff8101442fade0cdf3610c9c7be4644ac9d0d4 Description: GObject-based library for UPnP (development files) Homepage: http://www.gupnp.org Description-md5: 9c718c86c32a941db80bc691b1180e2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-doc Priority: optional Section: doc Installed-Size: 703 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: all Source: gupnp Version: 0.20.10-1ubuntu1 Depends: lynx | www-browser Recommends: libgssdp-doc Filename: pool/main/g/gupnp/libgupnp-doc_0.20.10-1ubuntu1_all.deb Size: 65054 MD5sum: 92b0c1a03abb71edbc735f117daf1aa5 SHA1: bfbbc870e224e07e43c594f46ad058a7a468eda7 SHA256: 04548ec2536ec5ffaa19f774babe00f483f71cbc165e1f15c96ab79538a4ab7e Description: GObject-based library for UPnP (documentation) Homepage: http://www.gupnp.org Description-md5: c352873690528d2141eb638f296d4dbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-igd-1.0-4 Priority: optional Section: libs Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: amd64 Source: gupnp-igd Version: 0.2.2-1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgssdp-1.0-3 (>= 0.12.0), libgupnp-1.0-4 (>= 0.18.0) Pre-Depends: multiarch-support Filename: pool/main/g/gupnp-igd/libgupnp-igd-1.0-4_0.2.2-1_amd64.deb Size: 17072 MD5sum: 9f01a58573c19f859d74412488488dc8 SHA1: 9d9c9ac870cb798f19277d3f5b5e179e0380d41e SHA256: 6abed1e4869c8d1e0b5fdb74bd30d936462ea8adbb9b79b03b28e96a46ec0ec8 Description: library to handle UPnP IGD port mapping Multi-Arch: same Homepage: http://www.gupnp.org/ Description-md5: c628c9c0a458238bdbc398733578a849 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libgupnp-igd-1.0-dbg Priority: extra Section: debug Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: amd64 Source: gupnp-igd Version: 0.2.2-1 Depends: libgupnp-igd-1.0-4 (= 0.2.2-1) Filename: pool/main/g/gupnp-igd/libgupnp-igd-1.0-dbg_0.2.2-1_amd64.deb Size: 30098 MD5sum: 785b4488bcb45cfc4afa1b8ced6947b8 SHA1: 97823462a98356fd4733c19cdb6f792f0ff0e817 SHA256: 90f6656a670f8277a22dde47619d18e69086bc89ffbf1fa40bcda0f1c08d5ebf Description: library to handle UPnP IGD port mapping - debug symbols Multi-Arch: same Homepage: http://www.gupnp.org/ Description-md5: 666766e3f206c49360c20d95e03b9651 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-igd-1.0-dev Priority: optional Section: libdevel Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: amd64 Source: gupnp-igd Version: 0.2.2-1 Depends: libgupnp-igd-1.0-4 (= 0.2.2-1), libgupnp-1.0-dev (>= 0.13.2), libglib2.0-dev (>= 2.14), gir1.2-gupnpigd-1.0 (= 0.2.2-1) Filename: pool/main/g/gupnp-igd/libgupnp-igd-1.0-dev_0.2.2-1_amd64.deb Size: 18906 MD5sum: f5bbdb72ee4cd2cae7ab39eea0a74e7f SHA1: 8016531310a04c080b930150ee6c496084746c5e SHA256: 376877208071201e98f96ed8b5d9ad7979597b3a9197f4dc3fc782d873af2b65 Description: library to handle UPnP IGD port mapping - development files Homepage: http://www.gupnp.org/ Description-md5: a68a1c5f88bcb2cb1fc2ec5a0e837f53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-igd-1.0-doc Priority: optional Section: doc Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: all Source: gupnp-igd Version: 0.2.2-1 Filename: pool/main/g/gupnp-igd/libgupnp-igd-1.0-doc_0.2.2-1_all.deb Size: 13732 MD5sum: 15e615a6dbcd3e0c81ceee087af5f5f9 SHA1: 73645dec13fbfb3e8b694d38cf8e87e953548384 SHA256: 1e0e54ae36e3c32b5f3ae5aacc2ee9b073ca75173a4d3ba517e1248640e27027 Description: library to handle UPnP IGD port mapping - documentation Homepage: http://www.gupnp.org/ Description-md5: 54d10de7ccabe3a650d383536ad1cc68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgusb-dev Priority: extra Section: libdevel Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: libgusb Version: 0.1.6-5 Depends: libgusb2 (= 0.1.6-5), gir1.2-gusb-1.0, libgudev-1.0-dev, libusb-1.0-0-dev Filename: pool/main/libg/libgusb/libgusb-dev_0.1.6-5_amd64.deb Size: 23226 MD5sum: d9c7ff24b18c6428cab3fe1db89c3a4e SHA1: 57272bd202290a1912353f8a419150ce561d51ba SHA256: dd3f101c338b9a17f488fe32cc86b8d8416a35b0ccba4ed6d859f0eb19bec76a Description: GLib wrapper around libusb1 - development files Homepage: http://www.hughski.com/downloads.html Description-md5: f0874bcbf82c81298e2d8808e1d28383 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgusb-doc Priority: extra Section: doc Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: all Source: libgusb Version: 0.1.6-5 Depends: libgusb-dev Suggests: devhelp Filename: pool/main/libg/libgusb/libgusb-doc_0.1.6-5_all.deb Size: 16752 MD5sum: d59aea3a18c5d3955652097adf0df00c SHA1: b99d90a2435657f40c75b3025f4171ea947152ae SHA256: 2968d4db71b117de97630d1025bdc9db46f5563cebda95d8b8db68afab14ef33 Description: GLib wrapper around libusb1 - documentation Homepage: http://www.hughski.com/downloads.html Description-md5: 8d3c01c7e69846f36df8fc25f014c016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgusb2 Priority: extra Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: libgusb Version: 0.1.6-5 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), libusb-1.0-0 (>= 2:1.0.8) Pre-Depends: multiarch-support Filename: pool/main/libg/libgusb/libgusb2_0.1.6-5_amd64.deb Size: 15390 MD5sum: 8ee7f55bcdb713d4cc1be73fbc54bb30 SHA1: fd375071bcff41505416c75bf2207c408fec383f SHA256: 42902d5c010d0d68c54dd02f2cf7977c5a675b8c5b4e4eca3b03d9ffce534e5d Description: GLib wrapper around libusb1 Multi-Arch: same Homepage: http://www.hughski.com/downloads.html Description-md5: 41f01b17b9ed8d44b92d29d701dc060f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgutenprint-dev Priority: optional Section: libdevel Installed-Size: 295 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: amd64 Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Depends: libgutenprint2 (= 5.2.10~pre2-0ubuntu2), pkg-config Suggests: libgutenprint-doc (= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/libgutenprint-dev_5.2.10~pre2-0ubuntu2_amd64.deb Size: 47824 MD5sum: a681b1d4dda2c4d1e870b68ece7ec8e8 SHA1: 032f2cae0960107c1ec6088fe6ae0779211173b1 SHA256: 9512a3a99d2b1515651ec8d5edf2a3a15bb68f5d198ed52517d54a20cbc075a4 Description: development files for the Gutenprint printer driver library Description-md5: ce31342ffc61e8c690a2982af80686e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgutenprint-doc Priority: optional Section: doc Installed-Size: 2569 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: all Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Suggests: libgutenprint-dev (= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/libgutenprint-doc_5.2.10~pre2-0ubuntu2_all.deb Size: 258750 MD5sum: a2690f368ed01ea0eb44dceec3918873 SHA1: 04545a2be83976da0e24c64e4baa824b1d06f2fb SHA256: ee9cc986952b31df78dda8f8d34eab49ccf6dd603a0045f6d550f6bca56cd809 Description: documentation for the Gutenprint printer driver library Description-md5: 70986316664191cadab04e9ef3c08713 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgutenprint2 Priority: optional Section: libs Installed-Size: 7843 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: amd64 Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Suggests: gutenprint-locales (>= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/libgutenprint2_5.2.10~pre2-0ubuntu2_amd64.deb Size: 974474 MD5sum: 5745ed375b8b95e94864995bc86ea91e SHA1: 4b6661469115496660f7a3319906250e1364f817 SHA256: 39c0f2cc91726919b60ff9b9c7c59d226cb9ec34d21ce50d02d0514f43f6dbe4 Description: runtime for the Gutenprint printer driver library Description-md5: 9bb6297d95041fddbc1b1fa8cd44d38a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgutenprintui2-1 Priority: optional Section: libs Installed-Size: 308 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: amd64 Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.35.9), libgtk2.0-0 (>= 2.8.0), libgutenprint2 (>= 5.2.10~pre2) Pre-Depends: multiarch-support Recommends: gutenprint-locales (>= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/libgutenprintui2-1_5.2.10~pre2-0ubuntu2_amd64.deb Size: 84084 MD5sum: 964232c544b4e3c6037e83be021aff52 SHA1: a48ed19cd29941e2321c0b487e7f27acd71fdd79 SHA256: 64910127e4683989336eb7e20069e31e3bcd333ce7170f98da4097b57fa4818f Description: runtime for the Gutenprint printer driver user interface library Description-md5: ba313e3852dc3f46728491c0c7f0f255 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgutenprintui2-dev Priority: optional Section: devel Installed-Size: 103 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: amd64 Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Depends: libgutenprintui2-1 (= 5.2.10~pre2-0ubuntu2), pkg-config Suggests: libgutenprint-doc (= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/libgutenprintui2-dev_5.2.10~pre2-0ubuntu2_amd64.deb Size: 5800 MD5sum: a41f20576b83b301a22f819cf286d4ac SHA1: bb915a0363089d1dce098ab8f7eec0fa47ce2325 SHA256: f53347ffd6faa291d8fadd75057dd0dc40a81ce3a168a2d3a94b115fb76b1412 Description: development files for the Gutenprint printer driver user interface library Description-md5: dbef2766277542e854cf1e1c772d7063 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgvc6 Priority: optional Section: libs Installed-Size: 1673 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: amd64 Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.15), libcairo2 (>= 1.2.4), libcdt5, libcgraph6, libexpat1 (>= 2.0.1), libgd3 (>= 2.1.0~alpha~), libglib2.0-0 (>= 2.12.0), libltdl7 (>= 2.4.2), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), libpangoft2-1.0-0 (>= 1.14.0), libpathplan4, libx11-6, zlib1g (>= 1:1.1.4) Conflicts: libgraphviz4, libgvc5 Filename: pool/main/g/graphviz/libgvc6_2.36.0-0ubuntu3_amd64.deb Size: 576318 MD5sum: 1f97a471af2bfa7c3809af4c9d65726f SHA1: 49794222f01b28eaf5eba2e4032a1252ac007f53 SHA256: d16b2cc668c75381f4303bc79e16ae2caf5dae2a83c7a68cf8ce7a507f9350e6 Description: rich set of graph drawing tools - gvc library Homepage: http://www.graphviz.org/ Description-md5: 87da8308b382f4072b1022b48b3d7368 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-audio Package: libgvnc-1.0-0 Priority: optional Section: libs Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Replaces: libgtk-vnc-1.0-0 (<= 0.4.3-1) Depends: libc6 (>= 2.14), libgcrypt11 (>= 1.5.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnutls26 (>= 2.12.17-0), libpulse0 (>= 1:0.99.1), libsasl2-2 (>= 2.1.24), zlib1g (>= 1:1.1.4) Filename: pool/main/g/gtk-vnc/libgvnc-1.0-0_0.5.3-0ubuntu2_amd64.deb Size: 53222 MD5sum: 5f7b2faf43d74907c48b8274165a35a2 SHA1: ac6d99c50f05ce2030343ba9f0f3f1fe5bc9d22d SHA256: 7fee610c8fddd2f40e2ea7a8af53f76657c96e97dfc56c596a03107b13268cbe Description: VNC gobject wrapper (runtime libraries) Description-md5: 84d0ae4191f619608a11c91b14df37cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-desktop Package: libgvnc-1.0-0-dbg Priority: extra Section: debug Installed-Size: 551 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Replaces: libgtk-vnc-1.0-0-dbg (<< 0.4.3-2) Depends: libgvnc-1.0-0 (= 0.5.3-0ubuntu2) Breaks: libgtk-vnc-1.0-0-dbg (<< 0.4.3-2) Filename: pool/main/g/gtk-vnc/libgvnc-1.0-0-dbg_0.5.3-0ubuntu2_amd64.deb Size: 126886 MD5sum: bd787dd4c2d2ad3f9db685505b2fb884 SHA1: 9881df0546ddbfac10f89da6ccc3682f739a09ae SHA256: 3017999af2ef069de3e11b22aa06cea5cccc44b60c3aec1e8f57d04bbaa2d101 Description: VNC gobject wrapper (debugging symbols) Description-md5: fccd88e03062a39410397bbbc972d2ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgvnc-1.0-dev Priority: optional Section: libdevel Installed-Size: 227 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Replaces: libgtk-vnc-1.0-dev (<= 0.4.3-1) Depends: libgvnc-1.0-0 (= 0.5.3-0ubuntu2), libglib2.0-dev, libgnutls-dev (>= 1.4.0), libcairo2-dev (>= 1.2.0) Filename: pool/main/g/gtk-vnc/libgvnc-1.0-dev_0.5.3-0ubuntu2_amd64.deb Size: 15496 MD5sum: 55e40ed07addc29cba635f1150fb343c SHA1: 1b63b2066db15f4da5db97c4597e531b116265d1 SHA256: 278c8e710a7633f6e5a41cf706d947b08dc05797d6983a5e064b8d05f32af819 Description: VNC GObject wrapper (development files) Description-md5: 2e1bb3be6c87550ab514fcc576f62796 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgvpr2 Priority: optional Section: libs Installed-Size: 577 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: amd64 Source: graphviz Version: 2.36.0-0ubuntu3 Replaces: libgvpr1 Depends: libc6 (>= 2.15), libcdt5, libcgraph6 Conflicts: libgraphviz4 Filename: pool/main/g/graphviz/libgvpr2_2.36.0-0ubuntu3_amd64.deb Size: 169036 MD5sum: 273c9273ed551c7a7bd8c7944ca44995 SHA1: d5e276f1c57a609c27b7b152b4d59cb06861e0a2 SHA256: 24f84fc3aebf4fc657de94f7227b6c1b5cf3b912b75bd2f77a2611685e166454 Description: rich set of graph drawing tools - gvpr library Homepage: http://www.graphviz.org/ Description-md5: e7dafa90950ab7d270f04d6a2f98fc48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libgweather-3-6 Priority: optional Section: libs Installed-Size: 193 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgweather Version: 3.10.2-0ubuntu1 Depends: libc6 (>= 2.7), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.6), libsoup2.4-1 (>= 2.34.0), libxml2 (>= 2.7.4), libgweather-common (>= 3.5.0) Filename: pool/main/libg/libgweather/libgweather-3-6_3.10.2-0ubuntu1_amd64.deb Size: 59218 MD5sum: c6e78ec64bd142db3581962ec6c0bc49 SHA1: 034b7a1f8545cbb6b14e39d2e9fb2d4b5a8844af SHA256: 2671832d03258c0bf3ccaf21befd7f47fc20dcd91ee30ab1663e9bfedd249b78 Description: GWeather shared library Description-md5: cb984482338858ae6dd68ad8bf4a2452 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgweather-3-dev Priority: optional Section: libdevel Installed-Size: 513 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libgweather Version: 3.10.2-0ubuntu1 Depends: libgweather-3-6 (= 3.10.2-0ubuntu1), gir1.2-gweather-3.0 (= 3.10.2-0ubuntu1), libxml2-dev (>= 2.6.0), libglib2.0-dev (>= 2.35.1), libgtk-3-dev (>= 3.0.0), libsoup2.4-dev (>= 2.34.0) Filename: pool/main/libg/libgweather/libgweather-3-dev_3.10.2-0ubuntu1_amd64.deb Size: 72628 MD5sum: 5ec8b63d8861065678cbb95b0f3f00bb SHA1: a6e10ca7c734bcf5a783d6c0d01b0fc2bf18b59d SHA256: 613fb7635ef98e6761e98d815437d47f1be3ebb7c4523b4f526b51c75fe81727 Description: GWeather development files Description-md5: d777dd677d3f0773a7bcfa6faf15d7e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgweather-common Priority: extra Section: libs Installed-Size: 3672 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgweather Version: 3.10.2-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend Conflicts: libgweather1 (<< 2.22.2-2) Filename: pool/main/libg/libgweather/libgweather-common_3.10.2-0ubuntu1_all.deb Size: 510606 MD5sum: ec2096f196273a49790430f50e1e6cc2 SHA1: 540a1829467ef48f9edaab647677ceaf8b96c5c5 SHA256: 6de80e96b4f97c0c712cf6ada96fbb3512d29931314096bf5f9dac12a3952277 Description: GWeather common files Description-md5: a5b4a811991e8c5840d2aedf792b5dcd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgxps-dev Priority: optional Section: libdevel Installed-Size: 312 Maintainer: Ubuntu Developers Original-Maintainer: Savvas Radevic Architecture: amd64 Source: libgxps Version: 0.2.2-2ubuntu2 Depends: gir1.2-gxps-0.1 (= 0.2.2-2ubuntu2), libgxps2 (= 0.2.2-2ubuntu2), libarchive-dev, libcairo2-dev, libglib2.0-dev Filename: pool/main/libg/libgxps/libgxps-dev_0.2.2-2ubuntu2_amd64.deb Size: 50048 MD5sum: 62577809fd71a8b0088bb8fa1e8244bd SHA1: 004f083537a0f7d9844cd52af8ef68c14a81e112 SHA256: d373936ca2762dde27be16e764392d184364c29b34748c8f12c5cce941af9374 Description: handling and rendering XPS documents (development files) Homepage: https://live.gnome.org/libgxps Description-md5: 742d94cd3106e90eb08390e8ed93c98f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgxps-doc Priority: optional Section: doc Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Savvas Radevic Architecture: all Source: libgxps Version: 0.2.2-2ubuntu2 Suggests: devhelp Filename: pool/main/libg/libgxps/libgxps-doc_0.2.2-2ubuntu2_all.deb Size: 19726 MD5sum: c52cff35f1bb327926eb0491bde3a490 SHA1: a83eb184e34a270e69e700c220fbcc7b3316161d SHA256: bed0a38120f91fce9447031638cc446d91638ce54dfe46779189e99a4d31e21c Description: library for handling and rendering XPS documents (documentation) Homepage: https://live.gnome.org/libgxps Description-md5: 3a4829a5594c8a1aeab7ca00f14c516b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgxps2 Priority: optional Section: libs Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Savvas Radevic Architecture: amd64 Source: libgxps Version: 0.2.2-2ubuntu2 Depends: libarchive13, libc6 (>= 2.14), libcairo2 (>= 1.10.0), libfreetype6 (>= 2.2.1), libglib2.0-0 (>= 2.24.0), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libtiff5 (>> 4.0.0-1~) Pre-Depends: multiarch-support Filename: pool/main/libg/libgxps/libgxps2_0.2.2-2ubuntu2_amd64.deb Size: 42100 MD5sum: 5fcd2fe9f89fffa8c74cfb63911e24f9 SHA1: 5c26c837f6f8dcee838ebccb69815bc55e6375a1 SHA256: 9c2712e07f288095659491e560cb3be397a14fdeeae88ab95c633868fe87c924 Description: handling and rendering XPS documents (library) Multi-Arch: same Homepage: https://live.gnome.org/libgxps Description-md5: d880744c17aaed901bb26232e3fae10f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhamcrest-java Priority: optional Section: libs Installed-Size: 827 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.3-4 Filename: pool/main/libh/libhamcrest-java/libhamcrest-java_1.3-4_all.deb Size: 385090 MD5sum: 5909b6a5fe82ff811bc8a62b95ae56a9 SHA1: 9c81ed840c545f456af88f15ba1289cc609c9c5d SHA256: dfa52dbc59f102621c4cf684dd7031e4b42a1cef1283452287205cd9ec7e0bd8 Description: library of matchers for building test expressions Homepage: http://hamcrest.org Description-md5: e2634867fbacc3561cc2ca569f30a498 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhamcrest-java-doc Priority: optional Section: doc Installed-Size: 2978 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libhamcrest-java Version: 1.3-4 Recommends: default-jdk-doc, junit-doc, junit4-doc Suggests: libhamcrest-java Filename: pool/main/libh/libhamcrest-java/libhamcrest-java-doc_1.3-4_all.deb Size: 103724 MD5sum: d0b5473c512c461c5b421e4f389575f7 SHA1: 598648a14b946a2405311248f328d57b8b7eafde SHA256: cfcb9f92b2131717ecd08ef911509209c6b3d072b539b82488f1c0c56666b4f9 Description: library of matchers for building test expressions - documentation Homepage: http://hamcrest.org Description-md5: 9b389ccfeb28ae88c7ff56d8f59a9ca1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhangul-data Priority: optional Section: libs Installed-Size: 6364 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: all Source: libhangul Version: 0.1.0-3 Replaces: libhangul0-data Conflicts: libhangul0-data Filename: pool/main/libh/libhangul/libhangul-data_0.1.0-3_all.deb Size: 2417146 MD5sum: 9dcc207424bfe46200eb2513ba60d882 SHA1: ff41360208e51b2c2f704e6f658ba1d8a402cf2f SHA256: c4db7ccbe832c3025980bd30990d29e9f7957444ebd9258ae0d932a18c4e995b Description: Hangul keyboard input library - data Multi-Arch: foreign Homepage: http://kldp.net/projects/hangul Description-md5: 13ed650675a6d0c725667a21b090bb3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libhangul-dev Priority: optional Section: libdevel Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: amd64 Source: libhangul Version: 0.1.0-3 Depends: libhangul1 (= 0.1.0-3) Filename: pool/main/libh/libhangul/libhangul-dev_0.1.0-3_amd64.deb Size: 28838 MD5sum: 2e0e172ad8312566267d21affc079423 SHA1: fa0948831a3f90402ff775564e3fe8906269c7ec SHA256: 645f9c821294818be3953d120869ca9fdf7d8973ef7b91693b9ab3eeb28f5c82 Description: Hangul keyboard input library - development files Multi-Arch: same Homepage: http://kldp.net/projects/hangul Description-md5: 051eaf337815f4bbadf6f2037d167d4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhangul1 Priority: optional Section: libs Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: amd64 Source: libhangul Version: 0.1.0-3 Depends: libhangul-data (>= 0.1.0-3), libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libh/libhangul/libhangul1_0.1.0-3_amd64.deb Size: 28958 MD5sum: 464e25bbb6d8d49eecd6e324344859b8 SHA1: b19b187a22ee22c120d914de60075f04bb6e2f87 SHA256: c6274b2a719dcbde07618fb092a5b604665faa04be5afa80b3d2ecb99587d3b1 Description: Hangul keyboard input library - runtime Multi-Arch: same Homepage: http://kldp.net/projects/hangul Description-md5: cd0ae445efbbc4bb7948a84e16892293 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libhangul1-dbg Priority: extra Section: debug Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: amd64 Source: libhangul Version: 0.1.0-3 Depends: libhangul1 (= 0.1.0-3) Filename: pool/main/libh/libhangul/libhangul1-dbg_0.1.0-3_amd64.deb Size: 44156 MD5sum: 6385be7154b8c0c189bfeb35f0f61530 SHA1: 3ce5997e2143b0c317eedc778289c77f3b871596 SHA256: 24d3be74c0ff816dadbccac83e20b93991ab6726d450f6372b4ed1861d2adf97 Description: Hangul keyboard input library - debugging symbols Multi-Arch: same Homepage: http://kldp.net/projects/hangul Description-md5: 0bd3b70ed7c96fbf99dcb4fe82da47d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhardware-dev Priority: extra Section: libdevel Installed-Size: 54 Maintainer: Ubuntu Developers Architecture: amd64 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Depends: libhardware2 (= 0.1.0+git20131207+e452e83-0ubuntu12), android-headers (>= 4.2.2) Breaks: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Filename: pool/main/libh/libhybris/libhardware-dev_0.1.0+git20131207+e452e83-0ubuntu12_amd64.deb Size: 4742 MD5sum: 27e6fb5e94e02a4992a164582550d519 SHA1: 0cbf8aef1cd0b272531c244824f27cdadba19e9a SHA256: d39bd5b6cc95450c90078b0efabfdeb260f9859e0afc2ce397a3d74c09766cb5 Description: Development files for libhardware Description-md5: da5d7fa47a1b4b845a603aff96d464fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhardware2 Priority: extra Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Architecture: amd64 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Depends: libc6 (>= 2.2.5), libhybris-common1 Breaks: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Filename: pool/main/libh/libhybris/libhardware2_0.1.0+git20131207+e452e83-0ubuntu12_amd64.deb Size: 6360 MD5sum: 4965ce18b11d5205d3f43f5487ed35f1 SHA1: 0a9106ac011f184c93e6e58c47f9468b213ee111 SHA256: e5253459e319221df576bbaa950914dff28e7d6d0147bc214a61909ed5e904ae Description: Library to provide access to the Android libhardware HAL Description-md5: ba38b180f137da752b2cf6f73e00b537 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libharfbuzz-dev Priority: optional Section: libdevel Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: amd64 Source: harfbuzz Version: 0.9.27-1 Depends: libharfbuzz0b (= 0.9.27-1), libharfbuzz-icu0 (= 0.9.27-1), libharfbuzz-gobject0 (= 0.9.27-1) Filename: pool/main/h/harfbuzz/libharfbuzz-dev_0.9.27-1_amd64.deb Size: 29008 MD5sum: 0841302c47feaef8bbdd795402d82330 SHA1: c2275785d731eb6475fe7b286ae2d945a5c40c27 SHA256: 0cb334453254e149f42e759f71933f0862c1cf7cc47fa77709d4b718e203713d Description: Development files for OpenType text shaping engine Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: 8ebbfe4cc4bcec46b6548326bf0e4b9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libharfbuzz-doc Priority: optional Section: doc Installed-Size: 833 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: all Source: harfbuzz Version: 0.9.27-1 Filename: pool/main/h/harfbuzz/libharfbuzz-doc_0.9.27-1_all.deb Size: 46708 MD5sum: 7412faf0f9be3867b7d297c280a794d3 SHA1: 6d370c5c0b325d4cca4299926e39c9d68a6ef8d9 SHA256: b2cf92cfae05ad461a222d260cbba897faca5c7784383978677993ed9d9307c1 Description: Documentation files for the HarfBuzz library Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: 9b131c85bc0d15a8db3fabd1178cabda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libharfbuzz-gobject0 Priority: optional Section: libs Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: amd64 Source: harfbuzz Version: 0.9.27-1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.14.0), libharfbuzz0b (>= 0.9.9) Pre-Depends: multiarch-support Filename: pool/main/h/harfbuzz/libharfbuzz-gobject0_0.9.27-1_amd64.deb Size: 10364 MD5sum: abd0366de7f172453f551183d19dd379 SHA1: 3e1e9245a255fb7158d1d0c9ca50657ed56fb9d1 SHA256: 3abc3d53efd697b533d0ed26824bc35060b33de49ac68c287bc36ea4a1625e19 Description: OpenType text shaping engine ICU backend (GObject library) Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: 602225f3070fe796ecfe3186301b5887 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libharfbuzz-icu0 Priority: optional Section: libs Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: amd64 Source: harfbuzz Version: 0.9.27-1 Depends: libharfbuzz0b (>= 0.6.0), libicu52 (>= 52~m1-1~) Pre-Depends: multiarch-support Filename: pool/main/h/harfbuzz/libharfbuzz-icu0_0.9.27-1_amd64.deb Size: 5114 MD5sum: c9043800981678e32f60bc8659f8cc47 SHA1: a418fe33adc54dc95ef31938bfbbd27d08ae0103 SHA256: 0efeaadf3018f36929c9c044f75554cea45e318edfbca380b146d226b2ed5625 Description: OpenType text shaping engine ICU backend Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: d96c32b3b2f8939f63da61e3c683d71f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libharfbuzz0b Priority: optional Section: libs Installed-Size: 386 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: amd64 Source: harfbuzz Version: 0.9.27-1 Replaces: libharfbuzz0, libharfbuzz0a Depends: libc6 (>= 2.14), libfreetype6 (>= 2.3.9), libglib2.0-0 (>= 2.30.0), libgraphite2-3 (>= 1.2.2) Pre-Depends: multiarch-support Conflicts: libharfbuzz0, libharfbuzz0a Filename: pool/main/h/harfbuzz/libharfbuzz0b_0.9.27-1_amd64.deb Size: 126492 MD5sum: 15eab0363cac969522f00733c5bd75f2 SHA1: a48e3ac6365c9f0ab8f55fe754dfffae294946b0 SHA256: d649a132388f01f0ead69fdafc8bc45ea427775bce39f86e067c9d9b8a1c3f72 Description: OpenType text shaping engine (shared library) Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: c01a2a5a6349f465ee349884ac4d8667 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libhashkit-dev Priority: optional Section: libdevel Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: amd64 Source: libmemcached Version: 1.0.8-1ubuntu2 Replaces: libmemcached-dev (<< 1.0.3-1) Depends: libhashkit2 (= 1.0.8-1ubuntu2) Breaks: libmemcached-dev (<< 1.0.3-1) Filename: pool/main/libm/libmemcached/libhashkit-dev_1.0.8-1ubuntu2_amd64.deb Size: 35768 MD5sum: 6f99fbef982c4ae0e87452f700a29adb SHA1: 56f81f42f63853c1dc3895cde64d433c76b7a327 SHA256: fa0fffcb8b82c101db14278ea64c1677a2b66d80b8360a020f2de29a44930fe3 Description: libmemcached hashing functions and algorithms (development files) Homepage: http://libmemcached.org/libMemcached.html Description-md5: ccf9a982bcb9b1a0d5c1b8b7ba470f26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libhashkit2 Priority: optional Section: libs Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: amd64 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libhashkit1 Filename: pool/main/libm/libmemcached/libhashkit2_1.0.8-1ubuntu2_amd64.deb Size: 20356 MD5sum: 5b9a8ceec3cfe01714fb77644575cbaa SHA1: 5d7581206d2bcf954ffa4144ffd3133777f1c0ac SHA256: f6597c6e56ce541beca1c26d735804ea765a0ee64a3fee542c55c0b3ff6a15f8 Description: libmemcached hashing functions and algorithms Multi-Arch: same Homepage: http://libmemcached.org/libMemcached.html Description-md5: e61170fc5139518ed53f802b59ce41cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libhcrypto4-heimdal Priority: standard Section: libs Installed-Size: 280 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libasn1-8-heimdal (>= 1.4.0+git20110226), libc6 (>= 2.14), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libhcrypto4-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 84050 MD5sum: 780459760de4d7568ab9a86806aaa5bc SHA1: 77b5ac3e70ae80db801483cd59a93d720d8c63ea SHA256: bd26322be7fa62b6e4c9c7edc29e6060283621bf7ba63bacac0da993a70f1079 Description: Heimdal Kerberos - crypto library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 6492d04dab376288c3e43218cb4d78e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libhdate-dev Priority: optional Section: libdevel Installed-Size: 495 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: amd64 Source: libhdate Version: 1.6-2ubuntu3 Depends: libhdate1 (= 1.6-2ubuntu3) Filename: pool/main/libh/libhdate/libhdate-dev_1.6-2ubuntu3_amd64.deb Size: 358000 MD5sum: 446b5636aa56e998924fbeea0437a1bb SHA1: 44817f56b351abe04d3d96de724d8330f400af78 SHA256: 15a2761965743d7d3cc793753f1ac8e5bb1e9f1d3d8d4cd3ad9886c0a7bc8151 Description: Provides a library that help use hebrew dates (development files) Multi-Arch: same Homepage: http://libhdate.sourceforge.net/ Description-md5: 5a62335224b360f9d5a386f8a3d7eead Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhdate1 Priority: optional Section: libs Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: amd64 Source: libhdate Version: 1.6-2ubuntu3 Replaces: libhdate0 Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Conflicts: libhdate0 Filename: pool/main/libh/libhdate/libhdate1_1.6-2ubuntu3_amd64.deb Size: 15338 MD5sum: 738a953217e7017fa3717d7d01694d81 SHA1: 8400b22ed49a2d2e201d9d7bff515507a01ae08f SHA256: bb95488cccc1d6ca67beb7cbc31ed5c3f457a1acde54e7801d1f8d144cf34845 Description: Provides a library that help use hebrew dates Multi-Arch: same Homepage: http://libhdate.sourceforge.net/ Description-md5: 0d005a41fc26bfcf767a9bf6c50c7d76 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhdb9-heimdal Priority: optional Section: libs Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Replaces: heimdal-lib (<< 0.3e-5) Provides: heimdal-hdb-api-8 Depends: libasn1-8-heimdal (>= 1.6~git20120311g), libc6 (>= 2.14), libcomerr2 (>= 1.01), libdb5.3, libkrb5-26-heimdal (>= 1.6~git20131117), libldap-2.4-2 (>= 2.4.7), libroken18-heimdal (>= 1.4.0+git20110226), libsqlite3-0 (>= 3.5.9) Pre-Depends: multiarch-support Conflicts: heimdal-libs (<< 0.3e-5) Filename: pool/main/h/heimdal/libhdb9-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 59062 MD5sum: 92e172f0feac2ab5239f44ee33cba031 SHA1: dbda8ad035c9a87d9234f5140c87dc78fc607845 SHA256: 80194723a85a7d5cef555674c0baf17f4da06c182e92ff43e78b482322f3d283 Description: Heimdal Kerberos - kadmin server library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: bc0ba4f7d9668b579f08d831a24307a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libheartbeat2 Priority: optional Section: libs Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: heartbeat Version: 1:3.0.5-3.2 Replaces: heartbeat (<= 2.99.2+sles11r7-0+1) Depends: libc6 (>= 2.15), libglib2.0-0 (>= 2.12.0), libplumb2 (>= 1.0.11+hg2754) Conflicts: heartbeat (<= 2.99.2+sles11r7-0+1) Filename: pool/main/h/heartbeat/libheartbeat2_3.0.5-3.2_amd64.deb Size: 29630 MD5sum: 013c51bf58fb218fcb260f83f1f09b32 SHA1: 52e86ce3968519e6f775df6572ed8911e2cc5b97 SHA256: 57982733fc0f79f0d5df365065ad3babb39bf36c577c2c6ba55227bcee97f875 Description: Subsystem for High-Availability Linux (libraries) Homepage: http://www.linux-ha.org/ Description-md5: d4f0fa776e9069054e6b632ec6f5a777 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libheartbeat2-dev Priority: optional Section: libdevel Installed-Size: 278 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: heartbeat Version: 1:3.0.5-3.2 Replaces: heartbeat (<= 2.99.2+sles11r7-0+1) Depends: libheartbeat2 (= 1:3.0.5-3.2) Conflicts: heartbeat (<= 2.99.2+sles11r7-0+1) Filename: pool/main/h/heartbeat/libheartbeat2-dev_3.0.5-3.2_amd64.deb Size: 49080 MD5sum: 1bbb0fbb1a19ba9be6f400ca7817c9fa SHA1: 04257f26888fe07069bfd8322d6b990f3d0b1a66 SHA256: d97552712841990c8437a81290b90a792f2d5ea950a3dd9c0eb6642506adfdbe Description: Subsystem for High-Availability Linux (development files) Homepage: http://www.linux-ha.org/ Description-md5: cd55666b03ed8197035d3b10d3f8b496 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libheimbase1-heimdal Priority: standard Section: libs Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libheimbase1-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 28984 MD5sum: a1e1acff1d85c5a1a392653a7be99266 SHA1: 93f8ccc9a4ebcd54c01f8b4ff97974e816b43b13 SHA256: 4843947b06e4176088ef651dc2ee58090c16712fa2a3fa2e66c85eb01f87f55e Description: Heimdal Kerberos - Base library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 5f80987f2f2b6c07e507ae48f47db52e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libheimntlm0-heimdal Priority: standard Section: libs Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.4), libhcrypto4-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libheimntlm0-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 15158 MD5sum: 16ffad2df0811e407444579de248294a SHA1: edcbc19ac6d637fa41605b893f782443cfba609b SHA256: d7e35695985c36030d8551a4126c63df79bf37101dd4747496a5f4c2c47ea488 Description: Heimdal Kerberos - NTLM support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 71904fc86bf986fea9ffa7dd39261e6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libhesiod-dev Priority: extra Section: libdevel Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Karl Ramm Architecture: amd64 Source: hesiod Version: 3.2.1-2 Depends: libhesiod0 (= 3.2.1-2) Filename: pool/main/h/hesiod/libhesiod-dev_3.2.1-2_amd64.deb Size: 17162 MD5sum: 062e23bec747f0df8a4f2893df581156 SHA1: 24d4e89b1067ddb1c314058b0b9d1e59f941171c SHA256: 58dd6486eeafe91ac7448bd7c1754b535983e8e5e7ffb6e2c9adbd893383b1fc Description: Project Athena's DNS-based directory service - development files Multi-Arch: same Description-md5: 2a4c00e41fd0b17bd205e9c26fd8593d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhesiod0 Priority: extra Section: libs Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Karl Ramm Architecture: amd64 Source: hesiod Version: 3.2.1-2 Depends: libc6 (>= 2.14), libidn11 (>= 1.13), debconf (>= 0.5) | debconf-2.0 Pre-Depends: multiarch-support Filename: pool/main/h/hesiod/libhesiod0_3.2.1-2_amd64.deb Size: 25058 MD5sum: b9f59f21b76b6235479bc2287f077c22 SHA1: 682f4d059579e723f573c4ede27d176cf7894814 SHA256: b7779126cfbc410ae4870d4d766cc9dbc36e6f52aa3d1bd5bde5fe7127ae3e22 Description: Project Athena's DNS-based directory service - libraries Multi-Arch: same Description-md5: ea831c950063507e31bb33a46ae62f5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhfsp-dev Priority: optional Section: libdevel Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Aurélien GÉRÔME Architecture: amd64 Source: hfsplus Version: 1.0.4-12.1 Depends: libhfsp0 (= 1.0.4-12.1), libc6-dev Filename: pool/main/h/hfsplus/libhfsp-dev_1.0.4-12.1_amd64.deb Size: 40106 MD5sum: 21014239dd72b5181f0d97733c95ddfc SHA1: ab5ea277ecad13a8ef93324e5102b9f6fd076587 SHA256: 9459ba7ef940123da63746a27e9495e5b072d80861d682eed184d3d4054c726d Description: Library to access HFS+ formatted volumes Description-md5: e11c049c3b4224354c6827f09df05cca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhfsp0 Priority: optional Section: libs Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Aurélien GÉRÔME Architecture: amd64 Source: hfsplus Version: 1.0.4-12.1 Depends: libc6 (>= 2.14) Filename: pool/main/h/hfsplus/libhfsp0_1.0.4-12.1_amd64.deb Size: 33192 MD5sum: 3326a61ba38602ccebaa64342438dfe5 SHA1: ab40eeb2d532d765c7afcf98728a811942d41479 SHA256: d3a488bc2348682f30b0d0ae6f0a4fa5e04990adfedcd155721d4c4ed03b6465 Description: Shared library to access HFS+ formatted volumes Description-md5: 6b64bb3b9038f13398437d50b6d52563 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libhogweed2 Priority: optional Section: libs Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Magnus Holmgren Architecture: amd64 Source: nettle Version: 2.7.1-1 Depends: libc6 (>= 2.14), libgmp10, libnettle4 Pre-Depends: multiarch-support Filename: pool/main/n/nettle/libhogweed2_2.7.1-1_amd64.deb Size: 132942 MD5sum: 8cd8c4d07c7bac0d617553301a4dfc17 SHA1: e854c18abd0005d07d462cbb9fbf004c8c17516e SHA256: da16a4003ebdb4513bc4b4a5c198fd6f043f95decbee05c1244506a59a54543a Description: low level cryptographic library (public-key cryptos) Multi-Arch: same Homepage: http://www.lysator.liu.se/~nisse/nettle/ Description-md5: 2a20554eaadbd355079396956d5d3edb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libhook-lexwrap-perl Priority: optional Section: perl Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.24-1 Depends: perl Filename: pool/main/libh/libhook-lexwrap-perl/libhook-lexwrap-perl_0.24-1_all.deb Size: 12962 MD5sum: 812d5eb9d22511e98fbe550c7181d27f SHA1: 9e65cfffe1be83bfb7ab5a59338360e0f0e5bcec SHA256: 7cd13dfc072deccded9ab6bb4fb9d6ef6f479b81db02a4359ca97cf91c251940 Description: lexically scoped subroutine wrappers Homepage: http://search.cpan.org/dist/Hook-LexWrap/ Description-md5: feb70df0de883e1f9d0c00f4ff81b6b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhpmud-dev Priority: optional Section: libdevel Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: amd64 Source: hplip Version: 3.14.3-0ubuntu3 Depends: libhpmud0 (= 3.14.3-0ubuntu3) Filename: pool/main/h/hplip/libhpmud-dev_3.14.3-0ubuntu3_amd64.deb Size: 6984 MD5sum: 80f984348b711fa9fdc4fac3a0673873 SHA1: 533b7e28a0c257e2a6dd38af30582ad94ed21dc8 SHA256: fb0b4bc1fa4ece5804eaf881cd068a0097409cf48510c133c3644992b1ccac52 Description: HP Multi-Point Transport Driver (hpmud) development libraries Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: c3037acc090b7dd9e9bb4af0e55b60d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhpmud0 Priority: optional Section: libs Installed-Size: 374 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: amd64 Source: hplip Version: 3.14.3-0ubuntu3 Replaces: hplip (<< 3.10.6-3) Depends: libc6 (>= 2.15), libsnmp30 (>= 5.7.2~dfsg), libusb-1.0-0 (>= 2:1.0.8) Breaks: hplip (<< 3.10.6-3) Filename: pool/main/h/hplip/libhpmud0_3.14.3-0ubuntu3_amd64.deb Size: 95586 MD5sum: 61e2910aae3cdc6eed4f19e14f683f76 SHA1: da8fc5d60b0d7d43d12f2bfae57bf77eaaa796f3 SHA256: 0d558400e5248823374d08ce1219f3cbb0d7c68113632c529e6c7732fd2e4034 Description: HP Multi-Point Transport Driver (hpmud) run-time libraries Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 1edbc501bdc7dd319ba80065197918f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhsqldb1.8.0-java Priority: optional Section: java Installed-Size: 975 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: hsqldb1.8.0 Version: 1.8.0.10+dfsg-3ubuntu1 Depends: libservlet3.0-java Suggests: java-virtual-machine Conflicts: openoffice.org-base (<< 1:2.3.1~m8) Filename: pool/main/h/hsqldb1.8.0/libhsqldb1.8.0-java_1.8.0.10+dfsg-3ubuntu1_all.deb Size: 894698 MD5sum: 8ab8cccf8e79a27496df8f32b6d19dc7 SHA1: 6e6d9fd52169e9dcd0daac48dc00016bd134c16e SHA256: cfb3c068e17cd79e93bf1f892d1f71dd36e2c068b3480902ad5bd82c074d1e8e Description: Java SQL database engine Description-md5: 214a2c1ad31e54bb2dc0632a9a88f65a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libhtml-form-perl Priority: optional Section: perl Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.03-1 Replaces: libwww-perl (<< 6.00) Depends: perl, libhtml-parser-perl, libhttp-message-perl, liburi-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhtml-form-perl/libhtml-form-perl_6.03-1_all.deb Size: 23526 MD5sum: 17f4cd2bfc8ea3fc9e2643f4c92de476 SHA1: f571e9e7428ce8eba5fa385ec40f1eeb2f5919d7 SHA256: 13306f40931597da8017d151e5bb1d998da90ebb1bc854c4fee500a49f8c680d Description: module that represents an HTML form element Homepage: http://search.cpan.org/dist/HTML-Form/ Description-md5: a04624fcbae50d0127cb9f86c423b919 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhtml-format-perl Priority: optional Section: perl Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.11-1 Depends: perl, libfont-afm-perl, libhtml-tree-perl Filename: pool/main/libh/libhtml-format-perl/libhtml-format-perl_2.11-1_all.deb Size: 44666 MD5sum: 004bee852db8b3e931330a24c202bb1a SHA1: 527a99e342d92a9f49373b9cec7fca998420a70e SHA256: ecdc06a98957072f9099004819a6be0d44ba2bb14b3b842870a063b018385133 Description: module for transforming HTML into various formats Homepage: https://metacpan.org/release/HTML-Format/ Description-md5: 387a4855e4c1ae35928ce2610e151f0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhtml-parser-perl Priority: optional Section: perl Installed-Size: 247 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 3.71-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4), liburi-perl, libhtml-tagset-perl Suggests: libdata-dump-perl Filename: pool/main/libh/libhtml-parser-perl/libhtml-parser-perl_3.71-1build1_amd64.deb Size: 98152 MD5sum: b6dc521044b52142a8c421182c28e75c SHA1: 1ebf4567b9cb13d118652335c66ce471268d6f06 SHA256: 34d2c2d3ec8172d971a45f70e0c8e9b38b0f32af5e4933840c62a803198493f0 Description: collection of modules that parse HTML text documents Enhances: libwww-perl Homepage: https://metacpan.org/release/HTML-Parser/ Description-md5: d44e271914b37571f965142b054023e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhtml-tagset-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 3.20-2 Depends: perl (>= 5.6.0-16) Filename: pool/main/libh/libhtml-tagset-perl/libhtml-tagset-perl_3.20-2_all.deb Size: 13536 MD5sum: 86862a4ac995db738fcfd012275fc3a7 SHA1: ade13078d38ffbcd3844cee51a315ef6b53bfdc1 SHA256: 9d3090fe343a2689704ff6110f61a23b8de9890619e5122199459a6a84b79d4a Description: Data tables pertaining to HTML Homepage: http://search.cpan.org/dist/HTML-Tagset/ Description-md5: dd404aa24bbca6a71cd27a9deaa487f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhtml-template-perl Priority: optional Section: perl Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.95-1 Depends: perl Suggests: libipc-sharedcache-perl Filename: pool/main/libh/libhtml-template-perl/libhtml-template-perl_2.95-1_all.deb Size: 65450 MD5sum: 4de2ed3b364502459d19e1f11fd62205 SHA1: d3dd8fe4d3b195625eb5e4b3da127fd7b733e66d SHA256: 1961b77dfb09c0bbbebc696d61b5819555b102b15f2b4eb6f7e1fb959cf78c85 Description: module for using HTML templates with Perl Homepage: https://metacpan.org/release/HTML-Template/ Description-md5: 4a80337cafeb53d1a2b4df50831a4cbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libhtml-tree-perl Priority: optional Section: perl Installed-Size: 506 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 5.03-1 Depends: perl, libhtml-parser-perl, libhtml-tagset-perl Recommends: libhtml-format-perl, libwww-perl Filename: pool/main/libh/libhtml-tree-perl/libhtml-tree-perl_5.03-1_all.deb Size: 214978 MD5sum: 729d76cfb610be4561b0b1d7e5062840 SHA1: b621f73b9fd365ad2e58c28ff01ca2a6207b4956 SHA256: 524c03ee960feebfb981f4d9ffe19c8b5e99ea453e72fae5c217d470a3c86a4f Description: Perl module to represent and create HTML syntax trees Homepage: https://metacpan.org/release/HTML-Tree/ Description-md5: 66049489ff5b549419062d4eb5d1dc6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhttp-cookies-perl Priority: optional Section: perl Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.00-2 Replaces: libwww-perl (<< 6.00) Depends: perl, libhttp-date-perl, libhttp-message-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhttp-cookies-perl/libhttp-cookies-perl_6.00-2_all.deb Size: 23324 MD5sum: 6bd4e1b4aee1b60fbf4008f79575defd SHA1: 7efdd2a8ec753b115eacb24c4900ac930524d7e4 SHA256: 527dee7a240ebbc428d79f942e1a0e53ff5fc2e72378ebde1a7d0912677c7839 Description: HTTP cookie jars Homepage: http://search.cpan.org/dist/HTTP-Cookies/ Description-md5: c1ce53c946fc7a4ab5d7dbd30e56cd38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhttp-daemon-perl Priority: optional Section: perl Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.01-1 Replaces: libwww-perl (<< 6.00) Depends: perl, libhttp-date-perl, libhttp-message-perl, liblwp-mediatypes-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhttp-daemon-perl/libhttp-daemon-perl_6.01-1_all.deb Size: 17020 MD5sum: 2377c14ea7e8e064db4720f0b1c1ca5b SHA1: a76523cb0e85d2e98c1210fcf516a08b11bd38e8 SHA256: 214779574f112310ede3e20973d6c105875e2f124d86b0dd7db3c725a5770398 Description: simple http server class Homepage: http://search.cpan.org/dist/HTTP-Daemon/ Description-md5: 86a26579760d05601c918d89642d3431 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhttp-date-perl Priority: optional Section: perl Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.02-1 Replaces: libwww-perl (<< 6.00) Depends: perl, libtimedate-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhttp-date-perl/libhttp-date-perl_6.02-1_all.deb Size: 10392 MD5sum: 3aee8ce5ae257f3dfea03d2127dfc845 SHA1: df37894b2fae1e1132a548cb2ef6a3f920927f9d SHA256: 57f84eccc965d2d48b561e049d0fe705e1c279857c69ad22f599c612d99f2fd9 Description: module of date conversion routines Homepage: http://search.cpan.org/dist/HTTP-Date/ Description-md5: 9785d548badb18b00824a00956a6e270 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhttp-message-perl Priority: optional Section: perl Installed-Size: 204 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.06-1 Replaces: libwww-perl (<< 6.00) Depends: perl, libencode-locale-perl, libhttp-date-perl, libio-html-perl, liblwp-mediatypes-perl, liburi-perl, perl (>= 5.11) | libio-compress-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhttp-message-perl/libhttp-message-perl_6.06-1_all.deb Size: 78694 MD5sum: 9ef47ed10b2bb198a2183ce7063629cd SHA1: ba2b0779020582ef87bda6fcd5770f623da11d0e SHA256: 60e9bad2e4d21ea2f5dbf31dc07f6a1d0b9bd1ef24e90c03d16bcec35fdabf98 Description: perl interface to HTTP style messages Homepage: https://metacpan.org/release/HTTP-Message/ Description-md5: 7702e0970d06885faa520063a14e79f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhttp-negotiate-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.00-2 Replaces: libwww-perl (<< 6.00) Depends: perl, libhttp-message-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhttp-negotiate-perl/libhttp-negotiate-perl_6.00-2_all.deb Size: 13372 MD5sum: 702cbbf6e3fea8eac863a0ffa34d4645 SHA1: 8ee10bd0f92aefe29ff6d9ab12d068cfa1050864 SHA256: 7819b0b190485629d325eceee5eb47f44a0b389cee34da166c5f0ebacf8d41e2 Description: implementation of content negotiation Homepage: http://search.cpan.org/dist/HTTP-Negotiate/ Description-md5: 8b19de39e2935c5828d5b32d39ba3df5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhud-client2 Priority: optional Section: libs Installed-Size: 198 Maintainer: Ubuntu Developers Architecture: amd64 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libc6 (>= 2.14), libdee-1.0-4 (>= 0.5.2), libdee-qt5-3 (>= 3.3+14.04.20140317), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.37.3), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud-client2_13.10.1+14.04.20140402-0ubuntu1_amd64.deb Size: 46466 MD5sum: 9257177670ae4831bdf2f73298a531bf SHA1: b3d8d6d1e8cb7ca9e98c41a518e5678f2b46f78e SHA256: 2b5325f0d1564375048b185c530c98c2de2896d324a47f86963e20a616a12290 Description: private library for implementing a HUD frontend Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: 2c7610c9e83ed3355a63288f0ec01a74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud-client2-dev Priority: optional Section: libdevel Installed-Size: 145 Maintainer: Ubuntu Developers Architecture: amd64 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud-client2 (= 13.10.1+14.04.20140402-0ubuntu1), libglib2.0-dev Recommends: libhud-client2-doc Filename: pool/main/h/hud/libhud-client2-dev_13.10.1+14.04.20140402-0ubuntu1_amd64.deb Size: 11868 MD5sum: 40e6d76d4a2bd186a9be83597fdc80bb SHA1: 4c17377b315d7468ceda81921e1411c8ba971fce SHA256: d3e0644e04cf8f294c0b556f080c71fddef97b203f65569e61ae1e3599393bdd Description: private library for implementing a HUD frontend Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: c972b61dbcd93d1ee4ec32841380278a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud-client2-doc Priority: optional Section: doc Installed-Size: 212 Maintainer: Ubuntu Developers Architecture: all Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud-client2-dev (>= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud-client2-doc_13.10.1+14.04.20140402-0ubuntu1_all.deb Size: 17206 MD5sum: da4bf2483be3f18a0f071d745d0b9cb4 SHA1: 7a78acef5d2becfb04eecd29ee31f8931fa85e6e SHA256: d5d854ba5be80ff7897fa4bf77926dd5e9318c57b61b08e3f5062206b72167ba Description: private library for implementing a HUD frontend Homepage: http://launchpad.net/hud Description-md5: be36e1ce1035bc219738d87ad6e9c7ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud-gtk1 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Architecture: amd64 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.4), libhud2 (>= 13.04.0-0ubuntu1~ppa2) Pre-Depends: multiarch-support Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud-gtk1_13.10.1+14.04.20140402-0ubuntu1_amd64.deb Size: 4934 MD5sum: 05c047af24c7eac81c6770e70093edc8 SHA1: e95cc53f40238f378be5b24414447e71239369bc SHA256: c1b4373e3060c3ee9b7d5184f6408d230db2b64770ff013e047e4bad2afcd1ff Description: GTK helpers for exporting items to the Unity HUD Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: 24e8d2c7323878f17d964317bcb09587 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud-gtk1-dev Priority: optional Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Architecture: amd64 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud-gtk1 (= 13.10.1+14.04.20140402-0ubuntu1), libhud2-dev (= 13.10.1+14.04.20140402-0ubuntu1), libgtk-3-dev Filename: pool/main/h/hud/libhud-gtk1-dev_13.10.1+14.04.20140402-0ubuntu1_amd64.deb Size: 3028 MD5sum: dbeeb94cd5aeceb51f89f77f07e029b2 SHA1: 94035754856e3bd2dc1fce30b2d09d029e54da38 SHA256: df6eef2fe74bb6663436ba7c86c8b93dfc9f34221618451974ef7525fc67100a Description: GTK helpers for exporting items to the Unity HUD Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: 9c17652244df3cbbbc3a143ea9ba8cfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud-gtk1-doc Priority: optional Section: doc Installed-Size: 81 Maintainer: Ubuntu Developers Architecture: all Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud-gtk1-dev (>= 13.10.1+14.04.20140402-0ubuntu1), libhud2-doc (>= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud-gtk1-doc_13.10.1+14.04.20140402-0ubuntu1_all.deb Size: 9382 MD5sum: 4a9853763b90f6154261f8d161f7333c SHA1: 9f08150ac5475c955deb8deb96c2a96e49efd2ee SHA256: b0d00726c933ac82038536e95f5d7aea19b355f3d3badf37b2595dd78c43a30d Description: GTK helpers for exporting items to the Unity HUD Homepage: http://launchpad.net/hud Description-md5: 7e11e2cb6c06b23481c1a630bdec8d15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud2 Priority: optional Section: libs Installed-Size: 126 Maintainer: Ubuntu Developers Architecture: amd64 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud2_13.10.1+14.04.20140402-0ubuntu1_amd64.deb Size: 26308 MD5sum: 4db1ee8c7ba4e6d7869ff9913bc6b545 SHA1: b112c9bfb1f682ab7740f4933782e3a167df3371 SHA256: 88a539a663cc746b9ba49570e5d20de59c74174e92dcbae035ac3a392cbba9a2 Description: library for exporting items to the Unity HUD Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: a7907b4514fa5355f84bc89a20c27aa4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libhud2-dev Priority: optional Section: libdevel Installed-Size: 112 Maintainer: Ubuntu Developers Architecture: amd64 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud2 (= 13.10.1+14.04.20140402-0ubuntu1), libglib2.0-dev Filename: pool/main/h/hud/libhud2-dev_13.10.1+14.04.20140402-0ubuntu1_amd64.deb Size: 8514 MD5sum: 7a03e0b91b799d11295a6cbea83ef2c2 SHA1: 8baf11af10d710be550b1dcf42fe75ab4e801e41 SHA256: 7e59e8cd07f28409ca8d546384c19625f03b31c716b0fa654a0e04ac90d9109f Description: library for exporting items to the Unity HUD Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: 9cd92e06f6758a2a7b79099816edfc3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud2-doc Priority: optional Section: doc Installed-Size: 161 Maintainer: Ubuntu Developers Architecture: all Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud2-dev (>= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud2-doc_13.10.1+14.04.20140402-0ubuntu1_all.deb Size: 15260 MD5sum: 582807820d32c438f6a18a08df579a36 SHA1: 6e64198c368b02cadba248d3d1bdd3358f666727 SHA256: 8068d90b13bc5c91e2fc83291057c3b770a0950a4b0e0dd17212afe2fc7a8c6c Description: library for exporting items to the Unity HUD Homepage: http://launchpad.net/hud Description-md5: c29f9b6554b89d87d21bf40b550d0e8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhunspell-1.3-0 Priority: optional Section: libs Installed-Size: 431 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: hunspell Version: 1.3.2-6ubuntu2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Recommends: hunspell-en-us | hunspell-dictionary | myspell-dictionary Conflicts: openoffice.org-core (= 2.2.0~rc2-1) Filename: pool/main/h/hunspell/libhunspell-1.3-0_1.3.2-6ubuntu2_amd64.deb Size: 107092 MD5sum: 95c1a9ce70a273ac8dad06241465db73 SHA1: c1140ba2d06544cdb97ffc0241bcfd7587edede4 SHA256: 1b3707a70f17e659bdff95038c7a9b1710911195d673e5517e6714173145516e Description: spell checker and morphological analyzer (shared library) Multi-Arch: same Homepage: http://hunspell.sourceforge.net/ Description-md5: a97e9e4624b469f6e76fab734c70d0fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhunspell-1.3-0-dbg Priority: extra Section: debug Installed-Size: 1153 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: hunspell Version: 1.3.2-6ubuntu2 Recommends: hunspell-en-us | hunspell-dictionary | myspell-dictionary Conflicts: openoffice.org-core (= 2.2.0~rc2-1) Filename: pool/main/h/hunspell/libhunspell-1.3-0-dbg_1.3.2-6ubuntu2_amd64.deb Size: 262486 MD5sum: 4a193826be8e2c8d2f27f8c3bffb2955 SHA1: 9ff239b8fadc6d93d63c9361030e92e13cbdf710 SHA256: 1500aa9d4ebfd2b5cb6773b67f31a23cff1321f37b93c00b881de274663f7290 Description: spell checker and morphological analyzer (debug symbols) Homepage: http://hunspell.sourceforge.net/ Description-md5: e2074ad75ca0f1a06eb267d984d6e117 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhunspell-dev Priority: optional Section: libdevel Installed-Size: 677 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: hunspell Version: 1.3.2-6ubuntu2 Replaces: hunspell (<< 1.2.7-2) Depends: libhunspell-1.3-0 (= 1.3.2-6ubuntu2) Filename: pool/main/h/hunspell/libhunspell-dev_1.3.2-6ubuntu2_amd64.deb Size: 157234 MD5sum: cc1233894196a4095fc7d1d1cf51406f SHA1: cba903ab64f85e20e1767945262bca4b64db0294 SHA256: 407df6beaf476c37599f1643cc0779347a215320b5104f077aaf240389ea8f45 Description: spell checker and morphological analyzer (development) Multi-Arch: same Homepage: http://hunspell.sourceforge.net/ Description-md5: 39d11eceaaaf558143dac83bc884bc9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhx-dev Priority: extra Section: libdevel Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Kleineidam Architecture: amd64 Source: libhx Version: 3.15-2ubuntu1 Depends: libhx28 (= 3.15-2ubuntu1), libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/libh/libhx/libhx-dev_3.15-2ubuntu1_amd64.deb Size: 50756 MD5sum: ae85d75a417270b76605bdd2aeea4519 SHA1: 71bec548cdf85553780878f73e7b6485a9a0d36a SHA256: 653072532b2bca68d08c5d9a858345929345ed24baa458e13e1b520af829327c Description: Development files for libhx Homepage: http://libhx.sourceforge.net/ Description-md5: 455418371633e62ae226d9c8c2602905 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhx-doc Priority: extra Section: doc Installed-Size: 538 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Kleineidam Architecture: all Source: libhx Version: 3.15-2ubuntu1 Suggests: libhx-dev Filename: pool/main/libh/libhx/libhx-doc_3.15-2ubuntu1_all.deb Size: 519044 MD5sum: b4f1dbdb5104d61cd12f7d38839f2970 SHA1: 5060580c9d79a9ed4a55f50113e07ca3a1e6d974 SHA256: ea87b0a56f373fc176b6245971122d495e40e39f244f390a3a38a78d1e22d5ed Description: Documentation files for libhx Homepage: http://libhx.sourceforge.net/ Description-md5: 1532a4a4b10413aecf7037005cf3296e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhx28 Priority: extra Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Kleineidam Architecture: amd64 Source: libhx Version: 3.15-2ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libh/libhx/libhx28_3.15-2ubuntu1_amd64.deb Size: 29794 MD5sum: 25ec9bfd3630bfcf61c057e0686f60a1 SHA1: 4a99162f28faccd617e13af025bf57eebb0fa142 SHA256: ea7232b734a9b5647b35523ec0a525a2cf3e55d206ea06b8197da0d5fcb301f1 Description: C library providing queue, tree, I/O and utility functions Multi-Arch: same Homepage: http://libhx.sourceforge.net/ Description-md5: 250f5abedae6b7911e18842967f70d98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libhx509-5-heimdal Priority: standard Section: libs Installed-Size: 369 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libasn1-8-heimdal (>= 1.4.0+git20110226), libc6 (>= 2.14), libcomerr2 (>= 1.34), libhcrypto4-heimdal (>= 1.4.0+git20110226), libheimbase1-heimdal (>= 1.6~git20131117), libroken18-heimdal (>= 1.4.0+git20110226), libwind0-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libhx509-5-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 103812 MD5sum: e2f227b0ca78db8a4a49e9268215647f SHA1: c83c89796e77866f1d28815be85d4966d016a156 SHA256: 5e6435fad30cd03b9088267367ecc8b6163d20de6c8c57ab1f0303dfb6b68293 Description: Heimdal Kerberos - X509 support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 272768f50d42b97d24ed462de2154649 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libhybris Priority: extra Section: libs Installed-Size: 270 Maintainer: Ubuntu Developers Architecture: amd64 Version: 0.1.0+git20131207+e452e83-0ubuntu12 Depends: libandroid-properties1 (= 0.1.0+git20131207+e452e83-0ubuntu12), libhardware2, libmedia1, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libhybris-common1, libstdc++6 (>= 4.6), libwayland-client0 (>= 1.3.92), libwayland-server0 (>= 1.0.2) Filename: pool/main/libh/libhybris/libhybris_0.1.0+git20131207+e452e83-0ubuntu12_amd64.deb Size: 47648 MD5sum: 9bedfea0b5e1e9e92e8e488c823a2684 SHA1: 2264ad1edd3ec26a814b8cbc8b7c44662347c5c3 SHA256: 541c7e27771a3cbff7d81cfc7b1c39d7f4527a39d34e8aaf8bbaf7af332010a1 Description: Allows to run bionic-based HW adaptations in glibc systems - libs Description-md5: d20384e11368d9f090577e52e675ed57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhybris-common-dev Priority: extra Section: libdevel Installed-Size: 50 Maintainer: Ubuntu Developers Architecture: amd64 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Depends: libhybris-common1 (= 0.1.0+git20131207+e452e83-0ubuntu12) Breaks: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Filename: pool/main/libh/libhybris/libhybris-common-dev_0.1.0+git20131207+e452e83-0ubuntu12_amd64.deb Size: 4500 MD5sum: 38bc24a16bb84dcbfee848f9fac81ff3 SHA1: fcd0c89032074d80d9ca3e11b72ef86081c2a243 SHA256: 8196e69f4afdd5c82d921bd17bd65a5432895b0fd3d5e9701bcb7b03a76d16ee Description: Development files for libhybris-common Description-md5: 27556b4ff08d6ee084db91ea770617de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhybris-common1 Priority: extra Section: libs Installed-Size: 129 Maintainer: Ubuntu Developers Architecture: amd64 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Depends: libandroid-properties1, libc6 (>= 2.14) Breaks: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Filename: pool/main/libh/libhybris/libhybris-common1_0.1.0+git20131207+e452e83-0ubuntu12_amd64.deb Size: 27560 MD5sum: 4d6727bf1d33d58a5c8c91bc300f1b44 SHA1: bf8a2ce188d179d1814c3ee5f1c8c433366df925 SHA256: 96990e287e2640a89e51be302a3f5404af9a1c50e97c3c4564492793e0c5fd48 Description: Common library that contains the Android linker and custom hooks Description-md5: 618c5643ccb4d8d4d8db9e33d16f42e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhybris-dev Priority: extra Section: libdevel Installed-Size: 165 Maintainer: Ubuntu Developers Architecture: amd64 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Depends: libhybris (= 0.1.0+git20131207+e452e83-0ubuntu12), android-headers (>= 4.2.2), libandroid-properties-dev (= 0.1.0+git20131207+e452e83-0ubuntu12), libhardware-dev (= 0.1.0+git20131207+e452e83-0ubuntu12), libmedia-dev (= 0.1.0+git20131207+e452e83-0ubuntu12), libhybris-common-dev (= 0.1.0+git20131207+e452e83-0ubuntu12), libgles2-mesa-dev Filename: pool/main/libh/libhybris/libhybris-dev_0.1.0+git20131207+e452e83-0ubuntu12_amd64.deb Size: 19516 MD5sum: c272bc6949cd1a03734679141c1dd051 SHA1: 91f99238cd80d2564f552206c175794045d75933 SHA256: 6485856c81b8b005d09f394a5d51d7f814db0f10b885f116a5fdafdfb9d56141 Description: Development headers and libraries for libhybris Description-md5: fcfe2cd71f2cfbabcbb6f94dda4cbe46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhyphen-dev Priority: optional Section: libdevel Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: hyphen Version: 2.8.6-3ubuntu2 Replaces: libaltlinuxhyph-dev Provides: libaltlinuxhyph-dev Depends: libhyphen0 (= 2.8.6-3ubuntu2) Conflicts: libaltlinuxhyph-dev, libhnj-dev Filename: pool/main/h/hyphen/libhyphen-dev_2.8.6-3ubuntu2_amd64.deb Size: 182816 MD5sum: 5055dc070429977f5928ee6706c42995 SHA1: 308109a3ac199af01fec6843d6953716f6a48353 SHA256: 744512e8a7b8174ec3007ea80ba66c79af0dd5622735f43f70fab12dc3b7b5fd Description: ALTLinux hyphenation library - development files Description-md5: 88c140d072c0564f1a4bb7f17583c86e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhyphen0 Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: hyphen Version: 2.8.6-3ubuntu2 Depends: libc6 (>= 2.14) Filename: pool/main/h/hyphen/libhyphen0_2.8.6-3ubuntu2_amd64.deb Size: 18386 MD5sum: cdcd6c36e95e8b36d3a7c19beb60b2ab SHA1: 6066fdd7dd64669f16ae572ee9fff6469cc1846f SHA256: ee824ebb33871e14f21295163cde05f997b84c0fc73a8693a98029f55c763e59 Description: ALTLinux hyphenation library - shared library Description-md5: bb218ffba1389cf37f660faeb909cdbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-publishing, ubuntu-gnome-desktop Package: libiberty-dev Priority: optional Section: libdevel Installed-Size: 612 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: libiberty Version: 20131116-1 Filename: pool/main/libi/libiberty/libiberty-dev_20131116-1_amd64.deb Size: 134968 MD5sum: d7d0e868ecc45c2ddad3e17e9968a0d3 SHA1: c0b4eb6f11680e2713c9e28bdf970222775b277e SHA256: 9b8fbc07349c7ded7065b8ebe20f9170611225b2085c866a07b5876b7bc44d6b Description: library of utility functions used by GNU programs Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 48a3f9053763db76e6202bb3fd5cb5b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libibus-1.0-5 Priority: optional Section: libs Installed-Size: 436 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: ibus Version: 1.5.5-1ubuntu3 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/i/ibus/libibus-1.0-5_1.5.5-1ubuntu3_amd64.deb Size: 113806 MD5sum: 72dda4091392cdf074b99f991f488cd2 SHA1: 97ceebcf20c83df44a09cc9c66dad5ff37ac1c92 SHA256: 6c52f1c550e6c7b9ecb36324e05ffec31f5819982b991294789e380085c078a8 Description: Intelligent Input Bus - shared library Multi-Arch: same Homepage: http://code.google.com/p/ibus/ Description-md5: fb7cfdef40194dc7d14444000e952d91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: libibus-1.0-dev Priority: optional Section: libdevel Installed-Size: 2045 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: ibus Version: 1.5.5-1ubuntu3 Replaces: libibus-dev Depends: gir1.2-ibus-1.0 (= 1.5.5-1ubuntu3), libdbus-1-dev, libglib2.0-dev, libibus-1.0-5 (= 1.5.5-1ubuntu3) Filename: pool/main/i/ibus/libibus-1.0-dev_1.5.5-1ubuntu3_amd64.deb Size: 141644 MD5sum: aef741bfcf256ee90ed29e2ca83dd1fd SHA1: 95a221d80838e281849abd2522fbe1fcc35ee6de SHA256: 1cedff7de671899c739957d0ee386ec9e15b05e0c42de065d488dfc2c37afd2c Description: Intelligent Input Bus - development file Homepage: http://code.google.com/p/ibus/ Description-md5: 90767d47bc8a96a7e5f705c5b19a9d1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libibverbs-dev Priority: extra Section: libdevel Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: amd64 Source: libibverbs Version: 1.1.7-1ubuntu1 Depends: libibverbs1 (= 1.1.7-1ubuntu1) Filename: pool/main/libi/libibverbs/libibverbs-dev_1.1.7-1ubuntu1_amd64.deb Size: 68106 MD5sum: d5eb2905afdd30a7e2ec02f97fe42e4c SHA1: 5e0338b0bbb37ba3d60dbd701079e6843c33f478 SHA256: d2f16e141e0646484739fd36e40f03a9907fe5da46e6d7dbe50a6b633ae51560 Description: Development files for the libibverbs library Homepage: http://www.openfabrics.org/ Description-md5: a4ebfd5f539c2b84d8e9c6ec58b0258a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libibverbs1 Priority: extra Section: libs Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: amd64 Source: libibverbs Version: 1.1.7-1ubuntu1 Depends: libc6 (>= 2.14), adduser Filename: pool/main/libi/libibverbs/libibverbs1_1.1.7-1ubuntu1_amd64.deb Size: 23300 MD5sum: 67c31d8a6c0273e6476e4e208b2b4833 SHA1: 3e09c3d703059328d572afdd7f502407abef0e47 SHA256: 819a05d1720dabb90f2d581bd0fe3a0892321769cc0a5ef8fab85f432ea28a09 Description: Library for direct userspace use of RDMA (InfiniBand/iWARP) Homepage: http://www.openfabrics.org/ Description-md5: 8cdb9c883867c94335417ed5085d7667 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libibverbs1-dbg Priority: extra Section: libdevel Installed-Size: 569 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: amd64 Source: libibverbs Version: 1.1.7-1ubuntu1 Depends: libibverbs1 (= 1.1.7-1ubuntu1) Filename: pool/main/libi/libibverbs/libibverbs1-dbg_1.1.7-1ubuntu1_amd64.deb Size: 109212 MD5sum: f4127e88bd11975c09503a82e96d26c2 SHA1: d329c807ad341efdde318251c328adf0b9b32ac5 SHA256: 97eec65fda57c4cc57cb92ee1440fdf4b33a3a4c5f85fffa353775b237267d93 Description: Debugging symbols for the libibverbs library Homepage: http://www.openfabrics.org/ Description-md5: ae914075bdf85d942e88fae1c1cea1ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libical-dbg Priority: extra Section: debug Installed-Size: 514 Maintainer: Kubuntu Developers Original-Maintainer: Fathi Boudra Architecture: amd64 Source: libical Version: 1.0-0ubuntu1 Depends: libical1 (= 1.0-0ubuntu1) Filename: pool/main/libi/libical/libical-dbg_1.0-0ubuntu1_amd64.deb Size: 378536 MD5sum: 0a40147233f5b17f8bd955396e967201 SHA1: 9080b978280d08d2ba3f7b959bfbe93dcd1c17eb SHA256: c9453a7c62ebd73c560c0f3eda81791c2dc2498da310c8b4e567494af8a61a3f Description: debugging symbols for libical Homepage: http://freeassociation.sourceforge.net Description-md5: 4f50f53449a859bfb0a7fd64932af73e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libical-dev Priority: optional Section: libdevel Installed-Size: 1245 Maintainer: Kubuntu Developers Original-Maintainer: Fathi Boudra Architecture: amd64 Source: libical Version: 1.0-0ubuntu1 Depends: libical1 (= 1.0-0ubuntu1) Filename: pool/main/libi/libical/libical-dev_1.0-0ubuntu1_amd64.deb Size: 286238 MD5sum: 32a7116005cefee5ad08e983701e4597 SHA1: 7f5a7b631e8160b9a5d3375f9333e07f77cfa4f7 SHA256: 34b0bc13253969273774292a22ded776a8b1127b851395bf0f82ad8556482984 Description: iCalendar library implementation in C (development) Homepage: http://freeassociation.sourceforge.net Description-md5: b25d9407fdbd7cb4237ea4499d48f2fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libical1 Priority: optional Section: libs Installed-Size: 629 Maintainer: Kubuntu Developers Original-Maintainer: Fathi Boudra Architecture: amd64 Source: libical Version: 1.0-0ubuntu1 Depends: libc6 (>= 2.14), tzdata Filename: pool/main/libi/libical/libical1_1.0-0ubuntu1_amd64.deb Size: 204874 MD5sum: 782fda379b5258e10f36a9d2595b06db SHA1: 736893015d66b2a5fbbdc8e09869530d350452ad SHA256: a547f72b700f19bbe527d02e7f5b8f0718b3fe7ae60f3303711247c784eac7aa Description: iCalendar library implementation in C (runtime) Homepage: http://freeassociation.sourceforge.net Description-md5: cbe24cb3191748512447a8a200ebcd03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libice-dev Priority: optional Section: libdevel Installed-Size: 267 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libice Version: 2:1.0.8-2 Depends: libice6 (= 2:1.0.8-2), x11proto-core-dev Suggests: libice-doc Filename: pool/main/libi/libice/libice-dev_1.0.8-2_amd64.deb Size: 57566 MD5sum: 81afba32a5242b8cd36a79f36833e29b SHA1: bb636669531173ebf9a1c3b7c042c642e6347b52 SHA256: 5ac48ca3e545e9021e250c617cbc47e96a20489c5ad6035c467a68b5b17ccf19 Description: X11 Inter-Client Exchange library (development headers) Multi-Arch: same Description-md5: 9ef50bcec7f1e713478c714843229850 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libice-doc Priority: optional Section: doc Installed-Size: 412 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libice Version: 2:1.0.8-2 Replaces: libice-dev (<< 2:1.0.8) Breaks: libice-dev (<< 2:1.0.8) Filename: pool/main/libi/libice/libice-doc_1.0.8-2_all.deb Size: 131512 MD5sum: d328c241b61d1efcdfa7e541c87ead40 SHA1: 15ec930c95b158be509509bed2df886b08d43f4a SHA256: 8e5c108a48048b46a32c64928d87346aef9fc2d29019c7ff877c2dcd5e90cc63 Description: documentation for the X11 ICE protocol and library Multi-Arch: foreign Description-md5: 3c46cd45d241c709c95513f3fa032162 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libice6 Priority: optional Section: libs Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libice Version: 2:1.0.8-2 Depends: libc6 (>= 2.14), x11-common Pre-Depends: multiarch-support Filename: pool/main/libi/libice/libice6_1.0.8-2_amd64.deb Size: 46990 MD5sum: 982b4217d92eedbb97e1215bf94ea41d SHA1: bc5529363851337a08cb570f47a7f57921d28064 SHA256: 404099e6466301b626c30c101602d39e7c885cc3a2f2b980a0f99b711d281f2a Description: X11 Inter-Client Exchange library Multi-Arch: same Description-md5: ded12730167b4fabe6c8013534c7804a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libice6-dbg Priority: extra Section: libdevel Installed-Size: 443 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libice Version: 2:1.0.8-2 Depends: libice6 (= 2:1.0.8-2) Filename: pool/main/libi/libice/libice6-dbg_1.0.8-2_amd64.deb Size: 123872 MD5sum: bd9fc129c8ab45f5273e1dc5027ea24c SHA1: b5a14fb67fde4f6fbcee04080e33ce3f8cf4e253 SHA256: 4539b423f03fefd1ea1a86c4ba488c98c85d6a24ede24aeb6eed38fbebbca001 Description: X11 Inter-Client Exchange library (debug package) Multi-Arch: same Description-md5: 6a9cec31d306fb92fa732f4fcd6abc9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libicu-dev Priority: optional Section: libdevel Installed-Size: 36145 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: icu Version: 52.1-3 Depends: libicu52 (= 52.1-3), icu-devtools (>= 52.1-3), libc6-dev | libc-dev Suggests: icu-doc Filename: pool/main/i/icu/libicu-dev_52.1-3_amd64.deb Size: 7581804 MD5sum: a052819e9e4c6a2398f7f1e646e0eada SHA1: 3789ba909631763c63d298952a931c31fc5efa28 SHA256: 457b1a3150e4be58dc54edf09e400489582e8a2cdec9ad01d9616cb0f0c12dac Description: Development files for International Components for Unicode Multi-Arch: same Homepage: http://www.icu-project.org Description-md5: 6ba8fb49531a26733d27c3f9dbfe8ad6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libicu52 Priority: optional Section: libs Installed-Size: 27283 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: icu Version: 52.1-3 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/i/icu/libicu52_52.1-3_amd64.deb Size: 6769846 MD5sum: 5f9bd6ce56d9527c7ffd8a32ecdcad74 SHA1: a7798c88d42811211a4b69d9beb972402a2f30d2 SHA256: 1158b77b3c41288aaa228a6677f4b8abad978ef40f9821175ad3173ca2c6a19c Description: International Components for Unicode Multi-Arch: same Homepage: http://www.icu-project.org Description-md5: ea5cc55770d8f276c67880d90115d206 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libicu52-dbg Priority: extra Section: debug Installed-Size: 6792 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: icu Version: 52.1-3 Depends: libicu52 (= 52.1-3) Filename: pool/main/i/icu/libicu52-dbg_52.1-3_amd64.deb Size: 5924186 MD5sum: 06bcfe7561fd85cf418a52e4806c51a5 SHA1: f4c412e261d155ab7b7ef6776bcdc850f2ca0b5e SHA256: f39694aad6e2bf9a2b798f1fb514469f3d4d2768883c56e0cc9178f82c155c0c Description: International Components for Unicode Homepage: http://www.icu-project.org Description-md5: cd531f650c894307a7f9e9bc71ee864b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libid3tag0 Priority: optional Section: libs Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Mad Maintainers Architecture: amd64 Source: libid3tag Version: 0.15.1b-10ubuntu1 Depends: libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Filename: pool/main/libi/libid3tag/libid3tag0_0.15.1b-10ubuntu1_amd64.deb Size: 28852 MD5sum: 3087acb2920e3bdd5b5d742f96f0a222 SHA1: 32537878a69964ef2b9aee715d2dfb9a7d3557cb SHA256: 10dbc49a567557d84467ea2cc8c394840c5b048ec656de78740f25f38cf33bfa Description: ID3 tag reading library from the MAD project Description-md5: c87a939309703158d6f41ff4c79a51d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-core, ubuntustudio-video, ubuntustudio-audio Package: libid3tag0-dev Priority: optional Section: libdevel Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: Mad Maintainers Architecture: amd64 Source: libid3tag Version: 0.15.1b-10ubuntu1 Depends: libid3tag0 (= 0.15.1b-10ubuntu1), pkg-config, zlib1g-dev Filename: pool/main/libi/libid3tag/libid3tag0-dev_0.15.1b-10ubuntu1_amd64.deb Size: 30094 MD5sum: 64bddb735c3124c631c25863e777e5bc SHA1: 90269da3c42af3bfd93e55abd982f1d9bb036fd0 SHA256: b79b8c26233cd0f6202a192e97ab611943c77c9c2d5dcf240731084d94bb2d6f Description: ID3 tag reading library from the MAD project Description-md5: 7bb1bb8529120c0a294e6171e5180274 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libident Priority: optional Section: libs Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Paul Slootman Architecture: amd64 Version: 0.22-3build4 Depends: libc6 (>= 2.15) Suggests: libident-dev Filename: pool/main/libi/libident/libident_0.22-3build4_amd64.deb Size: 14662 MD5sum: fff778c187aefca1cdbbf253d046564b SHA1: 1db06281769581c95a8301672c0f44068f9af021 SHA256: efa7f11f30f95b76e511c3a3c9bc96fe8d80233a269e22e50ff248f9974ab208 Description: simple RFC1413 client library - runtime Description-md5: 199960463ab87d482f67cffe21dd348d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libident-dev Priority: optional Section: libdevel Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Paul Slootman Architecture: amd64 Source: libident Version: 0.22-3build4 Depends: libident (= 0.22-3build4), libc6 (>= 2.15) Filename: pool/main/libi/libident/libident-dev_0.22-3build4_amd64.deb Size: 9714 MD5sum: 3d2c5089e3cbe8a61fdda003a3ce0a91 SHA1: 5429ae85ff7cc558ee657102864a634abffc46dd SHA256: 9fe373315e993aff8e110cc01fee494736864ef01338eade5175c53f75a8cca4 Description: simple RFC1413 client library - development Description-md5: bd1f80eb38a9d9516738a18e1156d9fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libidl-common Priority: optional Section: libs Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: all Source: libidl Version: 0.8.14-0.2ubuntu4 Depends: cpp Filename: pool/main/libi/libidl/libidl-common_0.8.14-0.2ubuntu4_all.deb Size: 8196 MD5sum: d2009ec991c91cf27f31f72628567fb9 SHA1: fd996ad60707f04cfca34b988fa6fbcb8b47fa0f SHA256: 72038f8442f78fe6542969519a4eec295fd5da7dc94594e710cedfbabc38b05e Description: library for parsing CORBA IDL files (common files) Multi-Arch: foreign Description-md5: c494de1f12441e29670ec9ed2688b5b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libidl-dev Priority: optional Section: libdevel Installed-Size: 462 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: amd64 Source: libidl Version: 0.8.14-0.2ubuntu4 Depends: libidl0 (= 0.8.14-0.2ubuntu4), libglib2.0-dev Filename: pool/main/libi/libidl/libidl-dev_0.8.14-0.2ubuntu4_amd64.deb Size: 68768 MD5sum: 818a9d17c96a97f0bc4d9e3ffbf15c48 SHA1: f75d7214ef751d3bf24a3c72023d2b30723a1297 SHA256: 5593eeae58189ade77d3701559e7eeec55a55a444d6d4e0f78d028cddf01869a Description: development files for programs that use libIDL Multi-Arch: same Description-md5: 9ea0e29e59fa63fb0a3f93e4a701f74f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libidl0 Priority: optional Section: libs Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: amd64 Source: libidl Version: 0.8.14-0.2ubuntu4 Depends: libidl-common (>= 0.8.14-0.2ubuntu4), libidl-common (<< 0.8.14-0.2ubuntu4.1), libc6 (>= 2.14), libglib2.0-0 (>= 2.16.0) Pre-Depends: multiarch-support Filename: pool/main/libi/libidl/libidl0_0.8.14-0.2ubuntu4_amd64.deb Size: 65860 MD5sum: 7743268bd79ffddb52a5ab2af1c2031c SHA1: 40a5cff905995c8c355e5536cdddd6f9bbc0d643 SHA256: 747253b4bc4c7ae77506768a347a2a6afb4e2e30e3b458b9ab4f7b49e209837b Description: library for parsing CORBA IDL files Multi-Arch: same Description-md5: f1bf44153d3885cee26c18de834b40aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libidn11 Priority: standard Section: libs Installed-Size: 367 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libidn Team Architecture: amd64 Source: libidn Version: 1.28-1ubuntu2 Replaces: libidn11-dev Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libidn9-dev Filename: pool/main/libi/libidn/libidn11_1.28-1ubuntu2_amd64.deb Size: 92990 MD5sum: d63d545d947b391ab846be9aaf77dc08 SHA1: 8ae601f54554228224e0f6198cd59400ab9d2dd9 SHA256: 12af9de1e5781cbd5dc94cf7102a924bae1ed4b2c81f3d6cb071202c37f7933a Description: GNU Libidn library, implementation of IETF IDN specifications Multi-Arch: same Homepage: https://www.gnu.org/software/libidn/ Description-md5: 8f2c3e3028043c62404c901cd7473dc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libidn11-dev Priority: optional Section: libdevel Installed-Size: 932 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libidn Team Architecture: amd64 Source: libidn Version: 1.28-1ubuntu2 Depends: libidn11 (= 1.28-1ubuntu2), pkg-config Conflicts: libidn9-dev Filename: pool/main/libi/libidn/libidn11-dev_1.28-1ubuntu2_amd64.deb Size: 517306 MD5sum: 56f965e76675bb1002faec9943cf354a SHA1: e5f845fc09eebfd171913798387ec64f46b028f1 SHA256: d6dfd87a0928945d3c15f246b72bfb9aaff18d31e48d2a9aaef39fe25a16ed62 Description: Development files for GNU Libidn, an IDN library Homepage: https://www.gnu.org/software/libidn/ Description-md5: 057f92c8d16485c6626798cd9f7f9f97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libido3-0.1-0 Priority: optional Section: libs Installed-Size: 187 Maintainer: Ubuntu Developers Architecture: amd64 Source: ido Version: 13.10.0+14.04.20140407-0ubuntu1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.23.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.8.2-0ubuntu2), libpango-1.0-0 (>= 1.20.0), libpangocairo-1.0-0 (>= 1.14.0) Pre-Depends: multiarch-support Filename: pool/main/i/ido/libido3-0.1-0_13.10.0+14.04.20140407-0ubuntu1_amd64.deb Size: 47442 MD5sum: 3762c93d24b5c1c6fc3b10446e205728 SHA1: e49ea9c6b8ef71c0df5dca3b99079d8e23c3b8a5 SHA256: f1a85d168d02ca0d767c577ca200386c2eca4d05e0b1df1b9f3fc9248a18a542 Description: Shared library providing extra gtk menu items for display in Multi-Arch: same Homepage: https://launchpad.net/ido Description-md5: ffd27a740620c8c7ab3fe86454936ec8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libido3-0.1-dev Priority: optional Section: libdevel Installed-Size: 164 Maintainer: Ubuntu Developers Architecture: amd64 Source: ido Version: 13.10.0+14.04.20140407-0ubuntu1 Depends: gir1.2-ido3-0.1 (= 13.10.0+14.04.20140407-0ubuntu1), libido3-0.1-0 (= 13.10.0+14.04.20140407-0ubuntu1), pkg-config, libglib2.0-dev (>= 2.14.0), libgtk-3-dev (>= 3.8.2-0ubuntu2) Filename: pool/main/i/ido/libido3-0.1-dev_13.10.0+14.04.20140407-0ubuntu1_amd64.deb Size: 11474 MD5sum: 69e114039b3b07451a1c7429ab6776d1 SHA1: 3ff44b57dece097be960f030b86376f843fe634f SHA256: a28113678161de4566ff9444b03d60435841b92a8a220668a07ac37883b2725e Description: Shared library providing extra gtk menu items for display in Homepage: https://launchpad.net/ido Description-md5: 1b1506bfa4cd8d43ca0b6217616441be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libiec61883-0 Priority: optional Section: libs Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Marcio Roberto Teixeira Architecture: amd64 Source: libiec61883 Version: 1.2.0-0.1ubuntu3 Depends: libc6 (>= 2.3.4), libraw1394-11 Pre-Depends: multiarch-support Filename: pool/main/libi/libiec61883/libiec61883-0_1.2.0-0.1ubuntu3_amd64.deb Size: 23436 MD5sum: af7e0199accd33009e637d755792dc43 SHA1: 0f8e303b74f324ccade8e0f90b5e48768814f5db SHA256: 9bb1e0da514bcc970f45d38752a9f105b7f9c2eceb4e0ceffc04857d7e280592 Description: an partial implementation of IEC 61883 Multi-Arch: same Description-md5: d95e7f2402ce60a8f77bf09c3802a2c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libiec61883-dev Priority: optional Section: libdevel Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Marcio Roberto Teixeira Architecture: amd64 Source: libiec61883 Version: 1.2.0-0.1ubuntu3 Depends: libiec61883-0 (= 1.2.0-0.1ubuntu3), libraw1394-dev (>= 2.0.2), libc6 (>= 2.3.4), libraw1394-11 Filename: pool/main/libi/libiec61883/libiec61883-dev_1.2.0-0.1ubuntu3_amd64.deb Size: 30258 MD5sum: 4d433e8b1fc95f2befd2fb28212f14f2 SHA1: ebb67299cc464c93f69be923dc947e1a84ed4405 SHA256: 3b1adc2f63f54f0834fc1eac5c597f160dc8c2e00571d989b7355221ecbc0662 Description: an partial implementation of IEC 61883 Description-md5: 06d87cbb7cb41af435f0b0b284dace57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libieee1284-3 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: libieee1284 Version: 0.2.11-12 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/libi/libieee1284/libieee1284-3_0.2.11-12_amd64.deb Size: 23784 MD5sum: 50779e549b5f86df18f4d27e1dc19041 SHA1: e327e89f8f5d8f46c20950bc61d5fe9b12da1242 SHA256: d4467781cc6965d9092c9bea98a6fedcdb000a4161c0eba15c3e061fd17de21d Description: cross-platform library for parallel port access Multi-Arch: same Homepage: http://cyberelk.net/tim/software/libieee1284/ Description-md5: 202c3e4bf00feaaa4961826a6eff1bda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libieee1284-3-dev Priority: optional Section: libdevel Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: libieee1284 Version: 0.2.11-12 Depends: libieee1284-3 (= 0.2.11-12) Filename: pool/main/libi/libieee1284/libieee1284-3-dev_0.2.11-12_amd64.deb Size: 50164 MD5sum: 5a3cc2661133f436e97b3b37c2390221 SHA1: 24d2f9071684a91fac5b43a5684bd617460112f0 SHA256: 20ba931f5ea2898d15a6382f58847a88e32b0e2e73bd9f7cce44633f46878974 Description: cross-platform library for parallel port access [development files] Homepage: http://cyberelk.net/tim/software/libieee1284/ Description-md5: fa19691105e34a3cc3676a62a44f60c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libijs-0.35 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: ijs Version: 0.35-8build1 Depends: libc6 (>= 2.14) Filename: pool/main/i/ijs/libijs-0.35_0.35-8build1_amd64.deb Size: 16840 MD5sum: 349a5873b6ae80f382cad56815a79995 SHA1: 2482f9a7548e8d20dcf294d71c202a2b689306e1 SHA256: 821a690d8f096d336992d3a88268d9dfb7eb8faf9129ba02e23969ae57a5b190 Description: IJS raster image transport protocol: shared library Homepage: http://www.linuxprinting.org/ijs/ Description-md5: b0a5e986b592d24551818af001ef8260 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libijs-dev Priority: optional Section: libdevel Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: ijs Version: 0.35-8build1 Depends: libc6-dev, libijs-0.35 (= 0.35-8build1) Filename: pool/main/i/ijs/libijs-dev_0.35-8build1_amd64.deb Size: 112728 MD5sum: 3853bf49cdb2edde16836b60053160f2 SHA1: f886351109ffd398bc7e57325a49b0e1b23b7cfb SHA256: 55ffb1900a84015ffd193ef0ac737d6caa5cc8e42842cbd622905b9b6428395c Description: IJS raster image transport protocol: development files Homepage: http://www.linuxprinting.org/ijs/ Description-md5: 4c7cba0f16e4318b15b2b6b4fdf3780f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libilmbase-dev Priority: optional Section: libdevel Installed-Size: 1122 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: amd64 Source: ilmbase Version: 1.0.1-6ubuntu1 Replaces: libopenexr-dev (<< 1.6) Depends: libilmbase6 (= 1.0.1-6ubuntu1) Breaks: libopenexr-dev (<< 1.6) Filename: pool/main/i/ilmbase/libilmbase-dev_1.0.1-6ubuntu1_amd64.deb Size: 112102 MD5sum: 0828a56f914ac7462c7ffb0b0c94525f SHA1: 074a9a70f5dfc2f75ea4ff85d92bf6a3b27edd2c SHA256: dcebd8cf18ba634efb636a9808fe27ec383b113678b53d32100547270075c25f Description: development files for IlmBase Homepage: http://www.openexr.com Description-md5: 83bd077e774a67291ba33925255f0c55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libilmbase6 Priority: optional Section: libs Installed-Size: 477 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: amd64 Source: ilmbase Version: 1.0.1-6ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/i/ilmbase/libilmbase6_1.0.1-6ubuntu1_amd64.deb Size: 53562 MD5sum: 9bba3d3ebd0c14e0de3fa77fd0cf52dc SHA1: 3e74d587bc1aad29487be9a3bb59faaab8709f3f SHA256: b32d9c437e7ddbac25be3bce4297a4c2466352efc251e09bfecc866b6393025a Description: several utility libraries from ILM used by OpenEXR Multi-Arch: same Homepage: http://www.openexr.com Description-md5: a7cd0a047c4855d797cba2d4ba5c5284 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libimlib2 Priority: optional Section: libs Installed-Size: 607 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Source: imlib2 Version: 1.4.6-2 Depends: libbz2-1.0, libc6 (>= 2.14), libfreetype6 (>= 2.2.1), libgif4 (>= 4.1.4), libid3tag0 (>= 0.15.1b), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3), libx11-6, libxext6, zlib1g (>= 1:1.1.4) Filename: pool/main/i/imlib2/libimlib2_1.4.6-2_amd64.deb Size: 170728 MD5sum: 91990e36b7fe4711953b80c66832be84 SHA1: 877226bde28a30668dfc442ad37899a9cdf41912 SHA256: 2d2783a96ab7ac5510cd457c297201a28bf2647406e5518b97eba9e1a95ef61a Description: image loading, rendering, saving library Description-md5: 01cf98f342e6a02d99a3dea6cb541439 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-core, ubuntustudio-video Package: libimlib2-dev Priority: optional Section: libdevel Installed-Size: 731 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Source: imlib2 Version: 1.4.6-2 Replaces: libimlib2 Depends: libimlib2 (= 1.4.6-2), libbz2-dev, libfreetype6-dev, libgif-dev, libid3tag0-dev, libjpeg-dev, libltdl3-dev, libpng-dev, libtiff-dev, libx11-dev, libxext-dev, zlib1g-dev Filename: pool/main/i/imlib2/libimlib2-dev_1.4.6-2_amd64.deb Size: 162792 MD5sum: 9f37a6ab2c32a319b15820957e2a0681 SHA1: 68d2f34a25f9c3bf5e2725ed4064eacd790c1c57 SHA256: 8c7c0bf844742711804c730fc1711d1c075ac5eca63e5bd24b2e694cca0fae19 Description: image loading, rendering, saving library (development files) Description-md5: c8901effd8d1158399909e5f1ffb6f1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libimobiledevice-dev Priority: optional Section: libdevel Installed-Size: 351 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libimobiledevice Version: 1.1.5+git20140313.bafe6a9e-0ubuntu1 Depends: libimobiledevice4 (= 1.1.5+git20140313.bafe6a9e-0ubuntu1), libglib2.0-dev, libplist-dev, libusbmuxd-dev, libgnutls-dev, libtasn1-3-dev Filename: pool/main/libi/libimobiledevice/libimobiledevice-dev_1.1.5+git20140313.bafe6a9e-0ubuntu1_amd64.deb Size: 54618 MD5sum: 3fbc4b88e9b8ed30ad04ea12eceb1b2c SHA1: c9c1016fd9641fa06bf92e1c900c70fed82b28a0 SHA256: 70b98638d39c07d43402ec43643971058440ef81c589d0df791d86c1cacf4c20 Description: Library for communicating with iPhone and iPod Touch devices Multi-Arch: foreign Homepage: http://libimobiledevice.org/ Description-md5: fd9a20c2b440f01ec4b9eb965aa42e9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libimobiledevice4 Priority: optional Section: libs Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libimobiledevice Version: 1.1.5+git20140313.bafe6a9e-0ubuntu1 Replaces: libimobiledevice0, libimobiledevice1, libiphone0 Depends: libc6 (>= 2.15), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libplist1 (>= 0.16), libtasn1-6 (>= 3.4-0), libusbmuxd2 (>= 1.0.8), usbmuxd Pre-Depends: multiarch-support Conflicts: libiphone0 Filename: pool/main/libi/libimobiledevice/libimobiledevice4_1.1.5+git20140313.bafe6a9e-0ubuntu1_amd64.deb Size: 52700 MD5sum: ad69cd970c29bb24846fdbd60a761265 SHA1: aaf9c63b49608d9023f1e48a92e351f53e87f59e SHA256: 37107f6ba688ff96a87c0d87bbf81ea9da1018fb48e0e1ab97daaa5fc524ef25 Description: Library for communicating with the iPhone and iPod Touch Multi-Arch: same Homepage: http://libimobiledevice.org/ Description-md5: b63dfdd75baa933b181ba059d3cb96a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libimobiledevice4-dbg Priority: extra Section: debug Installed-Size: 1075 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libimobiledevice Version: 1.1.5+git20140313.bafe6a9e-0ubuntu1 Replaces: libimobiledevice0-dbg, libimobiledevice1-dbg, libimobiledevice2-dbg, libimobiledevice3-dbg Depends: libimobiledevice4 (= 1.1.5+git20140313.bafe6a9e-0ubuntu1) Conflicts: libimobiledevice0-dbg, libimobiledevice1-dbg, libimobiledevice2-dbg, libimobiledevice3-dbg Filename: pool/main/libi/libimobiledevice/libimobiledevice4-dbg_1.1.5+git20140313.bafe6a9e-0ubuntu1_amd64.deb Size: 754108 MD5sum: 8b2b632f281a4bcf232e371c09f71493 SHA1: e9f1aa02b86e8f684b9d3c46be973cd764019ed8 SHA256: 360dc16d2643b5e0f557b35d43fc9ee29f9e252839700c524c901b661d803969 Description: Library for communicating with iPhone and iPod Touch devices Multi-Arch: same Homepage: http://libimobiledevice.org/ Description-md5: d22def284c479ea2fe12faed1fe6c756 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libindicator-dev Priority: optional Section: libdevel Installed-Size: 179 Maintainer: Ubuntu Core Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libindicator Version: 12.10.2+14.04.20140402-0ubuntu1 Depends: libgtk2.0-dev (>= 2.12.0), libindicator7 (= 12.10.2+14.04.20140402-0ubuntu1) Filename: pool/main/libi/libindicator/libindicator-dev_12.10.2+14.04.20140402-0ubuntu1_amd64.deb Size: 24912 MD5sum: 68c790c1ba6e044c7602f236cb3d0353 SHA1: b7cf209ab845a4bbb3b58688f7567a8d307fb69a SHA256: 7f249fed0f5b45bebb4176464bb0c404020f7532a7ee003a0c1c4f0a8e7c2908 Description: panel indicator applet - library development files Homepage: https://launchpad.net/libindicator Description-md5: 6547f70e5e653b96dedc74f65f22e75c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libindicator3-7 Priority: optional Section: libs Installed-Size: 114 Maintainer: Ubuntu Core Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libindicator Version: 12.10.2+14.04.20140402-0ubuntu1 Depends: libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.18) Pre-Depends: multiarch-support Filename: pool/main/libi/libindicator/libindicator3-7_12.10.2+14.04.20140402-0ubuntu1_amd64.deb Size: 26218 MD5sum: 83e8af53a0d9ae4072a0c352c45665c4 SHA1: c54e5674b7515de2232a523cdd2ffec4bee775a5 SHA256: ebf2cd1b55f77fdeefb910e894a29dfa681174d775dc2b345a1fa11002526e5a Description: panel indicator applet - shared library Homepage: https://launchpad.net/libindicator Description-md5: 646718eb8829a968151e4b7f5f1d7cf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libindicator3-dev Priority: optional Section: libdevel Installed-Size: 206 Maintainer: Ubuntu Core Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libindicator Version: 12.10.2+14.04.20140402-0ubuntu1 Depends: libgtk-3-dev (>= 2.91.3), libindicator3-7 (= 12.10.2+14.04.20140402-0ubuntu1), libindicator-dev (= 12.10.2+14.04.20140402-0ubuntu1) Filename: pool/main/libi/libindicator/libindicator3-dev_12.10.2+14.04.20140402-0ubuntu1_amd64.deb Size: 29920 MD5sum: ed614b872142039823ceae2a3f493e0d SHA1: b6d92eee8a0d9ff39a4dc44bffd204e031e1a0ad SHA256: 8c03981243752f5d2f48d252214bcc77c12b83b5df54e7579579a6e4732084ee Description: panel indicator applet - library development files Homepage: https://launchpad.net/libindicator Description-md5: 6547f70e5e653b96dedc74f65f22e75c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libindicator7 Priority: optional Section: libs Installed-Size: 101 Maintainer: Ubuntu Core Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: libindicator Version: 12.10.2+14.04.20140402-0ubuntu1 Depends: libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.18) Filename: pool/main/libi/libindicator/libindicator7_12.10.2+14.04.20140402-0ubuntu1_amd64.deb Size: 21914 MD5sum: e7dfe541c05e6f05a8fa20d3ab2a0f2f SHA1: f0dde947e1a24b16c3a7b5b7af72bae021f69603 SHA256: 3b8ca09d67c91f076d2880694e0e7a896e01d6d96c1f8b29526ba497dc905b31 Description: panel indicator applet - shared library Homepage: https://launchpad.net/libindicator Description-md5: 646718eb8829a968151e4b7f5f1d7cf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, lubuntu-desktop, ubuntustudio-video Package: libindirect-perl Priority: optional Section: perl Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.31-1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.14) Filename: pool/main/libi/libindirect-perl/libindirect-perl_0.31-1_amd64.deb Size: 23250 MD5sum: f2fe478fd8e97a38efac17bd5aab45ab SHA1: f41d1dfb5cfbe120e2abca8fdab7e469dbf96b08 SHA256: b6080cfb672d09e59f8717ce0e82d996bd497f8302d41b599d53d534ed958b9f Description: module warning about using the indirect object syntax Homepage: https://metacpan.org/release/indirect/ Description-md5: 3ffb604001d21c0133ff0194f9fa3c2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libini-config-dev Priority: extra Section: libdevel Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Depends: libini-config3 (= 0.3.0.1-4), libcollection-dev (= 0.3.0.1-4), libbasicobjects-dev (= 0.3.0.1-4), libref-array-dev (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libini-config-dev_0.3.0.1-4_amd64.deb Size: 41664 MD5sum: 25908ffe97179569ffd13b4b899ece57 SHA1: 7008356ef5730a4adfbc9cbec6a28b9c74cc26bf SHA256: 063c8005c0a9af61aff3b0af049469e482398dc6a9524d44e6344116262d8f39 Description: Development files for libini_config Homepage: https://fedorahosted.org/sssd/ Description-md5: 5417a1b69e9f5ae8705862de07e9f19c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libini-config3 Priority: extra Section: libs Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Replaces: libini-config Provides: libini-config Depends: libbasicobjects0 (>= 0.3.0.1), libc6 (>= 2.14), libcollection2 (>= 0.3.0.1), libpath-utils1 (>= 0.3.0.1), libref-array1 (>= 0.3.0.1) Pre-Depends: multiarch-support Conflicts: libini-config Filename: pool/main/d/ding-libs/libini-config3_0.3.0.1-4_amd64.deb Size: 27950 MD5sum: 8d28c3a42d6277df077dea3c9863a8a7 SHA1: ad26ed486f2e334365cf3cf36d000214e2c010cb SHA256: 955392640fabb58a88045ce4e8cfd7b097b07a3125220b7e1ca04c387d20bb98 Description: INI file parser for C Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 18e540ce8d252bd8878a6eac54a9f38d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libinline-files-perl Priority: optional Section: perl Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.68-1 Depends: perl Filename: pool/main/libi/libinline-files-perl/libinline-files-perl_0.68-1_all.deb Size: 23014 MD5sum: 54157ed63df4c4f745d7e67acef4486c SHA1: 588a815b6dcc8177a987f31b7d109e83a870bd5c SHA256: 066112e07bf0b6354a7dfaac4bb49f0d2b24231b7f0a4e6958783c5d3b556e47 Description: module to handle multiple virtual files at the end of your code Homepage: http://search.cpan.org/dist/Inline-Files/ Description-md5: 84a84ecc0100dbe4de69d27c1e49b74e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libinline-perl Priority: optional Section: perl Installed-Size: 432 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.53-1 Depends: perl, libparse-recdescent-perl Recommends: gcc | c-compiler, libinline-files-perl Filename: pool/main/libi/libinline-perl/libinline-perl_0.53-1_all.deb Size: 162130 MD5sum: 680fc48fe3cc046ca99fabec2ebb3af4 SHA1: f6ffa06094604fa2711cd8ca1d86b511a96fc716 SHA256: ad988895484f307d819f0028eeffe3287c4a04beb75707a899da2c3321a2554f Description: module for producing simple Foreign Function Interfaces Homepage: https://metacpan.org/release/Inline/ Description-md5: c7fb7501a65859f43766ff888076e086 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libintl-perl Priority: optional Section: perl Installed-Size: 4487 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: all Version: 1.23-1build1 Depends: perl Suggests: libintl-xs-perl Filename: pool/main/libi/libintl-perl/libintl-perl_1.23-1build1_all.deb Size: 1203758 MD5sum: ec45deba7513d6ad3f5bcce3d1a64c97 SHA1: d1142283de4fedd3ff51b24a22fdd99c44b82dab SHA256: 5031702250dc4df86898b5060abcfbda6e0e3bb4d428504fdee51dc9e82c57de Description: Uniforum message translations system compatible i18n library Homepage: http://search.cpan.org/dist/libintl-perl/ Description-md5: 094d9efec11965e17ecdcc0ba27ea83e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop Package: libio-dirent-perl Priority: optional Section: perl Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Drolez Architecture: amd64 Version: 0.05-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libi/libio-dirent-perl/libio-dirent-perl_0.05-1build1_amd64.deb Size: 11162 MD5sum: 2f550a17bc2733aca4cd3ec38c35a4fd SHA1: 923dfd03a496925053bb13178251ee76b89b3daa SHA256: 1acb8193615c85300530cdf94a5d91273fa9750c608813ac18bdab727bba1223 Description: Perl module for accessing dirent structs returned by readdir Enhances: backuppc Description-md5: 4426ede634bec83a78cc516e17baadca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libio-html-perl Priority: optional Section: perl Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.00-1 Depends: perl Filename: pool/main/libi/libio-html-perl/libio-html-perl_1.00-1_all.deb Size: 15696 MD5sum: 6bf2efdb0837c937e96fa84e6737904c SHA1: ddd152ed10c36849304c72761c1c969433c6c3b6 SHA256: cc2cab1a7266eaed0d1d14ab54b95a2a2d58139ebd93b70fc0c11b4fbb7e15f4 Description: open an HTML file with automatic charset detection Homepage: http://search.cpan.org/dist/IO-HTML/ Description-md5: 471f43a80fc73e4e1ce6eb0885b076de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libio-multiplex-perl Priority: optional Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.13-1 Depends: perl Filename: pool/main/libi/libio-multiplex-perl/libio-multiplex-perl_1.13-1_all.deb Size: 22176 MD5sum: 49897af14966bab89ee183226feb3366 SHA1: a86183d1a6c426f696ffa451a0649a0b368f47ca SHA256: 2757d67b69e0e36aa9bba2670084070d73f23ce3aa19260c3002a76f3482af68 Description: object-oriented interface to select() for Perl Homepage: http://search.cpan.org/dist/IO-Multiplex/ Description-md5: 100ce2443c93e34802825f549f8920db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libio-pty-perl Priority: optional Section: perl Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Jörgen Hägg Architecture: amd64 Version: 1:1.08-1build4 Provides: libio-tty-perl Depends: libc6 (>= 2.4), perl (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libi/libio-pty-perl/libio-pty-perl_1.08-1build4_amd64.deb Size: 36862 MD5sum: c8b8611dd40cd9b12a9a172953de08e4 SHA1: d9a6d19190c1c02d99bba1f711b09e2a5c87f3f0 SHA256: af72ae304b0353b150bfdb6695ad8db9d12032a26925a67157a916d0e89d25b5 Description: Perl module for pseudo tty IO Description-md5: 67d23344fd6edf192b38c11f21096f12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libio-socket-inet6-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.71-1 Depends: perl, libsocket6-perl Filename: pool/main/libi/libio-socket-inet6-perl/libio-socket-inet6-perl_2.71-1_all.deb Size: 14564 MD5sum: 01296fc7286aaf5eabd694e605a24246 SHA1: 479f20b2d767dbb0e487f1dc870bce0a0524c770 SHA256: 3c9a6cca788037393b63adfa7cacb79a6ff88a4dc11c4710a66402c5d53448da Description: object interface for AF_INET6 domain sockets Homepage: https://metacpan.org/release/IO-Socket-INET6 Description-md5: 7a58ed8889dee3f56df8e181af173e25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libio-socket-ssl-perl Priority: optional Section: perl Installed-Size: 227 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.965-1ubuntu1 Depends: libnet-ssleay-perl (>= 1.46), netbase, perl Recommends: libio-socket-inet6-perl | libio-socket-ip-perl (>= 0.20), libnet-libidn-perl | liburi-perl, perl (>= 5.15.6) | libsocket-perl (>= 1.950) | libsocket6-perl Filename: pool/main/libi/libio-socket-ssl-perl/libio-socket-ssl-perl_1.965-1ubuntu1_all.deb Size: 73704 MD5sum: bb4b971bf399663961550f78200b1408 SHA1: a222edfb5361ce9269d2326aa1c38ee7a13bd447 SHA256: bd45ee3c816c2308bfac13cf142d7f44469e48a6bfa5eaeb8f88106e79304b8c Description: Perl module implementing object oriented interface to SSL sockets Homepage: https://metacpan.org/release/IO-Socket-SSL/ Description-md5: 94b103d5ed493e8750e3468ca2e11309 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libio-string-perl Priority: optional Section: perl Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.08-3 Depends: perl Filename: pool/main/libi/libio-string-perl/libio-string-perl_1.08-3_all.deb Size: 11124 MD5sum: 0ac0244ea24f2c5681005aa95e0c8318 SHA1: d9f851ceca82313a73815a0e820db7541ec9a9fc SHA256: 397c6dba8b3a51be53fd767892c93a9ec3335ce2844c235aae1519617c1d8cc5 Description: Emulate IO::File interface for in-core strings Homepage: https://metacpan.org/release/IO-String/ Description-md5: d0f30c36190caa285cda4e17606d2aa3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libio-stringy-perl Priority: optional Section: perl Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Bart Martens Architecture: all Source: io-stringy Version: 2.110-5 Depends: perl Filename: pool/main/i/io-stringy/libio-stringy-perl_2.110-5_all.deb Size: 93522 MD5sum: ef856eca5365345aabdaa3c203983f96 SHA1: b98da830a5817bc3a993e53378c7d3de219913d5 SHA256: 3cb54d9f8bc037225f6d93eb2daf11439cfe199a30427efa840f6a4bf0806514 Description: Perl modules for IO from scalars and arrays Homepage: http://search.cpan.org/dist/IO-stringy/ Description-md5: 2d3649a7290a98451a0d6f6971b53e03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libiodbc2 Priority: optional Section: libs Installed-Size: 488 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Version: 3.52.7-3.1 Depends: libc6 (>= 2.14) Suggests: iodbc (= 3.52.7-3.1) Filename: pool/main/libi/libiodbc2/libiodbc2_3.52.7-3.1_amd64.deb Size: 135372 MD5sum: 674a7f1061b03f70ee85e28909dc8714 SHA1: c7e6d6908cd1da5b0ab2aa799730cf055c8a1b7f SHA256: d7cf83551eeafaa4c83491ea9a36be459922514443fea144c17dac767e3551ce Description: iODBC Driver Manager Homepage: http://www.iodbc.org/ Description-md5: 28db562dffbe690878759315a006f3df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libiodbc2-dev Priority: optional Section: libdevel Installed-Size: 1949 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: libiodbc2 Version: 3.52.7-3.1 Depends: libiodbc2 (= 3.52.7-3.1) Conflicts: iodbc (<= 3.52.6-1), libiodbc2 (<= 3.52.6-1) Filename: pool/main/libi/libiodbc2/libiodbc2-dev_3.52.7-3.1_amd64.deb Size: 251482 MD5sum: 399bb778c572a98c843905a4aca6df27 SHA1: 334a6c55a408d1bf6bce90cf585353e745e8089a SHA256: a732774f9640f8338544691cc4cc95a3f58f177fabe9034c2c4662daf8d8876f Description: iODBC Driver Manager (development files) Homepage: http://www.iodbc.org/ Description-md5: d130ba790976d31df335175ab1a2c1f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipa-hbac-dev Priority: extra Section: libdevel Installed-Size: 67 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libipa-hbac0 (= 1.11.5-1ubuntu3) Filename: pool/main/s/sssd/libipa-hbac-dev_1.11.5-1ubuntu3_amd64.deb Size: 6268 MD5sum: 4f452e735921a57088e918965be84ebf SHA1: 0b3d418544923fad9e4ec8dfdbb8d817961f8972 SHA256: f8bb01952fc35161784d24f21821083733fc774842ff29bf9d101c0ac9d2ab48 Description: FreeIPA HBAC Evaluator library Homepage: https://fedorahosted.org/sssd/ Description-md5: 6c1dbd1961a1dd6410e5f5b68ec9e8a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipa-hbac0 Priority: extra Section: libs Installed-Size: 61 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.12.0) Filename: pool/main/s/sssd/libipa-hbac0_1.11.5-1ubuntu3_amd64.deb Size: 8652 MD5sum: b6b80492286350e35c2114ffd0b877e5 SHA1: e650cce71e32a24fc8ed496d6955b67d390a96b0 SHA256: a04f022e639b32799f401a5bd101af7755519ac7a4af2f850627f38fe21f16bc Description: FreeIPA HBAC Evaluator library Homepage: https://fedorahosted.org/sssd/ Description-md5: 03e6128075af8f51f143ba66443a79ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipc-run-perl Priority: optional Section: perl Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.92-1 Depends: perl, libio-pty-perl Filename: pool/main/libi/libipc-run-perl/libipc-run-perl_0.92-1_all.deb Size: 100580 MD5sum: 1f7b717b9ed398ff4965ddce80ea9d8f SHA1: 13789ac2c3a1bf2fed9df6b642e29c03e4549574 SHA256: 14329a9927390d822d8be044e9097bba3a25cb03e3b14821682f348d16d9eb50 Description: Perl module for running processes Homepage: http://search.cpan.org/dist/IPC-Run/ Description-md5: 7be22cc2721eed4c7b8e422ca5d87022 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libipc-run3-perl Priority: extra Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.046-1 Depends: perl Filename: pool/main/libi/libipc-run3-perl/libipc-run3-perl_0.046-1_all.deb Size: 36096 MD5sum: 6a180b4757d5a47a9b65de8183f63d1f SHA1: f745246f79987c531e3c80b156481adb8c5be06d SHA256: 48c7cfc0a0143c4c7fac086951c782f8d0b17b1e3b4de843dcf9f9793f34613f Description: run a subprocess with input/ouput redirection Homepage: https://metacpan.org/release/IPC-Run3/ Description-md5: 0722ca7dea3ff02ff67c47607f5d8569 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipc-sharedcache-perl Priority: optional Section: perl Installed-Size: 104 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.3-8 Depends: libipc-sharelite-perl, perl (>= 5.6.0-16) Filename: pool/main/libi/libipc-sharedcache-perl/libipc-sharedcache-perl_1.3-8_all.deb Size: 25288 MD5sum: 0f92d8d5bae252355b8ca9465ad1246c SHA1: daf1d15534b7af892b01d4ac45d180a35fdd019e SHA256: a13b8434a71a9cefb66870c9895c2f9d9ca93db846b625e2eae615f9c364188e Description: module to manage a cache in SysV IPC shared memory Homepage: http://search.cpan.org/dist/IPC-SharedCache/ Description-md5: e07dcfb09218eb11f0c3bb82576df5f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipc-sharelite-perl Priority: optional Section: perl Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.17-3build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.14) Filename: pool/main/libi/libipc-sharelite-perl/libipc-sharelite-perl_0.17-3build1_amd64.deb Size: 25530 MD5sum: c581aa16250029517a22eb9663744fc7 SHA1: 48337f9613b56286b86834fbce6b1fc04c33b650 SHA256: 347aa215c58cd8b2df23cdaadd0aba27f2579d4caa3ef11916102f0c94091ded Description: Perl module that provides a simple interface to shared memory Homepage: http://search.cpan.org/dist/IPC-ShareLite/ Description-md5: e0f47672ecd9c103037aadbb8a17d74f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipc-signal-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Roderick Schertler Architecture: all Version: 1.00-6 Depends: perl (>= 5.6.0-16) Filename: pool/main/libi/libipc-signal-perl/libipc-signal-perl_1.00-6_all.deb Size: 7016 MD5sum: f4055816f432f532b76d640d1ac8a0f8 SHA1: 3fc1dc6a6e5cfd069c50d4675f16a89af5be2012 SHA256: 06d5460c6cd6899c3d0b9b494fe2c811eb563a0ee9a197a18617e20800025cf5 Description: utility functions dealing with signals for Perl Description-md5: 4c67b23ecdfba7046bc13dbfaefbdc78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libipc-system-simple-perl Priority: optional Section: perl Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.25-2 Depends: perl Filename: pool/main/libi/libipc-system-simple-perl/libipc-system-simple-perl_1.25-2_all.deb Size: 24528 MD5sum: 702b8163699a7ce3f2b04ec9e89924c1 SHA1: c2d47b7cfff5f64441a0390dce5896b0563711ac SHA256: 82a378452cc186d33ffa211b2aa8ca826d9320975ca311a1aa5bf534f9050382 Description: Perl module to run commands simply, with detailed diagnostics Homepage: https://metacpan.org/release/IPC-System-Simple/ Description-md5: 60342b37a1e4a39a76ddcd5bdc51cc21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libipmiconsole-dev Priority: extra Section: libdevel Installed-Size: 675 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: amd64 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libipmiconsole2 (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libipmiconsole-dev_1.1.5-3ubuntu3_amd64.deb Size: 100024 MD5sum: 065f4b4e1b70221715af12e0f663fa75 SHA1: 559b3b95f5fdbaf12cff169c3f7720bbfe3ab6a9 SHA256: 248a329224478974dd3f02a17fd83452320e4c417d1338d5249cb3f3c3f5282a Description: GNU IPMI - ipmiconsole development package Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: 165d37f1ff27840c811186d69e5990cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipmiconsole2 Priority: extra Section: libs Installed-Size: 420 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: amd64 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libc6 (>= 2.15), libfreeipmi12 (>= 1.1.5) Filename: pool/main/f/freeipmi/libipmiconsole2_1.1.5-3ubuntu3_amd64.deb Size: 82270 MD5sum: df0ce464cbacf25260c0b4051db586aa SHA1: 9b80f157269229ba330fd495f9396564d454d1d7 SHA256: f71535abc98e8e8f28eaabc493cbf6b5c03f773cf11b336bba306b872b78bc5c Description: GNU IPMI - Serial-over-Lan library Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: d797fcb20a528d5be709254b16cbad80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libipmidetect-dev Priority: extra Section: libdevel Installed-Size: 280 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: amd64 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libipmidetect0 (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libipmidetect-dev_1.1.5-3ubuntu3_amd64.deb Size: 33186 MD5sum: 3cb36ee7c4d9e1b3262b66ded896eb1f SHA1: d16e2335eeb12aecfbdce4aa8aa505883f0b4321 SHA256: d62e3d69e3fa1a7320a9282a65add2f476223861b80a4fa9d138b77da49b5045 Description: GNU IPMI - ipmidetect development package Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: 656d83b3185878f4432cb27f725c60aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipmidetect0 Priority: extra Section: libs Installed-Size: 222 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: amd64 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libc6 (>= 2.15), freeipmi-common (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libipmidetect0_1.1.5-3ubuntu3_amd64.deb Size: 27762 MD5sum: 0221bb57334279c66d44d0b5110c9f68 SHA1: 29742c2526fa06399257f134f8d19f8bb8776378 SHA256: 38c254d1b516ecb23a4853240178c1ffdcdcdc3a3320cd51bcc0ced94d65d472 Description: GNU IPMI - IPMI node detection library Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: ecbecbb0ee12c205e71a71410cd298b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libipmimonitoring-dev Priority: extra Section: libdevel Installed-Size: 493 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: amd64 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libipmimonitoring5 (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libipmimonitoring-dev_1.1.5-3ubuntu3_amd64.deb Size: 72164 MD5sum: 3f7e00bbb1c0294a2780b82e113cb580 SHA1: 2ac6e126ce0d8be4429797263a52d2d12efaf52e SHA256: 033241ed2124b44253d935902bbcb751f4000bb001de8f6e095cc35ed856c092 Description: GNU IPMI - ipmimonitoring development package Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: ef86e1418697f9920e03b6c081ea574c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipmimonitoring5 Priority: extra Section: libs Installed-Size: 309 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: amd64 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libc6 (>= 2.14), libfreeipmi12 (>= 1.1.5) Filename: pool/main/f/freeipmi/libipmimonitoring5_1.1.5-3ubuntu3_amd64.deb Size: 42478 MD5sum: 510a1adae49bd9c8159e3b122ab9644f SHA1: c0cba18561cd6d71753b0e047716f3a023c51856 SHA256: 2cbd4580506b40087118659712d93dca9a1df1da3c36f3c9663f3f500f522b95 Description: GNU IPMI - Sensor monitoring library Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: 0a4db39f4e386980a01c401d301b0411 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libirman-dev Priority: optional Section: libdevel Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: lirc Maintainer Team Architecture: amd64 Source: libirman Version: 0.4.4-2build3 Depends: libc6-dev Filename: pool/main/libi/libirman/libirman-dev_0.4.4-2build3_amd64.deb Size: 35868 MD5sum: f25d11bfabde5f7e10cadd59efd8e106 SHA1: 1900a090c164c881216e1e6304186d7f766c10f2 SHA256: 0f7e5328ac98af817784b752ec7cc9b3592aff131f220dafab552444348199ee Description: library for accessing the Irman Infra Red hardware Description-md5: d9890e509cbe93a3714d8bc7e9193e80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisc95 Priority: standard Section: libs Installed-Size: 440 Maintainer: LaMont Jones Architecture: amd64 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.15), libxml2 (>= 2.7.4) Conflicts: libbind0, libbind9-41 Filename: pool/main/b/bind9/libisc95_9.9.5.dfsg-3_amd64.deb Size: 147132 MD5sum: fdfa2d4c41294cf57855d622b1a7c524 SHA1: b5b644bcf969dec1e8a6bb126bb22d4a4b94a03d SHA256: 177b51be5400d862a4b7ecfa98442dfc4a1953c72eb956ca5ca6f170e2d83b1b Description: ISC Shared Library used by BIND Description-md5: 538f08c974b457d9907e201f70a51533 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libisccc90 Priority: standard Section: libs Installed-Size: 87 Maintainer: LaMont Jones Architecture: amd64 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.4), libisc95 Conflicts: libbind0, libbind9-41 Filename: pool/main/b/bind9/libisccc90_9.9.5.dfsg-3_amd64.deb Size: 15592 MD5sum: 0b2d95f37f3b893fd2b66350af65ebb7 SHA1: 7ccd6bd39986be2d4629aa41b5ab000984aaf7fe SHA256: 9a4bea7009d70d6451f46deddabaac29a68e0ee4711c44a4d965ed51de5a7277 Description: Command Channel Library used by BIND Description-md5: c7785673bc5b2dfed3c5bcee1452c16c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libisccfg90 Priority: standard Section: libs Installed-Size: 190 Maintainer: LaMont Jones Architecture: amd64 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.4), libdns100, libisc95, libisccc90 Conflicts: libbind0, libbind9-41 Filename: pool/main/b/bind9/libisccfg90_9.9.5.dfsg-3_amd64.deb Size: 36110 MD5sum: 53187b46c5d734b459497e0fee587a3e SHA1: c0ef2a3b394f3345a95efdfadbfc4cc2013b77e9 SHA256: 970d112d3b629cdb9f0313e3c673a4db19575145c4015cbeec28b1438631d552 Description: Config File Handling Library used by BIND Description-md5: d214b6bf2b32d3830998548c9fa53da4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libisl-dbg Priority: extra Section: debug Installed-Size: 3791 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: isl Version: 0.12.2-1 Replaces: libisl-dev (<< 0.08) Depends: libisl10 (= 0.12.2-1) Filename: pool/main/i/isl/libisl-dbg_0.12.2-1_amd64.deb Size: 917208 MD5sum: 5a9b44706838161a21b2243527ff4351 SHA1: 08aa0b24d1e11ed3514a137632033acc9bf5cba0 SHA256: b73f6b3a60395d8f36ec9add85760294c227a3b7fa8a4358b0ef05e5af014b26 Description: manipulating sets and relations of integer points bounded by linear constraints Multi-Arch: same Homepage: http://freecode.com/projects/isl Description-md5: eb308232fbc7715c4bcb245dd94db7e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisl-dev Priority: optional Section: libdevel Installed-Size: 2455 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: isl Version: 0.12.2-1 Depends: libisl10 (= 0.12.2-1) Filename: pool/main/i/isl/libisl-dev_0.12.2-1_amd64.deb Size: 451430 MD5sum: 143975aa30e443e35c100415b85d7a5b SHA1: 6a69f9de3c773898e0885100e3cb6c62ba0cfc6d SHA256: 7f2d6d2345293607958da6a3d19fcec41477633afd5d9a943553c90725e8c3df Description: manipulating sets and relations of integer points bounded by linear constraints Multi-Arch: same Homepage: http://freecode.com/projects/isl Description-md5: 9330fbca4463124a77a29e9568838474 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisl10 Priority: optional Section: libs Installed-Size: 1307 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: isl Version: 0.12.2-1 Depends: libc6 (>= 2.14), libgmp10 Pre-Depends: multiarch-support Breaks: libcloog-isl4 (<< 0.18.1) Filename: pool/main/i/isl/libisl10_0.12.2-1_amd64.deb Size: 419218 MD5sum: b9756a5cce1ecd2d56652779d9e3b757 SHA1: 91380f7fd746d1e94dc41bc4add7d4b06e992791 SHA256: 7529ac268ecac0f3132f7b13c9846c14984d41d3c1cfbc2060787de9ba208989 Description: manipulating sets and relations of integer points bounded by linear constraints Multi-Arch: same Homepage: http://freecode.com/projects/isl Description-md5: b718cf54a9174f62d55d1d78f6212d22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libisoburn-dbg Priority: extra Section: libdevel Installed-Size: 2597 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: amd64 Source: libisoburn Version: 1.3.2-1ubuntu1 Depends: libisoburn1 (= 1.3.2-1ubuntu1), libisofs-dbg, libburn-dbg Filename: pool/main/libi/libisoburn/libisoburn-dbg_1.3.2-1ubuntu1_amd64.deb Size: 584526 MD5sum: 79c3414e418e348214b6a55a8ae906dc SHA1: db4b7ed3bcb21aa4f6d45d5a51feefd6e013b506 SHA256: 7d67286f5d7e9056a7bc95e7db4e3e6102867d5ee5db86606127773210ac1919 Description: debugging symbols for libisoburn and xorriso Homepage: http://libburnia-project.org Description-md5: 18c4f58ad14cf4b1bf235231ba53d486 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisoburn-dev Priority: optional Section: libdevel Installed-Size: 1572 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: amd64 Source: libisoburn Version: 1.3.2-1ubuntu1 Depends: libisoburn1 (= 1.3.2-1ubuntu1), libisofs-dev, libburn-dev Suggests: libisoburn-doc (= 1.3.2-1ubuntu1) Filename: pool/main/libi/libisoburn/libisoburn-dev_1.3.2-1ubuntu1_amd64.deb Size: 369074 MD5sum: 6dbd8096a997d3f5359084076b22db5a SHA1: 557a2f587469155ac31868904e12a97a959c095d SHA256: 1b71c46e6e0c1dfd322079d104088bd838b1f4a1fa180391534c5841f8a446ae Description: development package for libisoburn Homepage: http://libburnia-project.org Description-md5: 5a17e6f2ad8113f8cb9e0a64b070b238 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisoburn-doc Priority: optional Section: doc Installed-Size: 936 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: all Source: libisoburn Version: 1.3.2-1ubuntu1 Filename: pool/main/libi/libisoburn/libisoburn-doc_1.3.2-1ubuntu1_all.deb Size: 91512 MD5sum: 17e612d27babdd352a17d898712045b5 SHA1: 32991316efbd887942fb72a22b01bbe65a28e9a6 SHA256: 6ce8405095d223d4b5fcca4bf1203c86466f80f8bd2c78f6386c9bb8cd456a87 Description: documentation package for libisoburn Homepage: http://libburnia-project.org Description-md5: 8d1fc29a0624bf904b0576512a169982 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisoburn1 Priority: optional Section: libs Installed-Size: 887 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: amd64 Source: libisoburn Version: 1.3.2-1ubuntu1 Depends: libburn4 (>= 1.3.4), libc6 (>= 2.15), libisofs6 (>= 1.3.2), libjte1, libreadline6 (>= 6.0) Filename: pool/main/libi/libisoburn/libisoburn1_1.3.2-1ubuntu1_amd64.deb Size: 319274 MD5sum: 72e9a4166ed51770dee1eb0e0791eaac SHA1: 940a0a5c79f0f66e2dac683c9bce817b10ee52a7 SHA256: 567f070b42c5bccb07b59a6a90401ba81b40f9f37738b8a7163face42a06300e Description: library to handle creation and inspection of ISO-9660 file systems Homepage: http://libburnia-project.org Description-md5: 6a395ae19a1d23d67d1be2438b0799a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisofs-dbg Priority: extra Section: libdevel Installed-Size: 1210 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: amd64 Source: libisofs Version: 1.3.4-0ubuntu1 Depends: libisofs6 (= 1.3.4-0ubuntu1) Filename: pool/main/libi/libisofs/libisofs-dbg_1.3.4-0ubuntu1_amd64.deb Size: 308742 MD5sum: 04891db2305e66044fd5fbc2bd34bac5 SHA1: 5eb3177bcade812ab34e5def97eeafb53cae9629 SHA256: 19c67559607494a56add61a506b4a880562d66169678118787f45b897fa03cff Description: debugging symbols for libisofs Homepage: http://libburnia-project.org Description-md5: 5278f31c587d84269fe4fc962d372db0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisofs-dev Priority: optional Section: libdevel Installed-Size: 873 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: amd64 Source: libisofs Version: 1.3.4-0ubuntu1 Depends: libisofs6 (= 1.3.4-0ubuntu1), zlib1g-dev, libacl1-dev, libattr1-dev Suggests: libisofs-doc (= 1.3.4-0ubuntu1) Filename: pool/main/libi/libisofs/libisofs-dev_1.3.4-0ubuntu1_amd64.deb Size: 211428 MD5sum: 1b5410b03cd08cfe8e9f696dc441a8d3 SHA1: 6bc816c08ff5dae67f904e26d643ee32e29f7dc4 SHA256: c620dadfaea88b8f8aa4ae7e6e0a20d032df9eceea9e29821d2466bbeba7a8e8 Description: development package for libisofs Homepage: http://libburnia-project.org Description-md5: 14fa421b05518b610da64050ce5cce57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisofs-doc Priority: optional Section: doc Installed-Size: 2872 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: all Source: libisofs Version: 1.3.4-0ubuntu1 Filename: pool/main/libi/libisofs/libisofs-doc_1.3.4-0ubuntu1_all.deb Size: 262688 MD5sum: 7a093de28a311ab61200a6c83274d07e SHA1: 879f56a8fff1add274db37635d7145db51f884eb SHA256: 2dac1ed09e02b0c0f93d2d6b05c89500a87767eeabe210c5a8d5ec9dad000b2f Description: API documentation for libisofs library Homepage: http://libburnia-project.org Description-md5: e7db716b9b8c55c3c15818dba25fee40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisofs6 Priority: optional Section: libs Installed-Size: 397 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: amd64 Source: libisofs Version: 1.3.4-0ubuntu1 Depends: libacl1 (>= 2.2.51-8), libc6 (>= 2.14), libjte1, zlib1g (>= 1:1.2.0) Filename: pool/main/libi/libisofs/libisofs6_1.3.4-0ubuntu1_amd64.deb Size: 152766 MD5sum: 6f5aec4f91b25ff5c9b089a591334a97 SHA1: f4a93b870cfcf815448d2d29169071cc034d98cf SHA256: 3666ec3bc4a5d91a44afe211f8ef9a633b9be07516653db3103a6e054bec95c0 Description: library to create ISO9660 images Homepage: http://libburnia-project.org Description-md5: a1e54b63fb915ff5f97ef43aae397797 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libitm1 Priority: optional Section: libs Installed-Size: 160 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libitm1_4.8.2-19ubuntu1_amd64.deb Size: 28518 MD5sum: acd2892a91ef8752d8b706a63d1c8751 SHA1: 24f58d3d8bdc2803a4f72e5d655914dc610cee52 SHA256: dcaa1e6ad75e9da4fcada8593ca806b86e429547422817a700e42bf79df12487 Description: GNU Transactional Memory Library Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 353dc4001cbe783e9f0a27c29f5dc3b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libitm1-dbg Priority: extra Section: debug Installed-Size: 1032 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libitm1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libitm1-dbg_4.8.2-19ubuntu1_amd64.deb Size: 183524 MD5sum: 2fe37f8f87eaa30bcd421398bbf38719 SHA1: e419f25217f52d03881ecf72d657aaf2d40c3b98 SHA256: 323c4d64029fc2f6b060f52dae3455b61eb16baf2658a56eb702b97e71ea7f2a Description: GNU Transactional Memory Library (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 41462d1cfcabe3bd47bcd28353e14894 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libitm1-ppc64el-cross Priority: extra Section: devel Installed-Size: 187 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6-ppc64el-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libitm1-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 28348 MD5sum: 74f567628f270db13012b0bbf70d2eb5 SHA1: 714c1a9e8a72b746f932d59375f7c8c44313ae4e SHA256: 45007336112e448142f8ee71cc8c035e263c04f9a149842d64f4d74fb1ff76b5 Description: GNU Transactional Memory Library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 353dc4001cbe783e9f0a27c29f5dc3b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libiw-dev Priority: extra Section: libdevel Installed-Size: 160 Maintainer: Ubuntu Core Developers Original-Maintainer: Guus Sliepen Architecture: amd64 Source: wireless-tools Version: 30~pre9-8ubuntu1 Depends: libiw30 (= 30~pre9-8ubuntu1), libc6-dev Filename: pool/main/w/wireless-tools/libiw-dev_30~pre9-8ubuntu1_amd64.deb Size: 38244 MD5sum: 8a605fdb0eedb8d29f9216fe1e259343 SHA1: 7803048eff178b8ada7624d09ad77de625a31d5f SHA256: ab61fadffd8ca4c264989f5064fe25d96bb978c1de0d3700f8378995ea2714ca Description: Wireless tools - development files Multi-Arch: same Homepage: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html Description-md5: d036482ad716eb508c40fc614600d60f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libiw30 Priority: extra Section: libs Installed-Size: 90 Maintainer: Ubuntu Core Developers Original-Maintainer: Guus Sliepen Architecture: amd64 Source: wireless-tools Version: 30~pre9-8ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/w/wireless-tools/libiw30_30~pre9-8ubuntu1_amd64.deb Size: 19938 MD5sum: 61bbaad6efa2079a18cb45c1e2ade947 SHA1: 95bbf2918c3e35e974034b12e239a18e439cb724 SHA256: 6fd515ec668b9bbf2be9521474103540dea9219df169247e12255e4739988f6e Description: Wireless tools - library Multi-Arch: same Homepage: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html Description-md5: 5e48c037049910f72132dd4fdb9713a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjack-dev Priority: optional Section: libdevel Installed-Size: 1870 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: jack-audio-connection-kit Version: 1:0.121.3+20120418git75e3e20b-2.1ubuntu1 Provides: libjack-dev-session, libjack0.100.0-dev Depends: libjack0 (= 1:0.121.3+20120418git75e3e20b-2.1ubuntu1), pkg-config Filename: pool/main/j/jack-audio-connection-kit/libjack-dev_0.121.3+20120418git75e3e20b-2.1ubuntu1_amd64.deb Size: 349614 MD5sum: 3dff4811751d0a2314ac9739a4811821 SHA1: 799cc4211fe40010738e2939f34c7cf65f1dc5f4 SHA256: 9a6cb2667a28306bff13e5adcf7fbc01c3716c4fd1863a66268bec5f9a5e5fff Description: JACK Audio Connection Kit (development files) Homepage: http://jackaudio.org/ Description-md5: 5769772c9db90298e719eeef115bed03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjack-jackd2-0 Priority: optional Section: libs Installed-Size: 606 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: jackd2 Version: 1.9.9.5+20130622git7de15e7a-1ubuntu1 Replaces: libjack-0.116 Provides: libjack-0.116 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libsamplerate0 (>= 0.1.7), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Suggests: jackd2 (= 1.9.9.5+20130622git7de15e7a-1ubuntu1) Conflicts: jackd2 (>> 1.9.9.5+20130622git7de15e7a-1ubuntu1), jackd2 (<< 1.9.9.5+20130622git7de15e7a-1ubuntu1), libjack-0.116, libjack0 Filename: pool/main/j/jackd2/libjack-jackd2-0_1.9.9.5+20130622git7de15e7a-1ubuntu1_amd64.deb Size: 182190 MD5sum: bf058fb6461fe6f8dbba752a85071148 SHA1: d1210b652b181b0f8b161d8b91dafac5942afdc4 SHA256: 9faf6730d9e5fb5f80a61ba62046b88d771ae5bcbfc8086b5f451c8f064dac5a Description: JACK Audio Connection Kit (libraries) Multi-Arch: same Homepage: http://jackaudio.org/ Description-md5: f4743a9e2f04ed05673483cd1fe0eb38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libjack-jackd2-dev Priority: optional Section: libdevel Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: jackd2 Version: 1.9.9.5+20130622git7de15e7a-1ubuntu1 Replaces: libjack0.71.2-0 (<< 0.75.0-1) Provides: libjack-dev, libjack-dev-session, libjack0.100.0-dev Depends: libjack-jackd2-0 (= 1.9.9.5+20130622git7de15e7a-1ubuntu1), pkg-config, libdbus-1-dev Conflicts: libjack-dev, libjack0.100.0-dev (<< 0.102.20-2) Filename: pool/main/j/jackd2/libjack-jackd2-dev_1.9.9.5+20130622git7de15e7a-1ubuntu1_amd64.deb Size: 45776 MD5sum: 362b8d83f3d1570c5d420d3c11ebf40d SHA1: a1d643bde2a71194a8683c1411aa10ea2325b481 SHA256: e147c84cad1188e093ff0b62ec257d1bb9fd910cdd35c88e8c6c7e32159a3173 Description: JACK Audio Connection Kit (development files) Multi-Arch: same Homepage: http://jackaudio.org/ Description-md5: 5769772c9db90298e719eeef115bed03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjack0 Priority: optional Section: libs Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: jack-audio-connection-kit Version: 1:0.121.3+20120418git75e3e20b-2.1ubuntu1 Replaces: libjack-0.116 Provides: libjack-0.116 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Suggests: jackd1 (= 1:0.121.3+20120418git75e3e20b-2.1ubuntu1) Conflicts: jackd1 (>> 1:0.121.3+20120418git75e3e20b-2.1ubuntu1), jackd1 (<< 1:0.121.3+20120418git75e3e20b-2.1ubuntu1), libjack-0.116 Filename: pool/main/j/jack-audio-connection-kit/libjack0_0.121.3+20120418git75e3e20b-2.1ubuntu1_amd64.deb Size: 42448 MD5sum: eddae99a449ad6e040990b5051af3a36 SHA1: 6f41f052b20bfa414257b8f62de2de96832959e9 SHA256: fa0ed65e73f87606cf614c2c97f2e7d7fd4e5e500c7fd7097fcad0da5c6e8c75 Description: JACK Audio Connection Kit (libraries) Multi-Arch: same Homepage: http://jackaudio.org/ Description-md5: f4743a9e2f04ed05673483cd1fe0eb38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjakarta-taglibs-standard-java Priority: optional Section: java Installed-Size: 359 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jakarta-taglibs-standard Version: 1.1.2-2ubuntu1 Depends: libxalan2-java Filename: pool/main/j/jakarta-taglibs-standard/libjakarta-taglibs-standard-java_1.1.2-2ubuntu1_all.deb Size: 275824 MD5sum: d8285e59e04df29b5413c1487c1dcf99 SHA1: c0e56663649206c7e4d4f9c209754c2a53fd80d7 SHA256: 96579ded1f6f7204e32b386d9631be1471e26c4a6a8785aeab864b54af0f6e63 Description: Implementation of JSP Standard Tag Library (JSTL) Homepage: http://tomcat.apache.org/taglibs/standard/ Description-md5: 13088629aac3e2957c5bf2f28b8174e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libjargs-java Priority: optional Section: libs Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jargs Version: 1.0.0-4 Suggests: libjargs-java-doc Filename: pool/main/j/jargs/libjargs-java_1.0.0-4_all.deb Size: 14272 MD5sum: bc2f36eb3c57d5dd1cf276c75502d7e7 SHA1: 9b086aad3ff30dacfd8062b778d766bd7b5f4ff5 SHA256: 99f70549c5d068003e09c3bd30af09812152250e3141fddede84c0695591fa0d Description: Command-line argument parsing for Java Homepage: http://jargs.sourceforge.net/ Description-md5: a630e71d4aaa46b69ac6d7342f6fd3c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjargs-java-doc Priority: optional Section: doc Installed-Size: 705 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jargs Version: 1.0.0-4 Recommends: default-jdk-doc Suggests: libjargs-java Filename: pool/main/j/jargs/libjargs-java-doc_1.0.0-4_all.deb Size: 41314 MD5sum: 8e4e7c14221606b1ce479d767eafdb6d SHA1: f373f28938a7ade352850d09da371aa267c4a3ad SHA256: 653ad5350b95b1415fbea7915ed2abe7ea44d5390f1e3952fdf626b4f467d9e3 Description: Command-line argument parsing for Java - documentation Homepage: http://jargs.sourceforge.net/ Description-md5: 8f880194de6fb14b8a5db9d7f13f00b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjarjar-java Priority: optional Section: libs Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jarjar Version: 1.4+svn142-3 Filename: pool/main/j/jarjar/libjarjar-java_1.4+svn142-3_all.deb Size: 119034 MD5sum: 18ebd10e1143ba54de1563a9d031d4a9 SHA1: 7eea7657590192fd9cd42bfbf881a87cb3545b30 SHA256: 45b5d65c013e90bf78d2122418a21052b1331b090af461bbc13723deb22bd194 Description: repackage third-party jars Homepage: http://code.google.com/p/jarjar/ Description-md5: 742dfa8deee489d10634651524a940b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjarjar-java-doc Priority: optional Section: doc Installed-Size: 697 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jarjar Version: 1.4+svn142-3 Suggests: libjarjar-java Filename: pool/main/j/jarjar/libjarjar-java-doc_1.4+svn142-3_all.deb Size: 58572 MD5sum: a9fc63e6e94397edff626f113274ae37 SHA1: 1c61301e65f3696e454aea870517689d1a07cbd7 SHA256: bf44dd00f546ab863841274ff64130f148ceae2c2c4c5ecb0c73f11d01dbaee4 Description: repackage third-party jars - documentation Homepage: http://code.google.com/p/jarjar/ Description-md5: 6694694da80d7f45738eda42d30b87b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjasper-dev Priority: optional Section: libdevel Installed-Size: 1066 Maintainer: Ubuntu Developers Original-Maintainer: Roland Stigge Architecture: amd64 Source: jasper Version: 1.900.1-14ubuntu3 Replaces: libjasper-1.700-2-dev Depends: libjasper1 (= 1.900.1-14ubuntu3) Conflicts: libjasper-1.700-2-dev Filename: pool/main/j/jasper/libjasper-dev_1.900.1-14ubuntu3_amd64.deb Size: 518954 MD5sum: da7c47f858e5669f6f1cb96eac8b38b8 SHA1: 9392ebb543c709ed9662bbe9241c6341d965c27d SHA256: b6c1643b8aebd388bce3ed7cfdd79cee551fa1a2884e7de63a490e4da685ba2a Description: Development files for the JasPer JPEG-2000 library Description-md5: cffe1269c80cd3e31782da0e12e80b0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjasper1 Priority: optional Section: libs Installed-Size: 356 Maintainer: Ubuntu Developers Original-Maintainer: Roland Stigge Architecture: amd64 Source: jasper Version: 1.900.1-14ubuntu3 Replaces: libjasper-1.700-2 Depends: libc6 (>= 2.14), libjpeg8 (>= 8c) Pre-Depends: multiarch-support Suggests: libjasper-runtime Conflicts: libjasper-1.700-2 Filename: pool/main/j/jasper/libjasper1_1.900.1-14ubuntu3_amd64.deb Size: 128970 MD5sum: ee8ae8faa2885a7db59e7a13c70f1a91 SHA1: 2081e2083975354f9d4bad6a867b06bdf316caa5 SHA256: efedf243cc6774531d9d5baad2538814440b857053ad562ecb9cf1c676b878b8 Description: JasPer JPEG-2000 runtime library Multi-Arch: same Description-md5: ad351750d947ec6dd6e2443143ae9b0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjavascript-minifier-xs-perl Priority: optional Section: perl Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.09-2build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.14) Filename: pool/main/libj/libjavascript-minifier-xs-perl/libjavascript-minifier-xs-perl_0.09-2build1_amd64.deb Size: 14986 MD5sum: 2391866794263b509ad569b270f6c770 SHA1: 5c5059f48de638b0316a0837a809d1905e807d67 SHA256: c212d9ffe56d88e5a65f6d4232c5f029aa3d56c63c4b48d4b8c7c7b93ca11aa6 Description: XS based JavaScript minifier Homepage: https://metacpan.org/release/JavaScript-Minifier-XS/ Description-md5: 67deb10ad1008e60a85325f6d3cdfd39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjavascriptcoregtk-1.0-0 Priority: optional Section: libs Installed-Size: 6757 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.36.0), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.8.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-1.0-0_2.4.0-1ubuntu2_amd64.deb Size: 1806222 MD5sum: 39dd1af9345c414ee6968cb841b07b33 SHA1: 880beb785dad907e6d065dd1157b86744c0c53f0 SHA256: 3f066828f02c2579f3b8c3f18fe5aeb0a2bbbbdb31186e4b51e6a0368b7c8ff4 Description: JavaScript engine library from WebKitGTK+ Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: c8ca5f9911b19e560b648038b5d6c507 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-live, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libjavascriptcoregtk-1.0-0-dbg Priority: extra Section: debug Installed-Size: 328763 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libjavascriptcoregtk-1.0-0 (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-1.0-0-dbg_2.4.0-1ubuntu2_amd64.deb Size: 77839302 MD5sum: 211e5716844c85474ff52e98e62b0c7f SHA1: bbab319256e1f2fb4d237d4f39cabaeb815c9779 SHA256: ea8ddc42d6deb690cedf724c13535bcbc8b1c7aa614c5455d5f061ee820e8dcd Description: JavaScript engine library from WebKitGTK+ - debugging symbols Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: 7a20d831cf310d0d2163cc35a370be4c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjavascriptcoregtk-1.0-dev Priority: extra Section: libdevel Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: libwebkit-dev (<< 1.5.0), libwebkitgtk-dev (<< 1.5.0) Depends: libjavascriptcoregtk-1.0-0 (= 2.4.0-1ubuntu2), gir1.2-javascriptcoregtk-1.0 (= 2.4.0-1ubuntu2) Conflicts: libwebkit-dev (<< 1.5.0), libwebkitgtk-dev (<< 1.5.0) Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-1.0-dev_2.4.0-1ubuntu2_amd64.deb Size: 21188 MD5sum: 4743a1926d92af1f5c133662f61b96fe SHA1: 04022f3e3872cd49ab194cc98813ae78e04bb664 SHA256: 9ab57225a7786eab9f6d0e88ba0bd4b53040536776c4249f2c0db8c9c7fb6a71 Description: JavaScript engine library from WebKitGTK+ - development files Homepage: http://webkitgtk.org/ Description-md5: 3a7f4f950f5c61c1ab7f3b84b008c035 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjavascriptcoregtk-3.0-0 Priority: optional Section: libs Installed-Size: 6757 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.36.0), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.8.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-3.0-0_2.4.0-1ubuntu2_amd64.deb Size: 1806314 MD5sum: d431348f721f7ad30e7f71f361922a2d SHA1: f3f72e033ea616d0e545929d2f913570d42f68b0 SHA256: 3f0cdee3b6e1095f6e1e356a14cbc3e4827397f98dfe52f76a10f5f1a6aad7c7 Description: JavaScript engine library from WebKitGTK+ Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: fa31d6ff17e7f898095d279640948eb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjavascriptcoregtk-3.0-0-dbg Priority: extra Section: debug Installed-Size: 328763 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libjavascriptcoregtk-3.0-0 (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-3.0-0-dbg_2.4.0-1ubuntu2_amd64.deb Size: 77828178 MD5sum: c454b599d07012d5b122bf0b13406176 SHA1: da3e9e3e57f1e44d84f7c55c6a84a87921d0e718 SHA256: b2a387825fdea88417401f07dcdbffa8aa4dd361ff5aeb111e7f4adf20b4bc5d Description: JavaScript engine library from WebKitGTK+ - debugging symbols Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: 20f18227b6e023567efd6f86ba09e975 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjavascriptcoregtk-3.0-dev Priority: extra Section: libdevel Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: libwebkitgtk-3.0-dev (<< 1.5.0) Depends: libjavascriptcoregtk-3.0-0 (= 2.4.0-1ubuntu2), gir1.2-javascriptcoregtk-3.0 (= 2.4.0-1ubuntu2) Conflicts: libwebkitgtk-3.0-dev (<< 1.5.0) Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-3.0-dev_2.4.0-1ubuntu2_amd64.deb Size: 21190 MD5sum: 9f3553eb1f50abef38286a37847c5852 SHA1: f1ac0429581ca21ce55ef66bbd706a3bfefb4e8a SHA256: ffd75aa21d7f306226c94f660111d6ce3e17a4570c8488c115ec815ceed2ef78 Description: JavaScript engine library from WebKitGTK+ - development files Homepage: http://webkitgtk.org/ Description-md5: 73b6f7b0b80cb239bcf5bac77df63fe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjaxen-java Priority: optional Section: libs Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.6-1ubuntu1 Replaces: libsaxpath-java Recommends: libdom4j-java, libjdom1-java, libxom-java Conflicts: libsaxpath-java Filename: pool/main/libj/libjaxen-java/libjaxen-java_1.1.6-1ubuntu1_all.deb Size: 206112 MD5sum: 7bfa1146e97b13bea54722c093765592 SHA1: fe6a38ce6380fb642f67dd44e77dc47f4dba02b6 SHA256: 7b8ff24fa7ea335549fccf08da9be5c1b1849eaae527b4937cc053ebbae9c933 Description: Java XPath engine Homepage: http://jaxen.codehaus.org Description-md5: 35de18aeaec18036c7ec8376a5879620 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjaxen-java-doc Priority: optional Section: doc Installed-Size: 6612 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libjaxen-java Version: 1.1.6-1ubuntu1 Filename: pool/main/libj/libjaxen-java/libjaxen-java-doc_1.1.6-1ubuntu1_all.deb Size: 466968 MD5sum: cd374b9da7034e712f42ed58ffbb70a7 SHA1: a89c1320e91158895820cb5fe1a277240abf9c0f SHA256: 2655900de23244ff46c4e0f17069a40bc44ea2f31505c9366a39035264217db3 Description: Java XPath engine - documentation Homepage: http://jaxen.codehaus.org Description-md5: 702be9394523b4d28ddacc03ea84bdde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjaxp1.3-java Priority: optional Section: libs Installed-Size: 661 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.3.05-2ubuntu3 Suggests: libjaxp1.3-java-gcj Conflicts: libxalan2-java (<= 2.7.1-3) Filename: pool/main/libj/libjaxp1.3-java/libjaxp1.3-java_1.3.05-2ubuntu3_all.deb Size: 450366 MD5sum: 7e9ae207d692076da2d000d27ccd3a2b SHA1: 86b0041b0e9af80f1abb90489456182fe313076a SHA256: 17aa9ed064d294508640561a303d530726fdb3f4f4f58c0b01cbca6676b8b07b Description: Java XML parser and transformer APIs (DOM, SAX, JAXP, TrAX) Homepage: http://java.sun.com/xml/jaxp/index.jsp Description-md5: 606ed4bef1a124acfddbe03c2158b1cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libjaxp1.3-java-gcj Priority: optional Section: libs Installed-Size: 1343 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: amd64 Source: libjaxp1.3-java Version: 1.3.05-2ubuntu3 Depends: libjaxp1.3-java (>= 1.3.05-2ubuntu3), libgcj-common (>> 1:4.1.1-13), libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.6.3-1~) Filename: pool/main/libj/libjaxp1.3-java/libjaxp1.3-java-gcj_1.3.05-2ubuntu3_amd64.deb Size: 262838 MD5sum: e6a2e1c537a9da9b8ec8a6f952b81a4a SHA1: 2598ab6e81d30ccf15c2f7033c4ae9b79ad10405 SHA256: 574640bc0c947898958f00aa124933545e99f5baa56ae97b5f12c72c903de150 Description: Java XML parser and transformer APIs (DOM, SAX, JAXP, TrAX) - GCJ Homepage: http://java.sun.com/xml/jaxp/index.jsp Description-md5: 622da09f293ce21342c267c275320622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjbig-dev Priority: extra Section: libdevel Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Michael van der Kolff Architecture: amd64 Source: jbigkit Version: 2.0-2ubuntu4 Depends: libjbig0 (= 2.0-2ubuntu4) Pre-Depends: multiarch-support Filename: pool/main/j/jbigkit/libjbig-dev_2.0-2ubuntu4_amd64.deb Size: 6316 MD5sum: 6d65128070e9ba01f792191879bdded9 SHA1: 1b5df2d889f4bd47c7a3d64f7782798d4e192d59 SHA256: b19763bef199407ed3c3fa457f94fe459e7ad82a5b5daaeca475a710bf5f4eb7 Description: JBIGkit development files Multi-Arch: same Homepage: http://www.cl.cam.ac.uk/~mgk25/jbigkit/ Description-md5: adb859ea7f3297c702ae65a62d5b099c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjbig0 Priority: extra Section: libs Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Michael van der Kolff Architecture: amd64 Source: jbigkit Version: 2.0-2ubuntu4 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/j/jbigkit/libjbig0_2.0-2ubuntu4_amd64.deb Size: 25908 MD5sum: 24bcea41f37c1b5c3f4de6b66ec005a2 SHA1: a5d0307d509e14d5d230806804485f3896a0917a SHA256: 865034f578c968be0dc31da27ee8a2756b0facbc163e966a5b1e4f54f98b5d06 Description: JBIGkit libraries Multi-Arch: same Homepage: http://www.cl.cam.ac.uk/~mgk25/jbigkit/ Description-md5: dff3510ff69e0a9b07a69c345f0aedb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjbig2dec0 Priority: optional Section: libs Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Smedegaard Architecture: amd64 Source: jbig2dec Version: 0.11+20120125-1ubuntu1 Depends: libc6 (>= 2.14) Filename: pool/main/j/jbig2dec/libjbig2dec0_0.11+20120125-1ubuntu1_amd64.deb Size: 48626 MD5sum: ef22b61626a5c13d0e698e28a3875a1e SHA1: 2e6f193d65326dcdac78177ffb73ddaf9c431c31 SHA256: c48c8e30ac9cedf21138308b4c4c6f30f9c7036a7f1c1f1339fdabcfafb28403 Description: JBIG2 decoder library - shared libraries Homepage: http://jbig2dec.sourceforge.net/ Description-md5: 4fc692e269014b2801abb9d178e5f774 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjbig2dec0-dev Priority: optional Section: libdevel Installed-Size: 200 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Smedegaard Architecture: amd64 Source: jbig2dec Version: 0.11+20120125-1ubuntu1 Provides: libjbig2dec-dev Depends: libjbig2dec0 (= 0.11+20120125-1ubuntu1) Conflicts: libjbig2dec-dev Filename: pool/main/j/jbig2dec/libjbig2dec0-dev_0.11+20120125-1ubuntu1_amd64.deb Size: 52894 MD5sum: e9c866a2260c9eb00bb46fc9dfb90edb SHA1: 616e2c6b4d32166bb6a68fdecc03a79c206145a1 SHA256: 2e3a5ea91221151c4d4e8f985c96b8a99817d79e6db00869aea3f6ccd039a337 Description: JBIG2 decoder library - development files Homepage: http://jbig2dec.sourceforge.net/ Description-md5: e0964a7829aa44b212d608a06f2333c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjdepend-java Priority: optional Section: libs Installed-Size: 897 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.9.1-1 Filename: pool/main/libj/libjdepend-java/libjdepend-java_2.9.1-1_all.deb Size: 245772 MD5sum: ac3e4596d12c2fc372b6b44ce0ed9c35 SHA1: e96aa4f7bfdf18b175d4adef619441c0c3252718 SHA256: 5cdbb0b83ca48a2f3bd5a8699f570209d1f2dd29602c94afc6419f194452dbfd Description: tool to measure design quality of java class and source Homepage: http://www.clarkware.com/software/JDepend.html Description-md5: 478ec8d4bfd9fbf209498eb111b0990e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjdom1-java Priority: optional Section: libs Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.3-1 Depends: libjaxen-java Suggests: libjdom1-java-doc Filename: pool/main/libj/libjdom1-java/libjdom1-java_1.1.3-1_all.deb Size: 150448 MD5sum: d8960bb32a7c20bd4e641729167570cd SHA1: c0dc5a79e7f3e43cb5c55a87e58b68aa135ef2a7 SHA256: 656a8937d3c8b872d9c60540f4fcca700fe8e60a7474aadaf25e6dff9855efdb Description: lightweight and fast library using XML Homepage: http://jdom.org Description-md5: 5e7a375a0c2bfa5d54177b3ca4c1c713 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjdom1-java-doc Priority: optional Section: doc Installed-Size: 2581 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libjdom1-java Version: 1.1.3-1 Suggests: libjdom1-java Filename: pool/main/libj/libjdom1-java/libjdom1-java-doc_1.1.3-1_all.deb Size: 236334 MD5sum: be1028acc9a98f94fdb81365c73ce70b SHA1: e170a66c8c35a0e7e4ced65388527535bc0a4e7c SHA256: 92c49a1036962be0c4d480853b4ff04947f323929bc2e8608910a2e3e8e3a5df Description: lightweight and fast library using XML - documentation Homepage: http://jdom.org Description-md5: e771c2d094b8d21435d884b1bc7676a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjline-java Priority: optional Section: libs Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jline Version: 1.0-2 Suggests: libjline-java-doc Filename: pool/main/j/jline/libjline-java_1.0-2_all.deb Size: 69372 MD5sum: f4a54be4875239c80f4411f9cc45c0fd SHA1: 3522ca1fcba915d7c0fa0e305bb76ef3a6aae0c0 SHA256: 09f709b6257c7e75aead5348009d83e28c442e1c6cc8179ab69d030a5ffcc2ef Description: Java library for handling console input Homepage: http://jline.sourceforge.net/ Description-md5: 34d3ea50796aa57cc64f8964246c9cca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjline-java-doc Priority: optional Section: doc Installed-Size: 910 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jline Version: 1.0-2 Suggests: libjline-java, default-jdk-doc Filename: pool/main/j/jline/libjline-java-doc_1.0-2_all.deb Size: 222562 MD5sum: 1b1b677bd6de4f060866221a00b97f32 SHA1: 2cec2a737ed5771478f1123a1de2685971be95b8 SHA256: 0e1b783d95dde04b5fe891e969f45d11c8e65ff597f056da281f4ae9c4c94ba9 Description: Java library for handling console input - documentation Homepage: http://jline.sourceforge.net/ Description-md5: 38d89d769683a46981f3fb4b0799a946 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjmock-java Priority: optional Section: libs Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jmock Version: 1.2.0-2 Recommends: junit (>= 3.8.2) Suggests: libjmock-java-doc, libasm-java, libcglib-java Filename: pool/main/j/jmock/libjmock-java_1.2.0-2_all.deb Size: 87826 MD5sum: 89177afb4e0add2ce637d2e373664feb SHA1: a76890f29ffbe80261d4d9521ab4e76a40e73f8f SHA256: c7ca76ad847a61cb3e0fe6ee86b617cc8d4f9b228743b0f7943431621217d0a8 Description: Java library for testing code with mock objects Homepage: http://www.jmock.org Description-md5: c071f1edf59721273bfd24b2c3751e39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjmock-java-doc Priority: optional Section: libs Installed-Size: 1683 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jmock Version: 1.2.0-2 Suggests: default-jdk-doc Filename: pool/main/j/jmock/libjmock-java-doc_1.2.0-2_all.deb Size: 109144 MD5sum: 7dfb023edc951a0f1dce2021345f22ff SHA1: bb139e276c281d08aca5139fc987b7f9fd8ac35d SHA256: f2eba0dd76236961a333b703f5a52f9570394bbb6c7bb1917b11b4770bc6f03d Description: Java library for testing code with mock objects - documentation Homepage: http://www.jmock.org Description-md5: f8d075fa2038dc8143f89095a88e1513 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Architecture: amd64 Source: libjpeg8-empty Version: 8c-2ubuntu8 Depends: libjpeg8-dev Filename: pool/main/libj/libjpeg8-empty/libjpeg-dev_8c-2ubuntu8_amd64.deb Size: 1546 MD5sum: 48308774ecc38ee2cd8f9cf358c63ea4 SHA1: ab630ff891f59f96fba702c062f70a923f1b151e SHA256: 5a676a4f0e5cf95124957e1935c2fdbae0841774b9760edbc49f5a438d153b16 Description: Independent JPEG Group's JPEG runtime library (dependency package) Multi-Arch: same Description-md5: aeb3b35af5377dc1c08b3d3f1dd1de36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg-turbo8 Priority: optional Section: libs Installed-Size: 331 Maintainer: Ubuntu Developers Architecture: amd64 Source: libjpeg-turbo Version: 1.3.0-0ubuntu2 Replaces: libjpeg8 (<< 8c-2ubuntu5) Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Breaks: libjpeg8 (<< 8c-2ubuntu5) Filename: pool/main/libj/libjpeg-turbo/libjpeg-turbo8_1.3.0-0ubuntu2_amd64.deb Size: 104020 MD5sum: 9b8b32831e8332714737af0342f57b28 SHA1: b3b8ac5fd031c5ea5191045741b5f8472007794a SHA256: a0f07cbd6fd984aeeae72d4aa8ae3b96f036f534e46260d6504d2a872c73f778 Description: IJG JPEG compliant runtime library. Multi-Arch: same Homepage: http://libjpeg-turbo.virtualgl.org/ Description-md5: e73784921dcb74ecc93efca2d0dbf06a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjpeg-turbo8-dbg Priority: extra Section: debug Installed-Size: 404 Maintainer: Ubuntu Developers Architecture: amd64 Source: libjpeg-turbo Version: 1.3.0-0ubuntu2 Replaces: libjpeg-turbo-dbg (<< 1.1.90+svn722-1ubuntu6), libjpeg62-dbg, libjpeg7-dbg Depends: libjpeg-turbo8 (= 1.3.0-0ubuntu2) Filename: pool/main/libj/libjpeg-turbo/libjpeg-turbo8-dbg_1.3.0-0ubuntu2_amd64.deb Size: 302292 MD5sum: e208f2f2cb425538deddf073b87318c6 SHA1: 0e995f430f9512085301209c58a5ea111db7d83b SHA256: a670ba7773a9a1bad8d0f9a34e661e92b8b4db6693406f02acf6bca65b3a4469 Description: Debugging symbols for the libjpeg-turbo library Homepage: http://libjpeg-turbo.virtualgl.org/ Description-md5: 9642361e392f97fb16b31dfbf38ea4d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg-turbo8-dev Priority: optional Section: libdevel Installed-Size: 1190 Maintainer: Ubuntu Developers Architecture: amd64 Source: libjpeg-turbo Version: 1.3.0-0ubuntu2 Replaces: libjpeg62-dev, libjpeg7-dev, libjpeg8-dev (<< 8c-2ubuntu5) Provides: libjpeg-dev Depends: libc-dev, libjpeg-turbo8 (= 1.3.0-0ubuntu2) Conflicts: libjpeg62-dev, libjpeg7-dev Filename: pool/main/libj/libjpeg-turbo/libjpeg-turbo8-dev_1.3.0-0ubuntu2_amd64.deb Size: 242296 MD5sum: cddc4db546e2a1cbda16a230d1538217 SHA1: 1f8cf990cff9ba37beec6a9b26654993dd398504 SHA256: 9ab522aa593d89914fdf199dbf46a72cdb4ea9749d982ae60cce7885a5a0e56f Description: Development files for the IJG JPEG library Multi-Arch: same Homepage: http://libjpeg-turbo.virtualgl.org/ Description-md5: d25e4fedcfe5ade5e441d4bc95a4a0d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg62 Priority: optional Section: libs Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Bill Allombert Architecture: amd64 Source: libjpeg6b Version: 6b1-4ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libj/libjpeg6b/libjpeg62_6b1-4ubuntu1_amd64.deb Size: 78378 MD5sum: 36ac3bfb929d703c7378638ac81fd135 SHA1: 17010f50a7f7960f50a370b748d9bc329a01d047 SHA256: cd6a998f0a742e2040fba7a0a3e9ca39dd260c27bbeddd68664445ed70c308fd Description: Independent JPEG Group's JPEG runtime library (version 6.2) Multi-Arch: same Description-md5: 53d80d990dac853780cc2c973a60e680 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libjpeg62-dbg Priority: extra Section: libdevel Installed-Size: 725 Maintainer: Ubuntu Developers Original-Maintainer: Bill Allombert Architecture: amd64 Source: libjpeg6b Version: 6b1-4ubuntu1 Provides: libjpeg-dbg Depends: libjpeg62 (= 6b1-4ubuntu1) Filename: pool/main/libj/libjpeg6b/libjpeg62-dbg_6b1-4ubuntu1_amd64.deb Size: 134226 MD5sum: 671b02cb5e737b77ac92a6ca6d2964cc SHA1: 393321408900fa5bca93bd5603e1e7f3be11fef2 SHA256: 9e1eb963d0f6ee4940827f2c01057bf99ca4956c6a51303b9d61c8336e5a29ea Description: Development files for the IJG JPEG library (version 6.2) Description-md5: 3387562520832fd6b3c1640c9bdde454 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg62-dev Priority: optional Section: libdevel Installed-Size: 444 Maintainer: Ubuntu Developers Original-Maintainer: Bill Allombert Architecture: amd64 Source: libjpeg6b Version: 6b1-4ubuntu1 Depends: libjpeg62 (= 6b1-4ubuntu1), libc-dev Filename: pool/main/libj/libjpeg6b/libjpeg62-dev_6b1-4ubuntu1_amd64.deb Size: 173938 MD5sum: 62c8fbcf59ec554c7ac6b12c1d2d8200 SHA1: 706c5bdbd1edc884bbf3da385b9b88e38ca85af9 SHA256: cf73c59973c2d4879be40a9340cb96ab35b86e547975180144d501b2f29ffd6b Description: Development files for the IJG JPEG library (version 6.2) Multi-Arch: same Description-md5: 754ff6d7596fa7d0dad4124be6dd4ac1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg8 Priority: optional Section: libs Installed-Size: 26 Maintainer: Ubuntu Developers Architecture: amd64 Source: libjpeg8-empty Version: 8c-2ubuntu8 Depends: libjpeg-turbo8 (>= 1.1.90+svn722-1ubuntu6) Filename: pool/main/libj/libjpeg8-empty/libjpeg8_8c-2ubuntu8_amd64.deb Size: 2194 MD5sum: e0f16286dd787b951ffa953987fdf6a7 SHA1: 50f0a11ba80717e17b8485567ee1be76b744ce8f SHA256: baaecbc8e7ef55fc1887365721a7771f7d533fabca38fca878668b9c8f7ee13f Description: Independent JPEG Group's JPEG runtime library (dependency package) Multi-Arch: same Description-md5: c291a11286499ba1bdfddf14d8af677b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjpeg8-dbg Priority: extra Section: debug Installed-Size: 26 Maintainer: Ubuntu Developers Architecture: amd64 Source: libjpeg8-empty Version: 8c-2ubuntu8 Provides: libjpeg-dbg Depends: libjpeg-turbo8-dbg (>= 1.1.90+svn722-1ubuntu6), libjpeg8 (= 8c-2ubuntu8) Filename: pool/main/libj/libjpeg8-empty/libjpeg8-dbg_8c-2ubuntu8_amd64.deb Size: 1546 MD5sum: 1ce9de084496ae79bb75a0a129c5e69c SHA1: 46cc19afb61a3ceef4ea717161fcd4d61bd53861 SHA256: da59606ed41f637df747b292ee9b1b3d8927f5768029213ea09f9b2b123062e3 Description: Independent JPEG Group's JPEG runtime library (dependency package) Description-md5: eae518d4a3f4b4d18474b1fea12b703d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg8-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Architecture: amd64 Source: libjpeg8-empty Version: 8c-2ubuntu8 Depends: libjpeg-turbo8-dev (>= 1.1.90+svn722-1ubuntu6), libjpeg8 (= 8c-2ubuntu8) Filename: pool/main/libj/libjpeg8-empty/libjpeg8-dev_8c-2ubuntu8_amd64.deb Size: 1552 MD5sum: 208d3e0f1f38074dbf23a28751951c9d SHA1: 6d7eb8aa863f689a2c0edba83391e34f1b93aa72 SHA256: 6b7409c61e8af2c2e74840644534b2af984582f5de56836212f78d18054a3d57 Description: Independent JPEG Group's JPEG runtime library (dependency package) Multi-Arch: same Description-md5: 7be15a693abb714b10f0338826683c2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-jquery Priority: optional Section: web Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: jquery Version: 1.7.2+dfsg-2ubuntu1 Replaces: jquery Suggests: javascript-common Conflicts: jquery Breaks: movabletype-opensource (<< 5.1.4+dfsg-3~) Filename: pool/main/j/jquery/libjs-jquery_1.7.2+dfsg-2ubuntu1_all.deb Size: 78758 MD5sum: 08cb6ee293e5570df48cbff3b1316cb5 SHA1: 7ff557527ac4b97356d5dd1db1a73c4e5cd7362e SHA256: 8e681cff9929fee1d2e114efaa9b630e23f4cfdcd285e6ab11a5e791c8f36dd7 Description: JavaScript library for dynamic web applications Multi-Arch: foreign Homepage: http://jquery.com/ Description-md5: 7962611d0963445869229c974a815cea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, lubuntu-desktop, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics Package: libjs-jquery-hotkeys Priority: extra Section: web Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Version: 0~20130707+git2d51e3a9+dfsg-2ubuntu1 Depends: libjs-jquery Pre-Depends: dpkg (>= 1.15.6~) Recommends: javascript-common Filename: pool/main/libj/libjs-jquery-hotkeys/libjs-jquery-hotkeys_0~20130707+git2d51e3a9+dfsg-2ubuntu1_all.deb Size: 11362 MD5sum: 1dc73271d48aa240ed7ccb4cb7c2a96d SHA1: 8f7bbcdd7e7b86ddbd27201af2e2641c725d79d3 SHA256: d8d8a715d53f6641a4ee9e8d9df8e0d563a0efda3d637c7dc3f180ef8b923aa6 Description: easily add and remove handlers for keyboard events anywhere in your code Homepage: https://github.com/tzuryby/jquery.hotkeys Description-md5: 6ad49f724a34e8aa32e5f3b7dd38a9aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-jquery-isonscreen Priority: extra Section: web Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Version: 1.2.0-1 Depends: libjs-jquery Recommends: javascript-common Filename: pool/main/libj/libjs-jquery-isonscreen/libjs-jquery-isonscreen_1.2.0-1_all.deb Size: 3102 MD5sum: d9eab2c09fc65416b66a70a3e9f23b4e SHA1: e27bee8ea44f4f59bd39c630ca73a459b98719b9 SHA256: 0ef8ad229dcbbc7685d5da6379456b9f9a4d63294bb1b514eee4f3f240d6a4ae Description: detects if an element is visible within the users current view pane Homepage: http://archive.plugins.jquery.com/project/isOnScreen Description-md5: e3bf748b2b5748e1c93209bb32f35a4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-jquery-metadata Priority: optional Section: web Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: jquery-goodies Version: 8-2 Depends: libjs-jquery Recommends: javascript-common Filename: pool/main/j/jquery-goodies/libjs-jquery-metadata_8-2_all.deb Size: 6856 MD5sum: f577e88c99f650547730efe2091de99a SHA1: e83368825f4f3e655af1752f81e491b0ff64330a SHA256: 124e5b94ee9a3f689e7a6fc76aa1805ffe9f8807a62a7d3a14622d7566ec1f33 Description: jQuery plugin for parsing metadata from elements Description-md5: 82b6fad279b5aa5463b5e96d011768af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-jquery-resize-doc Priority: optional Section: doc Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: jquery-goodies Version: 8-2 Filename: pool/main/j/jquery-goodies/libjs-jquery-resize-doc_8-2_all.deb Size: 26786 MD5sum: 1c0afbefcace9bb87e93a6356198a4fd SHA1: afa0a7823f8afc9bc24ebe7c3e460de4ac6f1c0b SHA256: 13d687121c28a3f346fc3a4fcf90dc855290d1c079226fe6f14d81c4b1a046e8 Description: jQuery resize (doc) Homepage: http://benalman.com/projects/jquery-resize-plugin/ Description-md5: cdaa876b5dcff0c7e748388bbc245273 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-jquery-tablesorter Priority: optional Section: web Installed-Size: 444 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: jquery-goodies Version: 8-2 Depends: libjs-jquery (>= 1.2.3), libjs-jquery-metadata Recommends: javascript-common Filename: pool/main/j/jquery-goodies/libjs-jquery-tablesorter_8-2_all.deb Size: 63956 MD5sum: 51c79ab0847130decc052869cb9d25bb SHA1: 4b13d922ad4ff6ce2d5ceb698d2d1d3f91640318 SHA256: 8bc9804de5596e5534242e6e4fdb726fcd0c2d27ff7464ef9ddd77c0358266de Description: Flexible client-side table sorting Homepage: http://tablesorter.com Description-md5: 7d8ed1cbc5600d27e80c28053129afa3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-raphael Priority: optional Section: web Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Paolo Rotolo Architecture: all Source: raphael Version: 2.1.0-1ubuntu1 Suggests: javascript-common Filename: pool/main/r/raphael/libjs-raphael_2.1.0-1ubuntu1_all.deb Size: 81920 MD5sum: 03bb7f61b2df0f6e203070e50f2ad798 SHA1: ec76b53074d1d14322d1af004de98e72dd98c890 SHA256: c84bba0f327d650ecca062d169a576c75879cbf9624d4d8b17d8d75c626d342d Description: JavaScript library to work with vector graphics Homepage: http://raphaeljs.com/ Description-md5: 583beeaace242712869baf3f5b5b6755 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libjs-sphinxdoc Priority: optional Section: web Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sphinx Version: 1.2.2+dfsg-1ubuntu1 Depends: libjs-jquery (>= 1.4), libjs-underscore Filename: pool/main/s/sphinx/libjs-sphinxdoc_1.2.2+dfsg-1ubuntu1_all.deb Size: 41222 MD5sum: c8059b7c7583bd54baecf1319035fa67 SHA1: 65929e8c8028ce88e212677c5287a27dc88e43f5 SHA256: 2de9c27015282bde1608610883257c61f7f61e687ef50981f99a334e6d4c51eb Description: JavaScript support for Sphinx documentation Homepage: http://sphinx-doc.org/ Description-md5: 63a7d0de40a41c4829f00fcb9417cf9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libjs-underscore Priority: optional Section: web Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: underscore Version: 1.4.4-2ubuntu1 Recommends: libjs-jquery Suggests: javascript-common Filename: pool/main/u/underscore/libjs-underscore_1.4.4-2ubuntu1_all.deb Size: 45586 MD5sum: 305ad423ee8697a945c3610cf10a6bdf SHA1: 738d3a54ff39221c9f2679a36e709e0f49b29af9 SHA256: 1edba1642e4b71c723546e659f67e4330bdd914a0c44349f26ab592e6969c433 Description: JavaScript's functional programming helper library Homepage: http://underscorejs.org/ Description-md5: a77ac32abf4789aa283df7d50866a802 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libjs-yui3-common Priority: optional Section: web Installed-Size: 1621 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: yui3 Version: 3.5.1-1ubuntu3 Suggests: javascript-common Filename: pool/main/y/yui3/libjs-yui3-common_3.5.1-1ubuntu3_all.deb Size: 172314 MD5sum: 38baa3c7b4b77b84dcf6a7ec5ffa61ad SHA1: ba1f23924eae2748535aace892b04d122752c2f7 SHA256: 080a4861c0655b3901e98f831f771ab97f5bf3727b5e512a106e049198fc2a72 Description: Yahoo User Interface Library v3 (common files) Homepage: http://developer.yahoo.com/yui/3/ Description-md5: 4960080d6c1488b99441c073af33c061 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libjs-yui3-debug Priority: optional Section: web Installed-Size: 7139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: yui3 Version: 3.5.1-1ubuntu3 Depends: libjs-yui3-common Suggests: javascript-common Filename: pool/main/y/yui3/libjs-yui3-debug_3.5.1-1ubuntu3_all.deb Size: 1361912 MD5sum: 636041459f354763ee157101254c7fb0 SHA1: 416342402e33422793e794899fbb33accab15fde SHA256: 36f52f099ea7a02a246c1ed14938729f84d0f21f76d9479c46fa5a1a2e477b27 Description: Yahoo User Interface Library v3 (debug files) Homepage: http://developer.yahoo.com/yui/3/ Description-md5: 60306f68bb183d5fadfe4a5f85133b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-yui3-doc Priority: optional Section: doc Installed-Size: 134659 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: yui3 Version: 3.5.1-1ubuntu3 Depends: libjs-yui3-min (= 3.5.1-1ubuntu3) Filename: pool/main/y/yui3/libjs-yui3-doc_3.5.1-1ubuntu3_all.deb Size: 27925138 MD5sum: e2d37d8d1002eff131b98e294b19e3a1 SHA1: 687ef985ce71a5fcaf7b6778e7931451d2c87e1b SHA256: 7a8046fe7d5e47d280673072ba38aa320f04acf75c11bf01b5bfbfcc57d3ccaf Description: Documentation and examples for the Yahoo User Interface Library v3 Homepage: http://developer.yahoo.com/yui/3/ Description-md5: c4db61fe92d2d7566985ecc817f462bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-yui3-full Priority: optional Section: web Installed-Size: 7187 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: yui3 Version: 3.5.1-1ubuntu3 Depends: libjs-yui3-common Suggests: javascript-common Filename: pool/main/y/yui3/libjs-yui3-full_3.5.1-1ubuntu3_all.deb Size: 1364184 MD5sum: c84ced570eb398c9a4010661c15397b8 SHA1: 1b4942eb399e7db985a776d43027d3b011feb20f SHA256: 5e659196d050b6c575b3dd345e0e75ce8c754b4b2ff4f817dfbc478ce68585f8 Description: Yahoo User Interface Library v3 (full, uncompressed files) Homepage: http://developer.yahoo.com/yui/3/ Description-md5: 7eba1f5e96ed5bbbf9f2d95433616851 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libjs-yui3-min Priority: optional Section: web Installed-Size: 2684 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: yui3 Version: 3.5.1-1ubuntu3 Depends: libjs-yui3-common Suggests: javascript-common Filename: pool/main/y/yui3/libjs-yui3-min_3.5.1-1ubuntu3_all.deb Size: 478712 MD5sum: ca1273a45df09ff171b3186d11045a29 SHA1: 28835f79389629cbd2eb632988ed178afe695b25 SHA256: 352bae085a2acf9a69f29f721a13f67470247fe3fe49e636840b46e330896b0c Description: Yahoo User Interface Library v3 (minified files) Homepage: http://developer.yahoo.com/yui/3/ Description-md5: e7decf9f0ec25aeda783e2498b7c73e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libjsch-java Priority: optional Section: devel Installed-Size: 2138 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jsch Version: 0.1.50-1ubuntu1 Filename: pool/main/j/jsch/libjsch-java_0.1.50-1ubuntu1_all.deb Size: 321256 MD5sum: ac424f8cbc50b9f88b7f834b270ee0e7 SHA1: 0506d4c5b4f787012c1fc7e94cc7ec9f89996d43 SHA256: b41c73147cb033e09d10179fba2ec540b42f7b2007a1ab5279692d3f3f0493d2 Description: Java implementation of the SSH2 protocol Homepage: http://www.jcraft.com/jsch/ Description-md5: 33dfa5404c0eb26cb5a3a4b05480dd10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjsch-java-doc Priority: optional Section: devel Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jsch Version: 0.1.50-1ubuntu1 Recommends: default-jdk-doc Filename: pool/main/j/jsch/libjsch-java-doc_0.1.50-1ubuntu1_all.deb Size: 51132 MD5sum: 9721b5b93c50131a95bb6e58f65fd67f SHA1: 5ee11548d79dbb644822a926e814b7de47a3bec1 SHA256: bb58ed0ee4a0d71eaf293d51b7740b07b838b7b0443009d7f27c6b89b89d01ad Description: Java implementation of the SSH2 protocol - documentation Homepage: http://www.jcraft.com/jsch/ Description-md5: 63b55112445f668c6e8800c4968c0088 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-c-dev Priority: extra Section: libdevel Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: amd64 Source: json-c Version: 0.11-3ubuntu1 Depends: libjson-c2 (= 0.11-3ubuntu1) Filename: pool/main/j/json-c/libjson-c-dev_0.11-3ubuntu1_amd64.deb Size: 34664 MD5sum: 7fd4343716662628dbce2634a04d2303 SHA1: ec41340ccf907442d9d053c7aaeb2d98b7e22978 SHA256: 2ce5f7db4eeeb77aadb3dafc1a40521eee45f92888cc2f581e8d28089c8fbde7 Description: JSON manipulation library - development files Multi-Arch: same Homepage: https://github.com/json-c/json-c/wiki Description-md5: 001edc84a96e6fae1bdabba649265f74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-c-doc Priority: extra Section: doc Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: all Source: json-c Version: 0.11-3ubuntu1 Depends: libjs-jquery Filename: pool/main/j/json-c/libjson-c-doc_0.11-3ubuntu1_all.deb Size: 15808 MD5sum: 373138ea1ee13db4eb3a4618e7d191ee SHA1: 66847deac88a8207bca77928d4d957e5e6a6fd43 SHA256: 4d5a8336aa1c87ac4897b33bdf7eaa269f8a297b8fc2fbf2f3b9f9a8ade84d68 Description: JSON manipulation library - documentation files Homepage: https://github.com/json-c/json-c/wiki Description-md5: f6161e4b0b31f974b052bc6d10f3eafc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-c2 Priority: required Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: amd64 Source: json-c Version: 0.11-3ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/j/json-c/libjson-c2_0.11-3ubuntu1_amd64.deb Size: 23838 MD5sum: e13811ea1ee1271d883745b7d4ac33f9 SHA1: 31397968cbadcc52c60ec1be843ae4e5db3f9831 SHA256: 2be4840458f022463a550192d1531259bd702ddc4d1f81a039758e3cea6ed124 Description: JSON manipulation library - shared library Multi-Arch: same Homepage: https://github.com/json-c/json-c/wiki Description-md5: ac049068ef755540cdb41614a65accbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libjson-c2-dbg Priority: extra Section: debug Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: amd64 Source: json-c Version: 0.11-3ubuntu1 Depends: libjson-c2 (= 0.11-3ubuntu1) Filename: pool/main/j/json-c/libjson-c2-dbg_0.11-3ubuntu1_amd64.deb Size: 34938 MD5sum: be4dcbab33aea391944ae1c1c3f077ec SHA1: 125c8f8d4481f4ff15ed3fa276de7b6605d16b44 SHA256: 76a1fcca93c77661352db94e1c56ff8f7b7c6081a3448d4237e4cba798850f43 Description: JSON manipulation library - debug symbols Multi-Arch: same Homepage: https://github.com/json-c/json-c/wiki Description-md5: efd16657bfcef4fd441a5da76e0cee70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-glib-1.0-0 Priority: optional Section: libs Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: json-glib Version: 0.16.2-1ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libjson-glib-1.0-common (>= 0.16.2-1ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/j/json-glib/libjson-glib-1.0-0_0.16.2-1ubuntu1_amd64.deb Size: 54574 MD5sum: bd81305a02529665fec0f88328392fad SHA1: 74f239e5f248d42a7b552822f2479ee8a0e27939 SHA256: e032f1b4117325ba8c8ab8cc34b8942c565269383a0402c4d910c22acd08e59b Description: GLib JSON manipulation library Multi-Arch: same Homepage: https://wiki.gnome.org/JsonGlib Description-md5: 53a96fd80b7925face0f32f0fe0f240f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-live, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjson-glib-1.0-0-dbg Priority: extra Section: libdevel Installed-Size: 616 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: json-glib Version: 0.16.2-1ubuntu1 Depends: libjson-glib-1.0-0 (= 0.16.2-1ubuntu1) Filename: pool/main/j/json-glib/libjson-glib-1.0-0-dbg_0.16.2-1ubuntu1_amd64.deb Size: 121046 MD5sum: 8c94ecf80e3456d2a3f1dbded90d4b5c SHA1: 41f33dba1cbd86424d20a5a6765301fe72090f5d SHA256: 661db39734206c498d25046a6064b6dd28d752c33a9b40f2978e29614402468e Description: GLib JSON manipulation library (debug symbols) Multi-Arch: same Homepage: https://wiki.gnome.org/JsonGlib Description-md5: a827b0e992aeb23b3bf89fcf5311979b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-glib-1.0-common Priority: optional Section: libs Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: json-glib Version: 0.16.2-1ubuntu1 Filename: pool/main/j/json-glib/libjson-glib-1.0-common_0.16.2-1ubuntu1_all.deb Size: 5722 MD5sum: 8c86f913d71e880c03be1c26a9167738 SHA1: 07a4d90a798591becafbc49e285be9dfbd3376e6 SHA256: 14190b0f5b15d382d8dac401b8b03b8edecb3a6d66b8abd4362d5956e3724d6d Description: GLib JSON manipulation library (common files) Multi-Arch: foreign Homepage: https://wiki.gnome.org/JsonGlib Description-md5: 44fe0ba19b2f3c2be6cb8f7ad693642f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-live, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjson-glib-dev Priority: optional Section: libdevel Installed-Size: 402 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: json-glib Version: 0.16.2-1ubuntu1 Depends: libjson-glib-1.0-0 (= 0.16.2-1ubuntu1), pkg-config, libglib2.0-dev, gir1.2-json-1.0 (= 0.16.2-1ubuntu1) Suggests: libjson-glib-doc Filename: pool/main/j/json-glib/libjson-glib-dev_0.16.2-1ubuntu1_amd64.deb Size: 23732 MD5sum: 88f26b4360e8155ce678041407f9ca0a SHA1: 18d104b37d99a050c77cc688ae492cb6c2de2023 SHA256: 2c63d11f0a71c74c7cfb9023cfbae594b7fb71f83f64562bb683823591da9bdb Description: GLib JSON manipulation library (development files) Homepage: https://wiki.gnome.org/JsonGlib Description-md5: c52c48b0cce50c9bd0620d26357460e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-glib-doc Priority: optional Section: doc Installed-Size: 820 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: json-glib Version: 0.16.2-1ubuntu1 Suggests: devhelp Filename: pool/main/j/json-glib/libjson-glib-doc_0.16.2-1ubuntu1_all.deb Size: 48808 MD5sum: 05d9ea743d41fbc4d06252671375658d SHA1: 9ad300347144dcf4d95a8b8944c475657e3eb014 SHA256: f6e08c9111943deffb36535c31643e15e064a89bf54330e75ae867475358037f Description: GLib JSON manipulation library (documentation) Homepage: https://wiki.gnome.org/JsonGlib Description-md5: 539f24e15c204394fc39f500e4e62a7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-perl Priority: optional Section: perl Installed-Size: 251 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.61-1 Depends: perl Recommends: libjson-xs-perl (>= 2.340) Suggests: perl (>= 5.13.9) | libjson-pp-perl Filename: pool/main/libj/libjson-perl/libjson-perl_2.61-1_all.deb Size: 94418 MD5sum: 9a2a374dbce9d264e24dd984c79a4af6 SHA1: 1371eff756cd84968158d0f703f05089eaffcaeb SHA256: 9dc5806ce49e27f1dfebd569c057a44d526a6c38882389dfa4068a6481344407 Description: module for manipulating JSON-formatted data Homepage: https://metacpan.org/release/JSON/ Description-md5: eb9867fc3fd81c9df2527bd3d80fcc49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libjson-xs-perl Priority: optional Section: perl Installed-Size: 229 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 2.340-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.14), libcommon-sense-perl Filename: pool/main/libj/libjson-xs-perl/libjson-xs-perl_2.340-1build1_amd64.deb Size: 84100 MD5sum: 40576b024a93348a116960b5f7e2d149 SHA1: 08a9f89e7bb1aa32e69a144b36101bc05a7f94f2 SHA256: 99a1fc8f3c5764262a72318d8cc6eda014336cf7f61245fa61e57449deb4c101 Description: module for manipulating JSON-formatted data (C/XS-accelerated) Homepage: https://metacpan.org/release/JSON-XS/ Description-md5: 86340713c4cc9ee648f8b8cd4a20ab7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libjson0 Priority: required Section: libs Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: amd64 Source: json-c Version: 0.11-3ubuntu1 Depends: libjson-c2 Filename: pool/main/j/json-c/libjson0_0.11-3ubuntu1_amd64.deb Size: 1018 MD5sum: 690daefd9e8225578ad2b89447c91bc1 SHA1: 49f1ef004eb7a141a55d4398a4bcacc8aff4643c SHA256: 43cc2f5d2329653052f70e24854587985fdc7b4f9871d175bfd10fd072f596ce Description: JSON manipulation library (transitional package) Multi-Arch: same Homepage: https://github.com/json-c/json-c/wiki Description-md5: 371ccf272cd2c882d38633a743e58c84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libjson0-dev Priority: extra Section: libdevel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: amd64 Source: json-c Version: 0.11-3ubuntu1 Depends: libjson-c-dev, libjson0 (= 0.11-3ubuntu1) Filename: pool/main/j/json-c/libjson0-dev_0.11-3ubuntu1_amd64.deb Size: 1150 MD5sum: 07f0dd6035e191334a3cfd98845ac3b9 SHA1: 7c6bd16082ed9fc86537fc76c0ca573caa089419 SHA256: 69485e527adb3c048fbb06edc65a6d20ef09d2894007c7df18eeef6ef6002f1c Description: JSON manipulation library (transitional package) Multi-Arch: same Homepage: https://github.com/json-c/json-c/wiki Description-md5: 371ccf272cd2c882d38633a743e58c84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjstl1.1-java Priority: optional Section: java Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jakarta-taglibs-standard Version: 1.1.2-2ubuntu1 Depends: libxalan2-java Filename: pool/main/j/jakarta-taglibs-standard/libjstl1.1-java_1.1.2-2ubuntu1_all.deb Size: 16818 MD5sum: 3cf4d35bfd88dfb860bd47e90a9198c9 SHA1: 01e18aaf68ad1d30fe419615e08635eb0a222edf SHA256: 85147e23c407c093da1992b47626329c526c9614e1b93b2222eccff60a18fe86 Description: JSP Standard Tag Library API v1.1 Reference Implementation Homepage: http://tomcat.apache.org/taglibs/standard/ Description-md5: 7f861765814e2964aecf1342d5f5ba36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libjte-dev Priority: extra Section: libdevel Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: amd64 Source: jigit Version: 1.19-2 Depends: zlib1g-dev, libbz2-dev, libjte1 (= 1.19-2) Filename: pool/main/j/jigit/libjte-dev_1.19-2_amd64.deb Size: 28596 MD5sum: 83f439bf8111ed7394b881896889456f SHA1: eeec65df4b752d88049c9c3bcc211710a9cebcdb SHA256: ac847c92d0d28918ec2ef46d86641c24487b8846dd68df96c07c59a28ee963a0 Description: Jigdo Template Export - development Homepage: http://www.einval.com/~steve/software/JTE/ Description-md5: a1c5c7fde938847b59806a67cd4ed454 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjte1 Priority: extra Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: amd64 Source: jigit Version: 1.19-2 Depends: libbz2-1.0, libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Filename: pool/main/j/jigit/libjte1_1.19-2_amd64.deb Size: 24878 MD5sum: a2b48eb1760f6b1067f90c2b5c472ffd SHA1: e3a213aefa66636d32a0712a85705f6de6e4e9a2 SHA256: 558d6f2aefa3e22f15a366a1739dd642c14392d03e67049a0e5bdf795383ed44 Description: Jigdo Template Export - runtime library Homepage: http://www.einval.com/~steve/software/JTE/ Description-md5: 2f1766f61e276fff22c3946ab550f0f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjunitperf-java Priority: optional Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: junitperf Version: 1.9.1-8ubuntu1 Depends: default-jre-headless | java1-runtime-headless | java2-runtime-headless | java5-runtime-headless | java6-runtime-headless, junit Suggests: libjunitperf-java-doc Filename: pool/main/j/junitperf/libjunitperf-java_1.9.1-8ubuntu1_all.deb Size: 17456 MD5sum: 75672de63c2403e9fad7cdc80cdcd30b SHA1: 0b9f6856204b9bfd0cc6560af46be084124bcb5f SHA256: 586183cde4812f3123a1f1de89169cf2e53cf42f749aeefc1b2945d1d7075eb7 Description: JUnit extensions for performance and scalability testing Homepage: http://www.clarkware.com/software/JUnitPerf.html Description-md5: a912447dc7a23778173c56041c5a857a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjunitperf-java-doc Priority: optional Section: libs Installed-Size: 322 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: junitperf Version: 1.9.1-8ubuntu1 Suggests: libjunitperf-java Filename: pool/main/j/junitperf/libjunitperf-java-doc_1.9.1-8ubuntu1_all.deb Size: 50960 MD5sum: 14b28a8023998f06a8cdc924446578f8 SHA1: 41e06ccfff65c6c5b2f77e5cb1c48a57672f3cfb SHA256: 2d6eaa8c2a591e5afb38337519dd6cc87777e4706ff5d0ad1aa14b43a19c56ea Description: Documentation for libjunitperf-java Homepage: http://www.clarkware.com/software/JUnitPerf.html Description-md5: 7120b3a8b27365a79742272ff71e66d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libk5crypto3 Priority: standard Section: libs Installed-Size: 302 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libkrb5support0 (>= 1.12~alpha1+dfsg) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Conflicts: libkrb53 Breaks: libgssapi-krb5-2 (<= 1.10+dfsg~alpha1), libkrb5-3 (<= 1.8~aa) Filename: pool/main/k/krb5/libk5crypto3_1.12+dfsg-2ubuntu4_amd64.deb Size: 79486 MD5sum: 6833d70b992284d8ea97ab72af4f6305 SHA1: f27975454f7e7ab38b2b68b62bd2d3c4a209830a SHA256: 6b03921797707f7b69aee89b82fa0db6935bd8f460f5c1f94ac3c6287bc0a2f7 Description: MIT Kerberos runtime libraries - Crypto Library Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 4b107bcb8481fee0b8b11744a386a6b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libkadm5clnt-mit9 Priority: optional Section: libs Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libcomerr2 (>= 1.01), libgssapi-krb5-2 (>= 1.10+dfsg~), libgssrpc4 (>= 1.6.dfsg.2), libk5crypto3 (>= 1.6.dfsg.2), libkrb5-3 (>= 1.8+dfsg), libkrb5support0 (>= 1.12~alpha1+dfsg) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Filename: pool/main/k/krb5/libkadm5clnt-mit9_1.12+dfsg-2ubuntu4_amd64.deb Size: 36120 MD5sum: 5a0e41668d4bd19556715cc3903b86ab SHA1: 1b82c7a86ca193ff739e7e7b8f736756745d2cd7 SHA256: bc05fee348af261724e9420d1d6ae435ca27a305cfe3f83e38737e03467d78a1 Description: MIT Kerberos runtime libraries - Administration Clients Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 8b2bac04328bfaffc8a1b6b57144cc9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkadm5clnt7-heimdal Priority: optional Section: libs Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.14), libcomerr2 (>= 1.01), libkrb5-26-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libkadm5clnt7-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 18432 MD5sum: a38083969055c651d85d515391cf2442 SHA1: 1cad7480f8eae63583e3d98b26bfdd4e18901720 SHA256: 252dcd23729327060cc73635c086b5741130cad162359bbc6524df74108f8921 Description: Heimdal Kerberos - kadmin client library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 3c1990ad00253301ad106a775a259242 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkadm5srv-mit8 Priority: extra Section: oldlibs Installed-Size: 2646 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: all Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libkadm5srv-mit9 Filename: pool/main/k/krb5/libkadm5srv-mit8_1.12+dfsg-2ubuntu4_all.deb Size: 12136 MD5sum: 2f40fd79c87406ecb0a54ab395c892ad SHA1: 7986e86e94d6004e617c718f6ddfb253f7efb5a2 SHA256: 71a4fb102396e7f6421c0033566988909d9314e340ab011b45b4cc9b639e3e1e Description: transitional dummy package for libkadm5srv-mit9 Homepage: http://web.mit.edu/kerberos/ Description-md5: 186b2a1b5e18665ded21f4fa90d21876 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkadm5srv-mit9 Priority: optional Section: libs Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libcomerr2 (>= 1.01), libgssapi-krb5-2 (>= 1.6.dfsg.2), libgssrpc4 (>= 1.6.dfsg.2), libk5crypto3 (>= 1.6.dfsg.2), libkdb5-7, libkrb5-3 (>= 1.9+dfsg~beta1), libkrb5support0 (>= 1.12~alpha1+dfsg) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Filename: pool/main/k/krb5/libkadm5srv-mit9_1.12+dfsg-2ubuntu4_amd64.deb Size: 50212 MD5sum: 4caf5b8636288094723c409fe133b0bd SHA1: 56e06b434a9862d7bdf84927bc42e0377d5351f4 SHA256: 55168fd9b4709ced63ad4d04ff100443db6d5cd1cafb739bb1a5e9ff183e64c9 Description: MIT Kerberos runtime libraries - KDC and Admin Server Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 34bc9a3bc5f24d8493ce16a753dc317d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkadm5srv8-heimdal Priority: optional Section: libs Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.14), libcomerr2 (>= 1.01), libhdb9-heimdal (>= 1.6~git20120311), libkrb5-26-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.6~git20131117) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libkadm5srv8-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 28758 MD5sum: aeb9dfa24d35630e0d1c9330a3d2c221 SHA1: c105dbf6bef6e88a2d0a2524478b533680685a70 SHA256: 143a87893e9a6e181b1713d1e40999c7587660c2cb5d24c03ae422ac1073d6d2 Description: Libraries for Heimdal Kerberos Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 3cfc4abf46cb966d202e4c7e1c50b12f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkafs0-heimdal Priority: extra Section: libs Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.14), libkrb5-26-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libkafs0-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 15080 MD5sum: 4954a7d8b66f4c3629e929976a5a4511 SHA1: 0b05a5abf0120f7142f264a5b695a2cb208a7811 SHA256: ffa78e005b40af32f3176f9fd61aa8137b4a55a9d83d4edabbdf5907316f8507 Description: Heimdal Kerberos - KAFS support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 7fd30de3adb996e1ddb2c382f4ce4994 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkcmutils4 Priority: optional Section: libs Installed-Size: 465 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkcmutils4_4.13.0-0ubuntu1_amd64.deb Size: 92096 MD5sum: 0f3860b9583d98af4b2b09684dcf07cc SHA1: 5ae273f12025ec9bdb6bc606e70d91ae548f2c98 SHA256: 25c10f771c7ac216d244b832f61da3a049910964b4ce0d5d8357d3ea09fd8e34 Description: utility classes for using KCM modules Homepage: http://www.kde.org/ Description-md5: 0664b9af20b96f1c42e9dc3e04e67da4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdb5-7 Priority: optional Section: libs Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Replaces: libkadm5srv-mit8 (<< 1.11+dfsg~) Depends: libc6 (>= 2.14), libcomerr2 (>= 1.01), libgssrpc4 (>= 1.7dfsg~alpha1), libk5crypto3 (>= 1.7+dfsg), libkrb5-3 (>= 1.11+dfsg), libkrb5support0 (>= 1.12~alpha1+dfsg) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Breaks: libkadm5srv-mit8 (<< 1.11+dfsg~) Filename: pool/main/k/krb5/libkdb5-7_1.12+dfsg-2ubuntu4_amd64.deb Size: 36232 MD5sum: 232605ab198ca6ec9a43b5ce2c5bbc24 SHA1: 234d2451185d7968c11a4f2035954e46b91c6e7b SHA256: bba3d579ef135809c013b79107c31f3c5fe74740c3577e34ded3ec49f1b2a4ba Description: MIT Kerberos runtime libraries - Kerberos database Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 339dba7d5a44f05699e73cc493c3def3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkdc2-heimdal Priority: extra Section: libs Installed-Size: 209 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libasn1-8-heimdal (>= 1.6~git20120311g), libc6 (>= 2.14), libhcrypto4-heimdal (>= 1.4.0+git20110226), libhdb9-heimdal (>= 1.6~git20120311), libheimntlm0-heimdal (>= 1.4.0+git20110226), libhx509-5-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.6~git20131117), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libkdc2-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 52720 MD5sum: 6d5dfe0d5fe807b9f3615988559bb09d SHA1: 04a8453b0bfb8f70d16894d8b58f44c12d227bd7 SHA256: 1b161f62b3c25f4cbb36c45fd8ddf5c99049358e9e67ca714fc4b80ef03900b1 Description: Heimdal Kerberos - KDC support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 7c163bb7ff65758ba803f34784537f56 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libkde3support4 Priority: optional Section: libs Installed-Size: 1311 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.15), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libkpty4 (= 4:4.13.0-0ubuntu1), libqt4-qt3support (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.8.0), libstdc++6 (>= 4.4.0), libx11-6 Filename: pool/main/k/kde4libs/libkde3support4_4.13.0-0ubuntu1_amd64.deb Size: 295186 MD5sum: b3b8ea953b7853a3129d70833d728121 SHA1: 94a97684283a589093fbabc209e2509ac76c3593 SHA256: 3f1a701fda9c2e4ec75bf46d12d583f9ed706283011780aa853f0c10ca40c049 Description: KDE 3 Support Library for the KDE 4 Platform Homepage: http://www.kde.org/ Description-md5: 991cc7b40c4c49f2141dd24fe02e64be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdeclarative5 Priority: optional Section: libs Installed-Size: 258 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-declarative (>= 4:4.8.0), libqt4-script (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkdeclarative5_4.13.0-0ubuntu1_amd64.deb Size: 38370 MD5sum: c706f7a26dbb539be71684568e4311b6 SHA1: 11619cc4f36e119a070ad8e60266616777c7f8f9 SHA256: 043c9ef2628f015b1c8e78c5041502813d40486101ff4e06f61d1f016e0a97c9 Description: declarative library for plasma Homepage: http://www.kde.org/ Description-md5: 68aa12fd756ea17a2040ffb30a42f8ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdecore5 Priority: optional Section: libs Installed-Size: 3333 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libbz2-1.0, libc6 (>= 2.15), libdlrestrictions1 (>= 0.14), libgcc1 (>= 1:4.1.1), liblzma5 (>= 5.1.1alpha+20120614), libqt4-dbus (>= 4:4.7.0), libqt4-network (>= 4:4.8.0), libqtcore4 (>= 4:4.8.0), libstdc++6 (>= 4.4.0), zlib1g (>= 1:1.1.4) Filename: pool/main/k/kde4libs/libkdecore5_4.13.0-0ubuntu1_amd64.deb Size: 895956 MD5sum: 5acda785b696a9dd7b7b7c8ec43b2640 SHA1: a815fb867bf0568b42d88ac8f71f9930a047b24b SHA256: 6bde6d6fb263ec4e3c19fd4e2b89d845eabccecada8a9b40dc6f0abb93e5cafd Description: KDE Platform Core Library Homepage: http://www.kde.org/ Description-md5: 63b72d99622f0f39483e2857c12b1ce7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdesu5 Priority: optional Section: libs Installed-Size: 308 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.15), libkdecore5 (= 4:4.13.0-0ubuntu1), libkpty4 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1), xauth Filename: pool/main/k/kde4libs/libkdesu5_4.13.0-0ubuntu1_amd64.deb Size: 50828 MD5sum: 3442893a59d225c1fd186ee7ca23b51f SHA1: d4e2e805ee4001196004ae7a75413c3301fb256f SHA256: abdde3dfed940e10a9bc53d5ec489063db374afe1ba36eafab8f753955267101 Description: Console-mode Authentication Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: b0a8912323d2acc159aee09909172425 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdeui5 Priority: optional Section: libs Installed-Size: 4975 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libattica0.4 (>= 0.4.2), libc6 (>= 2.14), libdbusmenu-qt2, libice6 (>= 1:1.0.0), libkdecore5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqt4-network (>= 4:4.7.0), libqt4-svg (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.8.0), libsm6, libstdc++6 (>= 4.1.1), libx11-6, libxfixes3, libxrender1 Recommends: kdelibs5-data (>= 4:4.13.0-0ubuntu1) Suggests: hspell Filename: pool/main/k/kde4libs/libkdeui5_4.13.0-0ubuntu1_amd64.deb Size: 1262116 MD5sum: c3c44723370843f10bcd50fe7977f490 SHA1: 6677044496be54516adf6e016eadd561754ce1aa SHA256: 3fc6ede8b6f9f20d1653b5ef835a82dd6fe0388a915a58924b18bf5c75468a9c Description: KDE Platform User Interface Library Homepage: http://www.kde.org/ Description-md5: dd888935d1059e0ffd266016dcabd53c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdewebkit5 Priority: optional Section: libs Installed-Size: 345 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libqt4-network (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libqtwebkit4, libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkdewebkit5_4.13.0-0ubuntu1_amd64.deb Size: 61698 MD5sum: b1e34bffad1e732b5b46ab6481851f77 SHA1: b14ebe33805c4e2d5b289080eccc34243830d19f SHA256: eaf94965200f73b75d388de392f543c2ca9ca85f7e49f92a3c8f3a13b548488b Description: KDE WebKit Library Homepage: http://www.kde.org/ Description-md5: 37f74b24ea041b93eceb237236a38db3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdnssd4 Priority: optional Section: libs Installed-Size: 370 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqt4-network (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkdnssd4_4.13.0-0ubuntu1_amd64.deb Size: 66042 MD5sum: d21a4a6dedc7464d4607bcf965cc6642 SHA1: 86be53acc0bb84efe24e4a60b47ab68d9b3f4cea SHA256: 07e4784b51623a3e905f93df5f31fb2e87a453d7ed28aae7bc5117467902801a Description: DNS-SD Protocol Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: a67f398f302ac7c437c2db6660c0cb5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkemoticons4 Priority: optional Section: libs Installed-Size: 269 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkemoticons4_4.13.0-0ubuntu1_amd64.deb Size: 41382 MD5sum: 71b617a76bc4a30f8e46191e105070a2 SHA1: 85f97ae967edb768b0aed23ee74ff6bb3c47d184 SHA256: 8939c464358a6f51773baa7751623e3c7ce2a2b51eedd3f71542b2a33d686784 Description: utility classes to deal with emoticon themes Homepage: http://www.kde.org/ Description-md5: cae26d9220ef55bb5d93e6e50aaabbeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkeyutils-dev Priority: optional Section: misc Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: amd64 Source: keyutils Version: 1.5.6-1 Depends: libkeyutils1 (= 1.5.6-1) Filename: pool/main/k/keyutils/libkeyutils-dev_1.5.6-1_amd64.deb Size: 29398 MD5sum: 352d55b8d736c0dc9fd03791a9c6f051 SHA1: ac738d01c866291c453d9c220daaefde52dbc56d SHA256: 58fc7adec996b13843c34308d6585c7e551ae274e62b2c4a63ee581948a1e378 Description: Linux Key Management Utilities (development) Homepage: http://people.redhat.com/~dhowells/keyutils/ Description-md5: 778cf76cde69933bd711c1050360f519 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkeyutils1 Priority: standard Section: misc Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: amd64 Source: keyutils Version: 1.5.6-1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/k/keyutils/libkeyutils1_1.5.6-1_amd64.deb Size: 7318 MD5sum: 637898cd4bbfa39e55993e6e69c5ef2e SHA1: 9f38a6d5d43c2d70a031034668f4989cc9c5eb56 SHA256: 1ea032b0259f570d9189c8e776384445149b8ae5599d4b8d6c71a958caaf993c Description: Linux Key Management Utilities (library) Multi-Arch: same Homepage: http://people.redhat.com/~dhowells/keyutils/ Description-md5: 5c4d88a0a818e5ef897f2a9fa5c3ac2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libkfile4 Priority: optional Section: libs Installed-Size: 917 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.8.0), libsolid4 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1), libxrender1 Filename: pool/main/k/kde4libs/libkfile4_4.13.0-0ubuntu1_amd64.deb Size: 216036 MD5sum: f9e7f90d4ca5d99cfbd3f8059087ce91 SHA1: 8a004c481ab4cb18e21ed62ba8a20bed2671a7a1 SHA256: 018a46e54ea2b458c0e0781f94f4bbe3b840f04b8b83effa892a7217f06ea605 Description: File Selection Dialog Library for KDE Platform Homepage: http://www.kde.org/ Description-md5: ca6120f48cf645c62bd18c493fa976ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkhtml5 Priority: optional Section: libs Installed-Size: 8312 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgif4 (>= 4.1.4), libjpeg8 (>= 8c), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkjsapi4 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libktexteditor4 (= 4:4.13.0-0ubuntu1), libphonon4 (>= 4:4.6.0really4.4.3), libpng12-0 (>= 1.2.13-4), libqt4-dbus (>= 4:4.7.0), libqt4-network (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1), libx11-6, zlib1g (>= 1:1.1.4) Suggests: kdelibs5-plugins (= 4:4.13.0-0ubuntu1) Filename: pool/main/k/kde4libs/libkhtml5_4.13.0-0ubuntu1_amd64.deb Size: 1913710 MD5sum: af77ee8e6d4c38209501790e2c5bb5fd SHA1: c6c62b0b1c626951a624bf198463370734d631a7 SHA256: 699cf18b6d09b089e3d8427b90498dcf4cd84b1e5b10d9a1e9869f70aa80ee8d Description: KHTML Web Content Rendering Engine Homepage: http://www.kde.org/ Description-md5: 6fdc11e326da0a1bd495dcdc96640c27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkidletime4 Priority: optional Section: libs Installed-Size: 257 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1), libx11-6, libxext6, libxss1 Filename: pool/main/k/kde4libs/libkidletime4_4.13.0-0ubuntu1_amd64.deb Size: 37352 MD5sum: 963457f6aff21caa38433d59ead1b63b SHA1: 225aa02fc8940fd9c54117da360e7b8d326296ea SHA256: cf9a260cdc91054bc9eccadb1a7a59220ceccb1068b5c7995916c67fabb4ba8b Description: library to provide information about idle time Homepage: http://www.kde.org/ Description-md5: 5eb21e2d5fd8b18292c2b04164cbd62f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkimproxy4 Priority: optional Section: libs Installed-Size: 281 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkimproxy4_4.13.0-0ubuntu1_amd64.deb Size: 44198 MD5sum: 74aec518c01f49ffe9c4b22d512868a2 SHA1: 04e39cc3bb8c59e684d44970e20babfbf3f61370 SHA256: 6e2ff2cc7b39012535bd344cee2254accbbabbe3ca4d6b45efc27b8343b76aaa Description: Instant Messaging Interface Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: 68e45e2a7240f7aa539c55fa9670181b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkio5 Priority: optional Section: libs Installed-Size: 3165 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libacl1 (>= 2.2.51-8), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqt4-network (>= 4:4.8.0), libqt4-svg (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libsolid4 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1), libstreamanalyzer0 (>= 0.7.8), libx11-6, libxrender1 Suggests: kdelibs5-plugins (= 4:4.13.0-0ubuntu1) Filename: pool/main/k/kde4libs/libkio5_4.13.0-0ubuntu1_amd64.deb Size: 825444 MD5sum: b1fe4688658b14fc2cced08a68965c3d SHA1: 9cf3551c2b16fa301cb6acd1b55842edb337b17b SHA256: 734ed89018a17ed3c90f0819490e55052b2a76a168b96a136c3f77b2e95d6377 Description: Network-enabled File Management Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: f9d64e3dda3bf4c061b02623b14ed159 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkjsapi4 Priority: optional Section: libs Installed-Size: 1132 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libpcre3, libqtcore4 (>= 4:4.7.0), libstdc++6 (>= 4.2.1) Filename: pool/main/k/kde4libs/libkjsapi4_4.13.0-0ubuntu1_amd64.deb Size: 258266 MD5sum: 082e5b8aa3b56c0f82115e560b386882 SHA1: 441d96e870fe4783ffe88fc12e9e67c482af37e4 SHA256: 9e7f6653eb5fd3d530cf3f51524eca7c75d7de4c1e23b8e955adf3f429a06165 Description: KJS API Library for the KDE Development Platform Homepage: http://www.kde.org/ Description-md5: ef5d36e5444d0736d01d3dc877117014 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkjsembed4 Priority: optional Section: libs Installed-Size: 1370 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libkdecore5 (= 4:4.13.0-0ubuntu1), libkjsapi4 (= 4:4.13.0-0ubuntu1), libqt4-svg (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkjsembed4_4.13.0-0ubuntu1_amd64.deb Size: 301638 MD5sum: 925bc5388f779b4353d49ad6dd757eef SHA1: 8bd5af2357af09b2258b7ea759e8c6146e796217 SHA256: 19d39e4973aec36c8378422fb266ad8ae31bba85f59edf2dbd89b15411dabac3 Description: library for binding JavaScript objects to QObjects Homepage: http://www.kde.org/ Description-md5: 7d592f95900bcda9ed863557c464d5cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libklibc Priority: required Section: libs Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: maximilian attems Architecture: amd64 Source: klibc Version: 2.0.3-0ubuntu1 Filename: pool/main/k/klibc/libklibc_2.0.3-0ubuntu1_amd64.deb Size: 40480 MD5sum: 0a3963d5ab15c7383794ed8f79ab12f8 SHA1: b985d563ac55e23b48b5c26fb7410f139b2291d8 SHA256: 3a4e4f14c14dcf3aa203d025f5e22a7ef1d07025252b5ae633529341cb45de70 Description: minimal libc subset for use with initramfs Homepage: http://git.kernel.org/?p=libs/klibc/klibc.git;a=summary Description-md5: c02e596a4e5bef99d28f7ec64ab27758 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libklibc-dev Priority: optional Section: libdevel Installed-Size: 1209 Maintainer: Ubuntu Developers Original-Maintainer: maximilian attems Architecture: amd64 Source: klibc Version: 2.0.3-0ubuntu1 Depends: libklibc (= 2.0.3-0ubuntu1), linux-libc-dev Filename: pool/main/k/klibc/libklibc-dev_2.0.3-0ubuntu1_amd64.deb Size: 129602 MD5sum: b9489338281195c68283b863a9c0bd47 SHA1: 4092557776e702c8d93dd5c37da4770fdc7c0aea SHA256: a7fd6a36fa46fc17656ce15555384c8f5281d0f297b54223d4ad9edf06c3042e Description: kernel headers used during the build of klibc Homepage: http://git.kernel.org/?p=libs/klibc/klibc.git;a=summary Description-md5: 30c8838ae54b41f0da91eb0d0c35f700 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libklu1.2.1 Priority: optional Section: libs Installed-Size: 227 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libamd2.3.1, libbtf1.2.0, libc6 (>= 2.2.5), libcolamd2.8.0 Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libklu1.2.1_4.2.1-3ubuntu1_amd64.deb Size: 68812 MD5sum: d2efc75921a9f41221f70575f70c1cf1 SHA1: df8c49e96d7246b978e3ec714fc45675d81d7eb8 SHA256: ea955c2a0cc9aaef6f8aa20de9241ebc872493c97bea5f0cb1e912a581ffe485 Description: circuit simulation sparse LU factorization library Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 870630b1bc7130d951e1bb1f2f3281de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkmediaplayer4 Priority: optional Section: libs Installed-Size: 246 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libkdeui5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkmediaplayer4_4.13.0-0ubuntu1_amd64.deb Size: 29198 MD5sum: b74a556263b25c4f1767e145e41f9f79 SHA1: 635353a579cf8309d7a2fb18ad9ff281a923bae5 SHA256: 8857e9f1e2cf67ef2b142c740d122a2851549943a7862f09048074dac06967e4 Description: KMediaPlayer Interface for the KDE Platform Homepage: http://www.kde.org/ Description-md5: 41939bc408f0c531de5f851dcf989514 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkmod-dev Priority: optional Section: libdevel Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: amd64 Source: kmod Version: 15-0ubuntu6 Depends: libkmod2 (= 15-0ubuntu6) Filename: pool/main/k/kmod/libkmod-dev_15-0ubuntu6_amd64.deb Size: 4094 MD5sum: 4a5c398765959892800615556a2a291a SHA1: 0a378d0820c28fd11fe574b396ea0b29e2c57f17 SHA256: ba71fd0db17bf79366a6751b74e2bac672b49b3c2942320f42790034d871f380 Description: libkmod development files Multi-Arch: same Description-md5: d05b96c5ea92d4587ad0abe33b518fb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkmod2 Priority: required Section: libs Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: amd64 Source: kmod Version: 15-0ubuntu6 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/k/kmod/libkmod2_15-0ubuntu6_amd64.deb Size: 38120 MD5sum: f77c1300971f8a942d2feb6aa7d64961 SHA1: a37aabdca6cd717f02522416916b692db8bc8b82 SHA256: 24f2f9a1a4ef12a86c7f1c7d97c7acc5e9ddb550e5a1d8457f6dc70d4dfed95e Description: libkmod shared library Multi-Arch: same Description-md5: e60216aabe72168f06218f037958581e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libknewstuff2-4 Priority: optional Section: libs Installed-Size: 600 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqt4-network (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Recommends: kdelibs5-data (= 4:4.13.0-0ubuntu1), gnupg Filename: pool/main/k/kde4libs/libknewstuff2-4_4.13.0-0ubuntu1_amd64.deb Size: 131706 MD5sum: f6fb2dbf9354adaa91fff503ee7ab6db SHA1: c87c85bed12fc6e2d82349a89e116a688f70dd00 SHA256: dca62c3a06669e01bcea527832286d01505830e8e2b9b5e554d68e89d610fa31 Description: "Get Hot New Stuff" v2 Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: 3b60147847daf44fbccfb1a682258447 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libknewstuff3-4 Priority: optional Section: libs Installed-Size: 666 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libattica0.4 (>= 0.4.2), libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Recommends: kdelibs5-data (= 4:4.13.0-0ubuntu1), gnupg Filename: pool/main/k/kde4libs/libknewstuff3-4_4.13.0-0ubuntu1_amd64.deb Size: 150400 MD5sum: 5afcd8243d68f96be5fa24f1f23a3924 SHA1: e4299b5ea190e35db94c1d8e434cf53cc5cac355 SHA256: f8d533241942cb71189a74de52b28ec351fed5cd58edbe8cccc02459505ec292 Description: "Get Hot New Stuff" v3 Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: f38a1ea642d10041b05d41abd81c1721 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libknotifyconfig4 Priority: optional Section: libs Installed-Size: 270 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libphonon4 (>= 4:4.6.0really4.3.80), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libknotifyconfig4_4.13.0-0ubuntu1_amd64.deb Size: 39260 MD5sum: 84025ccc9bcbb40ee8f60759d35b8923 SHA1: 5ea3f91cf5e6445cf4e737282f21f900cc3ef508 SHA256: f5d5a1d9299fa57a34ed03e00cce9475ef88f1008bf5293f1e23dc8f080baecc Description: library for configuring KDE Notifications Homepage: http://www.kde.org/ Description-md5: 92a159564b8bead16419278ef73c0269 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkntlm4 Priority: optional Section: libs Installed-Size: 220 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0) Filename: pool/main/k/kde4libs/libkntlm4_4.13.0-0ubuntu1_amd64.deb Size: 28496 MD5sum: ad4e3056ae66c5f3816f37d0c037a936 SHA1: 12a890752c3f522839e4688d28a89a9295b8e166 SHA256: 23a250d36a225fad68a58380f9132e4e0f6e6e76881b46fc4d323227528832c0 Description: NTLM Authentication Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: a4c2aefaa45147ea6933464366053951 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkparts4 Priority: optional Section: libs Installed-Size: 595 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libnepomukutils4 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkparts4_4.13.0-0ubuntu1_amd64.deb Size: 117476 MD5sum: e0acdde26efa3136ad8c7ffcbc327ee2 SHA1: f0015ad621f05bb144d12fea05c4e851e12e89de SHA256: d339509708611da2fe03c2906bd51d3d63f671c917510249ad6f548c14b9dddb Description: Framework for the KDE Platform Graphical Components Homepage: http://www.kde.org/ Description-md5: 98c676da683b1bb14ce3b6e59252a0bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkpathsea-dev Priority: optional Section: libdevel Installed-Size: 507 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: amd64 Source: texlive-bin Version: 2013.20130729.30972-2build3 Depends: libkpathsea6 (= 2013.20130729.30972-2build3) Filename: pool/main/t/texlive-bin/libkpathsea-dev_2013.20130729.30972-2build3_amd64.deb Size: 76916 MD5sum: d95d7c79584550a69409d8bcecff8bec SHA1: c8ac4d973282242917b3441cc873ad00c82f9ab1 SHA256: 7bb6d1fba70fc6507727610fe453285ac732edc4dddd7f1d3ccc89c34c24523a Description: TeX Live: path search library for TeX (development part) Homepage: http://www.tug.org/texlive/ Description-md5: 1e9ba572a4c4eefc4119b22ef8941c6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkpathsea6 Priority: optional Section: libs Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: amd64 Source: texlive-bin Version: 2013.20130729.30972-2build3 Depends: libc6 (>= 2.4) Breaks: texlive-base (<< 2013), texlive-binaries (<< 2013) Filename: pool/main/t/texlive-bin/libkpathsea6_2013.20130729.30972-2build3_amd64.deb Size: 63484 MD5sum: 7490f12848fef06ae111f88e702d48f7 SHA1: d2e01d94e012e8cffef8fc497f95c6a08e015967 SHA256: 236ff15c82f0c86e50e1c6eb47d617732066ab78a94182161e76b74d0980831c Description: TeX Live: path search library for TeX (runtime part) Homepage: http://www.tug.org/texlive/ Description-md5: fba2c2a902ad5d09ffef5a04264e4bab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libkprintutils4 Priority: optional Section: libs Installed-Size: 225 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkprintutils4_4.13.0-0ubuntu1_amd64.deb Size: 27934 MD5sum: 81d495d2ebf40d9665892fb6547db0a6 SHA1: 5780b835e700698a0708402d979321094bf7226a SHA256: 4ac9f3aab9d889b86769b600d6fc10e01a12d5df7782e1272b65dd6921f469dc Description: utility classes to deal with printing Homepage: http://www.kde.org/ Description-md5: fd3d73f26788fb553bf5c5fc82981d77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libkpty4 Priority: optional Section: libs Installed-Size: 239 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.15), libkdecore5 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1), libutempter0 (>= 1.1.5) Filename: pool/main/k/kde4libs/libkpty4_4.13.0-0ubuntu1_amd64.deb Size: 32698 MD5sum: d0dbb348691bae5d2983fe56000ba77d SHA1: 657ef4189f75375b93a5f4f8a39a6253f335b635 SHA256: 033a9fa03bf6534620d6d4a275296639485c310f20ff3eee9466a65ab7d18763 Description: Pseudo Terminal Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: 88650c0f22bb7f0ec349c0b6cf39f941 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkrad-dev Priority: extra Section: libdevel Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Replaces: libkrb5-dev (<< 1.12+dfsg-2) Depends: libkrad0 (= 1.12+dfsg-2ubuntu4), comerr-dev, libverto-dev (>= 0.2.4) Suggests: libkrb5-dev Breaks: krb5-multidev (<< 1.12+dfsg-2), libkrb5-dev (<< 1.12+dfsg-2) Filename: pool/main/k/krb5/libkrad-dev_1.12+dfsg-2ubuntu4_amd64.deb Size: 11890 MD5sum: 4a358f60056262aaddd817835bb53982 SHA1: d3c45cdf4aaf72b6a441244f6c6db52dfca5e81e SHA256: 888de93ff83541b9e6941538ab415acb4ccc0ae082239ab3755043a1e624bbaf Description: MIT Kerberos RADIUS Library Development Homepage: http://web.mit.edu/kerberos/ Description-md5: f22135e65145d2c1d4adf7a6dc4266ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkrad0 Priority: optional Section: libs Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libk5crypto3 (>= 1.8+dfsg), libkrb5-3 (>= 1.6.dfsg.2), libverto1 (>= 0.2.4) Pre-Depends: multiarch-support Filename: pool/main/k/krb5/libkrad0_1.12+dfsg-2ubuntu4_amd64.deb Size: 20978 MD5sum: 2cb53814242c0dc22d5e642cde8d37c2 SHA1: 64a5b149d6f5c97eaba1715e5478d091f027d1f9 SHA256: 73941b684a1bd4aa2d5ace577c5cfeba0cef65b1565e7399375e6f28d49ea7d2 Description: MIT Kerberos runtime libraries - RADIUS library Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 2d2f7517dcfd02118262a7f5e45301dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkrb5-26-heimdal Priority: standard Section: libs Installed-Size: 649 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libasn1-8-heimdal (>= 1.6~git20131117), libc6 (>= 2.15), libcomerr2 (>= 1.41.11), libhcrypto4-heimdal (>= 1.4.0+git20110226), libheimbase1-heimdal (>= 1.6~git20131117), libhx509-5-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.6~git20131117), libsqlite3-0 (>= 3.5.9), libwind0-heimdal (>= 1.6~git20120311) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libkrb5-26-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 196532 MD5sum: 0fa378fb1a3b8f0c773a1b747a86f278 SHA1: a855dca24b41edf2b9af9f32b4bd1abc6a573944 SHA256: a338e08a24e23ef9bde83cdd86b1d9c764e6027afda0dc02e5ae541ebe4d340d Description: Heimdal Kerberos - libraries Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: c0c6ca8d74b4d950b5eaf9fb966ab142 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libkrb5-3 Priority: standard Section: libs Installed-Size: 986 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.16), libcomerr2 (>= 1.34), libk5crypto3 (>= 1.9+dfsg~beta1), libkeyutils1, libkrb5support0 (= 1.12+dfsg-2ubuntu4) Pre-Depends: multiarch-support Recommends: krb5-locales Suggests: krb5-doc, krb5-user Conflicts: libkrb53 Breaks: libsmbclient (<= 2:3.6.1-2), sssd (<= 1.2.1-4.3) Filename: pool/main/k/krb5/libkrb5-3_1.12+dfsg-2ubuntu4_amd64.deb Size: 261850 MD5sum: 15df3138bf42685e7d89a6df2bb08aa9 SHA1: 865af8d1302eb034e8e37f626e3787dd7329df04 SHA256: 0541a445b2e707bbf88c6b10e8ab1fda624f3ffd8e2899382a5924102745a963 Description: MIT Kerberos runtime libraries Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 07bb931a85fb24c6a0ef0f62a94bb26c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libkrb5-dbg Priority: extra Section: debug Installed-Size: 7039 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libkrb5-3 (= 1.12+dfsg-2ubuntu4) | libk5crypto3 (= 1.12+dfsg-2ubuntu4) | libkrb5support0 (= 1.12+dfsg-2ubuntu4) Filename: pool/main/k/krb5/libkrb5-dbg_1.12+dfsg-2ubuntu4_amd64.deb Size: 1465076 MD5sum: 63da24f817e40261b819ba4c2fe57639 SHA1: 6447384ad4dac8d795d3d94437a5169e576a09fb SHA256: aef8e7aad95e48176d65edeeb466658ad6bbae1caadcee4077b93f11971135fd Description: Debugging files for MIT Kerberos Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 5a4b785ef1af9c8f242b4f1a2d5710a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkrb5-dev Priority: extra Section: libdevel Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Replaces: krb5-multidev (<< 1.8+dfsg~alpha1-3) Depends: krb5-multidev (= 1.12+dfsg-2ubuntu4) Suggests: krb5-doc Conflicts: heimdal-dev Filename: pool/main/k/krb5/libkrb5-dev_1.12+dfsg-2ubuntu4_amd64.deb Size: 14420 MD5sum: 4af8366d8538c58357516ac867546911 SHA1: 62910541e0f80ba83a28acd0c8e9f0169e37a852 SHA256: aa9e29d7d6e35ead78b4a86f4bf6313e94e0e7c24de225370672ce63862d76c0 Description: Headers and development libraries for MIT Kerberos Homepage: http://web.mit.edu/kerberos/ Description-md5: 2ab394392864dbbc72c409c7aec58377 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkrb5support0 Priority: standard Section: libs Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libkrb53 Filename: pool/main/k/krb5/libkrb5support0_1.12+dfsg-2ubuntu4_amd64.deb Size: 29508 MD5sum: 9c8d8071c58d4a043e8b33ec8de3b997 SHA1: 3c6e7f5277eb2517ca77e12bac6c426d1c7bb772 SHA256: d12fd3fe60b70a7b8342fcc6afb32498554916c7581a8c27cb1f1bc65564824b Description: MIT Kerberos runtime libraries - Support library Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 4f3abf66dd7bfd20406fc400a05b0693 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libkrosscore4 Priority: optional Section: libs Installed-Size: 324 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-script (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkrosscore4_4.13.0-0ubuntu1_amd64.deb Size: 55792 MD5sum: 47c0330a2173f6d61b3508c25f600df7 SHA1: d4daa00eb78e7a29ccae4d9412f023dc12d81109 SHA256: 2b4a96ee39d27b98a5ce919771b454ac1b9cc6344cfe437dedee9bef3f40145e Description: Kross Core Library Homepage: http://kross.dipe.org Description-md5: 36901388f1fca67e2a2b0d8491d66b2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkrossui4 Priority: optional Section: libs Installed-Size: 326 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libkrosscore4 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkrossui4_4.13.0-0ubuntu1_amd64.deb Size: 51882 MD5sum: 5fe1a86a8c7081f30e77192e25a41991 SHA1: f150587f034ad6887915867cf2cde1f4d3df5f10 SHA256: 6d1f68c89eeccd6598c5123f87076f7e5b34704606eda6b5f027ea6eac75e5b2 Description: Kross UI Library Homepage: http://kross.dipe.org Description-md5: 299663dd13172b62a97dba0a445d9342 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active, kubuntu-active-full, kubuntu-active, ubuntustudio-graphics Package: libksba-dev Priority: optional Section: libdevel Installed-Size: 485 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: libksba Version: 1.3.0-3 Replaces: libksba0 Depends: libksba8 (= 1.3.0-3) Filename: pool/main/libk/libksba/libksba-dev_1.3.0-3_amd64.deb Size: 123128 MD5sum: 0cf53493ddb87309de9ea32ee63c96bb SHA1: c5be3777dfab1c4920d6865d13ec4ab7597def77 SHA256: 9f7d67f8556e2197bd3ae5fe8bf1d1fe9bd6686269225e17f6925dc713f7f1e4 Description: X.509 and CMS support library - development files Homepage: http://www.gnupg.org/related_software/libksba/ Description-md5: 451e8740fcc6265626636e8c054309ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libksba8 Priority: optional Section: libs Installed-Size: 267 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: libksba Version: 1.3.0-3 Depends: libc6 (>= 2.14), libgpg-error0 (>= 1.10) Pre-Depends: multiarch-support Filename: pool/main/libk/libksba/libksba8_1.3.0-3_amd64.deb Size: 88798 MD5sum: fc77ab24e2507aab7ff22df04675684b SHA1: cfea49f12c17bbc3b26cc7741c3c1945a05017e1 SHA256: 27e8552c0dce60399093bf1b4933819c4605e7c1bc69d7e58a6d33aa45506046 Description: X.509 and CMS support library Multi-Arch: same Homepage: http://www.gnupg.org/related_software/libksba/ Description-md5: a4cabffec0ec5429f0f14bf49f0459c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libktexteditor4 Priority: optional Section: libs Installed-Size: 538 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libktexteditor4_4.13.0-0ubuntu1_amd64.deb Size: 96312 MD5sum: e20d2f6571ee4d3ff6ed5f4eab9b5cda SHA1: 5397f970b45f7a8dd14c420e0abdb764aaa6bc66 SHA256: 0be26e748ca6f6dfcf8462d1aedbbf0dc126282699887b51febb09ce20395538 Description: KTextEditor interfaces for the KDE Platform Homepage: http://www.kde.org/ Description-md5: 2d8e60170c0b920dc40b14f799eaf14b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkunitconversion4 Priority: optional Section: libs Installed-Size: 459 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libsolid4 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkunitconversion4_4.13.0-0ubuntu1_amd64.deb Size: 80890 MD5sum: 008d54b11f8f7d51b256e18509c96856 SHA1: afa0a1a2c7bbf039a2c1e805e25833eebaf8ebb1 SHA256: e2aa2f9111a716229980b97f94cc21fd115cf0b00b5a6e96fe1e72a9403126a3 Description: Unit Conversion library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: b9918503d482d7d829ab3df3d0dfe2e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libkutils4 Priority: optional Section: libs Installed-Size: 207 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libkcmutils4 (= 4:4.13.0-0ubuntu1), libkemoticons4 (= 4:4.13.0-0ubuntu1), libkidletime4 (= 4:4.13.0-0ubuntu1), libkprintutils4 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkutils4_4.13.0-0ubuntu1_amd64.deb Size: 22490 MD5sum: 7417f5a67a74b6485c1a035f05676daa SHA1: 9e800d209402ceea5fc3834b81f0d43b9ab52d8a SHA256: bcc3b3c582706fadfc24303c55112a565e8c8b75518dd4dbe0c5af05f0399c1d Description: dummy transitional library Homepage: http://www.kde.org/ Description-md5: 694b339a296f5f2257295f8914329086 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblangtag-common Priority: optional Section: libs Installed-Size: 1447 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: liblangtag Version: 0.5.1-2 Filename: pool/main/libl/liblangtag/liblangtag-common_0.5.1-2_all.deb Size: 134106 MD5sum: 8990f3fda7e21857b195b87b7147cef5 SHA1: 212c1f9bf9e043e2f2803fc2990e6e99d01c60d7 SHA256: 2130e63d69c251c93c23157e2e4a72377e5ef5b9d1e96ee5bf35fbe7b30a3b47 Description: library to access tags for identifying languages -- data Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: d284b0ecd26d3bedca03439178f37ff3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: liblangtag-dev Priority: optional Section: libdevel Installed-Size: 556 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: liblangtag Version: 0.5.1-2 Depends: liblangtag1 (= 0.5.1-2), liblangtag-gobject0 (= 0.5.1-2), libglib2.0-dev, gir1.2-langtag-0.5 (= 0.5.1-2) Suggests: liblangtag-doc Filename: pool/main/libl/liblangtag/liblangtag-dev_0.5.1-2_amd64.deb Size: 95120 MD5sum: bf8fa359640ee05ff375c7a505c8c8dc SHA1: ae9b47373719875d4aa07fe1573c43de82362360 SHA256: 070b554bd2e948828caeb726afd55bc38568c2c5408c6364b42103a69714371b Description: library to access tags for identifying languages -- development Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: 6ea154d96dc7457b0cd467f2e46a6a1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblangtag-doc Priority: optional Section: libs Installed-Size: 631 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: liblangtag Version: 0.5.1-2 Filename: pool/main/libl/liblangtag/liblangtag-doc_0.5.1-2_all.deb Size: 55836 MD5sum: 5ee221249add4d7f03974a7c85a68f8b SHA1: 09801e5bb9ccdbe0cf17821b91911e41b7aa7fd5 SHA256: fffc48dfc6d0ddfbe05d2803c5d0ca573e98926e3f10b185339742368a241f12 Description: library to access tags for identifying languages -- documentation Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: b2683493e772ed5e478914e6e9f480a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblangtag-gobject0 Priority: optional Section: libs Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: liblangtag Version: 0.5.1-2 Replaces: liblangtag0 (<< 0.4.0) Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.14.0), liblangtag1 (>= 0.5.0), liblangtag-common (= 0.5.1-2) Filename: pool/main/libl/liblangtag/liblangtag-gobject0_0.5.1-2_amd64.deb Size: 6044 MD5sum: e3dce27ae4e6982358e2f33d84a52985 SHA1: 8452b7b4665d6b6cd676a1bab16df5d10b94fb52 SHA256: 9ffa9458161d4bfbc06f4093f094880674c162e34269db24e8431591f0f33727 Description: library to access tags for identifying languages Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: 363d6863355004f2e559029fcd7828e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblangtag1 Priority: optional Section: libs Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: liblangtag Version: 0.5.1-2 Depends: libc6 (>= 2.17), libxml2 (>= 2.7.4), liblangtag-common (= 0.5.1-2) Filename: pool/main/libl/liblangtag/liblangtag1_0.5.1-2_amd64.deb Size: 54514 MD5sum: 20e1e30957e36ad66fa681830012965f SHA1: 7ed9e1116346079a2791f9a2ecf3c0b4e8589df4 SHA256: 3e27eb50439dd04ed1db50427ec548b177f97f772874cda6b51ce47ce7ef0b25 Description: library to access tags for identifying languages Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: 363d6863355004f2e559029fcd7828e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: liblapack-dev Priority: optional Section: devel Installed-Size: 10256 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: lapack Version: 3.5.0-2ubuntu1 Provides: liblapack.so Depends: liblapack3 (= 3.5.0-2ubuntu1), libblas-dev | libblas.so Filename: pool/main/l/lapack/liblapack-dev_3.5.0-2ubuntu1_amd64.deb Size: 1740340 MD5sum: 60a23fd352cae3c71eb5bf5c3b95cd87 SHA1: e249274270881a8b8d9ad44f4008570a1d9afc9f SHA256: 38df0d5c34f168f7f24c16cd1a5e8e137aefde543311f9d84208effaaf77f188 Description: Library of linear algebra routines 3 - static version Homepage: http://www.netlib.org/lapack/ Description-md5: 06d5e223d8871e3c280e43aebafd3bb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblapack-doc Priority: optional Section: doc Installed-Size: 821624 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: all Source: lapack Version: 3.5.0-2ubuntu1 Replaces: lapack-doc, lapack3-doc Conflicts: lapack-doc, lapack3-doc Filename: pool/main/l/lapack/liblapack-doc_3.5.0-2ubuntu1_all.deb Size: 44337874 MD5sum: 62d65f0a494148143b8ac21747f2df21 SHA1: 4b39f6404d28c5e840ccd5db20a16e4c820a74c0 SHA256: ffab8f691eed31eb5e3dbf80d31c502ed674fef0493cfe373b73e5de9f8c15fa Description: Library of linear algebra routines 3 - documentation Homepage: http://www.netlib.org/lapack/ Description-md5: b05d59494a79dab7b6037e4cf582291c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblapack3 Priority: optional Section: libs Installed-Size: 5798 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: lapack Version: 3.5.0-2ubuntu1 Replaces: libatlas3gf-base (<< 3.8.4-4), liblapack3gf (<< 3.4.1-1) Provides: liblapack.so.3, liblapack.so.3gf, liblapack3gf Depends: libblas3 | libblas.so.3, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgfortran3 (>= 4.6) Breaks: libatlas3gf-base (<< 3.8.4-4), liblapack3gf (<< 3.4.1-1) Filename: pool/main/l/lapack/liblapack3_3.5.0-2ubuntu1_amd64.deb Size: 1729868 MD5sum: 8cd3e8d2924872557e686a295436c19f SHA1: 79dca061c2862056b94345a29e0a2d75cf606a12 SHA256: 528fd2a76031016eeb9f869d553de8c127f25886d6bd63a06462a68c41709712 Description: Library of linear algebra routines 3 - shared version Homepage: http://www.netlib.org/lapack/ Description-md5: 26eaee65bec96885b8ad95ea62fe6a31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: liblapacke Priority: optional Section: libs Installed-Size: 1859 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: lapack Version: 3.5.0-2ubuntu1 Provides: liblapacke.so.3 Depends: libblas3 | libblas.so.3, libc6 (>= 2.3.4), liblapack3 | liblapack.so.3 Filename: pool/main/l/lapack/liblapacke_3.5.0-2ubuntu1_amd64.deb Size: 269686 MD5sum: 6d234df19deafdaa360c927cacafc141 SHA1: b53ddd525b42667c32f8e055419dfbb6987ee5c1 SHA256: 291f9d9ad13d60509ecf7864e7c5b0234e490eda2cfc0425ab7d1c4383d28040 Description: Library of linear algebra routines 3 - C lib shared version Homepage: http://www.netlib.org/lapack/ Description-md5: 7f2e7790d8a3b93e084fa76cd32e2fd0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblapacke-dev Priority: optional Section: libdevel Installed-Size: 6827 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: lapack Version: 3.5.0-2ubuntu1 Depends: liblapacke (= 3.5.0-2ubuntu1) Filename: pool/main/l/lapack/liblapacke-dev_3.5.0-2ubuntu1_amd64.deb Size: 244588 MD5sum: b6bc07912cfc3e1a9e53b858d32037ad SHA1: 24294a1a03a124f528d6fa7cd12ae8e6b74fc5cd SHA256: a9004da5b534a6452578616ae6f7928ce274a4130aa5cff25abdc97f2d449a13 Description: Library of linear algebra routines 3 - Headers Homepage: http://www.netlib.org/lapack/ Description-md5: e0363472469ab8a216d170cc0d7bbfe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblcms2-2 Priority: optional Section: libs Installed-Size: 391 Maintainer: Ubuntu Developers Original-Maintainer: Oleksandr Moskalenko Architecture: amd64 Source: lcms2 Version: 2.5-0ubuntu4 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Suggests: liblcms2-utils Filename: pool/main/l/lcms2/liblcms2-2_2.5-0ubuntu4_amd64.deb Size: 131594 MD5sum: 68d64d3ca6809ec5061408eb951547ab SHA1: 253f2e7d56e5a22aa93b2b473f6a0a388ebdd75a SHA256: 8eecb72e1011c12a6549407e70293290c240e12ad385932ac794871f4e23592c Description: Little CMS 2 color management library Multi-Arch: same Homepage: http://www.littlecms.com/ Description-md5: f2e97e265067bf340866f48be3f9cae5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblcms2-dev Priority: optional Section: libdevel Installed-Size: 5161 Maintainer: Ubuntu Developers Original-Maintainer: Oleksandr Moskalenko Architecture: amd64 Source: lcms2 Version: 2.5-0ubuntu4 Depends: liblcms2-2 (= 2.5-0ubuntu4) Filename: pool/main/l/lcms2/liblcms2-dev_2.5-0ubuntu4_amd64.deb Size: 5096964 MD5sum: b35f46e4463a41ffccf99224ac19d902 SHA1: 6a890eadf9d259ab96b7730dbf3ddd17bc10e5ac SHA256: 596b0ba58ca6dc01d88cba3d48ad2ad9794f5acb69b6d6b0bedd65aaaaa7a05e Description: Little CMS 2 color management library development headers Multi-Arch: same Homepage: http://www.littlecms.com/ Description-md5: 87ff14435a28f46ae1486d878912dfa7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldap-2.4-2 Priority: standard Section: libs Installed-Size: 507 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: amd64 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Replaces: libldap-2.3-0, libldap2 Depends: libc6 (>= 2.14), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libgssapi3-heimdal (>= 1.4.0+git20110226), libsasl2-2 (>= 2.1.24) Pre-Depends: multiarch-support Conflicts: ldap-utils (<= 2.1.23-1) Filename: pool/main/o/openldap/libldap-2.4-2_2.4.31-1+nmu2ubuntu8_amd64.deb Size: 153522 MD5sum: 477caa201ae300a522b123b02b31aebc SHA1: 563b75c4d3386da7c975abc10c1fdb6daccbd58e SHA256: 7281a03b46ac4ff9fadd882e5ce3defe29d04626d35c90eb5aa1ff848a79e4de Description: OpenLDAP libraries Multi-Arch: same Homepage: http://www.openldap.org/ Description-md5: 198db781f85a21d6d3c302c304d6e0fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libldap-2.4-2-dbg Priority: extra Section: libdevel Installed-Size: 565 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: amd64 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Depends: libldap-2.4-2 (= 2.4.31-1+nmu2ubuntu8) Filename: pool/main/o/openldap/libldap-2.4-2-dbg_2.4.31-1+nmu2ubuntu8_amd64.deb Size: 403592 MD5sum: 185449bd662e7d74cd2dbdc855e5e31b SHA1: fae667dd6e22dc88760ad8c0433f1e299816da14 SHA256: a09c173f45eeea47bb33fe52683d277a2c5dc90e0d527261c914ec91dd401807 Description: Debugging information for OpenLDAP libraries Multi-Arch: same Homepage: http://www.openldap.org/ Description-md5: ccc0a2bad42dae2cfbcee6c60d947e72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldap2-dev Priority: extra Section: libdevel Installed-Size: 1369 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: amd64 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Replaces: libopenldap-dev Provides: libldap-dev Depends: libldap-2.4-2 (= 2.4.31-1+nmu2ubuntu8) Conflicts: libldap-dev, libopenldap-dev Filename: pool/main/o/openldap/libldap2-dev_2.4.31-1+nmu2ubuntu8_amd64.deb Size: 258988 MD5sum: 5c7cb206a29cf5f02172db24c66816ad SHA1: 35ca197fa4cd8aeca378cc57aed1a3c08ff103fb SHA256: 6bee3953df43614470440575fc7c4124e1033765eaeb26b3b32cbdefd93ca720 Description: OpenLDAP development libraries Multi-Arch: same Homepage: http://www.openldap.org/ Description-md5: 2359036e8e1bd2b4b5d49233c1509ecf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldb-dev Priority: optional Section: libs Installed-Size: 1109 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: ldb Version: 1:1.1.16-1 Depends: libc6-dev, libldb1 (= 1:1.1.16-1), libtalloc-dev, libtdb-dev, pkg-config Filename: pool/main/l/ldb/libldb-dev_1.1.16-1_amd64.deb Size: 321756 MD5sum: acd70de41bf111a299f3699d8bc83f73 SHA1: 23696549fbfa4d95f8ef8dfb0e576048c29858ad SHA256: 4e63d01a1f49575468530847114d62146805da4ac89a9a27175485a17fd4e073 Description: LDAP-like embedded database - development files Homepage: http://ldb.samba.org/ Description-md5: 0f2998af1c1336788fd3d4e9eca9fd09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldb1 Priority: optional Section: libs Installed-Size: 393 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: ldb Version: 1:1.1.16-1 Replaces: libldb0 Depends: libc6 (>= 2.14), libldap-2.4-2 (>= 2.4.7), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9) Pre-Depends: multiarch-support Breaks: libldb0, libsamdb0 (<< 4.0.0~alpha17~git20110724.dfsg1-1) Filename: pool/main/l/ldb/libldb1_1.1.16-1_amd64.deb Size: 132192 MD5sum: c4ce36e8db6279678d6e90ffd9c7210a SHA1: bec8f421dd14c7c960aa3b48a1f18f3ca408d156 SHA256: 85abf3a2d289879f9e46b82b5cc41d034ed8229414379179b96e5951f84cc1f9 Description: LDAP-like embedded database - shared library Multi-Arch: same Homepage: http://ldb.samba.org/ Description-md5: afbf2b86552adbf8b69bb702e5773247 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libldb1-dbg Priority: extra Section: debug Installed-Size: 907 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: ldb Version: 1:1.1.16-1 Depends: libldb1 (= 1:1.1.16-1) Recommends: libc6-dbg Filename: pool/main/l/ldb/libldb1-dbg_1.1.16-1_amd64.deb Size: 287642 MD5sum: 4c31b3121bc3338ef4efcbf415fb1ab6 SHA1: 1cd0c94e38dcd6023511c5ef71a5e770b28bf210 SHA256: b1aa430f18baf3d5d5378f6afe456f8e822aab3e894eb89d8d6a619634e6ca73 Description: LDAP-like embedded database - debug symbols Homepage: http://ldb.samba.org/ Description-md5: 4a185562d03a998a1f7987876756162a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldl2.1.0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.2.5) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libldl2.1.0_4.2.1-3ubuntu1_amd64.deb Size: 9930 MD5sum: fa7add195921611058520b0ff93bbb9c SHA1: 44483e2c9b74be1e99aad71522aa8a0c2ffdf3fd SHA256: 48d8fc00fe6fe96e240947df130592a530e290b4bb0f0e2791676502bef04a9d Description: simple LDL' factorization library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: cc70c0f9279a045ec212e588648b5726 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldns-dev Priority: extra Section: libdevel Installed-Size: 1551 Maintainer: Ubuntu Developers Original-Maintainer: Ondřej Surý Architecture: amd64 Source: ldns Version: 1.6.17-1 Replaces: ldnsutils (<< 1.6.13-3) Depends: libldns1 (= 1.6.17-1), libssl-dev Breaks: ldnsutils (<< 1.6.13-3) Filename: pool/main/l/ldns/libldns-dev_1.6.17-1_amd64.deb Size: 302334 MD5sum: 4ff29b3ab0cc46c188cdf96d26604cf3 SHA1: 6ba3015c04eaad447aab7e696232e754dac398a7 SHA256: 457a94ea3acacce2403914ed86547bff5b28aed17fd5596d127a884b30217aa4 Description: ldns library for DNS programming Description-md5: 9c5cede131109e169368cf05ff7fe275 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldns1 Priority: extra Section: libs Installed-Size: 452 Maintainer: Ubuntu Developers Original-Maintainer: Ondřej Surý Architecture: amd64 Source: ldns Version: 1.6.17-1 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Filename: pool/main/l/ldns/libldns1_1.6.17-1_amd64.deb Size: 133906 MD5sum: 6379a6dfc11504c9219fa37087a1251e SHA1: 43866bb105ac22aa1962a3a4d0625979a5737963 SHA256: 279ad9b6de1f914af0029282b65c6147d105d6113fb69a9bd17d60d50c461539 Description: ldns library for DNS programming Description-md5: 9b40654210a01ddf0000bb2d232d5a08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libldns1-dbg Priority: extra Section: debug Installed-Size: 1134 Maintainer: Ubuntu Developers Original-Maintainer: Ondřej Surý Architecture: amd64 Source: ldns Version: 1.6.17-1 Depends: libldns1 (= 1.6.17-1) Filename: pool/main/l/ldns/libldns1-dbg_1.6.17-1_amd64.deb Size: 271666 MD5sum: 50d1a6a7f5c0f511915264218529f7d5 SHA1: 5eec046b2bc3e92a17e1350ebaf5ed4a4e2d72b7 SHA256: 5a9d30a22d4c4d7beac900266406dfb4b1897e232da86602cba947f750554e87 Description: ldns library for DNS programming (debug symbols) Description-md5: 3f6d5bc2be617d6da12c6314a17c0d94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libledit-ocaml-dev Priority: optional Section: libdevel Installed-Size: 328 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ledit Version: 2.03-2build1 Provides: libledit-ocaml-dev-tv9m2 Depends: camlp5-ejbq9, ocaml-nox-4.01.0, ocaml-findlib, camlp5 Filename: pool/main/l/ledit/libledit-ocaml-dev_2.03-2build1_amd64.deb Size: 44506 MD5sum: 20a685e1ba982545a10412019d4581e8 SHA1: 8e5faec2e12615aae6bdc59f99e5b5d1efe3f568 SHA256: cb4d0fdcadfc6bf813a8430aef4264ffba693f350ff8f0d2fbf9543a9c39e784 Description: OCaml line editor library Homepage: http://cristal.inria.fr/~ddr/ledit/ Description-md5: 44cf919b826bff2e61cf92762546b6ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libleveldb-dbg Priority: extra Section: debug Installed-Size: 1160 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: leveldb Version: 1.15.0-2 Depends: libleveldb1 (= 1.15.0-2) Filename: pool/main/l/leveldb/libleveldb-dbg_1.15.0-2_amd64.deb Size: 1077294 MD5sum: cb76434aab31aee7c34566d49bb57e63 SHA1: 03a0eb6d4ce5f21503e33aad3f23448ad758f3b6 SHA256: 45ba2fa70600f97b0a99abd217a58b876c333fb44808f4a30f143b07f467d93e Description: fast key-value storage library (debug symbols) Multi-Arch: same Homepage: http://code.google.com/p/leveldb/ Description-md5: 1687f8dd73a0b38cd1cc1e4d9c911f7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libleveldb-dev Priority: optional Section: libdevel Installed-Size: 794 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: leveldb Version: 1.15.0-2 Depends: libleveldb1 (= 1.15.0-2) Suggests: leveldb-doc Filename: pool/main/l/leveldb/libleveldb-dev_1.15.0-2_amd64.deb Size: 150968 MD5sum: 8ba02990bc0faf49cdb720fdcdb9be28 SHA1: 0149147af3082be1f8da01f19d4ac408f960f7d3 SHA256: 539facec98252dc09480ef4b13dd0656afc50872db926d691a312092a2091903 Description: fast key-value storage library (development files) Multi-Arch: same Homepage: http://code.google.com/p/leveldb/ Description-md5: 65611e7de39f662c9fc62635dcbbb5bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libleveldb1 Priority: optional Section: libs Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: leveldb Version: 1.15.0-2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libsnappy1, libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/l/leveldb/libleveldb1_1.15.0-2_amd64.deb Size: 117456 MD5sum: c031f369fc9122ca93f0f690b1f250da SHA1: bdb8734913909ed0db24edf4a4b35e8df3103ae2 SHA256: f03c74e21c603be79010c876dad48efe412bd07a6bc6a3c7057da10b0ecd287f Description: fast key-value storage library Multi-Arch: same Homepage: http://code.google.com/p/leveldb/ Description-md5: bd6897f1fe381043261f24b099c42e73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblexical-sealrequirehints-perl Priority: optional Section: perl Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.007-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libl/liblexical-sealrequirehints-perl/liblexical-sealrequirehints-perl_0.007-1build1_amd64.deb Size: 12922 MD5sum: 224151b2e89359c4f97ef4b8ab425813 SHA1: b80da30779e74d340773a24d3972fb99cd38b0d8 SHA256: f869192e88cd3e8c4d33ab9798fcf9cf6453ed4c158c523d76addee01f44516f Description: Perl module to prevent the leakage of lexical hints Homepage: http://search.cpan.org/dist/Lexical-SealRequireHints/ Description-md5: b9c5697118d7348949143c754e242939 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblightdm-gobject-1-0 Priority: optional Section: x11 Installed-Size: 148 Maintainer: Robert Ancell Architecture: amd64 Source: lightdm Version: 1.10.0-0ubuntu3 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libx11-6, libxklavier16 (>= 5.0) Recommends: accountsservice Suggests: lightdm Filename: pool/main/l/lightdm/liblightdm-gobject-1-0_1.10.0-0ubuntu3_amd64.deb Size: 31974 MD5sum: cd32e54241f41e3a537379238ff7aeb2 SHA1: 312f6edc4ca37e24f35b14cbe670fda00fd94f80 SHA256: cb22ec657aee207edd3020e353e72d5d7b2bddb1a5f952c2281a93fe6bd3b77b Description: LightDM GObject client library Homepage: https://launchpad.net/lightdm Description-md5: 6c3bad2fb3c13c192ee2080b06f2b9b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop Package: liblightdm-gobject-1-dev Priority: optional Section: libdevel Installed-Size: 176 Maintainer: Robert Ancell Architecture: amd64 Source: lightdm Version: 1.10.0-0ubuntu3 Depends: liblightdm-gobject-1-0 (= 1.10.0-0ubuntu3), libglib2.0-dev, libdbus-glib-1-dev, libxklavier-dev Filename: pool/main/l/lightdm/liblightdm-gobject-1-dev_1.10.0-0ubuntu3_amd64.deb Size: 10730 MD5sum: cb80d3c7635e7b328adcb7589c7762fa SHA1: ea35a42f3fa3dbdcd3041f38f20ac5a6a3bc27d4 SHA256: 61b1f516e093e9d2cfd85867e1db1f458a7de7cd00d81574690cdee046c625fd Description: LightDM GObject client library (development files) Homepage: https://launchpad.net/lightdm Description-md5: 7b47429d527a03b25da17dce04d74b8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblightdm-gobject-1-doc Priority: optional Section: doc Installed-Size: 233 Maintainer: Robert Ancell Architecture: all Source: lightdm Version: 1.10.0-0ubuntu3 Filename: pool/main/l/lightdm/liblightdm-gobject-1-doc_1.10.0-0ubuntu3_all.deb Size: 18902 MD5sum: dc19ddfdb71027b0374531356c616d94 SHA1: 4688dd2f96db348a0d20925e54d792e1e9cdaa49 SHA256: 23f9f70359d8cc763aa2f9c555ec6f1a6db28d80cecfa7d2d0d53869466e7be0 Description: LightDM client library (documentation) Homepage: https://launchpad.net/lightdm Description-md5: ed7ca117d51a427f54238d598a2c843e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblightdm-qt-3-0 Priority: optional Section: x11 Installed-Size: 164 Maintainer: Robert Ancell Architecture: amd64 Source: lightdm Version: 1.10.0-0ubuntu3 Replaces: liblightdm-qt-1-0 (>= 1.1.1) Depends: libgcc1 (>= 1:4.1.1), liblightdm-gobject-1-0 (>= 1.9.8), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Recommends: lightdm Conflicts: liblightdm-qt-1-0 (>= 1.1.1) Filename: pool/main/l/lightdm/liblightdm-qt-3-0_1.10.0-0ubuntu3_amd64.deb Size: 29850 MD5sum: 06f9a5aa189c2e599d8a79476baeb57b SHA1: cac3d1cc45ee20ee126e0219ce60f72ef14f8482 SHA256: 62b2ef20bd48ca8040f05de07d20e4b7001a91ed6964215b966502d87642d920 Description: LightDM Qt client library Homepage: https://launchpad.net/lightdm Description-md5: e4829922d725966a3547148f5055fe94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: liblightdm-qt-dev Priority: optional Section: libdevel Installed-Size: 76 Maintainer: Robert Ancell Architecture: amd64 Source: lightdm Version: 1.10.0-0ubuntu3 Replaces: liblightdm-qt-1-dev (>= 1.1.1), liblightdm-qt-3-dev Depends: liblightdm-qt-3-0 (= 1.10.0-0ubuntu3), libqt4-dev Breaks: liblightdm-qt-1-dev (>= 1.1.1), liblightdm-qt-3-dev Filename: pool/main/l/lightdm/liblightdm-qt-dev_1.10.0-0ubuntu3_amd64.deb Size: 4282 MD5sum: 62eef94a5480555d75b34d67fce8b50d SHA1: 8b1354bdb2b0f1e295dbaf841686910b4e63c984 SHA256: f0b89ec376acbc027c2d183e8de6839cf01fbe9cb725e0c715c58beb22761260 Description: LightDM Qt client library (development files) Homepage: https://launchpad.net/lightdm Description-md5: ff0d940b50715c82bbf4f79a43e4beb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblightdm-qt5-3-0 Priority: optional Section: x11 Installed-Size: 172 Maintainer: Robert Ancell Architecture: amd64 Source: lightdm Version: 1.10.0-0ubuntu3 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), liblightdm-gobject-1-0 (>= 1.9.8), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libstdc++6 (>= 4.1.1) Recommends: lightdm Filename: pool/main/l/lightdm/liblightdm-qt5-3-0_1.10.0-0ubuntu3_amd64.deb Size: 31808 MD5sum: 7c3b0fca7d939dbba5b597caf01a776a SHA1: c06db223228ecbf828d4f4b2be869e3eaed9cf36 SHA256: fd0d0f961d686440de92bb39076d22d6137bc7d0bc613e5cc435e23f815b4b4d Description: LightDM Qt 5 client library Homepage: https://launchpad.net/lightdm Description-md5: 14bad12e84d0c8c995dabc65095c9b02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblightdm-qt5-3-dev Priority: optional Section: libdevel Installed-Size: 76 Maintainer: Robert Ancell Architecture: amd64 Source: lightdm Version: 1.10.0-0ubuntu3 Depends: liblightdm-qt5-3-0 (= 1.10.0-0ubuntu3), libqt4-dev Filename: pool/main/l/lightdm/liblightdm-qt5-3-dev_1.10.0-0ubuntu3_amd64.deb Size: 4254 MD5sum: d353d03233f7e99938fa5dbff666e903 SHA1: 805ab62bc7aeff48f49f7abb6b7d6139bd011e49 SHA256: 6b4ceb6873c10179b5eca7623035ecfbe39c24576572f921fbd99c2a01ff9378 Description: LightDM Qt 5 client library (development files) Homepage: https://launchpad.net/lightdm Description-md5: befe4f3f090b62ea12a3d96e66eeecbd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblinear-dbg Priority: extra Section: debug Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Christian Kastner Architecture: amd64 Source: liblinear Version: 1.8+dfsg-1ubuntu1 Depends: liblinear1 (= 1.8+dfsg-1ubuntu1), liblinear-tools (= 1.8+dfsg-1ubuntu1) Filename: pool/main/libl/liblinear/liblinear-dbg_1.8+dfsg-1ubuntu1_amd64.deb Size: 8296 MD5sum: 7e85771c33abe958086fcaff4b87190d SHA1: 00ebe6ead7334af569548b6757c33dcde1a209aa SHA256: 4142e2489e9e37c0953b3bbff3581b0a75df479135c2e182b43bd983c3b02dfb Description: Debugging symbols for LIBLINEAR Homepage: http://www.csie.ntu.edu.tw/~cjlin/liblinear/ Description-md5: 5d16d2be927d784faffcf4cf1f3b6e77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblinear-dev Priority: optional Section: libdevel Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Christian Kastner Architecture: amd64 Source: liblinear Version: 1.8+dfsg-1ubuntu1 Depends: liblinear1 (= 1.8+dfsg-1ubuntu1), libblas-dev | libatlas-dev | libblas-3gf.so Filename: pool/main/libl/liblinear/liblinear-dev_1.8+dfsg-1ubuntu1_amd64.deb Size: 25846 MD5sum: 1c3b24cdc6d7a0c720ef31a83d9a2910 SHA1: e5796bf12fedae86914d63f4d40ae9d9ee6ade44 SHA256: 323f0e9da991c03e4aa2c2b3f54d8da2a99357feadd5845fa67da94256cf42f9 Description: Development libraries and header files for LIBLINEAR Homepage: http://www.csie.ntu.edu.tw/~cjlin/liblinear/ Description-md5: 3220f8563b2ab0939512dfdf94c21574 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblinear-tools Priority: optional Section: science Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Christian Kastner Architecture: amd64 Source: liblinear Version: 1.8+dfsg-1ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), liblinear1 (= 1.8+dfsg-1ubuntu1), libstdc++6 (>= 4.1.1) Suggests: libsvm-tools Filename: pool/main/libl/liblinear/liblinear-tools_1.8+dfsg-1ubuntu1_amd64.deb Size: 18684 MD5sum: a615dbac5c3fbc9cafdf29dce4da7e9d SHA1: de3661928b3f0e4af20979afa404bea5488e72f2 SHA256: adff22e9983dc03f24194e5f49beba2db88b37f020d4b6ab9bee1f11190f13a8 Description: Standalone applications for LIBLINEAR Homepage: http://www.csie.ntu.edu.tw/~cjlin/liblinear/ Description-md5: 9f200c7831938a7e2fa45f605ff3452a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblinear1 Priority: optional Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Christian Kastner Architecture: amd64 Source: liblinear Version: 1.8+dfsg-1ubuntu1 Depends: libblas3 | libblas.so.3 | libatlas3-base, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Recommends: liblinear-tools (= 1.8+dfsg-1ubuntu1) Suggests: liblinear-dev (= 1.8+dfsg-1ubuntu1) Filename: pool/main/libl/liblinear/liblinear1_1.8+dfsg-1ubuntu1_amd64.deb Size: 33448 MD5sum: d2755230b46c61e60a91aba89d0870a3 SHA1: 149afd08e75766b35abbebe02cb568a82f0f65d3 SHA256: 133e861ced2c7c6951adad123ea78be4f660ff8517ca304f76f08455e883dbda Description: Library for Large Linear Classification Homepage: http://www.csie.ntu.edu.tw/~cjlin/liblinear/ Description-md5: 8be0b1ca2e45a87f4eaaf60dcb3c7370 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblingua-en-inflect-perl Priority: optional Section: perl Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.895-1 Depends: perl Filename: pool/main/libl/liblingua-en-inflect-perl/liblingua-en-inflect-perl_1.895-1_all.deb Size: 52534 MD5sum: 5669e3aaeecb46710ab88cd31799a7e0 SHA1: 2a8f41f3fb6ca98402c96dd1fa978e8297adba8d SHA256: b01d860b4eaadba7856b509c46edcaed5357d101e255f4286d2d5358edb785e0 Description: Perl module to pluralize English words Homepage: http://search.cpan.org/dist/Lingua-EN-Inflect/ Description-md5: 61155cde9d18a04a2b0a8902f3994062 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblircclient-dev Priority: extra Section: libdevel Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: lirc Maintainer Team Architecture: amd64 Source: lirc Version: 0.9.0-0ubuntu5 Depends: liblircclient0 (= 0.9.0-0ubuntu5), libc6-dev Filename: pool/main/l/lirc/liblircclient-dev_0.9.0-0ubuntu5_amd64.deb Size: 14922 MD5sum: 59f7d4f7a21a92636fed66432abca510 SHA1: 67d3f0fc6ae3941915272b3a4813d1fecbe5506c SHA256: b03f999fb0d963e4723be846bcf12e2d8d58727cd8a9360e6242385b4e6913db Description: infra-red remote control support - client library development files Homepage: http://lirc.org Description-md5: 31f7c5479fd69da25ef36f26194c585d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblircclient0 Priority: extra Section: libs Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: lirc Maintainer Team Architecture: amd64 Source: lirc Version: 0.9.0-0ubuntu5 Depends: libc6 (>= 2.15) Suggests: lirc Filename: pool/main/l/lirc/liblircclient0_0.9.0-0ubuntu5_amd64.deb Size: 14880 MD5sum: 1e2af94c8ff4c8e3cc0a54d6d311650a SHA1: 330d81490cf2e7c32c059f67619740b1764a6188 SHA256: 3216d484fdec1e183966ac67fa292bac16ee809768eadfcc6a4df45c73aee690 Description: infra-red remote control support - client library Homepage: http://lirc.org Description-md5: 046c5b09edad2c5176e249c742771de0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblist-moreutils-perl Priority: optional Section: perl Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.33-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libl/liblist-moreutils-perl/liblist-moreutils-perl_0.33-1build3_amd64.deb Size: 48490 MD5sum: 42f953cfda3506a41e726bd84a6b7c76 SHA1: 048372c45084206c0c41cc4e95b028a505d98d7f SHA256: f67bd0e4bbb60bbc09a536ba1af90212d76262e62c73e153d858dbe6622ffad0 Description: Perl module with additional list functions not found in List::Util Homepage: http://search.cpan.org/dist/List-MoreUtils/ Description-md5: db3a03427dc3f850ea1497c8b1cd8ec2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libllvm3.4 Priority: optional Section: libs Installed-Size: 26227 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: amd64 Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Depends: libc6 (>= 2.15), libffi6 (>= 3.0.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libtinfo5 Pre-Depends: multiarch-support Filename: pool/main/l/llvm-toolchain-3.4/libllvm3.4_3.4-1ubuntu3_amd64.deb Size: 6540034 MD5sum: ce34c38ebc9452526f3710ad79456b2f SHA1: dcc222edd6937cd5aef33d39b72ef7c5d509fd1e SHA256: 5e04ad924b4d19a1d100f9aa1e14f054b10c63599cb5ac984547d8f27714def3 Description: Modular compiler and toolchain technologies, runtime library Multi-Arch: same Homepage: http://www.llvm.org/ Description-md5: a8854f4edf76a8c14ce34dc209bd1d11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libllvm3.4-dbg Priority: extra Section: debug Installed-Size: 130871 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: amd64 Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Depends: libllvm3.4 Filename: pool/main/l/llvm-toolchain-3.4/libllvm3.4-dbg_3.4-1ubuntu3_amd64.deb Size: 130154534 MD5sum: 1597b654f0456e2c227216981cc39c9c SHA1: a784030efe97f6638c4c26b980163cc79cc048dc SHA256: fc97779702916a2e5ec0c45f9a852f4f66cab70aab265840249e4786a2c13509 Description: Modular compiler and toolchain technologies, debugging libraries Multi-Arch: same Homepage: http://www.llvm.org/ Description-md5: 37e694cf0eb28c359fc8d8347c3e07fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblocale-gettext-perl Priority: important Section: perl Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.05-7build3 Depends: libc6 (>= 2.2.5) Pre-Depends: perl-base (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libl/liblocale-gettext-perl/liblocale-gettext-perl_1.05-7build3_amd64.deb Size: 19226 MD5sum: 3c518a9d04845d1fa3c876f06e3410a9 SHA1: ec3bb4bc5fcf70a89d8c17126267aadc00190e29 SHA256: dbbba88d22018af5779649852d1b0a1f4313193eb23696d99bab8f63d53f4ae7 Description: module using libc functions for internationalization in Perl Homepage: http://search.cpan.org/dist/gettext/gettext.pm Description-md5: 01f5f87916c645596908203fd620ddfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: liblocale-us-perl Priority: optional Section: perl Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.112150-1 Depends: perl, libdata-section-simple-perl Filename: pool/main/libl/liblocale-us-perl/liblocale-us-perl_2.112150-1_all.deb Size: 8002 MD5sum: 89248592d469fa066160805b0bfee7b0 SHA1: d906a015d45b7f6893abda1c6ca9b731bc36cb6d SHA256: 3d3c30dd2bd95b7dae15999583c6d425bd0e4de72d52e3c7d152890b440b775e Description: module for United States state identification Homepage: http://search.cpan.org/dist/Locale-US/ Description-md5: f4dbac33171c20cb1698f06728d1d56f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblockfile-bin Priority: important Section: utils Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Miquel van Smoorenburg Architecture: amd64 Source: liblockfile Version: 1.09-6ubuntu1 Replaces: liblockfile1 (<< 1.09-1) Depends: libc6 (>= 2.14) Breaks: liblockfile1 (<< 1.09-1) Filename: pool/main/libl/liblockfile/liblockfile-bin_1.09-6ubuntu1_amd64.deb Size: 10838 MD5sum: b9888b5a6f37951abff1cc53197345fe SHA1: 7e7f7f4b243fd0319ba0f43aeaf113d1a9c3076d SHA256: facff6985f68f294ada6a8c5675286e00d9e3817d7fd5dbdc094503eb2269bcf Description: support binaries for and cli utilities based on liblockfile Multi-Arch: foreign Description-md5: 5092b0e0777cd0836ff80770762ad2eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: liblockfile-dev Priority: optional Section: libdevel Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Miquel van Smoorenburg Architecture: amd64 Source: liblockfile Version: 1.09-6ubuntu1 Depends: liblockfile1 (= 1.09-6ubuntu1) Filename: pool/main/libl/liblockfile/liblockfile-dev_1.09-6ubuntu1_amd64.deb Size: 20198 MD5sum: dcf77fa6fba9eacef72909052d53bc1c SHA1: 202fe93dadcf38a09db4fd7a54ba34e70041916c SHA256: 8abc4547e5efd0866c9c03536a5e4523c27595c3cf83d114affac1ff59fdaa86 Description: Development library for liblockfile Description-md5: 9a33670df857a6d06f73115de1b4f4e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblockfile1 Priority: important Section: libs Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Miquel van Smoorenburg Architecture: amd64 Source: liblockfile Version: 1.09-6ubuntu1 Depends: libc6 (>= 2.14), liblockfile-bin (>= 1.09-6ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/libl/liblockfile/liblockfile1_1.09-6ubuntu1_amd64.deb Size: 8056 MD5sum: 5d744b4108f89f7be1e0944f4985593f SHA1: eb727a331cae2c822b17d0c4a62ed58c66121e12 SHA256: 243d2a278f7b43ef4a4ae618787715bdc29aff53a5d1544863c427e1985c0727 Description: NFS-safe locking library Multi-Arch: same Description-md5: ebb60445a5d00569c862ce1b525464b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: liblog-log4perl-perl Priority: optional Section: perl Installed-Size: 976 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: all Version: 1.41-1.1ubuntu1 Depends: perl Suggests: libdbd-csv-perl, libxml-dom-perl, liblog-dispatch-perl, libipc-shareable-perl Filename: pool/main/libl/liblog-log4perl-perl/liblog-log4perl-perl_1.41-1.1ubuntu1_all.deb Size: 444298 MD5sum: 2518afea66711e32aa536c0aa4f91e71 SHA1: 7132a002fc5e8efa737fed6a2bfa7b8c736462b5 SHA256: 82ea689cc0d53fa8714a91d5cb9330c7e0585c12f694b79a359ad3442c4f10d8 Description: Perl port of the widely popular log4j logging package Homepage: http://search.cpan.org/~mschilli/Log-Log4perl-1.41/lib/Log/Log4perl.pm Description-md5: 9e005eb1ccc61e884f2b61dc68741413 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblog-message-simple-perl Priority: important Section: perl Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.10-1 Depends: perl Filename: pool/main/libl/liblog-message-simple-perl/liblog-message-simple-perl_0.10-1_all.deb Size: 7656 MD5sum: c5d27a17c2342eaec7bce73d2959ebc2 SHA1: c0bce47d564f07ab2ce21bb8bb531231830b4ff9 SHA256: d85145512584debb1892d42944455fd2e0d5c12bbd751cfc5c10d9f4b3ad5ae4 Description: simplified interface to Log::Message Homepage: https://metacpan.org/release/Log-Message-Simple/ Description-md5: a2c3a8ce0f1403ea00fb8c093f3585bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: liblog4j1.2-java Priority: optional Section: libs Installed-Size: 471 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: apache-log4j1.2 Version: 1.2.17-4ubuntu3 Suggests: liblog4j1.2-java-doc, libgnumail-java Filename: pool/main/a/apache-log4j1.2/liblog4j1.2-java_1.2.17-4ubuntu3_all.deb Size: 382548 MD5sum: e42a1c68f176e5b4b12b850afae2ec8b SHA1: 8b66b8d9bc9a3d50d78b36a6497eb5fbef73b8b3 SHA256: 28fda4b513eea5588d61cd88a381a33338e2ec5964d4e00cf8db052df79b2f48 Description: Logging library for java Homepage: http://logging.apache.org/log4j/1.2/ Description-md5: 6852e874e3a0a408361775c4958b1233 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblog4j1.2-java-doc Priority: optional Section: doc Installed-Size: 5691 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: apache-log4j1.2 Version: 1.2.17-4ubuntu3 Depends: default-jdk-doc Filename: pool/main/a/apache-log4j1.2/liblog4j1.2-java-doc_1.2.17-4ubuntu3_all.deb Size: 255456 MD5sum: bb74ccaa866e67e73503d18727882b33 SHA1: 1092534e1e11a11fabf361b33eb7e6d3fbdf09ac SHA256: 1d5c29021e18784f26d62cc30de520f2a4b228ac7ee8b84778d93ed0e57f1719 Description: Documentation for liblog4j1.2-java Homepage: http://logging.apache.org/log4j/1.2/ Description-md5: 4de3d2b07bbd8d616f084238c912527a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblog4net-cil-dev Priority: optional Section: libs Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: log4net Version: 1.2.10+dfsg-6 Replaces: liblog4net-cil, liblog4net1.2-cil (<< 1.2.10+dfsg-4) Depends: liblog4net1.2-cil (= 1.2.10+dfsg-6) Filename: pool/main/l/log4net/liblog4net-cil-dev_1.2.10+dfsg-6_all.deb Size: 5676 MD5sum: 46356fb9b509d9db66dcef4a69292e2f SHA1: b6dbb29d8b1e430b4e0fd53f1430ecd5f2b8027d SHA256: 50c30ccb6de19042d85123ecf61ab3815884bfaa5b86de076be656c4d563326f Description: highly configurable logging API for the CLI Homepage: http://logging.apache.org/log4net/ Description-md5: cf21e8f012cbc72f9e8bf9c1f27640c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblog4net1.2-cil Priority: optional Section: libs Installed-Size: 309 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: log4net Version: 1.2.10+dfsg-6 Replaces: liblog4net-cil Depends: cli-common (>= 0.5.6), libc6 (>= 2.15) | libc6.1 (>= 2.15) | libc0.1 (>= 2.15), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-data4.0-cil (>= 2.10.1), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 1.0), libmono-system4.0-cil (>= 2.10.7) Filename: pool/main/l/log4net/liblog4net1.2-cil_1.2.10+dfsg-6_all.deb Size: 100872 MD5sum: 90cb0c14c17e8367b9e992845f5385be SHA1: dbac19b48f7b48723b4d637e6c4e1c7c239f3aff SHA256: 37597342260659a379fd66f630cf0288ffcde4237082503c38838c155748ab98 Description: highly configurable logging API for the CLI Homepage: http://logging.apache.org/log4net/ Description-md5: 18cf719b7f552ecdddb6bd473c10790f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblouis-data Priority: extra Section: text Installed-Size: 5815 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: liblouis Version: 2.5.3-2ubuntu1 Filename: pool/main/libl/liblouis/liblouis-data_2.5.3-2ubuntu1_all.deb Size: 1008552 MD5sum: 382a8b524eea68836874cf28b30e15f3 SHA1: 8ff3b34a4a36289079222958473bc44aba59078f SHA256: b7ef1d4bcf6a8ed0e16715869fdc28da255f47047df62a928317a2ca7b82c33e Description: Braille translation library - data Multi-Arch: foreign Homepage: http://code.google.com/p/liblouis/ Description-md5: 893cb8fa7f66f351dd0d6bbf87a94bab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblouis-dev Priority: extra Section: libdevel Installed-Size: 553 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: liblouis Version: 2.5.3-2ubuntu1 Depends: liblouis2 (= 2.5.3-2ubuntu1) Filename: pool/main/libl/liblouis/liblouis-dev_2.5.3-2ubuntu1_amd64.deb Size: 166994 MD5sum: dd9cf5f663bbae0884b0ea52c78fc73a SHA1: dc1f7ce9638adb568c5719d5fe746e889f774c11 SHA256: eadd585753ebb8fc8b14144b2498da7848aee884abd3b91489572fc6619a7884 Description: Braille translation library - static libs and headers Multi-Arch: same Homepage: http://code.google.com/p/liblouis/ Description-md5: 835f535ec527fdb854cd10e2ecbb2a63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblouis2 Priority: extra Section: libs Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: liblouis Version: 2.5.3-2ubuntu1 Depends: libc6 (>= 2.14), liblouis-data Pre-Depends: multiarch-support Filename: pool/main/libl/liblouis/liblouis2_2.5.3-2ubuntu1_amd64.deb Size: 54138 MD5sum: 2fb259e0f1704465391d557b4491422b SHA1: 4ecaa9e9e7c3c5781f8000ccfaf4ef9850aa06b8 SHA256: 98f07601ed2ff30f02f807bd1b75854774dd7536026e7c86d51d475c536d955d Description: Braille translation library - shared libs Multi-Arch: same Homepage: http://code.google.com/p/liblouis/ Description-md5: 40448590cf7dc3c13633552fcd3ac521 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblpsolve55-dev Priority: optional Section: math Installed-Size: 2108 Maintainer: Ubuntu Developers Original-Maintainer: Juan Esteban Monsalve Tobon Architecture: amd64 Source: lp-solve Version: 5.5.0.13-7build1 Depends: libsuitesparse-dev Filename: pool/main/l/lp-solve/liblpsolve55-dev_5.5.0.13-7build1_amd64.deb Size: 422266 MD5sum: 10524b3f7d203c74e75464aa06497736 SHA1: e8d48ae9fb3f4ac32a320527803587296e573b81 SHA256: 4d0b77f0d81592435c22be66a85c5b9aba4b55a282d76143c6d29277fc58ba3d Description: Solve (mixed integer) linear programming problems - library Homepage: http://lpsolve.sourceforge.net Description-md5: ab4882ddda62b748bf8b44c8f0be3230 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblqr-1-0 Priority: optional Section: libs Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: amd64 Source: liblqr Version: 0.4.1-2ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.24.0) Pre-Depends: multiarch-support Filename: pool/main/libl/liblqr/liblqr-1-0_0.4.1-2ubuntu1_amd64.deb Size: 23382 MD5sum: ea8c8d1f369597376d033e31de97f651 SHA1: 7f77eaa4ba8791ced1dcca254efa4424bff91c9a SHA256: 5f38894d7b0aad8b726ead3e8341084ad34624217981abb32025f5736023263a Description: converts plain array images into multi-size representation Multi-Arch: same Homepage: http://liblqr.wikidot.com/ Description-md5: 95ac0eca95e73974478fdecc7717176c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: liblqr-1-0-dbg Priority: extra Section: libdevel Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: amd64 Source: liblqr Version: 0.4.1-2ubuntu1 Depends: liblqr-1-0 (= 0.4.1-2ubuntu1) Filename: pool/main/libl/liblqr/liblqr-1-0-dbg_0.4.1-2ubuntu1_amd64.deb Size: 5596 MD5sum: 141a5e608c53d5614fab699867ede317 SHA1: db63a749202105bbe0ca8d8064d651afaf8a3f82 SHA256: b7e3d3024182c3bc7ae4e6db346462c757a552b38cc11507d8b5ffc0a918a973 Description: converts plain array images into multi-size representation (debug package) Homepage: http://liblqr.wikidot.com/ Description-md5: 01810b5067619c4b49ed534b13fd4454 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblqr-1-0-dev Priority: optional Section: libdevel Installed-Size: 788 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: amd64 Source: liblqr Version: 0.4.1-2ubuntu1 Provides: liblqr-dev Depends: liblqr-1-0 (= 0.4.1-2ubuntu1) Conflicts: liblqr-dev Filename: pool/main/libl/liblqr/liblqr-1-0-dev_0.4.1-2ubuntu1_amd64.deb Size: 133892 MD5sum: 4999b170afe9fedc17edbbe66fb0f9c2 SHA1: c3b632fe843bf0e3bc8b4dc32ecebfed40d4f0d0 SHA256: 2bd7379da1feeddab30dfa4a91536519c878a131e4cdfe0e1d635cbb48669605 Description: converts plain array images into multi-size representation (developments files) Homepage: http://liblqr.wikidot.com/ Description-md5: e20a0631003a2d0bd4e7db73d74e95e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblrm2 Priority: optional Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue (<= 1.0.6-1) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.24.0), libplumb2 (>= 1.0.11+hg2754) Conflicts: libcluster-glue (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/liblrm2_1.0.11+hg2754-1.1build1_amd64.deb Size: 14660 MD5sum: 0e25e8298b9b717d5e3038a730e6a73a SHA1: 1abef6e9cdbbe3b41fde471371fd832ec00cb83f SHA256: 3319d9f2c5380908a03b9e35849e8e3844a0589bfbb08a1e9708e3cb0be664ca Description: Reusable cluster libraries -- liblrm2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 000b7bd6663855f827735e673579b02c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblrm2-dev Priority: optional Section: libdevel Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1) Depends: liblrm2 (= 1.0.11+hg2754-1.1build1) Conflicts: libcluster-glue-dev (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/liblrm2-dev_1.0.11+hg2754-1.1build1_amd64.deb Size: 22446 MD5sum: cfb1d4ddc994eb504aea044e8be006ae SHA1: 76d6597a734dcaa64de328edcc949cf0889a64af SHA256: fd360dcdf894c0b4e4390bd954f7db499985d21af06eda7128a8b5502aa03fde Description: Reusable cluster development files -- liblrm Homepage: http://hg.linux-ha.org/glue/ Description-md5: 04a379345e7ea65d11b1ed792b7efe1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblrmd1 Priority: optional Section: libs Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Depends: libc6 (>= 2.14), libcrmcommon3 (>= 1.1.10+git20130802), libcrmservice1 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libgnutls26 (>= 2.12.17-0), libqb0, libstonithd2 (>= 1.1.10+git20130802), libxml2 (>= 2.7.4) Filename: pool/main/p/pacemaker/liblrmd1_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 18362 MD5sum: 343a6e79e37fed715bfa40fc136ad1c0 SHA1: c38e0106a5816acdd9b8ac3595393cb7688af0ae SHA256: c4e0c9df6ff1a9eff3646c1667fb55e15aa1629ca6d3e0270397d51ee3947796 Description: Pacemaker libraries - lrmd Homepage: http://clusterlabs.org/ Description-md5: de6573b7d14f11e4d6b515edcc19cba2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblrmd1-dev Priority: optional Section: libdevel Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Depends: liblrmd1 (= 1.1.10+git20130802-1ubuntu2) Filename: pool/main/p/pacemaker/liblrmd1-dev_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 23204 MD5sum: aac1161d44a0c11b3191b399de6775c1 SHA1: efca6c826570aa880eaf9fce281d4f8e448aadf6 SHA256: 6ddeae0355f6cf2ee2554bf89f376b0c02998d4eeed087c59470879da685b73f Description: Development file for pacemaker's lrmd library Homepage: http://clusterlabs.org/ Description-md5: 863ba4bcb2d8fb0a246a702bdbb9631e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libltdl-dev Priority: optional Section: libdevel Installed-Size: 918 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: amd64 Source: libtool Version: 2.4.2-1.7ubuntu1 Replaces: libltdl3-dev, libltdl7-dev, libtool (<< 1.5.20) Provides: libltdl3-dev, libltdl7-dev Depends: libltdl7 (= 2.4.2-1.7ubuntu1) Recommends: libtool Suggests: libtool-doc Conflicts: libltdl3-dev, libltdl7-dev, libtool (<< 1.5.20), libtool1.4 Filename: pool/main/libt/libtool/libltdl-dev_2.4.2-1.7ubuntu1_amd64.deb Size: 157064 MD5sum: 508a866961d46f7e74dc22501c8f2e94 SHA1: 12bebc4dfa3417597e853a8aee920de152deefd6 SHA256: b4d1599a37348331a972ca10c2de7bc5909b70f83ce7b643e2c5e339b77e2b6a Description: A system independent dlopen wrapper for GNU libtool Multi-Arch: same Homepage: http://www.gnu.org/software/libtool/ Description-md5: 558216e7969b9db60e2f2709a38a748b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libltdl7 Priority: optional Section: libs Installed-Size: 397 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: amd64 Source: libtool Version: 2.4.2-1.7ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libt/libtool/libltdl7_2.4.2-1.7ubuntu1_amd64.deb Size: 35000 MD5sum: ddeea7a0b4082abd4f746f46c8ccb48e SHA1: 1705e9860e613f8484597cda7406377999d6ff9c SHA256: 39eab908ff6c1bb98e1de44744c071282873cb88eeb67553b90bc2dd9fa61a0c Description: A system independent dlopen wrapper for GNU libtool Multi-Arch: same Homepage: http://www.gnu.org/software/libtool/ Description-md5: 29b165ca5a1c370af592e0476b6ae440 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblttng-ust-ctl2 Priority: extra Section: libs Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Jon Bernard Architecture: amd64 Source: ust Version: 2.4.0-4ubuntu1 Replaces: liblttng-ust2 Depends: libc6 (>= 2.14), liburcu1 (>= 0.7.2) Pre-Depends: multiarch-support Conflicts: liblttng-ust2 Filename: pool/main/u/ust/liblttng-ust-ctl2_2.4.0-4ubuntu1_amd64.deb Size: 61738 MD5sum: a22fc453b378203afe465e11b22155f4 SHA1: c33bc90258af82f453737cbd5de3ea783bfd9380 SHA256: 3e4f66664616cdd32583da4303ea396c4b5c40c7c9b126dbf8b48db0ce02517b Description: LTTng 2.0 Userspace Tracer (trace control library) Multi-Arch: same Homepage: http://lttng.org/ Description-md5: c0fd516a7850c0d213bf248282b965d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblttng-ust-dev Priority: extra Section: libdevel Installed-Size: 1283 Maintainer: Ubuntu Developers Original-Maintainer: Jon Bernard Architecture: amd64 Source: ust Version: 2.4.0-4ubuntu1 Replaces: liblttng-ust2 Depends: liblttng-ust0 (= 2.4.0-4ubuntu1), liblttng-ust-ctl2 (= 2.4.0-4ubuntu1), liburcu-dev (>= 0.7.2), uuid-dev, systemtap-sdt-dev (>= 1.6) Recommends: python3 Conflicts: liblttng-ust2 Breaks: liblttng-ust0 (<< 2.3.0) Filename: pool/main/u/ust/liblttng-ust-dev_2.4.0-4ubuntu1_amd64.deb Size: 156924 MD5sum: 072252c8f1361f84c6dafbb77ac2e808 SHA1: 89f341e6571b21658e1e574ef543bbfb81de02b3 SHA256: 83b7bae099071d4cdff8836550547a7d95ea25e30cb1588608812f74030e9cfe Description: LTTng 2.0 Userspace Tracer (development files) Multi-Arch: same Homepage: http://lttng.org/ Description-md5: 8c082ca31fd5ccc4637789709bb35acd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblttng-ust0 Priority: extra Section: libs Installed-Size: 483 Maintainer: Ubuntu Developers Original-Maintainer: Jon Bernard Architecture: amd64 Source: ust Version: 2.4.0-4ubuntu1 Replaces: liblttng-ust2 Depends: libc6 (>= 2.14), liburcu1 (>= 0.7.2), liblttng-ust-ctl2 (= 2.4.0-4ubuntu1) Pre-Depends: multiarch-support Conflicts: liblttng-ust2 Filename: pool/main/u/ust/liblttng-ust0_2.4.0-4ubuntu1_amd64.deb Size: 106002 MD5sum: b9f3e554f5fbf0d6a3d62266574950e8 SHA1: 044a1af25f2e02895b48721293ac9433188a0b26 SHA256: dff956e88b3485f82441aa3a3ce3954c137bc285de4b3e38e9f80a3e09e56f4f Description: LTTng 2.0 Userspace Tracer (tracing libraries) Multi-Arch: same Homepage: http://lttng.org/ Description-md5: df92ac20f115864b9c7d25996ddc4506 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.1-0 Priority: optional Section: libs Installed-Size: 399 Maintainer: Ubuntu Developers Original-Maintainer: John V. Belmonte Architecture: amd64 Source: lua5.1 Version: 5.1.5-5 Depends: libc6 (>= 2.14), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/l/lua5.1/liblua5.1-0_5.1.5-5_amd64.deb Size: 173332 MD5sum: 6e402fdf604a75d50e5489009dfc9292 SHA1: ef3fa6d2b60aa6fce354d4da541786e28ccd19e1 SHA256: 089c26afd813e2eb977421e70efb78c2434e00fd0467458538de235f507e2b0d Description: Shared library for the Lua interpreter version 5.1 Multi-Arch: same Homepage: http://www.lua.org Description-md5: bc352b5115dff05ff2aede2bb7cb6dbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-audio Package: liblua5.1-0-dbg Priority: optional Section: libs Installed-Size: 937 Maintainer: Ubuntu Developers Original-Maintainer: John V. Belmonte Architecture: amd64 Source: lua5.1 Version: 5.1.5-5 Depends: liblua5.1-0 (= 5.1.5-5) Filename: pool/main/l/lua5.1/liblua5.1-0-dbg_5.1.5-5_amd64.deb Size: 810452 MD5sum: 75b522b7b2759dd690af363b29950e9c SHA1: 6397482ce40eafb3b237ac2f2986e31785800cbd SHA256: fbeda79a9227bf7be98b30737d72d6e3b9e7be777e50d98d844441619c5e9714 Description: Debug symbols for the Lua shared library interpreter Multi-Arch: same Homepage: http://www.lua.org Description-md5: 54e8189837a8abfaff0a371b2a10bb96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.1-0-dev Priority: optional Section: libdevel Installed-Size: 771 Maintainer: Ubuntu Developers Original-Maintainer: John V. Belmonte Architecture: amd64 Source: lua5.1 Version: 5.1.5-5 Provides: liblua5.1-dev Depends: liblua5.1-0 (= 5.1.5-5), libc6-dev | libc-dev, libreadline-dev Recommends: pkg-config, libtool Conflicts: liblua5.1-dev Filename: pool/main/l/lua5.1/liblua5.1-0-dev_5.1.5-5_amd64.deb Size: 228238 MD5sum: 3bc13e6649724eca0b0d2b55c3b09774 SHA1: 7a7bff4fb6590f12bfd6c17fc4f66404167baf65 SHA256: e207cf741b49efd0debbb8cead45c37ee1b3504f2f00d9c038d7c2b784546539 Description: Development files for the Lua language version 5.1 Multi-Arch: same Homepage: http://www.lua.org Description-md5: 883de8c555030d5626a244d06f1d320d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.2-0 Priority: optional Section: libs Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Tassi Architecture: amd64 Source: lua5.2 Version: 5.2.3-1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/l/lua5.2/liblua5.2-0_5.2.3-1_amd64.deb Size: 80482 MD5sum: 9048926bc6bf88db570980842c71ed94 SHA1: 48315b6f6aff97dd69214491b911291f34ca9dea SHA256: f0dd6361cc8dbcd4d1d5b345ab2ccc1e11d49273086fb827a12515fe04d13206 Description: Shared library for the Lua interpreter version 5.2 Multi-Arch: same Homepage: http://www.lua.org Description-md5: 0e94c74e97a48f7da19ae355a7044d10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-photography, ubuntu-gnome-desktop Package: liblua5.2-0-dbg Priority: extra Section: debug Installed-Size: 781 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Tassi Architecture: amd64 Source: lua5.2 Version: 5.2.3-1 Depends: liblua5.2-0 (= 5.2.3-1) Filename: pool/main/l/lua5.2/liblua5.2-0-dbg_5.2.3-1_amd64.deb Size: 668556 MD5sum: 48cbe1f2bc8202618340abd073bd1303 SHA1: a8d7f50975df04a01d2c709e7e71723c2f32f9b3 SHA256: 78a919d355c5fd23d7b36ae102028b01a95c47d7256b25d16b2713ff6f27fa6d Description: Debug symbols for the Lua shared library interpreter Multi-Arch: same Homepage: http://www.lua.org Description-md5: 3287de5f0e8eefdb47fc353923fb8d73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.2-dev Priority: optional Section: libdevel Installed-Size: 464 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Tassi Architecture: amd64 Source: lua5.2 Version: 5.2.3-1 Depends: liblua5.2-0 (= 5.2.3-1), libc6-dev | libc-dev, libreadline-dev Recommends: pkg-config, libtool Filename: pool/main/l/lua5.2/liblua5.2-dev_5.2.3-1_amd64.deb Size: 101520 MD5sum: d1268723de1dbd8f1197270529b9f9be SHA1: 3627fd0f30359bcee1fad716d9ca5905752e100d SHA256: e7a3d029f9984c8aff891e1e1bc0ac2e386c8be882060287b43c463d424d0109 Description: Development files for the Lua language version 5.2 Multi-Arch: same Homepage: http://www.lua.org Description-md5: cb939e19e8470a092c76923ad164a65d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.2-rrd-dev Priority: optional Section: libdevel Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: amd64 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: liblua5.2-rrd0 (= 1.4.7-2ubuntu5) Filename: pool/main/r/rrdtool/liblua5.2-rrd-dev_1.4.7-2ubuntu5_amd64.deb Size: 14994 MD5sum: f552e435a814c09ae929eb25054971a3 SHA1: 6f89871c86dc0bf24312d44824610b7319ff97ef SHA256: 2ac5945451daf5dc99096fa92af50b80d445b02f2f85f7d9112079ba3a552f5d Description: time-series data storage and display system (Lua 5.2 development) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: 6b23a791c3d91be27374508c94dcffec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.2-rrd0 Priority: optional Section: interpreters Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: amd64 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: libc6 (>= 2.2.5), liblua5.2-0, librrd4 (>= 1.4~rc2) Filename: pool/main/r/rrdtool/liblua5.2-rrd0_1.4.7-2ubuntu5_amd64.deb Size: 10134 MD5sum: 8d422b9d5c573d9124f3aa7fbb141e03 SHA1: 44a3ec84cfdbdb91d4da9e63219a7426bc5dd79a SHA256: 7ba41f150b9172073fba479ca3b998499af89c30cdfc814f327ff580c7a50380 Description: time-series data storage and display system (Lua 5.2 interface) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: 3cb978d761714fe89b86ec1b5fccc5f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblvm2-dev Priority: optional Section: libdevel Installed-Size: 154 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Source: lvm2 Version: 2.02.98-6ubuntu2 Depends: liblvm2app2.2 (= 2.02.98-6ubuntu2), liblvm2cmd2.02 (= 2.02.98-6ubuntu2), libdevmapper-dev Filename: pool/main/l/lvm2/liblvm2-dev_2.02.98-6ubuntu2_amd64.deb Size: 9998 MD5sum: 02dc39c4f7bcb8131417b7eaa64a26b4 SHA1: 9b15d90baccdc60904288a73e5caa365a8faec0e SHA256: 1cce5b0d4c9cdeebad2c6011eefab903d0abcc4e4d67ed90a0c58338179b5e76 Description: LVM2 libraries - development files Homepage: http://sources.redhat.com/lvm2/ Description-md5: 9355c51a0fa4f1589861097790213f32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblvm2app2.2 Priority: optional Section: libs Installed-Size: 746 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Source: lvm2 Version: 2.02.98-6ubuntu2 Depends: libc6 (>= 2.14), libdevmapper-event1.02.1 (>= 2:1.02.74), libdevmapper1.02.1 (>= 2:1.02.77), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/l/lvm2/liblvm2app2.2_2.02.98-6ubuntu2_amd64.deb Size: 243236 MD5sum: b0d8695efeafb248fb37321ca97f70b2 SHA1: 0c81bd2c10a3f2e9f59550a616cef8366ba33812 SHA256: 896d6ac9a8fdda8445687b70bc903469af5714970eb1cb608f266518ab65d5ff Description: LVM2 application library Multi-Arch: same Homepage: http://sources.redhat.com/lvm2/ Description-md5: 577f83d733f4a66a06fad9f3866d0316 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: kubuntu-active Package: liblvm2cmd2.02 Priority: optional Section: libs Installed-Size: 1015 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Source: lvm2 Version: 2.02.98-6ubuntu2 Depends: libc6 (>= 2.14), libdevmapper-event1.02.1 (>= 2:1.02.74), libdevmapper1.02.1 (>= 2:1.02.77), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/l/lvm2/liblvm2cmd2.02_2.02.98-6ubuntu2_amd64.deb Size: 336766 MD5sum: a1390dcaa5e4c9c3991242bf78b04601 SHA1: d955c1f0d98eb46393ffcd055d469ff99fcb6b3c SHA256: b1db6fd1308175811cc89c09d8b57c4267b295013f068e988c6566d8a7835e4e Description: LVM2 command library Multi-Arch: same Homepage: http://sources.redhat.com/lvm2/ Description-md5: 8f4d76592086bd210b07fd8b6370be43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblwp-mediatypes-perl Priority: optional Section: perl Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.02-1 Replaces: libwww-perl (<< 6.00) Depends: perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libl/liblwp-mediatypes-perl/liblwp-mediatypes-perl_6.02-1_all.deb Size: 21690 MD5sum: 654e7f05d341f4a859799eec9538b2c0 SHA1: 55ae4ed3668dcbe02a918947bf75929040a6c5c0 SHA256: bfc80beb41aad1a1ea886ec3605cb692eff10d4451d902520b8db443ee66c96a Description: module to guess media type for a file or a URL Homepage: http://search.cpan.org/dist/LWP-MediaTypes/ Description-md5: 39f3a89fb73f99e7871809c2c0d8f938 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblwp-protocol-https-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.04-2 Replaces: libwww-perl (<< 6.02) Depends: perl, ca-certificates, libio-socket-ssl-perl (>= 1.54), libnet-http-perl, libwww-perl (>= 6.05-2) Suggests: libcrypt-ssleay-perl Breaks: libwww-perl (<< 6.02) Filename: pool/main/libl/liblwp-protocol-https-perl/liblwp-protocol-https-perl_6.04-2_all.deb Size: 7330 MD5sum: 98bc7db146229678cd593c94cbcbf876 SHA1: 28b8238f21bb8f29a4760fb4866ddf8acde270ba SHA256: bdc7dc9e6f2530d84997aa670ec7022f7eeb9a736dfcae7b92e1e8f8935e4a81 Description: HTTPS driver for LWP::UserAgent Homepage: https://metacpan.org/release/LWP-Protocol-https/ Description-md5: 535f9e50e5b283e9fd71fec3f0a43cd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblwres90 Priority: standard Section: libs Installed-Size: 127 Maintainer: LaMont Jones Architecture: amd64 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.15) Conflicts: libbind0 Filename: pool/main/b/bind9/liblwres90_9.9.5.dfsg-3_amd64.deb Size: 32842 MD5sum: dfc8223f03150d53f92a01fe2a5a84d1 SHA1: 3feb022ce0e92a896167b44463abfc7953fe60e2 SHA256: 33290ef90e1cdb5ba2d6ddcef382941d848f4502e4782f5bf2c13aec91696655 Description: Lightweight Resolver Library used by BIND Description-md5: 6c5041f39bdcc8de6092f4354d6f893b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: liblxc1 Priority: optional Section: admin Installed-Size: 498 Maintainer: Ubuntu Developers Architecture: amd64 Source: lxc Version: 1.0.3-0ubuntu3 Replaces: liblxc0, lxc (<< 0.9.0~alpha3-0ubuntu1~) Provides: liblxc0 Depends: cgmanager, rsync, libapparmor1 (>= 2.6~devel), libc6 (>= 2.17), libcap2 (>= 2.10), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libseccomp2 (>= 2.1.0), libselinux1 (>= 1.32) Pre-Depends: multiarch-support Recommends: uidmap Conflicts: liblxc0 Breaks: lxc (<< 0.9.0~alpha3-0ubuntu1~) Filename: pool/main/l/lxc/liblxc1_1.0.3-0ubuntu3_amd64.deb Size: 151654 MD5sum: bb4458fb82eec9c95faa4a90571ef022 SHA1: 0215f89694ca9113146f2339dffa09b789bab1a6 SHA256: 391e5354bed83ef6bf59abdfd864e2faefc1dbf1c3e33d7204a2afaa8aaafdeb Description: Linux Containers userspace tools (library) Homepage: http://linuxcontainers.org Description-md5: d757397b1a93a5bea5c72032f3ef485d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblzma-dev Priority: extra Section: libdevel Installed-Size: 629 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan Nieder Architecture: amd64 Source: xz-utils Version: 5.1.1alpha+20120614-2ubuntu2 Depends: liblzma5 (= 5.1.1alpha+20120614-2ubuntu2) Suggests: liblzma-doc Filename: pool/main/x/xz-utils/liblzma-dev_5.1.1alpha+20120614-2ubuntu2_amd64.deb Size: 137070 MD5sum: 17a08d1bf2ac0cf712194ed1aff67e81 SHA1: 82c54c3a8eba1582eddf906a78e9214a35d87621 SHA256: 3e31dca27504dc443e71ff028844665f53aba966dc24e7d906d7f14d4edf771c Description: XZ-format compression library - development files Multi-Arch: same Homepage: http://tukaani.org/xz/ Description-md5: d19d3f899b3a1d8a68ae0473ad3f9283 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblzma-doc Priority: extra Section: doc Installed-Size: 3606 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan Nieder Architecture: all Source: xz-utils Version: 5.1.1alpha+20120614-2ubuntu2 Suggests: liblzma-dev Filename: pool/main/x/xz-utils/liblzma-doc_5.1.1alpha+20120614-2ubuntu2_all.deb Size: 229538 MD5sum: 1261e77153d8e954bff6efa2bad3db61 SHA1: 9e73e3d022d23fcd6914446309653dc04c7c0e17 SHA256: 2209c2dedc9cd63f342d8afb0244a7fc7766e82b219a955bc4cb9b742965d149 Description: XZ-format compression library - API documentation Homepage: http://tukaani.org/xz/ Description-md5: 69771d1d5fd604c471f896760682a908 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblzma5 Priority: required Section: libs Installed-Size: 305 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan Nieder Architecture: amd64 Source: xz-utils Version: 5.1.1alpha+20120614-2ubuntu2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/x/xz-utils/liblzma5_5.1.1alpha+20120614-2ubuntu2_amd64.deb Size: 80310 MD5sum: 759f50b893e9809a168a9d926a6095d0 SHA1: 5047b25046c22cc6a22579722312150e5428d9e9 SHA256: 4062214896ad59759d0fe012146d7f001159b9a79fe28baea296205b53ba7cb9 Description: XZ-format compression library Multi-Arch: same Homepage: http://tukaani.org/xz/ Description-md5: 0ceca09eb4ab99863be3578fa55e7d2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: liblzo2-2 Priority: optional Section: libs Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: amd64 Source: lzo2 Version: 2.06-1.2ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/l/lzo2/liblzo2-2_2.06-1.2ubuntu1_amd64.deb Size: 45854 MD5sum: 49c328a8e3a802ca2089da8516bdd497 SHA1: 1f0658159102199a926a1c9ebd21960ad50e6153 SHA256: e4f71356307950387fb91418b040cbb05a56c1a513495e9627c124bc38785972 Description: data compression library Multi-Arch: same Homepage: http://www.oberhumer.com/opensource/lzo/ Description-md5: 6acbb2b98752f4160eba6ec78c11bb54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-live, ubuntu-usb, kubuntu-desktop, kubuntu-live, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-live, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-dvd-live, edubuntu-usb, xubuntu-desktop, xubuntu-live, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-dvd-live, ubuntu-gnome-desktop, ubuntu-gnome-live Package: liblzo2-dev Priority: optional Section: libdevel Installed-Size: 673 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: amd64 Source: lzo2 Version: 2.06-1.2ubuntu1 Replaces: liblzo-dev Depends: liblzo2-2 (= 2.06-1.2ubuntu1), libc6-dev Filename: pool/main/l/lzo2/liblzo2-dev_2.06-1.2ubuntu1_amd64.deb Size: 93076 MD5sum: 694bf00e46a0aa2d9b040777aff131e3 SHA1: 9e85b5de940e80cc4b39a09c02a9cbd89aabd648 SHA256: 183b0dfa0af3ca81064b1aee61f6d0e9b249214d0b818cfa5fef4c205571f33e Description: data compression library (development files) Multi-Arch: same Homepage: http://www.oberhumer.com/opensource/lzo/ Description-md5: 33a9c8476074f27fdf0d1f013ef98be9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libm17n-0 Priority: optional Section: libs Installed-Size: 633 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: amd64 Source: m17n-lib Version: 1.6.4-2ubuntu1 Depends: libc6 (>= 2.14), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libfribidi0 (>= 0.19.2), libgd3 (>= 2.1.0~alpha~), libotf0 (>= 0.9.11), libthai0 (>= 0.1.12), libx11-6, libxft2 (>> 2.1.1), libxml2 (>= 2.7.4), libxt6, m17n-db (>= 1.6.0), m17n-contrib Suggests: m17n-docs Filename: pool/main/m/m17n-lib/libm17n-0_1.6.4-2ubuntu1_amd64.deb Size: 238006 MD5sum: 9c99d732041703e688bd5275b972e29b SHA1: 4afdb2d2b9e023e826a79e142f33a9be1ca17bd2 SHA256: dad073c8bed583e3b695f070928fe41cfab895b3749b63dbd23db948d707c684 Description: multilingual text processing library - runtime Homepage: http://www.nongnu.org/m17n/ Description-md5: 246a450e6bd01a098f1121b3d4600f87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libm17n-0-dbg Priority: extra Section: libdevel Installed-Size: 826 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: amd64 Source: m17n-lib Version: 1.6.4-2ubuntu1 Depends: libm17n-0 (= 1.6.4-2ubuntu1) Suggests: m17n-docs Filename: pool/main/m/m17n-lib/libm17n-0-dbg_1.6.4-2ubuntu1_amd64.deb Size: 616158 MD5sum: fcaf6fe663a76f0b51b9ce1043f72d5c SHA1: 4a090a0c17cadbc557c2e76d0e16aa6b499ea6da SHA256: 96444d39e6f8b275f546fe14e41338998b8b7065a366d85db2b43189be7a9dab Description: multilingual text processing library - debugging symbols Homepage: http://www.nongnu.org/m17n/ Description-md5: 82612e6cd77b53cad2ccaa199dfdaf85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libm17n-dev Priority: optional Section: libdevel Installed-Size: 962 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: amd64 Source: m17n-lib Version: 1.6.4-2ubuntu1 Depends: libm17n-0 (= 1.6.4-2ubuntu1), libxml2-dev, libthai-dev Suggests: m17n-docs Filename: pool/main/m/m17n-lib/libm17n-dev_1.6.4-2ubuntu1_amd64.deb Size: 236184 MD5sum: 9dbc1fd075390c30dd1b4572a2f418d6 SHA1: e475c7431e459419aa066e4c5e03b7b24ccefb0d SHA256: e338ea0f5e76976ab5a2c1bb80b2f311e830fa5163b27a25866dbe6c79376633 Description: multilingual text processing library - development Homepage: http://www.nongnu.org/m17n/ Description-md5: 886fe20cf7523e0da0b6f84783a99692 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmaa-dev Priority: optional Section: libdevel Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: amd64 Source: libmaa Version: 1.3.2-2 Depends: libmaa3 (= 1.3.2-2) Filename: pool/main/libm/libmaa/libmaa-dev_1.3.2-2_amd64.deb Size: 119730 MD5sum: 0e5a82b0fb66a63d24f57a59c7c8f404 SHA1: 96e8077075d2fc0c751e0c034daf676e1d86f4d5 SHA256: d0047315db03c5dd614d9efbd70a52c06130f0470fce5756aab3300496e44991 Description: maa programming library, development files Multi-Arch: same Homepage: http://sourceforge.net/projects/dict/ Description-md5: bc0f465617b2db9625ae21943d837586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmaa3 Priority: optional Section: libs Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: amd64 Source: libmaa Version: 1.3.2-2 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/libm/libmaa/libmaa3_1.3.2-2_amd64.deb Size: 42250 MD5sum: c437fd49b39ad1edd6dc2e78412ea31a SHA1: 4acf37b2ccebdc5bb7ab1cfbb9812825cb513abf SHA256: d44f38ba56df2e984961fa79c371c5fd66fd41a3059ebc1387ae9655512de800 Description: maa programming library Multi-Arch: same Homepage: http://sourceforge.net/projects/dict/ Description-md5: 1121424a22e831818969fb6649ec3a98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmagic-dev Priority: optional Section: libdevel Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: amd64 Source: file Version: 1:5.14-2ubuntu3 Depends: libmagic1 (= 1:5.14-2ubuntu3) Suggests: file Filename: pool/main/f/file/libmagic-dev_5.14-2ubuntu3_amd64.deb Size: 61898 MD5sum: e81cc84f2d2292c2e8bb13054194bce6 SHA1: 5963b7d0fb8f27e4e8b3c98feaec26a1e1fdb473 SHA256: f24e492841044ae67dbad0b9f20fa9c010293fb2294382247ca3b7deb79f6923 Description: File type determination library using "magic" numbers (development) Multi-Arch: same Homepage: http://www.darwinsys.com/file/ Description-md5: 8dfdad924ca9981a019ce4d5e66307e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmagic1 Priority: important Section: libs Installed-Size: 2761 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: amd64 Source: file Version: 1:5.14-2ubuntu3 Depends: libc6 (>= 2.15), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: file Filename: pool/main/f/file/libmagic1_5.14-2ubuntu3_amd64.deb Size: 183318 MD5sum: 6a8a7f3a7c6f64cc89797ab3f610974d SHA1: 7beac841e1fcb993b6fd29d49888c1d249e2a8ed SHA256: 0298e349c8a9946eec857fb5f0c246345b213c7466fe1ccbd9952967d030194d Description: File type determination library using "magic" numbers Multi-Arch: same Homepage: http://www.darwinsys.com/file/ Description-md5: 7bbc15df978ca5c0adea7312cbc02445 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libmagick++-dev Priority: optional Section: libdevel Installed-Size: 1140 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: amd64 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libmagick++5 (= 8:6.7.7.10-6ubuntu3), libmagickcore-dev (= 8:6.7.7.10-6ubuntu3), libmagickwand-dev (= 8:6.7.7.10-6ubuntu3), pkg-config Filename: pool/main/i/imagemagick/libmagick++-dev_6.7.7.10-6ubuntu3_amd64.deb Size: 129508 MD5sum: 616084ff7f2f2c02682b411029fbafc9 SHA1: e2971f92e5e145a458e02bf8e6ad9e7dbd0177e6 SHA256: ec56274ddf99135be777c18cf1c75a3854b9f262ac67cc870659d60d59f15eda Description: object-oriented C++ interface to ImageMagick - development files Homepage: http://www.imagemagick.org/ Description-md5: b938b7703abcd228af38c5cac9f8ae72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmagick++5 Priority: optional Section: libs Installed-Size: 518 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: amd64 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libmagickcore5 (>= 8:6.7.7.10), libmagickwand5 (>= 8:6.7.7.10), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/i/imagemagick/libmagick++5_6.7.7.10-6ubuntu3_amd64.deb Size: 101944 MD5sum: 67a1c3dfbf44156a8ec16f3fbee19a84 SHA1: fc04709d330fcb6ff8df5963ff7bf66f354e56cf SHA256: 40085eccf11c7c886d56ed24058da9a77334227aa025bcd5f49ef5c2c3aa22d9 Description: object-oriented C++ interface to ImageMagick Multi-Arch: same Homepage: http://www.imagemagick.org/ Description-md5: 8e8fbab9ccdf45928236b9f3c42ecd91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: libmagickcore-dev Priority: optional Section: libdevel Installed-Size: 4961 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: amd64 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libmagickcore5 (= 8:6.7.7.10-6ubuntu3), libmagickcore5-extra (= 8:6.7.7.10-6ubuntu3), libbz2-dev, libdjvulibre-dev, libexif-dev, libfreetype6-dev, libgraphviz-dev, libjasper-dev, libjpeg-dev, liblcms2-dev, liblqr-1-0-dev, libltdl-dev, libopenexr-dev, libpng-dev, librsvg2-dev, libtiff5-dev, libwmf-dev, libx11-dev, libxext-dev, libxml2-dev, libxt-dev, zlib1g-dev, pkg-config Filename: pool/main/i/imagemagick/libmagickcore-dev_6.7.7.10-6ubuntu3_amd64.deb Size: 904332 MD5sum: a8122d04fa608566bc73a64b7a93ea6e SHA1: f251f9bfa82b16266bd14da3582cb048862f4d2d SHA256: 173fd4ae0350a95e545fc0f90728a351c82144a12d310377e2455d786b0e1c41 Description: low-level image manipulation library - development files Homepage: http://www.imagemagick.org/ Description-md5: aa88f5d5082ff9b7448857107c1318e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmagickcore5 Priority: optional Section: libs Installed-Size: 5918 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: amd64 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libbz2-1.0, libc6 (>= 2.14), libfftw3-double3, libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgomp1 (>= 4.2.1), libjasper1, libjbig0 (>= 2.0), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), liblqr-1-0 (>= 0.1.0), libltdl7 (>= 2.4.2), liblzma5 (>= 5.1.1alpha+20120614), libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3), libx11-6, libxext6, libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4), imagemagick-common Pre-Depends: multiarch-support Recommends: ghostscript, gsfonts Suggests: libmagickcore5-extra Filename: pool/main/i/imagemagick/libmagickcore5_6.7.7.10-6ubuntu3_amd64.deb Size: 1469096 MD5sum: 1eeab9610e0d932a41ba935499368c51 SHA1: 7133f4cc4426eb982b6aa96ec0b0004f959506cd SHA256: 5e8aa6b37e8bc5777e17f734ac843dc834d7e5a089147824671632a01eb4d5d4 Description: low-level image manipulation library Multi-Arch: same Homepage: http://www.imagemagick.org/ Description-md5: 31a16c71aad370b017e54b54536e4503 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libmagickcore5-extra Priority: optional Section: libs Installed-Size: 282 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: amd64 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Replaces: libmagickcore5 (<< 8:6.7.7.10-1) Provides: libmagickcore-extra Depends: libc6 (>= 2.4), libcairo2 (>= 1.6.0), libdjvulibre21 (>= 3.5.25.4), libglib2.0-0 (>= 2.12.0), libmagickcore5 (>= 8:6.7.7.10), libmagickwand5 (>= 8:6.7.7.10), libopenexr6 (>= 1.6.1), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), librsvg2-2 (>= 2.14.4), libwmf0.2-7 (>= 0.2.8.4), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Breaks: libmagickcore5 (<< 8:6.7.7.10-1) Filename: pool/main/i/imagemagick/libmagickcore5-extra_6.7.7.10-6ubuntu3_amd64.deb Size: 57948 MD5sum: d7c367d58041ccd5aea879168dff2b4e SHA1: 5ca1dbf35b7cc3eacb489fd5106fde243f06f591 SHA256: 38900d171f73f64d552d11bf57e97c8ec6a33a6ffd6526955b988195ec95312c Description: low-level image manipulation library - extra codecs Enhances: libmagickcore5 Multi-Arch: same Homepage: http://www.imagemagick.org/ Description-md5: 74d032fafdeeca601f033c6cd8e31fae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics Package: libmagickwand-dev Priority: optional Section: libdevel Installed-Size: 2490 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: amd64 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libmagickwand5 (= 8:6.7.7.10-6ubuntu3), libmagickcore5-extra (= 8:6.7.7.10-6ubuntu3), libmagickcore-dev (= 8:6.7.7.10-6ubuntu3), pkg-config Filename: pool/main/i/imagemagick/libmagickwand-dev_6.7.7.10-6ubuntu3_amd64.deb Size: 270482 MD5sum: 08b255ca8f9446b4e513323a9904dce7 SHA1: 6a6d0c9f9c4020acda0dd9dfeb75596b20df2fb1 SHA256: 99dd6fa5137cc28e14d7e1e2278ba1ad13b3def7d666fbe95a2bd144bb2db9f1 Description: image manipulation library - development files Homepage: http://www.imagemagick.org/ Description-md5: 431e989a3aae92a173c5b1cf4ffe85eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmagickwand5 Priority: optional Section: libs Installed-Size: 1205 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: amd64 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libc6 (>= 2.4), libgomp1 (>= 4.2.1), libmagickcore5 (>= 8:6.7.7.10), libx11-6, imagemagick-common Pre-Depends: multiarch-support Filename: pool/main/i/imagemagick/libmagickwand5_6.7.7.10-6ubuntu3_amd64.deb Size: 266200 MD5sum: 36efec7cd057b749e4635577886363ba SHA1: 9a8f26c3400227c656f1942cf5063270ff9a8b73 SHA256: 14a00c6f523622dd0d8c9bb3d4b6802008873789dde8a226db3ec6f71989ba1f Description: image manipulation library Multi-Arch: same Homepage: http://www.imagemagick.org/ Description-md5: 551ef05d728c4f543dc3afb54a3f6c73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libmail-dkim-perl Priority: optional Section: perl Installed-Size: 320 Maintainer: Ubuntu Developers Original-Maintainer: Magnus Holmgren Architecture: all Version: 0.40-1 Replaces: dkimproxy (<< 1.2-1) Depends: perl, liberror-perl, libdigest-sha-perl, libmailtools-perl, libnet-dns-perl, libcrypt-openssl-rsa-perl (>= 0.24) Breaks: dkimproxy (<< 1.2-1) Filename: pool/main/libm/libmail-dkim-perl/libmail-dkim-perl_0.40-1_all.deb Size: 117062 MD5sum: dfb495e1dbafd14c0babe198e070e6a0 SHA1: 7d68b7a65623b69951316db264771217328865ec SHA256: fc4b6ab5d99d37944cf8346d5d634eea2ca5c4e44d19aa481ae2663a213cbbd2 Description: cryptographically identify the sender of email - perl library Homepage: http://dkimproxy.sourceforge.net Description-md5: b5224c71b80164be0ca2a88e302ea1a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmail-sendmail-perl Priority: optional Section: perl Installed-Size: 100 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.79.16-1 Depends: perl (>= 5.6.0-16), libsys-hostname-long-perl Filename: pool/main/libm/libmail-sendmail-perl/libmail-sendmail-perl_0.79.16-1_all.deb Size: 26546 MD5sum: 773c8b4c576f4a7ccf0c220d067750ac SHA1: 35f4c0122ca7ebdd96d6670cb1f1504b99fcdcc0 SHA256: 0a672b0a6bfc55befb25bcd6a3cab8698d7c4d315cfc5054691bbde51c81c457 Description: Send email from a perl script Homepage: http://search.cpan.org/dist/Mail-Sendmail/ Description-md5: c99e9bea3b33d0df7b7642d28e799a07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmail-spf-perl Priority: optional Section: perl Installed-Size: 330 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Source: mail-spf-perl Version: 2.9.0-2 Depends: perl, liberror-perl, libnet-dns-perl, libnetaddr-ip-perl, liburi-perl Filename: pool/main/m/mail-spf-perl/libmail-spf-perl_2.9.0-2_all.deb Size: 125248 MD5sum: cbeafbf76decaf4cb2856e43595cfefb SHA1: a41d921b635f06cbbdd16effe43d28f06f6d5e7a SHA256: d391a8dfe85d557c42f087ba02cb4cb513b9d83755df602069c802c8b8c2646d Description: Perl implementation of Sender Policy Framework and Sender ID Homepage: https://metacpan.org/release/Mail-SPF/ Description-md5: 5a00e9c63268c570413928246a2be58c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libmailtools-perl Priority: optional Section: perl Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: all Version: 2.12-1 Replaces: mailtools (<= 1.15-1) Provides: libmail-perl, mailtools Depends: perl, libnet-perl, libtimedate-perl, libnet-smtp-ssl-perl Conflicts: mailtools (<= 1.15-1) Filename: pool/main/libm/libmailtools-perl/libmailtools-perl_2.12-1_all.deb Size: 84130 MD5sum: c4ae7cadbfedb24d516350ffb60373a9 SHA1: 2c64a0dea8fede90c57e064414dbb3e77cfc6acb SHA256: 5826e00b18f07332515299769639657f7b419b0c27176b7d71a98ea1f404577f Description: Manipulate email in perl programs Homepage: http://search.cpan.org/dist/MailTools/ Description-md5: c42aa1e49d681dcc200129315de37221 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmalaga-dev Priority: optional Section: libdevel Installed-Size: 330 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: amd64 Source: malaga Version: 7.12-4.1ubuntu1 Depends: libmalaga7 (= 7.12-4.1ubuntu1), libglib2.0-dev Suggests: malaga-bin Conflicts: libmalaga1-dev, libmalaga2-dev Filename: pool/main/m/malaga/libmalaga-dev_7.12-4.1ubuntu1_amd64.deb Size: 61188 MD5sum: 9dbbdf9053b64df1172d3ed9717a16c9 SHA1: b14808155fc472cc829397a288a412f9ba3c393c SHA256: 27815bc61a3c1047407130496ddf69f7d43bf5ca82d80f0fdd754f83f38f5c74 Description: Developer's library for automatic language analysis Description-md5: 0f14c7e9301a57c28eb88f80566d75ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmalaga7 Priority: optional Section: libs Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: amd64 Source: malaga Version: 7.12-4.1ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.12.0) Conflicts: libmalaga1-dev, libmalaga2-dev Filename: pool/main/m/malaga/libmalaga7_7.12-4.1ubuntu1_amd64.deb Size: 57646 MD5sum: 8e6cd3b129b7da0e93e27ce025da1467 SHA1: 9b65750066a333e5971870635067d0d59e801c8c SHA256: 44ec9b3f5cf998c5c49733a53d569fef09a3137cd44060e986af02f1f63f84b8 Description: Automatic language analysis library Description-md5: 34bbd08fc78078f1acc2fcbdd38d471a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmbim-glib-dev Priority: optional Section: libdevel Installed-Size: 510 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Bechtold Architecture: amd64 Source: libmbim Version: 1.6.0-2 Depends: libmbim-glib0 (= 1.6.0-2), libglib2.0-dev Suggests: libmbim-glib-doc Filename: pool/main/libm/libmbim/libmbim-glib-dev_1.6.0-2_amd64.deb Size: 65486 MD5sum: 4fa4c977f50e33138c3cf4621b786034 SHA1: b164bd51848221d7a59c5affa4b141d7da8eb199 SHA256: 93af1bb50da56349a447f699050bd9785490e64a5096679c2e292a66e0e9973f Description: Header files for adding MBIM support to applications that use glib Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/libmbim/ Description-md5: a9f4b979e7f90fb1a34c15fa316ad3c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmbim-glib-doc Priority: optional Section: doc Installed-Size: 1324 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Bechtold Architecture: all Source: libmbim Version: 1.6.0-2 Suggests: devhelp Filename: pool/main/libm/libmbim/libmbim-glib-doc_1.6.0-2_all.deb Size: 65024 MD5sum: 3e534eb2c31487b062687df397d0a751 SHA1: c8f4a92718f7f2e78b29b0dc70aeea84d3449666 SHA256: a895252c7df8b2ffb0b81608ed7a9bd24adc05253a2ed1322339bd3443b0acf2 Description: API documentation for the MBIM protocol library Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/libmbim/ Description-md5: 0097ac93077e9d8330b5f2f644defb0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmbim-glib0 Priority: optional Section: libs Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Bechtold Architecture: amd64 Source: libmbim Version: 1.6.0-2 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146) Pre-Depends: multiarch-support Filename: pool/main/libm/libmbim/libmbim-glib0_1.6.0-2_amd64.deb Size: 49376 MD5sum: fbdfc5cc94f1c0309cbc141cdbe6d52a SHA1: af1e7fd1c749334214f64e6b874cb48af6c40c8d SHA256: f0e21bf2f80b147b985f4febc5b6bfb18ea18be5ebd445b7eb901d0dba0d2d72 Description: Support library to use the MBIM protocol Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/libmbim/ Description-md5: 34268237931c65f4ad4ec124116fec86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmdb2 Priority: optional Section: libs Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: amd64 Source: mdbtools Version: 0.7.1-1ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.12.0) Pre-Depends: multiarch-support Suggests: mdbtools-doc Filename: pool/main/m/mdbtools/libmdb2_0.7.1-1ubuntu1_amd64.deb Size: 46610 MD5sum: c35183a0124a346fd65d16a193312ed1 SHA1: 9143d93eda5674f8606ed230046107c5f0429d3e SHA256: f5cea5be4332ca02cf4d0f831c3dbf28a035893fbe614be903903ff1244e232f Description: Core library for accessing JET / MS Access (MDB) files Multi-Arch: same Homepage: http://mdbtools.sourceforge.net/ Description-md5: 4662ebd8f8175e8d1b5b5b1a82a207cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmdbsql2 Priority: optional Section: libs Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: amd64 Source: mdbtools Version: 0.7.1-1ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.12.0), libmdb2 (>= 0.7~rc1) Pre-Depends: multiarch-support Suggests: mdbtools-doc Filename: pool/main/m/mdbtools/libmdbsql2_0.7.1-1ubuntu1_amd64.deb Size: 22244 MD5sum: 0c5b1cbbb547f94489da8ba3f7b12c26 SHA1: 2ec99e40dd149084b11cb3ee989e6bd15479cec6 SHA256: 8de9314ce89cda54e71e968a7c9d741c766f9cba96eaf45f0871350e4ab313cc Description: mdbtools SQL library Multi-Arch: same Homepage: http://mdbtools.sourceforge.net/ Description-md5: 4631d1cf31db9c8b0dbb06584f110982 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmdds-dev Priority: optional Section: libdevel Installed-Size: 655 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: mdds Version: 0.10.2-1 Depends: libboost-dev (>= 1.39) Filename: pool/main/m/mdds/libmdds-dev_0.10.2-1_all.deb Size: 75750 MD5sum: 6342a5722bd35dba048bef2c10d440bf SHA1: 7a99d7362d60f44c93f61918e5977267b3cd7548 SHA256: b703b72164d86f052c00b118ee8450f33672661a3424980884c92483955e196f Description: Multi Dimension Data structure library -- headers Homepage: http://code.google.com/p/multidimalgorithm/ Description-md5: 25a247f8274e76d26ab3b83ab127592a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmeanwhile-dev Priority: optional Section: libdevel Installed-Size: 3465 Maintainer: Ubuntu Developers Original-Maintainer: Chris Vanden Berghe Architecture: amd64 Source: meanwhile Version: 1.0.2-4.1ubuntu1 Depends: libmeanwhile1 (= 1.0.2-4.1ubuntu1), libglib2.0-dev Filename: pool/main/m/meanwhile/libmeanwhile-dev_1.0.2-4.1ubuntu1_amd64.deb Size: 287852 MD5sum: 76f031e469a1f80c62429ae3506169c4 SHA1: f0b6322023f698d09d57877f486e87273f43d07b SHA256: d4fa1ef86b2c4d2bad7a3021d73bc1ca4dc723b373494f2bd8ca45210ecf0d2c Description: development package for libmeanwhile1 Homepage: http://meanwhile.sourceforge.net/ Description-md5: 8fd2a69c10b4d3d15506fb7abd55ad82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmeanwhile1 Priority: optional Section: libs Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Chris Vanden Berghe Architecture: amd64 Source: meanwhile Version: 1.0.2-4.1ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.24.0) Filename: pool/main/m/meanwhile/libmeanwhile1_1.0.2-4.1ubuntu1_amd64.deb Size: 72324 MD5sum: 24c9ca142e970e6c69c411c23f50c72a SHA1: f3bc5e8286654fb2cd027b41e136c63005648e31 SHA256: b48aea7fbe2bbfb9c77422578ac0e25b7bd16fd65c18b3c28deaa2410aa4b12c Description: open implementation of the Lotus Sametime Community Client protocol Homepage: http://meanwhile.sourceforge.net/ Description-md5: 82e65bea7e1388bd4ffee62b6cc57363 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libmedia-dev Priority: extra Section: libdevel Installed-Size: 84 Maintainer: Ubuntu Developers Architecture: amd64 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu24) Depends: libmedia1 (= 0.1.0+git20131207+e452e83-0ubuntu12), android-headers (>= 4.2.2) Breaks: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu24) Filename: pool/main/libh/libhybris/libmedia-dev_0.1.0+git20131207+e452e83-0ubuntu12_amd64.deb Size: 7794 MD5sum: 20cb7e9618d011e119ff8e9acea6e3af SHA1: d78a65eb599703f9b7b5dfa15724dc438ac515c0 SHA256: fa50b1e8d9ae7d481c81907002f72f941c75e3420a1ad6fd9de1d11f4ca3d9dd Description: Development files for libmedia Description-md5: 45c1b80daa4ded84393244ce3d2a9727 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmedia1 Priority: extra Section: libs Installed-Size: 84 Maintainer: Ubuntu Developers Architecture: amd64 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu24) Depends: libc6 (>= 2.2.5), libhybris-common1 Breaks: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu24) Filename: pool/main/libh/libhybris/libmedia1_0.1.0+git20131207+e452e83-0ubuntu12_amd64.deb Size: 11084 MD5sum: d2154c981a8459726e9f5faf8a14451f SHA1: 034486dc14dd0c8b36d6792b18813474737fb06f SHA256: 473a02f41eacd00ec4774d7145d9a0114c48d89617415b7ec39a61d336972961 Description: Library to provide access to the Android Media HAL Description-md5: 968155d5552481900c9c19d78d6ac2e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmemcached-dbg Priority: extra Section: debug Installed-Size: 1059 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: amd64 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libhashkit2 (= 1.0.8-1ubuntu2), libmemcached10 (= 1.0.8-1ubuntu2), libmemcachedprotocol0 (= 1.0.8-1ubuntu2), libmemcachedutil2 (= 1.0.8-1ubuntu2) Filename: pool/main/libm/libmemcached/libmemcached-dbg_1.0.8-1ubuntu2_amd64.deb Size: 772276 MD5sum: 83e9e836e68dfd96f9d6f1c7034d3040 SHA1: 92db8c0a15288956071d3e30f936e958aa3df379 SHA256: f68190c949c792b1f8fcecb0d473f0450187f66225279247bf4918409ebbbced Description: Debug Symbols for libmemcached Homepage: http://libmemcached.org/libMemcached.html Description-md5: ea156c0423f71127a41893b481e0c365 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmemcached-dev Priority: extra Section: libdevel Installed-Size: 970 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: amd64 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libhashkit-dev (= 1.0.8-1ubuntu2), libmemcached10 (= 1.0.8-1ubuntu2), libmemcachedprotocol0 (= 1.0.8-1ubuntu2), libmemcachedutil2 (= 1.0.8-1ubuntu2), libsasl2-dev Filename: pool/main/libm/libmemcached/libmemcached-dev_1.0.8-1ubuntu2_amd64.deb Size: 256482 MD5sum: a4ef45953adf97e168dfd09731739420 SHA1: ee22f8d6829ad793be03c8d023fb06b4f5e15c81 SHA256: c6cd52babbf8ac41b002b36daf4d32bc754640d0208425ce3c2ba77cb1ceec95 Description: C and C++ client library to the memcached server (development files) Homepage: http://libmemcached.org/libMemcached.html Description-md5: c6bfdfff5c9729d4f01c13bcee57b0f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmemcached-tools Priority: extra Section: libs Installed-Size: 317 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: amd64 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libc6 (>= 2.14), libmemcached10, libmemcachedutil2, libstdc++6 (>= 4.4.0) Filename: pool/main/libm/libmemcached/libmemcached-tools_1.0.8-1ubuntu2_amd64.deb Size: 67694 MD5sum: 9f32b9eeeb63bbd1c09d9b5cc7a55257 SHA1: 9c49003c6b5756eb5f356dea10f7b3a0a040cb9a SHA256: e3510ffe87092ebefb494bb6f85f20f2e4834fb072a66a5b0ab5f6af988749b1 Description: Commandline tools for talking to memcached via libmemcached Homepage: http://libmemcached.org/libMemcached.html Description-md5: 452050d3ea8edcbdcb07d155e78d191b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmemcached10 Priority: optional Section: libs Installed-Size: 257 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: amd64 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libc6 (>= 2.16), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Conflicts: libmemcached2, libmemcached3, libmemcached6, libmemcached9 Filename: pool/main/libm/libmemcached/libmemcached10_1.0.8-1ubuntu2_amd64.deb Size: 83420 MD5sum: 3da7287219ed2b5e4bbf59e3c5a31d1f SHA1: be04c7e5298abf292dc2801d6219dd3858c2a0c7 SHA256: 8a3a839c50e282da33f60aa359a24fa3d35237f53b4e7d23d132a3ca753ed533 Description: C and C++ client library to the memcached server Multi-Arch: same Homepage: http://libmemcached.org/libMemcached.html Description-md5: c520748ef0b458bdb796b190ce42a1b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmemcachedprotocol0 Priority: extra Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: amd64 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libm/libmemcached/libmemcachedprotocol0_1.0.8-1ubuntu2_amd64.deb Size: 17242 MD5sum: 0f6556ad3333b59a7522421be1c34dba SHA1: 950e5348571139dd49a69ee6860c635b42542b51 SHA256: 70deaf2c4bb7f0ed7dddf7f95da794c6ec7b5a69e08959ead340a563826a333c Description: library implementing the memcached protocol Multi-Arch: same Homepage: http://libmemcached.org/libMemcached.html Description-md5: 45aa031d095cb9d6252f2a53b89ec26d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmemcachedutil2 Priority: optional Section: libs Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: amd64 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libc6 (>= 2.3.4), libmemcached10, libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/libm/libmemcached/libmemcachedutil2_1.0.8-1ubuntu2_amd64.deb Size: 9366 MD5sum: 2997305d8ed7481721e08d0347861fb7 SHA1: 8a8fc6b5ae6dadebe262a43bf0e415b8af5ddb56 SHA256: 5235e0faa66a6efdeaacfaa92dde01386ba44f17473698317e85ee308a72b751 Description: library implementing connection pooling for libmemcached Multi-Arch: same Homepage: http://libmemcached.org/libMemcached.html Description-md5: 32cdf0c564bc73569ee13e19a7b567d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmessaging-menu-dev Priority: optional Section: libdevel Installed-Size: 308 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: indicator-messages Version: 13.10.1+14.04.20140410-0ubuntu1 Depends: gir1.2-messagingmenu-1.0 (= 13.10.1+14.04.20140410-0ubuntu1), libmessaging-menu0 (= 13.10.1+14.04.20140410-0ubuntu1), libglib2.0-dev Filename: pool/main/i/indicator-messages/libmessaging-menu-dev_13.10.1+14.04.20140410-0ubuntu1_amd64.deb Size: 20468 MD5sum: 0006662f74176ea8a780a55db7dfd76a SHA1: 7ae7640838ff4395dc48595553df003a1ea2306d SHA256: 4f549bd3816621386be13ce5291b94ed1acb7fcd1f5bfae7c282db9c719ba4ac Description: Messaging Menu - library development files Homepage: https://launchpad.net/indicator-messages Description-md5: ce906b4d3b8508aa9afe60c759709b5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmessaging-menu0 Priority: optional Section: libs Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: amd64 Source: indicator-messages Version: 13.10.1+14.04.20140410-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3) Filename: pool/main/i/indicator-messages/libmessaging-menu0_13.10.1+14.04.20140410-0ubuntu1_amd64.deb Size: 21862 MD5sum: 956dc748d9fafffb524b06842e6b876e SHA1: f8ec68487d7e671e4eeb238be26cea0025b8c767 SHA256: b175f146210b94adad2698b8854c6d9bff58574a14e2d2ca31ab88bc9f7ca5de Description: Messaging Menu - shared library Homepage: https://launchpad.net/indicator-messages Description-md5: 364e71724412de3ba2d663ca34406232 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmetacity-dev Priority: optional Section: libdevel Installed-Size: 593 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: metacity Version: 1:2.34.13-0ubuntu4 Depends: libmetacity-private0a (= 1:2.34.13-0ubuntu4), libgtk2.0-dev Filename: pool/main/m/metacity/libmetacity-dev_2.34.13-0ubuntu4_amd64.deb Size: 77072 MD5sum: 44d07f9e81c0f34a108b5d9557590688 SHA1: d01987c0bca430bbf938a51c529abfbaafb4e2f4 SHA256: 2b6d63df214c96c042a5453d6396cfa5fec6bb8813a680bcc17b251d56c2141c Description: development files for the Metacity window manager Description-md5: 73dfc7ddc60f3c7fc625adfe06749201 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmetacity-private0a Priority: optional Section: libs Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: metacity Version: 1:2.34.13-0ubuntu4 Replaces: libmetacity-private0 Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), metacity-common (= 1:2.34.13-0ubuntu4) Breaks: libmetacity-private0 Filename: pool/main/m/metacity/libmetacity-private0a_2.34.13-0ubuntu4_amd64.deb Size: 107698 MD5sum: b7c931601a672f1107b9fb92930778b0 SHA1: b917b2d9a900d6c8d244b86a7f43a2a18980a951 SHA256: a6f677ba209ed29c51885a8486b0544b91c684d700176986535001685abc7ef7 Description: library for the Metacity window manager Description-md5: ee7c90f337314f26935c451de494dba0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libmhash-dev Priority: optional Section: libdevel Installed-Size: 320 Maintainer: Ubuntu Developers Original-Maintainer: Chris Hanson Architecture: amd64 Source: mhash Version: 0.9.9.9-4 Depends: libmhash2 (= 0.9.9.9-4), libc6-dev Filename: pool/main/m/mhash/libmhash-dev_0.9.9.9-4_amd64.deb Size: 119064 MD5sum: 38209b8431e161b18badeacfebedfc54 SHA1: 8d75bddbfa64299636feb9025f4b9df789ef87ae SHA256: 63a0a9816f8fa306dc4fc79787bfff38761abb230364ee86a9d062704fc7acf7 Description: Library for cryptographic hashing and message authentication Homepage: http://mhash.sourceforge.net/ Description-md5: 76bc2c8552d8e642bc02127f01075ff5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmhash2 Priority: optional Section: libs Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Chris Hanson Architecture: amd64 Source: mhash Version: 0.9.9.9-4 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/m/mhash/libmhash2_0.9.9.9-4_amd64.deb Size: 101500 MD5sum: 194f31871fb95037073d98a3a09b71cb SHA1: b3e99be0938fc5d5b85699f78cd66d10b7610f10 SHA256: 47604dd32f19a88c51c17a997190bb74945f22fcdcd53f68b6f8d3a4bb428cba Description: Library for cryptographic hashing and message authentication Multi-Arch: same Homepage: http://mhash.sourceforge.net/ Description-md5: 9dc72d6d0af87ec3a9ba2e0c3ea2f30f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: libmilter-dev Priority: extra Section: libdevel Installed-Size: 718 Maintainer: Ubuntu Developers Original-Maintainer: Jakub Safarik Architecture: amd64 Source: sendmail Version: 8.14.4-4.1ubuntu1 Depends: libmilter1.0.1 (= 8.14.4-4.1ubuntu1) Suggests: sendmail-doc Filename: pool/main/s/sendmail/libmilter-dev_8.14.4-4.1ubuntu1_amd64.deb Size: 94218 MD5sum: c5af9f8824e60a252023eeb19782942c SHA1: 87eda2c0f1bb5a8bb0fe7c30d1a0ec2fdf87c75b SHA256: 3ae2d599e48e592fbee3aac403996c3434b7c99914d89ef88c6b501795f264aa Description: Sendmail Mail Filter API (Milter) Homepage: http://www.sendmail.org Description-md5: c3fb132e77439d35e15e1f829aa855de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmilter1.0.1 Priority: extra Section: libs Installed-Size: 321 Maintainer: Ubuntu Developers Original-Maintainer: Jakub Safarik Architecture: amd64 Source: sendmail Version: 8.14.4-4.1ubuntu1 Depends: libc6 (>= 2.14) Filename: pool/main/s/sendmail/libmilter1.0.1_8.14.4-4.1ubuntu1_amd64.deb Size: 37272 MD5sum: be220b3b1067080b3040b8870925ffd3 SHA1: 3f7d112341ea0371585e33c593d130617b5691ca SHA256: 043e1763458e7f0703dde18efc4ce3aeed881a6d5bff901b2e491374e5afd9ec Description: Sendmail Mail Filter API (Milter) Homepage: http://www.sendmail.org Description-md5: 1ab872167c7f9ea0ae2341dd78f2e74a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmilter1.0.1-dbg Priority: extra Section: libs Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Jakub Safarik Architecture: amd64 Source: sendmail Version: 8.14.4-4.1ubuntu1 Depends: libmilter1.0.1 (= 8.14.4-4.1ubuntu1) Filename: pool/main/s/sendmail/libmilter1.0.1-dbg_8.14.4-4.1ubuntu1_amd64.deb Size: 52930 MD5sum: 68ad38a51b0c05e53b78eac188d827f0 SHA1: 1be8048ebd7c089a59a624d8166c2d5d76dd9aec SHA256: 212c1f226ee8b52117901271a960b51de98af87cddd9a39c0e904a27cc56213b Description: Sendmail Mail Filter API (Milter) Homepage: http://www.sendmail.org Description-md5: c94eeab74d99cf4d239d68889c4613c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmime-charset-perl Priority: optional Section: perl Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.011.1-1 Depends: perl Suggests: libencode-hanextra-perl Filename: pool/main/libm/libmime-charset-perl/libmime-charset-perl_1.011.1-1_all.deb Size: 31878 MD5sum: c0513c1797e4a5ca9e9284cced638b30 SHA1: 422b62154e8d5bb9aa8a3fdde543ce0bb4c9fbea SHA256: 3378b3be5d37d8765599014732003adf285a0ddfec1600bba94058e3e1c3d9b1 Description: module for MIME character set information Homepage: https://metacpan.org/release/MIME-Charset/ Description-md5: c18f33cdbc0746a4313e3e4add8bbe41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmime-tools-perl Priority: optional Section: perl Installed-Size: 501 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 5.505-1 Replaces: libmime-perl (<< 5.425-2) Provides: libmime-perl Depends: libconvert-binhex-perl, libmailtools-perl, perl Breaks: libmime-perl (<< 5.425-2) Filename: pool/main/libm/libmime-tools-perl/libmime-tools-perl_5.505-1_all.deb Size: 206270 MD5sum: a5ec8b322d5b9c85cdf23f82c568e1cb SHA1: 5059deb62c9b6c29011d7683d01a4a549c090379 SHA256: ddc2d4ed5d5b45b19d7e0d25347a79d2571258fc18f04573abe314e9fbe3b94e Description: Perl5 modules for MIME-compliant messages Homepage: https://metacpan.org/release/MIME-tools/ Description-md5: f87eb3d08cacb30d93af298f91117b0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libmime-types-perl Priority: optional Section: perl Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.04-1 Depends: perl Filename: pool/main/libm/libmime-types-perl/libmime-types-perl_2.04-1_all.deb Size: 47758 MD5sum: 7ad62f4e8979032c82e285341554c499 SHA1: ba9c01539d15fd48b6adcf4f7fd03018071277fa SHA256: a64448c250760c4a96e983663ac5fa5b70b327a0b5f7f54d077f707767997014 Description: Perl extension for determining MIME types and Transfer Encoding Homepage: http://perl.overmeer.net/mimetypes/ Description-md5: 6c98117d72d39563703824d7dd685d5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libminiupnpc-dev Priority: optional Section: libdevel Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Goirand Architecture: amd64 Source: miniupnpc Version: 1.6-3ubuntu2 Replaces: libminiupnpc5, libminiupnpc8 (<= 1.6-1) Depends: libminiupnpc8 (= 1.6-3ubuntu2) Suggests: minissdpd Filename: pool/main/m/miniupnpc/libminiupnpc-dev_1.6-3ubuntu2_amd64.deb Size: 29888 MD5sum: 4f376aa5e84826b8d0f9e75a8d6b1a80 SHA1: 9d4de44092d9aea2d78af0bc9d3cea780d2144be SHA256: fc54181bb59364f4765c464e28a6ac9a20e73cf8bece529289d88b51c666f683 Description: UPnP IGD client lightweight library development files Homepage: http://miniupnp.free.fr/ Description-md5: b76b4a36753fd30004f1cf8ca91a3318 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libminiupnpc8 Priority: optional Section: net Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Goirand Architecture: amd64 Source: miniupnpc Version: 1.6-3ubuntu2 Depends: libc6 (>= 2.15) Suggests: minissdpd Filename: pool/main/m/miniupnpc/libminiupnpc8_1.6-3ubuntu2_amd64.deb Size: 23288 MD5sum: e6a58531ab7bd90a37f74b84768d4bea SHA1: 6de751d2b3d5fc75605503a561b777fa4b719227 SHA256: 90b195a4a99ebc108378aae599209546e2939c39ab4815321a802470d4687ed9 Description: UPnP IGD client lightweight library Homepage: http://miniupnp.free.fr/ Description-md5: 194defbf2e4c77dd9feae4a875fdd198 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmirclient-dev Priority: optional Section: libdevel Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libmirclient7 (= 0.1.8+14.04.20140411-0ubuntu1), libmirprotobuf-dev (= 0.1.8+14.04.20140411-0ubuntu1), mircommon-dev (= 0.1.8+14.04.20140411-0ubuntu1) Filename: pool/main/m/mir/libmirclient-dev_0.1.8+14.04.20140411-0ubuntu1_amd64.deb Size: 7888 MD5sum: 1135738fe7424ed3d247864b7be5cf21 SHA1: 203644c6ded5b4335c40df11e1ac3ff6ec8f01ca SHA256: 544960a877bc2900ad8669c0180e295dd3e8aead6884fefb24c47f160a37ce27 Description: Display server for Ubuntu - development headers Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: bad81f957875312d57ff2d16afca10de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirclient7 Priority: optional Section: libs Installed-Size: 597 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libboost-system1.54.0, libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libmirprotobuf0 (>= 0.1.8+14.04.20140411), libprotobuf8, libstdc++6 (>= 4.8.1), libxkbcommon0 (>= 0.2.0), libmirclientplatform-mesa (= 0.1.8+14.04.20140411-0ubuntu1) | libmirclientplatform-android (= 0.1.8+14.04.20140411-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirclient7_0.1.8+14.04.20140411-0ubuntu1_amd64.deb Size: 146594 MD5sum: cc7d4834264b2cd453342f94aa9e1c35 SHA1: ac2ca8107e4d4b60b112ce95bbfcdb748ff45562 SHA256: f1324aa224eed08bf263e0ca3d4e71c169ba65c589da26232575aa72f4fefd43 Description: Display server for Ubuntu - client library Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: 833ddf930ef3c3df05aca4213ced851d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirclientplatform-mesa Priority: optional Section: libs Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Replaces: libmirclientplatform Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libmirclient7 (>= 0.1.8+14.04.20140411), libstdc++6 (>= 4.8) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirclientplatform-mesa_0.1.8+14.04.20140411-0ubuntu1_amd64.deb Size: 23922 MD5sum: 72c7bd3e3179a4706165d2ca4011631e SHA1: 800dba7656768c69b62fee7ddd4bda3d0697bfb1 SHA256: 88053528aedf06117d5b36bb376bc1c32540ab0a763434cb78349f9bd3e82529 Description: Display server for Ubuntu - client platform library for Mesa Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: 7f708e9b58896cab3f8376eb75eb95dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirplatform Priority: optional Section: libs Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Replaces: libmirserver0 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.5), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirplatform_0.1.8+14.04.20140411-0ubuntu1_amd64.deb Size: 24874 MD5sum: f1a1f9813cfaa5168aec305801c51744 SHA1: d59f5230d6f16242d6c8aacafad38c6e0439ddd3 SHA256: b643730f65034549cc829a401adf1914af6d7a5dbe5b6757c30139ce80de0e8d Description: Display server for Ubuntu - platform library Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: 5ca581b6c17780dd3707f6b3fff2597b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirplatformgraphics-mesa Priority: optional Section: libs Installed-Size: 531 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libboost-program-options1.54.0, libc6 (>= 2.15), libdrm2 (>= 2.4.38), libegl1-mesa (>= 7.8.1) | libegl1-x11, libgbm1 (>= 8.1~0), libgcc1 (>= 1:4.1.1), libgles2-mesa (>= 7.8.1) | libgles2, libstdc++6 (>= 4.8), libmirplatform (= 0.1.8+14.04.20140411-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirplatformgraphics-mesa_0.1.8+14.04.20140411-0ubuntu1_amd64.deb Size: 114624 MD5sum: 322a6f63438353b741951e088f98af8d SHA1: 9312590976d00d1799c26142ee97797ece9966ce SHA256: 3887026601d489bd70a639ed0fd5b9ab5f021484a1b8136ee81690371de9b861 Description: Display server for Ubuntu - platform library for Mesa Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: a9ad8c2694250846336154db96327f86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirprotobuf-dev Priority: optional Section: libdevel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libmirprotobuf0 (= 0.1.8+14.04.20140411-0ubuntu1), libprotobuf-dev Filename: pool/main/m/mir/libmirprotobuf-dev_0.1.8+14.04.20140411-0ubuntu1_amd64.deb Size: 4556 MD5sum: e098052c87e7bd5c82be4c706154ff14 SHA1: 034753b82845d4849672d4d6b01689a222dcd16a SHA256: 3e0b1828e7efc5d15aebe87a1eb196eafcd9f4a25c036f78304a14bc699494d8 Description: Display server for Ubuntu - protocol definition Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: dafcf3520428a348b335759e46da047f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirprotobuf0 Priority: optional Section: libs Installed-Size: 346 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libprotobuf8, libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirprotobuf0_0.1.8+14.04.20140411-0ubuntu1_amd64.deb Size: 75236 MD5sum: b7267e0553b7b72da22f0d262b517e69 SHA1: 2dc2bd71309a77dc93b321b3135f0c03061a6d63 SHA256: af7adf441c736fa012c790fcbb460a889e23918b74637e7efa02f3b93a6249a9 Description: Display server for Ubuntu - protocol implementation Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: c619d91f67bba57f73bf198297f21d7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirserver-dev Priority: optional Section: libdevel Installed-Size: 350 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libmirserver18 (= 0.1.8+14.04.20140411-0ubuntu1), libmirprotobuf-dev (= 0.1.8+14.04.20140411-0ubuntu1), mircommon-dev (= 0.1.8+14.04.20140411-0ubuntu1), libglm-dev, libboost-program-options-dev Filename: pool/main/m/mir/libmirserver-dev_0.1.8+14.04.20140411-0ubuntu1_amd64.deb Size: 32630 MD5sum: d0418e45b0ab6e90f48dd920320b3af5 SHA1: e5044871355027d3b42ed9008e677eec8533f5f6 SHA256: a089651efd1e868e44277fea317940cdb2d5e3a0f349a31acccd9289b9ac6fd8 Description: Display server for Ubuntu - development headers Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: 98260f2d94306b61ba8e99360b379f43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirserver18 Priority: optional Section: libs Installed-Size: 2234 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libboost-program-options1.54.0, libboost-system1.54.0, libc6 (>= 2.17), libegl1-mesa (>= 7.8.1) | libegl1-x11, libgcc1 (>= 1:4.1.1), libgflags2, libgles2-mesa (>= 7.8.1) | libgles2, libgoogle-glog0, libmirclient7 (>= 0.1.8+14.04.20140411), libmirprotobuf0 (>= 0.1.8+14.04.20140411), libprotobuf8, libstdc++6 (>= 4.8.1), libxkbcommon0 (>= 0.2.0), libmirplatform (= 0.1.8+14.04.20140411-0ubuntu1), libmirplatformgraphics-mesa (= 0.1.8+14.04.20140411-0ubuntu1) | libmirplatformgraphics-android (= 0.1.8+14.04.20140411-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirserver18_0.1.8+14.04.20140411-0ubuntu1_amd64.deb Size: 514518 MD5sum: 93f6ca3f9f6dd6331ae62e943236dc80 SHA1: ea383bce242f460ea298ad49d33daf7961c9c8bc SHA256: fc90a6dfb475f31bf7d9c662e9c2801488fb24fddbe64b6da51ef61947a38afe Description: Display server for Ubuntu - server library Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: ec9e31363965aaba264f7029d7781e84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmission-control-plugins-dev Priority: extra Section: libdevel Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-mission-control-5 Version: 1:5.16.1-1ubuntu3 Depends: libmission-control-plugins0 (= 1:5.16.1-1ubuntu3) Suggests: libmission-control-plugins-doc Filename: pool/main/t/telepathy-mission-control-5/libmission-control-plugins-dev_5.16.1-1ubuntu3_amd64.deb Size: 6876 MD5sum: 50c2beff5bd7d7811ddbedf00d212c08 SHA1: 1e18bb5639a29f9a696f23a09b7d6eb0c536457a SHA256: 084f251f3e43d55efef9df15a93057181bd5f9ed6afbfcbc9f2d9de4417241e1 Description: management daemon for Telepathy (headers for plugins) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 0115beafbafd4cd8fe1e1d8f4a8a84b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmission-control-plugins-doc Priority: extra Section: doc Installed-Size: 339 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: telepathy-mission-control-5 Version: 1:5.16.1-1ubuntu3 Filename: pool/main/t/telepathy-mission-control-5/libmission-control-plugins-doc_5.16.1-1ubuntu3_all.deb Size: 31308 MD5sum: 35521bc5faab09b3faa3a32ce5416f3b SHA1: debf37875e8a433aae3c88fa97187c68656937a5 SHA256: f13be9dcdfcaf6eca9f4386fecb8cc0f1bf07114eecb658ea06925b6268a2a6a Description: management daemon for Telepathy (documentation for plugins) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: e1975b335d367bc7d6e7733a2fbafd49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmission-control-plugins0 Priority: optional Section: libs Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-mission-control-5 Version: 1:5.16.1-1ubuntu3 Depends: libc6 (>= 2.2.5), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.32), libtelepathy-glib0 (>= 0.20) Recommends: telepathy-mission-control-5 (= 1:5.16.1-1ubuntu3) Filename: pool/main/t/telepathy-mission-control-5/libmission-control-plugins0_5.16.1-1ubuntu3_amd64.deb Size: 17524 MD5sum: e0192130148aaf493f39e0b3e673b3f7 SHA1: 73fd6e6e6f2babac275f58749d4cc9ec1b3a66f3 SHA256: 8aa220bf022ced1c31fd12f25e43133a35ca45290d1651bcf0b51d6f777464ac Description: management daemon for Telepathy (library for plugins) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: c170b6dd6040fbef530e3b58104d894e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libmm-glib-dev Priority: optional Section: libdevel Installed-Size: 326 Maintainer: Alexander Sack Architecture: amd64 Source: modemmanager Version: 1.0.0-2ubuntu1 Depends: libmm-glib0 (= 1.0.0-2ubuntu1), modemmanager-dev Suggests: libmm-glib-doc Filename: pool/main/m/modemmanager/libmm-glib-dev_1.0.0-2ubuntu1_amd64.deb Size: 24314 MD5sum: 1cdcbe2dcd5785b39a0eefd9f755bb00 SHA1: b77cf5c49b4248958aa257bf6b4df52066dfcf02 SHA256: 3d09273c1ddbf7c07c934fab905753084ef9a8747c6892cc99a73e2f64c90060 Description: D-Bus service for managing modems - library development files Description-md5: 6ae3bc1d8d927a7b5d623bcc9c1c1b19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmm-glib-doc Priority: optional Section: doc Installed-Size: 3774 Maintainer: Alexander Sack Architecture: all Source: modemmanager Version: 1.0.0-2ubuntu1 Suggests: devhelp Filename: pool/main/m/modemmanager/libmm-glib-doc_1.0.0-2ubuntu1_all.deb Size: 180386 MD5sum: 05d87c86771062e5ea909c35c5f58e9d SHA1: 338495e5aeecf8f7a3660a3ae788793b2277e557 SHA256: 4ddb86bff1226a280367fa21a64fb419446e718fe797922c2561e3204c9bc285 Description: D-Bus service for managing modems - library documentation Description-md5: 2b8e73d7f7246cbe1bc3f7f3e8259490 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmm-glib0 Priority: optional Section: libs Installed-Size: 679 Maintainer: Alexander Sack Architecture: amd64 Source: modemmanager Version: 1.0.0-2ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Recommends: modemmanager (>= 1.0.0-2ubuntu1) Filename: pool/main/m/modemmanager/libmm-glib0_1.0.0-2ubuntu1_amd64.deb Size: 130066 MD5sum: e93f5bc8b563beb1a059715b5ea6dd1d SHA1: 22bdab7ddf31ade71d566cef325141c65561796b SHA256: 4998f324c4d01b9a8eb44bac450bb6d3a439f326838fd357c6a61f7177e0ec95 Description: D-Bus service for managing modems - shared libraries Multi-Arch: same Description-md5: caa3e3a8a443a0f0c22d3b0c5e287500 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmng-dev Priority: optional Section: libdevel Installed-Size: 1004 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: amd64 Source: libmng Version: 2.0.2-0ubuntu3 Replaces: libmng Depends: libmng2 (= 2.0.2-0ubuntu3), libjpeg-dev, liblcms2-dev, zlib1g-dev Filename: pool/main/libm/libmng/libmng-dev_2.0.2-0ubuntu3_amd64.deb Size: 228978 MD5sum: 64c9aca917ffef0f312c8dd67658c87b SHA1: 5d1bb44880ace5591d0922a5e6dcce90504014ef SHA256: 34186a243f5767829cb2b44729d5ec4c3dc0628c2989f137f7518039f80713c0 Description: M-N-G library (Development headers) Multi-Arch: same Homepage: http://www.libmng.com Description-md5: fdb8e2a268bfbd4c9984a39c4e1aa7eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmng2 Priority: optional Section: libs Installed-Size: 583 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: amd64 Source: libmng Version: 2.0.2-0ubuntu3 Replaces: libmng, libmng-dev (<< 1.0.0-3) Depends: libc6 (>= 2.14), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/libm/libmng/libmng2_2.0.2-0ubuntu3_amd64.deb Size: 169010 MD5sum: 6f7cb76369b9e6b8f6e1e73b2ae74eaf SHA1: 8f81ebde045027f3ef48518c14c2c067d2db8684 SHA256: 71ae91d668a9ef0c082aa3bdfc35683588446a68ac0e75b02c6098ad8e00e110 Description: Multiple-image Network Graphics library Multi-Arch: same Homepage: http://www.libmng.com Description-md5: 44b84456d07b211a83ed1660f6cea215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libmnl-dev Priority: extra Section: libdevel Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libmnl Version: 1.0.3-3ubuntu1 Depends: libmnl0 (= 1.0.3-3ubuntu1) Filename: pool/main/libm/libmnl/libmnl-dev_1.0.3-3ubuntu1_amd64.deb Size: 11682 MD5sum: acaaf762a8f88b9514505adc9ec36628 SHA1: 3f3892d4efae1b430859693c20d16b7c9120abd0 SHA256: 28c90e53b0d31fc750602e1f38d5cec567de53336bbf17c2eff26fb43bb774a6 Description: minimalistic Netlink communication library (devel) Homepage: http://netfilter.org/projects/libmnl/ Description-md5: a98b989412e5ed2eb94b6c710889486b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmnl0 Priority: extra Section: libs Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libmnl Version: 1.0.3-3ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libm/libmnl/libmnl0_1.0.3-3ubuntu1_amd64.deb Size: 11416 MD5sum: 2949d1dd95caec6257bc70095e1d37cc SHA1: dcb0b572f1207ad192d8cb1a9010fc6dd22d0000 SHA256: f42a6afe2723843359c35233eb31d285d1a79d12d0cc6e836d5543bdc2d4723b Description: minimalistic Netlink communication library Multi-Arch: same Homepage: http://netfilter.org/projects/libmnl/ Description-md5: 6e8dc655315a40a8d6d0cab77a49b003 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmodule-build-perl Priority: optional Section: perl Installed-Size: 576 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.420400-1 Depends: perl, libmodule-metadata-perl, libperl-ostype-perl, perl (>= 5.11.2) | libextutils-cbuilder-perl, perl (>= 5.12) | libextutils-parsexs-perl, perl (>= 5.13.10) | libcpan-meta-perl (>= 2.110420), perl (>= 5.13.9) | libversion-perl (>= 1:0.8700) Recommends: libarchive-tar-perl, libmodule-signature-perl, libpod-readme-perl, libsoftware-license-perl Filename: pool/main/libm/libmodule-build-perl/libmodule-build-perl_0.420400-1_all.deb Size: 212678 MD5sum: b8c9d6b0b6ee742b33e7bc17e1c3328a SHA1: 4d6bb4b4e32e50f48142560258b438b918ae7a6c SHA256: 8e51d6e5d914de45b4d878816c7a29332fc98ff430489e0fc4a52c9f842746fe Description: framework for building and installing Perl modules Homepage: https://metacpan.org/release/Module-Build/ Description-md5: fa2ee309b6f2eec3e9cf7b941eb79c8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmodule-build-tiny-perl Priority: optional Section: perl Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.034-1 Depends: perl, libextutils-config-perl, libextutils-helpers-perl, libextutils-installpaths-perl, libtest-harness-perl (>= 3.29) | perl (>= 5.19.5), perl (>= 5.13.10) | libcpan-meta-perl, perl (>= 5.13.9) | libjson-pp-perl Breaks: liblocal-lib-perl (<< 1.006008~) Filename: pool/main/libm/libmodule-build-tiny-perl/libmodule-build-tiny-perl_0.034-1_all.deb Size: 9162 MD5sum: 11684bb98214618fa4bb31a9a4ce4ed6 SHA1: 58888673d477298f9632765fe79f30f257d99c64 SHA256: e8207683ff5ccf1b43eebf127a573ec471824cc3f72b2679a84e04a8d34367e1 Description: tiny replacement for Module::Build Homepage: https://metacpan.org/release/Module-Build-Tiny/ Description-md5: 1c8c004a8b88e4f7cc5ca7f268bdd7bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmodule-implementation-perl Priority: optional Section: perl Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.07-1 Depends: perl, libmodule-runtime-perl (>= 0.012), libtry-tiny-perl Filename: pool/main/libm/libmodule-implementation-perl/libmodule-implementation-perl_0.07-1_all.deb Size: 12808 MD5sum: b2afdc5fffa75d9d9bbe4606e89f4413 SHA1: bdaee9ffd73a9b5b460e1a069ba87105b2beff38 SHA256: 0abe45e9e24d5c59ac2e367f1418276ac44b73b2f7236a968bc996f9a8fb0fd8 Description: module for loading one of several alternate implementations of a module Homepage: https://metacpan.org/release/Module-Implementation/ Description-md5: 435fb0bcc3d1e6c76e042b4f76ff5fc4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libmodule-pluggable-perl Priority: important Section: perl Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 5.1-1 Depends: perl Filename: pool/main/libm/libmodule-pluggable-perl/libmodule-pluggable-perl_5.1-1_all.deb Size: 21246 MD5sum: b9d108898d78038e5cd879debe1d92ce SHA1: 7880880e300b0bcde7b0c8e1a8d47b259d39ea43 SHA256: 340d11b8d9ae403abc7d7f0a072ab4fdbf049938c72211b5619cb59b83ed888b Description: module for giving modules the ability to have plugins Homepage: https://metacpan.org/release/Module-Pluggable/ Description-md5: c7c2682ba1b76dc1b9bc7f5fdb566d38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libmodule-refresh-perl Priority: optional Section: perl Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.17-1 Depends: perl Filename: pool/main/libm/libmodule-refresh-perl/libmodule-refresh-perl_0.17-1_all.deb Size: 8364 MD5sum: 2fad758c4e10e9fc967fb12b3ce06e3d SHA1: 064f06b0d4ac5c2a0cfb27c2b2326fbe751d33b6 SHA256: f96574be42c846f2e28bbdd4c9be3d2bab6040fda9f4383cbcaea1cffaf723b3 Description: tool to refresh %INC files when updated on disk Homepage: http://search.cpan.org/dist/Module-Refresh/ Description-md5: 9642ecb5a41ac4e2b3eb5262b6338805 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmodule-runtime-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.013-1 Depends: perl, libparams-classify-perl, perl (>= 5.10.1) | libparent-perl Filename: pool/main/libm/libmodule-runtime-perl/libmodule-runtime-perl_0.013-1_all.deb Size: 15782 MD5sum: 319933956d32c182c9feec3fb2d38aba SHA1: e2441208c9eb74a2143900ff01c802a3e5482105 SHA256: 26000991d5c9b0ec3950d5c9073f1ce6c73c7937b5654aa6d8b3d5b4493e1e80 Description: Perl module for runtime module handling Homepage: http://search.cpan.org/dist/Module-Runtime/ Description-md5: 0addc2e07c40581d732353752eedc4cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libmodule-signature-perl Priority: optional Section: perl Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.73-1 Depends: perl Recommends: gnupg | gnupg2 Filename: pool/main/libm/libmodule-signature-perl/libmodule-signature-perl_0.73-1_all.deb Size: 25692 MD5sum: e53a2309407f32629ade24cb49f32e10 SHA1: 34cdb46c3fe0ba36cfb24db27d3cc1e9aea5b7a2 SHA256: 8e395a53ade7858fd04628a0c1f9b365c360ebe8c0d79dabcbc5bb303ab3a3f9 Description: module to manipulate CPAN SIGNATURE files Homepage: https://metacpan.org/release/Module-Signature/ Description-md5: 003b4a0e2accc05cf4a4ef88654a7733 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-2.0-1 Priority: optional Section: cli-mono Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-dev (<= 1.1.6-4) Depends: libmonoboehm-2.0-1 (= 3.2.8+dfsg-4ubuntu1) Conflicts: mono-utils (<< 1.2.3.1-4) Filename: pool/main/m/mono/libmono-2.0-1_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 10176 MD5sum: eb502df7589be337c12aea0e30fe75f4 SHA1: 0e35010f37791595676fcaf24e97ac80c078da6a SHA256: b409f33ecd908c935feee46a9aa4d9cac1030e7ba6f279840c276dc6ab18c5ac Description: Mono JIT library (Default version) Homepage: http://www.mono-project.com/ Description-md5: ab1dbebe17d39cf9b85626eec8cc58c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-2.0-dev Priority: optional Section: cli-mono Installed-Size: 258 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmonoboehm-2.0-dev (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/libmono-2.0-dev_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 38038 MD5sum: 6ebdbf4378bc6d7c007dc0919e3a2298 SHA1: 78361aa1ccb57891f28495dc9ee0e3aae7a702e0 SHA256: 68fcc6db95aefec6f73aeaadeed6c6908f0b2fe6df9728ef1f8e6d85cc6dd9a9 Description: Mono JIT library - Development files (Default version) Homepage: http://www.mono-project.com/ Description-md5: 40549c7fb70e8b2f699f56eecd2d5ef6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-accessibility2.0-cil Priority: optional Section: libs Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-accessibility2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13254 MD5sum: 3fd7be9c5d23916d73d4aff4c019e5cd SHA1: a3f095c109f304429f2faa02eed6fe32fea35baa SHA256: 2bfa7ca66d14dbe61be729e7f775888c9a39d721225733f020ab18c828b95052 Description: Mono Accessibility library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 7e7cd09cc80efb47e9ac57dda6bb9d25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-accessibility4.0-cil Priority: optional Section: cli-mono Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-accessibility4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13922 MD5sum: 64d41594b84c05e6f6bb25db0c5a919d SHA1: 93faaa431605efa4642896a29be3ba326177b003 SHA256: b1ed0874d09b9e529969db56e20fa9f9d43e94f7e3c5eb2ec9b1e77c75052d71 Description: Mono Accessibility library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 01e25690427b6fb0bf061c65ec1f199a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-c5-1.1-cil Priority: optional Section: cli-mono Installed-Size: 669 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-c5-1.0-cil, mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-c5-1.1-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 92084 MD5sum: 7ee6fba4886abcdd4b7b745ca8e650f4 SHA1: 12ebe15e77d2c3ce9b289e141b4b72e02b58ccf1 SHA256: 6bda794688514d597db88947ddf91dd179e31fdce5b02bfb95295fb9046fdaff Description: Mono C5 library Homepage: http://www.mono-project.com/ Description-md5: c6fa8c134a3b57ae944428eea822bf18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-cairo2.0-cil Priority: optional Section: libs Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-cairo1.0-cil (<< 2.4), mono-classlib-2.0 (<< 1.1.13.4-1), mono-classlib-2.0-dbg (<< 1.1.13.4-1) Depends: libcairo2 (>= 1.8.0-2), libmono-corlib2.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-cairo2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 28234 MD5sum: 2b46b65aa3f6ec700c57193134d5a6c4 SHA1: 59332650b6b3fe471b0a747a9fed8e75faeb18fb SHA256: b2d8ef7932d15928ca9387f6138f121e18c36acf9c68e9ce01baf474d7feb8bd Description: Mono Cairo library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: fd098ad789bd2566c7035a6ba5b8b199 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-cairo4.0-cil Priority: optional Section: cli-mono Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libcairo2 (>= 1.8.0-2), libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-cairo4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 30620 MD5sum: 2c5849de13967fbc9895814877cfeae1 SHA1: 3b792463eee8177e3ccc12e279f35b07d808b51f SHA256: 3ac9641ca4f7753f24b8f4ff35ebcd76c7c5111881996f8292711aa00e6c74ea Description: Mono Cairo library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 3cad538bdd5017f4146b38389cb19d3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-cecil-private-cil Priority: optional Section: cli-mono Installed-Size: 419 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono1.0-cil (<< 2.4) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-cecil-private-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 118148 MD5sum: d642e593f38a1bd1afd393881918b262 SHA1: 9e66cbacbfd6d4280b990fde3eabb8844f9d4f12 SHA256: 981eb4b2a87c67ac6d4d1e9c75ae44673d6c528e1fe582d63fdf5011454f37e2 Description: Mono.Cecil library Homepage: http://www.mono-project.com/ Description-md5: d564873520a1b5990e4c4443e97c1984 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-cil-dev Priority: optional Section: cli-mono Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-cairo2.0-cil (<< 2.4.3), libmono-cecil-private-cil (<< 2.4.3), libmono-dev (<< 2.10~), libmono-nunit2.2-cil (<< 2.4.3), libmono-nunit2.4-cil (<< 2.4.3), libmono-system-web2.0-cil (<< 2.4.3), libmono-wcf3.0-cil (<< 2.4.3), libmono2.0-cil (<< 2.4.3), mono-devel (<< 2.4.3) Depends: libmono2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-accessibility2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-accessibility4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-c5-1.1-cil (= 3.2.8+dfsg-4ubuntu1), libmono-cairo2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-cairo4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-cecil-private-cil (= 3.2.8+dfsg-4ubuntu1), libmono-codecontracts4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-compilerservices-symbolwriter4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-corlib2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-corlib4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-corlib4.5-cil (= 3.2.8+dfsg-4ubuntu1), libmono-cscompmgd8.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-csharp4.0c-cil (= 3.2.8+dfsg-4ubuntu1), libmono-custommarshalers4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-data-tds2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-data-tds4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-db2-1.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-debugger-soft2.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-debugger-soft4.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-entityframework6.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-entityframework-sqlserver6.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-http4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n4.0-all (= 3.2.8+dfsg-4ubuntu1), libmono-i18n-west2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-ldap2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-ldap4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-management2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-management4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-messaging2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-messaging4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-messaging-rabbitmq2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-messaging-rabbitmq4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft8.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build-engine4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build-framework4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build-tasks-v4.0-4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build-utilities-v4.0-4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-csharp4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-visualc10.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-web-infrastructure1.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-npgsql2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-npgsql4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-opensystem-c4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-oracle2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-oracle4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-parallel4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-peapi2.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-peapi4.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-posix2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-posix4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-rabbitmq2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-rabbitmq4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-relaxng2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-relaxng4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-security2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-security4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-sharpzip2.6-cil (= 3.2.8+dfsg-4ubuntu1), libmono-sharpzip2.84-cil (= 3.2.8+dfsg-4ubuntu1), libmono-sharpzip4.84-cil (= 3.2.8+dfsg-4ubuntu1), libmono-simd2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-simd4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-sqlite2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-sqlite4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-componentmodel-composition4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-componentmodel-dataannotations4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-configuration4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-configuration-install4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-core4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-datasetextensions4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-linq2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-linq4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-services2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-services4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-services-client4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-design4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-drawing4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-drawing-design4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-dynamic4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-enterpriseservices4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-identitymodel4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-identitymodel-selectors4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-io-compression4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-io-compression-filesystem4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-json2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-json4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-json-microsoft4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-ldap2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-ldap4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-ldap-protocols4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-management4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-messaging2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-messaging4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-net2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-net4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-net-http4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-net-http-formatting4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-net-http-webrequest4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-numerics4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-core2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-debugger2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-experimental2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-interfaces2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-linq2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-observable-aliases0.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-platformservices2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-providers2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-runtime-remoting2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-windows-forms2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-windows-threading2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime-caching4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime-durableinstancing4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime-serialization4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime-serialization-formatters-soap4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-security4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-servicemodel4.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-servicemodel-activation4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-servicemodel-discovery4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-servicemodel-routing4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-servicemodel-web4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-serviceprocess4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-threading-tasks-dataflow4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-transactions4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-abstractions4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-applicationservices4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-dynamicdata4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-extensions4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-extensions-design4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-http4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-http-selfhost4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-http-webhost4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-mvc1.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-mvc2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-mvc3.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-razor2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-routing4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-services4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-webpages2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-webpages-deployment2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-webpages-razor2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-windows4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-windows-forms4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-windows-forms-datavisualization4.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-xaml4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-xml4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-xml-linq4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-xml-serialization4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-tasklets2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-tasklets4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-wcf3.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-web4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-webbrowser2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-webbrowser4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-webmatrix-data4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-windowsbase3.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-windowsbase4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-winforms2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-xbuild-tasks2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-xbuild-tasks4.0-cil (= 3.2.8+dfsg-4ubuntu1), libnunit-cil-dev (>= 2.4) Conflicts: libmono-nunit2.2-cil, libmono-nunit2.4-cil Breaks: libmono-dev (<< 2.10~) Filename: pool/main/m/mono/libmono-cil-dev_3.2.8+dfsg-4ubuntu1_all.deb Size: 12926 MD5sum: 5a2a8e6a37105feaa23d80b2414fe357 SHA1: 4c2e076945092c214ac4bdd0947fec6062b679b2 SHA256: d750f1ccea0d293ecd3c5bf0b014af32af0ee1b5b3b31124f473236733f640fa Description: Mono Base Class Libraries (BCL) - Development files Homepage: http://www.mono-project.com/ Description-md5: b3ffc3f2c198d9bf41ba035ceb7c5c5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-codecontracts4.0-cil Priority: optional Section: cli-mono Installed-Size: 771 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-cecil-private-cil (>= 3.2.8), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-codecontracts4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 199446 MD5sum: cc6cdf930a7ff5bc41eaf3b30285d6ba SHA1: d4991d756d593fe1aef21808fdb8734bbd13b1aa SHA256: 3f926fefbc4116f57903b7078146d0cc7fab5da087bb666354d71ef761707006 Description: Mono.CodeContracts library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 0f9bf7bad06cfb237e0947b1bdc3bef7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-compilerservices-symbolwriter4.0-cil Priority: optional Section: cli-mono Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-compilerservices-symbolwriter4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 26546 MD5sum: 1a0caf3b25938eda909a13b2b03eaaf3 SHA1: d2baf8caad73f12ad4463e9af5533539f47804ad SHA256: 0fef351b284085f5a167738b171c85463c7abd134c4e11982e33c3689ae0a9dc Description: Mono.CompilerServices.SymbolWriter library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 18b1e3a7c7cc618f86b8abed7427378c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-corlib2.0-cil Priority: optional Section: libs Installed-Size: 2651 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Recommends: libmono-i18n-west2.0-cil Suggests: libmono-i18n2.0-cil Conflicts: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Filename: pool/main/m/mono/libmono-corlib2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 728738 MD5sum: 0c6483e9a56ddad0374c9a5cf92f9330 SHA1: 1ab206b93d33a52a7b5b52ef5b51f1a90e6e3bb2 SHA256: 6d55d1057bada06407c0dbf435e9ae1295fafc09fd025030c65ed843c43814ed Description: Mono core library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: d4b4c9221c5c9a62ff9a3418cdd71f24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-corlib4.0-cil Priority: optional Section: cli-mono Installed-Size: 2929 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Recommends: libmono-i18n-west4.0-cil Suggests: libmono-i18n4.0-all Filename: pool/main/m/mono/libmono-corlib4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 798854 MD5sum: 4a73abf5de1aae417ae772cd9de17383 SHA1: d8e07ad03044e7475524bd2ca6c6c911fc5c2f64 SHA256: a35933ecf0be6599f82c8dc0d331f14c9fe6d2d2850ca7d6941a38f3f0277f6e Description: Mono core library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 88a688be28fc79052e9093c5007f97ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-corlib4.5-cil Priority: optional Section: cli-mono Installed-Size: 3002 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Recommends: libmono-i18n-west4.0-cil Suggests: libmono-i18n4.0-all Filename: pool/main/m/mono/libmono-corlib4.5-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 816356 MD5sum: 080e5fd2ff93e3c6f669df1ce94b1cba SHA1: bfddad1ac6291e3c0c93e1e82c4ae49441e532bc SHA256: 9b3cadaaca6800d7a11835b18c28b37ce8494e39bd133b3da9c22844f8ed49ab Description: Mono core library (for CLI 4.5) Homepage: http://www.mono-project.com/ Description-md5: b9348047abaa2f15655ede6d853a4c94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-cscompmgd8.0-cil Priority: optional Section: libs Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-cscompmgd8.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 15946 MD5sum: 0a6118f9db9e895ab7e992ebcc7c4fa3 SHA1: 1a91a2637ed59e0f7bbd69234123bcb0bf8d5b29 SHA256: 41b558076f611fd61abf45604bed1f45c74416b0b502f54bd64328bb32469745 Description: Mono cscompmgd library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 58b6403f58f5d5905ea007f50ce99215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-csharp4.0c-cil Priority: optional Section: cli-mono Installed-Size: 2549 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-csharp4.0-cil (<< 3.2.1), libmono-csharp4.0a-cil (<< 3.2.3), libmono-csharp4.0b-cil (<< 3.2.8) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-csharp4.0-cil (<< 3.2.1), libmono-csharp4.0a-cil (<< 3.2.3), libmono-csharp4.0b-cil (<< 3.2.8) Filename: pool/main/m/mono/libmono-csharp4.0c-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 363380 MD5sum: 7c5068dedd386a0e513001d285f94b78 SHA1: aaa651766f1c1200ceccc30c914f277a905e6e9d SHA256: 91b35f7e3e94060ba01c0c206a2ee50d60a6ef39d4f05391e94764353b746e5a Description: Mono.CSharp library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: d674a3b6e4a7b4a83ff74b492cecb43c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-custommarshalers4.0-cil Priority: optional Section: cli-mono Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-custommarshalers4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14616 MD5sum: 26f159f6f12db82eae13f195c77a9625 SHA1: 67c48e03376c2b512c7701e36cc664dbc7682707 SHA256: c951e044890b7c97cb7cad22cb35b005b6c991a319b48b4cd1fdfd6877e1d767 Description: Mono CustomMarshalers library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 1ef3fc5c461965be6e44da8d40fcf3aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-data-tds2.0-cil Priority: optional Section: libs Installed-Size: 190 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-security2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-data-tds2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 41664 MD5sum: d0b94180be9e0f191a6d552b2b9b1b2d SHA1: 1ccf6d26fae5d055bcad43e701c9e47d4e10d5ca SHA256: da7a94e94f590d2897fb57c16b6f45165c0d0fccf25cf9d08c123529d043f021 Description: Mono Data Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: a0f593718cf5e087076914edffc7f1e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-data-tds4.0-cil Priority: optional Section: cli-mono Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-data-tds4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 43504 MD5sum: cd31b6c3e7eae9bcd084497f1b89721d SHA1: d65eab00e3dfaaf1b2ac51ac0da71831d364a235 SHA256: 689a93b28937a80ab3d27efdec3992ff7f034624e47d37fc7a3e93c470d943b9 Description: Mono Data Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 3692f0cb3febb7a4eaefe872d097f5b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-db2-1.0-cil Priority: optional Section: libs Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-db2-1.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 35698 MD5sum: 3fffebb0f8dcb56fe2458e49da702925 SHA1: 089500aabd4afb15cb747103b8a449cc8c83fd80 SHA256: c412b70518b9bc920872cb30847d1934eaa507f292b651c0042667c84084569a Description: Mono DB2 library Homepage: http://www.mono-project.com/ Description-md5: 3c28ae2d2103f915d76e9bbe31dec2bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-debugger-soft2.0a-cil Priority: optional Section: cli-mono Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-debugger-soft0.0-cil, libmono-debugger-soft2.0-cil Depends: libmono-cecil-private-cil (>= 3.2.8), libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Conflicts: libmono-debugger-soft0.0-cil, libmono-debugger-soft2.0-cil Filename: pool/main/m/mono/libmono-debugger-soft2.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 56784 MD5sum: 37b00b1530f9a933f19e3541fe157b47 SHA1: dd5cb4db21d7ebfc2495aaa9f1d10e6dd213d670 SHA256: 4abbc02361b5d2ee4ef99fb29a77f72deb15e7e0d14e51f9822045f22a997da2 Description: Mono Soft Debugger library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 3ed46fafb741c5e55b8b863ade7c0377 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-debugger-soft4.0a-cil Priority: optional Section: cli-mono Installed-Size: 380 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-debugger-soft4.0-cil Depends: libmono-cecil-private-cil (>= 3.2.8), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Conflicts: libmono-debugger-soft4.0-cil Filename: pool/main/m/mono/libmono-debugger-soft4.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 70124 MD5sum: 27c9bd95414cffbfb9f6bbb944773325 SHA1: f1d93e44769ff32ff5c1f29ec704f20c246b7604 SHA256: 35358ccd81a7b68ec9c406110753d847ec44b082d886d07b0b538d357ebb7eeb Description: Mono Soft Debugger library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: b2b9fac809d6201b221707a5c359d5b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-entityframework-sqlserver6.0-cil Priority: optional Section: cli-mono Installed-Size: 597 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-entityframework6.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-entityframework-sqlserver6.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 87994 MD5sum: 0a558b15ff2aaee6734bd3b5ed5fa4ea SHA1: 501c8aa4f1bc4f641b055188dd085bd4de11e758 SHA256: e1fe71a1f0899644b07dee6c19ac2c2406831a5df1d9124a5b055a882bca7748 Description: EntityFramework.SqlServer library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: e661c9a149ccf32bb3556773ae5a960e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-entityframework6.0-cil Priority: optional Section: cli-mono Installed-Size: 4665 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-csharp4.0-cil (>= 1.0), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-transactions4.0-cil (>= 1.0), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-entityframework6.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 1101370 MD5sum: 7a830fa8346ff30156c40c9c51f47b3b SHA1: c0cb35b5a02a6fbbc35cedbf4bb0793db86fea9e SHA256: 2e3b2a1c804a478be50e2839688fac4ce44f92a4a7fad93c3790200faa5b787b Description: EntityFramework library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 52560171f5cc46ff1a7f20aabd818a89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-http4.0-cil Priority: optional Section: cli-mono Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-sharpzip4.84-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-http4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 21202 MD5sum: d283aac7720666f05c3c1a44812dea85 SHA1: e7b9796957d16c5d0cb59864651d8640b228c195 SHA256: d00d43ac75dd8bfee472e55e4ddde454d5a46caf75530ed837175cc1a7f7cbaa Description: Mono.Http library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 65a561fb620581a1190c638b7d41ec59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n-cjk4.0-cil Priority: optional Section: cli-mono Installed-Size: 1432 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-i18n4.0-cil (>= 3.0.6), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-i18n-cjk4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 238216 MD5sum: 3cbabc1af80bca8ef3f2060c3f341830 SHA1: 299eeda04e8f2c5b48d794205e9a902d2ae1c127 SHA256: 86877c86a7337b7b0fccb515dc901d27baf6b05232ef70eac27afe42db258732 Description: Mono I18N.CJK library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 8106d7f4f8f7ac7f375ae9a0d8510346 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n-mideast4.0-cil Priority: optional Section: cli-mono Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-i18n4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-i18n-mideast4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 18000 MD5sum: e7aa1772c4438e2ff6fa9962964924d9 SHA1: 5cb5bb4267c0ff138468a4b66f03ae36d8818e08 SHA256: f80b0566df632c9a38d96a829eeda888c560c56b18d915a5970fe0be1c962f8e Description: Mono I18N.MidEast library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: c04c9e411d7ece0c75314a03d75cf032 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n-other4.0-cil Priority: optional Section: cli-mono Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-i18n4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-i18n-other4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 19362 MD5sum: 6a9234bc5529f63e35bdd89a74268153 SHA1: 6b0a14d88444b1f3b97b669e15dbd37e6f83486d SHA256: 52340215ba687a5be166db6eb53a1691587d2967a3bc9a58264e2ff7be24b0d3 Description: Mono I18N.Other library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 8b53dbaa17e32844ec1ee3ceb9a6ffab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n-rare4.0-cil Priority: optional Section: cli-mono Installed-Size: 451 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-i18n4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-i18n-rare4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 34046 MD5sum: 26c2d505429db24a995ce86d5b1ee079 SHA1: 80e49280a447b4e93eaa8a3ed48eff73a2d3895f SHA256: e8153f76468d7064074909995e216653f77c9d4643f48d7cfbaaabb3bd5430f3 Description: Mono I18N.Rare library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 4e36031c4da3969fa20f779345da4700 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n-west2.0-cil Priority: optional Section: cli-mono Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-corlib2.0-cil (<< 1.2.6-1), libmono-i18n2.0-cil (<< 2.4) Depends: libmono-corlib2.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-i18n-west2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 30602 MD5sum: e09832815adc4d69bd7d843d016e6f8c SHA1: 83209149ef382e6bc399559ef81d6c89d49053a7 SHA256: 8e92e73c71f88e773ea5607d3450db59b07c0beb1cd18ffec94dcb0294f03328 Description: Mono I18N.West library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 1026a5f88ffdf3a7b72345328d99ddcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-i18n-west4.0-cil Priority: optional Section: cli-mono Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-i18n4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-i18n-west4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 23938 MD5sum: 871aac5bccdffb2495a540a7740b76ff SHA1: f117464c76a88525f85fd02e94fd343eb64d0c6d SHA256: 647d270b8a99ea6be7bd80a0aef72bac954200783a25e3074fecaf303ccdff76 Description: Mono I18N.West library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: bbb1f3ed6bdf1f7980de1f5d24143fb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-i18n2.0-cil Priority: optional Section: libs Installed-Size: 1023 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-corlib2.0-cil (<< 1.2.6-1) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-i18n-west2.0-cil (>= 3.0.6), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-i18n2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 266906 MD5sum: bcbc09d9c3a901da9fe5d14caf574d10 SHA1: f5b0116979fd458f692ede65a446c194421463fe SHA256: d034919d26b36c95cbb143c6f6896f0f2d542707f6efb12fd544c865792ce869 Description: Mono I18N libraries (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 15f95ff770270466300b9d802e67f063 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n4.0-all Priority: optional Section: cli-mono Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-i18n-cjk4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n-mideast4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n-other4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n-rare4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n-west4.0-cil (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/libmono-i18n4.0-all_3.2.8+dfsg-4ubuntu1_all.deb Size: 10120 MD5sum: bffb60e89fa3345dd8463f08fb50be52 SHA1: 3bb556a09ab50e28960064922226e7cca726bbb6 SHA256: 120afc394fc45498d4c66eb1bf89c1d6cbe3b53513478c83f18d256c6de755eb Description: Mono I18N libraries (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: fa7a32d460bf9bc781b07790ce48801b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n4.0-cil Priority: optional Section: cli-mono Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-i18n4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20486 MD5sum: a8ca34e2339d5adbffe6d5967daf9eb0 SHA1: efbd4fccc04ad697b3d45633e0211003e4aa5284 SHA256: fb34161516d6b4fd6f23dd2b54711fdf44316ea897fc5e1fe74040811f68a6b1 Description: Mono I18N base library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 09cc8dcd1de793c67cfef1e6ef05d039 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-ldap2.0-cil Priority: optional Section: libs Installed-Size: 349 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-ldap2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 90028 MD5sum: 2990272d187db2869e33d674a36508a6 SHA1: 7585903708fb75c50689921a88502347bfde26fb SHA256: 0f80a7cdf38a1b23d921abc0902ab5175648c08cd9251990e485595bff0a2cbc Description: Mono LDAP library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 01b9f2a7ad8f76af538add1020840b13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-ldap4.0-cil Priority: optional Section: cli-mono Installed-Size: 611 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-ldap4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 93428 MD5sum: 5e5527938d2de6469a86ca048d6aaa82 SHA1: 8d4867e0becd8eca875da791addbdbbd91667219 SHA256: 5c36ca03a39fbce1f3de2bdf593de98b8e55675dc044740913d5b18d774edfd9 Description: Mono LDAP library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: d9a2c83fc9264bc3e18041fc5c146d92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-management2.0-cil Priority: optional Section: cli-mono Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-posix2.0-cil (>= 3.2.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-management2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14250 MD5sum: c221c9f3a9d06df9d3fbe596fafc1da3 SHA1: 8610a6083e462e7d6ee97de7f7cd8686dc528993 SHA256: 8e3c3165f30b14d7fb468d747b968a036e1c4ba5b64fd732ab3e0d2b44eee7cf Description: Mono Management library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 0bea95a6bf50b19daa0a2faf16218322 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-management4.0-cil Priority: optional Section: cli-mono Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-posix4.0-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-management4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14970 MD5sum: a10e29a83550689dd1946979208b37c9 SHA1: b1305b7bfc14c779baa00018bfa4145ed04a39a1 SHA256: 99d47e1ea7ced0667dd8f6ab6bf386b1e4746a44c3b9bd3f119b5b7231577aeb Description: Mono Management library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: caec665407fe914e55aec4c0bcb0e9de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-messaging-rabbitmq2.0-cil Priority: optional Section: cli-mono Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-messaging2.0-cil (>= 3.0.6), libmono-rabbitmq2.0-cil (>= 1.0), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-messaging-rabbitmq2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 21846 MD5sum: fe3e6406faf3dcea43401ec1bc832dd7 SHA1: a0944fc1995ba3a43f1d714a23c0fde4d055793e SHA256: 8ee88b6852fe40c0dd1b25d3156f8f504bf46f4dbdd3145961d3d264d3401b5b Description: Mono Messaging RabbitMQ library (for CLI 2.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: 18c21869bd5517aace439e972346aa11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-messaging-rabbitmq4.0-cil Priority: optional Section: cli-mono Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-messaging4.0-cil (>= 3.0.6), libmono-rabbitmq4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-messaging-rabbitmq4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 23002 MD5sum: 06f359b15f93dd048900c4ca91a8b7b9 SHA1: 4e3667f392dcba3748b480d29c95554d7a01ed1d SHA256: f787a60289ecc109c150d71e3710d238806055a15d72d0531c923540d372bbc5 Description: Mono Messaging RabbitMQ library (for CLI 4.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: 55621d64556c992fdb784d67d974b47b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-messaging2.0-cil Priority: optional Section: cli-mono Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-messaging2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20838 MD5sum: d195221c4c1569375e55c7431198e33c SHA1: 70312e91376555de6e7530a2a043a65d37f6d49d SHA256: 07fa265643ef6af3efc3bf3785df6c466c2365c1372a16014b59b95d03e4c2fc Description: Mono Messaging library (for CLI 2.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: 4b60c97c01f64a3a1e11b4232d4c3cc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-messaging4.0-cil Priority: optional Section: cli-mono Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-messaging4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 22150 MD5sum: b005657b35fd80a884e43d20b234b065 SHA1: 6df898978a88a3f5bcfb56f7484a990fead76984 SHA256: 70537bb7c8cd33d17ac0300a88e814ee06a984321ee59f9a6350ceaf005932f2 Description: Mono Messaging library (for CLI 4.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: cb7410fa63ae6b8cc40e13af2fb1daa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build-engine4.0-cil Priority: optional Section: cli-mono Installed-Size: 554 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-build-framework4.0-cil (>= 3.2.8), libmono-microsoft-build-utilities-v4.0-4.0-cil (>= 3.0.6), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-build-engine4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 87284 MD5sum: edac0589b44b9274e85482532349a4be SHA1: 50d02554744d2f61a693bc824e783fdfb13e6315 SHA256: ca46ade9a98e2231a18f8b357f95a9bbd2a438432294004b6d42b6bf4558b641 Description: Mono Microsoft.Build.Engine library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 1247f414de9e2e1efc48d56354c7a235 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build-framework4.0-cil Priority: optional Section: cli-mono Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-build-framework4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 22514 MD5sum: a1d5dfeea16ae1a101c7782b5208e27b SHA1: c646348b772903374104860bed8c0690e4aca186 SHA256: 0d2a9bfe4a28bbd9f96736b786b218d9b70f38d3b156ece0bdcc5cef7d3979ce Description: Mono Microsoft.Build.Framework library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 521ef46eb4fff058ea953411bf6e7834 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build-tasks-v4.0-4.0-cil Priority: optional Section: cli-mono Installed-Size: 428 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-build-engine4.0-cil (>= 3.2.1), libmono-microsoft-build-framework4.0-cil (>= 3.2.8), libmono-microsoft-build-utilities-v4.0-4.0-cil (>= 3.0.6), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono-xbuild-tasks4.0-cil (>= 1.0) Filename: pool/main/m/mono/libmono-microsoft-build-tasks-v4.0-4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 66864 MD5sum: c9a66c7c1c9520aec9b555f0b2230c62 SHA1: 217272f23903fd2b8cb7ef6baa42840de94338fc SHA256: f3e0e85a4578f065e4653e1d0bc88b8047b0179e871f14b1face6cd99ece51c7 Description: Mono Microsoft.Build.Tasks.v4.0 library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: d0c9af113a05fc7c9e5734e78dbd3aac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build-utilities-v4.0-4.0-cil Priority: optional Section: cli-mono Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-build-framework4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-build-utilities-v4.0-4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 31050 MD5sum: 8d5d7b296d5b54973af1ac33f400f62b SHA1: 2492882c999fc82498b02a71e53fa9e1542d2f0a SHA256: 43da12ac60dd16a5f8e586564d797e28d73184d8d7fe340ef9f0dab55cdef06a Description: Mono Microsoft.Build.Utilities.v4.0 library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: dc4ca24f26da919a9e39d2717b00115a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build2.0-cil Priority: optional Section: libs Installed-Size: 1053 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1), libmono-xbuild-tasks2.0-cil (>= 1.0) Filename: pool/main/m/mono/libmono-microsoft-build2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 178234 MD5sum: 2f20d6e23cf310d4ab7dc1ec6dc449a0 SHA1: 8349cd92e3be64008c96cc451607af26d8e289e7 SHA256: 064ed36d16e115f0445bbc64d4bf12bfb4fbe0fae3e46ca8d664583aef135370 Description: Mono Microsoft.Build libraries (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 42e72e59e252156d2246b7f7c15aa8ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build4.0-cil Priority: optional Section: cli-mono Installed-Size: 625 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-build-framework4.0-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-build4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 128092 MD5sum: 23babce379e78ef8b67eb9b5429a4ffe SHA1: ec8a73b6c6f8ea699ad4b3e37c75339360d086bb SHA256: d357e75eefef5ba48e9b1a295128f4b46b75a3418acf1df0720bd267905ee59a Description: Mono Microsoft.Build library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 97b7e9a521375d342b1a2a4b98b88d05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-csharp4.0-cil Priority: optional Section: cli-mono Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-csharp4.0c-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-csharp4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 21684 MD5sum: 9f15a23b0fa823dc2e5024f9c8e306a4 SHA1: 9e456397c2f2a55e12ac34adc146ce522a504cd0 SHA256: ad8241e4bd24c0291ab88414aa54bc33ad4db20b869fc085c1e10f3f53b5b459 Description: Mono Microsoft.CSharp library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 3a6ea56d61d663ae9e9136d99bc86e03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-visualc10.0-cil Priority: optional Section: cli-mono Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-visualc10.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13296 MD5sum: 6d8bc919460aa3e10c63095fcffaea5a SHA1: a9b2683940a21c58b4ea38968a0c6af722060fa5 SHA256: 4f6f64ee05b9d5d4bf2bdbcc0aed6f21f302d52ace98af32bccca20ebddd4af7 Description: Mono Microsoft.VisualC library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 749143437420c731c2bca738530c7336 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-web-infrastructure1.0-cil Priority: optional Section: cli-mono Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-web4.0-cil (>= 2.10.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-web-infrastructure1.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 15968 MD5sum: 076a2297508f8358e787154cfec6a126 SHA1: 49c87a08fa04613417adca024ac5d7d1dd0b5bb7 SHA256: 1746c1d3e93018abcba6bba4179481c8a356521830311b2f008a69c5a170aa41 Description: Mono Microsoft.Web.Infrastructure library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: cb233cf50954f57990a6629556218df9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft8.0-cil Priority: optional Section: libs Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft8.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 12692 MD5sum: 0415f5807aff46556b9a2b26c05dbd86 SHA1: 0615f19f37ef4fe5273ebaa38d2aa7f15c83a4d5 SHA256: d66b66ef88bbcac630759f9eb33fd1d5d6f48cfe7a9f25c2610fa8251b06ff3d Description: Mono Microsoft libraries (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 747b89d6ea09827a5fe7a9c452c3208e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-npgsql2.0-cil Priority: optional Section: libs Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.4-1), mono-classlib-2.0-dbg (<< 1.1.13.4-1) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-security2.0-cil (>= 3.0.6), libmono-system-data2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-npgsql2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 65866 MD5sum: 337535080b26bbda2993e925ee6725d2 SHA1: 28e1c77674887df52b5ed545930cb04e0e3b8c8d SHA256: 614f803244a5eda57172a6dd98129667e2580daa7f8d93570e635648d26da43e Description: Mono Npgsql library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: c641f06a083ceab178878f5815896da7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-npgsql4.0-cil Priority: optional Section: cli-mono Installed-Size: 451 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system-data4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-npgsql4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 68316 MD5sum: 28365c59d2ce6b77a562cd14ac3b0224 SHA1: 80a06338bf631c87add9839efb76a912848334cc SHA256: 6725108d81743a9a532d87d75a38be1040ceea133ef98c97bee48bceb5990fc6 Description: Mono Npgsql library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: ef3888a9bae77519d311f917e0993086 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-opensystem-c4.0-cil Priority: optional Section: cli-mono Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-opensystem-c4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13242 MD5sum: 5c591bc9c8ca7fd0a19069fdac5f146d SHA1: b2c8eb533532a5198c0c9ad6c22e3760472224c4 SHA256: a93d709692171b2eeb18cbb127049268f831077a6f1472446aa3a4a49e40b12c Description: Mono OpenSystem.C library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: fc50d01933cd0918001e79232966a102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-oracle2.0-cil Priority: optional Section: libs Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-system-data2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-oracle2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 61892 MD5sum: 7300ee2c1dc58a3fd19c8ff6d6cfbbcc SHA1: e9a7ec9f8372aba4ebd3009f8edc67360566eca6 SHA256: 8f0354bd2177fe377fa6deaf8ad99ef8cc6c6c5a7d536ec1bb364f2d8dcf4f7c Description: Mono Oracle library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 03e2780105c26119eec631e2dcf75302 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-oracle4.0-cil Priority: optional Section: cli-mono Installed-Size: 444 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-enterpriseservices4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-oracle4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 64670 MD5sum: 10a055a525873036b354e2870e305ef2 SHA1: 49466054dedf6ca5820d40c0af7aaf3450b6f3bf SHA256: 52a5fcd6fd2053d8d7b718c8c264e2ff9390b54ab070d4c1edc9285e14c33ad9 Description: Mono Oracle library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 7a9aa9055753eb855953d2702e716ec1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-parallel4.0-cil Priority: optional Section: cli-mono Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-parallel4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 25074 MD5sum: 31240c8a1e5e816db3536d0fdafc6ec0 SHA1: a6bee3f4a3bb9ecc46452c2808decc33bb8bf595 SHA256: 03794252a66437be77db65b849367e5446e615416bfd894d84ca8bacbf8e0f77 Description: Mono.Parallel library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: ea043104b1d2835242422612c8f9888f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-peapi2.0a-cil Priority: optional Section: cli-mono Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-peapi2.0-cil Depends: libmono-corlib2.0-cil (>= 3.2.8) Conflicts: libmono-peapi2.0-cil Filename: pool/main/m/mono/libmono-peapi2.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 43914 MD5sum: 224009de23bd1e5ef0d2c3f3a7fb65b4 SHA1: abd2be3d6c642185f352b78e914d8e7d8aa96ebb SHA256: e9397d378e1486dc633b4052e892f9e68b0430115ef5fdf05e97d16c24afd494 Description: Mono PEAPI library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 6e670e1a26e354063cc1c0bf4227e3c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-peapi4.0a-cil Priority: optional Section: cli-mono Installed-Size: 298 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-peapi4.0-cil Depends: libmono-corlib4.5-cil (>= 3.2.8) Conflicts: libmono-peapi4.0-cil Filename: pool/main/m/mono/libmono-peapi4.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 46024 MD5sum: 5f1b856fe2287dfb305a112e31785485 SHA1: 4c9e8a25bbbb273fdd046166820e70528f47c0e2 SHA256: 7a8510b3e7ae5c8a4cb77d73873bd2a03d96f7cb699ca8590d7b4f692396f0c3 Description: Mono PEAPI library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f348871ae4d227e0fec02055a78f296d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-posix2.0-cil Priority: optional Section: libs Installed-Size: 282 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono2.0-cil (<< 2.0) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1), mono-runtime (>= 2.10.1) Filename: pool/main/m/mono/libmono-posix2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 70380 MD5sum: a79c3007234062ba7834900e64b52a75 SHA1: 71217e3b2b6dd8a7d2a07ee018ef937947e90175 SHA256: b3bd8046ba3252bf050958aebb52b08064b6c4a01a34e94c595336b30cea8788 Description: Mono.Posix library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 8a2d646b2ba45a05656da4b73eeabc2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-posix4.0-cil Priority: optional Section: cli-mono Installed-Size: 478 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8), mono-runtime (>= 2.10.1) Filename: pool/main/m/mono/libmono-posix4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 74450 MD5sum: f44f97a26d3fd4c6b8d78a825ef13e93 SHA1: 8ef2e355e0fb785c9ec4c445d067607619f11c77 SHA256: 94727a9abfb3a98a8eb894eea8688b2cec11643737a4e4ef66ce1b35a6a23aaa Description: Mono.Posix library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: ff788b5250a346c6b6a19c2694d5a435 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-rabbitmq2.0-cil Priority: optional Section: cli-mono Installed-Size: 552 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-rabbitmq2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 91574 MD5sum: 11d6f19e9d3cab77c2fc010ba78bf8b8 SHA1: 4a181e35f670c67d949c77ec671cd55f3bb349cb SHA256: 14c2e54a322d18b916eaf5de6ab48c1ef3936ce267c402edaaeb155922454471 Description: Mono RabbitMQ.Client library (for CLI 2.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: 9d4ddf6b12ef690504a6e50bfe611e32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-rabbitmq4.0-cil Priority: optional Section: cli-mono Installed-Size: 1024 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-rabbitmq4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 97348 MD5sum: 00ff6792b70aec595e6d4cf38ff72d41 SHA1: 7f412481fa9e906e2dd38e7445aa0383923a125f SHA256: b3b7692c14dc7201b66b4252999cda6502fd10602680ce22ddffbe965890bc9f Description: Mono RabbitMQ.Client library (for CLI 4.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: 4053f71554e92f8366c253de467b6c7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-relaxng2.0-cil Priority: optional Section: libs Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-relaxng2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 77240 MD5sum: 876b6da30e49940c5a0dbd7e46741219 SHA1: 0b7c48fcfba07ce1a67d81c743902b7bdbdddbb3 SHA256: a73c3463eb35673d8c53668c515c03f1ad5261970acff86dd88e5cb2d1e7bd55 Description: Mono Relaxng library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: f646df9207af20b90f4fa0bc9fd1d414 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-relaxng4.0-cil Priority: optional Section: cli-mono Installed-Size: 570 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-relaxng4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 79942 MD5sum: 3a6db646717e493e08c16914b903b082 SHA1: 3f35cf1334a8efcd8896aed4a343acb91002fefc SHA256: 40ea24690d7cad4e78c34cf54f2c0ad30984f278bf455509c585407aefb20dbc Description: Mono Relaxng library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f797ef231e2a4b9169f8655dd37de4d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-security2.0-cil Priority: optional Section: libs Installed-Size: 383 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-security2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 106612 MD5sum: 09151b86e14f1d1f3c4b37ade990e3fb SHA1: cb1f8f5bacaa8f5f5fdd55d4662af7147fcc55f6 SHA256: 627388b7a2f286a43b3856ece048bdb2ed98d503f082654395dbaf021f57c62a Description: Mono Security library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 2d726a7f1d7bc6a74fcf40949f2be0c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-security4.0-cil Priority: optional Section: cli-mono Installed-Size: 680 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-security4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 110320 MD5sum: 427c3b8c7106213af75f0fb95e368a66 SHA1: c5b7a7e80147d57985a2989f967f84161d770826 SHA256: 9f8ecc005bd5d8e9bc4759298f6383ff36221d8502a25e228b45b783f511fd0a Description: Mono Security library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 1d62f62d6ff4829f9ec59087a3745678 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-sharpzip2.6-cil Priority: optional Section: libs Installed-Size: 197 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.4-1), mono-classlib-2.0-dbg (<< 1.1.13.4-1) Depends: libmono-corlib2.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-sharpzip2.6-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 49716 MD5sum: c89a5fc2743651f7f9ddb36b67e30b0e SHA1: 4eb2ce0dfee17ecd906c2a1d58a23e18e7b86cca SHA256: 9226c087c4207ef1bb5c5693a764a3c756478a3f30f04de02e9dd833fdaf8ccb Description: Mono SharpZipLib library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 5b5c1a8eda78a49c464a4e6d4d49fd57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-sharpzip2.84-cil Priority: optional Section: libs Installed-Size: 222 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.4-1), mono-classlib-2.0-dbg (<< 1.1.13.4-1) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-sharpzip2.84-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 57856 MD5sum: da6646c38850c8ce3db42b1cf315f7e8 SHA1: c5660133b35b5a6f569eca2d90fedbc20c2fce3b SHA256: 960dba070a419cb63840671a4c897f80f1770bee145f9a1f53b169720a814c2b Description: Mono SharpZipLib library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 69a9f694d1cd0af04d86dfc03da8b80e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-sharpzip4.84-cil Priority: optional Section: cli-mono Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-sharpzip4.84-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 58322 MD5sum: 43bf957fcb1aa7ed47396856ac5d55c7 SHA1: 69d494053924a9bf8105ff3d54e2748ff084ab29 SHA256: 8be9eb5d43855c3a5db79ee71dab1e1213a3182275ec0222c7e253361d1c3ee2 Description: Mono SharpZipLib library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: dda1f56260ba57d30ddbff3bd080700e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-simd2.0-cil Priority: optional Section: cli-mono Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-simd2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 24640 MD5sum: d4bded17134e42556bce4e823e8b5985 SHA1: 40e7a13e13a4025c7a5c45d9b4da98f30f67501c SHA256: 6ba7e2ddcfa46c3359b4be5b4a8df26b167cd8595f09ec10129c873f88b2d493 Description: Mono SIMD (for CLI 2.0) Homepage: http://go-mono.com/docs/index.aspx?tlink=0@N%3aMono.Simd Description-md5: 5c5a562bb3d3d89dc76f87565d1d7ee8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-simd4.0-cil Priority: optional Section: cli-mono Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-simd4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 26474 MD5sum: ff422a33279657d00c38e4acc0e66afb SHA1: 5a61eff31e3e4de3bce132cfc79f1dbdec585d9b SHA256: 0e17108144a9d36a7d11120a0fb7a25101f88c091b7c346d97bbf454e3ae7550 Description: Mono SIMD (for CLI 4.0) Homepage: http://go-mono.com/docs/index.aspx?tlink=0@N%3aMono.Simd Description-md5: 960d4c7486db3919eb931dc09c8515b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-sqlite2.0-cil Priority: optional Section: libs Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.4-1), mono-classlib-2.0-dbg (<< 1.1.13.4-1) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system-data2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1), libsqlite3-0 (>= 3.6.13) Filename: pool/main/m/mono/libmono-sqlite2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 55104 MD5sum: 4345d47189bd6282741d99055abdd323 SHA1: b414fc2f65dad2549c6a7d5dc0af83c77823ff56 SHA256: 0c096fef2fd1944c0005ab36ec5469933c7b94924c91af2b94c8c3927b8fca40 Description: Mono Sqlite library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 4096599dd5fa476e6c1ca5337b0433f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-sqlite4.0-cil Priority: optional Section: cli-mono Installed-Size: 433 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-transactions4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8), libsqlite3-0 (>= 3.6.13) Filename: pool/main/m/mono/libmono-sqlite4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 57388 MD5sum: 7543e8b15b88636e8eae31eaac1149c6 SHA1: bd466f481401ea3b8e2a314a7c49918d3753f9ea SHA256: 4526d4c7071bb41a432abf90258c138cfa40b32b0f95f72ae6c65ec206813cf6 Description: Mono Sqlite library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 63658f1705fd06d82fb68709d2f2f974 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-componentmodel-composition4.0-cil Priority: optional Section: cli-mono Installed-Size: 581 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-componentmodel-composition4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 143384 MD5sum: e6262732811b29c4c4d6e3a44b4b63a4 SHA1: 5e916abeff26ecb5ea67a812e087f74eee1ede87 SHA256: a871c6844aece4be520a84e60c72356fbbde3c9614b523a9ff93590aa71cf8f3 Description: Mono System.ComponentModel.Composition library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 89ec387d9cbb3fad6638bc0bdcfedad2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-componentmodel-dataannotations4.0-cil Priority: optional Section: cli-mono Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-componentmodel-dataannotations4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 36596 MD5sum: 2ddc24c406d8e210bc8e855d537ceeb1 SHA1: 5dbb41fae340a2276be3a805858625667716cecc SHA256: 1c92695e290ad8eb28ff99faf89d0cfdd7a9bee3b7da1b2f5bb7538bb249c1f9 Description: Mono System.ComponentModel.DataAnnotations library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 12aca1b12cfb475a38b10fcc73c5adc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-configuration-install4.0-cil Priority: optional Section: cli-mono Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-configuration-install4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 18248 MD5sum: 89a1c4b27ee579f42494a3d3d7d2c6be SHA1: 935f4ebaf720b15e011d2a7e5454278996852766 SHA256: 213459b568c8484d730477f3844483d063df1fb76d49c4fd007b0b07a96f12c2 Description: Mono System.Configuration.Install library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: e909f36aad931871f9ede259b3012902 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-configuration4.0-cil Priority: optional Section: cli-mono Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-security4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-system-configuration4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 54340 MD5sum: a37f0155245ef4fb187a44cdd940ebb9 SHA1: 48786c7469fcfcd847eae7cf641066ca5ae1d9a4 SHA256: 80262d70a94f422d3d7e2ba8c662a0c56c75ffb50ef69269742ff0926652fdfb Description: Mono System.Configuration library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 469753ae0d40212a01babae012f08e8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-system-core4.0-cil Priority: optional Section: cli-mono Installed-Size: 1536 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-posix4.0-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-core4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 252452 MD5sum: 4574c7d7606c7a509bf17318ec338b82 SHA1: 0324180b969ce3d3c191ed8efc774bc49f4a1a02 SHA256: 487b038128c16327434209ab59065c744e29ae887c94ace6f48b5ee4a49562b9 Description: Mono System.Core library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 079b833979f82b349b9c4a6442ee7ebe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-system-data-datasetextensions4.0-cil Priority: optional Section: cli-mono Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-system-data-datasetextensions4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20486 MD5sum: 680337b70ef21c2cf1869e3809775ba6 SHA1: feb0e20c6dd91409dcd8cedbcc612ec7de1f304a SHA256: bfbadffac64e806bddcb2276804ac815d8de88969d3d034ddb2bb88aaf38a012 Description: Mono System.Data.DataSetExtensions library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: fc5af1076aa2fee837e42300e2d524e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data-linq2.0-cil Priority: optional Section: cli-mono Installed-Size: 609 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-data2.0-cil (<< 2.6.7-4) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system-data2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1), libmono-wcf3.0a-cil (>= 3.2.3) Conflicts: libmono-system-data2.0-cil (<< 2.6.7-4) Filename: pool/main/m/mono/libmono-system-data-linq2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 149452 MD5sum: 012080f3e41ec363c0cc7d605587c468 SHA1: ea3b760f0c22587a0ad9cc3939cde535dd5f0922 SHA256: b85f810a48682db55ece176e50440ab3fcdb9505b0957559436d8ac0e40e42eb Description: Mono System.Data.Linq Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 896fd4497253810026fe33e552499f33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data-linq4.0-cil Priority: optional Section: cli-mono Installed-Size: 1134 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-data-linq4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 155928 MD5sum: a32da480d6bceafb3a88196aca61cf9a SHA1: f6b924be627db664bae9b73b171561bc9a32a9ba SHA256: 7ebe354dac41471928b975fd17f46eb69dd5af32c669b7c168c2f73b0f6d7f75 Description: Mono System.Data.Linq Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a9c4f8e6b007e9d4b0896bfd91bd1e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data-services-client4.0-cil Priority: optional Section: cli-mono Installed-Size: 990 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-data-services-client4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 141454 MD5sum: f709e71faf5e44487522a0bcad3fbb8b SHA1: e62df8102925908b092253bb766b4b6aaffd8502 SHA256: 18d7107a915626bce5e1035fafbcbc8b7e72c1b1209717308adfb25e988615de Description: Mono System.Data.Services.Client library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: 1d12433e18c72903465a2c6a5a3e8782 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data-services2.0-cil Priority: optional Section: cli-mono Installed-Size: 532 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1), libmono-windowsbase3.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-system-data-services2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 135566 MD5sum: 172c9924ecb0089b98eb289286f17a4a SHA1: c75d933f708a76a59a86f561b751eb7654b48c85 SHA256: b0d9c12d8d54d87cc126c38edf369c3ff464c9d917eebebeb6fab47c716ccbcb Description: Mono System.Data.Services library (for CLI 2.0) Homepage: http://mono-project.com/WCF Description-md5: 2e1affcde448d562220f23194180c399 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data-services4.0-cil Priority: optional Section: cli-mono Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-services-client4.0-cil (>= 1.0), libmono-system-servicemodel-activation4.0-cil (>= 1.0), libmono-system-servicemodel-web4.0-cil (>= 3.2.1), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-data-services4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 26734 MD5sum: 4ed130b58ba64d8da1c98d1e4928afa8 SHA1: 121e1c8759b76dbdfa9bf9d10ae8180081e69c66 SHA256: e3a0d27526b19a54a42acba891ccb1adf84eef2b24f12bf290379951f26ca3c3 Description: Mono System.Data.Services library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: bc60ed731c6627be2dd10e4c262623f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data2.0-cil Priority: optional Section: libs Installed-Size: 958 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-data-tds2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1) Suggests: libglib2.0-0 (>= 2.39.90) Filename: pool/main/m/mono/libmono-system-data2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 246646 MD5sum: eea2f3d04d7de91a2f57091b209233e2 SHA1: ecc8242def5cdf21396ed5dcdb17082a84de998c SHA256: 130b395acbdc9a34144f7c6b2fcebfc2875e7d50e5768119ebd6b56a2753016a Description: Mono System.Data Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 18023b3f120518ee14fa9e2669087840 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data4.0-cil Priority: optional Section: cli-mono Installed-Size: 1767 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-data-tds4.0-cil (>= 3.0.6), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-enterpriseservices4.0-cil (>= 1.0), libmono-system-transactions4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Suggests: libglib2.0-0 (>= 2.39.90) Filename: pool/main/m/mono/libmono-system-data4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 299680 MD5sum: d96ff8b1359351492f47051e1d3acd1f SHA1: 188ad830f1044c0ccf3aa64e7f25fe568510a9f0 SHA256: d259f7a5dfe27e2604a88988fe383296c6d9583fe9946199aed2801e7a35ab75 Description: Mono System.Data library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: d275fa424da50595100b96e89c355f21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-design4.0-cil Priority: optional Section: cli-mono Installed-Size: 680 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-drawing-design4.0-cil (>= 1.0), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-windows-forms4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-design4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 107652 MD5sum: 923ad97ce72ff43fc49042590610958c SHA1: ff13780cb0ddc645798de64ebeaf9690e72d4493 SHA256: 1a8f2e5d6ecd1b18bc9473e348977ba95b31a1b7defebf7a4d05b044d0e54afc Description: Mono System.Design Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: e2b15383d3cc985f571f53e8f2f724d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-drawing-design4.0-cil Priority: optional Section: cli-mono Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-windows-forms4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-drawing-design4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20970 MD5sum: 6ff761a09598eb177a061ac55a80d54a SHA1: 642d4b467ed0b382b5ac158291f4605786237c3d SHA256: 0560fa38550b24e4739f12d846b2365d191457ed7ffe9973a4d22dd571ac33c9 Description: Mono System.Drawing.Design (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a242f727948c05a384613bcc38e40bf2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-drawing4.0-cil Priority: optional Section: cli-mono Installed-Size: 978 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libgdiplus (>= 2.6.7), libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8), libx11-6 (>= 2:1.6.0) Suggests: libcups2 (>= 1.3.8) Filename: pool/main/m/mono/libmono-system-drawing4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 143452 MD5sum: f3ddf53a968d6ea3eff5e63bd8aeec55 SHA1: da6011a0060f4d8d9a1e66589b95ffabb0caec1b SHA256: ede84bf5200f576134269222ec145462f835c709c72b0743427e802ed9417ba0 Description: Mono System.Drawing library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: de6103336ff20c3962301af20fd206d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-system-dynamic4.0-cil Priority: optional Section: cli-mono Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-dynamic4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 44144 MD5sum: 9606ca6974d870ad9870131b742db9df SHA1: 309ffa59f6ab6862a6facd8401755535902e33d0 SHA256: f4a77f34459fb673fa99456aab60091ebb6e48bbb9c9f00b137dab85c2e17b11 Description: Mono System.Dynamic library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: bd26089fbb24907394dd3e69b4a7c33d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-enterpriseservices4.0-cil Priority: optional Section: cli-mono Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-transactions4.0-cil (>= 1.0) Filename: pool/main/m/mono/libmono-system-enterpriseservices4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 25972 MD5sum: d1aaf20a8f9fb928235a288a28e2a624 SHA1: 42f5fb9e2a75894933250033420bac0fcebaa0c5 SHA256: 74117327383b6d1e5ea84ea296d81228515c5eb1ae1b900d2f818a447212b1ee Description: Mono System.EnterpriseServices library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 8d77270a093b520449a4e678e4dad811 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-identitymodel-selectors4.0-cil Priority: optional Section: cli-mono Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-identitymodel4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-identitymodel-selectors4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 15446 MD5sum: 024f4baba75207ea39e64dcf831cec2e SHA1: d2026947ccb7dc51bef1c4bccb1b3c88dfe3a451 SHA256: ce4e278b9b4a112857660c46d1c47afc3f612be9a2cd4676d956ab1d6901993c Description: Mono System.IdentityModel.Selectors Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: e7d8a141889c50ec194d6e4a75fad38f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-identitymodel4.0-cil Priority: optional Section: cli-mono Installed-Size: 306 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-security4.0-cil (>= 1.0), libmono-system-web-applicationservices4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-identitymodel4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 42928 MD5sum: 6ded200c9945804b74f261855405cb8a SHA1: c2d9f1546af79c9b44e61b1e23bed1d692854033 SHA256: a46b2fce5091aaed8cbaa09962a5886a1876cd4a2c441ea185d9c102c18efbb1 Description: Mono System.IdentityModel Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: 41e795a45e724dc21c6594f7f8cc23d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-io-compression-filesystem4.0-cil Priority: optional Section: cli-mono Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-io-compression4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-io-compression-filesystem4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13370 MD5sum: 5ea8fb66d1a31155976a8f3c1e59cf69 SHA1: 2d3acfe2ec4c0aa347ced04512e10092da87db51 SHA256: d1c3d9366b7592c869a2c88067aa44b74138244190731b3fce7c6d242afc28ef Description: Mono System.IO.Compresion.FileSystem library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: bc9ea852026cc901e0e77185a03fae5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-io-compression4.0-cil Priority: optional Section: cli-mono Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-io-compression4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13682 MD5sum: 311ca3ad729de35f8e58f4b6890c58ac SHA1: 7fa624802c991d2f1eefea09f8c720e4fede612d SHA256: 0c79c59a444d36b0b21c8ff2afe28788470ef4767949ddcf2a9b71b0e9b5227b Description: Mono System.IO.Compression library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 182e1875730346e94596ec57aae6630b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-json-microsoft4.0-cil Priority: optional Section: cli-mono Installed-Size: 209 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-json-microsoft4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 30964 MD5sum: ef3b31392558dbf38bf11f38fcbc3683 SHA1: 00a3ab71851f7ac63d38b20a9ca8ce4d658a71ea SHA256: 1a56fd43bdf0e2ee0d0e7574c7e9eeebe7a5c01bb8930a38eba56a229819f96f Description: Mono System.Json.Microsoft library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: feeaf88c32dc05342abf4ff264bd28f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-json2.0-cil Priority: optional Section: cli-mono Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-json2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 19656 MD5sum: b2caf333c70e960894f3c475e3e12a67 SHA1: e2f3019bae227a8f37d5eca782b8727efc27f387 SHA256: 25296549c734cf62e80b55c3120df8bfc313e2d7b4acb4cef4c77ccf1f31b19e Description: Mono System.Json library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 8a0e66705b9980856bc1c418beb225f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-json4.0-cil Priority: optional Section: cli-mono Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-json4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20792 MD5sum: 8c9fc68dca287f5ba09a933ae19441d8 SHA1: 3a6ce686b5b4e51c1ba9a7c4017a2940d3910716 SHA256: d80fa4d3819b0c66e14e44b3a6d61e5515d6fbe269bd82f6bbf4930c141a874d Description: Mono System.Json library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 0b5914f5bf8c7889de43931b947c5fbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-ldap-protocols4.0-cil Priority: optional Section: cli-mono Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-ldap-protocols4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 29820 MD5sum: bbc6535065d109579c967645528d411e SHA1: 372ee5e2dcfced90e11885d9a98785c21f203aaa SHA256: 6a5c7a2250335df3e1e1c559001fdf80480082084e4c8ea74fa4a1be7fa6863c Description: Mono System.DirectoryServices.Protocols library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f22af9cbb6c8f1daa9eeeeba086a00df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-ldap2.0-cil Priority: optional Section: libs Installed-Size: 256 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-ldap2.0-cil (>= 3.2.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-ldap2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 54176 MD5sum: 5559476d680110840dfab4b9770c93d0 SHA1: 216887ce5855400158a90585012024e66b828fd2 SHA256: b039f22a665c159541b56c7bd57a89621cc4a3e047bd3cb66c2b61c8e6bc2069 Description: Mono System.DirectoryServices library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: f3ccdc6d384ddc3a9b1e9167f0fd8c0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-ldap4.0-cil Priority: optional Section: cli-mono Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-ldap4.0-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-ldap4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 41374 MD5sum: f40ec3f9e8f97629c399e58adb4d1750 SHA1: 33ccd63dcec9f16d1e4dfd0045b07ccd2192e621 SHA256: 59407e80c02d2f3da70106b59870d7ac6f182373a270b6c720e75482d1cd9085 Description: Mono System.DirectoryServices library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 89e35238b89ef34c4376190a265d1a7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-management4.0-cil Priority: optional Section: cli-mono Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration-install4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-management4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 25670 MD5sum: f8b1adcef5f3bac4b8f789380e2d6630 SHA1: 4140ca15ffecd3ef74082c340d24a4df7cb5a477 SHA256: ea914a81ca367f332524008d79db307441e74ba425fc2dd9e286d57a9e42543c Description: Mono System.Management library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: fb7779f23f7edc794220e3e3fb382d19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-messaging2.0-cil Priority: optional Section: libs Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-messaging2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1) Suggests: libmono-winforms2.0-cil (>= 2.4) Filename: pool/main/m/mono/libmono-system-messaging2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 33012 MD5sum: daacc63851089b37e5112b2cab9068ae SHA1: 226df1fdc4008f3a0cc462796500715be5128690 SHA256: 4af4c4ffa78fcdd044ffa846711dc234cdf805e0ad7cf0529a8dbbd34b460b83 Description: Mono System.Messaging Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 826129ad595224f2cc91dd3e45744e62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-messaging4.0-cil Priority: optional Section: cli-mono Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-messaging4.0-cil (>= 3.0.6), libmono-system-configuration-install4.0-cil (>= 1.0), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-windows-forms4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-messaging4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 35228 MD5sum: 77b5c4d8e51398944ff1003d2c78f13e SHA1: 53b06eb19a74bcbd1d533f9516529eaff82e2b4e SHA256: c5d6716706cbce0e15c04ad87f2cb3ace8a5277a8b1c5a89c0af77c289a482be Description: Mono System.Messaging library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: c23fb451f91e0512b56ac658a4452eae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-net-http-formatting4.0-cil Priority: optional Section: cli-mono Installed-Size: 625 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-net-http4.0-cil (>= 1.0), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-net-http-formatting4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 170916 MD5sum: fba19214749572b077e0ef628119db93 SHA1: 0bbb158050df1d778380e7b537a3fa71fa6ebbb1 SHA256: 65db1c22c26e9619c5fd313023e7176915fac2a30870d858b73d04c0c6bfcd80 Description: Mono System.Net.Http.Formatting library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 6ff24db9913d8dbcd84bcb312a85c1fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-net-http-webrequest4.0-cil Priority: optional Section: cli-mono Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-net-http4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-net-http-webrequest4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14136 MD5sum: 054b5667a5665395ccc3f3e3a66c90d0 SHA1: ee5f91cf3938e89680424577b8ad0b63822208b1 SHA256: be50f5e8d034bcd09a37ad0f937f81be03bc3cdbee91692cad43a25c52e616d8 Description: Mono System.Net.Http.WebRequest library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: d23a5a969ad99f2528f6f20bf7af1d0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-net-http4.0-cil Priority: optional Section: cli-mono Installed-Size: 209 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-net-http4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 48314 MD5sum: b91d49824b248db302331a80a23be1e4 SHA1: e6477ce691fe754f42b748a9a3079f9bad6802e3 SHA256: 92d4d9bdf30f09a84c04549ed8f1cfd84caa66dc7bb6e9283e0698baf0bb1a8c Description: Mono System.Net.Http library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 3ec76f2b58b6261dcce4c1bbd3c6bec2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-net2.0-cil Priority: optional Section: cli-mono Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-net2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13078 MD5sum: 80ae4b8f175df23b5a766a6b9fc6f259 SHA1: d0c8fae31114ebfde333379af29b8a03c029b9bc SHA256: a259ed150e6da7978c3cd780a96052bd37993489bcb8d27f61b252f6fcb6cf64 Description: Mono System.Net library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 843931e60db24a52f84865c316f8ce49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-net4.0-cil Priority: optional Section: cli-mono Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-net4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14208 MD5sum: 8851d173ccce4b23e04b4a10267a319c SHA1: 5d685de2032d38e139f30d0c450871c57ca120bf SHA256: 7071871eef48a53e6bdfd4bc223b1fbd8cf084f075aad16d3ec0438afd9876cb Description: Mono System.Net library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a78b7887c44a2788b4f26e7209b77705 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-numerics4.0-cil Priority: optional Section: cli-mono Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-numerics4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 23468 MD5sum: 345b69b24420b65a25f47ea89a621d12 SHA1: 44f6bcf2fafa88143c6a34306ca20b7949286a3d SHA256: 1bb1fcf23cef4e101467b0de91a859f028a61a23bde82c25b049053913ac42e7 Description: Mono System.Numerics library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 79c7c0610ecb45e074d8f3a64d150aa8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-core2.2-cil Priority: optional Section: cli-mono Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-core2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-core2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-core2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 44164 MD5sum: 9ebfa8acdd0bf6ff47e9e58ad5d78a6d SHA1: 737fb11507155a52605f95893ac5f0587c3aa4a4 SHA256: e02ac2a242cff3b0434e90f8403dbb8fae878ac61f0fd5093c09c05acb1d9656 Description: Mono System.Reactive.Core Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: cfdd3305626b0c07410f79fc424185c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-debugger2.2-cil Priority: optional Section: cli-mono Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-debugger2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-reactive-linq2.2-cil (>= 1.0) Conflicts: libmono-system-reactive-debugger2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-debugger2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 12070 MD5sum: fe10db54e6d27ec460b221835b4393c9 SHA1: 274d69c97d0bb13db310d988e9768952eb746fc4 SHA256: 4b1fff8819fb7773d9a67f8708cf9f1e07634abd9d7754d6600deb2efaf70785 Description: Mono System.Reactive.Debugger Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: 3405fcae681eb7c28dff82ed09995ed1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-experimental2.2-cil Priority: optional Section: cli-mono Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-experimental2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system-reactive-linq2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-experimental2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-experimental2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20282 MD5sum: f3340203e8e2d71f3bf9cb14f46aac73 SHA1: 2b968ed75ee85e97724a2c2e9240fee777ff3174 SHA256: 5485a9eefe6a2b1f6b4b2402d84a95a99c6c465c16d0892ed973107aef7cbc28 Description: Mono System.Reactive.Experimental Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: 1355db046b4e2167bac2002535b1eb4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-interfaces2.2-cil Priority: optional Section: cli-mono Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-interfaces2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-interfaces2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-interfaces2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13030 MD5sum: 926ade7e9fb2cce1e35055a0d3c49ce5 SHA1: d51502d2ab590a1bd54f47c861c6d7cc513cd24b SHA256: 8ca5715836b6b98a1a7980ab6b6831961966b257b255ac8de5c0e3d9af4d4f62 Description: Mono System.Reactive.Interfaces Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: a9fe74abf54ff2ae09917753c9061eb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-linq2.2-cil Priority: optional Section: cli-mono Installed-Size: 803 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-linq2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-linq2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-linq2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 156094 MD5sum: 3afa31d505e8fdfd51ba09419af58fb9 SHA1: c154e7466fb2b368d077f410ca6a44587f662c21 SHA256: 1d583af54a329f5cabc0114dcc14471b6fcd56321421a678e1a6a4c4e0ff5a65 Description: Mono System.Reactive.Linq Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: c40f458f1d727566957c5b8acde033a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-observable-aliases0.0-cil Priority: optional Section: cli-mono Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system-reactive-linq2.2-cil (>= 1.0), libmono-system-reactive-providers2.2-cil (>= 1.0) Filename: pool/main/m/mono/libmono-system-reactive-observable-aliases0.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13014 MD5sum: e3e4ec58cd7fa3b850ad3174a7d08731 SHA1: f60c51dadb3b6cd78149a620fa6a0e8b27489ed1 SHA256: caa08e61379d44c5a534a3fdc4868eabf0b7b862c73dc611ef9d0f9456268f9e Description: Mono System.Reactive.Linq Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: 49e508928c5e5aff7b9ac827fc0ca276 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-platformservices2.2-cil Priority: optional Section: cli-mono Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-platformservices2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system-reactive-linq2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-platformservices2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-platformservices2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 19542 MD5sum: 4684b843ebbd36e434d09af6953e5563 SHA1: b9b12d15f1d76c09b00668892a3f9ffbe100219e SHA256: e49349e6822839a35cc3b9a5badd5d4e21a5df0b3f923d7e2d4d9e4866b53ca2 Description: Mono System.Reactive.PlatformServices Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: 322009509c26a7c7b04c4e1ca2b82161 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-providers2.2-cil Priority: optional Section: cli-mono Installed-Size: 342 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-providers2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system-reactive-linq2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-providers2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-providers2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 48706 MD5sum: 992694144536e1784cbe72df8f632a9b SHA1: 811acbcb2e016f60414dc38d91840ac1eedf2799 SHA256: 7ee0d54606d0134f282ccf6fd37015c66f9ead4890f4fff3e486aab3fb6e24a3 Description: Mono System.Reactive.Providers Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: b0979f03c4c2ac7cc61b04ae225ba073 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-runtime-remoting2.2-cil Priority: optional Section: cli-mono Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-runtime-remoting2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0) Conflicts: libmono-system-reactive-runtime-remoting2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-runtime-remoting2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13880 MD5sum: 475e32ca8b7d3025bbeb7d0793e4e49d SHA1: 9a34a238ff6ceba93ba2bfc81fe8ab43535f1c40 SHA256: c95694c4d8fdad443b22cbbb4857fb377737f5a6657ff871fe7fc58b5492e481 Description: Mono System.Reactive.Runtime.Remoting Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: f6ef8872f8e0ec23a456b2815424f21c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-windows-forms2.2-cil Priority: optional Section: cli-mono Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-windows-forms2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system-windows-forms4.0-cil (>= 1.0) Conflicts: libmono-system-reactive-windows-forms2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-windows-forms2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13932 MD5sum: bf0c0611c0adda9ccec1417b03a228db SHA1: 1bb635938e99e2d6157086866f21d94c40278245 SHA256: 9dc7665e8db063c7335dc5f80a934b1c00ebe51789230fdf77a54ddccd6d3d28 Description: Mono System.Reactive.Windows.Forms Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: a523436653a4eaf34467f9f72ab11622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-windows-threading2.2-cil Priority: optional Section: cli-mono Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-windows-threading2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8), libmono-windowsbase4.0-cil (>= 3.0.6) Conflicts: libmono-system-reactive-windows-threading2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-windows-threading2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 15216 MD5sum: 8903f28490b7f41271aff4cbe4aa5f05 SHA1: a27755c3e066a96d2949a6b47636b83ed9e41ffb SHA256: a1a333f2a13a7f954ba3fa000924ddb4ef3e485ad0333bde81aff28ea3a2c250 Description: Mono System.Reactive.Windows.Threading Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: e959458cba93d66d5184e4b8255ec83c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-runtime-caching4.0-cil Priority: optional Section: cli-mono Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-runtime-caching4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 30980 MD5sum: 759ac827da2bd5182c8b46f169ed5ceb SHA1: f620ace8a4e31eeea4a1bd286d8e120fe5f4d97c SHA256: a730a31637c5e476a3027b19fc2064b5eed8526848aaa378700b7a5364f676c0 Description: Mono System.Runtime.Caching Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: eea4d8a6ab7a06844e37e38e3afd3ac1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-runtime-durableinstancing4.0-cil Priority: optional Section: cli-mono Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml-linq4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-system-runtime-durableinstancing4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 19254 MD5sum: f413ea03ca2704f08f1f8b1e40d599d1 SHA1: 3d368d37763d628bcf1f9bc92bc302d0bffcdb0c SHA256: 69b09c34ade3bbdf57e44b11f2d24ffe783119379ce7430cfc632c66653a9c86 Description: Mono System.Runtime.DurableInstancing Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 07668d407020d98267e6f13a0b6c03c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-runtime-serialization-formatters-soap4.0-cil Priority: optional Section: cli-mono Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-runtime-serialization-formatters-soap4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 25450 MD5sum: 7add4b0ff4fe6d0f3650b23d4cdc8197 SHA1: 19a51783ba1e74e18092b3b4f4830f85b320a9cd SHA256: 51bfb7db156891edec10e8c8e315c3fb4e12d498af73de97b1a86aeb3ef337b5 Description: Mono System.Runtime.Serialization.Formatters.Soap Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 8992cf5587ba2f42ce4741a889ca93f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-runtime-serialization4.0-cil Priority: optional Section: cli-mono Installed-Size: 565 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-runtime-serialization4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 117088 MD5sum: da3c945135c4f536141fac54c3efb6e0 SHA1: 99e97b1626f9f52446cac51047011427e7b5886d SHA256: dfbf881d71e522a794009e517e6e4d94d1479d9178ca50e3f0b9060910f3dfdf Description: Mono System.Runtime.Serialization Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: ffb5ddef8df6850900866c0298e34b9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-runtime2.0-cil Priority: optional Section: libs Installed-Size: 259 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-runtime2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 64370 MD5sum: d5b5996df10a5327fe32fee60f1c9b29 SHA1: 74eddfa974768ca181518ac7c398ab7b0ae9c244 SHA256: 097a82ace85052f1476025c79bb0dfc12c22adbc8ca36ebc34848470ca7593eb Description: Mono System.Runtime Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: ca048e0bb1e523cb50084a0cbf583ef1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-runtime4.0-cil Priority: optional Section: cli-mono Installed-Size: 341 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-runtime-serialization-formatters-soap4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-runtime4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 55420 MD5sum: 917bdcf678f80db9a5fe5822420198f8 SHA1: 4bfb89dd65fae95798e8da3f0122d0774053e986 SHA256: 29274a26b8ffc61648e54bf75ec306e4ef756d61a7d62f9a9c3d170cda09eca4 Description: Mono System.Runtime library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 20bd31e4da5dfefced9ed2aa90867b86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-security4.0-cil Priority: optional Section: cli-mono Installed-Size: 357 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-security4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 55262 MD5sum: 36991e6d47780e5b372248ca77d31af9 SHA1: 77208f0276fb775e828794c5c078902526e2e731 SHA256: e9c358ce010bc6b7d5aa58ef2e678625b745f80580557bb532ae120ef28a94f2 Description: Mono System.Security library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 0de0138f9e1f5850367960a1ea4fb89b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-system-servicemodel-activation4.0-cil Priority: optional Section: cli-mono Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-servicemodel-activation4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14296 MD5sum: 66e3aa31681bed06910918f64405ec54 SHA1: 802c3db661f3089e107101284e021d8baa635efe SHA256: 6b3493fd873a199cc2ebf537b8499d55b9f3854e64858d0bb55212a267ce08a7 Description: Mono System.ServiceModel.Activation Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: 369d0cfd7f336a6afd7e4153d24eb18b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-servicemodel-discovery4.0-cil Priority: optional Section: cli-mono Installed-Size: 383 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-servicemodel-discovery4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 51126 MD5sum: dc203cb1bf5f091524b57b911ac2b15b SHA1: 08c7fb8d3ba51d5ee1ab4c73e62db8e6e0c3b329 SHA256: 894d08fdaaf0296dad6cb93ffcbcd0bea473a0e2e9ddf5614cbf89ecdeaf4727 Description: Mono System.ServiceModel.Discovery Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: a59d32badd3d07b7cfc65f67a22d7687 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-servicemodel-routing4.0-cil Priority: optional Section: cli-mono Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-servicemodel-routing4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 22160 MD5sum: b9411704f81356ad0a284bc371620128 SHA1: eeeb95d1a39d840ca0175663d83aafa5837be04e SHA256: 9af1e189f30d66c81c57f882de0c89ecec5ac18d00af96b79fabd5e1c04899ed Description: Mono System.ServiceModel.Routing Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: f001ecc15f330dfbf75414ee56371bc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-servicemodel-web4.0-cil Priority: optional Section: cli-mono Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-servicemodel-activation4.0-cil (>= 1.0), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-web-extensions4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-servicemodel-web4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 41284 MD5sum: 205d1494f9776e37df2d8f79267f8c84 SHA1: 80a68c3c70f5a2c55efa91f74629296117cb2a16 SHA256: 319cecaeb67cf1f76e4067212bbb337c086621f58688116d9332732f222dd116 Description: Mono System.ServiceModel.Web Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: 3d8c5480adc3521d9376558cb9d706cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-servicemodel4.0a-cil Priority: optional Section: cli-mono Installed-Size: 3092 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-servicemodel4.0-cil (<< 3.2.3) Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-identitymodel-selectors4.0-cil (>= 1.0), libmono-system-identitymodel4.0-cil (>= 1.0), libmono-system-messaging4.0-cil (>= 2.10.1), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-security4.0-cil (>= 1.0), libmono-system-servicemodel-activation4.0-cil (>= 1.0), libmono-system-transactions4.0-cil (>= 1.0), libmono-system-web-applicationservices4.0-cil (>= 1.0), libmono-system-web-services4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-servicemodel4.0-cil (<< 3.2.3) Filename: pool/main/m/mono/libmono-system-servicemodel4.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 555654 MD5sum: 78b255b1cff684c2beefcc64b4384a3f SHA1: 38e09df62e159a02b37cb7d7e8034aba041ab647 SHA256: 70302f1df362c741ff543939295c158f6c350515557f4d4593f307b173c1a572 Description: Mono System.ServiceModel Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: 4d848dcddcd260ebf7a4f0c8a3f036b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-serviceprocess4.0-cil Priority: optional Section: cli-mono Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration-install4.0-cil (>= 1.0), libmono-system-windows-forms4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-serviceprocess4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 26220 MD5sum: 75384fc8ff2c0e8a49f29475b9c9f125 SHA1: 0a83a6856cd6d137474e544430478f4d8f0bbc5a SHA256: 45530ec0b312ff62e614b8f507aab3443432d34bf5d45dd5ade26c74fb49b1f0 Description: Mono System.ServiceProcess library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: c10a35882a03c1de2c9395594d40b772 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-threading-tasks-dataflow4.0-cil Priority: optional Section: cli-mono Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-threading-tasks-dataflow4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 38066 MD5sum: f03ff6ce5cd7fafcad7921d24d715f6e SHA1: cf05c14625bbf796fd8e5466ca749facc829b99c SHA256: e2bf436c283ea7ddfae012934bd0d4f0385735a532656c63d6c251d3ab21e799 Description: Mono System.Threading.Tasks.Dataflow library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: e77d1e3eee76cebf27811fa68012f5fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-transactions4.0-cil Priority: optional Section: cli-mono Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0) Filename: pool/main/m/mono/libmono-system-transactions4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 21726 MD5sum: 61a57856c7316a2c57b99327ce99366a SHA1: cd6368bc0f6092c63cfa51b1833af715653c8c09 SHA256: 042902143686a831ad1f2ca68ebd1a8e7d0112e42b1f4dfb2b9919114fbbe6ed Description: Mono System.Transactions library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f9364a553b7af50d6f9946805fa44814 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-web-abstractions4.0-cil Priority: optional Section: cli-mono Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-web4.0-cil (>= 2.10.3) Filename: pool/main/m/mono/libmono-system-web-abstractions4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13940 MD5sum: 311d836adf131c9a08bb4ce42364fbaa SHA1: 663a40486c03ce4963254d08ba1f546b986b839e SHA256: 6e325c76b2f0a40c7f1e9733dd9580b6b0184750c594d7d4e6db6c339f06ebc5 Description: Mono System.Web.Abstractions library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 03ec665c776331f5b37ab7eed6cecdd7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-applicationservices4.0-cil Priority: optional Section: cli-mono Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-applicationservices4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 19990 MD5sum: 9732264ad0d914c7c77241e42b4a4485 SHA1: 20df849a71dc033c25ef7fc9809fba65010e6c1b SHA256: c6c2769da3cff8164106f0c058dec5e1400bf292e1a4fa9c020f3eb89f8ab922 Description: Mono System.Web.ApplicationServices library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f3a3b4b7d61cbd379992c7bf5986e7e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-web-dynamicdata4.0-cil Priority: optional Section: cli-mono Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-web-extensions4.0-cil (>= 2.10.3), libmono-system-web4.0-cil (>= 2.10.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-dynamicdata4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 36314 MD5sum: 02885d14d8d88eb7202415788dd3258c SHA1: 3bf65049127261050bd4fc52d62c2949e32eb1c3 SHA256: c166fe0387e557efc8a64a65f4975fc758802a5217a9717771b7631884cd7b3b Description: Mono System.Web.DynamicData library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a18483df70ea217bf245be8762fb9656 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-extensions-design4.0-cil Priority: optional Section: cli-mono Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-design4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-extensions-design4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14798 MD5sum: c9973c50caa324a256b4ae549fd77f38 SHA1: 16e563ff21d7039b5c6a107129948bddcd710637 SHA256: 5821c4c8094a034aee96f3c7efa1ca3a324b083a1f009f3aafa1e93d979eccda Description: Mono System.Web.Extensions.Design library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 6b16bd81d976bf77288d30d485a7e675 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-extensions4.0-cil Priority: optional Section: cli-mono Installed-Size: 1597 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-web-applicationservices4.0-cil (>= 1.0), libmono-system-web-services4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-extensions4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 166000 MD5sum: 359c41fc466e7735cb6956f4cf6014e1 SHA1: 6c2e245c1142776f3630fcd99c91d3fbb616ddfd SHA256: 5201ce4adae39e77d346c14f5da1139d1442cb9164f94f77fc4dd8d339ea8189 Description: Mono System.Web.Extensions library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 1f3d7abee274af3e8853e3a0a75d9421 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-http-selfhost4.0-cil Priority: optional Section: cli-mono Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-identitymodel4.0-cil (>= 1.0), libmono-system-net-http-formatting4.0-cil (>= 1.0), libmono-system-net-http4.0-cil (>= 1.0), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-web-http4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-http-selfhost4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 40014 MD5sum: 31515571961fc41eb13c2c2ac4a5f4f2 SHA1: 1266885271a291905566d1de8e83bb93de831203 SHA256: 253d24fc8fdba18cf5114138a3df328c634ca964ffb89807854868d371d45278 Description: Mono System.Web.Http.SelfHost library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a53fb6bd27292ed1b82ef4586655c5b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-http-webhost4.0-cil Priority: optional Section: cli-mono Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-web-infrastructure1.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-net-http4.0-cil (>= 1.0), libmono-system-web-http4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-http-webhost4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 31772 MD5sum: 92f514606fd94535bf832f772d79a298 SHA1: d63098a08fcf140100323b59cb79217531e14d7f SHA256: 5be34a6a49643ebe597a991870ef816a11414fb4c1239abf54cc6ec6b2b8a8fe Description: Mono System.Web.Http.WebHost library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: ad32a533df16b24de07ccd7ea83e9138 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-http4.0-cil Priority: optional Section: cli-mono Installed-Size: 425 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-net-http-formatting4.0-cil (>= 1.0), libmono-system-net-http4.0-cil (>= 1.0), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-http4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 119690 MD5sum: aa39487028629deeb5869482f0ce992f SHA1: 133e6f762c5b08f81231723582dc1e297b1898b9 SHA256: 4aae588a894a405b669969dd8f97ec6d1e817200ef63a59409f10f40322d0868 Description: Mono System.Web.Http library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 9d6b570be220a57eb672343efb313c28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-mvc1.0-cil Priority: optional Section: cli-mono Installed-Size: 277 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-web-mvc1.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 71616 MD5sum: 8bc087820b18e78c9590a20f131f59d8 SHA1: ae1a5189ab941bbc0f2716b596f0755995c5a109 SHA256: 8153b913339428943a38abf0b610cbd26ea510b911491ab1bb4fdc36fcb766a1 Description: Mono ASP.NET MVC 1.0 Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: ac99a6997a70da27a5c9f35bd470d9e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-mvc2.0-cil Priority: optional Section: cli-mono Installed-Size: 463 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-web-mvc1.0-cil (<< 2.6.7) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system-data-linq2.0-cil (>= 1.0), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-web-mvc2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 123014 MD5sum: 6e2e05da26e1f94e061a7499876233b0 SHA1: f38072bac38c5874d0441bb0a9accb7822916da0 SHA256: 0cfc57ce14ba7a323ca46e2817042c92d1b3f68d6c950f223f6f846ee0210dc3 Description: Mono ASP.NET MVC 2.0 Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 563583d4e1a348d348a8f75ca9b6e7f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-mvc3.0-cil Priority: optional Section: cli-mono Installed-Size: 523 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-web-infrastructure1.0-cil (>= 1.0), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-runtime-caching4.0-cil (>= 1.0), libmono-system-web-extensions4.0-cil (>= 2.10.3), libmono-system-web-razor2.0-cil (>= 1.0), libmono-system-web-webpages-razor2.0-cil (>= 1.0), libmono-system-web-webpages2.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-mvc3.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 139638 MD5sum: 2eff85a2b3603e170d5e530b9c0a6eca SHA1: 2b39217edc4fdfc67f36b781ab158b83eed96f15 SHA256: a510ad4bdc5fb8e862cfa301e7330565e3745edb1b66818ee9c755d1b642968a Description: Mono ASP.NET MVC 3.0 Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: b0141d2156c9d6c4dcd2edc42fd87e19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-razor2.0-cil Priority: optional Section: cli-mono Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-razor2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 93142 MD5sum: ce9f6fe44756e1ec6ebad326ba77bee6 SHA1: d5aeaa51b2db2b2a3e0eb0a205e6956b8a0d9f85 SHA256: 3817cb689f9f4f2646243ad7e984fc94b94ee20a4794826141273621484edcb4 Description: Mono System.Web.Razor (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 6d05dbe7d05fdbbb92a3a1438614c77d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-routing4.0-cil Priority: optional Section: cli-mono Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-web4.0-cil (>= 2.10.3) Filename: pool/main/m/mono/libmono-system-web-routing4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13938 MD5sum: cf209e6c6b0fd3e3eb237488899f6d16 SHA1: afef67f4ccf723e100447d73c6b67fd77c83cc5a SHA256: 2e7ce3d3ac60ec3401cfab711f1cd90f69b8273cd94e68218676c95e044fa189 Description: Mono System.Web.Routing (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f8c4cc1bef8f1d8f0bb6dcf58cc802ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-services4.0-cil Priority: optional Section: cli-mono Installed-Size: 782 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-enterpriseservices4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-services4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 112534 MD5sum: 678708d69dc853f6dc35896738153a9c SHA1: 1543f5e6b1748b790c6a2a502bb58f857a456f0f SHA256: cba3535e45d6ef5a34f049e2db6167d934288813e7dfa698f9310d13c6bab7a0 Description: Mono System.Web.Services (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 239a8493cd0df37ccec20bcc85176042 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-web-webpages-deployment2.0-cil Priority: optional Section: cli-mono Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-web-infrastructure1.0-cil (>= 1.0), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-web4.0-cil (>= 2.10.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-webpages-deployment2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 23984 MD5sum: 3c24fce32004ede7afcb8fdaf886f3f8 SHA1: b7583893ee0a31ae16117560d53b123b655f64f8 SHA256: 5d078317f3944b11e7bbacca874639678b33c12b377514ae53329da69792da58 Description: Mono System.Web.WebPages.Deployment (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: b72890be0369bb83b282dd379607b6cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-webpages-razor2.0-cil Priority: optional Section: cli-mono Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-web-razor2.0-cil (>= 1.0), libmono-system-web-webpages2.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-webpages-razor2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 23304 MD5sum: 9c9b73b9199bf424b4db88493294b00a SHA1: 0079e4c9700aa07173cdb27a14be291c6372cb4f SHA256: 810263e61d9e682a6f0b202af55f6705465ca57f25c88222649db48232c2ba0c Description: Mono System.Web.WebPages.Razor (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: b4c763bec5037099f14535cf16323480 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-webpages2.0-cil Priority: optional Section: cli-mono Installed-Size: 293 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-csharp4.0-cil (>= 1.0), libmono-microsoft-web-infrastructure1.0-cil (>= 1.0), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-web-razor2.0-cil (>= 1.0), libmono-system-web-webpages-deployment2.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-webpages2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 76806 MD5sum: aec64cfaa7c4948dca5e2ae0da65e053 SHA1: d346687276016f11b369b8e6ce03cdf8975c62b1 SHA256: 5085c24e2767a245293db63618827151588c180f308bdbadbf593a3874749b6e Description: Mono System.Web.WebPages (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 26ec2648eaa6798ff8130422ed75eb4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web2.0-cil Priority: optional Section: libs Installed-Size: 4309 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-sqlite2.0-cil (>= 3.0.6), libmono-system-data-linq2.0-cil (>= 1.0), libmono-system-data2.0-cil (>= 3.0.6), libmono-system-runtime2.0-cil (>= 2.4), libmono-system2.0-cil (>= 3.2.1), libmono-wcf3.0a-cil (>= 3.2.3), libmono2.0-cil (>= 3.0.6), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9), libgdiplus Suggests: libmono-winforms2.0-cil (>= 2.4) Filename: pool/main/m/mono/libmono-system-web2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 938010 MD5sum: 950b480f830d221a6c9232836298c854 SHA1: 5407073993dee359ec2bf1a61f5dc6faf05e0e80 SHA256: b6dd2d04f2e8864f5deaa8071a1f22acd947187f7fe12a6c3cbdffe94683274e Description: Mono System.Web Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 05ee9a06c4193ed9f0bc6d8661edbfdb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web4.0-cil Priority: optional Section: cli-mono Installed-Size: 4887 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-sqlite4.0-cil (>= 3.0.6), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-enterpriseservices4.0-cil (>= 1.0), libmono-system-runtime-serialization-formatters-soap4.0-cil (>= 1.0), libmono-system-web-applicationservices4.0-cil (>= 1.0), libmono-system-web-services4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono-web4.0-cil (>= 1.0), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9), libgdiplus Filename: pool/main/m/mono/libmono-system-web4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 815414 MD5sum: 0f91ea4947a3bc2e1ae0ce21d0b6f322 SHA1: 06617acf79f6e05d0ee2728ccfa4bc7f384e63fb SHA256: 94dce879b053d8a84c5292852e9a577c0663a551f8117b6bcb3d3d0ea8524d2c Description: Mono System.Web library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a1aee459b39706adf3d4f84b1da163ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-windows-forms-datavisualization4.0a-cil Priority: optional Section: cli-mono Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-windows-forms-datavisualization4.0-cil (<< 3.2.3) Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-windows-forms4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-windows-forms-datavisualization4.0-cil (<< 3.2.3) Filename: pool/main/m/mono/libmono-system-windows-forms-datavisualization4.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 49696 MD5sum: 421b4d433d628bdd8edb613d28642e65 SHA1: f73a91580c7b269fcd21150496229ce390404495 SHA256: af167ed1adc18f0781d9fe20b8fa1eeb19b30b8530382e7d97d2e8ebef462c03 Description: Mono System.Windows.Forms.DataVisualization Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: b335c0060781bdf70cc2795a530eef51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-windows-forms4.0-cil Priority: optional Section: cli-mono Installed-Size: 6033 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-accessibility4.0-cil (>= 1.0), libmono-corlib4.5-cil (>= 3.2.8), libmono-posix4.0-cil (>= 3.2.3), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-runtime-serialization-formatters-soap4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono-webbrowser4.0-cil (>= 1.0), libx11-6 (>= 2:1.6.0), libgdiplus, libmono-i18n-west4.0-cil Suggests: libglib2.0-0 (>= 2.39.90), libgnomeui-0 (>= 2.22.0), libgtk2.0-0 (>= 2.16.0), librsvg2-2 (>= 2.22.3), shared-mime-info Filename: pool/main/m/mono/libmono-system-windows-forms4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 861950 MD5sum: f2746f18ac3dd0a022d4a7c9d63530d6 SHA1: 836fe0e5d6c633f1f8d30e446404319db89e3fb9 SHA256: e21570ddc0e3a99fa975cd56dc93a65d1b156f15b7079fbaeb59a8371709158c Description: Mono System.Windows.Forms Library (for CLI 4.0) Homepage: http://www.mono-project.com/Winforms Description-md5: 27cd7a56d703e2aee53f71bcb7409782 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-windows4.0-cil Priority: optional Section: cli-mono Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-windows4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 12888 MD5sum: 820cce75816098df0ad1a23446d3c806 SHA1: 762b6fe0b1a40e1a277e31e228eae102cd31913d SHA256: a6b23292dfb778fafac38bf215b9077cb8ec037cb4d2d43777eae2e229287086 Description: Mono System.Windows library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 4c44d0cff2eebbef87b9c05254dd83f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-xaml4.0-cil Priority: optional Section: cli-mono Installed-Size: 486 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-xaml4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 82282 MD5sum: 87dc9f0924bd2bf1144fb73e69075eab SHA1: 9948eefe4aa97930fa83078d632930d1de44aca4 SHA256: 914955c2b7c5313e890568865f283017dafdc0703b0fe89d4d6ba497e8efec90 Description: Mono System.Xaml Library (for CLI 4.0) Homepage: http://www.mono-project.com/SystemXamlHacking Description-md5: 733cd5e627fabb4e931efc678dbca605 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-xml-linq4.0-cil Priority: optional Section: cli-mono Installed-Size: 317 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-xml-linq4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 44432 MD5sum: af64681ea87d0d61b901cf9205e982dc SHA1: 5aa8ddc983e573bfa7d3cc7056d73cacd3886c34 SHA256: 9eb70322299d326f60688cdcbcda808989535cdc6daf129ce66a296313346837 Description: Mono System.Xml.Linq library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 5c37690477ab5977633f2bdaa3984e88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-xml-serialization4.0-cil Priority: optional Section: cli-mono Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-xml4.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-xml-serialization4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 12770 MD5sum: 536161350773e58104e7b36bcf0d52c5 SHA1: df68567537481bc801a7b4cb77f5f39f9368cf04 SHA256: 83184be612b4f6b6a686da5d9cbf55a0f4f7a9b78afdab797cc7d79c2e2b1ce9 Description: Mono System.Xml.Serialization library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 537790e9aaf2d5755bd7d9b76edf57ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-xml4.0-cil Priority: optional Section: cli-mono Installed-Size: 2635 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-xml4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 472382 MD5sum: 147953f411ae13bf5c576efb252dea0f SHA1: 97098ddb282dc788138ed3c165a3b5498f8188ab SHA256: 9f8bf2c46ecedbf8b0e92192db8185492de0b932118b6bb32a5888914d4a19fa Description: Mono System.Xml library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 7fff3f7341fbfda36ac6be079b1bd9e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-system2.0-cil Priority: optional Section: libs Installed-Size: 4329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-posix2.0-cil (>= 3.2.3), libmono-security2.0-cil (>= 3.0.6), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Suggests: libasound2 (>> 1.0.18), libcups2 (>= 1.3.8), libgamin0, libgdiplus (>= 2.6.7), libmono-winforms2.0-cil (>= 2.4), libx11-6 (>= 2:1.6.0) Filename: pool/main/m/mono/libmono-system2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 1171822 MD5sum: bd01d6adb0ada5f3a6bc7749b7648aa9 SHA1: a7a9f608157152e345da27f6802a34bd8de17a73 SHA256: 26b89a2d40ba836a95070f9925471a434e98188daa7ad90f216a36927497a2e9 Description: Mono System libraries (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: a29418215e6bbd26cb1594d471975f83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system4.0-cil Priority: optional Section: cli-mono Installed-Size: 3471 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Suggests: libasound2 (>> 1.0.18), libgamin0 Filename: pool/main/m/mono/libmono-system4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 718476 MD5sum: 3a6f58c62b3c8bf06360e22f606be203 SHA1: 748c5134df68e092fbcc66b9ca429c7dc609a1c9 SHA256: 577b39751447be1a473ef37de4d503baaa565a915d1892594a5607421c6f0684 Description: Mono System libraries (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 7da73ba1f9a0504ce08abe86bdea9596 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-tasklets2.0-cil Priority: optional Section: cli-mono Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-tasklets2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 12944 MD5sum: 31717efdccd1b7013c15e6a298d9e440 SHA1: 8b452ccbbeb4d9a1f4cd4976fb9015686f298931 SHA256: 3cd6c2ed0c1ec1851bcd18305932d639935f5b725b991405101193cdf0854d23 Description: Mono Tasklets library (for CLI 2.0) Homepage: http://www.mono-project.com/Continuations Description-md5: e4661efce3e281b02e182a60665c66e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-tasklets4.0-cil Priority: optional Section: cli-mono Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-tasklets4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13590 MD5sum: dc7d3fb6c885adf83e11d9e9d6686000 SHA1: c5784311b489433b35a7c2e9e8a7b716527d529b SHA256: b9351574a7cfda429206a6596fe277e67ef63b961dd611f7239e410dcbe14697 Description: Mono Tasklets library (for CLI 4.0) Homepage: http://www.mono-project.com/Continuations Description-md5: e68cdfd7ec973e65b9ad944c126520a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-wcf3.0a-cil Priority: optional Section: cli-mono Installed-Size: 2049 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-wcf3.0-cil (<< 3.2.3) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-security2.0-cil (>= 3.0.6), libmono-system-messaging2.0-cil (>= 2.6.3), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1) Conflicts: libmono-wcf3.0-cil (<< 3.2.3) Filename: pool/main/m/mono/libmono-wcf3.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 510480 MD5sum: e4430544a72a0511947b925c3fa2b3f1 SHA1: c2026b7efec2adb16ece05a7d3b9efb490b1d029 SHA256: c638f391c7d4b1bac49229e3fae2bc02e17255687eac6b2844077790acd8095e Description: Mono WCF libraries (for CLI 2.0) Homepage: http://mono-project.com/WCF Description-md5: 3a12a988706630eaeab73fecf5d600ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-web4.0-cil Priority: optional Section: cli-mono Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-web4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 17870 MD5sum: ef42d04a1ce2b051641f2f5d0bec8b0e SHA1: e9216ff55f0e8da6c58fe8d750c190b36bd24118 SHA256: 828d8496eb21ea184d3a8716ba8b8f13403916581c0008cdfcdf0d2da66b30fe Description: Mono.Web library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 72709cc559e83c9cdb08a41f0550cebe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-webbrowser2.0-cil Priority: optional Section: cli-mono Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-webbrowser0.5-cil Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Recommends: libgluezilla (>= 2.6) Conflicts: libmono-webbrowser0.5-cil Filename: pool/main/m/mono/libmono-webbrowser2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 55810 MD5sum: a65ea82c9db35856454f09776626534f SHA1: b7cc955b68e61fa300157c40295142c96fe5f846 SHA256: 74be6d7591384124c89d9c5b543a43d18242f5423ca74eef222925939fcce326 Description: Mono Web Browser library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: b17af19f79acbce1595b2242645a48c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-webbrowser4.0-cil Priority: optional Section: cli-mono Installed-Size: 444 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-webbrowser0.5-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Recommends: libgluezilla (>= 2.6) Conflicts: libmono-webbrowser0.5-cil Filename: pool/main/m/mono/libmono-webbrowser4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 62048 MD5sum: 7db3a5d723b8297942322bec708caef1 SHA1: 379f316ca4cce9577ee20e27b63a2ff029f882ef SHA256: 81e197678627d757ee598764a4de5dfaa221a7bee4ab5972f694cd955f2bad7d Description: Mono Web Browser library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 5883ca4f7938cdc54101d22c936fcc2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-webmatrix-data4.0-cil Priority: optional Section: cli-mono Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-webmatrix-data4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 16534 MD5sum: a68338c63d3e4157335b58915b665e71 SHA1: d3b3442819bb52cdd255d0db47f2fbecdaa90fa5 SHA256: 8284dd3221fa8b82908632edd198594729afc6a18ec0e25bef894a326259ec58 Description: Mono WebMatrix.Data Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 452e9d33bddfb5d96638707da28b9cd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-windowsbase3.0-cil Priority: optional Section: cli-mono Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1), mono-runtime (>= 2.10.1) Filename: pool/main/m/mono/libmono-windowsbase3.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 64094 MD5sum: 561de0882d8a87a45ffc26351eae445c SHA1: b7db357aebe1cf9991fdc7130de20a23994ca4c4 SHA256: 8b517ab9b6316fe4483e017c24be25f26b6163dadd8ca713e12e275d1d9aa948 Description: Mono WindowsBase library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 2ead16a0a87cb0721855a2c839c23289 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-windowsbase4.0-cil Priority: optional Section: cli-mono Installed-Size: 417 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xaml4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), mono-runtime (>= 2.10.1) Filename: pool/main/m/mono/libmono-windowsbase4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 62896 MD5sum: 88e6c765f5b1f8cb2e902f9d239fdad2 SHA1: 3c20367a2357537591bad5263e931d51206b306e SHA256: ca1f047229a7ec820a7b101a830d59ad4a3583d5da76b6b5ebbd0e236dc049ff Description: Mono WindowsBase library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 89a28b534b3d998d48eeb1e5e2c8f31a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-winforms2.0-cil Priority: optional Section: libs Installed-Size: 3392 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-accessibility2.0-cil (>= 1.0), libmono-corlib2.0-cil (>= 3.2.8), libmono-posix2.0-cil (>= 3.2.3), libmono-system-data2.0-cil (>= 3.0.6), libmono-system-runtime2.0-cil (>= 2.4), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1), libmono-webbrowser2.0-cil (>= 1.0), libx11-6 (>= 2:1.6.0), libgdiplus, libmono-i18n-west2.0-cil Suggests: libglib2.0-0 (>= 2.39.90), libgnomeui-0 (>= 2.22.0), libgtk2.0-0 (>= 2.16.0), librsvg2-2 (>= 2.22.3), shared-mime-info Filename: pool/main/m/mono/libmono-winforms2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 889934 MD5sum: fad958e420e42298747773b0826c5eb5 SHA1: 4b90f46cb846125b6ef279f64bc33fb2795bef30 SHA256: e02f8d5ac544f83552e1c67f702550e6b75e108554860ad552c2323421414643 Description: Mono System.Windows.Forms library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 41838464e4a25f022311bff010fa7030 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-xbuild-tasks2.0-cil Priority: optional Section: cli-mono Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-xbuild-tasks2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 25836 MD5sum: 20db278a881cb446ca958f2c6efdb896 SHA1: 04d8363c756b9d4a1d62befc377585f44f614ee4 SHA256: d662a92b01ddb6ca47a55273348d61704d7ae9657b2b9cce1d9bc0c530851094 Description: Mono Mono.XBuild.Tasks library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: c0c27664e54939d4e84bdb70950dfe63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-xbuild-tasks4.0-cil Priority: optional Section: cli-mono Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-xbuild-tasks4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 24662 MD5sum: 61c762247fc3801fdd405b2796128cea SHA1: 53a823c84ebf7c92d2695be4281df9c47d1dd8c5 SHA256: 235466810f1f804641a94eb06898d6aefab7e4009e2f3da03632c6c788411c1f Description: Mono Mono.XBuild.Tasks library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: ebd43542948b924c755c3bdea7040be2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono2.0-cil Priority: optional Section: libs Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-security2.0-cil (>= 3.0.6), libmono-sharpzip2.84-cil (>= 1.0), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 39124 MD5sum: cdb38f9d2f7d9aeaf37e88534459b460 SHA1: 2afa123957a189da65ca1ced5c46bfdb06e5c9b2 SHA256: d144eae652715498e2008e4b832d63d48fffdbee31b74e8e6389cd470925d321 Description: Mono libraries (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: c6ff32152dfcc2f8e2c180b9091406dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonoboehm-2.0-1 Priority: optional Section: cli-mono Installed-Size: 3680 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.15) Filename: pool/main/m/mono/libmonoboehm-2.0-1_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 1224336 MD5sum: d3cefe8a68efa85f2dc510b81954f88a SHA1: 2f7e4964a77f1ce63d6c53189c0e50e1593631b8 SHA256: 1b0a4023da3ebf0fdf07fa2a4d16e2b6a9c098691931bece8c0971d03a2350f0 Description: Mono JIT library (Boehm GC) Homepage: http://www.mono-project.com/ Description-md5: ce0f2b97cfc799889408047098999cc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonoboehm-2.0-1-dbg Priority: extra Section: debug Installed-Size: 11966 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmonoboehm-2.0-1 (= 3.2.8+dfsg-4ubuntu1) Recommends: gdb Filename: pool/main/m/mono/libmonoboehm-2.0-1-dbg_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 2844448 MD5sum: 09bcd4a914c41911bb94d6a9514223c6 SHA1: ef221aa0c4b8d697082db8a83ebe3fee30e58f9d SHA256: bd11802beae88455d2956e37396cad515291c04e209aa5cc58b53d7293bf79a7 Description: Mono JIT library, debugging symbols (Boehm GC) Homepage: http://www.mono-project.com/ Description-md5: 2607171726a37a3c76b8d104a4bcedd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonoboehm-2.0-dev Priority: optional Section: cli-mono Installed-Size: 6837 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmonoboehm-2.0-1 (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/libmonoboehm-2.0-dev_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 1409844 MD5sum: a403aa1f05ebc807eb96c5962120e51c SHA1: 1cc45a86968736da8dab8da8e6a23bef0ebd7593 SHA256: 186d743e3e6e4e5456b8d7758c60586b376705ed78729c54cd8ea864c7732e7a Description: Mono JIT library - Development files (Boehm GC) Homepage: http://www.mono-project.com/ Description-md5: af43ee4a1b703efca9250c987d486381 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonosgen-2.0-1 Priority: optional Section: cli-mono Installed-Size: 3812 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.15) Filename: pool/main/m/mono/libmonosgen-2.0-1_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 1270906 MD5sum: 77a43eae6aee96b006af7aec44f477b2 SHA1: b59ccaf1f8007c1843b3762cccbfd36f67220943 SHA256: b2a8e15182f9457d0e64b3b11b1c973a3bb4c4493a529846bbed72d70144e470 Description: Mono JIT library (SGen GC) Homepage: http://www.mono-project.com/ Description-md5: ca9b24575a07c5b8b0d40f68999605d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonosgen-2.0-1-dbg Priority: extra Section: debug Installed-Size: 13069 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmonosgen-2.0-1 (= 3.2.8+dfsg-4ubuntu1) Recommends: gdb Filename: pool/main/m/mono/libmonosgen-2.0-1-dbg_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 3049620 MD5sum: 451125eff72a727626532304e7614cd2 SHA1: 009a1024162dba8f7e492e16cadf4e1f117f2e9a SHA256: 1950134a5231c2b0f5b73ff6e29bc66ef3af4f0b738bbc0d8983864241487c37 Description: Mono JIT library, debugging symbols (SGen GC) Homepage: http://www.mono-project.com/ Description-md5: 68f58a69a75e6df10ffbba7e59366ce6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonosgen-2.0-dev Priority: optional Section: cli-mono Installed-Size: 7114 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmonosgen-2.0-1 (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/libmonosgen-2.0-dev_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 1462634 MD5sum: fe9e09144a1b3b58ab8dbe61ff69b987 SHA1: 4984eeb47999fb96770bb8039f0a6824d36e8ef1 SHA256: 3b203c01cdc1e810bd8ab2fd1182d486e3f06d5af344c62ad3106ac7b4641250 Description: Mono JIT library - Development files (SGen GC) Homepage: http://www.mono-project.com/ Description-md5: 77a08e6c81926eb0fee724b67503f444 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmoose-perl Priority: optional Section: perl Installed-Size: 1955 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 2.1005-1 Replaces: libclass-mop-perl Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5), libclass-load-perl, libclass-load-xs-perl, libdata-optlist-perl (>= 0.107), libdevel-globaldestruction-perl, libeval-closure-perl, liblist-moreutils-perl (>= 0.28), libmro-compat-perl, libpackage-deprecationmanager-perl (>= 0.11), libpackage-stash-perl (>= 0.32), libpackage-stash-xs-perl, libparams-util-perl, libsub-exporter-perl, libsub-name-perl (>= 0.05), libtask-weaken-perl, libtry-tiny-perl Recommends: libdevel-partialdump-perl (>= 0.14) Breaks: libcatalyst-perl (<< 5.80028+), libclass-mop-perl, libdevel-repl-perl (<< 1.003008+), libfey-orm-perl (<< 0.42+), libfey-perl (<< 0.36+), libfile-changenotify-perl (<< 0.15+), libkiokudb-perl (<< 0.51+), libmarkdent-perl (<< 0.16+), libmason-perl (<< 2.18+), libmoosex-abc-perl (<< 0.05+), libmoosex-aliases-perl (<< 0.08+), libmoosex-alwayscoerce-perl (<< 0.13+), libmoosex-attribute-deflator-perl (<< 2.1.7+), libmoosex-attribute-dependent-perl (<< 1.1.0+), libmoosex-attribute-prototype-perl (<< 0.10+), libmoosex-attributehelpers-perl (<< 0.22+), libmoosex-attributeindexes-perl (<< 1.0.0+), libmoosex-attributeinflate-perl (<< 0.02+), libmoosex-cascadeclearing-perl (<< 0.03+), libmoosex-classattribute-perl (<< 0.25+), libmoosex-constructor-allerrors-perl (<< 0.012+), libmoosex-followpbp-perl (<< 0.02+), libmoosex-hasdefaults-perl (<< 0.02+), libmoosex-instancetracking-perl (<< 0.04+), libmoosex-lazyrequire-perl (<< 0.06+), libmoosex-meta-attribute-index-perl (<< 0.04+), libmoosex-meta-attribute-lvalue-perl (<< 0.05+), libmoosex-methodattributes-perl (<< 0.22+), libmoosex-nonmoose-perl (<< 0.17+), libmoosex-params-validate-perl (<< 0.05+), libmoosex-poe-perl (<< 0.214+), libmoosex-privatesetters-perl (<< 0.03+), libmoosex-role-cmd-perl (<< 0.06+), libmoosex-role-parameterized-perl (<< 0.23+), libmoosex-role-withoverloading-perl (<< 0.07+), libmoosex-scaffold-perl (<< 0.05+), libmoosex-semiaffordanceaccessor-perl (<< 0.05+), libmoosex-setonce-perl (<< 0.100473+), libmoosex-singleton-perl (<< 0.25+), libmoosex-slurpycontructor-perl (<< 1.1+), libmoosex-strictconstructor-perl (<< 0.12+), libmoosex-types-parameterizable-perl (<< 0.05+), libmoosex-types-perl (<< 0.19+), libmoosex-types-signal-perl (<< 1.101930+), libmoosex-undeftolerant-perl (<< 0.11+), libnamespace-autoclean-perl (<< 0.08+), libpod-elemental-perl (<< 0.093280+), libprang-perl (<< 0.14+), libreaction-perl (<< 0.002003+), libtest-able-perl (<< 0.10) Filename: pool/main/libm/libmoose-perl/libmoose-perl_2.1005-1_amd64.deb Size: 849034 MD5sum: 4a9891effe973861bce4a5fafdd49fd5 SHA1: 44e1fefe88f9db45dfa2ca5653d24f2567c90e2b SHA256: fbecdb44afb7035cc58818106e13ad190bc08c81a714016c8b8431a56dc0eaaa Description: modern Perl object system framework Homepage: https://metacpan.org/release/Moose/ Description-md5: cdb749f6802d04685cc71b5a7f9a5c87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmount-dev Priority: extra Section: libdevel Installed-Size: 433 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: amd64 Source: util-linux Version: 2.20.1-5.1ubuntu20 Depends: libc6-dev | libc-dev, libmount1 (= 2.20.1-5.1ubuntu20), uuid-dev Filename: pool/main/u/util-linux/libmount-dev_2.20.1-5.1ubuntu20_amd64.deb Size: 69920 MD5sum: c31d1ede40ceea25a8915f682ba1e2ff SHA1: f2ec575cdaaa46ba7226647c4ef858ee504a3240 SHA256: f9ea68eac1b0735753f9b7dfda1ceafde99c5c50ce1f55fe3673c5c215cecbaf Description: block device id library - headers and static libraries Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: f6a39ea16f93f0b97bffc69c578232f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmount1 Priority: required Section: libs Installed-Size: 246 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: amd64 Source: util-linux Version: 2.20.1-5.1ubuntu20 Depends: libblkid1 (>= 2.17.2), libc6 (>= 2.14), libselinux1 (>= 1.32) Pre-Depends: multiarch-support Filename: pool/main/u/util-linux/libmount1_2.20.1-5.1ubuntu20_amd64.deb Size: 60220 MD5sum: 357596fb562648d170f15113e59c4f05 SHA1: f335ab25d3bb574202b6f61c810b001484e302f3 SHA256: 384e970ca59157f31f5f97bf5aa059c871c8a881049a9fe97eb67b7e331fb989 Description: block device id library Multi-Arch: same Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 8f605597a2fb2fd7bffd09db537dd040 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libmpc-dev Priority: extra Section: libdevel Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: amd64 Source: mpclib3 Version: 1.0.1-1ubuntu1 Depends: libmpc3 (= 1.0.1-1ubuntu1), libmpfr-dev, libgmp-dev Filename: pool/main/m/mpclib3/libmpc-dev_1.0.1-1ubuntu1_amd64.deb Size: 45826 MD5sum: 5e4970b96596fe83c0aa6f62caa73185 SHA1: 375be2bcc111b094dd89e64b9a2197ad77586784 SHA256: 5b2a227c34fd40407bbeeaed11cf072a43253dce53f8bcd5a24391743c4740e4 Description: multiple precision complex floating-point library development package Multi-Arch: same Homepage: http://www.multiprecision.org/mpc/ Description-md5: 1a174fcc2ba7e9b9a95e9d28b6debe99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmpc3 Priority: extra Section: libs Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: amd64 Source: mpclib3 Version: 1.0.1-1ubuntu1 Depends: libc6 (>= 2.3.4), libgmp10, libmpfr4 (>= 3.1.2) Pre-Depends: multiarch-support Filename: pool/main/m/mpclib3/libmpc3_1.0.1-1ubuntu1_amd64.deb Size: 38442 MD5sum: c5749c5428040f492bc9d00b0101b8a8 SHA1: e7084bea45f48c1ead5ac67b7bb51d334a1451cf SHA256: 6102488783d30c69dc3ad4040e959fb9a137a93b0b14d64ae93d5f0326686458 Description: multiple precision complex floating-point library Multi-Arch: same Homepage: http://www.multiprecision.org/mpc/ Description-md5: ce4238ae925ae6ad84bc52508aa5e8ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmpdec-dev Priority: optional Section: libdevel Installed-Size: 843 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: mpdecimal Version: 2.4.0-6 Depends: libmpdec2 (= 2.4.0-6), libjs-sphinxdoc (>= 1.0) Filename: pool/main/m/mpdecimal/libmpdec-dev_2.4.0-6_amd64.deb Size: 126624 MD5sum: a3063a7345ee8515192f55b40675cab2 SHA1: 0c631c22fe9d530f20bce7fdb128b104029000cc SHA256: 355c5d2b7886b5e611583655a6a0aca27f7b6f35c1a7d77709734e5a5873d50d Description: library for decimal floating point arithmetic (development files) Multi-Arch: same Homepage: http://www.bytereef.org/mpdecimal/index.html Description-md5: aaec92a2292a393a662516d21db6c572 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmpdec2 Priority: important Section: libs Installed-Size: 256 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: mpdecimal Version: 2.4.0-6 Replaces: libmpdec2.3 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Breaks: libmpdec2.3 Filename: pool/main/m/mpdecimal/libmpdec2_2.4.0-6_amd64.deb Size: 79404 MD5sum: 231eb912ecbeb985e7a9930e4d2b6117 SHA1: 8269887078ef536f8ebe536937d618d030cffeea SHA256: 11f663357d5e33314d0074773928e0a38b3fc83f89a3412cbdee08a049613e4f Description: library for decimal floating point arithmetic (runtime library) Multi-Arch: same Homepage: http://www.bytereef.org/mpdecimal/index.html Description-md5: 2f19ce990bf7966f694538878f26b3ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libmpfr-dev Priority: optional Section: libdevel Installed-Size: 1368 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: amd64 Source: mpfr4 Version: 3.1.2-1 Replaces: libgmp3-dev (<< 4.1.4-3) Depends: libgmp-dev, libmpfr4 (= 3.1.2-1) Suggests: libmpfr-doc Conflicts: libgmp3-dev (<< 4.1.4-3) Filename: pool/main/m/mpfr4/libmpfr-dev_3.1.2-1_amd64.deb Size: 251658 MD5sum: a86ba241e53c585e7b64ec14bcf24c51 SHA1: 0840b7c5b897ef10505ee773a2215d6a77e8b85d SHA256: 67e78a91f64422f04ec41f0aee3acae38aeca695441e4a04662640c7ce99aab5 Description: multiple precision floating-point computation developers tools Multi-Arch: same Homepage: http://www.mpfr.org/ Description-md5: a2580b68a7c6f1fcadeefc6b17102b32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmpfr-doc Priority: optional Section: doc Installed-Size: 1363 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: all Source: mpfr4 Version: 3.1.2-1 Depends: dpkg (>= 1.15.4) | install-info Filename: pool/main/m/mpfr4/libmpfr-doc_3.1.2-1_all.deb Size: 590614 MD5sum: 80d79849eeda94723365cd2be3893d5a SHA1: 2672d07d9bfed7722458b34e237c0d663f377e34 SHA256: 2711d3a7ad4d3e15c9f03658eac0c8d2cfe0e4e681d0259656a80894311bd77b Description: multiple precision floating-point computation documentation Homepage: http://www.mpfr.org/ Description-md5: f055e9915a337223583fe5e3ec7c0b3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmpfr4 Priority: optional Section: libs Installed-Size: 761 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: amd64 Source: mpfr4 Version: 3.1.2-1 Depends: libc6 (>= 2.14), libgmp10 Pre-Depends: multiarch-support Conflicts: libgmp3 (<< 4.1.4-3) Filename: pool/main/m/mpfr4/libmpfr4_3.1.2-1_amd64.deb Size: 202636 MD5sum: 3ff03e231bf643436f087da42faaad6d SHA1: d5d2c565fc9d48a268c9541704085aa22a222705 SHA256: 1c061fdaf049aedad2828e22c042fdce84f1a0999f6db7d9a5f1b57f75fa0f08 Description: multiple precision floating-point computation Multi-Arch: same Homepage: http://www.mpfr.org/ Description-md5: 97d2af3ed9ac83dc3fdaf77a6b27a294 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmpfr4-dbg Priority: extra Section: debug Installed-Size: 1875 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: amd64 Source: mpfr4 Version: 3.1.2-1 Depends: libmpfr4 (= 3.1.2-1) Filename: pool/main/m/mpfr4/libmpfr4-dbg_3.1.2-1_amd64.deb Size: 397848 MD5sum: 5488ba37ac3e3bbef64b06b6af4e18f4 SHA1: 269a62267fbd43050eb0161d3064c2981f9a2162 SHA256: 70f418fd582b679be9ac21be9de6289b656392c1bcdf8a20cf86ca4b01abebe0 Description: multiple precision floating-point computation (debug symbols) Homepage: http://www.mpfr.org/ Description-md5: e9bf4350e1b14ba8723e22bbca538dab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmro-compat-perl Priority: optional Section: perl Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.12-1 Depends: perl, libclass-c3-perl (>= 0.24) Recommends: libclass-c3-xs-perl Filename: pool/main/libm/libmro-compat-perl/libmro-compat-perl_0.12-1_all.deb Size: 12246 MD5sum: f03826205b0d43ab92dcece2406e787f SHA1: 6785f826093827d8257e54ced6f5df7fdee24598 SHA256: 0cea0eaa1313ae91589202ab6307130de9b704c6e7abc2071e2ec73e607f0ea4 Description: mro::* interface compatibility for Perls < 5.9.5 Homepage: http://search.cpan.org/dist/MRO-Compat/ Description-md5: 195130cee4f6bea2731a762f3f96eadc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmspub-0.0-0 Priority: optional Section: libs Installed-Size: 525 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libmspub Version: 0.0.6-1ubuntu2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.6), libwpd-0.9-9, zlib1g (>= 1:1.1.4) Filename: pool/main/libm/libmspub/libmspub-0.0-0_0.0.6-1ubuntu2_amd64.deb Size: 153256 MD5sum: e87becf4cd723d1331f6eae2ecd260fc SHA1: b0a150460ead70129c89090d01ccd533906756d0 SHA256: 0d608370eb2168fd9b2bbc3a1de12b8e4f4af35f885b2c1019b732622d23271a Description: library for parsing the mspub file structure Homepage: http://www.freedesktop.org/wiki/Software/libmspub Description-md5: da595a9575906bd87eadf7a12128850c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libmspub-dev Priority: optional Section: libdevel Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libmspub Version: 0.0.6-1ubuntu2 Depends: libmspub-0.0-0 (= 0.0.6-1ubuntu2), libwpd-dev (>= 0.9.0), libwpg-dev (>= 0.2.0) Filename: pool/main/libm/libmspub/libmspub-dev_0.0.6-1ubuntu2_amd64.deb Size: 2940 MD5sum: 8fafe8fcce7eac3d91e3158f01ccaca4 SHA1: 16471cd20ae850f4c9157652e4aa67f309547262 SHA256: 31fb3214de58165999c7feb9393fcdd5a2f939c152e8358b07994bb91d469089 Description: library for parsing the mspub file structure -- development Homepage: http://www.freedesktop.org/wiki/Software/libmspub Description-md5: e312ec772862fe25d4ff89f4a163d2f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmspub-doc Priority: optional Section: doc Installed-Size: 6344 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libmspub Version: 0.0.6-1ubuntu2 Filename: pool/main/libm/libmspub/libmspub-doc_0.0.6-1ubuntu2_all.deb Size: 300238 MD5sum: 7eca95d52d2712bdd3c8f52de61c74d5 SHA1: 7aad96b50587ac8f9f9f30fd0b01ef0c6f4e232d SHA256: 38e05f67030a1bf991ae58ff680edc237ce126f13c0741b8f8869fb544aafdbd Description: library for parsing the mspub file structure -- documentatio Homepage: http://www.freedesktop.org/wiki/Software/libmspub Description-md5: 978543867dbe94a6343b54f9a91f832f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmtdev-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Nobuhiro Iwamatsu Architecture: amd64 Source: mtdev Version: 1.1.4-1ubuntu1 Depends: libmtdev1 (= 1.1.4-1ubuntu1) Filename: pool/main/m/mtdev/libmtdev-dev_1.1.4-1ubuntu1_amd64.deb Size: 5324 MD5sum: 2cd24fd9b7b5037507c279e2076240c9 SHA1: 8ef424d1221b70d9f9662ded2e6b329545df744a SHA256: c6d9f5f0770ec0a36ba42b6049f2ed2f93949605cc30eef0482dc21818f4f590 Description: Multitouch Protocol Translation Library - dev files Homepage: http://bitmath.org/code/mtdev/ Description-md5: c8725f087f1cafd8c9d016b4463a8273 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmtdev1 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Nobuhiro Iwamatsu Architecture: amd64 Source: mtdev Version: 1.1.4-1ubuntu1 Depends: libc6 (>= 2.2.5) Pre-Depends: multiarch-support Filename: pool/main/m/mtdev/libmtdev1_1.1.4-1ubuntu1_amd64.deb Size: 15270 MD5sum: 5fe3d24af58694b9d29be5ab3105b868 SHA1: 4e144c08cc0250a48f0137cd5e6c3d7596ec6fa0 SHA256: 6bddd17817ec5a3b324a9cda94c546e01b313b32e0b875ecb8ceb4d999826cf6 Description: Multitouch Protocol Translation Library - shared library Multi-Arch: same Homepage: http://bitmath.org/code/mtdev/ Description-md5: 07dd033e550dbc27f2e8fe7816e9f337 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmtp-common Priority: optional Section: libs Installed-Size: 1076 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: all Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Replaces: libmtp8 Breaks: libmtp8 (<= 1.0.6-6) Filename: pool/main/libm/libmtp/libmtp-common_1.1.6-20-g1b9f164-1ubuntu2_all.deb Size: 31530 MD5sum: 0151ea37485f873c8e3915e7c12a97a6 SHA1: b8bb107ae4f7750c036920c2a0732d81a9b3655c SHA256: 5bd8919545054ddeedaaba8f0680a03f3cbabe3d2eaf6a01d7830838b78c66a2 Description: Media Transfer Protocol (MTP) common files Multi-Arch: foreign Homepage: http://libmtp.sourceforge.net/ Description-md5: 407b0c4187c03c2acefd4239d1a421f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmtp-dbg Priority: extra Section: debug Installed-Size: 313 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Depends: libmtp9 (= 1.1.6-20-g1b9f164-1ubuntu2) Filename: pool/main/libm/libmtp/libmtp-dbg_1.1.6-20-g1b9f164-1ubuntu2_amd64.deb Size: 245726 MD5sum: 4be39575417dde63f36f40aa7d8401b4 SHA1: 328191c446b8c3e9331209d15a9369737dcc48b2 SHA256: fd26f872f03759d3c533d54cd3e8718df119749abe89df058dd2a6917a0190d8 Description: Media Transfer Protocol (MTP) debugging symbols Multi-Arch: same Homepage: http://libmtp.sourceforge.net/ Description-md5: d46860617d76f5c1d5c931d5d8f3d172 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmtp-dev Priority: optional Section: libdevel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Depends: libmtp9 (= 1.1.6-20-g1b9f164-1ubuntu2), libusb-1.0-0-dev Filename: pool/main/libm/libmtp/libmtp-dev_1.1.6-20-g1b9f164-1ubuntu2_amd64.deb Size: 10896 MD5sum: 567b784c7e9dbd12e6131dd548001398 SHA1: b43345016f99ba5b68177857aecfc5d66e84ba58 SHA256: 08b1ce0ea4ea40827558dcdbcd906ae21e0736c492c5195d0140bfd202545feb Description: Media Transfer Protocol (MTP) development files Multi-Arch: same Homepage: http://libmtp.sourceforge.net/ Description-md5: 76d0f6320c50c3629a9f1d9cd6ba427a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmtp-doc Priority: optional Section: doc Installed-Size: 2802 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: all Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Filename: pool/main/libm/libmtp/libmtp-doc_1.1.6-20-g1b9f164-1ubuntu2_all.deb Size: 406458 MD5sum: ad1e989d13c9d77a45dac7c75729333b SHA1: 601bc213729c41fbfcaa26d21bd8d2da86e09de7 SHA256: e059ab1baa46e09d793c8e6f55e568f87d3b7b0f20c943dc916b6435918059c5 Description: Media Transfer Protocol (MTP) library documentation Homepage: http://libmtp.sourceforge.net/ Description-md5: 8470c9a7a773ebbc2c115e4582babdfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmtp-runtime Priority: optional Section: libs Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Replaces: libmtp8 (= 1.0.6-3) Depends: libmtp-common, libmtp9 (= 1.1.6-20-g1b9f164-1ubuntu2), libc6 (>= 2.4) Breaks: libmtp8 (= 1.0.6-3) Filename: pool/main/libm/libmtp/libmtp-runtime_1.1.6-20-g1b9f164-1ubuntu2_amd64.deb Size: 6354 MD5sum: 04d6b452f58b21bd40b9f3ce1576942f SHA1: 540042eb009c178dbc4c972172d1789618a32f3f SHA256: dec68c9449b5edae0407bf453ac7a837714ff19e510786fdc473d79e9045732c Description: Media Transfer Protocol (MTP) runtime tools Enhances: libmtp9 Homepage: http://libmtp.sourceforge.net/ Description-md5: 1a28431a709c624332928ccccfe38a89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmtp9 Priority: optional Section: libs Installed-Size: 455 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Depends: libmtp-common, libc6 (>= 2.14), libgcrypt11 (>= 1.4.5), libusb-1.0-0 (>= 2:1.0.8) Pre-Depends: dpkg (>= 1.15.7.2), multiarch-support Recommends: libmtp-runtime, udev Filename: pool/main/libm/libmtp/libmtp9_1.1.6-20-g1b9f164-1ubuntu2_amd64.deb Size: 172050 MD5sum: 0dcc9332dbe7261978eeb3eb8babde4f SHA1: 09505b5b9adcf7f415a52044ee5f7de02f759751 SHA256: 12b11960f6e9eb90dc608d867cf0fce3042751911053dac1bd65503f6ed25295 Description: Media Transfer Protocol (MTP) library Multi-Arch: same Homepage: http://libmtp.sourceforge.net/ Description-md5: ec2660c24145023b9998ae464417b767 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmultidimensional-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.010-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5), libb-hooks-op-check-perl (>= 0.19), liblexical-sealrequirehints-perl Filename: pool/main/libm/libmultidimensional-perl/libmultidimensional-perl_0.010-1build1_amd64.deb Size: 8206 MD5sum: 0b4a04730f108ebb0e45cabec9ec676e SHA1: 066a41691e314bf8af970a34f11df731eb2b2f2b SHA256: d1e33e6c07e6f90aaa040098afd9c0f63c3c8033f81a1926ee331e44bbe102d5 Description: Perl pragma to disable multidimensional array emulation Homepage: http://search.cpan.org/dist/multidimensional/ Description-md5: 83f0430ca98b7ef9a58be037e63e76bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-1.0-2 Priority: optional Section: libs Installed-Size: 976 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: mx Version: 1.4.7-0ubuntu3 Depends: libmx-common (= 1.4.7-0ubuntu3), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libclutter-1.0-0 (>= 1.10.0), libcogl15 (>= 1.15.8), libdbus-glib-1-2 (>= 0.88), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.20.0), libpango-1.0-0 (>= 1.18.0), libstartup-notification0 (>= 0.2), libx11-6, libxrandr2 (>= 2:1.2.99.2) Pre-Depends: multiarch-support Recommends: libmx-bin Filename: pool/main/m/mx/libmx-1.0-2_1.4.7-0ubuntu3_amd64.deb Size: 211320 MD5sum: facbc8684f1f1ecacdefdcc410c14951 SHA1: 5382532006eacdc7d6ae54bfd202f63f3d8b303a SHA256: ccb659ef797bc2cafceb3f50850aac3f2eef51086b8283ea1dc59d6ff05fbfc9 Description: toolkit for the Moblin user experience Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: 6468871f1cffe433963138b15f272962 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-1.0-2-dbg Priority: extra Section: debug Installed-Size: 1338 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: mx Version: 1.4.7-0ubuntu3 Depends: libmx-1.0-2 (= 1.4.7-0ubuntu3) Filename: pool/main/m/mx/libmx-1.0-2-dbg_1.4.7-0ubuntu3_amd64.deb Size: 838732 MD5sum: f7afe3d7131068e4939a9b87a379cb6e SHA1: b9cf59cf4e064a05e41dc188df0512099d5615aa SHA256: 175bd70ece3036eb95146234197e61590179164d236b0e12a24233ef56f6e743 Description: toolkit for the Moblin user experience (debug symbols) Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: 113307ea424d127e4a01559a5c0eb615 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-bin Priority: optional Section: misc Installed-Size: 365 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: mx Version: 1.4.7-0ubuntu3 Replaces: libmx-1.0-2 (<< 1.4.3-1) Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.12.0) Breaks: libmx-1.0-2 (<< 1.4.3-1) Filename: pool/main/m/mx/libmx-bin_1.4.7-0ubuntu3_amd64.deb Size: 19436 MD5sum: 38f6d80d35539ad4e14f4706f7ece35c SHA1: 67839b53e6682d2ca51200aa86c41b4813930c47 SHA256: 30c5c4d3390b7bac4ab66d1a65f555861d520bb11cbd2b9bd4bfd596eaed15e3 Description: toolkit for the Moblin user experience (utilities) Multi-Arch: foreign Homepage: http://www.clutter-project.org/ Description-md5: d75c80c8b80295c91748c9e5f67ce422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-common Priority: optional Section: misc Installed-Size: 820 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: all Source: mx Version: 1.4.7-0ubuntu3 Replaces: libmx-1.0-2 (<< 1.4.3-1) Breaks: libmx-1.0-2 (<< 1.4.3-1) Filename: pool/main/m/mx/libmx-common_1.4.7-0ubuntu3_all.deb Size: 59090 MD5sum: 1b46a3ecaa2e18e73d82ce6f3b42198f SHA1: 8de2131332ca5c6c3a05f93cb0bb6f152cf4b5e6 SHA256: fb16fed815f30e70bd19729c0c7728c2126f2554c6188064550d9bfdc41e0a84 Description: toolkit for the Moblin user experience (common files) Multi-Arch: foreign Homepage: http://www.clutter-project.org/ Description-md5: 11645a13cccf8108ea0ecae7fd68f465 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-dev Priority: optional Section: libdevel Installed-Size: 1292 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: mx Version: 1.4.7-0ubuntu3 Depends: autotools-dev, gir1.2-mx-1.0 (= 1.4.7-0ubuntu3), libclutter-1.0-dev, libmx-1.0-2 (= 1.4.7-0ubuntu3) Suggests: libmx-doc Filename: pool/main/m/mx/libmx-dev_1.4.7-0ubuntu3_amd64.deb Size: 67478 MD5sum: da586aece0edda3e6cfe5e3a409000ff SHA1: 797708a3ad3b3c605532bf31aad2c812eec6093f SHA256: f5bd3e4b8350a43712784cb7b213dc922bb998495b1a6faf46e493866591e67f Description: toolkit for the Moblin user experience (development files) Homepage: http://www.clutter-project.org/ Description-md5: 4c3b9745382d6623f48647ffd14f2554 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-doc Priority: optional Section: doc Installed-Size: 2214 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: all Source: mx Version: 1.4.7-0ubuntu3 Suggests: devhelp Filename: pool/main/m/mx/libmx-doc_1.4.7-0ubuntu3_all.deb Size: 185398 MD5sum: 00fe6a7661ef40909d1c78847450580a SHA1: 0e43984e8480b51e26a476e67a6f897c7e1d3862 SHA256: 7902acfe9eb654354850f69c9c99efda53eaf66ac43727e6a5d5635000a56c10 Description: toolkit for the Moblin user experience (documentation) Multi-Arch: foreign Homepage: http://www.clutter-project.org/ Description-md5: 2ac48cf155526719e20c97e306453ff1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmysqlclient-dev Priority: optional Section: libdevel Installed-Size: 5457 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: amd64 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Replaces: libmysqlclient15-dev Provides: libmysqlclient15-dev Depends: libmysqlclient18 (= 5.5.35+dfsg-1ubuntu1), zlib1g-dev Conflicts: libmysqlclient10-dev, libmysqlclient12-dev, libmysqlclient14-dev, libmysqlclient15-dev Filename: pool/main/m/mysql-5.5/libmysqlclient-dev_5.5.35+dfsg-1ubuntu1_amd64.deb Size: 860074 MD5sum: 68b7a0f4ca1980f24dff22191c8b87b4 SHA1: 6710dde30a4de12c5e49f5e02b4fc7862bed9286 SHA256: 4e34ee0c1fd59dfae3eb0961683140d1f173b54cea78010761720734f4d8d8e6 Description: MySQL database development files Homepage: http://dev.mysql.com/ Description-md5: 716f7a81dc4e3e8899c7eaa66b24736d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmysqlclient18 Priority: optional Section: libs Installed-Size: 3408 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: amd64 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Depends: mysql-common (>= 5.5.35+dfsg-1ubuntu1), libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/m/mysql-5.5/libmysqlclient18_5.5.35+dfsg-1ubuntu1_amd64.deb Size: 592918 MD5sum: 1e6091db1981386e55898d787b831eda SHA1: 05aed4582fba185a1688e8288668b485ad1aee42 SHA256: 77a40d661794b518b84dcbc8590a42f4e3b88ec82aea9e26e39989e5c58bf68e Description: MySQL database client library Multi-Arch: same Homepage: http://dev.mysql.com/ Description-md5: 49de807663510f5f2afd3e71efe199f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libmysqlcppconn-dev Priority: optional Section: libdevel Installed-Size: 3099 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: amd64 Source: mysql-connector-c++ Version: 1.1.3-5 Depends: libboost-dev, libmysqlcppconn7 (= 1.1.3-5) Filename: pool/main/m/mysql-connector-c++/libmysqlcppconn-dev_1.1.3-5_amd64.deb Size: 492494 MD5sum: 61eff4fc7ff5241b5069c52bc33871ee SHA1: 9cdaf26bea491b0ff84e4c7c6e6432abf75ba30d SHA256: c49d9b0ef630a1c260b262b12695f4874f497f7700e68ee4dcb2a1a60578a591 Description: MySQL Connector for C++ (development files) Description-md5: bb5699994096ff28d4eff6db5acd103e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmysqlcppconn7 Priority: optional Section: libs Installed-Size: 1131 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: amd64 Source: mysql-connector-c++ Version: 1.1.3-5 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libmysqlclient18 (>= 5.5.13-1), libstdc++6 (>= 4.6) Filename: pool/main/m/mysql-connector-c++/libmysqlcppconn7_1.1.3-5_amd64.deb Size: 292174 MD5sum: 8019fdc2538593a9f167756e85e8c743 SHA1: 445848dee8b8d32b94c9432bc036bf68670a4c20 SHA256: 6f90d6b22ec1647148ba49ffa1d20a9f346cd4cfce4b945f3910ecc440362b56 Description: MySQL Connector for C++ (library) Description-md5: 3e05a8a275438c98cfe5d5c6ef4a7d9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmysqld-dev Priority: optional Section: libdevel Installed-Size: 19857 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: amd64 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Depends: libmysqlclient-dev (>= 5.5.35+dfsg-1ubuntu1) Filename: pool/main/m/mysql-5.5/libmysqld-dev_5.5.35+dfsg-1ubuntu1_amd64.deb Size: 3049712 MD5sum: 99c0518603ff2b99f4165fdc45409cc5 SHA1: 5a0af0866d14af1cb2e661f34f6bde6b135ce305 SHA256: e344b141d115b36b10641d88d208f6751465b8d54a5a50bc13c16363477ddf8b Description: MySQL embedded database development files Homepage: http://dev.mysql.com/ Description-md5: 2f06b7e1bfdb9f620d92f9696d24fabc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmythes-1.2-0 Priority: optional Section: libs Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: amd64 Source: mythes Version: 2:1.2.2-1ubuntu2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/m/mythes/libmythes-1.2-0_1.2.2-1ubuntu2_amd64.deb Size: 8174 MD5sum: 93c1a286c33a1d49b60388627302c6e2 SHA1: f4d79514ad60713990e01b8dafdbd162110e2cfc SHA256: d6e97221d08440c3b2af5ac8bca407e404ad8afecea9fdc6e8bc772ce9e35a3f Description: simple thesaurus library Description-md5: 16a9ee1d619f9c9c1ab20353031fb583 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libmythes-dev Priority: optional Section: libdevel Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: amd64 Source: mythes Version: 2:1.2.2-1ubuntu2 Depends: libmythes-1.2-0 (= 2:1.2.2-1ubuntu2) Filename: pool/main/m/mythes/libmythes-dev_1.2.2-1ubuntu2_amd64.deb Size: 11606 MD5sum: ab4d5db55030e8c734f78c53c6cecba8 SHA1: ce67df63b6b53dab4d77d98fe58e7fd5afa1876a SHA256: bfc282be1847bdcda5642de23e336ec6176bf86b94ca91802e102dbe9630b6ea Description: simple thesaurus library (development files) Description-md5: ffd0c044918099c732e087109bf97839 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnamespace-autoclean-perl Priority: optional Section: perl Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.15-1 Depends: libb-hooks-endofscope-perl (>= 0.12), libmoose-perl (>= 2) | libclass-mop-perl, libnamespace-clean-perl (>= 0.20), perl Filename: pool/main/libn/libnamespace-autoclean-perl/libnamespace-autoclean-perl_0.15-1_all.deb Size: 10186 MD5sum: 300c561563f6ab584cecc6631cd14959 SHA1: 1a50f826bc23c9193a3d3878f5d6e8fba54b72cc SHA256: 4d60ad1d7f5ea3bffb31b7d2977e28c2db64950fb00a7c9d0c1d3aaa5119b133 Description: module to remove imported symbols after compilation Homepage: https://metacpan.org/release/namespace-autoclean/ Description-md5: cc577199398ebdf3000ada0b769aeb4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnamespace-clean-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.24-1 Depends: perl, libb-hooks-endofscope-perl (>= 0.12), libpackage-stash-perl (>= 0.23), libsub-identify-perl, libsub-name-perl Filename: pool/main/libn/libnamespace-clean-perl/libnamespace-clean-perl_0.24-1_all.deb Size: 12968 MD5sum: 313afe5c87ddc8e2ac14c46df4930988 SHA1: 06b3368e9e9de33223ef85dc752a625429935e95 SHA256: e1f271aba157d21dd193eb718c537a9e368e2e2278187e28294bbc3f2849f64a Description: module for keeping imports and functions out of the current namespace Homepage: https://metacpan.org/release/namespace-clean/ Description-md5: 61ad33ea0d732ead09b6626ff8d86485 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnatpmp-dev Priority: optional Section: libdevel Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Goirand Architecture: amd64 Source: libnatpmp Version: 20110808-3ubuntu2 Depends: libnatpmp1 (= 20110808-3ubuntu2) Filename: pool/main/libn/libnatpmp/libnatpmp-dev_20110808-3ubuntu2_amd64.deb Size: 7574 MD5sum: 7c6478883aba71024c36802e079b1a42 SHA1: dea08c6092bdfdce0e75660a629bb361e7246cde SHA256: 77dd28050621ecc954c2891a46ce4e20e944413b529dafba2decc0937534485d Description: portable and fully compliant implementation of NAT-PMP (dev files) Homepage: http://miniupnp.free.fr/ Description-md5: 0f20003a1f9b143a44e615b71ab13bbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnatpmp1 Priority: optional Section: net Installed-Size: 42 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Goirand Architecture: amd64 Source: libnatpmp Version: 20110808-3ubuntu2 Depends: libc6 (>= 2.7) Suggests: natpmp-utils, minissdpd Filename: pool/main/libn/libnatpmp/libnatpmp1_20110808-3ubuntu2_amd64.deb Size: 8460 MD5sum: 9d1a1960ced4d2e8fdcf5e0512642e10 SHA1: 9fa823a5c6c4de6eb343cce8bf90759be8dfdc09 SHA256: ae54450ca98c5b690be8b06b288b7b55f703a82e71218e1dc1e5b9803d91dd6f Description: portable and fully compliant implementation of NAT-PMP Homepage: http://miniupnp.free.fr/ Description-md5: a5437cbd6b788e523c98bff700c426c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnautilus-extension-dev Priority: optional Section: libdevel Installed-Size: 460 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: nautilus Version: 1:3.10.1-0ubuntu8 Depends: libnautilus-extension1a (= 1:3.10.1-0ubuntu8), gir1.2-nautilus-3.0 (= 1:3.10.1-0ubuntu8), libglib2.0-dev (>= 2.35.3), libgtk-3-dev (>= 3.7.7) Filename: pool/main/n/nautilus/libnautilus-extension-dev_3.10.1-0ubuntu8_amd64.deb Size: 27938 MD5sum: ea986845948e9cfd2bf3e608ac3e4fc7 SHA1: 1a61ac68d52d7594166227713eaddb0014de481d SHA256: acd19be4c768a968be267ae542b631dcbc39487ba00ac5655ec7376976a61acb Description: libraries for nautilus components - development version Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: 6e87107b9ab479b5113b63b76bd07770 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnautilus-extension1a Priority: optional Section: libs Installed-Size: 137 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: nautilus Version: 1:3.10.1-0ubuntu8 Replaces: libnautilus-extension1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0) Breaks: nautilus (<< 1:3.0) Filename: pool/main/n/nautilus/libnautilus-extension1a_3.10.1-0ubuntu8_amd64.deb Size: 52442 MD5sum: dcbc5e8d74794759f4431dcdf4a5214a SHA1: 546d7962b5ad4a61a690805fcceb133bb44e8916 SHA256: 77015cbd5e0e9641ad548af3e32990a2db5f430cb514d0ed2d9a3a786d1c2604 Description: libraries for nautilus components - runtime version Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: 24d74241fbd9274f58339c68e65e6d46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libncurses5 Priority: required Section: libs Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15) Pre-Depends: multiarch-support, libtinfo5 (>= 5.9-3) Recommends: libgpm2 Filename: pool/main/n/ncurses/libncurses5_5.9+20140118-1ubuntu1_amd64.deb Size: 93554 MD5sum: 4b9fa1adc3d421378b7e0d641e44279f SHA1: 8d0f6f86cb08427efbac36b2ee662b330c45addf SHA256: 6b089b7d9b8aa0f6436e363bf27cd62e49f0bf0e04fa63ba3cb44f1f1d32b687 Description: shared libraries for terminal handling Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: 599cbbcff16d09b3b4643d84f37643fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libncurses5-dbg Priority: extra Section: libdevel Installed-Size: 14906 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libncurses5-dev (= 5.9+20140118-1ubuntu1), libtinfo5-dbg (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15), libncurses5 (>= 5.5-5~) Filename: pool/main/n/ncurses/libncurses5-dbg_5.9+20140118-1ubuntu1_amd64.deb Size: 2114046 MD5sum: 33ff76642d2cc764989548e3827e6718 SHA1: afc36559242350ad0f2916c26ec2c878e7acef68 SHA256: c672c8c41d7b830212163686fee80c9397daad06ab386448516d50720fa44a39 Description: debugging/profiling libraries for ncurses Homepage: http://invisible-island.net/ncurses/ Description-md5: 5b094421b6dbd5e535ef972eedbde981 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libncurses5-dev Priority: optional Section: libdevel Installed-Size: 1031 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: libncurses-dev, ncurses-dev Provides: libncurses-dev, ncurses-dev Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libncurses5 (= 5.9+20140118-1ubuntu1), libtinfo-dev (= 5.9+20140118-1ubuntu1), ncurses-bin (= 5.9+20140118-1ubuntu1), libc6-dev | libc-dev Suggests: ncurses-doc Conflicts: libncurses-dev, ncurses-dev Filename: pool/main/n/ncurses/libncurses5-dev_5.9+20140118-1ubuntu1_amd64.deb Size: 169512 MD5sum: 8c33b879701fdbfb2a7c52caedeeb020 SHA1: 288473786fcbc1607a3d566b1a5e06b4c791d9f7 SHA256: 6aa2b2e6647f22dfdba80fef500bebc709fefac9a6e95d5da0538dacf681924b Description: developer's libraries for ncurses Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: 38da502b304ea3ed5ff1e12d072d14a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libncursesw5 Priority: required Section: libs Installed-Size: 374 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15) Pre-Depends: multiarch-support Recommends: libgpm2 Filename: pool/main/n/ncurses/libncursesw5_5.9+20140118-1ubuntu1_amd64.deb Size: 118544 MD5sum: aa7f4add3cfa5484520c2d2abccb23ff SHA1: a521c498a6e6340c3aaecb1527adf5d59f62f8c3 SHA256: 85aa3e0e2a090ebef8a9a95537f6014b22552bc3849f8441db97ba03ba591350 Description: shared libraries for terminal handling (wide character support) Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: 1a69a793355bf1fff9186f00b71dd14a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libncursesw5-dbg Priority: extra Section: libdevel Installed-Size: 8752 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libtinfo5-dbg (= 5.9+20140118-1ubuntu1), libncursesw5-dev (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15), libncursesw5 (>= 5.6+20071124) Filename: pool/main/n/ncurses/libncursesw5-dbg_5.9+20140118-1ubuntu1_amd64.deb Size: 1091752 MD5sum: 83bdfe7f37a18cd179272b782c6be2d8 SHA1: 31b4f12a6690d888dff8db1bb74a8e1785615d86 SHA256: d95a734bd5d794afa3b30b1854b441b16fae95481008de04ffe995854724b14c Description: debugging/profiling libraries for ncursesw Homepage: http://invisible-island.net/ncurses/ Description-md5: f1a8753e0e826eda9da45ea0701fb764 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libncursesw5-dev Priority: optional Section: libdevel Installed-Size: 1180 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libncursesw5 (= 5.9+20140118-1ubuntu1), libtinfo-dev (= 5.9+20140118-1ubuntu1), ncurses-bin (= 5.9+20140118-1ubuntu1), libc6-dev | libc-dev Suggests: ncurses-doc Filename: pool/main/n/ncurses/libncursesw5-dev_5.9+20140118-1ubuntu1_amd64.deb Size: 197436 MD5sum: ca7b0a28c4d77ae522e81c0d19f1ca6d SHA1: 0e427e63794a7ce2d58844311c93db4a34e2d68c SHA256: d1e9ffc674b973c2d1220f6e502f6efbb90909725d5e170de5863359a5b8c269 Description: developer's libraries for ncursesw Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: 7cb791804adf3d6ce56ac2845116e8fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libneon27 Priority: optional Section: libs Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: neon27 Version: 0.30.0-1ubuntu1 Depends: libc6 (>= 2.14), libgssapi-krb5-2 (>= 1.10+dfsg~), libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Filename: pool/main/n/neon27/libneon27_0.30.0-1ubuntu1_amd64.deb Size: 93338 MD5sum: 15f03fa5db4ded6c5d998b7c273a4449 SHA1: 6259f7a082351fb61780148bd6752592962a8c86 SHA256: 243293e1824421871bf7c739e8ceb3e84a4fc2f1fb4eae5dec05e3dbee083cbe Description: HTTP and WebDAV client library Homepage: http://www.webdav.org/neon/ Description-md5: 1a393f35895ce4fcb0fd461ebf9d809a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libneon27-dbg Priority: extra Section: libdevel Installed-Size: 629 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: neon27 Version: 0.30.0-1ubuntu1 Depends: libneon27 (= 0.30.0-1ubuntu1) Filename: pool/main/n/neon27/libneon27-dbg_0.30.0-1ubuntu1_amd64.deb Size: 154880 MD5sum: 75bbccd25e5b39bb5d96dcb7926f82e3 SHA1: 86de0c4d0e3ff72ae5640acf429e0233c2dd7cda SHA256: d8d8d1ec1196b26257fddc11033e44351b23431623eb031fb7e40e507f014180 Description: Detached symbols for libneon27 Homepage: http://www.webdav.org/neon/ Description-md5: c2040e90bbd35f5abb489d781dd8d90b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libneon27-dev Priority: optional Section: libdevel Installed-Size: 1530 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: neon27 Version: 0.30.0-1ubuntu1 Replaces: libneon-dev, libneon25-dev, libneon27-gnutls-dev Provides: libneon-dev Depends: libneon27 (= 0.30.0-1ubuntu1), libssl-dev, libxml2-dev, libkrb5-dev, pkg-config Conflicts: libneon-dev, libneon24-doc (<= 0.24.5-1), libneon25-dev (<< 0.28.2-5), libneon27-gnutls-dev Filename: pool/main/n/neon27/libneon27-dev_0.30.0-1ubuntu1_amd64.deb Size: 354892 MD5sum: b7268bfc55ccbd45b25948227402d858 SHA1: 302a9657240d7f76297a8181a45ae00e5877c02e SHA256: 67913055d8817d0df55dc5534ceff63afafde6179a5d827ad71a0c53e8905eef Description: Header and static library files for libneon27 Homepage: http://www.webdav.org/neon/ Description-md5: 99a5ffc065d5c4dcb72a47bcb8c89ef5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libneon27-gnutls Priority: optional Section: libs Installed-Size: 250 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: neon27 Version: 0.30.0-1ubuntu1 Depends: libc6 (>= 2.14), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Recommends: ca-certificates Filename: pool/main/n/neon27/libneon27-gnutls_0.30.0-1ubuntu1_amd64.deb Size: 64900 MD5sum: 1ca937b3d8b0d7b45a3902beb28fc4c7 SHA1: 279ff1601ff9eaa66342533202dcd9bad5a822e8 SHA256: a11476d2c3a54d740b523d424029ba1e3c04fecc110d5e10cb65491b84ced491 Description: HTTP and WebDAV client library (GnuTLS enabled) Homepage: http://www.webdav.org/neon/ Description-md5: c6fa90bf133b6a934d0ac7818b4724b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libneon27-gnutls-dbg Priority: extra Section: libdevel Installed-Size: 576 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: neon27 Version: 0.30.0-1ubuntu1 Depends: libneon27-gnutls (= 0.30.0-1ubuntu1) Filename: pool/main/n/neon27/libneon27-gnutls-dbg_0.30.0-1ubuntu1_amd64.deb Size: 135792 MD5sum: 128ca422ca89b3e8de4f9ea107a9582d SHA1: 061f43ecc2accc0f350c50d805bd945f7591631d SHA256: 549f38307ae0882d475e6aee03b319e7260cd6c376e0ea06f458bfb905aaf6dd Description: Detached symbols for libneon27 (GnuTLS enabled) Homepage: http://www.webdav.org/neon/ Description-md5: f9d918f02190b524fd54e425084f724d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libneon27-gnutls-dev Priority: optional Section: libdevel Installed-Size: 1409 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: neon27 Version: 0.30.0-1ubuntu1 Replaces: libneon-dev, libneon25-dev, libneon27-dev Provides: libneon-dev Depends: libneon27-gnutls (= 0.30.0-1ubuntu1), libgnutls-dev, libxml2-dev, libkrb5-dev, pkg-config Conflicts: libneon-dev, libneon24-doc (<= 0.24.5-1), libneon25-dev (<< 0.28.2-5), libneon27-dev Filename: pool/main/n/neon27/libneon27-gnutls-dev_0.30.0-1ubuntu1_amd64.deb Size: 327288 MD5sum: ca7fea366a36720158e5f62174081ba2 SHA1: deab5aa5f30bd6c420d0cc30d3a3b5006bd485d0 SHA256: de0eb9d8f8612e5d75798f645ba1b8dc7fb97e1b42db96e8c7dee0e936a22ecb Description: Header and static library files for libneon27 (GnuTLS enabled) Homepage: http://www.webdav.org/neon/ Description-md5: fa474ab65adbb46a27fc8c84102e2b8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnepomuk4 Priority: optional Section: libs Installed-Size: 1114 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.8.0), libsoprano4 (>= 2.7.56), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libnepomuk4_4.13.0-0ubuntu1_amd64.deb Size: 202442 MD5sum: 1257a3ea458bcc7c5f28ae7c29c25aae SHA1: 9b4c8f8680523babd9bd03b3cb1e2c7b9d903091 SHA256: 5cc3a6108d88fc7a74f1945f7bde40b8d797004897785337ef59bc27064ec279 Description: Nepomuk Meta Data Library Homepage: http://nepomuk.kde.org/ Description-md5: b19e398b2de1071ad89678968e230e2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libnepomukquery4a Priority: optional Section: libs Installed-Size: 505 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Replaces: kdebase-workspace-libs4+5, libnepomukquery4 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libsoprano4 (>= 2.7.56), libstdc++6 (>= 4.1.1) Breaks: kdebase-workspace-libs4+5, libnepomukquery4 Filename: pool/main/k/kde4libs/libnepomukquery4a_4.13.0-0ubuntu1_amd64.deb Size: 107246 MD5sum: 90955a16f65f7f4b537aa7c05f4e63d1 SHA1: 45e7fa5e3744b69818f324264f505f6dbd6fb085 SHA256: 6e2ff162d651c9d37c6955a5e32178e9c2241853ba0efe87f25e2819fe214fd6 Description: Nepomuk Query Library for the KDE Platform Homepage: http://nepomuk.kde.org/ Description-md5: f817c9a2910650273d5905aa6b8bc8d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libnepomukutils4 Priority: optional Section: libs Installed-Size: 448 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libnepomukquery4a (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.8.0), libsoprano4 (>= 2.7.56), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libnepomukutils4_4.13.0-0ubuntu1_amd64.deb Size: 84754 MD5sum: 2fc84f9557fd8ea987b3447d12bfd6de SHA1: dd9557e823d35c422e3f56a0af602e4a8bada314 SHA256: c3571aa0f6bda692a246e7e1033b28187cb2889cc432aa6e7c39d4e35cfa0beb Description: Nepomuk Utility Library Homepage: http://nepomuk.kde.org/ Description-md5: 064394da7816fadaeba58ce100eb1836 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libnet-cidr-perl Priority: optional Section: perl Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Bart Martens Architecture: all Version: 0.17-1 Depends: perl Filename: pool/main/libn/libnet-cidr-perl/libnet-cidr-perl_0.17-1_all.deb Size: 14786 MD5sum: 0a2f10b28e90912277810e032887341e SHA1: 4d294df53c9253cfc751e5d51078382c2cac8364 SHA256: ec77bc6085fd83585ef44de5552976d09ef1e8c1e3143d9d1e63cf634ce44f8e Description: Manipulate IPv4/IPv6 netblocks in CIDR notation Homepage: http://search.cpan.org/dist/Net-CIDR/ Description-md5: 96a22fd88a0c4bef19b131a6c6c68cd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet-dns-perl Priority: optional Section: perl Installed-Size: 675 Maintainer: Ubuntu Developers Original-Maintainer: Florian Roscher Architecture: amd64 Version: 0.68-1.2build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4), libdigest-hmac-perl (>= 1), libmime-base64-perl, libnet-ip-perl (>= 1.2), libio-socket-inet6-perl Filename: pool/main/libn/libnet-dns-perl/libnet-dns-perl_0.68-1.2build1_amd64.deb Size: 294682 MD5sum: db010e2773a9fac285b7d258e41f5831 SHA1: e6a501cd69b8ad78bc75189cfcc6e1b4b9f403c6 SHA256: 265f78f1b80c5db4453462c30a685e7cbf8082dada10e51ddf2093f7b3cb5cf6 Description: Perform DNS queries from a Perl script Homepage: http://www.net-dns.org/ Description-md5: 844c18f2647e1389fce352e0e6fb5455 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-dns-resolver-programmable-perl Priority: optional Section: perl Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.003-2 Depends: perl, libnet-dns-perl Filename: pool/main/libn/libnet-dns-resolver-programmable-perl/libnet-dns-resolver-programmable-perl_0.003-2_all.deb Size: 10154 MD5sum: 90f2fdc1670437b34e0ce8a3c049d782 SHA1: 8366d7e31ff80dc8e7bb0548fc784fb543e02182 SHA256: d934dfdaf835bf592c2b9842a49cd788d8e379aed7550e55ad32c1ceea9acc88 Description: programmable DNS resolver class for offline emulation of DNS Homepage: http://search.cpan.org/dist/Net-DNS-Resolver-Programmable/ Description-md5: 0af5d17ab98dea97840b15d23dbd17dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnet-domain-tld-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.70-1 Depends: perl Filename: pool/main/libn/libnet-domain-tld-perl/libnet-domain-tld-perl_1.70-1_all.deb Size: 12392 MD5sum: 3586edc3ce589a6e34c8a082465aa904 SHA1: 001ae2cdc7dffd22b2175e7e38ebc63c168fccfc SHA256: 1b3f4f0bbec3209ff2d5617d8b73f904d4654f4cb102a4ff2c3595550fbc7011 Description: list of currently available Top-level Domains (TLDs) Homepage: https://metacpan.org/release/Net-Domain-TLD/ Description-md5: cdb2673e7d06c281ae7ff48272081a8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-http-perl Priority: optional Section: perl Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.06-1 Replaces: libwww-perl (<< 6.00) Depends: perl Recommends: libio-socket-ssl-perl (>= 1.38) Breaks: libwww-perl (<< 6.00) Filename: pool/main/libn/libnet-http-perl/libnet-http-perl_6.06-1_all.deb Size: 24168 MD5sum: be81a58e1fa9b014923cc0ac8e992c59 SHA1: 1740c345333de820f50a681056dd66aa1e7912e1 SHA256: 2377f3ab0694f3e87863ef575938a85d5dff2224a442473a13a064633e3675ed Description: module providing low-level HTTP connection client Homepage: https://metacpan.org/release/Net-HTTP/ Description-md5: a321306aab43965de9df44af60cf6eb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-ip-perl Priority: optional Section: perl Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.26-1 Depends: perl Filename: pool/main/libn/libnet-ip-perl/libnet-ip-perl_1.26-1_all.deb Size: 31546 MD5sum: 110f45aa37095dc64192bf8e9032e655 SHA1: fe2e889c9f2f00d261962bec82986a351b65b903 SHA256: 63cc2947512efa2d745e70e92ec817c7af6c253b8239c5e754cbe79535f206a0 Description: Perl extension for manipulating IPv4/IPv6 addresses Homepage: http://search.cpan.org/dist/Net-IP/ Description-md5: 69f8a2fedc328fe80a5105353406d4f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-ldap-perl Priority: optional Section: perl Installed-Size: 871 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1:0.5800-1 Depends: perl, libconvert-asn1-perl Recommends: libgssapi-perl, libwww-perl Suggests: libauthen-sasl-perl, libdigest-hmac-perl, libio-socket-inet6-perl, libio-socket-ssl-perl, libjson-perl, liburi-perl, libxml-parser-perl, libxml-sax-perl Filename: pool/main/libn/libnet-ldap-perl/libnet-ldap-perl_0.5800-1_all.deb Size: 396300 MD5sum: c244cad9ccc65c65262fed52db6d8f1f SHA1: 10d24859dda67a344ba0e3305d67bd101435c6c7 SHA256: b579fb241c54033d07b233ad5457799007bfd71991bd70f1d8ecc21ac160633e Description: client interface to LDAP servers Homepage: http://ldap.perl.org/ Description-md5: 94d2f596d5f07ed133ccd4db463c5a70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet-libidn-perl Priority: optional Section: perl Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.12.ds-1build4 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5), libidn11 (>= 1.13) Filename: pool/main/libn/libnet-libidn-perl/libnet-libidn-perl_0.12.ds-1build4_amd64.deb Size: 19510 MD5sum: 99a0cd088a46e08d6e6ff89543375d06 SHA1: 0d8dd87326faf66de205afdb4666c016223c20e0 SHA256: 2e1dc7000730f8bc75541534da4e060911ba356a3fe722b7397c58b6dded6586 Description: Perl bindings for GNU Libidn Homepage: http://search.cpan.org/dist/Net-LibIDN/ Description-md5: 0a762048829fd446651dc9be4fb6ed71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-server-perl Priority: optional Section: perl Installed-Size: 512 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.007-3 Depends: perl, libio-multiplex-perl, libio-socket-inet6-perl, libnet-cidr-perl, libsocket6-perl Suggests: libio-socket-ssl-perl, liblog-log4perl-perl, libnet-ssleay-perl Filename: pool/main/libn/libnet-server-perl/libnet-server-perl_2.007-3_all.deb Size: 198202 MD5sum: 470aa9bac478219727b4beea8a106569 SHA1: e2d249ef0b5564def68996b7ebbb46988ae9c616 SHA256: 03e67bee7abd34b00f716de5d492523b3ba89242c176f8540e211a3da9f470ca Description: extensible, general perl server engine Homepage: https://metacpan.org/release/Net-Server/ Description-md5: 6ff0ba92822aa9a8aad96a4032254cb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet-smtp-ssl-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.01-3 Depends: perl, libio-socket-ssl-perl Recommends: libauthen-sasl-perl Filename: pool/main/libn/libnet-smtp-ssl-perl/libnet-smtp-ssl-perl_1.01-3_all.deb Size: 5948 MD5sum: 614bd815b2caa0c3643aa64043d2a038 SHA1: f8c34291c62e50ac40f4bf0601fcd9c68c19f51e SHA256: 6e8d0f8fa37584b6b07d3189e482ff084f3430d66042f4f5eba57f7b83e08487 Description: Perl module providing SSL support to Net::SMTP Homepage: http://search.cpan.org/dist/Net-SMTP-SSL/ Description-md5: 59963c2ed5b8d5e9aed2424aefac355e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-snmp-perl Priority: optional Section: perl Installed-Size: 453 Maintainer: Ubuntu Developers Original-Maintainer: Jochen Friedrich Architecture: all Version: 6.0.1-2 Depends: perl Suggests: libcrypt-des-perl, libdigest-hmac-perl, libio-socket-inet6-perl Filename: pool/main/libn/libnet-snmp-perl/libnet-snmp-perl_6.0.1-2_all.deb Size: 107418 MD5sum: 915e7b9ccf1bcae6ce728890d342837f SHA1: 42edba4f626a5cb154a9b238fdc61aeaddaf8660 SHA256: f3702731a96b67fc7a3508d0b40b2e67300dd15536eb9c7acdc95ffc8952128b Description: Script SNMP connections Description-md5: 822f8f6acfa7834deb310d8498b05082 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet-ssleay-perl Priority: optional Section: perl Installed-Size: 1011 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.58-1 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.14), libssl1.0.0 (>= 1.0.1) Suggests: libmime-base64-perl Filename: pool/main/libn/libnet-ssleay-perl/libnet-ssleay-perl_1.58-1_amd64.deb Size: 242860 MD5sum: b4a1654a94f3cd8a6339c15e210f8886 SHA1: 9a0a951b9579cf906e6d6400217e10c97f32da95 SHA256: 7b16528a1433f7ea678beba7dc57bc666121e2d538baa84d97feeccfdaa8928d Description: Perl module for Secure Sockets Layer (SSL) Homepage: https://metacpan.org/release/Net-SSLeay/ Description-md5: ccc2258977dc0f512ba135bc3f4c6bca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-xwhois-perl Priority: optional Section: perl Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.90-4 Depends: perl Filename: pool/main/libn/libnet-xwhois-perl/libnet-xwhois-perl_0.90-4_all.deb Size: 20954 MD5sum: 88969ba8fd482ae4da90acc505ee01a4 SHA1: 640f90a688f21b139c16ddb8c98f92c219f04f93 SHA256: 57f0566dd07022e2d48426acd2108ed2a6d7ac91b9bed304fb81184aeae01102 Description: Whois Client Interface for Perl5 Homepage: https://metacpan.org/release/Net-XWhois Description-md5: f536bebc820e61324a72e5739e5b083f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet1 Priority: optional Section: libs Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Stefanos Harhalakis Architecture: amd64 Source: libnet Version: 1.1.6+dfsg-2ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libn/libnet/libnet1_1.1.6+dfsg-2ubuntu1_amd64.deb Size: 41834 MD5sum: a398b7c0942e93c4394db3309de3505d SHA1: f05a6397e589ce8325d290f77553ed8fad20f185 SHA256: 04696665417e0f232d257d4a4501cddcf6bd0a998f572b72c7f97ef33896010a Description: library for the construction and handling of network packets Multi-Arch: same Homepage: http://libnet-dev.sourceforge.net/ Description-md5: 6962156fdb23e2f413d3bdde50843766 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet1-dbg Priority: extra Section: libs Installed-Size: 513 Maintainer: Ubuntu Developers Original-Maintainer: Stefanos Harhalakis Architecture: amd64 Source: libnet Version: 1.1.6+dfsg-2ubuntu1 Depends: libnet1 (= 1.1.6+dfsg-2ubuntu1) Filename: pool/main/libn/libnet/libnet1-dbg_1.1.6+dfsg-2ubuntu1_amd64.deb Size: 98444 MD5sum: a13f04ed8404bcee6816111f647f3758 SHA1: 88ed15b3cf874b8b9e52432abf3bada0465d7522 SHA256: 77a19acf48c1391d0c513eeac94081e53574fcae126d6706de10c4193e7b884b Description: debugging symbols for libnet Multi-Arch: same Homepage: http://libnet-dev.sourceforge.net/ Description-md5: c01fb359b5efe2491589541ef8fd4967 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnet1-dev Priority: optional Section: libdevel Installed-Size: 487 Maintainer: Ubuntu Developers Original-Maintainer: Stefanos Harhalakis Architecture: amd64 Source: libnet Version: 1.1.6+dfsg-2ubuntu1 Provides: libnet-dev Depends: libc6-dev, libnet1 (= 1.1.6+dfsg-2ubuntu1) Conflicts: libnet-dev Filename: pool/main/libn/libnet/libnet1-dev_1.1.6+dfsg-2ubuntu1_amd64.deb Size: 97654 MD5sum: f775b08a5a1c2892135ecf44294a69ac SHA1: 09caea800bcdfaa6f224db17a017062088efcb96 SHA256: 3179f518b335bb2d3b27800b517c1ae168d16898d6a030f02633a0179133ae99 Description: development files for libnet Homepage: http://libnet-dev.sourceforge.net/ Description-md5: 00fc4a49605b484178c71aaf2dcff7e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnet1-doc Priority: optional Section: doc Installed-Size: 821 Maintainer: Ubuntu Developers Original-Maintainer: Stefanos Harhalakis Architecture: all Source: libnet Version: 1.1.6+dfsg-2ubuntu1 Suggests: libnet1-dev Filename: pool/main/libn/libnet/libnet1-doc_1.1.6+dfsg-2ubuntu1_all.deb Size: 191310 MD5sum: 8f2c4e8befad768508bcf60822cff36f SHA1: e4ff06c2b9e11a1aa2f2892365a1c61f9495ff07 SHA256: 6fa4ebc98a89874591069aa8ac4febf17b5120abed33519c715460a2749a1dbf Description: developers documentation files for libnet Homepage: http://libnet-dev.sourceforge.net/ Description-md5: 693a254aedc26c1893f4aa8b252700a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnetaddr-ip-perl Priority: optional Section: perl Installed-Size: 331 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 4.071+dfsg-1 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.4) Recommends: libsocket6-perl Filename: pool/main/libn/libnetaddr-ip-perl/libnetaddr-ip-perl_4.071+dfsg-1_amd64.deb Size: 84274 MD5sum: fdca632254753162aa6f126ac5ee2559 SHA1: 7af37259f93da800b7188b6db22d327ebfb72a3e SHA256: 6d5d7d9bcc97cb2eec37993aa391a5f93d50087fc96c968cde4804cde94be936 Description: IP address manipulation module Homepage: https://metacpan.org/release/NetAddr-IP/ Description-md5: e872c8c680e660ec84770c1b960173c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libnetcf-dev Priority: extra Section: libdevel Installed-Size: 181 Maintainer: Serge Hallyn Architecture: amd64 Source: netcf Version: 1:0.2.3-4ubuntu1 Depends: libnetcf1 (= 1:0.2.3-4ubuntu1) Filename: pool/main/n/netcf/libnetcf-dev_0.2.3-4ubuntu1_amd64.deb Size: 33696 MD5sum: 1d8e74b4975e594965895b231c2be7e5 SHA1: 8e8c556fbdc21e03cb90684e6bbfc844d36aba8d SHA256: a747324e54e4deb59ae0ec340b14cffabfee28f8f5299f043bbe5a85abdfb85a Description: development library and headers for netcf Homepage: https://fedorahosted.org/netcf/ Description-md5: 817408fc4f8311a5d4236adf144dd58c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnetcf1 Priority: extra Section: libs Installed-Size: 207 Maintainer: Serge Hallyn Architecture: amd64 Source: netcf Version: 1:0.2.3-4ubuntu1 Depends: libaugeas0 (>= 0.6.0), libc6 (>= 2.14), libnl-3-200 (>= 3.2.7), libnl-route-3-200 (>= 3.2.7), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), augeas-lenses Conflicts: libvirt0 (<= 0.10.1-2~) Filename: pool/main/n/netcf/libnetcf1_0.2.3-4ubuntu1_amd64.deb Size: 44382 MD5sum: 8be8b7c76a08cdb30057e309b733b5b6 SHA1: 1cf3512e8f8e5f3091bee74b460ca7d5c744173a SHA256: 7cf5778e322a982be02aa72d85cbcf2257fb52f9115a99567f65f8104e43fe27 Description: cross-platform network configuration library Homepage: https://fedorahosted.org/netcf/ Description-md5: 19a455783c3b5cf4fabe5e9512048817 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libnetcf1-dbg Priority: extra Section: debug Installed-Size: 375 Maintainer: Serge Hallyn Architecture: amd64 Source: netcf Version: 1:0.2.3-4ubuntu1 Depends: libnetcf1 (= 1:0.2.3-4ubuntu1) Filename: pool/main/n/netcf/libnetcf1-dbg_0.2.3-4ubuntu1_amd64.deb Size: 93788 MD5sum: 22e2306ee1d86f093db65b2f29e110d2 SHA1: c8a72935947798f568a75c1341ee83dad950da40 SHA256: 58492c97e617c1acb217dc976e7fe15b99dc3ddf9df44eb094fda045e4a1bd5e Description: cross-platform network configuration library Homepage: https://fedorahosted.org/netcf/ Description-md5: 150c34707b4e3258431ca1948ed982e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnetfilter-conntrack-dev Priority: optional Section: libdevel Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: amd64 Source: libnetfilter-conntrack Version: 1.0.4-1 Depends: pkg-config, libnetfilter-conntrack3 (= 1.0.4-1), libnfnetlink-dev (>= 1.0.0) Filename: pool/main/libn/libnetfilter-conntrack/libnetfilter-conntrack-dev_1.0.4-1_amd64.deb Size: 9128 MD5sum: d5d448011d1aa8e67d15097b3aad5c97 SHA1: 86197065bf32b09b6f551e2f6e64c3c08ae3be77 SHA256: 4192a0ae5589b507a5bd7a710822306f7f950b8fda5979f2d5d39ca2cad4b0dd Description: Development files for libnetfilter-conntrack3 Homepage: http://www.netfilter.org/projects/libnetfilter_conntrack/ Description-md5: 56003153efb66d702a954e538a57f5fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnetfilter-conntrack3 Priority: extra Section: libs Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: amd64 Source: libnetfilter-conntrack Version: 1.0.4-1 Depends: libc6 (>= 2.14), libmnl0, libnfnetlink0 Pre-Depends: multiarch-support Filename: pool/main/libn/libnetfilter-conntrack/libnetfilter-conntrack3_1.0.4-1_amd64.deb Size: 45872 MD5sum: fa82697b8119c7a2cbc0c7d3d1f64dc8 SHA1: 743b497bd6a6491a8cad11c04103e55c7a9cc93c SHA256: a8222e603d380737f3b489016475617e1c95cc8affc03d4f36436183dde0e8a6 Description: Netfilter netlink-conntrack library Multi-Arch: same Homepage: http://www.netfilter.org/projects/libnetfilter_conntrack/ Description-md5: f1067cc149ff552e440eda0b642c415a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnetfilter-conntrack3-dbg Priority: extra Section: debug Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: amd64 Source: libnetfilter-conntrack Version: 1.0.4-1 Depends: libnetfilter-conntrack3 (= 1.0.4-1) Filename: pool/main/libn/libnetfilter-conntrack/libnetfilter-conntrack3-dbg_1.0.4-1_amd64.deb Size: 157036 MD5sum: a2af93f1608a4a030feb4720b3782c57 SHA1: 758363ded89c0c60370a090d379a70e33c942816 SHA256: ac8ba94bd0461ba1cea7b4b01c25f8c8aee35fe336a9417e4abd7c9682c030ef Description: Debugging symbols for libnetfilter-conntrack3 Homepage: http://www.netfilter.org/projects/libnetfilter_conntrack/ Description-md5: 6a57557901dc3e9fa98283de1c057376 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnetpbm10 Priority: optional Section: libs Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Barth Architecture: amd64 Source: netpbm-free Version: 2:10.0-15ubuntu2 Depends: libc6 (>= 2.7) Filename: pool/main/n/netpbm-free/libnetpbm10_10.0-15ubuntu2_amd64.deb Size: 69042 MD5sum: 58e723cc2808b96887c6c8f2a17ab9aa SHA1: 5cec2a2c6fa6a04807ba4bfdcd3ca06c1f6ad599 SHA256: a2eaf341ccf91bdff9d24a55072cc888892dd0b0553bcf696a753e985e6590e6 Description: Graphics conversion tools shared libraries Homepage: http://netpbm.alioth.debian.org Description-md5: 7469a853b7df47680b055dd8467b3162 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics Package: libnetpbm10-dev Priority: optional Section: libdevel Installed-Size: 362 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Barth Architecture: amd64 Source: netpbm-free Version: 2:10.0-15ubuntu2 Replaces: netpbm-dev Provides: netpbm-dev Depends: libnetpbm10 (= 2:10.0-15ubuntu2) Conflicts: libnetpbm9-dev, netpbm-dev Filename: pool/main/n/netpbm-free/libnetpbm10-dev_10.0-15ubuntu2_amd64.deb Size: 117402 MD5sum: 7eacec23dfa457dd7b56a20470e5e270 SHA1: c71b8b2f3d1ca29f964b92072edca99104541f3b SHA256: 852fb2d207bfb40d97f86d46cb0c6597140336ef4067382ddb3b06df9d4adc39 Description: Graphics conversion tools development libraries and header files Homepage: http://netpbm.alioth.debian.org Description-md5: 8624b9c657ac8380ac1cc36af98b59f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnettle4 Priority: optional Section: libs Installed-Size: 318 Maintainer: Ubuntu Developers Original-Maintainer: Magnus Holmgren Architecture: amd64 Source: nettle Version: 2.7.1-1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/n/nettle/libnettle4_2.7.1-1_amd64.deb Size: 120828 MD5sum: c11b5abb83969065d8364bfdda5dc927 SHA1: bd05764714386fe2463efd65636c83cfb6e13437 SHA256: 69ac947362ed4ed2ed465d4780217a075f1184ece482c30058238f3300f78097 Description: low level cryptographic library (symmetric and one-way cryptos) Multi-Arch: same Homepage: http://www.lysator.liu.se/~nisse/nettle/ Description-md5: 9dcb77a61a93b06eb5b005f9c8c509a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnewt-dev Priority: optional Section: libdevel Installed-Size: 291 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: amd64 Source: newt Version: 0.52.15-2ubuntu5 Depends: libslang2-dev (>= 2.0.2), libnewt0.52 (= 0.52.15-2ubuntu5) Filename: pool/main/n/newt/libnewt-dev_0.52.15-2ubuntu5_amd64.deb Size: 68790 MD5sum: e2ef0f64c0b2c6a52c092bc91ed2c048 SHA1: 7c29913396411573c442cdf3892c8b9d1970a699 SHA256: 1d49b36a6fc4dee95e87a305a0393c09e88f84334e8994ffe068ca79d6469f01 Description: Developer's toolkit for newt windowing library Multi-Arch: same Homepage: https://fedorahosted.org/newt/ Description-md5: 4444039a4a6e54b75dae85173c39b133 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnewt-pic Priority: extra Section: libdevel Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: amd64 Source: newt Version: 0.52.15-2ubuntu5 Depends: libnewt-dev (= 0.52.15-2ubuntu5) Filename: pool/main/n/newt/libnewt-pic_0.52.15-2ubuntu5_amd64.deb Size: 2646 MD5sum: bb482878f3fcfcbc3c2ec722d810599f SHA1: 8127647ddbe918bb7940a88b3929c4f8820d28e0 SHA256: 4f055fc2dd5e987f35ab0b12d7f79f0166b59a01fe83e8aa6d08ba34cbfc430d Description: Not Erik's Windowing Toolkit, shared library subset kit Multi-Arch: same Homepage: https://fedorahosted.org/newt/ Description-md5: 038737cb30e131e1b2b9cdbca20a39cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnewt0.52 Priority: important Section: libs Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: amd64 Source: newt Version: 0.52.15-2ubuntu5 Depends: libc6 (>= 2.15), libslang2 (>= 2.2.4) Pre-Depends: multiarch-support Recommends: libfribidi0 Filename: pool/main/n/newt/libnewt0.52_0.52.15-2ubuntu5_amd64.deb Size: 40564 MD5sum: 31ba176b2adbb646824f1cd5c8594e31 SHA1: e8275319906e5ba50cc3d7cbb989acd7a56859d2 SHA256: 5b1aac4a3770a6dbbf2b5d2c39ea4ccd5ec82b2b05353c920812d141d0270cdc Description: Not Erik's Windowing Toolkit - text mode windowing with slang Multi-Arch: same Homepage: https://fedorahosted.org/newt/ Description-md5: cfc4271054d35387b5e0576f9d7af19a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libnfnetlink-dev Priority: optional Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: amd64 Source: libnfnetlink Version: 1.0.1-2 Depends: libnfnetlink0 (= 1.0.1-2), pkg-config Filename: pool/main/libn/libnfnetlink/libnfnetlink-dev_1.0.1-2_amd64.deb Size: 6678 MD5sum: 365e5ea80615242b471509d6003c034c SHA1: 28750fb42e934d5b0cd9324f62dcd87aec8352d9 SHA256: d062735ae347e5ec29cac6bcc74d5f5562b29ce3184942e61ebf88bc4807c052 Description: Development files for libnfnetlink0 Description-md5: 1d63664ba1d482a715f14f78cdbca980 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnfnetlink0 Priority: standard Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: amd64 Source: libnfnetlink Version: 1.0.1-2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libn/libnfnetlink/libnfnetlink0_1.0.1-2_amd64.deb Size: 15020 MD5sum: fe7f4daa361af84da4c94172f4d06491 SHA1: 8326836ecaaa4215d544f976dabbf412698b7a98 SHA256: 1b987688a0297cee789b0b2e7ebc98ef29f606840e40f799250ea4e53e4754e0 Description: Netfilter netlink library Multi-Arch: same Description-md5: 8b3f6ded46a99d0fbb1c1157f93b9512 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libnfnetlink0-dbg Priority: extra Section: libdevel Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: amd64 Source: libnfnetlink Version: 1.0.1-2 Depends: libnfnetlink0 (= 1.0.1-2) Filename: pool/main/libn/libnfnetlink/libnfnetlink0-dbg_1.0.1-2_amd64.deb Size: 30154 MD5sum: 4f3aec253587bb3b8956da648796ec09 SHA1: 6cf29585da847874de921bba11c207ad0fba5274 SHA256: 87e509b8768bc0faf0fb9e52b2aca76e922096d6ec24b403db0a9877fd258559 Description: Debugging symbols for libnfnetlink0 Description-md5: 744d0e293b47e85b0f8901afa401cb08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnfsidmap-dev Priority: optional Section: devel Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libnfsidmap Version: 0.25-5 Depends: libnfsidmap2 (= 0.25-5) Filename: pool/main/libn/libnfsidmap/libnfsidmap-dev_0.25-5_amd64.deb Size: 18606 MD5sum: 4d1aca16b603178c943e98eb80b65031 SHA1: bf555af275a5a6ac40c1169f67fb0a144440a5ac SHA256: b50b5b094596aaa3d2642a86844fc5829aefc91b87b0e224a1572faef5b4b92c Description: header files and docs for libnfsidmap Homepage: http://www.citi.umich.edu/projects/nfsv4/linux/ Description-md5: 4e6232ff1c9d5b12cd64b5e1989826e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnfsidmap2 Priority: optional Section: libs Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libnfsidmap Version: 0.25-5 Replaces: nfs-common (<< 1:1.2.2-1) Depends: libc6 (>= 2.14), libldap-2.4-2 (>= 2.4.7) Pre-Depends: multiarch-support Conflicts: libnfsidmap1 Breaks: nfs-common (<< 1:1.2.2-1) Filename: pool/main/libn/libnfsidmap/libnfsidmap2_0.25-5_amd64.deb Size: 32182 MD5sum: 5e06543f26481fa549a1e017eec4ef36 SHA1: f28b7370542daaf81cefb44d9057fa9b3fb43064 SHA256: ed00ae6b3efc4c28068e5f984d8c69942c68502593da945b89b0045e7fcef396 Description: NFS idmapping library Multi-Arch: same Homepage: http://www.citi.umich.edu/projects/nfsv4/linux/ Description-md5: 856ba2c52c6a37e20e52ec3ea4b76269 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnice-dbg Priority: extra Section: debug Installed-Size: 704 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: libnice Version: 0.1.4-1 Depends: libnice10 (= 0.1.4-1) Filename: pool/main/libn/libnice/libnice-dbg_0.1.4-1_amd64.deb Size: 237130 MD5sum: 86798fbcf409994506c59dc1230c7c34 SHA1: 1462b0e32dbe17af5c47ef228b2ad9bbc4bed3ee SHA256: e4add818c7e5d4e886607e2497b617c0fbeadbc9f8a23948f0013363c76371ed Description: ICE library (debugging symbols) Multi-Arch: same Homepage: http://nice.freedesktop.org/ Description-md5: 5f2b1767549c91633ab6c7086743b271 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnice-dev Priority: optional Section: libdevel Installed-Size: 611 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: libnice Version: 0.1.4-1 Depends: libnice10 (= 0.1.4-1), libglib2.0-dev (>= 2.10) Filename: pool/main/libn/libnice/libnice-dev_0.1.4-1_amd64.deb Size: 162490 MD5sum: 25a9b63af3b177f8e3e6aa8bdfaccd56 SHA1: cdf5873a2bd8177b12d1e4b43583effe09cf1084 SHA256: cf5ebc6113a120a0feef1f9e1e4179e59b0379cd7a74269619262767e616cb03 Description: ICE library (development files) Homepage: http://nice.freedesktop.org/ Description-md5: f6f55296bfc2891942fa1c06d3772058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnice-doc Priority: optional Section: doc Installed-Size: 758 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: libnice Version: 0.1.4-1 Filename: pool/main/libn/libnice/libnice-doc_0.1.4-1_all.deb Size: 90970 MD5sum: 7712fa4f9b53afc9229ed634995ede6e SHA1: e261919a77d2a66351f8f181a005bd8c3d67e015 SHA256: 6ace8c2f8fcb88746eeefcc1d9288e8cfaf2ea6123e0bc74eea63a51292c7b2c Description: ICE library (documentation) Homepage: http://nice.freedesktop.org/ Description-md5: 106ee7b86a0699c970a20a22b5e58c75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnice10 Priority: optional Section: libs Installed-Size: 258 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: libnice Version: 0.1.4-1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.31.8), libgupnp-igd-1.0-4 (>= 0.2.1) Pre-Depends: multiarch-support Filename: pool/main/libn/libnice/libnice10_0.1.4-1_amd64.deb Size: 106754 MD5sum: 837692a8664751050d3ea05983c960cb SHA1: c55a940c1e0dbfe2613f6cec8e556bf9498f2653 SHA256: 33f98cc0ec489f2a703a9e17755e101e4df4185d75dc7accbd99e356f82a4aea Description: ICE library (shared library) Multi-Arch: same Homepage: http://nice.freedesktop.org/ Description-md5: 607bd90945ab95ad3b967004acbc27c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libnih-dbus-dev Priority: optional Section: libdevel Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Scott James Remnant Architecture: amd64 Source: libnih Version: 1.0.3-4ubuntu25 Depends: libdbus-1-dev, libnih-dbus1 (= 1.0.3-4ubuntu25), libnih-dev (= 1.0.3-4ubuntu25), libnih1 Recommends: nih-dbus-tool (= 1.0.3-4ubuntu25) Filename: pool/main/libn/libnih/libnih-dbus-dev_1.0.3-4ubuntu25_amd64.deb Size: 22278 MD5sum: ceced5a9b91abfb86da540cd141e29f2 SHA1: 439cf43d7b5bb00018061fe0c89e7c2dd30fba3b SHA256: 63e4199b14f58385569e20eeb159f6ae2df5695cde62555542a44a0d2cb932c6 Description: NIH D-Bus Bindings Library (development files) Multi-Arch: same Homepage: https://launchpad.net/libnih Description-md5: 24ea4dd029abfc14e5481bb99369ee59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnih-dbus1 Priority: required Section: libs Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Scott James Remnant Architecture: amd64 Source: libnih Version: 1.0.3-4ubuntu25 Depends: libnih1 (= 1.0.3-4ubuntu25), libc6 (>= 2.3.4), libdbus-1-3 (>= 1.2.16) Pre-Depends: multiarch-support Filename: pool/main/libn/libnih/libnih-dbus1_1.0.3-4ubuntu25_amd64.deb Size: 14168 MD5sum: 1147d380967a4e12601ffc4d5fbc4016 SHA1: 2ac6a3cbb87ddc7aabbb939a3e3471a593662f0d SHA256: f0c0f21c111ebc4f9e79a2d1041d5ab2edc1e95d76c3251d5871ddb8d9cdc268 Description: NIH D-Bus Bindings Library Multi-Arch: same Homepage: https://launchpad.net/libnih Description-md5: f01452c73291e3ad9d2f133824043b65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libnih-dev Priority: optional Section: libdevel Installed-Size: 422 Maintainer: Ubuntu Developers Original-Maintainer: Scott James Remnant Architecture: amd64 Source: libnih Version: 1.0.3-4ubuntu25 Depends: libnih1 (= 1.0.3-4ubuntu25) Filename: pool/main/libn/libnih/libnih-dev_1.0.3-4ubuntu25_amd64.deb Size: 74012 MD5sum: f6ec102bd324f640ad1042a6dfa75d87 SHA1: 132603869cdf66683999d85a2624c205f6c0ff72 SHA256: b9e7a4c9665b5626238c7e4956f97bb02d83e152a5f836cc24772d39581db0b8 Description: NIH Utility Library (development files) Multi-Arch: same Homepage: https://launchpad.net/libnih Description-md5: 08c753953f8e5008d6ecdc93ef47aa72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnih1 Priority: required Section: libs Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: Scott James Remnant Architecture: amd64 Source: libnih Version: 1.0.3-4ubuntu25 Pre-Depends: multiarch-support, libc6 (>= 2.15~) Filename: pool/main/libn/libnih/libnih1_1.0.3-4ubuntu25_amd64.deb Size: 47860 MD5sum: 256b0a5560e67a8f878a6fd522c820e1 SHA1: b46446214729f087e79ac024b7bb31d414738f88 SHA256: d55b55029d4af7ffb4ef5c6d7fc4de580f7431f2968d9753ede419bd8f19e00c Description: NIH Utility Library Multi-Arch: same Homepage: https://launchpad.net/libnih Description-md5: 92500fc26ab644cbeb0d43f75dce8ac8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libnl-3-200 Priority: optional Section: libs Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: amd64 Source: libnl3 Version: 3.2.21-1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libn/libnl3/libnl-3-200_3.2.21-1_amd64.deb Size: 44452 MD5sum: 7b2b06eee541993e9507046e0cd0a8c3 SHA1: e363f6cbb7c3048baac0d992fddd7f542426eaa2 SHA256: ab1325fbb91c8797ef911a63f8b8503af7fb50c57c4ecc1820d47f333ecbad3a Description: library for dealing with netlink sockets Multi-Arch: same Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: de8043b32007ad94dc3b94b81389b53d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnl-3-200-dbg Priority: extra Section: debug Installed-Size: 1005 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: amd64 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-200 (= 3.2.21-1) Filename: pool/main/libn/libnl3/libnl-3-200-dbg_3.2.21-1_amd64.deb Size: 631720 MD5sum: 90c194f8c34389a810eeda3f93041f59 SHA1: 685c9bb46337363154f2ee3eca095d5bb06953e9 SHA256: 38b6e5a2bab9d10a849c887b46aa9274df6c1c7213b6675838f871e4b32e1667 Description: debug symbols for libnl3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: 72d1913cdbd3c1c3101202f7577d2655 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-3-dev Priority: optional Section: libdevel Installed-Size: 446 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: amd64 Source: libnl3 Version: 3.2.21-1 Replaces: libnl3-dev Depends: libnl-3-200 (= 3.2.21-1) Conflicts: libnl-dev, libnl2-dev Breaks: libnl3-dev Filename: pool/main/libn/libnl3/libnl-3-dev_3.2.21-1_amd64.deb Size: 68554 MD5sum: 09d5eadee43717022b1e350ca3f29f64 SHA1: 816a3b0c8724976c702ddf12c7abfb067aec33a7 SHA256: c5d9731a1997288ea62cae0e3965124e0ec8d7ad60b733fd0d231f914258993e Description: development library and headers for libnl-3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: 4f94e78ffa87939739aaeb004f6f7900 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-cli-3-200 Priority: optional Section: libs Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: amd64 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-200 (= 3.2.21-1), libnl-genl-3-200 (= 3.2.21-1), libnl-nf-3-200 (= 3.2.21-1), libnl-route-3-200 (= 3.2.21-1), libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libn/libnl3/libnl-cli-3-200_3.2.21-1_amd64.deb Size: 20332 MD5sum: f88979b6e602c709970d919a3d16d332 SHA1: bb52b4d8713906fea557542b614d16f25d1aa040 SHA256: 40c439fa55acb48fb4384dd855e32d619124a97e848c59e7c51ef5a73d39470e Description: library for dealing with netlink sockets - cli helpers Multi-Arch: same Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: e48eb936cdcfd31a78c5e570e122e46e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-cli-3-dev Priority: optional Section: libdevel Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: amd64 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-dev (= 3.2.21-1), libnl-genl-3-dev (= 3.2.21-1), libnl-nf-3-dev (= 3.2.21-1), libnl-route-3-dev (= 3.2.21-1), libnl-cli-3-200 (= 3.2.21-1) Filename: pool/main/libn/libnl3/libnl-cli-3-dev_3.2.21-1_amd64.deb Size: 11922 MD5sum: 0e09642cea05c0b41e6137761423a02e SHA1: acac356ca6b88073f77b0cc53dacdaff933a3624 SHA256: 40cf36c286fb5b3b73c3b181ace7c09781c0d86e89d335e472c2e627c23a1364 Description: development library and headers for libnl-cli-3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: d0d6775d882d291771483625fac506d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-genl-3-200 Priority: optional Section: libs Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: amd64 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-200 (= 3.2.21-1), libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libn/libnl3/libnl-genl-3-200_3.2.21-1_amd64.deb Size: 10204 MD5sum: ce91efe3ddf19b68e0ce796d87c4d96d SHA1: 5dc539966960821d79d93c2bce7dfcfa86eaf8f8 SHA256: c17188dc2ea5c16b7316d1d99dfd81f2c738687cd95a5a4b1b34eb629a7e0f83 Description: library for dealing with netlink sockets - generic netlink Multi-Arch: same Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: ff95f226ef9d6cbaad5efbee578c439f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnl-genl-3-dev Priority: optional Section: libdevel Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: amd64 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-dev (= 3.2.21-1), libnl-genl-3-200 (= 3.2.21-1) Filename: pool/main/libn/libnl3/libnl-genl-3-dev_3.2.21-1_amd64.deb Size: 9440 MD5sum: 181150ee39ffe4e9a03ead195fdc5cb0 SHA1: 46e9b7981dcbfcab65bbf23948e573fe31b3ddf0 SHA256: cc53242c128d98ddb2af1ce811338519c393c9bcab2163277c139f5dc17797b8 Description: development library and headers for libnl-genl-3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: 5e4cdba9a1839cea7d07684012851968 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-nf-3-200 Priority: optional Section: libs Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: amd64 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-200 (= 3.2.21-1), libnl-route-3-200 (= 3.2.21-1), libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libn/libnl3/libnl-nf-3-200_3.2.21-1_amd64.deb Size: 27420 MD5sum: f2be63915e0927f6ed5c4ca1744b61a8 SHA1: 437a5d9117123506ffbe70e2c9f98f57f717d98c SHA256: f77de8c3f2631d96f0534ff2611854c1f3c439ffbf3f8e16f20bfc2430e22f6e Description: library for dealing with netlink sockets - netfilter interface Multi-Arch: same Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: bfbd30c6345caeecccdde40477bee940 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-nf-3-dev Priority: optional Section: libdevel Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: amd64 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-dev (= 3.2.21-1), libnl-route-3-dev (= 3.2.21-1), libnl-nf-3-200 (= 3.2.21-1) Filename: pool/main/libn/libnl3/libnl-nf-3-dev_3.2.21-1_amd64.deb Size: 26054 MD5sum: 8c72e9882255a543fb1f6f04eacb2f60 SHA1: 96b243b52a995d56348cb2449d52aa585346747a SHA256: 44fcf1cadb64327b8af6b810fe149e3af57ea17d8b2973580b7bb4cde3f9b7e1 Description: development library and headers for libnl-nf-3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: a7e09636b6e529c3aee67ded0cfed8e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-route-3-200 Priority: optional Section: libs Installed-Size: 356 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: amd64 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-200 (= 3.2.21-1), libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libn/libnl3/libnl-route-3-200_3.2.21-1_amd64.deb Size: 95832 MD5sum: 61e174d65c7adbe5bc33d4ea850725f8 SHA1: 964d03fad0822ee7587f5b60ee883ff671de8d74 SHA256: b3cb9435669b531f62ab8843679d1c27a77abcad205b4d51a0cd8c953ef28d23 Description: library for dealing with netlink sockets - route interface Multi-Arch: same Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: 00e1d8b59623c24502ade39580e576f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnl-route-3-dev Priority: optional Section: libdevel Installed-Size: 616 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: amd64 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-dev (= 3.2.21-1), libnl-route-3-200 (= 3.2.21-1) Filename: pool/main/libn/libnl3/libnl-route-3-dev_3.2.21-1_amd64.deb Size: 102610 MD5sum: 8df5e2435f784b6cc07343eb5528ea55 SHA1: 96267a1c872763eff6511b974bae813015287567 SHA256: 693fdbd936ee27c4d66d6d4998ed1630bb7138734744fa01397014d73608fb13 Description: development library and headers for libnl-route-3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: 835852ab9ac4e7de6211826dd1b374b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnm-glib-dev Priority: optional Section: net Installed-Size: 1838 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libnm-glib4 (= 0.9.8.8-0ubuntu7), gir1.2-networkmanager-1.0 (= 0.9.8.8-0ubuntu7), libnm-util-dev, network-manager-dev, libglib2.0-dev, libdbus-glib-1-dev Filename: pool/main/n/network-manager/libnm-glib-dev_0.9.8.8-0ubuntu7_amd64.deb Size: 160764 MD5sum: 44c236d3229d8af5468f2de0dbb871a5 SHA1: fde7c6f525dcfd913ac241fac216a200bb59851c SHA256: b810345e290aeb7182aa63cb6dc0797690fefa605535692c0251571deb9e6d16 Description: network management framework (GLib interface) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 56d0a34d148547835775f648c283d58f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnm-glib-vpn-dev Priority: optional Section: libdevel Installed-Size: 130 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libnm-glib-vpn1 (= 0.9.8.8-0ubuntu7), libnm-glib-dev Filename: pool/main/n/network-manager/libnm-glib-vpn-dev_0.9.8.8-0ubuntu7_amd64.deb Size: 5870 MD5sum: e8cb3b27c469ab8d341e2b18ab9a95db SHA1: 43137176c4357de22ffe3bb23d9fb7373183907e SHA256: ca10d90987258a6ab5cc25fe4e93bcb399aa21d0e702ea5dd3e5e2467012966c Description: network management framework (GLib interface) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: c78ac261b5f6cfbb4c74b78a708c90bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnm-glib-vpn1 Priority: optional Section: libs Installed-Size: 139 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libc6 (>= 2.2.5), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.22), libnm-util2 (>= 0.7.0) Filename: pool/main/n/network-manager/libnm-glib-vpn1_0.9.8.8-0ubuntu7_amd64.deb Size: 13126 MD5sum: 6f3820655a989f5a6d6826b216ef771c SHA1: 6bf9d5f5b20d691e12118186db9ddd2437c6a663 SHA256: 0bc1589d404842a1f1e3cb8d4915167fa2bd59ad99940c987949a6829f96815b Description: network management framework (GLib VPN shared library) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: a8d1fc7f276929433320d96cddd81b4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnm-glib4 Priority: optional Section: libs Installed-Size: 352 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.31.22), libgudev-1.0-0 (>= 146), libnm-util2 (>= 0.9.6.0+git201212071413.8a9759a) Filename: pool/main/n/network-manager/libnm-glib4_0.9.8.8-0ubuntu7_amd64.deb Size: 72376 MD5sum: f18e405cb895907c6048d4aba24d41af SHA1: 21e449ca7c119367680a94b161ed65c60973a6f4 SHA256: 820ecdf10ddbd4b4f707b5fe09f97559de0614ba25efb240077a0eadd4cec32f Description: network management framework (GLib shared library) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 217fbdca65cb15a2066a01b11aa4ed86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnm-gtk-common Priority: optional Section: gnome Installed-Size: 70 Maintainer: Ubuntu Core Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: network-manager-applet Version: 0.9.8.8-0ubuntu4 Filename: pool/main/n/network-manager-applet/libnm-gtk-common_0.9.8.8-0ubuntu4_all.deb Size: 5512 MD5sum: 28af5b0af5d7bee1fc7962e6dd178048 SHA1: 227887aabc07e5aa21870d3adbca44b762aec9c2 SHA256: 0972f741e58ea38838ad0a9733671a539b86d7d788dcff4145f8fc2f2afad6f7 Description: network management framework (common files for wifi and mobile) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: f5a1fa548a58dbb1709b64657de21f16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnm-gtk-dev Priority: optional Section: libdevel Installed-Size: 132 Maintainer: Ubuntu Core Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager-applet Version: 0.9.8.8-0ubuntu4 Depends: libnm-gtk0 (= 0.9.8.8-0ubuntu4), gir1.2-nmgtk-1.0 (= 0.9.8.8-0ubuntu4), network-manager-dev (>= 0.9), libnm-util-dev (>= 0.9), libnm-glib-dev (>= 0.9), libgtk-3-dev, libdbus-glib-1-dev Filename: pool/main/n/network-manager-applet/libnm-gtk-dev_0.9.8.8-0ubuntu4_amd64.deb Size: 8596 MD5sum: 9e81740112049b51f179b2d9e02d1994 SHA1: 47be32cb9140a0e826439e77d059e0f2e1a2afcf SHA256: 4b168b083e7daa2331d75ed6ec2f195d31503ad551ec34220e86e31bb24fd3fc Description: network management framework (dialogs development libraries) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 88955533a0cb56b5f9da136d252557f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnm-gtk0 Priority: optional Section: libs Installed-Size: 240 Maintainer: Ubuntu Core Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager-applet Version: 0.9.8.8-0ubuntu4 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libgudev-1.0-0 (>= 146), libnm-glib4 (>= 0.8.9997), libnm-util2 (>= 0.9.6.0~git201207161259.00297f4), libnm-gtk-common (= 0.9.8.8-0ubuntu4) Filename: pool/main/n/network-manager-applet/libnm-gtk0_0.9.8.8-0ubuntu4_amd64.deb Size: 60858 MD5sum: 21d3fde3a1e790739fc604e1f02cccc6 SHA1: 136715ef3c86a3da5b8289f0e200c7309e4be3d5 SHA256: c985bb4901402a1f4d65e6e450c6532decd255e3c3ba0d052dd4968007dd08c7 Description: network management framework (GNOME dialogs for wifi and mobile) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 9325f3ebd5f03d6e8ef59a98603e6a11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnm-util-dev Priority: optional Section: net Installed-Size: 3019 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libnm-util2 (= 0.9.8.8-0ubuntu7), gir1.2-networkmanager-1.0 (= 0.9.8.8-0ubuntu7), libglib2.0-dev, libdbus-glib-1-dev Filename: pool/main/n/network-manager/libnm-util-dev_0.9.8.8-0ubuntu7_amd64.deb Size: 172328 MD5sum: 0cfc92684d331634ac80d713a69e899d SHA1: f8859d89b5315ff521512179ebf569884a6b303d SHA256: 5c747ab7a7f7d8e3e8d04ed6ad3d038c807f3d12292bcd08e8e4e0f6becf666a Description: network management framework (development files) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 386633658ef6f2e5bd09c1075e48d085 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnm-util2 Priority: optional Section: libs Installed-Size: 511 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libc6 (>= 2.14), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.33.14), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libuuid1 (>= 2.16) Filename: pool/main/n/network-manager/libnm-util2_0.9.8.8-0ubuntu7_amd64.deb Size: 113542 MD5sum: 43ce5c80cb98c7ec1f84412f7606ae52 SHA1: 191a309e44dc9699dad23ac2550dbfdd583b90eb SHA256: 1af8108449f77f885402240a0c0bf6e51589f8506b062f05429ee19ef8c180e3 Description: network management framework (shared library) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 9206e0c0315bf3dee48dfe5ab4d4bd13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnotify-bin Priority: optional Section: utils Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libnotify Version: 0.7.6-1ubuntu3 Depends: libc6 (>= 2.3.4), libglib2.0-0 (>= 2.26), libnotify4 (>= 0.7.3) Filename: pool/main/libn/libnotify/libnotify-bin_0.7.6-1ubuntu3_amd64.deb Size: 6444 MD5sum: d75835f722fa55c9b5bd066a574e23a3 SHA1: d90b1c2dbe2a9096a7e9a16637e1b7ad5a37e9a5 SHA256: 93e9c3d757fe7182257bf4778c6e46da8bec0d073ece49ae7d8fbe46386c4f88 Description: sends desktop notifications to a notification daemon (Utilities) Description-md5: 78f71daa6123cb4aefd91bc017bb5d0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnotify-dev Priority: optional Section: libdevel Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libnotify Version: 0.7.6-1ubuntu3 Depends: libnotify4 (= 0.7.6-1ubuntu3), gir1.2-notify-0.7 (= 0.7.6-1ubuntu3), libglib2.0-dev (>= 2.26), libgdk-pixbuf2.0-dev Filename: pool/main/libn/libnotify/libnotify-dev_0.7.6-1ubuntu3_amd64.deb Size: 16598 MD5sum: d85d989c20bca6d595581b09e032bc49 SHA1: 2074551f138101d3a63b60a6c2a445a8bcc31bbd SHA256: 7cfdf65f428acc24a41eba7d94ee0f7ae3f4a5dc03780465c97a28d4efc96b88 Description: sends desktop notifications to a notification daemon (Development files) Description-md5: 9fed5d3edf50824cfc6d54e102ff155f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnotify-doc Priority: optional Section: utils Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libnotify Version: 0.7.6-1ubuntu3 Suggests: devhelp Filename: pool/main/libn/libnotify/libnotify-doc_0.7.6-1ubuntu3_all.deb Size: 19482 MD5sum: bffc2cf7e79eea12750802cfb67c4702 SHA1: 21926c2d8061ee5cbc65c8fca85e8b52dcdc4990 SHA256: 8c522ec95151756b4d9d2d2e4c34e228c95b3b33a3862769a2c8de1f85985852 Description: sends desktop notifications to a notification daemon (Documentation) Description-md5: 1ee3ad28079ed1fe5e17b0a918b7fe05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnotify4 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libnotify Version: 0.7.6-1ubuntu3 Depends: libc6 (>= 2.7), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Recommends: notification-daemon Filename: pool/main/libn/libnotify/libnotify4_0.7.6-1ubuntu3_amd64.deb Size: 16700 MD5sum: 42bfeb95e11ee99036ecc79a897c7e33 SHA1: f3a237935e55637415b7cea7206a19490b67dd7a SHA256: c663fc5c7d35e8ff8a08b9ad57f7c121262e22424f8b87da494ce55a9fcd8e9a Description: sends desktop notifications to a notification daemon Multi-Arch: same Description-md5: 2bdd88c4ab7ca8b05f288531dbf75e24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnspr4 Priority: optional Section: libs Installed-Size: 347 Maintainer: Ubuntu Mozilla Team Original-Maintainer: Maintainers of Mozilla-related packages Architecture: amd64 Source: nspr Version: 2:4.10.2-1ubuntu1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Conflicts: evolution-documentation-cs, evolution-documentation-de, evolution-documentation-el, evolution-documentation-en, evolution-documentation-es, evolution-documentation-fr, evolution-documentation-mk, evolution-documentation-oc, evolution-documentation-ru, evolution-documentation-sv, language-support-translations-cs, language-support-translations-de, language-support-translations-el, language-support-translations-en, language-support-translations-es, language-support-translations-fr, language-support-translations-mk, language-support-translations-oc, language-support-translations-ru, language-support-translations-sv, libnspr4-0d (<< 2:4.9-2~) Breaks: evolution-plugins (<< 3.2.0-0ubuntu2) Filename: pool/main/n/nspr/libnspr4_4.10.2-1ubuntu1_amd64.deb Size: 109592 MD5sum: c1e77bb302498a885eefa8d3d13f9e41 SHA1: da5e37226ee79d399a25313ef06beb6423da4590 SHA256: b675ec2ab7031151a81616503580df2bd66c424f6fc3046f0e8542663e0ff6c4 Description: NetScape Portable Runtime Library Multi-Arch: same Homepage: http://www.mozilla.org/projects/nspr/ Description-md5: 3e33845d0ce10a75ffbe5d271b638f2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnspr4-dbg Priority: extra Section: debug Installed-Size: 928 Maintainer: Ubuntu Mozilla Team Original-Maintainer: Maintainers of Mozilla-related packages Architecture: amd64 Source: nspr Version: 2:4.10.2-1ubuntu1 Provides: libnspr4-0d-dbg Depends: libnspr4 (= 2:4.10.2-1ubuntu1) Filename: pool/main/n/nspr/libnspr4-dbg_4.10.2-1ubuntu1_amd64.deb Size: 236722 MD5sum: fdaf733095dc7ee4dded78b6a9595087 SHA1: 0777868043926cefc198537b62b3b144d1c8ab26 SHA256: 4efe29b1b997c1e31a93853256bf889fe2d7dff8915e1c0995bf68acaaad5809 Description: Debugging symbols for the NetScape Portable Runtime library Multi-Arch: same Homepage: http://www.mozilla.org/projects/nspr/ Description-md5: f3cce748eb88ceeb1d878f7c8168ac85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnspr4-dev Priority: optional Section: libdevel Installed-Size: 1191 Maintainer: Ubuntu Mozilla Team Original-Maintainer: Maintainers of Mozilla-related packages Architecture: amd64 Source: nspr Version: 2:4.10.2-1ubuntu1 Depends: libnspr4 (>= 2:4.10.2), libnspr4 (<= 2:4.10.2-1ubuntu1.1~) Filename: pool/main/n/nspr/libnspr4-dev_4.10.2-1ubuntu1_amd64.deb Size: 209120 MD5sum: 7e58745488da1378b3dd2278427f9773 SHA1: 832f732e395a8db4ec4ce7312306f35382e45e01 SHA256: 14ec109e5ffdd47e0fa2e3bce31ea5fd71a0514df2728ab1f3df6867b3258bab Description: Development files for the NetScape Portable Runtime library Homepage: http://www.mozilla.org/projects/nspr/ Description-md5: 5fb64e5ffcd6242fc78f56e991c9d6df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnss-db Priority: optional Section: admin Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Version: 2.2.3pre1-5build3 Depends: make, libc6 (>> 2.19), libc6 (<< 2.20), libdb5.3, libselinux1 (>= 1.32) Filename: pool/main/libn/libnss-db/libnss-db_2.2.3pre1-5build3_amd64.deb Size: 19854 MD5sum: 8c70dbc70af4354a0c67a26aeb5a3525 SHA1: 186de2f48186076fd167cb17d729586b892ad91e SHA256: 054e9ce9aa5bd2b508b859aa5d7ecb0db6e740ecedce32a0430586cf3da48ed2 Description: NSS module for using Berkeley Databases as a naming service Homepage: http://www.gnu.org/software/libc/ Description-md5: 86085c093ffb06245b4f694a84b2427a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnss-ldap Priority: extra Section: net Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Richard A Nelson (Rick) Architecture: amd64 Version: 264-2.2ubuntu4 Depends: libc6 (>= 2.14), libgssapi-krb5-2 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7) Pre-Depends: multiarch-support Recommends: libpam-ldap, ldap-auth-config Suggests: nscd Filename: pool/main/libn/libnss-ldap/libnss-ldap_264-2.2ubuntu4_amd64.deb Size: 64718 MD5sum: 47808e2ec0155ac33fda3ca5307d1f01 SHA1: bd62f0ef01a02f010c2c834a09ce5303998ccd4b SHA256: 2833d5dd474150f99bae6d2a7326c310d4eddd1857a71202c59edd987664e914 Description: NSS module for using LDAP as a naming service Multi-Arch: same Description-md5: 56ed54cdb5c4e9e7589f38a95f594518 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnss-mdns Priority: optional Section: admin Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: nss-mdns Version: 0.10-6 Replaces: lib32nss-mdns (<< 0.10-6) Depends: libc6 (>= 2.14), base-files (>= 3.1.10), avahi-daemon (>= 0.6.16-1) Pre-Depends: multiarch-support Suggests: avahi-autoipd | zeroconf Breaks: lib32nss-mdns (<< 0.10-6) Filename: pool/main/n/nss-mdns/libnss-mdns_0.10-6_amd64.deb Size: 21442 MD5sum: ad11f2a2c33d32cdacfc1133461429d8 SHA1: 66686835dae0ecefdfb5db8718c998159e8c65fc SHA256: 82ca83f714603a2e0653ed5d39d8d2e0b8cb05abccb0f5540fc1c49a77dfda80 Description: NSS module for Multicast DNS name resolution Multi-Arch: same Description-md5: 444ce9bf0bb23eb51ed79b00c0d6d796 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnss-sss Priority: extra Section: utils Installed-Size: 92 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Recommends: sssd Filename: pool/main/s/sssd/libnss-sss_1.11.5-1ubuntu3_amd64.deb Size: 17900 MD5sum: 45114c1daa82e6801410bdfe123c90be SHA1: fdefcca464c893c77580c6ec06885efb8a594dcc SHA256: 7688cb9795fbb4c2578a42abbd1d0e34c8093233f59715db83044fec025d54d7 Description: Nss library for the System Security Services Daemon Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 74bc44873ed990a3f08b6c810bd12c1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnss3 Priority: optional Section: libs Installed-Size: 3596 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: amd64 Source: nss Version: 2:3.15.4-1ubuntu7 Depends: libc6 (>= 2.14), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 4.8.6), libsqlite3-0 (>= 3.5.9), zlib1g (>= 1:1.1.4), libnss3-nssdb Pre-Depends: multiarch-support Conflicts: libnss3-1d (<< 2:3.13.4-2) Filename: pool/main/n/nss/libnss3_3.15.4-1ubuntu7_amd64.deb Size: 1080574 MD5sum: 27aa0c0652bfe05d16d12c20101b2302 SHA1: 05859eed54752e8b57a5dc5ca5df23b89c39ba86 SHA256: d91bfdacdbfd3dafe65c2047d59ee87302ddec36ade6dc2a2ea0186b77ea6b0b Description: Network Security Service libraries Multi-Arch: same Homepage: http://www.mozilla.org/projects/security/pki/nss/ Description-md5: 8cae15b3c3c4e609abb7935ebf0d0f66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnss3-1d Priority: optional Section: libs Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: amd64 Source: nss Version: 2:3.15.4-1ubuntu7 Depends: libnss3 (= 2:3.15.4-1ubuntu7) Filename: pool/main/n/nss/libnss3-1d_3.15.4-1ubuntu7_amd64.deb Size: 9298 MD5sum: f0ab12ebdaad110ac9b4ff57693c11c7 SHA1: acc0fdd122296cc98278347635d09d9db29683d5 SHA256: 21f290245f08ff82205aa32337131835cce6565f378fc907fbdef7ab4a2a4451 Description: Network Security Service libraries - transitional package Multi-Arch: same Homepage: http://www.mozilla.org/projects/security/pki/nss/ Description-md5: 063a04be3daa0aee83eb91fb2acc878e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-live, edubuntu-usb, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libnss3-dbg Priority: extra Section: debug Installed-Size: 9751 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: amd64 Source: nss Version: 2:3.15.4-1ubuntu7 Provides: libnss3-1d-dbg Depends: libnss3 (= 2:3.15.4-1ubuntu7) | libnss3-tools (= 2:3.15.4-1ubuntu7) Conflicts: libnss3 (>> 2:3.15.4-1ubuntu7), libnss3 (<< 2:3.15.4-1ubuntu7), libnss3-tools (>> 2:3.15.4-1ubuntu7), libnss3-tools (<< 2:3.15.4-1ubuntu7) Filename: pool/main/n/nss/libnss3-dbg_3.15.4-1ubuntu7_amd64.deb Size: 8121956 MD5sum: e5143edaca1691663f9644805c0d6ffe SHA1: af503c966f614d760181da1a7d134afac8fb1e28 SHA256: c12de9f576ba7cf3476a360ff98ea573b4c1dd6d43ad4b7050181619ddd4c764 Description: Debugging symbols for the Network Security Service libraries Multi-Arch: same Homepage: http://www.mozilla.org/projects/security/pki/nss/ Description-md5: 2a6641a78d510ea21132933409ef387f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnss3-dev Priority: optional Section: libdevel Installed-Size: 1198 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: amd64 Source: nss Version: 2:3.15.4-1ubuntu7 Depends: libnss3 (= 2:3.15.4-1ubuntu7), libnspr4-dev (>= 4.6.6-1) Filename: pool/main/n/nss/libnss3-dev_3.15.4-1ubuntu7_amd64.deb Size: 210180 MD5sum: 48c8fe2fafdce32602b08dd6b1125bd9 SHA1: d16b2c5952aa2f6417e3908310ee8d536ce2f46c SHA256: 779f29018c1ace0130d6ecf9afaddcbff834e8cfc444bcb5b17ce592d0633b3b Description: Development files for the Network Security Service libraries Multi-Arch: same Homepage: http://www.mozilla.org/projects/security/pki/nss/ Description-md5: 04c0a8f989d299406710231d2a99043d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnss3-nssdb Priority: optional Section: admin Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: all Source: nss Version: 2:3.15.4-1ubuntu7 Depends: libnss3 (= 2:3.15.4-1ubuntu7) Filename: pool/main/n/nss/libnss3-nssdb_3.15.4-1ubuntu7_all.deb Size: 10576 MD5sum: 4347ea119adc15165237ccbaa7463160 SHA1: bd19103d647b00c88bf0202f405df2a77c54d5a4 SHA256: 1f2b619e59cc0f88f7c0427a5e54713539553dfe37590e895021961d7df7acc2 Description: Network Security Security libraries - shared databases Multi-Arch: foreign Homepage: http://www.mozilla.org/projects/security/pki/nss/ Description-md5: 609709585136b6a2edddf2dfd3382bfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnss3-tools Priority: optional Section: admin Installed-Size: 3802 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: amd64 Source: nss Version: 2:3.15.4-1ubuntu7 Depends: libc6 (>= 2.14), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 4.7.0~1.9b1), libnss3 (>= 2:3.15.4), zlib1g (>= 1:1.1.4) Filename: pool/main/n/nss/libnss3-tools_3.15.4-1ubuntu7_amd64.deb Size: 744216 MD5sum: 6e4155e3b104eadb41012849d69794d7 SHA1: 5ef27a97a92e91920a4b2d32caae58a25c9aa565 SHA256: 7b53d81a95b66620ffdd1c8af476ce362287ca98afc7e2b3d84e8d582ef61fbf Description: Network Security Service tools Homepage: http://www.mozilla.org/projects/security/pki/nss/tools/ Description-md5: 33cc2c7795e9ef6579f85eabb1dbee18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libntdb-dev Priority: optional Section: libdevel Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: ntdb Version: 1.0-2ubuntu1 Depends: libc6-dev, libntdb1 (= 1.0-2ubuntu1) Suggests: libtalloc-dev Filename: pool/main/n/ntdb/libntdb-dev_1.0-2ubuntu1_amd64.deb Size: 158066 MD5sum: 55935c77ee2108961a62067d3bcad81e SHA1: a4411eb43c5928a18ec189687b281612255a7cb4 SHA256: 51e1e3be6c95b77627fd6a430d269cd91993c5ddd5fd4b26428cadd746434202 Description: New Trivial Database - development files Homepage: http://tdb.samba.org/ Description-md5: 776825cf4bee91643442cfc390b10971 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libntdb1 Priority: optional Section: libs Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: ntdb Version: 1.0-2ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/n/ntdb/libntdb1_1.0-2ubuntu1_amd64.deb Size: 38696 MD5sum: 1a4cdd1d9efc6fc07bab4234d3dfee5a SHA1: 55a34f3bbbc2b2dbe1d8589a9c41e9d9beefd259 SHA256: 6786aa55e933007fc79d935147fac6e0e9c8eddf8ccd52bf38355469ed7fec0a Description: New Trivial Database - shared library Multi-Arch: same Homepage: http://tdb.samba.org/ Description-md5: cfab295ffcc361dbad6c599dc433ab65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libntdb1-dbg Priority: extra Section: debug Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: ntdb Version: 1.0-2ubuntu1 Depends: libntdb1 (= 1.0-2ubuntu1) Recommends: libc6-dbg Filename: pool/main/n/ntdb/libntdb1-dbg_1.0-2ubuntu1_amd64.deb Size: 112194 MD5sum: a82f73a356a1ba2321383b2843627e48 SHA1: a059b00f831ab6c85d0a9606faef7c2c2b363f9d SHA256: e5d7716b83529b864ab7e2dff7e161303b770387fa4439e8499160e33a346551 Description: New Trivial Database - debug symbols Homepage: http://tdb.samba.org/ Description-md5: 6ffff3c22a0e2ed95d9a6a3d70d87aa4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnuma-dbg Priority: extra Section: libdevel Installed-Size: 200 Maintainer: Ubuntu Developers Original-Maintainer: Ian Wienand Architecture: amd64 Source: numactl Version: 2.0.9~rc5-1ubuntu2 Depends: libnuma1 (= 2.0.9~rc5-1ubuntu2), libc6-dev | libc-dev Filename: pool/main/n/numactl/libnuma-dbg_2.0.9~rc5-1ubuntu2_amd64.deb Size: 98930 MD5sum: 7ab0254a2ffbd9e000393d9e63650c5a SHA1: 1e2b8a5bdd08130f8ac89a99544dd47b101aeef3 SHA256: 225a0749f6278828cbef485390d42ee7da50d95ced9ec82ee552472e4b95fcb9 Description: Debug package for libnuma Multi-Arch: same Description-md5: b7a95253164c4764952d228f11e12b09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnuma-dev Priority: extra Section: libdevel Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Ian Wienand Architecture: amd64 Source: numactl Version: 2.0.9~rc5-1ubuntu2 Depends: libnuma1 (= 2.0.9~rc5-1ubuntu2), libc6-dev | libc-dev Filename: pool/main/n/numactl/libnuma-dev_2.0.9~rc5-1ubuntu2_amd64.deb Size: 31694 MD5sum: 0da82bec25ebe443e0293a6d80f78a6a SHA1: 545c0998dfe6fb38737ca30c9adf5f65f202e394 SHA256: 43f02c2eac252f0cb6ea60b169b8dc80c3b9454b37385c56d6283f16c2b87201 Description: Development files for libnuma Multi-Arch: same Description-md5: f056555bfd4514d095e0caeb41abda90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnuma1 Priority: standard Section: libs Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Ian Wienand Architecture: amd64 Source: numactl Version: 2.0.9~rc5-1ubuntu2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/n/numactl/libnuma1_2.0.9~rc5-1ubuntu2_amd64.deb Size: 20264 MD5sum: 954489fddc7cec2e4ca5285f311cf1fa SHA1: 918bf46a5a94883499c61b4dcf2f1ee371706d60 SHA256: 2e33b1185130085aa42abe2d2a78b10fe44d9ba1eea74e37957948f7bcbb9c18 Description: Libraries for controlling NUMA policy Multi-Arch: same Description-md5: 1c8f1cdf694caf8232aca544dd8b33ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: libnumber-compare-perl Priority: optional Section: perl Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.03-1 Depends: perl Filename: pool/main/libn/libnumber-compare-perl/libnumber-compare-perl_0.03-1_all.deb Size: 7318 MD5sum: 6d3432b2a41048cac5ea858d8be6dc47 SHA1: 6e48985092513297911c2f81178d06a9480510d7 SHA256: 2d6e54cee6c44e323eb3b4506643823b623de9c0343faa2bd9dd570644fe852a Description: module for performing numeric comparisons in Perl Homepage: http://search.cpan.org/dist/Number-Compare/ Description-md5: 1c3a46d132bbd84a9e833518d0342a3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnunit-cil-dev Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: nunit Version: 2.6.0.12051+dfsg-2 Replaces: libnunit-cil, libnunit2.2.6-cil, libnunit2.4-cil (<< 2.4.7+dfsg-5) Depends: libnunit2.6-cil (= 2.6.0.12051+dfsg-2) Filename: pool/main/n/nunit/libnunit-cil-dev_2.6.0.12051+dfsg-2_all.deb Size: 2074 MD5sum: e677368a27e64a22ba125b3acfd63c00 SHA1: f3622c705f2babd6449418632fc1a9da7b626ab3 SHA256: b314ac1e8cb08f34ad204b09133c605d79bf882fdd589aaf586a7277f11be65e Description: Unit test framework for CLI - Development files Homepage: http://www.nunit.org/ Description-md5: 8b713607a92635a15dbddc2daa19d485 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnunit-doc Priority: optional Section: devel Installed-Size: 2876 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: nunit Version: 2.6.0.12051+dfsg-2 Filename: pool/main/n/nunit/libnunit-doc_2.6.0.12051+dfsg-2_all.deb Size: 1743278 MD5sum: 4a3faf6b69ffe66bcd2e12d963258b2a SHA1: f3757412ce9b60ff33cccf8e6f965cb9cf9c2afe SHA256: 931eebb6159c0747d1ae4bbdac6c6a6d6997b1fd486890f440314333e9eaf367 Description: Unit test framework for CLI - Documentation Homepage: http://www.nunit.org/ Description-md5: fdf7244a91a49443b8b0613153c38fe2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnunit2.6-cil Priority: optional Section: cli-mono Installed-Size: 484 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: nunit Version: 2.6.0.12051+dfsg-2 Replaces: libnunit-cil, libnunit2.2.6-cil, libnunit2.4-cil Depends: cli-common (>= 0.5.1), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-drawing4.0-cil (>= 1.0), libmono-system-runtime4.0-cil (>= 2.10.1), libmono-system-xml4.0-cil (>= 1.0), libmono-system4.0-cil (>= 2.10.7) Suggests: libnunit-doc, monodoc-nunit-manual Filename: pool/main/n/nunit/libnunit2.6-cil_2.6.0.12051+dfsg-2_all.deb Size: 178570 MD5sum: 422cde7c33ef3c6dc7643cf5dcc9b567 SHA1: 3bdb5b1894bb1b63afddaea96df78440929388d4 SHA256: ce30b4587f19de91046337701f374081754efd9d456aef6e443036e3010dc8d7 Description: Unit test framework for CLI - Assemblies Homepage: http://www.nunit.org/ Description-md5: da947574c0ea8c042f18f34435d108d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnux-4.0-0 Priority: optional Section: libs Installed-Size: 3151 Maintainer: Didier Roche Architecture: amd64 Source: nux Version: 4.0.6+14.04.20140409-0ubuntu1 Provides: libnux-abiversion-20140307.0 Depends: libnux-4.0-common (= 4.0.6+14.04.20140409-0ubuntu1), libc6 (>= 2.14), libcairo2 (>= 1.9.14), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgeis1 (>= 2.2.10), libgl1-mesa-glx | libgl1, libglew1.10 (>= 1.10.0), libglewmx1.10 (>= 1.10.0), libglib2.0-0 (>= 2.31.8), libglu1-mesa | libglu1, libibus-1.0-5 (>= 1.5.1), libpango-1.0-0 (>= 1.20.0), libpangocairo-1.0-0 (>= 1.14.0), libpcre3, libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6), libx11-6, libxext6, libxinerama1, libxxf86vm1 Pre-Depends: multiarch-support Filename: pool/main/n/nux/libnux-4.0-0_4.0.6+14.04.20140409-0ubuntu1_amd64.deb Size: 706516 MD5sum: b250bd7155e0c209530843188b5c425d SHA1: 0d51e47082dc0c4fb3407fda4347e74d9928b290 SHA256: 5e7976342e036a72e389e377f3a7c15632b9517f0fb44d9f59f8cb4e334c00b5 Description: Visual rendering toolkit for real-time applications - shared lib Homepage: http://launchpad.net/nux Description-md5: 90d396a1d9bee5777dd30987b07c2d73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libnux-4.0-common Priority: optional Section: libs Installed-Size: 713 Maintainer: Didier Roche Architecture: amd64 Source: nux Version: 4.0.6+14.04.20140409-0ubuntu1 Filename: pool/main/n/nux/libnux-4.0-common_4.0.6+14.04.20140409-0ubuntu1_amd64.deb Size: 46248 MD5sum: f128cf9ba496c653fd234cb376d0ac6a SHA1: 3ea9571a4713c0bc69b7a18ec31032aa21a05c0f SHA256: 2defdc59b653591369ece48f50b4d95986a1f5fba1d593e86a9509f4300fe0d0 Description: Visual rendering toolkit for real-time applications - common files Multi-Arch: foreign Homepage: http://launchpad.net/nux Description-md5: 4c25406b214daa0c0f7508e217b5c92b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libnux-4.0-dev Priority: optional Section: libdevel Installed-Size: 1755 Maintainer: Didier Roche Architecture: amd64 Source: nux Version: 4.0.6+14.04.20140409-0ubuntu1 Depends: libnux-4.0-0 (= 4.0.6+14.04.20140409-0ubuntu1), libglib2.0-dev (>= 2.25.14), libgdk-pixbuf2.0-dev, libboost-dev, libcairo2-dev (>= 1.9.14), libpng12-dev (>= 1.2.44), libglew-dev, libglewmx-dev, libgl1-mesa-dev, libglu1-mesa-dev, libgeis-dev (>= 2.2.10), libsigc++-2.0-dev, libpcre3-dev, libx11-dev, libxext-dev, libxinerama-dev, libxxf86vm-dev Filename: pool/main/n/nux/libnux-4.0-dev_4.0.6+14.04.20140409-0ubuntu1_amd64.deb Size: 222110 MD5sum: 55d994228117588b83078a12610645b4 SHA1: 10102b01633e3d3a077d751ad004bf853f08c9e2 SHA256: 29d9b8d9dc5fc2192d9a61ff248b5e4cb71738b22218a44fd459c98e916ab91f Description: Visual rendering toolkit for real-time applications - dev files Homepage: http://launchpad.net/nux Description-md5: cb19142683fff19dae7d5f404499bcd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liboauth-dev Priority: optional Section: libdevel Installed-Size: 139 Maintainer: Bilal Akhtar Architecture: amd64 Source: liboauth Version: 1.0.1-1 Depends: liboauth0 (= 1.0.1-1), libcurl4-gnutls-dev | libcurl4-dev, libnss3-dev Filename: pool/main/libo/liboauth/liboauth-dev_1.0.1-1_amd64.deb Size: 33754 MD5sum: e0e252dc71def668f443cd9576d41cd7 SHA1: ad10c6aba75324b910a4dcad409045d3ba77faf9 SHA256: e05d0987ad5652007190668ef982a75644eaaddbf5609728104a7650c93b2465 Description: C library for implementing OAuth 1.0 (development files) Homepage: http://liboauth.sourceforge.net/ Description-md5: 2bbd458acc8a7d9a1f7cb11ed89a7ef9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liboauth0 Priority: optional Section: libs Installed-Size: 68 Maintainer: Bilal Akhtar Architecture: amd64 Source: liboauth Version: 1.0.1-1 Depends: libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.2), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1) Pre-Depends: multiarch-support Filename: pool/main/libo/liboauth/liboauth0_1.0.1-1_amd64.deb Size: 17234 MD5sum: dffa4cd10592d21df04ef3d87b74abf6 SHA1: b9667c0aca1b9186e872b85556de214af31cad52 SHA256: 02de4dfc5c01d388cfd096c9ee73fc4c669e05e6ce5cec72a81eb7ab2a0fd494 Description: C library for implementing OAuth 1.0 Multi-Arch: same Homepage: http://liboauth.sourceforge.net/ Description-md5: 9ba502181f630a009d02926f250960f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libobjc-4.7-dev Priority: optional Section: libdevel Installed-Size: 2690 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gobjc-4.7 (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libgcc-4.7-dev (= 4.7.3-12ubuntu1), libobjc4 (>= 4.7.3-12ubuntu1) Filename: pool/main/g/gcc-4.7/libobjc-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 373200 MD5sum: 751a7f07f131200bb4042802d5f14bfb SHA1: 625be8df0f83400c880be11405eec332bdf0cfb7 SHA256: 3d5d97568c12b7d3f1609735bd387aa929a89a09b7aab186aec0811893519fdf Description: Runtime library for GNU Objective-C applications (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 7ff3333ac4ef3f78ec469fae5e05bf5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libobjc-4.8-dev Priority: optional Section: libdevel Installed-Size: 3115 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcc-4.8-dev (= 4.8.2-19ubuntu1), libobjc4 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libobjc-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 377724 MD5sum: b7590ebfc1ea4fbcb4aad3ec7fc32351 SHA1: 912e5772caee4df49082b0d49a51eca8c53eb212 SHA256: 982a8e79330072c4dfa3005401b8110aac2de7e024594e0480322e816ae977ac Description: Runtime library for GNU Objective-C applications (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 7ff3333ac4ef3f78ec469fae5e05bf5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libobjc4 Priority: optional Section: libs Installed-Size: 436 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libobjc4_4.8.2-19ubuntu1_amd64.deb Size: 110618 MD5sum: 210b6b94ceb55c7a4dc6fc15d419316b SHA1: 3f1afbf9bb2267c10ebb26a058d63d723362f200 SHA256: 0ae9f5439218b3aff4086167937115b30f7633090b2f102e05f927411b9367ef Description: Runtime library for GNU Objective-C applications Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 30a0a695b3f5d643272b0bb547f0578c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libobjc4-dbg Priority: extra Section: debug Installed-Size: 1049 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libobjc4 (= 4.8.2-19ubuntu1), libgcc1-dbg (>= 1:4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libobjc4-dbg_4.8.2-19ubuntu1_amd64.deb Size: 213392 MD5sum: 4937eeb227b8912fcf6f9eef4ecd16c3 SHA1: 2befa59a66a87114bfe1974c3fbad0b3d262cd34 SHA256: eabf402a7274eabd5d9ccbbb1294f75c843ca0dce73ee930c7e6451b804a948a Description: Runtime library for GNU Objective-C applications (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: b444a22ecf71ec41ec6388bbebb0e347 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libodbc1 Priority: optional Section: libs Installed-Size: 608 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: unixodbc Version: 2.2.14p2-5ubuntu5 Replaces: unixodbc (<< 2.2.14p2-3) Depends: libc6 (>= 2.14), libltdl7 (>= 2.4.2) Pre-Depends: multiarch-support Suggests: libmyodbc, odbc-postgresql, tdsodbc, unixodbc-bin Breaks: unixodbc (<< 2.2.14p2-3) Filename: pool/main/u/unixodbc/libodbc1_2.2.14p2-5ubuntu5_amd64.deb Size: 175406 MD5sum: 433e8b9f8a79a80052db69ed4f02fe53 SHA1: 76d5e0a3f66a14b6020dd544f801f429d888635a SHA256: 8d07085583f38b5cfba0bb135776372c6357c8785c0a6feaeb0912db34e449fc Description: ODBC library for Unix Multi-Arch: same Homepage: http://www.unixodbc.org/ Description-md5: 6dfec09e9b2b93be03da7503d10a1a4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libogg-dbg Priority: extra Section: debug Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: amd64 Source: libogg Version: 1.3.1-1ubuntu1 Depends: libogg0 (= 1.3.1-1ubuntu1) Filename: pool/main/libo/libogg/libogg-dbg_1.3.1-1ubuntu1_amd64.deb Size: 19936 MD5sum: f2d52a7fdbff4915d7ee26c2cf868687 SHA1: cf296fd3d84432bea3a49654da69b8adf5003bbe SHA256: b1902f6466e4125134f7e5247b3cd1b46cf82c47e9f9ec7ace9a95f316262bda Description: debugging symbols for libogg Multi-Arch: same Homepage: http://xiph.org/ogg/ Description-md5: c4ea2c4a14f35acdf8a6687df25bab39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libogg-dev Priority: optional Section: libdevel Installed-Size: 459 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: amd64 Source: libogg Version: 1.3.1-1ubuntu1 Depends: libogg0 (= 1.3.1-1ubuntu1) Filename: pool/main/libo/libogg/libogg-dev_1.3.1-1ubuntu1_amd64.deb Size: 155952 MD5sum: a65ce3b990b5db9dbcf7c683e48ae345 SHA1: c04679db25171dfb7c1d3ac9facaaaa47336a8d3 SHA256: 50a5122514e528e95aa760cdb12fce4ea2cc2ff7e43ed23287fbeb5b16021d84 Description: Ogg bitstream library development files Multi-Arch: same Homepage: http://xiph.org/ogg/ Description-md5: 0d0181672e2c3b8856aac1ff26063c44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libogg0 Priority: optional Section: libs Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: amd64 Source: libogg Version: 1.3.1-1ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libo/libogg/libogg0_1.3.1-1ubuntu1_amd64.deb Size: 17036 MD5sum: a6411133fd6d72d08bbcb265a7f31103 SHA1: 849bbe091c033170f8f98dc3142d7da618bb25cd SHA256: 99a62da3269a442a34b779311a8a108bc48d61c779772ae3a219a5acb4649d24 Description: Ogg bitstream library Multi-Arch: same Homepage: http://xiph.org/ogg/ Description-md5: a71d36f8dd4fb5e3d1b8a32e6c18cf05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libopencc-dbg Priority: extra Section: debug Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: opencc Version: 0.4.3-2build1 Depends: libopencc1 (= 0.4.3-2build1) Filename: pool/main/o/opencc/libopencc-dbg_0.4.3-2build1_amd64.deb Size: 32174 MD5sum: 8fb71e71db416baff9f136177a4bea09 SHA1: 2e6ac785f3714ff9168516a1e75df8d566d3843e SHA256: 0d2efc7373cf285d423ce2f90d8d89ec25fc30975554ec0518267f908068686b Description: simplified-traditional chinese conversion library - debug Multi-Arch: same Homepage: http://code.google.com/p/opencc Description-md5: c0b3905e0ce8489b54e92098ed8a75be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopencc-dev Priority: optional Section: libdevel Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: opencc Version: 0.4.3-2build1 Depends: libopencc1 (= 0.4.3-2build1) Filename: pool/main/o/opencc/libopencc-dev_0.4.3-2build1_amd64.deb Size: 18058 MD5sum: 28e36ed0e49709f2fb90d033a1fc2571 SHA1: 6d6450a3f4a1a2f77ceace9ffa52b5de20b76129 SHA256: bceb5b987cd05eda3a1a0dd6868326e03cb49acb95afcfdebd362297f9fb9c95 Description: simplified-traditional chinese conversion library - development Multi-Arch: same Homepage: http://code.google.com/p/opencc Description-md5: 9690061c9838e6b1c366e5c2410cd674 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopencc1 Priority: optional Section: libs Installed-Size: 8852 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: opencc Version: 0.4.3-2build1 Replaces: libopencc0 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libopencc0 Filename: pool/main/o/opencc/libopencc1_0.4.3-2build1_amd64.deb Size: 613972 MD5sum: f115d8379f96d1f8fd2030b314249cb4 SHA1: 555176dc6c0ebcecc11ef1dbdd760e3730ad5d8d SHA256: 5a7cd19c09ffdbafb7880953cca5708e98f1ab83df3c98cb539269b81cc3a1cc Description: simplified-traditional chinese conversion library - runtime Multi-Arch: same Homepage: http://code.google.com/p/opencc Description-md5: b063ae9a3504ce6f18feef3e84ede4f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libopencryptoki-dev Priority: optional Section: libdevel Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: opencryptoki Version: 2.3.1+dfsg-3ubuntu5 Depends: libopencryptoki0 (= 2.3.1+dfsg-3ubuntu5) Filename: pool/main/o/opencryptoki/libopencryptoki-dev_2.3.1+dfsg-3ubuntu5_amd64.deb Size: 25742 MD5sum: 02906834945af4eda28131e4289a48a1 SHA1: f8a97f13b6cef2213263aab93e1938cfc29e480f SHA256: 9c9eba86c8a9f63f71cadbd88f66bde914c1b1c3629c2426f965a9dcd98b004c Description: PKCS#11 implementation (development) Homepage: http://opencryptoki.sourceforge.net/ Description-md5: 5ccede4e52f23a23ec6f510afbb7738e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopencryptoki0 Priority: optional Section: libs Installed-Size: 719 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: opencryptoki Version: 2.3.1+dfsg-3ubuntu5 Depends: libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0), libtspi1 (>= 0.3.1) Filename: pool/main/o/opencryptoki/libopencryptoki0_2.3.1+dfsg-3ubuntu5_amd64.deb Size: 254820 MD5sum: 84378fa65076346d5f9cb4d932cfa3f9 SHA1: ec7f409a1daecc2d230fac011ac00e83fb4b6b4d SHA256: a889b890b50630586e33742e30151e5d41469778f98f1609eb0f9a8fbc4051ac Description: PKCS#11 implementation (library) Homepage: http://opencryptoki.sourceforge.net/ Description-md5: 8feafc6f1695544c5f562059012b0d01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenexr-dev Priority: optional Section: libdevel Installed-Size: 1952 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: amd64 Source: openexr Version: 1.6.1-7ubuntu1 Depends: libopenexr6 (= 1.6.1-7ubuntu1), libilmbase-dev Filename: pool/main/o/openexr/libopenexr-dev_1.6.1-7ubuntu1_amd64.deb Size: 233406 MD5sum: 08f579783d847f51691b42a56c1a64bb SHA1: 39ee1fb0ae1a833f98fc039d995b5de99edf5be7 SHA256: 918c77151339ab274308c8de3e8061ddf21acb51f5b98dc18e9f9a76cc3437eb Description: development files for the OpenEXR image library Homepage: http://www.openexr.com Description-md5: 8e2ac9ae29f1c1eb2cc160c36be0dd18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenexr6 Priority: optional Section: libs Installed-Size: 746 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: amd64 Source: openexr Version: 1.6.1-7ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libilmbase6 (>= 1.0.1), libstdc++6 (>= 4.2.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/o/openexr/libopenexr6_1.6.1-7ubuntu1_amd64.deb Size: 164194 MD5sum: 7be414f4260e6a35a66c08b3c3f7f216 SHA1: 30c409cfe1dd155408a8d11427179bb6ddb0afb6 SHA256: 6d2eabf462fdc8564a0de9d7300cffbf5086ed0b0a125dc23bf1cb9fc53d14c9 Description: runtime files for the OpenEXR image library Multi-Arch: same Homepage: http://www.openexr.com Description-md5: fc6d21580bbce28c399667b4a248a460 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libopenhpi-dev Priority: optional Section: libdevel Installed-Size: 6717 Maintainer: Ubuntu Developers Original-Maintainer: Bryan Sutula Architecture: amd64 Source: openhpi Version: 2.14.1-1.3ubuntu2 Depends: libopenhpi2 (= 2.14.1-1.3ubuntu2), libopenipmi0 (>= 2.0.7), openipmi (>= 2.0.7) Filename: pool/main/o/openhpi/libopenhpi-dev_2.14.1-1.3ubuntu2_amd64.deb Size: 777708 MD5sum: b27f97fb3437bb2e909df409a4e1da39 SHA1: 3e9c448a4ef23ec17102d1e0ad6c1ce3794da489 SHA256: 6e658a478f1034b9cecfbed70af34e9117fb8455512faa36b6cb8564b45ee666 Description: OpenHPI libraries (development files) Homepage: http://openhpi.org Description-md5: 375e5bb8c23075b2c97b42796c8b577c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenhpi2 Priority: optional Section: libs Installed-Size: 909 Maintainer: Ubuntu Developers Original-Maintainer: Bryan Sutula Architecture: amd64 Source: openhpi Version: 2.14.1-1.3ubuntu2 Replaces: libopenhpi Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libssl1.0.0 (>= 1.0.0), libstdc++6 (>= 4.1.1), libuuid1 (>= 2.16) Recommends: openhpid (= 2.14.1-1.3ubuntu2) Conflicts: libopenhpi Filename: pool/main/o/openhpi/libopenhpi2_2.14.1-1.3ubuntu2_amd64.deb Size: 169036 MD5sum: 944e22dc3ef260c5bd0649642639a113 SHA1: 3ce55cb07540035d01c51521a5419a802648c542 SHA256: 309989180d4cf12037a57f0b7cd328e5e7efbea91ff3b04c078c6e8f9bf0443e Description: OpenHPI libraries (runtime and support files) Homepage: http://openhpi.org Description-md5: 1da27024bde21d7fe1e9488d8c7d6e87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libopenipmi-dev Priority: optional Section: libdevel Installed-Size: 3116 Maintainer: Ubuntu Core Developers Original-Maintainer: Noèl Köthe Architecture: amd64 Source: openipmi Version: 2.0.18-0ubuntu7 Depends: libopenipmi0 (= 2.0.18-0ubuntu7), libgdbm-dev Filename: pool/main/o/openipmi/libopenipmi-dev_2.0.18-0ubuntu7_amd64.deb Size: 532992 MD5sum: a07f619f4fd639369e5a17caed718253 SHA1: d95c9be7f86ebe630d741d7f89cd9bb57958758d SHA256: e15a0d93bd466b77f16296d75669f38bffce097c7c9d57922000198390dc677a Description: Intelligent Platform Management Interface - development Homepage: http://openipmi.sourceforge.net/ Description-md5: 21a89e65f5ef6a123d26a78577f68a86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenipmi0 Priority: optional Section: devel Installed-Size: 1708 Maintainer: Ubuntu Core Developers Original-Maintainer: Noèl Köthe Architecture: amd64 Source: openipmi Version: 2.0.18-0ubuntu7 Depends: libc6 (>= 2.15) Filename: pool/main/o/openipmi/libopenipmi0_2.0.18-0ubuntu7_amd64.deb Size: 423210 MD5sum: e8139e2fa88574892fef66f3babc6c09 SHA1: 32ee9a8fc7c010c09a6c4cae525ebae89aa31e9a SHA256: 4c290d369f6a83e2a27c4013bb28656813e89524f6ec623c68143232a3027179 Description: Intelligent Platform Management Interface - runtime Homepage: http://openipmi.sourceforge.net/ Description-md5: 88f1a1a59f14b572b981410392d3b8a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libopenobex1 Priority: optional Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Hendrik Sattler Architecture: amd64 Source: libopenobex Version: 1.5-2.1 Depends: libc6 (>= 2.15), libusb-0.1-4 (>= 2:0.1.12) Filename: pool/main/libo/libopenobex/libopenobex1_1.5-2.1_amd64.deb Size: 22208 MD5sum: 6e4fc13c5801c8f52f7c366db3664cc9 SHA1: f13b5892e5c4576b8256ea94aeae79479b16ae99 SHA256: ec70ba986f58dab7a8e5e45d225ba3345d42661992f719bd8ce3aa8f451fa03e Description: OBEX protocol library Homepage: http://www.openobex.org Description-md5: 729a552232c780f0321b79447d299d2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libopenobex1-dev Priority: extra Section: libdevel Installed-Size: 652 Maintainer: Ubuntu Developers Original-Maintainer: Hendrik Sattler Architecture: amd64 Source: libopenobex Version: 1.5-2.1 Provides: libopenobex-dev Depends: libopenobex1 (= 1.5-2.1), libbluetooth-dev, libusb-dev (>= 2:0.1.11) Suggests: pkg-config Conflicts: libopenobex-dev Filename: pool/main/libo/libopenobex/libopenobex1-dev_1.5-2.1_amd64.deb Size: 111220 MD5sum: b26b09ef5c04695eabb204072f3f7d6f SHA1: 2748642fc7ced00e09ec84d1ac46708457ce12fd SHA256: 9d450b31f16974899cdad6072e1e8229482d4776b525898ad0557e9eab4ddc87 Description: OBEX protocol library - development files Homepage: http://www.openobex.org Description-md5: 4d31e157f562dcd3c965f79792a8e0a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa Priority: optional Section: libs Installed-Size: 128 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libopenvg1 Provides: libopenvg1 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Conflicts: libopenvg1 Filename: pool/main/m/mesa/libopenvg1-mesa_10.1.0-4ubuntu5_amd64.deb Size: 12952 MD5sum: d6baf0c2b43ad03011f94fb1ef50921f SHA1: 16607838b5ffb1e67931b9afc49e9952454c41d5 SHA256: d47c014db28028f022e5853aaf786389761ad125d2fe184116b5d4361e5c03e0 Description: free implementation of the OpenVG API -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 23fad5a33ddc86c1ebd79b349b93c466 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libopenvg1-mesa-dbg Priority: extra Section: debug Installed-Size: 134 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libopenvg1-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libopenvg1-mesa-dbg_10.1.0-4ubuntu5_amd64.deb Size: 15394 MD5sum: f75c8cc5d513e7c9efbe7243dc0eb1a4 SHA1: 290865fad2688712cb5de9f8336c0892198ff08f SHA256: 14c8482dd5af0e0e74da86d0576fc1fadcf53161a7fcdf6c2d83afb7b78c73ea Description: free implementation of the OpenVG API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: e093793928f70f1daa03783f40a7298c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-dev Priority: optional Section: libdevel Installed-Size: 151 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libopenvg1-mesa (= 10.1.0-4ubuntu5), libegl1-mesa-dev Filename: pool/main/m/mesa/libopenvg1-mesa-dev_10.1.0-4ubuntu5_amd64.deb Size: 11960 MD5sum: 9ed5b3b4188e9195c46861baa8205aa6 SHA1: d595d5b09e6e5db91109200ce95e4206c413422b SHA256: 3f392adb6b5ce513b0b6d5571190e13d4c582976d7ca71b53597111da1754cbb Description: free implementation of the OpenVG API -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 83d64f6fb398c328ebe1bcc729f426b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-dev-lts-quantal_5_amd64.deb Size: 1558 MD5sum: 6a14fbad70c957559892f12b48d44aa0 SHA1: d5e29386f1d0e7f3c701553a3628bb96c0f1b9df SHA256: eaa71a37d35b44171435298aae8d5915a91d8b3ad80470ccd14b76770f9d789f Description: Transitional package for libopenvg1-mesa-dev Multi-Arch: same Description-md5: e79b4de13a3ef933dbc903bc9103fab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-dev-lts-raring_5_amd64.deb Size: 1554 MD5sum: 4fd9d1e08c82bf213e8d0f044736a200 SHA1: 22e72f9424b9065ec68b72b590f407bf3d3c4c7f SHA256: 90f11010bf1979e08c14dd6a601929e570feb39f4acd4d685099187ffac4a591 Description: Transitional package for libopenvg1-mesa-dev Multi-Arch: same Description-md5: e79b4de13a3ef933dbc903bc9103fab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-dev-lts-saucy_5_amd64.deb Size: 1552 MD5sum: bb1a5ea13d63c4088b1fc28430020776 SHA1: e3853775d9bebe6e29e2db776d2cf749b7cadfed SHA256: b39f6e2df230dbdc699807d3a94c7bfc0baa62ca49840fe79cd7c3eb8b8b41b4 Description: Transitional package for libopenvg1-mesa-dev Multi-Arch: same Description-md5: e79b4de13a3ef933dbc903bc9103fab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-quantal_5_amd64.deb Size: 1548 MD5sum: e2e3a0767a93fa6e3c85018d094a18e3 SHA1: 15934bb15a6f15c400a3848d84fb02c807ed9735 SHA256: d1203000b96bc8b739781ba41188b92a67712ad03ed0f18fdc9cc0eb990171c3 Description: Transitional package for libopenvg1-mesa Multi-Arch: same Description-md5: 61fd3bca38f9c57783b05e299bc4ce20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-quantal-dbg_5_amd64.deb Size: 1556 MD5sum: b969ad327b1ed0f7b1b574069399d0f9 SHA1: d0acd230427129cbdb36341073e0f3afa8e66666 SHA256: 25311e5f102be5b1f547ce4c969d0f678ac6fe0eb70e84882efcb381fc1e1b60 Description: Transitional package for libopenvg1-mesa-dbg Multi-Arch: same Description-md5: 16a1d0bd1d34106e1b676f4b378b87ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-raring_5_amd64.deb Size: 1548 MD5sum: fd0e4062221386391f0a3357706e267d SHA1: 84b3e86a94332a9d12d63b96fee4e959e1ab24db SHA256: ceaaf00a1510a7efce81183bb1de694f20fe64dfa0bebf9e3a65d15535248a48 Description: Transitional package for libopenvg1-mesa Multi-Arch: same Description-md5: 61fd3bca38f9c57783b05e299bc4ce20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-raring-dbg_5_amd64.deb Size: 1554 MD5sum: aee62c73316055be684751b549374310 SHA1: fd9c708c4ee1c2db8a99dbfdc729049e6c3362d9 SHA256: 0a8872a14dc607bac5f5dfb067dfc3d9fda32e9d08237c72902b37b151e4ad9c Description: Transitional package for libopenvg1-mesa-dbg Multi-Arch: same Description-md5: 16a1d0bd1d34106e1b676f4b378b87ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-saucy_5_amd64.deb Size: 1546 MD5sum: ecde04323d75fd1ffda33c68599b4cae SHA1: b51accaef4e0cd8f1fe810ae7bf8f18a406ae2fd SHA256: 31827e351da8c3a06adeb7a82120d3e3b61498b5b2edc331339fd418179497e3 Description: Transitional package for libopenvg1-mesa Multi-Arch: same Description-md5: 61fd3bca38f9c57783b05e299bc4ce20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-saucy-dbg_5_amd64.deb Size: 1554 MD5sum: d05f93d868925d01403671e22c639191 SHA1: e49956c7e28b7e36cac85a9072cf269130634ff8 SHA256: 71a069c5e0b88672966cd2c2da31f61b39db2589776bd0e6e1996e495ccdb52b Description: Transitional package for libopenvg1-mesa-dbg Multi-Arch: same Description-md5: 16a1d0bd1d34106e1b676f4b378b87ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopts25 Priority: optional Section: libs Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Metzler Architecture: amd64 Source: autogen Version: 1:5.18-2ubuntu2 Replaces: autogen Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/a/autogen/libopts25_5.18-2ubuntu2_amd64.deb Size: 55288 MD5sum: eb03b85c6c136ed1fe59f84507d1f40e SHA1: 7d7d6601394f6cc2ef32e3d9c730d80883464c4c SHA256: 79033a7a4d9f08f4489e00e9a052baeb821fb8cc7f95b0cc8218eda715635c2f Description: automated option processing library based on autogen Multi-Arch: same Homepage: http://www.gnu.org/software/autogen/ Description-md5: d48a8ad59e617622d38a7b59db3b01bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop Package: libopts25-dev Priority: optional Section: libdevel Installed-Size: 328 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Metzler Architecture: amd64 Source: autogen Version: 1:5.18-2ubuntu2 Replaces: autogen, libopts9-dev Depends: libopts25 (= 1:5.18-2ubuntu2) Conflicts: libopts9-dev Filename: pool/main/a/autogen/libopts25-dev_5.18-2ubuntu2_amd64.deb Size: 89972 MD5sum: 6e2699089af029f45731973846413229 SHA1: 1f9e719b49169a80da4673a6c782a95efa0ecaa5 SHA256: 111072311ef75e7a2e0e6ce9668cb6e34372d9ed72cb822e8927fb1bc23b38dc Description: automated option processing library based on autogen Homepage: http://www.gnu.org/software/autogen/ Description-md5: 2d896a368c6ce52025f25873536165ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopus-dbg Priority: extra Section: debug Installed-Size: 444 Maintainer: Scott Ritchie Original-Maintainer: Ron Lee Architecture: amd64 Source: opus Version: 1.1-0ubuntu1 Depends: libopus0 (= 1.1-0ubuntu1) Filename: pool/main/o/opus/libopus-dbg_1.1-0ubuntu1_amd64.deb Size: 380366 MD5sum: 4a3d584cf643bac6ad8f9129f9d609da SHA1: b30c88008feaef1fe7b8e25bc72c0970d42ac0a5 SHA256: 41533e97a8385d65ce0b4317969bce624f03cbc91ba6f5dc83adab89a3a317f0 Description: debugging symbols for libopus Homepage: http://www.opus-codec.org Description-md5: 91ab23bc2d5d216a36a080e03642e2c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopus-dev Priority: optional Section: libdevel Installed-Size: 722 Maintainer: Scott Ritchie Original-Maintainer: Ron Lee Architecture: amd64 Source: opus Version: 1.1-0ubuntu1 Depends: libopus0 (= 1.1-0ubuntu1) Filename: pool/main/o/opus/libopus-dev_1.1-0ubuntu1_amd64.deb Size: 190474 MD5sum: f69bc1a2ee9788327d9a29439a3845d9 SHA1: 5a5a83ff39c65ca174529ad47b4dc22973924228 SHA256: a6a1c8b5d3ba5f6771a3f551a38ee2c858124de89ef66f27ef84a35538abcf54 Description: Opus codec library development files Homepage: http://www.opus-codec.org Description-md5: 3ab6e9f48e3d929fab46f16112007bbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopus-doc Priority: optional Section: doc Installed-Size: 1150 Maintainer: Scott Ritchie Original-Maintainer: Ron Lee Architecture: all Source: opus Version: 1.1-0ubuntu1 Filename: pool/main/o/opus/libopus-doc_1.1-0ubuntu1_all.deb Size: 115152 MD5sum: cf6af10e59b0df4e52885e972b3777d1 SHA1: e340d6872296a7118b15d5f9ff6e1ea9511bf0c2 SHA256: 56ee39e38c8b8b467e5f7f4d164a2a65322f3dafbf22e51c2fcebb3cee4e5756 Description: libopus API documentation Homepage: http://www.opus-codec.org Description-md5: e8454668869df187f002a25c8fcb9e59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopus0 Priority: optional Section: libs Installed-Size: 325 Maintainer: Scott Ritchie Original-Maintainer: Ron Lee Architecture: amd64 Source: opus Version: 1.1-0ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Suggests: opus-tools Filename: pool/main/o/opus/libopus0_1.1-0ubuntu1_amd64.deb Size: 153146 MD5sum: b611832d9ef83e451dff69c1c81d5d04 SHA1: be3e80dfc3046259f272493cfd2c017c3232731e SHA256: dd3af0fe63208e2f05983d5d4a6e68ba50e32bb58d95fb0e5d38a30423cfe020 Description: Opus codec runtime library Homepage: http://www.opus-codec.org Description-md5: 1155b70f2f801c41248e2e9c555bc1df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active, kubuntu-active-full, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio Package: liborbit-2-0 Priority: optional Section: libs Installed-Size: 647 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: amd64 Source: orbit2 Version: 1:2.14.19-0.3 Replaces: liborbit2 (<< 1:2.14.19-0.3) Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.35.9) Pre-Depends: multiarch-support Breaks: liborbit2 (<< 1:2.14.19-0.3) Filename: pool/main/o/orbit2/liborbit-2-0_2.14.19-0.3_amd64.deb Size: 137638 MD5sum: abfe22c397b3f8962147d58ced001a13 SHA1: b970d3e9bffb2e316b431a62bf3ded8bf46f66bb SHA256: 6d869c5a4e2eede727e75f3e5849f506dd75babd4ffc4d6462c630ceae88b9e7 Description: high-performance CORBA implementation - common libraries Multi-Arch: same Description-md5: 9a6fc5db86a0fb56fbbe6140c1539c33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: liborbit2 Priority: optional Section: libs Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: amd64 Source: orbit2 Version: 1:2.14.19-0.3 Replaces: liborbit2-dev (<< 2.8.1-1) Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.16.0), libidl0, liborbit-2-0 (= 1:2.14.19-0.3) Pre-Depends: multiarch-support Conflicts: libbonobo-activation4 (<< 1:2.4.0), liblinc1 (<< 1.0.3-4), liborbit2-dev (<< 2.8.1-1) Filename: pool/main/o/orbit2/liborbit2_2.14.19-0.3_amd64.deb Size: 14690 MD5sum: 989b1dba97047b45e6127fb0ce02e143 SHA1: 60b8476033eb043cca162e3a72c1127b8528085d SHA256: 63e863c463d1c6b078f773e1949c5ed911714e02d386db1a23677c0677cff5b8 Description: high-performance CORBA implementation - extra libraries Multi-Arch: same Description-md5: 5f2520ef9826310d2c84dd8e57689759 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: liborbit2-dev Priority: optional Section: libdevel Installed-Size: 2175 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: amd64 Source: orbit2 Version: 1:2.14.19-0.3 Depends: liborbit2 (= 1:2.14.19-0.3), libidl-dev (>= 0.8.6-1), libglib2.0-dev, pkg-config, orbit2 (= 1:2.14.19-0.3) Conflicts: liblinc-dev Filename: pool/main/o/orbit2/liborbit2-dev_2.14.19-0.3_amd64.deb Size: 228444 MD5sum: faf933e3b7bc3bc92e0bcb6d111beb96 SHA1: 110427b81f701f856c672207b239e64e013e306f SHA256: a66091eb97cb2571954bb68976ef872d5a7717521e2ea33123ce5daa9e1fdb1b Description: high-performance CORBA implementation - development Multi-Arch: foreign Description-md5: bc53741c8a3640c5e5982742e4ce0b12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liborc-0.4-0 Priority: optional Section: libs Installed-Size: 594 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: orc Version: 1:0.4.18-1ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/o/orc/liborc-0.4-0_0.4.18-1ubuntu1_amd64.deb Size: 136166 MD5sum: 17be656a32060dde8d252a7e0a91bcb6 SHA1: 63059cb4971ec276a3a0e70aaf8125cbae72a508 SHA256: 9b8e4b7736c79493adf7be60b54abd584e34b628a38fef254bfa85ba90e1d98d Description: Library of Optimized Inner Loops Runtime Compiler Multi-Arch: same Homepage: http://code.entropywave.com/projects/orc/ Description-md5: 9d0d502b84711965362c2261cc943821 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: liborc-0.4-0-dbg Priority: extra Section: debug Installed-Size: 625 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: orc Version: 1:0.4.18-1ubuntu1 Depends: liborc-0.4-0 (= 1:0.4.18-1ubuntu1) Filename: pool/main/o/orc/liborc-0.4-0-dbg_0.4.18-1ubuntu1_amd64.deb Size: 464058 MD5sum: 8fcfb16237aec4713e59033681554d28 SHA1: 19389f2c0d6076c6fdd84b8d91f86b53389ce1c5 SHA256: 0f4c4f9964deda3b8f25dd80f9db46511d1f84583d4cec13963cedaf48e3c061 Description: Library of Optimized Inner Loops Runtime Compiler (debug package) Multi-Arch: same Homepage: http://code.entropywave.com/projects/orc/ Description-md5: 6ecdc3fff5502428d7530435c2d3c764 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liborc-0.4-dev Priority: optional Section: libdevel Installed-Size: 1281 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: orc Version: 1:0.4.18-1ubuntu1 Provides: liborc-dev Depends: liborc-0.4-0 (= 1:0.4.18-1ubuntu1), libc6 (>= 2.7) Suggests: liborc-0.4-doc Filename: pool/main/o/orc/liborc-0.4-dev_0.4.18-1ubuntu1_amd64.deb Size: 180152 MD5sum: fcaf48a849b671345ff573e045bd50a8 SHA1: 50087c3c06e6728ed72db0797a9607834bd538f2 SHA256: beb851d3b67994d862c00ce05b61d5123ca3dc152ce9948fd083570a3f0dd0ab Description: Library of Optimized Inner Loops Runtime Compiler (development headers) Homepage: http://code.entropywave.com/projects/orc/ Description-md5: 359bc0114b7b8eeaca86901dcbe1ca51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liborc-0.4-doc Priority: optional Section: doc Installed-Size: 545 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: orc Version: 1:0.4.18-1ubuntu1 Suggests: liborc-0.4-dev Filename: pool/main/o/orc/liborc-0.4-doc_0.4.18-1ubuntu1_all.deb Size: 58188 MD5sum: 4d471942cbe6ef7d73612bc6c8abe260 SHA1: 0a4065885311316f33dbdfeb79c5c0c364f153c5 SHA256: 92772f0231a539419db7a4a19f274cc543a73aaea46961dc7ab570f43100afa7 Description: Library of Optimized Inner Loops Runtime Compiler (documentation) Homepage: http://code.entropywave.com/projects/orc/ Description-md5: c53a5ca6930a6cff4d25eece0de8983d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liborcus-0.6-0 Priority: optional Section: libs Installed-Size: 784 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: liborcus Version: 0.5.1-7 Depends: libboost-system1.54.0, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), zlib1g (>= 1:1.1.4) Filename: pool/main/libo/liborcus/liborcus-0.6-0_0.5.1-7_amd64.deb Size: 186196 MD5sum: 09ee3addbbfc2cf36977f446e8d3275c SHA1: a09399d36f98c289583db2402d1c319d52fd4aef SHA256: 34831856c1d234bb8bce77a1523fae7b31e65b48ece617aeb7bada8d3784cd1b Description: library for processing spreadsheet documents Description-md5: 800af55a60213c5d36dbb1945e9972b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: liborcus-dev Priority: optional Section: libdevel Installed-Size: 1658 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: liborcus Version: 0.5.1-7 Depends: liborcus-0.6-0 (= 0.5.1-7), libzip-dev Filename: pool/main/libo/liborcus/liborcus-dev_0.5.1-7_amd64.deb Size: 227712 MD5sum: 43210a67229defc3195840c39689ff87 SHA1: 90bfae8bea51152970dbcac6a20da9986617dd46 SHA256: cefe63d3ae0df5be87a36d31c63f5bfb759ed8b3269a72be3dde60c629116c06 Description: library for processing spreadsheet documents -- development Description-md5: c226965aa79dfaa7fc46d2c6f9a9c6e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liboro-java Priority: optional Section: libs Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.0.8a-9 Filename: pool/main/libo/liboro-java/liboro-java_2.0.8a-9_all.deb Size: 65068 MD5sum: ebdf320152c3aeffddee7fd963144317 SHA1: 0b7bbb476437ff2c71b9225dd52145bb85aeaa6c SHA256: e56f011894ce7d235c141968a3c3de3a8bdaf64965009d54cb5a7b3c7ad51cbe Description: Regular expression library for Java Homepage: http://jakarta.apache.org/oro/ Description-md5: 13828b6fdf02cd24f01df6e9bf8c9f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liboro-java-doc Priority: optional Section: doc Installed-Size: 1297 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: liboro-java Version: 2.0.8a-9 Filename: pool/main/libo/liboro-java/liboro-java-doc_2.0.8a-9_all.deb Size: 149228 MD5sum: 3d34ff7f40045d192ae9eacfb937bb24 SHA1: a1a2c5b9ca22be305b885163c016f0d64f1f9576 SHA256: f81ca21b8fdcc1814e1f728c4da21f67ca2d631d108ffe69d9b27014c6c41b3a Description: Regular expression library for Java -- documentation Homepage: http://jakarta.apache.org/oro/ Description-md5: 3ec9395d21a0156e45b1b41488ece071 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libosmesa6 Priority: extra Section: libs Installed-Size: 3348 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1-mesa-swx11 (<< 6.5.2) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglapi-mesa (= 10.1.0-4ubuntu5), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libosmesa6_10.1.0-4ubuntu5_amd64.deb Size: 986004 MD5sum: 7309cf92a1e50b22c35e832530289da5 SHA1: 200a77cb29a7fdcbbebd4ade7fc331e1e3931823 SHA256: e6140ef89519ba2597bd08b370bcb1baca5836465cf5f0dca1587bb80892c604 Description: Mesa Off-screen rendering extension Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: e0dd0508dd95a809bb554369d28e278c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Package: libosmesa6-dev Priority: extra Section: devel Installed-Size: 104 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1-mesa-swx11-dev (<< 6.5.2), libosmesa-dev, mesa-common-dev (<< 6.5.2), xlibosmesa-dev Provides: libosmesa-dev, xlibosmesa-dev Depends: libosmesa6 (= 10.1.0-4ubuntu5), mesa-common-dev (= 10.1.0-4ubuntu5) | libgl-dev Conflicts: libosmesa-dev, libosmesa4-dev, xlibosmesa-dev Filename: pool/main/m/mesa/libosmesa6-dev_10.1.0-4ubuntu5_amd64.deb Size: 7452 MD5sum: 12d6ab21f356f6896298b6160a55d449 SHA1: 08e27abcf25e8bcae3ee64eb0cd0c5640984e93c SHA256: bd02c2f0bd9f38bac40683d4c3d06398a18350dfceba91a9eaeeb21747cd808d Description: Mesa Off-screen rendering extension -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 9b1d7a0b3e6a2ea021f4443f42dcff4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libosp-dev Priority: optional Section: libdevel Installed-Size: 5372 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: amd64 Source: opensp Version: 1.5.2-10ubuntu3 Depends: opensp (= 1.5.2-10ubuntu3), libosp5 (= 1.5.2-10ubuntu3) Recommends: c++-compiler Filename: pool/main/o/opensp/libosp-dev_1.5.2-10ubuntu3_amd64.deb Size: 737154 MD5sum: 94df44f9eb812f275b30cc168fe9f1c9 SHA1: f2262b5c6f5b0842edd2897caec35e7a8f231321 SHA256: 3bad0a15efee35a2555ac896e6311232c56989011baa63e4dc031570113cb355 Description: OpenJade group's SP suite, developer support Description-md5: c886d203f924f28f39a7c62f660e64f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libosp5 Priority: optional Section: libs Installed-Size: 2060 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: amd64 Source: opensp Version: 1.5.2-10ubuntu3 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/o/opensp/libosp5_1.5.2-10ubuntu3_amd64.deb Size: 589624 MD5sum: 4a740df5ee002d0dc10dbc8b43570705 SHA1: fe06cca39e353e8b888125e9c5f0b69f7abcfefe SHA256: b600c94ab59f80d79ee3d394cf94a68c6e3fee73b9c9210984a32213205d6e2f Description: Runtime library for OpenJade group's SP suite Description-md5: 3ba5bab58b5ec24657f78e068cf12ad2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libossp-uuid-dev Priority: optional Section: libs Installed-Size: 242 Maintainer: Ubuntu Developers Original-Maintainer: Marco Nenciarini Architecture: amd64 Source: ossp-uuid Version: 1.6.2-1.3ubuntu1 Depends: libossp-uuid16 (= 1.6.2-1.3ubuntu1) Filename: pool/main/o/ossp-uuid/libossp-uuid-dev_1.6.2-1.3ubuntu1_amd64.deb Size: 42384 MD5sum: d7024beff37d775f76543590eade5451 SHA1: 8d5959d0a6e1332e3525df843b4f07c53d075189 SHA256: 0b72cb49d8c081c80633a75823d6942496143b2c34719b3fbb3e1ba96284fb26 Description: OSSP uuid ISO-C and C++ - headers and static libraries Homepage: http://www.ossp.org/pkg/lib/uuid/ Description-md5: 401a1d8f75ee057d66ef71b7471c6e22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libossp-uuid16 Priority: optional Section: libs Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Marco Nenciarini Architecture: amd64 Source: ossp-uuid Version: 1.6.2-1.3ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Suggests: uuid Filename: pool/main/o/ossp-uuid/libossp-uuid16_1.6.2-1.3ubuntu1_amd64.deb Size: 29584 MD5sum: c4dd00cbd64f148420e459998b01cc39 SHA1: 7891caa7727fc47957735eb5bdb4d3b9357cd723 SHA256: d407dea00a93151272ad3f716f1fc2885a907dd8ad0230091093cacf4766a9dc Description: OSSP uuid ISO-C and C++ - shared library Homepage: http://www.ossp.org/pkg/lib/uuid/ Description-md5: 4e2b73242022da7d4b05222407c9042f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libostyle-dev Priority: optional Section: libdevel Installed-Size: 6799 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: amd64 Source: openjade Version: 1.4devel1-21 Depends: libostyle1c2 (= 1.4devel1-21) Conflicts: openjade (<< 1.4devel1-14) Filename: pool/main/o/openjade/libostyle-dev_1.4devel1-21_amd64.deb Size: 1041496 MD5sum: 69e6f639536303537ed171001e41c982 SHA1: 2fc555867014eec06614b7e5b75960e6f9e36262 SHA256: c01fb1d0ea349337289145dfa1baac50af9011911c70eb1fa9625fe0dfb3374a Description: OpenJade libraries, developer support Homepage: http://openjade.sourceforge.net/ Description-md5: 916e65c0872facd3207bfd335df5203a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libostyle1c2 Priority: optional Section: libs Installed-Size: 3533 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: amd64 Source: openjade Version: 1.4devel1-21 Replaces: libostyle1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: libostyle1 Filename: pool/main/o/openjade/libostyle1c2_1.4devel1-21_amd64.deb Size: 828304 MD5sum: 1c62d31a9911a443749a86c1c434472b SHA1: b885ae4f59a3ce569453bd9c4f739fbc74a3e841 SHA256: 403fd7558eb2afb43fa923eb4aa248b7c2f4c721e17a7c8750f0bdce3caf6169 Description: Runtime libraries for OpenJade Homepage: http://openjade.sourceforge.net/ Description-md5: 32031f3a284c6b91eaa28d9ed0cf34ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libotf-dev Priority: optional Section: libdevel Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: amd64 Source: libotf Version: 0.9.13-1ubuntu1 Depends: libotf0 (= 0.9.13-1ubuntu1) Filename: pool/main/libo/libotf/libotf-dev_0.9.13-1ubuntu1_amd64.deb Size: 48724 MD5sum: 7d37353fcd6328b96ed657f39794a84a SHA1: d0d0d58630c784b72809af30668f0cd56805d6e3 SHA256: 1c2b0f448862f457891bed07b724c45b4059808457785bda93fe0fc51012cda3 Description: Library for handling OpenType Font - development Multi-Arch: same Homepage: http://www.nongnu.org/m17n/ Description-md5: 0f85decd7c68cf90642a8dd8e5abf7ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libotf0 Priority: optional Section: libs Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: amd64 Source: libotf Version: 0.9.13-1ubuntu1 Depends: libc6 (>= 2.14), libfreetype6 (>= 2.2.1) Pre-Depends: multiarch-support Filename: pool/main/libo/libotf/libotf0_0.9.13-1ubuntu1_amd64.deb Size: 44222 MD5sum: fcc707589eb79695b1c0f72a73e39e27 SHA1: 5127872e698f9b7f778aab6f18784ff680d35ea7 SHA256: 9f28531281ef48fa81812278a9cf015d2db43a2b90c022cd6f1de746b2dc5892 Description: Library for handling OpenType Font - runtime Multi-Arch: same Homepage: http://www.nongnu.org/m17n/ Description-md5: 272167b6ea5a45fb1e0214abe379f63e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libotf0-dbg Priority: extra Section: libdevel Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: amd64 Source: libotf Version: 0.9.13-1ubuntu1 Depends: libotf0 (= 0.9.13-1ubuntu1) Filename: pool/main/libo/libotf/libotf0-dbg_0.9.13-1ubuntu1_amd64.deb Size: 192632 MD5sum: 68563cb179bc3a4eb66a158b354a04b8 SHA1: 57eeb61e005aa57a1eefba7ebee82d4ce95aa728 SHA256: 4f6b9fe1cb5d97f87f028debf14747b7da87304d1f9c19aceea9e718cadc29ae Description: libotf libraries and debugging symbols Homepage: http://www.nongnu.org/m17n/ Description-md5: 00aa9cee2361d6ae3b8d9d4768e1788f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libotp0-heimdal Priority: extra Section: libs Installed-Size: 246 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.14), libdb5.3, libhcrypto4-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Conflicts: libotp0-kerberos4kth Filename: pool/main/h/heimdal/libotp0-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 29910 MD5sum: 27af100c41f1661f152dc725e2f20500 SHA1: 29fa925b42f9154c324bbde5f4252450774ac011 SHA256: 5c32f9359b2c7422330353b0076c8e37b615b91e60b5034438f3dd75526eb548 Description: Heimdal Kerberos - OTP support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 6390958186e4638a428e5ae7c9683f6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libow-util-ant-tasks-java Priority: optional Section: libdevel Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ow-util-ant-tasks Version: 1.3.2-4build1 Depends: ant (>= 1.7), default-jre-headless | java2-runtime-headless, libasm3-java, libxalan2-java Filename: pool/main/o/ow-util-ant-tasks/libow-util-ant-tasks-java_1.3.2-4build1_all.deb Size: 42990 MD5sum: 93000043fecc3b3d4e1add942d806dba SHA1: b3bf2fdcd6f20067c3d19b8d0dd2a1ddeae53170 SHA256: f55f3ae3fdd682b5f147a46f10b6d5aed47eb4abca9c46c400a52e276a00c66e Description: ObjectWeb utility Ant tasks library Homepage: http://forge.ow2.org/projects/monolog/ Description-md5: bafd7c93d32ad81a23e1246c393c405c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libow-util-ant-tasks-java-doc Priority: optional Section: doc Installed-Size: 522 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ow-util-ant-tasks Version: 1.3.2-4build1 Replaces: libow-util-ant-tasks-java (<< 1.3.2-4) Recommends: default-jdk-doc, libxalan2-java-doc, libasm3-java-doc Filename: pool/main/o/ow-util-ant-tasks/libow-util-ant-tasks-java-doc_1.3.2-4build1_all.deb Size: 54838 MD5sum: de118ede3ebaab6ac9a4f019dada05cc SHA1: f5971d9d4732ade8d86fcf3f9c1e716849fb1214 SHA256: 625b056671508fbc9684d8b18643ea37e8242c393b96c69fa8bac1945cae3022 Description: ObjectWeb utility Ant tasks library (API docs) Homepage: http://forge.ow2.org/projects/monolog/ Description-md5: 40f722721858622a4f396c86a440f9ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liboxideqt-qmlplugin Priority: extra Section: libs Installed-Size: 1859 Maintainer: Chris Coulson Architecture: amd64 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), liboxideqtcore0, libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.2.0~rc1) | libqt5quick5-gles (>= 5.2.0~rc1), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Filename: pool/main/o/oxide-qt/liboxideqt-qmlplugin_1.0.0~bzr501-0ubuntu1_amd64.deb Size: 233894 MD5sum: 090b7e755f2ec272e82058113b135878 SHA1: c2b6bfc4f01644ab2442ff27af14fb9e91b731ea SHA256: 065856444a4aab227f21d919b894baaf005521c4bc0c6efd585b83252a053e22 Description: Web browser engine library for Qt (QML plugin) Multi-Arch: same Homepage: https://launchpad.net/oxide Description-md5: 428c6d6988b1bfc62fe27a3d85613fc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: liboxideqtcore0 Priority: extra Section: libs Installed-Size: 73647 Maintainer: Chris Coulson Architecture: amd64 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.15), libcairo2 (>= 1.6.0), libcap2 (>= 2.10), libdbus-1-3 (>= 1.2.14), libexpat1 (>= 2.0.1), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.9), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.35.9), libharfbuzz0b (>= 0.9.11), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.14.3), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libstdc++6 (>= 4.6), libudev1 (>= 183), libx11-6, libxcomposite1 (>= 1:0.3-1), oxideqt-codecs (= 1.0.0~bzr501-0ubuntu1) | oxideqt-codecs-extra (= 1.0.0~bzr501-0ubuntu1) Filename: pool/main/o/oxide-qt/liboxideqtcore0_1.0.0~bzr501-0ubuntu1_amd64.deb Size: 20318624 MD5sum: df4fb3252c7d6b529dfcd7bef1e1c97a SHA1: 9a93766cd628100937173ceb2f1e0a4c0d19be27 SHA256: e6590b070fbfaeff1786843d0276f6329b2907f942a3b8129a71813f20b43b07 Description: Web browser engine library for Qt (core) Multi-Arch: same Homepage: https://launchpad.net/oxide Description-md5: f3e4b79e886c900a32a898ecb1b9a814 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libp11-2 Priority: optional Section: libs Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: libp11 Version: 0.2.8-3ubuntu1 Depends: libc6 (>= 2.14), libltdl7 (>= 2.4.2), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/libp/libp11/libp11-2_0.2.8-3ubuntu1_amd64.deb Size: 16392 MD5sum: 0de63051355b9f5de815115d9b8983d9 SHA1: 52ce19c8fb736403ac9fc407ff5c18a4cd7c65e9 SHA256: a9c394457f0dba972ec291cb714d30a6b3a77286ee5cb7d434ce3b7759b46f21 Description: pkcs#11 convenience library Multi-Arch: same Homepage: http://www.opensc-project.org/libp11/ Description-md5: c1bc0ac5ee7b3b8ed3f9341c5678a0cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libp11-2-dbg Priority: extra Section: debug Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: libp11 Version: 0.2.8-3ubuntu1 Depends: libp11-2 (= 0.2.8-3ubuntu1) Filename: pool/main/libp/libp11/libp11-2-dbg_0.2.8-3ubuntu1_amd64.deb Size: 58998 MD5sum: ae439fd325e73b0faf5bcbb4fa5b9bac SHA1: b7d90386ddca3d5145ff00b1d84a1617e3e25809 SHA256: 908a4e0770653c05ba2bd1f255561b9e01456617f6dd35bf217a9c7e310c0ce4 Description: pkcs#11 convenience library - debugging symbols Multi-Arch: same Homepage: http://www.opensc-project.org/libp11/ Description-md5: 8e004b22fdd8cef562b627b0bbb567a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libp11-dev Priority: optional Section: libdevel Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: libp11 Version: 0.2.8-3ubuntu1 Depends: libp11-2 (= 0.2.8-3ubuntu1), libssl-dev, pkg-config Filename: pool/main/libp/libp11/libp11-dev_0.2.8-3ubuntu1_amd64.deb Size: 28318 MD5sum: df1248084af8b29238e7051dc63a12e8 SHA1: 937ea4e96e1791f70cb7db34e63f668a45c2ec25 SHA256: 143e0229e09627e59dcc9c62ade1fab3bfeeeeb21b84200102144ded4da49ef8 Description: pkcs#11 convenience library - development files Homepage: http://www.opensc-project.org/libp11/ Description-md5: d18268fbc218a173e85d9adefaf49159 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libp11-kit-dev Priority: extra Section: libdevel Installed-Size: 526 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: p11-kit Version: 0.20.2-2ubuntu2 Depends: libp11-kit0 (= 0.20.2-2ubuntu2) Filename: pool/main/p/p11-kit/libp11-kit-dev_0.20.2-2ubuntu2_amd64.deb Size: 56414 MD5sum: 435588b02c28d755bc62b583f6b54962 SHA1: 8d732169200aefaad0b1c7dc7c2996cfbb6d6a05 SHA256: 02d5bc5081d895afa3257cee7b9924fd09daa333adae9d943d47ba86ce091de2 Description: Library for loading and coordinating access to PKCS#11 modules - development Homepage: http://p11-glue.freedesktop.org/p11-kit.html Description-md5: d1b1bc0614079d89f3a4d535142f70c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libp11-kit-gnome-keyring Priority: optional Section: libs Installed-Size: 377 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gnome-keyring Version: 3.10.1-1ubuntu4 Replaces: gnome-keyring (<< 3.6.2-0ubuntu2~) Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Breaks: gnome-keyring (<< 3.6.2-0ubuntu2~) Filename: pool/main/g/gnome-keyring/libp11-kit-gnome-keyring_3.10.1-1ubuntu4_amd64.deb Size: 40608 MD5sum: 99e5bb6f29a0fb3bfa5a34933751112c SHA1: 17474147a668a35b8a5977f16b0aa3902c2a5ca1 SHA256: c9e91be1a108ec985866b8e293559f66dfd9f48aa541ea025a8ab1cf82fa95a0 Description: GNOME keyring module for the PKCS#11 module loading library Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 152920d93477b7997fe4b21917dba91f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libp11-kit0 Priority: important Section: libs Installed-Size: 317 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: p11-kit Version: 0.20.2-2ubuntu2 Depends: libc6 (>= 2.16), libffi6 (>= 3.0.4) Pre-Depends: multiarch-support Filename: pool/main/p/p11-kit/libp11-kit0_0.20.2-2ubuntu2_amd64.deb Size: 76512 MD5sum: e14fef1bedbf3ba399ba496589a6f1df SHA1: f7a9d46d1538dd52ced2aae0f0a0145823b58ec3 SHA256: cacf7de6a143351748787061ec094279cc9ad48bc14543cb3c9afba1358fae94 Description: Library for loading and coordinating access to PKCS#11 modules - runtime Multi-Arch: same Homepage: http://p11-glue.freedesktop.org/p11-kit.html Description-md5: e5ba1eaf33b44d391d1a681f2d347383 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libp11-kit0-dbg Priority: extra Section: debug Installed-Size: 702 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: p11-kit Version: 0.20.2-2ubuntu2 Depends: libp11-kit0 (= 0.20.2-2ubuntu2) Filename: pool/main/p/p11-kit/libp11-kit0-dbg_0.20.2-2ubuntu2_amd64.deb Size: 555516 MD5sum: cf7ffcf6d0c46bd42f02607046d83544 SHA1: 3387580986f3685cbb62f0c9d4401ac4ba116487 SHA256: 278d9447a72998623c4163962fd4098342f7276c85df312d3f15d4efaf447c9e Description: load and coordinate access to PKCS#11 modules - debugging symbols Multi-Arch: same Homepage: http://p11-glue.freedesktop.org/p11-kit.html Description-md5: 8c2d8e80b7be2274cbbffe6448a9a0f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpackage-deprecationmanager-perl Priority: optional Section: perl Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.13-1 Depends: perl, liblist-moreutils-perl, libparams-util-perl, libsub-install-perl Filename: pool/main/libp/libpackage-deprecationmanager-perl/libpackage-deprecationmanager-perl_0.13-1_all.deb Size: 12924 MD5sum: 122d97896a3240ac1141ae855d2c6eac SHA1: 5fdabcf6791f1503dee7bb98cac9df9b034f24f2 SHA256: 797068161bf0f5eaa3c8f8ae0c897929e2b08f667c444cba30f1f324f9b4353f Description: module for managing deprecation warnings for Perl distributions Homepage: http://search.cpan.org/dist/Package-DeprecationManager/ Description-md5: ea82c9d8f8c547daf3b829e5d8f7b1fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpackage-stash-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.36-1 Depends: perl, libmodule-implementation-perl Recommends: libpackage-stash-xs-perl (>= 0.24) Breaks: libclass-mop-perl (<< 1.09~), libmoosex-method-signatures-perl (<< 0.37~), libmoosex-roles-withoverloading-perl (<< 0.09~), libnamespace-clean-perl (<< 0.19~) Filename: pool/main/libp/libpackage-stash-perl/libpackage-stash-perl_0.36-1_all.deb Size: 21698 MD5sum: 4435acf5f70443beb903bafdbfe38a61 SHA1: c465a3bcc86c825f4e13bf7a7d77eb65ee452acc SHA256: 472c2d82a1b43df7f800bb144e655af716345c006e26fe07f5c50acf22914956 Description: module providing routines for manipulating stashes Homepage: https://metacpan.org/release/Package-Stash/ Description-md5: 2cc7309d7c2c8bbf04d343339450b60d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libpackage-stash-xs-perl Priority: optional Section: perl Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.28-1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libp/libpackage-stash-xs-perl/libpackage-stash-xs-perl_0.28-1_amd64.deb Size: 18670 MD5sum: ec48da2f95d18a7db68503176a07faed SHA1: 20d76e0fec6f94e785ad9f154a9685f39a33aba6 SHA256: 0a80bd89c1f96bfedf9a18f37562cde1b9057cd48fb0a9aa773fd9eba9c081dc Description: Perl module providing routines for manipulating stashes (XS version) Enhances: libpackage-stash-perl Homepage: https://metacpan.org/release/Package-Stash-XS/ Description-md5: 3cc108ce648a0355160bf7aec509dfbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libpackagekit-glib2-16 Priority: optional Section: libs Installed-Size: 449 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: amd64 Source: packagekit Version: 0.8.12-1ubuntu5 Depends: libarchive13, libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9) Pre-Depends: multiarch-support Recommends: python3-aptdaemon.pkcompat | packagekit-system-interface | packagekit (= 0.8.12-1ubuntu5) Filename: pool/main/p/packagekit/libpackagekit-glib2-16_0.8.12-1ubuntu5_amd64.deb Size: 101910 MD5sum: 30a26b623f8ee9dfac69378c2125fa70 SHA1: 8b4d35656de69fc7e8a6e1577c64e3bf7735a6a8 SHA256: 00a0f08f0f1aec4033f883ccda950149f7ba8207e5650aed40069d3dd02837e4 Description: Library for accessing PackageKit using GLib Multi-Arch: same Homepage: http://www.packagekit.org Description-md5: 2f6bf343292f3cd8ceccbf83d3b1645c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpackagekit-glib2-dev Priority: extra Section: libdevel Installed-Size: 1116 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: amd64 Source: packagekit Version: 0.8.12-1ubuntu5 Depends: libdbus-1-dev, libglib2.0-dev (>= 2.24), libpackagekit-glib2-16 (= 0.8.12-1ubuntu5), libsqlite3-dev Filename: pool/main/p/packagekit/libpackagekit-glib2-dev_0.8.12-1ubuntu5_amd64.deb Size: 60198 MD5sum: 5606b7a15d3a82849a938a0c4a616bf8 SHA1: 4af65a804ddc80a244f7c700b493171186462d0b SHA256: 429b36c2fb788104621663c909be44ab2f1e48992b86f884601200545b01a141 Description: Library for accessing PackageKit using GLib (development files) Homepage: http://www.packagekit.org Description-md5: 4bb71e9f893e95e7a41aa3b2056457f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpadwalker-perl Priority: optional Section: perl Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.98-1 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libp/libpadwalker-perl/libpadwalker-perl_1.98-1_amd64.deb Size: 17112 MD5sum: 3efab0630dbecac9dcd80de6997cd999 SHA1: bd68817a6a915b0853f305ec02ca0523c73845f4 SHA256: ef1d728b00dcd4e4df1487ff85b8ada9612282685901c2c7887784f318778eac Description: module to inspect and manipulate lexical variables Homepage: https://metacpan.org/release/PadWalker/ Description-md5: f686c2f2dfe85157f03c0ffade424501 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpam-apparmor Priority: extra Section: libs Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: libapparmor1 (>= 2.6~devel), libc6 (>= 2.2.5), libpam0g (>= 0.99.7.1) Filename: pool/main/a/apparmor/libpam-apparmor_2.8.95~2430-0ubuntu5_amd64.deb Size: 7156 MD5sum: be2536bcc01b29788a86f4788313e189 SHA1: e4c64e2b3285a20fcf70b5252959f8e61c2181b7 SHA256: 0b3faa759d64d862feb17cad488b58f7fd1a82abeafdc6ba4e48a0bda5201d4e Description: changehat AppArmor library as a PAM module Homepage: http://apparmor.net/ Description-md5: e416b01d786a37c6ad586d6663ee5027 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpam-cap Priority: important Section: libs Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Werner Architecture: amd64 Source: libcap2 Version: 1:2.24-0ubuntu2 Replaces: libcap2-bin (<< 1:2.22-1.1) Depends: libc6 (>= 2.4), libcap2 (>= 2.10), libpam0g (>= 0.99.7.1), libpam-runtime (>= 1.1.3-2~) Breaks: libcap2-bin (<< 1:2.22-1.1) Filename: pool/main/libc/libcap2/libpam-cap_2.24-0ubuntu2_amd64.deb Size: 7058 MD5sum: 32d717f1df9594735a06f0cb2f860b8a SHA1: ad1c3a139d6a0fe57a626ca31d1f3e91aff1a185 SHA256: 24bd94291e6690e9fd4ffd1d6d1ffbd08801ed6151064c4bb0b36124a3c3509d Description: PAM module for implementing capabilities Multi-Arch: same Homepage: http://sites.google.com/site/fullycapable/ Description-md5: 96b287a218b648ef7b2f0f3aa67ebf50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpam-ck-connector Priority: optional Section: admin Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: consolekit Version: 0.4.5-3.1ubuntu2 Depends: libc6 (>= 2.4), libck-connector0 (= 0.4.5-3.1ubuntu2), libdbus-1-3 (>= 1.0.2), libpam0g (>= 0.99.7.1), libpam-runtime (>= 1.0.1-6) Filename: pool/main/c/consolekit/libpam-ck-connector_0.4.5-3.1ubuntu2_amd64.deb Size: 8266 MD5sum: 7b5d36806e3e8b676289aab87cd91b14 SHA1: 280838d3a0b89442a5ab4d9ef46e612f34e3b2d6 SHA256: 1d8d88d4977bc3b918aae532ff190fa14b78dea65c3fc0e776bd958ea8529f54 Description: ConsoleKit PAM module Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/ConsoleKit Description-md5: ac8bf0bb4ffed67d7a5236a01dc77fa8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libpam-cracklib Priority: optional Section: admin Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: pam Version: 1.1.8-1ubuntu2 Replaces: libpam-modules (<< 1.1.0-3), libpam0g-cracklib Depends: libc6 (>= 2.14), libcrack2 (>= 2.8.12), libpam0g (>= 1.1.1), libpam-runtime (>= 1.0.1-6), cracklib-runtime, wamerican | wordlist Filename: pool/main/p/pam/libpam-cracklib_1.1.8-1ubuntu2_amd64.deb Size: 13072 MD5sum: d5d2976e3f21aa69b0892ddedc4e4fc8 SHA1: 6ee8911ec4943b366c830c9a604b3d716155fef2 SHA256: 5b00c7a215b2a3ed7e397a91c98e19b5242a08174d72312fdf59fc9ccef74429 Description: PAM module to enable cracklib support Multi-Arch: same Homepage: http://pam.sourceforge.net/ Description-md5: 0f6f2fd98962cbee59aa831979aad971 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-doc Priority: optional Section: doc Installed-Size: 966 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: all Source: pam Version: 1.1.8-1ubuntu2 Provides: pam-doc Filename: pool/main/p/pam/libpam-doc_1.1.8-1ubuntu2_all.deb Size: 210800 MD5sum: b916de6a6ece9e66660c51b7f0368912 SHA1: 160c6ddb2188ab52d97e4c6020406e143619cd26 SHA256: a6b6bff5673b5355d9d5ccb92790427332df719cdbff7affc7fa2d3722cca951 Description: Documentation of PAM Homepage: http://pam.sourceforge.net/ Description-md5: 176a64d4b15e68f5628dec9ba5739e05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpam-gnome-keyring Priority: optional Section: admin Installed-Size: 337 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: gnome-keyring Version: 3.10.1-1ubuntu4 Depends: libc6 (>= 2.14), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), libpam-runtime (>= 1.0.1-6) Pre-Depends: multiarch-support Recommends: gnome-keyring Filename: pool/main/g/gnome-keyring/libpam-gnome-keyring_3.10.1-1ubuntu4_amd64.deb Size: 36004 MD5sum: da1ebdb4535c244aec8d62b66b5632cc SHA1: 137053c3b5a700bd39e608722a28909cae31aa03 SHA256: f393d3c173fbc1bf3a4da3a35296efb0f5a34922e9d3aa2dbf2be33e6a0510a3 Description: PAM module to unlock the GNOME keyring upon login Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 3673d193052d71d8a785db5f957ea3ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpam-krb5 Priority: optional Section: net Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Russ Allbery Architecture: amd64 Version: 4.6-2 Depends: libc6 (>= 2.14), libkrb5-3 (>= 1.10+dfsg~alpha1), libpam0g (>= 1.1.3-2~), krb5-config, libpam-runtime (>= 1.0.1-6~) Pre-Depends: multiarch-support Conflicts: libpam-heimdal Filename: pool/main/libp/libpam-krb5/libpam-krb5_4.6-2_amd64.deb Size: 65370 MD5sum: 3b9c5c966092f19580ecfa67a3405271 SHA1: f533be527971a9b908b6a01e3d04774fd493065c SHA256: 39ea800a0e6e00dee3a634cadef5b17e5961487c613447a90886add47c49e1be Description: PAM module for MIT Kerberos Multi-Arch: same Homepage: http://www.eyrie.org/~eagle/software/pam-krb5/ Description-md5: 3a766fc1201c20fb86b96c96419f34d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-ldap Priority: extra Section: admin Installed-Size: 163 Maintainer: Ubuntu Core Developers Original-Maintainer: Richard A Nelson (Rick) Architecture: amd64 Version: 184-8.5ubuntu3 Depends: libc6 (>= 2.14), libldap-2.4-2 (>= 2.4.7), libpam0g (>= 1.1.3-2), libpam-runtime (>= 1.0.1-6), ldap-auth-config (>= 0.5.2) Suggests: libnss-ldapd | libnss-ldap Filename: pool/main/libp/libpam-ldap/libpam-ldap_184-8.5ubuntu3_amd64.deb Size: 45982 MD5sum: 93c03a1689fc6a726155a6803def3d24 SHA1: f452e800d4b5dc734ebc6b5e8150a34b2d6c4343 SHA256: 0113fe1220318d9709730b9e4e6b0320f468926eadc6a1d7f5ade832b77de5bd Description: Pluggable Authentication Module for LDAP Multi-Arch: same Description-md5: 8658200211e507017f592c1760c69a3a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-modules Priority: required Section: admin Installed-Size: 840 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: pam Version: 1.1.8-1ubuntu2 Replaces: libpam-umask, libpam0g-util Provides: libpam-mkhomedir, libpam-motd, libpam-umask Pre-Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.15), libdb5.3, libpam0g (>= 1.1.3-2), libselinux1 (>= 2.1.9), debconf (>= 0.5) | debconf-2.0, libpam-modules-bin (= 1.1.8-1ubuntu2) Conflicts: libpam-mkhomedir, libpam-motd, libpam-umask Filename: pool/main/p/pam/libpam-modules_1.1.8-1ubuntu2_amd64.deb Size: 234034 MD5sum: f2b73749f1b48f8d33a9af9e2a68a3c9 SHA1: 7563dbc98ae8e184f1760dbbc8c337054779093f SHA256: e171a6f1624c0af5c2b5a84447cb81733ddadd2dceb6fa74c96499763cd80917 Description: Pluggable Authentication Modules for PAM Multi-Arch: same Homepage: http://pam.sourceforge.net/ Description-md5: 234b9429528430ead853cc8bbe97ffb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpam-modules-bin Priority: required Section: admin Installed-Size: 225 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: pam Version: 1.1.8-1ubuntu2 Replaces: libpam-modules (<< 1.1.3-8) Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.14), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32) Filename: pool/main/p/pam/libpam-modules-bin_1.1.8-1ubuntu2_amd64.deb Size: 31110 MD5sum: ec564db2a16f43eaab7abfe5387bbdd8 SHA1: 0ba869b46e16e8d8bfd8a60632bcec5284046e13 SHA256: a1f84000f8aa38bce2b7dfe5a7aa7c85a0b59100ef3e5d6f46d5deb493e83a92 Description: Pluggable Authentication Modules for PAM - helper binaries Multi-Arch: foreign Homepage: http://pam.sourceforge.net/ Description-md5: 25d278fc7450d5202a9a137f71302e58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpam-mount Priority: extra Section: admin Installed-Size: 400 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Kleineidam Architecture: amd64 Version: 2.14-1 Depends: libc6 (>= 2.14), libcryptsetup4 (>= 2:1.4), libhx28, libmount1 (>= 2.19.1), libpam0g (>= 0.99.7.1), libpcre3 (>= 8.10), libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.7.4), mount (>= 2.12-3), libpam-runtime (>= 1.0.1-6), base-files (>= 6.4) Suggests: ncpfs, cifs-utils, openssl, fuse, davfs2, lsof, psmisc, xfsprogs, sshfs, tc-utils Conflicts: dmsetup (<< 2:1.02.48-1), libncp (<< 2.2.0.19.10) Filename: pool/main/libp/libpam-mount/libpam-mount_2.14-1_amd64.deb Size: 89124 MD5sum: 4f448b858d691e6967f2ff58b2e32ec9 SHA1: 3917c3a3659173d394e124f465d43a7c459a374a SHA256: 779c21f6aa9482da27c56ca346493a4d9e4e639f4e290b31ab31932ef981576e Description: PAM module that can mount volumes for a user session Homepage: http://pam-mount.sourceforge.net/ Description-md5: 404681eed9f6e4181dcd6804fad3a303 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-p11 Priority: optional Section: admin Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: pam-p11 Version: 0.1.5-3ubuntu1 Replaces: libpam-opensc Provides: libpam-opensc Depends: libc6 (>= 2.14), libp11-2 (>= 0.2.8), libpam0g (>= 0.99.7.1), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Conflicts: libpam-opensc Filename: pool/main/p/pam-p11/libpam-p11_0.1.5-3ubuntu1_amd64.deb Size: 18466 MD5sum: 1ad6322b2708215feb0e1073e45983cf SHA1: 0f2811ae81dbda689fa8ba0d9afaac0b92add183 SHA256: eba1dbc65c8e5e44f0ecff9c39b0b93263714c5d24dabf5fc110f0349300452c Description: PAM module for using PKCS#11 smart cards Multi-Arch: same Homepage: http://www.opensc-project.org/pam_p11/ Description-md5: e786ad7783aa69643c0ff5dc4425cabb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-pwquality Priority: optional Section: admin Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libpwquality Version: 1.2.3-1ubuntu1 Depends: libc6 (>= 2.4), libpam0g (>= 1.1.1), libpwquality1 (>= 1.1.0), libpam-runtime Pre-Depends: multiarch-support Filename: pool/main/libp/libpwquality/libpam-pwquality_1.2.3-1ubuntu1_amd64.deb Size: 9942 MD5sum: fbdf60e59655b56afb4a22671f5e9b9e SHA1: f0236d0b395445505102e6ad8427d838828c8492 SHA256: ea1eacc25a8077a803b7ac5d9f7edbb83aba5259851df5339e52bb64026cfdda Description: PAM module to check password strength Multi-Arch: same Homepage: https://fedorahosted.org/libpwquality/ Description-md5: a0adf9a37eba9a9b210c968269f49c5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpam-radius-auth Priority: extra Section: libs Installed-Size: 99 Maintainer: Ubuntu Core Developers Original-Maintainer: Fabio M. Di Nitto Architecture: amd64 Version: 1.3.17-0ubuntu4 Depends: libc6 (>= 2.15), libpam0g (>= 0.99.7.1), debconf | debconf-2.0 Suggests: radius-server Filename: pool/main/libp/libpam-radius-auth/libpam-radius-auth_1.3.17-0ubuntu4_amd64.deb Size: 25862 MD5sum: 6cad8b15db772d924fe1f7e06a833dc5 SHA1: feb7aa31dc0c9a0173ca393aa664d8fbb6371165 SHA256: 034ca839448bd904501ce6d62db53bd0ffa106b6c2a24c955cf61103b8f921e7 Description: The PAM RADIUS authentication module Description-md5: 5b2f48986f10af7fd49eae258ceb5b6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-runtime Priority: required Section: admin Installed-Size: 300 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: all Source: pam Version: 1.1.8-1ubuntu2 Replaces: libpam0g-dev, libpam0g-util Depends: debconf (>= 0.5) | debconf-2.0, debconf (>= 1.5.19) | cdebconf, libpam-modules (>= 1.0.1-6) Conflicts: libpam0g-util Filename: pool/main/p/pam/libpam-runtime_1.1.8-1ubuntu2_all.deb Size: 37720 MD5sum: 00bbabf3246623565cf6713e800cec3e SHA1: 7f2a48605c0cf9d1aeea8060a17a6e8bced7f60b SHA256: 865acf4e0a88bcecf246d5f2d4510a820fc32eec97dc673dbf320b1b3ee2c6dc Description: Runtime support for the PAM library Multi-Arch: foreign Homepage: http://pam.sourceforge.net/ Description-md5: bc15ddbf92ee7965a8588141c54bb5a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpam-smbpass Priority: extra Section: admin Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libpam-runtime (>= 1.0.1-6), samba-common (= 2:4.1.6+dfsg-1ubuntu2), libbsd0 (>= 0.0), libc6 (>= 2.8), libpam0g (>= 0.99.7.1), libtalloc2 (>= 2.0.4~git20101213), libwbclient0 (>= 2:4.0.3+dfsg1), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Suggests: samba Filename: pool/main/s/samba/libpam-smbpass_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 20426 MD5sum: 5f9c2418230f4aeb01977e79fead09ec SHA1: 6b6c44e29fc82acdc86e8585fb696e117994d15f SHA256: b448240b68310e050753d0d80482102a44dd9bd110f56f8687afd830c2650e96 Description: pluggable authentication module for Samba Multi-Arch: same Homepage: http://www.samba.org Description-md5: 99a52e9b231c8359c64eb7bde1bc1cb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server Package: libpam-sss Priority: extra Section: utils Installed-Size: 101 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.14), libpam0g (>= 0.99.7.1), libpam-runtime (>= 1.0.1-6), libpam-pwquality (>= 1.2.2-1) Recommends: sssd Filename: pool/main/s/sssd/libpam-sss_1.11.5-1ubuntu3_amd64.deb Size: 19834 MD5sum: 572a523558f4846ec13d9978c6a16ec4 SHA1: aa322847c8d847da576cada42d8d0a01f61c1673 SHA256: 13ee9ffff61566903082c818b985b31fe8e2e9443d357f0257b08d6d64cbd434 Description: Pam module for the System Security Services Daemon Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 917151896ca3a8e201cc53bf9cde21fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpam-systemd Priority: standard Section: admin Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Replaces: libpam-xdg-support, systemd-services (<< 198-0ubuntu7) Provides: libpam-xdg-support Depends: libc6 (>= 2.14), libcap2 (>= 2.10), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libpam0g (>= 0.99.7.1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), systemd-services (= 204-5ubuntu20), libpam-runtime (>= 1.0.1-6) Pre-Depends: multiarch-support Conflicts: libpam-xdg-support Breaks: systemd-services (<< 198-0ubuntu7) Filename: pool/main/s/systemd/libpam-systemd_204-5ubuntu20_amd64.deb Size: 25500 MD5sum: 96d3fafe4eabb48f56b48c581ead42df SHA1: 36e0eeaa86ca3972f8fbe47b1f3f7228ad35df19 SHA256: 0648140f29be053ebc4b134fb5e500ad62e347f974796fcff899d1aa36793b6c Description: system and service manager - PAM module Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: edcf62758ab0554992770cd6ee003898 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libpam0g Priority: required Section: libs Installed-Size: 225 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: pam Version: 1.1.8-1ubuntu2 Replaces: libpam0g-util Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.14), debconf (>= 0.5) | debconf-2.0 Pre-Depends: multiarch-support Suggests: libpam-doc Filename: pool/main/p/pam/libpam0g_1.1.8-1ubuntu2_amd64.deb Size: 55830 MD5sum: 21c453d59675e604b9fe64702e7cb9f0 SHA1: 5162b8f56eb7342cebb22b3d8dfa8325f62b7f27 SHA256: 175bf3c8bbac431b60b5907a281489b7c4f96499a67f12241c03f5d60e1ed7cb Description: Pluggable Authentication Modules library Multi-Arch: same Homepage: http://pam.sourceforge.net/ Description-md5: af00a40029e1e1d2ad04c042c3b18095 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpam0g-dev Priority: optional Section: libdevel Installed-Size: 378 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: pam Version: 1.1.8-1ubuntu2 Provides: libpam-dev Depends: libpam0g (= 1.1.8-1ubuntu2), libc6-dev | libc-dev Filename: pool/main/p/pam/libpam0g-dev_1.1.8-1ubuntu2_amd64.deb Size: 108948 MD5sum: 7af214d49d6a898f982d8159d8f1fdea SHA1: 3df75deaad0eb6cc83d4e8a7c5c7ee928050caf9 SHA256: 4ba7238c2334444fd948c47b7767a5fc5d271f1c2d9cbde510b5a3eface650b1 Description: Development files for PAM Multi-Arch: same Homepage: http://pam.sourceforge.net/ Description-md5: 61cf45bcc7cd0edb21f16d49deed0ea2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpango-1.0-0 Priority: optional Section: libs Installed-Size: 530 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: libpango1.0-0 (<< 1.32.5-2) Provides: pango1.0-multiarch-modver-1.8.0 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libthai0 (>= 0.1.12), fontconfig (>= 2.1.91) Pre-Depends: multiarch-support Suggests: ttf-baekmuk, ttf-arphic-gbsn00lp, ttf-arphic-bsmi00lp, ttf-arphic-gkai00mp, ttf-arphic-bkai00mp Conflicts: plymouth (<< 0.8.8-0ubuntu7) Breaks: libpango1.0-0 (<< 1.32.5-2) Filename: pool/main/p/pango1.0/libpango-1.0-0_1.36.3-1ubuntu1_amd64.deb Size: 148764 MD5sum: 9c998a45854ad52cc8ef2c1710e8834d SHA1: a4c84d9f05d23f6539a02018a2cf44bce7803668 SHA256: b2b5783e49fa26f52c18441ab3232baaf8a48f3658407c6103e896fb60c855d3 Description: Layout and rendering of internationalized text Multi-Arch: same Description-md5: e707c4d451a8db4e75f943851824d37d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpango1.0-0 Priority: optional Section: libs Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pango1.0 Version: 1.36.3-1ubuntu1 Provides: pango1.0-multiarch-modver-1.8.0 Depends: libpango-1.0-0 (= 1.36.3-1ubuntu1), libpangocairo-1.0-0 (= 1.36.3-1ubuntu1), libpangoxft-1.0-0 (= 1.36.3-1ubuntu1), libpangoft2-1.0-0 (= 1.36.3-1ubuntu1), libpangox-1.0-0 (>= 0.0.2-2~) Filename: pool/main/p/pango1.0/libpango1.0-0_1.36.3-1ubuntu1_amd64.deb Size: 3472 MD5sum: 1822f0bb67ea7690492c60a5d01af23e SHA1: 698fe77a756724231410ffae97b5d51fd4e2f096 SHA256: f124f4b1920a3972e9f33b9a24b2c45e675dac9ebdeaa8ddf72bcbcffb64bad9 Description: Layout and rendering of internationalized text Multi-Arch: same Description-md5: a6765f5737bf3e63f6396af5884ee72a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpango1.0-0-dbg Priority: extra Section: libdevel Installed-Size: 1975 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pango1.0 Version: 1.36.3-1ubuntu1 Depends: libpango-1.0-0 (= 1.36.3-1ubuntu1) | libpangocairo-1.0-0 (= 1.36.3-1ubuntu1) | libpangoft2-1.0-0 (= 1.36.3-1ubuntu1) | libpangoxft-1.0-0 (= 1.36.3-1ubuntu1) Filename: pool/main/p/pango1.0/libpango1.0-0-dbg_1.36.3-1ubuntu1_amd64.deb Size: 463472 MD5sum: 084354c38d820b39ee5b28b689725fcc SHA1: 4f64b302f5240cb808790c6d49c57b30842b9876 SHA256: 479d61d2b1a0dfbafdb513d63dbd759b443feb142798186475b6cc851d6ffe5f Description: Pango library and debugging symbols Description-md5: 646a5e3f72c4eb7b31d348e627461278 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpango1.0-dev Priority: optional Section: libdevel Installed-Size: 1896 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: gir-repository-dev, gobject-introspection-repository Depends: libc6 (>= 2.7), libcairo2 (>= 1.12.10), libfontconfig1 (>= 2.9.0), libglib2.0-0 (>= 2.34.0), libpango-1.0-0 (= 1.36.3-1ubuntu1), libpangocairo-1.0-0 (= 1.36.3-1ubuntu1), libpangoft2-1.0-0 (= 1.36.3-1ubuntu1), libpangoxft-1.0-0 (= 1.36.3-1ubuntu1), libx11-6, libxft2 (>> 2.1.1), gir1.2-pango-1.0 (= 1.36.3-1ubuntu1), libglib2.0-dev (>= 2.34.0), libfreetype6-dev, libx11-dev, libxrender-dev, pkg-config, libxft-dev, libfontconfig1-dev (>= 2.10.91), libharfbuzz-dev (>= 0.9.9), libcairo2-dev (>= 1.12.10) Recommends: debhelper Suggests: libpango1.0-doc, imagemagick Filename: pool/main/p/pango1.0/libpango1.0-dev_1.36.3-1ubuntu1_amd64.deb Size: 277864 MD5sum: e1bf95cd24c61d157c1387b97038e5f2 SHA1: 2785a03762d8bfe39f43c6dbdea014344ac489df SHA256: d5adee602a3247706ce4b9c1c281914d97e146638752f204df7b47cb8f8a010b Description: Development files for the Pango Description-md5: 0f883ef601a4a2795f29e08f094ec275 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpango1.0-doc Priority: optional Section: doc Installed-Size: 2440 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: pango1.0 Version: 1.36.3-1ubuntu1 Depends: lynx | www-browser Recommends: libglib2.0-doc Filename: pool/main/p/pango1.0/libpango1.0-doc_1.36.3-1ubuntu1_all.deb Size: 230490 MD5sum: 33aae3df993ea8ec32443457bec0fe46 SHA1: 3cfb4a19d337f39cd8b228ad85056bff31e547f2 SHA256: 30108b96361f68843e1edeb72616a44853dd7782ace8112a40cf042b4447cdf1 Description: Documentation files for the Pango Multi-Arch: foreign Description-md5: 129d8b92f126e87c9c5d056b414e9dc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libpangocairo-1.0-0 Priority: optional Section: libs Installed-Size: 259 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: libpango1.0-0 (<< 1.32.5-2) Depends: libc6 (>= 2.4), libcairo2 (>= 1.12.10), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.32.4), libpangoft2-1.0-0 (>= 1.28.1) Pre-Depends: multiarch-support Breaks: libpango1.0-0 (<< 1.32.5-2) Filename: pool/main/p/pango1.0/libpangocairo-1.0-0_1.36.3-1ubuntu1_amd64.deb Size: 19948 MD5sum: 22456a9ba78dccbb6aa923643d0c0cb0 SHA1: be685afdafd452bd1d6a088cdf0360c05ade486d SHA256: b7709ec9231d9aa835627f51c13d5581fe916c11b60fd1e5055047ee05bbcdee Description: Layout and rendering of internationalized text Multi-Arch: same Description-md5: e707c4d451a8db4e75f943851824d37d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpangoft2-1.0-0 Priority: optional Section: libs Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: libpango1.0-0 (<< 1.32.5-2) Depends: libc6 (>= 2.2.5), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libglib2.0-0 (>= 2.37.3), libharfbuzz0b (>= 0.9.9), libpango-1.0-0 (>= 1.36.0) Pre-Depends: multiarch-support Breaks: libpango1.0-0 (<< 1.32.5-2) Filename: pool/main/p/pango1.0/libpangoft2-1.0-0_1.36.3-1ubuntu1_amd64.deb Size: 32630 MD5sum: d3bb69dbee95d5854e38cd032c6dba0b SHA1: 5422fa26fb7ee326099580b8de18def330ecb039 SHA256: d56cd1aa33e712886fd5229e1e104079cb848cae88aa28f2b2ca1d0ac1c50252 Description: Layout and rendering of internationalized text Multi-Arch: same Description-md5: e707c4d451a8db4e75f943851824d37d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpangomm-1.4-1 Priority: optional Section: libs Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pangomm Version: 2.34.0-1ubuntu1 Depends: libc6 (>= 2.14), libcairomm-1.0-1 (>= 1.6.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libglibmm-2.4-1c2a (>= 2.36.2), libpango-1.0-0 (>= 1.23.0), libpangocairo-1.0-0 (>= 1.23.0), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/pangomm/libpangomm-1.4-1_2.34.0-1ubuntu1_amd64.deb Size: 40512 MD5sum: 9f7d0e9ad638aedda080daae4267b5c2 SHA1: 4ca294a13959da08acdc59030e3b8f6f800a08e4 SHA256: 26207b8fbf4cf63b9cc5751035e3459df91f7354bc73b0b7cad15b5ab9985be4 Description: C++ Wrapper for pango (shared libraries) Multi-Arch: same Homepage: http://gtkmm.org Description-md5: 1e9c4170688ecdff1ffca9576227fc09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpangomm-1.4-dbg Priority: extra Section: libdevel Installed-Size: 1240 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pangomm Version: 2.34.0-1ubuntu1 Depends: libpangomm-1.4-1 (= 2.34.0-1ubuntu1) Filename: pool/main/p/pangomm/libpangomm-1.4-dbg_2.34.0-1ubuntu1_amd64.deb Size: 283444 MD5sum: c3721816c9e5207f3383281336253e89 SHA1: aa3bad3db42516ef42e0f367741659430af47f70 SHA256: e8a0f9dc31eca2fdd2238e65b2e1ab62ebdb88cd4ce68a0f42c1bbfc83c6586d Description: C++ Wrapper for pango (debugging symbols) Multi-Arch: same Homepage: http://gtkmm.org Description-md5: e7e8b63840a3a14ade8ea4634eb3df26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpangomm-1.4-dev Priority: optional Section: libdevel Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pangomm Version: 2.34.0-1ubuntu1 Depends: libpangomm-1.4-1 (= 2.34.0-1ubuntu1), libcairomm-1.0-dev (>= 1.2.2), libglibmm-2.4-dev (>= 2.36.0), libpango1.0-dev (>= 1.23.0) Filename: pool/main/p/pangomm/libpangomm-1.4-dev_2.34.0-1ubuntu1_amd64.deb Size: 43848 MD5sum: c26aa9a6d1fef64394d732985c1e18b7 SHA1: 778ba30ff8e501457c9dab2ac87508c05558db21 SHA256: eb6072032e30e04d2b35c26c19bfb5ead6c03d0f0e4aa3432fdbc1fbc82f062f Description: C++ Wrapper for pango (development files) Multi-Arch: same Homepage: http://gtkmm.org Description-md5: 640344f02f0bb5f2df308dd78949912f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpangomm-1.4-doc Priority: optional Section: doc Installed-Size: 2760 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: pangomm Version: 2.34.0-1ubuntu1 Depends: lynx | www-browser, doc-base Suggests: gtkmm-documentation Filename: pool/main/p/pangomm/libpangomm-1.4-doc_2.34.0-1ubuntu1_all.deb Size: 190886 MD5sum: 22733be1debb1c52ea04d294708549bc SHA1: 5ea02e0556ca573ec75da5bad0912acd51fd31e8 SHA256: bdba0f41918b9c248788f11491072794e715ab0ce41f6210549b952abeaeb201 Description: C++ Wrapper for pango (documentation) Multi-Arch: foreign Homepage: http://gtkmm.org Description-md5: f2978a005406186a6db529e233b308be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpangox-1.0-0 Priority: extra Section: oldlibs Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pangox-compat Version: 0.0.2-4ubuntu1 Replaces: libpango1.0-0 (<< 1.32.5-2) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.34.0), libpango-1.0-0 (>= 1.32.5-3~), libx11-6 Pre-Depends: multiarch-support Breaks: libpango1.0-0 (<< 1.32.5-2) Filename: pool/main/p/pangox-compat/libpangox-1.0-0_0.0.2-4ubuntu1_amd64.deb Size: 41124 MD5sum: 31ab4bf8faa0f230beda8ac5a8f95706 SHA1: 52a36a02d94ef51261170d22e05265e3f143c43a SHA256: 7b6464350f280a58026f0b5ce146af1f6a5f2068d36b5a79b27be872b3810317 Description: pango library X backend Multi-Arch: same Description-md5: 553d64a8dceaf05144b88971e17a16b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpangox-1.0-dev Priority: extra Section: libdevel Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pangox-compat Version: 0.0.2-4ubuntu1 Replaces: libpango1.0-dev (<< 1.32.5-2) Depends: libpangox-1.0-0 (= 0.0.2-4ubuntu1), libglib2.0-dev (>= 2.34.0), libpango1.0-dev, libx11-dev, libxrender-dev, pkg-config Breaks: libpango1.0-dev (<< 1.32.5-2) Filename: pool/main/p/pangox-compat/libpangox-1.0-dev_0.0.2-4ubuntu1_amd64.deb Size: 41294 MD5sum: a8d87b8fa8327444dabd65d5f73e9be4 SHA1: 30562507914af35ff4b2ce57ec89c51ab2cb434d SHA256: ed6f3370155e7b216eddafb15fdf613149c4ad0c924ed7181b2ca97d6967310d Description: pango library X backend - development files Description-md5: 9f3fbaadca23a7621c45c18b9e239868 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpangoxft-1.0-0 Priority: optional Section: libs Installed-Size: 242 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: libpango1.0-0 (<< 1.32.5-2) Depends: libc6 (>= 2.4), libfontconfig1 (>= 2.9.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.22.0), libpangoft2-1.0-0 (>= 1.14.0), libx11-6, libxft2 (>> 2.1.1), libxrender1 Pre-Depends: multiarch-support Breaks: libpango1.0-0 (<< 1.32.5-2) Filename: pool/main/p/pango1.0/libpangoxft-1.0-0_1.36.3-1ubuntu1_amd64.deb Size: 14824 MD5sum: 6a1fab9138424da1bf9fa9073ced4dd0 SHA1: 240af635a3c53bd34d89d9a9fb1a3197eac2b0cf SHA256: 22aecf5fe36ec4805c8252d5bf5ea5e1842979274cf2bf9a22b870f0e6e025fb Description: Layout and rendering of internationalized text Multi-Arch: same Description-md5: e707c4d451a8db4e75f943851824d37d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpaper-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Sacco Architecture: amd64 Source: libpaper Version: 1.1.24+nmu2ubuntu3 Replaces: libpaperg-dev (<< 1.1.9) Provides: libpaperg-dev Depends: libpaper1 (= 1.1.24+nmu2ubuntu3) Filename: pool/main/libp/libpaper/libpaper-dev_1.1.24+nmu2ubuntu3_amd64.deb Size: 7576 MD5sum: a1b5c6616b689e233b29bf56ff7e1a18 SHA1: fc7f18525857850eab629bc85a139ce92faf774b SHA256: 73e72a12bb66791a5c687049fb0401dc9bb4bc9dab5c9ea6ccf8924fefeb48d0 Description: library for handling paper characteristics (development files) Multi-Arch: same Description-md5: 6c8179d39b674ad3187dd08617ac4aed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpaper-utils Priority: optional Section: utils Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Sacco Architecture: amd64 Source: libpaper Version: 1.1.24+nmu2ubuntu3 Replaces: libpaper1 (<< 1.1.10), libpaperg (<< 1.1.9) Depends: libc6 (>= 2.4), libpaper1 Filename: pool/main/libp/libpaper/libpaper-utils_1.1.24+nmu2ubuntu3_amd64.deb Size: 8244 MD5sum: c1785586284f17aff8249d186e5c6984 SHA1: 75f20c11f3e9783d54410305c04d52650d2e2860 SHA256: c571a18b86ee556a44a8250539f5cfa57870ad8ee100f70ab87be40a1aad924b Description: library for handling paper characteristics (utilities) Multi-Arch: foreign Description-md5: f001a626709825a07a2ba9c24bd625ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpaper1 Priority: optional Section: libs Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Sacco Architecture: amd64 Source: libpaper Version: 1.1.24+nmu2ubuntu3 Replaces: libpaperg (<< 1.1.9) Provides: libpaperg Depends: libc6 (>= 2.14), debconf (>= 0.5) | debconf-2.0, ucf (>= 0.28) Pre-Depends: multiarch-support Recommends: libpaper-utils Filename: pool/main/libp/libpaper/libpaper1_1.1.24+nmu2ubuntu3_amd64.deb Size: 13450 MD5sum: 531fe052e528e0e85be967b9384701b8 SHA1: 4b1c1d5b154de71ab106df7cdbb50ab788b31c33 SHA256: e814f427670accafe6ea86916ab8ee5ed3a538cb378c292faf9524cf31d42311 Description: library for handling paper characteristics Multi-Arch: same Description-md5: d6054385af0ea189dc57ebb5c50936f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpar-dist-perl Priority: optional Section: perl Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.49-2 Depends: perl Recommends: libarchive-zip-perl, libyaml-libyaml-perl | libyaml-perl | libyaml-tiny-perl | libyaml-syck-perl Filename: pool/main/libp/libpar-dist-perl/libpar-dist-perl_0.49-2_all.deb Size: 22352 MD5sum: e73b1e0346115d39e3ae65ab7964dd32 SHA1: e0337d150bb4489de437d5fdc6ec50175d87f820 SHA256: 03fd08446dbb383dc3f76c06a78f1c96e45f95cc39d0bab95f3c22fc402c5e9b Description: perl module to create and manipulate PAR distributions Homepage: https://metacpan.org/release/PAR-Dist/ Description-md5: 90e5bcc9819d97c47ac5d1d9a12bcbbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libparams-classify-perl Priority: optional Section: perl Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.013-4build2 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4) Suggests: libscalar-number-perl Filename: pool/main/libp/libparams-classify-perl/libparams-classify-perl_0.013-4build2_amd64.deb Size: 23034 MD5sum: 8394f6da8a1c00fe4730afc2ddd4f7b6 SHA1: 97dc6c2da3dcce100534f1cd6f9ff2f2a18aa504 SHA256: d69ac1f286f919c52569092eec76bcc464d6ec20558458448312b8cb258a6204 Description: Perl module for argument type classification Homepage: http://search.cpan.org/dist/Params-Classify/ Description-md5: 87d5673492184545f929dd5fec511f9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libparams-coerce-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.14-1 Depends: perl, libparams-util-perl Filename: pool/main/libp/libparams-coerce-perl/libparams-coerce-perl_0.14-1_all.deb Size: 12810 MD5sum: 3ff8d32702ad042fef4b2c2f2e078a11 SHA1: ca3380c94518cb01d69d9bbc42256f6f0b8289b5 SHA256: 408bc6e0c72a92e38411a34ff5f0b9a670f66f269c3df17f10e9244bc38fc735 Description: Perl module to permit parameter coercion for classes Homepage: http://search.cpan.org/dist/Params-Coerce/ Description-md5: 04abe85bb9a4e225bf3bf7f457960f94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libparams-util-perl Priority: optional Section: perl Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Genannt Architecture: amd64 Version: 1.07-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libp/libparams-util-perl/libparams-util-perl_1.07-1build1_amd64.deb Size: 22380 MD5sum: 4bb1fd3ec0eecbce00a2637b33d83fbb SHA1: ed88511978095daee29de48b0cca15a23a609717 SHA256: 292695cd9478c529b3b28153704c8926638047aafae0319d06886525816d72df Description: Perl extension for simple stand-alone param checking functions Homepage: http://search.cpan.org/dist/Params-Util/ Description-md5: f808a0c9ede46aa4646c215676f73346 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libparams-validate-perl Priority: optional Section: perl Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.08-1 Depends: perl (>= 5.18.1-4build1), perlapi-5.18.1, libc6 (>= 2.2.5), libmodule-implementation-perl Filename: pool/main/libp/libparams-validate-perl/libparams-validate-perl_1.08-1_amd64.deb Size: 52588 MD5sum: d43ef0350084570a1429ae73501daa31 SHA1: 4a6d7232c5d0aa30041e30f54227bf1daba7b2ce SHA256: b9f77930e4530c01a0f528e51aba6d4c28907d07354f7f48a80f2c65a43e9728 Description: Perl module to validate parameters to Perl method/function calls Homepage: https://metacpan.org/release/Params-Validate/ Description-md5: 5e447d8721950161f2c85427a998a5ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libparse-debcontrol-perl Priority: optional Section: perl Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.005-4 Depends: perl, libio-stringy-perl, libwww-perl, liberror-perl, libexporter-lite-perl Recommends: libtie-ixhash-perl Filename: pool/main/libp/libparse-debcontrol-perl/libparse-debcontrol-perl_2.005-4_all.deb Size: 24248 MD5sum: 82bdc7c643fdfc27504bd43a4103372e SHA1: 90b6561037e7277269c06d51e9d0cc4dfc36fe36 SHA256: c0eb06f4e4585f03ceff24bec3144661070af4491eb2b26f659812c94c68b2bc Description: parser for debian control-like files Homepage: https://metacpan.org/release/Parse-DebControl/ Description-md5: 31fd75256aab72c27dfdb97f5e3f18e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libparse-debianchangelog-perl Priority: optional Section: perl Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Frank Lichtenheld Architecture: all Version: 1.2.0-1ubuntu1 Depends: perl, libtimedate-perl, libclass-accessor-perl, liblocale-gettext-perl, libio-string-perl Suggests: libhtml-parser-perl, libhtml-template-perl, libxml-simple-perl Filename: pool/main/libp/libparse-debianchangelog-perl/libparse-debianchangelog-perl_1.2.0-1ubuntu1_all.deb Size: 53988 MD5sum: 43a272971d31c5b4341358320f66d3f5 SHA1: 48229cc3883ee684cb348d0db8f34593b3862d78 SHA256: c22709a1db1c67ed2dc964c170f70d1636445ff5d091533ab0be7cafc0fe1a83 Description: parse Debian changelogs and output them in other formats Description-md5: 08c18222d22f14a66c281bc5e2f11aa7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libparse-pidl-perl Priority: optional Section: perl Installed-Size: 591 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libparse-yapp-perl, perl Recommends: samba-dev Suggests: libwireshark-dev Filename: pool/main/s/samba/libparse-pidl-perl_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 94212 MD5sum: 85e2d1ef3477801a7766b62c011cfa54 SHA1: 60a239e3b05e7e096986c6affadcca97666559df SHA256: e809bf0ec4952f91a74f438a580d07f686b994a4cb7dbf831dcac2e6b02d3224 Description: IDL compiler written in Perl Homepage: http://www.samba.org Description-md5: 34bf529609e38c1052ad365d4ebe9374 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libparse-recdescent-perl Priority: optional Section: perl Installed-Size: 399 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.967009+dfsg-1 Depends: perl Breaks: libcss-perl (<< 1.08-1+nmu2), libmail-imapclient-perl (<< 3.30-2) Filename: pool/main/libp/libparse-recdescent-perl/libparse-recdescent-perl_1.967009+dfsg-1_all.deb Size: 157548 MD5sum: 1d52a4d66a1f5c3d7dbbde3cf195954f SHA1: 6401d82c196c6a420b98d9a21c25d36477604047 SHA256: 442376e5e0ab65a5b0ca32efd9cd14882e5f7d564c5a5844423da19e696b87eb Description: Perl module to create and use recursive-descent parsers Homepage: http://search.cpan.org/dist/Parse-RecDescent/ Description-md5: 85557a0ccc0e903cc0864afc0029c180 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libparse-yapp-perl Priority: optional Section: perl Installed-Size: 200 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.05-12 Depends: perl Filename: pool/main/libp/libparse-yapp-perl/libparse-yapp-perl_1.05-12_all.deb Size: 51078 MD5sum: 2a2d2eb8a667f80479ddf5c45a6dd27b SHA1: a797bd7afbac653020bf6305cad36475a71fff91 SHA256: 1c185122ce52345e03ec2b72ed60b0f4aa7cfb26c4ec708eb169ad017359835c Description: Perl module for creating fully reentrant LALR parser OO Perl modules Homepage: http://search.cpan.org/dist/Parse-Yapp/ Description-md5: 20f57c0f17259125725a96b3e0bf60dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libparted0-dev Priority: optional Section: libdevel Installed-Size: 1131 Maintainer: Ubuntu Developers Original-Maintainer: Parted Maintainer Team Architecture: amd64 Source: parted Version: 2.3-19ubuntu1 Replaces: libparted-dev, libparted2-dev (<< 2.2) Provides: libparted-dev Depends: libc6-dev, libparted0debian1 (= 2.3-19ubuntu1), libdevmapper-dev (>= 1.02.33), uuid-dev, libblkid-dev Suggests: parted (= 2.3-19ubuntu1), parted-doc Conflicts: libparted-dev, parted (<< 1.2.11) Filename: pool/main/p/parted/libparted0-dev_2.3-19ubuntu1_amd64.deb Size: 240862 MD5sum: f8963e58ce09d03b4a6d5c70e5d65748 SHA1: edf1e7e4401665765d3cddf48a2b2db33ea43968 SHA256: 538f4db2156a3e502feca29fadf17938ab0179044f61a3c3c6d58907c54397f6 Description: disk partition manipulator - development files Homepage: http://www.gnu.org/software/parted Description-md5: d9820491205202cf089e9bf9709d4f3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libparted0debian1 Priority: standard Section: libs Installed-Size: 571 Maintainer: Ubuntu Developers Original-Maintainer: Parted Maintainer Team Architecture: amd64 Source: parted Version: 2.3-19ubuntu1 Replaces: libparted0 (<< 2.2-4), libparted1 (<< 2.2), libparted1.4 (<< 1.4.24-2), libparted2 (<< 2.2) Provides: libparted Depends: libblkid1 (>= 2.17.2), libc6 (>= 2.14), libdevmapper1.02.1 (>= 2:1.02.36), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Suggests: parted | nparted, libparted0-dev, libparted0-i18n (= 2.3-19ubuntu1) Conflicts: libparted1 (<< 2.2), libparted2 (<< 2.2), parted (<< 1.4.13+14pre1) Breaks: python-parted (<< 3.6-5) Filename: pool/main/p/parted/libparted0debian1_2.3-19ubuntu1_amd64.deb Size: 203224 MD5sum: 7cfe7ef919e0fdb51ba1cb128b39e992 SHA1: 8506028e19cc9b956ac6b2b4c33692ed23c4ddaa SHA256: ad92018816d73663e7ccce7e5f3bb40c91e3b5cc87c913631eb0828ac81555aa Description: disk partition manipulator - shared library Multi-Arch: same Homepage: http://www.gnu.org/software/parted Description-md5: 8351c24350acd1cda567a096a68bf6b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libparted0debian1-dbg Priority: extra Section: debug Installed-Size: 3561 Maintainer: Ubuntu Developers Original-Maintainer: Parted Maintainer Team Architecture: amd64 Source: parted Version: 2.3-19ubuntu1 Replaces: libparted-dbg, libparted0-dbg (<< 2.2-4) Provides: libparted-dbg Depends: libparted0debian1 (= 2.3-19ubuntu1) Conflicts: libparted-dbg Filename: pool/main/p/parted/libparted0debian1-dbg_2.3-19ubuntu1_amd64.deb Size: 838588 MD5sum: e1eb12efadd71eb32ee25c77e27aefe8 SHA1: 70220ef28baed963f27a02b084218b89604e4a4c SHA256: 3cde86a6fbb4e1e275397968e260e5925766e4df7215a67ac58c5ec302dfed50 Description: disk partition manipulator - debugging symbols Homepage: http://www.gnu.org/software/parted Description-md5: 4562bda78b5f6c66ce5b4a8b3883fc78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-class-perl Priority: optional Section: perl Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.33-1 Depends: perl (>= 5.13.9) Filename: pool/main/libp/libpath-class-perl/libpath-class-perl_0.33-1_all.deb Size: 37242 MD5sum: fcae8260beb6ba394b1dac341a1b01d8 SHA1: d04bdbdf5607b2c6ef468696333e1c588499a1c8 SHA256: 1c506a2912dfbdb7c612ad58619c2a8f65f86353a72e0d3a333dbd825bc59e47 Description: module for cross-platform path specification manipulation Homepage: https://metacpan.org/release/Path-Class/ Description-md5: 25649d958f6aa1acb64975af942871a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-finddev-perl Priority: optional Section: perl Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.4.0-1 Depends: perl, libclass-tiny-perl, libpath-isdev-perl, libpath-tiny-perl (>= 0.038), libsub-exporter-perl Filename: pool/main/libp/libpath-finddev-perl/libpath-finddev-perl_0.4.0-1_all.deb Size: 12284 MD5sum: 2a98941d932a794d21970cb61f0e5f91 SHA1: 4ce1c55574fc41d14ea0ba512a722250733f0822 SHA256: 3b071347f76f7f2655cc59f567a2e53d5d99e290ce10a3868d20737a27f14bc4 Description: Perl module to find a development source tree somewhere in an upper hierarchy Homepage: https://metacpan.org/release/Path-FindDev Description-md5: 740233b696755cc39c08cb31b56e78d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-isdev-perl Priority: optional Section: perl Installed-Size: 241 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.000002-1 Depends: perl, libclass-tiny-perl, libfile-homedir-perl, libmodule-runtime-perl, libpath-tiny-perl, librole-tiny-perl, libsub-exporter-perl Filename: pool/main/libp/libpath-isdev-perl/libpath-isdev-perl_1.000002-1_all.deb Size: 78212 MD5sum: 0fa57bb1a9076e2fe3e7cb6f95c697bb SHA1: a8dd3b9348a036dfe3239a09416ced0542a79560 SHA256: 4fd9a54054a48a875c09104ed8d0460bf3684ce3df42ab3d2f6a1f097148a603 Description: Perl module to determine if a given Path resembles a development source tree Homepage: https://metacpan.org/release/Path-IsDev Description-md5: 5dfdaf6fe2b410c4d8da3612a663cd24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-tiny-perl Priority: optional Section: perl Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.052-1 Depends: perl (>= 5.17.8) | libfile-spec-perl (>= 3.4000), perl Recommends: libunicode-utf8-perl Filename: pool/main/libp/libpath-tiny-perl/libpath-tiny-perl_0.052-1_all.deb Size: 36894 MD5sum: eff6c25b48f5d0f3a7bdb297cd70f876 SHA1: 12423035e858fd62d819fcdfa17687a96b22070b SHA256: 62f65c90b562ffc9f3f29723e236a32d2b644040765535750b614ffc4f3eab34 Description: file path utility Homepage: https://metacpan.org/module/Path::Tiny Description-md5: 854030140749a1874a01d47751fbbf89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-utils-dev Priority: extra Section: libdevel Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Depends: libpath-utils1 (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libpath-utils-dev_0.3.0.1-4_amd64.deb Size: 10408 MD5sum: c90c3690d0de5ef9a50ed409a5b5b13f SHA1: 13d239bb967cf5a20f98f03a5e1aa3afc35acc3a SHA256: 78b35421f9d9c4260b177af3e3d2dbc9c3d3006a58faca49ead1edd497e16ef7 Description: Development files for libpath_utils Homepage: https://fedorahosted.org/sssd/ Description-md5: 54bf655c831be3d99a1fa0420b77d110 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-utils1 Priority: extra Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Replaces: libpath-utils Provides: libpath-utils Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: libpath-utils Filename: pool/main/d/ding-libs/libpath-utils1_0.3.0.1-4_amd64.deb Size: 8410 MD5sum: b7814cd5f644a1a44d67ea589c4feb7f SHA1: 8dceed9c1be2e3f928facb79d9cf58bf7dbd9e79 SHA256: 187acd8b43a11b402e755847205e25e87e8eb2293a650728582e7044b4ec3c8e Description: Filesystem Path Utilities Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: c0ce74390abe0b217dcc2f63c13cbf46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpathplan4 Priority: optional Section: libs Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: amd64 Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.15) Conflicts: libgraphviz4 Filename: pool/main/g/graphviz/libpathplan4_2.36.0-0ubuntu3_amd64.deb Size: 26186 MD5sum: 9f0fd88508854392d6005957140671bc SHA1: 3cd3fbacf3d9c9ae9085a02a410c33e6f5a23052 SHA256: 3976771347c06ad49601cdad111bea11f4cb25df19575bd9cbaa06c68a9eecd3 Description: rich set of graph drawing tools - pathplan library Homepage: http://www.graphviz.org/ Description-md5: 3b349696750e1cfac5e966e847c18e9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-audio Package: libpcap-dev Priority: optional Section: libdevel Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: all Source: libpcap Version: 1.5.3-2 Depends: libpcap0.8-dev Filename: pool/main/libp/libpcap/libpcap-dev_1.5.3-2_all.deb Size: 3390 MD5sum: ae4f8e54c80522f0d3139ec1b7f96896 SHA1: cbf03a352245cb7be02b4e18cc11b07bd2a1f2fb SHA256: ae35ccac2f8ae3df15a69845e95737f2340c86b609f988eb45b2827f46a4250f Description: development library for libpcap (transitional package) Homepage: http://www.tcpdump.org/ Description-md5: 10078daf2f68ccb78a8fc1970d8c94f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcap0.8 Priority: standard Section: libs Installed-Size: 313 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: amd64 Source: libpcap Version: 1.5.3-2 Replaces: libpcap0.8-dev (<< 1.0.0-2) Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libp/libpcap/libpcap0.8_1.5.3-2_amd64.deb Size: 109850 MD5sum: 50d6cfeccfe563b6c51e396230e7030a SHA1: 51fba22fbf1b4ea3ed5455ac3af7f847af740914 SHA256: f12dd26f56f7f1276c0726092fbe9246c795c5adae35781762fc2b04f851ab6f Description: system interface for user-level packet capture Multi-Arch: same Homepage: http://www.tcpdump.org/ Description-md5: fc353603d8470e05b8e9063ea61ff608 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libpcap0.8-dbg Priority: extra Section: libs Installed-Size: 281 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: amd64 Source: libpcap Version: 1.5.3-2 Depends: libpcap0.8 (= 1.5.3-2) Filename: pool/main/libp/libpcap/libpcap0.8-dbg_1.5.3-2_amd64.deb Size: 216442 MD5sum: d599500b6bf181d8bb6c0d9bbfc79db9 SHA1: efcd64c611e556e4236a2722368edf3c60ecc341 SHA256: a926fcf7fc78f629a26125ea3bcf2dd49ed714b1d050abb3419e6b06bcb2cb77 Description: debugging symbols for libpcap0.8 Multi-Arch: same Homepage: http://www.tcpdump.org/ Description-md5: 701becc772f7894cd3102113c5f949bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcap0.8-dev Priority: optional Section: libdevel Installed-Size: 666 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: amd64 Source: libpcap Version: 1.5.3-2 Depends: libpcap0.8 (= 1.5.3-2), libc6-dev Conflicts: libpcap-dev (<< 0.9), libpcap0.7-dev Filename: pool/main/libp/libpcap/libpcap0.8-dev_1.5.3-2_amd64.deb Size: 204668 MD5sum: 45290a8ff5c14a2d859018e7ceb8a8e8 SHA1: 9d63ee9a2d9c166b63969b5bb05f088cf966e54e SHA256: a75b5c9d1841a4e8a46bec8832ade5fb2fa7fd6fab48e8f6afa31b8db6ae9f1a Description: development library and header files for libpcap0.8 Homepage: http://www.tcpdump.org/ Description-md5: 847ec6013e502e2a10ed73e3627d72b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpci-dev Priority: optional Section: libdevel Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: pciutils Version: 1:3.2.1-1ubuntu5 Replaces: pciutils-dev Provides: pciutils-dev Depends: zlib1g-dev, libpci3 (= 1:3.2.1-1ubuntu5) Conflicts: pciutils-dev Filename: pool/main/p/pciutils/libpci-dev_3.2.1-1ubuntu5_amd64.deb Size: 43890 MD5sum: 949c9f75d62ebb7b6c4d9060a743ea5c SHA1: 84a389a19994a8c5da2390560ea217c93f21c45e SHA256: 7c743ec6df100f80376ec78f3723969f0546f68a0a2d49085a64cc4373131388 Description: Linux PCI Utilities (development files) Homepage: http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml Description-md5: fce92e421e497830481519e908a4e6a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpci3 Priority: standard Section: libs Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: pciutils Version: 1:3.2.1-1ubuntu5 Replaces: libpci2 Provides: libpci2 Depends: libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Conflicts: libpci2 Filename: pool/main/p/pciutils/libpci3_3.2.1-1ubuntu5_amd64.deb Size: 26144 MD5sum: f6dd67e1f05853780679506f8c6c1da4 SHA1: 4718fdece3070853a9c300395ef9f3a915386881 SHA256: 52f55a8e7ec67b7fa8bcdafc879f00c3936f4ebd8874b7bf8d472d981454386a Description: Linux PCI Utilities (shared library) Multi-Arch: same Homepage: http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml Description-md5: 67ffa1d7d0b8a6cad1437318cee6c16e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libpciaccess-dev Priority: extra Section: libdevel Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libpciaccess Version: 0.13.2-1 Depends: libpciaccess0 (= 0.13.2-1) Filename: pool/main/libp/libpciaccess/libpciaccess-dev_0.13.2-1_amd64.deb Size: 23550 MD5sum: 246dfc243d71e375d9ca1395bcd48491 SHA1: c3c977c8591873c99c61d2b5c06c15a2bc25c8b2 SHA256: 9afdf2cbd2df0031a4fb55d661387645f30ef407564f24140c826a46a029915f Description: Generic PCI access library for X - development files Multi-Arch: same Description-md5: 067fbd69053414843ebc52977e2799ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpciaccess0 Priority: optional Section: libs Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libpciaccess Version: 0.13.2-1 Depends: libc6 (>= 2.7), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: pciutils Filename: pool/main/libp/libpciaccess/libpciaccess0_0.13.2-1_amd64.deb Size: 20416 MD5sum: 79fc58d377c1501d3dab6bd75bc71911 SHA1: 4d7574c4382ff5db60308c91b4c2703c0fd7ab5b SHA256: fd7c5183d13c1508784b65b4d303faa56a9faa17ae35873df3a18c8309474a9e Description: Generic PCI access library for X Multi-Arch: same Description-md5: 6a3a8434290002dc03f21f8a07b9357c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpcre3 Priority: required Section: libs Installed-Size: 463 Maintainer: Ubuntu Developers Original-Maintainer: Mark Baker Architecture: amd64 Source: pcre3 Version: 1:8.31-2ubuntu2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libpcre3-dev (<= 4.3-3) Breaks: approx (<< 4.4-1~), cduce (<< 0.5.3-2~), cmigrep (<< 1.5-7~), galax (<< 1.1-7~), libpcre-ocaml (<< 6.0.1~), liquidsoap (<< 0.9.2-3~), ocsigen (<< 1.3.3-1~) Filename: pool/main/p/pcre3/libpcre3_8.31-2ubuntu2_amd64.deb Size: 143518 MD5sum: 8e3e3b0c6b5d1d53a989f4c3c31839e4 SHA1: 273f7b96f0d00cd4986227bd9e39a9e0dfc214c6 SHA256: fcf61648b4853e8e7569accde66ee7ec85df5ff67e8684b587c0f7a6ce1faeb1 Description: Perl 5 Compatible Regular Expression Library - runtime files Multi-Arch: same Description-md5: ab0ea99159dc866cd24051e8eda806df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpcre3-dbg Priority: optional Section: libdevel Installed-Size: 659 Maintainer: Ubuntu Developers Original-Maintainer: Mark Baker Architecture: amd64 Source: pcre3 Version: 1:8.31-2ubuntu2 Depends: libpcre3 (= 1:8.31-2ubuntu2), libpcrecpp0 (= 1:8.31-2ubuntu2) Filename: pool/main/p/pcre3/libpcre3-dbg_8.31-2ubuntu2_amd64.deb Size: 123930 MD5sum: aa6497dc0ee9e52eeda2fb62918d85c1 SHA1: 50525d3d21c82af2ca6547f69e62f0db46839773 SHA256: 020ed9927aace2a47b987004190dc2ad7ec4ddf8f83c5beaed29165f9976fa8f Description: Perl 5 Compatible Regular Expression Library - debug symbols Multi-Arch: same Description-md5: 90e6eddc5cb44959d66e3c4762ddd9ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcre3-dev Priority: optional Section: libdevel Installed-Size: 746 Maintainer: Ubuntu Developers Original-Maintainer: Mark Baker Architecture: amd64 Source: pcre3 Version: 1:8.31-2ubuntu2 Depends: libc6-dev, libpcre3 (= 1:8.31-2ubuntu2), libpcrecpp0 (= 1:8.31-2ubuntu2) Conflicts: libpcre1-dev, libpcre2-dev Filename: pool/main/p/pcre3/libpcre3-dev_8.31-2ubuntu2_amd64.deb Size: 236742 MD5sum: a60a89e9a9b5772f18499b6258b6628c SHA1: 73cfbf6158422f2b10f30714765666d0b8841ea0 SHA256: b3999179c01cf0b065ff08467c28c32ffce5c1a20623ce20e3cedd18aaafcabd Description: Perl 5 Compatible Regular Expression Library - development files Multi-Arch: same Description-md5: 3841aaec6be821ceb04646f8f92bb95c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcrecpp0 Priority: optional Section: libs Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: Mark Baker Architecture: amd64 Source: pcre3 Version: 1:8.31-2ubuntu2 Replaces: libpcre3 (<< 6.4-1.1) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libpcre3, libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Conflicts: libpcre3 (<< 6.4-1.1) Filename: pool/main/p/pcre3/libpcrecpp0_8.31-2ubuntu2_amd64.deb Size: 14472 MD5sum: a572cc3467704610c204e1ad4c41e333 SHA1: 7dadb5a459be746ae9744791d7fc1e15a2ab87e5 SHA256: 8e404e2d83da13a12b65f5ac4fbd3557ffc91db97772d4b5809dc79730aeb609 Description: Perl 5 Compatible Regular Expression Library - C++ runtime files Multi-Arch: same Description-md5: 3b12455ea2b74183d9c72b5673d42d01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcsclite-dev Priority: extra Section: libdevel Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: amd64 Source: pcsc-lite Version: 1.8.10-1ubuntu1 Depends: libpcsclite1 (= 1.8.10-1ubuntu1), libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: python Filename: pool/main/p/pcsc-lite/libpcsclite-dev_1.8.10-1ubuntu1_amd64.deb Size: 36828 MD5sum: 8c71827b2bbec9208903150f4398d1b8 SHA1: 63edd16dc5e83b942b19e8cdbc6d0abbf1518a65 SHA256: f67a38de8e5f46bda65a22181f5aef48520760c5c331a3486d87808beed7e0fe Description: Middleware to access a smart card using PC/SC (development files) Homepage: http://pcsclite.alioth.debian.org/ Description-md5: 79cb78e4120cf41d9b79039b6d0786e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcsclite1 Priority: optional Section: libs Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: amd64 Source: pcsc-lite Version: 1.8.10-1ubuntu1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Suggests: pcscd (= 1.8.10-1ubuntu1) Breaks: libpcsclite-dev (<< 1.8.10-1ubuntu1), pcscd (<< 1.8.10-1ubuntu1) Filename: pool/main/p/pcsc-lite/libpcsclite1_1.8.10-1ubuntu1_amd64.deb Size: 20938 MD5sum: adece73e911ca3dbdd3925294c75afee SHA1: 1377f68a1ec3502361d2a130ee8c51e1f601d117 SHA256: ac156e0105c5d0648c30a5d4e1cc1cb7f8e31ced16100a9d8d226e947b282a87 Description: Middleware to access a smart card using PC/SC (library) Multi-Arch: same Homepage: http://pcsclite.alioth.debian.org/ Description-md5: 75c3114d0742624996e5bf79fc4618e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, tomcat-server, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpcsclite1-dbg Priority: extra Section: debug Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: amd64 Source: pcsc-lite Version: 1.8.10-1ubuntu1 Replaces: libpcsclite-dbg Depends: libpcsclite1 (= 1.8.10-1ubuntu1) Conflicts: libpcsclite-dbg Filename: pool/main/p/pcsc-lite/libpcsclite1-dbg_1.8.10-1ubuntu1_amd64.deb Size: 168216 MD5sum: 5432d55ec16b299b1d5e63fa0ae1628b SHA1: 272eb63b69e83d5250c8041257eaf83545880f71 SHA256: daea87b621ca613e59c0744f1e6a7a8c35a5acca16a678b2b7b0195915ce2bf4 Description: Middleware to access a smart card using PC/SC (debugging symbols) Multi-Arch: same Homepage: http://pcsclite.alioth.debian.org/ Description-md5: 1b4115e6ab131cd3aae5a163c4442327 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpe-rules2 Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpe-rules-2 (<= 1.0.10-1), pacemaker (<= 1.0.9.1+hg15626-2) Depends: libc6 (>= 2.14), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libqb0 Conflicts: libpe-rules-2 (<= 1.0.10-1), pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libpe-rules2_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 15438 MD5sum: b82addbd2b93793da1b6496abc3a2803 SHA1: 7e7225b4895c25c3345d48cf12805983cde0ec77 SHA256: 9f93c565b892578978916c32f824ccb09689784aef91abcd3bc525f8757e4d27 Description: Pacemaker libraries - rules for P-Engine Homepage: http://clusterlabs.org/ Description-md5: c9973e28b11e88b80273ac25fa092956 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpe-rules2-dev Priority: optional Section: libdevel Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpe-rules-2-dev (<= 1.0.10-1), pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libpe-rules2 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libpe-rules-2-dev (<= 1.0.10-1), pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libpe-rules2-dev_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 15900 MD5sum: 8c4a5c52e8d6cb1338574c10e4d90c5b SHA1: 06ad105f333fc7dcee9ce1effd64f6587599208a SHA256: 170615e031fe636c26851cccbe4bfe623f259b4157aea050f999df6b8bfef599 Description: Development file for pacemaker's rules library Homepage: http://clusterlabs.org/ Description-md5: 95030e3a0fd7d07823478ba562e19ce1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpe-status4 Priority: optional Section: libs Installed-Size: 259 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpe-status-2 (<= 1.0.10-1), libpe-status3, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libc6 (>= 2.14), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libncurses5 (>= 5.5-5~), libqb0, libtinfo5, libxml2 (>= 2.7.4) Conflicts: libpe-status-2 (<= 1.0.10-1), libpe-status3, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libpe-status4_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 77174 MD5sum: 8d2be484854ea7b6e22cfd256f24d6b3 SHA1: 9522fe71b10c099f3f9adbd8f08100684ee2e003 SHA256: 9bacae2114989ac0d82981b894dee69e07cd4d9cd9580c30fd069ef6be0e8b42 Description: Pacemaker libraries - status for P-Engine Homepage: http://clusterlabs.org/ Description-md5: f4372d525f4f0c133a0ffa27c2f67016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpe-status4-dev Priority: optional Section: libdevel Installed-Size: 512 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpe-status-2-dev (<= 1.0.10-1), libpe-status2-dev, libpe-status3-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libpe-status4 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libpe-status-2-dev (<= 1.0.10-1), libpe-status2-dev, libpe-status3-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libpe-status4-dev_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 88560 MD5sum: 00577f71647bf30b2d6f427f285b8698 SHA1: d5dc92b2f1a15b8dd0aa5b9864039b0f951adfc2 SHA256: 4bc851712c38d8fd6b05e6c1350121f25849eb4ed9dcc09f2fc834d1992a1bed Description: Development file for pacemaker's status library Homepage: http://clusterlabs.org/ Description-md5: 7922ec9a8a41c138ba00b6f2bbe39e60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpeas-1.0-0 Priority: extra Section: libs Installed-Size: 331 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libpeas Version: 1.8.1-2ubuntu2 Depends: libc6 (>= 2.14), libgirepository-1.0-1 (>= 0.9.2), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.0.0), libpython2.7 (>= 2.7), libpython3.4 (>= 3.4~b1), libpeas-common Filename: pool/main/libp/libpeas/libpeas-1.0-0_1.8.1-2ubuntu2_amd64.deb Size: 54066 MD5sum: c791a3b59bc19cefc2c76c4de20f60dd SHA1: 625155cca0b3eeddba4a41fa49e9cb134d6ea98a SHA256: 78ec650f1a1a62e3be4eddbf12f25552f9f47c254526dd5c5bbd23b363e0b3f1 Description: Application plugin library Homepage: https://wiki.gnome.org/Libpeas Description-md5: 3f80da95d5376fd25d9270857554e87d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpeas-common Priority: extra Section: libs Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libpeas Version: 1.8.1-2ubuntu2 Replaces: libpeas-1.0-0 (<< 0.7.0-1) Filename: pool/main/libp/libpeas/libpeas-common_1.8.1-2ubuntu2_all.deb Size: 13102 MD5sum: 06032c2c39fcc28a41cd960242a1f51e SHA1: 08325ad6f485f4ad2c339a19bc3fe86bda00c117 SHA256: 47135f37184c00455c58c12466f0c4441e33eb629733d09e80a915b4bf106d7c Description: Application plugin library (common files) Homepage: https://wiki.gnome.org/Libpeas Description-md5: f57e59d56f6b30c3e45ea69ce400d9d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpeas-dev Priority: extra Section: libdevel Installed-Size: 312 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libpeas Version: 1.8.1-2ubuntu2 Depends: libpeas-1.0-0 (= 1.8.1-2ubuntu2), gir1.2-peas-1.0 (= 1.8.1-2ubuntu2), libglib2.0-dev (>= 2.31.2), libgirepository1.0-dev (>= 0.10.1), libgtk-3-dev (>= 2.90) Suggests: libpeas-doc Filename: pool/main/libp/libpeas/libpeas-dev_1.8.1-2ubuntu2_amd64.deb Size: 17524 MD5sum: 8eba6abe474f656db524bd448ba067f5 SHA1: 6ae3c84efa8b737dbb7fa37a9b09299d3d1c1f24 SHA256: 65ddba9a2a826c3802f80028e1092e429bca41e0a3d01b5a56ea29d32cdf4cef Description: Application plugin library (development files) Homepage: https://wiki.gnome.org/Libpeas Description-md5: 24ebb31b049bc8580a6082cdf3af558f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpeas-doc Priority: extra Section: doc Installed-Size: 584 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libpeas Version: 1.8.1-2ubuntu2 Depends: libc6 (>= 2.2.5), libgirepository-1.0-1 (>= 0.9.2), libglib2.0-0 (>= 2.31.2), libgtk-3-0 (>= 3.0.0), libpeas-1.0-0 (>= 1.1.0) Conflicts: libpeas-examples Filename: pool/main/libp/libpeas/libpeas-doc_1.8.1-2ubuntu2_amd64.deb Size: 64996 MD5sum: 51ffa2e9b512956aa380a2bd41da18ae SHA1: bcbea1e4c05efdaf6028df856f013ae6160fe947 SHA256: 1bd51adb1b9b2ffd21a46aa3acb7c842bf9b1720c92ae86f18c3e8adc9b42028 Description: Application plugin library (documentation) Homepage: https://wiki.gnome.org/Libpeas Description-md5: 648a49618986d2488dba598ea56550b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpengine4 Priority: optional Section: libs Installed-Size: 386 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpengine3, pacemaker (<= 1.0.9.1+hg15626-2), pacemaker-dev (<< 1.1.8+git20121010-1) Depends: libc6 (>= 2.14), libcib3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libpe-status4 (>= 1.1.10+git20130802), libqb0, libxml2 (>= 2.7.4) Conflicts: libpengine3, pacemaker (<= 1.0.9.1+hg15626-2), pacemaker-dev (<< 1.1.8+git20121010-1) Filename: pool/main/p/pacemaker/libpengine4_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 118648 MD5sum: 7de7e3412bdf5a553bfc7dd9189d256f SHA1: 4712280495cc20a653220d9299b76144d448de16 SHA256: a45f9ed0f761e91d0a1c07649a0e84e99a313aeec758dbb10e3d8d0b167e061c Description: Pacemaker libraries - P-Engine Homepage: http://clusterlabs.org/ Description-md5: f26b8e819a87fc3637afefe72e60d21c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpengine4-dev Priority: optional Section: libdevel Installed-Size: 845 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpengine3-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libpengine4 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libpengine3-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libpengine4-dev_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 139770 MD5sum: 5e1239d92edb075b3063ea34f3028425 SHA1: 182b15c7e941b5982ae24b9afb1221b495049fc0 SHA256: 6c252577ebb2bfbf2ec9ae70c0950246ad2679d8967c8c23d18c69374888c482 Description: Development file for pacemaker's pengine library Homepage: http://clusterlabs.org/ Description-md5: a14b6499b011e9dad1273150f994aff0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libperl-critic-perl Priority: optional Section: perl Installed-Size: 2237 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.121-1 Depends: libb-keywords-perl, libconfig-tiny-perl, libemail-address-perl, libexception-class-perl, libfile-homedir-perl, libfile-which-perl, libio-string-perl, liblist-moreutils-perl, libmodule-pluggable-perl | perl (<< 5.17.0), libpod-spell-perl, libppi-perl (>= 1.215), libppix-regexp-perl (>= 0.027), libppix-utilities-perl, libreadonly-perl, libreadonly-xs-perl, libstring-format-perl, libtask-weaken-perl, perltidy, perl Filename: pool/main/libp/libperl-critic-perl/libperl-critic-perl_1.121-1_all.deb Size: 934932 MD5sum: f65f9eb39aa353ae406915b7fb553509 SHA1: 6953e07c875572c76b7f111a040047c89654d1a9 SHA256: 88ea2c120644888cccad68f93d9d105e3b585b10e106c38b26b905c1e5b44e9e Description: Perl module to critique code for best practices Homepage: https://metacpan.org/release/Perl-Critic/ Description-md5: 5c461a970fff1643c12b1a918d67e5fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libperl-dev Priority: optional Section: libdevel Installed-Size: 12830 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: amd64 Source: perl Version: 5.18.2-2ubuntu1 Depends: perl (= 5.18.2-2ubuntu1), libperl5.18 (= 5.18.2-2ubuntu1), libc6-dev | libc-dev Filename: pool/main/p/perl/libperl-dev_5.18.2-2ubuntu1_amd64.deb Size: 2273504 MD5sum: 64fd68db568f1350a9a9f351e2b51896 SHA1: 7f556d1592e40eb48fba1895c7b9834c4e50ab69 SHA256: 400a2d4710d943b56026bc2df16066c0ae1ef75a2ee4d07f45381fb16ba706dc Description: Perl library: development files Homepage: http://dev.perl.org/perl5/ Description-md5: 493158c7ca91f27f024cd9c2d9d421aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libperl-minimumversion-perl Priority: optional Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.32-1 Depends: perl, libfile-find-rule-perl, libfile-find-rule-perl-perl, libparams-util-perl, libperl-critic-perl, libppi-perl (>= 1.215), libppix-regexp-perl (>= 0.029) Filename: pool/main/libp/libperl-minimumversion-perl/libperl-minimumversion-perl_1.32-1_all.deb Size: 24252 MD5sum: f088db57ca7ba2c181686c1f7ddd3400 SHA1: 429bd518700406fb1dce517749e09a4a3517428e SHA256: ff9226a7309adf66e5e6b630ad370b6d49ec6f02658500dd3bf1c0ceba16c425 Description: module to determine minimum required version of perl required Homepage: https://metacpan.org/release/Perl-MinimumVersion/ Description-md5: e80178659ae89e167b9b29c1a3673225 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libperl4-corelibs-perl Priority: optional Section: perl Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.003-1 Depends: perl Filename: pool/main/libp/libperl4-corelibs-perl/libperl4-corelibs-perl_0.003-1_all.deb Size: 43020 MD5sum: ac2480275620638ca49e6a20eedbfe7a SHA1: 604163c7678252683d3117d361e74a7e7dcec249 SHA256: 80561fbda924a12c2d5a261d98f9817e4cb5646577c815579b777e13424d22c1 Description: libraries historically supplied with Perl 4 Homepage: http://search.cpan.org/dist/Perl4-CoreLibs/ Description-md5: 5836e6555acbd562a5ae7d4a2cabb40c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-dvd-live, ubuntustudio-audio Package: libperl5.18 Priority: optional Section: libs Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: amd64 Source: perl Version: 5.18.2-2ubuntu1 Replaces: perl-base (<= 5.8.7-4) Depends: libc6 (>= 2.14), perl-base (= 5.18.2-2ubuntu1) Filename: pool/main/p/perl/libperl5.18_5.18.2-2ubuntu1_amd64.deb Size: 1322 MD5sum: fcee47bbff6a1f501cab58f1d276928a SHA1: 488220d49a7cc3ef756ffd6a3347dcbdc2e56b39 SHA256: 28d11c9e59e3d7a8ded7c609293471e01829b3a2e719844e00f878f51e9d89c7 Description: shared Perl library Homepage: http://dev.perl.org/perl5/ Description-md5: 201a341014bbc42f83ce4b74bbb7da77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libperlio-gzip-perl Priority: optional Section: perl Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.18-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4), zlib1g (>= 1:1.1.4) Filename: pool/main/libp/libperlio-gzip-perl/libperlio-gzip-perl_0.18-1build3_amd64.deb Size: 15972 MD5sum: 934fb50ec50fadf18665f302d94bf028 SHA1: da9ce64e599586cd49c6fc200392e49b2c50d0f1 SHA256: 2a400a156b2b562e3ace37d8caa86110470eb5f66901682c5ec372201adb8744 Description: module providing a PerlIO layer to gzip/gunzip Homepage: http://search.cpan.org/dist/PerlIO-gzip/ Description-md5: 2130ed8bcc3cb383e4a602f4c49f191d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpgtypes3 Priority: optional Section: libs Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.14) Filename: pool/main/p/postgresql-9.3/libpgtypes3_9.3.4-1_amd64.deb Size: 38642 MD5sum: 8760bf4bab5615bd0551565676ad93c3 SHA1: 0868d253369f539c98fbac6d140766a0d7c6912a SHA256: 8b5332f55c7acbf6d7502246f0d16b6d73db371ea72d8eda2d55038af3f91fd9 Description: shared library libpgtypes for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: b1075e2aafb9dc13e19627828de4889b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphobos-4.8-dev Priority: optional Section: libdevel Installed-Size: 64623 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gdc-4.8 (<< 4.8.2-19) Provides: libphobos-dev Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), zlib1g-dev Filename: pool/main/g/gcc-4.8/libphobos-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 6741466 MD5sum: f3f73b9f064e170bf74f9ba01ab9424b SHA1: da1f504c1674e72329d3bd9fe8709880bb2ad4bc SHA256: 45174680cfb716cf8572987e02cc628c602f36c78ead7d61d7ac102303cf96df Description: Phobos D standard library Homepage: http://gcc.gnu.org/ Description-md5: 319ab24aa69f1d17bbae7ba6a543ecfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon-dev Priority: optional Section: libdevel Installed-Size: 493 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libphonon4 (= 4:4.7.1-0ubuntu8), phonon-backend-null | phonon, libqt4-dev (>= 4:4.8.1), libc6 (>= 2.14), libqt4-designer (>= 4:4.8.1), libqtcore4 (>= 4:4.8.1), libqtgui4 (>= 4:4.8.1), libstdc++6 (>= 4.1.1) Filename: pool/main/p/phonon/libphonon-dev_4.7.1-0ubuntu8_amd64.deb Size: 79584 MD5sum: dca224a6f8e6fddf6de1f164972986b9 SHA1: b574c41b31ccce5806925e5f9527b35653c79ee4 SHA256: 007f49714c898892991613522a2e0207cef09f2ae78134a8be771399ad9b9aa6 Description: multimedia framework from KDE - development files Homepage: http://phonon.kde.org/ Description-md5: 13c3758ebe56ad03f8ddb9ad9bf5c92c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokephonon3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libphonon-perl_4.13.0-0ubuntu1_amd64.deb Size: 10074 MD5sum: 40fdcbe239b4efd0fb0de93bb5648119 SHA1: 9e05e294836391d647a88932132c76ebbe2f31a0 SHA256: fb5939a732dfab5ef8c53850b1cb64e4ad531f82c849cfbd93b0d53f5af66595 Description: perl bindings for the Phonon library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: a6e360e2d9592dfe7af92e527ad04e51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon4 Priority: optional Section: libs Installed-Size: 582 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libc6 (>= 2.14), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), libqt4-dbus (>= 4:4.8.1), libqtcore4 (>= 4:4.8.1), libqtgui4 (>= 4:4.8.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: phonon-backend-xine (<< 4:4.6.0really4.3.80) Filename: pool/main/p/phonon/libphonon4_4.7.1-0ubuntu8_amd64.deb Size: 148258 MD5sum: 9b1397e06f49f98229e3468f0feabce2 SHA1: 4f1784a1f3e4a111cac65629d5ae1865ff194edf SHA256: c593fe356d7e8a6dc2e9c92b512310fcf729513ed2e1b38e508f91c75bcb46c8 Description: multimedia framework from KDE - core library Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 4566feed5f0036ee4cfb4a0956976557 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libphonon4qt5-4 Priority: optional Section: libs Installed-Size: 550 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libc6 (>= 2.14), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/phonon/libphonon4qt5-4_4.7.1-0ubuntu8_amd64.deb Size: 142618 MD5sum: 1072dedcd03f8306e523544b298c843e SHA1: bfecec22c982b8d2fc195e170ec3614285286b9c SHA256: c8d7d1661d0759dadbc6f88ae566fb487f72b804fcca67d318a3cc6cc030919b Description: multimedia framework from KF5 - core library Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 39d7af9901309864a4dee04b829ce123 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon4qt5-dev Priority: optional Section: libdevel Installed-Size: 497 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libphonon4qt5-4 (= 4:4.7.1-0ubuntu8), phonon4qt5-backend-null | phonon4qt5, qtbase5-dev (>= 5.2.0), libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5designer5 (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/phonon/libphonon4qt5-dev_4.7.1-0ubuntu8_amd64.deb Size: 79928 MD5sum: ceb686d6266a2dac09c333a66c994e0a SHA1: 165bd3951546f5c55213a05d0f593c8d7e3fc7c5 SHA256: de7d32fd9212d4c24ecf54ed05e10b59e849526f92e7f008b0199dd45ff9e10c Description: multimedia framework from KF5 - development files Homepage: http://phonon.kde.org/ Description-md5: ad2edf3f9c8d40333d21493f76a5db51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon4qt5experimental-dev Priority: optional Section: libdevel Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libphonon4qt5experimental4 (= 4:4.7.1-0ubuntu8), qtbase5-dev (>= 5.0.2) Filename: pool/main/p/phonon/libphonon4qt5experimental-dev_4.7.1-0ubuntu8_amd64.deb Size: 14770 MD5sum: e46c05660ac6436cab5fe1b8d002ffbe SHA1: a92162fbeb1d091f712f1e24a5ed45b7d754def0 SHA256: b7fd6286efeda09a0458f73d19592238e83ae84c1eed1c118e49b1cd34c140b0 Description: multimedia framework from KF5 - experimental development files Homepage: http://phonon.kde.org/ Description-md5: 3c640ec9e481b3848865c1d482fac9cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon4qt5experimental4 Priority: optional Section: libs Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon Version: 4:4.7.1-0ubuntu8 Provides: phononexperimental-abi-qt5-1 Depends: libc6 (>= 2.2.5), libphonon4qt5-4 (= 4:4.7.1-0ubuntu8), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/phonon/libphonon4qt5experimental4_4.7.1-0ubuntu8_amd64.deb Size: 28040 MD5sum: d4423ec4846eb1c0702c16ddd6889480 SHA1: e32ba5ec43dec5783e59ae840681c20547cfb43f SHA256: 2dfd98d45e406ea99e09964f76f6c0509ba9bf2f4dbc275fb35e4f942332316b Description: multimedia framework from KF5 - experimental library (internal) Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 9bdb4dde33b6a84ce3ed759991fe7d2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphononexperimental-dev Priority: optional Section: libdevel Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon Version: 4:4.7.1-0ubuntu8 Replaces: libphonon-dev (<< 4:4.6.0really4.4.4) Depends: libphononexperimental4 (= 4:4.7.1-0ubuntu8), libqt4-dev (>= 4:4.8.1) Breaks: libphonon-dev (<< 4:4.6.0really4.4.4) Filename: pool/main/p/phonon/libphononexperimental-dev_4.7.1-0ubuntu8_amd64.deb Size: 14774 MD5sum: 4a31b35032e3182e1e1dc4ed7b4bb7bc SHA1: b4942ccb1b980b3d6a829c959aaba6083502a631 SHA256: 790b3f28398c826306b3129866d68117c6b64e7581ed027b5901ef16431e995d Description: multimedia framework from KDE - experimental development files Homepage: http://phonon.kde.org/ Description-md5: e2088c3cafe29cc243e751ddc05ccc4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphononexperimental4 Priority: optional Section: libs Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon Version: 4:4.7.1-0ubuntu8 Replaces: libphonon4 (<< 4:4.6.0really4.3.80) Provides: phononexperimental-abi-1 Depends: libc6 (>= 2.2.5), libphonon4 (= 4:4.7.1-0ubuntu8), libqtcore4 (>= 4:4.8.1), libqtgui4 (>= 4:4.8.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: libphonon4 (<< 4:4.6.0really4.3.80) Filename: pool/main/p/phonon/libphononexperimental4_4.7.1-0ubuntu8_amd64.deb Size: 29660 MD5sum: f506c568d6f4ec72648e1f8dc1029196 SHA1: 8c35bb60ba2e5bb7cf6381ad53b12872cd16d959 SHA256: ab252687fdb9a30498f8ea3ba4c0337dac26af79a939124a9aea12afa03aba2a Description: multimedia framework from KDE - experimental library (internal) Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 1dfd329164c7f31b5cbf5be613cc5b6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active, kubuntu-active-full, kubuntu-active, ubuntustudio-graphics Package: libpils2 Priority: optional Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue (<= 1.0.6-1) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.24.0), libltdl7 (>= 2.4.2) Conflicts: libcluster-glue (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libpils2_1.0.11+hg2754-1.1build1_amd64.deb Size: 16166 MD5sum: 4800a9c01f0215d606b87e4389ea6e64 SHA1: 1aefce533d4bc90559e6bdb5eca5afc71f7b82c6 SHA256: b80ce70a743faa099518726a30f3b9694ad9ffecb73da5c1340c5fbee00e1c54 Description: Reusable cluster libraries -- libpils2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 9634659bf0fcd8791865cd35d210ed0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpils2-dev Priority: optional Section: libdevel Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1) Depends: libpils2 (= 1.0.11+hg2754-1.1build1), libltdl-dev Conflicts: libcluster-glue-dev (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libpils2-dev_1.0.11+hg2754-1.1build1_amd64.deb Size: 24448 MD5sum: 11852da0fae6979a44d00431abd983af SHA1: 6937a31e4d6feafb0d7dd93265e17d97776c824c SHA256: e1340b38814ecaed2a710fcbe7de9556b44440535234e1b7568f361124b25e13 Description: Reusable cluster development files -- libpils2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: a6fead0cb94dfac7d660828b00b4a9ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpipeline-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Colin Watson Architecture: amd64 Source: libpipeline Version: 1.3.0-1 Depends: libpipeline1 (= 1.3.0-1) Filename: pool/main/libp/libpipeline/libpipeline-dev_1.3.0-1_amd64.deb Size: 14516 MD5sum: 330d424637401fa7a446f67f728c926a SHA1: 4f1d61fbcd0b8373ef08718e51ac953f17e5a378 SHA256: 5378de33c1c40789899c5f015acff44aa902b29aa4f9eec3673986a7634193c6 Description: pipeline manipulation library (development files) Multi-Arch: same Homepage: http://libpipeline.nongnu.org/ Description-md5: cac14a48e797ab84e068761f4d935145 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpipeline1 Priority: standard Section: libs Installed-Size: 88 Maintainer: Colin Watson Architecture: amd64 Source: libpipeline Version: 1.3.0-1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/libp/libpipeline/libpipeline1_1.3.0-1_amd64.deb Size: 24042 MD5sum: b2ec01902378b50dfda3f9ba831712db SHA1: d2e6cd4bf187f183db95f9b2075bde4efd1dd400 SHA256: 1c706241e78c7064794187afb6f184392f0f03d6487d630824be41e072d28a25 Description: pipeline manipulation library Multi-Arch: same Homepage: http://libpipeline.nongnu.org/ Description-md5: 9372d67b85177a0eb118d57b700e8a0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libpisock-dev Priority: extra Section: libdevel Installed-Size: 705 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: amd64 Source: pilot-link Version: 0.12.5-6ubuntu2 Replaces: pilot-link (<= 0.11.3-4) Depends: libpisock9 (= 0.12.5-6ubuntu2), libpisync1 (= 0.12.5-6ubuntu2), libusb-dev, libbluetooth-dev Filename: pool/main/p/pilot-link/libpisock-dev_0.12.5-6ubuntu2_amd64.deb Size: 143792 MD5sum: d6de9397d9ef3d2beb9b93ce8cc018f9 SHA1: 4ab5f30affbdf9cf499be37a26709a5c832446c2 SHA256: cc6d22728d141a6228e59c47d534a44b94c68ec7859965539f7a3ebc7107499c Description: development files for communicating with a PalmOS PDA Homepage: http://www.pilot-link.org/ Description-md5: 37e1cb9ba655aa2cd6f0faf6b7dec1ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpisock9 Priority: optional Section: libs Installed-Size: 485 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: amd64 Source: pilot-link Version: 0.12.5-6ubuntu2 Depends: libbluetooth3 (>= 4.91), libc6 (>= 2.15), libusb-0.1-4 (>= 2:0.1.12) Suggests: jpilot, pilot-link, kpilot, gnome-pilot, evolution, claws-mail, sylpheed Breaks: jpilot (<< 1.6.2.4-2), python-jppy (<= 0.0.47-1.1), udev (<< 0.136-1) Filename: pool/main/p/pilot-link/libpisock9_0.12.5-6ubuntu2_amd64.deb Size: 123730 MD5sum: fdc60f44ed9afb9eecde4080fa53b5c3 SHA1: 48d6bfb39e0103ba7032d4a8ae49d4efe1bcbbb2 SHA256: 976de827927f986c52fc6c5b5287380adcda89cf3432eb2308eaee11a7cbfe76 Description: library for communicating with a PalmOS PDA Homepage: http://www.pilot-link.org/ Description-md5: 82d57f8c4c87e149b1ef3c2847f51507 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-desktop Package: libpisync1 Priority: optional Section: libs Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: amd64 Source: pilot-link Version: 0.12.5-6ubuntu2 Depends: libc6 (>= 2.14), libpisock9 Suggests: gnome-pilot, evolution Filename: pool/main/p/pilot-link/libpisync1_0.12.5-6ubuntu2_amd64.deb Size: 7374 MD5sum: 34c98e52a1856c0724468357961e7785 SHA1: 8b84f47ca4cb1b05aa5ea7ca92ce60ca49581ab2 SHA256: a6d29e5004b18e5b92b9a2e16b43d3d8b19cf1f3ba723b56732e4afe9b87a076 Description: synchronization library for PalmOS devices Homepage: http://www.pilot-link.org/ Description-md5: ff1269d91f6a6e067af6e859a044356c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpixman-1-0 Priority: optional Section: libs Installed-Size: 728 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: pixman Version: 0.30.2-2ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/p/pixman/libpixman-1-0_0.30.2-2ubuntu1_amd64.deb Size: 227028 MD5sum: 60e24d4dc3f929420ae1d4a993a68da0 SHA1: 70a82d74a36caf953d4ff5ff686deef99d0b41fa SHA256: 0fe0bbbcaa338cfb5b749d3b1237793621078e669b92d56ab0182c9e9bc0a5af Description: pixel-manipulation library for X and cairo Multi-Arch: same Description-md5: 7e3f88ca19f9f065eee2d857d76692bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpixman-1-0-dbg Priority: extra Section: libdevel Installed-Size: 5448 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: pixman Version: 0.30.2-2ubuntu1 Depends: libpixman-1-0 (= 0.30.2-2ubuntu1) Filename: pool/main/p/pixman/libpixman-1-0-dbg_0.30.2-2ubuntu1_amd64.deb Size: 933998 MD5sum: 8b17505ba9cd2df69ebf02bbc911e6c6 SHA1: d95cdeaea5a2128423d6e71884678d40c10501b4 SHA256: 95947f39d535f66109e1f4f669cd78fdf0ba6e8024aa2a0585cfbc3fb9fb6188 Description: pixel-manipulation library for X and cairo (debugging symbols) Multi-Arch: same Description-md5: 06db9acce44cebdedaf9de80824c7318 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpixman-1-dev Priority: optional Section: libdevel Installed-Size: 977 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: pixman Version: 0.30.2-2ubuntu1 Depends: libpixman-1-0 (= 0.30.2-2ubuntu1) Filename: pool/main/p/pixman/libpixman-1-dev_0.30.2-2ubuntu1_amd64.deb Size: 241828 MD5sum: 133c650115cbae2f69ac01738df7717a SHA1: 7b050c19741eaf595937f8a611482c8b1683fd76 SHA256: ad48372bdf6d07cd30d58213cfc7755b5b4e24203f89ffbdb27cafa4ec617be9 Description: pixel-manipulation library for X and cairo (development files) Description-md5: 2f64070b43fb7746f0a51fb4de195746 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpkcs11-helper1 Priority: optional Section: libs Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: pkcs11-helper Version: 1.11-1 Depends: libc6 (>= 2.7), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/p/pkcs11-helper/libpkcs11-helper1_1.11-1_amd64.deb Size: 42244 MD5sum: 195245fd3c840fd46dd90ca535a5c735 SHA1: 9a4e76f418a025f5904568c1bb5b1bf3b8ce1d5f SHA256: d31ab92af6d8c11f6da53edda48dab9338ba9d15ac4d918c9d0e46caa289ba48 Description: library that simplifies the interaction with PKCS#11 Multi-Arch: same Description-md5: 884da81648ff96b4214f90a93ca61a83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpkcs11-helper1-dbg Priority: optional Section: debug Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: pkcs11-helper Version: 1.11-1 Depends: libpkcs11-helper1 (= 1.11-1) Filename: pool/main/p/pkcs11-helper/libpkcs11-helper1-dbg_1.11-1_amd64.deb Size: 104618 MD5sum: 957d5400379ad67772ab8861d9e0879b SHA1: eb111367282ed88fd2c9b3ae7dc0515c18c718be SHA256: 24f66db6b515eecfddf81207de373bda809df9d68209fa91b113476dd7794c64 Description: debugging symbols for libpkcs11-helper Multi-Arch: same Description-md5: 051652c03386a0027cd225f697dbfcf9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpkcs11-helper1-dev Priority: optional Section: libdevel Installed-Size: 1501 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: pkcs11-helper Version: 1.11-1 Provides: libpkcs11-helper-dev Depends: libpkcs11-helper1 (= 1.11-1), libssl-dev Conflicts: libpkcs11-helper-dev Filename: pool/main/p/pkcs11-helper/libpkcs11-helper1-dev_1.11-1_amd64.deb Size: 126936 MD5sum: 22f070b3c2b992ce636e0d126253c94a SHA1: c5c796af0dcee908db0ace998ccde6102a067a11 SHA256: 028bf296842975e13bce7e1a9319c7881467f5e0f5f43c215a36c08fa77abb35 Description: library that simplifies the interaction with PKCS#11 Description-md5: 884da81648ff96b4214f90a93ca61a83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplasma3 Priority: optional Section: libs Installed-Size: 3460 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libkcmutils4 (= 4:4.13.0-0ubuntu1), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkdewebkit5 (= 4:4.13.0-0ubuntu1), libkdnssd4 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libknewstuff3-4 (= 4:4.13.0-0ubuntu1), libphonon4 (>= 4:4.6.0really4.3.80), libqca2 (>= 2.0.2), libqt4-declarative (>= 4:4.8.0), libqt4-network (>= 4:4.7.0), libqt4-opengl (>= 4:4.7.0), libqt4-script (>= 4:4.7.0), libqt4-sql (>= 4:4.7.0), libqt4-svg (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.8.0), libqtwebkit4, libsolid4 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1), libthreadweaver4 (= 4:4.13.0-0ubuntu1), libx11-6 Filename: pool/main/k/kde4libs/libplasma3_4.13.0-0ubuntu1_amd64.deb Size: 884334 MD5sum: 99032480f781c4573a8a3a437be97e9c SHA1: 9ffa4220df8a25c7c882c78fc4cc6a8d6e119693 SHA256: 59b1d34d9d2c50bafce3eff5bc45b25e28e9b89a4d9581cb70109223ccacc0d2 Description: Plasma Library for the KDE Platform Homepage: http://plasma.kde.org/ Description-md5: 069ac695b489886696dab1b47f4363b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libplatform-api-headers Priority: optional Section: libdevel Installed-Size: 183 Maintainer: Ubuntu Developers Architecture: amd64 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Filename: pool/main/p/platform-api/libplatform-api-headers_0.20+14.04.20140411-0ubuntu1_amd64.deb Size: 16468 MD5sum: 37f31f94aef6020858c3f2cfee0c1eef SHA1: df1e3d52750105a15502cfb8fcf5fecada85bfe9 SHA256: 14df8af0bd574d92435552df1025c6821d3d8478484ca0e41522a9e1d6b62541 Description: Platform API for system level capabilities (API headers) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 25a939647ddf8f9955955164e5bf326d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplatform-api1-dev Priority: optional Section: libdevel Installed-Size: 46 Maintainer: Ubuntu Developers Architecture: amd64 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libgles2-mesa-dev, libplatform-api-headers (= 0.20+14.04.20140411-0ubuntu1), libubuntu-application-api1 | libplatform-api1, libubuntu-application-api-mirserver1 (= 0.20+14.04.20140411-0ubuntu1), libubuntu-application-api-mirclient1 (= 0.20+14.04.20140411-0ubuntu1) Suggests: libplatform-api1-doc Filename: pool/main/p/platform-api/libplatform-api1-dev_0.20+14.04.20140411-0ubuntu1_amd64.deb Size: 1944 MD5sum: 443dcf83df2c732c48163aea142995ee SHA1: 7c91696eff44c65b1f972d34d959016e187e84df SHA256: 7fa8a9db82a0de03f526be45b72172c79dd490119a419cc7dd0d42ddd3359c37 Description: Platform API for system level capabilities (development) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 3202ff5a28cf213561124d4022a95e03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplatform-api1-doc Priority: optional Section: doc Installed-Size: 4895 Maintainer: Ubuntu Developers Architecture: all Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libplatform-api1-dev Filename: pool/main/p/platform-api/libplatform-api1-doc_0.20+14.04.20140411-0ubuntu1_all.deb Size: 1568320 MD5sum: 87fd78974eaa0135e0f8d50d48cb1f36 SHA1: 4682a7725cb81e251cf34b763119cd5c14c43c67 SHA256: ce12ad96f7399127c6f5a98a73244cc4af6c4aa02c47410f8976fb517d90d62e Description: Platform API for system level capabilities (development) Homepage: https://launchpad.net/platform-api Description-md5: 91dba5b6aae30b22730a6ddbabdb540f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplatform-hardware-api-headers Priority: optional Section: libdevel Installed-Size: 58 Maintainer: Ubuntu Developers Architecture: amd64 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libplatform-api-headers Filename: pool/main/p/platform-api/libplatform-hardware-api-headers_0.20+14.04.20140411-0ubuntu1_amd64.deb Size: 5088 MD5sum: eb995414983bc19856b1b8e318ffdfe9 SHA1: 0be7529131cad1b434403df5656eaf37cc29d573 SHA256: dead055cd7836d537b527cf9cb5c2c8a4c528c32915c24db33a6e60c2b3c8ef8 Description: Platform API for system level capabilities (API headers) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 23b96ac55caf7d67de1fc92dd6797a36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplatform-hardware-api1-dev Priority: optional Section: libdevel Installed-Size: 41 Maintainer: Ubuntu Developers Architecture: amd64 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libgles2-mesa-dev, libplatform-hardware-api-headers (= 0.20+14.04.20140411-0ubuntu1), libubuntu-platform-hardware-api1 | libplatform-hardware-api1 Suggests: libplatform-api1-doc Filename: pool/main/p/platform-api/libplatform-hardware-api1-dev_0.20+14.04.20140411-0ubuntu1_amd64.deb Size: 1698 MD5sum: fff6b1469a1969814b3dff58f4cc3706 SHA1: 6a6c2fa330805aaa0f1bc97276a6c68fd27ab598 SHA256: 4dee2cfbede9a5d44a116634848f7d6606268752055fb6669d42c065e88d53cd Description: Platform API for system level capabilities (development) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 0aa12ab7a84a04b9fc839f7c620dfee2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist++-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libplist Version: 1.10-1 Replaces: libplist-dev (<= 0.13.2) Depends: libplist++1 (= 1.10-1), libxml2-dev Conflicts: libplist-dev (<= 0.13.2) Filename: pool/main/libp/libplist/libplist++-dev_1.10-1_amd64.deb Size: 5312 MD5sum: 84f8acad5a2625e57ced1ef3aa3bf9e3 SHA1: eb53a85f8e600f76c4087f80a7c11e7080e8151a SHA256: 73c30d5fb4ad1383197b2892e4f42b95ab7a3846eed983053803548f372c31ff Description: Library for handling Apple binary and XML property lists Homepage: http://www.libimobiledevice.org/ Description-md5: f1088db5052569130b43f809f3b1975a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist++1 Priority: optional Section: libs Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libplist Version: 1.10-1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libplist1 (>= 1.10), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/libp/libplist/libplist++1_1.10-1_amd64.deb Size: 23318 MD5sum: 61e52c323f4b8d65288da954103c8bb8 SHA1: 06bfd9aeaa210c3074178b833ec4f43b5525ec12 SHA256: 66bd5c480cb9151a9ea4e4f41de8905e438bc762174c0ec7430a869a037d7c40 Description: Library for handling Apple binary and XML property lists Multi-Arch: same Homepage: http://www.libimobiledevice.org/ Description-md5: 5a7ac9d5c114b33899ffd81af3b81f44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist-dbg Priority: extra Section: debug Installed-Size: 402 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libplist Version: 1.10-1 Depends: libplist1 (= 1.10-1), libplist++1 (= 1.10-1) Filename: pool/main/libp/libplist/libplist-dbg_1.10-1_amd64.deb Size: 301814 MD5sum: 2749cd6e16b578d820805002f6abb2ba SHA1: 8e973019bf732e5c4da48d0c363220702ce0d2f5 SHA256: 9cab9306ed9b3a892a921349263b8019d5a9a8796426e8ec1b7430bfca89d68c Description: Library for handling Apple binary and XML property lists Multi-Arch: same Homepage: http://www.libimobiledevice.org/ Description-md5: e392fc95bc2310a1aa84e417705528c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist-dev Priority: optional Section: libdevel Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libplist Version: 1.10-1 Depends: libplist1 (= 1.10-1), libxml2-dev Filename: pool/main/libp/libplist/libplist-dev_1.10-1_amd64.deb Size: 6078 MD5sum: 2523f8293d1a6c1821d7c675c3a600c0 SHA1: 7390765902513e7c3bf98b33f5068c75facb9a65 SHA256: 2fa566780b0b1f1aad95e0979e8a319ec0ba7b24f1625b088db410005a2dcbc9 Description: Library for handling Apple binary and XML property lists Homepage: http://www.libimobiledevice.org/ Description-md5: 197f408416eccbbab8e6561d3d7150fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist-doc Priority: optional Section: doc Installed-Size: 538 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: all Source: libplist Version: 1.10-1 Depends: libjs-jquery Filename: pool/main/libp/libplist/libplist-doc_1.10-1_all.deb Size: 76236 MD5sum: cc0f9e4b4650e265323272b2d62ac1e0 SHA1: 9bc596583ca94b35656356183338f9f732dc5006 SHA256: ff2d745753f3a3cc060afd373e7d62d948dab37c6f8e9bf688c0a23da9c09833 Description: Library for handling Apple binary and XML property lists - docs Homepage: http://www.libimobiledevice.org/ Description-md5: a269093cbce991e16ed56deffabfb62d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist1 Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libplist Version: 1.10-1 Depends: libc6 (>= 2.14), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/libp/libplist/libplist1_1.10-1_amd64.deb Size: 26830 MD5sum: 7d5867bf93a4898fd45e3fc744c7dc12 SHA1: cae91f2632f893e16c2bd9ede37ce611c1e8c0b7 SHA256: c775d6b9d903b97d5c0693798aad27558c9a6a033a247691212f37355fecdd96 Description: Library for handling Apple binary and XML property lists Multi-Arch: same Homepage: http://www.libimobiledevice.org/ Description-md5: 025ff093cbf9bf08e17d0248380c6438 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libplumb2 Priority: optional Section: libs Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue (<= 1.0.6-1) Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.24.0), libpils2 (>= 1.0.11+hg2754), libuuid1 (>= 2.16) Conflicts: libcluster-glue (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libplumb2_1.0.11+hg2754-1.1build1_amd64.deb Size: 68578 MD5sum: 7b30a025f0f000357f8762fd344b2824 SHA1: 5dc6111d6ab551db60e548d482642b601b377c45 SHA256: 42a38b6b4cf4659a0c5ac5c2d42b8c45a43a1ec455fd39f72724770030028f21 Description: Reusable cluster libraries -- libplumb2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 5f9821063cd3937fbcc51fe1fd7453b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libplumb2-dev Priority: optional Section: libdevel Installed-Size: 528 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1) Depends: libplumb2 (= 1.0.11+hg2754-1.1build1) Conflicts: libcluster-glue-dev (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libplumb2-dev_1.0.11+hg2754-1.1build1_amd64.deb Size: 95628 MD5sum: 7d57c9194d708a5aee8bfe5a510430be SHA1: f5980d37ca2d8538b63699c96eaebdbeb6a136aa SHA256: 75c65c4979e942c7ecb7d74990bb2b612ce580ad981513d8e9ff262a10330ae7 Description: Reusable cluster development files -- libplumb2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 77dfd5dfc0fca7eee81e43c082802c54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplumbgpl2 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue (<= 1.0.6-1) Depends: libc6 (>= 2.4) Conflicts: libcluster-glue (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libplumbgpl2_1.0.11+hg2754-1.1build1_amd64.deb Size: 7288 MD5sum: 88079842882740dc74c6c6503d11ac62 SHA1: 62c0740957106dbd9d737b790132d10a79a6399c SHA256: 6d66bd11215f3ea67d3c19bb24e3ef78b88e7b620b1ff2927377410e0039bffd Description: Reusable cluster libraries -- libplumbgpl2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 2e939e448399e313664ec5d9e4498d57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libplumbgpl2-dev Priority: optional Section: libdevel Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1) Depends: libplumbgpl2 (= 1.0.11+hg2754-1.1build1) Conflicts: libcluster-glue-dev (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libplumbgpl2-dev_1.0.11+hg2754-1.1build1_amd64.deb Size: 5696 MD5sum: 7b7b80ec19d5bf1e48b5ae5f1437a9d9 SHA1: 437a565a786203daf7353e33a94626cef6e6617e SHA256: 11a15b1cd60bac879c8c233cd62b9733512928abdba2d98f70a5064907375286 Description: Reusable cluster development files -- libplumbgpl2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: d06c1abaf1a1f82884745d0f9c6cd882 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplymouth-dev Priority: optional Section: libdevel Installed-Size: 606 Maintainer: Ubuntu Developers Architecture: amd64 Source: plymouth Version: 0.8.8-0ubuntu17 Replaces: plymouth (<< 0.7.0+git20090207-0ubuntu0.1~ppa4) Depends: libplymouth2 (= 0.8.8-0ubuntu17) Filename: pool/main/p/plymouth/libplymouth-dev_0.8.8-0ubuntu17_amd64.deb Size: 87908 MD5sum: 939b7913149e390339e74e372e96a1d1 SHA1: f64a569ba8776e1c9c786c0ae7b7fb68d892f390 SHA256: 5fff2ab0e19380c68052b5dba330ed12d634d5e09163561353459a60d28db21b Description: graphical boot animation and logger - development files Multi-Arch: same Description-md5: 2788897f3e5c5b2f91c898358099697e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplymouth2 Priority: required Section: libs Installed-Size: 302 Maintainer: Ubuntu Developers Architecture: amd64 Source: plymouth Version: 0.8.8-0ubuntu17 Replaces: plymouth (<< 0.7.0+git20090207-0ubuntu0.1~ppa4) Depends: libc6 (>= 2.14), libpng12-0 (>= 1.2.13-4) Pre-Depends: multiarch-support Breaks: casper (= 1.227), mountall (<< 2.8) Filename: pool/main/p/plymouth/libplymouth2_0.8.8-0ubuntu17_amd64.deb Size: 77028 MD5sum: 2f3fc4e5c5c153ba7ba457c4b8d2c6a6 SHA1: b6601b9bec3e7698ba3c951f04231550b1ab897d SHA256: f4fc20ed605241787ac931aa29a4fcef92aea6ec00e2eafe398964945d052a45 Description: graphical boot animation and logger - shared libraries Multi-Arch: same Description-md5: 29e2ed45f3e127c38b58dae52061cc33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpng12-0 Priority: required Section: libs Installed-Size: 305 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libpng Version: 1.2.50-1ubuntu2 Replaces: libpng12-dev (<= 1.2.8rel-7) Depends: libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Conflicts: libpng12-dev (<= 1.2.8rel-7), mzscheme (<= 1:209-5), pngcrush (<= 1.5.10-2), pngmeta (<= 1.11-3), povray-3.5 (<= 3.5.0c-10), qemacs (<= 0.3.1-5) Filename: pool/main/libp/libpng/libpng12-0_1.2.50-1ubuntu2_amd64.deb Size: 117426 MD5sum: f39ae3d8eece1609a11ccabc417980e1 SHA1: ca89c6cd6b9b0afbab8e390b279f90b4e5499eff SHA256: ab4256aa7b304f1e4852c7f545024ee77ebd2f9fa58f1f277162ad991bd10003 Description: PNG library - runtime Multi-Arch: same Homepage: http://libpng.org/pub/png/libpng.html Description-md5: f250be9224d67eae99b2f562b74a33bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpng12-dev Priority: optional Section: libdevel Installed-Size: 655 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libpng Version: 1.2.50-1ubuntu2 Replaces: libpng12-0-dev, libpng3-dev (<= 1.2.5) Provides: libpng-dev, libpng12-0-dev, libpng3-dev Depends: libpng12-0 (= 1.2.50-1ubuntu2), zlib1g-dev Conflicts: libpng-dev, libpng12-0-dev, libpng2 (<< 1.0.12-3), libpng2-dev Filename: pool/main/libp/libpng/libpng12-dev_1.2.50-1ubuntu2_amd64.deb Size: 206078 MD5sum: 1c94d131e03fc495db6b898686c5fea5 SHA1: f506b031df4a3d2d6de1098f72da52fce246644f SHA256: f11324fe7f2432d3af9d2ce179fb7ebc34591ea18b3f0f55e1315d815a912168 Description: PNG library - development Homepage: http://libpng.org/pub/png/libpng.html Description-md5: 748198d86eeddc4aa1418e7d1311203c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpocketsphinx-dev Priority: optional Section: libdevel Installed-Size: 571 Maintainer: Ubuntu Developers Architecture: amd64 Source: pocketsphinx Version: 0.8.0+real-0ubuntu6 Depends: libc6-dev, libpocketsphinx1 (= 0.8.0+real-0ubuntu6) Filename: pool/main/p/pocketsphinx/libpocketsphinx-dev_0.8.0+real-0ubuntu6_amd64.deb Size: 129824 MD5sum: 55719f08b2b57735c2607a13f5ba629c SHA1: 2e7561334b2b6610465877b981bff8d074a7f8cf SHA256: 1cd6a0770d18aaa6884bb12e27e3f02c43aa0a6d96a2a1950326ac67c0c732b8 Description: lightweight speech recognition - development files Description-md5: 5adacc47461ccbe0edbfaadb2030c114 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpocketsphinx1 Priority: optional Section: libs Installed-Size: 298 Maintainer: Ubuntu Developers Architecture: amd64 Source: pocketsphinx Version: 0.8.0+real-0ubuntu6 Depends: libc6 (>= 2.14), libsphinxbase1 (>= 0.8) Filename: pool/main/p/pocketsphinx/libpocketsphinx1_0.8.0+real-0ubuntu6_amd64.deb Size: 113532 MD5sum: d52fbc7e1cb5ecb4ddb37e2de6d6c31d SHA1: d94f7e61cd6c912f9190f81d145f9528ed9d6ccf SHA256: 9f8e9f1c1bbac24cbceafbd35bc978def452c8ebbeeb610d6711371debbcd3f7 Description: lightweight speech recognition - library Description-md5: fdd4220a1e30ff1ef701856add3047c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libpod-coverage-perl Priority: optional Section: perl Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.23-1 Depends: perl, libdevel-symdump-perl Filename: pool/main/libp/libpod-coverage-perl/libpod-coverage-perl_0.23-1_all.deb Size: 22786 MD5sum: 7fc6d01c781f4745be4277d1da93bd1c SHA1: 307fe753343cb2e392fb9be4f996d71a76911557 SHA256: 71ebbcf5abf887dd7bff628d5f3d765f82b0c44b7440fcfdc181e4041ba548c2 Description: checker for comprehensiveness of perl module documentation Homepage: https://metacpan.org/release/Pod-Coverage/ Description-md5: e9fce37b1e0cde66dd70b4cc7ef1e2a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpod-latex-perl Priority: important Section: perl Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.61-1 Depends: perl Filename: pool/main/libp/libpod-latex-perl/libpod-latex-perl_0.61-1_all.deb Size: 32886 MD5sum: a3756c8cdd5f81a22d77d1e1250aec1d SHA1: 0e55b73c86d8fc9e0ffe878c354328284152d6bf SHA256: c60d9fed458d5fdaded1e7d1e18218b71308cb23a3b7f7043665ec9cb9560f0c Description: module to convert Pod data to formatted LaTeX Homepage: https://metacpan.org/release/Pod-LaTeX/ Description-md5: 10547a7da0ffed32c9f964b6846170f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpod-plainer-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.03-1 Depends: perl Filename: pool/main/libp/libpod-plainer-perl/libpod-plainer-perl_1.03-1_all.deb Size: 5950 MD5sum: 55b9e86099f72602d3096f424a09def8 SHA1: 205d871339310e5eb0c4bff9abfe7eb8cfc41073 SHA256: 0d351e9e5fabe9e4104cb43b3aca8caab9516de3a15eea8ecb3a5128274372f4 Description: Perl extension for converting Pod to old-style Pod. Homepage: http://search.cpan.org/dist/Pod-Plainer/ Description-md5: 90b9b5642aba47535f18defa69f3edde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpod-readme-perl Priority: optional Section: perl Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.11-1 Depends: perl, libregexp-common-perl Filename: pool/main/libp/libpod-readme-perl/libpod-readme-perl_0.11-1_all.deb Size: 14218 MD5sum: cf0c86346065ebd47f09308ad91ab47a SHA1: 5b0e0f61398e9f76eb88c3dc549728c09c91cfe8 SHA256: 1648e60a0f281028b40f8296a8fd7788e75f1e488ccbb68369153bec71b0f2ff Description: Perl module to convert POD to README file Homepage: http://search.cpan.org/dist/Pod-Readme/ Description-md5: 9a89e2eeb605c3559eff3dc62e701427 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpod-spell-perl Priority: optional Section: perl Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.12-1 Depends: perl, libclass-tiny-perl, libfile-sharedir-projectdistdir-perl, libfile-slurp-perl, liblingua-en-inflect-perl Filename: pool/main/libp/libpod-spell-perl/libpod-spell-perl_1.12-1_all.deb Size: 30220 MD5sum: 655f05060caa72b2eb1d7d92ed3f898a SHA1: 25d74bb8f5a13540d981e10c30331b4cba209553 SHA256: baaf064174d9093541895fe2e50ea81fe8bce5d267c90852c38d5a9c9c1b9323 Description: formatter to easily check the spelling of POD Homepage: https://metacpan.org/release/Pod-Spell/ Description-md5: eaff2f86c7bb837f181fc25ef0afe879 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpolkit-agent-1-0 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libpolkit-gobject-1-0 (>= 0.105) Pre-Depends: multiarch-support Filename: pool/main/p/policykit-1/libpolkit-agent-1-0_0.105-4ubuntu2_amd64.deb Size: 14786 MD5sum: 55afb77bb9b6045eb8088e3d6f7b091f SHA1: 91b6c76eee6736f6afdc0df0bf51ecde93d0bcce SHA256: 40149c1215136ef28bc1e39dd4aec457afd82a582808cbd79b62cc5275ec97e0 Description: PolicyKit Authentication Agent API Multi-Arch: same Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 9a6eb26d9cf44b4d9acb5e041f4ddf18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpolkit-agent-1-dev Priority: optional Section: libdevel Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libpolkit-agent-1-0 (= 0.105-4ubuntu2), libpolkit-gobject-1-dev, gir1.2-polkit-1.0 (= 0.105-4ubuntu2) Filename: pool/main/p/policykit-1/libpolkit-agent-1-dev_0.105-4ubuntu2_amd64.deb Size: 20790 MD5sum: acb53f6dd88b4c7ad043cc99e83e7b27 SHA1: 2fa2878774f151fa53f27305b099733bb324d896 SHA256: fe34b64ed9ca8d5d330679d9856e03d72acf8526926df0670c531838057cfeae Description: PolicyKit Authentication Agent API - development files Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 7e82da0ca3c53b982d17cc8ea9690d79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpolkit-backend-1-0 Priority: optional Section: libs Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libc6 (>= 2.4), libexpat1 (>= 2.0.1), libglib2.0-0 (>= 2.37.3), libpolkit-gobject-1-0 (>= 0.104), libsystemd-login0 (>= 31) Pre-Depends: multiarch-support Breaks: policykit-1 (<< 0.99) Filename: pool/main/p/policykit-1/libpolkit-backend-1-0_0.105-4ubuntu2_amd64.deb Size: 34600 MD5sum: a4bc477d89fd9bae97435c588dcbd212 SHA1: 6c3be2b7435b67cf3c1f0e626b472e87f5578306 SHA256: 001a87473e69575056e8a452004f66f860ab44fc509c531593d5dba59f51b5b7 Description: PolicyKit backend API Multi-Arch: same Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 126d14cbabd9d5aaa5d367ec33dd192c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpolkit-backend-1-dev Priority: optional Section: libdevel Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libpolkit-backend-1-0 (= 0.105-4ubuntu2), libpolkit-gobject-1-dev Filename: pool/main/p/policykit-1/libpolkit-backend-1-dev_0.105-4ubuntu2_amd64.deb Size: 39282 MD5sum: cc306db6cb1dd7a42e5e3de60495275d SHA1: 8ac57ddadfd1828f9eef3855d2df7c1a3ac6a221 SHA256: 591abbef2b66bef3657e92f45e5bb16a65fa0eea68dadf58020e0b4df12f0a9d Description: PolicyKit backend API - development files Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: d74e7c067ea756e053bc3aefbb7e04ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpolkit-gobject-1-0 Priority: standard Section: libs Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libsystemd-login0 (>= 31) Pre-Depends: multiarch-support Breaks: libpolkit-agent-1-0 (<< 0.99), libpolkit-backend-1-0 (<< 0.99), libpolkit-gtk-1-0 (<< 0.99), policykit-1 (<< 0.99) Filename: pool/main/p/policykit-1/libpolkit-gobject-1-0_0.105-4ubuntu2_amd64.deb Size: 34508 MD5sum: 9c61350266660f5d68ff1aab48caf78e SHA1: 88533ce01a851dee49314ac02ab080153e30c8ca SHA256: 7a275842ca6e41879c390c0264f68ad2969b4809b9d519ef482e9ca93ba0bc54 Description: PolicyKit Authorization API Multi-Arch: same Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: c1a8724c66c4379fb4889482c08012fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libpolkit-gobject-1-dev Priority: optional Section: libdevel Installed-Size: 519 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libpolkit-gobject-1-0 (= 0.105-4ubuntu2), libglib2.0-dev, gir1.2-polkit-1.0 (= 0.105-4ubuntu2) Filename: pool/main/p/policykit-1/libpolkit-gobject-1-dev_0.105-4ubuntu2_amd64.deb Size: 51756 MD5sum: 4794f3122b6780c9e6cb2698a7cdb748 SHA1: d1f9b318fe3bbd7d600a7b4903e179ad099ba031 SHA256: bd8d2a0042957baa262a2fac81bd01f896136ccd965c44942e93d4d100b98fdc Description: PolicyKit Authorization API - development files Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 087c4a65220a0fe10af5d323da0bd877 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpolkit-qt-1-1 Priority: extra Section: libs Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: polkit-qt-1 Version: 0.103.0-1ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libpolkit-agent-1-0 (>= 0.99), libpolkit-gobject-1-0 (>= 0.99), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1), consolekit Filename: pool/main/p/polkit-qt-1/libpolkit-qt-1-1_0.103.0-1ubuntu1_amd64.deb Size: 53908 MD5sum: 1c0836170b667cdde78d3990df6ee62d SHA1: de8acda4f3f68067217d09c4e7c17c53e41e5061 SHA256: 627eb9730732f039fd3547586e7d3c5a34b1131054be9c3376521bc392ed0c69 Description: PolicyKit-qt-1 library Description-md5: 7b673f8393da09809d9ec64e4790e7d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libpolkit-qt-1-dev Priority: extra Section: libdevel Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: polkit-qt-1 Version: 0.103.0-1ubuntu1 Depends: libpolkit-qt-1-1 (= 0.103.0-1ubuntu1), libqt4-dev Filename: pool/main/p/polkit-qt-1/libpolkit-qt-1-dev_0.103.0-1ubuntu1_amd64.deb Size: 17758 MD5sum: 6dea88503d5a4438272206dbd46a0062 SHA1: dbade3176cae51dc8344e1b578319e8178efbb69 SHA256: 817673be2374cd21b958ed6be34c4558ddca326526f5adaf8c67b526c4a958fc Description: PolicyKit-qt-1 development files Description-md5: b614da7af973669b067a12fbccd7447c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-cpp-dev Priority: optional Section: libdevel Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler-cpp0 (= 0.24.5-2ubuntu4), libpoppler-dev (= 0.24.5-2ubuntu4) Filename: pool/main/p/poppler/libpoppler-cpp-dev_0.24.5-2ubuntu4_amd64.deb Size: 33194 MD5sum: aa979db948e36431f02a61dbaa5df035 SHA1: 0e90f80f2990470833ce549610a2af2b00c373a2 SHA256: fc94d4a7f91abd84c2a011c1e2c1e94b16418f45f1716c365dfb81dae64d856d Description: PDF rendering library -- development files (CPP interface) Homepage: http://poppler.freedesktop.org/ Description-md5: b8ccf7d2887aa9a8117d5795dcfa8442 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-cpp0 Priority: optional Section: libs Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libc6 (>= 2.14), libpoppler44 (>= 0.24.5), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/p/poppler/libpoppler-cpp0_0.24.5-2ubuntu4_amd64.deb Size: 28438 MD5sum: ffa119d8f6f542b30aeed86c8a3f83ba SHA1: 5aeb0e547e4362ea2a05ac31a1f040837605e7d4 SHA256: d80e940b88622a31978b8f800039c7971f75c95431b7cc52ef1722dc33ed6f88 Description: PDF rendering library (CPP shared library) Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: bd2c0f6fbd7019f0ce9ff23bdb5a718d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-dev Priority: optional Section: libdevel Installed-Size: 3951 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler44 (= 0.24.5-2ubuntu4), libpoppler-private-dev Filename: pool/main/p/poppler/libpoppler-dev_0.24.5-2ubuntu4_amd64.deb Size: 701848 MD5sum: 8f0e12b4843d2a2424f2a98e7c531437 SHA1: 9da76a0f0b0fb28d2be2dfec3fab4eaf78e0a20e SHA256: 7849f169b7324f748c88c254bfe964afc6ecd9989870ec9fb11eb7d3f8bdd942 Description: PDF rendering library -- development files Homepage: http://poppler.freedesktop.org/ Description-md5: 6d35e7b20480c00075b7865baad4287e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-glib-dev Priority: optional Section: libdevel Installed-Size: 873 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler-glib8 (= 0.24.5-2ubuntu4), libpoppler-dev (= 0.24.5-2ubuntu4), gir1.2-poppler-0.18 (= 0.24.5-2ubuntu4), libglib2.0-dev (>= 2.18), libcairo2-dev (>= 1.10.0) Suggests: libpoppler-glib-doc Filename: pool/main/p/poppler/libpoppler-glib-dev_0.24.5-2ubuntu4_amd64.deb Size: 114158 MD5sum: 62657dcaad73ac59277aed2a4f3efbe8 SHA1: 1cd849a139386e6c37574257466ba511b053400d SHA256: e59ab5e0db5eea6bf876d639b58b771565c269b9423feb82dbe384e002f8ef9e Description: PDF rendering library -- development files (GLib interface) Homepage: http://poppler.freedesktop.org/ Description-md5: 4483b544bc64264785fa77d6466a341f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-glib-doc Priority: optional Section: doc Installed-Size: 888 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: all Source: poppler Version: 0.24.5-2ubuntu4 Replaces: libpoppler-glib-dev (<< 0.24.4) Depends: libglib2.0-doc, libcairo2-doc Breaks: libpoppler-glib-dev (<< 0.24.4) Filename: pool/main/p/poppler/libpoppler-glib-doc_0.24.5-2ubuntu4_all.deb Size: 55314 MD5sum: 5b278e260a4e7d0903b5247a73ee1435 SHA1: cb406d94114be43847a5fb2c254a93bde652aab2 SHA256: e3ead5314fd6f725211f3070a02e06434344f00b36607a182d051a8497807e16 Description: PDF rendering library -- documentation for the GLib interface Homepage: http://poppler.freedesktop.org/ Description-md5: 57cf6faf4d2f4c9877d6db227de05dcd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-glib8 Priority: optional Section: libs Installed-Size: 351 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libc6 (>= 2.14), libcairo2 (>= 1.12.0), libfreetype6 (>= 2.2.1), libglib2.0-0 (>= 2.37.3), libpoppler44 (>= 0.24.5), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/poppler/libpoppler-glib8_0.24.5-2ubuntu4_amd64.deb Size: 83410 MD5sum: 8e6e9a3c16f23f0aefc1ac877d5a259c SHA1: 1348650c017b301943fb4156e5d8105592cd54d4 SHA256: 64c5dfd85e13a274848f147e7b5b33549df3107cfd78e7b9bc2ff07ac1c0ea2a Description: PDF rendering library (GLib-based shared library) Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: 3d73daa08a49dca5cd4c25e32862c41e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpoppler-private-dev Priority: optional Section: libdevel Installed-Size: 1161 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Replaces: libpoppler-dev (<< 0.20.2) Depends: libpoppler-dev (= 0.24.5-2ubuntu4) Suggests: libfreetype6-dev Breaks: libpoppler-dev (<< 0.20.2) Filename: pool/main/p/poppler/libpoppler-private-dev_0.24.5-2ubuntu4_amd64.deb Size: 158452 MD5sum: c9d5a0b54b7b513af0577cfa2cfec39d SHA1: 98138d1b3036a11066e23baf8f820b28d37ce111 SHA256: d7adb029f1ca7421e910091a36df76426209639ea0c510c6569e530d8ca3cad9 Description: PDF rendering library -- private development files Homepage: http://poppler.freedesktop.org/ Description-md5: f047a262a6d3ff3cbd6650f1d55e93d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-qt4-4 Priority: optional Section: libs Installed-Size: 448 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libc6 (>= 2.14), libpoppler44 (>= 0.24.5), libqt4-xml (>= 4:4.5.3), libqtcore4 (>= 4:4.8.4), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/poppler/libpoppler-qt4-4_0.24.5-2ubuntu4_amd64.deb Size: 106828 MD5sum: 510a084f69ac3be45a59b1881d0b49a2 SHA1: 91bec22830bd1b0d66324e3cc2380c7b17644cc6 SHA256: a9fbb2805185c92b7c362a6395a823689150010cb114e8db6e7169ca0dc9120c Description: PDF rendering library (Qt 4 based shared library) Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: 7aba3c6a3f8bfa6fa8e6d9ea66a1433d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libpoppler-qt4-dev Priority: optional Section: libdevel Installed-Size: 935 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler-qt4-4 (= 0.24.5-2ubuntu4), libpoppler-dev (= 0.24.5-2ubuntu4), libqt4-dev (>= 4.4.0) Filename: pool/main/p/poppler/libpoppler-qt4-dev_0.24.5-2ubuntu4_amd64.deb Size: 137238 MD5sum: 7b9f30dc943b5ce22b4bcaa035b10a3f SHA1: eaf02e99b12a093da2abd8bc5f99df33362fe28e SHA256: 93a18689a710650bd962a455b513fea0c06a4290938321731e90897c30d8a500 Description: PDF rendering library -- development files (Qt 4 interface) Homepage: http://poppler.freedesktop.org/ Description-md5: 49af48187cf9e04b62ac9215438d6465 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-qt5-1 Priority: optional Section: libs Installed-Size: 448 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libc6 (>= 2.14), libpoppler44 (>= 0.24.5), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5xml5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/poppler/libpoppler-qt5-1_0.24.5-2ubuntu4_amd64.deb Size: 110210 MD5sum: ec37d92d02d273fa46728f2fbdb0a7fc SHA1: 1d8d95d2a0f1fe731a8efa83e49067ddde134fd3 SHA256: 0c34b54a0fb03cbdc5058d2c128b85f254dae69836b9588634018b69e97f6ad7 Description: PDF rendering library (Qt 5 based shared library) Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: 0ac9bcecfcfad7f5e76c5f9836ae7168 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-qt5-dev Priority: optional Section: libdevel Installed-Size: 951 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler-qt5-1 (= 0.24.5-2ubuntu4), libpoppler-dev (= 0.24.5-2ubuntu4), qtbase5-dev Filename: pool/main/p/poppler/libpoppler-qt5-dev_0.24.5-2ubuntu4_amd64.deb Size: 142658 MD5sum: 94ead3d1991b08a5c4dc1c15d6f16541 SHA1: 665e31956c8924134e5bac9c56837b03821fec6e SHA256: 914afe406ebec0d7328012dd1974e6379b4500e211e184004bfdb208e3017e81 Description: PDF rendering library -- development files (Qt 5 interface) Homepage: http://poppler.freedesktop.org/ Description-md5: 23f42cab8509c36d744da26df5cb855a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler44 Priority: optional Section: libs Installed-Size: 2503 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libc6 (>= 2.14), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libpng12-0 (>= 1.2.13-4), libstdc++6 (>= 4.1.1), libtiff5 (>= 4.0.3) Pre-Depends: multiarch-support Suggests: poppler-data Filename: pool/main/p/poppler/libpoppler44_0.24.5-2ubuntu4_amd64.deb Size: 704092 MD5sum: 0df230e8abf29f58fbaf805ee6e386fb SHA1: 4aa904ea9c5af8be6ad08f169122622dfd197922 SHA256: 7e410f268c315b92091f4185c1aac6d90469684559d21edd3ceadc1a543d450f Description: PDF rendering library Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: 74b6b371a9886bca4fc2c2761b5a2fec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpopt-dev Priority: optional Section: libdevel Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Paul Martin Architecture: amd64 Source: popt Version: 1.16-8ubuntu1 Replaces: popt Depends: libc6-dev | libc-dev, libpopt0 (= 1.16-8ubuntu1) Conflicts: popt Filename: pool/main/p/popt/libpopt-dev_1.16-8ubuntu1_amd64.deb Size: 40072 MD5sum: dcf93ba36841cc3137cf2d3b6f4ed7c0 SHA1: 355ff61a4b2f7ef57963f2a66800511a2f5e852e SHA256: 1483181e6ecf759111725148b5ce1c56627e5a49a586fd04c884b6f02783bc05 Description: lib for parsing cmdline parameters - development files Multi-Arch: same Homepage: http://rpm5.org/ Description-md5: ace33b20a6121b7b5a6c26940bbab356 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpopt0 Priority: important Section: libs Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Paul Martin Architecture: amd64 Source: popt Version: 1.16-8ubuntu1 Replaces: popt Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libpopt-dev (<= 1.4-1), popt, rpm (<= 4.0.2-3) Filename: pool/main/p/popt/libpopt0_1.16-8ubuntu1_amd64.deb Size: 25500 MD5sum: 6ea03aeb178aa0beb06a52a182985c5f SHA1: a767ee02c2bcd81bd34b54b9ef15be3927c42eff SHA256: 39568e2bbf8f85f7dc372e778ce2aaf8a2e902baf9c1c62eabdf06169c747719 Description: lib for parsing cmdline parameters Multi-Arch: same Homepage: http://rpm5.org/ Description-md5: 1bc14780a06cc6b9a0c726cd091c6d96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libportaudio2 Priority: optional Section: libs Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Debian VoIP Team Architecture: amd64 Source: portaudio19 Version: 19+svn20140130-1 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.15), libjack-jackd2-0 (>= 1.9.5~dfsg-14) | libjack-0.116 Pre-Depends: multiarch-support Filename: pool/main/p/portaudio19/libportaudio2_19+svn20140130-1_amd64.deb Size: 62868 MD5sum: cce6f0edd7e0df7a57b17c57d4586f64 SHA1: 621581d4f60d07ee805a1688b6c71ba68792c278 SHA256: 722faf28e4e2723e62e0411467de071b22554235db6fbba54afa80534e827cca Description: Portable audio I/O - shared library Multi-Arch: same Homepage: http://www.portaudio.com/ Description-md5: a71bbbd00a98fe093b85cc97ff79e9ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libportaudiocpp0 Priority: optional Section: libs Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian VoIP Team Architecture: amd64 Source: portaudio19 Version: 19+svn20140130-1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libportaudio2 (>= 19+svn20101113), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/portaudio19/libportaudiocpp0_19+svn20140130-1_amd64.deb Size: 15686 MD5sum: b611d7f934f36bd8fa7491cfd956b4d0 SHA1: 80f12da5dcca3d867b75442c965d67d55719ef0b SHA256: b48147e06661e4473e12f976dc4b6bb6dd4dedce2f015cc3a550ebb9095a2ef6 Description: Portable audio I/O C++ bindings - shared library Multi-Arch: same Homepage: http://www.portaudio.com/ Description-md5: cad40baf68fba1028830450850d536d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppi-perl Priority: optional Section: perl Installed-Size: 1152 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.215-1 Depends: perl, libio-string-perl, libtask-weaken-perl, libclone-perl (>= 0.30), libparams-util-perl, liblist-moreutils-perl Filename: pool/main/libp/libppi-perl/libppi-perl_1.215-1_all.deb Size: 380598 MD5sum: 7a312985f3d6c184dd2223cc1c9294f8 SHA1: 000a3ecfa7d30147b5deca8cf5b48b5de191648c SHA256: e5ac31d49a7f1c036e84bf8f6faab3271c7176a0640588f4ae28f40696b42212 Description: module to parse, analyze and manipulate Perl code Homepage: http://search.cpan.org/dist/PPI/ Description-md5: 65e8ee936b1f6025105595702eb5063b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppix-regexp-perl Priority: optional Section: perl Installed-Size: 536 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.036-1 Depends: liblist-moreutils-perl, libppi-perl, libtask-weaken-perl, perl Filename: pool/main/libp/libppix-regexp-perl/libppix-regexp-perl_0.036-1_all.deb Size: 222562 MD5sum: 847ca5e81f67f76dabf522d840e23777 SHA1: 7c5a511a227b4547172593cb75087e30a18013d9 SHA256: 93032100b67ca70bd9d78ad6c340c73315e8eaf9358afa35fc63f476f7bd164e Description: module to parse regular expressions Homepage: https://metacpan.org/release/PPIx-Regexp/ Description-md5: affd490263909622de74933e9561bd66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppix-utilities-perl Priority: optional Section: perl Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.001000-1 Depends: perl, libexception-class-perl, libppi-perl (>= 1.208), libreadonly-perl, libtask-weaken-perl Filename: pool/main/libp/libppix-utilities-perl/libppix-utilities-perl_1.001000-1_all.deb Size: 17858 MD5sum: 137efc18b9992f3e7f32a9cdc5b46a12 SHA1: f3c010d659415a4db10bc2c814eec68f57cc4d81 SHA256: 0c242e77cb6091b0c72e8ec2586cc3a948270ae096613b438d6430c1f79f0210 Description: Perl module containing extensions to PPI Homepage: http://search.cpan.org/dist/PPIx-Utilities/ Description-md5: e922ae96d09b0f657c401d05c9b73c7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppl-c4 Priority: optional Section: libs Installed-Size: 4023 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: ppl Version: 1:1.1-1ubuntu1 Depends: libppl13 (= 1:1.1-1ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgmp10, libgmpxx4ldbl, libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/p/ppl/libppl-c4_1.1-1ubuntu1_amd64.deb Size: 981286 MD5sum: fa882962424a11e6ff975e5f7f929bc4 SHA1: c7ba5b1825f959cc683f6af364683cb8b255140a SHA256: 82e1569873d4a97582c4e09608bb0a9c2dcb86e8b3c1ad3df8b9dc4d506da1c7 Description: Parma Polyhedra Library (C interface) Multi-Arch: same Homepage: http://www.cs.unipr.it/ppl/ Description-md5: 3c87365d9c2bd2105b6021fbbfa6cdf0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppl-dev Priority: optional Section: libdevel Installed-Size: 18364 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: ppl Version: 1:1.1-1ubuntu1 Replaces: libppl0.12-dev, libppl6, libppl7 (<< 0.10~pre27-4), libppl9 Provides: libppl-c-dev, libppl0.12-dev Depends: libppl13 (= 1:1.1-1ubuntu1), libppl-c4 (= 1:1.1-1ubuntu1) Recommends: libgmp3-dev (>= 4.1.3) Suggests: libppl-doc Conflicts: libppl0.10-dev, libppl0.11-dev Filename: pool/main/p/ppl/libppl-dev_1.1-1ubuntu1_amd64.deb Size: 1854646 MD5sum: c588fc9145bdfeb99d4f7a4830a2a948 SHA1: d7f1fe8d194e7194bc37ee86596f8b71536fc78c SHA256: 186c416411a34dbf9cb817d5fc03358a841a4693dbd3599449e93ca557cc3d3c Description: Parma Polyhedra Library (development) Multi-Arch: same Homepage: http://www.cs.unipr.it/ppl/ Description-md5: 4fa45d1b24bb1abf6f705e66d3cc4f4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppl-doc Priority: optional Section: doc Installed-Size: 15597 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: ppl Version: 1:1.1-1ubuntu1 Depends: libjs-jquery Filename: pool/main/p/ppl/libppl-doc_1.1-1ubuntu1_all.deb Size: 6475154 MD5sum: 9eae967657092cc40472772371e54188 SHA1: 33c19188913e1e0f8ca82c7aa322afe08b375706 SHA256: 9d29a8d6428989bed36a4342efa55f5aa6a620ddb211d1c58f940c5478d75329 Description: Parma Polyhedra Library: Documentation Homepage: http://www.cs.unipr.it/ppl/ Description-md5: e029bc6a5a70f3c124b8771f1c1acfb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppl13 Priority: optional Section: libs Installed-Size: 1445 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: ppl Version: 1:1.1-1ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgmp10, libgmpxx4ldbl, libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/p/ppl/libppl13_1.1-1ubuntu1_amd64.deb Size: 434416 MD5sum: a596375e96320ab6ea00f70fa57c0aaa SHA1: 27919577ec72b3987cdf54a7bae3ba6da3251f0d SHA256: f11b026e4ddbf55ef18c834d02e0067612c617d35e3a1525721f130ae38fb217 Description: Parma Polyhedra Library (runtime library) Multi-Arch: same Homepage: http://www.cs.unipr.it/ppl/ Description-md5: 5bfdb37d7ebe77449accec15da9c6faa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpq-dev Priority: optional Section: libdevel Installed-Size: 720 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.4), libpq5 (= 9.3.4-1), libssl-dev, krb5-multidev, comerr-dev Suggests: postgresql-doc-9.3 Filename: pool/main/p/postgresql-9.3/libpq-dev_9.3.4-1_amd64.deb Size: 138888 MD5sum: 56d8b168cd059c17ce29211ba8610111 SHA1: 28fb61e9b8791c7934e28f7ffe604ef2875e69b9 SHA256: e03839622bba3c67a876894aa9863b1be11f50c104a3e1582005393c4278c585 Description: header files for libpq5 (PostgreSQL library) Homepage: http://www.postgresql.org/ Description-md5: 7f4362b106aae6b219ccc880faa1f04c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpq5 Priority: optional Section: libs Installed-Size: 264 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.14), libcomerr2 (>= 1.01), libgssapi-krb5-2 (>= 1.10+dfsg~), libkrb5-3 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7), libssl1.0.0 (>= 1.0.0) Filename: pool/main/p/postgresql-9.3/libpq5_9.3.4-1_amd64.deb Size: 79936 MD5sum: 298d372dd5e131398ec75534a48c52ea SHA1: 7fd0faaad3b9dbd174eb0e76e5281067dc408b32 SHA256: 1c7a14322e5e7f2a8fdf3beaf6ebb0f9a41fb2d3631b590b3f88e0158c1051f4 Description: PostgreSQL C client library Homepage: http://www.postgresql.org/ Description-md5: 4109d08c168c8058d09c0cc8bf8b18b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: libprelude-dev Priority: extra Section: libdevel Installed-Size: 362 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: amd64 Source: libprelude Version: 1.0.0-11ubuntu4 Depends: libprelude2 (= 1.0.0-11ubuntu4), libgnutls-dev, libltdl3-dev Filename: pool/main/libp/libprelude/libprelude-dev_1.0.0-11ubuntu4_amd64.deb Size: 39270 MD5sum: 9136daa13aaa9aa3a369a68ead1f0b8c SHA1: 2865f14623de2b908013606ecb0a0c1119d7fc0d SHA256: fc59e9b3ea2e082a237e050c268898d860a76d7f45f33e261963905084f6dc62 Description: Security Information Management System [ Development files ] Description-md5: 138cca58ff9d9fd91ec449e73640bf26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprelude2 Priority: extra Section: libs Installed-Size: 4952 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: amd64 Source: libprelude Version: 1.0.0-11ubuntu4 Depends: libc6 (>= 2.16), libgcc1 (>= 1:4.1.1), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libltdl7 (>= 2.4.2), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/libp/libprelude/libprelude2_1.0.0-11ubuntu4_amd64.deb Size: 433372 MD5sum: 3f59f0c168ba4c798a612e41d5f5680e SHA1: c3b4d4f3ef33a83d712bd6a9997bea424e2bbe24 SHA256: 91728bab44a9b90e6c0e112924d8202b68c2d6dfc711b5fa772907f699a99f47 Description: Security Information Management System [ Base library ] Description-md5: 62d7e58647fcf77e9c8e77ffab7eb8bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprelude2-dbg Priority: extra Section: libdevel Installed-Size: 3653 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: amd64 Source: libprelude Version: 1.0.0-11ubuntu4 Depends: libprelude2 (= 1.0.0-11ubuntu4) Filename: pool/main/libp/libprelude/libprelude2-dbg_1.0.0-11ubuntu4_amd64.deb Size: 2939134 MD5sum: ad0173829aa2a661675f7de4e8aae1b9 SHA1: 37d43a7913c3dfd5631fda0714ec0c96110c0c55 SHA256: 2bce42b173deabf6b82a12a0609004d62d174f496eb4ac915c8475e29e7bd212 Description: Security Information Management System [ Debug symbols ] Description-md5: ec7bb4fdbdc5f383b4e869af13f6d781 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprobe-perl-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.03-1 Depends: perl Filename: pool/main/libp/libprobe-perl-perl/libprobe-perl-perl_0.03-1_all.deb Size: 9484 MD5sum: 19558160cf9bd467e3ebb45ad317142c SHA1: 61953a2b7c2f9738a072e3f39b4a0925076d61a7 SHA256: beae4a1d3eb657b5c19151c75b4d49d751e6955e3615f2b0fc7b49cee0329829 Description: module to obtain information about the currently running Perl interpreter Homepage: https://metacpan.org/release/Probe-Perl/ Description-md5: 66746d1359f8984288612a9dc9fa8f25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproc-waitstat-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Roderick Schertler Architecture: all Version: 1.00-4 Depends: perl (>= 5.6.0-16), libipc-signal-perl Filename: pool/main/libp/libproc-waitstat-perl/libproc-waitstat-perl_1.00-4_all.deb Size: 7806 MD5sum: dfeba7d08b9e7de10c36450b293c05de SHA1: b230a5c2b73ac749f23bb4a1bbf1f419d25559c4 SHA256: 11bcf620dd2db4231d4fafe89318eb0b57dee9286449984961a5bbf405500dd3 Description: interpret and act on wait() status values Description-md5: ba774cbff5e3902aaee874b1aa3dad86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libprocess-cpp-dev Priority: optional Section: libdevel Installed-Size: 123 Maintainer: Ubuntu Developers Architecture: amd64 Source: process-cpp Version: 1.0.0+14.04.20140328-0ubuntu1 Depends: libprocess-cpp1 (= 1.0.0+14.04.20140328-0ubuntu1), libproperties-cpp-dev Recommends: libprocess-cpp-doc Filename: pool/main/p/process-cpp/libprocess-cpp-dev_1.0.0+14.04.20140328-0ubuntu1_amd64.deb Size: 12676 MD5sum: c8977c1e74413ca882feba5fbf269ccf SHA1: 8c6f4c360511a0088a210bcabfa5ea8841fcd6a2 SHA256: 4ee4a7fe0d59519db7e2b8411d5b88b28193b1d15a2548b11cef0309613d45ee Description: C++11 library for handling processes - dev headers and libraries Multi-Arch: same Homepage: https://launchpad.net/process-cpp Description-md5: dcd76cecf0a246b42fd8588729884034 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprocess-cpp-doc Priority: optional Section: doc Installed-Size: 9472 Maintainer: Ubuntu Developers Architecture: all Source: process-cpp Version: 1.0.0+14.04.20140328-0ubuntu1 Suggests: libprocess-cpp-dev Filename: pool/main/p/process-cpp/libprocess-cpp-doc_1.0.0+14.04.20140328-0ubuntu1_all.deb Size: 5993656 MD5sum: 04ace237ff8978667fbab30f9988f79f SHA1: 36b7e459927fd74cd3ab7e35f84ca599bbd4856a SHA256: 050decf7400fd3f99bd0e1c9d1b9e6e3a26d435d93c15dfb66088b5bdfba3337 Description: Documentation files for libprocess-cpp-dev Homepage: https://launchpad.net/process-cpp Description-md5: b89b7ffbc6e88c4dcf4977b612c0bb09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprocess-cpp1 Priority: optional Section: libs Installed-Size: 186 Maintainer: Ubuntu Developers Architecture: amd64 Source: process-cpp Version: 1.0.0+14.04.20140328-0ubuntu1 Depends: libboost-iostreams1.54.0, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.8) Pre-Depends: multiarch-support Filename: pool/main/p/process-cpp/libprocess-cpp1_1.0.0+14.04.20140328-0ubuntu1_amd64.deb Size: 46570 MD5sum: bdc7b2528c2cfd9a36d7811a70913b8b SHA1: 8bad2536fd3f86709fac7a8a8a948ce5f317c494 SHA256: e028db07dcae942924758c94d6d72992f1fd2ab193fa53f3ebc146aa37601ef7 Description: C++11 library for handling processes - runtime library Multi-Arch: same Homepage: https://launchpad.net/process-cpp Description-md5: 6a2ab05d94dd1697f6eb96419a629505 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Package: libprocps3 Priority: required Section: libs Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: procps Version: 1:3.3.9-1ubuntu2 Replaces: procps (<< 1:3.3.2-1) Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/p/procps/libprocps3_3.3.9-1ubuntu2_amd64.deb Size: 31604 MD5sum: 5d0eec139301a9e86b6d5878f5063085 SHA1: b3bc5ab404b7712f419ff1e8734ad6df26e37d70 SHA256: 3ce68d1e25cdad159d08c2c3eb5d5d7f1fa801d5258d7b9d111c9850fac6edc7 Description: library for accessing process information from /proc Multi-Arch: same Homepage: http://gitorious.org/procps Description-md5: 195f4a1a493350f6f0732a65b3cda83f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libprocps3-dev Priority: optional Section: libdevel Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: procps Version: 1:3.3.9-1ubuntu2 Replaces: libproc-dev, libprocps0-dev, libprocps1-dev Provides: libprocps-dev Depends: libprocps3 (= 1:3.3.9-1ubuntu2), libc-dev Conflicts: libproc-dev, libprocps0-dev, libprocps1-dev Filename: pool/main/p/procps/libprocps3-dev_3.3.9-1ubuntu2_amd64.deb Size: 40372 MD5sum: 17fdb6e34fb88e9835c501f34f703dff SHA1: 9e5efc2becd8ecaa8cb997bce012d2ab4d60e575 SHA256: ce8c80e71bd4e774998b47285adadd773d5ccc916f84afcb298d0bcb0786537d Description: library for accessing process information from /proc Homepage: http://gitorious.org/procps Description-md5: c56d4abfd4ec994d5057fac741fac18b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproperties-cpp-dev Priority: optional Section: libdevel Installed-Size: 67 Maintainer: Ubuntu Developers Architecture: amd64 Source: properties-cpp Version: 0.0.1+14.04.20140220-0ubuntu1 Recommends: libproperties-cpp-doc Filename: pool/main/p/properties-cpp/libproperties-cpp-dev_0.0.1+14.04.20140220-0ubuntu1_amd64.deb Size: 6440 MD5sum: e4139a3d1d541c4085150d4f574827fe SHA1: cc29e35d6045365ef2f5848940d6c1fc66c8dfd7 SHA256: bc53c6a63ad7f92436307cad4bab033be30697e2bab0f598a19c9205cd3deb05 Description: C++11 library providing properties/signals. - dev headers Multi-Arch: same Homepage: https://launchpad.net/properties-cpp Description-md5: d682fb796e380ab1e5ff0185b9458cd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproperties-cpp-doc Priority: optional Section: doc Installed-Size: 1693 Maintainer: Ubuntu Developers Architecture: all Source: properties-cpp Version: 0.0.1+14.04.20140220-0ubuntu1 Filename: pool/main/p/properties-cpp/libproperties-cpp-doc_0.0.1+14.04.20140220-0ubuntu1_all.deb Size: 372726 MD5sum: 2838899c9cb04cf7d04ec04f03609b6d SHA1: 8a25ca3c2352c6a4799156ed1981b82949c08e7a SHA256: 90f765df031ef32385b7c701e306513feddb99bec17610abef08b52ea9332ad1 Description: Documentation files for libproperties-cpp-dev Homepage: https://launchpad.net/properties-cpp Description-md5: 71a24a32219d670df4a478b0f74383ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprotobuf-dev Priority: extra Section: libdevel Installed-Size: 3214 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: protobuf Version: 2.5.0-9ubuntu1 Depends: zlib1g-dev, libprotobuf8 (= 2.5.0-9ubuntu1), libprotobuf-lite8 (= 2.5.0-9ubuntu1) Filename: pool/main/p/protobuf/libprotobuf-dev_2.5.0-9ubuntu1_amd64.deb Size: 420996 MD5sum: 794b780727455c773105256466e7a917 SHA1: a922f6da3ee3f2eabf44c1a047c50dc5736cc5bd SHA256: b3d9ee51933f95ed226712c06b565cf358db447eef128a5cea4b74cf8f1c9b1d Description: protocol buffers C++ library (development files) Multi-Arch: same Homepage: https://code.google.com/p/protobuf/ Description-md5: 46508a20bc181591502383b4f00be1a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprotobuf-lite8 Priority: optional Section: libs Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: protobuf Version: 2.5.0-9ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.3) Filename: pool/main/p/protobuf/libprotobuf-lite8_2.5.0-9ubuntu1_amd64.deb Size: 52708 MD5sum: af657865792bd5b0b0c2298c48f554e5 SHA1: 98594b01b70d713146514590aea0723fe63f5ed3 SHA256: f996d165c7909f6d7a8464b2276c608fbf1efd882ab88c0fca6dac2b727fd961 Description: protocol buffers C++ library (lite version) Multi-Arch: same Homepage: https://code.google.com/p/protobuf/ Description-md5: bef75569f3d092ed9b714a68e215c917 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprotobuf8 Priority: optional Section: libs Installed-Size: 1083 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: protobuf Version: 2.5.0-9ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.3), zlib1g (>= 1:1.1.4) Filename: pool/main/p/protobuf/libprotobuf8_2.5.0-9ubuntu1_amd64.deb Size: 295984 MD5sum: e0ef0861f40071ed6f6606ac3b7c3742 SHA1: 2486d798f5cbbf7b715ccce8cf13b8e818de11a3 SHA256: fb5a809bd80366c2751f9e8be1e64c80a6285b865ad4fba04c03933a49faf820 Description: protocol buffers C++ library Multi-Arch: same Homepage: https://code.google.com/p/protobuf/ Description-md5: c69f5af146ab9bc64e44b912e5af457e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libprotoc-dev Priority: extra Section: libdevel Installed-Size: 1885 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: protobuf Version: 2.5.0-9ubuntu1 Replaces: libprotobuf-dev (<< 2.1.0) Depends: libprotoc8 (= 2.5.0-9ubuntu1), libprotobuf-dev (= 2.5.0-9ubuntu1) Breaks: libprotobuf-dev (<< 2.1.0) Filename: pool/main/p/protobuf/libprotoc-dev_2.5.0-9ubuntu1_amd64.deb Size: 267976 MD5sum: a4b2e147e42baabba5700de16e61da94 SHA1: 10bc8c9e89148e8ec9daa61b1705c67f2379cc6b SHA256: 598ae8ead4ac57e5e80ab0ace7afde3fafd1c46c7ca048e3c60fbd61677a9666 Description: protocol buffers compiler library (development files) Multi-Arch: same Homepage: https://code.google.com/p/protobuf/ Description-md5: 441ff9619f6d64f58de3a01f647b0edb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprotoc8 Priority: optional Section: libs Installed-Size: 896 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: protobuf Version: 2.5.0-9ubuntu1 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libprotobuf8, libstdc++6 (>= 4.4.0) Filename: pool/main/p/protobuf/libprotoc8_2.5.0-9ubuntu1_amd64.deb Size: 234512 MD5sum: 5468a684611a7877cda850c19e33a6be SHA1: 507dd0f60f09db0beb9df292ad9c698c9a621600 SHA256: 472d58f45e8cf87c898fb95ef087ec89e9a49197753a95b5b3cd2408ee9d210e Description: protocol buffers compiler library Multi-Arch: same Homepage: https://code.google.com/p/protobuf/ Description-md5: c53c70dca7ff74e285f88be70de72a0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproxy-cil-dev Priority: optional Section: cli-mono Installed-Size: 39 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: all Source: libproxy Version: 0.4.11-0ubuntu4 Depends: libproxy0.4-cil (= 0.4.11-0ubuntu4) Filename: pool/main/libp/libproxy/libproxy-cil-dev_0.4.11-0ubuntu4_all.deb Size: 2374 MD5sum: 63d9f98024d799779554590d7069251a SHA1: 511a54b077d0defd58900288f82ab23ce753d280 SHA256: f5a68780f9e6f7113987fa83a3b46f40cb2f5688e7163b491a5af5cabbfca4a5 Description: automatic proxy configuration management library (CLI devel) Homepage: http://code.google.com/p/libproxy/ Description-md5: f84b6b72fea878076ed72e52808dc0ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproxy-dev Priority: optional Section: libdevel Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: amd64 Source: libproxy Version: 0.4.11-0ubuntu4 Depends: libproxy1 (= 0.4.11-0ubuntu4) Filename: pool/main/libp/libproxy/libproxy-dev_0.4.11-0ubuntu4_amd64.deb Size: 4286 MD5sum: bf537f6aab9f61a0261c86400a240bab SHA1: 1c444dd76d12c30e6e9bb621686a0d6eee38f608 SHA256: 13894e451f7de66739e00c6e5095e4e181731897e3bf72035e039846fcb7871f Description: automatic proxy configuration management library (devel) Multi-Arch: same Homepage: http://code.google.com/p/libproxy/ Description-md5: 29be2cc9b16e55d72e96ae251f29ee6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproxy0.4-cil Priority: optional Section: cli-mono Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: all Source: libproxy Version: 0.4.11-0ubuntu4 Depends: cli-common (>= 0.5.1), libmono-corlib4.0-cil (>= 2.10.1), libproxy1 (>= 0.4.7) Filename: pool/main/libp/libproxy/libproxy0.4-cil_0.4.11-0ubuntu4_all.deb Size: 4870 MD5sum: 9b851d5eb65faaae010570c0c0eec868 SHA1: a98dda4062be219225788918567b14db7b13316b SHA256: 82b63009725d47297fe15d93102b82294f36b38ff32016cf4c1cc6efbea69449 Description: automatic proxy configuration management library (CLI) Homepage: http://code.google.com/p/libproxy/ Description-md5: 42776b22a3576eff412b0a43566c3c44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproxy1 Priority: optional Section: libs Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: amd64 Source: libproxy Version: 0.4.11-0ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/libp/libproxy/libproxy1_0.4.11-0ubuntu4_amd64.deb Size: 56160 MD5sum: d1cac8ea029af6cad4879d496bced186 SHA1: 25e82726cc8018429690b805e4263c6639f64899 SHA256: 84873dcd3db31f2e0cc0e2aea18ce7b60176ce6346a59f9c648dd8a101c99cd9 Description: automatic proxy configuration management library (shared) Multi-Arch: same Homepage: http://code.google.com/p/libproxy/ Description-md5: e83bd4fc73080685251129a6bdac7f50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libproxy1-plugin-gsettings Priority: optional Section: libs Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: amd64 Source: libproxy Version: 0.4.11-0ubuntu4 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.26.0), libproxy1 (= 0.4.11-0ubuntu4), libstdc++6 (>= 4.1.1) Filename: pool/main/libp/libproxy/libproxy1-plugin-gsettings_0.4.11-0ubuntu4_amd64.deb Size: 24160 MD5sum: 773c20882b19c17df9f3300e991fa4f3 SHA1: 2cd265319dfacd84cc3aa328fc773fdf474a44c2 SHA256: bace9d41ccddae448ef107c36177852329a47ba8a8d3b2e12baa43906a1e2fa8 Description: automatic proxy configuration management library (GSettings plugin) Multi-Arch: same Homepage: http://code.google.com/p/libproxy/ Description-md5: 5d0ba9adbb7dcf6a885a32ef5fbfd48a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libproxy1-plugin-networkmanager Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: amd64 Source: libproxy Version: 0.4.11-0ubuntu4 Depends: libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libproxy1 (= 0.4.11-0ubuntu4) Filename: pool/main/libp/libproxy/libproxy1-plugin-networkmanager_0.4.11-0ubuntu4_amd64.deb Size: 6148 MD5sum: 80fe307dc29b96f1a8697451e88013bb SHA1: ef25d0968ca67c9be82db06f037f2115bada41ee SHA256: ea69fc8d5b96e2ccfff0d235f9e92600e3bfeca310766b2c5c0055dc9bfb1643 Description: automatic proxy configuration management library (Network Manager plugin) Multi-Arch: same Homepage: http://code.google.com/p/libproxy/ Description-md5: 3c77d58edf9693a82bb2bebb3f33e55a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libpspell-dev Priority: optional Section: libdevel Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: amd64 Source: aspell Version: 0.60.7~20110707-1ubuntu1 Replaces: aspell-bin (<< 0.50.3-3) Depends: libaspell15 (= 0.60.7~20110707-1ubuntu1), libaspell-dev Suggests: aspell-doc Filename: pool/main/a/aspell/libpspell-dev_0.60.7~20110707-1ubuntu1_amd64.deb Size: 4360 MD5sum: f6f8caef7a138d2c3995672bb80cfc1d SHA1: 767c613bdf040da445c299bd8e6fab26a981f774 SHA256: 367ea756a10f383856917cc336bbd4958cfb7c6a510c6d5b6f77e394a10bf0e0 Description: Development files for applications with pspell support Homepage: http://aspell.net/ Description-md5: 9cc1424d13d0db47f71c3da300fe317b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpst-dev Priority: optional Section: libdevel Installed-Size: 1971 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: amd64 Source: libpst Version: 0.6.59-1build1 Replaces: libpst4 (<= 0.6.54-3) Depends: libpst4 (= 0.6.59-1build1) Breaks: libpst4 (<= 0.6.54-3) Filename: pool/main/libp/libpst/libpst-dev_0.6.59-1build1_amd64.deb Size: 609422 MD5sum: 6c5614c9bee75514be6720a45f5dd5de SHA1: 89061d40d5e91ab7108a221a4cbf5d875449edfd SHA256: 5bfde4722b55d65bedfed8c10a7d36488ad9dceaf8ec305bbaa5b96a174a12c3 Description: library for reading Microsoft Outlook PST files (development files) Homepage: http://www.five-ten-sg.com/libpst/ Description-md5: 7eb19eba4055a0e647876436b9fc89a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpst4 Priority: optional Section: libs Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: amd64 Source: libpst Version: 0.6.59-1build1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libp/libpst/libpst4_0.6.59-1build1_amd64.deb Size: 72426 MD5sum: ee225206b8056ff6655429cfbc15535d SHA1: 179b6dad7fb64e0536788424bc3a81db2ebee72d SHA256: 4dc3cf6a402e7ab0366f2ae18b4f6d4719ba30242a1c0cce1940b35235d73d3b Description: library for reading Microsoft Outlook PST files Multi-Arch: same Homepage: http://www.five-ten-sg.com/libpst/ Description-md5: ed5aeac90075d862254b95743fc72727 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libpst4-dbg Priority: extra Section: debug Installed-Size: 421 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: amd64 Source: libpst Version: 0.6.59-1build1 Depends: libpst4 (= 0.6.59-1build1), pst-utils Filename: pool/main/libp/libpst/libpst4-dbg_0.6.59-1build1_amd64.deb Size: 324748 MD5sum: fca0e6b8bc59199a1af7b3899d1dc34a SHA1: d6a403e30fdc93316171888c17a1ed34392d7d24 SHA256: da73bdc3c422d55eeff43adddc1bfa4807803b6fe30001be091ae7c54a624e9d Description: debug symbols for libpst Multi-Arch: same Homepage: http://www.five-ten-sg.com/libpst/ Description-md5: b6a3c22159950ff03fbd40ca792a5ad6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libptexenc-dev Priority: optional Section: libdevel Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: amd64 Source: texlive-bin Version: 2013.20130729.30972-2build3 Depends: libptexenc1 (= 2013.20130729.30972-2build3) Filename: pool/main/t/texlive-bin/libptexenc-dev_2013.20130729.30972-2build3_amd64.deb Size: 32826 MD5sum: 079baf8f395f5fbdd33d8737d5a7f7d0 SHA1: f1301d08aa1c59bb0737b24fb7d5349520804dc2 SHA256: 015552458a5fe19b5954a480ed2e645e6d429e5fabd3b5b7d18ea5b3d9b1acda Description: TeX Live: ptex encoding library (development part) Homepage: http://www.tug.org/texlive/ Description-md5: 97f8c00c2afd15ca23c120745336c811 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libptexenc1 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: amd64 Source: texlive-bin Version: 2013.20130729.30972-2build3 Depends: libc6 (>= 2.4), libkpathsea6 Filename: pool/main/t/texlive-bin/libptexenc1_2013.20130729.30972-2build3_amd64.deb Size: 33876 MD5sum: 4545e9f632b5982a912025f2c7441f54 SHA1: 25f2af01c16599ea20c5a109388d3a3f7f20c0ca SHA256: e85a803c903b6d42af31a9768603ef2db1ff61d29f93ad09c1d90515b270c8b2 Description: TeX Live: pTeX encoding library Homepage: http://www.tug.org/texlive/ Description-md5: a5ab52d0e6ab6894ec8f152cb125bbc0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: libpth-dev Priority: optional Section: libdevel Installed-Size: 309 Maintainer: Ubuntu Developers Original-Maintainer: NIIBE Yutaka Architecture: amd64 Source: pth Version: 2.0.7-19ubuntu1 Depends: libpth20 (= 2.0.7-19ubuntu1) Filename: pool/main/p/pth/libpth-dev_2.0.7-19ubuntu1_amd64.deb Size: 88662 MD5sum: 8595a8046b1dd6f0de0b47bd8aa2b1e6 SHA1: 852faab5f2204f9e42b9c297de404f72c948c2df SHA256: fd1de54b1906607ee6bee0f257d4ad8c223b5ac33b04ef47a81da4ce9a18836f Description: GNU Portable Threads (development) Homepage: http://www.gnu.org/software/pth/ Description-md5: ad14fcee422f923d02639de74f138d92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpth20 Priority: optional Section: libs Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: NIIBE Yutaka Architecture: amd64 Source: pth Version: 2.0.7-19ubuntu1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/p/pth/libpth20_2.0.7-19ubuntu1_amd64.deb Size: 43366 MD5sum: 3323c400c54eabae1894979d9bb306f1 SHA1: 9c0c36738417ad13d6a0b0431a09535f1a0d1685 SHA256: 2e9f08bc271eac73ba8a57530923d49ddbe676ed8cac88f1a4a2ab722722dbc0 Description: GNU Portable Threads Multi-Arch: same Homepage: http://www.gnu.org/software/pth/ Description-md5: c8182a448d26aa385dbac4690d17b2c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libpthread-stubs0-dev Priority: optional Section: libdevel Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: XCB Developers Architecture: amd64 Source: libpthread-stubs Version: 0.3-4 Filename: pool/main/libp/libpthread-stubs/libpthread-stubs0-dev_0.3-4_amd64.deb Size: 4068 MD5sum: 72d8c78edd40a66deffe3cf0d2678a2e SHA1: 61313c77badcbd22adf63af4bf621b690f7f88c8 SHA256: fd572751e9b9106f90fcd701828ec26f0e1b825680eea9851ddc8c0e9221a4d7 Description: pthread stubs not provided by native libc, development files Multi-Arch: same Description-md5: febf47fd836991c5b22ad0c176b41e1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpulse-dev Priority: optional Section: libdevel Installed-Size: 494 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libpulse0 (= 1:4.0-0ubuntu11), libpulse-mainloop-glib0 (= 1:4.0-0ubuntu11), libglib2.0-dev, libavahi-client-dev Filename: pool/main/p/pulseaudio/libpulse-dev_4.0-0ubuntu11_amd64.deb Size: 67416 MD5sum: 9c1c601247187a149b4d86546d3952eb SHA1: 33c087548078862c00f2fe20c788f7d55f3697e7 SHA256: b80e77fe622dd7cd7453a7a65ef8d4f8a323d3de1f716a8c32740a303344089d Description: PulseAudio client development headers and libraries Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: a36e2b24ab289ab86564c79e92c8e87f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpulse-mainloop-glib0 Priority: optional Section: sound Installed-Size: 121 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.16.0), libpulse0 (>= 1:0.99.1) Pre-Depends: multiarch-support Filename: pool/main/p/pulseaudio/libpulse-mainloop-glib0_4.0-0ubuntu11_amd64.deb Size: 11450 MD5sum: c5a65ed1b2bcb8188bb4e0f02ee27f06 SHA1: 29a2f208f7a729fef4d9fb5ef129d66f6973850b SHA256: 99229b3c6e00d6329a41da760fe5790bffb3f0e01599105034db0715edc775ae Description: PulseAudio client libraries (glib support) Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: 1a4eb06cccc1a1ac1118b667f0c37ed7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpulse-mainloop-glib0-dbg Priority: optional Section: sound Installed-Size: 157 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libpulse-mainloop-glib0 (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/libpulse-mainloop-glib0-dbg_4.0-0ubuntu11_amd64.deb Size: 18290 MD5sum: 9f86b3b04c0602af2e7f3c6a53bacff2 SHA1: beca4d4d7c1398e0f4f725877f723a48b0cb4594 SHA256: 3cb0c2e988b2d20c250ce1238f4be324133be9978e9cb87ab22cae6180d8b641 Description: PulseAudio client libraries (glib support) (debugging symbols) Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: 55747036137610f392d3388fdb814cfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpulse0 Priority: optional Section: libs Installed-Size: 851 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libasyncns0 (>= 0.3), libc6 (>= 2.15), libdbus-1-3 (>= 1.1.1), libjson-c2 (>= 0.10), libsndfile1 (>= 1.0.20), libwrap0 (>= 7.6-4~), libxcb1 Pre-Depends: multiarch-support Suggests: pulseaudio Breaks: pavucontrol (<< 0.9.8) Filename: pool/main/p/pulseaudio/libpulse0_4.0-0ubuntu11_amd64.deb Size: 225100 MD5sum: 92c23777a69be0c7263f978747eb95f6 SHA1: b420ca92f3ba0f0b4807ccc8bf876496441a3498 SHA256: a0ee16c43c7de3450803dd4e65c45bd290dc564b6fba43cdaec028de6095a719 Description: PulseAudio client libraries Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: 35e72b270b48ab0d62d3de88ca26f71b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libpulse0-dbg Priority: optional Section: libs Installed-Size: 2118 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libpulse0 (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/libpulse0-dbg_4.0-0ubuntu11_amd64.deb Size: 460028 MD5sum: b06b1d0523e8132e542d8df2f741e360 SHA1: 1c965b86d592995fd8ed7a190fd50ef8f084df58 SHA256: f6186b7991bc0c19031354ce97e60f75427fc86dfd1c4143e2f5d2ec64691f5b Description: PulseAudio client libraries (debugging symbols) Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: e1ebcecc2d1a76c8d35afdb41db289ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpulsedsp Priority: optional Section: sound Installed-Size: 157 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.4), libpulse0 (>= 1:0.99.1) Pre-Depends: multiarch-support Filename: pool/main/p/pulseaudio/libpulsedsp_4.0-0ubuntu11_amd64.deb Size: 21180 MD5sum: e632e08203a36e614c043a7eaf95ea56 SHA1: eb4bb83305194e39b3ef184005cca06b3148e29b SHA256: 31fee9048a5482d45503007bb2c682ab691c203d48981f1ff43b6ec10a7cd3bd Description: PulseAudio OSS pre-load library Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: 4d14e4e65420d03adc0822289f18a007 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpulsedsp-dbg Priority: extra Section: debug Installed-Size: 221 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libpulsedsp (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/libpulsedsp-dbg_4.0-0ubuntu11_amd64.deb Size: 37006 MD5sum: f7fc85e7db9b68f6b326b9b603ea68d6 SHA1: 45de7d65bca862244fc5638e763c631e47de8098 SHA256: 6f32950340b4e06769a06e6e3cde5485ad8198903c1876145010c4f036135b9a Description: PulseAudio OSS pre-load library (debugging symbols) Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: 614762c6888cf44fba7adfedc787bb41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpurple-bin Priority: optional Section: net Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: python, python-dbus Filename: pool/main/p/pidgin/libpurple-bin_2.10.9-0ubuntu3_all.deb Size: 15062 MD5sum: b7635fb6b9babcd1b88e4fcb389ddddd SHA1: fd20c101135e51af8abb7b4e9493b76647d092e1 SHA256: dbf4289c73db21cd6e01acb69502229f632f1514723be948c45fd24060482f6f Description: multi-protocol instant messaging library - extra utilities Homepage: http://www.pidgin.im Description-md5: 0bb5fd55724d9d7cf0369b3935f345b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntu-gnome-desktop Package: libpurple-dev Priority: optional Section: libdevel Installed-Size: 1088 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: libpurple0 (>= 1:2.10.9), libpurple0 (<< 1:2.10.9+1~), pkg-config, libglib2.0-dev, libdbus-glib-1-dev Filename: pool/main/p/pidgin/libpurple-dev_2.10.9-0ubuntu3_all.deb Size: 147736 MD5sum: f2308f5ae4281e00599ed8805c99ed72 SHA1: d11c2d02b3024e72e30dcde5afca57c270c31f4a SHA256: 11d8932c0095bf59cdcbc0c891a3f361d22de083f8d52a1a72c1bd37caeb889e Description: multi-protocol instant messaging library - development files Homepage: http://www.pidgin.im Description-md5: b17a06afcbe53ddca5dc2a149cb2f24d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpurple0 Priority: optional Section: net Installed-Size: 4939 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: amd64 Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.15), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libfarstream-0.1-0 (>= 0.1.1), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base0.10-0 (>= 0.10.0), libgstreamer0.10-0 (>= 0.10.20), libidn11 (>= 1.13), libmeanwhile1 (>= 1.0.2), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libperl5.18 (>= 5.18.2), libsasl2-2 (>= 2.1.24), libxml2 (>= 2.7.4), libzephyr4, perl-base (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libsasl2-modules Recommends: ca-certificates, libpurple-bin Suggests: libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Conflicts: network-manager (<< 0.9.0) Filename: pool/main/p/pidgin/libpurple0_2.10.9-0ubuntu3_amd64.deb Size: 1280712 MD5sum: 851ab6f48d3f12d1a505ef431a5959ba SHA1: fc4823ce79e9a910d421f552685eb8475514d49b SHA256: 4d1b9a7ce3f6dc73417cec7d9ed99e329ece3ec4c4b16b6af6817a40cbc050bd Description: multi-protocol instant messaging library Homepage: http://www.pidgin.im Description-md5: b13d02b517b424bf47518267ff7ea6d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libpwquality-common Priority: optional Section: libs Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libpwquality Version: 1.2.3-1ubuntu1 Replaces: libpwquality1 (<< 1.2.1-1) Breaks: libpwquality1 (<< 1.2.1-1) Filename: pool/main/libp/libpwquality/libpwquality-common_1.2.3-1ubuntu1_all.deb Size: 5316 MD5sum: 9d8f88da443c00f43967eb85b90f7ed5 SHA1: 39a7f3bf32c5dfb3c6c8b52a04bf92cf1318fe5a SHA256: 6bf9137d28888ecf96527ffb7e436a0e178cacdc48a683db326e5d5a79af1914 Description: library for password quality checking and generation (data files) Multi-Arch: foreign Homepage: https://fedorahosted.org/libpwquality/ Description-md5: d37cfdd3767d216513b4314f28c1e005 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: libpwquality-dev Priority: optional Section: libdevel Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libpwquality Version: 1.2.3-1ubuntu1 Depends: libpwquality1 (= 1.2.3-1ubuntu1) Filename: pool/main/libp/libpwquality/libpwquality-dev_1.2.3-1ubuntu1_amd64.deb Size: 12042 MD5sum: c644a172336415ee2330e5f6f548e074 SHA1: 102b63005688c0664fa4d19f893e7a185fbaabe1 SHA256: 13f33a5f37a17b6a116b208b0e2239030cfe77bacc600765dd5f18ccb4c8c095 Description: Password quality checking and generation (development files) Homepage: https://fedorahosted.org/libpwquality/ Description-md5: e1ae040707372e3c48466d82429c05bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpwquality1 Priority: optional Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libpwquality Version: 1.2.3-1ubuntu1 Depends: libc6 (>= 2.14), libcrack2 (>= 2.8.12), libpwquality-common Pre-Depends: multiarch-support Filename: pool/main/libp/libpwquality/libpwquality1_1.2.3-1ubuntu1_amd64.deb Size: 11586 MD5sum: 39b11f2565024c00f6b73130903035ac SHA1: 80a4642941a77b06e0bc9b4b1beaf9fc7114f102 SHA256: 7de25e87e9ff4cc3c223280a0b64e4d2dddab996c7f61746231684f9cfec8904 Description: library for password quality checking and generation Multi-Arch: same Homepage: https://fedorahosted.org/libpwquality/ Description-md5: 4bacb8fb9ef490cec9ba0d22197731b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: libpython-all-dbg Priority: extra Section: debug Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: libpython-dbg (= 2.7.5-5ubuntu3), libpython2.7-dbg Filename: pool/main/p/python-defaults/libpython-all-dbg_2.7.5-5ubuntu3_amd64.deb Size: 1120 MD5sum: 4bb62a4490d37c40f041a5823950a45b SHA1: 8647daf9bc8e52fda7579f03bfcb80534a24751a SHA256: 4dc5baa1b35f867fffdb4b112a33e2826f193483457cd479395d5f6ca44f673f Description: package depending on all supported Python debugging packages Multi-Arch: same Homepage: http://www.python.org/ Description-md5: a80e49c54585d3d5e53f35404f27903d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpython-all-dev Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: libpython-dev (= 2.7.5-5ubuntu3), libpython2.7-dev Filename: pool/main/p/python-defaults/libpython-all-dev_2.7.5-5ubuntu3_amd64.deb Size: 996 MD5sum: 424a6c94281022e813812aed4076de17 SHA1: be1ff26c6d3a962db2e12d0511bd412dc8384e81 SHA256: 8ff56b02a2cd5d517f4c04a7639a0b50515e31f2ab2145e725c03c9f60dd73e5 Description: package depending on all supported Python development packages Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 6bbe7c786e1d06c174e1fc08977371a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython-dbg Priority: extra Section: debug Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: libpython2.7-dbg (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/libpython-dbg_2.7.5-5ubuntu3_amd64.deb Size: 7010 MD5sum: bdee894385ff3211c6ecebb2823271b6 SHA1: 3c7c4c138246cef7c92fb6f420561f395fd8bbdc SHA256: f961b82ab41a6a9d12517efbb00809cbad230a43ff602851ecbfc033fe6b0818 Description: debug build of the Python Interpreter (version 2.7) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 696fb664fa21b46db6e95b27fdd02b49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpython-dev Priority: optional Section: python Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: libpython2.7-dev (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/libpython-dev_2.7.5-5ubuntu3_amd64.deb Size: 7078 MD5sum: 3b37a8ee5197b689d2fe472e81583e41 SHA1: 8ea63c31b460a972f230e89deddde1a1cc978317 SHA256: 1dc53613bdc770ece2874082ca7fe4a0f08d94f3122eeaa230830c91408cb9f1 Description: header files and a static library for Python (default) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 93a1917c3f17606b40377d0b737c6c92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython-stdlib Priority: optional Section: python Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: libpython2.7-stdlib (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/libpython-stdlib_2.7.5-5ubuntu3_amd64.deb Size: 7012 MD5sum: d188ff3a3c114cea934a4431cc0b593a SHA1: 8893ea97d8b962a56d88ff8c6234c25c1cdb2a84 SHA256: 0ade86ace05a68c3df2c98a50ae67fb7035a2bd1fcb13aaf444a62f2fbcb3acb Description: interactive high-level object-oriented language (default python version) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 6fbf042f6ad7705da06e08f12aba94f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpython2.7 Priority: optional Section: libs Installed-Size: 3493 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.6) Depends: libpython2.7-stdlib (= 2.7.6-8), libc6 (>= 2.15), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Filename: pool/main/p/python2.7/libpython2.7_2.7.6-8_amd64.deb Size: 1044212 MD5sum: 7672ed2fbd3cd4d7c3344a59b214fbcb SHA1: 6d3957184fbb03837371663d6dfb12d8598f3019 SHA256: 71e48dfa1c75db74a6d3ea05e54223a7221f97e3dd7efc2cff10ff5078153096 Description: Shared Python runtime library (version 2.7) Multi-Arch: same Description-md5: ca83a75c05dbdfe28eaeb1252ff614a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpython2.7-dbg Priority: extra Section: debug Installed-Size: 21089 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7-dbg (<< 2.7.3-10) Depends: libpython2.7-stdlib (= 2.7.6-8), libbz2-1.0, libc6 (>= 2.14), libdb5.3, libexpat1 (>= 2.1~beta3), libffi6 (>= 3.0.4), libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libsqlite3-0 (>= 3.5.9), libssl1.0.0 (>= 1.0.0), libtinfo5, zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Suggests: python2.7-gdbm-dbg, python2.7-tk-dbg Filename: pool/main/p/python2.7/libpython2.7-dbg_2.7.6-8_amd64.deb Size: 4079680 MD5sum: 0ff92c85fb5db961fe19b98c0a145cd3 SHA1: bcd76339025bfc390f5ee788f711e9c2eae1d425 SHA256: 83380d2e413ba640c51cdfc68161ffa6f984a36b9df3c1835179bb2d1557ca59 Description: Debug Build of the Python Interpreter (version 2.7) Multi-Arch: same Description-md5: f2b41391895402a123a55c07a1d6812f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpython2.7-dev Priority: optional Section: libdevel Installed-Size: 32956 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.7-3), python2.7-dev (<< 2.7.3-10), python2.7-minimal (<< 2.7.3-10) Depends: libpython2.7-stdlib (= 2.7.6-8), libpython2.7 (= 2.7.6-8), libexpat1-dev Pre-Depends: multiarch-support Recommends: libc6-dev | libc-dev Filename: pool/main/p/python2.7/libpython2.7-dev_2.7.6-8_amd64.deb Size: 22005790 MD5sum: 6b088fe5ee9bdb69296447a0b51f926e SHA1: 6356820a6b7fce13e1539dbe88b4292a0c8f2a8d SHA256: 646170fe0b0976d38252e474a8ac4ef5d52af93158b5a489da92c2225fbd1640 Description: Header files and a static library for Python (v2.7) Multi-Arch: same Description-md5: 2ef5e0390998d9ab1872bc0f6b694ff7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython2.7-minimal Priority: optional Section: python Installed-Size: 2497 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python2.7 Version: 2.7.6-8 Replaces: libpython2.7-stdlib (<< 2.7.4-2), python2.7 (<< 2.7.4-2), python2.7-minimal (<< 2.7.3-10) Recommends: libpython2.7-stdlib Conflicts: binfmt-support (<< 1.1.2) Breaks: python2.7-minimal (<< 2.7.4~rc1-1~) Filename: pool/main/p/python2.7/libpython2.7-minimal_2.7.6-8_amd64.deb Size: 307140 MD5sum: 47041e86806d6add979b690878825259 SHA1: a0f40f9468c37ebdefaadbdfa627adf16963fa4a SHA256: 2e6b1ee71b3ed91f4464b27825fff4d11ea7de6f4068a9b95111e35f9185c8f3 Description: Minimal subset of the Python language (version 2.7) Multi-Arch: same Description-md5: 703efc0a29ea636b32f475404406f7cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpython2.7-stdlib Priority: optional Section: python Installed-Size: 8490 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.7.5-0~) Provides: python-argparse, python2.7-argparse, python2.7-celementtree, python2.7-cjkcodecs, python2.7-ctypes, python2.7-elementtree, python2.7-profiler, python2.7-wsgiref Depends: libpython2.7-minimal (= 2.7.6-8), mime-support, libbz2-1.0, libc6 (>= 2.15), libdb5.3, libexpat1 (>= 2.1~beta3), libffi6 (>= 3.0.4), libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libsqlite3-0 (>= 3.5.9), libssl1.0.0 (>= 1.0.0), libtinfo5 Filename: pool/main/p/python2.7/libpython2.7-stdlib_2.7.6-8_amd64.deb Size: 1871504 MD5sum: 98dc93d0f48044e50873e60bbfbc911c SHA1: 7a07886192086bae20b93fef9da80e428c66e7ec SHA256: 0e10f088abac9ff9e6a02ca4530cab3f3bf2458fdac1319cf93984cb9f68298c Description: Interactive high-level object-oriented language (standard library, version 2.7) Multi-Arch: same Description-md5: f4f7d2df11420ed1433b778b1a144502 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpython2.7-testsuite Priority: optional Section: libdevel Installed-Size: 13500 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python2.7 Version: 2.7.6-8 Depends: libpython2.7-stdlib (>= 2.7.6-8) Suggests: python-gdbm, python-tk Filename: pool/main/p/python2.7/libpython2.7-testsuite_2.7.6-8_all.deb Size: 2030610 MD5sum: b095f51574b606909db6f051d759274b SHA1: ca851aebb9ffc0a3335281324eec3197c781ec4b SHA256: 0ff3feebc5c6dedb13c329a803eddb71b70cde220289742cd1dabf96f417e876 Description: Testsuite for the Python standard library (v2.7) Description-md5: ca1ecfb5f297f44ae0729c2b3459e146 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3-all-dbg Priority: extra Section: debug Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: libpython3-dbg (= 3.4.0-0ubuntu2), libpython3.4-dbg Filename: pool/main/p/python3-defaults/libpython3-all-dbg_3.4.0-0ubuntu2_amd64.deb Size: 998 MD5sum: 0faac4e48366b22d829827b8a8ffdbb4 SHA1: e94cc01593b8aff52321d8e33ecdc167ca64f5cc SHA256: 7b23f57ced65cd38a1f61891cf06e74aaff97257b3e568adc8bc324a078e7ce7 Description: package depending on all supported Python 3 debugging packages Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 5900edca900437987b398a1d31774a0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3-all-dev Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: libpython3-dev (= 3.4.0-0ubuntu2), libpython3.4-dev Filename: pool/main/p/python3-defaults/libpython3-all-dev_3.4.0-0ubuntu2_amd64.deb Size: 996 MD5sum: 8e7e5ef96a9a97f6415ec39be605652e SHA1: 49d0a558a63e24a4a87cf1249a97e24e2bb6d72c SHA256: 1cc83de3c9cdc242dfd461231b549384ea7d1c47bd658a96c239cedb374e5869 Description: package depending on all supported Python 3 development packages Multi-Arch: same Homepage: http://www.python.org/ Description-md5: a940db2e1a04041cdfb62d1222738b47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3-dbg Priority: extra Section: debug Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: libpython3.4-dbg (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/libpython3-dbg_3.4.0-0ubuntu2_amd64.deb Size: 6950 MD5sum: 87d813a649b26e5f41874468ac5d50e2 SHA1: 45c9bbf2a4ffce9479fc5b47b5b3984641525b29 SHA256: 1d731bfc1bec21fedb21c1410addafb224d859820d5f128895f899d98ccfc6b8 Description: debug build of the Python 3 Interpreter (version 3.4) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 862a2f4f1470c550119e4f708dd18a88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3-dev Priority: optional Section: python Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: libpython3.4-dev (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/libpython3-dev_3.4.0-0ubuntu2_amd64.deb Size: 7002 MD5sum: c8278aa9a2ef579a42bdc0994b0cf970 SHA1: 76dd07dc6c6211b417abf6df9d008f3e9f59b701 SHA256: 69ef5dc0e267b5da7118419559e9d027d14277b061bbb005baf33ca582903547 Description: header files and a static library for Python (default) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 8d12a93994da0c57873ee46478ea0257 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3-stdlib Priority: important Section: python Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: libpython3.4-stdlib (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/libpython3-stdlib_3.4.0-0ubuntu2_amd64.deb Size: 6912 MD5sum: d059b2128981cdbede383d6fa779ec9e SHA1: e5f1b40ff195e3d7f1c430925ce6eef7ea186ae5 SHA256: 21d0bb3bc4ee13388c2033df4c9a005ec1356320fa8fc6a686df62b2029f8fd0 Description: interactive high-level object-oriented language (default python3 version) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: d2d5b9ee5047a791224f1b8f4bc73d3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpython3.4 Priority: optional Section: libs Installed-Size: 4286 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-stdlib (= 3.4.0-2ubuntu1), libc6 (>= 2.17), libexpat1 (>= 2.1~beta3), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Filename: pool/main/p/python3.4/libpython3.4_3.4.0-2ubuntu1_amd64.deb Size: 1302614 MD5sum: 8a4800bd8d9acce9bc5e054448317519 SHA1: 331a3a9555ce53bca7f81d9e1e5dc39bd7d60a94 SHA256: 142d123360a40fa1bc8228d0e2559f8648184127165390bdfb94131fc5133a75 Description: Shared Python runtime library (version 3.4) Multi-Arch: same Description-md5: faf28cda6555e796024ceccc49dad30d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpython3.4-dbg Priority: extra Section: debug Installed-Size: 26922 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-stdlib (= 3.4.0-2ubuntu1), libbz2-1.0, libc6 (>= 2.14), libdb5.3, libexpat1 (>= 2.1~beta3), libffi6 (>= 3.0.4), liblzma5 (>= 5.1.1alpha+20120614), libmpdec2, libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libsqlite3-0 (>= 3.5.9), libssl1.0.0 (>= 1.0.1), libtinfo5, zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Filename: pool/main/p/python3.4/libpython3.4-dbg_3.4.0-2ubuntu1_amd64.deb Size: 5331768 MD5sum: c1ef5f3f86b3e170ec3258343b6749ea SHA1: 5fed1dc73858cca1d9df6e32831350c565f6be63 SHA256: 30ffa9bdc75f066b03769910f66ef6bdd0de2723290d4c580b7bc34bb42e5844 Description: Debug Build of the Python Interpreter (version 3.4) Multi-Arch: same Description-md5: c6fdd7d4eb18c794067e2deacbcc288f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3.4-dev Priority: optional Section: libdevel Installed-Size: 40308 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-stdlib (= 3.4.0-2ubuntu1), libpython3.4 (= 3.4.0-2ubuntu1), libexpat1-dev Pre-Depends: multiarch-support Recommends: libc6-dev | libc-dev Filename: pool/main/p/python3.4/libpython3.4-dev_3.4.0-2ubuntu1_amd64.deb Size: 26952690 MD5sum: d58cbc15de2dfad8ef550f27ae34f12a SHA1: 4e7c3f69e5d647bf884ddfab532a48111ad05ab6 SHA256: 40bf38b6375888093150943d8c1105e0ce05b5631c7a40e2220e7e82d8ee7483 Description: Header files and a static library for Python (v3.4) Multi-Arch: same Description-md5: fe08e99110b046c6392d71b110a6ac2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3.4-minimal Priority: important Section: python Installed-Size: 3231 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3.4 Version: 3.4.0-2ubuntu1 Replaces: libpython3.4-stdlib (<< 3.4~b1-5) Depends: libc6 (>= 2.14), libssl1.0.0 (>= 1.0.1) Pre-Depends: multiarch-support Recommends: libpython3.4-stdlib Conflicts: binfmt-support (<< 1.1.2) Filename: pool/main/p/python3.4/libpython3.4-minimal_3.4.0-2ubuntu1_amd64.deb Size: 444078 MD5sum: f56b7fa7afdd6469a5689873c2b3c70a SHA1: 707d3d83fee57bf70ac156c298071c5ccbdc4680 SHA256: 64f9c324e03b20c5565af8826232b506db866f79c1b15776a8734f73b137e0bc Description: Minimal subset of the Python language (version 3.4) Multi-Arch: same Description-md5: b1a507cdf5e3d845bacf2393790e9bb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpython3.4-stdlib Priority: important Section: python Installed-Size: 9342 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-minimal (= 3.4.0-2ubuntu1), mime-support, libbz2-1.0, libc6 (>= 2.15), libdb5.3, libffi6 (>= 3.0.4), liblzma5 (>= 5.1.1alpha+20120614), libmpdec2, libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libsqlite3-0 (>= 3.5.9), libtinfo5 Pre-Depends: multiarch-support Filename: pool/main/p/python3.4/libpython3.4-stdlib_3.4.0-2ubuntu1_amd64.deb Size: 2014842 MD5sum: d3ddcff1739f63cfdae98a00d8f04bf9 SHA1: 7da05d0eb5aff88727402329a2dc221919bfbb67 SHA256: 8dac42f3b1857911b34aee2f35715dc1dabab92cf7bdc667ae1b85aefe9dfb3a Description: Interactive high-level object-oriented language (standard library, version 3.4) Multi-Arch: same Description-md5: 5f5cf25e1bb759cba0ee83f7ab4b322f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpython3.4-testsuite Priority: optional Section: libdevel Installed-Size: 17113 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-stdlib (>= 3.4.0-2ubuntu1), net-tools Suggests: python3-gdbm, python3-tk Filename: pool/main/p/python3.4/libpython3.4-testsuite_3.4.0-2ubuntu1_all.deb Size: 2389838 MD5sum: df26db403be2c3369b4a77ec478d24fa SHA1: 0469f76f7949dcaba12074149a28e15382f37cda SHA256: bea576c0f6c26e27f90190010610d97d926ec5c09a135657a88d6c50b0974b3e Description: Testsuite for the Python standard library (v3.4) Description-md5: 97b7ab7779be0cf84d6c1bfa36fdfc49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpyzy-1.0-0 Priority: optional Section: libs Installed-Size: 60983 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: libpyzy Version: 1.0.1-4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libopencc1 (>= 0.1.0), libsqlite3-0 (>= 3.6.11), libstdc++6 (>= 4.4.0), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Filename: pool/main/libp/libpyzy/libpyzy-1.0-0_1.0.1-4_amd64.deb Size: 14150364 MD5sum: 13eb96fdb42ef881f74f4af876bd8d63 SHA1: 0255ae5e4315b635f888d8681086cfebc90b38ea SHA256: 2582ea88b0a29b603f42a6a1b516ece1ead4f1261146ae9145f374150fbab037 Description: Chinese PinYin and Bopomofo conversion library Homepage: https://github.com/hsumita/libpyzy Description-md5: 759302988bd5715f90ab45ee9e6d9859 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libpyzy-dev Priority: optional Section: libdevel Installed-Size: 602 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: libpyzy Version: 1.0.1-4 Depends: libpyzy-1.0-0 (= 1.0.1-4) Filename: pool/main/libp/libpyzy/libpyzy-dev_1.0.1-4_amd64.deb Size: 67994 MD5sum: 9d8dce94a9c5151d9386e23076e383f7 SHA1: 04da206c9c8db422d8be050e1189b601a82a853d SHA256: f8a0f25c0b12d18e8ccf8a6ac9f04160da5917f537f7414d2e04ecc82d941692 Description: Development files of libpyzy Homepage: https://github.com/hsumita/libpyzy Description-md5: 1f705aea93b67ce8a06486468af45582 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqb-dev Priority: extra Section: libdevel Installed-Size: 433 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: libqb Version: 0.16.0.real-1ubuntu3 Depends: libqb0 (= 0.16.0.real-1ubuntu3) Filename: pool/main/libq/libqb/libqb-dev_0.16.0.real-1ubuntu3_amd64.deb Size: 106930 MD5sum: 35dbe04f1adbae006523311f826d9711 SHA1: 9e3fd395050702501084cc2887df17646feac0e3 SHA256: 7781cb8c024071a9d05a9d411204ecd1bd8aeed71910cedee190d3b2c7203e36 Description: high performance client server features library (devel files) Homepage: https://github.com/asalkeld/libqb/wiki Description-md5: b4fdbc0c498f625d95d8a07ec1f96ca0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqb0 Priority: extra Section: libs Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: libqb Version: 0.16.0.real-1ubuntu3 Depends: libc6 (>= 2.16) Filename: pool/main/libq/libqb/libqb0_0.16.0.real-1ubuntu3_amd64.deb Size: 55256 MD5sum: f840af3aa4d08f612389652b2bdfc9e3 SHA1: c9c213eb3eb93c6b2fbe86c2a9075d76d2132690 SHA256: ecb0c09730e7e006b78e86be934c412e9f9f7f1ca0b4a4d5a9f9dfac7af157c6 Description: high performance client server features library Homepage: https://github.com/asalkeld/libqb/wiki Description-md5: 2d7bbbeb262b9dc491bfe4c74e4d06e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libqca2 Priority: optional Section: libs Installed-Size: 1153 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qca2 Version: 2.0.3-5 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Recommends: ca-certificates Suggests: libqca2-plugin-cyrus-sasl, libqca2-plugin-gnupg, libqca2-plugin-ossl Filename: pool/main/q/qca2/libqca2_2.0.3-5_amd64.deb Size: 308614 MD5sum: 16e0e4552ace97cf4982369cb8cb77d4 SHA1: 53deb28835e1591e121cf4b7fda9bce4a6282b98 SHA256: 6e5004117f58aff600b60c3c21654ef42021e69db1283ad306f35a00895fc926 Description: libraries for the Qt Cryptographic Architecture Multi-Arch: same Homepage: http://delta.affinix.com/qca/ Description-md5: e6821571ac9f35265d4086f952b5ec4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libqca2-dbg Priority: extra Section: debug Installed-Size: 3350 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qca2 Version: 2.0.3-5 Depends: libqca2 (= 2.0.3-5) Recommends: libqt4-dbg Filename: pool/main/q/qca2/libqca2-dbg_2.0.3-5_amd64.deb Size: 3104344 MD5sum: 37b69f0a99aff75dfea9c08e3c62f5db SHA1: 5b837f84af93fb291a9706cfe2ba187a1ebcd200 SHA256: e9c8c05cdaf22f530a5aba2eb030a1328412dc8bc0f1dd5c649b9751946f5162 Description: debug symbols for the Qt Cryptographic Architecture Multi-Arch: same Homepage: http://delta.affinix.com/qca/ Description-md5: 06022ce95ceac07fa4ef9298fd8640de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqca2-dev Priority: optional Section: libdevel Installed-Size: 465 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qca2 Version: 2.0.3-5 Depends: libqca2 (= 2.0.3-5), libqt4-dev (>= 4.4.0~) Suggests: libqca2-doc (= 2.0.3-5) Conflicts: qca-dev Filename: pool/main/q/qca2/libqca2-dev_2.0.3-5_amd64.deb Size: 75198 MD5sum: 8817f2e1219a7f768549ea9b5856d944 SHA1: d0c9b0a04e7c74a35175a750cbea435bbe7f6c41 SHA256: 1af34cc4370f0f8971449eea37ce73cef69e0bb1bff52750f448f0b6e6465616 Description: development files for the Qt Cryptographic Architecture Homepage: http://delta.affinix.com/qca/ Description-md5: e5f738a0e88b215b00c26ce7899aa25a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqca2-doc Priority: optional Section: doc Installed-Size: 8958 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qca2 Version: 2.0.3-5 Recommends: qt4-doc Suggests: libqca2-dev (>= 2.0.3-5) Filename: pool/main/q/qca2/libqca2-doc_2.0.3-5_all.deb Size: 3345078 MD5sum: bbe52fe55fd57d30dba533adbd889c19 SHA1: 7066b14e68b515d20767520e8b56bffb61b0f727 SHA256: 5934eb9e151df748b25105d9308efe6cff9ed85afec5aed236416c986967802a Description: API documentation for the Qt Cryptographic Architecture Homepage: http://delta.affinix.com/qca/ Description-md5: dd72ebca568996d714100bc0c6c8978a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqdox-java Priority: optional Section: libs Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: qdox Version: 1.12-1build1 Suggests: libqdox-java-doc Filename: pool/main/q/qdox/libqdox-java_1.12-1build1_all.deb Size: 166806 MD5sum: 9e043ec24452bfac1074eeabbcbfdc41 SHA1: 50cd80fa9f70f27f6c582276dcdd5a961155b32e SHA256: 619c1d3573b3e2d8fce9d67007700597da08e41f7d0215b1422372ad9ea8f405 Description: Quickly parses declarations and Javadoc from Java source Homepage: http://qdox.codehaus.org/ Description-md5: e922f227dda69707530f2d1100182c21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqdox-java-doc Priority: optional Section: libs Installed-Size: 2900 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: qdox Version: 1.12-1build1 Recommends: default-jdk-doc Suggests: libqdox-java Filename: pool/main/q/qdox/libqdox-java-doc_1.12-1build1_all.deb Size: 498018 MD5sum: 9c57e6fbf0d7c182ba6cd17fdf6c3027 SHA1: fcb902f956d6d4ed567867eeaf9a4d8d6c862b74 SHA256: e6b2a67a9a930f08fb121715b4dfd955da106f13fe7b554d8d6171f17bc9426c Description: Documentation for qdox (javadoc) Homepage: http://qdox.codehaus.org/ Description-md5: e8e95b9c3669693544d9ffda441e77b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqgsttools-p1 Priority: extra Section: libs Installed-Size: 251 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.14), libglib2.0-0 (>= 2.31.8), libgstreamer-plugins-base0.10-0 (>= 0.10.29), libgstreamer0.10-0 (>= 0.10.31), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5multimedia5 (>= 5.2.0), libqt5multimediawidgets5 (>= 5.0.2) | libqt5multimediawidgets5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/libqgsttools-p1_5.2.1-0ubuntu5_amd64.deb Size: 56496 MD5sum: 677e511a1aa7103a80f5e59d13f845d7 SHA1: 480d9d2379f115920ff40a03a4b25a328ec8ca75 SHA256: 5fdedb9b89567c51cf0ed20820b4c40ed8fe429a13fded64da611e801a101c07 Description: GStreamer tools for Qt 5 Multimedia module Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 9a134dca24de2bf35c9ac74b753148dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqimageblitz-dbg Priority: extra Section: libdevel Installed-Size: 1415 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qimageblitz Version: 1:0.0.6-4build1 Depends: libqimageblitz4 (= 1:0.0.6-4build1) Filename: pool/main/q/qimageblitz/libqimageblitz-dbg_0.0.6-4build1_amd64.deb Size: 290998 MD5sum: fe8c2bcc04b9901cba63c16e0d9588c3 SHA1: 84db8e84e7886bd013c5c603bc7c34bd1f516802 SHA256: 9f998c5bd63fd23cb979ea74944ec829fa7ba183cd1c0d11d65f4e0823ea4bdf Description: debugging symbols for the QImageBlitz image effects library Homepage: http://www.kde.org/ Description-md5: 5b48a652765b3ad3da3a55f2cfaa901b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqimageblitz-dev Priority: optional Section: libdevel Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qimageblitz Version: 1:0.0.6-4build1 Depends: libc6 (>= 2.2.5), libqimageblitz4 (= 1:0.0.6-4build1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Filename: pool/main/q/qimageblitz/libqimageblitz-dev_0.0.6-4build1_amd64.deb Size: 24868 MD5sum: 6a980243e39c2c21494ae353dc8066cf SHA1: a7baf99ebb100ae30efeb75522ab27292098198c SHA256: bf8ac370c2a4922e52ed39ed42c46654ddc2d0bfffead8203d9099ab96cf82d8 Description: development files for the QImageBlitz image effects library Homepage: http://www.kde.org/ Description-md5: f673e737d1e06571d143a1e9cad6d83d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqimageblitz-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqimageblitz3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqimageblitz-perl_4.13.0-0ubuntu1_amd64.deb Size: 10074 MD5sum: 14694952749c669d0f6e698b6100a0f3 SHA1: e7a7940ba9e51a621e4ad4204df8ed1f1a153a5a SHA256: 4fac3505eba78146c66f2941b89718e65717e0890a9287760036500d4429c21c Description: perl bindings for the QImageBlitz library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 57481bb825c282c20b855faa63e82b32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqimageblitz4 Priority: optional Section: libs Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qimageblitz Version: 1:0.0.6-4build1 Depends: libc6 (>= 2.14), libqtcore4 (>= 4:4.6.1), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Filename: pool/main/q/qimageblitz/libqimageblitz4_0.0.6-4build1_amd64.deb Size: 51804 MD5sum: f4cca37d833ce2ba74121b01088f88be SHA1: 9e36aed42ee3e7fea074455679f3dffd409fa3de SHA256: 699ca942c2deb5c482689c5c97e4edaba91aad5ec53d3c57267f34362ddfd625 Description: QImageBlitz image effects library Homepage: http://www.kde.org/ Description-md5: ad225a1dd490b89caffce639650e1c32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libqjson-dbg Priority: extra Section: debug Installed-Size: 616 Maintainer: Ubuntu Developers Original-Maintainer: Lisandro Damián Nicanor Pérez Meyer Architecture: amd64 Source: qjson Version: 0.8.1-3 Replaces: libqjson0-dbg (<< 0.7.1-1) Depends: libqjson0 (= 0.8.1-3) Recommends: libqt4-dbg Breaks: libqjson0-dbg (<< 0.7.1-1) Filename: pool/main/q/qjson/libqjson-dbg_0.8.1-3_amd64.deb Size: 563562 MD5sum: 07f5576485c340ce6d094522c7ac7cb0 SHA1: e2629275c7b3519de124abb56ac458f12be84084 SHA256: deb3cc9c0605478ad07f3e4aad1f9c6d425d327cdce4c6fd2b52678ebd0d50ed Description: Qt-based library that maps JSON data to QVariant objects, debug info Multi-Arch: same Homepage: http://qjson.sourceforge.net/ Description-md5: 9c9877993a4be9a23828d7e2d13a6619 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqjson-dev Priority: optional Section: libdevel Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Lisandro Damián Nicanor Pérez Meyer Architecture: amd64 Source: qjson Version: 0.8.1-3 Depends: libqjson0 (= 0.8.1-3) Filename: pool/main/q/qjson/libqjson-dev_0.8.1-3_amd64.deb Size: 8222 MD5sum: 4182847252eb1f552d6d6b7236c80aaf SHA1: 60bd0bcb19fef5a23de621119724d8c50009af6e SHA256: 2fd29a13fcfac3f1231f09a3ad81df9cc23a9cbffb76f5c57b2bf1c27562d759 Description: Qt-based library that maps JSON data to QVariant objects - development files Homepage: http://qjson.sourceforge.net/ Description-md5: 0269cb6bdbafd90c897ef35ae88db023 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqjson0 Priority: optional Section: libs Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Lisandro Damián Nicanor Pérez Meyer Architecture: amd64 Source: qjson Version: 0.8.1-3 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/q/qjson/libqjson0_0.8.1-3_amd64.deb Size: 63712 MD5sum: f0c84f3e2ee72b69a75bfec48d32d6c7 SHA1: 8921b39edac3094e55f4ccd44597a1116b8c2d6a SHA256: 433f90432b209a7523331c9c18ee5c3f4718c4623c387dab8d48f9802030f6a6 Description: Qt-based library that maps JSON data to QVariant objects Multi-Arch: same Homepage: http://qjson.sourceforge.net/ Description-md5: dc695edb04d44eb425bf12b42096e29d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libqjson0-dbg Priority: extra Section: debug Installed-Size: 30 Maintainer: Ubuntu Developers Original-Maintainer: Lisandro Damián Nicanor Pérez Meyer Architecture: all Source: qjson Version: 0.8.1-3 Depends: libqjson-dbg Filename: pool/main/q/qjson/libqjson0-dbg_0.8.1-3_all.deb Size: 2194 MD5sum: 248f146dd0fddac117e12be087d3dfb5 SHA1: b04d9cbe99d1303e06fd6738d85c16b4ef32af57 SHA256: 1804ec14125df8f8e1632a5d55e0e462207cbeb18db975b0c2549336d92c2726 Description: transitional dummy package for qjson's debugging symbols Homepage: http://qjson.sourceforge.net/ Description-md5: c98dc6e599f02fb5cffb3185867fc1f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqmi-glib-dev Priority: optional Section: libdevel Installed-Size: 3100 Maintainer: Ubuntu Developers Original-Maintainer: Marius B. Kotsbak Architecture: amd64 Source: libqmi Version: 1.4.0-1 Depends: libqmi-glib0 (= 1.4.0-1) Suggests: libqmi-glib-doc Filename: pool/main/libq/libqmi/libqmi-glib-dev_1.4.0-1_amd64.deb Size: 504180 MD5sum: a47b7b3aa646e617437d70e80f572416 SHA1: 8d357fde58ffc1886ea7c9dea80d8675ef4dcfdf SHA256: dbb3d768eac9175b181e23bdc4565b199ed86aed70b54a63d7fab9b04ec8d14e Description: Header files for adding QMI support to applications that use glib Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/libqmi Description-md5: c44abffbfc596d254147b508f8e0374e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqmi-glib-doc Priority: optional Section: doc Installed-Size: 7327 Maintainer: Ubuntu Developers Original-Maintainer: Marius B. Kotsbak Architecture: all Source: libqmi Version: 1.4.0-1 Suggests: devhelp Filename: pool/main/libq/libqmi/libqmi-glib-doc_1.4.0-1_all.deb Size: 447096 MD5sum: 4cf935a929b0c91a61ea24e94af7129e SHA1: 55746eaa5a58f08d0fc6cd52231298b52c5219aa SHA256: a912f0fde3d4c3cb3b0e120a2ef82e7cf9fcba22abef66129d64a28d95ac40b8 Description: API documentation for libqmi-glib Homepage: http://www.freedesktop.org/wiki/Software/libqmi Description-md5: 3bcaba736bf4f2671c9b86184d60ff6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqmi-glib0 Priority: optional Section: libs Installed-Size: 1385 Maintainer: Ubuntu Developers Original-Maintainer: Marius B. Kotsbak Architecture: amd64 Source: libqmi Version: 1.4.0-1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.32) Pre-Depends: multiarch-support Filename: pool/main/libq/libqmi/libqmi-glib0_1.4.0-1_amd64.deb Size: 353996 MD5sum: b7e1be34ea7359c11e21d4b0106371eb SHA1: 567cee699dab2a64d3baee16a06659be4a8fa78c SHA256: 145488e5ee709df8fcd59df48177f421893742ce5f54dbe6fb444ae8552dfa67 Description: Support library to use the Qualcomm MSM Interface (QMI) protocol Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/libqmi Description-md5: 6c72eafa1689addb16b819279e6f3080 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libqmi-glib0-dbg Priority: extra Section: debug Installed-Size: 1235 Maintainer: Ubuntu Developers Original-Maintainer: Marius B. Kotsbak Architecture: amd64 Source: libqmi Version: 1.4.0-1 Depends: libqmi-glib0 (= 1.4.0-1) Filename: pool/main/libq/libqmi/libqmi-glib0-dbg_1.4.0-1_amd64.deb Size: 935104 MD5sum: e362350eb7481c1a10ee28de56cf8744 SHA1: 005a3e75f9b3e2072ed9e7839aa853f64f0adcf5 SHA256: d7eefcf5bcc07d98bf59d01f4a02412b8d369d1016a9e8a10861064a261dea3b Description: Support library to use the Qualcomm MSM Interface (QMI) protocol Homepage: http://www.freedesktop.org/wiki/Software/libqmi Description-md5: 1e664a8b4c093f7d990b9d00ed52c7da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqpdf-dev Priority: optional Section: libdevel Installed-Size: 2013 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: qpdf Version: 5.1.1-1 Depends: libqpdf13 (= 5.1.1-1), libpcre3-dev, zlib1g-dev Recommends: qpdf Filename: pool/main/q/qpdf/libqpdf-dev_5.1.1-1_amd64.deb Size: 348888 MD5sum: 7d7ac9b97df68e8c19ce7adfa939e06b SHA1: c622089e9464cae533fdb1ea5cd45c4568ebe6a9 SHA256: bdcdaaaa02009612c500148d057d3786e8e82986f2b1b13c6746881b24afcd57 Description: development files for PDF transformation/inspection library Multi-Arch: same Homepage: http://qpdf.sourceforge.net Description-md5: b119ceb85cee713b9af6ef357f66ae27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqpdf13 Priority: optional Section: libs Installed-Size: 859 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: qpdf Version: 5.1.1-1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libpcre3, libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: qpdf Filename: pool/main/q/qpdf/libqpdf13_5.1.1-1_amd64.deb Size: 295100 MD5sum: a0a789d35d719dac175ee5b0768ec2c7 SHA1: 076fbba32f2f7d066795ce96e3ba4238a5799c97 SHA256: 4a17fe8e80a74f59b7759c18ac4a6d9c6e4ebc15ecc90c9c67b6ab056ad4fdea Description: runtime library for PDF transformation/inspection software Multi-Arch: same Homepage: http://qpdf.sourceforge.net Description-md5: 19ff93a4265247cdbdd76561d4f4b3a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libqscintilla-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqsci3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqscintilla-perl_4.13.0-0ubuntu1_amd64.deb Size: 10054 MD5sum: ec43a4c3980d133252b6fd289cafba19 SHA1: 92fb1416cf56782f36af1d6f1cad144e08c45a8f SHA256: 0883a93486f3c3e1c1124de32d723119a01743ade3aab34cc562f217084f1850 Description: perl bindings for the QScintilla2 library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: a0a36f3f5798edf0407e47bf5fcb9cf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqscintilla2-11 Priority: optional Section: libs Installed-Size: 3064 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: qscintilla2 Version: 2.8.1-2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0~), libqtgui4 (>= 4:4.8.0~), libstdc++6 (>= 4.1.1), libqscintilla2-l10n (>= 2.8.1) Filename: pool/main/q/qscintilla2/libqscintilla2-11_2.8.1-2_amd64.deb Size: 868648 MD5sum: 07cfe6c52b0da9e9f919cfdad36ace13 SHA1: 2ae6f8056ae7546b3bc909b2c759350a972af890 SHA256: 5d53fd66e968a11fc1207a55b66037c67d78befa82d9c398c548429f38c535b2 Description: Qt4 port of the Scintilla source code editing widget Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: 00d5deee4952fcddcb5e856a0f16f69a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqscintilla2-dev Priority: extra Section: libdevel Installed-Size: 491 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: qscintilla2 Version: 2.8.1-2 Depends: libqscintilla2-11 (>= 2.8.1), libqscintilla2-11 (<< 2.8.1+1~), libqt4-dev Filename: pool/main/q/qscintilla2/libqscintilla2-dev_2.8.1-2_all.deb Size: 60886 MD5sum: dea5483f607c536ce36e9166600ba498 SHA1: 1337b7826479e5842eef1904edb85c754758f717 SHA256: 61357b40999fa474218deeed6fde3c311cad8d6f70328bf2f2a48f695256916a Description: Scintilla source code editing widget for Qt4, development files Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: b00baa53e3c0197937730759bc6c4e7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqscintilla2-doc Priority: extra Section: doc Installed-Size: 8091 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: qscintilla2 Version: 2.8.1-2 Depends: libjs-jquery Filename: pool/main/q/qscintilla2/libqscintilla2-doc_2.8.1-2_all.deb Size: 585668 MD5sum: b371f4e9561634a81fcd6b4931f9d5b6 SHA1: 460c64bb95507d7ff123bec2335ccfec102e5703 SHA256: d83a37ab81a2083d314805aa047361db59a269239cedaf5ad46b45353a850b8a Description: API documentation for QScintilla 2 Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: cecff3e06ea2cb9d61d146ea56a0403a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqscintilla2-l10n Priority: optional Section: libs Installed-Size: 355 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: qscintilla2 Version: 2.8.1-2 Replaces: libqscintilla2-5, libqscintilla2-6, libqscintilla2-8, libqscintilla2-translations Suggests: libqscintilla2-11 Breaks: libqscintilla2-5, libqscintilla2-6, libqscintilla2-8, libqscintilla2-translations Filename: pool/main/q/qscintilla2/libqscintilla2-l10n_2.8.1-2_all.deb Size: 44344 MD5sum: 00c9e157fe2137f6bd6bd0c67e01637f SHA1: dd67a85800f6f7a0e148dd46b8c4394aefdf2508 SHA256: 1fd8769d7c1d7b62a4cf4b220195ed789c45e8110ea2146050fa0123de091434 Description: Scintilla source code editing widget for Qt4, translation files Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: f968037c5ada9890276038e56800f6e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqt3support4-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), libqtgui4-perl (= 4:4.13.0-0ubuntu1), libqtnetwork4-perl (= 4:4.13.0-0ubuntu1), libqtsql4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqt3support4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqt3support4-perl_4.13.0-0ubuntu1_amd64.deb Size: 10564 MD5sum: 908b149320c308ad190ae3dced2b832d SHA1: b159a94b1cd89ce3393dd718c97be4643d725dd7 SHA256: 0e4b54bf726ac76971698ba184476f4ef42990cdc5930e7b271da0be14ad847d Description: perl bindings for the Qt 3 compatibility library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 0013fbab2a2000b2a1e780a793c4f953 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-dbg Priority: extra Section: libs Installed-Size: 125975 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Conflicts: qt-x11-free-dbg Filename: pool/main/q/qt4-x11/libqt4-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 122635140 MD5sum: 91e957d67fd00fb936e31081a9d73442 SHA1: 390e09ec4d9b66a86e980abfc44b27f53bf1ec90 SHA256: de7f68897622ff4fbdd028e6b6ec5f34665c80c1c6f46f9ac1861a80f4b15b7e Description: Qt 4 library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: eb306b2c018309e76cbbf8fad24c95cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-dbus Priority: optional Section: libs Installed-Size: 130 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dev (<< 4:4.7.1) Depends: libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), qdbus (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Breaks: libqt4-dev (<< 4:4.7.1) Filename: pool/main/q/qt4-x11/libqt4-dbus_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 6428 MD5sum: 3f6aedc0172f1b914aff4353c35b4f61 SHA1: 40046d13e157b7c06cb2d1a3ed43b36b379f4f11 SHA256: a511cb79b1d0893c2d15f95ed1fb395ba9a52b0e28b3b8abdb48455b4e20ffc0 Description: Qt 4 D-Bus module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d4138bc6e2864e684d9cd85db1fb1bb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-declarative Priority: optional Section: libs Installed-Size: 4232 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xmlpatterns (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Suggests: libqt4-declarative-folderlistmodel, libqt4-declarative-gestures, libqt4-declarative-particles, libqt4-declarative-shaders, qt4-qmlviewer Filename: pool/main/q/qt4-x11/libqt4-declarative_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 1075758 MD5sum: d0f61d5fef59e55e3819b015d8d65975 SHA1: 36a9601e879a6370991cbbe9e5b4ac32f66f6921 SHA256: 6a48be8669f7db3879a8b3e9da320706f8b9a0be790ea146e0afea5a5b16b8b9 Description: Qt 4 Declarative module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 8f87c0a6a249f5950c24e5114ebf3904 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-declarative-gestures Priority: optional Section: libs Installed-Size: 216 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-declarative-gestures_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 20596 MD5sum: 03b04d81203a6825bcb3b3f4e559b1f4 SHA1: f98780b5a2877d42502f9aa49e4e4ea33c3cbcb0 SHA256: 996f9c7c60011b40154089322e89c7194d542f905931d4a179a0dc7fda910b16 Description: Qt 4 gestures QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d4b1230bf6f402b58b4dcdbf172dba13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active, kubuntu-active-full, kubuntu-active Package: libqt4-declarative-particles Priority: optional Section: libs Installed-Size: 237 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-declarative-particles_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 26118 MD5sum: f9d40d7dbaeb9eb9dde2d18ec673750b SHA1: 6994dedbcdd5e04135ae85d11557571c575025df SHA256: 0c52f6593a449b458fec87b5ae1359ecb5f99de8ed879a4dabeea13fe5cb0491 Description: Qt 4 particles QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: fbedb803fb8b49dd173016b4ab50d074 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqt4-designer Priority: optional Section: libs Installed-Size: 8486 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-designer_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 3598724 MD5sum: 1b56e024fb7a50987feae04d0153d31f SHA1: 1e6dd520bdccea946fdbcd3f36867f1316d667dd SHA256: 4c705c3d6b3115aabb093d0bd62f7fa189377705d757bd14529d23dd64433664 Description: Qt 4 designer module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2a24b6b1733f51c1c9363cfa0098fe5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-designer-dbg Priority: extra Section: debug Installed-Size: 43422 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbg (<< 4:4.7.3-3) Depends: libqt4-designer (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Breaks: libqt4-dbg (<< 4:4.7.3-3) Filename: pool/main/q/qt4-x11/libqt4-designer-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 41836354 MD5sum: 50097592c0fcf4423831706cbde7aa1d SHA1: e9ea2cc986297ff035ca0b7f0fb787e105b43537 SHA256: 59dadee327664fccf6aeb01009950455b25b04e171fdc09414478bd7c0f4f32c Description: Qt 4 designer library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4491691a63e68e54f064a6e60370b3c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-dev Priority: optional Section: libdevel Installed-Size: 12041 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqt4-dbus (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-designer (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-dev-bin (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-help (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-qt3support (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-scripttools (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-svg (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-test (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xmlpatterns (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), qt4-linguist-tools (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), qt4-qmake (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), qtchooser Recommends: libqt4-opengl-dev (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtwebkit-dev (>= 2.0~) Suggests: firebird-dev, libmysqlclient-dev, libpq-dev, libsqlite0-dev, libsqlite3-dev, qt4-dev-tools, qt4-doc, unixodbc-dev Filename: pool/main/q/qt4-x11/libqt4-dev_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 830316 MD5sum: 714596b8fcd6df924bad906adaaf57ef SHA1: d5591ae0bc4911c0db54eb7ac101f4aa119aecc5 SHA256: 2d64b51299d118b540633bd68a75d9d921b185722c28e4a17fc8e23a9cd62514 Description: Qt 4 development files Homepage: http://qt-project.org/ Description-md5: a972324e9d55eec79dbff3af47559638 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqt4-dev-bin Priority: optional Section: devel Installed-Size: 6347 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dev (<< 4:4.8.0-2) Depends: qtchooser, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-qt3support (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Breaks: libqt4-dev (<< 4:4.8.0-2) Filename: pool/main/q/qt4-x11/libqt4-dev-bin_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 1598980 MD5sum: 5bf3b0f174945f004feedd1b9fba3c6a SHA1: 16c332e13eeb037e125e90997a8c3e7298bfbdd5 SHA256: 5451ae528d7f9c2aa39235d1b7f9720a7751cd555757de94b10681c74bf30a4a Description: Qt 4 development programs Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: c804803f66ed95e965d4d27c802d0735 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqt4-help Priority: optional Section: libs Installed-Size: 844 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-help_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 200838 MD5sum: 29ca49240e6eb3421fdb648be070a589 SHA1: 2944b9cee67da4cde9f913c2695813d9a8f17787 SHA256: b1066c37322aa1cb703060832982b93369998f771869d0c718b0e41cfdde21bb Description: Qt 4 help module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4282552a186c836dfd31978fb2245adc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-audio Package: libqt4-network Priority: optional Section: libs Installed-Size: 2037 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: ca-certificates Filename: pool/main/q/qt4-x11/libqt4-network_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 541666 MD5sum: eac5cde0b7ac5a37e8d04894cb108356 SHA1: 1b386ff5c9a5ca0f5a726f3619b27873a58812db SHA256: d25b9a106b2e821a56f3dab5c6b4fbdba72f40bd035cf530a66b11de3164e283 Description: Qt 4 network module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 98ebbd72cce02597330f65b7d5eba8db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-opengl Priority: optional Section: libs Installed-Size: 1228 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1), libx11-6, libxrender1 Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-opengl_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 295760 MD5sum: f6e30159e6594c243c3f9b53bb6cf4e5 SHA1: 098964481aad18d33e937ed15a893e42e78c0426 SHA256: ead4c8b0b8448e7f508240591b89fb1e55bb2a8efcc57128550b5d9c15ce4de8 Description: Qt 4 OpenGL module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: ec36226450f35960693e2afd046e0d48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-opengl-dev Priority: optional Section: libdevel Installed-Size: 413 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libgl1-mesa-dev, libglu1-mesa-dev, libqt4-dev (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-opengl (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Filename: pool/main/q/qt4-x11/libqt4-opengl-dev_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 22840 MD5sum: ab74bf5c88427456caf7147318ae1ac3 SHA1: 8c8a9c08a8708ee04e4e844fa167fae5b07a08df SHA256: dafc69a9d9a3a164236b6c225fe4288a241a8f4ac0fca8591aab6c25b6d09622 Description: Qt 4 OpenGL library development files Homepage: http://qt-project.org/ Description-md5: 3a77d802eeaa1b2143dbee1ed81d6860 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqt4-private-dev Priority: optional Section: libdevel Installed-Size: 5006 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqt4-dev (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Filename: pool/main/q/qt4-x11/libqt4-private-dev_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 583400 MD5sum: e1bd34bab7f3f7eab80c15819f119255 SHA1: 7bab1856da869a04274618ff02bebf1260542902 SHA256: 613d1cadbfae919e24052fc76c7e269f37920d9eb464d1ed274089a327942b1a Description: Qt 4 private development files Homepage: http://qt-project.org/ Description-md5: 3b49216a54fd67f2d78d35f413e75487 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-qt3support Priority: optional Section: libs Installed-Size: 3736 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libqt4-designer (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-qt3support_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 1029330 MD5sum: 77bd1e25d062957a020bd3fd2fd27771 SHA1: 04fefd8bd88a29d1c502a28cf9b943cc98cac7f3 SHA256: a77b3235bda2e5b2a17fab495247200f1ef6d4e883fbcaeb8b6afc2703d2bf3d Description: Qt 3 compatibility library for Qt 4 Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f5f751633cc890280ad8ff0a1b4e8cb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libqt4-qt3support-dbg Priority: extra Section: debug Installed-Size: 14862 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbg (<< 4:4.7.3-3) Depends: libqt4-qt3support (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Breaks: libqt4-dbg (<< 4:4.7.3-3) Filename: pool/main/q/qt4-x11/libqt4-qt3support-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 14343058 MD5sum: 60c2025e193c89d0f7847dd709cf16a1 SHA1: 5afda17393b760f8db1cc3d2a3a7c72545979802 SHA256: 1dde7b7897b37793d589da76f3a8d26457bf372d5f92155504a4011dbc708ecd Description: Qt 3 compatibility library for Qt 4 debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 29e27abea5e7e9c89082297b36db40eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-script Priority: optional Section: libs Installed-Size: 2824 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-script_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 776564 MD5sum: cd20dc5e9c44ba6dee6d7003cc5f1392 SHA1: 21cdd8ba143c6ce57dca07220a1a7dab926a83b1 SHA256: b420188ab171c8f3ebbf6ef868f6534efd53eafde9127abfa9b5ee4e82351f65 Description: Qt 4 script module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 21dde8fb68da1c89ce92b58c86699dbd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-script-dbg Priority: extra Section: debug Installed-Size: 18602 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbg (<< 4:4.7.3-3) Depends: libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Breaks: libqt4-dbg (<< 4:4.7.3-3) Filename: pool/main/q/qt4-x11/libqt4-script-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 18393594 MD5sum: 510dc9a242946a7246dc99a5c3f65a9c SHA1: 1cca141f7ce735c9c800e891b840a2b98ddf1ec6 SHA256: b73620d761bc7b11e09a27f01eab0891cb3b1e824e2ac962932093f73aa7eae7 Description: Qt 4 script library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4fe268671423816b84a8ae12bcc16c4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-scripttools Priority: optional Section: libs Installed-Size: 903 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-scripttools_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 219944 MD5sum: 882c3317dfb48ae76d710bcbf495264d SHA1: 25351250b44df410f264563392f304ecc745f07a SHA256: 0a2fb70642c1d4e96d90a71b1eaf55783f192e304127c914ec5ec58201e1c9db Description: Qt 4 script tools module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 1a073bf09594d891464d930a909dabb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-audio Package: libqt4-sql Priority: optional Section: libs Installed-Size: 420 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Recommends: libqt4-sql-mysql | libqt4-sql-odbc | libqt4-sql-psql | libqt4-sql-sqlite Suggests: libqt4-dev Filename: pool/main/q/qt4-x11/libqt4-sql_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 97592 MD5sum: dac1547569a3a4181d31ab547d6f10de SHA1: 10bd0fcebbd6ff379aab86b7a655947d868e01ee SHA256: a35506ddd4a204a89e650caa2fa91c48421d0c3a2f60042115b618c25b6c709b Description: Qt 4 SQL module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 033030271b2b4c189900e5d6d936a912 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-sql-mysql Priority: optional Section: libs Installed-Size: 221 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libmysqlclient18 (>= 5.5.24+dfsg-1), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Suggests: libqt4-dev Filename: pool/main/q/qt4-x11/libqt4-sql-mysql_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 30294 MD5sum: d46e503403c5867807953d21d9adae64 SHA1: 6b585b4013b5056e28c10c1aef486b585c5874b7 SHA256: 280200e8484133c33312e2dc471ac11bad1f77098c78fd0b345f41b5cb39463a Description: Qt 4 MySQL database driver Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 58f1fcabfcd1ca19e285b19cd2b5fbda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-sql-sqlite Priority: optional Section: libs Installed-Size: 201 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Suggests: libqt4-dev Filename: pool/main/q/qt4-x11/libqt4-sql-sqlite_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 23448 MD5sum: 208bf681e9aa7e227b8cf5c94da15c86 SHA1: 010d0605d340bd2a4ef32bb1ff7799884b04b0ff SHA256: c2a4146bbae3e51553c3fb76dff36758dd3b3ac84d69c0ade5c530f91bbfa386 Description: Qt 4 SQLite 3 database driver Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d5fe42c3dad79ce432f99e9fb7dc8784 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb Package: libqt4-svg Priority: optional Section: libs Installed-Size: 581 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-svg_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 137442 MD5sum: 12638b42fc7526b66e15a157b194763d SHA1: 0536e1be35b1d34b84dfeb92c190a8cabe6d4b46 SHA256: 0f2e26656b86a34f33f41ee8a9babd2c9423d14a0dee6391f74a52560e564867 Description: Qt 4 SVG module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f49f6fcd0ca383b8479379b260b0962f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-test Priority: optional Section: libs Installed-Size: 302 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-test_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 60588 MD5sum: f0bf1d65333529521e775ecfceb3273d SHA1: 1647cd1a0a5ef317be6feb586cba4b8cbd52517c SHA256: f7e061e78869f04e46e77a415f732cf518bc49205aa74eeac49dfbb114076de9 Description: Qt 4 test module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f7a3b5b5082c11117b4d14ad7630bb01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-audio Package: libqt4-webkit-dbg Priority: extra Section: libs Installed-Size: 138 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqtwebkit4-dbg (>= 2.0~) Filename: pool/main/q/qt4-x11/libqt4-webkit-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 9200 MD5sum: 1fd89fb245ef396ca0adb8234b8656a0 SHA1: 24d5f477301b852b0339efdab9eff11c6e9b9eac SHA256: bf1a8756dec01dbf6118a2d74e231f237d0a6b3886f2e3b2ea5dd268aeb49f27 Description: transitional package for Qt 4 WebKit debugging symbols Homepage: http://qt-project.org/ Description-md5: eb6f0cce6774adbc05136f7b0ed3de8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-xml Priority: optional Section: libs Installed-Size: 445 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-xml_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 95088 MD5sum: 9ccd78fcbd6d18929597d1f612b5d2de SHA1: f24a5045ca17fa954bf7ac7dfebf94e40fbceebc SHA256: fac78646cb40c35dcb860d76c6b96e17bd094644042ca7cbf9a05ec352d97bef Description: Qt 4 XML module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: ca9976f27351a30ee73f9ce4324d257b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-xmlpatterns Priority: optional Section: libs Installed-Size: 4481 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-xmlpatterns_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 1027448 MD5sum: 77692e489241247a3755a545e198cdf7 SHA1: cb5a36d3473c5370c4a7762c9416b108fc450393 SHA256: ee0acf29d27c0e2134b4db935b8a95d3dbab2f754ab250a93abcc974cc166bb4 Description: Qt 4 XML patterns module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2cb542abf850564476c503d1b1dad985 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-xmlpatterns-dbg Priority: extra Section: libs Installed-Size: 30072 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqt4-xmlpatterns (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Filename: pool/main/q/qt4-x11/libqt4-xmlpatterns-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 28849860 MD5sum: d6ad0567318e94e25127d8a7c152346a SHA1: c60486a5b5fd9a095d76a6aafb682418a28a7114 SHA256: e35cb3b6fde680f2b2f4115cd1074aad263911c435dd7fe2fdc0ad07e528c110 Description: Qt 4 XML patterns library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 5ff329580982f75247bbb5b0fd24d68b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt53d5 Priority: optional Section: libs Installed-Size: 3654 Maintainer: Ubuntu Developers Architecture: amd64 Source: qt3d-opensource-src Version: 5.0~git20130731-0ubuntu5 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.2.0) | libqt5quick5-gles (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.6), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/q/qt3d-opensource-src/libqt53d5_5.0~git20130731-0ubuntu5_amd64.deb Size: 1139762 MD5sum: 1f7cf6598ae223af944bd86d1410fc88 SHA1: 3614e155f4cc857eb6ded271d4dd130dcaa6f86d SHA256: 3ff3819c878a2bccc030687de0d4554fd45460145ff22ff05147bdd05d55b499 Description: Qt 3D module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 43cde79bd1e2dc5b40c6a37389701014 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5clucene5 Priority: optional Section: libs Installed-Size: 1170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/q/qttools-opensource-src/libqt5clucene5_5.2.1-8build1_amd64.deb Size: 276302 MD5sum: 8e337949878d2ef1a576894f6a630681 SHA1: 186100826a9181e3cf537adbed4ccf8ac1ba55a7 SHA256: 45e3a0c35f118bf29dee80a162d30f818765f25a20eefb81c7466c60697fe8a8 Description: Qt 5 CLucene module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e42e6837eb4c645c8452fe2c27b36a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5concurrent5 Priority: optional Section: libs Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5concurrent5_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 22052 MD5sum: 3510e8e5dcc46e58f327899b40d969c0 SHA1: 6ab78179966389e6f0f5c04bc26c25aaca200747 SHA256: 74095e33c9d6a7df2259392f25cff6be8710152a0a4a8088311f74815acbcd82 Description: Qt 5 concurrent module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e0df68f337531f2bfba6d9963eebfc16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5contacts5 Priority: optional Section: libs Installed-Size: 541 Maintainer: Ubuntu Developers Architecture: amd64 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtpim-opensource-src/libqt5contacts5_5.0~git20140203~e0c5eebe-0ubuntu2_amd64.deb Size: 129566 MD5sum: e13f617f2ff399ac97fe5c3af07301b2 SHA1: 7169bd2d9190f1cebc90978e1bcd01fd6333217b SHA256: 5f1d2afb3b3c3f45e6da3a3808ce12cd99d61a4139808007c791def55c320f81 Description: Qt PIM module, Contacts library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2f48c07bace2d6691360fbae8783a306 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5core5a Priority: optional Section: libs Installed-Size: 5118 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Replaces: libqt5core5 (<< 5.2.0+dfsg~) Provides: qtbase-abi-5-2-1 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.22.0), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Suggests: libthai0 Breaks: libqt5core5 (<< 5.2.0+dfsg~) Filename: pool/main/q/qtbase-opensource-src/libqt5core5a_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 1747308 MD5sum: 1bba8b9ef7215a860ce2c5c0f3c3abb6 SHA1: 40abc55e691f81452690b2d0d2d6fae06ab8b748 SHA256: 52da56e44114614bdc4f545bc94bb5752d9701a5221375684c038fa861cfda6d Description: Qt 5 core module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 75c9109eafc0c1da6d6b6ca7b292f133 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5dbus5 Priority: optional Section: libs Installed-Size: 628 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.3.1), libqt5core5a (>= 5.2.1), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5dbus5_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 176184 MD5sum: d26c4cfa1eeaa82e37ab29c63a0ced22 SHA1: 694d43e3571b4681a9f895716c154fbf2db7b0c6 SHA256: 0c03f0ab423560747430146f892f5bac5eb4d59bb861b0eb346392239b329a3b Description: Qt 5 D-Bus module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 66ed2fe869611cd7a269446bd63f9400 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5designer5 Priority: optional Section: libs Installed-Size: 5443 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libqt5xml5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qttools-opensource-src/libqt5designer5_5.2.1-8build1_amd64.deb Size: 2727160 MD5sum: edaf2a0a2208bd1d73eb383e5f1a9d00 SHA1: 016aadab466dde5a48da3f4b1949944e7661efda SHA256: dad48bdec72da4abbe3f1bed08ac78b44adf8fc336de879315526828853312f7 Description: Qt 5 designer module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 7ffa0bb5842adb966c1c5b7e69997c4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5designercomponents5 Priority: optional Section: libs Installed-Size: 2549 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5designer5 (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libqt5xml5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qttools-opensource-src/libqt5designercomponents5_5.2.1-8build1_amd64.deb Size: 675104 MD5sum: c9a376020dac5715d439f862d2ab2115 SHA1: 27b6a02ff43f42cff2beebe2a309abfee4112a2c SHA256: 621572663023138da25c1407f77165099cf91fdd7137933dc86397f8409c0ad3 Description: Qt 5 Designer components module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 7de8dd34c7de96d3b41df25cec62de7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5feedback5 Priority: optional Section: libs Installed-Size: 133 Maintainer: Ubuntu Developers Architecture: amd64 Source: qtfeedback-opensource-src Version: 5.0~git20130529-0ubuntu3 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5multimedia5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtfeedback-opensource-src/libqt5feedback5_5.0~git20130529-0ubuntu3_amd64.deb Size: 25792 MD5sum: 47986dfe8697c343a244ccfd1e706a0e SHA1: bfedfb91aaba7b41e8d4bb78fffc0574c7d64c0a SHA256: 4ad479aee75c0e10bc0e4c193705ce4e6e9bfb95a9007107b78dea70700e8ca2 Description: Qt Feedback module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 7d98eb01d172caa82a3359049f18ad7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5gui5 Priority: optional Section: libs Installed-Size: 7129 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: fontconfig, libc6 (>= 2.14), libdrm2 (>= 2.4.17), libegl1-mesa (>= 7.8.1) | libegl1-x11, libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.5), libgbm1 (>= 8.1~0), libgl1-mesa-glx | libgl1, libgles2-mesa (>= 7.8.1) | libgles2, libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.24.0), libharfbuzz0b (>= 0.9.11), libice6 (>= 1:1.0.0), libjpeg8 (>= 8c), libpango-1.0-0 (>= 1.14.0), libpng12-0 (>= 1.2.13-4), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libsm6, libstdc++6 (>= 4.1.1), libudev1 (>= 183), libx11-6, libx11-xcb1, libxcb-glx0, libxcb-icccm4 (>= 0.4.1), libxcb-image0 (>= 0.3.9), libxcb-randr0 (>= 1.3), libxcb-render-util0 (>= 0.3.8), libxcb-render0, libxcb-shape0, libxcb-shm0, libxcb-sync1, libxcb-xfixes0, libxcb-xkb1, libxcb1, libxi6 (>= 2:1.2.99.4), libxkbcommon0 (>= 0.2.0), libxrender1, qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5gui5_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 1854048 MD5sum: 1f0d241480ef0c24d560979b5d7c64bd SHA1: 9fe2fe2cbbb36375c56d8e065e7dc920f74092f8 SHA256: 5705f75cb586864f21a7579e7ce9f68326f2163d206b377a521337d05a818b07 Description: Qt 5 GUI module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 9dadc5c1f0624a1be05b1ff4f1c6cd6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5help5 Priority: optional Section: libs Installed-Size: 632 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5clucene5 (>= 5.0.2), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5sql5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qttools-opensource-src/libqt5help5_5.2.1-8build1_amd64.deb Size: 181484 MD5sum: 9bfdf44dd09dff4ead961ae6c7545035 SHA1: 753a08509fd1a92fe33490fc6b129b90476da893 SHA256: c9682a8b42e6753c67e94dd6292a0b7de70a7d2c078fd79fb96001be9860b92f Description: Qt 5 help module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: dc0f2e17602f253ba78a2ab8bbb8d543 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5location5 Priority: optional Section: libs Installed-Size: 632 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt53d5 (>= 5.0~git20130731) | libqt53d5-gles (>= 5.0~git20130731), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5positioning5 (>= 5.2.1), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/q/qtlocation-opensource-src/libqt5location5_5.2.1-1ubuntu2_amd64.deb Size: 148204 MD5sum: bd877ac246c92cabfdb1916c2a891a55 SHA1: a3d15ca14508b4761d38dce5ca89ea09e2e277d0 SHA256: cd7b321324028ed3c8205ca0c37fb424157b6e5e0eb85cbeb8526e302183a1a6 Description: Qt Location module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: faf8936a8aaae73be369efa5286a805a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5location5-plugins Priority: optional Section: libs Installed-Size: 462 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Replaces: libqt5location5 (<= 5.0~git20130117-0ubuntu2) Depends: libqt5location5 (= 5.2.1-1ubuntu2), libc6 (>= 2.2.5), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5positioning5 (>= 5.2.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtlocation-opensource-src/libqt5location5-plugins_5.2.1-1ubuntu2_amd64.deb Size: 107096 MD5sum: fb73aa6989efc820cee4563aab65b8cd SHA1: 5d952a80f04db4e8cc7c83f0688e371dcb41d635 SHA256: 4d424596e64e07911410de0720b1b6bae6930ed794db67aa3d8276542b1d81bb Description: Qt Location module - geolocation plugins Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 73a316abe88b38b912c271d4c529c3eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5multimedia5 Priority: extra Section: libs Installed-Size: 1021 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libc6 (>= 2.14), libpulse0 (>= 1:0.99.1), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/libqt5multimedia5_5.2.1-0ubuntu5_amd64.deb Size: 225534 MD5sum: c08924adcbd6e415059bc19d1deb844a SHA1: 42a361a6a5901cf0fe424794dafdec57fabf7606 SHA256: ec83096efcfe8cbaf109f49998bbfdd5b48ca90110a5553c39004f9bb1bc306f Description: Qt 5 Multimedia module Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 0fd4e386c6bde062c12b013340fc2cae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5multimedia5-plugins Priority: extra Section: libs Installed-Size: 734 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libqt5multimedia5 (= 5.2.1-0ubuntu5), libc6 (>= 2.14), libglib2.0-0 (>= 2.12.0), libgstreamer-plugins-base0.10-0 (>= 0.10.32), libgstreamer0.10-0 (>= 0.10.33), libpulse0 (>= 1:0.99.1), libqgsttools-p1 (>= 5.2.1-0ubuntu5), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/libqt5multimedia5-plugins_5.2.1-0ubuntu5_amd64.deb Size: 164518 MD5sum: 449e9a63cd4ee40c796c5135cccacdb1 SHA1: 8e17d7cdf78b5989a0464d8a3287aae4d8a65c40 SHA256: ee9804aa3788fe171ed0434cbfcccdc2e6d907b05ca489ea5915e60038ba0b43 Description: Qt 5 Multimedia module plugins Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 871e5673651571ab7438746185ff6654 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5multimediaquick-p5 Priority: extra Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libc6 (>= 2.2.5), libqt5core5a (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/libqt5multimediaquick-p5_5.2.1-0ubuntu5_amd64.deb Size: 9596 MD5sum: dc6faa1cdfe7d04b35a78f3e462e6f95 SHA1: f59611ea09680ea3ba67f33aa5fbb240237d823b SHA256: 7dd420264fcf1d724405acad16e2ca6152341b7cd1063cd924ef022f2d23dc70 Description: Qt 5 Multimedia Quick module Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 10cd066c6217162123930b6485245e89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5multimediawidgets5 Priority: extra Section: libs Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libc6 (>= 2.14), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5multimedia5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/libqt5multimediawidgets5_5.2.1-0ubuntu5_amd64.deb Size: 35288 MD5sum: 0c86124bb149d406b9a0f6f912243a13 SHA1: 2827f30b72452cda90f3b75eb3c58f55cc68bc29 SHA256: b9e0881c7a84490ec1296f9d4bf332af41dfaa0f2bcac6178d66e53bc8a4cd14 Description: Qt 5 Multimedia Widgets module Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: a85511daf2fe288583ce79f752671d86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5network5 Priority: optional Section: libs Installed-Size: 1960 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.15), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5network5_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 502890 MD5sum: 6d9db36690107218393495fd63803739 SHA1: 70f54cf77e2b540003ddaaf7bc23b4fb758fa734 SHA256: 79604c2cf015b2d531852aa243caf1e709ea0cb3b501835e6c8347527a561528 Description: Qt 5 network module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 267676193dcb13e33a5c3f9c219b1838 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5opengl5 Priority: optional Section: libs Installed-Size: 535 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.14), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5opengl5_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 133846 MD5sum: 7338e787cbbc3a4255c5a894cafeb1cb SHA1: c3fd10de08d86ac0ce4751aca800884d8b322e94 SHA256: 9c6575736eba8872bb385a5977e846220b90af2f0097be1a7e80d154233e339a Description: Qt 5 OpenGL module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 0966e72b3545e5c76ba7176064c64965 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5opengl5-dev Priority: optional Section: libdevel Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libqt5opengl5 (= 5.2.1+dfsg-1ubuntu14), qtbase5-dev (= 5.2.1+dfsg-1ubuntu14) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtbase-opensource-src/libqt5opengl5-dev_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 29258 MD5sum: 544ab01fd7b10d7666c705512e9aed03 SHA1: 09450ced56ca919f3b4ce470811c603f6a205ec5 SHA256: 942c3a9f0bdfff13c8c29339befdf36ab9acbc3a045c0cdc4008d3fe27450899 Description: Qt 5 OpenGL library development files Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 76f1fd5b0a241ef67384ff7dfbd93542 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5organizer5 Priority: optional Section: libs Installed-Size: 642 Maintainer: Ubuntu Developers Architecture: amd64 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtpim-opensource-src/libqt5organizer5_5.0~git20140203~e0c5eebe-0ubuntu2_amd64.deb Size: 141888 MD5sum: 5903dfb967404ec0a985e1ed0ef2837c SHA1: bad14e025b379be344d673adb18a968382bd7494 SHA256: 6022255a0179f310338df4d1fbc8b936b5843c1b2405894284aaf87b1faa3125 Description: Qt PIM module, Organizer library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: ed8d300fc6b3a1af43a5d3e844504189 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5positioning5 Priority: optional Section: libs Installed-Size: 270 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtlocation-opensource-src/libqt5positioning5_5.2.1-1ubuntu2_amd64.deb Size: 71196 MD5sum: 376d6491638d1de9e316425791a6fd53 SHA1: 0ac6fe5616ecef7ee673cad262bbac0733b40014 SHA256: 339c8904968894b4995b99147b7a6b90e4ea82c98b751335767ccd6136fbe2b0 Description: Qt Positioning module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e4fae679fe1460e90893909931d9dc74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5positioning5-plugins Priority: optional Section: libs Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Replaces: libqt5location5-plugins (<= 5.0~git20130805-0ubuntu4) Depends: libqt5positioning5 (= 5.2.1-1ubuntu2), libc6 (>= 2.14), libgeoclue0 (>= 0.11.1), libglib2.0-0 (>= 2.12.0), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtlocation-opensource-src/libqt5positioning5-plugins_5.2.1-1ubuntu2_amd64.deb Size: 25448 MD5sum: 5e5f50aa2887115f5fea6f8d06b8077a SHA1: 55bb199ddd6c636d2a9c357f06bc790f11fbd906 SHA256: 4be0fb689413970f39d1087a3e128280dcf4b688c966fce42946e9572aefcf8c Description: Qt Positioning module - position plugins Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 8e8ffe67e4c7e99862ec2c75f7616f13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5printsupport5 Priority: optional Section: libs Installed-Size: 578 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Recommends: libcups2 Filename: pool/main/q/qtbase-opensource-src/libqt5printsupport5_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 151826 MD5sum: 571aafc76c05b85436f3bc2a7b0d6634 SHA1: ca7f643198fefeed4cd33330bc719be0c477b1c7 SHA256: 36792ca80ee9c5935406b082988297b986cad98ab23cf515e122ffd7b6fd707a Description: Qt 5 print support module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: ad2a0dcae2a6addab1c4c4b7c64b6a4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5qml-graphicaleffects Priority: optional Section: libs Installed-Size: 380 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtgraphicaleffects-opensource-src Version: 5.2.1-1 Depends: libqt5qml5 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtgraphicaleffects-opensource-src/libqt5qml-graphicaleffects_5.2.1-1_amd64.deb Size: 29282 MD5sum: 7e83f7054f89dd8eb8a943b7f91e1fa6 SHA1: 9351bbbf9b2f08818067a8f7aba0e1ba65665c42 SHA256: 5c268bdf9b18a523aa73add4839b2d9ee5fc5d133e582743257b0e02f56201ed Description: Qt 5 Graphical Effects module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: cb163b459a459bfd1e6a46aee931dc92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5qml5 Priority: optional Section: libs Installed-Size: 4416 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Provides: qtdeclarative-abi-5-2-1 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5network5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/libqt5qml5_5.2.1-3ubuntu15_amd64.deb Size: 1210422 MD5sum: 02352f05186e904948dd575063be3570 SHA1: be0a1a4bf85682b42c1fb21b9b27664067efca45 SHA256: dc276f5698c6b6f4fed3562c2f859999c0fe24ae334424a258fc763ebf187005 Description: Qt 5 QML module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: a738ffdd7112e97f1f00381ee382723b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5quick5 Priority: optional Section: libs Installed-Size: 4039 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.14), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.2.0+gitcb78684a), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/libqt5quick5_5.2.1-3ubuntu15_amd64.deb Size: 981392 MD5sum: c5e02fc855d27d6dfe60057060c687f7 SHA1: b48436dbb83cfa4627dce6b8644e4a24423889bd SHA256: 2c3da083d7c9ee1a746b2aefefd47f427760b37d2531f2b4176389fa68be14f0 Description: Qt 5 Quick library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: b007eea137d3d44d7f8ffa1d25ab7526 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5quickparticles5 Priority: optional Section: libs Installed-Size: 669 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.14), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.2.0+gitcb78684a), libqt5quick5 (>= 5.2.0) | libqt5quick5-gles (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/libqt5quickparticles5_5.2.1-3ubuntu15_amd64.deb Size: 163564 MD5sum: e57a2136c40724d2d53e9a5e704178b8 SHA1: eb0b8ced76b4d131d65d925b46ea98d4abfab4e7 SHA256: c861797ee96029edfa41cf0e953b5e493d541f806b900374ad9e1817b165e3e8 Description: Qt 5 Quick particules module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 205fe56bfde1c3ae524951cb47acb63d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5quicktest5 Priority: optional Section: libs Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.2.0~beta1), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5test5 (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/libqt5quicktest5_5.2.1-3ubuntu15_amd64.deb Size: 49034 MD5sum: 117543310372a693cb82ddf22aceea05 SHA1: eb11f8667635ff9dbeeb2be3b94ec65318994546 SHA256: 8b97998210b6f00dc82dbc0bde54d9ebc2eff78bd0f8783c76a228ea50838ce1 Description: Qt 5 Quick Test library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 62d336fbf0430511d8db72f806e6fba5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5scintilla2-11 Priority: optional Section: libs Installed-Size: 3112 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: qscintilla2 Version: 2.8.1-2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5printsupport5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), libqt5scintilla2-l10n (>= 2.8.1) Filename: pool/main/q/qscintilla2/libqt5scintilla2-11_2.8.1-2_amd64.deb Size: 877460 MD5sum: c9a9d26e2bd2f7e405a994a25f2cb19f SHA1: 59d4fba50fccabcecd372040d4114b086dc4d024 SHA256: fe4a419bb4328c65dcb398ac6df685dc639d8bf239db982b1c71e3d4307b45dc Description: Qt5 port of the Scintilla source code editing widget Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: 199ccf9871a65668bcb592ca2fb35573 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5scintilla2-dev Priority: optional Section: libdevel Installed-Size: 491 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: qscintilla2 Version: 2.8.1-2 Depends: libqt5scintilla2-11 (>= 2.8.1), libqt5scintilla2-11 (<< 2.8.1+1~), qtbase5-dev Filename: pool/main/q/qscintilla2/libqt5scintilla2-dev_2.8.1-2_all.deb Size: 60886 MD5sum: 27a23b4d294e2278007d65bc06b2ef23 SHA1: faf6bda2d7cb15ef0e7ab3a559d60978b7653662 SHA256: 3195a172367854e01f29d2ae54195aa0deeb7f310e3b619eb883e7ac602c80a1 Description: Scintilla source code editing widget for Qt5, development files Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: 3e785852fd821419ef92e9455f1a224a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5scintilla2-l10n Priority: optional Section: libs Installed-Size: 355 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: qscintilla2 Version: 2.8.1-2 Suggests: libqscintilla2-qt5-11 Filename: pool/main/q/qscintilla2/libqt5scintilla2-l10n_2.8.1-2_all.deb Size: 44578 MD5sum: 61c35eec3cfe4c01e538f39e0ea95108 SHA1: 0b2e9d329e7df604b6dbc0120e491b1b8dd183cd SHA256: a934ccda246f75b657b178281c1c90d186093d36e138a34e60aa6bae71efa590 Description: Scintilla source code editing widget for Qt5, translation files Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: 8999221ef928ab9036f5930207811428 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5script5 Priority: optional Section: libs Installed-Size: 2512 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Provides: qtscript-abi-5-2-0 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtscript-opensource-src/libqt5script5_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 690822 MD5sum: bf3efbfd05c92b374ba4e4bb4460e87b SHA1: 786677239ea2c43dd8aa60b4dda1caace9fea008 SHA256: b0aca8636c611448f33700ae4456b72fe90fb08c48b220c68706a9b2d177a669 Description: Qt 5 script module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d3c4a0e8070a26c56f291248544e83a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5scripttools5 Priority: optional Section: libs Installed-Size: 815 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2), libqt5script5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtscript-opensource-src/libqt5scripttools5_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 199892 MD5sum: 04014b001733df1c208825a19471af59 SHA1: 176087632cbc32be29d7b2070c148bbc52e38d73 SHA256: d9bea2d1c48c1ddeb20c028309429cc8ca8ee61460b6454e05177cd9c6721786 Description: Qt 5 script tools module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 0514b920233acecc79cd86b47fb195a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5sensors5 Priority: optional Section: libs Installed-Size: 534 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtsensors-opensource-src/libqt5sensors5_5.2.1+dfsg-2ubuntu2_amd64.deb Size: 104380 MD5sum: 099bdb32f5281cec60f08d73ffd0f719 SHA1: aa0d3947125450a71ec4d3bd71be9c8de9a4b092 SHA256: 7f3cf4d3c300bf9175c5127f7b491a8a126ad2bcc2012471febe5575cc4ee50a Description: Qt Sensors module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 41282d0d6f2d4c83b25b30273ba0058c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5sensors5-dev Priority: optional Section: libdevel Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Replaces: qtsensors5-dev (<< 5.1.1+dfsg-2~) Depends: libqt5sensors5 (= 5.2.1+dfsg-2ubuntu2), qtbase5-dev Breaks: qtsensors5-dev (<< 5.1.1+dfsg-2~) Filename: pool/main/q/qtsensors-opensource-src/libqt5sensors5-dev_5.2.1+dfsg-2ubuntu2_amd64.deb Size: 16270 MD5sum: dd077295921667e7df3111de97886b2a SHA1: 73c72c8db5fda73886a04fd4ba6b672c6e1c1149 SHA256: 9faa8477c011e4aeac27f692dfc83acddda237cb36d961930486a2b255cb55d6 Description: Qt 5 Sensors development files Homepage: http://qt-project.org/ Description-md5: dd848e0ce5cb3cf7836fc859c55e581f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5serialport5 Priority: optional Section: libs Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtserialport-opensource-src Version: 5.2.1-1 Depends: libc6 (>= 2.15), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/q/qtserialport-opensource-src/libqt5serialport5_5.2.1-1_amd64.deb Size: 37196 MD5sum: f6807197b4b54d510dd0d8bca1d7515d SHA1: 7a10da6ea0851c6d29fdb7246540b30a6727fbbf SHA256: bee9d47558cbfa79d31e864f1ef87fb65a7b332ccbe9f781e9c631d1cb37808d Description: Qt 5 serial port support Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 495baaf3e432acf5b4e4136a5d0e645a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5serialport5-dev Priority: optional Section: libdevel Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtserialport-opensource-src Version: 5.2.1-1 Depends: libqt5serialport5 (= 5.2.1-1), qtbase5-dev Filename: pool/main/q/qtserialport-opensource-src/libqt5serialport5-dev_5.2.1-1_amd64.deb Size: 9340 MD5sum: 6be62684f1cefa679343738aed0d7946 SHA1: 87a3b303ce1f5c234e0ab4196fb3319c84682d70 SHA256: 77f8baf921934afb0242e09ccef54dcfc666f51541bf5d86501603276909d8bc Description: Qt 5 serial port development files Homepage: http://qt-project.org/ Description-md5: ec6e5c3fc91d00795e2fd511b16872a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5sql5 Priority: optional Section: libs Installed-Size: 375 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Recommends: libqt5sql5-sqlite | libqt5sql5-mysql | libqt5sql5-odbc | libqt5sql5-psql Filename: pool/main/q/qtbase-opensource-src/libqt5sql5_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 99168 MD5sum: ac166521af4af0fee3e1f4d3fed91564 SHA1: bfc17850d70ea52838c9c11491b80c1456d6bba1 SHA256: ecc28cddb38552d3dec7a765d87881e862f5f916891d745b5bf650f01bdf4bb6 Description: Qt 5 SQL module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 0713fa3e9592ca24526ad333118f8889 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5sql5-sqlite Priority: optional Section: libs Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5sql5 (>= 5.2.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5sql5-sqlite_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 30710 MD5sum: ba9ed7d05d4ecc6137770fda0f799ef2 SHA1: b71aba28c0c0658e37c528214a0c03e2325ccb6e SHA256: 99d5e82c6442b859dca7abe46986b8ff651b320b7eac0535a8413fa1b2b81bff Description: Qt 5 SQLite 3 database driver Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f74ea3b242033484777e5a5e9fb468bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5svg5 Priority: optional Section: libs Installed-Size: 432 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtsvg-opensource-src Version: 5.2.1-1 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtsvg-opensource-src/libqt5svg5_5.2.1-1_amd64.deb Size: 116948 MD5sum: 7dfaa156c421ff1e2df80699a75d3056 SHA1: b4ffa431a114648043e9e128e21e50624bbcbca7 SHA256: 8d65231c96280445b3c17294dc15953850f5523469532035d8c85996d9453137 Description: Qt 5 SVG module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 0e98bb6ccd1201f38567cb67caec74ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5svg5-dev Priority: optional Section: libdevel Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtsvg-opensource-src Version: 5.2.1-1 Depends: libqt5svg5 (= 5.2.1-1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtsvg-opensource-src/libqt5svg5-dev_5.2.1-1_amd64.deb Size: 9488 MD5sum: 17504d184eb53955c2d5edf90c76778f SHA1: 291e2cc60a9accf3799e6edab65cf1b70bb852a0 SHA256: d87f0324ebf573f3d4e0e997574e287e42cac9006ad9f58dcd0c209d09cedd76 Description: Qt 5 SVG module development files Homepage: http://qt-project.org/ Description-md5: aa60a505d0dba59e0a5d3f03ca43c3c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5svg5-private-dev Priority: optional Section: libdevel Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtsvg-opensource-src Version: 5.2.1-1 Depends: libqt5svg5-dev (= 5.2.1-1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtsvg-opensource-src/libqt5svg5-private-dev_5.2.1-1_amd64.deb Size: 12830 MD5sum: 12e2987dbf5a5768f89ce85a24179023 SHA1: 6b34e3d400b17a0baa56e6e6237f139bb5c6e464 SHA256: e4f53f3450b3a6ec8a8c993ce479c7056a4bbbfb79b8cb00e673dc864477c955 Description: Qt 5 SVG module private development files Homepage: http://qt-project.org/ Description-md5: d0c1dbdb2fb6a67e841d5d0ca4da0957 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5test5 Priority: optional Section: libs Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5test5_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 73298 MD5sum: 84a9f8c76854938917c8ff2c01c6fa89 SHA1: 9aaa17f0d924515c70376744aa63656092da853a SHA256: 385e57bbf05a4d19474a80b6c03ce9f7a9af9d05da5f44d589e9f9cb7c40c053 Description: Qt 5 test module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 439bbed1193cb169575d82d618b4c6c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5versit5 Priority: optional Section: libs Installed-Size: 453 Maintainer: Ubuntu Developers Architecture: amd64 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libc6 (>= 2.14), libqt5contacts5, libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtpim-opensource-src/libqt5versit5_5.0~git20140203~e0c5eebe-0ubuntu2_amd64.deb Size: 113712 MD5sum: 07fa50632c7ea601a0823ae463fb941d SHA1: 5d7c064d0f6e7d3ec37666fd6c3ad60aaf62e90c SHA256: ca3d2ec2900cd824067bb24dceb547c4af46b009b1bec431ba8d318d2e668c0e Description: Qt PIM module, Versit library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d194430a054da7d8130a932e9b854f78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5versitorganizer5 Priority: optional Section: libs Installed-Size: 222 Maintainer: Ubuntu Developers Architecture: amd64 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5organizer5, libqt5versit5, libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtpim-opensource-src/libqt5versitorganizer5_5.0~git20140203~e0c5eebe-0ubuntu2_amd64.deb Size: 56962 MD5sum: 9a17849b7ff479d233e9c66d34fab035 SHA1: b444c87b1abd5598e419a62379698e3581aed91e SHA256: 29ce04f2c56c853b14e991352866abae87a1bd92d4f2ce0ddbf40079d8ef2b2a Description: Qt PIM module, Versit Organizer library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 39cdd38dea099ca0a10ccc81648a08ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5webkit5 Priority: optional Section: libs Installed-Size: 34225 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libicu52 (>= 52~m1-1~), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0), libqt5network5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2), libqt5positioning5, libqt5printsupport5 (>= 5.0.2), libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.2.0), libqt5sensors5 (>= 5.1.1), libqt5sql5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.2.1), libx11-6, libxcomposite1 (>= 1:0.3-1), libxml2 (>= 2.7.4), libxrender1, libxslt1.1 (>= 1.1.25), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1, zlib1g (>= 1:1.2.0) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtwebkit-opensource-src/libqt5webkit5_5.1.1-1ubuntu8_amd64.deb Size: 8115044 MD5sum: 69e50394d535f6e888cfc03dfedd5931 SHA1: d1b67eae8a17b486ad7fd215e55f2b0749040f8f SHA256: 601ecf3c3696944adc0e5a13fa76c91ebbfedc6e8b93e2b4149d0a1176591018 Description: Web content engine library for Qt Multi-Arch: same Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: b6887c4796db0313f1e533c538960454 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5webkit5-dbg Priority: extra Section: debug Installed-Size: 559318 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Depends: libqt5webkit5 (= 5.1.1-1ubuntu8) Filename: pool/main/q/qtwebkit-opensource-src/libqt5webkit5-dbg_5.1.1-1ubuntu8_amd64.deb Size: 559241860 MD5sum: 105ae9b9fc15457c328d3083fc972f16 SHA1: 35ecb4bf222e1ba6bf4e3be81355ce6df700d991 SHA256: 9646faae384b57e3791f4a7d9876426b9b274f792cea1a60ec5f9d027d75418b Description: Web content engine library for Qt - debugging symbols Multi-Arch: same Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: 2b35e7ad9905f44038a180fc098adcca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5webkit5-dev Priority: optional Section: libdevel Installed-Size: 799 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Depends: qtbase5-dev, libqt5webkit5 (= 5.1.1-1ubuntu8), libgl1-mesa-dev | libgl-dev, libgstreamer-plugins-base1.0-dev, libqt5opengl5-dev, libxslt1-dev, qtlocation5-dev, qtsensors5-dev Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtwebkit-opensource-src/libqt5webkit5-dev_5.1.1-1ubuntu8_amd64.deb Size: 88456 MD5sum: 95053aee913c0dc3d2f8652754deda36 SHA1: 89e560a3c363ee84223191538d7a85ccbff28e5e SHA256: 496b417f597688ae69c453617831d6d95dc810b3a0d5a6d8b6cc76424a0a7ac4 Description: Web content engine library for Qt - development files Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: 67401855782c9d9d20cf3924364c73f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5webkit5-qmlwebkitplugin Priority: optional Section: libs Installed-Size: 639 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.2.0), libqt5webkit5, libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtwebkit-opensource-src/libqt5webkit5-qmlwebkitplugin_5.1.1-1ubuntu8_amd64.deb Size: 70958 MD5sum: 866ef7a9aba97ae9cc268ebca37fcfc3 SHA1: d3e8abde8e8a02f4b1f24a7b776985617a55928a SHA256: 51226d6e65ab6ddcd9124891930728d23bd51f324b9aef495e7ef01e9b547780 Description: Qt WebKit QML plugin Multi-Arch: same Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: 1b40639a1b924fd7e156a8c37eae8dfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5widgets5 Priority: optional Section: libs Installed-Size: 7072 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.12.0), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libstdc++6 (>= 4.1.1), libx11-6, qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5widgets5_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 2215982 MD5sum: 9aef75eb25658e71da1571cb62337d1c SHA1: 56cda9bcc6e9be1f4076c71a02c49d6cc50d0529 SHA256: a34c6ad8b98965b28859dd5adb9b5eca6b5cc5c5e513d73dd2b10cbc03259c1e Description: Qt 5 widgets module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d3e73eff3b63455d65d61db3b685f693 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5x11extras5 Priority: optional Section: libs Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtx11extras-opensource-src Version: 5.2.1-1 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2) Pre-Depends: multiarch-support Filename: pool/main/q/qtx11extras-opensource-src/libqt5x11extras5_5.2.1-1_amd64.deb Size: 7676 MD5sum: 325ea7a2134b69bb3ffb990cc7b59c88 SHA1: 82edef518fd0e8f8916b0ef7919a42acf1fc2c74 SHA256: 46b9067f75f32f1cc0a09382dfc55bc9a4869204878b88c0744968148c569961 Description: Qt 5 X11 extras Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2574e8fb23c97454c12c4db6cefe9fa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5x11extras5-dev Priority: optional Section: libdevel Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtx11extras-opensource-src Version: 5.2.1-1 Replaces: libqt5x11extras-dev (<< 5.2.0-2~) Depends: libqt5x11extras5 (= 5.2.1-1), qtbase5-dev Breaks: libqt5x11extras-dev (<< 5.2.0-2~) Filename: pool/main/q/qtx11extras-opensource-src/libqt5x11extras5-dev_5.2.1-1_amd64.deb Size: 6736 MD5sum: 73a1eb418ac49ec24c7aeee1c32fb91f SHA1: 5b32a0fe82d733c86524b4f83a8cf7e5f52f9bf6 SHA256: 8a2e7a4c515dd3ad9154b3922f1456ad276ac9c9ee4e1824e14e99a4bcddc062 Description: Qt 5 X11 extras development files Homepage: http://qt-project.org/ Description-md5: 983dd8be836bae64e10eefe9a7ac8668 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5xml5 Priority: optional Section: libs Installed-Size: 363 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5xml5_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 90034 MD5sum: 7512d2e4edc74f1cee3f1c61dba05df3 SHA1: cf25f760c4b9a66d6ea499bbce48d1a566c67b2f SHA256: 7bb7eb21c8ad5405a23029d9d1033f9d19b95183120ebe173732890f6f180047 Description: Qt 5 XML module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: c3b1596533c67529df54c353807c6cae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5xmlpatterns5 Priority: optional Section: libs Installed-Size: 4107 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Provides: qtxmlpatterns-abi-5-2-0 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5network5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtxmlpatterns-opensource-src/libqt5xmlpatterns5_5.2.1-3_amd64.deb Size: 932930 MD5sum: e66edbd386679e90defa30a9fffc890e SHA1: de6cf6d22e30894981cf39ed6772915b65c42cd3 SHA256: 31e959da9a75f06ca7f7d45cbbd04e2424113b3387495b32288f39fc3e77335a Description: Qt 5 XML patterns module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d15f85c7e8471f230227f226e1113d01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5xmlpatterns5-dev Priority: optional Section: libdevel Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Depends: libqt5xmlpatterns5 (= 5.2.1-3), qtbase5-dev Filename: pool/main/q/qtxmlpatterns-opensource-src/libqt5xmlpatterns5-dev_5.2.1-3_amd64.deb Size: 14448 MD5sum: 0a780915fdbd5d18bb7d8a97074858bf SHA1: f4d8f838a6f9f3b66363dfc7ee353d4a11e794ae SHA256: 98cb243f13b409897c19d0543431a1308c5fb32b4a4fe67fc61c564997047df1 Description: Qt 5 XML patterns development files Homepage: http://qt-project.org/ Description-md5: 854381d5c52ed80e7e72ec7e04934402 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5xmlpatterns5-private-dev Priority: optional Section: libdevel Installed-Size: 2364 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Replaces: libqt5xmlpatterns5-dev (<< 5.2.0-2~) Depends: libqt5xmlpatterns5-dev (= 5.2.1-3) Breaks: libqt5xmlpatterns5-dev (<< 5.2.0-2~) Filename: pool/main/q/qtxmlpatterns-opensource-src/libqt5xmlpatterns5-private-dev_5.2.1-3_amd64.deb Size: 214006 MD5sum: 044c037efa5d0ca39208a0c8dc178bac SHA1: 64f877d9637bf4012963f028f25cb5813d2a2994 SHA256: 20f806327849de9c5a1864797ab6ab1bd58c6501c88439d9319e9745ca99e11c Description: Qt 5 XML patterns private development files Homepage: http://qt-project.org/ Description-md5: 9277ca180a63779236984a622adcf00e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtassistantclient-dev Priority: optional Section: libdevel Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt-assistant-compat Version: 4.6.3-6 Replaces: libqt4-dev (<< 4:4.7.0~), qt4-qmake (<< 4:4.7.0~) Depends: libqtassistantclient4 (= 4.6.3-6) Breaks: libqt4-dev (<< 4:4.7.0~), qt4-qmake (<< 4:4.7.0~) Filename: pool/main/q/qt-assistant-compat/libqtassistantclient-dev_4.6.3-6_amd64.deb Size: 4638 MD5sum: 7485ee12f3f6309ed96dc0239cecfa06 SHA1: 2fa5d4a315517feb77fc5cb9232b978a5cb2293b SHA256: d949416821f2152e74189bd75bc2fbad22f49bbc4149fa00e761fb3d8956b5c3 Description: Qt Assistant client library (development) Homepage: http://doc.qt.nokia.com/4.6/qassistantclient.html Description-md5: cff8c49338b078e7417128f79b17dc99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtassistantclient4 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt-assistant-compat Version: 4.6.3-6 Replaces: libqt4-assistant (<< 4:4.7.0~) Depends: libgcc1 (>= 1:4.1.1), libqt4-network (>= 4:4.8.1), libqtcore4 (>= 4:4.8.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: libqt4-assistant (<< 4:4.7.0~) Filename: pool/main/q/qt-assistant-compat/libqtassistantclient4_4.6.3-6_amd64.deb Size: 14434 MD5sum: 8432cf44966df4804ab55bdf47c9fc73 SHA1: 70f369e613bc077f93b9033b67c65db989ac6788 SHA256: b7aaddb91e71051269b7c0fe29c6e9604a0349f21b536b543e816deeb3312432 Description: Qt Assistant client library (runtime) Multi-Arch: same Homepage: http://doc.qt.nokia.com/4.6/qassistantclient.html Description-md5: 48f815b72fe6cea0b6771795bc0e2aaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-audio Package: libqtcore4 Priority: optional Section: libs Installed-Size: 5053 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: qtcore4-l10n, libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.22.0), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: libicu48, libthai0 Filename: pool/main/q/qt4-x11/libqtcore4_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 1547392 MD5sum: b480024c35ab7579c956e9d9f83649f9 SHA1: 84ea3e36dc76d222f952e84f06af565bbd957907 SHA256: 1cbdd47539de01259b23bfaa4972622dcd0246bd23d6d9fe52032832b4edade3 Description: Qt 4 core module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 7cee1ea8aba376d920c9f7e8e7021f9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqtcore4-perl Priority: optional Section: perl Installed-Size: 900 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqt4-network (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1), liblist-moreutils-perl Filename: pool/main/p/perlqt/libqtcore4-perl_4.13.0-0ubuntu1_amd64.deb Size: 174176 MD5sum: 9d53a0f9a059276ef1cf786cab04f4a1 SHA1: ccc177774c08533687fc829541fd9401e8eb1406 SHA256: 7f2e2691d65f976f6ed73cf157baf5c1c4557090bdee522febdd3166ed1b7d5f Description: perl bindings for the Qt Core library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: f1441ea58b8b7c3c62388bd9bce80aff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdbus4 Priority: optional Section: libs Installed-Size: 663 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbus (<< 4:4.8.5) Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.3.1), libgcc1 (>= 1:4.1.1), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: libqt4-dbus (<< 4:4.8.5) Filename: pool/main/q/qt4-x11/libqtdbus4_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 179610 MD5sum: 5396c8ed9e41988f558fa4d36bab0672 SHA1: 08c0cad96c1a72a440c4120dc496477b049080de SHA256: 7deb4c8b2dec07c560f8628b72b29cb94f5320be8f7d58a43f259b733ac246dd Description: Qt 4 D-Bus module library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e24582bcf668b778454bd3186165edbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqtdbus4-perl Priority: optional Section: perl Installed-Size: 102 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtdbus4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtdbus4-perl_4.13.0-0ubuntu1_amd64.deb Size: 17188 MD5sum: 288982548fff003d4f316a16b75082a3 SHA1: 6854b35b2bde41c4c3379b6855f3aa8efa4a9ddc SHA256: f2274d687b85c20d507e476c0c108708f1f2a471ce8c4ab69b079a11fb542599 Description: perl bindings for the Qt Dbus library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 437c1e3a357e6ae8d092be4616c25826 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdbusmock1 Priority: optional Section: libs Installed-Size: 139 Maintainer: Ubuntu Developers Architecture: amd64 Source: libqtdbusmock Version: 0.2+14.04.20140304-0ubuntu1 Depends: python3-dbusmock, libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqtdbustest1 (>= 0.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/libq/libqtdbusmock/libqtdbusmock1_0.2+14.04.20140304-0ubuntu1_amd64.deb Size: 32846 MD5sum: 78e1a7ea3134add0ea49caadc5b7ccbf SHA1: 4a901a4dd4b1f27344b36067dbe458b2f1b4aefd SHA256: af65d30b41fff1a6febc33a2ae439063e237e0364780120aa7dbf00bd7e5a6f6 Description: Library for mocking DBus interactions using Qt Multi-Arch: same Homepage: https://launchpad.net/libqtdbustest Description-md5: 767c2a8575360a80fc75df3eeb01f6e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdbusmock1-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Architecture: amd64 Source: libqtdbusmock Version: 0.2+14.04.20140304-0ubuntu1 Depends: libqtdbusmock1 (= 0.2+14.04.20140304-0ubuntu1) Filename: pool/main/libq/libqtdbusmock/libqtdbusmock1-dev_0.2+14.04.20140304-0ubuntu1_amd64.deb Size: 4718 MD5sum: cc69558fccb8d87896c6425097cad462 SHA1: 0af7a39d933c32e0c7da4221f29ae688b27922c4 SHA256: 8cfb7a14e75652ccab420659cc3b7a1e2cdf6f0b4e78097475938037a29be4bb Description: Library for mocking DBus interactions using Qt Multi-Arch: same Homepage: https://launchpad.net/libqtdbustest Description-md5: 1c68be0d76530e391faa9524d9fd0f2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdbustest1 Priority: optional Section: libs Installed-Size: 109 Maintainer: Ubuntu Developers Architecture: amd64 Source: libqtdbustest Version: 0.2+14.04.20140325-0ubuntu1 Depends: dbus, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5test5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/libq/libqtdbustest/libqtdbustest1_0.2+14.04.20140325-0ubuntu1_amd64.deb Size: 22778 MD5sum: 44a7175c6fa69f47a86de16adc0807da SHA1: 49091c1a682eedd44afc97f72176fb80c9caddbc SHA256: a2e96ff6f4825f72a0c560fb9c196fe8a88df2bddff7e2379a9cd68a404d32a3 Description: Library for testing DBus interactions using Qt Multi-Arch: same Homepage: https://launchpad.net/libqtdbustest Description-md5: 76fdbcd9f19b3ac1b9c9332890f80276 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdbustest1-dev Priority: optional Section: libdevel Installed-Size: 57 Maintainer: Ubuntu Developers Architecture: amd64 Source: libqtdbustest Version: 0.2+14.04.20140325-0ubuntu1 Depends: libqtdbustest1 (= 0.2+14.04.20140325-0ubuntu1) Filename: pool/main/libq/libqtdbustest/libqtdbustest1-dev_0.2+14.04.20140325-0ubuntu1_amd64.deb Size: 3106 MD5sum: 9906917a570171760c7489c133b066ea SHA1: 4ad45a075b3c7c70ec8542b229936f88d10374b1 SHA256: f11c3f832a270caca47d88945e0dc23eab54c13ace731ae923441bbd3db9f36b Description: Library for testing DBus interactions using Qt Multi-Arch: same Homepage: https://launchpad.net/libqtdbustest Description-md5: 066325c657d74b29dd64a4effd452fa0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdeclarative4-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtdeclarative4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtdeclarative4-perl_4.13.0-0ubuntu1_amd64.deb Size: 10092 MD5sum: 2dba7132ba08245dbdc24ee454dcd213 SHA1: ef3d6cc8c47b88671cd1cad9aef47f49436edfaf SHA256: e5bffbc21a1658ed60dcb65ae472e65dc9f6fdd603d9bc74c9ddca8fe7aa4c65 Description: perl bindings for the Qt Declarative library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: e5838920703536e261244e5b605bb06b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtgui4 Priority: optional Section: libs Installed-Size: 12713 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: fontconfig, libaudio2, libc6 (>= 2.15), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.5), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.12.0), libice6 (>= 1:1.0.0), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libsm6, libstdc++6 (>= 4.1.1), libtiff5 (>= 4.0.3), libx11-6 (>= 2:1.2.99.901), libxext6, libxi6 (>= 2:1.2.99.4), libxrender1, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: libcups2 Suggests: qt4-qtconfig Filename: pool/main/q/qt4-x11/libqtgui4_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 4129406 MD5sum: b754c606d769a4350b269eb065dd4a19 SHA1: 7860feacf5483d5469ca24a2d63d1c22498961b9 SHA256: 786f73945e46bc0296ff6a697afc39694c91f8dfb015f6603001b90313731fff Description: Qt 4 GUI module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d6671d2f0c9c77c689ebd0483f37a882 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqtgui4-perl Priority: optional Section: perl Installed-Size: 894 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtgui4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtgui4-perl_4.13.0-0ubuntu1_amd64.deb Size: 230220 MD5sum: 87b17d18703fef5dbb7768d550f7478a SHA1: e9cc27e12a8b835c562c48a759ad1a247f3e80f7 SHA256: 746e576cd23d2e8d237ef2bf93fefde787ac5eb0ec499a99015a4cba499aaa21 Description: perl bindings for the Qt Gui library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 7a75c5b832dbaf99f31d1df532390b9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqthelp4-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqthelp4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqthelp4-perl_4.13.0-0ubuntu1_amd64.deb Size: 10074 MD5sum: 8985a91d83855db0d408a51e39afbd4e SHA1: 439e4b40875cbee1d9633abfaf6c1772153fa8fe SHA256: 5ea5a439d2e82c664cffb9a88568d6a2b1c40184f32994def39c4826a728fa3f Description: perl bindings for the Qt Help library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 8e010e186a1ba898213b8a5e6ec5ddca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtnetwork4-perl Priority: optional Section: perl Installed-Size: 100 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqt4-network (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtnetwork4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtnetwork4-perl_4.13.0-0ubuntu1_amd64.deb Size: 15756 MD5sum: 2d6b1f8452978dad4fc9088c63af7941 SHA1: 247d7e898a388b7c281abb1b0db639701fa0f543 SHA256: 8831a7d51ef029a0a5f2ed6e6e708a270ea2dec2f260c2fdbb419213bd85c517 Description: perl bindings for the Qt Network library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 8a62973f5943a5219d7d54efac2b14da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtopengl4-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtopengl4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtopengl4-perl_4.13.0-0ubuntu1_amd64.deb Size: 10076 MD5sum: 01c26bbd4f843311b86665e578b9e6aa SHA1: 5f14726a60b249ca1e4e4f64927df9a114497956 SHA256: 6710468812132e50212ff2fe7ee7e385de33d72cea0bea0e07f2ad15a9c76731 Description: perl bindings for the Qt OpenGL library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: da47ccab433dbf7b9d9a0a34e84c9dd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtscript4-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtscript4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtscript4-perl_4.13.0-0ubuntu1_amd64.deb Size: 10064 MD5sum: 130b4f4e22299f57178b7cc081bf9e7a SHA1: 0b2ded96c01541f92373869790ed7fa0a0e05899 SHA256: e5b3f27cf5a6d66959979c7651e63c3b1f7f7a7566993ad91e5bcccef759d533 Description: perl bindings for the Qt Script bindings Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 3d9f867cada65b7735a2038b52beeca2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtsql4-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtsql4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtsql4-perl_4.13.0-0ubuntu1_amd64.deb Size: 10068 MD5sum: a1cf031d278f840328de92df8a8dce93 SHA1: a16197c14c696e01e7052a0b448edf54413edfd6 SHA256: 311eebc21fd2d6e204dd433bf0879127c40261be3ced62d28f731eae3da9414c Description: perl bindings for the Qt Sql library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 2a3bb4f0ac5d6fa63646ecac5980d039 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtsvg4-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtsvg4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtsvg4-perl_4.13.0-0ubuntu1_amd64.deb Size: 10052 MD5sum: c1b5341ec156a843cfb2e3899fa2f0ba SHA1: af260dddcbb3e97f792225dda3dd363dfc060ddd SHA256: 9e635db78bc4e1fc6a2deb4d448f6927c85aad0f68cd40a317560f65bc630396 Description: perl bindings for the Qt Svg library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 2c83de22199337fa90916f46dd6869af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqttest4-perl Priority: optional Section: perl Installed-Size: 162 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqttest4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqttest4-perl_4.13.0-0ubuntu1_amd64.deb Size: 30794 MD5sum: 79a703dd4c4472edd446434946483bfe SHA1: 6c7da9ee05ae9d7c3f949d6dc75c286445f01e2c SHA256: 65aff7f1957dcb76c1cdacdc9ea25cdcd5caf25c53aabaf1915a62947efd68c0 Description: perl bindings for the Qt Test library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 42042a5809931dd9f72a279a21a384a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtuitools4-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtuitools4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtuitools4-perl_4.13.0-0ubuntu1_amd64.deb Size: 10088 MD5sum: 389c9a302d0b89e90bbce04bb1a06fa4 SHA1: fedc9d656769fae2b88801d47e3832dce9941e3a SHA256: 130646a7a5fdcd7ebec9c2093535fa445d5dc50d766fe37537ce55e248b6f636 Description: perl bindings for the Qt UiTools library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 3f7a9a7163ca0fb46302cba43c9cac7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtwebkit-dev Priority: optional Section: libdevel Installed-Size: 622 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtwebkit-source Version: 2.3.2-0ubuntu7 Replaces: libqt4-dev (<= 4:4.7.0~beta1) Depends: libqt4-dev (>= 4:4.8.0), libqtwebkit4 (= 2.3.2-0ubuntu7) Filename: pool/main/q/qtwebkit-source/libqtwebkit-dev_2.3.2-0ubuntu7_amd64.deb Size: 70142 MD5sum: bad8d1e88d90940132bb74225e832ec3 SHA1: 6ce653b0c7037331c087653c63f6fc80dfd38383 SHA256: e605fab4a84d48a6001175cafd6f4c542ec4a73df2d267ea1ccb28c11de5ad97 Description: Web content engine library for Qt - development files Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: ea94504f063af2a4c98e30f8cae2c4e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqtwebkit4 Priority: optional Section: libs Installed-Size: 34737 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtwebkit-source Version: 2.3.2-0ubuntu7 Replaces: libqt4-webkit (<= 4:4.7.0~beta1) Depends: libc6 (>= 2.14), libfontconfig1 (>= 2.9.0), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libqt4-network (>= 4:4.7.0~beta1), libqt4-opengl (>= 4:4.5.3), libqtcore4 (>= 4:4.8.4), libqtgui4 (>= 4:4.8.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.2.1), libx11-6, libxml2 (>= 2.7.4), libxrender1, libxslt1.1 (>= 1.1.25), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Filename: pool/main/q/qtwebkit-source/libqtwebkit4_2.3.2-0ubuntu7_amd64.deb Size: 8561038 MD5sum: ae10c241e5664fe0ebee735d6e9b74ce SHA1: a13c76aafb238a25bdb47f2ee32f6cc257e5c685 SHA256: 90f1c5957535b9ab570be418adb0fdcda148e399d19956a19b7c47b715424c69 Description: Web content engine library for Qt Multi-Arch: same Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: 1d29083ee8e5cd3e7083be93610c2ad1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqtwebkit4-dbg Priority: extra Section: debug Installed-Size: 8376 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtwebkit-source Version: 2.3.2-0ubuntu7 Replaces: libqt4-webkit-dbg (<= 4:4.7.0~beta1) Depends: libqtwebkit4 (= 2.3.2-0ubuntu7) Filename: pool/main/q/qtwebkit-source/libqtwebkit4-dbg_2.3.2-0ubuntu7_amd64.deb Size: 1268574 MD5sum: 3a1b7531be7b5e91b9411e64a977bc47 SHA1: 1c73d75286b6e781b65a3bf3562ffc7190deac46 SHA256: b96b66bac799fd57f7b40ae7d3a6ac95e06d4c8f29c83403d1efede79790a3c7 Description: Web content engine library for Qt - debugging symbols Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: 2b35e7ad9905f44038a180fc098adcca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtwebkit4-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtwebkit4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtwebkit4-perl_4.13.0-0ubuntu1_amd64.deb Size: 10086 MD5sum: 66d50b984bd53785a2ef96992417aff7 SHA1: 9e421683c6ab27202cd4218015d2e761f0765fc0 SHA256: c4ac5de19b20bb1d63023b262cc44ce8ff9a4a0927ca92303173dfb607498472 Description: perl bindings for the Qt Webkit library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: d4641a7d20a8d99d355d9cce989ec73c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtxml4-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtxml4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtxml4-perl_4.13.0-0ubuntu1_amd64.deb Size: 10066 MD5sum: 1b4b904074e90a16fb51a9b0e325aea6 SHA1: e90a50e01fc225df9a5b56962b421cbccceae2c1 SHA256: 428271b818daed67b5fc22a9d5553b2ac770c90647e7e2752a356ee51ca98977 Description: perl bindings for the Qt Xml library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: ab5f687bcc023a3273ac7a2027881c72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtxmlpatterns4-perl Priority: optional Section: perl Installed-Size: 108 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtxmlpatterns4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtxmlpatterns4-perl_4.13.0-0ubuntu1_amd64.deb Size: 19688 MD5sum: f6a2bc730fab3a660204b0466475b61e SHA1: 0d6640af03961854dc2e8f3cb303517868bd03a0 SHA256: f0fd1442090a783f273516018e70067642b0e342d90f44b4fe967e4d95c9538c Description: perl bindings for the Qt XMLPatterns library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 20918e4ccbaa70740619b3dc3cb361e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libquadmath0 Priority: optional Section: libs Installed-Size: 270 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libquadmath0_4.8.2-19ubuntu1_amd64.deb Size: 125978 MD5sum: 855adbb91132334b33ef80e50bfa7510 SHA1: 177f917f13082e0a08463bfe1bbed85e526fe28e SHA256: e6d8b79ec0b7a678e4ba41d368dfc6b47339ecf88c7af7482f11532bf9c8cd05 Description: GCC Quad-Precision Math Library Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: fb375c278b15a5774cef34cf9570ecc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libquadmath0-dbg Priority: extra Section: debug Installed-Size: 693 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libquadmath0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libquadmath0-dbg_4.8.2-19ubuntu1_amd64.deb Size: 142612 MD5sum: ab8e25f420aa37654cb6fd1a804f1cc3 SHA1: 006e0135aaf739d20dafb758c104f55f40a0a455 SHA256: b0a2f6faafc883089b264bd9de6e3baa3c7f6be8147f2a62a73eaf07fdf4b759 Description: GCC Quad-Precision Math Library (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 51e0d32e2b63fbbb4bd76acf3872936c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libquorum-dev Priority: optional Section: libdevel Installed-Size: 293 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libquorum5 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libquorum-dev_2.3.3-1ubuntu1_amd64.deb Size: 25152 MD5sum: a6d104b379590e3ad04bbd2b0006fe6d SHA1: 5c130a603cd94f2851ceada3f8d9f5bb21087b36 SHA256: 1d7ed17bfe48ada3d7bb52b2a18cf6896f5429dc9d31f32aa1c96abc1dfd605f Description: Standards-based cluster framework, Quorum devel files Description-md5: e0dd52c4ea971e49f43d9f2e4d5d1012 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libquorum5 Priority: optional Section: libs Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.4), libcorosync-common4 (>= 2.3.3), libqb0 Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libquorum5_2.3.3-1ubuntu1_amd64.deb Size: 6542 MD5sum: 50cafefcac56d0b9351618533a20279d SHA1: 7f74a4b42dd7944977a25d04fa858e671303409d SHA256: 0686106b73355419428a34cb76b7ebed7a612d0c0c4c812360f9d878ebcdb9d8 Description: Standards-based cluster framework, Quorum library Description-md5: 14651db8b8b8dd1ca0078ccb3f57d650 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librabbitmq-dbg Priority: extra Section: debug Installed-Size: 298 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: amd64 Source: librabbitmq Version: 0.4.1-1 Depends: librabbitmq1 (= 0.4.1-1) Filename: pool/main/libr/librabbitmq/librabbitmq-dbg_0.4.1-1_amd64.deb Size: 192924 MD5sum: 42c402d310cd354f4ea6c32cf129d715 SHA1: 2edbc1c7c0b1fd24574a01997e8b3dd899d5d639 SHA256: 2f37e013cea15112b480a0708913b89d9d1b000c8d278adf7ab40dcd1b610274 Description: AMQP client library written in C - Debug Files Homepage: https://github.com/alanxz/rabbitmq-c Description-md5: c76092813f0fe2bb0c116439d063bad2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librabbitmq-dev Priority: optional Section: libdevel Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: amd64 Source: librabbitmq Version: 0.4.1-1 Depends: librabbitmq1 (= 0.4.1-1) Filename: pool/main/libr/librabbitmq/librabbitmq-dev_0.4.1-1_amd64.deb Size: 26864 MD5sum: 68bf9037042627f63ed556bcd803b7c8 SHA1: 3f69bad7bb5e4bda26ad97e961e81e5942542b5a SHA256: 413530a3b85b83bf4b9e53d758c6c9d843a47b5a20d45c8e753c92fdf04a9168 Description: AMQP client library written in C - Dev Files Homepage: https://github.com/alanxz/rabbitmq-c Description-md5: 328f6d1c1ad91f4390a538abfb93a5cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librabbitmq1 Priority: optional Section: libs Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: amd64 Source: librabbitmq Version: 0.4.1-1 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/libr/librabbitmq/librabbitmq1_0.4.1-1_amd64.deb Size: 35170 MD5sum: 59f733e1342ff743039cec1d6305fc2c SHA1: b3af8914e1a09d3f6bbca75bbc7cb9d4b6f94cbc SHA256: a22a6fa7b3793c441093b25f64d0feb9a33be138856f33815e335ab80a9b5cf7 Description: AMQP client library written in C Homepage: https://github.com/alanxz/rabbitmq-c Description-md5: d813b0dbcf2f33c93fba8ae5959a1228 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librados-dev Priority: optional Section: libdevel Installed-Size: 14489 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Replaces: libcrush-dev, libcrush1-dev, librados1-dev, librados2-dev Depends: librados2 (= 0.79-0ubuntu1), libc6 (>= 2.16), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Conflicts: libcrush-dev, libcrush1-dev, librados1-dev, librados2-dev Filename: pool/main/c/ceph/librados-dev_0.79-0ubuntu1_amd64.deb Size: 1692144 MD5sum: 630bf16bafc5a7f6019b5927bcfeec23 SHA1: 349fde87c367c40f73f91eac80bf076b58c57390 SHA256: b2859cac6cb31975b507bbfd0efa396de9cc4c8e162d9d8d493ecf9442298280 Description: RADOS distributed object store client library (development files) Homepage: http://ceph.com/ Description-md5: 45a1795729f9041b2c4d34b965fbaee2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librados2 Priority: optional Section: libs Installed-Size: 5619 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Replaces: libcrush, libcrush1, librados, librados1 Depends: libboost-system1.54.0, libboost-thread1.54.0, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Conflicts: libcrush, libcrush1, librados, librados1 Filename: pool/main/c/ceph/librados2_0.79-0ubuntu1_amd64.deb Size: 1403626 MD5sum: 7f60c08b0c69e2a6c7a02be24efb6484 SHA1: e8105d760d0e68d1c049f5b3f3fd9771a22eb800 SHA256: e8ffb2f3c9f3c19e2d874cfcd920e462df79ddd6d22091a14db882cd142f4e3a Description: RADOS distributed object store client library Homepage: http://ceph.com/ Description-md5: 42d0f393b45b7f226597be77c6f81917 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: librados2-dbg Priority: extra Section: debug Installed-Size: 21751 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Replaces: libcrush1-dbg, librados1-dbg Depends: librados2 (= 0.79-0ubuntu1) Conflicts: libcrush1-dbg, librados1-dbg Filename: pool/main/c/ceph/librados2-dbg_0.79-0ubuntu1_amd64.deb Size: 22029486 MD5sum: d1b7751d226e267d4fd8411299eb28f4 SHA1: 4bedc3cf7c92a6f8c898dd98bc0ccec80210604a SHA256: 593e0bad5c0e0307520023316c0feefc634db1715ad6d83752183e2ea986c1d9 Description: debugging symbols for librados2 Homepage: http://ceph.com/ Description-md5: 5fed3bffffed20ba3eae296a5cd8e215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor1 Priority: optional Section: libs Installed-Size: 482 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: raptor Version: 1.4.21-10 Depends: libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.2), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25) Pre-Depends: multiarch-support Filename: pool/main/r/raptor/libraptor1_1.4.21-10_amd64.deb Size: 146618 MD5sum: 327837c4146bcc8aebfead5efb974b3a SHA1: fb4dc6961cd92daa03f2f9efa43e1ba6c4d35c40 SHA256: b71a0dbf308389642fe179c790694bc9dba14339867932add43e7d9f2c47703e Description: Raptor RDF parser and serializer library Multi-Arch: same Homepage: http://librdf.org/raptor/ Description-md5: 8fa11cd3aec897cd60238ef424626ea3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libraptor1-dbg Priority: extra Section: debug Installed-Size: 1402 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: raptor Version: 1.4.21-10 Depends: libraptor1 (= 1.4.21-10) Filename: pool/main/r/raptor/libraptor1-dbg_1.4.21-10_amd64.deb Size: 330702 MD5sum: 6a946eaa7917f2c02f6c065e96872a96 SHA1: f832c8d51c5f0c668fce43638738fc8c6eab448a SHA256: 66f67e31b8e4d91fb171d413efcbcc26c3938c7aaac51e56c0c5ae0e7b7b67d9 Description: Raptor RDF parser and serializer library - debugging symbols Homepage: http://librdf.org/raptor/ Description-md5: 94ab1e762a7deb1914d98b804f862510 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor1-dev Priority: optional Section: libdevel Installed-Size: 927 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: raptor Version: 1.4.21-10 Provides: libraptor-dev Depends: libraptor1 (= 1.4.21-10), libxml2-dev (>= 2.5.10), libcurl4-gnutls-dev, libxslt1-dev (>= 1.0.18), pkg-config Suggests: libraptor1-doc Conflicts: libraptor-dev, libraptor0 (<= 0.9.12-2), libraptor1 (<= 1.0.0-4) Filename: pool/main/r/raptor/libraptor1-dev_1.4.21-10_amd64.deb Size: 186654 MD5sum: dadb1afc76dc135267c74c1848c16daf SHA1: e09aab91710cb2d2816151b15beb2434951834a9 SHA256: 9c4a51cb79d19ca669e0460548b9b7f8eaec414cfb3820e5bbd3e2c66a65f8a7 Description: Raptor RDF parser and serializer development libraries and headers Homepage: http://librdf.org/raptor/ Description-md5: c6f8a34bba2df5b47b55c5df7f7caf5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor1-doc Priority: optional Section: doc Installed-Size: 1315 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: all Source: raptor Version: 1.4.21-10 Depends: lynx | www-browser Filename: pool/main/r/raptor/libraptor1-doc_1.4.21-10_all.deb Size: 98958 MD5sum: ebec4869b8f13d72559973ec8ff00895 SHA1: bae1a4d456a5bc0cee78e063a79ea22d306509f5 SHA256: dff9cafc79f8b318b6557ddf938147bfc49d8139aa25d83005ce648b9b2f5d7f Description: Documentation for the Raptor RDF parser and serializer library Homepage: http://librdf.org/raptor/ Description-md5: 84ed5b4636f549b86171efefa5a5ae95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor2-0 Priority: optional Section: libs Installed-Size: 435 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: raptor2 Version: 2.0.13-1 Depends: libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.2), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), libyajl2 (>= 2.0.4) Pre-Depends: multiarch-support Suggests: raptor2-utils Breaks: libraptor1 (<< 1.4.21-3) Filename: pool/main/r/raptor2/libraptor2-0_2.0.13-1_amd64.deb Size: 152974 MD5sum: 4cf350c3082659f7f5db3f1c590e66fb SHA1: 946a6b6e225afedbca96219914b485aeeada9f5f SHA256: 95b6cdb593f5a2c3481276c383a0eec093df85b65f285abbd4c2f0d4efa5f94a Description: Raptor 2 RDF syntax library Multi-Arch: same Homepage: http://librdf.org/raptor/ Description-md5: 773b7033cc26603ac6f60fb8d1885e8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: libraptor2-0-dbg Priority: extra Section: debug Installed-Size: 1536 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: raptor2 Version: 2.0.13-1 Depends: libraptor2-0 (= 2.0.13-1) Filename: pool/main/r/raptor2/libraptor2-0-dbg_2.0.13-1_amd64.deb Size: 357634 MD5sum: a839a275222f4e66da6f4db5955d45ac SHA1: 1824fa6fde45076412f04acad4c1605fc3ce0744 SHA256: 76d39b3890ee2690b0877e4b098da9b9cc3b8b33fb19c9b9e78bafd22f4342e2 Description: Raptor RDF parser and serializer library - debugging symbols Homepage: http://librdf.org/raptor/ Description-md5: 715c43016360819222c9514ff176fd74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor2-dev Priority: optional Section: libdevel Installed-Size: 902 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: raptor2 Version: 2.0.13-1 Depends: libraptor2-0 (= 2.0.13-1), libxml2-dev (>= 2.5.10), libcurl4-gnutls-dev, libxslt1-dev (>= 1.0.18), pkg-config, libyajl-dev Recommends: raptor2-utils Suggests: libraptor2-doc Filename: pool/main/r/raptor2/libraptor2-dev_2.0.13-1_amd64.deb Size: 180350 MD5sum: 5adacad38d4d70f52b88776aee9c9aa6 SHA1: c126acc84ff51a186f9447346c130a3b4e866a22 SHA256: 41b1e8448d85f04008bbf560c79fe02c754251095ca0ad19b45b6db30554aa4d Description: Raptor 2 RDF syntax library development libraries and headers Homepage: http://librdf.org/raptor/ Description-md5: 5f07c4036e593f4fdd3058cf465e8915 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor2-doc Priority: optional Section: doc Installed-Size: 1527 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: all Source: raptor2 Version: 2.0.13-1 Depends: lynx | www-browser Filename: pool/main/r/raptor2/libraptor2-doc_2.0.13-1_all.deb Size: 119650 MD5sum: 7b3534c4402cff8f6eb777a50421da32 SHA1: cbf81b312466d2596a70634751f9f5e1e45bb01f SHA256: 6a2e80d8059852c5a5068869e3d35cb4c4d9e392ee8f0a301165d818cf736d27 Description: Documentation for the Raptor 2 RDF syntax library Homepage: http://librdf.org/raptor/ Description-md5: a86c6d606fb8e8f9dd088c874013018f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librarian-dev Priority: extra Section: libdevel Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Frederic Peters Architecture: amd64 Source: rarian Version: 0.8.1-5ubuntu1 Depends: librarian0 (= 0.8.1-5ubuntu1) Filename: pool/main/r/rarian/librarian-dev_0.8.1-5ubuntu1_amd64.deb Size: 19202 MD5sum: eb836ebd28ff7a56c8b434b4baca6f05 SHA1: aaa8628bae978a48fba1a9b21b4f4c3890bd78a3 SHA256: 92875aa58892cc484cfd315d7858fd15f56b7a300ac3ef63cfa9267ff69fde61 Description: Documentation meta-data library (header files) Homepage: http://rarian.freedesktop.org/ Description-md5: 3526e3e7eb51494be35419fbaf086671 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librarian0 Priority: extra Section: libs Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Frederic Peters Architecture: amd64 Source: rarian Version: 0.8.1-5ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: yelp (<< 2.21) Filename: pool/main/r/rarian/librarian0_0.8.1-5ubuntu1_amd64.deb Size: 49376 MD5sum: 39f45dece01c4f6ec7fab9e01f4af0c1 SHA1: 1fd04fa7e3f2232032a13f0008f4735019c2e666 SHA256: 1bcfe94ff1c53b5fd4e0e02c7a0d407170d2fb405f3e320c41592a5b915d8dc2 Description: Documentation meta-data library (library package) Homepage: http://rarian.freedesktop.org/ Description-md5: bfdcf27559b2270fafaac0133f94d717 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-desktop Package: librasqal3 Priority: optional Section: libs Installed-Size: 496 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: rasqal Version: 0.9.32-1 Depends: libc6 (>= 2.14), libgmp10, libmhash2, libpcre3, libraptor2-0 (>= 2.0.12), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Suggests: rasqal-utils Filename: pool/main/r/rasqal/librasqal3_0.9.32-1_amd64.deb Size: 162590 MD5sum: 42a91f90fc66423072e42f2533fcb0a6 SHA1: 66be9138aec781bf757dbe6b493043d217cb3770 SHA256: aa4818a25c8f62bd5718c19b1c7e11d074964c2cde927950186fe1590d1f7a4f Description: Rasqal RDF query library Multi-Arch: same Homepage: http://librdf.org/rasqal/ Description-md5: 2bb81e38d7099ee8ca034f8f70fd1e01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: librasqal3-dbg Priority: extra Section: debug Installed-Size: 1748 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: rasqal Version: 0.9.32-1 Depends: librasqal3 (= 0.9.32-1) Filename: pool/main/r/rasqal/librasqal3-dbg_0.9.32-1_amd64.deb Size: 354154 MD5sum: 214df9205847f3ff0aca2f93c7a50cf0 SHA1: 613b0a1612ec0c43893221e8239e4c091165dfbd SHA256: 525ba93b69dc18080ca284f4162fa6906381d652a30f2ccc627dd8d1e9d89152 Description: Rasqal RDF Query Library - debugging symbols Homepage: http://librdf.org/rasqal/ Description-md5: e3b184be9480f7d44abc56c675983769 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librasqal3-dev Priority: optional Section: libdevel Installed-Size: 1057 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: rasqal Version: 0.9.32-1 Replaces: librasqal2-dev Provides: librasqal-dev Depends: librasqal3 (= 0.9.32-1), libraptor2-dev (>= 2.0.12-2), libgmp-dev Recommends: rasqal-utils Suggests: librasqal3-doc Conflicts: librasqal-dev, librasqal2-dev Filename: pool/main/r/rasqal/librasqal3-dev_0.9.32-1_amd64.deb Size: 186740 MD5sum: 0513a96a0a33a5e60005e0a78bd0448d SHA1: 2c930ecc0fc39fea043c55e38d9b57d25dbfb75d SHA256: 897f1c6c1bc647e9a82271b8fa29d0af4ac0895bbe5994d4cfe85a3879345da1 Description: Rasqal RDF query library development libraries and headers Homepage: http://librdf.org/rasqal/ Description-md5: 00b2e549a7168d4a2cb0d66e0e1d8187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librasqal3-doc Priority: optional Section: doc Installed-Size: 1106 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: all Source: rasqal Version: 0.9.32-1 Depends: lynx | www-browser Filename: pool/main/r/rasqal/librasqal3-doc_0.9.32-1_all.deb Size: 82104 MD5sum: 6130146f89422e5f946d79e8fd291e0c SHA1: 1a5e4cf15f3e76f20ca85dac53e284f902e7148d SHA256: 1ac7fbd1baeb2353672d1eb68f607ed5626fa56d24a561bf7e62f9ae3c2a993e Description: Documentation for the Rasqal RDF Query library Homepage: http://librdf.org/rasqal/ Description-md5: eaab49237db5c73348211dec9b769d1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw-dev Priority: extra Section: libdevel Installed-Size: 1551 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: amd64 Source: libraw Version: 0.15.4-1 Depends: libraw9 (= 0.15.4-1), liblcms2-dev Filename: pool/main/libr/libraw/libraw-dev_0.15.4-1_amd64.deb Size: 381968 MD5sum: 113a1a67aee1436e186f2b45e4bc0ed9 SHA1: ed85c688f147f4a70f65a08d3b88c7a74fa8aa14 SHA256: d71c21bd997dcbf6c0be9e3cbeb341772c33ded7940383aa03ca0f07b44cb4ab Description: raw image decoder library (development files) Multi-Arch: same Homepage: http://www.libraw.org/ Description-md5: c5d75da67a9fd77fe2f4c9ff9bcc51c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw-doc Priority: optional Section: doc Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: all Source: libraw Version: 0.15.4-1 Filename: pool/main/libr/libraw/libraw-doc_0.15.4-1_all.deb Size: 98502 MD5sum: 00e3005cd29668e6bb524aa317f6e763 SHA1: 99fe8cacd93eb41dfb0b96f804f1f01c42e9196c SHA256: 5249f22230e3aefc610cff8ea1921a7391b62845fc0a6d39df70a3044c98368c Description: raw image decoder library (documentation) Multi-Arch: foreign Homepage: http://www.libraw.org/ Description-md5: 40ee49077e6079579c20f569ac791566 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw1394-11 Priority: optional Section: libs Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: amd64 Source: libraw1394 Version: 2.1.0-1ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Suggests: libraw1394-doc Filename: pool/main/libr/libraw1394/libraw1394-11_2.1.0-1ubuntu1_amd64.deb Size: 29946 MD5sum: 197a8265e46b92a463a99ccb94a9b7bf SHA1: 1e77c061a9886b971db95fcfd6c87cdb591fc12f SHA256: 458820f9f4aec75b255d573b829e8b231697463c8a0d4d7ca54abf30dfd5c80e Description: library for direct access to IEEE 1394 bus (aka FireWire) Multi-Arch: same Homepage: https://ieee1394.wiki.kernel.org/ Description-md5: 949bee021305068625569148281aa75b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libraw1394-11-dbg Priority: extra Section: debug Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: amd64 Source: libraw1394 Version: 2.1.0-1ubuntu1 Depends: libraw1394-11 (= 2.1.0-1ubuntu1) Suggests: libraw1394-doc Filename: pool/main/libr/libraw1394/libraw1394-11-dbg_2.1.0-1ubuntu1_amd64.deb Size: 92058 MD5sum: 892df9cb617bb7d7f399d543865beddc SHA1: 07b6c0123d708289f1da811b8c3317a8a0cf3050 SHA256: 5a42d529c38f1148cd6001778db02fbb9a705dd1d24b32d1dd548ff31af87403 Description: debugging symbols for libraw1394-11 Multi-Arch: same Homepage: https://ieee1394.wiki.kernel.org/ Description-md5: 05044fa2f3a168d45b7c5600766070ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw1394-dev Priority: optional Section: libdevel Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: amd64 Source: libraw1394 Version: 2.1.0-1ubuntu1 Depends: libraw1394-11 (= 2.1.0-1ubuntu1) Recommends: libraw1394-tools Suggests: libraw1394-doc Filename: pool/main/libr/libraw1394/libraw1394-dev_2.1.0-1ubuntu1_amd64.deb Size: 34574 MD5sum: febc85f7a1354d313b14f8ad1ca5516b SHA1: e10e2cb88073c19304a10dbbb5c645ee23687c22 SHA256: 154d6b69232d7049394719c308a08e8ecfc1f847b138174dcb87d00bebdb3422 Description: library for direct access to IEEE 1394 bus - development files Multi-Arch: same Homepage: https://ieee1394.wiki.kernel.org/ Description-md5: f6a919599bffb3e787a1082f7b77d318 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw1394-doc Priority: optional Section: doc Installed-Size: 626 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: all Source: libraw1394 Version: 2.1.0-1ubuntu1 Filename: pool/main/libr/libraw1394/libraw1394-doc_2.1.0-1ubuntu1_all.deb Size: 319750 MD5sum: 128fb66fae8a20752bda256c7c4d872b SHA1: 7d573396844c43b194211e8110354523e1263c1d SHA256: 8ce808e5e88420b7022d1fd3ddf251cb0e878a5f8afc37bcfd1145b38a584031 Description: Reference manual and documentation about libraw1394 Homepage: https://ieee1394.wiki.kernel.org/ Description-md5: a23c950d3d34a5728ec5ad9d8d2433d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw1394-tools Priority: optional Section: utils Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: amd64 Source: libraw1394 Version: 2.1.0-1ubuntu1 Replaces: libraw1394-dev (<= 2.0.7-1ubuntu1) Depends: libraw1394-11 (= 2.1.0-1ubuntu1), libc6 (>= 2.4) Suggests: libraw1394-doc Breaks: libraw1394-dev (<= 2.0.7-1ubuntu1) Filename: pool/main/libr/libraw1394/libraw1394-tools_2.1.0-1ubuntu1_amd64.deb Size: 16022 MD5sum: 0ab950760b31828e02fa65957a254f69 SHA1: 48edbba0dd664edc5a89b05c318b63361a52acc7 SHA256: 06aa22a198973c7b9d4c8c9959b4c882c34409722cb0ecfeed343be8251fee74 Description: library for direct access to IEEE 1394 bus (aka FireWire) Multi-Arch: foreign Homepage: https://ieee1394.wiki.kernel.org/ Description-md5: 37acd10ddc8cc0179de11218ed797e1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw9 Priority: optional Section: libs Installed-Size: 1294 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: amd64 Source: libraw Version: 0.15.4-1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgomp1 (>= 4.2.1), libjasper1, libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/libr/libraw/libraw9_0.15.4-1_amd64.deb Size: 355524 MD5sum: 6d7fe8d87d94a841de9537a7da2da149 SHA1: 08f2b11481efd776d79d5484645eef97fe7093f2 SHA256: 173bc2834c9e647aebf3fa0e4bf8ddda340f8b018bd52c17528badd7689c841d Description: raw image decoder library Multi-Arch: same Homepage: http://www.libraw.org/ Description-md5: 436cf471e5e66b160c9d836328eeba54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: librbd-dev Priority: optional Section: libdevel Installed-Size: 56822 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Replaces: librbd1-dev Depends: librados-dev, librbd1 (= 0.79-0ubuntu1) Conflicts: librbd1-dev Filename: pool/main/c/ceph/librbd-dev_0.79-0ubuntu1_amd64.deb Size: 6744494 MD5sum: 0e49910bb8ffb244fc64f63a8a241347 SHA1: b94b210bc237bd85467991103baa57994972520c SHA256: 741840ca13f045e92228999ef6c3a9a52c866d93bef3aaf066d0be36855fac86 Description: RADOS block device client library (development files) Homepage: http://ceph.com/ Description-md5: 5a3f9d05f90eae572a3f0c323daf1cab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librbd1 Priority: optional Section: libs Installed-Size: 1015 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Depends: librados2 (= 0.79-0ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Filename: pool/main/c/ceph/librbd1_0.79-0ubuntu1_amd64.deb Size: 316068 MD5sum: 197ad33dca7b76e9081e38042c08f5cd SHA1: 63bb347bf355d6d5db37f253f4e7f80f3749f1e4 SHA256: bc07872b9adab4efe8514fd40649428dc6eec1788dbe6971590b407da9d36da5 Description: RADOS block device client library Homepage: http://ceph.com/ Description-md5: 3b39955e1c12f7ad8d4c44efcc8ec188 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: librbd1-dbg Priority: extra Section: debug Installed-Size: 6357 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Depends: librbd1 (= 0.79-0ubuntu1) Filename: pool/main/c/ceph/librbd1-dbg_0.79-0ubuntu1_amd64.deb Size: 6378892 MD5sum: 94a3725ffabab49918394a503125759e SHA1: e0e9eb4243d0f6370f9abb8af23631f9536b4bde SHA256: 42b55f75e14575b9466700ccf01937e2d5e2dd584e4511c50bb749af51ca1c5c Description: debugging symbols for librbd1 Homepage: http://ceph.com/ Description-md5: 0479c6b8befcd3b46093c4fdfaef7ca4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librdf0 Priority: optional Section: libs Installed-Size: 298 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: redland Version: 1.0.17-1 Depends: libc6 (>= 2.14), libdb5.3, libltdl7 (>= 2.4.2), libraptor2-0 (>= 2.0.12), librasqal3 (>= 0.9.31) Pre-Depends: multiarch-support Suggests: librdf-storage-postgresql, librdf-storage-mysql, librdf-storage-sqlite, librdf-storage-virtuoso, redland-utils Filename: pool/main/r/redland/librdf0_1.0.17-1_amd64.deb Size: 94512 MD5sum: 57eb94d3ce4beaa02103c26141527da8 SHA1: c85fa9c72128f590773b3fe87f424b9f483889f6 SHA256: f692721dd1b3b6201a310ce41ad8886bead4c45344b034335bfd4af6103a1b8e Description: Redland Resource Description Framework (RDF) library Multi-Arch: same Homepage: http://librdf.org/ Description-md5: 8df36c881ba51cb293c533fb7cfa9486 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: librdf0-dev Priority: optional Section: libdevel Installed-Size: 2134 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: redland Version: 1.0.17-1 Provides: librdf-dev Depends: librdf0 (= 1.0.17-1), libraptor2-dev (>= 2.0.10), librasqal3-dev (>= 0.9.30) Recommends: redland-utils Suggests: librdf-perl, python-librdf, librdf-ruby Conflicts: librdf-dev Filename: pool/main/r/redland/librdf0-dev_1.0.17-1_amd64.deb Size: 214278 MD5sum: e53ccd3691746c1f796580bcf026a734 SHA1: 542a5ff8ff99ecc9f7b7cf5d35dad583ae966566 SHA256: 4a48db3a976829c43f033a19af380ebfc02e49b19e046754ea60059ba7ea1e28 Description: Redland RDF library development libraries and headers Homepage: http://librdf.org/ Description-md5: 14505384499a79491ef37cbc367fe9a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librdmacm-dev Priority: extra Section: libdevel Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: amd64 Source: librdmacm Version: 1.0.16-1 Depends: librdmacm1 (= 1.0.16-1) Filename: pool/main/libr/librdmacm/librdmacm-dev_1.0.16-1_amd64.deb Size: 87078 MD5sum: f7be3668a4dec0ae7f78498605d0567c SHA1: 9e8ad45a996d7a6fbf3a778f509e3bd642821aa8 SHA256: 7ea85140a3faddb1c5632bf0d1741d19dcc3dd55c95e2af160a205d23d4c88f7 Description: Development files for the librdmacm library Homepage: http://www.openfabrics.org/ Description-md5: 5e352046b21eae95a9649ec4cb92a54e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librdmacm1 Priority: extra Section: libs Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: amd64 Source: librdmacm Version: 1.0.16-1 Depends: libc6 (>= 2.15), libibverbs1 (>= 1.1.2) Pre-Depends: multiarch-support Filename: pool/main/libr/librdmacm/librdmacm1_1.0.16-1_amd64.deb Size: 36818 MD5sum: e48ede8d81ea578c585655eef431b858 SHA1: dd192678b7dbe686b7327ea7c0da2456c3a14d1e SHA256: f6ad59cdfaf899b86555134afd45f4a605b821e27117f2ab5bf768fd8daffa60 Description: Library for managing RDMA connections Homepage: http://www.openfabrics.org/ Description-md5: dc9d0886ecf59fc604b978f8125cf804 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librdmacm1-dbg Priority: extra Section: libdevel Installed-Size: 426 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: amd64 Source: librdmacm Version: 1.0.16-1 Depends: librdmacm1 (= 1.0.16-1) Filename: pool/main/libr/librdmacm/librdmacm1-dbg_1.0.16-1_amd64.deb Size: 272928 MD5sum: c8c17daa8dfd03dc62f254b8b345bc75 SHA1: d0309e0b591baebcab1624de55fb4e863930d5c9 SHA256: f02ec953aa06c3f5412926c8024df989911cf80a1889d1a3a0d86ef137a8dc8a Description: Debugging symbols for the librdmacm library Homepage: http://www.openfabrics.org/ Description-md5: 9ee13bd3b19544b139d1acbdbc88798e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadline-dev Priority: optional Section: libdevel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: readline6 Version: 6.3-4ubuntu2 Depends: libreadline6-dev (= 6.3-4ubuntu2) Conflicts: libreadline-gplv2-dev Filename: pool/main/r/readline6/libreadline-dev_6.3-4ubuntu2_amd64.deb Size: 988 MD5sum: 70efa267def490955ef3c54bdd8f290e SHA1: 58db01135cbfb092ebfaae4294c42d501c2a6ce7 SHA256: bf17e27af34e21137a36f761c68122a0a5591979dd18f0b5a6387119b9c4eeb3 Description: GNU readline and history libraries, development files Multi-Arch: same Description-md5: 3502d626cf8e22133354357eb1e0631f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadline-gplv2-dev Priority: extra Section: libdevel Installed-Size: 674 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: readline5 Version: 5.2+dfsg-2 Replaces: libreadline5-dev Depends: libreadline5 (= 5.2+dfsg-2), libtinfo-dev, dpkg (>= 1.15.4) | install-info Conflicts: libreadline-dev, libreadline5-dev, libreadline6-dev Filename: pool/main/r/readline5/libreadline-gplv2-dev_5.2+dfsg-2_amd64.deb Size: 180488 MD5sum: 7a33f4b82fab875a7062a02ebf4c0d7d SHA1: be0960dc108b6189ca6702ddea1b6f0381cb53d3 SHA256: a989eea1d2ce5207836da5f881d4b8fd0995f72ff70b6917a3e147cf630ac0ba Description: GNU readline and history libraries, development files Multi-Arch: same Description-md5: 786f654ffd88ea529a702d7fd1429e0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadline5 Priority: optional Section: libs Installed-Size: 361 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: readline5 Version: 5.2+dfsg-2 Depends: readline-common, libc6 (>= 2.15), libtinfo5 Pre-Depends: multiarch-support Filename: pool/main/r/readline5/libreadline5_5.2+dfsg-2_amd64.deb Size: 130428 MD5sum: 105690417cc22d06a1c4a66069ec8a91 SHA1: 5e0e4d8cbad5302244c06f79f74497a30754f8af SHA256: 1cb6c70f2ff93664db86175da398b4209e4a5c17773a040f88c15c07ded6b5b8 Description: GNU readline and history libraries, run-time libraries Multi-Arch: same Description-md5: 02109af5819248ca867891090079f329 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-live, ubuntu-usb, server, kubuntu-desktop, kubuntu-live, kubuntu-active, kubuntu-active-desktop, kubuntu-active-live, kubuntu-active, edubuntu-desktop, edubuntu-dvd-live, edubuntu-usb, xubuntu-desktop, xubuntu-live, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntustudio-dvd-live, ubuntu-gnome-desktop, ubuntu-gnome-live Package: libreadline5-dbg Priority: extra Section: libdevel Installed-Size: 941 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: readline5 Version: 5.2+dfsg-2 Provides: libreadline-dbg Depends: libreadline5 (= 5.2+dfsg-2), libc6 (>= 2.15), libtinfo5 Suggests: libreadline-gplv2-dev Conflicts: libreadline-dbg Filename: pool/main/r/readline5/libreadline5-dbg_5.2+dfsg-2_amd64.deb Size: 337300 MD5sum: 1a5d36a77803470e1ca3956107502bb7 SHA1: c34f33b5dfd2a6ca3ec998542a8d4444b9d99247 SHA256: b0b0f289f6655e349046424a959e42abec439413cfdf86bd3fa7d439d46b026e Description: GNU readline and history libraries, debugging libraries Description-md5: f10032a711167543f997c2cb1de91ac4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadline6 Priority: important Section: libs Installed-Size: 404 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: readline6 Version: 6.3-4ubuntu2 Depends: readline-common, libc6 (>= 2.15), libtinfo5 Pre-Depends: multiarch-support Filename: pool/main/r/readline6/libreadline6_6.3-4ubuntu2_amd64.deb Size: 116118 MD5sum: 74b67b6ef21b307955a72f86105e1e0f SHA1: 68209f5da5372f535d0bc2f56962f2b2fa42bc74 SHA256: 446a8ba11a4007dcf74324dd8656368ecf548635d3dea5959af50a6878324ea8 Description: GNU readline and history libraries, run-time libraries Multi-Arch: same Description-md5: 02109af5819248ca867891090079f329 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: libreadline6-dbg Priority: extra Section: libdevel Installed-Size: 2853 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: readline6 Version: 6.3-4ubuntu2 Provides: libreadline-dbg Depends: libreadline6 (= 6.3-4ubuntu2), libc6 (>= 2.15), libtinfo5 Suggests: libreadline6-dev Conflicts: libreadline-dbg Filename: pool/main/r/readline6/libreadline6-dbg_6.3-4ubuntu2_amd64.deb Size: 550142 MD5sum: bfe8faa888a83a653d3a58e7514c501b SHA1: 8e4a3b3b3c873adf9f7daa5db10a0799e205ac81 SHA256: 5383a5de2089d2e8959fd7667ecdfa7738035cd7c4e111818e3bbf1e2fcd5b8e Description: GNU readline and history libraries, debugging libraries Description-md5: f10032a711167543f997c2cb1de91ac4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadline6-dev Priority: optional Section: libdevel Installed-Size: 837 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: readline6 Version: 6.3-4ubuntu2 Depends: libreadline6 (= 6.3-4ubuntu2), libtinfo-dev, dpkg (>= 1.15.4) | install-info Conflicts: libreadline-gplv2-dev, libreadline5-dev Filename: pool/main/r/readline6/libreadline6-dev_6.3-4ubuntu2_amd64.deb Size: 212598 MD5sum: f79650d933b50b0485776b08da994fc5 SHA1: 05701236e5104b12555752a234776cb3b3f36655 SHA256: f5cb8e76cc09b00e3be473ce6841518fb17565cf8f17694ca0e842abad3475b5 Description: GNU readline and history libraries, development files Multi-Arch: same Description-md5: 729d7fc5adc58ece21627d452b1c63fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadonly-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.04-1 Depends: perl Recommends: libreadonly-xs-perl (>= 1.05) Filename: pool/main/libr/libreadonly-perl/libreadonly-perl_1.04-1_all.deb Size: 16642 MD5sum: 5fe1cd6ad8a1de527a5f65c5f83fc31e SHA1: bcbd3ee86df1104095ea278ba0b8c7673b66b340 SHA256: 5649fbcb888bbee1d38b4c52e955aaa05a4366e7157630519ebdc616ab9c6c29 Description: facility for creating read-only scalars, arrays and hashes Homepage: https://metacpan.org/release/Readonly/ Description-md5: b7b346189e6c11c18015c43e895af85e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadonly-xs-perl Priority: optional Section: perl Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.05-1 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.2.5) Recommends: libreadonly-perl Filename: pool/main/libr/libreadonly-xs-perl/libreadonly-xs-perl_1.05-1_amd64.deb Size: 9908 MD5sum: c6af2d6aaab105b095aa2fdfc5934d85 SHA1: c94823b43ea53661ebf88d1e558ee0c36d1d6c82 SHA256: 1fd5e7003bd20bc58f60df845d75c40908a1977f717c6d30a393ac08ff3f9156 Description: faster Readonly implementation Homepage: https://metacpan.org/release/Readonly-XS/ Description-md5: a248387b6edf9b1e3294d8e2e3f43945 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librecode-dev Priority: optional Section: libdevel Installed-Size: 2175 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Source: recode Version: 3.6-21 Depends: librecode0 (= 3.6-21) Filename: pool/main/r/recode/librecode-dev_3.6-21_amd64.deb Size: 781854 MD5sum: b313edcd98c7fea041648f9c70a06530 SHA1: 2c8d656c7fd2608dc8dde9d6ba0625e35a5c7d75 SHA256: 8a8c4d0be2b2e110a642d5ce27bd054128b874b5c19985eb5cd9dac7fed140d3 Description: Development package for librecode0 Description-md5: 0bb977648f71d2bfc680b9a744c51f58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librecode0 Priority: optional Section: libs Installed-Size: 1844 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Source: recode Version: 3.6-21 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/r/recode/librecode0_3.6-21_amd64.deb Size: 770512 MD5sum: a0b763a59ac2434ec71775ff0b37d527 SHA1: 878f8f86e6b2ffe9b341564450549a3a6c508ab8 SHA256: d18733fa5312489c963d8559a539469ecaac5c5b3c504564c0941d7a849413b9 Description: Shared library on which recode is based Multi-Arch: same Description-md5: ab6feef275a02f91ce5607b3b2d9d7e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libref-array-dev Priority: extra Section: libdevel Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Depends: libref-array1 (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libref-array-dev_0.3.0.1-4_amd64.deb Size: 7396 MD5sum: bc3d431cc89f9c07eb2e56dd22c03757 SHA1: 3a27f1d5474f03af23de3d41164d8110f7529c8f SHA256: 958879c0a3d76be397bd05a4a3bd0094de5bf23b87c74fc0ba38a76159eb73e2 Description: Development files for refcounted array for C Homepage: https://fedorahosted.org/sssd/ Description-md5: fcdbe3361423448079893230e54b561d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libref-array1 Priority: extra Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: ding-libs Version: 0.3.0.1-4 Replaces: libref-array Provides: libref-array Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: libref-array Filename: pool/main/d/ding-libs/libref-array1_0.3.0.1-4_amd64.deb Size: 7072 MD5sum: 21a13ed3275e457d20d036f821d74844 SHA1: a127a77e6e0b578587cdda11aa8b1b29b52ad964 SHA256: c3c4e6e4161b17c499fcf44c0ef177d42b17e54bab1ed31d6e6183c691ee1ca6 Description: refcounted array for C Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 3fbe4c38877a2ec50e3e6b1b5cc1678a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libregexp-common-perl Priority: optional Section: perl Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2013031301-1 Depends: perl Filename: pool/main/libr/libregexp-common-perl/libregexp-common-perl_2013031301-1_all.deb Size: 167072 MD5sum: 1dc6444748e8a74b89a59f0c42318bc3 SHA1: 17034d13556d1592ec5f71f96c3f31d66074e105 SHA256: f4c30e9b054f7723fe2f5618c0dc606c54995514ac5adc73d42316b45d8207cf Description: module with common regular expressions Homepage: https://metacpan.org/release/Regexp-Common/ Description-md5: 3db997253657fa3b02465e8a8eb32b43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libregexp-java Priority: optional Section: libs Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.5-3build1 Filename: pool/main/libr/libregexp-java/libregexp-java_1.5-3build1_all.deb Size: 35146 MD5sum: 393a81fad9431954e49ba2e2af242038 SHA1: 7df117328d90194e4b3f02a6e1ad9084eab619ea SHA256: 3fcc9d2914efd5b63d3564b2673bfd3974d71afb974e559b6b6ab42c2d5e00d5 Description: Regular expression library for Java Homepage: http://jakarta.apache.org/regexp/ Description-md5: b1141233204ba0843794bf8c71c5504d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libregexp-java-doc Priority: optional Section: java Installed-Size: 687 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libregexp-java Version: 1.5-3build1 Filename: pool/main/libr/libregexp-java/libregexp-java-doc_1.5-3build1_all.deb Size: 75608 MD5sum: 013341ed29bfe406aa3a786c5b2ac37a SHA1: da1f2ef428ca6e8d33f525525412b55d74f91312 SHA256: a9fe6f1ad5311ce378cee7954e90a34f6745d947e6d3b155bdcade186eed8d34 Description: Documentation for the Regular expression library Homepage: http://jakarta.apache.org/regexp/ Description-md5: 9139de802e5cd5b0dd71ef1b82eff7ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreiser4-dev Priority: optional Section: libdevel Installed-Size: 1088 Maintainer: Ubuntu Developers Original-Maintainer: Felix Zielcke Architecture: amd64 Source: reiser4progs Version: 1.0.7-6.3fakesync2 Depends: libc6-dev | libc-dev, libaal-dev (>= 1.0.4-1), uuid-dev, libreadline-gplv2-dev, libncurses5-dev Filename: pool/main/r/reiser4progs/libreiser4-dev_1.0.7-6.3fakesync2_amd64.deb Size: 273816 MD5sum: 0dd56820d11a1a3b19ebeb9bc9c3d69e SHA1: 43209602304fe12f8b748c0f926137bfc3227224 SHA256: a823e6708f882ffa4fec95a40786401095db27539ab0f0b3d3b6bf3f82cbd9d6 Description: Reiser4's filesystem access and manipulation library Description-md5: 93fbf18208c9735e13c1454ac47cdba1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librelp-dev Priority: optional Section: libdevel Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: amd64 Source: librelp Version: 1.2.2-2ubuntu1 Depends: librelp0 (= 1.2.2-2ubuntu1) Filename: pool/main/libr/librelp/librelp-dev_1.2.2-2ubuntu1_amd64.deb Size: 38310 MD5sum: b6826aa94ac6b8f4208be15a763a5cc4 SHA1: 38ac752e7c4d9c5bf9085a6e08c3fbc2328a3a56 SHA256: 4350dd22195bcbb6ea7a6abc6badf219e2aab3cffd1aa5cd82524c7831d400bf Description: Reliable Event Logging Protocol (RELP) library - development files Multi-Arch: same Homepage: http://www.librelp.com/ Description-md5: 42c1d0b6aeb68e5586482de4937a9e25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librelp0 Priority: optional Section: libs Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: amd64 Source: librelp Version: 1.2.2-2ubuntu1 Depends: libc6 (>= 2.17), libgnutls26 (>= 2.12.17-0) Pre-Depends: multiarch-support Filename: pool/main/libr/librelp/librelp0_1.2.2-2ubuntu1_amd64.deb Size: 29302 MD5sum: c2fdac94ebbe98990641ccb0a8bb0a5d SHA1: b29eb931767ff90dcc9fa509e4e8d345d0d51e08 SHA256: 26cc4b8cc21ecf5284d424f297608b62e39bfe3080e5f8a0beec1b68a57f88b9 Description: Reliable Event Logging Protocol (RELP) library Multi-Arch: same Homepage: http://www.librelp.com/ Description-md5: e173389330cd3d94c1a9439e2181decf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-avmedia-backend-gstreamer Priority: optional Section: misc Installed-Size: 235 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-core (<< 1:4.2~) Provides: libreoffice-avmedia-backend Depends: libreoffice-core, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.15.0), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libstdc++6 (>= 4.1.1), uno-libs3 (>= 4.0.0~alpha), ure Filename: pool/main/libr/libreoffice/libreoffice-avmedia-backend-gstreamer_4.2.3~rc3-0ubuntu2_amd64.deb Size: 36902 MD5sum: 170d3730cab8be96248979773df9805d SHA1: 9da5b9a6212b35314dfa9e2e8e764d8c387c54d0 SHA256: e0e1116980d6c32206afb40a32e10315111a965e7c109ffb308e8e5cb5b8569d Description: GStreamer backend for LibreOffice Homepage: http://www.libreoffice.org Description-md5: 00acf24d5e6556c99a72938a8431d5d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-base Priority: optional Section: database Installed-Size: 5542 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-base-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-base-drivers (= 1:4.2.3~rc3-0ubuntu2), libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure Recommends: libreoffice-writer, libreoffice-java-common (>= 1:4.2.3~rc3~), default-jre | gcj-jre | openjdk-7-jre | openjdk-6-jre | sun-java5-jre | sun-java6-jre | java5-runtime | jre Suggests: libreoffice-gcj, libreoffice-report-builder, unixodbc Filename: pool/main/libr/libreoffice/libreoffice-base_4.2.3~rc3-0ubuntu2_amd64.deb Size: 1412998 MD5sum: f8997814761e516100987f07a09e6e06 SHA1: cc15bd38b5f2e44b2cb741fdd0938a25eee00b9f SHA256: 78a28599926be23256cd30cedeea4a3f596cd672b7600b9c20c2cb08bc186ffa Description: office productivity suite -- database Homepage: http://www.libreoffice.org Description-md5: 5529fff5c628ca6b70284749063daea4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libreoffice-base-core Priority: optional Section: editors Installed-Size: 2817 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-base (<< 1:3.5.3~rc2-1) Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure Suggests: libreoffice-base Filename: pool/main/libr/libreoffice/libreoffice-base-core_4.2.3~rc3-0ubuntu2_amd64.deb Size: 731310 MD5sum: ff57e6d787c9ff3d4b6f03839ec0f093 SHA1: fdca20a538d0b5962562dfe45ba37c97258aa7fb SHA256: 0e3f968b81061e18d488998e7cfd15b0626adeb489bd73987c3e161ed811dbc8 Description: office productivity suite -- shared library Homepage: http://www.libreoffice.org Description-md5: bdc77adc4efdbfc7ebc7ed765e9d40cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-base-drivers Priority: optional Section: database Installed-Size: 2655 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-base (<< 1:4.2~), libreoffice-core (<< 1:4.2~) Depends: libreoffice-core, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure Recommends: libreoffice-sdbc-firebird, libreoffice-sdbc-hsqldb Suggests: libjtds-java, libreoffice-mysql-connector | libmyodbc | libmysql-java, libreoffice-sdbc-postgresql | odbc-postgresql | libpg-java, libsqliteodbc | tdsodbc | mdbtools Filename: pool/main/libr/libreoffice/libreoffice-base-drivers_4.2.3~rc3-0ubuntu2_amd64.deb Size: 526564 MD5sum: f03dbf2ef7bee26eef3d874d4ba99742 SHA1: 5a350ef618c0b748014ae49974c22fe1c05a4b20 SHA256: 427e6922dfeaebbfc15d8c13a514b52efa87ccb38f56afd1233024f6cb347911 Description: Database connectvity drivers for LibreOffice Homepage: http://www.libreoffice.org Description-md5: eb144ed96acddec2ee979a372e584563 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libreoffice-calc Priority: optional Section: editors Installed-Size: 21855 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-base-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), liborcus-0.6-0, libstdc++6 (>= 4.6), libxml2 (>= 2.7.4), uno-libs3 (>= 4.2.0~rc1), ure Suggests: libopencl1 Filename: pool/main/libr/libreoffice/libreoffice-calc_4.2.3~rc3-0ubuntu2_amd64.deb Size: 5896600 MD5sum: a1e5d005ae99eb32a078cf924d5d5d54 SHA1: 18749b7b98ea0943cabf5f0cda69bb44c7a25a91 SHA256: 075c19167a5e6ab5ec3508905dd23f103c0fe7fe180273a7a6001d242432f53d Description: office productivity suite -- spreadsheet Homepage: http://www.libreoffice.org Description-md5: e809bbd7f91acfd0d9ad0f8fd5ed86a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-common Priority: optional Section: editors Installed-Size: 74016 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-emailmerge (<< 1:4.0.2~rc1), openoffice.org-common (<< 1:3.3.0~) Provides: libreoffice-l10n-en-us Depends: libreoffice-style-default | libreoffice-style, ure Pre-Depends: dpkg (>= 1.15.7.2~) Recommends: xfonts-mathml, python3-uno (>= 4.0~), libexttextcat-data Suggests: libreoffice-style-crystal, libreoffice-style-hicontrast, libreoffice-style-human, libreoffice-style-oxygen, libreoffice-style-sifr, libreoffice-style-tango Conflicts: broffice, libreoffice-filter-mobiledev, libreoffice-l10n-3.5, libreoffice-l10n-3.6 Breaks: libreoffice-core (>= 1:4.3~), libreoffice-core (<< 1:4.2~), libreoffice-emailmerge (<< 1:4.0.2~rc1), libreoffice-mysql-connector (<< 1.0.1+LibO3.6.5-1), libreoffice-pdfimport (<< 1.0.6), libreoffice-presentation-minimizer (<< 1.0.4), libreoffice-presenter-console (<< 1.1.1), libreoffice-report-builder (<< 1.2.3), libreoffice-script-provider-bsh (<< 1:3.6~), libreoffice-script-provider-js (<< 1:3.6~), libreoffice-script-provider-python (<< 1:3.6~), libreoffice-style-andromeda (<< 1:4.2~), libreoffice-style-crystal (>= 1:4.3~), libreoffice-style-crystal (<< 1:4.2~), libreoffice-style-galaxy (>= 1:4.3~), libreoffice-style-galaxy (<< 1:4.2~), libreoffice-style-hicontrast (>= 1:4.3~), libreoffice-style-hicontrast (<< 1:4.2~), libreoffice-style-human (>= 1:4.3~), libreoffice-style-human (<< 1:4.2~), libreoffice-style-oxygen (>= 1:4.3~), libreoffice-style-oxygen (<< 1:4.2~), libreoffice-style-tango (>= 1:4.3~), libreoffice-style-tango (<< 1:4.2~), libreoffice-wiki-publisher (<< 1.1.2), libreoffice-writer2latex (<< 1.0.2-9), libreoffice-writer2xhtml (<< 1.0.2-9), libtextcat-data (<< 2.2-8), openoffice.org-common (<< 1:3.3.0~), zotero-libreoffice-integration (<= 3.0.11.1-26-g08fb709-1) Filename: pool/main/libr/libreoffice/libreoffice-common_4.2.3~rc3-0ubuntu2_all.deb Size: 19683192 MD5sum: a2a0c5682afae2f30736f025a290f995 SHA1: 85fbdb92c3c282e07170478e6014b30004caf027 SHA256: 021935ccaa6a1e742acdc06ed566db147a0513bc15315ca27f7b5e58e5534bb5 Description: office productivity suite -- arch-independent files Homepage: http://www.libreoffice.org Description-md5: 304f06193ef91a740410572ff1db7174 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-core Priority: optional Section: editors Installed-Size: 113632 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-calc (<< 1:3.3.2-5), libreoffice-common (<= 1:4.0.0~beta2-1), uno-libs3 (<< 1:3.6.1-2), ure (<< 1:3.6.1-2) Provides: libreoffice-bundled Depends: fontconfig, fonts-opensymbol, libreoffice-common (>> 1:4.2.3~rc3), ure (>= 4.2~), lp-solve (>= 5.5.0.13-5+b1), gconf-service, libatk1.0-0 (>= 1.12.4), libboost-date-time1.54.0, libc6 (>= 2.16), libcairo2 (>= 1.2.4), libclucene-contribs1 (>= 2.3.3.4), libclucene-core1 (>= 2.3.3.4), libcmis-0.4-4 (>= 0.4.0), libcups2 (>= 1.4.0), libcurl3-gnutls (>= 7.16.2), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libexpat1 (>= 2.0.1), libexttextcat-2.0-0 (>= 2.2-8), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.5), libgcc1 (>= 1:4.1.1), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.15.0), libglu1-mesa | libglu1, libgraphite2-3 (>= 1.2.2), libgtk2.0-0 (>= 2.24.0), libharfbuzz-icu0 (>= 0.9.18), libharfbuzz0b (>= 0.9.18), libhunspell-1.3-0, libhyphen0 (>= 2.7.1), libice6 (>= 1:1.0.0), libicu52 (>= 52~m1-1~), libjpeg8 (>= 8c), liblangtag1 (>= 0.4.0), liblcms2-2 (>= 2.2+git20110628), libldap-2.4-2 (>= 2.4.7), libmythes-1.2-0, libneon27-gnutls, libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpangoft2-1.0-0 (>= 1.14.0), libpng12-0 (>= 1.2.13-4), libsm6, libstdc++6 (>= 4.6), libx11-6, libxext6, libxinerama1, libxml2 (>= 2.7.4), libxrandr2, libxrender1, libxslt1.1 (>= 1.1.25), libxt6, uno-libs3 (>= 4.2.0~rc1), zlib1g (>= 1:1.1.4), librdf0 (>= 1.0.17) Conflicts: cacao-oj6-jre, libreoffice-filter-binfilter, libreoffice-unbundled Breaks: cli-uno-bridge (<< 1:3.0.0~dev300m22), hunspell-ar (<< 0.0.0+20080110-1.1), hunspell-da (<< 1:3.1.0-3), hunspell-de-at (<< 20071211-2), hunspell-de-ch (<< 20071211-2), hunspell-de-de (<< 20071211-2), hunspell-de-med (<< 20090825-1), hunspell-en-ca (<< 1:3.1.0-3), hunspell-en-us (<< 20070829-3), hunspell-fr (<< 1:3.1.0-3), hunspell-gl-es (<< 2.2a-6), hunspell-hu (<< 1:3.1.0-3), hunspell-ko (<< 0.3.3-1), hunspell-ne (<< 1:3.1.0-3), hunspell-se (<< 1.0~beta6.20081222-1.1), hunspell-sh (<< 1:3.1.0-3), hunspell-sr (<< 1:3.1.0-3), hunspell-uz (<< 0.6-3.1), hunspell-vi (<< 1:3.1.0-3), libcairo2 (= 1.4.8-1), libicu38 (= 3.8~d01-1), libreoffice-base (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-calc (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-common (<< 1:3.6.1~rc1), libreoffice-dev (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-draw (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-evolution (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-gnome (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-gtk (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-impress (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-kab (<< 1:3.4.1~), libreoffice-kde (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-officebean (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-presentation-minimizer (<< 1:4.2~), libreoffice-sdbc-postgresql (<< 0.8.1~), libreoffice-style-andromeda (<< 1:3.3.0-1), libreoffice-style-crystal (<< 1:3.3.0-1), libreoffice-style-galaxy (<< 1:3.3.0-1), libreoffice-style-hicontrast (<< 1:3.3.0-1), libreoffice-style-oxygen (<< 1:3.3.0-1), libreoffice-style-tango (<< 1:3.3.0-1), libreoffice-writer (<< 1:4.2.3~rc3-0ubuntu2), mozilla-libreoffice (<< 1:3.5.0~beta~), mozilla-plugin-vlc (<< 1.0), myspell-af (<< 1:3.1.0-3), myspell-ca (<< 0.6-8), myspell-cs-cz (<< 20040229-4.1), myspell-da (<< 1.6.18-1.1), myspell-de-at (<< 20071211-2), myspell-de-ch (<< 20071211-2), myspell-de-de (<< 20071211-2), myspell-de-de-oldspell (<< 1:2-25.1), myspell-el-gr (<< 0.3-1.1), myspell-en-au (<< 2.1-5), myspell-en-gb (<< 1:3.1.0-3), myspell-en-us (<< 1:3.1.0-3), myspell-en-za (<< 1:3.1.0-3), myspell-eo (<< 2.1.2000.02.25-41), myspell-es (<< 1.10-7), myspell-et (<< 1:20030606-12.1), myspell-fa (<< 0.20070816-2), myspell-fi (<< 0.7-17.2), myspell-fo (<< 0.2.36-3), myspell-fr (<< 1.4-25), myspell-fr-gut (<< 1:1.0-26.1), myspell-ga (<< 2.0-19), myspell-gd (<< 0.50-7), myspell-gv (<< 0.50-8), myspell-hr (<< 20060617-2), myspell-hu (<< 0.99.4-1.2), myspell-hy (<< 0.10.1-1.1), myspell-it (<< 1:3.1.0-3), myspell-ku (<< 0.20.0-1.1), myspell-lv (<< 0.7.3-3.1), myspell-nb (<< 2.0.10-3.1), myspell-ne (<< 1.0-4.1), myspell-nl (<< 1:1.10-3), myspell-nn (<< 2.0.10-3.1), myspell-pl (<< 20090830-1), myspell-pt-br (<< 2009.03.30-1.1), myspell-pt-pt (<< 20090309-1.1), myspell-ru (<< 0.99g5-8.1), myspell-sk (<< 0.5.5a-2.1), myspell-sv-se (<< 1.3.8-6-2.2), myspell-sw (<< 1:3.1.0-3), myspell-th (<< 1:3.1.0-3), myspell-tl (<< 0.4-0-5) Filename: pool/main/libr/libreoffice/libreoffice-core_4.2.3~rc3-0ubuntu2_amd64.deb Size: 27858152 MD5sum: 38f9e8bf8c4ed5476ad0bc0086c8d5e5 SHA1: 16d22e7609554ea50c10c0445b16fc214bc58c9c SHA256: 8c49720da60d3fc73d42f41f0948989a63a0a38f510a722feab02f38069a78ec Description: office productivity suite -- arch-dependent files Homepage: http://www.libreoffice.org Description-md5: 5464d9229de42a41fda16d9993e11570 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-dbg Priority: extra Section: debug Installed-Size: 3788449 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-dev (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-gnome (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-kde (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-calc (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-base-core (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-base (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-impress (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-draw (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-writer (= 1:4.2.3~rc3-0ubuntu2) | python3-uno (= 1:4.2.3~rc3-0ubuntu2) | browser-plugin-libreoffice (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-ogltrans (= 1:4.2.3~rc3-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6) Recommends: ure-dbg Suggests: libxslt1-dbg, libssl1.0.0-dbg, libc6-dbg, libatk1.0-dbg, libglib2.0-0-dbg, libgnomevfs2-0-dbg, libstdc++6-4.8-dbg, libx11-6-dbg, libxext6-dbg, libxaw7-dbg, libxml2-dbg, libgtk2.0-0-dbg, libxau6-dbg, libice6-dbg, libsm6-dbg, libxinerama1-dbg, libfontconfig1-dbg, libhunspell-1.3-0-dbg, libcurl4-dbg, python3-dbg, libnss3-1d-dbg, kdelibs5-dbg, libqt4-dbg, libsuitesparse-dbg, libgstreamer1.0-0-dbg, libneon27-gnutls-dbg Filename: pool/main/libr/libreoffice/libreoffice-dbg_4.2.3~rc3-0ubuntu2_amd64.deb Size: 869222152 MD5sum: c3bbe7d6aba189269996b4ac2ca1c669 SHA1: b98415367367b02827428a6614fca46c738c570f SHA256: 1ae1723a6117567a6ec0241fb294af8c4992fa990741d056431748eb47b6a020 Description: office productivity suite -- debug symbols Homepage: http://www.libreoffice.org Description-md5: ed5c60a9a4c74bcd668cf6fd30dfb595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-dev Priority: optional Section: devel Installed-Size: 15795 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-common (<< 1:4.1.0~beta1), libreoffice-core (<< 1:4.1.0~beta1) Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), uno-libs3 (>= 4.1.0~alpha), cpp-4.7, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), ure Recommends: g++, libreoffice-java-common (>= 1:4.2.3~rc3~), default-jre | gcj-jre | openjdk-7-jre | openjdk-6-jre | sun-java5-jre | sun-java6-jre | java5-runtime | jre Suggests: libmythes-dev, libreoffice-dev-doc Filename: pool/main/libr/libreoffice/libreoffice-dev_4.2.3~rc3-0ubuntu2_amd64.deb Size: 1902336 MD5sum: dda4f5ea377d0660cbc5bc339eaf0033 SHA1: ab12917768f249032a5ef9075c0bdcf07214e6e6 SHA256: bc58220696f0d295f926c1c2ad1be9134acdb0d085b262cacd99729abc6fdf31 Description: office productivity suite -- SDK Homepage: http://www.libreoffice.org Description-md5: 874c9d19105e4bbaac7d8229ccc0ce98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-dev-doc Priority: optional Section: doc Installed-Size: 357071 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Recommends: libreoffice-dev (= 1:4.2.3~rc3-0ubuntu2), www-browser Suggests: libreoffice-dtd-officedocument1.0 Conflicts: openoffice.org-dev-doc Filename: pool/main/libr/libreoffice/libreoffice-dev-doc_4.2.3~rc3-0ubuntu2_all.deb Size: 19987948 MD5sum: f217c227b2c814a8ddb36142838ba567 SHA1: 5660953d61bfdb7d82716e3c167e1647b05c84a9 SHA256: da2d9acdc0ce90e2bff2032b020ecd8a761be59c8f907c21968c2fa914d61263 Description: office productivity suite -- SDK documentation Homepage: http://www.libreoffice.org Description-md5: 10cfe2d6a33f985db93750ebec7e5ea5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-draw Priority: optional Section: editors Installed-Size: 9383 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.14), libcdr-0.0-0, libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.15.0), libmspub-0.0-0, libstdc++6 (>= 4.6), libvisio-0.0-0 (>= 0.0.18), libwpd-0.9-9, libwpg-0.2-2, uno-libs3 (>= 4.1.0~alpha), ure, zlib1g (>= 1:1.1.4) Recommends: libreoffice-pdfimport Filename: pool/main/libr/libreoffice/libreoffice-draw_4.2.3~rc3-0ubuntu2_amd64.deb Size: 2417644 MD5sum: 9569259f15a282b0d4b5056135a13230 SHA1: 5f928324889261b5b9af03427e46e237c7a1e400 SHA256: 7cd70de87be7ebae28fd7d9635bff0064ce73c779ded59696c262bacaed7aefc Description: office productivity suite -- drawing Homepage: http://www.libreoffice.org Description-md5: 48e37fe8495cb12961b923bb0b0f970f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-gnome Priority: optional Section: gnome Installed-Size: 446 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-core (<< 1:3.9999) Provides: libreoffice-gtk-gnome Depends: gconf2, libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-gtk, gconf-service, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.37.3), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure Suggests: libreoffice-evolution Conflicts: libreoffice-core (<< 1:3.9999) Filename: pool/main/libr/libreoffice/libreoffice-gnome_4.2.3~rc3-0ubuntu2_amd64.deb Size: 90284 MD5sum: e41480188c96f71d875ad8894994c6c0 SHA1: c3648d91404ef8d2a76a6711e2e55812059dbe24 SHA256: f56ffddf48b8ea4d332b5f078861a7d3ca66738373af500475f3ada82168d37f Description: office productivity suite -- GNOME integration Enhances: libreoffice Homepage: http://www.libreoffice.org Description-md5: 1fa5593ecfa3f68a3f69bae7e3ab2ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-gtk Priority: optional Section: gnome Installed-Size: 826 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: lo-menubar Provides: lo-menubar Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libdbus-glib-1-2 (>= 0.78), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.14.0), libstdc++6 (>= 4.6), libx11-6, uno-libs3 (>= 4.1.0~alpha), ure Recommends: libreoffice-style-human | libreoffice-style-tango Conflicts: libgtk2.0-0 (= 2.12.10-1), lo-menubar Filename: pool/main/libr/libreoffice/libreoffice-gtk_4.2.3~rc3-0ubuntu2_amd64.deb Size: 221936 MD5sum: d5feb8644ae32b3f7e25fdfc6dd38b45 SHA1: eeb640bd36eba65f14af6ae8a9a08951f09c27d5 SHA256: 6dd0d61e58f465901d6d98bf1f69183723104e444ff3e386c0f503bf2b1dcdb5 Description: office productivity suite -- GTK+ integration Enhances: libreoffice Homepage: http://www.libreoffice.org Description-md5: 4df1d08b80206db36d74b0f06ad96b28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-help-ca Priority: optional Section: doc Installed-Size: 54612 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-ca, libreoffice-writer | language-support-translations-ca Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ca Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-ca_4.2.3~rc3-0ubuntu1_all.deb Size: 5355728 MD5sum: 93798661da44061507321544e00dad07 SHA1: 6b8eead989473f3d453b1cd240f5eaacd2cbbf76 SHA256: ce2a0b2d81d6d59171023d079bfdf5733f408dc6b660a9eec3e4e87617a18dfd Description: office productivity suite -- Catalan help Homepage: http://www.libreoffice.org Description-md5: d6b57c84305eb2009f0f7cca49b022f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-cs Priority: optional Section: doc Installed-Size: 26153 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-cs, libreoffice-writer | language-support-translations-cs Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-cs Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-cs_4.2.3~rc3-0ubuntu1_all.deb Size: 2882410 MD5sum: 44a1c708885a174ee4cbb5a0f62df23d SHA1: bb64c14bf3b5ec27afd6d5d5609198317adcd39a SHA256: 1e4ed841507ae93c0266081907fef506b498a9c1d2cbe3f9009713801097e4e6 Description: office productivity suite -- Czech help Homepage: http://www.libreoffice.org Description-md5: ac7fea7c0a197c7b356a8223d94347ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-da Priority: optional Section: doc Installed-Size: 26332 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-da, libreoffice-writer | language-support-translations-da Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-da Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-da_4.2.3~rc3-0ubuntu1_all.deb Size: 2883162 MD5sum: dfc14ff40896fa5a3103cf9d5fab3923 SHA1: 578ffb9ed38760af5bcc8bbe764d7155cf6167d9 SHA256: 532ebd85f01222b9cd1afc30f2cba7a95197b8aa3a192b697718481a5077682a Description: office productivity suite -- Danish help Homepage: http://www.libreoffice.org Description-md5: 2eeb5c9d61409db9416d1bf688280d6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-de Priority: optional Section: doc Installed-Size: 27820 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-de, libreoffice-writer | language-support-translations-de Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-de Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-de_4.2.3~rc3-0ubuntu1_all.deb Size: 3057970 MD5sum: 98be67616321ebfff951642e121999f5 SHA1: 6c1508e78685be763b4ed35e25f7db3d51f2bd10 SHA256: 8e3ec1bad06ce99b0e891e4819d6a0c30bd1147703c80b2929281c59a24cfa17 Description: office productivity suite -- German help Homepage: http://www.libreoffice.org Description-md5: 446e337ad4cf957e780c2996c41e0163 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-dz Priority: optional Section: doc Installed-Size: 44136 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-dz, libreoffice-writer | language-support-translations-dz Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-dz Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-dz_4.2.3~rc3-0ubuntu1_all.deb Size: 4879600 MD5sum: f677d01d9c908f0d8b12a592bdbf522d SHA1: c30ca12840a9a32a89862b66ea3a646090d1f245 SHA256: f3e04ac688855a908535e06a8098545f06831d67600e31ad446f6260b8cee623 Description: office productivity suite -- Dzongkha help Homepage: http://www.libreoffice.org Description-md5: 831cde2511d5df0e50fca4f9545adb3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-el Priority: optional Section: doc Installed-Size: 35412 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-el, libreoffice-writer | language-support-translations-el Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-el Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-el_4.2.3~rc3-0ubuntu1_all.deb Size: 3385854 MD5sum: e2a23e1feaf93be098a2ec8e2393af34 SHA1: a6287e381b8e3ed902eaf6a264d51f1b80c4b4c3 SHA256: ae8719cf3fa668913cfaafe1a98365069c007511ed30415233f9e5edc99ad61a Description: office productivity suite -- Greek help Homepage: http://www.libreoffice.org Description-md5: 27db60f82a9a1414b51ea5e553a7b9e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-en-gb Priority: optional Section: doc Installed-Size: 24632 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-en-gb, libreoffice-writer | language-support-translations-en Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-en Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-en-gb_4.2.3~rc3-0ubuntu1_all.deb Size: 2416056 MD5sum: a8c080aa23b9753c965f2f7cfff55087 SHA1: 4137ec8fc140cef2cf173d8287a6dddc3c795836 SHA256: 29a469056ee8c43b494092c7cf3ceaa94ed5f88a99b043502d39356a669150f7 Description: office productivity suite -- English_british help Homepage: http://www.libreoffice.org Description-md5: 6843fecfa30da7d8c3e384c4f92747ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-help-en-us Priority: optional Section: doc Installed-Size: 24648 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-en-us, libreoffice-writer | language-support-translations-en Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-en Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-en-us_4.2.3~rc3-0ubuntu1_all.deb Size: 2446448 MD5sum: 7eb9fa90070403d2d40528954c5c714f SHA1: cf102f263f6be546069e4e6c1f8db86f557d2913 SHA256: 8e1b8b0b847d4284296d1244d5686aa078c9613ad747e158b736a39c66f72df2 Description: office productivity suite -- English_american help Homepage: http://www.libreoffice.org Description-md5: 887d1c3089d4c0e44d0b26ed6ffd9193 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, edubuntu-live, ubuntu-gnome-live Package: libreoffice-help-es Priority: optional Section: doc Installed-Size: 27521 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-es, libreoffice-writer | language-support-translations-es Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-es Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-es_4.2.3~rc3-0ubuntu1_all.deb Size: 2985468 MD5sum: 5f05f28a1daca6434eab280d4dc7d623 SHA1: 8dc9ee4bfc4409e8fdebe9b9845565d9ded22ca7 SHA256: a3bab901d532e002f0ad1a6a6331f8f84bb174f3575ded505f10633c60a2a682 Description: office productivity suite -- Spanish help Homepage: http://www.libreoffice.org Description-md5: 3b17681533c31b51304225ad41bc4cc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-et Priority: optional Section: doc Installed-Size: 25977 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-et, libreoffice-writer | language-support-translations-et Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-et Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-et_4.2.3~rc3-0ubuntu1_all.deb Size: 2948872 MD5sum: 890568f3fb7f4409bc5133a62dc2ca59 SHA1: ddd30c10e7b3d5b7d646ba56931a99cccfe9abd1 SHA256: 74af552a6b12caf6eb4a52283984998b5064de2b1cfd8b893ec5122db97ac177 Description: office productivity suite -- Estonian help Homepage: http://www.libreoffice.org Description-md5: ee9a1b4e728ba5dd900173bfee1a731c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-eu Priority: optional Section: doc Installed-Size: 26563 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-eu, libreoffice-writer | language-support-translations-eu Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-eu Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-eu_4.2.3~rc3-0ubuntu1_all.deb Size: 2944442 MD5sum: b6eda8943cab2ad2a5c495dd31060c36 SHA1: 5b7003b1ae1c2ed04a6bbb8a607e4171631eff7b SHA256: aca80fe0aee1d1f49a0ba481a2f78e013a3ee0dd51df25283553accc134143b9 Description: office productivity suite -- Basque help Homepage: http://www.libreoffice.org Description-md5: 173b0972f7f0a78d8c52cb5f5045e57e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-fi Priority: optional Section: doc Installed-Size: 26994 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-fi, libreoffice-writer | language-support-translations-fi Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-fi Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-fi_4.2.3~rc3-0ubuntu1_all.deb Size: 3066192 MD5sum: ff490844d373c6f8446e8766a896af9f SHA1: 9f81f20f36a155fe3ff9cb53f98a0bb3332e8bb7 SHA256: 0ec66e4e150c2825470af885fa1d58e1fbcc847480353811a2bce363cbfc421e Description: office productivity suite -- Finnish help Homepage: http://www.libreoffice.org Description-md5: 07a9aa483488050f6541179d8987d975 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-fr Priority: optional Section: doc Installed-Size: 28140 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-fr, libreoffice-writer | language-support-translations-fr Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-fr Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-fr_4.2.3~rc3-0ubuntu1_all.deb Size: 3003514 MD5sum: f93a33071809beb2108c004bcb871ddb SHA1: 5eaee5fe93758af439561bceaf10a6dae94d1403 SHA256: 44a1bb3ab3d88fe48954f1b76aec1d1f69e87a9f3575322c93e3945d5b5d6c54 Description: office productivity suite -- French help Homepage: http://www.libreoffice.org Description-md5: 3f39cd0f487b1234b3b028700174aea6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-gl Priority: optional Section: doc Installed-Size: 26276 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-gl, libreoffice-writer | language-support-translations-gl Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-gl Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-gl_4.2.3~rc3-0ubuntu1_all.deb Size: 2850244 MD5sum: b50c384879f01334186b535219adfd7d SHA1: e0a2c9ca278b35163fe4ef920859272cfce5cec9 SHA256: 051d0403bacd371052b9c842b5f8cd6bf7a0dd0b2f1388f29d99bb7b3faf8b32 Description: office productivity suite -- Galician help Homepage: http://www.libreoffice.org Description-md5: 373bae22071a7f0286ed9ec163a95c9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-hi Priority: optional Section: doc Installed-Size: 27013 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-hi, libreoffice-writer | language-support-translations-hi Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-hi Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-hi_4.2.3~rc3-0ubuntu1_all.deb Size: 2734400 MD5sum: 41d0e3c50fdb75d8851ce4fd4af0e036 SHA1: 9231835e99a5ae7edc6139ece2fdacac9b8f6a3e SHA256: 2195f071a86a228c362afa00feb1e5ec31c30cccbdd601a499243aded082f332 Description: office productivity suite -- Hindi help Homepage: http://www.libreoffice.org Description-md5: 2086330d67240d859330eccd8a050d0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-hu Priority: optional Section: doc Installed-Size: 27851 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-hu, libreoffice-writer | language-support-translations-hu Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-hu Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-hu_4.2.3~rc3-0ubuntu1_all.deb Size: 3090542 MD5sum: cd6d2b3ecde43cb856cad6b98da0f2ce SHA1: c2d0ccf0bb4ef57f6796d84db5b2d2689bfc9410 SHA256: 13c2b1dc0773e85dfc022c2bf1b33e548a90e15d87dca2a4eb9bee66191a55e4 Description: office productivity suite -- Hungarian help Homepage: http://www.libreoffice.org Description-md5: 61ae09c1e4ead0c3a139c61b39f763a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-it Priority: optional Section: doc Installed-Size: 27513 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-it, libreoffice-writer | language-support-translations-it Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-it Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-it_4.2.3~rc3-0ubuntu1_all.deb Size: 2943092 MD5sum: 5ec15450134328e3e2bccc9c4c977099 SHA1: 33a2f651644d8a923f37fae79b9205b6bbbea47d SHA256: ca674b07d124c4b249f309c6e9e66ab36bfcadac520259b194f587950754781b Description: office productivity suite -- Italian help Homepage: http://www.libreoffice.org Description-md5: 68017996bf772a95a5138d70db294b80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-ja Priority: optional Section: doc Installed-Size: 35849 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-ja, libreoffice-writer | language-support-translations-ja Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ja Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-ja_4.2.3~rc3-0ubuntu1_all.deb Size: 5147484 MD5sum: 6ce5a9a47ad4e65785b3f18073734d1b SHA1: a109fdd666c5255674b6429e3c2c20659f93fbff SHA256: 2ace133a392bc7fe0db4e1748a54558d0b2b44c014ed48b95f11a43095254d16 Description: office productivity suite -- Japanese help Homepage: http://www.libreoffice.org Description-md5: 202a13f334a5b4d912a0c725a68309d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-km Priority: optional Section: doc Installed-Size: 43228 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-km, libreoffice-writer | language-support-translations-km Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-km Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-km_4.2.3~rc3-0ubuntu1_all.deb Size: 4242586 MD5sum: e7fbdcce4b4c5ed17257a029c2fc3ef3 SHA1: b877d458fe013e9acbc5c2d94b3feabb8efca805 SHA256: 497f63333b44697121c50e260b71470808402f78deb7b9a670c507691e7fe3a3 Description: office productivity suite -- Khmer help Homepage: http://www.libreoffice.org Description-md5: 85075447fb80af12955c4e01c4a316c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-ko Priority: optional Section: doc Installed-Size: 29069 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-ko, libreoffice-writer | language-support-translations-ko Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ko Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-ko_4.2.3~rc3-0ubuntu1_all.deb Size: 3450002 MD5sum: 9171002b0fa2d1a43713fa12f942c635 SHA1: e74852862561971c5cfe9e7fb9d030adf4b36a12 SHA256: 18d0aca9e7fa28b3c8e737bece7629caae4347acb5965df6d968c57f78b9e26c Description: office productivity suite -- Korean help Homepage: http://www.libreoffice.org Description-md5: d879d29f7f222fa7b6ad3b86112dcbec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-nl Priority: optional Section: doc Installed-Size: 27049 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-nl, libreoffice-writer | language-support-translations-nl Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nl Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-nl_4.2.3~rc3-0ubuntu1_all.deb Size: 2897304 MD5sum: 1b9f68cb88c639b4f3ccb4b90c3c034f SHA1: 246a6a3a7ec25c05be07c34f1858b81d98c732a7 SHA256: 3331fae11d19e9877597a552537aa6b01aa6574e43f105345d4163786a6889b0 Description: office productivity suite -- Dutch help Homepage: http://www.libreoffice.org Description-md5: 39207c43a1ac830972c4637d2d15402a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-om Priority: optional Section: doc Installed-Size: 26916 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-om, libreoffice-writer | language-support-translations-om Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-om Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-om_4.2.3~rc3-0ubuntu1_all.deb Size: 3233788 MD5sum: 8b185b7386b18ca6ae09b3dafb60b65e SHA1: 512c31f5a2565e617f80dd421c436dfe10179f1d SHA256: e248b69f0afb3dbdd23dcd1fdb869e2b81cfa2c8c1066b9aaef900cdb8125acf Description: office productivity suite -- Oromo help Homepage: http://www.libreoffice.org Description-md5: 71d9bb0e518d702c88916fc4bcbd3fcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-pl Priority: optional Section: doc Installed-Size: 27093 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-pl, libreoffice-writer | language-support-translations-pl Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pl Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-pl_4.2.3~rc3-0ubuntu1_all.deb Size: 3040826 MD5sum: 977a35b0a35b4c44e677577008647156 SHA1: ec71bcbb796a42ef0b9061b2ffbe8122cbb5c4c9 SHA256: f228c39760eb9efadb349d3c440b22463edda0dd4107c33f250b80320e4854d7 Description: office productivity suite -- Polish help Homepage: http://www.libreoffice.org Description-md5: 1ecec6865a123ab7b50509708fbd986b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-pt Priority: optional Section: doc Installed-Size: 27123 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-pt, libreoffice-writer | language-support-translations-pt Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pt Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-pt_4.2.3~rc3-0ubuntu1_all.deb Size: 2834688 MD5sum: 56e42ba6c6a650f9ce9a88cee61d9dc4 SHA1: 8780b91effb69c3318b4e3797755eff5bd6967a7 SHA256: 67b1b1076336880a5ce8b30b9fe2f8ae749f1f7a963b91ac5e4956f2921385a1 Description: office productivity suite -- Portuguese help Homepage: http://www.libreoffice.org Description-md5: a995efbac2b786bee5de0e56d3a97215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-pt-br Priority: optional Section: doc Installed-Size: 27043 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-pt-br, libreoffice-writer | language-support-translations-pt Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pt Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-pt-br_4.2.3~rc3-0ubuntu1_all.deb Size: 2867292 MD5sum: 3bf92d8ee604daf6102286596a184591 SHA1: 08e71c8301c085668bcbd6883cc6be223799a764 SHA256: 97a177696a0efdce0f9ce0ff6d5d98f922a3d4ba0224a2584703727b0cb9b6eb Description: office productivity suite -- Portuguese_brazilian help Homepage: http://www.libreoffice.org Description-md5: ef429612095b5aa3dc738547af704ccb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-ru Priority: optional Section: doc Installed-Size: 32864 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-ru, libreoffice-writer | language-support-translations-ru Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ru Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-ru_4.2.3~rc3-0ubuntu1_all.deb Size: 3192040 MD5sum: 09a7825078847f5e6c6ab57190fc764e SHA1: 685065ff6b146462b9bb59839983a989462c86f5 SHA256: 210c06929c682c8c3dda7ef795328109d5a8297ed1a186b5e77b9cc9c3445f06 Description: office productivity suite -- Russian help Homepage: http://www.libreoffice.org Description-md5: 26ff97e5963f7a1cdb5ca84a587aad70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-sk Priority: optional Section: doc Installed-Size: 26001 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-sk, libreoffice-writer | language-support-translations-sk Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sk Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-sk_4.2.3~rc3-0ubuntu1_all.deb Size: 2935838 MD5sum: 6f39ff7cb1a4efd1fa7f3dc3b6cb6762 SHA1: 84aaae523268b0f48ea9241fcdfc7bc892c999dc SHA256: 15c339fac9e5da9ed5cd3ed8750edc5020104f0b7be2cc9a1f0f9b71e9539536 Description: office productivity suite -- Slovak help Homepage: http://www.libreoffice.org Description-md5: d26e95b5d6c285b41315b083c88099d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-sl Priority: optional Section: doc Installed-Size: 26350 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-sl, libreoffice-writer | language-support-translations-sl Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sl Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-sl_4.2.3~rc3-0ubuntu1_all.deb Size: 2969550 MD5sum: 0079690c0ef3996ec2615572c0376733 SHA1: 7a26975bc412f76ed4e1a8a5bd88acb91e8424d5 SHA256: edc03321ac812ce3ca3ce5af608e3fa4829dfb5eb3e58e445ed8da150a16d826 Description: office productivity suite -- Slovenian help Homepage: http://www.libreoffice.org Description-md5: 0b685103983bbccf5f421b1c697576d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-sv Priority: optional Section: doc Installed-Size: 26412 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-sv, libreoffice-writer | language-support-translations-sv Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sv Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-sv_4.2.3~rc3-0ubuntu1_all.deb Size: 2902170 MD5sum: 4ab86c38667d3d796b98c63549b18f88 SHA1: bef828198aa9eff76c09592c95dbdb2b028949b2 SHA256: a0958209b0904a0abc12cd466ebfb5a42b8c22ddefef14541fcc2955060ede6c Description: office productivity suite -- Swedish help Homepage: http://www.libreoffice.org Description-md5: 0f3bdd564c5f61573a0a4a42f4b54fbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-tr Priority: optional Section: doc Installed-Size: 27239 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-tr, libreoffice-writer | language-support-translations-tr Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-tr Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-tr_4.2.3~rc3-0ubuntu1_all.deb Size: 3131526 MD5sum: 443fd28af854650fa1b41f86018db22c SHA1: fe122588dab6e73960df797dfa117ce8716eafc1 SHA256: 2d5a978a08002a9e162f8e79c7a5238bbc5c2c12d66663c41990a484e0cc0d8a Description: office productivity suite -- Turkish help Homepage: http://www.libreoffice.org Description-md5: 0e69dac1381ab919682ec9c47de5194e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-help-vi Priority: optional Section: doc Installed-Size: 28211 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-vi, libreoffice-writer | language-support-translations-vi Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-vi Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-vi_4.2.3~rc3-0ubuntu1_all.deb Size: 2926952 MD5sum: c9b79df9e09e24a64561be1fb9787eb7 SHA1: 31dbeeb14bdd46ea5ee63b4ac8addff2a4c4865a SHA256: 7256479bde0dd190decf8c7e15d2a24464604a8d05612831e9d5c8d448259304 Description: office productivity suite -- Vietnamese help Homepage: http://www.libreoffice.org Description-md5: e38510b2855a269b0484915b84687e41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-help-zh-cn Priority: optional Section: doc Installed-Size: 29647 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-zh-cn, libreoffice-writer | language-support-translations-zh Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-zh Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-zh-cn_4.2.3~rc3-0ubuntu1_all.deb Size: 4374300 MD5sum: 1ba1b59e9621f2fdc868af9b3b17f6c7 SHA1: 9062f46af6eb590ec08f44b6679f10b4fe5ab200 SHA256: 632bd01ad2d3c4d90088aa51c6b60639ff4df5f198066653a4f057c1d70d0990 Description: office productivity suite -- Chinese_simplified help Homepage: http://www.libreoffice.org Description-md5: 2aa55f3147e53b54fe485b32ed13386f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-zh-tw Priority: optional Section: doc Installed-Size: 29869 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-zh-tw, libreoffice-writer | language-support-translations-zh Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-zh Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-zh-tw_4.2.3~rc3-0ubuntu1_all.deb Size: 4402412 MD5sum: 7c425048290c310c2b9e1f942052695f SHA1: 48a74fde457c2431c69feebf717efd3e163a0d8e SHA256: 2a0c1d4a50260ebcc72cd394e8ac2b5a06624c89063d22b73589841ee73681f4 Description: office productivity suite -- Chinese_traditional help Homepage: http://www.libreoffice.org Description-md5: ee9697d616e7c4173187caaaecafb1b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-impress Priority: optional Section: editors Installed-Size: 5322 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-draw (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libwpd-0.9-9, libxml2 (>= 2.7.4), uno-libs3 (>= 4.1.0~alpha), ure, zlib1g (>= 1:1.1.4) Recommends: libreoffice-avmedia-backend-gstreamer Suggests: bluez Filename: pool/main/libr/libreoffice/libreoffice-impress_4.2.3~rc3-0ubuntu2_amd64.deb Size: 1208178 MD5sum: 81c551e18781ad575cce94ca284e086b SHA1: a06016a094d8e72de2e9851ff92eb56a85fa4bb0 SHA256: 81f3105f55107e4c42584a0f2031730c3b054a1e60f8546f3659c92ab2bec24d Description: office productivity suite -- presentation Homepage: http://www.libreoffice.org Description-md5: 472668fa8a618a3bed701d2301185f86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-java-common Priority: optional Section: editors Installed-Size: 4399 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-common Breaks: libjaxe-java (<= 3.5-2) Filename: pool/main/libr/libreoffice/libreoffice-java-common_4.2.3~rc3-0ubuntu2_all.deb Size: 2009910 MD5sum: 66481c680abdb6ef0c79d6eee2b7e598 SHA1: 52940fbbee7f84b4ee38f9ae1a51eef0021154f3 SHA256: b1d96ecdb86d09e9b217cc1d2683c17a32f787657167caa46bcf01479088534b Description: office productivity suite -- arch-independent Java support files Homepage: http://www.libreoffice.org Description-md5: 9b905cfcc13278c04580172f90e74120 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: libreoffice-l10n-af Priority: optional Section: localization Installed-Size: 2730 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-af Suggests: hunspell-dictionary-af | myspell-dictionary-af, hyphen-af, libreoffice-grammarcheck-af, libreoffice-help-af, mythes-af Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-af_4.2.3~rc3-0ubuntu1_all.deb Size: 390838 MD5sum: ad045419cc0680fa087d834c0d2f9c4b SHA1: b97030245d3aed0d47134eefb8e17e02fb40c770 SHA256: ac4c4889ee299e5cf93e63971a124b199758765159974b921ceacbd3c8687682 Description: office productivity suite -- Afrikaans language package Homepage: http://www.libreoffice.org Description-md5: 25408426f5cceacb5ad931a04f17c27e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-ar Priority: optional Section: localization Installed-Size: 2994 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ar, font-arabeyes Suggests: hunspell-dictionary-ar | myspell-dictionary-ar, hyphen-ar, libreoffice-grammarcheck-ar, libreoffice-help-ar, mythes-ar Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ar_4.2.3~rc3-0ubuntu1_all.deb Size: 399410 MD5sum: 70c85666036de4b10ad920b044f02bb5 SHA1: 6e0020026622d8fd8787a6f5096b76a54ec0eaec SHA256: ce3ef476b44e7b52fac24bc3e6afa036e677530992413c50a8d90b55069f486c Description: office productivity suite -- Arabic language package Homepage: http://www.libreoffice.org Description-md5: 587caaeee146ae2e8c3996cb98f27e14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-as Priority: optional Section: localization Installed-Size: 3509 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.6.ds1-1) | locales-all (>= 2.3.6.ds1-1) Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-as Suggests: hunspell-dictionary-as | myspell-dictionary-as, hyphen-as, libreoffice-grammarcheck-as, libreoffice-help-as, mythes-as Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-as_4.2.3~rc3-0ubuntu1_all.deb Size: 419446 MD5sum: ad65b90ac146ded2ec63171da61e5815 SHA1: acaf2ea524d56b9b2f7ef1f1bf83bbc507d90f0e SHA256: dfceb3de33ce318cfe71f76f4d0e517d6ec8cd7cb7dec7f7004cbfcf1ea56b32 Description: office productivity suite -- Assamese language package Homepage: http://www.libreoffice.org Description-md5: 4ac2e69fa5a27abf0c1dea94b43a4a7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-ast Priority: optional Section: localization Installed-Size: 2806 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ast Suggests: hunspell-dictionary-ast | myspell-dictionary-ast, hyphen-ast, libreoffice-grammarcheck-ast, libreoffice-help-ast, mythes-ast Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ast_4.2.3~rc3-0ubuntu1_all.deb Size: 399624 MD5sum: e96219a157607baffa823757596dd458 SHA1: 3183db853b25d721156a0b57a8dcc86e18b88ea3 SHA256: f0802a9536ea89901457cbfb3fc9719bbd0e66f3ab22d05accb9d75e3d2317de Description: office productivity suite -- Asturian language package Homepage: http://www.libreoffice.org Description-md5: e881b8766739626fc2bfe3be78a504b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-be Priority: optional Section: localization Installed-Size: 3016 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-be Suggests: hunspell-dictionary-be | myspell-dictionary-be, hyphen-be, libreoffice-grammarcheck-be, libreoffice-help-be, mythes-be Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-be_4.2.3~rc3-0ubuntu1_all.deb Size: 409908 MD5sum: 312d12c8bc265d7ac764b5dd6083d947 SHA1: 9d3233ce9d30d0334fbea5be08593c827a9f2945 SHA256: b98101e10ae37c3e81d2f702bec5b9da28066c912ce0536020adaad49a09bc53 Description: office productivity suite -- Belarussian language package Homepage: http://www.libreoffice.org Description-md5: e407bd35090f19d5e099214658a77d9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-l10n-bg Priority: optional Section: localization Installed-Size: 3440 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-bg Suggests: hunspell-dictionary-bg | myspell-dictionary-bg, hyphen-bg, libreoffice-grammarcheck-bg, libreoffice-help-bg, mythes-bg Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-bg_4.2.3~rc3-0ubuntu1_all.deb Size: 506160 MD5sum: 9223554810c5548e9f227e0116563203 SHA1: 928f424e122e704974831afa7a1df2a58353e568 SHA256: 3e2aad7f87411e79d8cb9d351a9d227effe624c500abeaaa9ff5092207e6b589 Description: office productivity suite -- Bulgarian language package Homepage: http://www.libreoffice.org Description-md5: 1e2ff5cea5d0d31b2fadc412f6046e12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-bn Priority: optional Section: localization Installed-Size: 3351 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-bn, ttf-bengali-fonts Suggests: hunspell-dictionary-bn | myspell-dictionary-bn, hyphen-bn, libreoffice-grammarcheck-bn, libreoffice-help-bn, mythes-bn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-bn_4.2.3~rc3-0ubuntu1_all.deb Size: 412542 MD5sum: dfe6165593b3d1b9173a8c2852fae9ca SHA1: 6f98cad24214ebed2069d3aa4021780a26a5c651 SHA256: 757c8b24737b804236b8292bb850ffb2ef0d1e617569a4168afeb311b866448e Description: office productivity suite -- Bengali language package Homepage: http://www.libreoffice.org Description-md5: 00d1921e153b39622cb04e7f66795716 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-br Priority: optional Section: localization Installed-Size: 2812 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-br Suggests: hunspell-dictionary-br | myspell-dictionary-br, hyphen-br, libreoffice-grammarcheck-br, libreoffice-help-br, mythes-br Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-br_4.2.3~rc3-0ubuntu1_all.deb Size: 396072 MD5sum: 2c73d6ce0163338dc7edbed82fb51546 SHA1: c21073426e338d9fdb415c4f6258d47bb876ce22 SHA256: e3badec35dbe2ef6efc87a66b3c66df3c932ab4af1ecfc3a0ab2763d02b824e7 Description: office productivity suite -- Breton language package Homepage: http://www.libreoffice.org Description-md5: d16cf29a1d2c4c4ed7016afa029144be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-bs Priority: optional Section: localization Installed-Size: 2751 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-bs Suggests: hunspell-dictionary-bs | myspell-dictionary-bs, hyphen-bs, libreoffice-grammarcheck-bs, libreoffice-help-bs, mythes-bs Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-bs_4.2.3~rc3-0ubuntu1_all.deb Size: 396860 MD5sum: 8f26706ae24ea274745004a83a295dec SHA1: 2eab4dc52cdfcb75360168ef1b0d332b68a97212 SHA256: 142d78f202de2979a2f7763f3f7f3d786eb7fbf7c52859d9e58f97c79f7e1fc1 Description: office productivity suite -- Bosnian language package Homepage: http://www.libreoffice.org Description-md5: 7fc91db4c49442d4457804a807e892f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ca Priority: optional Section: localization Installed-Size: 5236 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ca Suggests: hunspell-dictionary-ca | myspell-dictionary-ca, hyphen-ca, libreoffice-grammarcheck-ca, libreoffice-help-ca, mythes-ca Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ca_4.2.3~rc3-0ubuntu1_all.deb Size: 448668 MD5sum: 095ca9523e6d5ae52ca5110fe96def71 SHA1: 8551e654514e2ee02dcab577b36760b0a28fc1e0 SHA256: 49b01dcd2e6d1983a47f2b91444134ebcaa5426a5d3d401162165ea1722c4703 Description: office productivity suite -- Catalan language package Homepage: http://www.libreoffice.org Description-md5: a91b06d5c0057582f16109658e9ac2f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-cs Priority: optional Section: localization Installed-Size: 2997 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-cs Suggests: hunspell-dictionary-cs | myspell-dictionary-cs, hyphen-cs, libreoffice-grammarcheck-cs, libreoffice-help-cs, mythes-cs Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-cs_4.2.3~rc3-0ubuntu1_all.deb Size: 489674 MD5sum: 1b6b1ff844261add51b774bf873d27e5 SHA1: 8921bc2500ac6b7581fd88f73d79ffde9e0cd3ba SHA256: 6aea9a314912eff4caac5d401d15b606416a6f5db94a2ef278928b99abbe29f2 Description: office productivity suite -- Czech language package Homepage: http://www.libreoffice.org Description-md5: afead2a0313d84ddc897a8641a06a05e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-cy Priority: optional Section: localization Installed-Size: 2725 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-cy Suggests: hunspell-dictionary-cy | myspell-dictionary-cy, hyphen-cy, libreoffice-grammarcheck-cy, libreoffice-help-cy, mythes-cy Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-cy_4.2.3~rc3-0ubuntu1_all.deb Size: 385172 MD5sum: beffdf58d5c10248a03bd2b9029ac544 SHA1: 04152b6a9b0cb95e87d5330e101952e700363f8b SHA256: 0ad9fc7e68756f0f8f2f03b133b0904641728f7f70336a981c9402bf1123430f Description: office productivity suite -- Welsh language package Homepage: http://www.libreoffice.org Description-md5: 05accff0a8db25ee2b5bbfa42b627da5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-da Priority: optional Section: localization Installed-Size: 2883 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-da Suggests: hunspell-dictionary-da | myspell-dictionary-da, hyphen-da, libreoffice-grammarcheck-da, libreoffice-help-da, mythes-da Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-da_4.2.3~rc3-0ubuntu1_all.deb Size: 461886 MD5sum: bbb7b3962ae2e5e39369cacb15acbe68 SHA1: 05ff82ae52a551c840b71968fceae23d057fc224 SHA256: de62b81b1d19949c60fbc0e5ad427cd5ea8fa763d37e39d8bf5cda1e282692e2 Description: office productivity suite -- Danish language package Homepage: http://www.libreoffice.org Description-md5: 3baa4ced7ad5463e2aeedc011515df6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-de Priority: optional Section: localization Installed-Size: 2932 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-de Suggests: hunspell-dictionary-de | myspell-dictionary-de, hyphen-de, libreoffice-grammarcheck-de, libreoffice-help-de, mythes-de Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-de_4.2.3~rc3-0ubuntu1_all.deb Size: 465146 MD5sum: 54c05961529d0669bafa1eca0d7058c6 SHA1: e8684527ede800dc49319759f614df5f868d4757 SHA256: 24da066221b1f13df18312aa6609cb226037d1cee155e7de7b10d647d42c8925 Description: office productivity suite -- German language package Homepage: http://www.libreoffice.org Description-md5: 9100dc24d96f8d761ed9e9a72aaae56d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-dz Priority: optional Section: localization Installed-Size: 3623 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-dz, font-dzongkha Suggests: hunspell-dictionary-dz | myspell-dictionary-dz, hyphen-dz, libreoffice-grammarcheck-dz, libreoffice-help-dz, mythes-dz Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-dz_4.2.3~rc3-0ubuntu1_all.deb Size: 426374 MD5sum: a45feb2f71d1f89e5f2bfa3a9681d720 SHA1: eb82f331384a6799c8678007f730ac9332c75273 SHA256: f37863ee14061f0df812a83f29b940c25a98aa8691d2c61f4be567a85eb22a16 Description: office productivity suite -- Dzongkha language package Homepage: http://www.libreoffice.org Description-md5: ea22c1cbc51379d92908e5e9e9fd316d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-el Priority: optional Section: localization Installed-Size: 3350 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-el Suggests: hunspell-dictionary-el | myspell-dictionary-el, hyphen-el, libreoffice-grammarcheck-el, libreoffice-help-el, mythes-el Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-el_4.2.3~rc3-0ubuntu1_all.deb Size: 416842 MD5sum: a6c4e5a5c0c145c3a97d3914d9556e44 SHA1: e763f08fb57e0c314ee2ecddb4ce7cd66d8a1b13 SHA256: 04803777d21638fd617fe902b23fd58225c25c8ebc837816abc47bc7192ca188 Description: office productivity suite -- Greek language package Homepage: http://www.libreoffice.org Description-md5: 4f78a8507785668c597339f89484e181 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-en-gb Priority: optional Section: localization Installed-Size: 2888 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-en Suggests: hunspell-dictionary-en-gb | myspell-dictionary-en-gb, hyphen-en-gb, libreoffice-grammarcheck-en-gb, libreoffice-help-en-gb, mythes-en-gb Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-en-gb_4.2.3~rc3-0ubuntu1_all.deb Size: 460716 MD5sum: 93710bb43fa692b119123e243c3cdeef SHA1: c0aeffe3d7cb7c03a0fbde9207c73a69f0d32bc6 SHA256: 5c360aef41cb7fdfcb15eea7f013923fbc2907c0dc580212cf374ecb1a09d22c Description: office productivity suite -- English_british language package Homepage: http://www.libreoffice.org Description-md5: 2175d49557a4317b25abdfef0508de34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-en-za Priority: optional Section: localization Installed-Size: 2726 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-en Suggests: hunspell-dictionary-en-za | myspell-dictionary-en-za, hyphen-en-za, libreoffice-grammarcheck-en-za, libreoffice-help-en-za, mythes-en-za Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-en-za_4.2.3~rc3-0ubuntu1_all.deb Size: 375318 MD5sum: c6a04fdbae2e754581dfc58e602c7e74 SHA1: 982b289b71271ef2a314616b4e85f389ce9acc0e SHA256: bd271bab70e6df2c4c3d91b6dddf1e233105cf95c9ebd4ba00ba55d5c81b39c4 Description: office productivity suite -- English_southafrican language package Homepage: http://www.libreoffice.org Description-md5: c94234e62f754742485de331d5cce167 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-eo Priority: optional Section: localization Installed-Size: 2736 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-eo Suggests: hunspell-dictionary-eo | myspell-dictionary-eo, hyphen-eo, libreoffice-grammarcheck-eo, libreoffice-help-eo, mythes-eo Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-eo_4.2.3~rc3-0ubuntu1_all.deb Size: 383482 MD5sum: a3f2dd12a54d560cdc70dd8f456b039e SHA1: 04502afa9366b6e790b138f83d804b76ca514a1b SHA256: 24bd63e7ffc3875f108e92b4ddcfc329f4357f70b2453efd1e3d987dda54e6d3 Description: office productivity suite -- Esperanto language package Homepage: http://www.libreoffice.org Description-md5: ceec53900ab8424d55b41ca9805f4477 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-es Priority: optional Section: localization Installed-Size: 2956 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-es Suggests: hunspell-dictionary-es | myspell-dictionary-es, hyphen-es, libreoffice-grammarcheck-es, libreoffice-help-es, mythes-es Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-es_4.2.3~rc3-0ubuntu1_all.deb Size: 469152 MD5sum: 723459618c4af58a56a95805ba248600 SHA1: a1b9920675c96ae1e274ccc3bae3348ceeb727eb SHA256: e05a01f70525e8f6e72d7ca0caf213dc8a166e4b2321b1cadc8514b61e90ec46 Description: office productivity suite -- Spanish language package Homepage: http://www.libreoffice.org Description-md5: 9ca224f2e6cdf51887ac42db8c56be1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-et Priority: optional Section: localization Installed-Size: 2727 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-et Suggests: hunspell-dictionary-et | myspell-dictionary-et, hyphen-et, libreoffice-grammarcheck-et, libreoffice-help-et, mythes-et Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-et_4.2.3~rc3-0ubuntu1_all.deb Size: 381378 MD5sum: 436b7bc7916d42e820c64bfb095a4292 SHA1: 19dd7963c133c96149e2c889a65b7972bd4184f2 SHA256: 756df2a7b3cb8e96daf16d61e7690ab93348ea45053d69dd207a76a4414f5f75 Description: office productivity suite -- Estonian language package Homepage: http://www.libreoffice.org Description-md5: 48b61d8af6c926ad0fc569a88eff07f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-eu Priority: optional Section: localization Installed-Size: 2783 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-eu Suggests: hunspell-dictionary-eu | myspell-dictionary-eu, hyphen-eu, libreoffice-grammarcheck-eu, libreoffice-help-eu, mythes-eu Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-eu_4.2.3~rc3-0ubuntu1_all.deb Size: 385238 MD5sum: 8484c4b721823e97dadd5b7fc3524776 SHA1: bbbbda47ac7568346cab479b8ab3da04b3a1f64d SHA256: aeda33b11f36c2a0cd440235080155a90d794b6c76a8e3882c299f43fce2488d Description: office productivity suite -- Basque language package Homepage: http://www.libreoffice.org Description-md5: a9ce34217df35bf42f382c34b328939c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-fa Priority: optional Section: localization Installed-Size: 2889 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-fa, font-farsiweb Suggests: hunspell-dictionary-fa | myspell-dictionary-fa, hyphen-fa, libreoffice-grammarcheck-fa, libreoffice-help-fa, mythes-fa Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-fa_4.2.3~rc3-0ubuntu1_all.deb Size: 400560 MD5sum: 2311df28a9ac6fbcd1aa8056d0468be6 SHA1: 7701b2a59b3356edbe2cc09277f77274b96e9776 SHA256: 4c6ac0698ec401d8f1d5fbe93b97550adeae8d8f0a90a52d507d4e8051951199 Description: office productivity suite -- Farsi language package Homepage: http://www.libreoffice.org Description-md5: 6fb22f6ccd00a52dcb073d05bdb131d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-fi Priority: optional Section: localization Installed-Size: 2765 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-fi Suggests: hunspell-dictionary-fi | myspell-dictionary-fi, hyphen-fi, libreoffice-grammarcheck-fi, libreoffice-help-fi, mythes-fi Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-fi_4.2.3~rc3-0ubuntu1_all.deb Size: 388576 MD5sum: af8230d39b5de1f0e82b5b8332c06740 SHA1: 64980d36cbe0aa5bdc844d0efe84773b7cf61171 SHA256: a3ff6ef878fbfef18b134e5d5a937b08bde4ca870469f3bca45ed5037b8f7c84 Description: office productivity suite -- Finnish language package Homepage: http://www.libreoffice.org Description-md5: 3706653bf050d85e2b88029ab6b8043d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-fr Priority: optional Section: localization Installed-Size: 2977 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-fr Suggests: hunspell-dictionary-fr | myspell-dictionary-fr, hyphen-fr, libreoffice-grammarcheck-fr, libreoffice-help-fr, mythes-fr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-fr_4.2.3~rc3-0ubuntu1_all.deb Size: 467198 MD5sum: e585d3039398579fae3182363e3ce60a SHA1: 7a5550e803994d23f2552005a0a7dc4fdd3a24a7 SHA256: 6b4b602bd8b82d65bd4f9c9c426da1e863083abb8e4ff0ad2e5865a99e687c40 Description: office productivity suite -- French language package Homepage: http://www.libreoffice.org Description-md5: be373ab6133f4822f55949baa3af6fb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ga Priority: optional Section: localization Installed-Size: 2802 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ga Suggests: hunspell-dictionary-ga | myspell-dictionary-ga, hyphen-ga, libreoffice-grammarcheck-ga, libreoffice-help-ga, mythes-ga Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ga_4.2.3~rc3-0ubuntu1_all.deb Size: 399196 MD5sum: 9b43444de0d54ce3c3f8531c93d13317 SHA1: 9fcdda055c2a647e4a37fe97e65845741bba8299 SHA256: b641f7011a9d4722d8a03dd1e17a6ecfa4be516cf24d992a5db1eaf4940b5a8a Description: office productivity suite -- Gaelic language package Homepage: http://www.libreoffice.org Description-md5: 45ee5e619b80d12047c3db358a95ece6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-gd Priority: optional Section: localization Installed-Size: 2881 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-gd Suggests: hunspell-dictionary-gd | myspell-dictionary-gd, hyphen-gd, libreoffice-grammarcheck-gd, libreoffice-help-gd, mythes-gd Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-gd_4.2.3~rc3-0ubuntu1_all.deb Size: 397816 MD5sum: 7f5950c8b679ac368bac59f9d0db0ce7 SHA1: 640af2a868bdfed843f3d23a9bb8bad2ea922692 SHA256: 95d5eca2c1c727dbe1be153919d69f3e85cd76d4546d5e915402b098a02308ae Description: office productivity suite -- Scottish_gaelic language package Homepage: http://www.libreoffice.org Description-md5: 18113968ce7e8c22cc31b05613ac922a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-l10n-gl Priority: optional Section: localization Installed-Size: 2804 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-gl Suggests: hunspell-dictionary-gl | myspell-dictionary-gl, hyphen-gl, libreoffice-grammarcheck-gl, libreoffice-help-gl, mythes-gl Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-gl_4.2.3~rc3-0ubuntu1_all.deb Size: 391950 MD5sum: f56225ce18db9a60c3cfd5753a211d38 SHA1: a98ce753b9223b14171703dbddf9b57407b89261 SHA256: 4038b78ca13995a11cbc69fd7f708219c6f82b957d699376165e7df4e6ec987e Description: office productivity suite -- Galician language package Homepage: http://www.libreoffice.org Description-md5: 91aaf32f09c1b953e8cf6a0878954eea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-gu Priority: optional Section: localization Installed-Size: 3421 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-gu, ttf-gujarati-fonts Suggests: hunspell-dictionary-gu | myspell-dictionary-gu, hyphen-gu, libreoffice-grammarcheck-gu, libreoffice-help-gu, mythes-gu Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-gu_4.2.3~rc3-0ubuntu1_all.deb Size: 419216 MD5sum: 73d186ac1fc036b615c8a92ab819a011 SHA1: 9bc3c78115e068f5001af06b917d12f8f1290c1c SHA256: f14af1b0d6d0cc5a7139594c1513d654c709d673f62cead374981808d4bed0dc Description: office productivity suite -- Gujarati language package Homepage: http://www.libreoffice.org Description-md5: d33d0bf909d9ce8566c829e9e8c7958d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-he Priority: optional Section: localization Installed-Size: 2940 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-he, culmus Suggests: hunspell-dictionary-he | myspell-dictionary-he, hyphen-he, libreoffice-grammarcheck-he, libreoffice-help-he, mythes-he Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-he_4.2.3~rc3-0ubuntu1_all.deb Size: 395370 MD5sum: 3f76d0752e25abe425b0911d529d68ff SHA1: 43b9ad18c72276f2348dd76db94ee9079c0ed7c9 SHA256: bf650f9346b9f6c98fc5db5d8afdc5574be613417386d14642fa1e8915d45b24 Description: office productivity suite -- Hebrew language package Homepage: http://www.libreoffice.org Description-md5: 162257c4fc07447259f3f6ba8311eab8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-hi Priority: optional Section: localization Installed-Size: 3400 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-hi Suggests: hunspell-dictionary-hi | myspell-dictionary-hi, hyphen-hi, libreoffice-grammarcheck-hi, libreoffice-help-hi, mythes-hi Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-hi_4.2.3~rc3-0ubuntu1_all.deb Size: 411260 MD5sum: 8ad919f36686e3e47ee8721b9d86d7c6 SHA1: 753453e671e131842b4a898958b097cb37e3cc0e SHA256: 9423def01dabd9f66e5b2e8f2011f8f32cc1be7f6bb64d34b885336177da8990 Description: office productivity suite -- Hindi language package Homepage: http://www.libreoffice.org Description-md5: c0f9f00435657eaf48161db67ec8e03d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-hr Priority: optional Section: localization Installed-Size: 2761 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-hr Suggests: hunspell-dictionary-hr | myspell-dictionary-hr, hyphen-hr, libreoffice-grammarcheck-hr, libreoffice-help-hr, mythes-hr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-hr_4.2.3~rc3-0ubuntu1_all.deb Size: 395748 MD5sum: f79d914ae670d652589418b5e3c2cca7 SHA1: 0ef026615c33473d25339f9ec46fae4c808f448a SHA256: af2a18db1ec56bca8c1c52668aa024e202bf66959c433b3ee259e81aad180e53 Description: office productivity suite -- Croatian language package Homepage: http://www.libreoffice.org Description-md5: c1f7ed74f344f50c39b1b97d22d34b76 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-hu Priority: optional Section: localization Installed-Size: 2994 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-hu Suggests: hunspell-dictionary-hu | myspell-dictionary-hu, hyphen-hu, libreoffice-grammarcheck-hu, libreoffice-help-hu, mythes-hu Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-hu_4.2.3~rc3-0ubuntu1_all.deb Size: 479092 MD5sum: 9d9a7e8b4de5b33f3f98ec81b648fe80 SHA1: e4571244dcb6572bd7ebfd851d321eeb829f047c SHA256: 71e9ea2de18ec0c1827465d85ba30427fdfc9f4d87d61ecde476145ce0124fef Description: office productivity suite -- Hungarian language package Homepage: http://www.libreoffice.org Description-md5: 03faefa7ee83b9dbc4ee7a082d63744e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-id Priority: optional Section: localization Installed-Size: 2729 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-id Suggests: hunspell-dictionary-id | myspell-dictionary-id, hyphen-id, libreoffice-grammarcheck-id, libreoffice-help-id, mythes-id Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-id_4.2.3~rc3-0ubuntu1_all.deb Size: 383576 MD5sum: 9cbd1c8ca6e977607b40179b27f126d8 SHA1: 712a7a3136636e12994376976feb020900a79c8b SHA256: d003ad69a77e18f386a5c81f32f5daef8dae87c9bfce676dd30c38786716f11c Description: office productivity suite -- Indonesian language package Homepage: http://www.libreoffice.org Description-md5: 831b063ee510059ca4447efa18a337a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-in Priority: optional Section: localization Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-l10n-as, libreoffice-l10n-bn, libreoffice-l10n-gu, libreoffice-l10n-hi, libreoffice-l10n-ml, libreoffice-l10n-mr, libreoffice-l10n-or, libreoffice-l10n-pa-in, libreoffice-l10n-ta, libreoffice-l10n-te Recommends: ttf-indic-fonts Filename: pool/main/libr/libreoffice/libreoffice-l10n-in_4.2.3~rc3-0ubuntu2_all.deb Size: 28516 MD5sum: bdc007e6d2dcf3f22b4375e930d0147d SHA1: 742d70ea9fa842ab6638982daa0e7868d9981c4d SHA256: 6c9bdc28cb7f1eefb0b16b495bd6ed293efd1059c93bf6bde9871fbd108537f5 Description: office productivity suite -- Indic language packages Homepage: http://www.libreoffice.org Description-md5: 36e2a96a1e51778367a7324914492a84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-is Priority: optional Section: localization Installed-Size: 2763 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-is Suggests: hunspell-dictionary-is | myspell-dictionary-is, hyphen-is, libreoffice-grammarcheck-is, libreoffice-help-is, mythes-is Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-is_4.2.3~rc3-0ubuntu1_all.deb Size: 397274 MD5sum: dc4614d92a1e8dbb909bc1e72ce3d324 SHA1: 91593063506a97d5957ef68eea7830afab1751e8 SHA256: 4da222ce18a4a9e37e2dc25d683890594ccc55c10f86743e1d15060280129581 Description: office productivity suite -- Icelandic language package Homepage: http://www.libreoffice.org Description-md5: 867a82757a25dc87440a74fb74e46369 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-it Priority: optional Section: localization Installed-Size: 2936 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-it Suggests: hunspell-dictionary-it | myspell-dictionary-it, hyphen-it, libreoffice-grammarcheck-it, libreoffice-help-it, mythes-it Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-it_4.2.3~rc3-0ubuntu1_all.deb Size: 463896 MD5sum: 83fd17b040112b90a0d92a31e19ecc9d SHA1: 2cefe8c79918b8d26f7a35474d911f77e396f7b7 SHA256: 564e58aee6987ed4639a1d45d519daa8208eb25c12437a98cc6373bccee6d7c7 Description: office productivity suite -- Italian language package Homepage: http://www.libreoffice.org Description-md5: e9939e05ca7fe3ecb840f7f3d6192e35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ja Priority: optional Section: localization Installed-Size: 3021 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ja Suggests: hunspell-dictionary-ja | myspell-dictionary-ja, hyphen-ja, libreoffice-grammarcheck-ja, libreoffice-help-ja, mythes-ja Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ja_4.2.3~rc3-0ubuntu1_all.deb Size: 450040 MD5sum: 5af6146e681ef90abfaed9f264f42cd5 SHA1: e5cfe1920caf9896e149833c186af418d185c98d SHA256: c6aed6e957da5b36fb0cb1441807003362dbc7add9bf49f52c83630a23b0bbfb Description: office productivity suite -- Japanese language package Homepage: http://www.libreoffice.org Description-md5: 711d02c365f10214733d3d63a55bf474 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ka Priority: optional Section: localization Installed-Size: 3306 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ka Suggests: hunspell-dictionary-ka | myspell-dictionary-ka, hyphen-ka, libreoffice-grammarcheck-ka, libreoffice-help-ka, mythes-ka Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ka_4.2.3~rc3-0ubuntu1_all.deb Size: 410398 MD5sum: 5e04e43b8ab751b91e65be3129f4b816 SHA1: 51dcf9615deae621fe4c9afef00544d15dc6fe2a SHA256: 1e9e12fbd12459c187d828c095f34101b257785c7a5e6d2b5a752884a6b1872d Description: office productivity suite -- Georgian language package Homepage: http://www.libreoffice.org Description-md5: 1efb8e2732132342f73ee09022329760 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-kk Priority: optional Section: localization Installed-Size: 3222 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-kk Suggests: hunspell-dictionary-kk | myspell-dictionary-kk, hyphen-kk, libreoffice-grammarcheck-kk, libreoffice-help-kk, mythes-kk Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-kk_4.2.3~rc3-0ubuntu1_all.deb Size: 402096 MD5sum: b210f05109ce6c4007cdfd52e4af1bbf SHA1: 00dd45cd76465e2ea7649f8b7c9b9e62202a3f30 SHA256: 28a3e7cd7b227ff856bdf1ed78e2e05377195e8c1be6ba084b592fe37d9a5629 Description: office productivity suite -- Kazakh language package Homepage: http://www.libreoffice.org Description-md5: 0f55a645c29d349c14ae394b15a44300 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-l10n-km Priority: optional Section: localization Installed-Size: 3924 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.5-12) | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-km, font-khmeros Suggests: hunspell-dictionary-km | myspell-dictionary-km, hyphen-km, libreoffice-grammarcheck-km, libreoffice-help-km, mythes-km Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-km_4.2.3~rc3-0ubuntu1_all.deb Size: 493850 MD5sum: e91b57c1206b511c4ab023672a177b60 SHA1: d4d57b6c4f1645605b8c11936a02ae4cbe4cb3fa SHA256: 3ca08d5aba2c7bb6fede78c5df4745057b6940f45359a95f43a9ca39c47390af Description: office productivity suite -- Khmer language package Homepage: http://www.libreoffice.org Description-md5: 8bbe73d4befdfd439c3cbc8ee6b1fcb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-kmr-latn Priority: optional Section: localization Installed-Size: 2792 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-kmr Suggests: hunspell-dictionary-kmr-latn | myspell-dictionary-kmr-latn, hyphen-kmr-latn, libreoffice-grammarcheck-kmr-latn, libreoffice-help-kmr-latn, mythes-kmr-latn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-kmr-latn_4.2.3~rc3-0ubuntu1_all.deb Size: 404028 MD5sum: ada02e0317c039ee92bcda30e7f58a48 SHA1: aa5581ed5683d8ee6457f0a02523e55ec1bdc531 SHA256: 49f86f194ee1af6f00d230b1d69911be41663c9a7806394d1425bbe1a85688dd Description: office productivity suite -- Kurdish language package Homepage: http://www.libreoffice.org Description-md5: 2197d3f86ef82ce48921d3367f6111f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ko Priority: optional Section: localization Installed-Size: 2918 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ko Suggests: hunspell-dictionary-ko | myspell-dictionary-ko, hyphen-ko, libreoffice-grammarcheck-ko, libreoffice-help-ko, mythes-ko Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ko_4.2.3~rc3-0ubuntu1_all.deb Size: 457490 MD5sum: 6e87ba66ffdaa10460068fa17fae1944 SHA1: ca378affb4ffa44268021d6cbd98f246e790e981 SHA256: c5145c29cc221df648b083a5227a1317d55615cd404c8eee3d053aac5f5648ab Description: office productivity suite -- Korean language package Homepage: http://www.libreoffice.org Description-md5: 959045aad72889d15ef474977f2b76c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ku Priority: optional Section: localization Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-l10n-kmr-latn Filename: pool/main/libr/libreoffice/libreoffice-l10n-ku_4.2.3~rc3-0ubuntu2_all.deb Size: 28468 MD5sum: 9a8532725c4ada935a6c0b3dc8c94efe SHA1: 62434deccec5d0a1cf998e39629b1c4c74bd945d SHA256: c60d00ac2a0d75afd629674a127d86ba0dc6d9d87b8f07e6fd9c10f05166cc37 Description: transitional package for LibreOffice Kurdish l10n Homepage: http://www.libreoffice.org Description-md5: 27c92d54642fffc5563357ff22e7cb47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-lt Priority: optional Section: localization Installed-Size: 2795 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-lt Suggests: hunspell-dictionary-lt | myspell-dictionary-lt, hyphen-lt, libreoffice-grammarcheck-lt, libreoffice-help-lt, mythes-lt Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-lt_4.2.3~rc3-0ubuntu1_all.deb Size: 392902 MD5sum: 532f8933cdb7d09dbead82e2019e69ed SHA1: 36bb69a591a553460ebd30ea5909f9dd6e269920 SHA256: db0b689bd27c34d8f3c86b57693c61172c3e4f9899d8fe68dff32208c65ac364 Description: office productivity suite -- Lithuanian language package Homepage: http://www.libreoffice.org Description-md5: 034b11c582987c822f6f0f155d0a2dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-lv Priority: optional Section: localization Installed-Size: 2786 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-lv Suggests: hunspell-dictionary-lv | myspell-dictionary-lv, hyphen-lv, libreoffice-grammarcheck-lv, libreoffice-help-lv, mythes-lv Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-lv_4.2.3~rc3-0ubuntu1_all.deb Size: 393310 MD5sum: d716c2a4ccbecd433fddf3c1366f1e95 SHA1: 5e2c47316c17583adae1595325b5bd1eec876a64 SHA256: 053af004f8b3bdf1fdc1a85d71f3237ddd140c78491d2d0a90f68cb4144d401e Description: office productivity suite -- Latvian language package Homepage: http://www.libreoffice.org Description-md5: 5590d50c683679292cf935268a635351 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-mk Priority: optional Section: localization Installed-Size: 3068 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-mk Suggests: hunspell-dictionary-mk | myspell-dictionary-mk, hyphen-mk, libreoffice-grammarcheck-mk, libreoffice-help-mk, mythes-mk Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-mk_4.2.3~rc3-0ubuntu1_all.deb Size: 409532 MD5sum: 2bfc25629388b05c7d448eb80ea82032 SHA1: f7363d43429347259b662dea803c6b599395b27d SHA256: 3aee4f0af77a44bafc91123844a308f0b91cdc24d450c831a984e1e08435242f Description: office productivity suite -- Macedonian language package Homepage: http://www.libreoffice.org Description-md5: 14c69c972f6eb55814e005281db272c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ml Priority: optional Section: localization Installed-Size: 3752 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ml, ttf-malayalam-fonts Suggests: hunspell-dictionary-ml | myspell-dictionary-ml, hyphen-ml, libreoffice-grammarcheck-ml, libreoffice-help-ml, mythes-ml Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ml_4.2.3~rc3-0ubuntu1_all.deb Size: 427144 MD5sum: 193075b57413210c6ac4c4512bbe59f6 SHA1: a245d49903236a6783d5562851c36dda7595af7b SHA256: 7bae228b4026ce77a341da18b9720d44cecb3fe5a842ca4073eee74414b620c4 Description: office productivity suite -- Malayalam language package Homepage: http://www.libreoffice.org Description-md5: 60f657487ccd35990900a2b5e69a0ece Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-mn Priority: optional Section: localization Installed-Size: 3146 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-mn Suggests: hunspell-dictionary-mn | myspell-dictionary-mn, hyphen-mn, libreoffice-grammarcheck-mn, libreoffice-help-mn, mythes-mn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-mn_4.2.3~rc3-0ubuntu1_all.deb Size: 497186 MD5sum: 17e05e894bf710ce4f28381849716493 SHA1: 7f5e5a03dda7c5bc8cf067d6f7397ffc12fa2cfa SHA256: e6a817c3628f76dd2fd9ab4131f74addcc6d774a6fd1bcfefc7bdbec9448e860 Description: office productivity suite -- Mongolian language package Homepage: http://www.libreoffice.org Description-md5: 4025564fcb7aef1ac127f7d38a7d89a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-mr Priority: optional Section: localization Installed-Size: 3455 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-mr, ttf-devanagari-fonts Suggests: hunspell-dictionary-mr | myspell-dictionary-mr, hyphen-mr, libreoffice-grammarcheck-mr, libreoffice-help-mr, mythes-mr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-mr_4.2.3~rc3-0ubuntu1_all.deb Size: 421420 MD5sum: c042562ed23caae44242a6494849a666 SHA1: 56962a5d51aed3ea70f8e983dbce6f9bb50988d2 SHA256: 5a925735bf54f48b72c878973785ae8026d109c201b0b8bd53073e1659cfe33e Description: office productivity suite -- Marathi language package Homepage: http://www.libreoffice.org Description-md5: 8222f55840ec7b6dfe5f1d5507393b3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-nb Priority: optional Section: localization Installed-Size: 2733 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nb Suggests: hunspell-dictionary-nb | myspell-dictionary-nb, hyphen-nb, libreoffice-grammarcheck-nb, libreoffice-help-nb, mythes-nb Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-nb_4.2.3~rc3-0ubuntu1_all.deb Size: 385746 MD5sum: 032090321a602550819431d557d36bef SHA1: 744228fe9b009fae961436a41efcc39774db91a7 SHA256: 2a05351f55882bd61cee2255b6124b932be3f9fc232bc110da162ccdd8bc4d17 Description: office productivity suite -- Norwegian language package Homepage: http://www.libreoffice.org Description-md5: 0fabf8e37a5701350d1b10c4e7e6afed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ne Priority: optional Section: localization Installed-Size: 3405 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ne, ttf-devanagari-fonts Suggests: hunspell-dictionary-ne | myspell-dictionary-ne, hyphen-ne, libreoffice-grammarcheck-ne, libreoffice-help-ne, mythes-ne Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ne_4.2.3~rc3-0ubuntu1_all.deb Size: 408328 MD5sum: de56a5a2c972c002b394d4644e0ac8ae SHA1: eeac1d7f92cfe151145560c09b613fcfad26ee87 SHA256: 79e2cf361e655eba15350e08859b3d942ef2b296acafb45d48d83e094e04246e Description: office productivity suite -- Nepali language package Homepage: http://www.libreoffice.org Description-md5: dab12a810614b4666c8b321d5a209818 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-nl Priority: optional Section: localization Installed-Size: 2906 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nl Suggests: hunspell-dictionary-nl | myspell-dictionary-nl, hyphen-nl, libreoffice-grammarcheck-nl, libreoffice-help-nl, mythes-nl Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-nl_4.2.3~rc3-0ubuntu1_all.deb Size: 473772 MD5sum: 3cc442dc11cd9cbfb01b8f76d7b2c842 SHA1: 76e63d754c12e16ae51f84a2a339457fbb061fee SHA256: 781f90f7a94ac952ae8d4c4c3df70032e69f1e746b29ea456d3ccca4d46d39cd Description: office productivity suite -- Dutch language package Homepage: http://www.libreoffice.org Description-md5: 070320c4fffa196cb47074884ecf5d04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-nn Priority: optional Section: localization Installed-Size: 2730 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nn Suggests: hunspell-dictionary-nn | myspell-dictionary-nn, hyphen-nn, libreoffice-grammarcheck-nn, libreoffice-help-nn, mythes-nn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-nn_4.2.3~rc3-0ubuntu1_all.deb Size: 385002 MD5sum: 3908898005b9ca6fe8f260e3b8b31645 SHA1: 30b7aa27c06b493465d6330491d1b0ac24a09988 SHA256: b3781b348673400be099e17ea12fcaad29442d028bb6e33ca987dc1294f9f2bd Description: office productivity suite -- Norwegian_nynorsk language package Homepage: http://www.libreoffice.org Description-md5: bbdb9d7bd3b045feb8b26450f0b1e84d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-nr Priority: optional Section: localization Installed-Size: 2772 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.6.ds1-1) | locales-all (>= 2.3.6.ds1-1) Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nr Suggests: hunspell-dictionary-nr | myspell-dictionary-nr, hyphen-nr, libreoffice-grammarcheck-nr, libreoffice-help-nr, mythes-nr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-nr_4.2.3~rc3-0ubuntu1_all.deb Size: 403590 MD5sum: 2277c86da4e343b5440df8f926c6ccdd SHA1: fa7c21acfe801b0d3b850812ad0600b50054da46 SHA256: a3b8b9ba0618e8d769e27e2a25ed50585cd036234ec5cb2f1847f4b35e45b8e4 Description: office productivity suite -- Ndebele language package Homepage: http://www.libreoffice.org Description-md5: 43bc32c188cfe5924ea7f2995a36995d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-nso Priority: optional Section: localization Installed-Size: 2805 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nso Suggests: hunspell-dictionary-nso | myspell-dictionary-nso, hyphen-nso, libreoffice-grammarcheck-nso, libreoffice-help-nso, mythes-nso Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-nso_4.2.3~rc3-0ubuntu1_all.deb Size: 398252 MD5sum: 5dd6ac9032a25b8c43ced8fd8040c04e SHA1: c27d62081c977fc451e6c7e13044b7a14bab0587 SHA256: dce8ac125ab39642f1f8b79ec43c34ecde02a3d44e716013dfc456517739e4a1 Description: office productivity suite -- Northern_sotho language package Homepage: http://www.libreoffice.org Description-md5: 12301064896f2feae77bfb9b19df2b41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-oc Priority: optional Section: localization Installed-Size: 2815 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-oc Suggests: hunspell-dictionary-oc | myspell-dictionary-oc, hyphen-oc, libreoffice-grammarcheck-oc, libreoffice-help-oc, mythes-oc Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-oc_4.2.3~rc3-0ubuntu1_all.deb Size: 398750 MD5sum: 70cbac36202a706547794e929a3e46e3 SHA1: b835b4e2a8ccd7f8d006f31e44d28c39a278a572 SHA256: fb33c5ad60ce8c9446085b5b0b1f563277d4bd7adee4f5d6aec3d36ef19ea7ba Description: office productivity suite -- Occitan language package Homepage: http://www.libreoffice.org Description-md5: 33ddfe08a196f8f66e1a8e27f2d010cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-om Priority: optional Section: localization Installed-Size: 2751 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-om Suggests: hunspell-dictionary-om | myspell-dictionary-om, hyphen-om, libreoffice-grammarcheck-om, libreoffice-help-om, mythes-om Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-om_4.2.3~rc3-0ubuntu1_all.deb Size: 394836 MD5sum: 4ae10841e9a7d62439c8eea1c18595aa SHA1: 9e44bd5bc6d97b1fe529a4fe75acb309d6d77f6f SHA256: d2b72203d09062ada3e38c08e000db70a68d5f722a9728e71278c0f5ffdbfa4f Description: office productivity suite -- Oromo language package Homepage: http://www.libreoffice.org Description-md5: b0d2c1a766f405e3832badc1c8a5b242 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-or Priority: optional Section: localization Installed-Size: 3525 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.6.ds1-1) | locales-all (>= 2.3.6.ds1-1) Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-or, ttf-oriya-fonts Suggests: hunspell-dictionary-or | myspell-dictionary-or, hyphen-or, libreoffice-grammarcheck-or, libreoffice-help-or, mythes-or Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-or_4.2.3~rc3-0ubuntu1_all.deb Size: 418074 MD5sum: bf3610869090e6665713aa6131121792 SHA1: 953e5cca4ceb13660c5ddeb0c2817d8ae8ffbb1c SHA256: 754ae4400c116a53973232879370f3739d1d68030a242494c8491a278be52352 Description: office productivity suite -- Oriya language package Homepage: http://www.libreoffice.org Description-md5: 68c4bed662edc9ba26df9975db9b5cc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-pa-in Priority: optional Section: localization Installed-Size: 3245 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pa, ttf-punjabi-fonts Suggests: hunspell-dictionary-pa-in | myspell-dictionary-pa-in, hyphen-pa-in, libreoffice-grammarcheck-pa-in, libreoffice-help-pa-in, mythes-pa-in Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-pa-in_4.2.3~rc3-0ubuntu1_all.deb Size: 408572 MD5sum: ca7a2a9515b2033ba5c30b8004636fb6 SHA1: 8459340d3de54a9a60810c4e96b2c531cd55185c SHA256: 95e1d82f3b63e467330b08b0084ecca89ef076312855e0de3626791b8e7daa6f Description: office productivity suite -- Punjabi language package Homepage: http://www.libreoffice.org Description-md5: 257cf2122f7b0d44fd1c044bf69204bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-pl Priority: optional Section: localization Installed-Size: 2864 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pl Suggests: hunspell-dictionary-pl | myspell-dictionary-pl, hyphen-pl, libreoffice-grammarcheck-pl, libreoffice-help-pl, mythes-pl Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-pl_4.2.3~rc3-0ubuntu1_all.deb Size: 441806 MD5sum: 36efa3d391ad5e6d778e9fc619a631b1 SHA1: 0194110018d63b375f7f2e63b51a82d75a0e9878 SHA256: bddedbb553d1d9649947c4633ea9515e37cd9b16edf709778ed69540b8639fa5 Description: office productivity suite -- Polish language package Homepage: http://www.libreoffice.org Description-md5: af3855564491f6adf7a5d23e57e3d07f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-pt Priority: optional Section: localization Installed-Size: 2943 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pt Suggests: hunspell-dictionary-pt | myspell-dictionary-pt, hyphen-pt, libreoffice-grammarcheck-pt, libreoffice-help-pt, mythes-pt Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-pt_4.2.3~rc3-0ubuntu1_all.deb Size: 453282 MD5sum: 0063a2bef75fcd88da1c787e3f406986 SHA1: 6374a723223ecb8eaf17caa76d9a010a4107cd4c SHA256: 3183866d309f111395940941354da1e94098f767c9777c607ce4b455f71b94b2 Description: office productivity suite -- Portuguese language package Homepage: http://www.libreoffice.org Description-md5: 3ebb2c295967229068d690bf4004b6e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-pt-br Priority: optional Section: localization Installed-Size: 2929 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pt Suggests: hunspell-dictionary-pt-br | myspell-dictionary-pt-br, hyphen-pt-br, libreoffice-grammarcheck-pt-br, libreoffice-help-pt-br, mythes-pt-br Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-pt-br_4.2.3~rc3-0ubuntu1_all.deb Size: 456872 MD5sum: cfaaa34606c390fc13e2032339a68fed SHA1: 7e8599a089262d1537ca5c4840b9ae41683bac2b SHA256: f1b3ea5d494ce6c67dc8c498f7a0a3c167bacd4398e75f56b3f57b2f39ad4d38 Description: office productivity suite -- Portuguese_brazilian language package Homepage: http://www.libreoffice.org Description-md5: bca2f0a66f444a733b61ca3bb45846ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ro Priority: optional Section: localization Installed-Size: 2803 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ro Suggests: hunspell-dictionary-ro | myspell-dictionary-ro, hyphen-ro, libreoffice-grammarcheck-ro, libreoffice-help-ro, mythes-ro Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ro_4.2.3~rc3-0ubuntu1_all.deb Size: 397140 MD5sum: 0fd0a7fe49ad49aa4a394142fa1cfea3 SHA1: 60df1aa9485ca317e29448cc021c2d437c25d56e SHA256: 27c1fd0fcb2f1a44b96b4903a1798969082ba422c5ad79d061a5392a3b3adcd8 Description: office productivity suite -- Romanian language package Homepage: http://www.libreoffice.org Description-md5: e4018d28105361bb391246001caccf0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ru Priority: optional Section: localization Installed-Size: 3387 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ru Suggests: hunspell-dictionary-ru | myspell-dictionary-ru, hyphen-ru, libreoffice-grammarcheck-ru, libreoffice-help-ru, mythes-ru Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ru_4.2.3~rc3-0ubuntu1_all.deb Size: 480094 MD5sum: 617ad167f0df48cd3274090a92c953ce SHA1: 4e6d8140f9172429bbbe6d903de3298528071a2b SHA256: 5dbaeb7be3f62ea7a7c8c897392cdb6392f28424f23dabc618142b65e6628033 Description: office productivity suite -- Russian language package Homepage: http://www.libreoffice.org Description-md5: 58787e12e170fc436c645c007bfdc3a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-rw Priority: optional Section: localization Installed-Size: 2776 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.6) | belocs-locales-data | locales-all (>= 2.3.6) Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-rw Suggests: hunspell-dictionary-rw | myspell-dictionary-rw, hyphen-rw, libreoffice-grammarcheck-rw, libreoffice-help-rw, mythes-rw Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-rw_4.2.3~rc3-0ubuntu1_all.deb Size: 395710 MD5sum: 5ae636bb3dcbb0f5b3c6145c392c3e52 SHA1: 2d83ac68aabcfc63410f6d4fcb8d4ea21a61ff1e SHA256: 99970ef77a828757e10f28f75b9a13646634f4b4f880281bea2215d884a44bc3 Description: office productivity suite -- Kinarwanda language package Homepage: http://www.libreoffice.org Description-md5: 567e17f0373585af19cb698b7c5680e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-si Priority: optional Section: localization Installed-Size: 3348 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-si Suggests: hunspell-dictionary-si | myspell-dictionary-si, hyphen-si, libreoffice-grammarcheck-si, libreoffice-help-si, mythes-si Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-si_4.2.3~rc3-0ubuntu1_all.deb Size: 414690 MD5sum: 0c177b40916dbfd6370d99f785af642a SHA1: 91e8081a189a109c9dd2c32501cd0222f025fa55 SHA256: 9b4f47d4883040ac648181ae19227d30d18204a81ea6a3766ec248dad83a96de Description: office productivity suite -- Sinhala language package Homepage: http://www.libreoffice.org Description-md5: 1f61af11cbbfd06c45ff93fd66708f91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-sk Priority: optional Section: localization Installed-Size: 3006 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sk Suggests: hunspell-dictionary-sk | myspell-dictionary-sk, hyphen-sk, libreoffice-grammarcheck-sk, libreoffice-help-sk, mythes-sk Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-sk_4.2.3~rc3-0ubuntu1_all.deb Size: 500514 MD5sum: c42c46ad1a80445306b4f3901a5b9bc2 SHA1: 08054c0e78f8e711f4ea685c893e61cc930cdd67 SHA256: 39e84bc7566ae34b010f74268b19df54615cf382543d2fd6476fdf09f6f7744a Description: office productivity suite -- Slovak language package Homepage: http://www.libreoffice.org Description-md5: 1769b72d83c3ab6d8bc16b3fda5f0a67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-sl Priority: optional Section: localization Installed-Size: 2947 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sl Suggests: hunspell-dictionary-sl | myspell-dictionary-sl, hyphen-sl, libreoffice-grammarcheck-sl, libreoffice-help-sl, mythes-sl Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-sl_4.2.3~rc3-0ubuntu1_all.deb Size: 490378 MD5sum: e1d8a207389b359b95ac042f9d3b6a26 SHA1: 196a61aa58e9f9a6d4123ccde9e517b6c0b82e3e SHA256: c172c8c3860e01c3626ae47e8c574ad3a77000a0c709a85643f5c5dc14ef9700 Description: office productivity suite -- Slovenian language package Homepage: http://www.libreoffice.org Description-md5: cb73e143fff5a545b5d0d0878593a2f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-sr Priority: optional Section: localization Installed-Size: 3010 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.6.ds1-5) | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sr Suggests: hunspell-dictionary-sr | myspell-dictionary-sr, hyphen-sr, libreoffice-grammarcheck-sr, libreoffice-help-sr, mythes-sr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-sr_4.2.3~rc3-0ubuntu1_all.deb Size: 413632 MD5sum: 888d2c24de2859b37f35b0d7692ccad6 SHA1: 77fa56dd5faf123c545ed7b7a924459136aab55f SHA256: 9a04d5fe448b996c49d027279ce846ea9b3bea82de1f69270224f42e4469f931 Description: office productivity suite -- Serbian language package Homepage: http://www.libreoffice.org Description-md5: a5246257fe1a7bc6da50c1903b447187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ss Priority: optional Section: localization Installed-Size: 2754 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.5-12) | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ss Suggests: hunspell-dictionary-ss | myspell-dictionary-ss, hyphen-ss, libreoffice-grammarcheck-ss, libreoffice-help-ss, mythes-ss Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ss_4.2.3~rc3-0ubuntu1_all.deb Size: 401100 MD5sum: 1e48954750a0ad1de741ca564f754e3b SHA1: 18778c9fa4e98b07ead4419cec7e9d33467c4af2 SHA256: 27f3f8c330eb2ba99054a313fd47d8037c454e29ff861f4347ea583535e5f23d Description: office productivity suite -- Swazi language package Homepage: http://www.libreoffice.org Description-md5: b3cd9971feec09abdc68c846c96340a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-st Priority: optional Section: localization Installed-Size: 2774 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-st Suggests: hunspell-dictionary-st | myspell-dictionary-st, hyphen-st, libreoffice-grammarcheck-st, libreoffice-help-st, mythes-st Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-st_4.2.3~rc3-0ubuntu1_all.deb Size: 400474 MD5sum: 537a603bd062c2ed459ce52c772d7844 SHA1: 713684e5ae5bb78bf1bf36b90707766f9c3b427d SHA256: a91a3b4f371c799bc7390b6355e9918004b8733630a62cee5a3acfe8c95a0eb6 Description: office productivity suite -- Southern_sotho language package Homepage: http://www.libreoffice.org Description-md5: 3eddf8b8a781fcc8d00658fd683751c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-sv Priority: optional Section: localization Installed-Size: 2873 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sv Suggests: hunspell-dictionary-sv | myspell-dictionary-sv, hyphen-sv, libreoffice-grammarcheck-sv, libreoffice-help-sv, mythes-sv Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-sv_4.2.3~rc3-0ubuntu1_all.deb Size: 457906 MD5sum: cc26db3cce32cfe447ea231766c37cb2 SHA1: b9beb9c0bd2bb90d5eeaf1f8ed4935f9c4943bf8 SHA256: b8fdba8cdf97a8cd739f7ffcaeb8e95f026854fd8b242e80b89bd6c1d49185ea Description: office productivity suite -- Swedish language package Homepage: http://www.libreoffice.org Description-md5: 94e08d9ebf4885b6a199a8604f8e4623 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ta Priority: optional Section: localization Installed-Size: 3620 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ta, ttf-tamil-fonts Suggests: hunspell-dictionary-ta | myspell-dictionary-ta, hyphen-ta, libreoffice-grammarcheck-ta, libreoffice-help-ta, mythes-ta Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ta_4.2.3~rc3-0ubuntu1_all.deb Size: 425112 MD5sum: a50fc5745be2f66195ecfa07e12dbd46 SHA1: b67974b43ced71d7e7df2899f616ca1ac5dc2808 SHA256: 1febef183ede841ce89e80004ea8d391b87535ca88b410068c221e05a8e49ce4 Description: office productivity suite -- Tamil language package Homepage: http://www.libreoffice.org Description-md5: f1a39c06a2dd67a9a2480ae41bbfcff0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-te Priority: optional Section: localization Installed-Size: 3536 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-te, ttf-telugu-fonts Suggests: hunspell-dictionary-te | myspell-dictionary-te, hyphen-te, libreoffice-grammarcheck-te, libreoffice-help-te, mythes-te Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-te_4.2.3~rc3-0ubuntu1_all.deb Size: 430026 MD5sum: 585c4c13a7b3affc22aaa7ad817cd6f5 SHA1: 4d1115fe70e742bc036a9026563c477fb466f5ee SHA256: 7666511611ac207affa994a9cefcb74afa055f540269ee8184daf58d2322ddfe Description: office productivity suite -- Telugu language package Homepage: http://www.libreoffice.org Description-md5: 61e424cfb84420f8dc211c66f1b3a533 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-tg Priority: optional Section: localization Installed-Size: 2983 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-tg Suggests: hunspell-dictionary-tg | myspell-dictionary-tg, hyphen-tg, libreoffice-grammarcheck-tg, libreoffice-help-tg, mythes-tg Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-tg_4.2.3~rc3-0ubuntu1_all.deb Size: 400812 MD5sum: 4c3df734ee5e3188622e128f41fefc82 SHA1: e95c5d6aa2ef9158cc840d531323161366efb5a4 SHA256: deea0bf32e026cae7d2dce1c6c76c6007c7d293afd97f65ed3584d2ce2f43482 Description: office productivity suite -- Tajik language package Homepage: http://www.libreoffice.org Description-md5: 20867b7b1d2eafbaca5ff6af5b2d57c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-th Priority: optional Section: localization Installed-Size: 3302 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-th, font-thai-tlwg Suggests: hunspell-dictionary-th | myspell-dictionary-th, hyphen-th, libreoffice-grammarcheck-th, libreoffice-help-th, mythes-th Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-th_4.2.3~rc3-0ubuntu1_all.deb Size: 407642 MD5sum: ff437441e1e3954f8564846f913e1b8c SHA1: 77df20885420ebd4d6f1e5e5d5ce4c65e5e6c860 SHA256: a8a264efc7f7e5f7782c3896e70d30262c78011a176984521e8690c2358f5270 Description: office productivity suite -- Thai language package Homepage: http://www.libreoffice.org Description-md5: 94a998c14aeff6049d9b90810598f1dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-tn Priority: optional Section: localization Installed-Size: 2731 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.5-12) | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-tn Suggests: hunspell-dictionary-tn | myspell-dictionary-tn, hyphen-tn, libreoffice-grammarcheck-tn, libreoffice-help-tn, mythes-tn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-tn_4.2.3~rc3-0ubuntu1_all.deb Size: 393156 MD5sum: 6340b9637f65837530bfdd4b9dbd7584 SHA1: afefbcc4955788d0bd2fdac904ed84fd4a2c499b SHA256: ccbc544264f6aa5cad43dbff8a55447e4fb31345cbc67aabf3eab16138936ee6 Description: office productivity suite -- Tswana language package Homepage: http://www.libreoffice.org Description-md5: 7da81d27f41218d11fbd8aabceec792c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-tr Priority: optional Section: localization Installed-Size: 2803 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-tr Suggests: hunspell-dictionary-tr | myspell-dictionary-tr, hyphen-tr, libreoffice-grammarcheck-tr, libreoffice-help-tr, mythes-tr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-tr_4.2.3~rc3-0ubuntu1_all.deb Size: 419270 MD5sum: 73636c37ffdcbe3c21716abfe092ca9b SHA1: 0e979319013e1ec5f9c9176b7c50f0f437b501a8 SHA256: 0f845be4fd62bc6fbf1580142b152f625c063491565df100ba0ebfed857ee419 Description: office productivity suite -- Turkish language package Homepage: http://www.libreoffice.org Description-md5: df7d8cde01531055398d2aa9010f77bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ts Priority: optional Section: localization Installed-Size: 2788 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.5-12) | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ts Suggests: hunspell-dictionary-ts | myspell-dictionary-ts, hyphen-ts, libreoffice-grammarcheck-ts, libreoffice-help-ts, mythes-ts Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ts_4.2.3~rc3-0ubuntu1_all.deb Size: 400076 MD5sum: 4989f19f51204fa19603230cbc5c95ab SHA1: 5002144d3b6e26397ad2e5a378e0e774fb77d8e5 SHA256: 8ab6069fb045a604c2f7bed857b2f784360c5f18f146af4f9bd5447904f2e296 Description: office productivity suite -- Tsonga language package Homepage: http://www.libreoffice.org Description-md5: 29ca3694d6ba2d256e546fdcdc5b65bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-ug Priority: optional Section: localization Installed-Size: 3176 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ug Suggests: hunspell-dictionary-ug | myspell-dictionary-ug, hyphen-ug, libreoffice-grammarcheck-ug, libreoffice-help-ug, mythes-ug Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ug_4.2.3~rc3-0ubuntu1_all.deb Size: 398158 MD5sum: 24b5a45f89e1b492c7381115b904882f SHA1: 5dc791179e966cd5e3a4ca03396da77a11848b34 SHA256: 54163df943affc734160224bc906c7b8bb45c5c21a0c7704a83f504cd079ead4 Description: office productivity suite -- Uighur language package Homepage: http://www.libreoffice.org Description-md5: ca1d8cb61ea8620dc7ff4ea41c7dfe12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-uk Priority: optional Section: localization Installed-Size: 3209 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-uk Suggests: hunspell-dictionary-uk | myspell-dictionary-uk, hyphen-uk, libreoffice-grammarcheck-uk, libreoffice-help-uk, mythes-uk Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-uk_4.2.3~rc3-0ubuntu1_all.deb Size: 407992 MD5sum: 1d994546d94f1ad3780d6b5c0fc41177 SHA1: 72ebbb7570df852e8e5821d2aeb9a6de764d78e5 SHA256: 094013ec71996e61e14fe0876f2815fb8908f3afca4bdace9a029c05a6ae6d65 Description: office productivity suite -- Ukrainian language package Homepage: http://www.libreoffice.org Description-md5: 6f386a310674737ccb0fc8c3aaefc90e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-uz Priority: optional Section: localization Installed-Size: 2753 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-uz Suggests: hunspell-dictionary-uz | myspell-dictionary-uz, hyphen-uz, libreoffice-grammarcheck-uz, libreoffice-help-uz, mythes-uz Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-uz_4.2.3~rc3-0ubuntu1_all.deb Size: 389152 MD5sum: afb0f82172c513cd5587e6074b15025a SHA1: de78744ce7c663b21a4eff7b4abac0a1f4f30131 SHA256: c4ab9f2880cba1c2f28bc1ca3e3674edfaada61c9109f04f211dd128dc0038a3 Description: office productivity suite -- Uzbek language package Homepage: http://www.libreoffice.org Description-md5: a7da1f6ae1fcdfa64f696aed12dc759d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ve Priority: optional Section: localization Installed-Size: 2789 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ve Suggests: hunspell-dictionary-ve | myspell-dictionary-ve, hyphen-ve, libreoffice-grammarcheck-ve, libreoffice-help-ve, mythes-ve Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ve_4.2.3~rc3-0ubuntu1_all.deb Size: 401926 MD5sum: b9a6d8411ec2f6d74b4e646cee81b5fd SHA1: 8cb7d3e029631f0ac0d3e280b4bb13fa952bdae7 SHA256: 22a067cc91c064192cb2f75e5821e24232714d9d50298e10cce89c38a449c987 Description: office productivity suite -- Venda language package Homepage: http://www.libreoffice.org Description-md5: 7bb286307dfd6105c62d2c54772e83fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-vi Priority: optional Section: localization Installed-Size: 2833 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-vi Suggests: hunspell-dictionary-vi | myspell-dictionary-vi, hyphen-vi, libreoffice-grammarcheck-vi, libreoffice-help-vi, mythes-vi Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-vi_4.2.3~rc3-0ubuntu1_all.deb Size: 395548 MD5sum: b28993b5d26c760ef08327bf61297a6b SHA1: 9cec7e7ec0e823a01322730fda6ce36996b71ea8 SHA256: 99e7bd00bedaf11d038f170fdaaf0efaf509386c86489de78f2a516fc7f6fe65 Description: office productivity suite -- Vietnamese language package Homepage: http://www.libreoffice.org Description-md5: baa160c324599bd2156dca97789a430a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-xh Priority: optional Section: localization Installed-Size: 2801 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-xh Suggests: hunspell-dictionary-xh | myspell-dictionary-xh, hyphen-xh, libreoffice-grammarcheck-xh, libreoffice-help-xh, mythes-xh Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-xh_4.2.3~rc3-0ubuntu1_all.deb Size: 406482 MD5sum: 02b2dadcb42cd2de90c1675ee7ea8995 SHA1: adb8cab3b5bb66edfe310ed003f45ab34e8a4cad SHA256: 79a3f806b2793fc2a9faaf2b6a759207602d5aa31d4455e9b777839b01878b8c Description: office productivity suite -- Xhosa language package Homepage: http://www.libreoffice.org Description-md5: 6124cc72bfc02b25a2a78aaa09e77b01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-za Priority: optional Section: localization Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-l10n-af, libreoffice-l10n-en-za, libreoffice-l10n-nr, libreoffice-l10n-nso, libreoffice-l10n-ss, libreoffice-l10n-st, libreoffice-l10n-tn, libreoffice-l10n-ts, libreoffice-l10n-ve, libreoffice-l10n-xh, libreoffice-l10n-zu Filename: pool/main/libr/libreoffice/libreoffice-l10n-za_4.2.3~rc3-0ubuntu2_all.deb Size: 28494 MD5sum: 263e949dbaa20d098914759ac4258b5f SHA1: 56f3a9ea471e1c8c0f65a5eb47df8524152a49fe SHA256: 876b620d4587441f4258ab26f5076bcdb1f87fd890eff571aab20d2711f94475 Description: office productivity suite -- South African language packages Homepage: http://www.libreoffice.org Description-md5: 88b25d0aaf8864e6f6b3862a477db0fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-zh-cn Priority: optional Section: localization Installed-Size: 2818 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-zh Suggests: hunspell-dictionary-zh-cn | myspell-dictionary-zh-cn, hyphen-zh-cn, libreoffice-grammarcheck-zh-cn, libreoffice-help-zh-cn, mythes-zh-cn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-zh-cn_4.2.3~rc3-0ubuntu1_all.deb Size: 444802 MD5sum: 299b5413e87344fbb1b216e0c678397d SHA1: e5833c7eda9284eb8e443f86cd95ce6924639104 SHA256: e18cae6407296130e98dde159e86bd3651c48c9b614005bbce919add52e760e8 Description: office productivity suite -- Chinese_simplified language package Homepage: http://www.libreoffice.org Description-md5: b8e748f9a21ee8996147f93a46daa148 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-zh-tw Priority: optional Section: localization Installed-Size: 2820 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-zh Suggests: hunspell-dictionary-zh-tw | myspell-dictionary-zh-tw, hyphen-zh-tw, libreoffice-grammarcheck-zh-tw, libreoffice-help-zh-tw, mythes-zh-tw Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-zh-tw_4.2.3~rc3-0ubuntu1_all.deb Size: 441658 MD5sum: eff4e19f79a2a4f0da2af67c45335aa8 SHA1: f53485def33001c69c7a8767d8617f9fd94a723e SHA256: 7cdfc2bf5bc9d79d72c36db847be43540c7e214c7267f56ec00c5cedbaa51a8a Description: office productivity suite -- Chinese_traditional language package Homepage: http://www.libreoffice.org Description-md5: 166e08e5f36a4b8b8968bda48d5eb24e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-zu Priority: optional Section: localization Installed-Size: 2778 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-zu Suggests: hunspell-dictionary-zu | myspell-dictionary-zu, hyphen-zu, libreoffice-grammarcheck-zu, libreoffice-help-zu, mythes-zu Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-zu_4.2.3~rc3-0ubuntu1_all.deb Size: 404800 MD5sum: e1621870b1387f3996c08a9cc8adae46 SHA1: e270d3f20b67a8af91b5fedbe177ce2f79acc66b SHA256: b384d627aa1091eaf833253b32ea6e4d9c2cf109e5ddd50e2ae95a8f79298eab Description: office productivity suite -- Zulu language package Homepage: http://www.libreoffice.org Description-md5: 1826bfebd2ace6bb52d52081479ab115 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-math Priority: optional Section: editors Installed-Size: 1424 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: fonts-opensymbol, libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure Filename: pool/main/libr/libreoffice/libreoffice-math_4.2.3~rc3-0ubuntu2_amd64.deb Size: 355658 MD5sum: bbcff029049bc47c5873cb8d81d8ba37 SHA1: fdfc2e892ee00aeb080826d1d84068b2a09ad12d SHA256: d94e968582891a55e17df6d4542d2b4be799793a959327583cbcedc0c6951912 Description: office productivity suite -- equation editor Homepage: http://www.libreoffice.org Description-md5: 66f3b39e514cc02ac689ec67f6ed274a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-nlpsolver Priority: extra Section: math Installed-Size: 261 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: nlpsolver Version: 0.9~beta1-9ubuntu1 Depends: libreoffice-calc (>= 1:3.0~), libreoffice-core (>= 1:3.3~), default-jre-headless | java5-runtime | java6-runtime Filename: pool/main/n/nlpsolver/libreoffice-nlpsolver_0.9~beta1-9ubuntu1_all.deb Size: 79598 MD5sum: 9f9832d11518c8adf7818208b71884b5 SHA1: 378dc781fd8f72a1f1678827309db2092a45844c SHA256: 98a8c7c0d54442356f408e72378fe489165768373a9d53491d83c30931e207d0 Description: "Solver for Nonlinear Programming" extension for LibreOffice Description-md5: fae46d5df372eb372a1c97e3831f88bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-officebean Priority: optional Section: java Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-java-common (>= 1:4.2.3~rc3~), default-jre | gcj-jre | openjdk-7-jre | openjdk-6-jre | sun-java5-jre | sun-java6-jre | java5-runtime | jre, ure, libc6 (>= 2.2.5) Filename: pool/main/libr/libreoffice/libreoffice-officebean_4.2.3~rc3-0ubuntu2_amd64.deb Size: 69250 MD5sum: 6b4383ea795c2f7c11fdba9447c4e0e1 SHA1: 05344645929eb9eb73635aa9589eb1efa0a65ab6 SHA256: 002faa93b094662ffc0dc9257b78f2a3ab352f1a970426ccd2380d1930786bfd Description: office productivity suite -- Java bean Homepage: http://www.libreoffice.org Description-md5: 75283d81d9fbc2478568186149138f66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-ogltrans Priority: extra Section: graphics Installed-Size: 404 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-common, libreoffice-core, libreoffice-impress, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libglu1-mesa | libglu1, libstdc++6 (>= 4.1.1), libx11-6, uno-libs3 (>= 4.1.0~alpha), ure Breaks: ure (<< 1.5.1+OOo3.1.1-15) Filename: pool/main/libr/libreoffice/libreoffice-ogltrans_4.2.3~rc3-0ubuntu2_amd64.deb Size: 77596 MD5sum: 176d8560241191d4d5ba13e6e19311c4 SHA1: d1b84f14698cc5c35963fdef7b92d161f0af9662 SHA256: ac5ab7ce87adb72d345be2689acfc5bcf572b69156a25947c87f84ef07c70e30 Description: LibreOffice Impress extension for transitions using OpenGL Enhances: libreoffice-impress Homepage: http://www.libreoffice.org Description-md5: dfaf53d76ded8d3e2af3ae1257649704 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-pdfimport Priority: extra Section: misc Installed-Size: 787 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libpoppler44 (>= 0.24.5), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure, zlib1g (>= 1:1.1.4) Breaks: libreoffice-common (<< 1:3.5~), libreoffice-core (<< 1:3.5~) Filename: pool/main/libr/libreoffice/libreoffice-pdfimport_4.2.3~rc3-0ubuntu2_amd64.deb Size: 220166 MD5sum: 8d0ccead475c2a720739ea3806547b1c SHA1: 96f3e96573adf8823cfeca7a4ea0fc5157d4d93c SHA256: f2c2d21459514614de3d58448238d506f6fe90858c1cfb1656ae3e53f55adbca Description: PDF Import component for LibreOffice Homepage: http://www.libreoffice.org Description-md5: 7069a2bfbe2c169ff2e9e9fddbca6bca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-presentation-minimizer Priority: optional Section: misc Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-impress (>= 1:4.2.0~) Filename: pool/main/libr/libreoffice/libreoffice-presentation-minimizer_4.2.3~rc3-0ubuntu2_all.deb Size: 26546 MD5sum: 8065af449ad28ed37264867f89fd856a SHA1: 3ce09d4264eceb51aa4d6dd29adf3fa9e447d7b4 SHA256: af1c0141ec5f2446540c6654de7a17a82b2aaf6a3069bbf27e37225a1ccceacd Description: transitional package for the LibreOffice presentation minimizer Homepage: http://www.libreoffice.org Description-md5: 5380696ac4df557aef6595509ad8c35d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-sdbc-firebird Priority: optional Section: database Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core Filename: pool/main/libr/libreoffice/libreoffice-sdbc-firebird_4.2.3~rc3-0ubuntu2_amd64.deb Size: 20840 MD5sum: 2c62f7a98861af71ebb4ddef1c418214 SHA1: f39fde9f0df68512fd048a476a44ed0ac8f7c1ea SHA256: 52dc17c3af7d16a8c41bbb35c037822ae288f7ff125e708a74dd16f212237f48 Description: Firebird SDBC driver for LibreOffice Enhances: libreoffice-base-drivers Homepage: http://www.libreoffice.org Description-md5: 4ad372e2554b0f42b39c7e1325d5e6d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libreoffice-sdbc-hsqldb Priority: optional Section: database Installed-Size: 546 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-base (<< 1:4.2~) Depends: libreoffice-core, libreoffice-java-common (>= 1:4.2.3~rc3~), libhsqldb1.8.0-java Filename: pool/main/libr/libreoffice/libreoffice-sdbc-hsqldb_4.2.3~rc3-0ubuntu2_amd64.deb Size: 126048 MD5sum: d5841545c383f35f7b8edcc95263a91a SHA1: 3f75588c441db026abca567d5e3a51272528bf55 SHA256: 55b6289675586f16f88dbaf2bfb111d9aa60d50c80d747f56db2227b06351a37 Description: HSQLDB SDBC driver for LibreOffice Enhances: libreoffice-base-drivers Homepage: http://www.libreoffice.org Description-md5: 54ed9715a25b1dae2ad2d3a9b6838a65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libreoffice-style-human Priority: optional Section: editors Installed-Size: 3117 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Provides: libreoffice-style, libreoffice-style-default Recommends: libreoffice-core Suggests: crystalcursors, kde-icons-crystal Filename: pool/main/libr/libreoffice/libreoffice-style-human_4.2.3~rc3-0ubuntu2_all.deb Size: 1740472 MD5sum: b4f18b17d1987069be032c545533a595 SHA1: 91fbc71519588ad50bf4b32ad3de318d14ca34a0 SHA256: f6f5b2d2dd439f3652feb1fd968df58f117da1ab403ec373e4b52ed403d74316 Description: office productivity suite -- Human symbol style Homepage: http://www.libreoffice.org Description-md5: 69f18f7852988e1365a9a97ee69965b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libreoffice-style-tango Priority: optional Section: editors Installed-Size: 2802 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-common (<< 1:3.3.0~rc4-2) Provides: libreoffice-style Recommends: libreoffice-core Suggests: tango-icon-theme Filename: pool/main/libr/libreoffice/libreoffice-style-tango_4.2.3~rc3-0ubuntu2_all.deb Size: 1622268 MD5sum: c724612c897e0bc207fa4749e6eb9bb4 SHA1: 652321ec795e7a3575ef3bc2ba9b8469904e288f SHA256: bd9bf35cfff4bd60e6fd2d0a5867b3b7aa661b78fa041fee8b9d78afcf1afc84 Description: office productivity suite -- Tango symbol style Homepage: http://www.libreoffice.org Description-md5: ec575ae6d1025f570b9471aee7e05d3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-voikko Priority: optional Section: text Installed-Size: 278 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: amd64 Version: 4.0-1 Provides: libreoffice-hyphenation-fi, libreoffice-spellcheck-fi Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libvoikko1, uno-libs3 (>= 4.0.0~beta), ure, voikko-fi, libreoffice-core Recommends: libreoffice | libreoffice-writer | libreoffice-calc | libreoffice-impress | libreoffice-draw Filename: pool/main/libr/libreoffice-voikko/libreoffice-voikko_4.0-1_amd64.deb Size: 62964 MD5sum: dd21c3579f63be08b5e3b504c70c6ccb SHA1: f200cc80375af4dad4aaaa7cc009c33b16c306c7 SHA256: 55ed965a5d76f4f89a1ffe5c50541fb97fd55a274b135045feaf1fb1fe59c228 Description: Spellchecker, grammar checker and hyphenator for LibreOffice Enhances: libreoffice Homepage: http://voikko.sourceforge.net/ Description-md5: 35322c6ea2a519660d5284a6e2a4e188 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-writer Priority: optional Section: editors Installed-Size: 37570 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-core (<< 1:3.3.2-5) Depends: libreoffice-base-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.6), libwpd-0.9-9, libwpg-0.2-2, libwps-0.2-2, libxml2 (>= 2.7.4), uno-libs3 (>= 4.2.0~rc1), ure, zlib1g (>= 1:1.1.4) Recommends: libreoffice-math Suggests: libreoffice-base, libreoffice-gcj, libreoffice-java-common (>= 1:4.2.3~rc3~), default-jre | gcj-jre | openjdk-7-jre | openjdk-6-jre | sun-java5-jre | sun-java6-jre | java5-runtime | jre Filename: pool/main/libr/libreoffice/libreoffice-writer_4.2.3~rc3-0ubuntu2_amd64.deb Size: 9463250 MD5sum: acbe33c0dc1d9de01ed33d552585d20c SHA1: 9eff1c79785bec7336ffa36a0e1574b7234afba9 SHA256: 608c537713bd9dfb2788cfff2c0dcb46d84badd25f12156725973c03b55dfa8b Description: office productivity suite -- word processor Homepage: http://www.libreoffice.org Description-md5: 7ddf1a7be67dc22b315f212f564325e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: librest-0.7-0 Priority: optional Section: libs Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: librest Version: 0.7.90-0ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.28.0), libsoup-gnome2.4-1 (>= 2.27.4), libsoup2.4-1 (>= 2.30), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/libr/librest/librest-0.7-0_0.7.90-0ubuntu1_amd64.deb Size: 37438 MD5sum: 77e9969475166ec8b55e01c80d8d046a SHA1: e677312b8ee2a899bfb99b280daac3ba6daa87d3 SHA256: 5889ebb5a882ecb502f2bfec7e637b310f4d71608716f40402c91ad9bc0a4a9f Description: REST service access library Multi-Arch: same Homepage: http://www.gnome.org/ Description-md5: b9596f15c90979058521292c03c3efb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: librest-0.7-0-dbg Priority: extra Section: debug Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: librest Version: 0.7.90-0ubuntu1 Depends: librest-0.7-0 (= 0.7.90-0ubuntu1) Filename: pool/main/libr/librest/librest-0.7-0-dbg_0.7.90-0ubuntu1_amd64.deb Size: 127024 MD5sum: 8fecbc8bf2b1880db78f64c53abec593 SHA1: b27c4f183b3284fb8ae944d08a403037929d93fa SHA256: 544ec73456c19b5e7a5225bf1d175035370c3b5b32ca565d609f9a0c3197f364 Description: REST service access library (Debug files) Homepage: http://www.gnome.org/ Description-md5: b9afcc320a7161336322966274d3f093 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librest-dev Priority: optional Section: libdevel Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: librest Version: 0.7.90-0ubuntu1 Depends: gir1.2-rest-0.7 (= 0.7.90-0ubuntu1), librest-0.7-0 (= 0.7.90-0ubuntu1), libsoup2.4-dev, libxml2-dev Filename: pool/main/libr/librest/librest-dev_0.7.90-0ubuntu1_amd64.deb Size: 30924 MD5sum: 6476cf51e14034496c462a272cf68db8 SHA1: 8e5dd8903790976d34a0c1b055fb3c0f2b24c337 SHA256: f63a7af3273ad441a912a35766dd32678fe3e4a4a322de23581309a1659e5abe Description: REST service access library (development headers) Homepage: http://www.gnome.org/ Description-md5: 094d9a02839014f2dcb9afb78eb411e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librest-doc Priority: optional Section: doc Installed-Size: 346 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: all Source: librest Version: 0.7.90-0ubuntu1 Suggests: librest-dev Filename: pool/main/libr/librest/librest-doc_0.7.90-0ubuntu1_all.deb Size: 38264 MD5sum: 3cacdcfc4ae97724e626d521cbf7c57b SHA1: a7cc44137b9ef24888bf9b6520f41d914c7b3e34 SHA256: 90cf64072c1cc1fb229c5c56b0d0df33628e283bc792cda6e5eb742f3632c939 Description: REST service access library (documentation) Homepage: http://www.gnome.org/ Description-md5: 5418f69c43d240c1cca3c94bb7c61be5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librest-extras-0.7-0 Priority: optional Section: libs Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: librest Version: 0.7.90-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.27), librest-0.7-0 (>= 0.7.8), libsoup2.4-1 (>= 2.30) Pre-Depends: multiarch-support Filename: pool/main/libr/librest/librest-extras-0.7-0_0.7.90-0ubuntu1_amd64.deb Size: 14828 MD5sum: cf33788ca5aef744584be00961c9f190 SHA1: c1ad34100933c30acc02ce7f15b03b3eea030ded SHA256: 3077a4676d25a0ff644c5e2f186e8cde3c77565e33bdf522c7b33e413881e7eb Description: REST service access library extra components Multi-Arch: same Homepage: http://www.gnome.org/ Description-md5: bccf414e2c1699613c362f86b7c5326e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librest-extras-dev Priority: optional Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: amd64 Source: librest Version: 0.7.90-0ubuntu1 Depends: gir1.2-rest-extras-0.7 (= 0.7.90-0ubuntu1), librest-dev, librest-extras-0.7-0 (= 0.7.90-0ubuntu1) Filename: pool/main/libr/librest/librest-extras-dev_0.7.90-0ubuntu1_amd64.deb Size: 7684 MD5sum: 290907cb12d07299373da09fd7c611ea SHA1: 697bfe5b235f138e1cfb21c142e425dc834e590a SHA256: 0d248faad0631dfbfb94ee0166e43f719768cd496364f3407a453b5bb5ff73ab Description: REST service access library extra components (development headers) Homepage: http://www.gnome.org/ Description-md5: 0352efef165d7b2c319eba2686dc11cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librhino-java Priority: optional Section: java Installed-Size: 1202 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: rhino Version: 1.7R4-2 Replaces: rhino (<< 1.7R3~pre-2) Suggests: rhino Conflicts: rhino (<< 1.7R3~pre-2) Filename: pool/main/r/rhino/librhino-java_1.7R4-2_all.deb Size: 1095944 MD5sum: b5c2f318cc2a424ef4675660628837d0 SHA1: 131f1b03f91e3a82f722825a7388295a664bb679 SHA256: 15c6e798282ded5bc5ce6e62481858c066af7e9a3b39027650c59d82e1d2e880 Description: Libraries for rhino Java Script Engine Homepage: http://www.mozilla.org/rhino/ Description-md5: 56304b110a7e11df7b042a8bec6b6f22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librhino-java-doc Priority: optional Section: doc Installed-Size: 8292 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: rhino Version: 1.7R4-2 Replaces: rhino-doc (<< 1.7R3~pre-2) Suggests: rhino Conflicts: rhino-doc (<< 1.7R3~pre-2) Filename: pool/main/r/rhino/librhino-java-doc_1.7R4-2_all.deb Size: 810228 MD5sum: f0988e7b1cfd43dd904e679a0da005fe SHA1: 74c78f14480d99cbd039935c70dac21fd95c1e1b SHA256: 8e0dae3d457d7a2013333430e37be03a54b5f7e7379b701b5fd8f74ee2966c73 Description: Documentation for rhino Java Script Engine Homepage: http://www.mozilla.org/rhino/ Description-md5: 8acc09ff13d5854b58d6cf75b621356e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librhythmbox-core8 Priority: optional Section: libs Installed-Size: 1731 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: rhythmbox Version: 3.0.2-0ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libgirepository-1.0-1 (>= 0.9.3), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.6.0), libgudev-1.0-0 (>= 146), libjson-glib-1.0-0 (>= 0.12.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpeas-1.0-0 (>= 1.0.0), libsoup2.4-1 (>= 2.33.92), libtdb1 (>= 1.2.7+git20101214), libtotem-plparser18 (>= 3.10.0), libwebkitgtk-3.0-0 (>= 1.3.10), libxml2 (>= 2.7.4) Filename: pool/main/r/rhythmbox/librhythmbox-core8_3.0.2-0ubuntu1_amd64.deb Size: 467490 MD5sum: 971449f3fe5fe4079e4df3b997e37324 SHA1: 3081e821f094b8da71f569843f9bc012e256a07a SHA256: a9c7a3538c9dc63dd424b871138f6397e437152f61f484f8abba36170444b313 Description: support library for the rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: c3a718f17d4a5d6b021901c3db955972 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libroken18-heimdal Priority: standard Section: libs Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libroken18-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 40042 MD5sum: 0d5ef83b65e5abb7c1509f29c3fcde44 SHA1: 071fca3844a029dfb946258fcc5aa0ca59c854c7 SHA256: d652d60ef80c79177e8752cbb13f0750d61da7cc32cdd209d98bf1c0d13d8b37 Description: Heimdal Kerberos - roken support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 09767e23fe6e020c9a8665bbe1cfa203 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: librole-tiny-perl Priority: optional Section: perl Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.003002-1 Depends: perl, libclass-method-modifiers-perl Breaks: libmoo-perl (<< 0.009014) Filename: pool/main/libr/librole-tiny-perl/librole-tiny-perl_1.003002-1_all.deb Size: 17790 MD5sum: 5a835caa68f3ef840907b72432119f46 SHA1: 0faa6464737ff3d51e9da1f6867afa137170c7af SHA256: a79245c92a23b6d0b348b6d42ce661a98ef61a41145deb37bd539d1fa5961f57 Description: Perl module for minimalist role composition Homepage: https://metacpan.org/release/Role-Tiny/ Description-md5: fe9c69a8e958a2d37cc15895cfa1bc6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libroman-perl Priority: optional Section: perl Installed-Size: 56 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.23-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/libr/libroman-perl/libroman-perl_1.23-1_all.deb Size: 8746 MD5sum: 2f51a5d93a3d5268a7677ec5813aefab SHA1: 9dd820c207799d0b8e270b21da4f5c264190104c SHA256: d178562a6b7ea6a5d0d37a7fe2b1d60ac5a0e3d4a999203c425a127a486ed74a Description: Perl module for converting between Roman and Arabic numerals Homepage: http://search.cpan.org/dist/Roman/ Description-md5: 969e5775386cf882386fabcb305ebacc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librpm-dbg Priority: extra Section: debug Installed-Size: 1557 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: rpm Version: 4.11.1-3 Provides: rpm-dbg Depends: librpm3 (= 4.11.1-3) Filename: pool/main/r/rpm/librpm-dbg_4.11.1-3_amd64.deb Size: 1243964 MD5sum: a820d3139b7e8444cec24d8e902e1beb SHA1: c4bb6588e263228ed41bf3b788fe0b191bd7330f SHA256: 44723841f2252526fadc30299815d5e921d19e25dc87eb29994c5ee5a09a832c Description: debugging symbols for RPM Homepage: http://rpm.org/ Description-md5: b940250aa3e76b7ce785711342eb904c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librpm-dev Priority: extra Section: libdevel Installed-Size: 306 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: rpm Version: 4.11.1-3 Replaces: librpm0-dev, librpm1-dev (<< 4.0), librpm4.4, rpm (<< 2.5) Provides: librpm0-dev Depends: librpm3 (= 4.11.1-3), librpmio3 (= 4.11.1-3), librpmbuild3 (= 4.11.1-3), librpmsign1 (= 4.11.1-3), libc6-dev, libpopt-dev (>= 1.6.4), libdb-dev, libbz2-dev, libz-dev, libxml2-dev, libreadline-dev, libselinux1-dev, libsqlite3-dev Conflicts: librpm0-dev, librpm4.4 Breaks: librpm1-dev (<< 4.0) Filename: pool/main/r/rpm/librpm-dev_4.11.1-3_amd64.deb Size: 62960 MD5sum: 610a6105b00566124dd8b850e5c37c18 SHA1: cc15138942c3641e18ca95451fa5e5009180d86a SHA256: 61c2bcff08b9f990607f1664e603d34be06dbeaf1ad798edc25e514320273eee Description: RPM shared library, development kit Homepage: http://rpm.org/ Description-md5: b61ce5bb0129a6b93ca353a53ac9c1e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librpm3 Priority: optional Section: libs Installed-Size: 457 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: rpm Version: 4.11.1-3 Depends: libc6 (>= 2.17), libcap2 (>= 2.10), libdb5.3, liblua5.2-0, libpopt0 (>= 1.14), librpmio3 (>= 4.11.0.1) Recommends: rpm-common (= 4.11.1-3) Filename: pool/main/r/rpm/librpm3_4.11.1-3_amd64.deb Size: 183680 MD5sum: 0c4110626b8feeee777d770e9ff10e26 SHA1: ec76b066b697d01d560b73776ee3c40bc3149f08 SHA256: 32f9db8f564d232b53af5de094ae025f72bac1448de6e8d0c4d59e0743d8ee7c Description: RPM shared library Homepage: http://rpm.org/ Description-md5: 43dcb3c7127ac155f80bce6eb02448dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librpmbuild3 Priority: optional Section: libs Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: rpm Version: 4.11.1-3 Depends: libc6 (>= 2.17), libmagic1, libpopt0 (>= 1.14), librpm3 (>= 4.11.1), librpmio3 (>= 4.11.0.1) Filename: pool/main/r/rpm/librpmbuild3_4.11.1-3_amd64.deb Size: 66160 MD5sum: 9a99222f17ff2070c7995695872e0fc3 SHA1: 4fa8c35e9b6084d123e58eaeddf62e4bb35d6826 SHA256: 9312ed6bf6665cf22830e77d2ce6dea465927d67a0b5d5797887c965c5b0d3d5 Description: RPM build shared library Homepage: http://rpm.org/ Description-md5: 6c8fdac9007ad1483cb5ded0c7a78d4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librpmio3 Priority: optional Section: libs Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: rpm Version: 4.11.1-3 Depends: libbz2-1.0, libc6 (>= 2.17), libelf1 (>= 0.131), liblua5.2-0, liblzma5 (>= 5.1.1alpha+20120614), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.5), libpopt0 (>= 1.14), zlib1g (>= 1:1.1.4) Filename: pool/main/r/rpm/librpmio3_4.11.1-3_amd64.deb Size: 80868 MD5sum: 04f21c670b2355d398d8d2aa8448ef53 SHA1: 99639749ef5e43b84f307968aa11494a272850c1 SHA256: 6703bc3ea4b479cd0c77a47a0878123500204bbf06aabaa36a0b149ea6335c4a Description: RPM IO shared library Homepage: http://rpm.org/ Description-md5: b102b4700b4f67e72b6c457300d1dee3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librpmsign1 Priority: optional Section: libs Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: rpm Version: 4.11.1-3 Depends: libc6 (>= 2.4), libpopt0 (>= 1.14), librpm3 (>= 4.10.0), librpmio3 (>= 4.10.0) Filename: pool/main/r/rpm/librpmsign1_4.11.1-3_amd64.deb Size: 9082 MD5sum: 49dba1d9c66c9335e66d02fcbcf445db SHA1: 7a8d5ae44325b77488d4ed64078c48d9f0551c79 SHA256: 6688859777cf15083c70e9cf5c17e509fa587098c5fcf6678f6f837b74e0634c Description: RPM signing shared library Homepage: http://rpm.org/ Description-md5: c2958f0a844ec375af9b40fae17c7280 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librrd-dev Priority: optional Section: libdevel Installed-Size: 1097 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: amd64 Source: rrdtool Version: 1.4.7-2ubuntu5 Replaces: librrd2-dev Provides: librrd2-dev Depends: libc6-dev | libc-dev, librrd4 (= 1.4.7-2ubuntu5), libpng12-dev, zlib1g-dev, libcairo2-dev, libpango1.0-dev, libfreetype6-dev, libxml2-dev Conflicts: librrd2-dev Filename: pool/main/r/rrdtool/librrd-dev_1.4.7-2ubuntu5_amd64.deb Size: 125580 MD5sum: c9e0c61dbcde3dbd018c97b45789b32a SHA1: 61eefdf6df47b0bd44ba3f5a695f192cfee9aca3 SHA256: be6e5eae578bb43705e464231431111fdaacb6c218987b2e249dc24752ca6299 Description: time-series data storage and display system (development) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: f4bfb8003b3ec54ff47424f81d29f24f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librrd-ruby1.9.1 Priority: optional Section: ruby Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: amd64 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: libc6 (>= 2.4), librrd4 (>= 1.4~rc2), libruby1.9.1 (>= 1.9.2.0) Filename: pool/main/r/rrdtool/librrd-ruby1.9.1_1.4.7-2ubuntu5_amd64.deb Size: 10804 MD5sum: 02b73056d519da0d375979988f3438af SHA1: e727eeb008a199061e7189bbe509f576170f1aaf SHA256: c0f44e7b890001775f589cbc967f2bc6713c8be94c6c94e3cc9bb0fe3b3e968b Description: time-series data storage and display system (Ruby 1.9.1 interface) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: a9ec11657f8a42d378197e5464a5153a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librrd4 Priority: optional Section: libs Installed-Size: 631 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: amd64 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libdbi1 (>= 0.8.4), libglib2.0-0 (>= 2.12.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpng12-0 (>= 1.2.13-4), libxml2 (>= 2.7.4) Recommends: ttf-dejavu | ttf-bitstream-vera Filename: pool/main/r/rrdtool/librrd4_1.4.7-2ubuntu5_amd64.deb Size: 131644 MD5sum: d82462d85d120b09a2edc631c8a42175 SHA1: 3209cad391dacfe81c090bc9f7c35bc33f8ed122 SHA256: 9996fde82db18da06f20f8c7867f0d30d7104339ce6ffe49ed69da98f57ba5c0 Description: time-series data storage and display system (runtime library) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: d5b7c32e4795a0b81d59077ab31ec1fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librrds-perl Priority: extra Section: perl Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: amd64 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.2.5), librrd4 (>= 1.4~rc2) Filename: pool/main/r/rrdtool/librrds-perl_1.4.7-2ubuntu5_amd64.deb Size: 19346 MD5sum: 22e737fca766afbc3272d6a0068107f3 SHA1: c0e02e3679798ca59a5954f5ff1673d2c2aa905f SHA256: 76ae4d66202d604a2bc7f6426c1fd4fb1b6e19bdffd3a65125917a3e12bd9e20 Description: time-series data storage and display system (Perl interface, shared) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: a2d67b95f110e653c5279d1c9b8d0802 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librsvg2-2 Priority: optional Section: libs Installed-Size: 408 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: librsvg Version: 2.40.2-1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libcroco3 (>= 0.6.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.36.0), libpangocairo-1.0-0 (>= 1.36.0), libxml2 (>= 2.8.0) Pre-Depends: multiarch-support Recommends: librsvg2-common Suggests: librsvg2-bin Filename: pool/main/libr/librsvg/librsvg2-2_2.40.2-1_amd64.deb Size: 88266 MD5sum: 5e29a9f5b037521e3e515512791a7a30 SHA1: 82c9b0b5e1e35fd60923cb2c89f1a6c0dcf076a3 SHA256: 559b95b4588d74539d9ff33389df559b8b4bb2f460b068b6dba48e3edb9c50ea Description: SAX-based renderer library for SVG files (runtime) Multi-Arch: same Homepage: http://live.gnome.org/LibRsvg Description-md5: 5955c666a37a7cde845fec0579db4217 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: librsvg2-bin Priority: optional Section: graphics Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: librsvg Version: 2.40.2-1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.6.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.2.0), librsvg2-2 (>= 2.40.2-1) Filename: pool/main/libr/librsvg/librsvg2-bin_2.40.2-1_amd64.deb Size: 15566 MD5sum: 8ec374f3fbb254fa64981844bc8eecce SHA1: b04cf539142024171b10ed03abfa33262905f0f6 SHA256: 2171e4cf469578d183d727d7341a735a5b624e4afdbddc5b8d05aa7a9cff6420 Description: command-line and graphical viewers for SVG files Multi-Arch: foreign Homepage: http://live.gnome.org/LibRsvg Description-md5: 5b2874a6506a4f661cb57262a5690742 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing, ubuntustudio-graphics Package: librsvg2-common Priority: optional Section: libs Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: librsvg Version: 2.40.2-1 Depends: libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), librsvg2-2 (= 2.40.2-1) Breaks: libgdk-pixbuf2.0-0 (<< 2.23.5-2), libgtk2.0-0 (<< 2.24.5-4) Filename: pool/main/libr/librsvg/librsvg2-common_2.40.2-1_amd64.deb Size: 4990 MD5sum: 254476a99d6ee5a0ca4f0aa61b554a22 SHA1: 5b2d0feb89fe5d80bf63b441c89783506fe0851d SHA256: 4e0b10d0f82e7e64833741cf1425e1b72d36ef647166e0a07ffb2e0ee7bdf591 Description: SAX-based renderer library for SVG files (extra runtime) Multi-Arch: same Homepage: http://live.gnome.org/LibRsvg Description-md5: ea3b9a976900e5b502f7a5919085cda4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: librsvg2-dbg Priority: extra Section: libdevel Installed-Size: 1327 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: librsvg Version: 2.40.2-1 Depends: librsvg2-2 (= 2.40.2-1) Filename: pool/main/libr/librsvg/librsvg2-dbg_2.40.2-1_amd64.deb Size: 284072 MD5sum: ff5d351809b2347eeddaa5b225cd2577 SHA1: 148bd22733f6714766ab1409791ba2902f3b3700 SHA256: 33266be3f6b87b160dc4ed34933b68169116fb72165c0d762c8e2edd2cff5ac2 Description: SAX-based renderer library for SVG files (debug) Homepage: http://live.gnome.org/LibRsvg Description-md5: 70e2b7a9cbb50f16c24118d4e3592ac7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librsvg2-dev Priority: optional Section: libdevel Installed-Size: 677 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: librsvg Version: 2.40.2-1 Depends: librsvg2-2 (= 2.40.2-1), librsvg2-common (= 2.40.2-1), gir1.2-rsvg-2.0 (= 2.40.2-1), libglib2.0-dev (>= 2.24.0), libgdk-pixbuf2.0-dev (>= 2.23.5-2), libcairo2-dev (>= 1.2.0) Suggests: librsvg2-doc Filename: pool/main/libr/librsvg/librsvg2-dev_2.40.2-1_amd64.deb Size: 97592 MD5sum: 645237f8cb1ac91914cef6e9db852856 SHA1: 43f3324ccfc70b24a5164c1ff4b2dc5775f09062 SHA256: d89113af7a38fd294151c84ecd4b22189a5ac26a29dad80f46a58054b41c4a07 Description: SAX-based renderer library for SVG files (development) Homepage: http://live.gnome.org/LibRsvg Description-md5: 88fdcac4e12a294b5c6a4086d6f525b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librsvg2-doc Priority: optional Section: doc Installed-Size: 408 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: librsvg Version: 2.40.2-1 Replaces: librsvg2-dev (<< 2.34.2-2) Suggests: devhelp Breaks: librsvg2-dev (<< 2.34.2-2) Filename: pool/main/libr/librsvg/librsvg2-doc_2.40.2-1_all.deb Size: 28818 MD5sum: 5fe3906a203beefc0ece2ec80ab5c95c SHA1: 65be20f06adce0629ae14d8d4112a05105c92775 SHA256: f6151683ee0cbd3c09c84e7d18e20d83ad523a930d78503690dee049b0cb002d Description: SAX-based renderer library for SVG files (documentation) Homepage: http://live.gnome.org/LibRsvg Description-md5: 6df5f01db90053b5cc6ab1c054d5a182 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librsync-dbg Priority: extra Section: devel Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Andrey Rahmatullin Architecture: amd64 Source: librsync Version: 0.9.7-10 Depends: librsync1 (= 0.9.7-10) Filename: pool/main/libr/librsync/librsync-dbg_0.9.7-10_amd64.deb Size: 60228 MD5sum: 53fea0f559555e39d6da151a6883565a SHA1: 34701e8dad1fc7bfd9848cb7dc76c3709b1c1f28 SHA256: 720cd0aa2c4f242139b623545a34780198e7f9413f15232297ec1b4592a888c0 Description: rsync remote-delta algorithm library (debug) Multi-Arch: same Homepage: http://librsync.sourceforge.net/ Description-md5: c878f4d081b7905f8b664534bc83b250 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librsync-dev Priority: optional Section: libdevel Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Andrey Rahmatullin Architecture: amd64 Source: librsync Version: 0.9.7-10 Depends: librsync1 (= 0.9.7-10), libbz2-dev, libpopt-dev, zlib1g-dev Filename: pool/main/libr/librsync/librsync-dev_0.9.7-10_amd64.deb Size: 6392 MD5sum: 4713e8f87a34fe2a1adc2a4f08f22a4a SHA1: 1de8d0bed11d0ef0b876c5b9883a3afd932d171d SHA256: a46bf51ac63069d90b3f7e6cf7242ebec5b74b1c6e0a72d14bba4255fb4378c2 Description: rsync remote-delta algorithm library (development) Homepage: http://librsync.sourceforge.net/ Description-md5: ea307aaa7473a706ad1a66d631ffce5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librsync1 Priority: optional Section: libs Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Andrey Rahmatullin Architecture: amd64 Source: librsync Version: 0.9.7-10 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libr/librsync/librsync1_0.9.7-10_amd64.deb Size: 38250 MD5sum: c47dbcb99782aab97081776b8a082574 SHA1: 1b286355c926c29a3cf48a3dd40acf9702270889 SHA256: 2e0cb826f219841b74bc6a31336b40686d93b2739a8d77132c91aaec46a04fcd Description: rsync remote-delta algorithm library Multi-Arch: same Homepage: http://librsync.sourceforge.net/ Description-md5: 452126c42dad55ba12f1708398255636 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: librtmp-dev Priority: extra Section: libdevel Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: rtmpdump Version: 2.4+20121230.gitdf6c518-1 Depends: libgnutls-dev, librtmp0 (= 2.4+20121230.gitdf6c518-1) Filename: pool/main/r/rtmpdump/librtmp-dev_2.4+20121230.gitdf6c518-1_amd64.deb Size: 67086 MD5sum: bb9b4778276513898d7cb15564d644a0 SHA1: 6786cb877355fd513919cdf398b4471f4190a1dd SHA256: 5eb4d0924d5930c18e18cf82e54037e2b9e176ab2c16965cec4759a8cc9bedb4 Description: toolkit for RTMP streams (development files) Homepage: http://rtmpdump.mplayerhq.hu/ Description-md5: 79d07fae9b1baefee35311b645a2b85f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librtmp0 Priority: standard Section: libs Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: rtmpdump Version: 2.4+20121230.gitdf6c518-1 Depends: libc6 (>= 2.14), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/r/rtmpdump/librtmp0_2.4+20121230.gitdf6c518-1_amd64.deb Size: 57544 MD5sum: 8f08f96b1b80139906f282b507c2a9ff SHA1: cd9269fdf892eda92125814acb31b2a22af74eba SHA256: 132414ee8045c6579cc9a4f86fcd174a37674f143ab4c784b6d65a6a9e0bf253 Description: toolkit for RTMP streams (shared library) Multi-Arch: same Homepage: http://rtmpdump.mplayerhq.hu/ Description-md5: 2b2db094819fcb2c640b40d2367fbd10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libruby1.9.1 Priority: optional Section: libs Installed-Size: 12084 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: amd64 Source: ruby1.9.1 Version: 1.9.3.484-2ubuntu1 Replaces: irb1.8, libdbm-ruby1.9.1, libgdbm-ruby1.9.1, libopenssl-ruby1.9.1, libreadline-ruby1.9.1, rdoc1.8 Provides: libdbm-ruby1.9.1, libgdbm-ruby1.9.1, libopenssl-ruby1.9.1, libreadline-ruby1.9.1 Depends: ruby1.9.1 (= 1.9.3.484-2ubuntu1), ca-certificates, libc6 (>= 2.14), libffi6 (>= 3.0.4), libgdbm3 (>= 1.8.3), libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libssl1.0.0 (>= 1.0.0), libtinfo5, libyaml-0-2, zlib1g (>= 1:1.2.2) Conflicts: irb1.8 (<< 1.9.1.378-2~), libdbm-ruby1.9.1, libgdbm-ruby1.9.1, libopenssl-ruby1.9.1, libreadline-ruby1.9.1, rdoc1.8 (<< 1.9.1.378-2~) Filename: pool/main/r/ruby1.9.1/libruby1.9.1_1.9.3.484-2ubuntu1_amd64.deb Size: 2666920 MD5sum: b4f8eb4c21fe9972fcf77c12e204a468 SHA1: 753eae2f88f129a5f24b95b46bbd762c7aa85056 SHA256: 39d0ba2e9d700a112bd0c6048dde4e96aaf85d667777e37f2ee0105dac4f589b Description: Libraries necessary to run Ruby 1.9.1 Homepage: http://www.ruby-lang.org/ Description-md5: 311ad9570aaaa1e7d8a40da9af0fd26d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-font-meta Package: libruby1.9.1-dbg Priority: extra Section: debug Installed-Size: 5627 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: amd64 Source: ruby1.9.1 Version: 1.9.3.484-2ubuntu1 Depends: libruby1.9.1 (= 1.9.3.484-2ubuntu1) Filename: pool/main/r/ruby1.9.1/libruby1.9.1-dbg_1.9.3.484-2ubuntu1_amd64.deb Size: 4079538 MD5sum: 997d471393e5c767eabd65248b4243bf SHA1: 4e8e35900c3d6f598578d573f0382437fa8e334e SHA256: 29fa54b2430811658d7c7d80e723f16b64362fec2211ff3139a02f032dd3045f Description: Debugging symbols for Ruby 1.9.1 Homepage: http://www.ruby-lang.org/ Description-md5: 51575fc8b43a3947fe9f91f839afdfca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libruby2.0 Priority: extra Section: libs Installed-Size: 13162 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: amd64 Source: ruby2.0 Version: 2.0.0.484-1ubuntu2 Depends: libc6 (>= 2.14), libffi6 (>= 3.0.4), libgdbm3 (>= 1.8.3), libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libssl1.0.0 (>= 1.0.1), libtinfo5, libyaml-0-2, zlib1g (>= 1:1.2.2), ruby2.0 (= 2.0.0.484-1ubuntu2), libjs-jquery Filename: pool/main/r/ruby2.0/libruby2.0_2.0.0.484-1ubuntu2_amd64.deb Size: 2806568 MD5sum: c17a31e389f53924848b4c2381e2f067 SHA1: be268b139f0b00472b6724a9a0577a5c6f1ae4a8 SHA256: 8d28aafba9ceed998831a719af200abe45805ce6ec1f6f013793da5c4fb9586f Description: Libraries necessary to run Ruby 2.0 Multi-Arch: same Homepage: http://www.ruby-lang.org/ Description-md5: 2c1d3c8033e2e096c734aa0a471afced Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libs3-2 Priority: extra Section: net Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: libs3 Version: 2.0-2 Depends: libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.2), libxml2 (>= 2.7.4) Filename: pool/main/libs/libs3/libs3-2_2.0-2_amd64.deb Size: 53286 MD5sum: 7d3f6dff70882a9de57f90d57db6de23 SHA1: bed76f49b34478bdb33c7c99ceae4de23512bbc1 SHA256: dda65070f95a03fcb81c72f0b3fcfed7d1022c6834bb9ac3458c5092deef8feb Description: C Library and Tools for Amazon S3 Access Homepage: http://libs3.ischo.com/index.html Description-md5: eb85f7da5574dc8195aa83358c98e894 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libs3-dev Priority: extra Section: libdevel Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: libs3 Version: 2.0-2 Depends: libs3-2 (= 2.0-2) Filename: pool/main/libs/libs3/libs3-dev_2.0-2_amd64.deb Size: 56578 MD5sum: 6ef08464989f19877d6d6fb3029fe30f SHA1: f52cb7da6d28d0df4bdbd79c2f2b2bbf01a9a957 SHA256: 065a6e180ebda35f5871d3a5d7899696f14f7174ae8397bb5e69da761ef10b79 Description: C Development Library for Amazon S3 Access Homepage: http://libs3.ischo.com/index.html Description-md5: e05795dcf95b10c133f29bd0403dc3c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsam-dev Priority: optional Section: libdevel Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libsam4 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libsam-dev_2.3.3-1ubuntu1_amd64.deb Size: 40664 MD5sum: ed201b4eea4d98fba85c9329046c9af2 SHA1: 8e1cd1db9070ac0e08ceb19d3c6d0cba8e898eb4 SHA256: 7840143309145a11d45c632d08afd49e7cea7b6a392d643ed6b8d50c6247f25e Description: Standards-based cluster framework, Sam devel files Description-md5: 9c6178809ce7e8ec665882456002cb5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsam4 Priority: optional Section: libs Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.16), libcmap4 (>= 2.3.3), libquorum5 (>= 2.3.3) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libsam4_2.3.3-1ubuntu1_amd64.deb Size: 11086 MD5sum: 449d5976d9819fd2c86f034919bb46d0 SHA1: dbbfa0f620e69a083373a891f8182fb546330bf1 SHA256: 4baad002177aa902fc41d2079143a8d935ec9de2338795407de6a2c388c40b9e Description: Standards-based cluster framework, Sam library Description-md5: 018ac580935845d9472b83e0f158f58a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsamplerate0 Priority: optional Section: libs Installed-Size: 1500 Maintainer: Ubuntu Developers Original-Maintainer: Erik de Castro Lopo Architecture: amd64 Source: libsamplerate Version: 0.1.8-7 Replaces: samplerate-programs (<< 0.1.8-3) Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libs/libsamplerate/libsamplerate0_0.1.8-7_amd64.deb Size: 938244 MD5sum: 6b29c8f0339c1d6d61a182c39529c2ec SHA1: 0bd409a0b9c0b4c64bb636c004c3fd2a78b8cd80 SHA256: ccd4e73d0cf6f2ebf84a637f8ebcd29dfdd211626d8a3522de7b701954340ae7 Description: Audio sample rate conversion library Multi-Arch: same Homepage: http://www.mega-nerd.com/SRC/ Description-md5: 1cbecccffb58dab56ae610f3dcd51386 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsamplerate0-dev Priority: optional Section: libdevel Installed-Size: 1640 Maintainer: Ubuntu Developers Original-Maintainer: Erik de Castro Lopo Architecture: amd64 Source: libsamplerate Version: 0.1.8-7 Provides: libsamplerate-dev Depends: libsamplerate0 (= 0.1.8-7), pkg-config Conflicts: libsamplerate-dev Filename: pool/main/libs/libsamplerate/libsamplerate0-dev_0.1.8-7_amd64.deb Size: 990814 MD5sum: a507247bdab0169d9537e183a26f4891 SHA1: 220b8c072ddf084484392e2fa312ef0bcb85d30e SHA256: b4e7cbcfbab4c7fbc086605a133dfe6fb68de55908588fc90770b2babe5518df Description: Development files for audio sample rate conversion Multi-Arch: same Homepage: http://www.mega-nerd.com/SRC/ Description-md5: fb8d920f7c94f9c8678b701dd5236969 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsane Priority: optional Section: libs Installed-Size: 8966 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: sane-backends Version: 1.0.23-3ubuntu3 Replaces: libsane-extras (<< 1.0.18.14) Depends: acl, adduser, libsane-common (= 1.0.23-3ubuntu3), udev | makedev, libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.15), libgphoto2-6 (>= 2.5.2), libgphoto2-port10 (>= 2.5.2), libieee1284-3, libjpeg8 (>= 8c), libtiff5 (>= 4.0.3), libusb-1.0-0 (>= 2:1.0.8), libv4l-0 (>= 0.5.0) Pre-Depends: multiarch-support Suggests: avahi-daemon, hplip, hpoj, libsane-extras, sane-utils (>= 1.0.23-3ubuntu3) Filename: pool/main/s/sane-backends/libsane_1.0.23-3ubuntu3_amd64.deb Size: 1926174 MD5sum: eb9347dffddd68aae39c103effe6cec7 SHA1: 6863d435d94f2630f34cbf87b9da6be911b5f664 SHA256: 7f5105c9dced1245c94ad2108a9a67a004e3a0f41b86c5d2998e4d38206fdd6d Description: API library for scanners Multi-Arch: same Homepage: http://www.sane-project.org Description-md5: 2e25d5fd377d34639732efd0cee2566b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsane-common Priority: optional Section: libs Installed-Size: 3100 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: sane-backends Version: 1.0.23-3ubuntu3 Replaces: libsane (<< 1.0.22-4~) Filename: pool/main/s/sane-backends/libsane-common_1.0.23-3ubuntu3_amd64.deb Size: 449728 MD5sum: 6dd611baa8f7bada6960ddf00bdefb6f SHA1: 79fc12498c4cdef0fadeb36fffcfb5267d928b26 SHA256: 123178c21055b1272e64414b133c644146bd3172866f9a3322f5145511f6884a Description: API library for scanners -- documentation and support files Multi-Arch: foreign Homepage: http://www.sane-project.org Description-md5: 31f95687fe5e5d491a4cdaa5bfc6e2b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsane-dbg Priority: extra Section: libdevel Installed-Size: 8137 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: sane-backends Version: 1.0.23-3ubuntu3 Replaces: libsane-extras-dbg (<< 1.0.18.14) Depends: libsane (= 1.0.23-3ubuntu3) Suggests: libsane-extras-dbg Filename: pool/main/s/sane-backends/libsane-dbg_1.0.23-3ubuntu3_amd64.deb Size: 6607602 MD5sum: 62b8cd571b752f36e115986e2b330955 SHA1: 5e85c8ede18641157f4ff06222e3b015013515f1 SHA256: a8507d0370041244203d981ca7073d4a8f16a4f6513f5db7945bbf98d897d40b Description: API development library for scanners [debug symbols] Homepage: http://www.sane-project.org Description-md5: c47f04070c62e8ea2cfd6befb9133492 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsane-dev Priority: optional Section: libdevel Installed-Size: 15249 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: sane-backends Version: 1.0.23-3ubuntu3 Replaces: libsane-extras-dev (<< 1.0.18.14) Depends: libavahi-client-dev, libgphoto2-dev, libieee1284-3-dev, libjpeg-dev, libsane (= 1.0.23-3ubuntu3), libtiff5-dev, libusb-1.0-0-dev, libv4l-dev, pkg-config Suggests: libsane-extras-dev Filename: pool/main/s/sane-backends/libsane-dev_1.0.23-3ubuntu3_amd64.deb Size: 2100374 MD5sum: dc700e9e08476acade98b61fe33f4b8b SHA1: 44a9b4d66247c3b27592f11347da2a8f98fa0b2c SHA256: 8355e0f64b3b1cfc3bd92183ace77a2d1f2d6a0e7dd2fb4f3cb685d54425183a Description: API development library for scanners [development files] Homepage: http://www.sane-project.org Description-md5: e6830c8c64fd71c7d57f14514612572c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsane-hpaio Priority: optional Section: libs Installed-Size: 1274 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: amd64 Source: hplip Version: 3.14.3-0ubuntu3 Replaces: hplip (<< 3.10.6-3), hplip-data (<< 3.10.5-4ubuntu1) Depends: libc6 (>= 2.14), libcups2 (>= 1.6.0), libdbus-1-3 (>= 1.0.2), libhpmud0 Recommends: sane-utils, hplip (= 3.14.3-0ubuntu3) Breaks: hplip (<< 3.10.6-3), hplip-data (<< 3.10.5-4ubuntu1) Filename: pool/main/h/hplip/libsane-hpaio_3.14.3-0ubuntu3_amd64.deb Size: 104934 MD5sum: 23574efb679787bcc719144c71a64d5a SHA1: fe8620eeb81bbb835a1331a956624be333ea48e8 SHA256: e3e27710cbc849afaf8f7c5d6542a5042b84c2c1625eee6e7351d4c1a6ca92db Description: HP SANE backend for multi-function peripherals Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 208dafbff3569d9b6dbc7f0b94df7754 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsasl2-2 Priority: standard Section: libs Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: amd64 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Replaces: libsasl2 Depends: libc6 (>= 2.15), libsasl2-modules-db (>= 2.1.25.dfsg1-17build1) Pre-Depends: multiarch-support Recommends: libsasl2-modules (>= 2.1.25.dfsg1-17build1) Breaks: postfix (<= 2.8.3-1), slapd (<= 2.4.25-3) Filename: pool/main/c/cyrus-sasl2/libsasl2-2_2.1.25.dfsg1-17build1_amd64.deb Size: 56466 MD5sum: 4159a7ba7d3699f9ef5dee00ac7dd31b SHA1: e474ed2a5a70ad3dfaf6ea6b05ff47dc3c19fe4b SHA256: 92ee208b5933a850f2f4c5ca07959f6de321d04d1348b795e63bef62ccf34622 Description: Cyrus SASL - authentication abstraction library Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: 3c521c98e6199cc3a38294bbf7517d23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libsasl2-dev Priority: optional Section: libdevel Installed-Size: 808 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: amd64 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libsasl2-2 (= 2.1.25.dfsg1-17build1), libc6-dev Filename: pool/main/c/cyrus-sasl2/libsasl2-dev_2.1.25.dfsg1-17build1_amd64.deb Size: 311284 MD5sum: c4309589c06920ecef230c24fa007083 SHA1: de0b98a18c60dcfb644d13123d0990ce96d3b588 SHA256: 5e7bcfd3219af82edf5a9cc720c85136d1a3b2ebc5c2af6f6f4a2bb272c97514 Description: Cyrus SASL - development files for authentication abstraction library Homepage: http://www.cyrusimap.org/ Description-md5: d7f32bc5a3915152e13a4ce1d8983dbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsasl2-modules Priority: standard Section: devel Installed-Size: 229 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: amd64 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0) Suggests: libsasl2-modules-otp, libsasl2-modules-ldap, libsasl2-modules-sql, libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal Filename: pool/main/c/cyrus-sasl2/libsasl2-modules_2.1.25.dfsg1-17build1_amd64.deb Size: 64296 MD5sum: 1a8cb5f5dd0b71da280fb672f3317989 SHA1: 7fda53e4683f4223d0ca629e578748dbeab97be8 SHA256: 31b9ea19d4f3c9245cd67091d580a3078ff53908d4ca39e7cfb09174208fbac9 Description: Cyrus SASL - pluggable authentication modules Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: da76219b54f65f70b0087c7723cb0ad6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libsasl2-modules-db Priority: standard Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: amd64 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Replaces: libsasl2-2 (<< 2.1.25.dfsg1-9~), libsasl2-3 (<< 2.1.26.dfsg1-2~), libsasl2-modules (<< 2.1.26.dfsg1-6~) Depends: libc6 (>= 2.14), libdb5.3 Breaks: libsasl2-2 (<< 2.1.25.dfsg1-9~), libsasl2-3 (<< 2.1.26.dfsg1-2~) Filename: pool/main/c/cyrus-sasl2/libsasl2-modules-db_2.1.25.dfsg1-17build1_amd64.deb Size: 14894 MD5sum: 4a44ca9868c2e46d8acca597f0bccadb SHA1: 38f4bc7eeb6157cd849c0fb06a58357e2b3124a2 SHA256: 54857aa83c44afcb4d97156d46188f09bff88903ecbb7b4c838f3af436779660 Description: Cyrus SASL - pluggable authentication modules (DB) Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: c4f2723280fa2cd92e5cd59c13f3ab2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libsasl2-modules-gssapi-heimdal Priority: extra Section: libs Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: amd64 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libsasl2-modules (= 2.1.25.dfsg1-17build1), libc6 (>= 2.14), libgssapi3-heimdal (>= 1.4.0+git20110226) Conflicts: libsasl2-modules-gssapi-mit Filename: pool/main/c/cyrus-sasl2/libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-17build1_amd64.deb Size: 17158 MD5sum: 2d87cc3a708aa60ebd6e781df9e52b90 SHA1: 95354f9681d5fcf1156a703a034af9301aa88c9c SHA256: 28692734c3ef0637955eee4d5c6efb548be20dbc58508198e47879ae7e36efac Description: Pluggable Authentication Modules for SASL (GSSAPI) Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: 0897adbbfbdac08aea71f426460e48d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsasl2-modules-gssapi-mit Priority: optional Section: libs Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: amd64 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libsasl2-modules (= 2.1.25.dfsg1-17build1), libc6 (>= 2.14), libgssapi-krb5-2 (>= 1.10+dfsg~), libssl1.0.0 (>= 1.0.0) Conflicts: libsasl2-modules-gssapi-heimdal Filename: pool/main/c/cyrus-sasl2/libsasl2-modules-gssapi-mit_2.1.25.dfsg1-17build1_amd64.deb Size: 47366 MD5sum: 4fbada6fc31d8ef9593e492b4fb977d7 SHA1: d2d66d3c96652f95aba5a19665c6eb580abb0dc3 SHA256: 9ba9b0a15d69629233ff055d29088a845df2a0bd9d31d33cfeaecf245b6f6ca0 Description: Cyrus SASL - pluggable authentication modules (GSSAPI) Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: b1eb80e47fbc2a5ec747847f924fba48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsasl2-modules-sql Priority: optional Section: libs Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: amd64 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libsasl2-modules (= 2.1.25.dfsg1-17build1), libc6 (>= 2.14), libmysqlclient18 (>= 5.5.13-1), libpq5, libsqlite3-0 (>= 3.5.9) Filename: pool/main/c/cyrus-sasl2/libsasl2-modules-sql_2.1.25.dfsg1-17build1_amd64.deb Size: 15754 MD5sum: 5dd2a63e402014ea629de2ac7d532545 SHA1: e0542a6253640155cfe849c775b3e5d146783e2c SHA256: d13f506a8b39056fffc2d29e1f747d3b668642fb9bfd48bcc357384f27b762e3 Description: Cyrus SASL - pluggable authentication modules (SQL) Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: 1d3931918dd7a4d68b405fdd4c3c75e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsaxon-java Priority: optional Section: libs Installed-Size: 1196 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1:6.5.5-10 Suggests: libjdom1-java, libsaxon-java-doc Filename: pool/main/libs/libsaxon-java/libsaxon-java_6.5.5-10_all.deb Size: 1075230 MD5sum: c5f290f5f90640c027bb16b5a0f93f00 SHA1: 0d42032d0ce0f6778e311027bd41874c5f105ef1 SHA256: f41e42cc1007af1cbf6b77b261828d4d7bc6d1ad703e307a8025d215a050d2d1 Description: Saxon XSLT Processor Homepage: http://saxon.sourceforge.net/ Description-md5: 8d3cd12834374c9d7a9d689e73416698 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsaxon-java-doc Priority: optional Section: doc Installed-Size: 12723 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libsaxon-java Version: 1:6.5.5-10 Recommends: default-jdk-doc Filename: pool/main/libs/libsaxon-java/libsaxon-java-doc_6.5.5-10_all.deb Size: 1319632 MD5sum: bfa78509cbb15070823ac08190d4e9af SHA1: 66df8b4f9b2e5960cea7490f6811472989d2831a SHA256: 84fffec03c66a007d0d6dbaa910071ae7ddbe3fc6d0bccfe32d9020b405d628b Description: Saxon XSLT Processor's documentation and javadoc Homepage: http://saxon.sourceforge.net/ Description-md5: d675ec7ecdce1eca6749f3588243bc56 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsaxon-java-gcj Priority: optional Section: libs Installed-Size: 3060 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: amd64 Source: libsaxon-java Version: 1:6.5.5-10 Depends: libsaxon-java (>= 1:6.5.5-10), libgcj-common (>> 1:4.1.1-13), libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.6.4-1~) Filename: pool/main/libs/libsaxon-java/libsaxon-java-gcj_6.5.5-10_amd64.deb Size: 796300 MD5sum: 56eb723d83ea72a5fe693cacfb188cc7 SHA1: fb1ecc1cc470a2f02aa0546ea3a3c64c2a5509cd SHA256: bb076202c6f4b19a7898730bedf0cff8dcd5431a3095eea862597914f4a90738 Description: Saxon XSLT Processor (native code) Homepage: http://saxon.sourceforge.net/ Description-md5: a239eec9ea8235cd3a4a53f207543924 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsaxonb-java Priority: optional Section: libs Installed-Size: 4239 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: saxonb Version: 9.1.0.8+dfsg-1 Depends: libdom4j-java, libjdom1-java, libxom-java Suggests: libsaxonb-java-doc Filename: pool/main/s/saxonb/libsaxonb-java_9.1.0.8+dfsg-1_all.deb Size: 3817978 MD5sum: bfe4e7fdd3b53fa6d343a9a58e4144ff SHA1: ffffd58f767c31adac8c8c96f9338e57b8eb9aca SHA256: 1811a60f230a1e6c7afa69f7639d87db9fa26e087cc42860161cbf6f8d916630 Description: Saxon-B XSLT Processor Homepage: http://saxon.sourceforge.net/ Description-md5: 23e56ce47df259bf67e4f57d29b26a29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsaxonb-java-doc Priority: optional Section: doc Installed-Size: 37292 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: saxonb Version: 9.1.0.8+dfsg-1 Filename: pool/main/s/saxonb/libsaxonb-java-doc_9.1.0.8+dfsg-1_all.deb Size: 3884598 MD5sum: 81b97ec539b88e2d5232b3e5db94ea6f SHA1: 3052a207d2bcba00b774aebf1f8b4ebb6555f66d SHA256: f4426aa5766d13c116f9ef32ec0e102a2ebb38e34028a2143da4076cf293df97 Description: Saxon-B XSLT Processor's documentation and javadoc Homepage: http://saxon.sourceforge.net/ Description-md5: 33024b6813f6f90a9f5f78f6e4a4aa65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsbc-dev Priority: extra Section: libdevel Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: amd64 Source: sbc Version: 1.1-2ubuntu2 Depends: libsbc1 (= 1.1-2ubuntu2) Filename: pool/main/s/sbc/libsbc-dev_1.1-2ubuntu2_amd64.deb Size: 31708 MD5sum: a3748cc05b147c5543f74141e3b2e10d SHA1: ba744843ddeb5eab31ce8fd9120c27e552eb9b6a SHA256: 255e3c8b9ede5ea4e0175193e333c4d54f07fbc2246b497446ad9e5bd8f9374b Description: Sub Band CODEC library - development Multi-Arch: same Homepage: http://www.bluez.org/ Description-md5: 38e061ec79fb63c55d91edf9eb66a3c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsbc1 Priority: extra Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: amd64 Source: sbc Version: 1.1-2ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/s/sbc/libsbc1_1.1-2ubuntu2_amd64.deb Size: 31264 MD5sum: a92e853397e3d5a6383f96e774f1c115 SHA1: 40f7221ae5559fe25ff695b7c4ba7b7ee1cf2da4 SHA256: bb69d0e9b0ac967ad409d2ab9d4d6279ff7fdd701bb786de5d5ae1acfac450a1 Description: Sub Band CODEC library - runtime Multi-Arch: same Homepage: http://www.bluez.org/ Description-md5: 14dc0951495c0a2137e6d52233bd34d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libsbuild-dev Priority: optional Section: admin Installed-Size: 10307 Maintainer: Ubuntu Developers Original-Maintainer: Debian buildd-tools Developers Architecture: amd64 Source: schroot Version: 1.6.8-1ubuntu1 Depends: pkg-config (>= 0.14.0) Suggests: schroot-dbg, libsbuild-doc Filename: pool/main/s/schroot/libsbuild-dev_1.6.8-1ubuntu1_amd64.deb Size: 662036 MD5sum: 694c2605b0720b0f3968b1291259792e SHA1: 2a8ca13f854c4ee2948ff37812871d752f1d5ad4 SHA256: 153275338872752715e209fed35b83da1a09ea93c555d9fdc67cc5e4577573b3 Description: development files for the Debian source builder Description-md5: 1370c5693ddfe4de869fc74af6d3bbbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsbuild-doc Priority: optional Section: devel Installed-Size: 15031 Maintainer: Ubuntu Developers Original-Maintainer: Debian buildd-tools Developers Architecture: all Source: schroot Version: 1.6.8-1ubuntu1 Suggests: libsbuild-dev Filename: pool/main/s/schroot/libsbuild-doc_1.6.8-1ubuntu1_all.deb Size: 7213402 MD5sum: 17f093bc11fdbec53bf35748bd6eafdd SHA1: 90364e566520659e45dcd3d5f6d0fe511a8d55c7 SHA256: 21c56f651da92430cd98d7d21ec497543fe550557db256fa948e1f851121f987 Description: development documentation for the Debian source builder Description-md5: cabf2c030142282f4c6b7e468db3f67d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsctp-dev Priority: optional Section: libdevel Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: amd64 Source: lksctp-tools Version: 1.0.15+dfsg-1 Depends: libsctp1 (= 1.0.15+dfsg-1), libc6-dev | libc-dev Filename: pool/main/l/lksctp-tools/libsctp-dev_1.0.15+dfsg-1_amd64.deb Size: 64354 MD5sum: 9d3994131a19471168e3d51b55b3a005 SHA1: 27305183e7141bcbb266edf28853859860cf17ac SHA256: 00e5718c219a6df1a50aec888b1948cb784b3f7f86ee585fa9690c88a44ca019 Description: user-space access to Linux Kernel SCTP - development files Homepage: http://lksctp.sf.net/ Description-md5: ede636dd4b26a5e235ca2b4c203d4fb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsctp1 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: amd64 Source: lksctp-tools Version: 1.0.15+dfsg-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: lksctp-tools Filename: pool/main/l/lksctp-tools/libsctp1_1.0.15+dfsg-1_amd64.deb Size: 9226 MD5sum: 6bc0748fae5badaa0fa7e7b22345b9c7 SHA1: 6c0e6143485eacaa424f152c0aef7b8d54009cbf SHA256: 3b656e9d6042ec08d96a585911064a4326e1a1812155216c36fae3f722f1b21b Description: user-space access to Linux Kernel SCTP - shared library Multi-Arch: same Homepage: http://lksctp.sf.net/ Description-md5: 266860b8675a1f8fa6416cfbfb88804e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsdl1.2-dbg Priority: extra Section: debug Installed-Size: 778 Maintainer: Ubuntu Developers Original-Maintainer: Debian SDL packages maintainers Architecture: amd64 Source: libsdl1.2 Version: 1.2.15-8ubuntu1 Depends: libsdl1.2debian (= 1.2.15-8ubuntu1) Filename: pool/main/libs/libsdl1.2/libsdl1.2-dbg_1.2.15-8ubuntu1_amd64.deb Size: 668486 MD5sum: e7c0eeb35bec02f18323df4655138b57 SHA1: c0fdfdfbd4f19923ab61b334a3deb31c98a6e827 SHA256: 57acab02b731f08bc537ecaa3c2b61144c1835dcf1cc034af2e5bb787079bdab Description: Simple DirectMedia Layer debug files Multi-Arch: same Homepage: http://www.libsdl.org/ Description-md5: 784ef1eacd353c10222d88e70e5ce69a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsdl1.2-dev Priority: optional Section: libdevel Installed-Size: 2601 Maintainer: Ubuntu Developers Original-Maintainer: Debian SDL packages maintainers Architecture: amd64 Source: libsdl1.2 Version: 1.2.15-8ubuntu1 Replaces: libsdl-dev Provides: libsdl-dev Depends: libsdl1.2debian (= 1.2.15-8ubuntu1), libasound2-dev, libcaca-dev, libglu1-mesa-dev | libglu-dev, libpulse-dev, libx11-dev, libxext-dev Conflicts: libsdl-dev Filename: pool/main/libs/libsdl1.2/libsdl1.2-dev_1.2.15-8ubuntu1_amd64.deb Size: 701210 MD5sum: 981c9931167c1fb4ad6c859561ae850e SHA1: 421dfed73e7bd021550f6a37bd614008f4790e68 SHA256: 62a5f984f90eeb2929c2247d0e6840f2d3707d83264c7aaa30cf5e133bdb8c2c Description: Simple DirectMedia Layer development files Homepage: http://www.libsdl.org/ Description-md5: 9a82f59c5790721baad7ffc5f181d3d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsdl1.2debian Priority: optional Section: libs Installed-Size: 484 Maintainer: Ubuntu Developers Original-Maintainer: Debian SDL packages maintainers Architecture: amd64 Source: libsdl1.2 Version: 1.2.15-8ubuntu1 Replaces: libsdl1.2debian-all, libsdl1.2debian-alsa, libsdl1.2debian-esd, libsdl1.2debian-nas, libsdl1.2debian-oss, libsdl1.2debian-pulseaudio Depends: libasound2 (>= 1.0.16), libc6 (>= 2.15), libcaca0 (>= 0.99.beta17-1), libpulse0 (>= 1:0.99.1), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Conflicts: libsdl1.2, libsdl1.2-all, libsdl1.2-esd, libsdl1.2-nas, libsdl1.2-oss, libsdl1.2debian-all, libsdl1.2debian-alsa, libsdl1.2debian-esd, libsdl1.2debian-nas, libsdl1.2debian-oss, libsdl1.2debian-pulseaudio Filename: pool/main/libs/libsdl1.2/libsdl1.2debian_1.2.15-8ubuntu1_amd64.deb Size: 162376 MD5sum: 13c97fcb8901324cc5d376d767f5191c SHA1: 79dccb02bd9b25e0a8cb634b2c31bf59188590d8 SHA256: 57a060a929644432fb37946c99c3b10916c9ad919b2d2f094662fdc18a080f27 Description: Simple DirectMedia Layer Multi-Arch: same Homepage: http://www.libsdl.org/ Description-md5: 6c0109f858252f338d03e8eed3ed575a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop Package: libsearchclient-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libsearchclient0 (= 0.7.8-1ubuntu2), libstreamanalyzer-dev (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/libsearchclient-dev_0.7.8-1ubuntu2_amd64.deb Size: 4914 MD5sum: 5e84644290b7ce5c858ea850d20a2250 SHA1: 53645aa5f66b26ce94bd8471649d220efa42253d SHA256: 43bee988e405fbe839a6a68f8264ea99a9a924f499fb60b3988b67bb65f21ed8 Description: development files for libsearchclient Homepage: http://strigi.sourceforge.net Description-md5: a0d8b45d519d86d69061aa992ac827e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsearchclient0 Priority: optional Section: libs Installed-Size: 109 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: strigi Version: 0.7.8-1ubuntu2 Replaces: strigi-daemon (<< 0.3.11-1) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Filename: pool/main/s/strigi/libsearchclient0_0.7.8-1ubuntu2_amd64.deb Size: 28952 MD5sum: 8e9d0c25b5f7d27a1dde083818bd8aaf SHA1: 0f073d5c7c5997cc403e647e2f4564ebcb83b6f9 SHA256: 2819800900f21caeb1d77731e65ae4d209a93e8b1af0986b58c45be20699a579 Description: searchclient library for Strigi Desktop Search Homepage: http://strigi.sourceforge.net Description-md5: 53a1e7815d9bb7f9356a6a3c52d599c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libseccomp-dev Priority: optional Section: libdevel Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Source: libseccomp Version: 2.1.0+dfsg-1 Depends: libseccomp2 (= 2.1.0+dfsg-1) Suggests: seccomp Filename: pool/main/libs/libseccomp/libseccomp-dev_2.1.0+dfsg-1_amd64.deb Size: 24020 MD5sum: e19c170848a515553ddcaaaa7d61453a SHA1: bcc1be2bd5b92220ad35e9d92a196d71581c3d0f SHA256: 7d11f7ca9cc56acfcd605db31689bc0a1d8a82cdf06580aa6772a93e8a36f6ba Description: high level interface to Linux seccomp filter (development files) Multi-Arch: same Homepage: https://sourceforge.net/projects/libseccomp/ Description-md5: e5fdb6fdd319bc8b5c43a1e29c7d62d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libseccomp2 Priority: optional Section: libs Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Source: libseccomp Version: 2.1.0+dfsg-1 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/libs/libseccomp/libseccomp2_2.1.0+dfsg-1_amd64.deb Size: 34774 MD5sum: 235f6d21bb05f15d6b0c1e06b3a93e1d SHA1: 34bb6c3d73c0087e5c86e684afaf33826a829bb7 SHA256: e6b71531d43d08d78c0e8cb081d2b0eee24ab87f473fa4f118ea0188b875c4f1 Description: high level interface to Linux seccomp filter Multi-Arch: same Homepage: https://sourceforge.net/projects/libseccomp/ Description-md5: 7ee97a8161e83bfebc75870eb92bde51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libsecret-1-0 Priority: optional Section: libs Installed-Size: 359 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libsecret Version: 0.16-0ubuntu1 Depends: libc6 (>= 2.14), libgcrypt11 (>= 1.5.1), libglib2.0-0 (>= 2.37.3), libsecret-common Pre-Depends: multiarch-support Filename: pool/main/libs/libsecret/libsecret-1-0_0.16-0ubuntu1_amd64.deb Size: 90680 MD5sum: e499e4308582c043bc5604f8530e3687 SHA1: f3bcea219779e3295738c948815fe4f87887387a SHA256: 9722792b0fadeaaa9fe2adf29e0ee14d416cd0df8b6017872d800c2269672827 Description: Secret store Multi-Arch: same Homepage: https://live.gnome.org/Libsecret Description-md5: 0896289b56498e648332c5193d208d4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsecret-1-dev Priority: optional Section: libdevel Installed-Size: 2220 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libsecret Version: 0.16-0ubuntu1 Depends: libsecret-1-0 (= 0.16-0ubuntu1), gir1.2-secret-1 (= 0.16-0ubuntu1), libglib2.0-dev Filename: pool/main/libs/libsecret/libsecret-1-dev_0.16-0ubuntu1_amd64.deb Size: 170352 MD5sum: 7b6a3bbe86a58ca16b6eeaf7906fe31b SHA1: 0cf9540f9f6e833be36db2afa75c7b6503eaf6b0 SHA256: 9c30938491ae594f55a4bc8771ebdd39c4dc367e3c871269674768b3bfa24774 Description: Secret store (development files) Homepage: https://live.gnome.org/Libsecret Description-md5: f5f75bda0b2ffe1fa8b2776e2fe6dba2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsecret-common Priority: optional Section: libs Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libsecret Version: 0.16-0ubuntu1 Filename: pool/main/libs/libsecret/libsecret-common_0.16-0ubuntu1_all.deb Size: 4166 MD5sum: c092937ee0456b075cbe376df968aece SHA1: 6fffab957bb905e0468588ecc908afeb808dc7fb SHA256: 7354e83efe3e97d06ae4b5bd9c820314a47f8f23ad00247cef28bb19146236a9 Description: Secret store (common files) Multi-Arch: foreign Homepage: https://live.gnome.org/Libsecret Description-md5: 2575f6062ae195676927b0e3721dc11d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libselinux1 Priority: required Section: libs Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: amd64 Source: libselinux Version: 2.2.2-1 Depends: libc6 (>= 2.14), libpcre3 Pre-Depends: multiarch-support Filename: pool/main/libs/libselinux/libselinux1_2.2.2-1_amd64.deb Size: 57962 MD5sum: ddbaca65398ce24db052342890d7ecdc SHA1: c542b52414d41afc857438a6d8f51e260e133dc0 SHA256: 2c8a7c1e3ce83ab9eefe66b10f004acd8378716f8f0ee6d6c3886deface142dd Description: SELinux runtime shared libraries Multi-Arch: same Homepage: http://userspace.selinuxproject.org/ Description-md5: 90f6e1cb06c527bc3fc11ec6f969c59c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libselinux1-dev Priority: optional Section: libs Installed-Size: 549 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: amd64 Source: libselinux Version: 2.2.2-1 Provides: libselinux-dev Depends: libselinux1 (= 2.2.2-1), libsepol1-dev (>= 2.2), libpcre3-dev Conflicts: libselinux-dev Filename: pool/main/libs/libselinux/libselinux1-dev_2.2.2-1_amd64.deb Size: 123840 MD5sum: 5ab2f59a02697c9a12ed8dd5d66c1223 SHA1: e53cad579478fb5130c3338b7c49d78706caa780 SHA256: 671a5d0a9053bffd1f2a1b9440f61645ffa505e77f9002d9f1631b6264dd8b88 Description: SELinux development headers Multi-Arch: same Homepage: http://userspace.selinuxproject.org/ Description-md5: ca6eeba78d95ecb95827216f2b16ab42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsemanage-common Priority: required Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: all Source: libsemanage Version: 2.2-1 Replaces: libsemanage1 (<= 2.0.41-1), libsemanage1-dev (<< 2.1.6-3~) Breaks: libsemanage1 (<= 2.0.41-1), libsemanage1-dev (<< 2.1.6-3~) Filename: pool/main/libs/libsemanage/libsemanage-common_2.2-1_all.deb Size: 6488 MD5sum: 39f4bef23b2f24415e6d6460bc87b518 SHA1: cc1165aec411c062166398a50618799b61f87b00 SHA256: dd4880d8275104496f6f8e836be119d5621242a66525424f596b641e4ef57e71 Description: Common files for SELinux policy management libraries Multi-Arch: foreign Homepage: http://userspace.selinuxproject.org/ Description-md5: c7a0a093650c85e838f42492add9b46b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libsemanage1 Priority: required Section: libs Installed-Size: 263 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: amd64 Source: libsemanage Version: 2.2-1 Depends: libsemanage-common (= 2.2-1), libaudit1 (>= 1:2.2.1), libbz2-1.0, libc6 (>= 2.14), libselinux1 (>= 2.1.12), libsepol1 (>= 2.1.4), libustr-1.0-1 (>= 1.0.4) Pre-Depends: multiarch-support Filename: pool/main/libs/libsemanage/libsemanage1_2.2-1_amd64.deb Size: 85608 MD5sum: 82e8a067059e0d2fa9dfaf1fba025ef2 SHA1: 11de2d9716a01a228d51013d883a916dcdc7c75b SHA256: 69dfaa86d5dd07c88caf9bf4c493926e25dfc8a4b97ddecae3bbe6ea1b01c52f Description: SELinux policy management library Multi-Arch: same Homepage: http://userspace.selinuxproject.org/ Description-md5: 8998b538051f37f69c5f1bf9a005fa56 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libsemanage1-dev Priority: optional Section: libdevel Installed-Size: 567 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: amd64 Source: libsemanage Version: 2.2-1 Provides: libsemanage-dev Depends: libbz2-dev, libselinux1-dev (>= 2.2), libsemanage1 (= 2.2-1), libsepol1-dev (>= 2.2), libustr-dev Conflicts: libsemanage-dev Filename: pool/main/libs/libsemanage/libsemanage1-dev_2.2-1_amd64.deb Size: 132116 MD5sum: f329a40fa1887c69931f2d13e0f90030 SHA1: fb6c54e45552b7f38c874feac9d8812146fbce1b SHA256: 23c3a70864764e2c2f282180168099bcc9adc4354e6c15606084fc9dc927d48e Description: Header files and libraries for SELinux policy manipulation Homepage: http://userspace.selinuxproject.org/ Description-md5: 303bd4372e6052211e2f9b4e60af2b0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsensors4 Priority: optional Section: libs Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: lm-sensors Version: 1:3.3.4-2ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Suggests: lm-sensors Filename: pool/main/l/lm-sensors/libsensors4_3.3.4-2ubuntu1_amd64.deb Size: 27250 MD5sum: 042d478dd8c2f8d47fe197b2bbf2e8a1 SHA1: 668a22debf04b4811a2b3ac8d4cb2775a563729d SHA256: 0646b248bc2f02c04c5e7f7c273c927790369eb5692d82dc52d6bcf6b589192f Description: library to read temperature/voltage/fan sensors Multi-Arch: same Homepage: http://www.lm-sensors.org Description-md5: 25f0ebc4e1333cbfb3f357cbcc863500 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsensors4-dev Priority: extra Section: libdevel Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: lm-sensors Version: 1:3.3.4-2ubuntu1 Depends: libsensors4 (= 1:3.3.4-2ubuntu1) Conflicts: libsensors-dev, lm-sensors (<< 1:3.1.1-6) Filename: pool/main/l/lm-sensors/libsensors4-dev_3.3.4-2ubuntu1_amd64.deb Size: 32694 MD5sum: 8eed703b2d35133fe763f754aee9389c SHA1: a0470c37f0cd03515310ca5ca71c8d72bb98b104 SHA256: 70bf84df14d0a66b73c3d04213090ed51ccd14a353bfbe7df12b049640a9489b Description: lm-sensors development kit Homepage: http://www.lm-sensors.org Description-md5: a7b36e26f606231275ab8e94321a588d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsepol1 Priority: required Section: libs Installed-Size: 322 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: amd64 Source: libsepol Version: 2.2-1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libs/libsepol/libsepol1_2.2-1_amd64.deb Size: 126410 MD5sum: fafc553941955455f2ba205501383c10 SHA1: 7344814539244373444aae0957293cfc76484392 SHA256: 38057e768c4709bc22efbc767bf4c87924662579794b4dabeab4b6ca62d15416 Description: SELinux library for manipulating binary security policies Multi-Arch: same Homepage: http://userspace.selinuxproject.org/ Description-md5: d569fae7efa3328b3d40879b104d9a63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libsepol1-dev Priority: optional Section: libdevel Installed-Size: 700 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: amd64 Source: libsepol Version: 2.2-1 Provides: libsepol-dev Depends: libsepol1 (= 2.2-1) Conflicts: libsepol-dev Filename: pool/main/libs/libsepol/libsepol1-dev_2.2-1_amd64.deb Size: 191528 MD5sum: 2742109e4e5fdc395caeeea91862fdf5 SHA1: e99d66dcc575ad84ca5be0c1352306d0ca8b349a SHA256: 96d18ca78f03ec14508005dd2e0cbda3d67f19b1a3ead965ef7df3be8f6f9d8e Description: SELinux binary policy manipulation library and development files Homepage: http://userspace.selinuxproject.org/ Description-md5: df6f84858afaf99b7b289c39fa4b8376 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libserf-1-1 Priority: optional Section: libs Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Source: serf Version: 1.3.3-1 Depends: libapr1 (>= 1.4.8-2~), libaprutil1 (>= 1.2.7+dfsg), libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/s/serf/libserf-1-1_1.3.3-1_amd64.deb Size: 41592 MD5sum: d16d1fe08e40c56af0d82d98db7b81c6 SHA1: 06ccb6d66398912dcecbf3c093843eee8fd0ab94 SHA256: 4ab6435f06a049add800d164755039f6c67e444471a1beea3bd373023b012df6 Description: high-performance asynchronous HTTP client library Multi-Arch: same Homepage: http://code.google.com/p/serf/ Description-md5: 0ddd0a211e1720f4d5dc567d33bbeb7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libserf-dev Priority: optional Section: libdevel Installed-Size: 324 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Source: serf Version: 1.3.3-1 Depends: libserf-1-1 (= 1.3.3-1), libapr1-dev, libaprutil1-dev Filename: pool/main/s/serf/libserf-dev_1.3.3-1_amd64.deb Size: 77912 MD5sum: 9ed459248a61bc36e3a2a096834aa04e SHA1: f48feee03a403198900b6d25508c2462375f77c7 SHA256: fe6a62735b6a8d469864205c703436080c8a77a4e071a3b0caec9ae6fc7c1e4f Description: high-performance asynchronous HTTP client library headers Homepage: http://code.google.com/p/serf/ Description-md5: 1d5e42006c42271fcb2927cdcd32b348 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libserf1-dbg Priority: extra Section: debug Installed-Size: 429 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Source: serf Version: 1.3.3-1 Provides: libserf-dbg Depends: libserf-1-1 (= 1.3.3-1) Filename: pool/main/s/serf/libserf1-dbg_1.3.3-1_amd64.deb Size: 103084 MD5sum: da7d38bac8b6e4e8360ed1d60d1b5811 SHA1: dfd6a398e24549d40bbc5de6465867ed5a209806 SHA256: 46ad2eb91670460fa846556e1ba70d9d943e9c535544f47b52223ff13816140c Description: high-performance asynchronous HTTP client library debugging symbols Multi-Arch: same Homepage: http://code.google.com/p/serf/ Description-md5: 0a1eb608f55c38507d3fe817f7ab1a0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libservlet3.0-java Priority: optional Section: java Installed-Size: 481 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Filename: pool/main/t/tomcat7/libservlet3.0-java_7.0.52-1_all.deb Size: 292818 MD5sum: 042d1cad0985e2b98b6521995a619970 SHA1: d32ba0013d8064bd134db7df17ecf0e395f75787 SHA256: 697177f2a0aa3676600f0d8f69454010dd13d0fcb04de4b8bd83375c03fd2d27 Description: Servlet 3.0 and JSP 2.2 Java API classes Homepage: http://tomcat.apache.org Description-md5: 53f7075916141a8eb225df97286c9451 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libservlet3.0-java-doc Priority: optional Section: doc Installed-Size: 2942 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Suggests: libservlet3.0-java (>= 7.0.52-1) Filename: pool/main/t/tomcat7/libservlet3.0-java-doc_7.0.52-1_all.deb Size: 192124 MD5sum: ad92662c5d1515182d63e96e29cb01a3 SHA1: e829f7f6884b45d99d38bbb48f6bdaebd4b2fdbc SHA256: 68087ef752eeaca6d541e89a74416441331c5fd639e599990e97170486530d62 Description: Servlet 3.0 and JSP 2.2 Java API documentation Homepage: http://tomcat.apache.org Description-md5: 105d3349377c356c2f157766657d4639 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsexy-dev Priority: optional Section: libdevel Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: Riccardo Setti Architecture: amd64 Source: libsexy Version: 0.1.11-2ubuntu1 Depends: libsexy2 (= 0.1.11-2ubuntu1), libgtk2.0-dev, libcairo2-dev, libatk1.0-dev, libfreetype6-dev, libglib2.0-dev, libpango1.0-dev, libxcursor-dev, libxml2-dev, libxrender-dev Filename: pool/main/libs/libsexy/libsexy-dev_0.1.11-2ubuntu1_amd64.deb Size: 28372 MD5sum: 80c6075293cfef7012e8e73f7a488ab8 SHA1: 1059d3525995a98db568f12cc093eb27b290c709 SHA256: 53d0ff7aaed4eeca0b278ec54b504cf055529947633c5a2bd651ed448fe4f401 Description: collection of additional GTK+ widgets - header files Description-md5: d8f100d3b0e0edb712e97efea92f164b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsexy-doc Priority: optional Section: doc Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Riccardo Setti Architecture: all Source: libsexy Version: 0.1.11-2ubuntu1 Suggests: devhelp | www-browser Filename: pool/main/libs/libsexy/libsexy-doc_0.1.11-2ubuntu1_all.deb Size: 15962 MD5sum: 05ce564dd529a58ca233260074935bc2 SHA1: b3af5bb600f5e3a589d0655ec572cef80fda202f SHA256: 15a7c43bace068847ca9f22ce8c8fc0ce3862c014bc735153fa82e76841a9032 Description: Collection of additional GTK+ widgets - documentation files Description-md5: 7bf7cd528e0e10a6911c520b336f9343 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsexy2 Priority: optional Section: libs Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Riccardo Setti Architecture: amd64 Source: libsexy Version: 0.1.11-2ubuntu1 Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.8.0), libpango-1.0-0 (>= 1.14.0), libxml2 (>= 2.7.4), libenchant1c2a Filename: pool/main/libs/libsexy/libsexy2_0.1.11-2ubuntu1_amd64.deb Size: 28754 MD5sum: 7f3448cc156f9f48ddbcc492ce05e9df SHA1: 5a1cfde820554530cd67d45d52741bbf353c3ee5 SHA256: a5e5c159ef081513068ff26615267d746dbc48893c073865ae6ba5467f3d485e Description: collection of additional GTK+ widgets - library Description-md5: 3b0862475b52beca344ce33758afdb6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, ubuntustudio-desktop Package: libsfasan0-armhf-cross Priority: extra Section: devel Installed-Size: 147 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armel-armhf-cross (>= 2.11) | libc6-armel-armhf-cross, libc6-armhf-cross (>= 2.19), libsfgcc1-armhf-cross Filename: pool/main/g/gcc-4.8-armhf-cross/libsfasan0-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 55974 MD5sum: 6d5a6c50ca0bd266c1697edff19b15d4 SHA1: 9e112075a6a31c8a399e13265443c8785a8f17c7 SHA256: 24e57c2c1eee7e35ae344e9af95209f2649ebeddc72305d6789e03ebbb7473df Description: AddressSanitizer -- a fast memory error detector (soft float ABI) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 77c217b098bf047a48eb517165c699da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfatomic1-armhf-cross Priority: extra Section: devel Installed-Size: 42 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armel-armhf-cross (>= 2.11) | libc6-armel-armhf-cross, libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libsfatomic1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 5768 MD5sum: 13dbb7951f55d9136661ddd3c765c8ec SHA1: 7dda0839473c2eeb850883c82b15cba518c3a6db SHA256: e432fb18933ef27b8fe84f40283d82e041c894412c12b48ee284ee7f8d78223d Description: support library providing __atomic built-in functions (soft float ABI) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 5c3acc5a21acb172bca714a7ede8c293 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfgcc-4.8-dev-armhf-cross Priority: optional Section: libdevel Installed-Size: 2117 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libsfgcc1-armhf-cross (>= 1:4.8.2-16ubuntu4cross0.11) | libsfgcc1-armhf-cross, libsfgomp1-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) | libsfgomp1-armhf-cross, libsfatomic1-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) | libsfatomic1-armhf-cross, libsfasan0-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) | libsfasan0-armhf-cross Recommends: libc6-dev-armhf-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-armhf-cross/libsfgcc-4.8-dev-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 171766 MD5sum: 5e9dca6915166bb115c4dd7c19a41a75 SHA1: 12e8471ca1792272351873ceb3b5a05ac5cc4746 SHA256: 82475b7680e9c1b6d1c33c98e7da0ba0ab74583e7e416b4212736a5c7c53e0e7 Description: GCC support library (soft float ABI development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 0a946370cc1bda3e49c72e1e875c6da8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfgcc1-armhf-cross Priority: extra Section: devel Installed-Size: 134 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 1:4.8.2-16ubuntu4cross0.11 Provides: libsfgcc1-armhf-dcv1 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armel-armhf-cross (>= 2.11) | libc6-armel-armhf-cross Filename: pool/main/g/gcc-4.8-armhf-cross/libsfgcc1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 38108 MD5sum: e3525f9edb3a06c8f8400415b5cf2144 SHA1: 28d07dfd28597f797ff1587ebf769ede0bc0ca1c SHA256: 0cb14863cbba079783871207051bcd80f4861148a25a231c309e00d325464dc9 Description: GCC support library (soft float ABI) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: b110e5feff2c72a13ffa6c69b3c65964 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfgomp1-armhf-cross Priority: extra Section: devel Installed-Size: 74 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armel-armhf-cross (>= 2.11) | libc6-armel-armhf-cross, libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libsfgomp1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 23042 MD5sum: af6ae65e929f1503fb34aa00e0efd721 SHA1: 6405e548236c2e0bda30ecf5053f2b32d1cdb375 SHA256: 3040a1bb78127c2452c27080b113f4863ad2ea45134a06eee2b4981e53215904 Description: GCC OpenMP (GOMP) support library (soft float ABI) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 86f6cc73df5b807fdb91c11e7ccae5e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfstdc++-4.8-dev-armhf-cross Priority: extra Section: devel Installed-Size: 5617 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libsfgcc-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11), libsfstdc++6-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libstdc++-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11) Filename: pool/main/g/gcc-4.8-armhf-cross/libsfstdc++-4.8-dev-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 331456 MD5sum: fc6ff57a62d2c04bb457ddd3f5d4578e SHA1: ac22c6385209b9a19149882667b877c699ef4e19 SHA256: 16332e4c68d870fc3f8f2695ad18aca37ebf64115321f12a223080a98994172d Description: GNU Standard C++ Library v3 (development files) (armhf) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 5c94411e364c10e6c08261a0a964d7c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfstdc++6-armhf-cross Priority: extra Section: devel Installed-Size: 655 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Provides: libsfstdc++6-armhf-dcv1 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libsfgcc1-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libsfstdc++6-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 201588 MD5sum: f2aa3a8829705754b7f3fdc8a2fe3ab7 SHA1: 0ba3261031d1d97e9d74945bcdfad977eb3dfcfd SHA256: 7c68f48c3be30dc110e7336b0fbd859b1ba23f45299556d1c238c9b455a85e55 Description: GNU Standard C++ Library v3 (soft float ABI) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 9f5d26c89656d7eaf9c9f1b60ac3ec3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsgmls-perl Priority: optional Section: perl Installed-Size: 128 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 1.03ii-32 Replaces: sgmlspm Depends: perl (>= 5.6.0-16) Recommends: sp Suggests: sgmls-doc, sgmlspl Conflicts: sgmlspm Filename: pool/main/libs/libsgmls-perl/libsgmls-perl_1.03ii-32_all.deb Size: 29374 MD5sum: 31873a359f3aff56575cfd5f2a78657b SHA1: 04d6d64c3d39ae6c81027fba91c25324c5bdc1ee SHA256: b8260b2eefe87165231d355487c99496f07ba855b151e7b586aaa8d69030f473 Description: Perl modules for processing SGML parser output Description-md5: e63c2ae966d8f0774ffdb6044c2f8a57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsgutils2-2 Priority: optional Section: libs Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: amd64 Source: sg3-utils Version: 1.36-1ubuntu1 Replaces: libsgutils2 Depends: libc6 (>= 2.14) Suggests: sg3-utils Conflicts: libsgutils2 Filename: pool/main/s/sg3-utils/libsgutils2-2_1.36-1ubuntu1_amd64.deb Size: 52848 MD5sum: f0252042b785ce828cfee62b9390f9c1 SHA1: df5d6f492ff6ebed3f6be07ff1bd014688844178 SHA256: 1a8ae307cd032e950a6b179a353d737a497b8efc15551f0f95bd14ab8f3f2b8d Description: utilities for devices using the SCSI command set (shared libraries) Homepage: http://sg.danny.cz/sg/ Description-md5: 19a4d1a8d1a08f4c55a55c351a158287 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libsgutils2-dev Priority: optional Section: libdevel Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: amd64 Source: sg3-utils Version: 1.36-1ubuntu1 Depends: libsgutils2-2 (= 1.36-1ubuntu1) Suggests: sg3-utils Conflicts: libsgutils1-dev Filename: pool/main/s/sg3-utils/libsgutils2-dev_1.36-1ubuntu1_amd64.deb Size: 65260 MD5sum: cdcb47eef99b68da60349edfbc0ad08a SHA1: 7e93c994932e5723ef984532d5237a4dafe77e71 SHA256: 9cd5045213924153111dbf24e99a7c6363b2d0b1ff5e78356f0a9222e98c2ec0 Description: utilities for devices using the SCSI command set (developer files) Homepage: http://sg.danny.cz/sg/ Description-md5: bed92454079f936ca63f681d822db471 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libshout3 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: libshout Version: 2.3.1-3 Depends: libc6 (>= 2.15), libogg0 (>= 1.0rc3), libspeex1 (>= 1.2~beta3-1), libtheora0 (>= 0.0.0.alpha7.dfsg), libvorbis0a (>= 1.1.2) Pre-Depends: multiarch-support Filename: pool/main/libs/libshout/libshout3_2.3.1-3_amd64.deb Size: 38092 MD5sum: 04b1a00010dace4a0744796a1fd47ab4 SHA1: 66e8e06c2e616ec2e12d24a0d59ce9c01828aae1 SHA256: 579946f832a1d2718582b264b8eef5542290d422b6c68f5d6ee7fe1f9b65668e Description: MP3/Ogg Vorbis broadcast streaming library Multi-Arch: same Homepage: http://www.icecast.org/ Description-md5: 11376f8d2238a196b9a58295f5c2d756 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libshout3-dev Priority: optional Section: libdevel Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: libshout Version: 2.3.1-3 Provides: libshout-dev Depends: libshout3 (= 2.3.1-3), libogg-dev, libspeex-dev, libtheora-dev, libvorbis-dev, pkg-config Conflicts: libshout-dev Filename: pool/main/libs/libshout/libshout3-dev_2.3.1-3_amd64.deb Size: 40784 MD5sum: 6959a4ab9e1613a79d42fce901f9fb5e SHA1: 3ffd17627469614f0c36a96350219249113c33b1 SHA256: 9d133d93c80602bc0d77e30985638f888eafd40025a6b5fdde213ee5206b641a Description: MP3/Ogg Vorbis broadcast streaming library (development) Multi-Arch: same Homepage: http://www.icecast.org/ Description-md5: fc281a7137ac6e777c64b71d63f5b598 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsigc++-2.0-0c2a Priority: optional Section: libs Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: amd64 Source: libsigc++-2.0 Version: 2.2.10-0.2ubuntu2 Replaces: libsigc++-1.9-0, libsigc++-2.0-0, libsigc++-2.0-0c2 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Conflicts: libsigc++-1.9-0, libsigc++-2.0-0, libsigc++-2.0-0c2 Filename: pool/main/libs/libsigc++-2.0/libsigc++-2.0-0c2a_2.2.10-0.2ubuntu2_amd64.deb Size: 9258 MD5sum: d3582835715d0f3375db31d45b4591cd SHA1: d64c3bd6124169cea07589b266671e96ff52fcf4 SHA256: b3e1023642eedb15845180ca8bad85c7a11de3b038a26a686539fcdedb20eb62 Description: type-safe Signal Framework for C++ - runtime Multi-Arch: same Description-md5: 0f629177a6b7e6200b446de8a0a45992 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsigc++-2.0-dev Priority: optional Section: libdevel Installed-Size: 1276 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: amd64 Source: libsigc++-2.0 Version: 2.2.10-0.2ubuntu2 Replaces: libsigc++-1.9-dev Depends: libsigc++-2.0-0c2a (= 2.2.10-0.2ubuntu2), pkg-config Suggests: libsigc++-2.0-doc Conflicts: libsigc++-1.9-dev Filename: pool/main/libs/libsigc++-2.0/libsigc++-2.0-dev_2.2.10-0.2ubuntu2_amd64.deb Size: 62830 MD5sum: ca59b6cea70dae5e833d0454a762bc67 SHA1: ac431eb24d684ad5b833d24cf79bf1c8bf572480 SHA256: 0961bed98aa6bfc0a0b6e372052cec01357ecdedf0406402b2110c50fc959675 Description: type-safe Signal Framework for C++ - development files Multi-Arch: same Description-md5: 2fc5e630cb35c41ccaccff38822cd939 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsigc++-2.0-doc Priority: optional Section: doc Installed-Size: 7708 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: all Source: libsigc++-2.0 Version: 2.2.10-0.2ubuntu2 Recommends: libsigc++-2.0-dev Filename: pool/main/libs/libsigc++-2.0/libsigc++-2.0-doc_2.2.10-0.2ubuntu2_all.deb Size: 2606386 MD5sum: 253d1141a19686c86778811ad28c778e SHA1: 1d1b7aa7ce2980b14e013df31dd8d0b7048210ac SHA256: 19b02bd3ab01742bc663e5c8732babcf5dfbd20f552fb3cb97a9026e1bf46517 Description: type-safe Signal Framework for C++ - reference documentation Description-md5: 66182e93dcf0771a483485fd7d8542bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-extension1 Priority: optional Section: libs Installed-Size: 105 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5dbus5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon/libsignon-extension1_8.56+14.04.20140307-0ubuntu2_amd64.deb Size: 22580 MD5sum: 097d026712020da526de5e0c5fa6fd60 SHA1: 2dd2e526f00c14a23e973378c6d44785c4451fd9 SHA256: 1da7579a9e5b59813d78ae4b7a57df13449a4b1de82ec6f697cb25d969157bc5 Description: Single Sign On framework Homepage: http://code.google.com/p/accounts-sso/ Description-md5: e82cc644df18f6d1c382ada5d5c88928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libsignon-glib-dev Priority: optional Section: libdevel Installed-Size: 167 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libsignon-glib Version: 1.10daily13.06.25-0ubuntu2 Depends: libsignon-glib1 (= 1.10daily13.06.25-0ubuntu2), libdbus-glib-1-dev, libglib2.0-dev, gir1.2-signon-1.0, signond-dev Filename: pool/main/libs/libsignon-glib/libsignon-glib-dev_1.10daily13.06.25-0ubuntu2_amd64.deb Size: 13578 MD5sum: d956939f67239a2c0f9cc626016ea5f2 SHA1: cf53e38ecd1e1c50542ba7fd535540dd95061d23 SHA256: dd9c7d740d5e1217b1af5b48b30a84d485c38b0bc39eda81c909e91d3aa5324e Description: library for signond - development files Homepage: http://code.google.com/p/accounts-sso/ Description-md5: d051d5324a6de8be6c752aa209067db3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-glib-doc Priority: optional Section: doc Installed-Size: 329 Maintainer: Ubuntu Desktop Team Architecture: all Source: libsignon-glib Version: 1.10daily13.06.25-0ubuntu2 Filename: pool/main/libs/libsignon-glib/libsignon-glib-doc_1.10daily13.06.25-0ubuntu2_all.deb Size: 26778 MD5sum: 2a0b3e1926ef8a6e2ecb0b08eb7f0e54 SHA1: aade4746b142539fdd5575f12a6817f4b44737ea SHA256: 93ab55e383022c0231d9eb61416a3e20a06038c5401ea2149b8267d61642da41 Description: library for signond - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: ca77b69406cc209b10e4bd1e83ef1619 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-glib1 Priority: optional Section: libs Installed-Size: 160 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libsignon-glib Version: 1.10daily13.06.25-0ubuntu2 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/libs/libsignon-glib/libsignon-glib1_1.10daily13.06.25-0ubuntu2_amd64.deb Size: 33140 MD5sum: 1a82261fead5a518b039a807328767d5 SHA1: 87836d23eca07e616cc3d6d2a0684b8d7dafe6d9 SHA256: 40e385abaad215f1cd726a1a4bee04e56e278ab32bb8ff68a0ed8f78aa46e402 Description: library for signond Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 516378637027ec145f398aaba1c06c74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsignon-plugins-common1 Priority: optional Section: libs Installed-Size: 69 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5dbus5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon/libsignon-plugins-common1_8.56+14.04.20140307-0ubuntu2_amd64.deb Size: 14592 MD5sum: 4ee94619c211879314c4f4c35fc8096f SHA1: c43291d49d9b681785d57caf48c552ace2f82ad2 SHA256: cb1fefec5638de77e102d01d4a2ce59a8e20d97e154e6f512a083679aa9d76ab Description: Single Sign On framework Homepage: http://code.google.com/p/accounts-sso/ Description-md5: e82cc644df18f6d1c382ada5d5c88928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libsignon-plugins-doc Priority: optional Section: doc Installed-Size: 586 Maintainer: Ubuntu Desktop Team Architecture: all Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Filename: pool/main/s/signon/libsignon-plugins-doc_8.56+14.04.20140307-0ubuntu2_all.deb Size: 139336 MD5sum: 0a058863a98cbcc8f6d22df9aef7f74e SHA1: e56c9450eaef9f39ef5e2abf3b6d159ed632cde0 SHA256: 1becb833d4d370796f28643871dc2c32e2ab7ec555072318276ac27d975f5846 Description: Single Sign On framework plugins - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 261b6b2151c83e14b3f866d069eecffa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-qt-dev Priority: optional Section: libdevel Installed-Size: 118 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libsignon-qt1 (= 8.56+14.04.20140307-0ubuntu2), libqt4-dev (>= 4.5) Filename: pool/main/s/signon/libsignon-qt-dev_8.56+14.04.20140307-0ubuntu2_amd64.deb Size: 13454 MD5sum: 3616444fac0a0ea6082721487db7b315 SHA1: a8d584a65982de0aee3246aebbdb2fb3acc5cea2 SHA256: 17feb7e1f3955f35182cb8da61bb4f2d7d3d603d1fadc275b7f965d968d1a270 Description: Development files for libsignon-qt Homepage: http://code.google.com/p/accounts-sso/ Description-md5: cf54ad814c7c7abcf70c32b44f66c2bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-qt-doc Priority: optional Section: doc Installed-Size: 1349 Maintainer: Ubuntu Desktop Team Architecture: all Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Filename: pool/main/s/signon/libsignon-qt-doc_8.56+14.04.20140307-0ubuntu2_all.deb Size: 209624 MD5sum: 92fbc028414bca57f005d47b6a7f34da SHA1: 4a875bc48070aa87a035f3bf75545d17066c86b6 SHA256: d788cdb66e0cc6e74afce9d286f928e3cca09a519ec17ad5bdaaf6369e54c42f Description: QT bindings for single signon - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 97bab6ea9929a3023462acc349535d16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-qt1 Priority: optional Section: libs Installed-Size: 202 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libc6 (>= 2.14), libqt4-dbus (>= 4:4.8.0), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon/libsignon-qt1_8.56+14.04.20140307-0ubuntu2_amd64.deb Size: 52644 MD5sum: e34ee5c6e9234cef058806fbd282e7fe SHA1: fb7d18209c5a6205ce90ce691307dc80a64968c4 SHA256: d3b123090295dbad15cafb27dbd2f6074131ba504da8329d3b95f247fa32d11d Description: Single Sign On framework Homepage: http://code.google.com/p/accounts-sso/ Description-md5: e82cc644df18f6d1c382ada5d5c88928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libsignon-qt5-1 Priority: optional Section: libs Installed-Size: 250 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon/libsignon-qt5-1_8.56+14.04.20140307-0ubuntu2_amd64.deb Size: 65580 MD5sum: f12b2b951600af411c6cb34d00b933a7 SHA1: 8acc075abc7e5398e3b8168b5ad70ffc26590801 SHA256: 7115680d0924577fa1c8f7b57af1f6d9546fe536668d3edc203298e77e68015a Description: Single Sign On framework Homepage: http://code.google.com/p/accounts-sso/ Description-md5: e82cc644df18f6d1c382ada5d5c88928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libsignon-qt5-dev Priority: optional Section: libdevel Installed-Size: 118 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libsignon-qt5-1 (= 8.56+14.04.20140307-0ubuntu2), qtbase5-dev Filename: pool/main/s/signon/libsignon-qt5-dev_8.56+14.04.20140307-0ubuntu2_amd64.deb Size: 13454 MD5sum: 3422d29a6ac64be0e3776c9371bcb6f8 SHA1: c050aacbf4e1075bfe1c5676a4922318840d38f9 SHA256: aa1cbe088832e23368e5dfd1ec1716b628ecaa39facacfebb85075dce9b2d621 Description: Development files for libsignon-qt Homepage: http://code.google.com/p/accounts-sso/ Description-md5: cf54ad814c7c7abcf70c32b44f66c2bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsigsegv-dev Priority: optional Section: libdevel Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Common Lisp Team Architecture: amd64 Source: libsigsegv Version: 2.10-2 Depends: libsigsegv2 (= 2.10-2) Filename: pool/main/libs/libsigsegv/libsigsegv-dev_2.10-2_amd64.deb Size: 9002 MD5sum: 54ff35477adb1ee15ceb9e4e943b6b5a SHA1: 60f49dbff86a6b65ae04f0606190b8aab7c087d5 SHA256: 140dd3f44c2e2df9beac1b30299f83bc7b763bb7f77f974fdc52bf8acf55202d Description: Library for handling page faults in a portable way development package Multi-Arch: same Homepage: http://libsigsegv.sourceforge.net/ Description-md5: a7c5d1a301a69ae1ac1dca070c063968 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsigsegv2 Priority: optional Section: libs Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Common Lisp Team Architecture: amd64 Source: libsigsegv Version: 2.10-2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libs/libsigsegv/libsigsegv2_2.10-2_amd64.deb Size: 15018 MD5sum: 02a1d6194bd62571a9dcbcad5071d8d9 SHA1: ea3c367f70986edc1fdd944947c68f9051949617 SHA256: 09d39872d594d32c609f6ee3d6c703e614c43b953c4257f477aca8c84e229a95 Description: Library for handling page faults in a portable way Multi-Arch: same Homepage: http://libsigsegv.sourceforge.net/ Description-md5: a81513d919fc703846690a764e3b9b21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-usb, cloud-image, server, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: libsl0-heimdal Priority: extra Section: libs Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.11), libedit2 (>= 2.11-20080614) Pre-Depends: multiarch-support Conflicts: libsl0-kerberos4kth Filename: pool/main/h/heimdal/libsl0-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 13374 MD5sum: c85740f11cba288d13a33e9e337aeb13 SHA1: 8873ef8fe6a8065ed285ed70ba4841e247db8959 SHA256: db7e62d15d4eba01457b23a7f8c1d126d9eaa91392754519d37fe0848a19f94c Description: Heimdal Kerberos - SL support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 8ffc54745b78f52228abc0c4b0ada710 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libslang2 Priority: required Section: libs Installed-Size: 1466 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: amd64 Source: slang2 Version: 2.2.4-15ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Recommends: libpng12-0 Filename: pool/main/s/slang2/libslang2_2.2.4-15ubuntu1_amd64.deb Size: 475620 MD5sum: 0bd1a9aa2658c7c43dd72bfbdfce25ca SHA1: d8598f057a259e5c99409be41319449a456e32b0 SHA256: 727f3e493959c5932ef7eb35512e62f4dbeec7c45d5d8250458d05c86f4610c9 Description: S-Lang programming library - runtime version Multi-Arch: same Homepage: http://www.jedsoft.org/slang/ Description-md5: 63cf6009be68fe5fb7a6729e8527359d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libslang2-dev Priority: optional Section: devel Installed-Size: 2177 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: amd64 Source: slang2 Version: 2.2.4-15ubuntu1 Depends: libslang2 (= 2.2.4-15ubuntu1), libc6-dev | libc-dev, libpng-dev Conflicts: slang-dev6, slang1-utf8-dev Filename: pool/main/s/slang2/libslang2-dev_2.2.4-15ubuntu1_amd64.deb Size: 523674 MD5sum: 9f70365171973d1e15211cbe7467d15d SHA1: b89197c69c7eebc962a6cfb1119ec0d53f8faafb SHA256: 6f39ebda9ed81968364835661e6e9d2f6df3c43d73aaf613c9dc1f6b6297cde6 Description: S-Lang programming library, development version Multi-Arch: same Homepage: http://www.jedsoft.org/slang/ Description-md5: 9978b57decbe8c7b64fa0e4fd3c9cf8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libslang2-pic Priority: optional Section: libdevel Installed-Size: 1972 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: amd64 Source: slang2 Version: 2.2.4-15ubuntu1 Depends: libslang2-dev (= 2.2.4-15ubuntu1) Conflicts: libslang1-pic, slang-pic, slang1-utf8-pic Filename: pool/main/s/slang2/libslang2-pic_2.2.4-15ubuntu1_amd64.deb Size: 435628 MD5sum: 140c6ad97b9f7c9f1415247cd4a825d7 SHA1: 023958620db56625ac5c53c83c0f540960a34308 SHA256: 6408bdd85ea6c76ebd671bcf777f452fdeb6e72cf8329a93811a903a7aa635ca Description: S-Lang programming library, shared library subset kit Homepage: http://www.jedsoft.org/slang/ Description-md5: 6ac39ebfc9448c20f9f8c02ffb8e243b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libslp-dev Priority: extra Section: libdevel Installed-Size: 262 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: openslp-dfsg Version: 1.2.1-9 Depends: libslp1 (= 1.2.1-9), libc6-dev Suggests: openslp-doc (= 1.2.1-9) Conflicts: libxdelta3-dev Filename: pool/main/o/openslp-dfsg/libslp-dev_1.2.1-9_amd64.deb Size: 58316 MD5sum: a06a351da305a06883d1131ed0d43065 SHA1: 6bc5ee072fe20c833337c4bf9d50bef5dc7013a2 SHA256: 224aa351d78cf1204d44b8ffe480fecbc17ec484caabf47a2ef353e5b4c4c46e Description: OpenSLP development libraries Homepage: http://www.openslp.org/ Description-md5: e576d5cc2cf3d18eed8ffc6845c4ef8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libslp1 Priority: optional Section: libs Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: openslp-dfsg Version: 1.2.1-9 Depends: libc6 (>= 2.15), debconf | debconf-2.0 Suggests: slpd (= 1.2.1-9), openslp-doc (= 1.2.1-9) Filename: pool/main/o/openslp-dfsg/libslp1_1.2.1-9_amd64.deb Size: 45058 MD5sum: d2da721b05e19a69185da4afbfc87d8b SHA1: f49b33026893c7b7f898437e2da44d8b4344fbb8 SHA256: 54cad9f5326b3f4bc50129f63dc950fe6631904d5257cb13bd8584323c5733ec Description: OpenSLP libraries Homepage: http://www.openslp.org/ Description-md5: d86e7e071b274afec565db9c2175a43d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsm-dev Priority: optional Section: libdevel Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libsm Version: 2:1.2.1-2 Depends: libsm6 (= 2:1.2.1-2), x11proto-core-dev, libice-dev (>= 1:1.0.0-1) Suggests: libsm-doc Filename: pool/main/libs/libsm/libsm-dev_1.2.1-2_amd64.deb Size: 19904 MD5sum: ba3bddd5ac1b0eef0212ca29a862bfb3 SHA1: b0de239f94287eda01400f4827604e4bdcde9100 SHA256: 92df8219b3983c4ee8bcd2fac465e8c63c372162c4c0903dae663303fdf3ad7a Description: X11 Session Management library (development headers) Multi-Arch: same Description-md5: aabe94b2c3c6005a8f2ef7690a66644f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsm-doc Priority: optional Section: doc Installed-Size: 390 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libsm Version: 2:1.2.1-2 Replaces: libsm-dev (<< 2:1.2.1) Breaks: libsm-dev (<< 2:1.2.1) Filename: pool/main/libs/libsm/libsm-doc_1.2.1-2_all.deb Size: 122000 MD5sum: 09ebf4410719e6b7285000085fbaa3d4 SHA1: fd99b30a1be806e4ec0f1a2bfb72de47efa780e8 SHA256: 5c65dc0d5a6a48dc43fa86a80ff3e1bbecdb4e9109402ce8e3eff11e72fa90c9 Description: documentation for the X Session Management protocol and library Multi-Arch: foreign Description-md5: 05d06f5a16de90aa35a42158cbde503c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsm6 Priority: optional Section: libs Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libsm Version: 2:1.2.1-2 Depends: libc6 (>= 2.14), libice6 (>= 1:1.0.0), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Filename: pool/main/libs/libsm/libsm6_1.2.1-2_amd64.deb Size: 18114 MD5sum: 158cffba7eba430d3ca194775d25386d SHA1: bc10b00ac6fb34eecf356170081b8bb2112331ec SHA256: a0ea60a147d7591704daf88b18c387265546737032e69d2a974f4f210965ca1c Description: X11 Session Management library Multi-Arch: same Description-md5: c37ad7a98c70010172a0350742036878 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsm6-dbg Priority: extra Section: libdevel Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libsm Version: 2:1.2.1-2 Depends: libsm6 (= 2:1.2.1-2) Filename: pool/main/libs/libsm/libsm6-dbg_1.2.1-2_amd64.deb Size: 41112 MD5sum: a776fe3f9cb4e496f8112a91e5b0d9db SHA1: 3b52ee1546255b7e1f9a0e58e06663cfe37d48c3 SHA256: b1fa90e82501ca2fa46bc12f0266bf9d725977050fdc0a27bb2da13e67cdbff0 Description: X11 Session Management library (debug package) Multi-Arch: same Description-md5: 073ef1b2d38f154572930a125bf8d806 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmbclient Priority: extra Section: libs Installed-Size: 289 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: samba-doc (<< 2:4.0.5~) Depends: libbsd0 (>= 0.0), libc6 (>= 2.14), libtalloc2 (>= 2.0.4~git20101213), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Conflicts: samba-doc (<< 2:4.0.5~) Filename: pool/main/s/samba/libsmbclient_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 49736 MD5sum: 375420b831612c1788e602e818b71457 SHA1: 19eca1845d90d008d885c9d691515353f1203e05 SHA256: 7ca66d1ec3fb79bbaa0258ca5e9836fb76b27b6f4419ea0dc794ee908a4d06f2 Description: shared library for communication with SMB/CIFS servers Multi-Arch: same Homepage: http://www.samba.org Description-md5: 483547748179a567c24665e99ab5439e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsmbclient-dev Priority: extra Section: libdevel Installed-Size: 301 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libsmbclient (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/samba/libsmbclient-dev_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 39784 MD5sum: 8be3b642bdbecbb4484aca6921e7c991 SHA1: 57bb96a586acc6a5391f2db457b6539d72fb138f SHA256: 12ad06e88705c8f0dcaef3823f02d3396f8c8759053db302038065e0d4d9fede Description: development files for libsmbclient Multi-Arch: same Homepage: http://www.samba.org Description-md5: d6338d0aed68408023b999dd547aaecf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmbsharemodes-dev Priority: extra Section: libdevel Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libsmbsharemodes0 (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/samba/libsmbsharemodes-dev_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 7024 MD5sum: 7f583a88d157c4cc934f5b67949e21c5 SHA1: 51829be9ef0a00dc5745d095693d22fee67d96dd SHA256: f0e8d5985e9e4bb0cb42124b3110a39f05e93597c1f7b98be1eec1f7595947ce Description: development files for libsmbsharemodes Multi-Arch: same Homepage: http://www.samba.org Description-md5: 51ee1cdcad14f46b5afe65f8865ad461 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmbsharemodes0 Priority: optional Section: libs Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libc6 (>= 2.14), libtdb1 (>= 1.2.7+git20101214) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/s/samba/libsmbsharemodes0_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 13804 MD5sum: cb87bd1e1ce5ca6a6bec493e9a80e3c2 SHA1: e4740addf30298d044a4460cce0b30dd08950be9 SHA256: 4656e6ccb59bc10755d3b7692ef2570859d08ba186fc6081ffd2bb93544d2132 Description: shared library for non-samba access to the samba 'share modes' database Multi-Arch: same Homepage: http://www.samba.org Description-md5: 70ad341e0946fb9ff69e916c1c35916f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokebase3 Priority: optional Section: libs Installed-Size: 47 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokegen Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokegen/libsmokebase3_4.13.0-0ubuntu1_amd64.deb Size: 6820 MD5sum: d453a26a5c79c94c294558b4ba2cdf0e SHA1: 30604e9abf0cd63883361080475a8650163b8f93 SHA256: a5a235dd265856430622b9771ffc233404412c7add2f4f056e212550a208e5df Description: SMOKE base library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokegen Description-md5: 3abf79834be5642bddc4ac3096bfdb53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokephonon3 Priority: optional Section: libs Installed-Size: 351 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libphonon4 (>= 4:4.7.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1), phonon Filename: pool/main/s/smokeqt/libsmokephonon3_4.13.0-0ubuntu1_amd64.deb Size: 62826 MD5sum: 5f621264e9344495c8e86685b1986d8e SHA1: d15937281c637dd87b0a24b5641d1d694c2ae96c SHA256: 273d817ac7022ef1948da1b450db8948b85e2b0169a3fcffe3f0f83c4bc039be Description: Qt Phonon SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: eb2f0857065cb760a96a68af869f93c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqimageblitz3 Priority: optional Section: libs Installed-Size: 78 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqimageblitz4 (>= 1:0.0.4), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqimageblitz3_4.13.0-0ubuntu1_amd64.deb Size: 14664 MD5sum: 68ff86aa56fe6a1627dd33102a775963 SHA1: a58bd3f470190deeb0760dc1c17378b9854fd097 SHA256: f57771d09c198a49db4690d4642a3b0df52cdd4025183752af24edf78d9ab12a Description: QImageBlitz SMOKE libraries Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: ac6ef85d9f4d4e7b6facd2f76b45dfe3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqsci3 Priority: optional Section: libs Installed-Size: 978 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqscintilla2-11, libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqsci3_4.13.0-0ubuntu1_amd64.deb Size: 157570 MD5sum: b7a45b38b04919f1cd2d6e4a355df327 SHA1: 8af41074824fc30bad01dc2f0dcda6eb2ec68555 SHA256: 43a3a9f1fb9d3b1d31e3567e06a54a1f93dfbfad573f3f3a354b69e99bb295e0 Description: QScintilla2 SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 8cab4142db0e08cd7a3d11af17829b29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqt3support4-3 Priority: optional Section: libs Installed-Size: 2741 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-network (>= 4:4.5.3), libqt4-qt3support (>= 4:4.6.1), libqt4-sql (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtnetwork4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtsql4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtxml4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqt3support4-3_4.13.0-0ubuntu1_amd64.deb Size: 450966 MD5sum: 38beb28691177ad56839855c68b2544c SHA1: 23e7240cbabba270924ba7de5a34f73362e5c940 SHA256: 74ea98a085a4efac63c28bc7a1dfa52bd14bba472b99f7fe5a954a627039d17d Description: Qt3 Support SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 3a7fcbc9d994b313a292e83b7f10911f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqt4-dbg Priority: extra Section: debug Installed-Size: 22208 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Replaces: kdebindings-dbg Depends: libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1) Recommends: libqt4-dbg Breaks: kdebindings-dbg Filename: pool/main/s/smokeqt/libsmokeqt4-dbg_4.13.0-0ubuntu1_amd64.deb Size: 19141134 MD5sum: ea0e57d14f470d8684324eeb7acf0bf1 SHA1: 865c8cbd24e6e2855bdbb9495c31933b42dccd2b SHA256: bc5a718d02df1a3e31df9a896167e9a8932b56470bf129153fbbd5e868c7d3c4 Description: Qt SMOKE libraries debug symbols Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: f14a30c2f960a3357f092cea8c0494b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqt4-dev Priority: optional Section: libdevel Installed-Size: 1054 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libsmokephonon3 (= 4:4.13.0-0ubuntu1), libsmokeqimageblitz3 (= 4:4.13.0-0ubuntu1), libsmokeqsci3 (= 4:4.13.0-0ubuntu1), libsmokeqt3support4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtdbus4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtdeclarative4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libsmokeqthelp4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtnetwork4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtopengl4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtscript4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtsql4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtsvg4-3 (= 4:4.13.0-0ubuntu1), libsmokeqttest4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtuitools4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtwebkit4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtxml4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtxmlpatterns4-3 (= 4:4.13.0-0ubuntu1), smoke-dev-tools (>> 4:4.10) Filename: pool/main/s/smokeqt/libsmokeqt4-dev_4.13.0-0ubuntu1_amd64.deb Size: 136058 MD5sum: 60ab727374f171c959adaed9bb49e2c8 SHA1: 7b0a7b8e89638b3bf1821e1ab6aaeda39b270884 SHA256: 055229adff5710f6d4d12fc78c8175307e6ffc693f7ec8c0284d38887dfc8ba0 Description: Development files for Qt SMOKE libraries Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: f9737cad4fa9888e6f2bcaab3ad7a273 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtcore4-3 Priority: optional Section: libs Installed-Size: 1490 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.4), libsmokebase3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtcore4-3_4.13.0-0ubuntu1_amd64.deb Size: 300456 MD5sum: f66656e0e41c2909100f93241a6696c3 SHA1: c07314aab5cf7db937918a301eb48f0d729c5197 SHA256: 579e5c0fb88af019bc0d996538324d61f1164ccd295808d17d6a60051679ded4 Description: Qt Core SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: c0b2cf44d57ec5b106fe7490edcac20d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtdbus4-3 Priority: optional Section: libs Installed-Size: 225 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8.0), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtdbus4-3_4.13.0-0ubuntu1_amd64.deb Size: 44750 MD5sum: 3acee81cd0142a7d120d852e257f3950 SHA1: f424735fc5888303f33429787af2a6939ef13509 SHA256: 1b663e733ffd82b6f5e3d994594a12f52bed8cec9d330a71eb165500a40a80a3 Description: Qt D-Bus SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 47e8dfce47ac3b7d7682a276b7848d09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtdeclarative4-3 Priority: optional Section: libs Installed-Size: 291 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt4-declarative (>= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-network (>= 4:4.5.3), libqt4-script (>= 4:4.6.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtdeclarative4-3_4.13.0-0ubuntu1_amd64.deb Size: 52288 MD5sum: b6a4d533df8cdc66edaaf83ba1724718 SHA1: 0d6177bb0e05fc3a6cf9d5f9fe7be1ce00dc94ad SHA256: 1a6a763a992ff21d150f4f943ec2f7a78b310a4c63db1dc78985974e3eedf8a9 Description: Qt Declarative SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 0bd1bd7a5fdb8e324060267945b79188 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtgui4-3 Priority: optional Section: libs Installed-Size: 5726 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtgui4-3_4.13.0-0ubuntu1_amd64.deb Size: 977840 MD5sum: 6957bf89a1496e113b9e82d78776f800 SHA1: b9a0e90decb2af4a85f742367587db5077d2ce54 SHA256: 3200101eca152fdb52678d09c73b3372f13fe0c4742067eae5d7ecea956f8fcb Description: Qt Gui SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: cc1b6a1daacccde2778e10a1ac9a3425 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqthelp4-3 Priority: optional Section: libs Installed-Size: 160 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt4-help (>= 4:4.8.0), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtsql4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqthelp4-3_4.13.0-0ubuntu1_amd64.deb Size: 28884 MD5sum: 1bb4013d829f32d57994727820c782b8 SHA1: 7888b5f1a93ae23e01a73e3e07d398afeafde4c5 SHA256: 9dfd9dc4a4d131ee0a2bc0e36fec924e9b28fa6ad75d14874b34a5f2e6655193 Description: Qt Help SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 21d2afb0ae257b240020f0b7723ee844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtnetwork4-3 Priority: optional Section: libs Installed-Size: 515 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt4-network (>= 4:4.8.0), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtnetwork4-3_4.13.0-0ubuntu1_amd64.deb Size: 96610 MD5sum: d0cc860917c428bf8aacf4c383432825 SHA1: 608eba60e1082d29401e276c112519da98a35ceb SHA256: 9dbfd56e6a8270bd6bd5d0dae3592817fbdfb3213e5786689bde3ad3082eead8 Description: Qt Network SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 4c1ff5f70822f656270449dfa191d51f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtopengl4-3 Priority: optional Section: libs Installed-Size: 231 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-opengl (>= 4:4.8.0), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtopengl4-3_4.13.0-0ubuntu1_amd64.deb Size: 40080 MD5sum: f76ffff76ef0c18890fa4c43b4a5ea4b SHA1: 17b0b3964daa3381d0ec5337005be6dcacd10e5c SHA256: 5a57e25ad75918ff90c11861238510e7e1a46687d120fbd62f08aa64c601d3a4 Description: Qt OpenGL SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 749841fec9b25349bf97062eaeca3a58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtscript4-3 Priority: optional Section: libs Installed-Size: 179 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt4-script (>= 4:4.7.0~beta1), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtscript4-3_4.13.0-0ubuntu1_amd64.deb Size: 34124 MD5sum: 09b723ebece14d028ea65421bf77d5eb SHA1: 9fc7174d41ecd9214e48afdc2aceb98d178371fb SHA256: 1ca3f6db514bb607edf2cd0494b2409dd9eb2f74ea887a81ae7f6cee3847ea16 Description: Qt Script SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 5b4be4f98c69725bf529922e613a6019 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtsql4-3 Priority: optional Section: libs Installed-Size: 299 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt4-sql (>= 4:4.8.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtsql4-3_4.13.0-0ubuntu1_amd64.deb Size: 59336 MD5sum: 4c784fb44a969c09e84053877b864ea2 SHA1: 1d265748ab3cf51bd68b09e8dc5e643d6f7fbefb SHA256: 0fd16e939c480be9fa23272e36671aaac63258088a7bfe93f99d51dd71303d8f Description: Qt Sql SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: a90352d8103d21587377c1ff591a6a0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtsvg4-3 Priority: optional Section: libs Installed-Size: 155 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt4-svg (>= 4:4.5.3), libqtcore4 (>= 4:4.5.3), libqtgui4 (>= 4:4.6.1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtsvg4-3_4.13.0-0ubuntu1_amd64.deb Size: 25116 MD5sum: 9cdc4c354e9324761e805b2f88b61ead SHA1: 26fdc3deb2efef483da9514bb72248af95814fb0 SHA256: 8c8d1653e511fc93648a3ea775e68d1f20142290a9405df29a64973ec8294be1 Description: Qt Svg SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 6867661d0e21c252afb6a0dd65069dcf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqttest4-3 Priority: optional Section: libs Installed-Size: 155 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-test (>= 4:4.8.5+git192), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqttest4-3_4.13.0-0ubuntu1_amd64.deb Size: 34716 MD5sum: 28ed5295aae29508f03c5c89a2243833 SHA1: 2aff204f0bf14e5535141bdfd63661bf8767c77b SHA256: 478454b78f7591e97dc281ee43be08e0d10148078342390117d9e8e73fada055 Description: Qt Test SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: dec3e6b1c3745e02991bb183e1db5926 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtuitools4-3 Priority: optional Section: libs Installed-Size: 771 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.6.1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtuitools4-3_4.13.0-0ubuntu1_amd64.deb Size: 193442 MD5sum: 4077656584917395843a7fa7bd2f1a94 SHA1: 44c90fcfcf8f0e6b96bd54bd29975fa21c512c60 SHA256: 1fb0e2ea53fe786e9789e89e1f0403fb5f31c68aac89e15a9390bd544ccec5da Description: Qt Ui Tools SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 92b3b63f76e846f0aba03966ca2b60d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtwebkit4-3 Priority: optional Section: libs Installed-Size: 302 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libqtwebkit4, libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtwebkit4-3_4.13.0-0ubuntu1_amd64.deb Size: 57574 MD5sum: 85a80ee1a124599c4bf87fa070eb7cac SHA1: e5b694b0140fb309c0700268a77e81d11f5390c7 SHA256: 914dfc9a26cbe626b0c79815ddd148d45fb488f6d3a72a5721902bc3240fe553 Description: Qt WebKit SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: ff49b8f18f1f0b9907067ffe0e596058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtxml4-3 Priority: optional Section: libs Installed-Size: 251 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt4-xml (>= 4:4.6.1), libqtcore4 (>= 4:4.8.0), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtxml4-3_4.13.0-0ubuntu1_amd64.deb Size: 46144 MD5sum: a70bfa6bba4d9e4b49662fee3d21a00b SHA1: ea5a540f39e9d1da40ba8dc4cac4d9fa758d443f SHA256: 892a912e6527510251079c53b99e1347858fd43052ed502a765a5a48ef89f871 Description: Qt Xml SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 0e43211c2787ac5edd9cbcf901a3be6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtxmlpatterns4-3 Priority: optional Section: libs Installed-Size: 191 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt4-network (>= 4:4.5.3), libqt4-xmlpatterns (>= 4:4.6.1), libqtcore4 (>= 4:4.6.1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtxmlpatterns4-3_4.13.0-0ubuntu1_amd64.deb Size: 36516 MD5sum: 987bd003bcc51366bbcf3e72c4b2a0d7 SHA1: 8cce37c001d7b21091afa7f1ecdce98852b4d219 SHA256: 8047d17fc71a8cfe6283012766414b9c3a86bc8d86e284d6c656f853300097e8 Description: Qt XmlPatterns SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 2bcb0ba441574644689d6014f04d2668 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsnappy-dev Priority: extra Section: libdevel Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Steinar H. Gunderson Architecture: amd64 Source: snappy Version: 1.1.0-1ubuntu1 Depends: libsnappy1 (= 1.1.0-1ubuntu1) Filename: pool/main/s/snappy/libsnappy-dev_1.1.0-1ubuntu1_amd64.deb Size: 18008 MD5sum: ad0b25a37a5a6146acaf3f8c6de37d3e SHA1: 01bff6712c223d044785f7faef6c32e2a1731b97 SHA256: 07096e94d2fc8d35cec3c04dcc9f5bcfad9c444385835966965910914e456001 Description: fast compression/decompression library (development files) Homepage: http://code.google.com/p/snappy/ Description-md5: b499df87b72e11eeccdad0dfd3c2149b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsnappy1 Priority: extra Section: libs Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Steinar H. Gunderson Architecture: amd64 Source: snappy Version: 1.1.0-1ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/snappy/libsnappy1_1.1.0-1ubuntu1_amd64.deb Size: 11152 MD5sum: 6e75ed3aa224013957954c6671bead67 SHA1: 91ecd4736b00cfd64ff3a38bb97c7cae4f597259 SHA256: 260d6335958cb0679f85f57e0e46b5c192f721fba96d5e3032b59fa7906948d6 Description: fast compression/decompression library Homepage: http://code.google.com/p/snappy/ Description-md5: 87a4defa5f66a7f4af2eb47bb53fe942 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsndfile1 Priority: optional Section: libs Installed-Size: 514 Maintainer: Ubuntu Developers Original-Maintainer: Erik de Castro Lopo Architecture: amd64 Source: libsndfile Version: 1.0.25-7ubuntu2 Depends: libc6 (>= 2.14), libflac8 (>= 1.3.0), libogg0 (>= 1.0rc3), libvorbis0a (>= 1.2.3), libvorbisenc2 (>= 1.1.2) Pre-Depends: multiarch-support Filename: pool/main/libs/libsndfile/libsndfile1_1.0.25-7ubuntu2_amd64.deb Size: 136134 MD5sum: 7d1069fef8f95bc27c2f12f0d8eb4b08 SHA1: 9d214982197bc5e56a09148de1fa05bfece648ec SHA256: 9ec16b7f1927ea449c83de87c77901e7ef0b4ac34f9153ce4b3135570bb598d3 Description: Library for reading/writing audio files Multi-Arch: same Homepage: http://www.mega-nerd.com/libsndfile/ Description-md5: 67b723b50c9aa944fba48e79d51e9d5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libsndfile1-dbg Priority: extra Section: debug Installed-Size: 1514 Maintainer: Ubuntu Developers Original-Maintainer: Erik de Castro Lopo Architecture: amd64 Source: libsndfile Version: 1.0.25-7ubuntu2 Depends: libsndfile1 (= 1.0.25-7ubuntu2) Filename: pool/main/libs/libsndfile/libsndfile1-dbg_1.0.25-7ubuntu2_amd64.deb Size: 290334 MD5sum: 5f5dce2a54e5b191ec9eaf51993bccc6 SHA1: 0986f7a0eda58282ecba169123010a28f185b24f SHA256: e3c97c299177687bd14aece531989b967d2ea0b24aa036b78022db782c92b4fd Description: debugging symbols for libsndfile Homepage: http://www.mega-nerd.com/libsndfile/ Description-md5: fdb6a698edab0dbdce8de0878d0dc15d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsndfile1-dev Priority: optional Section: libdevel Installed-Size: 3967 Maintainer: Ubuntu Developers Original-Maintainer: Erik de Castro Lopo Architecture: amd64 Source: libsndfile Version: 1.0.25-7ubuntu2 Replaces: libsndfile-dev Provides: libsndfile-dev Depends: libsndfile1 (= 1.0.25-7ubuntu2), pkg-config, libvorbis-dev (>= 1.2.3), libflac-dev (>= 1.1.4-3) Conflicts: libsndfile-dev, libsndfile0-dev Filename: pool/main/libs/libsndfile/libsndfile1-dev_1.0.25-7ubuntu2_amd64.deb Size: 651288 MD5sum: f9dbf92a3a0348067e6a27306421eb43 SHA1: dd12e5033573c80f810ed7fd1e4081a36f18df0d SHA256: 3843bd3c93310054b6a3371620f235a21505b8133d7e37024db711972dabddff Description: Development files for libsndfile; a library for reading/writing audio files Homepage: http://www.mega-nerd.com/libsndfile/ Description-md5: 7ff7eba6e64514219e2a1e52dcdffde5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsnmp-base Priority: optional Section: libs Installed-Size: 692 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: all Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Replaces: libsnmp-dev (<< 5.4~dfsg), libsnmp15 (<< 5.7.2~dfsg-5), libsnmp9-dev (<< 5.4~dfsg) Suggests: snmp-mibs-downloader Conflicts: libsnmp-dev (<< 5.4~dfsg), libsnmp30 (<< 5.7.2~dfsg-5), libsnmp9-dev (<< 5.4~dfsg) Breaks: libsnmp15 (<< 5.7.2~dfsg-5) Filename: pool/main/n/net-snmp/libsnmp-base_5.7.2~dfsg-8.1ubuntu3_all.deb Size: 202948 MD5sum: bf7e5ff1d27d12703fb37b82f2e13bac SHA1: fd18020d601a00b52457f8b684a069aac5906fe0 SHA256: 221e3733212d71a3a5db10527b83b7559c64b0ffee5c64a196cd948f9c8bf406 Description: SNMP configuration script, MIBs and documentation Multi-Arch: foreign Homepage: http://net-snmp.sourceforge.net/ Description-md5: 88f58315170b08fa3d81c17150b8a008 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsnmp-dev Priority: optional Section: libdevel Installed-Size: 8161 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: amd64 Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Replaces: libsnmp-base (<< 5.7.2~dfsg-8.1~), libsnmp15-dev, libsnmp9-dev, snmp (<< 5.4~dfsg) Provides: libsnmp9-dev Depends: libc6-dev, libsnmp30 (= 5.7.2~dfsg-8.1ubuntu3), libwrap0-dev, libssl-dev, procps, libsensors4-dev Conflicts: libsnmp15-dev, libsnmp9-dev, snmp (<< 5.4~dfsg) Breaks: libsnmp-base (<< 5.7.2~dfsg-8.1~) Filename: pool/main/n/net-snmp/libsnmp-dev_5.7.2~dfsg-8.1ubuntu3_amd64.deb Size: 1042682 MD5sum: 227aece5584fe9fe26689ddf09efab7f SHA1: c14ce18b7b66d1f02836ce73bfcf4d73a30d4f19 SHA256: 4a219d4a523853b66e9a28300ff9ad99336d1ac1ad9dcbb7bee7053e40ea1dc5 Description: SNMP (Simple Network Management Protocol) development files Homepage: http://net-snmp.sourceforge.net/ Description-md5: ebbe562b6f877c886859d7d65518292b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsnmp30 Priority: optional Section: libs Installed-Size: 3160 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: amd64 Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Replaces: libsnmp-base (<< 5.4.2.1~dfsg-4), libsnmp15, snmp (<< 5.4.3~dfsg-1) Depends: libc6 (>= 2.17), libperl5.18 (>= 5.18.2), libsensors4 (>= 1:3.0.0), libssl1.0.0 (>= 1.0.0), libwrap0 (>= 7.6-4~), libsnmp-base Pre-Depends: multiarch-support Breaks: libsnmp15 Filename: pool/main/n/net-snmp/libsnmp30_5.7.2~dfsg-8.1ubuntu3_amd64.deb Size: 790294 MD5sum: c4359a72ce136c2538b27df9f1584f47 SHA1: 58bae504b31bc27309baa1fa86f54b731f25989f SHA256: 64b4fc428e775fe20222e48491e077a9567bff3e20a22b59b839d277c12877b1 Description: SNMP (Simple Network Management Protocol) library Multi-Arch: same Homepage: http://net-snmp.sourceforge.net/ Description-md5: 6e9915ae8820960c2c2746a9ba442686 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsnmp30-dbg Priority: extra Section: debug Installed-Size: 3031 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: amd64 Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Depends: libsnmp30 (= 5.7.2~dfsg-8.1ubuntu3) Filename: pool/main/n/net-snmp/libsnmp30-dbg_5.7.2~dfsg-8.1ubuntu3_amd64.deb Size: 2083796 MD5sum: a6fde035bdc5aea55ca84f26d380f18e SHA1: 80a56d0cef8c017c52d6995ed2875c5c76c9079a SHA256: 84d5321b186ee52a15358cbd53ba128f0dc3cab4ce7a77267ce061f9cb3b13de Description: SNMP (Simple Network Management Protocol) library debug Homepage: http://net-snmp.sourceforge.net/ Description-md5: 7f74eff910ad4ad61ba8299c0f44666a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsocket6-perl Priority: optional Section: perl Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.25-1 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.4) Filename: pool/main/libs/libsocket6-perl/libsocket6-perl_0.25-1_amd64.deb Size: 23520 MD5sum: 8900a6107bfd79bd4a43c91201225d7b SHA1: e80611c61503229c48dc7f8ebcfe920fcfa04409 SHA256: fbe788987b2282c630d9f6fad376d871fc397bafa344bf339c60729c1f9b0a63 Description: Perl extensions for IPv6 Homepage: https://metacpan.org/release/Socket6 Description-md5: c2a83f9e6e10a4e09e3a82921d3af478 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsoftware-license-perl Priority: optional Section: perl Installed-Size: 482 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.103008-1 Depends: libdata-section-perl, libsub-install-perl, libtext-template-perl, perl Filename: pool/main/libs/libsoftware-license-perl/libsoftware-license-perl_0.103008-1_all.deb Size: 117870 MD5sum: 699ac21d0225d9e3bb70bafb4c675ae8 SHA1: 298e24dff9459562fd912878e2baea7a248b655d SHA256: 22d8bca354df4da049392710b1c7ef19311a858f3dd772fe24b6219f65c5e778 Description: module providing templated software licenses Homepage: https://metacpan.org/release/Software-License/ Description-md5: 7af28028a9c9fd87287fc512280a2cea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsolid4 Priority: optional Section: libs Installed-Size: 1245 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libqt4-dbus (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1), libudev1 (>= 183), udev Recommends: udisks2, upower Suggests: media-player-info Breaks: kde-config-tablet (<< 1.2.5) Filename: pool/main/k/kde4libs/libsolid4_4.13.0-0ubuntu1_amd64.deb Size: 263970 MD5sum: c1f9795206bfcb14c22b84c63d7a3156 SHA1: dd39bc6a16b0bdf8b77a0251b873c8c492cb81dd SHA256: d7a6948e2a365020ce13863dc385e1c8b0aed3c27d3390b65713cef22e8b3ba3 Description: Solid Library for KDE Platform Homepage: http://solid.kde.org/ Description-md5: 8c2c3226e5dda352478cce6495d83808 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libsombok-dev Priority: optional Section: libdevel Installed-Size: 690 Maintainer: Ubuntu Developers Original-Maintainer: Emmanuel Bouthenot Architecture: amd64 Source: sombok Version: 2.3.1-2 Depends: libc6-dev, libsombok3 (= 2.3.1-2), libjs-jquery Filename: pool/main/s/sombok/libsombok-dev_2.3.1-2_amd64.deb Size: 108140 MD5sum: ed6ce3f49376498d0a071539ac11abd2 SHA1: e1947d1365092f1b916a33a7f00882b46f044dda SHA256: 059555e9864220dba2cdb485281c15ff871a6732ac7aacc12b9e81cfb1e0e38d Description: Unicode Text Segmentation library (development files) Homepage: http://sourceforge.net/projects/linefold/ Description-md5: 52846f6cd13fba1ac5d444a677039181 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsombok3 Priority: optional Section: libs Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Emmanuel Bouthenot Architecture: amd64 Source: sombok Version: 2.3.1-2 Depends: libthai0 (>= 0.1.12), libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/s/sombok/libsombok3_2.3.1-2_amd64.deb Size: 29888 MD5sum: c4bc12a627f43be6ef363a242f0dc70a SHA1: 65b12690fab8d2eb142dc5e9a32244a8c406364c SHA256: 0891b24d26ae50b117906ff37dce73a91faaa426e4439c7f49d43eea61ec5081 Description: Unicode Text Segmentation library Multi-Arch: same Homepage: http://sourceforge.net/projects/linefold/ Description-md5: d47198dbbd36aed7c8bd57135d739f6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsonic-dev Priority: extra Section: libdevel Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Bill Cox Architecture: amd64 Source: sonic Version: 0.1.18-0ubuntu1 Depends: libsonic0 (= 0.1.18-0ubuntu1) Suggests: sonic Filename: pool/main/s/sonic/libsonic-dev_0.1.18-0ubuntu1_amd64.deb Size: 12622 MD5sum: 7fd0fc5be6f6955407a605e33ef80e1d SHA1: e346a37ad43faf37991e39d6785df683dc3aaa61 SHA256: 9aed323144052353a802422efec565d5029f58643af0914199d69453e010fdab Description: Header file for linking to libsonic Multi-Arch: same Homepage: http://dev.vinux-project.org/sonic Description-md5: 0e916a9b43c67667817107a3c5dcc611 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsonic0 Priority: extra Section: libs Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Bill Cox Architecture: amd64 Source: sonic Version: 0.1.18-0ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/s/sonic/libsonic0_0.1.18-0ubuntu1_amd64.deb Size: 11538 MD5sum: 9a115ef482acb6ca2887bac4072d8e12 SHA1: c70ccb91b79c9154aca84a140877f9c2cdad9b0b SHA256: e7064b49fa1c5370889585254067729a9f2635b0a1338a63922de140669e9f4b Description: Simple library to speed up or slow down speech Multi-Arch: same Homepage: http://dev.vinux-project.org/sonic Description-md5: 0391a6870696f0881e1433b185dd1562 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsoprano-dbg Priority: extra Section: libdevel Installed-Size: 8835 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: soprano Version: 2.9.4+dfsg1-0ubuntu2 Depends: libsoprano4 (= 2.9.4+dfsg1-0ubuntu2) Filename: pool/main/s/soprano/libsoprano-dbg_2.9.4+dfsg1-0ubuntu2_amd64.deb Size: 8422200 MD5sum: 56c9bc5ce2a842625f0f87c4e3b355b2 SHA1: 5c87d3e2727df552dfb4344f14ead3763ad0b97f SHA256: 82e7dfd0bc45b9743241dd9f4cce3093e236d2cb890a4d93a6c165c1ce7aefe2 Description: debugging symbols for the Soprano RDF framework Homepage: http://soprano.sourceforge.net Description-md5: 019dcb92e7cdfd74fcf72aefdc27d39e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoprano-dev Priority: extra Section: libs Installed-Size: 588 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: soprano Version: 2.9.4+dfsg1-0ubuntu2 Replaces: libsoprano4 (<< 2.1.64+svn897713), soprano-daemon (<< 2.4.0.1+dfsg.1) Depends: libsoprano4 (= 2.9.4+dfsg1-0ubuntu2) Suggests: libsoprano-doc (= 2.9.4+dfsg1-0ubuntu2) Breaks: libsoprano4 (<< 2.1.64+svn897713), soprano-daemon (<< 2.4.0.1+dfsg.1) Filename: pool/main/s/soprano/libsoprano-dev_2.9.4+dfsg1-0ubuntu2_amd64.deb Size: 67246 MD5sum: a33e41e3a8a46ca43d33417f3f24a63a SHA1: d4a8d2d76f79bc01d94057a2e7b7b53c07b90b9f SHA256: 0445514319ab2ec17cdee34aa58ae27dceffad64ec337fa5254f31cffbdc0389 Description: development files for the Soprano RDF framework Homepage: http://soprano.sourceforge.net Description-md5: 995f28f001ec22457a9e4ee1f53e84b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoprano-doc Priority: extra Section: doc Installed-Size: 16319 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: soprano Version: 2.9.4+dfsg1-0ubuntu2 Replaces: libsoprano-dev (<< 2.6.0+dfsg.1-1) Recommends: qt4-doc Breaks: libsoprano-dev (<< 2.6.0+dfsg.1-1) Filename: pool/main/s/soprano/libsoprano-doc_2.9.4+dfsg1-0ubuntu2_all.deb Size: 7278682 MD5sum: 3dce538e99419c477d57dac851994e00 SHA1: b42b2da7e7ab3770dac98f999203a4f90607b21f SHA256: ad38ebc98c518a7d87f805972c9accc0f6bae7567d78b14531eac301b791a842 Description: developer documentation for the Soprano RDF framework Homepage: http://soprano.sourceforge.net Description-md5: f25b1635362c554d978106c6adf8a13a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoprano4 Priority: extra Section: libs Installed-Size: 1602 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: soprano Version: 2.9.4+dfsg1-0ubuntu2 Replaces: libsoprano3 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.6.1), libqt4-network (>= 4:4.5.3), libqt4-xml (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1), soprano-daemon (= 2.9.4+dfsg1-0ubuntu2) Conflicts: libsoprano3 Filename: pool/main/s/soprano/libsoprano4_2.9.4+dfsg1-0ubuntu2_amd64.deb Size: 372794 MD5sum: e307a2b0227fb239b8ad696522c3114c SHA1: 444bd33c76568fc211ec73a7057834885852c729 SHA256: 932661e92aed3eaccabafc9b6b65a0da4a8dfe62fb127e942310ff774a5afaf0 Description: libraries for the Soprano RDF framework Homepage: http://soprano.sourceforge.net Description-md5: 888966d00f058e9aa7cbaa8d5a1f0872 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libsoup-gnome2.4-1 Priority: optional Section: libs Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libsoup2.4-1 (>= 2.41.90) Pre-Depends: multiarch-support Filename: pool/main/libs/libsoup2.4/libsoup-gnome2.4-1_2.44.2-1ubuntu2_amd64.deb Size: 4962 MD5sum: ec8bee1d6d9228d33b9d527491e58d2d SHA1: 8cb77196d33d37a77bf92b310ac15c93f9c493cf SHA256: 5d861aedf8d138176c6820f2d2797d108eee5f110cfdaf8a9f1980ecf596a293 Description: HTTP library implementation in C -- GNOME support library Multi-Arch: same Description-md5: b515da5159368013f8217bb971076081 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsoup-gnome2.4-dev Priority: optional Section: libdevel Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Replaces: gir-repository-dev (<< 0.6.5-7) Depends: libsoup-gnome2.4-1 (= 2.44.2-1ubuntu2), libsoup2.4-dev (= 2.44.2-1ubuntu2) Suggests: libsoup2.4-doc Filename: pool/main/libs/libsoup2.4/libsoup-gnome2.4-dev_2.44.2-1ubuntu2_amd64.deb Size: 6096 MD5sum: 78f4258000155d047d842ac353f94275 SHA1: 5a5e9fe393d07f33ef1c3fedd20c360cc13d31bf SHA256: 92e988b6284157db85b1acaac72159c418c154b319514ed20b0db54fb566e428 Description: HTTP library implementation in C -- GNOME support development files Description-md5: 8bbcc9878a5acbda1edbf6af2b9cfb54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoup2.4-1 Priority: optional Section: libs Installed-Size: 866 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9), libxml2 (>= 2.7.4), glib-networking (>= 2.32.0) Pre-Depends: multiarch-support Filename: pool/main/libs/libsoup2.4/libsoup2.4-1_2.44.2-1ubuntu2_amd64.deb Size: 237538 MD5sum: 48872ec7adb22e6a19dc94dce224d2a4 SHA1: 0c288cc1363b5e41970601db155f3c45e3eec2e3 SHA256: 2b885e2be371b71dc791654e8d85493034c338c5027060cb73af39cfda636b54 Description: HTTP library implementation in C -- Shared library Multi-Arch: same Description-md5: 2c47e713d56f9e3d99aa5439f3a11d86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsoup2.4-dbg Priority: extra Section: debug Installed-Size: 742 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Depends: libsoup2.4-1 (= 2.44.2-1ubuntu2) Filename: pool/main/libs/libsoup2.4/libsoup2.4-dbg_2.44.2-1ubuntu2_amd64.deb Size: 559854 MD5sum: 7cb5a7f71f976bd9342f2ab785ea926c SHA1: 2c58839c5a42d7bb83dda5a57014bb3ad7b40b27 SHA256: 132030a44576f25f42a4e6d9337d98fa9a61d4aca454bcff9d888d096948f943 Description: HTTP library implementation in C -- debugging symbols Description-md5: 103c669c5e7b5256f86ab6471d4c4bee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoup2.4-dev Priority: optional Section: libdevel Installed-Size: 2332 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Replaces: gir-repository-dev Depends: libsoup2.4-1 (= 2.44.2-1ubuntu2), gir1.2-soup-2.4 (= 2.44.2-1ubuntu2), libglib2.0-dev (>= 2.35.0), libxml2-dev Suggests: libsoup2.4-doc Filename: pool/main/libs/libsoup2.4/libsoup2.4-dev_2.44.2-1ubuntu2_amd64.deb Size: 302066 MD5sum: 6d5f488b1f71cb97880f42eb59cf142f SHA1: f1567ff13f35afb559b6fa7443b80bdbe488b3b3 SHA256: d48c1e4093df08842f98fb0e6c01ad4ee6ea596ffb6688e704e786c4686df745 Description: HTTP library implementation in C -- Development files Description-md5: 389065cef85cb190f877ff06e29ac787 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoup2.4-doc Priority: optional Section: doc Installed-Size: 2041 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Suggests: libsoup2.4-dev Filename: pool/main/libs/libsoup2.4/libsoup2.4-doc_2.44.2-1ubuntu2_all.deb Size: 199102 MD5sum: 3506598e7fa09878fec33b86ea56f5bd SHA1: 350515e2cda634adca536f5329c8b0a23385b575 SHA256: b47353b4be56966bb35a28b97ef0cc0e7746697e7ea1e32b7fb156c37c37d37c Description: HTTP library implementation in C -- API Reference Description-md5: 30d16c4ef5565770edbdc3a8882b7f92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsp1-dev Priority: optional Section: libdevel Installed-Size: 10180 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: amd64 Source: jade (1.2.1-47.3ubuntu1) Version: 1.3.4-1.2.1-47.3ubuntu1 Replaces: sp-dev Depends: libsp1c2 (= 1.3.4-1.2.1-47.3ubuntu1) Recommends: c++-compiler Conflicts: sp-dev Filename: pool/main/j/jade/libsp1-dev_1.3.4-1.2.1-47.3ubuntu1_amd64.deb Size: 1128924 MD5sum: eb0b39acaa8db15a3e5640d44fb9ee15 SHA1: 158d5132bccde172b5bbec0945f0af532e1a7e68 SHA256: 30e8725d736a6e5c48c8725e83923070bb68f896cf07813a99530ad820b4252d Description: James Clark's SP suite, developer support Description-md5: f155b20d2640996751a3638350e98613 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsp1c2 Priority: optional Section: libs Installed-Size: 4624 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: amd64 Source: jade (1.2.1-47.3ubuntu1) Version: 1.3.4-1.2.1-47.3ubuntu1 Replaces: libsp1 (<= 1.3.4-1.2.1-43) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: jade (<< 1.2.1-43), libsp1 (<= 1.3.4-1.2.1-43) Filename: pool/main/j/jade/libsp1c2_1.3.4-1.2.1-47.3ubuntu1_amd64.deb Size: 1025866 MD5sum: 9e7225b54d09fa4c68310e38e0578bc7 SHA1: 0acef06f96406907642e3795d5f63df86709fd47 SHA256: b545a14cde0388e52ea94e76dd776487f047f61b89d7976b77c34dea5eba5240 Description: Runtime library for James Clark's SP suite Description-md5: 58caf34eec9288af7b072aa4318bb242 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libsparsehash-dev Priority: optional Section: libdevel Installed-Size: 519 Maintainer: Ubuntu Developers Original-Maintainer: Athena Capital Research Architecture: all Source: sparsehash Version: 1.10-1ubuntu1 Replaces: sparsehash (<< 1.5.2) Recommends: c++-compiler Filename: pool/main/s/sparsehash/libsparsehash-dev_1.10-1ubuntu1_all.deb Size: 111016 MD5sum: f0d953c38cdd479cabfb192b5ce49f5d SHA1: 4e0a2b9c1a72fdff2642630788d9f83601b8f49d SHA256: 02042c6c6b651ebe6aa5625eacb5007a3bf3cd735e71fc85666fd198b585411a Description: Google's extremely memory-efficient C++ hash_map implementation Homepage: http://code.google.com/p/google-sparsehash Description-md5: f1892d074626ffc8f45c25a12319e388 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspe2-doc Priority: extra Section: doc Installed-Size: 4973 Maintainer: Ubuntu Developers Original-Maintainer: Arthur Loiret Architecture: amd64 Source: libspe2 Version: 2.2.80-95-3.1ubuntu7 Filename: pool/main/libs/libspe2/libspe2-doc_2.2.80-95-3.1ubuntu7_amd64.deb Size: 2774570 MD5sum: adf501724e6fadf03ba134a5046c96e6 SHA1: 619f98851d02648f14e0f6d4dad4dee67d81611b SHA256: eb305b46645708b73d54826b16e8cf3ef71f4a6b2f57d5e5b42e648339331960 Description: SPE Runtime Management Library (documentation) Homepage: http://sourceforge.net/projects/libspe Description-md5: b991b45065089a7cd66834a7cf506f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspectre-dev Priority: optional Section: libdevel Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: libspectre Version: 0.2.7-2ubuntu1 Depends: libspectre1 (= 0.2.7-2ubuntu1) Filename: pool/main/libs/libspectre/libspectre-dev_0.2.7-2ubuntu1_amd64.deb Size: 29116 MD5sum: 9cb88b9cfbc298fd499eef99cf17e598 SHA1: ec725b83d0271fc4fe053967671f5cb415426fb4 SHA256: 6ebb805840a04bb2bcc5bad2b3b9724d8915fc2eadf4e1f552ecf30bf45aab24 Description: Library for rendering PostScript documents - development files Homepage: http://libspectre.freedesktop.org Description-md5: c12c43ec185711ba54ce7cb86ba2b46c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspectre1 Priority: optional Section: libs Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: libspectre Version: 0.2.7-2ubuntu1 Depends: libc6 (>= 2.14), libgs9 (>= 8.61.dfsg.1) Pre-Depends: multiarch-support Suggests: libspectre1-dbg (= 0.2.7-2ubuntu1) Filename: pool/main/libs/libspectre/libspectre1_0.2.7-2ubuntu1_amd64.deb Size: 29202 MD5sum: 490f7f5e24e1f73994368313529bb3aa SHA1: c668848d7df7d34e374b997308c1f03021782ed3 SHA256: 7a5177c35b6083c4da6018a7a90893aba2f6757656ba0bb6458f30492b2bd062 Description: Library for rendering PostScript documents Multi-Arch: same Homepage: http://libspectre.freedesktop.org Description-md5: 091e69508e14132d0196030c81945bac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libspectre1-dbg Priority: extra Section: libdevel Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: libspectre Version: 0.2.7-2ubuntu1 Depends: libspectre1 (= 0.2.7-2ubuntu1) Filename: pool/main/libs/libspectre/libspectre1-dbg_0.2.7-2ubuntu1_amd64.deb Size: 54070 MD5sum: 0f638d0f6f71e9145733722cdcd58d5f SHA1: fb2ec749c8afb97f19cf629d12718be0a05d33fa SHA256: 5fd1ca019bf1f5b818e66739474e119267ae65a13b2460b87bb92ea6bc9e537c Description: Debugging symbols for libspectre Homepage: http://libspectre.freedesktop.org Description-md5: 116d06f6bf0ce5d14dec03403966548e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspeechd-dev Priority: extra Section: libdevel Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Debian TTS Team Architecture: amd64 Source: speech-dispatcher Version: 0.8-5ubuntu1 Depends: libspeechd2 (= 0.8-5ubuntu1) Suggests: speech-dispatcher Filename: pool/main/s/speech-dispatcher/libspeechd-dev_0.8-5ubuntu1_amd64.deb Size: 16266 MD5sum: f5de09c4ccd06569a8758d901d51b492 SHA1: 19b296f548ea6d233ba532d8fc1f464156f18241 SHA256: 3cb603542a16fcb5ff74ab7dd5a7f51c759acef41956bcd3b4a8cfbc69181d2a Description: Speech Dispatcher: Development libraries and header files Homepage: http://devel.freebsoft.org/speechd Description-md5: b0cbd061ec5ff46814f8d8ed60212ce0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspeechd2 Priority: extra Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian TTS Team Architecture: amd64 Source: speech-dispatcher Version: 0.8-5ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.28.0) Pre-Depends: multiarch-support Filename: pool/main/s/speech-dispatcher/libspeechd2_0.8-5ubuntu1_amd64.deb Size: 18286 MD5sum: e51cb142defba1e06c1b8e9aa414d316 SHA1: bfcb8bb47dffb3420912d3d2e8a8241046b9769e SHA256: 4a37722bdd80c6786833838e623f588f580aa197f4ca572a6b366d9f47ab0f20 Description: Speech Dispatcher: Shared libraries Multi-Arch: same Homepage: http://devel.freebsoft.org/speechd Description-md5: 86fcde9fb71606efb4e51038d49469ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libspeex-dbg Priority: extra Section: debug Installed-Size: 706 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: amd64 Source: speex Version: 1.2~rc1.1-1ubuntu1 Depends: libspeex1 (= 1.2~rc1.1-1ubuntu1), libspeexdsp1 (= 1.2~rc1.1-1ubuntu1) Filename: pool/main/s/speex/libspeex-dbg_1.2~rc1.1-1ubuntu1_amd64.deb Size: 167628 MD5sum: 89e6a103a4c820de32448d52fb0f8f6f SHA1: 0861ffa742b7c611ef6e5a5b4457881408a33307 SHA256: 4ad3db6da1a67bf2d5a4f9c131d2348dd0767c9b5e8167277e1fcd82d284c847 Description: debugging symbols for libspeex and libspeexdsp Homepage: http://www.speex.org/ Description-md5: cc4ccd0e1dedf1c24e2ecff117d76238 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspeex-dev Priority: optional Section: libdevel Installed-Size: 275 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: amd64 Source: speex Version: 1.2~rc1.1-1ubuntu1 Depends: libspeex1 (= 1.2~rc1.1-1ubuntu1) Suggests: pkg-config Filename: pool/main/s/speex/libspeex-dev_1.2~rc1.1-1ubuntu1_amd64.deb Size: 62222 MD5sum: 597e6e7d54e214147ffa95cf7aa9206b SHA1: 05a7bd921cf0eef73218d5e87bf1446475aca6a6 SHA256: 9c71b84751c4a5b40472c403fdcae869414439a9d17ac48a58860b212e9d6a98 Description: The Speex codec library development files Multi-Arch: same Homepage: http://www.speex.org/ Description-md5: 062117b1b3154a3cf97900898baf7934 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspeex1 Priority: optional Section: libs Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: amd64 Source: speex Version: 1.2~rc1.1-1ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Suggests: speex Conflicts: asterisk (<= 1:1.4.18.1~dfsg-1), libiaxclient1 (<= 2.0.2-1), libmediastreamer0 (<= 2.1.0-1), libopal-2.2 (<= 2.2.11~dfsg1-3), libopal-2.2-develop (<= 2.2.11~dfsg1-3), libopal-2.2-ptrace (<= 2.2.11~dfsg1-3), libopal-2.2.0 Filename: pool/main/s/speex/libspeex1_1.2~rc1.1-1ubuntu1_amd64.deb Size: 50670 MD5sum: 95b7cbe1534d94456ac35611924313ab SHA1: f1746f28da05a1d3b4447d939fbc6a99926609dc SHA256: 6c359a45c95a7a9cc7c88b4908f54d3689f727a5fa5023663e3f06791a49913a Description: The Speex codec runtime library Multi-Arch: same Homepage: http://www.speex.org/ Description-md5: f9da73880f1174ecd33b8c03b963867b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libspeexdsp-dev Priority: optional Section: libdevel Installed-Size: 197 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: amd64 Source: speex Version: 1.2~rc1.1-1ubuntu1 Depends: libspeexdsp1 (= 1.2~rc1.1-1ubuntu1), libspeex-dev (= 1.2~rc1.1-1ubuntu1) Suggests: pkg-config Filename: pool/main/s/speex/libspeexdsp-dev_1.2~rc1.1-1ubuntu1_amd64.deb Size: 46472 MD5sum: 224379f5313b19c75bdd88f921b93a99 SHA1: 8c000bab55d46947ff6e0b9de72f895dfb9e2dcb SHA256: 5c7a4124e02d6dd64322c05d42e6a63b91026b09d911ba3a417329ea88ef49f2 Description: The Speex extended library development files Multi-Arch: same Homepage: http://www.speex.org/ Description-md5: 2f940d6d7f0aec76a3ea6b9d7f54e7fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspeexdsp1 Priority: optional Section: libs Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: amd64 Source: speex Version: 1.2~rc1.1-1ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/s/speex/libspeexdsp1_1.2~rc1.1-1ubuntu1_amd64.deb Size: 39326 MD5sum: aced2e47f519298f83e45fc6fbad2f77 SHA1: 7801c83d6dd138624887a0d2bcf8b3afa2cdeb99 SHA256: b348c9e3a64033e361d59502d1a23c9c493d42c85a06cb56499bc64db4e6a11e Description: The Speex extended runtime library Multi-Arch: same Homepage: http://www.speex.org/ Description-md5: da1c671ebad8956544b864bd28b091c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsphinxbase-dev Priority: optional Section: libdevel Installed-Size: 877 Maintainer: Ubuntu Developers Original-Maintainer: David Huggins-Daines Architecture: amd64 Source: sphinxbase Version: 0.8-0ubuntu10 Depends: libsphinxbase1 (= 0.8-0ubuntu10), libasound2-dev, libpulse-dev Filename: pool/main/s/sphinxbase/libsphinxbase-dev_0.8-0ubuntu10_amd64.deb Size: 180182 MD5sum: 7570275900368b5ee82fb8ec51e25f9c SHA1: 27a580719de7ad2bffaf2ee4bec54237d70b2279 SHA256: c4a5810d3b63d9b19351bffa158ab21bdad586e9e26bfa33f09902271b7e58b6 Description: Sphinx base libraries - development files Description-md5: 827df4ba157e1e7bafca7f918cbca3bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsphinxbase1 Priority: optional Section: libs Installed-Size: 330 Maintainer: Ubuntu Developers Original-Maintainer: David Huggins-Daines Architecture: amd64 Source: sphinxbase Version: 0.8-0ubuntu10 Depends: libc6 (>= 2.14), libpulse0 (>= 1:0.99.1) Filename: pool/main/s/sphinxbase/libsphinxbase1_0.8-0ubuntu10_amd64.deb Size: 119422 MD5sum: 614cc91533e7665c8c4186c73425a5d3 SHA1: 55850e636930defa0a7796f32dc95d5d4310c660 SHA256: bf3ff4854445309cbfb2a609571072c1ba356589301c8a972f64bf24dc46944a Description: Sphinx base libraries Description-md5: 0e2dc49a1d041cd88019e250ded953aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libspice-protocol-dev Priority: extra Section: libdevel Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: all Source: spice-protocol Version: 0.12.6-1 Filename: pool/main/s/spice-protocol/libspice-protocol-dev_0.12.6-1_all.deb Size: 22440 MD5sum: 8867a195bb30bf5fcbd264fdd2eb002b SHA1: 3fcd24b1b086d64139cdd7b00962e4f7e0b11308 SHA256: bdf031dabdfd215a5cd08843c6099178d8197b53b36274482e6e61ba17bcbcaa Description: SPICE protocol headers Homepage: http://www.spice-space.org/ Description-md5: 59c305c9662f2ba206e5b14277cce622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspice-server-dev Priority: optional Section: libdevel Installed-Size: 2164 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: amd64 Source: spice Version: 0.12.4-0nocelt2 Depends: libspice-server1 (= 0.12.4-0nocelt2), libglib2.0-dev (>= 2.22~), libpixman-1-dev (>= 0.17.7~), libssl-dev, libxinerama-dev, libspice-protocol-dev (>= 0.12.0~) Suggests: pkg-config Filename: pool/main/s/spice/libspice-server-dev_0.12.4-0nocelt2_amd64.deb Size: 503062 MD5sum: 2548febc64ef9d1bfd9979d1ca57e602 SHA1: 8110efc2d44bcde705727702e701f4682abe0dca SHA256: 2693e4aac5ed9b2cf6684ceb94b2bab4d5ef147701ef04e139772f5f7b5fb840 Description: Header files and development documentation for spice-server Homepage: http://spice-space.org/ Description-md5: 5e092f34420da92b68b6d09d2757607f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspice-server1 Priority: optional Section: libs Installed-Size: 1186 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: amd64 Source: spice Version: 0.12.4-0nocelt2 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.22~), libjpeg8 (>= 8c), libpixman-1-0 (>= 0.30.0), libsasl2-2 (>= 2.1.24), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Breaks: libspice-client-glib-2.0-1 (<= 0.12-2), libspice-client-gtk-2.0-1 (<= 0.12-2), libspice-client-gtk-3.0-1 (<= 0.12-2), python-spice-client-gtk (<= 0.12-2), spice-client-gtk (<= 0.12-2) Filename: pool/main/s/spice/libspice-server1_0.12.4-0nocelt2_amd64.deb Size: 414900 MD5sum: c926826585305a9d2fa9defd4cfe5410 SHA1: e17d27b2b671cc507f01ecf77e2d18a126ea9d7f SHA256: e388f7c05655b1d87653fa5d1850241ee7521daec4f882a0ed7ae1317b5f6391 Description: Implements the server side of the SPICE protocol Multi-Arch: same Homepage: http://spice-space.org/ Description-md5: 80c6d1860bed6d617aab193890ec9057 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libspiro-dev Priority: optional Section: libdevel Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: amd64 Source: libspiro Version: 20071029-8ubuntu1 Depends: libspiro0 (= 20071029-8ubuntu1) Filename: pool/main/libs/libspiro/libspiro-dev_20071029-8ubuntu1_amd64.deb Size: 2832 MD5sum: 84f156d1382663cefef902c86e4bdb9d SHA1: 520e21fa0040bf998061226f7b595f3657d3d167 SHA256: 5133beeae9027e27381c3548bf9d5c563b6b481bc442aa72a53174c3b60b7146 Description: library for curve design - development files Homepage: http://sourceforge.net/projects/libspiro/ Description-md5: db8e99c31d35d3fb5c587e2b2bd86550 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspiro0 Priority: optional Section: libs Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: amd64 Source: libspiro Version: 20071029-8ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libs/libspiro/libspiro0_20071029-8ubuntu1_amd64.deb Size: 13118 MD5sum: aae9c00aaec7f9e0f2a816ee1838ff3f SHA1: 277b97c2ab7ee0c426e34198a94dfce6c1d9d654 SHA256: a6b22de8d21ffdfe34bfb5906ae3b2c0a5ec24927b7287734c43fea2aa8105d8 Description: library for curve design Multi-Arch: same Homepage: http://sourceforge.net/projects/libspiro/ Description-md5: a7edff0618138d488d9920a2328b7169 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: libspiro0-dbg Priority: extra Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: amd64 Source: libspiro Version: 20071029-8ubuntu1 Depends: libspiro0 (= 20071029-8ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/libs/libspiro/libspiro0-dbg_20071029-8ubuntu1_amd64.deb Size: 15830 MD5sum: 73d5609c668689ed67d39968200d2f7f SHA1: 44ceb94b6a3919638f6bc75ce0ded1f94b481ec6 SHA256: fab30bd81cc8fcf3f9c8afb38cd8c94aa092ea2934752553c3fa730c38ab9796 Description: library for curve design - debugging symbols Multi-Arch: same Homepage: http://sourceforge.net/projects/libspiro/ Description-md5: 95d96a2c04e7c479ad1143ddb4cb71e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspqr1.3.1 Priority: optional Section: libs Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libblas3 | libblas.so.3, libc6 (>= 2.14), libcholmod2.1.2, liblapack3 | liblapack.so.3 Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libspqr1.3.1_4.2.1-3ubuntu1_amd64.deb Size: 60356 MD5sum: 9ca8d6b7fb6a29faf5a1ded2eda23094 SHA1: 76de1ef92073c33110f4e29412e34bf2b8e1923d SHA256: ce9aeb4171a86e8a4f1cd444c71426cc7ce3ee5fca70e01fdd99048fdfb05766 Description: sparse QR factorization library Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: c5ef39f6884e5bacb6b738f4f122f2d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsqlite3-0 Priority: important Section: libs Installed-Size: 838 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: sqlite3 Version: 3.8.2-1ubuntu2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/s/sqlite3/libsqlite3-0_3.8.2-1ubuntu2_amd64.deb Size: 341822 MD5sum: bea32a06561406a939f10a322c0ed6b8 SHA1: 00c967b0024b6e2b21be53ec5e0c75c445dccb56 SHA256: edd482e586af852b92a1a26c0141fd4dd8959a0e59ce414f8a3ce360d7c4ef36 Description: SQLite 3 shared library Multi-Arch: same Homepage: http://www.sqlite.org/ Description-md5: 701b171ca60f3c96227ee4783a35419c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libsqlite3-0-dbg Priority: extra Section: libdevel Installed-Size: 1225 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: sqlite3 Version: 3.8.2-1ubuntu2 Depends: libsqlite3-0 (= 3.8.2-1ubuntu2) Filename: pool/main/s/sqlite3/libsqlite3-0-dbg_3.8.2-1ubuntu2_amd64.deb Size: 1061376 MD5sum: a88de63534320ee4cecfa8ddec7b8b45 SHA1: 934aee9cdcdf50b19577a75eb5d80623b3e040c8 SHA256: 41ea6def4d735618e642b252da26d1ac7c88a24b04aabaeadc42b7c0b680bb59 Description: SQLite 3 debugging symbols Multi-Arch: foreign Homepage: http://www.sqlite.org/ Description-md5: 3e3950e32a67b67d9003158e5172bc1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsqlite3-dev Priority: optional Section: libdevel Installed-Size: 1456 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: sqlite3 Version: 3.8.2-1ubuntu2 Depends: libsqlite3-0 (= 3.8.2-1ubuntu2), libc6-dev Suggests: sqlite3-doc Filename: pool/main/s/sqlite3/libsqlite3-dev_3.8.2-1ubuntu2_amd64.deb Size: 438550 MD5sum: 51065f73a46d43b68e9ee87fac25f60b SHA1: c01b329aa312b7dd2c37de4870d19cca24fdda85 SHA256: 92a398595f021c7eef7baac37eaf7b1de579cd88a3890b82194f1e3ebfcb4799 Description: SQLite 3 development files Multi-Arch: same Homepage: http://www.sqlite.org/ Description-md5: 6387c6fc4f6fed646a1e0a793253786e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libss2 Priority: required Section: libs Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Replaces: e2fsprogs (<< 1.34-1) Depends: libcomerr2, libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/e/e2fsprogs/libss2_1.42.9-3ubuntu1_amd64.deb Size: 66880 MD5sum: ecb09ccd06cd8c7646a1fa6e1adf0569 SHA1: 190033c6b0ce4ecf828a3455763fb026a9d31319 SHA256: d16fb7a71f3fc3f5c422e36251f113fc6d8e546f02366e6d9a2dc15a5a9be66a Description: command-line interface parsing library Multi-Arch: same Homepage: http://e2fsprogs.sourceforge.net Description-md5: d3d9f89af5755a413e24d2dc0cb7df81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libss2-dbg Priority: extra Section: libdevel Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Depends: libss2 (= 1.42.9-3ubuntu1) Filename: pool/main/e/e2fsprogs/libss2-dbg_1.42.9-3ubuntu1_amd64.deb Size: 77408 MD5sum: b87522ec439b1ca22f66382ea29780de SHA1: b3166a7b63831622ef568179f76b7c6eb00ba05d SHA256: 6fe609880c9f006f4c7d08f5f136487c85d634a06028b14b15f9c2a3bd17e6d1 Description: debugging information for libss2 Homepage: http://e2fsprogs.sourceforge.net Description-md5: e22979de62189e1a28b592416655760a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssh-4 Priority: optional Section: libs Installed-Size: 356 Maintainer: Kubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: amd64 Source: libssh Version: 0.6.1-0ubuntu3 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/libs/libssh/libssh-4_0.6.1-0ubuntu3_amd64.deb Size: 113570 MD5sum: aa11c1456ca8cc754de6bd6cdcea839c SHA1: d4605f8b63ac36ab30eaf1a72b7b47b690d550c6 SHA256: bd589e579e1a1bf1d3673750839469d19c8b82e502f60acd88299267b99856ca Description: tiny C SSH library Multi-Arch: same Homepage: http://www.libssh.org/ Description-md5: e75c6010850438f6a7ee5716913b7f6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: libssh-dbg Priority: extra Section: debug Installed-Size: 1140 Maintainer: Kubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: amd64 Source: libssh Version: 0.6.1-0ubuntu3 Depends: libssh-4 (= 0.6.1-0ubuntu3) Filename: pool/main/libs/libssh/libssh-dbg_0.6.1-0ubuntu3_amd64.deb Size: 286414 MD5sum: 5fe825406f4b321b540a906a0ed596b5 SHA1: 8135218d90b043cedbbffc4905c230be9a8df584 SHA256: eb80bf948a9999cb3c22d6384e913d95bca5cb9555332bb442fd4afc141a51fe Description: tiny C SSH library. Debug symbols Multi-Arch: same Homepage: http://www.libssh.org/ Description-md5: 38dd1a1e23b0ea53ef008402fb1f5495 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssh-dev Priority: optional Section: libdevel Installed-Size: 782 Maintainer: Kubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: amd64 Source: libssh Version: 0.6.1-0ubuntu3 Replaces: libssh-2-dev Depends: libssh-4 (= 0.6.1-0ubuntu3), libssl-dev, zlib1g-dev Suggests: libssh-doc Conflicts: libssh-2-dev Filename: pool/main/libs/libssh/libssh-dev_0.6.1-0ubuntu3_amd64.deb Size: 143464 MD5sum: 99823b52e3a294961bbd0091ba98b124 SHA1: beee39aca5e872f1b0de65a60ffd399467510266 SHA256: 63947f73eee557175a5581f03ee48c69223a8f8e0a3fb219b721d00d3222906d Description: tiny C SSH library. Development files Homepage: http://www.libssh.org/ Description-md5: 07a1d6731cb7c1af3313a9c8a8c5fdca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssh-doc Priority: optional Section: doc Installed-Size: 2285 Maintainer: Kubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: all Source: libssh Version: 0.6.1-0ubuntu3 Replaces: libssh-2-doc Suggests: doc-base Conflicts: libssh-2-doc Filename: pool/main/libs/libssh/libssh-doc_0.6.1-0ubuntu3_all.deb Size: 194452 MD5sum: 8ed79cdf98400c5d0f8d0e02c368e7c6 SHA1: 3cdbc8b785f9b4fe5f58cfdc62860d17724e7abe SHA256: 2c0ed097ba0ee250c986c612ee9890fcf65f7171b6275e5baaaa43202dc5804d Description: tiny C SSH library. Documentation files Homepage: http://www.libssh.org/ Description-md5: b3627dc92997800f5a0d9a1f4141b79a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssl-dev Priority: optional Section: libdevel Installed-Size: 6162 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSL Team Architecture: amd64 Source: openssl Version: 1.0.1f-1ubuntu2 Depends: libssl1.0.0 (= 1.0.1f-1ubuntu2), zlib1g-dev Recommends: libssl-doc Filename: pool/main/o/openssl/libssl-dev_1.0.1f-1ubuntu2_amd64.deb Size: 1066212 MD5sum: 321724885048f9a78d0e93887a7eb296 SHA1: e337538bed6e5765a0a85c4ca2af1d0deefd6ce0 SHA256: ed199dc9131923fa3c911202f165402b1310f50dcdfab987f6f5c2669fc698cc Description: Secure Sockets Layer toolkit - development files Multi-Arch: same Description-md5: 27044468897c45b271f879c7c6e135fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssl-doc Priority: optional Section: doc Installed-Size: 1456 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSL Team Architecture: all Source: openssl Version: 1.0.1f-1ubuntu2 Replaces: libssl-dev (<< 1.0.0) Breaks: libssl-dev (<< 1.0.0) Filename: pool/main/o/openssl/libssl-doc_1.0.1f-1ubuntu2_all.deb Size: 964874 MD5sum: 1d9007496cedf8f597176779cede4ca8 SHA1: f8d666394ee1d042121127c23475667f8ff812cf SHA256: b70b3da96d92b7891c74dc02f4b2c681d7f87f9617c2dae4b88e11140b59b865 Description: Secure Sockets Layer toolkit - development documentation Description-md5: 863c8f0d45ab34415ebc295c04753c98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssl1.0.0 Priority: important Section: libs Installed-Size: 2928 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSL Team Architecture: amd64 Source: openssl Version: 1.0.1f-1ubuntu2 Depends: libc6 (>= 2.14), debconf (>= 0.5) | debconf-2.0 Pre-Depends: multiarch-support Filename: pool/main/o/openssl/libssl1.0.0_1.0.1f-1ubuntu2_amd64.deb Size: 825446 MD5sum: 6ebb5e5836f652cf200544e492e49d1e SHA1: a563c62657fa3ba4d7466fef8c872a3d2f919aec SHA256: 000043f7e6da7992c5a78160e3c49bf6a811774086dbe2f5a6063ef5a093ff0d Description: Secure Sockets Layer toolkit - shared libraries Multi-Arch: same Description-md5: 88547c6206c7fbc4fcc7d09ce100d210 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libssl1.0.0-dbg Priority: extra Section: debug Installed-Size: 3274 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSL Team Architecture: amd64 Source: openssl Version: 1.0.1f-1ubuntu2 Depends: libssl1.0.0 (= 1.0.1f-1ubuntu2) Filename: pool/main/o/openssl/libssl1.0.0-dbg_1.0.1f-1ubuntu2_amd64.deb Size: 2653822 MD5sum: b30dfbe2ac2a3f626e4c359d05f5b30c SHA1: 679070563d0e5e0bb256fe4825ce191642f0fcc1 SHA256: e44e168a5f4af508f8bbae7bc697449ed1a003fae7706dba6198dc662b55f3a7 Description: Secure Sockets Layer toolkit - debug information Multi-Arch: same Description-md5: b44e703aa71494076bf676aad96d1f64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsss-idmap-dev Priority: extra Section: libdevel Installed-Size: 93 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libsss-idmap0 (= 1.11.5-1ubuntu3) Filename: pool/main/s/sssd/libsss-idmap-dev_1.11.5-1ubuntu3_amd64.deb Size: 8064 MD5sum: 22ca6963ce578b05f3702312707778f9 SHA1: e5c43bf596ce8c5f8ed6860c2570c99790236b5d SHA256: 2574e796a68d2a12a302001bb2c829f3f3f61a28e5e135150fa2b96fbab91c07 Description: ID mapping library for SSSD -- development files Homepage: https://fedorahosted.org/sssd/ Description-md5: 380345e6a57d9c89908944a161167eb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsss-idmap0 Priority: extra Section: libs Installed-Size: 73 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.14) Filename: pool/main/s/sssd/libsss-idmap0_1.11.5-1ubuntu3_amd64.deb Size: 13198 MD5sum: c07712d1fe36c058385ae95b6126973b SHA1: 4d3c9234e2b17cb827519c1f02b25a087828397a SHA256: c27ace130f7723f3fba127018e4bcaa55efc8a0629cf2d9595363b7c6d347a19 Description: ID mapping library for SSSD Homepage: https://fedorahosted.org/sssd/ Description-md5: a1574397ba6fa04c415566b95932ee13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsss-nss-idmap-dev Priority: extra Section: libdevel Installed-Size: 62 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libsss-nss-idmap0 (= 1.11.5-1ubuntu3) Filename: pool/main/s/sssd/libsss-nss-idmap-dev_1.11.5-1ubuntu3_amd64.deb Size: 5052 MD5sum: 86d7ea2482449e33d4ffb65c0fd74ee2 SHA1: 17c4b5938420a4fefd2df0b958d483db63482d29 SHA256: 7e8c70e4c3655d1b81f05d0c76534c2f2e8e90fc225d488afa8fbe61edd8fe6e Description: SID based lookups library for SSSD -- development files Homepage: https://fedorahosted.org/sssd/ Description-md5: ad1d64a48dd2cfb3d4bea2944dc871e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsss-nss-idmap0 Priority: extra Section: libs Installed-Size: 70 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.12) Filename: pool/main/s/sssd/libsss-nss-idmap0_1.11.5-1ubuntu3_amd64.deb Size: 11856 MD5sum: 3719ca3a57701ad6d6a38946622ac657 SHA1: 792660dfc3beb13f1405b85ccceff65552fc90bb SHA256: 20f64daa4acdc75d8b6a1152d150c50003da8e9dd550b7b6bade79b9aa80cb88 Description: SID based lookups library for SSSD Homepage: https://fedorahosted.org/sssd/ Description-md5: 0287e1121017ca777e10c336257c487a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsss-sudo Priority: extra Section: libs Installed-Size: 80 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: libsss-sudo-dev (<= 1.9.3) Depends: libc6 (>= 2.14) Filename: pool/main/s/sssd/libsss-sudo_1.11.5-1ubuntu3_amd64.deb Size: 12938 MD5sum: 6e44ccd85ba2966041e0453454744362 SHA1: 05be9e2db29136fdab9fd05be2ff2937d4c8c31e SHA256: 7bb0d547cda3749466d874dd3c4835d237c2bd15fdd4670c444f11d7e76c6224 Description: Communicator library for sudo Homepage: https://fedorahosted.org/sssd/ Description-md5: 43cb83a7573af74214858e973f744090 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstartup-notification0 Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: startup-notification Version: 0.12-3ubuntu1 Depends: libc6 (>= 2.4), libx11-xcb1, libxcb-util0 (>= 0.3.8), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/s/startup-notification/libstartup-notification0_0.12-3ubuntu1_amd64.deb Size: 18750 MD5sum: 5e60479c8a854fb953a54544962d6cbb SHA1: ce8c58495460cc9eca7bcce172899cd655504ab1 SHA256: 8df6d9cfd81f68569b24364b689c2d99caca927187f08dda01b6833068f897cc Description: library for program launch feedback (shared library) Multi-Arch: same Description-md5: 1b656853c1ea1a80bff6a2dbc9507928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libstartup-notification0-dev Priority: optional Section: libdevel Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: startup-notification Version: 0.12-3ubuntu1 Depends: libstartup-notification0 (= 0.12-3ubuntu1), libx11-dev, pkg-config Filename: pool/main/s/startup-notification/libstartup-notification0-dev_0.12-3ubuntu1_amd64.deb Size: 17666 MD5sum: 56cb286a4c636a81bc469e45da3ea99c SHA1: b37e30c0b8d48e636d5ac565e73d1ad6c6ee6101 SHA256: c9e09d200f5b209e03e4e3cef83c56157fd6563a2ec64123addb36e07d9bf763 Description: library for program launch feedback (development headers) Multi-Arch: same Description-md5: e74dde96ef3038679bea5ec038312e1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstatgrab-dev Priority: optional Section: libdevel Installed-Size: 450 Maintainer: Ubuntu Developers Original-Maintainer: Bartosz Fenski Architecture: amd64 Source: libstatgrab Version: 0.90-1.1ubuntu1 Depends: libstatgrab9 (= 0.90-1.1ubuntu1) Conflicts: libstatgrab-dev (<< 0.12-1) Filename: pool/main/libs/libstatgrab/libstatgrab-dev_0.90-1.1ubuntu1_amd64.deb Size: 85026 MD5sum: 7b57ab1ec0c783831662516574c1d5e3 SHA1: aabdaee838fe126a701908f37ec7507fd9c784f2 SHA256: a534a69799ff19907ceaa00f6cd6458d6f63dd08fd5641f70cddcf93b8e923a3 Description: development files of library for system statistics Homepage: http://www.i-scream.org/libstatgrab/ Description-md5: dc536af0fcf406efe11b76a7c18a6312 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstatgrab9 Priority: optional Section: libs Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Bartosz Fenski Architecture: amd64 Source: libstatgrab Version: 0.90-1.1ubuntu1 Depends: libc6 (>= 2.14) Filename: pool/main/libs/libstatgrab/libstatgrab9_0.90-1.1ubuntu1_amd64.deb Size: 33020 MD5sum: 8e454f74f079de5c1369d0da215f15c6 SHA1: d3cd1ef4cc83cb604594d5acd808f16113cff7a9 SHA256: 4412d9c1a801d8e144c702da0b31709de654c538751aa9356c3e82d4f3c4f042 Description: library being useful interface to system statistics Homepage: http://www.i-scream.org/libstatgrab/ Description-md5: b46351fc11cf534ea0393ae01e6f4dba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstax-java Priority: optional Section: java Installed-Size: 270 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.2.0-3build1 Depends: libjaxp1.3-java Suggests: libstax-java-doc Filename: pool/main/libs/libstax-java/libstax-java_1.2.0-3build1_all.deb Size: 193344 MD5sum: f2be70178bea48ffea33632f4569c90e SHA1: c7082625d190a7d38bab9208de5d89127e9ca74c SHA256: b8ec2b7563331c032daf0f99b8328f8e6dd3df3e2ab2af09196497c206c0a4e9 Description: StAX Reference Implementation (RI) Homepage: http://stax.codehaus.org/ Description-md5: b5d713edc04b0457f337dcf9252d0927 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstax-java-doc Priority: optional Section: doc Installed-Size: 1880 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libstax-java Version: 1.2.0-3build1 Suggests: libstax-java Filename: pool/main/libs/libstax-java/libstax-java-doc_1.2.0-3build1_all.deb Size: 164554 MD5sum: 280a4c05c369acab91d328278f9e4c9b SHA1: 14a7c4d7ba0b816af68b43788a7c90ba7bb25912 SHA256: 331ca81c9192b465c306bf197c7774ba8f134da9fbe4e66fbfde6e34ac178a52 Description: Javadoc API for libstax-java Homepage: http://stax.codehaus.org/ Description-md5: 64b9f537cecefed241b1c6273f727a1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-dev Priority: optional Section: libdevel Installed-Size: 11150 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Provides: libstdc++-dev Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcc-4.8-dev (= 4.8.2-19ubuntu1), libstdc++6 (>= 4.8.2-19ubuntu1), libc6-dev (>= 2.13-0ubuntu6) Suggests: libstdc++-4.8-doc Conflicts: libg++2.8-dev, libg++27-dev, libg++272-dev (<< 2.7.2.8-1), libstdc++2.10-dev (<< 1:2.95.3-2), libstdc++2.8-dev, libstdc++2.9-dev, libstdc++2.9-glibc2.1-dev, libstdc++3.0-dev Filename: pool/main/g/gcc-4.8/libstdc++-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 1050202 MD5sum: 2b9728ea063a1720a55393881aaa4a4b SHA1: b29a44376a8079e67cd847ceea2658d57aee8364 SHA256: 5e3cd1641bee44fe7f6e0b3a7104e15edfd65e350bb9e6e46480e4e29eb80f18 Description: GNU Standard C++ Library v3 (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Package: libstdc++-4.8-dev-arm64-cross Priority: extra Section: devel Installed-Size: 10999 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Provides: libstdc++-dev-arm64-cross, libstdc++-dev-arm64-dcv1 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libgcc-4.8-dev-arm64-cross (= 4.8.2-13ubuntu1cross0.11), libstdc++6-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libc6-dev-arm64-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-arm64-cross/libstdc++-4.8-dev-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 1044040 MD5sum: 02e129b609a2f3a6ac97f268d1859077 SHA1: 970676358ddada623f1db3ede64f8dd9699f76c6 SHA256: 76e415f6bae64ced3abc03889d25baa8856488c66f75f02ebdefc26772f57590 Description: GNU Standard C++ Library v3 (development files) Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 2c7e3503793ee58c31e3f3fdda6ca624 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-dev-armhf-cross Priority: extra Section: devel Installed-Size: 10801 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Provides: libstdc++-dev-armhf-cross, libstdc++-dev-armhf-dcv1 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libgcc-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11), libstdc++6-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libc6-dev-armhf-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-armhf-cross/libstdc++-4.8-dev-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 1092868 MD5sum: 793b1eb0c087ec67c26055159f614abd SHA1: 77c2f7d3c64dda238e1ceb631fe667aa4e28ad02 SHA256: 4f5cd3b85fc0d0055f98b2e162bf76d5972434dd0d3ad6945fbd63cc07ca2bfc Description: GNU Standard C++ Library v3 (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 918ad95d39a63b9b7c5e2d45f913e11c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-dev-powerpc-cross Priority: extra Section: devel Installed-Size: 10850 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Provides: libstdc++-dev-powerpc-cross, libstdc++-dev-powerpc-dcv1 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libgcc-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11), libstdc++6-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libc6-dev-powerpc-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-powerpc-cross/libstdc++-4.8-dev-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 1065990 MD5sum: fcacea1a7de7341a5d9d5296e469a180 SHA1: 7453c659ecc53e6bee41926fa6c3d3b8146f6105 SHA256: 97a5a5a0c47d1c88fb809bdad9ed137a2e4c1a07f8d7c9c1ff872677042085a3 Description: GNU Standard C++ Library v3 (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 2a2aa127ed9c499d57417a7065fccc24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-dev-ppc64el-cross Priority: extra Section: devel Installed-Size: 11677 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Provides: libstdc++-dev-ppc64el-cross, libstdc++-dev-ppc64el-dcv1 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libgcc-4.8-dev-ppc64el-cross (= 4.8.2-16ubuntu4cross0.4), libstdc++6-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libc6-dev-ppc64el-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libstdc++-4.8-dev-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 1086796 MD5sum: 05cc3d09e0d0d7ac0ace252e9287f270 SHA1: fc0ace131afd0d9c55d2ca652c2c5b6d8d6ee1ea SHA256: 5cb01ad14e27ba03568672e29cc30c70e444e9449d5f972cccb356f294aa1231 Description: GNU Standard C++ Library v3 (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 4169349002915f58859aff33a61f1cdb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-doc Priority: optional Section: doc Installed-Size: 98628 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), libjs-jquery Conflicts: libstdc++5-3.3-doc, libstdc++5-doc, libstdc++6-4.0-doc, libstdc++6-4.1-doc, libstdc++6-4.2-doc, libstdc++6-4.3-doc, libstdc++6-4.4-doc, libstdc++6-4.5-doc, libstdc++6-4.6-doc, libstdc++6-4.7-doc, libstdc++6-doc Filename: pool/main/g/gcc-4.8/libstdc++-4.8-doc_4.8.2-19ubuntu1_all.deb Size: 9891184 MD5sum: 67616bb241151bf04cb42ab90bcbbb53 SHA1: 127657fb992604d375437fb6763d8d0d931bc1cb SHA256: fb02fc42323ef13cec8288476dfb125c3857d5be347512e5a166bb7c924af067 Description: GNU Standard C++ Library v3 (documentation files) Homepage: http://gcc.gnu.org/ Description-md5: 1a4b88b8d9f96dfb2ac2be1049b4db01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-pic Priority: extra Section: libdevel Installed-Size: 2899 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libstdc++6 (>= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libstdc++-4.8-pic_4.8.2-19ubuntu1_amd64.deb Size: 293084 MD5sum: 193e14f9ea8bf4e45f47bdf9477e82c7 SHA1: b61ab7f3c9e8330bf413ed58e3da8c30a4fdeea3 SHA256: be04511567453eea347361e4b5cdce32516bd65df47942c507579062d24bb0e5 Description: GNU Standard C++ Library v3 (shared library subset kit) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 1b398e74a3b20401a8669d8c6472c7cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libstdc++6 Priority: important Section: libs Installed-Size: 1211 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.17), libgcc1 (>= 1:4.1.1) Pre-Depends: multiarch-support Conflicts: scim (<< 1.4.2-1) Breaks: gcc-4.1, gcc-4.3 (<< 4.3.6-1), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2) Filename: pool/main/g/gcc-4.8/libstdc++6_4.8.2-19ubuntu1_amd64.deb Size: 250548 MD5sum: b2f28be39b36ec4f5e5bf6c7da12de2e SHA1: 28ed9fb1998c705c0bf0e169683fa804c52d91b8 SHA256: 6611761c6ecd075120903b343420458ffc6d80a8cbcb8ce3cf11183c45b960ee Description: GNU Standard C++ Library v3 Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 724ab84919e0e220afb960e36463914d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: libstdc++6-4.7-dbg Priority: extra Section: debug Installed-Size: 22696 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libstdc++6 (>= 4.7.3-12ubuntu1), libgcc1-dbg (>= 1:4.7.3-12ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1) Recommends: libstdc++6-4.7-dev (= 4.7.3-12ubuntu1) Conflicts: libstdc++5-3.3-dbg, libstdc++5-dbg, libstdc++6-4.0-dbg, libstdc++6-4.1-dbg, libstdc++6-4.2-dbg, libstdc++6-4.3-dbg, libstdc++6-4.4-dbg, libstdc++6-4.5-dbg, libstdc++6-4.6-dbg, libstdc++6-dbg Filename: pool/main/g/gcc-4.7/libstdc++6-4.7-dbg_4.7.3-12ubuntu1_amd64.deb Size: 2745816 MD5sum: c85cde75a332d25a9d2b533d0840b1a8 SHA1: 7cbd9e32f477a3dbd528e0ec55a045f80bc1fb3a SHA256: fac1fe1da18f19374f2576320b539d0f91f8b533910cf39003617cd436653153 Description: GNU Standard C++ Library v3 (debugging files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-4.7-dev Priority: optional Section: libdevel Installed-Size: 10519 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: g++-4.7 (<< 4.7.2-10) Provides: libstdc++-dev Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libgcc-4.7-dev (= 4.7.3-12ubuntu1), libstdc++6 (>= 4.7.3-12ubuntu1), libc6-dev (>= 2.13-0ubuntu6) Suggests: libstdc++6-4.7-doc Conflicts: libg++2.8-dev, libg++27-dev, libg++272-dev (<< 2.7.2.8-1), libstdc++2.10-dev (<< 1:2.95.3-2), libstdc++2.8-dev, libstdc++2.9-dev, libstdc++2.9-glibc2.1-dev, libstdc++3.0-dev Filename: pool/main/g/gcc-4.7/libstdc++6-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 1006704 MD5sum: 996dee1e553b534c33092748786d83de SHA1: 9aaeae117216f3f32f96b603a352783bf901f43e SHA256: d7ace6cbc6390f7d720e5b1f2b75573c1dddae7be47a29f6c854ccd3f8576da1 Description: GNU Standard C++ Library v3 (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-4.7-doc Priority: optional Section: doc Installed-Size: 105622 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (>= 4.7.2-16) Conflicts: libstdc++5-3.3-doc, libstdc++5-doc, libstdc++6-4.0-doc, libstdc++6-4.1-doc, libstdc++6-4.2-doc, libstdc++6-4.3-doc, libstdc++6-4.4-doc, libstdc++6-4.5-doc, libstdc++6-4.6-doc, libstdc++6-doc Filename: pool/main/g/gcc-4.7/libstdc++6-4.7-doc_4.7.3-12ubuntu1_all.deb Size: 20530576 MD5sum: 9e7370691b3ace7be49bfa84f788fe10 SHA1: 7628352e969e232ee7752e365936128ffd9f4aef SHA256: d54b0fe509fbf867203bc4382d22693c605d4c2b95ea2141c3d80a03ebba56fb Description: GNU Standard C++ Library v3 (documentation files) Homepage: http://gcc.gnu.org/ Description-md5: 1a4b88b8d9f96dfb2ac2be1049b4db01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-4.8-dbg Priority: extra Section: debug Installed-Size: 13546 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libstdc++6 (>= 4.8.2-19ubuntu1), libgcc1-dbg (>= 1:4.8.2-19ubuntu1), libc6 (>= 2.17), libgcc1 (>= 1:4.1.1) Recommends: libstdc++-4.8-dev (= 4.8.2-19ubuntu1) Conflicts: libstdc++5-3.3-dbg, libstdc++5-dbg, libstdc++6-4.0-dbg, libstdc++6-4.1-dbg, libstdc++6-4.2-dbg, libstdc++6-4.3-dbg, libstdc++6-4.4-dbg, libstdc++6-4.5-dbg, libstdc++6-4.6-dbg, libstdc++6-4.7-dbg, libstdc++6-dbg Filename: pool/main/g/gcc-4.8/libstdc++6-4.8-dbg_4.8.2-19ubuntu1_amd64.deb Size: 2250410 MD5sum: 6dfb75a92dc8f4afe0dbe2b58307cc42 SHA1: ae196865e71a8bb0b39cda65e3fa454536c8d231 SHA256: eea94721b2ca3f601d919157ebea4fb362dfe3b5173e8fc10452ffd7b66fd428 Description: GNU Standard C++ Library v3 (debugging files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-arm64-cross Priority: extra Section: devel Installed-Size: 985 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Provides: libstdc++6-arm64-dcv1 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libc6 (>= 2.11), libc6-arm64-cross (>= 2.18), libgcc1-arm64-cross Conflicts: scim (<< 1.4.2-1) Filename: pool/main/g/gcc-4.8-arm64-cross/libstdc++6-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 209044 MD5sum: 3f329df7cc92b32db38f001e9d73f43a SHA1: d6ec10f947ace963a6a8aac6473b85884786cc93 SHA256: fdd123a7e9d6a6feaf028313196fc4516f3649565f06bae9ccafb8de10bb4513 Description: GNU Standard C++ Library v3 Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 0c25a015211275a093e04233455e1035 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-armhf-cross Priority: extra Section: devel Installed-Size: 655 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Provides: libstdc++6-armhf-dcv1 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6 (>= 2.11), libc6-armhf-cross (>= 2.19), libgcc1-armhf-cross Conflicts: scim (<< 1.4.2-1) Filename: pool/main/g/gcc-4.8-armhf-cross/libstdc++6-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 202056 MD5sum: 152d3e8b858b5e0b5290fcdc3303156a SHA1: a4711c7440f0b17fad0b27cfbfd17fe823903a46 SHA256: 3e8307f783eff176c483a3a3850b6957776c81dcfcb9ac5b55a9455553eb9b09 Description: GNU Standard C++ Library v3 Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: a6076004a43826befbd21b6d04f91793 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-powerpc-cross Priority: extra Section: devel Installed-Size: 1224 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Provides: libstdc++6-powerpc-dcv1 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6 (>= 2.11), libc6-powerpc-cross (>= 2.18), libgcc1-powerpc-cross Conflicts: scim (<< 1.4.2-1) Filename: pool/main/g/gcc-4.8-powerpc-cross/libstdc++6-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 243240 MD5sum: c80fb893554461e7cc7eada5ccea9175 SHA1: 98a2cd2f87605394c4edddafe5949c5eeac3a48f SHA256: aeb03a13f82529d104c3dc3898dfde864c8fcdd1ebfac2e77b9c720413b2ff16 Description: GNU Standard C++ Library v3 Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 5b6cb0c64b5367524b4de00d0620ac84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-ppc64el-cross Priority: extra Section: devel Installed-Size: 1337 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Provides: libstdc++6-ppc64el-dcv1 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6 (>= 2.11), libc6-ppc64el-cross (>= 2.19), libgcc1-ppc64el-cross Conflicts: scim (<< 1.4.2-1) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libstdc++6-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 248662 MD5sum: 9d9b2e407d9d2423dda0a57745c99228 SHA1: 76f0ef9a03d98b59d98a47fe60dd84471483a71f SHA256: 4763006426681a676c817141e5456366718707391f050cdc868959bbaf2bd3bc Description: GNU Standard C++ Library v3 Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: ecc844af6f1539e4f72e5ee8a11fce91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstonith1 Priority: optional Section: libs Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue (<= 1.0.6-1), libstonith0 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.12.0), libpils2 (>= 1.0.11+hg2754) Conflicts: libcluster-glue (<= 1.0.6-1), libstonith0 Filename: pool/main/c/cluster-glue/libstonith1_1.0.11+hg2754-1.1build1_amd64.deb Size: 11974 MD5sum: 89bfbe89652d235986a4a19efb2be2e2 SHA1: bbe52fbe938fce7ded90a9cda3cd8b6d954d72c2 SHA256: d0227b2c8b84fb54b0510fd0df9f2797ca16fec322841083125ae52d6f9172a5 Description: Reusable cluster libraries -- libstonith1 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 1532ce4f90f77e4dd7c13b915c5fe298 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libstonith1-dev Priority: optional Section: libdevel Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1), libstonith0-dev Depends: libstonith1 (= 1.0.11+hg2754-1.1build1) Conflicts: libcluster-glue-dev (<= 1.0.6-1), libstonith0-dev Filename: pool/main/c/cluster-glue/libstonith1-dev_1.0.11+hg2754-1.1build1_amd64.deb Size: 18412 MD5sum: c353be0d8c3f18b8270042a6178e6b4a SHA1: 518de069bc2e070f2ec39ca51b01170848f36898 SHA256: 75a388cd87794e158a461b19fcc7f9094ec0ec943e84b9e8b355aac769cba86e Description: Reusable cluster development files -- libstonith1 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 927336436b47fff1f7672a1b9994c7be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstonithd2 Priority: optional Section: libs Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libstonithd0, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libc6 (>= 2.14), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libpils2 (>= 1.0.11+hg2754), libqb0, libxml2 (>= 2.7.4) Conflicts: libstonithd0, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libstonithd2_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 24116 MD5sum: 9d116570c79dc68e64cee328efed100c SHA1: b555eaef0da60971b32a9b07a51f1b7d4e39fbb9 SHA256: d5a5e7ecd4c41a62214a9a4b57641fe485d0f91434427153a4a43650dbda35d0 Description: Pacemaker libraries - stonith Homepage: http://clusterlabs.org/ Description-md5: 67bb1316543aa3beed4e79f9d581cd18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libstonithd2-dev Priority: optional Section: libdevel Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libstonithd0-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libstonithd2 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libstonithd0-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libstonithd2-dev_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 25802 MD5sum: aad3fe884dbb23748721df41341c70cd SHA1: 17391fa1b3e8573e5185ad33edd8c8ac9abc4923 SHA256: 059eeb37e7f2f7e534d7ee9875c0432b2e1927f5640a06e3a3831adb1d57abc6 Description: Development file for pacemaker's stonith library Homepage: http://clusterlabs.org/ Description-md5: 866bcacda5049a039e49a6b60e6e38f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstreamanalyzer-dev Priority: optional Section: libdevel Installed-Size: 162 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: strigi Version: 0.7.8-1ubuntu2 Replaces: libcluceneindex-dev (<< 0.5.6-1), libstreamindexer-dev (<< 0.5.1-1) Depends: libstreamanalyzer0 (= 0.7.8-1ubuntu2), libstreams-dev (= 0.7.8-1ubuntu2) Breaks: libcluceneindex-dev (<< 0.5.6-1), libstreamindexer-dev (<< 0.5.1-1) Filename: pool/main/s/strigi/libstreamanalyzer-dev_0.7.8-1ubuntu2_amd64.deb Size: 20964 MD5sum: a297b1306914f568c1904ef32e46ddc4 SHA1: 6737bbb7431453f88cec0ee998ed734992191912 SHA256: bb5d4807b032adf6759f59f619ac8cfdb3e04966169d2c8c90efec2f77c9aab7 Description: development files for libstreamanalyzer Homepage: http://strigi.sourceforge.net Description-md5: ae2b314826856bd46062ce85a299bbdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstreamanalyzer0 Priority: optional Section: libs Installed-Size: 1394 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: strigi Version: 0.7.8-1ubuntu2 Replaces: kdegraphics-strigi-plugins (<< 4:4.0.0-2), libcluceneindex0 (<< 0.5.6-1), libstreamindexer0 (<< 0.5.1-1), strigi-daemon (<< 0.3.11-1) Depends: libc6 (>= 2.14), libclucene-core1 (>= 2.3.3.4), libexiv2-12, libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libstreams0 (= 0.7.8-1ubuntu2), libxml2 (>= 2.7.4) Breaks: libcluceneindex0 (<< 0.5.6-1), libstreamindexer0 (<< 0.5.1-1) Filename: pool/main/s/strigi/libstreamanalyzer0_0.7.8-1ubuntu2_amd64.deb Size: 278214 MD5sum: 598edcdda1af013e14db4babe4790d48 SHA1: a9051b01b4cd337bcd860758ef81248c9d2f56f6 SHA256: 368a38affb0d69324f6c442c3528b9d690310fc8b34068b0b29351a11cf3e8be Description: streamanalyzer library for Strigi Desktop Search Homepage: http://strigi.sourceforge.net Description-md5: 15968183a68ec6cdc932daffbc5d3b11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libstreams-dev Priority: optional Section: libdevel Installed-Size: 166 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libstreams0 (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/libstreams-dev_0.7.8-1ubuntu2_amd64.deb Size: 21570 MD5sum: 3bc677ee1e745f74afb94bc78c5df5f9 SHA1: 15ae6a4a0a9cbf271a2d71eaec76b39ff52e342f SHA256: 4d3f87e412aee2980d86fa1b09543f02e0c38dd688c77c5c92a611e1230129ff Description: development files for libstreams Homepage: http://strigi.sourceforge.net Description-md5: 0a04a72faf4b8e6df75fa1f9f6794137 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstreams0 Priority: optional Section: libs Installed-Size: 257 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: strigi Version: 0.7.8-1ubuntu2 Replaces: strigi-daemon (<< 0.3.11-1) Depends: libbz2-1.0, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Filename: pool/main/s/strigi/libstreams0_0.7.8-1ubuntu2_amd64.deb Size: 79456 MD5sum: e4cb2b1141967b0e5c5d3a8837f0e249 SHA1: 361504850d3089ebdc9b994e0b644db2b90f08f1 SHA256: d1139c0ca9feb6860ca1daa946c3fa64e2fd174b649e9ad28d6b8f21eddb687e Description: streams library for Strigi Desktop Search Homepage: http://strigi.sourceforge.net Description-md5: 7a071e763d952398ed9633caa3e98eb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libstrictures-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.005002-1 Depends: perl Recommends: libbareword-filehandles-perl, libindirect-perl, libmultidimensional-perl Filename: pool/main/libs/libstrictures-perl/libstrictures-perl_1.005002-1_all.deb Size: 12326 MD5sum: 008ced8525e342992b68042ed67299ae SHA1: 9faec39b99b1cc388ff68dad9b29cc556d47ae24 SHA256: 5aae4c7ba69e5b78a32fbaa0b4d4b97878c32ec98dc0b3f3a032adfc7fdd8e84 Description: Perl module to turn on strict and make all warnings fatal Homepage: https://metacpan.org/release/strictures/ Description-md5: bf754ce3adf22d310c87e22afdd59df9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstrigihtmlgui-dev Priority: optional Section: libdevel Installed-Size: 50 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libsearchclient-dev (= 0.7.8-1ubuntu2), libstrigihtmlgui0 (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/libstrigihtmlgui-dev_0.7.8-1ubuntu2_amd64.deb Size: 3354 MD5sum: 88d68671bf6e5a4516a523ab3aa9c76a SHA1: 6ea7b6a4aeab148ce21f7f0dff6666b7b7dad914 SHA256: c3733718181a703566e40df098ad51145e0e09aa72848b66bb3368ceae807f6c Description: development files for libstrigihtmlgui Homepage: http://strigi.sourceforge.net Description-md5: a83a1bca32d3beb0b69ab13945ae0d15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstrigihtmlgui0 Priority: optional Section: libs Installed-Size: 109 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libsearchclient0 (= 0.7.8-1ubuntu2), libstdc++6 (>= 4.4.0), libstreamanalyzer0 (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/libstrigihtmlgui0_0.7.8-1ubuntu2_amd64.deb Size: 26204 MD5sum: 0375190b79d0ed4dbe4b652b5407d2e9 SHA1: bf78fc4fef091b6a97fee4f82559e51cb203315c SHA256: e9e40df61427ddd6ada719cdb736fe3b933ab378bc2041dda8d1e08d7a59b20e Description: library for writing html clients for Strigi Desktop Search Homepage: http://strigi.sourceforge.net Description-md5: d566419581f8467b8c26748c2c218e1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstrigiqtdbusclient-dev Priority: optional Section: libdevel Installed-Size: 63 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libqt4-dev (>= 4.4.0~), libstreams-dev (= 0.7.8-1ubuntu2), libstrigiqtdbusclient0 (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/libstrigiqtdbusclient-dev_0.7.8-1ubuntu2_amd64.deb Size: 4854 MD5sum: 064c337311c95fabbdc84e5594d25870 SHA1: b897c5dd002c632fc952186adf354b81d9643f56 SHA256: a3f6ec671cbbfc798b4b421e15b049cf3d926b0b525dd41f1962706eaef3787a Description: development files for libstrigiqtdbusclient Homepage: http://strigi.sourceforge.net Description-md5: e7e06398fb48a5a6ddab08d0d05c74fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstrigiqtdbusclient0 Priority: optional Section: libs Installed-Size: 161 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/strigi/libstrigiqtdbusclient0_0.7.8-1ubuntu2_amd64.deb Size: 42686 MD5sum: 01dd13553e530e55e839cda15ae6bedb SHA1: f2f3ad88636e0a0690182ed6fabca2c264cbbc22 SHA256: 4749854188309aef3832579bb5e8c9c00c97fd7babb0d6be29b1c3f70f4e58ce Description: library for writing D-Bus clients for Strigi Desktop Search Homepage: http://strigi.sourceforge.net Description-md5: 2703de9b0e91707ca30a717d14c9dca5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstring-format-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.17-1 Depends: perl Filename: pool/main/libs/libstring-format-perl/libstring-format-perl_1.17-1_all.deb Size: 9876 MD5sum: 96cddaf6fe09888b52b9420d766e5f3a SHA1: 6525fd98dfbecf216ff50a4fb50eb6006f5a5c38 SHA256: 807c7fc032439509efcef7820391af228d87d8af8d63094445189267189f100d Description: module for flexible printf-like string formatting Homepage: https://metacpan.org/release/String-Format/ Description-md5: f381fc125420ef37876cbbf45161db1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstrongswan Priority: optional Section: net Installed-Size: 5937 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ikev2 (<< 4.6.4) Depends: libc6 (>= 2.17), libcap2 (>= 2.10), openssl Suggests: strongswan-tnc-imcvs Conflicts: strongswan (<< 4.2.12-1) Breaks: strongswan-ikev2 (<< 4.6.4) Filename: pool/main/s/strongswan/libstrongswan_5.1.2-0ubuntu2_amd64.deb Size: 1448358 MD5sum: 2565e80b947bfbaa664528135d455ef7 SHA1: dafce9c282a6954711c9f77fb238f5b6be1a6f12 SHA256: 810943d4992e0304ce4c937ee36abc933ffde529e76997194bd76c9468191cf8 Description: strongSwan utility and crypto library Homepage: http://www.strongswan.org Description-md5: 37d3dfdd9c510e7c27d10c2dd7ddba19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libstylebook-java Priority: optional Section: libs Installed-Size: 655 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: stylebook Version: 1.0~b3~svn20061109-6 Depends: libxerces2-java Filename: pool/main/s/stylebook/libstylebook-java_1.0~b3~svn20061109-6_all.deb Size: 226692 MD5sum: 2d91be70042b12d9db5079599d23e3bb SHA1: 687da69c1629385c9d36f66d48965be49e86d582 SHA256: 652f12dc02a26b37260cf63949a47797b577f433bf7f04d143b8e9ef09e6dbbf Description: XML application for authoring web site content Description-md5: 5dd02f512ac13e913b6fa52879cb6fd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsub-exporter-perl Priority: optional Section: perl Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.986-1 Depends: perl, libdata-optlist-perl, libsub-install-perl Filename: pool/main/libs/libsub-exporter-perl/libsub-exporter-perl_0.986-1_all.deb Size: 50594 MD5sum: e2066c0b5200146fd00cba58a50bf81e SHA1: cbd20daca39e01de38f2f6c5aa416a7acb9ea40a SHA256: 62e37a588124f5f0a013eabdafc75002d9d7e8ec9d399fc9cfc7a42c459c5bfb Description: sophisticated exporter for custom-built routines Homepage: https://metacpan.org/release/Sub-Exporter/ Description-md5: 831312c784e01c10890ab7865252448f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsub-exporter-progressive-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.001011-1 Depends: perl Filename: pool/main/libs/libsub-exporter-progressive-perl/libsub-exporter-progressive-perl_0.001011-1_all.deb Size: 7064 MD5sum: e27bb836d76a2748312c5f69854036b8 SHA1: 513e693b0648f563885cffbd20ef3a1266d56cdc SHA256: 45c1f902f201b204a881b61770240d56118748046303ba4bc44ad89b292cb728 Description: module for using Sub::Exporter only if needed Homepage: https://metacpan.org/release/Sub-Exporter-Progressive/ Description-md5: 854d6f3825a72a536574faf14f5c2cdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsub-identify-perl Priority: optional Section: perl Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.04-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libs/libsub-identify-perl/libsub-identify-perl_0.04-1build3_amd64.deb Size: 9254 MD5sum: ff12bb0d3c7622eb33837a346ac4cb50 SHA1: c9f1da441589d25a5edad3ca8746a42c5d60bdb6 SHA256: de4509b1658cb2c6c70f763db12fe43d5b4b4d962de8048e815ea0eb69295942 Description: Retrieve names of code references Homepage: http://search.cpan.org/dist/Sub-Identify/ Description-md5: 2a26630b12f2def4d2231528d5f895f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsub-install-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.927-1 Depends: perl Filename: pool/main/libs/libsub-install-perl/libsub-install-perl_0.927-1_all.deb Size: 10584 MD5sum: dbca89fbd0bb0a394f602cd9eb776931 SHA1: 765439a2dd550d70dbbeff3780940a2df9414608 SHA256: 18767dc2fdaa8471ab635de18fdba2b467925cf4629f4fcbbc71fc5bd8d31364 Description: module for installing subroutines into packages easily Homepage: https://github.com/rjbs/Sub-Install Description-md5: f75be2b1996502fcef46043ccd6316a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libsub-name-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.05-1build4 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libs/libsub-name-perl/libsub-name-perl_0.05-1build4_amd64.deb Size: 9774 MD5sum: ab39446ebd06479decec5dee49e14a55 SHA1: 4cf26c88d3da34286929c192d9f205a8eb7836ae SHA256: 93635fab6d38d2fbcc084cd041a38d6ef632ea19d13d132060fe464d91a19238 Description: module for assigning a new name to referenced sub Homepage: http://search.cpan.org/dist/Sub-Name/ Description-md5: 4d3c396cd9ef5cce3647113eb96c42e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsub-uplevel-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.2400-1 Depends: perl Filename: pool/main/libs/libsub-uplevel-perl/libsub-uplevel-perl_0.2400-1_all.deb Size: 13812 MD5sum: a675610ffd040ee8106138b48f655c46 SHA1: 393b4634102686df3338f146cf9397575c97d80a SHA256: 3b64bce2cf9dbf376c30c190de5e94f4abc7ad3bb30fb78dc55fb4cdc89ad756 Description: module to spoof the Perl call stack Homepage: http://search.cpan.org/dist/Sub-Uplevel/ Description-md5: c17fcb34119603f2d9fa587afe3444b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsubunit-dev Priority: optional Section: libdevel Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: subunit Version: 0.0.18-0ubuntu7 Depends: libsubunit0 (= 0.0.18-0ubuntu7) Filename: pool/main/s/subunit/libsubunit-dev_0.0.18-0ubuntu7_amd64.deb Size: 5756 MD5sum: aaea64004bb487c795835b1c686f2c7d SHA1: e887f47fb987deaa28ed9c7b25669883fbc2e96a SHA256: a71cf609732bdb2aea5e718ffa2edb5356c3111ab3607f7959f1c65dac2e123a Description: Unit testing protocol - Development headers and static library for libsubunit Homepage: http://code.launchpad.net/subunit Description-md5: 59f2b9e5c4fd3f1b384f397b663b2422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsubunit-perl Priority: optional Section: perl Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: all Source: subunit Version: 0.0.18-0ubuntu7 Provides: libsubunit-diff-perl Depends: perl Filename: pool/main/s/subunit/libsubunit-perl_0.0.18-0ubuntu7_all.deb Size: 5684 MD5sum: 5251d411f51b7d9202e355d37de20480 SHA1: a6b22271a4c18e50898839e2e9bf705e61517040 SHA256: 23865fcb5410ee35c94716cdc66abdaba4031b6666c5a96367932866c7ca482b Description: perl parser and diff for Subunit streams Homepage: http://code.launchpad.net/subunit Description-md5: 032829985123975208b9829a6660c274 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsubunit0 Priority: optional Section: devel Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: subunit Version: 0.0.18-0ubuntu7 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/s/subunit/libsubunit0_0.0.18-0ubuntu7_amd64.deb Size: 6228 MD5sum: a2268b86ad4a2a64a3dcdbde1a30a09e SHA1: fe9f451cab8714c1731b6e2d820f95e87c34dbf5 SHA256: 6ebdeb2cbf59df8c638d3100acf3ea6cfd48ba7802f04d2c137f5de6bdc46f10 Description: Unit testing protocol - C/C++ shared library Multi-Arch: same Homepage: http://code.launchpad.net/subunit Description-md5: 5666feecff2c3a72a59413c9acaa579c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsuitesparse-dbg Priority: extra Section: libdevel Installed-Size: 2255 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Replaces: libufsparse-dbg Depends: libamd2.3.1 (= 1:4.2.1-3ubuntu1), libcamd2.3.1 (= 1:4.2.1-3ubuntu1), libbtf1.2.0 (= 1:4.2.1-3ubuntu1), libcolamd2.8.0 (= 1:4.2.1-3ubuntu1), libccolamd2.8.0 (= 1:4.2.1-3ubuntu1), libcholmod2.1.2 (= 1:4.2.1-3ubuntu1), libcsparse3.1.2 (= 1:4.2.1-3ubuntu1), libcxsparse3.1.2 (= 1:4.2.1-3ubuntu1), libklu1.2.1 (= 1:4.2.1-3ubuntu1), libldl2.1.0 (= 1:4.2.1-3ubuntu1), libumfpack5.6.2 (= 1:4.2.1-3ubuntu1), libspqr1.3.1 (= 1:4.2.1-3ubuntu1), libblas-dev | libblas.so, liblapack-dev | liblapack.so Conflicts: libufsparse-dbg Filename: pool/main/s/suitesparse/libsuitesparse-dbg_4.2.1-3ubuntu1_amd64.deb Size: 2050532 MD5sum: 2050c0700f616ed5937e9dde3d48d193 SHA1: 7c6be4876a04dcf3e59a60bc4f17d27cf9252a8e SHA256: 9b064277b71203610b3a3bd3209137706572294a21339f07a257db91b80ba080 Description: libraries for sparse matrices computations (debugging symbols) Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 3a4955c06bd363f9fe9a205e12a753da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsuitesparse-dev Priority: optional Section: libdevel Installed-Size: 4708 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Replaces: libsuitesparse-metis-dev, libufsparse-dev, libumfpack4-dev Provides: libufsparse-dev, libumfpack4-dev Depends: libamd2.3.1 (= 1:4.2.1-3ubuntu1), libcamd2.3.1 (= 1:4.2.1-3ubuntu1), libbtf1.2.0 (= 1:4.2.1-3ubuntu1), libcolamd2.8.0 (= 1:4.2.1-3ubuntu1), libccolamd2.8.0 (= 1:4.2.1-3ubuntu1), libcholmod2.1.2 (= 1:4.2.1-3ubuntu1), libcsparse3.1.2 (= 1:4.2.1-3ubuntu1), libcxsparse3.1.2 (= 1:4.2.1-3ubuntu1), libklu1.2.1 (= 1:4.2.1-3ubuntu1), libldl2.1.0 (= 1:4.2.1-3ubuntu1), libumfpack5.6.2 (= 1:4.2.1-3ubuntu1), libspqr1.3.1 (= 1:4.2.1-3ubuntu1), libblas-dev | libblas.so, liblapack-dev | liblapack.so Conflicts: libsuitesparse-metis-dev, libufsparse-dev, libumfpack4-dev Filename: pool/main/s/suitesparse/libsuitesparse-dev_4.2.1-3ubuntu1_amd64.deb Size: 867830 MD5sum: 383b18893d2106b6b36ece49fbb0e8f9 SHA1: 9570f6c2c494a58fdb0ce5d5d4f25341f9e84643 SHA256: 8371d4078802cc189a61af49991496ba607920de92e72ead6c71cab9da5987f7 Description: libraries for sparse matrices computations (development files) Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 7bd01d705987cfee5928585e97b11e11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsuitesparse-doc Priority: optional Section: doc Installed-Size: 2500 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: all Source: suitesparse Version: 1:4.2.1-3ubuntu1 Replaces: libufsparse-doc, libumfpack4-doc Recommends: libblas-doc Suggests: libatlas-doc Conflicts: libufsparse-doc, libumfpack4-doc Filename: pool/main/s/suitesparse/libsuitesparse-doc_4.2.1-3ubuntu1_all.deb Size: 2138764 MD5sum: 509983918e86f9ae608650f8c997820c SHA1: 993a8db8263310e7dfc4986b7ad52aab77cdde8a SHA256: 5b480c77c708b079c8bffffb3af33cecd9c3170af257717e5951060ca3debfe2 Description: libraries for sparse matrices computations (documentation) Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: f15349737b83c1a4657a0bcdb2f64fa7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsunpinyin-dev Priority: optional Section: libdevel Installed-Size: 319 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: sunpinyin Version: 2.0.3+git20130507-1ubuntu1 Depends: libsunpinyin3 (= 2.0.3+git20130507-1ubuntu1), libsqlite3-dev Filename: pool/main/s/sunpinyin/libsunpinyin-dev_2.0.3+git20130507-1ubuntu1_amd64.deb Size: 42610 MD5sum: 9f2bde4aeb7854d1d8a3611214d5c4cb SHA1: 6c919758f6a19e3e68e31388fa89b0e64d8e7aea SHA256: 597945e3de85ba83f8cda3567921380282d8a7ad6736469a56ac796b9fdfc3a8 Description: Simplified Chinese Input Method from SUN (development) Multi-Arch: same Homepage: http://code.google.com/p/sunpinyin Description-md5: ee0ab4995e882afbb25b83272650b453 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsunpinyin3 Priority: optional Section: libs Installed-Size: 431 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: sunpinyin Version: 2.0.3+git20130507-1ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libsqlite3-0 (>= 3.6.11), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Recommends: sunpinyin-data Filename: pool/main/s/sunpinyin/libsunpinyin3_2.0.3+git20130507-1ubuntu1_amd64.deb Size: 132926 MD5sum: 8b3d199f0e03f77a5e40d0eb4851c8f7 SHA1: 6d332b4c9f18cbeac89694e884b46847a0c94902 SHA256: 587ca1a2cb5b898174d2d2c05907f5a06564a3e9d815b4aad42b635a7b0b058d Description: Simplified Chinese Input Method from SUN (runtime) Multi-Arch: same Homepage: http://code.google.com/p/sunpinyin Description-md5: 2097d4efba2fbcf7f271d3f42eb068be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsunpinyin3-dbg Priority: extra Section: debug Installed-Size: 1588 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: sunpinyin Version: 2.0.3+git20130507-1ubuntu1 Depends: libsunpinyin3 (= 2.0.3+git20130507-1ubuntu1) Filename: pool/main/s/sunpinyin/libsunpinyin3-dbg_2.0.3+git20130507-1ubuntu1_amd64.deb Size: 1516124 MD5sum: 611a65a2d1e590f6705fea9abcc82b23 SHA1: c7c667121f7a3cd43dc7d4975570af6a667724c1 SHA256: b41d30828c14de6ca9b07dd4eedddca8f96a46a7a3dd6af8cca960405f45fc10 Description: Simplified Chinese Input Method from SUN (debug) Multi-Arch: same Homepage: http://code.google.com/p/sunpinyin Description-md5: f264d6a7d462389fbd1e24fd2c66471a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsuper-perl Priority: optional Section: perl Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.20120705-1 Depends: perl, libsub-identify-perl Filename: pool/main/libs/libsuper-perl/libsuper-perl_1.20120705-1_all.deb Size: 9754 MD5sum: 0bcff60ea6f80732c21fe17b41bc0e7d SHA1: eff6c39b0aa185984eaa697ba27939372de9c46c SHA256: 946b2af1a38f161c7160442c4e83f2d09efa9fecc7e94079df4ea3f5de0ea4a4 Description: control superclass method dispatch Homepage: http://search.cpan.org/dist/SUPER/ Description-md5: 4350c1d37109bacfad54b0ea2671637b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsvn-dev Priority: extra Section: libdevel Installed-Size: 6031 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Source: subversion Version: 1.8.8-1ubuntu3 Depends: libsvn1 (= 1.8.8-1ubuntu3), libapr1-dev, libaprutil1-dev Suggests: libsvn-doc, zlib1g-dev, libserf-dev Filename: pool/main/s/subversion/libsvn-dev_1.8.8-1ubuntu3_amd64.deb Size: 1179526 MD5sum: febbe6001ecaadc64f843205632e83bf SHA1: a04bce85b66c8495a41bc4e9eff890580ea7f026 SHA256: fdbf2ab44f9dfc4e63175492a576e774c04d69429ebc0092671bfab60b4ecc10 Description: Development files for Apache Subversion libraries Homepage: http://subversion.apache.org/ Description-md5: d7ba285f3a44ff8995f08ac293b28fe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsvn-doc Priority: extra Section: doc Installed-Size: 22090 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: all Source: subversion Version: 1.8.8-1ubuntu3 Suggests: libsvn-dev Filename: pool/main/s/subversion/libsvn-doc_1.8.8-1ubuntu3_all.deb Size: 1280906 MD5sum: a6b7fc8c4d588eaf1a3165d425e23c47 SHA1: 6656823380046fee1b6b5726be3ef2004167d757 SHA256: acde74e7c1aeb5d6d7e58d405d277bf12e819a25cf4e1acdd1ead89eeacf02cc Description: Developer documentation for libsvn Homepage: http://subversion.apache.org/ Description-md5: 8d748bf81b749540b1f83fe4f991a0e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsvn-perl Priority: optional Section: perl Installed-Size: 4626 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Source: subversion Version: 1.8.8-1ubuntu3 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libapr1 (>= 1.2.7), libc6 (>= 2.14), libsvn1 (>= 1.8) Pre-Depends: multiarch-support Filename: pool/main/s/subversion/libsvn-perl_1.8.8-1ubuntu3_amd64.deb Size: 800140 MD5sum: 6f6797d6f4601cb70d8a03dc6a0662a9 SHA1: 708f2c917936bd8da1e7d9dfe47fc89bfa8e2fb5 SHA256: 66579a9a122d94054027d44489edd8a532f72a4e7ab3f0b9ff3af84c7b0cf924 Description: Perl bindings for Apache Subversion Homepage: http://subversion.apache.org/ Description-md5: aa3fb72865b42c59ad1e6eae171929c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsvn1 Priority: optional Section: libs Installed-Size: 3038 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Source: subversion Version: 1.8.8-1ubuntu3 Depends: libsqlite3-0 (>= 3.7.12), libapr1 (>= 1.4.8-2~), libaprutil1 (>= 1.4.0), libc6 (>= 2.14), libdb5.3, libexpat1 (>= 2.0.1), libsasl2-2 (>= 2.1.24), libserf-1-1 (>= 1.2), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Filename: pool/main/s/subversion/libsvn1_1.8.8-1ubuntu3_amd64.deb Size: 916372 MD5sum: 1d08bbe49269a496cd19117c75f446bf SHA1: 8045865d775a1b96e948019a5144ef2385363369 SHA256: 33adfa3deba92fb282591829751b43ef19d0df9e37c5f637ecdc100e7ef3a6ed Description: Shared libraries used by Apache Subversion Multi-Arch: same Homepage: http://subversion.apache.org/ Description-md5: e815569b5d20540901c51f341d283767 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsybdb5 Priority: optional Section: libs Installed-Size: 461 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: freetds Version: 0.91-5 Depends: libc6 (>= 2.17), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), freetds-common Pre-Depends: multiarch-support Filename: pool/main/f/freetds/libsybdb5_0.91-5_amd64.deb Size: 193722 MD5sum: 5b07ae5e073191c9009c0f6150bd21b3 SHA1: 719b29039f0b0e00023574d2122f5c1ad20d1c19 SHA256: 263938bc25874d3513174239156eaf24992f1ac3506b6099e7ad9b06cbb16f93 Description: libraries for connecting to MS SQL and Sybase SQL servers Multi-Arch: same Homepage: http://www.freetds.org/ Description-md5: 29f178ab4ec52996d65073243a0058bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsys-hostname-long-perl Priority: optional Section: perl Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.4-3 Depends: perl Filename: pool/main/libs/libsys-hostname-long-perl/libsys-hostname-long-perl_1.4-3_all.deb Size: 11288 MD5sum: b9ea42fa48a38f9a1a38c50fa15182c8 SHA1: 3cbe94bafd33bae56e5c224fc088cf94c6e54e93 SHA256: 5da17f75165e1bdb50cc3b310f33d025d3fac7794deb737928f4162db0579bfe Description: Figure out the long (fully-qualified) hostname Homepage: https://metacpan.org/release/Sys-Hostname-Long Description-md5: d1aab2fe16f112cfe5293e933da478c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libsysfs-dev Priority: extra Section: libdevel Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: sysfsutils Version: 2.1.0+repack-3ubuntu1 Depends: libsysfs2 (= 2.1.0+repack-3ubuntu1) Filename: pool/main/s/sysfsutils/libsysfs-dev_2.1.0+repack-3ubuntu1_amd64.deb Size: 31774 MD5sum: 02ad55ffd8f2a005a4d9ab7cbe9d3767 SHA1: 3b4183ae1528bd1a8595b88c9f33d68ecc91beab SHA256: f86db912796033693c7f23088537e295039a665cf9d10ab64e74b81095f7120a Description: interface library to sysfs - development files Multi-Arch: same Description-md5: 48efb28cae29a6158cfd77dbcbf6161f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsysfs2 Priority: optional Section: libs Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: sysfsutils Version: 2.1.0+repack-3ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/s/sysfsutils/libsysfs2_2.1.0+repack-3ubuntu1_amd64.deb Size: 19316 MD5sum: 366df7440d6e399c2c775cf81fa508b5 SHA1: 538f6a893c778afba376b8f2b14332aaa9a99cbe SHA256: d92cdfe791ad91e0f27c77cdb4f279f7833de8234c2a8752c6ebe7b87de68d1c Description: interface library to sysfs Multi-Arch: same Description-md5: beea9a89080e1a346e148d9e6bdc4fa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-daemon-dev Priority: extra Section: libdevel Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Depends: libsystemd-daemon0 (= 204-5ubuntu20) Filename: pool/main/s/systemd/libsystemd-daemon-dev_204-5ubuntu20_amd64.deb Size: 7336 MD5sum: be4390a4274ddf4fcfc188a5273f522d SHA1: 6173334006420940843fed734cc312de982a93b5 SHA256: 3e4a598df119103e4d0099e39723cc3905df2a0f5d6129838723832af1fcc2e6 Description: systemd utility library - development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 15fdb9eeef9f47e6b4ff92785bbb9d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-daemon0 Priority: standard Section: libs Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libsystemd-daemon0_204-5ubuntu20_amd64.deb Size: 9908 MD5sum: 8432aaddf2d6a359b37a28be1421a14a SHA1: 3e3eb1ddf341b1fc40fa11d33b0c32bb5a78705f SHA256: 053d94163d9b73aaf12fdbf011293cc38d4eb4630d674441b7d92e2d728183ab Description: systemd utility library Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 56515555df42a10999b8edaaa40373ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libsystemd-id128-0 Priority: extra Section: libs Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Depends: libc6 (>= 2.7), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libsystemd-id128-0_204-5ubuntu20_amd64.deb Size: 13756 MD5sum: c67af8ebcdf6c1499818fa7276b1711e SHA1: a7f818a0f4551d0b8ee29a27fc8f9a4ed403a7d6 SHA256: c2ac90ea94c64b7aa4a76a87def0d1bfb7010167d0de4227ddda391bdc5b463d Description: systemd 128 bit ID utility library Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: f1e829bb4ba3cea00c4172d21882434f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-id128-dev Priority: extra Section: libdevel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Depends: libsystemd-id128-0 (= 204-5ubuntu20) Filename: pool/main/s/systemd/libsystemd-id128-dev_204-5ubuntu20_amd64.deb Size: 5058 MD5sum: 623a04df1f24f32d5951d6d32bc7565e SHA1: c4b08e1d08a2655405aa0d276a46849c94d8289d SHA256: 3bd8144425b5286746d20144fc0417cef5040a68ba88e5e90d1d50dd8c8e6bf4 Description: systemd 128 bit ID utility library - development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: a0489c042528c7c04fd2a6520c578975 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-journal-dev Priority: extra Section: libdevel Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Depends: libsystemd-journal0 (= 204-5ubuntu20), libsystemd-id128-dev (= 204-5ubuntu20) Filename: pool/main/s/systemd/libsystemd-journal-dev_204-5ubuntu20_amd64.deb Size: 6724 MD5sum: e44e6238d273fa79e0cb03b1152c37a5 SHA1: 7914de73806e5d338226e203aefb3036b77aad19 SHA256: a7ce72baf44f3925e73b21252a80ab3be472e85daae40c8f2c4c30c6bb1736e5 Description: systemd journal utility library - development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: e80c34da97e3cfda38731839be115201 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-journal0 Priority: extra Section: libs Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Depends: libc6 (>= 2.14), libcgmanager0, libdbus-1-3 (>= 1.0.2), libgcrypt11 (>= 1.5.1), liblzma5 (>= 5.1.1alpha+20120614), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libselinux1 (>= 1.32) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libsystemd-journal0_204-5ubuntu20_amd64.deb Size: 49786 MD5sum: 8f97d07bb1efc444cf6c1bf55f9cff13 SHA1: 86ef9cc7ae1bd7f0b633631b54c6f9c5405eca29 SHA256: e39cf0bc1faffd329e9221d964709c5399f160a444508041fe52eb8b580537ba Description: systemd journal utility library Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 954612493a4438c396bb24b45a566df6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libsystemd-login-dev Priority: extra Section: libdevel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Depends: libsystemd-login0 (= 204-5ubuntu20) Filename: pool/main/s/systemd/libsystemd-login-dev_204-5ubuntu20_amd64.deb Size: 5960 MD5sum: 26477883db58ca2f4aa6dad5861e77fb SHA1: 7b16c75d08e4234571d83a7c92625c5fc6c01cac SHA256: c2b35850a3eed49d399efa55c1fda4ca0fa76230a962b2c5377341b1424cd813 Description: systemd login utility library - development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 134f5d47241710892d4b4dbcc9f39609 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-login0 Priority: standard Section: libs Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Depends: libc6 (>= 2.14), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libsystemd-login0_204-5ubuntu20_amd64.deb Size: 26918 MD5sum: 0db9e55b4584223649695924383de9f2 SHA1: dbb725cc0b482ec4586f5fd6042f1133033e3366 SHA256: 3f8d52c994463f5d604362b50320517bd06c750ebefdfd459008d8e073e7e8d5 Description: systemd login utility library Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 2a0d17f149cad5d96dc1de7cde14133b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libt1-5 Priority: optional Section: libs Installed-Size: 369 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: amd64 Source: t1lib Version: 5.1.2-3.6ubuntu1 Depends: libc6 (>= 2.14), libx11-6 Filename: pool/main/t/t1lib/libt1-5_5.1.2-3.6ubuntu1_amd64.deb Size: 133672 MD5sum: 9008d07107340862975b565155479341 SHA1: 2513d200b1a1bbdcb38015b8813b02992aaae7fd SHA256: cad090d18079a83678131fea1a39efd40274cf1fa13d7dd84248b1b633fba2e2 Description: Type 1 font rasterizer library - runtime Homepage: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/ Description-md5: 6054872dd8ea2995d1fb43e82bc5f11c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libt1-5-dbg Priority: extra Section: libdevel Installed-Size: 956 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: amd64 Source: t1lib Version: 5.1.2-3.6ubuntu1 Depends: libt1-5 (= 5.1.2-3.6ubuntu1) Filename: pool/main/t/t1lib/libt1-5-dbg_5.1.2-3.6ubuntu1_amd64.deb Size: 234150 MD5sum: 8f95c64266942a2249bdcef8d85789a3 SHA1: 39b46dc369689d69f990cbfff41a1cff1230b78a SHA256: 103d0115d97835591170e08206155efb36ee69707aa512a677c91aac33372d81 Description: Type 1 font rasterizer library - debugging runtime Homepage: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/ Description-md5: 91d6e0d47644b5830b80355301f88ab6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libt1-dev Priority: optional Section: libdevel Installed-Size: 623 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: amd64 Source: t1lib Version: 5.1.2-3.6ubuntu1 Depends: libt1-5 (= 5.1.2-3.6ubuntu1), libice-dev, libsm-dev, libx11-dev, libxext-dev, libxaw7-dev Recommends: libt1-doc Conflicts: t1lib-dev, t1lib1-dev Filename: pool/main/t/t1lib/libt1-dev_5.1.2-3.6ubuntu1_amd64.deb Size: 138486 MD5sum: dea727b0a138626fbc461161341db350 SHA1: 17f7099e5c92ee33416f99755bbc6aa07c19c228 SHA256: 0969cfb49ed7b081f1e7236cf231c88fa28f3711b0bf1a72c7361cb6be49bfbf Description: Type 1 font rasterizer library - development Homepage: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/ Description-md5: d31783ce92d7638c4b0e560caa634570 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libt1-doc Priority: optional Section: doc Installed-Size: 627 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: all Source: t1lib Version: 5.1.2-3.6ubuntu1 Filename: pool/main/t/t1lib/libt1-doc_5.1.2-3.6ubuntu1_all.deb Size: 596544 MD5sum: 59b121c6b41fdf82104c74eda9e7d5f9 SHA1: bbb9ebc331bdaf8dd29ff9bbe089c2e8fc129369 SHA256: 39a3d5c1c212d1e4c8f479aa57e23d33bfee08577b7df44a6a03c58cc018c40e Description: Type 1 font rasterizer library - developers documentation Homepage: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/ Description-md5: f17cb6a5d2cb89c14d634a7f513fb812 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtag1-dev Priority: optional Section: libdevel Installed-Size: 666 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: amd64 Source: taglib Version: 1.9.1-2 Depends: libtag1c2a (= 1.9.1-2) Filename: pool/main/t/taglib/libtag1-dev_1.9.1-2_amd64.deb Size: 111506 MD5sum: b298f543f99a80a241958015db578efb SHA1: 4c0098947f0d6599ac8e2ee94baaea89815be782 SHA256: fbd82ad36ac5c3e9f6bc3d2810dea0e9e830b558fbb5e0750194975e440f65a9 Description: audio meta-data library - development files Homepage: http://taglib.github.io/ Description-md5: 888301518d75bc0f4763bd782d79488d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtag1-doc Priority: optional Section: doc Installed-Size: 18199 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: all Source: taglib Version: 1.9.1-2 Suggests: libtag1-dev Filename: pool/main/t/taglib/libtag1-doc_1.9.1-2_all.deb Size: 10345364 MD5sum: fdf067dbbab04d3e1520120a958fb1d4 SHA1: 88c51dd65b37dcf4a156791f14adde2efc8c4a9a SHA256: 703919aab6d6a47f4a7e396314b03d127e2deaa1fb2fe2df8f0a68282dd21f1c Description: audio meta-data library - API documentation Homepage: http://taglib.github.io/ Description-md5: a45842d55346277537d04149faf76dc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtag1-vanilla Priority: optional Section: libs Installed-Size: 1065 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: amd64 Source: taglib Version: 1.9.1-2 Replaces: libtag1c2a (<< 1.5-5) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Conflicts: libtag-extras0, libtag1-rusxmms Breaks: libtag1c2a (<< 1.5-5) Filename: pool/main/t/taglib/libtag1-vanilla_1.9.1-2_amd64.deb Size: 353122 MD5sum: b8727b29a9f9ce99ab691bfa06bd1e13 SHA1: d577dfc5df3d68ea7aec85e2cace6a51470aa698 SHA256: b5c0094f386e5ae8f7630d095239ce107b6e41a313c3e3f57d3c0c7562e3d8e8 Description: audio meta-data library - vanilla flavour Multi-Arch: same Homepage: http://taglib.github.io/ Description-md5: 4cac4306ea9b6bab8a13ffcfdc43f65b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtag1c2a Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: amd64 Source: taglib Version: 1.9.1-2 Depends: libtag1-vanilla (= 1.9.1-2) Conflicts: libtag-extras0 Filename: pool/main/t/taglib/libtag1c2a_1.9.1-2_amd64.deb Size: 11282 MD5sum: 2d6e54f158450d0544ae9187c099bc29 SHA1: 2ad7c167563d8e2c1d84b6a520f52f7531c38210 SHA256: c0c41cefadbd6a0b75137e460b5985b6f3497bcf897dad1887f99223a0b37290 Description: audio meta-data library Multi-Arch: same Homepage: http://taglib.github.io/ Description-md5: 9e8abedb5ef9077269b0efcfa0f6b56e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtagc0 Priority: optional Section: libs Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: amd64 Source: taglib Version: 1.9.1-2 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libtag1c2a (>= 1.6-2~) Pre-Depends: multiarch-support Filename: pool/main/t/taglib/libtagc0_1.9.1-2_amd64.deb Size: 17578 MD5sum: ac15de37da1ee5ec1313f0f6682dc50d SHA1: 7ba4a9da5da8ba7107979286a396da78e1214d0c SHA256: d3ae57eb95b2a9bb5f73ad59b481f1876ab129a1b85dcc3dd7c1c2e0e68a25b0 Description: audio meta-data library - C bindings Multi-Arch: same Homepage: http://taglib.github.io/ Description-md5: b062c82335f422c90bf8a4aca5ebe973 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, ubuntustudio-desktop Package: libtagc0-dev Priority: optional Section: libdevel Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: amd64 Source: taglib Version: 1.9.1-2 Depends: libtagc0 (= 1.9.1-2), libtag1-dev (= 1.9.1-2) Filename: pool/main/t/taglib/libtagc0-dev_1.9.1-2_amd64.deb Size: 14380 MD5sum: 36ba8433eabc8b9083a46f450adc0d79 SHA1: fce96688f502bc0c4c8344810ae00ef97adcf434 SHA256: 5cc66d40ef56a2b888fb057771652940639fb4e129282a10ba3b4d63347acbd6 Description: audio meta-data library - development files for C bindings Homepage: http://taglib.github.io/ Description-md5: 622b9fbae757efd9e71c6d783eb91edc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtagcoll2-dev Priority: optional Section: libdevel Installed-Size: 684 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: amd64 Source: tagcoll2 Version: 2.0.14-1 Depends: zlib1g-dev, libwibble-dev (>= 1.0), libwibble-dev (<< 2.0) Recommends: pkg-config Filename: pool/main/t/tagcoll2/libtagcoll2-dev_2.0.14-1_amd64.deb Size: 137398 MD5sum: f6df1ad6d59f61e93d92da911d524e96 SHA1: 4c5fcd2d660edc5278931c335042a5ef66c6d72e SHA256: 2d5cd900d7038ad1b2a68c13e0eede95628b9f17e2ce01a0909da1b27154a28d Description: Functions used to manipulate tagged collections (development version) Homepage: http://debtags.alioth.debian.org Description-md5: 4f0bb748070edb127d52d61cbbb2702d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtalloc-dev Priority: optional Section: libdevel Installed-Size: 653 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: talloc Version: 2.1.0-1 Depends: libtalloc2 (= 2.1.0-1), pkg-config Filename: pool/main/t/talloc/libtalloc-dev_2.1.0-1_amd64.deb Size: 120250 MD5sum: 37d627025cd574f7278d10812de4ba27 SHA1: 8742edf2ca78ade042de084ac5853cc157d1645f SHA256: 38718735d5e6ec53ebbe3727222cd88dc007e058c4cf48e5a5a9e4072d6dfb29 Description: hierarchical pool based memory allocator - development files Homepage: http://talloc.samba.org/ Description-md5: 41677e6816a10958e5b86e549c6ecf01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtalloc2 Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: talloc Version: 2.1.0-1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/t/talloc/libtalloc2_2.1.0-1_amd64.deb Size: 24748 MD5sum: 8bc6077401440e55daf41817aa3dcb21 SHA1: 02d831aab020b2965c1f39524decb67940eb0d01 SHA256: 7b5b9898612af414dbc8b35a6869e3239507f617070f8518b5f73cbbc8ae265d Description: hierarchical pool based memory allocator Multi-Arch: same Homepage: http://talloc.samba.org/ Description-md5: 23f3872767580f46840e3abd41107394 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtalloc2-dbg Priority: extra Section: debug Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: talloc Version: 2.1.0-1 Depends: libtalloc2 (= 2.1.0-1) Pre-Depends: multiarch-support Recommends: libc6-dbg Filename: pool/main/t/talloc/libtalloc2-dbg_2.1.0-1_amd64.deb Size: 53734 MD5sum: fdae6e29fe9e20e33faaf06ac87a3b1c SHA1: bef5ca5b46b38b43ae7f28e7069ce9c1e7c66fd3 SHA256: 7cbdd63a8d8f01060e5d7cf658f6cb96687b280e63007719999fba51ee56a6ad Description: hierarchical pool based memory allocator - debug symbols Homepage: http://talloc.samba.org/ Description-md5: 807bdd376662c5eef0feac49164723cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtask-weaken-perl Priority: optional Section: perl Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.04-1 Depends: perl Filename: pool/main/libt/libtask-weaken-perl/libtask-weaken-perl_1.04-1_all.deb Size: 7628 MD5sum: 63a4c1fc864ce4c40baeecd41b9f3687 SHA1: 6eb57cc48468d7717ac2446d38fcb481a2c3b9cf SHA256: 9bcb5173323e91f6eb2f8e2c4ba9c46cd7901b1839313715f6409d0cf6954ce3 Description: module for ensuring that a platform has weaken support Homepage: https://metacpan.org/release/Task-Weaken/ Description-md5: fb54943f95a181df94f31285215fbe20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libtasn1-3-bin Priority: optional Section: libs Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: all Source: libtasn1-6 Version: 3.4-3 Depends: libtasn1-bin (>= 3.4-3) Filename: pool/main/libt/libtasn1-6/libtasn1-3-bin_3.4-3_all.deb Size: 10934 MD5sum: 2f58f1b455da0425cfeef3b6ec5084aa SHA1: 729deba8d5aaa1a5ffaf7a58775eacd035948cfa SHA256: a24772bcb9a5259c581852359f863cf110d72c28aee9380850916f892cc14488 Description: transitional libtasn1-3-bin package Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: 9b8edec27d06e44855d970a28ccda9e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtasn1-3-dev Priority: optional Section: libdevel Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: all Source: libtasn1-6 Version: 3.4-3 Depends: libtasn1-6-dev (>= 3.4-3) Filename: pool/main/libt/libtasn1-6/libtasn1-3-dev_3.4-3_all.deb Size: 10944 MD5sum: e9d2b2cb24b3425d5a96f8933cfe636c SHA1: 912a63fcfa53fffd0dc541e52ed2205c9049523d SHA256: a845fe62f8e6a796ab86fd0be160e4065e83610a313085e4e8603a547fa807e1 Description: transitional libtasn1-3-dev package Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: 03ff2e7a2940858ca918043dc06ec083 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtasn1-6 Priority: important Section: libs Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Version: 3.4-3 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libt/libtasn1-6/libtasn1-6_3.4-3_amd64.deb Size: 43044 MD5sum: b266e54bfee75fcf2f4b9bb469394603 SHA1: dde98f5706a13172ddc262a4a21a0d2727ae7b50 SHA256: b4ca68f20c79343ea80891d6c8cb310891d4973290e72819fdce665734c640c0 Description: Manage ASN.1 structures (runtime) Multi-Arch: same Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: 535058cbce5722d1c5d399c0854dd71f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtasn1-6-dbg Priority: extra Section: debug Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: libtasn1-6 Version: 3.4-3 Replaces: libtasn1-3-dbg Depends: libtasn1-6 (= 3.4-3) Breaks: libtasn1-3-dbg Filename: pool/main/libt/libtasn1-6/libtasn1-6-dbg_3.4-3_amd64.deb Size: 102800 MD5sum: 50acb209e0c1df68aeaad095d757249a SHA1: b7e403e7253685d9fe7db72a1617c018107d5c36 SHA256: 8702555e09c19c1be22b9cf482f7c986d203771d87b2c3df0b0c0cb01033421b Description: Manage ASN.1 structures (debugging symbols) Multi-Arch: same Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: 67fb96d4e0d5f10a38b9e0c4455c5c29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtasn1-6-dev Priority: optional Section: libdevel Installed-Size: 778 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: libtasn1-6 Version: 3.4-3 Provides: libtasn1-dev Depends: libtasn1-6 (= 3.4-3) Conflicts: libtasn1-dev Filename: pool/main/libt/libtasn1-6/libtasn1-6-dev_3.4-3_amd64.deb Size: 383372 MD5sum: 5de0afc9b7cfe28f1eb6da7e7faaacc3 SHA1: 1013bc4b4b1e89bb4742e9b41a925af48abc6f24 SHA256: d9eb6922ce1bac2d43d594321a867719b0714192b48ecf8c1c38c23cb6f89593 Description: Manage ASN.1 structures (development) Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: b706df99ecc890cee403a672ad9b84df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtasn1-bin Priority: extra Section: devel Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: libtasn1-6 Version: 3.4-3 Replaces: libtasn1-3-bin Depends: libc6 (>= 2.17), libtasn1-6 (>= 3.4-0) Breaks: libtasn1-3-bin (<< 3) Filename: pool/main/libt/libtasn1-6/libtasn1-bin_3.4-3_amd64.deb Size: 15072 MD5sum: fe778f33274f06f3522a3ae9e01b301c SHA1: af48d6c26e60f9f0e4f9a529a58baf1e3f51a780 SHA256: b46ce0f2bbcf16ea1433a95b6d28939cd9fee66295f7934af5d37a22b6f12def Description: Manage ASN.1 structures (binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: 732971f746a6a2ec0311889ae799da20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtcl8.5 Priority: optional Section: libs Installed-Size: 3209 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: amd64 Source: tcl8.5 Version: 8.5.15-2ubuntu1 Replaces: tcl8.5 (<< 8.5.14-3), tcl8.5-lib (<< 8.5.14-3) Provides: libtcl Depends: tzdata, libc6 (>= 2.15) Pre-Depends: multiarch-support Suggests: tcl8.5 Conflicts: tcl74 (<= 7.4p3-2), tcl8.5 (<< 8.5.14-3), tcl8.5-lib (<< 8.5.14-3) Filename: pool/main/t/tcl8.5/libtcl8.5_8.5.15-2ubuntu1_amd64.deb Size: 683658 MD5sum: f313c1a20c44b71bf503a1ef48607a57 SHA1: ad3d4281fea9c1c7132eb85dfc3021732c09022f SHA256: b7b9c76f0eb72632135f6f2893c7e0e094a1fbf941ddfc194eba946991bcd40c Description: Tcl (the Tool Command Language) v8.5 - run-time library files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 260caa7ab61a859c3c9d8ad96fc97d41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, ubuntustudio-desktop Package: libtcl8.5-dbg Priority: extra Section: debug Installed-Size: 1861 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: amd64 Source: tcl8.5 Version: 8.5.15-2ubuntu1 Depends: libtcl8.5 (= 8.5.15-2ubuntu1) Filename: pool/main/t/tcl8.5/libtcl8.5-dbg_8.5.15-2ubuntu1_amd64.deb Size: 1769934 MD5sum: c3091cc3b5eae9cd09693ef348eb44af SHA1: 6f324a847d2a8a53ddac9b5898ef96379426f6a4 SHA256: 0add163a4df6ad98532b044c628dd75d3a53e4e3aa27635818565619c5bec658 Description: Symbol files for libtcl8.5 Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: ef2147b05825feee9140ec7ad3a93443 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtcl8.6 Priority: optional Section: libs Installed-Size: 3699 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Source: tcl8.6 Version: 8.6.1-4ubuntu1 Replaces: tcl8.6 (<< 8.6.0-2), tcl8.6-lib (<< 8.6.0-2) Provides: libtcl Depends: tzdata, libc6 (>= 2.15), zlib1g (>= 1:1.2.2) Pre-Depends: multiarch-support Suggests: tcl8.6 Conflicts: tcl74 (<= 7.4p3-2), tcl8.6 (<< 8.6.0-2), tcl8.6-lib (<< 8.6.0-2) Filename: pool/main/t/tcl8.6/libtcl8.6_8.6.1-4ubuntu1_amd64.deb Size: 840910 MD5sum: ad96d8565e68fa57b92e7d99fb0474ae SHA1: 5b1a9b2bcb3daf0fbf685b2cec9a49c30627c2ce SHA256: e468d62e5346ff34c4659f2a6d2b837830e1ab8692b1e385a1620819be36923f Description: Tcl (the Tool Command Language) v8.6 - run-time library files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 0900ad020fbf5b0aca4aa49a8044d863 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtcl8.6-dbg Priority: extra Section: debug Installed-Size: 2879 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Source: tcl8.6 Version: 8.6.1-4ubuntu1 Depends: libtcl8.6 (= 8.6.1-4ubuntu1) Filename: pool/main/t/tcl8.6/libtcl8.6-dbg_8.6.1-4ubuntu1_amd64.deb Size: 2776608 MD5sum: b9b48f7dc6ac1361722fa8c270ef6cc5 SHA1: b1c7e71b51bbe21d7d425e44072b0322c86dfa89 SHA256: 20849c42fc6db405358fab8fc59c553ac485f369317f7538518c1a189f83f54b Description: Symbol files for libtcl8.6 Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: ccc9af2ab91f309e5fc456d6cd0695c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtcmalloc-minimal4 Priority: optional Section: libs Installed-Size: 409 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: google-perftools Version: 2.1-2ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/g/google-perftools/libtcmalloc-minimal4_2.1-2ubuntu1_amd64.deb Size: 103618 MD5sum: 8884f09ce6af46fe1620383a7e66d146 SHA1: f3a54ed84fdc2c3958b1d10c02c1b38dd8519b09 SHA256: 733c7719cb251d7298e10790e128a685de9846abd043a15073fb21ea48507af0 Description: efficient thread-caching malloc Homepage: http://code.google.com/p/gperftools/ Description-md5: 08055bb6b0955f242fbf2149e901979d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtcmalloc-minimal4-dbg Priority: extra Section: debug Installed-Size: 825 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: google-perftools Version: 2.1-2ubuntu1 Depends: libtcmalloc-minimal4 (= 2.1-2ubuntu1) Filename: pool/main/g/google-perftools/libtcmalloc-minimal4-dbg_2.1-2ubuntu1_amd64.deb Size: 685808 MD5sum: a381ee81a27a86930ee737394324f4d5 SHA1: c85ae9d91a99a588e48f290ef11c3eba2b95a867 SHA256: 09c5c3ee46f20defd741c78793f181749040c08f80510fd12c8a41dc73bc3243 Description: efficient thread-caching malloc Homepage: http://code.google.com/p/gperftools/ Description-md5: c2fafc6e901cbe7fc4d3527149a354eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtdb-dev Priority: optional Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: tdb Version: 1.2.12-1 Replaces: tdb-dev (<< 1.2.0-1) Provides: tdb-dev Depends: libc6-dev, libtdb1 (= 1.2.12-1) Conflicts: tdb-dev (<< 1.2.0-1) Filename: pool/main/t/tdb/libtdb-dev_1.2.12-1_amd64.deb Size: 22174 MD5sum: 46dfb019228388fedf4163d250c313cc SHA1: 8808b61f25486c1f43ab864803dd0c092e2613f2 SHA256: 03fb1e19a0b3165855d8cb4ab8e250192a2956602c5c98bd2c1303e035d26188 Description: Trivial Database - development files Homepage: http://tdb.samba.org/ Description-md5: 2db2deda00827a5a869d0647c19be720 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtdb1 Priority: optional Section: libs Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: tdb Version: 1.2.12-1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/t/tdb/libtdb1_1.2.12-1_amd64.deb Size: 37770 MD5sum: 455b57df4f62141e6d7eb62c9c285c0c SHA1: f1348a6f6ca96e0cb64afc1654ea65230f2807af SHA256: 2a64e851f05b882ba66822854cba2288c95f752ddd2ad445685e0e23d662bd79 Description: Trivial Database - shared library Multi-Arch: same Homepage: http://tdb.samba.org/ Description-md5: 0f3fcc8a1c8e6b3b4c956fdf394636a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtdb1-dbg Priority: extra Section: debug Installed-Size: 277 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: tdb Version: 1.2.12-1 Depends: libtdb1 (= 1.2.12-1) Recommends: libc6-dbg Filename: pool/main/t/tdb/libtdb1-dbg_1.2.12-1_amd64.deb Size: 76164 MD5sum: bbc6effb9460d5ac30f8b9f5beb1b4ba SHA1: 77e68b3aa8be5bdad0a8037ad3478d4c49074f7a SHA256: 794d218154a5b782f8f3ca3ff207bd0340f627d729333d94c78f59e8d0261af2 Description: Trivial Database - debug symbols Homepage: http://tdb.samba.org/ Description-md5: d4b3d4aac20f22e37a8477db996c7bb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-farstream-dev Priority: optional Section: libdevel Installed-Size: 475 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-farstream Version: 0.6.1-0ubuntu1 Depends: libtelepathy-farstream3 (= 0.6.1-0ubuntu1), libglib2.0-dev (>= 2.16), libdbus-glib-1-dev (>= 0.60), libfarstream-0.2-dev (>= 0.1.1), libtelepathy-glib-dev (>= 0.13.4), libgstreamer1.0-dev Filename: pool/main/t/telepathy-farstream/libtelepathy-farstream-dev_0.6.1-0ubuntu1_amd64.deb Size: 59500 MD5sum: 1f2bf00a57287360f74b3495b4bfee68 SHA1: 1b605a387babc2c9aa53b90f051d19533c10d7b1 SHA256: b0717e448ec206f69358e556b74d220b5bd08af5f56d37476f1ae71ba4409777 Description: Glue library between telepathy and farstream (development files) Homepage: http://telepathy.freedesktop.org/ Description-md5: 7059845522da2433f9e336314529f605 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-farstream-doc Priority: optional Section: doc Installed-Size: 255 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: telepathy-farstream Version: 0.6.1-0ubuntu1 Depends: lynx | www-browser Suggests: devhelp Filename: pool/main/t/telepathy-farstream/libtelepathy-farstream-doc_0.6.1-0ubuntu1_all.deb Size: 16830 MD5sum: 92fa674a4b75b4ed2950bff4443cbf55 SHA1: a9291c758ade8a06f2028284233fbbe10c18d570 SHA256: 711ceb93292f72b588c2dea9d69a3b6e33a4080fd7235845be1f3992cb42ac8c Description: Glue library between telepathy and farstream (documentation) Homepage: http://telepathy.freedesktop.org/ Description-md5: 0ad7276522e83b70c5bb63c4dd3ba6f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-farstream3 Priority: optional Section: libs Installed-Size: 326 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-farstream Version: 0.6.1-0ubuntu1 Depends: libc6 (>= 2.14), libdbus-glib-1-2 (>= 0.78), libfarstream-0.2-2 (>= 0.1.91), libglib2.0-0 (>= 2.31.8), libgstreamer1.0-0 (>= 1.0.0), libtelepathy-glib0 (>= 0.19.0) Pre-Depends: multiarch-support Filename: pool/main/t/telepathy-farstream/libtelepathy-farstream3_0.6.1-0ubuntu1_amd64.deb Size: 57660 MD5sum: 980a093584ffce29a894a76d6deced56 SHA1: 5de591df1c6313a0a63360a78262e68948101dc3 SHA256: 479114b39173cddf1252b1c2f13c7813a4aa252e2daa0e13ece2d69984e31f99 Description: Glue library between telepathy and farstream Multi-Arch: same Homepage: http://telepathy.freedesktop.org/ Description-md5: 1487c1b6d888d475ae70862d26313c1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libtelepathy-farstream3-dbg Priority: extra Section: debug Installed-Size: 377 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-farstream Version: 0.6.1-0ubuntu1 Depends: libtelepathy-farstream3 (= 0.6.1-0ubuntu1) Filename: pool/main/t/telepathy-farstream/libtelepathy-farstream3-dbg_0.6.1-0ubuntu1_amd64.deb Size: 170808 MD5sum: 5889c3d39ce88f05706a505767c2ebcb SHA1: 007f40531d76de6525d83e6512450d6e51d881f5 SHA256: 628eccf41b99ac9cc61bae2eb7421c03c79b6402d6afd765c7ef6c4a4819a9ca Description: Glue library between telepathy and farstream (debug symbols) Multi-Arch: same Homepage: http://telepathy.freedesktop.org/ Description-md5: c5e1ddfe74dd7235319cd0e5accd797c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-glib-dev Priority: optional Section: libdevel Installed-Size: 8367 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-glib Version: 0.22.1-1ubuntu2 Depends: libtelepathy-glib0 (= 0.22.1-1ubuntu2), gir1.2-telepathyglib-0.12 (= 0.22.1-1ubuntu2), libglib2.0-dev (>= 2.32), libdbus-1-dev (>= 0.95), libdbus-glib-1-dev (>= 0.90), pkg-config Suggests: libtelepathy-glib-doc Filename: pool/main/t/telepathy-glib/libtelepathy-glib-dev_0.22.1-1ubuntu2_amd64.deb Size: 901164 MD5sum: a7ed52499da894ff644f6e6edefb5f5e SHA1: 3eca18e907a028aedee28f2fb75c2039b2e0e5a4 SHA256: a03f6d62a01f8b3dabd39865161275be1a0e8780fcbd120ff1a276f8ef72f39e Description: GLib Telepathy connection manager library (headers) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: cecc48489d9277257f3e75f69d84e5a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-glib-doc Priority: optional Section: doc Installed-Size: 14853 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: telepathy-glib Version: 0.22.1-1ubuntu2 Suggests: devhelp Filename: pool/main/t/telepathy-glib/libtelepathy-glib-doc_0.22.1-1ubuntu2_all.deb Size: 904314 MD5sum: 8ac91e3fffca12df62ae510c073082ce SHA1: 5151d73c169de2d0768e7c48b08ee6293c3a772e SHA256: d2357b7dd44e440d6fb1e1ec94d9cb38dd3ca338c9c02cbc4dce2910b24357e3 Description: GLib Telepathy library (documentation) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 4a02941f4dc85c9b62b0b5e012eeb814 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-glib0 Priority: optional Section: libs Installed-Size: 2490 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-glib Version: 0.22.1-1ubuntu2 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.92), libglib2.0-0 (>= 2.32) Pre-Depends: multiarch-support Filename: pool/main/t/telepathy-glib/libtelepathy-glib0_0.22.1-1ubuntu2_amd64.deb Size: 589746 MD5sum: fc8647a0075ff80611e5241c5dbf1325 SHA1: ba408bf3fa33ca6af46e65639087f5e084ee44e5 SHA256: 16e0c7a4c98e64519db368b8e6d2c6d2cf6a64e0dc8a38d73abbf5c0777b431c Description: Telepathy framework - GLib library Multi-Arch: same Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: bbae6d3ff9e905985fa54ab934ff329f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtelepathy-glib0-dbg Priority: extra Section: libdevel Installed-Size: 2640 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-glib Version: 0.22.1-1ubuntu2 Depends: libtelepathy-glib0 (= 0.22.1-1ubuntu2) Filename: pool/main/t/telepathy-glib/libtelepathy-glib0-dbg_0.22.1-1ubuntu2_amd64.deb Size: 2128014 MD5sum: f01bd32129c7bcce35dc4b2397613d58 SHA1: 9776e1a653a70125b553a4f7f356d8b2007888d1 SHA256: d38ad33dfefbd46640ef6ec8614865307d570692547016f23bcb8fe0e9c50e49 Description: GLib Telepathy library (debug symbols) Multi-Arch: same Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 0cfc4d9765b9f67c68f2d8cb09d8c803 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-logger-dev Priority: optional Section: libdevel Installed-Size: 549 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-logger Version: 0.8.0-3 Depends: libtelepathy-logger3 (= 0.8.0-3), gir1.2-telepathylogger-0.2 (= 0.8.0-3), libglib2.0-dev (>= 2.22), libdbus-glib-1-dev (>= 0.11.5), pkg-config (>= 0.21) Suggests: libtelepathy-logger-doc Filename: pool/main/t/telepathy-logger/libtelepathy-logger-dev_0.8.0-3_amd64.deb Size: 78408 MD5sum: 3ab9d1bdaf4a9a4d710d3aeb3bb5deb0 SHA1: 57fad8101cf0457f945b3f9c5f7841025fd72f5f SHA256: c08cb1f002fd85ed24061c86ff466db1a79567940a51e3cc92ac0890162efbb9 Description: Telepathy logger service -- utility library (headers) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 7423195bf5dc867605a3c6aa1b016cad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-logger-doc Priority: optional Section: doc Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: telepathy-logger Version: 0.8.0-3 Suggests: devhelp Filename: pool/main/t/telepathy-logger/libtelepathy-logger-doc_0.8.0-3_all.deb Size: 20222 MD5sum: 90fd4897c9958f7a08b540587d4be3b5 SHA1: 174f35ddf107db7d16c2e42f1d9270f941884a00 SHA256: 07bb54ed63d67f1228aea86ed55e192e38db13cdfa11c3f808d0553ea6583fb1 Description: Telepathy logger service -- documentation Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: f4e7b201a3b235288c458398442ffb10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-logger3 Priority: optional Section: libs Installed-Size: 242 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-logger Version: 0.8.0-3 Replaces: libtelepathy-logger2 (= 0.6.0-1) Depends: libc6 (>= 2.7), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9), libtelepathy-glib0 (>= 0.19.2), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Breaks: libtelepathy-logger2 (= 0.6.0-1) Filename: pool/main/t/telepathy-logger/libtelepathy-logger3_0.8.0-3_amd64.deb Size: 65610 MD5sum: 9ec8492f00c13624eb5a0259be7d099d SHA1: 55154adffddab9c06fb34bf386f78e61db830d42 SHA256: 06ecf15fdc6e7060ddf21151adb10030e6d43ce2d322f7919344e607b6a3a31c Description: Telepathy logger service - utility library Multi-Arch: same Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 2cfae4fc7dd895b9280f68c4b8dd2025 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libtelepathy-logger3-dbg Priority: extra Section: debug Installed-Size: 333 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-logger Version: 0.8.0-3 Replaces: libtelepathy-logger1-dbg, libtelepathy-logger2-dbg (= 0.6.0-1) Depends: libtelepathy-logger3 (= 0.8.0-3) Breaks: libtelepathy-logger2-dbg (= 0.6.0-1) Filename: pool/main/t/telepathy-logger/libtelepathy-logger3-dbg_0.8.0-3_amd64.deb Size: 239714 MD5sum: ab0e74ca2da2cc24af59118270906f44 SHA1: e3eaf3913a9a861bd2b4c95403abd4580b845011 SHA256: b61934bd8d3ddb1564bc89881f42366b80c9b9c1ad7d0bd30b552dbb9efa1587 Description: Telepathy logger service -- debug symbols Multi-Arch: same Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 7a74f634d7008640b32af72d23d34000 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtemplate-perl Priority: optional Section: perl Installed-Size: 1490 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Mako Hill Architecture: amd64 Version: 2.24-1.1 Provides: templatetoolkit-perl Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4), libappconfig-perl (>= 1.56) Suggests: libtemplate-perl-doc, libtemplate-plugin-gd-perl, libtemplate-plugin-xml-perl Filename: pool/main/libt/libtemplate-perl/libtemplate-perl_2.24-1.1_amd64.deb Size: 626586 MD5sum: 643eedcb738c872e39483fe0bec6f378 SHA1: fc61d77a493eedf0d8663e14966d1a707eed2629 SHA256: 82385156abfde2f741f267dcfc1e4837f129da7e97b18214fb4be725271d280d Description: the "Template Toolkit" template processing system in perl Homepage: http://search.cpan.org/~abw/Template-Toolkit/ Description-md5: 667adb8a5246151994c9d7e9e7dfd49e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtemplate-perl-doc Priority: optional Section: perl Installed-Size: 4985 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Mako Hill Architecture: all Source: libtemplate-perl Version: 2.24-1.1 Filename: pool/main/libt/libtemplate-perl/libtemplate-perl-doc_2.24-1.1_all.deb Size: 1134240 MD5sum: 0b4ef1e15ecbf7eb7e9cce9a0b5a9ec7 SHA1: 71bc7f062c0b3dab7d87d2c9e04aee224f75e68c SHA256: bb19a04ef9a42098517001830b3fe427e58bb13f6d788d08cfee57fe99d98342 Description: documentation for libtemplate-perl (template toolkit) Enhances: libtemplate-perl Homepage: http://search.cpan.org/~abw/Template-Toolkit/ Description-md5: 7977c1281809ab6e6dd2028f8addabe9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libterm-readkey-perl Priority: optional Section: perl Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 2.31-1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.15) Filename: pool/main/libt/libterm-readkey-perl/libterm-readkey-perl_2.31-1_amd64.deb Size: 27364 MD5sum: c68d9e65673823e4d60d0029cc26ea89 SHA1: 93263fc8b2819eff884523e6fa9460bc58b8caa6 SHA256: 25299aab2461e1750f26662ac77b0382085439dd48cb82261ec4aca029edeea2 Description: perl module for simple terminal control Homepage: https://metacpan.org/release/TermReadKey/ Description-md5: 6180fb9eb6d5cbd38176d9b822391b98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libterm-size-perl Priority: optional Section: perl Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.207-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libt/libterm-size-perl/libterm-size-perl_0.207-1build1_amd64.deb Size: 11068 MD5sum: 0f4c2b7699fd8580ef0edbd1b24ea0af SHA1: ffeb5b1bc0c2fca6c79b56f48cd3097f96f1553f SHA256: 05e848db3093d859e1ce1bdeef49467e06e3312060aaf7f4c76ae4c0171163c3 Description: Perl extension for retrieving terminal size Homepage: http://search.cpan.org/dist/Term-Size/ Description-md5: cacecec0c2115a65ee6450a58a1be0d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libterm-ui-perl Priority: important Section: perl Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.42-1 Depends: perl, liblog-message-simple-perl | perl (<< 5.17) Filename: pool/main/libt/libterm-ui-perl/libterm-ui-perl_0.42-1_all.deb Size: 18272 MD5sum: 10524c827464c5b829e32a37df4fb99c SHA1: f2c5975077afee4c7aef4ed668722aa9d1f1cfcd SHA256: b539958015d8cdc29b124d8073dcb450fc7fa99436b69038b480a5547a75755a Description: Term::ReadLine UI made easy Homepage: https://metacpan.org/release/Term-UI/ Description-md5: a1604b835be35aeb53e69ee2a1104119 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtest-checkdeps-perl Priority: optional Section: perl Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.010-1 Depends: perl (>= 5.14) | libcpan-meta-perl (>= 2.120920), libcpan-meta-check-perl (>= 0.007), perl (>= 5.14) | libmodule-metatadata-perl, perl Filename: pool/main/libt/libtest-checkdeps-perl/libtest-checkdeps-perl_0.010-1_all.deb Size: 7516 MD5sum: ad99c7090071387d7e04f6f919a1ec42 SHA1: a7cc4e8779739245642ac7e48f46b36449405157 SHA256: e270cbdf928cbb9f35395bce96159cafd84f644825000281c80849653a0dd9dd Description: check for presence of dependencies Homepage: http://search.cpan.org/dist/Test-CheckDeps/ Description-md5: b92a93274e18a02855fd7f1b1339769b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-cpan-meta-perl Priority: optional Section: perl Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.23-1 Depends: perl Filename: pool/main/libt/libtest-cpan-meta-perl/libtest-cpan-meta-perl_0.23-1_all.deb Size: 22368 MD5sum: de83413f7a7f022ff65fd931be942cf3 SHA1: 222e4c9e3fe0aef2b51ae371ac70a9e1bd07d79c SHA256: bb5d7e73bb7b154c8098f50754b15128b1361375ca9a6f72a44dfe3387406bf0 Description: test module to validate package metadata for CPAN Homepage: https://metacpan.org/release/Test-CPAN-Meta/ Description-md5: b468749c53ffff0e94ee29a24ce69923 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-deep-perl Priority: optional Section: perl Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.112-1 Depends: perl Filename: pool/main/libt/libtest-deep-perl/libtest-deep-perl_0.112-1_all.deb Size: 39232 MD5sum: 177fdc1bd1ff1f159bddd8292e8a1625 SHA1: e7e74adc004e5a43c533db0628baab15a37cbb02 SHA256: 5924ea36739bc61ac64f42e25f7b737aa18828f3cbcfed6d584fb0c1b8e1a2b0 Description: Perl module for extremely flexible deep comparisons Homepage: https://metacpan.org/release/Test-Deep/ Description-md5: 73cd5da785d054447b6e60a9c9aa4413 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-differences-perl Priority: optional Section: perl Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.61-1 Depends: perl (>= 5.13.0), libtext-diff-perl Filename: pool/main/libt/libtest-differences-perl/libtest-differences-perl_0.61-1_all.deb Size: 17234 MD5sum: c760f5c70d305269b27160e95b6d7550 SHA1: feaa1856e796b316c762565e12ae5867d612882d SHA256: 4a52d3d719d041f1bd75e293e01867099d6d24760691c58f454cff811e7fb738 Description: Perl module to test string and data structure differences Homepage: http://search.cpan.org/dist/Test-Differences/ Description-md5: a8c6988b57ccec8ea3e432b94e0d4ffa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-exception-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.32-1 Depends: perl, libsub-uplevel-perl Filename: pool/main/libt/libtest-exception-perl/libtest-exception-perl_0.32-1_all.deb Size: 15976 MD5sum: 21b28e2bd046fd0189715bdb99a911fa SHA1: 4b4689c45a8cf314a90beead1a650778814d936f SHA256: 0079144ed8294f36748e4ebc1d238b3e4b4a0c09f98304efb65a640335549db0 Description: module for testing exception-based code Homepage: https://metacpan.org/release/Test-Exception/ Description-md5: 86b2fffa95f12ffe1616dcc8453427d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-failwarnings-perl Priority: optional Section: perl Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.7-1 Depends: perl Filename: pool/main/libt/libtest-failwarnings-perl/libtest-failwarnings-perl_0.7-1_all.deb Size: 8476 MD5sum: 1c30d92149b2ac28d2236c422bde224b SHA1: 2e2d442a868f749a2e08112e3ef9d7dc083c9b48 SHA256: 18b505dc78af9242fc4f25af4cfc9654119eac08cd7c06eb9cfb710de3b1b29b Description: module for adding test failures if warnings are caught Homepage: https://metacpan.org/release/Test-FailWarnings/ Description-md5: 77cd849f7a135f071326c16cd46989d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-fatal-perl Priority: optional Section: perl Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.012-1 Depends: perl, libtry-tiny-perl (>= 0.07) Filename: pool/main/libt/libtest-fatal-perl/libtest-fatal-perl_0.012-1_all.deb Size: 10250 MD5sum: 4bec224517bf424273353526b198b348 SHA1: fc5b27ae33e3be56a45d3424b9cad0fbb796d31e SHA256: 8abe5f276f272832d2446ba4a382e03931cbcb8080011b9bffb93ab838057e6f Description: module for testing code with exceptions Homepage: https://metacpan.org/release/Test-Fatal/ Description-md5: 663dcee23cc06f40e2690e989196ad5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-harness-perl Priority: optional Section: perl Installed-Size: 657 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 3.30-1 Depends: perl Filename: pool/main/libt/libtest-harness-perl/libtest-harness-perl_3.30-1_all.deb Size: 258450 MD5sum: d61fe04cb8a53cd9b6b904399e3bb6f1 SHA1: 88117a02d6801c11dd70234fc352581e4484a07a SHA256: d6b56bcd2fd5c41c3d27845337a52c0b37fbb6875ff7fa59566a7c5e0bfb0399 Description: module to run standard Perl test scripts with statistics Homepage: https://metacpan.org/release/Test-Harness/ Description-md5: 19d0b5f443f263f69b1183a94037b80f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-inter-perl Priority: optional Section: perl Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.05-1 Depends: perl Filename: pool/main/libt/libtest-inter-perl/libtest-inter-perl_1.05-1_all.deb Size: 38972 MD5sum: 35d31fd89f4bc8ddce8d261d9c8ecfee SHA1: fea364402bdef5b90cf64744f9e036f454d6ba19 SHA256: e492a65e144555143e62a2b8b14b5f91ce7a4ea40e5001d5b2672b582ff4f96c Description: framework for more readable interactive test scripts Homepage: https://metacpan.org/release/Test-Inter/ Description-md5: 8740cc6c23ab4b1a4d64796399480d0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-leaktrace-perl Priority: optional Section: perl Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.14-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.14) Filename: pool/main/libt/libtest-leaktrace-perl/libtest-leaktrace-perl_0.14-1build3_amd64.deb Size: 22492 MD5sum: 699c716bf78321e33d0de2745a195371 SHA1: fd197f98c3142d5d66d78e61e211279768ade146 SHA256: a6320f1310d41754feb259d6dc9a6e8f2d7939df8f5d4514bcbeb00f3d07fdaf Description: Perl test module for tracing memory leaks Homepage: http://search.cpan.org/dist/Test-LeakTrace/ Description-md5: 44f7d84b31d908d4dea79804cb924f77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-memory-cycle-perl Priority: optional Section: perl Installed-Size: 68 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.04-1 Depends: perl (>= 5.6.0-16), libpadwalker-perl, libdevel-cycle-perl (>= 1.07) Filename: pool/main/libt/libtest-memory-cycle-perl/libtest-memory-cycle-perl_1.04-1_all.deb Size: 8072 MD5sum: d82500b2919c26e08ec9b998848c5ff0 SHA1: c2158c88c41bc3dc238766df034b7ed80296e816 SHA256: 68f0b46e569dee068835fbfb74c406a194fc4cda11e79c00bea60f6d80f7fc7a Description: Perl module that verifies code hasn't left circular references Homepage: http://search.cpan.org/dist/Test-Memory-Cycle/ Description-md5: bd48d7e7c3d475b47b6b0c0a042e08bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-minimumversion-perl Priority: optional Section: perl Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.101081-1 Depends: perl, libfile-find-rule-perl, libfile-find-rule-perl-perl, libperl-minimumversion-perl (>= 1.32), perl (>= 5.13.10) | libcpan-meta-perl Filename: pool/main/libt/libtest-minimumversion-perl/libtest-minimumversion-perl_0.101081-1_all.deb Size: 8440 MD5sum: 350add113903eb0d0e7ca05bf4e47d4b SHA1: f22e42db86bbb268d29e77a5ef2c69745b1b92e8 SHA256: 0e7327311c95c22757e5c49c49e13453d6eb89a71481bb826a8e54e4bbb33e30 Description: Perl test module to check the version of perl required Homepage: https://metacpan.org/release/Test-MinimumVersion/ Description-md5: ba9a973e639952fee904f13b188ef7c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-most-perl Priority: optional Section: perl Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.33-1 Depends: perl, libexception-class-perl, libtest-deep-perl, libtest-differences-perl (>= 0.61), libtest-exception-perl (>= 0.31), perl (>= 5.13.3) | libtest-harness-perl, libtest-warn-perl (>= 0.23) Filename: pool/main/libt/libtest-most-perl/libtest-most-perl_0.33-1_all.deb Size: 22876 MD5sum: 6e91b6354ac35c075644c5184ae435f4 SHA1: 3fc65aca1608df2510bb2b3aa5f0032f04f14057 SHA256: 6e99ad842d75554cb143f91c5870092605dae8e6e8df06d7425d83ec70f485a7 Description: Perl module with the most commonly needed test functions and features Homepage: https://metacpan.org/release/Test-Most/ Description-md5: 40af6726afd38f6494807dbcbfbaa73f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-nowarnings-perl Priority: optional Section: perl Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.04-1 Depends: perl (>= 5.10.1) Filename: pool/main/libt/libtest-nowarnings-perl/libtest-nowarnings-perl_1.04-1_all.deb Size: 11462 MD5sum: ffa26c3024c55f481f1e73e2008a2fbd SHA1: 770eca66e462dbd9ddc5e848e2b22b62725a39be SHA256: 68a7dcb7cfc7d614e654ac6163584e89d353a3779a55c681e27811e097d8c022 Description: module to make sure you didn't emit any warnings while testing Homepage: http://search.cpan.org/dist/Test-NoWarnings/ Description-md5: 73c551c227fb4e5ef1a4323629a4478e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-object-perl Priority: optional Section: perl Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.07-2 Depends: perl Filename: pool/main/libt/libtest-object-perl/libtest-object-perl_0.07-2_all.deb Size: 7842 MD5sum: 766568b334c2649001385ca67222644c SHA1: a1a49b43c665e9ca51c530f8698f94be88c7302b SHA256: 7c7d83b73e37889a505f0cc18620cb98f31b6748685341a6ccccdb7cedfb441f Description: Thoroughly testing objects via registered handlers Homepage: https://metacpan.org/release/Test-Object Description-md5: f13d616f0a99c00232a395ca01658573 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-output-perl Priority: optional Section: perl Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.02-1 Depends: perl, libcapture-tiny-perl (>= 0.17), libsub-exporter-perl Filename: pool/main/libt/libtest-output-perl/libtest-output-perl_1.02-1_all.deb Size: 13076 MD5sum: 79d7bb2ae5de02182604a1ed4d11416b SHA1: 9e985749e402e698a54026d864a974670596083b SHA256: bc5112f9180f6da1e500141ce090739f6afb8d936cfdbd2ad485644d4186979c Description: perl module to test stdout and stderr messages Homepage: https://metacpan.org/release/Test-Output/ Description-md5: 4b3c10fa26276e237a9ae5dcd1ecad22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-perl-critic-perl Priority: optional Section: perl Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.02-1 Depends: perl, libperl-critic-perl (>= 1.105) Filename: pool/main/libt/libtest-perl-critic-perl/libtest-perl-critic-perl_1.02-1_all.deb Size: 16628 MD5sum: 4aed440dbeb7e65409f6d3b8428981e5 SHA1: 13458f4849840344d086c0d9fb4fdbde3a7b6dc6 SHA256: c36e7d7d4d6c8792c20d695927d7356a01c57b7d428dbecfdff9367d386d998f Description: module to use Perl::Critic in test scripts Homepage: http://search.cpan.org/dist/Test-Perl-Critic/ Description-md5: f44c26cf50e4e4748610b16550770dd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-pod-coverage-perl Priority: optional Section: perl Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.08-4 Depends: perl, libpod-coverage-perl Recommends: libtest-pod-perl Filename: pool/main/libt/libtest-pod-coverage-perl/libtest-pod-coverage-perl_1.08-4_all.deb Size: 10530 MD5sum: 7def784250c64425e3a3d297dbeffc05 SHA1: 5424e17120c3061e52110fafb2c67ab78999f31f SHA256: 3433873401b3e25b8990f7074654b9407a7c6f15e8361f58fc27fe7c9c896224 Description: Check for pod coverage in your distribution Homepage: https://metacpan.org/release/Test-Pod-Coverage/ Description-md5: db1ff4d31ce64c8535371572bdb66428 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-pod-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.48-1 Depends: perl, libio-stringy-perl Filename: pool/main/libt/libtest-pod-perl/libtest-pod-perl_1.48-1_all.deb Size: 10724 MD5sum: 7d520b537026398a284e84125a37f668 SHA1: 08df3a2e3eccf188f50b78ddf23c62bca49e2bce SHA256: fa856ab9a61bbfe9c0f3e0257ee97d6b54f751e699d094197b96c1b661d9afe9 Description: module to test for POD errors Homepage: https://metacpan.org/release/Test-Pod/ Description-md5: 6c5d646eddb2779b4d2bc7a579d696d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-requires-perl Priority: optional Section: perl Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.07-1 Depends: perl Filename: pool/main/libt/libtest-requires-perl/libtest-requires-perl_0.07-1_all.deb Size: 6940 MD5sum: 9d0bebea7682b15d51b95a27c919b56f SHA1: aee379f45bb15ed10f5e9d875860811067766d05 SHA256: 6fc487550b6b2480ea7967302a8e1eceb50bdd350884723f0384e00e245674fa Description: utility module for tests to check whether modules are available Homepage: https://metacpan.org/release/Test-Requires/ Description-md5: 56c1024014b7e7a023b627711a2815bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-script-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.07-2 Depends: perl, libipc-run3-perl, libprobe-perl-perl Filename: pool/main/libt/libtest-script-perl/libtest-script-perl_1.07-2_all.deb Size: 8122 MD5sum: 47c52ebadb49f70f57ea90ce877b6c3f SHA1: 67c5efb4ca4656cdb3cb07984c0ccaf3bc5c1251 SHA256: fcaa5662635daa1a43b2b3d2f90b28dc643c4d089ae83f609ffdb6816ff0cbfe Description: Perl test module for scripts Homepage: http://search.cpan.org/dist/Test-Script/ Description-md5: bbdb25e7172043f1175ad3d8a9aeea86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-simple-perl Priority: optional Section: perl Installed-Size: 283 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.001002-1 Depends: perl Filename: pool/main/libt/libtest-simple-perl/libtest-simple-perl_1.001002-1_all.deb Size: 106672 MD5sum: 16801e868e17a01c3f02079cc5a5ce2d SHA1: 4e1519f58666d2a042c45705363c5205a326ec8e SHA256: 17ef847629e5889bcbce2260e58f88b20b9453949f56d7d99d1a769a9b328dfa Description: set of basic utilities for writing tests in Perl Homepage: http://github.com/schwern/test-more/ Description-md5: f67a3b225962298190eef6e2bef186a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-spelling-perl Priority: optional Section: perl Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.19-2 Depends: perl, libipc-run3-perl (>= 0.044), libpod-spell-perl Recommends: spell | aspell | ispell | hunspell Filename: pool/main/libt/libtest-spelling-perl/libtest-spelling-perl_0.19-2_all.deb Size: 13242 MD5sum: 99ed63e9c9308e904345804137a62f9d SHA1: 31a64fa196695ccbc06b88e6bc437a5047ed24c9 SHA256: d721083e5fab9fd6c6381ac457ca28b79b397b040e0c441a75d85786018c8ffd Description: Perl module for spellchecking pod formatted text Homepage: https://metacpan.org/release/Test-Spelling/ Description-md5: 377937f9cfa3207a1cede619d04f9764 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-strict-perl Priority: optional Section: perl Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.22-1 Depends: perl, libdevel-cover-perl Filename: pool/main/libt/libtest-strict-perl/libtest-strict-perl_0.22-1_all.deb Size: 13382 MD5sum: 98cb46ade1921793657a06b08cdde3b0 SHA1: 3b200e0540f0b6c00a75d929403c886fdba8f437 SHA256: 4632d2b6ea33ed0dcec88755e32e8cc96067a19b80325ac7ea5ed4240a67e509 Description: test module for checking the syntax of use strict and test coverage Homepage: https://metacpan.org/release/Test-Strict/ Description-md5: 6be5adbf6c1ac10eff20dd7f0d8527a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-subcalls-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.09-2 Depends: perl, libhook-lexwrap-perl (>= 0.20) Filename: pool/main/libt/libtest-subcalls-perl/libtest-subcalls-perl_1.09-2_all.deb Size: 7764 MD5sum: fc04add26c8b64f6036ff56785be1481 SHA1: bd2791269db002dc648d93777116393a6d4a4f41 SHA256: f76601b6ca0bb2d2b9170a33fc25722e044e4e14393f794239080c4214d7a851 Description: Perl module to count subroutine calls Homepage: http://search.cpan.org/dist/Test-SubCalls/ Description-md5: e584d7fa203d5cb7a11171f5dd68dd14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-synopsis-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.06+ds-1 Depends: perl Filename: pool/main/libt/libtest-synopsis-perl/libtest-synopsis-perl_0.06+ds-1_all.deb Size: 7838 MD5sum: d46b2d13f93f87e2ae59ba1e634d9984 SHA1: 935a73150db24128e6cdccad38882aaf555f8dde SHA256: 13f7811763fa8ea50a062bbecd160bc4ab37edcbbdf3b500829068978e5fa1b9 Description: Perl module to test SYNOPSIS code in PODs Homepage: http://search.cpan.org/dist/Test-Synopsis/ Description-md5: c012198048183ab89ee79b78a9e690e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-taint-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.06-1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libt/libtest-taint-perl/libtest-taint-perl_1.06-1_amd64.deb Size: 12112 MD5sum: 3f20f273c56b222e0d32688c121afe78 SHA1: d68fd8bcf573fceeb3589c1d6934224963f9c20b SHA256: 3fa5ae33a4290766b70c0cc7d5219ce0c96c612fa60a7eb819b857ff9b6cee8f Description: Module to test taintedness Homepage: https://metacpan.org/release/Test-Taint/ Description-md5: 0e2bb932059cfe03c64c2916c6d37a98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-tester-perl Priority: optional Section: perl Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.109-1 Depends: perl Filename: pool/main/libt/libtest-tester-perl/libtest-tester-perl_0.109-1_all.deb Size: 23606 MD5sum: 9be6f9c4287d4314c52866fcc384d8ab SHA1: 68e4bdd0c605295f477a499d7758d1fea256325f SHA256: ab62dc875bc803406f690e116339548ee9e5a36fa1d4e9dd1cf381ff10afad4d Description: module for testing test Perl modules built with Test::Builder Homepage: https://metacpan.org/release/Test-Tester/ Description-md5: b9a4f9560a3c9c804b5b34e028b74a4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-use-ok-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.11-1 Depends: perl Filename: pool/main/libt/libtest-use-ok-perl/libtest-use-ok-perl_0.11-1_all.deb Size: 9956 MD5sum: 05f52684bab25b5a399555192bc3c5b8 SHA1: 929597406cbc3bed4a14001342b3d7db526fcadc SHA256: d043785565b7e6cf0e74386f18f54d554faa634c0125ad44fafb6e7c48e65f01 Description: Module to test if a Perl module loads ok Homepage: https://metacpan.org/release/Test-use-ok/ Description-md5: 8b9263e159f52df7fd94a990c48f2a5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-warn-perl Priority: optional Section: perl Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.24-1 Depends: perl, libsub-uplevel-perl, libtree-dagnode-perl Filename: pool/main/libt/libtest-warn-perl/libtest-warn-perl_0.24-1_all.deb Size: 14836 MD5sum: 8c1c80b128abbe4857ec2f9f7d2d64ee SHA1: 45ff070799d9cee1bf95e4c0872af15790c67fce SHA256: 5d2e53ebdd8f6dcca197ee89fa70be529ad10dd895f22f0c5b697ee0c0cd0659 Description: test module for checking which warnings are generated Homepage: https://metacpan.org/release/Test-Warn/ Description-md5: cf13ca83a228cf486174fbf64d8b020c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-without-module-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.17-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/libt/libtest-without-module-perl/libtest-without-module-perl_0.17-1_all.deb Size: 8482 MD5sum: cae4e1a0468d758d0278613b863da117 SHA1: 408770ef204f8c860840e25637e4f4fff98fa5dc SHA256: 27b9ef5e5f48d6fe92687ad811cf49fdde52e4c342957f9859a93c66b24e9840 Description: test fallback behaviour in absence of modules Homepage: http://search.cpan.org/dist/Test-Without-Module/ Description-md5: 27f9905e0030ba6c7a0ac02fdd3410c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtevent-dev Priority: optional Section: libdevel Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: tevent Version: 0.9.19-1 Depends: libc6-dev, libtalloc-dev, libtevent0 (= 0.9.19-1) Filename: pool/main/t/tevent/libtevent-dev_0.9.19-1_amd64.deb Size: 47996 MD5sum: 49099382e4cd01c1b02b444c620b9c3f SHA1: 81711156481e1968b3bd1d0dc8b7702136898b59 SHA256: 3cb27858f04b5d64a0102f7faa46360be60f4cfa32899e2ad6de7e3bef426ec2 Description: talloc-based event loop library - development files Homepage: http://tevent.samba.org/ Description-md5: f6d45fd59d78e80f8d7aebde68faf048 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtevent0 Priority: optional Section: libs Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: tevent Version: 0.9.19-1 Depends: libc6 (>= 2.15), libtalloc2 (>= 2.0.4~git20101213) Pre-Depends: multiarch-support Filename: pool/main/t/tevent/libtevent0_0.9.19-1_amd64.deb Size: 27598 MD5sum: 335f924a2c1973ceaa21975954c5c316 SHA1: e505f9d6fe64fc2636e073b54ddb8a60b979159b SHA256: 5c8ca5c2acd376e6258b3f77e3f870edec3864fe5ec6de7fc5868f2904711f23 Description: talloc-based event loop library - shared library Multi-Arch: same Homepage: http://tevent.samba.org/ Description-md5: 3fbaa50e60efe0bf58f77af5c4759188 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtevent0-dbg Priority: extra Section: debug Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: tevent Version: 0.9.19-1 Depends: libtevent0 (= 0.9.19-1) Recommends: libc6-dbg, libtalloc2-dbg Filename: pool/main/t/tevent/libtevent0-dbg_0.9.19-1_amd64.deb Size: 57130 MD5sum: ddc6936e99b2e0c4a02431bca840353e SHA1: e9138f6de49e670f96fe49dc2559a52aac63d414 SHA256: 2134767351fae37c24f8db92f9e23f3f36c8b0f77ab412d34dfeac14d21dd3df Description: talloc-based event loop library - debug symbols Homepage: http://tevent.samba.org/ Description-md5: a92084ad490660f18e530e12b648b779 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-charwidth-perl Priority: important Section: perl Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 0.04-7build3 Depends: libc6 (>= 2.2.5), perl-base (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libt/libtext-charwidth-perl/libtext-charwidth-perl_0.04-7build3_amd64.deb Size: 10972 MD5sum: e527b35c65d5b6b999c3371cb0e09290 SHA1: bd3206889d8ccd53da4827304ee0d2dbe167ded8 SHA256: 3d999514eebd87b978cde1b0e625408272824931312b1ef701319d8e85c4ece0 Description: get display widths of characters on the terminal Homepage: http://search.cpan.org/search?module=Text::CharWidth Description-md5: 155ed3cc0b2affad276a4e9bc4bfcabc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtext-csv-perl Priority: optional Section: perl Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.32-1 Depends: perl Recommends: libtext-csv-xs-perl (>= 0.99) Filename: pool/main/libt/libtext-csv-perl/libtext-csv-perl_1.32-1_all.deb Size: 56520 MD5sum: 15b2d5361cb63c9bffa6679874cd40aa SHA1: 65a7a3293408a02e61e581cc3dda74c908ece10c SHA256: 54e82ab957bb9dfc657e78be0c782170b5426b2f84fbffdc06ad9d299685a45f Description: comma-separated values manipulator (using XS or PurePerl) Homepage: https://metacpan.org/release/Text-CSV/ Description-md5: da7d2d784c53107ba92fe5224c10af56 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-csv-xs-perl Priority: optional Section: perl Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.02-1 Depends: libc6 (>= 2.14), perl (>= 5.18.1-5), perlapi-5.18.1 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/libt/libtext-csv-xs-perl/libtext-csv-xs-perl_1.02-1_amd64.deb Size: 62146 MD5sum: aaf63e27383ff51dde2f1cac83d21c8b SHA1: cae1436680d15a4064916f451f48f8132274125b SHA256: 3a1b87bf70f21e17c6812aa8fcd1110071ff1a9949a4013aa156b1db8d7c976a Description: Perl C/XS module to process Comma-Separated Value files Enhances: libtext-csv-perl Homepage: https://metacpan.org/release/Text-CSV_XS/ Description-md5: d1ac3f3bfe33a139a37c7882eb4bf589 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-diff-perl Priority: optional Section: perl Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.41-1 Depends: perl, libalgorithm-diff-perl Filename: pool/main/libt/libtext-diff-perl/libtext-diff-perl_1.41-1_all.deb Size: 28264 MD5sum: 88bc36040e3f2f649f6b02bfa15f2e98 SHA1: a3f7124ba56ce9041dd299f2b245c1ec4a61a32b SHA256: 8c44e7cd5d8efb1e2ab59dd384fafa894dcd14d4aed57d35f483656ee068366b Description: Perl module to find differences in files and record sets Homepage: http://search.cpan.org/dist/Text-Diff/ Description-md5: 44a9cd0fd2893b3b20bd59305db8110c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-format-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.59-1 Depends: perl Filename: pool/main/libt/libtext-format-perl/libtext-format-perl_0.59-1_all.deb Size: 16332 MD5sum: aabef281d9a99d595122acffdb84b933 SHA1: 0dcbfe0bd0a5a27bb06d16b9ec95a811a5e14249 SHA256: 26732c42a893cecceaa8780f0e352a7b23186ea1f969a5dbcb07c00e30b29c72 Description: module for formatting plain text Homepage: https://metacpan.org/release/Text-Format/ Description-md5: e93811b1edfc9e00dfb2c6343395eeb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-glob-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.09-1 Depends: perl Filename: pool/main/libt/libtext-glob-perl/libtext-glob-perl_0.09-1_all.deb Size: 7880 MD5sum: eb496f1bf9cb229376b7d07836262b14 SHA1: 6389b51423524a24101d29ca0efe47fe773c78e4 SHA256: f14b31d436c4be2ed361e0deec8eacc919fc724db3ce4309c0570e1efaeba7f8 Description: Perl module for matching globbing patterns against text Homepage: http://search.cpan.org/dist/Text-Glob/ Description-md5: b5f7820a20a5f1206b686dbe29f43f1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-iconv-perl Priority: important Section: perl Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 1.7-5build2 Depends: libc6 (>= 2.2.5), perl-base (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libt/libtext-iconv-perl/libtext-iconv-perl_1.7-5build2_amd64.deb Size: 15330 MD5sum: dbd6eccb6694ef41b3c579a7a3e8d923 SHA1: 48ae4b0a66e4631cd451fab7b4ece81604655909 SHA256: 9b07f389a27c12154a8e0a3251bc4c8a93544ec16aacd5815cff1c4f18673bea Description: converts between character sets in Perl Homepage: http://search.cpan.org/search?module=Text::Iconv Description-md5: 5fbfac193b3adb16387cc839187b5622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtext-levenshtein-perl Priority: optional Section: perl Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.06~01-2 Depends: perl Filename: pool/main/libt/libtext-levenshtein-perl/libtext-levenshtein-perl_0.06~01-2_all.deb Size: 6476 MD5sum: 3979511d841849f69d1edec3d195d4b4 SHA1: ba74183431ba7594f31cc4a96f6941fc9ae1f048 SHA256: 7f6b054de422b6682ec9e295ffcd1c4c28d2a80f36089e66e37014cfdc60d045 Description: implementation of the Levenshtein edit distance Homepage: http://search.cpan.org/dist/Text-Levenshtein/ Description-md5: 417f17e6b82d2e5dac726ad03bf9628d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtext-soundex-perl Priority: important Section: perl Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 3.4-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.3) Filename: pool/main/libt/libtext-soundex-perl/libtext-soundex-perl_3.4-1build1_amd64.deb Size: 13450 MD5sum: d59f6a8f962d64d31b55804ffefb5169 SHA1: 031ee0a84ea47c1d0986fbf447f491c3dee4410e SHA256: 9ee2b3d7653aa154ce15b0858327a6b11cf30b2558607bff56f4d4aae479eafd Description: implementation of the soundex algorithm Homepage: https://metacpan.org/release/Text-Soundex/ Description-md5: 23561c30dfaab3a80255c9a772086ebf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtext-template-perl Priority: extra Section: perl Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.46-1 Depends: perl Filename: pool/main/libt/libtext-template-perl/libtext-template-perl_1.46-1_all.deb Size: 51522 MD5sum: 2962ec3396ff82cb85af9e4ed5ab66ae SHA1: b68e66eb872e205f80531e9a27c8ff562c490b2a SHA256: ff03e891b40736bfb3f21ffaddfba9dacfd686835ab29f2fe3f53a5b8f6a0dc2 Description: perl module to process text templates Homepage: https://metacpan.org/release/Text-Template/ Description-md5: b3ca341547c5c5849fe2759629341bfc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-unidecode-perl Priority: optional Section: perl Installed-Size: 808 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Dominic Hargreaves Architecture: all Version: 0.04-2 Depends: perl (>= 5.6.0-16) Filename: pool/main/libt/libtext-unidecode-perl/libtext-unidecode-perl_0.04-2_all.deb Size: 115168 MD5sum: 1be68182123836037b57a666b7f813e5 SHA1: ab882f1b194a286800a0da6cc70428eb79ec3f36 SHA256: 5f6285b1ece3da72e6d64cfbd0cd7b9ea28e243c1a2149a6d364949b053e18fe Description: Text::Unidecode -- US-ASCII transliterations of Unicode text Homepage: http://search.cpan.org/dist/Text-Unidecode/ Description-md5: ebd84afefc973c032d303a02e6e5b156 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-wrapi18n-perl Priority: important Section: perl Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: all Version: 0.06-7 Depends: libtext-charwidth-perl Filename: pool/main/libt/libtext-wrapi18n-perl/libtext-wrapi18n-perl_0.06-7_all.deb Size: 9010 MD5sum: f0a64e9a72da5e0199c725df9bc3673d SHA1: 8dceb8836b87eaa6d4c89bf8f50a8b95f59738bb SHA256: d57a4cb602c011ffa5fabbcdfd84e3a922654780e0fdee21735ad2aaf09edb0e Description: internationalized substitute of Text::Wrap Homepage: http://search.cpan.org/search?module=Text::WrapI18N Description-md5: 7cfec94f97ab774b331a41f9dbcb99e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtextwrap-dev Priority: optional Section: libdevel Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libtextwrap Version: 0.1-14 Replaces: libtextwrap1 (<< 0.1-2) Depends: libc6 (>= 2.3.4), libtextwrap1 (= 0.1-14) Filename: pool/main/libt/libtextwrap/libtextwrap-dev_0.1-14_amd64.deb Size: 15160 MD5sum: 3fbea530a8b0eff98eed38e7494f35a1 SHA1: bb37f4b5cd8c78c006c1edac2d867dd212c402bf SHA256: 2af4a7828d67017ec93c2cf05b5d1dda0400d54ed47c86ff160d136c1d3c8e5b Description: text-wrapping library with i18n - development files Homepage: http://libtextwrap.sourceforge.net/ Description-md5: c51099bbc17a2a3b0334e07f4cd5e364 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtextwrap1 Priority: optional Section: libs Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libtextwrap Version: 0.1-14 Depends: libc6 (>= 2.3) Pre-Depends: multiarch-support Filename: pool/main/libt/libtextwrap/libtextwrap1_0.1-14_amd64.deb Size: 10132 MD5sum: 63aac6b597db30b4086e80a38ab186f4 SHA1: 4fcecdf3c4e008a0e68c865a597aae877c5ce519 SHA256: e75d07d4048b7fe4a09853bb08a9f50f6266adec7d5697ba83a9416bec878514 Description: text-wrapping library with i18n - runtime Multi-Arch: same Homepage: http://libtextwrap.sourceforge.net/ Description-md5: 89e2d4016bf3c5a25b2992b7772fafc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libthai-data Priority: optional Section: libs Installed-Size: 607 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: libthai Version: 0.1.20-3 Breaks: libthai0 (<< 0.1.10) Filename: pool/main/libt/libthai/libthai-data_0.1.20-3_all.deb Size: 130120 MD5sum: 0b3dbe2bb0d89c13a9ad4410d0d896b9 SHA1: 28a5dced8df5a5709fd7ccec15857d030288247b SHA256: b9127319997761ff01f5cd052f3bd7b8eb8f83be1107044ca79a03b8f90fe07d Description: Data files for Thai language support library Multi-Arch: foreign Homepage: http://linux.thai.net/projects/libthai Description-md5: ece902c7963bad7a30e6f74590b9065a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libthai-dev Priority: optional Section: devel Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: amd64 Source: libthai Version: 0.1.20-3 Depends: libdatrie-dev, libthai0 (= 0.1.20-3) Suggests: libthai-doc Filename: pool/main/libt/libthai/libthai-dev_0.1.20-3_amd64.deb Size: 26144 MD5sum: 7ab5c25f0ce282c28865a669a2d3d887 SHA1: d0af15ac5c238f3beb879ae13526c6b5e89c9036 SHA256: b23e28a1d1eba2ea13ae8604199980a50fa13238dc19aafc5f6b4f18867a47e7 Description: Development files for Thai language support library Enhances: libkhtml5 Multi-Arch: same Homepage: http://linux.thai.net/projects/libthai Description-md5: be71b69519a6b40480d0c4a1bf3861a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libthai-doc Priority: optional Section: doc Installed-Size: 419 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: libthai Version: 0.1.20-3 Depends: lynx | www-browser Filename: pool/main/libt/libthai/libthai-doc_0.1.20-3_all.deb Size: 46972 MD5sum: 6af6d3ed1a5cdea98446baf6df4815e7 SHA1: 3e4c31b98e98469b0597d6e68865f2a79eae7a85 SHA256: 57c6cf5e9e02838ddafbf6aebc34693e835a8d45729d9226d984b8205115766e Description: Documentation files for Thai language support library Multi-Arch: foreign Homepage: http://linux.thai.net/projects/libthai Description-md5: bb7fdb15bf2c7041724766d093eda978 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libthai0 Priority: optional Section: libs Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: amd64 Source: libthai Version: 0.1.20-3 Depends: libthai-data (>= 0.1.10), libc6 (>= 2.14), libdatrie1 (>= 0.2.0) Pre-Depends: multiarch-support Filename: pool/main/libt/libthai/libthai0_0.1.20-3_amd64.deb Size: 16872 MD5sum: 44551e0b63b302dcc8192e5a4bf8bf78 SHA1: a75fe182b8ba18e7b6d060baff3196385ce4d997 SHA256: 3fbc3eaf1ab72be8c67e5c50a70a647b1b1ccc6fb944b7be7d12bc7f29b3590a Description: Thai language support library Enhances: libqtcore4, libqtgui4 Multi-Arch: same Homepage: http://linux.thai.net/projects/libthai Description-md5: 437ad20dc3747118df4e5d831f1aba2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtheora-dbg Priority: extra Section: debug Installed-Size: 730 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: amd64 Source: libtheora Version: 1.1.1+dfsg.1-3.2 Depends: libtheora0 (= 1.1.1+dfsg.1-3.2) Filename: pool/main/libt/libtheora/libtheora-dbg_1.1.1+dfsg.1-3.2_amd64.deb Size: 597424 MD5sum: 4235860afddfbe3ff77c73bc56acac41 SHA1: 49caf9834aba7b7c968763a2c6bcb36bf02279e8 SHA256: a57e2c034f55120215b2b87a5d5db9a3000be1b03943d613ccb3c21121a6754c Description: Theora Video Compression Codec (debug) Multi-Arch: same Homepage: http://www.theora.org/ Description-md5: 7530b2806368af08da9f95c6c0379639 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtheora-dev Priority: optional Section: libdevel Installed-Size: 1045 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: amd64 Source: libtheora Version: 1.1.1+dfsg.1-3.2 Depends: libtheora0 (= 1.1.1+dfsg.1-3.2), libogg-dev Filename: pool/main/libt/libtheora/libtheora-dev_1.1.1+dfsg.1-3.2_amd64.deb Size: 178314 MD5sum: eaf707c28972c911c53e5b8f30a4d1c4 SHA1: 6bd1629e76397f5db6191a404247c8395d4e9faf SHA256: fba8d6b1b2f8e6d47836d688bc0e758bfcbfbcf0e19b0e119c0c2659d6bce5a4 Description: Theora Video Compression Codec (development files) Multi-Arch: same Homepage: http://www.theora.org/ Description-md5: 833bd65af09fc429c70d46075084dea8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtheora-doc Priority: optional Section: doc Installed-Size: 1655 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: all Source: libtheora Version: 1.1.1+dfsg.1-3.2 Suggests: libtheora-dev Filename: pool/main/libt/libtheora/libtheora-doc_1.1.1+dfsg.1-3.2_all.deb Size: 878392 MD5sum: fb7fa4b5e979da375f6c74c0c501e862 SHA1: 3f7e33a00d0196ae2c5a4b778a12b765cb1fc25f SHA256: 2a9d5cf8346cd27c02c89579d2313f37af040ace5b2e430608bdb1bbe47b7d8e Description: Theora Video Compression Codec (documentation) Homepage: http://www.theora.org/ Description-md5: 9252368c5e6e1994b54787cdef1f34b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtheora0 Priority: optional Section: libs Installed-Size: 711 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: amd64 Source: libtheora Version: 1.1.1+dfsg.1-3.2 Depends: libc6 (>= 2.14), libogg0 (>= 1.1.0) Pre-Depends: multiarch-support Filename: pool/main/libt/libtheora/libtheora0_1.1.1+dfsg.1-3.2_amd64.deb Size: 163032 MD5sum: 06d17e2dc41d02761ae7277a57e0715b SHA1: da1880211aa1adf9470353c270a219c5635b9c5e SHA256: 410084d526f1ee3ee7b9f9a22bf1eb384fbe49ae8803a152a9152298d08ce499 Description: Theora Video Compression Codec Multi-Arch: same Homepage: http://www.theora.org/ Description-md5: 5374f3d8c17121bef7e1fc09bfee6646 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libthreadweaver4 Priority: optional Section: libs Installed-Size: 296 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.14), libqtcore4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libthreadweaver4_4.13.0-0ubuntu1_amd64.deb Size: 46700 MD5sum: 04d71177932187e655eadbdb7700c300 SHA1: 6b8e809a9078707e4e393edd7efd496a2c6df8c8 SHA256: c8abc29b28dc0202b4327ae3cb8a6b88e4a9e82af9cc5f3f74b75fe2ba0fb172 Description: ThreadWeaver Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: e0f3ffffa7401f49a422fac613b125fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libthumbnailer-dev Priority: optional Section: libdevel Installed-Size: 45 Maintainer: Ubuntu Core Developers Architecture: amd64 Source: thumbnailer Version: 1.1+14.04.20140401.1-0ubuntu1 Depends: gstreamer1.0-plugins-base, gstreamer1.0-plugins-good, libthumbnailer0 (= 1.1+14.04.20140401.1-0ubuntu1) Filename: pool/main/t/thumbnailer/libthumbnailer-dev_1.1+14.04.20140401.1-0ubuntu1_amd64.deb Size: 2718 MD5sum: 580c447e34b13638c0adc3ddff73e9f8 SHA1: ec0501f7026c8f1107fd073bf1e45f001342a008 SHA256: 1750e181017cd8abda8135d485dfd53b0826fe9757da0733f569855d3a177ed4 Description: development files for thumbnailer Multi-Arch: same Homepage: https://launchpad.net/thumbnailer Description-md5: 2198aaf3c8c01522809753597b0abaa8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libthumbnailer0 Priority: optional Section: libdevel Installed-Size: 113 Maintainer: Ubuntu Core Developers Architecture: amd64 Source: thumbnailer Version: 1.1+14.04.20140401.1-0ubuntu1 Depends: libc6 (>= 2.14), libexif12, libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.16.0), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libsoup2.4-1 (>= 2.4.0), libstdc++6 (>= 4.8), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/t/thumbnailer/libthumbnailer0_1.1+14.04.20140401.1-0ubuntu1_amd64.deb Size: 28478 MD5sum: 039010efd2fb79aef8ed9d8cd882bc6d SHA1: 619dfe25560ecc8ec6d209933b8f83318d9cd78f SHA256: 100a5e0cf9b86b161b2af5f4ea5ab3ecd061cddeb4ceeaa5685750db2cd935df Description: generate thumbnails from files Multi-Arch: same Homepage: https://launchpad.net/thumbnailer Description-md5: a79d83b026b23257f4e39877906e2a61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libtidy-0.99-0 Priority: optional Section: libs Installed-Size: 405 Maintainer: Ubuntu Developers Original-Maintainer: Jason Thomas Architecture: amd64 Source: tidy Version: 20091223cvs-1.2ubuntu1 Depends: libc6 (>= 2.14) Conflicts: libtidy0 Filename: pool/main/t/tidy/libtidy-0.99-0_20091223cvs-1.2ubuntu1_amd64.deb Size: 118554 MD5sum: 1e4a0ffdc6013b0552f116b213264486 SHA1: d8d96f8ea95191b84f5b86eb30dad0d81214754b SHA256: 1f7ce9cc45465e85380c6c8af08962d20721344c1735840efd0b0a6d32e0784a Description: HTML syntax checker and reformatter - library Homepage: http://tidy.sourceforge.net/ Description-md5: 208f4f5c33e9c2624a2fbeadc62e795d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, xubuntu-desktop, lubuntu-desktop Package: libtidy-dev Priority: optional Section: libdevel Installed-Size: 658 Maintainer: Ubuntu Developers Original-Maintainer: Jason Thomas Architecture: amd64 Source: tidy Version: 20091223cvs-1.2ubuntu1 Depends: libtidy-0.99-0 (= 20091223cvs-1.2ubuntu1) Filename: pool/main/t/tidy/libtidy-dev_20091223cvs-1.2ubuntu1_amd64.deb Size: 138026 MD5sum: d681ae2fc5068ee0566eac80f610f0dd SHA1: 1b30032ee4ccd3c471a015d9721dffa67f0c7f39 SHA256: a4b39eaea639bb09889c68cb199a24a5ee1dc365877c2c7908d6b6440c1a4816 Description: HTML syntax checker and reformatter - development Homepage: http://tidy.sourceforge.net/ Description-md5: 46ac8dcd2a7d0011df3e6e8d9d15a652 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtie-ixhash-perl Priority: optional Section: perl Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.23-1 Depends: perl Filename: pool/main/libt/libtie-ixhash-perl/libtie-ixhash-perl_1.23-1_all.deb Size: 11700 MD5sum: dec16ddaa9778d4ef29dff635e346d60 SHA1: da1f9d14e974a37658725c4b3161f5974199fa6e SHA256: a6f56523cf7ad252c705c9d14c36f4c3757c5be5837789e973b89fc4050c1dcd Description: Perl module to order associative arrays Homepage: https://metacpan.org/release/Tie-IxHash/ Description-md5: fc5e9c2c4a5cddbda8cc2ac7152aca9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop Package: libtiff-doc Priority: optional Section: doc Installed-Size: 1130 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: all Source: tiff Version: 4.0.3-7 Filename: pool/main/t/tiff/libtiff-doc_4.0.3-7_all.deb Size: 297176 MD5sum: 4b7912d58d8de47a7195d7eedc46b62d SHA1: 2708665450f8df4383dbb5a738e3bc21ad8fb87b SHA256: fa25c4c917ac2a7387d12fb830c23aedfac240b2fa36cc093e22251cdc5d2a5a Description: TIFF manipulation and conversion documentation Homepage: http://libtiff.maptools.org Description-md5: 418b6b38755ca1f970cc3282a8afc939 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtiff-tools Priority: optional Section: graphics Installed-Size: 733 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: tiff Version: 4.0.3-7 Depends: libc6 (>= 2.14), libtiff5 (>= 4.0.3) Suggests: libtiff-opengl Filename: pool/main/t/tiff/libtiff-tools_4.0.3-7_amd64.deb Size: 218662 MD5sum: a07dfd36a3162ee19e512b43006b4c54 SHA1: 5ccdc5938e71e6e4f3fda30a831253f67606907f SHA256: 750c880668b7244f082f21189d81189189b51ad09fa68f320ffe70fc291db598 Description: TIFF manipulation and conversion tools Homepage: http://libtiff.maptools.org Description-md5: f333fccce3ca049190b80f117d3faa92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libtiff4-dev Priority: optional Section: libdevel Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: tiff Version: 4.0.3-7 Depends: libtiff5-dev (>> 4.0.3-6~) Filename: pool/main/t/tiff/libtiff4-dev_4.0.3-7_amd64.deb Size: 2352 MD5sum: 7e1c6222bb9e212fe2080a9eeb31d467 SHA1: 8c730e5c88b5f8358cdd3049e0bb1c6fa6e93324 SHA256: 3d64878f1d415e5d3470c42ac01cf791535c1bf06e1885a4e3ed4a499760305e Description: Tag Image File Format library (TIFF), transitional package Multi-Arch: same Homepage: http://libtiff.maptools.org Description-md5: 4e51ec89f226c5f04e74375fad277103 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtiff5 Priority: optional Section: libs Installed-Size: 577 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: tiff Version: 4.0.3-7 Depends: libc6 (>= 2.14), libjbig0 (>= 2.0), libjpeg8 (>= 8c), liblzma5 (>= 5.1.1alpha+20120614), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/t/tiff/libtiff5_4.0.3-7_amd64.deb Size: 141856 MD5sum: a652f288bb8b1ae7eda63e615b8d0741 SHA1: d0145b86978509e51311fc1bfaa83ba1e223c6b4 SHA256: f4090ede54ac9a9796c872b6aec3ac7a69dd0f251eb5923b12f081d49134b2b3 Description: Tag Image File Format (TIFF) library Multi-Arch: same Homepage: http://libtiff.maptools.org Description-md5: bdf182da5cc17db1c9eb4ccb03647efc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtiff5-alt-dev Priority: optional Section: libdevel Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: tiff Version: 4.0.3-7 Depends: libtiff5-dev (>> 4.0.3-6~) Filename: pool/main/t/tiff/libtiff5-alt-dev_4.0.3-7_amd64.deb Size: 2358 MD5sum: 445f0c695a4a1c857b1edc4edd794db3 SHA1: ccf49c9f606922c4301e0006458cd4b61947fd30 SHA256: ec1f33919c18a08b4708b238b26535f44d0b909ae944068abc33968ab63f0208 Description: Tag Image File Format library (TIFF), transitional package Multi-Arch: same Homepage: http://libtiff.maptools.org Description-md5: 4c4118bc686a56fc86e445039f92abe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtiff5-dev Priority: optional Section: libdevel Installed-Size: 1004 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: tiff Version: 4.0.3-7 Replaces: libtiff4-dev (<< 4.0.3-6~), libtiff5-alt-dev (<< 4.0.3-6~) Provides: libtiff-dev Depends: libtiff5 (= 4.0.3-7), libtiffxx5 (= 4.0.3-7), libc6-dev | libc-dev, zlib1g-dev, libjpeg-dev, libjbig-dev, liblzma-dev Conflicts: libtiff4-dev (<< 4.0.3-6~), libtiff5-alt-dev (<< 4.0.3-6~) Filename: pool/main/t/tiff/libtiff5-dev_4.0.3-7_amd64.deb Size: 262686 MD5sum: 29717b5a3246d9e6b00756d0d7b6d701 SHA1: 72ee09cd8ee41767929bbc7cad55ee97155823d8 SHA256: 1da06310e21fb7ebc2f6df1d55cb2fc87b90c8f3046e34b302b93729fd8ccc53 Description: Tag Image File Format library (TIFF), development files Multi-Arch: same Homepage: http://libtiff.maptools.org Description-md5: 9da8bcdaa4c04ca6ee4ae233236c1927 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtiffxx5 Priority: optional Section: libs Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Source: tiff Version: 4.0.3-7 Depends: libc6 (>= 2.2.5), libstdc++6 (>= 4.2.1), libtiff5 (>= 4.0.3) Pre-Depends: multiarch-support Filename: pool/main/t/tiff/libtiffxx5_4.0.3-7_amd64.deb Size: 5630 MD5sum: 88e8eaf769844030b6269d93fe108d1e SHA1: 416db1192023997b55f31a6ca43d3495ae8bc450 SHA256: 0beb66b13fba23c21fef412e3e9396b9c8086fe75c20fbe8fdb0ded9d6101961 Description: Tag Image File Format (TIFF) library -- C++ interface Multi-Arch: same Homepage: http://libtiff.maptools.org Description-md5: 3947dc613cbd7efbe601b6c89e20c44f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtime-modules-perl Priority: optional Section: perl Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2011.0517-1 Depends: perl Filename: pool/main/libt/libtime-modules-perl/libtime-modules-perl_2011.0517-1_all.deb Size: 34654 MD5sum: 471a121af5c182b1105975fb8bd9146f SHA1: 0101223173b2faffe7c4794e2fe37eaa56cb2bd8 SHA256: b502a4864f089c760d8a8ced0aa4cbde85046e23e7bdd3c70e4b0563d2046807 Description: collection of Perl modules for time/date manipulation Homepage: http://search.cpan.org/dist/Time-modules/ Description-md5: e682e41be7b8a3b478a378e0adcce4e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtimedate-perl Priority: optional Section: perl Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.3000-1 Replaces: timedate Provides: timedate Depends: perl Breaks: timedate Filename: pool/main/libt/libtimedate-perl/libtimedate-perl_2.3000-1_all.deb Size: 37174 MD5sum: fb818d635c2029ebabe4336b1350f283 SHA1: b8f7fd27f3fa74b61e0ca2b3441618bc94bc8975 SHA256: 153481e7fb5e46873fa1d22f0f9cdbf92ccdab0fbc980ceaa373a784d592b12a Description: collection of modules to manipulate date/time information Homepage: https://metacpan.org/release/TimeDate/ Description-md5: e4e687bd12e2ca4a437edd010bfd8633 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtimezonemap1 Priority: optional Section: libs Installed-Size: 4249 Maintainer: Ubuntu Developers Architecture: amd64 Source: libtimezonemap Version: 0.4.1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.10), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.1.4), libjson-glib-1.0-0 (>= 0.12.0) Filename: pool/main/libt/libtimezonemap/libtimezonemap1_0.4.1_amd64.deb Size: 1524852 MD5sum: 27c6d88d650b43df048299cc6bb4acc3 SHA1: e11d0200b1ecf3ce67b615ec32edb204bb8461b8 SHA256: e4b6e71e994d9cc0b79db4521deef63ff4ed160e0c9382b1031b429bac7bdeb4 Description: GTK+3 timezone map widget Description-md5: 68bf660fca1f57fed3f2f66e19a091a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libtimezonemap1-dev Priority: optional Section: libdevel Installed-Size: 71 Maintainer: Ubuntu Developers Architecture: amd64 Source: libtimezonemap Version: 0.4.1 Replaces: gir1.2-timezonemap-1.0 (<< 0.3) Depends: libtimezonemap1 (= 0.4.1), libglib2.0-dev (>= 2.25.0), libgtk-3-dev (>= 3.1.4), libjson-glib-dev Breaks: gir1.2-timezonemap-1.0 (<< 0.3) Filename: pool/main/libt/libtimezonemap/libtimezonemap1-dev_0.4.1_amd64.deb Size: 5116 MD5sum: cc18a9cbbab03edfb7254412f626fc6e SHA1: 98a456f5cb372797081cd71dbab66d40d6227bb6 SHA256: a59061fbed2aa5f8d42b1641650b28e84599ce554987562915bc65d1b6680432 Description: GTK+3 timezone map widget - development files Description-md5: e9452a2add044380ccdd472c39751e74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtinfo-dev Priority: optional Section: libdevel Installed-Size: 413 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: libncurses5-dev (<< 5.9-3) Depends: libtinfo5 (= 5.9+20140118-1ubuntu1) Breaks: binutils-gold (<< 2.21.53.20110910) Filename: pool/main/n/ncurses/libtinfo-dev_5.9+20140118-1ubuntu1_amd64.deb Size: 76308 MD5sum: 62a3cf7b8d2ffd07365b8c40a06ee101 SHA1: 274a424bb5064eceab1da96fae5cb95d8879f3a7 SHA256: 80014537547e3b321e0e6d6770ae60eeb9ef4848de18ee5f13b75de7a79fd830 Description: developer's library for the low-level terminfo library Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: 9b28f3e754af5528e34809ef3110fdc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtinfo5 Priority: required Section: libs Installed-Size: 471 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: libncurses5 (<< 5.9-3) Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Breaks: dialog (<< 1.2-20130523) Filename: pool/main/n/ncurses/libtinfo5_5.9+20140118-1ubuntu1_amd64.deb Size: 74960 MD5sum: 72a3233b08faf65664a6235b05924f38 SHA1: a694b4d2898ad9955a6a4f17523da5a99c71964c SHA256: 46af44d6a36fae9d1cc914a503c019cbea0ded17e71cebdc26e272b2428f5f90 Description: shared low-level terminfo library for terminal handling Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: f681846d99e5156a0882bb53c35d3244 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtinfo5-dbg Priority: extra Section: debug Installed-Size: 3197 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: libncurses5-dbg (<< 5.9+20130608) Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libtinfo-dev (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15) Breaks: libncurses5-dbg (<< 5.9-3) Filename: pool/main/n/ncurses/libtinfo5-dbg_5.9+20140118-1ubuntu1_amd64.deb Size: 478950 MD5sum: 9a8f2df05b97ee210da153a465585be5 SHA1: ad0648f6a42eb4e08d2e82e6bbc2cf5a33ee1f71 SHA256: 8826e6c2fc94f22ad0f3415df63fc6a2ded46395e2b0332112e67f30ecf90501 Description: debugging/profiling library for the low-level terminfo library Homepage: http://invisible-island.net/ncurses/ Description-md5: cca02aa911a3b2e5b29be04f528843e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtirpc-dev Priority: extra Section: libdevel Installed-Size: 623 Maintainer: Ubuntu Developers Original-Maintainer: Steinar H. Gunderson Architecture: amd64 Source: libtirpc Version: 0.2.2-5ubuntu2 Depends: libtirpc1 (= 0.2.2-5ubuntu2) Filename: pool/main/libt/libtirpc/libtirpc-dev_0.2.2-5ubuntu2_amd64.deb Size: 144656 MD5sum: 1e180e8dcead476f4539435955ac9311 SHA1: 4055a817cfcd6bebea2203cea11273dedbda8f9f SHA256: 86f21ed5eadc9c78bb281c6cbb2f15c108ac61a6abdf1c93649a5b4a1f9cedd6 Description: transport-independent RPC library - development files Description-md5: 1e138bf6ab465b80331064d038e39cf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtirpc1 Priority: extra Section: libs Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Steinar H. Gunderson Architecture: amd64 Source: libtirpc Version: 0.2.2-5ubuntu2 Depends: libc6 (>= 2.16), libgssglue1 Pre-Depends: multiarch-support Filename: pool/main/libt/libtirpc/libtirpc1_0.2.2-5ubuntu2_amd64.deb Size: 71258 MD5sum: acc1c8e0345c8c3e53ba94a59a4729d8 SHA1: ab0fccef8126b8abc29ee352b7d3d7f010274e51 SHA256: b62994b82d4240a0692181452aefac86ac5a562693259b485dbf950d59dc75f3 Description: transport-independent RPC library Multi-Arch: same Description-md5: 604bfb6c9b5f2aed27c76dfa111bffcf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtk8.5 Priority: optional Section: libs Installed-Size: 2126 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: amd64 Source: tk8.5 Version: 8.5.15-2ubuntu3 Replaces: tk8.5 (<< 8.5.14-3), tk8.5-lib Provides: libtk Depends: libtcl8.5 (>= 8.5.14-3), libc6 (>= 2.14), libfontconfig1 (>= 2.9.0), libx11-6, libxft2 (>> 2.1.1), libxss1 Pre-Depends: multiarch-support Suggests: tk8.5 Conflicts: libtk-img (<< 1.2.5), tk40 (<= 4.0p3-2), tk8.5 (<< 8.5.14-3), tk8.5-lib Filename: pool/main/t/tk8.5/libtk8.5_8.5.15-2ubuntu3_amd64.deb Size: 641088 MD5sum: 3166bca46986c1680a6a521a6169330e SHA1: 068bf86401e89c63134d0fe5f67c5cb446cbb9be SHA256: b32405eaa2e0061601162c08a1c484c2ad6697f1b98a4bfe29e018f912780dfa Description: Tk toolkit for Tcl and X11 v8.5 - run-time files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: a9421646cf9100a89ac25f54621b5915 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-audio Package: libtk8.5-dbg Priority: extra Section: debug Installed-Size: 3231 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: amd64 Source: tk8.5 Version: 8.5.15-2ubuntu3 Depends: libtk8.5 (= 8.5.15-2ubuntu3) Filename: pool/main/t/tk8.5/libtk8.5-dbg_8.5.15-2ubuntu3_amd64.deb Size: 3111656 MD5sum: d010bf2099de77ba99de16f031ecad1a SHA1: 909f802c69bde32c9865b7b82c539fd7dd84ddb4 SHA256: 9c4647100423b3a6b3d1fa8ba37a542e43d05910a7e7caea945629be72516a98 Description: Symbol files for libtk8.5 Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 6d1dc795d17368fde0ea1ef9ec1a8407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtk8.6 Priority: optional Section: libs Installed-Size: 2240 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Source: tk8.6 Version: 8.6.1-3ubuntu2 Replaces: tk8.6 (<< 8.6.0-2), tk8.6-lib (<< 8.6.0-2) Provides: libtk Depends: libtcl8.6 (>= 8.6.0-2), libc6 (>= 2.14), libfontconfig1 (>= 2.9.0), libx11-6, libxft2 (>> 2.1.1), libxss1 Pre-Depends: multiarch-support Suggests: tk8.6 Conflicts: libtk-img (<< 1.2.5), tk40 (<= 4.0p3-2), tk8.6 (<< 8.6.0-2), tk8.6-lib (<< 8.6.0-2) Filename: pool/main/t/tk8.6/libtk8.6_8.6.1-3ubuntu2_amd64.deb Size: 689122 MD5sum: fb283a1a68617ce500832c052cddb467 SHA1: d188cfb7f9361eeeff719989672fe463770987e1 SHA256: a6c6d47b097742d676c17ef8398589eb5a5939d7ec82905ca0752c7b7e85a3fd Description: Tk toolkit for Tcl and X11 v8.6 - run-time files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 01d90661559e5ce16fbf055f91aff291 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtk8.6-dbg Priority: extra Section: debug Installed-Size: 3339 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Source: tk8.6 Version: 8.6.1-3ubuntu2 Depends: libtk8.6 (= 8.6.1-3ubuntu2) Filename: pool/main/t/tk8.6/libtk8.6-dbg_8.6.1-3ubuntu2_amd64.deb Size: 3225738 MD5sum: 298b9613717dd92337e5aa8345fe902c SHA1: 1964f1b1cf5afb3f31d4e96d5ab0be6ff4e9356c SHA256: 95ecf83233274647f9ba28ca9a358c970d8b6e112042a30f976f4856523a7006 Description: Symbol files for libtk8.6 Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: bed156af677ca855056197f2d86e1e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtokyocabinet-dbg Priority: extra Section: libs Installed-Size: 1538 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Frost Architecture: amd64 Source: tokyocabinet Version: 1.4.48-2 Depends: libtokyocabinet9 (= 1.4.48-2) Filename: pool/main/t/tokyocabinet/libtokyocabinet-dbg_1.4.48-2_amd64.deb Size: 1243830 MD5sum: f83708a1b0f52b36a03dc1356f5884bb SHA1: 7ca7c2aad8c0ac64427c7d8e86f7eae06aa2c3b4 SHA256: 04134265b35aea0ecd3abdb53cb02973d0b7b7923143c34178541eacce1c800f Description: Tokyo Cabinet Database Libraries [debug] Multi-Arch: same Homepage: http://fallabs.com/tokyocabinet/ Description-md5: 7b84e32e82b01845c0944122405579c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtokyocabinet-dev Priority: extra Section: libdevel Installed-Size: 1560 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Frost Architecture: amd64 Source: tokyocabinet Version: 1.4.48-2 Depends: libtokyocabinet9 (= 1.4.48-2) Filename: pool/main/t/tokyocabinet/libtokyocabinet-dev_1.4.48-2_amd64.deb Size: 425586 MD5sum: 5ccca1f3ba391ac39ecd84fc86a3c27e SHA1: 8fe46ce9d87668c51d01dfdbd315baab4598a412 SHA256: b6f8f82495f739bb05c73b5ba9d830b3da2acf8ff67d2d31b5f03b97566fb454 Description: Tokyo Cabinet Database Libraries [development] Homepage: http://fallabs.com/tokyocabinet/ Description-md5: 6d8c45df4abc2e249faf0e6e1731897c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtokyocabinet9 Priority: optional Section: libs Installed-Size: 616 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Frost Architecture: amd64 Source: tokyocabinet Version: 1.4.48-2 Depends: libbz2-1.0, libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/t/tokyocabinet/libtokyocabinet9_1.4.48-2_amd64.deb Size: 271852 MD5sum: 9d3dbd9ebf5505f36ca56246285ca786 SHA1: ca4ffff96dc46a50af77adef0ca20063c3ffe993 SHA256: 3410d2680ee9802d233ece8c5ec4b59a02d9f6b85b0e38d494ec8a431bf1bbff Description: Tokyo Cabinet Database Libraries [runtime] Multi-Arch: same Homepage: http://fallabs.com/tokyocabinet/ Description-md5: d03fbff99533a07c1e71b74aee3e94ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: libtomcat7-java Priority: optional Section: java Installed-Size: 4166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Depends: libecj-java, libcommons-pool-java, libcommons-dbcp-java, libservlet3.0-java (>= 7.0.52-1) Suggests: tomcat7 (>= 7.0.52-1) Conflicts: libtomcat6-java Filename: pool/main/t/tomcat7/libtomcat7-java_7.0.52-1_all.deb Size: 3646996 MD5sum: 3dc8ea0fd8474fa91fbab9ab6972cd26 SHA1: 7203cfe4d584a11fb372d3a260defb198c0ea4d5 SHA256: b66e13c3499833ef3034b7f747fa72b1f5a88eaa2b2dc488b0cbeef964effac5 Description: Servlet and JSP engine -- core libraries Homepage: http://tomcat.apache.org Description-md5: 7a2563c1a7c79379004bc6464d285af0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libtommath-dev Priority: extra Section: libdevel Installed-Size: 370 Maintainer: Ubuntu Developers Original-Maintainer: Joe Nahmias Architecture: amd64 Source: libtommath Version: 0.42.0-1build1 Depends: libtommath0 (= 0.42.0-1build1) Recommends: libtommath-docs Filename: pool/main/libt/libtommath/libtommath-dev_0.42.0-1build1_amd64.deb Size: 77176 MD5sum: b2a213265b7fa4f1ee9e0e00c5c1443c SHA1: c906bb24a13d44ae2d405bae935c9dbc42d99f2d SHA256: c166a624c7859611196bbd5288b164fb62c18a8480675fd816744aa9b29e0d55 Description: multiple-precision integer library [development files] Homepage: http://libtom.org/?page=features&whatfile=ltm Description-md5: 0fd88de1437119c6fd98ada3631675d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtommath-docs Priority: extra Section: doc Installed-Size: 1440 Maintainer: Ubuntu Developers Original-Maintainer: Joe Nahmias Architecture: all Source: libtommath Version: 0.42.0-1build1 Filename: pool/main/libt/libtommath/libtommath-docs_0.42.0-1build1_all.deb Size: 1437510 MD5sum: 97cb27cd96bc5f20aa392274b1afe023 SHA1: 45a92a4e8a62b97eced6fa774658c19f818fdd61 SHA256: c5bb96d171ab371af9aa79dcdc43615051195c66326aa41be15382a28f5b309d Description: multiple-precision integer library [documentation] Homepage: http://libtom.org/?page=features&whatfile=ltm Description-md5: 5066189ad5d6a5276aaadc5d513e4420 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtommath0 Priority: extra Section: libs Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Joe Nahmias Architecture: amd64 Source: libtommath Version: 0.42.0-1build1 Depends: libc6 (>= 2.3) Filename: pool/main/libt/libtommath/libtommath0_0.42.0-1build1_amd64.deb Size: 55554 MD5sum: c647ced8182f4bf8499ec1a9525e7d65 SHA1: 918a4f5b0fd8aa4faf939ea714e0466c1d3238f5 SHA256: 664885637ea36b3fdb4a3ae7a7dec48a6b3f5a4f93fb61288be47946a1e4d8b3 Description: multiple-precision integer library [runtime] Homepage: http://libtom.org/?page=features&whatfile=ltm Description-md5: 3cf62afb483238029a5473509dc51cb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtool Priority: optional Section: devel Installed-Size: 1426 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: amd64 Version: 2.4.2-1.7ubuntu1 Replaces: libtool-bin Depends: gcc | c-compiler, cpp, libc6-dev | libc-dev, file, autotools-dev Recommends: libltdl-dev Suggests: libtool-doc, autoconf (>> 2.50), automaken, gfortran | fortran95-compiler, gcj-jdk Conflicts: autoconf (<= 2.12), automake (<= 1.3), libtool-bin, libtool1.4 Filename: pool/main/libt/libtool/libtool_2.4.2-1.7ubuntu1_amd64.deb Size: 187970 MD5sum: ad1a939590767411f00d35319be8c9e0 SHA1: cdf5bed4a8d51682bdff133445ed770ed65f31f5 SHA256: 1ec393fa9648ef3230da120d0cbbe6df5d553a81abca80499e2173f3872d80a4 Description: Generic library support script Multi-Arch: foreign Homepage: http://www.gnu.org/software/libtool/ Description-md5: 40ea3da4a4ea75419ad95742898b3e52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtool-doc Priority: optional Section: doc Installed-Size: 1151 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: all Source: libtool Version: 2.4.2-1.7ubuntu1 Conflicts: libtool1.4-doc Filename: pool/main/libt/libtool/libtool-doc_2.4.2-1.7ubuntu1_all.deb Size: 264542 MD5sum: e518d379473ca75e64020286b82f1bae SHA1: 88e7e0025fb9e6f20a7d6e4ef774717899046d99 SHA256: 88265135645068ece502c9837a6c19b81c6ba29459d773312204512c5afd796a Description: Generic library support script Homepage: http://www.gnu.org/software/libtool/ Description-md5: 3d6c94ca27d83d22b2895343c3261363 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtotem-dev Priority: optional Section: libdevel Installed-Size: 422 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: totem Version: 3.10.1-1ubuntu4 Replaces: totem (<< 3.0.1-2) Depends: libtotem0 (= 3.10.1-1ubuntu4), gir1.2-totem-1.0 (= 3.10.1-1ubuntu4), libglib2.0-dev, libgtk-3-dev, libtotem-plparser-dev Breaks: totem (<< 3.0.1-2) Filename: pool/main/t/totem/libtotem-dev_3.10.1-1ubuntu4_amd64.deb Size: 13882 MD5sum: a0c14f03da368cc8d9379b8c44ac81cb SHA1: e2a9edb15401e28c3e7402fc935ff89eaa5c5776 SHA256: 92abcee53bbc521f7d1431b19841f70234bb1970341e905f8292d63691ea2a88 Description: Main library for the Totem media player - development files Homepage: http://www.gnome.org/projects/totem/ Description-md5: cbd1630a5c624a696bd62e8f0b2a7532 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtotem-pg-dev Priority: optional Section: libdevel Installed-Size: 474 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libtotem-pg5 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libtotem-pg-dev_2.3.3-1ubuntu1_amd64.deb Size: 65402 MD5sum: 2173ec7d73373bbf3dbb25c0fccc4fe2 SHA1: a1c97958b70d51f01cdc2d44b192669d5975d6b9 SHA256: c9c7e19b42612032b486c64e83aa3e1c5f5e9783f27dbbd61a18663b81c49e92 Description: Standards-based cluster framework, Totem devel files Description-md5: 303ee8a5d1a40db305e6def922eb8f3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtotem-pg5 Priority: optional Section: libs Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.14), libibverbs1 (>= 1.1.2), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libqb0, librdmacm1 (>= 1.0.16) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libtotem-pg5_2.3.3-1ubuntu1_amd64.deb Size: 59688 MD5sum: 0cd280ff669c3f0d5bac353dc0a81781 SHA1: 6fd01b47d16932002e678081d711c896e79eef98 SHA256: d94f69d653ed9f5a89fc82bfac4e2580fb874cc3e27f563514da210004d11968 Description: Standards-based cluster framework, Totem library Description-md5: 164ea2308745ca8156991d1e7b39c4bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtotem-plparser-dbg Priority: extra Section: libdevel Installed-Size: 527 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: totem-pl-parser Version: 3.10.2-0ubuntu1 Depends: libtotem-plparser18 (= 3.10.2-0ubuntu1) Filename: pool/main/t/totem-pl-parser/libtotem-plparser-dbg_3.10.2-0ubuntu1_amd64.deb Size: 113010 MD5sum: 71d4b7338ad4a43055c3763873ca471e SHA1: 9d4a9eeac6b0c4806419f0a31a0d627ed0d85ed0 SHA256: 8136eff9996f1d12bde93edfc1ed2902c5b5be65a3b67af8165e9b441419c73d Description: Totem Playlist Parser library - debugging symbols Description-md5: eddae4a89a8c6c09b73249625c695040 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtotem-plparser-dev Priority: optional Section: libdevel Installed-Size: 677 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: totem-pl-parser Version: 3.10.2-0ubuntu1 Replaces: libtotem-plparser10 Depends: libtotem-plparser18 (= 3.10.2-0ubuntu1), gir1.2-totem-plparser-1.0 (= 3.10.2-0ubuntu1), libglib2.0-dev, libxml2-dev, libgmime-2.6-dev, libarchive-dev Filename: pool/main/t/totem-pl-parser/libtotem-plparser-dev_3.10.2-0ubuntu1_amd64.deb Size: 78146 MD5sum: d1357b235d8faf7b4b2aaa4118320ece SHA1: 271162ad9e621e33e92afead903c4f9ad4a48a12 SHA256: dec8551d1d9ae969cd679201273f2d16d8c5074e5b5f5f5e886df3f009a890e8 Description: Totem Playlist Parser library - development files Description-md5: e297d53f3653c396ebb78c4a437482a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtotem-plparser18 Priority: optional Section: libs Installed-Size: 268 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: totem-pl-parser Version: 3.10.2-0ubuntu1 Replaces: libtotem-plparser10, libtotem-plparser12, libtotem-plparser17 Depends: libarchive13, libc6 (>= 2.8), libglib2.0-0 (>= 2.37.3), libgmime-2.6-0 (>= 2.6.4), libsoup2.4-1 (>= 2.30.0), libxml2 (>= 2.7.4) Filename: pool/main/t/totem-pl-parser/libtotem-plparser18_3.10.2-0ubuntu1_amd64.deb Size: 53424 MD5sum: 27cb4758819e3f9b0fd7a71b78536341 SHA1: 8d42501bdf5d2d4f3d210f7f383c1870c33a8673 SHA256: 6d8437f87fd2f80d14768806e40c3248ac790e0f14e630259ccb80ff38cbca29 Description: Totem Playlist Parser library - runtime files Description-md5: a254878bc64375f8733040011cc7dc29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtotem0 Priority: optional Section: video Installed-Size: 741 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: totem Version: 3.10.1-1ubuntu4 Replaces: totem (<< 3.0.1-1) Depends: libatk1.0-0 (>= 1.29.4), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libclutter-1.0-0 (>= 1.11.10), libclutter-gst-2.0-0 (>= 0.10.0), libclutter-gtk-1.0-0 (>= 0.91.8), libcogl15 (>= 1.15.8), libgdk-pixbuf2.0-0 (>= 2.22.0), libgirepository-1.0-1 (>= 0.9.2), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.5.2), libice6 (>= 1:1.0.0), libpeas-1.0-0 (>= 1.0.0), libsm6, libtotem-plparser18 (>= 3.10.0), libx11-6 Filename: pool/main/t/totem/libtotem0_3.10.1-1ubuntu4_amd64.deb Size: 168594 MD5sum: e2c4d194f5960636038af3cb8cec60ac SHA1: 171fddaed70270f3db15edf24c1eea3554a69c78 SHA256: f12e60e82e0c4241075d4e8630bf7fde36504c0f1fb4deee956c734d3987ec33 Description: Main library for the Totem media player Homepage: http://www.gnome.org/projects/totem/ Description-md5: 7d2aeb5ec1c18da8164341eae2c62153 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtransitioner2 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libtransitioner1, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libc6 (>= 2.4), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.16.0), libqb0 Conflicts: libtransitioner1, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libtransitioner2_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 13688 MD5sum: 96e879f6daed3a15ac6deb65e6696119 SHA1: 4080c84a229d155b251ba7491704e2ba68a4b244 SHA256: 34e18130ae167bddd4fb6196179e145018b4b107581167fa2a20752cde0b50df Description: Pacemaker libraries - transitioner Homepage: http://clusterlabs.org/ Description-md5: a43b49090be76a0116065825ae14238a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtransitioner2-dev Priority: optional Section: libdevel Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libtransitioner1-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libtransitioner2 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libtransitioner1-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libtransitioner2-dev_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 15354 MD5sum: 03bf9a6f5d80889b982107c065c5d045 SHA1: 38816fb568ccbe252271207d337812eea6fc64c2 SHA256: a1414780453c1224826a20afd1ec2cc3589b50cb036a65f8de70bd40de8b2b51 Description: Development file for pacemaker's transitioner library Homepage: http://clusterlabs.org/ Description-md5: 10d7a2c733c5b75c4ca941b7388adbbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtree-dagnode-perl Priority: optional Section: perl Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.17-1 Depends: perl, libfile-slurp-perl Filename: pool/main/libt/libtree-dagnode-perl/libtree-dagnode-perl_1.17-1_all.deb Size: 59612 MD5sum: 077ee3783f248f947bcd18cf58a39333 SHA1: e7803e84a63222893f9b3691d776c76cb1e7c167 SHA256: aee764d2b9b517687f8f3b5a16f38d7130100070692495965098a9565ef59824 Description: Perl (super)class for representing nodes in a tree Homepage: https://metacpan.org/release/Tree-DAG_Node/ Description-md5: ad34734ff2b960a0ef7c58c459cee35c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtry-tiny-perl Priority: optional Section: perl Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.19-1 Depends: perl Suggests: libsub-name-perl Filename: pool/main/libt/libtry-tiny-perl/libtry-tiny-perl_0.19-1_all.deb Size: 17618 MD5sum: e9e7443508b9abffc244c876c7baeb7f SHA1: c4a2819450c90179d574b15ad0a537dd30ec24da SHA256: 99a091c016f5c499a20b8d8ebb808d136e70262971f2a33ffafdaf3c2c44aec3 Description: module providing minimalistic try/catch Homepage: https://metacpan.org/release/Try-Tiny/ Description-md5: 9b29ef7a1f5585b00820bb4442c41971 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libtsan0 Priority: optional Section: libs Installed-Size: 323 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libtsan0_4.8.2-19ubuntu1_amd64.deb Size: 94676 MD5sum: 56dda44eb374e801bff0d684b060e4d0 SHA1: 984a4aa1f6686c16c4fa4ce8289c787d3708fa2b SHA256: 67d3dab9fae2e63fd2c9df57d2586f661817ddfae4691bd85e48039100555b7b Description: ThreadSanitizer -- a Valgrind-based detector of data races (runtime) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 750c144e4cc79bcf76c58f43c882ff70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 9m Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtsan0-dbg Priority: extra Section: debug Installed-Size: 1861 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libtsan0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libtsan0-dbg_4.8.2-19ubuntu1_amd64.deb Size: 403548 MD5sum: 35fecd2b5138e3b46715c67f041dc597 SHA1: 0b9f9dc57a5fbfd57388d66f46adff898b6db9ef SHA256: 6171f797f91f0ddf35fc4d87ad1644c919e974669a66e97913a0266b60b2b1c0 Description: ThreadSanitizer -- a Valgrind-based detector of data races (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 12e218524cfc4fca62857d3e660e0018 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtspi-dev Priority: optional Section: libdevel Installed-Size: 928 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: amd64 Source: trousers Version: 0.3.11.2-1 Depends: libtspi1 (= 0.3.11.2-1), libssl-dev Filename: pool/main/t/trousers/libtspi-dev_0.3.11.2-1_amd64.deb Size: 624994 MD5sum: d5df672fcb7190346cfd4e3c1fb8a9a9 SHA1: 44511893e4cd442754ef5722398bc6369eae4c01 SHA256: a20d26d88b54d5604835ce8b10425a138590a4a03d06da7e98804e1aef8d5d0d Description: open-source TCG Software Stack (development) Homepage: http://trousers.sourceforge.net/ Description-md5: 7151dc43aab94706e767892365045c17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtspi1 Priority: optional Section: libs Installed-Size: 490 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: amd64 Source: trousers Version: 0.3.11.2-1 Depends: libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/t/trousers/libtspi1_0.3.11.2-1_amd64.deb Size: 173276 MD5sum: 403c5a4b966451d7122c2eb2a058e8c5 SHA1: 3e0904e74860849a9ca7a34624f9f7c9463ce891 SHA256: ec22aae001678d6a35eccbdbaaf8b9a7d3c586972243c09fe5bbea52baa99cfe Description: open-source TCG Software Stack (library) Homepage: http://trousers.sourceforge.net/ Description-md5: b46c696c49355b278d5160ca11e77907 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtxc-dxtn-s2tc-dev Priority: extra Section: libdevel Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Lennart Weller Architecture: amd64 Source: s2tc Version: 0~git20131104-1.1 Provides: libtxc-dxtn-dev Depends: libtxc-dxtn-s2tc0 (= 0~git20131104-1.1) Conflicts: libtxc-dxtn-dev Filename: pool/main/s/s2tc/libtxc-dxtn-s2tc-dev_0~git20131104-1.1_amd64.deb Size: 2618 MD5sum: 7018cbb733f906dc167b73cc7ba582fc SHA1: ca756e98d229a5c7596f6e53e4527ece7854e5db SHA256: d4df9b5269532cf0bd0f61cb7cd2589fdf18765e15e9ecf9d96d30825f5b6fa7 Description: Development files for the S2TC library Homepage: https://github.com/divVerent/s2tc Description-md5: 2f127ebc896fee1a08e14088ae0ce711 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtxc-dxtn-s2tc0 Priority: extra Section: libs Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Lennart Weller Architecture: amd64 Source: s2tc Version: 0~git20131104-1.1 Provides: libtxc-dxtn0 Depends: libc6 (>= 2.3.4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Conflicts: libtxc-dxtn0 Filename: pool/main/s/s2tc/libtxc-dxtn-s2tc0_0~git20131104-1.1_amd64.deb Size: 51772 MD5sum: 4aca9162717cd9eb1e42f531217801f9 SHA1: d57f0d4b79bde6701518d72b9e5ee34867d4405f SHA256: 9408644960336515f53baf0101d3af7afdc9b28a3798422ec9f8069db3335a99 Description: Texture compression library for Mesa Multi-Arch: same Homepage: https://github.com/divVerent/s2tc Description-md5: 2f0fc78281cee90a4c5d960db96ed02a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libubuntu-application-api-mirclient1 Priority: optional Section: libs Installed-Size: 168 Maintainer: Ubuntu Developers Architecture: amd64 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.17), libdbus-cpp2 (>= 2.0.0+14.04.20140310), libgcc1 (>= 1:4.1.1), libhybris-common1, libmirclient7 (>= 0.1.8+14.04.20140408.1), libprotobuf8, libstdc++6 (>= 4.5), libubuntu-location-service0, liburl-dispatcher1 (>= 0.1) Pre-Depends: multiarch-support Filename: pool/main/p/platform-api/libubuntu-application-api-mirclient1_0.20+14.04.20140411-0ubuntu1_amd64.deb Size: 35316 MD5sum: 5d5eb2b69b5f1c6adeb62ff11f08fd9d SHA1: 15754eae7b54f50908dfc220f3900f2f5c062ce5 SHA256: 9106dfdd385f3f8bb007651fb24abaa08941092f7b2290849fcfd6432af6361c Description: Implementation of the Platform API for a Mir client Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 41ce2fde8cfd2f72dcc39fdc151f0c18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-application-api-mirserver1 Priority: optional Section: libs Installed-Size: 160 Maintainer: Ubuntu Developers Architecture: amd64 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.17), libdbus-cpp2 (>= 2.0.0+14.04.20140310), libgcc1 (>= 1:4.1.1), libhybris-common1, libmirserver18 (>= 0.1.8+14.04.20140408.1), libstdc++6 (>= 4.5), libubuntu-location-service0, liburl-dispatcher1 (>= 0.1) Pre-Depends: multiarch-support Filename: pool/main/p/platform-api/libubuntu-application-api-mirserver1_0.20+14.04.20140411-0ubuntu1_amd64.deb Size: 31052 MD5sum: 441463e8a161c4092f081562720b8678 SHA1: 79e7aa07c71d822b71afb2fda0d6df7cbabf4209 SHA256: 61a80816a7b18e67bcc820f9dc1e30a818957b03d10630de58827e057a5d4511 Description: Implementation of the Platform API for a Mir server Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 81fd6f1651d2a9e246d7a752cb2278e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-application-api1 Priority: optional Section: libs Installed-Size: 147 Maintainer: Ubuntu Developers Architecture: amd64 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Replaces: libplatform-api1-hybris (<< 0.18.3) Depends: libc6 (>= 2.17), libdbus-cpp2 (>= 2.0.0+14.04.20140310), libgcc1 (>= 1:4.1.1), libhybris-common1, libstdc++6 (>= 4.4.0), libubuntu-location-service0, liburl-dispatcher1 (>= 0.1) Pre-Depends: multiarch-support Breaks: libplatform-api1-hybris (<< 0.18.3) Filename: pool/main/p/platform-api/libubuntu-application-api1_0.20+14.04.20140411-0ubuntu1_amd64.deb Size: 25302 MD5sum: f5d3e5032d3c53a724ab65dcee2b1184 SHA1: fab6584b72b420a65e6f64b4aed2a8eee39d7e53 SHA256: be4d5adf7fa2f26e34b64fa932856725f92cd884dea6e1894b2fda25cb4bc689 Description: Hybris implementation of the Platform API (runtime) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: a4eee79a5b79818edbf7e0bf487d4c22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-location-service-dev Priority: optional Section: libdevel Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: location-service Version: 0.0.2+14.04.20140307-0ubuntu1 Depends: libubuntu-location-service0 (= 0.0.2+14.04.20140307-0ubuntu1) Recommends: ubuntu-location-service-doc Filename: pool/main/l/location-service/libubuntu-location-service-dev_0.0.2+14.04.20140307-0ubuntu1_amd64.deb Size: 12418 MD5sum: 1d716b51717f1f7125fdd961b58d0e5b SHA1: 754f2ffc00902564f0396fe2ecd7de6b7351d0d0 SHA256: 45e507bbffc2aee9262a1c163b21bfdc282949e53ce0c7dba8b1d503ea21f734 Description: location service aggregating position/velocity/heading Multi-Arch: foreign Homepage: http://launchpad.net/location-service Description-md5: 0b424fe8d3b65270820c90515e192539 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-location-service0 Priority: optional Section: libs Installed-Size: 1248 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: location-service Version: 0.0.2+14.04.20140307-0ubuntu1 Depends: libc6 (>= 2.14), libdbus-cpp2 (>= 2.0.0+14.04.20140307), libgcc1 (>= 1:4.1.1), libgflags2, libgoogle-glog0, libstdc++6 (>= 4.6), libubuntu-platform-hardware-api1 (>= 0.18.2+13.10.20130709) Pre-Depends: multiarch-support Filename: pool/main/l/location-service/libubuntu-location-service0_0.0.2+14.04.20140307-0ubuntu1_amd64.deb Size: 183156 MD5sum: c4017be55482915d66b417a05eb7a813 SHA1: 2d187551c7612d84226885d268f04c2580cd0eb5 SHA256: dad5b66af14b4785345d29a67e425aceeda9a76eb15e222cd9b2d46089e0befe Description: location service aggregating position/velocity/heading Multi-Arch: same Homepage: http://launchpad.net/location-service Description-md5: 9fa3adcb7ee9b6d3feb6d2c594f79cf6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-platform-api1-dev Priority: optional Section: oldlibs Installed-Size: 33 Maintainer: Ubuntu Developers Architecture: all Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libplatform-api1-dev (= 0.20+14.04.20140411-0ubuntu1) Filename: pool/main/p/platform-api/libubuntu-platform-api1-dev_0.20+14.04.20140411-0ubuntu1_all.deb Size: 1534 MD5sum: 980b827c649b56037b4f3cb39c43ee2a SHA1: fbd842d3b47cd7b1600cb16ab6f587e55433552f SHA256: 490d4585f91c243ac54394697ec0ed089ef596ec66a3459f5aac68c5c51aea0c Description: dummy transitional package for libplatform-api1-dev Homepage: https://launchpad.net/platform-api Description-md5: de56e227a9689823f5b844fcd76d0d40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-platform-hardware-api1 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Architecture: amd64 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Replaces: libplatform-hardware-api1-hybris (<< 0.18.3) Depends: libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libhybris-common1, libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: libplatform-hardware-api1-hybris (<< 0.18.3) Filename: pool/main/p/platform-api/libubuntu-platform-hardware-api1_0.20+14.04.20140411-0ubuntu1_amd64.deb Size: 7032 MD5sum: ea86c1151d98ad04ee98497d1ace9a57 SHA1: b433121d28d18cd01e00128a282c2c9789bbd0c0 SHA256: 44bb0b14281addb1eb3b9bb2464ef535104aeddef42aaeae3fe36dfbcfa8c938 Description: Hybris implementation of the hw-access parts of the Platform API (runtime) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: d9c7c5dff3893ffc9571a67f240b3e83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libudev-dev Priority: optional Section: admin Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Depends: libudev1 (= 204-5ubuntu20) Filename: pool/main/s/systemd/libudev-dev_204-5ubuntu20_amd64.deb Size: 25218 MD5sum: b0520782a2e1e67a0b31a0190bd1116c SHA1: 11546879841abe60398fbd6f954e2cc1f9306f54 SHA256: c2aef690ac2fb0c4ce4f9eec724b83f87da387717d4c5d9ff34ae12a17827920 Description: libudev development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 4085049214953c1e2cf5d9aee1c32173 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libudev1 Priority: required Section: libs Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Depends: libc6 (>= 2.17), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libudev1_204-5ubuntu20_amd64.deb Size: 33486 MD5sum: e921c0a7e4c524efccc92e9c20623a23 SHA1: 4e943bc47c345ec31444246f0fedb25d99fe913e SHA256: e72496a0ad6e27e8e8ca1797680786d81490058f09b1dc200e56839930e695e4 Description: libudev shared library Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: ace5b83d7b48187416c90173a93255b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libudf-dev Priority: optional Section: libdevel Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: amd64 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libudf0 (= 0.83-4.1ubuntu1), libcdio-dev (>= 0.78.2-1), libc6-dev | libc-dev Filename: pool/main/libc/libcdio/libudf-dev_0.83-4.1ubuntu1_amd64.deb Size: 17894 MD5sum: 978d69dd9e1a9309aee1210cdb26984b SHA1: 0b91f8cde94b6e9be1fa3118cdde2d0a828641eb SHA256: e45df935ac7f442b83266b98d73b57622be408ceab252da7ab7c1bc654476380 Description: library to work with UDF filesystems (development files) Homepage: http://www.gnu.org/software/libcdio/ Description-md5: eba99eb045f51267e42cf3d0a668a96c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libudf0 Priority: optional Section: libs Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: amd64 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libc6 (>= 2.14), libcdio13 (>= 0.83) Filename: pool/main/libc/libcdio/libudf0_0.83-4.1ubuntu1_amd64.deb Size: 9830 MD5sum: 27305b13d6c23556928f25b21d13d007 SHA1: 3941a2a243966b596168e1a4670a7b686c491060 SHA256: fe6b58013b67626f77ce1b5c715d816a88747496848319d479027db02f650be9 Description: library to work with UDF filesystems Homepage: http://www.gnu.org/software/libcdio/ Description-md5: 01adae615002a974b055f09ce3aca55c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libudisks2-0 Priority: optional Section: libs Installed-Size: 489 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: udisks2 Version: 2.1.3-1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/u/udisks2/libudisks2-0_2.1.3-1_amd64.deb Size: 90716 MD5sum: 7b9a2ad3d5504a939f8ffc14874d3073 SHA1: 8a0387f1454d481db802303e4152aa870f1117ac SHA256: 6d452078d2827e69c9079d4c50309e396cec9d2f710f3ac70a50eafed5a2fe1a Description: GObject based library to access udisks2 Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/udisks Description-md5: a4d304d9db0e1fd78836f4986f49ca67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libudisks2-dev Priority: optional Section: libdevel Installed-Size: 2668 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: udisks2 Version: 2.1.3-1 Depends: gir1.2-udisks-2.0 (= 2.1.3-1), libudisks2-0 (= 2.1.3-1) Filename: pool/main/u/udisks2/libudisks2-dev_2.1.3-1_amd64.deb Size: 141166 MD5sum: 9fe5deaeefc191e8dc1e7023d8cfb3d8 SHA1: 1ffc9bb684286dc7cf56e6dffee562c16601184d SHA256: 29a50349600cf9eccedae17f80e415a6aa41d2a846a0e824cf1121268d0650ac Description: GObject based library to access udisks2 - development files Homepage: http://www.freedesktop.org/wiki/Software/udisks Description-md5: f34ab90bbc4fc7d3f5f06a71b6d4c7d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libufe-xidgetter0 Priority: optional Section: libs Installed-Size: 43 Maintainer: Ubuntu Developers Architecture: amd64 Source: unity-firefox-extension Version: 3.0.0+14.04.20140416-0ubuntu1 Depends: libgtk2.0-0 (>= 2.24.0) Pre-Depends: multiarch-support Filename: pool/main/u/unity-firefox-extension/libufe-xidgetter0_3.0.0+14.04.20140416-0ubuntu1_amd64.deb Size: 4338 MD5sum: f0fe60172dd1fb6183f1e65225c5e360 SHA1: 43c522f46697441e289244575d31ffa38d382756 SHA256: c2838990a51de7092f17708fd60317082ce1488851900340ba2581990e53cd09 Description: Firefox extension: Unity Integration Homepage: https://launchpad.net/unity-firefox-extension Description-md5: e4b53d72615feaed2201e5bdbe48e5b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libumfpack5.6.2 Priority: optional Section: libs Installed-Size: 691 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: amd64 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libamd2.3.1, libblas3 | libblas.so.3, libc6 (>= 2.2.5), libcholmod2.1.2 Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libumfpack5.6.2_4.2.1-3ubuntu1_amd64.deb Size: 213968 MD5sum: 5e8c3ecce38f6c264bc5b129994ae31c SHA1: 9722d7968e1f0892ce188a65fd20091e28f97077 SHA256: 8654185e3800248461468bcc2e4099c03e6ad271c1fdfbf0a5ab64bf8cf1f7e5 Description: sparse LU factorization library Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 6b5cd8bc82b6a25890f5ace9d9937b82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libumockdev-dev Priority: optional Section: libdevel Installed-Size: 215 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: amd64 Source: umockdev Version: 0.8.1-1 Depends: libumockdev0 (= 0.8.1-1), libglib2.0-dev, gir1.2-umockdev-1.0 Filename: pool/main/u/umockdev/libumockdev-dev_0.8.1-1_amd64.deb Size: 20448 MD5sum: 80f0405dab8be5614f13a4a888e1f921 SHA1: da2bc8ef9f4628783fa5bcd1ca77c7e84dce29a6 SHA256: fb07513c092240d1b6ec431243e4bfbe1dbff4eb01035c76be31b1feb7283792 Description: development files and documentation for libumockdev Homepage: https://github.com/martinpitt/umockdev/ Description-md5: e20e1fd5f7c452d037e06ca09da31d81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libumockdev0 Priority: optional Section: libs Installed-Size: 119 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: amd64 Source: umockdev Version: 0.8.1-1 Depends: libc6 (>= 2.15), libglib2.0-0 (>= 2.32.0), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/u/umockdev/libumockdev0_0.8.1-1_amd64.deb Size: 30992 MD5sum: af591b20807d964b0f3f9bd60fca03ff SHA1: 8cfdad3107a42b984860cc8c948b0ab7a19f35f0 SHA256: f2370368209b4879b2d0edb3cb89e11d9eb36bdd68b70236611fd06eab8bcd51 Description: hardware mocking testbed for bug reports and regression tests Multi-Arch: same Homepage: https://github.com/martinpitt/umockdev/ Description-md5: ebb621f9941ee1cde03190e72e506f3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunbound-dev Priority: optional Section: net Installed-Size: 4734 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: unbound Version: 1.4.22-1ubuntu4 Depends: libunbound2 (= 1.4.22-1ubuntu4) Filename: pool/main/u/unbound/libunbound-dev_1.4.22-1ubuntu4_amd64.deb Size: 3411426 MD5sum: c5c6cc8b069e27064a067742e21f3f18 SHA1: e9c319c37cf53897bc3df0c89dd726cad9524e48 SHA256: 8350d7315680e96f999c6894850c303c7a50e5f82bba0443d9f48365726b9172 Description: static library, header files, and docs for libunbound Multi-Arch: same Homepage: https://www.unbound.net/ Description-md5: ed3009c5a462f3287f75c961064034a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunbound2 Priority: optional Section: net Installed-Size: 611 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: unbound Version: 1.4.22-1ubuntu4 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/u/unbound/libunbound2_1.4.22-1ubuntu4_amd64.deb Size: 223044 MD5sum: 47397a6ada9db8ca0a69360ce27aa544 SHA1: a9de55b14bd2af96128f516cc83efd7484432a41 SHA256: 6581336ec7e646c44380fbfb01b3a565107f9ee8538e3c9680e3c5358a4586de Description: library implementing DNS resolution and validation Multi-Arch: same Homepage: https://www.unbound.net/ Description-md5: 2be0d2578ccb5656d253e8013682ad4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libunicode-linebreak-perl Priority: optional Section: perl Installed-Size: 323 Maintainer: Ubuntu Developers Original-Maintainer: Emmanuel Bouthenot Architecture: amd64 Version: 0.0.20131101-1 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.4), libsombok3 (>= 2.3.1-1~), libmime-charset-perl (>= 1.006.2) Filename: pool/main/libu/libunicode-linebreak-perl/libunicode-linebreak-perl_0.0.20131101-1_amd64.deb Size: 92736 MD5sum: c8b491d040110718f573ced3531c276a SHA1: 1f03e38282b9a16c6a0ea7817e24e68db5f73be2 SHA256: 17fa91907ff151cbeb1d32285ce1205b2a574cbafb021651e74f63e604a40f59 Description: UAX #14 Unicode Line Breaking Algorithm Homepage: http://search.cpan.org/dist/Unicode-LineBreak/ Description-md5: 064e5d14c788a9625ef41965b9c36e7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunicode-utf8-perl Priority: optional Section: perl Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.59-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4) Filename: pool/main/libu/libunicode-utf8-perl/libunicode-utf8-perl_0.59-1build1_amd64.deb Size: 19484 MD5sum: fb1acd53c9f3c2fcb98dca5e08684598 SHA1: 6905b37606d10f1442e3d090c43e45dec14219ae SHA256: 7a5f41592b63249f10867ad758314d5541fbcde25283f0054278b50ab5c85347 Description: encoding and decoding of UTF-8 encoding form Homepage: http://search.cpan.org/dist/Unicode-UTF8/ Description-md5: adcd36ea0db6701aaae183b6732e41b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libuniconf4.6 Priority: optional Section: libs Installed-Size: 450 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: wvstreams Version: 4.6.1-7 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libwvstreams4.6-base, libwvstreams4.6-extras Filename: pool/main/w/wvstreams/libuniconf4.6_4.6.1-7_amd64.deb Size: 129390 MD5sum: 10638bcd250ccf702637a64d6c1f21d4 SHA1: 0eaf2cf8a95f7d9e61793ddbb3e999743b814c77 SHA256: 8cef40d5cbdee7e05d68621fdb4afea8cc45c50df68c44ab77267eda9ab76f5a Description: C++ network libraries for rapid application development Description-md5: 8e55435d89b943e72ed8aaab443a407e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-desktop Package: libuninameslist-dev Priority: optional Section: libdevel Installed-Size: 2347 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: amd64 Source: libuninameslist Version: 0.3.20130501-3 Depends: libuninameslist0 (= 0.3.20130501-3) Filename: pool/main/libu/libuninameslist/libuninameslist-dev_0.3.20130501-3_amd64.deb Size: 353164 MD5sum: 62e8dbd895a42f5f72b5f3f4ba31730d SHA1: 37d23fb99e03be180bc31d6fe2f2261cd1902b9f SHA256: cdb88b1a4851c7642b3821bd1e0a53596a1981da635b90c9063c7ad414677ac0 Description: library of Unicode annotation data (development files) Homepage: https://github.com/fontforge/libuninameslist Description-md5: cced08fee8b0cff895c14321280db1a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libuninameslist0 Priority: optional Section: libs Installed-Size: 2334 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: amd64 Source: libuninameslist Version: 0.3.20130501-3 Depends: libc6 (>= 2.2.5) Pre-Depends: multiarch-support Filename: pool/main/libu/libuninameslist/libuninameslist0_0.3.20130501-3_amd64.deb Size: 421752 MD5sum: 801fe7d40ec82b6f270ea775172af1f5 SHA1: 38640393be9999179935544890d1a54ff049d115 SHA256: 2e541e727308018917cb992ae8b46f4626bce85069f61f61c4ecaec17bf3d6bf Description: library of Unicode annotation data Homepage: https://github.com/fontforge/libuninameslist Description-md5: 7a72092a2f6b5a9c8f83138a239c1f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: libunique-1.0-0 Priority: optional Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libunique Version: 1.1.6-4ubuntu2 Depends: libc6 (>= 2.14), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libx11-6, dbus, dbus-x11 Filename: pool/main/libu/libunique/libunique-1.0-0_1.1.6-4ubuntu2_amd64.deb Size: 21502 MD5sum: 536dfd7d834ff2bdc0989e15634c40b3 SHA1: 1bfaaffdf8b1d7ad77ef95ba3f1f994d5c1b2ccf SHA256: 5226dd3c3d9ae11d7e39a6f6070669db6a327218018f50840b01641e558c6daf Description: Library for writing single instance applications - shared libraries Homepage: http://live.gnome.org/LibUnique Description-md5: c9a904ea2ae3ba5f0fdfe69ab466dfaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, ubuntustudio-desktop Package: libunique-dev Priority: optional Section: libdevel Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libunique Version: 1.1.6-4ubuntu2 Replaces: gir-repository-dev (<= 0.6.5-2) Depends: libunique-1.0-0 (= 1.1.6-4ubuntu2), libglib2.0-dev (>= 2.12.0), libgtk2.0-dev (>= 2.11.0) Suggests: libunique-doc Filename: pool/main/libu/libunique/libunique-dev_1.1.6-4ubuntu2_amd64.deb Size: 22850 MD5sum: fbddf241445fd593e2bf668e1cc83c6a SHA1: 05217f1ff23b9fac6ce70fd65bd515174301e5f1 SHA256: ef7b8a4f4f197fe9432836524cdde2f615dc669864facc009f0d98bc2bd9cb72 Description: Library for writing single instance applications - development files Homepage: http://live.gnome.org/LibUnique Description-md5: 51e77def53a11cb57b60fdf525eea7ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunique-doc Priority: optional Section: doc Installed-Size: 200 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libunique Version: 1.1.6-4ubuntu2 Recommends: libunique-1.0-0 Suggests: devhelp Filename: pool/main/libu/libunique/libunique-doc_1.1.6-4ubuntu2_all.deb Size: 20400 MD5sum: 233a6995d897655ce871b942ab218876 SHA1: b95464041cdcde0fe72302ca70627e532304e5e9 SHA256: aa4319935e0a650a775ef9a211ba310cc611111092eb0cfe47b066bb3bd2d86a Description: Library for writing single instance applications - documentation Homepage: http://live.gnome.org/LibUnique Description-md5: da1ffbd76a5852b1fcc66ca3013bac5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunistring-dev Priority: optional Section: libdevel Installed-Size: 2615 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Rottmann Architecture: amd64 Source: libunistring Version: 0.9.3-5ubuntu3 Depends: libunistring0 (= 0.9.3-5ubuntu3) Filename: pool/main/libu/libunistring/libunistring-dev_0.9.3-5ubuntu3_amd64.deb Size: 414174 MD5sum: e24026b33e2857620b71b7429492f94c SHA1: fc6c8db1595108a82a40f144351251307f33f866 SHA256: 54b3847582136f2655130805364425b258f6796d03e7b568bffdb969585228b7 Description: Unicode string library for C - development files Multi-Arch: same Homepage: http://www.gnu.org/software/libunistring/ Description-md5: 4cb6f307da8ff81023eda5dc8286af44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunistring0 Priority: optional Section: libs Installed-Size: 1151 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Rottmann Architecture: amd64 Source: libunistring Version: 0.9.3-5ubuntu3 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libu/libunistring/libunistring0_0.9.3-5ubuntu3_amd64.deb Size: 270684 MD5sum: 256e18209ad74bc9e6752290f2a5444f SHA1: ab56f7fa7d5f1c35eed377324be93a4136c310b4 SHA256: b69976736af61e76224ccac526507ad8bc81d77c7b5d753ba324b9ff628e897d Description: Unicode string library for C Multi-Arch: same Homepage: http://www.gnu.org/software/libunistring/ Description-md5: b202dbec3da512fe5ff554ac46cd2451 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libunity-2d-private-dev Priority: optional Section: libdevel Installed-Size: 123 Maintainer: Ubuntu Developers Architecture: all Source: unity Version: 7.2.0+14.04.20140416-0ubuntu1 Depends: unity Filename: pool/main/u/unity/libunity-2d-private-dev_7.2.0+14.04.20140416-0ubuntu1_all.deb Size: 4984 MD5sum: f272ed3e635626b1d89383d09563d643 SHA1: b031ac1f8e7a40e1be7b5befb5f3e5ad5f6f29e4 SHA256: bc242cac5922ea11125b2d30e4940707c8400d32c4d67b93a498b1119e57a26e Description: transitional dummy package Homepage: https://launchpad.net/unity Description-md5: a06d380855fbe7cc75a9788e2760f757 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-action-qt1 Priority: optional Section: libs Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Antti Kaijanmäki Architecture: amd64 Source: unity-action-api Version: 1.1.0+14.04.20140304-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libhud2 (>= 13.10.0), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/u/unity-action-api/libunity-action-qt1_1.1.0+14.04.20140304-0ubuntu1_amd64.deb Size: 45072 MD5sum: ee8adca1b7416cf0e433a4300222342c SHA1: 82f1189b26d52c3a9728950accf5e4284cf45323 SHA256: 9502409313c3eb8dd86aab6bf958adda9179b2f047999f981da78f666e3a60e4 Description: Unity Action Qt API Multi-Arch: same Homepage: https://launchpad.net/unity-action-api Description-md5: 8ca604cfa3cd5f02a146393a0b681dbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity-action-qt1-dev Priority: optional Section: libdevel Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Antti Kaijanmäki Architecture: amd64 Source: unity-action-api Version: 1.1.0+14.04.20140304-0ubuntu1 Depends: libunity-action-qt1 (= 1.1.0+14.04.20140304-0ubuntu1), qtbase5-dev, libhud2-dev Suggests: unity-action-doc Filename: pool/main/u/unity-action-api/libunity-action-qt1-dev_1.1.0+14.04.20140304-0ubuntu1_amd64.deb Size: 4236 MD5sum: d2396c44bb5d633d37440c56528b1e64 SHA1: dcc0a524940db99c75555f0bbec655ae760c6b54 SHA256: fa5f5c440a7890294c30af8f424fe0d329b8bd0c1340e3913447ee766eac7505 Description: Unity Action Qt API - development files Multi-Arch: same Homepage: https://launchpad.net/unity-action-api Description-md5: fe16746b5d5ef60555a35050f3de769e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-control-center-dev Priority: optional Section: libdevel Installed-Size: 132 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: unity-control-center Version: 14.04.3+14.04.20140410-0ubuntu1 Depends: libunity-control-center1 (= 14.04.3+14.04.20140410-0ubuntu1) Filename: pool/main/u/unity-control-center/libunity-control-center-dev_14.04.3+14.04.20140410-0ubuntu1_amd64.deb Size: 4086 MD5sum: ba54a3834a68bb1e99a25f9eb8031b7d SHA1: 335c91981a5a197a1d0a9d9544f5f5f3d6402b6c SHA256: c149e4d39290ba0102729bd1d351d7fe6f23156ef231a094ee4b70d8741a0719 Description: utilities to configure the GNOME desktop Description-md5: d94b8cc23eade4594fdcf9cbed49b9fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-control-center1 Priority: optional Section: libs Installed-Size: 138 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: unity-control-center Version: 14.04.3+14.04.20140410-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.14), libpango-1.0-0 (>= 1.14.0) Filename: pool/main/u/unity-control-center/libunity-control-center1_14.04.3+14.04.20140410-0ubuntu1_amd64.deb Size: 80952 MD5sum: 97b4f7668cb9ad9e187eaa83e9c8d111 SHA1: 3d1da668f976880c37717cdc4d50e17295f35789 SHA256: f010552b4e98ec047be2cbf8ba2b610e3942033c88fd1ade73d4ee73f157d3f5 Description: utilities to configure the GNOME desktop Description-md5: d35b85c0b8b73f7bf4cf19c7aa215660 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libunity-core-6.0-9 Priority: optional Section: libs Installed-Size: 1984 Maintainer: Ubuntu Developers Architecture: amd64 Source: unity Version: 7.2.0+14.04.20140416-0ubuntu1 Replaces: libunity-core-6.0-6, libunity-core-6.0-7, libunity-core-6.0-8, unity-common Provides: unity-common, unity-common-7.0 Depends: libc6 (>= 2.14), libdee-1.0-4 (>= 0.5.16), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.39.4), libnux-4.0-0, libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.8), libunity-protocol-private0 (>= 7.1.4+14.04.20140210), dconf-gsettings-backend | gsettings-backend, unity-services (= 7.2.0+14.04.20140416-0ubuntu1) Conflicts: libunity-core-6.0-6, libunity-core-6.0-7, libunity-core-6.0-8, unity-common Filename: pool/main/u/unity/libunity-core-6.0-9_7.2.0+14.04.20140416-0ubuntu1_amd64.deb Size: 447492 MD5sum: b1c6610062c7fa0ace4a05e3a72a47b7 SHA1: 248eac00d83579ce1d82d61581b8d00c70567832 SHA256: 685b2e35f7ed74af19b5c4a7eba52055b5ecef055a3589acc0e1133f0b58db81 Description: core library for the Unity interface Homepage: https://launchpad.net/unity Description-md5: 2ee857fee5d2f8dbac3e4840d118df06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity-core-6.0-dev Priority: optional Section: libdevel Installed-Size: 271 Maintainer: Ubuntu Developers Architecture: amd64 Source: unity Version: 7.2.0+14.04.20140416-0ubuntu1 Depends: libunity-core-6.0-9 (= 7.2.0+14.04.20140416-0ubuntu1), libglib2.0-dev, libsigc++-2.0-dev, libnux-4.0-dev (>= 4.0.5), libunity-dev (>= 7.1.0~), libdee-dev Filename: pool/main/u/unity/libunity-core-6.0-dev_7.2.0+14.04.20140416-0ubuntu1_amd64.deb Size: 22600 MD5sum: ab47a92e43dc450da66c63a335f197ed SHA1: 7c608d92a979e6d85e9c3222097bef442d639124 SHA256: d6218d0e9a5f93ddf67a44ba7fe2271492debdd68e3435be5c070f844874f54d Description: Core library for the Unity interface - development files Homepage: https://launchpad.net/unity Description-md5: 9d4511f2e1fa9f78a3708127328fd86b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-dev Priority: optional Section: libdevel Installed-Size: 532 Maintainer: Ubuntu Core Developers Architecture: amd64 Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Replaces: libunity9 (<< 5.90) Depends: gir1.2-unity-5.0 (= 7.1.4+14.04.20140210-0ubuntu1), libunity9 (= 7.1.4+14.04.20140210-0ubuntu1), libunity-protocol-private0 (= 7.1.4+14.04.20140210-0ubuntu1), libglib2.0-dev, libdee-dev, libdbusmenu-glib-dev Filename: pool/main/libu/libunity/libunity-dev_7.1.4+14.04.20140210-0ubuntu1_amd64.deb Size: 40474 MD5sum: 8cca56a2c3210511d69617701a49370b SHA1: 8984d88ddd434d54c39d7226ce55d50d53a16dfe SHA256: 7871ffccf329c482168e8a0acaa454ea880f0e47213703c25536323da72c5371 Description: binding to get places into the launcher - development files Homepage: https://launchpad.net/libunity Description-md5: 940646542d41ed6501a55676f7cc379f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-gtk-parser-dev-common Priority: optional Section: libdevel Installed-Size: 106 Maintainer: Ubuntu Desktop Team Architecture: all Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Filename: pool/main/u/unity-gtk-module/libunity-gtk-parser-dev-common_0.0.0+14.04.20140403-0ubuntu1_all.deb Size: 12756 MD5sum: 377c7151e0bfe637936690c736fa1e6f SHA1: 76f92343660c0b16b7ddde238fb06fc671c5e063 SHA256: 739aad379910943ea742f9c5819db14a31b89507a2befeb957c188401d448163 Description: Common files for GtkMenuShell to GMenuModel parser Multi-Arch: foreign Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 626a0a177d2b39396e5bbe48d64c4064 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-gtk2-parser-dev Priority: optional Section: libdevel Installed-Size: 165 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Depends: libgtk2.0-dev (>= 2.24.0), libunity-gtk-parser-dev-common (>= 0.0.0+14.04.20140403-0ubuntu1), libunity-gtk2-parser0 (= 0.0.0+14.04.20140403-0ubuntu1) Filename: pool/main/u/unity-gtk-module/libunity-gtk2-parser-dev_0.0.0+14.04.20140403-0ubuntu1_amd64.deb Size: 24582 MD5sum: c3861a2fe8eeb7da73100ed65459eaa2 SHA1: 912fe46bb880d0497fe7cdf0654d6cce211f9b3f SHA256: cfb75035bc7341aacb06ae72ce30b1cfaccde517f61c835057dfbb185b16fde0 Description: GtkMenuShell to GMenuModel parser Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 0e6949492c772089528476a1a8243018 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-gtk2-parser0 Priority: optional Section: libs Installed-Size: 104 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Depends: libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.39.4), libgtk2.0-0 (>= 2.24.0) Pre-Depends: multiarch-support, dpkg (>= 1.15.7.2) Filename: pool/main/u/unity-gtk-module/libunity-gtk2-parser0_0.0.0+14.04.20140403-0ubuntu1_amd64.deb Size: 24470 MD5sum: c454b0a775adf9dbf919bea30f312ddf SHA1: 1fff8768f60b1c508aa6c7581bf51513a4bdba54 SHA256: 8b70400c6acaf09764ef17f672f84f8f7b84078b17381ebccca6e9e4b0a11f17 Description: GtkMenuShell to GMenuModel parser Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 204500b413c2c01152d690e2dffea312 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity-gtk3-parser-dev Priority: optional Section: libdevel Installed-Size: 164 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Depends: libgtk-3-dev (>= 3.2.0), libunity-gtk-parser-dev-common (>= 0.0.0+14.04.20140403-0ubuntu1), libunity-gtk3-parser0 (= 0.0.0+14.04.20140403-0ubuntu1) Filename: pool/main/u/unity-gtk-module/libunity-gtk3-parser-dev_0.0.0+14.04.20140403-0ubuntu1_amd64.deb Size: 24310 MD5sum: dddc54ccf3d9b5cee1634e03e1165c88 SHA1: 2a37b3b815e332a8d65a9c9a8cbdf2ea14dff2d1 SHA256: b8a6bbbd9187711ac83535ae827eae48d4701a1cc55e526b32ee4a49e5c3034b Description: GtkMenuShell to GMenuModel parser Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 0e6949492c772089528476a1a8243018 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-gtk3-parser0 Priority: optional Section: libs Installed-Size: 100 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Depends: libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.2.0) Pre-Depends: multiarch-support, dpkg (>= 1.15.7.2) Filename: pool/main/u/unity-gtk-module/libunity-gtk3-parser0_0.0.0+14.04.20140403-0ubuntu1_amd64.deb Size: 24184 MD5sum: e1eb658f43c8589406927c8fd2146a01 SHA1: 3b104f41a38eaf20a8fce7cc4bc10241c67a29a8 SHA256: f0a5aec3f1a93a9de2fdc7c104a801e12925f08f287ffa69667c7057160ca9d5 Description: GtkMenuShell to GMenuModel parser Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 204500b413c2c01152d690e2dffea312 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity-misc-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Ubuntu Developers Architecture: amd64 Source: libunity-misc Version: 4.0.5+14.04.20140115-0ubuntu1 Depends: libunity-misc4 (= 4.0.5+14.04.20140115-0ubuntu1), libglib2.0-dev (>= 2.22.0), libgtk-3-dev (>= 3.0) Filename: pool/main/libu/libunity-misc/libunity-misc-dev_4.0.5+14.04.20140115-0ubuntu1_amd64.deb Size: 4742 MD5sum: 10fc47b5c50d413e07b4bbde2af6031d SHA1: c2e69431c5567efa24c63ae8a0985a18eaded0e0 SHA256: dd762abe46dfe2092e856dcfcf62228800834436845649b2f273e64b42fd7f0a Description: Miscellaneous functions for Unity - development files Homepage: https://launchpad.net/libunity-misc Description-md5: be205441b197c106735472a240f3781f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-misc-doc Priority: optional Section: doc Installed-Size: 58 Maintainer: Ubuntu Developers Architecture: all Source: libunity-misc Version: 4.0.5+14.04.20140115-0ubuntu1 Suggests: devhelp Filename: pool/main/libu/libunity-misc/libunity-misc-doc_4.0.5+14.04.20140115-0ubuntu1_all.deb Size: 7812 MD5sum: c4c9be59ca84756666bbc6e039b9ba4c SHA1: ed62426e6a7f44604be4a26e5255dd6f7108372b SHA256: 6cb317f483cfe76ea4d45dc4c0bb2138233727e54a4cd85b3e28074630d5bf47 Description: Miscellaneous functions for Unity - documentation Homepage: https://launchpad.net/libunity-misc Description-md5: 7c6b11eb68d32f1b14e41a9bb4ed9262 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-misc4 Priority: optional Section: libs Installed-Size: 95 Maintainer: Ubuntu Developers Architecture: amd64 Source: libunity-misc Version: 4.0.5+14.04.20140115-0ubuntu1 Depends: libc6 (>= 2.14), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libx11-6 Pre-Depends: multiarch-support Filename: pool/main/libu/libunity-misc/libunity-misc4_4.0.5+14.04.20140115-0ubuntu1_amd64.deb Size: 21194 MD5sum: 7e8627c4f00d02c6047b447cc3f23993 SHA1: 2b23f8f2d8ee611f4e1cd8683073e9b1cf3e7319 SHA256: 691c6d1da767c41f11df92479c469117ebe2290176b00519d8849b8dd8d9d718 Description: Miscellaneous functions for Unity - shared library Homepage: https://launchpad.net/libunity-misc Description-md5: bb4bad60843732bf6465ea6c2b39f009 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity-protocol-private0 Priority: optional Section: libs Installed-Size: 347 Maintainer: Ubuntu Core Developers Architecture: amd64 Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Depends: libc6 (>= 2.2.5), libdee-1.0-4 (>= 1.0.0), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Breaks: libunity9 (<< 7.1.1) Filename: pool/main/libu/libunity/libunity-protocol-private0_7.1.4+14.04.20140210-0ubuntu1_amd64.deb Size: 78094 MD5sum: 1f1e7ae6817b26d098d98edc5ae106e0 SHA1: 7989180c8373ab1efc867c952f803efc1dd46e5f SHA256: 0ae9bd0f2986ab896d4730619350e7fd335429eb1b4c7c6f39f9941f63eb1160 Description: binding to get places into the launcher - private library Multi-Arch: same Homepage: https://launchpad.net/libunity Description-md5: de4784aed16d63b7fb02d506575d1fe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libunity-scopes-json-def-desktop Priority: optional Section: gnome Installed-Size: 52 Maintainer: Ubuntu Core Developers Architecture: all Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Replaces: libunity-common (<< 7.0.7) Provides: libunity-common, unity-scopes-json-def Conflicts: libunity-common (<< 7.0.7), unity-scopes-json-def Filename: pool/main/libu/libunity/libunity-scopes-json-def-desktop_7.1.4+14.04.20140210-0ubuntu1_all.deb Size: 3696 MD5sum: 59d3c739a011c79ceead205d586e3072 SHA1: 90d22d1e85e4f845e910df6c0e2faa36f386c869 SHA256: b8a5fb8770756da79d6ac98265ac7449f488a54c61dfdf070fabc40b976146e9 Description: binding to get places into the launcher - desktop def file Multi-Arch: foreign Homepage: https://launchpad.net/libunity Description-md5: c272d9c9f1482ba09fbb8b8fdb9cc568 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libunity-webapps-dev Priority: optional Section: libdevel Installed-Size: 344 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libunity-webapps Version: 2.5.0~+14.04.20140409-0ubuntu1 Depends: gir1.2-unity-webapps-0.2, libunity-webapps0 (= 2.5.0~+14.04.20140409-0ubuntu1) Filename: pool/main/libu/libunity-webapps/libunity-webapps-dev_2.5.0~+14.04.20140409-0ubuntu1_amd64.deb Size: 21116 MD5sum: e8cf685a6e0cdfc70526e14a481378af SHA1: d9f1d09a82c5b4c2bd0be1b218ea399f45b74481 SHA256: ad9330d68659352c51d33ea3468a82a40e07e4fd01ee25bc30fdfad19477ff9f Description: Web Apps integration with Unity - development files Homepage: https://launchpad.net/libunity-webapps Description-md5: 39f603f3793361a1aa23a6efaeb59e61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-webapps-doc Priority: optional Section: doc Installed-Size: 286 Maintainer: Ubuntu Desktop Team Architecture: all Source: libunity-webapps Version: 2.5.0~+14.04.20140409-0ubuntu1 Filename: pool/main/libu/libunity-webapps/libunity-webapps-doc_2.5.0~+14.04.20140409-0ubuntu1_all.deb Size: 19874 MD5sum: 639013cfb46f67f7c42aaeb1388dcd0e SHA1: 8c77d03d9bc0946fd436f819734896ed1564ad7a SHA256: e34a0512c15b36d4033c1d705ade39cebe6aa9bb346ae65e5f193585947d2ce5 Description: Web Apps integration with Unity - documentation Homepage: https://launchpad.net/libunity-webapps Description-md5: 9691a395a77926383f936f9555572791 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-webapps0 Priority: optional Section: libs Installed-Size: 304 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libunity-webapps Version: 2.5.0~+14.04.20140409-0ubuntu1 Depends: unity-webapps-service, libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libjson-glib-1.0-0 (>= 0.12.0), libpackagekit-glib2-16 (>= 0.8.10), libpolkit-gobject-1-0 (>= 0.99), libsqlite3-0 (>= 3.5.9) Breaks: bamfdaemon (<= 0.3.0-0ubuntu1), xul-ext-unity (<= 2.3-0quantal1), xul-ext-websites-integration (<= 2.3-0quantal1) Filename: pool/main/libu/libunity-webapps/libunity-webapps0_2.5.0~+14.04.20140409-0ubuntu1_amd64.deb Size: 59092 MD5sum: 0b6ecc188081e07eb72286a969790e08 SHA1: b4524ce731c79bd636cc446a8dedded17094a60e SHA256: ca7ca8aec6293be9a4a2b4231671f075e002395a0ee20effccf0d9b7729d2ea1 Description: Web Apps integration with the Unity desktop Homepage: https://launchpad.net/libunity-webapps Description-md5: a167400b2b59382dd0211fa9b603d334 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity9 Priority: optional Section: libs Installed-Size: 825 Maintainer: Ubuntu Core Developers Architecture: amd64 Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Depends: libc6 (>= 2.2.5), libdbusmenu-glib4 (>= 0.4.2), libdee-1.0-4 (>= 1.2.3~daily13.02.26), libglib2.0-0 (>= 2.37.3), libunity-protocol-private0 (= 7.1.4+14.04.20140210-0ubuntu1), dconf-gsettings-backend | gsettings-backend, libunity-scopes-json-def-desktop (>= 7.1.4+14.04.20140210-0ubuntu1) | unity-scopes-json-def Pre-Depends: multiarch-support Suggests: unity-common (>= 7.1.2) Breaks: unity-common (<< 7.1.2) Filename: pool/main/libu/libunity/libunity9_7.1.4+14.04.20140210-0ubuntu1_amd64.deb Size: 198298 MD5sum: a0b1db22c6bb8a90de7d77b8c582f544 SHA1: 910597502325bb3fb1d0d334fd920fdd721fc2ce SHA256: fa654f082df559d362a4e45b0f679615102239ad5ce8391ad9a9da9296ca18c7 Description: binding to get places into the launcher - shared library Multi-Arch: same Homepage: https://launchpad.net/libunity Description-md5: 0bdcbe46903d5a11a88d8cfa7be5f803 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libunityvoice1 Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Pete Woods Architecture: amd64 Source: unity-voice Version: 0.1+14.04.20140304-0ubuntu1 Depends: unity-voice-service (= 0.1+14.04.20140304-0ubuntu1), libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/u/unity-voice/libunityvoice1_0.1+14.04.20140304-0ubuntu1_amd64.deb Size: 11810 MD5sum: 297cd387cdb9ec28571d99c94a0f5a69 SHA1: 8e16e5d67c69c55e9567fc71977a9cba70111217 SHA256: db79f829b9ef09859318e246fc1ef7314af9a742d037fac09392a9dec20e888e Description: client library for Unity voice service Multi-Arch: same Homepage: https://launchpad.net/unity-voice Description-md5: 4986f86a063f011fc4875acdc81cb751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunityvoice1-dev Priority: optional Section: libdevel Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Pete Woods Architecture: amd64 Source: unity-voice Version: 0.1+14.04.20140304-0ubuntu1 Depends: libunityvoice1 (= 0.1+14.04.20140304-0ubuntu1), qtbase5-dev Filename: pool/main/u/unity-voice/libunityvoice1-dev_0.1+14.04.20140304-0ubuntu1_amd64.deb Size: 3070 MD5sum: 25839db7fe1d6a42fcc4ba011cc4d1f2 SHA1: 333016c9329fa8ab51e9cfcad7eb49192696e5c8 SHA256: f6861c3bff70ec5ce5e10c8485075debaf8364c9decc96246b6aa30fe98c105f Description: client library for Unity voice service Multi-Arch: same Homepage: https://launchpad.net/unity-voice Description-md5: dad0b7724dfbd7b38094f3db44e70248 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunix-syslog-perl Priority: optional Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.1-2build5 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4) Filename: pool/main/libu/libunix-syslog-perl/libunix-syslog-perl_1.1-2build5_amd64.deb Size: 26086 MD5sum: eea5abd52a3bfea68ca040845bb0ac31 SHA1: ddf87c2662f9926ccc252c86626ea0d4b11ab7ef SHA256: ac6a5697b5309dbc63b37bfd6a7192929bb278628c422a83f488d1208cc855da Description: Perl interface to the UNIX syslog(3) calls Homepage: http://search.cpan.org/dist/Unix-Syslog/ Description-md5: 71aaa5c50a04924ce8afffe6bfef1267 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libunwind-setjmp0 Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: libunwind Version: 1.1-2.2ubuntu3 Depends: libc6 (>= 2.2.5), libunwind8 Pre-Depends: multiarch-support Filename: pool/main/libu/libunwind/libunwind-setjmp0_1.1-2.2ubuntu3_amd64.deb Size: 5586 MD5sum: 309857222bc718499636b49a4ef811b2 SHA1: 0143002b694680709b5cdd7e43681243dfa64263 SHA256: 51ab102eef7033dc9e8d2cec44c481cd4ba6de53ed8f4bc63b6b866a2215c15f Description: libunwind-based non local goto - runtime Homepage: http://www.nongnu.org/libunwind Description-md5: a2ad087672aa604c7e2e5e0dee1676a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunwind-setjmp0-dbg Priority: extra Section: debug Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: libunwind Version: 1.1-2.2ubuntu3 Depends: libunwind-setjmp0 (= 1.1-2.2ubuntu3) Filename: pool/main/libu/libunwind/libunwind-setjmp0-dbg_1.1-2.2ubuntu3_amd64.deb Size: 12634 MD5sum: 8427be3f7d1ffc268636a9a3131e3603 SHA1: ba4c235fe4ecdb7eb590d9f4f2294c16f6ee109e SHA256: a382d32373aa210f992fe98aa03cb9bd16ac20346b966b28ddde5f6345ff2104 Description: libunwind-based non local goto - runtime Homepage: http://www.nongnu.org/libunwind Description-md5: cf23db6dc3fda03286356b5dcd73dc7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunwind-setjmp0-dev Priority: optional Section: libdevel Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: libunwind Version: 1.1-2.2ubuntu3 Depends: libunwind8-dev (= 1.1-2.2ubuntu3), libunwind-setjmp0 (= 1.1-2.2ubuntu3) Filename: pool/main/libu/libunwind/libunwind-setjmp0-dev_1.1-2.2ubuntu3_amd64.deb Size: 14102 MD5sum: fd4668e3416aa6102f621fafd5d17391 SHA1: b2ce01c4960bd0a6670033467b22756de0a5ce87 SHA256: c2224c3441e6b59b9d3ebde93c58b00c03aea6b616f2a75f9e6d4ec509e7bb61 Description: libunwind-based non local goto - development Homepage: http://www.nongnu.org/libunwind Description-md5: 099a990a984e4f0a5487014e58a269b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunwind8 Priority: optional Section: libs Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: libunwind Version: 1.1-2.2ubuntu3 Replaces: libgcc1 (<< 1:4.0.0-2) Depends: libc6 (>= 2.4), liblzma5 (>= 5.1.1alpha+20110809) Pre-Depends: multiarch-support Conflicts: libunwind1-dev Filename: pool/main/libu/libunwind/libunwind8_1.1-2.2ubuntu3_amd64.deb Size: 48294 MD5sum: d568b4e19959271d3f8470ff28c223f1 SHA1: 0e4fdaf969a4226898f6c242d72931bedacc4043 SHA256: a36f5791838f740b74c38c2aace2ff5f18669f036a86f85f755659a82e708331 Description: library to determine the call-chain of a program - runtime Homepage: http://www.nongnu.org/libunwind Description-md5: 7095fd22983044140f5faf099162a263 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunwind8-dbg Priority: extra Section: debug Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: libunwind Version: 1.1-2.2ubuntu3 Depends: libunwind8 (= 1.1-2.2ubuntu3) Filename: pool/main/libu/libunwind/libunwind8-dbg_1.1-2.2ubuntu3_amd64.deb Size: 306536 MD5sum: 4edea024a42baa41adc86b262a38dbd9 SHA1: e39a5d7740a218a08b5aae89e0fd2fc809526cf3 SHA256: 443065043bfb317948c718fb3c0857035f68400f8ad2a1978608fbe930bb7397 Description: library to determine the call-chain of a program - runtime Homepage: http://www.nongnu.org/libunwind Description-md5: 1aaea2ab3392bcfdf7a686bc495adf82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunwind8-dev Priority: optional Section: libdevel Installed-Size: 2636 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: amd64 Source: libunwind Version: 1.1-2.2ubuntu3 Replaces: libunwind7-dev Depends: libunwind8 (= 1.1-2.2ubuntu3) Conflicts: libunwind1-dev, libunwind7-dev Filename: pool/main/libu/libunwind/libunwind8-dev_1.1-2.2ubuntu3_amd64.deb Size: 375206 MD5sum: 66b6cdfa3cc594cdf47df56e136f440f SHA1: 10b420a2ac814d76a0ed37780368d4204eca6076 SHA256: 965d93432ebee24713f645055898b7d154a392c8a0886f47176fec6ab627596c Description: library to determine the call-chain of a program - development Homepage: http://www.nongnu.org/libunwind Description-md5: 968fa5fbcdf32543dedc4d9d40405c26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupower-glib-dev Priority: optional Section: libdevel Installed-Size: 326 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: upower Version: 0.9.23-2ubuntu1 Depends: libglib2.0-dev, libdbus-glib-1-dev (>= 0.76), libupower-glib1 (= 0.9.23-2ubuntu1), gir1.2-upowerglib-1.0 (= 0.9.23-2ubuntu1) Filename: pool/main/u/upower/libupower-glib-dev_0.9.23-2ubuntu1_amd64.deb Size: 33558 MD5sum: 17766b319938b6e379326ffbf14f157b SHA1: 9094b8376c559fee01a5f05498fcec0c1d1bc5d3 SHA256: 55842a1db0fc8747544ac377557aadc75364bc949a2577759c9082e503b26b45 Description: abstraction for power management - development files Homepage: http://upower.freedesktop.org/ Description-md5: e299324721dc2f58c6699cd68634ba38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupower-glib1 Priority: optional Section: libs Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: upower Version: 0.9.23-2ubuntu1 Depends: libc6 (>= 2.4), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/u/upower/libupower-glib1_0.9.23-2ubuntu1_amd64.deb Size: 23780 MD5sum: e83745d2506a76b102ec0a84cf52fa80 SHA1: f016c8662b4b32b63c342f3457e12d8fbc7b7bae SHA256: c39227968c3088aa9ea5d4a320448f19bb5a9f56d0aff475fe715871421d3502 Description: abstraction for power management - shared library Multi-Arch: same Homepage: http://upower.freedesktop.org/ Description-md5: 11709d9e0d03275e3ab6991c83469900 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libupsclient-dev Priority: optional Section: libdevel Installed-Size: 289 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: amd64 Source: nut Version: 2.7.1-1ubuntu1 Replaces: libupsclient1-dev Depends: libupsclient3 (= 2.7.1-1ubuntu1) Conflicts: libupsclient1-dev Filename: pool/main/n/nut/libupsclient-dev_2.7.1-1ubuntu1_amd64.deb Size: 60332 MD5sum: 07e3ddaddaa170446e620d2edde2bfeb SHA1: 0d3ab003d886eac221f1eeebdffc9bcd53c55e34 SHA256: 39fa781c0b64fb2b948a146cf3c97c22110429ae7736cb8f5a364bfa24dd9767 Description: network UPS tools - development files Homepage: http://www.networkupstools.org/ Description-md5: 250337065f929786472de73f6a87196b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupsclient3 Priority: optional Section: libs Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: amd64 Source: nut Version: 2.7.1-1ubuntu1 Depends: libc6 (>= 2.15), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1) Pre-Depends: multiarch-support Filename: pool/main/n/nut/libupsclient3_2.7.1-1ubuntu1_amd64.deb Size: 59952 MD5sum: ccb5d031250bbe644e3aa6d98279119e SHA1: 24717dc4da8ef65e5d96855764616aa414c5e072 SHA256: 9e4020788cc85b2dafd54cdacc60bf004790f5cbfa5e6dc6d2cfcf28c6781050 Description: network UPS tools - client library Multi-Arch: same Homepage: http://www.networkupstools.org/ Description-md5: 114740a1a3e95f3f3ca2a9ad68b740a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libupstart-app-launch2 Priority: optional Section: libs Installed-Size: 132 Maintainer: Ted Gould Architecture: amd64 Source: upstart-app-launch Version: 0.3+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.4), libclick-0.4-0 (>= 0.4.18), libglib2.0-0 (>= 2.37.0), libjson-glib-1.0-0 (>= 0.12.0), liblttng-ust0 Pre-Depends: multiarch-support Filename: pool/main/u/upstart-app-launch/libupstart-app-launch2_0.3+14.04.20140411-0ubuntu1_amd64.deb Size: 23266 MD5sum: 52f39ae18fcb178be48b146abae8a346 SHA1: af782bcf9a3e2c6f7ff7b68a4525f53ac3becbbd SHA256: 7369626420d34de83018317d0e3c1dc3b4ea4d47ffe1a3ee2acaf096967ed7ab Description: library for sending requests to the upstart app launch Multi-Arch: same Homepage: http://launchpad.net/upstart-app-launch Description-md5: 97e29038665ea38c4f171b9828258fff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupstart-app-launch2-dev Priority: optional Section: libdevel Installed-Size: 111 Maintainer: Ted Gould Architecture: amd64 Source: upstart-app-launch Version: 0.3+14.04.20140411-0ubuntu1 Replaces: libupstart-app-launch1-dev Depends: libglib2.0-dev, libupstart-app-launch2 (= 0.3+14.04.20140411-0ubuntu1) Conflicts: libupstart-app-launch1-dev Filename: pool/main/u/upstart-app-launch/libupstart-app-launch2-dev_0.3+14.04.20140411-0ubuntu1_amd64.deb Size: 6832 MD5sum: 9dd2ba3c86fc0429e70a7c7282282b34 SHA1: bccd603abb3762729ba1589b1f29ad1f7edfb65f SHA256: b998ad7a09a564f40aee67cfe0ee90e1f5b55d9fe4169e290bede117a7c41707 Description: library for sending requests to the upstart app launch Multi-Arch: same Homepage: http://launchpad.net/upstart-app-launch Description-md5: 80827a9ab90d4c9235e2efbdfbd6b1f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupstart-dev Priority: optional Section: libdevel Installed-Size: 448 Maintainer: James Hunt Architecture: amd64 Source: upstart Version: 1.12.1-0ubuntu4 Depends: libupstart1 (= 1.12.1-0ubuntu4) Filename: pool/main/u/upstart/libupstart-dev_1.12.1-0ubuntu4_amd64.deb Size: 41340 MD5sum: 41c5105a0e1175bb3a5b81ee56ccd052 SHA1: d1df3c277b1e9e76e71043f6b2b83009a9aa1e4b SHA256: 92b9345ca67a6bd6b0d971b245adc7a6101b60663b6e43f7c2583527c27b4ac7 Description: Upstart Client Library (development files) Multi-Arch: same Homepage: http://upstart.ubuntu.com/ Orig-Maintainer: Steve Langasek Description-md5: ec96d63e3af639995a442cd6b0733410 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupstart1 Priority: optional Section: admin Installed-Size: 210 Maintainer: James Hunt Architecture: amd64 Source: upstart Version: 1.12.1-0ubuntu4 Depends: libc6 (>= 2.2.5), libdbus-1-3 (>= 1.2.16), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/u/upstart/libupstart1_1.12.1-0ubuntu4_amd64.deb Size: 43664 MD5sum: 23f800a63a27f0cb229ecc6a74cd6c43 SHA1: 3c92d4e4e6990ef31715f3ef320122007076aa32 SHA256: 3da47b683c847bbd5ef9ce6fb6fa226b431b83abd3a577ef958c32a7827a426a Description: Upstart Client Library Multi-Arch: same Homepage: http://upstart.ubuntu.com/ Orig-Maintainer: Steve Langasek Description-md5: 6c0f4f2b94a39a98cf6d9e420c504939 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: liburcu-dev Priority: extra Section: libdevel Installed-Size: 439 Maintainer: Ubuntu Developers Original-Maintainer: Jon Bernard Architecture: amd64 Source: liburcu Version: 0.7.12-0ubuntu2 Depends: liburcu1 (= 0.7.12-0ubuntu2) Filename: pool/main/libu/liburcu/liburcu-dev_0.7.12-0ubuntu2_amd64.deb Size: 63530 MD5sum: c009fdd6d419e2d2881d4a4aa518ddcb SHA1: 73afbbbb4523cd254df71e4f9ddffab4d20060da SHA256: 556e23881a60149740c8b996fbb6c638de08080987bb3136c7f03604b55b6bdd Description: userspace RCU (read-copy-update) library - development files Homepage: http://lttng.org/urcu Description-md5: 09835132a9a5c6007a4ef9e450ff9e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liburcu1 Priority: extra Section: libs Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Jon Bernard Architecture: amd64 Source: liburcu Version: 0.7.12-0ubuntu2 Depends: libc6 (>= 2.6) Filename: pool/main/libu/liburcu/liburcu1_0.7.12-0ubuntu2_amd64.deb Size: 34852 MD5sum: 1172db772c3640310d85518f92ce5aa6 SHA1: 2ac3e285032f428b9f67c3993054ed463fb4e6ab SHA256: 2535d4ed4d363b54e9e7fd0f03b96fb5ffcbc0f72d84027d52352b63ced280f7 Description: userspace RCU (read-copy-update) library Homepage: http://lttng.org/urcu Description-md5: de6f9b7147c6779e01a989b75c54e08b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liburi-perl Priority: optional Section: perl Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.60-1 Depends: perl, libmime-base64-perl, libnet-perl Suggests: libwww-perl Filename: pool/main/libu/liburi-perl/liburi-perl_1.60-1_all.deb Size: 89648 MD5sum: 70db2c9058d77f825487105eda74af32 SHA1: e5ed6feb9fc063126e8f3213468e0c6793600f83 SHA256: 2819215d501387bfb334a0ed9770bb65c1fd940978a52c4395056eedef08095c Description: module to manipulate and access URI strings Homepage: http://search.cpan.org/dist/URI/ Description-md5: 8af2948497c501a41ac31e21cb3641dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liburl-dispatcher1 Priority: optional Section: libs Installed-Size: 58 Maintainer: Ubuntu Developers Architecture: amd64 Source: url-dispatcher Version: 0.1+14.04.20140403-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Suggests: url-dispatcher (= 0.1+14.04.20140403-0ubuntu1) Filename: pool/main/u/url-dispatcher/liburl-dispatcher1_0.1+14.04.20140403-0ubuntu1_amd64.deb Size: 9930 MD5sum: c21324c44e84152dd88259e0f85d311d SHA1: ac89e503ca557c9fd44b9ee77c76c6e734cb064f SHA256: 96861cc0c34cc17e7e5a71744e99d677da1665808ae5c6877398a5f15714cbef Description: library for sending requests to the url dispatcher Multi-Arch: same Homepage: http://launchpad.net/url-dispatcher Description-md5: 85121071bb37a2b7f8b23299a0b2c9c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: liburl-dispatcher1-dev Priority: optional Section: libdevel Installed-Size: 48 Maintainer: Ubuntu Developers Architecture: amd64 Source: url-dispatcher Version: 0.1+14.04.20140403-0ubuntu1 Depends: libglib2.0-dev, liburl-dispatcher1 (= 0.1+14.04.20140403-0ubuntu1) Filename: pool/main/u/url-dispatcher/liburl-dispatcher1-dev_0.1+14.04.20140403-0ubuntu1_amd64.deb Size: 2384 MD5sum: 5c2e9ae5f9d79c8d0f8509d5807e240c SHA1: 9c1b32988cab045a002478d38e5c7386b25f8c40 SHA256: e267c7c05df757628e315d311d80a81ea0b7cbfdf24019576c866e10b507320d Description: developer files for sending requests to the url dispatcher Multi-Arch: same Homepage: http://launchpad.net/url-dispatcher Description-md5: c478d05ebab987d1d5bc551ecb674f92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb++-0.1-4c2 Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libusb Version: 2:0.1.12-23.3ubuntu1 Replaces: libusb++-0.1-4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libusb-0.1-4 (>= 2:0.1.12) Pre-Depends: multiarch-support Suggests: hotplug Conflicts: libusb++-0.1-4 Filename: pool/main/libu/libusb/libusb++-0.1-4c2_0.1.12-23.3ubuntu1_amd64.deb Size: 8916 MD5sum: 8d41757287430d72336056f19eeedc4d SHA1: 56b590ce37b736eb61317bfdfcd83c81fe491916 SHA256: d413163cf3c209cf21f7372a105fdb8f4fc81229380eebed3714292fd583f06e Description: userspace C++ USB programming library Multi-Arch: same Homepage: http://www.linux-usb.org/ Description-md5: 44674ccce2eee0070286abdd31c4b3e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb++-dev Priority: optional Section: libdevel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libusb Version: 2:0.1.12-23.3ubuntu1 Depends: libusb++-0.1-4c2 (= 2:0.1.12-23.3ubuntu1), libusb-dev (= 2:0.1.12-23.3ubuntu1), libstdc++6-4.4-dev | libstdc++-dev Filename: pool/main/libu/libusb/libusb++-dev_0.1.12-23.3ubuntu1_amd64.deb Size: 12296 MD5sum: 881b1e333532fa4013ab5d5f33135ceb SHA1: 0d6a8efa9692dabf0f706dd7f876b40df2538d2f SHA256: 4346c087d190bc4869ac5a4c8d9a5ab10f827edd2f348f4e497aa018297b23e0 Description: userspace C++ USB programming library development files Homepage: http://www.linux-usb.org/ Description-md5: f343c7e02c19529ec1dc21b87440eb58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb-0.1-4 Priority: important Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libusb Version: 2:0.1.12-23.3ubuntu1 Replaces: libusb0 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Conflicts: libccid (<< 0.9.2-3), libusb0 Filename: pool/main/libu/libusb/libusb-0.1-4_0.1.12-23.3ubuntu1_amd64.deb Size: 15952 MD5sum: 0cdf75659a9ae65c962921e9e2ae314b SHA1: 30097ef4e9ddd9ca9d3081055627b0855ad41cf2 SHA256: 2e55141f8f7104bac01b9afca2ca20fae3253fe9b0339da8e33ede90354f40cf Description: userspace USB programming library Multi-Arch: same Homepage: http://www.linux-usb.org/ Description-md5: df65c70347ceff88b808787853da75d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: libusb-1.0-0 Priority: standard Section: libs Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libusbx Version: 2:1.0.17-1ubuntu2 Depends: libc6 (>= 2.17), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/libu/libusbx/libusb-1.0-0_1.0.17-1ubuntu2_amd64.deb Size: 39594 MD5sum: f43ddce9c5e56c62e3ee1b54e74c0edc SHA1: 4abfd3af66c878b919f655b7efe6d759508158c6 SHA256: be38fcc51415b93ee9772597f534fd5372d6130466f0b95017bb3864af25ea92 Description: userspace USB programming library Multi-Arch: same Homepage: http://www.linux-usb.org/ Description-md5: 2dcfdc1b1a0fdb8e8f86496cec6f9062 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libusb-1.0-0-dbg Priority: extra Section: debug Installed-Size: 300 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libusbx Version: 2:1.0.17-1ubuntu2 Depends: libusb-1.0-0 (= 2:1.0.17-1ubuntu2) Filename: pool/main/libu/libusbx/libusb-1.0-0-dbg_1.0.17-1ubuntu2_amd64.deb Size: 76006 MD5sum: 3185c660464d9f84f3e2e0c644be1bdc SHA1: fab77d0d94251b1599b0149e7a34d4d7af1d1d50 SHA256: 8d06ea3e15d8d4b88fc27452c08166aee81f241af7286125c444a84f904bf1b8 Description: userspace USB programming library development files Multi-Arch: same Homepage: http://www.linux-usb.org/ Description-md5: 1d6bc14fd61385ccf3174d1f90de0a8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb-1.0-0-dev Priority: optional Section: libdevel Installed-Size: 281 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libusbx Version: 2:1.0.17-1ubuntu2 Depends: libusb-1.0-0 (= 2:1.0.17-1ubuntu2) Recommends: libusb-1.0-doc Filename: pool/main/libu/libusbx/libusb-1.0-0-dev_1.0.17-1ubuntu2_amd64.deb Size: 54682 MD5sum: 2151c234e5b53391caab9b07b4b07fb0 SHA1: 20bece6578d0453bf57dc2b8f61eb9aa058fe474 SHA256: 5ea52a92904bad5c19f671626d8d52ec6ea8c5eec4d6c6606facb32860db46b7 Description: userspace USB programming library development files Multi-Arch: same Homepage: http://www.linux-usb.org/ Description-md5: 07c28a16589d7bc7f4eda04968bb1f5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb-1.0-doc Priority: optional Section: doc Installed-Size: 1172 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: all Source: libusbx Version: 2:1.0.17-1ubuntu2 Replaces: libusb-1.0-0-dev (<< 1.0.16) Conflicts: libusb-1.0-0-dev (<< 1.0.16) Filename: pool/main/libu/libusbx/libusb-1.0-doc_1.0.17-1ubuntu2_all.deb Size: 114778 MD5sum: f4749eedcccea00e1c4dbb8802716267 SHA1: a89a33788af7246963f9838d93de01d9121a8158 SHA256: d80e92958bf49664b45931be2cd554d64f2d33a3a244a541e5368333e2f073a7 Description: documentation for userspace USB programming Homepage: http://www.linux-usb.org/ Description-md5: 82949d8bf4827404203382fc14d3c4b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb-dev Priority: optional Section: libdevel Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Source: libusb Version: 2:0.1.12-23.3ubuntu1 Replaces: libusb0 (<< 1:0.1.5-1) Depends: libusb-0.1-4 (= 2:0.1.12-23.3ubuntu1), libc6-dev | libc-dev Filename: pool/main/libu/libusb/libusb-dev_0.1.12-23.3ubuntu1_amd64.deb Size: 28924 MD5sum: 8f3bfcdbe83262daae79a14814dee926 SHA1: 95d58e55514144623e38478f93a73b279949b5d2 SHA256: ce35a970d9b4a3bba4c559fb9dde0528ab171f21c967f13e6c715a368c511f0f Description: userspace USB programming library development files Homepage: http://www.linux-usb.org/ Description-md5: 81ea89c5f13755e20b5bd0e8c61db27b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbmuxd-dev Priority: optional Section: libdevel Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: usbmuxd Version: 1.0.8-2ubuntu1 Depends: libusbmuxd2 (= 1.0.8-2ubuntu1) Filename: pool/main/u/usbmuxd/libusbmuxd-dev_1.0.8-2ubuntu1_amd64.deb Size: 4354 MD5sum: 37536e7f23b0771be41bcc699f5f727d SHA1: 7193742f93d0c0f220abfb8c013e41ed75770ef1 SHA256: a572272b973b5ae08b774eff4c5ac12afc757498dcff786aace9519303e34075 Description: USB multiplexor daemon for iPhone and iPod Touch devices - devel Homepage: http://marcansoft.com/blog/iphonelinux/usbmuxd/ Description-md5: 9f61258d5ec2de1b9f68ed3c9cc3de94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbmuxd2 Priority: optional Section: libs Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: usbmuxd Version: 1.0.8-2ubuntu1 Depends: libc6 (>= 2.15), libplist1 (>= 0.16) Filename: pool/main/u/usbmuxd/libusbmuxd2_1.0.8-2ubuntu1_amd64.deb Size: 15144 MD5sum: d80c393d06b434c818df0853cb532c0e SHA1: 0f8b349297b5548fb06d2ec3ad871feb36f3ccde SHA256: 9c4731e1fc7f3b4462455337b28b394a3a23708703e01254a731468f15bdf7fd Description: USB multiplexor daemon for iPhone and iPod Touch devices - library Homepage: http://marcansoft.com/blog/iphonelinux/usbmuxd/ Description-md5: a758250e6a9071eca15221f3c421e4fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libusbmuxd2-dbg Priority: extra Section: debug Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: usbmuxd Version: 1.0.8-2ubuntu1 Depends: libusbmuxd2 (= 1.0.8-2ubuntu1) Filename: pool/main/u/usbmuxd/libusbmuxd2-dbg_1.0.8-2ubuntu1_amd64.deb Size: 80162 MD5sum: b930f2e64a36d7a36717f7269d26a9c8 SHA1: 0b4d7773000134ce00a3cf8df9e55f8fe6cbafb9 SHA256: a8827502ab861e034319a0856cbdd43ef4082a412f7d074718939d845a1132e7 Description: USB multiplexor daemon for iPhone and iPod Touch devices - debug Homepage: http://marcansoft.com/blog/iphonelinux/usbmuxd/ Description-md5: e7266aa13497f0f4c4061a6ece8d7209 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbredirhost-dev Priority: optional Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: amd64 Source: usbredir Version: 0.6-2ubuntu1 Depends: libusbredirhost1 (= 0.6-2ubuntu1), libusbredirparser-dev Filename: pool/main/u/usbredir/libusbredirhost-dev_0.6-2ubuntu1_amd64.deb Size: 13800 MD5sum: 289e6a15261c95fc1f3120a0a6549c17 SHA1: 041e0c655f036f3d102f7af9ed3adb2afc3eef9e SHA256: 34ce73c70de48d0d10650a8bff19a07429e515dca0b9c0bd6f85854a27d10425 Description: implementing the usb-host (*) side of a usbredir connection (development) Multi-Arch: same Homepage: http://www.spice-space.org/ Description-md5: a2e217f6ed91a9148a403133592de821 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbredirhost1 Priority: optional Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: amd64 Source: usbredir Version: 0.6-2ubuntu1 Depends: libc6 (>= 2.14), libusb-1.0-0 (>= 2:1.0.9~), libusbredirparser1 (>= 0.6) Pre-Depends: multiarch-support Filename: pool/main/u/usbredir/libusbredirhost1_0.6-2ubuntu1_amd64.deb Size: 16418 MD5sum: ea89f4899b873a207428e590f97c29ad SHA1: 15283b047446e9662aa8614b521a36f1aedb29e9 SHA256: 4dfd502342426699a2c77dfc8d7e50f929c2eb9a2d025ea8a3f009373043aef6 Description: Implementing the usb-host (*) side of a usbredir connection (runtime) Multi-Arch: same Homepage: http://www.spice-space.org/ Description-md5: 0eabe470b8cb492275afe337726e1574 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbredirparser-dev Priority: optional Section: libdevel Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: amd64 Source: usbredir Version: 0.6-2ubuntu1 Depends: libusbredirparser1 (= 0.6-2ubuntu1) Filename: pool/main/u/usbredir/libusbredirparser-dev_0.6-2ubuntu1_amd64.deb Size: 7958 MD5sum: 988541fd7ce1488585b73afbe263e7c0 SHA1: 0beda16ce159da1480c89f373eead37ac669ef28 SHA256: da2756358f2f0992f0bfd8ef6aef0c2575325651d2d62d1d1edb392617dccdc9 Description: Parser for the usbredir protocol (development) Multi-Arch: same Homepage: http://www.spice-space.org/ Description-md5: c3450ffda7083b08a8d41723338729e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbredirparser1 Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: amd64 Source: usbredir Version: 0.6-2ubuntu1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/u/usbredir/libusbredirparser1_0.6-2ubuntu1_amd64.deb Size: 13200 MD5sum: 6ac0ae466c649cb8b7021a26c76188cd SHA1: 8e151a8d1f09a99035b07ea77cadf901de1fb8ad SHA256: d3240645b100a9f0a9d244edcfa206aab56ef2af0705f0a6de11acea8c11f5ae Description: Parser for the usbredir protocol (runtime) Multi-Arch: same Homepage: http://www.spice-space.org/ Description-md5: 4c9c38be0a503f1e82cac3fb3e5c3c46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libustr-1.0-1 Priority: required Section: libs Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Vaclav Ovsik Architecture: amd64 Source: ustr Version: 1.0.4-3ubuntu2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/u/ustr/libustr-1.0-1_1.0.4-3ubuntu2_amd64.deb Size: 63504 MD5sum: 1a4edb2830d54ad6f256e5afb8e918eb SHA1: 230152624b2e27fd1726c9327f6ab92e56490a46 SHA256: bb42b2a96741b182ff97d4d708131787e4ee242eca03a04667d4955ea71901de Description: Micro string library: shared library Multi-Arch: same Homepage: http://www.and.org/ustr/ Description-md5: 3b313e492269d05b2f9ba5d0aa1bd7a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libustr-1.0-1-dbg Priority: extra Section: libs Installed-Size: 919 Maintainer: Ubuntu Developers Original-Maintainer: Vaclav Ovsik Architecture: amd64 Source: ustr Version: 1.0.4-3ubuntu2 Depends: libustr-1.0-1 (= 1.0.4-3ubuntu2) Filename: pool/main/u/ustr/libustr-1.0-1-dbg_1.0.4-3ubuntu2_amd64.deb Size: 165036 MD5sum: 2fd9990075adb4ad167f03ff81a12e15 SHA1: df56aa9c8a8f85d2805d0ed5b7cd55c235b924a9 SHA256: c28428539c1cbc8068464203cf33e7ea3b0742d5db33c89d911e30babfb2d306 Description: Micro string library: debugging symbols Multi-Arch: same Homepage: http://www.and.org/ustr/ Description-md5: 22ff399eb4320a3487e0cced031de434 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libustr-dev Priority: optional Section: libdevel Installed-Size: 1415 Maintainer: Ubuntu Developers Original-Maintainer: Vaclav Ovsik Architecture: amd64 Source: ustr Version: 1.0.4-3ubuntu2 Depends: libustr-1.0-1 (= 1.0.4-3ubuntu2), libc6-dev Filename: pool/main/u/ustr/libustr-dev_1.0.4-3ubuntu2_amd64.deb Size: 202286 MD5sum: 5fa21dda813ae824cce1ff1dfad1918f SHA1: d4b22d82c51cd71a0b6a317a1e7ddf74ec36c2ba SHA256: f474eba5da8f5af01976361bbcc002a715125fe91c2b5872a9733cb548a5546e Description: Micro string library: development stuff Homepage: http://www.and.org/ustr/ Description-md5: 541340efa7ca3abda263451b0910c6d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libustr-doc Priority: optional Section: doc Installed-Size: 524 Maintainer: Ubuntu Developers Original-Maintainer: Vaclav Ovsik Architecture: all Source: ustr Version: 1.0.4-3ubuntu2 Suggests: libustr-dev Filename: pool/main/u/ustr/libustr-doc_1.0.4-3ubuntu2_all.deb Size: 84790 MD5sum: ca8eddab59ae8df46916d2efe46050a9 SHA1: d6bb0e8ef37dedc98233a2cc54fac6f34ce380c1 SHA256: 272beb42e6e9e0486ee102f5ee45da58639d744315a1d2e79a641083faaabed8 Description: Micro string library: documentation Homepage: http://www.and.org/ustr/ Description-md5: 1e9d520b88a4a487f055a5a2fae44165 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libutempter-dev Priority: optional Section: libdevel Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: libutempter Version: 1.1.5-4build1 Depends: libutempter0 (= 1.1.5-4build1) Filename: pool/main/libu/libutempter/libutempter-dev_1.1.5-4build1_amd64.deb Size: 4158 MD5sum: ede4fb3edacc71132451d3d881848ee2 SHA1: 4b2851418c8ac17e50f83bb1f9a0c6ea82d8a584 SHA256: 3de5ce6d1829b8510b829fe45a24278c700f5acb1302b3b018943280223c3394 Description: A privileged helper for utmp/wtmp updates (development) Homepage: http://freshmeat.net/projects/libutempter Description-md5: 43b68f72bef1bc02cc7b02db6473a7ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libutempter0 Priority: optional Section: libs Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: amd64 Source: libutempter Version: 1.1.5-4build1 Depends: libc6 (>= 2.4), adduser Filename: pool/main/libu/libutempter/libutempter0_1.1.5-4build1_amd64.deb Size: 8366 MD5sum: a883406e2bd15e1fefe82c4bb7989f48 SHA1: de6d98159314bdb8baa06ed809f2b581c31d4782 SHA256: 8cb037099b55d6a92dc08ea438b61f8a166e86fc4cc95c2c155422ba57ce7a8e Description: A privileged helper for utmp/wtmp updates (runtime) Homepage: http://freshmeat.net/projects/libutempter Description-md5: b081753f0ead8baa651aa69cdcf0807a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libuuid-perl Priority: optional Section: perl Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.05-1 Depends: perl-base (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4), libuuid1 (>= 2.16) Conflicts: doc-base (<< 0.10.3) Filename: pool/main/libu/libuuid-perl/libuuid-perl_0.05-1_amd64.deb Size: 10520 MD5sum: 846a17a95c34a0c8059980424fb4246e SHA1: 0b87b54eac624e26591f1e6402d0335f3159003c SHA256: de53d2facd724553ee1d37a399394cc3cec93d3bb9c9bc9c67ab6b4ccd288637 Description: Perl extension for using UUID interfaces as defined in e2fsprogs Homepage: https://metacpan.org/release/UUID/ Description-md5: 6da18fe44fde90df04520cf56e86e758 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: libuuid1 Priority: required Section: libs Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: amd64 Source: util-linux Version: 2.20.1-5.1ubuntu20 Replaces: e2fsprogs (<< 1.34-1) Depends: passwd, libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: uuid-runtime Filename: pool/main/u/util-linux/libuuid1_2.20.1-5.1ubuntu20_amd64.deb Size: 11066 MD5sum: d7e924f2797c33addc2c8aa93cbaf783 SHA1: 65ada87517e72e8dabf7aa98a77cea490f12ef1b SHA256: c8a238e3f42a23e2c0d2d3a0fe450af75affb56731719e1e8662980ace71dd25 Description: Universally Unique ID library Multi-Arch: same Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: cdcb90f3bb78d05cd58baab4e78716b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libv4l-0 Priority: optional Section: libs Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Gregor Jasny Architecture: amd64 Source: v4l-utils Version: 1.0.1-1 Depends: libv4lconvert0 (= 1.0.1-1), libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/v/v4l-utils/libv4l-0_1.0.1-1_amd64.deb Size: 38842 MD5sum: c0993081f2d043704cefee7f6fc2375c SHA1: e0713734d7e9a335129ad07744f10148d67e1ec4 SHA256: d20f6002cf836d61e75265980675150f5a552e038888af6a515a12e5c59eea1a Description: Collection of video4linux support libraries Multi-Arch: same Homepage: http://linuxtv.org/downloads/v4l-utils/ Description-md5: 51ed604a5803d8a2ecaa5742927e357e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libv4l-dev Priority: optional Section: libdevel Installed-Size: 435 Maintainer: Ubuntu Developers Original-Maintainer: Gregor Jasny Architecture: amd64 Source: v4l-utils Version: 1.0.1-1 Depends: libv4l-0 (= 1.0.1-1), libv4lconvert0 (= 1.0.1-1), libv4l2rds0 (= 1.0.1-1) Suggests: pkg-config (>= 0.18) Filename: pool/main/v/v4l-utils/libv4l-dev_1.0.1-1_amd64.deb Size: 102214 MD5sum: 6f15af88c5230ed9d1cca8bcb10ef0be SHA1: 906efdef767bde2598d32984fdaf47f2e0808c51 SHA256: be8e1437fc19b2170495095cfbbf2dda4d9888dcc9a7366caa074f3941733f8e Description: Collection of video4linux support libraries (development files) Multi-Arch: same Homepage: http://linuxtv.org/downloads/v4l-utils/ Description-md5: f55e727a780c8a0816ceba845026f592 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libv4l2rds0 Priority: optional Section: libs Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Gregor Jasny Architecture: amd64 Source: v4l-utils Version: 1.0.1-1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/v/v4l-utils/libv4l2rds0_1.0.1-1_amd64.deb Size: 15882 MD5sum: 27a9163d1a52e53de7a36256a69bd283 SHA1: f9a85e16e6f442fcedf5f149d2bd31ab84dd21ed SHA256: fbc247bf8c04d92ab3ba54775379b3965d3c0bd32125549c1d1bfb2086c7f52b Description: Video4Linux Radio Data System (RDS) decoding library Multi-Arch: same Homepage: http://linuxtv.org/downloads/v4l-utils/ Description-md5: 74ec40f7e17d3b15fb7326c3157e4460 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libv4lconvert0 Priority: optional Section: libs Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Gregor Jasny Architecture: amd64 Source: v4l-utils Version: 1.0.1-1 Replaces: libv4l-0 (<< 0.8.5-4) Depends: libc6 (>= 2.14), libjpeg8 (>= 8c) Pre-Depends: multiarch-support Breaks: libv4l-0 (<< 0.8.5-4) Filename: pool/main/v/v4l-utils/libv4lconvert0_1.0.1-1_amd64.deb Size: 74846 MD5sum: e83f3caea437bd7968acd2cab518f791 SHA1: bc2210bf0efeaca1ffd7b3a9a264c6d40e86674a SHA256: e096f4db5d7f102ccc3f03ed336f35b0f90101938ce2baa818c0096a4f4e4bee Description: Video4linux frame format conversion library Multi-Arch: same Homepage: http://linuxtv.org/downloads/v4l-utils/ Description-md5: 613f4d61c68c40d61eea4e310f26e2c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvala-0.18-0 Priority: optional Section: libs Installed-Size: 2753 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: vala-0.18 Version: 0.18.1-0ubuntu11 Depends: libc6 (>= 2.3.4), libglib2.0-0 (>= 2.26) Pre-Depends: multiarch-support Filename: pool/main/v/vala-0.18/libvala-0.18-0_0.18.1-0ubuntu11_amd64.deb Size: 754194 MD5sum: e36bd0acfdf8704c5b1733b18db84f42 SHA1: b5bbd024d79b16e1cfd65ebd241ea8a45c69a5b6 SHA256: c33557dca33de9eb84513a654e58efc01adcdefed64f7f9d83922e11d3a3f429 Description: C# like language for the GObject system - library Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 8e6c5c5f694deba240aa5a0dbccd9a44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvala-0.18-0-dbg Priority: extra Section: debug Installed-Size: 17020 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: vala-0.18 Version: 0.18.1-0ubuntu11 Depends: libvala-0.18-0 (= 0.18.1-0ubuntu11) Filename: pool/main/v/vala-0.18/libvala-0.18-0-dbg_0.18.1-0ubuntu11_amd64.deb Size: 3479256 MD5sum: 8c06d83c20ed74d11fa3ab9c84ad604c SHA1: 95bae175691dd04444b0d8d04f0219157cd22a5e SHA256: aeaad8daa8e40d5865eea7b73aac1d4588180b341b4a9a6e87466fd346fbba43 Description: C# like language for the GObject system - library symbols Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 795bdfffc586d39f523ce637c166a800 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvala-0.18-dev Priority: optional Section: libdevel Installed-Size: 653 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: vala-0.18 Version: 0.18.1-0ubuntu11 Replaces: libvala-0.10-dev, libvala-0.12-dev Provides: libvala-dev Depends: libvala-0.18-0 (= 0.18.1-0ubuntu11), libglib2.0-dev (>= 2.26) Filename: pool/main/v/vala-0.18/libvala-0.18-dev_0.18.1-0ubuntu11_amd64.deb Size: 48180 MD5sum: 7c291048c84d00d7156373bef02a18af SHA1: 1b6ae88375f925e8bec2bb5b10cbec6db9fe6375 SHA256: b175d09d92b467b59d968788bc2c60373cfc45d2db500388b0733f6ed8940403 Description: C# like language for the GObject system - development headers Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 9b64d2066da66406573be47d933fd9db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvala-0.22-0 Priority: optional Section: libs Installed-Size: 2793 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: vala-0.22 Version: 0.22.1-0ubuntu1 Depends: libc6 (>= 2.3.4), libglib2.0-0 (>= 2.26) Pre-Depends: multiarch-support Filename: pool/main/v/vala-0.22/libvala-0.22-0_0.22.1-0ubuntu1_amd64.deb Size: 767574 MD5sum: e96c94c014c7fb77ca6db6333cc1ce54 SHA1: 9bd86dfdedaca3d7807b3b4f67c408eba9643698 SHA256: 84ab4cf99d162d9d0a63e6c50807ec94cd57654770de2949c1fcbaa88b274dc8 Description: C# like language for the GObject system - library Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 8e6c5c5f694deba240aa5a0dbccd9a44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvala-0.22-0-dbg Priority: extra Section: debug Installed-Size: 19346 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: vala-0.22 Version: 0.22.1-0ubuntu1 Depends: libvala-0.22-0 (= 0.22.1-0ubuntu1) Filename: pool/main/v/vala-0.22/libvala-0.22-0-dbg_0.22.1-0ubuntu1_amd64.deb Size: 3635158 MD5sum: 45b3894e1143fe47b72c5cf2bf48caa6 SHA1: 9d08f2f92a42aef82342234059032f1ae84f7c58 SHA256: 46579c96d5c1cab3ff6d065cfcdcfb22b61ac010c737e3ae3da1792f50498fea Description: C# like language for the GObject system - library symbols Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 795bdfffc586d39f523ce637c166a800 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvala-0.22-dev Priority: optional Section: libdevel Installed-Size: 663 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: vala-0.22 Version: 0.22.1-0ubuntu1 Replaces: libvala-0.10-dev, libvala-0.12-dev Provides: libvala-dev Depends: libvala-0.22-0 (= 0.22.1-0ubuntu1), libglib2.0-dev (>= 2.26) Filename: pool/main/v/vala-0.22/libvala-0.22-dev_0.22.1-0ubuntu1_amd64.deb Size: 48152 MD5sum: b6060bbb56a0928d1f5d527e4b45ef78 SHA1: 631817c0619d353fa09c7036e7cd64864fa8f657 SHA256: 0fac6607b25361ff84cae440637b467ac76b321e227db4748924fa9303e55930 Description: C# like language for the GObject system - development headers Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 9b64d2066da66406573be47d933fd9db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvariable-magic-perl Priority: optional Section: perl Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.53-1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2.5) Filename: pool/main/libv/libvariable-magic-perl/libvariable-magic-perl_0.53-1_amd64.deb Size: 36204 MD5sum: ec4b0ab1f14db1ff8b8f0371d60ffe19 SHA1: 5cffcd6efe97fc38048b5f9b108c3e3f69dec42a SHA256: 034c5b3508b5aad4436c147e5b0097ad9f4a80ddc615335441f98070d2ff0644 Description: module to associate user-defined magic to variables from Perl Homepage: https://metacpan.org/release/Variable-Magic/ Description-md5: 8047890d2dabed3dfb811264b14163b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvdpau-dev Priority: optional Section: libdevel Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: libvdpau Version: 0.7-1 Depends: libvdpau1 (= 0.7-1), libx11-dev Suggests: libvdpau-doc Filename: pool/main/libv/libvdpau/libvdpau-dev_0.7-1_amd64.deb Size: 38300 MD5sum: c1c3c635379094f6723afbd7a9a5d72e SHA1: 3dc7c9499fe588a91d2833dd080d05deeee482ff SHA256: 45fe6e928b40434911808fe0fc00001815cfdb53c88bc6e838e6ee5939e6427a Description: Video Decode and Presentation API for Unix (development files) Multi-Arch: same Homepage: http://cgit.freedesktop.org/~aplattner/libvdpau Description-md5: f8e43b3dc3e8300c9319b4c1cbee57f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvdpau-doc Priority: optional Section: doc Installed-Size: 1642 Maintainer: Ubuntu Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: all Source: libvdpau Version: 0.7-1 Filename: pool/main/libv/libvdpau/libvdpau-doc_0.7-1_all.deb Size: 469746 MD5sum: 710424281c9bec10dcc871a09b7ea571 SHA1: 07e9e670202285039425d85fa919d935cf21d023 SHA256: 08e340296b1cf471e34a27bcef119885326ee6d190d825950dbec56e271e4025 Description: Video Decode and Presentation API for Unix (documentation) Homepage: http://cgit.freedesktop.org/~aplattner/libvdpau Description-md5: 34a9d3089124a5203de333d7a3f6aa9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvdpau1 Priority: optional Section: libs Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: libvdpau Version: 0.7-1 Replaces: lib32vdpau1 Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Suggests: nvidia-vdpau-driver | vdpau-driver Conflicts: lib32vdpau1 Filename: pool/main/libv/libvdpau/libvdpau1_0.7-1_amd64.deb Size: 30338 MD5sum: d188649d2140857af30571ed2673b695 SHA1: 190149866c8f734affc9ee0f04cb3f8b40880a5a SHA256: 20c4b1e5ce1209f9d862b2ee85311dcd7143bbf52d1b506d5afc3a8158c7604e Description: Video Decode and Presentation API for Unix (libraries) Multi-Arch: same Homepage: http://cgit.freedesktop.org/~aplattner/libvdpau Description-md5: 4db054f80a1c742472d24fb11ef7f221 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libverto-dev Priority: optional Section: libdevel Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: libverto Version: 0.2.4-1ubuntu2 Depends: libverto1 (= 0.2.4-1ubuntu2), libverto-glib1 (= 0.2.4-1ubuntu2), libverto-libevent1 (= 0.2.4-1ubuntu2) Filename: pool/main/libv/libverto/libverto-dev_0.2.4-1ubuntu2_amd64.deb Size: 17354 MD5sum: 4290aa753e18488781f061ae0d8545d0 SHA1: da7f8d51aef68854230b7799e6a10c98b76a7132 SHA256: 7bd2eb0708f3ae9fe61e9a748449992c7fefad00a90ed675c6e092c1da89b328 Description: Event loop abstraction for Libraries - Development Homepage: http://fedorahosted.net/libverto Description-md5: c360d826201d8c62e0f4ab70dc3a5009 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libverto-glib1 Priority: optional Section: libs Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: libverto Version: 0.2.4-1ubuntu2 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.16.0), libverto1 (>= 0.2.4) Pre-Depends: multiarch-support Filename: pool/main/libv/libverto/libverto-glib1_0.2.4-1ubuntu2_amd64.deb Size: 5428 MD5sum: 217b2dba0dd2c0738adf6e93e18119d6 SHA1: c6b2ee3b4f9d00c07e149a845b823768be397115 SHA256: 09672cb6a602cb0fd8f7a4e1689d914b742b658437a6423940694b6580d8c36e Description: Event loop abstraction for Libraries - glib Multi-Arch: same Homepage: http://fedorahosted.net/libverto Description-md5: fbe13a94e4036f644c18a392ac828ff5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libverto-libevent1 Priority: optional Section: libs Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: libverto Version: 0.2.4-1ubuntu2 Depends: libc6 (>= 2.2.5), libevent-2.0-5 (>= 2.0.10-stable), libverto1 (>= 0.2.4) Pre-Depends: multiarch-support Filename: pool/main/libv/libverto/libverto-libevent1_0.2.4-1ubuntu2_amd64.deb Size: 5354 MD5sum: 82a20d42c64a01d81a95cf5c86236c06 SHA1: 44e8eb2445bae3169a889406ff52000a7b2afd37 SHA256: 43f6cc2968cbe6efb9b5e5a10b785ee3d7ac12ab894b128c5023f202e2257302 Description: Event loop abstraction for Libraries - libev Multi-Arch: same Homepage: http://fedorahosted.net/libverto Description-md5: 9f44a155ad7509a18a6a0864fa556169 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libverto1 Priority: optional Section: libs Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: amd64 Source: libverto Version: 0.2.4-1ubuntu2 Depends: libc6 (>= 2.3.4), libverto-libevent1 | libverto-libev1 | libverto-glib1 Pre-Depends: multiarch-support Filename: pool/main/libv/libverto/libverto1_0.2.4-1ubuntu2_amd64.deb Size: 9178 MD5sum: 43c970afc85249154bbcda21db92a922 SHA1: a3051252bf4edb3943c9a722cf752f6262150ef0 SHA256: e68cee9b1561b4bf58fb841a756527a53bc2cb26d06c83f4980ad955c15d3629 Description: Event loop abstraction for Libraries - Runtime Multi-Arch: same Homepage: http://fedorahosted.net/libverto Description-md5: 141da444b764f3506e854e43a81454ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvformat-dev Priority: optional Section: libdevel Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Preud'homme Architecture: amd64 Source: libvformat Version: 1.13-10 Depends: libvformat0 (= 1.13-10), dpkg (>= 1.15.4) | install-info Filename: pool/main/libv/libvformat/libvformat-dev_1.13-10_amd64.deb Size: 57716 MD5sum: 6aaff9e2e3c0a382584275b8e5bd9031 SHA1: 878854ca82063db3b696219c3a53a1ab9ea9fa08 SHA256: add34edc763ee1cc051512096012ef8d5b62309dceb32ca046a37fa852f27015 Description: library to read and write vcard files (development files) Homepage: http://sourceforge.net/projects/vformat/ Description-md5: 7e54a80f8c3a5c26b11c98dae08699d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvformat0 Priority: optional Section: libs Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Preud'homme Architecture: amd64 Source: libvformat Version: 1.13-10 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/libv/libvformat/libvformat0_1.13-10_amd64.deb Size: 17976 MD5sum: 073be15337645bf693828aeee8f7796d SHA1: fa8504028d06baea26fd3934bfa458b2e0700f5e SHA256: 37b8edefd1b6dd86934c0c7cd03b8783f45d25659537ee2c4ca030bfb11a47c3 Description: library to read and write vcard files Multi-Arch: same Homepage: http://sourceforge.net/projects/vformat/ Description-md5: 7398badefeade388797e0914e152f878 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libvigraimpex-dev Priority: optional Section: libdevel Installed-Size: 6829 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: libvigraimpex Version: 1.10.0+dfsg-3ubuntu2 Depends: python:any, libvigraimpex5 (= 1.10.0+dfsg-3ubuntu2), libfftw3-dev, libpng12-dev, libjpeg-dev, libtiff5-dev Suggests: libvigraimpex-doc Filename: pool/main/libv/libvigraimpex/libvigraimpex-dev_1.10.0+dfsg-3ubuntu2_amd64.deb Size: 1868652 MD5sum: 54734af31abc7bec5722c4ad1a893fb5 SHA1: f98085aa81ddc9ad5526a714c5027644084feff1 SHA256: 785999088a2a6e41ce2c934a076480b2dcd7792df36a378ae4785596ad640d20 Description: development files for the C++ computer vision library Homepage: http://hci.iwr.uni-heidelberg.de/vigra/ Description-md5: 06bc1a091777909e5e2ab17ebcd92db0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvigraimpex-doc Priority: optional Section: doc Installed-Size: 40637 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Source: libvigraimpex Version: 1.10.0+dfsg-3ubuntu2 Suggests: libvigraimpex-dev, python-vigra-doc Filename: pool/main/libv/libvigraimpex/libvigraimpex-doc_1.10.0+dfsg-3ubuntu2_all.deb Size: 3419880 MD5sum: efdeb41ff9cc298b4776d3961e67b728 SHA1: 89de5eaa57cad3a248038f1b6e7f202323879523 SHA256: abfedd6dbf35253f7412e3783004c99f1fd9a6febe0088b8c715e7c1bdf3c1e0 Description: Documentation for the C++ computer vision library Homepage: http://hci.iwr.uni-heidelberg.de/vigra/ Description-md5: 68e91538adca7e7262cb997daf253940 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvigraimpex5 Priority: optional Section: libs Installed-Size: 461 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: libvigraimpex Version: 1.10.0+dfsg-3ubuntu2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libilmbase6 (>= 1.0.1), libjpeg8 (>= 8c), libopenexr6 (>= 1.6.1), libpng12-0 (>= 1.2.13-4), libstdc++6 (>= 4.4.0), libtiff5 (>= 4.0.3) Filename: pool/main/libv/libvigraimpex/libvigraimpex5_1.10.0+dfsg-3ubuntu2_amd64.deb Size: 132396 MD5sum: 742cef6ad67b4f6b92a5d26d53c53563 SHA1: d83412a0c221f396f5017e1c2adac6d0f8bf23f3 SHA256: da7e54f3630276e3b0e67d8fefd78ee051d80faafce34161532f7aa289db6b85 Description: C++ computer vision library Homepage: http://hci.iwr.uni-heidelberg.de/vigra/ Description-md5: 4e10b79b88242227a01907ad6c456723 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvirt-bin Priority: optional Section: devel Installed-Size: 11561 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: libvirt Version: 1.2.2-0ubuntu13 Depends: libapparmor1 (>= 2.6~devel), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libblkid1 (>= 2.17.2), libc6 (>= 2.17), libcap-ng0, libdbus-1-3 (>= 1.1.1), libdevmapper1.02.1 (>= 2:1.02.20), libgnutls26 (>= 2.12.17-0), libnetcf1 (>= 1:0.2.2), libnl-3-200 (>= 3.2.7), libnuma1, libparted0debian1 (>= 2.2-1), libpcap0.8 (>= 1.0.0), libpciaccess0, librados2, librbd1, libreadline6 (>= 6.0), libsasl2-2 (>= 2.1.24), libudev1 (>= 183), libvirt0 (= 1.2.2-0ubuntu13), libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), libxml2 (>= 2.7.4), libyajl2 (>= 2.0.4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), adduser, apparmor (>= 2.8.95~2430-0ubuntu4), bridge-utils, cgroup-lite | cgroup-bin, dnsmasq-base (>= 2.46-1), dbus, gettext-base, iptables (>= 1.4.10), logrotate, netcat-openbsd Recommends: libxml2-utils, gawk, ebtables, dmidecode, iproute, parted, pm-utils Suggests: policykit-1 (>= 0.105-3ubuntu3), qemu-kvm | qemu (>= 0.9.1), radvd Breaks: xen-utils-4.1, xen-utils-4.3 Filename: pool/main/libv/libvirt/libvirt-bin_1.2.2-0ubuntu13_amd64.deb Size: 2062010 MD5sum: 1fe4498f2532d76a21d55d8a234ebf39 SHA1: e160f18392ba2c24b502e95f8d98d3649adda8a3 SHA256: aa35e7252b00b50f6ff547fd18a2431e024155df8951d2a8a57c24c9e215629d Description: programs for the libvirt library Enhances: qemu, qemu-kvm, xen Homepage: http://libvirt.org Description-md5: e153091b05eb8ed8041905513d4d18ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libvirt-dev Priority: optional Section: devel Installed-Size: 2673 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: libvirt Version: 1.2.2-0ubuntu13 Replaces: libvirt-bin (<< 1.2.0~) Depends: libvirt0 (= 1.2.2-0ubuntu13), libxen-dev Recommends: pkg-config Filename: pool/main/libv/libvirt/libvirt-dev_1.2.2-0ubuntu13_amd64.deb Size: 102164 MD5sum: 8caa893d23674986de459793b15e6c71 SHA1: 8e1efea8f8071c590881338aa6590408b3d339a5 SHA256: cabc17c4281ac5d3def5aa6ca9c321f90db63e29288e5228d8bfe6ef50a72ce1 Description: development files for the libvirt library Homepage: http://libvirt.org Description-md5: 7e0bab852c890b732dbbdd941dc00165 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvirt-doc Priority: optional Section: devel Installed-Size: 7471 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: all Source: libvirt Version: 1.2.2-0ubuntu13 Suggests: devhelp Filename: pool/main/libv/libvirt/libvirt-doc_1.2.2-0ubuntu13_all.deb Size: 1058132 MD5sum: a36ed6dcb58a5ab842d861296253c6f0 SHA1: ede862afe6c8efcbb8e5db503c9e3c0ae105e7de SHA256: bb02f2bac7a5f22ed8cf3e970c6792ca5042bb75a3e8ededa25e9208f94b6f98 Description: documentation for the libvirt library Homepage: http://libvirt.org Description-md5: 6a786cd039fea1d6785874bfff0aac5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvirt0 Priority: optional Section: devel Installed-Size: 4733 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: libvirt Version: 1.2.2-0ubuntu13 Depends: libapparmor1 (>= 2.6~devel), libaudit1 (>= 1:2.2.1), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.17), libcap-ng0, libdbus-1-3 (>= 1.1.1), libdevmapper1.02.1 (>= 2:1.02.20), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libnl-3-200 (>= 3.2.7), libnuma1, libsasl2-2 (>= 2.1.24), libxml2 (>= 2.7.4), libyajl2 (>= 2.0.4) Suggests: lvm2 Filename: pool/main/libv/libvirt/libvirt0_1.2.2-0ubuntu13_amd64.deb Size: 829520 MD5sum: 7e2a0b1e8ce1625ec178ea7878c12890 SHA1: 1764ee5dbfa2cda68f97af027d5287a6e7c3ad3a SHA256: 6869d37540f02d2987f406a7ea9b9ec5d79055008fe232423631a9738734a970 Description: library for interfacing with different virtualization systems Homepage: http://libvirt.org Description-md5: 048e37ae97123b1566015795d54596dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libvirt0-dbg Priority: optional Section: libs Installed-Size: 37754 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: libvirt Version: 1.2.2-0ubuntu13 Depends: libvirt0 (= 1.2.2-0ubuntu13) Filename: pool/main/libv/libvirt/libvirt0-dbg_1.2.2-0ubuntu13_amd64.deb Size: 6871828 MD5sum: 763323deefb7778047edc7995b69c8a3 SHA1: c9673aff892062c73b755400feea4c536f6bb588 SHA256: e26665451aea0f55c335e123cc5eb6d8f9521905ece8717c73a025aa141e8223 Description: library for interfacing with different virtualization systems Homepage: http://libvirt.org Description-md5: 5f02416fd3220b9d10c0d33b4cab8a63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvirtodbc0 Priority: optional Section: database Installed-Size: 2470 Maintainer: Ubuntu Developers Original-Maintainer: José Manuel Santamaría Lema Architecture: amd64 Source: virtuoso-opensource Version: 6.1.6+repack-0ubuntu3 Depends: virtuoso-opensource-6.1-common (= 6.1.6+repack-0ubuntu3), odbcinst, libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/v/virtuoso-opensource/libvirtodbc0_6.1.6+repack-0ubuntu3_amd64.deb Size: 776938 MD5sum: 31809c2d125025342e7690cc61fcb49b SHA1: 30aaba683f547ca24e078d2dc73af9176e2ad465 SHA256: 855c21c1b7405649e4a1124212a444b38db213e91616fc28fedf7b69b9b919df Description: high-performance database - ODBC libraries Homepage: http://virtuoso.openlinksw.com/wiki/main/Main/ Description-md5: c2d290dc0583240b820f00e5be7c1182 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libvisio-0.0-0 Priority: optional Section: libs Installed-Size: 738 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libvisio Version: 0.0.31-1ubuntu2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.6), libwpd-0.9-9, libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Breaks: libvisio-tools (<< 0.0.15~) Filename: pool/main/libv/libvisio/libvisio-0.0-0_0.0.31-1ubuntu2_amd64.deb Size: 204362 MD5sum: 9bb0f2b7e8d09281dd0748552e5ac039 SHA1: 4f5d2943aa7dae39537034bd8a27e8dcad64c0b7 SHA256: 0651369126f7e0f00f4f1ddf00116912aea276cacccb51e38a1eaf47ba81a944 Description: library for parsing the visio file structure Homepage: http://freedesktop.org/wiki/Software/libvisio Description-md5: 3700ded3e846875ca946cbdbd9dceb3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libvisio-dev Priority: optional Section: libdevel Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libvisio Version: 0.0.31-1ubuntu2 Depends: libvisio-0.0-0 (= 0.0.31-1ubuntu2), libwpd-dev (>= 0.9.0), libwpg-dev (>= 0.2.0) Filename: pool/main/libv/libvisio/libvisio-dev_0.0.31-1ubuntu2_amd64.deb Size: 2934 MD5sum: c463f3ea0bdfa0c99c770c4074fd7910 SHA1: 42cfe22bba73f6adf6838e83d2248b6099b7ecb8 SHA256: 7b40498a2b1061d48690576634b9d9583a5734756d812fe571030eee52795ec1 Description: library for parsing the visio file structure -- development Homepage: http://freedesktop.org/wiki/Software/libvisio Description-md5: 45cda1383405664b300506a39d9c1894 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvisio-doc Priority: optional Section: doc Installed-Size: 7001 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libvisio Version: 0.0.31-1ubuntu2 Filename: pool/main/libv/libvisio/libvisio-doc_0.0.31-1ubuntu2_all.deb Size: 357354 MD5sum: 41061ecc0a044cb58f4719667b4eb79f SHA1: 7e472435e1fbb2646d19eb1bb50d88c681216b92 SHA256: 67936eac1f0d12d8930e975a35a7b7a136823ad4d685c25f202936b8c7404274 Description: library for parsing the visio file structure -- documentatio Homepage: http://freedesktop.org/wiki/Software/libvisio Description-md5: 4da0b0dcd8d0a48b32ae67ff56d45a72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvisual-0.4-0 Priority: optional Section: libs Installed-Size: 308 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: libvisual Version: 0.4.0-5 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: libvisual-0.4-plugins Breaks: libvisual-0.4-plugins (<< 0.4.0.dfsg.1-5) Filename: pool/main/libv/libvisual/libvisual-0.4-0_0.4.0-5_amd64.deb Size: 107626 MD5sum: 96fbb7d1ab61c9fde70893c05e9bbfa6 SHA1: 632c855d32fce9ce70fc41f9fdfdc203d6bb55ac SHA256: 00055a0cd0ccccbed33618363f20c6da329fe53c6c87ac7d3c9aca59050d8d1c Description: Audio visualization framework Multi-Arch: same Homepage: http://sourceforge.net/projects/libvisual/ Description-md5: 5688c5d7e0141f6a94a930bb97367833 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvisual-0.4-dev Priority: optional Section: libdevel Installed-Size: 788 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: libvisual Version: 0.4.0-5 Replaces: libvisual0.2-dev Depends: libvisual-0.4-0 (= 0.4.0-5), pkg-config, libc6-dev | libc-dev Filename: pool/main/libv/libvisual/libvisual-0.4-dev_0.4.0-5_amd64.deb Size: 175916 MD5sum: 5b216bcaab6f2fee6d60e6faa6a0b4c2 SHA1: 122607ce4199536ff2cd172813bbeca59c783598 SHA256: 86014346a801fdc50a60c1e7cc9f39e4da7623e78f92ff55fa72a848a2c5615c Description: Audio visualization framework (development package) Homepage: http://sourceforge.net/projects/libvisual/ Description-md5: cf5726093c72479e9ba38eb6efbd76af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvisual-0.4-plugins Priority: optional Section: sound Installed-Size: 536 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: libvisual-plugins Version: 0.4.0.dfsg.1-7build1 Replaces: libvisual0.4-plugins Depends: libasound2 (>= 1.0.16), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libglu1-mesa | libglu1, libstdc++6 (>= 4.1.1), libvisual-0.4-0 (>= 0.4.0-4) Conflicts: libvisual0.4-plugins Filename: pool/main/libv/libvisual-plugins/libvisual-0.4-plugins_0.4.0.dfsg.1-7build1_amd64.deb Size: 131422 MD5sum: b7ab4f7f7781bda9c8ab4377f50e4dc9 SHA1: c6d90e42c29899b21d464b5b67da0ed80706795d SHA256: db9353de7eb8e567e3afb7104ffd2ca26403cbca447810286259a1f8e72994c0 Description: Audio visualization framework plugins Multi-Arch: same Description-md5: a4f9fac9fc7a81e2f0e649f9c307934c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvncserver-config Priority: optional Section: libdevel Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: amd64 Source: libvncserver Version: 0.9.9+dfsg-1ubuntu1 Replaces: libvncserver-dev (<< 0.9.9) Depends: libvncserver0 (= 0.9.9+dfsg-1ubuntu1) Breaks: libvncserver-dev (<< 0.9.9) Filename: pool/main/libv/libvncserver/libvncserver-config_0.9.9+dfsg-1ubuntu1_amd64.deb Size: 5198 MD5sum: 01791284bbe9eba02d42460cccc3867b SHA1: ef751bd53f27d6ce4afef43fd1858b1ffaf86e97 SHA256: 14ae0849307e475307772699807dcc0dfd3d3ddbf17fa707fd42a454f6ee0705 Description: API to write one's own vnc server - library utility Multi-Arch: foreign Homepage: http://libvncserver.sourceforge.net Description-md5: 3ed83f92d890152c3bb4e698120160b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvncserver-dev Priority: optional Section: x11 Installed-Size: 876 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: amd64 Source: libvncserver Version: 0.9.9+dfsg-1ubuntu1 Depends: libvncserver0 (= 0.9.9+dfsg-1ubuntu1), libgnutls-dev, libjpeg-dev, zlib1g-dev, libvncserver-config Filename: pool/main/libv/libvncserver/libvncserver-dev_0.9.9+dfsg-1ubuntu1_amd64.deb Size: 198818 MD5sum: 8421f9ca27e95982a16537bfd9044c34 SHA1: cb535adb49cf6fa26011b9c334ab2c14d47665f7 SHA256: 86d5c85cf7434f4d2888da1aab2723a453f0749c4a2c77ca56519064b627ba94 Description: API to write one's own vnc server - development files Multi-Arch: same Homepage: http://libvncserver.sourceforge.net Description-md5: bcc0abadd91abbb78a47d71e59feba5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvncserver0 Priority: optional Section: libs Installed-Size: 471 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: amd64 Source: libvncserver Version: 0.9.9+dfsg-1ubuntu1 Depends: libc6 (>= 2.15), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), libjpeg8 (>= 8c), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: libvncserver0-dbg (= 0.9.9+dfsg-1ubuntu1) Filename: pool/main/libv/libvncserver/libvncserver0_0.9.9+dfsg-1ubuntu1_amd64.deb Size: 168274 MD5sum: e79bf4fea6fc20237d502e9fcc195e4c SHA1: 63de43694d6a1077696e253673baa2fd9729c185 SHA256: 1a93f1fcdf2a0e6b651a91e5ccb9d7843ec757ce979937dfd4ba2ceb1b44bba5 Description: API to write one's own vnc server Multi-Arch: same Homepage: http://libvncserver.sourceforge.net Description-md5: 6bd9f2d870ec44b35d09bc72b386e7f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb Package: libvncserver0-dbg Priority: optional Section: libdevel Installed-Size: 604 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: amd64 Source: libvncserver Version: 0.9.9+dfsg-1ubuntu1 Depends: libvncserver0 (= 0.9.9+dfsg-1ubuntu1) Filename: pool/main/libv/libvncserver/libvncserver0-dbg_0.9.9+dfsg-1ubuntu1_amd64.deb Size: 497200 MD5sum: 25a8acc6fdc337135681213ca5fb8837 SHA1: ab4b982650beec6f6a0cf3fdd0dc654bbbe98dfb SHA256: fa6324377db09e3e42b5ab628accab9f046db97d73d777f0bc718538557cd982 Description: debugging symbols for libvncserver Multi-Arch: same Homepage: http://libvncserver.sourceforge.net Description-md5: ef17283c2d5c13223e281d0500b90179 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvoikko-dev Priority: optional Section: libdevel Installed-Size: 1105 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: amd64 Source: libvoikko Version: 3.7-2ubuntu2 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), libvoikko1 (= 3.7-2ubuntu2) Filename: pool/main/libv/libvoikko/libvoikko-dev_3.7-2ubuntu2_amd64.deb Size: 150162 MD5sum: aa6465a79afd751f3ccfb7c5636a591c SHA1: 1ff755a23240f5acc1bed832e5976e6591e2db0b SHA256: 1d2fe5c153d207f96ec7a90aaf3b1a2d1e7ccbaee60dfba6552aa604ea9c1b83 Description: Development files for libvoikko Multi-Arch: foreign Homepage: http://voikko.puimula.org/ Description-md5: 796da2e8d2fad015742b56c77797d845 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvoikko1 Priority: optional Section: libs Installed-Size: 372 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: amd64 Source: libvoikko Version: 3.7-2ubuntu2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Suggests: voikko-fi Breaks: voikko-fi (<< 1.4-1) Filename: pool/main/libv/libvoikko/libvoikko1_3.7-2ubuntu2_amd64.deb Size: 95484 MD5sum: 86a66c3566aa67ba280e0743754c8803 SHA1: 017b31f5c4e9d0a141e19d945f1e6e6a656f5c2f SHA256: e939e2fe4d8b600d6d7be84d021e6d29356f279d590de0f32e9548e3ce570666 Description: Library of free natural language processing tools Multi-Arch: same Homepage: http://voikko.puimula.org/ Description-md5: 26999e76e10b7ce0f7ddc8469d4cbece Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libvorbis-dbg Priority: extra Section: debug Installed-Size: 398 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: amd64 Source: libvorbis Version: 1.3.2-1.3ubuntu1 Depends: libvorbis0a (= 1.3.2-1.3ubuntu1), libvorbisenc2 (= 1.3.2-1.3ubuntu1), libvorbisfile3 (= 1.3.2-1.3ubuntu1) Filename: pool/main/libv/libvorbis/libvorbis-dbg_1.3.2-1.3ubuntu1_amd64.deb Size: 228678 MD5sum: 464ed450516d8fda533240f8b5e38e74 SHA1: 3e4b3a25482df42b0c07b7075713648f3569b269 SHA256: 6e3ecc2b31467aab772c9d1cc01915f5a7e4c805c2c4756ed1f775f3f600d05f Description: The Vorbis General Audio Compression Codec (debug files) Multi-Arch: same Description-md5: f55111bc0079c5fbc34b4ff2065ef3e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvorbis-dev Priority: optional Section: libdevel Installed-Size: 3872 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: amd64 Source: libvorbis Version: 1.3.2-1.3ubuntu1 Depends: libogg-dev, libvorbis0a (= 1.3.2-1.3ubuntu1), libvorbisenc2 (= 1.3.2-1.3ubuntu1), libvorbisfile3 (= 1.3.2-1.3ubuntu1) Filename: pool/main/libv/libvorbis/libvorbis-dev_1.3.2-1.3ubuntu1_amd64.deb Size: 349178 MD5sum: 2f7842ed400413b768573ef32b3f17e2 SHA1: 5e22dc9f984704f8443c6650601fc373ac690bf3 SHA256: e42063ecf3524ffc37699201f788d0b65b4d60e4cc3b93891eebc5222f8e4c9f Description: The Vorbis General Audio Compression Codec (development files) Multi-Arch: same Description-md5: 1e5436498bf30a5ecdc4b8b06ee9e234 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvorbis0a Priority: optional Section: libs Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: amd64 Source: libvorbis Version: 1.3.2-1.3ubuntu1 Replaces: libvorbis0 Depends: libc6 (>= 2.15), libogg0 (>= 1.1.0) Pre-Depends: multiarch-support Conflicts: libvorbis0 Filename: pool/main/libv/libvorbis/libvorbis0a_1.3.2-1.3ubuntu1_amd64.deb Size: 87166 MD5sum: e89e05f389fdaa1b834803a08c9213a4 SHA1: 6aee76369d743a6e13d384061283996c06f19c62 SHA256: 313f5554e1cefebd2b2375d9990290c4ae68045f927739ef4cbe855635606899 Description: The Vorbis General Audio Compression Codec (Decoder library) Multi-Arch: same Description-md5: 6654693e7c0426a429fc7b087078be25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libvorbisenc2 Priority: optional Section: libs Installed-Size: 2913 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: amd64 Source: libvorbis Version: 1.3.2-1.3ubuntu1 Replaces: libvorbis0 (<< 1.0.0) Depends: libc6 (>= 2.2.5), libvorbis0a (= 1.3.2-1.3ubuntu1) Pre-Depends: multiarch-support Conflicts: libvorbis0 (<< 1.0.0) Filename: pool/main/libv/libvorbis/libvorbisenc2_1.3.2-1.3ubuntu1_amd64.deb Size: 84546 MD5sum: fbdffecfc0a3f0dc45ec2480f54ea251 SHA1: 59f62bd7a4e9ca71f878013982cc80d168e2471d SHA256: 1fb3abf67e9e42b36436ebc792aa6c3553f64dfcf18c009aaa7fe9954321dcf6 Description: The Vorbis General Audio Compression Codec (Encoder library) Multi-Arch: same Description-md5: 1a89bc346659676d4031bed67567e740 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libvorbisfile3 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: amd64 Source: libvorbis Version: 1.3.2-1.3ubuntu1 Replaces: libvorbis0 (<< 1.0.0) Depends: libc6 (>= 2.14), libogg0 (>= 1.1.0), libvorbis0a (= 1.3.2-1.3ubuntu1) Pre-Depends: multiarch-support Conflicts: libvorbis0 (<< 1.0.0) Filename: pool/main/libv/libvorbis/libvorbisfile3_1.3.2-1.3ubuntu1_amd64.deb Size: 15830 MD5sum: 5a1b7d4252db8d4f96e31e75620bf079 SHA1: e778ba52f46961d53c68d4174baf6d4c34c056b0 SHA256: bd96c6cdf093a97abf33d84bebf9db0d01f451dd59060f5e563adbf912c9e618 Description: The Vorbis General Audio Compression Codec (High Level API) Multi-Arch: same Description-md5: d512c46682a0895a2f669a6caaec3bbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvotequorum-dev Priority: optional Section: libdevel Installed-Size: 359 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libvotequorum6 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libvotequorum-dev_2.3.3-1ubuntu1_amd64.deb Size: 45488 MD5sum: 9a269f56a71db75c8fab8e3f5828b5b1 SHA1: 78d0e0be0fe49dff4b55c8cb8c568ec64df9b6b6 SHA256: 605ff478b44cbbec638822212083f343ef0ba6e47b86685347d847cb4506bc42 Description: Standards-based cluster framework, VoteQuorum devel files Description-md5: 655dd47a75c0132274ee08450ae0223c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvotequorum6 Priority: optional Section: libs Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1), libvotequorum5 Depends: libc6 (>= 2.4), libcorosync-common4 (>= 2.3.3), libqb0 Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1), libvotequorum5 Filename: pool/main/c/corosync/libvotequorum6_2.3.3-1ubuntu1_amd64.deb Size: 7592 MD5sum: ae9f2e2498ac5d46bac70bcea1e6a325 SHA1: de64557e007a732d99d8ba9b03cdfddda0df1b56 SHA256: 865da50e1b1271475b4eb1dbe7419d7b12bc28a7f33a22c343626877824eeafa Description: Standards-based cluster framework, Votequorum library Description-md5: f874501f774adb114ef9f6f908c91fb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libvpx-dev Priority: optional Section: libdevel Installed-Size: 2639 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: amd64 Source: libvpx Version: 1.3.0-2 Depends: libvpx1 (= 1.3.0-2) Filename: pool/main/libv/libvpx/libvpx-dev_1.3.0-2_amd64.deb Size: 634632 MD5sum: 183f06a1fcc3ae9ec32d617f931b716b SHA1: c7668459ce9084a5a5c72d0d0820d8a856e0bb13 SHA256: 7f5ae98d7830deba4d1fec3fb3e07ccf187f99ca8d11446c72b27114dfa03062 Description: VP8 video codec (development files) Multi-Arch: same Homepage: http://www.webmproject.org Description-md5: af31d9d4be1e5af2d6a6fa1e4570c8f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvpx-doc Priority: optional Section: doc Installed-Size: 2532 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: all Source: libvpx Version: 1.3.0-2 Recommends: lynx | www-browser Filename: pool/main/libv/libvpx/libvpx-doc_1.3.0-2_all.deb Size: 173684 MD5sum: f2e40e3910e31551e8e2693500f39745 SHA1: 4eacc1dfdb810e9cdd9cad7a75ac2d40f219a9ac SHA256: e9818c26f483c82dd589921d27592e86045e5d8f8a2882614f4b1f53f18fdc21 Description: VP8 video codec (API documentation) Homepage: http://www.webmproject.org Description-md5: cf052a38d5488e3ec5f2ac972023595e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvpx1 Priority: optional Section: libs Installed-Size: 1712 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: amd64 Source: libvpx Version: 1.3.0-2 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libv/libvpx/libvpx1_1.3.0-2_amd64.deb Size: 555738 MD5sum: a163fb61078a4a67b1d705bd1ea9093b SHA1: 145b4b3531c49a97992fd5f650b259df7d9c0bfa SHA256: cf537cdbb2fef2d2bf25664651030c8de2083916f4b4a8bd59c4350e5f21e190 Description: VP8 video codec (shared library) Multi-Arch: same Homepage: http://www.webmproject.org Description-md5: acfa0dac3544e3c99895d8e3d593e4a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvpx1-dbg Priority: extra Section: debug Installed-Size: 7342 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: amd64 Source: libvpx Version: 1.3.0-2 Depends: libvpx1 (= 1.3.0-2) Filename: pool/main/libv/libvpx/libvpx1-dbg_1.3.0-2_amd64.deb Size: 1476400 MD5sum: f5fafed889255a626ae2a523a8b6266e SHA1: 1c37303e1150d9167a8303b4c66a15b48a2760ea SHA256: 86819fcc8d04053f0b000cc845e60224191146103e4be6b4480e603d1422bf18 Description: VP8 video codec (debugging symbols) Homepage: http://www.webmproject.org Description-md5: af60ebe3820acadb0b3967f573dc9e41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvte-2.90-9 Priority: optional Section: libs Installed-Size: 1098 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: vte3 Version: 1:0.34.9-1ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.1.9), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.22.0), libtinfo5, libx11-6, libvte-2.90-common (= 1:0.34.9-1ubuntu1) Filename: pool/main/v/vte3/libvte-2.90-9_0.34.9-1ubuntu1_amd64.deb Size: 262816 MD5sum: 5234715b0fe701a6630704b4e96704fc SHA1: cafc836f74533ce8817df1efe15ee3eaf9c46b87 SHA256: b1743fec539528987819feaa40bef1d60034965dbe23c79b6974d82336d540f0 Description: Terminal emulator widget for GTK+ 3.0 - runtime files Description-md5: 37146e51633ed1d1b52a3fe36e5f1847 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvte-2.90-common Priority: optional Section: libs Installed-Size: 464 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: vte3 Version: 1:0.34.9-1ubuntu1 Replaces: libvte-common (<< 1:0.28.2-2) Breaks: libvte-common (<< 1:0.28.2-2), libvte9 (<< 1:0.28) Filename: pool/main/v/vte3/libvte-2.90-common_0.34.9-1ubuntu1_all.deb Size: 24030 MD5sum: 20599b3cd3e3085d1f84fdc81982d7ac SHA1: 8c1638154bef1d09955e401a485efbe79b63f735 SHA256: 758797e295da3b2c066353741c2678720e81d4ce4b1710392c4d041492f7e0ca Description: Terminal emulator widget for GTK+ 3.0 - common files Description-md5: e46736e97ac160c1b4a611fa65b46391 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvte-2.90-dev Priority: optional Section: libdevel Installed-Size: 1568 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: vte3 Version: 1:0.34.9-1ubuntu1 Replaces: libvte-2.90-common (<< 1:0.30.1-4) Depends: libvte-2.90-9 (= 1:0.34.9-1ubuntu1), gir1.2-vte-2.90 (= 1:0.34.9-1ubuntu1), libcairo2-dev, libx11-dev, libgtk-3-dev (>= 3.0.0), libpango1.0-dev (>= 1.22.0), libglib2.0-dev (>= 2.22.0), libvte-2.90-common Recommends: libvte-2.90-doc Breaks: libvte-2.90-common (<< 1:0.30.1-4) Filename: pool/main/v/vte3/libvte-2.90-dev_0.34.9-1ubuntu1_amd64.deb Size: 274812 MD5sum: d2ad2a21d35e6d2921212a9df2f524c6 SHA1: 8252c29b77cafd4d76f6b25b18e7ea524f2e0e2f SHA256: 7e62804db0fe96b52c7748477383ffb0f772e337f6cede5f87abfd39727b4c13 Description: Terminal emulator widget for GTK+ 3.0 - development files Description-md5: c01f512a615de9ecef77cc50f3e492b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvte-2.90-doc Priority: optional Section: doc Installed-Size: 1010 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: vte3 Version: 1:0.34.9-1ubuntu1 Replaces: libvte-doc (<< 1:0.28.2-2) Breaks: libvte-doc (<< 1:0.28.2-2) Filename: pool/main/v/vte3/libvte-2.90-doc_0.34.9-1ubuntu1_all.deb Size: 60004 MD5sum: 51dabd44f747b20d2fcef53ac9c7eabf SHA1: 670e8f03ddd8ea63798aef81183ac5b41c920cb6 SHA256: cc8f25f4d6619ab2b2725861faae9011307849ff4fee88e64366e2cca10b8d1a Description: Terminal emulator widget for GTK+ 3.0 - documentation Description-md5: 367ace14cac02a91e563df79ebe34e7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvte-common Priority: optional Section: libs Installed-Size: 432 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: vte Version: 1:0.28.2-5ubuntu1 Breaks: libvte9 (<< 1:0.28) Filename: pool/main/v/vte/libvte-common_0.28.2-5ubuntu1_all.deb Size: 22802 MD5sum: 3a520ed4b321451eee82c79eb7610073 SHA1: e9aed60e973e9b9591fe30d80de4372198c4f33f SHA256: 5d1176e676a58007a4a1d5b23d01d69c378779bd3f86b7422ea6c67ba969e8d6 Description: Terminal emulator widget for GTK+ 2.x - common files Description-md5: 6aed355fd259c53d48d4fb26cb875757 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop Package: libvte-dev Priority: optional Section: libdevel Installed-Size: 1351 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: vte Version: 1:0.28.2-5ubuntu1 Provides: python-vte-dev Depends: libvte9 (= 1:0.28.2-5ubuntu1), libcairo2-dev, libx11-dev, libgtk2.0-dev (>= 2.20.0), libpango1.0-dev (>= 1.22.0), libglib2.0-dev (>= 2.26.0), libvte-common Recommends: libvte-doc Filename: pool/main/v/vte/libvte-dev_0.28.2-5ubuntu1_amd64.deb Size: 388530 MD5sum: ab48ed89e3b963b62a514c1f53e3a511 SHA1: 4ae4d759e6522a9101bce2c1703daa144f972997 SHA256: 2f5abbeee29964d517151530db04604efb8c7ed666e360b7149055edf0337e43 Description: Terminal emulator widget for GTK+ 2.0 - development files Description-md5: 3ac01fe797ba9bcce5eff4b4f02669c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvte-doc Priority: optional Section: doc Installed-Size: 986 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: vte Version: 1:0.28.2-5ubuntu1 Filename: pool/main/v/vte/libvte-doc_0.28.2-5ubuntu1_all.deb Size: 80206 MD5sum: fcb560978ccf8ded8b9a9cbf4ab75882 SHA1: 782ab65ac076bfa635d5e0de96f230f4f6aea123 SHA256: dc39b0746cdf50a0bdc5e96b59f167c9adaebbea6a034eb9b30c9983dabe5859 Description: Terminal emulator widget for GTK+ 2.x - documentation Description-md5: f9d1581751cce77a967de63964312153 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvte9 Priority: optional Section: libs Installed-Size: 1065 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: vte Version: 1:0.28.2-5ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.8), libgtk2.0-0 (>= 2.24.0), libpango1.0-0 (>= 1.22.0), libtinfo5, libx11-6, libvte-common (= 1:0.28.2-5ubuntu1) Filename: pool/main/v/vte/libvte9_0.28.2-5ubuntu1_amd64.deb Size: 373666 MD5sum: d44842043ae260ea7bb1266021cf939c SHA1: 13941fc1ca5754662042603971b5737ef0099b9f SHA256: 13d4001c074ba5c3f2aef7b013d8fc785b5dd591169cfa989d34aff78e93b1c7 Description: Terminal emulator widget for GTK+ 2.0 - runtime files Description-md5: a66b0bf9cd96b4ebd5d15c2b64460cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop Package: libwacom-common Priority: optional Section: libs Installed-Size: 237 Maintainer: Timo Aaltonen Architecture: all Source: libwacom Version: 0.8-1 Replaces: libwacom0 (<= 0.2-1) Filename: pool/main/libw/libwacom/libwacom-common_0.8-1_all.deb Size: 26474 MD5sum: f115d9ccfb977f82424d94aa15dc6b32 SHA1: f71db67df81443cc18f2932a2d4353d0b32babb9 SHA256: 18d7c0f750bbf6f31676db9dab6ba7a84efdd850f8b3eec70adf8f788d8ea5ba Description: Wacom model feature query library (common files) Multi-Arch: foreign Description-md5: 8d2491c268d1d8dd27f6b2869929bbc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libwacom-dev Priority: optional Section: libdevel Installed-Size: 264 Maintainer: Timo Aaltonen Architecture: amd64 Source: libwacom Version: 0.8-1 Depends: libwacom2 (= 0.8-1), libglib2.0-dev Recommends: pkg-config Filename: pool/main/libw/libwacom/libwacom-dev_0.8-1_amd64.deb Size: 62840 MD5sum: 82f79c75bdadc0567f975a0b0409e3bf SHA1: ebd9517166a38de5a6cc6703daf292541373d811 SHA256: 2a5246b3867fc77c176f655ff4df5cf56d5b808d9b267f36daa03f66cf5b850f Description: Wacom model feature query library (development files) Description-md5: f985aecfd750b7a49c77435947873b61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwacom2 Priority: optional Section: libs Installed-Size: 72 Maintainer: Timo Aaltonen Architecture: amd64 Source: libwacom Version: 0.8-1 Depends: libc6 (>= 2.8), libglib2.0-0 (>= 2.24.0), libgudev-1.0-0 (>= 146), libwacom-common (= 0.8-1) Pre-Depends: multiarch-support Filename: pool/main/libw/libwacom/libwacom2_0.8-1_amd64.deb Size: 18248 MD5sum: 69f4eaa18663c1c3fc9115b753192fa1 SHA1: c7402d22f6ddbce78db989b06ffec7984ee8792d SHA256: 8a7d2660c45dab41478fc46f65c7370ef9a9ae19e76dc0f509e4f62d72cad3e3 Description: Wacom model feature query library Multi-Arch: same Description-md5: 0c6f32ac5eff730b48890972fd898ae5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libwacom2-dbg Priority: extra Section: debug Installed-Size: 82 Maintainer: Timo Aaltonen Architecture: amd64 Source: libwacom Version: 0.8-1 Depends: libwacom2 (= 0.8-1) Filename: pool/main/libw/libwacom/libwacom2-dbg_0.8-1_amd64.deb Size: 34536 MD5sum: c135231e9998971ffc3915f647ec4d08 SHA1: 94173d2fa11922bad46803fcea25deba4642629e SHA256: b87cec9947d28e7341150a9e4663f4556338fd42442fc8155b8baaae9009e96e Description: Wacom model feature query library (debug files) Multi-Arch: same Description-md5: 0a719820cf688cbe19b3d111c9db990a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwavpack-dev Priority: optional Section: libdevel Installed-Size: 278 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: wavpack Version: 4.70.0-1 Depends: libwavpack1 (= 4.70.0-1) Filename: pool/main/w/wavpack/libwavpack-dev_4.70.0-1_amd64.deb Size: 97362 MD5sum: 90252ad10f1a20f7286a12a667aa994d SHA1: ae6cae9d93a8b42c43b0636aa28c6e05c0fa2352 SHA256: 260fd2157e9e8d173537d909e6884365e51fa60aba9c541f007cc4df75678207 Description: audio codec (lossy and lossless) - development files Multi-Arch: same Homepage: http://www.wavpack.com Description-md5: 8a3391abdd6b78ba409f73dfafadd6b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwavpack1 Priority: optional Section: libs Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Source: wavpack Version: 4.70.0-1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/w/wavpack/libwavpack1_4.70.0-1_amd64.deb Size: 85478 MD5sum: 4f300c2fccfe7cfc913b493a9c6d9358 SHA1: fc620ca5b1a17904ba7b1e1da2198f149b2dd635 SHA256: ed22f1fc2d9d3f90c2983f3c3c358262927acf779e5469802cf495e540fc56e7 Description: audio codec (lossy and lossless) - library Multi-Arch: same Homepage: http://www.wavpack.com Description-md5: b32145b84a96076395ce910d6a667a64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwayland-client0 Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: wayland Version: 1.4.0-1ubuntu1 Replaces: libwayland0 (<< 1.1.0-1) Depends: libc6 (>= 2.14), libffi6 (>= 3.0.4) Pre-Depends: multiarch-support Conflicts: libwayland0 (<< 1.1.0-1) Filename: pool/main/w/wayland/libwayland-client0_1.4.0-1ubuntu1_amd64.deb Size: 22118 MD5sum: 0d7cc139e8e08839022194b45aebde73 SHA1: 7ea7a5343abf10fd00b7438cddf57f6d35ebb56d SHA256: c9938aab716335afd114d035bcfbf64c7366f2d61064609e96b9538d3b74b42d Description: wayland compositor infrastructure - client library Multi-Arch: same Homepage: http://wayland.freedesktop.org/ Description-md5: 3ba4c2bc4efd026f8d9a8404817c3664 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwayland-client0-dbg Priority: extra Section: debug Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: wayland Version: 1.4.0-1ubuntu1 Depends: libwayland-client0 (= 1.4.0-1ubuntu1) Filename: pool/main/w/wayland/libwayland-client0-dbg_1.4.0-1ubuntu1_amd64.deb Size: 43172 MD5sum: a5293231bc06ceb7802354945ebb82ba SHA1: 1daf35af5533228e27f2c383f4e31290e5182903 SHA256: 445bb46cac0537978b054ff952ed7a8ab0ae28d053dd5231eaebb092c1eb4b03 Description: wayland compositor infrastructure - client library (debug) Homepage: http://wayland.freedesktop.org/ Description-md5: 4cdbc35dd6676e658cb7b6f5b2701619 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-cursor0 Priority: optional Section: libs Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: wayland Version: 1.4.0-1ubuntu1 Replaces: libwayland0 (<< 1.1.0-1) Depends: libc6 (>= 2.14), libwayland-client0 (>= 1.3.92) Pre-Depends: multiarch-support Conflicts: libwayland0 (<< 1.1.0-1) Filename: pool/main/w/wayland/libwayland-cursor0_1.4.0-1ubuntu1_amd64.deb Size: 9918 MD5sum: c60e0cfe0ab42087e38991c2c15a9222 SHA1: 76098377f88bb1a228ab17c7f6d7b8f6f641d40d SHA256: d514bac04f26316aee15a814cf7bb8d3ea6472e2359b52384a6eecd34038e18e Description: wayland compositor infrastructure - cursor library Multi-Arch: same Homepage: http://wayland.freedesktop.org/ Description-md5: 5e6c3503f9ce1b6eeb852b17a3957f79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwayland-cursor0-dbg Priority: extra Section: debug Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: wayland Version: 1.4.0-1ubuntu1 Depends: libwayland-cursor0 (= 1.4.0-1ubuntu1) Filename: pool/main/w/wayland/libwayland-cursor0-dbg_1.4.0-1ubuntu1_amd64.deb Size: 21894 MD5sum: d6c0efd7d8c231a939891a78df3e4281 SHA1: 1c58742988670bdb2620645936627a16a58a734d SHA256: 611fb40b41d2c9b6dbdbd2e6859984b07f3d708e755a8924c9307f39c88af56d Description: wayland compositor infrastructure - cursor library (debug) Homepage: http://wayland.freedesktop.org/ Description-md5: 4145ef9671f63a48f112fe4eb6113b5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-dev Priority: extra Section: libdevel Installed-Size: 582 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: wayland Version: 1.4.0-1ubuntu1 Depends: libwayland-client0 (= 1.4.0-1ubuntu1), libwayland-server0 (= 1.4.0-1ubuntu1), libwayland-cursor0 (= 1.4.0-1ubuntu1), libc6 (>= 2.14), libexpat1 (>= 2.0.1) Filename: pool/main/w/wayland/libwayland-dev_1.4.0-1ubuntu1_amd64.deb Size: 103750 MD5sum: e4d84bb1361348aec52fc7e82089783a SHA1: af22eee0f60dc720db085405cc145e0b9c511148 SHA256: e01d36312eb28cb2f0267c9aea8b9b0adbc79486346e30b70095812ba7204cdb Description: wayland compositor infrastructure - development files Homepage: http://wayland.freedesktop.org/ Description-md5: b6a54f87f98181416660d9c2f8532325 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libwayland-dev Filename: pool/main/x/xorg-lts-transitional/libwayland-dev-lts-quantal_5_amd64.deb Size: 1548 MD5sum: a7ba9c2ba5eea98fe1ea273f5d4eb85d SHA1: facb4ddd61ea6b5fc6a687d13eb622b52e31c057 SHA256: 951e5004ebf694a711cf4bd55108b3c159f3cbd93fb8442f98ded82a0c918325 Description: Transitional package for libwayland-dev Multi-Arch: same Description-md5: 03bac47292950f283d07aa396201656a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libwayland-dev Filename: pool/main/x/xorg-lts-transitional/libwayland-dev-lts-raring_5_amd64.deb Size: 1548 MD5sum: c6b06a487a401abcab5763ab512d001e SHA1: 43167432960f50ff75e53f52324fe870c49a534e SHA256: b981b3df1ff330faf8ae836ae2a9a546d5c0fc8cf558373004602832b45332c9 Description: Transitional package for libwayland-dev Multi-Arch: same Description-md5: 03bac47292950f283d07aa396201656a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libwayland-dev Filename: pool/main/x/xorg-lts-transitional/libwayland-dev-lts-saucy_5_amd64.deb Size: 1544 MD5sum: 3ecc3fd1c62a41acd2874ae9c4ea12ff SHA1: e60bae36980793606134613f18a2fc75a98f1815 SHA256: 6d18cb1500ccdf3c2d2df84e69182d44045f52126c9d030801ae64950b60be4e Description: Transitional package for libwayland-dev Multi-Arch: same Description-md5: 03bac47292950f283d07aa396201656a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-egl1-mesa Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libegl1-mesa-drivers (<< 10.1.0-2), libwayland-egl1 Provides: libwayland-egl1 Depends: libc6 (>= 2.2.5), libegl1-mesa (= 10.1.0-4ubuntu5) Pre-Depends: multiarch-support Recommends: libegl1-mesa-drivers Conflicts: libwayland-egl1 Breaks: libegl1-mesa-drivers (<< 10.1.0-2) Filename: pool/main/m/mesa/libwayland-egl1-mesa_10.1.0-4ubuntu5_amd64.deb Size: 6496 MD5sum: 6a7d595e3465146e45e837effa48ac1f SHA1: bb0a981644d78d01a073fca31f433c6369016eeb SHA256: b92b1958fdf59c6a437f829bbbbba23aae1fb6bfeef35b8db8202415f5e5aba0 Description: implementation of the Wayland EGL platform -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 2aac0a30c09ae3fa55df222fecf9d1cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwayland-egl1-mesa-dbg Priority: extra Section: debug Installed-Size: 104 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libwayland-egl1-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libwayland-egl1-mesa-dbg_10.1.0-4ubuntu5_amd64.deb Size: 7138 MD5sum: 2817d5382f499c2a11d043338925242f SHA1: 15c80de1a3ed0a7b2536c7304586bd47c5b21354 SHA256: 76bbd1a96a0422a2f164dcd7b00d2ddf3845a1358bb603561208c746209d924f Description: implementation of the Wayland EGL platform -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 3248903aa57a9e154e8eee50cccc8b85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-server0 Priority: optional Section: libs Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: wayland Version: 1.4.0-1ubuntu1 Replaces: libwayland0 (<< 1.1.0-1) Depends: libc6 (>= 2.14), libffi6 (>= 3.0.4) Pre-Depends: multiarch-support Conflicts: libwayland0 (<< 1.1.0-1) Breaks: weston (<< 1.2.0) Filename: pool/main/w/wayland/libwayland-server0_1.4.0-1ubuntu1_amd64.deb Size: 27052 MD5sum: abc33249be884634b9991b3195a373ec SHA1: 3056dc2ebab84bba7bd1129d3c3d7828d27f3e75 SHA256: 2ad8cd4ab827b4d777e007deb536ae3ad6096441624dbbb4749f7764f2225219 Description: wayland compositor infrastructure - server library Multi-Arch: same Homepage: http://wayland.freedesktop.org/ Description-md5: d12a42711d448b23b1fb5d101345af87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwayland-server0-dbg Priority: extra Section: debug Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: wayland Version: 1.4.0-1ubuntu1 Depends: libwayland-server0 (= 1.4.0-1ubuntu1) Filename: pool/main/w/wayland/libwayland-server0-dbg_1.4.0-1ubuntu1_amd64.deb Size: 58880 MD5sum: b9b7cf564fba6fd63fd3c1bde4b74b86 SHA1: 3aca3aa1aec69dbdd0ac3de8728ab5a29f608cbc SHA256: 11d53e533ad6742f95434ae0e9530806057b46b09f1edcecec499befd71df569 Description: wayland compositor infrastructure - server library (debug) Homepage: http://wayland.freedesktop.org/ Description-md5: 86ee0539a5b4e50196097470aaadfc2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland0 Priority: extra Section: oldlibs Installed-Size: 28 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: wayland Version: 1.4.0-1ubuntu1 Depends: libwayland-client0, libwayland-server0 Filename: pool/main/w/wayland/libwayland0_1.4.0-1ubuntu1_all.deb Size: 1872 MD5sum: 21f2d4fef6ab7018752261645b023488 SHA1: 59aec8db2d89519d6566e1d4b674e297d01791a8 SHA256: 13621162efeec6385130076bf5563107f3eb1fbe8097757d3d92ee0e5ac15d3b Description: transitional dummy package Homepage: http://wayland.freedesktop.org/ Description-md5: 6a750ea90f7da4e8cb1e7e4b134380d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwbclient-dev Priority: optional Section: libdevel Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libwbclient0 (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/samba/libwbclient-dev_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 13640 MD5sum: 902fd9682c24f30de7e5f7146553834a SHA1: c82af8536ea378fd388626b0c054b255ad5fdbe2 SHA256: 6671c20a647962e0af05286e4aa66815f04c06ac5450d0b36d774c83fc6c19e3 Description: Samba winbind client library - development files Multi-Arch: same Homepage: http://www.samba.org Description-md5: 2fd42f0ef62fe1cc8cfee6fb03d4b884 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwbclient0 Priority: optional Section: libs Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: likewise-open (<< 4.1.0.2956) Depends: libbsd0 (>= 0.0), libc6 (>= 2.14) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Conflicts: likewise-open (<< 4.1.0.2956) Breaks: libpam-smbpass (<< 2:3.4.1), libsmbclient (<< 2:3.4.1), samba (<< 2:3.4.1), samba-common (<< 2:3.4.1), samba-tools (<< 2:3.4.1), smbclient (<< 2:3.4.1), smbfs (<< 2:3.4.1), swat (<< 2:3.4.1), winbind (<< 2:3.4.1) Filename: pool/main/s/samba/libwbclient0_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 28004 MD5sum: 85a8da2a1e91da18ef568f32623b9f6d SHA1: 561bf4b4353434783a682d953935438d3dd5a1b2 SHA256: 7c68075b558e8180c50c81d6deeec8cc480c4ac80393bda92029f9649f5f1687 Description: Samba winbind client library Multi-Arch: same Homepage: http://www.samba.org Description-md5: 16c935b1d482f634b3879c2495e04db8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwebkit-cil-dev Priority: optional Section: libdevel Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: webkit-sharp Version: 0.3-6 Replaces: libwebkit1.0-cil (<< 0.3) Depends: libwebkit1.1-cil (= 0.3-6) Filename: pool/main/w/webkit-sharp/libwebkit-cil-dev_0.3-6_all.deb Size: 2292 MD5sum: 47dfd9fa841bf5cea6780afe56b15ddd SHA1: 264c4186ff6786cb8bff683b6ab35107b60770ba SHA256: 1593839aebcfbb51897c95b108f0ab1bf5c5da036a66a496c6c4e09276373c15 Description: CLI binding for the WebKit library - development package Homepage: http://www.webkit.org/ Description-md5: 89897ffa8c6284edaa9175cca49af1a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkit-dev Priority: extra Section: libdevel Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkitgtk-dev (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libwebkit-dev_2.4.0-1ubuntu2_amd64.deb Size: 9934 MD5sum: 960f21715434ca05ed08f1335fbe6a9a SHA1: ccad45a04b7c2e158d1814d57a8ee68257d4a5d4 SHA256: 7b4a821fb4e94dce5863b739a98ef90cf8a2fb2694fb46519f51ebf267002c6e Description: Transitional package for the development files of WebKitGTK+ Homepage: http://webkitgtk.org/ Description-md5: 23881ffbc18605756fed37cbebe5d8cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkit1.1-cil Priority: optional Section: cli-mono Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: webkit-sharp Version: 0.3-6 Depends: cli-common (>= 0.5.1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1), libwebkitgtk-1.0-0 (>= 1.7.5) Suggests: monodoc-webkit-manual Filename: pool/main/w/webkit-sharp/libwebkit1.1-cil_0.3-6_all.deb Size: 23338 MD5sum: aea7b5f5f7e6c13837357b3bbbd518d1 SHA1: e6ca1844cbb2670948635f6a68432385f27f4f35 SHA256: 38fcc7e8661b2a8523330c54b1858d16a2d736f22a68e4b09a54092230a52b04 Description: CLI binding for the WebKit library Homepage: http://www.webkit.org/ Description-md5: 6259df8e502106deb4df4021cd75b142 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libwebkit2gtk-3.0-25 Priority: optional Section: libs Installed-Size: 62854 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: libwebkit2gtk-3.0-0 Depends: libjavascriptcoregtk-3.0-0 (= 2.4.0-1ubuntu2), libatk1.0-0 (>= 2.7.91), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libenchant1c2a (>= 1.6.0), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgeoclue0 (>= 0.11.1+git20091217), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.2.0), libgstreamer1.0-0 (>= 1.2.0), libgtk-3-0 (>= 3.10.0), libgtk2.0-0 (>= 2.24.10), libharfbuzz-icu0 (>= 0.9.18), libharfbuzz0b (>= 0.9.18), libicu52 (>= 52~m1-1~), libjpeg8 (>= 8c), libpango-1.0-0 (>= 1.30.0), libpng12-0 (>= 1.2.13-4), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.44.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.8.1), libwebp5, libx11-6, libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxml2 (>= 2.7.4), libxrender1, libxslt1.1 (>= 1.1.25), libxt6, zlib1g (>= 1:1.2.0), libwebkitgtk-3.0-common (>= 2.4.0) Pre-Depends: multiarch-support Recommends: gstreamer1.0-plugins-base, gstreamer1.0-plugins-good Breaks: libwebkit2gtk-3.0-0 Filename: pool/main/w/webkitgtk/libwebkit2gtk-3.0-25_2.4.0-1ubuntu2_amd64.deb Size: 13436306 MD5sum: 786edcae4b73c7d8ddcdb5f9c3bb18cc SHA1: 4931ee45a4501e81cabc957ef9169d0a0093f505 SHA256: 9c4459bac306769f58071b43381b12f00b86fe46326e5f0f3828cb2d3d1a71e8 Description: WebKit2 API layer for WebKitGTK+ Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: d95acf6886a7042fe68df1d57a7c2527 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkit2gtk-3.0-25-dbg Priority: extra Section: debug Installed-Size: 2772093 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: libwebkit2gtk-3.0-0-dbg Depends: libwebkit2gtk-3.0-25 (= 2.4.0-1ubuntu2), libjavascriptcoregtk-3.0-0-dbg (= 2.4.0-1ubuntu2) Breaks: libwebkit2gtk-3.0-0-dbg Filename: pool/main/w/webkitgtk/libwebkit2gtk-3.0-25-dbg_2.4.0-1ubuntu2_amd64.deb Size: 625816684 MD5sum: 0c5afbf03cf0153b9e3c22c22a3c357e SHA1: 8ecbf4ff0c1bce9e8bc82ec481dc3a2763ce4cee SHA256: ea7649e3c2330fd49be84b9176e02e721baf0c8691c4834da6af773c51ee6f02 Description: WebKit2 API layer for WebKitGTK+ - debugging symbols Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: d898dac5e0920494165ba62890c4edfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkit2gtk-3.0-dev Priority: extra Section: libdevel Installed-Size: 2583 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkit2gtk-3.0-25 (= 2.4.0-1ubuntu2), gir1.2-webkit2-3.0 (= 2.4.0-1ubuntu2), libwebkitgtk-common-dev (= 2.4.0-1ubuntu2), libgtk-3-dev, libsoup2.4-dev (>= 2.40), libjavascriptcoregtk-3.0-dev (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libwebkit2gtk-3.0-dev_2.4.0-1ubuntu2_amd64.deb Size: 170100 MD5sum: 8420ff9b301839884188a24ba3cdea95 SHA1: 5c483628e85d5ee167317b9ba12f56c47f8f44fc SHA256: efb6f2fa1a2fc0b6710712065a0ca487f33521d707d8b4ff433dacbf6c725b47 Description: WebKit2 API layer for WebKitGTK+ - development files Homepage: http://webkitgtk.org/ Description-md5: 5405a285197f55f99ffd7245049c664e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkitgtk-1.0-0 Priority: optional Section: libs Installed-Size: 32343 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libjavascriptcoregtk-1.0-0 (= 2.4.0-1ubuntu2), libatk1.0-0 (>= 2.7.91), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libenchant1c2a (>= 1.6.0), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgeoclue0 (>= 0.11.1+git20091217), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.2.0), libgstreamer1.0-0 (>= 1.2.0), libgtk2.0-0 (>= 2.24.10), libharfbuzz-icu0 (>= 0.9.18), libharfbuzz0b (>= 0.9.18), libicu52 (>= 52~m1-1~), libjpeg8 (>= 8c), libpango-1.0-0 (>= 1.30.0), libpng12-0 (>= 1.2.13-4), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.44.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.8.1), libwebp5, libx11-6, libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxml2 (>= 2.7.4), libxrender1, libxslt1.1 (>= 1.1.25), libxt6, zlib1g (>= 1:1.2.0), libwebkitgtk-1.0-common (>= 2.4.0) Pre-Depends: multiarch-support Recommends: gstreamer1.0-plugins-base (>= 1.0.3), gstreamer1.0-plugins-good Breaks: claws-mail-fancy-plugin (<< 3.7.10-3), midori (<< 0.4.1-2) Filename: pool/main/w/webkitgtk/libwebkitgtk-1.0-0_2.4.0-1ubuntu2_amd64.deb Size: 6450282 MD5sum: 7ef9bd110a10d1f179422d246eaa746b SHA1: a0f4a3f7761106a5a3ffe31f8191a0cbe13ae3db SHA256: 79547401b8a138e6bccf2539266566614edb5bf2757d4dbcb3ee07b56b39d1c9 Description: Web content engine library for GTK+ Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: de0c9c33889d1ad763c994909aff70cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-live, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libwebkitgtk-1.0-0-dbg Priority: extra Section: debug Installed-Size: 1400721 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkitgtk-1.0-0 (= 2.4.0-1ubuntu2), libjavascriptcoregtk-1.0-0-dbg (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libwebkitgtk-1.0-0-dbg_2.4.0-1ubuntu2_amd64.deb Size: 312650362 MD5sum: 027cf71afe42fd5e394ec6bd96dfd57a SHA1: 4b04673ce4ae1a25ebf2bd9e6a1f1a46c8587816 SHA256: c875b39e14b97bff8c9dc1a08fb0eca7119b3751d49c70077451b958662a1584 Description: Web content engine library for GTK+ - debugging symbols Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: 8706274e20e263bb46419b6acea8b9b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkitgtk-1.0-common Priority: optional Section: libs Installed-Size: 384 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: all Source: webkitgtk Version: 2.4.0-1ubuntu2 Filename: pool/main/w/webkitgtk/libwebkitgtk-1.0-common_2.4.0-1ubuntu2_all.deb Size: 107038 MD5sum: ad2bdb1b0f793bd7ef78c14a0da96c81 SHA1: aed3b3aa0c69e282f63a205710c12ca25e48705e SHA256: c901b7656f08c447b539776ed09c0fdbf5bb3b1e7d022b9ca2393e2d19f695e4 Description: Web content engine library for GTK+ - data files Multi-Arch: foreign Homepage: http://webkitgtk.org/ Description-md5: 389906e285476ae56822f240054b51df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-live, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libwebkitgtk-3.0-0 Priority: optional Section: libs Installed-Size: 32339 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libjavascriptcoregtk-3.0-0 (= 2.4.0-1ubuntu2), libatk1.0-0 (>= 2.7.91), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libenchant1c2a (>= 1.6.0), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgeoclue0 (>= 0.11.1+git20091217), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.2.0), libgstreamer1.0-0 (>= 1.2.0), libgtk-3-0 (>= 3.10.0), libharfbuzz-icu0 (>= 0.9.18), libharfbuzz0b (>= 0.9.18), libicu52 (>= 52~m1-1~), libjpeg8 (>= 8c), libpango-1.0-0 (>= 1.30.0), libpng12-0 (>= 1.2.13-4), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.44.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.8.1), libwebp5, libx11-6, libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxml2 (>= 2.7.4), libxrender1, libxslt1.1 (>= 1.1.25), libxt6, zlib1g (>= 1:1.2.0), libwebkitgtk-3.0-common (>= 2.4.0) Pre-Depends: multiarch-support Recommends: gstreamer1.0-plugins-base, gstreamer1.0-plugins-good Filename: pool/main/w/webkitgtk/libwebkitgtk-3.0-0_2.4.0-1ubuntu2_amd64.deb Size: 6449820 MD5sum: 091395cac7a342a8bc57dc1f110532e0 SHA1: 780cb401b72e6d9492216ffc2a09fb98efbf6653 SHA256: e484f78c680e907f52798edeee930cb9c080a9ca311a762fd083b16db47eb094 Description: Web content engine library for GTK+ Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: e28c3fff1dc9f82f12da82b85adef90f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwebkitgtk-3.0-0-dbg Priority: extra Section: debug Installed-Size: 1400340 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkitgtk-3.0-0 (= 2.4.0-1ubuntu2), libjavascriptcoregtk-3.0-0-dbg (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libwebkitgtk-3.0-0-dbg_2.4.0-1ubuntu2_amd64.deb Size: 312651690 MD5sum: 7a6d5d6730e4598266c7bd1e3de3907c SHA1: 47c96b88f36af07581f6b673b37031cad3e45e38 SHA256: 3581b476c4a2904077659b0340dc9b1e06ea87f7e0395ee17bbe8a1b73165c01 Description: Web content engine library for GTK+ - debugging symbols Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: d17349c4a4e8cd5c3cbb96d0d114a624 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkitgtk-3.0-common Priority: optional Section: libs Installed-Size: 384 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: all Source: webkitgtk Version: 2.4.0-1ubuntu2 Filename: pool/main/w/webkitgtk/libwebkitgtk-3.0-common_2.4.0-1ubuntu2_all.deb Size: 106726 MD5sum: 44f17627608eedcf6ec28f91d166d9c3 SHA1: 0790ca22705612b6ee7d868175c1dca3d54776a0 SHA256: ac3cbef60077ddd9f4e631e7afa8ad17e8c4cc299f5d8a873144f2e27c9bc3d5 Description: Web content engine library for GTK+ - data files Multi-Arch: foreign Homepage: http://webkitgtk.org/ Description-md5: 51a77acc4da979202b6cf1182a10b802 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwebkitgtk-3.0-dev Priority: extra Section: libdevel Installed-Size: 3548 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkitgtk-3.0-0 (= 2.4.0-1ubuntu2), gir1.2-webkit-3.0 (= 2.4.0-1ubuntu2), libwebkitgtk-common-dev (= 2.4.0-1ubuntu2), libgtk-3-dev, libsoup2.4-dev (>= 2.40), libjavascriptcoregtk-3.0-dev (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libwebkitgtk-3.0-dev_2.4.0-1ubuntu2_amd64.deb Size: 190232 MD5sum: fc7417b746a659f12e4a4e07052c5bf7 SHA1: 0b3fca0d3e08d7b12c247d0241ea4b2068f3c7b3 SHA256: 4cb40d1e368ae02ae3ffd1eaedd79c01a901a1041c15bb27f359c56cda43fcf7 Description: Web content engine library for GTK+ - development files Homepage: http://webkitgtk.org/ Description-md5: 360be96bc502ec2be370af076d0bccd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkitgtk-common-dev Priority: extra Section: libdevel Installed-Size: 890 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: libwebkitgtk-3.0-dev (<< 2.1.4-3) Breaks: libwebkitgtk-3.0-dev (<< 2.1.4-3) Filename: pool/main/w/webkitgtk/libwebkitgtk-common-dev_2.4.0-1ubuntu2_amd64.deb Size: 61680 MD5sum: e25bda876b207898a9ad3d4c6ac42e10 SHA1: cc4711c81927c4ee2cc3986c4699d061c4d12d51 SHA256: 99fb53029c148ea207ff8d08cbedd6ff69e7a9a269b4a7fe84ddcd09a7e800bb Description: Web content engine library for GTK+ - common development files Homepage: http://webkitgtk.org/ Description-md5: fad1167cc95b2f31100d1d327d6b7bab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkitgtk-dev Priority: extra Section: libdevel Installed-Size: 4346 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: amd64 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkitgtk-1.0-0 (= 2.4.0-1ubuntu2), gir1.2-webkit-1.0 (= 2.4.0-1ubuntu2), libgtk2.0-dev (>= 2.24.10), libsoup2.4-dev (>= 2.42), libjavascriptcoregtk-1.0-dev (= 2.4.0-1ubuntu2) Conflicts: libwebkit-dev (<< 1.3.0) Filename: pool/main/w/webkitgtk/libwebkitgtk-dev_2.4.0-1ubuntu2_amd64.deb Size: 237496 MD5sum: 770766a472c3eaeb69be4f4cad4e601d SHA1: 70cadafda522b4b969ea83b2d8b4369412ed2099 SHA256: cd9e81406a9ee921a1bde64071ba82a5875b8682c9b54adb719f85ca2f6c4f39 Description: Web content engine library for GTK+ - development files Homepage: http://webkitgtk.org/ Description-md5: 370110c6dff41a51821759fd07339bbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebp-dev Priority: extra Section: libdevel Installed-Size: 723 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Breidenbach Architecture: amd64 Source: libwebp Version: 0.4.0-4 Depends: libwebp5 (= 0.4.0-4), libwebpmux1 (= 0.4.0-4), libwebpdemux1 (= 0.4.0-4) Filename: pool/main/libw/libwebp/libwebp-dev_0.4.0-4_amd64.deb Size: 203230 MD5sum: e711eae1b4ed6ca13426c829ceb6e354 SHA1: e8565bd049fe0ddf844c9866081cca5c0490fc4c SHA256: fcd276b064d007f5ce7d6c2100ea7821f31ddee07308badf443edc61b2b65298 Description: Lossy compression of digital photographic images. Multi-Arch: same Homepage: http://webp.googlecode.com Description-md5: 3c2179355195b8d229435797374b0a61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebp5 Priority: extra Section: libs Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Breidenbach Architecture: amd64 Source: libwebp Version: 0.4.0-4 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/libw/libwebp/libwebp5_0.4.0-4_amd64.deb Size: 145562 MD5sum: b0a2f2c663d75a1df58e7150de7fff22 SHA1: 8b37fb21d1bf3c0c536b5baabd358c799bcbb04f SHA256: c9959524cb3d95d74c1c9f8a9400f183118ab12f4dd0f34011b476b4f5f4b053 Description: Lossy compression of digital photographic images. Multi-Arch: same Homepage: http://webp.googlecode.com Description-md5: 3c2179355195b8d229435797374b0a61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwebpdemux1 Priority: extra Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Breidenbach Architecture: amd64 Source: libwebp Version: 0.4.0-4 Depends: libc6 (>= 2.2.5), libwebp5 Pre-Depends: multiarch-support Filename: pool/main/libw/libwebp/libwebpdemux1_0.4.0-4_amd64.deb Size: 7836 MD5sum: c2781b0c212edec13002dcc1e0b6a0c7 SHA1: 9cf9f1b3d3f43f79836068dfe527d7aa118e81ce SHA256: 99cb1e21f11d5dc4fe3faae742d3889c0e3f9af9212368669dd11d75ab2d7eab Description: Lossy compression of digital photographic images. Multi-Arch: same Homepage: http://webp.googlecode.com Description-md5: 3c2179355195b8d229435797374b0a61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebpmux1 Priority: extra Section: libs Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Breidenbach Architecture: amd64 Source: libwebp Version: 0.4.0-4 Depends: libc6 (>= 2.14), libwebp5 Pre-Depends: multiarch-support Filename: pool/main/libw/libwebp/libwebpmux1_0.4.0-4_amd64.deb Size: 13720 MD5sum: a7d0ef2e8563058d75935225afcddcd4 SHA1: 0ed829bb7f8d1fe1db5b986cdb5aa610013c15d7 SHA256: ddf214f4fba3f97e2d236cfdfc4994c0491c09716a98fce9f01dce90c1b29730 Description: Lossy compression of digital photographic images. Multi-Arch: same Homepage: http://webp.googlecode.com Description-md5: 3c2179355195b8d229435797374b0a61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwhoopsie-dev Priority: optional Section: libdevel Installed-Size: 50 Maintainer: Evan Dandrea Architecture: amd64 Source: whoopsie Version: 0.2.24.5 Depends: libwhoopsie0 (= 0.2.24.5) Filename: pool/main/w/whoopsie/libwhoopsie-dev_0.2.24.5_amd64.deb Size: 2270 MD5sum: 754fed1c67bbe32d871e5983ab2d7c59 SHA1: 5118e654dd1c082fdbeb246153165ec37e43d787 SHA256: 4f747a077dbfd02f274b561d38efea8dae1d3b9e47a1ab848ed90d2ea9041dc8 Description: Ubuntu error tracker submission - library development files Homepage: http://wiki.ubuntu.com/ErrorTracker Description-md5: d0cf33cd90c3c6a94ee823de0a47e4ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwhoopsie-preferences-dev Priority: optional Section: libdevel Installed-Size: 55 Maintainer: Evan Dandrea Architecture: amd64 Source: whoopsie-preferences Version: 0.12 Replaces: libwhoopsie-preferences0 (<< 0.7) Depends: libwhoopsie-preferences0 (= 0.12) Filename: pool/main/w/whoopsie-preferences/libwhoopsie-preferences-dev_0.12_amd64.deb Size: 3050 MD5sum: 428a72454563baa6f4c864d945d69787 SHA1: 283a85005366cebff1055e56c01c09e1377be8df SHA256: bf8e6db7404bf93cbf6a50f19ac9b5d7d1f73a6fea677c6de27982212524b099 Description: Ubuntu error tracker submission settings - library development files Homepage: http://launchpad.net/whoopsie-preferences Description-md5: daf93599b31d8e0c72e0acfd16da8b01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwhoopsie-preferences0 Priority: optional Section: libs Installed-Size: 75 Maintainer: Evan Dandrea Architecture: amd64 Source: whoopsie-preferences Version: 0.12 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3) Filename: pool/main/w/whoopsie-preferences/libwhoopsie-preferences0_0.12_amd64.deb Size: 13286 MD5sum: 048ebf44201cfff6e9ada458f782479b SHA1: f40ce861b0f6df7039280787b28d99c8ca0597a3 SHA256: 28ade23ca271329e163199aa9acb574e99faec79c03fbdeeba60c1e443688d7b Description: Ubuntu error tracker submission settings - shared library Homepage: http://launchpad.net/whoopsie-preferences Description-md5: 1569a6017d19753fce769a2118756c02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb Package: libwhoopsie0 Priority: optional Section: libs Installed-Size: 48 Maintainer: Evan Dandrea Architecture: amd64 Source: whoopsie Version: 0.2.24.5 Depends: libc6 (>= 2.4), libgcrypt11 (>= 1.5.1), libglib2.0-0 (>= 2.31.6) Filename: pool/main/w/whoopsie/libwhoopsie0_0.2.24.5_amd64.deb Size: 6494 MD5sum: 8d15159cd8561e4d203704cf7c9fb2af SHA1: 1d9d5559a81494b7a36ba1edb63ca5c6f2e4fe7e SHA256: b957003f6374c736a3f3c3078c53aaa72a381b143e9aeff0c3ad6ac4237bee98 Description: Ubuntu error tracker submission - shared library Homepage: http://wiki.ubuntu.com/ErrorTracker Description-md5: 63cc1807f3740284873e13ddff74db44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libwibble-dev Priority: optional Section: libdevel Installed-Size: 13502 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: amd64 Source: libwibble Version: 1.1-1 Recommends: pkg-config Filename: pool/main/libw/libwibble/libwibble-dev_1.1-1_amd64.deb Size: 1929560 MD5sum: 82482eed51fa1e67e3ceba524444b035 SHA1: 137e6eefc0e4196c3b9d4d5f5c7add16e2b1047c SHA256: 7fad25dfeaedc16ee11ae09171c80aab7041dda2396acd81523ff9df7bdcbe90 Description: Library of various useful C++ code Homepage: http://web.mornfall.net/libwibble.html Description-md5: 1d0e11a615c68d5df696b9445ef69af3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwind0-heimdal Priority: standard Section: libs Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: amd64 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.14), libcomerr2 (>= 1.01), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libwind0-heimdal_1.6~git20131207+dfsg-1ubuntu1_amd64.deb Size: 47766 MD5sum: 6fa3befc582330a5db7dde891e868983 SHA1: 1d3f2c599509668a5bb2b03fbddbd0ebf3187311 SHA256: c2883d497b2acb71c63ca6023bd932a33c1d6c1f5ac38136d9a8dc3d14171b6d Description: Heimdal Kerberos - stringprep implementation Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: c1440da5ed207fb354250542178272a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libwmf-bin Priority: optional Section: graphics Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Loïc Minier Architecture: amd64 Source: libwmf Version: 0.2.8.4-10.3ubuntu1 Depends: libc6 (>= 2.14), libwmf0.2-7 (>= 0.2.8.4), libx11-6, zlib1g (>= 1:1.1.4) Recommends: gsfonts Filename: pool/main/libw/libwmf/libwmf-bin_0.2.8.4-10.3ubuntu1_amd64.deb Size: 21382 MD5sum: 2e75d56046889da37605aee5e8b07e0d SHA1: d3c9384ee69bc7862a3073353d6a0db5142610eb SHA256: 1841238bd08ad6a19b0f192bad21325e26607039acd1bb0721898539aedc3d2b Description: Windows metafile conversion tools Multi-Arch: foreign Description-md5: d9cc79d027920bad7d0c9dc15b79c060 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: libwmf-dev Priority: optional Section: libdevel Installed-Size: 796 Maintainer: Ubuntu Developers Original-Maintainer: Loïc Minier Architecture: amd64 Source: libwmf Version: 0.2.8.4-10.3ubuntu1 Depends: libwmf0.2-7 (= 0.2.8.4-10.3ubuntu1), libfreetype6-dev, x11proto-core-dev, libx11-dev, zlib1g-dev Suggests: libwmf-doc Filename: pool/main/libw/libwmf/libwmf-dev_0.2.8.4-10.3ubuntu1_amd64.deb Size: 214742 MD5sum: b7d6d2977cb31be1cdfa66d10683dea0 SHA1: f1b2b7b1f7e0c2a89830968f95d0de00b709aeca SHA256: 64cdcab6ac23eb4af2c8ef982c4a1678b156aa6d22fc4eda7abbd4e053239c00 Description: Windows metafile conversion development Description-md5: 3003c1f061ef044f651bdb47d77c9780 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwmf-doc Priority: optional Section: doc Installed-Size: 2175 Maintainer: Ubuntu Developers Original-Maintainer: Loïc Minier Architecture: all Source: libwmf Version: 0.2.8.4-10.3ubuntu1 Recommends: libwmf0.2-7 Suggests: libwmf-dev Filename: pool/main/libw/libwmf/libwmf-doc_0.2.8.4-10.3ubuntu1_all.deb Size: 290942 MD5sum: cdf8643834ae9427890ab9ead94e0111 SHA1: 2e7d5900999f4316cf6668b4d636313acc6aac72 SHA256: c84f4a1eed468adffbcf285f422152f41876c17c6a8dc0d2f669d0313474ce44 Description: Windows metafile documentation Description-md5: 3976ad5925a16bfd96089e12c732cc89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwmf0.2-7 Priority: optional Section: libs Installed-Size: 507 Maintainer: Ubuntu Developers Original-Maintainer: Loïc Minier Architecture: amd64 Source: libwmf Version: 0.2.8.4-10.3ubuntu1 Depends: libc6 (>= 2.14), libexpat1 (>= 2.0.1), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libx11-6, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: gsfonts Suggests: libwmf0.2-7-gtk Filename: pool/main/libw/libwmf/libwmf0.2-7_0.2.8.4-10.3ubuntu1_amd64.deb Size: 172774 MD5sum: 8887d4a7462d3213a8bdb55a59ebc6f5 SHA1: 74a1926a19d2fc3a13929f38c20c32921fda7c67 SHA256: e3968c5ff30c470ab04e1f775085ee16b926f61feee4bcfd7c68c43fd645d02e Description: Windows metafile conversion library Multi-Arch: same Description-md5: d4d0facf23388b3fde4e4fc7dcb4d9de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libwmf0.2-7-gtk Priority: optional Section: libs Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Loïc Minier Architecture: amd64 Source: libwmf Version: 0.2.8.4-10.3ubuntu1 Depends: libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.12.0), libwmf0.2-7 (= 0.2.8.4-10.3ubuntu1) Filename: pool/main/libw/libwmf/libwmf0.2-7-gtk_0.2.8.4-10.3ubuntu1_amd64.deb Size: 6586 MD5sum: ba3abd0fb41c0bc19d267adc291c1efe SHA1: 672f8c7cf8c6863e018bfb0277f8415fbc21a69a SHA256: f20ac4094a798fb71ba7e230e5f154a5bf72975075dc2198a3e79b6774a789be Description: Windows metafile conversion library Description-md5: 6fbf2a15aa9e59937ed5083852b59256 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libwnck-3-0 Priority: optional Section: libs Installed-Size: 347 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libwnck3 Version: 3.4.7-0ubuntu3 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.4), libpango-1.0-0 (>= 1.14.0), libstartup-notification0 (>= 0.4), libx11-6, libxres1, libwnck-3-common Pre-Depends: multiarch-support Filename: pool/main/libw/libwnck3/libwnck-3-0_3.4.7-0ubuntu3_amd64.deb Size: 101034 MD5sum: 8e2d04129e9e47ffbe002a8d4c626b70 SHA1: 34a32896d7cbac11e4f0b4179e35378600039988 SHA256: 1450719f73049d29f33b99c8df68f2865aaf374f1fc6672a526e4d6ea86e1bd8 Description: Window Navigator Construction Kit - runtime files Multi-Arch: same Description-md5: dcba93a4b4b0d605d4c6197b75671b43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwnck-3-common Priority: optional Section: libs Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: libwnck3 Version: 3.4.7-0ubuntu3 Filename: pool/main/libw/libwnck3/libwnck-3-common_3.4.7-0ubuntu3_all.deb Size: 18728 MD5sum: 06767e82e33deefe9727bbf4f32c8f51 SHA1: 62816f11f096f5cd868d83ffd16dc99ff3c35ba0 SHA256: f74e309778f575cb23925c41cfc0250a5fbc2de6d6ffc014e2a9ed7529f3f752 Description: Window Navigator Construction Kit - common files Multi-Arch: foreign Description-md5: bdd169827af904bf2e501e31f632435a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwnck-3-dev Priority: optional Section: libdevel Installed-Size: 1120 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libwnck3 Version: 3.4.7-0ubuntu3 Replaces: gir-repository-dev (<< 0.6.5-7) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.4), libwnck-3-0 (= 3.4.7-0ubuntu3), libx11-6, gir1.2-wnck-3.0 (= 3.4.7-0ubuntu3), libglib2.0-dev (>= 2.32), libpango1.0-dev, libx11-dev, libgtk-3-dev (>= 3.4), libstartup-notification0-dev (>= 0.7), libcairo2-dev, libxres-dev Conflicts: libwnck-dev (<< 2.30.7-1) Filename: pool/main/libw/libwnck3/libwnck-3-dev_3.4.7-0ubuntu3_amd64.deb Size: 83630 MD5sum: 5b937f14cff9e09b3e25c084c46e66eb SHA1: d9cb35cb0c87293d1a7f7c3b92b098ddb76a329e SHA256: 2dc723209ed2711f7a8496d57c8fb627be85cad2588d9e1dfb6fd36ce4c6aedf Description: Window Navigator Construction Kit - development files Description-md5: cb65185699281ddbfd4a226066442426 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwnck-common Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: libwnck Version: 1:2.30.7-0ubuntu4 Filename: pool/main/libw/libwnck/libwnck-common_2.30.7-0ubuntu4_all.deb Size: 16378 MD5sum: 72a23a7438a0ea06c863d7c34881e974 SHA1: 45b310897b2f773cfcda053cd678d17229c67751 SHA256: 828fd94580274e461bcb0c10d887951071b9e1da751939052951ac384e2cdc02 Description: Window Navigator Construction Kit - common files Description-md5: bdd169827af904bf2e501e31f632435a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop Package: libwnck-dev Priority: optional Section: libdevel Installed-Size: 1446 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libwnck Version: 1:2.30.7-0ubuntu4 Replaces: gir-repository-dev (<< 0.6.5-7) Depends: libwnck22 (= 1:2.30.7-0ubuntu4), libglib2.0-dev (>= 2.13.0), libpango1.0-dev, libx11-dev, libgtk2.0-dev (>= 2.19.7), libstartup-notification0-dev (>= 0.7-1), libcairo2-dev, libxres-dev Filename: pool/main/libw/libwnck/libwnck-dev_2.30.7-0ubuntu4_amd64.deb Size: 157724 MD5sum: 2f9ab9d8f0f8fe4a0e501f3f0adb6da9 SHA1: 2173a215bce68e9e2202857400fd0f86279142f1 SHA256: 932cfd5aaee6dd632fb3418bd5d901aae420d37559b941bec4c82c2c58eb6762 Description: Window Navigator Construction Kit - development files Description-md5: cb65185699281ddbfd4a226066442426 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwnck22 Priority: optional Section: libs Installed-Size: 318 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: libwnck Version: 1:2.30.7-0ubuntu4 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.22.0), libpango-1.0-0 (>= 1.14.0), libstartup-notification0 (>= 0.4), libx11-6, libxres1, libwnck-common Filename: pool/main/libw/libwnck/libwnck22_2.30.7-0ubuntu4_amd64.deb Size: 98236 MD5sum: 0c22d96b3baf6de8ed9e77367a46f9f2 SHA1: d8b3f987be8d60484b058306f647e3e365129916 SHA256: 13caa37b0d2f3256b86c2b6a9fe0670bd3abbf7eb3307a14db58d88ff2c8b433 Description: Window Navigator Construction Kit - runtime files Description-md5: dcba93a4b4b0d605d4c6197b75671b43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop Package: libwpd-0.9-9 Priority: optional Section: libs Installed-Size: 991 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libwpd Version: 0.9.9-1 Replaces: libwpd0, libwpd2, libwpd3, libwpd4, libwpd5, libwpd6, libwpd8 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Conflicts: libwpd0, libwpd2, libwpd3, libwpd4, libwpd5, libwpd6, libwpd8 Filename: pool/main/libw/libwpd/libwpd-0.9-9_0.9.9-1_amd64.deb Size: 318648 MD5sum: 9b56937e27839a57baf5f96553e7bdf9 SHA1: aab6a4d6242cc9fd104bbcda2ef714c7755a5331 SHA256: 06895b842874621b060018283fe94f8c8c810327c37527f420d9ea8d00e9b441 Description: Library for handling WordPerfect documents (shared library) Description-md5: bf448ed5c2edad9a49b78d12811df68b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libwpd-dev Priority: optional Section: libdevel Installed-Size: 2626 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libwpd Version: 0.9.9-1 Depends: libwpd-0.9-9 (= 0.9.9-1) Filename: pool/main/libw/libwpd/libwpd-dev_0.9.9-1_amd64.deb Size: 527620 MD5sum: d7c419f445bde167268fa4e2ca0feeae SHA1: 327317775421913808fa81bf63fcb2db236cac50 SHA256: adce67f9bb7ffb8b3319e909cd923e6fddcacba6ca04c9b65f8a5e65a73722f8 Description: Library for handling WordPerfect documents (development) Description-md5: 78b231bce8a2d90ae963f8181c5ed7e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwpd-doc Priority: optional Section: doc Installed-Size: 14443 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libwpd Version: 0.9.9-1 Recommends: www-browser Filename: pool/main/libw/libwpd/libwpd-doc_0.9.9-1_all.deb Size: 2029140 MD5sum: 45eae7ffc12fcb92c10e6c722fe2df98 SHA1: 12f3247674664a1c64a9698d1b9973f0a5e2cbee SHA256: 43bef111ab2e15e6e57fc34358728f61797536be009e9b7476dc1ac8b69fcbb0 Description: Library for handling WordPerfect documents (documentation) Description-md5: 891c7038afdcc84fa6e5e183022a9769 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwpg-0.2-2 Priority: optional Section: libs Installed-Size: 227 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libwpg Version: 0.2.2-1ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), libwpd-0.9-9 Filename: pool/main/libw/libwpg/libwpg-0.2-2_0.2.2-1ubuntu1_amd64.deb Size: 61134 MD5sum: 7e08a5340947baa56df8544d075a6843 SHA1: 9ed52dae47356e917d4463f771fcb20161cf249d SHA256: 8e90e7e5582977f5f4aa85f8890e8eab77795e9ffd579a0198bb5201cb1e5088 Description: WordPerfect graphics import/convert library (shared library) Description-md5: dc6f7cab183ff3fc138fbccbd64a1e4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libwpg-dev Priority: extra Section: libdevel Installed-Size: 422 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libwpg Version: 0.2.2-1ubuntu1 Depends: libwpg-0.2-2 (= 0.2.2-1ubuntu1), libwpd-dev Filename: pool/main/libw/libwpg/libwpg-dev_0.2.2-1ubuntu1_amd64.deb Size: 65572 MD5sum: af042677a7cf6ef3e525e8597c59b5b8 SHA1: 1bf6bb64076d111f8220f6fbf5f1dde271fce8d4 SHA256: 664866270294aceb6eaeec288d275e640d8b0321f018b2f48b30c058f2014751 Description: WordPerfect graphics import/convert library (development) Description-md5: e7a5d5cfc34ef03fe96b1fa752947f72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwpg-doc Priority: extra Section: doc Installed-Size: 1596 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libwpg Version: 0.2.2-1ubuntu1 Filename: pool/main/libw/libwpg/libwpg-doc_0.2.2-1ubuntu1_all.deb Size: 97130 MD5sum: 4e1ea8d62762b48567548ef641e6051f SHA1: 576e175b1882ad448bae25d55f1134b926e46478 SHA256: 77c233e7875c26d681e9a59c3b82c9effd19ca887bd7c6d9b5ee2d4012eb3dc1 Description: WordPerfect graphics import/convert library (documentation) Description-md5: a0ad96ed9410c79e433574e799f6a621 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwps-0.2-2 Priority: optional Section: libs Installed-Size: 785 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libwps Version: 0.2.9-2ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libwpd-0.9-9 Filename: pool/main/libw/libwps/libwps-0.2-2_0.2.9-2ubuntu1_amd64.deb Size: 239608 MD5sum: 8d9722fd0f44daa498e0661e2292731c SHA1: 6eb90773e8633430fb6a12800181ea811a7e6981 SHA256: af8a96027b5d81c5859ff876fae1cf7c77d641bd2a272d4bdf110f9523849ebf Description: Works text file format import filter library (shared library) Description-md5: 9fd8eeeb0a21a535283abbb4019b13b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libwps-dev Priority: optional Section: libdevel Installed-Size: 1668 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: amd64 Source: libwps Version: 0.2.9-2ubuntu1 Depends: libwps-0.2-2 (= 0.2.9-2ubuntu1), libwpd-dev Filename: pool/main/libw/libwps/libwps-dev_0.2.9-2ubuntu1_amd64.deb Size: 262726 MD5sum: 56b52371cfc74dc33d069709f4da2561 SHA1: 324f755a1097ab7268678756f78cd2290a08f7d0 SHA256: 7652f4f05e05165709e36cb07c29e0c973a20ecbc18ba5038971b1678d8a42bb Description: Works text file format import filter library (development) Description-md5: 8839efbab4f8104c27efde97cd242e2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwps-doc Priority: optional Section: doc Installed-Size: 5586 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libwps Version: 0.2.9-2ubuntu1 Filename: pool/main/libw/libwps/libwps-doc_0.2.9-2ubuntu1_all.deb Size: 312408 MD5sum: b765f841fb5ae29ec98ccb44ee2e6c95 SHA1: 6a208954c9d2166313e36885f0f96965222bbff2 SHA256: 28404d1682179260eea445d25d7e7f4aeadf96583a1087b0e1791a45bee44f31 Description: Works text file format import filter library (documentation) Description-md5: c5684ba17506cb29b62fac571ccaa40b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwrap0 Priority: optional Section: libs Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: amd64 Source: tcp-wrappers Version: 7.6.q-25 Replaces: tcpd (<< 7.6.q-20) Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Recommends: tcpd Breaks: tcpd (<< 7.6.q-20) Filename: pool/main/t/tcp-wrappers/libwrap0_7.6.q-25_amd64.deb Size: 46166 MD5sum: 905cc5ce615710c161a728bc6ce1195e SHA1: a4b0d5eec41e8cc446034ccab0c867c7e5e68b3e SHA256: 981de0244f2c79301a6073b4db6bea2be95f038c81862ea1959383f913d08261 Description: Wietse Venema's TCP wrappers library Multi-Arch: same Description-md5: 398b420d625f5f15bad603d35ce5acb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, cloud-image, openssh-server, lamp-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwrap0-dev Priority: optional Section: libdevel Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: amd64 Source: tcp-wrappers Version: 7.6.q-25 Depends: libwrap0 (= 7.6.q-25) Filename: pool/main/t/tcp-wrappers/libwrap0-dev_7.6.q-25_amd64.deb Size: 20986 MD5sum: 2876e80d98d667cf3a2a0eaa76739825 SHA1: 2aac637b92869e2066a337c2fa372327c430d391 SHA256: 6172205705bb5e6d6dfe061880028942250883310d071e531e8a4b551830f456 Description: Wietse Venema's TCP wrappers library, development files Multi-Arch: same Description-md5: f53a3d19bcd15b4fdd53b720ab2cb8b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwvstreams-dev Priority: optional Section: libdevel Installed-Size: 7032 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: wvstreams Version: 4.6.1-7 Provides: libwvstreams4.6-dev Depends: libwvstreams4.6-base (= 4.6.1-7), libwvstreams4.6-extras (= 4.6.1-7), libuniconf4.6 (= 4.6.1-7), libxplc0.3.13-dev Suggests: tk8.5 | wish Filename: pool/main/w/wvstreams/libwvstreams-dev_4.6.1-7_amd64.deb Size: 1573522 MD5sum: 7cf594f7287988f9b321705f891b6497 SHA1: b3fc6907b45b165377e6e0e26190bf66f75bc594 SHA256: 1e1a718e240ce4466ba31d4aae96de3e552d22d9bdef9bd1f74cc8054f1aed70 Description: Development libraries and header files for libwvstreams4.6 Description-md5: f53c7d0d4d2882cf24702de20d911415 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwvstreams4.6-base Priority: optional Section: libs Installed-Size: 626 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: wvstreams Version: 4.6.1-7 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/w/wvstreams/libwvstreams4.6-base_4.6.1-7_amd64.deb Size: 202564 MD5sum: fee6246e273ba9c2ff39385918e3f52a SHA1: b57cf33925547c2a7e6800759ebd1e20a2bf5d03 SHA256: 5fe537b4321666654205dac06d9688579424e3ddc3ab1f3f6396bf2124347338 Description: C++ network libraries for rapid application development Description-md5: 97ed1e5a42601ef768f8d0fd8c832a3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-desktop Package: libwvstreams4.6-doc Priority: optional Section: doc Installed-Size: 49002 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Source: wvstreams Version: 4.6.1-7 Suggests: libwvstreams-dev (= 4.6.1-7) Filename: pool/main/w/wvstreams/libwvstreams4.6-doc_4.6.1-7_all.deb Size: 12640956 MD5sum: 78fec4ab8da3462b385f458f46279bcd SHA1: 0f20e387398ae0f44e2cd28547b8bd94b3069f89 SHA256: 58777b8115d3a2e83564ff2f9481f8d13b229bf2203d7e0b6a4ca9962ee69e5f Description: Documentation for WvStreams Description-md5: e7183a424bd0d0e61a806b5bba46c90a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwvstreams4.6-extras Priority: optional Section: libs Installed-Size: 1305 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: wvstreams Version: 4.6.1-7 Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.2.14), libgcc1 (>= 1:4.1.1), libpam0g (>= 0.99.7.1), libssl1.0.0 (>= 1.0.0), libstdc++6 (>= 4.1.1), libwvstreams4.6-base, zlib1g (>= 1:1.1.4) Filename: pool/main/w/wvstreams/libwvstreams4.6-extras_4.6.1-7_amd64.deb Size: 441826 MD5sum: 275d85005fe762aa48e8a8103fd5a22d SHA1: a682026af773acf67687e505015e922770a7dc68 SHA256: 74d18fabb7cddc5c512773c7d5973036e34aa937a9977eb9bf1629737c1c8078 Description: C++ network libraries for rapid application development Description-md5: 4a7a7e63117ad4a89ff5ef5cc9dd9560 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-desktop Package: libwww-perl Priority: optional Section: perl Installed-Size: 375 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.05-2 Depends: perl, ca-certificates, libencode-locale-perl, libfile-listing-perl, libhtml-parser-perl, libhtml-tagset-perl, libhtml-tree-perl, libhttp-cookies-perl, libhttp-date-perl, libhttp-message-perl, libhttp-negotiate-perl, liblwp-mediatypes-perl, liblwp-protocol-https-perl, libnet-http-perl (>= 6.04), liburi-perl, libwww-robotrules-perl, netbase Recommends: libhtml-form-perl, libhtml-format-perl, libhttp-daemon-perl, libmailtools-perl Suggests: libauthen-ntlm-perl Breaks: fusioninventory-agent (<< 2.1.8-2), gsutil (<< 3.1-1), libfrontier-rpc-perl (<< 0.07b4-6), libhttp-daemon-ssl-perl (<< 1.04-3), libhttp-proxy-perl (<< 0.24-2), libhttp-request-ascgi-perl (<< 1.2-2), libhttp-request-params-perl (<< 1.01-6), libjson-rpc-perl (<< 0.96-3), libpoe-perl (<< 2:1.2990-2), librpc-xml-perl (<< 0.74-2), libsoap-lite-perl (<< 0.7.12-3), libwww-mechanize-formfiller-perl (<< 0.10-2), libwww-mechanize-perl (<< 1.66-2), satutils (<= 0.6), tidy-proxy (<< 0.97-4) Filename: pool/main/libw/libwww-perl/libwww-perl_6.05-2_all.deb Size: 146212 MD5sum: 9b4afd35256fad3c9d8a11f5aa2253a3 SHA1: 66507129af9b54dc5d3296df57d7fb1a2d5b6812 SHA256: df42a55adeb2cabf87416675dbee61c1ac946b67bda8bde10c8cee7310e7aadd Description: simple and consistent interface to the world-wide web Homepage: https://metacpan.org/release/libwww-perl/ Description-md5: 313b4d890db3570fc5f14a335ceff587 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwww-robotrules-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.01-1 Replaces: libwww-perl (<< 6.00) Depends: perl, liburi-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libw/libwww-robotrules-perl/libwww-robotrules-perl_6.01-1_all.deb Size: 14074 MD5sum: 95112b59013c9e643ada5ddddb62d9b8 SHA1: 39693be3d45fcfd0852e2de9070abc36cb7242a5 SHA256: 5516cd8881af8032ccbeb1fb678c51d2f4b4f98128eccbb126fc0e07571ed830 Description: database of robots.txt-derived permissions Homepage: http://search.cpan.org/dist/WWW-RobotRules/ Description-md5: c1793eba30f9ab7256b5a25ded8e1664 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libx11-6 Priority: standard Section: libs Installed-Size: 1509 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libc6 (>= 2.15), libxcb1 (>= 1.2), libx11-data Pre-Depends: multiarch-support Filename: pool/main/libx/libx11/libx11-6_1.6.2-1ubuntu2_amd64.deb Size: 560358 MD5sum: 5bfdc28ea19e4e667b5aaa5d6d5f45aa SHA1: b91ef4c0683a76a396a6e8fe21e469c29558f599 SHA256: a5cbc9452e82fc1495e657a0bfe67aa964071c09e05a89f6ca037f2cda1af963 Description: X11 client-side library Multi-Arch: same Description-md5: d75c895abf6eca234f7480813aaa95ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libx11-6-dbg Priority: extra Section: libdevel Installed-Size: 11053 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libx11-6 (= 2:1.6.2-1ubuntu2) Filename: pool/main/libx/libx11/libx11-6-dbg_1.6.2-1ubuntu2_amd64.deb Size: 978282 MD5sum: 96c9d50dfacbcc74338c10bc2fffdd8d SHA1: e6037f448f0d1552146b9d8aba65523e2e79fdae SHA256: b7b46c2643e58551a1146a16227d65ee7bf76b852d9b4b63ae72032101cca3bf Description: X11 client-side library (debug package) Multi-Arch: same Description-md5: aba9421d3cbaf726029435b7f064a21f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx11-data Priority: standard Section: x11 Installed-Size: 1581 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libx11 Version: 2:1.6.2-1ubuntu2 Breaks: libx11-6 (<< 2:1.4.1) Filename: pool/main/libx/libx11/libx11-data_1.6.2-1ubuntu2_all.deb Size: 111380 MD5sum: 003252d2b4043b0ba1163b861653d589 SHA1: fcb2fa6d592f76cb653c2a40fe210867d9610bf6 SHA256: 9ee55771e7ef079fa1ebc0897e3bf7c6ac616b978eb228711d56132b8aa5cfd3 Description: X11 client-side library Multi-Arch: foreign Description-md5: 6c325636dc71729675cb0107afb6ecf0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libx11-dev Priority: optional Section: libdevel Installed-Size: 2606 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libx11-6 (= 2:1.6.2-1ubuntu2), libxau-dev (>= 1:1.0.0-1), libxdmcp-dev (>= 1:1.0.0-1), x11proto-core-dev (>= 7.0.17), x11proto-input-dev, x11proto-kb-dev, xtrans-dev, libxcb1-dev Recommends: libx11-doc Filename: pool/main/libx/libx11/libx11-dev_1.6.2-1ubuntu2_amd64.deb Size: 628910 MD5sum: 872b012450a9504f69ab26e5886a4317 SHA1: aa7a3b924e5e71e12adcde975aa9139ae593e206 SHA256: 6b56bcc0d2542404e49aca99d533805b36677ccfaf92772ad3a92d361803c328 Description: X11 client-side library (development headers) Multi-Arch: same Description-md5: d15ee011f0b76dcc1f36f3a309df4a93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx11-doc Priority: optional Section: libdevel Installed-Size: 8836 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libx11 Version: 2:1.6.2-1ubuntu2 Replaces: libx11-dev (<< 2:1.4.4-3) Breaks: libx11-dev (<< 2:1.4.4-3) Filename: pool/main/libx/libx11/libx11-doc_1.6.2-1ubuntu2_all.deb Size: 1447816 MD5sum: 4246dd16262c75b81db618288ab19038 SHA1: 2e96a4bbd90c3fdfa85e2af05330b3f264d5f638 SHA256: 3cb96a01e95f5eb27db60ee94f4c6b29aee716a5d3f1d11d5686af5585031355 Description: X11 client-side library (development documentation) Multi-Arch: foreign Description-md5: b3f98cb9df5727061e55dc69bf459fb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx11-xcb-dev Priority: optional Section: libdevel Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libx11-xcb1 (= 2:1.6.2-1ubuntu2), libxcb1-dev (>= 0.9.92), libx11-dev Filename: pool/main/libx/libx11/libx11-xcb-dev_1.6.2-1ubuntu2_amd64.deb Size: 9758 MD5sum: b0e9cb1b263b3665243501f546a49dfb SHA1: 3568af78b0434c36df77d804b273595b4cbf99bf SHA256: 2635753ffa1388c86a259baf2f52da9c93a6ed4d7745c018e93ede65270466b9 Description: Xlib/XCB interface library (development headers) Multi-Arch: same Description-md5: ee46e7a5a5a4162c9e382ed7112759eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libx11-xcb1 Priority: optional Section: libs Installed-Size: 235 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libc6 (>= 2.2.5) Pre-Depends: multiarch-support Filename: pool/main/libx/libx11/libx11-xcb1_1.6.2-1ubuntu2_amd64.deb Size: 9426 MD5sum: 883e22f0ff03018c9fad15b5c10a2fca SHA1: 1e5cecdfd6233de088baeb499660682902095332 SHA256: 0bbaba8d4536c014edbfc3f3d7223edfaa47ea9385eeeedbaab6f2f35a250795 Description: Xlib/XCB interface library Multi-Arch: same Description-md5: 8904e1c2cc3cadffdce355234a23f6c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libx11-xcb1-dbg Priority: extra Section: libdevel Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libx11-xcb1 (= 2:1.6.2-1ubuntu2) Filename: pool/main/libx/libx11/libx11-xcb1-dbg_1.6.2-1ubuntu2_amd64.deb Size: 18524 MD5sum: 71fea1ec8d1386f1de2e6fc92e6baa40 SHA1: 141389948a3048d44f91bf142b2d9e1cdcfb1c1f SHA256: 404f3b5165ecdb7444d4eac49743fd8194c04480b7f63fcc82eed73d96a55211 Description: Xlib/XCB interface library (debug package) Multi-Arch: same Description-md5: e1bdd7a7a9d36bb39443201e274af2ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32asan0 Priority: extra Section: libs Installed-Size: 193 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16), libx32gcc1 Filename: pool/main/g/gcc-4.8/libx32asan0_4.8.2-19ubuntu1_amd64.deb Size: 63054 MD5sum: d22ed55f51cc973b27c3366885ec8387 SHA1: aee54b072c7eb71a437c25c0d3be08b9e4b1178d SHA256: cf1e1a7dc103070852aa82bf1e8a2726dd9b7a7e232fbad9a4d29e19318279b5 Description: AddressSanitizer -- a fast memory error detector (x32) Homepage: http://gcc.gnu.org/ Description-md5: 51a639c3760e456ac48834fb47045c42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32asan0-dbg Priority: extra Section: debug Installed-Size: 806 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32asan0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32asan0-dbg_4.8.2-19ubuntu1_amd64.deb Size: 223496 MD5sum: 0a558bf28342fabb6553cb4fdb500c3b SHA1: 0cc9bf890873e2adac46d906d92fefa220e73bdf SHA256: 86201dbdbd0db2e3bf4e440d00059f293ae10903c0c773df67535d13ea56f079 Description: AddressSanitizer -- a fast memory error detector (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: b66995cafb0cff1e16849ce190628573 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32atomic1 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16) Filename: pool/main/g/gcc-4.8/libx32atomic1_4.8.2-19ubuntu1_amd64.deb Size: 8590 MD5sum: 23bd0e16645fb4d89e06e8b64b488d69 SHA1: 5f1d4fb17cdda66354d70b5076c0fb0a810a26d0 SHA256: 368509672c7443b40d22a074c75457f7c09f2e4e5d8c61c20200b7abece23c81 Description: support library providing __atomic built-in functions (x32) Homepage: http://gcc.gnu.org/ Description-md5: 17429d2d39217f0a95507decf171c10f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32atomic1-dbg Priority: extra Section: debug Installed-Size: 123 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32atomic1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32atomic1-dbg_4.8.2-19ubuntu1_amd64.deb Size: 16130 MD5sum: b45b5622017e01f697e2eae93652a316 SHA1: 6d169b181dd412ce475ce0cce8f931c11405c37e SHA256: e250c194f4ee7d570b2c61d16667b2557838a9680bffb5d5547eb36f45939e36 Description: support library providing __atomic built-in functions (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: a1d046f7c7bf1745f37238262b4d1081 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32gcc-4.7-dev Priority: optional Section: libdevel Installed-Size: 3621 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gcc-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib32gcc1 (>= 1:4.7.3-12ubuntu1), libx32gcc1 (>= 1:4.7.3-12ubuntu1), lib32gomp1 (>= 4.7.3-12ubuntu1), libx32gomp1 (>= 4.7.3-12ubuntu1), lib32itm1 (>= 4.7.3-12ubuntu1), libx32itm1 (>= 4.7.3-12ubuntu1), lib32quadmath0 (>= 4.7.3-12ubuntu1), libx32quadmath0 (>= 4.7.3-12ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.7/libx32gcc-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 1442950 MD5sum: 3e2d964f6e05c453d01a04ea3537b963 SHA1: 1e288584bc73c735e6df873fbe901147721ec017 SHA256: 77dc1e39b1dffedc79806e71af7fa438eb4bd38e2bb1e47fe1c73b11b2f14c83 Description: GCC support library (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: df49fd36cacd441ececa361c98eaaa4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32gcc-4.8-dev Priority: optional Section: libdevel Installed-Size: 4130 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32gcc1 (>= 1:4.8.2-19ubuntu1), libx32gcc1 (>= 1:4.8.2-19ubuntu1), lib32gomp1 (>= 4.8.2-19ubuntu1), libx32gomp1 (>= 4.8.2-19ubuntu1), lib32itm1 (>= 4.8.2-19ubuntu1), libx32itm1 (>= 4.8.2-19ubuntu1), lib32atomic1 (>= 4.8.2-19ubuntu1), libx32atomic1 (>= 4.8.2-19ubuntu1), lib32asan0 (>= 4.8.2-19ubuntu1), libx32asan0 (>= 4.8.2-19ubuntu1), lib32quadmath0 (>= 4.8.2-19ubuntu1), libx32quadmath0 (>= 4.8.2-19ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8/libx32gcc-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 1556066 MD5sum: 9e38fb07e50912ac2e5e0e7154e115d7 SHA1: dfa30c9e02c96280269585db2d597886bc924ac9 SHA256: 7e672d1152912f8428aaad217b2fd307f1a28a09f7f69f9ccecb53d954c45175 Description: GCC support library (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: df49fd36cacd441ececa361c98eaaa4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32gcc1 Priority: optional Section: libs Installed-Size: 111 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libc6-x32 (>= 2.16) Filename: pool/main/g/gccgo-4.9/libx32gcc1_4.9-20140406-0ubuntu1_amd64.deb Size: 38580 MD5sum: ccf180f84a020b1b36bcb804b9881064 SHA1: b2ffcb72ad40c144b01f0e3d2b4e029e27339a0e SHA256: e603f29e9854164756669b9ba30a810c927f321ac141dc37ddefa444b417f6e0 Description: GCC support library (x32) Homepage: http://gcc.gnu.org/ Description-md5: 23c4abc6ef9d972b6f047316897bf30d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32gcc1-dbg Priority: extra Section: debug Installed-Size: 392 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libx32gcc1 (= 1:4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/libx32gcc1-dbg_4.9-20140406-0ubuntu1_amd64.deb Size: 83286 MD5sum: 0dc7a29b1662445179ff436629550498 SHA1: 435a971931ba9858587fd85e1c20daa080ba8a26 SHA256: 3fb064fc10eadd1f7a2fed89d43c17e4c7d2e802785b315b7a3e8b80a4d906de Description: GCC support library (debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: d2281f8d5a2b7dae7c362df43affcb03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32gfortran-4.7-dev Priority: optional Section: libdevel Installed-Size: 2170 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gfortran-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libx32gfortran3 (>= 4.7.3-12ubuntu1) Breaks: gfortran-4.7-multilib (<< 4.7.2-10) Filename: pool/main/g/gcc-4.7/libx32gfortran-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 266924 MD5sum: 81fa93c361bf175345c81caf9d854380 SHA1: 1995ff0f80966c04fd9de4a4146d803a5b560d90 SHA256: 0d1e94156bdbb2f9b1c44662d402c8f9d0fdce68f7445776d0de5a5dc3d3fb16 Description: Runtime library for GNU Fortran applications (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: aae616b6d05c4081844ad0d321e187db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32gfortran-4.8-dev Priority: optional Section: libdevel Installed-Size: 2173 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gcc-4.8-dev (= 4.8.2-19ubuntu1), libx32gfortran3 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32gfortran-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 267660 MD5sum: 8a92c2562b014f40fea15848360949be SHA1: c3512a6413c71ea7129675eb476dd9dd18a8089d SHA256: b188525a0b89e6304bba8b82483107e0311b6220e7aa622d75207bfd8f96d391 Description: Runtime library for GNU Fortran applications (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: aae616b6d05c4081844ad0d321e187db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32gfortran3 Priority: optional Section: libs Installed-Size: 1110 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib32quadmath0 (>= 4.6), libc6-x32 (>= 2.17), libx32gcc1 Filename: pool/main/g/gcc-4.8/libx32gfortran3_4.8.2-19ubuntu1_amd64.deb Size: 247458 MD5sum: 063e0ea7130135d0924af92ac92a1f2c SHA1: e1a632757720ca2f882f573ceba76d50b4113146 SHA256: 43d3268c437e4bc23cc2055f27e4ca94ffe60947e4488ab5528b4c32ab4e97dd Description: Runtime library for GNU Fortran applications (x32) Homepage: http://gcc.gnu.org/ Description-md5: 3c011e928f9c344ce5ade56af0ec77b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32gfortran3-dbg Priority: extra Section: debug Installed-Size: 3218 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gfortran3 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32gfortran3-dbg_4.8.2-19ubuntu1_amd64.deb Size: 571260 MD5sum: ab90647a0cd0690fd6b02d6d5cc744a5 SHA1: 5cb22b07f5803743599c4219a5e34d2b2f4674d4 SHA256: 9e8b5697b6fd9a71bf5933ec1750aa2855880ebd5edb08144a30c8ce2659d607 Description: Runtime library for GNU Fortran applications (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 10f29f1b5242ebba520971f18415252b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32go4 Priority: optional Section: libs Installed-Size: 10526 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: libx32go3 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16), libx32gcc1 Filename: pool/main/g/gcc-4.8/libx32go4_4.8.2-19ubuntu1_amd64.deb Size: 2278928 MD5sum: 4ee1ff37b9fbcca4fda699edb08bd499 SHA1: b70e61be41de00b8c7eda5076d209083bc0df51c SHA256: 297e73c159bd8d1f58e295ee90ecbe5a5a52a97c0156554d5a92acb5aff0e513 Description: Runtime library for GNU Go applications (x32) Homepage: http://gcc.gnu.org/ Description-md5: 274d67a4807b2168ae6370f3e1f6a565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32go4-dbg Priority: extra Section: debug Installed-Size: 9920 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32go4 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32go4-dbg_4.8.2-19ubuntu1_amd64.deb Size: 2659692 MD5sum: a7f5f2065b1d5e7b3e79ced2fb6ed65d SHA1: cb49b01e86771c3ee11be1a062c0ee7d80c1354d SHA256: 30c7f990836d08d76ba9a7f9ab54f2aa2c0a20e9e4758d6907da8216ebc1f836 Description: Runtime library for GNU Go applications (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: b33948c5b9b0f100214d8270ff91f5b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32go5 Priority: optional Section: libs Installed-Size: 11454 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Replaces: libx32go3 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), lib32gcc1 (>= 1:4.1.1), libc6-x32 (>= 2.16) Filename: pool/main/g/gccgo-4.9/libx32go5_4.9-20140406-0ubuntu1_amd64.deb Size: 2536458 MD5sum: f508b8c51ea7287a6ea2e215511f8b24 SHA1: e74d3511c1dce6294f50dd7c2860a867ad770ae7 SHA256: 5d8e480765113667de7f2ddc0018621b35a259805c9aa6860d374b1523a7a4cd Description: Runtime library for GNU Go applications (x32) Homepage: http://gcc.gnu.org/ Description-md5: 274d67a4807b2168ae6370f3e1f6a565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32go5-dbg Priority: extra Section: debug Installed-Size: 10574 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libx32go5 (= 4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/libx32go5-dbg_4.9-20140406-0ubuntu1_amd64.deb Size: 2848264 MD5sum: d036f17edcffe26d8f4227e3e9aca27b SHA1: 1db73c22eb9672ae78c4bf4352042cdc14ef7794 SHA256: ef467af314af503ac2ce8cad520f8582a308855d428ec9e8430592956333db85 Description: Runtime library for GNU Go applications (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: b33948c5b9b0f100214d8270ff91f5b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32gomp1 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.17) Filename: pool/main/g/gcc-4.8/libx32gomp1_4.8.2-19ubuntu1_amd64.deb Size: 22492 MD5sum: 321fd9ed2f186bbd9693036d51e8706f SHA1: ce280728ce44b9b26d8f409bbe49d04d59e9efca SHA256: 5742a2435c1caa6186c5cbe8ff4e989945a12f92c7f81e42ae66a00b0a1e75f2 Description: GCC OpenMP (GOMP) support library (x32) Homepage: http://gcc.gnu.org/ Description-md5: 1388436f97e9425feb598766343a05b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32gomp1-dbg Priority: extra Section: debug Installed-Size: 228 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gomp1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32gomp1-dbg_4.8.2-19ubuntu1_amd64.deb Size: 54496 MD5sum: c001dfa032bb3626884c8bcc41149f3a SHA1: d8fa4d9c09d73daae8929820df1c8dd5e4c92a3c SHA256: 67d44f1e19f7cb6cdec58ff358bad249d3d658b4357da4ccf2c86c08c4d9bedb Description: GCC OpenMP (GOMP) support library (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 7f819ff9ae10ec2d6646003e0204dc5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32itm1 Priority: optional Section: libs Installed-Size: 138 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16) Filename: pool/main/g/gcc-4.8/libx32itm1_4.8.2-19ubuntu1_amd64.deb Size: 28380 MD5sum: c14ee3b7182d5521a265dd397b6caf15 SHA1: e791f09ec6369291a8ad01e76ab70c320fa42ed6 SHA256: e36a6068d098435c527ca49556ec390956bbecbaf1f1e5afdea87ce0dc5baca1 Description: GNU Transactional Memory Library (x32) Homepage: http://gcc.gnu.org/ Description-md5: 60c3549c857ee22163b3a82b265880de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32itm1-dbg Priority: extra Section: debug Installed-Size: 837 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32itm1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32itm1-dbg_4.8.2-19ubuntu1_amd64.deb Size: 173968 MD5sum: f104436b2e1a67eda7e4227aa7daf1f2 SHA1: 755e515a375d1bb69583086cba62f29c44da1036 SHA256: 74ed47bb17822cfb6b81088f5ee494f514c348f3aea7b5d5ca415df02e5da987 Description: GNU Transactional Memory Library (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 139a395a1e47ba8b13f22f43588f31ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32ncurses5 Priority: optional Section: libs Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libx32tinfo5 (= 5.9+20140118-1ubuntu1), libc6-x32 (>= 2.16), libtinfo5 Filename: pool/main/n/ncurses/libx32ncurses5_5.9+20140118-1ubuntu1_amd64.deb Size: 92216 MD5sum: dd5cc6b11ef709a272161993a6d11c48 SHA1: b1c29cd47186623a534812cb5a7d48e420d90f2a SHA256: 70a52d85e564545a048f921e7a513dab1abaa8226dd06e8c9b2507ba0b31123e Description: shared libraries for terminal handling (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: fceb9a289e870db9f0ebc092d5b96499 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32ncurses5-dev Priority: optional Section: libdevel Installed-Size: 555 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libx32tinfo5 (= 5.9+20140118-1ubuntu1), libx32ncurses5 (= 5.9+20140118-1ubuntu1), libx32tinfo-dev (= 5.9+20140118-1ubuntu1), libncurses5-dev (= 5.9+20140118-1ubuntu1), libc6-dev-x32, libtinfo5 Suggests: ncurses-doc Filename: pool/main/n/ncurses/libx32ncurses5-dev_5.9+20140118-1ubuntu1_amd64.deb Size: 117782 MD5sum: 91b98e34c8a7bd9e328bf1bd37d55bd8 SHA1: b631bb66e44117f7c812293abad2013824040907 SHA256: a12cd9bc55e6b8be70e8650168726a9b47ccc6c4557482843afffb0029df9259 Description: developer's libraries for ncurses (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: b4a970837706b4434dc3c622b9db96a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32ncursesw5 Priority: optional Section: libs Installed-Size: 347 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libx32tinfo5 (= 5.9+20140118-1ubuntu1), libc6-x32 (>= 2.16), libtinfo5 Filename: pool/main/n/ncurses/libx32ncursesw5_5.9+20140118-1ubuntu1_amd64.deb Size: 119020 MD5sum: 2922be3f8da33d31737fdab497811637 SHA1: 3421f34144e17dcaf064bc559e768e9876b0e61f SHA256: 002b9a24876a360c93f2fcd24f33c12a59c055f40b70cc17670b039efbb10b00 Description: shared libraries for terminal handling (wide character support) (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: ded417186d6fc291b9168dbf45fc2904 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32ncursesw5-dev Priority: optional Section: libdevel Installed-Size: 664 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libx32tinfo5 (= 5.9+20140118-1ubuntu1), libx32ncursesw5 (= 5.9+20140118-1ubuntu1), libx32tinfo-dev (= 5.9+20140118-1ubuntu1), libncursesw5-dev (= 5.9+20140118-1ubuntu1), libc6-dev-x32, libtinfo5 Suggests: ncurses-doc Filename: pool/main/n/ncurses/libx32ncursesw5-dev_5.9+20140118-1ubuntu1_amd64.deb Size: 145540 MD5sum: fb2d22bf8b89365aa09d9bf4e3544e61 SHA1: 89fde7c14b9c175058afc4b467705f46324ce591 SHA256: 43425eec4dbc37af15f9e2e85dd4af32e6c3e8f7c7f5087303e438de19990af6 Description: developer's libraries for ncursesw (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: e08e46c6b2e6a096698ef5796a340bcd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32objc-4.7-dev Priority: optional Section: libdevel Installed-Size: 1790 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gobjc-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libx32gcc-4.7-dev (= 4.7.3-12ubuntu1), libx32objc4 (>= 4.7.3-12ubuntu1) Filename: pool/main/g/gcc-4.7/libx32objc-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 340486 MD5sum: 2352cffb70d6968e218ea42fd9d044a1 SHA1: e02c8b6782f797720936fdc36b35e8f13da54974 SHA256: f6c9129e4e272f1ea95be79de47c73f8906ce7d78c5a0f1cc90256faf382fab6 Description: Runtime library for GNU Objective-C applications (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: f7dcb47d6608005e0ecbde60e08685b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32objc-4.8-dev Priority: optional Section: libdevel Installed-Size: 2048 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gcc-4.8-dev (= 4.8.2-19ubuntu1), libx32objc4 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32objc-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 346442 MD5sum: bd7f0d68aef9249125d6daefba602e5b SHA1: 753aeaba2208e0b0cfd5e0ce55977b5739dfbfeb SHA256: 30e0c5f107929c0b7ee341395759dc909c291208567e73752955e7becb7185e0 Description: Runtime library for GNU Objective-C applications (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: f7dcb47d6608005e0ecbde60e08685b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32objc4 Priority: optional Section: libs Installed-Size: 364 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16), libx32gcc1 Filename: pool/main/g/gcc-4.8/libx32objc4_4.8.2-19ubuntu1_amd64.deb Size: 105658 MD5sum: bb64f03d4b270f1cc92f81ed59a1c1d3 SHA1: 2ba5c50be594738e6005d29a3c9e72db5a3df287 SHA256: 56d575e21cbf1b3de8493f20e48019e01c2b2f265c1650f74adf9d2c7d7fe2f9 Description: Runtime library for GNU Objective-C applications (x32) Homepage: http://gcc.gnu.org/ Description-md5: e253306fc795d9cc9e7c2acac0d2ad1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32objc4-dbg Priority: extra Section: debug Installed-Size: 799 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32objc4 (= 4.8.2-19ubuntu1), libx32gcc1-dbg (>= 1:4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32objc4-dbg_4.8.2-19ubuntu1_amd64.deb Size: 204700 MD5sum: 4999c57880d12389b52cb3a5139d287a SHA1: 11f6ebba277ccdb7dba3646afa5d75aa21b899f3 SHA256: 2f046890e58b76fe9fae1ff9f933d380b05784ebc933c5e3b9c4ce545e6fc50f Description: Runtime library for GNU Objective-C applications (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 15ac2bbe50562f8e9e528e6d5f6f1024 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32quadmath0 Priority: optional Section: libs Installed-Size: 267 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16) Filename: pool/main/g/gcc-4.8/libx32quadmath0_4.8.2-19ubuntu1_amd64.deb Size: 128114 MD5sum: d146f5150078076b88599b7667ef6e78 SHA1: 9131906e7b3e9867aa469a53515c83c2bcbfe317 SHA256: 16973a02a7958c760d2eb7f8db873266f0e40b35aca38e64649fc9f118108869 Description: GCC Quad-Precision Math Library (x32) Homepage: http://gcc.gnu.org/ Description-md5: 514c6a5cffd4febce8121f2d08419504 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32quadmath0-dbg Priority: extra Section: debug Installed-Size: 549 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32quadmath0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32quadmath0-dbg_4.8.2-19ubuntu1_amd64.deb Size: 143356 MD5sum: 8bdfcf2c0b6a23ee5e0446aa71866d1e SHA1: c9e08366825883032eba7c779679f6eea46fb6f4 SHA256: 66c77e1bda09f3a3df0664201fccf43e2a1bf0a3d651ffe10fc55fd9213c6443 Description: GCC Quad-Precision Math Library (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: d1cced9ca62d9dde3650384b57532901 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32readline6 Priority: optional Section: libs Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: readline6 Version: 6.3-4ubuntu2 Depends: readline-common, libc6-x32 (>= 2.16), libx32tinfo5 Filename: pool/main/r/readline6/libx32readline6_6.3-4ubuntu2_amd64.deb Size: 114144 MD5sum: 0044f8fa7cc6173cd79e5297bab588e5 SHA1: 56fc12425fa6be4ca31c40a1710d40c0560ef453 SHA256: 181079cee845f3c6f552eb74d8dab80d4ea724767a45dfb9bdee105c639674a4 Description: GNU readline and history libraries, run-time libraries (x32) Description-md5: a24bad6e943ee70c4af3f3d151862999 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32readline6-dev Priority: optional Section: libdevel Installed-Size: 455 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: readline6 Version: 6.3-4ubuntu2 Provides: libx32readline-dev Depends: libx32readline6 (= 6.3-4ubuntu2), libx32tinfo-dev, libc6-dev-x32 Conflicts: libx32readline-dev, libx32readline-gplv2-dev Filename: pool/main/r/readline6/libx32readline6-dev_6.3-4ubuntu2_amd64.deb Size: 107754 MD5sum: a14d7cb9f0db1bcfa0994ad2ec2a4150 SHA1: b9a814ce1073cbb1520ece786d036c26caccf6c8 SHA256: 907306eabbb81cdf65651359cd6997bdf6a1231f5d0b961f7805b462cc770f23 Description: GNU readline and history libraries, development files (x32) Description-md5: f6c0478c47e41ba607cdd59b43b7e16e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32stdc++-4.8-dev Priority: optional Section: libdevel Installed-Size: 4892 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gcc-4.8-dev (= 4.8.2-19ubuntu1), libx32stdc++6 (>= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32stdc++-4.8-dev_4.8.2-19ubuntu1_amd64.deb Size: 314716 MD5sum: 7908105399d0d0cbee6a79737927789a SHA1: 59c57f19e3fe9fe090dcc67c758976c0cd23dd2f SHA256: e9e6c1dd2a6f2531e6d7422370c54f928dce0fcfe251ed08d83db41f5c65e12e Description: GNU Standard C++ Library v3 (development files) Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32stdc++6 Priority: optional Section: libs Installed-Size: 884 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gcc1 (>= 4.8.2-19ubuntu1), libc6-x32 (>= 2.17) Filename: pool/main/g/gcc-4.8/libx32stdc++6_4.8.2-19ubuntu1_amd64.deb Size: 235044 MD5sum: e39483c31309fb6a85a2350753e27509 SHA1: 609e5f2bfbd8dc7ed1870ae26a4136e86db51072 SHA256: 28e46fdfe4c5ea8f9b35cd6e65a896228e44d63b9180f39c6a6730d1bbfe26be Description: GNU Standard C++ Library v3 (x32) Homepage: http://gcc.gnu.org/ Description-md5: f336833aedca4cda1d9923ce79172164 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32stdc++6-4.7-dbg Priority: extra Section: debug Installed-Size: 17790 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libx32stdc++6 (>= 4.7.3-12ubuntu1), libstdc++6-4.7-dev (= 4.7.3-12ubuntu1), libx32gcc1-dbg (>= 1:4.7.3-12ubuntu1), libc6-x32 (>= 2.16), libx32gcc1 Conflicts: libx32stdc++6-4.0-dbg, libx32stdc++6-4.1-dbg, libx32stdc++6-4.2-dbg, libx32stdc++6-4.3-dbg, libx32stdc++6-4.4-dbg, libx32stdc++6-4.5-dbg, libx32stdc++6-4.6-dbg, libx32stdc++6-dbg Filename: pool/main/g/gcc-4.7/libx32stdc++6-4.7-dbg_4.7.3-12ubuntu1_amd64.deb Size: 2602598 MD5sum: 7b6ac21a6cea6154c2cbaa030ef8c0c6 SHA1: 3adece24a4222f00cb67d914cea69b69f3b99b26 SHA256: 1955adab6d0f8b5fec3303b63d82dffbb44f09f6d86d33da9a6fdf2c46cefa3f Description: GNU Standard C++ Library v3 (debugging files) Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32stdc++6-4.7-dev Priority: optional Section: libdevel Installed-Size: 4797 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: g++-4.7-multilib (<< 4.7.2-10), libstdc++6-4.7-dev (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libx32gcc-4.7-dev (= 4.7.3-12ubuntu1), libx32stdc++6 (>= 4.7.3-12ubuntu1), libstdc++6-4.7-dev (= 4.7.3-12ubuntu1) Breaks: g++-4.7-multilib (<< 4.7.2-10), libstdc++6-4.7-dev (<< 4.7.2-10) Filename: pool/main/g/gcc-4.7/libx32stdc++6-4.7-dev_4.7.3-12ubuntu1_amd64.deb Size: 304690 MD5sum: 9ce37e96773e6cc4bd999dd2028b47da SHA1: d274bd17d2065fae1c3500a84bf9a75bbce26ef4 SHA256: 1f4fbf71fdec447eea3aba242476b4f3561ab5edbb256043c1fdac50e2c181ef Description: GNU Standard C++ Library v3 (development files) Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32stdc++6-4.8-dbg Priority: extra Section: debug Installed-Size: 21740 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32stdc++6 (>= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1), libx32gcc1-dbg (>= 1:4.8.2-19ubuntu1), libc6-x32 (>= 2.17), libx32gcc1 Conflicts: libx32stdc++6-4.6-dbg, libx32stdc++6-4.7-dbg, libx32stdc++6-dbg Filename: pool/main/g/gcc-4.8/libx32stdc++6-4.8-dbg_4.8.2-19ubuntu1_amd64.deb Size: 3553294 MD5sum: 03d7f8339d02fb86c0eb9ab5a0793cf1 SHA1: 1a88ea4ca49bb30cf555c5c5e98ef4d0f2306170 SHA256: 38f05c8f51e5b4c1744e1ed034b68614486429fbbda5e99136eca89fc405e8a6 Description: GNU Standard C++ Library v3 (debugging files) Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32tinfo-dev Priority: optional Section: libdevel Installed-Size: 299 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libx32tinfo5 (= 5.9+20140118-1ubuntu1), libc6-dev-x32, libtinfo5 Filename: pool/main/n/ncurses/libx32tinfo-dev_5.9+20140118-1ubuntu1_amd64.deb Size: 73972 MD5sum: 23fceebd4b24fb7be9f82cc6f43bf5be SHA1: 7efd5f64e3376facc85591e9a5e2e7efc72bf3c3 SHA256: 7e42184a947e0bda341492c8ff16bc9153c80b45c832d2cd610382bbda9aef46 Description: developer's library for the low-level terminfo library (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: 07504aca713c2109065ae32313771856 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32tinfo5 Priority: optional Section: libs Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libc6-x32 (>= 2.16), libtinfo5 Filename: pool/main/n/ncurses/libx32tinfo5_5.9+20140118-1ubuntu1_amd64.deb Size: 70638 MD5sum: 303f8e5b48162b9c84d8456277e3990c SHA1: 40e987e04c1c762c8296e0bf7b5156228eb3e742 SHA256: 3323b66db2384e9f1eda59f7fb6c963e9632683ee5a2d4ae86f6ad446e2ca1a2 Description: shared low-level terminfo library for terminal handling (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: aaad1594952fc8f070fce7c9f0e240c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32z1 Priority: optional Section: libs Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: amd64 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Depends: libc6-x32 (>= 2.16) Filename: pool/main/z/zlib/libx32z1_1.2.8.dfsg-1ubuntu1_amd64.deb Size: 57034 MD5sum: 2635bffc9a2c741f313a3755a41568de SHA1: e0fe94485fd41743c05a37c6f4b5d83847d3e14b SHA256: 7ed5d0436efbd867fbc25affbcc67de770a058c90d2d78c21f8606adb94c7dfd Description: compression library - x32 runtime Homepage: http://zlib.net/ Description-md5: 43b890ebbaaf716c8be463b3eb420ee1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32z1-dev Priority: optional Section: libdevel Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: amd64 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Provides: libx32z-dev Depends: libx32z1 (= 1:1.2.8.dfsg-1ubuntu1), zlib1g-dev (= 1:1.2.8.dfsg-1ubuntu1), libc6-dev-x32 Filename: pool/main/z/zlib/libx32z1-dev_1.2.8.dfsg-1ubuntu1_amd64.deb Size: 59832 MD5sum: 74894710ace4dc5d25b8b139c2cf8587 SHA1: 98e52c69aa2c14d4b9cb46678fcd59d07c59f0be SHA256: 3f5e2f705281d8061c8a11166944fc7dd4875069ff0445930ae1a0a3e81b476b Description: compression library - x32 development Homepage: http://zlib.net/ Description-md5: 82315c3eb71ce061dcb8ee0ecbad5d8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx86-1 Priority: optional Section: libs Installed-Size: 257 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libx86 Version: 1.1+ds1-10 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/libx/libx86/libx86-1_1.1+ds1-10_amd64.deb Size: 82954 MD5sum: d166a4d98f6ce17e6f17787bfc8a6ef5 SHA1: af9f70a1806bf25cb40d02e10ff98ee3b25eb2ed SHA256: 79f18410d3647d8ec2ce8dcfc1714f708618159dcd9520b21f0dd43123943432 Description: x86 real-mode library Multi-Arch: same Homepage: http://www.codon.org.uk/~mjg59/libx86/ Description-md5: 1f1d01fce5eb3b4aedab0103a3f4bcdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libx86-dbg Priority: extra Section: libs Installed-Size: 222 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libx86 Version: 1.1+ds1-10 Depends: libx86-1 (= 1.1+ds1-10) Filename: pool/main/libx/libx86/libx86-dbg_1.1+ds1-10_amd64.deb Size: 166956 MD5sum: 966c90494d7f515a5e3b955ef540851f SHA1: fc2f9b7083278adf3be1eba3905e3d5b5c11e220 SHA256: cb618876d80aa22ce10c1fcef8bde3665e9182542b78007fae3e34d8e6f0c3d0 Description: x86 real-mode library - debugging symbols Multi-Arch: same Homepage: http://www.codon.org.uk/~mjg59/libx86/ Description-md5: 1e41a84650f6fcdcec72f2ffa11236db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx86-dev Priority: optional Section: libdevel Installed-Size: 556 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Source: libx86 Version: 1.1+ds1-10 Depends: libx86-1 (= 1.1+ds1-10) Filename: pool/main/libx/libx86/libx86-dev_1.1+ds1-10_amd64.deb Size: 93642 MD5sum: fd71a027daa4a740b6c4aae4a732dc2e SHA1: 82294d4781008d9e324b9a2a100bb5333c88e965 SHA256: 0492751c2efbf69fb1a1ea424aa04459d981552bcc922a8c30aa7509f8d091d3 Description: x86 real-mode library - development files Homepage: http://www.codon.org.uk/~mjg59/libx86/ Description-md5: 5a03e1cc60bcf7a789f71348ff2b423f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxalan2-java Priority: optional Section: libs Installed-Size: 3456 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.7.1-9 Depends: libjaxp1.3-java, libxerces2-java (>= 2.8.0) Suggests: libxalan2-java-doc, libbsf-java, libxsltc-java Filename: pool/main/libx/libxalan2-java/libxalan2-java_2.7.1-9_all.deb Size: 3166282 MD5sum: 2a297e71c37131444018c3f8da7ddacf SHA1: 56043a6a68b7a4c85c3ef0597f0b76bfded3923f SHA256: 0e69e37cf704c1b684b2a159443c50d8ba381c3d7c7e29723b2f114147ae6bf3 Description: XSL Transformations (XSLT) processor in Java Homepage: http://xalan.apache.org/xalan-j/ Description-md5: 3986b31a891090feaaaccd6e47cab52a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libxalan2-java-doc Priority: optional Section: doc Installed-Size: 48642 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libxalan2-java Version: 2.7.1-9 Filename: pool/main/libx/libxalan2-java/libxalan2-java-doc_2.7.1-9_all.deb Size: 2540370 MD5sum: 36cc77f65889eb222f7017ee107c65cb SHA1: be240f75116980b6299cf97d25593be0383cb006 SHA256: 24253555cd43d40411fb2baf0b8e735c7bcc882d14411b21c2ad321511aafc0a Description: Documentation and examples for the Xalan-Java XSLT processor Homepage: http://xalan.apache.org/xalan-j/ Description-md5: 366dcca312dfffbb40422250be7acdaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxapian-dev Priority: optional Section: libdevel Installed-Size: 6530 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: amd64 Source: xapian-core Version: 1.2.16-2ubuntu1 Depends: libxapian22 (= 1.2.16-2ubuntu1), libc6-dev | libc-dev Suggests: xapian-doc (= 1.2.16-2ubuntu1), xapian-examples (= 1.2.16-2ubuntu1) Filename: pool/main/x/xapian-core/libxapian-dev_1.2.16-2ubuntu1_amd64.deb Size: 767106 MD5sum: abb924021c8bfb9db86703eb32b4b178 SHA1: b10a8ddb727f07c63e8b2249e58446b9515f9fba SHA256: 60eb75a5978846b04744d444fda360a081bc9473ca2b8f2859bed866e6c2c487 Description: Development files for Xapian search engine library Homepage: http://xapian.org/ Description-md5: be6758fb868bceeed72f590afe9bb6b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxapian22 Priority: optional Section: libs Installed-Size: 2402 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: amd64 Source: xapian-core Version: 1.2.16-2ubuntu1 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4) Suggests: xapian-tools Filename: pool/main/x/xapian-core/libxapian22_1.2.16-2ubuntu1_amd64.deb Size: 586122 MD5sum: 007975f2f30ba8df724e1112ee99d24f SHA1: 980efef26d8c846a8378c92e3a6f21316bc130e8 SHA256: 7432a84de8f03be71a5c8d6e38100aad76e073acbe61348dea32e0237afb4394 Description: Search engine library Homepage: http://xapian.org/ Description-md5: fe05dace1ac9262883532dcc501c8507 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxapian22-dbg Priority: extra Section: debug Installed-Size: 26168 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: amd64 Source: xapian-core Version: 1.2.16-2ubuntu1 Depends: libxapian22 (= 1.2.16-2ubuntu1) Suggests: libc6-dbg, libgcc1-dbg, zlib1g-dbg, libstdc++6-4.6-dbg Filename: pool/main/x/xapian-core/libxapian22-dbg_1.2.16-2ubuntu1_amd64.deb Size: 4994946 MD5sum: 24e4c6dc33cdc9e71ec8853b0606dcb8 SHA1: b61312b34c242b22f6dfa73d946f8dc618abc362 SHA256: 2ff6cc1d2780e8b488d40fde5dbc449a36e65229dd53894d0a56ec6e2a3e26ae Description: Debugging symbols for the Xapian Search engine library Homepage: http://xapian.org/ Description-md5: f48a1ddae06cd33aee00b8547bf878c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker-dev Priority: optional Section: libdevel Installed-Size: 105 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libxatracker2 (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libxatracker-dev_10.1.0-4ubuntu5_amd64.deb Size: 7656 MD5sum: af40cfcc7306ff15689077cde8dc681e SHA1: 914518eb79f90f195cf3fc9b779a0330c6fb8def SHA256: 4140db6ffa457dc6321df5d4b3f67b53c577d6a1eb4b1988630ca695474e93d3 Description: X acceleration library -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: acb2dd21dbe796c5f50a1f153cef93e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker-dev Filename: pool/main/x/xorg-lts-transitional/libxatracker-dev-lts-quantal_5_amd64.deb Size: 1550 MD5sum: 01033e396a3c6b429fad7e800801eb50 SHA1: be3ef8f2d1ce87a21fd4ca603c9a069aed85cb0b SHA256: 5b12cb67b44a5349dbed4119027d09cb89cbb6fe03f1bc622c1f25bdf2a7560a Description: Transitional package for libxatracker-dev Multi-Arch: same Description-md5: ed2599ab017b0917434cd8765ae1b5cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker-dev Filename: pool/main/x/xorg-lts-transitional/libxatracker-dev-lts-raring_5_amd64.deb Size: 1550 MD5sum: 66d258ee5a4d207093392a217affbf54 SHA1: 25fff3f2929c96b3694f84902dab3a7af4b7c04c SHA256: 0caec3a552e5e6f5e1ad212365d2e1176245464c19970cca445218b4aee948cb Description: Transitional package for libxatracker-dev Multi-Arch: same Description-md5: ed2599ab017b0917434cd8765ae1b5cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker-dev Filename: pool/main/x/xorg-lts-transitional/libxatracker-dev-lts-saucy_5_amd64.deb Size: 1552 MD5sum: d23fd84d7f9cf1977e2fc2bc577ebb18 SHA1: e76860b3da87022f18053962eeb848827b23b0d6 SHA256: 913f2b677ef220eec1d6c79a3effdf14fba9064a01c59d2fae2cb71cf3e00219 Description: Transitional package for libxatracker-dev Multi-Arch: same Description-md5: ed2599ab017b0917434cd8765ae1b5cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2 Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-quantal_5_amd64.deb Size: 1546 MD5sum: 9730fa0f80dbd23fe1ddf8b5790887cf SHA1: b72cd3f190dd5418b334834c43af7f6bc12b084c SHA256: ce7066c7f81ed8480e4a41a63aa0e06f738026e6dd6ff6bddcfdcf073c00ada1 Description: Transitional package for libxatracker2 Multi-Arch: same Description-md5: d791b1c60917d0805f9e5b9e9c90a314 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2-dbg Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-quantal-dbg_5_amd64.deb Size: 1550 MD5sum: 51842434870168535348affea2e3111a SHA1: 860ba32e10874eabb6d1dfeafd507604df3dcb2d SHA256: 1a9cc74436e8e6f8dcd6d90da985dc423f1ad85a3d431f9fbd9085d85c403f70 Description: Transitional package for libxatracker2-dbg Multi-Arch: same Description-md5: 6c7a2c8806e776e2838c31ce519ee8e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2 Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-raring_5_amd64.deb Size: 1542 MD5sum: ffd36b057591aadc8328f07fd450d7bb SHA1: b67c8cf6addd2a0c23d29724abf38b4720678e27 SHA256: e0d33180eeba3b9b54a21849b072484ac5af03eb2af66e8610714ff060eac3b7 Description: Transitional package for libxatracker2 Multi-Arch: same Description-md5: d791b1c60917d0805f9e5b9e9c90a314 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2-dbg Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-raring-dbg_5_amd64.deb Size: 1552 MD5sum: 2e494046b1ccd2034bb2f836d1875590 SHA1: 6988a1c57a8f231df753def8141987b6660f723a SHA256: b0efd78ac0b14b39faf068f602234ef5a540b07195bdd31032716df925da87ac Description: Transitional package for libxatracker2-dbg Multi-Arch: same Description-md5: 6c7a2c8806e776e2838c31ce519ee8e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2 Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-saucy_5_amd64.deb Size: 1542 MD5sum: 3adc5757c2d739aa1ff2aa3f69b8f3de SHA1: 59204456670af85cd2e74970b611966beccb94f1 SHA256: 921222f323fe462cfa86afab953e96d383deca7ace6f495457d2da4f182428f8 Description: Transitional package for libxatracker2 Multi-Arch: same Description-md5: d791b1c60917d0805f9e5b9e9c90a314 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2-dbg Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-saucy-dbg_5_amd64.deb Size: 1552 MD5sum: 35a898f8423ea2ef6db7a53d36fcfb7e SHA1: 6afc41b9ed80a40ab40ea4866f8bad80809e1782 SHA256: fbd9dafb5f3b6091b4909284faede82340d681ecdbaa1354ac22a0ebbd0ec795 Description: Transitional package for libxatracker2-dbg Multi-Arch: same Description-md5: 6c7a2c8806e776e2838c31ce519ee8e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker2 Priority: optional Section: libs Installed-Size: 504 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libc6 (>= 2.14), libgl1-mesa-dri Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libxatracker2_10.1.0-4ubuntu5_amd64.deb Size: 155958 MD5sum: 04cc58a762d2e5a9434d86c75cdf3ed9 SHA1: 2d7123489e08de06d6ad2f6c82fc1fb5b1332e04 SHA256: a5f3610d2c35233ae131ac1fc943a92969bf0f17d6f4f6815622068cd69597e5 Description: X acceleration library -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 016e30e30b0b6c5bb9448c735436c520 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxatracker2-dbg Priority: extra Section: debug Installed-Size: 2773 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libxatracker2 (= 10.1.0-4ubuntu5) Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libxatracker2-dbg_10.1.0-4ubuntu5_amd64.deb Size: 575998 MD5sum: afadef4421d380a8f5e8a2fb8aac6a12 SHA1: 9fbeb8d5535652a31932df3a291687ce3089a595 SHA256: 8f371c6d126274bafb29f94821422399498944754084bec879d8075eefb1e369 Description: X acceleration library -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: fe0902eeca3a0d7aa29c9e1bb6de29c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxau-dev Priority: optional Section: libdevel Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxau Version: 1:1.0.8-1 Depends: libxau6 (= 1:1.0.8-1), x11proto-core-dev Filename: pool/main/libx/libxau/libxau-dev_1.0.8-1_amd64.deb Size: 11088 MD5sum: d1e87c390e163ce7bb6364148d7d8a26 SHA1: b6e58f13f10dd96aab7f4e0d42dca8d49d81072f SHA256: 40fffc39c010257cb0dd0ad461d3c643bcf4eea5d4cdc26621cd52e9b20a917b Description: X11 authorisation library (development headers) Multi-Arch: same Description-md5: 04276f062fd9ff5b762f3c05def85957 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxau6 Priority: standard Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxau Version: 1:1.0.8-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libx/libxau/libxau6_1.0.8-1_amd64.deb Size: 8376 MD5sum: af209429d197827db35c09cd232037c1 SHA1: 07f54fc6d707f7744411275cce141899c7b53e8e SHA256: 881544ee71d85e89ebf224e45acc94930f6a309da2fb33dbf850bd1434e70597 Description: X11 authorisation library Multi-Arch: same Description-md5: 5d4196d3a9c1e5b2896d2005497ee01a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxau6-dbg Priority: extra Section: libdevel Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxau Version: 1:1.0.8-1 Depends: libxau6 (= 1:1.0.8-1) Filename: pool/main/libx/libxau/libxau6-dbg_1.0.8-1_amd64.deb Size: 13294 MD5sum: ffe7954907a2c198534ee575bc95fc5b SHA1: 74a175752351ba9e20542848449e4ef89ea49d5a SHA256: cdb84f8d00e210de9089cc864965dab4bc5067fe42791e7d8acf824aea48060f Description: X11 authorisation library (debug package) Multi-Arch: same Description-md5: 275206dd5253001a6f95eafe6ef40cbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxaw-doc Priority: optional Section: doc Installed-Size: 1327 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libxaw Version: 2:1.0.12-1 Replaces: libxaw7-dev (<< 2:1.0.10) Breaks: libxaw7-dev (<< 2:1.0.10) Filename: pool/main/libx/libxaw/libxaw-doc_1.0.12-1_all.deb Size: 194106 MD5sum: fd7eb6e036a3e085b346c5091d2c03fe SHA1: 009d82391d72508f1011f47b843a698532be513d SHA256: fa11efe6c9eb491822519c844429059353a42962f46729d79070067fecaed236 Description: X11 Athena Widget library (documentation) Multi-Arch: foreign Description-md5: 1e257105c9d4344bb869f2dda8a6550e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxaw7 Priority: optional Section: libs Installed-Size: 494 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxaw Version: 2:1.0.12-1 Depends: libc6 (>= 2.15), libx11-6, libxext6, libxmu6, libxpm4, libxt6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxaw/libxaw7_1.0.12-1_amd64.deb Size: 168422 MD5sum: 2e435fc5f1fadecc225bd8de259d4d16 SHA1: cd46d30499cfb855aed96778f6b439439af67f43 SHA256: f519a014004a48942b8444f6143a2b1b0cdb88b4f4e081460b4c098b7dfa1dd6 Description: X11 Athena Widget library Multi-Arch: same Description-md5: 8c7fe237917a85b52d396794ed51e5f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxaw7-dbg Priority: extra Section: libdevel Installed-Size: 1632 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxaw Version: 2:1.0.12-1 Depends: libxaw7 (= 2:1.0.12-1) Filename: pool/main/libx/libxaw/libxaw7-dbg_1.0.12-1_amd64.deb Size: 385224 MD5sum: bd04a780b874d260594cb23f29526f57 SHA1: f5426e76781a8fa7575fbf4cb8bd0f1aea36cea6 SHA256: 39091f1a34f9e548ad3ae1ec172b1830ff17c2df58c817d25d356e17de054f0c Description: X11 Athena Widget library (debug package) Multi-Arch: same Description-md5: 61bd325ef785214f5a20031ff38f4af5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxaw7-dev Priority: optional Section: libdevel Installed-Size: 1068 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxaw Version: 2:1.0.12-1 Depends: libxaw7 (= 2:1.0.12-1), libx11-dev, libxmu-dev, libxpm-dev, x11proto-core-dev Suggests: libxaw-doc Filename: pool/main/libx/libxaw/libxaw7-dev_1.0.12-1_amd64.deb Size: 224612 MD5sum: 22e10428bd6b0f4a88c37d06f26811cf SHA1: 47ab63b301b590d692e78fd66762b4974ec97e9b SHA256: 42965579ca0f689a96eb4f0b61a5e78a75b197b9156da1eae8bd497cbe65b5ef Description: X11 Athena Widget library (development headers) Multi-Arch: same Description-md5: da51500940506b127a5474310e6aeb10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-composite0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-composite0_1.10-2ubuntu1_amd64.deb Size: 5036 MD5sum: 8a69c86e53873c929a90fd19b178f24e SHA1: 91c01f882d8df4abf38bf43c96e9120c8dfd45bc SHA256: 6531f5b3383b4300ae90dcda61bdbae314be6fe61e8d03535d8b138b50881ebf Description: X C Binding, composite extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: ca6c0d9f4192a4dde52dc2f30e6369fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxcb-composite0-dbg Priority: extra Section: libdevel Installed-Size: 60 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-composite0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-composite0-dbg_1.10-2ubuntu1_amd64.deb Size: 8818 MD5sum: fb5210c900e7587c137c31cd9891d286 SHA1: ab0c0b950293a83e8de9c7182b37f9f6d46be1b3 SHA256: 779e0e0e26723bb5ea5d13a176d7a4e6cd76df73cb790e31ba9f2917258f538a Description: X C Binding, composite extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: b359eaaff5811752227860a01a0eff11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-composite0-dev Priority: optional Section: libdevel Installed-Size: 83 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-composite0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-xfixes0-dev Filename: pool/main/libx/libxcb/libxcb-composite0-dev_1.10-2ubuntu1_amd64.deb Size: 5800 MD5sum: 19371d0bbb8ddaa363e435e38147304f SHA1: 27b8d78a3f6c3643234b34b46c8c1b6eb07ea272 SHA256: c321ba07ae8fe8123da5dc4fc93eb7afdb6a154b62b9c0f6d811d278e678c601 Description: X C Binding, composite extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 00cb00ef9dc567135da248f123b87ed8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-damage0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-damage0_1.10-2ubuntu1_amd64.deb Size: 4748 MD5sum: 5f1ec58adfd94a13c843154949ebac18 SHA1: 69d4f67c57f4b79f66a60528867a9ff93531dd09 SHA256: 1183c3043cea40e1a15aca0a59cb4a569958c4e6a29c8ddb1adbb5c03356fe2c Description: X C Binding, damage extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: f28e63129125663e1b4c5ea313ae297c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active Package: libxcb-damage0-dbg Priority: extra Section: libdevel Installed-Size: 58 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-damage0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-damage0-dbg_1.10-2ubuntu1_amd64.deb Size: 7692 MD5sum: 363b04977db9d9f40e2047ebefdc5ff4 SHA1: 9274a6619403f5ec4b150c32b950de55e7df2956 SHA256: 946d292c7bb2c7d28470981a59cb391391ba7ca60b0acb184a1804108be95dc4 Description: X C Binding, damage extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 705ae1cbc549f61356c7018105aa2aa3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-damage0-dev Priority: optional Section: libdevel Installed-Size: 73 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-damage0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-xfixes0-dev Filename: pool/main/libx/libxcb/libxcb-damage0-dev_1.10-2ubuntu1_amd64.deb Size: 5656 MD5sum: 7aaf19fe175436fd312148bdf6956b0a SHA1: 25369210ce05ae648699600ca039ef6c6785b783 SHA256: ffcf13c9c3219acb05f326716bdfc9376310cf8e04572435fe56a02ee3f3187e Description: X C Binding, damage extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 5f289d21c087ffdfbbb63eb2f6d88403 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-doc Priority: optional Section: doc Installed-Size: 36431 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: all Source: libxcb Version: 1.10-2ubuntu1 Filename: pool/main/libx/libxcb/libxcb-doc_1.10-2ubuntu1_all.deb Size: 4618140 MD5sum: baf2b5b4ab740cb3584ff07ce58e4914 SHA1: 459882a9ecb42406b2305cbfb386a0dd71e506b0 SHA256: 1b56fa370a7540f9fb549520fad3c9deff87a76816f571f5ef387e43a864bd38 Description: X C Binding, development documentation Multi-Arch: foreign Homepage: http://xcb.freedesktop.org Description-md5: b97e9d64bda009574d40e0d8fa415c72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dpms0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-dpms0_1.10-2ubuntu1_amd64.deb Size: 4950 MD5sum: cb13090079a1c17aa0d84b11ddce095e SHA1: dc482555b338cf48c72015c1ed435a70aa30f079 SHA256: 3a3dd7279d427abc4b81316735be4824bd04dbb1807a081bdec211ff859003b3 Description: X C Binding, dpms extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 4fde6e6df699f9548c8b8e6d5aa613f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dpms0-dbg Priority: extra Section: libdevel Installed-Size: 58 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dpms0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-dpms0-dbg_1.10-2ubuntu1_amd64.deb Size: 7888 MD5sum: c8ea4574eb8f4d3a9500883effd4a35f SHA1: 7fabc9e218555ec0972e057834d1b370bb6ae193 SHA256: 3457398db5c037613b8a165aea6e8de150abfff728529ff6620379a2d21d43ae Description: X C Binding, dpms extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: a092e8c293c685f76014821df4efe0cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dpms0-dev Priority: optional Section: libdevel Installed-Size: 79 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dpms0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-dpms0-dev_1.10-2ubuntu1_amd64.deb Size: 5640 MD5sum: 368bedacac8cb7aa23b4f64f37a47795 SHA1: 06c4737b0f57824c56001dd2704fa04b81c4f326 SHA256: 0b5ad9eca7803790976a05a74481939136eb94a28ed0b7bbb4625e86763b1007 Description: X C Binding, dpms extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 35fb1c0c538b8e0d45ff1eac3ff582b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dri2-0 Priority: optional Section: libs Installed-Size: 61 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-dri2-0_1.10-2ubuntu1_amd64.deb Size: 6710 MD5sum: 90169585d4c43e4a4da49ce3f2568384 SHA1: 0cd3599fe956bb844cfde7a9def748707759be60 SHA256: 8e0f6147d1b403c0c356779b601a9a8cb5548958b984c968b316d75482f94b4e Description: X C Binding, dri2 extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 7b21058ae591306ca66f2da8f8c45aab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-dri2-0-dbg Priority: extra Section: debug Installed-Size: 66 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dri2-0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-dri2-0-dbg_1.10-2ubuntu1_amd64.deb Size: 13710 MD5sum: 636b3efc9b12f4c69d78d607abec5c32 SHA1: 3bab30d228bb50deb6b8750edcb95c5de606836a SHA256: 4a7c90fa130b163dcee0f1e487dd863274067e44d61a30329479d6a249aee7dc Description: X C Binding, dri2 extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 2a7c3d4f8fdd6b9967d633b8bf31bd1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dri2-0-dev Priority: optional Section: libdevel Installed-Size: 129 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dri2-0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-dri2-0-dev_1.10-2ubuntu1_amd64.deb Size: 9030 MD5sum: ff39f5d5fb225948281f5f1b9c009217 SHA1: 01d04bd40a91711b8a4a1908d52de03687fac122 SHA256: 5d96cb6242d39103fd1d77f756f8eeab4a7e80ad6568bf716e664c03d61d6fad Description: X C Binding, dri2 extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: aa14a85bcea2f923ff44e959546b453b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-dri3-0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 (>= 1.9.2) Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-dri3-0_1.10-2ubuntu1_amd64.deb Size: 5118 MD5sum: 310d42718a6d50f1be400e1fa774d86a SHA1: dc1b89f7d9ea8d9fd263cf7dc3ac33abdf1edc5a SHA256: b90fafb2efa3ba8ed66e4cc7e05c197e00c21e53168fd962b2a63c6694aa4040 Description: X C Binding, dri3 extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 4b1f92c077a799ce104181ba731ec6fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-dri3-0-dbg Priority: extra Section: debug Installed-Size: 59 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dri3-0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-dri3-0-dbg_1.10-2ubuntu1_amd64.deb Size: 8750 MD5sum: 3d0bca44fd53f192b6becec682ecdc62 SHA1: 5e844c792bf902593292f1210719dac397ac9bab SHA256: 265eaafffedb54431886fa15a9319571b40f173e03a2e5cbb69762912a5d662f Description: X C Binding, dri3 extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 9be6b78a5fb4187b0f71fd8089781852 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dri3-dev Priority: optional Section: libdevel Installed-Size: 82 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dri3-0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-dri3-dev_1.10-2ubuntu1_amd64.deb Size: 5998 MD5sum: 8837865be3de1d8ae51bd9c4c43b25c4 SHA1: cd326ac081cc11015b6ccdcdc50a75e8e3660b08 SHA256: 04f68d6b5aced1d8d12cb0f2326105074266e340f0a02dfcb2e86303ad2193bf Description: X C Binding, dri3 extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 33ae3689c9b1906b35ea79665207c886 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-ewmh-dev Priority: extra Section: libdevel Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util-wm Version: 0.4.1-1ubuntu1 Replaces: libxcb-ewmh1-dev Depends: libxcb-ewmh2 (= 0.4.1-1ubuntu1), libxcb1-dev Conflicts: libxcb-ewmh1-dev Filename: pool/main/x/xcb-util-wm/libxcb-ewmh-dev_0.4.1-1ubuntu1_amd64.deb Size: 20428 MD5sum: 742810656b595f69a925addc55fb6145 SHA1: 15c6783f7d8ff163b055802c922d634b96d6f960 SHA256: 2c021f2b108dc253021521dcce2df3a70c9ea8d291d9d9e60bb95464d0a9dc94 Description: utility libraries for X C Binding -- ewmh, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 8fdca50e86377a52b3ab8c1d3339445a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-ewmh2 Priority: extra Section: libs Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util-wm Version: 0.4.1-1ubuntu1 Depends: libc6 (>= 2.14), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util-wm/libxcb-ewmh2_0.4.1-1ubuntu1_amd64.deb Size: 16554 MD5sum: eb117c44772eba64454fa3be57c44bb3 SHA1: 0b858b211dc935a470fb0973b0d12cf26aed0984 SHA256: fccd662de4a9975e654c70e121ee17e42bd2e1f89e3d9d0ff6dd5626fe00d3ab Description: utility libraries for X C Binding -- ewmh Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 4341a0d1216922b8d548887a23bc1862 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-glx0 Priority: optional Section: libs Installed-Size: 151 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-glx0_1.10-2ubuntu1_amd64.deb Size: 19976 MD5sum: 632239048a95f7c2edd3225de98ed801 SHA1: 4a238601bb7e71b42e195c8cbeff869217999c2a SHA256: ad8655fe99e06626f1ac8f37a09cb70db5b667f41d69f9109e321b80403c11bc Description: X C Binding, glx extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 3169b2c3295bfe9c0729ea9f922b2d4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-glx0-dbg Priority: extra Section: libdevel Installed-Size: 139 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-glx0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-glx0-dbg_1.10-2ubuntu1_amd64.deb Size: 58794 MD5sum: de10eff99a98582122e19efd4bf1a63c SHA1: ad708591a3a3e7417e5411242ca2c6214fdb5a72 SHA256: 5ba8fdf919d9161a6a3bb8192ac8adff11f2f5c81a5d997c67d8e41cdf68c639 Description: X C Binding, glx extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 88e14ab54c8833ae93ed358036e6ce2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-glx0-dev Priority: optional Section: libdevel Installed-Size: 607 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-glx0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-glx0-dev_1.10-2ubuntu1_amd64.deb Size: 31242 MD5sum: 5de7a3620ce181ef767179af44056af8 SHA1: d62e9d050a015e0ac49090a2b7c45a3a58263a0d SHA256: 8ae056b517e7476500791930e6e7b07cfe77811d192efaa5f6be35ba2c8d0e0e Description: X C Binding, glx extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 8975e77fba16c6ff127815b1b670a06e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-icccm4 Priority: extra Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util-wm Version: 0.4.1-1ubuntu1 Depends: libc6 (>= 2.14), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util-wm/libxcb-icccm4_0.4.1-1ubuntu1_amd64.deb Size: 10368 MD5sum: 564a2dd901e72d7c49a4deb74f987ec2 SHA1: a1313d3d5277d9bf7e9121343ae5dfb533c05887 SHA256: 73c212bc402208808cc0adab40e3c25a05b6a1b16128cf1c876c4431f2e877c1 Description: utility libraries for X C Binding -- icccm Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 250dc4e8740787d8010e1a0d78c55114 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libxcb-icccm4-dev Priority: extra Section: libdevel Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util-wm Version: 0.4.1-1ubuntu1 Replaces: libxcb-icccm1-dev Depends: libxcb-icccm4 (= 0.4.1-1ubuntu1), libxcb1-dev Conflicts: libxcb-icccm1-dev Filename: pool/main/x/xcb-util-wm/libxcb-icccm4-dev_0.4.1-1ubuntu1_amd64.deb Size: 10356 MD5sum: 02b0ddc3b599c4f6878828de5b967530 SHA1: e01baf669df454745f5678bfb0484dbc6f451b9c SHA256: 15a569889ab2a045f17a868008fada73c6620686207f97137ff9e917548e3bab Description: utility libraries for X C Binding -- icccm, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: b700b76accd3450e24a40baa71cc5ab2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-image0 Priority: extra Section: libdevel Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util-image Version: 0.3.9-1ubuntu2 Depends: libc6 (>= 2.14), libxcb-shm0, libxcb-util0 (>= 0.3.8), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util-image/libxcb-image0_0.3.9-1ubuntu2_amd64.deb Size: 11538 MD5sum: 6d448b4594c6e198b93c5840cbf8a0b0 SHA1: b4c720cae9b1e7f3444d086695f03bc3892a5271 SHA256: ae2c7c2a1e854fdb7d176807ed639ec2737af560635e4de8d0974a6260c411b8 Description: utility libraries for X C Binding -- image Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: a044f5d11519e42d4dc9c647e530afeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libxcb-image0-dev Priority: extra Section: libdevel Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util-image Version: 0.3.9-1ubuntu2 Depends: libxcb-image0 (= 0.3.9-1ubuntu2), libxcb1-dev, libxcb-shm0-dev Filename: pool/main/x/xcb-util-image/libxcb-image0-dev_0.3.9-1ubuntu2_amd64.deb Size: 14950 MD5sum: e4a45be46dc5b976bef0796794372d88 SHA1: 6ee7969c00a74973dbe6b6ff399191858cbacbb5 SHA256: 9c43412b5e78b347e12f9475089b50d81b588f3a6c284e6e5999f1cf32b75872 Description: utility libraries for X C Binding -- image, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 49a87b55df5c3171489d616e6f49848c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-keysyms1 Priority: extra Section: libs Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util-keysyms Version: 0.3.9-1ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util-keysyms/libxcb-keysyms1_0.3.9-1ubuntu1_amd64.deb Size: 8008 MD5sum: 83136c36ff9b6f76e61d711f847fb4b0 SHA1: 4877ac6ebb205aaffb81ae9013fd772552fd293d SHA256: fb5e624fce07be771b03fcab0d097c67a03ffd22141b091f978605cb61a0aab5 Description: utility libraries for X C Binding -- keysyms Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: b13c6d7cacf99604cfb3199b3b3098d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-gnome-desktop Package: libxcb-keysyms1-dev Priority: extra Section: libdevel Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util-keysyms Version: 0.3.9-1ubuntu1 Depends: libxcb-keysyms1 (= 0.3.9-1ubuntu1), libxcb1-dev Filename: pool/main/x/xcb-util-keysyms/libxcb-keysyms1-dev_0.3.9-1ubuntu1_amd64.deb Size: 5946 MD5sum: fab607a98e1bac7ebe5ab80225b977bd SHA1: 3cf2cff220182648b153a11820ef2aeb2fe5656d SHA256: c551ff16b51737494a89705f0f1a7f7fa7547a2ae2e355540f3bbee931a68d64 Description: utility libraries for X C Binding -- keysyms, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 20b52420f85db118fb3a95ad039b16b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-present-dev Priority: optional Section: libdevel Installed-Size: 87 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-present0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-randr0-dev, libxcb-xfixes0-dev, libxcb-sync-dev Filename: pool/main/libx/libxcb/libxcb-present-dev_1.10-2ubuntu1_amd64.deb Size: 6988 MD5sum: 4bfc6dadd898a19c801010404013855b SHA1: 7b655ef74467b4b47e82c4a23f62bdd601de31a0 SHA256: 0879326b9b5da526abae4b5bef50a25dcd33b58e45e7af8315766ee0d750c149 Description: X C Binding, present extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 55dfd51e536b0ce79a88fefa0b7a9b6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-present0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.4), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-present0_1.10-2ubuntu1_amd64.deb Size: 5254 MD5sum: e17e52f8953a544d1f0a56a156e6c7f5 SHA1: 2fa450eafc55303cdcbac723b218e2015fd189b0 SHA256: 039e88f424a359ba5caa9af0999e46fa322b916533246a2ad0a924123ebe001c Description: X C Binding, present extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 334193719fba9c74610c458784b19b1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-present0-dbg Priority: extra Section: debug Installed-Size: 60 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-present0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-present0-dbg_1.10-2ubuntu1_amd64.deb Size: 9308 MD5sum: 2cae61970ba48e8475a4257823f07b10 SHA1: 1808f2421ba2ffb74869cb2dc4ba46593bc1b4e9 SHA256: 0febf8a272d135a07b5af7043cb6418adf8d162e6be30e99b6158d2d1ddb81c3 Description: X C Binding, present extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 9d139767ebb845c184e3eb0090c80c19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-randr0 Priority: optional Section: libs Installed-Size: 103 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-randr0_1.10-2ubuntu1_amd64.deb Size: 13884 MD5sum: 499af97af79f22d7815f3e34b68637c6 SHA1: 7977b370ccd914fb642907fab040d3dcdc638f32 SHA256: 249637b789fbeab3c8704f6e1d8cd4f48258f443d12e5fcdc3c420c443aa2b9d Description: X C Binding, randr extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: adb389382ef0d8f0e2a3de70afef6284 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxcb-randr0-dbg Priority: extra Section: libdevel Installed-Size: 101 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-randr0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-randr0-dbg_1.10-2ubuntu1_amd64.deb Size: 36038 MD5sum: ea10231a904aff1821ba2c0fe5277707 SHA1: ab9bbcb9b6e239b38dcc2b6218335805e4f1face SHA256: 924f99204d4a58b6d28f1028e4633987423ff08f1006ea03c39599efac0d9e67 Description: X C Binding, randr extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: cc73bcf99f8b39c789a7fdb6110dba3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-randr0-dev Priority: optional Section: libdevel Installed-Size: 334 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-randr0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-render0-dev Filename: pool/main/libx/libxcb/libxcb-randr0-dev_1.10-2ubuntu1_amd64.deb Size: 20682 MD5sum: 822bd94cea9061b114f4c26557715201 SHA1: c9f1341db6da4358aba429312212ef5c7355e778 SHA256: 9a685c6f84f42e3caa48a1983f0c7de50fae72dc3a1d19da03400c7eba62e7e8 Description: X C Binding, randr extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 735c3a5ffbdf9ace5c373fa9bf38ed5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-record0 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-record0_1.10-2ubuntu1_amd64.deb Size: 6392 MD5sum: 288bda9d41101e390bc3e66b71aedb27 SHA1: 106dace0f7bfcdaaf49376800b5933b5cf4b292d SHA256: 8eda10f07a34e92d430d6928a02e6fe44d7686acefc191e12b257adb3b549677 Description: X C Binding, record extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: e5ccbdc38847f1aebd02f7d94bbbc0e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: libxcb-record0-dbg Priority: extra Section: libdevel Installed-Size: 64 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-record0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-record0-dbg_1.10-2ubuntu1_amd64.deb Size: 11992 MD5sum: 83eec8bc77aae8b9be9ea8420efc96e4 SHA1: 59749ab91db307c6b6059669d3427511812056b3 SHA256: b6e9ba760f1dcd79c60fc49355f51c3f12b62408caf2f2e984ce11ed9d8d96f4 Description: X C Binding, record extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 771b9085fed968a2de06a8a11926b1d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-record0-dev Priority: optional Section: libdevel Installed-Size: 108 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-record0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-record0-dev_1.10-2ubuntu1_amd64.deb Size: 7900 MD5sum: d198d59d81b47dfd073a62d930d74259 SHA1: 4d30d453ff881204c0d59bf40c240ce03d29fbe6 SHA256: 08c5e04ba4a812721252ba73dd498165f2d4544a8814d4112fb2c0bc7f4f0f13 Description: X C Binding, record extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: d338f3303260833eb2daa5c12752e042 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-render-util0 Priority: extra Section: libs Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util-renderutil Version: 0.3.8-1.1ubuntu1 Depends: libc6 (>= 2.14), libxcb-render0, libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util-renderutil/libxcb-render-util0_0.3.8-1.1ubuntu1_amd64.deb Size: 8702 MD5sum: 1efd32582f25c52343163026f5691124 SHA1: 0184cb68436044b0c1d4daa4e9415e1fcf628c85 SHA256: ae90b86c977cb3c55d2054228853258b330f7b87d7692c85a97e39b9b9e4277c Description: utility libraries for X C Binding -- render-util Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 63d61510faea6f0a8654420ce1402aca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libxcb-render-util0-dev Priority: extra Section: libdevel Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util-renderutil Version: 0.3.8-1.1ubuntu1 Depends: libxcb-render-util0 (= 0.3.8-1.1ubuntu1), libxcb1-dev, libxcb-render0-dev Filename: pool/main/x/xcb-util-renderutil/libxcb-render-util0-dev_0.3.8-1.1ubuntu1_amd64.deb Size: 6890 MD5sum: 5a7fc9c33171887d824c38f3a4e4b23c SHA1: e905e8afb9e12268e486bd3b488bfb105f2917ad SHA256: 63c338cb439bff953fc2dbebc715d72607153c1a1b7830d9e68dfb0df6c70dd5 Description: utility libraries for X C Binding -- render-util Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: cf83cc2bb685dc757edc5b23360106c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-render0 Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 (>= 1.8) Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-render0_1.10-2ubuntu1_amd64.deb Size: 10986 MD5sum: 2eb60160a869b17e631ef22b5ee4dfbd SHA1: 2c7ad620c563459e1122b3d1ff7772bd14e03919 SHA256: 0ceb1ad53bbcff7d3734320c894bdda0226b32805712bef2dc595adf252d3a6d Description: X C Binding, render extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: c5db612729adbe8a95b5f304a1c0e60b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-render0-dbg Priority: extra Section: libdevel Installed-Size: 86 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-render0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-render0-dbg_1.10-2ubuntu1_amd64.deb Size: 28106 MD5sum: ac842a568e942e8f64d069c73e4be912 SHA1: 172c1fd13eb35ab59d6133e008b4c39b60b0faf1 SHA256: 85db60d11aa3e6d24bf1a5b73f0b62fe868689c6556022dbd621d76ace5ce869 Description: X C Binding, render extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 36ebeac45e89811d06e7f24d44f6be59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-render0-dev Priority: optional Section: libdevel Installed-Size: 242 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-render0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-render0-dev_1.10-2ubuntu1_amd64.deb Size: 16666 MD5sum: 3b00cd282b45e9cbcb369b65ce1b98c4 SHA1: f1c744cea7068552bb8c399ce95394ac8e198d66 SHA256: 8a82abeedc2ad708705c1f20380ede586dc70dc2c00de3fd5485ea059999aee4 Description: X C Binding, render extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 350c71a11fce197bfdd81f2173c8c47b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-res0 Priority: optional Section: libs Installed-Size: 57 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-res0_1.10-2ubuntu1_amd64.deb Size: 6276 MD5sum: 84e4f51b48d1b1057b389b3d0d20c61e SHA1: 09c758937981645fdf192b29fc17b1314d44ead8 SHA256: 777db6d279abbed91b5e50c1a31fab811f97dfc30057012ec0e7246f6e9f9ee3 Description: X C Binding, res extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: c2c5e369cff7cefe91babaa7de5630ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-res0-dbg Priority: extra Section: libdevel Installed-Size: 63 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-res0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-res0-dbg_1.10-2ubuntu1_amd64.deb Size: 10998 MD5sum: bb3969fcc0619ef4e8c9415ed66eb186 SHA1: f8ec804e24c49a3e441899a0f81ab4ace78b73b3 SHA256: 3b3f6d673633ba5dd019b44b147f08b0ff2ce4aaca0748cdf71705f357d7729e Description: X C Binding, res extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 0eed2d7633f52fda6c2e75ca7242f6cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-res0-dev Priority: optional Section: libdevel Installed-Size: 107 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-res0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-res0-dev_1.10-2ubuntu1_amd64.deb Size: 7760 MD5sum: 850c5c1d14c56d863f42f11b253798a2 SHA1: 416c388b1867c94e7af8bbcbd5aa665b780f4979 SHA256: 9aa12461518ee6b99c7b1a192c937eee8f4b85481337d0854328ef068620c713 Description: X C Binding, res extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: b8990ae7ad0bbd27401ec98cc1c75776 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-screensaver0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-screensaver0_1.10-2ubuntu1_amd64.deb Size: 5028 MD5sum: 31ccd7ce9b440be49b665cbca7e65ca6 SHA1: 5b5b2d84420815ee9ebdd95030ce8c93cd7ad0f2 SHA256: a537c45bb24876065b4a2d06c8b1a414370cc2bc11ea884bba82c862ca9e9f35 Description: X C Binding, screensaver extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: d620ae3f5335aff882ca4074641853c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-screensaver0-dbg Priority: extra Section: libdevel Installed-Size: 59 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-screensaver0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-screensaver0-dbg_1.10-2ubuntu1_amd64.deb Size: 8552 MD5sum: df6a76e88b0a958f4498cfc9ea3b0e1e SHA1: 8cede4083ee9327ee49f41140c5b1edd2cb1f86d SHA256: 0f294c9f3d99ba4606d31cc8a4f57b644f89d58aa4f7f11c190d2ec7f2bb1134 Description: X C Binding, screensaver extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 921ca4039529ea1d97b45ce8f6cc4df7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-screensaver0-dev Priority: optional Section: libdevel Installed-Size: 78 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-screensaver0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-screensaver0-dev_1.10-2ubuntu1_amd64.deb Size: 5950 MD5sum: 34a5e87221a3bf4c2df9ff59be6c824a SHA1: 5e79344074811da36e4c0ec63c1bb7403943356a SHA256: f009fb1f77c5c7087767e101c02b79d9c0aec03a1cdb7a267860e84b30c385a3 Description: X C Binding, screensaver extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 83a3b0eb371cf2409490ba29edcb3eaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-shape0 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-shape0_1.10-2ubuntu1_amd64.deb Size: 5654 MD5sum: 01d218f4542e124c1f831efe6b10b7bf SHA1: f745ce20ca28f27445aeecdb29d87ea3190de126 SHA256: d235c76a104f8f436dd05a11fc72c8db94d663a1574730a60b91f83df7780310 Description: X C Binding, shape extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 4f8fcf227f71242b2923bb3614ad97a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-shape0-dbg Priority: extra Section: libdevel Installed-Size: 62 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-shape0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-shape0-dbg_1.10-2ubuntu1_amd64.deb Size: 10880 MD5sum: 9b0f70941af67465a924de8302dc9b84 SHA1: c043655981a693a9338f58e27685484265921f1a SHA256: 9bc6dfc6b01d0c6c0cd20b03801fdb52570b147a6993ab69c9df4123c69cd59d Description: X C Binding, shape extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 2bbaba9c3928285e392ca9a954dc56d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-shape0-dev Priority: optional Section: libdevel Installed-Size: 96 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-shape0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-shape0-dev_1.10-2ubuntu1_amd64.deb Size: 7226 MD5sum: c23ef4c666410b08d0ac9c496d90691a SHA1: cba572cc365402f77b969c99b328522fcef6701a SHA256: 5522433c2bd0523e681e4516662f3c151d360fec973b1f74ac04ae05b86f85ed Description: X C Binding, shape extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: b59fd5bacbd9b3280320ec83bb3f452c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-shm0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 (>= 1.9.2) Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-shm0_1.10-2ubuntu1_amd64.deb Size: 5432 MD5sum: f415f91037dbac86c79c1c5b6391ebc0 SHA1: 8fb5ef5e6391810a93b4638511fcb5e47ade4588 SHA256: 32e21c8d3e6b6dc01fce0eb18c1b67d04ec4e21e05f0ca2bb9e5d77a835f4219 Description: X C Binding, shm extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: efe15210cc4fe778d9092348500e1a77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-shm0-dbg Priority: extra Section: libdevel Installed-Size: 61 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-shm0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-shm0-dbg_1.10-2ubuntu1_amd64.deb Size: 10368 MD5sum: 33c02d9ff29aac284fcd9885e721fafa SHA1: eb9d23b359219b88659f1d74fae7c118a07074a5 SHA256: 2123a16d2ad81632d3b0f76c505178702b26d3da45ad512f82f8f639638757fa Description: X C Binding, shm extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: f71bc8576f45cd770b02ab53a847a6a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-shm0-dev Priority: optional Section: libdevel Installed-Size: 89 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-shm0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-shm0-dev_1.10-2ubuntu1_amd64.deb Size: 6868 MD5sum: 3df009fce31a929090b123bb95121ea2 SHA1: 23632c1c04ed07776cda19ae67346d11a4aa1384 SHA256: 8b7b2d8cf43a9022e72fc68540af59ddf4b72a269d72dfbe16140ead1f2cef73 Description: X C Binding, shm extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 6f179a331f00f73798b8c2cabed1a88f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-sync-dev Priority: optional Section: libdevel Installed-Size: 146 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Replaces: libxcb-sync0-dev Provides: libxcb-sync0-dev Depends: libxcb-sync1 (= 1.10-2ubuntu1), libxcb1-dev Conflicts: libxcb-sync0-dev Filename: pool/main/libx/libxcb/libxcb-sync-dev_1.10-2ubuntu1_amd64.deb Size: 10648 MD5sum: cf74211d6aa2b90aae0a49a7ae85dbab SHA1: 7a994df63557baf0813637bd361289616c30c64a SHA256: f84da15dde320649608131b13f7af42407193d478e4f1e6b5dadfcc5a1c617df Description: X C Binding, sync extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 1e0ff61d663c39e76f3de4c84c3f7899 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-sync1 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.14), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-sync1_1.10-2ubuntu1_amd64.deb Size: 8090 MD5sum: 6cdc1b75cfb4797da9d19add8646a70e SHA1: ace150266de4c2ca65082ce2d841eedb85816f6c SHA256: ae691e2a12dd909db6f39ae520c849e697de6e86ded75f2d9da879f1df4c6be7 Description: X C Binding, sync extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: d5360e0f01127bfda17c79337e504a3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-sync1-dbg Priority: extra Section: debug Installed-Size: 72 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-sync1 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-sync1-dbg_1.10-2ubuntu1_amd64.deb Size: 17844 MD5sum: b085ca548fbfc6f042262e73ba28e094 SHA1: 2174187c0210bc51359ff666d83d642d5af4b595 SHA256: f0d1032a0c85977fc28560d6ab1f0bcc5ffbd2637f6809a434ad158d92db741a Description: X C Binding, sync extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: fc218a63827502a91fa643f91882ade2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-util0 Priority: extra Section: libs Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util Version: 0.3.8-2ubuntu1 Depends: libc6 (>= 2.8), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util/libxcb-util0_0.3.8-2ubuntu1_amd64.deb Size: 11512 MD5sum: e65438abb9b706e42d571a07a01dfae4 SHA1: a0781e611882f2507c98c7341c6178d6b3bca8ab SHA256: 8587929e720859206926c259cda3832a1d693d6d84ce138c0f9b14038558fb8c Description: utility libraries for X C Binding -- atom, aux and event Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: c4e9b5a7227fc66a9d8bef500363e8a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-util0-dev Priority: extra Section: libdevel Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xcb-util Version: 0.3.8-2ubuntu1 Replaces: libxcb-atom1-dev, libxcb-aux0-dev, libxcb-event1-dev, libxcb-property1-dev, libxcb-reply1-dev Depends: libxcb-util0 (= 0.3.8-2ubuntu1), libxcb1-dev Conflicts: libxcb-atom1-dev, libxcb-aux0-dev, libxcb-event1-dev, libxcb-property1-dev, libxcb-reply1-dev Filename: pool/main/x/xcb-util/libxcb-util0-dev_0.3.8-2ubuntu1_amd64.deb Size: 12200 MD5sum: 992256054148c2ad9a02bdead60a8403 SHA1: a1445abef397cbe98f3fdc2dce0473149bf37b1d SHA256: 5e869f1c985ef6a4413d63fc0ea86e063f05a3600820197fe556edd1342f5638 Description: utility libraries for X C Binding -- atom, aux and event Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: a308699121fcd55e41ed04caba796f61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xevie0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.4), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xevie0_1.10-2ubuntu1_amd64.deb Size: 4956 MD5sum: 88d312ce15c49efc23f50f28cf252aa8 SHA1: 899390aa29436f8e92e921ba91a5988092442b39 SHA256: 540fc83756135665c2c57db5152f3aea8f5a2ca1ff68aed40407287419ee35ba Description: X C Binding, xevie extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 469dcd0e1fb7dbda702236d0b097391c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xevie0-dbg Priority: extra Section: libdevel Installed-Size: 58 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xevie0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xevie0-dbg_1.10-2ubuntu1_amd64.deb Size: 8170 MD5sum: f39dc49e190a0a1aff700b5fa39240a8 SHA1: e9b28171c7148c478351123a44b23793c6c31169 SHA256: 17b6f353ebd7161ca39c49e21ca5b47538c39fe914d71abd74649a9d846722ad Description: X C Binding, xevie extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 47d3dad21e9d2a7f4af4d6a52c5954fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xevie0-dev Priority: optional Section: libdevel Installed-Size: 77 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xevie0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xevie0-dev_1.10-2ubuntu1_amd64.deb Size: 5858 MD5sum: c872524b7bfc2fa92e0a753a622ced7a SHA1: 3c8e958850d889f6d16cee5166e21eba7208eac9 SHA256: 7bcd5cd59713354e84d833ede6870da2ca35a0b5911879cb34b9a14f74416b61 Description: X C Binding, xevie extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 3275fd3f69f389bdaca0d960d049bc81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xf86dri0 Priority: optional Section: libs Installed-Size: 57 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xf86dri0_1.10-2ubuntu1_amd64.deb Size: 6380 MD5sum: 59fbdc1a1bb8af306aa8a264945ab24d SHA1: 2189a82ee7d6003e8fdbdc92b9e89a56dedd1179 SHA256: e9355262fb4a16efe38b35ad402c652647241e06164265f4834a805988f90808 Description: X C Binding, xf86dri extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: f6b61b1dd5cbcdd3b35b95162a6d84e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: libxcb-xf86dri0-dbg Priority: extra Section: libdevel Installed-Size: 65 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xf86dri0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xf86dri0-dbg_1.10-2ubuntu1_amd64.deb Size: 12000 MD5sum: a6114ae6c1ce978645ec832dcaa19f68 SHA1: d2dafe7f88575b2f50677058ab3c0c446fdb776e SHA256: 8d2e6ba4529820c463f72693ae7c35bea10687f2c4adf2f14a8a86acc810629c Description: X C Binding, xf86dri extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 00fc41c278b355ffea2a57869210ff97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xf86dri0-dev Priority: optional Section: libdevel Installed-Size: 116 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xf86dri0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xf86dri0-dev_1.10-2ubuntu1_amd64.deb Size: 7980 MD5sum: 885fb61b53b14adf67215777ebf66f58 SHA1: b3c7f46f156f54f8f54eb06d217e61c19874129f SHA256: c6cedcdd1922a119f4c79039676e25fbbe3ecbb45f04c1b79c6d9b1d918c0e9b Description: X C Binding, xf86dri extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 2d530540e9eef50abce24dce665eaee7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xfixes0 Priority: optional Section: libs Installed-Size: 71 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xfixes0_1.10-2ubuntu1_amd64.deb Size: 8486 MD5sum: 3fe5bebc231098fbc5ebfd847590f90f SHA1: 30d4973f9ffce6b9e254d9b5bc626f0c7183ee28 SHA256: bcc3319a8520babcc268cc862d668d908eb72ce0c79db7f7eea7d94037648e19 Description: X C Binding, xfixes extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 94f24b982ab532c251f90293506a8fed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-xfixes0-dbg Priority: extra Section: libdevel Installed-Size: 76 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xfixes0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xfixes0-dbg_1.10-2ubuntu1_amd64.deb Size: 20000 MD5sum: 882f85018c73b0a1885386577ade4ac0 SHA1: b55613c674c2f52b0b1e19f24753db0db4fe24aa SHA256: 6285f067dc5068aefe5bc9d0054ef9682738386f54a9cbb74943629961496b2c Description: X C Binding, xfixes extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 1c610e48b2246c8698142637e645e127 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xfixes0-dev Priority: optional Section: libdevel Installed-Size: 178 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xfixes0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-render0-dev, libxcb-shape0-dev Filename: pool/main/libx/libxcb/libxcb-xfixes0-dev_1.10-2ubuntu1_amd64.deb Size: 11994 MD5sum: cc16e0df8f1188853bfe66aed797c146 SHA1: 56bee66fd4046d46415629844bed3383774ccd2d SHA256: 22ec281ae94f5da5358ee68e411cd09bd4b556b3930da4dbf5a27295661a71e3 Description: X C Binding, xfixes extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 18efd390c63351b408b2ffb0163f2cf5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-xinerama0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xinerama0_1.10-2ubuntu1_amd64.deb Size: 5120 MD5sum: 2a7dbffdeb3291e682066b306714195d SHA1: 291a5a18320cfd7618fa0a84eebbf84fd1d7387d SHA256: cee9e555696e2cbd1f9860a370e5e45a393ec4eb2d96358e33ee2e8967e4a7fb Description: X C Binding, xinerama extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: f2a52133eab163b52a83f8199011810e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xinerama0-dbg Priority: extra Section: libdevel Installed-Size: 59 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xinerama0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xinerama0-dbg_1.10-2ubuntu1_amd64.deb Size: 8502 MD5sum: 96d62061588b7ca14e6eb32f1cbcaa45 SHA1: 55abfa2ed7e8a47ba223abc0cd12afa570670158 SHA256: 7d43837448dbbd1586ec25549213c15981aad59f37f331a56f31c42dfb4e1153 Description: X C Binding, xinerama extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 40b566f7166a53475bf725a0e667e31d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xinerama0-dev Priority: optional Section: libdevel Installed-Size: 84 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xinerama0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xinerama0-dev_1.10-2ubuntu1_amd64.deb Size: 6116 MD5sum: 8d85d840bead780931c89746ce7ea8a8 SHA1: 88ee4dc9f8e5d349556b040b78339439c0dd7e03 SHA256: de3ac041e7cd6a676997ac4c44552412084c4657fe6f3bf401256f4382812bd3 Description: X C Binding, xinerama extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: a48583621fb78aeb3c0f4cc202892fd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xkb-dev Priority: optional Section: libdevel Installed-Size: 604 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xkb1 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xkb-dev_1.10-2ubuntu1_amd64.deb Size: 44678 MD5sum: 0382bc59a6d98f8e68d33ea7e6fc2975 SHA1: d3ecca3b61c16a0ea5fa5c125485cf89d2beeb71 SHA256: 14012e474fcf6c6e9b0993ab818345709a5b3143339d91bdced1ed7dbe4e0139 Description: X C Binding, XKEYBOARD extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: db3d11c316407d51ed8e7ccbc9b0e2ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xkb1 Priority: optional Section: libs Installed-Size: 164 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.14), libxcb1 (>= 1.8) Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xkb1_1.10-2ubuntu1_amd64.deb Size: 28444 MD5sum: 6ec34656bfb387a4516a2e4cbfdd5206 SHA1: a83744294198857c25f4f50028aa13ebcac34c61 SHA256: e5362926720dac2dec7f35e66a656af7201e4652969da85938ccefb57298d2c1 Description: X C Binding, XKEYBOARD extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 265aa28a89cf5ce7330ef13f8d25ed2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libxcb-xkb1-dbg Priority: extra Section: debug Installed-Size: 152 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xkb1 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xkb1-dbg_1.10-2ubuntu1_amd64.deb Size: 76976 MD5sum: e7d4ca5e3f0e2ec9248078e947ae2416 SHA1: a159770b6e3db020ff179ddfd8345f82c9582ec7 SHA256: e2be94e422c06104141045f409cff230900a66b02f35100c20f67a688f643056 Description: X C Binding, XKEYBOARD extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 6cb6385c88eb1dd73260c56e58bc44a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xprint0 Priority: optional Section: libs Installed-Size: 71 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.14), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xprint0_1.10-2ubuntu1_amd64.deb Size: 9788 MD5sum: cc2ead94dbd376a024c32706c56ff6b2 SHA1: 9bd524860b1f07056f6ae8c3cd79b5e15aff9b28 SHA256: 0182b042ba926179883fa5fd65db177a07f682ccac1cb98245b9eb6e4e308eaa Description: X C Binding, xprint extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 3d3667ae9be36e5e1ff00f8d7eedfc8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xprint0-dbg Priority: extra Section: libdevel Installed-Size: 78 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xprint0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xprint0-dbg_1.10-2ubuntu1_amd64.deb Size: 21636 MD5sum: 68ef2654d74be9f1115d5d046dda88bc SHA1: 89e9c9a19e4a3db00ec552d744eee545ee43177a SHA256: 6e33fecce3c721e6d0748fb8c54e91da62541463f264fb6afddfc4ec03c6cdfe Description: X C Binding, xprint extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 5b3e86d4365fc6a0fcb170c2273bd805 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xprint0-dev Priority: optional Section: libdevel Installed-Size: 179 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xprint0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xprint0-dev_1.10-2ubuntu1_amd64.deb Size: 13064 MD5sum: 486f02f04f1a782c2d16637b76689241 SHA1: 86b1db47cf26c878b4d93707e8cf9043f4f0b27c SHA256: 08cb74428b1452a436da122053c562a457e43119d9b56fd93b598b6a72b30bba Description: X C Binding, xprint extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 78fb126b7a450751661627dc2abd8f05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xtest0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.4), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xtest0_1.10-2ubuntu1_amd64.deb Size: 4778 MD5sum: e942b20bcf06c0812546153c221a097a SHA1: cf4408fa0b3a0806fc1939c95a6d13581c945dbd SHA256: 7f3a6dc6b3bb8e249a132a7d5d339e481afd3e97913e60fcb6aa8689395f6c2b Description: X C Binding, xtest extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 12d78ef68913f742e8054ee9ba8eceac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active Package: libxcb-xtest0-dbg Priority: extra Section: libdevel Installed-Size: 58 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xtest0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xtest0-dbg_1.10-2ubuntu1_amd64.deb Size: 7784 MD5sum: 84be375ff35067773ba20772211881a4 SHA1: 1f5b89bd4737754a888e474b8b78d47833c157ca SHA256: f1fc03cd3b6d8e719c1957c1a39ef96788e38effe538c053a9f8298302558160 Description: X C Binding, xtest extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 06ee13aa6daacecf5f215330abfe610c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xtest0-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xtest0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xtest0-dev_1.10-2ubuntu1_amd64.deb Size: 5332 MD5sum: 93e7668ed3114a203609931e59c45ffe SHA1: 591a0031f030b42af6203f09fa66c0f85dc2b553 SHA256: 3b2b25fc2f5e5d35e6005550d9d4c0603129ee6e2318e1f4d80357e3e1c09026 Description: X C Binding, xtest extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: fb44118f335dc050b5f88616743eda8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xv0 Priority: optional Section: libs Installed-Size: 70 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xv0_1.10-2ubuntu1_amd64.deb Size: 8772 MD5sum: 46869deeb323dc95f3ae03b582815f0f SHA1: 31e07fc1819cf525e85b4dcdca52adcebb93fdaf SHA256: 2cb6cd76614f3a4e9c9b4ca532ef8582d6c18f060a2c7b636d4b1d3a81d38a2e Description: X C Binding, xv extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: ed2134a19c1b37c3eec9621d2c3f1395 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-video, ubuntu-gnome-desktop Package: libxcb-xv0-dbg Priority: extra Section: libdevel Installed-Size: 76 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xv0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xv0-dbg_1.10-2ubuntu1_amd64.deb Size: 20790 MD5sum: 25506e0577dc59a3b64142942b32c130 SHA1: 03d7ce6d99ccccf58e473e21bd9586b80842b8f9 SHA256: ca61e44cc4242d676d424f84a2b6d44e309e391b228ebf8f169c35752ae4c4b1 Description: X C Binding, xv extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: c0933dcbfe80d301178a504629ad544f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xv0-dev Priority: optional Section: libdevel Installed-Size: 181 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xv0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-shm0-dev Filename: pool/main/libx/libxcb/libxcb-xv0-dev_1.10-2ubuntu1_amd64.deb Size: 12268 MD5sum: e06910734d8dd2c1eba69cc2ef3fe2a5 SHA1: 161098862e21095708242bb169b68c303945c631 SHA256: 68d35f4b86020ae0f6abc9e57c05585133bb803fe989447d2903ec56024fc766 Description: X C Binding, xv extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: c45791601a14485adf21a51b301cc152 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xvmc0 Priority: optional Section: libs Installed-Size: 57 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.2.5), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xvmc0_1.10-2ubuntu1_amd64.deb Size: 6170 MD5sum: 80248425175f7a56b1abc28c150c8498 SHA1: 167be6d5d23859b2a56ddd630199f112b8e46e26 SHA256: 200e7e57ac14d3ea5f9f74a8711e91a5a769050534bf051188738caba9a58351 Description: X C Binding, xvmc extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 722aaaca48e4d073cb75a56a36af7a4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xvmc0-dbg Priority: extra Section: libdevel Installed-Size: 64 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xvmc0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xvmc0-dbg_1.10-2ubuntu1_amd64.deb Size: 11578 MD5sum: f9c87c2e93691a135c474ab2761a88b7 SHA1: 3e6532c8d69dc21d6eb112bb1cc46126b993e877 SHA256: b9f88e664405f3dd63237ad61615bc97d00b736d04bb5678617ee6033f9da37b Description: X C Binding, xvmc extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 574e88e7599eb6bb278ae2615e40981b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xvmc0-dev Priority: optional Section: libdevel Installed-Size: 108 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xvmc0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-xv0-dev Filename: pool/main/libx/libxcb/libxcb-xvmc0-dev_1.10-2ubuntu1_amd64.deb Size: 7748 MD5sum: 1c8e2dadff2ea5971ceace93ef5b8e1f SHA1: 17f15b71f4fba4b9731419df75cbc0559ddbec23 SHA256: 2dd514ec563e4358143b4ae069b804a63d4bbeb82f31947a2572056129e85a32 Description: X C Binding, xvmc extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: e12e77e95ad1c28e751ed3b79abe2c81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb1 Priority: standard Section: libs Installed-Size: 181 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.14), libxau6, libxdmcp6 Pre-Depends: multiarch-support Breaks: alsa-utils (<< 1.0.24.2-5), libxcb-xlib0 Filename: pool/main/libx/libxcb/libxcb1_1.10-2ubuntu1_amd64.deb Size: 37992 MD5sum: cd164f8d5fdadd02c9ab0573382968a4 SHA1: 474884cb0d866d86aa7cfdbff9597dbfe5380e55 SHA256: 0cfedaf1edf8a3dc92d2b522f891ddbe3c417ef911ab9c84aaf1ac3b951ab176 Description: X C Binding Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 93568dcb3007e5182147ac40c36650aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxcb1-dbg Priority: extra Section: libdevel Installed-Size: 202 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb1 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb1-dbg_1.10-2ubuntu1_amd64.deb Size: 121076 MD5sum: 52edb200c5280d046f077bf844cbec6b SHA1: 4dcd1537d349b6a3609fe1893afb788f5dd581dd SHA256: 1f550942db7b04d9afc942cdce85e0670061a855d415755b1350b07835868067 Description: X C Binding, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 2867bc02a870fc2e2c3454cb501b813a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb1-dev Priority: optional Section: libdevel Installed-Size: 805 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: amd64 Source: libxcb Version: 1.10-2ubuntu1 Replaces: libxcb0-dev Depends: libxcb1 (= 1.10-2ubuntu1), libpthread-stubs0-dev, libxau-dev (>= 1:1.0.0-1), libxdmcp-dev (>= 1:1.0.0-1) Suggests: libxcb-doc Conflicts: libxcb0-dev Filename: pool/main/libx/libxcb/libxcb1-dev_1.10-2ubuntu1_amd64.deb Size: 76562 MD5sum: efcd62154c33251bbf03cb376ee4011a SHA1: 37fe9037ce2817790bb416a3f3f73d57d54a112e SHA256: 0d7fb48c48565d2a5cdf54e964f6eacbcad50659f862acbf048d4810ddafb024 Description: X C Binding, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: d028a849d89f18ec7440c6d77483cbe1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxcomposite-dev Priority: optional Section: libdevel Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxcomposite Version: 1:0.4.4-1 Depends: libxcomposite1 (= 1:0.4.4-1), libx11-dev, libxfixes-dev, x11proto-composite-dev (>= 1:0.4), x11proto-core-dev, libxext-dev Filename: pool/main/libx/libxcomposite/libxcomposite-dev_0.4.4-1_amd64.deb Size: 9954 MD5sum: aecb4967dfb9a95bc4d176d0e4c54a74 SHA1: 7cfd6ba6a408adfeb04cea88557b3d3f003d099e SHA256: d7c3dbeed36a210a910f5f7a07756916d5d85b9ffdd8471ccf91b1879e53620c Description: X11 Composite extension library (development headers) Description-md5: 6c12b730c4bb5b17bd24b60d9a59a12d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcomposite1 Priority: optional Section: libs Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxcomposite Version: 1:0.4.4-1 Depends: libc6 (>= 2.2.5), libx11-6 (>= 2:1.4.99.1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxcomposite/libxcomposite1_0.4.4-1_amd64.deb Size: 7714 MD5sum: 11bf1267b8b0a1a1962603343cf6c3a2 SHA1: 7e2e17607ac829385e75d7b0c146d5f0da41b81a SHA256: f20a74c658d90c9ddf323113ab1e30898f9f2125c98428db8c268139bd2579b8 Description: X11 Composite extension library Multi-Arch: same Description-md5: 49720e84dd5a26f4429db537758dcedc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcomposite1-dbg Priority: extra Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxcomposite Version: 1:0.4.4-1 Depends: libxcomposite1 (= 1:0.4.4-1) Filename: pool/main/libx/libxcomposite/libxcomposite1-dbg_0.4.4-1_amd64.deb Size: 22110 MD5sum: 4870a6c819ec1ec85f363cb9b106bf02 SHA1: d06f6567ffb0050688efc15c5f91e04deef2aaef SHA256: 5d94e130af5972e8bfb5277ac9db66a49b2bbe9ddc4a8a47650028fac2f741d9 Description: X11 Composite extension library (debug package) Multi-Arch: same Description-md5: 346deefe74d809a3e6b860b8fd8386b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcursor-dev Priority: optional Section: libdevel Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxcursor Version: 1:1.1.14-1 Depends: libxcursor1 (= 1:1.1.14-1), x11proto-core-dev, libx11-dev, libxrender-dev, libxfixes-dev Filename: pool/main/libx/libxcursor/libxcursor-dev_1.1.14-1_amd64.deb Size: 29818 MD5sum: 0a19f91449b359fdfce849e2e746ab8b SHA1: 95a58c7b36183b55c6f57b2844ff870421c0ee7a SHA256: 537b86f6bd834c963a2ccfdfb81eb91e48cfb9aaac5512979a7befd21e649265 Description: X cursor management library (development files) Multi-Arch: same Description-md5: 6d945f0733e812c326a50fb6989e8cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcursor1 Priority: optional Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxcursor Version: 1:1.1.14-1 Depends: libc6 (>= 2.14), libx11-6 (>= 2:1.4.99.1), libxfixes3, libxrender1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcursor/libxcursor1_1.1.14-1_amd64.deb Size: 22830 MD5sum: cb33ed524be131091bf66ae27cd8067d SHA1: 59bd95eb33830f83a692d640eb5fb1ba1635b6b3 SHA256: 0a4342625c9dd578c6e6d679222aed968568e16e1f53ab9d446021a1edd8968c Description: X cursor management library Multi-Arch: same Description-md5: 7c341e5f21e9bb3cee6338076e0f3458 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcursor1-dbg Priority: extra Section: libdevel Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxcursor Version: 1:1.1.14-1 Depends: libxcursor1 (= 1:1.1.14-1) Filename: pool/main/libx/libxcursor/libxcursor1-dbg_1.1.14-1_amd64.deb Size: 71736 MD5sum: be84115f39bb6ec28ab5dfb8afd1453d SHA1: 61777ffa38b8a8e8f6bf6d85928ce91695e55709 SHA256: f52d3fad252bdb4c929ad50041936266770cceed8ccc2a377f303db0e806bef6 Description: X cursor management library (unstripped) Multi-Arch: same Description-md5: 0a2e02d2365b4344848180495e4e79b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxdamage-dev Priority: optional Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxdamage Version: 1:1.1.4-1ubuntu1 Depends: libxdamage1 (= 1:1.1.4-1ubuntu1), libx11-dev, libxfixes-dev, x11proto-damage-dev (>= 1.1) Filename: pool/main/libx/libxdamage/libxdamage-dev_1.1.4-1ubuntu1_amd64.deb Size: 5450 MD5sum: 495212d708bc22ddf30517443fcfac53 SHA1: 755fc38825059134715642838077c13d5ad52738 SHA256: 8cfea73411b27c9c49853a646f10b1ae699ef00ae6eef021f907b672bf9b0ba7 Description: X11 damaged region extension library (development headers) Multi-Arch: same Description-md5: f6757e2a643233758976bf0152b926d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxdamage1 Priority: optional Section: libs Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxdamage Version: 1:1.1.4-1ubuntu1 Depends: libc6 (>= 2.2.5), libx11-6 (>= 2:1.4.99.1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxdamage/libxdamage1_1.1.4-1ubuntu1_amd64.deb Size: 7612 MD5sum: c1e6ea0fc620fc3ce50ebbfee62e3f0c SHA1: cf7cc62fee2f95fd4c1e731e439a5b35edc3a71c SHA256: f97f744cc3b8b972383578b728fc24511d06ac82c8eb42d9a276b223139d05de Description: X11 damaged region extension library Multi-Arch: same Description-md5: 98dd17ab9089c578805725bd9bce8f95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxdamage1-dbg Priority: extra Section: libdevel Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxdamage Version: 1:1.1.4-1ubuntu1 Depends: libxdamage1 (= 1:1.1.4-1ubuntu1) Filename: pool/main/libx/libxdamage/libxdamage1-dbg_1.1.4-1ubuntu1_amd64.deb Size: 21476 MD5sum: b1691b12b3392f2afe43b9d38e212537 SHA1: 937aa5e543ae71a03cbc63f0e59b45b528f52d5b SHA256: 44ddbbef9e3cb8fad1084027091f306d51dd059665acc6587697aa28ce14740f Description: X11 damaged region extension library (debug package) Multi-Arch: same Description-md5: c2941782652b4d70eedf42a7fd0206ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxdmcp-dev Priority: optional Section: libdevel Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxdmcp Version: 1:1.1.1-1 Depends: libxdmcp6 (= 1:1.1.1-1), x11proto-core-dev Filename: pool/main/libx/libxdmcp/libxdmcp-dev_1.1.1-1_amd64.deb Size: 26940 MD5sum: 719948817c1da0dad283f888139ffd7f SHA1: b5dfd53eb29ffe9d17424c9e042d923f91f81687 SHA256: bebe2a554df06abb3e98ae9a66d4dacea800561875eb336f4b5c7b806fb033b5 Description: X11 authorisation library (development headers) Multi-Arch: same Description-md5: 13e87615e8ea7f62524dd6a205d82e68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxdmcp6 Priority: standard Section: libs Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxdmcp Version: 1:1.1.1-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libx/libxdmcp/libxdmcp6_1.1.1-1_amd64.deb Size: 12840 MD5sum: 4bef0ab082dbc284db6305458dcec7be SHA1: e0ee0669e75c1a436883f92e88990c88eb8d57aa SHA256: a490df1d9157d5f86606bde52fe73963d2b764953a5741275e671614a7f03d38 Description: X11 Display Manager Control Protocol library Multi-Arch: same Description-md5: 79e282811de3a2440672d104fd07bead Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxdmcp6-dbg Priority: extra Section: libdevel Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxdmcp Version: 1:1.1.1-1 Depends: libxdmcp6 (= 1:1.1.1-1) Filename: pool/main/libx/libxdmcp/libxdmcp6-dbg_1.1.1-1_amd64.deb Size: 16950 MD5sum: 87c816e82c229851ed668a3f92fe79e6 SHA1: 8363ac5fd5fac06f55e68f92206ac92db3101ba6 SHA256: 3122a6f656a31eacb76cd7ff36e04b9e2f6c1b7ac64e0eb2015c973afd9d7a0c Description: X11 authorisation library (debug package) Multi-Arch: same Description-md5: cea8ee1de40a7ba778f5152a991680b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxdot4 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: amd64 Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.14) Conflicts: libgraphviz4 Filename: pool/main/g/graphviz/libxdot4_2.36.0-0ubuntu3_amd64.deb Size: 19296 MD5sum: 66407d580f008cc8d8e2aebfaa870cf5 SHA1: 0d2e232516e2c60a40a7637c94d6dfee30a2fd9a SHA256: 500c069247617dcc5694e0224843162df932eb28018a7e65cc487a398a6ce3ab Description: rich set of graph drawing tools - xdot library Homepage: http://www.graphviz.org/ Description-md5: 5bb95dff142ccbf7ab2946dc3a7a4dc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxen-4.4 Priority: optional Section: libs Installed-Size: 845 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xen Team Architecture: amd64 Source: xen Version: 4.4.0-0ubuntu5 Depends: libc6 (>= 2.15), liblzma5 (>= 5.1.1alpha+20120614), libuuid1 (>= 2.16), libxenstore3.0 (>= 4.2~), libyajl2 (>= 2.0.4), zlib1g (>= 1:1.1.4) Filename: pool/main/x/xen/libxen-4.4_4.4.0-0ubuntu5_amd64.deb Size: 272044 MD5sum: 4328d695bbc2c3ca34339e172840cd5a SHA1: ba22550d2d709ba7e4246ca855bfbef0e68c6134 SHA256: 0e000ba498bc458fcd2121da0b6725caaea80f77be2a1c43ef815782806eacfb Description: Public libs for Xen Description-md5: cd7ad869e7a3a001fd3c7b337111e06f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libxen-dev Priority: optional Section: libdevel Installed-Size: 2296 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xen Team Architecture: amd64 Source: xen Version: 4.4.0-0ubuntu5 Depends: libxen-4.4 (= 4.4.0-0ubuntu5), libxenstore3.0 (= 4.4.0-0ubuntu5) Filename: pool/main/x/xen/libxen-dev_4.4.0-0ubuntu5_amd64.deb Size: 450044 MD5sum: 070a7fa9c391ea7ad5e59bc120d94db7 SHA1: 9c68ef2d342905ebd095453007bab1464a259141 SHA256: c746927210cfa08fbedd21593538af37f892369965702e6457a5ce5b6dc5739c Description: Public headers and libs for Xen Description-md5: 16aef021d38a9f4fed58c122c9b3e1cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxen-ocaml Priority: optional Section: ocaml Installed-Size: 373 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xen Team Architecture: amd64 Source: xen Version: 4.4.0-0ubuntu5 Provides: libxen-ocaml-k1q31 Depends: libc6 (>= 2.14), libxen-4.4 (>= 4.4.0), ocaml-base-nox-4.01.0 Filename: pool/main/x/xen/libxen-ocaml_4.4.0-0ubuntu5_amd64.deb Size: 74674 MD5sum: 7dcd1d37bf3266f824bc0273877716fc SHA1: a55211734a3857a0c168eb175f7851c931be5871 SHA256: 9da4e0fa993042a97c5ac09bc4b913ed45189a4b0ca45c62e3ab386baed890a1 Description: OCaml libraries for controlling Xen Description-md5: c9c37edde6c8bfae0ec1ac70e828dbac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxen-ocaml-dev Priority: optional Section: ocaml Installed-Size: 596 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xen Team Architecture: amd64 Source: xen Version: 4.4.0-0ubuntu5 Provides: libxen-ocaml-dev-k1q31 Depends: libxen-ocaml (= 4.4.0-0ubuntu5), libxen-dev (= 4.4.0-0ubuntu5), ocaml-nox-4.01.0 Filename: pool/main/x/xen/libxen-ocaml-dev_4.4.0-0ubuntu5_amd64.deb Size: 93794 MD5sum: a39fbcd4566e99b828d6c5d1f663565c SHA1: 1dcaf54da4012368b73ddc047048112f96953e5c SHA256: 2c5705033593c561ac80eb694a7e4b915607ac1beb0a633e084c878c3b79b70e Description: OCaml libraries for controlling Xen (devel package) Description-md5: 9c87ca7440bf9a1fcef15be5c5ae0a2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxenstore3.0 Priority: optional Section: libs Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xen Team Architecture: amd64 Source: xen Version: 4.4.0-0ubuntu5 Depends: libc6 (>= 2.14) Filename: pool/main/x/xen/libxenstore3.0_4.4.0-0ubuntu5_amd64.deb Size: 18584 MD5sum: a456ad9288f47f1661b696555df735db SHA1: 4b6eea62b9a800f9bfa1c9aa12446d3792ad1f3d SHA256: e8f5a6bf0d7d404c339666d8060a279bdc725cf6508660d8181abe15f2f91608 Description: Xenstore communications library for Xen Description-md5: c2462dfd8088a311ca74072df39a0705 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libxerces2-java Priority: optional Section: libs Installed-Size: 1562 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.11.0-7 Depends: libxml-commons-resolver1.1-java, libxml-commons-external-java (>= 1.4.01-2) Suggests: libxerces2-java-doc, libxerces2-java-gcj Filename: pool/main/libx/libxerces2-java/libxerces2-java_2.11.0-7_all.deb Size: 1362252 MD5sum: fa8bcb033daef7c85f4636435ea2747b SHA1: b100cfdbea68c8cad980bbacfc6400471ee9c51a SHA256: 9205c4c93d26872f9f5fdc7a998340e633f6e87a553999759cf92b60388bd348 Description: Validating XML parser for Java with DOM level 3 support Homepage: http://xerces.apache.org/xerces2-j/ Description-md5: 70fc56311b7780cb8c2a99efdde064c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libxerces2-java-doc Priority: optional Section: doc Installed-Size: 22789 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libxerces2-java Version: 2.11.0-7 Suggests: libxerces2-java, doc-html-w3 Filename: pool/main/libx/libxerces2-java/libxerces2-java-doc_2.11.0-7_all.deb Size: 2257196 MD5sum: e9c3ca7d2bed68ce17b1d1fb07067300 SHA1: 1f8efd9d9a2d4bff4bea191d0383de7a751f9ae7 SHA256: 611e9b83bb376faad8c4eece6ef7f6b13844b03ff8e8480246d1a2353a163b8c Description: Validating XML parser for Java -- Documentation and examples Homepage: http://xerces.apache.org/xerces2-j/ Description-md5: d4775a592fb8e72827658cfc1b26bc40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxerces2-java-gcj Priority: optional Section: libs Installed-Size: 9140 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: amd64 Source: libxerces2-java Version: 2.11.0-7 Depends: libxerces2-java (>= 2.11.0-7), libgcj-common (>> 1:4.1.1-13), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.1-1~) Filename: pool/main/libx/libxerces2-java/libxerces2-java-gcj_2.11.0-7_amd64.deb Size: 2477434 MD5sum: 1224c9bc6b2c062f41a01514a76f4b4c SHA1: 58ab6a61a5b477f011be33709a34fa78e8ebf339 SHA256: 5112998199ae6ae0f9fa56ab6b1f7225002effe42a1635fae608645cfa58ac0b Description: Validating XML parser for Java with DOM level 3 support (native code) Homepage: http://xerces.apache.org/xerces2-j/ Description-md5: 14359243a78f44538002efc4d041c90a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxext-dev Priority: optional Section: libdevel Installed-Size: 283 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxext Version: 2:1.3.2-1 Depends: libxext6 (= 2:1.3.2-1), x11proto-core-dev, x11proto-xext-dev (>= 7.0.99.2), libx11-dev Suggests: libxext-doc Filename: pool/main/libx/libxext/libxext-dev_1.3.2-1_amd64.deb Size: 92266 MD5sum: 3dc690ce19399df1b3e46f5a091d2029 SHA1: cf2a14efa8209abab89bea9e7dfd24cad9c863e4 SHA256: 7aa2d0d2701371be53ee643397862e4c9102ca999e15e9bef2d22511af220aae Description: X11 miscellaneous extensions library (development headers) Multi-Arch: same Description-md5: 9d497aabe7a8734879a278b8413e69c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxext-doc Priority: optional Section: doc Installed-Size: 238 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libxext Version: 2:1.3.2-1 Replaces: libxext-dev (<< 2:1.3.1-2) Breaks: libxext-dev (<< 2:1.3.1-2) Filename: pool/main/libx/libxext/libxext-doc_1.3.2-1_all.deb Size: 73448 MD5sum: 52fd75b7954b186d0a17d4d27f0ebd64 SHA1: e9b718bcd3ecebb45f246b662030ba94f70e2f47 SHA256: b3df6f9363079dd5a81d902b9f9f6f1c545fbe886b089c03b69613b274dd31ab Description: X11 miscellaneous extensions library (documentation) Multi-Arch: foreign Description-md5: 0600a78601f1d6561cda356efeda64d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxext6 Priority: standard Section: libs Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxext Version: 2:1.3.2-1 Depends: libc6 (>= 2.14), libx11-6 (>= 2:1.4.99.1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxext/libxext6_1.3.2-1_amd64.deb Size: 33890 MD5sum: c176057619656bbe9a53db471b9dadc2 SHA1: ce414924bfafda5e6bd4dbf295467a95c86de400 SHA256: dbb408e9f3fafc406350cdfc04e1668033468d1b662201df48fe30188115bb8f Description: X11 miscellaneous extension library Multi-Arch: same Description-md5: 5c72cf7a13b0990666898813406a2a89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxext6-dbg Priority: extra Section: libdevel Installed-Size: 596 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxext Version: 2:1.3.2-1 Depends: libxext6 (= 2:1.3.2-1) Filename: pool/main/libx/libxext/libxext6-dbg_1.3.2-1_amd64.deb Size: 208846 MD5sum: 1d490082397a23d077c5d9a1037c88e3 SHA1: f175503a19db292247be1f06461bdae603b94548 SHA256: 779783c1f894d726f50a05da657d1e0fe076248cfd7989453c6711f77a715c08 Description: X11 miscellaneous extensions library (debug package) Multi-Arch: same Description-md5: a9d12f89d8fa4962191a46fc5214d873 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxfixes-dev Priority: optional Section: libdevel Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxfixes Version: 1:5.0.1-1ubuntu1 Depends: libxfixes3 (= 1:5.0.1-1ubuntu1), libx11-dev, x11proto-fixes-dev (>= 1:5.0-1) Filename: pool/main/libx/libxfixes/libxfixes-dev_5.0.1-1ubuntu1_amd64.deb Size: 13370 MD5sum: bb8e53728f1f0dfac815b839892a2ae7 SHA1: ed638e2a365d0beecf18738bb5f5a50a137fcfdd SHA256: c5bb9b2f715278e84a8e9d16035441b41c2b1cfe064ed9d4125c49360ec47208 Description: X11 miscellaneous 'fixes' extension library (development headers) Multi-Arch: same Description-md5: 534fb9330ebefdcdd616826883b3e8d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxfixes3 Priority: optional Section: libs Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxfixes Version: 1:5.0.1-1ubuntu1 Depends: libc6 (>= 2.14), libx11-6 (>= 2:1.4.99.1) Pre-Depends: multiarch-support Breaks: unity (<< 7.0.2), xserver-xorg-core (<< 2:1.14) Filename: pool/main/libx/libxfixes/libxfixes3_5.0.1-1ubuntu1_amd64.deb Size: 11746 MD5sum: 86e65f1a56a9cd7bd5aee447795b43dd SHA1: 0c28051f9191de3a305ad6643ac3dd07a9b53457 SHA256: ad22fb7c3d1fc7ffd31a4a32af397aa2b8571001cb5cec8f8a13f3fc9ce25111 Description: X11 miscellaneous 'fixes' extension library Multi-Arch: same Description-md5: 0fa5919ef08f61382fb2c6bf965194ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxfixes3-dbg Priority: extra Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxfixes Version: 1:5.0.1-1ubuntu1 Depends: libxfixes3 (= 1:5.0.1-1ubuntu1) Filename: pool/main/libx/libxfixes/libxfixes3-dbg_5.0.1-1ubuntu1_amd64.deb Size: 45610 MD5sum: 51dedcd3fa4ff9a36f7b7f1da4fadb46 SHA1: 30b03466f2208dab3b0170b3c155f8c551a8c1e0 SHA256: 2cbb3690edf7c7249c89c2c513337de59c4fc38715b8055ff29f8f1ca43877e1 Description: X11 miscellaneous 'fixes' extension library (debug package) Multi-Arch: same Description-md5: c012f9063b8e9d1a8dfa269f154dec48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxfont-dev Priority: optional Section: libdevel Installed-Size: 495 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxfont Version: 1:1.4.7-1 Depends: libxfont1 (= 1:1.4.7-1), libx11-dev, x11proto-core-dev, x11proto-fonts-dev, libfreetype6-dev, libfontenc-dev (>= 1:1.0.1-1) Filename: pool/main/libx/libxfont/libxfont-dev_1.4.7-1_amd64.deb Size: 126006 MD5sum: 39b3ec367a761d65100780d4b5d34b5c SHA1: 8b484d76cf3d249d6d6328c6412f33e09535d391 SHA256: 6032ef1ff1d4697196d4e5763f70fb7e64eba94b89cd2d2df127d3c97094a1ef Description: X11 font rasterisation library (development headers) Description-md5: db66cbe62abb9446c54b7226358abd1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxfont1 Priority: optional Section: libs Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxfont Version: 1:1.4.7-1 Depends: libbz2-1.0, libc6 (>= 2.14), libfontenc1, libfreetype6 (>= 2.2.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Conflicts: xprint (<< 2:1.6.0-1) Filename: pool/main/libx/libxfont/libxfont1_1.4.7-1_amd64.deb Size: 94698 MD5sum: 918ff4f3be13acb001275367916d7e22 SHA1: 422ae3f2447010481f35bf31e5df5141790e5ce8 SHA256: 913d0395e6f89b3a7bbed57bc0f8d3348ca8a1e85154182ac6bb798424db0228 Description: X11 font rasterisation library Multi-Arch: same Description-md5: ca038f18775c3087691897eb5fffb072 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxfont1-dbg Priority: extra Section: libdevel Installed-Size: 731 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxfont Version: 1:1.4.7-1 Depends: libxfont1 (= 1:1.4.7-1) Filename: pool/main/libx/libxfont/libxfont1-dbg_1.4.7-1_amd64.deb Size: 172168 MD5sum: 55e3511a76420da43bfada922c0a6d39 SHA1: 712b1002ab7d5a409b8237c49ea94c0491a9f110 SHA256: a059e0f8fda24ff7727540a4ed911ee3267f69e827c2a1dd78651707f64d9e4d Description: X11 font rasterisation library (debug package) Multi-Arch: same Description-md5: 34df9ccab12e020cc409b387bcf4d60a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxft-dev Priority: optional Section: libdevel Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xft Version: 2.3.1-2 Provides: libxft2-dev Depends: libxft2 (= 2.3.1-2), libc6-dev | libc-dev, libfontconfig1-dev, libfreetype6-dev, libx11-dev (>= 2:1.0.0), libxrender-dev, zlib1g-dev | libz-dev Filename: pool/main/x/xft/libxft-dev_2.3.1-2_amd64.deb Size: 45778 MD5sum: 9f8cb6a0f8a781e10b1cd7dadd590bef SHA1: d19bc5af1bc67f3bc06f175e695209b3ac8c45a9 SHA256: 4cad0602ba369a42e1ddc58d1fca2e9bea3a2394371619749df0b274c5710f80 Description: FreeType-based font drawing library for X (development files) Description-md5: 361e21531f0392d4741d24575db55848 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxft2 Priority: optional Section: libs Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xft Version: 2.3.1-2 Depends: libc6 (>= 2.14), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.5), libx11-6, libxrender1 Pre-Depends: multiarch-support Filename: pool/main/x/xft/libxft2_2.3.1-2_amd64.deb Size: 36236 MD5sum: 65ef204eb06e0fd869cafa3f8b6eb501 SHA1: bd6585b776f756bfa2db33a1b05525ae5e4426d4 SHA256: 6cde8943be95c2c6328a0729bd4300dcb10b7e006ff174b27e8bb45d0e6edcc2 Description: FreeType-based font drawing library for X Multi-Arch: same Description-md5: 9f19660eee6522753a05ff6cf228ec1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxft2-dbg Priority: extra Section: libdevel Installed-Size: 592 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xft Version: 2.3.1-2 Depends: libxft2 (= 2.3.1-2) Filename: pool/main/x/xft/libxft2-dbg_2.3.1-2_amd64.deb Size: 113818 MD5sum: 8796edf25b13c21953a438d3f5d8beaf SHA1: 9883f624e45e6cc9ef2c150dfe22ab411ce7452c SHA256: db429e79455a5a898523639567ac0e4e2bd816f817cc9befd3e9cb813f32494f Description: FreeType-based font drawing library for X (unstripped) Multi-Arch: same Description-md5: 5fb7546efa0cbe8fd5660a0978307b57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxi-dev Priority: optional Section: libdevel Installed-Size: 661 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxi Version: 2:1.7.1.901-1ubuntu1 Replaces: x11proto-input-dev (<< 1.9.99) Depends: libxi6 (= 2:1.7.1.901-1ubuntu1), libx11-dev, libxext-dev, libxfixes-dev, x11proto-input-dev (>= 2.1.99.6), xorg-sgml-doctools (>= 1:1.5) Filename: pool/main/libx/libxi/libxi-dev_1.7.1.901-1ubuntu1_amd64.deb Size: 205246 MD5sum: b4a0420e98ec44e67cb5d703d3bf9f06 SHA1: e4758b92f6dc8b2b571381704b4ddeba4267ba78 SHA256: b228ff43d8912b6735776686b6992e3861f9ceed3d3c8733f3a1552485aee9ee Description: X11 Input extension library (development headers) Description-md5: 39bbbc7e9f5655daca53080ffdf25bc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxi6 Priority: optional Section: libs Installed-Size: 107 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxi Version: 2:1.7.1.901-1ubuntu1 Depends: libc6 (>= 2.14), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Breaks: unity (<< 7.0.2), xserver-xorg-core (<< 2:1.14) Filename: pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1_amd64.deb Size: 31924 MD5sum: d1822acecbf94c57fd4a00b92acbd0e3 SHA1: 9256652d40e1dfbe60d56ca779cccd32ea9cebfc SHA256: fe2873826c76434919448fd2237f295c1d9aaf069940bd75dcbf3c89e59f689c Description: X11 Input extension library Multi-Arch: same Description-md5: ba006f0e6e88bcc1dded33a4ac1bacfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxi6-dbg Priority: extra Section: libdevel Installed-Size: 1460 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxi Version: 2:1.7.1.901-1ubuntu1 Depends: libxi6 (= 2:1.7.1.901-1ubuntu1) Filename: pool/main/libx/libxi/libxi6-dbg_1.7.1.901-1ubuntu1_amd64.deb Size: 449968 MD5sum: 5f4f5263740b15c69eac682360e17644 SHA1: b9c7a5d3e5e8dd033ca6837f394674f4a78ca022 SHA256: d8efc277c990922a4ecc63582d0e36e14433943e2efd550aba231f21f9762a7c Description: X11 Input extension library (debug package) Multi-Arch: same Description-md5: 857507268b7762f8b0c6a0614de2dde3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxinerama-dev Priority: optional Section: libdevel Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxinerama Version: 2:1.1.3-1 Replaces: x11proto-xinerama-dev (<< 1.2) Depends: libxinerama1 (= 2:1.1.3-1), libx11-dev, libxext-dev, x11proto-xinerama-dev (>= 1.2) Filename: pool/main/libx/libxinerama/libxinerama-dev_1.1.3-1_amd64.deb Size: 8404 MD5sum: 1ae3c59dab94b1579df89043418302f7 SHA1: 789162c2e92af7a7b3e30f3b60255f9258f762bd SHA256: 17e0b3c732630f64e45f9e77e3b6639c20afe3e9f42ac29014c1c41602523e57 Description: X11 Xinerama extension library (development headers) Multi-Arch: same Description-md5: 2efd4db97130bfd4a9ddc036f4e668d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxinerama1 Priority: optional Section: libs Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxinerama Version: 2:1.1.3-1 Depends: libc6 (>= 2.2.5), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxinerama/libxinerama1_1.1.3-1_amd64.deb Size: 7908 MD5sum: 721170a8943d91f9f2f7fd91b9bb9508 SHA1: 08b072bf78e98832279057bc4036e6e599171d27 SHA256: a2619fb2c8afe71fff0a047ffda776a8fadc5a914334abf00183442a3e46fca8 Description: X11 Xinerama extension library Multi-Arch: same Description-md5: 8af4527c5c1d4c9cfadc619f456cc56d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxinerama1-dbg Priority: extra Section: libdevel Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxinerama Version: 2:1.1.3-1 Depends: libxinerama1 (= 2:1.1.3-1) Filename: pool/main/libx/libxinerama/libxinerama1-dbg_1.1.3-1_amd64.deb Size: 21222 MD5sum: 0c31cef769698263b8d55f4f56b65255 SHA1: 9ac56f17626781fbe87be283ee680b4e83f48a7e SHA256: b4a641f0c31e7b27bec19c6beaa025364d2b2e8c4b11608187aad67840d76a5c Description: X11 Xinerama extension library (debug package) Multi-Arch: same Description-md5: 3efda02ddc20dc08432699587550c3db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxkbcommon-dev Priority: optional Section: libdevel Installed-Size: 676 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxkbcommon Version: 0.4.1-0ubuntu1 Depends: libxkbcommon0 (= 0.4.1-0ubuntu1) Filename: pool/main/libx/libxkbcommon/libxkbcommon-dev_0.4.1-0ubuntu1_amd64.deb Size: 131272 MD5sum: b8823a5d35f7264c0e81f9ec1ede2192 SHA1: 80727db32f537425496a854efafc410d69b435f8 SHA256: e160536aa075d30040fc16a263fd43644a9d8a6bdc8ee89a31a65870c8ee8947 Description: library interface to the XKB compiler - development files Homepage: http://www.xkbcommon.org/ Description-md5: 37abc1bc57b20a1af92e4ac032e4dc49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxkbcommon-x11-0 Priority: optional Section: libs Installed-Size: 69 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxkbcommon Version: 0.4.1-0ubuntu1 Depends: libc6 (>= 2.17), libxcb-xkb1, libxcb1 (>= 1.6), libxkbcommon0 (>= 0.2.0) Pre-Depends: multiarch-support Filename: pool/main/libx/libxkbcommon/libxkbcommon-x11-0_0.4.1-0ubuntu1_amd64.deb Size: 13618 MD5sum: 3a8ab5c71051fe8a6d722844d8aa4b44 SHA1: 70b2b851764508c7c4f2d48d90ce2e1be03dd713 SHA256: 70956d6f8c1205e1ee34eca184bc6fc2d72e1659eff135c89da692185719e98c Description: library to create keymaps with the XKB X11 protocol Multi-Arch: same Homepage: http://www.xkbcommon.org/ Description-md5: 5ace56ad73d8c4d2404479302422a64c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxkbcommon-x11-dev Priority: extra Section: libdevel Installed-Size: 95 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxkbcommon Version: 0.4.1-0ubuntu1 Depends: libxkbcommon-x11-0 (= 0.4.1-0ubuntu1) Filename: pool/main/libx/libxkbcommon/libxkbcommon-x11-dev_0.4.1-0ubuntu1_amd64.deb Size: 15042 MD5sum: 3298e11771a74e62ebc14ff42531fece SHA1: 1132782fb69de856ade074a4ad62072cb8b99dd7 SHA256: 65f0219233e18cb3cd8207590d7c7df1cdc04b4a414a81b6ad242460237025e5 Description: library to create keymaps with the XKB X11 protocol - development files Homepage: http://www.xkbcommon.org/ Description-md5: f75e9d091cfe08a8075f60cdc7469b94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxkbcommon0 Priority: optional Section: libs Installed-Size: 272 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxkbcommon Version: 0.4.1-0ubuntu1 Depends: xkb-data, libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/libx/libxkbcommon/libxkbcommon0_0.4.1-0ubuntu1_amd64.deb Size: 87886 MD5sum: fee78c7965b696e7dca365689e1cfcfc SHA1: f7ee5805152d15433ee20124513c424dfdb2022b SHA256: fdc131f90c404b5aaa24cba608d7167945e3b6e6d2b4877f01573332f1282f6a Description: library interface to the XKB compiler - shared library Multi-Arch: same Homepage: http://www.xkbcommon.org/ Description-md5: 6af15d73a304f17fe923dd6d3ac18c17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxkbfile-dev Priority: optional Section: libdevel Installed-Size: 331 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxkbfile Version: 1:1.0.8-1 Depends: libxkbfile1 (= 1:1.0.8-1), libx11-dev, x11proto-core-dev, x11proto-kb-dev Filename: pool/main/libx/libxkbfile/libxkbfile-dev_1.0.8-1_amd64.deb Size: 89392 MD5sum: ad2ead71646088e94e333317370c315d SHA1: a64c66d48d74dfa209edc947339ce228798cb487 SHA256: efb440d1d17e1f0fa8b8414a08f38a581f2a461ad29e8bae5b5dfc154f883c81 Description: X11 keyboard file manipulation library (development headers) Multi-Arch: same Description-md5: ad5f62c86814066bcc2cca88f1feb02d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxkbfile1 Priority: optional Section: libs Installed-Size: 194 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxkbfile Version: 1:1.0.8-1 Depends: libc6 (>= 2.14), libx11-6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxkbfile/libxkbfile1_1.0.8-1_amd64.deb Size: 74162 MD5sum: 0992d2d02b5b04f15fdc8d35897f296c SHA1: 614afc0b99d26d7e53d74c8c20e5cc1e91da9db5 SHA256: d1739efa54aac026f467751c4db5e60959d103698ab55b4b78fe29af7a71185e Description: X11 keyboard file manipulation library Multi-Arch: same Description-md5: e5bd1e08d32d2a15bb15debcd9ebca0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxkbfile1-dbg Priority: extra Section: libdevel Installed-Size: 609 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxkbfile Version: 1:1.0.8-1 Depends: libxkbfile1 (= 1:1.0.8-1) Filename: pool/main/libx/libxkbfile/libxkbfile1-dbg_1.0.8-1_amd64.deb Size: 172922 MD5sum: 1b88d49522a71daae68b90218d9a0ed9 SHA1: be0c95ad2c0e0b8138fd76c4d7b18dfc6857ca50 SHA256: 68352968207a45af0e6f6df4173a018ab67c03c52b2b8eeedfad55db96895440 Description: X11 keyboard file manipulation library (debug package) Multi-Arch: same Description-md5: 7bed775e20505db4d272ed92954d082c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxklavier-dev Priority: optional Section: libdevel Installed-Size: 478 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libxklavier Version: 5.4-0ubuntu1 Depends: libxklavier16 (= 5.4-0ubuntu1), libglib2.0-dev (>= 2.16.0), libxml2-dev (>= 2.0.0), libx11-dev, gir1.2-xkl-1.0 (= 5.4-0ubuntu1) Filename: pool/main/libx/libxklavier/libxklavier-dev_5.4-0ubuntu1_amd64.deb Size: 64484 MD5sum: c3adf50fffb7cb4973208d464f12d68c SHA1: 7a7626eaf9fb84cf335e12f01b1b96723ded7121 SHA256: 470e8fbe67d5e5a56c99284f5faeb3eb596775279637440fb0192f3a8cd560b7 Description: Development files for libxklavier Homepage: http://www.freedesktop.org/wiki/Software/LibXklavier Description-md5: b597dcd5eda75cde0b43256434dc609f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxklavier16 Priority: optional Section: libs Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: libxklavier Version: 5.4-0ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libx11-6, libxi6 (>= 2:1.1.2), libxkbfile1, libxml2 (>= 2.7.4), xkb-data (>= 0.8), x11-xkb-utils Suggests: iso-codes Filename: pool/main/libx/libxklavier/libxklavier16_5.4-0ubuntu1_amd64.deb Size: 41678 MD5sum: bc8ab6dc61ee8524eb62fa22663d2bed SHA1: b333cb65a8a99f37646fd7b87e3f4b6f2c95ba45 SHA256: f5a3661ee013163b5ce152784ef7aa5009117fa5b7d13f740739809981eb9eaf Description: X Keyboard Extension high-level API Homepage: http://www.freedesktop.org/wiki/Software/LibXklavier Description-md5: 1cd9d83d8439126ed00f6818cfce823d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxml++2.6-2 Priority: optional Section: libs Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: amd64 Source: libxml++2.6 Version: 2.36.0-2ubuntu1 Replaces: libxml++2.6c2a Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglibmm-2.4-1c2a (>= 2.36.2), libstdc++6 (>= 4.6), libxml2 (>= 2.7.4) Breaks: gnote (<< 0.4) Filename: pool/main/libx/libxml++2.6/libxml++2.6-2_2.36.0-2ubuntu1_amd64.deb Size: 62670 MD5sum: e705796876857f4c48e0dc884a17d07d SHA1: 0025355667ef3e7ef02908eac39cd90cbc94398a SHA256: f57aa3c38c844f259075fc0f4202f43bc984471885f0ad229e8c9ae00de9eb42 Description: C++ interface to the GNOME XML library (libxml2) Homepage: http://libxmlplusplus.sourceforge.net/ Description-md5: 5000d474cafbf7c5dd4265d7b92c45a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: libxml++2.6-dbg Priority: extra Section: libdevel Installed-Size: 1423 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: amd64 Source: libxml++2.6 Version: 2.36.0-2ubuntu1 Depends: libxml++2.6-2 (= 2.36.0-2ubuntu1) Filename: pool/main/libx/libxml++2.6/libxml++2.6-dbg_2.36.0-2ubuntu1_amd64.deb Size: 280430 MD5sum: cd55050464abc79ce1c3cf7416d8b2a0 SHA1: 248a5dfb527bfc9a9b6cd5973f888f6ee8620839 SHA256: 6e9d51fdf8397cd0c42056c3bcd0f63a2edecf9ed70b6b8601f755404b53b2a1 Description: C++ interface to the GNOME XML library (debug symbols) Homepage: http://libxmlplusplus.sourceforge.net/ Description-md5: 1371a4f099f93f9bc292a84ed5d8dd4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml++2.6-dev Priority: optional Section: libdevel Installed-Size: 600 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: amd64 Source: libxml++2.6 Version: 2.36.0-2ubuntu1 Depends: libxml++2.6-2 (= 2.36.0-2ubuntu1), libxml2-dev (>= 2.7.3), libglibmm-2.4-dev (>= 2.32.0) Suggests: libxml++2.6-doc, pkg-config Filename: pool/main/libx/libxml++2.6/libxml++2.6-dev_2.36.0-2ubuntu1_amd64.deb Size: 74154 MD5sum: d0cd54f72582df375151d06e13de9574 SHA1: e8cd116343c6355fa9337bf7ee195cc33d136455 SHA256: 296351dd50c4d27b54bdeb5851825143f91874d16280271380dd2fc1f796a5ca Description: C++ interface to the GNOME XML library (libxml2) Homepage: http://libxmlplusplus.sourceforge.net/ Description-md5: 9cfa81a79419cccc6d88cb79db42ec7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml++2.6-doc Priority: optional Section: doc Installed-Size: 2830 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: all Source: libxml++2.6 Version: 2.36.0-2ubuntu1 Depends: doc-base, lynx | www-browser Suggests: libxml++2.6-dev Filename: pool/main/libx/libxml++2.6/libxml++2.6-doc_2.36.0-2ubuntu1_all.deb Size: 608290 MD5sum: 2f66f00c8eb2a8c4b8b267b0758520df SHA1: 1eea56361ede46199e33693c23d348a61957df73 SHA256: 0aaede33db863bb9ab3858bb218c0e4aeb0dfc012c102e9a608b5fc5303fcfbc Description: HTML interface documentation and examples for libxml++ Homepage: http://libxmlplusplus.sourceforge.net/ Description-md5: 09427d4c7495a883c720f9cce9f4b33c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-commons-external-java Priority: optional Section: libs Installed-Size: 384 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xml-commons-external Version: 1.4.01-2build1 Filename: pool/main/x/xml-commons-external/libxml-commons-external-java_1.4.01-2build1_all.deb Size: 245248 MD5sum: a3ba72113c451b98099d582afa64112c SHA1: bd7d1f2d0bd166b9866e9ec3a6e33ead50cf8823 SHA256: 973f5e9d660768159e4b5fbe0c920692be1f0c5ef5e991ae1e4e258c869c7061 Description: XML Commons external code - DOM, SAX, and JAXP, etc Homepage: http://xml.apache.org/commons/ Description-md5: 4e1b50a9891dd28c555faf706a632ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libxml-commons-external-java-doc Priority: optional Section: doc Installed-Size: 1546 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xml-commons-external Version: 1.4.01-2build1 Filename: pool/main/x/xml-commons-external/libxml-commons-external-java-doc_1.4.01-2build1_all.deb Size: 168958 MD5sum: 74530ae90b3a92fa6e3bd1853cc8287d SHA1: 56507b148e9430ac03153c45b9dca68ece849d50 SHA256: a332ca12dcacf4174a6c3f14fb53abf8bed2a507359fc916e46284777b9cdb89 Description: Documentation of XML Commons external API Homepage: http://xml.apache.org/commons/ Description-md5: ff04559719db4b7095c9032af8c070d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-commons-resolver1.1-java Priority: optional Section: libs Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.2-7build1 Suggests: libxml-commons-resolver1.1-java-doc Filename: pool/main/libx/libxml-commons-resolver1.1-java/libxml-commons-resolver1.1-java_1.2-7build1_all.deb Size: 91600 MD5sum: b90c2054a7e0fed8ee79b582952b310b SHA1: f67c82c92b56986181aae200d5916c913dfdf77c SHA256: 39dc0c3162d2a957d9d5e13065d6b23d223489aa8341b09af35d59d52f1f731c Description: XML entity and URI resolver library Homepage: http://xml.apache.org/commons/ Description-md5: b02dd46b0597bad6766a676bf9a4f539 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libxml-commons-resolver1.1-java-doc Priority: optional Section: doc Installed-Size: 1254 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libxml-commons-resolver1.1-java Version: 1.2-7build1 Suggests: libxml-commons-resolver1.1-java Filename: pool/main/libx/libxml-commons-resolver1.1-java/libxml-commons-resolver1.1-java-doc_1.2-7build1_all.deb Size: 110976 MD5sum: b27320b86f5908f2ebf8d891e6b8dd0c SHA1: 21f19d4e9503cf1d46b11bb2ffb8fd3999434688 SHA256: 5790ee82cb67953361cc652af694d28d460c238acef4b9b3433779068940b293 Description: XML entity and URI resolver library -- documentation Homepage: http://xml.apache.org/commons/ Description-md5: f3d0f98e5c6424bca86cbbd706dbe09f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-commons-resolver1.1-java-gcj Priority: optional Section: libs Installed-Size: 453 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: amd64 Source: libxml-commons-resolver1.1-java Version: 1.2-7build1 Depends: libxml-commons-resolver1.1-java (= 1.2-7build1), libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.6.3-1~), libgcj-common (>> 1:4.1.1-13) Filename: pool/main/libx/libxml-commons-resolver1.1-java/libxml-commons-resolver1.1-java-gcj_1.2-7build1_amd64.deb Size: 119348 MD5sum: d3b00a320614588fdce05300a0e9bafc SHA1: bb91a762466e623994e31c13c22de49d56ee4824 SHA256: 9387c490e60a2b69f7e7446e6f8082e6e2287891ba8b2a5653e2008c15d6554b Description: XML entity and URI resolver library -- native library Homepage: http://xml.apache.org/commons/ Description-md5: cedd8cf091ffb8b185aaf2a25777d6d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-dom-perl Priority: optional Section: perl Installed-Size: 496 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.44-1 Depends: libwww-perl, libxml-parser-perl (>= 2.34), libxml-perl, libxml-regexp-perl, perl (>= 5.6.0-16) Filename: pool/main/libx/libxml-dom-perl/libxml-dom-perl_1.44-1_all.deb Size: 185016 MD5sum: a83e4cb071b125dcadf46f767db756f7 SHA1: 372b88182d2a958e89ad2045c13db06f34bb2898 SHA256: b6c584338a862985b9f6b640aa964a33fe436220549c18e4b180a20a5cc71406 Description: Perl module for building DOM Level 1 compliant doc structures Homepage: http://search.cpan.org/dist/XML-DOM/ Description-md5: b7fb8c0f04b00667305bf4db9a3d2328 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-filter-buffertext-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.01-5 Depends: perl, libxml-sax-perl (>= 0.10) Filename: pool/main/libx/libxml-filter-buffertext-perl/libxml-filter-buffertext-perl_1.01-5_all.deb Size: 7374 MD5sum: 622b8eccf365dd522e6603bdfef1e36c SHA1: 1dcf8f4b3cbef00382b22c8b1771488b6b3fce52 SHA256: b8083c956185fe03bb51a27e5c17cc25b78bd9c037d7b8fce7905da935253871 Description: Perl module for putting all characters into a single event Homepage: http://search.cpan.org/dist/XML-Filter-BufferText/ Description-md5: 2501c67234a8c077d0e624479011af75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-libxml-perl Priority: optional Section: perl Installed-Size: 1003 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 2.0108+dfsg-1 Depends: libc6 (>= 2.14), libxml2 (>= 2.7.4), perl (>= 5.18.1-5), perlapi-5.18.1, libxml-namespacesupport-perl, libxml-sax-perl Filename: pool/main/libx/libxml-libxml-perl/libxml-libxml-perl_2.0108+dfsg-1_amd64.deb Size: 336934 MD5sum: ce0b014636d93de899d96358c4ad5e03 SHA1: 6a4b6344d9cb1bf6fb5317bb06881cae03721c2b SHA256: 82625ecea8b45530bcbcf151dfebdd37ec7b74c963d2ed93fbaa0c7cb90cef4a Description: Perl interface to the libxml2 library Homepage: https://metacpan.org/release/XML-LibXML/ Description-md5: d585b9f49fd3c911baab5d83bfe8dae5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-libxslt-perl Priority: optional Section: perl Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 1.84-1 Depends: libxml-libxml-perl, perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.4), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25) Filename: pool/main/libx/libxml-libxslt-perl/libxml-libxslt-perl_1.84-1_amd64.deb Size: 42268 MD5sum: ee561871d3ff8433850d7270f9a6051b SHA1: 8dc3ba894d4685294bf4d1ff4d696a37b75125d6 SHA256: 637a1461fac159399655a123048d586bd6c64922408ab4e48f6768150095ac12 Description: Perl interface to the GNOME libxslt library Homepage: https://metacpan.org/release/XML-LibXSLT/ Description-md5: 5a4ed3da894c2605abd86c174ea7495c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-namespacesupport-perl Priority: optional Section: perl Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.11-1 Depends: perl Filename: pool/main/libx/libxml-namespacesupport-perl/libxml-namespacesupport-perl_1.11-1_all.deb Size: 13230 MD5sum: a32900884789112a7be6bcc2ed7dabae SHA1: 986bc727e39b78707d6eda704c98f5b5ee6ac71e SHA256: 94785caafac35ee223d4f265a2b3c997d15ef25cbe887ab68b94a53dc5f9ca3d Description: Perl module for supporting simple generic namespaces Homepage: https://metacpan.org/release/XML-NamespaceSupport/ Description-md5: bb879c06ad33a8cd6d85483505387a81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-parser-perl Priority: optional Section: perl Installed-Size: 586 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 2.41-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, liburi-perl, libwww-perl, libc6 (>= 2.14), libexpat1 (>= 2.0.1) Filename: pool/main/libx/libxml-parser-perl/libxml-parser-perl_2.41-1build3_amd64.deb Size: 294030 MD5sum: fd052f7f2de02b9584022deb7c380cfc SHA1: a87369723beb50892b6eeaf83c653fa05e47c5fc SHA256: e84533c7600db3cb13d06a6246d10f253cff455b896f559e7a71f5161e891a9e Description: Perl module for parsing XML files Homepage: http://www.libexpat.org/ Description-md5: f3f996bbf5ff035cbc02bffeda96694b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop Package: libxml-perl Priority: optional Section: perl Installed-Size: 400 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.08-2 Depends: perl, libxml-parser-perl Filename: pool/main/libx/libxml-perl/libxml-perl_0.08-2_all.deb Size: 112910 MD5sum: 557941d947399af6ec19cfae8d718561 SHA1: 5fd0f0d20a7702b1809cc865b8730a17d55607c6 SHA256: 9ad1d2b789e6abc6ecada9e8c13b43c45a74208dbe40aebfdc454beb815bfbe3 Description: Perl modules for working with XML Homepage: http://search.cpan.org/dist/libxml-perl/ Description-md5: 090e132f6119a4673ee8d32d2fc6ac2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-regexp-perl Priority: optional Section: perl Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.04-1 Depends: perl Filename: pool/main/libx/libxml-regexp-perl/libxml-regexp-perl_0.04-1_all.deb Size: 8072 MD5sum: 159a38d22f584ececb34debfd761b046 SHA1: d5f9c2d3397eca66b51ad45ca8c5129715162a33 SHA256: e0db16fea81a66ec8ba5d53735ffb50fcef4d1977a50b6cf0d3a5447160976d9 Description: Perl module for regular expressions for XML tokens Homepage: http://search.cpan.org/dist/XML-RegExp/ Description-md5: 10fc2bc96be2a78c9326442a7aad7058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-sax-base-perl Priority: optional Section: perl Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.07-1 Replaces: libxml-sax-perl (<< 0.99+dfsg-1) Depends: perl Breaks: libxml-sax-perl (<< 0.99+dfsg-1) Filename: pool/main/libx/libxml-sax-base-perl/libxml-sax-base-perl_1.07-1_all.deb Size: 21514 MD5sum: 53a17589e07c67dfe52bfeab616f4040 SHA1: f1b73b0958d16a73f475b6715cdb4913ce46cf87 SHA256: c814249304dad3112ce5b9d0f17135f899ed4a046bcb420e0fefe96f2ef90593 Description: base class for SAX drivers and filters Homepage: http://search.cpan.org/dist/XML-SAX-Base/ Description-md5: d2b9fd04fe2bfb32b35febb80f2cfc34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-sax-expat-perl Priority: optional Section: perl Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.40-2 Depends: perl, libxml-namespacesupport-perl (>= 0.03), libxml-parser-perl (>= 2.27), libxml-sax-perl (>= 0.03) Filename: pool/main/libx/libxml-sax-expat-perl/libxml-sax-expat-perl_0.40-2_all.deb Size: 11516 MD5sum: 097ab7a9cab881e1d7df553f7f29bb9f SHA1: ca7e14a5cfe91b252a6617c2023dcafe269bc965 SHA256: 90d67eb99244f1bb4b48f15208c4765d387f6d5d71c189edce60af0296e4b066 Description: Perl module for a SAX2 driver for Expat (XML::Parser) Homepage: http://search.cpan.org/dist/XML-SAX-Expat/ Description-md5: b242c9d25492331b246160ca4a019e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-sax-perl Priority: optional Section: perl Installed-Size: 225 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.99+dfsg-2ubuntu1 Depends: perl, libxml-namespacesupport-perl, libxml-sax-base-perl, ucf (>= 0.28) Recommends: libxml-sax-expat-perl Filename: pool/main/libx/libxml-sax-perl/libxml-sax-perl_0.99+dfsg-2ubuntu1_all.deb Size: 64596 MD5sum: 8f4bba98ec71cb3f4efbf5164ca1c6d4 SHA1: 66ef8ccb06756da79542bb14d4b478580414d0af SHA256: 8d502edffe2b4843f2541b8cdf308b587331c76efb1e3343fabe36826c714e10 Description: Perl module for using and building Perl SAX2 XML processors Homepage: http://search.cpan.org/dist/XML-SAX/ Description-md5: 85b6ca7554a3537b49500d73d818d9b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-sax-writer-perl Priority: optional Section: perl Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.53-1 Depends: perl, libxml-filter-buffertext-perl, libxml-namespacesupport-perl, libxml-sax-perl Filename: pool/main/libx/libxml-sax-writer-perl/libxml-sax-writer-perl_0.53-1_all.deb Size: 22336 MD5sum: 9bf60c55d89895e015dca9a780dfb9cf SHA1: f586f8776167088dc94fb0871f515c9e3193e306 SHA256: 4bb44d6501ff4ba4a135d4fa9aebad5c74207a5f59ff22751af518f95901f158 Description: Perl module for a SAX2 XML writer Homepage: http://search.cpan.org/dist/XML-SAX-Writer/ Description-md5: 9162abd02009c1134cce2671337f9586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-simple-perl Priority: optional Section: perl Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.20-1 Depends: perl, libxml-namespacesupport-perl (>= 1.04), libxml-sax-perl, libxml-libxml-perl | libxml-sax-expat-perl Filename: pool/main/libx/libxml-simple-perl/libxml-simple-perl_2.20-1_all.deb Size: 68312 MD5sum: 67605b87526fe4e90a21a85a972c4fe2 SHA1: ac6945c0a99924e6522f7b324d51c9f4be2200ce SHA256: e2293680ca919c8d1c9c3bf75ea36b3ac130add180ffa927d2c3cee09530f5e3 Description: Perl module for reading and writing XML Homepage: http://search.cpan.org/dist/XML-Simple/ Description-md5: 9205d4b838f0b9ba0b4731da4e97a76d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml2 Priority: standard Section: libs Installed-Size: 1800 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Version: 2.9.1+dfsg1-3ubuntu4 Depends: libc6 (>= 2.15), liblzma5 (>= 5.1.1alpha+20120614), zlib1g (>= 1:1.2.3.3) Pre-Depends: multiarch-support Recommends: xml-core Filename: pool/main/libx/libxml2/libxml2_2.9.1+dfsg1-3ubuntu4_amd64.deb Size: 570518 MD5sum: 0a3aac706394f9fc0e776d2c69db2192 SHA1: 212d2f2217c02123df4521a31be5e692527f0f2f SHA256: ea4051f271f5726b4e2de2aa5eef1be9910370cdfb65109fb60a18440d889326 Description: GNOME XML library Multi-Arch: same Homepage: http://xmlsoft.org/ Description-md5: 6771e66f557fa0f71e6955303e1d8f8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxml2-dbg Priority: extra Section: libdevel Installed-Size: 1574 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Depends: libxml2 (= 2.9.1+dfsg1-3ubuntu4) Filename: pool/main/libx/libxml2/libxml2-dbg_2.9.1+dfsg1-3ubuntu4_amd64.deb Size: 1287032 MD5sum: ea841bfaf979a3d43bd7972517915a46 SHA1: 952ad64f08b8afc9b158a0fe9e34a7ed503a995a SHA256: 18cfd25e0993f51708426049fdf86b161c55a1728ed5113bfa3965eefca18764 Description: Debugging symbols for the GNOME XML library Multi-Arch: same Homepage: http://xmlsoft.org/ Description-md5: 9ec720505d02de944686c1135841e078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml2-dev Priority: optional Section: libdevel Installed-Size: 2858 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Depends: libxml2 (= 2.9.1+dfsg1-3ubuntu4) Suggests: pkg-config Filename: pool/main/libx/libxml2/libxml2-dev_2.9.1+dfsg1-3ubuntu4_amd64.deb Size: 628370 MD5sum: 7c8c9e9d79575f7036b94ebd47babc25 SHA1: 03fc8f2a9c9e61c43ae820c10a0ea75aac9b69f3 SHA256: 87471b86fcf25aa0ca76b27cbc4209f1c48759d80c60dffdad254f5a9e112b8a Description: Development files for the GNOME XML library Multi-Arch: same Homepage: http://xmlsoft.org/ Description-md5: 3fc5da551079ce5d27e8aae047e7a888 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml2-doc Priority: optional Section: doc Installed-Size: 8511 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Suggests: devhelp Filename: pool/main/libx/libxml2/libxml2-doc_2.9.1+dfsg1-3ubuntu4_all.deb Size: 801722 MD5sum: 15ad8ffe54c741f8a173b748606e8815 SHA1: 3a9f2f9dea30f734347f5f33da96b944b999e308 SHA256: af6744fff2ac496a3673a1040427352584fb54a0aca2f41560c80a850c7808bf Description: Documentation for the GNOME XML library Multi-Arch: foreign Homepage: http://xmlsoft.org/ Description-md5: 5a090ab419791c5777762dc26465ac3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml2-utils Priority: optional Section: text Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Depends: libc6 (>= 2.7), libreadline6 (>= 6.0), libxml2 (>= 2.9.0) Filename: pool/main/libx/libxml2/libxml2-utils_2.9.1+dfsg1-3ubuntu4_amd64.deb Size: 34782 MD5sum: d5be0749d788c0df35848733a63aa229 SHA1: bb2b6b341a859448e782543b7847df19159a89a7 SHA256: db42e62ec3dad39912d352bbddeda5a5d39bede4a6f0f8777f096d52b8427d31 Description: XML utilities Multi-Arch: foreign Homepage: http://xmlsoft.org/ Description-md5: eb24a32e7f02ae9cc4d9ada525dc1964 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libxml2-utils-dbg Priority: extra Section: debug Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Depends: libxml2-utils (= 2.9.1+dfsg1-3ubuntu4) Filename: pool/main/libx/libxml2/libxml2-utils-dbg_2.9.1+dfsg1-3ubuntu4_amd64.deb Size: 67254 MD5sum: 88e0621a039fed2a7d806c3fa83b7b8d SHA1: 58f7b497839233a922ee2983a0add10c4ef3a7e5 SHA256: b2a233fa139ab9809ebd467f60d0e3f3574ae07b7d47281663b2d59cf33e5c98 Description: XML utilities (debug extension) Homepage: http://xmlsoft.org/ Description-md5: 54315da2c98caf530cdead72cdb9a09b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmlbeans-java Priority: optional Section: libs Installed-Size: 2784 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xmlbeans Version: 2.5.0-4build1 Depends: libxml-commons-resolver1.1-java Filename: pool/main/x/xmlbeans/libxmlbeans-java_2.5.0-4build1_all.deb Size: 2332964 MD5sum: 3dcc46b12845adf356d92a3943c91edc SHA1: bc1d07d3f335682c1786959e6f287e64513677aa SHA256: 58c039331d72801d582f7ebaca06514ebb3009a2ee3863f0a2c91f9cbab06eea Description: Java library for accessing XML by binding it to Java types Homepage: http://xmlbeans.apache.org/ Description-md5: e2e8a3e123e327293ed0fb099aace377 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmlgraphics-commons-java Priority: optional Section: libs Installed-Size: 656 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xmlgraphics-commons Version: 1.5-4ubuntu1 Depends: libcommons-io-java, libcommons-logging-java Suggests: libxmlgraphics-commons-java-doc Filename: pool/main/x/xmlgraphics-commons/libxmlgraphics-commons-java_1.5-4ubuntu1_all.deb Size: 548366 MD5sum: 66310ef0f8aa9a58c8ecec365596a162 SHA1: bcc5ebfeab5e1c204c53123681424c73b16cfec5 SHA256: c2874a0c6200d86a5fd655279295a87346278fa14a32ad870056c71146709b67 Description: Reusable components used by Batik and FOP Homepage: http://xmlgraphics.apache.org/commons/ Description-md5: 70f3977c38c425fc4b7d846f700b68bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmlgraphics-commons-java-doc Priority: optional Section: doc Installed-Size: 10564 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xmlgraphics-commons Version: 1.5-4ubuntu1 Suggests: libxmlgraphics-commons-java Filename: pool/main/x/xmlgraphics-commons/libxmlgraphics-commons-java-doc_1.5-4ubuntu1_all.deb Size: 411048 MD5sum: 01220cfc480ec1528926ff01dad562d6 SHA1: 9a6ebed5827f110ab953cbda145e94d9ef3c69cf SHA256: 799f53691d9af8f34ff5dbc91d11f76e4986b7f92a7f59a091b53efd5256d9aa Description: Reusable components used by Batik and FOP (documentation) Homepage: http://xmlgraphics.apache.org/commons/ Description-md5: b0068e0c04986cd51ea594e707592bfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmltok1 Priority: optional Section: libs Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxmltok Version: 1.2-3build3 Depends: libc6 (>= 2.14) Filename: pool/main/libx/libxmltok/libxmltok1_1.2-3build3_amd64.deb Size: 54076 MD5sum: b16a3c97eea0d31690e43251d3b2884a SHA1: 59c9ff3ec2ec08cdcc532c553118d33687e1ff5d SHA256: 243f0112c511cdc94a2bc26fd62b26e555a540796d8455fc0cef776f42d3a021 Description: XML Parser Toolkit, runtime libraries Homepage: http://www.jclark.com/xml/expat.html Description-md5: 69ef786d49a46efbd1c98830282da30e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmltok1-dev Priority: optional Section: libdevel Installed-Size: 375 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxmltok Version: 1.2-3build3 Depends: libxmltok1 (= 1.2-3build3), libc6-dev | libc-dev Filename: pool/main/libx/libxmltok/libxmltok1-dev_1.2-3build3_amd64.deb Size: 76028 MD5sum: c730d8434e95e1839b3b72af93895ac2 SHA1: de25a199ed06f0ae095f907a590e97839b83f691 SHA256: 3d95a9043bf5a2207eaf08fbb7734e8cd68f2e040b7ff1e21da3248a5c9ef31c Description: XML Parser Toolkit, developer libraries Homepage: http://www.jclark.com/xml/expat.html Description-md5: 4bde7e069f9e49e0a64c14812747c6dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmlunit-java Priority: optional Section: java Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xmlunit Version: 1.5-1 Depends: junit, libjaxp1.3-java Filename: pool/main/x/xmlunit/libxmlunit-java_1.5-1_all.deb Size: 93240 MD5sum: 3f16f311341bb54582364dcacef1bacc SHA1: 38ab169c8c3e5ab9747c2c2e43db9bb665397209 SHA256: 4fa6d3e357fd461a4a63510a72e87fec1f089e713c8b35641a745b1baeb8f055 Description: Unit testing for XML documents Homepage: http://xmlunit.sourceforge.net/ Description-md5: ae4748d49ea277f240a27b67e8e8022f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmlunit-java-doc Priority: optional Section: doc Installed-Size: 2298 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xmlunit Version: 1.5-1 Depends: default-jdk-doc Filename: pool/main/x/xmlunit/libxmlunit-java-doc_1.5-1_all.deb Size: 514782 MD5sum: 89de456f7e3e83ed4db6665cc1a2b6c8 SHA1: a2d3b2f700ab32fbfb1d5967472066f5f03638ad SHA256: b769b8b79edaa0e86f5c0b6f83506492b2977a8d1794bcd2782e645cfc055b4c Description: Documentation for XMLUnit Homepage: http://xmlunit.sourceforge.net/ Description-md5: a47a149fedb5998aac8eee5719112090 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmu-dev Priority: optional Section: libdevel Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxmu Version: 2:1.1.1-1 Depends: libxext-dev, libxt-dev, libxmu6 (= 2:1.1.1-1), libxmu-headers (= 2:1.1.1-1) Filename: pool/main/libx/libxmu/libxmu-dev_1.1.1-1_amd64.deb Size: 60252 MD5sum: 96a9b4579bde0f8b1ecbcbc594d7e740 SHA1: a7cdf7c07cadfaefc7c83d28a0edfc57cdd799d2 SHA256: 66ab945562ecdff90270b0cf64bbed460303c65f4e7b93c0a78a83952c1b9236 Description: X11 miscellaneous utility library (development headers) Multi-Arch: same Description-md5: 1535c013b63a4134a8f998fbc83b84eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmu-headers Priority: optional Section: x11 Installed-Size: 324 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libxmu Version: 2:1.1.1-1 Depends: libx11-dev, x11proto-core-dev Filename: pool/main/libx/libxmu/libxmu-headers_1.1.1-1_all.deb Size: 61988 MD5sum: d91c33d72887b74c3997b69a69a0a53d SHA1: 3b482ebc3197354aed3e55e5d3162273b81cf67c SHA256: 567228753242f44b2cd2bd931fcc2a3ff5d61f2b8cc08253730bc31b028cad0a Description: X11 miscellaneous utility library headers Multi-Arch: foreign Description-md5: a50fe5fa06a21984619f3b9e9d32391a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmu6 Priority: optional Section: libs Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxmu Version: 2:1.1.1-1 Depends: libc6 (>= 2.14), libx11-6, libxext6, libxt6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxmu/libxmu6_1.1.1-1_amd64.deb Size: 53828 MD5sum: 48a42f9388279603a2ca014dae68163d SHA1: 8ca693374b376e8de92488fe431c60c17cb96fea SHA256: 37eb9b15cb730b49e132389520ef356e35f87acf78d54d9352ebfc595f4b0e91 Description: X11 miscellaneous utility library Multi-Arch: same Description-md5: 5399b16d918a060136eb6d6a5cfda654 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxmu6-dbg Priority: extra Section: libdevel Installed-Size: 574 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxmu Version: 2:1.1.1-1 Depends: libxmu6 (= 2:1.1.1-1) Filename: pool/main/libx/libxmu/libxmu6-dbg_1.1.1-1_amd64.deb Size: 186646 MD5sum: ec5e140b01068ab4b363af7061ec6b20 SHA1: 5f88e4fba08529008505a41103db873dff1f5cf7 SHA256: 54db2f3b503934516e70f477bd1ce685f93224389c7e9ec135dd90cb02bfac1e Description: X11 miscellaneous utility library (debug package) Multi-Arch: same Description-md5: 74842649756d66458d661751633517ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmuu-dev Priority: optional Section: libdevel Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxmu Version: 2:1.1.1-1 Depends: libxmuu1 (= 2:1.1.1-1), libxmu-headers (= 2:1.1.1-1) Filename: pool/main/libx/libxmu/libxmuu-dev_1.1.1-1_amd64.deb Size: 8098 MD5sum: 1550ee4112d1696d255e0480bfe0bf76 SHA1: d4d3767d0ca2bd39617b3287110f8027f352b309 SHA256: ca5d8ad16575fd934fd82a9605e63ae3ba46e3443299b842dd804a1a211e917e Description: X11 miscellaneous micro-utility library (development headers) Multi-Arch: same Description-md5: 82e532669f63dcf82d16c33a3969f937 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmuu1 Priority: standard Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxmu Version: 2:1.1.1-1 Depends: libc6 (>= 2.4), libx11-6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxmu/libxmuu1_1.1.1-1_amd64.deb Size: 11036 MD5sum: 7c78415539294b1c5531260d90643c7d SHA1: 5de5cc6c792fe968c24f3b42230d9b4b0d909e57 SHA256: 5e5f7aa53a33175c9ccc3087ad592e64f8f4a7891ad31d0247689d187c244f24 Description: X11 miscellaneous micro-utility library Multi-Arch: same Description-md5: 9bbd97bf046baafb7d73b980536d719d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxmuu1-dbg Priority: extra Section: libdevel Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxmu Version: 2:1.1.1-1 Depends: libxmuu1 (= 2:1.1.1-1) Filename: pool/main/libx/libxmu/libxmuu1-dbg_1.1.1-1_amd64.deb Size: 23890 MD5sum: 25bbbd64d8b8567dd5e7d647b2f7fa7c SHA1: bd812be751f54ea318322dfec1613b3b4a5247f5 SHA256: 484d72950d76c3c038f8b29c92d57f305ef6152640f19bdaa2e0281c354c30c6 Description: X11 miscellaneous micro-utility library (debug package) Multi-Arch: same Description-md5: e4dcd200da39b15800208107b9ab2361 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxom-java Priority: optional Section: libs Installed-Size: 234 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xom Version: 1.2.10-1 Depends: libjaxen-java (>= 1.1~beta8), libxerces2-java Suggests: libxom-java-doc Filename: pool/main/x/xom/libxom-java_1.2.10-1_all.deb Size: 169580 MD5sum: d55451959df7cecea94ecb8996838d72 SHA1: 1acc73f05b45d71df393990075e7df7f8d5c84eb SHA256: 036da9af4cfe68878701c2881aee938dd16a4b951d9cddefb541789e2f92b4bf Description: New XML object model for Java Homepage: http://www.xom.nu Description-md5: a8d1a9a18a1e7ad5b84a130a26b5a216 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxom-java-doc Priority: optional Section: doc Installed-Size: 2099 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xom Version: 1.2.10-1 Suggests: libxom-java Filename: pool/main/x/xom/libxom-java-doc_1.2.10-1_all.deb Size: 321420 MD5sum: 12f80cf597faadeccbb50123fbb173fc SHA1: dcd198bc8796495451459da102b1234f261e3f9d SHA256: 7b403c1818511bcb9d5fcdde3c9a740eb8a67d5f2e193e68f9c483258fdbc851 Description: Documentation for the libxom-java package Homepage: http://www.xom.nu Description-md5: 48c08460dd7d1351556c19a551e7dd9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxorg-gtest-data Priority: extra Section: devel Installed-Size: 45 Maintainer: Ubuntu X-SWAT Original-Maintainer: Daniel d'Andrada Architecture: all Source: xorg-gtest Version: 0.7.1-0ubuntu1 Filename: pool/main/x/xorg-gtest/libxorg-gtest-data_0.7.1-0ubuntu1_all.deb Size: 4454 MD5sum: c6c8fed6b5c7bb4d4e2aff0a6efc559a SHA1: 3415ff7291fb7727ca4e1581419803b701425af6 SHA256: e6e69753b8db43f6291caa3ede4ac8de81837a0bee6c5f8152f9b660300bc4a9 Description: X.Org dummy testing environment for Google Test - data Description-md5: 08ecf793ed69edad10e3d0e5409d9bd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxorg-gtest-dev Priority: extra Section: libdevel Installed-Size: 494 Maintainer: Ubuntu X-SWAT Original-Maintainer: Daniel d'Andrada Architecture: all Source: xorg-gtest Version: 0.7.1-0ubuntu1 Depends: libgtest-dev, libxorg-gtest-data (= 0.7.1-0ubuntu1), xserver-xorg-video-dummy, xutils-dev (>= 1:7.7~1) Filename: pool/main/x/xorg-gtest/libxorg-gtest-dev_0.7.1-0ubuntu1_all.deb Size: 109890 MD5sum: 292ac0619cfc10c47c0adbea21041327 SHA1: 769fac83acf17b3f068af9b8ff5c76f38590cda2 SHA256: cd06481c7f0f273a498401e61e43b1c3cc2c17ee01945630a381db42fed90015 Description: X.Org dummy testing environment for Google Test - headers Description-md5: 6b6abcca5b485476fcdb131ad5ed9b78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxorg-gtest-doc Priority: extra Section: doc Installed-Size: 658 Maintainer: Ubuntu X-SWAT Original-Maintainer: Daniel d'Andrada Architecture: all Source: xorg-gtest Version: 0.7.1-0ubuntu1 Filename: pool/main/x/xorg-gtest/libxorg-gtest-doc_0.7.1-0ubuntu1_all.deb Size: 108064 MD5sum: ee5150148ca5d931b5ba0e67376034de SHA1: 8be6e675f3988252bb0bd723a1c35170ff5d357b SHA256: bff9d1f0ef4f545981605b2775ea8a24f0d697d4fbbe168a03e3ed9513bc021a Description: X.org dummy testing environment for Google Test - documentation Description-md5: 4f53e8779760dec3c4f1de6fe7160b62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxp-dev Priority: optional Section: x11 Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxp Version: 1:1.0.2-1ubuntu1 Depends: libxp6 (= 1:1.0.2-1ubuntu1), libx11-dev (>= 2:1.0.0), x11proto-print-dev, libxext-dev, libxau-dev Filename: pool/main/libx/libxp/libxp-dev_1.0.2-1ubuntu1_amd64.deb Size: 78708 MD5sum: 4f038637051674c8ef170a24baeff336 SHA1: 57d87ca6a6e52fcce17cda74e589ddd05b72bff1 SHA256: 6bd28aec5d7acf38fdb0488a657848671fc4f9ca460a442a482c3de661897340 Description: X Printing Extension (Xprint) client library (development files) Multi-Arch: same Description-md5: 7b946dfa99967f31503fdf6163d82429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxp6 Priority: optional Section: x11 Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxp Version: 1:1.0.2-1ubuntu1 Depends: libc6 (>= 2.14), libx11-6 (>= 2:1.6.0), libxau6, libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxp/libxp6_1.0.2-1ubuntu1_amd64.deb Size: 15564 MD5sum: 13104c3565eba09dfd3904ab2fbda308 SHA1: b6ae63c870647d0545e89c95d02fc21656dca066 SHA256: 2c39283d0c15a062c418e67bf9ab770c9715f7fbd1de3ffc43349764867dab53 Description: X Printing Extension (Xprint) client library Multi-Arch: same Description-md5: 606ddf2ba3808cac5f4c9f729b530e3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxp6-dbg Priority: extra Section: x11 Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxp Version: 1:1.0.2-1ubuntu1 Depends: libxp6 (= 1:1.0.2-1ubuntu1) Filename: pool/main/libx/libxp/libxp6-dbg_1.0.2-1ubuntu1_amd64.deb Size: 110286 MD5sum: 27cf003abf7e1361ca7c4565dcf331cc SHA1: e455070d6ff0188c64b36832e37716d4e4836fc5 SHA256: 294e10e32f2b79352a0fc0f535a3bc9e1222a1f0c15549bb8b8203deea3fd810 Description: X Printing Extension (Xprint) client library (unstripped) Multi-Arch: same Description-md5: ce28d085688ab1f89e9fa011f8e022fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpathselect-dev Priority: extra Section: libdevel Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Thomi Richards Architecture: amd64 Source: xpathselect Version: 1.4+14.04.20140303-0ubuntu1 Depends: libxpathselect1.4 (= 1.4+14.04.20140303-0ubuntu1) Filename: pool/main/x/xpathselect/libxpathselect-dev_1.4+14.04.20140303-0ubuntu1_amd64.deb Size: 2572 MD5sum: f2f0a2a25bff89f2634b1b2769bae6ac SHA1: 9b222195c1e2a8b518746702975d2938c96272a8 SHA256: e8f4afdd6dce32a9314935a642897e8b6330a42244b5864d0857d585be6b294a Description: Select objects in an object tree using XPath queries - development files Homepage: https://launchpad.net/xpathselect Description-md5: 815e92f3646fa2766193ad18e552cb92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpathselect1.4 Priority: extra Section: libs Installed-Size: 194 Maintainer: Ubuntu Developers Original-Maintainer: Thomi Richards Architecture: amd64 Source: xpathselect Version: 1.4+14.04.20140303-0ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/x/xpathselect/libxpathselect1.4_1.4+14.04.20140303-0ubuntu1_amd64.deb Size: 39828 MD5sum: 5d41681503e7499cf90c74ee171ba416 SHA1: 1ddfa374c2d0f7cc8d51b8321ac11048c45f8bf4 SHA256: 72a14d637eb978294f257eda08ec1c7be805b0404a05bb4953d6078f033190d2 Description: Select objects in an object tree using XPath queries. Multi-Arch: same Homepage: https://launchpad.net/xpathselect Description-md5: 36ed9422fa4d13560562462392df1033 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxplc0.3.13 Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: xplc Version: 0.3.13-4 Depends: libc6 (>= 2.3.4), libstdc++6 (>= 4.1.1) Filename: pool/main/x/xplc/libxplc0.3.13_0.3.13-4_amd64.deb Size: 19202 MD5sum: 8e71325e72039ea6452486072d308919 SHA1: 333a74f4ac1e6b683ce13b9813c7be39070dd4f3 SHA256: a661ab3a2ba1f53440d579cf732d53231a8456d834191af3c04de5140f441056 Description: Light weight component system Homepage: http://xplc.sourceforge.net/ Description-md5: 2f5572bbaa2108ce1214171d6bd7384c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxplc0.3.13-dev Priority: optional Section: libdevel Installed-Size: 302 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: xplc Version: 0.3.13-4 Depends: libxplc0.3.13 (= 0.3.13-4), uuidcdef Filename: pool/main/x/xplc/libxplc0.3.13-dev_0.3.13-4_amd64.deb Size: 41962 MD5sum: 4aae7c924c97ccfd9f027692cbfa0fb2 SHA1: 8460461789e1aff3fa8bc35bff1f63e33c20669b SHA256: c00f5f9c8c1488e8ff943a12fd9bcda36deaed5bfde1175b1f61bdfd9e806989 Description: Light weight component system (Development libraries and headers) Homepage: http://xplc.sourceforge.net/ Description-md5: 94124a60d1a69e9f53d0e1eb08b4dc3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpm-dev Priority: optional Section: libdevel Installed-Size: 246 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxpm Version: 1:3.5.10-1 Depends: libxpm4 (= 1:3.5.10-1), libx11-dev, x11proto-core-dev Filename: pool/main/libx/libxpm/libxpm-dev_3.5.10-1_amd64.deb Size: 94248 MD5sum: c98d1fc8a29625f2d9e45beff163cbd0 SHA1: a783ac3d3e31fba9929b7afae5bac5c9fe33da4f SHA256: 6a1d93e99ae9923afbf4029cc6ce042e97f25a1682b19e57132008de40034a7a Description: X11 pixmap library (development headers) Multi-Arch: same Description-md5: b312c51f80d757ef3149df231391ed7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpm4 Priority: optional Section: libs Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxpm Version: 1:3.5.10-1 Depends: libc6 (>= 2.14), libx11-6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxpm/libxpm4_3.5.10-1_amd64.deb Size: 38280 MD5sum: 4985dad7e98401b47c79b377333ae1c7 SHA1: fcf8e03f9f7c60067d5b8606e74887fa56318f56 SHA256: 96323b8e738bf2bedbf41a1196371a100ef2b7a7e388101fd905b4e5c829af00 Description: X11 pixmap library Multi-Arch: same Description-md5: 377e5bcce9d3e1f0d1534f5327b6bfee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxpm4-dbg Priority: extra Section: libdevel Installed-Size: 360 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxpm Version: 1:3.5.10-1 Depends: libxpm4 (= 1:3.5.10-1) Filename: pool/main/libx/libxpm/libxpm4-dbg_3.5.10-1_amd64.deb Size: 88762 MD5sum: 255f10f730439a84c8d1e72ac9af16c8 SHA1: 996e0336c33c10d557880877a306ac7a4bbb234d SHA256: 92cd761c37b555bf404298ceb5da38a0dce743fc3c0fd4777abdb8bb780337f4 Description: X11 pixmap library (debug package) Multi-Arch: same Description-md5: 74dfef3a403f1b24e18887954f8667fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpp2-java Priority: optional Section: libs Installed-Size: 665 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.1.10-7build1 Filename: pool/main/libx/libxpp2-java/libxpp2-java_2.1.10-7build1_all.deb Size: 162472 MD5sum: 8ef9a8948dcd03c88e54f749556c5481 SHA1: 94280624578c97c7088b481041276a5ee50ef9f2 SHA256: 0abf4cb3115eae77f8b3e954858c442d4131817cba448437a86175a6fa168caf Description: XML pull parser library for java V2 Homepage: http://www.extreme.indiana.edu/xgws/xsoap/xpp/xpp2/ Description-md5: 2e14601e7182b06d12172f0fa1c8fc30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpp3-java Priority: optional Section: libs Installed-Size: 765 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.4c-2build1 Filename: pool/main/libx/libxpp3-java/libxpp3-java_1.1.4c-2build1_all.deb Size: 363764 MD5sum: 101920d82e72eb3ef0af371aaa8b8695 SHA1: 4c5f4e1fc4f67ec385efd667a615190385982af4 SHA256: fd4805d3546817ebcacae4860f796964a6354faf889109d8315d1b4314003045 Description: XML pull parser library for java Homepage: http://www.extreme.indiana.edu/xgws/xsoap/xpp Description-md5: 801562e3f23d0c7dbf59addfcf3880a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrandr-dev Priority: optional Section: libdevel Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxrandr Version: 2:1.4.2-1 Depends: libxrandr2 (= 2:1.4.2-1), libx11-dev, libxext-dev, x11proto-randr-dev (>= 1.4), libxrender-dev Filename: pool/main/libx/libxrandr/libxrandr-dev_1.4.2-1_amd64.deb Size: 22622 MD5sum: a8e5815dfde6df87cb21e6034b367f85 SHA1: 6f5d2516f4324001bda8311ac75d3b02247ccbc9 SHA256: a1de13a82ec6470b33f214ebf1a65b0487239d73460a2545ee3dfcb360d89968 Description: X11 RandR extension library (development headers) Multi-Arch: same Description-md5: 444725c9e942434744988c5291f2f2f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrandr-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxrandr-dev Filename: pool/main/x/xorg-lts-transitional/libxrandr-dev-lts-quantal_5_amd64.deb Size: 1544 MD5sum: 349904fc056beea36e22ceed59df150c SHA1: fd28aba2c15fe2ba976205224f4f9c508b0dd9a5 SHA256: e9a8b49b538302ac0580e26b6d2cb01711d98191ca019d68059476d17d838ee9 Description: Transitional package for libxrandr-dev Multi-Arch: same Description-md5: ac32569dec6686dfd236cb973866ed4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrandr-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxrandr-dev Filename: pool/main/x/xorg-lts-transitional/libxrandr-dev-lts-raring_5_amd64.deb Size: 1544 MD5sum: cd07ba1163187a71085ba00163d6140b SHA1: 73a5aed4a8653053107c7988a696634d816b5cad SHA256: 8bbdd20e5b95101f7aa2bae0d655c996c24814be0b27e2988905d64faaf4b06f Description: Transitional package for libxrandr-dev Multi-Arch: same Description-md5: ac32569dec6686dfd236cb973866ed4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrandr-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: libxrandr-dev Filename: pool/main/x/xorg-lts-transitional/libxrandr-dev-lts-saucy_5_amd64.deb Size: 1544 MD5sum: c902eab04fc288bf3ce1439e9f9af948 SHA1: d2e6d07b3c0e811c83f1a3fe5c4a4175e10fcd4f SHA256: 0842fa05a984fc4dc5d7d5b0e9ad3c6a5f1a363c7c45f2d96171281f0f7099bf Description: Transitional package for libxrandr-dev Multi-Arch: same Description-md5: ac32569dec6686dfd236cb973866ed4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrandr2 Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxrandr Version: 2:1.4.2-1 Depends: libc6 (>= 2.14), libx11-6 (>= 2:1.6.0), libxext6, libxrender1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxrandr/libxrandr2_1.4.2-1_amd64.deb Size: 16596 MD5sum: 61cf4dd4004d8d5bf293fa86dbcf09b7 SHA1: 22b4006c909653f2cc550cdde0a2912886568203 SHA256: 2cd9f0d190a0c180778e2ab5873eb526d4ffe3838f21435fab2a8f28dd3bc502 Description: X11 RandR extension library Multi-Arch: same Description-md5: 4f5e90c11ffce760113c5e601f3f4449 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxrandr2-dbg Priority: extra Section: libdevel Installed-Size: 362 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxrandr Version: 2:1.4.2-1 Depends: libxrandr2 (= 2:1.4.2-1) Filename: pool/main/libx/libxrandr/libxrandr2-dbg_1.4.2-1_amd64.deb Size: 47928 MD5sum: fb9d60aa148062623872549c80694a0d SHA1: 677ba6bba9ce3983aaf3b7897ea4a0f5a9ae21de SHA256: 97e49f50ac67fbf0c0dae070ae3ee0dbaa8257a6afb90b474e69f40b2eaffc07 Description: X11 RandR extension library (debug package) Multi-Arch: same Description-md5: e0f7c9763ea9b670967b0e6ed35acd8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrender-dev Priority: optional Section: libdevel Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxrender Version: 1:0.9.8-1 Depends: libxrender1 (= 1:0.9.8-1), libx11-dev (>= 2:1.0.0), x11proto-render-dev, x11proto-core-dev Filename: pool/main/libx/libxrender/libxrender-dev_0.9.8-1_amd64.deb Size: 28468 MD5sum: 270d501661e7efb3f40f139405b2b16d SHA1: 437ae16d8ff7de55613eab47d35480fd8998a53a SHA256: 985b57b83b6bf228114fcdc3f25a1ea0a584b19b07bfee4169250f091004449b Description: X Rendering Extension client library (development files) Multi-Arch: same Description-md5: 90cef1620b30f07a5c21955d91855734 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxrender1 Priority: optional Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxrender Version: 1:0.9.8-1 Depends: libc6 (>= 2.14), libx11-6 (>= 2:1.4.99.1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxrender/libxrender1_0.9.8-1_amd64.deb Size: 20874 MD5sum: cef919d191617ff489c6e823b1543a20 SHA1: 24eb7cbe4dbe2d15c8a2dbdac178fe5b5e0a306d SHA256: 9cdbecfd718e675b4befff88204bff72660418e6ef3890e44f280af524afc586 Description: X Rendering Extension client library Multi-Arch: same Description-md5: 1529276fe319e97fa1c4f85128ed50b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxrender1-dbg Priority: extra Section: libdevel Installed-Size: 449 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxrender Version: 1:0.9.8-1 Depends: libxrender1 (= 1:0.9.8-1) Filename: pool/main/libx/libxrender/libxrender1-dbg_0.9.8-1_amd64.deb Size: 132378 MD5sum: eb63c659d3683231c087c3237fd89cee SHA1: ef635a7c3b123437f84ae2a6903f1d1ec0054dd5 SHA256: 2ce470ccc6ff4302147bb66f9e018e022b4b7f3c0dc5e640acfcf262b9cc90fe Description: X Rendering Extension client library (unstripped) Multi-Arch: same Description-md5: 826b72926150a03d65486e6527811ff8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxres-dev Priority: optional Section: libdevel Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxres Version: 2:1.0.7-1 Depends: libxres1 (= 2:1.0.7-1), libx11-dev, libxext-dev, x11proto-resource-dev Conflicts: x11proto-resource-dev (<< 1.0+cvs.20050712-1) Filename: pool/main/libx/libxres/libxres-dev_1.0.7-1_amd64.deb Size: 6974 MD5sum: 7d0ce1a6bdc2deef50c502af19515270 SHA1: 8c2045e86df73fb4eb89e3d05947a9ebe9247011 SHA256: 1da2e89cd53bc9d7332e2e6e38a3204335e9bcd14b2d703553750a7a340499cc Description: X11 Resource extension library (development headers) Description-md5: 70ec3c2d202b5b75e237d25e6d833401 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxres1 Priority: optional Section: libs Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxres Version: 2:1.0.7-1 Depends: libc6 (>= 2.2.5), libx11-6 (>= 2:1.6.0), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxres/libxres1_1.0.7-1_amd64.deb Size: 7154 MD5sum: b0e2db970604f4e2c4ca2951b0849420 SHA1: bd5f9acbf1d74870a9b623cfe3f5975f78cbac37 SHA256: 935b481b4bf17fbbbc2f9611f88f3c313bda7a38debfeecf232dab00e7e8cd20 Description: X11 Resource extension library Multi-Arch: same Description-md5: d9399de89592de94c1d00cfcb2c850b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxres1-dbg Priority: extra Section: libdevel Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxres Version: 2:1.0.7-1 Depends: libxres1 (= 2:1.0.7-1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxres/libxres1-dbg_1.0.7-1_amd64.deb Size: 19570 MD5sum: 78e8271bdf8628bfe971e686aab90448 SHA1: e5ac6a11f28834dcdfa501a03cd66b6b133425d2 SHA256: 4ea6d9a2b5ec7fcaacaabd4386674fccf8fa229fdd42bb46360df3a8995caea3 Description: X11 Resource extension library (debug package) Multi-Arch: same Description-md5: 65dd45290b60147f90a3ada760535036 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxshmfence-dev Priority: optional Section: libdevel Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxshmfence Version: 1.1-2 Depends: libxshmfence1 (= 1.1-2) Filename: pool/main/libx/libxshmfence/libxshmfence-dev_1.1-2_amd64.deb Size: 3452 MD5sum: 817ef5c24c20990b42ae47569106751d SHA1: 544b8fbf434424c93d4fff11da7e77b93d5ad68d SHA256: 5cbacc15860fd011377f694171efbba93f261b4c992a399fd5377c6a970b78a9 Description: X shared memory fences - development files Multi-Arch: same Description-md5: 5dc82f788312a94baef43ea5bb08e086 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxshmfence1 Priority: optional Section: libs Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxshmfence Version: 1.1-2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libx/libxshmfence/libxshmfence1_1.1-2_amd64.deb Size: 4644 MD5sum: 921fc248a972eb54e063759eaec9fe83 SHA1: 534e168805dab50204f42617014a36c77b201ba4 SHA256: e59a2d18d496bde2192ba83822531370943714ec980dec266077b2f4c813677b Description: X shared memory fences - shared library Multi-Arch: same Description-md5: 07283b1747ebbc3d201e91620e3eaf51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxslt1-dbg Priority: extra Section: libdevel Installed-Size: 588 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxslt Version: 1.1.28-2build1 Depends: libxslt1.1 (= 1.1.28-2build1) Filename: pool/main/libx/libxslt/libxslt1-dbg_1.1.28-2build1_amd64.deb Size: 383990 MD5sum: a19cec1c3d5937987bbf06e73f15e3e7 SHA1: 2fca7bfb7e84ad5f7d9f87c1697052dffcfda761 SHA256: a5791881b9de4893db9314ca982ef5f7d9e36ac7f5373e4b4a5ec7a7880daed3 Description: XSLT 1.0 processing library - debugging symbols Multi-Arch: same Homepage: http://xmlsoft.org/xslt/ Description-md5: 07d298272e95c3b2975184f478cc6006 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxslt1-dev Priority: optional Section: libdevel Installed-Size: 2393 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxslt Version: 1.1.28-2build1 Provides: libxslt-dev Depends: libxslt1.1 (= 1.1.28-2build1), libxml2-dev (>= 2.6.26) Filename: pool/main/libx/libxslt/libxslt1-dev_1.1.28-2build1_amd64.deb Size: 407188 MD5sum: 4cc7af423a9104e2607fa815dcff3475 SHA1: 52621e840684629f4cd1ab217dfad3a4054cabf7 SHA256: d544028d2405c025004c3049de62384bfc73f205b9f5918a9800c0f0920c9df6 Description: XSLT 1.0 processing library - development kit Multi-Arch: same Homepage: http://xmlsoft.org/xslt/ Description-md5: f51e27fa123abbb4132b189b0ee706c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxslt1.1 Priority: optional Section: libs Installed-Size: 486 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxslt Version: 1.1.28-2build1 Depends: libc6 (>= 2.17), libgcrypt11 (>= 1.4.5), libxml2 (>= 2.9.0) Pre-Depends: multiarch-support Filename: pool/main/libx/libxslt/libxslt1.1_1.1.28-2build1_amd64.deb Size: 144980 MD5sum: 8193d46e498f445991c78e9da9b238a6 SHA1: 3be02083899bd88be91238e495db2d62923173cb SHA256: fa2227c324e8782d19b9e2cb002adb4b99cdd4a4c9057b3086000e534c805228 Description: XSLT 1.0 processing library - runtime library Multi-Arch: same Homepage: http://xmlsoft.org/xslt/ Description-md5: a00a78b7d528f023d0297a93b37a3a68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, postgresql-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxss-dev Priority: optional Section: libdevel Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxss Version: 1:1.2.2-1 Replaces: x11proto-scrnsaver-dev (<< 1.2.0) Depends: libxss1 (= 1:1.2.2-1), libx11-dev, libxext-dev, x11proto-scrnsaver-dev (>= 1.2.0) Filename: pool/main/libx/libxss/libxss-dev_1.2.2-1_amd64.deb Size: 12716 MD5sum: ae71d2080c76d575e8841fe09fba29b7 SHA1: adb7a7f2152654ee2c771ce7c11cc0390b0cbd08 SHA256: 9b306f42341ed9150dcf2a5e037295c7cc32da4643615a88cc4ce257b332edfb Description: X11 Screen Saver extension library (development headers) Multi-Arch: same Description-md5: b80df2fec1242730f837d3f0bf416da8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxss1 Priority: optional Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxss Version: 1:1.2.2-1 Depends: libc6 (>= 2.2.5), libx11-6 (>= 2:1.4.99.1), libxext6, x11-common Pre-Depends: multiarch-support Filename: pool/main/libx/libxss/libxss1_1.2.2-1_amd64.deb Size: 8582 MD5sum: 220597ceedea46bfd994639c481b2304 SHA1: 26288ae32ad40ea48d511d8a061cd7c39e2d1f9e SHA256: 759a4a9e185c76172efc48184398d377279e870a57e1ae17fe97a21067dda479 Description: X11 Screen Saver extension library Multi-Arch: same Description-md5: b522226f612dbdd9af03e04a51353525 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxss1-dbg Priority: extra Section: libdevel Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxss Version: 1:1.2.2-1 Depends: x11-common, libxss1 (= 1:1.2.2-1) Filename: pool/main/libx/libxss/libxss1-dbg_1.2.2-1_amd64.deb Size: 23532 MD5sum: 394ffc932d85a57430824cc6edc782e5 SHA1: b77aabc0843e337becf8917e736aedcec196f6dd SHA256: f99957f3f9afee2ee4379c043ee09658262522af355d9ad14f756ef61758a8d9 Description: X11 Screen Saver extension library (debug package) Multi-Arch: same Description-md5: 70a855cf07e6a6c08067f1bc670258d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxt-dev Priority: optional Section: libdevel Installed-Size: 1160 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxt Version: 1:1.1.4-1 Depends: libxt6 (= 1:1.1.4-1), libx11-dev, x11proto-core-dev, libsm-dev Suggests: libxt-doc Filename: pool/main/libx/libxt/libxt-dev_1.1.4-1_amd64.deb Size: 454728 MD5sum: 3183b764afa202d34bec52bdb54223ec SHA1: 4109040e90ecda371eb8d9f01653720ec47c4cad SHA256: 265caafc46ade3c79fc41ecbcc687a197398d06ec9013afedd60b710fc0b1385 Description: X11 toolkit intrinsics library (development headers) Multi-Arch: same Description-md5: 4672adcea184032fd66fe6c6e5ca9f00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxt-doc Priority: optional Section: doc Installed-Size: 1726 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libxt Version: 1:1.1.4-1 Filename: pool/main/libx/libxt/libxt-doc_1.1.4-1_all.deb Size: 458660 MD5sum: 519b6fc025813a6bce133d41226a544c SHA1: 42b4321641affe6f359032b8681baa869e0f46ba SHA256: 660165e675c940e9186359dc2a5968f81782a72100f0ab957f1b980827f76952 Description: X11 toolkit intrinsics library (documentation) Multi-Arch: foreign Description-md5: 2c883d3c620cda68cbaae054db634f97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxt6 Priority: optional Section: libs Installed-Size: 458 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxt Version: 1:1.1.4-1 Depends: libc6 (>= 2.14), libice6 (>= 1:1.0.0), libsm6, libx11-6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxt/libxt6_1.1.4-1_amd64.deb Size: 184546 MD5sum: 17814fa1e0460aa68a1cedc04ad0fc82 SHA1: f2b5ddbd50078af9a1811e5e049aefe308dad9f6 SHA256: b47423a000fb23cd1fba00dc8545e7f8929934ee95e235b37f6409ccf3a2b3b7 Description: X11 toolkit intrinsics library Multi-Arch: same Description-md5: c3abc4b8f3ebe1d7b7494d4013fd7976 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxt6-dbg Priority: extra Section: libdevel Installed-Size: 684 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxt Version: 1:1.1.4-1 Depends: libxt6 (= 1:1.1.4-1) Filename: pool/main/libx/libxt/libxt6-dbg_1.1.4-1_amd64.deb Size: 595974 MD5sum: e0b63d111430e0a4962bb6d8026db105 SHA1: 249301aff59a7c50a673778e4b9894d173056b03 SHA256: 8a1cda93e232bdbce12253197f9222098fcc49fc0a040b66a80ff437ad03911b Description: X11 toolkit intrinsics library (debug package) Multi-Arch: same Description-md5: 6f1684f08fb3fbea27569764cab49561 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxtables10 Priority: standard Section: net Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Laurence J. Lane Architecture: amd64 Source: iptables Version: 1.4.21-1ubuntu1 Replaces: iptables (<< 1.4.16.3-3) Depends: libc6 (>= 2.14) Breaks: iptables (<< 1.4.16.3-3) Filename: pool/main/i/iptables/libxtables10_1.4.21-1ubuntu1_amd64.deb Size: 25922 MD5sum: 5947c0c711d7416fa0031f3a26834f6d SHA1: 7d1efe63d6e5f60135bc242d2d3b149f440114cd SHA256: 5af94dbfbf9d040c3193f31fff178b4615f68915e2ae6fe8725af05bbb58c433 Description: netfilter xtables library Homepage: http://www.netfilter.org/ Description-md5: a294431fa8c70074f80f44b808832e00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxtst-dev Priority: optional Section: libdevel Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxtst Version: 2:1.2.2-1 Replaces: x11proto-record-dev (<< 1.13.99.1), x11proto-xext-dev (<< 7.0.99.3) Depends: libxtst6 (= 2:1.2.2-1), libx11-dev, libxext-dev, libxi-dev, x11proto-xext-dev (>= 7.0.99.3), x11proto-record-dev (>= 1.13.99.1) Filename: pool/main/libx/libxtst/libxtst-dev_1.2.2-1_amd64.deb Size: 16996 MD5sum: d569ce1489bdca5f7b507e4958a681ba SHA1: fc75b0b839fa16414077e227a14afa15dd010ca6 SHA256: da6d7d93de4144186ef91c2f7399424df309311f1337b6501ad0acdcec3c57db Description: X11 Record extension library (development headers) Multi-Arch: same Description-md5: ae1bea16337ee830ba8837b716b07dc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxtst-doc Priority: optional Section: doc Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libxtst Version: 2:1.2.2-1 Replaces: libxtst-dev (<< 2:1.2.1) Breaks: libxtst-dev (<< 2:1.2.1) Filename: pool/main/libx/libxtst/libxtst-doc_1.2.2-1_all.deb Size: 57770 MD5sum: a39d3af4511c10818aa605e749c47094 SHA1: 6b2ff74d30617c125cd992f70c9a17479f24b4a2 SHA256: d3c59e58e4c15f299aed5d25a21524fde868a617624d984d4cd49ccc71bea9c8 Description: X11 Record extension library (documentation) Multi-Arch: foreign Description-md5: b97f1bef51c3722fd297b447a2775ae6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxtst6 Priority: optional Section: libs Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxtst Version: 2:1.2.2-1 Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.4.99.1), libxext6, x11-common Pre-Depends: multiarch-support Filename: pool/main/libx/libxtst/libxtst6_1.2.2-1_amd64.deb Size: 14086 MD5sum: 2594435dcd76d6eec2ff3fb68a3d4e9d SHA1: e72c66881721cb8ed08046f5e859242e2accdceb SHA256: 00410a73214c7b8a92c28731404c6e3a95d0dca08c142ec0bf6a0f9c15591aad Description: X11 Testing -- Record extension library Multi-Arch: same Description-md5: a21047d5f3eab970798b4c22c0163132 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxtst6-dbg Priority: extra Section: libdevel Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxtst Version: 2:1.2.2-1 Depends: x11-common, libxtst6 (= 2:1.2.2-1) Filename: pool/main/libx/libxtst/libxtst6-dbg_1.2.2-1_amd64.deb Size: 45118 MD5sum: 85ba9e813848b0bfb5bece0541a719a2 SHA1: dd6f47f81633fe6cfbe90043149713444a2c6f2b SHA256: 7fd7860f9b6b96697de1956d8648a66efb4ef6c2a5df69a223fb789bf6fc8816 Description: X11 Record extension library (debug package) Multi-Arch: same Description-md5: a94f094d9401e079de1a5be3957d9f64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxv-dev Priority: optional Section: libdevel Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxv Version: 2:1.0.10-1 Replaces: x11proto-video-dev (<< 2.2+cvs.20050712-1) Depends: libxv1 (= 2:1.0.10-1), libx11-dev, libxext-dev, x11proto-video-dev Conflicts: x11proto-video-dev (<< 2.2+cvs.20050712-1) Filename: pool/main/libx/libxv/libxv-dev_1.0.10-1_amd64.deb Size: 32382 MD5sum: 813142fc5aa620053330af7ed4e2358c SHA1: 05b79b8b84ac9b9cce39645c0e1e9a48ca3abe9c SHA256: 6ddecbb5cdb4d52abab3719342c948dbf580c105220f6ca9c30447f4f45315e4 Description: X11 Video extension library (development headers) Multi-Arch: same Description-md5: 4a8b09db5604319bdef123b54c9be53f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxv1 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxv Version: 2:1.0.10-1 Depends: libc6 (>= 2.14), libx11-6 (>= 2:1.6.0), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxv/libxv1_1.0.10-1_amd64.deb Size: 10346 MD5sum: 69d7d99c89db7d5caa67d2c09263360a SHA1: 73c6a9aaf30922dfffe3d05eca66b3b7a1f95368 SHA256: 278e3b1d0a2e4c412e7c9db2596a8ebb159c1bbde1fbd289d9e40252765090f9 Description: X11 Video extension library Multi-Arch: same Description-md5: cbda0d10d66b049955c1a3034acbf025 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxv1-dbg Priority: extra Section: libdevel Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxv Version: 2:1.0.10-1 Depends: libxv1 (= 2:1.0.10-1) Filename: pool/main/libx/libxv/libxv1-dbg_1.0.10-1_amd64.deb Size: 26338 MD5sum: 73fe02d61351a4a0ef8745491ba2d43c SHA1: c2b393e543e71d5a24abae29581a779b7226bbf2 SHA256: a563372d8c270ae0871ed7fa220e8714068903636b5c6d1c572d8b294eaaa34d Description: X11 Video extension library (debug package) Multi-Arch: same Description-md5: 8922040df70061a4d2161ad4dfa8c8e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxvmc-dev Priority: optional Section: libdevel Installed-Size: 103 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxvmc Version: 2:1.0.8-1ubuntu1 Replaces: x11proto-video-dev (<< 2.2+cvs.20050712-1) Depends: libxvmc1 (= 2:1.0.8-1ubuntu1), libx11-dev (>= 2:1.0.0-1), libxext-dev (>= 1:1.0.0-2), x11proto-video-dev, libxv-dev Conflicts: x11proto-video-dev (<< 2.2+cvs.20050712-1) Filename: pool/main/libx/libxvmc/libxvmc-dev_1.0.8-1ubuntu1_amd64.deb Size: 23488 MD5sum: 8b623c97e15145741296ae01cfee5ed7 SHA1: 26956576ebaa67183134a22ac88a9852f0672beb SHA256: 6f4a0aa5c8397aa4f9eb8045750a7582892006d43338a60a8dcce372d1aa76f7 Description: X11 Video extension library (development headers) Multi-Arch: same Description-md5: d277adb1bcda026e26e3a11d72c9245d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxvmc1 Priority: optional Section: libs Installed-Size: 73 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxvmc Version: 2:1.0.8-1ubuntu1 Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.6.0), libxext6, x11-common Pre-Depends: multiarch-support Filename: pool/main/libx/libxvmc/libxvmc1_1.0.8-1ubuntu1_amd64.deb Size: 15576 MD5sum: 37c5cad78d6c794f1471ef14915ac3ee SHA1: 5523a4d1bc6a3c1e61ff37998e4bcd19049c9e60 SHA256: c58bc0ed0530e61f4f6338131feba7b5d501ce51c9a967f88500aff506880f72 Description: X11 Video extension library Multi-Arch: same Description-md5: 7746d5687dd79b2189f90e7206d6db90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxvmc1-dbg Priority: extra Section: libdevel Installed-Size: 150 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxvmc Version: 2:1.0.8-1ubuntu1 Depends: x11-common, libxvmc1 (= 2:1.0.8-1ubuntu1) Filename: pool/main/libx/libxvmc/libxvmc1-dbg_1.0.8-1ubuntu1_amd64.deb Size: 41580 MD5sum: ed89802904231bcb0e69238a15738c11 SHA1: 361df1c48ac4056c9271b022f1b87b3848d702ad SHA256: 42b860df5cea7c3f70e4cc074fca7a323710a28ad4c1574240b30033294d53cf Description: X11 Video extension library (debug package) Description-md5: a144654b529015153d66ee0bc51fe57f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxxf86dga-dev Priority: optional Section: libdevel Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxxf86dga Version: 2:1.1.4-1 Replaces: x11proto-xf86dga-dev (<< 2.0.99.1) Depends: libxxf86dga1 (= 2:1.1.4-1), libx11-dev, x11proto-xf86dga-dev (>= 2.0.99.1) Filename: pool/main/libx/libxxf86dga/libxxf86dga-dev_1.1.4-1_amd64.deb Size: 17574 MD5sum: ac067a14dff747000d15895e879c7f25 SHA1: 11bb189366e40cdf699b651f4294744b083333cb SHA256: f0d361fac7da50e61b328568cbdb452570b795b2ba7863eb9a6070df50490387 Description: X11 Direct Graphics Access extension library (development headers) Multi-Arch: same Description-md5: e02dc131e7ff39b6aafdad14aa6d7780 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxxf86dga1 Priority: optional Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxxf86dga Version: 2:1.1.4-1 Depends: libc6 (>= 2.3.4), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxxf86dga/libxxf86dga1_1.1.4-1_amd64.deb Size: 13706 MD5sum: 8ebd7f1231e2b15912cf0eae4f42d793 SHA1: 98da972af8ac84d13bf546c24bbe3966352aeb91 SHA256: 1561015c14baf4a8c81feb8331ad8a4b2f1060d9bbd22484b95c9331aa388738 Description: X11 Direct Graphics Access extension library Multi-Arch: same Description-md5: 3b4c06b89aa50ec8ff9dfdeca065cd4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxxf86dga1-dbg Priority: extra Section: libdevel Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxxf86dga Version: 2:1.1.4-1 Depends: libxxf86dga1 (= 2:1.1.4-1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxxf86dga/libxxf86dga1-dbg_1.1.4-1_amd64.deb Size: 48116 MD5sum: 6609a63fceeec05bc48474c1dcb9f824 SHA1: 4beff09e78c96301bd62664acc400478a839fb61 SHA256: f06a7e2eaa9814d60d510180d081b3c646f8a161827288c7147462a74b1bfe6d Description: X11 Direct Graphics Access extension library (debug package) Multi-Arch: same Description-md5: c3ae464978269f65057391632499fe73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxxf86vm-dev Priority: optional Section: libdevel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxxf86vm Version: 1:1.1.3-1 Replaces: x11proto-xf86vidmode-dev (<< 2.2.99.1) Depends: libxxf86vm1 (= 1:1.1.3-1), libx11-dev, x11proto-xf86vidmode-dev (>= 2.2.99.1) Filename: pool/main/libx/libxxf86vm/libxxf86vm-dev_1.1.3-1_amd64.deb Size: 14638 MD5sum: 9a65228bbcf4277b418245d0591c07a2 SHA1: 162bf6fe7b724b4ba568e7b13f53f552c66dc498 SHA256: 975fbf89fe1d8f9acff742e4b0a8dd3f3d7d2f6ee4686719815e9173c40e6b9b Description: X11 XFree86 video mode extension library (development headers) Multi-Arch: same Description-md5: f248dc7c5a7842ef87d8528ab4f9bb7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxxf86vm1 Priority: optional Section: libs Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxxf86vm Version: 1:1.1.3-1 Depends: libc6 (>= 2.2.5), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxxf86vm/libxxf86vm1_1.1.3-1_amd64.deb Size: 11692 MD5sum: b61960ea6bd4f73ff903f63235b35c25 SHA1: 2ed30c86eb51fdd907640fabc224a332a97046eb SHA256: f54f9def9a439ddfeba27e8744a79ae50067143d449c457e060288cb4a7b3466 Description: X11 XFree86 video mode extension library Multi-Arch: same Description-md5: b174fdb3bc0f1361c3d5865a48ffdd70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxxf86vm1-dbg Priority: extra Section: libdevel Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: libxxf86vm Version: 1:1.1.3-1 Depends: libxxf86vm1 (= 1:1.1.3-1) Filename: pool/main/libx/libxxf86vm/libxxf86vm1-dbg_1.1.3-1_amd64.deb Size: 29836 MD5sum: 74b76fb2abcbfb96aba7e02a6ec5ea6d SHA1: 34fc4709873e93f1374b8f1faf5640f019d41407 SHA256: c46c93d4c3e6af4b7b45738561a3cef628e543ef03d6a6db4e6887a2857357b5 Description: X11 XFree86 video mode extension library (debug package) Multi-Arch: same Description-md5: c96802621cfbd8042ea5b726670991cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxz-java Priority: optional Section: java Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xz-java Version: 1.4-1 Filename: pool/main/x/xz-java/libxz-java_1.4-1_all.deb Size: 123748 MD5sum: f6174f4590f99c097d15084b5b9f04bc SHA1: 36dd995105f9f37f7f44ed875ed9c83a0f6ebc5e SHA256: aab069ecf7532a2945e1e095dd66065585ad2e5e914cdce3cfa57813a99d6999 Description: Java library with a complete implementation of XZ data compression Homepage: http://tukaani.org/xz/java.html Description-md5: ede81e573606bf52e463a7f6631c6909 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxz-java-doc Priority: optional Section: doc Installed-Size: 828 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xz-java Version: 1.4-1 Suggests: default-jdk-doc Filename: pool/main/x/xz-java/libxz-java-doc_1.4-1_all.deb Size: 85768 MD5sum: b42cd0c51293ae9e295b5b2ca3398695 SHA1: 0337a8afc1f51c252e608e5be1b99a17b8acfd98 SHA256: 6d9544bcc2befed3710fdc29a93d09fe5199c12a451dc13c8cb790114307a33e Description: Documentation for libxz-java Homepage: http://tukaani.org/xz/java.html Description-md5: 35f44d443155aa546065cccedb197eca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyajl-dev Priority: extra Section: libdevel Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: John Stamp Architecture: amd64 Source: yajl Version: 2.0.4-4 Depends: libyajl2 (= 2.0.4-4) Filename: pool/main/y/yajl/libyajl-dev_2.0.4-4_amd64.deb Size: 28008 MD5sum: bdc7451104765824357e50a5dada7382 SHA1: 4cc1123f68e2f82dcd44a3547cac3a2a24c53aa0 SHA256: 523b8edc7135f19c10dbc68b219f40a00bf8b667beeafdfb7eba5fc062d1993b Description: Yet Another JSON Library - development files Homepage: http://lloyd.github.com/yajl/ Description-md5: 2cfee6b229bf6903e3924aa0d5cbc263 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyajl-doc Priority: extra Section: doc Installed-Size: 413 Maintainer: Ubuntu Developers Original-Maintainer: John Stamp Architecture: all Source: yajl Version: 2.0.4-4 Filename: pool/main/y/yajl/libyajl-doc_2.0.4-4_all.deb Size: 72314 MD5sum: a11d4270d075e98725e7572f76513960 SHA1: 068d7b24a25a123993c398088e444fff82a7275f SHA256: 4344afa255f601a1ab5f3fec62b73b286a26969f3f1250020524cf763ff99a2e Description: Yet Another JSON Library - library documentation Homepage: http://lloyd.github.com/yajl/ Description-md5: d8f6d590b0bed9fd2a2b91f8f93166d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyajl2 Priority: extra Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: John Stamp Architecture: amd64 Source: yajl Version: 2.0.4-4 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/y/yajl/libyajl2_2.0.4-4_amd64.deb Size: 20834 MD5sum: d7241d878ea65cbed080196411ec92c2 SHA1: 8a7d1e3a0f79bc6663180e6113b1e5f5a32b6666 SHA256: 06ea0df2fb11feb21bc93866d9c339b58ce0dd3988ddb1202b502df2ac314753 Description: Yet Another JSON Library Multi-Arch: same Homepage: http://lloyd.github.com/yajl/ Description-md5: d040c8eddc66c15eddb5e7a364fc9e23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: libyajl2-dbg Priority: extra Section: debug Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: John Stamp Architecture: amd64 Source: yajl Version: 2.0.4-4 Depends: libyajl2 (= 2.0.4-4) Filename: pool/main/y/yajl/libyajl2-dbg_2.0.4-4_amd64.deb Size: 33436 MD5sum: 1674f2851941e655329732913a202e4f SHA1: 8314846db971945af117ecf0b8def51f5f7dffee SHA256: fd27e8e1ba618502575102b728b241fe1e9895f8243de977e483501bd13b7b05 Description: Yet Another JSON Library - debugging symbols Multi-Arch: same Homepage: http://lloyd.github.com/yajl/ Description-md5: bb537ee146af334919797768cbfd877e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyaml-0-2 Priority: optional Section: libs Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Anders Kaseorg Architecture: amd64 Source: libyaml Version: 0.1.4-3ubuntu3 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/liby/libyaml/libyaml-0-2_0.1.4-3ubuntu3_amd64.deb Size: 48244 MD5sum: e2849c121adaac85bb1650d406d98a1b SHA1: cc65ee387a96206b698eee6bbbe5adf658791c01 SHA256: 6bb7d06f147c6798c0e6339d851d729cd7baa8cd549cb6b19c5a1adcb0df8cab Description: Fast YAML 1.1 parser and emitter library Multi-Arch: same Homepage: http://pyyaml.org/wiki/LibYAML Description-md5: dc7536751a3eb6ce248dda2ad4cfcca2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-font-meta Package: libyaml-0-2-dbg Priority: extra Section: debug Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: Anders Kaseorg Architecture: amd64 Source: libyaml Version: 0.1.4-3ubuntu3 Depends: libyaml-0-2 (= 0.1.4-3ubuntu3) Filename: pool/main/liby/libyaml/libyaml-0-2-dbg_0.1.4-3ubuntu3_amd64.deb Size: 95530 MD5sum: 2902b15e04372c74f0662f1b587b74f9 SHA1: ab2c0726938cd4cb228b86d1a9ecade69ce11075 SHA256: a7fff9d89bbfc3c6a68b0c22aac17caaa0c671c73cdca9bf857e29570c23a0c7 Description: Fast YAML 1.1 parser and emitter library (debugging symbols) Multi-Arch: same Homepage: http://pyyaml.org/wiki/LibYAML Description-md5: 767682fbb1951cdeb7f4c5cb551964c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyaml-dev Priority: extra Section: libdevel Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Anders Kaseorg Architecture: amd64 Source: libyaml Version: 0.1.4-3ubuntu3 Depends: libyaml-0-2 (= 0.1.4-3ubuntu3) Filename: pool/main/liby/libyaml/libyaml-dev_0.1.4-3ubuntu3_amd64.deb Size: 55968 MD5sum: 0c398189456aed74cab30b05dfb6f65e SHA1: ceafe616ba009d47b8bbd0439e0e16fd134314e5 SHA256: 935d74988276258c9fe9a747f0caac79fdda08ef339d06d2ceefee82c212ab3b Description: Fast YAML 1.1 parser and emitter library (development) Multi-Arch: same Homepage: http://pyyaml.org/wiki/LibYAML Description-md5: 6a835b3e1ea55d4191038017f1855f58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyaml-libyaml-perl Priority: optional Section: perl Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: amd64 Version: 0.41-5 Depends: perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.14) Filename: pool/main/liby/libyaml-libyaml-perl/libyaml-libyaml-perl_0.41-5_amd64.deb Size: 63842 MD5sum: 29ea026fd90b3f34784ab91fd8580f56 SHA1: aa4f2cfe08692dd73ffe15936b87b2e57a57ae1c SHA256: 03a0d81e25ad14d32a0c0bfa1b887ebd4d6db319d02db904ac824ca1db435a8f Description: Perl interface to libyaml, a YAML implementation Homepage: https://metacpan.org/release/YAML-LibYAML Description-md5: 8fa3125a297cb8c4eb3becc6b15ffd1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyaml-perl Priority: optional Section: perl Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.84-1 Depends: perl Recommends: libyaml-libyaml-perl | libyaml-syck-perl Suggests: libyaml-shell-perl Filename: pool/main/liby/libyaml-perl/libyaml-perl_0.84-1_all.deb Size: 68298 MD5sum: 999c731de0525b7c9edd8b5c9d0e2465 SHA1: 17a64a49de84206be5d5612c0193ded7999c39b0 SHA256: bc57182b11e8ce9538687bbeddb6f721ff2ed44ba11252693df7580203ffa3dd Description: YAML Ain't Markup Language Homepage: http://search.cpan.org/dist/YAML/ Description-md5: 207c6e42686e3356a6c6e3a975e92075 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyaml-tiny-perl Priority: optional Section: perl Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.56-1 Depends: perl Filename: pool/main/liby/libyaml-tiny-perl/libyaml-tiny-perl_1.56-1_all.deb Size: 22958 MD5sum: 7dc8b7129caa87755e5e65c09c91259c SHA1: 6d7234411aa12f3fa47b4f1c813bd104e6bd5f31 SHA256: e3fe2f15738f376e7942f50a4f4098b526d1244eb75034610be9b881265ed11a Description: Perl module for reading and writing YAML files Homepage: https://metacpan.org/release/YAML-Tiny/ Description-md5: b00dcfa8db032a784560bd00a60df627 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: libyelp-dev Priority: optional Section: libdevel Installed-Size: 410 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: yelp Version: 3.10.2-0ubuntu1 Depends: libyelp0 (= 3.10.2-0ubuntu1), libgtk-3-dev, libwebkitgtk-3.0-dev, libxml2-dev (>= 2.6.5), libxslt1-dev (>= 1.1.4) Filename: pool/main/y/yelp/libyelp-dev_3.10.2-0ubuntu1_amd64.deb Size: 25864 MD5sum: b797c813fb9ec139addf92a69cc5cb3a SHA1: 2c6c68494e40c0757bdeb0c587fd25e1c7fd2abd SHA256: 569f2f7a50dca79e5753232489ba93e82f15fa2cb276729872b653855edf5efe Description: Library for the GNOME help browser (development) Homepage: https://wiki.gnome.org/Yelp Description-md5: 16dfe7c9b07fae30c7c33c3655d53161 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyelp0 Priority: optional Section: libs Installed-Size: 375 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: yelp Version: 3.10.2-0ubuntu1 Depends: libbz2-1.0, libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), liblzma5 (>= 5.1.1alpha+20120614), libsqlite3-0 (>= 3.5.9), libwebkitgtk-3.0-0 (>= 1.3.10), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25) Breaks: yelp (<< 3.2.0) Filename: pool/main/y/yelp/libyelp0_3.10.2-0ubuntu1_amd64.deb Size: 110294 MD5sum: 65ec61755c6c7037ce71386d1c4d5a7e SHA1: 839f63e550683df111b8427234bcd309305574b0 SHA256: a1a865767b249fe5da3183efe9fe5c26d4ef3199dea4fed684626e9ae30e069c Description: Library for the GNOME help browser Homepage: https://wiki.gnome.org/Yelp Description-md5: f5adafee47b3d10b994668590a31200f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libytnef0 Priority: extra Section: libs Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: libytnef Version: 1.5-6 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Filename: pool/main/liby/libytnef/libytnef0_1.5-6_amd64.deb Size: 18588 MD5sum: 42f7d617083797a82411cf59897c4872 SHA1: c7bbb754f203f8626bfaf06fe026eb1dad2b01b5 SHA256: 6338d7302fd1808b01d9334b93c285d1de5dbd3e6caccc32fcdf8bd3ee6944d9 Description: improved decoder for application/ms-tnef attachments Multi-Arch: same Homepage: http://sourceforge.net/projects/ytnef/ Description-md5: b0ad32a835b6d42cbad3e981be3d3de1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libytnef0-dev Priority: extra Section: libdevel Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: libytnef Version: 1.5-6 Provides: libytnef-dev Depends: libytnef0 (= 1.5-6) Filename: pool/main/liby/libytnef/libytnef0-dev_1.5-6_amd64.deb Size: 21868 MD5sum: 92c239f568d07d868af3d340ffdda519 SHA1: 726b73da38ac56b45acd51725e5323844e14d3b4 SHA256: f830c274ac3702469cd7bde6edc61acc1ba0419c367c9108dc53f5da08af5ebb Description: improved decoder for application/ms-tnef attachments Multi-Arch: same Homepage: http://sourceforge.net/projects/ytnef/ Description-md5: f90407c5eeae45c324c4529495392e13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-1.0-1 Priority: optional Section: libs Installed-Size: 186 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: amd64 Source: libzeitgeist Version: 0.3.18-1ubuntu2 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3) Recommends: zeitgeist | zeitgeist-core Filename: pool/main/libz/libzeitgeist/libzeitgeist-1.0-1_0.3.18-1ubuntu2_amd64.deb Size: 36298 MD5sum: 4481db8a622b57320fc481e76194e7dc SHA1: 44ebe8b2823f487bf4b03f0668773cffa986f19f SHA256: 967d80a035acc2ca3647ea6eda03592714f1029c4c3937060f92bcdd608cbdc2 Description: library to access Zeitgeist - shared library Homepage: https://launchpad.net/libzeitgeist Description-md5: 5f36f890b2fde009f3c657c743aacc4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libzeitgeist-1.0-1-dbg Priority: extra Section: debug Installed-Size: 76 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: amd64 Source: libzeitgeist Version: 0.3.18-1ubuntu2 Depends: libzeitgeist-1.0-1 (= 0.3.18-1ubuntu2) Filename: pool/main/libz/libzeitgeist/libzeitgeist-1.0-1-dbg_0.3.18-1ubuntu2_amd64.deb Size: 8508 MD5sum: f7148e8c8d21b7313a4234c66cbcbf40 SHA1: c09ff0b77a4a3deb6dad76dd2d4ec1145c67510f SHA256: f2661927e76be7f148ddabc246de256c26cbf403921ccb6c525f56a538f8e283 Description: library to access Zeitgeist - debugging symbols Homepage: https://launchpad.net/libzeitgeist Description-md5: fe23cb66d3ff2d9bf1f3dd68bab85e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-2.0-0 Priority: optional Section: utils Installed-Size: 442 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: amd64 Source: zeitgeist Version: 0.9.14-0ubuntu4 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9) Recommends: zeitgeist | zeitgeist-core Filename: pool/main/z/zeitgeist/libzeitgeist-2.0-0_0.9.14-0ubuntu4_amd64.deb Size: 110888 MD5sum: 7908a2925a44fe7bdbb70e571c48a66b SHA1: 2ddc2fc1940cc22395b4ba54be25dd822d352bd8 SHA256: 8672a23e3b8152c587160acdacfc2cde5c7d00aa44345a89e4b6faacddbf5347 Description: library to access Zeitgeist - shared library Multi-Arch: same Homepage: http://zeitgeist-project.com/ Description-md5: 5f36f890b2fde009f3c657c743aacc4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libzeitgeist-2.0-0-dbg Priority: extra Section: debug Installed-Size: 524 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: amd64 Source: zeitgeist Version: 0.9.14-0ubuntu4 Depends: libzeitgeist-2.0-0 (= 0.9.14-0ubuntu4) Filename: pool/main/z/zeitgeist/libzeitgeist-2.0-0-dbg_0.9.14-0ubuntu4_amd64.deb Size: 401346 MD5sum: 141583a0796ef19430a9056e10d32a06 SHA1: 558f8813e43768d5dae38f068f057475ca33210f SHA256: 65209b1beec6b87fde0cd3c801a071580bc142fd5fed12f71923c24e4c92dae0 Description: library to access Zeitgeist - debugging symbols Multi-Arch: same Homepage: http://zeitgeist-project.com/ Description-md5: fe23cb66d3ff2d9bf1f3dd68bab85e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-2.0-dev Priority: optional Section: libdevel Installed-Size: 363 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: amd64 Source: zeitgeist Version: 0.9.14-0ubuntu4 Depends: gir1.2-zeitgeist-2.0 (= 0.9.14-0ubuntu4), libglib2.0-dev (>= 2.26.0), libzeitgeist-2.0-0 (= 0.9.14-0ubuntu4) Suggests: libzeitgeist-doc Filename: pool/main/z/zeitgeist/libzeitgeist-2.0-dev_0.9.14-0ubuntu4_amd64.deb Size: 23420 MD5sum: 3f5a5be8672525ee3c0106df490941a7 SHA1: 7c18bd10fcf37bcf235182fedba686848716f789 SHA256: 2af53fa2c82f824ce8a84a4321207750e5d5015f3e326578f4557aa64744d65e Description: library to access Zeitgeist - development files Homepage: http://zeitgeist-project.com/ Description-md5: fd5d7b8d40b9c9f711482b8a95928b06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-2.0-doc Priority: optional Section: doc Installed-Size: 1004 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: all Source: zeitgeist Version: 0.9.14-0ubuntu4 Suggests: devhelp Filename: pool/main/z/zeitgeist/libzeitgeist-2.0-doc_0.9.14-0ubuntu4_all.deb Size: 60090 MD5sum: c18372cb418780a0f4e5e46f153dff32 SHA1: 84f0f146b58ffb58cade055d92f158e0526ae702 SHA256: 3a3673ed2691d70fc0e19767e791100ef1f069003d43b86d6a4e4feac46acbdc Description: library to access Zeitgeist - documentation Homepage: http://zeitgeist-project.com/ Description-md5: 6c5611aea56bd3880c45d1ce5940048a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-dev Priority: optional Section: libdevel Installed-Size: 184 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: amd64 Source: libzeitgeist Version: 0.3.18-1ubuntu2 Depends: libzeitgeist-1.0-1 (= 0.3.18-1ubuntu2), libglib2.0-dev (>= 2.24.0) Suggests: libzeitgeist-doc Filename: pool/main/libz/libzeitgeist/libzeitgeist-dev_0.3.18-1ubuntu2_amd64.deb Size: 17928 MD5sum: f92dbc85d35da6ed5fb818ade15edfc4 SHA1: 50b7d78cfb9914b048cd01a5a3b65a278a210fbd SHA256: ff3a722181fd32ff31a3e5c29480d6989cadafec372b88cf54f28b0e2428bfe8 Description: library to access Zeitgeist - development files Homepage: https://launchpad.net/libzeitgeist Description-md5: fd5d7b8d40b9c9f711482b8a95928b06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-doc Priority: optional Section: doc Installed-Size: 680 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: all Source: libzeitgeist Version: 0.3.18-1ubuntu2 Suggests: devhelp Filename: pool/main/libz/libzeitgeist/libzeitgeist-doc_0.3.18-1ubuntu2_all.deb Size: 48898 MD5sum: af414ecb9a692db94fe3e17073f156bb SHA1: 6fdb81eca371b3ca769a843d757cb3c9c96bcd1f SHA256: 09b7b1f79fff459509d6f5b8b6da23700c8bed13c05dbd50fb8288e893bfdab2 Description: library to access Zeitgeist - documentation Homepage: https://launchpad.net/libzeitgeist Description-md5: 6c5611aea56bd3880c45d1ce5940048a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzephyr-dev Priority: optional Section: libdevel Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Karl Ramm Architecture: amd64 Source: zephyr Version: 3.1.2-1 Depends: libzephyr4 (= 3.1.2-1) | libzephyr4-krb (= 3.1.2-1) | libzephyr4-krb5 (= 3.1.2-1) | libzephyr4-krb45 (= 3.1.2-1), libc6-dev Filename: pool/main/z/zephyr/libzephyr-dev_3.1.2-1_amd64.deb Size: 40188 MD5sum: 0d2d746d0bfe6d5e180955c19ce248c5 SHA1: 218efc47e13a136ecbcca18ec7dd1ef18f408a28 SHA256: 580a7ff0fd84772f898a7ac878f1a80e5756ff2a07aaf010380b276621c1b514 Description: Project Athena's notification service - development files Description-md5: f44dfde5a594186c509feb71aa97758a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzephyr4 Priority: optional Section: libs Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Karl Ramm Architecture: amd64 Source: zephyr Version: 3.1.2-1 Depends: libc6 (>= 2.15), libcomerr2 (>= 1.01) Pre-Depends: multiarch-support Conflicts: libzephyr4-krb, libzephyr4-krb45, libzephyr4-krb5 Filename: pool/main/z/zephyr/libzephyr4_3.1.2-1_amd64.deb Size: 31338 MD5sum: 3f9835416411ac2bab4c89f1df1e93ef SHA1: cfc82f70c0f83ed6add347fece2a49f5a2dbbfa2 SHA256: 29e399c53f48584a87a0022831ad242e31ef37730bdf9925f029785371e0df3c Description: Project Athena's notification service - non-Kerberos libraries Multi-Arch: same Description-md5: 27bb0be9ade76da1a83e09f9867be0a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libzip-dev Priority: optional Section: libdevel Installed-Size: 293 Maintainer: Ubuntu Developers Original-Maintainer: Fathi Boudra Architecture: amd64 Source: libzip Version: 0.10.1-1.2 Depends: libzip2 (= 0.10.1-1.2), zlib1g-dev Filename: pool/main/libz/libzip/libzip-dev_0.10.1-1.2_amd64.deb Size: 111924 MD5sum: 722a503ec2db264dc7ab9ce4e17ad2f8 SHA1: 4743576fd70ed38ad05f9a464d102525ba058dad SHA256: 883a67b1b818230947fba238bb821b4287c3d75ba90b97ee831a474325fd661c Description: library for reading, creating, and modifying zip archives (development) Homepage: http://www.nih.at/libzip/ Description-md5: e4cfaaaa641934e570f957640c60c8a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzip2 Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Fathi Boudra Architecture: amd64 Source: libzip Version: 0.10.1-1.2 Depends: libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Filename: pool/main/libz/libzip/libzip2_0.10.1-1.2_amd64.deb Size: 29012 MD5sum: 3d9fa9c0360e109904ed7b7c12837dc4 SHA1: e354ec0eecf62eee118939c36b91fd7784efff03 SHA256: 625b5dc57453b6c2750b9e496b0700be52a0f70329d278f097ddbd65d08b9011 Description: library for reading, creating, and modifying zip archives (runtime) Homepage: http://www.nih.at/libzip/ Description-md5: d9af13380c4a431ca858b410fc8c55c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libzzip-0-13 Priority: optional Section: libs Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Scott Howard Architecture: amd64 Source: zziplib Version: 0.13.62-2 Depends: libc6 (>= 2.14), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/z/zziplib/libzzip-0-13_0.13.62-2_amd64.deb Size: 25686 MD5sum: acd7198e4417753a1e5d63427c85a614 SHA1: fd5b03679e6e221c374c1325bce72b947fe10b09 SHA256: f829b99d96fbc135535b69d8494df7c32d877eae35b567757d64722e0f0117fa Description: library providing read access on ZIP-archives - library Multi-Arch: same Homepage: http://zziplib.sourceforge.net Description-md5: af2b6923fb71473fe9795bf123474a93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzzip-dev Priority: optional Section: libdevel Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Scott Howard Architecture: amd64 Source: zziplib Version: 0.13.62-2 Depends: libzzip-0-13 (= 0.13.62-2) Filename: pool/main/z/zziplib/libzzip-dev_0.13.62-2_amd64.deb Size: 80418 MD5sum: b1c0476b711dbadf42f613eff198cbd0 SHA1: 49b59b746658d03ce6ef24cbbf19dde0ba32aa01 SHA256: b0d6f4ca9db32bda6e66af836b43bf09d04ed1368dd219a38ff20c8faaa4ee45 Description: library providing read access on ZIP-archives - development Homepage: http://zziplib.sourceforge.net Description-md5: 9b4d9c54c5e7e6fd09cecb072283372f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: light-themes Priority: optional Section: gnome Installed-Size: 1377 Maintainer: Ubuntu Artwork Team Architecture: all Source: ubuntu-themes Version: 14.04+14.04.20140410-0ubuntu1 Depends: gtk2-engines-murrine (>= 0.90.3+git20100810), gtk3-engines-unico (>= 1.0.1-0ubuntu2), humanity-icon-theme, ubuntu-mono Filename: pool/main/u/ubuntu-themes/light-themes_14.04+14.04.20140410-0ubuntu1_all.deb Size: 155530 MD5sum: faa804d3fe38c76d9294ff8dfabb8e42 SHA1: e4b5aefd22b27b61bab86bd6284bf012e8e02cfa SHA256: 5d2ad8b86c1c52c0376b68a7829e28b1d80aec7c694bf1cf653a3b7389230e8d Description: Light Themes (Ambiance and Radiance) Homepage: https://launchpad.net/ubuntu-themes Description-md5: 66093fe5a19671849351e8d6fad66909 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: lightdm Priority: optional Section: x11 Installed-Size: 540 Maintainer: Robert Ancell Architecture: amd64 Version: 1.10.0-0ubuntu3 Provides: x-display-manager Depends: debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.14), libgcrypt11 (>= 1.4.5), libglib2.0-0 (>= 2.37.3), libpam0g (>= 0.99.7.1), libxcb1, libxdmcp6, libpam-runtime (>= 0.76-14), libpam-modules, adduser, libglib2.0-bin, dbus, plymouth (>= 0.8.8-0ubuntu6.1) Pre-Depends: dpkg (>= 1.15.7.2) Recommends: xserver-xorg, unity-greeter | lightdm-greeter | lightdm-kde-greeter Conflicts: liblightdm-gobject-0-0, liblightdm-qt-0-0 Filename: pool/main/l/lightdm/lightdm_1.10.0-0ubuntu3_amd64.deb Size: 100156 MD5sum: 09d52fc378245d4cb3e51dd4d51dec50 SHA1: 906e180f4d5388accb149d5cd930fef0f788ab82 SHA256: eba41cbaa934966dd43ff74ced04d2c21de88b3857556a2253820d2290f41a75 Description: Display Manager Homepage: https://launchpad.net/lightdm Description-md5: a04ec89b09d7becf8ba288295841fad0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop Package: lilo Priority: optional Section: admin Installed-Size: 676 Maintainer: Ubuntu Developers Original-Maintainer: Joachim Wiedorn Architecture: amd64 Version: 1:24.0-2 Depends: perl, libc6 (>= 2.7), libdevmapper1.02.1 (>= 2:1.02.20), debconf (>= 0.5) | debconf-2.0 Pre-Depends: dpkg (>= 1.15.7.2) Filename: pool/main/l/lilo/lilo_24.0-2_amd64.deb Size: 287038 MD5sum: 6b5b7e06c645513fbd16191e0b95b071 SHA1: ec2250bc1ee9ec0ea4e9a42622c9c50e06a446db SHA256: 5bb35568174dd58ee3dc50532c96d609017b54402386232ab7e9622ded8c974a Description: LInux LOader - the classic OS boot loader Homepage: http://lilo.alioth.debian.org/ Description-md5: f9d0ed2f370af215f0878b80d72d6394 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lilo-doc Priority: optional Section: doc Installed-Size: 573 Maintainer: Ubuntu Developers Original-Maintainer: Joachim Wiedorn Architecture: all Source: lilo Version: 1:24.0-2 Filename: pool/main/l/lilo/lilo-doc_24.0-2_all.deb Size: 264212 MD5sum: 3cdcb0cfb5892a8842ab464f9bc611c0 SHA1: c36056d58b14a8ee5533c19e6cb6f68fc18b7cf3 SHA256: 04e5fc5ac8c9c1140d6f0f8e76d1eb96e9811df53190eb7369c85eb2ac05c5e0 Description: LInux LOader - Documentation for the classic OS boot loader Homepage: http://lilo.alioth.debian.org/ Description-md5: caba27144f57ac86112861e9ba583e36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lintian Priority: optional Section: devel Installed-Size: 3198 Maintainer: Ubuntu Developers Original-Maintainer: Debian Lintian Maintainers Architecture: all Version: 2.5.22ubuntu1 Depends: binutils, bzip2, diffstat, file, gettext, hardening-includes, intltool-debian, libapt-pkg-perl, libarchive-zip-perl, libclass-accessor-perl, libclone-perl, libdigest-sha-perl, libdpkg-perl, libemail-valid-perl, libfile-basedir-perl, libipc-run-perl, liblist-moreutils-perl, libparse-debianchangelog-perl, libtext-levenshtein-perl, libtimedate-perl, liburi-perl, man-db, patchutils, perl, t1utils Recommends: libautodie-perl (>= 2.18), libperlio-gzip-perl Suggests: binutils-multiarch, dpkg-dev, libhtml-parser-perl, libtext-template-perl, libyaml-perl, xz-utils Filename: pool/main/l/lintian/lintian_2.5.22ubuntu1_all.deb Size: 552684 MD5sum: 72d50d0bb0c4cc1cc000ffd7bf65f3be SHA1: a8b288954334df3a812e88c28f2bcc21b4f59516 SHA256: 5c900502a15bf8bdd3c9512cb9ee9faae39aba694153b576583aa5858794b2b9 Description: Debian package checker Multi-Arch: foreign Description-md5: 4a295ed43917ad13b4ca23bd39814dba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: linux-base Priority: optional Section: kernel Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian Kernel Team Architecture: all Version: 3.5ubuntu4 Depends: libuuid-perl, debconf (>= 0.5) | debconf-2.0, util-linux (>= 2.16-1) | udev (<< 146-1) Filename: pool/main/l/linux-base/linux-base_3.5ubuntu4_all.deb Size: 21276 MD5sum: dcec2f52157302f0f21d33978c2100d5 SHA1: 848b048bcafd30bd1d51fa6624b0215470698704 SHA256: 4bfee84c6402dfc00874f626259e8fb894e36d6322072a72949034fe92beb948 Description: Linux image base package Multi-Arch: foreign Description-md5: 441643227abc8006d7ae05aa2312ff51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-cloud-tools-3.13.0-24 Priority: optional Section: devel Installed-Size: 186 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Depends: libc6 (>= 2.14), linux-cloud-tools-common Filename: pool/main/l/linux/linux-cloud-tools-3.13.0-24_3.13.0-24.46_amd64.deb Size: 33082 MD5sum: 96dd4b50e6a0924ba985eea8795857b2 SHA1: 9fbd97d64c24c94049d26ec04279d1825450f62e SHA256: b02602e39b72da85795252ed5b38fb61b74f289a806b15e5dbd023d86e0862c9 Description: Linux kernel version specific cloud tools for version 3.13.0-24 Description-md5: 04a86bf671913c9c9e01f3b4b5f34353 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-cloud-tools-3.13.0-24-generic Priority: optional Section: devel Installed-Size: 143 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Depends: linux-cloud-tools-3.13.0-24 Filename: pool/main/l/linux/linux-cloud-tools-3.13.0-24-generic_3.13.0-24.46_amd64.deb Size: 1782 MD5sum: 9cc8b42dcb788670332cd4d42a6ebaa6 SHA1: 0d08a41f9d7da798113e30f230c05519fe86d997 SHA256: a961e50416840a1df71a02da24ebe1e709a6b77090749c0fa393e0f0b4bf8153 Description: Linux kernel version specific cloud tools for version 3.13.0-24 Description-md5: 9ef7b1cc9a632ad6ef2aa43d957a2920 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-cloud-tools-3.13.0-24-lowlatency Priority: optional Section: devel Installed-Size: 143 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Depends: linux-cloud-tools-3.13.0-24 Filename: pool/main/l/linux/linux-cloud-tools-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb Size: 1788 MD5sum: d34fbd3773ece99d726eb93a9579a097 SHA1: b0bfccd868c21b9ef9b2139c9bc0c96109522f90 SHA256: 2ce75468d6f945861c4a669273d0cf74c7123e49405baf8308ce0fefa6a6c066 Description: Linux kernel version specific cloud tools for version 3.13.0-24 Description-md5: 9ef7b1cc9a632ad6ef2aa43d957a2920 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-cloud-tools-common Priority: optional Section: kernel Installed-Size: 168 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux Version: 3.13.0-24.46 Replaces: hv-kvp-daemon-init (<< 3.13), linux-tools-common (<< 3.13.0-8.28) Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Breaks: hv-kvp-daemon-init (<< 3.13), linux-tools-common (<< 3.13.0-8.28) Filename: pool/main/l/linux/linux-cloud-tools-common_3.13.0-24.46_all.deb Size: 26128 MD5sum: 76cbb2728c50ff534867c17a46e01eec SHA1: e275f5296a62e9fca38d689c998085fdcac82738 SHA256: cbec6aba2f18acbdd3a8bdefe5654f1ac2803bbd93f745e13329d025afeca6ef Description: Linux kernel version specific cloud tools for version 3.13.0 Multi-Arch: foreign Description-md5: 6ef597ed465f54308bcf7a3fe290492e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-cloud-tools-generic Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-cloud-tools Depends: linux-cloud-tools-3.13.0-24-generic Filename: pool/main/l/linux-meta/linux-cloud-tools-generic_3.13.0.24.28_amd64.deb Size: 2324 MD5sum: 7753a0619fca7170230bc1402117aea9 SHA1: 1ebd630bd4d2a72d6a95c5c625b4580208d62617 SHA256: 78318f882023775b1783ee09918d63da4f3645c6e5882294b55feefbbf9af8c9 Description: Generic Linux kernel cloud tools Description-md5: 5c22a6fda8e688ed1a83b6cd5236f5e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-cloud-tools-lowlatency Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-cloud-tools Depends: linux-cloud-tools-3.13.0-24-lowlatency Filename: pool/main/l/linux-meta/linux-cloud-tools-lowlatency_3.13.0.24.28_amd64.deb Size: 2338 MD5sum: d3b34a94a04040e9b3fd40f7840b6b4a SHA1: e1e53a3a0d3c3252cfb82fe07db06ec4aee2cbdc SHA256: 2ca9c615b4888752495d70b058ac3d7adc705b8f70f42e698e1fedeca0898c2f Description: lowlatency Linux kernel cloud tools Description-md5: 89afda7d1e45501227d8188a5d763dd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-cloud-tools-virtual Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-cloud-tools Depends: linux-cloud-tools-3.13.0-24-generic Filename: pool/main/l/linux-meta/linux-cloud-tools-virtual_3.13.0.24.28_amd64.deb Size: 2342 MD5sum: 16da23fca4475922e91b6fc19b5aa7eb SHA1: 8a125ae0a158fb1ada540f6beaeb856b49e33407 SHA256: e94336076ffae3bc6b6221fd769b6f9c5d79705e14080ffe794728846335b007 Description: This package will always depend on the latest minimal generic kernel cloud tools. Description-md5: a0a9ae40528a1e48da08b3165b3e353a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-crashdump Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: kdump-tools, grub-pc (>= 1.96+20090611-1ubuntu2) | grub-efi-ia32 | grub-efi-amd64 | grub (>= 0.97-29ubuntu24) Recommends: apport Suggests: crash Filename: pool/main/l/linux-meta/linux-crashdump_3.13.0.24.28_amd64.deb Size: 2574 MD5sum: 7d7ef1a9346439eb38392910b893c525 SHA1: 9a7e3b2f4f2d7ef240999eeb4258d47c31adf153 SHA256: 8389c6b226ff6363caafd45ebe29ab31241939f0a4f6a73574b17026a3c2cef4 Description: Linux kernel crashdump setup for the latest generic kernel Description-md5: 786b3d1e77e0097cb2c8f2ab16f83875 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-doc Priority: optional Section: doc Installed-Size: 29456 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux Version: 3.13.0-24.46 Replaces: linux-doc-3 Conflicts: linux-doc-3 Filename: pool/main/l/linux/linux-doc_3.13.0-24.46_all.deb Size: 7972144 MD5sum: e7632ba6473e4eaf9673f8b92294c4db SHA1: cdae85db68db5613cf7da3092d5e3744ba66aeed SHA256: 6cb77d5edd5ae8545101d803b741c85fa5f98cf8d0ce9be2e0e4a5d1f2bf8ad1 Description: Linux kernel specific documentation for version 3.13.0 Description-md5: 676d31818175c460b934e0c660fc0057 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-firmware Priority: optional Section: misc Installed-Size: 58462 Maintainer: Ubuntu Kernel Team Architecture: all Version: 1.127 Replaces: amd64-microcode, atmel-firmware, linux-restricted-common Provides: amd64-microcode, atmel-firmware Conflicts: amd64-microcode, atmel-firmware Filename: pool/main/l/linux-firmware/linux-firmware_1.127_all.deb Size: 18932968 MD5sum: 109e4167e660e3dbd2d8992e76160a02 SHA1: b81aee73808987d731a27a475bfca2b32be165f8 SHA256: 1e2a02324fc7e7c6fe59fcb47a946d718042367832e83aa0c81e76a3bdc0ed7a Description: Firmware for Linux kernel drivers Multi-Arch: foreign Description-md5: 7a047bff9e44dce458a300976c12f9da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic (= 3.13.0.24.28), linux-headers-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-generic_3.13.0.24.28_amd64.deb Size: 1786 MD5sum: c7db9fbc8011979aac208d595f2f8d59 SHA1: 377b285502af24b5503445f7500fad439898b2e6 SHA256: c0478612d03d70c3495a6a3af3581c7c18440d0b8c269aed33d3182a6e61b66d Description: Complete Generic Linux kernel and headers Description-md5: 000d0a6187a93215f75bba542cc6df27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic-lts-quantal Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-quantal_3.13.0.24.28_amd64.deb Size: 1790 MD5sum: 922ff25a0b054db83b84e640891f4183 SHA1: e6e4177793f53986825d7b1e738b0b95a9eb1ad8 SHA256: 534c24af19a06768df905f59fd5d584cecab4806e90037dff23694dd00a4e589 Description: Generic Linux kernel image and headers Description-md5: 38dcc9cd4d253b4b6704bb693aaa54ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic-lts-quantal-eol-upgrade Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-quantal-eol-upgrade_3.13.0.24.28_amd64.deb Size: 1804 MD5sum: 1b9e6c172293a30251195187e14c5e9d SHA1: c6f03a805da296325b9137ec82fa5013b849d0ed SHA256: 42371881864f3bbe69b495c0cc6d047e1581129b01e5926a2963e377ab4c0286 Description: Complete Generic Linux kernel and headers Description-md5: a980efdf6824d4ab19a2a106c7355027 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-generic-lts-raring Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-raring_3.13.0.24.28_amd64.deb Size: 1784 MD5sum: 0af247ba185e2c1da656958359667952 SHA1: b9e81b1b98e8a89588d29aa7305ba57e7d9589fd SHA256: fe942ba5851767dc7568073b105f69d060f01d3d2f496d66d0839e8f39521c01 Description: Generic Linux kernel image and headers Description-md5: 38dcc9cd4d253b4b6704bb693aaa54ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic-lts-raring-eol-upgrade Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-raring-eol-upgrade_3.13.0.24.28_amd64.deb Size: 1802 MD5sum: 3d5587f94340eb57307c60c30becf6fb SHA1: 38eebbf6e5f8453da04422ad41b68b9ced4ce89b SHA256: c8325e6083a2d6d55e47662e844f28dd8ea4c5d33d4988a94f59109353855ab4 Description: Complete Generic Linux kernel and headers Description-md5: a980efdf6824d4ab19a2a106c7355027 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-generic-lts-saucy Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-saucy_3.13.0.24.28_amd64.deb Size: 1784 MD5sum: df15ce240bfc9dfde187988be86b380d SHA1: aeefb49785c594f1e6b6286ba316cf7bfbbeabf8 SHA256: f842fd84214c9ca014f424c4f6531ab5f5ddf133ceaa99842187e0c306248ab9 Description: Generic Linux kernel image and headers Description-md5: 38dcc9cd4d253b4b6704bb693aaa54ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic-lts-saucy-eol-upgrade Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-saucy-eol-upgrade_3.13.0.24.28_amd64.deb Size: 1802 MD5sum: 8c91a082712b6c9bcc090dba00b41620 SHA1: 53f801b92be41bd2028a303ad34333c7ed65694a SHA256: 3c5adc62673d6c328bdbbfd5b2a730b7475c6e423c76d31c1a8f0cd9950385ef Description: Complete Generic Linux kernel and headers Description-md5: a980efdf6824d4ab19a2a106c7355027 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic-lts-trusty Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-trusty_3.13.0.24.28_amd64.deb Size: 1784 MD5sum: ebcced35dbb83d983fd7b210b8c822f9 SHA1: 3f0909bc89c32140bc1334901913a2624ba8e9c6 SHA256: 4ae1a003eefcb403b954cf2651fb970444b62a3f43b10c84a7432c534559810b Description: Generic Linux kernel image and headers Description-md5: 38dcc9cd4d253b4b6704bb693aaa54ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-3.13.0-24 Priority: optional Section: devel Installed-Size: 61736 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux Version: 3.13.0-24.46 Depends: coreutils | fileutils (>= 4.0) Filename: pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb Size: 8868990 MD5sum: b8af2ca7f4b95d760797fefedd403692 SHA1: f316d9e82666543f952c8db0905388c0da3f58cb SHA256: 62776baf9ce5aa280fee2c73671bc000a3725562680359598c44bc01a89630bc Description: Header files related to Linux kernel version 3.13.0 Multi-Arch: foreign Description-md5: c73d1c4a8c4ee13851ac3fce53274021 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntu-gnome-live Package: linux-headers-3.13.0-24-generic Priority: optional Section: devel Installed-Size: 12957 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Provides: linux-headers, linux-headers-3.0 Depends: linux-headers-3.13.0-24, libc6 (>= 2.14) Filename: pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_amd64.deb Size: 709864 MD5sum: 011c585337af07f3fd754347c10150c8 SHA1: 7938cd65c2613ac6892a3d072a2099c64bae2fca SHA256: 4e5f680da09ee20e08c878fc2237d4dfea52dcc1576be21937cc56eed0880e79 Description: Linux kernel headers for version 3.13.0 on 64 bit x86 SMP Description-md5: 981d7295df25cc5fd7cc67d18ac7e4fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntu-gnome-live Package: linux-headers-3.13.0-24-lowlatency Priority: optional Section: devel Installed-Size: 12938 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Provides: linux-headers, linux-headers-3.0 Depends: linux-headers-3.13.0-24, libc6 (>= 2.14) Filename: pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb Size: 705900 MD5sum: 753e431631ec9cc895cd46359df990b1 SHA1: c68037ba746745e854bc4b74d9efbf49ad9d99c6 SHA256: 8d6721923dbd9b5495916f3bb3ddb004a6958b2b8f1822bcc25c70ad43e6e69c Description: Linux kernel headers for version 3.13.0 on 64 bit x86 SMP Description-md5: 981d7295df25cc5fd7cc67d18ac7e4fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-generic Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-3.13.0-24-generic Filename: pool/main/l/linux-meta/linux-headers-generic_3.13.0.24.28_amd64.deb Size: 2314 MD5sum: 670c9305200ecd72c323a28abb64f8b2 SHA1: 3dbe6e886bae5484538947f0e6b76271d3185120 SHA256: 01f177e7a799bf4d80b69a1be9a33200527dae15e7fbbc4b9beaa6a070694a93 Description: Generic Linux kernel headers Description-md5: 9c9742ab9c289b1e900fab477bc0070d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntu-gnome-live Package: linux-headers-generic-lts-quantal Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers Filename: pool/main/l/linux-meta/linux-headers-generic-lts-quantal_3.13.0.24.28_amd64.deb Size: 2354 MD5sum: 3b8cee2a5c4f648990ca178b768ec0e6 SHA1: df001f772983057693d60844242317c331a221d7 SHA256: bb42548f619a58482431ba940059b6108e2535f3b631fd8016dd5b03b26c8fe0 Description: Generic Linux kernel headers Description-md5: 4e4842e97bf4c02f3d044a917c1c7cd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-generic-lts-raring Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-generic Filename: pool/main/l/linux-meta/linux-headers-generic-lts-raring_3.13.0.24.28_amd64.deb Size: 1786 MD5sum: 66b0753b98f309f5eaf5f8937ec83f9e SHA1: 8040619c54f27f25dba9ba3e35a15ea3361040c7 SHA256: dd3339a63d1d2b2ebf4df00967b9a6468ab82942884ce1287e984b390fb15fc9 Description: Generic Linux kernel headers Description-md5: 4e4842e97bf4c02f3d044a917c1c7cd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-generic-lts-saucy Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-generic Filename: pool/main/l/linux-meta/linux-headers-generic-lts-saucy_3.13.0.24.28_amd64.deb Size: 1784 MD5sum: 63dab0ff16c6aac13aa84744e0abad8c SHA1: 86fafe8e11478b18da249c485bdba5d6877f66a0 SHA256: ebcbc3b790ded6afee7e9c9594beee712b510ec7c0e65cb0d878645d3565c9ac Description: Generic Linux kernel headers Description-md5: 4e4842e97bf4c02f3d044a917c1c7cd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-generic-lts-trusty Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-generic Filename: pool/main/l/linux-meta/linux-headers-generic-lts-trusty_3.13.0.24.28_amd64.deb Size: 1782 MD5sum: 458b6f48734298c7fcb959dba14d4ff9 SHA1: 78ddc35957f047caecf94c1f2cfc9a6fabc2aac2 SHA256: 561ab48a557cafe16a6c207a90869f6be719b6cf6cb4a5313ee3ab98804d0f5d Description: Generic Linux kernel headers Description-md5: 4e4842e97bf4c02f3d044a917c1c7cd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-lowlatency Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-3.13.0-24-lowlatency Filename: pool/main/l/linux-meta/linux-headers-lowlatency_3.13.0.24.28_amd64.deb Size: 2326 MD5sum: 329bb8c651369db228bc9dfc0cac9fbe SHA1: d6b83bd60f342bb32edc4f00c71e1b26defc26eb SHA256: 2a09835b7c387438e94ac4db99a7f79850fdb9afcf23d10f9b99941bbbcfd96a Description: lowlatency Linux kernel headers Description-md5: b28bf5c7c758bfbbbd15e31ed4c78ed6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-server Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-headers-server_3.13.0.24.28_amd64.deb Size: 1758 MD5sum: 080ce38beac5c823116cd4710a57c629 SHA1: fac2d091aefcd19d52056c055ac1af2c96cbcb05 SHA256: d65c0de5fd1ca3a32a0c03d38da64698d576a2eddf117fb41a27ca9f0b6182b3 Description: Transitional package. Description-md5: 9f8e13d3c6398c379efb34108d986a01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-virtual Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-headers-virtual_3.13.0.24.28_amd64.deb Size: 1756 MD5sum: 7e77f2d3503ce9bedb3e96ea033dd939 SHA1: 1c0a43e883bd49ad1dc4e74ee88f41429c27148e SHA256: 93d57eb6cc5071276d7cffe00988f3aafa11a7bc3a9e4f44fc3f28a36ebdf419 Description: Transitional package. Description-md5: 9f8e13d3c6398c379efb34108d986a01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-3.13.0-24-generic Priority: optional Section: kernel Installed-Size: 40637 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Provides: fuse-module, ivtv-modules, kvm-api-4, linux-image, linux-image-3.0, redhat-cluster-modules Depends: initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3) Pre-Depends: dpkg (>= 1.10.24) Recommends: grub-pc | grub-efi-amd64 | grub-efi-ia32 | grub | lilo (>= 19.1) Suggests: fdutils, linux-doc-3.13.0 | linux-source-3.13.0, linux-tools, linux-headers-3.13.0-24-generic Conflicts: hotplug (<< 0.0.20040105-1) Filename: pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.46_amd64.deb Size: 14991672 MD5sum: a230180159a13f2f2e86a1bd9be73d98 SHA1: 47d0c1055ddcaa8d16db1122edc9940bfea6dce6 SHA256: ec9322fb8cdd733638bfb99e14f994e87412bedd05b8df0d4f05d4138bd8f103 Description: Linux kernel image for version 3.13.0 on 64 bit x86 SMP Description-md5: cb265f5e208a6797dd81a596a7291d5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntu-gnome-live Package: linux-image-3.13.0-24-lowlatency Priority: optional Section: kernel Installed-Size: 187824 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Provides: fuse-module, ivtv-modules, kvm-api-4, linux-image, linux-image-3.0, redhat-cluster-modules Depends: initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3) Pre-Depends: dpkg (>= 1.10.24) Recommends: grub-pc | grub-efi-amd64 | grub-efi-ia32 | grub | lilo (>= 19.1) Suggests: fdutils, linux-doc-3.13.0 | linux-source-3.13.0, linux-tools, linux-headers-3.13.0-24-lowlatency Conflicts: hotplug (<< 0.0.20040105-1) Filename: pool/main/l/linux/linux-image-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb Size: 51557104 MD5sum: eda95767ab03fe3b098bc59d3a575ff0 SHA1: a7f388b5e23ee481c82d54b2f7805868037d6467 SHA256: 4a554c11927a3962f7e8790632b0a7bfee20ea9deab8af15e5bd8e4f5ad702ba Description: Linux kernel image for version 3.13.0 on 64 bit x86 SMP Description-md5: e90b7ea6af39a3aeb62a9b8a48bbd29c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-extra-3.13.0-24-generic Priority: optional Section: kernel Installed-Size: 147869 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Depends: linux-image-3.13.0-24-generic, crda (>= 1.1.1-1ubuntu2) | wireless-crda Filename: pool/main/l/linux/linux-image-extra-3.13.0-24-generic_3.13.0-24.46_amd64.deb Size: 36621888 MD5sum: 3adddde3bc3e25626e384fde5ba0ce8e SHA1: b16f6139673410a49ddd5657010bc3c67b464ae4 SHA256: a51998361a3bd2f2a8529d4db9124b78033b143028cda8864e418d8d9885c0e6 Description: Linux kernel extra modules for version 3.13.0 on 64 bit x86 SMP Description-md5: d62c882db5779df4aa7593d4c2ceaaa4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntu-gnome-live Package: linux-image-extra-virtual Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-image-extra-virtual_3.13.0.24.28_amd64.deb Size: 1764 MD5sum: 5aa99210ebc6bd46eb6bda2ff59ffe0f SHA1: 5e76d8dd3cfb2937e915f46e33c980c7432f65a6 SHA256: a0c1132fff221b17118c266cdf638ff993e5e80487362d8f9dc3a4e6a7ca80fa Description: Transitional package. Description-md5: eb988093c0758268582edcd962efe052 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-generic Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-3.13.0-24-generic, linux-image-extra-3.13.0-24-generic, linux-firmware Filename: pool/main/l/linux-meta/linux-image-generic_3.13.0.24.28_amd64.deb Size: 2326 MD5sum: dbbe77b0ce92dab3be002b503ed8adbd SHA1: 74103e11ac2ee7ad68541d79ac03192a4ba636c7 SHA256: 441259840c5147cf24aafc558df8ca8bbe6552fe9d630b5aeb14a0ab7269cdd9 Description: Generic Linux kernel image Description-md5: 6d632579c673704f44b290b16e7dbfd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-generic-lts-quantal Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic Filename: pool/main/l/linux-meta/linux-image-generic-lts-quantal_3.13.0.24.28_amd64.deb Size: 1788 MD5sum: 9380dda11d5116f1fe428c4c668cbb49 SHA1: d5dce920e8747462d9524302c5d2d23411edd975 SHA256: 422e069259c0829159c979ddfb19a1b38cf386957e76c3f55c6f8b90aca66988 Description: Generic Linux kernel image Description-md5: 8a39d8556ef2a2dfbe5697d557d7c36a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-generic-lts-raring Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic Filename: pool/main/l/linux-meta/linux-image-generic-lts-raring_3.13.0.24.28_amd64.deb Size: 1784 MD5sum: 593aa509b6073af55557b9dfbe36f5ff SHA1: 602cc6ccbf2d0030df439dccab7f9fafd92a6698 SHA256: e3dad9d18f4c61bf2510f11e65c02d511f7355a7bb19e1c582060d553deca055 Description: Generic Linux kernel image Description-md5: 8a39d8556ef2a2dfbe5697d557d7c36a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-generic-lts-saucy Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic Filename: pool/main/l/linux-meta/linux-image-generic-lts-saucy_3.13.0.24.28_amd64.deb Size: 1782 MD5sum: d86719f2b978fce7f2ef19cf3feb90a8 SHA1: d09bd3b937ef0534cdfb483aafa2253661c30003 SHA256: fb02268f246980d9747fb53bfa146d589ec38368492e14d831d1a7ec7616289f Description: Generic Linux kernel image Description-md5: 8a39d8556ef2a2dfbe5697d557d7c36a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-generic-lts-trusty Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic Filename: pool/main/l/linux-meta/linux-image-generic-lts-trusty_3.13.0.24.28_amd64.deb Size: 1782 MD5sum: 5cf768492732982e3bde545f519196dc SHA1: fdc5d833ca0f93ae5d1b1dbdb818285d5338fde4 SHA256: f11eb79a49640d161d9e7cdade80a9fad2f7b50880bf28097eaca30a8c0a8fbb Description: Generic Linux kernel image Description-md5: 8a39d8556ef2a2dfbe5697d557d7c36a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-lowlatency Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-3.13.0-24-lowlatency, linux-firmware Filename: pool/main/l/linux-meta/linux-image-lowlatency_3.13.0.24.28_amd64.deb Size: 2332 MD5sum: af39cda3c8a4ffe3f1c584bf9e5109e8 SHA1: 28ffda9c298a3d00c42c783fe41ff41837b3c682 SHA256: 749ef862398e5dfc9551673350bb4530b4530c7bc9388513b9541921a1dbd7d1 Description: lowlatency Linux kernel image Description-md5: 81c6fc6425f7566aa856ff1be6d8b320 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-server Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-image-server_3.13.0.24.28_amd64.deb Size: 1754 MD5sum: e46a523204644f2d34788db8c2702668 SHA1: 4652a05cdb3fc5679b73b7e4125ce81c35a2377c SHA256: 09ccfbbd16498bfcb0be4ab1248477941a59221d06f5c5b2e358dfa057a680d8 Description: Transitional package. Description-md5: eb988093c0758268582edcd962efe052 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-image-virtual Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-3.13.0-24-generic Filename: pool/main/l/linux-meta/linux-image-virtual_3.13.0.24.28_amd64.deb Size: 2326 MD5sum: 8bbf106ae6f0982a9bb4e35b1609d418 SHA1: 58b55a452df0f03bf253b4bb5cad87c382379540 SHA256: d28fa17cad1a31893a28bc68fd152ae7d83f2d1b4c2031507d8f4b8a4114da93 Description: This package will always depend on the latest minimal generic kernel image. Description-md5: 4860895cdea7f2369c76625e9dd2dd4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-libc-dev Priority: optional Section: devel Installed-Size: 3696 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Replaces: dvb-dev (<< 1.0.1-6), libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), libdrm-dev, linux-kernel-headers Provides: linux-kernel-headers Conflicts: amd64-libs-dev (<= 1.1), dvb-dev (<< 1.0.1-6), libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), linux-kernel-headers Filename: pool/main/l/linux/linux-libc-dev_3.13.0-24.46_amd64.deb Size: 780738 MD5sum: 3de747a339b9d04fe4fcbfa2e8db2a12 SHA1: 3d9c729d3bff0376b4c14ae8ee9c44e8f9ba8daa SHA256: 1a5d88e47eaeb28456e11449fd42244e7af7ccfc9d12a36ede2afb94d19f37d7 Description: Linux Kernel Headers for development Multi-Arch: same Description-md5: d5d143e6dffc891f04a85464446f9451 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: linux-libc-dev-arm64-cross Priority: extra Section: devel Maintainer: Ubuntu Kernel Team Architecture: all Source: arm64-cross-toolchain-base (0.10) Version: 3.13.0-12.32cross0.10 Replaces: dvb-dev-arm64-cross (<< 1.0.1-6), libc6-dev-arm64-cross (<< 2.3.2.ds1-6), libc6.1-dev-arm64-cross (<< 2.3.2.ds1-6), libdrm-dev-arm64-cross, linux-kernel-headers-arm64-cross Provides: linux-kernel-headers-arm64-cross, linux-libc-dev-arm64-dcv1 Conflicts: amd64-libs-dev-arm64-cross (<= 1.1), dvb-dev-arm64-cross (<< 1.0.1-6), libc6-dev-arm64-cross (<< 2.3.2.ds1-6), libc6.1-dev-arm64-cross (<< 2.3.2.ds1-6), linux-kernel-headers-arm64-cross Filename: pool/main/a/arm64-cross-toolchain-base/linux-libc-dev-arm64-cross_3.13.0-12.32cross0.10_all.deb Size: 754242 MD5sum: 7eb65651cea656bd7d15b808d3a7083e SHA1: c85bf6a8f7ea4dd8613e1a253a41d38fd82ddf4d SHA256: 3d26bdc4ff0de9c4451d8e782768a5688c3dbac7676318467f78f2a1e701afb3 Description: Linux Kernel Headers for development (for cross-compiling) Description-md5: 9d79b1e7a2c6d8a0875bde4a09a1cc28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-libc-dev-armel-cross Priority: extra Section: devel Maintainer: Ubuntu Kernel Team Architecture: all Source: armel-cross-toolchain-base (1.104) Version: 3.13.0-12.32cross1.104 Replaces: dvb-dev-armel-cross (<< 1.0.1-6), libc6-dev-armel-cross (<< 2.3.2.ds1-6), libc6.1-dev-armel-cross (<< 2.3.2.ds1-6), libdrm-dev-armel-cross, linux-kernel-headers-armel-cross Provides: linux-kernel-headers-armel-cross, linux-libc-dev-armel-dcv1 Conflicts: amd64-libs-dev-armel-cross (<= 1.1), dvb-dev-armel-cross (<< 1.0.1-6), libc6-dev-armel-cross (<< 2.3.2.ds1-6), libc6.1-dev-armel-cross (<< 2.3.2.ds1-6), linux-kernel-headers-armel-cross Filename: pool/main/a/armel-cross-toolchain-base/linux-libc-dev-armel-cross_3.13.0-12.32cross1.104_all.deb Size: 760392 MD5sum: 07c23d35bc7ab6cd61c5db4ab895fd9f SHA1: 118d630e89bd633c539b724f97221506c96cf8be SHA256: 26bc3c1bfcaa158bed2e044eb90c1aa3d608129ce3c610cfa90202adc1b17732 Description: Linux Kernel Headers for development (for cross-compiling) Description-md5: 9d79b1e7a2c6d8a0875bde4a09a1cc28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-libc-dev-armhf-cross Priority: extra Section: devel Maintainer: Ubuntu Kernel Team Architecture: all Source: armhf-cross-toolchain-base (1.104) Version: 3.13.0-12.32cross1.104 Replaces: dvb-dev-armhf-cross (<< 1.0.1-6), libc6-dev-armhf-cross (<< 2.3.2.ds1-6), libc6.1-dev-armhf-cross (<< 2.3.2.ds1-6), libdrm-dev-armhf-cross, linux-kernel-headers-armhf-cross Provides: linux-kernel-headers-armhf-cross, linux-libc-dev-armhf-dcv1 Conflicts: amd64-libs-dev-armhf-cross (<= 1.1), dvb-dev-armhf-cross (<< 1.0.1-6), libc6-dev-armhf-cross (<< 2.3.2.ds1-6), libc6.1-dev-armhf-cross (<< 2.3.2.ds1-6), linux-kernel-headers-armhf-cross Filename: pool/main/a/armhf-cross-toolchain-base/linux-libc-dev-armhf-cross_3.13.0-12.32cross1.104_all.deb Size: 760850 MD5sum: 64de4e6404e1d0d1af24a75bed89edf8 SHA1: 178bd72b1663b25c3446a97d2f745d0c0d10af90 SHA256: 327cfa8923b3a65988a1628d9dc620ed440d3fb89212a4a8a33ff7777d9cf4aa Description: Linux Kernel Headers for development (for cross-compiling) Description-md5: 9d79b1e7a2c6d8a0875bde4a09a1cc28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-libc-dev-powerpc-cross Priority: extra Section: devel Maintainer: Ubuntu Kernel Team Architecture: all Source: powerpc-cross-toolchain-base (1.1) Version: 3.13.0-13.33cross1.1 Replaces: dvb-dev-powerpc-cross (<< 1.0.1-6), libc6-dev-powerpc-cross (<< 2.3.2.ds1-6), libc6.1-dev-powerpc-cross (<< 2.3.2.ds1-6), libdrm-dev-powerpc-cross, linux-kernel-headers-powerpc-cross Provides: linux-kernel-headers-powerpc-cross, linux-libc-dev-powerpc-dcv1 Conflicts: amd64-libs-dev-powerpc-cross (<= 1.1), dvb-dev-powerpc-cross (<< 1.0.1-6), libc6-dev-powerpc-cross (<< 2.3.2.ds1-6), libc6.1-dev-powerpc-cross (<< 2.3.2.ds1-6), linux-kernel-headers-powerpc-cross Filename: pool/main/p/powerpc-cross-toolchain-base/linux-libc-dev-powerpc-cross_3.13.0-13.33cross1.1_all.deb Size: 771800 MD5sum: b705b578f61e6955e504d98d2cd73f73 SHA1: 4288fd0b4a82d9d08fa4768e598245811d478d7d SHA256: a7398f6fa748b26cdf2d8324325d59b0dcb359366a88e405d6f56531118bdfbd Description: Linux Kernel Headers for development (for cross-compiling) Description-md5: 9d79b1e7a2c6d8a0875bde4a09a1cc28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-libc-dev-ppc64el-cross Priority: extra Section: devel Maintainer: Ubuntu Kernel Team Architecture: all Source: ppc64el-cross-toolchain-base (0.2) Version: 3.13.0-13.33cross0.2 Replaces: dvb-dev-ppc64el-cross (<< 1.0.1-6), libc6-dev-ppc64el-cross (<< 2.3.2.ds1-6), libc6.1-dev-ppc64el-cross (<< 2.3.2.ds1-6), libdrm-dev-ppc64el-cross, linux-kernel-headers-ppc64el-cross Provides: linux-kernel-headers-ppc64el-cross, linux-libc-dev-ppc64el-dcv1 Conflicts: amd64-libs-dev-ppc64el-cross (<= 1.1), dvb-dev-ppc64el-cross (<< 1.0.1-6), libc6-dev-ppc64el-cross (<< 2.3.2.ds1-6), libc6.1-dev-ppc64el-cross (<< 2.3.2.ds1-6), linux-kernel-headers-ppc64el-cross Filename: pool/main/p/ppc64el-cross-toolchain-base/linux-libc-dev-ppc64el-cross_3.13.0-13.33cross0.2_all.deb Size: 770620 MD5sum: de8a04a0324efbbabbad2df3ca846a59 SHA1: ce3f6a7f819777f7d2e96ea31de4d6729856ee39 SHA256: 8ecc86631736a1a62ecd564d08b11408bcbd25480a3a906bde537b66e602dd94 Description: Linux Kernel Headers for development (for cross-compiling) Description-md5: 9d79b1e7a2c6d8a0875bde4a09a1cc28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-lowlatency Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-lowlatency (= 3.13.0.24.28), linux-headers-lowlatency (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-lowlatency_3.13.0.24.28_amd64.deb Size: 1784 MD5sum: f770ef920af01eeeae1c4926cf6fff76 SHA1: 4f4baf36865c1f3de72d4c811acc00b17f9bca26 SHA256: 813f9ea5b4aab0377baf770b4b2d2a057c0b541e878611e46890d2bc65acb681 Description: Complete lowlatency Linux kernel Description-md5: b52e19b8044c25aff9dce108f24e2ee9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-server Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-server_3.13.0.24.28_amd64.deb Size: 1750 MD5sum: 06575cd554b234cfb7141c5623a58d76 SHA1: 40bb15a6cc628c3ca4ea473cb27392f0442d57e3 SHA256: 472c22b98610772f63251a677c82b0be2d45c0c759caecdfb7ba5beaf0c8ac69 Description: Transitional package. Description-md5: b239583bb598a7b339303e3f0513dc63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-signed-generic Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-image-generic (= 3.13.0.24.28), linux-headers-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-signed-generic_3.13.0.24.28_amd64.deb Size: 1812 MD5sum: cff832e27d61382622b1e32f081b8648 SHA1: 638d631d737c86cffc22b0b095249a9560909ef3 SHA256: 07a1691eb4a79a0a0d3a4ed773ee66d62dff38cb28da7b0a05a75e93fa427569 Description: Complete Signed Generic Linux kernel and headers Description-md5: c46e75d15f431954f5e63aac8c06ea2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntu-gnome-live Package: linux-signed-generic-lts-quantal Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-generic Filename: pool/main/l/linux-meta/linux-signed-generic-lts-quantal_3.13.0.24.28_amd64.deb Size: 1802 MD5sum: d24e4ca26d3a455502c39e28eee2b1b4 SHA1: a56d6ad89fcf86015d4007eb7a40bf92688217cb SHA256: 7d891109c005aa56fe19d3ad224d5da3126244cc25a8fdaa89d2e9524547459d Description: Complete Signed Generic Linux kernel and headers Description-md5: 7fa79596bf315f9cc78a5e53d277abdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-signed-generic-lts-quantal-eol-upgrade Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-generic Filename: pool/main/l/linux-meta/linux-signed-generic-lts-quantal-eol-upgrade_3.13.0.24.28_amd64.deb Size: 1822 MD5sum: 3c9d2d8328e8404cb57a69cf23f2512e SHA1: 8299074b432ef9aedb82b3c231aba969fcd11af2 SHA256: b04399137bcd980924eb58b04707459256eed8c7ef6a06c2d8dda54ae01c4757 Description: Complete Signed Generic Linux kernel and headers Description-md5: 7fa79596bf315f9cc78a5e53d277abdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-signed-generic-lts-raring Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-generic Filename: pool/main/l/linux-meta/linux-signed-generic-lts-raring_3.13.0.24.28_amd64.deb Size: 1798 MD5sum: 95d1e031981829d4d0458f370d3bf426 SHA1: e1789e259885df01595f2af67823f9fbaa22dcfd SHA256: 0d8bc8f2ef828c6a55b0ad06cbaedba0b4015dc71863cd48abbc4fe6b7d8fd60 Description: Complete Signed Generic Linux kernel and headers Description-md5: 7fa79596bf315f9cc78a5e53d277abdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-signed-generic-lts-raring-eol-upgrade Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-generic Filename: pool/main/l/linux-meta/linux-signed-generic-lts-raring-eol-upgrade_3.13.0.24.28_amd64.deb Size: 1812 MD5sum: 17bd74cc9cdd2b3ba0e3b56bbbcd0a48 SHA1: 40a69c4aae47433df371cff7a992d27da4bd10fa SHA256: 0dad5b503a38e239adb1959156f2da48e0e9426ec59d5c262a7a8d95616417c8 Description: Complete Signed Generic Linux kernel and headers Description-md5: 7fa79596bf315f9cc78a5e53d277abdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-signed-generic-lts-saucy Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-generic Filename: pool/main/l/linux-meta/linux-signed-generic-lts-saucy_3.13.0.24.28_amd64.deb Size: 1800 MD5sum: 05d675b2856d287780ed5a7a6fc45b37 SHA1: 196ae2feead48d3324a05a9da81b6cac02deb8e8 SHA256: 5ca02841386a31e7c5fb72fb82a4ba6d4b1f1a89c3100c4097269774c86b51a2 Description: Complete Signed Generic Linux kernel and headers Description-md5: 7fa79596bf315f9cc78a5e53d277abdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-signed-generic-lts-saucy-eol-upgrade Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-generic Filename: pool/main/l/linux-meta/linux-signed-generic-lts-saucy-eol-upgrade_3.13.0.24.28_amd64.deb Size: 1816 MD5sum: b704add201a7a299d102bf287b3dac0e SHA1: 0f7a7c6e0e619735f56cda0d761f3028d347a438 SHA256: aeacc00735e2b25358e5aba4f7a15d8af080c2601dde86738d5b2896444044d2 Description: Complete Signed Generic Linux kernel and headers Description-md5: 7fa79596bf315f9cc78a5e53d277abdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-signed-generic-lts-trusty Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-generic Filename: pool/main/l/linux-meta/linux-signed-generic-lts-trusty_3.13.0.24.28_amd64.deb Size: 1798 MD5sum: a0878dcbeadaf1c0ba239e06e8db6c28 SHA1: 907283460be95ca726ed56aa1b529da6efdf67b2 SHA256: ec257f94c0646d4dba711f40dcb475ec7ec35d87e50812d7d63bee8d95d9f34a Description: Complete Signed Generic Linux kernel and headers Description-md5: 7fa79596bf315f9cc78a5e53d277abdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-signed-image-3.13.0-24-generic Priority: optional Section: utils Installed-Size: 40 Maintainer: Canonical Kernel Team Architecture: amd64 Source: linux-signed Version: 3.13.0-24.46 Depends: sbsigntool, linux-image-3.13.0-24-generic (= 3.13.0-24.46), linux-image-extra-3.13.0-24-generic (= 3.13.0-24.46) Filename: pool/main/l/linux-signed/linux-signed-image-3.13.0-24-generic_3.13.0-24.46_amd64.deb Size: 3950 MD5sum: f6bd67ea8b24e2b9f100e51752366738 SHA1: 156b9ee2e478a37c33b97b6512cba2a994cd85e1 SHA256: b62b0cc6ce8ecf4511e4cb6b6dca763fa8f406b3180fa3f52db1e4e3857568b1 Description: Signed kernel image generic Built-Using: linux (= 3.13.0-24.46) Description-md5: 58606405946683c4d2ca4f105784fd91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntu-gnome-live Package: linux-signed-image-generic Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-image-3.13.0-24-generic Filename: pool/main/l/linux-meta/linux-signed-image-generic_3.13.0.24.28_amd64.deb Size: 2354 MD5sum: 854a7e414e428abf936a40c225725434 SHA1: b97be12a1118703c5597d830e340e0ec27fdba46 SHA256: 8e9cc9a309b80b58387a734aa441d843526f43f27dc3fdb360d7235b9a6c1409 Description: Signed Generic Linux kernel image Description-md5: 9f06dc406adf6813c92d1a1173d6e913 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntu-gnome-live Package: linux-signed-image-generic-lts-quantal Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-image-generic Filename: pool/main/l/linux-meta/linux-signed-image-generic-lts-quantal_3.13.0.24.28_amd64.deb Size: 1798 MD5sum: fc49b23f9fc8088cf1f2201bb689d80d SHA1: bf3a2b8ae50d8d1cdb95d37f6c86e85c5760b13c SHA256: 0dcf25415abf1d567442c832c2a14161c26c7102a76164d9f18d0a5792739224 Description: Signed Generic Linux kernel image Description-md5: 45b4d38510544e44fa32b32ac32c8f8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-signed-image-generic-lts-raring Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-image-generic Filename: pool/main/l/linux-meta/linux-signed-image-generic-lts-raring_3.13.0.24.28_amd64.deb Size: 1794 MD5sum: fe021424a4d96dc14ac35b9532ebef9a SHA1: c1ba6b0683ffead23a748d747b8e2c9ed26371b6 SHA256: c84b67a2af6f04a592011e2d5188fa98ae23426738e27ab8253f4bf15803d0ca Description: Signed Generic Linux kernel image Description-md5: 45b4d38510544e44fa32b32ac32c8f8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-signed-image-generic-lts-saucy Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-image-generic Filename: pool/main/l/linux-meta/linux-signed-image-generic-lts-saucy_3.13.0.24.28_amd64.deb Size: 1796 MD5sum: 2646ab2cfafa0383b5f8be957b99bb17 SHA1: 6b556b7c99f836d4826daff62fb19bc1d91e1f24 SHA256: cb92adde724c9fa384595de224f942b03e81020fa0f64ef61ebfd20107d25f7b Description: Signed Generic Linux kernel image Description-md5: 45b4d38510544e44fa32b32ac32c8f8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-signed-image-generic-lts-trusty Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-signed-image-generic Filename: pool/main/l/linux-meta/linux-signed-image-generic-lts-trusty_3.13.0.24.28_amd64.deb Size: 1794 MD5sum: dcca07c0fbee68935012e905c6f11e2f SHA1: 31853a2140934add63a67c738b05bf59080f965f SHA256: 9bfd715def9a34d99a1c1b892e18ee0a9fdccd7ae467a15cd028fa751ffaf053 Description: Signed Generic Linux kernel image Description-md5: 45b4d38510544e44fa32b32ac32c8f8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-sound-base Priority: optional Section: sound Installed-Size: 96 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian ALSA Maintainers Architecture: all Source: alsa-driver Version: 1.0.25+dfsg-0ubuntu4 Depends: debconf (>= 0.5) | debconf-2.0, module-init-tools (>= 3.2.1) Suggests: alsa-base (>= 1.0.18-1) Filename: pool/main/a/alsa-driver/linux-sound-base_1.0.25+dfsg-0ubuntu4_all.deb Size: 14494 MD5sum: 8597097951846a38a0a641c1b18ff21d SHA1: 0a9c61f7f5ab445f7a8614f8e1619c28d291443c SHA256: 00cd64e404bb7c9c823aba1825472cbb2b6be59d4bad1b766d626ccb96f9e056 Description: base package for ALSA and OSS sound systems Homepage: http://www.alsa-project.org/ Description-md5: 345b7b0786beff04084b70dad9f3313a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: linux-source Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux-meta Version: 3.13.0.24.28 Depends: linux-source-3.13.0 Filename: pool/main/l/linux-meta/linux-source_3.13.0.24.28_all.deb Size: 2322 MD5sum: 4aa58682b05f7112cb395ee91b04979f SHA1: 79d60ab1d6ee902b62e9ee6a56a9ec8eb41be14d SHA256: d608715b6afcb64366c71d62e23466b1a9963bfd9633fc6f44cc95554ced7f58 Description: Linux kernel source with Ubuntu patches Description-md5: 1cac084d2ae18dfd06b96585b4be564d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-source-3.13.0 Priority: optional Section: devel Installed-Size: 109868 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux Version: 3.13.0-24.46 Provides: linux-source, linux-source-3 Depends: binutils, bzip2, coreutils | fileutils (>= 4.0) Recommends: libc-dev, gcc, make Suggests: libncurses-dev | ncurses-dev, kernel-package, libqt3-dev Filename: pool/main/l/linux/linux-source-3.13.0_3.13.0-24.46_all.deb Size: 97702702 MD5sum: 7d612b7285afe809bb96f73e0e09404b SHA1: 014fc9cef6241b2723037bb558d1788d688b78a2 SHA256: 49b501a6bb245248028bbfb6efd6a4fb4c44bc44bddabf93d300d483cafc80e8 Description: Linux kernel source for version 3.13.0 with Ubuntu patches Description-md5: 51a9ca1b331239a745b564f7d3a2f985 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-3.13.0-24 Priority: optional Section: devel Installed-Size: 1418 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.14), libdw1 (>= 0.143), libelf1 (>= 0.144), libpci3 (>= 1:3.2.1-1), libslang2 (>= 2.2.4), libunwind8, linux-tools-common Filename: pool/main/l/linux/linux-tools-3.13.0-24_3.13.0-24.46_amd64.deb Size: 482034 MD5sum: 80a9efafa687fa3e319bf55da6277754 SHA1: 0a90026f6e7fd26a0ccd426c6d7f72ee4bd8f422 SHA256: 8f4cdc8b984718f41e33acca47cf21b1cb49bd536b56f622677bc9f844648ed8 Description: Linux kernel version specific tools for version 3.13.0-24 Description-md5: fc4c8b52337d569a743fe2806f77b4e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-3.13.0-24-generic Priority: optional Section: devel Installed-Size: 143 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Depends: linux-tools-3.13.0-24 Filename: pool/main/l/linux/linux-tools-3.13.0-24-generic_3.13.0-24.46_amd64.deb Size: 1828 MD5sum: f26bb2b430fc06a6ce4a715cbb6b397e SHA1: df3a018a31fe93bea7dea060973e7a7e81682a9f SHA256: 19531f8b0a54d0f710be63432dffee7309d3e9f2bbdc581c8a047214c5feff3d Description: Linux kernel version specific tools for version 3.13.0-24 Description-md5: 26cc2dd57e39c0a5f74ee65b10ca888d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-3.13.0-24-lowlatency Priority: optional Section: devel Installed-Size: 143 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux Version: 3.13.0-24.46 Depends: linux-tools-3.13.0-24 Filename: pool/main/l/linux/linux-tools-3.13.0-24-lowlatency_3.13.0-24.46_amd64.deb Size: 1832 MD5sum: 4d6ecbd6e036fde8393d484091cf6589 SHA1: 669fdcf242bda405a2e56d6d409de9bf0effd28c SHA256: 33f2feb55fb864f5c00e09e4fc862f08492625c1bb2a4e8d9244a562af1bca8a Description: Linux kernel version specific tools for version 3.13.0-24 Description-md5: 26cc2dd57e39c0a5f74ee65b10ca888d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-common Priority: optional Section: kernel Installed-Size: 222 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux Version: 3.13.0-24.46 Replaces: linux-tools (<= 2.6.32-16.25) Filename: pool/main/l/linux/linux-tools-common_3.13.0-24.46_all.deb Size: 94404 MD5sum: c579383b93d08406c3e12c024cf5c1b7 SHA1: 739f756fcea7c67bf799f4bbc55bfc22dec07561 SHA256: 5e5d5ab9e553e3d198388e3f3602131d06ee2b4935682c7d2b3c93c968bf3c61 Description: Linux kernel version specific tools for version 3.13.0 Multi-Arch: foreign Description-md5: 11ddcad592693d75f552399012d33646 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-generic Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-tools Depends: linux-tools-3.13.0-24-generic Filename: pool/main/l/linux-meta/linux-tools-generic_3.13.0.24.28_amd64.deb Size: 2316 MD5sum: 2c5d03fb181d23b32cbae3340e34dc48 SHA1: 1ca223ea3662ffa721a7adc0c77910608d019c21 SHA256: a53420f99fe8b6f22c9547bb1045ead2ac41c87d1c05c0e12064dd2ee26fc19c Description: Generic Linux kernel tools Description-md5: 64a22a7a6c16a9e754ca8416e318c089 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-generic-lts-saucy Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-tools Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-generic-lts-saucy_3.13.0.24.28_amd64.deb Size: 1788 MD5sum: 7369c7d551d4e98ba6aa06a5f9fa2327 SHA1: bd5517f3d4cb93648e571fa8b564d91202f33ab6 SHA256: 0ceae8d021aa865975d7af3e64ff3702655b0842e6da54b6ba8bafdbd1a32306 Description: Generic Linux kernel tools Description-md5: fa3fabb29b200f2f5b98196fde1d63ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-generic-lts-trusty Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-tools Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-generic-lts-trusty_3.13.0.24.28_amd64.deb Size: 1790 MD5sum: bfe1957a79b1c5e1d95b2b836fe1fb15 SHA1: 492760d89b9a48fcfec06fbd330ce902bbd7a8c4 SHA256: c325c1e92a242f2d38d72fdc274a19c00925d8c654a9a61b770289cb816d9f19 Description: Generic Linux kernel tools Description-md5: fa3fabb29b200f2f5b98196fde1d63ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-lowlatency Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-tools Depends: linux-tools-3.13.0-24-lowlatency Filename: pool/main/l/linux-meta/linux-tools-lowlatency_3.13.0.24.28_amd64.deb Size: 2320 MD5sum: 038ebfeaac1c16b0de5d8fb26600ffeb SHA1: 6391eb47cc89c003b731d30908720c6bd31249f1 SHA256: 24924907f7a02a35c48e1b44d1d45700308709d2828491b494ee2316c929c1e0 Description: lowlatency Linux kernel tools Description-md5: e3526bccc03154dd5bfd31ac11ba341e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-lts-quantal Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-lts-quantal_3.13.0.24.28_amd64.deb Size: 1784 MD5sum: 24db48b8e5e65a31043d6c7f188d9507 SHA1: 7e1af3340e1ee9dfb09e03864ea667c688aab5be SHA256: 98ddb86a86e43190e37b4e90e7c239afa4ad9a081fe2f0ef2c60bc3e730bb1c8 Description: Linux kernel versioned Tools Description-md5: 0bd0ec9426b0595c871a446a4e3e8575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-lts-raring Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-lts-raring_3.13.0.24.28_amd64.deb Size: 1784 MD5sum: 9e545a603dddc66c72d6c98b6d6d2d89 SHA1: f27d3a85cc028c60008f61892f5536bbaed13c24 SHA256: a5e53f6dfb4645c3e6acc11e6813d9d3174cca92d292243aef6a74b6e8c0eae0 Description: Linux kernel versioned Tools Description-md5: 0bd0ec9426b0595c871a446a4e3e8575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-lts-saucy Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-lts-saucy_3.13.0.24.28_amd64.deb Size: 1780 MD5sum: ea08a773c7a498135b9c41c91be28264 SHA1: 6c08d70e9b8aec10a6b0ae4e0720ad759957a3fe SHA256: 781883b9f557d579280cc4cfc5bb5b6f23c74c99e0ea5e6f8ad6097e662dedcc Description: Linux kernel versioned Tools Description-md5: 0bd0ec9426b0595c871a446a4e3e8575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-lts-trusty Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-lts-trusty_3.13.0.24.28_amd64.deb Size: 1778 MD5sum: 7801fadde419bc24c92f5da78f43833c SHA1: db36f99e0a62264ccf28d50848a57a845f191b31 SHA256: 10d2bc2614dd5696f3d31e57e881af4bf6d02b5fff8fe025ba150bdc95c8457c Description: Linux kernel versioned Tools Description-md5: 0bd0ec9426b0595c871a446a4e3e8575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-virtual Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-tools Depends: linux-tools-3.13.0-24-generic Filename: pool/main/l/linux-meta/linux-tools-virtual_3.13.0.24.28_amd64.deb Size: 2338 MD5sum: 6b14644eec2af96b69ff3c3686ce7467 SHA1: e61362b126ff2a582e0399718277bb467fe8df9a SHA256: 7cfc538529bc5d68684f0295c41f461fc991c41101f5cc12c1781ed0d8a0bcc8 Description: This package will always depend on the latest minimal generic kernel tools. Description-md5: 3f581644eab1dc2432155dbf206ad217 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-virtual Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: amd64 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-virtual (= 3.13.0.24.28), linux-headers-virtual (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-virtual_3.13.0.24.28_amd64.deb Size: 1780 MD5sum: 41004c606067ec31bcb8e2dd888aceca SHA1: a32fc60bceabe87a454fae43ceb6e549b017e1ea SHA256: 483f569bc9aed22738542a481af6ebd9874dcc48e3c0a485dffebfcd72d73ec8 Description: Minimal Generic Linux kernel and headers Description-md5: 71a1a38f6977c1a1bbc8a7634f51401c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linuxdoc-tools Priority: optional Section: text Installed-Size: 1069 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Version: 0.9.69-2 Replaces: linuxdoc-sgml, linuxdoc-tools-info (<< 0.9.20), linuxdoc-tools-latex (<< 0.9.20), linuxdoc-tools-text (<< 0.9.20), sgml-tools Provides: linuxdoc-sgml Depends: libc6 (>= 2.14), dpkg (>= 1.15.4) | install-info, sgml-base (>= 1.26+nmu2), perl, sp | opensp, sgml-data, gawk | mawk Suggests: texinfo, info-browser, groff, texlive-latex-base, texlive-base-bin, texlive-latex-recommended, linuxdoc-tools-text, linuxdoc-tools-latex, linuxdoc-tools-info Breaks: linuxdoc-sgml, sgml-tools (<= 1.0.9-90) Filename: pool/main/l/linuxdoc-tools/linuxdoc-tools_0.9.69-2_amd64.deb Size: 541606 MD5sum: 09e9c5f625b382dfbdd19949b1e3f01e SHA1: fc625a473b8fe9e598b5164aa46ab6314d70dcfb SHA256: 5e2b4636d606fe4a799614aeb7fd062cd724124f9d51e156ea3bc19894ad52b6 Description: convert LinuxDoc SGML source into other formats Multi-Arch: foreign Description-md5: fc0527f5bddaeae78d21fdee93a5f435 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linuxdoc-tools-latex Priority: optional Section: text Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: linuxdoc-tools Version: 0.9.69-2 Depends: linuxdoc-tools, texlive-latex-base, texlive-base-bin, texlive-latex-recommended Conflicts: linuxdoc-tools (<< 0.9.20) Filename: pool/main/l/linuxdoc-tools/linuxdoc-tools-latex_0.9.69-2_all.deb Size: 4378 MD5sum: 6232ffbb3f6f2846a259916fd58f5b53 SHA1: 57f7bf51b100979868d4bf8df74bdb8b21195bf3 SHA256: 1668d69cc0f6c9f860247818125f6a070c0b8d5a78139325e91f6d336225bba9 Description: LaTeX/PS/PDF output facility of LinuxDoc-Tools Multi-Arch: foreign Description-md5: 2ffa104c88bc0f3d96f645d602bce058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linuxdoc-tools-text Priority: optional Section: text Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: linuxdoc-tools Version: 0.9.69-2 Depends: linuxdoc-tools, groff Breaks: linuxdoc-tools (<< 0.9.20) Filename: pool/main/l/linuxdoc-tools/linuxdoc-tools-text_0.9.69-2_all.deb Size: 4334 MD5sum: 365541502a32ee18b66e3e061a25dfdc SHA1: c9578d849e5139ec3f5134cab672b7babec4840a SHA256: 10048c9e7155684f0cb20d116ffdc87898b6b8aad9bd13964972b85e628e0104 Description: Text output facility of LinuxDoc-Tools Multi-Arch: foreign Description-md5: 7026616b4e2ed3486e9955245937f28d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: live-build Priority: optional Section: misc Installed-Size: 808 Maintainer: Ubuntu Developers Original-Maintainer: Debian Live Project Architecture: all Version: 3.0~a57-1ubuntu11 Depends: debootstrap | cdebootstrap | cdebootstrap-static Recommends: cpio Suggests: dosfstools, genisoimage, git, memtest86+ | memtest86, mtools, parted, squashfs-tools | mtd-tools, sudo | fakeroot, syslinux | grub, uuid-runtime, win32-loader, gnu-fdisk Breaks: livecd-rootfs (<< 2.75) Filename: pool/main/l/live-build/live-build_3.0~a57-1ubuntu11_all.deb Size: 131630 MD5sum: 2e44c21309cd3475869d465cc360ca0b SHA1: 18e59d0260d0fc6001e801589c3ba2ffa34228c7 SHA256: ef01cc80510c13de5218129d4d57922f45f73648ec7cd82a4b03e7083a30159e Description: Debian Live - System build scripts Homepage: http://live.debian.net/devel/live-build/ Description-md5: 5e001429458ae01c34528832e328ea58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: livecd-rootfs Priority: optional Section: devel Installed-Size: 135 Maintainer: Ubuntu Developers Architecture: amd64 Version: 2.208 Depends: debootstrap, rsync, python-minimal | python, procps, squashfs-tools (>= 1:3.3-1), grep-dctrl, fdupes, lsb-release, lzma, e2fsprogs, germinate (>= 1.25.1), apt-utils, gnupg, live-build (>= 3.0~a55-1) Suggests: partimage Breaks: ubuntu-defaults-builder (<< 0.32) Filename: pool/main/l/livecd-rootfs/livecd-rootfs_2.208_amd64.deb Size: 16936 MD5sum: f44bdd14c648bc91f5d2259e30879010 SHA1: 7ebef6d35ac2b1ad63583c9d58d561173901f2a4 SHA256: 4901a2b70d200085e0eab736153c3de11a502e87c38fd338759f8bad1fb03d63 Description: construction script for the livecd rootfs Description-md5: 7b59fd93401bd0efd37505de924d874f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lksctp-tools Priority: optional Section: net Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: amd64 Version: 1.0.15+dfsg-1 Depends: libc6 (>= 2.16), libsctp1 (>= 1.0.12+dfsg) Filename: pool/main/l/lksctp-tools/lksctp-tools_1.0.15+dfsg-1_amd64.deb Size: 51258 MD5sum: 39373482904f27eddebcef56b9bcf13f SHA1: c3575b87a4ce63eed7080d038f019d93b2ca8a2d SHA256: e22050fddb90b1e71481c5a104aeca165656bcbe72c08f720b34a66b326c5ae5 Description: user-space access to Linux Kernel SCTP - commandline tools Homepage: http://lksctp.sf.net/ Description-md5: 2626efe93b0b3cfcdd97b321e6e46128 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: llvm-3.4 Priority: optional Section: devel Installed-Size: 3634 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: amd64 Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Replaces: llvm (<< 2.7-1) Depends: llvm-3.4-runtime (= 1:3.4-1ubuntu3), libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libllvm3.4, libstdc++6 (>= 4.2.1), libtinfo5 Recommends: llvm-3.4-dev Suggests: llvm-3.4-doc Conflicts: llvm (<< 2.7-1) Filename: pool/main/l/llvm-toolchain-3.4/llvm-3.4_3.4-1ubuntu3_amd64.deb Size: 1078216 MD5sum: 3eaf5c6c6e6b060078d27eca3f39630a SHA1: ba83b0365651c98d134e88d2d2ecf1150a6011c7 SHA256: 9ad8c6b87854a2d789ab1ca96238b0b5f8def9e1f2b351398efdeb25c5c22aba Description: Modular compiler and toolchain technologies Homepage: http://www.llvm.org/ Description-md5: 9e5c5554d1a5882101129d5527e3e617 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: llvm-3.4-dev Priority: optional Section: devel Installed-Size: 65331 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: amd64 Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Replaces: llvm (<< 2.2-3) Depends: libc6 (>= 2.14), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.12.1), libllvm3.4, libstdc++6 (>= 4.6), libffi-dev (>= 3.0.9), llvm-3.4 (= 1:3.4-1ubuntu3), libtinfo-dev Filename: pool/main/l/llvm-toolchain-3.4/llvm-3.4-dev_3.4-1ubuntu3_amd64.deb Size: 9800994 MD5sum: 0452741436b558aa0de0063e9423cb5d SHA1: ad378fe519608b631f0007e5876ada524e5b7732 SHA256: f293fca0d2ef1ca09fc7070ce7e878220046a9a2e5e29bad165749784c61edbf Description: Modular compiler and toolchain technologies, libraries and headers Homepage: http://www.llvm.org/ Description-md5: 29f654aa391c01f742a2023c872d7a49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: llvm-3.4-doc Priority: optional Section: doc Installed-Size: 8247 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: all Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Depends: libjs-jquery, libjs-underscore Filename: pool/main/l/llvm-toolchain-3.4/llvm-3.4-doc_3.4-1ubuntu3_all.deb Size: 1184424 MD5sum: a1fd8f839242a851175c8f1c3a3c041d SHA1: 1c0c3ff2d1be0234b13d1f7cfe983d780457c397 SHA256: 838bdc029d8fdcc336025d163cbca143ac837a783db5b2c8a16224aadcd6503d Description: Modular compiler and toolchain technologies, documentation Homepage: http://www.llvm.org/ Description-md5: 19896d0a63f9911e3a7a7b85ecfac407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: llvm-3.4-examples Priority: optional Section: doc Installed-Size: 390 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: all Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Depends: llvm-3.4-dev (>= 1:3.4-1ubuntu3), llvm-3.4-dev (<< 1:3.4-1ubuntu3+c~) Filename: pool/main/l/llvm-toolchain-3.4/llvm-3.4-examples_3.4-1ubuntu3_all.deb Size: 168374 MD5sum: 7c1369d61caa5c6b88c7cbdb6d00ddf5 SHA1: 02d5cfa38da0b0b60bd7630c35ae4fef91a83803 SHA256: d8dc0d8c6c3f54f71292366729e7fcbcce8dc11ee8555e47ab28eaf06c1f7956 Description: Modular compiler and toolchain technologies, examples Homepage: http://www.llvm.org/ Description-md5: 61fee537b751bf39ce1ac5bf27ca3806 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: llvm-3.4-runtime Priority: optional Section: devel Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: amd64 Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Replaces: llvm (<< 2.7-1) Depends: binfmt-support, libc6 (>= 2.14), libllvm3.4, libstdc++6 (>= 4.1.1) Conflicts: llvm (<< 2.7-1) Filename: pool/main/l/llvm-toolchain-3.4/llvm-3.4-runtime_3.4-1ubuntu3_amd64.deb Size: 36178 MD5sum: 6f5cbda6a72f7c5e8973c01ceed79d37 SHA1: 83c4a1f958462e7f4033dd759eed2eaf8e0c1738 SHA256: 113206527559f0245611041a258db2845b23c7e62b0bcc0022763dcac46d5982 Description: Modular compiler and toolchain technologies, IR interpreter Homepage: http://www.llvm.org/ Description-md5: a2e425ebfc2fcd56b539f44a28559b4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lmodern Priority: optional Section: tex Installed-Size: 32873 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Version: 2.004.4-3 Replaces: lm, lmodern-x11 Depends: tex-common (>= 3), fonts-lmodern (= 2.004.4-3) Pre-Depends: dpkg (>= 1.15.7.2) Conflicts: context (<= 2008.10.31-1), lm, lmodern-x11 Filename: pool/main/l/lmodern/lmodern_2.004.4-3_all.deb Size: 12388436 MD5sum: 9e8b1b320a94f26279316ece5ac62520 SHA1: e07aefbb3c7ca5dfce313207bd97dd745733ade7 SHA256: 9a0ccc987c579ae652fee287383c82c7ae07e8d941d1d1c1394923629e6cc079 Description: scalable PostScript and OpenType fonts based on Computer Modern Homepage: http://www.gust.org.pl/projects/e-foundry/latin-modern/ Description-md5: ec713c966ceae093764ea52f6cc1a541 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: localechooser-data Priority: optional Section: devel Installed-Size: 62 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: localechooser Version: 2.49ubuntu5 Depends: iso-codes Breaks: system-config-kickstart (<< 2.5.20-0ubuntu17) Filename: pool/main/l/localechooser/localechooser-data_2.49ubuntu5_all.deb Size: 6378 MD5sum: 3b52b9d0041b52d0519cdc27c063c326 SHA1: 24418ce31382ff7bf7bfd6c27856ec68794aa129 SHA256: 5c969e0401475a12ba4111ff17e0d6d5aeb6ba0f9c220f49e150abd1fc3038ba Description: Lists of locales supported by the installer Description-md5: 784619ad1af4a25c5b4fbee6739c3344 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-live Package: locales Priority: required Section: libs Installed-Size: 9012 Maintainer: Martin Pitt Architecture: all Source: langpack-locales Version: 2.13+git20120306-12 Replaces: base-config, belocs-locale-data, belocs-locales-bin, libc6 (<< 2.3.6-0ubuntu6), libc6.1 (<< 2.3.6-0ubuntu6) Depends: libc6 (>= 2.9-0ubuntu10) | libc6.1 (>= 2.9-0ubuntu10) Conflicts: base-config, belocs-locale-data Filename: pool/main/l/langpack-locales/locales_2.13+git20120306-12_all.deb Size: 2700796 MD5sum: 862dc267afef88937b391659ae68db64 SHA1: 79362490ec24320a285c0ac6e4494ae411dcd278 SHA256: d78a27a94732ed1109754b72c4f1aa0d6fa81e595a18d62ef64fb7c6939f0871 Description: common files for locale support Description-md5: cd9b6b54ca8243d6f6ef9d4c4870927f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: lockfile-progs Priority: important Section: misc Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: amd64 Version: 0.1.17 Depends: libc6 (>= 2.8), liblockfile1 (>= 1.0) Filename: pool/main/l/lockfile-progs/lockfile-progs_0.1.17_amd64.deb Size: 10670 MD5sum: 2e1c174dc592e4f32caed6011baa4317 SHA1: 624a243c9837918010246bd14a44665afd514db5 SHA256: c375ea23cf7c61fdc7d2029b6661481d2163d6fec6c5fd78ec8fd8fd5ce4c048 Description: Programs for locking and unlocking files and mailboxes Description-md5: 1734d26cc52e1c7ee271af4a4589f25f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: logcheck Priority: optional Section: admin Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Debian logcheck Team Architecture: all Version: 1.3.16 Depends: adduser, default-mta | mail-transport-agent, cron, rsyslog | system-log-daemon, mime-construct, logtail (>= 1.2.59), lockfile-progs Recommends: logcheck-database (>= 1.3.16) Suggests: syslog-summary Filename: pool/main/l/logcheck/logcheck_1.3.16_all.deb Size: 23556 MD5sum: 88795185a97fcd2fdf49eb09e83f4cb5 SHA1: 95330c3ba8f5665a46496c812398a66611c1f660 SHA256: 593d075e75aa4729caf4af33b2c90088a163dec1cd99668e7b8315214d62f1f0 Description: mails anomalies in the system logfiles to the administrator Homepage: http://www.logcheck.org/ Description-md5: 204144e4246b58634f497c2685d94433 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: logcheck-database Priority: optional Section: admin Installed-Size: 393 Maintainer: Ubuntu Developers Original-Maintainer: Debian logcheck Team Architecture: all Source: logcheck Version: 1.3.16 Replaces: amavisd-new (<= 2:2.6.4-1), logcheck (<= 1.1.1-9) Filename: pool/main/l/logcheck/logcheck-database_1.3.16_all.deb Size: 65538 MD5sum: 3daefcb1e3aa15f58965ea76061e4d74 SHA1: a3e0e0a14bdfbd727d56c0768a0f8d876362e74c SHA256: 9ad3afe229d86d55f3a883d47ccbe51631d0b4caf886404335551f3084605fb6 Description: database of system log rules for the use of log checkers Homepage: http://www.logcheck.org/ Description-md5: ba9dad019b4bc2992a1c7036b6ab49e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: login Essential: yes Priority: required Section: admin Installed-Size: 1176 Maintainer: Ubuntu Developers Original-Maintainer: Shadow package maintainers Architecture: amd64 Source: shadow Version: 1:4.1.5.1-1ubuntu9 Replaces: manpages-de (<< 0.5-3), manpages-tr (<< 1.0.5), manpages-zh (<< 1.5.1-1) Pre-Depends: libc6 (>= 2.14), libpam0g (>= 0.99.7.1), libpam-runtime, libpam-modules 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) Filename: pool/main/s/shadow/login_4.1.5.1-1ubuntu9_amd64.deb Size: 301428 MD5sum: b34fbf07ec15216802a21749cc457e4c SHA1: 08513f714dbdbd78bad9f04699c9b2526b85f2cf SHA256: 4d69fec8a6e54d83f715ded22c1e71d97552833f30257797ad98f40d2ec7993b Description: system login tools Homepage: http://pkg-shadow.alioth.debian.org/ Description-md5: a9c42fe48288d1e8b7d3d34463d0f485 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: logrotate Priority: important Section: admin Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Paul Martin Architecture: amd64 Version: 3.8.7-1ubuntu1 Depends: libacl1 (>= 2.2.51-8), libc6 (>= 2.14), libpopt0 (>= 1.14), libselinux1 (>= 1.32), cron | anacron | cron-daemon, base-passwd (>= 2.0.3.4) Suggests: mailx Breaks: postgresql-common (<= 126) Filename: pool/main/l/logrotate/logrotate_3.8.7-1ubuntu1_amd64.deb Size: 37860 MD5sum: 4ef6e127f6486ea4a6b5876ed5a50ff7 SHA1: b15a6ae5114513c86e79c45f64e2d4be090fe678 SHA256: 53a1626da7decfbb604551c8a4d675ced99d396b0b025d17d435cec90861da08 Description: Log rotation utility Homepage: https://fedorahosted.org/logrotate/ Description-md5: bb73169bb75b2b8a2fda1453d214416d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: logtail Priority: optional Section: admin Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian logcheck Team Architecture: all Source: logcheck Version: 1.3.16 Replaces: logcheck (<= 1.1.1-9) Depends: perl (>= 5.8.0) Filename: pool/main/l/logcheck/logtail_1.3.16_all.deb Size: 15418 MD5sum: bbb6b611618982645973f150b65dc989 SHA1: 50e55a78b7f77d870924cfd5a81ad3b3e45d66c2 SHA256: 6ba2354c555ef14a95779442a6f090cc4a1a871f5d0061dad63b7547af820aaf Description: Print log file lines that have not been read (deprecated) Homepage: http://www.logcheck.org/ Description-md5: a844125a20d0a40064a9bb3cc49d8c48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: logwatch Priority: optional Section: admin Installed-Size: 2088 Maintainer: Ubuntu Developers Original-Maintainer: Willi Mann Architecture: all Version: 7.4.0+svn20130529rev144-1ubuntu1 Depends: perl, postfix | mail-transport-agent Recommends: libdate-manip-perl Suggests: fortune-mod Filename: pool/main/l/logwatch/logwatch_7.4.0+svn20130529rev144-1ubuntu1_all.deb Size: 468166 MD5sum: 99f0d28a2a9994b46eee26ddaeeb756b SHA1: afb9c9986dde7359555f07a99c311822d61427e2 SHA256: 82a9af13a77eccd285e16bd68ec11d7cf89f62ace4ee75ed3057f6d69e338ed8 Description: log analyser with nice output written in Perl Homepage: http://www.logwatch.org/ Description-md5: ece539a8a87c5f861d7f0b865e42a03c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lp-solve Priority: optional Section: math Installed-Size: 671 Maintainer: Ubuntu Developers Original-Maintainer: Juan Esteban Monsalve Tobon Architecture: amd64 Version: 5.5.0.13-7build1 Depends: libc6 (>= 2.14), libcolamd2.8.0 Filename: pool/main/l/lp-solve/lp-solve_5.5.0.13-7build1_amd64.deb Size: 272058 MD5sum: c5a90a0c4931dfb4a91e25a5c11e5ce3 SHA1: 9770eb7cad866c4b3e206787d5107bed51f500ad SHA256: 7059718cd00ef00ce535248c64b91e5f2a5edc07e74ed773937dab0a76e91532 Description: Solve (mixed integer) linear programming problems Homepage: http://lpsolve.sourceforge.net Description-md5: bc9fbd53b2b145f26b30729410336710 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntu-gnome-desktop Package: lp-solve-doc Priority: optional Section: doc Installed-Size: 1985 Maintainer: Ubuntu Developers Original-Maintainer: Juan Esteban Monsalve Tobon Architecture: all Source: lp-solve Version: 5.5.0.13-7build1 Recommends: www-browser Filename: pool/main/l/lp-solve/lp-solve-doc_5.5.0.13-7build1_all.deb Size: 223230 MD5sum: efa0f44e92dc79e34adf6c0bcaca9154 SHA1: aa88a1f79b3b7e6a00a4d554efc182d2264458c9 SHA256: fb7a6d27c7c3dfd2f0d6430136320171c1b0cff82eb9cb5c53c1e53a790555ea Description: Solve (mixed integer) linear programming problems - documentation Homepage: http://lpsolve.sourceforge.net Description-md5: 1671ede7b2bbfb59f742e21455517124 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lsb Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: all Version: 4.1+Debian11ubuntu6 Depends: lsb-core (>= 4.1+Debian11ubuntu6), lsb-graphics (>= 4.1+Debian11ubuntu6), lsb-cxx (>= 4.1+Debian11ubuntu6), lsb-desktop (>= 4.1+Debian11ubuntu6), lsb-printing (>= 4.1+Debian11ubuntu6), lsb-languages (>= 4.1+Debian11ubuntu6) Filename: pool/main/l/lsb/lsb_4.1+Debian11ubuntu6_all.deb Size: 2798 MD5sum: 8431c10bc15de5f9b63a7327003e440d SHA1: 26b89fb54d4ae5b879ff062839c8e54ae48f5b61 SHA256: 005b8a7566297e018cd421fe889f2498312dcd8fcec46b8eeb357b4f7f67fd97 Description: Linux Standard Base 4.1 support package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 2d741321255c783f018fabc70b9cada9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-base Priority: required Section: misc Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: all Source: lsb Version: 4.1+Debian11ubuntu6 Filename: pool/main/l/lsb/lsb-base_4.1+Debian11ubuntu6_all.deb Size: 12474 MD5sum: fe7b4d46b4b3b9ffdfbf30dee01c0f48 SHA1: 198aa1a373ef740c1932e13eb7e83981aa34fbaa SHA256: 635264a0aa64fbb3ab8c7369f9e6f84888edaa9b2341a0ccccf45ce023c9323e Description: Linux Standard Base 4.1 init script functionality Multi-Arch: foreign Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 4ebb3d88f9f483751e70c55779c52d01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: lsb-core Priority: extra Section: misc Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: amd64 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-core-amd64, lsb-core-noarch Depends: lsb-release (>= 4.1+Debian11ubuntu6), libc6 (>= 2.13-17), libz1, libncurses5, libpam0g, lsb-invalid-mta (>= 4.1+Debian11ubuntu6) | mail-transport-agent, at, bc, binutils, bsdmainutils, bsdutils, cpio, cron | cron-daemon, ed, file, libc6-dev | libc-dev, locales, cups-bsd | lpr, lprng | cups-client, m4, mailx | mailutils, make, man-db, mawk | gawk, ncurses-term, passwd, patch, pax, procps, psmisc, rsync, alien (>= 8.36), python3, debconf (>= 0.5) | debconf-2.0, libc6-i386, lib32z1, lsb-base (>= 4.1+Debian11ubuntu6), lsb-security (>= 4.1+Debian11ubuntu6), time Filename: pool/main/l/lsb/lsb-core_4.1+Debian11ubuntu6_amd64.deb Size: 26244 MD5sum: 6e9a90f4b02f9999ec3be40129c7b093 SHA1: 1827db49cbbf1bff101f977fb09b9a94f334e5d4 SHA256: c27599cf15386d47c5145efa368f384068831f147299bffa6b4fddb8a1f133eb Description: Linux Standard Base 4.1 core support package Multi-Arch: foreign Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 0ca1434442640c4286051139fba3ca97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-cxx Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: amd64 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-cxx-amd64, lsb-cxx-noarch Depends: lsb-core (>= 4.1+Debian11ubuntu6), libstdc++6 Filename: pool/main/l/lsb/lsb-cxx_4.1+Debian11ubuntu6_amd64.deb Size: 2810 MD5sum: 050378bc480877b41a35387561d6cb40 SHA1: 8d0b06a20cda62c24da885e9fbee780dab4de857 SHA256: d7f785d3adf7465cf1b233fdb90f1ef321543459fad8039b127880149927deac Description: Linux Standard Base 4.1 C++ support package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 21e560a494c5b941fceb1817bb03016e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-desktop Priority: extra Section: misc Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: amd64 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-desktop-amd64, lsb-desktop-noarch, lsb-qt4, lsb-qt4-amd64, lsb-qt4-noarch Depends: lsb-graphics (>= 4.1+Debian11ubuntu6), lsb-multimedia (>= 4.1+Debian11ubuntu6), fontconfig (>= 2.6.0), libfontconfig1 (>= 2.6.0), libpng12-0, libjpeg62, libglib2.0-0 (>= 2.12.13), libatk1.0-0 (>= 1.10.3), libpango1.0-0 (>= 1.10.4), libgtk2.0-0 (>= 2.10.14), libcairo2 (>= 1.2.0), libqtcore4, libqtgui4, libqt4-xml, libqt4-opengl, libqt4-sql, libqt4-svg, libqt4-network, libqt4-sql-sqlite, libxml2, libfreetype6, libxrender1, libxtst6, libxft2, xdg-utils, libnss3 Recommends: libqt3-mt (>= 3:3.3.6) Filename: pool/main/l/lsb/lsb-desktop_4.1+Debian11ubuntu6_amd64.deb Size: 3962 MD5sum: b3b637edf94ab3ad7983aceb27be94ce SHA1: f99566c125b262100cb3fc8343d5e11a01e2a93b SHA256: 1f382863031f90f4af52c0f0097a8900d706f11f1fb3e2f4bd5d0c8423963fa7 Description: Linux Standard Base 4.1 Desktop support package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: a4a23adc078b3a89d519fea8b4992f57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-graphics Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: amd64 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-graphics-amd64, lsb-graphics-noarch Depends: lsb-core (>= 4.1+Debian11ubuntu6), libgl1-mesa-glx | libgl1, libglu1-mesa | libglu1, libx11-6 | xlibs Filename: pool/main/l/lsb/lsb-graphics_4.1+Debian11ubuntu6_amd64.deb Size: 2834 MD5sum: 8377e62e161e8d155e84d59233311d45 SHA1: a098a672c153ade4f9ca7e3827d9a99169cab077 SHA256: 49de32cd1d63da8e9768e833286cf845ab95e31874b15e4e116dcca329217400 Description: Linux Standard Base 4.1 graphics support package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: c99be14e0609819f14571d6536c483c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-invalid-mta Priority: extra Section: misc Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: all Source: lsb Version: 4.1+Debian11ubuntu6 Provides: mail-transport-agent Suggests: lsb Conflicts: mail-transport-agent Filename: pool/main/l/lsb/lsb-invalid-mta_4.1+Debian11ubuntu6_all.deb Size: 5106 MD5sum: baa86567f64aed9518b3f6256c12df84 SHA1: b130e541d9e758814df1160c97ec5b29e6a0ea24 SHA256: e0ccdbd34ab6a5e57e038b38cb15cfb96b6c89ba7e82b71cd9bb7c75b5bc5899 Description: Linux Standard Base sendmail dummy Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 33de1113b88f03d989868cbc67ba462c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-languages Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: amd64 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-languages-amd64, lsb-languages-noarch Depends: lsb-core (>= 4.1+Debian11ubuntu6), python (>= 2.4), perl (>= 5.8.8), perl (<< 6), libpod-plainer-perl Filename: pool/main/l/lsb/lsb-languages_4.1+Debian11ubuntu6_amd64.deb Size: 2840 MD5sum: 484df0661754979eba827223f13424b1 SHA1: c1bb1bb49eaddc74667d8afc9be5739d83f9d7be SHA256: e3be853e259834ef9a8c705ddbf33814f0e766ebb977538a33e0114e3bc6e6cb Description: Linux Standard Base 4.1 Runtime Languages package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 044651bb4028f994ed0ce8271f3507f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-multimedia Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: amd64 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-multimedia-amd64, lsb-multimedia-noarch Depends: lsb-core (>= 4.1+Debian11ubuntu6), libasound2 Filename: pool/main/l/lsb/lsb-multimedia_4.1+Debian11ubuntu6_amd64.deb Size: 2810 MD5sum: 70201cb485f8a068a5024f8f4c1eeba7 SHA1: 52b715972898bb0d5ba917798f8820b7fbcbb392 SHA256: 72d379b42aac915d29c7285e6e7073aa56ce6202e0cdebdb7e88654cc8d7e871 Description: Linux Standard Base 4.1 Multimedia package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 113d28be1f55f13e02991990aaeb2c55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-printing Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: amd64 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-printing-amd64, lsb-printing-noarch Depends: lsb-core (>= 4.1+Debian11ubuntu6), libcups2, libcupsimage2, foomatic-filters, ghostscript, cups-filters (>= 1.0.36) | ghostscript-cups Filename: pool/main/l/lsb/lsb-printing_4.1+Debian11ubuntu6_amd64.deb Size: 2852 MD5sum: acebc89c66ad6090ddf338578e315d66 SHA1: 7609706962464c126a141534e2caefda981b092c SHA256: 761e833f28ef401e142191ad247fc224733be6bc8f6bef1e7e4c9a71ddfd9b4c Description: Linux Standard Base 4.1 Printing package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: f754b65e189013cff8916aed10432001 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-release Priority: important Section: misc Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: all Source: lsb Version: 4.1+Debian11ubuntu6 Depends: python3, python3:any (>= 3.3.2-2~) Recommends: apt Suggests: lsb Filename: pool/main/l/lsb/lsb-release_4.1+Debian11ubuntu6_all.deb Size: 11410 MD5sum: e73c2ed0114136235576863345d9eb9e SHA1: dbacfa7d6aa386f17c66a823d4b4c5f00e1ff599 SHA256: d01171ab22e659be45cfa078d130c02cf7157b0a1e47fb2570507e7de630594c Description: Linux Standard Base version reporting utility Multi-Arch: foreign Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 65ec3e346c054b77b914b6a1d4e5fb15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: lsb-security Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: amd64 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-security-amd64, lsb-security-noarch Depends: libnss3, libnspr4 Recommends: lsb-core (>= 4.1+Debian11ubuntu6) Filename: pool/main/l/lsb/lsb-security_4.1+Debian11ubuntu6_amd64.deb Size: 4768 MD5sum: 456fcebb0014aedbd72823aebcbbdebd SHA1: 43069a74da2c904c3b2da1710a1a63ce027d8fb7 SHA256: fc6e71f535e59a40cbfc005e06d32369f63525c7dea433223d6266a297fa0e5e Description: Linux Standard Base 4.1 Security package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: eddd2601035e68421572ea29929958fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lshw Priority: standard Section: utils Installed-Size: 764 Maintainer: Ubuntu Developers Original-Maintainer: Ghe Rivero Architecture: amd64 Version: 02.16-2ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Recommends: pciutils, usbutils Filename: pool/main/l/lshw/lshw_02.16-2ubuntu1_amd64.deb Size: 223332 MD5sum: 3df85d5e25f663805314955cd29fd364 SHA1: 2de5f6190439ac01945fd2d7ad0ca5e212ae29a4 SHA256: cd66860aa1b034a0003e2ab55a74d8be37f141123ebaa6e8e1b608aea4cba572 Description: information about hardware configuration Description-md5: 5bbbb48f52cc6707ed44dbb6942d387b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: lsof Priority: standard Section: utils Installed-Size: 456 Maintainer: Ubuntu Developers Original-Maintainer: Norbert Tretkowski Architecture: amd64 Version: 4.86+dfsg-1ubuntu2 Depends: libc6 (>= 2.14) Filename: pool/main/l/lsof/lsof_4.86+dfsg-1ubuntu2_amd64.deb Size: 256522 MD5sum: 6c3d07b7d177de7038ea9a2ffdc98057 SHA1: db4139504730c8276657fcd2ab44eeb689bb6f44 SHA256: b41ab956604bce8a1945f51c27f7dd0543bed33a33f01db9af0fc418d738c6ba Description: Utility to list open files Homepage: http://people.freebsd.org/~abe/ Description-md5: 260a171702acdb4e7341e348f1538be4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: lsscsi Priority: optional Section: admin Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Matt Taggart Architecture: amd64 Version: 0.27-2 Depends: libc6 (>= 2.14) Filename: pool/main/l/lsscsi/lsscsi_0.27-2_amd64.deb Size: 35644 MD5sum: d66d48574b93be47a507bceaa71d2760 SHA1: 01057eb1665f1e88c27aaf0398094dbf667874af SHA256: 06662ae9d5ba1b5c5352b0b4eaf8cb45779c1601ba706629217b0181b0236a46 Description: list all SCSI devices (or hosts) currently on system Homepage: http://sg.danny.cz/scsi/lsscsi.html Description-md5: bd9af78e01cda1b77847bb06d8309439 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltrace Priority: standard Section: utils Installed-Size: 362 Maintainer: Ubuntu Developers Original-Maintainer: Juan Cespedes Architecture: amd64 Version: 0.7.3-4ubuntu5 Depends: libc6 (>= 2.14), libelf1 (>= 0.131), libselinux1 (>= 1.32) Filename: pool/main/l/ltrace/ltrace_0.7.3-4ubuntu5_amd64.deb Size: 119680 MD5sum: 7ea776d1dfd828773c6773c4c69c5310 SHA1: 0494beeb512ab48a8921b43648e36644955a4c08 SHA256: bac7e7b759a0a679cd3e46af78e31e99f77d040109d80358656d76b47ee52850 Description: Tracks runtime library calls in dynamically linked programs Description-md5: ff2cc28bbc4f3ce119d059af641ea073 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: ltsp-client Priority: optional Section: misc Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: amd64 Source: ltsp Version: 5.5.1-1ubuntu2 Depends: dbus, dmz-cursor-theme, language-pack-en, libgl1-mesa-dri, plymouth-theme-ubuntu-logo, plymouth-theme-ubuntu-text, wget, alsa-utils, cron, cups-bsd, freerdp-x11 | rdesktop, inputattach | joystick (<< 20051019-6), ldm, libasound2-plugins, ltsp-client-core, ltspfsd (>= 1.1), netcat-traditional | netcat, ntpdate, numlockx, pulseaudio, python-serial, rsyslog | system-log-daemon, sane-utils, sshfs, x11-xserver-utils, xorg Recommends: fonts-dejavu-core | ttf-dejavu-core, fonts-freefont-ttf | ttf-freefont, fonts-kacst-one, fonts-khmeros-core, fonts-lao, fonts-liberation, fonts-nanum, fonts-takao-pgothic, fonts-thai-tlwg | ttf-thai-tlwg, ttf-indic-fonts-core, ttf-punjabi-fonts, ttf-ubuntu-font-family, ttf-wqy-microhei Suggests: zram-config Filename: pool/main/l/ltsp/ltsp-client_5.5.1-1ubuntu2_amd64.deb Size: 2534 MD5sum: d9703275e6eaf86d43c742b4a50661f0 SHA1: 2bf3d6360c34b46c22bc462c054f38c89bdb6e95 SHA256: 17ee01267b66611101dea044a2e90bc7fc563f7c276046eaa493ae638fadb6cd Description: complete LTSP client environment Homepage: http://ltsp.org Description-md5: 0797c03a2accc355031276c10753cce0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltsp-client-core Priority: extra Section: misc Installed-Size: 514 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: amd64 Source: ltsp Version: 5.5.1-1ubuntu2 Replaces: ltsp-server (<< 5.3.7) Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.14), libpopt0 (>= 1.14), busybox-static, udhcpc, usbutils, console-setup, initramfs-tools (>= 0.99), iproute, kbd | console-tools, lsb-base, lsb-release, nbd-client (>= 1:2.9.25-2), python, syslinux, tftp-hpa Recommends: procps, pciutils, dnsutils | knot-dnsutils Suggests: alsa-utils, cron, cryptsetup, cups-bsd, freerdp-x11 | rdesktop, inputattach | joystick (<< 20051019-6), ldm, libasound2-plugins, ltspfsd (>= 1.1), netcat-traditional | netcat, ntpdate, numlockx, pulseaudio, python-serial, rsyslog | system-log-daemon, sane-utils, sdm-terminal | x-display-manager, sshfs, x11-xserver-utils Breaks: ltsp-server (<< 5.3.7) Filename: pool/main/l/ltsp/ltsp-client-core_5.5.1-1ubuntu2_amd64.deb Size: 85154 MD5sum: 8afd70b1f7b80ca793c2c6ad5e1c2d94 SHA1: 72b7026ab51839377c842a9ea2b7efca2f140cd8 SHA256: 5f6e21c68dc467ca44ed53858b34d845a965957a9a045ed5be62dbbd7017cce3 Description: basic LTSP client environment Homepage: http://ltsp.org Description-md5: 21cd4e1b3dd672b557aaf4b926808f1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltsp-docs Priority: extra Section: doc Installed-Size: 790 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian/Ubuntu Maintainers Architecture: all Version: 1.1-1 Suggests: ltsp-server, ltsp-client Filename: pool/main/l/ltsp-docs/ltsp-docs_1.1-1_all.deb Size: 401262 MD5sum: b7e657c36565f828336ceedc15a89bd7 SHA1: 1783d4125a499a3ccfc890d5195937a3b66b99bf SHA256: dc381e9957174e55caadbf24569235155ff2bf895499e1f21630698d59394824 Description: LTSP Documentation Homepage: http://ltsp.org Description-md5: 06daf8e1e17016b8a8b7b2f23d20a678 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltsp-server Priority: optional Section: misc Installed-Size: 1200 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: all Source: ltsp Version: 5.5.1-1ubuntu2 Replaces: ltsp-utils Depends: debconf (>= 0.5) | debconf-2.0, debconf-utils, debootstrap (>= 1.0.30), gettext-base, iproute | freebsd-net-tools, lsb-release, openssh-client, python (>= 2.4), tcpd Recommends: nbd-server (>= 1:2.9.25-2), openbsd-inetd | inet-superserver, openssh-server, squashfs-tools, tftpd-hpa | atftpd | dnsmasq (>= 2.41) Suggests: audiooss, gnome-session | x-session-manager | x-window-manager, isc-dhcp-server | dhcp3-server | dnsmasq, ldm-server, libasound2-plugins, ltsp-docs, ltspfs, pulseaudio, qemu-user-static, sdm, x11-utils, xauth Conflicts: ltsp-utils Filename: pool/main/l/ltsp/ltsp-server_5.5.1-1ubuntu2_all.deb Size: 76166 MD5sum: 2c576672919270363ffcc233ec0ab2c6 SHA1: 90b3c05f11ebb14d513f67d1f122ba3bd060aeb3 SHA256: 6d1b1858a93b1a46cfa74f6242e1f735b7f910e57d5e15b93ab6f53c827bb2d4 Description: basic LTSP server environment Homepage: http://ltsp.org Description-md5: 8aa681f078049435e41b11312b34ff78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltsp-server-standalone Priority: optional Section: misc Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: all Source: ltsp Version: 5.5.1-1ubuntu2 Depends: gnome-session | x-session-manager | x-window-manager, isc-dhcp-server | dhcp3-server | dnsmasq, ldm-server, libasound2-plugins, ltspfs, ltsp-server, nbd-server (>= 1:2.9.25-2), openbsd-inetd | inet-superserver, openssh-server, squashfs-tools, tftpd-hpa | atftpd | dnsmasq (>= 2.41), x11-utils, xauth Recommends: ltsp-docs Filename: pool/main/l/ltsp/ltsp-server-standalone_5.5.1-1ubuntu2_all.deb Size: 2640 MD5sum: f050eb9c3cbb5ffa16cc9d42e094f790 SHA1: 9e64dfcd8ff5d07f9a24674856a1e51e347a6b76 SHA256: fc318a494c25da669bc92f9b90eb276d365b0389ed72c87e99649830eec744d3 Description: complete LTSP server environment Homepage: http://ltsp.org Description-md5: f17be0df737761189d469491fbbdd9dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltspfs Priority: optional Section: misc Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian LTSP Maintainers Architecture: amd64 Version: 1.3-1 Depends: libc6 (>= 2.15), libfuse2 (>= 2.8.1), libx11-6, python (>= 2.4), fuse Filename: pool/main/l/ltspfs/ltspfs_1.3-1_amd64.deb Size: 17710 MD5sum: 41fba4e8f38d44d23e99db630eb95d82 SHA1: 72e913b003360c0a5cf834768eef0cce4c321fa0 SHA256: f63ba595954aaf71d4d0842f5dbaf255e91b3f0b52cba79491b70c319f620ec6 Description: Fuse based remote filesystem for LTSP thin clients Description-md5: eb1db72c35a45038c0099ccae6f1a89d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltspfsd Priority: optional Section: misc Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian LTSP Maintainers Architecture: all Source: ltspfs Version: 1.3-1 Replaces: ldm (<= 2:0.1~bzr20071217-1) Depends: python (>= 2.4), ltspfsd-core Recommends: ldm Breaks: ldm (<= 2:0.1~bzr20071217-1), ltsp-client (<< 5.3) Filename: pool/main/l/ltspfs/ltspfsd_1.3-1_all.deb Size: 3610 MD5sum: 7fa7d9869114609968cac903521e27a5 SHA1: 2a513e175934b2f10a998382f3b81def79e3f82d SHA256: dde1234865d77a04751796577c899522271e86a1af0aa990704a4cfd1bc0209b Description: Fuse based remote filesystem hooks for LTSP thin clients Description-md5: 576700e58a1376fcc5f55306e06f103b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltspfsd-core Priority: optional Section: net Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian LTSP Maintainers Architecture: amd64 Source: ltspfs Version: 1.3-1 Replaces: ltspfsd (<= 0.5.11-1) Depends: libc6 (>= 2.15), python (>= 2.4), lsof, procps Breaks: ltspfsd (<= 0.5.11-1) Filename: pool/main/l/ltspfs/ltspfsd-core_1.3-1_amd64.deb Size: 16722 MD5sum: 02beff2307a332f7c66684caa5ccc18a SHA1: cc91e238c9907e9bb99b1e915b202f2e11b012f2 SHA256: 94b6b875926ad423b2129872d7cb3a69e76e807918dd48965702b4ad06f084fe Description: Fuse based remote filesystem daemon for LTSP thin clients Description-md5: dd834a9677cca07bbebb76b7c8037baf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lua5.1-doc Priority: optional Section: doc Installed-Size: 390 Maintainer: Ubuntu Developers Original-Maintainer: John V. Belmonte Architecture: all Source: lua5.1 Version: 5.1.5-5 Filename: pool/main/l/lua5.1/lua5.1-doc_5.1.5-5_all.deb Size: 100490 MD5sum: 5bee5395dcd3124e3fa33f1fe33f51f9 SHA1: 41a6ffd04bff64df1c4a4b0a03d4306859fb75b0 SHA256: ff5838cacd9dd1979abce59de77e573fc519b4955c64dadfcadb00176a81cc17 Description: Documentation for the Lua language version 5.1 Homepage: http://www.lua.org Description-md5: b77cd91c50d3e390c2f3bf168f592cab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lua5.2 Priority: optional Section: interpreters Installed-Size: 359 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Tassi Architecture: amd64 Version: 5.2.3-1 Provides: lua Depends: libc6 (>= 2.14), libreadline6 (>= 6.0) Filename: pool/main/l/lua5.2/lua5.2_5.2.3-1_amd64.deb Size: 94676 MD5sum: d45e6adad926a72307f8701c512661df SHA1: b38eacb15fba621acb63b34d9e875402a917d673 SHA256: 138845f113b5f94698073852154e42f77be15eae814d070b05497b8260435395 Description: Simple, extensible, embeddable programming language Multi-Arch: foreign Homepage: http://www.lua.org Description-md5: 130003bb49100d21ad1dd4ef09dee02f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lua5.2-doc Priority: optional Section: doc Installed-Size: 373 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Tassi Architecture: all Source: lua5.2 Version: 5.2.3-1 Filename: pool/main/l/lua5.2/lua5.2-doc_5.2.3-1_all.deb Size: 80150 MD5sum: 34571e8a0028a3b8e3b4a34036a3c7ca SHA1: 677a68d3adb9ad3f672686456c3a2d829bce838b SHA256: 826b718138931e676829f27897a198b53f01ae23890a5c35008272f78375102c Description: Documentation for the Lua language version 5.2 Homepage: http://www.lua.org Description-md5: bd6938b8d0d3131c26dfff9ef799d221 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: luatex Priority: optional Section: tex Installed-Size: 9888 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: amd64 Version: 0.76.0-3ubuntu1 Replaces: luatex-snapshot Depends: tex-common (>= 4.03), libc6 (>= 2.14), libcairo2 (>= 1.12), libgcc1 (>= 1:4.1.1), libkpathsea6, libpng12-0 (>= 1.2.13-4), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Recommends: texlive-luatex Conflicts: luatex-snapshot, texlive-base-bin (<< 2008) Breaks: context (<< 2013) Filename: pool/main/l/luatex/luatex_0.76.0-3ubuntu1_amd64.deb Size: 2776426 MD5sum: f4760f3763112f9693f70555d0b8c1cc SHA1: b48d34100a6270cfd377296c4ede9c971ee14e17 SHA256: 195b48d1ba7e03cd354c478276ec08e32d7370a679af7500e3ddd4a8e5b9dcd5 Description: next generation TeX engine Homepage: http://www.luatex.org Description-md5: c3439e4db43969ae3fdf48e4ac0a8f00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: lupin-casper Priority: extra Section: misc Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Agostino Russo Architecture: all Source: lupin Version: 0.55 Depends: initramfs-tools (>= 0.40ubuntu11), casper (>= 0.98) Filename: pool/main/l/lupin/lupin-casper_0.55_all.deb Size: 5876 MD5sum: 23ff46ba33315a2e5d4d8fca360e78e3 SHA1: 35bdd1026856acf47e56de81dbd942cd153ce3f5 SHA256: b2f56379ed9c4d7d68311ae7255dcfa020e51d63388763449c8c4a9545f81cf7 Description: Add support for loop-mount installations to casper Description-md5: 788e4fe72890ead4f26e1e29cce0021d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lupin-support Priority: extra Section: misc Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Agostino Russo Architecture: amd64 Source: lupin Version: 0.55 Depends: libc6 (>= 2.4), procps, lsb-base (>= 3.0-6), user-setup, grub-common (>= 2.00-5) Breaks: grub-pc (<< 1.99~20101122-1) Filename: pool/main/l/lupin/lupin-support_0.55_amd64.deb Size: 13854 MD5sum: 98bd889c61ec21949921e5825050a575 SHA1: d3ab13804746192bd8799852cd94bb33946ecb3d SHA256: e6bc4199365802b207dc4260f05ecf73579fffecd36ca8aab0ccb5773e6ff4e5 Description: Support files for loop-mount installations Description-md5: c45752cdd48323ac6e75a77024671003 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lvm2 Priority: optional Section: admin Installed-Size: 1246 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Version: 2.02.98-6ubuntu2 Depends: libc6 (>= 2.14), libdevmapper-event1.02.1 (>= 2:1.02.74), libdevmapper1.02.1 (>= 2:1.02.77), libreadline5 (>= 5.2), libudev1 (>= 183), lsb-base, dmsetup (>> 2:1.02.47), initscripts (>= 2.88dsf-13.3), watershed (>= 2) Suggests: thin-provisioning-tools Breaks: initramfs-tools (<< 0.99) Filename: pool/main/l/lvm2/lvm2_2.02.98-6ubuntu2_amd64.deb Size: 469600 MD5sum: 76d72b5259b958b9802845e6123e4431 SHA1: 52bca696115b57cd1ad1aa5afe187001f72c5ee2 SHA256: 882962707ba369f2c9ea2673fb8af70d552cb68f029dfa0293e51e83707ed525 Description: Linux Logical Volume Manager Multi-Arch: foreign Homepage: http://sources.redhat.com/lvm2/ Description-md5: 9df95d102d2b0aad5aff13603ef0cb3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: lxc Priority: optional Section: admin Installed-Size: 730 Maintainer: Ubuntu Developers Architecture: amd64 Version: 1.0.3-0ubuntu3 Depends: adduser, apparmor (>= 2.8.95~2430-0ubuntu4), bridge-utils, dnsmasq-base, iptables, liblxc1 (= 1.0.3-0ubuntu3), python3, python3-lxc, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.15) Recommends: lxc-templates (>= 0.8.0~rc1-4ubuntu43) Suggests: btrfs-tools, lvm2, lxctl Filename: pool/main/l/lxc/lxc_1.0.3-0ubuntu3_amd64.deb Size: 193924 MD5sum: 6c7b6ae13ae0cb7c4cafb86223453016 SHA1: 280ccf0625c6cb55177cc4c56c1f02c4fc705314 SHA256: 68c4483aa25c9c980e4c64a07ec90a80e8382c23ca11791d3e961dde244472df Description: Linux Containers userspace tools Homepage: http://linuxcontainers.org Description-md5: 4ece0dffd153c29e95ffdb89f8238dfc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lxc-dbg Priority: extra Section: debug Installed-Size: 1320 Maintainer: Ubuntu Developers Architecture: amd64 Source: lxc Version: 1.0.3-0ubuntu3 Depends: lxc (= 1.0.3-0ubuntu3), lxc-dev (= 1.0.3-0ubuntu3) Filename: pool/main/l/lxc/lxc-dbg_1.0.3-0ubuntu3_amd64.deb Size: 782676 MD5sum: 1c92ed6c4627ea821e6ef7b8c88b4562 SHA1: 660219267e8999c403b010fb7c6d380a015744b2 SHA256: abf86b2eef9430c569c46da05adc721e9e5b7b5d279ae8521e1f9d7f7b6e124b Description: Linux Containers userspace tools (debug) Homepage: http://linuxcontainers.org Description-md5: 9ec9c23e26368a478bce79545cfbb782 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lxc-dev Priority: optional Section: libdevel Installed-Size: 118 Maintainer: Ubuntu Developers Architecture: amd64 Source: lxc Version: 1.0.3-0ubuntu3 Depends: lxc (= 1.0.3-0ubuntu3) Filename: pool/main/l/lxc/lxc-dev_1.0.3-0ubuntu3_amd64.deb Size: 10198 MD5sum: d3863f08f8fb3f0fdbcec9fa8aa025b8 SHA1: d250229aee30fa244bce653c5b15e9b7966fb199 SHA256: 93cb9f339b3de704d6324a0ad4b1924a6ce63e7a4ec810a3a2d35c939f326da1 Description: Linux Containers userspace tools (development) Homepage: http://linuxcontainers.org Description-md5: c719178b7e79ce1ed39519707c589961 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lxc-templates Priority: optional Section: admin Installed-Size: 371 Maintainer: Ubuntu Developers Architecture: amd64 Source: lxc Version: 1.0.3-0ubuntu3 Replaces: lxc (<< 0.8.0~rc1-4ubuntu43) Depends: lxc (>= 0.8.0~rc1-4ubuntu43) Recommends: busybox-static, cloud-image-utils | cloud-utils, debootstrap | cdebootstrap, openssl, rsync, uuid-runtime, xz-utils Suggests: qemu-user-static Breaks: lxc (<< 0.8.0~rc1-4ubuntu43) Filename: pool/main/l/lxc/lxc-templates_1.0.3-0ubuntu3_amd64.deb Size: 61142 MD5sum: 91a7f2b31c2e009b09395939e62b611b SHA1: 77e63681db873dfb24a67e3310e61e22b6571419 SHA256: cafafb4a663885174aa6112926fc481987e8bb8bdbf0496b834211688a45eaf4 Description: Linux Containers userspace tools (templates) Homepage: http://linuxcontainers.org Description-md5: 9a526ab1c6ccc435c574f17de9485e7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lxc-tests Priority: optional Section: admin Installed-Size: 308 Maintainer: Ubuntu Developers Architecture: amd64 Source: lxc Version: 1.0.3-0ubuntu3 Depends: liblxc1 (= 1.0.3-0ubuntu3), libc6 (>= 2.7) Recommends: lxc, lxc-templates Filename: pool/main/l/lxc/lxc-tests_1.0.3-0ubuntu3_amd64.deb Size: 35382 MD5sum: 616f410a4784f1846cd8953b321fd784 SHA1: fc3c4f5e3132f431adb4e877a79e9bb74c32fb72 SHA256: 81ab5f052c6c51ae356ccbf9a3fc88bce372902a7d7520a0cd334087a1c00317 Description: Linux Containers userspace tools (test binaries) Homepage: http://linuxcontainers.org Description-md5: e4d2ce5721db0a82880b66fbd90c06d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lynx Priority: extra Section: web Installed-Size: 42 Maintainer: Ubuntu Developers Original-Maintainer: Atsuhito KOHDA Architecture: all Source: lynx-cur Version: 2.8.8pre4-1 Depends: lynx-cur (>= 2.8.8pre4-1) Filename: pool/main/l/lynx-cur/lynx_2.8.8pre4-1_all.deb Size: 4184 MD5sum: 4a6f06434ecc9ae8d2545447b44d749e SHA1: 6c880a88bdb14cb73c8542121d18f4987af59833 SHA256: e2b1581ddfdc22667651520622bc3d7adf0c90f71557703db161b63773f186c0 Description: Text-mode WWW Browser (transitional package) Multi-Arch: foreign Homepage: http://lynx.isc.org/ Description-md5: 97e502859f1b830fc1dd337e582aed20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lynx-cur Priority: extra Section: web Installed-Size: 2468 Maintainer: Ubuntu Developers Original-Maintainer: Atsuhito KOHDA Architecture: amd64 Version: 2.8.8pre4-1 Provides: news-reader, www-browser Depends: libbsd0 (>= 0.0), libbz2-1.0, libc6 (>= 2.15), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), libidn11 (>= 1.13), libncursesw5 (>= 5.6+20070908), libtinfo5, zlib1g (>= 1:1.1.4) Recommends: mime-support Conflicts: lynx (<< 2.8.7dev9-1.1), lynx-cur-wrapper (<< 2.8.8dev.8-2), lynx-ssl Filename: pool/main/l/lynx-cur/lynx-cur_2.8.8pre4-1_amd64.deb Size: 955886 MD5sum: 1d7bedcc1079b5230b061c854df4e671 SHA1: e5cdf056455d0fa33de99c1ffd75e823dee4622e SHA256: 1d0544cf356041522fb7ab33c659f014a1dfbea200534b3af753ef763ca829ad Description: Text-mode WWW Browser with NLS support (development version) Multi-Arch: foreign Homepage: http://lynx.isc.org/ Description-md5: 81ee4f1d0736a86ce9280e724bd4a457 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lzma Priority: optional Section: utils Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Mohammed Adnène Trojette Architecture: amd64 Version: 9.22-2ubuntu2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Conflicts: xz-lzma (<< 5.1.1alpha+20110809-2) Filename: pool/main/l/lzma/lzma_9.22-2ubuntu2_amd64.deb Size: 52578 MD5sum: 5be895058e3ce5a4dff0800804924e9b SHA1: 5565d3de99663f27c1685f9554b4a3e37a0d2718 SHA256: 723857da271fba13b77774e5fce683cfa087ea400863e477a1baa417a9806c28 Description: Compression and decompression in the LZMA format - command line utility Homepage: http://www.7-zip.org/sdk.html Description-md5: 58408f7f3feb10af77dc1ba3f87866f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lzma-dev Priority: optional Section: utils Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Mohammed Adnène Trojette Architecture: all Source: lzma Version: 9.22-2ubuntu2 Depends: zlib1g-dev Filename: pool/main/l/lzma/lzma-dev_9.22-2ubuntu2_all.deb Size: 45812 MD5sum: df94e4225e8e842f0339c2d2129f80c1 SHA1: ab491523469c2dbaa443c281fb63404d5685220e SHA256: 6b87fd988afe62878b870c890ebc27bda6ea34baf668f0c06da0fe01ab452d2e Description: Compression and decompression in the LZMA format - development files Homepage: http://www.7-zip.org/sdk.html Description-md5: 0cacacbe0a6e0e30dbb94b19810be100 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: m17n-contrib Priority: optional Section: text Installed-Size: 1460 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: all Version: 1.1.14-1 Depends: m17n-db (>= 1.6.3) Recommends: libm17n-0 (>= 1.6.3) Suggests: gawk Filename: pool/main/m/m17n-contrib/m17n-contrib_1.1.14-1_all.deb Size: 517040 MD5sum: f0fc871bf1f1221ff13948062b1d1848 SHA1: 10f722acc07e5f2adfa30136e3340230a3bb48f0 SHA256: 592fbbbe0912905c54fd587c7cb04a042e2bb4e0220989c171143835323376e5 Description: multilingual text processing library - contributed database Homepage: http://www.nongnu.org/m17n/ Description-md5: ae92fba819182986a351b0a69190b6c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: m17n-db Priority: optional Section: text Installed-Size: 6196 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: all Version: 1.6.4-1 Recommends: libm17n-0 (>= 1.6.0) Suggests: m17n-docs Filename: pool/main/m/m17n-db/m17n-db_1.6.4-1_all.deb Size: 1806636 MD5sum: b288b642cb5b1df087e3703913985f2e SHA1: 573164b4f65e5a66bf56ac565fb389fcaf4cae2f SHA256: 0021b86fd15837d48659cfec3eadb18af9f22ff66b70f0d9e2deb5c80d7d93b0 Description: multilingual text processing library - database Homepage: http://www.nongnu.org/m17n/ Description-md5: b17731f750110c56be8309f883c73a01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: m4 Priority: optional Section: interpreters Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 1.4.17-2ubuntu1 Depends: libc6 (>= 2.17), libsigsegv2 (>= 2.9) Filename: pool/main/m/m4/m4_1.4.17-2ubuntu1_amd64.deb Size: 194854 MD5sum: 1627a6bdd49609d93799967fa6c4ea4d SHA1: 4358d262605ae065a7dc9b6e0c80b3c7f44bf1cc SHA256: 080ec3b29149758647d2bf96474147d802278c49d55b44083dc9c33b830198d7 Description: a macro processing language Multi-Arch: foreign Homepage: http://www.gnu.org/software/m4/ Description-md5: c53f50cd9103ee8dc56a20d11403d2e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: m4-doc Priority: optional Section: doc Installed-Size: 889 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: m4 Version: 1.4.17-2ubuntu1 Filename: pool/main/m/m4/m4-doc_1.4.17-2ubuntu1_all.deb Size: 114408 MD5sum: b6164127ac4b31700810e06a7d5f4b74 SHA1: b8260b806c93709bf8c91098baee6d073a133aa3 SHA256: 83650432218db01a62b32e8ca5638bdfa6055a3b116ef90f3184326dd8e32c0e Description: Documentation for GNU m4 Homepage: http://www.gnu.org/software/m4/ Description-md5: c65b9e60b484fec633829ba1356453bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: maas Priority: optional Section: net Installed-Size: 39 Maintainer: Ubuntu Developers Architecture: all Version: 1.5+bzr2252-0ubuntu1 Depends: maas-cluster-controller, maas-region-controller, python-django-maas Filename: pool/main/m/maas/maas_1.5+bzr2252-0ubuntu1_all.deb Size: 2066 MD5sum: a90645ba3387ef299785ab83e124ba6f SHA1: 69d9c01a057b74e4f5a00331b90d23f19ec05908 SHA256: a51309f63768622d6e4672db58d2b5cf40c008449fcd9db10a55dc9c7cf2671e Description: MAAS server all-in-one metapackage Homepage: https://launchpad.net/maas Description-md5: 1922f0f9d84c3e0bab6f546b4f725d83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-cli Priority: optional Section: net Installed-Size: 103 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas-region-controller-min (<= 1.5+bzr1909-0ubuntu1) Depends: python-bzrlib, python-httplib2, python-maas-client (= 1.5+bzr2252-0ubuntu1), python-oauth, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Conflicts: maas-region-controller-min (<= 1.5+bzr1909-0ubuntu1) Filename: pool/main/m/maas/maas-cli_1.5+bzr2252-0ubuntu1_all.deb Size: 12742 MD5sum: 253b0a4c3c4844ee93f7fd47312c0e17 SHA1: 93bc6ec2c1eb0e6d285d4edde3ba906904b174d6 SHA256: 08c0a83387a53b7a6e1904b09970aff0e09df9472f96935debc807996b4366b5 Description: MAAS command line API tool Homepage: https://launchpad.net/maas Description-md5: ebc1160ae41a1453afa9908053862569 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-cluster-controller Priority: optional Section: net Installed-Size: 193 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas (<= 0.1+bzr1048+dfsg-0ubuntu1), maas-region-controller (<= 0.1+bzr1314+dfsg-0ubuntu1) Depends: apache2, authbind, bind9utils, distro-info, freeipmi-tools, maas-cli (= 1.5+bzr2252-0ubuntu1), maas-common (= 1.5+bzr2252-0ubuntu1), maas-dhcp (= 1.5+bzr2252-0ubuntu1), python-amqp, python-celery, python-httplib2, python-lockfile, python-maas-provisioningserver (= 1.5+bzr2252-0ubuntu1), python-netaddr, python-oauth, python-seamicroclient, python-tempita, python-twisted, python-zope.interface, rsyslog, syslinux-common, tgt, ubuntu-cloudimage-keyring, uuid-runtime, wget, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any Suggests: ipmitool, libvirt-bin, amtterm Conflicts: python-librabbitmq, tftpd-hpa Breaks: maas (<= 0.1+bzr1048+dfsg-0ubuntu1), maas-region-controller (<= 0.1+bzr1314+dfsg-0ubuntu1) Filename: pool/main/m/maas/maas-cluster-controller_1.5+bzr2252-0ubuntu1_all.deb Size: 15810 MD5sum: fc9d271538a141f5932b207d5883a29d SHA1: 4f2ad896bc7a6c0c69578e905568eab416915c1d SHA256: e1ec242d291e15cc5cde05ef15686b2f0e33634de8db79f1005d389bec94ea2f Description: MAAS server cluster controller Homepage: https://launchpad.net/maas Description-md5: 60eb924ed1db3312321742ae345a643d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-common Priority: optional Section: net Installed-Size: 45 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas (<= 0.1+bzr1048+dfsg-0ubuntu1) Breaks: maas (<= 0.1+bzr1048+dfsg-0ubuntu1) Filename: pool/main/m/maas/maas-common_1.5+bzr2252-0ubuntu1_all.deb Size: 5816 MD5sum: 6056a015890f9ea392d3feeeb284fa2d SHA1: 82cc22e3024406a546d0f508028776e9b225b26e SHA256: b1b7d65b3a789bb48acde5e94980e8fa44e7b4939d19ea0bedd225686fa4ed01 Description: MAAS server common files Homepage: https://launchpad.net/maas Description-md5: 4c4e26c4508be50f6c8f178d13db015c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-dhcp Priority: optional Section: net Installed-Size: 58 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas-dhcp (<= 0.1+bzr777+dfsg-0ubuntu1) Depends: isc-dhcp-server (>= 4.2.4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Breaks: maas-dhcp (<= 0.1+bzr777+dfsg-0ubuntu1) Filename: pool/main/m/maas/maas-dhcp_1.5+bzr2252-0ubuntu1_all.deb Size: 6074 MD5sum: e651d7069328dd2deca1d6e4ed7cdb22 SHA1: 7cc4b5349f5482744faca434e268d9b62be1e015 SHA256: a95fb892ef34e513f8333c9fdfce7c8a5b54b917aca263101aa1e8c087d1d6e5 Description: MAAS DHCP server Homepage: https://launchpad.net/maas Description-md5: 6803b126a1d51010036936c6202bbee6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-dns Priority: optional Section: net Installed-Size: 52 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas-dhcp (<= 0.1+bzr777+dfsg-0ubuntu1) Depends: bind9, maas-region-controller-min (= 1.5+bzr2252-0ubuntu1), python-iscpy Conflicts: dnsmasq Breaks: maas-dhcp (<= 0.1+bzr777+dfsg-0ubuntu1) Filename: pool/main/m/maas/maas-dns_1.5+bzr2252-0ubuntu1_all.deb Size: 2280 MD5sum: 94275f620a9a01bbfa5e759fe88b6a4b SHA1: d5af1a9838d0e6d68b75f431a18631b28cfb2621 SHA256: 6bc27a117279833abd3d1007a8e234403b0e5fff1b8739c1be081e65d470b37e Description: MAAS DNS server Homepage: https://launchpad.net/maas Description-md5: 6a07a239b106d73492d29ace75e11dd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-enlist Priority: extra Section: admin Installed-Size: 60 Maintainer: Andres Rodriguez Architecture: amd64 Version: 0.4+bzr38-0ubuntu1 Depends: libavahi-common3 (>= 0.6.16), libavahi-core7 (>= 0.6.24), libc6 (>= 2.2.5), libdebian-installer4 (>= 0.88ubuntu3), curl, archdetect-deb Filename: pool/main/m/maas-enlist/maas-enlist_0.4+bzr38-0ubuntu1_amd64.deb Size: 8800 MD5sum: 8497627ce6b399410581e17c27470230 SHA1: 6059c96f9a77a75104565e9a384515bae16974c5 SHA256: 0c34054ef1dd3ff1ecd2165d27a72b141cd7369a3589eb6358d8a1446aaa1f72 Description: MAAS enlistment tool Homepage: http://ubuntu.com Description-md5: 35ef48de687642aef498e7ed6ce4ec72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-region-controller Priority: optional Section: net Installed-Size: 50 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Depends: maas-region-controller-min (= 1.5+bzr2252-0ubuntu1), postgresql (>= 9.1), rabbitmq-server, debconf (>= 0.5) | debconf-2.0 Recommends: openssh-server, maas-dns (= 1.5+bzr2252-0ubuntu1) Filename: pool/main/m/maas/maas-region-controller_1.5+bzr2252-0ubuntu1_all.deb Size: 4678 MD5sum: 070b0b04d6bfcbbd6831a5d19bb04300 SHA1: e847acf38da27addb9c6bc15eded634c39d8ac65 SHA256: cf44ef82aff0e66c954614952b2f3566e74d59ff53a718eb3600ec59f3b75c13 Description: MAAS server complete region controller Homepage: https://launchpad.net/maas Description-md5: c82c1ae1bf8b0eaa2cfa459425a65ede Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-region-controller-min Priority: optional Section: net Installed-Size: 485 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas-region-controller (<= 1.4+bzr1693+dfsg-0ubuntu3) Depends: apache2, bind9utils, dbconfig-common, iproute, libapache2-mod-wsgi, libjs-raphael, libjs-yui3-full, libjs-yui3-min, maas-common (= 1.5+bzr2252-0ubuntu1), pwgen, python-django (>= 1.4), python-django-maas (= 1.5+bzr2252-0ubuntu1), python-django-piston, python-django-south, python-maas-provisioningserver (= 1.5+bzr2252-0ubuntu1), python-djorm-ext-pgarray, rsyslog, squid-deb-proxy, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: maas-region-controller (<= 1.4+bzr1693+dfsg-0ubuntu3) Filename: pool/main/m/maas/maas-region-controller-min_1.5+bzr2252-0ubuntu1_all.deb Size: 89790 MD5sum: 5eb84158b97cbf2cd75c676af2feca0e SHA1: 577930c4b4ecf0c39a722efe79eb571feaa39118 SHA256: c7c38f2b7d60865cdf46d01952883164cad98d81815ecbff185f2866ad34a0f4 Description: MAAS Server minimum region controller Homepage: https://launchpad.net/maas Description-md5: c3a055d47143d461098224bdfc876977 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mahjongg Priority: optional Section: games Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: gnome-mahjongg Version: 1:3.10.2-0ubuntu1 Depends: gnome-mahjongg Filename: pool/main/g/gnome-mahjongg/mahjongg_3.10.2-0ubuntu1_all.deb Size: 13618 MD5sum: 28b32d6553ece09e2a25d677a80822fb SHA1: 200ae08b17d1f472aefe7df8fff312bd87c867ee SHA256: ba7a78035fb0235bd03973e2d6dacfdca2d9ce8717b3674fa126d76f173844f5 Description: classic Eastern tile game for GNOME (transitional package) Homepage: https://live.gnome.org/Mahjongg Description-md5: cecedaefb36d5f7ce0cd9fb4619f0c44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mail-stack-delivery Priority: optional Section: mail Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: all Source: dovecot Version: 1:2.2.9-1ubuntu2 Replaces: dovecot-postfix (<< 1:1.2.12-0ubuntu1~) Depends: dovecot-core, dovecot-imapd, dovecot-pop3d, dovecot-managesieved, postfix Filename: pool/main/d/dovecot/mail-stack-delivery_2.2.9-1ubuntu2_all.deb Size: 9556 MD5sum: 6e18c7663dec61210e39bbf2d1f70370 SHA1: 8169b37bbf33eb209a471e3338a2dd3426f9f4a4 SHA256: c8e439405131707ed621d37d40fa9b86a9299dc70384d54326c49d5c3b7f1b37 Description: mail server delivery agent stack provided by Ubuntu server team Homepage: http://dovecot.org/ Description-md5: 66dc59ce6cc06ae2193237ef1f865a88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mailman Priority: optional Section: mail Installed-Size: 35311 Maintainer: Ubuntu Developers Original-Maintainer: Mailman for Debian Architecture: amd64 Version: 1:2.1.16-2 Depends: libc6 (>= 2.4), python:any (>= 2.7.1-0ubuntu2), debconf (>= 0.5) | debconf-2.0, logrotate (>= 3.8.0), cron, ucf, lsb-base, apache2 | httpd Pre-Depends: debconf | debconf-2.0 Recommends: default-mta | mail-transport-agent Suggests: spamassassin, lynx, listadmin Filename: pool/main/m/mailman/mailman_2.1.16-2_amd64.deb Size: 4204730 MD5sum: a0a5f054f7fac9142453489539e0b5a6 SHA1: 9f94d7cd4efb42ed2c4648d57a8fd3603c230970 SHA256: 9c1d8faa97e7b49da76332197d74ac1c7525ae58332d2a0e2cf55584877208ac Description: Powerful, web-based mailing list manager Homepage: http://www.list.org/ Description-md5: 8d16d632c49d70e6617b41c558e71966 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: make Priority: optional Section: devel Installed-Size: 320 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: amd64 Source: make-dfsg Version: 3.81-8.2ubuntu3 Depends: libc6 (>= 2.17) Suggests: make-doc Filename: pool/main/m/make-dfsg/make_3.81-8.2ubuntu3_amd64.deb Size: 119286 MD5sum: 6442fbef4450fc977fb1ab6297cf7797 SHA1: 61efe5efa39d309ddf69a089f47d861c52c84b0c SHA256: d157e982164648af4b7331d9db3834e23a305c6b4b643d9523a886cce6629302 Description: An utility for Directing compilation. Multi-Arch: foreign Homepage: http://www.gnu.org/software/make/ Description-md5: d401a320ce4c83de2826e48f1b47679c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: make-doc Priority: optional Section: doc Installed-Size: 1925 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: all Source: make-doc-non-dfsg Version: 3.81-5.1 Replaces: make (<< 3.80+3.81.rc2-1) Depends: dpkg (>= 1.15.4) | install-info Suggests: make Filename: pool/main/m/make-doc-non-dfsg/make-doc_3.81-5.1_all.deb Size: 914406 MD5sum: ede8369abca2b56d7f23bedeacef42bc SHA1: bd5b4e7f20b1ea8ca081b2a40006f00a09f5fe1f SHA256: 91a8911683435f7c7dad4b6d2c7ccd86cfe47b0079ac3cd9c5e71626575d21b2 Description: Documentation for the GNU version of the "make" utility. Enhances: make Description-md5: 6ec17c3075d72b902597318d8f1e82c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: makedev Priority: required Section: admin Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 2.3.1-93ubuntu1 Depends: base-passwd (>= 3.0.4) Conflicts: udev (<= 0.024-7) Filename: pool/main/m/makedev/makedev_2.3.1-93ubuntu1_all.deb Size: 26666 MD5sum: 979d22fe4dece008741c019c2c4784ea SHA1: 1bd76ac552f7572b9ff945e17b06dcb8fc293172 SHA256: b8120a3442ee14db32a4d33a2d0c370809bbf9ee6f2164dd08bc19feddec1293 Description: creates device files in /dev Multi-Arch: foreign Description-md5: 0d90ffc36746b1d25c5b125ef2221357 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: makedumpfile Priority: optional Section: devel Installed-Size: 355 Maintainer: Ubuntu Developers Original-Maintainer: John Wright Architecture: amd64 Version: 1.5.5-2ubuntu1 Replaces: kdump-tools (<< 1.3.4-1~) Depends: libc6 (>= 2.14), libdw1 (>= 0.143), libelf1 (>= 0.142), zlib1g (>= 1:1.2.0), perl Recommends: crash, kexec-tools Filename: pool/main/m/makedumpfile/makedumpfile_1.5.5-2ubuntu1_amd64.deb Size: 124512 MD5sum: e5ac537c93ce361ea5a193c887e4a080 SHA1: c6b80f99f00d022f85af4d9fd0906fd1b9bdac80 SHA256: e0cfc59e55970c06214e3158d114fe03ea092d9a73dff876877f533a7edba700 Description: VMcore extraction tool Description-md5: 63f8d9a2e0d40374bffffdb63689a386 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: malaga-bin Priority: optional Section: misc Installed-Size: 410 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: amd64 Source: malaga Version: 7.12-4.1ubuntu1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.8.0), libmalaga7, libpango-1.0-0 (>= 1.14.0), libreadline6 (>= 6.0) Recommends: malaga-doc, info | info-browser Suggests: malaga-mode Filename: pool/main/m/malaga/malaga-bin_7.12-4.1ubuntu1_amd64.deb Size: 144886 MD5sum: 16ce7a680d2e764fce668315f06677ca SHA1: b6359f4a6da87af05eed8c522496f0fd9fcdb2ac SHA256: af077c393a85f9bb050431a93f9f642313ba2c2e4e95417f948f78422679a4b3 Description: System for automatic language analysis Description-md5: bb7e4b48fb06c00b7e3e3eee66d269fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: malaga-doc Priority: optional Section: doc Installed-Size: 817 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: all Source: malaga Version: 7.12-4.1ubuntu1 Suggests: malaga-bin, doc-base Filename: pool/main/m/malaga/malaga-doc_7.12-4.1ubuntu1_all.deb Size: 574558 MD5sum: 804af3bf39c2894117c25351eedad160 SHA1: ee716f1f0323f2fa8f10b37afc407834b4989256 SHA256: acdc24f400e227b09ac6483d5b73638bbf21ca036d06f97952b42a06a6279b31 Description: Documentation for an automatic language analysis system Description-md5: 2cba8d0e6bde2b512cf46967189c0d64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: man-db Priority: standard Section: doc Installed-Size: 2060 Maintainer: Colin Watson Architecture: amd64 Version: 2.6.7.1-1 Replaces: man, manpages-de (<< 0.5-4), manpages-zh (<< 1.5.2-1.1), nlsutils Provides: man, man-browser Depends: groff-base (>= 1.18.1.1-15), bsdmainutils, debconf (>= 1.2.0) | debconf-2.0, libc6 (>= 2.14), libgdbm3 (>= 1.8.3), libpipeline1 (>= 1.3.0), zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.16.1~) Suggests: groff, less, www-browser Conflicts: man, suidmanager (<< 0.50) Breaks: manpages-zh (<< 1.5.2-1.1) Filename: pool/main/m/man-db/man-db_2.6.7.1-1_amd64.deb Size: 857574 MD5sum: 6d50466345bffa27fc28f093c18f0bbf SHA1: b2d0acfcbe14d00f70e7ae72d4ab086ed0614c78 SHA256: 4dba3250f4c84bf2c5816ab19f9c195388c1c96f7a77a1492de256fcb046bae3 Description: on-line manual pager Multi-Arch: foreign Homepage: http://man-db.nongnu.org/ Description-md5: 1784ddc55da0897a54ad44c7e0a7f547 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: manpages Priority: standard Section: doc Installed-Size: 909 Maintainer: Ubuntu Developers Original-Maintainer: Martin Schulze Architecture: all Version: 3.54-1ubuntu1 Replaces: bind, libc-bin (<< 2.17-91), rsh-server (<< 0.10-7) Suggests: man-browser Filename: pool/main/m/manpages/manpages_3.54-1ubuntu1_all.deb Size: 627456 MD5sum: 876f55711d7d6425b5c45e8c793c3f00 SHA1: 206705940b67962001eabc2b07fe1d91f3bf6978 SHA256: 661b91b55583401aeb64bf930caac8d170b84bc27c1ecc9e364faadfb1135998 Description: Manual pages about using a GNU/Linux system Homepage: http://www.kernel.org/doc/man-pages/ Description-md5: 3cdba21ee451777db03e5edc1ef4caa3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: manpages-dev Priority: optional Section: doc Installed-Size: 1834 Maintainer: Ubuntu Developers Original-Maintainer: Martin Schulze Architecture: all Source: manpages Version: 3.54-1ubuntu1 Replaces: glibc-doc (<< 2.11.2-3), libaio-dev Depends: manpages Suggests: man-browser Filename: pool/main/m/manpages/manpages-dev_3.54-1ubuntu1_all.deb Size: 1819920 MD5sum: 8b108211126e2798112fbd55292e5690 SHA1: 27a5b7fdccd9dea3af1a7b89c28c5e3e46e1ca5e SHA256: bec2865ffad27b657dccea6dbf65d2950f9149290c77f8fffb86a4af54d935c1 Description: Manual pages about using GNU/Linux for development Homepage: http://www.kernel.org/doc/man-pages/ Description-md5: 8a10ff7bcfd700d46fc7906a26abf372 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: mauve Priority: extra Section: devel Installed-Size: 2775 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 20120103-1 Depends: default-jdk | java-sdk Recommends: libecj-java Filename: pool/main/m/mauve/mauve_20120103-1_all.deb Size: 2663636 MD5sum: 17a3ad17f5a0c8db9c3a9dc811640f71 SHA1: 43c6324c85fe4d8439f10fa4feaaaa9608f87207 SHA256: 56672cfd6e39091bf0473f350c932e822886ac0c193aff078802fd9d79d5e44f Description: free test suite for the Java Class libraries Homepage: http://sourceware.org/mauve/ Description-md5: 94932e83e85845e914d9ff6942f2fa7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: maven-ant-helper Priority: extra Section: devel Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 7.10 Depends: ant, ant-contrib, ant-optional, maven-repo-helper (>= 1.4) Suggests: default-jdk-doc, libmaven-plugin-tools-java, libmaven2-core-java, libmodello-java (>= 1.0), libplexus-component-metadata-java Filename: pool/main/m/maven-ant-helper/maven-ant-helper_7.10_all.deb Size: 13628 MD5sum: 7f7c64d13a32d9f6fc09c369ba114862 SHA1: ecb48a328fa1c50bb4a81b9546a9a35f0e9f8f97 SHA256: a52643d1e0b201bf98e953d2ab76119fde9ff23c24f4f50952c4d0154cb42e52 Description: helper scripts for building Maven components with ant Homepage: http://svn.debian.org/wsvn/pkg-java/trunk/maven-ant-helper Description-md5: f2c490cf8d85b5e86cb5ef4121bb7088 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: maven-repo-helper Priority: optional Section: java Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.8.5 Depends: default-jre-headless | java2-runtime-headless, libstax-java Recommends: debhelper Suggests: maven-debian-helper Breaks: maven-debian-helper (<= 1.6.5) Filename: pool/main/m/maven-repo-helper/maven-repo-helper_1.8.5_all.deb Size: 128068 MD5sum: 921dc6c60605b960400c8fffca7a3c20 SHA1: 8c912b9cc1eb4998d20f200e46a0e180b4f8c5f8 SHA256: 6224e5e9071ed99e42508a1a817a7a57fadf41e462d58bc15bb33fb64c2cd77b Description: Helper tools for including Maven metadata in Debian packages Homepage: http://wiki.debian.org/Java/MavenRepoSpec Description-md5: eb08bec908759f1bd4f918393d802196 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mawk Priority: required Section: utils Installed-Size: 197 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Version: 1.3.3-17ubuntu2 Provides: awk Pre-Depends: libc6 (>= 2.14) Filename: pool/main/m/mawk/mawk_1.3.3-17ubuntu2_amd64.deb Size: 78870 MD5sum: ca1ecd2030a4aee73ae8d64ed7ddaba5 SHA1: ce7577c4a0692a0501a2d957af4e1be834a054bc SHA256: c1f3ebea7ffeca3d4289284fc54e61eafa7b50f1e5fcc2c04695ee4cae1eb958 Description: a pattern scanning and text processing language Multi-Arch: foreign Description-md5: e02f3de1fa8a56e3f324f082c0c2e41f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: mcp-account-manager-uoa Priority: optional Section: gnome Installed-Size: 1029 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: account-plugin-empathy Depends: empathy (= 3.8.6-0ubuntu9), libaccount-plugin-1.0-0 (>= 0.0.2), libaccounts-glib0 (>= 1.4), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.34), libgtk-3-0 (>= 3.0.0), libmission-control-plugins0 (>= 1:5.13.1~), libtelepathy-glib0 (>= 0.19.9), signon-plugin-password, telepathy-mission-control-5 (>= 1:5.13.0-0ubuntu3) Recommends: ubuntu-control-center-signon, account-plugin-aim, account-plugin-jabber, account-plugin-google, account-plugin-facebook, account-plugin-windows-live, account-plugin-yahoo, account-plugin-salut Suggests: account-plugin-gadugadu, account-plugin-groupwise, account-plugin-icq, account-plugin-irc, account-plugin-mxit, account-plugin-myspace, account-plugin-sametime, account-plugin-sip, account-plugin-yahoojp, account-plugin-zephyr Breaks: account-plugin-empathy Filename: pool/main/e/empathy/mcp-account-manager-uoa_3.8.6-0ubuntu9_amd64.deb Size: 25052 MD5sum: 39f92757134d7c2c758f5b7fbe9d683d SHA1: 2703f001d293d24209c3bc36cc1d6a4477d73997 SHA256: 4f1f2975d913dc919634e0ac761ff38a571c7c38fc20027e137ef7b5c7fe8742 Description: GNOME multi-protocol chat and call client (UOA plugin) Homepage: http://wiki.gnome.org/Empathy Description-md5: efd4bd83763226d5b1a23043496faa7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: mdadm Priority: optional Section: admin Installed-Size: 1163 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian mdadm maintainers Architecture: amd64 Version: 3.2.5-5ubuntu4 Replaces: mdctl Depends: libc6 (>= 2.15), debconf (>= 1.4.72), lsb-base (>= 3.1-6), udev (>= 136-1), initramfs-tools (>= 0.85eubuntu24), util-linux (>= 2.15-1), initscripts (>= 2.88dsf-13.3) Recommends: default-mta | mail-transport-agent, module-init-tools Breaks: dmraid (<= 1.0.0.rc16-4.2ubuntu1), mdctl (<< 0.7.2), raidtools2 (<< 1.00.3-12.1), udev (<< 136-1) Filename: pool/main/m/mdadm/mdadm_3.2.5-5ubuntu4_amd64.deb Size: 360964 MD5sum: 12e70a7bc08405ccf1fb8ccd2f19ba12 SHA1: 5b0e6eb9c598e279c01edcd919b3c9d2f3f80703 SHA256: 5875a96b45be08994f353599e9e9ebae8aa878145b8a1bdacf2a01750ba10482 Description: tool to administer Linux MD arrays (software RAID) Homepage: http://neil.brown.name/blog/mdadm Description-md5: 03a3779a0d242295f3d59f2b8278ca94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mdbtools Priority: optional Section: utils Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: amd64 Version: 0.7.1-1ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libmdb2 (>= 0.7~rc1), libmdbsql2 (>= 0.5.99.0.6pre1.0.20051109), libreadline6 (>= 6.0) Suggests: bash-completion, mdbtools-doc Filename: pool/main/m/mdbtools/mdbtools_0.7.1-1ubuntu1_amd64.deb Size: 38316 MD5sum: a44d779994b0b0dd61a53e10fe29e54b SHA1: 3311fb9ba1f7b7fe2a866c0d07c16bda4e2a75f6 SHA256: 436936ccb6497d13499f60ea2e229b960364238b2d436578b6bfa56afee22ff0 Description: JET / MS Access database (MDB) tools Multi-Arch: foreign Homepage: http://mdbtools.sourceforge.net/ Description-md5: 394b15518fd4ecc4667f403c8cd8e38d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mdbtools-dbg Priority: extra Section: debug Installed-Size: 633 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: amd64 Source: mdbtools Version: 0.7.1-1ubuntu1 Depends: libmdb2 (= 0.7.1-1ubuntu1), libmdbsql2 (= 0.7.1-1ubuntu1), mdbtools (= 0.7.1-1ubuntu1), mdbtools-gmdb (= 0.7.1-1ubuntu1), odbc-mdbtools (= 0.7.1-1ubuntu1) Filename: pool/main/m/mdbtools/mdbtools-dbg_0.7.1-1ubuntu1_amd64.deb Size: 408292 MD5sum: fa81c68ebd6ed8207f277ae0eaaad46f SHA1: f652d848bdf6b5329cc767ce8e1f3b6b658838d7 SHA256: 98afae638f1c78753d7b1f9c78bcb3f981cc1bae8397d702738bac94af5b864f Description: Debug symbols for MDB Tools Multi-Arch: same Homepage: http://mdbtools.sourceforge.net/ Description-md5: 6d7127d710018efb1b0f439eb3c55ad4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mdbtools-dev Priority: optional Section: devel Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: amd64 Source: mdbtools Version: 0.7.1-1ubuntu1 Depends: libglib2.0-dev, libmdb2 (= 0.7.1-1ubuntu1), libmdbsql2 (= 0.7.1-1ubuntu1), odbc-mdbtools (= 0.7.1-1ubuntu1) Suggests: mdbtools-doc Filename: pool/main/m/mdbtools/mdbtools-dev_0.7.1-1ubuntu1_amd64.deb Size: 62316 MD5sum: 8b9c7cd446a592f801e3ae9a7f4d3b26 SHA1: 07492190895e6d93331b4b0a6a8bee553b8932c2 SHA256: d1c9f3577c93d9404b85771e46f8c5b533d186267fe782f049049bf091c5ba55 Description: mdbtools development files Multi-Arch: same Homepage: http://mdbtools.sourceforge.net/ Description-md5: 7c77c836252f81a62b229ae2db41a06c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mdbtools-doc Priority: optional Section: doc Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: all Source: mdbtools Version: 0.7.1-1ubuntu1 Filename: pool/main/m/mdbtools/mdbtools-doc_0.7.1-1ubuntu1_all.deb Size: 52996 MD5sum: 68109ab97e0b7b40fc0b1a721cd6cb1b SHA1: 32b69d4e7e3a2e9a3cd6d3fe58879d944b26fd5d SHA256: 42afa14f9785c6d85bb30d4b5bce2d7c9eb5691823edda5465e12a0fd6ee6a70 Description: Documentation for MDB tools Homepage: http://mdbtools.sourceforge.net/ Description-md5: cb08c33f01d292b43d5c41399d15144e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mdbtools-gmdb Priority: optional Section: gnome Installed-Size: 451 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: amd64 Source: mdbtools Version: 0.7.1-1ubuntu1 Depends: libc6 (>= 2.14), libgdk-pixbuf2.0-0 (>= 2.22.0), libglade2-0 (>= 1:2.6.1), libglib2.0-0 (>= 2.12.0), libgnome2-0 (>= 2.17.3), libgnomeui-0 (>= 2.22.0), libgtk2.0-0 (>= 2.8.0), libmdb2 (>= 0.7.1), libmdbsql2 (>= 0.5.99.0.6pre1.0.20051109), libpango-1.0-0 (>= 1.14.0) Suggests: bash-completion, mdbtools-doc Filename: pool/main/m/mdbtools/mdbtools-gmdb_0.7.1-1ubuntu1_amd64.deb Size: 100976 MD5sum: 0ad16394924bd7f6daf20469d71fb5b4 SHA1: a86725f516fec84eba72f1fde1d45d437a1632c9 SHA256: ac394ea146b57e9e1cec3bca586455f120fea92a85ad8a5bfdb433bc0fa664a1 Description: JET / MS Access database (MDB) file viewer Multi-Arch: foreign Homepage: http://mdbtools.sourceforge.net/ Description-md5: dae71ac208fb76a68ff4a37ce1f8fe39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mdetect Priority: optional Section: utils Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: LIU Qi Architecture: amd64 Version: 0.5.2.3build2 Depends: libc6 (>= 2.15) Filename: pool/main/m/mdetect/mdetect_0.5.2.3build2_amd64.deb Size: 18028 MD5sum: 5714b779e0142f39efd0c26e23084b95 SHA1: 17a5f959fddf6ad435fce8f298b38d7deeb5d180 SHA256: 9ea7f1ec6e661dd675a72ee2dcc49bc144de9ff9cfa3b0299163329dc5c74ee8 Description: mouse device autodetection tool Description-md5: afc175d11efde40a5bc0f530a6de68ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: media-player-info Priority: optional Section: admin Installed-Size: 186 Maintainer: Kubuntu Developers Original-Maintainer: Martin Pitt Architecture: all Version: 21-0ubuntu1 Depends: udev Filename: pool/main/m/media-player-info/media-player-info_21-0ubuntu1_all.deb Size: 31094 MD5sum: 0a0e00df0cc30dc8077420d69cdf7a04 SHA1: 62af0e6ba6dd3a7165cc17bdf6a409dedd321ea0 SHA256: d5997160d907c8aba22650ec7eac4cea6bde5340a21214298b8bcc415cb803c6 Description: Media player identification files Bugs: https://bugs.launchpad.net/ubuntu/+filebug Homepage: http://www.freedesktop.org/software/media-player-info/ Description-md5: 127b94da56c51ffd39740e52530e0db6 Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: memcached Priority: optional Section: web Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: David Martínez Moreno Architecture: amd64 Version: 1.4.14-0ubuntu9 Depends: libc6 (>= 2.17), libevent-2.0-5 (>= 2.0.10-stable), libsasl2-2 (>= 2.1.24), perl, lsb-base (>= 3.2-13), adduser Suggests: libcache-memcached-perl, libmemcached Filename: pool/main/m/memcached/memcached_1.4.14-0ubuntu9_amd64.deb Size: 66682 MD5sum: 29893483844957ac4c33097d0c0108a6 SHA1: 248ea6cec12b6c1d3fcdbc80edcff2959f773687 SHA256: 3255c2d80eebdabbaa27af4eeaea9095c50d77c8eb03cdd6f8d10c99d4a04545 Description: A high-performance memory object caching system Homepage: http://www.danga.com/memcached/ Description-md5: c96e946324d6d6114d0daad2388780d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: memtest86+ Priority: standard Section: misc Installed-Size: 2468 Maintainer: Ubuntu Developers Original-Maintainer: Yann Dirson Architecture: amd64 Version: 4.20-1.1ubuntu8 Depends: debconf (>= 0.5) | debconf-2.0 Suggests: hwtools, memtester, kernel-patch-badram, memtest86, grub-pc | grub-legacy, mtools Filename: pool/main/m/memtest86+/memtest86+_4.20-1.1ubuntu8_amd64.deb Size: 69756 MD5sum: 7b0d7d4bb23738b15c4f46c4f9c365d0 SHA1: a689888884aeb0fbc32a01b39bf67f8b8589b9ff SHA256: 7e5282f01a4a8d912e6a0f5e283b635e05576d141e5e40423178ead30871c727 Description: thorough real-mode memory tester Homepage: http://www.memtest.org/ Description-md5: aa685f84801773ef97fdaba8eb26436a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: mesa-common-dev Priority: optional Section: devel Installed-Size: 1750 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1-mesa-dev (<< 7.5~rc4-2), libgl1-mesa-swx11-dev (<< 6.5.2), xlibmesa-gl-dev (<< 1:7), xlibosmesa-dev Depends: libx11-dev, libdrm-dev (>= 2.4.52) Filename: pool/main/m/mesa/mesa-common-dev_10.1.0-4ubuntu5_amd64.deb Size: 257720 MD5sum: f910715e57f9d1a84a6138b39306b131 SHA1: 3fd79c166650fc571082953eb96bbf23493b717b SHA256: 316f5eb3dd92d76fff49d016a4ef4222fbb9f52a0192e40f34eb19b4c4f4781f Description: Developer documentation for Mesa Homepage: http://mesa3d.sourceforge.net/ Description-md5: 0d9d46ba6861a0a8c404cf51db1e980d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: mesa-common-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: mesa-common-dev Filename: pool/main/x/xorg-lts-transitional/mesa-common-dev-lts-quantal_5_amd64.deb Size: 1548 MD5sum: 970ec777c06f5614c06bca671c49434d SHA1: 254097383d5003c95f84b4065283bc58d253823e SHA256: c6da89215e6207ab5339fbdbfc0b30d1d3874fafa0d9a43a996292e5cba27ea6 Description: Transitional package for mesa-common-dev Multi-Arch: same Description-md5: 6921b61ca0bc3d186b3e4d035cc29bee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mesa-common-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: mesa-common-dev Filename: pool/main/x/xorg-lts-transitional/mesa-common-dev-lts-raring_5_amd64.deb Size: 1550 MD5sum: 4e546c8d834cdd0502da680f943e81a1 SHA1: 6597d9caf68fe18661d62eff876f248350df8489 SHA256: 556b1c520b57bd6ea07948f55ba987f7d270bf9754392d85006004e5967b09d0 Description: Transitional package for mesa-common-dev Multi-Arch: same Description-md5: 6921b61ca0bc3d186b3e4d035cc29bee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mesa-common-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: mesa-common-dev Filename: pool/main/x/xorg-lts-transitional/mesa-common-dev-lts-saucy_5_amd64.deb Size: 1546 MD5sum: 158296d15aa9b12312cbbf6f863349f9 SHA1: 010b3120d44c90af0e8a747717d6b3f7b9e847b9 SHA256: 3914dff45538443c706fd129525032b2b1d02ad12cc7a4d4684046a66afd0b72 Description: Transitional package for mesa-common-dev Multi-Arch: same Description-md5: 6921b61ca0bc3d186b3e4d035cc29bee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mesa-vdpau-drivers Priority: optional Section: libs Installed-Size: 2681 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libvdpau1-drivers-mesa Provides: vdpau-driver Depends: libvdpau1, libc6 (>= 2.14), libdrm-nouveau2 (>= 2.4.38), libdrm-radeon1 (>= 2.4.31), libdrm2 (>= 2.4.38), libelf1 (>= 0.142), libgcc1 (>= 1:4.1.1), libgl1-mesa-dri, libllvm3.4, libstdc++6 (>= 4.6), libx11-xcb1, libxcb-dri2-0 (>= 1.8), libxcb1 Pre-Depends: multiarch-support Breaks: libvdpau1-drivers-mesa Filename: pool/main/m/mesa/mesa-vdpau-drivers_10.1.0-4ubuntu5_amd64.deb Size: 710766 MD5sum: ec15aa077e33949e79bfd4b97f8328b1 SHA1: 6ea4708275e9e00c0e6ddccb9d6d1c53e67d4ffb SHA256: d2e6154d5a8e5309150d6f70f5c26c6172900fd4c92c9e5c1a9f40fc3f843bab Description: Mesa VDPAU video acceleration drivers Enhances: libvdpau1 Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 19cfba61e1be17ccf30d9c5bb9ec109a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mesa-vdpau-drivers-dbg Priority: extra Section: debug Installed-Size: 19213 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libvdpau1-drivers-mesa-dbg Depends: mesa-vdpau-drivers (= 10.1.0-4ubuntu5) Pre-Depends: multiarch-support Breaks: libvdpau1-drivers-mesa-dbg Filename: pool/main/m/mesa/mesa-vdpau-drivers-dbg_10.1.0-4ubuntu5_amd64.deb Size: 3907450 MD5sum: a70350aa68998ed3cf5166da5393e7e2 SHA1: 2288306fc2ac75d485b5f4d3b588e356a69cabb3 SHA256: 61a29424f0345fcd388fc4b9804a2faa72bbaeebd832e6eefede4d1ba7979ede Description: Debugging symbols for the Mesa VDPAU video acceleration drivers Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 22710253a59dea3f45953a46464f9573 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: metacity Priority: optional Section: x11 Installed-Size: 852 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 1:2.34.13-0ubuntu4 Provides: x-window-manager Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libcanberra-gtk0 (>= 0.2), libcanberra0 (>= 0.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libice6 (>= 1:1.0.0), libmetacity-private0a (= 1:2.34.13-0ubuntu4), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libsm6, libstartup-notification0 (>= 0.7), libx11-6 (>= 2:1.4.99.1), libxcomposite1 (>= 1:0.3-1), libxcursor1 (>> 1.1.2), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxinerama1, libxrandr2, libxrender1, metacity-common (= 1:2.34.13-0ubuntu4), gsettings-desktop-schemas (>= 3.3.0), zenity, gnome-icon-theme Recommends: gnome-session | x-session-manager Suggests: gnome-control-center (>= 1:3.4.0), gnome-themes-standard, xdg-user-dirs Filename: pool/main/m/metacity/metacity_2.34.13-0ubuntu4_amd64.deb Size: 225698 MD5sum: a470092f2405f27069774b86e629e16e SHA1: 0217df69e184258bf6c93064dada6508d354b1ec SHA256: 202c1042170d3d07adf305a260e44cb12167c31a94a2e76955c5ab34f6340e31 Description: lightweight GTK+ window manager Description-md5: 06e64374861a42f6f96cc5a654ad56b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-desktop-gnome, edubuntu-usb-live Package: metacity-common Priority: optional Section: misc Installed-Size: 1064 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: metacity Version: 1:2.34.13-0ubuntu4 Depends: dconf-gsettings-backend | gsettings-backend, sgml-base (>= 1.26+nmu2) Filename: pool/main/m/metacity/metacity-common_2.34.13-0ubuntu4_all.deb Size: 97294 MD5sum: 9687570633b1ab8fd3aad7fc463332f4 SHA1: 06484e2795c85c8a51762f77a17904b9aa4553ca SHA256: b00874390cc6508d0b14e834c366525a87e0170c16b428fddf932be2d306530c Description: shared files for the Metacity window manager Description-md5: 386fc245b801260f4b7c75b1915cb1ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: mime-construct Priority: optional Section: mail Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Roderick Schertler Architecture: all Version: 1.11 Depends: perl, libmime-base64-perl, libmime-types-perl, libproc-waitstat-perl Filename: pool/main/m/mime-construct/mime-construct_1.11_all.deb Size: 19738 MD5sum: d2c118888eca876d947561763c46fb35 SHA1: c6ad8cf71514c7904887e9574b3fab5e526222f1 SHA256: 5a55c5a7f9eac1cc3acffda97a784261c8488af9510ccc917e4c0244e5c45bc2 Description: construct/send MIME messages from the command line Description-md5: e07442bc1343c7ea762a25120a1d5920 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mime-support Priority: important Section: net Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Mime-Support Maintainers Architecture: all Version: 3.54ubuntu1 Recommends: file Filename: pool/main/m/mime-support/mime-support_3.54ubuntu1_all.deb Size: 31656 MD5sum: d7c05a64b14e7cce0b1e1e420122a4d0 SHA1: ab4e1d606026fdc2f14650a2483afbfbbe24d712 SHA256: de742c5ef09696726016954d72c946f1138d065e2d5209144670ac8ba606edd8 Description: MIME files 'mime.types' & 'mailcap', and support programs Multi-Arch: foreign Description-md5: 6a960d88790635886bd17b629c708b8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: mir-doc Priority: optional Section: doc Installed-Size: 98503 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: all Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libmirclient-dev, libmirserver-dev Filename: pool/main/m/mir/mir-doc_0.1.8+14.04.20140411-0ubuntu1_all.deb Size: 51113652 MD5sum: 5e01e53e27a2a8d16a86284bb071c0e7 SHA1: e5bdc4433c7ca9a00a66c37b8299b6129cbdc81f SHA256: ae1c284b32c650676d17d814dc6159b63eb33c741df6fc6aa89e57db6aa65989 Description: API documentation for mir Homepage: https://launchpad.net/mir Description-md5: 628500f58a32ea2c0fc1cb782e6f260f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mircommon-dev Priority: optional Section: libdevel Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Filename: pool/main/m/mir/mircommon-dev_0.1.8+14.04.20140411-0ubuntu1_amd64.deb Size: 25128 MD5sum: 7340cda3c36f97d531cd743fcf5c12af SHA1: dcae2ecfeed262847bd2c70b436c69c6505c4e4a SHA256: 0eae2d8e540bac3c27defe03fe723e8117e2b014b4d841daf4ca43bfec48eadc Description: Display server for Ubuntu - development headers Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: afceda22de73c8f8ef2fe0642ae4e906 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: miscfiles Priority: optional Section: text Installed-Size: 3047 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Bushnell, BSG Architecture: all Version: 1.4.2.dfsg.1-9.1 Provides: wordlist Depends: debconf | debconf-2.0, dictionaries-common (>= 0.20) Filename: pool/main/m/miscfiles/miscfiles_1.4.2.dfsg.1-9.1_all.deb Size: 1317130 MD5sum: 3aad1cebe12dbc32ba77380d81ecc601 SHA1: a8b7c9248d8a5711e223c693e2a67624764dfc55 SHA256: 94d21f922ce4e5592424afd058c9b091627eee1864d40daf9001712a91ac1814 Description: Dictionaries and other interesting files Description-md5: c14499491490d96255ece227b5e4fb33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop Package: mklibs Priority: optional Section: devel Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: all Version: 0.1.39 Depends: python (>= 2.4), binutils, gcc, dpkg-dev, mklibs-copy (>= 0.1.39) Recommends: libc6-pic | libc6.1-pic | libc0.1-pic | libc0.3-pic Filename: pool/main/m/mklibs/mklibs_0.1.39_all.deb Size: 8996 MD5sum: 412788a550e5b662531b07ac8561bea9 SHA1: 11f09081df771a35b86a3ff61bab9bab0cb3cfb0 SHA256: c6bb19feeca497fea47b4d167438d74da3f99bda2b51d1803eb365464512faa8 Description: Shared library reduction script Description-md5: 566a24327f5b3aff340afc352308942e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mklibs-copy Priority: optional Section: devel Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: amd64 Source: mklibs Version: 0.1.39 Depends: python (>= 2.4), dpkg-dev, python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Filename: pool/main/m/mklibs/mklibs-copy_0.1.39_amd64.deb Size: 33384 MD5sum: 1edfc5913f9d8ecd8721f829427f5802 SHA1: 1b3f80eb4023a2b3b3812e21e3a672223dca07f2 SHA256: ee52497364208aced8cf408799089229abc6770ecf1f9e280a71af90482d5f6c Description: Shared library reduction script Description-md5: 27bc2ab99a6d95d524085d903621e749 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mknbi Priority: optional Section: admin Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Version: 1.4.4-10 Depends: perl Filename: pool/main/m/mknbi/mknbi_1.4.4-10_amd64.deb Size: 74544 MD5sum: e60ce8002b20e9e7cb6f7380ad0da588 SHA1: 6475cdeed43de991eda7d006908d5f34e12cf1df SHA256: a3aef1e554525c8e5a469e4c056094f67ea52f929bac0130279c71246ffc09e1 Description: Create tagged images for Etherboot or Netboot Homepage: http://www.etherboot.org/ Description-md5: 2327c8ec8727ad94627d94e5a8700aa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mksh Priority: optional Section: shells Installed-Size: 835 Maintainer: Ubuntu Developers Original-Maintainer: Thorsten Glaser Architecture: amd64 Version: 46-2ubuntu3 Depends: libc6 (>= 2.15) Suggests: ed Filename: pool/main/m/mksh/mksh_46-2ubuntu3_amd64.deb Size: 380296 MD5sum: dbbf0dbb35eac8d5fe3bcf9a14d780d3 SHA1: a717fc17dfa8624b7b2cce73f71bbcffe69c6eac SHA256: 623fc0f467faf2ff636d0db51b6d23518edb0ea5785a893cced9e3ce1490b9d7 Description: MirBSD Korn Shell Built-Using: gcc-4.8 (= 4.8.2-10ubuntu2), klibc (= 2.0.3-0ubuntu1), linux (= 3.12.0-7.15) Multi-Arch: foreign Homepage: http://mirbsd.de/mksh Description-md5: dbb9cd4655763bf0804c90898b9feac0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mlocate Priority: standard Section: utils Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: amd64 Version: 0.26-1ubuntu1 Depends: libc6 (>= 2.14), adduser Conflicts: findutils (<= 4.2.31-1), slocate (<= 3.1-1.1) Filename: pool/main/m/mlocate/mlocate_0.26-1ubuntu1_amd64.deb Size: 54646 MD5sum: f88de15c7b59b229e38217e3c311eb50 SHA1: 2c1e0445a2323278f87a709736701dbd5a445627 SHA256: 4690f82e45addcc09a365ff8f277867bb89aeebbda93f9f6fdd9d697c45d42a0 Description: quickly find files on the filesystem based on their name Homepage: http://carolina.mff.cuni.cz/~trmac/blog/mlocate Description-md5: 34e9c00f37885dbcdfb61296f24c84df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: mm-common Priority: optional Section: devel Installed-Size: 7672 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.9.6-1 Depends: automake (>= 1.9) | automaken, libtool (>= 1.5), pkg-config (>= 0.20) Recommends: g++ | c++-compiler, doxygen, graphviz, xsltproc Suggests: libglibmm-2.4-dev, libsigc++-2.0-doc, libglibmm-2.4-doc Filename: pool/main/m/mm-common/mm-common_0.9.6-1_all.deb Size: 516518 MD5sum: d053298823922cb349bfff8a82df3bf0 SHA1: 1243097ab4f24dc35c42f47a2cf793b07f369a74 SHA256: e65cea417a376811e9280ca399c178b14c20e90ee27761a8ddd3728c8dcab1c1 Description: Common build files of the GNOME C++ bindings Homepage: http://www.gtkmm.org/ Description-md5: d346825f7d0b94a5feb3b3cceb14012a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mobile-broadband-provider-info Priority: extra Section: admin Installed-Size: 367 Maintainer: Bhavani Shankar Architecture: all Version: 20140317-1 Filename: pool/main/m/mobile-broadband-provider-info/mobile-broadband-provider-info_20140317-1_all.deb Size: 46130 MD5sum: 78115a60aa276fe10e06b9faa0d87e7e SHA1: 8b5f3306396d54160317cb30eab6ca57a8dc6780 SHA256: 7503522305c14cf5c657d65385e23c38b960dfd913049bde5d2b221146afdffb Description: database of mobile broadband service providers Homepage: https://wiki.gnome.org/Projects/NetworkManager/MobileBroadband/ServiceProviders Description-md5: 54ff38377fdb6d2b2ad180a0c0c510bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: modemmanager Priority: optional Section: net Installed-Size: 2108 Maintainer: Alexander Sack Architecture: amd64 Version: 1.0.0-2ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), libmbim-glib0 (>= 1.4.0), libmm-glib0 (>= 1.0.0), libqmi-glib0 (>= 1.0), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Recommends: usb-modeswitch Breaks: network-manager (<< 0.9.8.2-1) Filename: pool/main/m/modemmanager/modemmanager_1.0.0-2ubuntu1_amd64.deb Size: 461254 MD5sum: d645b06615c1061e940d749ce3b8c0b4 SHA1: e32112f455ffb8d6e890d7c812605659f48c05b0 SHA256: 4848a91626a251fc314e5049c1bfb0b680dd2fdfe996ad57619f325c13c33b2f Description: D-Bus service for managing modems Description-md5: a5650d0723072b90ad274aa0bca40c87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: modemmanager-dbg Priority: extra Section: debug Installed-Size: 3100 Maintainer: Alexander Sack Architecture: amd64 Source: modemmanager Version: 1.0.0-2ubuntu1 Depends: modemmanager (= 1.0.0-2ubuntu1) Filename: pool/main/m/modemmanager/modemmanager-dbg_1.0.0-2ubuntu1_amd64.deb Size: 2310968 MD5sum: 1113c78d119cc0fbd9ca9ee4de0ee936 SHA1: 53ff5d31ce627b5d9ba4c9d3e0e5641dcf646cd2 SHA256: 8456b78749596fc48eacaa14b29975cb3ceb5f09dcf77fa5aead92d4bb971703 Description: D-Bus service for managing modems - debugging symbols Description-md5: c4e62b545c7eb9572a5a02bfad49f260 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: modemmanager-dev Priority: optional Section: libdevel Installed-Size: 126 Maintainer: Alexander Sack Architecture: amd64 Source: modemmanager Version: 1.0.0-2ubuntu1 Replaces: modemmanager (<< 0.7.990) Suggests: modemmanager-doc Breaks: modemmanager (<< 0.7.990) Filename: pool/main/m/modemmanager/modemmanager-dev_1.0.0-2ubuntu1_amd64.deb Size: 17786 MD5sum: cd51be82900de8afd4e47f413f9eebfe SHA1: 2487a3000200b8de020782587950fdef06f23a13 SHA256: 68dc358d550f9e72bfbee949b83752b2c3d329ef0dbde733d0956a2cd4cd9312 Description: D-Bus service for managing modems - development files Description-md5: 9ebdc1d329b316d8802a2efa63cc55c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: modemmanager-doc Priority: optional Section: doc Installed-Size: 725 Maintainer: Alexander Sack Architecture: all Source: modemmanager Version: 1.0.0-2ubuntu1 Suggests: devhelp Filename: pool/main/m/modemmanager/modemmanager-doc_1.0.0-2ubuntu1_all.deb Size: 177936 MD5sum: 9a52c1f2b20072d0a124f07520ef1d15 SHA1: a2d0aae4f3573092c272d51421f49c385e423c8a SHA256: fb37bf94efab011ee6d0f92b713d9f972d3f6fb8c70f9c061b382d8894b50800 Description: D-Bus service for managing modems - documentation files Description-md5: 081efa7f4655df81548fa6ec2addd3e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: module-init-tools Priority: required Section: admin Installed-Size: 31 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: all Source: kmod Version: 15-0ubuntu6 Depends: libkmod2, kmod Pre-Depends: dpkg (>= 1.15.7.2) Filename: pool/main/k/kmod/module-init-tools_15-0ubuntu6_all.deb Size: 1938 MD5sum: d9749724e8c6e659df6d7785247451a5 SHA1: 91fe365ed4b3ad45b3342d5185110e461f8e32bf SHA256: c0bc525d5a6055baac467f3bed4c9405e31361e751014e53844e24b8aa6b181c Description: transitional dummy package (module-init-tools to kmod) Multi-Arch: foreign Description-md5: 1b0992eebd45ca5ceadc775532a4f6a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: mono-4.0-gac Priority: optional Section: cli-mono Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-gac (<< 2.0) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6) Recommends: cli-common (>= 0.4.0) Filename: pool/main/m/mono/mono-4.0-gac_3.2.8+dfsg-4ubuntu1_all.deb Size: 20002 MD5sum: fb2ecfc94b84cff59771e4b2e9b1eb89 SHA1: 8481e56566a923e6529325bda619c5b780f7fbe1 SHA256: 86ad3c049e4e7dae9d0c221b2239da0e4ff57ab530580bc6fd9edbb58700b62b Description: Mono GAC tool (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: c6f7de15f8bc49ae076247d65db4e420 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: mono-csharp-shell Priority: optional Section: shells Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-runtime (>= 2.10.1), libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-csharp4.0c-cil (>= 3.2.8), libmono-management4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/mono-csharp-shell_3.2.8+dfsg-4ubuntu1_all.deb Size: 30798 MD5sum: 28e1472566a68763c629f0f09dcfcfba SHA1: 99e82c3d7a47c0820dcc29be6d7fae1dc85e9bc0 SHA256: d9145b6370979c6c05d4b1ec500e7ecd9a9c70b0c377d1c085bdc29400d4a1b1 Description: interactive C# shell Homepage: http://www.mono-project.com/CsharpRepl Description-md5: 18c4878a8af999586fc3a3eec3c35ba1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-devel Priority: optional Section: devel Installed-Size: 9152 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-dev (<< 2.4), libmono-facades-system-collections-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-collections-concurrent-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-annotations-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-eventbasedasync-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-contracts-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-debug-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-tools-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-dynamic-runtime-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-globalization-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-io-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-expressions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-parallel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-queryable-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-networkinformation-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-requests-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-objectmodel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-resources-resourcemanager-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-interopservices-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-numerics-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-json-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-xml-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-security-principal-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-servicemodel-http-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-servicemodel-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-encoding-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-encoding-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-regularexpressions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-tasks-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-tasks-parallel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-readerwriter-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-xdocument-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-xmlserializer-cil (<< 3.2.3+dfsg-5~), mono-1.0-devel (<< 2.0), mono-2.0-devel (<< 2.10), mono-gmcs (<< 2.0), mono-mcs (<< 2.0) Provides: assembly-linker, c-sharp-2.0-compiler, c-sharp-3.0-compiler, c-sharp-4.0-compiler, c-sharp-4.5-compiler, c-sharp-compiler, resource-file-generator, strong-name-tool Depends: mono-runtime (>= 2.10.1), libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libglib2.0-0 (>= 2.39.90), libmono-cecil-private-cil (>= 3.2.8), libmono-codecontracts4.0-cil (>= 1.0), libmono-compilerservices-symbolwriter4.0-cil (>= 3.0.6), libmono-corlib2.0-cil (>= 3.2.8), libmono-corlib4.5-cil (>= 3.2.8), libmono-peapi2.0a-cil (>= 3.2.8), libmono-peapi4.0a-cil (>= 3.2.8), libmono-relaxng4.0-cil (>= 2.10.1), libmono-security2.0-cil (>= 3.0.6), libmono-security4.0-cil (>= 3.0.6), libmono-system-componentmodel-composition4.0-cil (>= 3.0.6), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-configuration-install4.0-cil (>= 1.0), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-data2.0-cil (>= 3.0.6), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-numerics4.0-cil (>= 1.0), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-runtime4.0-cil (>= 2.10.1), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-web-services4.0-cil (>= 1.0), libmono-system-web2.0-cil (>= 2.10.3), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system2.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono2.0-cil (>= 3.0.6), mono-mcs (= 3.2.8+dfsg-4ubuntu1), mono-gac (= 3.2.8+dfsg-4ubuntu1), mono-xbuild (= 3.2.8+dfsg-4ubuntu1), libmono-cil-dev (= 3.2.8+dfsg-4ubuntu1), libmono-2.0-dev (>= 3.2.8+dfsg-4ubuntu1), libmono-2.0-dev (<< 3.2.8+dfsg-4ubuntu1.1~), pkg-config Recommends: mono-csharp-shell Breaks: libmono-facades-system-collections-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-collections-concurrent-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-annotations-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-eventbasedasync-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-contracts-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-debug-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-tools-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-dynamic-runtime-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-globalization-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-io-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-expressions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-parallel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-queryable-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-networkinformation-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-requests-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-objectmodel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-resources-resourcemanager-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-interopservices-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-numerics-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-json-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-xml-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-security-principal-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-servicemodel-http-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-servicemodel-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-encoding-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-encoding-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-regularexpressions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-tasks-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-tasks-parallel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-readerwriter-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-xdocument-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-xmlserializer-cil (<< 3.2.3+dfsg-5~) Filename: pool/main/m/mono/mono-devel_3.2.8+dfsg-4ubuntu1_all.deb Size: 1646544 MD5sum: 1f5c2e2687d2cc6204ddf8cdd678f251 SHA1: 83956e90e8755bbeec5dafbfc68e164bbbf446c5 SHA256: d6ef1c2f52e797db1f7af07aab3c7b530f14a69284c1faa72c5825bca889c157 Description: Mono development tools Homepage: http://www.mono-project.com/ Description-md5: 629b185238e84b344f23bbe244129c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-dmcs Priority: optional Section: cli-mono Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-mcs (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-dmcs_3.2.8+dfsg-4ubuntu1_all.deb Size: 10168 MD5sum: ed8ce7b7d8e2956ae3d94b4eefd10245 SHA1: 0753bdc122ac4b9b90448197711dbbb4fd6c4995 SHA256: e6c7684160f345cef31cf503ae4cd07fbb7390b5432ddb22280483ee6e224822 Description: Mono C# 4.0 compiler for CLI 4.0 (transitional package) Homepage: http://www.mono-project.com/ Description-md5: 5a0af28422409d6d9ac8a99a958b1b15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-gac Priority: optional Section: devel Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Provides: global-assembly-cache-tool Depends: mono-4.0-gac (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-gac_3.2.8+dfsg-4ubuntu1_all.deb Size: 15442 MD5sum: 5a49a3f493127e37d89479dc9d39ed32 SHA1: 1530b932652f9a4956d1ac768d47b9dfee427a95 SHA256: 2f82d246689b886311e94b8de44054f013fb306bae135a7a0b220c3da5b29f26 Description: Mono GAC tool Homepage: http://www.mono-project.com/ Description-md5: c2a755c0e15dc47388d889b42eb894b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: mono-gmcs Priority: optional Section: devel Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-mcs (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-gmcs_3.2.8+dfsg-4ubuntu1_all.deb Size: 10162 MD5sum: e0db540882131029c3f328f70db5a1e4 SHA1: f1b2f1e7462ac200a0183ea1b280ba3dfa4e6156 SHA256: e48fb3ab10ac5d370a6af2b1b0c3617a283a434d877b62ef0a2ba2bec53bfa67 Description: Mono C# 2.0 and C# 3.0 compiler for CLI 2.0 (transitional package) Homepage: http://www.mono-project.com/ Description-md5: e91b284ad1c027652db16ccf4b670e47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-mcs Priority: optional Section: devel Installed-Size: 1807 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-devel (<< 2.4.2.3), mono-dmcs (<< 3.0~), mono-gmcs (<< 3.0~) Depends: mono-runtime (>= 2.10.1), libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono-corlib4.5-cil (<< 3.2.9), libmono-microsoft-csharp4.0-cil Recommends: pkg-config Breaks: mono-dmcs (<< 3.0~), mono-gmcs (<< 3.0~) Filename: pool/main/m/mono/mono-mcs_3.2.8+dfsg-4ubuntu1_all.deb Size: 490020 MD5sum: 4e5cbc615e48c47d63c0f58e8b08c8c5 SHA1: 38ee82ba7ced96c07b8f21ee9a1d3e5b3b59a76b SHA256: 327d55a8e6983c589a63bca563fc34370b24b047e56254be29675ace03cd89bd Description: Mono C# 2.0 / 3.0 / 4.0 / 5.0 compiler for CLI 2.0 / 4.0 / 4.5 Homepage: http://www.mono-project.com/ Description-md5: 3f1aba4e9956099bfa702d53c275ffad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-runtime Priority: optional Section: interpreters Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.2.5), mono-runtime-sgen (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-runtime_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 12302 MD5sum: 2e677489b94812f91d61abad24fd680e SHA1: ea7c7c820b98eac3204fdf0be623721de924d96b SHA256: 562123c501d5497d4a1d97279b33759d6909174fb6c3762d2c4397f52399930d Description: Mono runtime - default version Homepage: http://www.mono-project.com/ Description-md5: 0ef9550e0b708629302fd4b5f9bdeb39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: mono-runtime-boehm Priority: optional Section: cli-mono Installed-Size: 3516 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.15), mono-runtime-common (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-runtime-boehm_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 1165682 MD5sum: 9d99bc75d2edd4f67f4ad4c058bdf361 SHA1: 9a942afba8257a659a84db0b368f76ad32c12c43 SHA256: 3fca76d8198331f727551ebe830edf980aa010bf0af9df5361a1d3bc7ee1476d Description: Mono runtime - Boehm Homepage: http://www.mono-project.com/ Description-md5: 74feada03d34e3c54c7fc03b376a7cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-runtime-common Priority: optional Section: cli-mono Installed-Size: 1296 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono0 (<< 2.4), mono-common (<< 2.4), mono-jit (<< 2.4), mono-runtime (<< 3.2.1) Provides: cli-runtime, cli-virtual-machine Depends: libc6 (>= 2.16), zlib1g (>= 1:1.1.4), mono-gac (= 3.2.8+dfsg-4ubuntu1) Recommends: binfmt-support (>= 1.1.2) Suggests: xdg-utils | libgnome2-0 | konqueror Conflicts: mono-1.0-runtime (<< 2.4), mono-2.0-runtime (<< 2.4), mono-common (<< 2.4), mono-jit (<< 2.4), mono-runtime (<< 3.2.1) Filename: pool/main/m/mono/mono-runtime-common_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 205314 MD5sum: 0c4baa7dd6039da53f03fbc0ba717345 SHA1: 8fab290568458f2d093267275198353ae6eb8aa6 SHA256: faf72542b465bc579e2f4eabe00258c83750377f3bc5e6d59cf363c54f5b2426 Description: Mono runtime - common files Homepage: http://www.mono-project.com/ Description-md5: 0048a533f5c0a7f5ad413ee658ccd4d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: mono-runtime-dbg Priority: extra Section: debug Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-jit-dbg (<< 2.4) Depends: mono-runtime-sgen (= 3.2.8+dfsg-4ubuntu1), mono-runtime-boehm (= 3.2.8+dfsg-4ubuntu1) Recommends: gdb Conflicts: mono-jit-dbg (<< 2.4) Filename: pool/main/m/mono/mono-runtime-dbg_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 10122 MD5sum: 19883161a9d8e37ccb0dea7c46f627ce SHA1: a770dd56f26118c722daf221ca0981e6e65c502a SHA256: c0cb0b4e448ea2f244ab96e2fcf754707acfedb5b4e832a25d2212e9048d92f1 Description: Mono runtime, debugging symbols Homepage: http://www.mono-project.com/ Description-md5: 0f5b756bd9c313fa705058f5c7b6d0a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-runtime-sgen Priority: optional Section: cli-mono Installed-Size: 16627 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.15), mono-runtime-common (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-runtime-sgen_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 4240602 MD5sum: 058a913795c3878cc8904549b2d3aae2 SHA1: 0870953049006c49578441c75ab5ded1ca420f37 SHA256: 023882ca42a508151eb6f589ced1371ea81f939926a23de3b996974b57803326 Description: Mono runtime - SGen Homepage: http://www.mono-project.com/Compacting_GC Description-md5: 5235eb83a7b861ac1e2aadac6b0f72f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: mono-utils Priority: optional Section: devel Installed-Size: 2632 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: amd64 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-mcs (<= 1.1.6-4) Provides: cil-disassembler Depends: libc6 (>= 2.15), libmonosgen-2.0-1 (>= 3.2.3+dfsg), zlib1g (>= 1:1.1.4), libmonoboehm-2.0-1 (= 3.2.8+dfsg-4ubuntu1), libmono-corlib4.5-cil (= 3.2.8+dfsg-4ubuntu1) | libmono-corlib2.0-cil (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-utils_3.2.8+dfsg-4ubuntu1_amd64.deb Size: 820988 MD5sum: 2e93fbced4071d4fa12903ef1f035c7f SHA1: 90a4cfed3026b0c19410d923a46c669cb1a80094 SHA256: 2fffed012598099c91556a19e4ff0f4dc7f0563610a74109e1b0a679971dd428 Description: Mono utilities Homepage: http://www.mono-project.com/ Description-md5: 18083e2952c8dd8c2682acaf34203df1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-xbuild Priority: optional Section: devel Installed-Size: 1923 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-gmcs (<< 1.2.6-1) Depends: mono-runtime (>= 2.10.1), libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-build-engine4.0-cil (>= 3.2.1), libmono-microsoft-build-framework4.0-cil (>= 3.2.8), libmono-microsoft-build-utilities-v4.0-4.0-cil (>= 3.0.6), libmono-microsoft-build2.0-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system2.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono-xbuild-tasks4.0-cil (>= 1.0) Filename: pool/main/m/mono/mono-xbuild_3.2.8+dfsg-4ubuntu1_all.deb Size: 268860 MD5sum: 0e28b90b28e25c650ef762da008120aa SHA1: 135657fa47639c2ca5a77daccd233eeea98ba97b SHA256: 5a7ae285eee8be8c33f9ec64b92e52b8f0852d9233ec08cccf03531eb5dde418 Description: MSBuild-compatible build system for Mono Homepage: http://www.mono-project.com/ Description-md5: 1a8d1c1ca7c8807496789b97878cf6c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: monodoc-base Priority: optional Section: devel Installed-Size: 1601 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-runtime (>= 2.10.1), libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-cecil-private-cil (>= 3.2.8), libmono-corlib4.5-cil (>= 3.2.8), libmono-sharpzip4.84-cil (>= 1.0), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/monodoc-base_3.2.8+dfsg-4ubuntu1_all.deb Size: 447932 MD5sum: 991e658763b8c59a9e2fa23cbffcfe87 SHA1: be9cec0f399cc386c876497bd9e4ca72c07ae15c SHA256: f35a59d2c8b0cb8f0fc6f73bc83e6efadc21fa2028f306098444bf9c76363365 Description: shared MonoDoc binaries Homepage: http://www.mono-project.com/ Description-md5: 538bae4502d2e025e6e74644ab0b3e8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: monodoc-browser Priority: optional Section: devel Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono-tools Version: 2.11+git20131009.5b1ef35-1build1 Replaces: monodoc-base (<< 2.10.8.1-3) Provides: monodoc-viewer Depends: mono-runtime (>= 3.0~), libglade2.0-cil (>= 2.12.10-1ubuntu1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-web-services4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libwebkit1.1-cil (>= 0.3), monodoc-base (>= 3.2.1), monodoc-manual Breaks: monodoc-base (<< 2.10.8.1-3) Filename: pool/main/m/mono-tools/monodoc-browser_2.11+git20131009.5b1ef35-1build1_all.deb Size: 64336 MD5sum: 8d08a6345c8582b667c0ca2b15a5633d SHA1: c5f6b216c8236d1c8009a3722016e121d750c4e3 SHA256: 1150a6496254359b730115cd9c79b3e2d55aa93f47b370fbb45186065dcd71fb Description: MonoDoc GTK+ based viewer Description-md5: 20d768c4249af085ed376883907d1f15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: monodoc-manual Priority: optional Section: devel Installed-Size: 10534 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: monodoc-browser | monodoc-http | monodoc-viewer Suggests: monodoc-gtk-manual, monodoc-gecko-manual, monodoc-nunit-manual Filename: pool/main/m/mono/monodoc-manual_3.2.8+dfsg-4ubuntu1_all.deb Size: 7971590 MD5sum: 8079f4098066543be5e1bf8ba7874d14 SHA1: bb7ee7b02c9f20c4a559e894b562f0da307d4fce SHA256: af18f7065e2376e39b8082c04c1681a06b3862611ca1ec7144aadfb840a3d7a9 Description: compiled XML documentation from the Mono project Homepage: http://www.mono-project.com/ Description-md5: 89fc8e2379a34f68629a43eb55f18ca3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: monodoc-webkit-manual Priority: optional Section: doc Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: webkit-sharp Version: 0.3-6 Depends: monodoc-manual Filename: pool/main/w/webkit-sharp/monodoc-webkit-manual_0.3-6_all.deb Size: 11590 MD5sum: cbb158e6edda944fbced71bcb6aa30b3 SHA1: a8de9496ca25ab1729d4fa03626329e66b23f0f4 SHA256: e44cda0708c279128852e5297061c288a7c8cf1d8148dc1d42b6576f0345ed03 Description: compiled XML documentation for webkit-sharp Homepage: http://www.webkit.org/ Description-md5: 622ce2bd5f7490c3c336337f917e2cbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mount Essential: yes Priority: required Section: admin Installed-Size: 420 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: amd64 Source: util-linux Version: 2.20.1-5.1ubuntu20 Pre-Depends: libblkid1 (>= 2.20.1), libc6 (>= 2.14), libmount1 (>= 2.20.1), libselinux1 (>= 2.0.15) Suggests: nfs-common (>= 1:1.1.0-13) Filename: pool/main/u/util-linux/mount_2.20.1-5.1ubuntu20_amd64.deb Size: 114528 MD5sum: b07fb01262182535251d1db1dbd2c8b8 SHA1: 02bb91c836496b26890241252623ad325c689db1 SHA256: b55d1f6dba47e27fad27daea548ec868688452ad2d573faf8bb45acc488b3e89 Description: Tools for mounting and manipulating filesystems Multi-Arch: foreign Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 46eb8e09a600d5eb98b6b40428349102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: mountall Priority: required Section: admin Installed-Size: 262 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Version: 2.53 Replaces: upstart (<< 0.6.3-2) Depends: makedev, udev, plymouth, coreutils (>= 7.1), libc6 (>= 2.9), libdbus-1-3 (>= 1.2.16), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libplymouth2 (>= 0.8.1-3), libudev1 (>= 183) Pre-Depends: dpkg (>= 1.15.7.2) Breaks: initscripts (<< 2.88dsf-24), policycoreutils (<< 2.0.69-2ubuntu4), usplash (<< 0.5.47) Filename: pool/main/m/mountall/mountall_2.53_amd64.deb Size: 55796 MD5sum: f054a5a0f1dbcbc1d33dee4693360936 SHA1: 11bd902aee81e081770faabcbae6abd9243a78e1 SHA256: 405e05629e89a2daa421b74a957e4d0b0660a8a9a9a1b5ab295a645e50b46460 Description: filesystem mounting tool Multi-Arch: foreign Description-md5: b5b5a27fc0e8063ef1226a39fb8ecf70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: mouseemu Priority: optional Section: utils Installed-Size: 97 Maintainer: Colin Watson Original-Maintainer: Gaudenz Steinlin Architecture: amd64 Version: 0.16-0ubuntu9 Depends: libc6 (>= 2.15), procps, dmidecode Breaks: udev (<< 136-1) Filename: pool/main/m/mouseemu/mouseemu_0.16-0ubuntu9_amd64.deb Size: 18024 MD5sum: 051d08864162eb511ce90b9609481af5 SHA1: 679eebf735e239c7cc2f54746942118aa53a119b SHA256: 742569534712e8f82841c22ff39a57ae5d54bdf2ffd869ebcad81313bfd7a477 Description: Emulate mouse buttons and mouse wheel Description-md5: abfc7368f5d823e7b6915cc7d1da3d91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mousetweaks Priority: optional Section: gnome Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Version: 3.8.0-2 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libpango-1.0-0 (>= 1.14.0), libx11-6, libxcursor1 (>> 1.1.2), libxfixes3, libxtst6, dconf-gsettings-backend | gsettings-backend, gsettings-desktop-schemas (>= 0.1.0) Suggests: gnome-control-center Filename: pool/main/m/mousetweaks/mousetweaks_3.8.0-2_amd64.deb Size: 36426 MD5sum: e57ac5b61e1b7c367957ebb5143c2520 SHA1: b3cfd2b8c96714f0170255adb6929cd47c67037f SHA256: 5ba7f98b49fc5f45f00f79d675604ad609ee66fda7896125e4b29df3b0aea599 Description: mouse accessibility enhancements for the GNOME desktop Homepage: https://wiki.gnome.org/Mousetweaks/Home Description-md5: bf106bf9a496b3c2b24861987fa521ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: mozilla-devscripts Priority: optional Section: devel Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mozilla Extension Maintainers Architecture: all Version: 0.36 Depends: python-librdf, unzip, zip, perl, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/m/mozilla-devscripts/mozilla-devscripts_0.36_all.deb Size: 26542 MD5sum: df2e7ed3ecd0fedb85767e7edbdc9b82 SHA1: 69187a2ecd9af226e46bf3f88ab58343dde2069d SHA256: b237d586ef5fa2fb454e27c45e336878f954f02c44177919154bc0bf46bd5b37 Description: Development scripts used by Mozilla's addons packages Description-md5: 365d99b4affcffc90de7cb10b730c4b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mozvoikko Priority: optional Section: web Installed-Size: 29 Maintainer: Ubuntu Core Developers Original-Maintainer: Heikki Mäntysaari Architecture: all Version: 2.0.1-0ubuntu1 Depends: xul-ext-mozvoikko Filename: pool/main/m/mozvoikko/mozvoikko_2.0.1-0ubuntu1_all.deb Size: 1720 MD5sum: a8e163025c58e6157b2b10b819a3421e SHA1: e44450eb100ec2bf71b27c22e6aeff1f2bb0d2ed SHA256: 834da9999be04a6abda903b48ff8c449f771e8f0353a4d08cdd85a91e7d44065 Description: Finnish spell-checker extension for Firefox (transitional package) Description-md5: 731a4c7c2214b726fdc5f3bad16a8c90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mscompress Priority: extra Section: otherosfs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Michael Stapelberg Architecture: amd64 Version: 0.4-3 Depends: libc6 (>= 2.4) Filename: pool/main/m/mscompress/mscompress_0.4-3_amd64.deb Size: 9926 MD5sum: d698cbff770e11da7bd1dbbc1d3ee7ef SHA1: ec4997e8ca34cefd4959fc397e76c5dc821bc5da SHA256: c4034eaba327fda05446df38727284455e8293b15bda39016990f7570be1a300 Description: Microsoft "compress.exe/expand.exe" compatible (de)compressor Homepage: http://code.stapelberg.de/git/mscompress/ Description-md5: b4f9fff832e68d790b9a7feeefbb8eb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: msr-tools Priority: optional Section: admin Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Andres Salomon Architecture: amd64 Version: 1.3-2 Depends: libc6 (>= 2.4) Filename: pool/main/m/msr-tools/msr-tools_1.3-2_amd64.deb Size: 10636 MD5sum: 5ffb50c3889cfccc901b940923d89e29 SHA1: e44eb1c5c1160137ba2026f935e12bd56f59df0b SHA256: 1334e2152dd81de8937e97107ff8b7d1f6e739db1ca6ea79467f472557b2261e Description: Utilities for modifying MSRs from userspace Description-md5: 95866ee428947792b0bd008175c572ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: mtools Priority: optional Section: otherosfs Installed-Size: 342 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 4.0.18-1ubuntu1 Depends: libc6 (>= 2.14) Suggests: floppyd Filename: pool/main/m/mtools/mtools_4.0.18-1ubuntu1_amd64.deb Size: 194014 MD5sum: 1b1adb7ec9f787f0bce1c7b678e654bb SHA1: 00d9d66a65014e36277572f76caf39189bf612e5 SHA256: 5ee2eb7f3e6ff7b5444d9da76cdfbb4640cacb77b91edc331ef21163c3d79c2f Description: Tools for manipulating MSDOS files Homepage: http://www.gnu.org/software/mtools/ Description-md5: b3b35cc7d4e80f29d3aa9d91bdf899da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: mtr-tiny Priority: standard Section: net Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Robert Woodcock Architecture: amd64 Source: mtr Version: 0.85-2 Replaces: mtr Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libtinfo5 Conflicts: mtr, suidmanager (<< 0.50) Filename: pool/main/m/mtr/mtr-tiny_0.85-2_amd64.deb Size: 41702 MD5sum: 26830942e1d0e4f3973f8e9049906422 SHA1: 6e34fc9ca99b77d8604d0a1441456ff5b9ee789b SHA256: bff7f6ab8490535c42fd038f01ca201c27d65aff0cbf9ff467811f836c803e41 Description: Full screen ncurses traceroute tool Homepage: http://www.bitwizard.nl/mtr/ Description-md5: 60a83ae2ec5f39fba9d1aecb545c9060 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: mtx Priority: extra Section: admin Installed-Size: 332 Maintainer: Ubuntu Developers Original-Maintainer: Ivo De Decker Architecture: amd64 Version: 1.3.12-8 Depends: libc6 (>= 2.4) Filename: pool/main/m/mtx/mtx_1.3.12-8_amd64.deb Size: 146650 MD5sum: 3efa7361e78efaeda2891f61c1fe051f SHA1: f3ef82e5219442978e0d75a2e6bfc662571bc35b SHA256: 474ae3520e652bbf4f545982e2c3ae617abb74bac3266e6641b9af45b7ab817c Description: controls tape autochangers Homepage: http://sourceforge.net/projects/mtx/ Description-md5: d04c49e586690550faf07d7124752c26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: multiarch-support Priority: required Section: libs Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: amd64 Source: eglibc Version: 2.19-0ubuntu6 Depends: libc6 (>= 2.3.6-2) Filename: pool/main/e/eglibc/multiarch-support_2.19-0ubuntu6_amd64.deb Size: 4482 MD5sum: 9b4bd397ec28b891176e902acb895685 SHA1: 091e7cc90802c09cb2eb391b87667070dacfc2e3 SHA256: e727b8316c2b6557412632a95710ff5839ed61809bc99bd984d32c793080d14d Description: Transitional package to ensure multiarch compatibility Multi-Arch: foreign Homepage: http://www.eglibc.org Description-md5: f70fd4ad370040691119c10d77aec677 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: multiboot-doc Priority: optional Section: doc Installed-Size: 183 Maintainer: Ubuntu Kernel Team Original-Maintainer: Grub Maintainers Architecture: all Source: grub Version: 0.97-29ubuntu66 Replaces: grub-doc Suggests: doc-base Filename: pool/main/g/grub/multiboot-doc_0.97-29ubuntu66_all.deb Size: 23128 MD5sum: 1b8adb8306ea5ac967e70378257e7fb1 SHA1: bacfc85f5fd341a79b80dba6acf54952bffa2ac8 SHA256: 0f52d4d339b26e06463be5c7dcdfd071af1538246e2c414685352aa5b1284bc3 Description: The Multiboot specification Description-md5: 4ed1a4a612ebf454599286f7b201501f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: multipath-tools Priority: extra Section: admin Installed-Size: 629 Maintainer: Ubuntu Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Version: 0.4.9-3ubuntu7 Depends: libaio1 (>= 0.3.106-8), libc6 (>= 2.14), libdevmapper1.02.1 (>= 2:1.02.36), libreadline6 (>= 6.0), udev (>> 136-1), initscripts (>= 2.85-16), kpartx (>= 0.4.9-3ubuntu7), lsb-base (>= 3) Suggests: multipath-tools-boot Conflicts: multipath-tools-boot (<= 0.4.8+git0.761c66f-2~), multipath-tools-initramfs (<= 1.0.1) Filename: pool/main/m/multipath-tools/multipath-tools_0.4.9-3ubuntu7_amd64.deb Size: 167672 MD5sum: 4593d0df69eb41cb5f916e370ced2d1d SHA1: 002ab6b97061b4938143f19ddc8810497ca11fe0 SHA256: 5ae8aca54532953ba1e81d1cf94e64a56cab911c8f5677538dbd4a00022872bb Description: maintain multipath block device access Homepage: http://christophe.varoqui.free.fr/ Description-md5: d2b50f6d45021a3e6697180f992bb365 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: multipath-tools-boot Priority: extra Section: admin Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian LVM Team Architecture: all Source: multipath-tools Version: 0.4.9-3ubuntu7 Replaces: multipath-tools-initramfs (<< 1.0.1+nmu1) Depends: debconf (>= 0.5) | debconf-2.0, initramfs-tools, multipath-tools (>= 0.4.9-3ubuntu7), multipath-tools (<< 0.4.9-3ubuntu7.1~), kpartx-boot (= 0.4.9-3ubuntu7) Conflicts: multipath-tools-initramfs (<< 1.0.1+nmu1) Filename: pool/main/m/multipath-tools/multipath-tools-boot_0.4.9-3ubuntu7_all.deb Size: 6092 MD5sum: 888e60efcd3486030139b843a938c2be SHA1: faaa283a04d89c8d24f3bb8ee6f2007b63b36ebb SHA256: 38490544ec8076697e894a17885d88e716bd7fb85534f14ed18df665d3f19160 Description: Support booting from multipath devices Homepage: http://christophe.varoqui.free.fr/ Description-md5: 24b848655cff6a3dd257c2afda6cf91f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: multipath-tools-dbg Priority: extra Section: debug Installed-Size: 687 Maintainer: Ubuntu Developers Original-Maintainer: Debian LVM Team Architecture: amd64 Source: multipath-tools Version: 0.4.9-3ubuntu7 Depends: multipath-tools (= 0.4.9-3ubuntu7), kpartx (= 0.4.9-3ubuntu7) Filename: pool/main/m/multipath-tools/multipath-tools-dbg_0.4.9-3ubuntu7_amd64.deb Size: 211566 MD5sum: 3fb4c8c39300eaa059a207f01453db00 SHA1: 0e1f395cd0927ec12133dff9d01257e627484e8c SHA256: 260b1d7c182118a63dadf08ecba91f57afe8ba30f9359aba8fbd774636d3df35 Description: maintain multipath block device access - debugging symbols Homepage: http://christophe.varoqui.free.fr/ Description-md5: 734365732126c3c2cd4a7d36a903a6cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: munin Priority: optional Section: net Installed-Size: 649 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Version: 2.0.19-3 Depends: perl, perl-modules | libparse-recdescent-perl, librrds-perl, libhtml-template-perl, libdigest-md5-perl, libtime-hires-perl, libstorable-perl, rrdtool, adduser, liblog-log4perl-perl, ttf-dejavu, munin-common (>= 2.0.19-3), cron, libdate-manip-perl, libfile-copy-recursive-perl, liburi-perl, libio-socket-inet6-perl Recommends: munin-node, munin-doc Suggests: www-browser, httpd, libnet-ssleay-perl, libapache2-mod-fcgid | libcgi-fast-perl Filename: pool/main/m/munin/munin_2.0.19-3_all.deb Size: 106184 MD5sum: 39ef989fa98ae7cd180bb48e3fb5a408 SHA1: 1b72ba02171f864f26bbe6cc70e623be39df01fa SHA256: 14e07ecbb71df1b4960aaf7a49c77c872f99f3fa59b57a71c599af40004a120a Description: network-wide graphing framework (grapher/gatherer) Homepage: http://munin-monitoring.org Description-md5: 397739392252923095c5812dbaad0fdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: munin-common Priority: optional Section: net Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Source: munin Version: 2.0.19-3 Depends: perl, perl-modules | libparse-recdescent-perl, liblist-moreutils-perl Filename: pool/main/m/munin/munin-common_2.0.19-3_all.deb Size: 20742 MD5sum: dcdc5fafad325549d4ebad9449ce5b53 SHA1: 3891aa55cf9b7bd8e75f77c7f8f1e8a0e814729d SHA256: e46a3add961e74d7b60fea07e1a9ee399c08e420df7a1c95921676ed24e4213f Description: network-wide graphing framework (common) Homepage: http://munin-monitoring.org Description-md5: 4501696e1323d02bbf33751c99858ea9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: munin-doc Priority: optional Section: doc Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Source: munin Version: 2.0.19-3 Replaces: munin-common (<< 2) Breaks: munin-common (<< 2) Filename: pool/main/m/munin/munin-doc_2.0.19-3_all.deb Size: 144128 MD5sum: a56b10697b87bd855375d9bda5e84fce SHA1: cc7a0fef9e677521e29bccab663738e8db46d8ae SHA256: af3b6677556c932e65925ced02e0e39805d3292388c74d2a49b922688dad8229 Description: network-wide graphing framework (documentation) Homepage: http://munin-monitoring.org Description-md5: a4995b39fb5c585937bfa04039cfed02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: munin-node Priority: optional Section: net Installed-Size: 305 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Source: munin Version: 2.0.19-3 Depends: perl, init-system-helpers (>= 1.13~), libnet-server-perl, procps, adduser, lsb-base (>= 3.2-4), gawk, munin-common (>= 2.0.19-3), munin-plugins-core Recommends: libnet-snmp-perl, munin-plugins-extra Suggests: munin, munin-plugins-java, libwww-perl, liblwp-useragent-determined-perl, libnet-irc-perl, mysql-client, smartmontools (>= 5.37-6~bpo40+1), acpi | lm-sensors, python, ruby, ethtool, libdbd-pg-perl, libdbd-mysql-perl, libcache-cache-perl, net-tools, hdparm, libcrypt-ssleay-perl, libtext-csv-xs-perl, libxml-simple-perl, logtail Filename: pool/main/m/munin/munin-node_2.0.19-3_all.deb Size: 47516 MD5sum: 9103853cf2c83e37fcb2a6a67cf0d307 SHA1: c52bc07f33c69ce7ab1c3b0756a6d1ee339c94cc SHA256: 3b43a388f43105ddae5cd17df2d61537ec6c3e3e1d52cb2c1db1ae1a3b9776fc Description: network-wide graphing framework (node) Homepage: http://munin-monitoring.org Description-md5: 7d6f3b57350a521bda7e61d4aa53a911 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: munin-plugins-core Priority: optional Section: net Installed-Size: 905 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Source: munin Version: 2.0.19-3 Replaces: munin-node (<< 1.999.4548-3~), munin-plugins (<< 1.999.4548-3~), munin-plugins-extra (<< 2.0.13-1) Provides: munin-plugins Depends: perl, munin-common (>= 2.0.19-3) Recommends: libnet-snmp-perl Suggests: libnet-netmask-perl, python, libnet-telnet-perl, ruby | ruby-interpreter, libxml-parser-perl, conntrack Breaks: munin-node (<< 1.999.4548-3~), munin-plugins (<< 1.999.4548-3~), munin-plugins-extra (<< 2.0.13-1) Filename: pool/main/m/munin/munin-plugins-core_2.0.19-3_all.deb Size: 157900 MD5sum: f7bca67f6a6b1adc8de8156fbddc90ee SHA1: 1217fc87d1b07320f730c432c4b0496d7143fdab SHA256: 9a8040d8416dec8982c8a8c48425c71ada543ba535b031b8cd90947c50f526e4 Description: network-wide graphing framework (plugins for node) Homepage: http://munin-monitoring.org Description-md5: 54f782cba4c609cd5afb2583f47afa8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: munin-plugins-extra Priority: optional Section: net Installed-Size: 383 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Source: munin Version: 2.0.19-3 Provides: munin-plugins Depends: perl, munin-common (>= 2.0.19-3) Suggests: libnet-netmask-perl, python, libnet-telnet-perl Filename: pool/main/m/munin/munin-plugins-extra_2.0.19-3_all.deb Size: 63850 MD5sum: 3c224282e044c5328a0eda8e1fd277c2 SHA1: ab602f5eb1755226b895ca5488dea8e3b1e2e94d SHA256: a30d981b542d91ad76a5143cbe623e6e28f20829b3ff586cc87be1c89ad2f14d Description: network-wide graphing framework (user contributed plugins for node) Homepage: http://munin-monitoring.org Description-md5: eb78ec531b14cee1d0003a07603bedc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mutt Priority: optional Section: mail Installed-Size: 3488 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Radici Architecture: amd64 Version: 1.5.21-6.4ubuntu2 Replaces: mutt-utf8 Provides: imap-client, mail-reader Depends: libc6 (>= 2.15), libgnutls26 (>= 2.12.17-0), libgpg-error0 (>= 1.10), libgpgme11 (>= 1.2.0), libgssapi-krb5-2 (>= 1.10+dfsg~), libidn11 (>= 1.13), libncursesw5 (>= 5.6+20070908), libsasl2-2 (>= 2.1.24), libtinfo5, libtokyocabinet9 (>= 1.4.47) Recommends: default-mta | mail-transport-agent, locales, mime-support, libsasl2-modules Suggests: urlview, aspell | ispell, gnupg, mixmaster, openssl, ca-certificates Conflicts: mutt-utf8 Filename: pool/main/m/mutt/mutt_1.5.21-6.4ubuntu2_amd64.deb Size: 825346 MD5sum: f323b5148bcc2591b0c7dd783129bee3 SHA1: 315bbde38eadee43110c7d818faf054a1c254b51 SHA256: 1e52629e43de218a90595e1ed9e72461c1edf1cf8c7776b61db44ce1b6d7f8f6 Description: text-based mailreader supporting MIME, GPG, PGP and threading Homepage: http://www.mutt.org/ Description-md5: a2a425952f4b623e21ee73d317640a85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: mutt-dbg Priority: extra Section: mail Installed-Size: 6355 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Radici Architecture: amd64 Source: mutt Version: 1.5.21-6.4ubuntu2 Depends: mutt (= 1.5.21-6.4ubuntu2) Filename: pool/main/m/mutt/mutt-dbg_1.5.21-6.4ubuntu2_amd64.deb Size: 1137066 MD5sum: 65c559f31025ebe1d05cfa76ce4d1077 SHA1: cdf3757507c45c5dfbd0ffad524b3eed66c3cc20 SHA256: 0461481bbc4119924e3b881a1ee6b54e287858107e80e7da2b852fd7f812a0ae Description: debugging symbols for mutt Homepage: http://www.mutt.org/ Description-md5: 84ae750c0a18926ab30eccaa18b243a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: myspell-af Priority: optional Section: text Installed-Size: 1528 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-af Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/libr/libreoffice-dictionaries/myspell-af_4.2.1-0ubuntu1_all.deb Size: 494800 MD5sum: 4faab855de7b5f3eea1cabb795fd5d65 SHA1: 0004f4053b8061070016a786f317742352d87bc6 SHA256: 8bde2d3fa4d82ca53a941eb48f0fbdc9a1508e7dff21ca3692b40f1d05999625 Description: Afrikaans dictionary for myspell Description-md5: dff25a110b79c9a27d60c36b639b7dd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-bg Priority: optional Section: text Installed-Size: 1632 Maintainer: Ubuntu Developers Original-Maintainer: Damyan Ivanov Architecture: all Source: bgoffice Version: 4.1-3ubuntu1 Provides: myspell-dictionary, myspell-dictionary-bg Depends: dictionaries-common Suggests: openoffice.org Filename: pool/main/b/bgoffice/myspell-bg_4.1-3ubuntu1_all.deb Size: 305828 MD5sum: b06db8b98a21239c93c9181e753e33ff SHA1: 9b75419addc2375520d88de68b6452104c32ac0e SHA256: 29895cc347dd5e8fc16894239b92933b1d257ad0b35a46014caa6abe4e4a807b Description: Bulgarian dictionary for myspell Homepage: http://bgoffice.sourceforge.net/ Description-md5: 92826c51e9411544ec343d6176e62ebb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ca Priority: extra Section: text Installed-Size: 5066 Maintainer: Ubuntu Developers Original-Maintainer: Jordi Mallach Architecture: all Source: softcatala-spell Version: 0.20111230b-4 Provides: myspell-dictionary, myspell-dictionary-ca, openoffice.org-spellcheck-ca Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: hunspell-ca Filename: pool/main/s/softcatala-spell/myspell-ca_0.20111230b-4_all.deb Size: 1345714 MD5sum: 01c7b913d9c79664204385cb30e4d923 SHA1: 7eb89979f2ed8d82ebbb45869851c4f3a478a0cc SHA256: aea09e12e76f165ebf7f80e4f2ecef32985907daee8563ce7a8a858453f83785 Description: Catalan dictionary for myspell Homepage: http://www.softcatala.org/wiki/Corrector_ortogr%C3%A0fic Description-md5: a5f36e01a63c3393173197068a570164 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-cs Priority: optional Section: text Installed-Size: 3815 Maintainer: Ubuntu Developers Original-Maintainer: Petr Čech Architecture: all Source: ispell-czech Version: 20040229-5.1 Replaces: myspell-cs-cz Provides: myspell-cs-cz, myspell-dictionary, myspell-dictionary-cs Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: myspell-cs-cz, openoffice.org (<= 1.0.3-2) Filename: pool/main/i/ispell-czech/myspell-cs_20040229-5.1_all.deb Size: 994030 MD5sum: 74b83cb495d08986397f2c67e345c3da SHA1: 8d4863f4e0ddaece003ce0f77a6bb1f4c2e321be SHA256: 8fd885efb1b5c92ef258524b196915ca06444116d59158a61fa7723b320b37d1 Description: Czech dictionary for myspell Description-md5: c031759b3234764e9db6056495829384 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-el-gr Priority: optional Section: text Installed-Size: 6927 Maintainer: Ubuntu Developers Original-Maintainer: Nick Andrik Architecture: all Version: 0.8-2 Provides: myspell-dictionary-el Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: openoffice.org (>= 1.0.3-3) Breaks: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-el-gr/myspell-el-gr_0.8-2_all.deb Size: 1547622 MD5sum: deb67fdad224c5f8b2e9651edf3a8ef6 SHA1: 7f19c0d31be174981e084b9fa292b0b698e3771a SHA256: 370989e7019a4177c8de26654e433fe380764c186402e02ad1c26bb6af832d75 Description: Greek (el_GR) dictionary for myspell Homepage: http://elspell.math.upatras.gr/?section=oofficespell Description-md5: 3e60ad7a0abf018faf01b83d726435ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-en-au Priority: optional Section: text Installed-Size: 622 Maintainer: Ubuntu Developers Original-Maintainer: John Steele Scott Architecture: all Source: openoffice.org-en-au Version: 2.1-5.4 Provides: myspell-dictionary, myspell-dictionary-en Depends: dictionaries-common (>= 1.0) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/o/openoffice.org-en-au/myspell-en-au_2.1-5.4_all.deb Size: 244154 MD5sum: 8d5df7986d2354b66cfe7870d1552d88 SHA1: 74a8380f0f157ec427a47873beff53e02faa95ad SHA256: 67a8da24a0709f829853fd0e5ec90bbf79e9ed8ad1aff341599ef5b25bcbe8e5 Description: English_australian dictionary for myspell Description-md5: 727c1a6eef26da76541812e0a442e2ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-en-gb Priority: optional Section: text Installed-Size: 804 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-en Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/libr/libreoffice-dictionaries/myspell-en-gb_4.2.1-0ubuntu1_all.deb Size: 210292 MD5sum: 8bb37632ce6e8c43ecc581cb0538ce4a SHA1: 9ef71e3c5c2f48c26a230f4d382b4daf96a10894 SHA256: 4d315bcb4383700660c4550de3ac75272d361791a1584b7bf8a8ed4ffedb4ede Description: English_british dictionary for myspell Description-md5: 4cd67d31e23eceb33e58a659c075d541 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-en-us Priority: optional Section: text Installed-Size: 735 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-en Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/libr/libreoffice-dictionaries/myspell-en-us_4.2.1-0ubuntu1_all.deb Size: 195026 MD5sum: 3415c38d7e0b4a844745423de1f99664 SHA1: c530a597ce25010b9865ef1e51b9d3277f041ace SHA256: b5cfcab2f49d0bb8677979e761b90f8d4e6efd3ee8d5da6ebb1b2c18a26eb1ee Description: English_american dictionary for myspell Description-md5: d4566f2c99b42dc29231f9b492f5c5d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Package: myspell-en-za Priority: optional Section: text Installed-Size: 663 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-en Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/libr/libreoffice-dictionaries/myspell-en-za_4.2.1-0ubuntu1_all.deb Size: 233200 MD5sum: 67d468897e2595ddfee4df99925f0d7a SHA1: 1bfab3245ee69ac1fc7559096f7b3b8f01f2eefa SHA256: 7a3d643a4f55ad5ae0e06350f503259a1050c8080abe9ac6d362e2b8f43bc433 Description: English_southafrican dictionary for myspell Description-md5: f5139e72fe6ca063f524c96600736b46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-eo Priority: optional Section: text Installed-Size: 321 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: eo-spell Version: 2.1.2000.02.25-45 Replaces: openoffice.org-spellcheck-eo Provides: myspell-dictionary, myspell-dictionary-eo, openoffice.org-spellcheck-eo Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: openoffice.org (<= 1.0.3-2), openoffice.org-spellcheck-eo Filename: pool/main/e/eo-spell/myspell-eo_2.1.2000.02.25-45_all.deb Size: 99234 MD5sum: db33ca6f4a4a74dace7f72ddc50ceff7 SHA1: 56b06b816043e2408ad4d7236d3aca8883c5907f SHA256: 5a6ec02bd048a36c94afcc0bfd43ee46b2b4ae6f8a8c43bc7f75ef3b10ecc45c Description: Esperanto dictionary for myspell Description-md5: efb06099d38aa921d0d62eb891445f30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-es Priority: optional Section: text Installed-Size: 966 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: espa-nol Version: 1.11-4 Replaces: openoffice.org-spellcheck-es Provides: myspell-dictionary, myspell-dictionary-es, openoffice.org-spellcheck-es Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: openoffice.org (<= 1.0.3-2), openoffice.org-spellcheck-es Filename: pool/main/e/espa-nol/myspell-es_1.11-4_all.deb Size: 245542 MD5sum: 22d3c07990be05c09504b49f2cb45fbc SHA1: 18c11733eb1e49b1531e7ffcf9d660ecbc3a0620 SHA256: 0f1eade205fb870cf522f925b8df6c9a10d25203de9fe7a9d1fd7a32df5ce7d5 Description: Spanish dictionary for myspell Homepage: http://www.datsi.fi.upm.es/~coes Description-md5: 6eb6c0f4d9c2f3dfa5e0b7f9e120aabe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-et Priority: optional Section: text Installed-Size: 4589 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: ispell-et Version: 1:20030606-20 Provides: hunspell-dictionary, hunspell-dictionary-et, hunspell-et, hyphen-et, hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-et, myspell-dictionary, myspell-dictionary-et Depends: dictionaries-common (>= 0.49.2) Breaks: openoffice.org (<= 1.0.3-2) Filename: pool/main/i/ispell-et/myspell-et_20030606-20_all.deb Size: 881768 MD5sum: 265a19684281faea35efc1d77f306eff SHA1: 863885718510829a9662884e812256e019f79640 SHA256: dd60e13cff3a7e73ab025d4fbdd4d55cd0ffbb6eb138c223f72fe10181603477 Description: Estonian dictionary for MySpell Homepage: http://www.meso.ee/~jjpp/speller/ Description-md5: 73bc3a5d26efc85296706cbd418a6d49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-fa Priority: optional Section: text Installed-Size: 6940 Maintainer: Ubuntu Developers Original-Maintainer: Debian Arabic Packaging Team Architecture: all Version: 0.20070816-3 Provides: myspell-dictionary, myspell-dictionary-fa Depends: dictionaries-common Filename: pool/main/m/myspell-fa/myspell-fa_0.20070816-3_all.deb Size: 921408 MD5sum: 5d986f7d29ae057131cc1c3fd2022ca0 SHA1: f9245b74d11c55f54d0540b38d1347ebd00905eb SHA256: 51aef09579559a51ec7f5e1bb84531aee0951fc8a8882cfd3195f847e539809e Description: Persian (Farsi) dictionary for myspell Homepage: http://wiki.services.openoffice.org/wiki/Dictionaries Description-md5: 86964fd6e44c69b05780ce29e42f8eba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-fo Priority: optional Section: text Installed-Size: 4719 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: ispell-fo Version: 0.4.2-1 Replaces: myspell-fo-fo, openoffice.org-spellcheck-fo Provides: myspell-dictionary, myspell-dictionary-fo, myspell-fo-fo, openoffice.org-spellcheck-fo Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: myspell-fo-fo, openoffice.org (<= 1.0.3-2), openoffice.org-spellcheck-fo Filename: pool/main/i/ispell-fo/myspell-fo_0.4.2-1_all.deb Size: 1119292 MD5sum: 357e25b4e3f5e6e8b44cbab24faabdb1 SHA1: 6e874ef724402080d240c55af72f800e3eff3b62 SHA256: 0e9eebb9cd83d3b04f4010a4d0c73261903db6fff1cbbcc2be88d002da5e0aae Description: Faroese dictionary for myspell Homepage: http://fo.speling.org Description-md5: 922911029b535b9d5d9837e530ea175a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ga Priority: optional Section: text Installed-Size: 869 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Source: iirish Version: 2.0-22 Provides: myspell-dictionary, myspell-dictionary-ga Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: openoffice.org (>= 1.0.3-3) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/i/iirish/myspell-ga_2.0-22_all.deb Size: 172770 MD5sum: 6fdadb0c003efe1b482b76a62de8be2a SHA1: 09a023f8256216208d6f17a1cf232fbed10ffaf6 SHA256: dd9caa64f7d04ff7b3ebdf57429a3cf406ca950a5dd2aef3485126f0c28f9d23 Description: Irish (Gaeilge) dictionary for OpenOffice and Mozilla Description-md5: 44ea8e22894d28769e679eb95f3e6927 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-gd Priority: optional Section: text Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Source: igaelic Version: 0.50-10 Provides: myspell-dictionary, myspell-dictionary-gd Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/i/igaelic/myspell-gd_0.50-10_all.deb Size: 40064 MD5sum: bf00485b143d3ed28803bb32c42f254b SHA1: 45d7a1c4a0d3bbdaeca44343c1b1b3e8bf5cc692 SHA256: 56796f9fb1225fe631d8469e4a3e55a9057fddbae6d76f7f56318bf62714eed0 Description: Scots Gaelic dictionary for myspell Description-md5: 0031262f4ca42b127b6b61bfa0c22e19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-gv Priority: optional Section: text Installed-Size: 351 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Source: imanx Version: 0.50-11 Provides: myspell-dictionary, myspell-dictionary-gv Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/i/imanx/myspell-gv_0.50-11_all.deb Size: 85770 MD5sum: a3572568257bb616eef5d3c9ed4f3b6e SHA1: fd3e76dce8a4ce8c8fdc9020f84d396bca8ed009 SHA256: 6624204ce7a65f8ff07517c22c8dd1cc6151b21adfea2c6ed164e7e52f6a4e8f Description: Manx Gaelic dictionary for myspell Description-md5: b1e9228b41761899716090a7095c09b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-he Priority: extra Section: text Installed-Size: 7649 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: all Source: hspell Version: 1.2-2 Provides: myspell-dictionary, myspell-dictionary-he Depends: dictionaries-common Filename: pool/main/h/hspell/myspell-he_1.2-2_all.deb Size: 1235132 MD5sum: 42ca4c218f84791be77af0ab53e9a2a3 SHA1: 007a431dcf89cca1acb9ee82a35236e44c929427 SHA256: 71d9b962af54514182f6d8f42c6dd353016f0ec74bd421cba73a944b55ebf62a Description: Hebrew dictionary for myspell Homepage: http://hspell.ivrix.org.il/ Description-md5: 590ec6d507a0c39ecd5f0e6bbd408231 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-hr Priority: optional Section: text Installed-Size: 2330 Maintainer: Ubuntu Developers Original-Maintainer: Vedran Furač Architecture: all Version: 20060617-2.4 Provides: myspell-dictionary, myspell-dictionary-hr Depends: dictionaries-common (>= 0.10) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-hr/myspell-hr_20060617-2.4_all.deb Size: 747340 MD5sum: ab314b64fb9e76dcd2de95e5d0873e8a SHA1: 6401a3ce6d91018568722db5e2d05a09512beb6e SHA256: 4f10d2b454711b88c023ae9319c7eff61cd9a525fb5eef9c4c517a1e26870881 Description: Croatian dictionary for myspell Description-md5: f05f816ad9654805cd9218058f0b0b41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-hy Priority: optional Section: text Installed-Size: 2112 Maintainer: Ubuntu Developers Original-Maintainer: Alan Baghumian Architecture: all Version: 0.20.0-2 Provides: myspell-dictionary, myspell-dictionary-hy Depends: dictionaries-common Suggests: openoffice.org, iceweasel, icedove Filename: pool/main/m/myspell-hy/myspell-hy_0.20.0-2_all.deb Size: 285030 MD5sum: ecabfacd5123b6e40d804d5034532190 SHA1: 13d79e7f1c39966504b1dd238db9e2fa1b2053aa SHA256: 9b09729e06c383f6970f68cb50e96da72b9f1dbf04daa1d1aff6992060348656 Description: Armenian dictionary for myspell Homepage: http://sf.net/projects/armspell Description-md5: 3bea11748af06d8105fef83ff6bed015 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-it Priority: optional Section: text Installed-Size: 1385 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-it Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/libr/libreoffice-dictionaries/myspell-it_4.2.1-0ubuntu1_all.deb Size: 298850 MD5sum: dd106f21b4f2642bf3a23506d97fc7bf SHA1: f52730dcb22fafc0501ea9b719e2bf616614f405 SHA256: d669977fcfc5ef9482404f17951035304dd6f96dfd4d0a130e550c5d8f408459 Description: Italian dictionary for myspell Description-md5: 681c98510c7466533b1e2da26dd5037d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ku Priority: optional Section: text Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian Arabic Packaging Team Architecture: all Version: 0.20.0-2build1 Provides: myspell-dictionary, myspell-dictionary-ku Depends: dictionaries-common Filename: pool/main/m/myspell-ku/myspell-ku_0.20.0-2build1_all.deb Size: 29710 MD5sum: 62d28943afd7b9a6ba9a09714409f1ba SHA1: 1a3cc466d08d4f4c971053cd7664df720ff03b74 SHA256: 91a459e54df5a061da22f29d40a09b7a34c7fa62058791a2fd9b515c06967db2 Description: Kurdish (Kurmanji) dictionary for myspell Homepage: http://sourceforge.net/projects/myspellkurdish/ Description-md5: 78ef101ba2a80dce52c8924e1d72c2e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-lt Priority: optional Section: text Installed-Size: 1401 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Source: ispell-lt Version: 1.2.1-4 Provides: myspell-dictionary, myspell-dictionary-lt Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/i/ispell-lt/myspell-lt_1.2.1-4_all.deb Size: 365286 MD5sum: d4b8f6cdc185d5deebc9fdfbb3b9e70a SHA1: 0401f26eb09f3aadb77aea53d03130cf62e75ec5 SHA256: 9998a1e857ace076d119a25df186ce68b1cf9266be5d92337bb7af7d00a84f90 Description: myspell dictionary for Lithuanian (LT) Description-md5: 346973dc2246f468f7fa08afec8f19c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-lv Priority: optional Section: text Installed-Size: 2400 Maintainer: Ubuntu Developers Original-Maintainer: Aigars Mahinovs Architecture: all Version: 0.9.6-1 Provides: hunspell-dictionary, hunspell-dictionary-lv, hunspell-lv, hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-lv, hyphen-lv, myspell-dictionary, myspell-dictionary-lv Depends: dictionaries-common (>= 0.49.2) Breaks: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-lv/myspell-lv_0.9.6-1_all.deb Size: 749040 MD5sum: 395c0239bd28d566d4f2b53507b87397 SHA1: 9f7ec5225c850bd927689903dce515fc5f95e9ea SHA256: 088205c86442c2e63d99e5892bc334f25d991f38c21d9a78641bcca5df4031af Description: Latvian dictionary for Myspell Homepage: http://dict.dv.lv/ Description-md5: fe0abc7670e3a3b8363d6202e10f75c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-nb Priority: optional Section: text Installed-Size: 5342 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: all Source: norwegian Version: 2.0.10-5.1 Provides: myspell-dictionary, myspell-dictionary-nb, openoffice.org-spellcheck-nb Depends: dictionaries-common (>> 0.10) | openoffice.org-updatedicts Filename: pool/main/n/norwegian/myspell-nb_2.0.10-5.1_all.deb Size: 1181208 MD5sum: 72f4da403e53b268d6db12b77870004f SHA1: 160ce4c12b3ad60867fc9e4c718fbb23378d2539 SHA256: 222c1475c9cc7bb97cb571ad7379488d469d45e6126e3609344772f933fcf5e7 Description: Norwegian Bokmål dictionary for myspell Description-md5: 2cfe903e2ee87a09a490bd46c3b711d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-nl Priority: optional Section: text Installed-Size: 2447 Maintainer: Ubuntu Developers Original-Maintainer: Thijs Kinkhorst Architecture: all Source: dutch Version: 1:2.10-1 Provides: myspell-dictionary, myspell-dictionary-nl Depends: dictionaries-common | openoffice.org-updatedicts Breaks: hunspell (<< 1.2.8), libhunspell-1.2-0 (<< 1.2.8) Filename: pool/main/d/dutch/myspell-nl_2.10-1_all.deb Size: 813434 MD5sum: 11e89b81c0c58068b16e81e6f740bc2c SHA1: a6f106fc1084e784ab6d3f5579497b5a2424ffa6 SHA256: 89066ff5d813364988bf7374193c2df8952b9785637268599c5b10db6f31748f Description: Dutch dictionary for Hunspell Homepage: http://www.opentaal.org/ Description-md5: 822d3b8e7e01c818cca9d154a8dddc8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-nn Priority: optional Section: text Installed-Size: 2717 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: all Source: norwegian Version: 2.0.10-5.1 Provides: myspell-dictionary, myspell-dictionary-nn, openoffice.org-spellcheck-nn Depends: dictionaries-common (>> 0.10) | openoffice.org-updatedicts Filename: pool/main/n/norwegian/myspell-nn_2.0.10-5.1_all.deb Size: 670708 MD5sum: e26945717be2cd607e99e0792ea404bb SHA1: d1afe4221dc67d9c9f9127a33ba43fde23580c55 SHA256: 0ad40d926f15a97e223335681e2c1af60d87f23081f548fd4133db7d1566af1f Description: Norwegian Nynorsk dictionary for myspell Description-md5: 7183af419c88fa2510f65f3f461d6bfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-nr Priority: optional Section: text Installed-Size: 171 Maintainer: Matthias Klose Architecture: all Source: dict-nr Version: 20070206-4ubuntu1 Provides: openoffice.org-spellcheck-nr Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-nr/myspell-nr_20070206-4ubuntu1_all.deb Size: 57580 MD5sum: 69ff57ee91f064e36d40ba3b19ce5587 SHA1: 09b42665244614ff0d8b9ef62a81a5e13b6a91cf SHA256: f311b58528a5beffccb3ca0494f86125af0e565ec0bfd3978d7cdab6533583eb Description: The Ndebele dictionary for myspell Description-md5: a484ea59fb8beecf65a3c0f417ac84d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ns Priority: optional Section: text Installed-Size: 96 Maintainer: Matthias Klose Architecture: all Source: dict-ns Version: 20070206-4ubuntu1 Provides: openoffice.org-spellcheck-ns Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-ns/myspell-ns_20070206-4ubuntu1_all.deb Size: 29576 MD5sum: 4098eaee3d451498802447b4aa3766a4 SHA1: ee15eec51d4115106da55dc5e92d46382d355fa0 SHA256: 99c63a1c7c75e44b1a4ff9de82fa8bc0495beb6efdc5632a1263d096e1a8160f Description: Northern Sotho dictionary for myspell Description-md5: 87abad7416b9ac8e9870f668bc517892 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: myspell-pl Priority: optional Section: text Installed-Size: 4593 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: all Source: ipolish Version: 20130519-1 Provides: hunspell-dictionary, hunspell-dictionary-pl, myspell-dictionary, myspell-dictionary-pl Depends: dictionaries-common (>= 1.10) Suggests: libreoffice Filename: pool/main/i/ipolish/myspell-pl_20130519-1_all.deb Size: 1093342 MD5sum: eb8f822ada09175dbc782ecee5cd5830 SHA1: c31668eb3307fc941c21d637d310da327267b26f SHA256: d9120da21b93215fee9482ced1a31b852192938bf0aadcdcc7b0066761d84b4d Description: Polish dictionary for myspell Homepage: http://www.sjp.pl/ Description-md5: 7071c132c3552c83f99ff7c2dab98f11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-pt Priority: optional Section: text Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: myspell.pt Version: 20091013-4 Depends: myspell-pt-pt, myspell-pt-br Filename: pool/main/m/myspell.pt/myspell-pt_20091013-4_all.deb Size: 1254 MD5sum: 7ce2771254b325ff479423c8d6583530 SHA1: 432de52a750d9d9d3c548f5dc85e17efe67afd5b SHA256: e7e43466206841eec277556298c766b13aaf12cd8b899a4d46ce6ca394c580d6 Description: Portuguese dictionaries for myspell Homepage: http://natura.di.uminho.pt/wiki/index.cgi?Myspell Description-md5: 203de3857e5a644e4f8fc8649f08d25d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-pt-br Priority: optional Section: text Installed-Size: 5568 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Version: 20131030-1 Provides: myspell-dictionary, myspell-dictionary-pt, myspell-dictionary-pt-br Depends: dictionaries-common (>= 0.20) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Breaks: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-pt-br/myspell-pt-br_20131030-1_all.deb Size: 1132430 MD5sum: c338df4783f48150d70fecfa850dc79c SHA1: 6ec46537d8758fad98bcc4a67ef606287082d96a SHA256: 80230f6098ee11d062c7b9b682f6dbdc577d8f78b970c9784704d99cafede295 Description: Brazilian Portuguese dictionary for myspell Homepage: http://pt-br.libreoffice.org/projetos/projeto-vero-verificador-ortografico Description-md5: 0752063363586b7b996cadbe1945006b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-pt-pt Priority: optional Section: text Installed-Size: 532 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: myspell.pt Version: 20091013-4 Provides: myspell-dictionary, myspell-dictionary-pt, myspell-dictionary-pt-pt Depends: dictionaries-common (>= 0.20) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell.pt/myspell-pt-pt_20091013-4_all.deb Size: 159352 MD5sum: b55890ea22f852d48e1a554ce57dc691 SHA1: 4e47b16625df166c62e49a62502be5ac5caba430 SHA256: ab49bdf04005cb350ba709e7454b29a98543c6a81fa6e843239a72ca1863d3c9 Description: European Portuguese dictionary for myspell Homepage: http://natura.di.uminho.pt/wiki/index.cgi?Myspell Description-md5: decc49d6c901c6ff91999e9db541bd66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-sk Priority: optional Section: text Installed-Size: 2053 Maintainer: Ubuntu Developers Original-Maintainer: Miroslav Kure Architecture: all Version: 0.5.5a-2.3fakesync1 Provides: myspell-dictionary, myspell-dictionary-sk Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: openoffice.org (>= 1.0.3-3) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-sk/myspell-sk_0.5.5a-2.3fakesync1_all.deb Size: 614610 MD5sum: 3ed44629af9d5bbfa8e231140327b7f5 SHA1: bea4c21afe491532c0bcb8ddfe13eadecb43aaa7 SHA256: b1f3445589d388de472ffb99c577dd31d9704cd0949e602e9baa145aaae9a469 Description: Slovak dictionary for myspell Description-md5: b74df9e6a0dbfe44ba4bbbf091bb6061 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-sl Priority: optional Section: text Installed-Size: 2943 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 1.0-5 Provides: myspell-dictionary Depends: dictionaries-common (>= 0.10) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-sl/myspell-sl_1.0-5_all.deb Size: 1181052 MD5sum: b97733b22b099680852d700f0be775e8 SHA1: 83766b2e6fa4c4e10bae9fa4ff59b16b842c957e SHA256: 2fa6bd02da0a70c9db41f9ab244c5389a893a3ac8c568e41939e9dde6dfddcc5 Description: Slovenian dictionary for myspell Description-md5: 6f07430fa03c3e09b5d2926575681510 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ss Priority: optional Section: text Installed-Size: 442 Maintainer: Matthias Klose Architecture: all Source: dict-ss Version: 20070206-4ubuntu1 Provides: openoffice.org-spellcheck-ss Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-ss/myspell-ss_20070206-4ubuntu1_all.deb Size: 162044 MD5sum: bd31eb1edbbeb055a7dafaba5a860195 SHA1: e040fec2cb5db1f752f9bf6cdccf2bb61affcd7d SHA256: 8bd127653121823b0672798af6f9001166b12cdb300e67e4f84473236f719c25 Description: The Swazi dictionary for myspell Description-md5: b9f925b560a07d00bac50534914c1d49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-st Priority: optional Section: text Installed-Size: 200 Maintainer: Matthias Klose Architecture: all Source: dict-st Version: 20070206-4 Provides: openoffice.org-spellcheck-st Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-st/myspell-st_20070206-4_all.deb Size: 55990 MD5sum: 1855c0bf4aaf8429720cc7b9b436cfed SHA1: 88200562d931bc81d49598d5f1e9946530bc11f8 SHA256: 7628be170f80e381ee9f738c184dfa55aa3e2556b8a088681c05716a30bfdbab Description: The Southern Sotho dictionary for myspell Description-md5: 1c5dd68ad10d1e279187aa8cd65b0b8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-sv-se Priority: optional Section: text Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Jon Lachmann (JoTaB) Architecture: all Source: hunspell-sv Version: 1.51-1 Depends: hunspell-sv-se Filename: pool/main/h/hunspell-sv/myspell-sv-se_1.51-1_all.deb Size: 2020 MD5sum: 2ff6623474f96758cd72c72e91ef92ee SHA1: 94fe8421019eccf27fbfdc5dc116b0722228937e SHA256: 9e14de9fdf4dc294af51aebe72098aac3c1421dbe36dccab4d971e3e88345514 Description: transitional dummy package Homepage: http://dsso.se Description-md5: a2813983ea56c0aaa10047150775e45c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-sw Priority: optional Section: text Installed-Size: 663 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-sw Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: openoffice.org Filename: pool/main/libr/libreoffice-dictionaries/myspell-sw_4.2.1-0ubuntu1_all.deb Size: 192236 MD5sum: 312dbe8d18eeb3c8914a96c660a99182 SHA1: dce9a629ff987ad1fc5ac1dc0275dda3f60255c3 SHA256: 28dbb1e0fd5f48434cc97921d03017c9b0bc6e2f69a8e5f6a630e25ae81f5047 Description: Swahili dictionary for myspell Description-md5: 7cfa125ed64e072fdf8f93eb29192e59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-th Priority: optional Section: text Installed-Size: 387 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-th Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: openoffice.org (>= 1.9.126) Filename: pool/main/libr/libreoffice-dictionaries/myspell-th_4.2.1-0ubuntu1_all.deb Size: 132152 MD5sum: 03205e5ecb443e2f0929c9e7cd613bcf SHA1: 433e5a2fbd3513567dfb41c005e29a4c978ca35b SHA256: a002fd0e51dc07fa304434a6f2a1359e367e308f1666209314b25ab9eb361301 Description: Thai dictionary for myspell Description-md5: c7e16f1b6196e56bdaab339c05869ffc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-tn Priority: optional Section: text Installed-Size: 133 Maintainer: Matthias Klose Architecture: all Source: dict-tn Version: 20070206-4ubuntu1 Provides: openoffice.org-spellcheck-tn Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-tn/myspell-tn_20070206-4ubuntu1_all.deb Size: 44028 MD5sum: e01d72e4f31520dac1dfcc00f5f19348 SHA1: 1fe08e5a5a94248a2a3d2107759cc7dc0d9db7f7 SHA256: 1dac75150dd378b1329ea097966c50eb4b33ad399643ade46980cf9676889b63 Description: The Tswana dictionary for myspell Description-md5: 086296a3f03eba1657a4382f4df289d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ts Priority: optional Section: text Installed-Size: 289 Maintainer: Matthias Klose Architecture: all Source: dict-ts Version: 20070207-4ubuntu1 Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-ts/myspell-ts_20070207-4ubuntu1_all.deb Size: 107004 MD5sum: 89495af0c494bd80bffa2acb088d09a0 SHA1: d43d52bbbe72f547406c1e38121e15e82586ba4a SHA256: 1692639b491ff5fa775720ac322bd598c5255c0604bc8352e42158e8e0a652bb Description: The Tsonga dictionary for myspell Description-md5: 70f91e0597bfcc51299322e33720b2c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-uk Priority: optional Section: text Installed-Size: 2819 Maintainer: Ubuntu Developers Original-Maintainer: Євгеній Мещеряков Architecture: all Source: ispell-uk Version: 1.6.5-2 Provides: myspell-dictionary, myspell-dictionary-uk Depends: dictionaries-common (>= 1.11.2~) Suggests: libreoffice Filename: pool/main/i/ispell-uk/myspell-uk_1.6.5-2_all.deb Size: 522488 MD5sum: 887fb5472b5330e9232d9d54dde728a3 SHA1: 1b3797ec2f0d10aa23f8ce27d361538363d7bacb SHA256: 2e4998ab75bb1eaf81eb98c59b9c326af554a8f12304b831c79f2d62f993962d Description: Ukrainian dictionary for myspell Homepage: http://ispell-uk.sourceforge.net Description-md5: 055184e8f2d270d0d114ef6eaa8eae5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ve Priority: optional Section: text Installed-Size: 124 Maintainer: Matthias Klose Architecture: all Source: dict-ve Version: 20070206-3ubuntu1 Provides: openoffice.org-spellcheck-ve Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-ve/myspell-ve_20070206-3ubuntu1_all.deb Size: 41876 MD5sum: eae269101a2db73a7a323cfb046193ac SHA1: d0df806a41626d23fdbce4cab8d889eb30364e34 SHA256: e38d49e1418193c338c6070c1be3689c7ea6bd6ddc5f1ec9287351464e3d1ca5 Description: The Venda dictionary for myspell Description-md5: 1c99a5bb09cc127617b6d7c5f3ba51ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-xh Priority: optional Section: text Installed-Size: 219 Maintainer: Matthias Klose Architecture: all Source: dict-xh Version: 20070206-4ubuntu1 Provides: openoffice.org-spellcheck-xh Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-xh/myspell-xh_20070206-4ubuntu1_all.deb Size: 75560 MD5sum: 1224cff448a4a9d49502604983bc19f4 SHA1: 11be63f836d09214cd63442654635b4e4aff286b SHA256: fc737750aad9444508f30ff00fb7b9c0910ed9e74d41053712811eb3d5e9a4a9 Description: The Xhosa dictionary for myspell Description-md5: 71f00c9442522710736b50a543a81268 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-zu Priority: optional Section: text Installed-Size: 1216 Maintainer: Matthias Klose Architecture: all Source: dict-zu Version: 20070207-5ubuntu1 Provides: openoffice.org-spellcheck-zu Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-zu/myspell-zu_20070207-5ubuntu1_all.deb Size: 290232 MD5sum: e412ed67dfa8b0c1fbc725e31a43e026 SHA1: e8abd1e0fd3fc366eb1aa58346bdc572f8299378 SHA256: e9f7732fd520cb3c6671a6e822f03ac79c3c837a1b99d3cde6e7b006db6920d0 Description: The Zulu dictionary for myspell Description-md5: 9be93170f8a951272976dcb43fe5b36a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mysql-client Priority: optional Section: database Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: all Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Depends: mysql-client-5.5 Filename: pool/main/m/mysql-5.5/mysql-client_5.5.35+dfsg-1ubuntu1_all.deb Size: 12336 MD5sum: 821c824560e0a641181f7fd3e1b6ecd3 SHA1: b893aa7d0989c8a750e13143cde6f7ebf67248be SHA256: 1107d27d6e3c8c7652ae2d245995b6b9c2c89f2ae79f48c12cea2ea68b5147f2 Description: MySQL database client (metapackage depending on the latest version) Homepage: http://dev.mysql.com/ Description-md5: 14f0974c23b8a9eb6d18e6372c961e4c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master Package: mysql-client-5.5 Priority: optional Section: database Installed-Size: 29618 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: amd64 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Replaces: mysql-client (<< 5.5.35+dfsg-1ubuntu1), mysql-client-5.0, mysql-client-5.1 Provides: mysql-client, virtual-mysql-client Depends: debianutils (>= 1.6), libdbd-mysql-perl (>= 1.2202), libdbi-perl, libterm-readkey-perl, mysql-client-core-5.5, mysql-common (>= 5.5.35+dfsg-1ubuntu1), perl, libc6 (>= 2.17), zlib1g (>= 1:1.1.4) Breaks: mysql-client (<< 5.5.35+dfsg-1ubuntu1), mysql-client-5.0, mysql-client-5.1 Filename: pool/main/m/mysql-5.5/mysql-client-5.5_5.5.35+dfsg-1ubuntu1_amd64.deb Size: 1457718 MD5sum: 4ddcc84813ff86aa261909f1a817e411 SHA1: ce76c54466e0b24a6f35b8eb641a13128941cd0d SHA256: bbb9b6e5d9e23ea77b7b033b1ad8106ff712be19d100567e60e68cc5d18510d4 Description: MySQL database client binaries Homepage: http://dev.mysql.com/ Description-md5: 70aef1a292fc318f9af72aa188c17716 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: mysql-client-core-5.5 Priority: optional Section: database Installed-Size: 6804 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: amd64 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Replaces: mysql-client (<< 5.5.35+dfsg-1ubuntu1), mysql-client-5.0, mysql-client-core-5.1 Depends: libc6 (>= 2.14), libreadline6 (>= 6.0), zlib1g (>= 1:1.1.4) Breaks: mysql-client (<< 5.5.35+dfsg-1ubuntu1), mysql-client-5.0, mysql-client-core-5.1 Filename: pool/main/m/mysql-5.5/mysql-client-core-5.5_5.5.35+dfsg-1ubuntu1_amd64.deb Size: 701352 MD5sum: 2b9cff80da83822c9970f11ca8499f52 SHA1: e4b88bdaa2a2f0db35da51537641fc2c9f678ec9 SHA256: dad13f2b564ba54d7d478f5588841656eea2d6edd59968c0ff8d8cdf30e99fa4 Description: MySQL database core client binaries Homepage: http://dev.mysql.com/ Description-md5: 94a7aede8ba9259b1382d4dfca4cdde0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: mysql-common Priority: optional Section: database Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: all Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Breaks: amarok (<< 2.5.0-2), mysql-client-5.1 (<< 5.5), mysql-server-5.1 (<< 5.5), mysql-server-core-5.1 (<< 5.5) Filename: pool/main/m/mysql-5.5/mysql-common_5.5.35+dfsg-1ubuntu1_all.deb Size: 14114 MD5sum: 073fc2420db6acb4ec3b00264d84d03a SHA1: 67500c77128ed67af0b494a3e007710a8bd24225 SHA256: 4c9bc08aaf235fb503ed20f3619a7d59ee341027cf42631e6ebf059a51061668 Description: MySQL database common files, e.g. /etc/mysql/my.cnf Multi-Arch: foreign Homepage: http://dev.mysql.com/ Description-md5: 562d254c602f89e4390e28f6362283c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: mysql-server Priority: optional Section: database Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: all Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Depends: mysql-server-5.5 Filename: pool/main/m/mysql-5.5/mysql-server_5.5.35+dfsg-1ubuntu1_all.deb Size: 12460 MD5sum: d16af3d1cdb56d9c901566a0f9a47a0a SHA1: cc2ca722277fa1b00a32000985cffb6e188a798b SHA256: 37dba3b3f7094813f557c3852d0891fef7959e3d10134fae2627aaa270c92ab2 Description: MySQL database server (metapackage depending on the latest version) Homepage: http://dev.mysql.com/ Description-md5: e519a9c4f87658afbd1d077af63f9269 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: mysql-server-5.5 Priority: optional Section: database Installed-Size: 31923 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: amd64 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Replaces: libmysqlclient-dev (<< 5.5.17~), mysql-client-5.1, mysql-server (<< 5.5.35+dfsg-1ubuntu1), mysql-server-5.0, mysql-server-5.1 Provides: virtual-mysql-server Depends: initscripts (>= 2.88dsf-13.3), libdbi-perl, lsb-base (>= 3.0-10), mysql-client-5.5 (>= 5.5.35+dfsg-1ubuntu1), mysql-server-core-5.5 (>= 5.5.35+dfsg-1ubuntu1), passwd, perl (>= 5.6), psmisc, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.17), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: adduser (>= 3.40), debconf, mysql-common (>= 5.5.35+dfsg-1ubuntu1) Recommends: libhtml-template-perl Suggests: tinyca, mailx Breaks: libmysqlclient-dev (<< 5.5.17~), mysql-client-5.1, mysql-server (<< 5.5.35+dfsg-1ubuntu1), mysql-server-5.1 Filename: pool/main/m/mysql-5.5/mysql-server-5.5_5.5.35+dfsg-1ubuntu1_amd64.deb Size: 1972056 MD5sum: 06424b659fb7a3ab3a2d7dae0b296700 SHA1: 213939c78564e0981c51c931dca198c5c649e60c SHA256: 601cfaf3def5e3e3ad3a58d39a410522cdc2c11d5581508014e26e77ebcd14f7 Description: MySQL database server binaries and system database setup Homepage: http://dev.mysql.com/ Description-md5: 3ae11e16f793b3ee84f73a5fa268ad9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: mysql-server-core-5.5 Priority: optional Section: database Installed-Size: 19389 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: amd64 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Replaces: mysql-client-5.1, mysql-server-5.0, mysql-server-5.1, mysql-server-core-5.0, mysql-server-core-5.1 Provides: mysql-server-core Depends: libaio1 (>= 0.3.93), libc6 (>= 2.17), libstdc++6 (>= 4.1.1), libwrap0 (>= 7.6-4~), zlib1g (>= 1:1.2.0) Breaks: mysql-client-5.1, mysql-server-5.0, mysql-server-5.1, mysql-server-core-5.1 Filename: pool/main/m/mysql-5.5/mysql-server-core-5.5_5.5.35+dfsg-1ubuntu1_amd64.deb Size: 3208460 MD5sum: 566dbb49ca864afb974a36ab7515dd94 SHA1: a19ed81390dccd40d18a80e15d41e199647843ed SHA256: 1f7caf72c84dcad5a1c582ffe3052c268301ea508f2b844480f73d0be8000445 Description: MySQL database server binaries Homepage: http://dev.mysql.com/ Description-md5: a54aa75db64667c487b6c9d3800b8153 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: mythes-ca Priority: optional Section: text Installed-Size: 777 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-ca (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-ca, openoffice.org-thesaurus-ca Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-ca, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-ca (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-ca_4.2.1-0ubuntu1_all.deb Size: 159918 MD5sum: def0c65a32f4f8ea952d31f7028fa7df SHA1: 21e3050664c309be420457d4a909666e044b500e SHA256: 8185ec31b5e6613853ad0e6b00bac3585b1e8aab698c3f311564eade49fb2d74 Description: Catalan Thesaurus for LibreOffice Description-md5: a5520349a1af07a300d567ceebfb888b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-cs Priority: optional Section: text Installed-Size: 1987 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-cs (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-cs, openoffice.org-thesaurus-cs Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-cs, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-cs (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-cs_4.2.1-0ubuntu1_all.deb Size: 606278 MD5sum: 74d94520d7b7726591e0a0321a532e9b SHA1: df46de201da4bd474167f18418a1d79c93af94ab SHA256: 788ff6806df3546a12bffc71ed4e4bb3ea7fbddc6570e5d610bb543ce6e9b981 Description: Czech Thesaurus for LibreOffice Description-md5: 59792b0e17ac5510d94b0f5858c79d82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-de Priority: optional Section: text Installed-Size: 14161 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: openthesaurus Version: 20120516-2 Replaces: openoffice.org-thesaurus-de Provides: mythes-thesaurus, mythes-thesaurus-de, openoffice.org-thesaurus-de Depends: libreoffice-core | openoffice.org-core (>= 3.0~), dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9) Filename: pool/main/o/openthesaurus/mythes-de_20120516-2_all.deb Size: 3735270 MD5sum: e08bbb7ef75f6e39997f0dd718dfc3ad SHA1: 94df9063c1991e7ff634c18feb2f39dbeb1ae443 SHA256: 07c7353d7f4b6c9a4d0cc34062131184b704971d267e278dd65b0ded8ebad11f Description: German Thesaurus for OpenOffice.org/LibreOffice Description-md5: 88cf8278e5f5920a7c8e5accb28b2b74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-de-ch Priority: optional Section: text Installed-Size: 14161 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: openthesaurus Version: 20120516-2 Replaces: openoffice.org-thesaurus-de-ch Provides: mythes-thesaurus, mythes-thesaurus-de, openoffice.org-thesaurus-de-ch Depends: libreoffice-core | openoffice.org-core (>= 3.0~), dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9) Filename: pool/main/o/openthesaurus/mythes-de-ch_20120516-2_all.deb Size: 3731064 MD5sum: 7dc8526dd92ea9f3e844c55a189410ba SHA1: 826b749ec5f7383ea54a2817f1ab5007e456de17 SHA256: fbd9d443c2755492a355e40a0856e643c8f7f0b7e77da0efd91c5b6486bf3a6c Description: German Thesaurus for OpenOffice.org/LibreOffice (Swiss Version) Description-md5: 9e53a4ac5ea2768b8c794f40b66774c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-en-au Priority: optional Section: text Installed-Size: 21114 Maintainer: Ubuntu Developers Original-Maintainer: John Steele Scott Architecture: all Source: openoffice.org-en-au Version: 2.1-5.4 Replaces: openoffice.org-thesaurus-en-au (<< 2.1-5.2~) Provides: openoffice.org-thesaurus-en-au, openoffice.org2-thesaurus Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer Conflicts: openoffice.org (<< 1.9) Breaks: openoffice.org-thesaurus-en-au (<< 2.1-5.2~) Filename: pool/main/o/openoffice.org-en-au/mythes-en-au_2.1-5.4_all.deb Size: 5136826 MD5sum: fdf8ae25d2e0859a76d3f86332f9f05a SHA1: 8adc10d58d19b371916dc7933d42b1dcb5d1e887 SHA256: 5e1b2970175ef27891284c74a80b36bf39fd793442035b93bc60f42bfbc4cb2a Description: Australian English Thesaurus for OpenOffice.org Description-md5: 7ba8c201fd7908b37ed84e4a8b468dd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-en-us Priority: optional Section: text Installed-Size: 21181 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-en-us (<< 1:3.3.0-7) Provides: mythes-en-gb, mythes-thesaurus, mythes-thesaurus-en, openoffice.org-thesaurus-en-us Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-en, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-en-us (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-en-us_4.2.1-0ubuntu1_all.deb Size: 3016760 MD5sum: 99138c61347e919b573ee58991d4f5a5 SHA1: 7f782ef837f3baf1d5e7d7ffeae21dbc66fca428 SHA256: 7a3e226c119cabe0ee8ae4464bebe7d742404dfdbc6b5c7d9a2b67d56f9b6fbe Description: English Thesaurus for LibreOffice Description-md5: 9ecae14261c114cdf661401d6e90c37c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-fr Priority: optional Section: text Installed-Size: 5236 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-fr (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-fr, openoffice.org-thesaurus-fr Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-fr, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-fr (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-fr_4.2.1-0ubuntu1_all.deb Size: 956310 MD5sum: d4f25d364701cef077238c704981ac25 SHA1: f3b75d0636c3cc8549d9199ee15d127cd5943f2b SHA256: ba7f739d1fedd5cb6c8a8b6c52861342032b98428f8d328500faa80f91dae6e7 Description: French Thesaurus for LibreOffice Description-md5: 0a6ca572c4d95d722e03f2a14e3a112a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-hu Priority: optional Section: text Installed-Size: 2518 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-hu (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-hu, openoffice.org-thesaurus-hu Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-hu, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-hu (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-hu_4.2.1-0ubuntu1_all.deb Size: 432512 MD5sum: 07576d418f7cd0817ee56b1298697d98 SHA1: 624f44dd2a180aa56d0e3b464601c18a993b9bca SHA256: 3c299c16a41e19a5b601e972ebb296195c02948b180a70cf15757d30fe5f6fbd Description: Hungarian Thesaurus for LibreOffice Description-md5: 306bdb4aa6662f0c08ecc7d7e5bd112a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-it Priority: optional Section: text Installed-Size: 2672 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: all Version: 2.0.7.gh.deb1-4.1 Replaces: openoffice.org-thesaurus-it (<< 1:0) Provides: mythes-thesaurus, mythes-thesaurus-it Depends: openoffice.org-core (>= 1.9) | libreoffice-core Conflicts: openoffice.org (<< 1.9) Breaks: openoffice.org-thesaurus-it (<< 1:0) Filename: pool/main/m/mythes-it/mythes-it_2.0.7.gh.deb1-4.1_all.deb Size: 956464 MD5sum: 95b5fc2baa5aa37672d13c1fc20667e1 SHA1: 94db38c09527ff2b04b55e0452a27f9f8db37f74 SHA256: 97beafe5984f93d14cc5de5ec9a4d77191b5a82bd2e672a5bdba356724553e74 Description: Italian Thesaurus for OpenOffice.org 2 Homepage: http://linguistico.sourceforge.net/wiki/doku.php?id=thesaurus_italiano Description-md5: 100224c3b1e33fe13e5397cc011ad694 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-ne Priority: optional Section: text Installed-Size: 1013 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-ne (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-ne, openoffice.org-thesaurus-ne Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-ne, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-ne (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-ne_4.2.1-0ubuntu1_all.deb Size: 163838 MD5sum: eeb1a5eabf159b722442da13a87ca49a SHA1: 9d65cbc1fb76b92493dd7f1057c0a23294bb8a18 SHA256: 868dcb7e3ee619d20f9123dbf343c857bd7a2d8383db2bdcee8fa7bb9aff37cb Description: Nepali Thesaurus for LibreOffice Description-md5: fd81de6c5ee6f0a54fa644869c64b816 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-pl Priority: optional Section: text Installed-Size: 5804 Maintainer: Ubuntu Developers Original-Maintainer: Mateusz Skowronski Architecture: all Source: openoffice.org-thesaurus-pl Version: 1.5-4ubuntu1 Replaces: openoffice.org-thesaurus-pl Provides: mythes-thesaurus, mythes-thesaurus-pl, openoffice.org-thesaurus-pl Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-pl, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9) Filename: pool/main/o/openoffice.org-thesaurus-pl/mythes-pl_1.5-4ubuntu1_all.deb Size: 1569580 MD5sum: 7b6c8bf442b715a6755eeeb75dc30d47 SHA1: 235b97b12e91e68716929ca86cb2f3fa535ae131 SHA256: e31df7fead45fbcee45e35d8124c81d656e33de9839d46df1b8e611ba0b3eea3 Description: Polish thesaurus for LibreOffice/OpenOffice.org Homepage: http://synonimy.ux.pl/ Description-md5: 3a107343aebe7b885d6bcbd43aff3668 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-ro Priority: optional Section: text Installed-Size: 3692 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-ro (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-ro, openoffice.org-thesaurus-ro Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-ro, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-ro (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-ro_4.2.1-0ubuntu1_all.deb Size: 835058 MD5sum: f331c050824650799c5df9bfcf75ded8 SHA1: 2faa29939130d031ffe5b8b3ab7976f511985c95 SHA256: 0d37ea1971e766c569debdb127f2a9f6714201c4b387d3b0545e81c8ded97d76 Description: Romanian Thesaurus for LibreOffice Description-md5: affdc7b81b5598e64d33563c43b99908 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-ru Priority: optional Section: text Installed-Size: 2187 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-ru (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-ru, openoffice.org-thesaurus-ru Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-ru, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-ru (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-ru_4.2.1-0ubuntu1_all.deb Size: 189052 MD5sum: 464e100fdbbe93511279f1a937a0d487 SHA1: c258e5492d36eb7c8f0845cb61a04289f33a7f8b SHA256: a8ee725bab26f08e7859aab59e7a9335da1be6d4975a2fc285cc4475013da2c7 Description: Russian Thesaurus for LibreOffice Description-md5: 936dd7d5b43c79b0b7d87ad14182c922 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-sk Priority: optional Section: text Installed-Size: 973 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-sk (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-sk, openoffice.org-thesaurus-sk Depends: dictionaries-common (>= 0.10) | openoffice.org Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-sk (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-sk_4.2.1-0ubuntu1_all.deb Size: 217876 MD5sum: d4e3b9f8e1f3d7b6d5cfb4a0de140fa2 SHA1: 6cd876838cfe9df52eb94b056e8a0d5aab831420 SHA256: 091c89652364b49b7e1092fb2d45720d81685693e823d8527e4c17d513d8fe2e Description: Slovak Thesaurus for LibreOffice/OpenOffice.org Description-md5: 534dbd6d87bb681c2dc714e90aebc136 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-sv Priority: optional Section: text Installed-Size: 768 Maintainer: Gunnar Hjalmarsson Architecture: all Version: 1.3.1-2 Depends: libreoffice-core | openoffice.org-core (>= 3.0~), dictionaries-common (>= 0.10) | openoffice.org-updatedicts Filename: pool/main/m/mythes-sv/mythes-sv_1.3.1-2_all.deb Size: 232680 MD5sum: b04656c8b02059af9c343d214c7d7da8 SHA1: 9cd876fb20b254a7918b7ce6cbd37e0a24c9596c SHA256: 41083b7e2587e32bb8089c1c4c75a73f5fb39f5e57632554696f86e2a5256288 Description: Swedish thesaurus for LibreOffice/OpenOffice.org Homepage: http://extensions.libreoffice.org/extension-center/swedish-thesaurus-based-on-synlex Description-md5: a23b79e092ddb49c8842e66c3f605ecb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nabi Priority: optional Section: x11 Installed-Size: 1280 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: amd64 Version: 1.0.0-1 Depends: libc6 (>= 2.14), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.24.0), libhangul1 (>= 0.1.0), libice6 (>= 1:1.0.0), libpango1.0-0 (>= 1.14.0), libsm6, libx11-6 Suggests: imhangul-gtk2 | imhangul-gtk3 Filename: pool/main/n/nabi/nabi_1.0.0-1_amd64.deb Size: 519542 MD5sum: 466f8822b7d47369149cd978434623a7 SHA1: f8cda19c6ac5eb093c4ab094176930c7b5c5cf54 SHA256: 8cc92f67f2eac81c2002a84c0539266fdf7f9f064bfdb5a6daf3b68ce66f205c Description: Korean X input method server plus imhangul status monitor Homepage: http://code.google.com/p/nabi/ Description-md5: 91480a8a9fbfd2c9c4bd2c95ebecf4f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: nagios-images Priority: optional Section: net Installed-Size: 5870 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: all Version: 0.8 Filename: pool/main/n/nagios-images/nagios-images_0.8_all.deb Size: 2589042 MD5sum: 26ca1d2240ca174f0201efdc13445f62 SHA1: 33b4db87c2640596e0520215de1ac6b75e330640 SHA256: 61746f83afc75edc634f854c35a286bad4763389ba68c7d1388b9420d6be758b Description: Collection of images and icons for the nagios system Description-md5: 80ce9c4ac2a60b71709fec29eadc38ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-nrpe-plugin Priority: optional Section: net Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: amd64 Source: nagios-nrpe Version: 2.15-0ubuntu1 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Recommends: nagios3 | icinga Conflicts: nagios-nrpe-doc Filename: pool/main/n/nagios-nrpe/nagios-nrpe-plugin_2.15-0ubuntu1_amd64.deb Size: 12208 MD5sum: 42f403de40b7031941879bd34a82b050 SHA1: e0b0b3881bfeb9c8840f33517f72b0c382e7bc58 SHA256: f002e42f38947c2886d44afd057655f8d3c57673e1959b456f0bdf672345e766 Description: Nagios Remote Plugin Executor Plugin Description-md5: c19ebd7d65521f48328173d45f828471 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-nrpe-server Priority: optional Section: net Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: amd64 Source: nagios-nrpe Version: 2.15-0ubuntu1 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0), libwrap0 (>= 7.6-4~), lsb-base (>= 3.0-3) Pre-Depends: adduser Recommends: nagios-plugins | nagios-plugins-basic Conflicts: nagios-nrpe-doc Filename: pool/main/n/nagios-nrpe/nagios-nrpe-server_2.15-0ubuntu1_amd64.deb Size: 32842 MD5sum: d0b70b10f74bdae1315a474e29058aa4 SHA1: a47d8ad4832502fa3d374d4a2cda47cd75abdfe1 SHA256: 5170afdb9f16833a4afb159e2fe5b70c9b16b7dff3a2e5e137e5ebdfa7a986ec Description: Nagios Remote Plugin Executor Server Description-md5: a71d7976e91380d8197e4fb0bcdc04a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-plugins Priority: extra Section: net Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: all Version: 1.5-3ubuntu1 Depends: nagios-plugins-basic, nagios-plugins-standard Suggests: nagios3 | icinga, nagios-plugins-contrib Filename: pool/main/n/nagios-plugins/nagios-plugins_1.5-3ubuntu1_all.deb Size: 7726 MD5sum: ae0883f1ee0ffc58138d914babd2938b SHA1: a1b723e387186e82c83edd682ba949a7b05ce407 SHA256: f63fab04473068ff075d0ac0dd85f1c7f9d86a03b31b37955f50945a33b1c81b Description: Plugins for nagios compatible monitoring systems (metapackage) Homepage: https://www.monitoring-plugins.org Description-md5: 6b4ad5841fa7884cc6f9a6067bf53c15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-plugins-basic Priority: extra Section: net Installed-Size: 1724 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: amd64 Source: nagios-plugins Version: 1.5-3ubuntu1 Replaces: nagios-plugins, nagios-plugins-extra (<= 1.3.1.0), nagios-plugins-standard Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0), procps, iputils-ping, ucf Pre-Depends: nagios-plugins-common (>= 1.4.15-6) Suggests: nagios3 | icinga Conflicts: nagios-plugins (<= 1.4.2-3), nagios-plugins-extra (<= 1.3.1.0) Filename: pool/main/n/nagios-plugins/nagios-plugins-basic_1.5-3ubuntu1_amd64.deb Size: 237644 MD5sum: 519d23087da2be9ab8679379500fa64b SHA1: f9b82fe0c1c3191277083841846577e0db2ba0ee SHA256: 23ff793110ef9dd46c899b30931c6f96a098b3ed29d584ea7c685723427eee27 Description: Plugins for nagios compatible monitoring systems Homepage: https://www.monitoring-plugins.org Description-md5: 522e84046b5a90590a34390555a1052e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-plugins-common Priority: extra Section: net Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: amd64 Source: nagios-plugins Version: 1.5-3ubuntu1 Replaces: nagios-plugins-basic (<< 1.4.16-1ubuntu1) Depends: libc6 (>= 2.14), ucf Suggests: nagios3 | icinga Filename: pool/main/n/nagios-plugins/nagios-plugins-common_1.5-3ubuntu1_amd64.deb Size: 45986 MD5sum: f699482eddcc83880ed202957fac50bf SHA1: 06b3147e4541f069df2af10289f62f6939aabf4c SHA256: 41bea9d27779a9d594d3d9e522bb68c8e1ebe3139954ac844c24bc88a673ed4d Description: Common files for plugins for nagios compatible monitoring Homepage: https://www.monitoring-plugins.org Description-md5: 5b61b696dd72392211b1fade5f876052 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-plugins-standard Priority: extra Section: net Installed-Size: 664 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: amd64 Source: nagios-plugins Version: 1.5-3ubuntu1 Replaces: nagios-plugins Depends: libc6 (>= 2.15), ucf, nagios-plugins-basic (>= 1.4.5-2) Recommends: libdbi1 (>= 0.8.4), libldap-2.4-2 (>= 2.4.7), libmysqlclient18 (>= 5.5.24+dfsg-1), libpq5, snmp, libnet-snmp-perl, dnsutils, bind9-host | host, smbclient, whois, rpcbind Suggests: nagios3 | icinga, postfix | sendmail-bin | exim4-daemon-heavy | exim4-daemon-light Conflicts: nagios-plugins (<= 1.4.2-3) Filename: pool/main/n/nagios-plugins/nagios-plugins-standard_1.5-3ubuntu1_amd64.deb Size: 109148 MD5sum: 2d3023b7d9f050ebdd9acff469fb596f SHA1: 69a5372438d3d1f6569a8026636430d54ff61fec SHA256: 56571564b69bfe7696ff819faf6426918837b7423a681821c7526c47ed1a6481 Description: Plugins for nagios compatible monitoring systems Homepage: https://www.monitoring-plugins.org Description-md5: eae03bcd7203fd7747ae52ea0f54ffdd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios3 Priority: optional Section: net Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: amd64 Version: 3.5.1-1ubuntu1 Depends: nagios3-cgi (= 3.5.1-1ubuntu1), nagios3-core (= 3.5.1-1ubuntu1) Suggests: nagios-nrpe-plugin Filename: pool/main/n/nagios3/nagios3_3.5.1-1ubuntu1_amd64.deb Size: 1528 MD5sum: eed830741784ec9c7f1c60aeafbd2420 SHA1: 45cdfe85b0f66ba44c8691efc262976fc4094ce5 SHA256: da850dd08941e4eff40a1f1c6cda72037c52e94ec7066b168db096e1f7ccfab1 Description: host/service/network monitoring and management system Homepage: http://www.nagios.org/ Description-md5: 78bdbf6266ea3d4a5a2582c32c587c82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios3-cgi Priority: optional Section: net Installed-Size: 4760 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: amd64 Source: nagios3 Version: 3.5.1-1ubuntu1 Replaces: nagios3 (<< 3.2.0), nagios3-common (<< 3.2.0), nagios3-doc (<< 3.2.0) Depends: adduser, apache2-utils, coreutils (>= 4.5.3), libapache2-mod-php5 | php5 | php5-cgi, nagios3-common (= 3.5.1-1ubuntu1), ucf (>= 0.28), debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.14), libgd3 (>= 2.1.0~alpha~) Recommends: apache2 | httpd, nagios-images (>> 0.1) Breaks: nagios3 (<< 3.2.0), nagios3-common (<< 3.2.0), nagios3-doc (<< 3.2.0) Filename: pool/main/n/nagios3/nagios3-cgi_3.5.1-1ubuntu1_amd64.deb Size: 793858 MD5sum: f6ff230aae5d838ba096e75249ed3daf SHA1: 0eea6979608b924875c3b89c361174d170c5eb40 SHA256: a1fc98dde041e37e4113cd212946bd69d1899f6793e0f93ba6f90a84a9c277f3 Description: cgi files for nagios3 Homepage: http://www.nagios.org/ Description-md5: 005f01277f183ec1f2e424a027ce79bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios3-common Priority: optional Section: net Installed-Size: 267 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: all Source: nagios3 Version: 3.5.1-1ubuntu1 Depends: adduser, bsd-mailx | mailx, coreutils (>= 4.5.3), lsb-base (>= 3.0-6), nagios-plugins-basic, ucf (>= 0.28), libjs-jquery Recommends: nagios-plugins Filename: pool/main/n/nagios3/nagios3-common_3.5.1-1ubuntu1_all.deb Size: 53748 MD5sum: 47c1f62687969306a29fdf971a8bc5d6 SHA1: 3168eacb2585d56cad1fe37bf9acc697dd1a9ac4 SHA256: 0c406dd2b2a2db5d92356e02d26a2c0393e123cb20cff1287d0aee51b01b24bf Description: support files for nagios3 Homepage: http://www.nagios.org/ Description-md5: 9d8e7c7f672f17ee67cfb4190f2bbfe5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios3-core Priority: optional Section: net Installed-Size: 775 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: amd64 Source: nagios3 Version: 3.5.1-1ubuntu1 Replaces: nagios3 Depends: nagios3-common (= 3.5.1-1ubuntu1), perl, libc6 (>= 2.15), libperl5.18 (>= 5.18.1) Suggests: nagios-nrpe-plugin Filename: pool/main/n/nagios3/nagios3-core_3.5.1-1ubuntu1_amd64.deb Size: 230880 MD5sum: 457879537115a77f3bdb1347ce809ad7 SHA1: 2c5cf52091c37682166228eae6cc53f1bab6e599 SHA256: 72e50a98ed44ab0e7eec2da27953f632c13c4ecd1851e950002c4b2adbc02ed9 Description: host/service/network monitoring and management system core files Homepage: http://www.nagios.org/ Description-md5: 4c01313c0dc2acc89022e41118dc0d44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios3-dbg Priority: extra Section: net Installed-Size: 13049 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: amd64 Source: nagios3 Version: 3.5.1-1ubuntu1 Depends: nagios3-core (= 3.5.1-1ubuntu1), libc6 (>= 2.3.4), libperl5.18 (>= 5.18.1) Conflicts: icinga-dbg (<= 1.0.1-2) Filename: pool/main/n/nagios3/nagios3-dbg_3.5.1-1ubuntu1_amd64.deb Size: 1470452 MD5sum: 1dc784427b15f914309280ba4a5ef8de SHA1: cee1466cf31d507a07c96dcec7a3e546e8f5db3c SHA256: 5b9c36432bd8a37bbc9f70da25a73e81e7b707b2b8487ad76299653bde83fa4c Description: debugging symbols and debug stuff for nagios3 Homepage: http://www.nagios.org/ Description-md5: 14ccd1c8a83c1a5c423dfd791e8c3a64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nagios3-doc Priority: optional Section: doc Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: all Source: nagios3 Version: 3.5.1-1ubuntu1 Filename: pool/main/n/nagios3/nagios3-doc_3.5.1-1ubuntu1_all.deb Size: 4714 MD5sum: dcf3affcf483a60d7d36c848a7387990 SHA1: 36a2060acb9fb9f999d8485f2f78bd0cda5b573f SHA256: d943ee4c0daf2f5b045a38c81d1285e457483c733ad3e3d26524799a1e84bcc3 Description: documentation for nagios3 Homepage: http://www.nagios.org/ Description-md5: 81c0e42a9b16a6bc9e4472d6604edf05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nano Priority: standard Section: editors Installed-Size: 600 Maintainer: Ubuntu Developers Original-Maintainer: Jordi Mallach Architecture: amd64 Version: 2.2.6-1ubuntu1 Replaces: pico Provides: editor Depends: libc6 (>= 2.14), libncursesw5 (>= 5.6+20070908), libtinfo5, dpkg (>= 1.15.4) | install-info Suggests: spell Conflicts: pico Breaks: alpine-pico (<= 2.00+dfsg-5) Filename: pool/main/n/nano/nano_2.2.6-1ubuntu1_amd64.deb Size: 194060 MD5sum: c97dc062e9941bfe13b6b303cf8ed639 SHA1: ee93fcfd1f2ecd601b0a8f8932319848043f4f0f SHA256: f20d8cca5c30b90ebf68301d126f86e473ac83e7d6fdc36f59bcd685c2eb4020 Description: small, friendly text editor inspired by Pico Homepage: http://www.nano-editor.org/ Description-md5: b7e1d8c3d831118724cfe8ea3996b595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: nant Priority: optional Section: devel Installed-Size: 4674 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Applications Team Architecture: all Version: 0.92~rc1+dfsg-3 Depends: mono-devel (>= 2.0.1), pkg-config, mono-runtime (>= 2.10.1), liblog4net1.2-cil (>= 1.2.10), libmono-corlib4.0-cil (>= 2.10.1), libmono-sharpzip4.84-cil (>= 1.0), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 1.0), libmono-system4.0-cil (>= 2.10.7), libnunit2.6-cil Filename: pool/main/n/nant/nant_0.92~rc1+dfsg-3_all.deb Size: 748004 MD5sum: 210e6d5d47401258fc00fc1c3545d77b SHA1: 6eaa6923a453e044f27bf5271610adb1d5cb063a SHA256: 74dd9cba9776c81ad621bfe3155722ac553bbf656b60d46a72f31e715461f65a Description: build tool similar to Ant Homepage: http://nant.sourceforge.net/ Description-md5: 093122e48342c3dd573cdc2d3aba32ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nas-doc Priority: extra Section: doc Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: all Source: nas Version: 1.9.4-1 Filename: pool/main/n/nas/nas-doc_1.9.4-1_all.deb Size: 131498 MD5sum: d384b6a2e22c63a573df9e9d86b62955 SHA1: 1934cdadd291f64b600b6280c83bec0201e4689e SHA256: 51ec879d1dd19330c06d494bc9edb46b192473c297eee89366da3a93c65bd003 Description: Network Audio System - extra documentation Description-md5: 5035a42cdf8861c8e7a34271ccc1d608 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nasm Priority: optional Section: devel Installed-Size: 3208 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 2.10.09-1 Depends: libc6 (>= 2.14), dpkg (>= 1.15.4) | install-info Filename: pool/main/n/nasm/nasm_2.10.09-1_amd64.deb Size: 1503442 MD5sum: b28b0a344fe4a8d1960b011245d2ef13 SHA1: 6469dc079070120e654d13048845fe89f9889e73 SHA256: e9823667e78a68bb7bf6e1bcf2c2a58067b53232308813ff0459d07eeb10cb93 Description: General-purpose x86 assembler Homepage: http://nasm.sourceforge.net/ Description-md5: bc3dcab1162eb9b0f97c24bb0f3a90d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: naturaldocs Priority: extra Section: devel Installed-Size: 1640 Maintainer: Ubuntu Developers Original-Maintainer: Federico Di Gregorio Architecture: all Version: 1:1.5.1-0ubuntu1 Depends: perl Filename: pool/main/n/naturaldocs/naturaldocs_1.5.1-0ubuntu1_all.deb Size: 300356 MD5sum: 141c414e67ce1c5d157a5fc03e0ee6e5 SHA1: a9c3bda7c90087a82e456f6c0bb649b716694757 SHA256: deddfcaab15b6d1d992c5992556a3ebed9d44fec47dc3b025c4e11d650c97d27 Description: an extensible, multi-language documentation generator Description-md5: 3364558963832789d4258540ef67f71a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nautilus Priority: optional Section: gnome Installed-Size: 1643 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Version: 1:3.10.1-0ubuntu8 Replaces: nautilus-data (<< 1:3.2.1-2ubuntu1), nautilus-sendto Depends: libatk1.0-0 (>= 1.32.0), libc6 (>= 2.14), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10.0), libdbusmenu-glib4 (>= 0.4.2), libexempi3 (>= 2.2.0), libexif12, libgail-3-0 (>= 3.0.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.2.0), libgtk-3-0 (>= 3.9.12), libnautilus-extension1a (>= 1:2.91), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.20.0), libpangocairo-1.0-0 (>= 1.14.0), libunity9 (>= 3.8.4), libx11-6, libxml2 (>= 2.7.4), libzeitgeist-1.0-1 (>= 0.3.14), session-migration, nautilus-data (>= 1:3.10), nautilus-data (<< 1:3.11), shared-mime-info (>= 0.50), desktop-file-utils (>= 0.7), gvfs (>= 1.3.2), libglib2.0-data, gsettings-desktop-schemas Recommends: eject, brasero (>= 2.26), librsvg2-common, gvfs-backends Suggests: eog, evince | pdf-viewer, totem | mp3-decoder, xdg-user-dirs, gnome-sushi Breaks: gnome-bluetooth (<< 3.0), gnome-session (<< 2.28), gnome-volume-manager (<< 2.24), nautilus-sendto-empathy (<< 3.0), rhythmbox (<< 0.12) Filename: pool/main/n/nautilus/nautilus_3.10.1-0ubuntu8_amd64.deb Size: 480332 MD5sum: bb828096ec45d1cb7c182a5eb5d78ff5 SHA1: a687228da2244195a852d9b76ae872bd29944de1 SHA256: c76f388e57ac755d7aaa4837a581c5f3651690f3501ba1c55b22d7a34edf028b Description: file manager and graphical shell for GNOME Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: 007268d365c98355ef914766c16ee43f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: nautilus-data Priority: optional Section: gnome Installed-Size: 220 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: nautilus Version: 1:3.10.1-0ubuntu8 Depends: dconf-gsettings-backend | gsettings-backend Suggests: nautilus Filename: pool/main/n/nautilus/nautilus-data_3.10.1-0ubuntu8_all.deb Size: 50862 MD5sum: e556bc3656a69dcdbf6cd39276941ff1 SHA1: efe42ec1817856610a0f8a8d2a072e58576402d0 SHA256: 49774821b8570cbb0936bd685f104e192ab27f4ab16fbeddd708280925e92178 Description: data files for nautilus Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: d164dca99682ab7c25a900f1754f8f13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: nautilus-dbg Priority: extra Section: gnome Installed-Size: 5917 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: amd64 Source: nautilus Version: 1:3.10.1-0ubuntu8 Replaces: libnautilus-extension1-dbg Depends: nautilus (= 1:3.10.1-0ubuntu8) Filename: pool/main/n/nautilus/nautilus-dbg_3.10.1-0ubuntu8_amd64.deb Size: 1469304 MD5sum: 9d121d03635e57d3cb397172d1104e96 SHA1: dbf7aced71be29a349e93c33a807c2f57e3b2bca SHA256: 1b90a8aa115611faa0c74909de2753a909c3756fc570f9aac69cd82554aceeca Description: file manager and graphical shell for GNOME - debugging version Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: 048b5b537db99ce7b3a383a98be1fa23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nautilus-sendto Priority: optional Section: gnome Installed-Size: 408 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.6.1-2ubuntu1 Depends: libc6 (>= 2.14), libdbus-glib-1-2 (>= 0.78), libebook-1.2-14 (>= 3.5.91), libebook-contacts-1.2-0 (>= 3.7.90), libedataserver-1.2-18 (>= 3.5.91), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgssdp-1.0-3 (>= 0.12.0), libgtk-3-0 (>= 3.0.0), libgupnp-1.0-4 (>= 0.18.0), libpango-1.0-0 (>= 1.14.0), dconf-gsettings-backend | gsettings-backend, nautilus (>= 1:2.91) Suggests: evolution (>= 2.28) | thunderbird | claws-mail, pidgin (>= 2.0.0) | gajim, python-dbus Breaks: gnome-bluetooth (<< 3.0), nautilus-sendto-empathy (<< 3.0) Filename: pool/main/n/nautilus-sendto/nautilus-sendto_3.6.1-2ubuntu1_amd64.deb Size: 49754 MD5sum: eb190d83e3ff572825015e5d7b468f4d SHA1: 0f9d5f6b1ab4ca327754acbb18135dab0493b64a SHA256: 1242b2702e445825e8155162ef9aefef0e90f67537f649a6a47d43f529d45e3c Description: integrates Evolution and Pidgin into the Nautilus file manager Description-md5: d0bf387d001230fa2809e50851a3bd10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: nautilus-sendto-empathy Priority: optional Section: gnome Installed-Size: 954 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: nautilus-sendto (<< 2.28.2-2) Depends: empathy (= 3.8.6-0ubuntu9), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.34), libgtk-3-0 (>= 3.0.0), empathy-common (= 3.8.6-0ubuntu9) Recommends: nautilus-sendto (>= 3.0) Breaks: nautilus-sendto (<< 3.0), telepathy-rakia (<< 0.7.4), telepathy-sofiasip (<< 0.7.4) Filename: pool/main/e/empathy/nautilus-sendto-empathy_3.8.6-0ubuntu9_amd64.deb Size: 11794 MD5sum: 207a7ece1350aff138f20c5b8aa96d7b SHA1: 0743e9bf43790c3434a2d8149b19adef783352e0 SHA256: 9666e3e10c3179887a6d7c8d1577c9cf0b361b56f2e628768c7324932b5a9614 Description: GNOME multi-protocol chat and call client (nautilus-sendto plugin) Homepage: http://wiki.gnome.org/Empathy Description-md5: 1d67fd3eb1d5829e4ec78e32a0badf51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: nautilus-share Priority: optional Section: gnome Installed-Size: 128 Maintainer: Chow Loong Jin Architecture: amd64 Version: 0.7.3-1ubuntu5 Depends: nautilus (>= 2.10), samba-common (>= 3.0.27a), samba-common-bin | samba-common (<< 2:3.4.0~pre2-1~0), gnome-session-bin, apturl, libc6 (>= 2.7), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.0.0), libnautilus-extension1a (>= 1:2.91) Suggests: samba (>= 3.0.27a) Filename: pool/main/n/nautilus-share/nautilus-share_0.7.3-1ubuntu5_amd64.deb Size: 23030 MD5sum: c103390ad38c17ef93a2afae38632b3e SHA1: 47c5b26912885fb53d70a1c7e2dbabec8001d890 SHA256: 98fd5c5dd18b444cbf1ae60edfd06435879b360b9cff00c8d508c1f193ce6ccd Description: Nautilus extension to share folder using Samba Enhances: nautilus Homepage: http://gentoo.ovibes.net/nautilus-share/ Description-md5: 12abf75bd52cbea4113eeeaace72c2db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: nbd-client Priority: optional Section: admin Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: Wouter Verhelst Architecture: amd64 Source: nbd Version: 1:3.7-1 Depends: libc6 (>= 2.4), debconf (>= 0.5) | debconf-2.0, initscripts (>= 2.88dsf-13.3) Filename: pool/main/n/nbd/nbd-client_3.7-1_amd64.deb Size: 45026 MD5sum: 44dcc87c1ad2cfbec9b6e347432781ea SHA1: 92c97d9d2b5fc8ad8f94a5cb7cbf5eaa35aa7b95 SHA256: 23659c42b40861fd83bf0e0b6fd6d3dc255c912f7e8b994e479497c4dc2f3286 Description: Network Block Device protocol - client Homepage: http://nbd.sourceforge.net/ Description-md5: 50b5081db709f9bc399b8b74366d1d8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nbd-server Priority: optional Section: admin Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Wouter Verhelst Architecture: amd64 Source: nbd Version: 1:3.7-1 Depends: libc6 (>= 2.15), libglib2.0-0 (>= 2.26.0), debconf (>= 1.2.9) | debconf-2.0, ucf, adduser Filename: pool/main/n/nbd/nbd-server_3.7-1_amd64.deb Size: 58328 MD5sum: 6bdfc8d274773df1d8fa7549a3d256c4 SHA1: bc175c8058685b49b627346e105c1b43c70a99e1 SHA256: a622285da74fdbb60081e992fce2ab7a2cf595f5e54206485aed1e2116048068 Description: Network Block Device protocol - server Homepage: http://nbd.sourceforge.net/ Description-md5: e277eb8c796be1246a3bdf1f441257b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ncurses-base Essential: yes Priority: required Section: utils Installed-Size: 367 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: all Source: ncurses Version: 5.9+20140118-1ubuntu1 Provides: ncurses-runtime Conflicts: ncurses, ncurses-runtime Breaks: ncurses-term (<< 5.7+20100313-3) Filename: pool/main/n/ncurses/ncurses-base_5.9+20140118-1ubuntu1_all.deb Size: 16584 MD5sum: d5e37a007a4935a7fc461ce1d32855d7 SHA1: f158726f092eec90907ffe7719e52a07d4135d73 SHA256: fa0efce6fdc6262a49fbd73ea08669bbcda92abda0f12507d947c353e3196637 Description: basic terminal type definitions Multi-Arch: foreign Homepage: http://invisible-island.net/ncurses/ Description-md5: 2cbef17322c0de7f007682de54ca0d4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: ncurses-bin Essential: yes Priority: required Section: utils Installed-Size: 523 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Pre-Depends: libc6 (>= 2.14), libtinfo5 (>= 5.9+20130119) Filename: pool/main/n/ncurses/ncurses-bin_5.9+20140118-1ubuntu1_amd64.deb Size: 136744 MD5sum: 58d5bf77e698e7a166eaac48ae818f5b SHA1: b2c14dc6ac99b7dd7ed06fae5c38bc60cba5fc83 SHA256: d358993375e9009e3befa9baba06bf468616f6e156ce66ab33fa2af9c70ea051 Description: terminal-related programs and man pages Multi-Arch: foreign Homepage: http://invisible-island.net/ncurses/ Description-md5: 682ee2624c08c54a53ecaefd778a4d86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: ncurses-doc Priority: optional Section: doc Installed-Size: 4376 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: all Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: libncurses5-dev (<< 5.7+20101128) Filename: pool/main/n/ncurses/ncurses-doc_5.9+20140118-1ubuntu1_all.deb Size: 684466 MD5sum: 8e0ca3326d701dc4bf2fdac876c5927d SHA1: 0209ea6696e1d64e66736710aaefb8f804354694 SHA256: 4aa41b78d887b40f9cd89dbf69d41082d1ef95cf04c67764d408e73ca23d9523 Description: developer's guide and documentation for ncurses Homepage: http://invisible-island.net/ncurses/ Description-md5: 4967594fdf42e5e326a6d1be21322eb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ncurses-examples Priority: optional Section: misc Installed-Size: 1138 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libc6 (>= 2.4), libncursesw5 (>= 5.9+20131221), libtinfo5 (>= 5.9+20130119) Filename: pool/main/n/ncurses/ncurses-examples_5.9+20140118-1ubuntu1_amd64.deb Size: 178602 MD5sum: b8995e35ca0d304c878c177140e622cc SHA1: 77118ed543a6b03d498075ccc0e7e13cb0245f5d SHA256: 534144a22468602c2fc353b3958df1b30f97550c911f47f6b51f8f5811577b07 Description: test programs and examples for ncurses Homepage: http://invisible-island.net/ncurses/ Description-md5: 9636435dbca7946bfd1b9d0a5f71adc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ncurses-term Priority: optional Section: admin Installed-Size: 2154 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: all Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: bogl-bterm (<< 0.1.18-7), mlterm-common (<< 3.0.2-1), ncurses-base (<< 5.7+20100313-1) Breaks: bogl-bterm (<< 0.1.18-7), mlterm-common (<< 3.0.2-1) Filename: pool/main/n/ncurses/ncurses-term_5.9+20140118-1ubuntu1_all.deb Size: 242540 MD5sum: b23e6a13dd7be4758dc1529b914a9a5c SHA1: 21716fe448a46086359f8b88e0ac96499b57d6aa SHA256: 00c8f0c1189c94dc81a904b3a4b02c7ba6b35a79adca2e2bc29081c567419052 Description: additional terminal type definitions Multi-Arch: foreign Homepage: http://invisible-island.net/ncurses/ Description-md5: 4b4085015cb669f69f4316436f2a2f6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: net-tools Priority: important Section: net Installed-Size: 708 Maintainer: Ubuntu Developers Original-Maintainer: net-tools Team Architecture: amd64 Version: 1.60-25ubuntu2 Replaces: ja-trans (<= 0.8-2), netbase (<< 4.00) Depends: libc6 (>= 2.14) Conflicts: ja-trans (<= 0.8-2) Filename: pool/main/n/net-tools/net-tools_1.60-25ubuntu2_amd64.deb Size: 174516 MD5sum: 80d953d0950d32c66e7284ca68ed89ee SHA1: 62ef3b9eb5114a87b1aa29062e57c544ef6df1fb SHA256: ef921d19b77685cec007c146616056ee679d80ee4ef834b9e2da8c01fa139eef Description: The NET-3 networking toolkit Multi-Arch: foreign Homepage: http://net-tools.berlios.de/ Description-md5: 003fb6a11fdb767fff574478588a3ca8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: netbase Priority: important Section: admin Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: all Version: 5.2 Depends: lsb-base (>= 3.0-6) Recommends: ifupdown Conflicts: inetutils-inetd (<< 2:1.4.3+20060719-3), openbsd-inetd (<< 0.20050402-3) Breaks: ifupdown (<< 0.7) Filename: pool/main/n/netbase/netbase_5.2_all.deb Size: 12860 MD5sum: 6201c7666f13f087e75e34dba4c878a4 SHA1: e3635fd103dde6d8674040e2e468282fe0075bad SHA256: ca6cb202c674c6b8615b6560dc9c6cd87530e8862ccc9aa79c888de6b2154377 Description: Basic TCP/IP networking system Multi-Arch: foreign Description-md5: 90e64df001afc51592384425bd1cc431 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: netcat-openbsd Priority: important Section: net Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Aron Xu Architecture: amd64 Version: 1.105-7ubuntu1 Replaces: netcat (<< 1.10-35) Provides: netcat Depends: libbsd0 (>= 0.2.0), libc6 (>= 2.16) Breaks: netcat (<< 1.10-35) Filename: pool/main/n/netcat-openbsd/netcat-openbsd_1.105-7ubuntu1_amd64.deb Size: 39558 MD5sum: cd31b836350a7873e4cb08b4cfe90882 SHA1: ab1fbd8dfd264edcbe73c1beeef6c5abc7efd74b SHA256: 2a8a27ca24e402f6d23ff730179812ee47cb067d1f3f82e627ec9bdcdeff1637 Description: TCP/IP swiss army knife Description-md5: a496fe77780d0b39750c43d6b6259b00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: netpbm Priority: optional Section: graphics Installed-Size: 3957 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Barth Architecture: amd64 Source: netpbm-free Version: 2:10.0-15ubuntu2 Replaces: netpbm-dev, netpbm-nonfree, pbmwbmp, pnmtopng Provides: pbmwbmp, pnmtopng Depends: libnetpbm10 (= 2:10.0-15ubuntu2), libc6 (>= 2.14), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>> 4.0.0-1~), zlib1g (>= 1:1.1.4) Recommends: ghostscript Conflicts: netpbm-dev (<= 2:9.10), netpbm-nonfree (<= 1:19940301.1-3), pbmwbmp, pnmtopng, ucbmpeg (<= 1r2-6) Filename: pool/main/n/netpbm-free/netpbm_10.0-15ubuntu2_amd64.deb Size: 1341384 MD5sum: c7c2ac198c0621053a364b127cafa7ad SHA1: 9f4e5af592d1b7a1536a907f8e4834140083e50f SHA256: 2b7b56fc4a7f23cbb6c5c9616b909d46b6025d28371d68fb427908ed760e5f1a Description: Graphics conversion tools between image formats Multi-Arch: foreign Homepage: http://netpbm.alioth.debian.org Description-md5: 4d025b52e6499467b1af0bf4e4a44e07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics Package: nettle-dbg Priority: extra Section: debug Installed-Size: 1678 Maintainer: Ubuntu Developers Original-Maintainer: Magnus Holmgren Architecture: amd64 Source: nettle Version: 2.7.1-1 Depends: libnettle4 (= 2.7.1-1) | libhogweed2 (= 2.7.1-1) | nettle-bin (= 2.7.1-1) Filename: pool/main/n/nettle/nettle-dbg_2.7.1-1_amd64.deb Size: 432634 MD5sum: 5d96e60f5c9d91224ea106a57b699c16 SHA1: fd462e60e443870844022c9f277e0ba689e430ed SHA256: ac99e3fa6765dbf5d1d7e4afc009607eef01f63bd7ae13dfeb636821b8092e2d Description: low level cryptographic library (debugging symbols) Homepage: http://www.lysator.liu.se/~nisse/nettle/ Description-md5: 9eb062c2583fbfed19a561e4c512df81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nettle-dev Priority: optional Section: libdevel Installed-Size: 1841 Maintainer: Ubuntu Developers Original-Maintainer: Magnus Holmgren Architecture: amd64 Source: nettle Version: 2.7.1-1 Replaces: libnettle-dev Depends: libnettle4 (= 2.7.1-1), libhogweed2 (= 2.7.1-1), libgmp10-dev, dpkg (>= 1.15.4) | install-info Conflicts: libnettle-dev Filename: pool/main/n/nettle/nettle-dev_2.7.1-1_amd64.deb Size: 823634 MD5sum: 211449f872647d44fb21c3fec2e5eb6a SHA1: c9f8992aacd4db90d1641f14cbda36769a7ca240 SHA256: d131945267d9b8dd8a64cb99537c4eeffbe57daf37b0c57b770c2acefca16d7f Description: low level cryptographic library (development files) Homepage: http://www.lysator.liu.se/~nisse/nettle/ Description-md5: 71d39c111aac4d3815d7606eac8b4fe3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: network-manager Priority: optional Section: net Installed-Size: 2000 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Version: 0.9.8.8-0ubuntu7 Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.31.8), libgudev-1.0-0 (>= 146), libmm-glib0 (>= 0.7.991), libnl-3-200 (>= 3.2.7), libnl-genl-3-200 (>= 3.2.7), libnl-route-3-200 (>= 3.2.7), libnm-glib4 (>= 0.9.8.0), libnm-util2 (>= 0.9.6.0+git201212071413.8a9759a), libpolkit-gobject-1-0 (>= 0.99), libsoup2.4-1 (>= 2.26.1), libsystemd-login0 (>= 31), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.2-14), wpasupplicant (>= 0.7.3-1), dbus (>= 1.1.2), udev, isc-dhcp-client (>= 4.1.1-P1-4), iproute2, dnsmasq-base, policykit-1, iputils-arping Pre-Depends: multiarch-support Recommends: network-manager-pptp, network-manager-gnome | plasma-widget-networkmanagement | plasma-nm, ppp (>= 2.4.5), iptables, modemmanager, systemd-services, crda Suggests: avahi-autoipd, python Conflicts: connman Breaks: network-manager-gnome (<< 0.9), network-manager-kde (<< 1:0.9), network-manager-openconnect (<< 0.9), network-manager-openvpn (<< 0.9), network-manager-pptp (<< 0.9), network-manager-vpnc (<< 0.9), plasma-widget-networkmanagement (<< 0.9~), ppp (<< 2.4.5) Filename: pool/main/n/network-manager/network-manager_0.9.8.8-0ubuntu7_amd64.deb Size: 501576 MD5sum: acb7a7e2139a0c7436fc18d8037e52a6 SHA1: 003a45fcd9e4be7e8b4fa969b685dc9584be2178 SHA256: 254fa3383c735e0009849818775cb178d364cb1329dea019f0ac4561697cb6a3 Description: network management framework (daemon and userspace tools) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 8f6f8b56b77097ec1e2134d2c9189882 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: network-manager-dbg Priority: extra Section: debug Installed-Size: 2660 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: network-manager (= 0.9.8.8-0ubuntu7) | libnm-util2 (= 0.9.8.8-0ubuntu7) | libnm-glib4 (= 0.9.8.8-0ubuntu7) | libnm-glib-vpn1 (= 0.9.8.8-0ubuntu7) Filename: pool/main/n/network-manager/network-manager-dbg_0.9.8.8-0ubuntu7_amd64.deb Size: 2123134 MD5sum: febb162a490176980803279ca2cb863f SHA1: 56d22fa9929ab90535ccd2bd11f82a6c19666e60 SHA256: ffa6d3d9f2a158db4914aed05e2afcdf3ed94553f9714bdaf08ce8453ca02436 Description: network management framework (debugging symbols) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: fab22ebf7107cdfdeb29ff226f6cf920 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: network-manager-dev Priority: optional Section: net Installed-Size: 436 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager Version: 0.9.8.8-0ubuntu7 Filename: pool/main/n/network-manager/network-manager-dev_0.9.8.8-0ubuntu7_amd64.deb Size: 56194 MD5sum: e85c5d5ff873db345cff92dafff3887b SHA1: edde9092b901f2ca52102ee199b22c029df0564a SHA256: 4cee1b9ecd22894b16503d2a860a0917f4a46a67539c35399b28b2af80245837 Description: network management framework (development files) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 7c80f295a14f6455ffe1509a646e6b4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: network-manager-gnome Priority: optional Section: net Installed-Size: 1980 Maintainer: Ubuntu Core Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager-applet Version: 0.9.8.8-0ubuntu4 Depends: gconf-service, libappindicator3-1 (>= 0.4.90), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-bluetooth11 (>= 2.91.2), libgnome-keyring0 (>= 3.2.2-2~), libgtk-3-0 (>= 3.0.0), libmm-glib0 (>= 0.7.991), libnm-glib-vpn1 (>= 0.7.999), libnm-glib4 (>= 0.9.1.90+git.20111206t233146.dff0d2a), libnm-gtk0 (= 0.9.8.8-0ubuntu4), libnm-util2 (>= 0.9.6.0+git201212071413.8a9759a), libnotify4 (>= 0.7.0), libsecret-1-0 (>= 0.7), dconf-gsettings-backend | gsettings-backend, network-manager (>= 0.9.8), policykit-1-gnome, gnome-icon-theme, dbus-x11 Recommends: notification-daemon, gnome-keyring, mobile-broadband-provider-info, iso-codes Suggests: gnome-bluetooth, network-manager-openconnect-gnome, network-manager-openvpn-gnome, network-manager-vpnc-gnome, network-manager-pptp-gnome Breaks: gnome-bluetooth (<< 3.0) Filename: pool/main/n/network-manager-applet/network-manager-gnome_0.9.8.8-0ubuntu4_amd64.deb Size: 312076 MD5sum: 83ddb2b15bf178d45cb6f1719298177b SHA1: 75ae1141018bb2fae980c6669d113f2832654a87 SHA256: 045c8232afeb7f45f181a949908f1bec5cb27f63b9b643bb79c3187faf4653f0 Description: network management framework (GNOME frontend) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: bdee3234d21720f04895a1051744f5d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: network-manager-pptp Priority: optional Section: net Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Version: 0.9.8.2-1ubuntu2 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libnm-glib-vpn1 (>= 0.7.999), libnm-util2 (>= 0.8.998), pptp-linux, ppp (>= 2.4.5), ppp (<< 2.4.6) Recommends: network-manager-pptp-gnome | plasma-nm Filename: pool/main/n/network-manager-pptp/network-manager-pptp_0.9.8.2-1ubuntu2_amd64.deb Size: 22880 MD5sum: b9af6f88344da348e71660714d1d6862 SHA1: 5fa0e1c9cfc84bd865b4ee38a2e54716b048303f SHA256: d3e06216220e1fb4df77c94c2084fccd0b940edfb930850925ae57c6a9355aad Description: network management framework (PPTP plugin core) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 133a651f45b862d95351d23a9d8e6fed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: network-manager-pptp-gnome Priority: optional Section: net Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: network-manager-pptp Version: 0.9.8.2-1ubuntu2 Depends: libc6 (>= 2.3.4), libglib2.0-0 (>= 2.37.3), libgnome-keyring0 (>= 2.20.3), libgtk-3-0 (>= 3.0.0), libnm-glib-vpn1 (>= 0.8.998), libnm-util2 (>= 0.8.998), network-manager-pptp (= 0.9.8.2-1ubuntu2) Filename: pool/main/n/network-manager-pptp/network-manager-pptp-gnome_0.9.8.2-1ubuntu2_amd64.deb Size: 28348 MD5sum: 09f174d3fde90b687ea2f5de2f0f5234 SHA1: 36d6660e6c85306c95c8f803e8e09bb655f91952 SHA256: 0eec599c24a4c39c8f62490614d3cc5277be4d3c56c6571a8379a584ab863fbe Description: network management framework (PPTP plugin GNOME GUI) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 7849b68a0488cd9b93d68da1212634cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: neutron-common Priority: optional Section: net Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: neutron-l3-agent (<< 1:2014.1~rc2-0ubuntu3~), neutron-vpn-agent (<< 1:2014.1~rc2-0ubuntu3~), quantum-common (<< 1:2013.2~b2-0ubuntu1~) Depends: adduser, python-neutron (= 1:2014.1-0ubuntu1), python:any Breaks: neutron-l3-agent (<< 1:2014.1~rc2-0ubuntu3~), neutron-vpn-agent (<< 1:2014.1~rc2-0ubuntu3~), quantum-common (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-common_2014.1-0ubuntu1_all.deb Size: 13618 MD5sum: 6c96c898fae0ff8850d26a89e4f5b681 SHA1: fed7730b536f656b1eeedb74c138e4a1deb399ff SHA256: 06487cb66f6ed512f141ebd69fd342010c9cb5f2138d24556741bffaab44ff9b Description: Neutron is a virtual network service for Openstack - common Description-md5: ab28986d7d849a4c4d59da3e76788645 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-dhcp-agent Priority: optional Section: net Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-dhcp-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: dnsmasq-base, dnsmasq-utils, neutron-common (= 1:2014.1-0ubuntu1), neutron-metadata-agent (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-dhcp-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-dhcp-agent_2014.1-0ubuntu1_all.deb Size: 5342 MD5sum: 5f284b6bf29d4835864046a3809837e1 SHA1: abe440e7266f860677ba7e1a84ae356c04e002b6 SHA256: 5c3cd7ec7aa1ace6ea1d2fe7736422aa9dfa14d793950ae6205f8f84db38fc46 Description: Neutron is a virtual network service for Openstack - DHCP agent Description-md5: 572c3866ff7d431ed7a69af059be88b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-l3-agent Priority: optional Section: net Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-l3-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: iputils-arping, neutron-common (= 1:2014.1-0ubuntu1), neutron-metadata-agent (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-l3-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-l3-agent_2014.1-0ubuntu1_all.deb Size: 3116 MD5sum: 275a822d95a174a4e84be1f8a5984c22 SHA1: 9ac72a90481136cde143e195ec6fe99941437d9c SHA256: cce2d140a2f52e71c89e7fdbbd25f1d535728e4eba8187c717e0910d10a99395 Description: Neutron is a virtual network service for Openstack - l3 agent Description-md5: 7dc64a3d701aa413a40358ba3069904a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-lbaas-agent Priority: optional Section: net Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-lbass-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: haproxy, neutron-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-lbaas-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-lbaas-agent_2014.1-0ubuntu1_all.deb Size: 4158 MD5sum: cb1a2797af06e3b69c8e8a80b075131b SHA1: d23733c44372d238fbc82eb8204026611a47be66 SHA256: ea70d5f298d5fd02d91b1f60ff2cea3bdb0eb2408e5fe5be35b27e22ab58e1de Description: Neutron is a virtual network service for Openstack - LBaaS agent Description-md5: d83e4461d001c52fe3847b97d170869c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-metadata-agent Priority: optional Section: net Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-metadata-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: neutron-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-metadata-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-metadata-agent_2014.1-0ubuntu1_all.deb Size: 3726 MD5sum: 15b7ae93907dbdbd8161f2aa09befca9 SHA1: 389571487bd09ca6de39fbd7a5684f1cbc9735d8 SHA256: e846b9ed07d713998d25f4318b8437396cd69ad5140d9720d0bcec12a6dbf576 Description: Neutron is a virtual network service for Openstack - metadata agent Description-md5: 7f661aa618ba5bb4655c68b01afa2e23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-cisco Priority: optional Section: net Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-cisco (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-cisco (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-cisco_2014.1-0ubuntu1_all.deb Size: 3950 MD5sum: c92f1de75fce5166b0406062b6c042be SHA1: 5b2fed849d44c2803229c9dfdba98db5866a69d6 SHA256: 86d68e04fd8ed221b6bceed17c4c9748125e83da8a001c66aba627f800693b56 Description: Neutron is a virtual network service for Openstack - Cisco plugin Description-md5: 810ab0477ad7e271b158b82400fad3d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-linuxbridge Priority: optional Section: net Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-linuxbridge (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-linuxbridge (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-linuxbridge_2014.1-0ubuntu1_all.deb Size: 3360 MD5sum: 1c990607ac02b224b3bd4ff6e7fd6420 SHA1: 8caa787645c02796f04a9c808904cbf5448ed516 SHA256: c8854fc3a48a9c2e3ddec97459199b31d3b3002c824cc24443664786bbda5ea3 Description: Neutron is a virtual network service for Openstack - linuxbridge plugin Description-md5: d39abc40d5041118f3e04179c9961117 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-linuxbridge-agent Priority: optional Section: net Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-linuxbridge-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: bridge-utils, neutron-plugin-linuxbridge (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-plugin-linuxbirdge-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-linuxbridge-agent_2014.1-0ubuntu1_all.deb Size: 3624 MD5sum: 10b46a33bdaf6d21abff0845f63ebb19 SHA1: 2ef4b4d7071f69a145e7e68d7252abdc3bd57298 SHA256: 2ffa65916fd1159b5b7f4ece0342e098d5d50153747737ca9e199a74614412dc Description: Neutron is a virtual network service for Openstack - linuxbridge plugin agent Description-md5: 954a060c661df8e8272f394f152b1457 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-metaplugin Priority: optional Section: net Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-metaplugin (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-metaplugin (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-metaplugin_2014.1-0ubuntu1_all.deb Size: 2438 MD5sum: 0e0ad363c9cc1c580c739061865cf6c6 SHA1: 475737d0d5771e4e3e80bb72c3b275ee39a6e46b SHA256: c4aadb4436606bcd33be7bd47f26893a0025ae76af44a062900d5e2d57b874a4 Description: Neutron is a virtual network service for Openstack - Metaplugin plugin Description-md5: f715311c2870b755d570e906eacdda25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-midonet Priority: optional Section: net Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-midonet (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-midonet (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-midonet_2014.1-0ubuntu1_all.deb Size: 2316 MD5sum: 423401e41b287fcef99dfd24acce4079 SHA1: 041e2acd57ae2e63b7a08252552a8e62c1d2f966 SHA256: 9077c98e273c9e233cf43641f527c9fc0946b896d80516faeb3c4675393269ae Description: Neutron is a virtual network service for Openstack - Midonet plugin Description-md5: 8c0d47b7abaab3927d126fd9999b8001 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-ml2 Priority: optional Section: net Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Filename: pool/main/n/neutron/neutron-plugin-ml2_2014.1-0ubuntu1_all.deb Size: 4804 MD5sum: 9a8f6e22d75237e31bf25e8cd376a36e SHA1: 9cb8cccaec75745090ce92cd35146242cf61efbe SHA256: d7c5ab46f148f448b3a29f88982221ecb10da6db38b0cb8079caefba1771398b Description: Neutron is a virtual network service for Openstack - ML2 plugin Description-md5: 04c3b1da612333dffe94afb38e17f6ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-nec Priority: optional Section: net Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-nec (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-nec (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-nec_2014.1-0ubuntu1_all.deb Size: 2934 MD5sum: 003dbeb4ecd547bcd5734493d2934d29 SHA1: e57f30d7fecb83fc5c73ae32ccf7a6dc04c2f0ee SHA256: ca047a8ea726d896d2f06a47093837e437c4f70a0606bcfd4b26f0c8652b46f7 Description: Neutron is a virtual network service for Openstack - NEC plugin Description-md5: 6d6eb20270ec73f719d84e9651e48a67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-nicira Priority: optional Section: net Installed-Size: 35 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-nicira (<< 1:2013.2~b2-0ubuntu1~) Depends: neutron-plugin-vmware Breaks: quantum-plugin-nicira (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-nicira_2014.1-0ubuntu1_all.deb Size: 1748 MD5sum: 9bece81b2f91c36076eb893941a80eac SHA1: 615526a1e9e9142b5d287155320634c03ccb4bad SHA256: b84834b771606fec99db1e99f945e08d2922fe50c29e96214a40606f60ae9166 Description: transitional dummy package Description-md5: 1f317b04f78374dba7d1e14def0b7f80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-openvswitch Priority: optional Section: net Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-openvswitch (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-openvswitch (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-openvswitch_2014.1-0ubuntu1_all.deb Size: 4246 MD5sum: 0d18a3ab32ad7256a167654e20df417e SHA1: 94661095721eef5d5e6b9e065e3b739d377ec04e SHA256: c319fae7463877d6af5462ce0db089a73c6f8d8d73019fa30fb770c528a23495 Description: Neutron is a virtual network service for Openstack - Open vSwitch plugin Description-md5: ea6e653f58f6ca6af645de5e8de0410b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-openvswitch-agent Priority: optional Section: net Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-openvswitch-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: neutron-plugin-ml2 (= 1:2014.1-0ubuntu1), openvswitch-switch, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-plugin-openvswitch-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-openvswitch-agent_2014.1-0ubuntu1_all.deb Size: 3858 MD5sum: 52f1dc5e7d22c5098d58f3880ca21bd8 SHA1: 5decef99d7640f83b6bb8344a8f1f259539f10b0 SHA256: bd49905e982ed63436dffdea82ef8c7b4142ab2e26b782919ec867ef83153516 Description: Neutron is a virtual network service for Openstack - Open vSwitch plugin agent Description-md5: e9697f8391ec5ff56d028b4049eb9f25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-ryu Priority: optional Section: net Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-ryu (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-ryu (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-ryu_2014.1-0ubuntu1_all.deb Size: 2714 MD5sum: 157a118b0108ea9f3d282d7236bed695 SHA1: 30191dc7a59f9fc9067b15f20b0a06d71d7a5c5a SHA256: e2b1bbf049a9ec90b352cfd59ea3bd0d8c87d5fd33c05dba57a1756f04a48fd9 Description: Neutron is a virtual network service for Openstack - RYU plugin Description-md5: 90383a20bbdf9b71c4cab189a18193b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-ryu-agent Priority: optional Section: net Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-ryu-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: neutron-plugin-ryu (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-plugin-ryu-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-ryu-agent_2014.1-0ubuntu1_all.deb Size: 3612 MD5sum: 037a3d1f4c00c96ed1a6acfd30ef2a45 SHA1: 0bd8cfd41d024eb6ea0346751126ba442fa51302 SHA256: 49da38b6a6ce41f668c13bd6924f3b359b4a15aa6d0f3ccce11f2c79c0a0d680 Description: Neutron is a virtual network service for Openstack - RYU plugin agent Description-md5: b210cd3ceed8f1ba200f8c787fb6036a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-vmware Priority: optional Section: net Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: neutron-plugin-nicira (<< 1:2014.1~b2-0ubuntu7~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1), python:any Breaks: neutron-plugin-nicira (<< 1:2014.1~b2-0ubuntu7~) Filename: pool/main/n/neutron/neutron-plugin-vmware_2014.1-0ubuntu1_all.deb Size: 5576 MD5sum: e79dfd5f25286b6e271b9f065bef720b SHA1: 59696e154dbff253932cbef6b36b409bd655d342 SHA256: a725b6dad3ec8f716492cc17ae681d15688e86b58522a8a0f39afc156b232160 Description: Neutron is a virtual network service for Openstack - VMware plugin Description-md5: 46a4ef55fc0177300b42c977bbef82fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-server Priority: optional Section: net Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-server (<< 1:2013.2~b2-0ubuntu1~) Depends: adduser, neutron-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Recommends: neutron-plugin-ml2 Breaks: quantum-server (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-server_2014.1-0ubuntu1_all.deb Size: 3596 MD5sum: b855821e3e985ad789ef4865ddea0f3a SHA1: 9b0ce7aabde501aa4199bf6ffe9af931cf78e383 SHA256: cef254455d4a1fe5ec371d89caea14e09112e2ca85c8f68c5308cfceca125349 Description: Neutron is a virtual network service for Openstack - server Description-md5: 1b00fccfd02ac8a9014e7ee4bfb0ddd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nfs-common Priority: optional Section: net Installed-Size: 729 Maintainer: Ubuntu Developers Original-Maintainer: Debian kernel team Architecture: amd64 Source: nfs-utils Version: 1:1.2.8-6ubuntu1 Replaces: mount (<< 2.13~), nfs-client, nfs-kernel-server (<< 1:1.2.8-6~) Provides: nfs-client Depends: libc6 (>= 2.15), libcap2 (>= 2.10), libcomerr2 (>= 1.01), libdevmapper1.02.1 (>= 2:1.02.20), libevent-2.0-5 (>= 2.0.10-stable), libgssglue1, libkeyutils1, libkrb5-3 (>= 1.6.dfsg.2), libmount1 (>= 2.19.1), libnfsidmap2, libtirpc1, libwrap0 (>= 7.6-4~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), rpcbind (>= 0.2.0-6ubuntu1), adduser, ucf, lsb-base (>= 1.3-9ubuntu3), initscripts (>= 2.88dsf-13.10ubuntu1), mountall (>= 2.41) Recommends: python Suggests: open-iscsi, watchdog Conflicts: nfs-client Breaks: nfs-kernel-server (<< 1:1.2.8-6~) Filename: pool/main/n/nfs-utils/nfs-common_1.2.8-6ubuntu1_amd64.deb Size: 182284 MD5sum: 82b6d52fc28b606bfd3c18e3e2a98723 SHA1: 6bd238772dacb3d251a0bff0f18539f7230737b1 SHA256: 2e9b613e34fdbbe348831361df87acad8e58a16ea08acb2982a5c4ff35d3faa6 Description: NFS support files common to client and server Homepage: http://nfs.sourceforge.net/ Description-md5: c2f5fd5a7d525f1cc35fbb49cc8628fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nfs-kernel-server Priority: optional Section: net Installed-Size: 512 Maintainer: Ubuntu Developers Original-Maintainer: Debian kernel team Architecture: amd64 Source: nfs-utils Version: 1:1.2.8-6ubuntu1 Replaces: knfs, nfs-server Provides: knfs, nfs-server Depends: libblkid1 (>= 2.16), libc6 (>= 2.15), libcap2 (>= 2.10), libsqlite3-0 (>= 3.5.9), libtirpc1, libwrap0 (>= 7.6-4~), nfs-common (= 1:1.2.8-6ubuntu1), ucf, lsb-base (>= 1.3-9ubuntu3) Conflicts: knfs, nfs-server Filename: pool/main/n/nfs-utils/nfs-kernel-server_1.2.8-6ubuntu1_amd64.deb Size: 85756 MD5sum: f5088bced58c7dac6db42ff9dcfb64d2 SHA1: fb9d7636caa6be2e1032f57fb5d63516ef61a5aa SHA256: 2aeb52f1f0954a0c7d060c8170c194cab92752faca6795c6f2bce0fe39100108 Description: support for NFS kernel server Homepage: http://nfs.sourceforge.net/ Description-md5: 899bf536fe9edad1d8a30a8fada5180d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nginx Priority: optional Section: web Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: all Version: 1.4.6-1ubuntu3 Depends: nginx-core (>= 1.4.6-1ubuntu3) | nginx-full (>= 1.4.6-1ubuntu3) | nginx-light (>= 1.4.6-1ubuntu3) | nginx-extras (>= 1.4.6-1ubuntu3) | nginx-naxsi (>= 1.4.6-1ubuntu3), nginx-core (<< 1.4.6-1ubuntu3.1~) | nginx-full (<< 1.4.6-1ubuntu3.1~) | nginx-light (<< 1.4.6-1ubuntu3.1~) | nginx-extras (<< 1.4.6-1ubuntu3.1~) | nginx-naxsi (<< 1.4.6-1ubuntu3.1~) Filename: pool/main/n/nginx/nginx_1.4.6-1ubuntu3_all.deb Size: 5586 MD5sum: 672b99fe883e1ec98f754f2a853da5b7 SHA1: f6fb0c2b10c77f3665ad50279409e43c835aee0e SHA256: c8e84beea1206e8e584327069d91d3c1756b7ecb32c99e7faa88a741efc9eaa8 Description: small, powerful, scalable web/proxy server Homepage: http://nginx.net Description-md5: bd4376da2b5b4ce623fe3c85203333ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nginx-common Priority: optional Section: httpd Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: all Source: nginx Version: 1.4.6-1ubuntu3 Replaces: nginx (<< 0.8.54-4), nginx-extras (<< 0.8.54-4), nginx-full (<< 0.8.54-4), nginx-light (<< 0.8.54-4) Depends: lsb-base (>= 3.2-14), init-system-helpers (>= 1.13~) Suggests: fcgiwrap, nginx-doc Breaks: nginx (<< 0.8.54-4), nginx-extras (<< 0.8.54-4), nginx-full (<< 0.8.54-4), nginx-light (<< 0.8.54-4) Filename: pool/main/n/nginx/nginx-common_1.4.6-1ubuntu3_all.deb Size: 18122 MD5sum: eda8082911f5f1d27c3b6234c2c5b11b SHA1: 6e92b73b299b45a8adbe603c90d3a4b2c59921ed SHA256: 0c97304eb6faa42f284f80a46fc7257bccc5ad4d4244504862134c90a866174c Description: small, powerful, scalable web/proxy server - common files Homepage: http://nginx.net Description-md5: 9e23931d84d07adbee5412aefdad8a90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nginx-core Priority: optional Section: httpd Installed-Size: 958 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: amd64 Source: nginx Version: 1.4.6-1ubuntu3 Provides: httpd, httpd-cgi, nginx Depends: nginx-common (= 1.4.6-1ubuntu3), libc6 (>= 2.14), libgd3 (>= 2.1.0~alpha~), libgeoip1, libpcre3, libssl1.0.0 (>= 1.0.1), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), zlib1g (>= 1:1.2.0) Suggests: nginx-doc (= 1.4.6-1ubuntu3) Conflicts: nginx-extras, nginx-full, nginx-light, nginx-naxsi Breaks: nginx (<< 1.4.5-1) Filename: pool/main/n/nginx/nginx-core_1.4.6-1ubuntu3_amd64.deb Size: 324300 MD5sum: b3364a9b9504e93145452d859bc9f142 SHA1: 211319da5c9586256983a77daa34da5d930d8dd8 SHA256: e1c7b235c6f160f95e62909b476a2b35f577ffbf4936dce59d02ac35c52180c5 Description: nginx web/proxy server (core version) Homepage: http://nginx.net Description-md5: 95171bf38df6e32108381da4d4095a2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nginx-core-dbg Priority: extra Section: debug Installed-Size: 2900 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: amd64 Source: nginx Version: 1.4.6-1ubuntu3 Depends: nginx-core (= 1.4.6-1ubuntu3) Conflicts: nginx-extras-dbg, nginx-full-dbg, nginx-light-dbg, nginx-naxsi-dbg Filename: pool/main/n/nginx/nginx-core-dbg_1.4.6-1ubuntu3_amd64.deb Size: 2678188 MD5sum: d417e750bb9f603553c2ce45231dcb90 SHA1: 26b0d85cf6a796fa1385abf4d1854a156be52c25 SHA256: cb1ef16e269ca6e84bd74cdd42bf6482d220ed506ed96909ba9b8e83e85bca33 Description: nginx web/proxy server (core version) - debugging symbols Homepage: http://nginx.net Description-md5: 585306ee79603eddeea2257bc315e8f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nginx-doc Priority: optional Section: doc Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: all Source: nginx Version: 1.4.6-1ubuntu3 Depends: lsb-base (>= 3.2-14) Filename: pool/main/n/nginx/nginx-doc_1.4.6-1ubuntu3_all.deb Size: 16836 MD5sum: 0fbc1c50921b6081ba1c5f7e649d6e2e SHA1: 691c0f258243fddbddb216cc4cbaee931430d62c SHA256: 9423a0be7a263f1dcfe6165a5c7e07c4f9b6b8f13ccb7c1f5d4e486d4c8c349f Description: small, powerful, scalable web/proxy server - documentation Homepage: http://nginx.net Description-md5: fd841a2b53e39ae89ec191f0e1278a05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nih-dbus-tool Priority: optional Section: devel Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Scott James Remnant Architecture: amd64 Source: libnih Version: 1.0.3-4ubuntu25 Depends: libnih1 (>= 1.0.0), libc6 (>= 2.15~), libdbus-1-3 (>= 1.0.2), libexpat1 (>= 2.0.1) Recommends: libnih-dbus-dev (= 1.0.3-4ubuntu25) Filename: pool/main/libn/libnih/nih-dbus-tool_1.0.3-4ubuntu25_amd64.deb Size: 57222 MD5sum: 5a97c2edf75b7ab73896fd19150a1362 SHA1: 6ea1f1849e2b72d1d7e69638e6742435168788ff SHA256: 975e8321e1c010186164fca9b3c19ebe0bfccc3562d7977a024d404963d34e0f Description: NIH D-Bus Binding Tool Multi-Arch: foreign Homepage: https://launchpad.net/libnih Description-md5: c309612fda0b1e2fe481e61ec84c37d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nmap Priority: extra Section: net Installed-Size: 17179 Maintainer: LaMont Jones Architecture: amd64 Version: 6.40-0.2ubuntu1 Replaces: ndiff Provides: ndiff Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), liblinear1 (>= 1.6), liblua5.2-0, libpcap0.8 (>= 0.9.8), libpcre3, libssl1.0.0 (>= 1.0.0), libstdc++6 (>= 4.6), python:any Conflicts: ndiff Filename: pool/main/n/nmap/nmap_6.40-0.2ubuntu1_amd64.deb Size: 3890560 MD5sum: b21837e6f61317477c58bc05ed8cfd24 SHA1: f654bd9f0adf28d7090ab143c59738ee6d37a8bf SHA256: 39f664f3be465292c49e250c80dd7f1ecbc9ce557921e6b24ebd160a9fbabfc1 Description: The Network Mapper Description-md5: bc417f4c1fdba7d8d9b0ca8a2a90b7a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: notification-daemon Priority: optional Section: x11 Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 0.7.6-1 Replaces: notify-daemon Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.2.5), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.27.0), libgtk-3-0 (>= 3.0.0), libx11-6 Conflicts: notify-daemon Filename: pool/main/n/notification-daemon/notification-daemon_0.7.6-1_amd64.deb Size: 30914 MD5sum: 5cd58924cc9c12ccdc6f5e0d8ea73188 SHA1: 70d38269c905011ee3adff392827350fa39102eb SHA256: 259ae316f2d20ac5dacd32482ceb21cd882149342c9036032125d9d009e9f136 Description: daemon for displaying passive pop-up notifications Homepage: http://www.galago-project.org/specs/notification/index.php Description-md5: 7b6bf4bfa132950715240823bbaf9ae8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-gnome-desktop Package: notify-osd Priority: optional Section: x11 Installed-Size: 789 Maintainer: DX Team Architecture: amd64 Version: 0.9.35+14.04.20140213-0ubuntu1 Replaces: notification-daemon Provides: notification-daemon Depends: gsettings-desktop-schemas, dconf-gsettings-backend | gsettings-backend, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.16), libpango-1.0-0 (>= 1.20.0), libpangocairo-1.0-0 (>= 1.14.0), libpixman-1-0 (>= 0.30.0), libwnck-3-0 (>= 3.4.0), libx11-6 Recommends: notify-osd-icons Filename: pool/main/n/notify-osd/notify-osd_0.9.35+14.04.20140213-0ubuntu1_amd64.deb Size: 103900 MD5sum: 5bccef77dcff8a1a60386aa0f188eb15 SHA1: 78d16d1e229cd30ec99e5389edcac75e4a42d278 SHA256: 6c59cc5107d89878b71553f68c792dd5f3332439a0dce72f55b3d68acee40d44 Description: daemon that displays passive pop-up notifications Homepage: https://launchpad.net/notify-osd Description-md5: 959180eeab8ef45dfa865fe315287601 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: notify-osd-icons Priority: optional Section: x11 Installed-Size: 1197 Maintainer: Ubuntu Desktop Team Architecture: all Version: 0.8+14.04.20131204-0ubuntu1 Filename: pool/main/n/notify-osd-icons/notify-osd-icons_0.8+14.04.20131204-0ubuntu1_all.deb Size: 63746 MD5sum: 04ee6b5f03eee9150ce3d96228630328 SHA1: 37ab8a3415c6d7fb34029f896ed063bf5c387bfa SHA256: 5ce76bed5368dedb433ca6c051db9d43efd815186b01b971db2938b935c499c6 Description: Notify-OSD icons Homepage: https://launchpad.net/notify-osd-icons Description-md5: 96b60ffeac8bf14889f8441214669378 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: nova-api Priority: extra Section: net Installed-Size: 393 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: iptables, nova-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/n/nova/nova-api_2014.1-0ubuntu1_all.deb Size: 4712 MD5sum: 1141f487f9faef59f46a25bacd96f8b4 SHA1: 5a5c1d013c9d48e3ed9b2658dcbad7c1c918367d SHA256: 871d06945e52a06fff7eac9be4ffbe2b7e6a7c030ffeee8be23ec6807a552b0b Description: OpenStack Compute - API frontend Homepage: http://launchpad.net/nova Description-md5: 93751a4c42a717b98a076fc37e614e1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-cert Priority: extra Section: net Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: nova-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/n/nova/nova-cert_2014.1-0ubuntu1_all.deb Size: 4384 MD5sum: c7c9eab32678ee2ffdf94166f532b6fe SHA1: a5d9f6040079eb7bdc030a2c21f6c563a0357a18 SHA256: 133d85bbe2ba7cc67ab0b04a3d8ace4f3180c53bac6f805b58883e87db666c00 Description: OpenStack Compute - certificate management Homepage: http://launchpad.net/nova Description-md5: 171b61c56d67b812f80c5642bfa0d1d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-common Priority: extra Section: net Installed-Size: 482 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: adduser, python-nova (= 1:2014.1-0ubuntu1), python:any Recommends: python-glanceclient, python-keystone Filename: pool/main/n/nova/nova-common_2014.1-0ubuntu1_all.deb Size: 11140 MD5sum: 1c3ef152b692a11d7822b5657d64fe92 SHA1: 59c68ca9b6cfe1e2a8c7fabd8d40b92765d6e317 SHA256: 2bd094ef8f835fe03999c97e3dcfceb7ccf13f7e1d165d2fee5914c11ffef3c6 Description: OpenStack Compute - common files Homepage: http://launchpad.net/nova Description-md5: ca300a4c4a13a67629e52754451325a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-compute Priority: extra Section: net Installed-Size: 402 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: nova-common (= 1:2014.1-0ubuntu1), nova-compute-kvm | nova-compute-hypervisor, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/n/nova/nova-compute_2014.1-0ubuntu1_all.deb Size: 6686 MD5sum: f0c9026a52a0b3cce2e82c54dee5f7e9 SHA1: 32945cb0ef9526ec3e80bc1c32c8c53babaf9469 SHA256: 25830f9941d5d17b94fdf2fa205e92ddf9712c1c81d79d71294a364f43716595 Description: OpenStack Compute - compute node base Homepage: http://launchpad.net/nova Description-md5: 3ba5242ed5b20ea217068529d959352e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-compute-kvm Priority: extra Section: net Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Provides: nova-compute-hypervisor Depends: nova-compute-libvirt (= 1:2014.1-0ubuntu1), qemu-system (>= 1.3.0) | kvm Conflicts: nova-compute-hypervisor Filename: pool/main/n/nova/nova-compute-kvm_2014.1-0ubuntu1_all.deb Size: 2826 MD5sum: eb61aa3b6d4db9bf669378b7d8010299 SHA1: f337ac270c132a363ace63ec0320b02b1709dc82 SHA256: 2458a8ba860276c4384a9d4b9b1b622dff0b43187f058a478d0542534a4be516 Description: OpenStack Compute - compute node (KVM) Homepage: http://launchpad.net/nova Description-md5: 3a3f4fc6eb0e0d1a1a52636f4a84daa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-compute-libvirt Priority: extra Section: net Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: adduser, ebtables, genisoimage, iptables, kpartx, libvirt-bin, nova-compute (= 1:2014.1-0ubuntu1), open-iscsi, parted, python-libvirt, qemu-utils, vlan Suggests: guestmount, multipath-tools, sg3-utils, sysfsutils Filename: pool/main/n/nova/nova-compute-libvirt_2014.1-0ubuntu1_all.deb Size: 2802 MD5sum: 246fe0b8ab1c07762d0828b5fe192a52 SHA1: ccaa3afe4968c4ba72d52a43c2eaf32b4e2fe593 SHA256: 0818d359fe678b1fabb6f70665cfdd6ab0141f175a17f624f2596f14fd142eff Description: OpenStack Compute - compute node libvirt support Homepage: http://launchpad.net/nova Description-md5: cb504411d66a5643ec6b6555c1b9da4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-compute-lxc Priority: extra Section: net Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Provides: nova-compute-hypervisor Depends: nova-compute-libvirt (= 1:2014.1-0ubuntu1) Conflicts: nova-compute-hypervisor Filename: pool/main/n/nova/nova-compute-lxc_2014.1-0ubuntu1_all.deb Size: 2802 MD5sum: 45dfe8b6bb47b3501172fd7e38725e19 SHA1: 7113d57d7b7e9683333acdbf36d6cc443c24625c SHA256: 81049708ad45e89026d11e41016697c17130edce3ce4ee7553b5db33a0b6a2ca Description: OpenStack Compute - compute node (LXC) Homepage: http://launchpad.net/nova Description-md5: 8c74b0f3d56b3da8c70cf752f98f7869 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-doc Priority: extra Section: doc Installed-Size: 3454 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Recommends: libjs-jquery Filename: pool/main/n/nova/nova-doc_2014.1-0ubuntu1_all.deb Size: 1979428 MD5sum: 21cad888e3250b486a7a525df1935638 SHA1: 6ca51f7406e59e55e5cb3d93148d908d2e479ff1 SHA256: a4660f136ae2eac1334b54f349ee29ec32793130cb7482a00f25d65070407c2a Description: OpenStack Compute - documentation Homepage: http://launchpad.net/nova Description-md5: 1c367fcc5afa32969a8f351c6365dd1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-network Priority: extra Section: net Installed-Size: 398 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: bridge-utils, dnsmasq-base, dnsmasq-utils, ebtables, iptables, iputils-arping, netcat, nova-common (= 1:2014.1-0ubuntu1), vlan, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Suggests: radvd Filename: pool/main/n/nova/nova-network_2014.1-0ubuntu1_all.deb Size: 6460 MD5sum: cc363a712e375838ea626381f84c0fbf SHA1: c610f9bddd8e3fb5d7e4fd22b8de6042945ed10a SHA256: 8b7ad5f403325eabb9c738b6bfb78a697be7aedcf0255524affca624b2fc4c17 Description: OpenStack Compute - Network manager Homepage: http://launchpad.net/nova Description-md5: ce3e77d724d3353406c26c4d4af8c565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-objectstore Priority: extra Section: net Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: nova-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/n/nova/nova-objectstore_2014.1-0ubuntu1_all.deb Size: 4596 MD5sum: c1b1bec33f72d52cf6371bb075bd6b0a SHA1: d02d612582c72e4ad1b033cdd7992362a3effa38 SHA256: 7b73161bacb0024e92f427080c964a4189c21cf7a976203ca964646ad250ca0e Description: OpenStack Compute - object store Homepage: http://launchpad.net/nova Description-md5: 25cb037ff1b6bb2f705647605954cac3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-scheduler Priority: extra Section: net Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: nova-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/n/nova/nova-scheduler_2014.1-0ubuntu1_all.deb Size: 4402 MD5sum: 535e3d15daf0651f8f8eaaf158456e41 SHA1: 172523b91e545e804d864885b04c348d3f81635c SHA256: 8896af1f774acf954e45538fac820bbe53858e84a40a5b4857f04da767774d26 Description: OpenStack Compute - virtual machine scheduler Homepage: http://launchpad.net/nova Description-md5: 8edec11a409c894d59bffef4d16d21b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-volume Priority: extra Section: net Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: cinder-api, cinder-scheduler, cinder-volume Filename: pool/main/n/nova/nova-volume_2014.1-0ubuntu1_all.deb Size: 4680 MD5sum: 701d5f33dcbb12036a6de2d7cb6dc6e0 SHA1: 79e20b9b20a9a2c8a525e199c0285022be75243c SHA256: 6aa4ca50f87cd3232d226f499de443e69fabb992b1c7d1bb35854b8fbd9eb9f6 Description: OpenStack Compute - storage Homepage: http://launchpad.net/nova Description-md5: f85e1ba6a9aabcaf096890562606c8de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ntfs-3g Priority: standard Section: otherosfs Installed-Size: 1438 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Version: 1:2013.1.13AR.1-2ubuntu2 Provides: libntfs-3g841 Depends: debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.17), libfuse2 (>= 2.8.1), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0) Pre-Depends: multiarch-support, fuse Filename: pool/main/n/ntfs-3g/ntfs-3g_2013.1.13AR.1-2ubuntu2_amd64.deb Size: 420868 MD5sum: c33dea413a24ff83bc39e23c702542da SHA1: 082b0a838f076236ee2a388f4aa99745f91e1988 SHA256: a78a524f258f376a9f8c8bb537ad1c78776476f10878016d600760b5db9c8f07 Description: read/write NTFS driver for FUSE Homepage: http://www.tuxera.com/community/ntfs-3g-advanced/ Description-md5: d38b96403238266210560bdd2ee0d28c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: ntfs-3g-dbg Priority: extra Section: debug Installed-Size: 1680 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Source: ntfs-3g Version: 1:2013.1.13AR.1-2ubuntu2 Depends: ntfs-3g (= 1:2013.1.13AR.1-2ubuntu2), ntfs-3g-dev (= 1:2013.1.13AR.1-2ubuntu2) Filename: pool/main/n/ntfs-3g/ntfs-3g-dbg_2013.1.13AR.1-2ubuntu2_amd64.deb Size: 1295928 MD5sum: 56ba76b0c45858db0dcde59278966975 SHA1: 7d7059e457de46ce3b30cfd307afc5ed520417ac SHA256: e8b21de445490ba67cf9098ac53e23fee044bcb8d55d0c7a402e1b86498d03f5 Description: read/write NTFS driver for FUSE (debug) Homepage: http://www.tuxera.com/community/ntfs-3g-advanced/ Description-md5: 4d27c9bf99072e55f4dbb4647c384b5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ntfs-3g-dev Priority: optional Section: libdevel Installed-Size: 827 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Source: ntfs-3g Version: 1:2013.1.13AR.1-2ubuntu2 Depends: ntfs-3g (= 1:2013.1.13AR.1-2ubuntu2) Filename: pool/main/n/ntfs-3g/ntfs-3g-dev_2013.1.13AR.1-2ubuntu2_amd64.deb Size: 201802 MD5sum: 4f67e07b68cbcbd7c01a2b5bb1a0c6e8 SHA1: 3d06cdcd3bbd96cba23cc294f761c76ab82f8ae6 SHA256: a92b82e5dec42479b79cae8ab0222824855182312858504ea398751a61d8842b Description: read/write NTFS driver for FUSE (development) Homepage: http://www.tuxera.com/community/ntfs-3g-advanced/ Description-md5: f17752933720148edc7d3f25b03e9fee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ntp Priority: optional Section: net Installed-Size: 1460 Maintainer: Ubuntu Developers Original-Maintainer: Debian NTP Team Architecture: amd64 Version: 1:4.2.6.p5+dfsg-3ubuntu2 Replaces: apparmor (<< 2.3.1+1403-0ubuntu10), apparmor-profiles (<< 2.3.1+1403-0ubuntu10) Depends: adduser, lsb-base (>= 3.2-13), netbase, libc6 (>= 2.17), libcap2 (>= 2.10), libedit2 (>= 2.11-20080614), libopts25 (>= 1:5.18), libssl1.0.0 (>= 1.0.0) Pre-Depends: dpkg (>= 1.15.7.2) Recommends: perl Suggests: ntp-doc, apparmor (>= 2.1+1075-0ubuntu6) Conflicts: apparmor (<< 2.3.1+1403-0ubuntu10), apparmor-profiles (<< 2.3.1+1403-0ubuntu10) Breaks: dhcp3-client (<< 4.1.0-1) Filename: pool/main/n/ntp/ntp_4.2.6.p5+dfsg-3ubuntu2_amd64.deb Size: 611200 MD5sum: c33e5526d47f9fe8b9b5f26a94dd9342 SHA1: e976bd6b93448d441e85314a1e2f629210958c7b SHA256: 028dff527f9fa75ca8c22bf03f2a5a2107149704d8453f685ab847288098d1c3 Description: Network Time Protocol daemon and utility programs Homepage: http://support.ntp.org/ Description-md5: 220487bd9eceed70fec6b929cb922fd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop Package: ntp-doc Priority: optional Section: doc Installed-Size: 1814 Maintainer: Ubuntu Developers Original-Maintainer: Debian NTP Team Architecture: all Source: ntp Version: 1:4.2.6.p5+dfsg-3ubuntu2 Filename: pool/main/n/ntp/ntp-doc_4.2.6.p5+dfsg-3ubuntu2_all.deb Size: 1122918 MD5sum: dcc3e28f7b85ba50068153f2dc8054e3 SHA1: 6b09f17741f3347427fa34d3b0e6ace132ea470d SHA256: 63afeba6d81c24add98b6119231269eef226726aedfedd334b70a5ce446fd2fa Description: Network Time Protocol documentation Homepage: http://support.ntp.org/ Description-md5: f5c14d8cbc640d49a5c8a0eeaadac851 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ntpdate Priority: important Section: net Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Debian NTP Team Architecture: amd64 Source: ntp Version: 1:4.2.6.p5+dfsg-3ubuntu2 Depends: netbase, libc6 (>= 2.17), libssl1.0.0 (>= 1.0.0) Pre-Depends: dpkg (>= 1.15.7.2) Recommends: lockfile-progs Breaks: dhcp3-client (<< 4.1.0-1) Filename: pool/main/n/ntp/ntpdate_4.2.6.p5+dfsg-3ubuntu2_amd64.deb Size: 65454 MD5sum: d7e6e3537b7d712a343a0f56a6b29a98 SHA1: 067d6711e6a28ae661eec7cdc6972d821915bfe1 SHA256: d3870e5e0fc0599ce330436566b82449db07aa82fe3ce4a653130ccbb5847a85 Description: client for setting system time from NTP servers Homepage: http://support.ntp.org/ Description-md5: bab945a5e62017056d52dca74ed20cda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: numlockx Priority: optional Section: x11 Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Version: 1.2-5 Depends: libc6 (>= 2.3.4), libx11-6, libxtst6 Suggests: x-display-manager Filename: pool/main/n/numlockx/numlockx_1.2-5_amd64.deb Size: 8612 MD5sum: 1c1731bdd085db1327921e78cb944b04 SHA1: 9f417554a8d3c78ff68943fbec9c00901745cce4 SHA256: 68458e06340f85f94f692bd7c59326f396a2f1f4377bac7694e1f37bbf43e84a Description: enable NumLock in X11 sessions Enhances: gdm, kdm, wdm, xdm Homepage: http://home.kde.org/~seli/numlockx/ Description-md5: 443457451ab961060ec30ab3c8455978 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nut Priority: optional Section: admin Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: all Version: 2.7.1-1ubuntu1 Depends: nut-server, nut-client Filename: pool/main/n/nut/nut_2.7.1-1ubuntu1_all.deb Size: 119600 MD5sum: 2b16585e6c2ec30d542bcadb7474f94c SHA1: fb17220b9f88047164301caeb4ff9ad8309901a0 SHA256: b7c76a16a77149c5e1cda9e388c8d2f55585036a44d20f43e296709a20811890 Description: network UPS tools - metapackage Homepage: http://www.networkupstools.org/ Description-md5: ac00395fb1ff129232ba0df5e10c0949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nut-cgi Priority: optional Section: admin Installed-Size: 330 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: amd64 Source: nut Version: 2.7.1-1ubuntu1 Depends: libc6 (>= 2.15), libgd3 (>= 2.1.0~alpha~), libupsclient3 (>= 2.7.1), adduser Recommends: apache2 | httpd-cgi Suggests: nut Filename: pool/main/n/nut/nut-cgi_2.7.1-1ubuntu1_amd64.deb Size: 46570 MD5sum: 985f00204d10999804830168d32b867e SHA1: bc449127ddd36538685e0ec97347197c2258acf4 SHA256: 75506b9c35242a0bc7707cf723dd9b9d9cbb8861f5a2fc734fe2db3bd22c153d Description: network UPS tools - web interface Homepage: http://www.networkupstools.org/ Description-md5: 16fe1723aea6d72223068ec8c97046eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nut-client Priority: optional Section: admin Installed-Size: 511 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: amd64 Source: nut Version: 2.7.1-1ubuntu1 Replaces: nut (<< 2.6.1-2~), nut-server (<< 2.6.3-1~), ups-monitor Provides: ups-monitor Depends: libc6 (>= 2.15), libupsclient3 (>= 2.7.1), init-system-helpers (>= 1.13~), adduser, lsb-base (>= 3.0-6) Recommends: bash-completion Suggests: nut-monitor Conflicts: ups-monitor Breaks: nut (<< 2.6.1-2~), nut-server (<< 2.6.3-1~) Filename: pool/main/n/nut/nut-client_2.7.1-1ubuntu1_amd64.deb Size: 87176 MD5sum: e3649660f79bccde076c7b646b4c6bb9 SHA1: 2d2906fd13b729290eecedee06fb1337f1122670 SHA256: 3e359e6a5f168436df56817b75a4a4194a7ae569a708f03b6f3a53af00325c24 Description: network UPS tools - clients Homepage: http://www.networkupstools.org/ Description-md5: 30f1061db3258a7a5c46e18466afa6c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nut-doc Priority: optional Section: doc Installed-Size: 2911 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: all Source: nut Version: 2.7.1-1ubuntu1 Suggests: doc-base Filename: pool/main/n/nut/nut-doc_2.7.1-1ubuntu1_all.deb Size: 1824030 MD5sum: 9580813fb91bd486d224abe4b09bf88a SHA1: 7d632f84a1ca71691e7f174310497fc66e5eef0f SHA256: 7261a0d0f591a68f0566885b2dcbbd5bf4ed673b706d316aac08ceeb1124eeb3 Description: network UPS tools - documentation Homepage: http://www.networkupstools.org/ Description-md5: 4cffa515519a2e34b3b662460af77a9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nut-server Priority: optional Section: admin Installed-Size: 4262 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: amd64 Source: nut Version: 2.7.1-1ubuntu1 Replaces: nut (<< 2.6.1-2~) Depends: libc6 (>= 2.15), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libupsclient3 (>= 2.7.1), libusb-0.1-4 (>= 2:0.1.12), libwrap0 (>= 7.6-4~), init-system-helpers (>= 1.13~), adduser, lsb-base (>= 3.0-6), udev (>= 136-1), nut-client (= 2.7.1-1ubuntu1) Suggests: nut-cgi, nut-snmp, nut-ipmi, nut-xml Conflicts: nut-hal-drivers Breaks: nut (<< 2.6.1-2~) Filename: pool/main/n/nut/nut-server_2.7.1-1ubuntu1_amd64.deb Size: 608820 MD5sum: 35c57d61fee7c8235741dccea75db7b9 SHA1: 6443d455538e5fa7dee62fd0f561b1b830c3e0f0 SHA256: 97f15a9476d69460b5aba03b6054a222851687bde0f6b616b168ddd9b786975a Description: network UPS tools - core system Homepage: http://www.networkupstools.org/ Description-md5: cf50e3b4416f9edcc4a33c7f641661ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nut-snmp Priority: optional Section: admin Installed-Size: 300 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: amd64 Source: nut Version: 2.7.1-1ubuntu1 Depends: libc6 (>= 2.15), libsnmp30 (>= 5.7.2~dfsg), nut (>= 1.4.1-pre1) Filename: pool/main/n/nut/nut-snmp_2.7.1-1ubuntu1_amd64.deb Size: 78834 MD5sum: 118292902cc944b47676a065e030613d SHA1: 1719b0fab294d145f7f72d0249b4ac79bbcff77a SHA256: f8c6ad710e1007538369528a43a753c852b26315f8f7989bde553f5ba47069ab Description: network UPS tools - SNMP driver Homepage: http://www.networkupstools.org/ Description-md5: 9982af957abdb380c9a8847a365d37a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nux-tools Priority: optional Section: x11 Installed-Size: 87 Maintainer: Didier Roche Architecture: amd64 Source: nux Version: 4.0.6+14.04.20140409-0ubuntu1 Depends: libc6 (>= 2.4), libgl1-mesa-glx | libgl1, libpci3 (>= 1:3.2.1-1), libx11-6, libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxfixes3 Filename: pool/main/n/nux/nux-tools_4.0.6+14.04.20140409-0ubuntu1_amd64.deb Size: 10668 MD5sum: 7abc9c2c663aa1572b49ba232b4fbbf5 SHA1: 6768e9ad0246bf7900200b40dc9c588172c3d8c8 SHA256: 1d79f6974baa7a9fc0d03c8fe507c4bfe4f332fcf63e8d7212858a8fd306adc5 Description: Visual rendering toolkit for real-time applications - tools Multi-Arch: foreign Homepage: http://launchpad.net/nux Description-md5: b3c6b45df6daa78bd162d755577c83d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: nvidia-prime Priority: optional Section: admin Installed-Size: 86 Maintainer: Alberto Milone Architecture: amd64 Version: 0.6.2 Replaces: hybrid-graphics Provides: hybrid-graphics Depends: lightdm (>= 1.9.1) | gdm | kdm, upstart, bbswitch-dkms, pciutils, lsb-release, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Conflicts: hybrid-graphics Breaks: ubuntu-drivers-common (<< 1:0.2.89) Filename: pool/main/n/nvidia-prime/nvidia-prime_0.6.2_amd64.deb Size: 11186 MD5sum: b4354596045ca3ec27e96627d5895e18 SHA1: 96613d5d1334cd0b5107608bc66d0791c4e108fa SHA256: 2eac81827473cdb6d27eee5c0dbe64371b172b339fa0ff0c62c374474c90ce60 Description: Tools to enable NVIDIA's Prime Description-md5: 398e4a566cef42e9b12f88c78ffad0c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings Priority: optional Section: x11 Installed-Size: 2333 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Version: 331.20-0ubuntu8 Replaces: libxnvctrl-dev, nvidia-settings-binary Provides: nvidia-settings-binary Depends: pkg-config, screen-resolution-extra (>= 0.12), libvdpau1, libc6 (>= 2.14), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.8.0), libpango-1.0-0 (>= 1.14.0), libx11-6 (>= 2:1.4.99.1), libxext6, libxxf86vm1 Conflicts: libxnvctrl-dev, nvidia-settings-binary Filename: pool/main/n/nvidia-settings/nvidia-settings_331.20-0ubuntu8_amd64.deb Size: 774240 MD5sum: f8c671f49b0e4cedebcbba265e8a4fd2 SHA1: 0b4a7652da068a40ab474258eb7485b5d6d16dc9 SHA256: 462fd4f89c064279dc60bf0b370eb891f46ec97315b3d7af274c541932ed231a Description: Tool for configuring the NVIDIA graphics driver Description-md5: 9bb7c34dc84550e6fff415c0eb0eda37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-304 Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-304_331.20-0ubuntu8_amd64.deb Size: 2964 MD5sum: 326e00dd5bc39879987bda1f04cec68e SHA1: 39447522366f374362b025fac31fa90908c5bb9c SHA256: 52fc9f441ce10fa6af60887ab1cb3c8ddafa3c61ead1930c90133b20b0dadde6 Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-304-updates Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-304-updates_331.20-0ubuntu8_amd64.deb Size: 2980 MD5sum: 46d4eaceb1fee8996a2242e57d591443 SHA1: 98b08a5ecff773a5a55b232f493e6447d92faab7 SHA256: 93cd28f4a758c2e57e8acf4ea198fd613895b9c68dab97dd033bebd55984d672 Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-310 Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-310_331.20-0ubuntu8_amd64.deb Size: 2964 MD5sum: 562bc679209e0bc952e7093fea0be1be SHA1: 813d82a5f0795faeed4f8abdc98f5cfc016cf4e9 SHA256: 54c7a8ecd3271975909b9cf8f6b4950ff5ba65a8bb79c19b4885986e6c522b3d Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-310-updates Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-310-updates_331.20-0ubuntu8_amd64.deb Size: 2978 MD5sum: 5cb02c6d3fab60970daea60863337f02 SHA1: 6bc7ec516864307b89a98267f035440640a79f47 SHA256: dcba90f14e4432bfd3b4f7eb9b1c414b10032ca15b3391bab1d4e02979b39902 Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-313-updates Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-313-updates_331.20-0ubuntu8_amd64.deb Size: 2978 MD5sum: 9202c6ec6aa3df01a348430ba81350b9 SHA1: 8204700695f124f45a60a1585d9ec94475ed06d9 SHA256: 3a4b9c1785e321fe7b4511b2f0acb736972a7a328b1fcff211e60ec65d54379f Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-319 Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-319_331.20-0ubuntu8_amd64.deb Size: 2962 MD5sum: c4a673a5d96eb2a0141d1b057ef1e260 SHA1: 86c857070ff1040a5dd9bc7ada808bcb9c23adc5 SHA256: b3ebb565a759b99f3027d2003fdfe576e5e159c2bcd6f940cdd17875a6049166 Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-319-updates Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-319-updates_331.20-0ubuntu8_amd64.deb Size: 2978 MD5sum: 543684889b2c642d41c4920c47efbf60 SHA1: 87eaae1e9993cb86f5d12548cb653eb76ebe1bd3 SHA256: 1a99d0e634fa091b6984c9a902c0e3355eb74d8b83ee684f6b4ed1047ccffe39 Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-experimental-304 Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-experimental-304_331.20-0ubuntu8_amd64.deb Size: 2990 MD5sum: 4f1b75ee506fa654e16200532d8a50e4 SHA1: c4cb3d73ab916e5f9569d7c06c42a43abc644eaa SHA256: 90bc041a5c2ee3961b8b1ca4b1343abb090e19dccbafba6363ce49c381b5922f Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-updates Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: amd64 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-updates_331.20-0ubuntu8_amd64.deb Size: 2968 MD5sum: e006b8324a1e0cf46da068778a5ee188 SHA1: c260c5b3af7b87e34c3e0a7e115785f018b16e70 SHA256: cfc880c93f76b0d39d151cb038eddfb94e5bdabee7dac34c9432c06114570b11 Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: obex-data-server Priority: optional Section: admin Installed-Size: 254 Maintainer: Ubuntu Developers Original-Maintainer: Filippo Giunchedi Architecture: amd64 Version: 0.4.6-0ubuntu2 Depends: libbluetooth3 (>= 4.91), libc6 (>= 2.14), libdbus-glib-1-2 (>= 0.88), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.8), libopenobex1, libusb-0.1-4 (>= 2:0.1.12) Recommends: python, python-dbus, python-gobject Filename: pool/main/o/obex-data-server/obex-data-server_0.4.6-0ubuntu2_amd64.deb Size: 83816 MD5sum: 6e76316a146b105e6ce265fe7439b8bb SHA1: e0a305cd2602c65c65d0d5a1fcd7dd4aded07b0b SHA256: b53574542412af703628de64657e67dfb4ac044eccd469241d6cce7ebec88d73 Description: D-Bus service for OBEX client and server side functionality Homepage: http://wiki.muiline.com/obex-data-server Description-md5: bcc795da48f30325384f4d64eaf288c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: obexd-client Priority: optional Section: admin Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: amd64 Source: obexd Version: 0.46-1ubuntu7 Depends: libbluetooth3 (>= 4.91), libc6 (>= 2.14), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.28.0) Filename: pool/main/o/obexd/obexd-client_0.46-1ubuntu7_amd64.deb Size: 61464 MD5sum: 3737c9c5aa09a11c100432e58addd967 SHA1: ce75b787fce98a74c2b50c320ff4128a83d18089 SHA256: 9d9e7292280f7fddd7fc0094f74256704af55a0da861a659e9067dd385ceae94 Description: D-Bus OBEX client Homepage: http://www.bluez.org Description-md5: 0774592751f2557a77c4b9658927512e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ocaml Priority: optional Section: devel Installed-Size: 9824 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Version: 4.01.0-3ubuntu3 Replaces: ocaml-nox (<< 3.11.0-2) Provides: ocaml-4.01.0 Depends: ocaml-base-nox, ocaml-base-4.01.0, ocaml-nox-4.01.0, libx11-dev Suggests: tcl-dev, tk-dev Filename: pool/main/o/ocaml/ocaml_4.01.0-3ubuntu3_amd64.deb Size: 1247250 MD5sum: caa9625a281b8483f95228908a19701f SHA1: c6b60909c549fe7eaca33f6633cb8b7c26b1edcd SHA256: f7024e6cf2dfb585244689f79c159cea846f0610c9ea171a3ed706317fc4413f Description: ML language implementation with a class-based object system Homepage: http://caml.inria.fr/ Description-md5: 04cda173a24e7986d3433da3f1594787 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-base Priority: optional Section: devel Installed-Size: 242 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml Version: 4.01.0-3ubuntu3 Provides: ocaml-base-4.01.0 Depends: ocaml-base-nox, libc6 (>= 2.15), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0), libx11-6, ocaml-base-nox-4.01.0 Filename: pool/main/o/ocaml/ocaml-base_4.01.0-3ubuntu3_amd64.deb Size: 50170 MD5sum: 0942d753ca7b52aed942c4e3f73db16d SHA1: 86656b07fb67977bcc78d1094347c038c529449f SHA256: dcd155b81dec23ff064bb32b69e36655d40ca2472664b33bd680e2afec373b56 Description: Runtime system for OCaml bytecode executables Homepage: http://caml.inria.fr/ Description-md5: 84e550243216cdd5a47f4a5444f96a15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-base-nox Priority: optional Section: devel Installed-Size: 1700 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml Version: 4.01.0-3ubuntu3 Replaces: ocaml-interp (<< 3.11.1-3) Provides: ocaml-base-nox-4.01.0 Depends: libc6 (>= 2.15), libtinfo5 Breaks: ocaml-interp (<< 3.11.1-3) Filename: pool/main/o/ocaml/ocaml-base-nox_4.01.0-3ubuntu3_amd64.deb Size: 444714 MD5sum: 2b2c69be2992fca19d377ff1694ec34e SHA1: 938be1ba067e14b9a36b978a50f182e8e2e8bfb4 SHA256: 32789ad58479ebf0ba3d138b99b7d0c478871ecca879b37cb423398fc2eaa691 Description: Runtime system for OCaml bytecode executables (no X) Homepage: http://caml.inria.fr/ Description-md5: bb24dbfee7bb8f2ca497066cab6a4f5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-compiler-libs Priority: optional Section: devel Installed-Size: 9930 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml Version: 4.01.0-3ubuntu3 Replaces: ocaml-base-nox (<< 4) Provides: ocaml-compiler-libs-4.01.0 Depends: ocaml-nox-4.01.0 Breaks: ocaml-base-nox (<< 4) Filename: pool/main/o/ocaml/ocaml-compiler-libs_4.01.0-3ubuntu3_amd64.deb Size: 1298476 MD5sum: 316259153840334c727606a1c87b006f SHA1: 46eac92c720c0fad2640effa61cb2e28cc7ca42e SHA256: cabb6d2c05ab1a7cc80473358b96e9d6fd8a51789403367f494f08ca96aecc69 Description: OCaml interpreter and standard libraries Homepage: http://caml.inria.fr/ Description-md5: a765ce776aca74df74b073777915c3f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-findlib Priority: optional Section: devel Installed-Size: 784 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: findlib Version: 1.4-2 Depends: libfindlib-ocaml, libc6 (>= 2.15) Recommends: libfindlib-ocaml-dev Suggests: camlp4, ocaml-findlib-wizard Filename: pool/main/f/findlib/ocaml-findlib_1.4-2_amd64.deb Size: 223964 MD5sum: e1abb5a15c2aed423eac502b7dda9c98 SHA1: 334893cfa362a49831f6b615fb3f98bd7f0ae1a1 SHA256: 840dfb4c6d1318ae4b632866a8a5ec6c330e48b7de42c23a1c0dd4d0a0f9136a Description: management tool for OCaml libraries Homepage: http://projects.camlcity.org/projects/findlib.html Description-md5: 5266af2e3694f3972f6e03f40368c083 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-interp Priority: optional Section: devel Installed-Size: 1568 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml Version: 4.01.0-3ubuntu3 Provides: ocaml-interp-4.01.0 Depends: ocaml-compiler-libs (= 4.01.0-3ubuntu3), ocaml-base-nox-4.01.0 Recommends: ledit | readline-editor Filename: pool/main/o/ocaml/ocaml-interp_4.01.0-3ubuntu3_amd64.deb Size: 226334 MD5sum: 10c9d972aef8fcefa29732b9c306f135 SHA1: b635e8e402c50bc175fc52c41449e45b343b8abf SHA256: 25fe041a6ad6cff53c29f010e433aa19398ca8c5f14ab1ca8e5278b464d2f30f Description: OCaml interactive interpreter and standard libraries Homepage: http://caml.inria.fr/ Description-md5: 8eec5a948780aa1b1aac7a63aefff1cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-nox Priority: optional Section: devel Installed-Size: 25446 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: amd64 Source: ocaml Version: 4.01.0-3ubuntu3 Replaces: ocaml-interp (<< 3.11.1-3) Provides: libnums-ocaml-dev, ocaml-nox-4.01.0 Depends: ocaml-base-nox, libc6 (>= 2.15), libtinfo5, zlib1g (>= 1:1.2.0), ocaml-base-nox-4.01.0, libncurses5-dev, ocaml-interp (= 4.01.0-3ubuntu3), gcc, binutils Recommends: camlp4, file Suggests: ocaml-doc, tuareg-mode | ocaml-mode Breaks: camlidl (<< 1.04), camlp4 (<< 3.10.0), dh-ocaml (<< 1.0.0), ocaml-interp (<< 3.11.1-3) Filename: pool/main/o/ocaml/ocaml-nox_4.01.0-3ubuntu3_amd64.deb Size: 3694344 MD5sum: c501362ec7a96c7be794e0cc1639d95b SHA1: 2213b7b33098d9a1030f93e172bd4fcb826f78b8 SHA256: 75cf8cd125fc025937c92b2a00e63e2727b6891ad4bc3e1358bedb0fdfa2fae3 Description: ML implementation with a class-based object system (no X) Homepage: http://caml.inria.fr/ Description-md5: 29aa9bd04748d97897bee886074681aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocfs2-tools Priority: optional Section: admin Installed-Size: 2121 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy Lainé Architecture: amd64 Version: 1.6.4-3ubuntu1 Depends: libc6 (>= 2.14), libcomerr2 (>= 1.01), libglib2.0-0 (>= 2.24.0), libreadline6 (>= 6.0), libuuid1 (>= 2.16), debconf (>= 0.5) | debconf-2.0, psmisc Suggests: ocfs2console Filename: pool/main/o/ocfs2-tools/ocfs2-tools_1.6.4-3ubuntu1_amd64.deb Size: 402280 MD5sum: 920f5f16e6cc67e589c2f90caf949041 SHA1: 8823237da3cf9579dd914dfbdfe2e0cab41df1bc SHA256: 19f3eb567c1c1a5629c1ac7c54a8b716a7d794f70003fd4f43b6e0f092f1f1dd Description: tools for managing OCFS2 cluster filesystems Homepage: http://oss.oracle.com/projects/ocfs2-tools/ Description-md5: 35dcd82fb739cced2d7441e218050187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ocfs2-tools-dev Priority: optional Section: devel Installed-Size: 640 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy Lainé Architecture: amd64 Source: ocfs2-tools Version: 1.6.4-3ubuntu1 Depends: ocfs2-tools (= 1.6.4-3ubuntu1) Filename: pool/main/o/ocfs2-tools/ocfs2-tools-dev_1.6.4-3ubuntu1_amd64.deb Size: 139304 MD5sum: ead8ea711a75c2caf539fc21d948e056 SHA1: 108e387af3d457a60869293651d953f6e2b42fc6 SHA256: eb9a5484efb32394ef9257b94818143a9d56ef5259e136398b7194a5db033aec Description: tools for managing OCFS2 cluster filesystems - development files Homepage: http://oss.oracle.com/projects/ocfs2-tools/ Description-md5: c83e087ed43fbcb16a766887bb9e850a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocfs2console Priority: optional Section: admin Installed-Size: 432 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy Lainé Architecture: amd64 Source: ocfs2-tools Version: 1.6.4-3ubuntu1 Depends: libblkid1 (>= 2.16), libc6 (>= 2.14), libcomerr2 (>= 1.01), libglib2.0-0 (>= 2.12.0), libuuid1 (>= 2.16), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), ocfs2-tools (= 1.6.4-3ubuntu1), python-gtk2 Filename: pool/main/o/ocfs2-tools/ocfs2console_1.6.4-3ubuntu1_amd64.deb Size: 116904 MD5sum: 7fdcd5266216e6acbbbb3c9e5b6e9955 SHA1: 34f15840416694ed4a2d6aa93820d01386861bac SHA256: f22fefe1d2d341aafd73cb958d8625dd6be9c3497091e72c31a589ae0986be07 Description: tools for managing OCFS2 cluster filesystems - graphical interface Homepage: http://oss.oracle.com/projects/ocfs2-tools/ Description-md5: 2ebccbcd5437a0267ea7af244d081c49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: odbc-mdbtools Priority: optional Section: libs Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: amd64 Source: mdbtools Version: 0.7.1-1ubuntu1 Replaces: libmdbodbc1 (<< 0.7.1-1~) Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.12.0), libmdb2 (>= 0.7~rc1), libmdbsql2 (>= 0.5.99.0.6pre1.0.20051109), odbcinst1debian2 (>= 2.2.11-3) Pre-Depends: multiarch-support Recommends: libodbc1 Suggests: mdbtools-doc Breaks: libiodbc2 (<< 3.52.7-2+deb7u1), libmdbodbc1 (<< 0.7.1-1~), odbcinst1debian2 (<< 2.2.14p2-3), unixodbc (<< 2.2.14p2-3) Filename: pool/main/m/mdbtools/odbc-mdbtools_0.7.1-1ubuntu1_amd64.deb Size: 26362 MD5sum: 396e326ac0c473f636337a45f794554a SHA1: 10f0bb094ab3bc5dcda0e149c75a4eb31c980bc0 SHA256: 484e27d61ce9f4a2f99daf0a8e2b42b59086768509926e58f9e3fd15623aa761 Description: MDB tools ODBC driver Multi-Arch: same Homepage: http://mdbtools.sourceforge.net/ Description-md5: adbbf5e7276666b028b26a318ba16b8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: odbcinst Priority: optional Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: unixodbc Version: 2.2.14p2-5ubuntu5 Replaces: odbcinst1, odbcinst1debian1 (<< 2.2.11-20), unixodbc (<< 2.1.1-2) Depends: libc6 (>= 2.4), odbcinst1debian2 (>= 2.2.14p2) Conflicts: odbcinst1 Filename: pool/main/u/unixodbc/odbcinst_2.2.14p2-5ubuntu5_amd64.deb Size: 12590 MD5sum: 418c3ad5f0b1eb7f16b38c63baaeefd3 SHA1: af85f6ca53de10dc6696eb2395da043675fcf5f1 SHA256: 78a0700dbc0b35a88276f1b7e48fd97811451d5c764a911282d7607adaa1488b Description: Helper program for accessing odbc ini files Multi-Arch: foreign Homepage: http://www.unixodbc.org/ Description-md5: 94a30ab8c0d53da82db9d3503fec9c1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: odbcinst1debian2 Priority: optional Section: libs Installed-Size: 242 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: unixodbc Version: 2.2.14p2-5ubuntu5 Replaces: unixodbc (<< 2.1.1-2) Depends: libc6 (>= 2.14), libltdl7 (>= 2.4.2), odbcinst Pre-Depends: multiarch-support Conflicts: odbcinst1, odbcinst1debian1 Breaks: libiodbc2, libmyodbc (<< 5.1.6-2), odbc-postgresql (<< 1:09.00.0310-1.1), tdsodbc (<< 0.82-8) Filename: pool/main/u/unixodbc/odbcinst1debian2_2.2.14p2-5ubuntu5_amd64.deb Size: 40600 MD5sum: 66b432d9bc5fbe3c1bb2cb898ec220d5 SHA1: 7877c97b51eff24ff59d5884628ba1bd55d3370c SHA256: b4a0bc74bccc8d0423ab170239f6447cfb83ec3ed0bd46d891cf95b78a40eb4c Description: Support library for accessing odbc ini files Multi-Arch: same Homepage: http://www.unixodbc.org/ Description-md5: b24fb287c5629b7e3832794ea97e5473 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: oem-config Priority: extra Section: admin Installed-Size: 269 Maintainer: Ubuntu Installer Team Architecture: all Source: ubiquity Version: 2.18.7 Replaces: oem-config-gtk (<< 1.54.13), oem-config-kde (<< 1.54.13), oem-config-keyboard, oem-config-locale, oem-config-timezone Depends: debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), ubiquity (= 2.18.7), oem-config-frontend-2.18.7, procps Conflicts: oem-config-keyboard, oem-config-locale, oem-config-timezone Filename: pool/main/u/ubiquity/oem-config_2.18.7_all.deb Size: 12720 MD5sum: 03bcb1fc6458577cc8c241f0c7d3333f SHA1: 0e2c34ba579a4d6d8ab28e9846540a729045f02e SHA256: 9d0a95ee740b11979e970deb185cfca372e3890f90ab14760ec12cabd9aff1e7 Description: Perform end-user configuration after initial OEM installation Description-md5: 9380d07ec19991f384138c016b142ce0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: oem-config-debconf Priority: extra Section: admin Installed-Size: 189 Maintainer: Ubuntu Installer Team Architecture: all Source: ubiquity Version: 2.18.7 Provides: oem-config-frontend-2.18.7 Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), oem-config (= 2.18.7), ubiquity-frontend-debconf (= 2.18.7) Filename: pool/main/u/ubiquity/oem-config-debconf_2.18.7_all.deb Size: 2956 MD5sum: 124f07e7b15a698f20c78ce3b7d29f58 SHA1: d209133838edd3222f218a7cbcaeeffb10c38f21 SHA256: 8429460356cdb8255f57e740b41b62dbf7a19fc73d1e0763df729a40fe70898e Description: debconf frontend for end-user post-OEM-install configuration Description-md5: 0b339016cd37fb3df25a4085c60673e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: oem-config-gtk Priority: extra Section: admin Installed-Size: 200 Maintainer: Ubuntu Installer Team Architecture: all Source: ubiquity Version: 2.18.7 Replaces: oem-config (<< 1.0) Provides: oem-config-frontend-2.18.7 Depends: oem-config (= 2.18.7), ubiquity-frontend-gtk (= 2.18.7), python3-aptdaemon.gtk3widgets, aptdaemon Filename: pool/main/u/ubiquity/oem-config-gtk_2.18.7_all.deb Size: 4164 MD5sum: e6051051660d45c87e040f4bf3ecd997 SHA1: 3b0658144d68850dad0ce673900b5511605aafe7 SHA256: 994188fca5a2f5d581cf07276e4b8bd1fbdc15014e9e547c192764a0f5c720e2 Description: GTK+ frontend for end-user post-OEM-install configuration Description-md5: 8709c78036a09529b74b507a6299fd60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: oem-config-slideshow-ubuntu Priority: optional Section: x11 Installed-Size: 1626 Maintainer: Ubuntu Developers Original-Maintainer: Ubiquity Slideshow Team Architecture: all Source: ubiquity-slideshow-ubuntu Version: 83 Replaces: oem-config-slideshow Provides: oem-config-slideshow Conflicts: oem-config-slideshow Filename: pool/main/u/ubiquity-slideshow-ubuntu/oem-config-slideshow-ubuntu_83_all.deb Size: 541616 MD5sum: 340ad8481023b4530dc7cce08accf50c SHA1: c5e19fb92dae32dd21f005163100f2be1fb7e8fe SHA256: 0c5d9f9b43987863480333f12a4dffa1cc80d4ffaee24bb749269c3518fea4c7 Description: OEM slideshow for Ubuntu Homepage: https://launchpad.net/ubiquity-slideshow-ubuntu Description-md5: c119bbb321f2195ca171453933a83059 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: onboard Priority: optional Section: gnome Installed-Size: 3088 Maintainer: Ubuntu Developers Original-Maintainer: https://launchpad.net/~onboard/+contactuser Architecture: amd64 Version: 1.0.0-0ubuntu4 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libcanberra0 (>= 0.2), libdconf1 (>= 0.14.0), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.0.0), libhunspell-1.3-0, libstdc++6 (>= 4.1.1), libx11-6, libxi6 (>= 2:1.2.99.4), libxkbfile1, libxtst6, dconf-gsettings-backend | gsettings-backend, python3-cairo, python3-gi-cairo, python3-dbus, gir1.2-gtk-3.0, gir1.2-pango-1.0 (>= 1.29.3), gir1.2-glib-2.0, gir1.2-gdkpixbuf-2.0, librsvg2-common, iso-codes Recommends: gir1.2-appindicator3-0.1, gir1.2-atspi-2.0, onboard-data (>= 0.99.0~alpha1~tr1531) Suggests: mousetweaks (>= 3.3.90) Filename: pool/main/o/onboard/onboard_1.0.0-0ubuntu4_amd64.deb Size: 572424 MD5sum: c845f91638c22c9a7d42cb650af5cfec SHA1: 041b9f81f2878d0d9e52e9cbf9c93419f45e4d09 SHA256: 2297fe7b87e5086da67ec7c98561e78761d790cdebbfd5c9a33e2cc21ce7fc6f Description: Simple On-screen Keyboard Homepage: https://launchpad.net/onboard Description-md5: eb9f6a3a613f7e33ed5ad60de6a693f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: onboard-data Priority: optional Section: gnome Installed-Size: 18174 Maintainer: Ubuntu Developers Original-Maintainer: https://launchpad.net/~onboard/+contactuser Architecture: all Source: onboard Version: 1.0.0-0ubuntu4 Replaces: onboard-prediction-data (<< 0.99.0~alpha1~tr1531) Depends: onboard (>= 0.99.0~alpha1~tr1507) Breaks: onboard-prediction-data (<< 0.99.0~alpha1~tr1531) Filename: pool/main/o/onboard/onboard-data_1.0.0-0ubuntu4_all.deb Size: 3428314 MD5sum: 7fd4042d2b5d16b3d3bb904a4e845cb8 SHA1: 4e11707d335d3fb7e4573d2cc3894faa4302d369 SHA256: 0becb27fb91070e19bfd89614ba270aab5c292b1f2b606aa3b10317d711120e7 Description: Language model files for the word suggestion feature of Onboard Homepage: https://launchpad.net/onboard Description-md5: 28c16e57c573e26ac20cd4bcaa2af192 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: oneconf Priority: extra Section: python Installed-Size: 65 Maintainer: Didier Roche Architecture: all Version: 0.3.7 Depends: oneconf-common, python3-oneconf, ubuntu-sso-client Recommends: software-center (>= 4.1.21), update-notifier (>= 0.103) Filename: pool/main/o/oneconf/oneconf_0.3.7_all.deb Size: 5456 MD5sum: 133d6cd37834563ca11781c824c8f72c SHA1: 71fed3ece9cae24895714e1f585f8f095af0efd2 SHA256: 227dc8983cd018d148fd2f0e704108a9aea0bac01bd621e505cdd7a0cbe3e74e Description: synchronize your configuration data over the network Description-md5: ded1a62b7ac7e22a6b199ab2ee0402e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: oneconf-common Priority: extra Section: python Installed-Size: 64 Maintainer: Didier Roche Architecture: all Source: oneconf Version: 0.3.7 Replaces: oneconf (<< 0.3) Depends: python-dbus, python-oauthlib, python-gi, python-apt, python-piston-mini-client, python-httplib2, python-xdg Filename: pool/main/o/oneconf/oneconf-common_0.3.7_all.deb Size: 6014 MD5sum: b7a80e1b520a62f506be118ee4f71ca6 SHA1: ff493b7922c4accd193a8b6ddfa67ba334ecb85b SHA256: bf8a0bd448527ca6973a99949feab0fafaa5cc0f0451cd7ccb5c1e2419bf6db5 Description: synchronize your configuration data over the network Description-md5: be27004afc69c24c77c56ffb565e7bec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: open-iscsi Priority: optional Section: net Installed-Size: 2169 Maintainer: Ubuntu Developers Original-Maintainer: Debian iSCSI Maintainers Architecture: amd64 Version: 2.0.873-3ubuntu9 Replaces: open-iscsi-utils Depends: libc6 (>= 2.14), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), udev Conflicts: open-iscsi-utils (<< 2.0.873-3ubuntu1~) Filename: pool/main/o/open-iscsi/open-iscsi_2.0.873-3ubuntu9_amd64.deb Size: 267646 MD5sum: baa821890ea97d60e291c87d2dc439ae SHA1: 0b925d3e501d7bb57fb8ea2ab4a8dbec50383213 SHA256: 347ea9b9cb4922131df3d6acfdc2bc8139c7b2358006189868f0d6244fb85e75 Description: High performance, transport independent iSCSI implementation Homepage: http://www.open-iscsi.org/ Description-md5: 33466b3fae706f36e3b3609fa29a5250 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: open-iscsi-utils Priority: optional Section: net Installed-Size: 34 Maintainer: Ubuntu Developers Original-Maintainer: Debian iSCSI Maintainers Architecture: all Source: open-iscsi Version: 2.0.873-3ubuntu9 Depends: open-iscsi Filename: pool/main/o/open-iscsi/open-iscsi-utils_2.0.873-3ubuntu9_all.deb Size: 1792 MD5sum: 31a5ad39b6a3cbf1082c2d95c29a22b7 SHA1: a51e4b1fd36043cc90a8a700a42bd94a89d65bf6 SHA256: fe4baaac12f34fcfeb0513802994e36f91e72629e74b239d97e60e51c3b6321c Description: transitional dummy package Homepage: http://www.open-iscsi.org/ Description-md5: bf60ce7d8cb73c593352de5d3e2628d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: open-vm-tools Priority: extra Section: admin Installed-Size: 2607 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: amd64 Version: 2:9.4.0-1280544-5ubuntu6 Replaces: open-vm-dkms, open-vm-toolbox (<= 2:9.4.0-1280544-5), open-vm-tools-dkms Depends: libc6 (>= 2.17), libdumbnet1 (>= 1.8), libfuse2 (>= 2.8.1), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libicu52 (>= 52~m1-1~) Recommends: ethtool, zerofree Suggests: open-vm-tools-desktop Conflicts: open-vm-dkms (<< 2:9.4.0-1280544-5ubuntu3), open-vm-tools-dkms (<< 2:9.4.0-1280544-5ubuntu3) Breaks: open-vm-toolbox (<= 2:9.4.0-1280544-5) Filename: pool/main/o/open-vm-tools/open-vm-tools_9.4.0-1280544-5ubuntu6_amd64.deb Size: 453106 MD5sum: 015051c50ade879aa19b02634a128f86 SHA1: b294982776c057a3e6422d216f1b246b650ac72d SHA256: f9dc1254b639fe4ed3d8ac8eb25fe137e645bc23c124bcc172378be6293d48d8 Description: Open VMware Tools for virtual machines hosted on VMware (CLI) Homepage: http://open-vm-tools.sourceforge.net/ Description-md5: a6ea22fad449711c4296720ce1ebe6b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: open-vm-tools-dbg Priority: extra Section: devel Installed-Size: 2868 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: amd64 Source: open-vm-tools Version: 2:9.4.0-1280544-5ubuntu6 Depends: open-vm-tools (= 2:9.4.0-1280544-5ubuntu6), open-vm-tools-desktop (= 2:9.4.0-1280544-5ubuntu6) Filename: pool/main/o/open-vm-tools/open-vm-tools-dbg_9.4.0-1280544-5ubuntu6_amd64.deb Size: 2448434 MD5sum: 454a5192f912cf8c7bb38df5a67fea6c SHA1: b093bb7ce814ef9430025bd4e72b7114b00a736b SHA256: 51467d329f202f38fb751b0b220b2aa3fa1cb5cc2688c8d67685d3ee60da499c Description: Open VMware Tools for virtual machines hosted on VMware (debug) Homepage: http://open-vm-tools.sourceforge.net/ Description-md5: 9f6f731e6bd8c2a182befca81d2509b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: open-vm-tools-desktop Priority: extra Section: admin Installed-Size: 441 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: amd64 Source: open-vm-tools Version: 2:9.4.0-1280544-5ubuntu6 Replaces: open-vm-toolbox Depends: libatkmm-1.6-1 (>= 2.22.1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libglibmm-2.4-1c2a (>= 2.36.2), libgtk2.0-0 (>= 2.24.0), libgtkmm-2.4-1c2a (>= 1:2.24.0), libice6 (>= 1:1.0.0), libsigc++-2.0-0c2a (>= 2.0.2), libsm6, libstdc++6 (>= 4.6), libx11-6 (>= 2:1.4.99.1), libxext6, libxi6, libxinerama1, libxrandr2 (>= 2:1.2.0), libxtst6, open-vm-tools (= 2:9.4.0-1280544-5ubuntu6) Recommends: xauth, xserver-xorg-input-vmmouse, xserver-xorg-video-vmware Suggests: xdg-utils Conflicts: open-vm-toolbox (<< 2:9.2.3-1031360-2~) Filename: pool/main/o/open-vm-tools/open-vm-tools-desktop_9.4.0-1280544-5ubuntu6_amd64.deb Size: 120340 MD5sum: a807cff66985f37a31e50b8b6586729b SHA1: d550cf78180382ba83ae58214c940cd9cb83200a SHA256: 097c7c7df9b35a825340c847cbcf392de749d63971dd44527cf20197ccbcdece Description: Open VMware Tools for virtual machines hosted on VMware (GUI) Homepage: http://open-vm-tools.sourceforge.net/ Description-md5: 0a75baf603aed1d261cb9d62936d3c0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: open-vm-tools-dev Priority: extra Section: devel Installed-Size: 900 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: all Source: open-vm-tools Version: 2:9.4.0-1280544-5ubuntu6 Filename: pool/main/o/open-vm-tools/open-vm-tools-dev_9.4.0-1280544-5ubuntu6_all.deb Size: 87700 MD5sum: 829ff9ec1b562244ae06b5757b371823 SHA1: 016c6c5bba4d88ec7f49b4afe17fe75b2b453d94 SHA256: ba80291d1639217d0778cdc17a4072c7535cde7f3eecfd1773b5c3df8ed7d826 Description: Open VMware Tools for virtual machines hosted on VMware (development) Homepage: http://open-vm-tools.sourceforge.net/ Description-md5: 4aa45696c5c5c28398c17ba27233e67d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openbsd-inetd Priority: extra Section: net Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: amd64 Version: 0.20091229-2ubuntu3 Provides: inet-superserver Depends: libc6 (>= 2.15), libwrap0 (>= 7.6-4~), lsb-base (>= 3.2-13), update-inetd, tcpd Filename: pool/main/o/openbsd-inetd/openbsd-inetd_0.20091229-2ubuntu3_amd64.deb Size: 30822 MD5sum: 1feccbc1da88c78a0c9244f777651a78 SHA1: e3a2a7df8d6ea6f05bc996fbcf5b020cd19ace18 SHA256: 4e74c4c3b4ec905c460e0043f373017e4411f1892e303f298a066858f255987a Description: OpenBSD Internet Superserver Multi-Arch: foreign Description-md5: b20479fa95f74ec492f9a2481993d90f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: opencryptoki Priority: optional Section: utils Installed-Size: 261 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Version: 2.3.1+dfsg-3ubuntu5 Depends: libc6 (>= 2.14), libopencryptoki0 (= 2.3.1+dfsg-3ubuntu5), adduser Filename: pool/main/o/opencryptoki/opencryptoki_2.3.1+dfsg-3ubuntu5_amd64.deb Size: 48860 MD5sum: a64dcee431c1fed2c449f32e20c3efdd SHA1: 68dde29550c33766dc543e425126caaecf351a7e SHA256: c05d0f45ab31d7acfbbc6d11072ab88645210790507c976cc1557315f4b6955d Description: PKCS#11 implementation (daemon) Homepage: http://opencryptoki.sourceforge.net/ Description-md5: 56b253ffe8e457a6f3acbdd3c6a66a12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: opencryptoki-dbg Priority: extra Section: libdevel Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: opencryptoki Version: 2.3.1+dfsg-3ubuntu5 Depends: opencryptoki (= 2.3.1+dfsg-3ubuntu5), libopencryptoki0 (= 2.3.1+dfsg-3ubuntu5), libopencryptoki-dev (= 2.3.1+dfsg-3ubuntu5) Filename: pool/main/o/opencryptoki/opencryptoki-dbg_2.3.1+dfsg-3ubuntu5_amd64.deb Size: 39816 MD5sum: 976043eeab01043e7416c2d6b389efff SHA1: 5adee3eafd17305a0cb2d5af7119e3b11645b0e9 SHA256: 305da0bda46970d6cdbffda5e5dafb0941812ce9a06b5ce73ea4d82d2feb5ad3 Description: PKCS#11 implementation (debug) Homepage: http://opencryptoki.sourceforge.net/ Description-md5: d1c9f42ddd28719ade9d506fb879953d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openhpid Priority: optional Section: admin Installed-Size: 422 Maintainer: Ubuntu Developers Original-Maintainer: Bryan Sutula Architecture: amd64 Source: openhpi Version: 2.14.1-1.3ubuntu2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libltdl7 (>= 2.4.2), libopenhpi2 (= 2.14.1-1.3ubuntu2), libstdc++6 (>= 4.1.1), lsb-base Filename: pool/main/o/openhpi/openhpid_2.14.1-1.3ubuntu2_amd64.deb Size: 97226 MD5sum: 3f55d9a94f87009e1f922a2d5386c0ee SHA1: 051e806bb3210e2664cca1167be69ed4bcb98fb3 SHA256: 0f19510d2d8c809e29ce661afc9866854450dc0588a86c29d1cdada1464aa661 Description: OpenHPI daemon, supports gathering of manageability information Homepage: http://openhpi.org Description-md5: 40ec44bc3a2cd4bfe11968aed94e9ace Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openipmi Priority: optional Section: admin Installed-Size: 410 Maintainer: Ubuntu Core Developers Original-Maintainer: Noèl Köthe Architecture: amd64 Version: 2.0.18-0ubuntu7 Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libopenipmi0, libpopt0 (>= 1.14), libsnmp30 (>= 5.7.2~dfsg), libtinfo5 Filename: pool/main/o/openipmi/openipmi_2.0.18-0ubuntu7_amd64.deb Size: 124990 MD5sum: 8ddc0e1bd10e8fd9980569d377de7ad0 SHA1: 56eb74b81deacfcae68e47109c4b1cdb1347768a SHA256: 31354e20643921dc250eab327289214b99b20c2c11fb6662b72f77b9ed4d8074 Description: Intelligent Platform Management Interface (for servers) Homepage: http://openipmi.sourceforge.net/ Description-md5: 9b1b5291e9ca77ee91bd3c03cdad0f3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openjade Priority: optional Section: text Installed-Size: 1100 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: amd64 Version: 1.4devel1-21 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libosp5 (>= 1.5.2-1), libostyle1c2, libstdc++6 (>= 4.1.1), sgml-base (>= 1.26+nmu2) Suggests: doc-base, sgml-data Conflicts: libostyle-dev (<< 1.4devel1-14) Filename: pool/main/o/openjade/openjade_1.4devel1-21_amd64.deb Size: 306640 MD5sum: 56957765b31f64966008a197bbde526a SHA1: 7062a7b1018a7cf676e58a76c84eed43afe39dfb SHA256: 6b0b8d8b522a52c375242a2616de28df117f1826481ffabdf1c3a5e6b1d8b15e Description: Implementation of the DSSSL language Homepage: http://openjade.sourceforge.net/ Description-md5: b35e1d7af5f6e1c8a8527523612f49d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openjdk-7-dbg Priority: extra Section: debug Installed-Size: 435767 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: amd64 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Depends: openjdk-7-jre-headless (= 7u51-2.4.6-1ubuntu4) Recommends: openjdk-7-jre (= 7u51-2.4.6-1ubuntu4) Suggests: openjdk-7-jdk (= 7u51-2.4.6-1ubuntu4) Filename: pool/main/o/openjdk-7/openjdk-7-dbg_7u51-2.4.6-1ubuntu4_amd64.deb Size: 79418868 MD5sum: 57ef88db6cc07689034e86c72d5af50e SHA1: 29466e6413ca43f156dc94fc56a8682a2b7d4892 SHA256: ec24032d269285586b234885572c85371c654f29b6d86dfb45cab5690449b084 Description: Java runtime based on OpenJDK (debugging symbols) Multi-Arch: same Homepage: http://openjdk.java.net/ Description-md5: 62cbbd2d3e6bc94279f18db4f735142b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openjdk-7-demo Priority: extra Section: java Installed-Size: 4281 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: amd64 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Depends: openjdk-7-jre (= 7u51-2.4.6-1ubuntu4), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/o/openjdk-7/openjdk-7-demo_7u51-2.4.6-1ubuntu4_amd64.deb Size: 1884846 MD5sum: c9fbca9d2790b5ff8f7cd16959d690c3 SHA1: 4922fe4d58e96180db5f6e7f01d6aacdb3062f09 SHA256: 68e91df87872e0d7878294695c48cf9f2138e9eef08170f5a46ef707cfad3eed Description: Java runtime based on OpenJDK (demos and examples) Homepage: http://openjdk.java.net/ Description-md5: c2a5624aa60e4de3025a249886fa82d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openjdk-7-doc Priority: extra Section: doc Installed-Size: 240319 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: all Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Suggests: openjdk-7-jdk Filename: pool/main/o/openjdk-7/openjdk-7-doc_7u51-2.4.6-1ubuntu4_all.deb Size: 10889304 MD5sum: 2793f41319986eb05cebbdc5c6daa45d SHA1: 575a2f629a6ef492e1af19963318fe9777d4ce6b SHA256: 54a3153222cc4817dfbbec4fd37a2d49a53fc46e4bff4bf35680695db857e0fd Description: OpenJDK Development Kit (JDK) documentation Homepage: http://openjdk.java.net/ Description-md5: c1aebd5e8058a6cce0d5690571eddb7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openjdk-7-jdk Priority: optional Section: java Installed-Size: 20048 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: amd64 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Provides: java-compiler, java-sdk, java2-sdk, java5-sdk, java6-sdk, java7-jdk Depends: openjdk-7-jre (= 7u51-2.4.6-1ubuntu4), libc6 (>= 2.2.5) Recommends: libxt-dev Suggests: openjdk-7-demo, openjdk-7-source, visualvm Filename: pool/main/o/openjdk-7/openjdk-7-jdk_7u51-2.4.6-1ubuntu4_amd64.deb Size: 15974064 MD5sum: cc9e3b77eaad4782b518e086a2a46e15 SHA1: 9bbbd65a52e3bfc957b0c3000e3636ae22d13afc SHA256: 4b808a9a41fbc0abe89537fd68697970add703a105867a072821387a160fef1c Description: OpenJDK Development Kit (JDK) Multi-Arch: same Homepage: http://openjdk.java.net/ Description-md5: eaff50443f15582a8beb0901034b62cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openjdk-7-jre Priority: optional Section: java Installed-Size: 678 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: amd64 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Provides: java-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime Depends: openjdk-7-jre-headless (= 7u51-2.4.6-1ubuntu4), libasound2 (>= 1.0.16), libc6 (>= 2.14), libcups2 (>= 1.4.0), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libgif4 (>= 4.1.4), libglib2.0-0 (>= 2.16.0), libgtk2.0-0 (>= 2.8.0), libjpeg8 (>= 8c), libpango-1.0-0 (>= 1.14.0), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), libx11-6, libxext6, libxi6, libxrender1, libxtst6, libxrandr2, libxinerama1, libgl1-mesa-glx | libgl1, libatk-wrapper-java-jni (>= 0.30.4-0ubuntu2) Recommends: libgnome2-0, libgnomevfs2-0, libgconf2-4, fonts-dejavu-extra Suggests: icedtea-7-plugin Conflicts: icedtea-gcjwebplugin (<< 1.0-1ubuntu4) Filename: pool/main/o/openjdk-7/openjdk-7-jre_7u51-2.4.6-1ubuntu4_amd64.deb Size: 181768 MD5sum: 6d9dcfb63674663df2ebfd8c9e8b35bc SHA1: 8e0aab9982f5540009fb441a1621d9267c0c9608 SHA256: ea56c8df90b844b2622e8c38f27117b3fa9e692d8152730d57eb45503c685db4 Description: OpenJDK Java runtime, using Hotspot JIT Multi-Arch: same Homepage: http://openjdk.java.net/ Description-md5: 7a98f537dea51754a1519bfa756c13cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: openjdk-7-jre-headless Priority: optional Section: java Installed-Size: 55789 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: amd64 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Replaces: openjdk-7-jre-lib (<< 7u45-2.4.3-1) Provides: java-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless Depends: ca-certificates-java, tzdata-java, java-common (>= 0.28), libcups2 (>= 1.4.0), liblcms2-2 (>= 2.2+git20110628), libjpeg8 (>= 8c), libnss3-1d (>= 3.12.9+ckbi-1.82-0ubuntu4), libpcsclite1, libc6 (>= 2.14), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.26.0), libkrb5-3 (>= 1.6.dfsg.2), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: icedtea-7-jre-jamvm (= 7u51-2.4.6-1ubuntu4) Suggests: libnss-mdns, sun-java6-fonts, fonts-dejavu-extra, fonts-ipafont-gothic, fonts-ipafont-mincho, ttf-wqy-microhei | ttf-wqy-zenhei, ttf-indic-fonts-core, ttf-telugu-fonts, ttf-oriya-fonts, ttf-kannada-fonts, ttf-bengali-fonts Conflicts: icedtea-netx (<< 1.1.1-2~) Breaks: icedtea-netx (<< 1.4-2) Filename: pool/main/o/openjdk-7/openjdk-7-jre-headless_7u51-2.4.6-1ubuntu4_amd64.deb Size: 39288768 MD5sum: b007455d3d5c2e1b113d5e1f03d827bc SHA1: 43210eede359f872d318cf19128d2e8d70199f2c SHA256: fe5ba2b37531e54987e0df901a7d693d0db95f3ad03bd6a5c73b7a8a7dd4df1d Description: OpenJDK Java runtime, using Hotspot JIT (headless) Built-Using: rhino (= 1.7R4-2) Multi-Arch: same Homepage: http://openjdk.java.net/ Description-md5: 3d9d94ef25391132f9ce1ce1a36a703d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: openjdk-7-source Priority: extra Section: java Installed-Size: 43696 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: all Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Depends: openjdk-7-jre (>= 7u51-2.4.6-1ubuntu4), openjdk-7-jdk (>= 7u51-2.4.6-1ubuntu4) Filename: pool/main/o/openjdk-7/openjdk-7-source_7u51-2.4.6-1ubuntu4_all.deb Size: 39912188 MD5sum: 57ff6bca02618a9b443f91a6493ced8b SHA1: dfc4358813abce9d7fea3c64b0b6e9eebabafc72 SHA256: 2357545490103cd47f58fdb7d573c1b86e46cceae5f0115b9d6478a6dd13bff5 Description: OpenJDK Development Kit (JDK) source files Homepage: http://openjdk.java.net/ Description-md5: 328263bb6fbf81f04f5d459d67244ea0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openobex-apps Priority: optional Section: comm Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Hendrik Sattler Architecture: amd64 Source: libopenobex Version: 1.5-2.1 Replaces: ircp Depends: libbluetooth3 (>= 4.91), libc6 (>= 2.15), libopenobex1 Conflicts: ircp Filename: pool/main/libo/libopenobex/openobex-apps_1.5-2.1_amd64.deb Size: 36220 MD5sum: 8b99cef6c17f87b92e624648c1055a12 SHA1: bc457c15013f878b8177eb8edb08a11cc3d68d9c SHA256: d42d77d9377e0fc97bf9825f0d6a31237f6fc9ebdd9da07a53de9f8ea41cfc7c Description: Applications for OpenOBEX Homepage: http://www.openobex.org Description-md5: dc42583e385f661f32c27e5c8755f7c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openoffice.org-hyphenation Priority: optional Section: text Installed-Size: 617 Maintainer: Ubuntu Developers Architecture: all Version: 0.7 Provides: openoffice.org-hyphenation-cs, openoffice.org-hyphenation-da, openoffice.org-hyphenation-el, openoffice.org-hyphenation-en, openoffice.org-hyphenation-es, openoffice.org-hyphenation-fi, openoffice.org-hyphenation-fr, openoffice.org-hyphenation-ga, openoffice.org-hyphenation-id, openoffice.org-hyphenation-is, openoffice.org-hyphenation-nl, openoffice.org-hyphenation-pt, openoffice.org-hyphenation-sk, openoffice.org-hyphenation-sv, openoffice.org-hyphenation-uk Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Filename: pool/main/o/openoffice.org-hyphenation/openoffice.org-hyphenation_0.7_all.deb Size: 294750 MD5sum: e831a4c6bc470dbe209c2907d485a5d6 SHA1: eea9e96591a5385d9a1e08781e0ae2545e914d77 SHA256: 949b967aa59b391098534ef72f0c5155967f3524ec22594891040e4bfd52b6de Description: Hyphenation patterns for OpenOffice.org Description-md5: f37c59c329e1d884b78b2e7091c27aba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live Package: openprinting-ppds Priority: optional Section: text Installed-Size: 3959 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Group Architecture: all Source: foomatic-db Version: 20140410-0ubuntu1 Depends: python3, xz-utils Recommends: cups-filters (>= 1.0.42) | foomatic-filters, cups, cups-client Suggests: hpijs-ppds Breaks: cups (<< 1.5.0-3~) Filename: pool/main/f/foomatic-db/openprinting-ppds_20140410-0ubuntu1_all.deb Size: 3055650 MD5sum: 5cb9d4644437e14c2ddc9005a40f3687 SHA1: 8f2540ddc8a5187f50fc025eab25eec9f23c84c2 SHA256: f1e3ba53fa0462f6e658ab174cd1d427c3072e26d35d4e1eb0532f010fcc53c5 Description: OpenPrinting printer support - PostScript PPD files Homepage: http://www.openprinting.org/ Description-md5: 5f4d24bd02d698551c18a407d5e83c3a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: openslp-doc Priority: extra Section: doc Installed-Size: 315 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Source: openslp-dfsg Version: 1.2.1-9 Filename: pool/main/o/openslp-dfsg/openslp-doc_1.2.1-9_all.deb Size: 88580 MD5sum: 5f6d23f6d5fdfe178c89729dc3042c33 SHA1: d5e462731e4094a99b679b89866139c6060c0a44 SHA256: bfba171483227dddd96f3b0e2e3db95c7178385eeb17cec36d860130a9892bc9 Description: OpenSLP documentation Homepage: http://www.openslp.org/ Description-md5: 553c70af1a4b44de038c2acac6852471 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: opensp Priority: optional Section: text Installed-Size: 662 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: amd64 Version: 1.5.2-10ubuntu3 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libosp5 (>= 1.5.2-1), libstdc++6 (>= 4.1.1), sgml-base Suggests: doc-base, sgml-data Filename: pool/main/o/opensp/opensp_1.5.2-10ubuntu3_amd64.deb Size: 145394 MD5sum: 5418d84aa4248dbd0af2ab95fd97e7ab SHA1: 6c40dd14f095e4d00a86ab04b19f15c0ce079309 SHA256: 14c1c673af89ce7897d9a1748f7d9cfe3e384ac38983452f923713dcb23414cf Description: OpenJade group's SGML parsing tools Description-md5: fabc6e3cb88f70debefafddb3ad99079 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openssh-blacklist Priority: optional Section: net Installed-Size: 4064 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Version: 0.4.1+nmu1 Pre-Depends: dpkg (>= 1.10.24) Recommends: openssh-client Filename: pool/main/o/openssh-blacklist/openssh-blacklist_0.4.1+nmu1_all.deb Size: 1836348 MD5sum: 7d13f9803e793df0b298f0672e08922e SHA1: 984539b82d4385124c6295a560994bab15e153cf SHA256: 3799298e06a2b9b97352cafc5673b2fc786772e384c22365c66e96420e415b12 Description: list of default blacklisted OpenSSH RSA and DSA keys Description-md5: 5b07992e67aa4270cae012a0dd2be36e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openssh-blacklist-extra Priority: optional Section: net Installed-Size: 4070 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: openssh-blacklist Version: 0.4.1+nmu1 Pre-Depends: dpkg (>= 1.10.24) Recommends: openssh-blacklist Filename: pool/main/o/openssh-blacklist/openssh-blacklist-extra_0.4.1+nmu1_all.deb Size: 1835868 MD5sum: ea9ee8368cb6c71cddc79b73f3db20db SHA1: 72ab3357dece85f6f15efd3920aa07e57e1a624f SHA256: 8fd005bd2bc5a8d90977e55e3baabefa48172518a7554d94985a25a5f824858a Description: list of non-default blacklisted OpenSSH RSA and DSA keys Description-md5: 8995e4237e9220abbc5c82216dad10af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openssh-client Priority: standard Section: net Installed-Size: 3435 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSH Maintainers Architecture: amd64 Source: openssh Version: 1:6.6p1-2ubuntu1 Replaces: ssh, ssh-krb5 Provides: rsh-client, ssh-client Depends: libc6 (>= 2.17), libedit2 (>= 2.11-20080614), libgssapi-krb5-2 (>= 1.10+dfsg~), libselinux1 (>= 1.32), libssl1.0.0 (>= 1.0.1), zlib1g (>= 1:1.1.4), adduser (>= 3.10), dpkg (>= 1.7.0), passwd Recommends: xauth Suggests: ssh-askpass, libpam-ssh, keychain, monkeysphere Conflicts: sftp Filename: pool/main/o/openssh/openssh-client_6.6p1-2ubuntu1_amd64.deb Size: 566214 MD5sum: f640d1b599f367479b878ff2c871386a SHA1: 5c2c5a55969b718ce92b6ada93618c1854881e61 SHA256: 88944d12255628b690cce7bf551f4c64bf024b0f029c33694c31035eb622e228 Description: secure shell (SSH) client, for secure access to remote machines Multi-Arch: foreign Homepage: http://www.openssh.org/ Description-md5: 8cde3280ebad71c16b3e8c661dae6c6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: openssh-server Priority: optional Section: net Installed-Size: 929 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSH Maintainers Architecture: amd64 Source: openssh Version: 1:6.6p1-2ubuntu1 Replaces: ssh, ssh-krb5 Provides: ssh-server Depends: libc6 (>= 2.17), libck-connector0 (>= 0.2.1), libcomerr2 (>= 1.01), libdbus-1-3 (>= 1.0.2), libgssapi-krb5-2 (>= 1.10+dfsg~), libkrb5-3 (>= 1.6.dfsg.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), libssl1.0.0 (>= 1.0.1), libwrap0 (>= 7.6-4~), zlib1g (>= 1:1.1.4), debconf (>= 0.5) | debconf-2.0, init-system-helpers (>= 1.13~), openssh-client (= 1:6.6p1-2ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libpam-runtime (>= 0.76-14), libpam-modules (>= 0.72-9), adduser (>= 3.9), dpkg (>= 1.9.0), lsb-base (>= 4.1+Debian3), procps, openssh-sftp-server Recommends: xauth, ncurses-term, ssh-import-id Suggests: ssh-askpass, rssh, molly-guard, ufw, monkeysphere Conflicts: sftp, ssh-socks, ssh2 Filename: pool/main/o/openssh/openssh-server_6.6p1-2ubuntu1_amd64.deb Size: 319150 MD5sum: ee3c58c45531eabf4b74768d9e78083e SHA1: 53a5637ecc9440df8b7d86c4b4d8a99423e4f3c1 SHA256: 0d2f7017838613c118a19ebcc13aa7a1e58e541445073e796775b9701edc62cf Description: secure shell (SSH) server, for secure access from remote machines Multi-Arch: foreign Homepage: http://www.openssh.org/ Description-md5: 842cc998cae371b9d8106c1696373919 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: openssh-sftp-server Priority: optional Section: net Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSH Maintainers Architecture: amd64 Source: openssh Version: 1:6.6p1-2ubuntu1 Replaces: openssh-server (<< 1:6.5p1-5) Depends: libc6 (>= 2.17), openssh-client Recommends: openssh-server | ssh-server Breaks: openssh-server (<< 1:6.5p1-5) Filename: pool/main/o/openssh/openssh-sftp-server_6.6p1-2ubuntu1_amd64.deb Size: 34142 MD5sum: fa8f9afdd3d18fb57db806112bf24a43 SHA1: cb5e864f0e002a3c89a2a9970bfbc97a6695b896 SHA256: 101e63d5d5a6fac0db1fb7e37008647b32859760d122ed5e3516b15837da49ae Description: secure shell (SSH) sftp server module, for SFTP access from remote machines Enhances: openssh-server, ssh-server Homepage: http://www.openssh.org/ Description-md5: f09bfa88fff14741d53cf2a60b5b401a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: openssl Priority: standard Section: utils Installed-Size: 906 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSL Team Architecture: amd64 Version: 1.0.1f-1ubuntu2 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.1) Suggests: ca-certificates Filename: pool/main/o/openssl/openssl_1.0.1f-1ubuntu2_amd64.deb Size: 488794 MD5sum: 1b5db436c766395ad3294a77b6e55eeb SHA1: 9c520d33edb1f4a438ad77cbc69f7eac2844a019 SHA256: 648eaa5aa2a5cf4a66b55ff25a05c3bcb4433a984a1bf99e2830fb055fa40b6e Description: Secure Sockets Layer toolkit - cryptographic utility Description-md5: 9b6de2bb6e1d9016aeb0f00bcf6617bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: openstack-dashboard Priority: extra Section: net Installed-Size: 13377 Maintainer: Chuck Short Architecture: all Source: horizon Version: 1:2014.1-0ubuntu1 Depends: adduser, apache2 | httpd, libapache2-mod-wsgi (>= 2.3), python-django-horizon (= 1:2014.1-0ubuntu1), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.7.2) Recommends: openstack-dashboard-ubuntu-theme Filename: pool/main/h/horizon/openstack-dashboard_2014.1-0ubuntu1_all.deb Size: 1286744 MD5sum: 0ed0e391c1b2b8769ec9238cfd1561b3 SHA1: 8f7e29bce86670f11b97e0be05bca5366837212e SHA256: fa011b14b72ace0dd4f9d5f3376adb4e2eacc758365738b0f85c625b3c1d43a3 Description: django web interface to Openstack Homepage: http://launchpad.net/horizon Description-md5: cfa8179aec54fb294480d24dfa12c4c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openstack-dashboard-ubuntu-theme Priority: extra Section: net Installed-Size: 243 Maintainer: Chuck Short Architecture: all Source: horizon Version: 1:2014.1-0ubuntu1 Depends: openstack-dashboard (= 1:2014.1-0ubuntu1) Filename: pool/main/h/horizon/openstack-dashboard-ubuntu-theme_2014.1-0ubuntu1_all.deb Size: 30432 MD5sum: 5a1b3ce523b03894312d839e96355f4d SHA1: 3b7996fd65ec2c1ddf43bcb1615fabdfa5e56a39 SHA256: 543d1056e22a1f00643d031048de8b1392947b7983f109cee7bc53dbf07570fb Description: Ubuntu theme for the Openstack dashboard Homepage: http://launchpad.net/horizon Description-md5: e49ce566cdb2a03745470f21d945576d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openstack-pkg-tools Priority: extra Section: devel Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 8 Filename: pool/main/o/openstack-pkg-tools/openstack-pkg-tools_8_all.deb Size: 11136 MD5sum: 13a5862949d2884be2b30dc95b6a0eba SHA1: f3d3e6ab6d0d44dc16dc1a53d6dc5cbee9ccf1ab SHA256: 62f6929827da8080d091f01ca9b46a3ac5d34996361827b8e45ef98692c401df Description: Tools and scripts for building Openstack packages in Debian Description-md5: 948c5e97d12e3443df22e4b04944aaf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openvpn Priority: optional Section: net Installed-Size: 978 Maintainer: Ubuntu Developers Original-Maintainer: Alberto Gonzalez Iniesta Architecture: amd64 Version: 2.3.2-7ubuntu3 Depends: debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.15), liblzo2-2, libpam0g (>= 0.99.7.1), libpkcs11-helper1 (>= 1.05), libssl1.0.0 (>= 1.0.0), initscripts (>= 2.88dsf-13.3), iproute2 Suggests: openssl, resolvconf, easy-rsa Filename: pool/main/o/openvpn/openvpn_2.3.2-7ubuntu3_amd64.deb Size: 380498 MD5sum: 96d859a4ab6e9750f9ec2f0106bf2eab SHA1: 4de76e5a6d1f7d864c860353b24151866f25e628 SHA256: 930656461d228b8431eceb650a02b6c08931415bfb2260c5571e7aea53cbde7a Description: virtual private network daemon Homepage: http://www.openvpn.net/ Description-md5: 2ebe91e411d46309a61861db507e5c2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openvswitch-common Priority: extra Section: net Installed-Size: 1667 Maintainer: Ubuntu Developers Original-Maintainer: Open vSwitch developers Architecture: amd64 Source: openvswitch Version: 2.0.1+git20140120-0ubuntu2 Depends: libc6 (>= 2.16), libssl1.0.0 (>= 1.0.0), openssl, python, python (>= 2.7) | python-argparse Suggests: ethtool Filename: pool/main/o/openvswitch/openvswitch-common_2.0.1+git20140120-0ubuntu2_amd64.deb Size: 444492 MD5sum: 19b499387564e08633e6c1fdf56e53bf SHA1: 61aa91698b46e5678805a97df3635a222e3931f5 SHA256: 66cda0edeb87eef3ffc150ccb9e7df38862b7bdf450a4c90ba38af1c032c4f57 Description: Open vSwitch common components Homepage: http://openvswitch.org/ Description-md5: 54698a0e13765878d342b83d498c31d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openvswitch-controller Priority: extra Section: net Installed-Size: 847 Maintainer: Ubuntu Developers Original-Maintainer: Open vSwitch developers Architecture: amd64 Source: openvswitch Version: 2.0.1+git20140120-0ubuntu2 Depends: libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0), openvswitch-common (= 2.0.1+git20140120-0ubuntu2), openvswitch-pki (= 2.0.1+git20140120-0ubuntu2) Filename: pool/main/o/openvswitch/openvswitch-controller_2.0.1+git20140120-0ubuntu2_amd64.deb Size: 268280 MD5sum: 150ba2ab22a62502e63156bf9ec78cb7 SHA1: 6482814a303db8ce2ae6f6402ce933b3dd98f934 SHA256: ff97f67eace675d64f3460edeb5e643711295312d4a26b049ab335e725dbf9a2 Description: Open vSwitch controller implementation Homepage: http://openvswitch.org/ Description-md5: 3ba63807fddd7d31858fd543fd10cfd2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openvswitch-dbg Priority: extra Section: debug Installed-Size: 25477 Maintainer: Ubuntu Developers Original-Maintainer: Open vSwitch developers Architecture: amd64 Source: openvswitch Version: 2.0.1+git20140120-0ubuntu2 Depends: openvswitch-common (= 2.0.1+git20140120-0ubuntu2), openvswitch-controller (= 2.0.1+git20140120-0ubuntu2), openvswitch-switch (= 2.0.1+git20140120-0ubuntu2) Filename: pool/main/o/openvswitch/openvswitch-dbg_2.0.1+git20140120-0ubuntu2_amd64.deb Size: 3594046 MD5sum: 7164675b1f62ca46cbe45976a7969e4b SHA1: f8fe582596e04d04cc5c51c314846e295f98ad29 SHA256: 194c06d048e2c924163ba12cd27c1c38e861dd6ca0f6cd39a27b8fa363228d53 Description: Debug symbols for Open vSwitch packages Homepage: http://openvswitch.org/ Description-md5: 963111b391333c82170e6233714ee2c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openvswitch-pki Priority: extra Section: net Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Open vSwitch developers Architecture: all Source: openvswitch Version: 2.0.1+git20140120-0ubuntu2 Depends: openvswitch-common (>= 2.0.1+git20140120-0ubuntu2), openvswitch-common (<< 2.0.1+git20140120-0ubuntu2.1~) Filename: pool/main/o/openvswitch/openvswitch-pki_2.0.1+git20140120-0ubuntu2_all.deb Size: 14742 MD5sum: 5138444e5943534471e3dee58d0042e8 SHA1: b6b2caead06a50c504d098c30a155d94861ac3f6 SHA256: 213ac77f49247419efb9103b23e6ab2708c851b4b810403c0920e39f23d995e0 Description: Open vSwitch public key infrastructure dependency package Homepage: http://openvswitch.org/ Description-md5: 7bc9647531060a37f72077a192bd67e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openvswitch-switch Priority: extra Section: net Installed-Size: 4446 Maintainer: Ubuntu Developers Original-Maintainer: Open vSwitch developers Architecture: amd64 Source: openvswitch Version: 2.0.1+git20140120-0ubuntu2 Depends: libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any, openvswitch-common (= 2.0.1+git20140120-0ubuntu2), module-init-tools, procps, uuid-runtime, netbase, python-argparse Suggests: openvswitch-datapath-module Filename: pool/main/o/openvswitch/openvswitch-switch_2.0.1+git20140120-0ubuntu2_amd64.deb Size: 864164 MD5sum: 61f79ea8b872b65f7b8393e552805d20 SHA1: fa5c1cca1dd8c23156132da912b0c0d5ee3a5ec7 SHA256: dbec66204069b6640385b30e74e87ecaf04041c55dc83173f5751034d3a36701 Description: Open vSwitch switch implementations Homepage: http://openvswitch.org/ Description-md5: ff569939b14d8f902d88039019fdf3ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: optipng Priority: optional Section: graphics Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Nelson A. de Oliveira Architecture: amd64 Version: 0.6.4-1build1 Depends: libc6 (>= 2.14), libpng12-0 (>= 1.2.13-4), zlib1g (>= 1:1.1.4) Filename: pool/main/o/optipng/optipng_0.6.4-1build1_amd64.deb Size: 89010 MD5sum: 3bc1495cec13fb7d2673367f7a92694f SHA1: 8f77bf82d304060a861e8d8d57f8b94017e10cf8 SHA256: 93e66cd150a2dfc50a4c9d646d5378d78c488e3581fe93f2c2f7f0f829be6286 Description: advanced PNG (Portable Network Graphics) optimizer Homepage: http://optipng.sourceforge.net/ Description-md5: 5e7a553e9d19800926e7d1d2e6a7ff8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: orbit2 Priority: optional Section: devel Installed-Size: 281 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: amd64 Version: 1:2.14.19-0.3 Replaces: liborbit2-dev (<< 1:2.14.19-0.3) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.16.0), libidl0, liborbit-2-0 (>= 1:2.14.10) Breaks: liborbit2-dev (<< 1:2.14.19-0.3) Filename: pool/main/o/orbit2/orbit2_2.14.19-0.3_amd64.deb Size: 48016 MD5sum: 5fdbdcf14607292ba90a584f1285fb57 SHA1: 9e77d6d4e46c79e81d487cdc07edf9d17add723b SHA256: f72eca2abca781b2e418f24a3d3ab135bf12d3de30f6dfc64c02ef23039a7db0 Description: high-performance CORBA implementation - Object Request Broker Multi-Arch: foreign Description-md5: 5e8cd93722ca0d2f235b46ef9bb8779f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: os-prober Priority: optional Section: utils Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: amd64 Version: 1.63ubuntu1 Depends: libc6 (>= 2.4) Filename: pool/main/o/os-prober/os-prober_1.63ubuntu1_amd64.deb Size: 18102 MD5sum: a17801023c6e16c442b0217ce7f3fa58 SHA1: c89b245e17553841e3cd929f90bca90969a0ae93 SHA256: 6df75020395aae1e9f2d8bfb6e07acb1cc7edbb428ba2328bf35a2c4e5c7059d Description: utility to detect other OSes on a set of drives Description-md5: fdd4c0b3d1ed11dca7af85ad71167f5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: otf2bdf Priority: extra Section: utils Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Miriam Ruiz Architecture: amd64 Version: 3.1-3 Depends: libc6 (>= 2.14), libfreetype6 (>= 2.2.1) Filename: pool/main/o/otf2bdf/otf2bdf_3.1-3_amd64.deb Size: 30050 MD5sum: 4181f60e454b7a89900601c283fe30eb SHA1: 79758c447acfeb5a246ad4944470c7b5da053d6a SHA256: 625038681ed195a591cf23ffffa61e566f6a33235c2ae84c2f0a9cb991cc3e23 Description: generate BDF bitmap fonts from OpenType outline fonts Homepage: http://www.math.nmsu.edu/~mleisher/Software/otf2bdf/ Description-md5: 78a18ff9e4e0d117cd863efd39b157ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: overlay-scrollbar Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Desktop Team Architecture: all Version: 0.2.16+r359+14.04.20131129-0ubuntu1 Depends: overlay-scrollbar-gtk2, overlay-scrollbar-gtk3, dconf-gsettings-backend | gsettings-backend Filename: pool/main/o/overlay-scrollbar/overlay-scrollbar_0.2.16+r359+14.04.20131129-0ubuntu1_all.deb Size: 2116 MD5sum: 885144c707227a50679efd4f73ebde22 SHA1: 2e850c682b2bae16263896723dc3f80c1a3fd2d0 SHA256: d2583f2b511f6324d033f77028fb564f27f0174488c391e57967babe2b92a6d8 Description: Scrollbar overlay Homepage: http://launchpad.net/ayatana-scrollbar Description-md5: e1abc3be32d21f181effe2ab01d43076 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: overlay-scrollbar-gtk2 Priority: optional Section: libs Installed-Size: 119 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: overlay-scrollbar Version: 0.2.16+r359+14.04.20131129-0ubuntu1 Replaces: liboverlay-scrollbar-0.2-0 (<< 0.2.16+r348), liboverlay-scrollbar-0.2-dev (<< 0.2.16+r348) Depends: overlay-scrollbar, libc6 (>= 2.4), libcairo2 (>= 1.10.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.6-0ubuntu4) Conflicts: liboverlay-scrollbar-0.2-0 (<< 0.2.16+r348), liboverlay-scrollbar-0.2-dev (<< 0.2.16+r348) Filename: pool/main/o/overlay-scrollbar/overlay-scrollbar-gtk2_0.2.16+r359+14.04.20131129-0ubuntu1_amd64.deb Size: 29030 MD5sum: e964a3474bdcff18320a9b2c09f7de00 SHA1: 40119ddf741130129ca252d262ea1ed76a857256 SHA256: fb0edd11facc82108d07f9f203b963b06c53404fb4a6a953bc4ca20ce509c4de Description: GTK 2 module for overlay scrollbars Multi-Arch: same Homepage: http://launchpad.net/ayatana-scrollbar Description-md5: 1d3f21e2d8af7452b22c5b3bf608dfba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: overlay-scrollbar-gtk3 Priority: optional Section: libs Installed-Size: 123 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: overlay-scrollbar Version: 0.2.16+r359+14.04.20131129-0ubuntu1 Replaces: liboverlay-scrollbar3-0.2-0 (<< 0.2.16+r348), liboverlay-scrollbar3-0.2-dev (<< 0.2.16+r348) Depends: overlay-scrollbar, libc6 (>= 2.4), libcairo2 (>= 1.10.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.7.10) Conflicts: liboverlay-scrollbar3-0.2-0 (<< 0.2.16+r348), liboverlay-scrollbar3-0.2-dev (<< 0.2.16+r348) Filename: pool/main/o/overlay-scrollbar/overlay-scrollbar-gtk3_0.2.16+r359+14.04.20131129-0ubuntu1_amd64.deb Size: 30398 MD5sum: 0a93c9024e681749fc19e9745169ea0d SHA1: 5f1605beb336256c56cec4345887be27eaec1b76 SHA256: eb4bb953c0772947a8b8a090681dfdbc3e9c445c4790addee67482cf9ebf1c1f Description: GTK 3 module for overlay scrollbars Multi-Arch: same Homepage: http://launchpad.net/ayatana-scrollbar Description-md5: c27dd21fae509f36ba27ac9261f3eb62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: overlayroot Priority: extra Section: admin Installed-Size: 101 Maintainer: Scott Moser Architecture: all Source: cloud-initramfs-tools Version: 0.25ubuntu1 Depends: cryptsetup, cryptsetup-bin, initramfs-tools Suggests: haveged Filename: pool/main/c/cloud-initramfs-tools/overlayroot_0.25ubuntu1_all.deb Size: 14416 MD5sum: 625179f1a8cac7d24126d25cf532649e SHA1: e3413327cf1655c7061688e6cf4cffe0411f9345 SHA256: a296adb97d180966d254534b8d2bd225242fc179def38a7e5157bc00a959ecd5 Description: use an overlayfs on top of a read-only root filesystem Homepage: http://launchpad.net/cloud-initramfs-tools Description-md5: 994a1e190cc10da9cb6f340384617d3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: cloud-image Package: oxideqt-codecs Priority: extra Section: libs Installed-Size: 2297 Maintainer: Chris Coulson Architecture: amd64 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Replaces: liboxideqtcore0 (<< 1.0.0~bzr488), oxideqt-codecs-extra Depends: libc6 (>= 2.14) Conflicts: oxideqt-codecs-extra Breaks: liboxideqtcore0 (<< 1.0.0~bzr488) Filename: pool/main/o/oxide-qt/oxideqt-codecs_1.0.0~bzr501-0ubuntu1_amd64.deb Size: 499048 MD5sum: f932e78cee7cbd1a76b157625d759ca6 SHA1: 34299d1725702b3f23a41a0e8cdab6efb5043177 SHA256: 2f678e37935e821d4715368a1b933b5069454c3b8ee410fb56efb2313a5febcb Description: Web browser engine library for Qt (codecs) Multi-Arch: same Homepage: https://launchpad.net/oxide Description-md5: d4fcb02affb6a1a5bf176aaea3d3ddae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: oxideqt-codecs-dbg Priority: extra Section: debug Installed-Size: 5100 Maintainer: Chris Coulson Architecture: amd64 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Replaces: oxideqt-codecs-extra-dbg, oxideqt-dbg (<< 1.0.0~bzr488) Depends: oxideqt-codecs (= 1.0.0~bzr501-0ubuntu1) Conflicts: oxideqt-codecs-extra-dbg Breaks: oxideqt-dbg (<< 1.0.0~bzr488) Filename: pool/main/o/oxide-qt/oxideqt-codecs-dbg_1.0.0~bzr501-0ubuntu1_amd64.deb Size: 859998 MD5sum: 41e68f6b9bd033824065e4d95ada3dc5 SHA1: c514301ba46a72a7b303bdfc2d3cdcb3bbb52ae8 SHA256: 1a2417698d1a1cf2ef1f2514a16226e71ac7f91d5f691d4a5875c8d56d88c73c Description: Web browser engine library for Qt (Debug symbols) Homepage: https://launchpad.net/oxide Description-md5: 7bdca490a17577bc97500e2cdb847ebb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: oxideqt-codecs-extra Priority: extra Section: libs Installed-Size: 3566 Maintainer: Chris Coulson Architecture: amd64 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Replaces: liboxideqtcore0 (<< 1.0.0~bzr488), oxideqt-codecs Depends: libc6 (>= 2.14) Conflicts: oxideqt-codecs Breaks: liboxideqtcore0 (<< 1.0.0~bzr488) Filename: pool/main/o/oxide-qt/oxideqt-codecs-extra_1.0.0~bzr501-0ubuntu1_amd64.deb Size: 869268 MD5sum: 52355350b4ec21d5f666a6d5519ccdc6 SHA1: e29003101539b5b2d8f8abe0f8f363668b124200 SHA256: d7ff67a7e5646d9de56111a6d34ef10b8f4848855ca589156a8b5f662b0f20cd Description: Web browser engine library for Qt (codecs) Multi-Arch: same Homepage: https://launchpad.net/oxide Description-md5: dc0eb985cf2dad082e83581dbf61fcf6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: oxideqt-codecs-extra-dbg Priority: extra Section: debug Installed-Size: 10466 Maintainer: Chris Coulson Architecture: amd64 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Replaces: oxideqt-codecs-dbg, oxideqt-dbg (<< 1.0.0~bzr488) Depends: oxideqt-codecs-extra (= 1.0.0~bzr501-0ubuntu1) Conflicts: oxideqt-codecs-dbg Breaks: oxideqt-dbg (<< 1.0.0~bzr488) Filename: pool/main/o/oxide-qt/oxideqt-codecs-extra-dbg_1.0.0~bzr501-0ubuntu1_amd64.deb Size: 1814700 MD5sum: 76c7d7a9d4f51810a66c93f752095181 SHA1: 3a02bfc0c8b32864b5d994ae93e41d2d27e34582 SHA256: 6871868c4d5ecd7acee72a1f4b0418bde8c99cae0eb5ca662475be044d492bff Description: Web browser engine library for Qt (Debug symbols) Homepage: https://launchpad.net/oxide Description-md5: 7bdca490a17577bc97500e2cdb847ebb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: oxideqt-dbg Priority: extra Section: debug Installed-Size: 1723986 Maintainer: Chris Coulson Architecture: amd64 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Depends: liboxideqtcore0 (= 1.0.0~bzr501-0ubuntu1), liboxideqt-qmlplugin (= 1.0.0~bzr501-0ubuntu1) Filename: pool/main/o/oxide-qt/oxideqt-dbg_1.0.0~bzr501-0ubuntu1_amd64.deb Size: 407987958 MD5sum: 130d5323d6d6cf56123ae3b69b797cf8 SHA1: 4180af4afc50fabce6a31babb7376fdb3f609d57 SHA256: 46af7b63681141ae4c6093540c0d2512541cb92a78f2948b2e23e9694cb935bf Description: Web browser engine library for Qt (Debug symbols) Homepage: https://launchpad.net/oxide Description-md5: 7bdca490a17577bc97500e2cdb847ebb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: p11-kit Priority: extra Section: misc Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Version: 0.20.2-2ubuntu2 Depends: libc6 (>= 2.16), libp11-kit0 (>= 0.20.0), libtasn1-6 (>= 3.4-0), p11-kit-modules (>= 0.20.2-2ubuntu2) Filename: pool/main/p/p11-kit/p11-kit_0.20.2-2ubuntu2_amd64.deb Size: 65776 MD5sum: 1eb6e998b46a635099e2259934298497 SHA1: 50a9ed0baa898a99754480f96b8c14519bac0e9d SHA256: c0cc5ae3b4e574ecd7490d3a8460a36d0dc126cf8911cdf21a66d2548e6a85ce Description: p11-glue utilities Homepage: http://p11-glue.freedesktop.org/p11-kit.html Description-md5: fe6cbfa4ac74d6c7e8e5eb2361174b36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: p11-kit-modules Priority: extra Section: misc Installed-Size: 256 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: amd64 Source: p11-kit Version: 0.20.2-2ubuntu2 Replaces: p11-kit (<< 0.20.2-2) Depends: libc6 (>= 2.16), libtasn1-6 (>= 3.4-0), libp11-kit0 (= 0.20.2-2ubuntu2) Breaks: p11-kit (<< 0.20.2-2) Filename: pool/main/p/p11-kit/p11-kit-modules_0.20.2-2ubuntu2_amd64.deb Size: 71818 MD5sum: aeed9462cc9bb80704b37a771c15b99a SHA1: 1e784a1c23b3dfc5118faf22469f02c450716551 SHA256: b2aacf45cee3653b18163af4fd027b827409c3ac880655c4186c2e4d79b8293f Description: p11-glue proxy and trust modules Multi-Arch: same Homepage: http://p11-glue.freedesktop.org/p11-kit.html Description-md5: 43267efbdfb71218a82e5231a4e91b55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pacemaker Priority: optional Section: admin Installed-Size: 1564 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Version: 1.1.10+git20130802-1ubuntu2 Replaces: pacemaker-heartbeat, pacemaker-openais Depends: libc6 (>= 2.14), libcfg6 (>= 2.3.0), libcib3 (>= 1.1.10+git20130802), libcmap4 (>= 2.3.0), libcorosync-common4 (>= 2.3.0), libcrmcluster4 (>= 1.1.10+git20130802), libcrmcommon3 (>= 1.1.10+git20130802), libcrmservice1 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libgnutls26 (>= 2.12.17-0), liblrmd1 (>= 1.1.10+git20130802), libpam0g (>= 0.99.7.1), libpe-rules2 (>= 1.1.10+git20130802), libpe-status4 (>= 1.1.10+git20130802), libpengine4 (>= 1.1.10+git20130802), libplumb2 (>= 1.0.11+hg2754), libqb0, libstonithd2 (>= 1.1.10+git20130802), libtransitioner2 (>= 1.1.10+git20130802), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libheartbeat2, resource-agents, adduser, corosync (>= 1.4.4-1) | heartbeat (>= 3.0), crmsh, pacemaker-cli-utils Conflicts: pacemaker-heartbeat, pacemaker-openais Filename: pool/main/p/pacemaker/pacemaker_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 364314 MD5sum: 0a0ceb59846c07c8d759adf96793a9b8 SHA1: 591c4bbb929d091c89fab5c63035e00ad23f5b18 SHA256: 7f3c7fd79f4e5bc4dfd4caff07e7a42bc939c14d8c5355785105a0aadcf610ac Description: HA cluster resource manager Homepage: http://clusterlabs.org/ Description-md5: eccce3a1485fdccecf06cfd5b57852c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pacemaker-cli-utils Priority: optional Section: admin Installed-Size: 508 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: pacemaker (<< 1.1.9+git20130321-1) Depends: libc6 (>= 2.15), libcib3 (>= 1.1.10+git20130802), libcpg4 (>= 2.3.0), libcrmcluster4 (>= 1.1.10+git20130802), libcrmcommon3 (>= 1.1.10+git20130802), libcrmservice1 (>= 1.1.10+git20130802), libesmtp6, libglib2.0-0 (>= 2.16.0), liblrmd1 (>= 1.1.10+git20130802), libncurses5 (>= 5.5-5~), libpe-rules2 (>= 1.1.10+git20130802), libpe-status4 (>= 1.1.10+git20130802), libpengine4 (>= 1.1.10+git20130802), libplumb2 (>= 1.0.11+hg2754), libqb0, libquorum5 (>= 2.3.0), libsnmp30 (>= 5.7.2~dfsg), libstonithd2 (>= 1.1.10+git20130802), libtinfo5, libtransitioner2 (>= 1.1.10+git20130802), libxml2 (>= 2.7.4) Conflicts: pacemaker (<< 1.1.9+git20130321-1) Filename: pool/main/p/pacemaker/pacemaker-cli-utils_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 130324 MD5sum: 34de40d07e56895ce6173fac410cb5e8 SHA1: 1321ab5d377fcdc2be49cba6b96eb9260add2ad3 SHA256: d52534168cb170432c8b68947ec44cc4a625171de20c6a1a0a65b58ffd7e48f4 Description: Command line interface utilities for Pacemaker Homepage: http://clusterlabs.org/ Description-md5: 3c7c85297daa7a355331d5519e1b5e8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pacemaker-dbg Priority: extra Section: debug Installed-Size: 6420 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Depends: pacemaker (= 1.1.10+git20130802-1ubuntu2) Filename: pool/main/p/pacemaker/pacemaker-dbg_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 1497792 MD5sum: 8b6f70f07a45fd4940aec8cdcbcc0aac SHA1: b67b5adcde62bcefa01465b81eaae170307ea014 SHA256: b70cefb5de45fdb663f292f51bd225104ebed407ae10433aba09998e39b8d90e Description: Debugging symbols for Pacemaker Homepage: http://clusterlabs.org/ Description-md5: a0adfd9dbf36649ed6a4ed5fbabecd35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pacemaker-dev Priority: optional Section: devel Installed-Size: 18007 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: pacemaker-heartbeat-dev, pacemaker-openais-dev Depends: pacemaker (>= 1.1.10+git20130802-1ubuntu2), python, libcorosync-dev (>= 1.4.4-1), libheartbeat2-dev (>= 3.0), libglib2.0-dev, libxml2-dev, libcluster-glue-dev (>= 1.0.11+hg2754), libcib3-dev (>= 1.1.10+git20130802-1ubuntu2), libcrmcluster4-dev (>= 1.1.10+git20130802-1ubuntu2), libcrmcommon3-dev (>= 1.1.10+git20130802-1ubuntu2), libpe-rules2-dev (>= 1.1.10+git20130802-1ubuntu2), libpe-status4-dev (>= 1.1.10+git20130802-1ubuntu2), libpengine4-dev (>= 1.1.10+git20130802-1ubuntu2), libstonithd2-dev (>= 1.1.10+git20130802-1ubuntu2), libtransitioner2-dev (>= 1.1.10+git20130802-1ubuntu2), liblrmd1-dev (>= 1.1.10+git20130802-1ubuntu2), libcrmservice1-dev (>= 1.1.10+git20130802-1ubuntu2) Conflicts: pacemaker-heartbeat-dev, pacemaker-openais-dev Filename: pool/main/p/pacemaker/pacemaker-dev_1.1.10+git20130802-1ubuntu2_amd64.deb Size: 773648 MD5sum: 34635f97a4d7390a26f696462a00478d SHA1: c037751d93a23c8098d7893abfa45ed0899657c1 SHA256: 855d4bc248a2260dda8e5560f491ef013fff0b8cac8e41d1d29edc58de7b228e Description: HA cluster resource manager (development files) Homepage: http://clusterlabs.org/ Description-md5: 84975a748b75e47909c7bb0cfd965795 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: packagekit Priority: extra Section: admin Installed-Size: 1172 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: amd64 Version: 0.8.12-1ubuntu5 Provides: packagekit-system-interface Depends: libglib2.0-bin, libpackagekit-glib2-16 (= 0.8.12-1ubuntu5), packagekit-backend-aptcc (= 0.8.12-1ubuntu5), policykit-1, libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libpolkit-gobject-1-0 (>= 0.99), libsqlite3-0 (>= 3.5.9), libsystemd-login0 (>= 31) Recommends: packagekit-tools Suggests: packagekit-backend-smart Breaks: libpackagekit-glib2-14 (<= 0.7.6-4), libpackagekit-qt2-2 (<= 0.7.6-4), packagekit-backend-apt (<< 0.8.12-1ubuntu5), packagekit-backend-aptcc (<< 0.8.12-1ubuntu5), packagekit-backend-smart (<< 0.8.12-1ubuntu5), packagekit-offline-update (<< 0.8.12-1ubuntu5), packagekit-plugin-click (<= 0.3.1) Filename: pool/main/p/packagekit/packagekit_0.8.12-1ubuntu5_amd64.deb Size: 268934 MD5sum: 8f103202988b766b420e71f45dd2846a SHA1: f40b8f3b1f35b9b01968d6f8465b42e5b23b2020 SHA256: 7e02ae470731fe1bc2367b13a2e57d6d09bc45bf4973f1cfb89ef494797c46f2 Description: Provides a package management service Multi-Arch: foreign Homepage: http://www.packagekit.org Description-md5: 2a370c6f43c72ec3adb4412d3b3bdca0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-desktop Package: packagekit-backend-aptcc Priority: extra Section: admin Installed-Size: 328 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: amd64 Source: packagekit Version: 0.8.12-1ubuntu5 Depends: gdebi-core (>= 0.8.2), python3, python3-packagekit (= 0.8.12-1ubuntu5), libapt-inst1.5 (>= 0.8.14), libapt-pkg4.12 (>= 0.9.11), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgstreamer1.0-0 (>= 1.0.0), libstdc++6 (>= 4.6) Recommends: packagekit (= 0.8.12-1ubuntu5) Suggests: apt-xapian-index Filename: pool/main/p/packagekit/packagekit-backend-aptcc_0.8.12-1ubuntu5_amd64.deb Size: 97194 MD5sum: 5ad1c4975b50788fbee49e2f0680593e SHA1: 1d77c429a8fceb602cf90d88ad987609974e164b SHA256: 249fcc067dfd9bbc61a1c45a16dabd2a56d908bc0b2b09f1a5a4ea8e00f4c86b Description: APT backend for PackageKit Homepage: http://www.packagekit.org Description-md5: d47c143c2e7f18ccc2b62c16780cc70d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-desktop Package: packagekit-docs Priority: optional Section: doc Installed-Size: 2546 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: all Source: packagekit Version: 0.8.12-1ubuntu5 Filename: pool/main/p/packagekit/packagekit-docs_0.8.12-1ubuntu5_all.deb Size: 319120 MD5sum: 239584b0c790c9b59d22ff00c6b78e4c SHA1: 43687c67807d7a5f6efb9734035dba020b3ca6ec SHA256: 6d0762e98d50a7097c7e75c0b955bce113c15eb48648ec1db47499da22118d2f Description: Documentation for PackageKit Homepage: http://www.packagekit.org Description-md5: f43626bcae09213d8ed071770d06d57a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: packagekit-tools Priority: optional Section: libs Installed-Size: 222 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: amd64 Source: packagekit Version: 0.8.12-1ubuntu5 Depends: python3-aptdaemon.pkcompat | packagekit-system-interface | packagekit (= 0.8.12-1ubuntu5), libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libpackagekit-glib2-16 (>= 0.8.10) Filename: pool/main/p/packagekit/packagekit-tools_0.8.12-1ubuntu5_amd64.deb Size: 46216 MD5sum: 0e4ffb8ffb4030513b74ca60d3fd8d9f SHA1: f708d6994af63b0f3b6b14cb86955ab7f83a8899 SHA256: 87a91677260f456b025a5d178eef2d7e3cce0ec1a63226d633fa1d466bc8a54f Description: Provides PackageKit command-line tools Multi-Arch: foreign Homepage: http://www.packagekit.org Description-md5: 8ba205caa823fb175b63d5c17f441a15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: paramiko-doc Priority: optional Section: doc Installed-Size: 6975 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy T. Bouse Architecture: all Source: paramiko Version: 1.10.1-1git1build1 Filename: pool/main/p/paramiko/paramiko-doc_1.10.1-1git1build1_all.deb Size: 360326 MD5sum: 2de0805c875a08d8ed1fbc308c5011e7 SHA1: 597400c18c0dadbfdf686699e452970bc72cf082 SHA256: 98b4c1920de8e37c3e651caade5ce5da2e2e282f26dc0911fb9f9fe4a2d80e4f Description: Make ssh v2 connections with Python (Documentation) Homepage: https://github.com/paramiko/paramiko/ Description-md5: 64abd13842f9844afdfb841ebdde4eac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: parted Priority: standard Section: admin Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Parted Maintainer Team Architecture: amd64 Version: 2.3-19ubuntu1 Replaces: fsresize, parted1.6 Depends: libc6 (>= 2.11), libparted0debian1 (>= 2.2-1), libreadline6 (>= 6.0), libtinfo5 Suggests: parted-doc Conflicts: fsresize, parted1.6 Filename: pool/main/p/parted/parted_2.3-19ubuntu1_amd64.deb Size: 43988 MD5sum: a633ab6c465b69a2fd3dd9c00832f6fd SHA1: 07a21cd9f47120c727db227e56d84a8e15e982f1 SHA256: 8aac3e06d56d4381f0ad3c488218dd34a09c8d0c009a2f2013395f103dda265f Description: disk partition manipulator Homepage: http://www.gnu.org/software/parted Description-md5: 0672c048225946ff0705e0cecd54cf5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: parted-doc Priority: optional Section: doc Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Parted Maintainer Team Architecture: all Source: parted Version: 2.3-19ubuntu1 Replaces: parted1.6-doc Depends: install-info Suggests: parted | libparted0-dev Conflicts: parted1.6-doc Filename: pool/main/p/parted/parted-doc_2.3-19ubuntu1_all.deb Size: 82920 MD5sum: f5f477bc19cc66cbf92699d03c18bcc6 SHA1: 20bf12d05316f47d88262d73b71ebe39687d468a SHA256: 72148fd6fb728e0c4ffb4cf64f89892a491d4ae4d9c1bbd3ac44a185808078fd Description: disk partition manipulator - documentation Homepage: http://www.gnu.org/software/parted Description-md5: ac1df9e91cfcaaa28de0866f6029d294 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: passwd Priority: required Section: admin Installed-Size: 2337 Maintainer: Ubuntu Developers Original-Maintainer: Shadow package maintainers Architecture: amd64 Source: shadow Version: 1:4.1.5.1-1ubuntu9 Replaces: manpages-tr (<< 1.0.5), manpages-zh (<< 1.5.1-1) Depends: libc6 (>= 2.14), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), libsemanage1 (>= 2.0.3), libpam-modules, debianutils (>= 2.15.2) Filename: pool/main/s/shadow/passwd_4.1.5.1-1ubuntu9_amd64.deb Size: 754958 MD5sum: fbc4ce48a31fddf4fa14fffec93dcefe SHA1: 44ce432cb064eae9ba10f8895389fa18fc1c8f48 SHA256: 2c03f439990da1d02e5478c5261de7b5ee6de68052f99ca74df114ad7c135bae Description: change and administer password and group data Multi-Arch: foreign Homepage: http://pkg-shadow.alioth.debian.org/ Description-md5: 5bbd70e421ed3367a8299e53bd7afed4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: pastebinit Priority: optional Section: misc Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Rolf Leggewie Architecture: all Version: 1.4-3 Replaces: bikeshed (<< 1.21) Depends: python3 Recommends: lsb-release Breaks: bikeshed (<< 1.21) Filename: pool/main/p/pastebinit/pastebinit_1.4-3_all.deb Size: 14868 MD5sum: d45fb18a32934c39d20a690b84fdf739 SHA1: b9a4a2494c10a33cc890b323102948f74480cb93 SHA256: b2eb03f0208648c43a5adf82fdc58e25c402656bdc2ddc27f893863f091136a1 Description: command-line pastebin client Homepage: http://launchpad.net/pastebinit/ Description-md5: 087aee8d4c5cc5f9dc54f3bdcd92d9f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, xubuntu-desktop Package: patch Priority: optional Section: utils Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Version: 2.7.1-4 Depends: libc6 (>= 2.17) Suggests: ed, diffutils-doc Filename: pool/main/p/patch/patch_2.7.1-4_amd64.deb Size: 93836 MD5sum: 642c719874db2d94a235a043eb8ce553 SHA1: 2323129c7269180784f9148d3051706b997e6a7e SHA256: a99d2cfac18163722a394c8d35909c1a94f90d12206fa4c0489042bbe514c3f8 Description: Apply a diff file to an original Multi-Arch: foreign Description-md5: d56076980d5ce0f54f9dd685e6ca0ce7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: patchutils Priority: optional Section: text Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Version: 0.3.2-3 Depends: libc6 (>= 2.14), perl, patch, debianutils (>= 1.16) Filename: pool/main/p/patchutils/patchutils_0.3.2-3_amd64.deb Size: 92110 MD5sum: 9a35730269ea1bacd7dd4f17f963640a SHA1: cf3a7cfd881599e0fbca835500b673f8583404b9 SHA256: a86da47c133874026f7fc0cc3cefca7bc5eda1773562c287e0012fa1ea7ef577 Description: Utilities to work with patches Multi-Arch: foreign Homepage: http://cyberelk.net/tim/patchutils/index.html Description-md5: 442c0d104c6f6b7262f5dcab972c3391 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pax Priority: optional Section: utils Installed-Size: 181 Maintainer: Thorsten Glaser Architecture: amd64 Version: 1:20120606-2+deb7u1 Depends: libc6 (>= 2.14) Filename: pool/main/p/pax/pax_20120606-2+deb7u1_amd64.deb Size: 85714 MD5sum: bce40239b5ed965f05db4b3b615adfa0 SHA1: 7a5aac9f98990ebef67bd387c6294e742f7a1d79 SHA256: 7038ac60140a78afd363fc2c606870269bb2af59ed007eb9ec2a82c9dda6ea75 Description: Portable Archive Interchange (cpio, pax, tar) Multi-Arch: foreign Description-md5: 7f236f6351e1536c2153e84c93563932 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pbuilder Priority: extra Section: devel Installed-Size: 992 Maintainer: Ubuntu Developers Original-Maintainer: Debian pbuilder maintenance team Architecture: all Version: 0.215ubuntu7 Depends: coreutils (>= 4.5.8-1), debootstrap | cdebootstrap, dpkg-dev, debianutils (>= 1.13.1), wget, debconf (>= 0.5) | debconf-2.0 Recommends: fakeroot, sudo, devscripts, aptitude Suggests: pbuilder-uml, gdebi-core, cowdancer Filename: pool/main/p/pbuilder/pbuilder_0.215ubuntu7_all.deb Size: 307414 MD5sum: 40567bb9ef12bb88b1e7900fae2fe703 SHA1: c8cf69a9c3d3cecbdb3cf31189089690262507c5 SHA256: f5c9e9263b8bbef5a14a1db070dcc2dc27bc0cc81552d5f9d684d26e82f80a2b Description: personal package builder for Debian packages Homepage: http://pbuilder.alioth.debian.org Description-md5: a8198b8566f5ca30b1c95b4df04af8ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pciutils Priority: standard Section: admin Installed-Size: 1086 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 1:3.2.1-1ubuntu5 Depends: libc6 (>= 2.14), libpci3 (= 1:3.2.1-1ubuntu5) Suggests: bzip2, wget | curl | lynx-cur Filename: pool/main/p/pciutils/pciutils_3.2.1-1ubuntu5_amd64.deb Size: 268764 MD5sum: fb4fd5f2bba670589691d20d7117f541 SHA1: 280a9ba613661f7e04ec68b316110353a54e8053 SHA256: 68f8ddd5d9278f77ad6eceb850166d4a4412140d8578211c8b9862acbaa85f95 Description: Linux PCI Utilities Multi-Arch: foreign Homepage: http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml Description-md5: 4f7355c69571e79c2e4a6b4c231912e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: pcmciautils Priority: optional Section: admin Installed-Size: 121 Maintainer: Colin Watson Architecture: amd64 Version: 018-8 Depends: libc6 (>= 2.4) Pre-Depends: dpkg (>= 1.15.7.2) Recommends: udev Suggests: wireless-tools Filename: pool/main/p/pcmciautils/pcmciautils_018-8_amd64.deb Size: 29986 MD5sum: b5bd1efc856c27c7a513b15723d07ad1 SHA1: b0a2d053e57d65fe6e7003b3ae7b9436908d6377 SHA256: ebd9e2f6434e70fe1cf4592899905099d22272690addcfb88f694964a51b3568 Description: PCMCIA utilities for Linux 2.6 Homepage: http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html Description-md5: d01e24437b6f27ffd8779126e3ecaeec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pdksh Priority: optional Section: shells Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Thorsten Glaser Architecture: all Source: mksh Version: 46-2ubuntu3 Depends: mksh (>= 40.9.20120630) Filename: pool/main/m/mksh/pdksh_46-2ubuntu3_all.deb Size: 2914 MD5sum: 2cf972a3bcef4ab0feb3531b0359e15d SHA1: e6c47f5f54fff339c8ee6eecb88a0b50e8def871 SHA256: cc921793f5e3e5570d61ab8c4ea4a4857f157d4304fab6c0024fe0335169993e Description: transitional dummy package to migrate from pdksh to mksh Multi-Arch: foreign Homepage: http://mirbsd.de/mksh Description-md5: a2a32660fef49ec89ed9052e6465fbd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pep8 Priority: optional Section: python Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: David Watson Architecture: all Version: 1.4.6-1.1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any, python-setuptools Filename: pool/main/p/pep8/pep8_1.4.6-1.1build1_all.deb Size: 27400 MD5sum: bcb256952a154a7d02d55bc68c775980 SHA1: fd09e6504072f3e0ba6eda66050742be49b7b265 SHA256: 7f55fd17c9c045b822cbdabc8d160dddab2984f96777e490cb592cbf9fff0182 Description: Python PEP 8 code style checker - python2 Homepage: http://pypi.python.org/pypi/pep8 Description-md5: 4fa5e7cc321d43aa1bd5646a1cfd1fc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: perl Priority: important Section: perl Installed-Size: 17317 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: amd64 Version: 5.18.2-2ubuntu1 Replaces: libarchive-tar-perl (<= 1.38-2), libcompress-raw-bzip2-perl, libcompress-raw-zlib-perl, libcompress-zlib-perl, libdigest-md5-perl, libdigest-sha-perl, libencode-perl, libio-compress-base-perl, libio-compress-bzip2-perl, libio-compress-perl, libio-compress-zlib-perl, libmime-base64-perl, libmodule-corelist-perl (<< 2.14-2), libstorable-perl, libsys-syslog-perl, libthreads-perl, libthreads-shared-perl, libtime-hires-perl, libtime-piece-perl, perl-base (<< 5.10.1-12), perl-doc (<< 5.8.0-1), perl-modules (<< 5.8.1-1) Provides: data-dumper, libcompress-raw-bzip2-perl, libcompress-raw-zlib-perl, libcompress-zlib-perl, libdigest-md5-perl, libdigest-sha-perl, libencode-perl, libio-compress-base-perl, libio-compress-bzip2-perl, libio-compress-perl, libio-compress-zlib-perl, libmime-base64-perl, libstorable-perl, libsys-syslog-perl, libthreads-perl, libthreads-shared-perl, libtime-hires-perl, libtime-piece-perl, perl5 Depends: perl-base (= 5.18.2-2ubuntu1), perl-modules (>= 5.18.2-2ubuntu1), libbz2-1.0, libc6 (>= 2.14), libdb5.3, libgdbm3 (>= 1.8.3), zlib1g (>= 1:1.2.2.3) Recommends: netbase Suggests: perl-doc, libterm-readline-gnu-perl | libterm-readline-perl-perl, make Conflicts: libjson-pp-perl (<< 2.27200-2) Breaks: dh-make-perl (<< 0.73-1), ftpmirror (<< 1.96+dfsg-13), libcompress-raw-bzip2-perl (<< 2.060), libcompress-raw-zlib-perl (<< 2.060), libcompress-zlib-perl (<< 2.060), libdigest-md5-perl (<< 2.52), libdigest-sha-perl (<< 5.84.01), libencode-perl (<< 2.49), libhtml-template-compiled-perl (<< 0.95-1), libio-compress-base-perl (<< 2.060), libio-compress-bzip2-perl (<< 2.060), libio-compress-perl (<< 2.060), libio-compress-zlib-perl (<< 2.060), libload-perl (<< 0.20-1), libmime-base64-perl (<< 3.13), libnet-jifty-perl (<< 0.14-1), libperl-apireference-perl (<< 0.09-1), libregexp-optimizer-perl (<< 0.15-3), libsoap-lite-perl (<< 0.712-4), libstorable-perl (<< 2.41), libsys-syslog-perl (<< 0.32), libthreads-perl (<< 1.86), libthreads-shared-perl (<< 1.43), libtime-hires-perl (<< 1.9725), libtime-piece-perl (<< 1.20.01), libxml-parser-lite-tree-perl (<< 0.14-1), libyaml-perl (<< 0.73-1), mrtg (<< 2.16.3-3.1), perl-doc (<< 5.18.2-1) Filename: pool/main/p/perl/perl_5.18.2-2ubuntu1_amd64.deb Size: 2658846 MD5sum: 0874a96d2722fdaf609a5c00d9b5b417 SHA1: 29d29a098d0ec821222c6e345a538fc3f8626b5e SHA256: 862237d65872aa17af2201c5c8f7be4dddfdb5e1c620c7475fd09d4225dfadc2 Description: Larry Wall's Practical Extraction and Report Language Homepage: http://dev.perl.org/perl5/ Description-md5: 603cb1e5fe66da8106c364f4e9b84082 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: perl-base Essential: yes Priority: required Section: perl Installed-Size: 4858 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: amd64 Source: perl Version: 5.18.2-2ubuntu1 Replaces: libperl5.8 (<< 5.8.0-20), libscalar-list-utils-perl, libsocket-perl, libxsloader-perl, perl (<< 5.10.1-12), perl-modules (<< 5.10.1-1) Provides: libscalar-list-utils-perl, libsocket-perl, libxsloader-perl, perl5-base, perlapi-5.18.1, perlapi-5.18.2 Pre-Depends: libc6 (>= 2.14), dpkg (>= 1.14.20) Suggests: perl Conflicts: defoma (<< 0.11.12), doc-base (<< 0.10.3), libscalar-list-utils-perl, mono-gac (<< 2.10.8.1-3), safe-rm (<< 0.8), update-inetd (<< 4.41) Breaks: autoconf2.13 (<< 2.13-45), libcommon-sense-perl (<< 3.72-2~), libfile-spec-perl (<< 3.4000), libmarc-charset-perl (<< 1.2), libsocket-perl (<< 2.009), libxsloader-perl (<< 0.16) Filename: pool/main/p/perl/perl-base_5.18.2-2ubuntu1_amd64.deb Size: 1146392 MD5sum: d4ac8ebff99e6e288b1ab7fa102317b9 SHA1: 5d68f3bc2b4008a3f361eefaa86bf00ffa6dc87b SHA256: ebe881258b63d39ece1ef66a1de1cc314923b8db17fdb84d4a9ec7dd6f10a4c7 Description: minimal Perl system Homepage: http://dev.perl.org/perl5/ Description-md5: 7c818331fe8bc53134bb22330b07f5ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: perl-debug Priority: optional Section: perl Installed-Size: 22565 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: amd64 Source: perl Version: 5.18.2-2ubuntu1 Depends: perl (= 5.18.2-2ubuntu1), libc6 (>= 2.14) Filename: pool/main/p/perl/perl-debug_5.18.2-2ubuntu1_amd64.deb Size: 5116168 MD5sum: 6e52430c1352330977c447e30eef8a83 SHA1: e2b5d51e4133dfbc167a67cbbfb1123539208646 SHA256: 1938ea2c5f102cdd5a289aa023eac0561654e2463ca036340007662b471f7a7e Description: debug-enabled Perl interpreter Homepage: http://dev.perl.org/perl5/ Description-md5: d74923b33864cae938866649204c3496 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: perl-doc Priority: optional Section: doc Installed-Size: 12799 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: all Source: perl Version: 5.18.2-2ubuntu1 Depends: perl (>= 5.18.2-1) Suggests: man-browser, groff Filename: pool/main/p/perl/perl-doc_5.18.2-2ubuntu1_all.deb Size: 7265680 MD5sum: 8a22b6cac8c96eaeed08ebb7d833cd1e SHA1: f0b78b38582b005da4661241a1154a66fb30668a SHA256: fd0665fb7a4028d34f1ab674a7ff79240675c9a1733b93f96179be7d0383220e Description: Perl documentation Homepage: http://dev.perl.org/perl5/ Description-md5: 6cd25412f32c953589ef8fcaf1f5f46d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: perl-modules Priority: important Section: perl Installed-Size: 16133 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: all Source: perl Version: 5.18.2-2ubuntu1 Replaces: libansicolor-perl, libarchive-extract-perl, libarchive-tar-perl, libattribute-handlers-perl, libautodie-perl, libb-lint-perl, libcgi-pm-perl, libcpan-meta-perl, libcpan-meta-requirements-perl, libcpan-meta-yaml-perl, libcpanplus-dist-build-perl, libcpanplus-perl, libdigest-perl, libextutils-cbuilder-perl, libextutils-command-perl, libextutils-install-perl, libextutils-parsexs-perl, libfile-checktree-perl, libfile-path-perl, libfile-spec-perl, libfile-temp-perl, libhttp-tiny-perl, libi18n-langtags-perl, libio-zlib-perl, libjson-pp-perl, liblocale-codes-perl, liblocale-maketext-perl, liblocale-maketext-simple-perl, liblog-message-perl, liblog-message-simple-perl, libmath-bigint-perl, libmath-complex-perl, libmodule-build-perl, libmodule-corelist-perl, libmodule-load-conditional-perl, libmodule-load-perl, libmodule-metadata-perl, libmodule-pluggable-perl, libnet-perl, libnet-ping-perl, libobject-accessor-perl, libparams-check-perl, libparent-perl, libparse-cpan-meta-perl, libperl-ostype-perl, libpod-escapes-perl, libpod-latex-perl, libpod-parser-perl, libpod-simple-perl, libterm-ui-perl, libtest-harness-perl, libtest-simple-perl, libtext-soundex-perl, libthread-queue-perl, libtime-local-perl, libunicode-collate-perl, libversion-perl, libversion-requirements-perl, podlators-perl Provides: libansicolor-perl, libarchive-tar-perl, libattribute-handlers-perl, libautodie-perl, libcgi-pm-perl, libcpan-meta-perl, libcpan-meta-requirements-perl, libcpan-meta-yaml-perl, libdigest-perl, libextutils-cbuilder-perl, libextutils-command-perl, libextutils-install-perl, libextutils-parsexs-perl, libfile-path-perl, libfile-spec-perl, libfile-temp-perl, libhttp-tiny-perl, libi18n-langtags-perl, libio-zlib-perl, libjson-pp-perl, liblocale-codes-perl, liblocale-maketext-perl, liblocale-maketext-simple-perl, libmath-bigint-perl, libmath-complex-perl, libmodule-build-perl, libmodule-corelist-perl, libmodule-load-conditional-perl, libmodule-load-perl, libmodule-metadata-perl, libnet-perl, libnet-ping-perl, libparams-check-perl, libparent-perl, libparse-cpan-meta-perl, libperl-ostype-perl, libpod-escapes-perl, libpod-parser-perl, libpod-simple-perl, libtest-harness-perl, libtest-simple-perl, libthread-queue-perl, libtime-local-perl, libunicode-collate-perl, libversion-perl, libversion-requirements-perl, podlators-perl Depends: perl (>= 5.18.2-1) Recommends: libarchive-extract-perl, libmodule-pluggable-perl, libpod-latex-perl, libterm-ui-perl, libtext-soundex-perl Suggests: libb-lint-perl, libcpanplus-dist-build-perl, libcpanplus-perl, libfile-checktree-perl, liblog-message-simple-perl, liblog-message-perl, libobject-accessor-perl Conflicts: defoma (<< 0.11.12), mono-gac (<< 2.10.8.1-3) Breaks: libansicolor-perl (<< 4.02), libarchive-extract-perl (<< 0.68), libarchive-tar-perl (<< 1.90), libattribute-handlers-perl (<< 0.94), libautodie-perl (<< 2.13), libb-lint-perl (<< 1.17), libcgi-pm-perl (<< 3.63), libcpan-meta-perl (<< 2.120921), libcpan-meta-requirements-perl (<< 2.122), libcpan-meta-yaml-perl (<< 0.008), libcpanplus-dist-build-perl (<< 0.70), libcpanplus-perl (<< 0.9135), libdigest-perl (<< 1.17), libextutils-cbuilder-perl (<< 0.280210), libextutils-command-perl (<< 1.17), libextutils-install-perl (<< 1.59), libextutils-parsexs-perl (<< 3.180000), libfile-checktree-perl (<< 4.42), libfile-path-perl (<< 2.09), libfile-spec-perl (<< 3.4000), libfile-temp-perl (<< 0.23), libhttp-tiny-perl (<< 0.025), libi18n-langtags-perl (<< 0.39), libio-zlib-perl (<< 1.10), libjson-pp-perl (<< 2.27202), liblocale-codes-perl (<< 3.25), liblocale-maketext-perl (<< 1.23), liblocale-maketext-simple-perl (<< 0.21), liblog-message-perl (<< 0.06), liblog-message-simple-perl (<< 0.10), libmath-bigint-perl (<< 1.9991), libmath-complex-perl (<< 1.59), libmodule-build-perl (<< 0.400300), libmodule-corelist-perl (<< 3.03), libmodule-load-conditional-perl (<< 0.54), libmodule-load-perl (<< 0.24), libmodule-metadata-perl (<< 1.000011), libmodule-pluggable-perl (<< 4.7), libnet-perl (<= 1:1.22), libnet-ping-perl (<< 2.41), libobject-accessor-perl (<< 0.46), libparams-check-perl (<< 0.36), libparent-perl (<< 0.225), libparse-cpan-meta-perl (<< 1.4404), libperl-ostype-perl (<< 1.003), libpod-escapes-perl (<< 1.04), libpod-latex-perl (<< 0.61), libpod-parser-perl (<< 1.60), libpod-simple-perl (<< 3.28), libterm-ui-perl (<< 0.34), libtest-harness-perl (<< 3.26), libtest-simple-perl (<< 0.98), libtext-soundex-perl (<< 3.04), libthread-queue-perl (<< 3.02), libtime-local-perl (<< 1.2300), libunicode-collate-perl (<< 0.97), libversion-perl (<< 1:0.9902), libversion-requirements-perl (<< 0.101022), podlators-perl (<< 2.3.1) Filename: pool/main/p/perl/perl-modules_5.18.2-2ubuntu1_all.deb Size: 2695888 MD5sum: 0e62d5ee60b61a35f54bc13d3643754b SHA1: 77500983a5214c80050ea0ee075ffb6c1f42ae8a SHA256: 4e50d0d99f67d7c8653c50245fa2298a7c4b4aacb79e1ea6e2e125c36f695b68 Description: Core Perl modules Homepage: http://dev.perl.org/perl5/ Description-md5: c6e30002bf62266bdbe810bfbeaf9586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: perlmagick Priority: optional Section: perl Installed-Size: 537 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: amd64 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Provides: libimage-magick-perl Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.4), libmagickcore5 (>= 8:6.7.7.10), libperl5.18 (>= 5.18.2) Suggests: imagemagick-doc Filename: pool/main/i/imagemagick/perlmagick_6.7.7.10-6ubuntu3_amd64.deb Size: 138438 MD5sum: 9a081067fda787b3a43f7495f64b9173 SHA1: 3a66ac890e3c03f09e189507cd47c9ec41440d80 SHA256: 5b2c0557cdc9ca9da77314ddec6532b70e6744a622e22e3a30548e99234515c7 Description: Perl interface to the ImageMagick graphics routines Multi-Arch: allowed Homepage: http://www.imagemagick.org/ Description-md5: 09a1c38959e1dfda7d721a6f035bc283 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: perlqt-dbg Priority: extra Section: debug Installed-Size: 9055 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1) Recommends: libsmokeqt4-dbg Suggests: libphonon-perl (= 4:4.13.0-0ubuntu1), libqimageblitz-perl (= 4:4.13.0-0ubuntu1), libqscintilla-perl (= 4:4.13.0-0ubuntu1), libqt3support4-perl (= 4:4.13.0-0ubuntu1), libqtdbus4-perl (= 4:4.13.0-0ubuntu1), libqtdeclarative4-perl (= 4:4.13.0-0ubuntu1), libqtgui4-perl (= 4:4.13.0-0ubuntu1), libqthelp4-perl (= 4:4.13.0-0ubuntu1), libqtnetwork4-perl (= 4:4.13.0-0ubuntu1), libqtopengl4-perl (= 4:4.13.0-0ubuntu1), libqtscript4-perl (= 4:4.13.0-0ubuntu1), libqtsql4-perl (= 4:4.13.0-0ubuntu1), libqtsvg4-perl (= 4:4.13.0-0ubuntu1), libqttest4-perl (= 4:4.13.0-0ubuntu1), libqtuitools4-perl (= 4:4.13.0-0ubuntu1), libqtwebkit4-perl (= 4:4.13.0-0ubuntu1), libqtxml4-perl (= 4:4.13.0-0ubuntu1), libqtxmlpatterns4-perl (= 4:4.13.0-0ubuntu1) Filename: pool/main/p/perlqt/perlqt-dbg_4.13.0-0ubuntu1_amd64.deb Size: 1713414 MD5sum: 365a3bd53d481bd673b7ef2595adf7fb SHA1: e1366f14ba3589f08eaa4a14623861fdff7e0e87 SHA256: ab843f83f1672683de6e8569a90c6bafb99cdb224fffcb09538d09dcd58e6660 Description: debugging symbols for the perl Qt4 bindings. Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 4d96c996f17d573ebba693136e9049ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: perlqt-dev Priority: optional Section: perl Installed-Size: 407 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: amd64 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libphonon-perl (= 4:4.13.0-0ubuntu1), libqimageblitz-perl (= 4:4.13.0-0ubuntu1), libqscintilla-perl (= 4:4.13.0-0ubuntu1), libqt3support4-perl (= 4:4.13.0-0ubuntu1), libqtcore4-perl (= 4:4.13.0-0ubuntu1), libqtdbus4-perl (= 4:4.13.0-0ubuntu1), libqtdeclarative4-perl (= 4:4.13.0-0ubuntu1), libqtgui4-perl (= 4:4.13.0-0ubuntu1), libqthelp4-perl (= 4:4.13.0-0ubuntu1), libqtnetwork4-perl (= 4:4.13.0-0ubuntu1), libqtopengl4-perl (= 4:4.13.0-0ubuntu1), libqtscript4-perl (= 4:4.13.0-0ubuntu1), libqtsql4-perl (= 4:4.13.0-0ubuntu1), libqtsvg4-perl (= 4:4.13.0-0ubuntu1), libqttest4-perl (= 4:4.13.0-0ubuntu1), libqtuitools4-perl (= 4:4.13.0-0ubuntu1), libqtwebkit4-perl (= 4:4.13.0-0ubuntu1), libqtxml4-perl (= 4:4.13.0-0ubuntu1), libqtxmlpatterns4-perl (= 4:4.13.0-0ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.5.3), libqt4-xml (>= 4:4.5.3), libqtcore4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/perlqt-dev_4.13.0-0ubuntu1_amd64.deb Size: 94614 MD5sum: dbfbf2c0f4eea44d1e6571c2cd100d3b SHA1: c0052c5b497f90d5e4e305eac2f6a61e60ff92cb SHA256: ef592aa94170450b7978e48e5cba7b2b49e8f0d088f74400276cf3d4e0a549de Description: Development files for PerlQt4 Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: ccf3a7f11765808b17a25b8c18f61b63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: perltidy Priority: optional Section: devel Installed-Size: 1292 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Version: 20120701-1 Depends: perl Filename: pool/main/p/perltidy/perltidy_20120701-1_all.deb Size: 351174 MD5sum: a03075272994cf71935b643c13fabd09 SHA1: 3a246c03298cf85e9ef57a1e079aa6f6cab4054e SHA256: d04f1deefdcff0738db800eb4d938970d5f627309b1c946c3c564695c78f1c24 Description: Perl script indenter and reformatter Homepage: http://perltidy.sourceforge.net/ Description-md5: ac1c04dd6c5ca63f121d18e84c2466d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pgf Priority: optional Section: tex Installed-Size: 8748 Maintainer: Ubuntu Developers Original-Maintainer: OHURA Makoto Architecture: all Version: 2.10-1 Depends: dpkg (>= 1.14.18), tex-common (>= 2.00), texlive-latex-recommended, latex-xcolor (>= 2.00-1) Filename: pool/main/p/pgf/pgf_2.10-1_all.deb Size: 5667818 MD5sum: a06b50b588bfd71902bb2cb0b46b3802 SHA1: 42381d2d878df517cf0bb16e72d569c873ec478e SHA256: ac13433583afcb9a0d3bf30605aabef2cf4f171afd374cabfdf6efed0343bb41 Description: TeX Portable Graphic Format Description-md5: 48c701142da1c34201288ab86638b382 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: phonon Priority: optional Section: sound Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Version: 4:4.7.1-0ubuntu8 Depends: libphonon4 (>= 4:4.7.1-0ubuntu8), debconf (>= 0.5) | debconf-2.0, phonon-backend-gstreamer1.0 | phonon-backend Suggests: phonon-backend-vlc, phonon-backend-gstreamer1.0 Breaks: phonon-backend-xine (<< 4:4.6.0.0) Filename: pool/main/p/phonon/phonon_4.7.1-0ubuntu8_amd64.deb Size: 8836 MD5sum: 38563df776987c8dbac7cbcc004a5871 SHA1: b4f21954c032144b1c73524a6181be98c1ec4dd2 SHA256: 5d838da1f66a22d2274c2d33b5e1948825df80ed368df6d50645cff519f71528 Description: multimedia framework from KDE - metapackage Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: d6f8b1bb883e46112dcd9e83da047503 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: phonon-backend-gstreamer Priority: optional Section: sound Installed-Size: 410 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Version: 4:4.7.1+git20140403-0ubuntu1 Replaces: phonon-backend-gstreamer1.0 (<< 4.7.1+git20140324-0ubuntu1) Provides: phonon-backend Depends: phonon-backend-gstreamer-common (= 4:4.7.1+git20140403-0ubuntu1), gstreamer-1.0-pulseaudio | gstreamer1.0-alsa | gstreamer1.0-audiosink, gstreamer1.0-plugins-base, libc6 (>= 2.14), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.16.0), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libphonon4 (>= 4:4.7.0.0), libqt4-opengl (>= 4:4.8.1), libqtcore4 (>= 4:4.8.1), libqtgui4 (>= 4:4.8.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Recommends: gstreamer1.0-plugins-good Suggests: gstreamer1.0-plugins-ugly Breaks: phonon-backend-gstreamer1.0 (<< 4.7.1+git20140324-0ubuntu1) Filename: pool/main/p/phonon-backend-gstreamer/phonon-backend-gstreamer_4.7.1+git20140403-0ubuntu1_amd64.deb Size: 104956 MD5sum: af907f61823c3cf9e72dbdd4423df25d SHA1: dcc01b2ed071f648d1b2cb3beab9ee70f07e1a81 SHA256: ec77344f8d824b01864983901649335e8906a833012107557ffb1ae5c91abec2 Description: Phonon GStreamer 1.0.x backend Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 0fd558495f404f21ed6479dca9391b21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: phonon-backend-gstreamer-common Priority: optional Section: sound Installed-Size: 95 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon-backend-gstreamer Version: 4:4.7.1+git20140403-0ubuntu1 Replaces: phonon-backend-gstreamer (<< 4:4.7.1-0ubuntu1) Suggests: phonon-backend-gstreamer, phonon4qt5-backend-gstreamer Breaks: phonon-backend-gstreamer (<< 4:4.7.1-0ubuntu1) Filename: pool/main/p/phonon-backend-gstreamer/phonon-backend-gstreamer-common_4.7.1+git20140403-0ubuntu1_amd64.deb Size: 10676 MD5sum: 8c2b7cd89e3ca04d67bc5d90c8a531d3 SHA1: 4d5d49b51862aaa8bc1a335ccd3d0983af5fcad1 SHA256: 40eaf604e04a7ed11dc32d5585aef0b6c63dd8a35320e403de2b550dbfab8739 Description: Phonon GStreamer 1.0.x backend icons Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: c808c90a526e327c013885603fb0224c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: phonon-backend-gstreamer-dbg Priority: extra Section: debug Installed-Size: 1880 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon-backend-gstreamer Version: 4:4.7.1+git20140403-0ubuntu1 Replaces: phonon-backend-gstreamer1.0 (<< 4.7.1+git20140324-0ubuntu1), phonon-dbg (<< 4:4.6.0really4.4.4) Depends: phonon-backend-gstreamer (= 4:4.7.1+git20140403-0ubuntu1) Breaks: phonon-backend-gstreamer1.0 (<< 4.7.1+git20140324-0ubuntu1), phonon-dbg (<< 4:4.6.0really4.4.4) Filename: pool/main/p/phonon-backend-gstreamer/phonon-backend-gstreamer-dbg_4.7.1+git20140403-0ubuntu1_amd64.deb Size: 1775470 MD5sum: 11ac1e4105abaa9d1c58d316a9b8746f SHA1: 11e72eccf27a8ad1276a33466273aaf3a888f299 SHA256: 70da4612bc31df0b470cb4b1ba697550b27bb07c7fc2f366124cd2374528abeb Description: debugging symbols for the Phonon GStreamer 1.0.x backend Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: e0ca63dee3d3712986032bc1b99efe23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: phonon-backend-gstreamer1.0 Priority: optional Section: sound Installed-Size: 31 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: phonon-backend-gstreamer Version: 4:4.7.1+git20140403-0ubuntu1 Depends: phonon-backend-gstreamer Filename: pool/main/p/phonon-backend-gstreamer/phonon-backend-gstreamer1.0_4.7.1+git20140403-0ubuntu1_all.deb Size: 2428 MD5sum: 6ded5f51d5e14bb04ba13badb14dfdfc SHA1: 692422083171d526f3f0ff78195c75fb9f72a5fe SHA256: 845d4249fa22afc603607dff72f0f58f39790e300e86ebf7bccd631208d47426 Description: transitional package Homepage: http://phonon.kde.org/ Description-md5: db884766fbb0af653ae84909ccef976a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: phonon-backend-gstreamer1.0-dbg Priority: extra Section: debug Installed-Size: 31 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: phonon-backend-gstreamer Version: 4:4.7.1+git20140403-0ubuntu1 Depends: phonon-backend-gstreamer-dbg Filename: pool/main/p/phonon-backend-gstreamer/phonon-backend-gstreamer1.0-dbg_4.7.1+git20140403-0ubuntu1_all.deb Size: 2436 MD5sum: 326a25a03a9dbe46ce0d2d7ce564ab63 SHA1: 38f97e7202c77237c9f451f5336ca32f4a61232a SHA256: 42f9d9fcd2c6ae65d2f4de1ec8f0fda7494623931739dbfbf6bb6b44e5c63731 Description: transitional package Homepage: http://phonon.kde.org/ Description-md5: db884766fbb0af653ae84909ccef976a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: phonon-backend-null Priority: optional Section: sound Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon Version: 4:4.7.1-0ubuntu8 Provides: phonon-backend Depends: libphonon4, debconf (>= 0.5) | debconf-2.0 Conflicts: phonon-backend Filename: pool/main/p/phonon/phonon-backend-null_4.7.1-0ubuntu8_amd64.deb Size: 9426 MD5sum: 84f74f57fe26a51f569ceb032ba7e3d2 SHA1: 427500c1dbac44b96072be9f41ada2d347d55e27 SHA256: 0cfb7cc09b1b77882011d12c74daf0af0502113238443c0e26b6d4a44dd2a0b4 Description: multimedia framework from KDE - null back-end (no real back-end) Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: b98d0d9696e3350cabdd00605934fc22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: phonon-dbg Priority: extra Section: sound Installed-Size: 20759 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libphonon4 (= 4:4.7.1-0ubuntu8) Suggests: libphononexperimental4 (= 4:4.7.1-0ubuntu8), libphonon4qt5-4 (= 4:4.7.1-0ubuntu8), libphonon4qt5experimental4 (= 4:4.7.1-0ubuntu8) Filename: pool/main/p/phonon/phonon-dbg_4.7.1-0ubuntu8_amd64.deb Size: 4325306 MD5sum: 478d5425bbd6006e5f392dd317ef37bf SHA1: 8df173cf8310f226de87cbff02301f5eeb4f779f SHA256: d3d19b2a5148a220db11881c6912d450b5a88520aa516ff55107f916b923632b Description: multimedia framework from KDE - debugging symbols Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 0e0880a727b0b765c9335d2c157ead91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: phonon4qt5-backend-null Priority: optional Section: sound Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: phonon Version: 4:4.7.1-0ubuntu8 Provides: phonon4qt5-backend Depends: libphonon4qt5-4, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/p/phonon/phonon4qt5-backend-null_4.7.1-0ubuntu8_amd64.deb Size: 5948 MD5sum: 9a375000a82222cd88c097ced4959ac2 SHA1: ebbb4b300a1643675e59f7782515bf425efbd01c SHA256: 75b1ebd4ad10786ffbb99229848b20bfeb37460b9a1575dc4ec040d6440a6270 Description: multimedia framework from KF5 - null back-end (no real back-end) Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: eb8bbd051802ea640014bdfd833cad83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: php-pear Priority: optional Section: php Installed-Size: 2233 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: all Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Replaces: php-xml-util, php4-pear (<< 4:4.4.0-0) Provides: php-xml-util Depends: php5-common (>= 5.5.9+dfsg-1ubuntu4), php5-cli Recommends: gnupg Suggests: php5-dev Conflicts: php-xml-util Filename: pool/main/p/php5/php-pear_5.5.9+dfsg-1ubuntu4_all.deb Size: 266940 MD5sum: cb245c31586ba382a87881f3b9a4bde4 SHA1: b7aa84a7739bc2dbef1c38c8d60422bdb1bc844a SHA256: ee6157875210b4e8fa0a1e1476059b8056a1559a8249f8868c0c9c774b9c516a Description: PEAR - PHP Extension and Application Repository Homepage: http://www.php.net/ Description-md5: fb29e10c43affc8e5f5fa8be5cd7a87b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5 Priority: optional Section: php Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: all Version: 5.5.9+dfsg-1ubuntu4 Depends: libapache2-mod-php5 (>= 5.5.9+dfsg-1ubuntu4) | libapache2-mod-php5filter (>= 5.5.9+dfsg-1ubuntu4) | php5-cgi (>= 5.5.9+dfsg-1ubuntu4) | php5-fpm (>= 5.5.9+dfsg-1ubuntu4), php5-common (>= 5.5.9+dfsg-1ubuntu4) Filename: pool/main/p/php5/php5_5.5.9+dfsg-1ubuntu4_all.deb Size: 1302 MD5sum: 0f902283d943afc32d87f77b965d2eb8 SHA1: f3e5bbfe4b42bebc251060ffebd99d504830e941 SHA256: e044516c0c879c8f51358704e5dd66044b133fb9e57d413c138a52e38753d10f Description: server-side, HTML-embedded scripting language (metapackage) Homepage: http://www.php.net/ Description-md5: 2af39c852a986c9d371da68ad88cdc6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-cgi Priority: optional Section: php Installed-Size: 17733 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libbz2-1.0, libc6 (>= 2.15), libdb5.3, libpcre3, libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.9.0), zlib1g (>= 1:1.1.4), mime-support, php5-common (= 5.5.9+dfsg-1ubuntu4), libmagic1, ucf, tzdata Suggests: php-pear Filename: pool/main/p/php5/php5-cgi_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 4280108 MD5sum: dc08968fb16be2ea17cf111ac4b06ccd SHA1: b3c50a5eeb434779c69a4515ab5839b9ba781cb8 SHA256: 7f81b200df66a48fa4b761f56104afd1cec77139dc16db7d6a999909f65d370d Description: server-side, HTML-embedded scripting language (CGI binary) Homepage: http://www.php.net/ Description-md5: 13d0c5e41630e5f041f0813f50d5d06f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-cli Priority: optional Section: php Installed-Size: 8924 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libbz2-1.0, libc6 (>= 2.15), libdb5.3, libpcre3, libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.9.0), zlib1g (>= 1:1.1.4), mime-support, php5-common (= 5.5.9+dfsg-1ubuntu4), libmagic1, ucf, tzdata, libedit2 (>= 2.11-20080614-4) Recommends: php5-readline Suggests: php-pear Filename: pool/main/p/php5/php5-cli_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 2163226 MD5sum: 383c7e80cf7a46f18f0ebf01af1f21d9 SHA1: a0115e333b5f408b3997144b431cbb20b32a652d SHA256: 91cfdbda65df65c9a4a5bd3478d6e7d3e92c53efcddf3436bbe9bbe27eca409d Description: command-line interpreter for the php5 scripting language Homepage: http://www.php.net/ Description-md5: f8450d3b28653dcf1a4615f3b1d4e347 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-common Priority: optional Section: php Installed-Size: 1117 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Provides: php5-mhash, phpapi-20121212 Depends: libc6 (>= 2.14), sed (>= 4.1.1-1), psmisc (>= 22.15-1~), lsof, ucf, php5-json Suggests: php5-user-cache Conflicts: php5-mhash Breaks: php-apc (<< 4.0.0), php-crypt-gpg (<< 1.3.2), php5-json (<< 1.3.1-1~), php5-suhosin (<< 0.9.34), php5-xcache (<< 3.1~), php5-xdebug (<< 2.2.2) Filename: pool/main/p/php5/php5-common_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 439154 MD5sum: 31941e780d891ede204230bafc73a6f3 SHA1: 74b55ec491a6a86de72d5bf498f5e513b2e5f347 SHA256: 47ff33c2ecb6df8c15803046f0166062c0a4120944f4031d64e50e20b956e173 Description: Common files for packages built from the php5 source Homepage: http://www.php.net/ Description-md5: 949c39604ee9b19ceaf6491574a70811 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-curl Priority: optional Section: php Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.14), libcurl3 (>= 7.18.0), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-curl_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 27244 MD5sum: a3d6f3204afd99fe80c13f6335a07cc9 SHA1: e4e8b0895a36863b91223e128e38ad3f7e8fffe6 SHA256: 71d8f4182429f3346ab8a491fa04793138916a9073d6d59573c74080f132925a Description: CURL module for php5 Homepage: http://www.php.net/ Description-md5: b9650938a7c70d884c950952073ec28e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-dbg Priority: extra Section: debug Installed-Size: 150658 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: php5-common (= 5.5.9+dfsg-1ubuntu4), libapache2-mod-php5 (= 5.5.9+dfsg-1ubuntu4) | libapache2-mod-php5filter (= 5.5.9+dfsg-1ubuntu4) | php5-cgi (= 5.5.9+dfsg-1ubuntu4) | php5-cli (= 5.5.9+dfsg-1ubuntu4) | php5-fpm (= 5.5.9+dfsg-1ubuntu4) | php5-curl (= 5.5.9+dfsg-1ubuntu4) | php5-enchant (= 5.5.9+dfsg-1ubuntu4) | php5-gd (= 5.5.9+dfsg-1ubuntu4) | php5-gmp (= 5.5.9+dfsg-1ubuntu4) | php5-intl (= 5.5.9+dfsg-1ubuntu4) | php5-ldap (= 5.5.9+dfsg-1ubuntu4) | php5-mysql (= 5.5.9+dfsg-1ubuntu4) | php5-odbc (= 5.5.9+dfsg-1ubuntu4) | php5-pgsql (= 5.5.9+dfsg-1ubuntu4) | php5-pspell (= 5.5.9+dfsg-1ubuntu4) | php5-readline (= 5.5.9+dfsg-1ubuntu4) | php5-recode (= 5.5.9+dfsg-1ubuntu4) | php5-snmp (= 5.5.9+dfsg-1ubuntu4) | php5-sqlite (= 5.5.9+dfsg-1ubuntu4) | php5-sybase (= 5.5.9+dfsg-1ubuntu4) | php5-tidy (= 5.5.9+dfsg-1ubuntu4) | php5-xmlrpc (= 5.5.9+dfsg-1ubuntu4) | php5-xsl (= 5.5.9+dfsg-1ubuntu4) Recommends: gdb Filename: pool/main/p/php5/php5-dbg_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 31074886 MD5sum: d49461030d542c6fc2cce539f373c6b8 SHA1: 0bb60af29f76e05eba7fc18c19fca818eaccad91 SHA256: d31b4126f01ae527a329a5b3133c423336e49b9aa6613d47bf3c2a022afec34e Description: Debug symbols for PHP5 Homepage: http://www.php.net/ Description-md5: 9c846a487d56db69555b9a0b6f23316b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: php5-dev Priority: optional Section: php Installed-Size: 3655 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Provides: dh-php5 Depends: autoconf (>= 2.63), automake (>= 1.11), libssl-dev, libtool (>= 2.2), shtool, php5-common (>= 5.5.9+dfsg-1ubuntu4), perl Recommends: pkg-php-tools Conflicts: libtool (<< 2.2) Filename: pool/main/p/php5/php5-dev_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 357148 MD5sum: d8435952fd1c553ccb1fb28eb85cc9a1 SHA1: 2c90938658b85b8954189d4687e8c79696960d11 SHA256: 8022aa35dfd8d8cbfd46583e4b99c5f950188b1a8603720110302833cc820f55 Description: Files for PHP5 module development Homepage: http://www.php.net/ Description-md5: f679c9165e9f710f208143f95427a8c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: php5-gd Priority: optional Section: php Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libgd3 (>= 2.1.0~alpha~), libxpm4, phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-gd_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 27816 MD5sum: 1e0da5110cbd2c750f25ce04eb481f46 SHA1: a5d87fa0e44416c035a2b3bef0ccb28aa3778b7f SHA256: 52b2b926c45a0f5aaf269522ff5ca0d37aefdc36f3703db13478852bdafd7954 Description: GD module for php5 Homepage: http://www.php.net/ Description-md5: 8589696941eddf5936d927aa77051a52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-gmp Priority: optional Section: php Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.2.5), libgmp10, phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-gmp_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 14838 MD5sum: 98ea3b124c3177d3338ad144235dee46 SHA1: 722ab0aaf4b26bce9765b66b3ef988be17365268 SHA256: 8aea23a2c7176992cd741b3ef0980d027d5daa5d5dac8c942f453ca2c374d022 Description: GMP module for php5 Homepage: http://www.php.net/ Description-md5: 098c157a536726435e541b2e7e6b4842 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-json Priority: optional Section: php Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php-json Version: 1.3.2-2build1 Replaces: php5-dev (<< 5.5.0~rc1+dfsg-1~) Depends: libc6 (>= 2.14), phpapi-20121212, ucf, libjson-c2 (>= 0.11-3~) Breaks: php5-common (<< 5.5.0~rc1+dfsg-1~), php5-dev (<< 5.5.0~rc1+dfsg-1~) Filename: pool/main/p/php-json/php5-json_1.3.2-2build1_amd64.deb Size: 34410 MD5sum: 9d2445c670f4148ce72a0edb73f4ede0 SHA1: 515f7dd4c2abc70d15ff9403fc90b511f0add67b SHA256: 3e6543d597f85e12d7620997c4ca053ab4dcbfd570ba40a80dbb14f097fdcd2d Description: JSON module for php5 Homepage: http://pecl.php.net/package/jsonc Description-md5: 97f1a74de9875aa65435fb0690a811f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-ldap Priority: optional Section: php Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libldap-2.4-2 (>= 2.4.7), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-ldap_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 19024 MD5sum: 4dd4167303f248257ba1e5175c5f6c43 SHA1: 9e986f4d6c6ad5c1cb8fc3853a07b77f18944b61 SHA256: 95f01438134870cccc68c3e6d9fb5dff21f59bc1e3be56d7681cea618ca6a670 Description: LDAP module for php5 Homepage: http://www.php.net/ Description-md5: 7a129352cbfe9a2162ee43d4c9040421 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-mysql Priority: optional Section: php Installed-Size: 290 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Replaces: php5-mysqli, php5-mysqlnd Depends: libc6 (>= 2.14), libmysqlclient18 (>= 5.5.24+dfsg-1), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Conflicts: php5-mysqli, php5-mysqlnd Filename: pool/main/p/php5/php5-mysql_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 62710 MD5sum: 8e1c1055e7ac17e5e0bca5c6f1846533 SHA1: 21e4f4bb3fb80e404422c842f31a418782a1584b SHA256: ab564f36c55898d4bf58fa2c7c2a654d6039b09615824e532b34598b8539c386 Description: MySQL module for php5 Homepage: http://www.php.net/ Description-md5: afca88d575e544314d64eead5093c24f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-odbc Priority: optional Section: php Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.14), libodbc1 (>= 2.2.11) | unixodbc (>= 2.2.11), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-odbc_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 30482 MD5sum: dae25d2f9dbaebd5d1cf11a7bda66e01 SHA1: 74fb5cb5180765a059fa50b40edda1a3ab67c745 SHA256: 0bd7c35199a711aacd92753ed05e96041bd5e2df2e918876f4c6ecf6efad3a5f Description: ODBC module for php5 Homepage: http://www.php.net/ Description-md5: bc0c148ebd27735418306b0207388a32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-pgsql Priority: optional Section: php Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.14), libpq5 (>= 9.0~), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-pgsql_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 51706 MD5sum: 5c527b1c071e40a4a00749fd654fb051 SHA1: 1bfb8556c71eba7989cf5be5ad271e3834b91193 SHA256: c1094ab968ef6a91844c8f0c5411b15bc2cfb1271f7b1a29cc2df0e0d6eb4d49 Description: PostgreSQL module for php5 Homepage: http://www.php.net/ Description-md5: 25edec9b992444a2c1634b9545b31326 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-pspell Priority: optional Section: php Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libaspell15 (>= 0.60.7~20110707), libc6 (>= 2.4), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-pspell_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 8070 MD5sum: 726f9f983297cf6c430fb532f625d09d SHA1: 4018c0173ba5a5c8a64f93e2758945ea85ae7ce8 SHA256: 89448e14fed3bed91a2e501ae7a4dd4dda29df453bc1da064104d31a706b4f52 Description: pspell module for php5 Homepage: http://www.php.net/ Description-md5: 920445b3fae73cbd3fc8bdca6c8a5b57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-readline Priority: optional Section: php Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.14), libedit2 (>= 3.1-20130611), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), php5-cli (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-readline_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 12090 MD5sum: caa9f995c07ab08d85a844d2f13acefc SHA1: bc53d2c09bc7e916184062d7819f611a48d209c5 SHA256: d68fb9b10f4685ba62378fe80117a00032fb11a2934442cf014e188381168557 Description: Readline module for php5 Homepage: http://www.php.net/ Description-md5: 0b368ab71f01352c054255e56f42256b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-recode Priority: optional Section: php Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.2.5), librecode0 (>= 3.6), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-recode_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 5426 MD5sum: 8480c56eb910b75576e471d263cf119f SHA1: 8960ec41f39b69822cf4511db6f7601af0cb74ff SHA256: 7c08205df03be21621af5e00e0f60140f54374bfecc2832c2250212a956be82c Description: recode module for php5 Homepage: http://www.php.net/ Description-md5: 3c620a285d39cb761f43554f09fe43bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-snmp Priority: optional Section: php Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libsnmp30 (>= 5.7.2~dfsg), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-snmp_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 19214 MD5sum: 3a1a59822892dc27b1aa4bb5491d04d6 SHA1: 2f34633572b141ca706fa4e662f6575411809670 SHA256: ea8356c31420837bcd13723962b400f7164b116b953d38b4afe3467a809613b9 Description: SNMP module for php5 Homepage: http://www.php.net/ Description-md5: a6138315953520c05a90dc9ae2b17cd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-sqlite Priority: optional Section: php Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libsqlite3-0 (>= 3.7.4), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Breaks: roundcube-sqlite (<< 0.7.1-2) Filename: pool/main/p/php5/php5-sqlite_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 24398 MD5sum: 8876e8ecf3d504a19f5edecf459c51cc SHA1: 141b7f27ddf559fe14f74216579c93020a1f167a SHA256: 7fefbd27e17751411d02285cc467639b9c44abf7be86e0dd20bb682af549bf50 Description: SQLite module for php5 Homepage: http://www.php.net/ Description-md5: 9f069c06a620edaef808bb366117fc0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-tidy Priority: optional Section: php Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.2.5), libtidy-0.99-0, phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-tidy_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 16204 MD5sum: 80484e804fefb04992e85aa161e6ea37 SHA1: 478fd0cbe5ccdc7876f79e70961f0d363c3502af SHA256: 7b112edc589d2601536d4181e60a7c35a9a5e3b41359734faa1a6c9f178099f3 Description: tidy module for php5 Homepage: http://www.php.net/ Description-md5: f8668317f13f19a2ba384b4467355b14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-xmlrpc Priority: optional Section: php Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.14), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-xmlrpc_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 34422 MD5sum: b9ee4800be14edba9a5feabd5939e7f6 SHA1: 0f3ca2ed10000c4415f635bae4d9de902296c200 SHA256: 5b5e6d29efcda4d0f8cb0395f3dfb283a0836984b01199eccb6cdd1b38fe33ff Description: XML-RPC module for php5 Homepage: http://www.php.net/ Description-md5: 680850cbfd91309fdc1f668d316688fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-xsl Priority: optional Section: php Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: amd64 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), phpapi-20121212, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-xsl_5.5.9+dfsg-1ubuntu4_amd64.deb Size: 13784 MD5sum: a84a8cea27dee5149ce2262a29b39c23 SHA1: e282d6caff30595a5991add06c856df9bceb2d92 SHA256: e94f67529c7ae36e5641875c545564a00f2fbf4a8d6f5a1018c993b052000c80 Description: XSL module for php5 Homepage: http://www.php.net/ Description-md5: c1111ccc98d65b3dc65dd1e88f4b7d9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pidgin Priority: optional Section: net Installed-Size: 2225 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: amd64 Version: 1:2.10.9-0ubuntu3 Depends: pidgin-data (>= 1:2.10.9), pidgin-data (<< 1:2.10.9-z), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libdbus-1-3 (>= 1.0.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.35.9), libgstreamer0.10-0 (>= 0.10.0), libgtk2.0-0 (>= 2.24.0), libgtkspell0 (>= 2.0.10), libice6 (>= 1:1.0.0), libpango-1.0-0 (>= 1.18.0), libpurple0 (>= 1:2.8.0), libsm6, libx11-6, libxss1, gconf2 (>= 2.28.1-2), perl-base (>= 5.18.2-2ubuntu1), perlapi-5.18.2 Recommends: gstreamer0.10-plugins-base, gstreamer0.10-plugins-good, pidgin-libnotify Suggests: gnome-panel (>= 2.1) | kdebase-workspace-bin | docker, evolution-data-server (>= 1.10.0), libsqlite3-0 (>= 3.5.9) Filename: pool/main/p/pidgin/pidgin_2.10.9-0ubuntu3_amd64.deb Size: 490560 MD5sum: f8fabb0387464b02ae07f19e01063394 SHA1: fe1c6baab47eb4a52584c6cdf53fc2ed216d305d SHA256: 050a74e28e3cd443932a91fa8ef951826193f9598880bf6519ee5df38997018e Description: graphical multi-protocol instant messaging client for X Homepage: http://www.pidgin.im Description-md5: d64460fa2943420736453e70937bbf30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, lubuntu-desktop Package: pidgin-data Priority: optional Section: net Installed-Size: 3532 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: pidgin Version: 1:2.10.9-0ubuntu3 Replaces: pidgin-facebookchat (<< 1.69-2) Breaks: pidgin-facebookchat (<< 1.69-2) Filename: pool/main/p/pidgin/pidgin-data_2.10.9-0ubuntu3_all.deb Size: 1000366 MD5sum: 22c45f5ba399927b22e35ce5125ba34a SHA1: 3ff6dccd941d50fb385daa03d7cf85bde5eb652a SHA256: d9cdd1bf36b2210d16d2b2e29b1e17600961217b6b250178f16539815f4e01d0 Description: multi-protocol instant messaging client - data files Enhances: finch, libpurple0, pidgin Homepage: http://www.pidgin.im Description-md5: b04891790b198f3fe5e5df56c5acb3ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, lubuntu-desktop Package: pidgin-dbg Priority: extra Section: net Installed-Size: 22269 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: amd64 Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: pidgin (= 1:2.10.9-0ubuntu3) | finch (= 1:2.10.9-0ubuntu3) | libpurple0 (= 1:2.10.9-0ubuntu3), pidgin-data (= 1:2.10.9-0ubuntu3) Filename: pool/main/p/pidgin/pidgin-dbg_2.10.9-0ubuntu3_amd64.deb Size: 5190974 MD5sum: 32fd3ae4f33fdf10706feb9f7db43431 SHA1: afd1e5a68e7facd27567cc5be204a30729bb3392 SHA256: 8345de55d647a31c3cc65912ce78b8f5f23552b0402eddde12b4543558c17b80 Description: Debugging symbols for Pidgin Homepage: http://www.pidgin.im Description-md5: 15d3420aeefc0ac3b2345f312c94f6c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pidgin-dev Priority: optional Section: devel Installed-Size: 15485 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: pidgin (>= 1:2.10.9), pidgin (<< 1:2.10.9+1~), pkg-config, libpurple-dev, libgtk2.0-dev Suggests: doc-base Filename: pool/main/p/pidgin/pidgin-dev_2.10.9-0ubuntu3_all.deb Size: 1033360 MD5sum: 6dbb9768f97d48161be27edb534555d5 SHA1: a1ec3ff77b2c20a44331158f57be4ec9bf1a679c SHA256: e918178ef6c154d263841011c13404b5a82641bfa3c7cd341424bfec96a774fa Description: multi-protocol instant messaging client - development files Homepage: http://www.pidgin.im Description-md5: af83e0e901b4b7dc8524c8bb96a1c5d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pidgin-libnotify Priority: optional Section: net Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Varun Hiremath Architecture: amd64 Version: 0.14-9ubuntu2 Depends: libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.28.0), libgtk2.0-0 (>= 2.8.0), libmessaging-menu0 (>= 12.10.0), libnotify4 (>= 0.7.0), pidgin (<< 1:3.0), pidgin (>= 1:2.10) Filename: pool/main/p/pidgin-libnotify/pidgin-libnotify_0.14-9ubuntu2_amd64.deb Size: 17512 MD5sum: 98737844319c1434e1b83735d729b82e SHA1: 48040bb2e4e7934a25fd9451bf41b91068ffa3be SHA256: 20990dcf8017321a0c437c5078832874ac4b478068e5d695b912e5b74d30429d Description: display notification bubbles in pidgin Homepage: http://gaim-libnotify.sourceforge.net Description-md5: e0fba338759555ace16f4878daf83796 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop Package: pinentry-doc Priority: optional Section: utils Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: all Source: pinentry Version: 0.8.3-1ubuntu1 Suggests: pinentry-curses, pinentry-gtk2, pinentry-qt4 Filename: pool/main/p/pinentry/pinentry-doc_0.8.3-1ubuntu1_all.deb Size: 16510 MD5sum: 5cb40a485f1700e1235c5d37af0d5638 SHA1: ae7902c60e9616784d8b15486a762cd71d62a629 SHA256: db5ca229caf3a2a02deb1520681d88268cbf3917d6032b765bd96ccc8ad893e1 Description: documentation for pinentry packages Homepage: http://www.gnupg.org/aegypten/ Description-md5: 0434c9b9c7b30b4ad8103242894faa4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pinentry-gtk2 Priority: optional Section: utils Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: amd64 Source: pinentry Version: 0.8.3-1ubuntu1 Provides: pinentry, pinentry-x11 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.16.0), libgtk2.0-0 (>= 2.10.0), libncurses5 (>= 5.5-5~), libpango-1.0-0 (>= 1.14.0), libtinfo5 Suggests: pinentry-doc Filename: pool/main/p/pinentry/pinentry-gtk2_0.8.3-1ubuntu1_amd64.deb Size: 44852 MD5sum: 0c674dd163418a7a45208f61967bb2f3 SHA1: 4b7f2890934430e9b01223398b50a12701d91620 SHA256: b7eb2f477d4694e8a67dad35d8e2b58ff75f3a60036a88e7e62c1d2d968e4f14 Description: GTK+-2-based PIN or pass-phrase entry dialog for GnuPG Enhances: gnupg-agent Homepage: http://www.gnupg.org/aegypten/ Description-md5: bcccd74b65983a22e87d3cf912f42450 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pkg-config Priority: optional Section: devel Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: amd64 Version: 0.26-1ubuntu4 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.16.0), libpopt0 (>= 1.14) Filename: pool/main/p/pkg-config/pkg-config_0.26-1ubuntu4_amd64.deb Size: 40882 MD5sum: a029aebc5939d2d23b1690dd2a8773ec SHA1: a28ffa17d21a32cce431d1a249e5781ecd7e2791 SHA256: 6402dfbf3750549f4cdf4a20eca50e8ae01974b310e79cc4dd7663bb14ba878b Description: manage compile and link flags for libraries Multi-Arch: foreign Homepage: http://pkg-config.freedesktop.org Description-md5: 5622d544b680cd37e49d3435959207a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: pkg-config-aarch64-linux-gnu Priority: optional Section: devel Installed-Size: 17 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-arm64-cross (0.4) Version: 4:4.8.2-1 Depends: pkg-config (>= 0.25-1.1ubuntu2) Filename: pool/main/g/gcc-defaults-arm64-cross/pkg-config-aarch64-linux-gnu_4.8.2-1_amd64.deb Size: 1038 MD5sum: f43dde96c7ae0f9dcb1667625c28ba9a SHA1: d9f6c236de9ffea6d01b7f129e07ecb392a00216 SHA256: 1abeeb1bd0d2f266b57534b4fa71eadae3e2ba0364b3b3e5618ff7c2ffeee0f5 Description: manage compile and link flags for libraries for arm64 architecture Description-md5: 9ecb9d50ad023710b605df2c531efeb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pkg-config-arm-linux-gnueabihf Priority: optional Section: devel Installed-Size: 17 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-armhf-cross (1.16) Version: 4:4.8.2-1 Depends: pkg-config (>= 0.25-1.1ubuntu2) Filename: pool/main/g/gcc-defaults-armhf-cross/pkg-config-arm-linux-gnueabihf_4.8.2-1_amd64.deb Size: 1040 MD5sum: ebb146b9a023086f633f8c31c4469cb0 SHA1: 43ac8fa14afdd442d7c05274fce4404bd17f2ea9 SHA256: 30761aaec86121c25c255ccc7fd1ea582f946762a6cdc6fca31d737947a8eaf0 Description: manage compile and link flags for libraries for armhf architecture Description-md5: b6862e5f57b7572bcaeeedccbc245cca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pkg-config-powerpc-linux-gnu Priority: optional Section: devel Installed-Size: 17 Maintainer: Ubuntu Developers Architecture: amd64 Source: gcc-defaults-powerpc-cross (0.7) Version: 4:4.8.2-1 Depends: pkg-config (>= 0.25-1.1ubuntu2) Filename: pool/main/g/gcc-defaults-powerpc-cross/pkg-config-powerpc-linux-gnu_4.8.2-1_amd64.deb Size: 998 MD5sum: eb1176f900dc0503603fe7d2850611c6 SHA1: c1dbe438918722e673df00a718aff1275366ee9c SHA256: cfda8f6371cc6a12a48c642cfb42c9a156f9d45cf333b44b87fc5e4b65676c02 Description: manage compile and link flags for libraries for powerpc architecture Description-md5: 64005097e24ff53b6118ae16e358913c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pkg-config-powerpc64le-linux-gnu Priority: optional Section: devel Installed-Size: 17 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: amd64 Source: gcc-defaults-ppc64el-cross (0.2) Version: 4:4.8.2-1 Depends: pkg-config (>= 0.25-1.1ubuntu2) Filename: pool/main/g/gcc-defaults-ppc64el-cross/pkg-config-powerpc64le-linux-gnu_4.8.2-1_amd64.deb Size: 1048 MD5sum: bfc47f35d34c16ff65eca7ae2e898e7f SHA1: 1bf20d6d2a601690c96d32d3fa1f80eeb19d2fba SHA256: 117aa0cce9a0888a5c44ce6fea069405a2f8b1e601a260e47418848a71b74193 Description: manage compile and link flags for libraries for ppc64el architecture Description-md5: 0637e8bad43ba9b118ab6c60f1963eeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pkg-create-dbgsym Priority: extra Section: devel Installed-Size: 60 Maintainer: Martin Pitt Architecture: all Version: 0.64 Filename: pool/main/p/pkg-create-dbgsym/pkg-create-dbgsym_0.64_all.deb Size: 7564 MD5sum: 830b1382bff6c92e229604945b14dc9d SHA1: 72435802e5e48816b7c948102ad56b54772abd60 SHA256: f99b8df6cceae1bceeea30de277dfc557adecc2b08fec8c24d49e8ae4adadacc Description: automatically build debug symbol ddeb packages Description-md5: af25019d5bc35773bc00f6ee233cea54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pkg-kde-tools Priority: extra Section: devel Installed-Size: 496 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Version: 0.15.12ubuntu1 Depends: perl, libdpkg-perl (>= 1.15.6~), python, docbook-to-man Recommends: dpkg-dev (>= 1.15.6~), libwww-perl, lintian Suggests: debhelper (>= 7.3.16), cdbs Breaks: dpkg-dev (<< 1.15.6~), kdelibs5-dev (<< 4:4.2.2) Filename: pool/main/p/pkg-kde-tools/pkg-kde-tools_0.15.12ubuntu1_all.deb Size: 96454 MD5sum: 72178f8ed836dac5f09dea7ac5fbbc8f SHA1: cddc566ba977a7668b1ae5ea7c7313b9ed413fb7 SHA256: 627de6239243fc458f254af324336633aeebd1f3ce3996e8864dc889e23c4a0a Description: various packaging tools and scripts for KDE Applications Multi-Arch: foreign Description-md5: 44a8f370c27342159273ca4a80210c3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: pkg-php-tools Priority: extra Section: php Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP PEAR Maintainers Architecture: all Version: 1.11 Depends: php5-cli, php5-json, php-pear, debhelper Suggests: dh-make Filename: pool/main/p/pkg-php-tools/pkg-php-tools_1.11_all.deb Size: 21624 MD5sum: b13a025d0943a7bb3c48c29a6b2ef42c SHA1: e14b1679f931ffa5fcaa49d5092ddc44e8f513d4 SHA256: 98d0157e9f312cf5be854b215324d6dba0ce77d61124c8129fe9918ddda47b31 Description: various packaging tools and scripts for PHP packages Description-md5: 52934f8d5207e7453d19358ace64689e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pkgbinarymangler Priority: extra Section: devel Installed-Size: 103 Maintainer: Ubuntu Developers Architecture: all Version: 121 Depends: lockfile-progs, advancecomp, optipng Filename: pool/main/p/pkgbinarymangler/pkgbinarymangler_121_all.deb Size: 28390 MD5sum: 3f3c9fa347efc61562bf6f0234c91940 SHA1: 392eb6af237a83ed672efcc5999376c676ea73c9 SHA256: c4cabe4dd061acbaa4cba14894a55fcf78460edcc87d36912f5e2b626e68427e Description: strips translations and alters maintainers during build Description-md5: 160cf93e8071fea98eda367aac3b734d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: plainbox-provider-checkbox Priority: optional Section: utils Installed-Size: 2100 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: amd64 Version: 0.4-1 Depends: libc6 (>= 2.17), plainbox-provider-resource-generic (>= 0.3), python (>= 2.7), python2.7, python3 Recommends: gir1.2-gst-plugins-base-1.0, gir1.2-gstreamer-1.0, gstreamer1.0-plugins-good, gstreamer1.0-pulseaudio, libgstreamer1.0-0, pm-utils, python3-apt, python3-dbus, python3-gi Suggests: bonnie++, bootchart, curl, ethtool, fwts, git-core, glmark2, glmark2-es2, hdparm, lshw, mesa-utils, nmap, obexd-client, obexftp, render-bench, smartmontools, sox, stress, sysstat, wmctrl Filename: pool/main/p/plainbox-provider-checkbox/plainbox-provider-checkbox_0.4-1_amd64.deb Size: 1071956 MD5sum: 3a0f95cd0438107e6b0c0cd47805a434 SHA1: dd81afce9b03856c1f600de6a29391fc6fa699d7 SHA256: 5e0be0b671cce5a62bde02a569bb13bccb78b627f96c378fc0c5fca8c1847a85 Description: CheckBox provider for PlainBox Homepage: http://launchpad.net/checkbox Description-md5: 41158e93beaa99db739ad8ce3590f2da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: plainbox-provider-resource-generic Priority: optional Section: utils Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: amd64 Version: 0.3-1 Depends: libc6 (>= 2.3.4), libnl-3-200 (>= 3.2.7), libnl-genl-3-200 (>= 3.2.7), python3 (>= 3.2), python3-checkbox-support (>= 0.2) Recommends: dmidecode, dpkg (>= 1.13), lsb-release, wodim Filename: pool/main/p/plainbox-provider-resource-generic/plainbox-provider-resource-generic_0.3-1_amd64.deb Size: 16802 MD5sum: c282c2f57cd1a809b28543f74c67ff17 SHA1: 93213ccfc682ad022c37e341b619f27026282e59 SHA256: 284ed470aedcec2e4b71420b8438ad592b7b4f9ebafb5e84026a27fbd0688c08 Description: CheckBox generic resource jobs provider Homepage: http://launchpad.net/checkbox Description-md5: 60ab19eb35a243b63835cb05edfb4b05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: plainbox-secure-policy Priority: optional Section: utils Installed-Size: 43 Maintainer: Zygmunt Krynicki Architecture: all Source: plainbox Version: 0.5.3-2 Replaces: plainbox-insecure-policy Conflicts: plainbox-insecure-policy Filename: pool/main/p/plainbox/plainbox-secure-policy_0.5.3-2_all.deb Size: 6846 MD5sum: 4904866d93cc5ad3aac14cbb278c5d41 SHA1: b097d68852eb590e70e3f8b996b4a1b28c2adea6 SHA256: c061ba61ff40e539153db2a4e1593db37025e3cd4ed598c680957541173544d2 Description: policykit policy required to use plainbox (secure version) Homepage: http://launchpad.net/checkbox Description-md5: 2095659d86953fc3b64eebbc928f176d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: plymouth Priority: required Section: x11 Installed-Size: 457 Maintainer: Ubuntu Developers Architecture: amd64 Version: 0.8.8-0ubuntu17 Depends: initramfs-tools, libplymouth2 (= 0.8.8-0ubuntu17), mountall (>= 2.0), upstart (>= 1.11-0ubuntu3), udev (>= 166-0ubuntu4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.14), libdbus-1-3 (>= 1.1.1), libdrm2 (>= 2.4.25), libtinfo5 Recommends: plymouth-theme-ubuntu-text | plymouth-theme Conflicts: usplash Breaks: gdm (<< 3.0.4-0ubuntu11), kdm (<< 4:4.7.1-0ubuntu3), lightdm (<< 0.9.7-0ubuntu2), lubuntu-plymouth-theme (<= 0.4), lxdm (<< 0.4.1-0ubuntu2), ubuntustudio-plymouth-theme (<= 0.38), xubuntu-plymouth-theme (<< 10.04.4) Filename: pool/main/p/plymouth/plymouth_0.8.8-0ubuntu17_amd64.deb Size: 98516 MD5sum: f8287e9fb627a833b25c74bfebbd0d98 SHA1: ab71d8a1c0b0f53422f05b49b8bb37f16c601ec0 SHA256: dcb0772e4808d41f6142eb8d8497263ac297e807850eff6b1cbc1a42ea9eabbb Description: graphical boot animation and logger - main package Description-md5: 36dd6c0b2d2e2968eb795981d2b48521 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: plymouth-label Priority: optional Section: x11 Installed-Size: 66 Maintainer: Ubuntu Developers Architecture: amd64 Source: plymouth Version: 0.8.8-0ubuntu17 Replaces: plymouth (<< 0.8.1-4) Depends: libplymouth2 (= 0.8.8-0ubuntu17), plymouth (= 0.8.8-0ubuntu17), fonts-dejavu-core, libc6 (>= 2.2.5), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.12.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0) Filename: pool/main/p/plymouth/plymouth-label_0.8.8-0ubuntu17_amd64.deb Size: 5196 MD5sum: 0b09c6adeaeaa51dd77c72e96f021234 SHA1: b75679c55919668b2adce1e289fce1fdc73dbbc8 SHA256: ab58b877c36b320623dd91dab849a2f3dd2ac9b6b1343439da2029291072c294 Description: graphical boot animation and logger - label control Description-md5: 5811f727790d0292c01a69a6fb2044fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: plymouth-theme-ubuntu-logo Priority: optional Section: x11 Installed-Size: 148 Maintainer: Ubuntu Developers Architecture: amd64 Source: plymouth Version: 0.8.8-0ubuntu17 Replaces: plymouth (<< 0.8.1-1~) Provides: plymouth-theme Depends: plymouth, plymouth-label, ttf-ubuntu-font-family Filename: pool/main/p/plymouth/plymouth-theme-ubuntu-logo_0.8.8-0ubuntu17_amd64.deb Size: 21248 MD5sum: 8173254805b0e8ea62b8479506db7e78 SHA1: 3d7eeafc74477f39562151672b73e9179de972d4 SHA256: 29f745d43d7d79818b334737c5babf12f26d8860a3b75cc95a123d799bf325b3 Description: graphical boot animation and logger - ubuntu-logo theme Description-md5: 8d874d448c1e27d2eef5a053231911ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: plymouth-theme-ubuntu-text Priority: standard Section: x11 Installed-Size: 88 Maintainer: Ubuntu Developers Architecture: amd64 Source: plymouth Version: 0.8.8-0ubuntu17 Replaces: plymouth (<< 0.8.1-1~) Provides: plymouth-theme Depends: plymouth, libc6 (>= 2.2.5), libplymouth2 (>= 0.8.0~-13~ppa1) Filename: pool/main/p/plymouth/plymouth-theme-ubuntu-text_0.8.8-0ubuntu17_amd64.deb Size: 7962 MD5sum: 1d439520db0da3bf6637ddfaefb0a660 SHA1: 5818d2af009c0d1ba12346b7b7923fda938a79c7 SHA256: 28101201fdb2cf7a06255f998ff6ea57130a3b0ca1018b2805b7b1d1d79c54c8 Description: graphical boot animation and logger - ubuntu-logo theme Description-md5: e64a5fbd685fee7e5864ea3986a54164 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: pm-utils Priority: optional Section: admin Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Tim Dijkstra Architecture: all Version: 1.4.1-13 Depends: powermgmt-base Recommends: vbetool, procps, hdparm, ethtool, kbd | console-tools Suggests: cpufrequtils, wireless-tools, radeontool Filename: pool/main/p/pm-utils/pm-utils_1.4.1-13_all.deb Size: 56736 MD5sum: 4e9a62b42106faad79ce67c526f14729 SHA1: b67c6a7f80bc04f7703347c843b6eb628f0f9ff2 SHA256: f38f6ab3bdf1b0ed060d2b4489f263606a5a5965398c350c4b6bc8903dd1cdc4 Description: utilities and scripts for power management Homepage: http://pm-utils.freedesktop.org/ Description-md5: 42424316f88158958d485e1987f2dff0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop Package: po-debconf Priority: optional Section: devel Installed-Size: 443 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas FRANCOIS (Nekral) Architecture: all Version: 1.0.16+nmu2ubuntu1 Depends: perl, gettext (>= 0.16), intltool-debian (>= 0.34.2+20060512) Recommends: libmail-sendmail-perl, libcompress-zlib-perl Suggests: libmail-box-perl Filename: pool/main/p/po-debconf/po-debconf_1.0.16+nmu2ubuntu1_all.deb Size: 210056 MD5sum: a5082456ae633b9efb4bc0f483039fad SHA1: 38187dae1b610b103274cf907ee63bfa75fd664b SHA256: c356db3623d76b472bcc268051abc4c491bb6f0eb6fe2e8c400a696678448e9b Description: tool for managing templates file translations with gettext Multi-Arch: foreign Description-md5: 9b8d8c3d86385b50bed63dfff0c588b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: po4a Priority: optional Section: text Installed-Size: 2680 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas FRANCOIS (Nekral) Architecture: all Version: 0.45-1 Depends: perl, gettext, perl-modules, libsgmls-perl, sp Recommends: libtext-wrapi18n-perl, libterm-readkey-perl, liblocale-gettext-perl, libunicode-linebreak-perl Filename: pool/main/p/po4a/po4a_0.45-1_all.deb Size: 1293774 MD5sum: ab4921df2fee5616ad1654687ddc7f22 SHA1: 1c8fc8b14cc9bcfff40b1f17972f65a9d5a7e6d1 SHA256: 80c50b52dfcbd6dafcb287c44eb5d5da79c4f7e68583047ad780436941f576cc Description: tools for helping translation of documentation Multi-Arch: foreign Homepage: http://po4a.alioth.debian.org/ Description-md5: 18cf64e9c64d03d1bf574903bfa9ca89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: policykit-1 Priority: optional Section: admin Installed-Size: 400 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Version: 0.105-4ubuntu2 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libpam0g (>= 0.99.7.1), libpolkit-agent-1-0 (>= 0.105), libpolkit-backend-1-0 (>= 0.99), libpolkit-gobject-1-0 (>= 0.101), libpam-systemd, dbus Filename: pool/main/p/policykit-1/policykit-1_0.105-4ubuntu2_amd64.deb Size: 51264 MD5sum: fb971fcb84bf2ae800aa42809905f093 SHA1: bb4689049a925925d95c78ba7e216a0049998feb SHA256: f48350002a04643825db577d4b62773cf6d20f88e5c05c22f3f7974abe4d6dca Description: framework for managing administrative policies and privileges Multi-Arch: foreign Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 233f6ea057dc90084c0e92b57d21a7a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: policykit-1-doc Priority: optional Section: doc Installed-Size: 1121 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: policykit-1 Version: 0.105-4ubuntu2 Suggests: devhelp Filename: pool/main/p/policykit-1/policykit-1-doc_0.105-4ubuntu2_all.deb Size: 254186 MD5sum: 1be85c3abd0af2141921cdb39e58a5af SHA1: 0aefdb412161783042d1aad81b4463d1806a8138 SHA256: 72a0bae8854e502a3e746496d8b041e35b6a5b4c3e0f3fa335537316b55f7b5e Description: documentation for PolicyKit-1 Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 4f476c937cdfc4c2d7a4b81404d7a637 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: policykit-1-gnome Priority: optional Section: gnome Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Version: 0.105-1ubuntu4 Depends: libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.26.0), libgtk-3-0 (>= 3.0.0), libpolkit-agent-1-0 (>= 0.99), libpolkit-gobject-1-0 (>= 0.99), policykit-1 Filename: pool/main/p/policykit-1-gnome/policykit-1-gnome_0.105-1ubuntu4_amd64.deb Size: 27800 MD5sum: 485a1b10d3ed3d178142409fc3ce1c6a SHA1: d40b06b0681443449534d2274c411c727de16e95 SHA256: 8d2aaa2f7bdf2de209fda1f85b7c3f0b02fcc2579e30173368307e183609fdb9 Description: GNOME authentication agent for PolicyKit-1 Homepage: http://hal.freedesktop.org/docs/PolicyKit-gnome/ Description-md5: bd3cad3c0320140c209bcfd25249cf38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: policykit-desktop-privileges Priority: optional Section: admin Installed-Size: 48 Maintainer: Ubuntu Core Developers Architecture: all Version: 0.17 Recommends: policykit-1 Breaks: gnome-settings-daemon (<< 3.6.4-0ubuntu8) Filename: pool/main/p/policykit-desktop-privileges/policykit-desktop-privileges_0.17_all.deb Size: 3608 MD5sum: 41392d7fd812b9349ebdcf4b93f09286 SHA1: a13fbc6ab4e1245b39a51a6177447ee2ed62733d SHA256: e1aaa56e77314ca2d6299300209d292b47492ec3e424adbbe2b5d69aadf02c67 Description: run common desktop actions without password Description-md5: 6e3460016ae1ccb86bf669462d180f6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: policyrcd-script-zg2 Priority: extra Section: admin Installed-Size: 64 Maintainer: Marc Haber Architecture: all Version: 0.1-2 Filename: pool/main/p/policyrcd-script-zg2/policyrcd-script-zg2_0.1-2_all.deb Size: 5204 MD5sum: 513d6d9ccb58c81f44c317ab226f0bd5 SHA1: 969acfe094955178d046b731fa71c4bfb4dad635 SHA256: 4cfd7c995defc04251206b0d9d4a358d9afcadb391f21ec53f2c7ac6d1270277 Description: policy-compliant interface from invoke-rc.d to local config files Description-md5: b8bbba679a71741ca48177c13074bc32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pollinate Priority: optional Section: admin Installed-Size: 78 Maintainer: Dustin Kirkland Architecture: all Version: 4.7-0ubuntu1 Replaces: anerd (<< 3.0), anerd-client (<< 3.0) Provides: anerd, anerd-client Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), run-one, curl, adduser Breaks: anerd (<< 3.0), anerd-client (<< 3.0) Filename: pool/main/p/pollinate/pollinate_4.7-0ubuntu1_all.deb Size: 12088 MD5sum: 65a2d6cfb01c714edd0d09c3f81e053b SHA1: f88eb4d54dbbf7e3873e109114abd39fa50b2cf0 SHA256: c94a69f05498e2c326a42feda00618ad2f7e2db1218692b456b20577bd386017 Description: seed the pseudo random number generator in virtual machines Homepage: http://launchpad.net/pollinate Description-md5: 619fe025a36281447928274161eebc64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: cloud-image Package: poppler-data Priority: optional Section: misc Installed-Size: 11849 Maintainer: Ubuntu Developers Original-Maintainer: Hideki Yamane Architecture: all Version: 0.4.6-4 Replaces: cmap-adobe-cns1 (<= 0+20090930-2), cmap-adobe-gb1 (<= 0+20090930-2), cmap-adobe-japan1 (<= 0+20090930-2), cmap-adobe-japan2 (<= 0+20090930-2), cmap-adobe-korea1 (<= 1.20100103-3), gs-cjk-resource (<= 1.20100103-3) Provides: cmap-adobe-cns1, cmap-adobe-gb1, cmap-adobe-japan1, cmap-adobe-japan2, cmap-adobe-korea1, gs-cjk-resource Pre-Depends: dpkg (>= 1.15.6~) Suggests: poppler-utils, ghostscript, fonts-japanese-mincho | fonts-ipafont-mincho, fonts-japanese-gothic | fonts-ipafont-gothic, fonts-arphic-ukai, fonts-arphic-uming, fonts-unfonts-core Breaks: cmap-adobe-cns1 (<= 0+20090930-2), cmap-adobe-gb1 (<= 0+20090930-2), cmap-adobe-japan1 (<= 0+20090930-2), cmap-adobe-japan2 (<= 0+20090930-2), cmap-adobe-korea1 (<= 1.20100103-3), gs-aladdin (<= 6.50-5), gs-cjk-resource (<= 1.20100103-3) Filename: pool/main/p/poppler-data/poppler-data_0.4.6-4_all.deb Size: 1478566 MD5sum: 644278ef2ae747ab61420c71a3319dc7 SHA1: 800a7497f99d5844f7576d761aa799a4de5f217b SHA256: 27ff3d8ec10e0f4cbe2c647df96e84f35b8e425e5359c1b2bc916ab51871d0b7 Description: encoding data for the poppler PDF rendering library Enhances: ghostscript Homepage: http://poppler.freedesktop.org/ Description-md5: c0468b9f159bd70603616f54d37b1bf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: poppler-dbg Priority: extra Section: debug Installed-Size: 7983 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler44 (= 0.24.5-2ubuntu4) Filename: pool/main/p/poppler/poppler-dbg_0.24.5-2ubuntu4_amd64.deb Size: 7362564 MD5sum: 7d6f361fe7654b6f5ca720ba461b73eb SHA1: d3f89983948f32a6a0ab59e8ea6b2cbf6eb8f5ab SHA256: 094c69108f87ccca474c9e9df8cf2c530547c5d23df3a48f8f0bc9a320b85d54 Description: PDF rendering library -- debugging symbols Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: ab22a1743f8f5dc1f00b9db139334fe2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: poppler-utils Priority: optional Section: utils Installed-Size: 484 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: poppler Version: 0.24.5-2ubuntu4 Replaces: pdftohtml, xpdf-reader, xpdf-utils (<< 3.02-2~) Provides: pdftohtml, xpdf-utils Depends: libc6 (>= 2.14), libcairo2 (>= 1.12.0), libfreetype6 (>= 2.2.1), liblcms2-2 (>= 2.2+git20110628), libpoppler44 (>= 0.24.5), libstdc++6 (>= 4.1.1) Conflicts: pdftohtml Breaks: xpdf-utils (<< 3.02-2~) Filename: pool/main/p/poppler/poppler-utils_0.24.5-2ubuntu4_amd64.deb Size: 117980 MD5sum: 84467676e9c60e3d1346db098d6f2642 SHA1: ac0fe9bca4bc83e2e1b283b9b8726464c93e21a6 SHA256: 91ef1f0f55cab997b1d9ad32b88f71b9b2a9e92be4ec89d59f95699aa618499a Description: PDF utilities (based on Poppler) Multi-Arch: foreign Homepage: http://poppler.freedesktop.org/ Description-md5: 5fb5e8ca35857f2fe9d6a276fa940e24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: popularity-contest Priority: standard Section: misc Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Popularity Contest Developers Architecture: all Version: 1.57ubuntu1 Provides: popcon Depends: debconf (>= 0.5) | debconf-2.0, dpkg (>= 1.10) Pre-Depends: debconf (>= 1.5.34) | cdebconf (>= 0.106) Recommends: cron | fcron Suggests: anacron Filename: pool/main/p/popularity-contest/popularity-contest_1.57ubuntu1_all.deb Size: 31514 MD5sum: defbfa7b6c0e8cb560bac0bf5640ad45 SHA1: 3729f60fa04b7b3b7104471e50522a626e48fa26 SHA256: 0d125cffe459ad4962aee0bd1a90e22f75baf7a5286d1a17bae391a3e86e4aae Description: Vote for your favourite packages automatically Homepage: http://popcon.debian.org/ Description-md5: eb9d38f93e5a2c4d39973b8d4a8110dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: portaudio19-dev Priority: optional Section: devel Installed-Size: 603 Maintainer: Ubuntu Developers Original-Maintainer: Debian VoIP Team Architecture: amd64 Source: portaudio19 Version: 19+svn20140130-1 Replaces: libportaudio-19-dev, libportaudio19-dev Depends: libasound2-dev, libjack-dev, libportaudio2 (= 19+svn20140130-1), libportaudiocpp0 (= 19+svn20140130-1) Suggests: portaudio19-doc Conflicts: libportaudio-19-dev, libportaudio-dev, libportaudio19-dev Filename: pool/main/p/portaudio19/portaudio19-dev_19+svn20140130-1_amd64.deb Size: 100972 MD5sum: 9a14ef8fb3d09948e0980b5b2d305abe SHA1: ecc92e62528ba67a359a22ea3a6fbc46c6bf4a20 SHA256: 75f082e1508b4f80eaf132f07d99462ecf177e1e3845ce0027c318730a552ee7 Description: Portable audio I/O - development files Homepage: http://www.portaudio.com/ Description-md5: 040df2bde13015a2b8b419ac2975c974 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: portaudio19-doc Priority: optional Section: doc Installed-Size: 2690 Maintainer: Ubuntu Developers Original-Maintainer: Debian VoIP Team Architecture: all Source: portaudio19 Version: 19+svn20140130-1 Filename: pool/main/p/portaudio19/portaudio19-doc_19+svn20140130-1_all.deb Size: 211234 MD5sum: e13161a477e4b03445d4ebca195bbea4 SHA1: 6017e83d8fbe52e5609a037b4e1b15874bcaf7f2 SHA256: f37ac480db26e44332466d3fa5277b085a835a23ea537cea18fe381b145f44e2 Description: Portable audio I/O - documentation Homepage: http://www.portaudio.com/ Description-md5: 75f3491c545fe83bd2d291a84a8851e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postfix Priority: optional Section: mail Installed-Size: 3524 Maintainer: LaMont Jones Architecture: amd64 Version: 2.11.0-1 Replaces: mail-transport-agent Provides: default-mta, mail-transport-agent Depends: libc6 (>= 2.14), libdb5.3, libsasl2-2 (>= 2.1.24), libsqlite3-0 (>= 3.5.9), libssl1.0.0 (>= 1.0.0), debconf (>= 0.5) | debconf-2.0, netbase, adduser (>= 3.48), dpkg (>= 1.8.3), lsb-base (>= 3.0-6), ssl-cert, cpio Recommends: python Suggests: procmail, postfix-mysql, postfix-pgsql, postfix-ldap, postfix-pcre, sasl2-bin, libsasl2-modules, dovecot-common, resolvconf, postfix-cdb, mail-reader, ufw, postfix-doc Conflicts: libnss-db (<< 2.2-3), mail-transport-agent, smail Filename: pool/main/p/postfix/postfix_2.11.0-1_amd64.deb Size: 1085128 MD5sum: 8bc07fb930f76affe388801578e8c279 SHA1: b485f1e4c59c3f412523b9645c637b370705ff3c SHA256: b286067c7c89c19da1f495c89585c3680d7e9c13f1dd59aa824e3ba3d75852ae Description: High-performance mail transport agent Homepage: http://www.postfix.org Description-md5: 98656fbf1bb45b53edd367037a2e5a90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: postfix-cdb Priority: extra Section: mail Installed-Size: 99 Maintainer: LaMont Jones Architecture: amd64 Source: postfix Version: 2.11.0-1 Depends: libc6 (>= 2.2.5), libcdb1, postfix (= 2.11.0-1) Filename: pool/main/p/postfix/postfix-cdb_2.11.0-1_amd64.deb Size: 11316 MD5sum: d7112ffe05801aac549992dc43eed552 SHA1: 1a7fb26b8ecf13d5bdeb8828bb728fb56ea0e474 SHA256: 78acedd4b55c417613a4840741cfce37ea6b2cb86cafc55a766b8743a011fad4 Description: CDB map support for Postfix Homepage: http://www.postfix.org Description-md5: e2d7cf0a3c214f6a9735e5ad7671b55e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postfix-dev Priority: optional Section: devel Installed-Size: 594 Maintainer: LaMont Jones Architecture: all Source: postfix Version: 2.11.0-1 Depends: postfix (>= 2.11.0-0), postfix (<< 2.11.0.0-0) Filename: pool/main/p/postfix/postfix-dev_2.11.0-1_all.deb Size: 108308 MD5sum: d80490b47381c704d698505fde410fca SHA1: 28f9eb5b4e89babb7678c4a01d7a1fda12518618 SHA256: 899f9968a4909b75733420eabac25909088a4ced0da50ca9e5bd8e1abf10d294 Description: Loadable modules development environment for Postfix Homepage: http://www.postfix.org Description-md5: 3ce15e768569a4a3db928967e04ab817 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postfix-doc Priority: optional Section: doc Installed-Size: 3470 Maintainer: LaMont Jones Architecture: all Source: postfix Version: 2.11.0-1 Suggests: postfix Filename: pool/main/p/postfix/postfix-doc_2.11.0-1_all.deb Size: 817666 MD5sum: 83552d4282292afdf25248eff22fd5cb SHA1: 67da55735cff042335073ee4feed2ebab80a51b9 SHA256: b8bce787083ddd9676e0bf6f62463111355c25889f5277020fe3d68b46589e54 Description: Documentation for Postfix Homepage: http://www.postfix.org Description-md5: b22cfd4a338576617daa68c3d8c6c80a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postfix-ldap Priority: optional Section: mail Installed-Size: 115 Maintainer: LaMont Jones Architecture: amd64 Source: postfix Version: 2.11.0-1 Depends: libc6 (>= 2.11), libldap-2.4-2 (>= 2.4.7), postfix (= 2.11.0-1) Filename: pool/main/p/postfix/postfix-ldap_2.11.0-1_amd64.deb Size: 18378 MD5sum: 3794fd1237d8af47a63a60d4bc948dfa SHA1: 82bc3f9d1a1051bf54715695c2f166a5449d4d65 SHA256: 9552c7254e1b750dc78e54aeda5fe2c243f768b051f071ac17fdcd859bcedaa6 Description: LDAP map support for Postfix Homepage: http://www.postfix.org Description-md5: 6275ddb745f2250c57cc85063f27fcc4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postfix-mysql Priority: optional Section: mail Installed-Size: 103 Maintainer: LaMont Jones Architecture: amd64 Source: postfix Version: 2.11.0-1 Depends: libc6 (>= 2.2.5), libmysqlclient18 (>= 5.5.13-1), postfix (= 2.11.0-1) Filename: pool/main/p/postfix/postfix-mysql_2.11.0-1_amd64.deb Size: 13032 MD5sum: 6026138db19b6bb3094827f4f698569e SHA1: d689df02cdf178731cae26a5ce0ee68b113fe060 SHA256: c5146411b2cef8caedf082d7df441a779a39d165ede75fcf0fcfb80cd8493472 Description: MySQL map support for Postfix Homepage: http://www.postfix.org Description-md5: 28696ca88c5183ab5144174d86f2c973 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postfix-pcre Priority: optional Section: mail Installed-Size: 103 Maintainer: LaMont Jones Architecture: amd64 Source: postfix Version: 2.11.0-1 Depends: libc6 (>= 2.3), libpcre3, postfix (= 2.11.0-1) Filename: pool/main/p/postfix/postfix-pcre_2.11.0-1_amd64.deb Size: 13122 MD5sum: a584017fa7b1a080bb9b41434ad63bde SHA1: d9eb66244e306ef322bfeeebbe5ebfc85e2c7be1 SHA256: a32691e1a0ecfca4a2d880bcc1368946701aa8ba4a77321dd178cdbb369647b7 Description: PCRE map support for Postfix Homepage: http://www.postfix.org Description-md5: 303555b1e86bf9cee974968dfd625a29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postfix-pgsql Priority: optional Section: mail Installed-Size: 103 Maintainer: LaMont Jones Architecture: amd64 Source: postfix Version: 2.11.0-1 Depends: libc6 (>= 2.2.5), libpq5, postfix (= 2.11.0-1) Filename: pool/main/p/postfix/postfix-pgsql_2.11.0-1_amd64.deb Size: 12858 MD5sum: 2702877a28673551dd4e349daa17e5d9 SHA1: eb665a5486af8968ca92be13d40d31152a23d447 SHA256: fa518039b4e207cb6008bb95857011d0aa3d2c8a67006958ddc0c35a7fc9cec7 Description: PostgreSQL map support for Postfix Homepage: http://www.postfix.org Description-md5: 546205f4e5c0c34da8348a5a0f8dfa40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postgresql Priority: optional Section: database Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-common (154) Version: 9.3+154 Depends: postgresql-9.3 Filename: pool/main/p/postgresql-common/postgresql_9.3+154_all.deb Size: 5088 MD5sum: 029b8a2af293670f1fa7ce10443b6f37 SHA1: cfe4345b4c1babf8f892bba02311520586f13fad SHA256: 6186663b8118cb3ada88a421654091f8c5813317545005e2066068b9eb98806c Description: object-relational SQL database (supported version) Description-md5: bdff2d6e5b2a1dd00e72b3ed8729d9ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-9.3 Priority: optional Section: database Installed-Size: 11324 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Version: 9.3.4-1 Depends: libc6 (>= 2.16), libcomerr2 (>= 1.01), libgssapi-krb5-2 (>= 1.8+dfsg), libkrb5-3 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7), libpam0g (>= 0.99.7.1), libpq5 (>= 9.1~), libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.7.4), postgresql-client-9.3, postgresql-common (>= 142~), tzdata, ssl-cert, locales Suggests: oidentd | ident-server, locales-all Filename: pool/main/p/postgresql-9.3/postgresql-9.3_9.3.4-1_amd64.deb Size: 2658044 MD5sum: c5511dca8b2b2bffafcb299091154e0f SHA1: 233288243b776f027eafa5648b449c10d3f73a78 SHA256: 0da0efa9c257fd05774c8b53fd25cea2140c421d44e9baf5b391754669bc9a3a Description: object-relational SQL database, version 9.3 server Homepage: http://www.postgresql.org/ Description-md5: deabe9d549f40ded88f4bd0d96713011 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-9.3-dbg Priority: extra Section: debug Installed-Size: 33167 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Replaces: postgresql-9.1-dbg Provides: postgresql-dbg Depends: postgresql-9.3 (= 9.3.4-1) Conflicts: postgresql-9.1-dbg, postgresql-dbg Filename: pool/main/p/postgresql-9.3/postgresql-9.3-dbg_9.3.4-1_amd64.deb Size: 7292392 MD5sum: 3e455e74dfb42a4feaad31201cf4a2ad SHA1: 7ca7173512582ae531cec01a1ae89e676de94a80 SHA256: bfb40f533c94cb0cd182d66d2b5e80f3619503534ef150241dc62eec17ff2025 Description: debug symbols for postgresql-9.3 Homepage: http://www.postgresql.org/ Description-md5: c7ffcf2834092439d79521518e56b8d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postgresql-client Priority: optional Section: database Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-common (154) Version: 9.3+154 Depends: postgresql-client-9.3 Filename: pool/main/p/postgresql-common/postgresql-client_9.3+154_all.deb Size: 5098 MD5sum: 81d6b9a83e8ec62842c63b1815fa3d07 SHA1: 6fc9aa35628caec24f71699f42e8397f7c0f9b2f SHA256: 3d84cbd194211f440a719e9c90e7e1124a42d2e131ed3d6651a363dadc716959 Description: front-end programs for PostgreSQL (supported version) Description-md5: d46431edbfde0d6360f2c20aed4a288c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-client-9.3 Priority: optional Section: database Installed-Size: 2720 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Provides: postgresql-client Depends: libc6 (>= 2.15), libedit2 (>= 2.11-20080614), libpq5 (>= 9.3.4), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4), postgresql-client-common (>= 142~) Suggests: postgresql-9.3, postgresql-doc-9.3 Filename: pool/main/p/postgresql-9.3/postgresql-client-9.3_9.3.4-1_amd64.deb Size: 781270 MD5sum: eaaac5417f1318ad6694f360b5c073c1 SHA1: 08e5c15453d005a1a780c1d8bee2fd53260fee94 SHA256: 7c78fadc7561bd2783a0208d78311faf6021500a9d4d05b6335c54936620623e Description: front-end programs for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: 357e9ca1f432bb1f1b37a82d8c02a64f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-client-common Priority: optional Section: misc Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-common Version: 154 Depends: netbase Recommends: lsb-release, libreadline6 Filename: pool/main/p/postgresql-common/postgresql-client-common_154_all.deb Size: 25422 MD5sum: 7d5470895bb2c848d08e540fb350e5a7 SHA1: 33f6b984a63681d30d358fcb3055a49f78477aa7 SHA256: 84963e9e2d9a7a38a23741dac9f65200c7a85b1d47c782fb3d2765549c6a115d Description: manager for multiple PostgreSQL client versions Description-md5: d5f4a87e9a06590d824a9f706fa1a755 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-common Priority: optional Section: misc Installed-Size: 501 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Version: 154 Depends: postgresql-client-common (>= 154), procps, adduser, debconf (>= 0.5.00) | debconf-2.0, lsb-base (>= 3.0-3), ssl-cert (>= 1.0.11), ucf Recommends: logrotate Conflicts: postgresql-7.4, postgresql-8.0 Breaks: postgresql-9.1 (<< 9.1.1-3~) Filename: pool/main/p/postgresql-common/postgresql-common_154_all.deb Size: 102998 MD5sum: fbd90eb111566da6db61c4d765f2cb69 SHA1: 12b53993404cbf34bc94d5214c3801133194d032 SHA256: 09eebc757a2408b687111a485cac6dcd4032e54f339d1c2226d404fbc3614a92 Description: PostgreSQL database-cluster manager Description-md5: 2ff706688fd9595185205e23f67362dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-contrib Priority: optional Section: database Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-common (154) Version: 9.3+154 Depends: postgresql-contrib-9.3 Filename: pool/main/p/postgresql-common/postgresql-contrib_9.3+154_all.deb Size: 5106 MD5sum: 0a593f6fb47684244a4f9b8f57762e9e SHA1: db7ce7ebc038f9285900d3d839eb9c13f2df1159 SHA256: 1a225b08195d5cddd6251ac6d1797c13ebffcbf534efa8443e79d5e87afb1057 Description: additional facilities for PostgreSQL (supported version) Description-md5: 1548dd7748148521c6b13b8290f451b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-contrib-9.3 Priority: optional Section: database Installed-Size: 1784 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Depends: postgresql-9.3 (= 9.3.4-1), libc6 (>= 2.15), libossp-uuid16, libpq5 (>= 9.2~beta3), libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), zlib1g (>= 1:1.1.4) Suggests: libdbd-pg-perl Filename: pool/main/p/postgresql-9.3/postgresql-contrib-9.3_9.3.4-1_amd64.deb Size: 400356 MD5sum: b680db32101ee01d6241be03f94ab4e6 SHA1: 131e0e4c7a3f1ebfcb7fdd738f210c4ed084c79c SHA256: 1c33dbd8fa0f49fcd3e628b537ba7d217955aff8d84d5d5ccf1b8e35d599385a Description: additional facilities for PostgreSQL Homepage: http://www.postgresql.org/ Description-md5: d1debd6819af16af99667f0a2422063b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-doc Priority: optional Section: doc Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-common (154) Version: 9.3+154 Depends: postgresql-doc-9.3 Filename: pool/main/p/postgresql-common/postgresql-doc_9.3+154_all.deb Size: 5094 MD5sum: 0552e3ebe7a2a8b10b795fd5cff9b37d SHA1: aa6dd0499523817a105112f02010c33eda17a961 SHA256: f840f3953d448c1ebbf4144c841743ff452e653a69aea6fbcca358997e865859 Description: documentation for the PostgreSQL database management system Description-md5: 065f6c25df2011c353e26faea6c8ad7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-doc-9.3 Priority: optional Section: doc Installed-Size: 12822 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-9.3 Version: 9.3.4-1 Filename: pool/main/p/postgresql-9.3/postgresql-doc-9.3_9.3.4-1_all.deb Size: 1743866 MD5sum: 871f6d11672f93bb400952b9a8222c73 SHA1: 0d6f80de8fb8c1042a20d6672288ffa361d8a2ff SHA256: 9fc5f718d1976ebcb1893488dd08e4bc33714bc84ebe924338dd739c2b643ea2 Description: documentation for the PostgreSQL database management system Homepage: http://www.postgresql.org/ Description-md5: 3b65aa40e5bc5c0818c5083f824d87a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-plperl-9.3 Priority: optional Section: database Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Provides: postgresql-plperl Depends: libc6 (>= 2.4), libperl5.18 (>= 5.18.2), postgresql-9.3 (= 9.3.4-1), perl Filename: pool/main/p/postgresql-9.3/postgresql-plperl-9.3_9.3.4-1_amd64.deb Size: 38134 MD5sum: f961e2db48754ee610fa716741ab92b9 SHA1: c68252fc722c81426c0ce4c897f788c4c273ab7b SHA256: e45b72b49892db93b1a428335e44c8bcfee3b339e5ece4c7a0c4b254611cdbb3 Description: PL/Perl procedural language for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: 89920a39bb2853f036a843b65578f187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postgresql-plpython-9.3 Priority: optional Section: database Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Provides: postgresql-plpython Depends: libc6 (>= 2.14), libpython2.7 (>= 2.7), postgresql-9.3 (= 9.3.4-1) Filename: pool/main/p/postgresql-9.3/postgresql-plpython-9.3_9.3.4-1_amd64.deb Size: 39504 MD5sum: 1ecbf01adae0da42d790fffd1c77c6cf SHA1: d144730e632adafee8f16cbc39960760d9cec825 SHA256: 980b017669710314877c9ca46b8c3973a49a8f38b4fa0ca1af53d8498f7b4180 Description: PL/Python procedural language for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: 6c30e5745966ed6016f738bc3f720e21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postgresql-plpython3-9.3 Priority: optional Section: database Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Replaces: postgresql-plpython-9.3 (<< 9.3.4-1) Provides: postgresql-plpython3 Depends: libc6 (>= 2.14), libpython3.4 (>= 3.4~b1), postgresql-9.3 (= 9.3.4-1) Breaks: postgresql-plpython-9.3 (<< 9.3.4-1) Filename: pool/main/p/postgresql-9.3/postgresql-plpython3-9.3_9.3.4-1_amd64.deb Size: 38962 MD5sum: 9e09b34c578e75cc7388e3d077a3c6fa SHA1: 85ef36cb7b5b78aeedb24df303e5b0ac7698c9da SHA256: 8ecdeb6db3c5cba8a4e5faf756392487077ada0d6cb21ebd1b7709d8b452096c Description: PL/Python 3 procedural language for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: f858aa365d8a4f77744520970cee2fed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postgresql-pltcl-9.3 Priority: optional Section: database Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Provides: postgresql-pltcl Depends: libc6 (>= 2.4), libtcl8.6 (>= 8.6.0), postgresql-9.3 (= 9.3.4-1) Filename: pool/main/p/postgresql-9.3/postgresql-pltcl-9.3_9.3.4-1_amd64.deb Size: 21738 MD5sum: de9e162bdd0e862e6d43297f5e9605b5 SHA1: 01e0b295b4f74cc5d521e0c6fcc37cc2016f6ca6 SHA256: 4e65fd2bd7dcbac5bb75432f8c8f329be6bab5939a920734a97d4ab132e772b3 Description: PL/Tcl procedural language for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: d84ed439f907d790c156a9bb98622b61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postgresql-server-dev-9.3 Priority: optional Section: libdevel Installed-Size: 3261 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: amd64 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.14), libpq-dev (>= 9.3~), postgresql-common (>= 142~) Filename: pool/main/p/postgresql-9.3/postgresql-server-dev-9.3_9.3.4-1_amd64.deb Size: 597418 MD5sum: 8f8e3aa062d9861eea0356bc322f4c1d SHA1: 464cd0b72dddb9ade7e12c08ea66a62f94537679 SHA256: a173176eba86ed60d7dc1a06dc95d4e5fe8902aa2d56d006eea9d456a075ec4f Description: development files for PostgreSQL 9.3 server-side programming Homepage: http://www.postgresql.org/ Description-md5: 897794bc08c41a167dd39986ed5e38e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: powermgmt-base Priority: standard Section: utils Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Chris Hanson Architecture: amd64 Version: 1.31build1 Replaces: apmd (<= 3.0.2-1.17) Depends: udev | makedev, libc6 (>= 2.3.4), module-init-tools Filename: pool/main/p/powermgmt-base/powermgmt-base_1.31build1_amd64.deb Size: 9854 MD5sum: deefc4a021c9ab6ffbb4aa2112bad350 SHA1: 1fce13201b5229f467d2e454a1bdee73b350218a SHA256: 26c95e1bcc5f08b313314f5c365ba7667b48750301e2e5ae00701afa61a0ab2f Description: Common utils and configs for power management Description-md5: 87cc730523622998eb207301a047fc86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: powernap Priority: optional Section: admin Installed-Size: 139 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Version: 2.18-0ubuntu2 Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any, debconf (>= 0.5) | debconf-2.0, pm-utils, powernap-common (= 2.18-0ubuntu2) Recommends: ethtool Filename: pool/main/p/powernap/powernap_2.18-0ubuntu2_all.deb Size: 18234 MD5sum: b41d40d11aa25d2c30adc89578ba8a2b SHA1: 35bf2ff3fdc2371f1c57f5fb6b2b0f3af3691f83 SHA256: f7da1c74f0f5414dc117898fe360611474af1252a470de3e3dbee7a34ad6e375 Description: reduce the power consumption of a system when inactive Enhances: powerwake Homepage: http://launchpad.net/powernap Description-md5: ba417044633f8e9a064bd246de1d1ba9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powernap-common Priority: optional Section: admin Installed-Size: 143 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Source: powernap Version: 2.18-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), debconf (>= 0.5) | debconf-2.0, anacron Filename: pool/main/p/powernap/powernap-common_2.18-0ubuntu2_all.deb Size: 14008 MD5sum: 8894866822ca04542088b759c6c48a18 SHA1: aa042cf3987b0e636f55ca2db96cbfaabc212677 SHA256: 1ddc39f826436331546e7b0d97f7e7e19acc5beca200d97e7199b57f28186660 Description: common library files required by powernap Homepage: http://launchpad.net/powernap Description-md5: 30c183a05dc65517d55b193a08e0e5dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powernap-server Priority: optional Section: admin Installed-Size: 32 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Source: powernap Version: 2.18-0ubuntu2 Depends: powerwaked, powerwake Filename: pool/main/p/powernap/powernap-server_2.18-0ubuntu2_all.deb Size: 1646 MD5sum: 93ca3c9ca4e8d64b996a05eb06df960a SHA1: 28f95c38590e98aced84f7381b93ea3631aa7576 SHA256: c87b0466f803156be75865448ae37316c33dae15f725ce7e005d840dc9163a99 Description: PowerNap Power Services suite Homepage: http://launchpad.net/powernap Description-md5: 7111d4de4d475f6a34b4eb09ac99e9d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powertop Priority: extra Section: utils Installed-Size: 492 Maintainer: Ubuntu Developers Original-Maintainer: Jose Luis Rivas Architecture: amd64 Version: 2.5-1ubuntu1 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libncursesw5 (>= 5.6+20070908), libnl-3-200 (>= 3.2.16), libnl-genl-3-200 (>= 3.2.16), libpci3 (>= 1:3.1.9-2), libstdc++6 (>= 4.4.0), libtinfo5 Suggests: cpufrequtils, laptop-mode-tools Filename: pool/main/p/powertop/powertop_2.5-1ubuntu1_amd64.deb Size: 143788 MD5sum: 2fe0b04d45aa8d1906cca64bef89b614 SHA1: e3f79301fd8a494ce42026b33da31882d8758c24 SHA256: 8e11101591343723a2900b5df06c25e3c39f2facae121ed337652addfc3eb187 Description: diagnose issues with power consumption and management Homepage: https://01.org/powertop/ Description-md5: c3d78e3af7f012dfbca99d03c1d5651c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powertop-dbg Priority: extra Section: debug Installed-Size: 1606 Maintainer: Ubuntu Developers Original-Maintainer: Jose Luis Rivas Architecture: amd64 Source: powertop Version: 2.5-1ubuntu1 Depends: powertop (= 2.5-1ubuntu1) Filename: pool/main/p/powertop/powertop-dbg_2.5-1ubuntu1_amd64.deb Size: 1517680 MD5sum: a4c9977fce4b7bfee431358754ae5063 SHA1: 340c4d037d29150f606a9b3b8ef5ad4ed7709be5 SHA256: f3cfad6645e434e8882c3e502ea07f0bd45223561890e04609db25e651a4d7eb Description: debugging symbols for powertop Homepage: https://01.org/powertop/ Description-md5: dbabe6539aef2478324da085541f8b98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: powerwake Priority: optional Section: admin Installed-Size: 73 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Source: powernap Version: 2.18-0ubuntu2 Depends: python:any, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/p/powernap/powerwake_2.18-0ubuntu2_all.deb Size: 7924 MD5sum: 92fb83516ebcad06045dbd0920bf6d3a SHA1: f6319f5b53850d62acbec8f61ad697b2bdad891c SHA256: 10923cdad8afddf699d2546e0756dcdadb012997926cc829d88f8e64c94e7cfe Description: remotely wake a napping system Enhances: powernap Homepage: http://launchpad.net/powernap Description-md5: d91ea8499351657f8944ffdc79ca651c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powerwake-common Priority: optional Section: admin Installed-Size: 74 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Source: powernap Version: 2.18-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), debconf (>= 0.5) | debconf-2.0 Suggests: python-scapy Filename: pool/main/p/powernap/powerwake-common_2.18-0ubuntu2_all.deb Size: 6486 MD5sum: c6083d124376d0825bdd78d74d87dcd7 SHA1: 7daded85c3a2d3929879923c722095f560dfcc51 SHA256: e361cfe4c5a88a6b73c1e96f5962d8782f6f1aeb27ad696886fd13e767626508 Description: common library files required by powerwake Homepage: http://launchpad.net/powernap Description-md5: c2e9387de5be23b85193ce3ca71110ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powerwaked Priority: optional Section: admin Installed-Size: 66 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Source: powernap Version: 2.18-0ubuntu2 Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any, debconf (>= 0.5) | debconf-2.0, powerwake-common (= 2.18-0ubuntu2) Filename: pool/main/p/powernap/powerwaked_2.18-0ubuntu2_all.deb Size: 5790 MD5sum: 243061d10f6e15b9a8ed3480eef80ab9 SHA1: b5d0fc4e077a91044757cf3dd54f86edd396bf55 SHA256: 7e59d239e68f4ea98e94c66b989459294a6437bcf441cfd53d8877bdb71b8ed0 Description: remotely wake a napping system - Server Daemon Enhances: powerwake Homepage: http://launchpad.net/powernap Description-md5: f4cdb501bb283c1f478c8420faa53bad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ppl-dev Priority: optional Section: devel Installed-Size: 306 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: amd64 Source: ppl Version: 1:1.1-1ubuntu1 Replaces: libppl0.11-dev Depends: libppl-dev (= 1:1.1-1ubuntu1), libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libgmp10, libppl13, libstdc++6 (>= 4.4.0) Filename: pool/main/p/ppl/ppl-dev_1.1-1ubuntu1_amd64.deb Size: 33164 MD5sum: a5f8942afe2a009ad5bde5637178d2e8 SHA1: 611c2313f2f16cf81981c5086c3b33fb0dd48208 SHA256: 17ecfff77b6a6e6661aed19e749e8698b0a54110ac3513dbbb17100cda3af86f Description: Parma Polyhedra Library (development binaries) Homepage: http://www.cs.unipr.it/ppl/ Description-md5: c3e473b9c4ef451e4f19dc97f6d27453 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ppp Priority: standard Section: admin Installed-Size: 920 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: amd64 Version: 2.4.5-5.1ubuntu2 Depends: libc6 (>= 2.15), libpam0g (>= 0.99.7.1), libpcap0.8 (>= 0.9.8), libssl1.0.0 (>= 1.0.0), libpam-modules, libpam-runtime, procps Breaks: network-manager (<= 0.8.0.999-1), network-manager-pptp (<= 0.8.0.999-1), pppdcapiplugin (<= 1:3.9.20060704+dfsg.1-1) Filename: pool/main/p/ppp/ppp_2.4.5-5.1ubuntu2_amd64.deb Size: 370698 MD5sum: aa9c2d894cecca4daed8e4796d851799 SHA1: 414d99b6ec6e98581ccd6686d69ae3401ba35b51 SHA256: 28e80b4b1b857104a979ae96262ce14c03ed6055ce9a97c2e4fe9e1be8975c97 Description: Point-to-Point Protocol (PPP) - daemon Description-md5: 30c8068bb5c8dc59b8b1cfb452d03c8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: ppp-dev Priority: extra Section: devel Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: all Source: ppp Version: 2.4.5-5.1ubuntu2 Filename: pool/main/p/ppp/ppp-dev_2.4.5-5.1ubuntu2_all.deb Size: 36942 MD5sum: 3c94f6a8407ab027222a0b68c069ae1d SHA1: e6652f7f0892b0bee39a73544b4f3bcd2b35626e SHA256: 5f92599c1edf5443561d2ac7d4a4df91f10bafe51f1350f992784800ad622092 Description: Point-to-Point Protocol (PPP) - development files Description-md5: 3d0de5ac1d756728fffd7f9a37363c84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pppconfig Priority: standard Section: admin Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: John Hasler Architecture: all Version: 2.3.19ubuntu1 Replaces: manpages-fr (<< 2.39.1-5) Depends: ppp (>= 2.3.7), whiptail | dialog, lsb-base (>= 1.3-9ubuntu3) Suggests: resolvconf Conflicts: nscd (<< 2.3.2.ds1-14) Filename: pool/main/p/pppconfig/pppconfig_2.3.19ubuntu1_all.deb Size: 34504 MD5sum: 9db88b2815bdfed775af4a3f021df881 SHA1: 88d2c3fe0c46e5c53bbd9502143677a77f1f10ea SHA256: 48869becff286b3c3191c0ac2b606846089e04b73798c4abda5db790d57171aa Description: A text menu based utility for configuring ppp Description-md5: 4cbdc0cb1a6549c394d48facd70dd1cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: pppoeconf Priority: standard Section: net Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Gregory Colpart Architecture: all Version: 1.20ubuntu1 Depends: whiptail-provider | whiptail, ppp (>= 2.4.2+20040428-2) | pppoe (>= 3.0), ppp (>= 2.4.1.uus2-4), gettext-base (>= 0.13), sed (>= 3.95) Recommends: locales Suggests: xdialog Filename: pool/main/p/pppoeconf/pppoeconf_1.20ubuntu1_all.deb Size: 17052 MD5sum: c5f750ea0db097f7d9d7c48f17a8959e SHA1: 707bfbfa318863d7f6a51e0d592d6a06c8ed04d5 SHA256: 57079e840f05bcc2c7643b9c603dd35ab6bdc52fb41e7f401471bf819c58588e Description: configures PPPoE/ADSL connections Description-md5: b2f6333ac88113a7e9b6a150f4f3dc49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: pptp-linux Priority: optional Section: net Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: Ola Lundqvist Architecture: amd64 Version: 1.7.2-7 Depends: libc6 (>= 2.14), ppp (>= 2.4.2), binutils Filename: pool/main/p/pptp-linux/pptp-linux_1.7.2-7_amd64.deb Size: 48954 MD5sum: 3ac5ad997c84a960bcc96351a9445dfe SHA1: a26007fb6c515fab9d5bc581ba01d951f48c39ec SHA256: 4dee3b27911d587339b5f2ae7ed82fb1131e0bf73f317d0712c2dd8e63ab10f6 Description: Point-to-Point Tunneling Protocol (PPTP) Client Description-md5: 65124004c20e4d3ee6eb25d92503d302 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pptpd Priority: optional Section: net Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Christoph Biedl Architecture: amd64 Version: 1.3.4+27+gddb30f8-1ubuntu1 Depends: libc6 (>= 2.15), libwrap0 (>= 7.6-4~), bcrelay, netbase, ppp Filename: pool/main/p/pptpd/pptpd_1.3.4+27+gddb30f8-1ubuntu1_amd64.deb Size: 91060 MD5sum: 00b11ec525582baff1577b5cf9141a68 SHA1: 8d8bc924c8c260b5e632d6ae0a15506804110824 SHA256: c8a9c201735d3f9766a54598729c0865193bc48c4e7d146b70978ea5a4aaa07b Description: PoPToP Point to Point Tunneling Server Homepage: http://poptop.sourceforge.net/dox/ Description-md5: cba9f912bc69b66a516ded3191884bdb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: preview-latex-style Priority: optional Section: tex Installed-Size: 291 Maintainer: Ubuntu Developers Original-Maintainer: Davide G. M. Salvetti Architecture: all Source: auctex Version: 11.87-1ubuntu2 Depends: dpkg (>= 1.14.18), tex-common (>= 3) Breaks: preview-latex (<= 0.7.3-2) Filename: pool/main/a/auctex/preview-latex-style_11.87-1ubuntu2_all.deb Size: 186854 MD5sum: 8a32b535baae5499b008036788d89505 SHA1: 91880eff0014a5a901b7749e5446a59d6757276f SHA256: 13f772b19c52e3b632fddf0761dfd6e54b8912f9ea88190d5593230a174b863e Description: extraction of elements from LaTeX documents as graphics Homepage: http://www.gnu.org/software/auctex/preview-latex.html Description-md5: 8bd8f57146b8d6a222aa6fa0bdddcde3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: printer-driver-c2esp Priority: optional Section: text Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: c2esp Version: 27~rc1-1 Replaces: c2esp (<< 19-2~) Depends: libc6 (>= 2.4), libcups2 (>= 1.4.0), libcupsfilters1 (>= 1.0~b1), libcupsimage2 (>= 1.4.0), libjbig0 (>= 2.0), zlib1g (>= 1:1.1.4) Recommends: cups-ppdc Suggests: psutils Breaks: c2esp (<< 19-2~), cups (<< 1.5.0-2~) Filename: pool/main/c/c2esp/printer-driver-c2esp_27~rc1-1_amd64.deb Size: 32564 MD5sum: 98c43e5c1bd905fab2b0a165194dd4aa SHA1: bb5886f0aa3138e90d9b8ec936d6b055062e9346 SHA256: efa0bbbf304937e9da85e5ac4287e97ee5853e977145e1653c2a7c5583539a65 Description: printer driver for Kodak ESP AiO color inkjet Series Homepage: http://cupsdriverkodak.sf.net/ Description-md5: 8672a19e84a700433951fae551d56708 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-foo2zjs Priority: optional Section: text Installed-Size: 828 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: foo2zjs Version: 20140209dfsg0-1ubuntu1 Replaces: foo2zjs (<< 20111023dfsg0-1~) Depends: libc6 (>= 2.14), libcups2 (>= 1.4.0), libjbig0 (>= 2.0), mscompress, foomatic-filters, dc, printer-driver-foo2zjs-common (>= 20140209dfsg0-1ubuntu1) Recommends: wget, unzip, cups, cups-client Suggests: psutils, hannah-foo2zjs Breaks: cups (<< 1.5.0-3~), foo2zjs (<< 20111023dfsg0-1~), udev (<< 136-1) Filename: pool/main/f/foo2zjs/printer-driver-foo2zjs_20140209dfsg0-1ubuntu1_amd64.deb Size: 197840 MD5sum: bb138d702536245dcec5dbdafa0baf50 SHA1: 5e46b09cc054cb7175941694543eea51c0fbb68c SHA256: 76225f5f2e5067c3bece9f6de089cbb9db164603e8564eeb6c809127fe6398ed Description: printer driver for ZjStream-based printers Homepage: http://foo2zjs.rkkda.com/ Description-md5: 46dde92d651ea7e8f08d5611cf1b2363 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-foo2zjs-common Priority: optional Section: text Installed-Size: 2459 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: foo2zjs Version: 20140209dfsg0-1ubuntu1 Replaces: foo2zjs (<< 20111023dfsg0-1~), printer-driver-foo2zjs (<< 20131225dfsg0-5~) Depends: python3, xz-utils Recommends: tk, printer-driver-foo2zjs (>= 20140209dfsg0-1ubuntu1) Suggests: tix Breaks: cups (<< 1.5.0-3~), foo2zjs (<< 20111023dfsg0-1~), printer-driver-foo2zjs (<< 20131225dfsg0-5~), udev (<< 136-1) Filename: pool/main/f/foo2zjs/printer-driver-foo2zjs-common_20140209dfsg0-1ubuntu1_all.deb Size: 515496 MD5sum: 038c826e7953a5ebdb8922a8be89e0d5 SHA1: 29fd58d67a5132e0e82ccfb6bf961b0524e0ecbe SHA256: 0f8e34e5a66e16f8328867627c512fe03a7c2b1bd7fe4fbf844ad2431a299bd9 Description: printer driver for ZjStream-based printers - common files Enhances: printer-driver-foo2zjs (>= 20140209dfsg0-1ubuntu1) Homepage: http://foo2zjs.rkkda.com/ Description-md5: e621bf30a07e3113278d9cc013b9dc37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-gutenprint Priority: optional Section: graphics Installed-Size: 747 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: amd64 Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Replaces: cups-driver-gutenprint (<< 5.2.7-3) Provides: cups-driver-gutenprint Depends: libc6 (>= 2.14), libcups2 (>= 1.4.0), libcupsimage2 (>= 1.4.0), libgutenprint2 (>= 5.2.10~pre2), libusb-1.0-0 (>= 2:1.0.9), cups (>= 1.3.0), cups-client (>= 1.3.0), cups-filters (>= 1.0.36) | ghostscript-cups Suggests: gutenprint-doc (>= 5.2.10~pre2-0ubuntu2), gutenprint-locales (>= 5.2.10~pre2-0ubuntu2) Conflicts: cups-driver-gutenprint (<< 5.2.7-3) Filename: pool/main/g/gutenprint/printer-driver-gutenprint_5.2.10~pre2-0ubuntu2_amd64.deb Size: 358850 MD5sum: d3dc77a233607cb5f51f04681fe128a2 SHA1: d14c0c42aed90e1d2c7a53e8adf6de4b28a35f61 SHA256: 74211238428203cf2cbe9fbd7ef06d07b2fae657545eb22dc6c3b1ba8c6cad87 Description: printer drivers for CUPS Description-md5: 5f4c29079db880e202fde946549381ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-hpcups Priority: optional Section: text Installed-Size: 1721 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: amd64 Source: hplip Version: 3.14.3-0ubuntu3 Replaces: hplip-cups (<< 3.11.10-1ubuntu2) Depends: libc6 (>= 2.15), libcups2 (>= 1.4.0), libcupsimage2 (>= 1.4.0), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libhpmud0, libjpeg8 (>= 8c), libstdc++6 (>= 4.1.1), cups-filters (>= 1.0.36) | ghostscript-cups, cups (>= 1.4.0) | cupsddk, cups Suggests: hplip-doc, hplip (= 3.14.3-0ubuntu3) Breaks: hplip-cups (<< 3.11.10-1ubuntu2) Filename: pool/main/h/hplip/printer-driver-hpcups_3.14.3-0ubuntu3_amd64.deb Size: 237304 MD5sum: 3d1a03b0bc183f6dcc03dd54999e6df0 SHA1: eda09509daf7ce744c6413d68b01702f03ee0329 SHA256: b0d3f2f739f1ee073360a343b087c6cce08bcd4beca7fba81efe443c263076de Description: HP Linux Printing and Imaging - CUPS Raster driver (hpcups) Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: f0d901d77cf3b6cbd910072d6a2c9cd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-hpijs Priority: optional Section: text Installed-Size: 1843 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: amd64 Source: hplip Version: 3.14.3-0ubuntu3 Replaces: hpijs (<< 3.11.10-1ubuntu2) Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libhpmud0 (= 3.14.3-0ubuntu3), libjpeg8 (>= 8c), libstdc++6 (>= 4.1.1) Recommends: ghostscript, cups (>= 1.4.0) | cupsddk | hpijs-ppds, cups-filters (>= 1.0.42) | foomatic-filters Suggests: hplip, hpijs-ppds, hplip-doc Breaks: hpijs (<< 3.11.10-1ubuntu2) Filename: pool/main/h/hplip/printer-driver-hpijs_3.14.3-0ubuntu3_amd64.deb Size: 257636 MD5sum: 7c71892f2f0ef361647dcecbe1ca36d5 SHA1: 135373da2644f2b4bf4dfc85f1813a9d01caaeb2 SHA256: 775aef5cd2761a59b2d0d549d7e255ef9b3ca86bdced4f3be349f5fe42055f4d Description: HP Linux Printing and Imaging - printer driver (hpijs) Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: a4e5debc05f7a32d2cd372505ee6118a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: print-server Package: printer-driver-m2300w Priority: optional Section: text Installed-Size: 1500 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: m2300w Version: 0.51-11 Replaces: m2300w (<< 0.51-5~), m2300w-ppds Depends: python3, xz-utils, libc6 (>= 2.14), cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0.0~bzr156) Recommends: cups-ppdc Suggests: psutils Breaks: m2300w (<< 0.51-5~), m2300w-ppds Filename: pool/main/m/m2300w/printer-driver-m2300w_0.51-11_amd64.deb Size: 264408 MD5sum: 129d93692c045ff8f5541f42c7384fdf SHA1: 60df346b2c2c217d78b4991b54ab2c01086217a8 SHA256: 44736b3f716fa60cf11539eac097e9ba24f02af52ca62002fa2f3ff9cca223a0 Description: printer driver for Minolta magicolor 2300W/2400W color laser printers Homepage: http://m2300w.sf.net/ Description-md5: 3a71d776a8067cf9d8871b64860b850c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: printer-driver-min12xxw Priority: optional Section: text Installed-Size: 117 Maintainer: Stefan Potyra Architecture: amd64 Source: min12xxw Version: 0.0.9-8ubuntu1 Replaces: min12xxw (<< 0.0.9-6~) Depends: libc6 (>= 2.14) Recommends: cups, ghostscript, foomatic-db-compressed-ppds | foomatic-db Breaks: min12xxw (<< 0.0.9-6~) Filename: pool/main/m/min12xxw/printer-driver-min12xxw_0.0.9-8ubuntu1_amd64.deb Size: 45138 MD5sum: 2169dc76296335444eefebb628554af3 SHA1: 4de92e724a0cb9390788c5755d3823ee350555de SHA256: b3e9881fd2efb16fbb43a778e83c04a362b7a4389be5456246d66a6283fb5fed Description: printer driver for KonicaMinolta PagePro 1[234]xxW Homepage: http://www.hinterbergen.de/mala/min12xxw/ Description-md5: 5ec688dce306d6ec828b6ad200918b13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-pnm2ppa Priority: optional Section: text Installed-Size: 910 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: pnm2ppa Version: 1.13+nondbs-0ubuntu4 Replaces: pnm2ppa (<< 1.13-3~) Depends: libc6 (>= 2.14), debconf (>= 0.5) | debconf-2.0, ghostscript Suggests: magicfilter | apsfilter Conflicts: pbm2ppa Breaks: pnm2ppa (<< 1.13-3~) Filename: pool/main/p/pnm2ppa/printer-driver-pnm2ppa_1.13+nondbs-0ubuntu4_amd64.deb Size: 173884 MD5sum: d4974f1250fc907ecd0220ba3e5e625d SHA1: b7a853f97d671310a62fb4165a410a11ed808d27 SHA256: 1ac5950cd06493e8809e0f33ba2a782fdeaeab360548f22cec181eebccaaa10e Description: printer driver for HP-GDI printers Homepage: http://pnm2ppa.sf.net/ Description-md5: 849382da46e29649d87fee9f5fd75baf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-postscript-hp Priority: optional Section: utils Installed-Size: 1036 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: all Source: hplip Version: 3.14.3-0ubuntu3 Replaces: hplip (<< 3.11.10-1ubuntu2), hplip-data (<< 3.11.10-1ubuntu2) Depends: python3, xz-utils, hplip (>= 3.14.3-0ubuntu3) Breaks: cups (<< 1.5.0-11~), hplip (<< 3.11.10-1ubuntu2), hplip-data (<< 3.11.10-1ubuntu2) Filename: pool/main/h/hplip/printer-driver-postscript-hp_3.14.3-0ubuntu3_all.deb Size: 722756 MD5sum: 96a724d39f3f6e11862a3d1256edba95 SHA1: a36d43469d9332b4be53908b5e43f29117562015 SHA256: dd1624b7590e732a6aaf5eb0bf8d2bd834c53184050e42ea84a5e5d2ca41c18b Description: HP Printers PostScript Descriptions Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 33ca72b4a7d8d06f5c3a8785de40d15d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-ptouch Priority: optional Section: text Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: ptouch-driver Version: 1.3-8 Replaces: ptouch-driver (<< 1.3-2~) Depends: libc6 (>= 2.14), libcups2 (>= 1.4.0), libcupsimage2 (>= 1.4.0), python3, xz-utils, ghostscript Breaks: ptouch-driver (<< 1.3-2~) Filename: pool/main/p/ptouch-driver/printer-driver-ptouch_1.3-8_amd64.deb Size: 26804 MD5sum: 9455fa9411dfae6c5ecb071ab10f9bb1 SHA1: 3cc0a387bde4764280135e99fc141829297962b7 SHA256: e82cc353b89e778c82bbc7fea33f55561c37608cbdb0894b64cdfc6d99e9fe83 Description: printer driver Brother P-touch label printers Homepage: http://www.diku.dk/hjemmesider/ansatte/panic/P-touch/ Description-md5: 8ace29fc51cc26f5b17212bea077277c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-pxljr Priority: optional Section: text Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: pxljr Version: 1.4+repack0-3 Replaces: pxljr (<< 1.3+repack0-2~) Depends: libc6 (>= 2.14), libijs-0.35 (>= 0.35), libjpeg8 (>= 8c), python3, xz-utils, cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0.0~bzr156) Breaks: pxljr (<< 1.3+repack0-2~) Filename: pool/main/p/pxljr/printer-driver-pxljr_1.4+repack0-3_amd64.deb Size: 27198 MD5sum: adf3d082fa63590c23e87057e4502b5b SHA1: d225f2c275c69919c1b6037bef30eb8616fadbc3 SHA256: 20b3087d1fd4b86a03384ade9b9878e8c936e49b8b6ba485483123928bd7c1bf Description: printer driver for HP Color LaserJet 35xx/36xx Homepage: http://sourceforge.net/projects/hp-pxl-jetready/ Description-md5: 47e43f276ab9296a8104d3f136ac5d1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-sag-gdi Priority: optional Section: text Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: rastertosag-gdi Version: 0.1-3 Replaces: rastertosag-gdi (<< 0.1-3) Depends: python, ghostscript Recommends: cups | foomatic-filters Breaks: cups (<< 1.5.0-3), rastertosag-gdi (<< 0.1-3) Filename: pool/main/r/rastertosag-gdi/printer-driver-sag-gdi_0.1-3_all.deb Size: 9112 MD5sum: ce4c6709c0212622d839c78db98ad161 SHA1: d048c6b42ae037ef6f67728acd4e748e3e8a9465 SHA256: 637701feb2e291b55343c2978c1afd1a82e79e370500ec3d944c2839f3a1b7c1 Description: printer driver for Ricoh Aficio SP 1000s/SP 1100s Homepage: http://www.openprinting.org/driver/rastertosag-gdi/ Description-md5: f01e9d3286bd9e5e45b9c6fe167edeb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-splix Priority: optional Section: text Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: amd64 Source: splix Version: 2.0.0+svn315-2fakesync1 Replaces: splix (<< 2.0.0+svn299-1) Depends: libc6 (>= 2.14), libcups2 (>= 1.4.0), libcupsimage2 (>= 1.4.0), libgcc1 (>= 1:4.1.1), libjbig0 (>= 2.0), libstdc++6 (>= 4.1.1), cups (>= 1.5.0-3~), cups-client, ghostscript-cups Breaks: splix (<< 2.0.0+svn299-1) Filename: pool/main/s/splix/printer-driver-splix_2.0.0+svn315-2fakesync1_amd64.deb Size: 35832 MD5sum: 4c6d49b11d664455bc69e72d4600a17d SHA1: cad99db3b50e5a199a6ee727f6d0d77326227dec SHA256: 744367e4554499396983b42ef29a74903cbc79d12e0d92247e1c3a7e303c8dd9 Description: Driver for Samsung and Xerox SPL2 and SPLc laser printers Homepage: http://splix.ap2c.org/ Description-md5: bf769a48f0ca1c009ba9795570744dc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: procmail Priority: optional Section: mail Installed-Size: 309 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 3.22-21 Depends: libc6 (>= 2.14) Recommends: default-mta | mail-transport-agent | fetchmail Filename: pool/main/p/procmail/procmail_3.22-21_amd64.deb Size: 154626 MD5sum: 04e1d418c89fef8131768ccaf1fbbd6e SHA1: dee76996997b081cad9e7a99299b924664d2cc68 SHA256: 745aae4db178adb7d78a1cecf7f238584b47d962f6d1a2ea04205dfabe7ed9d9 Description: Versatile e-mail processor Homepage: http://www.procmail.org/ Description-md5: 5fe1752f436b234d8c33cb0e7484299f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: procps Priority: required Section: admin Installed-Size: 680 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Version: 1:3.3.9-1ubuntu2 Provides: watch Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libncursesw5 (>= 5.6+20070908), libprocps3, libtinfo5, lsb-base (>= 3.0-10), initscripts Recommends: psmisc Conflicts: pgrep (<< 3.3-5), w-bassman (<< 1.0-3) Breaks: guymager (<= 0.5.9-1), open-vm-tools (<= 2011.12.20-562307-1), xmem (<= 1.20-27.1) Filename: pool/main/p/procps/procps_3.3.9-1ubuntu2_amd64.deb Size: 209226 MD5sum: 17bb2a999813707789483cd7650641ee SHA1: db984a647440ff323bd1aeb7da9e990e31498ee2 SHA256: 8cbb9206812834010bba13bb6fa16fe877e6a646bee217a8d80fcfb3409fe1e8 Description: /proc file system utilities Multi-Arch: foreign Homepage: http://gitorious.org/procps Description-md5: 943f3288c1aaa379fca73a3ff1a35278 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: prosper Priority: optional Section: tex Installed-Size: 1004 Maintainer: Ubuntu Core Developers Original-Maintainer: Masayuki Hatta (mhatta) Architecture: all Version: 1.00.4+cvs.2007.05.01-4 Depends: texlive-latex-base, texlive-pstricks, texlive-latex-recommended, ghostscript, tex-common (>= 1.10) Suggests: pdf-viewer, postscript-viewer Filename: pool/main/p/prosper/prosper_1.00.4+cvs.2007.05.01-4_all.deb Size: 448654 MD5sum: ea3087b30c1b701d4c3992c8c0356676 SHA1: 543945116023ee28992cb16bf03c919111b61e9b SHA256: 13a38c6765bf76b32296d959e50a52e0884cc355d5076f03f22395c018c71e6f Description: LaTeX class for writing transparencies Description-md5: 457824b5bd874fe651e5ba2efc02e000 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: protobuf-compiler Priority: extra Section: devel Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: protobuf Version: 2.5.0-9ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libprotoc8 (= 2.5.0-9ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/p/protobuf/protobuf-compiler_2.5.0-9ubuntu1_amd64.deb Size: 19788 MD5sum: d3f004c1bc86d7c0a827738c4e8fc9e4 SHA1: afa4201d676dc28d00303c0c6d8f7d862412057f SHA256: ebdd04a712c7209b87601f5b0ca465a7667142b9ac4694a5145539160b227e9f Description: compiler for protocol buffer definition files Multi-Arch: foreign Homepage: https://code.google.com/p/protobuf/ Description-md5: 1054ab94728e41bc0d59a82d40d1611e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ps2eps Priority: optional Section: text Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Matteo Cypriani Architecture: amd64 Version: 1.68-1build1 Depends: libc6 (>= 2.7), perl, ghostscript Filename: pool/main/p/ps2eps/ps2eps_1.68-1build1_amd64.deb Size: 34398 MD5sum: 8e00b5db68a9f86abe11201423024dc1 SHA1: 341d4d762307aacdb792a5ce3c49b17df1097128 SHA256: 45e29ecbe967b1e7fee767945852b259826c4a543429d55ddbd49517ad23b0f4 Description: convert PostScript to EPS (Encapsulated PostScript) files Homepage: http://tm.uka.de/~bless/ps2eps Description-md5: c14405c1cb36d8c16618b31cb19280a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: psmisc Priority: standard Section: admin Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: amd64 Version: 22.20-1ubuntu2 Replaces: procps (<< 1:1.2) Depends: libc6 (>= 2.14), libtinfo5 Filename: pool/main/p/psmisc/psmisc_22.20-1ubuntu2_amd64.deb Size: 53250 MD5sum: f5c610033b9c559cab081699207b8754 SHA1: 3a9dbc56a747b20854092725dab71bff6d3a317d SHA256: 7683ead32815c7ecad7f742ca7eb5564f61b555831d98faff2d4478aea4180e4 Description: utilities that use the proc file system Homepage: http://psmisc.sf.net/ Description-md5: f223601d881677b6b3cc176c4915b053 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: pst-utils Priority: optional Section: utils Installed-Size: 181 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: amd64 Source: libpst Version: 0.6.59-1build1 Replaces: readpst (<= 0.5.3-1) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgd3 (>= 2.1.0~alpha~), libglib2.0-0 (>= 2.12.0), libgsf-1-114 (>= 1.14.8), libpst4 (>= 0.6.54), libstdc++6 (>= 4.6) Breaks: readpst (<= 0.5.3-1) Filename: pool/main/libp/libpst/pst-utils_0.6.59-1build1_amd64.deb Size: 62092 MD5sum: f75684e6ddb8a1a651a629de9bd42d5d SHA1: 7e5afc4156a87f8c02ae369428ffcbb967111bed SHA256: 807a10cc7b8062403018d37a6d19cd210bd9f836ae62d947067b3e7bc1756f63 Description: tools for reading Microsoft Outlook PST files Multi-Arch: foreign Homepage: http://www.five-ten-sg.com/libpst/ Description-md5: a5b7eea58aeff9732f2cfda76e293617 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: psutils Priority: optional Section: text Installed-Size: 241 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Version: 1.17.dfsg-1 Depends: libc6 (>= 2.7), libpaper1 Recommends: ghostscript Filename: pool/main/p/psutils/psutils_1.17.dfsg-1_amd64.deb Size: 85086 MD5sum: 8ba6fbb990a186fac2e0c841f26bab53 SHA1: 496875addc767642abdb980a73500cc93b844099 SHA256: 161c5bb30f3486d83bb8c5d1f0d01e020ff4e9ff7fd9806e1be9a6395273c117 Description: PostScript document handling utilities Multi-Arch: foreign Homepage: http://www.tardis.ed.ac.uk/~ajcd/psutils/ Description-md5: d3e83aa8e0c39f8e84452a2efc781c5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pth-dbg Priority: extra Section: libdevel Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: NIIBE Yutaka Architecture: amd64 Source: pth Version: 2.0.7-19ubuntu1 Depends: libpth20 (= 2.0.7-19ubuntu1) Filename: pool/main/p/pth/pth-dbg_2.0.7-19ubuntu1_amd64.deb Size: 78788 MD5sum: b9b64f7f31873419c3f358bf9e6582f4 SHA1: a525ba1f264162300a44d5ff9fedb264272b6a5b SHA256: 4a1bf5608bd6abc74f516bad7524772a499738b9ac23e82779844bdf3c636d90 Description: GNU Portable Threads (debug) Multi-Arch: same Homepage: http://www.gnu.org/software/pth/ Description-md5: c490e0230cdde8968e71183b8e08a764 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio Priority: optional Section: sound Installed-Size: 3404 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Version: 1:4.0-0ubuntu11 Provides: pulseaudio-module-hal, pulseaudio-module-rygel-media-server, pulseaudio-module-udev Depends: libasound2 (>= 1.0.24.1), libc6 (>= 2.15), libcap2 (>= 2.10), libdbus-1-3 (>= 1.1.1), libfftw3-single3, libltdl7 (>= 2.4.2), liborc-0.4-0 (>= 1:0.4.18), libpulse0 (= 1:4.0-0ubuntu11), libsamplerate0 (>= 0.1.7), libsndfile1 (>= 1.0.20), libspeexdsp1 (>= 1.2~beta3.2-1), libsystemd-login0 (>= 31), libtdb1 (>= 1.2.7+git20101214), libudev1 (>= 183), libx11-6, libx11-xcb1, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), adduser, lsb-base (>= 3.2-13), libpam-systemd, udev (>= 143), libasound2-plugins Recommends: pulseaudio-module-x11, gstreamer0.10-pulseaudio, rtkit, pulseaudio-utils Suggests: pavumeter, paman, pavucontrol, paprefs, pulseaudio-module-raop, pulseaudio-esound-compat Conflicts: libltdl3 (<< 1.5.24-1) Filename: pool/main/p/pulseaudio/pulseaudio_4.0-0ubuntu11_amd64.deb Size: 690264 MD5sum: 75d55bf313e271934d5c70f8d2777e9f SHA1: 903d391c717df8a8ded0d22175ed9c8470cf8c74 SHA256: 68fabacabe015564ed291d0d75c56b5f4d65c5755331699c8640413c5498242a Description: PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: 15c158aa11824c8a768e4d670919d02d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pulseaudio-dbg Priority: optional Section: sound Installed-Size: 7681 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-dbg_4.0-0ubuntu11_amd64.deb Size: 1706010 MD5sum: fd4a5122fc8c254dacd15a9749726040 SHA1: 0800184b9394ae8de2acc489f0cb0ce508b09ded SHA256: d623805d34b10853efe251b785db078c527b1a0d6d6ce6cce1c4e83a26e11f71 Description: PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 6515020922a7cd6552f8c5b6bfc6a4cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-esound-compat Priority: optional Section: sound Installed-Size: 210 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Replaces: esound Provides: esound Depends: libc6 (>= 2.14), libpulse0, pulseaudio Conflicts: esound, pulseaudio (<< 0.9.7) Filename: pool/main/p/pulseaudio/pulseaudio-esound-compat_4.0-0ubuntu11_amd64.deb Size: 28628 MD5sum: bd3a1890f826f5bf430dd127d06ff4fe SHA1: 6b7ca7619a7a2beb6cd08ffaee3384d11f5a75c8 SHA256: 7e3dd3ed61f8835c431504f9882b346583af2e7ed7f889e994a432ba780bc9eb Description: PulseAudio ESD compatibility layer Homepage: http://www.pulseaudio.org Description-md5: c4bef34c6a4dad881a8090fdc8386ec8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-esound-compat-dbg Priority: optional Section: sound Installed-Size: 390 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-esound-compat (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-esound-compat-dbg_4.0-0ubuntu11_amd64.deb Size: 70166 MD5sum: 429b358d7b5646c66a581f839436fe56 SHA1: d01677394e88aa585d87b9cf514adf6c11d08036 SHA256: 5a760ff29de7ba85877bfb27351bbb9dad199c9fc25de57d6f4c51e71c06b5d5 Description: PulseAudio ESD compatibility layer (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 621532e19d5d462616e8fde9df46059f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-bluetooth Priority: extra Section: sound Installed-Size: 281 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libbluetooth3 (>= 4.91), libc6 (>= 2.15), libcap2 (>= 2.10), libdbus-1-3 (>= 1.0.2), libpulse0, libsbc1, pulseaudio Conflicts: pulseaudio (<< 0.9.14-2) Filename: pool/main/p/pulseaudio/pulseaudio-module-bluetooth_4.0-0ubuntu11_amd64.deb Size: 51980 MD5sum: d2504a7d67e65b673b36f0511804f42d SHA1: 35c34213d7c13cad83999eafd0cf54abea62e306 SHA256: 5c9df24af80eaccdec8dbf1e1a8c5e37139ee81b31cd870dcda9e1c5811ebd68 Description: Bluetooth module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: 76e05b466d11ac60deff61d94d607904 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: pulseaudio-module-bluetooth-dbg Priority: extra Section: debug Installed-Size: 520 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-bluetooth (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-bluetooth-dbg_4.0-0ubuntu11_amd64.deb Size: 112144 MD5sum: 904a63a0ea0e0a66ea7de7f0dcbc80c5 SHA1: a4e6a4231c28794ba62310cf8b670ba7e0d26a86 SHA256: 5fe9c89cace27afd952294e312237686e282ebe70153bce9b4ec155172ec56a8 Description: Bluetooth module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 2b8edffb30aa137382c0522aeb8d7705 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-gconf Priority: optional Section: sound Installed-Size: 139 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: gconf-service, libc6 (>= 2.4), libcap2 (>= 2.10), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.16.0), libpulse0 (>= 1:0.99.1), pulseaudio Filename: pool/main/p/pulseaudio/pulseaudio-module-gconf_4.0-0ubuntu11_amd64.deb Size: 12140 MD5sum: 63a134462fb22fb80629671cb19cda72 SHA1: 20e292cb8b0329aa5aa17053ca4df7b8b737e584 SHA256: f96963d6216e40a6265f90d2bf8562f9564631012be639a3e7b42ca06c2cf2a1 Description: GConf module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: c3adf0ed8c67f1355a3e02e8fd0d85c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-desktop Package: pulseaudio-module-gconf-dbg Priority: optional Section: sound Installed-Size: 186 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-gconf (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-gconf-dbg_4.0-0ubuntu11_amd64.deb Size: 26094 MD5sum: 07fa4478c1b1d207399454f4e845fdf8 SHA1: df68d03185655e166a031c0a17a6c852bdd14cc9 SHA256: 1d4eb6a329f07d8e6fa7779943242f4cd92183a79bc3ea20965c834c17f3dab2 Description: GConf module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: ce11f6aa6253e7cd2e697e57cc8fb842 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-jack Priority: optional Section: sound Installed-Size: 166 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.2.5), libdbus-1-3 (>= 1.0.2), libjack-jackd2-0 (>= 1.9.5~dfsg-14) | libjack-0.116, libpulse0, pulseaudio Filename: pool/main/p/pulseaudio/pulseaudio-module-jack_4.0-0ubuntu11_amd64.deb Size: 18582 MD5sum: 22686991198e5855c969aa47d7bc1820 SHA1: be093b8cf3033810cc45c434308c3d9fef417624 SHA256: ac716ce645e5ce5e38ebe1ff542714db938a72ae3ec72438fc8e36dec3af86f4 Description: jackd modules for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: a45f4943771fb4ccf89a76a36f7f6f13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: pulseaudio-module-jack-dbg Priority: extra Section: debug Installed-Size: 276 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-jack (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-jack-dbg_4.0-0ubuntu11_amd64.deb Size: 47944 MD5sum: ae5b3f4ecb31fbee0047d0addecc3b4d SHA1: 3ed3cb45e574ebdad097aed5004dedf8a008815c SHA256: 2ce548af9d5f69292f01c378f6f932c7106e096eed6cc098e35711e2a0f38c8a Description: jackd modules for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: f6d44444a47d21760ed54faff6808e42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-lirc Priority: optional Section: sound Installed-Size: 121 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.2.5), liblircclient0, libpulse0, pulseaudio Filename: pool/main/p/pulseaudio/pulseaudio-module-lirc_4.0-0ubuntu11_amd64.deb Size: 9446 MD5sum: ff4dcf58fef5e7898dbffea2a977f3f4 SHA1: 9f205db0cc0877715314a9b6bc9199fe6cf8b9fa SHA256: 66c4e9ca9293d2a7d6374d4b53de869fc8dd0846a7413cfb613e757288f8d325 Description: lirc module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: 476ebc36bd51c387e0a12a54352ae162 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-lirc-dbg Priority: optional Section: sound Installed-Size: 159 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-lirc (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-lirc-dbg_4.0-0ubuntu11_amd64.deb Size: 20238 MD5sum: 1ffcf3e9cb90a6beae4b31cb9ebd0a4e SHA1: 8d4675e269c08a6d8bbbeaa8eb47d247fa2915b6 SHA256: 2a8eb4f6a4b341b1d28e91a272fd7657866afc3379477497e1c42e2bb03b0fa2 Description: lirc module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: bb6c6bf3bb0d94413297d07debc8ad2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-raop Priority: optional Section: sound Installed-Size: 162 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.4), libpulse0, libssl1.0.0 (>= 1.0.0), pulseaudio, pulseaudio-module-zeroconf Filename: pool/main/p/pulseaudio/pulseaudio-module-raop_4.0-0ubuntu11_amd64.deb Size: 22092 MD5sum: c37ddc176a30bf2546a8842c7239ab94 SHA1: 050c66e8969b473cc9c91c993b14bb7cbf147b70 SHA256: cdc61f89b596778ebdd25f99ab56bcac590dc823f796fc2494698101826683e4 Description: RAOP module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: f443b32abfa3073d1874fa9b76cf88b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-raop-dbg Priority: extra Section: debug Installed-Size: 292 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-raop (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-raop-dbg_4.0-0ubuntu11_amd64.deb Size: 57470 MD5sum: b880516acdbf1fd34c19b08a7f28fce4 SHA1: 880ab7f54bbf7e686308b7c0f07670934ed57fbd SHA256: ed5bf6c538dcdb869deb4827b7866aa8577d4e1101662ee9d334116de09c851d Description: RAOP module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 237b0832d40dda438225fb99516390ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-x11 Priority: optional Section: sound Installed-Size: 164 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.4), libice6 (>= 1:1.0.0), libpulse0, libsm6, libx11-6, libxcb1, libxtst6, pulseaudio, pulseaudio-utils Filename: pool/main/p/pulseaudio/pulseaudio-module-x11_4.0-0ubuntu11_amd64.deb Size: 15932 MD5sum: 4374cf84de48e46f28d349630e7cbb62 SHA1: 3e66a651122086f3de08be219859f91cf8fc530a SHA256: 0b6037f41e0bcb54e62107654cd74f433ad0e0363d423acb14d9962ac4281606 Description: X11 module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: 062fab2dbfcfeea7d9fa7b6dd9d093f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pulseaudio-module-x11-dbg Priority: optional Section: sound Installed-Size: 301 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-x11 (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-x11-dbg_4.0-0ubuntu11_amd64.deb Size: 52976 MD5sum: ccd6fb4ecf6692abb969e5fa2ea9b1cd SHA1: fe8f73324b5b4dd858df21771ca0da359efe1a2e SHA256: cdcc72c2b069dce86b178686bd85bd75e9a268b738e52615fa2c741b349e9381 Description: X11 module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 9fd62ba08b980e048eea094c765b1e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-zeroconf Priority: optional Section: sound Installed-Size: 157 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.4), libpulse0, pulseaudio, avahi-daemon Filename: pool/main/p/pulseaudio/pulseaudio-module-zeroconf_4.0-0ubuntu11_amd64.deb Size: 18890 MD5sum: f3fb3c156fb394b799f59d7feea94dcc SHA1: 4166bcee8a16d91661eadbb0e1c1066a982133c6 SHA256: 89ba8734e02da75097c559061b8f1d77c17a0894110a2c5f310e693a2d650da1 Description: Zeroconf module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: bccd0c2eacb18c71f7d829db12f93aae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-zeroconf-dbg Priority: optional Section: sound Installed-Size: 268 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-zeroconf (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-zeroconf-dbg_4.0-0ubuntu11_amd64.deb Size: 47590 MD5sum: 17254720f4d296930c7ad288b48ac247 SHA1: 7683a9694cd72ca7b37056af18630f758e37ee4e SHA256: 50caa9959f232860ece5e51b32e8a510041400694893d049b18312d0424df969 Description: Zeroconf module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 77f25d7054496b1bcb1709ebe63fb092 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-utils Priority: optional Section: sound Installed-Size: 277 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.16), libcap2 (>= 2.10), libice6 (>= 1:1.0.0), libpulse0 (>= 1:3.0), libsm6, libsndfile1 (>= 1.0.20), libx11-6, libx11-xcb1, libxcb1, libxtst6, libpulsedsp Suggests: avahi-daemon Filename: pool/main/p/pulseaudio/pulseaudio-utils_4.0-0ubuntu11_amd64.deb Size: 52270 MD5sum: 236a06801430a791db17ee3c6c435a2d SHA1: acf094dcd520e35b905e6db4ed3e5fec083bc16a SHA256: 08f8e835f11307af2eb5f2332b45095eed99aa8baa4f0067cc5c94313ebcc0a2 Description: Command line tools for the PulseAudio sound server Multi-Arch: foreign Homepage: http://www.pulseaudio.org Description-md5: d8d6ff926bb9214bc0212fd3318ba0e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pulseaudio-utils-dbg Priority: optional Section: sound Installed-Size: 390 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: amd64 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-utils (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-utils-dbg_4.0-0ubuntu11_amd64.deb Size: 75288 MD5sum: 1644289bca1831d7376e3803eacd455a SHA1: 0d9a7ba5fbbf3640a79a397851d6441bc8683708 SHA256: cec1df15f284786bfb9a7f09ad24efbc574512e0ffba6dbeadc7bba57908863c Description: PulseAudio command line tools (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 0e61af00680b09723f21829a67509778 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: puppet Priority: optional Section: admin Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Puppet Package Maintainers Architecture: all Version: 3.4.3-1 Depends: init-system-helpers (>= 1.13~), puppet-common (= 3.4.3-1), ruby | ruby-interpreter Suggests: puppet-el, vim-puppet, etckeeper Filename: pool/main/p/puppet/puppet_3.4.3-1_all.deb Size: 12352 MD5sum: 4877c041e24b01839c9ca25c26b8b338 SHA1: af11e5388acaa20e85ffc56f97f84be8d0a5880c SHA256: 89a5bf44f9f8e6acbf5459c07ef27e032723bcbb9357b15e5736081b301d1593 Description: Centralized configuration management - agent startup and compatibility scripts Homepage: http://projects.puppetlabs.com/projects/puppet Description-md5: 1dc71ec043c0ade030b8a9e18410f9ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: puppet-common Priority: optional Section: admin Installed-Size: 4303 Maintainer: Ubuntu Developers Original-Maintainer: Puppet Package Maintainers Architecture: all Source: puppet Version: 3.4.3-1 Replaces: puppet (<< 2.7.5-3), puppetmaster (<< 0.25.4-1), ruby-hiera-puppet Depends: adduser, facter, ruby-augeas, ruby-hiera, lsb-base, ruby | ruby-interpreter, ruby-safe-yaml, ruby-shadow, sysv-rc | file-rc Recommends: debconf-utils, lsb-release, ruby-rgen Suggests: ruby-selinux, ruby-rrd | librrd-ruby Breaks: puppet (<< 2.7.5-3), puppetmaster (<< 0.25.4-1), ruby-hiera-puppet Filename: pool/main/p/puppet/puppet-common_3.4.3-1_all.deb Size: 830508 MD5sum: 3e4b9e50ea8fd76de12ed9d83a0b93bf SHA1: 56bcc4ba747139ec1550df40989e1adab4ae193d SHA256: b58702947f1a224402db94afb1193c7a937c9f1a2dde71b404a3e09e1836f6cd Description: Centralized configuration management Homepage: http://projects.puppetlabs.com/projects/puppet Description-md5: 8da729eb017e286e5d58a9b725d6d6e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: puppetmaster Priority: optional Section: admin Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Puppet Package Maintainers Architecture: all Source: puppet Version: 3.4.3-1 Replaces: puppet (<< 0.24.7-1) Depends: init-system-helpers (>= 1.13~), puppetmaster-common (= 3.4.3-1), ruby | ruby-interpreter Breaks: puppet (<< 0.24.7-1) Filename: pool/main/p/puppet/puppetmaster_3.4.3-1_all.deb Size: 11148 MD5sum: faf76123a5cdc31e66f74d9e610fa4a1 SHA1: db5b8898eca15ef0b9997171e02fc1e4c81925ed SHA256: 41c8528f62d95c5c1e1773f140be54cbd471830c4ce436992a633d2df77620fa Description: Centralized configuration management - master startup and compatibility scripts Homepage: http://projects.puppetlabs.com/projects/puppet Description-md5: ec2957c54d173b1e55135df9e2c43a3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: puppetmaster-common Priority: optional Section: admin Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Puppet Package Maintainers Architecture: all Source: puppet Version: 3.4.3-1 Replaces: puppet (<< 0.24.7-1), puppetmaster (<< 2.7.6-1~) Depends: lsb-base, puppet-common (= 3.4.3-1), ruby | ruby-interpreter Suggests: apache2 | nginx, puppet-el, ruby-ldap, ruby-stomp, stompserver, vim-puppet Breaks: puppet (<< 0.24.7-1), puppetmaster (<< 2.7.6-1~) Filename: pool/main/p/puppet/puppetmaster-common_3.4.3-1_all.deb Size: 11936 MD5sum: 8f17ebc4ba808c179cbc59c5d6890c41 SHA1: 418787926379ecdae2a6ed01b01cf544ba511e46 SHA256: 478100f33f2f4bce3a8be3c6655a80613a3e27b28f717292356f6ad9e596ba38 Description: Puppet master common scripts Homepage: http://projects.puppetlabs.com/projects/puppet Description-md5: 8e697b41d71ef7baffdb79e12a12ce20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pwgen Priority: optional Section: admin Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Version: 2.06-1ubuntu4 Depends: libc6 (>= 2.14) Filename: pool/main/p/pwgen/pwgen_2.06-1ubuntu4_amd64.deb Size: 17306 MD5sum: 1d62dbe90df518f4a406622d38a13669 SHA1: 5488fd90efd9f36b67692754575302c1997a0702 SHA256: 044b99a920544df8f75f3c1670c52e7eb1cf4c6d827902ad85141b2dccc17381 Description: Automatic Password generation Multi-Arch: foreign Description-md5: 859691de567bea29cc54bd9e7c291b67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: pyflakes Priority: optional Section: interpreters Installed-Size: 355 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: all Version: 0.8.1-1 Depends: python-pkg-resources, python3-pkg-resources, python:any (<< 2.8), python:any (>= 2.7.5-5~), python2.7, python3, python3:any (>= 3.3.2-2~) Filename: pool/main/p/pyflakes/pyflakes_0.8.1-1_all.deb Size: 31182 MD5sum: 1e2c9fc899d2af03575911b6ffbf0ab1 SHA1: 25626d01e90c58b35ab908556c8a30006fe95a02 SHA256: cfb1c9fdc6af0cbd3b35d367b523fd0e81ba68b692b686219341ee5047d016d9 Description: passive checker of Python 2 and 3 programs Homepage: https://launchpad.net/pyflakes Description-md5: 9309f69116d91e476e6b157dd0529f79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pylint Priority: optional Section: python Installed-Size: 576 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: all Version: 1.1.0-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-logilab-common (>= 0.53.0), python-astroid Recommends: python-tk Filename: pool/main/p/pylint/pylint_1.1.0-1_all.deb Size: 105570 MD5sum: e00e43475509d6e0be14a8a842e0820b SHA1: c917f306ae52fec915677b4aafafd9174aa90629 SHA256: d1c66c187f8a4807b524fa6d59e8e790a7a2fc5dad48998573eef19043a108f0 Description: python code static checker and UML diagram generator Homepage: http://www.pylint.org/ Description-md5: ac852fa6a8087434eff7b3e8cbe70dea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pyppd Priority: extra Section: python Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Group Architecture: all Version: 1.0.2-1 Depends: python3, python3:any (>= 3.3.2-2~), perl, xz-utils Filename: pool/main/p/pyppd/pyppd_1.0.2-1_all.deb Size: 15024 MD5sum: edaf6dee44f5bb919f81b1239f21c7c8 SHA1: c5c051292962a5fafd98df0d44d2f9ce40408689 SHA256: 147b7e86647a0c77545c74fb2cd33b583d107c0ddd7dde33d7fefa0c08369616 Description: CUPS PostScript Printer Driver's compressor and generator Homepage: http://pypi.python.org/pypi/pyppd Description-md5: 430c15cefec8779b4e345c966d8bf857 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pyqt4-dev-tools Priority: optional Section: python Installed-Size: 303 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python, python-qt4 (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-xml (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/pyqt4-dev-tools_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 101966 MD5sum: 7775601e7f3ebfd22de6594d1175b346 SHA1: c0f7237366b3af1a31b94b6d663e0fca45ee8990 SHA256: fbac1c1bc118d0b2ffc0693c277ae28ef9441dd564d0e78afe0aa5bb675bc05d Description: Development tools for PyQt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: bc75f36d68f1c5b0a35d9d37acb84260 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: pyqt5-dev Priority: optional Section: python Installed-Size: 2543 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-sip-dev Filename: pool/main/p/pyqt5/pyqt5-dev_5.2.1+dfsg-1ubuntu1_all.deb Size: 258576 MD5sum: a07bc1215322ba3d0f1a76a8cb455c75 SHA1: 314f4dfc4e5012c04522d0259dcbcd3d460c5272 SHA256: e662b0963d1212fcf0c0c2b168638d606ed503f9d669833518b24f2368178396 Description: Development files for PyQt5 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: f8cbcee0368d34a312a8917b96b1992d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pyqt5-doc Priority: optional Section: doc Installed-Size: 5268 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Suggests: pyqt5-examples Filename: pool/main/p/pyqt5/pyqt5-doc_5.2.1+dfsg-1ubuntu1_all.deb Size: 319068 MD5sum: 7e6045375087aebf7b1dd996f7941880 SHA1: 0f924c8e3ff17a7c3a02ed26a981063337c388d3 SHA256: 99c37486e8802082a599bd341b50c986aec291489b68d73ecd1498f4065f7fc7 Description: Documentation for PyQt5 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 017d46c293cc5562ac94a12bef5ef3c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pyqt5-examples Priority: optional Section: python Installed-Size: 7711 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5, libjs-jquery Suggests: qt5-doc Filename: pool/main/p/pyqt5/pyqt5-examples_5.2.1+dfsg-1ubuntu1_all.deb Size: 1819510 MD5sum: b33155217fe3923181f162be6072a7e1 SHA1: 7e805a787de5ed34dc2d20601b9dbf1abcc80c36 SHA256: d8254842e8c64fba3e395da1480e1ac44c60d032d842925a3bcc94d6dfea63bd Description: Examples and demos for PyQt5 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: d62c291d8eb4fd9f644fa9a6b27c31ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python Priority: optional Section: python Installed-Size: 671 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Replaces: python-dev (<< 2.6.5-2) Provides: python-ctypes, python-email, python-importlib, python-profiler, python-wsgiref Depends: python2.7 (>= 2.7.5-1~), python-minimal (= 2.7.5-5ubuntu3), libpython-stdlib (= 2.7.5-5ubuntu3) Suggests: python-doc (= 2.7.5-5ubuntu3), python-tk (>= 2.7.5-1~) Conflicts: python-central (<< 0.5.5) Breaks: python-bz2 (<< 1.1-8), python-csv (<< 1.0-4), python-email (<< 2.5.5-3), update-manager-core (<< 0.200.5-2) Filename: pool/main/p/python-defaults/python_2.7.5-5ubuntu3_amd64.deb Size: 133698 MD5sum: e34f7f99ab4bbf8af788132f30169f65 SHA1: 5337fb1bc17f737839115c80217cf4be4ce4f39b SHA256: d508f50de23b8d2dcaf5dd06b48ca284345bcd4e9cc4d1ac8ef764c0c3d95160 Description: interactive high-level object-oriented language (default version) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: d1ea97f755d8153fe116080f2352859b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-adns Priority: optional Section: python Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Version: 1.2.1-5build3 Replaces: python2.3-adns (<< 1.0.0-6.2), python2.4-adns (<< 1.0.0-6.2) Provides: python2.7-adns Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libadns1 (>= 1.4), libc6 (>= 2.4) Conflicts: python2.3-adns (<< 1.0.0-6.2), python2.4-adns (<< 1.0.0-6.2) Filename: pool/main/p/python-adns/python-adns_1.2.1-5build3_amd64.deb Size: 14854 MD5sum: 4fe6597f13d2ccecceab4067e8a40e10 SHA1: 37ec1a57a66c8d2b905366ab61299ea99a266587 SHA256: 0c547c99ad1c6f0bdb49988f11b365faec84aa3ea44feafd907298e07f136f07 Description: Python bindings to the asynchronous DNS resolver library Homepage: http://code.google.com/p/adns-python/ Description-md5: 4efefc58d175ecdcc6723ddf24be0db6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-all Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (= 2.7.5-5ubuntu3), python2.7 (>= 2.7.2-3) Filename: pool/main/p/python-defaults/python-all_2.7.5-5ubuntu3_amd64.deb Size: 984 MD5sum: e8291150efb4ca1ffbde684f9652d9dd SHA1: aa9ad654fc605238974fb79b03266074d9b1758a SHA256: 8c35151be795b9f704dd0ce9d5b599dd43c1fcb3a743b1d8275bb6d3ba6df893 Description: package depending on all supported Python runtime versions Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 14c468e5025a2ad18b8e7e342d6f5a99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-all-dbg Priority: extra Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (= 2.7.5-5ubuntu3), python-all (= 2.7.5-5ubuntu3), libpython-all-dbg (= 2.7.5-5ubuntu3), python-dbg (= 2.7.5-5ubuntu3), python2.7-dbg (>= 2.7-7) Filename: pool/main/p/python-defaults/python-all-dbg_2.7.5-5ubuntu3_amd64.deb Size: 1004 MD5sum: 9c5b1a0866cd35aa38025419634701b8 SHA1: 568368b0b69cf388e16f7b394634908d79d9d8ea SHA256: 6d70d417e68ad2afc06a948f32852ecbe74b266281351e3c788ec6d59cba5175 Description: package depending on all supported Python debugging packages Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 4de13b4c938793e128652b43e60966fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-all-dev Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (= 2.7.5-5ubuntu3), python-all (= 2.7.5-5ubuntu3), libpython-all-dev (= 2.7.5-5ubuntu3), python-dev (= 2.7.5-5ubuntu3), python2.7-dev (>= 2.7-7) Filename: pool/main/p/python-defaults/python-all-dev_2.7.5-5ubuntu3_amd64.deb Size: 1008 MD5sum: 169603d0d7e3296d6714184ef66b47ea SHA1: 13d25783c5ad83f08c7f741eb397a937bc153571 SHA256: bdbba48f4480976f7928f2b40e4934b9ef7f00c8bce1456c627b72ba3bed1981 Description: package depending on all supported Python development packages Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 36aea35250eb42eb8dfe870c124f95c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-amqp Priority: optional Section: python Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.3.3-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-amqp-doc Filename: pool/main/p/python-amqp/python-amqp_1.3.3-1ubuntu1_all.deb Size: 35178 MD5sum: ed5b257f56c4c06b2cfb1681c46162fd SHA1: adf87dd896ffd2a52f06665c8fe47fdfb660e697 SHA256: 60f317014b4d958ce6663b356bb502c7ce2b12f3fccdab07c60c8c00e66dc3ed Description: Low-level AMQP client Homepage: https://github.com/celery/py-amqp Description-md5: 384d5af6fca84b4dc192fb6ba5e17385 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-amqp-doc Priority: extra Section: doc Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-amqp Version: 1.3.3-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-amqp/python-amqp-doc_1.3.3-1ubuntu1_all.deb Size: 46140 MD5sum: ff653ef0ae6b883f10cf7bdd0addbbd7 SHA1: 7975a6555f9eaf8b7080a845989785994572eaed SHA256: 3b5baa85199d00047041d14448a4f104dfda19f811a542296de9560516a50f53 Description: Low-level AMQP client (Documentation) Homepage: https://github.com/celery/py-amqp Description-md5: d21bba7f367ea48b74253f5ba32ad571 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-amqplib Priority: optional Section: python Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Version: 1.0.2-1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Suggests: python-amqplib-doc Filename: pool/main/p/python-amqplib/python-amqplib_1.0.2-1_all.deb Size: 34926 MD5sum: c5fbd5a52f7b755bc35866748d34a327 SHA1: 38734b46b3f5c74064e806e8e50585e7b07f8702 SHA256: e609ca152940daad8093ec28696746048ac4965199fa0821daa83158810418e2 Description: simple non-threaded Python AMQP client library Homepage: http://barryp.org/software/py-amqplib/ Description-md5: 86e5c838fa177a4f25a8f9a91377c826 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-amqplib-doc Priority: optional Section: doc Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Source: python-amqplib Version: 1.0.2-1 Filename: pool/main/p/python-amqplib/python-amqplib-doc_1.0.2-1_all.deb Size: 22610 MD5sum: b4daeadd6fc56ac7200e9d45906b5552 SHA1: 1bbd86e088d5980e9a1766198cf2ff05ddc99e7f SHA256: f22612cfa18f623b5d390ef24e0c121f1f9f43021a1abcb1c784ee082649717f Description: simple non-threaded Python AMQP client library (Documentation) Homepage: http://barryp.org/software/py-amqplib/ Description-md5: ab48c00eb1de2601274d9385fe6f1ac3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-anyjson Priority: optional Section: python Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.3.3-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-anyjson/python-anyjson_0.3.3-1build1_all.deb Size: 7096 MD5sum: 12fd230b8619d75b80d63b154b2b94d0 SHA1: c73b0f0c914be26d985b12aa4c0486191496a186 SHA256: 2931d5d57d2e2f31e538302e096fc910d661b19341133415f4937981c12cc48c Description: Common interface for the best available JSON implementation Homepage: http://bitbucket.org/runeh/anyjson/ Description-md5: 78d841d977be8e73745023d4460d2ab5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-appconf Priority: extra Section: python Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-django-appconf Version: 0.5-2build1 Provides: python2.7-appconf Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-django (>= 1.1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-django-appconf/python-appconf_0.5-2build1_all.deb Size: 7696 MD5sum: 8733edb63cd4c860b360735aa5677f2b SHA1: 716fff073da1712a11722432f70559999a135ce7 SHA256: 1f2396e019cebf95a4da44e2c0cda0289a38f39b59d2d70d99d2a5bbc7d9bb4a Description: helper class for handling configuration defaults of packaged apps gracefully Homepage: http://pypi.python.org/pypi/django-appconf/ Description-md5: 416d06d01e1a1d6de3912ba759a24f25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-appindicator Priority: optional Section: python Installed-Size: 88 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Provides: python2.7-appindicator Depends: libappindicator1 (= 12.10.1+13.10.20130920-0ubuntu4), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.35.4), libgtk2.0-0 (>= 2.12.0), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-gobject Filename: pool/main/liba/libappindicator/python-appindicator_12.10.1+13.10.20130920-0ubuntu4_amd64.deb Size: 7706 MD5sum: fc44a0ca4734bfc56444c50fe8317c65 SHA1: 6a571989f0b5631c5c38b55cc27369d237222e1c SHA256: fc985df7a3e466b91500c878fd4ffb5fa4c37b864b098ac07fd903c0a60023dd Description: Python bindings for libappindicator Homepage: https://launchpad.net/libappindicator Python-Version: 2.7 Description-md5: ddae6e8519270caee1fddd3ab07dcfe5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-video Package: python-apport Priority: optional Section: python Installed-Size: 522 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-apt (>= 0.7.9), python-problem-report (>= 0.94), lsb-release, python-launchpadlib (>= 1.5.7) Recommends: apport Filename: pool/main/a/apport/python-apport_2.14.1-0ubuntu3_all.deb Size: 74900 MD5sum: 56b9c609c21a18a40f63d1b17a51abbd SHA1: d934525128d11af8684bc0b9ab64c5bb6f654508 SHA256: b21302587ad87383786314de96ddfa8e5e4a4ccaaa11394a7ff9b6d417bd2181 Description: Python library for Apport crash report handling Homepage: https://wiki.ubuntu.com/Apport Description-md5: 23518535b15759d78d26010a6b43517a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-apt Priority: optional Section: python Installed-Size: 645 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: amd64 Version: 0.9.3.5 Provides: python2.7-apt Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libapt-inst1.5 (>= 0.8.11), libapt-pkg4.12 (>= 0.9.11), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), python-apt-common Recommends: lsb-release, iso-codes, xz-utils Suggests: python-apt-dbg, python-gtk2, python-vte, python-apt-doc Breaks: apt-forktracer (<< 0.3), apt-listchanges (<< 2.85), apt-p2p (<< 0.1.6), apt-xapian-index (<< 0.25), aptdaemon (<< 0.11+bzr343-1~), aptoncd (<< 0.1.98+bzr117), bcfg2 (<< 1.0.1), bzr-builddeb (<< 2.4), computer-janitor (<< 1.14.1-1+), debdelta (<< 0.41+), debpartial-mirror (<< 0.2.98), debsecan (<< 0.4.15), gdebi (<< 0.6.1), germinate (<< 1.21), gnome-codec-install (<< 0.4.5), mini-dinstall (<< 0.6.28), packagekit-backend-apt (<= 0.4.8-0ubuntu4), python-cdd (<< 0.0.10), python-dogtail (<< 0.6.1-3.1+), python-software-properties (<< 0.70.debian-1+), rebuildd (<< 0.3.9), software-center (<< 1.1.21debian2), tla-buildpackage (<< 0.9.14), ubuntu-dev-tools (<< 0.93debian1), unattended-upgrades (<< 0.42debian2), update-manager (<< 0.200.2-1), update-notifier (<< 0.99.3debian9), wajig (<< 2.0.46) Filename: pool/main/p/python-apt/python-apt_0.9.3.5_amd64.deb Size: 140570 MD5sum: bf975182c1eed07aefafebb260764815 SHA1: 775436de8c3f72e191c46905c80bcc72f4cd121d SHA256: 6084fa87f74099b329ea5caf5125f806dd1e02db9046b436b399796ef9b8d3d1 Description: Python interface to libapt-pkg Multi-Arch: allowed Description-md5: 2b295efc7c4e39a13486f5a6990ce22b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-apt-common Priority: standard Section: python Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: all Source: python-apt Version: 0.9.3.5 Replaces: python-apt (<< 0.7.98+nmu1) Depends: python | python3 Breaks: python-apt (<< 0.7.98+nmu1) Filename: pool/main/p/python-apt/python-apt-common_0.9.3.5_all.deb Size: 17290 MD5sum: 7a0b4faf10099baafe694a3a6dd11f4f SHA1: 1d33af54fc2b0dffcacb6991284b1fa92103a74f SHA256: 5e41b5943204dbdd993c0b523738c5f95212b84176d2e19d9f2555185776e0b1 Description: Python interface to libapt-pkg (locales) Enhances: python-apt, python3-apt Description-md5: 9486cdd426b423b724eaae43fef5dcd7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python-apt-dbg Priority: extra Section: python Installed-Size: 5551 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: amd64 Source: python-apt Version: 0.9.3.5 Depends: python-dbg, python-apt (= 0.9.3.5), libapt-inst1.5 (>= 0.8.11), libapt-pkg4.12 (>= 0.9.11), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Filename: pool/main/p/python-apt/python-apt-dbg_0.9.3.5_amd64.deb Size: 2315280 MD5sum: 47bd504a234a3adce63a2583294d6243 SHA1: 40f59659e63961763ff4a09fb648ead17f610676 SHA256: fb8e66bf798d7f3acf4cf45e796b027c186992f87c9ec7c5e68e00fde69f58fc Description: Python interface to libapt-pkg (debug extension) Multi-Arch: allowed Description-md5: c794a1d7769c7ce363f782474b040101 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-apt-dev Priority: optional Section: python Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: all Source: python-apt Version: 0.9.3.5 Depends: python-apt (>= 0.9.3.5), libapt-pkg-dev (>= 0.7.10) Recommends: python-dev Filename: pool/main/p/python-apt/python-apt-dev_0.9.3.5_all.deb Size: 7440 MD5sum: d6569cd088d7a046af8f14e5d810a49c SHA1: b35bda0babcc929d974e9b02444b716182a59cfe SHA256: 405a1f5e55b92c482b30b21f71fea2e299e2e59907bce641a9b243fd3743fd4d Description: Python interface to libapt-pkg (development files) Description-md5: 57c4bd1cc13f9b16f01048f636ef0d16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-apt-doc Priority: optional Section: doc Installed-Size: 1297 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: all Source: python-apt Version: 0.9.3.5 Replaces: python-apt (<< 0.7.94) Depends: libjs-jquery, libjs-underscore, python-apt, libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-apt/python-apt-doc_0.9.3.5_all.deb Size: 152324 MD5sum: 2821b5b858770c2ed0c4fff5795f01f9 SHA1: cd273fdbd10255892f45323fb4e94964eb7d6455 SHA256: 9b3ccc422fab9d8791db025dc0ce1c15fd67a75a8938c73d0d293d436abc7e9b Description: Python interface to libapt-pkg (API documentation) Enhances: python-apt Description-md5: 7a48d828395ece3f06a390d4c68abdd0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-aptdaemon Priority: extra Section: python Installed-Size: 448 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-apt (>= 0.8.5~ubuntu1), python-debian, python-defer, python-dbus, python-gi, gir1.2-glib-2.0, python-pkg-resources, iso-codes Recommends: aptdaemon Filename: pool/main/a/aptdaemon/python-aptdaemon_1.1.1-1ubuntu5_all.deb Size: 65938 MD5sum: 4f9606ac7bd64fd3afdb3ce0c15997d6 SHA1: 45fed39b8d2da1f78cacee7b2c50c4a6d2ec2fcc SHA256: aed6c071a3d5fa7a87c203b13c177c49cf23f8092ead132a5d0784299f2d72f8 Description: Python 2 module for the server and client of aptdaemon Homepage: https://launchpad.net/aptdaemon Description-md5: af231c48c418c5a683cb32aca40f79a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-aptdaemon.gtk3widgets Priority: extra Section: python Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Replaces: python-aptdaemon-gtk (<< 0.41+bzr582-0ubuntu1) Depends: python-aptdaemon (= 1.1.1-1ubuntu5), python-gi, gir1.2-gtk-3.0, gir1.2-vte-2.90, aptdaemon-data Conflicts: python-aptdaemon-gtk (<< 0.41+bzr582-0ubuntu1) Filename: pool/main/a/aptdaemon/python-aptdaemon.gtk3widgets_1.1.1-1ubuntu5_all.deb Size: 13684 MD5sum: d2e654fcddff8239de7618c3a398ccd8 SHA1: e32766a6412105352c053e17d5fde6a6e2efee73 SHA256: 45ca3f5a9ba70b920ceedb699f43c0630ea84936a34b3fc58b132239b1023570 Description: Python 2 GTK+ 3 widgets to run an aptdaemon client Homepage: https://launchpad.net/aptdaemon Description-md5: ee3f4b4132c327a33f42e41d36afbbb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-astroid Priority: optional Section: python Installed-Size: 298 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: astroid Version: 1.0.1-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-logilab-common (>= 0.60.0) Filename: pool/main/a/astroid/python-astroid_1.0.1-1_all.deb Size: 48508 MD5sum: 9a46fd0e227ab5f3a2e21f83903215d0 SHA1: 53cd3d745f9a854b49450572a29a2cf8030550aa SHA256: 9f7dd5767aa91c5b11b50e877dc78fc3129d51dbc2baeaf663bdcef6580903c2 Description: rebuild a new abstract syntax tree from Python's AST Homepage: http://www.astroid.org/ Description-md5: e39bd027177663ac42fd9d41d2b6154b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-avahi Priority: optional Section: python Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: avahi Version: 0.6.31-4ubuntu1 Provides: python2.7-avahi Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-gdbm (>= 2.4.3-1), libavahi-common-data (>= 0.6.22), python-dbus Filename: pool/main/a/avahi/python-avahi_0.6.31-4ubuntu1_amd64.deb Size: 8176 MD5sum: 6625291eec299de2d0637197a25c55c8 SHA1: aa9578d25624aaac7868987a4d41cf3fdb359cc7 SHA256: 0756b73e41570c83d5b3aedbd06474b4ddce6c5fd6237d2c42e354245abf0d1a Description: Python utility package for Avahi Homepage: http://avahi.org/ Description-md5: 093e21cc6d98e14410050c8edd9d6fe2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-babel Priority: optional Section: python Installed-Size: 395 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.3+dfsg.1-2ubuntu1 Depends: python-babel-localedata (= 1.3+dfsg.1-2ubuntu1), python-pkg-resources, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any, python-tz Filename: pool/main/p/python-babel/python-babel_1.3+dfsg.1-2ubuntu1_all.deb Size: 68964 MD5sum: 116fb963a65da253773cb3be6ca287d6 SHA1: 63644122e32533a9a99e9f23e0b9aa852ffb351e SHA256: 5491c34d3885a4f09cb51990115a34c23c155326e5c3de4ae9555dcddcf13324 Description: tools for internationalizing Python applications - Python 2.x Homepage: http://babel.pocoo.org/ Description-md5: 5e6a3ac9eaed3843484d2718c2f9d35d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-babel-doc Priority: optional Section: doc Installed-Size: 774 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-babel Version: 1.3+dfsg.1-2ubuntu1 Replaces: python-babel (<< 1.3-1) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-babel (<< 1.3-1) Filename: pool/main/p/python-babel/python-babel-doc_1.3+dfsg.1-2ubuntu1_all.deb Size: 150924 MD5sum: 56521a38c173bd383ff44f4c4a2265ce SHA1: 64646cd4245791365212d08a4cf36fbf63bc50ef SHA256: 71578ed25d1d368119edd76754a3a48019e2943a5c8195874e10fd4e04a73c28 Description: tools for internationalizing Python applications - documentation Homepage: http://babel.pocoo.org/ Description-md5: 4f74ab1584e691c235ee789840cca103 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-babel-localedata Priority: optional Section: python Installed-Size: 8541 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-babel Version: 1.3+dfsg.1-2ubuntu1 Filename: pool/main/p/python-babel/python-babel-localedata_1.3+dfsg.1-2ubuntu1_all.deb Size: 1927990 MD5sum: d674d916062362f39ebfd777115ae6bf SHA1: 114c92180a70adcaed783c67edf6ef435234037d SHA256: e5f3e3ca7a9127a90663eb34c2c3548e04194f8443ce968479e5c9e4670af9f2 Description: tools for internationalizing Python applications - locale data files Homepage: http://babel.pocoo.org/ Description-md5: ebab9984b05e3d588082935526c691e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-beanstalkc Priority: optional Section: python Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: beanstalkc Version: 0.3.0-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-yaml Suggests: beanstalkd Filename: pool/main/b/beanstalkc/python-beanstalkc_0.3.0-2build1_all.deb Size: 10808 MD5sum: b177ff60f3fc9ae584e409e53019e0cc SHA1: 275675a0424b067ab394030d1a1402d3094b345c SHA256: e84991392878b2bb6e2145961ce3ff40928d8d4ecf8244516fb9a4a1e9447341 Description: simple beanstalkd client library for Python Homepage: https://github.com/earl/beanstalkc Description-md5: 550d37d546ba115ecf6ebb52607af71f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-billiard Priority: optional Section: python Installed-Size: 363 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: billiard Version: 3.3.0.15-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.15) Suggests: python-billiard-doc Filename: pool/main/b/billiard/python-billiard_3.3.0.15-1ubuntu1_amd64.deb Size: 70378 MD5sum: 212caf74524885c5ab77f9b1bb83af34 SHA1: 471c68147f8e6fa2595edcfa564dd41d52733b03 SHA256: 6dc6a230b21f5316a30e205262285dcf3af0d604c16109d778f9e5b76c58b46a Description: Multiprocessing Pool Extensions for Python Homepage: https://github.com/celery/billiard Description-md5: cc54d1dc3b39cfbcd0f242977fa3a1d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-billiard-doc Priority: optional Section: doc Installed-Size: 597 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: billiard Version: 3.3.0.15-1ubuntu1 Depends: libjs-jquery, libjs-sphinxdoc (>= 1.0) Filename: pool/main/b/billiard/python-billiard-doc_3.3.0.15-1ubuntu1_all.deb Size: 71900 MD5sum: d28712d927b4f443ae6ef2e8593e4729 SHA1: 1785df7f70f2fd7c70f5ae6f317520f9e4645b2e SHA256: 7693354b2f32e336f336540d96601272a51d0c1fca592726098d50f8d8b47097 Description: Multiprocessing Pool Extensions for Python (Documentation) Homepage: https://github.com/celery/billiard Description-md5: b0aba88f799c7680898d639f8974020c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-blinker Priority: optional Section: python Installed-Size: 200 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: blinker Version: 1.3.dfsg1-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/b/blinker/python-blinker_1.3.dfsg1-1ubuntu2_all.deb Size: 29772 MD5sum: 1084d75f917fed1cd00fe11edd5695e6 SHA1: 3d4c2d320fd699cfb89125545906cf8e703c055b SHA256: bdb906d432712d3299619ca1ebd438e2a5015fbc69564782887094492d953a5b Description: Fast, simple object-to-object and broadcast signaling library Homepage: http://pythonhosted.org/blinker/ Description-md5: 8356f57b8812ba9febee8d4bff066108 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-boto Priority: optional Section: python Installed-Size: 3989 Maintainer: Ubuntu Developers Original-Maintainer: Eric Evans Architecture: all Version: 2.20.1-2ubuntu2 Provides: python2.7-boto Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-requests Filename: pool/main/p/python-boto/python-boto_2.20.1-2ubuntu2_all.deb Size: 617926 MD5sum: dea56cd0b6d15986d8d950c12a711cb7 SHA1: b3eaee294ddc972964a27cb659a90d0595b0115f SHA256: f5e5d6487aef905cfe727c4cb21bccad3140c746a6b08eaa784269a9439c6718 Description: Python interface to Amazon's Web Services Homepage: https://github.com/boto/boto Description-md5: ff8d0e24eb690ec98d55cc9351614981 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: python-bs4 Priority: optional Section: python Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: beautifulsoup4 Version: 4.2.1-1ubuntu2 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~) Recommends: python-chardet, python-lxml | python-html5lib Filename: pool/main/b/beautifulsoup4/python-bs4_4.2.1-1ubuntu2_all.deb Size: 58000 MD5sum: 88cdf603cfadcea1434107d4ffe454bd SHA1: d5fce2624778fc10a2671abc4bbd1ce23d274307 SHA256: 5e08a8fd2ba2134fd364f71e4c7f686e2f4ced42135d68d9f4327127651b2596 Description: error-tolerant HTML parser for Python Homepage: http://www.crummy.com/software/BeautifulSoup Description-md5: 09324a3331a4b1802471f3e7988a88cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-bs4-doc Priority: optional Section: doc Installed-Size: 493 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: beautifulsoup4 Version: 4.2.1-1ubuntu2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/b/beautifulsoup4/python-bs4-doc_4.2.1-1ubuntu2_all.deb Size: 86848 MD5sum: f4a1ab59f73b0494cad1da8fdcf3e1e2 SHA1: 3cb2a75301ade5a1c488b9cf72e61fd538976477 SHA256: 30175c6447422be826b90137a53ca86e21f18890a2090ef19fe4790d57ea3c9f Description: error-tolerant HTML parser for Python - documentation Homepage: http://www.crummy.com/software/BeautifulSoup Description-md5: 5fc5e5fb9c30054fd6d7ffda012debab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-bsddb3 Priority: optional Section: python Installed-Size: 337 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Version: 6.0.1-1build1 Provides: python2.7-bsddb3 Depends: libc6 (>= 2.14), libdb5.3, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-bsddb3-dbg Filename: pool/main/p/python-bsddb3/python-bsddb3_6.0.1-1build1_amd64.deb Size: 70748 MD5sum: b01736a351ba3b3c381fc3bc8c4d4211 SHA1: 7aec6469c1cd1a22f089ab00b5f040f09e073382 SHA256: 6fac7e15f2490cd08d74baa0a8d5fd34a1ff48de40f4facf4b656c54d81e74a5 Description: Python interface for Berkeley DB Homepage: http://pypi.python.org/pypi/bsddb3/ Description-md5: f7139ce9fe8bab9314dd91598a006c62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-bsddb3-dbg Priority: extra Section: python Installed-Size: 855 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-bsddb3 Version: 6.0.1-1build1 Provides: python2.7-bsddb3-dbg Depends: python-bsddb3 (= 6.0.1-1build1), python-dbg, libc6 (>= 2.14), libdb5.3 Filename: pool/main/p/python-bsddb3/python-bsddb3-dbg_6.0.1-1build1_amd64.deb Size: 186780 MD5sum: 41fc7405cc99fc599b31b183cea18a43 SHA1: f37d54d13865e99b3b93554e81403046772dd7a2 SHA256: 6038d59c3a6cdba86da2d5b2f4a945b5d47abef8eada0b6911da9999705dd090 Description: Python interface for Berkeley DB (debug extension) Homepage: http://pypi.python.org/pypi/bsddb3/ Description-md5: 3277e73ecffb5de543afbcdebd68ee15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-bsddb3-doc Priority: optional Section: doc Installed-Size: 446 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-bsddb3 Version: 6.0.1-1build1 Depends: libjs-jquery Suggests: python-bsddb3 | python3-bsddb Filename: pool/main/p/python-bsddb3/python-bsddb3-doc_6.0.1-1build1_all.deb Size: 76778 MD5sum: f32a3c95c4d432a5d3135cf87fddb9b2 SHA1: 882919c677297a27a10702bea6a57d8154d07628 SHA256: f39e6fdcd8db4dec2e157fead2f2acafed8675a72e52adb66823ae5765d28a0e Description: Documentation for the python Berkeley DB interface module Homepage: http://pypi.python.org/pypi/bsddb3/ Description-md5: f39a0315de65c5dc31ac83012068abe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-bson Priority: optional Section: python Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: amd64 Source: pymongo Version: 2.6.3-1build1 Provides: python2.7-bson Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-bson-ext Filename: pool/main/p/pymongo/python-bson_2.6.3-1build1_amd64.deb Size: 18374 MD5sum: 8c6b1fd703e40aac4f4c08a12f0fc2c6 SHA1: 505a99501278f8c964884a7c8a940a1d8c67ac1a SHA256: 46d5f78ff22a037d164a7d0d9865bdf392b32b69da717585b01e9e86ab50fda6 Description: Python implementation of BSON for MongoDB Homepage: http://api.mongodb.org/python/ Description-md5: 24c9d1f8de40c146a0ea5c924447b746 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-bson-ext Priority: optional Section: python Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: amd64 Source: pymongo Version: 2.6.3-1build1 Provides: python2.7-bson-ext Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.14), python-bson (= 2.6.3-1build1) Filename: pool/main/p/pymongo/python-bson-ext_2.6.3-1build1_amd64.deb Size: 17470 MD5sum: 9e482b83b8a324c98553a4b9ca4fd4f1 SHA1: 718c07208390efbd76728813895b6e33664d4220 SHA256: 2da4e3ccf37d932f9b9550bcc21bd243ad0f00218bc18ecd8b8b93bf558ca456 Description: C-coded extension to the python-bson package Homepage: http://api.mongodb.org/python/ Description-md5: 24b483279d6d0f416623936f52653bcc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-bzrlib Priority: optional Section: python Installed-Size: 8128 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: amd64 Source: bzr Version: 2.6.0+bzr6593-1ubuntu1 Replaces: bzr (<< 2.3.0-2), bzr-grep Provides: bzr-grep, python2.7-bzrlib Depends: python-configobj, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14) Recommends: ca-certificates, python-launchpadlib, python-paramiko Suggests: python-bzrlib-dbg, python-bzrlib.tests, python-gpgme, python-kerberos (>= 1.0+svn2455-1), python-pycurl, xdg-utils Breaks: bzr (<< 2.3.0-2), bzr-grep Filename: pool/main/b/bzr/python-bzrlib_2.6.0+bzr6593-1ubuntu1_amd64.deb Size: 1345396 MD5sum: b4e61174a7e5a7af153d2fa1fa2e48f8 SHA1: 08765f87d7f79f14d7f53b927c26a4b06d44d8ca SHA256: 09d087fcb8ce9f85d67cc2c95359270f5b38c4801c0864ba0ea7f510504a0c90 Description: distributed version control system - python library Homepage: http://bazaar-vcs.org Description-md5: 3d08f93122d35b20ee3a263e2354a06f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-bzrlib-dbg Priority: extra Section: debug Installed-Size: 5865 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: amd64 Source: bzr Version: 2.6.0+bzr6593-1ubuntu1 Provides: python2.7-bzrlib-dbg Depends: python-bzrlib (= 2.6.0+bzr6593-1ubuntu1), python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.14) Suggests: python-gpgme-dbg, python-lzma-dbg, python-meliae-dbg Filename: pool/main/b/bzr/python-bzrlib-dbg_2.6.0+bzr6593-1ubuntu1_amd64.deb Size: 1929442 MD5sum: 10cf6263c11ed7769c398eabade7d2fa SHA1: 21b8c62f042b5097e065245939ee24cd024ba658 SHA256: 41fe125f62b51c8a5364b972ba66a4672b032bfb9062155ca2d9b6c3be0d871d Description: distributed version control system - debug extension Homepage: http://bazaar-vcs.org Description-md5: 1674dbc86c155feffa7c032457b9315d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-bzrlib.tests Priority: optional Section: python Installed-Size: 8003 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: all Source: bzr Version: 2.6.0+bzr6593-1ubuntu1 Replaces: python-bzrlib (<< 2.4.0~beta1-2) Provides: python2.7-bzrlib.tests Depends: python-bzrlib (<= 2.6.0+bzr6593-1ubuntu1.1~), python-bzrlib (>= 2.6.0+bzr6593-1ubuntu1), python-testtools (>= 0.9.5~), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-subunit Breaks: python-bzrlib (<< 2.4.0~beta1-2) Filename: pool/main/b/bzr/python-bzrlib.tests_2.6.0+bzr6593-1ubuntu1_all.deb Size: 1009964 MD5sum: c8b0c20997c5255b5e4f126d4129dc0c SHA1: e336031232e5cc574eaec16d45d778df4b7489d9 SHA256: 449e323449e07861d6f551ab44111a9b54b359370027c05b6f81c34e03bb2eb3 Description: distributed version control system - testsuite Homepage: http://bazaar-vcs.org Description-md5: 6a061202c9118fa07cacafd938b725f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-cairo Priority: optional Section: python Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pycairo Version: 1.8.8-1ubuntu5 Provides: python2.7-cairo Depends: libc6 (>= 2.14), libcairo2 (>= 1.8.6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/pycairo/python-cairo_1.8.8-1ubuntu5_amd64.deb Size: 39934 MD5sum: 1b05c4e150bf5df78cf80be782cf2671 SHA1: 1c480fb3658741340857fb2d9361d8856e4aed7d SHA256: 7fbaf36f11e0eded063ef32a62e5c56a52ae8822d8578103c81c714629b1784d Description: Python bindings for the Cairo vector graphics library Homepage: http://cairographics.org/pycairo/ Description-md5: 00cd97c8f1191cab146612a823238c72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-cairo-dbg Priority: extra Section: python Installed-Size: 533 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pycairo Version: 1.8.8-1ubuntu5 Provides: python2.7-cairo-dbg Depends: python-cairo (= 1.8.8-1ubuntu5), python-dbg, libc6 (>= 2.14), libcairo2 (>= 1.8.6) Filename: pool/main/p/pycairo/python-cairo-dbg_1.8.8-1ubuntu5_amd64.deb Size: 97892 MD5sum: 99b1426fbbc2b8e45dff2550271c8f7c SHA1: b1ae4edca245523109024bfbe8f260ba822632d6 SHA256: f4c314c0fbb650ab042495f7e7abd0a8700fbf9e2ba7172c7d1b24a9b8a732db Description: Python bindings for the Cairo vector graphics library (debug extension) Homepage: http://cairographics.org/pycairo/ Description-md5: 55ab0a294ecf91d25bb46fefb66a38ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-cairo-dev Priority: optional Section: python Installed-Size: 1150 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pycairo Version: 1.8.8-1ubuntu5 Depends: python-cairo (>= 1.8.8-1ubuntu5), libjs-jquery Filename: pool/main/p/pycairo/python-cairo-dev_1.8.8-1ubuntu5_all.deb Size: 432478 MD5sum: add6846d640032e33e0c134defab324b SHA1: 6a55ffa7eb842352f171e50fda3821b3812264eb SHA256: add5c553f706e4d3b49ef50f22bbfb5bafa42667dd58022bd508fe37c36a195e Description: Python cairo bindings: development files Homepage: http://cairographics.org/pycairo/ Description-md5: 9b9930dd3b007476c2d691b435f4e76a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-cddb Priority: optional Section: python Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Michael Banck Architecture: amd64 Version: 1.4-5.1ubuntu2 Provides: python2.7-cddb Depends: libc6 (>= 2.7), python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/p/python-cddb/python-cddb_1.4-5.1ubuntu2_amd64.deb Size: 14398 MD5sum: f6e04829e89d0a34a6fdf0aab608744f SHA1: 5d1b8af8a8511ecccf8a8782d071b7f0023f25f7 SHA256: 906fae4d11d1c5bc9696df559ab070dd1402a4ff9190d77244cd41a8776875d9 Description: Python interface to CD-IDs and FreeDB Description-md5: 838c414ea893d464539e5e25ed077d79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ceilometer Priority: optional Section: python Installed-Size: 7295 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: alembic (>= 0.6.0), python-msgpack, python-anyjson (>= 0.3.3), python-ceilometerclient (>= 1.0.6), python-eventlet (>= 0.13.0), python-flask (>= 0.10), python-glanceclient (>= 1:0.9.3), python-happybase (>= 0.4), python-iso8601 (>= 0.1.8), python-keystoneclient (>= 1:0.4.1), python-kombu (>= 2.4.8), python-lxml (>= 2.3), python-lockfile (>= 0.8), python-migrate, python-netaddr, python-novaclient (>= 1:2.15.0), python-oslo.config (>= 1:1.2.0), python-pecan (>= 0.2.0), python-pymongo (>= 2.6), python-six (>= 1.4.1), python-yaml (>= 3.1.0), python-requests (>= 1.1), python-sqlalchemy (>= 0.8.2), python-stevedore (>= 0.12), python-swiftclient (>= 1.5), python-webob (>= 1.2.3), python-wsme (>= 0.5b6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-croniter, python-jsonpath-rw, python-jsonschema, python-oslo.vmware, python-pbr, python-tz, python-sqlalchemy (<< 0.9) Suggests: python-pysnmp4 Filename: pool/main/c/ceilometer/python-ceilometer_2014.1-0ubuntu1_all.deb Size: 518776 MD5sum: 911f9a8528874c23d350a7592cfe556a SHA1: 67600e1c67dcf651aab6b8902ad5a118e0d1bdc5 SHA256: 985b4584db41361198c7a806722b7b3ac8cbae1527040619a0ed6ceb4fe20065 Description: ceilometer python libraries Description-md5: 69980abacf26c316054912129c1d53ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ceilometerclient Priority: extra Section: python Installed-Size: 348 Maintainer: Chuck Short Architecture: all Version: 1.0.8-0ubuntu1 Depends: python-prettytable (>= 0.6), python-keystoneclient (>= 0.3.2), python-httplib2, python-iso8601, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-six Filename: pool/main/p/python-ceilometerclient/python-ceilometerclient_1.0.8-0ubuntu1_all.deb Size: 47986 MD5sum: 3b2691f75c2dac864d2114f5207a9fac SHA1: 089a9d652e1f334e2228bdd02fa07dd31125af29 SHA256: 23d982d6ce805048651eac4a2b9dc7608d89adac2c5ce59335e2497caf8d39f3 Description: Client library for Openstack ceilometer server. Homepage: http://launchpad.net/ceilometer Description-md5: 8360711c53b0232a05d62ddd46e3d049 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-celery Priority: optional Section: python Installed-Size: 1886 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: celery Version: 3.1.6-1ubuntu1 Depends: python-billiard (>= 3.3.0.13), python-cl, python-dateutil (>= 1.5), python-kombu (>= 3.0.7), python-mailer, python-memcache, python-pkg-resources, python-pyparsing, python-tz, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-gevent, python-pytyrant, python-redis, python-sqlalchemy, python-celery-doc Filename: pool/main/c/celery/python-celery_3.1.6-1ubuntu1_all.deb Size: 330590 MD5sum: f625499c40a8b9c8988c3a8b9502822e SHA1: 2c2db53c55581f2593749bf74c665bdb49f75d8d SHA256: f7071f0c89b0f77b3eace53fdef6573fa8f3c4badeb976756e209f64bb44fdf4 Description: async task/job queue based on message passing Homepage: http://www.celeryproject.org/ Description-md5: 2a87703913499114efcab0bb9254c601 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-celery-doc Priority: optional Section: doc Installed-Size: 10228 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: celery Version: 3.1.6-1ubuntu1 Depends: libjs-jquery, libjs-sphinxdoc (>= 1.0) Filename: pool/main/c/celery/python-celery-doc_3.1.6-1ubuntu1_all.deb Size: 1285684 MD5sum: 75291d431ffdbe829c2ced01184e461d SHA1: 1e1647fba0618a6b2931ee50a2384845607cc348 SHA256: 8a79d11ee0de7ab55d268c4b3cdb93651d88e83a5d89d73fd2d87f715916e5a7 Description: async task/job queue based on message passing (Documentation) Homepage: http://www.celeryproject.org/ Description-md5: 95fc6dff7380be4c62fe3af0892bcc80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ceph Priority: optional Section: python Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Provides: python2.7-ceph Depends: libcephfs1 (= 0.79-0ubuntu1), librados2 (= 0.79-0ubuntu1), librbd1 (= 0.79-0ubuntu1), python-flask, python-requests, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/c/ceph/python-ceph_0.79-0ubuntu1_amd64.deb Size: 35086 MD5sum: 63636972746e31978fc2a176e0025d93 SHA1: 23bb5db11e804b975d2a9bb135db094f15429b2c SHA256: 5e001adf9fd764b6b03dec79b3db4ec4eb2a78c864b4e7ad6046d3edea1c58da Description: Python libraries for the Ceph distributed filesystem Homepage: http://ceph.com/ Description-md5: 0a80206bd610ad5550e3d80267effede Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-chardet Priority: optional Section: python Installed-Size: 569 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: chardet Version: 2.0.1-2build2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/c/chardet/python-chardet_2.0.1-2build2_all.deb Size: 106256 MD5sum: a4e008069af3cb800d58c7f13cb3c7ed SHA1: 3b8d252416dbe56bfab86d380085d657803f396f SHA256: 067e220937204942b45607097559d0c34fd703f6cdd7810a3eba6579ad1efff5 Description: universal character encoding detector Homepage: http://chardet.feedparser.org/ Description-md5: bebcbed8458764811c9f4b4c12489fdd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-cheetah Priority: optional Section: text Installed-Size: 771 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Fontaine Architecture: amd64 Source: cheetah Version: 2.4.4-3.fakesyncbuild1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any, libc6 (>= 2.2.5) Suggests: python-markdown (>= 2.0.1), python-pygments, python-memcache Filename: pool/main/c/cheetah/python-cheetah_2.4.4-3.fakesyncbuild1_amd64.deb Size: 143868 MD5sum: 800d75a71e9022b10c40f6019d7fa69d SHA1: 8f16e275223f283a38e8c96f449d39650aa3d54b SHA256: 9c68d7179b6c2ae17d73485cfc145603cee66cde79491d8e79e1bc173faed26c Description: text-based template engine and Python code generator Homepage: http://www.cheetahtemplate.org/ Description-md5: 7ea556f71dbb09af303eee70f24822f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-cherrypy3 Priority: optional Section: python Installed-Size: 21428 Maintainer: Ubuntu Developers Original-Maintainer: Gustavo Noronha Silva Architecture: all Source: cherrypy3 Version: 3.2.2-4ubuntu5 Depends: python-routes Conflicts: python-cherrypy Filename: pool/main/c/cherrypy3/python-cherrypy3_3.2.2-4ubuntu5_all.deb Size: 1209482 MD5sum: 0808cc717dbdcb232130c0232c919766 SHA1: c5482c306cf90fee12ecee8a3d5a34b6d7103930 SHA256: 38f6c0abf4ae5242955259178dd14b18cfdeb6ae1420ba7440d289177701d6e0 Description: Python web development framework - version 3 Homepage: http://www.cherrypy.org/ Description-md5: 10d84de63e31c2843a033a057faf9d79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-cinder Priority: extra Section: net Installed-Size: 26864 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Depends: python-amqplib (>= 0.6.1), python-anyjson (>= 0.3.3), python-babel, python-eventlet (>= 0.13.0), python-glanceclient (>= 1:0.9.0), python-greenlet (>= 0.3.2), python-iso8601, python-keystoneclient (>= 1:0.3.0), python-kombu (>= 2.5.12), python-lockfile, python-lxml (>= 2.3), python-migrate, python-netaddr, python-novaclient (>= 1:2.12.0), python-oslo.config (>= 1:1.1.0), python-oslo.messaging, python-paramiko (>= 1.8), python-paste, python-pastedeploy, python-routes, python-six (>= 1.4.1), python-sqlalchemy (>= 0.8.2), python-stevedore (>= 0.10), python-suds, python-swiftclient (>= 1:1.5), python-taskflow, python-webob (>= 1.2.3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-oslo.rootwrap, python-requests, python-sqlalchemy (<< 0.9) Suggests: python-ceph, python-hp3parclient Filename: pool/main/c/cinder/python-cinder_2014.1-0ubuntu1_all.deb Size: 843672 MD5sum: a71cf7ac0e23207502c6f29d620b0427 SHA1: c9370622ce2bc1f24ff401cd15e62c0ac4c669ab SHA256: 9605fca89ecab78bc61b0e43302dc78fb923e39f311faa834f767feb6cdce838 Description: Cinder Python libraries Homepage: http://launchpad.net/cinder Description-md5: 306e549f267870a6b2c0790521663c58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cinderclient Priority: optional Section: python Installed-Size: 685 Maintainer: Chuck Short Architecture: all Version: 1:1.0.8-0ubuntu1 Depends: python-prettytable (>= 0.6), python-requests (>= 1.1), python-simplejson (>= 2.0.9), python-babel, python-six, python-pkg-resources, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr Filename: pool/main/p/python-cinderclient/python-cinderclient_1.0.8-0ubuntu1_all.deb Size: 72240 MD5sum: e59e5205ebe2f6e32059cf05c7fc171a SHA1: 887e2a9e960e54e632f0ec19daf32150371d6dee SHA256: b3ef236a9545b2f698b833d8e35f7b125fc8c75faf7cea0e11e76a8b251a462b Description: python bindings to the OpenStack Volume API Description-md5: 879903d266dc4aabcfb1035f48ee9af2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cl Priority: optional Section: python Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.0.3-1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8), python-kombu Filename: pool/main/p/python-cl/python-cl_0.0.3-1_all.deb Size: 16058 MD5sum: 203c46f26b9baaf3bc8cef76a89e6f80 SHA1: 48632d9a1310cba14c3fa8ba2854f14053cdc3c6 SHA256: 7bcd3e85587374076677421ea6763b258a922dd2cd9d2988057d44caca2a5905 Description: Actor framework for Kombu Homepage: https://github.com/ask/cl Description-md5: ff9e9e5435578e1afb0791288197dc89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cliff Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.4.5-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-prettytable, python-pyparsing, python-cmd2 Recommends: python-cliff-doc (= 1.4.5-1ubuntu2) Filename: pool/main/p/python-cliff/python-cliff_1.4.5-1ubuntu2_all.deb Size: 16676 MD5sum: 77efcbc29f0887ee643ffff5aae1e7ca SHA1: 950a69c7d7a0c474b1d686e9351e453469478cae SHA256: 7406d215193443f30941311beb10ef82df9eebd090c2ba05a1d65dce465888b7 Description: command line interface formulation framework - Python 2.x Homepage: https://github.com/dreamhost/cliff Description-md5: 223752b60fcc9abd3243eec33e1472f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cliff-doc Priority: extra Section: doc Installed-Size: 261 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-cliff Version: 1.4.5-1ubuntu2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-cliff/python-cliff-doc_1.4.5-1ubuntu2_all.deb Size: 40776 MD5sum: 2db34045cf9a8edf0eec7dc00197ebdd SHA1: 856a18aa7f1f23e6b0b37302a8fed049bdb65cde SHA256: cd9874a6a495a521670a799a5475124dc2edfae79968a3a146f94c2df1a264f3 Description: command line interface formulation framework documentation Homepage: https://github.com/dreamhost/cliff Description-md5: 910a23f547d040b0d490f6fb1f1ccd5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cloudfiles Priority: extra Section: python Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.7.11-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-cloudfiles/python-cloudfiles_1.7.11-2build1_all.deb Size: 19720 MD5sum: 28af17a762e395d355a37c31de614bc5 SHA1: 533adfdc4fecc8a4b063ace8989b27e862d34d44 SHA256: 38f239bb802b4b634ccc4578582d207750685645593c17f956d95ee72f02183b Description: Python language bindings for Cloud Files API Homepage: https://github.com/rackerlabs/python-cloudfiles Description-md5: a4b587d9831cd6010420ba97b0346294 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: python-cmd2 Priority: optional Section: python Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: all Source: cmd2 Version: 0.6.7-2fakesync1build1 Provides: python2.7-cmd2 Depends: python-pyparsing (>= 2.0.1), python-setuptools (>= 0.6.14), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/c/cmd2/python-cmd2_0.6.7-2fakesync1build1_all.deb Size: 22214 MD5sum: 9b2fea5232b418bee0ae8144aee42e6b SHA1: 94856d40aabd4354934f474b786abe668e0b9755 SHA256: b7306f69233c7587e5fd4520144d340a73f58bb569aaf54d7b9c541cb3e5f3a2 Description: enhanced Python cmd module - Python 2.x Homepage: https://bitbucket.org/catherinedevlin/cmd2 Description-md5: 3388e979ddd67bb68046600a4f3eaa4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-commandnotfound Priority: optional Section: python Installed-Size: 61 Maintainer: Michael Vogt Original-Maintainer: Zygmunt Krynicki Architecture: all Source: command-not-found Version: 0.3ubuntu12 Replaces: command-not-found (<< 0.3ubuntu7) Depends: command-not-found-data, lsb-release, python-apt, python-gdbm, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: command-not-found (<< 0.3ubuntu7) Filename: pool/main/c/command-not-found/python-commandnotfound_0.3ubuntu12_all.deb Size: 5680 MD5sum: eba2dfacbc5a76f1d73c98dbe11ce728 SHA1: 755e943452d0acfacf4f573200fa2e38ebc81cb2 SHA256: 96c625105f0e9bb71b596a0d3b7de1ae9dec015e62c4a50dadf0e45252530f63 Description: Python 2 bindings for command-not-found. Description-md5: d96337be6b5fd670c35436523ffa3712 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-compressor Priority: optional Section: python Installed-Size: 375 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-django-compressor Version: 1.3-1ubuntu3 Provides: python2.7-compressor Depends: python-appconf, python-django (>= 1.1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-django-compressor/python-compressor_1.3-1ubuntu3_all.deb Size: 54990 MD5sum: 20f4b4477a68e5e6c78598a2338cf2c1 SHA1: 327e62f735da6e41310e3ed1fe47af8ad31bda5a SHA256: 71225ed162465a88f28e0c671ee7376d5a9cd1b608af33413e8a5342963cea0a Description: Compresses linked and inline JavaScript or CSS into single cached files Homepage: http://pypi.python.org/pypi/django_compressor/ Description-md5: 8909097d9aa253021150275739bfd61b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-concurrent.futures Priority: optional Section: python Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 2.1.6-3 Provides: python-futures Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-concurrent.futures/python-concurrent.futures_2.1.6-3_all.deb Size: 32848 MD5sum: be8dfea9cff116aafc7c25491d304ead SHA1: 11a052bfed42339bc2a6fc4019dc415dc0e62bb0 SHA256: 9925b6d390af90b4f252ed02a9e07d3e706eb6769a4dc6abdb0fb4e9b83084f8 Description: backport of concurrent.futures package from Python 3.2 Homepage: http://code.google.com/p/pythonfutures/ Description-md5: cb9ad20cdd73d1557a337a8086cff30f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-configobj Priority: optional Section: python Installed-Size: 1523 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: configobj Version: 4.7.2+ds-5build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/c/configobj/python-configobj_4.7.2+ds-5build1_all.deb Size: 174154 MD5sum: e22c1f8dfb0ca0d36441c3166639beaa SHA1: 296ef10b82655acacb77e0368c64c32edaa342bc SHA256: 31b8bfa74c27605427f801aac708ce1fcf0cc5a6231939cb66263def2b336c35 Description: simple but powerful config file reader and writer for Python Homepage: http://www.voidspace.org.uk/python/configobj.html Description-md5: 6a7071a9d2e152114e27b4b5022af030 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server Package: python-convoy Priority: extra Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Architecture: all Source: convoy Version: 0.2.1+bzr20-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-paste Filename: pool/main/c/convoy/python-convoy_0.2.1+bzr20-0ubuntu2_all.deb Size: 8630 MD5sum: 1cdf0e70719a7d2cff02c429827e19c6 SHA1: dd8ed1d324b8899bf730453e806709a2da03b885 SHA256: 9777dbd9c1ae61be2512ccdb47b911ae13ab9aaae6b6c72ec525dfb793e834db Description: WSGI app for loading multiple files in the same request Homepage: https://launchpad.net/convoy Description-md5: 3e8535360f7cd75b601103f8952b4815 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-coverage Priority: optional Section: python Installed-Size: 335 Maintainer: Ubuntu Developers Original-Maintainer: Ben Finney Architecture: amd64 Version: 3.7.1+dfsg.1-1ubuntu2 Depends: python-pkg-resources, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.2.5) Recommends: libjs-jquery-hotkeys, libjs-jquery-isonscreen, libjs-jquery-tablesorter, libjs-jquery Filename: pool/main/p/python-coverage/python-coverage_3.7.1+dfsg.1-1ubuntu2_amd64.deb Size: 69274 MD5sum: 6e41e84dd8eaa881da49cf12414f2353 SHA1: 586489aa56ad955cf59fecc1ce2bd908e21bdc1f SHA256: 0396f1eb9fa138645d8d9340fb860b6328384b6e00fdd07a9374f86f8606ed2f Description: code coverage tool for Python 2 Homepage: http://nedbatchelder.com/code/coverage/ Description-md5: 14c3b431e2a6ada3274ee91e18a0b49c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-coverage-dbg Priority: extra Section: debug Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Ben Finney Architecture: amd64 Source: python-coverage Version: 3.7.1+dfsg.1-1ubuntu2 Depends: python-coverage (= 3.7.1+dfsg.1-1ubuntu2), libc6 (>= 2.2.5) Recommends: python-dbg Filename: pool/main/p/python-coverage/python-coverage-dbg_3.7.1+dfsg.1-1ubuntu2_amd64.deb Size: 24030 MD5sum: 61d2a96f0a696324b2a96c29fbc599c4 SHA1: 85d55025bb24fb731b54b0207fcb8a543dec43b4 SHA256: a6de6461fdb7de216eeca5b228d5fde7e59cbb78ecc562eee9b1b31a406fbdb8 Description: code coverage tool for Python 2 – debug library Homepage: http://nedbatchelder.com/code/coverage/ Description-md5: b112f3389d0e2fb9ef3c7a3cc0c80ae9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-crochet Priority: optional Section: python Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: MAAS Maintainers Architecture: all Source: crochet Version: 1.0.0-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-twisted Filename: pool/main/c/crochet/python-crochet_1.0.0-0ubuntu2_all.deb Size: 17486 MD5sum: 1b8db5e5f63bd924b9c06015cbc63667 SHA1: 40e3f86750675b1a1cb8243fd408f92f661aa47e SHA256: 0c61883b2410e78985c8a0f382148a6c7165b2591c6ae8f5dd37bf36722fc041 Description: Use Twisted Anywhere! Homepage: https://pypi.python.org/pypi/crochet Description-md5: b43a03a359a1ed6465a807e681fad4c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-croniter Priority: optional Section: python Installed-Size: 91 Maintainer: Chuck Short Architecture: all Version: 0.3.4-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-dateutil, python-pkg-resources Filename: pool/main/p/python-croniter/python-croniter_0.3.4-0ubuntu1_all.deb Size: 9666 MD5sum: cad5235306fd0714cc630eef59836bba SHA1: 3e10e8793b5bbcf416fa0ce8d5fb3e93d834734b SHA256: fd4bba2e460790c8c2d019fa2e94dfcc555259b28ae90c1a6f8fde1720538bcd Description: datetime iteration with cron format Description-md5: 340fc86fefe94ddd97f93a564f402e7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-crypto Priority: optional Section: python Installed-Size: 1384 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Ramacher Architecture: amd64 Version: 2.6.1-4build1 Provides: python2.7-crypto Depends: python (<< 2.8), python (>= 2.7~), python:any (>= 2.7.5-5~), libc6 (>= 2.14), libgmp10 Suggests: python-crypto-dbg, python-crypto-doc Breaks: python-keyring (<= 0.7.1-1) Filename: pool/main/p/python-crypto/python-crypto_2.6.1-4build1_amd64.deb Size: 239394 MD5sum: 14de358cc59ab40ee9c90f3582591f79 SHA1: 552bac3cbfa8bc136249a85ddde5318045aefc38 SHA256: 1532caeb20dc1621d868bb9fef237aa2e72461537293ca161959b033719add0d Description: cryptographic algorithms and protocols for Python Homepage: http://www.pycrypto.org/ Description-md5: 896a9e15c57abdd08c19b8ce3f8ed940 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-crypto-dbg Priority: extra Section: python Installed-Size: 1357 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Ramacher Architecture: amd64 Source: python-crypto Version: 2.6.1-4build1 Provides: python2.7-crypto-dbg Depends: python-crypto (= 2.6.1-4build1), libc6 (>= 2.14), libgmp10, python-dbg (<< 2.8), python-dbg (>= 2.7~) Filename: pool/main/p/python-crypto/python-crypto-dbg_2.6.1-4build1_amd64.deb Size: 561392 MD5sum: 8f673cfc519b27c635927da1b2507fa4 SHA1: 9f2812543c3fc518a82416d721f9573bcaa0a898 SHA256: ca3d0ca54c81d2c5f5aa0aed06e4bdc46977c0e578b7145e03dd4d16694c2ac5 Description: cryptographic algorithms and protocols for Python (debug extension) Homepage: http://www.pycrypto.org/ Description-md5: 2419ac9f0b85ada57da4be325fb7b4e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-crypto-doc Priority: optional Section: doc Installed-Size: 1566 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Ramacher Architecture: all Source: python-crypto Version: 2.6.1-4build1 Replaces: python-crypto (<< 2.3) Breaks: python-crypto (<< 2.3) Filename: pool/main/p/python-crypto/python-crypto-doc_2.6.1-4build1_all.deb Size: 73002 MD5sum: 500f7a09bedab8748bb9a44cfb7872a9 SHA1: 4afcbac6306087d4681e5d0058a11261b8e353ae SHA256: b7971168fadad14858d320045952f85723a887b72036bbaad9dea9b41a8875be Description: cryptographic algorithms and protocols for Python (documentation) Homepage: http://www.pycrypto.org/ Description-md5: fdb89b208649321be5347608baf761b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-cups Priority: optional Section: python Installed-Size: 229 Maintainer: Ubuntu Developers Original-Maintainer: Otavio Salvador Architecture: amd64 Version: 1.9.66-0ubuntu2 Provides: python2.7-cups Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.14), libcups2 (>= 1.6.0) Filename: pool/main/p/python-cups/python-cups_1.9.66-0ubuntu2_amd64.deb Size: 53996 MD5sum: 16c95675bb6ede5c3b5a76eaae6baac2 SHA1: 9b76101c1dced8d373e5a8f2b349ebc72a56dd0a SHA256: 1248b96ec5e597d0b31ee3d5290a79fff98306768e6a8f4b03f499fc981e8a72 Description: Python bindings for CUPS Description-md5: af3a80785033dbfaa0c6564ce547d8c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-cupshelpers Priority: optional Section: python Installed-Size: 222 Maintainer: Ubuntu Core Developers Original-Maintainer: Otavio Salvador Architecture: all Source: system-config-printer Version: 1.4.3+20140219-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pycurl Filename: pool/main/s/system-config-printer/python-cupshelpers_1.4.3+20140219-0ubuntu2_all.deb Size: 31984 MD5sum: 1c69fe36d9ff393eeeb057c4ba9fb56d SHA1: 820c1c800ed03ac953d17ab4eb0dfbc87be06b1d SHA256: 112b4e8888767b6964ac1d5fe9c66cec97bf281fa784817bdd6892f90424160d Description: Python modules for printer configuration with CUPS Description-md5: b3b2fc5788d1ff2c6780c013d733f898 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-curtin Priority: extra Section: python Installed-Size: 133 Maintainer: Ubuntu Developers Architecture: all Source: curtin Version: 0.1.0~bzr126-0ubuntu1 Depends: curl | wget, curtin-common (= 0.1.0~bzr126-0ubuntu1), util-linux (>= 2.20.1-1ubuntu3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/c/curtin/python-curtin_0.1.0~bzr126-0ubuntu1_all.deb Size: 20000 MD5sum: 1980660420dd1543304971de6a235802 SHA1: e28bd6dbca5fcdf59a5af82f82f1bc8b147aeb4d SHA256: 3adf2b8b0e0bf05876a0c489036fc79deed84de93fb4e3b6d81b8ffb33f7784d Description: Library and tools for curtin installer Homepage: http://launchpad.net/curtin Description-md5: 31e48f4bf426e243b1a4f94280ebcafb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cxx-dev Priority: optional Section: python Installed-Size: 768 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pycxx Version: 6.2.5-1ubuntu2 Depends: python-dev, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: pkg-config Filename: pool/main/p/pycxx/python-cxx-dev_6.2.5-1ubuntu2_all.deb Size: 58584 MD5sum: 05762fd7913b0045d71a5ab129d4715b SHA1: 3d057490f6a585436ddc35eee3fec7461d5d5df9 SHA256: 50ca6000db5d0fd376cb45af193a2c38b93104613dcacccc7457753ba772fae2 Description: Set of facilities to extend Python with C++ Homepage: http://cxx.sourceforge.net Description-md5: 9132187ccf36068fd8445a06e281a6d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-d2to1 Priority: optional Section: python Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: d2to1 Version: 0.2.11-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources Filename: pool/main/d/d2to1/python-d2to1_0.2.11-1build1_all.deb Size: 19552 MD5sum: 21f044e6e201290ff4b579b18723f151 SHA1: 4520b2580dfdc1ccafcd02834a6c81ec8ba56468 SHA256: f0317b7b3c8a872c363256faf003a3cb0423701730bd12982bcf7b38063e66f7 Description: Python support for distutils2-like setup.cfg files as package metadata Homepage: http://pypi.python.org/pypi/d2to1 Description-md5: 21d606984098ddfc7f3784cb8cf2accb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-dateutil Priority: optional Section: python Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Guido Günther Architecture: all Version: 1.5+dfsg-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), tzdata Filename: pool/main/p/python-dateutil/python-dateutil_1.5+dfsg-1ubuntu1_all.deb Size: 48930 MD5sum: c2660e35f490a79c779f952cb2089339 SHA1: 74ffb46645bd116d07d8294aa2983665c31f344a SHA256: 5b50466d71701d0c437bfcf79c5bb832132fee0531583eb21a7fc0e0b1a06965 Description: powerful extensions to the standard datetime module Description-md5: d3486e9464ae6c15178963781d792d8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video Package: python-dbg Priority: extra Section: python Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (= 2.7.5-5ubuntu3), libpython-dbg (= 2.7.5-5ubuntu3), python2.7-dbg (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/python-dbg_2.7.5-5ubuntu3_amd64.deb Size: 1248 MD5sum: ff7f1ba31c19897ab81d0c316235eaf5 SHA1: 9ab715e5797ee65637081496de3609d2ddb54b8e SHA256: cb4d7da7b7c7eae8c9278ab64323711295ff10ebbf5c2a2a690fdb09150ed13c Description: debug build of the Python Interpreter (version 2.7) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: e3b066fc7e7e35acf0b9835629f67146 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-dbus Priority: optional Section: python Installed-Size: 398 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: dbus-python Version: 1.2.0-2build2 Replaces: python2.4-dbus Provides: python2.7-dbus Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libdbus-1-3 (>= 1.5.12), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.12.0), python-dbus-dev Recommends: python-gi | python-gobject-2 | python-qt4-dbus Suggests: python-dbus-doc, python-dbus-dbg Conflicts: python2.4-dbus Breaks: gajim (<< 0.11.1), gnome-osd (<< 0.12.0), python-qt4-dbus (<< 4.8.3-3) Filename: pool/main/d/dbus-python/python-dbus_1.2.0-2build2_amd64.deb Size: 82642 MD5sum: be870be93e3576e45d2243e3c812e99e SHA1: 0099e99362cff6eb3a933c6dec09dd2ac206e841 SHA256: 502de3ef05a174bef5ec4d7d3dab66f1abe7b95cc16564d4af4f0101ff6a358d Description: simple interprocess messaging system (Python interface) Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: 53b9ddf61580a04978ee4e167d46abbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-dbus-dbg Priority: extra Section: devel Installed-Size: 552 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: dbus-python Version: 1.2.0-2build2 Depends: python-dbg (>= 2.7), python-dbus (= 1.2.0-2build2), libc6 (>= 2.4), libdbus-1-3 (>= 1.5.12), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.12.0), python-dbg (<< 2.8) Filename: pool/main/d/dbus-python/python-dbus-dbg_1.2.0-2build2_amd64.deb Size: 290736 MD5sum: 6a816d579f7468dd6f83fe7d0c3ec111 SHA1: 2f752e8bd9633647c6478e67297f4eb9ea840ae9 SHA256: 4195ecb2b47dd97173fe3386983eb04226f5b9fb7a6d1859ca05b2de3c53ba77 Description: debug build of the D-Bus Python 2 interface Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: 9d35fb4c4d665748b8e7363bb72b7fd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-dbus-dev Priority: optional Section: python Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: dbus-python Version: 1.2.0-2build2 Replaces: python-dbus (<< 1.0), python-dbus-common (<< 1.0) Breaks: python-dbus (<< 1.0), python-dbus-common (<< 1.0) Filename: pool/main/d/dbus-python/python-dbus-dev_1.2.0-2build2_all.deb Size: 5088 MD5sum: 85d5d7dde8f70301fab9c9722d5dcbce SHA1: bf543e34823ee5ee9d953be9cbc02717936193c3 SHA256: 65714ca92171b934b13fb79bdfadb292312cb0d49fd822294abd9f6cdb77be4d Description: main loop integration development files for python-dbus Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: deaabcfd5a33ab36c8726731b0709d9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-dbus-doc Priority: optional Section: doc Installed-Size: 2746 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: dbus-python Version: 1.2.0-2build2 Suggests: python-dbus | python3-dbus Filename: pool/main/d/dbus-python/python-dbus-doc_1.2.0-2build2_all.deb Size: 187288 MD5sum: 398d51659ae177c79f919c4f4d43ef9e SHA1: 2bae7d7cf4a5f70822718ff2728d671fac82fc81 SHA256: e5bbd84fab8857bb568ada26fcd530d9e05289aab0e2dfe38194773e95c34c1d Description: Documentation for the D-Bus Python interface Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: 878039eb5709b5bd87814481c7c849d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-debian Priority: optional Section: devel Installed-Size: 255 Maintainer: Ubuntu Developers Original-Maintainer: Debian python-debian Maintainers Architecture: all Version: 0.1.21+nmu2ubuntu2 Replaces: python-deb822 Provides: python-deb822 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-six, python-chardet Recommends: python-apt Suggests: gpgv Conflicts: python-deb822 Filename: pool/main/p/python-debian/python-debian_0.1.21+nmu2ubuntu2_all.deb Size: 49716 MD5sum: e10388ca452e95a567ca2097fa03797d SHA1: 16732e25057c89142895d42f8494b0713a021296 SHA256: f8b2399ef3de7d5a8f8f87e260e05da9c0d2427d52eb4ef80d1eedc8b130a329 Description: Python modules to work with Debian-related data formats Description-md5: 5be73b50401686d419b7e34949840340 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-debtagshw Priority: optional Section: python Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: all Source: debtags Version: 1.12ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: gir1.2-gudev-1.0, laptop-detect, sane-utils, python-cups Filename: pool/main/d/debtags/python-debtagshw_1.12ubuntu2_all.deb Size: 9142 MD5sum: 895748bbb525ebfbbe75da44329eceed SHA1: b73815a45c680fcf2887a966ce87134c7ecefff3 SHA256: 0e6badb3c634fd30947bf6968675b53c3a1139e5e2cd34cf2cb6d8bc41609dbf Description: Match debtags hardware:: tags against the actual hardware Homepage: http://wiki.debian.org/Debtags Description-md5: f6dcb9759f69feb4ff0d4005e18e1368 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-decorator Priority: optional Section: python Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 3.4.0-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-decorator/python-decorator_3.4.0-2build1_all.deb Size: 19250 MD5sum: 14b3d2529bbf2ba7ea46553586ce24ed SHA1: 40a3ee011953c5948143c9f50c9210da782f679a SHA256: 022e136117c4f001d4a3ff8a6d9ad1687987f230f790cc39c40c5f65039412f3 Description: simplify usage of Python decorators by programmers Enhances: python-pylons Homepage: http://pypi.python.org/pypi/decorator Description-md5: 09bcb708a2302a7d9046e3a7b8bdcbef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-defer Priority: extra Section: python Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Heinlein (devel) Architecture: all Version: 1.0.6-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-dbus Filename: pool/main/p/python-defer/python-defer_1.0.6-2build1_all.deb Size: 10730 MD5sum: e15c0f851319d164024115bda6c4ccb7 SHA1: e50f98cbd61bc1b85978a308cedfe7c7b6783f54 SHA256: ab58824f35de9827f390d23399c313e97147d2b4b0f216ca69d9aac236f77e67 Description: Small framework for asynchronous programming (Python 2) Homepage: https://launchpad.net/python-defer Description-md5: 5374ea6dd17f3c3b5eed87b708848a5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-dev Priority: optional Section: python Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (= 2.7.5-5ubuntu3), libpython-dev (= 2.7.5-5ubuntu3), python2.7-dev (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/python-dev_2.7.5-5ubuntu3_amd64.deb Size: 1166 MD5sum: 0fb9dbd4067f94dc4cd894cefc50fe47 SHA1: 13e6be388dae2131d3ac6c17242fe28f2d6b6b3d SHA256: 720d44efdab72371212fc4ee2f527b98dc84d80451e026942cf04eacc2cb2d98 Description: header files and a static library for Python (default) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 93a1917c3f17606b40377d0b737c6c92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dictclient Priority: optional Section: interpreters Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: John Goerzen Architecture: all Source: dictclient Version: 1.0.3.1+nmu1build1 Provides: python2.7-dictclient Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: dictd Filename: pool/main/d/dictclient/python-dictclient_1.0.3.1+nmu1build1_all.deb Size: 11954 MD5sum: 3eb9b5b3f0e453ada60dbccd24303cbf SHA1: 161491bb69f881baa25eaac62fa91d53283a6d6d SHA256: e5a2ad70d918408edee3a17f5ff99c01ef4e4aff41f6f550dbbd26691f3091de Description: Python client library for DICT (RFC2229) protocol Description-md5: 0b723faf82aec6a575081838e29681c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dictdlib Priority: optional Section: interpreters Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: John Goerzen Architecture: all Source: dictdlib Version: 2.0.4.1+nmu1build1 Provides: python2.7-dictdlib Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: dictd Filename: pool/main/d/dictdlib/python-dictdlib_2.0.4.1+nmu1build1_all.deb Size: 13062 MD5sum: 49226a9b6bdaa6194ad78e038fb48021 SHA1: 878c46e18c376214479828a5d868f32ff84700b1 SHA256: 7a40fd9e0900216eaea970ad42047c85cecbb03ffcd5c4f73b2ed2a59ac1fae7 Description: Python library for generating dictd dictionaries Description-md5: 42c84cad9346056c6a7a9e4b886281a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-dirspec Priority: extra Section: python Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Micah Anderson Architecture: all Source: dirspec Version: 13.10-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/d/dirspec/python-dirspec_13.10-0ubuntu2_all.deb Size: 6300 MD5sum: e4361fd15dfd3423b70947b440ca665b SHA1: 2512f878be6760943c4a8efc036239841a443658 SHA256: c9ed3cab547ab2418f43b27ca00842b9c4e01433d175a8abe95ed977afdf454c Description: Python User Folders Specification Library Description-md5: 8d454d3d159ffa075ccfa0c11320987b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-distro-info Priority: optional Section: python Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Drung Architecture: all Source: distro-info Version: 0.12 Replaces: distro-info (<< 0.3~) Depends: distro-info-data, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: distro-info (<< 0.3~) Filename: pool/main/d/distro-info/python-distro-info_0.12_all.deb Size: 8082 MD5sum: 2cd49d3a5b11d44dfe84ac2fa383e8b5 SHA1: 60970a9095f9b1c44bd68c9800b930b5e547ecf7 SHA256: 089fccc01d329336caeb451c77a47f09a6c73d4be2dbc8b18e35260ca3059f0b Description: information about distributions' releases (Python module) Description-md5: d6f02716543992714864a0bcca58d98c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-distutils-extra Priority: optional Section: python Installed-Size: 132 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: all Version: 2.38-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), intltool Suggests: devscripts Filename: pool/main/p/python-distutils-extra/python-distutils-extra_2.38-1build1_all.deb Size: 21084 MD5sum: f82d8d27c41d74b255b5119b0b125468 SHA1: d253acab65c115ca2eb21136ef9690df8611b983 SHA256: c6c05ed90cdb5fd5ca45c15ee50314c00b9407ee451fb5822d7c096b0d127c1e Description: enhancements to the Python build system Python-Version: 2.7 Description-md5: cd0bab3114e0d4fcaed1d2a8bac3b411 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-django Priority: optional Section: python Installed-Size: 26788 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.6.1-2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: libjs-jquery Suggests: python-psycopg2, python-psycopg, python-mysqldb, python-flup, python-sqlite, python-yaml, geoip-database-contrib, gettext, python-django-doc, ipython, bpython, libgdal1 Filename: pool/main/p/python-django/python-django_1.6.1-2_all.deb Size: 2209896 MD5sum: 9ca403adee93d5ca2d36f47eb3348908 SHA1: da2f9347245a6c6a344869b147791192e31f4f92 SHA256: a40f2f1d5c5cb2c5d0ff6b5735ebcd8859fc6668850712fe2f201fb7180441d7 Description: High-level Python web development framework Homepage: http://www.djangoproject.com/ Description-md5: efe2f6ec2ae89851c710c280956fa785 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-django-doc Priority: optional Section: doc Installed-Size: 12822 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-django Version: 1.6.1-2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-django/python-django-doc_1.6.1-2_all.deb Size: 1733154 MD5sum: 6af8e9a083241075c5de496876e84b27 SHA1: 94592f5e731337ea98a6c952a69371800050faac SHA256: fa9b91d5245e5c42bfb3bc8139903b8b795c514420dfc2b2249a062e20c4eb88 Description: High-level Python web development framework (documentation) Homepage: http://www.djangoproject.com/ Description-md5: 257e8ca2132ad054b44d0dd521e727f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-django-horizon Priority: extra Section: net Installed-Size: 3515 Maintainer: Chuck Short Architecture: all Source: horizon Version: 1:2014.1-0ubuntu1 Depends: python-ceilometerclient, python-cinderclient, python-cloudfiles, python-compressor (>= 1.2), python-django (>= 1.4), python-glanceclient, python-heatclient, python-keystoneclient, python-lockfile, python-memcache, python-netaddr, python-neutronclient, python-novaclient, python-openstack-auth (>= 1.1.1), python-swiftclient, python-troveclient, python-tz, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: memcached Suggests: python-lesscpy Filename: pool/main/h/horizon/python-django-horizon_2014.1-0ubuntu1_all.deb Size: 575724 MD5sum: fe8eb6677c24021acc35eb1c6d5f2582 SHA1: ac779edb347f9c80458fa16184474ccd9c035078 SHA256: 3c548efcea1cb26af5f3a63abe5323fab54dca2777be6c6fdb3659cec803c8a7 Description: Django module providing web based interaction with OpenStack Homepage: http://launchpad.net/horizon Description-md5: e01c22c2a2b4bac5ec92884004d96488 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-django-maas Priority: optional Section: net Installed-Size: 2175 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Depends: python-amqp, python-celery, python-convoy, python-crochet, python-curtin, python-lockfile, python-lxml, python-maas-client (= 1.5+bzr2252-0ubuntu1), python-netaddr, python-oops, python-oops-amqp, python-oops-datedir-repo, python-oops-twisted, python-oops-wsgi, python-psycopg2, python-sphinx, python-tempita, python-twisted, python-txamqp, python-txlongpoll, python-zope.interface, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Conflicts: python-librabbitmq Filename: pool/main/m/maas/python-django-maas_1.5+bzr2252-0ubuntu1_all.deb Size: 188292 MD5sum: e74ce2d86a63955b911fb1a2ecf69d15 SHA1: c4a092f426bb1c5611ae195affd78938690ce505 SHA256: afdc0883852919f76927e9c5da9b35b59a25412cb5a8590e84382836ddb3df0c Description: MAAS server Django web framework Homepage: https://launchpad.net/maas Description-md5: 6a237d041e3acca832eb77e852460b95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-django-nose Priority: optional Section: python Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: django-nose Version: 1.2-1 Depends: python-django, python-nose, python:any (<< 2.8), python:any (>= 2.7.5-5~) Filename: pool/main/d/django-nose/python-django-nose_1.2-1_all.deb Size: 28058 MD5sum: 97de06f88a8bfdd2566a48fbd8a55b77 SHA1: d04fc3cb4829b94d0a985aa6bc1423dfa8102461 SHA256: bb35167d22f3664aaf38761189654cc00d587d5379dce7289cca0daddebf6d2a Description: Django test runner that uses python-nose Homepage: http://pypi.python.org/pypi/django-nose/ Description-md5: 25d07195787658768c03ed1c7c3e163f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-django-openstack Priority: extra Section: net Installed-Size: 33 Maintainer: Chuck Short Architecture: all Source: horizon Version: 1:2014.1-0ubuntu1 Depends: python-django-horizon (= 1:2014.1-0ubuntu1) Filename: pool/main/h/horizon/python-django-openstack_2014.1-0ubuntu1_all.deb Size: 1820 MD5sum: dfacd2879ef45dbda23aa02c84535f1c SHA1: 63f4ef263ac2a6380194ed7cb332da0bfebe32c9 SHA256: 445af8310af86ef27457eb12f3c8b6a3883c51dca5b3f041cbbbf0ea467124a6 Description: dummy transitonal package Homepage: http://launchpad.net/horizon Description-md5: bc3506c858027316e7f269ef93233538 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-django-piston Priority: optional Section: python Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.2.3-1ubuntu5 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-django (>= 1.1), python-oauth (>= 1.0.1), python-decorator Suggests: python-yaml Filename: pool/main/p/python-django-piston/python-django-piston_0.2.3-1ubuntu5_all.deb Size: 29760 MD5sum: ee827ff08ee1cbb5d67bdd9a9a6d4757 SHA1: 35c1bcdb70a7504743fcc924b4f8ea7a151ad6d3 SHA256: 294a2f8ca46e8606c0807f963f665aed93920edbfed6f614e85c78e3363d06c6 Description: Django mini-framework creating RESTful APIs Homepage: http://bitbucket.org/jespern/django-piston/wiki/ Description-md5: 19dbbc3e271c47f79ccf167028be72f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-django-south Priority: optional Section: python Installed-Size: 563 Maintainer: Ubuntu Developers Original-Maintainer: David Watson Architecture: all Version: 0.7.5-1.1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-django (>= 1.0.2) Filename: pool/main/p/python-django-south/python-django-south_0.7.5-1.1build1_all.deb Size: 78560 MD5sum: e919d09a375cb6baa93424ab3d2bee4b SHA1: 4d27db8523970cb6d947a0868e780744e8d43cbf SHA256: 533abcd65f393e7b90e9febf4e581a28821b8750b72bd73233a10e1768632028 Description: Intelligent schema migrations for django apps Homepage: http://south.aeracode.org/ Description-md5: 2f2e3e36d0209deb2bf452266bea1969 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-djorm-ext-pgarray Priority: optional Section: python Installed-Size: 47 Maintainer: Ubuntu Developers Architecture: all Source: djorm-ext-pgarray Version: 0.8-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/d/djorm-ext-pgarray/python-djorm-ext-pgarray_0.8-0ubuntu2_all.deb Size: 4064 MD5sum: 091a2207258a55a9f8fd986fad5814f0 SHA1: c92390f4f85f3db1852ed7cdde3e114fb8fd43eb SHA256: 3590fd0ca1de8fc701754d32dd65533ac355ed1f11b958c2b44bb31a80181c6b Description: PostgreSQL native array fields extension for Django Homepage: https://github.com/niwibe/djorm-ext-pgarray Description-md5: 2a34643747ab0d77d42de76fdec35061 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dns Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Scott Kitterman Architecture: all Version: 2.3.6-3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-dns/python-dns_2.3.6-3_all.deb Size: 25956 MD5sum: 34c7f050754596bd1bf406934623f6ff SHA1: 2785141aa83ad08a817b238b7c4bf7394a3d4ab3 SHA256: 2f3d808501a352e1dccc76d231f8dd1cb52d54b56bda917b723c719b11980378 Description: DNS client module for Python Homepage: http://sourceforge.net/projects/pydns/ Description-md5: a0c5946b1da52e2c5c0e7c1757ee1810 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dnspython Priority: optional Section: python Installed-Size: 532 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: dnspython Version: 1.11.1-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/d/dnspython/python-dnspython_1.11.1-1build1_all.deb Size: 83068 MD5sum: 35db39a27828f6a73a5015704615fc5b SHA1: a65b5aebf1533eef49d99dfdbd35cbf213a2c967 SHA256: 6a8c4bc2f2e3eac1c2aaba9b5ee229af7cbc7f32a5e38af9764b1bc35135ad1d Description: DNS toolkit for Python Homepage: http://www.dnspython.org Description-md5: 5c7ff37ec0055b47241c383f2c0e3c03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: python-doc Priority: optional Section: doc Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-defaults Version: 2.7.5-5ubuntu3 Replaces: python (<< 2.3.5) Depends: python2.7-doc (>= 2.7.5-1~) Suggests: python-examples, python (= 2.7.5-5ubuntu3) Breaks: python (<< 2.3.5) Filename: pool/main/p/python-defaults/python-doc_2.7.5-5ubuntu3_all.deb Size: 10548 MD5sum: b54d85b3a1e84f3521b72b535d462606 SHA1: 469ba47cedfd2716f339cb3e9b28679a518d6f96 SHA256: aa99587c8210d3a0118427f6fbae3575641fd45435b7d7e7b497c6d885db9494 Description: documentation for the high-level object-oriented language Python Homepage: http://www.python.org/ Description-md5: 038f73a9465ce29a000fe288e7816805 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-docutils Priority: optional Section: python Installed-Size: 1687 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.11-3 Replaces: docutils-writer-odt, python-odtwriter Provides: docutils Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-roman, docutils-common (= 0.11-3) Recommends: python-pil, python-pygments, libpaper-utils, docutils-doc (= 0.11-3) Suggests: texlive-latex-recommended, texlive-latex-base, texlive-lang-french, fonts-linuxlibertine | ttf-linux-libertine Conflicts: docutils-writer-odt, python-odtwriter Breaks: python-epydoc (<< 3.0.1-4~), python-sphinx (<< 1.1.3+dfsg-7~) Filename: pool/main/p/python-docutils/python-docutils_0.11-3_all.deb Size: 348372 MD5sum: 7cf66803c3d8edaf1b491b84c56c80b4 SHA1: 2d243d41b9038cd8f0c0a22769b6489cdb15235f SHA256: dfafd6071c4292d85f251aec222d9b964dc49254cecc8ea52a5e6b853ca21299 Description: text processing system for reStructuredText (implemented in Python 2) Homepage: http://docutils.sourceforge.net/ Description-md5: 7cda5b7ae916f50f0ce0455dd4abdc2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dogpile.cache Priority: optional Section: python Installed-Size: 168 Maintainer: Chuck Short Architecture: all Version: 0.5.1-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-dogpile.core Filename: pool/main/p/python-dogpile.cache/python-dogpile.cache_0.5.1-0ubuntu2_all.deb Size: 25990 MD5sum: 785a7e6c8bf1ba2e36eb1eae179b4c61 SHA1: a1842afe7124c3d2f11915241de301a35d02d204 SHA256: a7e88e6a92b9b24c1eedfd9084cb89cc0a9e9a9284b2d40d6527bd766e0e10f0 Description: caching API built around the concept of a "dogpile lock" Description-md5: f149b3c4b1d45730c102ddf2f01de167 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dogpile.core Priority: optional Section: python Installed-Size: 85 Maintainer: Chuck Short Architecture: all Version: 0.4.1-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-dogpile.core/python-dogpile.core_0.4.1-0ubuntu3_all.deb Size: 9680 MD5sum: a6f53b4683fc2963e3320ac6145d8892 SHA1: ed17ccedaca0e1c53250492f7b088f3ac3435e92 SHA256: cb072c8422afd88a9bd67e257bc95bb9b1b50a10bc6ca18ae2225b1caa965d5b Description: ´dogpile´ lock, part of a typically larger caching solution. Description-md5: f6f2f0546c4579a719d946163ab19fb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mx-base-dbg Priority: extra Section: python Installed-Size: 2262 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: amd64 Source: egenix-mx-base Version: 3.2.7-1build1 Provides: python-egenix-mxbeebase-dbg, python-egenix-mxdatetime-dbg, python-egenix-mxproxy-dbg, python-egenix-mxqueue-dbg, python-egenix-mxstack-dbg, python-egenix-mxtexttools-dbg, python-egenix-mxtools-dbg, python-egenix-mxuid-dbg, python-egenix-mxurl-dbg Depends: python-egenix-mxbeebase (= 3.2.7-1build1), python-egenix-mxdatetime (= 3.2.7-1build1), python-egenix-mxproxy (= 3.2.7-1build1), python-egenix-mxqueue (= 3.2.7-1build1), python-egenix-mxstack (= 3.2.7-1build1), python-egenix-mxtexttools (= 3.2.7-1build1), python-egenix-mxtools (= 3.2.7-1build1), python-egenix-mxuid (= 3.2.7-1build1), python-egenix-mxurl (= 3.2.7-1build1), python-egenix-mx-base-dev (= 3.2.7-1build1), python-dbg, libc6 (>= 2.14) Filename: pool/main/e/egenix-mx-base/python-egenix-mx-base-dbg_3.2.7-1build1_amd64.deb Size: 465846 MD5sum: 7d2891caea1343fd6c3dcd37332a3764 SHA1: a93b2418a27ad95b78d99423a07333d7678c2955 SHA256: 3fe38be553c3df71b740dd6cd9f8ce74aec2c2352945dbd91d9a2843e0075bee Description: extension files for the egenix-mx-base distribution (debug build) Description-md5: d1fdafe1e00c6012624d6cef7869d6b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mx-base-dev Priority: extra Section: python Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Filename: pool/main/e/egenix-mx-base/python-egenix-mx-base-dev_3.2.7-1build1_all.deb Size: 16528 MD5sum: e5d1182b47df2d5d8eeb1a9e87904cac SHA1: f0116c250062922b86e354c38801285f1819b823 SHA256: 5bc24c5539cf0d7448ee83a32dcab8fd3c7881fc4d573faa8371cdc66f6c1a93 Description: development files for the egenix-mx-base distribution Description-md5: 7fd284b9aa8c631bc687985ed2ffffc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxbeebase Priority: optional Section: python Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: amd64 Source: egenix-mx-base Version: 3.2.7-1build1 Depends: libc6 (>= 2.14), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxbeebase-dbg, python-egenix-mxbeebase-doc Filename: pool/main/e/egenix-mx-base/python-egenix-mxbeebase_3.2.7-1build1_amd64.deb Size: 43362 MD5sum: 922bdc7ca9d8ad201229fb8ac63e497c SHA1: 7a235baaba9c79eac8210b11017a9effd6ffd311 SHA256: 8969dd80817a3ac7f82a75b3682616dbaa74f0cd236349fed1ed6610e1178376 Description: on-disk B+Tree based database kit for Python Description-md5: 7c0e11fbdcb4e3eb86924f38517ea695 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxbeebase-doc Priority: optional Section: doc Installed-Size: 461 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxbeebase (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxbeebase-doc_3.2.7-1build1_all.deb Size: 438380 MD5sum: 31f7bc5899e32aed4f7139ab92b5a7d0 SHA1: 5a6ad27d419c6df6b6ac741c8dedbba6c2b2b61f SHA256: 70c88b175d00f65525f894b8afeda8eb2bd984ed8cb1519d9d02787d47eb5d99 Description: on-disk B+Tree based database kit for Python (documentation) Description-md5: 09af6f6801c57569970cd50fce28adfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxdatetime Priority: optional Section: python Installed-Size: 323 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: amd64 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxdatetime, python2.4-egenix-mxdatetime Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxdatetime-dbg, python-egenix-mxdatetime-doc Conflicts: python2.3-egenix-mxdatetime, python2.4-egenix-mxdatetime Filename: pool/main/e/egenix-mx-base/python-egenix-mxdatetime_3.2.7-1build1_amd64.deb Size: 66666 MD5sum: 4e21c0f87adf7e84f81c3a4dc2530d01 SHA1: 4496afb66c2b2c90507daa875a60abcfe5e5d57d SHA256: 5fdbac8e10b8186df329a6dbd7a816a52aa86394d7569d77dc5443b25a9f22a5 Description: date and time handling routines for Python Description-md5: e3102cb577c19b97097313b6b22ad8ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mxdatetime-doc Priority: optional Section: doc Installed-Size: 668 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxdatetime (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxdatetime-doc_3.2.7-1build1_all.deb Size: 643914 MD5sum: 55c0ba0891876d08bb012df3b9b7bde3 SHA1: ac7e33130c6eb4d0746e722b51f89df805b26a56 SHA256: 211b21a7b16a28248abc7f6436f56b29add544b7f4f871b407c11242f25b2523 Description: date and time handling routines for Python (documentation) Description-md5: 839b3e571f11c1629378e4fd423df45b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxproxy Priority: optional Section: python Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: amd64 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxproxy, python2.4-egenix-mxproxy Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxproxy-dbg, python-egenix-mxproxy-doc Conflicts: python2.3-egenix-mxproxy, python2.4-egenix-mxproxy Filename: pool/main/e/egenix-mx-base/python-egenix-mxproxy_3.2.7-1build1_amd64.deb Size: 16110 MD5sum: 0c0ccc8122ab4e54a281d9a0d56ef59d SHA1: fa33f2ab881d054a4e6cf8064c71f9a11cc19d2d SHA256: 61c9fd874b4321257ad2dadbba029b8be6aa64a0b7c2f5a02e56a35965e85332 Description: generic proxy wrapper type for Python Description-md5: de7a4eef8e3e43ad321eba059c48841c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mxproxy-doc Priority: optional Section: doc Installed-Size: 425 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxproxy (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxproxy-doc_3.2.7-1build1_all.deb Size: 401784 MD5sum: de92eae35ae9be5ffe963e0ca7c88009 SHA1: 75086ec7d7e577dab2092cb54a945a86e8d7a77e SHA256: 315c153bb0335c2a2b4a89782fdd15154037f5c3eacf9e23ae3c9cfdc55f92f2 Description: generic proxy wrapper type for Python (documentation) Description-md5: 4d5df1e6dbe3297c0b60855853ddfb77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxqueue Priority: optional Section: python Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: amd64 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxqueue, python2.4-egenix-mxqueue Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxqueue-dbg, python-egenix-mxqueue-doc Conflicts: python2.3-egenix-mxqueue, python2.4-egenix-mxqueue Filename: pool/main/e/egenix-mx-base/python-egenix-mxqueue_3.2.7-1build1_amd64.deb Size: 10312 MD5sum: 917a5a464f39298734313235b579b86a SHA1: 280ebd42bb4dd5101e32c1a812416cc877ef162f SHA256: d83c24d57a75311d50ce78ae904f64e3bb2aea06e6c7ca83c398ed4f138c98a4 Description: fast and memory-efficient queue for Python Description-md5: 204041424313b03af6c8f680bdb669a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxqueue-doc Priority: optional Section: doc Installed-Size: 400 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxqueue (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxqueue-doc_3.2.7-1build1_all.deb Size: 375680 MD5sum: 4e00b842e7c8647866bab7d07906880a SHA1: 7ecb5e17606d76e66c1d2ccd8828ef530a6a7e0c SHA256: 1f84f59f5fde46bb9e8688774dc7ae2f9f0d96c3b5aa9398e8345726588858f2 Description: fast and memory-efficient queue for Python (documentation) Description-md5: 994c0d0198be57949d0a61539e589c52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxstack Priority: optional Section: python Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: amd64 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxstack, python2.4-egenix-mxstack Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxstack-dbg, python-egenix-mxstack-doc Conflicts: python2.3-egenix-mxstack, python2.4-egenix-mxstack Filename: pool/main/e/egenix-mx-base/python-egenix-mxstack_3.2.7-1build1_amd64.deb Size: 11514 MD5sum: 2d149911a1c9fc42270ff7034fa8cf74 SHA1: 8486d1bc5fd4cea1432fdede5631454bf65aee33 SHA256: 150cb1dec02d27138fd4341698f5ec01cd8da9704a346ff56d5279822dcbdf8f Description: fast and memory-efficient stack for Python Description-md5: 43cf298770079e6a1075eccf9190d48d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mxstack-doc Priority: optional Section: doc Installed-Size: 404 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxstack (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxstack-doc_3.2.7-1build1_all.deb Size: 380604 MD5sum: 113f1ace3b16919c4be9005f3bbfbda0 SHA1: 422799774ec0df2d8f76e06b5202940c4dcaf2f4 SHA256: 931c25d13e7586ceaa1bb80d5ef61259e9ff2cc05b700c1486656b0eac4b03c2 Description: fast and memory-efficient stack for Python (documentation) Description-md5: c40770f3e0cb10c29c7684b08d77d3ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxtexttools Priority: optional Section: python Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: amd64 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxtexttools, python2.4-egenix-mxtexttools Depends: libc6 (>= 2.14), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxtexttools-dbg, python-egenix-mxtexttools-doc Conflicts: python2.3-egenix-mxtexttools, python2.4-egenix-mxtexttools Filename: pool/main/e/egenix-mx-base/python-egenix-mxtexttools_3.2.7-1build1_amd64.deb Size: 45976 MD5sum: 8f635ad355ac52c66274af9c6e9b87e2 SHA1: 797d40392a128c226d7ae16df9deb4f169b02d63 SHA256: 882359680df8c06ca63e236b22eb4f05b6a7290c3bed8134e2cc24133850d147 Description: fast text processing tools for Python Description-md5: 394b2ad20297934e19ae2fe745dbcf42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mxtexttools-doc Priority: optional Section: doc Installed-Size: 567 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxtexttools (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxtexttools-doc_3.2.7-1build1_all.deb Size: 531800 MD5sum: e64392b94349540e62d148a25feea231 SHA1: bde2d0adf8044d270e486745ea82b1a4924ba281 SHA256: dff86f44862a37948c0ad5aab5a5a9fcadf6bea86209441016b29495ec3bcd88 Description: fast text processing tools for Python (documentation) Description-md5: 84cba115538b2812fcf2db800aa51c8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxtools Priority: optional Section: python Installed-Size: 375 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: amd64 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxtools, python2.4-egenix-mxtools Depends: libc6 (>= 2.14), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-egenix-mxtools-dbg, python-egenix-mxtools-doc Conflicts: python2.3-egenix-mxtools, python2.4-egenix-mxtools Filename: pool/main/e/egenix-mx-base/python-egenix-mxtools_3.2.7-1build1_amd64.deb Size: 75058 MD5sum: b9698c57bd43531159ffc6a0c1e7a958 SHA1: bdc3e8d35a02a4328db73bff122172111548ad4e SHA256: accebc967cdafe7f0a529c53a9768e0634d66f3070f241b76ba7a6ac93d1987d Description: collection of additional builtins for Python Description-md5: b397d6d1d27bb66a1d2094f1aae9db91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mxtools-doc Priority: optional Section: doc Installed-Size: 458 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxtools (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxtools-doc_3.2.7-1build1_all.deb Size: 429632 MD5sum: 85124513a5e99a1c76a1996e5666072c SHA1: d02dbc3e302ce22d942dcadebb6cfd42b19779ff SHA256: 43ae0f00493ec6f94d2e57a40ab3aeee3efc175d1d1e708f63ff253b6bd3e5f5 Description: collection of additional builtins for Python (documentation) Description-md5: 025c0564a3dd027f0a29e4ea8b228e02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxuid Priority: optional Section: python Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: amd64 Source: egenix-mx-base Version: 3.2.7-1build1 Depends: libc6 (>= 2.14), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools, python-egenix-mxdatetime Suggests: python-egenix-mxuid-dbg, python-egenix-mxuid-doc Filename: pool/main/e/egenix-mx-base/python-egenix-mxuid_3.2.7-1build1_amd64.deb Size: 11624 MD5sum: cdf53e7b77b0b3ea8df4968f749ba15f SHA1: eb06009994555b43165fedecb3073d377cef07b3 SHA256: 1fcb802b543dc0b926036433d52aabae09183ff3317e315def4d3961a0c55aea Description: unique identifiers for Python Description-md5: c3fbcf07f93e0d80ca516ea1b6d3aea6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxuid-doc Priority: optional Section: doc Installed-Size: 391 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxuid (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxuid-doc_3.2.7-1build1_all.deb Size: 367008 MD5sum: 29fc08b13e06a0a517c448d7b7e0986f SHA1: 45f48f998220e27526c52f6844d81129760b975b SHA256: 965cc92d70cb54fc962158cd69b62d4557b585ddb1b1bec9e749e834e39be372 Description: unique identifiers for Python (documentation) Description-md5: 0023ef27b5b96c8b8304ee8c37d982f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxurl Priority: optional Section: python Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: amd64 Source: egenix-mx-base Version: 3.2.7-1build1 Depends: libc6 (>= 2.14), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools, python-egenix-mxtexttools Suggests: python-egenix-mxurl-dbg, python-egenix-mxurl-doc Filename: pool/main/e/egenix-mx-base/python-egenix-mxurl_3.2.7-1build1_amd64.deb Size: 24238 MD5sum: 9b6007db5c488ebad829c887158e7426 SHA1: c2b7baab4e250755f581143fb82b5d9fff9c27f1 SHA256: d2880ee86a44a233f269d0a9acf2a4a59f17bc046456e841ee5b97d742e5baea Description: flexible URL datatype for Python Description-md5: fee071966c6c5bb6fafefa75e35060e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxurl-doc Priority: optional Section: doc Installed-Size: 443 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxurl (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxurl-doc_3.2.7-1build1_all.deb Size: 419422 MD5sum: f5cd7733f9677d892e1c6bf5a5e6607d SHA1: 47bd037053fbcba7cbf0872d4074e3ff0ef72946 SHA256: d16c6878522e0a437908c163906d1ac42011c6718c11202ae52b6994b8668e14 Description: flexible URL datatype for Python (documentation) Description-md5: f0984d91dcf296bccdbeb9bc60d6de79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-epydoc Priority: optional Section: python Installed-Size: 1108 Maintainer: Ubuntu Developers Original-Maintainer: Kenneth J. Pronovici Architecture: all Source: epydoc Version: 3.0.1+dfsg-4 Replaces: python2.1-epydoc (<< 2.0-2), python2.2-epydoc (<< 2.0-2), python2.3-epydoc (<< 2.0-2) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: ghostscript, python-tk, python-docutils, texlive-latex-base, texlive-latex-extra, texlive-latex-recommended, texlive-fonts-recommended, graphviz Suggests: epydoc-doc, python-profiler Conflicts: python2.1-epydoc, python2.2-epydoc, python2.3-epydoc Filename: pool/main/e/epydoc/python-epydoc_3.0.1+dfsg-4_all.deb Size: 213668 MD5sum: fd4c83b7e89b079613a23b87710dc025 SHA1: 658b3ca176ea377065ddbd5c56ea70cd06d7f8ac SHA256: f74d701465a4d2e1fe53c5342add3156a6035ad7a2c45ce979f4be30b1771fa3 Description: tool for documenting Python modules Homepage: http://epydoc.sourceforge.net/ Description-md5: 3d05d20ae78ead066402c29500ad7ca4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-eventlet Priority: optional Section: python Installed-Size: 1192 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.13.0-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-greenlet, libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-eventlet/python-eventlet_0.13.0-1ubuntu2_all.deb Size: 202460 MD5sum: 953e55d17b12dbaf560b77811e255b82 SHA1: 96d10e9a17feb1e61b1db26ff99602d33cab1dd6 SHA256: 48452c39dbd32fea3ebc23ebd4294c729bd7582197620ee69e73de9ec6716564 Description: concurrent networking library for Python Homepage: http://eventlet.net Description-md5: 020b099048ca74c3042fc10d2247fcdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-examples Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (>= 2.7.5-5ubuntu3), python2.7-examples (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/python-examples_2.7.5-5ubuntu3_all.deb Size: 946 MD5sum: 643b74c3c529b2f5f578dbf72955038d SHA1: 2d6c0b5c508de2e27981e3d5438fd5ae45272bd2 SHA256: 85e78deec93d3fc7c1f5f1e546f17bf74ea28596617ca8f9068e2c27ff41a1ef Description: examples for the Python language (default version) Homepage: http://www.python.org/ Description-md5: 1ff3c3d821cef8881eb0f7e4a3164350 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-extras Priority: optional Section: python Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.0.3-2ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-testtools Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-extras/python-extras_0.0.3-2ubuntu1_all.deb Size: 6614 MD5sum: a0f3242f6ef4e8143fa584e0aa887efe SHA1: 44c311b58bb5e2bb6a5eb74561df55d1816fe82d SHA256: 71b52006573fb69ed28ff779b851535a778aa4705d545139d3a548b799e5109d Description: extensions to the Python standard library (Python 2.x) Homepage: http://pypi.python.org/pypi/extras Description-md5: 41bd5ed0df0106b08b04728f29fdb83d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-feedparser Priority: optional Section: python Installed-Size: 356 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: feedparser Version: 5.1.3-2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-chardet, python-libxml2, python-utidylib Filename: pool/main/f/feedparser/python-feedparser_5.1.3-2_all.deb Size: 52454 MD5sum: 86b5a874f8e1054d2e2d68949bc57d01 SHA1: e83ec138129450816306255d5feebd7b5ca4c681 SHA256: 8b2d26aba8cdecc7820141def435c901554754f2171a68eef15d098852a910b3 Description: Universal Feed Parser for Python Homepage: https://code.google.com/p/feedparser/ Description-md5: 59c5b7eade148fbec09113e829fdeda1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-fixtures Priority: optional Section: python Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Version: 0.3.14-1ubuntu2 Depends: python-testtools (>= 0.9.11), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-fixtures/python-fixtures_0.3.14-1ubuntu2_all.deb Size: 25888 MD5sum: 929f7eb4b764dbc2f6657a4044c1b92c SHA1: 5c80307a13c99b44b680eeac13d3f07992832559 SHA256: 7785a756635c9bc1d263f1fe5d02508c26a2fd3599a3b150eaafd71dfb30deac Description: PyUnit extension for defining test fixtures outside of test cases - Python 2.x Homepage: http://pypi.python.org/pypi/fixtures Description-md5: f8f393535056d501957eb0a49943cf8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-flask Priority: optional Section: python Installed-Size: 271 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: flask Version: 0.10.1-2build1 Depends: python-werkzeug (>= 0.8), python:any (<< 2.8), python:any (>= 2.7.5-5~), python-jinja2 (>= 2.4), python-itsdangerous Recommends: python-pkg-resources, python-simplejson | python (>= 2.6), python-blinker Suggests: python-flask-doc Filename: pool/main/f/flask/python-flask_0.10.1-2build1_all.deb Size: 51728 MD5sum: ddee0a62d486a6cc2f86028f08369505 SHA1: 73db69c1b4dad8681433c94cfedebcd312736a3c SHA256: d50b47ffc842ad02fc577a57a10694a552d10fc0f1cbd298987a222a0e9baa66 Description: micro web framework based on Werkzeug, Jinja2 and good intentions Homepage: http://flask.pocoo.org/ Description-md5: af80b4121514ac9080cae2382910000f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-flask-doc Priority: extra Section: doc Installed-Size: 2483 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: flask Version: 0.10.1-2build1 Depends: libjs-sphinxdoc (>= 1.0) Recommends: python-flask Filename: pool/main/f/flask/python-flask-doc_0.10.1-2build1_all.deb Size: 458130 MD5sum: b58ac6dffb188ef2be041c15ea317e30 SHA1: 14cee19890c797602b1cb82c3ebab2a1960462cd SHA256: 90276f5dedfe60fb78de46f6f97dd06d489db12d02069703101fa0f8bcf90bb8 Description: documentation for Flask micro web framework Homepage: http://flask.pocoo.org/ Description-md5: cb4090517ac62460c76f8a14e598fe8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-formencode Priority: optional Section: python Installed-Size: 500 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: all Version: 1.2.6-1ubuntu1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python-dns, python-pkg-resources, python (>= 2.5) | python-elementtree Suggests: python-egenix-mxdatetime Filename: pool/main/p/python-formencode/python-formencode_1.2.6-1ubuntu1_all.deb Size: 75144 MD5sum: d33916fa01b79f40d3f7956cb0b84875 SHA1: 4808af5c7fc2ea7180463669d06825c8bf3c2afe SHA256: 459dc1677c6d4b55b559d242424c944bc6c966e4baa9962899772bd544526aa4 Description: validation and form generation Python package Homepage: http://formencode.org Description-md5: 58a7c12fe25e73647a1aabca6235ae27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gconf Priority: optional Section: python Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: amd64 Source: gnome-python Version: 2.28.1+dfsg-1ubuntu2 Replaces: python-gnome2 (<< 2.22.3-3) Depends: python (>= 2.7), python (<< 2.8), gconf-service, libc6 (>= 2.2.5), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.24.0), libpython2.7 (>= 2.7), python-gobject-2 (>= 2.17.0) Suggests: python-gnome2-doc Breaks: python-gnome2 (<< 2.22.3-3) Filename: pool/main/g/gnome-python/python-gconf_2.28.1+dfsg-1ubuntu2_amd64.deb Size: 21934 MD5sum: 4511cabdadb84f064d55c2b297816500 SHA1: 6208b59f536b7c5dd063b168cab10dbca9c19799 SHA256: a7b96a8355dced2da2c1d75f7c6059a1f478e26f7a575cc6d269917b6bbb678b Description: Python bindings for the GConf configuration database system Homepage: http://www.pygtk.org/ Description-md5: 9bd5f3c6eef5fbe0f49c2a0405b96731 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: python-gd Priority: extra Section: python Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Version: 0.56+dfsg-4build1 Depends: ttf-freefont, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libgd3 (>= 2.1.0~alpha~) Suggests: python-gd-dbg Filename: pool/main/p/python-gd/python-gd_0.56+dfsg-4build1_amd64.deb Size: 29812 MD5sum: dd6b81706a4ee8ae1df95ad7678ad707 SHA1: 2de63eda6405399a94663c72d7d9734a6b77bd33 SHA256: c638dcef4c1ad25eef900998d379f5a4b0c911d6025eb14641ee9424da136203 Description: Python module wrapper for libgd Homepage: http://newcenturycomputers.net/projects/gdmodule.html Description-md5: 9ab06ea795223a3f0a04afacf41c8885 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gd-dbg Priority: extra Section: python Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-gd Version: 0.56+dfsg-4build1 Depends: python-gd (= 0.56+dfsg-4build1), python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.14), libgd3 (>= 2.1.0~alpha~) Filename: pool/main/p/python-gd/python-gd-dbg_0.56+dfsg-4build1_amd64.deb Size: 74830 MD5sum: e7257c07afd05ed91f8bdc0082d64ce2 SHA1: 1dab6209ac39c7e7fd81ecb128aa5b196ddb096a SHA256: c23004fffa818c690fde03f07811d30c86cdd55231c5c4ce0c600a60914e347d Description: Python module wrapper for libgd (debug extension) Homepage: http://newcenturycomputers.net/projects/gdmodule.html Description-md5: eb3f9b89eae5f2055c9b1d5943a0d56a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gdbm Priority: optional Section: python Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-stdlib-extensions Version: 2.7.5-1ubuntu1 Replaces: python2.3-gdbm, python2.4-gdbm, python2.6 (<< 2.6.1-0ubuntu6) Provides: python2.7-gdbm Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.4), libgdbm3 (>= 1.8.3) Suggests: python-gdbm-dbg Conflicts: python2.3-gdbm, python2.4-gdbm Filename: pool/main/p/python-stdlib-extensions/python-gdbm_2.7.5-1ubuntu1_amd64.deb Size: 11774 MD5sum: a3f4b5e3300706fe442b5e80bd2a1519 SHA1: 5779b0aa639e08e399342ba2dcd959c9196d72a1 SHA256: 7bf5ca64c9aab8dd426f7536f9b137286dc1b2bdb1e0ad660878988abcf95a6b Description: GNU dbm database support for Python Description-md5: 626a11c8ba4a5b0566e9b2a4b6c730f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gdbm-dbg Priority: extra Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-stdlib-extensions Version: 2.7.5-1ubuntu1 Depends: python-dbg (>= 2.7), python-dbg (<< 2.8), python-gdbm (= 2.7.5-1ubuntu1), libc6 (>= 2.4), libgdbm3 (>= 1.8.3) Filename: pool/main/p/python-stdlib-extensions/python-gdbm-dbg_2.7.5-1ubuntu1_amd64.deb Size: 20024 MD5sum: d25795a30ea3d9bf99aba659c7c62586 SHA1: 7a666a43fe5cd8db3c82d0fc5bb24ae2a229ef33 SHA256: 5b00fab75fd5275bc2cd5a68f7fdf5245c96a7f20f556c3cd6ffd59701b64fc8 Description: GNU dbm database support for Python (debug extension) Description-md5: d045f957b611c1ede74ab12f22503bc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-genetic Priority: optional Section: python Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Angel Ramos Architecture: all Source: genetic Version: 0.1.1b-11build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/g/genetic/python-genetic_0.1.1b-11build1_all.deb Size: 19896 MD5sum: 7fe5c7e5d7a0bf593bce619b6931894d SHA1: 5f747398916a8d2256098c833a86b5c3a6e698a9 SHA256: fbee8edf8093f0b3f3f9471cd47444ced3a10c4b7444491478e97dd2c5987ce3 Description: genetic algorithms in Python Homepage: http://home.gna.org/oomadness/en/genetic/ Description-md5: 7ef5afdf1db101c47fdf9be4a51d5476 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-genshi Priority: optional Section: python Installed-Size: 920 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: genshi Version: 0.7-3 Depends: python (<< 2.8), python:any (>= 2.7.5-5~), python (>= 2.7~), libc6 (>= 2.14) Suggests: doc-base, python-genshi-doc, python-pkg-resources Filename: pool/main/g/genshi/python-genshi_0.7-3_amd64.deb Size: 125702 MD5sum: 287cb408df3a32830375c09fe7e1c146 SHA1: 340b7249be20d8fca363f26f14dc4c62e5e2de5a SHA256: 39e69d4cc1f21eae0eb17a837bb9c538261d8d050024844a31a682163dcad508 Description: Python XML-based template engine - Python 2.x Homepage: http://genshi.edgewall.org/ Description-md5: 75400fac3911110cc5c147797412a313 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-genshi-doc Priority: optional Section: doc Installed-Size: 2758 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: genshi Version: 0.7-3 Depends: libjs-jquery Filename: pool/main/g/genshi/python-genshi-doc_0.7-3_all.deb Size: 237004 MD5sum: ce71975f2d9a35d2dd71d7f46078ed3f SHA1: 0a0a9db0ae638b6abd299c8f7699aa774c9945e4 SHA256: e4e8e695ba347ec21f56fa114b640f76c236b566de9e22f26f76a49d27ecb7d4 Description: Python XML-based template engine (documentation and examples) Homepage: http://genshi.edgewall.org/ Description-md5: 63d2bc7a6004ea20d074a0b67a953554 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-geoip Priority: optional Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Version: 1.2.4-2ubuntu5 Provides: python2.7-geoip Depends: libc6 (>= 2.2.5), libgeoip1, python (>= 2.7), python (<< 2.8), geoip-database Filename: pool/main/p/python-geoip/python-geoip_1.2.4-2ubuntu5_amd64.deb Size: 9324 MD5sum: 27b59b6db6ef2b0240ae6e0e089264c0 SHA1: 8cf30dde56030012914b3d754a1c30b0d93ab40d SHA256: ef05fc527bff173e997e629ed2d15059a385044ee4745b5ecbafa42fa7399a76 Description: Python bindings for the GeoIP IP-to-country resolver library Description-md5: 7728feb20ccb4df284edbff75a08cb2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-geoip-dbg Priority: extra Section: python Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: python-geoip Version: 1.2.4-2ubuntu5 Depends: python-geoip (= 1.2.4-2ubuntu5), python-dbg, libc6 (>= 2.2.5), libgeoip1 Filename: pool/main/p/python-geoip/python-geoip-dbg_1.2.4-2ubuntu5_amd64.deb Size: 19492 MD5sum: 79f2fc71ba01e188dd941b917a2e2839 SHA1: 8debeeebc6a1bb5b5b593a432f060ac33fc09fa8 SHA256: 5b054443678f8fb689e70cbfa58f4d53d4f9453e8926806e8bed14c0201a77f8 Description: Python bindings for the GeoIP IP-to-country resolver library (debug extension) Description-md5: d5987705c19b4254a652b1dcbcf49ab2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gevent Priority: extra Section: python Installed-Size: 881 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Version: 1.0-1ubuntu1 Depends: libc6 (>= 2.17), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-greenlet | python-codespeak-lib (<< 1.0) Suggests: python-gevent-doc, python-gevent-dbg, python-openssl Filename: pool/main/p/python-gevent/python-gevent_1.0-1ubuntu1_amd64.deb Size: 215488 MD5sum: 7a0e277b556505bd5d663986ba8df167 SHA1: 13b518185a63d5dd41b63a97a00cb6b2d5d4a842 SHA256: 58090f0935ba33b0018708f834a389b1c46ad019f19845881ad8dd46e3446ea3 Description: gevent is a coroutine-based Python networking library Homepage: http://www.gevent.org/ Description-md5: bbee70605383e4a4707e6eaa92881059 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-gevent-dbg Priority: extra Section: debug Installed-Size: 3627 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: python-gevent Version: 1.0-1ubuntu1 Depends: python-gevent (= 1.0-1ubuntu1), libc6 (>= 2.17), python-dbg (>= 2.7), python-dbg (<< 2.8), python-greenlet-dbg Filename: pool/main/p/python-gevent/python-gevent-dbg_1.0-1ubuntu1_amd64.deb Size: 1224174 MD5sum: f60b0cd427a2b3bbc8bbf71c63358002 SHA1: 5200ba2b2cfc513532dbc8c0c870603c69b09a0e SHA256: 5974e065bf0d8c760d69dc289884f282b03721986901f941b86300cbc99d83e6 Description: gevent is a coroutine-based Python networking library - debugging symbols Homepage: http://www.gevent.org/ Description-md5: 9561d9b2a48b61f8d58fb39f994123c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gevent-doc Priority: optional Section: doc Installed-Size: 791 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: all Source: python-gevent Version: 1.0-1ubuntu1 Depends: libjs-jquery, libjs-underscore Filename: pool/main/p/python-gevent/python-gevent-doc_1.0-1ubuntu1_all.deb Size: 95678 MD5sum: a8c97d693596d00d627299baa68ad333 SHA1: a59af14d8c8d73ee04dce5e3c7f31f8523938c2a SHA256: ec90130a61d8f644200ffedbaefb37fa849f4bb3d80476cb0e7a9b04104ab22f Description: gevent is a coroutine-based Python networking library - documentation Homepage: http://www.gevent.org/ Description-md5: 2f6fe5f40177f771d33e8780ad6dd898 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gi Priority: optional Section: python Installed-Size: 709 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: pygobject Version: 3.12.0-1 Replaces: python-gobject (<< 3.0.2-4) Provides: python2.7-gi Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libgirepository-1.0-1 (>= 1.33.10), libglib2.0-0 (>= 2.38.0), gir1.2-glib-2.0 (>= 1.35.9) Suggests: python-gi-cairo Breaks: python-aptdaemon (<< 1.0), python-gobject (<< 3.0.2-4), python-nautilus (<= 1.1-1), software-center (<= 5.6.0-0ubuntu2) Filename: pool/main/p/pygobject/python-gi_3.12.0-1_amd64.deb Size: 192440 MD5sum: 949898c0a43fd5f70b2947386b19e090 SHA1: ef343501df67dc65a35eb5e5ab0dac505573d074 SHA256: c6e6b950f277313f09a63b4c9d481e6c5bf9aa75ec3d6d55b342869db3890bd9 Description: Python 2.x bindings for gobject-introspection libraries Homepage: https://wiki.gnome.org/PyGObject Description-md5: 8d2225b2f817f42645ac3c6bd82fee0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gi-cairo Priority: optional Section: python Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: pygobject Version: 3.12.0-1 Replaces: python-gobject-cairo Provides: python-gobject-cairo Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.2.5), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.38.0), python-gi (= 3.12.0-1), python-cairo Conflicts: python-gobject-cairo Filename: pool/main/p/pygobject/python-gi-cairo_3.12.0-1_amd64.deb Size: 5210 MD5sum: b175bd6ab9bd2595fa8de77be07e9388 SHA1: 1fc06b73536d67a5e40fec3e4a58fadf2670ff20 SHA256: 867ae11b8632b101fa824fe4a081f31171a7a7a0c2d6971ae16072a73f58a709 Description: Python Cairo bindings for the GObject library Homepage: https://wiki.gnome.org/PyGObject Description-md5: e531132cde7475ea3077c4d44b37a39d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gi-dbg Priority: extra Section: debug Installed-Size: 876 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: pygobject Version: 3.12.0-1 Replaces: python-gobject-dbg (<< 3.0.2-4) Depends: python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgirepository-1.0-1 (>= 1.33.10), libglib2.0-0 (>= 2.38.0), python-gi (= 3.12.0-1) Breaks: python-gobject-dbg (<< 3.0.2-4) Filename: pool/main/p/pygobject/python-gi-dbg_3.12.0-1_amd64.deb Size: 494978 MD5sum: 65b921292549eb09b01a41b378bf2632 SHA1: a4641a91ae212cde30ad19413c131b1ea2026dd8 SHA256: 670faf1ff14793a73cf5b29792d5c0ca3258a2ddd0caeb16826b5223539ae0fc Description: Python bindings for the GObject library (debug extension) Homepage: https://wiki.gnome.org/PyGObject Description-md5: cc6cbe7a432fd5c4af8daff83f2f824f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gi-dev Priority: optional Section: python Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: pygobject Version: 3.12.0-1 Replaces: python-gobject-dev (<< 3.0.2-4) Depends: python-gi (= 3.12.0-1), python3-gi (= 3.12.0-1), libglib2.0-dev (>= 2.35.9), libffi-dev (>= 3.0.5) Breaks: python-gobject-dev (<< 3.0.2-4) Filename: pool/main/p/pygobject/python-gi-dev_3.12.0-1_amd64.deb Size: 8422 MD5sum: 9c954ff473332400eb302225a112127e SHA1: 41e36afab3f512430f018c566852e97c5d1dcb20 SHA256: 89776f1dcc0ab845f2aabad26fa6508ad805af98a6a2c36b16a18b546d149da8 Description: development headers for GObject Python bindings Homepage: https://wiki.gnome.org/PyGObject Description-md5: f5f0bb4fb02f0013d4124b7ce2dabd49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-glade2 Priority: optional Section: python Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: amd64 Source: pygtk Version: 2.24.0-3ubuntu3 Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.2.5), libglade2-0 (>= 1:2.6.4-2~), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.18.0), python-gtk2 (= 2.24.0-3ubuntu3) Suggests: python-gtk2-doc Filename: pool/main/p/pygtk/python-glade2_2.24.0-3ubuntu3_amd64.deb Size: 8744 MD5sum: 1aef0e4a843eac23ffc619bc02382f03 SHA1: a57f1eaa9a5f085f9f85a4f54e345233c8af26cb SHA256: e57c20edc1fc4402049f54bfee1cf55ca7c4c819277cae9425f176c16fe810b2 Description: GTK+ bindings: Glade support Homepage: http://www.pygtk.org/ Description-md5: 8d0420f510379430466a97e1eaf2d4b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-video, ubuntustudio-photography, ubuntustudio-audio Package: python-glance Priority: extra Section: python Installed-Size: 10509 Maintainer: Ubuntu OpenStack Architecture: all Source: glance Version: 1:2014.1-0ubuntu1 Provides: python2.7-glance Depends: python-anyjson (>= 0.3.3), python-boto (>= 2.4.0), python-cinderclient (>= 1:1.0.4), python-crypto (>= 2.6), python-eventlet (>= 0.13.0), python-greenlet (>= 0.3.2), python-httplib2, python-iso8601, python-jsonschema (>= 1.3.0), python-keystoneclient (>= 1:0.3.0), python-kombu (>= 2.4.8), python-lxml (>= 2.3), python-migrate, python-openssl, python-oslo.config (>= 1:1.2.0a3), python-passlib, python-paste, python-pastedeploy, python-routes, python-six, python-sqlalchemy-ext | python-sqlalchemy (>= 0.8.2), python-swiftclient (>= 1:1.2), python-webob (>= 1.2.3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-sqlalchemy (>= 0.8~), python-sqlalchemy (<< 0.9), python-stevedore, python-oslo.vmware, python-oslo.messaging Filename: pool/main/g/glance/python-glance_2014.1-0ubuntu1_all.deb Size: 407062 MD5sum: 840315dafd2c207922647b19402db78b SHA1: 8d93e98167ed8a254867171417125fec28e8d87a SHA256: f55cb8cf72b18efefa0801e47001c501448d01d3a68174bb19932171c1ce9c3e Description: OpenStack Image Registry and Delivery Service - Python library Homepage: http://launchpad.net/glance Python-Version: 2.7 Description-md5: ec0b5e83302f9dde6c1f98f25a8f33c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-glance-doc Priority: extra Section: doc Installed-Size: 1148 Maintainer: Ubuntu OpenStack Architecture: all Source: glance Version: 1:2014.1-0ubuntu1 Depends: libjs-jquery Filename: pool/main/g/glance/python-glance-doc_2014.1-0ubuntu1_all.deb Size: 526964 MD5sum: 460bf50f3ae56d79834b11c83e9b67b4 SHA1: 31cb667d0ae93e9f9c12afe96e17da2f27609d6f SHA256: 1a2e419fb6e2093f48231898c857554385ce150cdb1c2fd9b0f468493055d381 Description: OpenStack Image Registry and Delivery Service - Documentation Homepage: http://launchpad.net/glance Description-md5: bad2142db8d3e8aad00122582264f750 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-glanceclient Priority: extra Section: python Installed-Size: 264 Maintainer: Chuck Short Architecture: all Version: 1:0.12.0-0ubuntu1 Replaces: glance-client Depends: python-httplib2, python-keystoneclient, python-openssl, python-prettytable (>= 0.6), python-setuptools, python-warlock, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr Breaks: glance-client Filename: pool/main/p/python-glanceclient/python-glanceclient_0.12.0-0ubuntu1_all.deb Size: 34064 MD5sum: d793546f19f0ac97c830baed42bc85cd SHA1: 7590bf7cf61f3a4625718ea8dc7826e81d4a751e SHA256: d29ef0f769fb68bc5846ef2d227427579297b86eb748da59a111f46f507806d2 Description: Client library for Openstack glance server. Homepage: http://launchpad.net/glance Description-md5: 6524fca402a7c8e87541a5b1ca477e17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gnome2 Priority: optional Section: python Installed-Size: 763 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: amd64 Source: gnome-python Version: 2.28.1+dfsg-1ubuntu2 Replaces: python-gnomecanvas Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libbonobo2-0 (>= 2.15.0), libbonoboui2-0 (>= 2.15.1), libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgnome2-0 (>= 2.17.3), libgnomecanvas2-0 (>= 2.11.1), libgnomeui-0 (>= 2.22.0), libgnomevfs2-0 (>= 1:2.17.90), libgtk2.0-0 (>= 2.8.0), liborbit-2-0 (>= 1:2.14.10), libpopt0 (>= 1.14), libpython2.7 (>= 2.7), python-gconf (= 2.28.1+dfsg-1ubuntu2), python-gtk2 (>= 2.10.3), python-pyorbit (>= 2.0.1-4), python-gobject-2 (>= 2.17.0) Suggests: python-gnome2-doc Conflicts: python-gnomecanvas Filename: pool/main/g/gnome-python/python-gnome2_2.28.1+dfsg-1ubuntu2_amd64.deb Size: 135732 MD5sum: ca2e1ca081c20ce05b369c6dfc7748ed SHA1: e0cc8124f26c90fba147ac69edd8d5c07cda9b28 SHA256: f928bbe98f2298715694673bcd0d1e4760f8b921e36890cae86cea994dc7036c Description: Python bindings for the GNOME desktop environment Homepage: http://www.pygtk.org/ Description-md5: f093594ad0b25220fe9460c0b170ed36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: python-gnome2-desktop-dev Priority: optional Section: python Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: all Source: gnome-python-desktop Version: 2.32.0+dfsg-3 Replaces: python-gnome2-dev (<< 2.9.0) Depends: python-gnomekeyring (>= 2.32.0+dfsg-3), python-rsvg (>= 2.32.0+dfsg-3), python-wnck (>= 2.32.0+dfsg-3), python-gnome2-dev, python-gtk2-dev Filename: pool/main/g/gnome-python-desktop/python-gnome2-desktop-dev_2.32.0+dfsg-3_all.deb Size: 15352 MD5sum: 5dab91095c7c856c837d417b95baac75 SHA1: 10be6ac4006a7ddde199d21d0f6efd243db10e2b SHA256: da02c9e3f444fc3b13144b54612bdaabb8d5a9037219295464851808b4617412 Description: Python bindings for the GNOME desktop environment Description-md5: ba0f1c3faca39522509e1395de843f02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gnome2-dev Priority: optional Section: python Installed-Size: 417 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: all Source: gnome-python Version: 2.28.1+dfsg-1ubuntu2 Depends: python:any (>= 2.7.1-0ubuntu2), python-gnome2 (>= 2.28.1+dfsg-1ubuntu2), python-gobject-2-dev (>= 2.17.0), python-gtk2-dev (>= 2.10.3), python-pyorbit-dev (>= 2.0.1-4) Recommends: python-gnome2-doc Filename: pool/main/g/gnome-python/python-gnome2-dev_2.28.1+dfsg-1ubuntu2_all.deb Size: 33342 MD5sum: fd05246a9b961209edeb827ddb5f60e0 SHA1: 51cb644adaed8d4846d7b7042fcfd539a7b42821 SHA256: 4fb170c5a43c738734cf542e28382c7ef02b83e726fda095120897be810e4f63 Description: Python bindings for the GNOME desktop environment - development files Homepage: http://www.pygtk.org/ Description-md5: 85637c02f8df71d37effed6806977408 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gnome2-doc Priority: optional Section: doc Installed-Size: 293 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: all Source: gnome-python Version: 2.28.1+dfsg-1ubuntu2 Recommends: python-gnome2 Suggests: devhelp Filename: pool/main/g/gnome-python/python-gnome2-doc_2.28.1+dfsg-1ubuntu2_all.deb Size: 34572 MD5sum: a30b01ae94698f8ce1b4ded9155eaf53 SHA1: 9e631f3bb7b4d08d425f8a5af84ef3f0a1398331 SHA256: 723ba8aead7bad3ecf4b4bedaa85757579e6fee6fd5be302495e7bde93722d32 Description: Python bindings for the GNOME desktop environment Homepage: http://www.pygtk.org/ Description-md5: 16e574fcd22a60b616981d9892df970c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gnomekeyring Priority: optional Section: python Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: gnome-python-desktop Version: 2.32.0+dfsg-3 Replaces: python-gnome2-desktop (<< 2.24.0-2) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libgnome-keyring0 (>= 3.2.2-2~), python (>= 2.7), python (<< 2.8), python-gtk2 Suggests: gnome-keyring Filename: pool/main/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-3_amd64.deb Size: 22730 MD5sum: 31f0ac4956b85fa15778aa6426300258 SHA1: b973306bd12888fcb35878254ed4a1c25cd740f6 SHA256: a2044d0f9d0cbfbfb06de5c1553a5e9c96dbff8a7fc4951bfc5464216a898d80 Description: Python bindings for the GNOME keyring library Description-md5: 1e62b15f68ecf53fb6fc8decb37819af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gobject Priority: optional Section: python Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: pygobject Version: 3.12.0-1 Depends: python-gi (>= 3.12.0-1), python-gobject-2 Filename: pool/main/p/pygobject/python-gobject_3.12.0-1_all.deb Size: 2536 MD5sum: 6182c817087ea1f27479c9a14f8dd789 SHA1: 728ee5638a03059ba5ab97fc03905148d077b69d SHA256: 6cd9410c9aad2a160c82e380427041c7de13886649cf608a28eeb00e557cc061 Description: Python 2.x bindings for GObject - transitional package Homepage: https://wiki.gnome.org/PyGObject Description-md5: 0972cedec40e0869495e1025aa320af1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gobject-2 Priority: optional Section: oldlibs Installed-Size: 912 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: pygobject-2 Version: 2.28.6-12build1 Replaces: python-gobject (<< 2.90) Provides: python2.7-gobject, python2.7-gobject-2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libffi6 (>= 3.0.4), libglib2.0-0 (>= 2.26.0) Suggests: python-gobject-2-dbg Breaks: python-gobject (<< 2.90) Filename: pool/main/p/pygobject-2/python-gobject-2_2.28.6-12build1_amd64.deb Size: 176876 MD5sum: 498b2a8d36f0a32d9c7d66b4c837198c SHA1: 933a647aa73127b380a8deb9b7474cdc0c4a8061 SHA256: d44be51d99df037a705e13048dbc1525ba3d61f55313d10b10330e598b312d1a Description: deprecated static Python bindings for the GObject library Description-md5: a8aab9350d9d42a2df907a51577f79b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gobject-2-dbg Priority: extra Section: debug Installed-Size: 2745 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: pygobject-2 Version: 2.28.6-12build1 Replaces: python-gobject-dbg (<< 2.90) Depends: python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.14), libffi6 (>= 3.0.4), libglib2.0-0 (>= 2.26.0), python-gobject-2 (= 2.28.6-12build1) Breaks: python-gobject-dbg (<< 2.90) Filename: pool/main/p/pygobject-2/python-gobject-2-dbg_2.28.6-12build1_amd64.deb Size: 560018 MD5sum: 2eb684a3f95092e8458a04d6eeb9dd91 SHA1: 14ad870aa9a9b0687652b3b93bd70789bbb8dbb8 SHA256: f3ab859789148c8c438cc627f94f49785aba9270c8f0c48e610baf52c814884d Description: deprecated static Python bindings for the GObject library (debug extension) Description-md5: e6a1625df110dc5a28fdb8c1b535ef9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gobject-2-dev Priority: optional Section: oldlibs Installed-Size: 2312 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: pygobject-2 Version: 2.28.6-12build1 Replaces: python-gobject-dev (<< 2.90) Depends: python:any (>= 2.7.1-0ubuntu2), python-gobject-2 (>= 2.28.6-12build1), python-dev, libglib2.0-dev (>= 2.24.0), libffi-dev (>= 3.0.5) Recommends: docbook-xsl Breaks: python-gobject-dev (<< 2.90) Filename: pool/main/p/pygobject-2/python-gobject-2-dev_2.28.6-12build1_all.deb Size: 194492 MD5sum: 99c650a62f19d120f849d16ba7f21085 SHA1: 88ae4264c2203b0c5fceefa158f40a173049dc01 SHA256: 403c4b74e1fa03e7e2af8e76e8d67f15b85bf33ac4f9a18206a229740fb3fc65 Description: development headers for the static GObject Python bindings Description-md5: bd6c4629323bb04c275d7585c2c46bbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gobject-dbg Priority: extra Section: python Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: pygobject Version: 3.12.0-1 Depends: python-gi-dbg (>= 3.12.0-1), python-gobject-2-dbg Filename: pool/main/p/pygobject/python-gobject-dbg_3.12.0-1_all.deb Size: 2674 MD5sum: 8b0cc374851687377da2cf19ec27dea0 SHA1: d201bc55b785cb1e8e113938363d3fd577bd49a7 SHA256: 896082891b91bdd85543e9f3768f9061d5fa4c09f806d97706dd1132af4f98fe Description: Python 2.x debugging modules for GObject - transitional package Homepage: https://wiki.gnome.org/PyGObject Description-md5: 954e52c58f6a715d93f0bb39d354dcd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gobject-dev Priority: optional Section: python Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: pygobject Version: 3.12.0-1 Depends: python-gi-dev (>= 3.12.0-1), python-gi-dev (<< 3.12.0-1.1~), python-gobject-2-dev Filename: pool/main/p/pygobject/python-gobject-dev_3.12.0-1_all.deb Size: 2560 MD5sum: 93f2e30f31ccce3858974876782a6f1c SHA1: 55a0389d0abe935afb75f96e3c9920a21f0446eb SHA256: a114dfb4e06bb6bda111a3ff4926e042b0a625b0f8284abbb096d3f75dc794ec Description: Python 2.x development headers for GObject - transitional package Homepage: https://wiki.gnome.org/PyGObject Description-md5: 5e92564f564cce4acd6aa4f0e7329881 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gpgme Priority: optional Section: python Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Miguel Di Ciurcio Filho Architecture: amd64 Source: pygpgme Version: 0.3-0ubuntu3 Provides: python2.7-gpgme Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libgpgme11 (>= 1.2.0) Filename: pool/main/p/pygpgme/python-gpgme_0.3-0ubuntu3_amd64.deb Size: 24038 MD5sum: f105ec39b48487f126991b6741cedd24 SHA1: a70c93d98a2fc8dda1cb786c89ed2e191e74e8ba SHA256: 987d7d5cbbb9db7d9522cd8ff3e3724b8e292b9a391bb39ddf743e2a3ea1fa60 Description: python wrapper for the GPGME library (Python 2) Homepage: https://launchpad.net/products/pygpgme Description-md5: 77ab7b55532014436484f9b7471f0a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gpgme-dbg Priority: extra Section: debug Installed-Size: 397 Maintainer: Ubuntu Developers Original-Maintainer: Miguel Di Ciurcio Filho Architecture: amd64 Source: pygpgme Version: 0.3-0ubuntu3 Provides: python2.7-gpgme-dbg Depends: python-gpgme (= 0.3-0ubuntu3), libc6 (>= 2.14), libgpgme11 (>= 1.2.0) Recommends: python-dbg Filename: pool/main/p/pygpgme/python-gpgme-dbg_0.3-0ubuntu3_amd64.deb Size: 119170 MD5sum: e00055f190f6cc04ecb688b36b1b1da3 SHA1: 6245aea903a42e7553cb5216b14cfcbcc95c5a21 SHA256: c75acafa6690a49156115790c54e8170c0f4abe46c6d9663643ae9c5f1673a3c Description: python wrapper for the GPGME library (debug extension) (Python 2) Homepage: https://launchpad.net/products/pygpgme Description-md5: 2ce536753702412c35f7fb028cd95038 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gpod Priority: optional Section: python Installed-Size: 759 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libgpod Version: 0.8.3-4ubuntu3 Replaces: python2.3-gpod (<< 0.3.2-1.1) Provides: python2.7-gpod Depends: libgpod4 (= 0.8.3-4ubuntu3), libc6 (>= 2.14), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.16), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-mutagen, python-gobject Conflicts: python2.3-gpod (<< 0.3.2-1.1) Filename: pool/main/libg/libgpod/python-gpod_0.8.3-4ubuntu3_amd64.deb Size: 102490 MD5sum: a00def93e30307b8074ea111cfef83e7 SHA1: df92e36135634d1036f273583bcb158219f64237 SHA256: e971bce0cee80b956a4b17c3bf44e5e2bfa213adc2a49a60adc8bca454a3b893 Description: Python bindings for libgpod Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 671aa8389c6301ee4ec3e82de5457525 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-greenlet Priority: extra Section: python Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Version: 0.4.2-1build1 Depends: libc6 (>= 2.14), python (>= 2.7), python (<< 2.8) Suggests: python-greenlet-doc, python-greenlet-dev, python-greenlet-dbg Conflicts: python-codespeak-lib (<< 1.0) Filename: pool/main/p/python-greenlet/python-greenlet_0.4.2-1build1_amd64.deb Size: 16718 MD5sum: 6bf204746bad67ae81d81229dfebe3b3 SHA1: c42a6b638fa0eb5bfa18aab3fc77de0bb856934d SHA256: 429382bc20ccf391ba10e866c6226598ae0d705edf842b7ee70e53e99803018d Description: Lightweight in-process concurrent programming Homepage: http://pypi.python.org/pypi/greenlet Description-md5: b225620244dd2583ddd491a478322fb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-greenlet-dbg Priority: extra Section: debug Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: python-greenlet Version: 0.4.2-1build1 Depends: libc6 (>= 2.14), python-greenlet (= 0.4.2-1build1) Recommends: python-dbg Filename: pool/main/p/python-greenlet/python-greenlet-dbg_0.4.2-1build1_amd64.deb Size: 12834 MD5sum: 6229216c530aee784019a230d86fc73d SHA1: ae1a18170cea87a13ac48ea05cfe9cb709cc77aa SHA256: 72b07723c3ca13e1fbb9573f99d86e6b7d4cf573ea97c768822d6dcbd42b4789 Description: Lightweight in-process concurrent programming - debugging symbols Homepage: http://pypi.python.org/pypi/greenlet Description-md5: 61fac8d92d90d8b78c7a0d99db0dc978 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-greenlet-dev Priority: extra Section: python Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Source: python-greenlet Version: 0.4.2-1build1 Depends: python-greenlet, python-greenlet (= 0.4.2-1build1) | python3-greenlet (= 0.4.2-1build1) Filename: pool/main/p/python-greenlet/python-greenlet-dev_0.4.2-1build1_amd64.deb Size: 2540 MD5sum: e10eda877c99ecee6773a03a313f37c7 SHA1: 8a7c3e59069703c99a37c9a447eea4de417459e4 SHA256: 15dd0793390b3af69b8304252101a74a902506f7347aa4c24007df27f2ae90f3 Description: Lightweight in-process concurrent programming - development files Homepage: http://pypi.python.org/pypi/greenlet Description-md5: 732237700918b05962305d8ea440ee79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-greenlet-doc Priority: extra Section: doc Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: all Source: python-greenlet Version: 0.4.2-1build1 Depends: libjs-jquery, libjs-underscore Suggests: python-greenlet, python-greenlet-dev Filename: pool/main/p/python-greenlet/python-greenlet-doc_0.4.2-1build1_all.deb Size: 41114 MD5sum: 3ae455c65724199c17e5280e405c35da SHA1: c7b296c8726253340663ed03f6a01934635ae68f SHA256: 2d2679906987bc2de9674df5abed13841d51bcf8d7c977409ec15edbc2ed2c88 Description: Lightweight in-process concurrent programming - documentation Homepage: http://pypi.python.org/pypi/greenlet Description-md5: 38b38ebd2f1d82dff433fbfa8e243dc0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gridfs Priority: optional Section: python Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: all Source: pymongo Version: 2.6.3-1build1 Provides: python2.7-gridfs Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pymongo Filename: pool/main/p/pymongo/python-gridfs_2.6.3-1build1_all.deb Size: 10246 MD5sum: 5bda8eff55d7a642fa348163ddc239fc SHA1: bee00c86823c63f179b7c1a2057992a6d7ab95ea SHA256: 9a1a8be9d200ba0c6a643212ae8710c900befa8dcde81811f24549aea2c9c80f Description: Python implementation of GridFS for MongoDB Homepage: http://api.mongodb.org/python/ Description-md5: 9f81017354ca04e7ee67c50fa96675e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gst0.10 Priority: optional Section: python Installed-Size: 1100 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst0.10-python Version: 0.10.22-3ubuntu2 Replaces: python2.3-gst0.10, python2.4-gst0.10 Provides: python2.7-gst0.10 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.35.9), libgstreamer-plugins-base0.10-0 (>= 0.10.32), libgstreamer0.10-0 (>= 0.10.36), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-gobject (>= 2.11.2), python-libxml2 Suggests: python-gst0.10-dev, python-gst0.10-dbg Conflicts: python2.3-gst0.10, python2.4-gst0.10 Filename: pool/main/g/gst0.10-python/python-gst0.10_0.10.22-3ubuntu2_amd64.deb Size: 199326 MD5sum: 1eaa249088c32e14ec484bc40c89e967 SHA1: c0ebd32cfea0a7577f749eb055aa5d4e078e05b7 SHA256: 44cd54d3560682a0b68621937742a7c35d15b60abc78e614488d07f82611e239 Description: generic media-playing framework (Python bindings) Homepage: http://gstreamer.freedesktop.org Description-md5: 1748db52e021ae1ff627750c13e5a80f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gst0.10-dbg Priority: extra Section: python Installed-Size: 4024 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst0.10-python Version: 0.10.22-3ubuntu2 Depends: python-gst0.10 (= 0.10.22-3ubuntu2), python-dbg, python-gobject-dbg, libc6 (>= 2.14), libglib2.0-0 (>= 2.35.9), libgstreamer-plugins-base0.10-0 (>= 0.10.32), libgstreamer0.10-0 (>= 0.10.36) Filename: pool/main/g/gst0.10-python/python-gst0.10-dbg_0.10.22-3ubuntu2_amd64.deb Size: 778710 MD5sum: 4bdfb62f74e6fa95c99a5cadc3bc023a SHA1: 2ec24e9b3176348949069937fe93c2e0086b8b0a SHA256: 3d99e878bab14c451385d364da4beb261e9a0f06a8666b05bf6ff0eb8f4aecff Description: generic media-playing framework (Python debug bindings) Homepage: http://gstreamer.freedesktop.org Description-md5: 986562fcdee9a8f777e15cfbeb1d9d89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gst0.10-dev Priority: optional Section: python Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: amd64 Source: gst0.10-python Version: 0.10.22-3ubuntu2 Replaces: python-gst0.10 (<< 0.10.15) Depends: python-gobject-dev (>= 2.11.2), libgstreamer0.10-dev (>= 0.10.32), libgstreamer-plugins-base0.10-dev (>= 0.10.32), python-gst0.10 (= 0.10.22-3ubuntu2), python-libxml2 Suggests: python-gst0.10-dbg Filename: pool/main/g/gst0.10-python/python-gst0.10-dev_0.10.22-3ubuntu2_amd64.deb Size: 38836 MD5sum: ea8bd344824a12fa09f3eb15a8fa0bcf SHA1: 4c362c645fa9d99fbd7be4f65eaa81398b0ad5a2 SHA256: 97b000b4fdf7c851de09368d9cabc34383cd5415ca0a2d7bd600f3be25df2016 Description: generic media-playing framework (Python bindings) Homepage: http://gstreamer.freedesktop.org Description-md5: c8398a28bc4e7f43279fae0b60dcbaa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gtk-vnc Priority: optional Section: python Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: amd64 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.24.0), libgtk-vnc-1.0-0 (>= 0.5.1), libgtk2.0-0 (>= 2.8.0), python (>= 2.7), python (<< 2.8), python-gtk2 (>= 2.0) Filename: pool/main/g/gtk-vnc/python-gtk-vnc_0.5.3-0ubuntu2_amd64.deb Size: 8686 MD5sum: 9929ab951a451adbc0a86f0a11a6f4ce SHA1: 924c6e3455170cfd7564feec466bbdf5dbaad4fa SHA256: da8b9f2520f9c24aa78409655d2766f40496fc2dbe786fd5f97e5eaa4fd9cc6b Description: VNC viewer widget for GTK+2 (Python binding) Description-md5: 197bfc980162f35153746006f1e766d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gtk2 Priority: optional Section: python Installed-Size: 3337 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: amd64 Source: pygtk Version: 2.24.0-3ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.21.4), python-cairo (>= 1.0.2-1.1), python-gobject-2 (>= 2.21.3) Suggests: python-gtk2-doc Breaks: python-gtkglext1 (<< 1.1.0-7~) Filename: pool/main/p/pygtk/python-gtk2_2.24.0-3ubuntu3_amd64.deb Size: 602634 MD5sum: 12d3652f7f4bf9c30d3edd519ec8f2c0 SHA1: 5a51f1464cd3223ec513a319f8a7115f999198e5 SHA256: 94effaa650ee1e5128a535f686cc721101042bc3daf313a27d0f7c50a030e390 Description: Python bindings for the GTK+ widget set Homepage: http://www.pygtk.org/ Description-md5: 5035418ed759bba8e07e525854b1624f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gtk2-dbg Priority: extra Section: python Installed-Size: 13031 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: amd64 Source: pygtk Version: 2.24.0-3ubuntu3 Depends: python-gtk2 (= 2.24.0-3ubuntu3), python-glade2 (= 2.24.0-3ubuntu3), python-numpy-dbg, python-cairo-dbg, python-gobject-2-dbg, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglade2-0 (>= 1:2.6.4-2~), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.21.4), python-dbg (>= 2.7), python-dbg (<< 2.8) Filename: pool/main/p/pygtk/python-gtk2-dbg_2.24.0-3ubuntu3_amd64.deb Size: 2427784 MD5sum: bd4e2ccebbf9193b0c913e76c85ec1d0 SHA1: e8c2739db5f538c71a0c466431e2ab1945b5d2c5 SHA256: df0f188291d4103ae867462d3c5ddad9992462e16558ffa4656cd65abb78c8be Description: Python bindings for the GTK+ widget set (debug extension) Homepage: http://www.pygtk.org/ Description-md5: 23ccbe30e7daaa08e6ffd95ccdc56fed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gtk2-dev Priority: optional Section: python Installed-Size: 1286 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: all Source: pygtk Version: 2.24.0-3ubuntu3 Depends: python-gtk2 (>= 2.24.0-3ubuntu3), python-gtk2 (<< 2.24.0-3ubuntu3.1~), libglib2.0-dev (>= 2.8), libgtk2.0-dev (>= 2.18.0), python-dev, python-gobject-2-dev (>= 2.21.3) Recommends: python-gtk2-doc Filename: pool/main/p/pygtk/python-gtk2-dev_2.24.0-3ubuntu3_all.deb Size: 112316 MD5sum: df31d1d625f5a2af8bb424f38e6fdb75 SHA1: 312824eaec1def0ef68e78f0297914f4dd8c5f7a SHA256: c5838527d84b4c30df7848396bc583bca6c3897074ca9fbd9a57452473fd66f7 Description: GTK+ bindings: devel files Homepage: http://www.pygtk.org/ Description-md5: 5bb91e01a3f586df7b6f9ae3e658331b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gtk2-doc Priority: optional Section: doc Installed-Size: 11701 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: all Source: pygtk Version: 2.24.0-3ubuntu3 Depends: python:any (>= 2.7.1-0ubuntu2), python-gtk2 Recommends: python-gobject-2, python-cairo, python-glade2 Suggests: devhelp Filename: pool/main/p/pygtk/python-gtk2-doc_2.24.0-3ubuntu3_all.deb Size: 1006574 MD5sum: 63172d13cbccaa5629d50aa05133d40f SHA1: e873c1e56150c716975262691ef2dd7164e322bb SHA256: 0fa21e7465efb56812bf3804e854f827466e4f7cfe90a6b0dd26896dcec53841 Description: Python bindings for the GTK+ widget set - documentation Homepage: http://www.pygtk.org/ Description-md5: 1fdbe1b697073e637b100524bebc4435 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-happybase Priority: optional Section: python Installed-Size: 460 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.7-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-thrift Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-happybase/python-happybase_0.7-1build1_all.deb Size: 30490 MD5sum: 6eb936b2419cfbc03c22347f4a5dff49 SHA1: bf617b64daf62741d9a6bda251a5e01f3cd83cc6 SHA256: 0946b56471cc7e5601c2ce1e2c3442a10c7788e3f409c7a7337a400a53b53992 Description: developer-friendly Python library to interact with Apache HBase Homepage: https://github.com/wbolster/happybase Description-md5: d25769aa31f6644c5c5e38407aedf7c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-hdate Priority: optional Section: python Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: amd64 Source: libhdate Version: 1.6-2ubuntu3 Provides: python2.7-hdate Depends: libhdate1 (= 1.6-2ubuntu3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/libh/libhdate/python-hdate_1.6-2ubuntu3_amd64.deb Size: 17108 MD5sum: 4172c6c1847c5ac2c6e7da5f6e41f981 SHA1: 637e30263c7b48d27bf55b66afd96b956fbdd246 SHA256: 0bf86ca830b6fca5fd07802fde08200d0dc1e0d5976d774f0eafd132773ec7aa Description: Provides a library that help use hebrew dates (python bindings) Multi-Arch: foreign Homepage: http://libhdate.sourceforge.net/ Description-md5: efabe79e2bb30bfdfa484557fe89a79a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-heat Priority: optional Section: python Installed-Size: 4062 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: python-argparse, python-boto (>= 2.4), python-cinderclient, python-crypto (>= 2.6), python-eventlet (>= 0.12.0), python-extras, python-glanceclient, python-greenlet (>= 0.3.2), python-httplib2, python-iso8601, python-keystoneclient (>= 1:0.2.3), python-kombu, python-lxml (>= 2.3), python-memcache, python-migrate, python-mysqldb, python-neutronclient (>= 1:2.2.0), python-novaclient, python-oslo.config, python-paste, python-pastedeploy, python-routes, python-setuptools, python-six, python-sqlalchemy (>= 0.8~), python-swiftclient, python-webob (>= 1.2.3), python-yaml, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-netaddr, python-requests, python-sqlalchemy (<< 0.9), python-heatclient, python-ceilometerclient, python-troveclient, python-paramiko, python-babel Filename: pool/main/h/heat/python-heat_2014.1-0ubuntu1_all.deb Size: 460202 MD5sum: e869ec63d3315c0d6921e4b838ab982e SHA1: 02b7fb8dce86d3ebb9d145f17895ac565c6b63f5 SHA256: e83b50f791c3a9da0ce8c395eef854a4d614b733a6f60d1f1fea9aef3d54b0c4 Description: OpenStack orchestration service - Python files Homepage: http://wiki.openstack.org/Heat Description-md5: e4d5556b61c4fca7372aee160ff69300 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-heatclient Priority: optional Section: python Installed-Size: 378 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.2.8-0ubuntu1 Depends: python (>= 2.7), python-httplib2, python-iso8601, python-keystoneclient (>= 1:0.2), python-pkg-resources, python-prettytable (<< 0.8), python-prettytable (>= 0.5), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-yaml, python-six, python-requests Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-heatclient/python-heatclient_0.2.8-0ubuntu1_all.deb Size: 50204 MD5sum: 211400536d827693652dcad106c97ff4 SHA1: 1669e4417cf3103994ec218effc75f6c137250e3 SHA256: 9157adfa70a3b853c5311bb171488af73ec8ad38fd58e26d7947036b4405e310 Description: client library and CLI for OpenStack Heat Description-md5: adf6c99fbaff393a2677237eeb42ef1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-hp3parclient Priority: optional Section: python Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 3.0.0-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-httplib2 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-hp3parclient/python-hp3parclient_3.0.0-0ubuntu1_all.deb Size: 21338 MD5sum: cdae2cb734907b2424b9e2b2ae1d181d SHA1: b9cefa1a08673c4446bc224f509d20d274972c02 SHA256: e6fbc6c6800f8dea55fffc57d341a8427a4b74170718fe04bb76330bdd0ed164 Description: client library that can talk to the HP 3PAR Storage array Homepage: http://packages.python.org/hp3parclient Description-md5: 916bcfcb8c0cdf7fd11c8d27f0b7f289 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-hplefthandclient Priority: optional Section: python Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.0.1-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-httplib2 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-hplefthandclient/python-hplefthandclient_1.0.1-1ubuntu1_all.deb Size: 9792 MD5sum: e69e4560a008a7937bcda80d3d88b877 SHA1: cc9e987b33fea86946d2e1ab02bd21f4a03e1868 SHA256: 112711c232c4ab93de6e4e56b439cdf43ed0ea17313e471beab7994998e40f81 Description: HP LeftHand/StoreVirtual HTTP REST Client - Python 2.x Homepage: http://packages.python.org/hplefthandclient Description-md5: 9b2eb493b113402e15084ae334fa8551 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-hplefthandclient-doc Priority: optional Section: doc Installed-Size: 484 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-hplefthandclient Version: 1.0.1-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-hplefthandclient/python-hplefthandclient-doc_1.0.1-1ubuntu1_all.deb Size: 41404 MD5sum: e3d995a6e270c267fa09daab7594fcea SHA1: 730497f238b501a7f8cea056f5bcfb12abf1f5c8 SHA256: 8a5d92371676c70e1d46a9ffc86cb764ea991154e81d7635f70a2a5c48b74dfd Description: HP LeftHand/StoreVirtual HTTP REST Client - doc Homepage: http://packages.python.org/hplefthandclient Description-md5: 43107e28e7b7aadd805851f45b3b0e1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-html5lib Priority: optional Section: python Installed-Size: 539 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: html5lib Version: 0.999-2 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~), python-six Suggests: python-lxml, python-genshi, python-chardet Filename: pool/main/h/html5lib/python-html5lib_0.999-2_all.deb Size: 83158 MD5sum: 385953c57264e9e0b8a8ba30f727dae0 SHA1: 184a21c50d8abfd5ceabc33ba53698d93edf7d14 SHA256: d885589969c39bac25cef9955bfc4c0fb7934602e29da040f34e22d46ebbcad3 Description: HTML parser/tokenizer based on the WHATWG HTML5 specification (Python 2) Homepage: https://github.com/html5lib/html5lib-python Description-md5: aea1c0cc9bf8f95826e63085ada1532c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-htmlgen Priority: optional Section: python Installed-Size: 1236 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Kevin Coyner Architecture: all Source: htmlgen Version: 2.2.2-12.1ubuntu1 Replaces: htmlgen (<< 2.2.2-8.2), python2.3-htmlgen (<< 2.2.2-11), python2.4-htmlgen (<< 2.2.2-11) Provides: python2.7-htmlgen Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-imaging Conflicts: htmlgen (<< 2.2.2-8.2), python2.3-htmlgen (<< 2.2.2-11), python2.4-htmlgen (<< 2.2.2-11) Filename: pool/main/h/htmlgen/python-htmlgen_2.2.2-12.1ubuntu1_all.deb Size: 248592 MD5sum: 3b496f40b19134c89b2e451d80a8bcf5 SHA1: 56a2dfcd1a09543e011d1ad918791416875e45b4 SHA256: 40d586bbd6663ae310cc6fe019383ec42dab7375a9b57889a130c09447566123 Description: Python library for the generation of HTML Description-md5: 4a8ee938aba79cbd46c738877f614c96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-httplib2 Priority: optional Section: libs Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: all Version: 0.8-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), ca-certificates Filename: pool/main/p/python-httplib2/python-httplib2_0.8-2build1_all.deb Size: 35364 MD5sum: f89336424e43d4c425427218fe78ca7f SHA1: 2c13203a6900f79a39f6cd2ba7adb50b3aef03e0 SHA256: 1f477dc82b23e0f6cf42f604e71f12b5ff54a2365407b14e609584bbf2c46d01 Description: comprehensive HTTP client library written for Python Homepage: http://code.google.com/p/httplib2/ Description-md5: 098dea719923e25f61c28f474109dc1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-httpretty Priority: optional Section: python Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.8.0-0ubuntu3 Depends: python-urllib3, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-httpretty/python-httpretty_0.8.0-0ubuntu3_all.deb Size: 13590 MD5sum: 1433146beca10c2c19400fc8a2896d50 SHA1: cec05f1ad7b503623426d57f5c0ac83bd39da279 SHA256: e49a9fc96ca0feae112dfd82a5181b7b21a9d8cdb58bdb7d9a0a25d5d3589bb4 Description: HTTP client mock for Python Homepage: http://github.com/gabrielfalcao/httpretty Description-md5: b33ba1c1f43ccd1ae9a73884f46120d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ibus Priority: optional Section: python Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus Version: 1.5.5-1ubuntu3 Depends: iso-codes, python-dbus (>= 0.83.0), python-gtk2, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/i/ibus/python-ibus_1.5.5-1ubuntu3_all.deb Size: 30654 MD5sum: 30876820030c05cd4614851baa04088a SHA1: e47498195a5453f034dd34ee2fb760ee1232ff8a SHA256: e541a9aef0cf391322566e2dcf51dd64bda61eb7c4da5a8c0ed14ee37c76c595 Description: Intelligent Input Bus - Python support Homepage: http://code.google.com/p/ibus/ Description-md5: a700abef97697e7294f7362fecc2514b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: python-imaging Priority: optional Section: python Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-compat (<< 1.1.7+2.0.0-1.1) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pil Conflicts: python-imaging-compat (<< 1.1.7+2.0.0-1.1) Breaks: python-imaging-compat (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-imaging_2.3.0-1ubuntu3_all.deb Size: 4348 MD5sum: f392ada4280ba8e0958e659b9c66a5e3 SHA1: cfccbaae6cf30bf2c5aecb3ffc442249711b80bb SHA256: 2bc7f390388c4cb79525240fa6cc12a8f3ebe01d9b0b02bec97c9d0fa5b3cdb4 Description: Python Imaging Library compatibility layer Description-md5: b38818fda61e148f59f5054daee87aef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-imaging-dbg Priority: extra Section: python Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python-pil-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python-imaging-dbg_2.3.0-1ubuntu3_all.deb Size: 2722 MD5sum: 9baf51c2b3d33b37c102085f68c0c6c3 SHA1: aaaa3cf9569ebe34754e8210747b06cf508ed93d SHA256: a736efacbd35850fb9f7b7a479fec3e0b8b2804c232a82c70b36f9c1680d1035 Description: Dummy transitional package Description-md5: 4da76f95ff710632847251ecb54943a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-imaging-doc Priority: optional Section: doc Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python-pil-doc (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python-imaging-doc_2.3.0-1ubuntu3_all.deb Size: 1852 MD5sum: f23a2c134239cbb87a4924a1c8ca67c4 SHA1: 3c5390d76760f292c175909969cbb17c1f400143 SHA256: 31b409a5779a5ef5f17f827e2f8ca86d9998863704f7e71fc926510c6eab1bc5 Description: Dummy transitional package Description-md5: b45f15422be0ad72a0153de08c132344 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-imaging-sane-dbg Priority: extra Section: python Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python-sane-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python-imaging-sane-dbg_2.3.0-1ubuntu3_all.deb Size: 2734 MD5sum: 6a199900d9d80f6fed09165b43379e00 SHA1: cf96241e340d22c3e1793ec0b38780ff3850d713 SHA256: 14d240597cfbbdeb15f5c9a76a660f31ccf46f6aae38f404df5355613e638056 Description: Dummy transitional package Description-md5: 5ccbb9dfb0dd3c2e318c54171830715d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-imaging-tk-dbg Priority: extra Section: python Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python-pil.imagetk-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python-imaging-tk-dbg_2.3.0-1ubuntu3_all.deb Size: 2732 MD5sum: 0d24fb035ee847a5b5d0bc4b3b94e406 SHA1: 8f47b4ea589892e0d5ca4c221c50559c6714690b SHA256: 78abf9404da74870bbb9426392aabf2ba66be5a31cb9539c49e76635cdc20af1 Description: Dummy transitional package Description-md5: 7a2bf8ec7f72c8f5453e49bd56071101 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ipaddr Priority: optional Section: python Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Scott Kitterman Architecture: all Version: 2.1.10-1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/p/python-ipaddr/python-ipaddr_2.1.10-1_all.deb Size: 16468 MD5sum: dd68b2b72af833f9d6ae8c783bddec96 SHA1: 3ad5cddea3d21f5620e6dc7a8155f66d3dae1820 SHA256: 7526736bd6320a7d8ffa224d76f2786db80e948287ad5241a253bb5c8c3e55fa Description: Python module for working with IP addresses, both IPv4 and IPv6 Homepage: http://code.google.com/p/ipaddr-py/ Description-md5: 5a0e8d51445e1bf25545a192107d31ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-iscpy Priority: optional Section: python Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: MAAS Maintainers Architecture: all Source: iscpy Version: 1.05-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/i/iscpy/python-iscpy_1.05-0ubuntu2_all.deb Size: 6872 MD5sum: 77223a163f1cdb46cd68fa66fe10ba52 SHA1: e11522479150680fbb50a856dfc9a74b02ca9fa9 SHA256: afb4f2158e5d1bf1a219124efabc733282ba923de1bd39a6cd60424f70f1785f Description: Python library to parse ISC style config files Homepage: https://pypi.python.org/pypi/iscpy Description-md5: 17679b4047d6aac8e658d05dd783eb45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-iso8601 Priority: extra Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Mako Hill Architecture: all Version: 0.1.10-0ubuntu1 Provides: python2.7-iso8601 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-iso8601/python-iso8601_0.1.10-0ubuntu1_all.deb Size: 11748 MD5sum: cf96e81ac68c98ba7dccab09b29e7a1b SHA1: adebc66a6e98d1c567372db6ebfc55f277697dcb SHA256: e5cf1abe2ccb1906190394478b835a9e123e09c9d154cd3a031d1bc5de4c735d Description: python module to parse ISO 8601 dates (python2) Homepage: https://code.google.com/p/pyiso8601 Description-md5: 27205f3dd6e0761206338373b79eb73e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-itsdangerous Priority: optional Section: python Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.22+dfsg1-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-itsdangerous/python-itsdangerous_0.22+dfsg1-1build1_all.deb Size: 11546 MD5sum: 41f85eb2b23f50761d2914f34e28fd52 SHA1: 1cb686225d50727fc066943a07761c7d5fad4ba9 SHA256: 22c4bff19ea911e0920fb082a6e5964b299c1e753db9f2ffe4e349f736eea15b Description: Various helpers to pass trusted data to untrusted environment - python 2.x Homepage: http://pythonhosted.org/itsdangerous/ Description-md5: fe549ed18254fa8bde517ebc80ffb554 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-jabber Priority: optional Section: python Installed-Size: 440 Maintainer: Ubuntu Developers Original-Maintainer: Cosimo Alfarano Architecture: all Source: jabber.py Version: 0.5.0-1.5ubuntu1 Replaces: python2.3-jabber (<< 0.5.0-1.2), python2.4-jabber (<< 0.5.0-1.2) Provides: python2.7-jabber Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python2.3-xml Conflicts: python2.3-jabber (<< 0.5.0-1.2), python2.4-jabber (<< 0.5.0-1.2) Filename: pool/main/j/jabber.py/python-jabber_0.5.0-1.5ubuntu1_all.deb Size: 72358 MD5sum: 941186a5976ffd99a5c6a52233903f4f SHA1: af6af83e152b38951474de5e31fc6187aadd2db9 SHA256: 6b95ac653934ecbafbc0220498678c3467d5ebdeebd19631ed616c4310a3ce52 Description: Python module for the Jabber instant messaging platform Description-md5: c30b34baf002574e6a4fc965ca499dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-jinja2 Priority: optional Section: python Installed-Size: 985 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: jinja2 Version: 2.7.2-2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-markupsafe Recommends: python-pkg-resources Suggests: python-jinja2-doc Filename: pool/main/j/jinja2/python-jinja2_2.7.2-2_all.deb Size: 160620 MD5sum: 9cd2578120e51095678dce07fe22a7ad SHA1: 833733bf8fd25c66ad83d8fd49160adac60ab63f SHA256: f9a7c7b9724a4e9930cb27ddb63722b707b165d995b9e79c1678335c83c1c954 Description: small but fast and easy to use stand-alone template engine Enhances: python-pybabel Homepage: http://jinja.pocoo.org/2/ Description-md5: 946c5e58f8736a9521b16a6d4c1157e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-jinja2-doc Priority: extra Section: doc Installed-Size: 921 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: jinja2 Version: 2.7.2-2 Depends: libjs-sphinxdoc (>= 1.0) Recommends: python-jinja2 Filename: pool/main/j/jinja2/python-jinja2-doc_2.7.2-2_all.deb Size: 135470 MD5sum: 0505708e4462e65c51330178571bc4ca SHA1: e5634f6b1d55e1d4d0ff542c110e916b230f7c02 SHA256: 00c127e1f99dff456e942e9b06845fa5ce6955b7d538be44a22219b2ce8b6ea2 Description: documentation for the Jinja2 Python library Homepage: http://jinja.pocoo.org/2/ Description-md5: e5fe357cd6b91f10c8ecccac668a8672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-json-patch Priority: optional Section: python Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.3-4 Depends: python-jsonpatch Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-json-patch/python-json-patch_1.3-4_all.deb Size: 2312 MD5sum: 5b8a855cfd49edad79d3432f227d42c0 SHA1: df1d746c9f2801c87acac2a113738ce64df6a716 SHA256: a77fb96284b022c043567c3d7235a8a82858c128ca9f0c7489a9c2ddf8e33415 Description: library to apply JSON patches - python 2.x transitional package Homepage: https://github.com/stefankoegl/python-json-patch Description-md5: d0e7d571c67a784957598d04d047af7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-json-pointer Priority: optional Section: python Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.0-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-json-pointer/python-json-pointer_1.0-2build1_all.deb Size: 5158 MD5sum: b0762e2a2192458adcbf70e6be02172d SHA1: 148200d3f577c5b2f26fdbd20ea2b387488c590c SHA256: 0825c4ffcb444fd564721afb5b6e627251a83392373aa329a64eda7863eaee11 Description: resolve JSON pointers - python 2.x Homepage: https://github.com/stefankoegl/python-json-pointer Description-md5: 88ebc1646dbd25b8c4e5cd265730c872 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-jsonpatch Priority: optional Section: python Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-json-patch Version: 1.3-4 Replaces: python-json-patch (<< 1.3-3~) Depends: python-json-pointer, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Breaks: python-json-patch (<< 1.3-3~) Filename: pool/main/p/python-json-patch/python-jsonpatch_1.3-4_all.deb Size: 9088 MD5sum: d1521e9621c4c751d164a6d979705a12 SHA1: 6c2bd789e34de4ba21d1a47ebd11b2cc460eff51 SHA256: 8a3f30fbdb45f7b220aa5297428fe0f84761b4cc2f95e0424ae418f6ff350859 Description: library to apply JSON patches - python 2.x Homepage: https://github.com/stefankoegl/python-json-patch Description-md5: dfb83c7e2938da703b78efb58a27f76a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-jsonpath-rw Priority: optional Section: python Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.2.0-1build1 Depends: python-six, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-ply, python-decorator Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-jsonpath-rw/python-jsonpath-rw_1.2.0-1build1_all.deb Size: 12926 MD5sum: 7e40b1562d3f18032e6236b1ada10cb6 SHA1: 73d606c2d0e7dc1149287f4294bf7130b2351360 SHA256: 6544b698a0b9fc0cabcf9dbc32750f14010c6c8d1e8bfaded37f629d87ef00e5 Description: extended implementation of JSONPath for Python 2.x Homepage: https://github.com/kennknowles/python-jsonpath-rw Description-md5: 8c3c26a7ca91a4c152b759e0cd5c4b87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-jsonrpclib Priority: optional Section: python Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.1.3-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-simplejson Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-jsonrpclib/python-jsonrpclib_0.1.3-1build1_all.deb Size: 14076 MD5sum: 0277bea4326378576c341221acc648c2 SHA1: 07f9223440833bebcbe61c9713a3c6c6694546a1 SHA256: 821dfb72d88edf8e67c3fe09dee79ef8f7829c5261b73c0b84e1fc76c4ab6ff5 Description: implementation of the JSON-RPC v2.0 specification Homepage: https://pypi.python.org/pypi/jsonrpclib Description-md5: df1059d39ea649b629d8d90d579fb364 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-jsonschema Priority: optional Section: python Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 2.3.0-1build1 Depends: python-mock, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-jsonschema/python-jsonschema_2.3.0-1build1_all.deb Size: 27152 MD5sum: f24f78b639a2aed323e456bd8df4b099 SHA1: 9980305c18add8aa5fb90c6b4a061c6d702e39e7 SHA256: 17227c0ac21b885118845b712559139859094e9572252ca5ced6d4b8ab23605f Description: An(other) implementation of JSON Schema (Draft 3) for Python Homepage: https://github.com/Julian/jsonschema Description-md5: 707bb548845ed0a05e5c71bc7ad24fa9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-junitxml Priority: optional Section: python Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Source: pyjunitxml Version: 0.6-1.1build1 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~) Filename: pool/main/p/pyjunitxml/python-junitxml_0.6-1.1build1_all.deb Size: 8940 MD5sum: 3892633415944f93e8849819ca65683e SHA1: bb192f93ed8f6f1aa2fbcd2f3eac115d91c3828a SHA256: 40f73c2a18a85d7e877c77819364abffb713cac72c17f178fa5f04efada0eb6f Description: PyUnit extension for reporting in JUnit compatible XML Description-md5: 2fe874e2f284247bf4fc36d37c2cb1e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-kajiki Priority: extra Section: python Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.4.4-1ubuntu1 Provides: python2.7-kajiki Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-nine, python-babel Filename: pool/main/p/python-kajiki/python-kajiki_0.4.4-1ubuntu1_all.deb Size: 43952 MD5sum: d13c08198cdf6ec38d029a680592f5e1 SHA1: addf369c05dad1fece3af1bb4f2621c2a2773f78 SHA256: 55b6fa7a9dfabdef69cb021516a83a0b4371fb1c53eb17b8a06c58435c2f692e Description: Really fast well-formed xml templates Homepage: http://sourceforge.net/p/kajiki/home/ Description-md5: fc21b83b7f10c9bf588bcc270a1de7bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-keyring Priority: optional Section: python Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Carl Chenet Architecture: all Version: 3.5-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-secretstorage, python-crypto Suggests: python-gi, gir1.2-gnomekeyring-1.0, python-gdata, python-keyczar, python-kde4 Breaks: kupfer (<< 0+v208-2.1), python-mini-buildd (<< 1.0.0~gamma.3) Filename: pool/main/p/python-keyring/python-keyring_3.5-1_all.deb Size: 51756 MD5sum: 33e304163689ded4658db93ffe62be55 SHA1: ae2622259f0da383fc224b6f34ac766bc346a64c SHA256: 3d3af807258d73c0a011db3dc3a4a296120248eb3d3b69aa88f0c22b72e1d598 Description: store and access your passwords safely Homepage: https://bitbucket.org/kang/python-keyring-lib Description-md5: 3dc4fbfcf3523901bf87a7ee24f11b6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-keystone Priority: extra Section: python Installed-Size: 6916 Maintainer: Ubuntu Developers Original-Maintainer: Monty Taylor Architecture: all Source: keystone Version: 1:2014.1-0ubuntu1 Provides: python2.7-keystone Depends: python-babel, python-dogpile.cache (>= 0.5.0), python-eventlet, python-greenlet, python-iso8601, python-keystoneclient (>= 1:0.3.0), python-kombu (>= 2.4.8), python-lockfile, python-lxml, python-migrate, python-netaddr, python-oslo.config (>= 1:1.2.0a3), python-pam (>= 0.1.4), python-passlib, python-paste, python-pastedeploy, python-routes, python-sqlalchemy (>= 0.8.2), python-webob (>= 1.0.8), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-six, python-sqlalchemy (<< 0.9), python-oslo.messaging, python-oauthlib, python-jsonschema, python-pycadf Suggests: python-memcache Filename: pool/main/k/keystone/python-keystone_2014.1-0ubuntu1_all.deb Size: 412660 MD5sum: f68437b1d5e3cacc4111c1b8c30da0ad SHA1: 329cf0233bb47b6e41266d57cee0c5e6db5ad632 SHA256: 6611a9b3ba8a06ab214d3f707f19dd8807b972daedabf942e027369c1ead0d0d Description: OpenStack identity service - Python library Homepage: http://launchpad.net/keystone Python-Version: 2.7 Description-md5: 164bf6a04887bccf5d178b0e54933ecb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-keystoneclient Priority: extra Section: python Installed-Size: 1068 Maintainer: Chuck Short Architecture: all Version: 1:0.7.1-ubuntu1 Depends: python-iso8601, python-pkg-resources, python-requests (>= 1.1.0), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-babel, python-netaddr, python-oslo.config, python-pbr, python-prettytable, python-six Filename: pool/main/p/python-keystoneclient/python-keystoneclient_0.7.1-ubuntu1_all.deb Size: 138674 MD5sum: 397c055bd4c8580c5e8940a27313779a SHA1: 7a996353bbcb1d3801c73703810dc044bd790d11 SHA256: 4a2434615467c2b7028594d644acb732c1c7430d38f553b0d2c91119820dbc75 Description: Client library for OpenStack Identity API Description-md5: fc8c4ddbda8382e94bee34832a059345 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-kombu Priority: optional Section: python Installed-Size: 788 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: kombu Version: 3.0.7-1ubuntu1 Depends: python-librabbitmq | python-amqp (>= 1.3.3), python-anyjson (>= 0.3.3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-amqp Recommends: python-yaml Suggests: python-boto, python-beanstalkc, python-django, python-kombu-doc, python-pika, python-pymongo, python-sqlalchemy Breaks: python-cjson (<= 1.0.5-4+b1) Filename: pool/main/k/kombu/python-kombu_3.0.7-1ubuntu1_all.deb Size: 133258 MD5sum: be47130b5d6eaa5e5e889e86d68dbbd7 SHA1: a7b57bf3fcb9a80fc900b0131e6e03e15577c4db SHA256: 53ed03fdf1d31a3a0f2c0f413a0f4c12a300a23bb354a9de4f1565934dc2e92e Description: AMQP Messaging Framework for Python Homepage: http://github.com/ask/kombu/ Description-md5: 848b8b50da6eb9f6ea81881d26c16e05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-kombu-doc Priority: optional Section: doc Installed-Size: 1928 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: kombu Version: 3.0.7-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/k/kombu/python-kombu-doc_3.0.7-1ubuntu1_all.deb Size: 160460 MD5sum: b9d64f07c6545cf81219c9f219bb0226 SHA1: 6ac31e5000204f9ad6b6a5eae4a71fc37a6d376b SHA256: 42222f47a1b20f76b59f9b0dabdb0608f5696c92177b09bde876313e08668556 Description: AMQP Messaging Framework for Python (Documentation) Homepage: http://github.com/ask/kombu/ Description-md5: 511f8b350dc2d923b621c5c43a375a87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-launchpadlib Priority: optional Section: python Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Stefano Rivera Architecture: all Version: 1.10.2+ds-2 Depends: python-httplib2 (>= 0.4.0), python-keyring (>= 0.5), python-lazr.restfulclient (>= 0.11.2), python-lazr.uri (>= 1.0.2-4~), python-oauth, python-simplejson, python-wadllib, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-pkg-resources, python-testresources Filename: pool/main/p/python-launchpadlib/python-launchpadlib_1.10.2+ds-2_all.deb Size: 45128 MD5sum: 9a5709dec63fee72a08fc0071776a280 SHA1: a1395c142968a7fd7175a8b9de02769ca7beaa14 SHA256: ca94770c1402c1b2638914e087c8c968725e40a5b1e49edbc1d91dfe09b8be8a Description: Launchpad web services client library Homepage: https://launchpad.net/launchpadlib Description-md5: a750e50e8b37547aff54df37eaf126d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-lazr.restfulclient Priority: optional Section: python Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Stefano Rivera Architecture: all Source: lazr.restfulclient Version: 0.13.3-1build1 Depends: python-httplib2, python-lazr.uri, python-pkg-resources, python-simplejson, python-wadllib (>= 1.1.4), python-zope.interface, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-oauth Filename: pool/main/l/lazr.restfulclient/python-lazr.restfulclient_0.13.3-1build1_all.deb Size: 50502 MD5sum: 3df6c737d6f180e29ecbcf7c1d3a2427 SHA1: c4aef5de3662bda2535eb3257e380fa00c67a145 SHA256: 57518832ef937957d9de259b9721d5815342b4432019d45a8fa229b5c25e17bf Description: client for lazr.restful-based web services Homepage: https://launchpad.net/lazr.restfulclient Description-md5: 4bfcfc7863641f40799005d6ab78bd42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-lazr.uri Priority: optional Section: python Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Stefano Rivera Architecture: all Source: lazr.uri Version: 1.0.3-1build1 Depends: python-pkg-resources, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/l/lazr.uri/python-lazr.uri_1.0.3-1build1_all.deb Size: 13402 MD5sum: bcd78aa8023871245d769b5aa4dd99de SHA1: 2b3bec584696e0de083a0b4da8321615bffe130c SHA256: 8bc2889dbc08aa81ec703436d3c233868a6c02f9b35fc614e128d04e7b68306d Description: library for parsing, manipulating, and generating URIs Homepage: https://launchpad.net/lazr.uri Description-md5: 336760955befd26bd1fd61220f0d7fb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ldap Priority: optional Section: python Installed-Size: 312 Maintainer: Ubuntu Developers Original-Maintainer: Matej Vela Architecture: amd64 Version: 2.4.10-1build1 Replaces: python2.3-ldap (<< 2.2.0-1.1), python2.3-ldap-tls, python2.4-ldap (<< 2.2.0-1.1) Provides: python2.7-ldap Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libldap-2.4-2 (>= 2.4.7) Suggests: python-ldap-doc, python-pyasn1 Conflicts: python2.3-ldap (<< 2.2.0-1.1), python2.3-ldap-tls, python2.4-ldap (<< 2.2.0-1.1) Filename: pool/main/p/python-ldap/python-ldap_2.4.10-1build1_amd64.deb Size: 63930 MD5sum: 36ab6c8b74d3f2ac5959a605a20d0882 SHA1: 80693ca7afdac35595eebc8225c5760ce94bb551 SHA256: cb099394b0ef678989b0745602577a14306be6b6f1cca915c05ee3949dd21063 Description: LDAP interface module for Python Homepage: http://www.python-ldap.org/ Description-md5: 340c950d0ab5fb5e410e151b69a822f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ldap-dbg Priority: extra Section: debug Installed-Size: 478 Maintainer: Ubuntu Developers Original-Maintainer: Matej Vela Architecture: amd64 Source: python-ldap Version: 2.4.10-1build1 Provides: python2.7-ldap-dbg Depends: python-ldap (= 2.4.10-1build1), python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.14), libldap-2.4-2 (>= 2.4.7) Filename: pool/main/p/python-ldap/python-ldap-dbg_2.4.10-1build1_amd64.deb Size: 86354 MD5sum: 3eba401bee825b030c777da68f9651fc SHA1: 44e1c4534fdc7f97966e67d753d0fd95de1f869b SHA256: bf64084efdfcbfed099caa1264aeb29854b64d8f3630aa01716b58837642b3c1 Description: LDAP interface module for Python (debug extension) Homepage: http://www.python-ldap.org/ Description-md5: 81f0f76d881af13f2b29b77c16469bc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ldb Priority: optional Section: python Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: ldb Version: 1:1.1.16-1 Provides: python2.7-ldb Depends: libldb1 (= 1:1.1.16-1), python (>= 2.7), python (<< 2.8), libc6 (>= 2.2.5), libpython2.7 (>= 2.7), libtalloc2 (>= 2.0.4~git20101213) Pre-Depends: multiarch-support Filename: pool/main/l/ldb/python-ldb_1.1.16-1_amd64.deb Size: 33232 MD5sum: 919b7dbc7d48f8149a89fe18a678318a SHA1: f86056a5feb2432aaa7aa1e8ba8a2a3ff3809708 SHA256: 064cb09651a378833d95f54e54109f8b84d0ba0234bc4d6321ef204308429011 Description: Python bindings for LDB Homepage: http://ldb.samba.org/ Description-md5: 63f13a66f76e51d06d257d079ab32624 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-ldb-dbg Priority: extra Section: debug Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: ldb Version: 1:1.1.16-1 Depends: python-ldb (= 1:1.1.16-1) Recommends: python-dbg, python-talloc-dbg, python-tdb-dbg Filename: pool/main/l/ldb/python-ldb-dbg_1.1.16-1_amd64.deb Size: 56574 MD5sum: 8c275545b21192ef40cad381d0857e1a SHA1: 8836ab8dc75de843731e83f685664bf0b398b318 SHA256: f5f662702874b90f24f24b0d256f49dced45a32cd73f471496882a0b25bcf8ac Description: Python bindings for LDB - debug extension Homepage: http://ldb.samba.org/ Description-md5: efe3bdc3c95ebfecee4fc7ee26332d66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ldb-dev Priority: optional Section: libdevel Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: ldb Version: 1:1.1.16-1 Depends: libc6-dev, libldb-dev, pkg-config, python-ldb (= 1:1.1.16-1) Filename: pool/main/l/ldb/python-ldb-dev_1.1.16-1_amd64.deb Size: 5024 MD5sum: 5becbb33a9fa0df1d3f6486230abeddd SHA1: 4779a6e50ea2c94ce4d04cd5f2e94a3e9b24ad6e SHA256: f742a82a641407d3e9fb3a599e8c5ac85e042a98cfd5b96bb43c90bd530a14a0 Description: LDB python bindings - development files Homepage: http://ldb.samba.org/ Description-md5: 20110197e6669ff2f77cc4018a09abe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-libapparmor Priority: extra Section: python Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libapparmor1 (>= 2.8.94-0ubuntu1), libc6 (>= 2.14) Filename: pool/main/a/apparmor/python-libapparmor_2.8.95~2430-0ubuntu5_amd64.deb Size: 23772 MD5sum: 5cac6039d22be2246d64d7524558e797 SHA1: da8f8d09d1b5fc9cc826e038b4d0eee23793465e SHA256: 489c5b9071f55848596dfaa475c3c236436d8abb1ceebfb802c0a9084df6bf4e Description: AppArmor library Python bindings Homepage: http://apparmor.net/ Description-md5: 36d3d516db38bd0cbb93cfa172912961 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-librabbitmq Priority: optional Section: python Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Version: 1.0.3-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.15), librabbitmq1 (>= 0.3.0) Filename: pool/main/p/python-librabbitmq/python-librabbitmq_1.0.3-0ubuntu1_amd64.deb Size: 26858 MD5sum: 04d44a37219a864fcc78060099b62b5e SHA1: ea928f07330aa7a4b21bc802d7c498cee1ea6aaf SHA256: ecfdebae7bc490cd77cca3983167bd60890582d214672e6813b26252133ff635 Description: AMQP Client using the rabbitmq-c library Homepage: https://github.com/celery/librabbitmq Description-md5: a1e91db16c2dbcf509ac9252b51653f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-librdf Priority: optional Section: python Installed-Size: 331 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: redland-bindings Version: 1.0.16.1-1.1ubuntu1 Provides: python2.7-librdf Depends: libc6 (>= 2.14), libraptor2-0 (>= 2.0.12), librasqal3 (>= 0.9.31), librdf0 (>= 1.0.17), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/r/redland-bindings/python-librdf_1.0.16.1-1.1ubuntu1_amd64.deb Size: 61100 MD5sum: 960dd84a5ba6dd011c1a165f05291d99 SHA1: 90e4d382f386911ce51c09d59537d26894fb1c0c SHA256: 60ac87243ed973268bfe29d08181b0b041b9b15a6ed7595e834d3a3a1f1bd2c1 Description: Python language bindings for the Redland RDF library Homepage: http://librdf.org/docs/python.html Description-md5: 8451327c9e6bf7796ce5f7549f1cfd37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-libvirt Priority: optional Section: devel Installed-Size: 569 Maintainer: Ubuntu Developers Original-Maintainer: Guido Günther Architecture: amd64 Source: libvirt-python Version: 1.2.2-0ubuntu1 Depends: libc6 (>= 2.4), libvirt0 (>= 1.2.1-0ubuntu10), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: libvirt-bin Filename: pool/main/libv/libvirt-python/python-libvirt_1.2.2-0ubuntu1_amd64.deb Size: 97606 MD5sum: 702673280244dcf50fbce3f02b740303 SHA1: 83a2ff747e761198002922d445082bb05a289cdc SHA256: a9636467535f247c948a3dea3406e7bafe294f63d91e7d1f197d8ff2bae39ef9 Description: libvirt Python bindings Homepage: http://libvirt.org Python-Version: 2.7 Description-md5: 1ea09e4ec81e360f28623d96cfd449ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-libxml2 Priority: optional Section: python Installed-Size: 921 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Provides: python2.7-libxml2 Depends: libc6 (>= 2.14), libpython2.7 (>= 2.7), libxml2 (>= 2.9.1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/libx/libxml2/python-libxml2_2.9.1+dfsg1-3ubuntu4_amd64.deb Size: 139582 MD5sum: 56b3f46494e2630c0ccc4124456b86cd SHA1: df7ddc7bd9e0a9be5222c913eb50cf8b26941e3f SHA256: cba965204f47f839412dc5519c2e3c357e3c63eb3a8601f5436e1c98cb4e432c Description: Python bindings for the GNOME XML library Homepage: http://xmlsoft.org/ Description-md5: e4228b117ba4c3ff09fba829bd0ef07d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-libxml2-dbg Priority: extra Section: python Installed-Size: 837 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Provides: python2.7-libxml2-dbg Depends: python-dbg, python-libxml2 (= 2.9.1+dfsg1-3ubuntu4), libc6 (>= 2.14), libpython2.7-dbg (>= 2.7), libxml2 (>= 2.9.1) Filename: pool/main/libx/libxml2/python-libxml2-dbg_2.9.1+dfsg1-3ubuntu4_amd64.deb Size: 252512 MD5sum: 2b79f026c0ffa2d0163cf1df8b57c3b9 SHA1: 5aec175d38f0022528ea232a8ad2336372f33e00 SHA256: c06b695225ae6ef19bdcef88c2a946f8619b246a4b35816ab1b071dddf3fdb51 Description: Python bindings for the GNOME XML library (debug extension) Homepage: http://xmlsoft.org/ Description-md5: 5d69439c02c8c4c06241f93466f5a75a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-libxslt1 Priority: optional Section: python Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxslt Version: 1.1.28-2build1 Provides: python2.7-libxslt1 Depends: libc6 (>= 2.3.4), libpython2.7 (>= 2.7), libxslt1.1 (>= 1.1.27), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-libxml2 Filename: pool/main/libx/libxslt/python-libxslt1_1.1.28-2build1_amd64.deb Size: 33430 MD5sum: 7d1da0863eb142f410e4cae9d75f9a0e SHA1: 4a46bc097d7f81c8221850e4a718fa3da9bbbe1b SHA256: 95b3d23528229dc892b9ada49f757123598e181f73f1941bc6ab53a078dd0d6b Description: Python bindings for libxslt1 Homepage: http://xmlsoft.org/xslt/ Description-md5: e2cc4c037db99774d273c35b21c8c8b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-libxslt1-dbg Priority: extra Section: python Installed-Size: 459 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxslt Version: 1.1.28-2build1 Provides: python2.7-libxslt1-dbg Depends: python-dbg, python-libxslt1 (= 1.1.28-2build1), libc6 (>= 2.2.5), libpython2.7 (>= 2.7), libxslt1.1 (>= 1.1.27), python-libxml2-dbg Filename: pool/main/libx/libxslt/python-libxslt1-dbg_1.1.28-2build1_amd64.deb Size: 116660 MD5sum: a46b34b238286e26a7f14dbfd71b5afe SHA1: 87f63642900f86a8b262afb9bd43cdc314d7ad75 SHA256: d5de523fde5a64d528f0fb31c5b954e182f397c19780455c5738bf23a503e12a Description: Python bindings for libxslt1 (debug extension) Homepage: http://xmlsoft.org/xslt/ Description-md5: dd55b04fde37de4e907cfd65cd22e216 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-lockfile Priority: extra Section: python Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Ben Finney Architecture: all Version: 1:0.8-2ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-lockfile/python-lockfile_0.8-2ubuntu2_all.deb Size: 8090 MD5sum: 0b3a1c9d495cacbc645ee45ec84e2ff5 SHA1: 90d54c6a697dcd4163de0df20d02083fd7c04641 SHA256: 772ce95fa518c0b4337d3590820f9856bcab407e6b6c9e992a3b6528533f4165 Description: file locking library for Python Homepage: http://pypi.python.org/pypi/lockfile Description-md5: 0f145e0ad6738c6842e0b4486c66fd1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: python-logilab-common Priority: optional Section: python Installed-Size: 6754 Maintainer: Ubuntu Developers Original-Maintainer: Sandro Tosi Architecture: all Source: logilab-common Version: 0.61.0-1 Provides: python2.7-logilab-common Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python Recommends: python-egenix-mxdatetime Suggests: pyro, python-unittest2 Filename: pool/main/l/logilab-common/python-logilab-common_0.61.0-1_all.deb Size: 410780 MD5sum: 5369924ad5a97dc6d6cb978cbd8bc09e SHA1: 68384d16b0db1cabc31a1288ac0671df1561be00 SHA256: 669b4cac724e35ac8802dc4398165bb5e317062d0876daeaab11fd13b0f7c64f Description: useful miscellaneous modules used by Logilab projects Homepage: http://www.logilab.org/project/logilab-common Description-md5: b540c3571f583f11122d82e1ed581604 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-lxml Priority: optional Section: python Installed-Size: 2482 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: lxml Version: 3.3.3-1 Provides: python2.7-lxml Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libxml2 (>= 2.9.0), libxslt1.1 (>= 1.1.26) Suggests: python-lxml-dbg Filename: pool/main/l/lxml/python-lxml_3.3.3-1_amd64.deb Size: 629280 MD5sum: cdc09a8bf98ae2371e6ea7d056db0567 SHA1: 6654af3b002b839baf2c64cb5ec28d68cf1edf09 SHA256: d1e9d6ffebe801a3f21decd52afad4e1bf3b0300cd2d01cfac62365c7d33e57e Description: pythonic binding for the libxml2 and libxslt libraries Homepage: http://lxml.de/ Description-md5: e8e2f787207511401ce91418255455e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-lxml-dbg Priority: extra Section: python Installed-Size: 11792 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: lxml Version: 3.3.3-1 Depends: python-lxml (= 3.3.3-1), python-dbg, libc6 (>= 2.14), libxml2 (>= 2.9.0), libxslt1.1 (>= 1.1.26) Filename: pool/main/l/lxml/python-lxml-dbg_3.3.3-1_amd64.deb Size: 2326778 MD5sum: 3f27eba81c0fb331df2d4fa4e08b4c82 SHA1: a5194cfb6c276802fe9c75be9716aba2db07d84f SHA256: b0fcb8ea40b35e27db3f2f607fd5503f469825f47681af5e2fdcaab56dfddf88 Description: pythonic binding for the libxml2 and libxslt libraries (debug extension) Homepage: http://lxml.de/ Description-md5: 1a963cdd371bc69a71681e560c497634 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-lxml-doc Priority: extra Section: doc Installed-Size: 21372 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: lxml Version: 3.3.3-1 Recommends: python-lxml Filename: pool/main/l/lxml/python-lxml-doc_3.3.3-1_all.deb Size: 1008252 MD5sum: 78e4e87db070463cb2008ffaf516e54b SHA1: f2cb9c5e453f6521517b547c3bfce035ad8b66f4 SHA256: 81cf19457f0b5021732053de5d47c0a9e8346d3a56defaaae2dc4f9405c18977 Description: pythonic binding for the libxml2 and libxslt libraries (documentation) Homepage: http://lxml.de/ Description-md5: 86c3002728b00f49dc1d8a0e4e843699 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-m2crypto Priority: optional Section: libs Installed-Size: 812 Maintainer: Ubuntu Developers Original-Maintainer: Dima Barsky Architecture: amd64 Source: m2crypto Version: 0.21.1-3ubuntu5 Provides: m2crypto, python2.7-m2crypto Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0) Pre-Depends: dpkg (>= 1.15.6) Filename: pool/main/m/m2crypto/python-m2crypto_0.21.1-3ubuntu5_amd64.deb Size: 155710 MD5sum: 4e14c4078c358c09b45462ca2270155a SHA1: 21dc059a7cd011fd6a4136856574cd2bec2a1dce SHA256: f1ffff23f67345c9acdbb6905a8e1d8a53d3161de2c3e65c7c5ab930d426e853 Description: a crypto and SSL toolkit for Python Homepage: http://chandlerproject.org/Projects/MeTooCrypto Description-md5: b54d1b882769b6db2f78c4d46dd9ebb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-maas-client Priority: optional Section: net Installed-Size: 72 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas (<= 0.1+bzr971+dfsg-0ubuntu2) Depends: python-oauth, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: maas (<= 0.1+bzr971+dfsg-0ubuntu2) Filename: pool/main/m/maas/python-maas-client_1.5+bzr2252-0ubuntu1_all.deb Size: 10294 MD5sum: 022d6e8b85ffeaeadb229d0aa7436366 SHA1: 8ee4397e24843700facd0594d67f0a7534063301 SHA256: 7656c5984433a8fa9e6aa88037321c9e7e5c6c8209b12b2e82567f218a3de92d Description: MAAS python API client Homepage: https://launchpad.net/maas Description-md5: 05f87dc1e9852e522dbf7dd04ef6bd0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-maas-provisioningserver Priority: optional Section: net Installed-Size: 419 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas-cluster-controller (<= 0.1+bzr1243+dfsg-0ubuntu3), maas-dhcp (<= 1.4+bzr1817+dfsg-0ubuntu1), python-django-maas (<= 0.1+bzr1048+dfsg-0ubuntu1) Depends: python-amqp, python-celery, python-distro-info, python-formencode, python-jsonschema, python-lockfile, python-lxml, python-maas-client, python-netifaces, python-oops, python-oops-amqp, python-oops-datedir-repo, python-oops-twisted, python-pyparsing, python-simplestreams, python-tempita, python-twisted-core, python-twisted-web, python-txamqp, python-txtftp, python-yaml, python-zope.interface, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Conflicts: python-librabbitmq Breaks: maas-cluster-controller (<= 0.1+bzr1243+dfsg-0ubuntu3), maas-dhcp (<= 1.4+bzr1817+dfsg-0ubuntu1), python-django-maas (<= 0.1+bzr1048+dfsg-0ubuntu1) Filename: pool/main/m/maas/python-maas-provisioningserver_1.5+bzr2252-0ubuntu1_all.deb Size: 75846 MD5sum: b1e2f86256984b01b34535f83fd80654 SHA1: 13f1a7fad99051df8a58b1e111643d2701d7d946 SHA256: dbd18af2a6f47bbfaf3e3c8a4a30a1c1b3b69aee5f7a8d30e6b8577c4fda82eb Description: MAAS server provisioning libraries Homepage: https://launchpad.net/maas Description-md5: 1ed0a93c850b34b72dc7969a00f1aa33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mailer Priority: extra Section: python Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: David Watson Architecture: all Version: 0.7-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-setuptools Filename: pool/main/p/python-mailer/python-mailer_0.7-1ubuntu2_all.deb Size: 6148 MD5sum: 56decef79de1185606ad6bac2842c42b SHA1: 4fbd00a659cc3dfc05f2fd93d36cc19f4f00c4fb SHA256: 94cd7129789ae4975784b439418f69065a074e044b6978a231a37e03ed11256a Description: Python module that simplifies sending email Homepage: http://pypi.python.org/pypi/mailer Description-md5: faf1484e2a140dcdf20d68d710622bb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mako Priority: optional Section: python Installed-Size: 351 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: mako Version: 0.9.1-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-markupsafe Suggests: python-beaker (>= 1.1), python-mako-doc Filename: pool/main/m/mako/python-mako_0.9.1-1_all.deb Size: 59620 MD5sum: 78c42602a68f81f6e49034fbeea117a5 SHA1: 5cfc293c82b10024c855c58cd9df4c7fbe40eada SHA256: 73ee3830ccff8933f9447254e854e7d5e2219b06c29f564aa740cf31fc993bb8 Description: fast and lightweight templating for the Python platform Enhances: python-pygments, python-pylons, python-turbogears Homepage: http://www.makotemplates.org/ Description-md5: b107d73601aca3945d777218802bd901 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mako-doc Priority: extra Section: doc Installed-Size: 902 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: mako Version: 0.9.1-1 Replaces: python-mako (<< 0.3.6-1) Depends: libjs-jquery, libjs-underscore Suggests: python-mako, python3-mako Breaks: python-mako (<< 0.3.6-1) Filename: pool/main/m/mako/python-mako-doc_0.9.1-1_all.deb Size: 132942 MD5sum: f5b824fe4dadb3e554ec4c4dde27c747 SHA1: 2dc54eca315fe9755432af348e81ac7d107e009c SHA256: d78c2a5bc0bdd099815ce6b7f4f41a6c5233e0d3275b3a4db790f87fc22f4978 Description: documentation for the Mako Python library Homepage: http://www.makotemplates.org/ Description-md5: c5fcefc28d6700bb949d948275ad5777 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-markdown Priority: optional Section: python Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 2.4-1 Depends: python:any (>= 2.7.5-5~), python, python:any (<< 2.8) Recommends: python-pygments Suggests: python-markdown-doc Filename: pool/main/p/python-markdown/python-markdown_2.4-1_all.deb Size: 53766 MD5sum: 88bab32fcdc312af1dfeb609ac91a6f4 SHA1: d2fe12a559c2a0952667adbb4287748d5b148cdc SHA256: 12db0b68b6e6f8f57a7b259e1ec5923380e73d35a0bac70158cea9ab46db7cc3 Description: text-to-HTML conversion library/tool (implemented in Python 2) Homepage: https://github.com/waylan/Python-Markdown Description-md5: e1a19386a3c4509e7261f83dc5260238 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-markdown-doc Priority: optional Section: doc Installed-Size: 465 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-markdown Version: 2.4-1 Filename: pool/main/p/python-markdown/python-markdown-doc_2.4-1_all.deb Size: 69592 MD5sum: 535b1718bcec98af2a743ee3d1453a36 SHA1: 01d0ab00d1311cfe76c5f5a4f758697881dd60b6 SHA256: b646f1d6388fe8144f220d12bef65a37b627aee1ba3f8a0b08c2e3f89e614159 Description: text-to-HTML conversion library/tool (documentation) Homepage: https://github.com/waylan/Python-Markdown Description-md5: 4adb2c8eac8dc457ac72e239e7d30ae0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-markupsafe Priority: optional Section: python Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: amd64 Source: markupsafe Version: 0.18-1build2 Provides: python2.7-markupsafe Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14) Filename: pool/main/m/markupsafe/python-markupsafe_0.18-1build2_amd64.deb Size: 14308 MD5sum: 710ec5c745dcd9994e049c3da8ecef7e SHA1: 9bf02f8a0d5b6504da191587d160a6f29c828c66 SHA256: 73b1ef61cdadc9da1b4caab80b4b8d8a5bc8bcf21f81a3476f87220849cc4f6c Description: HTML/XHTML/XML string library for Python Homepage: http://pypi.python.org/pypi/MarkupSafe Description-md5: 7244ad38edd185b1d33807088293138c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-markupsafe-dbg Priority: extra Section: debug Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: amd64 Source: markupsafe Version: 0.18-1build2 Depends: python-markupsafe (= 0.18-1build2), libc6 (>= 2.14), python-dbg (>= 2.7), python-dbg (<< 2.8) Filename: pool/main/m/markupsafe/python-markupsafe-dbg_0.18-1build2_amd64.deb Size: 21420 MD5sum: 24d706e7dab8f9610fd5121dcb95f40c SHA1: 6cc6d79139c739625dfce3108395d0465e993345 SHA256: 094ecd389baeb9ffc0483735d0b52bd2a0004faf59e7f441de27b99c944d865f Description: HTML/XHTML/XML string library for Python - debug version Homepage: http://pypi.python.org/pypi/MarkupSafe Description-md5: f00e70e66a61918b0a7bb5ee71d2ddc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-memcache Priority: optional Section: python Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.53-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: memcached Filename: pool/main/p/python-memcache/python-memcache_1.53-1build1_all.deb Size: 16898 MD5sum: f571071e73b7d12586bba80a5fb77d9c SHA1: e81b2cf8c96d94452f1589d1ec48e60894fe845b SHA256: 6f2eb3a8b5dceca4a79c645ddc8bf153853c606f569934ccff18cbfcbe15195f Description: pure python memcached client Homepage: http://www.tummy.com/Community/software/python-memcached/ Description-md5: c4b602772c7500097ce3ac44c2626baa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-migrate Priority: optional Section: python Installed-Size: 945 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: migrate Version: 0.8.2-3ubuntu1 Depends: libjs-sphinxdoc (>= 1.0), python-decorator, python-pbr, python-pkg-resources, python-sqlalchemy (>= 0.8), python-tempita (>= 0.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-sqlalchemy (<< 0.9) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/m/migrate/python-migrate_0.8.2-3ubuntu1_all.deb Size: 121672 MD5sum: f2ddc47fbfff721635f49fe20dd81359 SHA1: 33e62f6f137aa2bd4dceabf0cf10e8794b33dd36 SHA256: 56156e63418914fc0c4d2d8d3c8c7a035b69916a4232cd309a3dc9882a46169b Description: Database schema migration for SQLAlchemy Homepage: https://github.com/stackforge/sqlalchemy-migrate Description-md5: 45c37ff5dd0dd2ea0a51c4d3066df46d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mimeparse Priority: optional Section: python Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Mathias Ertl Architecture: all Version: 0.1.4-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-mimeparse/python-mimeparse_0.1.4-1build1_all.deb Size: 5916 MD5sum: 35001c4d6be265d6040285d96bb04fa5 SHA1: 6bf9dd7da671f3b1a5633cb11da69683ff6513ab SHA256: ab97b69e364b3e7aa40d4a33603e0e7dedcb475e1eb6d4817a2b64a4ee7d9595 Description: Parse mime-types and quality parameters - python 2.x Homepage: https://pypi.python.org/pypi/python-mimeparse Description-md5: bda30c608204a7bd0c92f74b602eb4b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-minimal Priority: optional Section: python Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-defaults Version: 2.7.5-5ubuntu3 Replaces: python (<= 2.7.3-1~) Depends: python2.7-minimal (>= 2.7.5-1~), dpkg (>= 1.13.20) Recommends: python Conflicts: python-central (<< 0.5.5) Breaks: idle (<< 2.6), python (<= 2.7.3-1~), python-all (<< 2.6), python-all-dbg (<< 2.6), python-all-dev (<< 2.6), python-dbg (<< 2.6), python-dev (<< 2.6), python-examples (<< 2.6), python-support (<< 1.0.10ubuntu2), python2.5-minimal (<< 2.5.5-7), python2.6-minimal (<< 2.6.5~rc2-2), python3.1-minimal (<< 3.1.2~rc1-2) Filename: pool/main/p/python-defaults/python-minimal_2.7.5-5ubuntu3_amd64.deb Size: 27500 MD5sum: 9e26acc793ad04a4e203635b5d61984b SHA1: 5fd061c8e2ad05737ce421ebeb7a2d4231a07fc3 SHA256: 9725adb66d24fcf81823a92fb57585a5a8da9b15be3004d408afb8569b58a1cc Description: minimal subset of the Python language (default version) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 200bc6d6d83361369f54f0e99818ec74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-mock Priority: extra Section: python Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.0.1-3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-mock-doc Filename: pool/main/p/python-mock/python-mock_1.0.1-3_all.deb Size: 23792 MD5sum: 322bef0632cb2bfa8dc51844703a46a5 SHA1: 482fa984825c79da671ae563c12a624bce85c8f4 SHA256: a4a2ec9239f4b669138121ca3e54fc8e000b95869c88eaf09f06e4ebf622234e Description: Mocking and Testing Library Homepage: http://www.voidspace.org.uk/python/mock/ Description-md5: 574e60a9a54d2e566a980b7be2daf1a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mock-doc Priority: extra Section: doc Installed-Size: 871 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-mock Version: 1.0.1-3 Replaces: python-mock (<< 0.7.2) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-mock (<< 0.7.2) Filename: pool/main/p/python-mock/python-mock-doc_1.0.1-3_all.deb Size: 94290 MD5sum: 31d0feaaf60b19ef071cef12610d6175 SHA1: c2599889a725045c9113429be5fe7ece71d022d9 SHA256: 13cd40a2126d47e402aa35a6d7515634f5b45455a5e975b74d3afd8e5573ffae Description: Mocking and Testing Library (Documentation) Homepage: http://www.voidspace.org.uk/python/mock/ Description-md5: ce49c633ce1424a156e31d54d2c8050a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-mocker Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: mocker Version: 1.0-2 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/m/mocker/python-mocker_1.0-2_all.deb Size: 22774 MD5sum: 1927f3abfaa050559063059eb3ceb17b SHA1: 075c4e726fe8695c177d61d3ba7cf9e53867ef5f SHA256: 8910ecee20b08e5d09daf6a15590072706c3045364947e1217e33e378d0ff85c Description: Mocker object mocking framework Homepage: http://labix.org/mocker Description-md5: b79f56672317b43fc987e587f54a368f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-moinmoin Priority: optional Section: python Installed-Size: 28107 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: all Source: moin Version: 1.9.7-1ubuntu2 Provides: python2.6-moinmoin, python2.7-moinmoin Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-werkzeug, python-pygments, python-parsedatetime, python-recaptcha, python-passlib Recommends: default-mta | mail-transport-agent, python-xapian, python-xappy, libapache2-mod-wsgi | httpd-cgi Suggests: python-flup, python-4suite-xml, python-gdchart, python-docutils, python-pyxmpp, python-openid, python-tz, python-ldap, python-mysqldb, miscfiles | wordlist, antiword, catdoc, cifs-utils, poppler-utils | xpdf-utils, docbook-dsssl, fckeditor Filename: pool/main/m/moin/python-moinmoin_1.9.7-1ubuntu2_all.deb Size: 7358792 MD5sum: 437c574213e3aa8e0da34c38165a8739 SHA1: e204223187305cf650eebabd93e8fc0290373f46 SHA256: 6b8e45144849d9feda2fc44b5ac18ccc8d51d223e17102e17cf6863bc2a4e360 Description: Python clone of WikiWiki - library Homepage: http://moinmo.in/ Description-md5: e7e9edb49f7b3a85509d1a40cac0d731 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mox Priority: extra Section: python Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: all Version: 0.5.3-3build1 Provides: python2.7-mox Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-mox/python-mox_0.5.3-3build1_all.deb Size: 17212 MD5sum: 70651101813047034fc3c77ee8d75e10 SHA1: 9c8f0ab436fda107edbf1f0e02a09eaf0d016408 SHA256: 7bfeb4720ae18f84a43b11d0b9a9f5062bd13cd4ee61d77140fed51bc6ba9c64 Description: mock object framework for Python Homepage: http://code.google.com/p/pymox/ Description-md5: 4b70bf813a72e521746dbce7624f63ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-mox3 Priority: optional Section: python Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.7.0-1build1 Depends: python-fixtures (>= 0.3.12), python-pbr (>= 0.5.21), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-mox3/python-mox3_0.7.0-1build1_all.deb Size: 31824 MD5sum: f8115ca7b189c885f84480a47ba858b1 SHA1: 3d5d1126f6033b67b61cc347fec1fe6a20ea6a4d SHA256: ee3450e217857784074f2e783c5bc202609c0301039855d7a346b6f139b476ec Description: Mock object framework - Python 2.x Homepage: https://pypi.python.org/pypi/mox3 Description-md5: fe6fbebd533926f597891a9c85da1d74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-msgpack Priority: optional Section: python Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: msgpack-python Version: 0.3.0-1ubuntu3 Replaces: msgpack-python (<< 0.3.0-1) Provides: msgpack-python Depends: libc6 (>= 2.14), python (<< 2.8), python (>= 2.7~), python:any (>= 2.7.5-5~) Conflicts: msgpack-python (<< 0.3.0-1) Filename: pool/main/m/msgpack-python/python-msgpack_0.3.0-1ubuntu3_amd64.deb Size: 43746 MD5sum: aa6179dd7104a9f6706c2aa4f7f813b7 SHA1: 49d2398ea619c8e99d6981e93a3afe71e62e57fe SHA256: ed717369a1681250b2cea42d44d3a0d487ecfcb610b9b30ec2b2e12cd24a1b9e Description: Python implementation of MessagePack format Homepage: http://pypi.python.org/pypi/msgpack-python/ Description-md5: ed3266dfffb208c8edaaf1a7148c5c6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mutagen Priority: optional Section: python Installed-Size: 406 Maintainer: Ubuntu Developers Original-Maintainer: Tristan Seligmann Architecture: all Source: mutagen Version: 1.22-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-mutagen-doc Filename: pool/main/m/mutagen/python-mutagen_1.22-1ubuntu2_all.deb Size: 76644 MD5sum: b13068e3117d9578f24a678d9aed9473 SHA1: c84e0db957e8a759ff425393fac689b62fd8002a SHA256: cd36158aa99b6628c0fdd7a10dd6bd58649d97ab0cc924822968d012955bdffc Description: audio metadata editing library Homepage: http://code.google.com/p/mutagen/ Description-md5: 1b86a06e0b7bd4c27967043c83601d66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: python-mutagen-doc Priority: optional Section: doc Installed-Size: 545 Maintainer: Ubuntu Developers Original-Maintainer: Tristan Seligmann Architecture: all Source: mutagen Version: 1.22-1ubuntu2 Depends: libjs-sphinxdoc (>= 1.0) Recommends: python-mutagen Filename: pool/main/m/mutagen/python-mutagen-doc_1.22-1ubuntu2_all.deb Size: 68896 MD5sum: db16722b555fbcd9b8a3886f4658cc04 SHA1: 07a8bfc92a505d0544e0b25667d01aa5205ffd65 SHA256: afd7da5ccd2135fed43bc643850a8425af6546d7290510a36cd9adbc3d8bce3a Description: audio metadata editing library - documentation Homepage: http://code.google.com/p/mutagen/ Description-md5: a1e23b059f18d3397a3df8555644807b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-mysqldb Priority: optional Section: python Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Version: 1.2.3-2ubuntu1 Replaces: python2.3-mysqldb, python2.4-mysqldb Provides: python2.7-mysqldb Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libmysqlclient18 (>= 5.5.13-1) Suggests: python-egenix-mxdatetime, mysql-server-5.1 | mysql-server, python-mysqldb-dbg Conflicts: python2.3-mysqldb, python2.4-mysqldb Filename: pool/main/p/python-mysqldb/python-mysqldb_1.2.3-2ubuntu1_amd64.deb Size: 55392 MD5sum: f9afbad9900ea523db8e77a9b13e147b SHA1: 98ef4e61284a304d89930a6a7b6ab4afbb6618cc SHA256: a6a7ce4d7642382805ad56142bd40c5c366eb23e082fc4995473cb4f896ab0f7 Description: Python interface to MySQL Homepage: http://mysql-python.sourceforge.net/ Python-Version: 2.7 Description-md5: aedcc69848aa784241ee4321e0bdea79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python-mysqldb-dbg Priority: extra Section: python Installed-Size: 279 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-mysqldb Version: 1.2.3-2ubuntu1 Depends: python-mysqldb (= 1.2.3-2ubuntu1), python-dbg, libc6 (>= 2.4), libmysqlclient18 (>= 5.5.13-1) Suggests: python-egenix-mxdatetime-dbg Filename: pool/main/p/python-mysqldb/python-mysqldb-dbg_1.2.3-2ubuntu1_amd64.deb Size: 59828 MD5sum: dea26fe289d3fb4110d3103ad5d25005 SHA1: 8d733442057fccd93faf3da4d0230f4b6eeea028 SHA256: a8b155c20127fd892baf00dbeb0245c17567911e621c4d42464c48cb03fd6e1f Description: Python interface to MySQL (debug extension) Homepage: http://mysql-python.sourceforge.net/ Description-md5: 20af5dc562902823ee301a1e4b9e2edf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-netaddr Priority: optional Section: python Installed-Size: 4117 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Bernat Architecture: all Version: 0.7.10-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: ipython, python-netaddr-docs Filename: pool/main/p/python-netaddr/python-netaddr_0.7.10-1build1_all.deb Size: 851078 MD5sum: 6e241fe9287b9ca2b86c20b91360622c SHA1: f51c06b543de27cf66aee21ec2e21e5920a775e4 SHA256: e4cc3465e15ce5a74d86d79bc19db993a09428e7941a9ee028060e3ce107f30d Description: manipulation of various common network address notations (Python 2) Homepage: https://github.com/drkjam/netaddr/ Description-md5: c2e3a8f75f8d079610b276c5a9b9da87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-netaddr-docs Priority: optional Section: doc Installed-Size: 596 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Bernat Architecture: all Source: python-netaddr Version: 0.7.10-1build1 Replaces: python-netaddr (<< 0.7.7-1) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-netaddr (<< 0.7.7-1) Filename: pool/main/p/python-netaddr/python-netaddr-docs_0.7.10-1build1_all.deb Size: 72724 MD5sum: 8a43d8feaaaff11466811f183ed6ff00 SHA1: 1335acafb158595b4c432dabfd938865d33a65bc SHA256: d4c27c43c347227860741764e1b7e6bf5cde33d94adbbaf501229828a8999887 Description: manipulation of various common network address notations (documentation) Homepage: https://github.com/drkjam/netaddr/ Description-md5: 7001ba79e39848790f692fc4611d6c18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-netifaces Priority: optional Section: python Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Mario Izquierdo (mariodebian) Architecture: amd64 Source: netifaces Version: 0.8-3build1 Provides: python2.7-netifaces Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8) Filename: pool/main/n/netifaces/python-netifaces_0.8-3build1_amd64.deb Size: 11274 MD5sum: 40fb4a22bd2fe83f69c796a8d6979b78 SHA1: d343aa06d7236f2363d0fcb5711d65da743bd04f SHA256: b7af5747b8fc3aa4bbc41e7e2c5d4c5f9f5d4d6b1d111b7e8f0edcb16864cbd5 Description: portable network interface information for Python Homepage: http://alastairs-place.net/projects/netifaces/ Python-Version: 2.7 Description-md5: b814657d7bd3e18fb3c75eb6f0ceb94f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-netifaces-dbg Priority: extra Section: python Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Mario Izquierdo (mariodebian) Architecture: amd64 Source: netifaces Version: 0.8-3build1 Depends: libc6 (>= 2.4), python-netifaces (= 0.8-3build1), python-dbg Filename: pool/main/n/netifaces/python-netifaces-dbg_0.8-3build1_amd64.deb Size: 27052 MD5sum: 54bd2e3e5dc56f434e2be75e459a1b3e SHA1: 0ce46788a09ace7118375430b7505ea0aa1fa984 SHA256: bf95fd10377f6965822e4e9dc5e56fde175738a877d570f5b05b88a42b57bc6a Description: portable network interface information for Python (debug extension) Homepage: http://alastairs-place.net/projects/netifaces/ Python-Version: 2.7 Description-md5: c5e3da2b4d1de428fbea1729c7781672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-networkx Priority: optional Section: graphics Installed-Size: 2790 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.8.1-0ubuntu3 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~) Suggests: python-numpy, python-scipy, python-pydot, python-pkg-resources, python-yaml Filename: pool/main/p/python-networkx/python-networkx_1.8.1-0ubuntu3_all.deb Size: 505942 MD5sum: e56789bcfefec7b730a35c983670346b SHA1: 87e894a957be6facb81b8c71c703b914f5192136 SHA256: 31e3fb697c06ab9d21aeb8784ce485898ac367a83b3250795912b3b30ea89830 Description: tool to create, manipulate and study complex networks Homepage: http://networkx.lanl.gov/ Description-md5: cb7ca204568a0b47336b9713c709df11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-networkx-doc Priority: optional Section: doc Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-networkx Version: 1.8.1-0ubuntu3 Filename: pool/main/p/python-networkx/python-networkx-doc_1.8.1-0ubuntu3_all.deb Size: 4790 MD5sum: d4d36767ebe2e11512c990fd3cf21847 SHA1: 5e9478d71f453d831258798bc94b9b88d7b44397 SHA256: 291714f0a17c27410e8f99646afd9982175e845f550f4bc0d161bd7f54b57cd8 Description: tool to create, manipulate and study complex networks - documentation Homepage: http://networkx.lanl.gov/ Description-md5: c4f7e41e61a676b7552dbdb3c02be4fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-neutron Priority: optional Section: python Installed-Size: 38933 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: python-quantum (<< 1:2013.2~b2-0ubuntu1~) Provides: python2.7-neutron Depends: alembic (>= 0.6.0), python-amqplib (>= 0.6.1), python-anyjson (>= 0.3.3), python-babel, python-eventlet (>= 0.13.0), python-greenlet (>= 0.3.12), python-httplib2, python-iso8601, python-jinja2, python-keystoneclient (>= 1:0.3.0), python-kombu (>= 2.5.12), python-netaddr, python-neutronclient (>= 1:2.2.3), python-oslo.config (>= 1:1.2.0a3), python-paste, python-pastedeploy, python-psutil (>= 0.6.1), python-requests (>= 1.1), python-routes, python-six, python-sqlalchemy (>= 0.8.2), python-stevedore (>= 0.10), python-webob, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-jsonrpclib, python-sqlalchemy (<< 0.9), python-oslo.rootwrap, python-novaclient Breaks: python-quantum (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/python-neutron_2014.1-0ubuntu1_all.deb Size: 1143176 MD5sum: 1eebfc38eb7b2e113a39019376aa20f2 SHA1: 7245aae1b42976433b9485bd121b6e45df6a6aaa SHA256: bb2b396697cf148b88652b03fc4523315ba5bffbfcaf0f9acb8a0900ae55a1f4 Description: Neutron is a virutal network service for Openstack - Python library Python-Version: 2.7 Description-md5: 696162f82e78115f82ea6203be5b7e92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-neutronclient Priority: extra Section: python Installed-Size: 732 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Version: 1:2.3.4-0ubuntu1 Replaces: python-quantumclient (<< 1:2.2.4-0ubuntu1~) Depends: python-cliff (>= 1.3.2), python-httplib2, python-prettytable, python-pyparsing (>= 1.5.6), python-simplejson, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-iso8601, python-six, python-babel Breaks: python-quantumclient (<< 1:2.2.4-0ubuntu1~) Filename: pool/main/p/python-neutronclient/python-neutronclient_2.3.4-0ubuntu1_all.deb Size: 81436 MD5sum: 1f5c1f12611bcbee2f81752c3c04db4d SHA1: 84a9643c120b0e678e16f74f668cb785a1156ef0 SHA256: 6baa404e627cb8919c572af9e85f126b4fbe9f9c570272eb52baba7752fd5f3d Description: client - Neutron is a virtual network service for Openstack Homepage: http://launchpad.net/python-quantumclient Description-md5: 9075959c377cb65187ab8a1e4ca574cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-newt Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: amd64 Source: newt Version: 0.52.15-2ubuntu5 Provides: python2.7-newt Depends: libnewt0.52 (= 0.52.15-2ubuntu5), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4) Filename: pool/main/n/newt/python-newt_0.52.15-2ubuntu5_amd64.deb Size: 18258 MD5sum: 3f0f02fd13743ab289f6d92f55ddd2e9 SHA1: 2d38491067697930ae6cd04d7dbd8b48bc51a9b0 SHA256: c5ea97272b0a62a078b10568f678525a374a56fb8cc1cd6c92d4e74f1cbc0fb5 Description: NEWT module for Python Homepage: https://fedorahosted.org/newt/ Description-md5: e4fbb4792c8b9ef38f4c58fdfbf703db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-newt-dbg Priority: extra Section: python Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: amd64 Source: newt Version: 0.52.15-2ubuntu5 Depends: libnewt0.52 (= 0.52.15-2ubuntu5), python-newt (= 0.52.15-2ubuntu5), python-dbg, libc6 (>= 2.2.5) Filename: pool/main/n/newt/python-newt-dbg_0.52.15-2ubuntu5_amd64.deb Size: 44774 MD5sum: 93430b6398e9a43333b63bdd99dfa8ec SHA1: 5c4cfe705f326d5468376f9d7ab99d824181eabe SHA256: df4b400928206e40a0f468e18e48e21df683539e9efe7a38cd88dae513256590 Description: NEWT module for Python (debug extension) Homepage: https://fedorahosted.org/newt/ Description-md5: ebfe1a4f6036e99af788f0948b6bd864 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-nine Priority: extra Section: python Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.3.3-2 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8) Filename: pool/main/p/python-nine/python-nine_0.3.3-2_all.deb Size: 7922 MD5sum: c2eb45135d12e36deacd7e1911ed5287 SHA1: 267ab81ac7af30f444b2af154626b5cf26e00cf6 SHA256: 0f8459f1f41caf11cdc87884e4edd884380eb0fd4ee252712f6ddcb9b756667d Description: Python 2 / 3 compatibility, like six, but favouring Python 3 Homepage: https://pypi.python.org/pypi/nine Description-md5: bf6095d52a50b2ad70c8d7cbbf33290c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-nose Priority: optional Section: python Installed-Size: 578 Maintainer: Ubuntu Developers Original-Maintainer: Gustavo Noronha Silva Architecture: all Source: nose Version: 1.3.1-2 Depends: python-pkg-resources, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any Suggests: python-coverage, python-nose-doc Filename: pool/main/n/nose/python-nose_1.3.1-2_all.deb Size: 118756 MD5sum: bf85d4306cccc7e9639b5f687e9ba659 SHA1: 1364256f549593d6fd77af31e12d982d3c74a11d SHA256: e10266476cd3c320fc94289b9b1e68bf14f8afbae8c15173d9c95a4f747739e6 Description: test discovery and running of Python's unittest Homepage: https://nose.readthedocs.org/en/latest/ Description-md5: 7f9a2e744ba481e6a80b9e2e17fc8016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-nose-doc Priority: optional Section: doc Installed-Size: 1472 Maintainer: Ubuntu Developers Original-Maintainer: Gustavo Noronha Silva Architecture: all Source: nose Version: 1.3.1-2 Replaces: python-nose (<< 1.1.2) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-nose (<< 1.1.2) Filename: pool/main/n/nose/python-nose-doc_1.3.1-2_all.deb Size: 165400 MD5sum: ce17a2502b9d27ccae43f56d11ec38de SHA1: 3555f1f727b061b671b363d4293f6984c82d7785 SHA256: 25f4d5877096af7cb8adca4428d789b70bf3f1feb317d615d555915889313d82 Description: documentation for discovery and running for Python's unittest Homepage: https://nose.readthedocs.org/en/latest/ Description-md5: 18461fe506b28c51828bc5e18adcc1ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-nose-testconfig Priority: optional Section: python Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.9-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-nose-testconfig/python-nose-testconfig_0.9-1_all.deb Size: 8044 MD5sum: 8bbcdc1e69a670dcc3c1663f8f1a00ee SHA1: e852a87e47e2976d5b3b3e94d9004748542deaab SHA256: 3e6bfe065ff6fabff0d811cd15b1bf32551b1a77d6846a12271f1d04ab455f90 Description: test configuration plugin for nosetests Homepage: https://pypi.python.org/pypi/nose-testconfig Description-md5: 1526eed90e3889a3f1335159ac0f3a8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-notify Priority: optional Section: python Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Gustavo Franco Architecture: amd64 Source: notify-python Version: 0.1.1-3ubuntu2 Provides: python2.7-notify Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.12.0), libnotify4 (>= 0.7.0), python-gtk2 (>= 2.10) Filename: pool/main/n/notify-python/python-notify_0.1.1-3ubuntu2_amd64.deb Size: 15534 MD5sum: a3d10403f12a5a6abe57f44511290c40 SHA1: acd821fb89081058c79d6efa38b9d89fff5266ce SHA256: e242361730dabaaf53e36413a74e68e0ba050afbbf00e8d03fafaa826ee0cfc7 Description: Python bindings for libnotify Homepage: http://www.galago-project.org Description-md5: 3392c017056c640af7d7190a16884e85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-nova Priority: extra Section: python Installed-Size: 38067 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Provides: python2.7-nova Depends: openssh-client, openssl, python-amqplib (>= 0.6.1), python-anyjson (>= 0.3.3), python-babel, python-boto (>= 2.4.0), python-cinderclient (>= 1:1.0.5), python-eventlet (>= 0.13.0), python-glanceclient (>= 1:0.9.0), python-greenlet (>= 0.3.2), python-iso8601, python-jinja2, python-jsonschema (>= 1.3.0), python-keystoneclient (>= 1:0.3.2), python-kombu (>= 2.5.12), python-lxml (>= 2.3), python-m2crypto, python-migrate, python-netaddr (>= 0.7.6), python-neutronclient (>= 1:2.3.0), python-oslo.config (>= 1:1.2.0), python-paramiko (>= 1.8.0), python-paste, python-pastedeploy (>= 1.5.0), python-pyasn1, python-pycadf (>= 0.1.9), python-routes, python-simplejson, python-six, python-sqlalchemy-ext (>= 0.7.8-1~) | python-sqlalchemy (<< 0.6.3-2), python-stevedore (>= 0.12), python-suds, python-webob (>= 1.2.3), sudo, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-sqlalchemy (>= 0.8~), python-sqlalchemy (<< 0.9), python-oslo.rootwrap, python-oslo.messaging Recommends: python-mysqldb Suggests: python-ldap Conflicts: python-cjson Filename: pool/main/n/nova/python-nova_2014.1-0ubuntu1_all.deb Size: 1860870 MD5sum: d657976e6271a561bebc8a164d8bd9dc SHA1: 6d33d9af62238bd0d0e8f85e454105d7c06d8144 SHA256: 4577b603087ab329b343715db27990f60b71e7efdf6c1817a8f2558f2ea91d82 Description: OpenStack Compute Python libraries Homepage: http://launchpad.net/nova Python-Version: 2.7 Description-md5: 9e7471c108af7843da4a920afe750d19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-novaclient Priority: optional Section: python Installed-Size: 1173 Maintainer: Ubuntu Developers Architecture: all Version: 1:2.17.0-0ubuntu1 Depends: python-iso8601, python-pkg-resources, python-prettytable (>= 0.6), python-requests (>= 1.1), python-simplejson (>= 2.0.9), python-six, python-babel (>= 0.9.6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr Filename: pool/main/p/python-novaclient/python-novaclient_2.17.0-0ubuntu1_all.deb Size: 139308 MD5sum: a089d1398ea30d9e06767bae9bfebadf SHA1: b0a0d30192ff2eb5f5d801409155ae36a2f4323f SHA256: 3802f2b241d4b5f1553fb8a97dba24de4e62479c77480e99388b67a2a184f720 Description: client library for OpenStack Compute API Python-Version: 2.7 Description-md5: 83b75cda9e6e0d6b6042159ed9ee5a2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ntdb Priority: optional Section: python Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: ntdb Version: 1.0-2ubuntu1 Provides: python2.7-ntdb Depends: libntdb1 (= 1.0-2ubuntu1), python (>= 2.7), python (<< 2.8), libc6 (>= 2.14), libpython2.7 (>= 2.7) Filename: pool/main/n/ntdb/python-ntdb_1.0-2ubuntu1_amd64.deb Size: 8844 MD5sum: 12b296ac094eb4f98eded3b3ec5280dd SHA1: d05888d22c3211ebb1994107e607379f612756e2 SHA256: 0f28ab003087e9f20919a2a627c25bd8746091df1bf237958c12564875d37dec Description: Python bindings for NTDB Homepage: http://tdb.samba.org/ Description-md5: acaae22f7c5258840117ab9e5f34f626 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-ntdb-dbg Priority: extra Section: debug Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: ntdb Version: 1.0-2ubuntu1 Depends: python-ntdb (= 1.0-2ubuntu1) Recommends: python-dbg, libntdb1-dbg Filename: pool/main/n/ntdb/python-ntdb-dbg_1.0-2ubuntu1_amd64.deb Size: 17818 MD5sum: 2ad99e1cc88a7d872b0e4c9b43e71f6f SHA1: 468eb5fcc1fea2de8e71949cf4ecc858fdf8f536 SHA256: b0fda672d38bf7d80e881441a579fca895e113c9f101eea6db0589436f3ea685 Description: Python bindings for NTDB - debug extension Homepage: http://tdb.samba.org/ Description-md5: 20178affed6b2437b28c7e87cb5e85d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-numpy Priority: optional Section: python Installed-Size: 8551 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Version: 1:1.8.1-1ubuntu1 Provides: python-f2py, python-numpy-abi9, python-numpy-api9, python-numpy-dev, python2.7-numpy Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any, libblas3 | libblas.so.3, libc6 (>= 2.14), liblapack3 | liblapack.so.3 Suggests: gcc (>= 4:4.6.1-5), gfortran, python-dev, python-nose (>= 0.10.1), python-numpy-dbg, python-numpy-doc Filename: pool/main/p/python-numpy/python-numpy_1.8.1-1ubuntu1_amd64.deb Size: 1604274 MD5sum: 63eec8e90b3f1ad3885029bb3c3c6669 SHA1: 2bb637e2528a103d69ca046f4d986b91a0103d77 SHA256: 9f175d5c0a32588dc33adf850e64c4b5a6302ba2114dd649890172f428c48c37 Description: Numerical Python adds a fast array facility to the Python language Homepage: http://www.numpy.org/ Description-md5: 7f7fe2d2ed613d0e3a7ffabfd3df14fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: python-numpy-dbg Priority: extra Section: python Installed-Size: 17021 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-numpy Version: 1:1.8.1-1ubuntu1 Replaces: python-numpy (<< 1:1.7.1-1) Depends: python-dbg, python-numpy (= 1:1.8.1-1ubuntu1), libblas3 | libblas.so.3, libc6 (>= 2.14), liblapack3 | liblapack.so.3 Breaks: python-numpy (<< 1:1.7.1-1) Filename: pool/main/p/python-numpy/python-numpy-dbg_1.8.1-1ubuntu1_amd64.deb Size: 3061074 MD5sum: ecee23868c1966767dcc6e7b11ef34ec SHA1: b30794cb1f94e8ee0520038761817ba9e292445f SHA256: 6e1c45bf8a15865682655884bcdf378771044ab78da629623404d7b0722ed315 Description: Fast array facility to the Python language (debug extension) Homepage: http://www.numpy.org/ Description-md5: 3f4626d6863b3a1bde4b43fb67bedf96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-numpy-doc Priority: optional Section: doc Installed-Size: 21618 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-numpy Version: 1:1.8.1-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-numpy/python-numpy-doc_1.8.1-1ubuntu1_all.deb Size: 1944928 MD5sum: 7af71c00320a7da65e1818a7a16db4c1 SHA1: 8fa698d8c59238adb2fc532d035992daac123e39 SHA256: b2000d90fbf5a5c80a5cf6aa9bf7898c849e2724cf451d7334844e0d312df859 Description: NumPy documentation Homepage: http://www.numpy.org/ Description-md5: a147fd7724d6f967382caa8c0f0af4ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-oauth Priority: optional Section: python Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.0.1-3build2 Provides: python2.7-oauth Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-oauth/python-oauth_1.0.1-3build2_all.deb Size: 12830 MD5sum: e2c16c59e6242e3abb211a3e64297615 SHA1: 2168098733f13c07f2251e39c258f0cda047e1b5 SHA256: 1b8277d2f26400c603c38712428afd551aa12556f8cfc2ae507a0a3abc76f34a Description: Python library implementing of the OAuth protocol Homepage: http://code.google.com/p/oauth Description-md5: 28c98bf4852ce37e6f12e5f37f561868 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-oauthlib Priority: optional Section: python Installed-Size: 406 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.6.1-1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python-crypto Filename: pool/main/p/python-oauthlib/python-oauthlib_0.6.1-1_all.deb Size: 59380 MD5sum: c9d6b2599b97bf3a4b95339b441da10d SHA1: 71ef127df4150963a076ea7b945cb29ef03338f9 SHA256: 01caec4eab8b52917c642378b96ca37d232c55e7ff036137478b8f9c68d861bf Description: generic, spec-compliant implementation of OAuth for Python Homepage: https://github.com/idan/oauthlib Description-md5: 49d64d451a046c8953d676ab47bd0ff8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-ogg Priority: optional Section: python Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyogg Version: 1.3+repack-5ubuntu2 Replaces: python-pyogg (<< 1.3+repack-1) Provides: python2.7-ogg Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8), libc6 (>= 2.14), libogg0 (>= 1.0rc3) Suggests: python-ogg-dbg Conflicts: python-pyogg (<< 1.3+repack-1) Filename: pool/main/p/pyogg/python-ogg_1.3+repack-5ubuntu2_amd64.deb Size: 17152 MD5sum: 6ab9abb42ad578ed98cc287413f532b7 SHA1: e09106e75b6a75cf582720252ce9a34e6a92ced5 SHA256: 202cef0fe38c4d38f58b446c043f9278d2b8e79de7254fea60c784cfcee7f85d Description: Python interface to the Ogg library Homepage: http://ekyo.nerim.net/software/pyogg/index.html Python-Version: 2.7 Description-md5: 65ebc4a4cdbb8f5231a4a39031d759bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ogg-dbg Priority: extra Section: python Installed-Size: 261 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyogg Version: 1.3+repack-5ubuntu2 Replaces: python-pyogg-dbg (<< 1.3+repack-1) Depends: python-ogg (= 1.3+repack-5ubuntu2), python-dbg, libc6 (>= 2.14), libogg0 (>= 1.0rc3) Conflicts: python-pyogg-dbg (<< 1.3+repack-1) Filename: pool/main/p/pyogg/python-ogg-dbg_1.3+repack-5ubuntu2_amd64.deb Size: 59692 MD5sum: d6aa104443a9b3e6950c180d3e7cc875 SHA1: ad875a7d14ed6aa877cce283ef58b5ff43341c70 SHA256: a8ed42c77faf7e02b1c10c464581da95f0998919f023a023ee2f4c82882ff49b Description: Python interface to the Ogg library (debug extension) Homepage: http://ekyo.nerim.net/software/pyogg/index.html Description-md5: 1ba07dd44bff3caa46b569f6c49c606f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-oneconf Priority: extra Section: python Installed-Size: 143 Maintainer: Didier Roche Architecture: all Source: oneconf Version: 0.3.7 Replaces: oneconf (<< 0.3) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), oneconf-common, python-dbus, python-oauthlib, python-gi, python-apt, python-piston-mini-client, python-httplib2, python-xdg Filename: pool/main/o/oneconf/python-oneconf_0.3.7_all.deb Size: 19568 MD5sum: 03ec29e7ffa2680a0891bbca10d99442 SHA1: c651e2ae0a5d142e9c600e63eaaa8a881f604a83 SHA256: 0840c8c9acc8fdddd857dad8a0f604d9ca63e4363cb8e733d87c60347dcbbce9 Description: synchronize your configuration data over the network (Python 2) Description-md5: a3e0bc1087a2070ca2fbe2ee526f3627 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-oops Priority: optional Section: python Installed-Size: 65 Maintainer: Andres Rodriguez Architecture: all Source: oops Version: 0.0.10-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-iso8601, python-tz Filename: pool/main/o/oops/python-oops_0.0.10-0ubuntu2_all.deb Size: 10872 MD5sum: 29e6b2cd2c143a8e82d1bd7cce32911d SHA1: a7cc44d56b6c3cd377e209b5d58ec18001e63418 SHA256: ec1a04abc7f922adba23b6d1d36caa288b18bf57b6dd60e5a3776c6079beacfe Description: Serialization, deserialization and allocation of OOPS reports Homepage: http://pypi.python.org/pypi/oops Description-md5: c6775cf93e327926a0b57be0060eab2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oops-amqp Priority: optional Section: python Installed-Size: 70 Maintainer: Andres Rodriguez Architecture: all Source: oops-amqp Version: 0.0.7-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-bson, python-oops, python-amqplib Filename: pool/main/o/oops-amqp/python-oops-amqp_0.0.7-0ubuntu2_all.deb Size: 10822 MD5sum: b390365d5dfa0f18755dffef24ffb8ea SHA1: a18c3d7c2b1924008b9e56e071399f12af64b642 SHA256: a33a70fb28a5acc45b98d0d32223298ca4be77fa87f984929a5611cdb2ad570a Description: AMQP OOPS publisher Homepage: http://pypi.python.org/pypi/oops_amqp Description-md5: 58628fad260a7b0b7f1248a4d31a5e37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oops-datedir-repo Priority: optional Section: python Installed-Size: 93 Maintainer: Andres Rodriguez Architecture: all Source: oops-datedir-repo Version: 0.0.17-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-oops, python-bson, python-iso8601, python-launchpadlib, python-tz Filename: pool/main/o/oops-datedir-repo/python-oops-datedir-repo_0.0.17-0ubuntu2_all.deb Size: 14960 MD5sum: 045eb6814bbf94c1e05e6a7f0b6d8466 SHA1: c279796b5640fb90ec3f464ad684a2944c7b59da SHA256: bdfe568f9e7ab3a9f318f3ddc484b533d1ed9bc622df96221bd3d4c6c2b3898f Description: Disk storage, management, and a serialisation format for OOPSes Homepage: http://pypi.python.org/pypi/oops_datedir_repo Description-md5: 1728590dc20a3414a7f873973be66b24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oops-twisted Priority: optional Section: python Installed-Size: 69 Maintainer: Andres Rodriguez Architecture: all Source: oops-twisted Version: 0.0.6-0ubuntu4 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-oops, python-oops-wsgi, python-twisted, python-tz Filename: pool/main/o/oops-twisted/python-oops-twisted_0.0.6-0ubuntu4_all.deb Size: 10470 MD5sum: ab4065138576783dd54d7fe8bb3c0a49 SHA1: 67208f91eac643a1f2a321a9c0f23728252692a8 SHA256: ba299949a5b0e74b3d8242b04148eb40afb2772357a6a3f4252e0127ddda16b3 Description: Integration between Twisted and oops error reporting system Homepage: http://pypi.python.org/pypi/oops_twisted Description-md5: 1b41196815c2418f05824b18853359d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oops-wsgi Priority: optional Section: python Installed-Size: 71 Maintainer: Andres Rodriguez Architecture: all Source: oops-wsgi Version: 0.0.10-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-oops, python-paste Filename: pool/main/o/oops-wsgi/python-oops-wsgi_0.0.10-0ubuntu2_all.deb Size: 11272 MD5sum: 2fc79a768c5d5103e291f99f68e01ed3 SHA1: aeefef5bf9d2d42930ce6fa90bc972f1e0416294 SHA256: c1c986ef22b487ba9f97c4e498cf06041a4a68b4fe9667bf1ddbdc62c94c38eb Description: Integration of wsgi web servers and oops error reporting system Homepage: http://pypi.python.org/pypi/oops_wsgi Description-md5: f8fa18e290aaa99086e30cabe6576c8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-openid Priority: optional Section: python Installed-Size: 518 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Version: 2.2.5-3ubuntu1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/p/python-openid/python-openid_2.2.5-3ubuntu1_all.deb Size: 118048 MD5sum: 18f10f480ec0e16fab9c27e361148ade SHA1: 118e206cb732aedc9fff026b8ff9e846f48094b6 SHA256: b403b1584fcfca0c3759a43bc0b933b353a9fabe16d74af7fc360ce82b29d967 Description: OpenID support for servers and consumers Homepage: http://github.com/openid/python-openid Description-md5: 06a516ba29d93ae87624ee796303adaf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-openid-doc Priority: optional Section: doc Installed-Size: 16684 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Source: python-openid Version: 2.2.5-3ubuntu1 Recommends: python-openid Filename: pool/main/p/python-openid/python-openid-doc_2.2.5-3ubuntu1_all.deb Size: 1340850 MD5sum: 3831f5a0df5be90d3711e5bc035b02c8 SHA1: 47748cfef5b03e40ae2307782a7cda147479cc3b SHA256: af5c656e728d9f1a350cd9e96dedec364d00a311ef9db7b1c3c8a681b23c5247 Description: OpenID support for servers and consumers -- documentation Homepage: http://github.com/openid/python-openid Description-md5: 81adf2f19d7a75e4c6b7dd13ac0842eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-openssl Priority: optional Section: python Installed-Size: 417 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyopenssl Version: 0.13-2ubuntu6 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0) Suggests: python-openssl-doc, python-openssl-dbg Filename: pool/main/p/pyopenssl/python-openssl_0.13-2ubuntu6_amd64.deb Size: 81482 MD5sum: c8f4a14fb0469dadcbe379db48a7061f SHA1: e1ea87b515228b7d6172700b5b748caffb65e024 SHA256: fafacfeaac0b82f5a5c529282b378b7ad1f1969bd7575903bf761544a7ea0bf8 Description: Python 2 wrapper around the OpenSSL library Homepage: http://launchpad.net/pyopenssl Description-md5: 34bf94e85b02caf329c537f92208752f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-openssl-dbg Priority: extra Section: python Installed-Size: 1077 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyopenssl Version: 0.13-2ubuntu6 Depends: python-openssl (= 0.13-2ubuntu6), python-dbg, libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0) Filename: pool/main/p/pyopenssl/python-openssl-dbg_0.13-2ubuntu6_amd64.deb Size: 212456 MD5sum: fb57caf637d9352ffc10c486ed5efd46 SHA1: 31243103fbc79030abca1486eeba5a118c335abb SHA256: eea822c44a658c7b276fa2194ebf12e52443d6fb29f17f5f4ac1d180f5d61ec4 Description: Python 2 wrapper around the OpenSSL library (debug extension) Homepage: http://launchpad.net/pyopenssl Description-md5: 42b65693799877c98e71e8195faa5e96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-openssl-doc Priority: optional Section: doc Installed-Size: 338 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyopenssl Version: 0.13-2ubuntu6 Suggests: python-openssl, python3-openssl Filename: pool/main/p/pyopenssl/python-openssl-doc_0.13-2ubuntu6_all.deb Size: 131452 MD5sum: 3c2d23f602fb940d03776091e4e5efd7 SHA1: 1c7e0bbd9928306013213ca5d39f555aeb32a2e5 SHA256: cf3c2695f53eb4660e6c565cd035ab32a34f53d61580ef09fc59677df750241f Description: Python wrapper around the OpenSSL library (documentation package) Homepage: http://launchpad.net/pyopenssl Description-md5: ac670bb910ef23fb997f7e3c57ca5305 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-openstack-auth Priority: optional Section: python Installed-Size: 363 Maintainer: Ubuntu Developers Architecture: all Source: python-django-openstack-auth Version: 1.1.3-0ubuntu3 Replaces: python-django-openstack-auth (<< 1.0.1-0ubuntu4~) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-django, python-keystoneclient Conflicts: python-django-openstack-auth (<< 1.0.1-0ubuntu4~) Filename: pool/main/p/python-django-openstack-auth/python-openstack-auth_1.1.3-0ubuntu3_all.deb Size: 27360 MD5sum: 732f14445a966edb76f1271d1cb4d04f SHA1: 44f28ebfcc7490d7908739cd23928ba0bb73e1c9 SHA256: ea250cd3732228fbbae362e9ac1fbf3d3c7767d50547b68a6e66226fc76f91f8 Description: A django authentication backend for Openstack Homepage: http://pypi.python.org/pypi/django_openstack_auth Description-md5: 0b7156f426888e3b832107c8e3ab9212 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslo.config Priority: optional Section: python Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: oslo-config Version: 1:1.2.1-0ubuntu2 Provides: python-oslo-config Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-six, python-argparse Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/o/oslo-config/python-oslo.config_1.2.1-0ubuntu2_all.deb Size: 21608 MD5sum: c095bf60547f412523e9548dbe9c5ac5 SHA1: 08676cec7bb1fbedcfa9126a83815c5a11ebc6b8 SHA256: 441e6c850ba54c2aa0c3dc976e112d3321cbb2caca42a53d49e75141d6cbe62e Description: Common code for Openstack Projects (configuration API) Homepage: https://github.com/openstack/oslo-incubator Description-md5: c0fb860c9aa4302896ca1fcd64aaaded Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslo.messaging Priority: optional Section: python Installed-Size: 402 Maintainer: Chuck Short Architecture: all Source: oslo.messaging Version: 1.3.0-0ubuntu1 Depends: python-babel, python-eventlet, python-iso8601, python-oslo.config, python-six, python-stevedore, python-yaml, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-kombu Filename: pool/main/o/oslo.messaging/python-oslo.messaging_1.3.0-0ubuntu1_all.deb Size: 63256 MD5sum: dbdfbbdab74a16a3a49e876102318ab5 SHA1: bed6d5ef1b9df53c6f784aff453d84aac92b71f0 SHA256: a38a2cd52059df935ce1e4a685bef5c5bb99427f9fe2aed7f2f849bf4c9e6fef Description: oslo messaging library Description-md5: 872693084388794bf5657d0fce94e530 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslo.rootwrap Priority: optional Section: python Installed-Size: 102 Maintainer: Chuck Short Architecture: all Source: oslo.rootwrap Version: 1.2.0-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-six Suggests: sudo Filename: pool/main/o/oslo.rootwrap/python-oslo.rootwrap_1.2.0-0ubuntu1_all.deb Size: 15884 MD5sum: d6f5d2b159c33e858538a84ff30c6181 SHA1: 5491b724446a6da8e2fb4b9c7b9dfa75a6ef2647 SHA256: de64855e7e3b6f882166017f825c9f4d6e1052039d0e914293a26df1a0f2bea1 Description: Fine filtering of shell commands as 'root' Description-md5: be6e10d45360727a7ed8a2c91e6658da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslo.sphinx Priority: optional Section: python Installed-Size: 27 Maintainer: Chuck Short Architecture: all Source: oslo-sphinx Version: 2.0-0ubuntu2 Depends: python-oslosphinx Filename: pool/main/o/oslo-sphinx/python-oslo.sphinx_2.0-0ubuntu2_all.deb Size: 1532 MD5sum: 1a97e22ee233361e88c2a9b3e901f5d7 SHA1: 377992bf851fd611dbc7cac11e9541c49b04c10a SHA256: 828d14e04dc8c7189b99eb455c403b49a7be91643bb6f081e5739a5123902eef Description: oslo.sphinx transitional dummy package Description-md5: 9fe6b2298800d9f9788d9a2772d3e089 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslo.vmware Priority: optional Section: python Installed-Size: 211 Maintainer: Chuck Short Architecture: all Version: 0.2-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-stevedore, python-netaddr, python-iso8601, python-six, python-babel, python-yaml, python-suds, python-eventlet Filename: pool/main/p/python-oslo.vmware/python-oslo.vmware_0.2-0ubuntu1_all.deb Size: 30518 MD5sum: 0e9d8156b4860f34759834c62a93583b SHA1: 0b2abfe926e6466ecd5aae1fa8516335ea41a10f SHA256: d62bee85e47fc7a496e71975655501665aaa7961a2b8e7da9fc4e0850a836bed Description: oslo vmware library Description-md5: c5ae9222c573adfbef86f077b9b59b06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslosphinx Priority: optional Section: python Installed-Size: 92 Maintainer: Chuck Short Architecture: all Source: oslo-sphinx Version: 2.0-0ubuntu2 Replaces: python-oslo.sphinx (<< 1.1~) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: python-oslo.sphinx (<< 1.1~) Filename: pool/main/o/oslo-sphinx/python-oslosphinx_2.0-0ubuntu2_all.deb Size: 14834 MD5sum: 3bf7ca0a37ad3795a85b57f2a55b57de SHA1: d14075b766c8482504790aea59d1f7ef9346a23a SHA256: 3d2c5b7a4cb2c122d7ad28590081419660b41060a11404a990c204501ffd8740 Description: theme and extension support for openstack Description-md5: feffad7fc18a5f59378a2b72954c3e19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslotest Priority: optional Section: python Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.1-1ubuntu3 Depends: python-fixtures (>= 0.3.14), python-mock (>= 1.0), python-mox (>= 0.5.3), python-testtools (>= 0.9.34), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-oslotest/python-oslotest_0.1-1ubuntu3_all.deb Size: 4786 MD5sum: e1f4084e417256e08d78c3c0d29d6904 SHA1: ce64d36c058fa68b1fc87404003c259d723ee24e SHA256: f39b95f72666ad3a58c7a7419c57984c007888d6328a51f332d08a6146451ed6 Description: OpenStack test framework - Python 2.x Homepage: http://launchpad.net/oslo Description-md5: 914a6313818aae977fb69b4473c6b724 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-oslotest-doc Priority: optional Section: doc Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-oslotest Version: 0.1-1ubuntu3 Depends: libjs-sphinxdoc (>= 1.0) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-oslotest/python-oslotest-doc_0.1-1ubuntu3_all.deb Size: 24512 MD5sum: a4020eec27f1835b0aba6389f3406eaa SHA1: 3e7d82d91f4813307c51f9cc4f8b2b58e97f1b1c SHA256: 445ba506ef5526a7ea7da70e38a0619203a364e7ea3b73ae8b1161e462937eca Description: OpenStack test framework - doc Homepage: http://launchpad.net/oslo Description-md5: 09fb07b0a25e402e50b28933036b65e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pam Priority: optional Section: python Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Dima Barsky Architecture: amd64 Version: 0.4.2-13.1ubuntu3 Depends: python (>= 2.7~), python (<< 2.8), libc6 (>= 2.4), libpam0g (>= 0.99.7.1) Suggests: python-pam-dbg Filename: pool/main/p/python-pam/python-pam_0.4.2-13.1ubuntu3_amd64.deb Size: 9990 MD5sum: e518dde3fdb06254f7d383fa289ff049 SHA1: 2479ed6859c4227a6faed71e74d36a276f3b2dd1 SHA256: 57b88457b65d911deb4ae92dd240168c6ee125cde8716905020d794d8f45c20c Description: Python interface to the PAM library Description-md5: 71f7dad76c5454c2aa39a348625096fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-pam-dbg Priority: extra Section: python Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Dima Barsky Architecture: amd64 Source: python-pam Version: 0.4.2-13.1ubuntu3 Depends: python-pam (= 0.4.2-13.1ubuntu3), python-dbg (>= 2.7~), python-dbg (<< 2.8), libc6 (>= 2.4), libpam0g (>= 0.99.7.1) Filename: pool/main/p/python-pam/python-pam-dbg_0.4.2-13.1ubuntu3_amd64.deb Size: 6858 MD5sum: f1f0f6d56f2eca47f74ecfcf3d0b154d SHA1: 4c811bc252bb646b6509a7a65a8be5d7bfa75d3f SHA256: 76f026e8206dabfc571d6f9b446137d09672dc247a62f8d8bbd0c00d9db52fba Description: Python interface to the PAM library (debug extension) Description-md5: c7bbb903a62ceb9eb88f88a9d51fe391 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-paramiko Priority: optional Section: python Installed-Size: 541 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy T. Bouse Architecture: all Source: paramiko Version: 1.10.1-1git1build1 Provides: python2.7-paramiko Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-crypto (>= 2.1.0-2) Filename: pool/main/p/paramiko/python-paramiko_1.10.1-1git1build1_all.deb Size: 105776 MD5sum: e728ed22af7bead915a5e509140971bb SHA1: 92f20ae140eeceb36d456bb696b4a5e5c7f36585 SHA256: b665fdc994b7d1944bc54aab781f9110d2e1e6e4d33257151bf6d2f8a2f56a7c Description: Make ssh v2 connections with Python (Python 2) Homepage: https://github.com/paramiko/paramiko/ Description-md5: ef19708cf575fb15646b6a0f32043a47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-parsedatetime Priority: optional Section: python Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: parsedatetime Version: 1.1.2-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), base-files (>= 4.0.4) Recommends: python-pyicu Filename: pool/main/p/parsedatetime/python-parsedatetime_1.1.2-0ubuntu1_all.deb Size: 20452 MD5sum: 01a7d4a299b904698f2935402abd018e SHA1: e7edc5e7d93356498899766427b345d1e6e2c6ba SHA256: 6842fc43b630e27d1c17a6f0ddfe057965a98c91aa836972a68c14eead8551f6 Description: Python module to parse human-readable date/time expressions Homepage: https://pypi.python.org/pypi/parsedatetime/ Description-md5: e09fdbe405ace759c61c71c6a03c761a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-passlib Priority: extra Section: python Installed-Size: 709 Maintainer: Ubuntu Developers Original-Maintainer: Monty Taylor Architecture: all Source: passlib Version: 1.5.3-0ubuntu3 Provides: python2.7-passlib Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/passlib/python-passlib_1.5.3-0ubuntu3_all.deb Size: 122642 MD5sum: 148af17ab6f32a5dc65e7c1a5829ec92 SHA1: bacacc1ace829c4d252750723ba6f80677cfcb95 SHA256: 773404bed3b1b5fcbf236f3a0350e54ccc12e69201679945314bd08516bc67e1 Description: comprehensive password hashing framework Homepage: http://pypi.python.org/pypi/passlib Description-md5: f760ce62d4b27f801820a175facd19ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-paste Priority: optional Section: python Installed-Size: 2189 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: paste Version: 1.7.5.1-6ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources, python-formencode (>= 0.5.1-1), python-tempita Recommends: python-ctypes, python-openid, python-openssl, python-scgi Suggests: python-pastedeploy, python-pastescript, python-pastewebkit, libjs-mochikit, libapache2-mod-wsgi, libapache2-mod-python (>= 3.2.8-3), libapache2-mod-scgi, python-pgsql (>= 2.5.1-1), libjs-sphinxdoc (>= 1.0) Breaks: python-pastescript (<< 1.7.3-7~1) Filename: pool/main/p/paste/python-paste_1.7.5.1-6ubuntu3_all.deb Size: 366738 MD5sum: 087a0e6d604920077dba2eb699fee451 SHA1: 4f080c3cd87c67c188bf701458c59ff55321129f SHA256: f9a8a73b028450a3f3b97f2dceb9270cd92225730e2376e910c23b1af228d142 Description: tools for using a Web Server Gateway Interface stack Homepage: http://pythonpaste.org/ Description-md5: 3ddc7c0d3c16fc3b170f50f4fde9d0d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pastedeploy Priority: optional Section: python Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pastedeploy Version: 1.5.2-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pastedeploy-tpl (= 1.5.2-1), python-paste, python-pkg-resources Recommends: python-pastescript (>= 1.7.3-6~) Filename: pool/main/p/pastedeploy/python-pastedeploy_1.5.2-1_all.deb Size: 25514 MD5sum: 3c0587c8218a420b1718ab9b5f01b42f SHA1: f73fe8a7782cadc1c57130b50f7bb4ebe6065df3 SHA256: 4df4a7dfed631eeea8bb0463866348f0474570ec87fbc1c9443aad0f6216a6a8 Description: load, configure, and compose WSGI applications and servers Enhances: python-paste Homepage: http://pythonpaste.org/deploy/ Description-md5: afbb73c46ccd2497967e15984a3955d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pastedeploy-tpl Priority: optional Section: python Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pastedeploy Version: 1.5.2-1 Replaces: python-pastedeploy (<< 1.5.0-4) Breaks: python-pastedeploy (<< 1.5.0-4) Filename: pool/main/p/pastedeploy/python-pastedeploy-tpl_1.5.2-1_all.deb Size: 4518 MD5sum: 026875f9ea63f46eb1c7271f48563ce4 SHA1: 83b6ef3b2c6be442774143fb106d6ef3ddb7888f SHA256: 7557e2061bfa7faeb2413b113bbb8732a4277e749a8e1506573146b00136e858 Description: load, configure, and compose WSGI applications and servers - templates Homepage: http://pythonpaste.org/deploy/ Description-md5: 48210110930eb45679dddab1e36fbd39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pastescript Priority: optional Section: python Installed-Size: 686 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pastescript Version: 1.7.5-3build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any, python-paste (>= 1.7.5.1-2~), python-pastedeploy (>= 1.5.0-1~), python-setuptools | python-distribute Suggests: python-flup (>= 0.5-1), python-cherrypy, python-cheetah (>= 1.0-1.1), libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/pastescript/python-pastescript_1.7.5-3build1_all.deb Size: 117134 MD5sum: efbe8811182fd40546ff68cd99ab0df7 SHA1: 3c4320f242fb5348ca032e9dd4d8765baf051117 SHA256: a4c02b110aacbb12d5d0b595447eb468a67358ef4f402b15c42f69d4bf1b221a Description: serving web applications, creating file layouts for Python packages Homepage: http://pythonpaste.org/script/ Description-md5: b1b528a08e1a6cbae1e0b6d68bb16aa9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pbr Priority: extra Section: python Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.7.0-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-pbr/python-pbr_0.7.0-0ubuntu2_all.deb Size: 36150 MD5sum: a289b28e339bf153a43a6b06933e192d SHA1: dea0803f95e06c829cb4acec7d530d0d1c9fd3d3 SHA256: 08ecd841c3a59276229f39e1b3d4a1a6015aa8bbfcd634be7e9fddc97f0d0aeb Description: inject useful and sensible default behaviors into setuptools - Python 2.x Homepage: http://pypi.python.org/pypi/pbr Description-md5: 2b43552f188c95fde6c276335374d852 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pecan Priority: optional Section: python Installed-Size: 559 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.3.0-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-webob, python-simplegeneric, python-mako (>= 0.4.0), python-webtest, python-six, python-markupsafe Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-pecan/python-pecan_0.3.0-1ubuntu2_all.deb Size: 103540 MD5sum: d3c5facd87da4ebe43d3521500e5e157 SHA1: acbd22e02d4f10d070da79269c677c9502c80d7c SHA256: 818b650dce0bb1c96d2104ec814b438aa836003f87f950beecb2ab3eaa2853fd Description: WSGI object-dispatching web framework Homepage: http://pypi.python.org/pypi/pecan Description-md5: 49073070e46c2a82b1d72868c32d47e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pexpect Priority: optional Section: python Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Ganesan Rajagopal Architecture: all Source: pexpect Version: 3.1-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-pexpect-doc Filename: pool/main/p/pexpect/python-pexpect_3.1-1_all.deb Size: 37760 MD5sum: 475f6879ccfe93511c64a3502ac9183f SHA1: 2934371db42bedb290543f71ce124cd9c93c8162 SHA256: 83c6a993bf50ab249809d0cdd7031efc79730f5fb855b5e708cc76546ac089d8 Description: Python module for automating interactive applications Homepage: http://www.noah.org/wiki/Pexpect Description-md5: d65bfec864ae3e7ccf016394e866e099 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-pexpect-doc Priority: optional Section: doc Installed-Size: 901 Maintainer: Ubuntu Developers Original-Maintainer: Ganesan Rajagopal Architecture: all Source: pexpect Version: 3.1-1 Replaces: python-pexpect (<< 3) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-pexpect (<< 3) Filename: pool/main/p/pexpect/python-pexpect-doc_3.1-1_all.deb Size: 122952 MD5sum: 1e5dcdd2b5fb146c0a02df57f1e5c7bd SHA1: 1177302e1808cee611c67e2c7e5b7647dcfda44d SHA256: e4d9c3b5b7613e3ba6e039a10d24d1e03df6bf524e41343e40627211f3955426 Description: Python module for automating interactive applications (documentation) Homepage: http://www.noah.org/wiki/Pexpect Description-md5: a24c0229c9a7a675e2f190e43f543e7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pika Priority: optional Section: python Installed-Size: 513 Maintainer: Ubuntu Developers Original-Maintainer: Jan Dittberner Architecture: all Version: 0.9.13-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-pika/python-pika_0.9.13-1build1_all.deb Size: 94606 MD5sum: 4039ca3679995203f5d11ea6d90a8915 SHA1: b750f5f0f7076537d38897f104bcb503b32aad4c SHA256: 3ebb0716886ac0e5b263e048d3d797c35661e3bbbeabd7438e25d868e3ca0716 Description: AMQP client library Homepage: http://pika.github.com/ Description-md5: c40f9706e6bb3416c56518f7abcf849f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pil Priority: optional Section: python Installed-Size: 1123 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging (<< 1.1.7+2.0.0-1.1) Provides: python-pillow, python2.7-pil Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), mime-support | python-pil.imagetk, libc6 (>= 2.14), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libtiff5 (>= 4.0.3), libwebp5, libwebpmux1, zlib1g (>= 1:1.1.4) Suggests: python-pil-doc, python-pil-dbg Breaks: python-imaging (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-pil_2.3.0-1ubuntu3_amd64.deb Size: 279158 MD5sum: ccdcf48f9807dd1124134f77dc31afe3 SHA1: 450a8d2f50cf6d5e7e3f98c1b452a30c173eae0b SHA256: fb0e5ace529232c082a9735a19bb77bb78ee2110bbbb16831b083a0fe46bec02 Description: Python Imaging Library (Pillow fork) Description-md5: 7fb415befc961c94ce8c999eb6902e95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-pil-dbg Priority: extra Section: debug Installed-Size: 1860 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-dbg (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-dbg Depends: python-pil (= 2.3.0-1ubuntu3), python-dbg, libc6 (>= 2.14), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), libtiff5 (>= 4.0.3), libwebp5, libwebpmux1, zlib1g (>= 1:1.1.4) Breaks: python-imaging-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-pil-dbg_2.3.0-1ubuntu3_amd64.deb Size: 407290 MD5sum: 982b27b2644331a632438612eb6f66c9 SHA1: a206f3ba7dc0eee895677b75197691b15fe6b105 SHA256: 6db7a7176833c3708150976d8f957a6e69bf0a2eba8f09d33a01c3016205725c Description: Python Imaging Library (debug extension) Description-md5: d6a7480c57ccf294697d16f2577b0491 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pil-doc Priority: optional Section: doc Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-doc (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-doc Suggests: python-pil-doc-html, python-pil-doc-pdf, python-doc, python3-pil | python-pil, python3-pil.imagetk | python-pil.imagetk Breaks: python-imaging-doc (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-pil-doc_2.3.0-1ubuntu3_all.deb Size: 13738 MD5sum: 2ed299eef68307b2bbfca2816c439f64 SHA1: f08cd2e24ea39b3b88a8eae6664610f1710bc92a SHA256: 670e06f633b512d5b09583b23d22ae1984cf5cb4d51b6354e35109451c90121f Description: Examples for the Python Imaging Library Description-md5: 0cf86354863d856ed40290c421b7d497 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pil.imagetk Priority: optional Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-tk (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-tk, python2.7-pil.imagetk Depends: python-pil (= 2.3.0-1ubuntu3), python-tk (>= 2.5.2-1.1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3.4), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Suggests: python-pil-doc, python-pil.imagetk-dbg Breaks: python-imaging-tk (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-pil.imagetk_2.3.0-1ubuntu3_amd64.deb Size: 7282 MD5sum: 1095365c3fba94eef8fd462176f81372 SHA1: 52db1268608b7e21345f6dd99883765b26b95719 SHA256: fd98ef3fc1ee4a62a215327e63162f9861735b27976dd7877e334dccc02a485d Description: Python Imaging Library - ImageTk Module (Pillow fork) Description-md5: d7c38cb1538a3b67445e030c1ee4dcff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pil.imagetk-dbg Priority: extra Section: debug Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-tk-dbg (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-tk-dbg Depends: python-pil.imagetk (= 2.3.0-1ubuntu3), python-pil-dbg (= 2.3.0-1ubuntu3), python-dbg, libc6 (>= 2.2.5), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Breaks: python-imaging-tk-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-pil.imagetk-dbg_2.3.0-1ubuntu3_amd64.deb Size: 13226 MD5sum: 8a7c6f17b16208bd9e5c3ef6d2b9656e SHA1: 1aadcf78f18d4889cd85f3c9f0bcddad7e7c1283 SHA256: 63b336c2f5f9dd55a910b24261d07b7a6e6c103725056a4d6288f4f216737f8a Description: Python Imaging Library - ImageTk Module (debug extension) Description-md5: 6e66fe1fd66cbdce6623bfe718d8bb25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pisock Priority: extra Section: python Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: amd64 Source: pilot-link Version: 0.12.5-6ubuntu2 Replaces: pilot-link (<< 0.9.3-1), pilot-link-python Provides: python2.7-pisock Depends: libc6 (>= 2.14), libpisock9, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-pisock-dbg Conflicts: pilot-link-python Filename: pool/main/p/pilot-link/python-pisock_0.12.5-6ubuntu2_amd64.deb Size: 49826 MD5sum: bfebf6aae9ba4fa3bd990f859697373b SHA1: 23aaf6f762631276a6fbf110c415ac95bf4f1c2d SHA256: 10103e2994781377d98661e5b850bc61074b21189795ff0ec0b325e407740f96 Description: Python module to communicate with PalmOS PDA Homepage: http://www.pilot-link.org/ Python-Version: 2.7 Description-md5: 362187f75271df4d9ddc5a7e1605ff85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pisock-dbg Priority: extra Section: python Installed-Size: 656 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: amd64 Source: pilot-link Version: 0.12.5-6ubuntu2 Depends: python-pisock (= 0.12.5-6ubuntu2), python-dbg, libc6 (>= 2.14), libpisock9 Filename: pool/main/p/pilot-link/python-pisock-dbg_0.12.5-6ubuntu2_amd64.deb Size: 302420 MD5sum: 8c7fb438330008f0c8141aa131fbcb32 SHA1: f44e8586e10b9de6e5d26cf449c11d6c0d5573e4 SHA256: 00625682b65dc672022e3fd934be8f68b1920c7f3639b04526743a67da3af7af Description: Python module to communicate with PalmOS PDA (debug extension) Homepage: http://www.pilot-link.org/ Description-md5: d834190fbb67772bbb1d7ac37421b1a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-piston-mini-client Priority: extra Section: python Installed-Size: 115 Maintainer: Michael Vogt Architecture: all Source: piston-mini-client Version: 0.7.5-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-oauthlib, python-httplib2 Filename: pool/main/p/piston-mini-client/python-piston-mini-client_0.7.5-0ubuntu2_all.deb Size: 18572 MD5sum: aae43cc4c7d4fe0a639f1d7ce6f6f1bd SHA1: c45a15bf701b062dcf13c8f8331cfe456791528a SHA256: 201f91d34b93dd369678adaa6fe80ed5106b5e10329eca3ecca5279ff41c0616 Description: library for writing clients for Django's Piston REST APIs Homepage: https://launchpad.net/piston-mini-client Description-md5: 85967fffc8dbca36ac23a6ee0b868976 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-pkg-resources Priority: optional Section: python Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-setuptools Version: 3.3-1ubuntu1 Provides: python2.7-setuptools Depends: python:any (>= 2.7), python:any (<< 2.8) Suggests: python-distribute, python-distribute-doc Conflicts: python-setuptools (<< 0.6c8-3) Filename: pool/main/p/python-setuptools/python-pkg-resources_3.3-1ubuntu1_all.deb Size: 61858 MD5sum: 405401d8abf835f703bd6499a5f9788a SHA1: 6c8968564791369dfc236a3f6f00459a212da53d SHA256: cf6e8f4484035468eae046e10476f0b24b1fc7c9958410a322e958947c6d0441 Description: Package Discovery and Resource Access using pkg_resources Homepage: https://pypi.python.org/pypi/setuptools Python-Version: 2.7 Description-md5: 455aab7092c23bbca0a002df43ba97e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-plist Priority: optional Section: python Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Source: libplist Version: 1.10-1 Depends: libc6 (>= 2.4), libplist1 (>= 1.10), libpython2.7 (>= 2.7), python (>= 2.7), python (<< 2.8) Filename: pool/main/libp/libplist/python-plist_1.10-1_amd64.deb Size: 50848 MD5sum: c58973a7075a13b7baa747c8bc5df9d4 SHA1: a235baadd3cb4a93ac8243ab71e44a68a835a962 SHA256: 3185f36f8e1f0fa65b71ca93003a8857f0528f92713666986b9f852911b7c8e5 Description: Library for handling Apple binary and XML property lists Homepage: http://www.libimobiledevice.org/ Description-md5: bef13a9e9dc74918b23aab45bad28c87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ply Priority: optional Section: python Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Fontaine Architecture: all Source: ply Version: 3.4-3ubuntu2 Provides: python-ply-lex-3.2, python-ply-yacc-3.2, python2.7-ply Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-ply-doc, python-pkg-resources Filename: pool/main/p/ply/python-ply_3.4-3ubuntu2_all.deb Size: 48148 MD5sum: 780d4d20630869b23007bd41bd5dc98e SHA1: 295448d67fcef338d95eb947158eaf82e49c7c30 SHA256: 5f15bb5e2a8115a31e708a30435f485f544d098e08a14e070ccb98fba9f362f9 Description: Lex and Yacc implementation for Python2 Homepage: http://www.dabeaz.com/ply/ Description-md5: ddbdacd0971bf7aaecde3faf56c83ece Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ply-doc Priority: optional Section: doc Installed-Size: 341 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Fontaine Architecture: all Source: ply Version: 3.4-3ubuntu2 Filename: pool/main/p/ply/python-ply-doc_3.4-3ubuntu2_all.deb Size: 64398 MD5sum: 193c920a6ca7768a0940412a46891a5d SHA1: ecae76d201f384c0ef5fd039649ee7f13bb8e35d SHA256: 11f0c2b2112786d9ac383e0dac0accb939220519c3d5502688f7ed73d2ec9ff1 Description: Lex and Yacc implementation for Python (documentation) Homepage: http://www.dabeaz.com/ply/ Description-md5: 6dc842e888d420c8213e50ee22191125 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pocketsphinx Priority: optional Section: python Installed-Size: 144 Maintainer: Ubuntu Developers Architecture: amd64 Source: pocketsphinx Version: 0.8.0+real-0ubuntu6 Provides: python2.7-pocketsphinx Depends: python-sphinxbase, python (>= 2.7), python (<< 2.8), libc6 (>= 2.2.5), libpocketsphinx1, libsphinxbase1 (>= 0.4.1) Filename: pool/main/p/pocketsphinx/python-pocketsphinx_0.8.0+real-0ubuntu6_amd64.deb Size: 29840 MD5sum: 3659649f6933eb3d3d1f16514de3657b SHA1: 6fdce72deb11dca309732f31fb0d82c88dfec9fa SHA256: 08740b14bc4ffa97ead485d61333e319a0694647a1a7188c0a86eef0f1aa49c6 Description: lightweight speech recognition - Python module Python-Version: 2.7 Description-md5: 6d5af34738e0908ed2edba3c7472e77c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pocketsphinx-dbg Priority: extra Section: debug Installed-Size: 274 Maintainer: Ubuntu Developers Architecture: amd64 Source: pocketsphinx Version: 0.8.0+real-0ubuntu6 Provides: python2.7-pocketsphinx-dbg Depends: python-dbg (>= 2.7), python-pocketsphinx, python-dbg (<< 2.8), libc6 (>= 2.4), libpocketsphinx1, libsphinxbase1 (>= 0.4.1) Filename: pool/main/p/pocketsphinx/python-pocketsphinx-dbg_0.8.0+real-0ubuntu6_amd64.deb Size: 58022 MD5sum: 1504eecce5f63bd9e5c12622e6377df7 SHA1: f3d99ef0bd08030e50260750ffbb44b90594c224 SHA256: 294e591dd1b13ed117d8d4ec7ffb59a37f5635040156d40266423b0fbaf8e1aa Description: lightweight speech recognition - Python module (debug version) Python-Version: 2.7 Description-md5: e079a60df3891b65840de73025dea7ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-polib-doc Priority: optional Section: doc Installed-Size: 420 Maintainer: Ubuntu Developers Original-Maintainer: Angel Abad Architecture: all Source: polib Version: 1.0.4-1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/polib/python-polib-doc_1.0.4-1_all.deb Size: 43964 MD5sum: fca5ca9765392ba3b108ecbb8318a69c SHA1: 6dd1c7edbd1da0f6bc3f105da571e5f6e878e5b9 SHA256: 9b28ac785761d1eada1e4a71dd110af1a3b970af9872ff990e5d1afaa9a5cac1 Description: Python library to parse and manage gettext catalogs (documentation) Homepage: http://bitbucket.org/izi/polib/src/ Description-md5: de1ed6c67676ca73bdb6f0cc354c086a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-prettytable Priority: optional Section: python Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: prettytable Version: 0.7.2-2ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/prettytable/python-prettytable_0.7.2-2ubuntu2_all.deb Size: 19966 MD5sum: 1532d286ecad16204509eca1e97b8c37 SHA1: 33cc54e8d0af75473307170e038f5ca250e86fef SHA256: 36292c9775ef4bb1a292655d73f2a3eb1fc7a83b874598b4b084cb22c1eef9ba Description: library to represent tabular data in visually appealing ASCII tables Homepage: http://code.google.com/p/prettytable/ Description-md5: 80eced35bbdabf308b1931a4b9c16184 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-problem-report Priority: optional Section: python Installed-Size: 173 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/a/apport/python-problem-report_2.14.1-0ubuntu3_all.deb Size: 9010 MD5sum: 8fa45abc4d528073ac85e6e7fab85797 SHA1: 1cb4cc228282cdef8a1c171e4c817d1de0714041 SHA256: 5d55bafd0a7c3f71916551abe80b82788a68cc07bc4e6323f1bdd970c01192bb Description: Python library to handle problem reports Homepage: https://wiki.ubuntu.com/Apport Description-md5: 06dbdefca60b63fb6c44c8daf9a9cc5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-psutil Priority: optional Section: python Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Version: 1.2.1-1ubuntu2 Depends: libc6 (>= 2.13), python (<< 2.8), python (>= 2.7~), python:any (>= 2.7.5-5~) Filename: pool/main/p/python-psutil/python-psutil_1.2.1-1ubuntu2_amd64.deb Size: 50246 MD5sum: d2bcb47170d171e72068dad186d9f6cd SHA1: 149a7d127d293c622c49ab8109d560bab857db37 SHA256: 7c871be1c825dd73ff3912d7484664f970ea84ed68cacc41f8124e2453b5ee09 Description: module providing convenience functions for managing processes Homepage: http://code.google.com/p/psutil/ Description-md5: 005481275c8fc26b0d2a10ba28345971 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, lubuntu-desktop Package: python-psycopg2 Priority: optional Section: python Installed-Size: 610 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: amd64 Source: psycopg2 Version: 2.4.5-1build5 Provides: python2.7-psycopg2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libpq5 (>= 8.3~) Recommends: python-egenix-mxdatetime Suggests: python-psycopg2-doc Filename: pool/main/p/psycopg2/python-psycopg2_2.4.5-1build5_amd64.deb Size: 126282 MD5sum: 6894f277ac048b7f0e0c4263c6a5b7b9 SHA1: d4e9942fae0105257c96d441b72690371bf92fb3 SHA256: 33a850e599121d50a36ac4155418e9f425283b62b97a2dbd9c902892ea379254 Description: Python module for PostgreSQL Homepage: http://initd.org/projects/psycopg Description-md5: 650e03ba7ee7667206bfd25f2bcc4ca1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-psycopg2-dbg Priority: extra Section: python Installed-Size: 1111 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: amd64 Source: psycopg2 Version: 2.4.5-1build5 Depends: python-psycopg2 (= 2.4.5-1build5), python-dbg, libc6 (>= 2.14), libpq5 (>= 8.3~) Filename: pool/main/p/psycopg2/python-psycopg2-dbg_2.4.5-1build5_amd64.deb Size: 225278 MD5sum: 7c3cfa3409e53daea3b6cbb34f44f6c9 SHA1: 6919fa7b0b181de2b4ba7ba51c79100007d3b8ed SHA256: f5b67621fa84a2035b6c5e20d126fe808ce949bb8f6facd1b387c537e11bc53f Description: Python module for PostgreSQL (debug extension) Homepage: http://initd.org/projects/psycopg Description-md5: 037c0e31fdde99d342525f6508caa218 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-psycopg2-doc Priority: optional Section: doc Installed-Size: 871 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: all Source: psycopg2 Version: 2.4.5-1build5 Replaces: python-psycopg2-docs Depends: libjs-sphinxdoc (>= 1.0) Suggests: python-psycopg2 | python3-psycopg2 Breaks: python-psycopg2-docs Filename: pool/main/p/psycopg2/python-psycopg2-doc_2.4.5-1build5_all.deb Size: 174390 MD5sum: aefa7689d1d60fcebf64feb5629113ad SHA1: 07f47f4bda3475d400eebff74e25dc50cafcd6dd SHA256: 81c562660071eabd567ad718b01897b8df55fed20f09cdf09865ee4ed2428d19 Description: Python module for PostgreSQL (documentation package) Homepage: http://initd.org/projects/psycopg Description-md5: 75a33aa58c41b3f3843830b2298edba0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-py Priority: optional Section: python Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: codespeak-lib Version: 1.4.20-1 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~), python-pkg-resources Suggests: subversion, python-pytest, python-pytest-xdist Filename: pool/main/c/codespeak-lib/python-py_1.4.20-1_all.deb Size: 62396 MD5sum: 4d5e6663953cb28ddb6b7a2e4f44f93f SHA1: 9b27f0f64bf4114f03b862e9e21a02907c52d689 SHA256: 8e52c8e7b266fcc2d7f866fe6a6c52f3038fb21fddd15018567c9d3d6697c555 Description: Advanced Python development support library (Python 2) Homepage: https://bitbucket.org/hpk42/py Description-md5: 23ae525bcd8a7343e68f18cd0b6565ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyao Priority: optional Section: python Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: pyao Version: 0.82-5build1 Provides: python2.7-pyao Depends: python2.7, python (>= 2.7), python (<< 2.8), libao4 (>= 1.1.0), libc6 (>= 2.2.5) Filename: pool/main/p/pyao/python-pyao_0.82-5build1_amd64.deb Size: 9616 MD5sum: c4783e4a9239e4773e7d7013f465287b SHA1: 3b7ff042d976259c892d9794360c8dc0ee593f5c SHA256: 736cccac97a55c6e88145572a59596bcb3152ceddc8b76f4c033fe6696ab70c0 Description: Python interface to the Audio Output library Description-md5: 475304eb3a482ea291ecd03b5b46bc61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyao-dbg Priority: extra Section: python Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: pyao Version: 0.82-5build1 Depends: python2.7-dbg, python-dbg (>= 2.7), python-dbg (<< 2.8), libao4 (>= 1.1.0), libc6 (>= 2.2.5), python-pyao (= 0.82-5build1) Filename: pool/main/p/pyao/python-pyao-dbg_0.82-5build1_amd64.deb Size: 22670 MD5sum: bebcf8a10bdb7d52c9f3f408e188f296 SHA1: e1f84ef35aae9e13ad306d42eb4cad9e333d5c2c SHA256: d564324b8670745abd121158320441b57fca7965e385f33637c19783ed06a36e Description: Python interface to the Audio Output library - debug symbols Description-md5: c05afb7caffff4b5385332ae2c2365f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyasn1 Priority: optional Section: python Installed-Size: 349 Maintainer: Ubuntu Developers Original-Maintainer: Jan Lübbe Architecture: all Source: pyasn1 Version: 0.1.7-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: doc-base Filename: pool/main/p/pyasn1/python-pyasn1_0.1.7-1ubuntu2_all.deb Size: 44250 MD5sum: 34840f47ca2ea766262d8759cfa54d79 SHA1: dc11ab9094dcb9315214c9df78500275dd33464b SHA256: 8f37a8a1259eec7e6a16126a1ccb2379bbed6e3447ead62bd94355435b12e107 Description: ASN.1 library for Python (Python 2 module) Homepage: http://pyasn1.sourceforge.net/ Description-md5: 2f29894451af55e9caa9faee8c6cb009 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pycadf Priority: optional Section: python Installed-Size: 291 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.4.1-0ubuntu1 Depends: python-babel, python-iso8601, python-netaddr, python-oslo.config, python-oslo.messaging, python-six, python-tz, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-webob Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-pycadf/python-pycadf_0.4.1-0ubuntu1_all.deb Size: 43246 MD5sum: 70617d61b55011010aabdfe2fdbc1278 SHA1: 52825d6885888da221df92599d86c0ec02c5d3f6 SHA256: 22150f9211afc23c1532cae0e297aac3c9a0d6961049b0f58d4c4236ded6baa7 Description: implementation of DMTF Cloud Audit (CADF) data model Homepage: https://launchpad.net/pycadf Description-md5: 92001637ac744808ab7410408a4b1682 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pycountry Priority: extra Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: David Paleino Architecture: all Source: pycountry Version: 0.14.1+ds1-3build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), iso-codes, python-lxml Filename: pool/main/p/pycountry/python-pycountry_0.14.1+ds1-3build1_all.deb Size: 10130 MD5sum: 3aef67e2c6aac653ece3e6762fbe9ce3 SHA1: 5da560aa3b92176b288abd21343ac1d64de05572 SHA256: 19dd0f8fc008f1b58d8de5fc9ab681510aaa645cd63f22937c6277ba930f2ebe Description: ISO databases accessible from Python Homepage: http://pypi.python.org/pypi/pycountry/ Description-md5: d365c23ab98012ebedbd865a166d9ea1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pycurl Priority: extra Section: python Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pycurl Version: 7.19.3-0ubuntu3 Depends: libc6 (>= 2.15), libcurl3-gnutls (>= 7.35.0), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: libcurl4-gnutls-dev, python-pycurl-dbg Filename: pool/main/p/pycurl/python-pycurl_7.19.3-0ubuntu3_amd64.deb Size: 47944 MD5sum: ec3c7bd4aca6d62d35177f9f940f3032 SHA1: 154b01d8f6cc66c037fab99d6453a07aa1868998 SHA256: 3cf009382a6d00b0321c9d38259fdfb54f572ff54dad2e602473d76824c94e7b Description: Python bindings to libcurl Homepage: http://pycurl.sourceforge.net Description-md5: f822d5d106abe9d060d264b7845d00d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-pycurl-dbg Priority: extra Section: python Installed-Size: 396 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pycurl Version: 7.19.3-0ubuntu3 Depends: libc6 (>= 2.14), libcurl3-gnutls (>= 7.35.0), python-dbg, python-pycurl (= 7.19.3-0ubuntu3) Filename: pool/main/p/pycurl/python-pycurl-dbg_7.19.3-0ubuntu3_amd64.deb Size: 92430 MD5sum: af04e6180fcbfd4817fe32fb28756048 SHA1: 2e3ad9ba2959c487191fbedc5ca730465067c10d SHA256: b24a88d2c23c2d407ed7ecc7ad2a1c9fac5c988a0aef6b62be579fd7b60af223 Description: Python bindings to libcurl (debug extension) Homepage: http://pycurl.sourceforge.net Description-md5: b536823e8923968d76ec7bcb5185a285 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pygments Priority: optional Section: python Installed-Size: 2800 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pygments Version: 1.6+dfsg-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-chardet, python-pkg-resources Suggests: ttf-bitstream-vera Filename: pool/main/p/pygments/python-pygments_1.6+dfsg-1ubuntu1_all.deb Size: 519292 MD5sum: 30fe5926501152cd9f334676175e701e SHA1: 632b427d6c7543c0833c99947aa10fc04f9d9708 SHA256: a71b4c72f2733f4bb34f9a4607553590ae8cb993c91098704c837f8ff8bad994 Description: syntax highlighting package written in Python Homepage: http://pygments.org/ Description-md5: f1bca78dffbd44d76ff7ad2062c8e190 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-pygresql Priority: optional Section: python Installed-Size: 361 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: pygresql Version: 1:4.0-3build3 Replaces: python2.3-pygresql, python2.4-pygresql Provides: python-pg, python2.7-pygresql Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxdatetime, libc6 (>= 2.4), libpq5 Suggests: python-pygresql-dbg Conflicts: python2.3-pygresql, python2.4-pygresql Filename: pool/main/p/pygresql/python-pygresql_4.0-3build3_amd64.deb Size: 75110 MD5sum: 7df3b43da055895f48d72307a45a0d5c SHA1: 7afafba7688939afcab8b3bb28ad33c5a6d21524 SHA256: 7d4e57510c80dd38060af0f796d738c0538038a231c626284cb5ab3a29bde735 Description: PostgreSQL module for Python Python-Version: 2.7 Description-md5: c31d3a6c55e6c4d42f9bbe13fadc0781 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pygresql-dbg Priority: extra Section: python Installed-Size: 330 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: pygresql Version: 1:4.0-3build3 Provides: python-pg Depends: python-pygresql (= 1:4.0-3build3), python-dbg, libc6 (>= 2.4), libpq5, python-egenix-mxdatetime-dbg Filename: pool/main/p/pygresql/python-pygresql-dbg_4.0-3build3_amd64.deb Size: 71088 MD5sum: 987b10c1296477b73b5b453d9cb985fb SHA1: 5bb78ba5c33ac0f98c3f4f2916b4bf31a046d143 SHA256: fd231d4497f61d94532ec8148ce1322d867512315200d40016b2eed3e66dac09 Description: PostgreSQL module for Python (debug extension) Description-md5: 746e1addc644e26cdf9991f57c5aec07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyicu Priority: optional Section: python Installed-Size: 657 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyicu Version: 1.5-2ubuntu4 Provides: python2.7-pyicu Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/pyicu/python-pyicu_1.5-2ubuntu4_amd64.deb Size: 150588 MD5sum: 3298ce04d7f4ec7ef1c789d96106d6a6 SHA1: 36bf4a2a8e4d9f18499affaaa4073e604b7872f0 SHA256: 4e594180a1687f15a4eaa10b3dd68a58c3e892802b20ab278c21f9906dc6c558 Description: Python extension wrapping the ICU C++ API Homepage: http://pyicu.osafoundation.org/ Description-md5: d77c11be7925395ec589e0dd37d0dfca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-pyicu-dbg Priority: extra Section: python Installed-Size: 2942 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyicu Version: 1.5-2ubuntu4 Provides: python2.7-pyicu-dbg Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1), python-dbg (>= 2.7), python-dbg (<< 2.8), python-pyicu (= 1.5-2ubuntu4) Filename: pool/main/p/pyicu/python-pyicu-dbg_1.5-2ubuntu4_amd64.deb Size: 614590 MD5sum: c1a3cdf5c291e244601988ee453f1ba5 SHA1: cfa794f50eb0d3c56a80f800bb3f32e9eb062636 SHA256: b7f1764265dcfc612b8c62bcaf8a778ae9575d9aeda414de6ba7b57517fd2344 Description: Python extension wrapping the ICU C++ API (debug extension) Homepage: http://pyicu.osafoundation.org/ Description-md5: 6e867ee6d24f8a0027bd9ebb793971c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyinotify Priority: optional Section: python Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Source: pyinotify Version: 0.9.4-1build1 Provides: python2.7-pyinotify Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-pyinotify-doc Filename: pool/main/p/pyinotify/python-pyinotify_0.9.4-1build1_all.deb Size: 24500 MD5sum: e8769aea55a94fe0562f7c5fc160f883 SHA1: a4e05b5fbec8bacc70c855724d9e642b732ae1d8 SHA256: c1377cdaa7eafde4b1af10efb794d99606dd9b0a416285be29a4fc088fa1eb48 Description: simple Linux inotify Python bindings Homepage: https://github.com/seb-m/pyinotify Description-md5: c2b7fd3e6aeb95e26caf9093a06d13a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyinotify-doc Priority: optional Section: python Installed-Size: 1285 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Source: pyinotify Version: 0.9.4-1build1 Recommends: python-pyinotify, python3-pyinotify Filename: pool/main/p/pyinotify/python-pyinotify-doc_0.9.4-1build1_all.deb Size: 89444 MD5sum: 87bcfb6f983c0a0aabbed3395423506f SHA1: 24b0179a899c2ecc6e2ba863665a23f4ab11fd94 SHA256: 486d584c63791cecb8465546b18e6c287007bc4f6e52bb58600419bf49ca7427 Description: simple Linux inotify Python bindings -- documentation Homepage: https://github.com/seb-m/pyinotify Description-md5: 3b057e8d096b104d6d585cbb9e9bb391 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pylibacl Priority: optional Section: python Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: amd64 Version: 0.5.1-1.1build4 Provides: python2.7-pylibacl Depends: python (>= 2.7), python (<< 2.8), libacl1 (>= 2.2.51-8), libc6 (>= 2.2.5), libjs-sphinxdoc (>= 1.0) Suggests: python-pylibacl-dbg Filename: pool/main/p/python-pylibacl/python-pylibacl_0.5.1-1.1build4_amd64.deb Size: 36168 MD5sum: e17bedb99efe7b0c0d5e6a9202ad4212 SHA1: 0514ff2b4bd626af2b87ac1eda93237642c303a5 SHA256: e4408d5b74ded6f7edcadece4cfbc0e0d36ee038e34d3e9d095a9200df96bfa4 Description: module for manipulating POSIX.1e ACLs Homepage: http://pylibacl.k1024.org/ Description-md5: 83c7591d8120b30015bfa4151169a6e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pylibacl-dbg Priority: extra Section: python Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: amd64 Source: python-pylibacl Version: 0.5.1-1.1build4 Depends: python-pylibacl (= 0.5.1-1.1build4), python-dbg, libacl1 (>= 2.2.51-8), libc6 (>= 2.2.5) Filename: pool/main/p/python-pylibacl/python-pylibacl-dbg_0.5.1-1.1build4_amd64.deb Size: 32864 MD5sum: 46c804e4745f69f5909192f970f10273 SHA1: b5e07dfdba1200e033feda1955e8067caff6bf8f SHA256: acc0f510970aa62881946b8349267296242a47cd3f0481a913074d1fe350ebf5 Description: module for manipulating POSIX.1e ACLs (debug extension) Homepage: http://pylibacl.k1024.org/ Description-md5: f0922d048a66c0da034ef438b0a6620c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pymongo Priority: optional Section: python Installed-Size: 466 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: amd64 Source: pymongo Version: 2.6.3-1build1 Provides: python2.7-pymongo Depends: python-bson (= 2.6.3-1build1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-gridfs (>= 2.6.3-1build1), python-pymongo-ext Filename: pool/main/p/pymongo/python-pymongo_2.6.3-1build1_amd64.deb Size: 73702 MD5sum: 774d0f0d9dc52a42591d1efab4d1826a SHA1: 93b58616be05e9f9688fc5815a18bf091e29199f SHA256: a185624a55551b7fa5b2515883ec90419e5c8ccb619da622ac41486962db5931 Description: Python interface to the MongoDB document-oriented database Homepage: http://api.mongodb.org/python/ Description-md5: 0b1ed7838a37434fed39e622e41112f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pymongo-doc Priority: optional Section: doc Installed-Size: 2516 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: all Source: pymongo Version: 2.6.3-1build1 Depends: libjs-jquery, libjs-underscore Filename: pool/main/p/pymongo/python-pymongo-doc_2.6.3-1build1_all.deb Size: 915050 MD5sum: 73f83d9a0dc9404eb99e76f9fec40710 SHA1: bd6e8d11fc4aafb784f1a99158844bbed0725db7 SHA256: 096c23bb49d0f82a4fc1225ab0856dad9461adb74068bfcb029c137e7f1386a8 Description: Python interface to the MongoDB document-oriented database (documentation) Homepage: http://api.mongodb.org/python/ Description-md5: fbd62f485ddf85b5deaef066e9d02ec6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pymongo-ext Priority: optional Section: python Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: amd64 Source: pymongo Version: 2.6.3-1build1 Provides: python2.7-pymongo-ext Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.14), python-bson (= 2.6.3-1build1), python-pymongo (= 2.6.3-1build1) Recommends: python-gridfs (>= 2.6.3-1build1) Filename: pool/main/p/pymongo/python-pymongo-ext_2.6.3-1build1_amd64.deb Size: 8960 MD5sum: 6c4a0a73e79d07b83bb9d909db2e46f0 SHA1: 02924dd372e0f9e413824d5eedc99dbd9a39fcf7 SHA256: 1e42daf8472aa8f5797ffd0dbbe37842650f05482195d746d46dc4604a209400 Description: C-coded extension to the python-pymongo package Homepage: http://api.mongodb.org/python/ Description-md5: 136aead8416b732e3ca0303bea791e72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyorbit Priority: optional Section: python Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: amd64 Source: pyorbit Version: 2.24.0-6ubuntu4 Replaces: python2.3-pyorbit, python2.4-pyorbit Provides: python2.7-pyorbit Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.14), libglib2.0-0 (>= 2.24.0), liborbit-2-0 (>= 1:2.14.10), liborbit2 (>= 1:2.14.10) Suggests: python-pyorbit-dbg Conflicts: python2.3-pyorbit, python2.4-pyorbit Filename: pool/main/p/pyorbit/python-pyorbit_2.24.0-6ubuntu4_amd64.deb Size: 57246 MD5sum: 0837da237f2b8fb4d1049a0b6addcd7c SHA1: d5e6bfdfa75f20019cd29cba801a109b850c5f44 SHA256: 03836f295c8582169cc1308e6242f2913d4cfd3fcd445b90ddcb295b5f292e42 Description: A Python language binding for the ORBit2 CORBA implementation Python-Version: 2.7 Description-md5: d5c249f8c652963e79fbe1fcc9af2905 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: python-pyorbit-dbg Priority: extra Section: python Installed-Size: 689 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: amd64 Source: pyorbit Version: 2.24.0-6ubuntu4 Depends: python-pyorbit (= 2.24.0-6ubuntu4), python-dbg, libc6 (>= 2.14), libglib2.0-0 (>= 2.24.0), liborbit-2-0 (>= 1:2.14.10), liborbit2 (>= 1:2.14.10) Filename: pool/main/p/pyorbit/python-pyorbit-dbg_2.24.0-6ubuntu4_amd64.deb Size: 132698 MD5sum: cb95686a7aa76974e982886a8e1efa88 SHA1: 872ce6fe07f2443477ac48ccf990b925ae4b0e3d SHA256: d53bc57952cfe6b9b1471c1595966287787f19a2f44b1329049fe1a37c983eaa Description: Python bindings for ORBit2 CORBA (debug extension) Description-md5: edcf2016073adb3f8ebc84b94e9dedfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyorbit-dev Priority: optional Section: python Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: all Source: pyorbit Version: 2.24.0-6ubuntu4 Depends: python-pyorbit (>= 2.24.0-6ubuntu4), liborbit2-dev (>= 1:2.12) Filename: pool/main/p/pyorbit/python-pyorbit-dev_2.24.0-6ubuntu4_all.deb Size: 4258 MD5sum: 1bd94480a3004c9cab2061081cdcec9b SHA1: 99c39576bd2e227b6e0781eb2eb9624ed26426ea SHA256: 3afd1b79077cbb7c8e64f06684fd5d32844d1ae54455ae178361729fe0ad5ded Description: PyORBit: development files Description-md5: 04a3d0273a274ebfe125a0d4b5dfb438 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyparsing Priority: optional Section: python Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Kevin Coyner Architecture: all Source: pyparsing Version: 2.0.1+dfsg1-1build1 Provides: python2.7-pyparsing Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/pyparsing/python-pyparsing_2.0.1+dfsg1-1build1_all.deb Size: 34316 MD5sum: 33831b0b33cd23bd2266f6f19dac2817 SHA1: 3116eacb714e9a3befabadb280734e5061a5f15a SHA256: f3e8afff2b645bb07274c10a4ee36dbaefde9be22696b888b3dbafcd3c45774b Description: Python parsing module Homepage: http://pyparsing.wikispaces.com/ Description-md5: b2c4beff5c2bd4cd6e8adac270b245cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video Package: python-pyparsing-doc Priority: optional Section: doc Installed-Size: 993 Maintainer: Ubuntu Developers Original-Maintainer: Kevin Coyner Architecture: all Source: pyparsing Version: 2.0.1+dfsg1-1build1 Filename: pool/main/p/pyparsing/python-pyparsing-doc_2.0.1+dfsg1-1build1_all.deb Size: 420598 MD5sum: 613cda74f3af2cbd5275f7a9fca56440 SHA1: 0f7602e65a486b610007dd60f0928debfa1eebef SHA256: 286da84b930b78ad25dc7839cb5b20e989269458a358a3ea6cf12264b0cde76c Description: Python parsing module, documentation package Homepage: http://pyparsing.wikispaces.com/ Description-md5: 1b796850388b572dc1f26dce91d07102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyrex Priority: optional Section: python Installed-Size: 973 Maintainer: Ubuntu Developers Original-Maintainer: Paul Brossier Architecture: all Source: pyrex Version: 0.9.8.5-2ubuntu3 Provides: python2.7-pyrex Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-dev Recommends: python-all-dev Filename: pool/main/p/pyrex/python-pyrex_0.9.8.5-2ubuntu3_all.deb Size: 180782 MD5sum: 305c9d16cb5a37e8a7ebcc23655f51b7 SHA1: 7f30baf5fd4693bf48d2b59e924285105d9c72bc SHA256: c09360b8176c48d23acb4395cd6e20d6ce74c2293075507e625189a1486e7ae3 Description: compile native-code modules for Python from Python-like syntax Homepage: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/ Python-Version: all Description-md5: f30a366ffc9290ab0cfbeb95f04e9a31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyruntest Priority: optional Section: python Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Martin Mrazik Architecture: all Source: pyruntest Version: 0.1+13.10.20130702-0ubuntu3 Depends: python-testtools, python (>= 2.7), python (<< 2.8) Filename: pool/main/p/pyruntest/python-pyruntest_0.1+13.10.20130702-0ubuntu3_all.deb Size: 6042 MD5sum: 73a109aac32ba14e492f3e8d5c3f5a57 SHA1: dbeb381e6f5d4cc5d7f7fb39ef49b488d881daf3 SHA256: fa054be6861dab0e0061c548c21ccec423cb635e88370ca823516a5f99ab4900 Description: Simple python test-runner Homepage: https://launchpad.net Description-md5: 0fc9f678382a67aacde93c19228dbe53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pytest Priority: optional Section: python Installed-Size: 471 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pytest Version: 2.5.1-1 Replaces: python-py (<< 1.4) Depends: python-pkg-resources, python-py (>= 1.4.19), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-mock (>= 1.0.1) Breaks: python-py (<< 1.4) Filename: pool/main/p/pytest/python-pytest_2.5.1-1_all.deb Size: 94230 MD5sum: 1abcaa7beb3fa4659398333dd4439195 SHA1: 50403039053594c546d1744f85e5fc1467bf042d SHA256: 87a2386658b9c84fef4aa38a5557cd7496b3c66f09973566000d371dcde04c00 Description: Simple, powerful testing in Python Homepage: http://pytest.org/ Description-md5: 914ea2542a4efad13187a05480185e62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pytest-doc Priority: optional Section: doc Installed-Size: 2528 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pytest Version: 2.5.1-1 Depends: libjs-sphinxdoc (>= 1.0) Recommends: python-pytest | python3-pytest Filename: pool/main/p/pytest/python-pytest-doc_2.5.1-1_all.deb Size: 349754 MD5sum: 04fef3f3ec3a43805612e3657dcb5691 SHA1: 02c2117ca7f62bddf059d28aad87584a819adcd2 SHA256: dd21c230147a4d6e34a5c2e102453dce6816cd04bdca4230d3ce1bcae0288583 Description: Simple, powerful testing in Python - Documentation Homepage: http://pytest.org/ Description-md5: 97b336e965878efc4451d01f87777140 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pytyrant Priority: optional Section: python Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: David Watson Architecture: amd64 Version: 1.1.17-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-pytyrant/python-pytyrant_1.1.17-1ubuntu2_amd64.deb Size: 6546 MD5sum: 177c8a1fe9304cdbef8931618456799a SHA1: 5c21ac0c2c6009ea8f747d9fd7eadbe29eb853ba SHA256: c7c85f25e43fb68eed633cdd42c58e017337542f3e4c829d05dcab258d774aca Description: Pure Python client implementation of the Tokyo Tyrant protocol Homepage: http://code.google.com/p/pytyrant/ Description-md5: 0ca6f6b5f0b549d5a574a6c9e5e90478 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyudev Priority: optional Section: python Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyudev Version: 0.16.1-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libudev1 Suggests: python-gobject, python-qt4, python-pyside.qtcore Filename: pool/main/p/pyudev/python-pyudev_0.16.1-2build1_all.deb Size: 29310 MD5sum: aced3d41b8f67254be2681d31d4a4ca3 SHA1: 59aa5e1b848dd729f128568776d988ef76ed2f3d SHA256: 2b4284306873a87ed50156a66c74e37525bf6bbd491c40fd50ab27949957e214 Description: Python bindings for libudev Homepage: http://pyudev.readthedocs.org/ Description-md5: d5320fab83c623af64edac1e1ea66c82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyvorbis Priority: optional Section: python Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyvorbis Version: 1.5-2ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python-ogg, libc6 (>= 2.14), libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libvorbisfile3 (>= 1.1.2) Suggests: python-pyvorbis-dbg Filename: pool/main/p/pyvorbis/python-pyvorbis_1.5-2ubuntu2_amd64.deb Size: 26690 MD5sum: 1fd3af0d22ad00ee4f8bb55f74db39fc SHA1: 5f376d8c33c4ef533dd302fb42c9f1d8791f9927 SHA256: c871e31a621683f185047207a43d03491d8f8686dee98365363914832e276f92 Description: Python interface to the Ogg Vorbis library Homepage: http://ekyo.nerim.net/software/pyogg/index.html Description-md5: 0b06c60a01ec044ef12ec30a6e5144f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyvorbis-dbg Priority: extra Section: python Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyvorbis Version: 1.5-2ubuntu2 Depends: python-pyvorbis (= 1.5-2ubuntu2), python-dbg, python-ogg-dbg, libc6 (>= 2.14), libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libvorbisfile3 (>= 1.1.2) Filename: pool/main/p/pyvorbis/python-pyvorbis-dbg_1.5-2ubuntu2_amd64.deb Size: 73352 MD5sum: 9ba13b17cc8df2e55b2cac7ab153b5e5 SHA1: b09ede594ae910cc060b0b78b16589bcd06e295b SHA256: 897d11c6d18e028dd64043698631585b17600eee8ec4b76d81ecf28a3efa34f9 Description: Python interface to the Ogg Vorbis library (debug extension) Homepage: http://ekyo.nerim.net/software/pyogg/index.html Description-md5: ddb8386e441af0000f62801f3398efed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyxattr Priority: optional Section: python Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: amd64 Version: 0.5.1-1.1build4 Provides: python2.7-pyxattr Depends: python (>= 2.7), python (<< 2.8), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.3.4), libjs-sphinxdoc (>= 1.0) Suggests: python-pyxattr-dbg Filename: pool/main/p/python-pyxattr/python-pyxattr_0.5.1-1.1build4_amd64.deb Size: 28524 MD5sum: 447938dbc0206eb1523f6d442a02c904 SHA1: 8a05e99df7846420891647e9c5dde5fd3d95549b SHA256: f3fb80ae35ad8af12643ac272d93cd3584e185bfa34934c519c675735ceb21a5 Description: module for manipulating filesystem extended attributes Homepage: http://pyxattr.k1024.org/ Description-md5: 74af652e9ebba1a51cd95e4367b32290 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyxattr-dbg Priority: extra Section: python Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: amd64 Source: python-pyxattr Version: 0.5.1-1.1build4 Provides: python2.7-pyxattr-dbg Depends: python-pyxattr (= 0.5.1-1.1build4), python-dbg (>= 2.7), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.2.5), python-dbg (<< 2.8) Filename: pool/main/p/python-pyxattr/python-pyxattr-dbg_0.5.1-1.1build4_amd64.deb Size: 25834 MD5sum: 9c1adcadf3e90b6d3241566f1f29b734 SHA1: 69d82fde65fee8efe0bda6e017df3cb594ce6250 SHA256: 7f7cceb986eb64c77478194b29e90a127e4b0ccc15de3e326656ee07c669c860 Description: module for manipulating filesystem extended attributes (debug extension) Homepage: http://pyxattr.k1024.org/ Description-md5: 7815d2a01ac5d6bbfb80d681c0a67325 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4 Priority: optional Section: python Installed-Size: 13845 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Version: 4.10.4+dfsg-1ubuntu1 Replaces: python-qt4-dev (<< 4.4.4-3~) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libpython2.7 (>= 2.7), libqt4-dbus (>= 4:4.8.0-1~), libqt4-declarative (>= 4:4.8.0-1~), libqt4-designer (>= 4:4.8.0-1~), libqt4-help (>= 4:4.8.0-1~), libqt4-network (>= 4:4.8.0-1~), libqt4-script (>= 4:4.8.0-1~), libqt4-scripttools (>= 4:4.8.0-1~), libqt4-svg (>= 4:4.8.0-1~), libqt4-test (>= 4:4.8.0-1~), libqt4-xml (>= 4:4.8.0-1~), libqt4-xmlpatterns (>= 4:4.8.0-1~), libqtassistantclient4 (>= 4.6.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libqtwebkit4, libstdc++6 (>= 4.1.1), sip-api-11.0 Suggests: python-qt4-dbg Breaks: python-kde4 (<= 4:4.6.80-3+b1), python-qscintilla2 (<= 2.5.1-1), python-qt4-dbg (<< 4.8.3-3), python-qt4-gl (<< 4.8.3-3), python-qt4-gl-dbg (<< 4.8.3-3), python-qt4-phonon (<< 4.8.3-3), python-qt4-phonon-dbg (<< 4.8.3-3), python-qt4-sql (<< 4.8.3-3), python-qt4-sql-dbg (<< 4.8.3-3), python-qwt3d-qt4 (<< 0.1.7~cvs20090625-7), python-qwt5-qt4 (<= 5.2.1~cvs20091107+dfsg-6), python-sip4 (<< 4.13.1~) Filename: pool/main/p/python-qt4/python-qt4_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 3123718 MD5sum: f8867a949b2d03f2aa2e4f992e1e66af SHA1: d57576571affd50e68c151959adb769af3657fd3 SHA256: 1f21b79e17d7c56b96c929e1b0861e8b74d28e89b8c0d931c505bc59cc9d3829 Description: Python bindings for Qt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 671df1a7daf3241a9aeec23c8cd8df00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-audio Package: python-qt4-dbg Priority: extra Section: python Installed-Size: 117310 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-dbg, python-qt4 (= 4.10.4+dfsg-1ubuntu1), python-sip-dbg, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8.0-1~), libqt4-declarative (>= 4:4.8.0-1~), libqt4-designer (>= 4:4.8.0-1~), libqt4-help (>= 4:4.8.0-1~), libqt4-network (>= 4:4.8.0-1~), libqt4-script (>= 4:4.8.0-1~), libqt4-scripttools (>= 4:4.8.0-1~), libqt4-svg (>= 4:4.8.0-1~), libqt4-test (>= 4:4.8.0-1~), libqt4-xml (>= 4:4.8.0-1~), libqt4-xmlpatterns (>= 4:4.8.0-1~), libqtassistantclient4 (>= 4.6.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libqtwebkit4, libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python-qt4-dbg_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 37048428 MD5sum: 368f85bc2d15660298ee98aa866d9590 SHA1: a234a6c902f4a620d7c8ba52092f856a4d8698c3 SHA256: 98ad6be1f09e39d3d443412a7573a8aceb4ee0a7f096ba96f0bdc00b3616555e Description: Python bindings for Qt4 (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 1a449f7aa20b32c9759aad5ae4f95a31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-dbus Priority: optional Section: python Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-dbus (>= 0.84.0-2~), python (>= 2.7), python (<< 2.8), libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python-qt4-dbus_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 16170 MD5sum: d5d91f5e14fdd69664c374d84fde28b6 SHA1: a7c8eac32420b970a6bc1b9115aca986c5ac586e SHA256: 7b9b151fb7c447fc045db458ee611be69a3febb8065f23ae458cfa88d0461063 Description: D-Bus Support for PyQt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: c00e98235f2f3f966d6c514fa47a57a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-audio Package: python-qt4-dbus-dbg Priority: extra Section: python Installed-Size: 632 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-dbg, python-dbus-dbg, python-qt4-dbus (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python-qt4-dbus-dbg_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 180436 MD5sum: bcc699f313ca7bc6862b24eca2811361 SHA1: b66b56cde6f78cddf949f3f87b49c3749bd3f622 SHA256: cdc22966d80d66be3b7b0d74ec3a1fbf3ebb80dceb46926dd43444241d73f046 Description: D-Bus Support for PyQt4 (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 4fb4bda37c87433a33762e7999ca5235 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-dev Priority: optional Section: python Installed-Size: 2599 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-sip-dev Filename: pool/main/p/python-qt4/python-qt4-dev_4.10.4+dfsg-1ubuntu1_all.deb Size: 259482 MD5sum: 544cae8fe2d81572ad920f007169a9f9 SHA1: c189eab1eaa4e242648f3c8ff960ae90d60caaec SHA256: 2bee7dfed2b854d00bdae268ef31c269730c1b8e0a38c5a09f59db8b93351529 Description: Development files for PyQt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 6f107e5ef432c4e6a88c534b4cb50262 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-doc Priority: optional Section: doc Installed-Size: 29737 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Suggests: qt4-doc Filename: pool/main/p/python-qt4/python-qt4-doc_4.10.4+dfsg-1ubuntu1_all.deb Size: 8776982 MD5sum: 10ef6dca1e515a3a7af3822280df70cb SHA1: e5a7ab398cbc1c5952e91fc581f9849ebfea045a SHA256: a0b094489e5a17fff38d4e15e5496f746965465ffa235eb93c302e0dde63935f Description: Documentation and examples for PyQt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: a681d18ec7e241f57a35445765dfd4e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-phonon Priority: optional Section: python Installed-Size: 449 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-qt4 (= 4.10.4+dfsg-1ubuntu1), python (>= 2.7), python (<< 2.8), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libphonon4 (>= 4:4.6.0really4.4.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1), phonon Filename: pool/main/p/python-qt4/python-qt4-phonon_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 97252 MD5sum: 6497a93c676ba08d52e73800e76ea889 SHA1: e341e02f8f3e35293d8f4328e232150f65002376 SHA256: 2981b5327166b69728c276036f20e8e871da7327ee518ed21246ba759dfd7bac Description: Python bindings for Phonon Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: e8fb21a39d897294832e29111ca6493f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-phonon-dbg Priority: extra Section: python Installed-Size: 5842 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-dbg, python-qt4-dbg (= 4.10.4+dfsg-1ubuntu1), python-qt4-phonon (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libphonon4 (>= 4:4.6.0really4.4.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1), phonon Filename: pool/main/p/python-qt4/python-qt4-phonon-dbg_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 2028180 MD5sum: 822003102f8d5dc10aba7803f8627a26 SHA1: e8422a9e100bc877299457a6e0c0829d780349ba SHA256: 97508a992ae9da1fbdfa65d77b13fc210452e72f78b3f0e76c4c91fa38c4f218 Description: Python bindings for Phonon (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 64e4caa1683be61a0031951b869a5b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-sql Priority: optional Section: python Installed-Size: 393 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-qt4 (= 4.10.4+dfsg-1ubuntu1), python (>= 2.7), python (<< 2.8), libgcc1 (>= 1:4.1.1), libqt4-sql (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python-qt4-sql_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 90298 MD5sum: 14612ab32966d75a3d0dfc76acd4e669 SHA1: 483db62f009e731ed2a45f9afb0e89aa34662234 SHA256: 07e9b32c63d545b839459f8292ca0c2a9d2d7c2aaed25e38de07917c68eedfe3 Description: Python bindings for PyQt4's SQL module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 57a5a11a071cfb552dfae3d56f2460d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: python-qt4-sql-dbg Priority: extra Section: python Installed-Size: 4220 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-dbg, python-qt4-dbg (= 4.10.4+dfsg-1ubuntu1), python-qt4-sql (= 4.10.4+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt4-sql (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python-qt4-sql-dbg_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 1482944 MD5sum: 0253b04665a307f846e3b04477064d24 SHA1: 70c3f12ec3f2ae75b5a00ba06ca0ba5f118f4b63 SHA256: 9727baddf2431917a379e63e7807a9f8978ce40d1fa9530cb248170aad3f2c47 Description: Python bindings for PyQt4's SQL module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 15f219ff4fcaf2e79c7e45adbe60f19a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-quantumclient Priority: extra Section: python Installed-Size: 28 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: python-neutronclient Version: 1:2.3.4-0ubuntu1 Depends: python-neutronclient Filename: pool/main/p/python-neutronclient/python-quantumclient_2.3.4-0ubuntu1_all.deb Size: 1890 MD5sum: 338aaf3710f6beaf664b7982f0d753bd SHA1: 1ce31c972fe1bc55d09eb4d08a08d9cb114709a8 SHA256: a0aa38c51522f97fd8d3460f40f250db13858d2a138a34e7a3112e8845631d8d Description: transitional dummy package Homepage: http://launchpad.net/python-quantumclient Description-md5: 1f317b04f78374dba7d1e14def0b7f80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-rdflib Priority: optional Section: python Installed-Size: 1161 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: rdflib Version: 2.4.2-3build1 Provides: python2.7-rdflib Depends: libc6 (>= 2.2.5), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources Filename: pool/main/r/rdflib/python-rdflib_2.4.2-3build1_amd64.deb Size: 200390 MD5sum: a54a15e43879468a03941b2613e615b2 SHA1: af948610caa486ea4d6abaf4bdd5605eb8a063e5 SHA256: b249778660708f32853bb38001082cafebafec646ead923e20fad2a00eb48402 Description: RDF library containing an RDF triple store and RDF/XML parser/serializer Homepage: http://rdflib.net/ Description-md5: 29636d2a255f4b77d00a17d77e68c68f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-recaptcha Priority: optional Section: python Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Bernat Architecture: all Version: 1.0.6-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-crypto Filename: pool/main/p/python-recaptcha/python-recaptcha_1.0.6-1build1_all.deb Size: 6516 MD5sum: 2a2d5d19deb58cddf8286ab9403657d8 SHA1: 31f9ef3fbb2019e1b222c47521121a07f2d8488e SHA256: b945bfad2c376abb411aa7bbd32e8d65763cae0b6844e59f6c989c326a02c5b2 Description: client library for reCAPTCHA and Mailhide Homepage: http://pypi.python.org/pypi/recaptcha-client Description-md5: 35847511a50728c263cafd429bf16c74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-redis Priority: optional Section: python Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Chris Lamb Architecture: all Version: 2.7.2-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-redis/python-redis_2.7.2-1build1_all.deb Size: 26436 MD5sum: b8d3fa1b8dbd6bcf21280b9ef5c5cdc6 SHA1: 3a94e08d2e3cd3cad841d3bf92c4e680c87597b1 SHA256: 713c53c909e75aab3005951acb4466ef263dbe8515123b0400178542263c96a7 Description: Persistent key-value database with network interface (Python library) Homepage: http://github.com/andymccurdy/redis-py/ Description-md5: 36af2573ced324890f46c8ff3b4a841c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-renderpm Priority: optional Section: python Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-reportlab Version: 3.0-1build1 Provides: python2.7-renderpm Depends: python (>= 2.7), python (<< 2.8), libart-2.0-2 (>= 2.3.17), libc6 (>= 2.14), libfreetype6 (>= 2.2.1) Suggests: python-renderpm-dbg Filename: pool/main/p/python-reportlab/python-renderpm_3.0-1build1_amd64.deb Size: 32316 MD5sum: 64dc5518ddfc8727a9b4f4fb4da14135 SHA1: 4112ecc49c2d230ea0a52340fb4f530150e8197d SHA256: a88c1294a8335be5cbadc7ccbf56c838513cbd40afc98e9d3a02f873f428fc40 Description: python low level render interface Python-Version: 2.7 Description-md5: f69778da55c6c96c3d31560659245a79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-reportlab Priority: optional Section: python Installed-Size: 2325 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Version: 3.0-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-reportlab-accel (>= 3.0-1build1) Recommends: python-renderpm, python-pil Suggests: pdf-viewer, python-egenix-mxtexttools (>= 2.0.6-3.1), python-reportlab-doc Filename: pool/main/p/python-reportlab/python-reportlab_3.0-1build1_all.deb Size: 449026 MD5sum: fd371c301ae7a2a5743371d82e394b0b SHA1: e7cd95440b0e6f0c9b80ecf32e367d12eab23b74 SHA256: 0eca25c7b2bf44a5a2325e7692720016cc1c4bb139b14e49971404392fa7aa2e Description: ReportLab library to create PDF documents using Python Python-Version: 2.7 Description-md5: 873a1862f0132d9ec6634cf606e556ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-reportlab-accel Priority: optional Section: python Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-reportlab Version: 3.0-1build1 Provides: python2.7-reportlab-accel Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.14) Filename: pool/main/p/python-reportlab/python-reportlab-accel_3.0-1build1_amd64.deb Size: 22652 MD5sum: f064bba08b8954a6eebecbef3e9b205c SHA1: 9d001fcb8e2a84f1a9906b6f29c20abe42531e3a SHA256: e77ed53de9f97f0cd46acc3f548d92527dcb979ab02848ec1e5cfdc837cf77fe Description: C coded extension accelerator for the ReportLab Toolkit Python-Version: 2.7 Description-md5: 3a2f3d264cea475a3a1ee612a69fb526 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-reportlab-doc Priority: optional Section: doc Installed-Size: 1029 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-reportlab Version: 3.0-1build1 Depends: libjs-sphinxdoc (>= 1.0) Suggests: python-reportlab Filename: pool/main/p/python-reportlab/python-reportlab-doc_3.0-1build1_all.deb Size: 600024 MD5sum: e0a14bdc01e92bd51ec90bb6ac04f294 SHA1: 957ab37106eb6688c4463284f711749c94b2fe8f SHA256: a4711a642ff7ad25d2c6e1280f9a81c27c59f2b3e0e200a01553bbe45bcdcf45 Description: Documentation for the ReportLab Python library (PDF format) Description-md5: a28fbc5b165c18d2b3a2fa8b8da01533 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-repoze.lru Priority: extra Section: python Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.6-4 Provides: python2.7-repoze.lru Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-repoze.lru/python-repoze.lru_0.6-4_all.deb Size: 11268 MD5sum: ec42d32ed67499bf97f2843b4b667b7e SHA1: 15a5c7a2e9d9a22badca837eb6901065763ac860 SHA256: 0b3d62c77f8b352e20186aa666ad6c83bdf097fc54ddf09f46b78d63176a5260 Description: tiny LRU cache implementation and decorator Homepage: http://www.repoze.org/ Description-md5: bd0f6bd06160290543180e3ecc9bcec8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-requestbuilder Priority: optional Section: python Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.1.0~beta2-1build1 Depends: python-requests, python-six, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-requestbuilder/python-requestbuilder_0.1.0~beta2-1build1_all.deb Size: 25394 MD5sum: 4f995a3bea20ed1fc3d71ba56be31773 SHA1: b0ceed7e898eaf20827c215fa77482c0d992d62b SHA256: 0449f708f1651625696c7891138aec7ef03aa4eaaa00106b7d9e92399cd8ba6b Description: command line-driven HTTP request builder Homepage: https://pypi.python.org/pypi/requestbuilder Description-md5: 0d1879769310e338b6054c2352d7b7d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-requests Priority: optional Section: python Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: requests Version: 2.2.1-1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), ca-certificates, python-chardet, python-urllib3 (>= 1.7.1) Filename: pool/main/r/requests/python-requests_2.2.1-1_all.deb Size: 42450 MD5sum: 2bc58cb556ca29a12b14af4e16607b91 SHA1: 60a83cc18f7b6ebb3e841de9917d847ee9676868 SHA256: 9f648e541ec2602988c5aeaea94afd761b3f2fc378130e35ef68cccb478e00f7 Description: elegant and simple HTTP library for Python, built for human beings Homepage: http://python-requests.org Description-md5: f6eaa344f8d0e79d3f0df5efe34a37bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-gnome-desktop Package: python-roman Priority: optional Section: python Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Andrea Colangelo Architecture: all Version: 2.0.0-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-roman/python-roman_2.0.0-1_all.deb Size: 7758 MD5sum: 42ddb3020c581af10d1d608d66d4c3e6 SHA1: dad676608f15643aad10b162c2affc1ba1b8f0bf SHA256: e74d0322cd4dde3d3f02454bc77b2d776ef15c1b1af3a39b2ddad43e91e32afd Description: module for generating/analyzing Roman numerals for Python 2 Homepage: http://pypi.python.org/pypi/roman/ Description-md5: 0c888324b96636a57132cb7e90495993 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-routes Priority: optional Section: python Installed-Size: 506 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: routes Version: 2.0-1build1 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~), python-repoze.lru, libjs-sphinxdoc (>= 1.0), python-pkg-resources Recommends: python-webob Suggests: python-paste Filename: pool/main/r/routes/python-routes_2.0-1build1_all.deb Size: 76580 MD5sum: 93a7d9dd3af53796899a461c4cb2261e SHA1: 5aa0c7c07cca5eeac5620b572b4180b164959292 SHA256: 609e8d083a63b79e3f4fcfcf3e502cbb05aa079b532f0c518609480128bb5a26 Description: Routing Recognition and Generation Tools Homepage: http://routes.groovie.org/ Description-md5: 45abc514e189963c194e67064297bc3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-rrdtool Priority: optional Section: python Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: amd64 Source: rrdtool Version: 1.4.7-2ubuntu5 Replaces: python-rrd (<< 1.2.26), python2.3-rrd, python2.4-rrd Provides: python-rrd, python2.7-rrdtool Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.2.5), librrd4 (>= 1.4~rc2) Conflicts: python-rrd (<< 1.2.26), python2.3-rrd, python2.4-rrd Filename: pool/main/r/rrdtool/python-rrdtool_1.4.7-2ubuntu5_amd64.deb Size: 11840 MD5sum: a43729ab79855539a9666563234f78a0 SHA1: b0df6f10f869ecaaeb8fded6e2b4867e21557ba3 SHA256: 5adbc936d7fa4674489a8622145eba530c686e4ebd4a1ea67df69cdf5f59d314 Description: time-series data storage and display system (Python interface) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: aecf78342ca0b88d5c1c141fd6c15cee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-rsvg Priority: optional Section: python Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: gnome-python-desktop Version: 2.32.0+dfsg-3 Replaces: python-gnome2-desktop (<< 2.24.0-2) Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.12.0), librsvg2-2 (>= 2.14.4), python (>= 2.7), python (<< 2.8), librsvg2-common, python-gtk2 Filename: pool/main/g/gnome-python-desktop/python-rsvg_2.32.0+dfsg-3_amd64.deb Size: 13882 MD5sum: 7e031ebbd07ff37ca4fd0feffe89133a SHA1: e7d275632a0a22018a55dd8faf6578bfc40c04fd SHA256: 59c04ab0fcc860315d19d786a12e5442cfd8f1644dc2a3e553c93133178b200f Description: Python bindings for the RSVG library Description-md5: dd16e74b34161e51756e3374aa6aa834 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-samba Priority: optional Section: python Installed-Size: 6425 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Provides: python2.7-samba Depends: python-ldb (>= 1.1.2~), python-tdb, python-ntdb, python-crypto, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libattr1 (>= 1:2.4.46-8), libbsd0 (>= 0.0), libc6 (>= 2.14), libldb1 (>= 0.9.21), libpython2.7 (>= 2.7), libtalloc2 (>= 2.0.4~git20101213), libtevent0 (>= 0.9.16), python-talloc (>= 2.0.6), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Filename: pool/main/s/samba/python-samba_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 879924 MD5sum: 15c444d2b6dc91061e14f55a022c4cd3 SHA1: f67075b8641a0801658a947cfdb9257a8980badb SHA256: 8c99e1a91ad04cd0dd4aa93c15b12bf8b0654b9db5b3995818985ef651af3b52 Description: Python bindings for Samba Homepage: http://www.samba.org Description-md5: 9c51d571670972e097fd3f060aa1902b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-sane Priority: optional Section: python Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-sane (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-sane, python2.7-sane Depends: python-pil (= 2.3.0-1ubuntu3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libsane (>= 1.0.11-3) Recommends: python-tk (>= 2.5.2-1.1) Suggests: python-pil-doc, python-sane-dbg Breaks: python-imaging-sane (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-sane_2.3.0-1ubuntu3_amd64.deb Size: 18396 MD5sum: b33f31dfff4857b944676fea7014c206 SHA1: f9b994a71abe36f0719ac3a2aaf6bf349f25757d SHA256: ac7f45b71a342f670947422e9af482b606e2ba9c7cab5b613033dd3d220396a7 Description: Python Imaging Library - SANE interface (Pillow fork) Description-md5: fbcc8db3171f2e013add0fe42dbd0c29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sane-dbg Priority: extra Section: debug Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-sane-dbg (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-sane-dbg Depends: python-sane (= 2.3.0-1ubuntu3), python-pil-dbg (= 2.3.0-1ubuntu3), python-dbg, libc6 (>= 2.14), libsane (>= 1.0.11-3) Breaks: python-imaging-sane-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-sane-dbg_2.3.0-1ubuntu3_amd64.deb Size: 29660 MD5sum: c5ed3a827758cd74e694add1abd550c3 SHA1: a120009260a3c5e250c0d510a47508500eb55131 SHA256: 4cd97dfb5acfee3a111cad710a43eb5fd0f6da58ab27569fb1e2a229548b6029 Description: Python Imaging Library - SANE interface (debug extension) Description-md5: a9b08fb48accde55c0a7db31d33c5b9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-scgi Priority: optional Section: web Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Neil Schemenauer Architecture: amd64 Source: scgi Version: 1.13-1.1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4) Filename: pool/main/s/scgi/python-scgi_1.13-1.1build1_amd64.deb Size: 18426 MD5sum: cf245a8f89a68cef75d45d943bcbe8e3 SHA1: 74873597e899659bc2e7cae024b9011ffa3296a4 SHA256: 4e336a3f95bb3866c08efe5eaf55988735fc1c7c9c6488be2374adbf167911fe Description: Server-side implementation of the SCGI protocol Homepage: http://python.ca/scgi/ Description-md5: f9262ffaf98f5a73ab962ebe4ceb2440 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-scour Priority: optional Section: python Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: all Source: scour Version: 0.26-3build1 Depends: python (>= 2.6), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-rsvg, python-cairo Filename: pool/main/s/scour/python-scour_0.26-3build1_all.deb Size: 40512 MD5sum: 92ba87009348de2e2953dd75dccc67ee SHA1: f42d993f04450a278d9b98cde1caf575cc164907 SHA256: 05a3b06e103214890230ac343551f978675f7efd9258ab591068e2d6e886702c Description: SVG scrubber and optimizer Homepage: http://codedread.com/scour/ Description-md5: 054ddc9b48c7ae0399c1ae1fcbad37cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-scripttest Priority: optional Section: python Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.2-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-scripttest/python-scripttest_1.2-1build1_all.deb Size: 8880 MD5sum: bdf8dbc43e9237d2d8158676c1b81b33 SHA1: 20693bfd3c62449ae8382cd1545e1f738f1bcf9b SHA256: e4a2a500daada38ce51c52bdd454c45a53e64fa4e9af9ef276b2758b3ff8989b Description: Helper to test command-line scripts - python 2.x Homepage: http://pythonpaste.org/scripttest/ Description-md5: 546718ccb0f158580733e39b5a76caf9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-seamicroclient Priority: optional Section: python Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.2.0-0ubuntu1 Depends: python-babel (>= 1.3), python-iso8601 (>= 0.1.8), python-pbr (>= 0.5.21), python-prettytable, python-requests (>= 1.1), python-simplejson, python-six (>= 1.4.1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-seamicroclient/python-seamicroclient_0.2.0-0ubuntu1_all.deb Size: 27194 MD5sum: cd27fb4005eb5925c94dfe6f850b08b6 SHA1: 609377128b7b4656badd093e645aa19d97d09401 SHA256: 9a90547c1808bb21ce406b92a541cfb201c2a62f86eb844a886519935901c8f7 Description: Client library for Seamicro chassis API - Python 2.x Homepage: https://github.com/seamicro/python-seamicroclient Description-md5: ab50595b275e131577b730399acf0fba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-secretstorage Priority: optional Section: python Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Shachnev Architecture: all Version: 2.0.0-1ubuntu1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python-crypto, python-dbus, dbus Recommends: python-gi Suggests: gnome-keyring (>= 2.30), python-secretstorage-doc Filename: pool/main/p/python-secretstorage/python-secretstorage_2.0.0-1ubuntu1_all.deb Size: 11536 MD5sum: ba9dd22a6201e3ee393a68a380d5da90 SHA1: d11b5f30a22f481400d9423fc4ee9ea69e7e946b SHA256: d7c86d2382b65ad6f1095d6c1530309b34905a0a75312561cede546d510c0043 Description: Python module for storing secrets - Python 2.x version Homepage: https://github.com/mitya57/secretstorage Description-md5: 4b6fe9cb2bafc2b3c1224945493800bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-secretstorage-doc Priority: optional Section: doc Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Shachnev Architecture: all Source: python-secretstorage Version: 2.0.0-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-secretstorage/python-secretstorage-doc_2.0.0-1ubuntu1_all.deb Size: 32934 MD5sum: 02b0e9f7e6e620226a53d583955935c2 SHA1: 4f0250bf48f7c8bdb647af8ccac31e95fdc37fbe SHA256: 1839e7d75e9d17181e05a307f22f2ab83b042ee7393f9f55c1cd0706a3402dd2 Description: Python module for storing secrets - documentation Homepage: https://github.com/mitya57/secretstorage Description-md5: b6692af773c10403d434b0690fcba0ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-serial Priority: optional Section: python Installed-Size: 403 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pyserial Version: 2.6-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-wxgtk2.8 | python-wxgtk Filename: pool/main/p/pyserial/python-serial_2.6-1build1_all.deb Size: 60088 MD5sum: 815adaf14f9c402d2d0507b1d99e7d71 SHA1: 3a50e7684599ebec9a9fb0f43401de1854cae012 SHA256: 1e59105706561e82493d4032761e9c83ec650cbfb80223266ec44cc42d88ec7e Description: pyserial - module encapsulating access for the serial port Homepage: http://pyserial.sourceforge.net/ Python-Version: 2.7 Description-md5: 4dab91c4e71dab549f66bda57e2ecc69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-setuptools Priority: optional Section: python Installed-Size: 811 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Version: 3.3-1ubuntu1 Replaces: python-distribute (<< 0.6.6) Provides: python-distribute, python2.7-setuptools Depends: python:any (>= 2.7), python:any (<< 2.8), python-pkg-resources (= 3.3-1ubuntu1) Conflicts: python-distribute (<< 0.7) Filename: pool/main/p/python-setuptools/python-setuptools_3.3-1ubuntu1_all.deb Size: 230110 MD5sum: 96cc818890d36f1eddc7be31009eaeb9 SHA1: 88915fa79f8acf3d14613639d1d256e6ddb2b2fe SHA256: ec474f0b8578ce3105f508969118ef1caedf18072ea1d0c892915fe6af6bbb52 Description: Python Distutils Enhancements (setuptools compatibility) Homepage: https://pypi.python.org/pypi/setuptools Python-Version: 2.7 Description-md5: 10593235b859c0d693cf7c942ee945db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-setuptools-doc Priority: optional Section: doc Installed-Size: 1117 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-setuptools Version: 3.3-1ubuntu1 Replaces: python-distribute-doc Depends: libjs-jquery Conflicts: python-distribute-doc Filename: pool/main/p/python-setuptools/python-setuptools-doc_3.3-1ubuntu1_all.deb Size: 174116 MD5sum: a7f590d2393260b9e965d4dccf55efde SHA1: 76e39b0f6751f11854a4a9dfa360b209a59b8657 SHA256: 0d2f31d788a9e4ddab18af351e3819724a2aab2b6f01fb8909b71701c6ceeb88 Description: Python Distutils Enhancements (based on distribute), documentation Homepage: https://pypi.python.org/pypi/setuptools Description-md5: a1319b71c3413070a24296f7458b8aac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-setuptools-git Priority: optional Section: python Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: all Version: 1.0b1-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-setuptools, git Filename: pool/main/p/python-setuptools-git/python-setuptools-git_1.0b1-0ubuntu3_all.deb Size: 10302 MD5sum: 265ac64522246d769ba84ac8fdb3fdc5 SHA1: c0804212a2acfe83c180408a4cf73fc41cf344e8 SHA256: f88e7f7c92692df9e78bd7559d584bcb3ea08eb9d81456ba35ad681409e59c84 Description: plugin for setuptools that enables git integration Description-md5: be7c25037bf7f507986f0cc3efab7095 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-simplegeneric Priority: extra Section: python Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: simplegeneric Version: 0.8.1-1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/s/simplegeneric/python-simplegeneric_0.8.1-1_all.deb Size: 11506 MD5sum: fc5b6db5f33a90082b89507dab83dd20 SHA1: 1f16987458f3dae01bfc0845796004bf81b83038 SHA256: afd060abedd3660bc3c6c3adf10d73572ba7803797f084b39747b7b9c8c48cf1 Description: simple generic functions for Python Homepage: http://pypi.python.org/pypi/simplegeneric Description-md5: 7c11e5fff1d97237836650aae1493ff0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-simplejson Priority: optional Section: python Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: simplejson Version: 3.3.1-1ubuntu6 Provides: python2.7-simplejson Depends: python (<< 2.8), python (>= 2.7~), python:any (>= 2.7.5-5~), libc6 (>= 2.2.5) Recommends: libjs-jquery Filename: pool/main/s/simplejson/python-simplejson_3.3.1-1ubuntu6_amd64.deb Size: 54692 MD5sum: 9dfdf538974081a2e1c8ff0ac57f872b SHA1: b3e747063928b0b5af22acb28bc0bce99b2181a3 SHA256: 7d84138b3ef59338cd5a436093e766adb0812a24ea8f2a109b785aae996b6961 Description: simple, fast, extensible JSON encoder/decoder for Python Homepage: http://undefined.org/python/#simplejson Description-md5: ef92533371a7980efc9c1bcc6e19bbe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-simplejson-dbg Priority: extra Section: debug Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: simplejson Version: 3.3.1-1ubuntu6 Depends: python-simplejson (= 3.3.1-1ubuntu6), libc6 (>= 2.2.5), python-dbg (>= 2.7~), python-dbg (<< 2.8) Filename: pool/main/s/simplejson/python-simplejson-dbg_3.3.1-1ubuntu6_amd64.deb Size: 21786 MD5sum: c01a3050d03bbe75196669a1a30105a3 SHA1: 29c98999713ff7d2a9ca8cf1c1333c0ad2838555 SHA256: 5320289630fd9b1d9d40f106b158febf9ddcb537aa89e9c55f7d1d6529f78ec0 Description: JSON encoder and decoder for python-dbg Homepage: http://undefined.org/python/#simplejson Description-md5: d9d5bb7a545b1bd3d86fcaa714ad2f53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-simplejson-doc Priority: optional Section: python Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: simplejson Version: 3.3.1-1ubuntu6 Depends: libjs-sphinxdoc (>= 1.0) Recommends: python-simplejson Conflicts: python-simplejson (<= 3) Filename: pool/main/s/simplejson/python-simplejson-doc_3.3.1-1ubuntu6_all.deb Size: 31324 MD5sum: 2377ced60d49abaae07623fa6d65007d SHA1: 12d1b35c93d3baf24ed88f21058baf412a45dbfc SHA256: a2f95bf3cdba4cd41a5f5591585303855dab77ba46895d83afe8b164313c3b72 Description: documentation for the simplejson Python library Homepage: http://undefined.org/python/#simplejson Description-md5: c353ba4b41aaf1141a9cf0e33eba0dd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-simplestreams Priority: extra Section: python Installed-Size: 143 Maintainer: Ubuntu Developers Architecture: all Source: simplestreams Version: 0.1.0~bzr341-0ubuntu1 Depends: gnupg, python-boto, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-requests (>= 1.1) Filename: pool/main/s/simplestreams/python-simplestreams_0.1.0~bzr341-0ubuntu1_all.deb Size: 22534 MD5sum: 777b5d63314c15e377f604d1414cb6ef SHA1: a91bb175220b6b0661af209fd279fb25dcf9ca5e SHA256: 6fa16e66607d9ccd3b2662a388770da61cad7451e1d4a849fe22c736992200c3 Description: Library and tools for using Simple Streams data Homepage: http://launchpad.net/simplestreams Description-md5: de3939aceef20133cbe2ba7bbb1b7f43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-simpletal Priority: optional Section: python Installed-Size: 247 Maintainer: Ubuntu Developers Original-Maintainer: Igor Stroh Architecture: all Source: simpletal Version: 4.1-7ubuntu1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/s/simpletal/python-simpletal_4.1-7ubuntu1_all.deb Size: 42810 MD5sum: b8e882e03be7ae512abc073f84fcfc60 SHA1: 3fed9018da3e8c09b0d27f4934b58f43aa96a3ad SHA256: fc2fc39141f21318fbc7b2f2d3d49b88ade73dbd68cbe91ea0331fdd02292b18 Description: Simple TAL, TALES and METAL implementation Homepage: http://www.owlfish.com/software/simpleTAL/ Description-md5: 76747e3c32d8b0cc39105034e0522635 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sip Priority: optional Section: python Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: sip4 Version: 4.15.5-1build1 Provides: sip-api-11.0 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4) Breaks: python-qscintilla (<< 2.7.2), python-qt4 (<< 4.10.2~), python-qwt3d-qt4 (<< 0.1.7~cvs20090625-12~), python-qwt5-qt4 (<< 5.2.1~cvs20091107+dfsg-7~) Filename: pool/main/s/sip4/python-sip_4.15.5-1build1_amd64.deb Size: 70002 MD5sum: 7c2961a37f230b184372e96965611135 SHA1: 3e61f1e55564bf9261cbc76cd0ef055cf165a9fa SHA256: bf72be9378ca6b7ca492c68521b7a4f52382d1e6a0bc15bc0fda4494008af52a Description: Python/C++ bindings generator runtime library Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: 27c97dead959a9d9b24bd99cbbda9e50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-audio Package: python-sip-dbg Priority: extra Section: debug Installed-Size: 1149 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: sip4 Version: 4.15.5-1build1 Depends: python-sip (= 4.15.5-1build1), python-dbg, libc6 (>= 2.4) Filename: pool/main/s/sip4/python-sip-dbg_4.15.5-1build1_amd64.deb Size: 257592 MD5sum: c5eb60383c1b31a65dd0319cc0123c0d SHA1: 57f6bad9321ac6dc103d6a2d72f72f2813f76a49 SHA256: 0507cbdf7c1967639d693c36378ab5d0b076ba27e9cb457fbf2fd0afffd031af Description: Python/C++ bindings generator runtime library (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: 25b5c3d39bf289fb92d5e1c0c508c6d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-sip-dev Priority: optional Section: python Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: sip4 Version: 4.15.5-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-sip (= 4.15.5-1build1), sip-dev (= 4.15.5-1build1), python-dev Suggests: python-sip-doc Filename: pool/main/s/sip4/python-sip-dev_4.15.5-1build1_amd64.deb Size: 19898 MD5sum: 665413d9f414ad7fd6e370bf5ed94677 SHA1: 4d68fd40fd24b7339562d41ff369ff87edc3bdc6 SHA256: 094fe5a1d8c798f38d65d5a76488f1d2305bcdc0cebc3b3ef6d0a72bb4c91021 Description: Python/C++ bindings generator development files Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: 43365f4a9613791779e7463d65e464df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-sip-doc Priority: optional Section: doc Installed-Size: 1257 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sip4 Version: 4.15.5-1build1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/s/sip4/python-sip-doc_4.15.5-1build1_all.deb Size: 147924 MD5sum: e34fa4fbf12f281f58720669c20a193d SHA1: 41f92668caa338711f660ceb5129e7b65489d521 SHA256: b882e1585027b1a3b16784931b8732c1e96ee148ba5b9657cf9e209eb7e0ad8c Description: Python/C++ bindings generator documentation Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: cf27fa6d76cc619a2338fabefb854578 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-six Priority: optional Section: python Installed-Size: 62 Maintainer: Colin Watson Architecture: all Source: six Version: 1.5.2-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/s/six/python-six_1.5.2-1_all.deb Size: 8060 MD5sum: 6e35ef4b997fe89bd1f3870925cafb33 SHA1: 17615bb3e0f53326413b9a8693b3694006d2142c SHA256: a165010694d6c2abfc7550771a7dcd22119f28834093692ce8f6e9037480bfad Description: Python 2 and 3 compatibility library (Python 2 interface) Homepage: http://pythonhosted.org/six/ Description-md5: cfd46d2babaaa95d96b4e170cd5bf348 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-smbc Priority: optional Section: python Installed-Size: 88 Maintainer: Ubuntu Core Developers Architecture: amd64 Version: 1.0.14.1-0ubuntu2 Provides: python2.7-smbc Depends: libc6 (>= 2.4), libsmbclient (>= 2:4.0.3+dfsg1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-smbc/python-smbc_1.0.14.1-0ubuntu2_amd64.deb Size: 16134 MD5sum: 1202a951a77abef34006e8c7c855097f SHA1: 4626de3f24730bfe7e7a9791ee48e05133972444 SHA256: 799384791d7c0082906ff0468b7a008e7607ed7582552e16c67f3c5cb74272f9 Description: Python bindings for Samba clients (libsmbclient) Homepage: http://cyberelk.net/tim/software/pysmbc/ Description-md5: 9875640aeb83dc17e4618fcadf016ead Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-sphinx Priority: optional Section: python Installed-Size: 1344 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sphinx Version: 1.2.2+dfsg-1ubuntu1 Depends: python:any (<< 2.8), python-pygments (>= 1.2), python:any (>= 2.7.5-5~), python-docutils (>= 0.7), python-jinja2 (>= 2.3), sphinx-common (= 1.2.2+dfsg-1ubuntu1) Recommends: python (>= 2.6) | python-simplejson, python-pil, sphinx-doc Suggests: jsmath, libjs-mathjax, dvipng, texlive-latex-recommended, texlive-latex-extra, texlive-fonts-recommended Filename: pool/main/s/sphinx/python-sphinx_1.2.2+dfsg-1ubuntu1_all.deb Size: 270468 MD5sum: 6403549f8e7660ec1f90785adfb9a82f SHA1: 75e85de1ba0b9dbe3d1224aaa3643f44db67e399 SHA256: e05935524a6b9843fb82894bfb95cdc139e3e04b228108e705d2fad1a126523c Description: documentation generator for Python projects (implemented in Python 2) Homepage: http://sphinx-doc.org/ Description-md5: 28479ed629f0c4f952b4456ae932970e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sphinxbase Priority: optional Section: python Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: David Huggins-Daines Architecture: amd64 Source: sphinxbase Version: 0.8-0ubuntu10 Provides: python2.7-sphinxbase Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.2.5), libsphinxbase1 (>= 0.8) Filename: pool/main/s/sphinxbase/python-sphinxbase_0.8-0ubuntu10_amd64.deb Size: 33458 MD5sum: aac3c9173f5d1b759eba107a84877511 SHA1: 1788ce11b643d2b0cbd7551e35714848444ac234 SHA256: 7c1d5acf4f19370a845f961654166ac5bcd06543901926f1d74af36227addcd0 Description: Sphinx base libraries - Python module Python-Version: 2.7 Description-md5: 680d9b809f523ad77df5c5b99b814b7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-sphinxbase-dbg Priority: extra Section: debug Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: David Huggins-Daines Architecture: amd64 Source: sphinxbase Version: 0.8-0ubuntu10 Provides: python2.7-sphinxbase-dbg Depends: python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.2.5), libsphinxbase1 (>= 0.8), python-sphinxbase Filename: pool/main/s/sphinxbase/python-sphinxbase-dbg_0.8-0ubuntu10_amd64.deb Size: 55220 MD5sum: a4a064d1779fecce3624446c57a17acf SHA1: 9870c1ca106e56f4e4d397ea38a4dc8843caaecc SHA256: ba35dbce9349e33babfd2cf9a5d9d92cab45216263dd7315bf15275426d9f775 Description: Sphinx base libraries - Python module (debug version) Python-Version: 2.7 Description-md5: 38b488010658a2ef4eb95bf1b50bc1ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-sqlalchemy Priority: optional Section: python Installed-Size: 3136 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: sqlalchemy Version: 0.8.4-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-sqlalchemy-ext Suggests: python-sqlalchemy-doc, python-psycopg2, python-mysqldb (>= 1.2.1-p2-2), python-kinterbasdb (>= 3.1.2-0.3), python-pymssql Filename: pool/main/s/sqlalchemy/python-sqlalchemy_0.8.4-1build1_all.deb Size: 531876 MD5sum: 43e22de1ecdbcc2d4d40b4ab80c07cff SHA1: 9bbc3cdfc4acb248893b36b9f8b3e735b346f565 SHA256: e67916fc7dbb6390b3de0ec2d98507e4f3ce797e8df7a5b91660c914a6c764c0 Description: SQL toolkit and Object Relational Mapper for Python Homepage: http://www.sqlalchemy.org/ Description-md5: 304b4f5d471b523d00f34c7c91faec22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sqlalchemy-doc Priority: optional Section: doc Installed-Size: 10561 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: sqlalchemy Version: 0.8.4-1build1 Depends: libjs-jquery, libjs-underscore Recommends: python-sqlalchemy Conflicts: python-sqlalchemy (<= 0.3.0-1) Filename: pool/main/s/sqlalchemy/python-sqlalchemy-doc_0.8.4-1build1_all.deb Size: 1194026 MD5sum: ccfb5d0898fc52cda1983a276c83d08c SHA1: b7333f01654201a59d1159284d4d732aa02162e7 SHA256: fa893acc59fdc453a6370f8399d8dd8e7079560024f74389e849349a0feebe34 Description: documentation for the SQLAlchemy Python library Homepage: http://www.sqlalchemy.org/ Description-md5: f88c4f903abe01d59444b0fe1adf5a09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-sqlalchemy-ext Priority: optional Section: python Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: amd64 Source: sqlalchemy Version: 0.8.4-1build1 Provides: python2.7-sqlalchemy-ext Depends: python-sqlalchemy (= 0.8.4-1build1), python (>= 2.7), python (<< 2.8), libc6 (>= 2.2.5) Filename: pool/main/s/sqlalchemy/python-sqlalchemy-ext_0.8.4-1build1_amd64.deb Size: 13564 MD5sum: 50a7a58a7b4a075897a411f01b9d5c3a SHA1: 33db75d00f14e713892afa169ef7169de88a5a9e SHA256: a4a277c65ae8d7171e77d06dd964014eb6463772dbcc11c64f31a8942c9c2e69 Description: SQL toolkit and Object Relational Mapper for Python - C extension Homepage: http://www.sqlalchemy.org/ Description-md5: 240e00b2e216ae7b235442cc9257db10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sss Priority: extra Section: utils Installed-Size: 278 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Provides: python2.7-sss Depends: libc6 (>= 2.8), libldb1 (>= 0.9.21), libpopt0 (>= 1.14), libpython2.7 (>= 2.7), libselinux1 (>= 1.32), libsemanage1 (>= 2.0.3), libtalloc2 (>= 2.0.4~git20101213), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: sssd Filename: pool/main/s/sssd/python-sss_1.11.5-1ubuntu3_amd64.deb Size: 58440 MD5sum: 9c899e393432bbddcfc92e6a37addc2c SHA1: c5529d6dee85cd3cba5b366cba946fa9c16cfc5e SHA256: 9c610d4971bccd9aea2c6836d4d0bc30e951d92861f4047ee4380f4919a55ea2 Description: Python module for the System Security Services Daemon Homepage: https://fedorahosted.org/sssd/ Description-md5: ef7b7961a927eb18fec93114606263ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-stevedore Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Julien Danjou Architecture: all Source: stevedore Version: 0.14.1-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/stevedore/python-stevedore_0.14.1-1_all.deb Size: 15088 MD5sum: 2ac09bf53686cf27beca74739d4bd143 SHA1: cb55473398bd4215ad762433d890bf59136a03e3 SHA256: af67f51cc99180ff8c2c23338a6083702aa561dfca7d4b3d35166528475b0568 Description: manage dynamic plugins for Python applications - python2 Homepage: https://github.com/openstack/stevedore Description-md5: 95bd329cc2650f260ea9fb1375525ec5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-stevedore-doc Priority: extra Section: doc Installed-Size: 667 Maintainer: Ubuntu Developers Original-Maintainer: Julien Danjou Architecture: all Source: stevedore Version: 0.14.1-1 Depends: libjs-sphinxdoc (>= 1.0) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/stevedore/python-stevedore-doc_0.14.1-1_all.deb Size: 282372 MD5sum: 91fa05c25b5ed2a7c24bb6f1ef59dc3b SHA1: 366878164ab4c888350d673fcdb65dd3155d8c7d SHA256: b907fe89a208475b92135ca17f7076b3842282ab23005ab1966a3db6bb051e1e Description: manage dynamic plugins for Python applications - doc Homepage: https://github.com/openstack/stevedore Description-md5: 444c57c52cc2da122888805b43a54b1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-subunit Priority: optional Section: python Installed-Size: 381 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: all Source: subunit Version: 0.0.18-0ubuntu7 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-extras, python-testscenarios, python-testtools (>= 0.9.4) Filename: pool/main/s/subunit/python-subunit_0.0.18-0ubuntu7_all.deb Size: 59112 MD5sum: 5df460c79a8c60df252db77a23abd8db SHA1: 68ba2db9e730ff5fbfe04684b92c9d80037ceb0e SHA256: 0e6e7d090995bb55e8c695083fa98700ba0617514e0fb27de6fd2cc78ecd5131 Description: unit testing protocol - Python bindings to generate and consume streams Homepage: http://code.launchpad.net/subunit Description-md5: 067bae5a5ad0a21051df0b8a1696e12e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-subversion Priority: optional Section: python Installed-Size: 4191 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Source: subversion Version: 1.8.8-1ubuntu3 Provides: python2.7-subversion Depends: libapr1 (>= 1.2.7), libc6 (>= 2.14), libsvn1 (>= 1.8), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: multiarch-support Suggests: python-subversion-dbg Breaks: svnmailer (<< 1.0.9) Filename: pool/main/s/subversion/python-subversion_1.8.8-1ubuntu3_amd64.deb Size: 515430 MD5sum: 24a5c483f753362b57c7a620b4915c9b SHA1: 676f8382bfea3ce0a0c86a31ac94915758b9e6db SHA256: d137c5a0da9a33d8ff796b3327f72274c11b6f12777bcbbc012cd9cb0f88c375 Description: Python bindings for Apache Subversion Homepage: http://subversion.apache.org/ Description-md5: 30d5802891a40f1c510adc5fe5a34238 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-subversion-dbg Priority: extra Section: python Installed-Size: 9543 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Source: subversion Version: 1.8.8-1ubuntu3 Provides: python2.7-subversion-dbg Depends: python-subversion (= 1.8.8-1ubuntu3), python-dbg (>= 2.7), libapr1 (>= 1.2.7), libc6 (>= 2.14), libsvn1 (>= 1.8), python-dbg (<< 2.8) Pre-Depends: multiarch-support Filename: pool/main/s/subversion/python-subversion-dbg_1.8.8-1ubuntu3_amd64.deb Size: 1699386 MD5sum: fd56a6ae0c892d0cb79c85b5cbd54f75 SHA1: ee2fa55ef25e9fd04b05ebbf6b7f2ab9f5a2f816 SHA256: 7665ba073410a645887bf68a8eed64bef035e245286188d515e93a5d642a5e8c Description: Python bindings for Subversion (debug extension) Homepage: http://subversion.apache.org/ Description-md5: f20ef14947423d47b5d91de9d62bf3a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-suds Priority: optional Section: python Installed-Size: 530 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tryton Maintainers Architecture: all Source: suds Version: 0.4.1-11build1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python-pkg-resources Filename: pool/main/s/suds/python-suds_0.4.1-11build1_all.deb Size: 91726 MD5sum: 831aa3fe7b9775cc09cb3af84078bf9e SHA1: cca580355ef06994dcc0b47d9c4d37a4385cd09c SHA256: 66cde751259ab18edb784ffd7799ab53f4ece39bc61ed60a7efe7458059ffd73 Description: Lightweight SOAP client for Python Homepage: http://www.fedorahosted.org/suds/ Description-md5: e1ac45cd8cf31cf7b34831e1d71530be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sure Priority: optional Section: python Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.2.2-2build1 Depends: python-nose, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-sure/python-sure_1.2.2-2build1_all.deb Size: 17380 MD5sum: 0d28cef2d9292fd104b698a0d0a6bc23 SHA1: 02f7592f3f3979189c8c5d51cf777f1840b78512 SHA256: 7f4c0135895353e731e1d8d89379d6980e643f6d40dfa13ea25cc9eb4c016c0d Description: utility belt for automated testing for Python Homepage: http://github.com/gabrielfalcao/sure Description-md5: 41ab761c9cbdb08e602819a362983bc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-svn Priority: optional Section: python Installed-Size: 2382 Maintainer: Ubuntu Developers Original-Maintainer: Henry Velez Architecture: amd64 Source: pysvn Version: 1.7.8-0.2 Replaces: python2.3-svn, python2.4-svn Provides: python-pysvn, python2.7-svn Depends: libapr1 (>= 1.2.7), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libsvn1 (>= 1.7), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-svn-dbg Conflicts: python2.3-svn, python2.4-svn Filename: pool/main/p/pysvn/python-svn_1.7.8-0.2_amd64.deb Size: 376590 MD5sum: 403fcc9f17c9b80adbd1bacd5d7d8bef SHA1: 964a98124bf775fed698d345357c98474ac23b4f SHA256: 1845e5f00fd13e7b79e6380dfab110d915e7c0828f7b1c0d98dcb72ebafa1398 Description: A(nother) Python interface to Subversion Homepage: http://pysvn.tigris.org/ Python-Version: 2.7 Description-md5: 68e6338441729beae45452e9f94a2f32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-svn-dbg Priority: extra Section: python Installed-Size: 853 Maintainer: Ubuntu Developers Original-Maintainer: Henry Velez Architecture: amd64 Source: pysvn Version: 1.7.8-0.2 Provides: python-pysvn Depends: python-svn (= 1.7.8-0.2), python-dbg Filename: pool/main/p/pysvn/python-svn-dbg_1.7.8-0.2_amd64.deb Size: 96768 MD5sum: 764898820aab9845f92270dec4cd2fab SHA1: 871a5aa2fa3727f83753a69861d1e758019e279f SHA256: 98577e716eda441de38f0a644537d7c46e2ef1b124b790ae9c19342985e081ff Description: A(nother) Python interface to Subversion (debug extension) Homepage: http://pysvn.tigris.org/ Description-md5: d398769dfb76cc2e484403b6e982916a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-swift Priority: optional Section: python Installed-Size: 1400 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Replaces: swift (<< 1.13.1~rc1-0ubuntu1~) Provides: python2.7-swift Depends: adduser, python-dnspython (>= 1.10.0), python-eventlet (>= 0.9.8), python-greenlet (>= 0.3.1), python-netifaces, python-openssl, python-paste, python-pastedeploy, python-setuptools, python-simplejson, python-xattr, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: swift (<< 1.13.1~rc1-0ubuntu1~) Filename: pool/main/s/swift/python-swift_1.13.1-0ubuntu1_all.deb Size: 231058 MD5sum: 40d37b2098e251cd4377c6b9dde943d0 SHA1: 3813adbd0e80919bf66e145986633f989cbbfeef SHA256: a909d3172153ef414a0898579a653ee49b91da678174fecb82a3438033f6f24a Description: distributed virtual object store - Python libraries Homepage: http://launchpad.net/swift Description-md5: de070055ceecd087c69ec8d278884c43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-swiftclient Priority: extra Section: python Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Adam Gandelman Architecture: all Version: 1:2.0.3-0ubuntu1 Replaces: swift (<< 1.7.4-0ubuntu2) Depends: python-eventlet, python-httplib2, python-keystoneclient, python-setuptools, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-requests, python-simplejson Breaks: swift (<< 1.7.4-0ubuntu2) Filename: pool/main/p/python-swiftclient/python-swiftclient_2.0.3-0ubuntu1_all.deb Size: 31326 MD5sum: 4cfe680aff292f69baac0c0b54952b3b SHA1: a348ada288ec723e9158659afb9f82e4d5bbca2e SHA256: 57ecb407a696cb6c31f92d439a4f3dd6c10d06e0f5603f14ee049a9c546143ba Description: Client library for Openstack Swift API. Description-md5: 3cc3f677cff7556abc65b72cc87defc4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-tablib Priority: optional Section: python Installed-Size: 1573 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.9.11-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-tablib/python-tablib_0.9.11-2build1_all.deb Size: 253088 MD5sum: 7e7d805942a32175fe2b8b3d0fd5054e SHA1: fced066c11094b902e9fb29498d36a6f308fca9a SHA256: 68b92225082406f7c2a4328ca589964890a8c4adddaced8c53601280593645d1 Description: format agnostic tabular dataset library Homepage: http://docs.python-tablib.org/en/latest/index.html Description-md5: 4127f701a75d33a86b7a685315280931 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-talloc Priority: optional Section: python Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: talloc Version: 2.1.0-1 Provides: python2.7-talloc Depends: libc6 (>= 2.2.5), libpython2.7 (>= 2.7), libtalloc2 (>= 2.0.4~git20101213), python (>= 2.7), python (<< 2.8) Pre-Depends: multiarch-support Filename: pool/main/t/talloc/python-talloc_2.1.0-1_amd64.deb Size: 8646 MD5sum: 2b99ea013923e7316e30fd04d581b0b5 SHA1: 622a62092cee3bf98f1331a5e87f17c1a638bfce SHA256: 06f09f175364d88f7b64b5dc4959b27ad35036410da4e30140cb3612515c3bd7 Description: hierarchical pool based memory allocator - Python bindings Homepage: http://talloc.samba.org/ Description-md5: f45a9667d467e79db9c4c96ffc13e2eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-talloc-dbg Priority: extra Section: debug Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: talloc Version: 2.1.0-1 Depends: python-talloc (= 2.1.0-1) Pre-Depends: multiarch-support Recommends: python-dbg, libtalloc2-dbg Filename: pool/main/t/talloc/python-talloc-dbg_2.1.0-1_amd64.deb Size: 14708 MD5sum: 890b8d922aff3d4f74e4229d0e20e5ed SHA1: 35012a13b1c756dc64fa8fe21cd433e6f43b70bd SHA256: 868fe9a11d7a86ff149996b4efdc5db333a263af8710c64476dea158748f14b7 Description: hierarchical pool based memory allocator - Python debug extension Homepage: http://talloc.samba.org/ Description-md5: c7b083e347d9a8e0dc1d2f6dadd23ef7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-talloc-dev Priority: optional Section: libdevel Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: talloc Version: 2.1.0-1 Depends: python-talloc (= 2.1.0-1), pkg-config Filename: pool/main/t/talloc/python-talloc-dev_2.1.0-1_amd64.deb Size: 4172 MD5sum: ff70ca364f0527292f890441eb389d0b SHA1: a7a27c9ea6b55091cde3f8d86d407bf550ae66f6 SHA256: aef8e7d52591acd1248ec8d62323834cd087ad3ee498b5ad99a947731f8a1c60 Description: talloc Python bindings - development files Homepage: http://talloc.samba.org/ Description-md5: 18066c5366d859cfc76e6151aecc9a7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-taskflow Priority: optional Section: python Installed-Size: 724 Maintainer: Chuck Short Architecture: all Version: 0.1.3-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-anyjson, python-iso8601, python-six, python-networkx, python-babel, python-stevedore, python-concurrent.futures, python-sqlalchemy, alembic, python-eventlet Filename: pool/main/p/python-taskflow/python-taskflow_0.1.3-0ubuntu3_all.deb Size: 104896 MD5sum: cd42bfcb1b588b79dd34f9ea518cebd1 SHA1: b2108668785356acbab25a1067bf87aa6a777416 SHA256: ea39f00f1d6cf33cd0b09fdb39cceaa0a7d15884c8e8cfbf4926a1c719e9cd19 Description: Taskflow structured state management library. Description-md5: d577399c997a41c1945f795df781caf0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-tdb Priority: optional Section: python Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: tdb Version: 1.2.12-1 Provides: python2.7-tdb Depends: libtdb1 (= 1.2.12-1), python (>= 2.7), python (<< 2.8), libc6 (>= 2.2.5), libpython2.7 (>= 2.7) Filename: pool/main/t/tdb/python-tdb_1.2.12-1_amd64.deb Size: 11374 MD5sum: 768b0b9a7e1985d54b69d1e3ba47c227 SHA1: 30a3b30d2e62da0ae8010cebbb9fadc0082fedb8 SHA256: 028bbe11e4bdabc5dcd1038e1ce661d19cd18bd1dc5423c6d2132d427250be6c Description: Python bindings for TDB Homepage: http://tdb.samba.org/ Description-md5: a793bf0d4a95bb761ab855a652f8d3ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-tdb-dbg Priority: extra Section: debug Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: tdb Version: 1.2.12-1 Depends: python-tdb (= 1.2.12-1) Recommends: python-dbg, libtdb1-dbg Filename: pool/main/t/tdb/python-tdb-dbg_1.2.12-1_amd64.deb Size: 18724 MD5sum: 0ae983db349012ea8827067f48cc2fc0 SHA1: f1c78b5e9cbc64cd88b96418ff872aedf49f0b4b SHA256: 1b4713dc84eb90dfe5f33a1b120ad6e30a352452c71cce26122957e95a245784 Description: Python bindings for TDB - debug extension Homepage: http://tdb.samba.org/ Description-md5: ca3891ec8769c2be4d8db30808f54f93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-tempita Priority: extra Section: python Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.5.2-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-tempita/python-tempita_0.5.2-1build1_all.deb Size: 13776 MD5sum: fa4fd67b02d761715923b71375fd6f08 SHA1: f6f7534427fe6ee584df0967341084e51e786475 SHA256: c72346e777a5b42dc7084cf5c1339cd461dda120544a4c753904e1cf75591c40 Description: very small text templating language Description-md5: 70161c2bb4512e28c7153543a4cc4979 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-testrepository Priority: optional Section: python Installed-Size: 410 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: testrepository Version: 0.0.18-1ubuntu1 Provides: python2.7-testrepository Depends: python-subunit, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-fixtures, python-testtools Filename: pool/main/t/testrepository/python-testrepository_0.0.18-1ubuntu1_all.deb Size: 57084 MD5sum: fccdb4e8bbd29cbe37f977c5548e0a3d SHA1: c90b6ad595dde24ceab3a23d376395c218960c1c SHA256: 98c6524e5d769c09ad030bd89a62944eee36043f7069be8f68a0614c84b14e96 Description: Database of test results - python library (python2) Homepage: https://pypi.python.org/pypi/testrepository Python-Version: 2.7 Description-md5: b4eabcb734a37dc1547c452e95d63d24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-testresources Priority: optional Section: devel Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Source: testresources Version: 0.2.7-1ubuntu2 Replaces: python2.4-testresources Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Conflicts: python2.4-testresources Filename: pool/main/t/testresources/python-testresources_0.2.7-1ubuntu2_all.deb Size: 24822 MD5sum: a4f093d3064d8839cc930af365c60547 SHA1: f19355f6a36562c0817bb5d6e6d94dd470cf9bbe SHA256: f410ada596a5fd21db876be4d0d8e32e55795b836663dfed1c4413dbf730d218 Description: PyUnit extension for managing expensive test fixtures (python2) Description-md5: c250c304f0e780cb9dba46c87613e19a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-testscenarios Priority: optional Section: python Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.4-2ubuntu2 Provides: python2.7-testscenarios Depends: python-testtools, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-testscenarios/python-testscenarios_0.4-2ubuntu2_all.deb Size: 13220 MD5sum: e6686084709fc63c00943d1f343c6541 SHA1: 1bb787eed9e3e37c43cc00abd75363de617667a9 SHA256: e8ae1dd1f9ec59aa9a35866e44ad3f79fbdedab619bff5f8ffabaef5d1a8ed8c Description: Dependency injection for Python unittest tests (python2) Homepage: https://launchpad.net/testscenarios Description-md5: 20d6d9271049d481c28403e25000671a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-testtools Priority: optional Section: python Installed-Size: 1207 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.9.35-0ubuntu1 Provides: python2.7-testtools Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-extras, python-mimeparse, python-pkg-resources Recommends: python-fixtures, libjs-jquery, libjs-underscore Suggests: python-twisted Breaks: python-subunit (<< 0.0.6) Filename: pool/main/p/python-testtools/python-testtools_0.9.35-0ubuntu1_all.deb Size: 192662 MD5sum: 02712b24a895979d852fa23df1940d82 SHA1: e51e1f6c874b503b27f53c0cf5840c41759703ba SHA256: fd6bc0bc674fa60f32c4e9eff7b23e1e60b3689227a707f8b80fda417e7e2ff6 Description: Extensions to the Python unittest library (Python 2.x) Homepage: http://pypi.python.org/pypi/testtools Description-md5: 9f9838e8a4f2d434bf1de805c734385d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-thrift Priority: extra Section: python Installed-Size: 181 Maintainer: Ubuntu Developers Original-Maintainer: Eric Evans Architecture: amd64 Version: 0.9.0-1build1 Provides: python2.7-thrift Depends: libc6 (>= 2.2.5), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-thrift/python-thrift_0.9.0-1build1_amd64.deb Size: 30844 MD5sum: 8c575c6f55b81fb07c8b03c14c2be2fb SHA1: 058a023f06a5268b748160e9b3a48d1ef4c3e453 SHA256: d7888880e6c0d8e09da4636ab2263687aacfda357870d19b39b2463206c4a688 Description: Python library for Thrift Homepage: http://thrift.apache.org Description-md5: 319d1fee8e45df34eece42c9e52552fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-tickcount Priority: optional Section: python Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: amd64 Source: tickcount Version: 0.1-0ubuntu17 Depends: libc6 (>= 2.2.5), python (>= 2.7), python (<< 2.8) Filename: pool/main/t/tickcount/python-tickcount_0.1-0ubuntu17_amd64.deb Size: 4840 MD5sum: 69ecb63d3259553b03c0c1cf13e37f6a SHA1: 83b974866ebcd287d7ee030a5fac838a65905d4a SHA256: 1ea8fc97e305fafee85e370341e464072af0394fc7c0a7cfb7a38bdf83a00f26 Description: Python module to access the Python interpreter tickcount Homepage: https://launchpad.net/tickcount Description-md5: 45eeee0227d5c29311ceb96a060c13f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-tidylib Priority: optional Section: python Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Janos Guljas Architecture: all Version: 0.2.1~dfsg-2ubuntu3 Provides: python2.7-tidylib Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libtidy-0.99-0, libjs-jquery, libjs-underscore Filename: pool/main/p/python-tidylib/python-tidylib_0.2.1~dfsg-2ubuntu3_all.deb Size: 135564 MD5sum: dd3b3911a5f98befd73a86de81ac7686 SHA1: 0ff4c1c24366d69aa328659ba487032ece65a2ea SHA256: 3fc61ee6e08e3951d09b6c025ee21ac633fd05de4728c9d4e6b14a82b751d7fb Description: Python wrapper for HTML Tidy (tidylib) Homepage: http://countergram.com/open-source/pytidylib/ Description-md5: f20fcc647be16665132c17f2eac0c5c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-tk Priority: optional Section: python Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-stdlib-extensions Version: 2.7.5-1ubuntu1 Replaces: python2.3-tk, python2.4-tk Provides: python2.7-tk Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.4), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Suggests: tix, python-tk-dbg Conflicts: python2.3-tk, python2.4-tk Filename: pool/main/p/python-stdlib-extensions/python-tk_2.7.5-1ubuntu1_amd64.deb Size: 23630 MD5sum: eac345d630400dcf793c54acc243abb2 SHA1: 3e2791274b726a14ae2553718e33353bcee390ba SHA256: a0c5e9c4b318099fe8eb9368133492931fa661f61643247c252392e2a064a816 Description: Tkinter - Writing Tk applications with Python Description-md5: ade58d77904b3fac3495009bcd8b0115 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-publishing Package: python-tk-dbg Priority: extra Section: python Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-stdlib-extensions Version: 2.7.5-1ubuntu1 Depends: python-dbg (>= 2.7), python-dbg (<< 2.8), python-tk (= 2.7.5-1ubuntu1), libc6 (>= 2.4), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Filename: pool/main/p/python-stdlib-extensions/python-tk-dbg_2.7.5-1ubuntu1_amd64.deb Size: 64862 MD5sum: 0c7be63a5fccd67dd28286e3cbef9287 SHA1: 2af938b89c36684c0ec658267a186e51004770e6 SHA256: d0f6ead86c7c14490f2d91855dc3e81e61f836d90a98eb9b185967e081cafd16 Description: Tkinter - Writing Tk applications with Python (debug extension) Description-md5: 087294519fcd42cc82c70013179536d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-tornado Priority: optional Section: python Installed-Size: 1247 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 3.1.1-1ubuntu2 Depends: ca-certificates, python (>= 2.7), python-pycurl, python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-mysqldb Filename: pool/main/p/python-tornado/python-tornado_3.1.1-1ubuntu2_all.deb Size: 214520 MD5sum: 5c589767af20f9a130942b9add5b85e2 SHA1: 83c2f44c29eae1efb08c32e39b7eed569af66b99 SHA256: 1ba3fe7ce8bb777f2c6511501d8f91666a67d26125e59a947abdc0e554f607b2 Description: scalable, non-blocking web server and tools Homepage: http://www.tornadoweb.org/ Description-md5: 334f29c239009363c41bf9736d065ebc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-troveclient Priority: extra Section: python Installed-Size: 473 Maintainer: Ubuntu Developers Original-Maintainer: Adam Gandelman Architecture: all Version: 1:1.0.3-0ubuntu3 Depends: python-httplib2, python-lxml, python-setuptools, python-prettytable (>= 0.6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-requests, python-simplejson, python-babel, python-six Filename: pool/main/p/python-troveclient/python-troveclient_1.0.3-0ubuntu3_all.deb Size: 67612 MD5sum: cf06c287a83da8c96df0c3929e16ba9b SHA1: 5dda88b4bb8d3361082d7e3e7c07927f9dc2a465 SHA256: 28a77a6b3bdc9851d39a8eead4a54ce6d0edfa1a8d67e808fc66f5aa187e1b9f Description: Client library for Openstack Trove API. Description-md5: 10b7bd2503403090081a0c7e691ca34d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted Priority: extra Section: python Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Provides: python2.7-twisted Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python-twisted-conch (>= 1:13.2.0-1ubuntu1), python-twisted-mail (>= 13.2.0-1ubuntu1), python-twisted-lore (>= 13.2.0-1ubuntu1), python-twisted-names (>= 13.2.0-1ubuntu1), python-twisted-news (>= 13.2.0-1ubuntu1), python-twisted-runner (>= 13.2.0-1ubuntu1), python-twisted-web (>= 13.2.0-1ubuntu1), python-twisted-words (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8) Filename: pool/main/t/twisted/python-twisted_13.2.0-1ubuntu1_all.deb Size: 3970 MD5sum: 95d58118ed009eb63f45615787cb8375 SHA1: dfe885beb9b3f3f94c866c5bddb961f6420b2c2f SHA256: 13f66988111d02a4ab3a9ada2f9b2c9adc91dee1abf9be2d044ba5a76fad2f01 Description: Event-based framework for internet applications (dependency package) Description-md5: 626c5f6e29c3177f91462f5f00604df0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-bin Priority: optional Section: python Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: twisted Version: 13.2.0-1ubuntu1 Provides: python2.7-twisted-bin Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.14) Suggests: python-twisted-bin-dbg Filename: pool/main/t/twisted/python-twisted-bin_13.2.0-1ubuntu1_amd64.deb Size: 11768 MD5sum: 39a949056036e466cade398174562691 SHA1: c681a0579ef8a468950f8121330ca10e3afcf3bf SHA256: 7d1bab073d6901da7901cdff01c4cc684e2defc3e65534654f897699d4fd5aee Description: Event-based framework for internet applications Description-md5: b043b8fbcb0f933afbb8bed2bd47d163 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-twisted-bin-dbg Priority: extra Section: python Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-bin (= 13.2.0-1ubuntu1), python-zope.interface-dbg, python-dbg, libc6 (>= 2.14) Filename: pool/main/t/twisted/python-twisted-bin-dbg_13.2.0-1ubuntu1_amd64.deb Size: 33960 MD5sum: 846b38b3e8190202fd64491bf5684f70 SHA1: 2f99d6c2f40edf533f6c98326fcba0fa73c09f85 SHA256: fddeef3726fd0a036d19094bc287a657ff7098295b63e2ef4a87806b70672022 Description: Event-based framework for internet applications (debug extension) Description-md5: 915a24ecf9bae898dc98ac75c0555942 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-twisted-conch Priority: extra Section: python Installed-Size: 1402 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted (13.2.0-1ubuntu1) Version: 1:13.2.0-1ubuntu1 Provides: conch, python2.7-twisted-conch Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python-crypto (>= 2.0.1+dfsg1-1.1), python-pyasn1, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-conch_13.2.0-1ubuntu1_all.deb Size: 241772 MD5sum: b56ec1fca44c035778c468c934dad468 SHA1: a456cf56db726e43fb745f9e88ce66f20719f571 SHA256: 3e09ea9060355864f9c65380a0f099c84c933351501fe8cbdfa2482d45a17fdc Description: Twisted SSH Implementation Description-md5: 0c60ef99e953fe6f7932b157c545d30f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-core Priority: optional Section: python Installed-Size: 5921 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Provides: python2.7-twisted-core Depends: python-twisted-bin (>= 13.2.0-1ubuntu1), python-zope.interface (>= 3.6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-openssl, python-pam, python-serial Suggests: python-tk, python-gtk2, python-glade2, python-qt3, python-wxgtk2.8 Filename: pool/main/t/twisted/python-twisted-core_13.2.0-1ubuntu1_all.deb Size: 983742 MD5sum: 9131bf286ce0473f29cfa8f3ccbaaf4e SHA1: e271af8aa70124ce206a00e110591366f5d83dca SHA256: 3fe1f24b38b46f579672e11a20e87f914d5c7962f0c88b290157301871307738 Description: Event-based framework for internet applications Description-md5: b043b8fbcb0f933afbb8bed2bd47d163 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-twisted-lore Priority: optional Section: python Installed-Size: 409 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-web (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-lore_13.2.0-1ubuntu1_all.deb Size: 65820 MD5sum: fe1fb2faf26113f56cfe3f08c1409d24 SHA1: 5d53848689838a4c1b4eeb57f22b0d6a7005c392 SHA256: 92dfe16df3f54e71f5d99cf8e5ffb2bd653e9d09c4bd2975f868733b3f0cdccf Description: Documentation generator with HTML and LaTeX support Description-md5: 7ce69113380cdb08d6c748d7123ceeb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-mail Priority: optional Section: python Installed-Size: 998 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python-openssl, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-twisted-names Filename: pool/main/t/twisted/python-twisted-mail_13.2.0-1ubuntu1_all.deb Size: 168022 MD5sum: 418831134dcef7e7cc5eb89a8e6072c3 SHA1: 7d852e37ee2fb94286a819e318c8ab10a80a40d5 SHA256: ab7edcd1d59b2b4d17a41c7db0a6296fd2805005863acca2f0a22d6af765cec0 Description: SMTP, IMAP and POP protocol implementation Description-md5: 1d6d474c19b78b13b160750ae7fb2c9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-names Priority: optional Section: python Installed-Size: 476 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-names_13.2.0-1ubuntu1_all.deb Size: 78414 MD5sum: e90b94dc1d359145a935fc5185e6a927 SHA1: 7cecd89e5ddd7475e9c5d742689e3ab724468ccd SHA256: 0b56d428072fac9a43408ab75f5c6306efb049c44eb1cf86e4c08e074a3135cd Description: DNS protocol implementation with client and server Description-md5: 4054994bb44b518a6505fec31751834a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-twisted-news Priority: optional Section: python Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-news_13.2.0-1ubuntu1_all.deb Size: 22522 MD5sum: f902221c471866d3b669fdfc7003e8e3 SHA1: 600dfda8e5f2a6c01dcade0c2a13753339e020a1 SHA256: 29056a0448bef65222ffca23677ff4967759d58bbeecdaadba94facd26bde12a Description: NNTP protocol implementation with client and server Description-md5: 26ac27e8723a8f9579ab5620f1f2cbb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-runner Priority: optional Section: python Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: twisted Version: 13.2.0-1ubuntu1 Provides: python2.7-twisted-runner Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.2.5) Suggests: python-twisted-runner-dbg Filename: pool/main/t/twisted/python-twisted-runner_13.2.0-1ubuntu1_amd64.deb Size: 18336 MD5sum: 17b308323ceae618c2c45a98ab202fb5 SHA1: c899ecfcec58df5c6c0bf12ce6f9c1c78abb9049 SHA256: 22253ab3cb5e97785694ee892c06095f2fba5c638ccdbe4e92073b9ab2aa16ea Description: Process management, including an inetd server Description-md5: c581a6339222e991eec9760b4d1d1fc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-runner-dbg Priority: extra Section: python Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-runner (= 13.2.0-1ubuntu1), python-dbg, libc6 (>= 2.2.5) Filename: pool/main/t/twisted/python-twisted-runner-dbg_13.2.0-1ubuntu1_amd64.deb Size: 9548 MD5sum: 41602a2404210e1b0f2ade3f96dbf428 SHA1: 0ecb0cb4071003d6187670fbb8263cf18bc74cc4 SHA256: 94dc5ceb298d4c8b2cc900cef772d406165fc019030fafc833ad12b0e0129c91 Description: Process management, including an inetd server (debug extension) Description-md5: 04fc283395808a7b5d806d24f3251d51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-twisted-web Priority: optional Section: python Installed-Size: 1764 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-web_13.2.0-1ubuntu1_all.deb Size: 291552 MD5sum: 5143e752b56f1e0d31a4d544506af263 SHA1: 55a4ff4ac8ba156da4d41cf916dec78bd51e60fb SHA256: b7dcef6d5b7631744e3cdb1f5749de4b379628cece080096f3937d29fcfa3be9 Description: HTTP protocol implementation together with clients and servers Description-md5: 31f20180fa1515c728c648bbebf7afdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-twisted-words Priority: optional Section: python Installed-Size: 1058 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python-openssl, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-words_13.2.0-1ubuntu1_all.deb Size: 181626 MD5sum: 63af9f9ccdbcce16975d9704a89d9746 SHA1: a14fe6905ae8f965bc1f5a951f3eab96d4837d71 SHA256: 1667b7cdb9b040e8dcd847fed6e84d2bab0f45cdd566334ccfc98034fa88769d Description: Chat and Instant Messaging Description-md5: 0be0a1f1b7fa047655140359568cc996 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-txamqp Priority: optional Section: python Installed-Size: 116 Maintainer: Andres Rodriguez Architecture: all Source: txamqp Version: 0.6.1-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-twisted Filename: pool/main/t/txamqp/python-txamqp_0.6.1-0ubuntu2_all.deb Size: 18020 MD5sum: b6a1fe2910e865933a76b238157d1984 SHA1: 782b2f4d1ad53028903d5485dd25b16c400922a6 SHA256: bbc555e7929eb72b8e89a6c5ca81c9bc0ecf1fac1aa36f4a5f498d56b733ce30 Description: AMPQ client library using Twisted Homepage: http://pypi.python.org/pypi/txAMQP Description-md5: e9ae34ab13b003462b7b31f5fb5b4df5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-txlongpoll Priority: optional Section: python Installed-Size: 150 Maintainer: Ubuntu Developers Architecture: all Source: txlongpoll Version: 0.3.1+bzr86-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-formencode, python-oops-amqp, python-oops-datedir-repo (>= 0.0.13), python-oops-twisted (>= 0.0.3), python-yaml, python-twisted, python-txamqp (>= 0.5), python-zope.interface Filename: pool/main/t/txlongpoll/python-txlongpoll_0.3.1+bzr86-0ubuntu3_all.deb Size: 17534 MD5sum: 5b4c6b7981daf7a059a7150162b7d458 SHA1: 07cd0b80a4b3958158f4d2aeb4bf5a8990904fd4 SHA256: b1cb325f32a125cbe1d6719cd973ba3510b0817131034932ee0458e6e86ea149 Description: Long polling HTTP frontend for AMQP Homepage: https://launchpad.net/txlongpoll Description-md5: 68a80f3225bdf78bea26ce03cbaa1168 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-txtftp Priority: optional Section: python Installed-Size: 209 Maintainer: Ubuntu Developers Architecture: all Source: python-tx-tftp Version: 0.1~bzr38-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-twisted, python-zope.interface Filename: pool/main/p/python-tx-tftp/python-txtftp_0.1~bzr38-0ubuntu2_all.deb Size: 24492 MD5sum: 748c21a04f5d60251a15658c866fd90e SHA1: eae54ea810d594f695c6a281054e5bacaa58deea SHA256: 0df27c91d49bdedd7901c3d4ef9f844b83bd0a8fa5079995290b6a468f3302fd Description: Twisted-based TFTP implementation Homepage: https://github.com/shylent/python-tx-tftp Description-md5: f0dc78275d86a53f832a97c938ec022b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-tz Priority: extra Section: python Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: all Version: 2012c-1build1 Depends: tzdata, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-tz/python-tz_2012c-1build1_all.deb Size: 31990 MD5sum: 9c2a526307d2e15cf23d8b72a87b6158 SHA1: c5240f8b8a5e9bac0f7d9aa9589f03910ee44a8e SHA256: b12385a2b72b22384fe0795a1e2e12c86bf714e6c9feee6915a3a3ed253ca84d Description: Python version of the Olson timezone database Homepage: http://pypi.python.org/pypi/pytz/ Description-md5: a494a4b54ac250236f51356b49003c79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-video Package: python-ubuntu-sso-client Priority: extra Section: python Installed-Size: 361 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-sso-client Version: 13.10-0ubuntu6 Replaces: python-ubuntuone-storageprotocol (<< 13.05), ubuntu-sso-client (<< 2.99.4) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), gir1.2-soup-2.4, gnome-keyring, libglib2.0-bin, python-dbus, python-dirspec, python-httplib2 (>= 0.7.2), python-oauthlib (>= 0.3.5), python-openssl, python-twisted-core, python-twisted-web, python-zope.interface Breaks: python-ubuntuone-storageprotocol (<< 13.05), ubuntu-sso-client (<< 2.99.4) Filename: pool/main/u/ubuntu-sso-client/python-ubuntu-sso-client_13.10-0ubuntu6_all.deb Size: 49858 MD5sum: 2541ca475874b347232c224140497b6c SHA1: 63c58939ce91643da16ddd509453bef77ca50238 SHA256: 44a377a360a81909463b0cb97ccf15ef5ebc1087fdfcec43c021411a5d3dc215 Description: Ubuntu Single Sign-On client - Python library Description-md5: 9fe03228f7dd735be1bd9c858dd2005e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-ubuntuone-devtools Priority: optional Section: python Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Rodney Dawes Architecture: all Source: ubuntuone-dev-tools Version: 13.10-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), dbus, python-dbus, python-dirspec (>= 2.99.0) Filename: pool/main/u/ubuntuone-dev-tools/python-ubuntuone-devtools_13.10-0ubuntu2_all.deb Size: 21528 MD5sum: cae10bc5c967b73ba300ee3a94c6d3aa SHA1: 7f84265015b365e5b17c4c7e46d9787b92ebdffc SHA256: 6810392c3906c303740d8f1afeac00e0d7effd1b112ee5ceb4eb0960acad23f0 Description: Ubuntu One development tools - Python modules Homepage: http://launchpad.net/ubuntuone-dev-tools Description-md5: 531088a9f3ac53859d52834b4a961f1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ufw Priority: optional Section: python Installed-Size: 253 Maintainer: Jamie Strandboge Architecture: all Source: ufw Version: 0.34~rc-0ubuntu2 Replaces: ufw (<< 0.32-0ubuntu1) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: ufw (<< 0.32-0ubuntu1) Filename: pool/main/u/ufw/python-ufw_0.34~rc-0ubuntu2_all.deb Size: 41204 MD5sum: 36751d86c7a03d2efe71ea21e9e48a1c SHA1: de1bf2b8b495a769fa4f8d6c740b824cbbfd3843 SHA256: 78f5e3404e708e9d934d234a2abaaca81fd13f97e0569992c622b6c47d35b22e Description: Uncomplicated FireWall Python modules Homepage: https://launchpad.net/ufw Python-Version: 2.7 Description-md5: 11dfd1523d9c3257254c0e8246d196d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-unit Priority: optional Section: python Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Alexandre Fayolle Architecture: all Version: 1.4.1-16.1 Depends: python, python-tk Filename: pool/main/p/python-unit/python-unit_1.4.1-16.1_all.deb Size: 30338 MD5sum: 1252e0f8d9c29da4a617025c2b49a998 SHA1: 379d830dfe3acdb1891b989aa47c5c57d6cb0ad7 SHA256: 1cbeb69544fee49b7ac7091c65a664df0f1c4ee8c3a9b34b6f0e9883d937adff Description: unit test framework for Python Description-md5: 58cc4ca88f71f8bf41dca4fb2d90dfc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-unittest2 Priority: optional Section: python Installed-Size: 372 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: unittest2 Version: 0.5.1-1ubuntu1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/u/unittest2/python-unittest2_0.5.1-1ubuntu1_all.deb Size: 65536 MD5sum: 8e0082e1081f01a7b797d5bdabea3f25 SHA1: d9da5630bfa043a23820dcd75fd6d854ec2d734f SHA256: 59c85b4110e11b3e8cda02991491c76225943196f43f15472434626d6f30eb9a Description: backport of the enhanced unittest testing framework in Python 2.7 Homepage: http://pypi.python.org/pypi/unittest2 Description-md5: 025e3b1c5f74cca0836409ddddebed9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-urlgrabber Priority: optional Section: python Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Kevin Coyner Architecture: all Source: urlgrabber Version: 3.9.1-4ubuntu3 Provides: python2.7-urlgrabber Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pycurl Filename: pool/main/u/urlgrabber/python-urlgrabber_3.9.1-4ubuntu3_all.deb Size: 42254 MD5sum: 6c86a4c6bc6da645634444971dd3b92c SHA1: 8d8c3de13f48296d41546e72d7329a30d00f3e03 SHA256: 72f27d32e7b1229582339f1a335cf3756744f180d22f20fdef4f9e926dfb3f7b Description: A high-level cross-protocol url-grabber Homepage: http://urlgrabber.baseurl.org/ Description-md5: a79dafd1b77e40ffbff78d8074bc2a27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python-urllib3 Priority: optional Section: python Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.7.1-1build1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python-six Recommends: ca-certificates Filename: pool/main/p/python-urllib3/python-urllib3_1.7.1-1build1_all.deb Size: 38858 MD5sum: 23af9e091554d9fac8f3f6d150d34457 SHA1: 5ee32e595786fd80427b8885b27bbaae35aee642 SHA256: e14d5b4dc17b4a0d90912e9e5a24670aec90acbf4627755a285a031f7ec1d5b4 Description: HTTP library with thread-safe connection pooling for Python Homepage: http://urllib3.readthedocs.org Description-md5: 5bc537398a5d9a54ae5112ec386ef12b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-gnome-desktop Package: python-utidylib Priority: optional Section: web Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: utidylib Version: 0.2-9build1 Provides: python2.7-utidylib Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libtidy-0.99-0 (>= 20051018) Filename: pool/main/u/utidylib/python-utidylib_0.2-9build1_all.deb Size: 8754 MD5sum: ed4b7700e775f619d1dc2598c03c7d0a SHA1: b00e0b8adb0ff5c62a5ec91b0a9abd7497657e99 SHA256: c56a0be1be52d005c6feb3b554d651e576286f57a380e83702dd4fdae25a4074 Description: Python wrapper for TidyLib Homepage: http://utidylib.berlios.de/ Description-md5: e1fa5e32f4f40b339aaf299f0b2ff899 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome Package: python-vte Priority: optional Section: python Installed-Size: 485 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: vte Version: 1:0.28.2-5ubuntu1 Depends: libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.26.0), libgtk2.0-0 (>= 2.20.0), libpango1.0-0 (>= 1.22.0), libvte9 (>= 1:0.28.0-1ubuntu1~), python2.7, python (>= 2.7), python (<< 2.8), python-gtk2, libvte-common (= 1:0.28.2-5ubuntu1) Breaks: gdebi (<< 0.6.1), python-apt (<< 0.8.0~exp2) Filename: pool/main/v/vte/python-vte_0.28.2-5ubuntu1_amd64.deb Size: 21726 MD5sum: a0b9e19f09fa001ca3e75534a5298c51 SHA1: 93c6d9f586df18802fb3d5b0d7abe246d20bf4f3 SHA256: 675800a3e52640a216126de9afeceb3b58952662bc384fdc693137d35100253a Description: Python bindings for the VTE widget set Description-md5: 34624e87ab07023c8425f489e6c5ea51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-wadllib Priority: optional Section: python Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Stefano Rivera Architecture: all Version: 1.3.2-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources, python-lazr.uri Filename: pool/main/p/python-wadllib/python-wadllib_1.3.2-2build1_all.deb Size: 28306 MD5sum: 39492d11a083524a8940ea2229631233 SHA1: 702d2fcb4693111f30e171bfacb8aa86ee1a94c1 SHA256: 57f087d25047e6c1d06fdfea12e9a82bb7eb0890cb392e5b9b1963431da12c93 Description: Python library for navigating WADL files Homepage: https://launchpad.net/wadllib Description-md5: 94acc6bc8eabbfa98c553d39aa770f65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-waitress Priority: optional Section: python Installed-Size: 350 Maintainer: Ubuntu Developers Original-Maintainer: Andrew Shadura Architecture: all Source: waitress Version: 0.8.8-1ubuntu3 Provides: python2.7-waitress Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~), python-pkg-resources, python Suggests: python-waitress-doc Filename: pool/main/w/waitress/python-waitress_0.8.8-1ubuntu3_all.deb Size: 52298 MD5sum: 684a0b7c8d8fa234c4fc289afc8914f6 SHA1: 004060dfb2f4324177cfdd168f8fe7067abdff02 SHA256: 81ad6af11fc84949f0204674d327430c01be357c6f5d46a0f4071855bef1e34f Description: production-quality pure-Python WSGI server Homepage: http://github.com/Pylons/waitress Description-md5: 0b46c172c754b08d0f702b816ebc5022 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-waitress-doc Priority: optional Section: doc Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Andrew Shadura Architecture: all Source: waitress Version: 0.8.8-1ubuntu3 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/w/waitress/python-waitress-doc_0.8.8-1ubuntu3_all.deb Size: 41354 MD5sum: 1e4228bccb36f023615121847e12c7b8 SHA1: ba051f15066606663a01e5ce3f270271f5998c1a SHA256: 6969d3ac3f485a7a2f79d22d056eb045b8156a0ecb00fa9529ed185fc9edd66f Description: production-quality pure-Python WSGI server (documentation) Homepage: http://github.com/Pylons/waitress Description-md5: 908cd9218dae333abc8140078e186e70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-warlock Priority: optional Section: python Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.1.0-0ubuntu2 Depends: python-json-patch (>= 0.10), python-jsonschema (>= 0.7), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-jsonpatch, python-six Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-warlock/python-warlock_1.1.0-0ubuntu2_all.deb Size: 5278 MD5sum: b21f1f41e9e0ff96112656890c98f314 SHA1: 01216af7d95158e188a09c63b5746686a9478091 SHA256: 5b6c5484d9a75cf6a8e98c1ebb265e43ce5fb498f6f91f3989a72f771afcde0b Description: object model built on top of JSON schema - python 2.x Homepage: http://pypi.python.org/pypi/warlock Description-md5: 1f382ac26809f3bcecf157d0686d6a25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-webob Priority: extra Section: python Installed-Size: 323 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.3.1-1 Depends: python, python:any (>= 2.7.5-5~), python:any (<< 2.8) Suggests: python-webob-doc Breaks: python-pylons (<< 1.0.1) Filename: pool/main/p/python-webob/python-webob_1.3.1-1_all.deb Size: 57868 MD5sum: 703bfe383914afa08877b2a861b15508 SHA1: 5733b44d78f21ae774fd984ae54e9afa90c80d2d SHA256: 9887a0535d2c944e1468d290fcd0cde276815c842d835e2e989ae5a092e39c1e Description: Python module providing WSGI request and response objects (Python 2) Homepage: http://webob.org/ Description-md5: 9562ee6d8258fe717c5757a7a6b296e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-webob-doc Priority: optional Section: doc Installed-Size: 1260 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-webob Version: 1.3.1-1 Depends: libjs-sphinxdoc (>= 1.0) Suggests: libjs-jquery Filename: pool/main/p/python-webob/python-webob-doc_1.3.1-1_all.deb Size: 155118 MD5sum: b98399b50d8c09d63f0a784b70a1d5f5 SHA1: 6daea5b6e2fbee66372f97b26297e8fc9bc95f81 SHA256: 842bd18008a998ff545f49e3a44c3ccb198e75beec28a6492875cf738e90f196 Description: Python module providing WSGI request and response objects (documentation) Homepage: http://webob.org/ Description-md5: f7d9b0aca34b886cd0c10efb295d179b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-webtest Priority: optional Section: python Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: webtest Version: 2.0.14-1ubuntu1 Depends: python-six, python:any (>= 2.7.5-5~), python:any (<< 2.8), python-waitress (>= 0.8.5), python-bs4, python-webob (>= 1.2), python-paste (>= 1.7.1), python-pastedeploy Suggests: python-webtest-doc, python-pyquery, python-lxml Filename: pool/main/w/webtest/python-webtest_2.0.14-1ubuntu1_all.deb Size: 26010 MD5sum: 4291bf89503e270abfed8a8850a8210f SHA1: 9ef335bf094bec95bbd20ce4f11618c52f37dbca SHA256: 246a95a3472a58ee592a64301611b3c1dafbecf6b248d36c6ea9dc356f95dd6b Description: wraps any WSGI application and makes it easy to test Homepage: http://pythonpaste.org/webtest/ Description-md5: 748305ea714e102034d24647b4dcc088 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-webtest-doc Priority: optional Section: doc Installed-Size: 749 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: webtest Version: 2.0.14-1ubuntu1 Replaces: python-webtest (<< 2.0.10-2) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-webtest (<< 2.0.10-2) Filename: pool/main/w/webtest/python-webtest-doc_2.0.14-1ubuntu1_all.deb Size: 71632 MD5sum: c1b2f00413a1dc22b91ab485c3e227f2 SHA1: 85e197cd49c62f3fd6c0d57477fbb9a15b578384 SHA256: d1f0b86251c02fe9365cebf2e1edd864bfb735e4db79c886a967a8d24fff322e Description: wraps any WSGI application and makes it easy to test Homepage: http://pythonpaste.org/webtest/ Description-md5: 748305ea714e102034d24647b4dcc088 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-werkzeug Priority: optional Section: python Installed-Size: 1178 Maintainer: Ubuntu Developers Original-Maintainer: Noah Slater Architecture: all Version: 0.9.4+dfsg-1.1ubuntu1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), libjs-jquery Recommends: python-simplejson | python (>= 2.6), python-openssl, python-pyinotify Suggests: ipython, python-genshi, python-pkg-resources, python-lxml, python-greenlet, python-redis, python-pylibmc | python-memcache, python-werkzeug-doc Filename: pool/main/p/python-werkzeug/python-werkzeug_0.9.4+dfsg-1.1ubuntu1_all.deb Size: 236038 MD5sum: 49c946f895a2378e5a45bb922627568f SHA1: 84a65ef447e419c895b984d301deddfaea777788 SHA256: 5879960deb27ee98c3a1296585e088bb19febf52534d22c6f831491b3c472100 Description: collection of utilities for WSGI applications Homepage: http://werkzeug.pocoo.org/ Description-md5: bc8efbff7e3db3c63971edb088df7f93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-werkzeug-doc Priority: extra Section: doc Installed-Size: 2645 Maintainer: Ubuntu Developers Original-Maintainer: Noah Slater Architecture: all Source: python-werkzeug Version: 0.9.4+dfsg-1.1ubuntu1 Replaces: python-werkzeug (<< 0.9.3+dfsg-2) Depends: libjs-sphinxdoc (>= 1.0) Conflicts: python-werkzeug (<< 0.9.3+dfsg-2) Filename: pool/main/p/python-werkzeug/python-werkzeug-doc_0.9.4+dfsg-1.1ubuntu1_all.deb Size: 869082 MD5sum: f34cf53157d99bc43b6ce8ea5c7961a9 SHA1: 2d57f7de47f1f52dfcea00a2a37454c0dc281e77 SHA256: e962efb740b0faabbeeb774e87189d9a95484f484c71c48e361878b166aaa3a0 Description: documentation for the werkzeug Python library Homepage: http://werkzeug.pocoo.org/ Description-md5: 7a4c0d9403c12b1d867782c7500e2fb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-wnck Priority: optional Section: python Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: amd64 Source: gnome-python-desktop Version: 2.32.0+dfsg-3 Replaces: python-gnome2-desktop (<< 2.24.0-2) Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.8.0), libwnck22 (>= 1:2.22), python (>= 2.7), python (<< 2.8), python-gtk2 Filename: pool/main/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-3_amd64.deb Size: 23162 MD5sum: 47462820b6dfe6c20abb69fed1e6aadc SHA1: 8e51d8fd972908d54a9c340cebc74ccfd79c99cd SHA256: dcc6be5a9c67a326e74bdc1cb61d55eb93d8780338913c03a977d1384f56befa Description: Python bindings for the WNCK library Description-md5: 58e159b90a099ee004bf6cf1d9c51633 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-wsme Priority: optional Section: python Installed-Size: 367 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.6-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-six, python-simplegeneric, python-webob, python-ipaddr Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-wsme/python-wsme_0.6-0ubuntu1_all.deb Size: 56894 MD5sum: 400b5bf513f6c7754e56fad1ec833b4b SHA1: 53d1fa8cda29884945b17c34ed29c67cfeb92414 SHA256: e032625308cb02c48367092b4786925a01aba4178c7e7a6bf987a525cd9d4d3d Description: Web Services Made Easy makes it easy to implement multi-protocol webservices Homepage: http://pythonhosted.org/WSME/ Description-md5: 23b6c3f9854b18ce1020aeb352a37fff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-xapian Priority: optional Section: python Installed-Size: 1332 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: amd64 Source: xapian-bindings Version: 1.2.16-2ubuntu1 Provides: python2.7-xapian Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libxapian22 (>= 1.2.16) Suggests: xapian-doc Filename: pool/main/x/xapian-bindings/python-xapian_1.2.16-2ubuntu1_amd64.deb Size: 207738 MD5sum: d65335284f66257f758a44acf17ccf4e SHA1: 155753c79b99053e832657960a2636294c77534f SHA256: 7c1c3f4c92b0780214ab68ab8fcef1025d0b13abb7281e7a7c07a9a86730598e Description: Xapian search engine interface for Python Homepage: http://xapian.org/ Description-md5: e2495f28fd3fba43201c82e444852920 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-xappy Priority: optional Section: python Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Smedegaard Architecture: all Source: xappy Version: 0.5-5 Provides: python2.7-xappy Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8), python-xapian Filename: pool/main/x/xappy/python-xappy_0.5-5_all.deb Size: 47920 MD5sum: 4fd1bc79a2982e78ab9a0fcc8ef86011 SHA1: 0ea87328fa2a4b35844fc34b69718397cd83ec2c SHA256: 48abba3d33055fbcefdce7879563526654dd4c168f707c98fe81ff4455794cbd Description: easy-to-use interface to the Xapian search engine Homepage: http://xappy.org/ Description-md5: acf756054f2b1e49abc021b3c84fe7ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-xattr Priority: optional Section: python Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: amd64 Version: 0.6.4-2build1 Provides: python-pyxattr, python2.7-xattr Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3), python-pkg-resources Conflicts: python-pyxattr Filename: pool/main/p/python-xattr/python-xattr_0.6.4-2build1_amd64.deb Size: 12460 MD5sum: 13e8b36ef4267ea8b5497cee30fe99b1 SHA1: 29b3e81da8034f00602dc2a97b524c34151596e0 SHA256: f72f5288c3266f023c802d0478278f2e26605044508504dfe25ddfce5de12b30 Description: module for manipulating filesystem extended attributes Homepage: http://www.undefined.org/python/ Description-md5: b5897b5090f44c236c7474c32b1eb2b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-xcbgen Priority: optional Section: python Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: XCB Developers Architecture: all Source: xcb-proto Version: 1.10-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/x/xcb-proto/python-xcbgen_1.10-1_all.deb Size: 11100 MD5sum: 2245f0e2a19fe35731ae38f9111af529 SHA1: ea9d6ce38d5cfbdb0ce3ca76fab2dd6704764769 SHA256: 885b9be7ffe7464046c22ab36c0e7246d8eaebc348899f233939c4975c5b0d31 Description: X C Binding - protocol binding generator Multi-Arch: foreign Homepage: http://xcb.freedesktop.org Description-md5: f8f8e1ca395f0429f7a796d43e99ab7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-xdg Priority: optional Section: python Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyxdg Version: 0.25-4 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/pyxdg/python-xdg_0.25-4_all.deb Size: 31398 MD5sum: ae7887be1f333533ad1fc7830b1ac24b SHA1: 794c54832a8a0a86c06646acb5e5b26f36cebbe3 SHA256: cd6bb3ff772353dbc2f2b0e6d00b331a3c2779ae6b525f13ed3f0245a8ce48d9 Description: Python 2 library to access freedesktop.org standards Homepage: http://www.freedesktop.org/wiki/Software/pyxdg Description-md5: 207fa0b47cf9e6e4652f4db6ceb58ee7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-xmpp Priority: optional Section: python Installed-Size: 4487 Maintainer: Ubuntu Developers Original-Maintainer: Alexey Nezhdanov Architecture: all Version: 0.4.1-cvs20080505.3build1 Replaces: python2.3-xmpp, python2.4-xmpp Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-dnspython | python-dnspython Conflicts: jabber-irc (<< 0.2), python2.3-xmpp, python2.4-xmpp Filename: pool/main/p/python-xmpp/python-xmpp_0.4.1-cvs20080505.3build1_all.deb Size: 251424 MD5sum: e2a242caf1987a811d1832a07d2d7229 SHA1: 3679d43af5a5fdfa3c386aae60ce37268cf025f8 SHA256: 318f6b07c23a933f05a7a70335c0009e49979fd7ce4e420ce07dc97e1ea464c1 Description: Python library for communication with XMPP (Jabber) servers Description-md5: e3950480fe48cbeb66024e9275785e7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-yaml Priority: optional Section: python Installed-Size: 462 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyyaml Version: 3.10-4build4 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.14), libyaml-0-2 Filename: pool/main/p/pyyaml/python-yaml_3.10-4build4_amd64.deb Size: 102000 MD5sum: e4763458ff10f98655c1c6637c1d14c0 SHA1: b7844d052b70649d04597bb35e6b55fb081a9a80 SHA256: 06e9645413171537a6b31dac36924086eb71efb94d4e9916265ef3a58bd4aa9f Description: YAML parser and emitter for Python Homepage: http://pyyaml.org/ Description-md5: 82d5290a45a0b6b13c828ddb2dd65a9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-yaml-dbg Priority: extra Section: python Installed-Size: 263 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyyaml Version: 3.10-4build4 Depends: python-yaml (= 3.10-4build4), python-dbg, libc6 (>= 2.14), libyaml-0-2 Filename: pool/main/p/pyyaml/python-yaml-dbg_3.10-4build4_amd64.deb Size: 76910 MD5sum: 9702743c098e1fc1eb97f1fd3b961394 SHA1: 8030cb251fa283113cc02594e9245eb3f7c35c4a SHA256: b6350e05a702be900455bb418d3aa27b08ba7c3f0693144c6d1237bac7bc6ca5 Description: YAML parser and emitter for Python (debug build) Homepage: http://pyyaml.org/ Description-md5: 5843f2b294ec30ef86a6df5e97ab9970 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-zeitgeist Priority: optional Section: python Installed-Size: 173 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: all Source: zeitgeist Version: 0.9.14-0ubuntu4 Replaces: zeitgeist-core (<< 0.8.99~alpha1) Depends: python-dbus, python-gobject (>= 2.16.0), python-xdg, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: zeitgeist-core (<< 0.8.99~alpha1) Filename: pool/main/z/zeitgeist/python-zeitgeist_0.9.14-0ubuntu4_all.deb Size: 30890 MD5sum: dae06ab9b30885d4e78431e63f687c98 SHA1: 874d216b86764d6c17d1944b9f2bcd1795ed8604 SHA256: 4e3d2c9c72041464e172273b598d1a5c5caa65e214bc2b1c3e1414bfb15e38f8 Description: event logging framework - Python bindings Homepage: http://zeitgeist-project.com/ Description-md5: a8bbce9f47542f7c0e66ec0932d99fef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-zope.interface Priority: extra Section: python Installed-Size: 647 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: amd64 Source: zope.interface Version: 4.0.5-1ubuntu4 Replaces: python-zope, python-zopeinterface Provides: python-zope, python-zopeinterface, python2.7-zope.interface Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources, libc6 (>= 2.2.5) Conflicts: python-zope, python-zopeinterface, zope3 Filename: pool/main/z/zope.interface/python-zope.interface_4.0.5-1ubuntu4_amd64.deb Size: 79582 MD5sum: 74638361153d4f40914cdfb23a2d1523 SHA1: d2c68b85c505b94d8aad71751d83b3858612c5cf SHA256: 41096e807dd2fd908d74ab47fc0004f855a4bd31683a10cd2c82d636e25a5bcf Description: Interfaces for Python Homepage: http://pypi.python.org/pypi/zope.interface Description-md5: 805f005a76a0fe3fbb6fb54d05dea254 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-zope.interface-dbg Priority: extra Section: debug Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: amd64 Source: zope.interface Version: 4.0.5-1ubuntu4 Replaces: python-zopeinterface-dbg Provides: python-zopeinterface-dbg Depends: python-zope.interface (= 4.0.5-1ubuntu4), python-dbg, libc6 (>= 2.2.5) Conflicts: python-zopeinterface-dbg Filename: pool/main/z/zope.interface/python-zope.interface-dbg_4.0.5-1ubuntu4_amd64.deb Size: 29942 MD5sum: 960a20d350c7a0a5acf861c696c26ccb SHA1: f0dd320e2e0bf06dda4f0281e6c72614da09b029 SHA256: 79023fa26db5f19b8a1f52ef79accb724f1b7dda25497c0fa73ac7e93c9ffcfb Description: Interfaces for Python (debug extension) Homepage: http://pypi.python.org/pypi/zope.interface Description-md5: d25d319ea745ca9c4742a684c2c321f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python2.7 Priority: optional Section: python Installed-Size: 347 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Version: 2.7.6-8 Replaces: python-profiler (<= 2.7.1-2), python2.7-minimal (<< 2.7.3-7~) Depends: python2.7-minimal (= 2.7.6-8), libpython2.7-stdlib (= 2.7.6-8), mime-support Suggests: python2.7-doc, binutils Conflicts: python-profiler (<= 2.7.1-2) Breaks: python-virtualenv (<< 1.7.1.2-2~), vim-athena (<< 2:7.3.547-4), vim-gnome (<< 2:7.3.547-4), vim-gtk (<< 2:7.3.547-4), vim-nox (<< 2:7.3.547-4) Filename: pool/main/p/python2.7/python2.7_2.7.6-8_amd64.deb Size: 196794 MD5sum: dce422a6768dce6a0426699c114725fd SHA1: 7e4bc398ee8f3acfa3245eacaeb53f525ac04219 SHA256: 9c5f8d3b9a9f7a86414650439fe42842c6d0809f9c5f13fe4b5c19589063893f Description: Interactive high-level object-oriented language (version 2.7) Multi-Arch: allowed Description-md5: 28620f1beffd6b598125304a83bfcb87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python2.7-dbg Priority: extra Section: debug Installed-Size: 26966 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python2.7 Version: 2.7.6-8 Depends: python2.7 (= 2.7.6-8), libpython2.7-dbg (= 2.7.6-8), libc6 (>= 2.14), zlib1g (>= 1:1.2.0) Suggests: python-gdbm-dbg, python-tk-dbg Filename: pool/main/p/python2.7/python2.7-dbg_2.7.6-8_amd64.deb Size: 6387276 MD5sum: 61af83bb21b15fbf71c2ab91643d0acd SHA1: d82a3139cdfd9890aec3fa688b7ecc6ebbae75e1 SHA256: 849b5216f9011eddf9b8ca8e39551460e54024b9f4ae645d53a117e23571ca47 Description: Debug Build of the Python Interpreter (version 2.7) Multi-Arch: allowed Description-md5: 3220dd61a40cd6c408ecc3fbbcb8ef1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python2.7-dev Priority: optional Section: python Installed-Size: 303 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.7-3) Depends: python2.7 (= 2.7.6-8), libpython2.7-dev (= 2.7.6-8), libpython2.7 (= 2.7.6-8), libexpat1-dev Recommends: libc6-dev | libc-dev Filename: pool/main/p/python2.7/python2.7-dev_2.7.6-8_amd64.deb Size: 269094 MD5sum: e22573db33814ea77d60a7010529d2af SHA1: c2d151094d94feec8a945b677ff86fb16bf67d79 SHA256: 2d7e9b4de0e83728251b57b383a62d017125198d1c00bf0307482f1abfbe0678 Description: Header files and a static library for Python (v2.7) Multi-Arch: allowed Description-md5: 0f13a410a5bbc68affef1492eee5d8e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python2.7-doc Priority: optional Section: doc Installed-Size: 31023 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python2.7 Version: 2.7.6-8 Depends: libjs-jquery Suggests: python2.7 Filename: pool/main/p/python2.7/python2.7-doc_2.7.6-8_all.deb Size: 3860600 MD5sum: 76f955ab5567d2c4cd73fcc3cbf7845a SHA1: b45cbc99a076c7bc3da198bf77ba06a4593d7704 SHA256: 633633f1a70581b8daf0c2c8210c4ecaae388b60c399ce482cbd4540f45d7371 Description: Documentation for the high-level object-oriented language Python (v2.7) Description-md5: 427bb0bb2c7ff8d97e3a833c92820507 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python2.7-examples Priority: optional Section: python Installed-Size: 2693 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python2.7 Version: 2.7.6-8 Depends: python2.7 (>= 2.7.6-8) Filename: pool/main/p/python2.7/python2.7-examples_2.7.6-8_all.deb Size: 549054 MD5sum: 94a57e79cf7589e06a079ff3a9f2bfef SHA1: 66e16a66f67bf4451476bfb69fe2870484569f38 SHA256: 9fe550c64693992ab9acdc29ea1b8c1d5096ca2bc684c947e8d9370a3dfd4fee Description: Examples for the Python language (v2.7) Description-md5: 4f24bb2b1825659042443224cf985199 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python2.7-minimal Priority: optional Section: python Installed-Size: 3400 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.7.1~rc1-2~) Depends: libpython2.7-minimal (= 2.7.6-8), zlib1g (>= 1:1.2.0) Pre-Depends: libc6 (>= 2.15) Recommends: python2.7 Suggests: binfmt-support Conflicts: binfmt-support (<< 1.1.2) Filename: pool/main/p/python2.7/python2.7-minimal_2.7.6-8_amd64.deb Size: 1190086 MD5sum: 0c868fc8bfcf889236abb14531a2384f SHA1: f9f1ee3bd965096e26f947b609ee51a8a5adb453 SHA256: 7c7791171a5ad67c158f8bf0572b851fb7da8a21f139ce43a2f0d18af2fb73e9 Description: Minimal subset of the Python language (version 2.7) Multi-Arch: allowed Description-md5: 4e3d580f5374e0e392e97c8e6fedf594 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3 Priority: important Section: python Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Replaces: python3-minimal (<< 3.1.2-2) Provides: python3-profiler Depends: python3.4 (>= 3.4.0-0~), python3-minimal (= 3.4.0-0ubuntu2), libpython3-stdlib (= 3.4.0-0ubuntu2), dh-python Suggests: python3-doc (>= 3.4.0-0ubuntu2), python3-tk (>= 3.4.0-0ubuntu2) Filename: pool/main/p/python3-defaults/python3_3.4.0-0ubuntu2_amd64.deb Size: 8666 MD5sum: bfb7da0b87a977d7c8810d41aa151ba0 SHA1: 63e38e68c45e194311ee68d9d81cb900283f4c5b SHA256: e1856a097784129b4a52c31c348fadd4eb82097762bcd652179946ebfab4592b Description: interactive high-level object-oriented language (default python3 version) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: d2d5b9ee5047a791224f1b8f4bc73d3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: python3-all Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3 (= 3.4.0-0ubuntu2), python3.4 Filename: pool/main/p/python3-defaults/python3-all_3.4.0-0ubuntu2_amd64.deb Size: 978 MD5sum: 4504a8d907556cae2e1af355c1c6a818 SHA1: 8e2b2a0c264f3b667bbcec7eea91c29feba000fb SHA256: 4572f6ef6c53102b1e98d88e5b29d4a15f84ee181c33adf1648103a13b1bf7bf Description: package depending on all supported Python 3 runtime versions Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: ff91293ca67712880bebe9476a6a68d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-all-dbg Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3 (= 3.4.0-0ubuntu2), libpython3-all-dbg (= 3.4.0-0ubuntu2), python3-all (= 3.4.0-0ubuntu2), python3-dbg (= 3.4.0-0ubuntu2), python3.4-dbg Filename: pool/main/p/python3-defaults/python3-all-dbg_3.4.0-0ubuntu2_amd64.deb Size: 1002 MD5sum: 777314fa9c0dc56d056103266a5529c6 SHA1: 0992b71a827027a4e84ff406e8ebef824bfa420b SHA256: c87114a5563d19afcf3b0710b6b74b7b943a114eb500338d815e96a3299af677 Description: package depending on all supported Python 3 debugging packages Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: e25c0d1b8ce31e77e172102ffde36d4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-all-dev Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3 (= 3.4.0-0ubuntu2), libpython3-all-dev (= 3.4.0-0ubuntu2), python3-all (= 3.4.0-0ubuntu2), python3-dev (= 3.4.0-0ubuntu2), python3.4-dev Filename: pool/main/p/python3-defaults/python3-all-dev_3.4.0-0ubuntu2_amd64.deb Size: 1000 MD5sum: d34159bcf2b5256a11675ad543750a27 SHA1: 6078eab12c0d131de580aa8b527e4ec857572131 SHA256: b1006ddf42d09d28144c552c7962a89227fe1f1c06cf673eb4f1a2d30162f0d9 Description: package depending on all supported Python 3 development packages Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 382395d0be4d336f0a3e498b5d6678c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-amqp Priority: extra Section: python Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-amqp Version: 1.3.3-1ubuntu1 Depends: python3:any (>= 3.3.2-2~) Suggests: python-amqp-doc Filename: pool/main/p/python-amqp/python3-amqp_1.3.3-1ubuntu1_all.deb Size: 35276 MD5sum: bc3fe18d205d623b1ff80349046a6a97 SHA1: c42839dbc7ada555913fab0998bd10790d93fc01 SHA256: 6ddbbbe863434057dc5bef44f9b4b2b7911cac7d448b9187977414508cc06e87 Description: Low-level AMQP client (Python3 version) Homepage: https://github.com/celery/py-amqp Description-md5: 70c977b192b4a186946192a7322dcd31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-apparmor Priority: extra Section: python Installed-Size: 431 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Replaces: apparmor-easyprof (<< 2.8.95~2385-0ubuntu1) Depends: python3:any (>= 3.3.2-2~), python3-libapparmor, python3-pkg-resources Breaks: apparmor-easyprof (<< 2.8.95~2385-0ubuntu1) Filename: pool/main/a/apparmor/python3-apparmor_2.8.95~2430-0ubuntu5_amd64.deb Size: 60966 MD5sum: 134235c9046ad0fb36900401fbfd6135 SHA1: 061022d24a82127bf5312053ee8e7255c3004f47 SHA256: 25fbc375cb958341ed062f585346464a7d571fdb90a990fadce818490ff4ac28 Description: AppArmor Python3 utility library Homepage: http://apparmor.net/ Description-md5: 3d7a4b621c715e220cd49b284ddd5246 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-apparmor-click Priority: optional Section: admin Installed-Size: 72 Maintainer: Steve Beattie Architecture: all Source: click-apparmor Version: 0.2 Depends: python3:any (>= 3.3.2-2~), apparmor-easyprof, apparmor-easyprof-ubuntu (>= 1.0.17), libnih-dbus1 Filename: pool/main/c/click-apparmor/python3-apparmor-click_0.2_all.deb Size: 10346 MD5sum: 17b8c55bde14d3f40339b35bdc3ce8e6 SHA1: 97966a3f1e286700d6a07da8c6f6ae572bb9e428 SHA256: 7c81ce4ee237646b20966f61c5d0e3cae289ddfed07191b3fac68360a9106b35 Description: Click manifest to AppArmor easyprof conversion tools Description-md5: 753c20b93f7c33ee3e7c64c06bf058bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-apport Priority: optional Section: python Installed-Size: 523 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python3:any (>= 3.3.2-2~), python3-apt (>= 0.7.9), python3-problem-report (>= 0.94), lsb-release Recommends: apport Suggests: python3-launchpadlib Filename: pool/main/a/apport/python3-apport_2.14.1-0ubuntu3_all.deb Size: 74962 MD5sum: a4637905ce63b61ab8e1502446228f18 SHA1: 32e4ae93c854c5998be4aaefcb6478721153b3c2 SHA256: a4a3b1e30b85fac0ec373a7cec1272cc05933b71949ea6b6e9becc04db0ddea7 Description: Python 3 library for Apport crash report handling Homepage: https://wiki.ubuntu.com/Apport Description-md5: 90fc3702a69ad06599a95a46ceb5778a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-apt Priority: standard Section: python Installed-Size: 643 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: amd64 Source: python-apt Version: 0.9.3.5 Replaces: python-apt (<< 0.7.98+nmu1) Provides: python3.4-apt Depends: python3 (<< 3.5), python3 (>= 3.4~), libapt-inst1.5 (>= 0.8.11), libapt-pkg4.12 (>= 0.9.11), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), python-apt-common Recommends: lsb-release, iso-codes Suggests: python3-apt-dbg, python-apt-doc Breaks: python-apt (<< 0.7.98+nmu1) Filename: pool/main/p/python-apt/python3-apt_0.9.3.5_amd64.deb Size: 138704 MD5sum: 6ae5cb2674e4f8b6dcf08d783eb96e06 SHA1: c1e2a7c75f55ffa03ed2824a2f6251bfe1d4be8f SHA256: cea5425c97ab4cc698315f5975108e1dfa13a39ca60351681c77f7a0d80c21bf Description: Python 3 interface to libapt-pkg Multi-Arch: allowed Description-md5: 4e7bf010b1b89e36309ea2f4b7005936 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python3-apt-dbg Priority: extra Section: debug Installed-Size: 5596 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: amd64 Source: python-apt Version: 0.9.3.5 Replaces: python-apt (<< 0.7.98+nmu1) Depends: python3-dbg, python3-apt (= 0.9.3.5), libapt-inst1.5 (>= 0.8.11), libapt-pkg4.12 (>= 0.9.11), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Breaks: python-apt (<< 0.7.98+nmu1) Filename: pool/main/p/python-apt/python3-apt-dbg_0.9.3.5_amd64.deb Size: 2329276 MD5sum: bbd81241ac1b8e8cec38327dba57890a SHA1: 8b78b4a67bb6e5327a9bddfd90db68a035edd2f1 SHA256: 6c4fcaec2b2d11ad2f8c1f1096328784b1480cf8e9eb1c5925b530c66a01396f Description: Python 3 interface to libapt-pkg (debug extension) Multi-Arch: allowed Description-md5: 9d43d2b6dae33ea4f6ee571da79dbd51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-aptdaemon Priority: extra Section: python Installed-Size: 450 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Depends: python3:any (>= 3.3.2-2~), gir1.2-glib-2.0, python3-apt (>= 0.8.5~ubuntu1), python3-defer (>= 1.0.6), python3-dbus, python3-gi, python3-pkg-resources, iso-codes Recommends: aptdaemon Filename: pool/main/a/aptdaemon/python3-aptdaemon_1.1.1-1ubuntu5_all.deb Size: 66612 MD5sum: 98d66d4504a4a041eaf74e1346f6334f SHA1: 1121b3516a8f08233cb587e17e1aa459f0b6f375 SHA256: d94325a01424f27919617801efd88c744e63206383dfb13c59badb698d5a923d Description: Python 3 module for the server and client of aptdaemon Homepage: https://launchpad.net/aptdaemon Description-md5: 91f4993d2c2013402824b4c41bf6d4fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-aptdaemon.gtk3widgets Priority: extra Section: python Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Replaces: python-aptdaemon-gtk (<< 0.41+bzr582-0ubuntu1) Depends: python3:any (>= 3.3.2-2~), python3-aptdaemon (= 1.1.1-1ubuntu5), python3-gi, gir1.2-gtk-3.0, gir1.2-vte-2.90, aptdaemon-data Conflicts: python-aptdaemon-gtk (<< 0.41+bzr582-0ubuntu1) Filename: pool/main/a/aptdaemon/python3-aptdaemon.gtk3widgets_1.1.1-1ubuntu5_all.deb Size: 13782 MD5sum: 2853d4e6d6ae08096677cdc182ea368c SHA1: 0c152773b9f4f301f16793b630c221817aa19d87 SHA256: 98f99fcbe680217de4571716de07e0f00fed80f9aa4c3dbdca1318387c2d1db1 Description: Python 3 GTK+ 3 widgets to run an aptdaemon client Homepage: https://launchpad.net/aptdaemon Description-md5: c6ba54cbccd863401bb959f2a11871e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-aptdaemon.pkcompat Priority: extra Section: python Installed-Size: 270 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Replaces: python-aptdaemon.pkcompat Provides: packagekit-system-interface Depends: python3:any (>= 3.3.2-2~), python3-aptdaemon (= 1.1.1-1ubuntu5), gir1.2-packagekitglib-1.0 (>= 0.8.9) Conflicts: packagekit, python-aptdaemon.pkcompat Breaks: libpackagekit-glib2-14, libpackagekit-qt2-2 Filename: pool/main/a/aptdaemon/python3-aptdaemon.pkcompat_1.1.1-1ubuntu5_all.deb Size: 32340 MD5sum: dc2ac8b63839f8ca2d1ba701f9c0174f SHA1: 1ebab816665626e77b59cc2df1ebe1177af34aab SHA256: 52b10e2e946e59c984609a1fdb8d38144bc279d89af49ab87233df4ac4dfd850 Description: PackageKit compatibilty for AptDaemon Homepage: https://launchpad.net/aptdaemon Description-md5: 007bb0fc47b4bb0862e902010206e767 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-aptdaemon.test Priority: extra Section: python Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Replaces: python-aptdaemon.test Depends: python3:any (>= 3.3.2-2~), python3-aptdaemon (= 1.1.1-1ubuntu5) Breaks: python-aptdaemon.test Filename: pool/main/a/aptdaemon/python3-aptdaemon.test_1.1.1-1ubuntu5_all.deb Size: 85280 MD5sum: 998000badedd24f68588f88e36599c77 SHA1: 53414aa039577681ad1237a3a8ae6c908fb97184 SHA256: b0e8f576438e57da8c6d6fd9f3212f46635322c4ca06906ec49e743e6ea096e0 Description: Test environment for aptdaemon clients Homepage: https://launchpad.net/aptdaemon Description-md5: 1a901b5468edd109ab5809bbe10ba40d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-astroid Priority: optional Section: python Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: astroid Version: 1.0.1-1 Depends: python3:any (>= 3.3.2-2~), python3-logilab-common (>= 0.60.0) Filename: pool/main/a/astroid/python3-astroid_1.0.1-1_all.deb Size: 48408 MD5sum: 0f273c4ed8e6e1cbf6335d8139f84253 SHA1: a972b9a12c8a329151ee2e8f2590190bbab27492 SHA256: 192c5602345c50a1c4ddc3fd0ce6552a16897cffd1914160746c90431be2796c Description: rebuild a new abstract syntax tree from Python's AST (Python3) Homepage: http://www.astroid.org/ Description-md5: 7c30b05956847c3f30a7c742343d9ff6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-brlapi Priority: extra Section: python Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Source: brltty Version: 5.0-2ubuntu2 Depends: libbrlapi0.6, libc6 (>= 2.14), python3 (>= 3.4~), python3 (<< 3.5) Filename: pool/main/b/brltty/python3-brlapi_5.0-2ubuntu2_amd64.deb Size: 47820 MD5sum: db9c9b2fb722c7384a4bcae58cf3502b SHA1: 019878cd0fb1d2ccaf20af1497b838c968dd2f98 SHA256: 127f765c0ad99b5cdfdefb93530c931249e960735fad2020531d6cbda9affe33 Description: Braille display access via BRLTTY - Python3 bindings Homepage: http://mielke.cc/brltty/ Description-md5: 784bda01ebb606dab5c96c7730448047 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-bs4 Priority: optional Section: python Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: beautifulsoup4 Version: 4.2.1-1ubuntu2 Depends: python3:any (>= 3.3.2-2~) Recommends: python3-chardet, python3-lxml Filename: pool/main/b/beautifulsoup4/python3-bs4_4.2.1-1ubuntu2_all.deb Size: 57952 MD5sum: 8cc995ddef04805be571800d6a2fd7e1 SHA1: 0561ea349a3533d1554295a6b1b5b33333785e34 SHA256: 5e4810e92f017d0c56bbb8de149a0cbb92bc1f0442d8b5152e1932a6698d41a2 Description: error-tolerant HTML parser for Python 3 Homepage: http://www.crummy.com/software/BeautifulSoup Description-md5: fb6bbcbf2610881d02572826329c9b94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-bsddb3 Priority: optional Section: python Installed-Size: 596 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-bsddb3 Version: 6.0.1-1build1 Provides: python3.4-bsddb3 Depends: libc6 (>= 2.14), libdb5.3, python3 (>= 3.4~), python3 (<< 3.5) Suggests: python3-bsddb3-dbg Filename: pool/main/p/python-bsddb3/python3-bsddb3_6.0.1-1build1_amd64.deb Size: 99080 MD5sum: ebd72ce21db5fb2eb9e4b942690d8c3d SHA1: 64364a7141cbc54d49dc33cff6e787c47b033648 SHA256: f4bc0341696ec0df75d4b822647e0260cbf0741f9fad15c390a5f2c229278012 Description: Python interface for Berkeley DB (Python 3.x) Homepage: http://pypi.python.org/pypi/bsddb3/ Description-md5: 6bc553389b7abdd2f792421d6ebe3828 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-bsddb3-dbg Priority: extra Section: python Installed-Size: 912 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-bsddb3 Version: 6.0.1-1build1 Provides: python3.4-bsddb3-dbg Depends: python3-bsddb3 (= 6.0.1-1build1), python3-dbg, libc6 (>= 2.14), libdb5.3 Filename: pool/main/p/python-bsddb3/python3-bsddb3-dbg_6.0.1-1build1_amd64.deb Size: 196176 MD5sum: 037af2664c891980ebecd64f97b6f9e9 SHA1: 2a5ecf3d77da303a641aa2703c083819339ee7e9 SHA256: c000f65c006379435cc8970a5a0ed1e6341219188574a38a0a1598c4e9f87a09 Description: Python interface for Berkeley DB (debug extension, Python 3.x) Homepage: http://pypi.python.org/pypi/bsddb3/ Description-md5: f1ee0a3cbf3f261f26c7b505c601c74a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-bson Priority: optional Section: python Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: amd64 Source: pymongo Version: 2.6.3-1build1 Depends: python3:any (>= 3.3.2-2~) Recommends: python3-bson-ext Filename: pool/main/p/pymongo/python3-bson_2.6.3-1build1_amd64.deb Size: 18432 MD5sum: c01d456d2d78b666e505579fc4f35915 SHA1: e27b9ab4d0568cb6b0e5ff1676f3f02f6d952b4d SHA256: feabdf5ff5235075d26b6321e1d480f65afad0fba8ea5f9a494c027b89f0a830 Description: Python3 implementation of BSON for MongoDB Homepage: http://api.mongodb.org/python/ Description-md5: 6ff36ca063d2514878e6687fccf82dc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-bson-ext Priority: optional Section: python Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: amd64 Source: pymongo Version: 2.6.3-1build1 Depends: python3 (>= 3.3), python3 (<< 3.5), libc6 (>= 2.14), python3-bson (= 2.6.3-1build1) Filename: pool/main/p/pymongo/python3-bson-ext_2.6.3-1build1_amd64.deb Size: 19628 MD5sum: fa4fe7fb61485787af9bf29d19eee5be SHA1: d589aa09e0e9d57d04c4f41aaaf94a03fe343a2b SHA256: 586e73cbaaa5aa13cef50490e22db92fd5234218eeceb85f12d07642340e2923 Description: C-coded extension to the python3-bson package Homepage: http://api.mongodb.org/python/ Description-md5: 7b7798809e28fcb20fef9ed45e267cd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-cairo Priority: optional Section: python Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: py3cairo Version: 1.10.0+dfsg-3ubuntu2 Depends: libc6 (>= 2.14), libcairo2 (>= 1.10.0), python3 (>= 3.4~), python3 (<< 3.5) Filename: pool/main/p/py3cairo/python3-cairo_1.10.0+dfsg-3ubuntu2_amd64.deb Size: 28682 MD5sum: 6a632e5a7b977c49a8caee06993bf2dd SHA1: 940bc65aa7f2795b86b73aec02c64a0b435e17fc SHA256: 8617f76c60be1f0580689576ef0c582c77d4d6d7246223f3ce42b2826a2abb03 Description: Python 3 bindings for the Cairo vector graphics library Homepage: http://cairographics.org/pycairo/ Description-md5: 7c96e67570598ca1d2c2767b4fa875bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-live, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-cairo-dev Priority: optional Section: python Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: py3cairo Version: 1.10.0+dfsg-3ubuntu2 Depends: python3-cairo (>= 1.10.0+dfsg-3ubuntu2) Suggests: python3-cairo-doc Filename: pool/main/p/py3cairo/python3-cairo-dev_1.10.0+dfsg-3ubuntu2_all.deb Size: 6174 MD5sum: 71b2a7bf4417f4cf075292f9638144b6 SHA1: 3206ffb9be64a482d7ea310f70551e14f79d7af9 SHA256: 0de1a94a596de5444ad04a80c05afd8df6867e9aee6eef37f2485d9a44b32995 Description: Python 3 cairo bindings: development files Homepage: http://cairographics.org/pycairo/ Description-md5: 9448e85857bf4457e5f1411296ee07fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-cairo-doc Priority: optional Section: doc Installed-Size: 711 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: py3cairo Version: 1.10.0+dfsg-3ubuntu2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/py3cairo/python3-cairo-doc_1.10.0+dfsg-3ubuntu2_all.deb Size: 86808 MD5sum: 4ae1b9973842950eaffffb0af166d5db SHA1: ae92eb59507d6585d3c8a5b05ef49cb0f339ae59 SHA256: be41b7a12dd025763cb08fec0805e14d628fa800191a3329f3e11d7e751c0d6f Description: Python 3 cairo bindings: documentation files Homepage: http://cairographics.org/pycairo/ Description-md5: 4f30c844c506040578c62d8c42a25420 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-chardet Priority: optional Section: python Installed-Size: 680 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Version: 2.0.1-1 Depends: python3 (>= 3.1.3-13~) Filename: pool/main/p/python3-chardet/python3-chardet_2.0.1-1_all.deb Size: 169122 MD5sum: 1d330ab737ef0311ca5f04619b02b314 SHA1: 299c61bf0578afbeefe8efa30f8f2ee50a50891e SHA256: c7cdd36f03a2822868c903502c05dc7a778bc7c267a41b01a141e55f1180be8c Description: universal encoding detector Homepage: http://chardet.feedparser.org/ Description-md5: 06369837e684c8d44c1f1ea65094acf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-checkbox-ng Priority: optional Section: utils Installed-Size: 270 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: all Source: checkbox-ng Version: 0.3-2 Depends: python3-plainbox (>= 0.5.3), python3-requests (>= 1.0), python3:any (>= 3.3.2-2~), python3-checkbox-support Filename: pool/main/c/checkbox-ng/python3-checkbox-ng_0.3-2_all.deb Size: 42978 MD5sum: f1ebf89f8b5c969f655b07c57fe55759 SHA1: 64eed449b793e5de5f414c248fd08a9be64e3364 SHA256: 3a26c9c89586b3a7c6685b936453d68525adc1226d2e4d5e568c84d4a4cfbc1d Description: PlainBox based test runner (Python 3 library) Homepage: http://launchpad.net/checkbox Description-md5: 42ccde9c3636a4b5cc3bef2d665e5569 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-checkbox-ng-doc Priority: extra Section: doc Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: all Source: checkbox-ng Version: 0.3-2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/c/checkbox-ng/python3-checkbox-ng-doc_0.3-2_all.deb Size: 24880 MD5sum: 8c923e0fd85984debebf6dd686cbc4bd SHA1: 9bb86bccc2dd5040daf0276373af9afd7758ffee SHA256: 8ac74ee4490661480b66873b91c40d7b937ecc30d30680bb1248f836e887dd9c Description: PlainBox based test runner (documentation) Homepage: http://launchpad.net/checkbox Description-md5: 823ad1ed7dad5454000fa3e97eba45f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-checkbox-support Priority: optional Section: python Installed-Size: 374 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: all Source: checkbox-support Version: 0.2-1 Depends: gir1.2-gudev-1.0, python3-pyparsing, udev, udisks2 | udisks, python3:any (>= 3.3.2-2~) Filename: pool/main/c/checkbox-support/python3-checkbox-support_0.2-1_all.deb Size: 55628 MD5sum: 25ee8d39ccf2122817f14f4ebd95c792 SHA1: 57368d8039a2c301248058c7359e83ba95a9a927 SHA256: 4c97bc8310180de77ac02fd15b91bec27bba2ac44c29a32757fdf14a592fbf84 Description: collection of Python modules used by PlainBox providers Homepage: http://launchpad.net/checkbox Description-md5: 1203ac98fe1e0f1063ba39de2ab2ddcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-click Priority: optional Section: python Installed-Size: 352 Maintainer: Colin Watson Architecture: amd64 Source: click Version: 0.4.21.1 Replaces: python3-click-package Provides: python3-click-package Depends: python3:any (>= 3.3.2-2~), gir1.2-click-0.4 (= 0.4.21.1), gir1.2-glib-2.0, python3-apt, python3-debian, python3-gi Conflicts: python3-click-package Filename: pool/main/c/click/python3-click_0.4.21.1_amd64.deb Size: 42500 MD5sum: a02ede42a30ed55fc5b6222c5c43de93 SHA1: d1c0a385c086696119823b4efcbc1e3109d3ea2e SHA256: e995e963ac778819f51aa70682ee12e6d71b5a7f47b9581a7595fac7217ce40a Description: Click packages (Python 3 interface) Description-md5: a55b8833aad665015cec861ba580ce8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-cliff Priority: optional Section: python Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-cliff Version: 1.4.5-1ubuntu2 Depends: python3-prettytable, python3-pyparsing, python3:any (>= 3.3.2-2~), python3-cmd2 Recommends: python-cliff-doc (= 1.4.5-1ubuntu2) Filename: pool/main/p/python-cliff/python3-cliff_1.4.5-1ubuntu2_all.deb Size: 16112 MD5sum: ada2f857e9533636c5a7ae2bcbeaeb2d SHA1: d953c3b0bc33b0303cceee922d2d2e03829eeed8 SHA256: e7c47f77eff8cfeda67feb981a541669132271d9f0751cdfb49fbc0eef89feea Description: command line interface formulation framework - Python 3.x Homepage: https://github.com/dreamhost/cliff Description-md5: 92bb0e6b0f061ce49921f4f0e04e7c86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-cmd2 Priority: optional Section: python Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: all Source: cmd2 Version: 0.6.7-2fakesync1build1 Depends: python3-pyparsing (>= 2.0.1), python3-setuptools (>= 0.6.14), python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/c/cmd2/python3-cmd2_0.6.7-2fakesync1build1_all.deb Size: 19770 MD5sum: be47b1956fb74d03bdc64aee189c336d SHA1: 346a83a3124d8a8b8320c4fee0b3fdb0bb986395 SHA256: ffdb7f41b0b1c9c2306d3b30f0576953214553a63becd086926821a3a9164868 Description: enhanced Python cmd module - Python 3.x Homepage: https://bitbucket.org/catherinedevlin/cmd2 Description-md5: 12cecd9ac0c6d4ec43fb9a6b10f56b88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-commandnotfound Priority: standard Section: python Installed-Size: 62 Maintainer: Michael Vogt Original-Maintainer: Zygmunt Krynicki Architecture: all Source: command-not-found Version: 0.3ubuntu12 Replaces: command-not-found (<< 0.3ubuntu7) Depends: command-not-found-data, lsb-release, python3-apt, python3-gdbm, python3:any (>= 3.3.2-2~) Filename: pool/main/c/command-not-found/python3-commandnotfound_0.3ubuntu12_all.deb Size: 5744 MD5sum: c598a1b8d977783bb60034f33a9d2418 SHA1: 980399a989c83627387f9ed84819e7e2f4cad14b SHA256: ec744eae98f480063fb5ed53152413ab318ff38200cb002d2102a3006aee3a56 Description: Python 3 bindings for command-not-found. Description-md5: 4dcdbcb28916025709b3793075a2eae5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: python3-configglue Priority: optional Section: python Installed-Size: 307 Maintainer: Ubuntu Developers Original-Maintainer: Andrew Mitchell Architecture: all Source: python-configglue Version: 1.1.2-0ubuntu2 Depends: python3-xdg, python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-configglue/python3-configglue_1.1.2-0ubuntu2_all.deb Size: 38124 MD5sum: d256463e43be0f7704ae0f0771866733 SHA1: 77f011f3e7749ad62cd5f7855f610583f78c897f SHA256: 57612dc6d25ca45294a8d7fa4097d9fa71deb079ee47d836d458524cc45683bf Description: Glues together optparse.OptionParser and ConfigParser.ConfigParser Description-md5: 94dd96739570685dbf7149241b69766b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-coverage Priority: optional Section: python Installed-Size: 326 Maintainer: Ubuntu Developers Original-Maintainer: Ben Finney Architecture: amd64 Source: python-coverage Version: 3.7.1+dfsg.1-1ubuntu2 Depends: python3-pkg-resources, python3.4, python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.2.5) Recommends: libjs-jquery-hotkeys, libjs-jquery-isonscreen, libjs-jquery-tablesorter, libjs-jquery Filename: pool/main/p/python-coverage/python3-coverage_3.7.1+dfsg.1-1ubuntu2_amd64.deb Size: 68132 MD5sum: 998b220cf0ad5da3e895cbf1ee8ab5b8 SHA1: dac43d8ba2dd3c9371693bb5cc3ff29596543fd3 SHA256: 9183db17fc5dd7df06d1127184f558ff3a0e75f408c2263dad1b009e1f618c89 Description: code coverage tool for Python 3 Homepage: http://nedbatchelder.com/code/coverage/ Description-md5: b5bb2f13eaa04f64a44fb3ab615ca6c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-coverage-dbg Priority: extra Section: debug Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Ben Finney Architecture: amd64 Source: python-coverage Version: 3.7.1+dfsg.1-1ubuntu2 Depends: python3-coverage (= 3.7.1+dfsg.1-1ubuntu2), libc6 (>= 2.2.5) Recommends: python3-dbg Filename: pool/main/p/python-coverage/python3-coverage-dbg_3.7.1+dfsg.1-1ubuntu2_amd64.deb Size: 24400 MD5sum: dd93384b3e5bb06e91801b72f0853bc6 SHA1: 8a1b37858147dc86076d7c9fba768cfa81fe6b30 SHA256: 8fb189a72ccd8ca2a3a5408acce5f3d893e9add0ab4100f3a1ed0423cea33644 Description: code coverage tool for Python 3 – debug library Homepage: http://nedbatchelder.com/code/coverage/ Description-md5: 3f59e6daaaa4ec2f8fae9bfad4452d80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-crypto Priority: optional Section: python Installed-Size: 1389 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Ramacher Architecture: amd64 Source: python-crypto Version: 2.6.1-4build1 Provides: python3.4-crypto Depends: python3 (<< 3.5), python3 (>= 3.4~), libc6 (>= 2.14), libgmp10 Suggests: python3-crypto-dbg, python-crypto-doc Breaks: python3-keyring (<= 0.7.1-1) Filename: pool/main/p/python-crypto/python3-crypto_2.6.1-4build1_amd64.deb Size: 239318 MD5sum: 2c3f417e8ea82e96ffe68dd3102d2fb8 SHA1: 3859522e4eed5cd8f7076107afbc76f83ddee072 SHA256: 5e336ebc2674bdd633bb03d83dc1dd7a92edbd0e27ca4c217e31c60c9f52fd31 Description: cryptographic algorithms and protocols for Python 3 Homepage: http://www.pycrypto.org/ Description-md5: f190b1e90ffcc141d3f3f17913d63ca4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-crypto-dbg Priority: extra Section: debug Installed-Size: 1378 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Ramacher Architecture: amd64 Source: python-crypto Version: 2.6.1-4build1 Provides: python3.4-crypto-dbg Depends: python3-crypto (= 2.6.1-4build1), libc6 (>= 2.14), libgmp10, python3-dbg (>= 3.4~), python3-dbg (<< 3.5) Filename: pool/main/p/python-crypto/python3-crypto-dbg_2.6.1-4build1_amd64.deb Size: 567718 MD5sum: d328ebb134b0f024f3fcdb53830c0df9 SHA1: 1dd1ec0c55e77e7607e8e84936086c317a2a4c05 SHA256: 96e55bb7a99ca0b1af24172bf2eb32cb319a80cad785a53a8de10eb1fcd53e8d Description: cryptographic algorithms and protocols for Python 3 (debug extension) Homepage: http://www.pycrypto.org/ Description-md5: 309ca6979eadefdccfe5edd6724037a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-cxx-dev Priority: optional Section: python Installed-Size: 756 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pycxx Version: 6.2.5-1ubuntu2 Depends: python-cxx-dev, python3-dev, python3:any (>= 3.3.2-2~) Suggests: pkg-config Filename: pool/main/p/pycxx/python3-cxx-dev_6.2.5-1ubuntu2_all.deb Size: 58740 MD5sum: 5218478419b9d3b41e190c3c3c39b843 SHA1: 4341321a89c8466923a73018da871192f93dcdb2 SHA256: 515f780dff533481d23a19e12ecb79d82774ac554763e809670c95aaf23ba0bb Description: Set of facilities to extend Python3 with C++ Homepage: http://cxx.sourceforge.net Description-md5: 8a960c46783beb7399f164e4fb8f3a2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-d2to1 Priority: optional Section: python Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: d2to1 Version: 0.2.11-1build1 Depends: python3-pkg-resources, python3:any (>= 3.3.2-2~) Filename: pool/main/d/d2to1/python3-d2to1_0.2.11-1build1_all.deb Size: 19474 MD5sum: fb735630072ee64ccd05f064fb8a57ea SHA1: 2f7c4378c2b7fc45a1e072f7108249667cd08761 SHA256: 01d41897e494b6fc0e4a85931e698d2c605de830757fdee9df109a2ea8a12a37 Description: Python3 support for distutils2-like setup.cfg files as package metadata Homepage: http://pypi.python.org/pypi/d2to1 Description-md5: 4d9e295347b358c5864b36ee500ee330 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-dbg Priority: extra Section: python Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3 (= 3.4.0-0ubuntu2), libpython3-dbg (= 3.4.0-0ubuntu2), python3.4-dbg (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/python3-dbg_3.4.0-0ubuntu2_amd64.deb Size: 1248 MD5sum: b2c6840420642b0699b1556e5ae7c585 SHA1: 2e047c0e1b6ec64cd722898a78481215681ff36c SHA256: 7e78ba6e7eaf9c6d092f5675ecd9bc414a49474faa831f8d66bb97efbc73b015 Description: debug build of the Python 3 Interpreter (version 3.4) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 862a2f4f1470c550119e4f708dd18a88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-dbus Priority: standard Section: python Installed-Size: 392 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: dbus-python Version: 1.2.0-2build2 Provides: python3.4-dbus Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libdbus-1-3 (>= 1.5.12), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.12.0) Recommends: python3-gi | python3-dbus.mainloop.qt Suggests: python-dbus-doc, python3-dbus-dbg Filename: pool/main/d/dbus-python/python3-dbus_1.2.0-2build2_amd64.deb Size: 82100 MD5sum: 1b411137e467496b62a4847018c93217 SHA1: d3fe4570706d8bde6031227e8bd1538bb786eba1 SHA256: 439a613d001376f57cd5ec4ca75a206f029f7de2d770867591bc1b3616ef398a Description: simple interprocess messaging system (Python 3 interface) Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: ce4ab9b30794da472e5f5ffdb2a4dc14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python3-dbus-dbg Priority: extra Section: debug Installed-Size: 556 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Source: dbus-python Version: 1.2.0-2build2 Depends: python3-dbg, python3-dbus (= 1.2.0-2build2), libc6 (>= 2.4), libdbus-1-3 (>= 1.5.12), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.12.0) Filename: pool/main/d/dbus-python/python3-dbus-dbg_1.2.0-2build2_amd64.deb Size: 292340 MD5sum: 85a93d805fd7a2383d85ab421fdde795 SHA1: 624f54ed8747408751e31f829798fbff2c922df5 SHA256: 573f96eee27438fb0c88d17ec9afabf9a532495e149f7b7b97883f9fd1c6c369 Description: debug build of the D-Bus Python 3 interface Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: fcb0d1c405e4152a21372e32da2a8e84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-dbus.mainloop.pyqt5 Priority: optional Section: python Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbus, python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-dbus.mainloop.pyqt5_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 13426 MD5sum: bd27fb3410f4fdc1624f8880f6f8778a SHA1: 2a23a8168608e5f768409d4d3552090aa9f70d24 SHA256: 78e0242549abf0088964d1d9430e49f6a2b023c3a1c12c19526d65943042f656 Description: D-Bus Support for PyQt5 with Python 3 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 2fff1b94c8ebdcb4b1601863909fa579 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-dbus.mainloop.pyqt5-dbg Priority: extra Section: debug Installed-Size: 549 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-dbus-dbg, python3-dbus.mainloop.pyqt5 (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-dbus.mainloop.pyqt5-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 226848 MD5sum: 1b8ebb9177efc7b41c0eba729a77c623 SHA1: 0fbe557cf70b83949861f0dfce13791196b4722b SHA256: f083a6423e84c615473dec973c1ca0409dc413f1c5a26bc54a885bdd8af64775 Description: D-Bus Support for PyQt5 (debug extensions for Python 3) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: f2950f95d7dbd7f9a57e41a17b498c09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-dbus.mainloop.qt Priority: optional Section: python Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbus, python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-dbus.mainloop.qt_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 16546 MD5sum: 99d2502b4cd9d22c10e4af6a14ce4fbc SHA1: 1f4e932907083f7ed147910d33cfc8db98d3f18f SHA256: 36c1bf2aec56a06d18039b3883322e921c13abefdcc355df0b7e2a1f9d08fabd Description: D-Bus Support for PyQt4 with Python 3 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: b9f3f4244f8e77a9730a46fee9189553 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: python3-dbus.mainloop.qt-dbg Priority: extra Section: debug Installed-Size: 633 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbg, python3-dbus-dbg, python3-dbus.mainloop.qt (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-dbus.mainloop.qt-dbg_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 180754 MD5sum: c2116cba316cf9637bf7cef1d02d9288 SHA1: 228b476bc851f7667b1b08740f167786d221e7c3 SHA256: 38f60099b9915dd73d7a4306be5e1489a54fd91cfa16ea99f8d8e48bc5189775 Description: D-Bus Support for PyQt4 (debug extensions for Python 3) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 26c0b1367c90a234ef963ea672b0ecc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-dbusmock Priority: optional Section: python Installed-Size: 280 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-dbusmock Version: 0.10.1-1 Depends: python3:any (>= 3.3.2-2~), python3-dbus, python3-gi, gir1.2-glib-2.0 (>= 1.32), dbus-x11 Filename: pool/main/p/python-dbusmock/python3-dbusmock_0.10.1-1_all.deb Size: 46536 MD5sum: 4531fe4198cc7c93219f70da56eccf41 SHA1: 623d565af828954c0417157002631118b01748b8 SHA256: dcc5c020027029cf46e5bcf07a4f609c5c128f2d53c43c98dcb4ec5b2d52410c Description: mock D-Bus objects for tests (Python 3) Homepage: https://gitorious.org/python-dbusmock Description-md5: 3559901ef85e98d3f1852eaa0250da7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-debian Priority: optional Section: python Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian python-debian Maintainers Architecture: all Source: python-debian Version: 0.1.21+nmu2ubuntu2 Depends: python3-chardet, python3-six Recommends: python3-apt Suggests: gpgv Filename: pool/main/p/python-debian/python3-debian_0.1.21+nmu2ubuntu2_all.deb Size: 34924 MD5sum: ee978f4cae6d93b808b285476dc54f0c SHA1: 43348ec4af77fed4e436d778653535b974ce3471 SHA256: e67c13e1805b81d280cae4b3091ca216fa4fab5cc4025776abace981128c50f9 Description: Python 3 modules to work with Debian-related data formats Description-md5: 25a477be653c8618e0ea19bdaf3d27c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-defer Priority: extra Section: python Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Heinlein (devel) Architecture: all Source: python-defer Version: 1.0.6-2build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-defer/python3-defer_1.0.6-2build1_all.deb Size: 10662 MD5sum: 347608da765f3f5e1daae3b702ac1512 SHA1: ed06dce822049c05abb467a4b67e6aab9b19ef8b SHA256: 0b3a999c8bcbfc547c59bd35abd7bad256dad06032bbbb3d45e7737e7cea7815 Description: Small framework for asynchronous programming (Python 3) Homepage: https://launchpad.net/python-defer Description-md5: 999d8e0049a5ae6761f7023ff6b602c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-dev Priority: optional Section: python Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Replaces: python3.1 (<< 3.1.2+20100706-3) Depends: python3 (= 3.4.0-0ubuntu2), libpython3-dev (= 3.4.0-0ubuntu2), python3.4-dev (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/python3-dev_3.4.0-0ubuntu2_amd64.deb Size: 1192 MD5sum: 22471770aad9841c89b3702a0a36934d SHA1: 61f84a3ba0eca4436109bb177e511bf8e021dfce SHA256: fe9c7c535ed658c62af1add9d6120c7c526e955b01f9aec154833757f1d5abdc Description: header files and a static library for Python (default) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 8d12a93994da0c57873ee46478ea0257 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-distupgrade Priority: standard Section: python Installed-Size: 637 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-release-upgrader Version: 1:0.220.2 Replaces: python3-update-manager (<< 1:0.165) Depends: python3:any (>= 3.3.2-2~), python3-update-manager (>= 1:0.196.2~), python3-apt (>= 0.8.5~), lsb-release Breaks: python3-update-manager (<< 1:0.165) Filename: pool/main/u/ubuntu-release-upgrader/python3-distupgrade_0.220.2_all.deb Size: 103332 MD5sum: e6544b4d7ea71c53d030cb31f296ac19 SHA1: fd8101191c494e5dead87c64118f95a441d73ef1 SHA256: 048ad87fc59960b04ad34d8b7e3d115a4b1cbe63100a46d7f8beb92940108633 Description: manage release upgrades Description-md5: f6e22affea82016bac7bf2c9371af261 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python3-distutils-extra Priority: optional Section: python Installed-Size: 101 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: all Source: python-distutils-extra Version: 2.38-1build1 Depends: python3:any (>= 3.3.2-2~), intltool Suggests: devscripts Filename: pool/main/p/python-distutils-extra/python3-distutils-extra_2.38-1build1_all.deb Size: 14996 MD5sum: ca6c1663cdf99c8bc39c25f747983926 SHA1: 79a560ae854613cb21660442999f193bc1dc58a2 SHA256: 688185b94cb5f40ef5be24291d3388034702b71aa5762a18b81e756d07428408 Description: enhancements to the Python3 build system Description-md5: bd9e232ec557429c1c7dd0062eaa54e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-doc Priority: optional Section: doc Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3.4-doc (>= 3.4.0-0~) Suggests: python3 (>= 3.4.0-0ubuntu2), python3-examples Filename: pool/main/p/python3-defaults/python3-doc_3.4.0-0ubuntu2_all.deb Size: 7060 MD5sum: 4d2c07ea5365a9ede6b32af3ebcafaa2 SHA1: f8e55bad065ea054efacf91026f6cc279e3a7249 SHA256: 8ab7ae09bc9d79f9fc2aa1b315dddde6188c96064edbb2206faf33073e351d24 Description: documentation for the high-level object-oriented language Python 3 Homepage: http://www.python.org/ Description-md5: 0007ea460c04e74e454a036590765006 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-docutils Priority: optional Section: python Installed-Size: 1688 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-docutils Version: 0.11-3 Provides: docutils Depends: python3:any (>= 3.3.2-2~), python3-roman, docutils-common (= 0.11-3) Recommends: python3-pil, python3-pygments, libpaper-utils Suggests: texlive-latex-recommended, texlive-latex-base, texlive-lang-french, fonts-linuxlibertine | ttf-linux-libertine, docutils-doc Conflicts: docutils-writer-odt, python-docutils (<< 0.7-3~), python-odtwriter Breaks: python3-sphinx (<< 1.1.3+dfsg-7~) Filename: pool/main/p/python-docutils/python3-docutils_0.11-3_all.deb Size: 346800 MD5sum: fad38179d61f6158540d7a46618e40eb SHA1: d0cc4c7cbe79cf17c9a219bbd89b51a680433c6b SHA256: 614e4ab7593f3deb41378856ce6b92d4d8ee28d35b4b7cb18bd8fa14f1310652 Description: text processing system for reStructuredText (implemented in Python 3) Homepage: http://docutils.sourceforge.net/ Description-md5: 01bddb85f9679cb9c0960674ca84d929 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-examples Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3 (>= 3.4.0-0ubuntu2), python3.4-examples (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/python3-examples_3.4.0-0ubuntu2_all.deb Size: 956 MD5sum: 89904340485eab7522853d851d16564c SHA1: 9713cba5aad0ff83eb9d746e8c93c8552e3f1025 SHA256: 0d3309a5ac54e715090291b24ae75af87f2792f19688f98734b8eba3ad22dd48 Description: examples for the Python language (default version) Homepage: http://www.python.org/ Description-md5: 977279e98d68c8e762ea58fe8c0a6784 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-extras Priority: optional Section: python Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-extras Version: 0.0.3-2ubuntu1 Depends: python3:any (>= 3.3.2-2~), python3-testtools Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-extras/python3-extras_0.0.3-2ubuntu1_all.deb Size: 6548 MD5sum: 870b5a3182c58b7dd4fb6952802f14cf SHA1: 374b90686d01a8203186fc96175d14451bd0d6ae SHA256: 0908ec9ace5a6e2c3a7450b72d96601a1f18e5a8c04ebce5aeafee78012b10b9 Description: extensions to the Python standard library (Python 3.x) Homepage: http://pypi.python.org/pypi/extras Description-md5: 02644786849446bb9cf4067d67d7f4b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-feedparser Priority: optional Section: python Installed-Size: 235 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: feedparser Version: 5.1.3-2 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/f/feedparser/python3-feedparser_5.1.3-2_all.deb Size: 46020 MD5sum: ab50c0f10c305d83a793ffebe10f5d8c SHA1: 650da7fb90fec0f03542554b4646cb2f6eda342c SHA256: fd30fd876a58452674eea5e3f4eed4866fa5766c4260d52499f6a6c2e6f309d6 Description: Universal Feed Parser for Python 3 Homepage: https://code.google.com/p/feedparser/ Description-md5: 3798c5f98dfe4eafe184b06860237110 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-fixtures Priority: optional Section: python Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Source: python-fixtures Version: 0.3.14-1ubuntu2 Depends: python3-testtools (>= 0.9.11), python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-fixtures/python3-fixtures_0.3.14-1ubuntu2_all.deb Size: 25972 MD5sum: c108447a5c0e299205bdcdaf9805d70b SHA1: 93d3a964ada4d1d2f1429de3370ca6a6474062da SHA256: e547e15a10f24086de3b594bfaf84e36a1a7e1d6e6704c61e774055d91ee7083 Description: PyUnit extension for defining test fixtures outside of test cases - Python 3.x Homepage: http://pypi.python.org/pypi/fixtures Description-md5: abcb44fae2fd23e9f3cc40ed4100f616 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-gdbm Priority: standard Section: python Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-stdlib-extensions Version: 3.4.0-0ubuntu1 Replaces: python3.0 (<< 3.0.1) Provides: python3.4-gdbm Depends: python3 (>= 3.4), python3 (<< 3.5), libc6 (>= 2.4), libgdbm3 (>= 1.8.3) Suggests: python3-gdbm-dbg Filename: pool/main/p/python3-stdlib-extensions/python3-gdbm_3.4.0-0ubuntu1_amd64.deb Size: 12214 MD5sum: 95d3a4c07b513ad58f1ef07a6920a713 SHA1: 499675e64113d3c53ba8f1b0887169bce4a4346c SHA256: 0137c3501fcac65a9a4e01959f72122b5c19da2ccaed37a5e238566e8cdabe6a Description: GNU dbm database support for Python 3.x Multi-Arch: same Description-md5: f21d01c59fd918dd8e93a985f8b900dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: python3-gdbm-dbg Priority: extra Section: python Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-stdlib-extensions Version: 3.4.0-0ubuntu1 Depends: python3-gdbm (= 3.4.0-0ubuntu1), libc6 (>= 2.4), libgdbm3 (>= 1.8.3) Filename: pool/main/p/python3-stdlib-extensions/python3-gdbm-dbg_3.4.0-0ubuntu1_amd64.deb Size: 20690 MD5sum: 90ad0df359c3ec7face7238a09a2b3e4 SHA1: 967ca4d5eac5492bfdfdd910331ff7ee425ac286 SHA256: e12275bd7cc12f161956b6c2c74023331fe0926c3bd3e540760680f19a993060 Description: GNU dbm database support for Python 3.x (debug extension) Multi-Arch: same Description-md5: 2acef7566a549a1876868ca568136539 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-genshi Priority: optional Section: python Installed-Size: 926 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: genshi Version: 0.7-3 Depends: python3:any (>= 3.3.2-2~) Suggests: doc-base, python-genshi-doc, python3-pkg-resources Filename: pool/main/g/genshi/python3-genshi_0.7-3_amd64.deb Size: 124342 MD5sum: 5d42021c41dbff0307c2e9ce3bf7b7b2 SHA1: b45fd0f588aebc8939de0624154f3a51dd472646 SHA256: 9667f7f62dab78edfa70803be27b37ae99b65cb65bc3bc1fa857d43f6da6ec71 Description: Python XML-based template engine - Python 3.x Homepage: http://genshi.edgewall.org/ Description-md5: 16a97ee4a6a4ef84b022ae95ff491e5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-germinate Priority: optional Section: python Installed-Size: 248 Maintainer: Colin Watson Architecture: all Source: germinate Version: 2.16 Depends: python3:any (>= 3.3.2-2~), python3-apt (>= 0.7.93.2~) Filename: pool/main/g/germinate/python3-germinate_2.16_all.deb Size: 35600 MD5sum: 1cf83b6eab7d401794e50c1e2809dc34 SHA1: 7049829f5b4a7be4008c9a754e35f18a4913e821 SHA256: 78d498b1915c768a9a9625769bc80a28c27917f6069e7d1aa75ba5e04d2922ee Description: expand dependencies in seed packages (Python 3 interface) Description-md5: 8b04dadf046a3b0f9097dd87f3ebfff2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-gi Priority: standard Section: python Installed-Size: 670 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: pygobject Version: 3.12.0-1 Replaces: python3-gobject Provides: python3-gobject Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libgirepository-1.0-1 (>= 1.33.10), libglib2.0-0 (>= 2.38.0), gir1.2-glib-2.0 (>= 1.35.9) Conflicts: python3-gobject Filename: pool/main/p/pygobject/python3-gi_3.12.0-1_amd64.deb Size: 154274 MD5sum: 78a188f7892271b71508b46bffcbead4 SHA1: b271e1cdf7f86197e9dff2ae110ea953ce8a4fd4 SHA256: 41eb40a165d654e2b29c36a33d4648bf374847d78cce762f6739a1fefbf342a7 Description: Python 3 bindings for gobject-introspection libraries Homepage: https://wiki.gnome.org/PyGObject Description-md5: f0850471c776a975236399e3050363aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python3-gi-cairo Priority: optional Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: pygobject Version: 3.12.0-1 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.2.5), libcairo2 (>= 1.10.0), libglib2.0-0 (>= 2.38.0), python3-gi (= 3.12.0-1), python3-cairo (>= 1.10.0+dfsg-3~exp2) Filename: pool/main/p/pygobject/python3-gi-cairo_3.12.0-1_amd64.deb Size: 5556 MD5sum: 176c8530a653f5494e394b98d3c5426e SHA1: 77e4836520f4225c8e1d1e4610cfccc0a61f9790 SHA256: 737def835d5e969a92cba26be12521fb2d9f553b8a24415872716ce60ecb0d48 Description: Python 3 Cairo bindings for the GObject library Homepage: https://wiki.gnome.org/PyGObject Description-md5: 9b3c3678114febdf17db503bab5e0915 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-live, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-gi-dbg Priority: extra Section: debug Installed-Size: 883 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: amd64 Source: pygobject Version: 3.12.0-1 Replaces: python3-gobject-dbg Provides: python3-gobject-dbg Depends: python3-dbg (>= 3.4~), python3-dbg (<< 3.5), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libgirepository-1.0-1 (>= 1.33.10), libglib2.0-0 (>= 2.38.0), python3-gi (= 3.12.0-1) Conflicts: python3-gobject-dbg Filename: pool/main/p/pygobject/python3-gi-dbg_3.12.0-1_amd64.deb Size: 494406 MD5sum: 45f4e7152fa80dcd1f352c1f1c217065 SHA1: 72d0ea6215875933956595aacd61f8ec6cad1ab1 SHA256: 91a09a6de871778fcb41899a7715ddeebc75e8711e04d0dd6c3da180e1759cff Description: Python 3 bindings for gobject-introspection libraries (debug extension) Homepage: https://wiki.gnome.org/PyGObject Description-md5: cee150898742e87b20dceb8ab5b02a97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-gpgme Priority: optional Section: python Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Miguel Di Ciurcio Filho Architecture: amd64 Source: pygpgme Version: 0.3-0ubuntu3 Provides: python3.4-gpgme Depends: python3 (<< 3.5), python3 (>= 3.4~), libc6 (>= 2.14), libgpgme11 (>= 1.2.0) Filename: pool/main/p/pygpgme/python3-gpgme_0.3-0ubuntu3_amd64.deb Size: 23492 MD5sum: c7fd696d0a7483e1b142f4465a947c42 SHA1: d1e1a8834626690562f5853eacb951e7042bec61 SHA256: c9defdce4b5d8b9ced241cf470a74e733dda359607c99438142a4269850ed70e Description: python wrapper for the GPGME library (Python 3) Homepage: https://launchpad.net/products/pygpgme Description-md5: 80ae2a5cd4d299ffe9ff7d29634cc771 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-gpgme-dbg Priority: extra Section: debug Installed-Size: 418 Maintainer: Ubuntu Developers Original-Maintainer: Miguel Di Ciurcio Filho Architecture: amd64 Source: pygpgme Version: 0.3-0ubuntu3 Provides: python3.4-gpgme-dbg Depends: python3-gpgme (= 0.3-0ubuntu3), libc6 (>= 2.14), libgpgme11 (>= 1.2.0) Recommends: python3-dbg Filename: pool/main/p/pygpgme/python3-gpgme-dbg_0.3-0ubuntu3_amd64.deb Size: 121926 MD5sum: 8c3eb3b98ef0de8b153bd71245bec8d3 SHA1: 8a888f293b84625c488f1a768257ec0cb82d04dd SHA256: 48f726b815beadba5cac493248a90f6ba575cc2af0a15267da271fc75aad27ca Description: python wrapper for the GPGME library (debug extension) (Python 3) Homepage: https://launchpad.net/products/pygpgme Description-md5: 125031b5ba6fea5efee4260e16617d61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-gridfs Priority: optional Section: python Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: all Source: pymongo Version: 2.6.3-1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/pymongo/python3-gridfs_2.6.3-1build1_all.deb Size: 11162 MD5sum: 86e9915996be0ccc810189d39046c0fb SHA1: 07bb51001e581dffee7a9dde65a11a0a937753db SHA256: a4e2c0f893ac75de083b5e8dc3686b1527e1e3a590ea1b3a228b5b0bb4c2937c Description: Python3 implementation of GridFS for MongoDB Homepage: http://api.mongodb.org/python/ Description-md5: c945face2e12c0bcbca6132ced76cd28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-httplib2 Priority: optional Section: python Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: all Source: python-httplib2 Version: 0.8-2build1 Depends: python3:any (>= 3.3.2-2~), ca-certificates Filename: pool/main/p/python-httplib2/python3-httplib2_0.8-2build1_all.deb Size: 27196 MD5sum: 287e690b5783e2ef8ccb8b6b72a04c64 SHA1: 82352ccd01837704c7849dd404371808eaa9c8cf SHA256: eb267731b2ebca3e8db701aaad47a1ca8d3c104f2aa5822bd6dd35f70b5c8333 Description: comprehensive HTTP client library written for Python3 Homepage: http://code.google.com/p/httplib2/ Description-md5: 43b4287928c3dbd3553ba0279a8b162d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-icu Priority: optional Section: python Installed-Size: 658 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyicu Version: 1.5-2ubuntu4 Replaces: python3-pyicu (<< 1.5-2ubuntu1~) Provides: python3.4-icu Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1), python3 (>= 3.4~), python3 (<< 3.5) Breaks: python3-pyicu (<< 1.5-2ubuntu1~) Filename: pool/main/p/pyicu/python3-icu_1.5-2ubuntu4_amd64.deb Size: 147528 MD5sum: a06d154fbcc62bb4ba2adf531eacb7f9 SHA1: 3cedc57449872aa99184731016f140ab453fa9a7 SHA256: 2e539cf60db397781a1f16bf6d1cfdb05b1e882f93f8a353079af5442f711c71 Description: Python 3 extension wrapping the ICU C++ API Homepage: http://pyicu.osafoundation.org/ Description-md5: c132dca8ad04ede752c4adc35460cd93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: python3-icu-dbg Priority: extra Section: debug Installed-Size: 2974 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyicu Version: 1.5-2ubuntu4 Provides: python3.4-icu-dbg Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1), python3-dbg (>= 3.4~), python3-dbg (<< 3.5), python3-icu (= 1.5-2ubuntu4) Filename: pool/main/p/pyicu/python3-icu-dbg_1.5-2ubuntu4_amd64.deb Size: 620458 MD5sum: c957f75833b4152ac30b3add97518e0d SHA1: aae6dab49c3d3585fdfd848dc45eec27e642404f SHA256: 5dba121e5e5697222363b15293ce6422d551aad355afb843a7b6f85edc277b48 Description: Python 3 extension wrapping the ICU C++ API (debug extension) Homepage: http://pyicu.osafoundation.org/ Description-md5: 387c97faeb1c422866b4185f26db825c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-imaging Priority: optional Section: python Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python3-pil (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python3-imaging_2.3.0-1ubuntu3_all.deb Size: 2714 MD5sum: e4fbe577ae5278122988df93a6da3645 SHA1: bf6bfd78e7d53d93bfd8a9a73397c1432161735f SHA256: 47a66581b8cc7433077d55b134dce0ecf6b24f85565373ad2e89bcdf2ead1dc7 Description: Dummy transitional package Description-md5: 1ecff9703c33ade6d316b72d28003ef5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-imaging-dbg Priority: extra Section: debug Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python3-pil-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python3-imaging-dbg_2.3.0-1ubuntu3_all.deb Size: 2722 MD5sum: 03230e026d1c43010819a9705b7d1a78 SHA1: a90a02e14a1ecaee36e9c9bd69b6333cd4a1e56c SHA256: 94cae61513ef7dea212ca2a2009386b586ef85ece90c32faff10dd3c89fcfe72 Description: Dummy transitional package Description-md5: 0e45edd96e44ff0ac78be66e8171a996 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-imaging-sane Priority: optional Section: python Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python3-sane (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python3-imaging-sane_2.3.0-1ubuntu3_all.deb Size: 2720 MD5sum: f35d722ae1a217454261e7518c836e34 SHA1: 9664cbf7560cc3690823d04931b5e58406151497 SHA256: 9b084f747586cbfdc4cc168e434cccd29b9dbd6951034826f8f177a6815ba4a5 Description: Dummy transitional package Description-md5: 13cada63fcd7a132a768edfddc5657ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-imaging-sane-dbg Priority: extra Section: debug Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python3-sane-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python3-imaging-sane-dbg_2.3.0-1ubuntu3_all.deb Size: 2734 MD5sum: abd3eea46441291cc1940c6f84c306a0 SHA1: cefb68db3aa38a7073a549a280400d7caea48733 SHA256: 595d14b4bfc87644c3d0426a94d1ecec64b7be1c0daab16ef386b0b1b76b5d71 Description: Dummy transitional package Description-md5: 764439e0f83822ee0276e87d8c7439fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-imaging-tk-dbg Priority: extra Section: debug Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python3-pil.imagetk-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python3-imaging-tk-dbg_2.3.0-1ubuntu3_all.deb Size: 2736 MD5sum: c73b4ad45ceb7b0d7e6591c7d035e920 SHA1: 049a4b23a5786342e2f65cd094688a83bde620ec SHA256: f59c2adcf4fb3575e180b288e129df26a8cc3d52f52d0c6882ef90ae0565d9c8 Description: Dummy transitional package Description-md5: fb13b128591846a962db17dfd56d2590 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-ipaddr Priority: optional Section: python Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Scott Kitterman Architecture: all Source: python-ipaddr Version: 2.1.10-1 Depends: python3 (>= 3.1.3-13~) Filename: pool/main/p/python-ipaddr/python3-ipaddr_2.1.10-1_all.deb Size: 16538 MD5sum: 4b879a657774df8156b456b18b63f90e SHA1: 578747540ab83932cfdea59c228244f202c672fe SHA256: 625a7a3b970bcebe254232e9d73e3f4a1d7668d49c7bb80c446164078be34595 Description: Python3 module for working with IP addresses, both IPv4 and IPv6 Homepage: http://code.google.com/p/ipaddr-py/ Description-md5: 7b99ff6f5d9411d3a141f94c33424e57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-iso8601 Priority: extra Section: python Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Mako Hill Architecture: all Source: python-iso8601 Version: 0.1.10-0ubuntu1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-iso8601/python3-iso8601_0.1.10-0ubuntu1_all.deb Size: 8980 MD5sum: 1be0821ab14ce35aee7579ac0d4ac63b SHA1: 2db6999b8159c308e70ab8bb4615e11e820e939f SHA256: b398d2bc34f3bbe3d22d337878be95f819f66f9e3be59e76930f02bcbdd06880 Description: python module to parse ISO 8601 dates (python3) Homepage: https://code.google.com/p/pyiso8601 Description-md5: a0fd6ec1d804af346eea88ab98efb73e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-itsdangerous Priority: optional Section: python Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-itsdangerous Version: 0.22+dfsg1-1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-itsdangerous/python3-itsdangerous_0.22+dfsg1-1build1_all.deb Size: 11526 MD5sum: f02164ee50f9f39c9f991c52066a7225 SHA1: 31894fb6b4d2777bcb22ffb512dd36388d24bd3c SHA256: d5d981f3fba22ea31345f578d55a416f2b116fc73bd3c7a22dcb494c66f5f817 Description: Various helpers to pass trusted data to untrusted environment - python 3.x Homepage: http://pythonhosted.org/itsdangerous/ Description-md5: ee1ecaa29c94b5fef0fb529cdc234f68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-jinja2 Priority: optional Section: python Installed-Size: 1024 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: jinja2 Version: 2.7.2-2 Depends: python3-markupsafe, python3:any (>= 3.3.2-2~) Recommends: python3-pkg-resources Suggests: python-jinja2-doc Filename: pool/main/j/jinja2/python3-jinja2_2.7.2-2_all.deb Size: 163166 MD5sum: 3234b6b29818220b3fdcd8373a29d988 SHA1: aba48e490a972d0a3d7d992655c9275c5d43ebee SHA256: e0408cea133a9b85025e0aee70569b6da4baf69b1435da633b75685132663343 Description: small but fast and easy to use stand-alone template engine Homepage: http://jinja.pocoo.org/2/ Description-md5: 946c5e58f8736a9521b16a6d4c1157e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-json-patch Priority: optional Section: python Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-json-patch Version: 1.3-4 Depends: python3-jsonpatch Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-json-patch/python3-json-patch_1.3-4_all.deb Size: 2330 MD5sum: b1453b326e0810b2cb11e9d60fa7bcc5 SHA1: b7c0d0687376e270894c847784767a828866ec6a SHA256: 9c5fcbe0d48a7dfd34494fb9ce53e3d9d8e2049a155c8662e9dbf6fdc3b51141 Description: library to apply JSON patches - python 3.x transitional package Homepage: https://github.com/stefankoegl/python-json-patch Description-md5: bd63c298c0c04d3692cd1d593a584ede Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-json-pointer Priority: optional Section: python Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-json-pointer Version: 1.0-2build1 Depends: python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-json-pointer/python3-json-pointer_1.0-2build1_all.deb Size: 5232 MD5sum: 75a8fcf3d312575716bc8024c2111f80 SHA1: 04faf44742151846584be91aa397923d1bea4ca1 SHA256: 2bffea7f00fff461bfbae7a960ca303e442fbbb66a3a17908e440a597f3fdc7c Description: resolve JSON pointers - python 3.x Homepage: https://github.com/stefankoegl/python-json-pointer Description-md5: 946c3fd3546f27b8c86eccbbcc8c2ea1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-jsonpatch Priority: optional Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-json-patch Version: 1.3-4 Replaces: python3-json-patch (<< 1.3-3~) Depends: python3-json-pointer, python3.4, python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Breaks: python3-json-patch (<< 1.3-3~) Filename: pool/main/p/python-json-patch/python3-jsonpatch_1.3-4_all.deb Size: 9030 MD5sum: f3b141f9a148e89187f1ed5a47faf556 SHA1: a96bb4d2bdbd84bfd4d23078cd28070980097979 SHA256: 67ab0b521a1a1d37a4aa782d7969b03bb4f85aac861083b1b81f1afd002ac5db Description: library to apply JSON patches - python 3.x Homepage: https://github.com/stefankoegl/python-json-patch Description-md5: e2760b255227a65faccebe573bfad42f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-jsonschema Priority: optional Section: python Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-jsonschema Version: 2.3.0-1build1 Depends: python3 (>= 3.2.3) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-jsonschema/python3-jsonschema_2.3.0-1build1_all.deb Size: 25310 MD5sum: 512847082c10a631aaf26f00ac67beb8 SHA1: 02a256b2c3b5cfd0bb5d26b4b5690ebafd98ab4e SHA256: 53a7df71d832d9c134f79d39df9c0410490e3948e1bc406284cb1409f4e61e88 Description: An(other) implementation of JSON Schema (Draft 3) for Python 3 Homepage: https://github.com/Julian/jsonschema Description-md5: 038097a0a6e4237f9c773fdb699077bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-junitxml Priority: optional Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Source: pyjunitxml Version: 0.6-1.1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/pyjunitxml/python3-junitxml_0.6-1.1build1_all.deb Size: 7524 MD5sum: 1227e1ea0aefa9d362da0a0ffb12d5a4 SHA1: c9445a41d1502a0a02e0886db2a21a1c78a2e9dc SHA256: 9c67bc0f9e4fc3fed90f54f53f8fe4341f36030c6b8c063b60993558a2a8bcfa Description: PyUnit extension for reporting in JUnit compatible XML Description-md5: 2fe874e2f284247bf4fc36d37c2cb1e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-lazr.uri Priority: optional Section: python Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Stefano Rivera Architecture: all Source: lazr.uri Version: 1.0.3-1build1 Depends: python3-pkg-resources, python3:any (>= 3.3.2-2~) Filename: pool/main/l/lazr.uri/python3-lazr.uri_1.0.3-1build1_all.deb Size: 12538 MD5sum: 8bc65a2d73a64f30226ed2c62f7429d2 SHA1: 6a1c29b57305970587f6a4f1c1a92d72164a0cf7 SHA256: 2faafd7dd2bc7f29ba9c652ebddee2ace587f056f24ed36c9d5620af643eb91f Description: library for parsing, manipulating, and generating URIs Homepage: https://launchpad.net/lazr.uri Description-md5: c641be41ee0268c4507c2037d00ccf7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-libapparmor Priority: extra Section: python Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: amd64 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: python3 (<< 3.5), python3 (>= 3.4~), libapparmor1 (>= 2.8.94-0ubuntu1), libc6 (>= 2.14) Filename: pool/main/a/apparmor/python3-libapparmor_2.8.95~2430-0ubuntu5_amd64.deb Size: 23518 MD5sum: cc475e8473bf427984b3f556eae2c311 SHA1: 136623f85f0405a52d91fa0a8f63e1d1f4833e31 SHA256: b4debb41b05b02771a56fcdcf200fd04aca626f4865411321949089be41e0e1a Description: AppArmor library Python3 bindings Homepage: http://apparmor.net/ Description-md5: 48fb2712cf2310bd6af2d05c836cc285 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-logilab-common Priority: optional Section: python Installed-Size: 588 Maintainer: Ubuntu Developers Original-Maintainer: Sandro Tosi Architecture: all Source: logilab-common Version: 0.61.0-1 Depends: python3:any (>= 3.3.2-2~), python3 Filename: pool/main/l/logilab-common/python3-logilab-common_0.61.0-1_all.deb Size: 110922 MD5sum: 0cf471814baacb1f3763de85ff5f215b SHA1: c4194215c0ded881b317c9d0d99595a2230fa1a5 SHA256: 40ae2ca94b127ab1277079442e631ec4c9e0334dab99ed163274c5e7fdc1f62f Description: useful miscellaneous modules used by Logilab projects (Python3) Homepage: http://www.logilab.org/project/logilab-common Description-md5: c1b954b04fb86612866beed61bd4551a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-louis Priority: extra Section: python Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: liblouis Version: 2.5.3-2ubuntu1 Depends: python3:any (>= 3.3.2-2~), liblouis2 (>= 2.5.3-2ubuntu1) Filename: pool/main/libl/liblouis/python3-louis_2.5.3-2ubuntu1_all.deb Size: 7120 MD5sum: 7f18f8f8f122577526b4956e0b0a7e64 SHA1: cb1514d4a46872ca8d3d3b23e025217218c7a2eb SHA256: aba9f48a97ea4656cf665b9bddedf0cf64d6258635a7977c517099c6b58242e0 Description: Python bindings for liblouis Homepage: http://code.google.com/p/liblouis/ Description-md5: 24be43511537b9436824c2c2c1c60986 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-lxc Priority: optional Section: python Installed-Size: 143 Maintainer: Ubuntu Developers Architecture: amd64 Source: lxc Version: 1.0.3-0ubuntu3 Depends: liblxc1 (= 1.0.3-0ubuntu3), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4) Recommends: lxc-templates (>= 0.8.0~rc1-4ubuntu43) Filename: pool/main/l/lxc/python3-lxc_1.0.3-0ubuntu3_amd64.deb Size: 19874 MD5sum: bbb0ce8c0e936a7f9bb5aa45166b707a SHA1: 0a357ad96962426ba09c041105bdd7e2f1337670 SHA256: 6bd2fd0dfacee3f7ba329bfcd68d7bd34b09a25f5fb7aca18cfdc1b01e9dcaaf Description: Linux Containers userspace tools (Python 3.x bindings) Homepage: http://linuxcontainers.org Description-md5: ee623a31db200104a7207d9de42b8f04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-lxml Priority: optional Section: python Installed-Size: 2460 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: lxml Version: 3.3.3-1 Provides: python3.4-lxml Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libxml2 (>= 2.9.0), libxslt1.1 (>= 1.1.26) Suggests: python3-lxml-dbg Filename: pool/main/l/lxml/python3-lxml_3.3.3-1_amd64.deb Size: 625804 MD5sum: 4e5c950fd8f4cecd63f2c9c8b09a5be3 SHA1: d00e39e6bd36a4cfbfb79deb56be77d44f7dedb9 SHA256: dab6ef95849721893c706d4e99e36a1f1aaee52546f489eb0ad1aa26aa3fd6e0 Description: pythonic binding for the libxml2 and libxslt libraries Homepage: http://lxml.de/ Description-md5: e8e2f787207511401ce91418255455e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-lxml-dbg Priority: extra Section: debug Installed-Size: 14152 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: lxml Version: 3.3.3-1 Provides: python3.4-lxml-dbg Depends: python3-lxml (= 3.3.3-1), python3-dbg, libc6 (>= 2.14), libxml2 (>= 2.9.0), libxslt1.1 (>= 1.1.26) Filename: pool/main/l/lxml/python3-lxml-dbg_3.3.3-1_amd64.deb Size: 2725992 MD5sum: d734c779a6e1c2f84892801923e6025b SHA1: a09de4771d9b165f0a819123c3cfa073f40c5841 SHA256: 431b96d7620502cb0fd832206c15353067192268b9341c79e4bd5be6fcfb015b Description: pythonic binding for the libxml2 and libxslt libraries (debug extension) Homepage: http://lxml.de/ Description-md5: dc60d3e32c93635f03d6f9f774d9845a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-magic Priority: extra Section: python Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: all Source: file Version: 1:5.14-2ubuntu3 Depends: python3:any (>= 3.3.2-2~), libmagic1 (>= 1:5.14-2ubuntu3) Filename: pool/main/f/file/python3-magic_5.14-2ubuntu3_all.deb Size: 4570 MD5sum: 7694e0eaec1c96cd057000702726ffbe SHA1: 002232f96f304009429d23b3d86ea17a3e652f6b SHA256: 6125aab66d6974c97ad0a32b627f431ac554eed63d0e7c5b02538e8cf6930176 Description: File type determination library using "magic" numbers (Python 3 bindings) Homepage: http://www.darwinsys.com/file/ Description-md5: f5af97f44e28320b34b50b6756218f4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-mako Priority: optional Section: python Installed-Size: 333 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: mako Version: 0.9.1-1 Depends: python3:any (>= 3.3.2-2~), python3-markupsafe Suggests: python3-beaker, python-mako-doc Filename: pool/main/m/mako/python3-mako_0.9.1-1_all.deb Size: 57660 MD5sum: 4cdad6592a84ba4d0f3e82119d46d756 SHA1: 76ebb604593532fb1546a1ca90c32d506572fb1c SHA256: 466baf2866fd47eabc18b51621fb5accdb8804c715035b6b7bf7506f3e2d1f4e Description: fast and lightweight templating for the Python 3 platform Homepage: http://www.makotemplates.org/ Description-md5: 9cf1e89d773dcfe84fbec050c6c37a3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: python3-markupsafe Priority: optional Section: python Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: amd64 Source: markupsafe Version: 0.18-1build2 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14) Filename: pool/main/m/markupsafe/python3-markupsafe_0.18-1build2_amd64.deb Size: 14698 MD5sum: 05378208c26ebc8cb8749264b2e5e3c2 SHA1: 3f97fb3e429c213a0ab41734686b781834eb9f07 SHA256: b5a3c0c6965cee0676d22fb8554c0b1a266d3deaa7c798275dd3f0f7a6b3448b Description: HTML/XHTML/XML string library for Python 3 Homepage: http://pypi.python.org/pypi/MarkupSafe Description-md5: cefaa4ca2b9fa0945bfdda080a82df76 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: python3-markupsafe-dbg Priority: extra Section: debug Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: amd64 Source: markupsafe Version: 0.18-1build2 Depends: python3-markupsafe (= 0.18-1build2), libc6 (>= 2.14), python3-dbg (>= 3.4~), python3-dbg (<< 3.5) Filename: pool/main/m/markupsafe/python3-markupsafe-dbg_0.18-1build2_amd64.deb Size: 24818 MD5sum: a695def17e3db82e492211a9583f1237 SHA1: 6cb7a433e9d1b9dcfeaa2fa92bd0848609075178 SHA256: 3aa7114f98cb80df732adb007081c0a6f3a0138ab1636014caef39ea8b979cd5 Description: HTML/XHTML/XML string library for Python 3 - debug version Homepage: http://pypi.python.org/pypi/MarkupSafe Description-md5: 3308a6fa6619fe15567adf0883dc85fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-mimeparse Priority: optional Section: python Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Mathias Ertl Architecture: all Source: python-mimeparse Version: 0.1.4-1build1 Filename: pool/main/p/python-mimeparse/python3-mimeparse_0.1.4-1build1_all.deb Size: 5966 MD5sum: 0b16331128b8285087d0bf243715f73e SHA1: 1da0d3e44da8fad37449a00148e9cf38b2848767 SHA256: 9b3280dd76a93521f1f5a558c9068b3ee243f88e39fd636c03945a8e192aa5ee Description: Parse mime-types and quality parameters - python 3.x Homepage: https://pypi.python.org/pypi/python-mimeparse Description-md5: a1058dccf5f3dfe756c4fc2f3c122397 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-minimal Priority: important Section: python Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-defaults Version: 3.4.0-0ubuntu2 Replaces: python3 (<< 3.3.2-13~), python3.1 (<< 3.1-2) Depends: python3.4-minimal (>= 3.4.0-0~), dpkg (>= 1.13.20) Breaks: idle3 (<< 3.1), python3 (<< 3.3.2-13~), python3-all (<< 3.1), python3-all-dbg (<< 3.1), python3-all-dev (<< 3.1), python3-dbg (<< 3.1), python3-dev (<< 3.1), python3-examples (<< 3.1) Filename: pool/main/p/python3-defaults/python3-minimal_3.4.0-0ubuntu2_amd64.deb Size: 23188 MD5sum: 259dd283267065594329030c6d22a521 SHA1: 8ff6215df4f36a74292f14565ce45d5102832277 SHA256: 4028f087be9dda00544bc739f4799bbe15acc8095d8487f7ac330e0bd77ea22e Description: minimal subset of the Python language (default python3 version) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 015bfecc64c3007f61d3872c4677fe63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: python3-mock Priority: extra Section: python Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-mock Version: 1.0.1-3 Depends: python3:any (>= 3.3.2-2~) Suggests: python-mock-doc Filename: pool/main/p/python-mock/python3-mock_1.0.1-3_all.deb Size: 23888 MD5sum: 2c29440b67c8ded4afabed4aa6a72916 SHA1: da4380494a5e32ea4a634f7c3b457beca0a74c71 SHA256: 7f84fd088980f7fa98c4b9b4258a94306a3ba1443eef267ea96eaa44837239d9 Description: Mocking and Testing Library (Python3 version) Homepage: http://www.voidspace.org.uk/python/mock/ Description-md5: 4e0c3a991e1f0679db23da5bd156bed7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-mox3 Priority: optional Section: python Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-mox3 Version: 0.7.0-1build1 Depends: python3-fixtures (>= 0.3.12), python3-pbr (>= 0.5.21), python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-mox3/python3-mox3_0.7.0-1build1_all.deb Size: 31698 MD5sum: cf8ffc4c6969272d889c976a9e6b9261 SHA1: df62baeeb01ca719a1bbc248896ad80905a50751 SHA256: fa4b62c0721dd740e955d1aa04dcba1381375f184d7cfecf36491f144758f1f0 Description: Mock object framework - Python 3.x Homepage: https://pypi.python.org/pypi/mox3 Description-md5: 63acbda07be04918c26b4248c11e54c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-msgpack Priority: optional Section: python Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Source: msgpack-python Version: 0.3.0-1ubuntu3 Depends: libc6 (>= 2.14), python3 (>= 3.4~), python3 (<< 3.5) Filename: pool/main/m/msgpack-python/python3-msgpack_0.3.0-1ubuntu3_amd64.deb Size: 41028 MD5sum: 25ab1d9c723643c749875f556dd8ae70 SHA1: 60ffc36c6c35203d18181a727351ae910c811949 SHA256: 923db5438a736bd784fcd7d5347b9b99a4c6423aef00f7d1db1aa6c4e103446b Description: Python 3 implementation of MessagePack format Homepage: http://pypi.python.org/pypi/msgpack-python/ Description-md5: ea3d1fc1cbb3b7dc6605eb2882af2bf6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-netifaces Priority: optional Section: python Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Mario Izquierdo (mariodebian) Architecture: amd64 Source: netifaces Version: 0.8-3build1 Depends: libc6 (>= 2.4), python3 (<< 3.5), python3 (>= 3.4~) Filename: pool/main/n/netifaces/python3-netifaces_0.8-3build1_amd64.deb Size: 8124 MD5sum: fbb3655aa886747177336e4d70b2611f SHA1: ffb99aceffad45db1b049a1a84a9fa4a3c4eada8 SHA256: adba49aefe66fdcb1ea0dc66da2f4b659a08bb649d7792f6eca5f5fc928bfc3f Description: portable network interface information for Python 3 Homepage: http://alastairs-place.net/projects/netifaces/ Description-md5: 85ec8052d588418ebe5147a6c8ed3b94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-netifaces-dbg Priority: extra Section: debug Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Mario Izquierdo (mariodebian) Architecture: amd64 Source: netifaces Version: 0.8-3build1 Depends: libc6 (>= 2.4), python3-netifaces (= 0.8-3build1), python3-dbg Filename: pool/main/n/netifaces/python3-netifaces-dbg_0.8-3build1_amd64.deb Size: 28536 MD5sum: 4c6a2a14823efa6fbbe088c9e7f849ea SHA1: c5b726ab0c4a6709c2ad929e7e56166e8eaa25f8 SHA256: 3094c9bacdad3eb7a538cb8c05a2c2d9977b7dc8badc8d168951d88edfcc212b Description: portable network interface information for Python 3 (debug extension) Homepage: http://alastairs-place.net/projects/netifaces/ Description-md5: cffdc2ca89f1f9c791e564912fd61860 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-newt Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: amd64 Source: newt Version: 0.52.15-2ubuntu5 Provides: python3.4-newt Depends: libnewt0.52 (= 0.52.15-2ubuntu5), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4) Filename: pool/main/n/newt/python3-newt_0.52.15-2ubuntu5_amd64.deb Size: 18440 MD5sum: 698d56c21778e3e2b9c5e58ea30d078e SHA1: 34b29e21f77bb1b9754bfac79bf4601aeef80a41 SHA256: f59b0714b40b61404ff155b5652fa13e124f819cc097294da84da67c8642d477 Description: NEWT module for Python3 Homepage: https://fedorahosted.org/newt/ Description-md5: ab07f550adcbdc5c4104773a94768660 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-usb Package: python3-newt-dbg Priority: extra Section: debug Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: amd64 Source: newt Version: 0.52.15-2ubuntu5 Depends: libnewt0.52 (= 0.52.15-2ubuntu5), python3-newt (= 0.52.15-2ubuntu5), python3-dbg, libc6 (>= 2.2.5) Filename: pool/main/n/newt/python3-newt-dbg_0.52.15-2ubuntu5_amd64.deb Size: 52138 MD5sum: 83b72f6f89506d7fda8e43159b7d24ba SHA1: fcdee59ad5ece9feaa6b439840b31a5d440af7aa SHA256: 99fcef533592822333ea7bcc56e870d14522659e43648a46a3ac8efe099469a5 Description: NEWT module for Python3 (debug extension) Homepage: https://fedorahosted.org/newt/ Description-md5: ff8d6af5f281073cea370ce33e2fc0b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-nine Priority: extra Section: python Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-nine Version: 0.3.3-2 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-nine/python3-nine_0.3.3-2_all.deb Size: 7756 MD5sum: 9fa51e64f1325437ddf213fa6af36a6b SHA1: 513f8498f98b0e2b7fc8dd699b73580fca399882 SHA256: c9ab1f703d244341710f3e477ebd0a2602345bec5625cf76895fc18713da1eb4 Description: Python 2 / 3 compatibility, like six, but favouring Python 3 Homepage: https://pypi.python.org/pypi/nine Description-md5: 15a0b56c311c97d65ad0ca9425c560b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-nose Priority: optional Section: python Installed-Size: 561 Maintainer: Ubuntu Developers Original-Maintainer: Gustavo Noronha Silva Architecture: all Source: nose Version: 1.3.1-2 Depends: python3-pkg-resources, python3:any (>= 3.3.2-2~), python3 Suggests: python-nose-doc Filename: pool/main/n/nose/python3-nose_1.3.1-2_all.deb Size: 115860 MD5sum: 518f0c30cae93277de07ab3c7f629b0e SHA1: 446c985f680e5e6385a22f8f806799449ccd9942 SHA256: 74b309469b74aebf85516c3b3f10c8e717e5a68d68394dec046e5e18fd4a51a6 Description: test discovery and running for Python3 unittest Homepage: https://nose.readthedocs.org/en/latest/ Description-md5: 6d797fcd415c26ef21491e78c602db0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-numpy Priority: optional Section: python Installed-Size: 8529 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-numpy Version: 1:1.8.1-1ubuntu1 Provides: python3-f2py, python3-numpy-abi9, python3-numpy-api9, python3-numpy-dev, python3.4-numpy Depends: python3 (<< 3.5), python3 (>= 3.4~), python3.4, libblas3 | libblas.so.3, libc6 (>= 2.14), liblapack3 | liblapack.so.3 Suggests: gcc (>= 4:4.6.1-5), gfortran, python-numpy-doc, python3-dev, python3-nose (>= 0.10.1), python3-numpy-dbg Filename: pool/main/p/python-numpy/python3-numpy_1.8.1-1ubuntu1_amd64.deb Size: 1605454 MD5sum: da3a88a29948259b94c0bf34a8875ed6 SHA1: 8864c19227501a01149239b07f18372a0b3fd5e3 SHA256: f722ebd518a4e99c0dc1f78906cd9a151640ea16b485589ec026142a4064ca3e Description: Fast array facility to the Python 3 language Homepage: http://www.numpy.org/ Description-md5: 4fef6b207fcddcc7678c9cb4c3a66bd2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-numpy-dbg Priority: extra Section: debug Installed-Size: 21430 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-numpy Version: 1:1.8.1-1ubuntu1 Replaces: python3-numpy (<< 1:1.7.1-1) Depends: python3-dbg, python3-numpy (= 1:1.8.1-1ubuntu1), libblas3 | libblas.so.3, libc6 (>= 2.14), liblapack3 | liblapack.so.3 Breaks: python3-numpy (<< 1:1.7.1-1) Filename: pool/main/p/python-numpy/python3-numpy-dbg_1.8.1-1ubuntu1_amd64.deb Size: 3422358 MD5sum: febea17bfca45159624d8c62cee865aa SHA1: 0b5227cd5480d95f5c12b8cd8b41e96610d2a0ed SHA256: c87e9cf1c5af1d4af9b7b8ebc1f1b6c6378383eade90d70721c10881a707bb18 Description: Fast array facility to the Python 3 language (debug extension) Homepage: http://www.numpy.org/ Description-md5: 874df4ab0f921eb452ea913224b6cf17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-oauthlib Priority: optional Section: python Installed-Size: 403 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-oauthlib Version: 0.6.1-1 Depends: python3:any (>= 3.3.2-2~), python3-crypto Filename: pool/main/p/python-oauthlib/python3-oauthlib_0.6.1-1_all.deb Size: 56668 MD5sum: 48817827586511e44435126a565f0550 SHA1: e46318fc154247f4591586386e57bb42004dca7c SHA256: 2dc669b462f0a8c099dc6cf1d1dd2bbb9dc9dbd45cd1a8bac18a3abf3bfd45ac Description: generic, spec-compliant implementation of OAuth for Python3 Homepage: https://github.com/idan/oauthlib Description-md5: 0c5e634eb3a785d591838929d5800d3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-oneconf Priority: extra Section: python Installed-Size: 142 Maintainer: Didier Roche Architecture: all Source: oneconf Version: 0.3.7 Depends: python3:any (>= 3.3.2-2~), oneconf-common, python3-dbus, python3-oauthlib, python3-gi, python3-apt, python3-piston-mini-client, python3-httplib2, python3-xdg Filename: pool/main/o/oneconf/python3-oneconf_0.3.7_all.deb Size: 19436 MD5sum: 5b7b4b5be3668d957b5053fd2758d064 SHA1: fcb9487cd5c2546826ddcc341c30fb511af727e9 SHA256: 90f8c9994f0a22658556da0ef3f157d58334197ff73d48afde51e3a5816429d6 Description: synchronize your configuration data over the network (Python 3) Description-md5: 6a6fa52009f245ee2dacf465b84386dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-openssl Priority: optional Section: python Installed-Size: 417 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyopenssl Version: 0.13-2ubuntu6 Depends: python3 (<< 3.5), python3 (>= 3.4~), libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0) Suggests: python-openssl-doc, python3-openssl-dbg Filename: pool/main/p/pyopenssl/python3-openssl_0.13-2ubuntu6_amd64.deb Size: 81316 MD5sum: acb8c77d8edd1ea1c9c7e7e9ca54eb2f SHA1: b32a1571095cc2b73d607f09da8a6ebd011fcdfd SHA256: bfb2849e3db8fe1832abd6647ef17643a9d71458ffce711bae6a8d9c5b40e9ae Description: Python 3 wrapper around the OpenSSL library Homepage: http://launchpad.net/pyopenssl Description-md5: d42552511383aa2a691d5994e533fb0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-openssl-dbg Priority: extra Section: debug Installed-Size: 1093 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyopenssl Version: 0.13-2ubuntu6 Depends: python3-openssl (= 0.13-2ubuntu6), python3-dbg, libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0) Filename: pool/main/p/pyopenssl/python3-openssl-dbg_0.13-2ubuntu6_amd64.deb Size: 216292 MD5sum: 6ab30295a19015e37abcc8c4d06e22fd SHA1: d2469e70d59c22b9552074e00bae4d2e7032533a SHA256: 081510fdfa6a2c1e2b09cffb509743bc1c3370fe238d3e82c58651226bec154a Description: Python 3 wrapper around the OpenSSL library (debug extension) Homepage: http://launchpad.net/pyopenssl Description-md5: 74d30286345f4f6d1e73e3737b37837e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-packagekit Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: all Source: packagekit Version: 0.8.12-1ubuntu5 Depends: python3-dbus, python3:any (>= 3.3.2-2~) Recommends: packagekit Filename: pool/main/p/packagekit/python3-packagekit_0.8.12-1ubuntu5_all.deb Size: 17894 MD5sum: 6cff8daf4101eea41119f888297c6f31 SHA1: 637667def5bbe65cb6126fd3c2eefaff5c2f13f6 SHA256: 114dd8e19cd0056baef941d7976fc8a4706ad6e6cd28cf269d41049fbeeca78d Description: PackageKit backend Python bindings Homepage: http://www.packagekit.org Description-md5: 644eb2b6272644fef74823bbe4973423 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-desktop Package: python3-pam Priority: optional Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Dima Barsky Architecture: amd64 Source: python-pam Version: 0.4.2-13.1ubuntu3 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libpam0g (>= 0.99.7.1) Suggests: python3-pam-dbg Filename: pool/main/p/python-pam/python3-pam_0.4.2-13.1ubuntu3_amd64.deb Size: 9280 MD5sum: 828c983b8c9cb4ccf168f25b352b23ad SHA1: 69cd2885493568c01e0690811cd6f36a60f1a895 SHA256: 15b1409b8193e31d4612350efc86a0dcb61d167aeb29e3e24ea72aa9a5e02b7d Description: Python interface to the PAM library Description-md5: 4bae7680ea768021b6726c1ec6ac6cb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: python3-pam-dbg Priority: extra Section: python Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Dima Barsky Architecture: amd64 Source: python-pam Version: 0.4.2-13.1ubuntu3 Depends: python3-pam (= 0.4.2-13.1ubuntu3), python3-dbg (>= 3.4~), python3-dbg (<< 3.5), libc6 (>= 2.4), libpam0g (>= 0.99.7.1) Filename: pool/main/p/python-pam/python3-pam-dbg_0.4.2-13.1ubuntu3_amd64.deb Size: 6838 MD5sum: a3fb761b66a605aba26d0701f6489cbc SHA1: 72423cce46db7bc87c01d2404049e49ae42beec5 SHA256: bac51e7c0be758eb5d3b5e0f043f345410c38845047996282c278dbba0c5f3d9 Description: Python interface to the PAM library (debug extension) Description-md5: e1a2c6ee17cff41566b957899f4578b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-paste Priority: optional Section: python Installed-Size: 2174 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: paste Version: 1.7.5.1-6ubuntu3 Depends: python3:any (>= 3.3.2-2~), python3-pkg-resources, python3-tempita Recommends: python3-openssl Suggests: libapache2-mod-wsgi, libapache2-mod-python (>= 3.2.8-3), libapache2-mod-scgi, libjs-mochikit, libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/paste/python3-paste_1.7.5.1-6ubuntu3_all.deb Size: 362986 MD5sum: b383bcbad83fb5fe54091c912cf99d6d SHA1: a35bd496573beb9a1afca37ac430cf1f9dcdf1c5 SHA256: c1e60329b9fbfa6cd43b2699d2b276c0c8d472c0b1ef2cd3ac89032476ae1c8f Description: tools for using a Web Server Gateway Interface stack with Python 3 Homepage: http://pythonpaste.org/ Description-md5: fa71556ec57e7359b1902a0876ffecf2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pastedeploy Priority: optional Section: python Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pastedeploy Version: 1.5.2-1 Depends: python3:any (>= 3.3.2-2~), python-pastedeploy-tpl (= 1.5.2-1), python3-paste, python3-pkg-resources Filename: pool/main/p/pastedeploy/python3-pastedeploy_1.5.2-1_all.deb Size: 13378 MD5sum: 683031d94313a9cac6fce25e5d0c6ac0 SHA1: b3b06370a844c1c871fe0a139c64811d5d170640 SHA256: a7bfd617bd875f9954866248015fd6f53c454a0e93cb104a982b27d0147e84ec Description: load, configure, and compose WSGI applications and servers Enhances: python3-paste Homepage: http://pythonpaste.org/deploy/ Description-md5: 51f37996833fa30d191688b62388d7a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pbr Priority: optional Section: python Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-pbr Version: 0.7.0-0ubuntu2 Depends: python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-pbr/python3-pbr_0.7.0-0ubuntu2_all.deb Size: 35756 MD5sum: e83565c796126359bf69595855e39f3f SHA1: d8e4da8f09214a9d449494a91d364cf1f7182baa SHA256: c9dd676c9bdde2e738b8f82d6de2fe87c8fabb5810a374e67c816774b8b8fe2f Description: inject useful and sensible default behaviors into setuptools - Python 3.x Homepage: http://pypi.python.org/pypi/pbr Description-md5: 954209d929f46eb9cbeeceb0de9d8944 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pep8 Priority: optional Section: python Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: David Watson Architecture: all Source: pep8 Version: 1.4.6-1.1build1 Depends: python3:any (>= 3.3.2-2~), python3-setuptools Filename: pool/main/p/pep8/python3-pep8_1.4.6-1.1build1_all.deb Size: 26010 MD5sum: eb7a72c035268e959708291aa32a11b9 SHA1: ba85b0a7562c0f5822771cd0e1e07da78b6e83ea SHA256: 85d7935588b3912229c14d89c3335966f064b76de917e1313fcaea61c2ca6877 Description: Python PEP 8 code style checker - python3 Homepage: http://pypi.python.org/pypi/pep8 Description-md5: e4b7300e38224b873009652032b23796 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pexpect Priority: optional Section: python Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Ganesan Rajagopal Architecture: all Source: pexpect Version: 3.1-1 Depends: python3:any (>= 3.3.2-2~) Suggests: python-pexpect-doc Filename: pool/main/p/pexpect/python3-pexpect_3.1-1_all.deb Size: 37834 MD5sum: 1854d3c62d1155981e02976170c7ddbf SHA1: b8dbabc3a78abf2ad96c61e149fd0f38ac7a8254 SHA256: b36f9187b31d7120ad3405e84220f6a82936575b4e7333d02c142412d772226c Description: Python 3 module for automating interactive applications Homepage: http://www.noah.org/wiki/Pexpect Description-md5: 941a9df3cba3bf3600012debef545be6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, ubuntustudio-desktop Package: python3-pil Priority: optional Section: python Installed-Size: 1114 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging (<< 1.1.7+2.0.0-1.1) Provides: python3-pillow Depends: python3 (<< 3.5), python3 (>= 3.4~), mime-support | python3-pil.imagetk, libc6 (>= 2.14), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libtiff5 (>= 4.0.3), libwebp5, libwebpmux1, zlib1g (>= 1:1.1.4) Suggests: python-pil-doc, python3-pil-dbg Conflicts: python3-imaging (<< 1.1.7+2.0.0-1.1) Breaks: python3-imaging (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-pil_2.3.0-1ubuntu3_amd64.deb Size: 281270 MD5sum: 4f9b9676915f45c82cf41a8c3daeb229 SHA1: b270599b4904d04f605c7cf882c84ff3636735de SHA256: 663240f3d8e4eb20e5135426c33c52c9850a98280a2ab65daa9a04a7839cd261 Description: Python Imaging Library (Python3) Description-md5: 159039260b5a620ec3a8b13546dd140a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pil-dbg Priority: extra Section: debug Installed-Size: 1909 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging-dbg (<< 1.1.7+2.0.0-1.1) Depends: python3-pil (= 2.3.0-1ubuntu3), python3-dbg, libc6 (>= 2.14), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libtiff5 (>= 4.0.3), libwebp5, libwebpmux1, zlib1g (>= 1:1.1.4) Breaks: python3-imaging-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-pil-dbg_2.3.0-1ubuntu3_amd64.deb Size: 420018 MD5sum: 2275704c7f4d0a5b2046c74346cc7e7c SHA1: c4fcfaea30fcecb5b16e2a742f51480881a7571d SHA256: 3e27257d02cb4b8e907f5b9b607a522104bb663f10caf5c4f0f038d62e12c1c1 Description: Python Imaging Library (Python3 debug extension) Description-md5: 5fc4836e54ac545a1fd0918d16f207b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pil.imagetk Priority: optional Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging-tk (<< 1.1.7+2.0.0-1.1) Depends: python3-pil (= 2.3.0-1ubuntu3), python3-tk (>= 2.5.2-1.1), python3 (<< 3.5), python3 (>= 3.4~), libc6 (>= 2.3.4), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Suggests: python-pil-doc, python3-pil.imagetk-dbg Breaks: python3-imaging-tk (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-pil.imagetk_2.3.0-1ubuntu3_amd64.deb Size: 7398 MD5sum: 59980d3a2b26234567835c5b0a618608 SHA1: 9c95e5f25bd7c60d00a643ce7a261d88f2d4d2f8 SHA256: ab98d335c0234418ce455c7c01af6c47efc7496d81038b3e40e79ce118fab30c Description: Python Imaging Library - ImageTk Module (Python3) Description-md5: ea3aa1a359c8f5a637ed1b909420a7d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pil.imagetk-dbg Priority: extra Section: debug Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging-tk-dbg (<< 1.1.7+2.0.0-1.1) Depends: python3-pil.imagetk (= 2.3.0-1ubuntu3), python3-pil-dbg (= 2.3.0-1ubuntu3), python3-dbg, libc6 (>= 2.2.5), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Breaks: python3-imaging-tk-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-pil.imagetk-dbg_2.3.0-1ubuntu3_amd64.deb Size: 13182 MD5sum: 5d80ed983dd3a92569f4ce728f289b0a SHA1: 1c50d12814a725111f18757999aacf3f036d6a13 SHA256: d2d535fcc765514ab4249fc4fe870642b811527e5c8683ca7004ecec63355914 Description: Python Imaging Library - ImageTk Module (Python3 debug extension) Description-md5: afc8be0b437fa83e6cf612a22e898585 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-piston-mini-client Priority: extra Section: python Installed-Size: 114 Maintainer: Michael Vogt Architecture: all Source: piston-mini-client Version: 0.7.5-0ubuntu2 Depends: python3:any (>= 3.3.2-2~), python3-httplib2, python3-oauthlib Filename: pool/main/p/piston-mini-client/python3-piston-mini-client_0.7.5-0ubuntu2_all.deb Size: 18406 MD5sum: 887fba7d2e9fd6cfe5227fda75bdef33 SHA1: 9027fb4385ada5efa3b091ca48812ccc8957d0c7 SHA256: 6f353c8819a89f1f6fbb145aa3a33840f8fb689a89ef333d9a6680529b99e17b Description: library for writing clients for Django's Piston REST APIs Homepage: https://launchpad.net/piston-mini-client Description-md5: a66f84fbd98b83892c23fbd1e1a149f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-pkg-resources Priority: optional Section: python Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-setuptools Version: 3.3-1ubuntu1 Provides: python3.4-setuptools Depends: python3:any (>= 3.4), python3:any (<< 3.5) Suggests: python3-setuptools Conflicts: python-pkg-resources (= 0.6.10-2) Filename: pool/main/p/python-setuptools/python3-pkg-resources_3.3-1ubuntu1_all.deb Size: 31646 MD5sum: c1468614d42b4b253add1ab32fef2b44 SHA1: b80a3530b3e84eb2ff159ec990b57c361285a512 SHA256: 36ee08192a61a9b8b8a80bbcdb34df5ae4ce10694ef5e52d7d4d37d031e46677 Description: Package Discovery and Resource Access using pkg_resources Homepage: https://pypi.python.org/pypi/setuptools Description-md5: 455aab7092c23bbca0a002df43ba97e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-plainbox Priority: optional Section: python Installed-Size: 4840 Maintainer: Zygmunt Krynicki Architecture: all Source: plainbox Version: 0.5.3-2 Depends: python3-lxml, python3:any (>= 3.3.2-2~), python3, plainbox-secure-policy (= 0.5.3-2) | plainbox-insecure-policy (= 0.5.3-2), policykit-1, python3-pkg-resources Suggests: python3-xlsxwriter Breaks: python3-checkbox-ng (<< 0.3) Filename: pool/main/p/plainbox/python3-plainbox_0.5.3-2_all.deb Size: 445202 MD5sum: a74bcffc266efe54eb54cae7bc7d09bb SHA1: b638b51320ee96c27bc13d151627d0e6f940359a SHA256: 6b0ee60a01537c7734e9f30e295a44b9330832cb49774018fa4b2a4cb74bfab3 Description: toolkit for software and hardware testing (python3 module) Homepage: http://launchpad.net/checkbox Description-md5: 67242ab186948ed7b8b91f066b359564 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-plainbox-doc Priority: extra Section: doc Installed-Size: 4594 Maintainer: Zygmunt Krynicki Architecture: all Source: plainbox Version: 0.5.3-2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/plainbox/python3-plainbox-doc_0.5.3-2_all.deb Size: 362222 MD5sum: 0c8e3bc81d6cb7706cc3d2a16950feaa SHA1: 0a8376a9f3ce74d8a2cc05219ec404ba988fd4df SHA256: fa5a64efc950f21ae12e96a22214e3ba4b2d3576474de6f80ed5fb8215c9af58 Description: toolkit for software and hardware testing (documentation) Homepage: http://launchpad.net/checkbox Description-md5: a6601b01e3fd5c4c6b904f4ccf8f40e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-ply Priority: optional Section: python Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Fontaine Architecture: all Source: ply Version: 3.4-3ubuntu2 Provides: python3-ply-lex-3.2, python3-ply-yacc-3.2 Depends: python3:any (>= 3.3.2-2~) Suggests: python-ply-doc, python3-pkg-resources Filename: pool/main/p/ply/python3-ply_3.4-3ubuntu2_all.deb Size: 44838 MD5sum: 4b81df23f6a245dcb8f157391b1630b5 SHA1: b1ceb95b10e51958493b1a3883964ae5e3a97729 SHA256: 3c4fc2acb8f24b33a8372b9e4e35cede01eba7c587aa2a15e79b684c3c535933 Description: Lex and Yacc implementation for Python3 Homepage: http://www.dabeaz.com/ply/ Description-md5: 075b704c2a01fdf59a5ef4845058417b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-polib Priority: optional Section: python Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Angel Abad Architecture: all Source: polib Version: 1.0.4-1 Depends: python3:any (>= 3.3.2-2~) Suggests: python-polib-doc Filename: pool/main/p/polib/python3-polib_1.0.4-1_all.deb Size: 16090 MD5sum: cf75b25f8ca18588d035caf27f5b8c49 SHA1: b8405d579bd6321df2c28d05c752059620740bfa SHA256: 5d4b7b20ef7ab6ae7ae5eebadef1a706eb3212b02fa1856bd837314de1934699 Description: Python 3 library to parse and manage gettext catalogs Homepage: http://bitbucket.org/izi/polib/src/ Description-md5: 4b7d3ffa09128c18b5c385ce2f5dcfa9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-prettytable Priority: optional Section: python Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: prettytable Version: 0.7.2-2ubuntu2 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/prettytable/python3-prettytable_0.7.2-2ubuntu2_all.deb Size: 19948 MD5sum: 280c7b0ae1426e36efae63be8d7d498d SHA1: a7e1fe06b868c487c05268417e423513635d3527 SHA256: 9b9476c3fd2f0b948e4c7035f44988de1a8be5041a8ef2769ca4368c66feb273 Description: library to represent tabular data in visually appealing ASCII tables (Python3) Homepage: http://code.google.com/p/prettytable/ Description-md5: fad39130f093d82f504d5975b6a37cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-problem-report Priority: optional Section: python Installed-Size: 173 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/a/apport/python3-problem-report_2.14.1-0ubuntu3_all.deb Size: 9078 MD5sum: 5ae094e735f1289dacd0bc811568a08e SHA1: b333f36f69eb0a1424d2d54886fa009056195c56 SHA256: 287250a9fb309a3ed8e7014c7868698a37d893f3c6e147b93cd56485c1d7a230 Description: Python 3 library to handle problem reports Homepage: https://wiki.ubuntu.com/Apport Description-md5: 9c38d91ac205b1680832021377d9156d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-psutil Priority: optional Section: python Installed-Size: 267 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-psutil Version: 1.2.1-1ubuntu2 Depends: libc6 (>= 2.13), python3 (>= 3.4~), python3 (<< 3.5) Filename: pool/main/p/python-psutil/python3-psutil_1.2.1-1ubuntu2_amd64.deb Size: 45150 MD5sum: 6bbd3195f94ae56b166d2641f0cd095d SHA1: c91ab44e4a291e26300f38ad16a9faaa1e7097ea SHA256: 6c2d53c052e46b96d78ec0ed564dc07ccd525bfce8831df0b47e79fb79325b15 Description: module providing convenience functions for managing processes (Python3) Homepage: http://code.google.com/p/psutil/ Description-md5: 1afa4bbc2f865e75ea83252d8a6a0b39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop Package: python3-psycopg2 Priority: optional Section: python Installed-Size: 589 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: amd64 Source: psycopg2 Version: 2.4.5-1build5 Provides: python3.4-psycopg2 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libpq5 (>= 8.3~) Suggests: python-psycopg2-doc Filename: pool/main/p/psycopg2/python3-psycopg2_2.4.5-1build5_amd64.deb Size: 112006 MD5sum: bec897fa998b2e136373f54566c94385 SHA1: b21385814322ccecf65973d5fcc3c696ea821b32 SHA256: 26b9ef8db0596eafb1729fd44727c236311bfb22eb0e158ad70fc8d76f246540 Description: Python 3 module for PostgreSQL Homepage: http://initd.org/projects/psycopg Description-md5: 8f5ccf5f38f0965d243851578ccea66a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-psycopg2-dbg Priority: extra Section: debug Installed-Size: 1126 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: amd64 Source: psycopg2 Version: 2.4.5-1build5 Depends: python3-psycopg2 (= 2.4.5-1build5), python3-dbg, libc6 (>= 2.14), libpq5 (>= 8.3~) Filename: pool/main/p/psycopg2/python3-psycopg2-dbg_2.4.5-1build5_amd64.deb Size: 229122 MD5sum: cb4312d1066923fc07db499dd3489ea6 SHA1: ee823b65db19225f3c7610660860ed2d80993f6f SHA256: a105ef3eaf809da1285ac3f818cb127a5f7ef1b852d342eac8e8c3323c89f10a Description: Python 3 module for PostgreSQL (debug extension) Homepage: http://initd.org/projects/psycopg Description-md5: 74279b50d34b063ee5a8c948b356e988 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-py Priority: optional Section: python Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: codespeak-lib Version: 1.4.20-1 Depends: python3:any (>= 3.3.2-2~), python3-pkg-resources Suggests: subversion, python3-pytest Filename: pool/main/c/codespeak-lib/python3-py_1.4.20-1_all.deb Size: 62446 MD5sum: abc7b442c1053dd301be7e54c34ff989 SHA1: 85e1f62da3372c6b8c1f86908e51f6177da0b999 SHA256: 2ea019ee854690269a9c0fc951c3707dfee15e79278e5a5ad15b2675dcfaced8 Description: Advanced Python development support library (Python 3) Homepage: https://bitbucket.org/hpk42/py Description-md5: cdfb445e8352c81d902426be589c18b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyatspi Priority: optional Section: python Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: pyatspi Version: 2.10.0+dfsg-1 Replaces: python3-pyatspi2 (<< 2.7.2+dfsg-2) Depends: python3:any (>= 3.3.2-2~), python3-gi (>= 2.90.1), gir1.2-atspi-2.0 (>= 2.1.4), libatk-adaptor, libgail-common Breaks: python3-pyatspi2 (<< 2.7.2+dfsg-2) Filename: pool/main/p/pyatspi/python3-pyatspi_2.10.0+dfsg-1_all.deb Size: 36624 MD5sum: 7612a6f20542f95ecd933678f335f40c SHA1: 0f13db96632ffc0a6f47933fdb79de3d4eeb361c SHA256: 796ce30bac907e77e0a6ea9d29dd9104ea9ab56c8cdee331bca0a35321d0e303 Description: Assistive Technology Service Provider Interface - Python3 bindings Homepage: http://live.gnome.org/Accessibility Description-md5: 9895ce61d4d78b37ccb3d6c3eeaf0672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-pycurl Priority: optional Section: python Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pycurl Version: 7.19.3-0ubuntu3 Provides: python3.4-pycurl Depends: libc6 (>= 2.15), libcurl3-gnutls (>= 7.18.0), python3 (<< 3.5), python3 (>= 3.4~) Suggests: libcurl4-gnutls-dev, python3-pycurl-dbg Filename: pool/main/p/pycurl/python3-pycurl_7.19.3-0ubuntu3_amd64.deb Size: 47494 MD5sum: 4a8692a3639a46f0c512f5d77f42ff16 SHA1: 2d9b075a65eb4967dedbcd2fe5bcd1e531200e12 SHA256: 8d08bc6e53003991ee360b747ff678f104137ae5df6ebf6ede5725941395e912 Description: Python 3 bindings to libcurl Homepage: http://pycurl.sourceforge.net Description-md5: 3c11f7998c99981f3f186f85353ff864 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-pycurl-dbg Priority: extra Section: debug Installed-Size: 423 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pycurl Version: 7.19.3-0ubuntu3 Provides: python3.4-pycurl-dbg Depends: libc6 (>= 2.14), libcurl3-gnutls (>= 7.18.0), python3-dbg (>= 3.4~), python3-dbg (<< 3.5), python3-pycurl (= 7.19.3-0ubuntu3) Filename: pool/main/p/pycurl/python3-pycurl-dbg_7.19.3-0ubuntu3_amd64.deb Size: 95280 MD5sum: 9d19d90f32b9beda040a567af7628a52 SHA1: be5375382e58bc5cbb34cdb0b5d5833cc3cb1e79 SHA256: 777b98bf82dc478b03b6bbb8fb0d590d26abf8650f0dfa86114343e72fcecb95 Description: Python 3 bindings to libcurl (debug extension) Homepage: http://pycurl.sourceforge.net Description-md5: 020e24b9cdd1da058ef79afec2536753 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pygments Priority: optional Section: python Installed-Size: 2214 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pygments Version: 1.6+dfsg-1ubuntu1 Depends: python3:any (>= 3.3.2-2~) Recommends: python3-pkg-resources Suggests: ttf-bitstream-vera Filename: pool/main/p/pygments/python3-pygments_1.6+dfsg-1ubuntu1_all.deb Size: 457884 MD5sum: da5c8425d3640396acabcf05e4c0ad76 SHA1: fdc661c252c541ab56a7664dca841b68c1723646 SHA256: 3f7534325d5116bf0886a8c45a9adf0476464d5bb3632c683fcc9a252509bb6f Description: syntax highlighting package written in Python 3 Homepage: http://pygments.org/ Description-md5: cf7d5e943a9900549d6bd386f387a547 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyicu-dbg Priority: extra Section: debug Installed-Size: 31 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyicu Version: 1.5-2ubuntu4 Depends: python3-icu-dbg (= 1.5-2ubuntu4) Filename: pool/main/p/pyicu/python3-pyicu-dbg_1.5-2ubuntu4_amd64.deb Size: 3226 MD5sum: 6a67da4e453696bdda3be342758cd241 SHA1: 4a69a090c108fcce52d5d9b79de41137c2ba5885 SHA256: abe1307d88f0e79e3d9ad42a4a09d6adb8ff5b82ce8bc42a398c2032625b557d Description: dummy transitional package for PyICU Python 3 debug extension Homepage: http://pyicu.osafoundation.org/ Description-md5: f7605d3edb8ab9afe7804e0328dbce2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyinotify Priority: optional Section: python Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Source: pyinotify Version: 0.9.4-1build1 Depends: python3:any (>= 3.3.2-2~) Suggests: python-pyinotify-doc Filename: pool/main/p/pyinotify/python3-pyinotify_0.9.4-1build1_all.deb Size: 24576 MD5sum: e8309e76b7e1e182a1ca9b5dba397d9d SHA1: 92c36209217b84108bd3570f58899b363611c0b7 SHA256: 13b0ae0d48c00e130883fac1fa89be78f4759b42ffdaeb6fb86c24ae65ba019e Description: simple Linux inotify Python bindings Homepage: https://github.com/seb-m/pyinotify Description-md5: 46f87aef5fa9a629936cb4431ffc13f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pylibacl Priority: optional Section: python Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: amd64 Source: python-pylibacl Version: 0.5.1-1.1build4 Provides: python3.4-pylibacl Depends: python3 (>= 3.4~), python3 (<< 3.5), libacl1 (>= 2.2.51-8), libc6 (>= 2.2.5) Suggests: python3-pylibacl-dbg Filename: pool/main/p/python-pylibacl/python3-pylibacl_0.5.1-1.1build4_amd64.deb Size: 14650 MD5sum: c938891037e2bc8dcd1194cc28b41b9a SHA1: 5b4bc3359cb8b5dc7f537ca6ad8f61a769d21371 SHA256: 34d5033ad85fbf62f147bb99b536ca51fceaf18878d32454fc4405c7730e9816 Description: module for manipulating POSIX.1e ACLs (Python3 version) Homepage: http://pylibacl.k1024.org/ Description-md5: 150c2470af88237733d115a7b3b99537 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pylibacl-dbg Priority: extra Section: debug Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: amd64 Source: python-pylibacl Version: 0.5.1-1.1build4 Depends: python3-pylibacl (= 0.5.1-1.1build4), python3-dbg, libacl1 (>= 2.2.51-8), libc6 (>= 2.2.5) Filename: pool/main/p/python-pylibacl/python3-pylibacl-dbg_0.5.1-1.1build4_amd64.deb Size: 33696 MD5sum: 064e528cbaabe7866063eae4c936eff2 SHA1: 5a7ea738457059ae8ac90cee788e4fe518c32579 SHA256: a30735559b6f859ac35b8d52b6a13253097f8ff50081c11bdbc5425e760ee317 Description: module for manipulating POSIX.1e ACLs (Python3 debug extension) Homepage: http://pylibacl.k1024.org/ Description-md5: 4752aba3c0dd7fe7b799ad54f247a2f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pymongo Priority: optional Section: python Installed-Size: 459 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: amd64 Source: pymongo Version: 2.6.3-1build1 Depends: python3-bson (= 2.6.3-1build1), python3:any (>= 3.3.2-2~) Recommends: python3-gridfs (>= 2.6.3-1build1), python3-pymongo-ext Filename: pool/main/p/pymongo/python3-pymongo_2.6.3-1build1_amd64.deb Size: 71928 MD5sum: 7f9bdd725c2fa69f0a07135e61347013 SHA1: e300c2de1de8d6fc58191be05c44d44c119da3f8 SHA256: 2efd6b0e38fdb5126b2df6822e2dd17d02962b3db40fdf2a861153788d836867 Description: Python3 interface to the MongoDB document-oriented database Homepage: http://api.mongodb.org/python/ Description-md5: a5eda4845154bda48840dc515daa29c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pymongo-ext Priority: optional Section: python Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: amd64 Source: pymongo Version: 2.6.3-1build1 Depends: libc6 (>= 2.14), python3-bson (= 2.6.3-1build1), python3-pymongo (= 2.6.3-1build1) Recommends: python3-gridfs (>= 2.6.3-1build1) Filename: pool/main/p/pymongo/python3-pymongo-ext_2.6.3-1build1_amd64.deb Size: 9756 MD5sum: faaaa07ff398e16ea2e5cd85ecf3334c SHA1: 28921b065a2768e2091880a2c83380d54a7e0e51 SHA256: 61eadfdd7572c8876bc061bb159f4a4cecc245f3a144d1afabceaf3f67300ed3 Description: C-coded extension to the python3-pymongo package Homepage: http://api.mongodb.org/python/ Description-md5: 1557972b4a71e02b5326a03acc620861 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyparsing Priority: optional Section: python Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Kevin Coyner Architecture: all Source: pyparsing Version: 2.0.1+dfsg1-1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/pyparsing/python3-pyparsing_2.0.1+dfsg1-1build1_all.deb Size: 34412 MD5sum: 3e43e8288f022b10406526723f7cc705 SHA1: 6fe36d73c0ea581ddc01e02f983d117fe8b724dc SHA256: 15a1fc91fcf9a19820f7019ab049d2d8771ce7c0e978bd45a4ed41437e20e108 Description: Python parsing module, Python3 package Homepage: http://pyparsing.wikispaces.com/ Description-md5: 1744489b67dc2e0fe177bd113a785765 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-pyqt4 Priority: optional Section: python Installed-Size: 13779 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8.0-1~), libqt4-declarative (>= 4:4.8.0-1~), libqt4-designer (>= 4:4.8.0-1~), libqt4-help (>= 4:4.8.0-1~), libqt4-network (>= 4:4.8.0-1~), libqt4-script (>= 4:4.8.0-1~), libqt4-scripttools (>= 4:4.8.0-1~), libqt4-svg (>= 4:4.8.0-1~), libqt4-test (>= 4:4.8.0-1~), libqt4-xml (>= 4:4.8.0-1~), libqt4-xmlpatterns (>= 4:4.8.0-1~), libqtassistantclient4 (>= 4.6.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libqtwebkit4, libstdc++6 (>= 4.1.1), sip-py3api-11.0 Suggests: python3-pyqt4-dbg Breaks: python3-sip (<< 4.13.1~) Filename: pool/main/p/python-qt4/python3-pyqt4_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 3121234 MD5sum: 7ea54007eb752922f1d6d4109d3ec123 SHA1: fb30eee257027ab43093d77a124860b884802b91 SHA256: 806e13bbd732b688ceb442cec17e6bcf33e23c33ce0d33227d5131889434730d Description: Python3 bindings for Qt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: a3750c4f6328346ce71d9a03b54d7309 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: python3-pyqt4-dbg Priority: extra Section: debug Installed-Size: 117819 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt4 (= 4.10.4+dfsg-1ubuntu1), python3-sip-dbg, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8.0-1~), libqt4-declarative (>= 4:4.8.0-1~), libqt4-designer (>= 4:4.8.0-1~), libqt4-help (>= 4:4.8.0-1~), libqt4-network (>= 4:4.8.0-1~), libqt4-script (>= 4:4.8.0-1~), libqt4-scripttools (>= 4:4.8.0-1~), libqt4-svg (>= 4:4.8.0-1~), libqt4-test (>= 4:4.8.0-1~), libqt4-xml (>= 4:4.8.0-1~), libqt4-xmlpatterns (>= 4:4.8.0-1~), libqtassistantclient4 (>= 4.6.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libqtwebkit4, libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-pyqt4-dbg_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 37284566 MD5sum: 8d348ce0bbaa0088d7a266a28f3fd417 SHA1: 9196ffb974606ddd2df5349bfcfabc4f5a992400 SHA256: 47086bdc0889013c0bbbefe8e1f1cb78f7c123ae232fc644b90067c9d2c8c1c3 Description: Python3 bindings for Qt4 (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 7d4d2171d05b69bd918ed7dacd9ed5b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.phonon Priority: optional Section: python Installed-Size: 453 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-pyqt4 (= 4.10.4+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libphonon4 (>= 4:4.6.0really4.4.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1), phonon Filename: pool/main/p/python-qt4/python3-pyqt4.phonon_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 97530 MD5sum: 14bbc40319b9bbef9d5a94edc8c458b2 SHA1: ee2b01aa23fa3ee4b733d8cbc5cc10148a3c1c9e SHA256: 520acaac470669a535e44610d28a44ee7fc1985b6e6fb02295774ca95f86a1d7 Description: Python3 bindings for Phonon Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: c8dba490b57e32fdada5d1908c8d054d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.phonon-dbg Priority: extra Section: debug Installed-Size: 5868 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt4-dbg (= 4.10.4+dfsg-1ubuntu1), python3-pyqt4.phonon (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libphonon4 (>= 4:4.6.0really4.4.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1), phonon Filename: pool/main/p/python-qt4/python3-pyqt4.phonon-dbg_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 2023506 MD5sum: 4466c2d6751c112db8d097274ccba7dd SHA1: dac46dfbd7cdf297e7853cc07ebb11c3844e54e8 SHA256: e26055481127e3596b4363b78076456f3476c188ee82ee8722409952a215c29c Description: Python3 bindings for Phonon (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: d4a8e90ea615a14c4ab27c24deeedc98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.qtopengl Priority: optional Section: python Installed-Size: 353 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-pyqt4 (= 4.10.4+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-opengl (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-pyqt4.qtopengl_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 78626 MD5sum: 23603df4c419c411a087296e5805f174 SHA1: ac785c5d3ec8bf4000472ce52806d6fde63fd99c SHA256: cf5e040f010b28fc70ba56a41d60589de67d274baca8792ebc5cbe8343ebcdbb Description: Python 3 bindings for Qt4's OpenGL module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 941ce488b9c7ee457d77dd08e34bec2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.qtopengl-dbg Priority: extra Section: debug Installed-Size: 3806 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt4-dbg (= 4.10.4+dfsg-1ubuntu1), python3-pyqt4.qtopengl (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-opengl (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-pyqt4.qtopengl-dbg_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 1360752 MD5sum: db08b3a6a366e52745c4ced25bf571e5 SHA1: e34b5461b224d785c95f43563a1f0cb24270d2d3 SHA256: dd1dd58aa22ac2affaa592f305cef3583eafa2fb80e48f2fe7069e55851eefa0 Description: Python 3 bindings for Qt4's OpenGL module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: f21bcd81a1a6d6bd14598248969c70de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.qtsql Priority: optional Section: python Installed-Size: 392 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-pyqt4 (= 4.10.4+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libgcc1 (>= 1:4.1.1), libqt4-sql (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-pyqt4.qtsql_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 90750 MD5sum: bbdbe5ef5934806bce3ee088e877f70f SHA1: 50beb6b4c172b4a3739d4ced53802a32ff3b29a3 SHA256: 7399693d31349e66f71e73fc953a797a533a79858002db454d0d3eabf9b19ea5 Description: Python3 bindings for PyQt4's SQL module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 74f26eb2822f3a53ab3d2d5ee34563d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.qtsql-dbg Priority: extra Section: debug Installed-Size: 4237 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt4-dbg (= 4.10.4+dfsg-1ubuntu1), python3-pyqt4.qtsql (= 4.10.4+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt4-sql (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-pyqt4.qtsql-dbg_4.10.4+dfsg-1ubuntu1_amd64.deb Size: 1485960 MD5sum: a026a2429b8d274065824d7ff626f394 SHA1: 64db72f399d937ac8849213353c38b14ea0b9dd1 SHA256: d0c19ea4c258dd8f6de981a3eebda7d3d198c030d34da3763b461fd6e3e45e9f Description: Python3 bindings for PyQt4's SQL module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 36d3f4cd746b959da12c143ba1a1dc23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5 Priority: optional Section: python Installed-Size: 14131 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libpython3.4 (>= 3.4~b1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5designer5 (>= 5.0.2), libqt5gui5 (>= 5.2.0), libqt5help5 (>= 5.0.2), libqt5network5 (>= 5.2.0), libqt5printsupport5 (>= 5.2.0), libqt5test5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, sip-py3api-11.0 Suggests: python3-pyqt5-dbg Filename: pool/main/p/pyqt5/python3-pyqt5_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 2146368 MD5sum: b920aa9e902eb3bc29826436229d13c2 SHA1: f2d77448bd87a6ba9ce968d79040657d0ff4a417 SHA256: e897888a04654d01ddf5f2bf89dd4a8860c16f26233c53a6192dc339afaca09f Description: Python 3 bindings for Qt5 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: cab0484c24e2c7ce683948d6d1a87f6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5-dbg Priority: extra Section: debug Installed-Size: 85614 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3-sip-dbg, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5designer5 (>= 5.0.2), libqt5gui5 (>= 5.2.0), libqt5help5 (>= 5.0.2), libqt5network5 (>= 5.2.0), libqt5printsupport5 (>= 5.2.0), libqt5test5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Filename: pool/main/p/pyqt5/python3-pyqt5-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 29573346 MD5sum: 33ac2eb75fc23259d5ac617cc71ca8b3 SHA1: fb9666de681aa1e02626d5b5096d69acb8b8123b SHA256: fd6a6b53685442e94ec048d1033f252a06fc5e8cf7a635f1f031764e53fc2f05 Description: Python 3 bindings for Qt5 (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 705de7d30b2e90a6f681fbf8d448f0dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtmultimedia Priority: optional Section: python Installed-Size: 845 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5multimedia5 (>= 5.2.0), libqt5multimediawidgets5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtmultimedia_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 130952 MD5sum: 2eb13ca9f2bb38f1fd1b782176088539 SHA1: b1f5767dd62834cbcf5c6843867ce8d71becbc9f SHA256: 2166ee373c90c09cb7fab63aae0a7328a78ee0bea3e8fc68b542cba562a55e3a Description: Python 3 bindings for Qt5's Multimedia module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 1e4d7a0459406391136623d62adce571 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtmultimedia-dbg Priority: extra Section: debug Installed-Size: 6884 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtmultimedia (= 5.2.1+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5multimedia5 (>= 5.2.0), libqt5multimediawidgets5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtmultimedia-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 2592780 MD5sum: 1776d741799b9b203df9fd794451360f SHA1: 68b52bd09437905935f2d281e471d000182cbf5b SHA256: d2f6f93dfb901de14cb5c023de3cad11dc48eb45cc25919f97964f9f72d77d1b Description: Python 3 bindings for Qt5's Multimedia module (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 64a39bce7a7feab3c50a3afd57204d05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtopengl Priority: optional Section: python Installed-Size: 468 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.2.0), libqt5opengl5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtopengl_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 65770 MD5sum: 0b2cd8b608911e0221529c7b99564284 SHA1: 41e6c766adf16c1bd6fc322fd2afb9cb25f80648 SHA256: 8b6487680ddc94b399c9d542a0df7a822be30a8df863e1197a38869d80f5de1d Description: Python 3 bindings for Qt5's OpenGL module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 5fdf51118ef387e87b8dfb241bfec44f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtopengl-dbg Priority: extra Section: debug Installed-Size: 2997 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Replaces: python3-pyqt5-dbg (<< 5.1.1+dfsg-1~) Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtopengl (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.2.0), libqt5opengl5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Breaks: python3-pyqt5-dbg (<< 5.1.1+dfsg-1~) Filename: pool/main/p/pyqt5/python3-pyqt5.qtopengl-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 1041824 MD5sum: b8c11b5cb57bae5b0d51036d5d421769 SHA1: 60aa56bf848a6c018704f2ae34d0d479f780b803 SHA256: c2d1d9e6a819218392f200ebeb4a8461e6b0964bdfe3cb360697233ce9129c24 Description: Python 3 bindings for Qt5's OpenGL module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 2661336e8af1633c9ab3ac06863104d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtpositioning Priority: optional Section: python Installed-Size: 256 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5positioning5, libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtpositioning_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 44022 MD5sum: 07d242e95d2b7eabc5ceb00bbf668690 SHA1: ec630b8cf1373637d2c448eed48178b15c1a4d7c SHA256: 271ea50e1c19ca9ec6cf11f5ba044e46cce38157ae5f9a34c12a4eaa6c3c2c96 Description: Python 3 bindings for QtPositioning module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: a1946a72b9516bfcb5a1759696375b6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtpositioning-dbg Priority: extra Section: debug Installed-Size: 2460 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtpositioning (= 5.2.1+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5positioning5, libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtpositioning-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 986078 MD5sum: e981e7d6eba6e19c5a4af0464c0d3487 SHA1: 6d156417f48b9d3c6ca5a9691f8b679a1f87949c SHA256: c32b540e807019d44609f713aa6a856bf3c00d47e8fc87d350cfaf9f7084843c Description: Python 3 bindings for QtPositioning module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 5cc3ff22d0b640ecf756c451cd187350 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtquick Priority: optional Section: python Installed-Size: 2121 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libpython3.4 (>= 3.4~b1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5qml5 (>= 5.2.0~rc1), libqt5quick5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Filename: pool/main/p/pyqt5/python3-pyqt5.qtquick_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 279478 MD5sum: 2a740052440655901e08d5cc82730efe SHA1: e31138ca2fb50a3c41c343349841ee25e738a7da SHA256: ea37af305addadce5074ce14486f521c3c5892150a57d609217c079ad0c3755e Description: Python 3 bindings for QtQuick module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 6c8032a228b7778afe74cc4377046517 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtquick-dbg Priority: extra Section: debug Installed-Size: 16668 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Replaces: python3-pyqt5-dbg (<< 5.0.1-2~) Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtquick (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5qml5 (>= 5.2.0~rc1), libqt5quick5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Breaks: python3-pyqt5-dbg (<< 5.0.1-2~) Filename: pool/main/p/pyqt5/python3-pyqt5.qtquick-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 5550374 MD5sum: 58ee60faa6f05cd4983b85db1cb4e790 SHA1: 874dcc277ab40a6e2f4c896e4aa8cbbd37087527 SHA256: 81fa2e94fc1c6b17c44bccfbbca245a7e69791d10b86fd402541b8f54cd8b3e9 Description: Python 3 bindings for QtQuick module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 9b4192642bccdc9962160d21f098a45c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsensors Priority: optional Section: python Installed-Size: 341 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5sensors5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsensors_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 50592 MD5sum: e4597513b9fe7618ed755efa5442281c SHA1: dd1652f468ab7ffbaa97d207c7aa2937e6910721 SHA256: 927f724e812f6c209957d0182fb7479756c561ed9d5748a0c2690ef41f00bfd3 Description: Python 3 bindings for QtSensors module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 22333245b2aa3d12bdc4871fc926924b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsensors-dbg Priority: extra Section: debug Installed-Size: 3015 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtsensors (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5sensors5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsensors-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 1091942 MD5sum: 8c8aefbfe41ce84aa681b10226a5f173 SHA1: 31406016dfd9c99dafc9629e006bb3bd26d584d7 SHA256: 355dae3fdc7879c73e4980478eec19d0fbcd31a013cba97463683a9ff5a1633f Description: Python 3 bindings for QtSensors module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: eff9e4c0086af6eaa2fa0c5a365681c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtserialport Priority: optional Section: python Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5serialport5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtserialport_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 23134 MD5sum: dcbc6ac4a4240b46202395d54d46209a SHA1: 0dea827e43a6cc56a40e7a92db0f1b51648ac52c SHA256: 735b5eb45c503184f4a455ccc1c7c89fdc19b40a87fb8c941a8b75b776d7809c Description: Python 3 bindings for QtSerialPort module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: c60864226cb35cc4d3038d794f2d7ac9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtserialport-dbg Priority: extra Section: debug Installed-Size: 1233 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtserialport (= 5.2.1+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5serialport5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtserialport-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 492784 MD5sum: b66bce063e9939c843870f7cb53d36fb SHA1: 2717f083fd41569b9c44efba7b76bf0f2af3d87f SHA256: 768a4c1a32bd82e32e41bc568ca0bec889f201868fd8ed4582808bf8e23d3265 Description: Python 3 bindings for QtSerialPort module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: f7cae4c4d95beaf11b3c19922b842a28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsql Priority: optional Section: python Installed-Size: 426 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5sql5 (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsql_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 78016 MD5sum: 219c2629a78387ec1f9a358157d04617 SHA1: 367b1a415a0c12018dd13f2dffbb3864e81278e0 SHA256: e6b2bd3567cc21021ae6acda6c4b39a525021e941fcc2d6edb916fd7a6161193 Description: Python 3 bindings for Qt5's SQL module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: b767747637fab9f33116e4c55ddb4df0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsql-dbg Priority: extra Section: debug Installed-Size: 3615 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtsql (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5sql5 (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsql-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 1438128 MD5sum: e265c704507b48ce1f4d2ef91f00e4e8 SHA1: 7a0cd0cd05d22299bcbe8867268070b6658799ba SHA256: a6b7a4553d3bbcf69d8dfb53118bc5a7775265743137b59730507547438ffeda Description: Python 3 bindings for Qt5's SQL module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 1ce1313d6dbf119940db685b7b21b722 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsvg Priority: optional Section: python Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5svg5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsvg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 25030 MD5sum: 754e992b5ac680cc4e45b40ef49653e4 SHA1: df73ebff72152591b0be5d04d4a957404bbdc2cd SHA256: 09b5c87a2ee1fc116f4e9735f8a84c2f6cd2e19787524bffe9f2a109dab07d1b Description: Python 3 bindings for Qt5's SVG module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 8f1285730d9646633f166884146f4168 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsvg-dbg Priority: extra Section: debug Installed-Size: 1915 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtsvg (= 5.2.1+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5svg5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsvg-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 823050 MD5sum: f31b4c24a2b59cdd551d413f7d64639a SHA1: 530fe54d73826bb39cc79da87ba7febde7a46f17 SHA256: 6d6505b7be28eb1818a58d4d404405695cc7a22aa375bb7b0d6e3f54bdfa0924 Description: Python 3 bindings for Qt5's SVG module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 11ceb6c0c59427100092e6b0d0c4d1a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtwebkit Priority: optional Section: python Installed-Size: 566 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5webkit5, libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtwebkit_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 100746 MD5sum: ead6f9408389c14b60d6eb77a3b3d695 SHA1: 5a152bc04963fbc973a9e76779c1cdd05dd3046d SHA256: 381608fdeafc02e314a3a53860013980623b8121be405738e5dcb6dec60a5910 Description: Python 3 bindings for Qt5's WebKit module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 4e9ca602a7356a440694948e58bd4a66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtwebkit-dbg Priority: extra Section: debug Installed-Size: 6413 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtwebkit (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5webkit5, libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtwebkit-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 2620312 MD5sum: 6484c782977208b5594ee7d19dbed343 SHA1: b11bb936916cece462fbdedda78225d13b99f24b SHA256: 0338a20ec5b9e0ee2ce9ace3b494342617fd1b8b4ead5f306e6a4df80c42c2b8 Description: Python 3 bindings for Qt5's WebKit module (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 72960fe10193a9868ed0be33ee77ae1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtx11extras Priority: optional Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libqt5x11extras5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtx11extras_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 7068 MD5sum: 7f794df6b91a6deb7c9a326c73ce6d85 SHA1: 591c7f33109ba5a14db756d95ed03218f127ace5 SHA256: ee2738dd6becd778d0fa927f8e26d040b3d3b0ef06fc639368d61a058884b32a Description: Python 3 bindings for QtX11Extras module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 8421d385a30e6dc9b34c1e242c5ace97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtx11extras-dbg Priority: extra Section: debug Installed-Size: 566 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtx11extras (= 5.2.1+dfsg-1ubuntu1), libqt5x11extras5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtx11extras-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 226634 MD5sum: 1eb4afbd896a8347eeef41c571165af7 SHA1: 9aa71a35ea9ede8e5e5b8ddb7092c539d92cdf58 SHA256: eb16ebc41dba6d1da171ba2f7fd5dfeab47818f3e47b954e2f1eaac3d23c4a29 Description: Python 3 bindings for QtX11Extras module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 2f899bea8e42b1c78a19ff167e28821a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtxmlpatterns Priority: optional Section: python Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5xmlpatterns5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtxmlpatterns_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 42680 MD5sum: af4b01d1e2680adbb9d94d4ace8e43c4 SHA1: 28d291adad64d99f7927f5ec1ac200f6aa28608b SHA256: 61880902c8a287e684b7f66e805b7373256cf4b03a4205c35fadaa36348bb033 Description: Python 3 bindings for Qt5's XmlPatterns module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: ad6b62418b4afd9170bd7e687be3c701 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtxmlpatterns-dbg Priority: extra Section: debug Installed-Size: 2758 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtxmlpatterns (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5xmlpatterns5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtxmlpatterns-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 1160116 MD5sum: a54b9127830ccc6fec8de4341a99c2d6 SHA1: 0dffd34680cab8db6e5ea5cda822a79f232a86ef SHA256: 584ab80d137167d75ccdfaba0a454d124939b521161740e39d0816fa63f0e01c Description: Python 3 bindings for Qt5's XmlPatterns module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: c2dd418ecf4c860fae112da9fecdbf0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pytest Priority: optional Section: python Installed-Size: 449 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pytest Version: 2.5.1-1 Depends: python3-pkg-resources, python3-py (>= 1.4.19), python3:any (>= 3.3.2-2~), python3 Filename: pool/main/p/pytest/python3-pytest_2.5.1-1_all.deb Size: 91810 MD5sum: 61b0c280dec998089dd9d1e03d3bd41c SHA1: 9df686a544ac8fdce395f595265544251122ecef SHA256: 261271ff2404d82cd5e6559fdee1ca96b22ca8fe47388b10fc0ac3af20e01e16 Description: Simple, powerful testing in Python3 Homepage: http://pytest.org/ Description-md5: 96199c42946bd725e1215e13b9048bf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyudev Priority: optional Section: python Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyudev Version: 0.16.1-2build1 Depends: python3:any (>= 3.3.2-2~), libudev1 Filename: pool/main/p/pyudev/python3-pyudev_0.16.1-2build1_all.deb Size: 29028 MD5sum: d564e3392432181a299b8a71fbb62f8b SHA1: 60feebba0bc83d4c8a89b3140ee8bbf6522d14da SHA256: 2dd9f7c237a71904e2dbd8ed8e67e7e3a29893bb02ee2218603cbe6939399a18 Description: Python3 bindings for libudev Homepage: http://pyudev.readthedocs.org/ Description-md5: 0d43aeec2566c4849434040f7494f2c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyxattr Priority: optional Section: python Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: amd64 Source: python-pyxattr Version: 0.5.1-1.1build4 Provides: python3.4-pyxattr Depends: python3 (>= 3.4~), python3 (<< 3.5), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.3.4) Suggests: python3-pyxattr-dbg Filename: pool/main/p/python-pyxattr/python3-pyxattr_0.5.1-1.1build4_amd64.deb Size: 11218 MD5sum: da84b27750b7509b07b6a2a20fbf83c3 SHA1: d012c4641671256a17b86916f9a59b0c7b9e136d SHA256: 3f52b7cf4a60d6db33a07843cb586854461304a21d2bdad32ded2985c197b85f Description: module for manipulating filesystem extended attributes (Python3) Homepage: http://pyxattr.k1024.org/ Description-md5: e2ac82a4b859a3a16c40964d3dca9000 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyxattr-dbg Priority: extra Section: debug Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: amd64 Source: python-pyxattr Version: 0.5.1-1.1build4 Provides: python3.4-pyxattr-dbg Depends: python3-pyxattr (= 0.5.1-1.1build4), python3-dbg (>= 3.4~), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.2.5), python3-dbg (<< 3.5) Filename: pool/main/p/python-pyxattr/python3-pyxattr-dbg_0.5.1-1.1build4_amd64.deb Size: 26630 MD5sum: 6309018384030035ebd7c69f2f68ec83 SHA1: f441d0f2580d04bae25660b4301bea1c2bc339fc SHA256: 84c38343595a66673743c520f864ee22c1fa25461a2db6e13a484170bd5412c1 Description: module for manipulating filesystem extended attributes (Python3 debug version) Homepage: http://pyxattr.k1024.org/ Description-md5: 972fee87b6a022e731b9041ee3175edb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-renderpm Priority: optional Section: python Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-reportlab Version: 3.0-1build1 Provides: python3.4-renderpm Depends: python3 (>= 3.4~), python3 (<< 3.5), libart-2.0-2 (>= 2.3.17), libc6 (>= 2.14), libfreetype6 (>= 2.2.1) Suggests: python3-renderpm-dbg Filename: pool/main/p/python-reportlab/python3-renderpm_3.0-1build1_amd64.deb Size: 32428 MD5sum: f8860d4933c19617528a867f7555f2dc SHA1: eb4687057b6ec9d6db9931c2b7636f88fc8c3b74 SHA256: 087df63af343540640e048f62cca7fe2b1ad4473c4ec73d3e7c426a3971f93ca Description: python low level render interface Description-md5: f69778da55c6c96c3d31560659245a79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-renderpm-dbg Priority: extra Section: debug Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-reportlab Version: 3.0-1build1 Depends: python3-renderpm (= 3.0-1build1), python3-dbg, libart-2.0-2 (>= 2.3.17), libc6 (>= 2.14), libfreetype6 (>= 2.2.1) Filename: pool/main/p/python-reportlab/python3-renderpm-dbg_3.0-1build1_amd64.deb Size: 104214 MD5sum: 1c04b15bb67e75471404efa64d84f510 SHA1: 14292986c86f0e2bc080583b7ab92bb61f27050a SHA256: f4fa0502c1b5dbc26510f438f0e5ec6307f1116cdf1a8e1328f7b5c3044435c5 Description: python low level render interface (debug extension) Description-md5: 6869a2b5f092d5175dad07e42b3ce0c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-reportlab Priority: optional Section: python Installed-Size: 2322 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-reportlab Version: 3.0-1build1 Depends: python3:any (>= 3.3.2-2~) Recommends: python3-renderpm, python3-pil Suggests: pdf-viewer, python3-egenix-mxtexttools (>= 2.0.6-3.1), python-reportlab-doc Filename: pool/main/p/python-reportlab/python3-reportlab_3.0-1build1_all.deb Size: 445626 MD5sum: 0f83375a0d8b13e62bac0afdfff859f9 SHA1: 73860d966dde5cbb9eb90345cef2452f840bebdb SHA256: 9569e78a23d11fa7563fa2657441c72589dd15658e34378de8423c8a66db5191 Description: ReportLab library to create PDF documents using Python3 Description-md5: 4518ab9949b39e4958a3a20a2ab930f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-reportlab-accel Priority: optional Section: python Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-reportlab Version: 3.0-1build1 Provides: python3.4-reportlab-accel Depends: python3-reportlab (>= 3.0-1build1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4) Filename: pool/main/p/python-reportlab/python3-reportlab-accel_3.0-1build1_amd64.deb Size: 18202 MD5sum: 9efba8d3a7208d83aaa0994699b42c9a SHA1: 5050e8348cff81f49194935090440d49b5299860 SHA256: 3689112e74f5b91f019ea246531f01e0ad66c212d018a02ce3cc701da8226ccc Description: C coded extension accelerator for the ReportLab Toolkit Description-md5: 3a2f3d264cea475a3a1ee612a69fb526 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-reportlab-accel-dbg Priority: extra Section: debug Installed-Size: 242 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python-reportlab Version: 3.0-1build1 Depends: python3-reportlab-accel (= 3.0-1build1), python3-dbg, libc6 (>= 2.14) Filename: pool/main/p/python-reportlab/python3-reportlab-accel-dbg_3.0-1build1_amd64.deb Size: 48634 MD5sum: 5db7a4495094c841b0de7a31965b7297 SHA1: 0914f667e987b7b5fa2689d24338d426397a0802 SHA256: 24182716fd1218202a93b3d2a46d1771f11f49f5970cc7a3c77c51fc1a4a2e0f Description: C coded extension accelerator for the ReportLab Toolkit Description-md5: 3a2f3d264cea475a3a1ee612a69fb526 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-repoze.lru Priority: extra Section: python Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-repoze.lru Version: 0.6-4 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-repoze.lru/python3-repoze.lru_0.6-4_all.deb Size: 10936 MD5sum: dda83ff2690d200c7d9dd7fa29708325 SHA1: 698f36ba0770a27f61205ad32983e9d8d70135eb SHA256: 0a5f8d65be47253cab5f85866b5309c73dfecf0afa75ca18c0326249bacbc8fb Description: tiny LRU cache implementation and decorator for Python 3 Homepage: http://www.repoze.org/ Description-md5: 3a0267de4611221b76e003adbe8d25c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-requests Priority: optional Section: python Installed-Size: 204 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: requests Version: 2.2.1-1 Depends: python3:any (>= 3.3.2-2~), ca-certificates, python3-chardet, python3-urllib3 (>= 1.5) Filename: pool/main/r/requests/python3-requests_2.2.1-1_all.deb Size: 42282 MD5sum: 19019b8c865616e10a3e1d99060fdbc7 SHA1: 7ac823b5f63de330efaa44e31a034cb938264b42 SHA256: 27facc449258a1fbae6024205874c8c26b53c117633c68dd5c566e53f09d6029 Description: elegant and simple HTTP library for Python3, built for human beings Homepage: http://python-requests.org Description-md5: 8d87f8941b1ef533bd81516172e31860 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-roman Priority: optional Section: python Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Andrea Colangelo Architecture: all Source: python-roman Version: 2.0.0-1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-roman/python3-roman_2.0.0-1_all.deb Size: 7836 MD5sum: d1cfb2d16cbbdd9b3630f68ac550a8cd SHA1: 45fc935b0a27ab59903adbc7d7eeb226dafe3244 SHA256: 8788e24791705baad0e28afc213eb9549fa6bc757fc1cb2672037960ea624ddb Description: module for generating/analyzing Roman numerals for Python 3 Homepage: http://pypi.python.org/pypi/roman/ Description-md5: c73a413835acfa5f8625cff8438eae16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-sane Priority: optional Section: python Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging-sane (<< 1.1.7+2.0.0-1.1) Provides: python3.4-sane Depends: python3-pil (= 2.3.0-1ubuntu3), python3 (<< 3.5), python3 (>= 3.4~), libc6 (>= 2.14), libsane (>= 1.0.11-3) Recommends: python3-tk (>= 2.5.2-1.1) Suggests: python-pil-doc, python3-sane-dbg Breaks: python3-imaging-sane (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-sane_2.3.0-1ubuntu3_amd64.deb Size: 14146 MD5sum: cd9bbf69eecb0245ebe4ae554d1bb9ac SHA1: 41001882814cec9b30338920549bd412ae2bf40b SHA256: f0eda67790b904846245a1cfb77ac102b55f9f9af159ec763afc3323506a8c45 Description: Python Imaging Library - SANE interface (Python3) Description-md5: 83197ff2fbafe55a90f617ee62ff24d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-sane-dbg Priority: extra Section: debug Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging-sane-dbg (<< 1.1.7+2.0.0-1.1) Depends: python3-sane (= 2.3.0-1ubuntu3), python3-pil-dbg (= 2.3.0-1ubuntu3), python3-dbg, libc6 (>= 2.14), libsane (>= 1.0.11-3) Breaks: python3-imaging-sane-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-sane-dbg_2.3.0-1ubuntu3_amd64.deb Size: 30966 MD5sum: dbf8ead82f44572f73304655e60881a3 SHA1: 54a46282dfcd76ed75be77e2de3c79430232c37c SHA256: 3f472db161c9ec8c40efe84ebf9726d63a64f415e6eefeff723c9921c4e99604 Description: Python Imaging Library - SANE interface (Python3 debug extension) Description-md5: 20e2e4dc94b4a1ac5ce0e637bfff516a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-scripttest Priority: optional Section: python Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-scripttest Version: 1.2-1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-scripttest/python3-scripttest_1.2-1build1_all.deb Size: 8866 MD5sum: 3277ad9f1bcc95449f695355cdc2da4f SHA1: 498f964aa724984345f26faa22a9fb6605ab23e4 SHA256: f5442cc70865f1f666d0fbe7503bb50acd3d1ba1055b3e9d7edc0d9cff756f03 Description: Helper to test command-line scripts - python 3.x Homepage: http://pythonpaste.org/scripttest/ Description-md5: 35a418bf241da05851b2f3cc0c221a37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-setuptools Priority: optional Section: python Installed-Size: 703 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-setuptools Version: 3.3-1ubuntu1 Provides: python3.4-setuptools Depends: python3:any (>= 3.4), python3:any (<< 3.5), python3-pkg-resources (= 3.3-1ubuntu1) Conflicts: python-setuptools (= 0.6.10-2) Filename: pool/main/p/python-setuptools/python3-setuptools_3.3-1ubuntu1_all.deb Size: 144332 MD5sum: e3473f464a944d0d14dc83ff34707df6 SHA1: 14a33ea4be6d23279e8675b464f87b5a495a614b SHA256: 494daf5333bebdb03a1197526b4eab9c02917b364f3551e2032ec9273948a447 Description: Python3 Distutils Enhancements (setuptools compatibility) Homepage: https://pypi.python.org/pypi/setuptools Description-md5: 566d3b18e11f01231af501fec57c069c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-simplegeneric Priority: optional Section: python Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: simplegeneric Version: 0.8.1-1 Depends: python3 (>= 3.1.3-13~) Filename: pool/main/s/simplegeneric/python3-simplegeneric_0.8.1-1_all.deb Size: 11452 MD5sum: 0405a298288c5ef27c199a88de38288d SHA1: 688c84a10f0f389a6161b48e6d8667c3e8848d24 SHA256: 146496b0b610cc6f95dba02aac7bcc626d8511042be3df5f8b57a507988e4cdd Description: simple generic functions for Python3 Homepage: http://pypi.python.org/pypi/simplegeneric Description-md5: 1aa3e4db49ded29787a5532d32398159 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-simplejson Priority: optional Section: python Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: simplejson Version: 3.3.1-1ubuntu6 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.2.5) Filename: pool/main/s/simplejson/python3-simplejson_3.3.1-1ubuntu6_amd64.deb Size: 46058 MD5sum: 0e85ba14074e09e5be8e2c68544fd814 SHA1: c5b2aa538c18863ca7a307bb9ede7b69182cb1c2 SHA256: 919a3c1c2f163485542d1fce837b8fce6aac9727798b0afbff4c66a27b3d5bbb Description: JSON encoder and decoder for Python 3 Homepage: http://undefined.org/python/#simplejson Description-md5: f89c1dbd1665ff53ce212794904fd89d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-simplejson-dbg Priority: extra Section: debug Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: simplejson Version: 3.3.1-1ubuntu6 Depends: python3-simplejson (= 3.3.1-1ubuntu6), libc6 (>= 2.2.5), python3-dbg (>= 3.4~), python3-dbg (<< 3.5) Filename: pool/main/s/simplejson/python3-simplejson-dbg_3.3.1-1ubuntu6_amd64.deb Size: 20768 MD5sum: ab75aefb16f9a4689e31e83d81751152 SHA1: 780108a9648c29ef98ac7e3330558674b9f959dc SHA256: 7495dd24aa548dc2d88d1a0e1ee2409383a50d63d737405340e8ae0476b51f39 Description: JSON encoder and decoder for python3-dbg Homepage: http://undefined.org/python/#simplejson Description-md5: 2bf931223f8d0713f008beec88c812c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-sip Priority: optional Section: python Installed-Size: 289 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: sip4 Version: 4.15.5-1build1 Provides: sip-py3api-11.0 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4) Breaks: python3-pyqt4 (<< 4.10.2~), python3-pyqt4.qsci (<< 2.7.2) Filename: pool/main/s/sip4/python3-sip_4.15.5-1build1_amd64.deb Size: 69304 MD5sum: 0a52334dd538a2953276cce4604c6dbe SHA1: d127c3104446522134f1e7050b9f4c7d3016555d SHA256: 28baff5677482a7c9b20f71e2dc0d917c0c60fa016556090af84e2f59e8706c1 Description: Python 3/C++ bindings generator runtime library Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: a95e2a685ffcf3a879eaef1d99367187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: python3-sip-dbg Priority: extra Section: debug Installed-Size: 1183 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: sip4 Version: 4.15.5-1build1 Depends: python3-sip (= 4.15.5-1build1), python3-dbg, libc6 (>= 2.4) Filename: pool/main/s/sip4/python3-sip-dbg_4.15.5-1build1_amd64.deb Size: 258850 MD5sum: fe24d4c5cea4815635226c383f6ef7e3 SHA1: 7c20587de39b29112af5b15a881d05a4e0f1d3af SHA256: ae9fe61f8dee5a5fe0a14a4e31565b22d9037f289dca4fc0c2d1d5eb2514edde Description: Python 3/C++ bindings generator runtime library (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: 01749694a344b7820cd29572ca4074b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-sip-dev Priority: optional Section: python Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: sip4 Version: 4.15.5-1build1 Depends: python3:any (>= 3.3.2-2~), python3-sip (= 4.15.5-1build1), sip-dev (= 4.15.5-1build1), python3-dev Suggests: python-sip-doc Filename: pool/main/s/sip4/python3-sip-dev_4.15.5-1build1_amd64.deb Size: 20044 MD5sum: b0a2485f2145e2668ce7c61d48cbc8e9 SHA1: 7d72b2ddd278562ec93a0724d385efcf5648de13 SHA256: a90e813495c5c43ee04c791431050ffc60ac9ec208c12ce6158830cea115c40a Description: Python 3/C++ bindings generator development files Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: b9db64c89950f09d0794c4281f76db68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-six Priority: optional Section: python Installed-Size: 63 Maintainer: Colin Watson Architecture: all Source: six Version: 1.5.2-1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/s/six/python3-six_1.5.2-1_all.deb Size: 8126 MD5sum: 2d6a34329151366dcccde3f35efe3df2 SHA1: 3a4f39bb04846afa09d2352c4df05ad5310b98f7 SHA256: f55ac025208a10a0a82f5e6a4473ac454881951543e62a22183f58899ef1eb64 Description: Python 2 and 3 compatibility library (Python 3 interface) Homepage: http://pythonhosted.org/six/ Description-md5: e74d005147dc326d870af862967d70a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-software-properties Priority: optional Section: python Installed-Size: 134 Maintainer: Michael Vogt Architecture: all Source: software-properties Version: 0.92.36 Depends: python3:any (>= 3.3.2-2~), python3, python3-apt (>= 0.6.20ubuntu16), python3-pycurl, lsb-release, unattended-upgrades, iso-codes Filename: pool/main/s/software-properties/python3-software-properties_0.92.36_all.deb Size: 19364 MD5sum: 233065b102406e095d6c2ab64df8db3e SHA1: 3314bb0aa72413acee339f18ec194f143a5f20e4 SHA256: 3c6992ff2366816c8d243304d7e8af3fd046d247c958dc89045699b7cc34e042 Description: manage the repositories that you install software from Description-md5: 2404b69e069f73169a1d424cb63f1d53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-speechd Priority: extra Section: python Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian TTS Team Architecture: all Source: speech-dispatcher Version: 0.8-5ubuntu1 Replaces: python-speechd Depends: python3-xdg, python3:any (>= 3.3.2-2~), python3 Breaks: python-speechd Filename: pool/main/s/speech-dispatcher/python3-speechd_0.8-5ubuntu1_all.deb Size: 41678 MD5sum: 5622b0dfcbb8020532278ce62f57da1f SHA1: 0d5b028eb34c5cf3ffb6ff6304361098d732bfae SHA256: 7e7dad5aec3926515842f5cfcfb556038bdc795154b1ea402cd7505da5a5c418 Description: Python interface to Speech Dispatcher Homepage: http://devel.freebsoft.org/speechd Description-md5: 9d12b4fec6bb06a0d001bfbfcab51d5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-sphinx Priority: optional Section: python Installed-Size: 1340 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sphinx Version: 1.2.2+dfsg-1ubuntu1 Depends: python3:any (>= 3.3.2-2~), python3-docutils (>= 0.7), python3-pygments (>= 1.2), python3-jinja2 (>= 2.3), sphinx-common (= 1.2.2+dfsg-1ubuntu1) Recommends: python3-pil Suggests: jsmath, libjs-mathjax, dvipng, texlive-latex-recommended, texlive-latex-extra, texlive-fonts-recommended, sphinx-doc Filename: pool/main/s/sphinx/python3-sphinx_1.2.2+dfsg-1ubuntu1_all.deb Size: 270110 MD5sum: 198eab5097e5e8f55b8ace3479d165b9 SHA1: c9fc80475f24be0fd26d217b1c8183924dc33edd SHA256: 52a8b4a150139edc606c75b84295f8a55885e93f27efb7766e28069ae0e74023 Description: documentation generator for Python projects (implemented in Python 3) Homepage: http://sphinx-doc.org/ Description-md5: bf19f886131bece0fb0b6743422596ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-sqlalchemy Priority: optional Section: python Installed-Size: 3112 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: sqlalchemy Version: 0.8.4-1build1 Depends: python3:any (>= 3.3.2-2~) Suggests: python-sqlalchemy-doc Filename: pool/main/s/sqlalchemy/python3-sqlalchemy_0.8.4-1build1_all.deb Size: 528028 MD5sum: c38f79841c6cd2fbc15c5db34a004d6c SHA1: 260cb4609f97723b46438e70d213e4955b89974b SHA256: 89077ead34b874fe9c5a5faf50929d4e39679fb09025fc06130b0d088688195d Description: SQL toolkit and Object Relational Mapper for Python 3 Homepage: http://www.sqlalchemy.org/ Description-md5: ab3e4e16d880158a692652f7aeb4779d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-stevedore Priority: extra Section: python Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Julien Danjou Architecture: all Source: stevedore Version: 0.14.1-1 Depends: python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/stevedore/python3-stevedore_0.14.1-1_all.deb Size: 14778 MD5sum: b56ea86b1fcee8e74125ff66bc773b34 SHA1: 85131d9f1e60454916021bbc942f8fb7ac0ce7ac SHA256: 591a04fc3cefc6c1c3735bfce4c61cf756a3a0e317a1256c25bdb7a08a2deb79 Description: manage dynamic plugins for Python applications - python3 Homepage: https://github.com/openstack/stevedore Description-md5: 8c04b322fc21b52834676c8a9e0ed455 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-subunit Priority: optional Section: python Installed-Size: 181 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: all Source: subunit Version: 0.0.18-0ubuntu7 Depends: python3:any (>= 3.3.2-2~), python3-testtools (>= 0.9.4) Filename: pool/main/s/subunit/python3-subunit_0.0.18-0ubuntu7_all.deb Size: 32898 MD5sum: b4fe03e007444ceed83fc7e80040a1cf SHA1: 5b790cea3119569710eb7a47d0cb449118a48b46 SHA256: ca95dc4605ad0c6b9cb645507f33e5be413ed9c76c234fe9d82c090bd330ee99 Description: unit testing protocol - Python3 bindings to generate and consume streams Homepage: http://code.launchpad.net/subunit Description-md5: b8857ff8138802bdb86f8c00c1275368 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-tempita Priority: optional Section: python Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-tempita Version: 0.5.2-1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-tempita/python3-tempita_0.5.2-1build1_all.deb Size: 13680 MD5sum: bbb2569ddfa3fc2e0256df481b1cf4f3 SHA1: 8b2b75c7f4977baf51361c1a3da29064d2bda1b4 SHA256: 2212e86d9685d624d6cb34ea83ea1ee77c48c790dacc92a0c15f285baaa2eed2 Description: very small text templating language Description-md5: 70161c2bb4512e28c7153543a4cc4979 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-testrepository Priority: optional Section: python Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: testrepository Version: 0.0.18-1ubuntu1 Depends: python3-subunit, python3-fixtures, python3-testtools, python3:any (>= 3.3.2-2~) Filename: pool/main/t/testrepository/python3-testrepository_0.0.18-1ubuntu1_all.deb Size: 56694 MD5sum: 4b01e6ad21505b0f8474005868ca7921 SHA1: 5f41ee3f35300dc2da5385279bf68e9ef16cc976 SHA256: eed0e4ec51b49d599501cf172e077dfdfb91a6a43b8c67d7f7bb962d50e087b8 Description: Database of test results - python library (python3) Homepage: https://pypi.python.org/pypi/testrepository Description-md5: 4c91728996927d0737acf79fb25d2164 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-testresources Priority: optional Section: python Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Source: testresources Version: 0.2.7-1ubuntu2 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/t/testresources/python3-testresources_0.2.7-1ubuntu2_all.deb Size: 24756 MD5sum: a39a6e5e31e6e46482a539548b8a6363 SHA1: e9b8bf6b08141119019f1eebdeb23b5a4688a202 SHA256: b9d18dc1e50bd456015f6095b235877cacb18789111f69e2160132ca524d06af Description: PyUnit extension for managing expensive test fixtures (python3) Description-md5: 659b0e4c9a60fab5536fb8a646b5d5a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-testscenarios Priority: optional Section: python Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-testscenarios Version: 0.4-2ubuntu2 Depends: python3-testtools, python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-testscenarios/python3-testscenarios_0.4-2ubuntu2_all.deb Size: 13078 MD5sum: eccb9f1cc566cc4dace4f7a4d61107bc SHA1: ea3c275cc61828fd9a451e32914f62edb59cb1dd SHA256: 2e979ec1dace8962d61805a18db2c4c09ddb69350f534dee848f7692012669b2 Description: Dependency injection for Python unittest tests (python3) Homepage: https://launchpad.net/testscenarios Description-md5: c4f8aea97ce5aa6265a6ff5a727fa697 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-testtools Priority: optional Section: python Installed-Size: 672 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-testtools Version: 0.9.35-0ubuntu1 Depends: python3-extras, python3:any (>= 3.3.2-2~), python3-mimeparse, python3-pkg-resources Filename: pool/main/p/python-testtools/python3-testtools_0.9.35-0ubuntu1_all.deb Size: 110216 MD5sum: 2366c41f44efe4c912165a6c3682cbc5 SHA1: 281fe77bafaa29e2054e635b746636cf3c018fd1 SHA256: a43908ee14ccd47863ae20aa0d6df79f3b21a8910375c5cec5f5877bc08d9366 Description: Extensions to the Python unittest library (Python 3.x) Homepage: http://pypi.python.org/pypi/testtools Description-md5: a0f99057479ebb06f58c1cbea607da03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-tk Priority: optional Section: python Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-stdlib-extensions Version: 3.4.0-0ubuntu1 Provides: python3.4-tk Depends: python3 (>= 3.4), python3 (<< 3.5), libc6 (>= 2.2.5), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Suggests: tix, python3-tk-dbg Filename: pool/main/p/python3-stdlib-extensions/python3-tk_3.4.0-0ubuntu1_amd64.deb Size: 22944 MD5sum: 972d66206a361040ae9310f3c942feab SHA1: b6a32758eedbc5fb9cf29d8b737911754db0dd81 SHA256: e4b7095197db52ea53a1ba9650a818d8ba271edde462f48e3407b8e9e333c8b0 Description: Tkinter - Writing Tk applications with Python 3.x Description-md5: 23263ef24020072cb878ca2432c298ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-tk-dbg Priority: extra Section: python Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3-stdlib-extensions Version: 3.4.0-0ubuntu1 Depends: python3-tk (= 3.4.0-0ubuntu1), libc6 (>= 2.2.5), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Filename: pool/main/p/python3-stdlib-extensions/python3-tk-dbg_3.4.0-0ubuntu1_amd64.deb Size: 66286 MD5sum: 6e7836e76ffc48749005359b25830af1 SHA1: 1a2520ab7cf12045821288c75ac30e7a94578c14 SHA256: ee463bca4bcd6c28691501efaa3f5d547867789189e96f2b01248104ac9cb00f Description: Tkinter - Writing Tk applications with Python 3.x (debug extension) Description-md5: 4275bd46341c34a2376a1610e9252f65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-tz Priority: optional Section: python Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: all Source: python-tz Version: 2012c-1build1 Depends: tzdata, python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-tz/python3-tz_2012c-1build1_all.deb Size: 23290 MD5sum: c5a2de48099b52d71088019a8b19d595 SHA1: cf2d456d21b3484e66f0a85ecf29fc65b388d2f3 SHA256: 483c807328f86dcfc740efb929ba57742fe252ca5d5bcc9f451f9da34dd67612 Description: Python3 version of the Olson timezone database Homepage: http://pypi.python.org/pypi/pytz/ Description-md5: c3ef8e0b8ef404e56ec4c9cb2cec1ec9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-uno Priority: optional Section: python Installed-Size: 515 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: python3-uno (<< 1:4.0.2~rc2), python3.3-uno Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), python3:any (>= 3.3.2-2~), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libpython3.4 (>= 3.4~b1), libstdc++6 (>= 4.1.1), uno-libs3 (>= 4.1.0~alpha), ure Conflicts: libreoffice-common (<< 1:3.5.0), python-uno, python3-uno (<< 1:4.0.2~rc2), python3.3-uno Filename: pool/main/libr/libreoffice/python3-uno_4.2.3~rc3-0ubuntu2_amd64.deb Size: 120014 MD5sum: 8235aa9a776622e35b5806c8793cfc27 SHA1: 7059f5189ce80f73c9bf30125d68744e25c38351 SHA256: 4e0051680249899126256d4aa22e4969df7207f23a65e806119b7111aebd2382 Description: Python-UNO bridge Enhances: libreoffice Homepage: http://udk.openoffice.org/python/python-bridge.html Description-md5: f4a55d75b607baa049506ff436442fb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: python3-update-manager Priority: standard Section: python Installed-Size: 241 Maintainer: Ubuntu Developers Architecture: all Source: update-manager Version: 1:0.196.11 Replaces: update-manager-core (<< 1:0.163) Depends: python3:any (>= 3.3.2-2~), python3-apt (>= 0.8.5~), python3-distupgrade, lsb-release Breaks: update-manager-core (<< 1:0.163) Filename: pool/main/u/update-manager/python3-update-manager_0.196.11_all.deb Size: 31578 MD5sum: fd21c2b3399196003f41c84c06d33c9f SHA1: 02a982b05dd13bdb5fcbda97a45ef484be982a89 SHA256: bca7f238836d58e3f1031659720ebe965953b1aa967ca29d442575779f6be484 Description: python 3.x module for update-manager Description-md5: ecfb930b93b3c3391fc6ad445be08cee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python3-urllib3 Priority: optional Section: python Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-urllib3 Version: 1.7.1-1build1 Depends: python3:any (>= 3.3.2-2~), python3-six Recommends: ca-certificates Filename: pool/main/p/python-urllib3/python3-urllib3_1.7.1-1build1_all.deb Size: 38962 MD5sum: 55c037c0bc5faae010fac7d6c3e0149b SHA1: 064f2024c7e302c07dabffa0938184f0ba65b450 SHA256: c432e9b3059012333e6fe7758e8a8310596da8bb4dd3c470343150bcb86cfb19 Description: HTTP library with thread-safe connection pooling for Python3 Homepage: http://urllib3.readthedocs.org Description-md5: 925b7b29e0f5e03b0540c887d3d8fba3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-waitress Priority: optional Section: python Installed-Size: 350 Maintainer: Ubuntu Developers Original-Maintainer: Andrew Shadura Architecture: all Source: waitress Version: 0.8.8-1ubuntu3 Depends: python3-pkg-resources, python3.4, python3:any (>= 3.3.2-2~) Suggests: python-waitress-doc Filename: pool/main/w/waitress/python3-waitress_0.8.8-1ubuntu3_all.deb Size: 52452 MD5sum: 3d114819a35c1526acb72e3c9e682188 SHA1: 72527755e73628b1716aac4eef2b4790718c4475 SHA256: 3ee24f06eb973638cbc082cedc2b7b16b897f74a299a4d959e9d60567d6d5859 Description: production-quality pure-Python WSGI server (Python 3) Homepage: http://github.com/Pylons/waitress Description-md5: e6eb43a82f3c2944d088400cb62185e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-webob Priority: optional Section: python Installed-Size: 311 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-webob Version: 1.3.1-1 Depends: python3, python3:any (>= 3.3.2-2~) Suggests: python-webob-doc Filename: pool/main/p/python-webob/python3-webob_1.3.1-1_all.deb Size: 57894 MD5sum: 65b7972fbe8d0597cbf7385bb8a00404 SHA1: b9df0fa9a957b5e9b851287ec820ccba316e2179 SHA256: 1eca03d4c1da82fe9dbf6ead73ded8ae5081eafd4ba9a80c29a847ff080c07b9 Description: Python module providing WSGI request and response objects (Python 3) Homepage: http://webob.org/ Description-md5: 0856d0b4dc0dede58a323db131e19814 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-webtest Priority: optional Section: python Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: webtest Version: 2.0.14-1ubuntu1 Depends: python3-six, python3-waitress (>= 0.8.5), python3:any (>= 3.3.2-2~), python3-bs4, python3-webob, python3-paste, python3-pastedeploy Suggests: python-webtest-doc, python3-lxml Filename: pool/main/w/webtest/python3-webtest_2.0.14-1ubuntu1_all.deb Size: 26078 MD5sum: c73e54ff564ee170a4df7c87feb408e4 SHA1: ecf04c4ce85fb5c9cb719b5192103185088fb78b SHA256: cb497c8dae936be05dab8a7ccbcd0c74f21f7a4b4611414a0656deadd333714a Description: wraps any WSGI application and makes it easy to test Homepage: http://pythonpaste.org/webtest/ Description-md5: 68f7bf77a89eef2183788bf379aa8f94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-werkzeug Priority: optional Section: python Installed-Size: 1086 Maintainer: Ubuntu Developers Original-Maintainer: Noah Slater Architecture: all Source: python-werkzeug Version: 0.9.4+dfsg-1.1ubuntu1 Depends: python3:any (>= 3.3.2-2~), libjs-jquery Recommends: python3-simplejson | python3, python3-openssl, python3-pyinotify Suggests: ipython3, python3-pkg-resources, python3-lxml, python-werkzeug-doc Filename: pool/main/p/python-werkzeug/python3-werkzeug_0.9.4+dfsg-1.1ubuntu1_all.deb Size: 211108 MD5sum: df1d945f63558830cbf0d4bd6a654026 SHA1: 7bb7a496aa5554daff1759408e5c16653f2edbbf SHA256: 7c3465de56a44ebe7bca9e5ab31a80fa74303395f2c7a1c3d0d49465d732927a Description: collection of utilities for WSGI applications Homepage: http://werkzeug.pocoo.org/ Description-md5: bc8efbff7e3db3c63971edb088df7f93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-xdg Priority: optional Section: python Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyxdg Version: 0.25-4 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/pyxdg/python3-xdg_0.25-4_all.deb Size: 31466 MD5sum: 4be9bd7ee8030fee2ae51d3fbabc60ab SHA1: 3a4946f14f67b64ea78119b0f9cf595ecfa381cb SHA256: 600e1be49c0dc527fefeb51396cb3c351a2bf12ea95588c35adddd88be676624 Description: Python 3 library to access freedesktop.org standards Homepage: http://www.freedesktop.org/wiki/Software/pyxdg Description-md5: 7eb50b73f99abea5fd51c02f7348e874 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-xkit Priority: optional Section: python Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Alberto Milone (tseliot) Architecture: all Source: x-kit Version: 0.5.0ubuntu2 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/x/x-kit/python3-xkit_0.5.0ubuntu2_all.deb Size: 18582 MD5sum: 7155eef72a86177cbe4db0e4faedd409 SHA1: 3165a495da016843ffa49cb299a29df9b9d9a585 SHA256: 0ed021af6b9c9ea44dedeb91ab2daf9d84bd9c542b9d26004243c46a4c2f77ff Description: library for the manipulation of xorg.conf files (Python 3) Description-md5: 10e67b55f9484e6c650b5934e2e1a887 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-yaml Priority: optional Section: python Installed-Size: 438 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyyaml Version: 3.10-4build4 Depends: python3 (<< 3.5), python3 (>= 3.4~), libc6 (>= 2.14), libyaml-0-2 Filename: pool/main/p/pyyaml/python3-yaml_3.10-4build4_amd64.deb Size: 92870 MD5sum: d97113f1a543cb3386b5cae11ada4e7f SHA1: e0cd9f665265a6f7796696f9ddf3c5c22cab5985 SHA256: f77de9dc3872ef11c598faeec25bc91911cd03425fb403460726b13bfc39f35e Description: YAML parser and emitter for Python3 Homepage: http://pyyaml.org/ Description-md5: 6b427841deb10f77a5f50e5f6b5a05d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-yaml-dbg Priority: extra Section: debug Installed-Size: 267 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: pyyaml Version: 3.10-4build4 Depends: python3-yaml (= 3.10-4build4), python3-dbg, libc6 (>= 2.14), libyaml-0-2 Filename: pool/main/p/pyyaml/python3-yaml-dbg_3.10-4build4_amd64.deb Size: 77352 MD5sum: a6a46ad25290dedd05132310ed889efa SHA1: e866ff208cf99e84957411c914aed27ace7e5d03 SHA256: bd7fd653e41573f547e6abc04acc677e35f5ad1a31a91176290080eb68bfe43d Description: YAML parser and emitter for Python3 (debug build) Homepage: http://pyyaml.org/ Description-md5: d81da5f05baafef98ef367b1858f7b09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-zope.interface Priority: optional Section: zope Installed-Size: 645 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: amd64 Source: zope.interface Version: 4.0.5-1ubuntu4 Provides: python3-zope, python3.4-zope.interface Depends: python3 (<< 3.5), python3 (>= 3.4~), python3-pkg-resources, libc6 (>= 2.2.5) Filename: pool/main/z/zope.interface/python3-zope.interface_4.0.5-1ubuntu4_amd64.deb Size: 79240 MD5sum: 88cb84882abaf4c405f06f5d993891f4 SHA1: d98cc6975eafdc17c411ea6fcf6b3a8ca2a33c6c SHA256: 0596dc914d32e3d0221efaff816fa6acdffe81629546319285ba2aa3f83e76fd Description: Interfaces for Python3 Homepage: http://pypi.python.org/pypi/zope.interface Description-md5: c78914f873fd4bc79ff3cafffa48a623 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-zope.interface-dbg Priority: extra Section: debug Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: amd64 Source: zope.interface Version: 4.0.5-1ubuntu4 Depends: python3-zope.interface (= 4.0.5-1ubuntu4), python3-dbg, libc6 (>= 2.2.5) Filename: pool/main/z/zope.interface/python3-zope.interface-dbg_4.0.5-1ubuntu4_amd64.deb Size: 31826 MD5sum: 8682e1cf7756b1623d274e209d7bf76a SHA1: f33190759dcdf46789361d2efcba9c2d1e33c7e9 SHA256: e8d717c236cd0f00035f083fc22b35954cc02bb11359fbf76ea8502052b49a74 Description: Interfaces for Python3 (debug extension) Homepage: http://pypi.python.org/pypi/zope.interface Description-md5: aa072e81f780360142f8036fc90d42a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3.4 Priority: important Section: python Installed-Size: 325 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: amd64 Version: 3.4.0-2ubuntu1 Depends: python3.4-minimal (= 3.4.0-2ubuntu1), libpython3.4-stdlib (= 3.4.0-2ubuntu1), mime-support Suggests: python3.4-doc, binutils Filename: pool/main/p/python3.4/python3.4_3.4.0-2ubuntu1_amd64.deb Size: 162840 MD5sum: d179c8f01cebd620d13a01d00c11441e SHA1: ac4059d4f994b1585bc1ca43e42f47a34c4fddfe SHA256: 1983d82e6f753d4ee94a0552882a43405e3507fdaa9b5f7167c614081256072a Description: Interactive high-level object-oriented language (version 3.4) Multi-Arch: allowed Description-md5: 1ebe097d3a9a32726baaf299e5c158ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: python3.4-dbg Priority: extra Section: debug Installed-Size: 34242 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: python3.4 (= 3.4.0-2ubuntu1), libpython3.4-dbg (= 3.4.0-2ubuntu1), libc6 (>= 2.14), libexpat1 (>= 2.1~beta3), zlib1g (>= 1:1.2.0) Recommends: gdb Suggests: python3-gdbm-dbg, python3-tk-dbg Filename: pool/main/p/python3.4/python3.4-dbg_3.4.0-2ubuntu1_amd64.deb Size: 8126050 MD5sum: e2493c1b5a8f81780cb139ebdf210698 SHA1: ebaa5bb264eae1a84fe9d21f162a72a9c305c0eb SHA256: 5952a22dbe52653ea7f41379cd3490b42d665c4dc18d8e7cfe0887a159d76599 Description: Debug Build of the Python Interpreter (version 3.4) Multi-Arch: allowed Description-md5: a59963bee182d9469f1c02b5e246009e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3.4-dev Priority: optional Section: python Installed-Size: 451 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: python3.4 (= 3.4.0-2ubuntu1), libpython3.4-dev (= 3.4.0-2ubuntu1), libpython3.4 (= 3.4.0-2ubuntu1), libexpat1-dev Recommends: libc6-dev | libc-dev Filename: pool/main/p/python3.4/python3.4-dev_3.4.0-2ubuntu1_amd64.deb Size: 424678 MD5sum: 354f1eb958e8b21a052f195b8b5ab3f4 SHA1: 4c4b7e502eea6b5e355c9fa878966c2724c493eb SHA256: d083efc551bb4925d9b0ae9223bf7714cc4b990aa84d8618727cb2af62ca6240 Description: Header files and a static library for Python (v3.4) Multi-Arch: allowed Description-md5: ec6a2bf80bfa9d5cd417d85704c5e498 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3.4-doc Priority: optional Section: doc Installed-Size: 36107 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libjs-jquery, libjs-underscore Suggests: python3.4 Filename: pool/main/p/python3.4/python3.4-doc_3.4.0-2ubuntu1_all.deb Size: 4931818 MD5sum: 68e83ee4fbd1282f42b1a5a8687112b5 SHA1: 7509132c0cb9eb8e859b99bfe4eae27ae4f4c45f SHA256: e0b03f243795a125b93d19de79e32f4211ceb0d3465bceb155243dbceccd1afe Description: Documentation for the high-level object-oriented language Python (v3.4) Description-md5: c4e4dacde4e19fbdcc49c336ce8f5b1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3.4-examples Priority: optional Section: python Installed-Size: 1801 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: python3.4 (>= 3.4.0-2ubuntu1) Filename: pool/main/p/python3.4/python3.4-examples_3.4.0-2ubuntu1_all.deb Size: 348140 MD5sum: 4c357f34926727c7e6240741c5c388a7 SHA1: 4e2dcc8483b2fd0e16fc51bdacd02b093e33f96a SHA256: 4518eee1e2f9ab770e297abf76d71d7831bd957d6f9ba9f13c94e8e2a6b94efb Description: Examples for the Python language (v3.4) Description-md5: 21c19f2e05b41b0c19a74ed61f2cbc0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3.4-minimal Priority: important Section: python Installed-Size: 4099 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: amd64 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-minimal (= 3.4.0-2ubuntu1), libexpat1 (>= 2.1~beta3), zlib1g (>= 1:1.2.0) Pre-Depends: libc6 (>= 2.17) Recommends: python3.4 Suggests: binfmt-support Conflicts: binfmt-support (<< 1.1.2) Filename: pool/main/p/python3.4/python3.4-minimal_3.4.0-2ubuntu1_amd64.deb Size: 1273088 MD5sum: 16f4985a7a7d67866153f7bebe73c8e4 SHA1: a9ca764ca7719ab5837122c8f84d2d8439f8ac45 SHA256: 45b0772602f2ae199fb6512eabc8d2cc5dd2f5e2e4aca192e0359fbf307d3925 Description: Minimal subset of the Python language (version 3.4) Multi-Arch: allowed Description-md5: 4e4ca87fe0b3264c74565112cce29495 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: qdbus Priority: optional Section: libs Installed-Size: 218 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbus (<< 4:4.7.4-1) Depends: qtchooser, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Breaks: libqt4-dbus (<< 4:4.7.4-1) Filename: pool/main/q/qt4-x11/qdbus_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 28836 MD5sum: 2250e0919d249aed77dadfb078fc4f01 SHA1: 898d840537f0bb0456aaa7e92bf10daa5de75b73 SHA256: 56413872dd03a232ffc2a65dde6968a5281d609c0cb4ba8edf7c8c610882fc83 Description: Qt 4 D-Bus tool Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: fae23ff3db2d0866fa317f588c249ee5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: qemu-common Priority: optional Section: misc Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: all Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Depends: qemu-keymaps Filename: pool/main/q/qemu/qemu-common_2.0.0~rc1+dfsg-0ubuntu3_all.deb Size: 4748 MD5sum: a58a040035e83aba28a9b99d8840d64e SHA1: 9d45e815d0fd95e64d3c5dfe7118136abef79301 SHA256: ee94deea4f9d20cc83e9a8866d4f1e240c64a4709b94e4246b0fd260c7e4e283 Description: dummy transitional package from qemu-common to qemu-keymaps Homepage: http://www.qemu.org/ Description-md5: 75f3b5c8d23cb9658475e76ce1106707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qemu-keymaps Priority: optional Section: misc Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: all Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu-common (<< 1.2.0.dfsg-1), qemu-system (<< 0.12.4+dfsg-4) Breaks: qemu-common (<< 1.2.0.dfsg-1), qemu-system (<< 0.12.4+dfsg-4) Filename: pool/main/q/qemu/qemu-keymaps_2.0.0~rc1+dfsg-0ubuntu3_all.deb Size: 19478 MD5sum: 5fb177600539c0cda5a6329d3e09aaea SHA1: 9e7408071c5fae6264a0677063a7d99bbf8ab1ec SHA256: f284a91e8abefe256a8b4043e7d6dabf15d2cefd40ec667d93cf3e482c62a426 Description: QEMU keyboard maps Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 83ef32731669abd2c77279a1fe2f3fe0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: qemu-kvm Priority: optional Section: misc Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: amd64 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu-kvm-spice, qemu-system-x86 (<< 1.7.0+dfsg-2~) Provides: kvm, qemu-kvm-spice Depends: qemu-system-x86 (>= 1.7.0+dfsg-2~) Conflicts: kvm, qemu-kvm-spice Breaks: qemu-system-x86 (<< 1.7.0+dfsg-2~) Filename: pool/main/q/qemu/qemu-kvm_2.0.0~rc1+dfsg-0ubuntu3_amd64.deb Size: 7118 MD5sum: b8578233f16698fdecd69c9a6ea9dba9 SHA1: c45798eb83f20241c6f90cee2801433c9bc9575d SHA256: c47a06595f7acd23a32e306198b3529a27a2011bf7d6f747b05d28315ca0e504 Description: QEMU Full virtualization on x86 hardware (transitional package) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 6ae8b7c3deaae1156e48dd91252a8945 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: qemu-system Priority: optional Section: misc Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: amd64 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Depends: qemu-system-arm, qemu-system-mips, qemu-system-ppc, qemu-system-sparc, qemu-system-x86, qemu-system-misc Filename: pool/main/q/qemu/qemu-system_2.0.0~rc1+dfsg-0ubuntu3_amd64.deb Size: 6120 MD5sum: 0ff6fcba008c405f4d31ca4c55525264 SHA1: 59dd53ec7b505b6fee796535503fb44f0ed2732f SHA256: 94b65cd204e1e95a8158455c5ae48aeda5ca7e8a147c3fa7fc4c764d530aa2b1 Description: QEMU full system emulation binaries Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: e4c58b37c60d1fc987e614cbc6f62355 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-arm Priority: optional Section: misc Installed-Size: 6582 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: amd64 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5), qemu-system-aarch64 (<< 2.0.0~rc1+dfsg-0ubuntu1) Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libstdc++6 (>= 4.6), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps Recommends: qemu-utils Suggests: samba, vde2 Breaks: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5), qemu-system-aarch64 (<< 2.0.0~rc1+dfsg-0ubuntu1) Filename: pool/main/q/qemu/qemu-system-arm_2.0.0~rc1+dfsg-0ubuntu3_amd64.deb Size: 1685326 MD5sum: d985aa87fd2b4111c40d1baff43294a1 SHA1: 2bfd6708075989276e6a7d3e41586442b5d7f1db SHA256: 1881cb9eff6b393d161f2e22c2489b1a6e2fded447f9132c9c785dbbe05fa3ab Description: QEMU full system emulation binaries (arm) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: dd2e3401d4d07bbe04a2c0a4b754feca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-common Priority: optional Section: misc Installed-Size: 619 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: amd64 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu (<< 1.3.0+dfsg-5), qemu-common (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5), qemu-utils (<< 1.3.0+dfsg-4) Depends: libc6 (>= 2.14), libcap-ng0, libcap2 (>= 2.10), libglib2.0-0 (>= 2.16.0), udev, acl Pre-Depends: adduser Breaks: iproute (<< 20110315-1), qemu-common (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5), qemu-utils (<< 1.3.0+dfsg-4) Filename: pool/main/q/qemu/qemu-system-common_2.0.0~rc1+dfsg-0ubuntu3_amd64.deb Size: 156214 MD5sum: c9276a6bcde159c441f0bebd2456807b SHA1: 214a5f32391f9335f0ef9fa1288e94f1e6b5c663 SHA256: 7d3440234d2a964693a2364cb918f3a2e73db81d68d41b4c85091e9b7a7cac64 Description: QEMU full system emulation binaries (common files) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 9eeecae0ef6b457cabe162fc54e999b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: qemu-system-mips Priority: optional Section: misc Installed-Size: 23770 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: amd64 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu-system (<< 1.3.0+dfsg-5) Provides: qemu-system-mips64, qemu-system-mips64el, qemu-system-mipsel Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps Recommends: qemu-utils Suggests: samba, vde2 Breaks: qemu-system (<< 1.3.0+dfsg-5) Filename: pool/main/q/qemu/qemu-system-mips_2.0.0~rc1+dfsg-0ubuntu3_amd64.deb Size: 2522818 MD5sum: 3cc18b6b17a130e0585ebe99d9188b5f SHA1: 399a97519a84300ac229c4701626893e7f5b56d6 SHA256: df1b081d3d82354bf56d1363f871fb738ccff25177660596c7722e771295e3c2 Description: QEMU full system emulation binaries (mips) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: c652a6e2716b5a4171c86c75dd130e2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-misc Priority: optional Section: misc Installed-Size: 49642 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: amd64 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu-system (<< 1.3.0+dfsg-5) Provides: qemu-system-alpha, qemu-system-cris, qemu-system-lm32, qemu-system-m68k, qemu-system-microblaze, qemu-system-microblazeel, qemu-system-moxie, qemu-system-or32, qemu-system-s390x, qemu-system-sh4, qemu-system-sh4eb, qemu-system-unicore32, qemu-system-xtensa, qemu-system-xtensaeb Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.15), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps Recommends: qemu-utils Suggests: samba, vde2 Breaks: qemu-system (<< 1.3.0+dfsg-5) Filename: pool/main/q/qemu/qemu-system-misc_2.0.0~rc1+dfsg-0ubuntu3_amd64.deb Size: 5288396 MD5sum: 05b5692349198057f2ddc2cc7e4cc7c6 SHA1: cf70a4ebfc66bbff682ed64265115b68564967ea SHA256: 4728854dfdd0801d05a27df3c1a415b7bc10246944e10a1f81cc9ac620330611 Description: QEMU full system emulation binaries (miscelaneous) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 674392a7ac96dd45bd756ddd59d0917d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-ppc Priority: optional Section: misc Installed-Size: 21421 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: amd64 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Provides: qemu-system-ppc64, qemu-system-ppcemb Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps Recommends: qemu-utils Suggests: samba, vde2, openbios-ppc (>= 1.1+svn1229), openhackware, qemu-slof Breaks: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Filename: pool/main/q/qemu/qemu-system-ppc_2.0.0~rc1+dfsg-0ubuntu3_amd64.deb Size: 2683358 MD5sum: cf3a9dcc1d8a4c5d3cc986d084bffd08 SHA1: f37f458114900cd0c891a006dd466519b6d7ad9f SHA256: 10b93c26949cc97522aa1f3b6136aa1d4c7bc06d04ff8884a9626c4d1a721bf4 Description: QEMU full system emulation binaries (ppc) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: d03bfc49c2ff5347dead81c4531ac2e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-sparc Priority: optional Section: misc Installed-Size: 8626 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: amd64 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Provides: qemu-system-sparc64 Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps Recommends: qemu-utils Suggests: samba, vde2 Breaks: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Filename: pool/main/q/qemu/qemu-system-sparc_2.0.0~rc1+dfsg-0ubuntu3_amd64.deb Size: 1601314 MD5sum: b11f39450acb2da5bd85ca8f1a817e40 SHA1: b09c3ddec45be720bf737d6292df2bf5454b7f48 SHA256: a41529aa465c73df0f729e448e37c5c7d31dffa1ab1fa1960d7324457a11fef0 Description: QEMU full system emulation binaries (sparc) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: cb4be2931f1bb54f137765dca623e91b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-x86 Priority: optional Section: misc Installed-Size: 12051 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: amd64 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Provides: qemu-system-i386, qemu-system-x86-64 Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 4.1.0~rc6), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps, seabios (>= 1.7.2-2~), ipxe-qemu Recommends: qemu-utils, cpu-checker Suggests: samba, vde2, kmod, sgabios Conflicts: kvm (<< 1.3.0+dfsg-5) Breaks: kvm (<< 1.3.0+dfsg-5), libvirt0 (<< 1.0), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Filename: pool/main/q/qemu/qemu-system-x86_2.0.0~rc1+dfsg-0ubuntu3_amd64.deb Size: 1937850 MD5sum: bb424a63b2912d893d9302d55549bfaf SHA1: 3891cb20d5e80f64d21c7a6efedc52d598c67756 SHA256: 3e8c31e2f4e603f9a9afebb4494a3e288bd1731801503f4bb7087eb4bf7847d5 Description: QEMU full system emulation binaries (x86) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 5ac9285103b36e8a4d3a9e37920fe122 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: qemu-utils Priority: optional Section: misc Installed-Size: 2543 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: amd64 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu-kvm (<< 1.2.0.dfsg-1), qemu-user (<< 0.11.1-2) Depends: libaio1 (>= 0.3.93), libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.3), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), librados2, librbd1, libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4) Recommends: sharutils Suggests: debootstrap Conflicts: qemu-kvm (<< 1.2.0.dfsg-1), qemu-user (<< 0.11.1-2) Filename: pool/main/q/qemu/qemu-utils_2.0.0~rc1+dfsg-0ubuntu3_amd64.deb Size: 412004 MD5sum: 45cc9912e4c30c7ebca16a5953c42445 SHA1: 01a97c926ed1514f28d06f556f14bbdd9c460ec3 SHA256: 8902102aa7c7e2fee52b63b5568578222576eb1446dbf6f52645bf3b13fc8b9f Description: QEMU utilities Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 2c65298afe6300be7b1ce793bdf9fb81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: qmlscene Priority: optional Section: devel Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: qtchooser, libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Filename: pool/main/q/qtdeclarative-opensource-src/qmlscene_5.2.1-3ubuntu15_amd64.deb Size: 24640 MD5sum: f35fa0ebce1b109c61cb4277c8eb61a2 SHA1: b264685934fe45aca288b43e25b252a4ea4fed52 SHA256: 61c848a73baf0d3736753469eaafb94557078657d926149d1321e05c42bc19aa Description: Qt 5 QML scene viewer Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: a67138f4ecf886d0813d21f0a39bad26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qpdf Priority: optional Section: text Installed-Size: 543 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: amd64 Version: 5.1.1-1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqpdf13 (>> 5.0.0~), libstdc++6 (>= 4.4.0) Filename: pool/main/q/qpdf/qpdf_5.1.1-1_amd64.deb Size: 206790 MD5sum: d863502d1c37dd3eafdbeddf4a634221 SHA1: de591fe522588f56ec5fb696a3b24f52c2c5d230 SHA256: 4dfe00f5941fec0bca0c41f1a97ca1e1e0d31d22591bd6b7e95f88120272ca0e Description: tools for and transforming and inspecting PDF files Homepage: http://qpdf.sourceforge.net Description-md5: e237dde53d72351f848e1cefa284d4ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: qt-at-spi Priority: optional Section: misc Installed-Size: 511 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: amd64 Version: 0.3.1-4fakesync1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8.0), libqtcore4 (>= 4:4.8~), libqtgui4 (>= 4:4.8~), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt-at-spi/qt-at-spi_0.3.1-4fakesync1_amd64.deb Size: 142932 MD5sum: c6436fd5b1f9f9b7edb93b4640f39972 SHA1: 6fc813f2d792dec19d0df5c58383bf0f90028549 SHA256: 31858c61aadf5f91220ff68502c5eff0b2589a7a80e934b6066e632c74984d6f Description: at-spi accessibility plugin for Qt Multi-Arch: same Description-md5: 91ed58e2ce5f3d40f3eaa63697a81c9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qt-at-spi-doc Priority: optional Section: doc Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: qt-at-spi Version: 0.3.1-4fakesync1 Replaces: qt-at-spi Filename: pool/main/q/qt-at-spi/qt-at-spi-doc_0.3.1-4fakesync1_all.deb Size: 12916 MD5sum: 36d29c4e01f2b58580b186d2fef1eaaf SHA1: bb318bedd83993676392597cd9da94144e3b84d6 SHA256: 67fa7820517a1d776cb3ea3f97d2aff6aaed1ac01a8415812cbdce130bbbfebe Description: at-spi accessibility plugin for Qt - Documentation Description-md5: b63d9fb640db17d4797c2754d465c456 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt3d5-dbg Priority: extra Section: debug Installed-Size: 28719 Maintainer: Ubuntu Developers Architecture: amd64 Source: qt3d-opensource-src Version: 5.0~git20130731-0ubuntu5 Depends: libqt53d5 (= 5.0~git20130731-0ubuntu5), qt3d5-examples (= 5.0~git20130731-0ubuntu5) Filename: pool/main/q/qt3d-opensource-src/qt3d5-dbg_5.0~git20130731-0ubuntu5_amd64.deb Size: 28119550 MD5sum: 009d355cb5904cb0db8aea3bd23f30b6 SHA1: 77387e7c9a3b7d7549de8173b4264502e9b734ff SHA256: 938ce958f58831161b560398a5b5d0a900572f91d011348488c830bda5037fae Description: Qt 3D library debugging symbols Homepage: http://qt-project.org/ Description-md5: d008941dc0b68728702765a32509b059 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt3d5-dev Priority: optional Section: libdevel Installed-Size: 552 Maintainer: Ubuntu Developers Architecture: amd64 Source: qt3d-opensource-src Version: 5.0~git20130731-0ubuntu5 Depends: libqt53d5 (= 5.0~git20130731-0ubuntu5), qtbase5-dev, libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Filename: pool/main/q/qt3d-opensource-src/qt3d5-dev_5.0~git20130731-0ubuntu5_amd64.deb Size: 73346 MD5sum: f2af8d1c5fa486d3f6c3393c67dc6d4f SHA1: c8b72f8f6c16ab58f0a54095f46e3d5c66cbf25e SHA256: aedcb217d5808c361aa3da3447bdab376d61f45f96a4a87af7f975f802244d4f Description: Qt 5 3d development files Homepage: http://qt-project.org/ Description-md5: 358cc10e8f61083d3c13ef468a386de6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt3d5-examples Priority: optional Section: x11 Installed-Size: 10194 Maintainer: Ubuntu Developers Architecture: amd64 Source: qt3d-opensource-src Version: 5.0~git20130731-0ubuntu5 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt53d5 (>= 5.0~git20130731) | libqt53d5-gles (>= 5.0~git20130731), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qt3d-opensource-src/qt3d5-examples_5.0~git20130731-0ubuntu5_amd64.deb Size: 7486632 MD5sum: 730aeee1e73d16d7492201b0558de837 SHA1: 79dad80431f2627ebf702f42bac0832d3fb59ae8 SHA256: c266b94ee68239d5ffb5bb0463f1004f865dc9c5d3fe3ff7835fe171a7f91728 Description: Qt 5 3d examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f97d227aed710af5b43cd1ba1634c7ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt3d5-private-dev Priority: optional Section: libdevel Installed-Size: 181 Maintainer: Ubuntu Developers Architecture: amd64 Source: qt3d-opensource-src Version: 5.0~git20130731-0ubuntu5 Depends: qt3d5-dev (= 5.0~git20130731-0ubuntu5) Filename: pool/main/q/qt3d-opensource-src/qt3d5-private-dev_5.0~git20130731-0ubuntu5_amd64.deb Size: 17954 MD5sum: 81d82ccab1703c91d95e4b8cc8f5ee45 SHA1: 22338c5ddd7756290dd5d2c193e2e44de32465d4 SHA256: 5c9919c3d0b1b38ae851c64b0d6d66adf9b1d222758864a8e14af701e82fb95f Description: Qt 5 3d private development files Homepage: http://qt-project.org/ Description-md5: c02d2e914282e3fe444f0174b94badab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt4-bin-dbg Priority: extra Section: debug Installed-Size: 55445 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbg (<< 4:4.7.3-3) Depends: libqt4-dev-bin (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Breaks: libqt4-dbg (<< 4:4.7.3-3) Filename: pool/main/q/qt4-x11/qt4-bin-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 53675224 MD5sum: be43add34ace3493d5032f42b1d5b92e SHA1: 024e51d5e0480bd09ec8936c29a58082996d3d1c SHA256: 5549b706b6972990e95b81dd7f25058781a79f1657c0fcce4d0b285b5d492f72 Description: Qt 4 binaries debugging symbols Homepage: http://qt-project.org/ Description-md5: 30d00ec1a95d529311faf7e9c80834b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt4-default Priority: optional Section: libs Installed-Size: 142 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqt4-dev, qtchooser Conflicts: qt5-default Filename: pool/main/q/qt4-x11/qt4-default_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 6458 MD5sum: 45255de51c44c641937e4e4a2f9f2d3a SHA1: ff94ecbd1e3070b730c78f54d5eacd70f6d84efe SHA256: 95637f3b1cfcabbda6d1471dc8c04cdc3a531634f45f5b95fa0ff4650b258e4b Description: Qt 4 development defaults package Homepage: http://qt-project.org/ Description-md5: c60bdd7e52ab55284edffcbf153a5ae6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt4-demos Priority: optional Section: x11 Installed-Size: 38793 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-designer (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-help (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-opengl (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-scripttools (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-svg (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-test (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xmlpatterns (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Recommends: libqt4-declarative-gestures, libqt4-declarative-particles, qt4-dev-tools (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), qt4-doc (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Suggests: qt4-qmlviewer Filename: pool/main/q/qt4-x11/qt4-demos_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 9998754 MD5sum: 5de100383091b97ce8c5dd049e390ee5 SHA1: 2ae6eb67ce47bfe877d6366c119107735d0ec57c SHA256: f28c44937de17972d649f4ba4ed5859033a187bb1cac25836255a28ef132c613 Description: Qt 4 examples and demos Homepage: http://qt-project.org/ Description-md5: 52e28f0cb6d84d109e8fe6949d554c02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt4-demos-dbg Priority: extra Section: libs Installed-Size: 118602 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: qt4-demos (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Filename: pool/main/q/qt4-x11/qt4-demos-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 113159734 MD5sum: 7a8cadd66af92523c509169d79e1581a SHA1: 03a44e5dba71891877334a3285788bbd1bdb9a28 SHA256: e54fb2442de725c77022ab3e1f6c06d30e49580c7ad05cfccb0beefcd24bca57 Description: Qt 4 examples and demos debugging symbols Homepage: http://qt-project.org/ Description-md5: 991afe4aa3b4dd3ec2b9dca0d716372c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt4-designer Priority: optional Section: devel Installed-Size: 2159 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: qtchooser, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-designer (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Recommends: libqt4-dev Filename: pool/main/q/qt4-x11/qt4-designer_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 338386 MD5sum: a410579edc52a8d0ac3d52807650f60b SHA1: 4c1b03996982b860a48c82167778da744a5dfea4 SHA256: b4f996bab800abe5fecd3d83fcd51348c3a0221ce3b711cc8d5abd894d2a803f Description: graphical designer for Qt 4 applications Homepage: http://qt-project.org/ Description-md5: cdfd30f0ec154b8bdc30b8b14be6b2d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt4-dev-tools Priority: optional Section: devel Installed-Size: 8612 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqt4-sql-sqlite, qtchooser, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libpng12-0 (>= 1.2.13-4), libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-help (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xmlpatterns (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.4.0), libx11-6, libxtst6 Recommends: libqt4-dev, qt4-designer, qt4-doc Suggests: qt4-doc-html Conflicts: qt3-dev-tools-embedded Filename: pool/main/q/qt4-x11/qt4-dev-tools_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 3863908 MD5sum: 46668bd9d2ad4cff56e8f2e146b0a4e0 SHA1: 3c4b16e18cc3ac30e97f46d881f01636ea34eb39 SHA256: 84cd111d23f47f974063a1a70aa4ad330dcb2cbbf8d59e7152d2f50a04313140 Description: Qt 4 development tools Homepage: http://qt-project.org/ Description-md5: 5011b416d52e1154bf49b8ee22432d56 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt4-doc Priority: optional Section: doc Installed-Size: 101922 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Suggests: libqt4-dev, qt4-dev-tools Filename: pool/main/q/qt4-x11/qt4-doc_4.8.5+git192-g085f851+dfsg-2ubuntu4_all.deb Size: 96447610 MD5sum: 930c9a9b3f3a2cfe3f52eaf99ba0ca08 SHA1: a96b924ef322876ec059b7194289c5ce1d200f65 SHA256: 383382df8c89849259acdecc8e3286a881c903ebb690abaae748119ef291ad9d Description: Qt 4 API documentation Homepage: http://qt-project.org/ Description-md5: 231940cacecaefd769b509e5dae9fb47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt4-linguist-tools Priority: optional Section: devel Installed-Size: 2699 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dev (<< 4:4.7.3-2) Depends: qtchooser, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.4.0), zlib1g (>= 1:1.1.4) Breaks: libqt4-dev (<< 4:4.7.3-2) Filename: pool/main/q/qt4-x11/qt4-linguist-tools_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 827076 MD5sum: 58d68009095d2351ec0aa1b40a8c5e6b SHA1: 4fcb99d81f243dedb6b2508462abb9f2b5c87aa0 SHA256: 502adca335afc0e2fb0b80dec7953438e14826755c3f984448d081d2366a95a0 Description: Qt 4 Linguist tools Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: c9688050e40c3df53ad52c2ad06a0d4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt4-qmake Priority: optional Section: devel Installed-Size: 5100 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: qtchooser, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/q/qt4-x11/qt4-qmake_4.8.5+git192-g085f851+dfsg-2ubuntu4_amd64.deb Size: 1230418 MD5sum: 1bae33126783210f9d9a298be31d0a17 SHA1: 890423d2a77cf06da0e92c601037698f9e90b9dd SHA256: 494b5c9e93e562bcecb09c32bed2e6a2c0c4aeff708e8ab140fdacb4db138c5d Description: Qt 4 qmake Makefile generator tool Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: ed1ae2f01863267495111ab804bd07ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt5-default Priority: optional Section: libs Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Provides: qt-default Depends: qtbase5-dev, qtchooser Suggests: qt5-qmake, qtbase5-dev-tools Conflicts: qt4-default Filename: pool/main/q/qtbase-opensource-src/qt5-default_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 14310 MD5sum: c84313e59004bb96868de9d67d42cf04 SHA1: 718994fb48021098b84446092ec1a05d828c32b7 SHA256: cc25660318a00d6e06d4bf2b257f026b14adbd1dd43ae2641cf4004bcde0e8b8 Description: Qt 5 development defaults package Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 368d5d334866ac98243e1eeb37c32cdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt5-qmake Priority: optional Section: devel Installed-Size: 4797 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: qtchooser, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtbase-opensource-src/qt5-qmake_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 1247872 MD5sum: dfbbbe6d667a7bca2965776252a06b51 SHA1: 32e994590a9b58940e014c00b9e2a21227ae5ca6 SHA256: 35c592f78413467684dde9de197cf462a00b2a7780e83c42a223c0127ee66d4f Description: Qt 5 qmake Makefile generator tool Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d22e820ccda7e109fc6cf2c171df093e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-dbg Priority: extra Section: debug Installed-Size: 126647 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libqt5core5a (= 5.2.1+dfsg-1ubuntu14) Filename: pool/main/q/qtbase-opensource-src/qtbase5-dbg_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 124223518 MD5sum: e8546f6a276744fd58c86d8095fee42d SHA1: f8484cc0ca727a63233e14911f2f965dd9150c41 SHA256: debf44e7e862b41650c68749362f51f1e6e0ac11720d4cb7ac4f614ffa3c5588 Description: Qt 5 base library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 42e6cf0251f2bfd39ea757ae603628da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-dev Priority: optional Section: libdevel Installed-Size: 15561 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libgl1-mesa-dev | libgl-dev, libgles2-mesa-dev | libgles2-dev, libglu1-mesa-dev | libglu-dev, libqt5concurrent5 (= 5.2.1+dfsg-1ubuntu14), libqt5core5a (= 5.2.1+dfsg-1ubuntu14), libqt5dbus5 (= 5.2.1+dfsg-1ubuntu14), libqt5gui5 (= 5.2.1+dfsg-1ubuntu14), libqt5network5 (= 5.2.1+dfsg-1ubuntu14), libqt5printsupport5 (= 5.2.1+dfsg-1ubuntu14), libqt5sql5 (= 5.2.1+dfsg-1ubuntu14), libqt5test5 (= 5.2.1+dfsg-1ubuntu14), libqt5widgets5 (= 5.2.1+dfsg-1ubuntu14), libqt5xml5 (= 5.2.1+dfsg-1ubuntu14), qt5-qmake (= 5.2.1+dfsg-1ubuntu14), qtbase5-dev-tools (= 5.2.1+dfsg-1ubuntu14), qtchooser Pre-Depends: dpkg (>= 1.15.6~) Recommends: libqt5opengl5-dev (= 5.2.1+dfsg-1ubuntu14) Suggests: libmysqlclient-dev, libpq-dev, libsqlite3-dev, unixodbc-dev Filename: pool/main/q/qtbase-opensource-src/qtbase5-dev_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 1645270 MD5sum: 5a34acc6541815677e4c352e434b1bec SHA1: a1944357caa86a218909eb5323ed2d94fa7b77fe SHA256: dade051dcb2f3dac311bfcfe552513d74be14b5d638946980d495c84310d866b Description: Qt 5 base development files Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: b1a4d90909152c53a52db6116d1f19f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-dev-tools Priority: optional Section: devel Installed-Size: 4944 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: qtchooser, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.2.0), libqt5xml5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtbase-opensource-src/qtbase5-dev-tools_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 1166814 MD5sum: 17d403d208e0f90ef7e3ce448c5a4caf SHA1: a81c2dbbaacea50f020ff42bf193f09789a6e536 SHA256: 6f3a74edeb8d3b3512ce21f0263506c2f946b99c696187f9d833ea9b86b26497 Description: Qt 5 base development programs Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: f2e4521485ce2cc91a951d05072b9b8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-dev-tools-dbg Priority: extra Section: debug Installed-Size: 28573 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: qt5-qmake (= 5.2.1+dfsg-1ubuntu14), qtbase5-dev-tools (= 5.2.1+dfsg-1ubuntu14) Recommends: qtbase5-dbg Filename: pool/main/q/qtbase-opensource-src/qtbase5-dev-tools-dbg_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 27842126 MD5sum: 3092c186da41f9c00e12bf36a5f05231 SHA1: 2d106e0a8ce15c977b7fbd24869fc012df835113 SHA256: 27586e682e6d533b8ef722bb078ea2c4603e40df54058c1a1259593ae7f64ceb Description: Qt 5 base binaries debugging symbols Homepage: http://qt-project.org/ Description-md5: 0b720abc654b3c7154b6c63ad55692cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-doc Priority: extra Section: doc Installed-Size: 29757 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qttools-opensource-src Version: 5.2.1-8build1 Filename: pool/main/q/qttools-opensource-src/qtbase5-doc_5.2.1-8build1_all.deb Size: 24856770 MD5sum: ebbbce7a7305b1ad309bb3d7cd9d30f3 SHA1: cb2c6de0eab23918b3d5dde23cb80aa2ada9b429 SHA256: 64c271e5e29c9ad22dae5e525d3bff329e816f8d4ebb3c0715df2878a8bddd22 Description: Qt 5 base documentation Homepage: http://qt-project.org/ Description-md5: ca14ee36d3a7fc0206bfcbb35e2be024 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-doc-html Priority: extra Section: doc Installed-Size: 135554 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Filename: pool/main/q/qtbase-opensource-src/qtbase5-doc-html_5.2.1+dfsg-1ubuntu14_all.deb Size: 21023656 MD5sum: afa38a2a1f0f88bd2719a792611f497f SHA1: eb3c2a66d437cb7aa036fd1bf11863f3e9fe7fba SHA256: ca21dfa71402c9906d636d52e6f540bb69118df05277736b48f14d3d578f8213 Description: Qt 5 base HTML documentation Homepage: http://qt-project.org/ Description-md5: 2e4adf9de7ccece9e0fe9efb81d70fe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-examples Priority: optional Section: x11 Installed-Size: 20095 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.14), libgl1-mesa-glx | libgl1, libqt5concurrent5 (>= 5.0.2), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5printsupport5 (>= 5.0.2), libqt5sql5 (>= 5.0.2), libqt5test5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libqt5xml5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtbase-opensource-src/qtbase5-examples_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 5088566 MD5sum: 9d08916545f487da9202dbe19ef2edd3 SHA1: 6e270168e8aeb89aff45a5dc0a8d36a3f0d54e4e SHA256: 80bf1bf5adb7eda6c78782d317095638db3e99185f24acbbc4970c5f1b6546f9 Description: Qt 5 base examples Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: ac043eae380c0dcd4bce5d40a835f3e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-examples-dbg Priority: extra Section: debug Installed-Size: 98953 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: qtbase5-examples (= 5.2.1+dfsg-1ubuntu14) Recommends: qtbase5-dbg Filename: pool/main/q/qtbase-opensource-src/qtbase5-examples-dbg_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 96092452 MD5sum: efbe3625912f64afd2abcbb583c19697 SHA1: b9fb56e033ebe6ba772792e11e988948b34bb1f6 SHA256: 11f2dcce0c7132bdec5c455378c3dfc84988ca4d23bce89542c17472776aefa7 Description: Qt 5 base examples debugging symbols Homepage: http://qt-project.org/ Description-md5: 51fa5946dc6a9287aa19bbece071fbcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-private-dev Priority: optional Section: libdevel Installed-Size: 5181 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Replaces: qtbase5-dev (<< 5.0.2+dfsg1-3~) Depends: qtbase5-dev (= 5.2.1+dfsg-1ubuntu14) Pre-Depends: dpkg (>= 1.15.6~) Breaks: qtbase5-dev (<< 5.0.2+dfsg1-3~) Filename: pool/main/q/qtbase-opensource-src/qtbase5-private-dev_5.2.1+dfsg-1ubuntu14_amd64.deb Size: 596210 MD5sum: 0e05033c5330199e6f175e6057ab8aa0 SHA1: 3d8cca079b18b7c3363ade7d756d992c5b67c026 SHA256: f5a9bb0db9a6f223f33a2b60043f75d0d30bec56312c96bbd1133c2933040afa Description: Qt 5 base private development files Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: b388fd86350adaeeb21580f32ba12fcc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtchooser Priority: extra Section: libdevel Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Version: 39-g4717841-3 Replaces: libqt4-dev-bin (<= 4:4.8.4+dfsg-1~), qdbus (<= 4:4.8.4+dfsg-1~), qt4-designer (<= 4:4.8.4+dfsg-1~), qt4-dev-tools (<= 4:4.8.4+dfsg-1~), qt4-linguist-tools (<= 4:4.8.4+dfsg-1~), qt4-qmake (<= 4:4.8.4+dfsg-1~), qt4-qmlviewer (<= 4:4.8.4+dfsg-1~), qt4-qtconfig (<= 4:4.8.4+dfsg-1~), qtcreator (<= 2.6.0) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Suggests: qt4-default, qt5-default Breaks: libqt4-dev-bin (<= 4:4.8.4+dfsg-1~), qdbus (<= 4:4.8.4+dfsg-1~), qt4-designer (<= 4:4.8.4+dfsg-1~), qt4-dev-tools (<= 4:4.8.4+dfsg-1~), qt4-linguist-tools (<= 4:4.8.4+dfsg-1~), qt4-qmake (<= 4:4.8.4+dfsg-1~), qt4-qmlviewer (<= 4:4.8.4+dfsg-1~), qt4-qtconfig (<= 4:4.8.4+dfsg-1~), qtcreator (<= 2.6.0) Filename: pool/main/q/qtchooser/qtchooser_39-g4717841-3_amd64.deb Size: 18828 MD5sum: 4a7646973af1ee6066035e8c21ebe3d1 SHA1: e4727d1849c4d725cd0926dfc314a814732dd90a SHA256: b0f040a11c33d67b7527f4cbbe2c2ceee0e14f2324a4be5820230797df7c86d7 Description: Wrapper to select between Qt development binary versions Multi-Arch: foreign Homepage: https://qt-project.org/ Description-md5: 578e83c772762acfad9f5f720f2de449 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: qtcore4-l10n Priority: optional Section: libs Installed-Size: 4548 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqtcore4 (<< 4:4.8.5+dfsg-1~) Breaks: libqtcore4 (<< 4:4.8.5+dfsg-1~) Filename: pool/main/q/qt4-x11/qtcore4-l10n_4.8.5+git192-g085f851+dfsg-2ubuntu4_all.deb Size: 586400 MD5sum: bd3d9a4fe384513d88696b7bede9191a SHA1: 0d8a705fddb4b5fb8d7ab783d83a7eac1a0a5269 SHA256: 7ee98d170f2cc24e7b64b703d01eb0e3ce88f18745b005e24dfd4609378ec4fd Description: Qt 4 core module translations Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: 8be6dd210e08efc97848c729bfd1a1f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: qtdbustest-runner Priority: optional Section: devel Installed-Size: 49 Maintainer: Ubuntu Developers Architecture: amd64 Source: libqtdbustest Version: 0.2+14.04.20140325-0ubuntu1 Depends: libqtdbustest1 (= 0.2+14.04.20140325-0ubuntu1), libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1), gvfs-backends Filename: pool/main/libq/libqtdbustest/qtdbustest-runner_0.2+14.04.20140325-0ubuntu1_amd64.deb Size: 7240 MD5sum: c07f8d74eed0d9fb4e7d5a68626d37c7 SHA1: 07eb9172145cfeb6bc20b43aef51a20bfbc051f1 SHA256: 677d58ca1a071a7ac80c8446e8c31ec44356a5290a29cc07f75b9417c63ccaf0 Description: Library for testing DBus interactions using Qt Homepage: https://launchpad.net/libqtdbustest Description-md5: 765d4cca50cb988ebb82899c9db6e762 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-accounts-plugin Priority: optional Section: libs Installed-Size: 265 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: accounts-qml-module Version: 0.4+14.04.20140317-0ubuntu1 Depends: libaccounts-qt5-1, libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5qml5 (>= 5.0.2), libsignon-qt5-1, libstdc++6 (>= 4.1.1), qtdeclarative5-qtquick2-plugin Filename: pool/main/a/accounts-qml-module/qtdeclarative5-accounts-plugin_0.4+14.04.20140317-0ubuntu1_amd64.deb Size: 55340 MD5sum: 52a96b291cdd85a5bd675739cc1960ed SHA1: 4804ade012d899a5f5729f8cc8c5a1602e66c355 SHA256: 46be108a25e960316559b3940e7279283ccb76068faae3edaa9a6fdac05ed0b6 Description: Expose the Online Accounts API to QML applications Homepage: https://launchpad.net/accounts-qml-module Description-md5: 67a00d1c7763917c85f8241db8c5ffab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-dbg Priority: extra Section: debug Installed-Size: 90113 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libqt5qml5 (= 5.2.1-3ubuntu15), libqt5quick5 (= 5.2.1-3ubuntu15), libqt5quickparticles5 (= 5.2.1-3ubuntu15), libqt5quicktest5 (= 5.2.1-3ubuntu15) Recommends: qtbase5-dbg Suggests: qtdeclarative5-examples (= 5.2.1-3ubuntu15) Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-dbg_5.2.1-3ubuntu15_amd64.deb Size: 87683492 MD5sum: 2e9c00121256ff255e09c9cc6e95bb4f SHA1: f62e59eeb74c384b24deacd15e2d0cd2c9fadae2 SHA256: 39c0605c124ad6e21e7d8830ced5051e550afd7d737cf0a10ea982d7c14d8e93 Description: Qt 5 declarative libraries debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2c4f9639d414f3740d238c0ba7fea1d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-dev Priority: optional Section: libdevel Installed-Size: 1044 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libqt5qml5 (= 5.2.1-3ubuntu15), libqt5quick5 (= 5.2.1-3ubuntu15) | libqt5quick5-gles, libqt5quickparticles5 (= 5.2.1-3ubuntu15) | libqt5quickparticles5-gles, libqt5quicktest5 (= 5.2.1-3ubuntu15), qtbase5-dev Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-dev_5.2.1-3ubuntu15_amd64.deb Size: 107140 MD5sum: 62d6117b7d9a325bdbf333ae7b293d7f SHA1: 2a22a4d225eea34becb64ce133e16a014229891e SHA256: 27ed37d7edb4f3700edc535840a7706babc22d498b279746ed7100e89ac5e610 Description: Qt 5 declarative development files Homepage: http://qt-project.org/ Description-md5: 957c332e0d189c34d9a632e0f21bca92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-dev-tools Priority: optional Section: devel Installed-Size: 669 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: qtchooser, libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5quicktest5 (>= 5.0.2), libstdc++6 (>= 4.4.0), qtdeclarative-abi-5-2-1 Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-dev-tools_5.2.1-3ubuntu15_amd64.deb Size: 152282 MD5sum: 6deb944e395b681c27da105079edf853 SHA1: 687c8119c899dbbe388bc403884e339053ec8bfe SHA256: 23cb56da235ab68b1548dc2ef0e5d7678e06e92c20e87b5626441c3a2c3f44e3 Description: Qt 5 declarative development programs Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: 384db51b9ca50d630409949145f8f5c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-dialogs-plugin Priority: optional Section: libs Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: qtdeclarative5-privatewidgets-plugin, libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libqt5qml5 (>= 5.2.0~beta1), libqt5quick5 (>= 5.2.0) | libqt5quick5-gles (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-dialogs-plugin_5.2.1-3ubuntu15_amd64.deb Size: 79784 MD5sum: 69766bc99e328d1c26b8f46330ebf266 SHA1: 76236bb87df76fdee9cd93129bb60ca59ad81eec SHA256: ffeee132c5ee3ee6da8b705417db76357525f75c58b312d033fde0dee8a4573e Description: Qt 5 Dialogs QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4153eb80f1713cecb1c154c4d26d86fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-doc Priority: extra Section: doc Installed-Size: 9615 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qttools-opensource-src Version: 5.2.1-8build1 Filename: pool/main/q/qttools-opensource-src/qtdeclarative5-doc_5.2.1-8build1_all.deb Size: 8932280 MD5sum: f589600718e406a80e94438894b9ae05 SHA1: c0358e0ba894ef98c69385e76308c68901825296 SHA256: f4ffc8c602f7d3844672974e30b1b7e9f185c3d8e70e5d6f5a0d76c6c215afd6 Description: Qt 5 declarative documentation Homepage: http://qt-project.org/ Description-md5: 2ec916802abb12173521f9426462cb19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-doc-html Priority: extra Section: doc Installed-Size: 29819 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-doc-html_5.2.1-3ubuntu15_all.deb Size: 7275792 MD5sum: b4505942e0fb00d24ac3939724fde067 SHA1: b638e16ee0c555d2183be4f762db05478d118c31 SHA256: 1e98c2eab9a98bc3fe0bfe907f3363983a7a7cac4c307bcadc6f929a99057500 Description: Qt 5 declarative HTML documentation Homepage: http://qt-project.org/ Description-md5: c4e1002a33f34eaadd0aebbf2f0751c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-examples Priority: optional Section: x11 Installed-Size: 24938 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: qtdeclarative5-dialogs-plugin, qtdeclarative5-localstorage-plugin, qtdeclarative5-models-plugin, qtdeclarative5-particles-plugin, qtdeclarative5-test-plugin, qtdeclarative5-xmllistmodel-plugin, libc6 (>= 2.14), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.2.0~rc1), libqt5quick5 (>= 5.2.0~rc1) | libqt5quick5-gles (>= 5.2.0~rc1), libqt5quicktest5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-examples_5.2.1-3ubuntu15_amd64.deb Size: 9317184 MD5sum: 56cc3a37f6b308d191b499b46ea677d3 SHA1: 35567d9b6a2de058fcc3dcf25c2d06f8ece6f612 SHA256: c99a88d32dc0b1466eb112f3a481fc068eee952ef3fb106761973ebc440d4c4d Description: Qt 5 declarative examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 9395b1f087c5d56a350f56068c95f914 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-folderlistmodel-plugin Priority: optional Section: libs Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5qml5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-folderlistmodel-plugin_5.2.1-3ubuntu15_amd64.deb Size: 31060 MD5sum: bce7904730cb294a5576516bcf4a4f43 SHA1: 7b980a0df61a35a565e05a47283ab1e1ea386cd1 SHA256: 95229b6957b669056e49caa0af902cc5c2a4501017552ebb44de69552ae49d42 Description: Qt 5 folderlistmodel QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2b022902cb6146ad6235e490a9b295cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-localstorage-plugin Priority: optional Section: libs Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libqt5sql5-sqlite, libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.2.0+gitcb78684a), libqt5sql5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-localstorage-plugin_5.2.1-3ubuntu15_amd64.deb Size: 28482 MD5sum: ece659435ecd9742d8f476db880f4758 SHA1: 1e9ca4c4920a980fd5b1351774da1fd0904c75d8 SHA256: 27b90c1a976ba16441dcc9afb8a571edb0d058949d1d910ad84b852ca0fb10f5 Description: Qt 5 localstorage QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: bcccbbb3c9510cf4065d2b4197d7d3f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-models-plugin Priority: optional Section: libs Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.2.5), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.1.0), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-models-plugin_5.2.1-3ubuntu15_amd64.deb Size: 14858 MD5sum: d22c494282619c24803d50accb3b75fd SHA1: 163935d63d700000ded94fcf52dc6719f64eff02 SHA256: bb855157137930d03f47b9a93c11adc17d49ce9a79fffebb1b44f62d2aab4517 Description: Qt 5 Models QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e9a1a70b42a38cd9950b02a46411fe4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-particles-plugin Priority: optional Section: libs Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.2.5), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quickparticles5 (>= 5.2.1) | libqt5quickparticles5-gles (>= 5.2.1), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-particles-plugin_5.2.1-3ubuntu15_amd64.deb Size: 17962 MD5sum: 0c3a3b99864a10c4f221b4e1cc57c35f SHA1: 583d29e9f439403053f93db9cb4f01870e0e5d00 SHA256: 1ccb82fcc29ff0796c60d9652e0165a569b164e1be307fe493d5377dcfd156a0 Description: Qt 5 particles QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: b16e592eb8bb06f1b7e02a650d1c393c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-private-dev Priority: optional Section: libdevel Installed-Size: 2434 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Replaces: qtdeclarative5-dev (<< 5.2.0-5~) Depends: qtdeclarative5-dev (= 5.2.1-3ubuntu15) Breaks: qtdeclarative5-dev (<< 5.2.0-5~) Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-private-dev_5.2.1-3ubuntu15_amd64.deb Size: 270982 MD5sum: bef1524e76782dc076b86479fd8b3e0c SHA1: 017d67799087e1b6361e11ee4eee5227e87784df SHA256: ded7d563a08a053024520958e357b36c9bf2f4425ca1bd03f8a1127035ca5328 Description: Qt 5 declarative private development files Homepage: http://qt-project.org/ Description-md5: 650de6f02e126414bf75eaf5bab88505 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-privatewidgets-plugin Priority: optional Section: libs Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.2.0) | libqt5quick5-gles (>= 5.2.0), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-privatewidgets-plugin_5.2.1-3ubuntu15_amd64.deb Size: 40234 MD5sum: 644ca88627ee740f2801e93719850cc4 SHA1: 009770f9c8a27947edb5e85d5931e98bccf56268 SHA256: 0a7cc1b2ebfe3dfc1962ea760b7e00595571ef9f986921dca6992ef1555e8209 Description: Qt 5 Private Widgets QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: c354328a99de10090df18dd2077a5581 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-qtfeedback-plugin Priority: optional Section: libs Installed-Size: 115 Maintainer: Ubuntu Developers Architecture: amd64 Source: qtfeedback-opensource-src Version: 5.0~git20130529-0ubuntu3 Depends: libqt5feedback5, libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtfeedback-opensource-src/qtdeclarative5-qtfeedback-plugin_5.0~git20130529-0ubuntu3_amd64.deb Size: 18894 MD5sum: 0b012da9e39f84c82e3ac9e781833eee SHA1: 74d0af2e65e26ed395c95d187163a6e65cbb5e1a SHA256: a87bd89d0e84f4fd680d9d63110a3d19f3f2dae93d84b8bd0fb9514dff47f8e5 Description: Qt Feedback module - QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f49b7c00560fbe7a5d3fa582b597fb99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-qtmultimedia-plugin Priority: extra Section: libs Installed-Size: 405 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libqt5multimedia5-plugins, libc6 (>= 2.14), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5multimedia5 (>= 5.2.0), libqt5multimediaquick-p5 (>= 5.0.2), libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.2.0) | libqt5quick5-gles (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/qtdeclarative5-qtmultimedia-plugin_5.2.1-0ubuntu5_amd64.deb Size: 75094 MD5sum: b737f7baf66b85ca314b502c7107e2a9 SHA1: bbc1c9bd846a8a0004945eaf4a8b30678734c4e2 SHA256: 1102a8a8a0e3f1423b06b95f4a1648704708b0c1ed9c00c80d33eb9d9363103d Description: Qt 5 Multimedia QML plugin Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 0d34afc2bacc04245756745496fab3f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-qtquick2-plugin Priority: optional Section: libs Installed-Size: 295 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libgl1-mesa-dri, libc6 (>= 2.2.5), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-qtquick2-plugin_5.2.1-3ubuntu15_amd64.deb Size: 34062 MD5sum: 4b74ae8994c5d384cf00a6e032056584 SHA1: 0edc7369a4dd9890659826261f6032f8765b2356 SHA256: 8309a170c961d64158b078ff5744fda898406a4d215ad44890521f86bfe91f1a Description: Qt 5 Qt Quick 2 QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 8115dce71831a4658e24e25152884946 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-test-plugin Priority: optional Section: libs Installed-Size: 190 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.2.0~beta1), libqt5quicktest5 (>= 5.0.2), libqt5test5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-test-plugin_5.2.1-3ubuntu15_amd64.deb Size: 31658 MD5sum: 71647b4f2d2c9e09d08cd3aa61b4b65c SHA1: cc70abbd0109489fbb7ee1d700adf7521d2d6609 SHA256: 5b92af13ae7252d8ec4cb9563a66575b9ea55dc530c7b04feb2ff6136b30005e Description: Qt 5 test QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 79c2d8985dfeea42ade03ea77850ac25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-ubuntu-ui-extras-browser-plugin Priority: optional Section: x11 Installed-Size: 159 Maintainer: Ubuntu Developers Architecture: amd64 Source: webbrowser-app Version: 0.23+14.04.20140414-0ubuntu1 Replaces: webbrowser-app (<< 0.21) Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.0.2), libstdc++6 (>= 4.1.1), libqt5sql5-sqlite, libqt5webkit5-qmlwebkitplugin, liboxideqt-qmlplugin, qtdeclarative5-qtquick2-plugin, qtdeclarative5-ubuntu-ui-extras-browser-plugin-assets (>= 0.23+14.04.20140414-0ubuntu1), qtdeclarative5-ubuntu-ui-toolkit-plugin, qtdeclarative5-unity-action-plugin, qtdeclarative5-window-plugin Breaks: webbrowser-app (<< 0.21) Filename: pool/main/w/webbrowser-app/qtdeclarative5-ubuntu-ui-extras-browser-plugin_0.23+14.04.20140414-0ubuntu1_amd64.deb Size: 20730 MD5sum: 28037e12b6bacbe4e31cadb63ea8a4fa SHA1: 2ba86bd3aa155cbfb4dec4a0869261b9ba61cc2b SHA256: 33d7cfdd31793ae2b318b57f2c2327fe17940b9eb83b6eb811298eabd562c01f Description: Ubuntu web browser QML plugin Multi-Arch: same Homepage: https://launchpad.net/webbrowser-app Description-md5: 8eedba8741c41552950165fc367eb173 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-ubuntu-ui-extras-browser-plugin-assets Priority: optional Section: x11 Installed-Size: 50 Maintainer: Ubuntu Developers Architecture: all Source: webbrowser-app Version: 0.23+14.04.20140414-0ubuntu1 Filename: pool/main/w/webbrowser-app/qtdeclarative5-ubuntu-ui-extras-browser-plugin-assets_0.23+14.04.20140414-0ubuntu1_all.deb Size: 6362 MD5sum: b1817bff4a07a7fa566269ca9b270c46 SHA1: fefb4ec453fd70c61113c4d517360d612ee07626 SHA256: ea86e98163ac8c01a296e61ed52b6f451a1bf6262b7684e06aab92d03c6986f3 Description: Ubuntu web browser QML plugin assets Multi-Arch: foreign Homepage: https://launchpad.net/webbrowser-app Description-md5: eee3251628cd3dde9d423f0209689509 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-ubuntu-ui-toolkit-plugin Priority: optional Section: libs Installed-Size: 1956 Maintainer: Ubuntu Developers Architecture: amd64 Source: ubuntu-ui-toolkit Version: 0.1.46+14.04.20140408.1-0ubuntu1 Replaces: qt-components-ubuntu Provides: qt-components-ubuntu Depends: libqt5qml-graphicaleffects | libqt5graphicaleffects5, libqt5svg5, qtdeclarative5-qtquick2-plugin, qtdeclarative5-window-plugin, qtdeclarative5-qtfeedback-plugin, qtdeclarative5-unity-action-plugin (>= 1.1.0), ttf-ubuntu-font-family, ubuntu-ui-toolkit-theme, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libnih-dbus1 (>= 1.0.0), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5organizer5, libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.2.0), libstdc++6 (>= 4.1.1), libthumbnailer0 (>= 1.0), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Conflicts: qt-components-ubuntu Filename: pool/main/u/ubuntu-ui-toolkit/qtdeclarative5-ubuntu-ui-toolkit-plugin_0.1.46+14.04.20140408.1-0ubuntu1_amd64.deb Size: 309622 MD5sum: 11a4fa3235606c5f8ecdb7e5a19c854b SHA1: cde8782a4fc78e4cc12806ec547c22afb90fda8c SHA256: 0c837f769d7f29c36457b371ce2a544b22649503b5ce9a99edc790b6bcebc85d Description: Qt Components for Ubuntu - QML plugin Multi-Arch: same Homepage: https://launchpad.net/ubuntu-ui-toolkit Description-md5: 9e544ade168ff90b20e3d73dabebef3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-unity-action-plugin Priority: optional Section: libs Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Antti Kaijanmäki Architecture: amd64 Source: unity-action-api Version: 1.1.0+14.04.20140304-0ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.0.2), libstdc++6 (>= 4.1.1), libunity-action-qt1 (= 1.1.0+14.04.20140304-0ubuntu1) Filename: pool/main/u/unity-action-api/qtdeclarative5-unity-action-plugin_1.1.0+14.04.20140304-0ubuntu1_amd64.deb Size: 15256 MD5sum: e3b0a514457bd617dabafa7489ded603 SHA1: c65e508f968a30633b464e1d5a6bef696209d9dc SHA256: 423b826f7d787edf7aee63727c5639039aa16a73ec90eb40c591b68277cda98c Description: Unity Action QML Components Multi-Arch: same Homepage: https://launchpad.net/unity-action-api Description-md5: 8052d75f27642f937b79b51a34294586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-window-plugin Priority: optional Section: libs Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.2.5), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-window-plugin_5.2.1-3ubuntu15_amd64.deb Size: 16156 MD5sum: ded504165e40034b4a6fbf770f5885c4 SHA1: 8fefbe53a52faef50b6da7eda886091e6f93031a SHA256: cf6d27110f7b75eb77f86ac50f2ec4a99cb4bd6831238e8bff044c400d2b5d64 Description: Qt 5 window QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 283404e67ae76e2467e6854af97cd5ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-xmllistmodel-plugin Priority: optional Section: libs Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.2.0~beta1), libqt5xmlpatterns5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-xmllistmodel-plugin_5.2.1-3ubuntu15_amd64.deb Size: 40126 MD5sum: c06c35ce0656257cdb32c41eef67a2d0 SHA1: 6f2ce189d3c6593336c4ad994e5174e52eff7ad8 SHA256: c2056678de7bb09eb2b369de405773eb2127584d45ea0104ae69e8488437abe0 Description: Qt 5 xmllistmodel QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4356736191aed0caa0426d1f062a418a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtfeedback5-dbg Priority: extra Section: debug Installed-Size: 1310 Maintainer: Ubuntu Developers Architecture: amd64 Source: qtfeedback-opensource-src Version: 5.0~git20130529-0ubuntu3 Depends: libqt5feedback5 (= 5.0~git20130529-0ubuntu3) Filename: pool/main/q/qtfeedback-opensource-src/qtfeedback5-dbg_5.0~git20130529-0ubuntu3_amd64.deb Size: 1228024 MD5sum: f1758a8e877acf4ccf85c43dadff5d07 SHA1: 0759acb720b8d8c5907d3a1f7d46dd89aa2be785 SHA256: 7f2e420fd01893cfc0793b08b8ee25db34ee36a11b893f7eb106ebee42530237 Description: Qt Feedback library debugging symbols Homepage: http://qt-project.org/ Description-md5: 18db6ab975f33c2c71d6d40e02bf4117 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtfeedback5-dev Priority: optional Section: libdevel Installed-Size: 104 Maintainer: Ubuntu Developers Architecture: amd64 Source: qtfeedback-opensource-src Version: 5.0~git20130529-0ubuntu3 Depends: libqt5feedback5 (= 5.0~git20130529-0ubuntu3), qtbase5-dev Filename: pool/main/q/qtfeedback-opensource-src/qtfeedback5-dev_5.0~git20130529-0ubuntu3_amd64.deb Size: 10026 MD5sum: d72fbc52a68293b5958b98d0a60e7218 SHA1: 125b58f81b008e08c975cd91f4fab6903c0a0b56 SHA256: c92569cc0d127fe0625a94b1bcfd987ebb600e1c4f6b31332d0f62093ca22eb8 Description: Qt 5 Feedback development files Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: c743bd21441efe85cb49d0719f6fa040 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtgraphicaleffects5-doc Priority: extra Section: doc Installed-Size: 15875 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtgraphicaleffects-opensource-src Version: 5.2.1-1 Filename: pool/main/q/qtgraphicaleffects-opensource-src/qtgraphicaleffects5-doc_5.2.1-1_all.deb Size: 13801722 MD5sum: 0e6de724dd83b6271e0d164011e3b330 SHA1: aa8eb4cd196f230bdf5eadf26ecf5a752cbe546d SHA256: a98a799c9002cce256d82040037a898006d487e2dfe73968ff5c3aa04ed1eb91 Description: Qt 5 graphical effects documentation Homepage: http://qt-project.org/ Description-md5: 44762d5cc2f29a033a8292663c6968f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtlocation5-dbg Priority: extra Section: debug Installed-Size: 18669 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Depends: libqt5location5 (= 5.2.1-1ubuntu2), libqt5positioning5 (= 5.2.1-1ubuntu2) Recommends: qtbase5-dbg, qtdeclarative5-dbg Filename: pool/main/q/qtlocation-opensource-src/qtlocation5-dbg_5.2.1-1ubuntu2_amd64.deb Size: 18176232 MD5sum: 7ab0651ec548f04777b7530c2e82d218 SHA1: 5350653ef43ca8006e5af68a01445f78936ae2b9 SHA256: f6e1b4a84c9d888339d8fb664abc5bb847e2cb602d98762a06f34367514f02de Description: Qt Location library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 6fb6726d9e1a3d1efba2d2a673b59be9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtlocation5-dev Priority: optional Section: libdevel Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Depends: libqt5location5 (= 5.2.1-1ubuntu2), libqt5location5-plugins (= 5.2.1-1ubuntu2), qtbase5-dev, qtdeclarative5-dev, qtpositioning5-dev Filename: pool/main/q/qtlocation-opensource-src/qtlocation5-dev_5.2.1-1ubuntu2_amd64.deb Size: 19288 MD5sum: bb9c75ebda9d1eb750c3258fa60545f1 SHA1: 14849b1c4785de9fe3006650807e98a61b3d98d1 SHA256: 1526cad26e9af192e95cafdc29a8da39fc8993a53ecc86a54421005963e3368c Description: Qt 5 Location development files Homepage: http://qt-project.org/ Description-md5: 7427c1fc236f1dd3f2ac4a9882d8a6ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtlocation5-doc Priority: extra Section: doc Installed-Size: 1923 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Filename: pool/main/q/qtlocation-opensource-src/qtlocation5-doc_5.2.1-1ubuntu2_all.deb Size: 1688652 MD5sum: 1d5b7e33669b09573bc3c2adda1b251a SHA1: ca5db5d2ef9eafc68e73a9273f9fb1e0fb376d27 SHA256: 33841338084cb9bcaccc1c7631626aa8cd5290bd68e2380d99750aafecc869b1 Description: Qt 5 Positioning documentation Homepage: http://qt-project.org/ Description-md5: 9fe7fa324dc34c0a94466b8f54047e13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtlocation5-examples Priority: optional Section: x11 Installed-Size: 2779 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Depends: libqt5location5-plugins (= 5.2.1-1ubuntu2), libqt5positioning5-plugins (= 5.2.1-1ubuntu2), libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5positioning5 (>= 5.2.1), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/q/qtlocation-opensource-src/qtlocation5-examples_5.2.1-1ubuntu2_amd64.deb Size: 1659386 MD5sum: bdf4f034505d9a2750b76dba07c07442 SHA1: c5d1502235c478ffe24090c76ed25e0490b72028 SHA256: 1e00123f002094680181b8942e091ef4495a305894187eb234088e4e138c0889 Description: Qt 5 Location and Positioning examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f1678e4b1dd2a8154f42ef8ef6c0548c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtmultimedia5-dbg Priority: extra Section: debug Installed-Size: 25973 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libqt5multimedia5 (= 5.2.1-0ubuntu5) Suggests: qtmultimedia5-examples (= 5.2.1-0ubuntu5) Filename: pool/main/q/qtmultimedia-opensource-src/qtmultimedia5-dbg_5.2.1-0ubuntu5_amd64.deb Size: 25268302 MD5sum: a0777714ba23af0f930ea1b88722fcd7 SHA1: 0963790060a74ace20e92ef0ef8a295e8d776ed8 SHA256: 91fea51477086cbd3926cba9646eef31fe58a6abd8ff214b0ab9b404eb0e325e Description: Qt 5 Multimedia library debugging symbols Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 46c447a30dea0066bc7bcf8e926d7234 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtmultimedia5-dev Priority: extra Section: libdevel Installed-Size: 428 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libqgsttools-p1 (= 5.2.1-0ubuntu5), libqt5multimedia5 (= 5.2.1-0ubuntu5), libqt5multimediaquick-p5 (= 5.2.1-0ubuntu5), libqt5multimediawidgets5 (= 5.2.1-0ubuntu5), qtbase5-dev Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtmultimedia-opensource-src/qtmultimedia5-dev_5.2.1-0ubuntu5_amd64.deb Size: 38608 MD5sum: 896b9a0d5ef8aefd823f07dcd330dd0a SHA1: c9d2953f1a051b0580100c096ede6ce180edeb7b SHA256: efd897f331985bcc12557d71b95183fb8c95dd84b4ce8d3223a9c48e4dd1ff52 Description: APIs for multimedia functionality - development files Homepage: https://qt-project.org/ Description-md5: d66c7302b817d2d8a6eeed52062a5950 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtmultimedia5-doc Priority: extra Section: doc Installed-Size: 3240 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Filename: pool/main/q/qtmultimedia-opensource-src/qtmultimedia5-doc_5.2.1-0ubuntu5_all.deb Size: 2932324 MD5sum: 680870fca77a1f5eff6747f438517af0 SHA1: b03878fa24225f61c26af119a871d1221d9241aa SHA256: 1da54f5ff2a480ce8578121fa0e6778535323a344f78673b2dc8c0a75375c788 Description: Qt 5 multimedia documentation Homepage: https://qt-project.org/ Description-md5: 9aa5cda04caafcdcf8c9cc892a45d227 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtmultimedia5-doc-html Priority: extra Section: doc Installed-Size: 11604 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Filename: pool/main/q/qtmultimedia-opensource-src/qtmultimedia5-doc-html_5.2.1-0ubuntu5_all.deb Size: 2512950 MD5sum: fff1fdec53cc1b474295a453e6ffdda7 SHA1: 9d6ecc0600c581109c9e39130911e2be8f5949b1 SHA256: aa9cb7e2e51c6b30f8ed6945ff7e440c4433f431626bd3dff0232773577c274d Description: Qt 5 multimedia HTML documentation Homepage: https://qt-project.org/ Description-md5: cef6f70d1283a688309a1ab73b3b1371 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtmultimedia5-examples Priority: extra Section: x11 Installed-Size: 2898 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libqt5multimedia5-plugins (= 5.2.1-0ubuntu5), qtdeclarative5-folderlistmodel-plugin, qtdeclarative5-qtmultimedia-plugin (= 5.2.1-0ubuntu5), qtdeclarative5-qtquick2-plugin, libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5multimedia5 (>= 5.2.0), libqt5multimediawidgets5 (>= 5.0.2) | libqt5multimediawidgets5-gles (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/qtmultimedia5-examples_5.2.1-0ubuntu5_amd64.deb Size: 612304 MD5sum: 2ec856fd1c8ae7adb63fc5585565c34a SHA1: c44baa28733a48fd77c61b3bf67a899ac8994851 SHA256: 8ffbff8b359a0e021867215e8fe52af956b884bb5529fed423b34f5a3514cd07 Description: Examples for Qt 5 Multimedia module Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 49d9bf07b867f8f8f5fef95670514ed0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtpim5-dbg Priority: optional Section: debug Installed-Size: 14879 Maintainer: Ubuntu Developers Architecture: amd64 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libqt5contacts5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5organizer5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5versit5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5versitorganizer5 (= 5.0~git20140203~e0c5eebe-0ubuntu2) Filename: pool/main/q/qtpim-opensource-src/qtpim5-dbg_5.0~git20140203~e0c5eebe-0ubuntu2_amd64.deb Size: 13990390 MD5sum: 9331f052946722b92400b4b80dba9cd0 SHA1: d93071eec62ba961c1a60d7fbe05c304812325fa SHA256: 84f630a5280fd9a9adbf8a4db27558d10aefbddcb1bc06f23b6df5479aefd20b Description: Qt PIM library debugging symbols Homepage: http://qt-project.org/ Description-md5: a03c23301053d7d972778dd9256a9a47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtpim5-dev Priority: optional Section: libdevel Installed-Size: 682 Maintainer: Ubuntu Developers Architecture: amd64 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libqt5contacts5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5organizer5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5versit5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5versitorganizer5 (= 5.0~git20140203~e0c5eebe-0ubuntu2) Filename: pool/main/q/qtpim-opensource-src/qtpim5-dev_5.0~git20140203~e0c5eebe-0ubuntu2_amd64.deb Size: 52514 MD5sum: 81979c3665026c1a388e55392dae682a SHA1: 083d669f545080f2de1469cb61b6022d0ff11cc3 SHA256: 4c4155e83b47b930102e28a7ab671c0afc91aeb90fa3a51a164e73c30b2a8e3c Description: Qt 5 PIM development files Homepage: http://qt-project.org/ Description-md5: 7cc457e1f7210119b1a0ff2f23406872 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtpositioning5-dev Priority: optional Section: libdevel Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Replaces: qtlocation5-dev (<< 5.2.1-0ubuntu2~) Depends: libqt5positioning5 (= 5.2.1-1ubuntu2), libqt5positioning5-plugins (= 5.2.1-1ubuntu2), qtbase5-dev, qtdeclarative5-dev Breaks: qtlocation5-dev (<< 5.2.1-0ubuntu2~) Filename: pool/main/q/qtlocation-opensource-src/qtpositioning5-dev_5.2.1-1ubuntu2_amd64.deb Size: 12370 MD5sum: 2fa3ed894ef66287298c8e2498137f06 SHA1: d0e07b3f45f5516dfd28df048f4e3e6a80679bc6 SHA256: 3a6f4f3aa35dcb94db0f58f248ee714ae7e67fd0a30f568fc4da9c17f2a96df9 Description: Qt 5 Positioning development files Homepage: http://qt-project.org/ Description-md5: 6b9276dc70755398fd080b95764c828d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-dbg Priority: extra Section: debug Installed-Size: 27281 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Depends: libqt5script5 (= 5.2.1+dfsg-1ubuntu1), libqt5scripttools5 (= 5.2.1+dfsg-1ubuntu1) Suggests: qtscript5-examples (= 5.2.1+dfsg-1ubuntu1) Filename: pool/main/q/qtscript-opensource-src/qtscript5-dbg_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 26926532 MD5sum: 0c0b5c0f074810dbd629e41adc0cec3d SHA1: ea167b34ed0b391d70de182dcd56dbef51253147 SHA256: 876d0ae1a69505d814da4644546741bb0a7005775ee006bdb4de9044c956cb61 Description: Qt 5 script libraries debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: dc6ad561731883908401b83f9cc90242 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-dev Priority: optional Section: libdevel Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Depends: libqt5script5 (= 5.2.1+dfsg-1ubuntu1), libqt5scripttools5 (= 5.2.1+dfsg-1ubuntu1), qtbase5-dev Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtscript-opensource-src/qtscript5-dev_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 18200 MD5sum: bcd59b00698462a97d967304a6840d12 SHA1: 69c3100e73a23b23f0b854b4ccb65dcb2151b458 SHA256: baeb2a9de4f5283f187d4305ee796e1342474a7003bbe198cc3c959404fba51a Description: Qt 5 script development files Homepage: http://qt-project.org/ Description-md5: 9c895e1d9010a1b23470d0c0eed496d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-doc Priority: extra Section: doc Installed-Size: 417 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Filename: pool/main/q/qtscript-opensource-src/qtscript5-doc_5.2.1+dfsg-1ubuntu1_all.deb Size: 295882 MD5sum: 5d2d94862457d60bf1b31b6fd30bb606 SHA1: 5bfd6111a3a8814717f1b8e23c2958f9503da639 SHA256: d85fe8ba3fad64df981a3e7ebf95f19408218d6782f1992facf7325bebd68d16 Description: Qt 5 script documentation Homepage: http://qt-project.org/ Description-md5: a6434dbb2e0c5b961b87e5875be7cf17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-doc-html Priority: extra Section: doc Installed-Size: 2959 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Filename: pool/main/q/qtscript-opensource-src/qtscript5-doc-html_5.2.1+dfsg-1ubuntu1_all.deb Size: 278664 MD5sum: 018dda382ecb889f91bc15cc898f3863 SHA1: 9d1560dc0e4e815dd53a344b8bd039e9b0f682a7 SHA256: bbd9edadc77806c94db3040fbcfaf3c3a759fc510fbc192b7b71d3468ef7cee0 Description: Qt 5 script HTML documentation Homepage: http://qt-project.org/ Description-md5: bd7b8b04024dae6cc194a09439eab845 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-examples Priority: optional Section: x11 Installed-Size: 620 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2), libqt5script5 (>= 5.0.2), libqt5scripttools5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtscript-opensource-src/qtscript5-examples_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 111804 MD5sum: 6a9f94cd2546db1edafc49345decd2b4 SHA1: 332908f3de2410d850b2e6eca15db2d1bd0c514b SHA256: dfda3142f541d54dd7ff3649bf35110855c17a4cdad71c1973f728bac07935e3 Description: Qt 5 script examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4bffca6cd623049a22e5f67763708da7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-private-dev Priority: optional Section: libdevel Installed-Size: 570 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Depends: qtscript5-dev (= 5.2.1+dfsg-1ubuntu1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtscript-opensource-src/qtscript5-private-dev_5.2.1+dfsg-1ubuntu1_amd64.deb Size: 44694 MD5sum: e594da89ef6462abaf8e7e311d648517 SHA1: 8f51afbb27d0c85823580c2bdac5205e29b6766f SHA256: a13befd7e263ec0ed23c61a9a4a1869ca33a9b20b6f026695c76075618d17431 Description: Qt 5 script private development files Homepage: http://qt-project.org/ Description-md5: fd23c113e829c259d1dd5a3421ee04f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsensors5-dbg Priority: extra Section: debug Installed-Size: 7550 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Depends: libqt5sensors5 (= 5.2.1+dfsg-2ubuntu2) Suggests: qtsensors5-examples (= 5.2.1+dfsg-2ubuntu2) Filename: pool/main/q/qtsensors-opensource-src/qtsensors5-dbg_5.2.1+dfsg-2ubuntu2_amd64.deb Size: 7131610 MD5sum: 01e900d72545749e0d31597abba2d756 SHA1: 930b7d7ee69c1e91ee1e2bff9ae17f4c2d659350 SHA256: 4eea706dbd79d86526b273d11960216aac5f1f22770fedc7d7efa0e37f0fec16 Description: Qt sensors library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 860aa8e8d1dd95f0bf3eef6b9657420f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsensors5-dev Priority: optional Section: libdevel Installed-Size: 35 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Depends: libqt5sensors5-dev (= 5.2.1+dfsg-2ubuntu2) Filename: pool/main/q/qtsensors-opensource-src/qtsensors5-dev_5.2.1+dfsg-2ubuntu2_amd64.deb Size: 3926 MD5sum: beb5d3797cb609936735641337735a42 SHA1: c153f0dd99e77e1d17bddd259f5e2b5d12017399 SHA256: 36d788f6b5ab8f818c9d1361629cc2ab7363604abcb103b7a078a189b92ec735 Description: transitional dummy package Homepage: http://qt-project.org/ Description-md5: ff55785a0db99b4722d6e8a6b3a0d8bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsensors5-doc Priority: extra Section: doc Installed-Size: 2273 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Filename: pool/main/q/qtsensors-opensource-src/qtsensors5-doc_5.2.1+dfsg-2ubuntu2_all.deb Size: 2103030 MD5sum: e7e7889bf977d1ea9441219e4b0da44f SHA1: 2db2a0a1a3d39b29eb4fd06c6ae9811bd2aa2bfa SHA256: 7279ebaf3a94f9323b0c7d768909f9906b76f222295d71ed4ee568abcce18022 Description: Qt 5 Sensors documentation Homepage: http://qt-project.org/ Description-md5: e4cc03e5d28e974e34ec86b9c8e3d973 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsensors5-examples Priority: optional Section: x11 Installed-Size: 740 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5sensors5 (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtsensors-opensource-src/qtsensors5-examples_5.2.1+dfsg-2ubuntu2_amd64.deb Size: 217060 MD5sum: 08d49507a2c091fc076c528b023c9ac4 SHA1: b35504e9f0d89d8153c656014e47794be3410d41 SHA256: 38f3ad5193527f7c10b5b18250b8eec4e67b43c9f4fbf3e89beaa57743c9f08f Description: Qt 5 sensors examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: bfd5d874c1703d4e4276facf6340aed7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtserialport5-dbg Priority: extra Section: debug Installed-Size: 426 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtserialport-opensource-src Version: 5.2.1-1 Depends: libqt5serialport5 (= 5.2.1-1) Filename: pool/main/q/qtserialport-opensource-src/qtserialport5-dbg_5.2.1-1_amd64.deb Size: 365290 MD5sum: 313f7156bda8e123dc301177f3caf83b SHA1: 55f462ee67ae597cc905c74935f4c475a7990770 SHA256: 6e5eb04d5effb1234c8926ab62c92393cc084c5792f3c3a6d691dda72c03f643 Description: Qt 5 serial port library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: ecbde646623bc79066843dc53372a651 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtserialport5-doc Priority: extra Section: doc Installed-Size: 315 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtserialport-opensource-src Version: 5.2.1-1 Filename: pool/main/q/qtserialport-opensource-src/qtserialport5-doc_5.2.1-1_all.deb Size: 234426 MD5sum: 0010dcbdae28f3c6641b364e8c138f8c SHA1: f590b5a9a5ba05d0fd9d9351fe1ac29d7e35f344 SHA256: a95bd0856f076f5b738030fb8a93a18d9b442289754bea726b5f4b1cf8a07812 Description: Qt 5 serial port documentation Homepage: http://qt-project.org/ Description-md5: 18fad513dced03cb54fd9ea10e922605 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsvg5-dbg Priority: extra Section: debug Installed-Size: 7628 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtsvg-opensource-src Version: 5.2.1-1 Depends: libqt5svg5 (= 5.2.1-1) Suggests: qtsvg5-examples (= 5.2.1-1) Filename: pool/main/q/qtsvg-opensource-src/qtsvg5-dbg_5.2.1-1_amd64.deb Size: 7434190 MD5sum: 0ae9c0cdb229e01ee7a306f7396ef57d SHA1: 7dfbb20bfa6d4329db10b8769dd4401fe3062958 SHA256: 5613e836677fed88eb5859e549d4c6d158c5d04bed9ffee23e509d4a73c1156a Description: Qt 5 SVG library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 1de336622a5f80fffcc53744aa6f81d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsvg5-doc Priority: extra Section: doc Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtsvg-opensource-src Version: 5.2.1-1 Filename: pool/main/q/qtsvg-opensource-src/qtsvg5-doc_5.2.1-1_all.deb Size: 145840 MD5sum: 04b305934adf97dced1ba8f1d47ab3eb SHA1: c57d94e8189c88300801f904eaf8f85d982f9d1d SHA256: 97bb59923b2360e77ab3d39aeea538661c9a19fd9c25c06e63864eecd57bc053 Description: Qt 5 SVG documentation Homepage: http://qt-project.org/ Description-md5: 13c2621857e60a1440611ff4c69c1c23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsvg5-doc-html Priority: extra Section: doc Installed-Size: 774 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtsvg-opensource-src Version: 5.2.1-1 Filename: pool/main/q/qtsvg-opensource-src/qtsvg5-doc-html_5.2.1-1_all.deb Size: 111938 MD5sum: 1bd33721fce8ad03f2ccd8bddc11a14a SHA1: 8760fddd1800a442565f08554e5df63feb586227 SHA256: 78d603fdd54d140f0ef5903557c650b6cf6cb6b00d78e324a2f1b3cfb4b46152 Description: Qt 5 SVG HTML documentation Homepage: http://qt-project.org/ Description-md5: 8f027e5df3b023d0a76f2c2f4714ef08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsvg5-examples Priority: optional Section: x11 Installed-Size: 2451 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtsvg-opensource-src Version: 5.2.1-1 Depends: libc6 (>= 2.14), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2), libqt5svg5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtsvg-opensource-src/qtsvg5-examples_5.2.1-1_amd64.deb Size: 1216894 MD5sum: 74e66a5945f7df81ae68898983154328 SHA1: e40e44a4977e2a015db51daf5c04eefc875c87a6 SHA256: a16736d9206228c2825576130d8c0bd8a92eae2f00a6d1124fb3fce336352bd4 Description: Qt 5 SVG examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4e15e00778893792347b511f92e58128 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-dbg Priority: extra Section: debug Installed-Size: 94991 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libqt5clucene5 (= 5.2.1-8build1), libqt5designer5 (= 5.2.1-8build1), libqt5designercomponents5 (= 5.2.1-8build1), libqt5help5 (= 5.2.1-8build1) Filename: pool/main/q/qttools-opensource-src/qttools5-dbg_5.2.1-8build1_amd64.deb Size: 91798638 MD5sum: 48511a3b85ceca769471de1c630289c2 SHA1: ab9d9ae990c8f9ab630b3bfc54438be49e1c8298 SHA256: ce842cf585c4c01c0d95b1f939c2726cb82ed4c927b7f5169abb100db9c7ba06 Description: Qt 5 tools debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 196357e4b4b1e1b5dc2f43e260c597b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-dev Priority: optional Section: libdevel Installed-Size: 1585 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libqt5clucene5 (= 5.2.1-8build1), libqt5designer5 (= 5.2.1-8build1), libqt5designercomponents5 (= 5.2.1-8build1), libqt5help5 (= 5.2.1-8build1), qtbase5-dev Filename: pool/main/q/qttools-opensource-src/qttools5-dev_5.2.1-8build1_amd64.deb Size: 187892 MD5sum: cd4afa7bc7ddd2fd7a62b37fdbf13793 SHA1: c735ec9ce2d6cecfa34f90f381d8a13d814eeb02 SHA256: 7c367b63ae9f77b3332f25a508dea1dbb31912336b16616b88066b28fb8e4d58 Description: Qt 5 tools development files Homepage: http://qt-project.org/ Description-md5: 2c7b573d705950feb78131e46ada5b45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-dev-tools Priority: optional Section: devel Installed-Size: 5260 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: qtchooser, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5designer5 (>= 5.0.2), libqt5designercomponents5 (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5help5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5printsupport5 (>= 5.0.2), libqt5sql5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libqt5xml5 (>= 5.2.0), libstdc++6 (>= 4.4.0), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Recommends: libqt5sql5-sqlite Filename: pool/main/q/qttools-opensource-src/qttools5-dev-tools_5.2.1-8build1_amd64.deb Size: 1628540 MD5sum: f4e091bbfff29e260c62c7c40293e640 SHA1: ac19f7f127ef9d43308c3ff282eef0f476996a37 SHA256: 630831bcbbe01778b65b946c80b56eb34e386d10205f3fc35933288460d2fe6e Description: Qt 5 development tools Homepage: http://qt-project.org/ Description-md5: 59d8854dd4e4c01e83a5450a16dda8cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-doc Priority: extra Section: doc Installed-Size: 3896 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qttools-opensource-src Version: 5.2.1-8build1 Filename: pool/main/q/qttools-opensource-src/qttools5-doc_5.2.1-8build1_all.deb Size: 3660730 MD5sum: b38a171aa8a03c4a461c64a0d7099325 SHA1: 9722548d7877ed4c197660db552d716647bbcab7 SHA256: 1b56ca1e358bd434af4968d43e617193bfed4216f8f39223bb6ffa40241718e6 Description: Qt 5 tools documentation Homepage: http://qt-project.org/ Description-md5: cadd8f42b0252861fb7f42f03b26d605 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-examples Priority: optional Section: x11 Installed-Size: 2668 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.2.0), libqt5designer5 (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5help5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qttools-opensource-src/qttools5-examples_5.2.1-8build1_amd64.deb Size: 465012 MD5sum: 780111402c9dd683157cb5c1a72b7663 SHA1: 89bc87b0a03949594c9fa7a5827934c8d2a0848b SHA256: 93edbb34b76c9478736eec94c5177e3f3c99c9aa3a66f4fdd8d931e99ce7a476 Description: Qt 5 tools examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2e5c31e03a2be53eb1d8b348eb9afe48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-examples-dbg Priority: extra Section: debug Installed-Size: 13075 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: qttools5-dbg (= 5.2.1-8build1), qttools5-examples (= 5.2.1-8build1) Filename: pool/main/q/qttools-opensource-src/qttools5-examples-dbg_5.2.1-8build1_amd64.deb Size: 12318762 MD5sum: 96f563674ebb26710876cf9fc6dcd66d SHA1: 535b74d5fdd0ac570a98a157652423b55c058684 SHA256: e8568df21004b2501aecb255cdf9569f63b2617ea127d4372652f5d688cbab6a Description: Qt 5 tools examples debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f0cfd6bef446f99f7c1af7be5cd13f60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-private-dev Priority: optional Section: libdevel Installed-Size: 834 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qttools-opensource-src Version: 5.2.1-8build1 Replaces: qttools5-dev (<< 5.2.0-3~) Depends: qttools5-dev (= 5.2.1-8build1) Breaks: qttools5-dev (<< 5.2.0-3~) Filename: pool/main/q/qttools-opensource-src/qttools5-private-dev_5.2.1-8build1_amd64.deb Size: 79898 MD5sum: 2cd64125c8d5435a509625c90de52161 SHA1: 08d0e45156fbe180e7cde2b6816d8f5e8a89b7d9 SHA256: aa1ec29c96873442126cf958c90551ecf77b55e4ddf6e79884d34fc817072ca5 Description: Qt 5 tools private development files Homepage: http://qt-project.org/ Description-md5: 73752fe859df40a7d51d49f7871d7f09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtwebkit5-doc Priority: extra Section: doc Installed-Size: 820 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Filename: pool/main/q/qtwebkit-opensource-src/qtwebkit5-doc_5.1.1-1ubuntu8_all.deb Size: 269302 MD5sum: 47135b07ff96fcf134f07c5b6378d211 SHA1: b56b5be4cd83c8574944e64e08677aa38f09ade2 SHA256: 748b7988596672b669e231a63fb9618a397adc27a71766a824a95f3c701905cf Description: Qt 5 webkit documentation Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: c2f78f5f71fe019ba59cea759c8241bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtwebkit5-doc-html Priority: extra Section: doc Installed-Size: 2387 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Filename: pool/main/q/qtwebkit-opensource-src/qtwebkit5-doc-html_5.1.1-1ubuntu8_all.deb Size: 215706 MD5sum: 44a82c7bd8bcbff5ab3b27a28af3a0b5 SHA1: a8e1e8cb4a733e5296e24f15407448cdf3be38ca SHA256: d6110e9261c68979603955c630a0b93712552ddaa72f4bff2541d15500a0b28f Description: Qt 5 webkit HTML documentation Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: b259b5338f8f7ba5320840a81055174e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtx11extras5-dbg Priority: extra Section: debug Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtx11extras-opensource-src Version: 5.2.1-1 Depends: libqt5x11extras5 (= 5.2.1-1) Filename: pool/main/q/qtx11extras-opensource-src/qtx11extras5-dbg_5.2.1-1_amd64.deb Size: 133310 MD5sum: 34446120733db128839ec20345a76006 SHA1: 97bc0d7016fff124ca8aeec280d20be860d83c77 SHA256: 288478b17a5158ea63843c42edeb8e39c174d8ee0315598ce3fec93c3212b17a Description: Qt 5 X11 extras libraries debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e8f9d58035e232712b48e8749c01ec51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtx11extras5-doc Priority: extra Section: doc Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtx11extras-opensource-src Version: 5.2.1-1 Filename: pool/main/q/qtx11extras-opensource-src/qtx11extras5-doc_5.2.1-1_all.deb Size: 19610 MD5sum: f440c8a321097e51428e25d2a74c26e3 SHA1: 3c562850b8946f81d262fab835f25bd1d2b475df SHA256: 4d3f833c986e3026b44f6f7a6615dc1515e9296cf3bcb0dfa26cd15335c52184 Description: Qt 5 X11 extras documentation Homepage: http://qt-project.org/ Description-md5: 658a17892b1d328f31fb4da891d36de5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtxmlpatterns5-dbg Priority: extra Section: debug Installed-Size: 36966 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Depends: libqt5xmlpatterns5 (= 5.2.1-3) Suggests: qtxmlpatterns5-dev-tools (= 5.2.1-3), qtxmlpatterns5-examples (= 5.2.1-3) Filename: pool/main/q/qtxmlpatterns-opensource-src/qtxmlpatterns5-dbg_5.2.1-3_amd64.deb Size: 35992762 MD5sum: 0db9081f8cd753fd300875c783cf762b SHA1: 1d577639cfea23c7752493104b2776abafe9aa96 SHA256: ba06217041920203a99326321a9474ce061667f8913e1d9136cbcc5fa610e835 Description: Qt 5 XML patterns library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d32579dbf06883a46547da100d965cf3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtxmlpatterns5-doc Priority: extra Section: doc Installed-Size: 496 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qttools-opensource-src Version: 5.2.1-8build1 Filename: pool/main/q/qttools-opensource-src/qtxmlpatterns5-doc_5.2.1-8build1_all.deb Size: 417822 MD5sum: a8c1947754ba8b254e2ddc0aee762fdd SHA1: c661b900047a65bd953fb84d2d06354e0b45e59d SHA256: 5c3fe04a4d30637d7e46913b2e20dc36334b9094fd53b3832c24d83f58c1961a Description: Qt 5 XML patterns documentation Homepage: http://qt-project.org/ Description-md5: dffb05c2430e5b9b0e84f4ae3bdd4e63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtxmlpatterns5-doc-html Priority: extra Section: doc Installed-Size: 4922 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Filename: pool/main/q/qtxmlpatterns-opensource-src/qtxmlpatterns5-doc-html_5.2.1-3_all.deb Size: 461960 MD5sum: 0a7ae2c6899445eccbe076ab856ff504 SHA1: 209e54340529e4bc81e32bc33eb748b87ab60922 SHA256: b0e6d18c3a2c35ad269d75ebc5ff0b1ce6d16e090a33e42ec5417e4c090cbff4 Description: Qt 5 XML patterns HTML documentation Homepage: http://qt-project.org/ Description-md5: d0e96581f1d7d7d4eb2ec82108fd5d5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtxmlpatterns5-examples Priority: optional Section: x11 Installed-Size: 347 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Depends: libc6 (>= 2.14), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libqt5xmlpatterns5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/q/qtxmlpatterns-opensource-src/qtxmlpatterns5-examples_5.2.1-3_amd64.deb Size: 53146 MD5sum: 262d3526de51d4eb28b4e71ee9a50ebf SHA1: 3c6bc02f4f509fe654db21041e576adbac2cc713 SHA256: 3e64a1b0fa758cb619cb72970bfebe53f3624c2c79b118d79cafbfa871c12f5d Description: Qt 5 XML patterns examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 6a50b08931740af2a542a4e2833edb99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: quagga Priority: optional Section: net Installed-Size: 6263 Maintainer: Ubuntu Developers Original-Maintainer: Christian Hammers Architecture: amd64 Version: 0.99.22.4-3ubuntu1 Replaces: zebra, zebra-pj Depends: libc6 (>= 2.15), libcap2 (>= 2.10), libpam0g (>= 0.99.7.1), libreadline6 (>= 6.0), logrotate (>= 3.2-11), iproute, debconf (>= 0.5) | debconf-2.0 Pre-Depends: adduser Suggests: snmpd Conflicts: zebra, zebra-pj Filename: pool/main/q/quagga/quagga_0.99.22.4-3ubuntu1_amd64.deb Size: 1180210 MD5sum: 2b98938694d562ea39423f0d71ec9cef SHA1: 9a12a244df54ba20b5b8dfcebb1198d70b75c64f SHA256: a0bb6d01393cc1acc0780d09b0b5de9ae3ee63deed4cb45244987ddd3d4f460e Description: BGP/OSPF/RIP routing daemon Homepage: http://www.quagga.net/ Description-md5: 156e956921717778c003a1086883af2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: quagga-dbg Priority: extra Section: debug Installed-Size: 7562 Maintainer: Ubuntu Developers Original-Maintainer: Christian Hammers Architecture: amd64 Source: quagga Version: 0.99.22.4-3ubuntu1 Depends: quagga (= 0.99.22.4-3ubuntu1) Filename: pool/main/q/quagga/quagga-dbg_0.99.22.4-3ubuntu1_amd64.deb Size: 1788030 MD5sum: 6582ceafcb1307262bce4fa42f78ed24 SHA1: 6c423aa57290fbd82be1f4ca2500515f1223725b SHA256: 99235dff5ba2a50f4a3f9a867f367de4ba58b9ee35b45a2cb5fb398ce870fef5 Description: BGP/OSPF/RIP routing daemon (debug symbols) Homepage: http://www.quagga.net/ Description-md5: cafdec949e91609087760bca15eaf436 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: quagga-doc Priority: optional Section: net Installed-Size: 684 Maintainer: Ubuntu Developers Original-Maintainer: Christian Hammers Architecture: all Source: quagga Version: 0.99.22.4-3ubuntu1 Suggests: quagga Filename: pool/main/q/quagga/quagga-doc_0.99.22.4-3ubuntu1_all.deb Size: 641444 MD5sum: 905298a76a51643c466db4d8ab78feb9 SHA1: 1d54062c6b3a3a10df59110cd831a2559cc9f2d9 SHA256: fbe42b9dbd227ef0595394efc0f866a0adf7305888ad7dadb7b1f71ed16c6acf Description: documentation files for quagga Homepage: http://www.quagga.net/ Description-md5: b1185a50e91cae6a779c018de20ba88c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: quilt Priority: optional Section: devel Installed-Size: 816 Maintainer: Ubuntu Developers Original-Maintainer: Martin Quinson Architecture: all Version: 0.61-1 Depends: patch (>= 2.6), diffstat, bzip2, gettext, bsdmainutils, perl Recommends: less Suggests: procmail, graphviz, default-mta | mail-transport-agent Filename: pool/main/q/quilt/quilt_0.61-1_all.deb Size: 270782 MD5sum: b4a52e1f15d444491dde9f4049f195d1 SHA1: 3af9c99aa3e2d3e79769779127531302d2574d0a SHA256: bd9e120c036ae555b390bf75e8e7789b7507a68698b2d0ee0697eebbc00169dc Description: Tool to work with series of patches Enhances: cdbs, debhelper Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/quilt Description-md5: 8eeb0522bc56c3acd93b9e763f3dcd28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: quota Priority: optional Section: admin Installed-Size: 1404 Maintainer: Ubuntu Developers Original-Maintainer: Michael Meskes Architecture: amd64 Version: 4.01-3 Depends: e2fslibs (>= 1.37), libc6 (>= 2.7), libdbus-1-3 (>= 1.0.2), libldap-2.4-2 (>= 2.4.7), libnl-3-200 (>= 3.2.16), libnl-genl-3-200 (>= 3.2.16), libwrap0 (>= 7.6-4~), debconf (>= 1.2.9) | debconf-2.0, lsb-base (>= 3.2-13) Suggests: libnet-ldap-perl, rpcbind | portmap, default-mta | mail-transport-agent Filename: pool/main/q/quota/quota_4.01-3_amd64.deb Size: 542358 MD5sum: 2ceb5b5841ab83841c57164eb9c55856 SHA1: 57c07ae5bcb49cf45a784c34f1d31d03339d6f3f SHA256: fdc9a073128ddcbb358d9ceb4f566f78ed461875585daf320236de6cf4b6564e Description: disk quota management tools Homepage: http://sourceforge.net/projects/linuxquota Description-md5: fd7c977b2fe98c77b859c245a0798bec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rabbitmq-server Priority: extra Section: net Installed-Size: 4753 Maintainer: Ubuntu Developers Original-Maintainer: RabbitMQ Team Architecture: all Version: 3.2.4-1 Depends: erlang-nox (>= 1:13.b.3) | esl-erlang, adduser, logrotate Filename: pool/main/r/rabbitmq-server/rabbitmq-server_3.2.4-1_all.deb Size: 3909054 MD5sum: ac0bcd91061ed9c00435d6ffcc179a3e SHA1: 051309e3e8a53807d026c94f94859086cd529407 SHA256: 6c472527fb1dabf703d5705e0e0d571c4dfe59cf7230831ff48988a3fd0c5c81 Description: AMQP server written in Erlang Homepage: http://www.rabbitmq.com/ Description-md5: 78e91bfb996ee4ae5d16c93298f5f6e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: radosgw Priority: optional Section: admin Installed-Size: 3932 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Depends: ceph-common (= 0.79-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.16), libcurl3-gnutls (>= 7.28.0), libexpat1 (>= 2.0.1), libfcgi0ldbl, libgcc1 (>= 1:4.1.1), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), librados2, libstdc++6 (>= 4.6) Filename: pool/main/c/ceph/radosgw_0.79-0ubuntu1_amd64.deb Size: 926722 MD5sum: 0cc213ded3f55f20a510fafcc5a7203d SHA1: f905d60fc3f247998fc4eba1b72079ebdf418e99 SHA256: 63e76da369562c573df0dab4449fcddafa732c80326878a76ef4843b4b2d27d9 Description: REST gateway for RADOS distributed object store Homepage: http://ceph.com/ Description-md5: fa947d9328112c7b2e6719d10f788061 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: radosgw-dbg Priority: extra Section: debug Installed-Size: 19619 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Depends: radosgw (= 0.79-0ubuntu1) Filename: pool/main/c/ceph/radosgw-dbg_0.79-0ubuntu1_amd64.deb Size: 19327226 MD5sum: 5b6c77d4186cb3a28098beb4fc4a693e SHA1: 1ebda45728a547d1f4c902696a99e7972a6161aa SHA256: 9aa04d205b5fb6581a95159cff23893c1c82a2020d4f82772504ed3451f555ee Description: debugging symbols for radosgw Homepage: http://ceph.com/ Description-md5: b21018ad5ddfda350f7a8d6ec0e73923 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: radvd Priority: optional Section: net Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Ghe Rivero Architecture: amd64 Version: 1:1.9.1-1.1ubuntu2 Depends: libc6 (>= 2.15), libdaemon0 (>= 0.10), adduser Filename: pool/main/r/radvd/radvd_1.9.1-1.1ubuntu2_amd64.deb Size: 63198 MD5sum: 1e0ed76adef7b9451bb2a68e14e0afdc SHA1: a8a77a82b2936b37079e9283889c1fbbc8895f80 SHA256: cbbdaf5c8d179a5315099a33653c2b64dddf250eeb8859e46f1ecbf49eeb4c86 Description: Router Advertisement Daemon Description-md5: fdb4578fd1d88489eda410ee8b1f7b20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rake Priority: optional Section: devel Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 10.0.4-1 Depends: ruby | ruby-interpreter Recommends: zip Filename: pool/main/r/rake/rake_10.0.4-1_all.deb Size: 48964 MD5sum: 3d21318bcc5d829e6802542452a92f47 SHA1: dc9ece836cdfcd57cd88d64496cb9e765ca0c824 SHA256: 59c0a896e2cde9e3ac302fbbff13ff9d1aae2fa3898d4ab4defc7de450fa1523 Description: ruby make-like utility Homepage: http://rake.rubyforge.org Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 13b953bd84607c7631a72c5bf042fc1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: raptor-utils Priority: optional Section: text Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: raptor Version: 1.4.21-10 Depends: libc6 (>= 2.3.4), libraptor1 (>= 1.4.21-3) Conflicts: libraptor0 (<= 0.9.12-1), raptor2-utils Filename: pool/main/r/raptor/raptor-utils_1.4.21-10_amd64.deb Size: 13182 MD5sum: 1f76668d60d92ab62a45c42e4448fb8e SHA1: 68b92a111458c8d2af8d125a03fbf9c3ea351412 SHA256: d84f8e45da17313df64e5f3900b9ac1fa48837425e76681bac9fca0864551dbf Description: Raptor RDF parser and serializer utilities Homepage: http://librdf.org/raptor/ Description-md5: 35e83f3169d88da32ffce0c8b948e6fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: raptor2-utils Priority: optional Section: text Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: raptor2 Version: 2.0.13-1 Replaces: raptor-utils Depends: libc6 (>= 2.3.4), libraptor2-0 (>= 2.0.12) Conflicts: raptor-utils Filename: pool/main/r/raptor2/raptor2-utils_2.0.13-1_amd64.deb Size: 13346 MD5sum: 9e84a60624b86ab452bf088f6940de39 SHA1: 3c0f2e75f237c786f85e3d0d7192c23cba139912 SHA256: 76c48d2dd15e9670c8e67be338f4cd3db5ebb0c02cf23ddd5abae4c5fbe9e3f8 Description: Raptor 2 RDF parser and serializer utilities Homepage: http://librdf.org/raptor/ Description-md5: a69c81c5501c71f9c2dbbdd8de1fb863 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rarian-compat Priority: optional Section: doc Installed-Size: 387 Maintainer: Ubuntu Developers Original-Maintainer: Frederic Peters Architecture: amd64 Source: rarian Version: 0.8.1-5ubuntu1 Replaces: scrollkeeper (<< 0.4) Provides: scrollkeeper Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), librarian0 (>= 0.8.0), libstdc++6 (>= 4.1.1), xml-core (>= 0.12), docbook-xml Conflicts: scrollkeeper (<< 0.4) Filename: pool/main/r/rarian/rarian-compat_0.8.1-5ubuntu1_amd64.deb Size: 55266 MD5sum: a5a4c7c75a2c83a744323a9a2afc6bae SHA1: 0f85b62f1ad5f775cb9ef4df71c760f364ad373b SHA256: fe1d882aaf10e782d6c914480f750c68ea29676278efdfd3554efa7af1616617 Description: Documentation meta-data library (compatibility tools) Homepage: http://rarian.freedesktop.org/ Description-md5: a35f0aaae174f03fec8f3d0cea8b4e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-desktop Package: rasqal-utils Priority: optional Section: text Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: rasqal Version: 0.9.32-1 Depends: libc6 (>= 2.3.4), libraptor2-0 (>= 2.0.12), librasqal3 (>= 0.9.31) Suggests: raptor2-utils, redland-utils Filename: pool/main/r/rasqal/rasqal-utils_0.9.32-1_amd64.deb Size: 17892 MD5sum: ad85f7d14a7d1e3cfd1ce1d17841f1d9 SHA1: 1786584cd236104010412b42cd400819f20f0faf SHA256: 990c955a77666ddd8f7fe7bce6108f89ff255ca1f7e837e0728be9fe03c52d45 Description: Rasqal RDF Query utilities Homepage: http://librdf.org/rasqal/ Description-md5: d9e47d46a0ae7f54974dfce008320fcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rbd-fuse Priority: optional Section: admin Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Depends: libc6 (>= 2.14), libfuse2 (>= 2.8.1), librados2, librbd1 Recommends: fuse Filename: pool/main/c/ceph/rbd-fuse_0.79-0ubuntu1_amd64.deb Size: 12288 MD5sum: 1b485c0b1d5ebd426f0d6a34b5eceef7 SHA1: b2e8d0b4d9fa8e953204192b46f62fa5ff612af7 SHA256: 808a2c0c68f1b16397790bfa624ae41abdea0852a4def22fc0b3c0acfd748c89 Description: FUSE-based rbd client for the Ceph distributed file system Homepage: http://ceph.com/ Description-md5: fca395d7d420f9ee7c9d4be9e208b26a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rbd-fuse-dbg Priority: extra Section: debug Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: amd64 Source: ceph Version: 0.79-0ubuntu1 Depends: rbd-fuse (= 0.79-0ubuntu1) Filename: pool/main/c/ceph/rbd-fuse-dbg_0.79-0ubuntu1_amd64.deb Size: 19078 MD5sum: b770f00f5c84f70e9281a4c888fd04a9 SHA1: 20b28560da0ca253edd28f9053cf8703991910b1 SHA256: 6fd29320f444660c7097c2ce4bd6a6ba5e8c16cc6512bf68c17987da8133e23f Description: debugging symbols for rbd-fuse Homepage: http://ceph.com/ Description-md5: 987d7c5ba369f3c877ccf7f5d48fb86f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rdate Priority: optional Section: net Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 1:1.2-5 Replaces: netstd Depends: libbsd0 (>= 0.0), libc6 (>= 2.15) Filename: pool/main/r/rdate/rdate_1.2-5_amd64.deb Size: 16384 MD5sum: d26adf7e0ac7e92f8367280e9a53afc8 SHA1: 8cc80a69b2a68340fd7a34c724f12883fc7e3a78 SHA256: 875f907f7e11441eecac3f4c21d4fd12dee92f9de42bc44b4ef3be2ecc5d14aa Description: sets the system's date from a remote host Homepage: http://sourceforge.net/projects/openrdate/ Description-md5: 49b1aaad184ecba2aad3b1f84ba645a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: rdfind Priority: extra Section: utils Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: TANIGUCHI Takaki Architecture: amd64 Version: 1.3.4-1ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libnettle4, libstdc++6 (>= 4.4.0) Filename: pool/main/r/rdfind/rdfind_1.3.4-1ubuntu1_amd64.deb Size: 39892 MD5sum: 0de0ab26fcea2300b50d419a86dfaf9f SHA1: a7847284ab15ddb69438c93e054570e5faf2f20b SHA256: 8541e326638e6a04471fc1cd957fd5d7d5ff19281b7914cb984dc27f692bc625 Description: find duplicate files utility Multi-Arch: foreign Homepage: http://rdfind.pauldreik.se/ Description-md5: c6c9ecb679ba4f0ba5d52f6f541c9eae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rdiff Priority: optional Section: utils Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Andrey Rahmatullin Architecture: amd64 Source: librsync Version: 0.9.7-10 Depends: libc6 (>= 2.3.4), libpopt0 (>= 1.14), librsync1 Filename: pool/main/libr/librsync/rdiff_0.9.7-10_amd64.deb Size: 8076 MD5sum: 3e3cd1346992e7fa4920d48c626010be SHA1: cc6e586a0c0a663b85b55486f07cfe6af8819cd2 SHA256: 749bbf976610fe69e41c539553377ff78ae65101fd098db231e86132fa60d14d Description: Binary diff tool for signature-based differences Homepage: http://librsync.sourceforge.net/ Description-md5: 5284c275efe652989ea1372eb7c32b01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: re2c Priority: optional Section: devel Installed-Size: 408 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: amd64 Version: 0.13.5-1build2 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Filename: pool/main/r/re2c/re2c_0.13.5-1build2_amd64.deb Size: 207514 MD5sum: edc6d586eba32066e03f39c36f7ad235 SHA1: 2922288a240f882faf89ece436b594e10b40cc84 SHA256: aa1204842249f250cba5e3dcf844c05fa98cce85a2af324c0e16bc554c9dcd05 Description: tool for generating fast C-based recognizers Homepage: http://re2c.sourceforge.net/ Description-md5: 2aa9a932df11f6488500cae4e7decaf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: readline-common Priority: important Section: utils Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: readline6 Version: 6.3-4ubuntu2 Replaces: libreadline-common, libreadline4 (<< 4.3-16), libreadline5 (<< 5.0-11) Depends: dpkg (>= 1.15.4) | install-info Conflicts: libreadline-common, libreadline5 (<< 5.0-11) Filename: pool/main/r/readline6/readline-common_6.3-4ubuntu2_all.deb Size: 51236 MD5sum: d658036aeedbb56055420a216a45f613 SHA1: a73c125d62777676be7b7da6826bf27652a56f18 SHA256: af5a20614ca5f5465d213f8da561739facbc375b724ff25cbded840373c9ee32 Description: GNU readline and history libraries, common files Multi-Arch: foreign Description-md5: c8e28b105311ffa41fe6e8f86c041f82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: realpath Priority: optional Section: utils Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: amd64 Version: 1.19 Replaces: dwww (<= 1.6.10) Depends: libc6 (>= 2.4) Filename: pool/main/r/realpath/realpath_1.19_amd64.deb Size: 14504 MD5sum: fd8955f8c2b111ee262fea46ee1be8c9 SHA1: 2234ab49eac91fe50971e536e6aac9f774e34748 SHA256: 03aafd7da1e07ff777132d3c24b37efaa494d2ab17479481161fb0fd6738d1c2 Description: Return the canonicalized absolute pathname Multi-Arch: foreign Description-md5: 466b12e0c4a1a461e802002eb6a75a84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: recode Priority: optional Section: text Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 3.6-21 Depends: libc6 (>= 2.3.4), librecode0 (>= 3.6) Filename: pool/main/r/recode/recode_3.6-21_amd64.deb Size: 115926 MD5sum: 8c6a6180268e358ffc5afd7686e64002 SHA1: 93a147528a96ef13051a27d6ad9198604c6084f9 SHA256: 4b7e1c4811e2bdedfa84b58b3b89f7b9ab842789c3c4adb592af039698f90543 Description: Character set conversion utility Description-md5: c1971320f75c7a20b5b1d9b7d221ff3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: recode-doc Priority: optional Section: doc Installed-Size: 850 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: recode Version: 3.6-21 Filename: pool/main/r/recode/recode-doc_3.6-21_all.deb Size: 129404 MD5sum: 848bf2403d551a885a4619112fb9f144 SHA1: 1b94a36b4c71267e5b33302825edb7383f913c2a SHA256: 51cc3ee4d4416117192723fd2000533d64a32c683cd646607774a29ad11be940 Description: Documentation for Free recode Description-md5: 3d5a7fbc1b22a508ec9c30ec7e332afd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: redland-utils Priority: optional Section: text Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: amd64 Source: redland Version: 1.0.17-1 Depends: libc6 (>= 2.3.4), libraptor2-0 (>= 2.0.12), librdf0 (>= 1.0.17) Filename: pool/main/r/redland/redland-utils_1.0.17-1_amd64.deb Size: 58670 MD5sum: 139fd3d901455a94505e141ae5863561 SHA1: a11b3da206321132171d56fb0be17e8ae573d8f6 SHA256: 7c70a397251fe3ce54ba8ab2e9ebd3583587c2bcd16786c1790957dae4bb8169 Description: Redland Resource Description Framework (RDF) Utility programs Homepage: http://librdf.org/ Description-md5: 7233e7b684efc931e19d5d152827665e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: reiser4progs Priority: optional Section: admin Installed-Size: 1241 Maintainer: Ubuntu Developers Original-Maintainer: Felix Zielcke Architecture: amd64 Version: 1.0.7-6.3fakesync2 Depends: libc6 (>= 2.14), libreadline5 (>= 5.2), libuuid1 (>= 2.16) Filename: pool/main/r/reiser4progs/reiser4progs_1.0.7-6.3fakesync2_amd64.deb Size: 542490 MD5sum: c3fb6e9aaf394228cbcd8cbd9c1d0aa6 SHA1: d2283a4b46ac2bdcda57eb4f49127245bc359b18 SHA256: 106ef28d657a83cccb16d4deb39c9d1030834ecbc2fb5d41be22b18f6f56ff05 Description: administration utilities for the Reiser4 filesystem Description-md5: 6cd3dd444c74d161d74938c6f19e2462 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: reiserfsprogs Priority: optional Section: admin Installed-Size: 1086 Maintainer: Ubuntu Developers Original-Maintainer: Felix Zielcke Architecture: amd64 Version: 1:3.6.24-1 Depends: libc6 (>= 2.14), libuuid1 (>= 2.16) Filename: pool/main/r/reiserfsprogs/reiserfsprogs_3.6.24-1_amd64.deb Size: 224858 MD5sum: 21abce3d67814d547f0890a177581615 SHA1: 00931600328454ff8bcc7c75f0085e752cd4f6ae SHA256: 678b2312fc730c0705e880e17ad86a8c4cb9a200b413a0a2ebba55051f618c4a Description: User-level tools for ReiserFS filesystems Description-md5: 2e1145bff0ae4baf3abf769bcd287358 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: remmina Priority: optional Section: gnome Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: amd64 Version: 1.0.0-4ubuntu3 Replaces: remmina-common (<= 1.0.0-1ubuntu8), remmina-gnome, remmina-xfce Depends: libappindicator3-1 (>= 0.4.90), libc6 (>= 2.15), libgcrypt11 (>= 1.4.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libssh-4 (>= 0.3.91), libvte-2.90-9 (>= 1:0.27.2), libx11-6, remmina-common (= 1.0.0-4ubuntu3), dbus-x11 Recommends: remmina-plugin-rdp, remmina-plugin-vnc Breaks: remmina-common (<= 1.0.0-1ubuntu8), remmina-plugin-data (<= 0.9) Filename: pool/main/r/remmina/remmina_1.0.0-4ubuntu3_amd64.deb Size: 129274 MD5sum: 59097ffd489eaf0bcd17b45f8bc57c2a SHA1: 6604eb11f117d848d68101ea263f53c085b1827d SHA256: 7f8678f9babf9dc7a0484a1cca2f7838f3385853486b09a28c8b1810df838d05 Description: remote desktop client for GNOME desktop environment Homepage: http://remmina.sourceforge.net/ Description-md5: ede6e83246f1eea7dfe2191738034796 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: remmina-common Priority: optional Section: gnome Installed-Size: 316 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: all Source: remmina Version: 1.0.0-4ubuntu3 Replaces: remmina (<< 1.0.0), remmina-plugin-data Recommends: remmina Breaks: remmina (<< 1.0.0), remmina-plugin-data Filename: pool/main/r/remmina/remmina-common_1.0.0-4ubuntu3_all.deb Size: 46482 MD5sum: c55af36bfb807ff6a045ee0c7d5001a8 SHA1: b5b00aebc36240f31c57763dd249965a14f84ef5 SHA256: 9cd8b1d8b7a0980d1749e00beb8493111ec27885bdf300d00746b8551733c711 Description: common files for remmina remote desktop client Homepage: http://remmina.sourceforge.net/ Description-md5: 2c94cab657a41f75757ef1c7c2865c6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: remmina-plugin-rdp Priority: optional Section: gnome Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: amd64 Source: remmina Version: 1.0.0-4ubuntu3 Depends: libc6 (>= 2.15), libcairo2 (>= 1.2.4), libfreerdp1 (>= 1.0~beta5), libglib2.0-0 (>= 2.18.0), libgtk-3-0 (>= 3.0.0), remmina (= 1.0.0-4ubuntu3), libfreerdp-plugins-standard Filename: pool/main/r/remmina/remmina-plugin-rdp_1.0.0-4ubuntu3_amd64.deb Size: 31574 MD5sum: d826cf988e364f23d1e9b7f1a3247130 SHA1: bfd4cd8d843ecc95a7773d21ed78579de398cda9 SHA256: f20d4084cdb6814211af08d888c806750eef2785cb0b0fafbcb68c0b4bb87a6e Description: RDP plugin for remmina remote desktop client Homepage: http://remmina.sourceforge.net/ Description-md5: 3b7a9c0ed3895a2728dc9b7e44512ef3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: remmina-plugin-vnc Priority: optional Section: gnome Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: amd64 Source: remmina Version: 1.0.0-4ubuntu3 Depends: libc6 (>= 2.15), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.18.0), libgtk-3-0 (>= 3.0.0), libvncserver0, remmina (= 1.0.0-4ubuntu3) Filename: pool/main/r/remmina/remmina-plugin-vnc_1.0.0-4ubuntu3_amd64.deb Size: 20144 MD5sum: 26a7ca02212bf0614234d3f6c27e4e4b SHA1: f320c5d06017bec1cbe41e78fe02546500a57a30 SHA256: 9924c71ff477ee456672dccf5ffdcedf97715560ebc3eddfc1fcae0643833613 Description: VNC plugin for remmina remote desktop client Homepage: http://remmina.sourceforge.net/ Description-md5: 08f5c41bc452f5e2718936d67c8390de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: resolvconf Priority: important Section: net Installed-Size: 241 Maintainer: Ubuntu Developers Original-Maintainer: resolvconf maintainers Architecture: all Version: 1.69ubuntu1 Depends: lsb-base, debconf (>= 0.5) | debconf-2.0, upstart-job Pre-Depends: initscripts (>= 2.88dsf-13.10) Breaks: dhcp3-client (<< 4.1.1-P1-15+squeeze1), dnscache-run Filename: pool/main/r/resolvconf/resolvconf_1.69ubuntu1_all.deb Size: 54652 MD5sum: 6c35bb91e40a1157dfe059995d3ed1dd SHA1: a739a735c119e58be2d290b4db3d1706493519a1 SHA256: ada5d4f75e31c4f5c8b0bf6b75754d0b105427f440ce86317156f4c559cf777f Description: name server information handler Enhances: dhcpcd, dnsmasq, ifupdown, isc-dhcp-client, libc6, network-manager, nscd, pdnsd, ppp, pump, totd, udhcpc Homepage: http://alioth.debian.org/projects/resolvconf/ Description-md5: e009e7114cd0b15ac6dbe0d813ec9472 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: resource-agents Priority: optional Section: admin Installed-Size: 1863 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Version: 1:3.9.3+git20121009-3ubuntu2 Replaces: cluster-agents (<= 1:1.0.4-0ubuntu2), rgmanager (<= 3.0.12-2ubuntu4) Depends: libc6 (>= 2.4), libnet1 (>= 1.1.2.1), libplumb2 (>= 1.0.11+hg2754), cluster-glue, python Conflicts: cluster-agents (<= 1:1.0.4-0ubuntu2), rgmanager (<= 3.0.12-2ubuntu4) Filename: pool/main/r/resource-agents/resource-agents_3.9.3+git20121009-3ubuntu2_amd64.deb Size: 433222 MD5sum: ea877e3255078e1ef840723a0e4a8787 SHA1: 2dcc0f6fe75ec187a0bf09dcd06514d6991ff0b9 SHA256: 5f63a07fe8eb2db2e6b9ebcb9313558904a98a5bdc9e536f14cf5dd2a7e5fc4c Description: Cluster Resource Agents Homepage: https://github.com/ClusterLabs/resource-agents Description-md5: 044387721d4cb3666ace07a7d8595018 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: resource-agents-dev Priority: optional Section: admin Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: amd64 Source: resource-agents Version: 1:3.9.3+git20121009-3ubuntu2 Depends: resource-agents (= 1:3.9.3+git20121009-3ubuntu2) Filename: pool/main/r/resource-agents/resource-agents-dev_3.9.3+git20121009-3ubuntu2_amd64.deb Size: 2790 MD5sum: 87da94fd862fc36b1f218fe896e5d13b SHA1: f39cfb3c544177cd615815ebda2deb09c68a046a SHA256: 10174564491e0f84d976cab5499b0f67207a49b6f701c7da44b13c13e983be51 Description: Cluster Resource Agents Development files Homepage: https://github.com/ClusterLabs/resource-agents Description-md5: 0e8eeb46e3957b7761a30504784781e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rfkill Priority: optional Section: utils Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Darren Salt Architecture: amd64 Version: 0.5-1ubuntu1 Depends: libc6 (>= 2.4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Filename: pool/main/r/rfkill/rfkill_0.5-1ubuntu1_amd64.deb Size: 9314 MD5sum: 7a2148ba191cefb956a1c5eb91d63455 SHA1: 558371ee904e15a15f07034ede49eb38b28d1122 SHA256: 3b299a00a721597e8c838b47c7b272fb336098fec7621262fa4a9e0b4dd0adde Description: tool for enabling and disabling wireless devices Homepage: http://wireless.kernel.org/en/users/Documentation/rfkill Description-md5: 48e9b79e886753d4ba57709f7daac2b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: rhino Priority: optional Section: interpreters Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.7R4-2 Depends: default-jre-headless (>= 1.5) | java5-runtime-headless, libjline-java, librhino-java (= 1.7R4-2) Suggests: librhino-java-doc Filename: pool/main/r/rhino/rhino_1.7R4-2_all.deb Size: 14420 MD5sum: 20d2f7b81089f0abc0a811fba366e336 SHA1: 0f89001d5c78b4189535610c1975977e4834623c SHA256: f5f60d7c39cfd379e6a89d3321ac331a20475177234fa8029ddb5cfcd9c822c9 Description: JavaScript engine written in Java Homepage: http://www.mozilla.org/rhino/ Description-md5: c0634d81edf27589098e6ab9ae84198f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rhino-doc Priority: optional Section: interpreters Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: rhino Version: 1.7R4-2 Depends: librhino-java-doc Filename: pool/main/r/rhino/rhino-doc_1.7R4-2_all.deb Size: 7814 MD5sum: 1cb0ff2497f04cd3cb049bc9a3b56bdd SHA1: 39d3fd3a59bb1f0d58e72e33556998db4f515f81 SHA256: 66559832a4a504b3cc81829d7d2ed16e4b0ba2984190de4bbc978bf118f98ff0 Description: transitional dummy package for new librhino-java-doc Homepage: http://www.mozilla.org/rhino/ Description-md5: e950996fe61236856ddf3461028fab9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rhythmbox Priority: optional Section: gnome Installed-Size: 963 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.0.2-0ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.34.0), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.0.0), libpeas-1.0-0 (>= 1.0.0), librhythmbox-core8 (= 3.0.2-0ubuntu1), libtotem-plparser18 (>= 3.10.0), libx11-6, python3 (>= 3.4~), python3 (<< 3.5), python3.4, rhythmbox-data (= 3.0.2-0ubuntu1), dbus, gstreamer1.0-plugins-base (>= 1.0.6), gstreamer1.0-plugins-good (>= 1.0.6), gnome-icon-theme, gstreamer1.0-x, media-player-info, gir1.2-rb-3.0 (= 3.0.2-0ubuntu1), gir1.2-glib-2.0, gir1.2-gtk-3.0, python-gi Recommends: yelp, avahi-daemon, notification-daemon, gstreamer1.0-pulseaudio, gvfs-backends, rhythmbox-mozilla, rhythmbox-plugins, rhythmbox-plugin-cdrecorder, rhythmbox-plugin-zeitgeist Suggests: gstreamer1.0-plugins-bad, gstreamer1.0-plugins-ugly, gnome-codec-install, gnome-control-center Breaks: gvfs (<< 1.4.1-6) Filename: pool/main/r/rhythmbox/rhythmbox_3.0.2-0ubuntu1_amd64.deb Size: 119528 MD5sum: 0396f89b7960137e02a89bcef1f51453 SHA1: ca2e8ecd228c0185fa01a4257a96b5a6f88fbbe2 SHA256: b931262b7330ed1542755d32051f3c314a4fac3130b495959c9b714f184b536b Description: music player and organizer for GNOME Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 263e21c49721f582dd2ee234ff4fedb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-data Priority: optional Section: gnome Installed-Size: 2056 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox (<< 3.0.1), transmageddon (<< 0.20-1ubuntu2) Depends: dconf-gsettings-backend | gsettings-backend Recommends: rhythmbox Breaks: rhythmbox (<< 3.0.1), transmageddon (<< 0.20-1ubuntu2) Filename: pool/main/r/rhythmbox/rhythmbox-data_3.0.2-0ubuntu1_all.deb Size: 383374 MD5sum: 8c7b39dfb06220fc985ff0b9e39cb592 SHA1: 99af70289d0be78ad20c8d2fb8f49a2770534155 SHA256: 19e5d77d0631d800fc13e4f7e3b1063f038dc47ddddae6682455feee783f65b4 Description: data files for rhythmbox Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 42958a23b3c14ae41a3238d088043e3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-dbg Priority: extra Section: gnome Installed-Size: 3766 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: rhythmbox Version: 3.0.2-0ubuntu1 Depends: rhythmbox (= 3.0.2-0ubuntu1) Recommends: libgstreamer1.0-0-dbg, gstreamer1.0-plugins-base-dbg, gstreamer1.0-plugins-good-dbg Suggests: gstreamer1.0-plugins-ugly-dbg Filename: pool/main/r/rhythmbox/rhythmbox-dbg_3.0.2-0ubuntu1_amd64.deb Size: 2765302 MD5sum: 09dcf77977eaf8863845546090ce16fc SHA1: 2db2eeb6ecab5da9b6418a480c2e35659fee6bda SHA256: 8a04990ac830c27cf97c60243d009925f7108d8b5d374a4aae46742572364755 Description: debugging symbols for rhythmbox Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 87449e19f7d68646c43a7a4928c93ea8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rhythmbox-dev Priority: extra Section: devel Installed-Size: 1907 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: rhythmbox Version: 3.0.2-0ubuntu1 Depends: librhythmbox-core8 (= 3.0.2-0ubuntu1), gir1.2-rb-3.0 (= 3.0.2-0ubuntu1), libglib2.0-dev, libgtk-3-dev, libsoup-gnome2.4-dev, libtotem-plparser-dev, libgstreamer1.0-dev Suggests: rhythmbox-doc Filename: pool/main/r/rhythmbox/rhythmbox-dev_3.0.2-0ubuntu1_amd64.deb Size: 115834 MD5sum: 7ba4cf390c6717b09c80c0a3388fe920 SHA1: 4ead12a3669f165cc896b646aaf3d7ea9532a3d5 SHA256: 775a558b541e44fd656ef4c18edccb822bbaf9a471b6c166ff1048feb86e0cc3 Description: development files for the rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: c2b22526bec8776ff3c82b23bb9c5514 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rhythmbox-doc Priority: optional Section: doc Installed-Size: 2780 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: rhythmbox Version: 3.0.2-0ubuntu1 Suggests: devhelp Filename: pool/main/r/rhythmbox/rhythmbox-doc_3.0.2-0ubuntu1_all.deb Size: 207648 MD5sum: 8655c3baac4c109a752a2a50596da8d1 SHA1: d543315220fa2aa4294bd1788e1c7cf8e3825d5e SHA256: 615aed3fc9b9098720af8eecf24eaba4dfb358b1bfd94717c0b533016df19127 Description: documentation files for the rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: a97112a3c772c0bd4dfbf1c630192f3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rhythmbox-mozilla Priority: optional Section: web Installed-Size: 443 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox (<< 2.95.5) Depends: libc6 (>= 2.2.5), rhythmbox (= 3.0.2-0ubuntu1) Recommends: firefox | epiphany-browser | www-browser Breaks: rhythmbox (<< 2.95.5) Filename: pool/main/r/rhythmbox/rhythmbox-mozilla_3.0.2-0ubuntu1_amd64.deb Size: 5476 MD5sum: a90cb2392c4da904e612b8fef89fed41 SHA1: 546c6caba4d5a1188e530d4e89d08cb08851d698 SHA256: 5fd2dd4f93df435db9931e2ec0313504a6f30b4c62c43ed04be32918cf322a9f Description: Rhythmbox Mozilla plugin Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: b59fc305370687a3b59585aeaa21d11c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-plugin-cdrecorder Priority: optional Section: gnome Installed-Size: 473 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox (<< 0.12.6-4) Depends: libbrasero-media3-1 (>= 3.0.0), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.34.0), libgtk-3-0 (>= 3.6.0), librhythmbox-core8 (>= 3.0), rhythmbox (= 3.0.2-0ubuntu1) Breaks: rhythmbox (<< 0.12.6-4) Filename: pool/main/r/rhythmbox/rhythmbox-plugin-cdrecorder_3.0.2-0ubuntu1_amd64.deb Size: 13972 MD5sum: 33084ef17ee1da351e07d7d82b579365 SHA1: 7c8673372e2ab692a3df7d0a3d3cdd7dd6a7b32b SHA256: 4b5f537a1ed959a3b8aa6f6e5c5fb18975c82ba4f65e78e70bbca17ccd483a82 Description: burning plugin for rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 2cf45d2d5fa6dfedb6016b170eb884a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-plugin-magnatune Priority: optional Section: gnome Installed-Size: 540 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox-plugins (<< 2.95.5) Depends: rhythmbox (= 3.0.2-0ubuntu1), gir1.2-glib-2.0, gir1.2-gnomekeyring-1.0, gir1.2-gtk-3.0, gir1.2-peas-1.0, gir1.2-secret-1 Breaks: rhythmbox-plugins (<< 2.95.5) Filename: pool/main/r/rhythmbox/rhythmbox-plugin-magnatune_3.0.2-0ubuntu1_amd64.deb Size: 22242 MD5sum: 14532025639b563a594c9ca75315a44c SHA1: fcc9a3d9f8bb740078b1643af60580ea6b8ce9e2 SHA256: 115b0018ae20ed272d12bc12b82af49ab2cee9ff5b054b67731d1bc9e4e6703f Description: Magnatune plugin for rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 2ad125e6d8aa99c319445f880abc5307 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-plugin-zeitgeist Priority: optional Section: gnome Installed-Size: 460 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox (<< 2.95.5) Depends: rhythmbox (>= 3.0), rhythmbox (<< 3.1), gir1.2-glib-2.0, gir1.2-peas-1.0, zeitgeist-core Breaks: rhythmbox (<< 2.95.5) Filename: pool/main/r/rhythmbox/rhythmbox-plugin-zeitgeist_3.0.2-0ubuntu1_all.deb Size: 54062 MD5sum: 0798bfa1728dae4319f88a20b7163a03 SHA1: ad9d4485bdf875456d2bdb69823ef5d6898c5610 SHA256: a163f2ac5fbf47e217873e42c624d33fc9a05dd4f02d05862d973d393dbe5a10 Description: zeitgeist plugin for rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: f41e70b13663f39808bfb029033e0aaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-plugins Priority: optional Section: gnome Installed-Size: 1386 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox (<< 0.12.6-4) Depends: libc6 (>= 2.4), libdmapsharing-3.0-2 (>= 2.9.12), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgpod4 (>= 0.7.92), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.0.0), libgudev-1.0-0 (>= 146), libjson-glib-1.0-0 (>= 0.12.0), liblircclient0, libmtp9 (>= 1.1.0), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libpeas-1.0-0 (>= 1.0.0), librhythmbox-core8 (= 3.0.2-0ubuntu1), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.33.92), libtotem-plparser18 (>= 3.10.0), python3 (>= 3.4~), python3.4, python3 (<< 3.5), rhythmbox (= 3.0.2-0ubuntu1), gir1.2-rb-3.0 (= 3.0.2-0ubuntu1), gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-webkit-3.0, gir1.2-peas-1.0, gir1.2-gnomekeyring-1.0, gir1.2-gstreamer-1.0, python-gi, python3-mako Breaks: rhythmbox (<< 0.12.6-4) Filename: pool/main/r/rhythmbox/rhythmbox-plugins_3.0.2-0ubuntu1_amd64.deb Size: 207234 MD5sum: 4cf451a0e0247f0d0eccfe0912006ae5 SHA1: bdd97ac845a2ae8a1cc9519928e3b51680310624 SHA256: a33cb444d47cd5ae312d1362dbd78c275c0b15ad0ca4781c801ccbe218af117a Description: plugins for rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 1578eff573491ee3010556b2dc6019a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rpcbind Priority: optional Section: net Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: amd64 Version: 0.2.1-2ubuntu1 Replaces: portmap Provides: portmap Depends: libc6 (>= 2.16), libtirpc1, libwrap0 (>= 7.6-4~), lsb-base (>= 4.1+Debian3), insserv (>= 1.14.0-2.1) | file-rc, initscripts (>= 2.88dsf-13.3) Conflicts: portmap Filename: pool/main/r/rpcbind/rpcbind_0.2.1-2ubuntu1_amd64.deb Size: 36980 MD5sum: f2bf8a636fc2a9e21a70573270903fc7 SHA1: f93bdafcced01a309ca55d3ef97920e939e30cb5 SHA256: 67014ee97726a8941e48aa21854d3c27d4171756d185db1013ac95679747ba63 Description: converts RPC program numbers into universal addresses Homepage: http://sourceforge.net/projects/rpcbind/ Description-md5: 595a8e4c17168e18f4843c47dfec5895 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rpm Priority: optional Section: admin Installed-Size: 401 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Version: 4.11.1-3 Replaces: manpages-pl (<< 20051017-1) Depends: libc6 (>= 2.17), libelf1 (>= 0.131), libpopt0 (>= 1.14), librpm3 (>= 4.10.0), librpmbuild3 (>= 4.10.0), librpmio3 (>= 4.10.0), librpmsign1 (>= 4.10.0), perl, rpm2cpio, debugedit (= 4.11.1-3), rpm-common (= 4.11.1-3) Suggests: alien, elfutils, rpm-i18n Breaks: man-db (<< 2.5.0-1), manpages-pl (<< 20051017-1) Filename: pool/main/r/rpm/rpm_4.11.1-3_amd64.deb Size: 135162 MD5sum: 1679156a2ca9cb611d1aa2255b1fce54 SHA1: 9884aabf1f5e5ea35354064000c717cda51dad5a SHA256: 44e01f568a2078e16e04fa05bf444d963d5af9d68bdf68ae9716968ba817e221 Description: package manager for RPM Homepage: http://rpm.org/ Description-md5: b637dea69233214122f83668b1ac634e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rpm-common Priority: optional Section: admin Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: rpm Version: 4.11.1-3 Replaces: librpm0 (<< 4.7.1-1), librpm2, rpm (<< 4.7.1-1) Depends: libc6 (>= 2.2.5), librpm3 (>= 4.10.0), librpmio3 (>= 4.10.0) Breaks: librpm0 (<< 4.7.1-1), librpm2, rpm (<< 4.7.1-1) Filename: pool/main/r/rpm/rpm-common_4.11.1-3_amd64.deb Size: 25004 MD5sum: bceed2bf44806f9e32f8ac6bb53d1951 SHA1: ca7c2993ec494a392a3d7706e75c4d09ae9166ff SHA256: afee0509001d156a3797a07cb19a15d3b784d580733019edd0ded6c18f3b842e Description: common files for RPM Homepage: http://rpm.org/ Description-md5: 281a776fb3c0b33e3fa2befccc935f42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rpm2cpio Priority: optional Section: admin Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: amd64 Source: rpm Version: 4.11.1-3 Replaces: rpm (<< 4.7.1-1) Depends: libc6 (>= 2.3.4), librpm3 (>= 4.10.0), librpmio3 (>= 4.10.0), rpm-common (= 4.11.1-3) Suggests: rpm-i18n Breaks: rpm (<< 4.7.1-1) Filename: pool/main/r/rpm/rpm2cpio_4.11.1-3_amd64.deb Size: 5752 MD5sum: e34e058efcf61d1f1b7f5cc5eddddc35 SHA1: 39ff499a3c9121c93c7db40d1fa4ded98d497d15 SHA256: 602488d4fbeff25808248e1c84bc598cb77e2e44ad4759843fe9ed7ce8007848 Description: tool to convert RPM package to CPIO archive Multi-Arch: foreign Homepage: http://rpm.org/ Description-md5: 40ab460ae975fb68939c5b31c0e7dc8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rrdtool Priority: extra Section: utils Installed-Size: 838 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: amd64 Version: 1.4.7-2ubuntu5 Depends: libc6 (>= 2.14), librrd4 (>= 1.4~rc2) Suggests: librrds-perl Filename: pool/main/r/rrdtool/rrdtool_1.4.7-2ubuntu5_amd64.deb Size: 331032 MD5sum: ea5984f71b072fe879fd85084ee34164 SHA1: e8b7d8ca0a5d430d5097da6388b7ae19deb55a6f SHA256: 71931c6102cba636d1e6ff1599b08886cfba2fb976f2c1f8164f1c62fd70c1ae Description: time-series data storage and display system (programs) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: 2f208d113d46aef6f7eebb6f8537a07e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rrdtool-dbg Priority: extra Section: debug Installed-Size: 2295 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: amd64 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: rrdtool (= 1.4.7-2ubuntu5), librrd4 (= 1.4.7-2ubuntu5), libc6 (>= 2.2.5), python-dbg (>= 2.7), python-dbg (<< 2.8) Recommends: librrds-perl (= 1.4.7-2ubuntu5), rrdtool-tcl (= 1.4.7-2ubuntu5), python-rrdtool (= 1.4.7-2ubuntu5), librrd-ruby1.9.1 (= 1.4.7-2ubuntu5), python-all-dbg, liblua5.2-rrd0 (= 1.4.7-2ubuntu5) Filename: pool/main/r/rrdtool/rrdtool-dbg_1.4.7-2ubuntu5_amd64.deb Size: 406428 MD5sum: 32ae56c1474c2d4a0dbacb58e039b542 SHA1: dcb7f683df64f0d98370428412ac55993c82ab90 SHA256: 22df450e17397ff129c60371e8928791586e25a88a788d69f277c0390370a991 Description: time-series data storage and display system (debugging symbols) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: b3243f3d6acddd488946a29bc7fb392a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rrdtool-tcl Priority: extra Section: utils Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: amd64 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: libc6 (>= 2.4), librrd4 (>= 1.4~rc2), tcl8.6 | tclsh Filename: pool/main/r/rrdtool/rrdtool-tcl_1.4.7-2ubuntu5_amd64.deb Size: 11986 MD5sum: 20d90e347dfbe5192a2196c29a0ab74a SHA1: 23e0daaf5f4f6129a9842f0b91b63474a35d5b25 SHA256: 6f3080e6416a6724c49d02b199ca83e1d7aa25402731175afb5292ed11fedeb1 Description: time-series data storage and display system (Tcl interface) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: b846eb67771d33328ed170f4f37b5a75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rsync Priority: standard Section: net Installed-Size: 634 Maintainer: Ubuntu Developers Original-Maintainer: Paul Slootman Architecture: amd64 Version: 3.1.0-2 Depends: libacl1 (>= 2.2.51-8), libc6 (>= 2.15), libpopt0 (>= 1.14), zlib1g (>= 1:1.1.4), lsb-base (>= 3.2-14), base-files (>= 4.0.1) Suggests: openssh-client, openssh-server Breaks: duplicity (<< 0.6.11) Filename: pool/main/r/rsync/rsync_3.1.0-2_amd64.deb Size: 309812 MD5sum: eaaeb9f1072024ddffc8e9a224d4f1bf SHA1: e8ee375b47644c49549c2f91a35bc93755206707 SHA256: e716416438a048859dec1ebc1e4dc318f1e20b3ebd6309eb98b574c3026e0b75 Description: fast, versatile, remote (and local) file-copying tool Multi-Arch: foreign Homepage: http://rsync.samba.org/ Description-md5: 3bf40f318d2abfed74fa472aaff46d5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-live Package: rsyslog Priority: important Section: admin Installed-Size: 1541 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: amd64 Version: 7.4.4-1ubuntu2 Provides: linux-kernel-log-daemon, system-log-daemon Depends: libc6 (>= 2.17), libestr0 (>= 0.1.4), libjson-c2 (>= 0.10), libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4), init-system-helpers (>= 1.13~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 4.1+Debian3), initscripts (>= 2.88dsf-13.3), adduser, ucf Recommends: logrotate Suggests: rsyslog-mysql | rsyslog-pgsql, rsyslog-doc, rsyslog-gnutls, rsyslog-gssapi, rsyslog-relp, apparmor (>= 2.3) Conflicts: linux-kernel-log-daemon, system-log-daemon Filename: pool/main/r/rsyslog/rsyslog_7.4.4-1ubuntu2_amd64.deb Size: 355140 MD5sum: 200ad2847fc9df9a3265cba8426db2ba SHA1: a2af31d7b67d7aa3aa6b1708343c48d6701b8744 SHA256: 96642f8f8e26b4d6fa87f101d5006529eb4c4653fe5181b885148238d2e02eaf Description: reliable system and kernel logging daemon Homepage: http://www.rsyslog.com/ Description-md5: c25fbd9bcc88ab95bcc33eea4228fd42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: rsyslog-doc Priority: extra Section: doc Installed-Size: 1785 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: all Source: rsyslog Version: 7.4.4-1ubuntu2 Replaces: rsyslog (<< 2.0.1-2) Suggests: doc-base, www-browser Breaks: rsyslog (<< 2.0.1-2) Filename: pool/main/r/rsyslog/rsyslog-doc_7.4.4-1ubuntu2_all.deb Size: 932038 MD5sum: 09fb33f76ace55090ce773ac487ce862 SHA1: 98711e5d712bc34cb14b9830e5d2e9074616a4f0 SHA256: 42737ce370a8c0ba7a522201a9cf266e6b819fa6c4ae0eaa6dab53b0b1d5e03f Description: documentation for rsyslog Homepage: http://www.rsyslog.com/ Description-md5: 56e2e21af4e89d546589f2ecfa2f6bdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rtkit Priority: optional Section: admin Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: amd64 Version: 0.10-3 Depends: adduser, libc6 (>= 2.17), libcap2 (>= 2.10), libdbus-1-3 (>= 1.0.2) Recommends: dbus, policykit-1 Filename: pool/main/r/rtkit/rtkit_0.10-3_amd64.deb Size: 35738 MD5sum: 24d16099ccebfff257bec83cec44e735 SHA1: 26712e7321a4d7fc3388a030abbf2729add65b8e SHA256: 58ff01d4ba14f3c3e237f6adfe9372ea716692d0949004c5bfc8c6cdf91378d7 Description: Realtime Policy and Watchdog Daemon Homepage: http://0pointer.de/public/ Description-md5: 49d87b72431bed9d646487053d48658d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ruby Priority: optional Section: interpreters Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: all Source: ruby-defaults Version: 1:1.9.3.4 Replaces: irb, rdoc, ruby1.8, rubygems Provides: irb, rdoc Depends: ruby1.9.1 (>= 1.9.3.194-1) Suggests: ri, ruby-dev Conflicts: irb, rdoc, ruby1.8, rubygems Breaks: apt-listbugs (<< 0.1.6), rbenv (<= 0.4.0-1), ruby-switch (<= 0.1.0), ruby1.9.1 (<< 1.9.3.484-2), ruby2.0 (<< 2.0.0.484-1) Filename: pool/main/r/ruby-defaults/ruby_1.9.3.4_all.deb Size: 5334 MD5sum: 4b0c1d2854ae401ddb96fac3bed67d3a SHA1: 38d7e072abb5a90cf90adf824f8f34bb3ffae548 SHA256: 89008b61543c62710399dd3d3753c89ef048be54b6982ff952b36f513d58cd79 Description: Interpreter of object-oriented scripting language Ruby (default version) Homepage: http://www.ruby-lang.org/ Description-md5: da2991b37e3991230d79ba70f9c01682 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-font-meta Package: ruby-all-dev Priority: optional Section: devel Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: all Source: ruby-defaults Version: 1:1.9.3.4 Depends: ruby1.9.1 (>= 1.9.3.194-1), ruby1.9.1-dev (>= 1.9.3.194-1), ruby2.0 (>= 2.0.0.484-1), ruby2.0-dev (>= 2.0.0.484-1) Filename: pool/main/r/ruby-defaults/ruby-all-dev_1.9.3.4_all.deb Size: 4976 MD5sum: 336ff5ac5489f0d618b2e29bbf9fd7ef SHA1: 727ddce85c6ed1daa863490cd81fe22ce0f53c79 SHA256: 5818e41f7883998c241f0f024ab72ea4c7ef5703348763468ba79f12a2b90a30 Description: Header files for compiling extension modules for Ruby (all versions) Homepage: http://www.ruby-lang.org/ Description-md5: 77a388b71c8d6307217cf265b482186f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-augeas Priority: optional Section: ruby Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: amd64 Version: 0.5.0-2 Replaces: libaugeas-ruby (<< 0.5.0-1~), libaugeas-ruby1.8 (<< 0.5.0-1~), libaugeas-ruby1.9.1 (<< 0.5.0-1~) Provides: libaugeas-ruby, libaugeas-ruby1.8, libaugeas-ruby1.9.1 Depends: libaugeas0 (>= 1.1.0-0ubuntu2), libc6 (>= 2.2.5), libruby1.9.1 (>= 1.9.2.0) | libruby2.0 (>= 2.0.0) Breaks: libaugeas-ruby (<< 0.5.0-1~), libaugeas-ruby1.8 (<< 0.5.0-1~), libaugeas-ruby1.9.1 (<< 0.5.0-1~) Filename: pool/main/r/ruby-augeas/ruby-augeas_0.5.0-2_amd64.deb Size: 13196 MD5sum: a7faa5ea78f5b93307c05bf01f13d00c SHA1: de525f9e14a14548d4213199de75ee4c57e1e056 SHA256: 575013c7aa5210e1acf6e1bd72b86015891178dffede03c4dcb434345c997c69 Description: Augeas bindings for the Ruby language Homepage: http://augeas.net/ Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 3269a10ed3d3ca1e0a44a9a42c449a53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-blankslate Priority: optional Section: ruby Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.1.2.4-4 Replaces: ruby-builder (<< 3.0.0-2~) Depends: ruby | ruby-interpreter Breaks: ruby-builder (<< 3.0.0-2~) Filename: pool/main/r/ruby-blankslate/ruby-blankslate_2.1.2.4-4_all.deb Size: 4512 MD5sum: 9bdb54866279219af4e996dde1f4c58c SHA1: 9c80476d29b7f0327fd8080169e3b9698aca2292 SHA256: 6cb4b7c0c98deb63199ac04ae72cf50a5033537ee348486e9074104d570653a0 Description: Ruby library providing a class with no predefined methods Homepage: http://github.com/masover/blankslate Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 30b261828d53df14a8d1a6beba2c8a0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-childprocess Priority: optional Section: ruby Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.3.9-2 Depends: ruby | ruby-interpreter, ruby-ffi (>= 1.0.11) Filename: pool/main/r/ruby-childprocess/ruby-childprocess_0.3.9-2_all.deb Size: 20908 MD5sum: 27c1234f6780b342e4c563c62db4ec31 SHA1: 17ad7a71bab1c763cff7d75ec49853740a6740b7 SHA256: d1976cfb136ef58967f9c16c3920a43cd4d6de2a721a3d425468ded1c89cc385 Description: Ruby library for controlling external programs running in the background Homepage: http://github.com/jarib/childprocess Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: bca7a753d4ab21eb86b414e0fd2f383e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-dev Priority: optional Section: devel Installed-Size: 31 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: all Source: ruby-defaults Version: 1:1.9.3.4 Depends: ruby1.9.1-dev (>= 1.9.3.194-1) Filename: pool/main/r/ruby-defaults/ruby-dev_1.9.3.4_all.deb Size: 4660 MD5sum: 6eaacc4c84a10f70991454d3af59f274 SHA1: 49539ddff873fb0c2ee1f800e5fe71c966c9d24b SHA256: c62be9bf3634c49ab3486d2aaf86e0fba69f69f88815a0a0faf750d945db57a6 Description: Header files for compiling extension modules for Ruby (default version) Homepage: http://www.ruby-lang.org/ Description-md5: 5dd7f7cf7836ba22a13959043bfd3e94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-diff-lcs Priority: optional Section: ruby Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 1.2.4-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-diff-lcs/ruby-diff-lcs_1.2.4-1_all.deb Size: 26904 MD5sum: 3e7b052cf68e6f75f4559e482a1a1525 SHA1: dded12f73e5086a18bec1d69e8342b39c206bd92 SHA256: d780a3e5c3716ed104d792b9853b5de5384c7e0cb8e8a5589254c7d63ea3e7fe Description: McIlroy-Hunt longest common subsequence algorithm implementation Homepage: http://rubyforge.org/projects/ruwiki/ Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 2b3aaa6ea461ce5785f9b2787dc26058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-fakefs Priority: optional Section: ruby Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.4.2-2 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-fakefs/ruby-fakefs_0.4.2-2_all.deb Size: 21162 MD5sum: 4ae9874487ec2e0d6f2dcd61cb5a189b SHA1: 7d2c73e1804dfff07232964f23cb529314365359 SHA256: 5f902b741e40d4de057c520afefcc009a42804ac48bba61fdc72680c2d3fc63b Description: Fake file system to be used in unit tests Homepage: http://github.com/defunkt/fakefs Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 971e23953085c02bdd553a6ad359cfcc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-ffi Priority: optional Section: ruby Installed-Size: 711 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: amd64 Version: 1.9.3debian-1ubuntu2 Depends: libc6 (>= 2.14), libffi6 (>= 3.0.10~rc8), libruby1.9.1 (>= 1.9.2.0) | libruby2.0 (>= 2.0.0), ruby | ruby-interpreter Filename: pool/main/r/ruby-ffi/ruby-ffi_1.9.3debian-1ubuntu2_amd64.deb Size: 91982 MD5sum: a85d2b32252d3024f4e6041267d916bd SHA1: 926fba29423e83f02904f68541478459c76db092 SHA256: 7bfffae714b6550f256212a1cc0ad98aadbab738ec1c7816502a2e51e63e7a32 Description: load dynamic libraries, bind functions from within ruby code Homepage: http://wiki.github.com/ffi/ffi Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: b4df82e157f95546e50c00749ebb0d7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-flexmock Priority: optional Section: ruby Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.9.0-1 Replaces: libflexmock-ruby (<< 0.9.0-1~), libflexmock-ruby1.8 (<< 0.9.0-1~), libflexmock-ruby1.9.1 (<< 0.9.0-1~) Provides: libflexmock-ruby, libflexmock-ruby1.8, libflexmock-ruby1.9.1 Depends: ruby | ruby-interpreter Breaks: libflexmock-ruby (<< 0.9.0-1~), libflexmock-ruby1.8 (<< 0.9.0-1~), libflexmock-ruby1.9.1 (<< 0.9.0-1~) Filename: pool/main/r/ruby-flexmock/ruby-flexmock_0.9.0-1_all.deb Size: 21546 MD5sum: dc16385f69d2d993ee79275911b008e6 SHA1: 71aad4ea96260811dd8777a667390e062f3fbe8f SHA256: 014ffc353cc8a3a335371eb3d89be810ee46a91e3b20d5f11092c585a0e5a67f Description: simple and flexible mock objects for testing Homepage: https://github.com/jimweirich/flexmock Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 7646d3aa760d69d4878bd7464319cba5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-hashie Priority: optional Section: ruby Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.0.3-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-hashie/ruby-hashie_2.0.3-1_all.deb Size: 18328 MD5sum: 593ad2027e4abd0147c20790154894bd SHA1: 2f8f97b4c656415eda0d816a0373316bb03858f8 SHA256: 40d25eb809e9d66728edf7766fbdf24a532b041352e18b673678b2dde4ebca2c Description: small collection of tools that make hashes more powerful Homepage: https://github.com/intridea/hashie Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 1d5ce1465e1e249813b3a57e8f4a33c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-hiera Priority: optional Section: ruby Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 1.3.0-1 Depends: ruby | ruby-interpreter Suggests: mcollective-common (>= 2.0.0), puppet-common (>= 2.6.2) Filename: pool/main/r/ruby-hiera/ruby-hiera_1.3.0-1_all.deb Size: 17478 MD5sum: f8a68892f0950093283cc0b38a81fc8d SHA1: 83c10cd922b6db31702da979e76bc5f0a5090aa6 SHA256: b09a9246656c2de638ef7adcee925aad53bbb62c8e4f055f3261a5de01041d91 Description: Light weight hierarchical data store Homepage: https://github.com/puppetlabs/hiera/ Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 83651e8019625ca6bf22f64e4095c372 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-indentation Priority: optional Section: ruby Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.1.1-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-indentation/ruby-indentation_0.1.1-1_all.deb Size: 6116 MD5sum: ef5bd97db346573266e391381b9cfb05 SHA1: e96585425e87001d3c1a73965009825cf63aad04 SHA256: f0a4ea83bc0ddc230309a16430d618f460810a34ab1771e8b42d26b66668c967 Description: Ruby extensions for Array and String classes Homepage: https://github.com/samueldana/indentation Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: bd454170682319731f470ff9f5f1a0c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-instantiator Priority: optional Section: ruby Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.0.6+git9cbbe70-2 Depends: ruby | ruby-interpreter, ruby-blankslate Filename: pool/main/r/ruby-instantiator/ruby-instantiator_0.0.6+git9cbbe70-2_all.deb Size: 4040 MD5sum: 19fc92edf528d3d9f407ad7457e1727b SHA1: 5d4694163c0c4ba0e2f47dd7749b01a8dc88a9d1 SHA256: 2a93c0d160ee4241285ecd5fe307521af88964ff560a987f9482f699321c8774 Description: Ruby library to instantiate an arbitrary class Homepage: https://github.com/floehopper/instantiator Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 6be59b31a5734d886bee3475f6eadf17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-introspection Priority: optional Section: ruby Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.0.2-2 Depends: ruby | ruby-interpreter, ruby-metaclass (>= 0.0.1~), ruby-instantiator (>= 0.0.3~) Filename: pool/main/r/ruby-introspection/ruby-introspection_0.0.2-2_all.deb Size: 5314 MD5sum: 5a6a0dfdb39a2694c6c7e66a6e3c769c SHA1: 0b574d6d38a093373ffe00c7216ec8ad0ce5dfc6 SHA256: e53f74c4ff1680677478205606aad6af0891c82b9a9c440695ac366724e6c052 Description: Ruby library for the inspection of method definitions on objects Homepage: https://github.com/floehopper/introspection Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 03079289741dc5e4f27b643b9c5fd290 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-json Priority: optional Section: ruby Installed-Size: 318 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: amd64 Version: 1.8.0-1build1 Depends: libc6 (>= 2.14), libruby1.9.1 (>= 1.9.2.0) | libruby2.0 (>= 2.0.0), ruby | ruby-interpreter Filename: pool/main/r/ruby-json/ruby-json_1.8.0-1build1_amd64.deb Size: 48958 MD5sum: 8a5577a328816da78d573bb5ae490924 SHA1: e9bf1fd78684f32a6d306cc670018ed86cd99c61 SHA256: ecace47d382d68681924d2969250a141e1469cfeb2abd167454598447ebb304e Description: JSON library for Ruby Homepage: http://flori.github.com/json Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 580962466871607374425ac53965b45b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-metaclass Priority: optional Section: ruby Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.0.1-2 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-metaclass/ruby-metaclass_0.0.1-2_all.deb Size: 3622 MD5sum: 5f3314dd8dc74083f66cb1ad9ff9111f SHA1: a5ef2ad37637a3dfac6a860d5b81a7009b63fec4 SHA256: b828e99e26f57ad75ef9dd6851fdd5a0427842c1f4b29e3d8a68c8dc42695451 Description: Ruby library adding a metaclass method to all Ruby objects Homepage: http://github.com/floehopper/metaclass Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 3f745e843aba3232efd46dbf6a294f94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-minitest Priority: optional Section: ruby Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 5.2.1-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-minitest/ruby-minitest_5.2.1-1_all.deb Size: 32880 MD5sum: ce753bdf9798451e29ac1e0e651348cf SHA1: 2d19534858002ff7218efa8a6d01a94588393dfb SHA256: 1851998ca8043e1ecd8299e8c8b165d2e4fba08e064cbd6484a3095c00d9d7d5 Description: Ruby test tools supporting TDD, BDD, mocking, and benchmarking Homepage: http://docs.seattlerb.org/minitest/ Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 711e8129451c50c5d22378f07e8095cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-mocha Priority: optional Section: ruby Installed-Size: 275 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.14.0-2ubuntu1 Depends: ruby (>= 1:1.9), ruby-metaclass Suggests: ruby-mocha-doc Filename: pool/main/r/ruby-mocha/ruby-mocha_0.14.0-2ubuntu1_all.deb Size: 35188 MD5sum: a24483f132661545b1782832129b44ee SHA1: 2e9ec25642e4fc967930c8697e92f45c0ceed3da SHA256: 2af4a94a1ab0aec01f6ec98f9b5244abc81ca11defd58d1158d5c17dcb49006e Description: Mocking and stubbing library for Ruby Homepage: http://mocha.rubyforge.org/ Description-md5: fb69674beb79c60a99238172a3f2726e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-nokogiri Priority: optional Section: ruby Installed-Size: 600 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: amd64 Version: 1.6.1+ds-1 Depends: libc6 (>= 2.14), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), libruby1.9.1 (>= 1.9.2.0) | libruby2.0 (>= 2.0.0), ruby | ruby-interpreter Filename: pool/main/r/ruby-nokogiri/ruby-nokogiri_1.6.1+ds-1_amd64.deb Size: 96284 MD5sum: 9d9b14b7dbfce3d1352063d726969622 SHA1: dc8e90ff03b2116e6906e883d647ee4aa19acedf SHA256: 4e9425db33a2f185280b43fe63894170ab5cad607739f3ef4528df63525007d4 Description: HTML, XML, SAX, and Reader parser for Ruby Homepage: http://nokogiri.org Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 8b5216e340ca3509e38f4420fb6ca92a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-rgen Priority: optional Section: ruby Installed-Size: 446 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.6.6-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-rgen/ruby-rgen_0.6.6-1_all.deb Size: 68744 MD5sum: 67de97e6da5f5a2d394890dfb0aa2203 SHA1: f7b8d4b565897416a19eecfec98a6f541d967694 SHA256: 8e88efaa5bea3b5609552ece16ff0f72b96a5468709b2bbbd9d62a20857df404 Description: Ruby Modelling and Generator Framework Homepage: http://ruby-gen.org Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: f74fd1be681c8df5d755c4c18e840e83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-rspec Priority: optional Section: ruby Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.14.1-1 Depends: ruby | ruby-interpreter, ruby-rspec-core (>= 2.14~) Filename: pool/main/r/ruby-rspec/ruby-rspec_2.14.1-1_all.deb Size: 4996 MD5sum: 558dd16de71e342a4e01b910bb0170b5 SHA1: 6de846ff4d2fbdc45389610a2a159e7f53a50e3e SHA256: 5864eb043598e7df867baae38cee72da19d9f761ae90194278e4ff63d5a53bad Description: Behaviour Driven Development framework for Ruby - metapackage Homepage: https://github.com/rspec/rspec Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: f6d16115e98f2dabcbf90a24c94d9515 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-rspec-core Priority: optional Section: ruby Installed-Size: 556 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.14.7-2 Depends: ruby | ruby-interpreter, ruby-rspec-expectations (>= 2.14~), ruby-rspec-mocks (>= 2.14~) Suggests: ruby-rspec Filename: pool/main/r/ruby-rspec-core/ruby-rspec-core_2.14.7-2_all.deb Size: 96968 MD5sum: 22310d98b74efc8a7af26ff8436fb7e9 SHA1: c1d3b63ff3d1b300684b089fe5813290859ce318 SHA256: ce1702d77da7c3f3e29003197a836718ad708f3b1f3d46be6f9700b7f21f12ac Description: Behaviour Driven Development framework for Ruby - core Homepage: https://github.com/rspec/rspec-core Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 3509b48f952fc261333f21f1ce3a5bce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-rspec-expectations Priority: optional Section: ruby Installed-Size: 298 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.14.2-1 Depends: ruby | ruby-interpreter, ruby-diff-lcs Suggests: ruby-rspec Filename: pool/main/r/ruby-rspec-expectations/ruby-rspec-expectations_2.14.2-1_all.deb Size: 57928 MD5sum: 366d040c4275b0f4396614d2810f9c14 SHA1: d013f66c5fe484bcbe41c00c57dcd3a645638920 SHA256: 917bcf049c3b3efb4720ed17e0ecc4bbb2339f81cc496697ab58c5a2d05640fd Description: Behaviour Driven Development framework for Ruby - expectations Homepage: https://github.com/rspec/rspec-expectations Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 9d88daafd57037c6be08f060b1de929a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-rspec-mocks Priority: optional Section: ruby Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.14.3-1 Depends: ruby | ruby-interpreter Suggests: ruby-rspec Filename: pool/main/r/ruby-rspec-mocks/ruby-rspec-mocks_2.14.3-1_all.deb Size: 52678 MD5sum: f3c5247eac6204881b2d71050ee2b19f SHA1: b1c4ee76bca44dff41324950eeeda94f9e345345 SHA256: ef78db593ac289f9d15da91362b663789f4b6ed681ae146fb0e8d0d20f97d7b6 Description: Behaviour Driven Development framework for Ruby - mocks Homepage: https://github.com/rspec/rspec-mocks Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: b09b29822254e67d642b6a48f96af0e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-safe-yaml Priority: optional Section: ruby Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 1.0.1-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-safe-yaml/ruby-safe-yaml_1.0.1-1_all.deb Size: 16096 MD5sum: fd4d67cea663933a8adb2792d94a868c SHA1: 6b3b25dd58a6ee52757d166306aede1be7638628 SHA256: c828cfe037ba8b612aaf3807f137037e59b5174a2d8467516400c1a15638e9b7 Description: safer YAML loader for Ruby Homepage: https://github.com/dtao/safe_yaml Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 87ef20c0af818e65bcbb5234b8e73e88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-session Priority: optional Section: ruby Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 3.1.0-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-session/ruby-session_3.1.0-1_all.deb Size: 12694 MD5sum: e402409371592a7a201c4e1453e60b46 SHA1: eeb43dd4a00a89b47445c0b51d66ee00bd277f85 SHA256: fcfe86cfe4ed93512e3307400db38f947f8cf688ff90cecd5f4462e8736e8cc5 Description: offers a set of classes for driving external programs via pipes Homepage: http://github.com/ahoward/session/tree/master Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 5a128b3b39b9f50a2fb2a46880d1c3ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-setup Priority: optional Section: ruby Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 3.4.1-7 Replaces: libsetup-ruby1.8 (<< 3.4.1-5~) Provides: libsetup-ruby1.8 Depends: ruby | ruby-interpreter Breaks: libsetup-ruby1.8 (<< 3.4.1-5~) Filename: pool/main/r/ruby-setup/ruby-setup_3.4.1-7_all.deb Size: 35338 MD5sum: b3ee1162cdd78e6641d3dcdaf77c8b99 SHA1: d870dc1af60a1da0ea987ba2ac0d6a9c0e8540c2 SHA256: 4312e3ef0c8782b306b5b5d3d2ce76264ca53d69371cb6c3fb6e3d44efec3d22 Description: the setup.rb install tool for Ruby Homepage: http://i.loveruby.net/en/projects/setup/ Description-md5: e55b6dfb6217d430c99cb3a45de38cb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-shadow Priority: extra Section: ruby Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: amd64 Version: 2.2.0-1 Depends: libc6 (>= 2.2.5), libruby1.9.1 (>= 1.9.2.0) | libruby2.0 (>= 2.0.0) Filename: pool/main/r/ruby-shadow/ruby-shadow_2.2.0-1_amd64.deb Size: 11162 MD5sum: 6a2235ea73bcfeba05d57735366d4069 SHA1: fe4c398b8c921643c566fa4e8d6229c19d13a424 SHA256: c3052dde1dac9b1c027619654436374570cbfc195971f2267aaabe4bb71c042e Description: interface of shadow password for Ruby Homepage: https://github.com/apalmblad/ruby-shadow Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: c0ecb4ff53eab6b100e72419acd9e245 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-shoulda-context Priority: optional Section: ruby Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 1.1.2-1 Depends: ruby | ruby-interpreter Conflicts: libshoulda-ruby (<< 3.0.0~beta2-1~), libshoulda-ruby1.8 (<< 3.0.0~beta2-1) Filename: pool/main/r/ruby-shoulda-context/ruby-shoulda-context_1.1.2-1_all.deb Size: 13502 MD5sum: c457c76336c9300de55df44a46145cec SHA1: 046ca2672bddb284ff37571ff373069ff28c2e1e SHA256: 1d6699a6d9c05c9d35e17998157bd3bd0b997b7352b5026b7a5c98cec325bc0c Description: context framework for Test::Unit Homepage: https://github.com/thoughtbot/shoulda-context Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 1a8f7e85ad8dddb8a1127a8c769cb86f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-test-unit Priority: optional Section: ruby Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.5.5-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-test-unit/ruby-test-unit_2.5.5-1_all.deb Size: 68308 MD5sum: 3df17225456f8a47b860813ed60c4865 SHA1: 7e7eefbce6b5d55cf683f06b26d596354d56f919 SHA256: 99e2cb61d27fc553eb3498e408b56ce46885ee17b726b467aaf682671fdca0ce Description: Improved version of Test::Unit library initially bundled in Ruby 1.8 Homepage: http://test-unit.rubyforge.org/ Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 0107558f01969d1f38c028384870d88f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby1.9.1 Priority: optional Section: ruby Installed-Size: 275 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: amd64 Version: 1.9.3.484-2ubuntu1 Replaces: irb1.9.1, rdoc1.9.1, rubygems1.9.1 Provides: irb1.9.1, rdoc1.9.1, ruby-interpreter, rubygems1.9.1 Depends: ruby (>= 1:1.9.3.1), libruby1.9.1 (= 1.9.3.484-2ubuntu1), libc6 (>= 2.2.5) Suggests: ruby1.9.1-examples, ri1.9.1, graphviz, ruby1.9.1-dev, ruby-switch Conflicts: irb1.9.1 (<< 1.9.1.378-2~), rdoc1.9.1 (<< 1.9.1.378-2~), ri (<= 4.5), ri1.9.1 (<< 1.9.2.180-3~), ruby (<= 4.5), rubygems1.9.1 Filename: pool/main/r/ruby1.9.1/ruby1.9.1_1.9.3.484-2ubuntu1_amd64.deb Size: 35596 MD5sum: a13eb3dea0af5a1e6fdfa8c7746a4c38 SHA1: 3e48bdb2bc8d5e1c52dbf4d4177f2b4f4322f067 SHA256: eb13beacb97c520fbfe10dc80e1cc1ef49923930d9c6a5ea2d55018212477c47 Description: Interpreter of object-oriented scripting language Ruby Homepage: http://www.ruby-lang.org/ Description-md5: 5a3bebf22800260bf542248151806d7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-font-meta Package: ruby1.9.1-dev Priority: optional Section: ruby Installed-Size: 4098 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: amd64 Source: ruby1.9.1 Version: 1.9.3.484-2ubuntu1 Depends: libruby1.9.1 (= 1.9.3.484-2ubuntu1), libc6-dev Recommends: ruby1.9.1 (= 1.9.3.484-2ubuntu1) Filename: pool/main/r/ruby1.9.1/ruby1.9.1-dev_1.9.3.484-2ubuntu1_amd64.deb Size: 872428 MD5sum: bdea4c2c62fa235c870619990663fd76 SHA1: a046db54358383a5db9892798b62125625a3be00 SHA256: 07f0a2c0727867ff038f6ab685cfdbc69fa09eeb9f7ea18a78d103cc52fe3952 Description: Header files for compiling extension modules for the Ruby 1.9.1 Homepage: http://www.ruby-lang.org/ Description-md5: fe8ab5416b13f294f4b46835c51da0b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby1.9.1-examples Priority: optional Section: ruby Installed-Size: 447 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: all Source: ruby1.9.1 Version: 1.9.3.484-2ubuntu1 Suggests: ruby1.9.1 (>= 1.9.3.484-2ubuntu1) Filename: pool/main/r/ruby1.9.1/ruby1.9.1-examples_1.9.3.484-2ubuntu1_all.deb Size: 66160 MD5sum: 11121085d151db8caa6aa11655e9b11f SHA1: c8818d6c57fa6c2972e201854e584514e5ff5630 SHA256: 33d7b6e958a0e8ff5448f17fff26ddff37c695b5fcde82424111ac74987b7fa0 Description: Examples for Ruby 1.9 Homepage: http://www.ruby-lang.org/ Description-md5: f8048bc94c205859758877fee5353b32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby2.0 Priority: extra Section: ruby Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: amd64 Version: 2.0.0.484-1ubuntu2 Provides: ruby-interpreter Depends: libc6 (>= 2.2.5), libruby2.0 (>= 2.0.0), ruby (>= 1:1.9.3.1), rubygems-integration Filename: pool/main/r/ruby2.0/ruby2.0_2.0.0.484-1ubuntu2_amd64.deb Size: 66458 MD5sum: cae986bf854e3e91e29717a5f927b2c9 SHA1: f3db6fdd8646456b859abad2117946d40f98b577 SHA256: 478aa17097cb849809cc9ce3899c1b6becbef04be752c216a5adde85f1b196e4 Description: Interpreter of object-oriented scripting language Ruby Multi-Arch: foreign Homepage: http://www.ruby-lang.org/ Description-md5: 6fd1f6a3eb6ef6fd597aa106ac5a6e3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby2.0-dev Priority: extra Section: ruby Installed-Size: 4221 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: amd64 Source: ruby2.0 Version: 2.0.0.484-1ubuntu2 Filename: pool/main/r/ruby2.0/ruby2.0-dev_2.0.0.484-1ubuntu2_amd64.deb Size: 908276 MD5sum: 6cc8993e6679fc0dcd2bfe2988c31247 SHA1: f1b7ec7414f93b938558ca444d9442f2ec8110ea SHA256: 192a612c68d4c7427a0da805efdce2911f9c0df3152ed7a9a2e33b4c5b695863 Description: Header files for compiling extension modules for the Ruby 2.0 Multi-Arch: same Homepage: http://www.ruby-lang.org/ Description-md5: c38afc65a96bc689dea664a5b35d1d7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby2.0-doc Priority: extra Section: doc Installed-Size: 22481 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: all Source: ruby2.0 Version: 2.0.0.484-1ubuntu2 Filename: pool/main/r/ruby2.0/ruby2.0-doc_2.0.0.484-1ubuntu2_all.deb Size: 2989860 MD5sum: a52b36db68cb6da25d127f7b0ef9c1ff SHA1: 2686ccb10521d671771ad6b631a06548af7ecbba SHA256: 1a1c181bce136d83cb8cd70005a64dc5870d30d722295ec7b39c5836efae06df Description: Documentation for Ruby 2.0 Homepage: http://www.ruby-lang.org/ Description-md5: 8970af707cf5c913fa71bcef42f5bb72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rubygems-integration Priority: optional Section: ruby Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 1.5 Depends: ruby | ruby-interpreter Suggests: bundler Filename: pool/main/r/rubygems-integration/rubygems-integration_1.5_all.deb Size: 5340 MD5sum: 4fd9a6b8fcd6cac0935d416bef4c0089 SHA1: 3c7e8e5100bdbb2bca25f44f22f5bb04d1ed965c SHA256: 0503d6f91fbc1b9baf26efa8aac9b31e7add29e31e54a062670ca13aae9af7bb Description: integration of Debian Ruby packages with Rubygems Multi-Arch: foreign Description-md5: 7794ebc95660cf77d6ecbabdf4c28d1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: run-one Priority: optional Section: admin Installed-Size: 44 Maintainer: Dustin Kirkland Architecture: all Version: 1.17-0ubuntu1 Replaces: bikeshed (<< 1.8) Depends: procps Breaks: bikeshed (<< 1.8) Filename: pool/main/r/run-one/run-one_1.17-0ubuntu1_all.deb Size: 5760 MD5sum: 3fe7ffe5a6bd1e0992b1dd6026350178 SHA1: 7e6a3a1ab91b4191c878f5cfeb3e1997f94ea519 SHA256: 34e79797dc80f78d7acffce962f462c1213b9f4f39adafdf91298d6e715233e7 Description: run just one instance of a command and its args at a time Enhances: anacron, cron Homepage: http://launchpad.net/run-one Description-md5: 6dcd8daa2b48dec55ff2f5d2883be1d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-usb Package: sa-compile Priority: optional Section: mail Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: all Source: spamassassin Version: 3.4.0-1ubuntu1 Depends: spamassassin (>= 3.3.2-8), re2c, gcc, libc6-dev, make Conflicts: spamassassin (<= 3.3.2-7) Filename: pool/main/s/spamassassin/sa-compile_3.4.0-1ubuntu1_all.deb Size: 13770 MD5sum: 9cc4b73380de9a29de100dcf64679f7e SHA1: 4e02e47c67c7c19393f79103f9e4b44a96282407 SHA256: 9c0bae1284d7760f4db7945ea5956620dc050a1a165995bc86b009c461da4018 Description: Tools for compiling SpamAssassin rules into C Enhances: spamassassin Homepage: http://www.spamassassin.org/ Description-md5: 4b3f9d42fcff1aff87d28f86f9496c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: samba Priority: optional Section: net Installed-Size: 11157 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: libsamdb0 (<< 4.0.0~alpha17~), python-samba (<< 2:4.1.4+dfsg-3), samba-ad-dc, samba-common (<= 2.0.5a-2), samba-doc (<< 2:4.0.5~), samba-libs (<< 2:4.1.4+dfsg-2), samba4 Depends: adduser, heimdal-hdb-api-8, libpam-modules, libpam-runtime (>= 1.0.1-11), lsb-base (>= 4.1+Debian), procps, python (>= 2.7), python-dnspython, python-ntdb, python-samba, samba-common (= 2:4.1.6+dfsg-1ubuntu2), samba-common-bin (= 2:4.1.6+dfsg-1ubuntu2), samba-dsdb-modules, tdb-tools, update-inetd, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python (<< 2.8), python2.7:any, libasn1-8-heimdal (>= 1.4.0+git20110226), libbsd0 (>= 0.5.0), libc6 (>= 2.14), libcomerr2 (>= 1.01), libhdb9-heimdal (>= 1.4.0+git20110226), libkdc2-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.4.0+git20110226), libldb1 (>= 0.9.21), libpopt0 (>= 1.14), libpython2.7 (>= 2.7), libroken18-heimdal (>= 1.4.0+git20110226), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.14), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Recommends: attr, logrotate, samba-vfs-modules Suggests: bind9 (>= 1:9.5.1), bind9utils, ldb-tools, ntp, smbldap-tools, winbind, ufw Conflicts: libldb1 (<< 1:1.1.15), samba (<< 2:3.3.0~rc2-5), samba-ad-dc, samba-doc (<< 2:4.0.5~), samba-tools, samba4 (<< 4.0.0~alpha6-2) Filename: pool/main/s/samba/samba_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 844584 MD5sum: cc1953ed5955d5e83d25d5eb923b00c4 SHA1: e90046626abd662d889f60dc052ff531f2b68eb8 SHA256: d091bbebbd50020ccdba9a5325f27307822942306f872995f0e95799c88c83b9 Description: SMB/CIFS file, print, and login server for Unix Enhances: bind9, ntp Homepage: http://www.samba.org Description-md5: 3dcec89b7baaa655b2536933cdaeab54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: samba-common Priority: optional Section: net Installed-Size: 638 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: all Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: samba (<< 3.0.20b-1), samba-doc (<< 2:4.0.5~), samba4-common (<< 4.0.0~alpha7-1) Depends: ucf, debconf (>= 0.5) | debconf-2.0 Pre-Depends: dpkg (>= 1.15.6~) Recommends: samba-common-bin Conflicts: samba-doc (<< 2:4.0.5~), samba4-common (<< 4.0.0~alpha7-1), swat Filename: pool/main/s/samba/samba-common_4.1.6+dfsg-1ubuntu2_all.deb Size: 157508 MD5sum: 42eee31c1cf67d85cb7a1889d9102cfb SHA1: 20e1ca9c4885c0f643c4861cd9f9798616f10b01 SHA256: 595e0f97a80d9b2abc596adbde70cf5c7bcffbe122f4b17d2efd9ece2b26ddf3 Description: common files used by both the Samba server and client Multi-Arch: foreign Homepage: http://www.samba.org Description-md5: a4083020b891e75d279ca48e7fd18d7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: samba-common-bin Priority: optional Section: net Installed-Size: 1534 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: python-samba (<< 2:4.0.6~), samba-common (<< 2:3.4.0~pre2-1), samba-doc (<< 2:4.0.5~), samba4-common (<< 4.0.0~alpha7-1), samba4-common-bin Depends: python, python-samba, samba-common (= 2:4.1.6+dfsg-1ubuntu2), python2.7:any, libbsd0 (>= 0.0), libc6 (>= 2.14), libcomerr2 (>= 1.01), libgssapi3-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.4.0+git20110226), libldap-2.4-2 (>= 2.4.7), libncurses5 (>= 5.5-5~), libpopt0 (>= 1.14), libreadline6 (>= 6.0), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.12), libtinfo5, libwbclient0 (>= 2:4.0.3+dfsg1), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Suggests: heimdal-clients Conflicts: samba (<< 2:3.3.0~rc2-5), samba-common (<< 2:3.3.0~rc2-5), samba-doc (<< 2:4.0.5~) Filename: pool/main/s/samba/samba-common-bin_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 488026 MD5sum: fd059650a64e82a633bd3ffd0ea7803d SHA1: 3098e2fc37acc4dce7e0fb8a4d6c48513efd84c2 SHA256: e78dc4742fdc533a7f3e98e1cb8dfc8bef1012e820da536009347bc21591071f Description: Samba common files used by both the server and the client Homepage: http://www.samba.org Description-md5: 6b72087bfb045af08aa7c187e95870e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: samba-dbg Priority: extra Section: devel Installed-Size: 33897 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: samba (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/samba/samba-dbg_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 27539524 MD5sum: 2512e0c5dad86006611330eee1fdffcb SHA1: fcc038f9d3572c5e4a21dbdadb4dd9e2ffeac5d0 SHA256: c20cc5f8676defe906dc39c357ab426029fccad23da6f3d10b616fb31512067b Description: Samba debugging symbols Homepage: http://www.samba.org Description-md5: f3ad98b58579564228dc9b95ecaca46a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: samba-dev Priority: optional Section: devel Installed-Size: 1621 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: libdcerpc-dev (<< 2:4.0.9), libdcerpc-server-dev (<< 2:4.0.9), libgensec-dev (<< 2:4.0.9), libndr-dev (<< 2:4.0.9), libndr-standard-dev (<< 2:4.0.9), libnetapi-dev (<< 2:4.0.9), libregistry-dev (<< 2:4.0.9), libsamba-credentials-dev (<< 2:4.0.9), libsamba-hostconfig-dev (<< 2:4.0.9), libsamba-policy-dev (<< 2:4.0.9), libsamba-util-dev (<< 2:4.0.9), libsamdb (<< 2:4.0.9), libsmbclient-raw-dev (<< 2:4.0.9), libsmbd-dev (<< 2:4.0.9), libtorture-dev (<< 2:4.0.9), samba4-dev Depends: libc6-dev, libldb-dev, libparse-pidl-perl, libpopt-dev, libtalloc-dev, libtdb-dev (>= 1.2.11), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Breaks: libdcerpc-dev (<< 2:4.0.9), libdcerpc-server-dev (<< 2:4.0.9), libgensec-dev (<< 2:4.0.9), libndr-dev (<< 2:4.0.9), libndr-standard-dev (<< 2:4.0.9), libnetapi-dev (<< 2:4.0.9), libregistry-dev (<< 2:4.0.9), libsamba-credentials-dev (<< 2:4.0.9), libsamba-hostconfig-dev (<< 2:4.0.9), libsamba-policy-dev (<< 2:4.0.9), libsamba-util-dev (<< 2:4.0.9), libsamdb (<< 2:4.0.9), libsmbclient-raw-dev (<< 2:4.0.9), libsmbd-dev (<< 2:4.0.9), libtorture-dev (<< 2:4.0.9) Filename: pool/main/s/samba/samba-dev_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 205374 MD5sum: 66a928790c26b5df7824210852101f8b SHA1: 34f830288583f705b035193ba17ddb19d696ef88 SHA256: b21b8173bdc648589946e0fe2a5a6514ee4f6b3fdd8e50c393a8c6493b5fe44a Description: tools for extending Samba Homepage: http://www.samba.org Description-md5: 678af7403e4adfc0bf6dff29b8732ec0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: samba-doc Priority: optional Section: doc Installed-Size: 617 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: all Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/samba/samba-doc_4.1.6+dfsg-1ubuntu2_all.deb Size: 212452 MD5sum: f866238e6b15cced63f859309e0b9770 SHA1: ecd8bf43bfaa965ad10772d4eeb878aa35fdc5c2 SHA256: a2dd5d9e3a25c6e130c0f46403db2b1ef6fec6ffd27039636a43145641700693 Description: Samba documentation Multi-Arch: foreign Homepage: http://www.samba.org Description-md5: a1387f8cc1d08703eda6643a30c8ae71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server Package: samba-dsdb-modules Priority: optional Section: libs Installed-Size: 1153 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: libgensec0 (<< 4.0.0~alpha17~git20110724.dfsg1-1) Depends: libbsd0 (>= 0.0), libc6 (>= 2.14), libcomerr2 (>= 1.01), libkrb5-26-heimdal (>= 1.4.0+git20110226), libldb1 (>= 1:1.1.6), libpopt0 (>= 1.14), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Filename: pool/main/s/samba/samba-dsdb-modules_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 217924 MD5sum: c7890ca924cc46576a51146e64b4c4c6 SHA1: 58f01b6458ceef1c8e559d58f8c434f0dc7a49b7 SHA256: 291ee4ef8d8a7faee981724a65bcf5b7035873ad0400d5b4ee97eda4465824ee Description: Samba Directory Services Database Enhances: libldb1 Homepage: http://www.samba.org Description-md5: 1f2a5e5abc85752bd1d957eccf78a94e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: samba-libs Priority: optional Section: libs Installed-Size: 17886 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: libdcerpc-server0 (<< 2:4.0.9), libdcerpc0 (<< 2:4.0.9), libgensec0 (<< 2:4.0.9), libndr-standard0 (<< 2:4.0.9), libndr0 (<< 2:4.0.9), libnetapi0 (<< 2:4.0.9), libregistry0 (<< 2:4.0.9), libsamba-credentials0 (<< 2:4.0.9), libsamba-hostconfig0 (<< 2:4.0.9), libsamba-policy0 (<< 2:4.0.9), libsamba-util0 (<< 2:4.0.9), libsamdb0 (<< 2:4.0.9), libsmbclient-raw0 (<< 2:4.0.9), libsmbd0 (<< 2:4.0.9), libtorture0 (<< 2:4.0.9) Depends: libldb1 (<< 1:1.1.17~), libldb1 (>> 1:1.1.16~), libacl1 (>= 2.2.51-8), libasn1-8-heimdal (>= 1.4.0+git20110226), libattr1 (>= 1:2.4.46-8), libbsd0 (>= 0.3.0), libc6 (>= 2.14), libcap2 (>= 2.10), libcomerr2 (>= 1.01), libcups2 (>= 1.6.0), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libgssapi3-heimdal (>= 1.4.0+git20110226), libhcrypto4-heimdal (>= 1.4.0+git20110226), libhx509-5-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.4.0+git20110226), libldap-2.4-2 (>= 2.4.7), libntdb1 (>= 1.0), libpam0g (>= 0.99.7.1), libpopt0 (>= 1.14), libpython2.7 (>= 2.7), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.16), libwbclient0 (>= 2:4.0.3+dfsg1), python-talloc (>= 2.0.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Conflicts: libpam-smbpass (<< 2:4), samba (<< 2:4), samba-common-bin (<< 2:4), winbind (<< 2:4) Breaks: libdcerpc-server0 (<< 2:4.0.9), libdcerpc0 (<< 2:4.0.9), libgensec0 (<< 2:4.0.9), libndr-standard0 (<< 2:4.0.9), libndr0 (<< 2:4.0.9), libnetapi0 (<< 2:4.0.9), libregistry0 (<< 2:4.0.9), libsamba-credentials0 (<< 2:4.0.9), libsamba-hostconfig0 (<< 2:4.0.9), libsamba-policy0 (<< 2:4.0.9), libsamba-util0 (<< 2:4.0.9), libsamdb0 (<< 2:4.0.9), libsmbclient-raw0 (<< 2:4.0.9), libsmbd0 (<< 2:4.0.9), libtorture0 (<< 2:4.0.9) Filename: pool/main/s/samba/samba-libs_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 4100956 MD5sum: 57b638aebb590d71e5cab0f26e20f24e SHA1: fb3351147cca98b51592243c2004c775689b871c SHA256: f977f046fa6b754dc1e83535d25c4a7f3affbdefaaf0dd15f143ab1606489a39 Description: Samba core libraries Multi-Arch: same Homepage: http://www.samba.org Description-md5: f4a16aa3f22848793e72b3501c634170 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: samba-vfs-modules Priority: optional Section: net Installed-Size: 976 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: samba-libs (<< 2:4.1.1+dfsg-1) Depends: libaio1 (>= 0.3.93), libbsd0 (>= 0.0), libc6 (>= 2.14), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Filename: pool/main/s/samba/samba-vfs-modules_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 207730 MD5sum: eacf52950c9d856c1ced584208798f58 SHA1: a73fbff1800db5b1812569eb5d8b462d68699b1e SHA256: a3220308bd5cbf1aa1882d5df7b36104a07e94f8e4716f217fb304c3cb26b5fd Description: Samba Virtual FileSystem plugins Enhances: samba Homepage: http://www.samba.org Description-md5: 92f10340913e4a2bdea886aaeb443bee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: sane-utils Priority: optional Section: graphics Installed-Size: 524 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: sane-backends Version: 1.0.23-3ubuntu3 Replaces: libsane (<< 1.0.11-4) Depends: adduser, update-inetd, debconf (>= 0.5) | debconf-2.0, libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.15), libieee1284-3, libsane, libusb-1.0-0 (>= 2:1.0.8) Suggests: avahi-daemon, unpaper Filename: pool/main/s/sane-backends/sane-utils_1.0.23-3ubuntu3_amd64.deb Size: 165510 MD5sum: 609179ce1f3c89dc8a91411a30d53f19 SHA1: 2aeadee997828acf7aa2d180d1f77ea805d3fbf5 SHA256: d911cc2aa0569daf5a784e8f77c94752f1ac9c04c91fdfb53e355f5cc821dd29 Description: API library for scanners -- utilities Multi-Arch: foreign Homepage: http://www.sane-project.org Description-md5: 46748a077d33d525cc353029dfa80b7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: sasl2-bin Priority: optional Section: utils Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: amd64 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Replaces: libsasl2-2 (<< 2.1.25.dfsg1-8) Depends: libsasl2-2 (>= 2.1.25.dfsg1-17build1), libc6 (>= 2.15), libdb5.3, libkrb5-3 (>= 1.7dfsg), libldap-2.4-2 (>= 2.4.7), libpam0g (>= 0.99.7.1), libssl1.0.0 (>= 1.0.0), debconf (>= 0.5) | debconf-2.0, lsb-base (>= 3.0-6), db-util, debconf (>= 1.4.69) | cdebconf (>= 0.39) Breaks: libsasl2-2 (<< 2.1.25.dfsg1-8) Filename: pool/main/c/cyrus-sasl2/sasl2-bin_2.1.25.dfsg1-17build1_amd64.deb Size: 133180 MD5sum: dd14c5d4d639d0c2425fbf2cd5363846 SHA1: 0dfdb4523ed16f1a3f712a3a67ae2fa286198c7b SHA256: b4b229376c2a0bdcda9655d5bb61c12ccfc268f910888999beee5ac5a91d8bb4 Description: Cyrus SASL - administration programs for SASL users database Homepage: http://www.cyrusimap.org/ Description-md5: fa33321a828f08fecd44db10c0f59feb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sbsigntool Priority: optional Section: utils Installed-Size: 341 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Version: 0.6-0ubuntu7 Depends: libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0), libuuid1 (>= 2.16) Filename: pool/main/s/sbsigntool/sbsigntool_0.6-0ubuntu7_amd64.deb Size: 50074 MD5sum: c643978252f3da9af28787b74401a3d4 SHA1: 62003ab0c8cde2ea8245a3639547ec32c525dc33 SHA256: 3abf7125b67261e5de52dd4c33f1fcf4bd59a692941f497331660a2647b42929 Description: utility for signing and verifying files for UEFI Secure Boot Multi-Arch: foreign Description-md5: a1e38e321cb5798e7382ea59db8e58ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: scdaemon Priority: optional Section: utils Installed-Size: 471 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: amd64 Source: gnupg2 Version: 2.0.22-3ubuntu1 Replaces: gpgsm (<< 2.0.18-2) Depends: libassuan0 (>= 2.0.2), libc6 (>= 2.15), libgcrypt11 (>= 1.5.1), libgpg-error0 (>= 1.10), libksba8 (>= 1.2.0), libpth20 (>= 2.0.7), libusb-0.1-4 (>= 2:0.1.12) Breaks: gpgsm (<< 2.0.18-2) Filename: pool/main/g/gnupg2/scdaemon_2.0.22-3ubuntu1_amd64.deb Size: 163122 MD5sum: 885984e0870ecb372395592840f35467 SHA1: 00ba5ea0c0c1cc6da6c70c4205239cd5f94c9b78 SHA256: 1b424096075bca36150cb9f01bbd24d27cde2946aa90c3056e049821e54b6290 Description: GNU privacy guard - smart card support Multi-Arch: foreign Homepage: http://www.gnupg.org/ Description-md5: ade00d73739242cbebc5e97599fd6bb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: schroot Priority: optional Section: admin Installed-Size: 2765 Maintainer: Ubuntu Developers Original-Maintainer: Debian buildd-tools Developers Architecture: amd64 Version: 1.6.8-1ubuntu1 Replaces: buildd (<< 0.62.3-1), sbuild (<< 0.62.3-1) Depends: libboost-filesystem1.54.0, libboost-iostreams1.54.0, libboost-program-options1.54.0, libboost-regex1.54.0, libboost-system1.54.0, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libpam0g (>= 0.99.7.1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16), schroot-common (= 1.6.8-1ubuntu1) Suggests: debootstrap, lvm2, btrfs-tools, aufs-modules | unionfs-modules, qemu-user-static Conflicts: dchroot (<< 0.13) Breaks: binfmt-support (<< 2.0.1), sbuild (<< 0.62.6) Filename: pool/main/s/schroot/schroot_1.6.8-1ubuntu1_amd64.deb Size: 554600 MD5sum: 882a3ca06c33a46b65fabdebec9f4567 SHA1: 1ab4302949a8939569bc30b62a518cba9a6088d5 SHA256: 1fbf5078d30ead33a28988c3e80f616a158b496ed9cd1753d4a2daaad3604577 Description: Execute commands in a chroot environment Enhances: sbuild Description-md5: 1d09f5907fa9b9f0626b53bc7ffd21a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: schroot-common Priority: optional Section: admin Installed-Size: 590 Maintainer: Ubuntu Developers Original-Maintainer: Debian buildd-tools Developers Architecture: all Source: schroot Version: 1.6.8-1ubuntu1 Filename: pool/main/s/schroot/schroot-common_1.6.8-1ubuntu1_all.deb Size: 52554 MD5sum: 5f22b7fd6c5fe410e00f3a8324236ac6 SHA1: ca1d7445e60b5d46377ba20fa9e0c19a031283c6 SHA256: aff77dfec94da6e9e1017049275755055f049382fb598e341dd4488e84063b3f Description: common files for schroot Description-md5: 17b7fed4bf8393112c604fe3ff3c5565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: schroot-dbg Priority: extra Section: debug Installed-Size: 33378 Maintainer: Ubuntu Developers Original-Maintainer: Debian buildd-tools Developers Architecture: amd64 Source: schroot Version: 1.6.8-1ubuntu1 Depends: schroot (= 1.6.8-1ubuntu1) | dchroot (= 1.6.8-1ubuntu1) | dchroot-dsa (= 1.6.8-1ubuntu1) Conflicts: dchroot (>> 1.6.8-1ubuntu1), dchroot (<< 1.6.8-1ubuntu1), dchroot-dsa (>> 1.6.8-1ubuntu1), dchroot-dsa (<< 1.6.8-1ubuntu1), schroot (>> 1.6.8-1ubuntu1), schroot (<< 1.6.8-1ubuntu1) Filename: pool/main/s/schroot/schroot-dbg_1.6.8-1ubuntu1_amd64.deb Size: 32605382 MD5sum: 42277e3b1442ffdd2fec3b76b466c094 SHA1: 0f295c852abffcc4771a1298272818ee3f69dd44 SHA256: 2f2f1adc438814b38e738f78adb8effdf04ce6c6482b51efb137602430a715f1 Description: schroot, dchroot and dchroot-dsa debugging symbols Description-md5: e923048b9226a863a4db19dba9b7b955 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: scons Priority: optional Section: devel Installed-Size: 2042 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: all Version: 2.3.0-2 Depends: python (>= 2.7.1-0ubuntu2) Filename: pool/main/s/scons/scons_2.3.0-2_all.deb Size: 541994 MD5sum: 9898b977d84c504c7eca926a3de15fbb SHA1: 976f0caae141af4114ddb0b8eae2aacaa57c5ee6 SHA256: 49a8138210c4a114dc36f2602f6ee814304e036c8f9b5422bbe350d16fc66768 Description: replacement for make Homepage: http://www.scons.org/ Description-md5: ae7e354e01236878fd90148cd63ccb80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: screen Priority: optional Section: misc Installed-Size: 950 Maintainer: Ubuntu Developers Original-Maintainer: Axel Beckert Architecture: amd64 Version: 4.1.0~20120320gitdb59704-9 Depends: libc6 (>= 2.15), libpam0g (>= 0.99.7.1), libtinfo5 Suggests: iselect (>= 1.4.0-1) | screenie | byobu Filename: pool/main/s/screen/screen_4.1.0~20120320gitdb59704-9_amd64.deb Size: 645730 MD5sum: b74f0f4a32355c37f3bc213dd71d910f SHA1: 57dae303cec45c73bf8a0c716f7bfd09e0fc5a78 SHA256: 8ae0607d1674d777db6ad2b3a5a122f523835deab37cc64249396a0a5c7251d1 Description: terminal multiplexer with VT100/ANSI terminal emulation Homepage: http://savannah.gnu.org/projects/screen Description-md5: 2d86b86ed6058a04c540802e49312f40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-desktop-gnome, edubuntu-usb Package: screen-dbg Priority: extra Section: debug Installed-Size: 516 Maintainer: Ubuntu Developers Original-Maintainer: Axel Beckert Architecture: amd64 Source: screen Version: 4.1.0~20120320gitdb59704-9 Depends: screen (= 4.1.0~20120320gitdb59704-9) Filename: pool/main/s/screen/screen-dbg_4.1.0~20120320gitdb59704-9_amd64.deb Size: 412708 MD5sum: 4e9955e1329852495a632d10008f41b3 SHA1: 959b358f59d1aa7002ba597b93ce28877a732e1a SHA256: f9f4a36511cfcef665e208deb306a2131e524295245c37f68a8bae70d4cc5fff Description: Debugging symbols for GNU Screen Homepage: http://savannah.gnu.org/projects/screen Description-md5: 04271e20641b982b8f437707b92dde1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: screen-resolution-extra Priority: optional Section: x11 Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Alberto Milone (tseliot) Architecture: all Version: 0.17.1 Depends: python3-xkit (>= 0.5.0), policykit-1-gnome, python3-gi Filename: pool/main/s/screen-resolution-extra/screen-resolution-extra_0.17.1_all.deb Size: 11388 MD5sum: 17fcea6133304d332f27acfb0312594e SHA1: e55007b243c3f6879a080d0d55f64e46104f26c6 SHA256: 11d1b8d10651588d99edc20b5967878e6a3efb18f43197c9c13ac5f2b3bd8b16 Description: Extension for the GNOME screen resolution applet Description-md5: e18bc69392afb5ace6fa0b71bb3bc577 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: seabios Priority: optional Section: misc Installed-Size: 628 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: all Version: 1.7.4-4 Breaks: qemu-kvm (<< 0.14.0), qemu-system (<< 0.14.0) Filename: pool/main/s/seabios/seabios_1.7.4-4_all.deb Size: 107810 MD5sum: 88206d3b36a49786b00b76031f91c922 SHA1: 96a051ee94b208553e96818fc43784e1805490ed SHA256: ea4811ff0d7e4d4bbc0df23afb60b72c5e1321fa902324b679801e4ff6b8daf2 Description: Legacy BIOS implementation Multi-Arch: foreign Homepage: http://www.seabios.org Description-md5: 3c57ad8dc4b7367cefa8a011ed0fc235 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: seahorse Priority: optional Section: gnome Installed-Size: 2312 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.10.2-0ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.14), libgck-1-0 (>= 3.3.90), libgcr-base-3-1 (>= 3.9.1), libgcr-ui-3-1 (>= 3.9.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgpgme11 (>= 1.2.0), libgtk-3-0 (>= 3.4.0), libldap-2.4-2 (>= 2.4.7), libsecret-1-0 (>= 0.16), libsoup2.4-1 (>= 2.33.92), dconf-gsettings-backend | gsettings-backend, gcr (>= 3.9.1), gnupg (>= 1.4.7), gnome-keyring (>= 3.4) Recommends: openssh-client Filename: pool/main/s/seahorse/seahorse_3.10.2-0ubuntu1_amd64.deb Size: 417314 MD5sum: 0f20530f0eb828f80511c06c7300781e SHA1: c6c44f24170ed43fe7c475eb018bcf368a43144b SHA256: e69ecc5d48bba1263aa62381a38c63af785ac0b55842f0aa1ce98e42a3f39b7d Description: GNOME front end for GnuPG Homepage: http://live.gnome.org/Seahorse Description-md5: 183c443db6e087b1bdd4087786203c38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: secureboot-db Priority: optional Section: utils Installed-Size: 43 Maintainer: Jamie Strandboge Architecture: amd64 Version: 1.1 Depends: sbsigntool Filename: pool/main/s/secureboot-db/secureboot-db_1.1_amd64.deb Size: 2740 MD5sum: e144f20c14c6251b6cabf7522fb6a8ca SHA1: a3b8734bebbe2326b99a476e5ec7c475c060fe8c SHA256: f7a29dd15579ca7247b67b4129b8601ec698ad25e95062b9a698eca98fe263f0 Description: Secure Boot updates for DB and DBX Description-md5: 7a5f131cb6deec9acc4202d34ab02b5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sed Essential: yes Priority: required Section: utils Installed-Size: 304 Maintainer: Ubuntu Developers Original-Maintainer: Clint Adams Architecture: amd64 Version: 4.2.2-4ubuntu1 Depends: dpkg (>= 1.15.4) | install-info Pre-Depends: libc6 (>= 2.14), libselinux1 (>= 1.32) Filename: pool/main/s/sed/sed_4.2.2-4ubuntu1_amd64.deb Size: 138366 MD5sum: ca43d6204a55202efe6ba44167dfea70 SHA1: 9bb6958ffc933d1baaf1c8e42093ececd2175b73 SHA256: 56e0576c8e0356cc2ea0d0c15c970714c14a42e9c35ab09999daca602f57c499 Description: The GNU sed stream editor Multi-Arch: foreign Homepage: http://www.gnu.org/software/sed/ Description-md5: 67b5a614216e15a54b09cad62d5d5afc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: sensible-utils Priority: required Section: utils Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: all Version: 0.0.9 Replaces: debianutils (<= 2.32.3), manpages-pl (<= 20060617-3~) Filename: pool/main/s/sensible-utils/sensible-utils_0.0.9_all.deb Size: 10502 MD5sum: 18f69bbed048d2d39f7a13c26a949ccf SHA1: d8383323633d56d6d25a058cb4711ab3057502e4 SHA256: de75c4690051dfb43c8faa8f37afe276f78d41dc89d9258fa080e6a7a450c826 Description: Utilities for sensible alternative selection Multi-Arch: foreign Description-md5: 762f81736340b99921c41ac6bb08e2b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: session-migration Priority: extra Section: misc Installed-Size: 61 Maintainer: Didier Roche Architecture: amd64 Version: 0.2.1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.16.0) Filename: pool/main/s/session-migration/session-migration_0.2.1_amd64.deb Size: 7330 MD5sum: af7cb273b4fff1d2cb5be69bebf06ddc SHA1: 3f499307b854c2693a1a43540929aab7d55c9525 SHA256: 29cdc3be8fda6e764f7b9837029d4b6b0cb681d2c66147d8f84c18df38052190 Description: Tool to migrate in user session settings Homepage: https://launchpad.net/session-migration Description-md5: ae53757d572032e794c86892ab4a5aba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: sessioninstaller Priority: extra Section: gnome Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Version: 0.20+bzr141-0ubuntu4 Replaces: gnome-codec-install Provides: gnome-codec-install Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), aptdaemon (>= 0.30), python-aptdaemon.gtk3widgets, python-commandnotfound, python-defer, python-xapian, python-gi, gir1.2-gtk-3.0, gir1.2-gstreamer-1.0 Conflicts: gnome-codec-install, packagekit-gnome Filename: pool/main/s/sessioninstaller/sessioninstaller_0.20+bzr141-0ubuntu4_all.deb Size: 26310 MD5sum: 20dd1218f633a47beb7256cb38026283 SHA1: e84b0a9cc75704ddac64b0fe673dc9fe01253d5c SHA256: c0c8a313b0b091fcc6bb60619e6cf0b43c92df2f605ad403265789edf223bc9e Description: APT based installer using PackageKit's session DBus API Homepage: http://launchpad.net/sessioninstaller Description-md5: 57680fcf03a76826442d47d94b8ebaed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: setserial Priority: extra Section: comm Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Thorsten Alteholz Architecture: amd64 Version: 2.17-48 Depends: libc6 (>= 2.7), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/setserial/setserial_2.17-48_amd64.deb Size: 37748 MD5sum: b373717b1b4406d9b764f53cb0ee7a22 SHA1: cc237594c15953984007b85fcf5ff6d8255c4756 SHA256: 771772f98b11e5ca8979116d2cd761e25ce84b442d00034a8031612470ce67ce Description: controls configuration of serial ports Homepage: http://ftp.mcc.ac.uk/pub/linux/ Description-md5: 9bf5524b0c67673f200677dbc3c02151 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-live Package: sg3-utils Priority: optional Section: admin Installed-Size: 1620 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: amd64 Version: 1.36-1ubuntu1 Replaces: sg-utils Depends: libc6 (>= 2.14), libsgutils2-2 (>= 1.36) Conflicts: cdwrite, sg-utils Filename: pool/main/s/sg3-utils/sg3-utils_1.36-1ubuntu1_amd64.deb Size: 538578 MD5sum: 1ba42c6c32502350e3cf80994a9d59be SHA1: 000e4da5fffc8c882b47466a29465d2e222a6152 SHA256: be4635b93e7e3654b076b38385c42b622eefa1ea1d81c7d5a6670e788f6c13ea Description: utilities for devices using the SCSI command set Homepage: http://sg.danny.cz/sg/ Description-md5: 87527871471a549569721d9f87e03c31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sgml-base Priority: standard Section: text Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 1.26+nmu4ubuntu1 Pre-Depends: dpkg (>= 1.16.4) Suggests: sgml-base-doc Conflicts: sgml-data (<= 0.02), sgmltools-2 (<= 2.0.2-4) Filename: pool/main/s/sgml-base/sgml-base_1.26+nmu4ubuntu1_all.deb Size: 12522 MD5sum: c0b66a92d49691657b38b25d632b0495 SHA1: 8c574426ae2cd893eaedac1fe16191280e4d6eeb SHA256: 095047a66f12fedc3cf2d916d2c32e59f5f2212377c6338b7fe2e749b19e9ae4 Description: SGML infrastructure and SGML catalog file support Description-md5: 755fef945e2b90329acc85096b6dba03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: sgml-data Priority: optional Section: text Installed-Size: 1360 Maintainer: Ubuntu Developers Original-Maintainer: Osamu Aoki Architecture: all Version: 2.0.9-1 Replaces: docbook-xml (<= 3.1.3.6-1), sp (<< 1.3.4-1.2.1-14) Depends: perl, sgml-base (>= 1.26+nmu2), xml-core (>= 0.12) Suggests: perlsgml, w3-recs, opensp, libxml2-utils Breaks: sp (<= 1.1.1-2) Filename: pool/main/s/sgml-data/sgml-data_2.0.9-1_all.deb Size: 277328 MD5sum: c8bec80aeb81c647ab3683b9b1574b57 SHA1: 7fd4e5eba76435af19aae286bcc208f8d9fdc3b8 SHA256: 9f0c8b50c4093a6ae406d7cd21a662e8ea134f82c8fe86187d7569d664fc343b Description: common SGML and XML data Multi-Arch: foreign Homepage: http://debian-xml-sgml.alioth.debian.org/ Description-md5: 02478ac24373cf43b528305bde1e3a2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-desktop Package: sgmls-doc Priority: optional Section: doc Installed-Size: 200 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: libsgmls-perl Version: 1.03ii-32 Replaces: sgmlspm Suggests: libsgmls-perl, sgmlspl Conflicts: sgmlspm Filename: pool/main/libs/libsgmls-perl/sgmls-doc_1.03ii-32_all.deb Size: 24712 MD5sum: 26cc1465d236302069a9f4805cfe17e6 SHA1: 7e7d214762f0193e85f03f42b66c1396255317d4 SHA256: 74d4f05b33fb6d3a36e229b7f57227a357b0f9fc5dceceecc2dba0f85495eee4 Description: HTML documentation of libsgmls-perl and sgmlspl Description-md5: 4078382b8e372bf59a10a8e6f51bc2ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sgmlspl Priority: optional Section: text Installed-Size: 80 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: libsgmls-perl Version: 1.03ii-32 Replaces: sgmlspm Depends: libsgmls-perl, perl Suggests: sgmls-doc Conflicts: sgmlspm Filename: pool/main/libs/libsgmls-perl/sgmlspl_1.03ii-32_all.deb Size: 11420 MD5sum: 30d78253f7f9aa00228846ed882c81a7 SHA1: 40ebd2991fc002969fae87a942007d41b182cbeb SHA256: 2d825d2bde38d4628e33bdd6f188ccd4f4229c9c7a45eba34d9c8b638d9356da Description: SGMLS-based example Perl script for processing SGML parser output Description-md5: cd4a6508f13ec21d352fabfcdfff0098 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sgmltools-lite Priority: optional Section: text Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 3.0.3.0.cvs.20010909-17 Replaces: sgmltools-2 Provides: sgmltools-2 Depends: sgml-base (>= 1.10), docbook (>= 4.1-1), docbook-dsssl (>= 1.71-1), python (>= 1.5), jade | openjade Recommends: w3m | w3mmee Suggests: jadetex, lynx, linuxdoc-tools Conflicts: sgmltools-2 (<= 2.0.2-4) Filename: pool/main/s/sgmltools-lite/sgmltools-lite_3.0.3.0.cvs.20010909-17_all.deb Size: 32562 MD5sum: d6a617810901e8a164fb00d6de5bbc5e SHA1: aab268b9970b17cb142fdd28b4f844ed3e3688cf SHA256: f73f7f513636d6a9a7b028076176754f1135ff9aacf0eebee280c49356c47d5a Description: convert DocBook SGML source into HTML using DSSSL Multi-Arch: foreign Description-md5: a03ccc70330524dc737c44f838ae7219 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: shared-desktop-ontologies Priority: optional Section: misc Installed-Size: 662 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: all Version: 0.11.0-1 Filename: pool/main/s/shared-desktop-ontologies/shared-desktop-ontologies_0.11.0-1_all.deb Size: 127974 MD5sum: 000d296f4ebf4fc79b0d2f4d872fcd4f SHA1: 59daba9466c1c6c9d713357f38f7bf4d49e55b9f SHA256: cbace1662fd8f99d786bf8eec351441d915cf6fbc493c61b5c41bd40aa6c30a7 Description: shared ontologies for semantic searching Homepage: http://oscaf.sourceforge.net Description-md5: 7df25f0118f1d8fa83149eb82ecfb95f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: shared-mime-info Priority: standard Section: misc Installed-Size: 2580 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: amd64 Version: 1.2-0ubuntu3 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.35.9), libxml2 (>= 2.7.4) Conflicts: libglib2.0-0 (<< 2.17.2), libgnomevfs2-0 (<< 1:2.24.0), tracker (<< 0.6.90) Filename: pool/main/s/shared-mime-info/shared-mime-info_1.2-0ubuntu3_amd64.deb Size: 414662 MD5sum: 42d987a063150457722ab926fd952c63 SHA1: 780f0224ea9d61b6e2aedaa849a96a781e13cab2 SHA256: 1f8cc36e8adc14c5e20f96240cd9920ef578c7a517a91814f8a199e5d83ff8fc Description: FreeDesktop.org shared MIME database and spec Multi-Arch: foreign Homepage: http://freedesktop.org/wiki/Software/shared-mime-info Description-md5: 290ac8a3095b320dee65dfcdea0d99f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: sharutils Priority: optional Section: utils Installed-Size: 608 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 1:4.14-1ubuntu1 Depends: libc6 (>= 2.14) Suggests: bsd-mailx | mailx Conflicts: shar, uuencode Filename: pool/main/s/sharutils/sharutils_4.14-1ubuntu1_amd64.deb Size: 144824 MD5sum: 021cd2f95dd7fa1b4218d1caf50c882e SHA1: d61557b3fc26f7f977e4c3164a832061990c2cbb SHA256: dacb668952891a662e020fdc3deaabb0042739df3bb30dd69df407588fe732c0 Description: shar, unshar, uuencode, uudecode Multi-Arch: foreign Homepage: http://www.gnu.org/software/sharutils/ Description-md5: a3a4ed873198b8a52375099d19def9a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: sharutils-doc Priority: optional Section: doc Installed-Size: 388 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: sharutils Version: 1:4.14-1ubuntu1 Filename: pool/main/s/sharutils/sharutils-doc_4.14-1ubuntu1_all.deb Size: 35412 MD5sum: d3520cc6b6a8abefa093bc057a60664c SHA1: 993b3e55b17e5cc59c7934ea48e547e569c274c9 SHA256: fe49742c87c2e8f136032eec319a0410a5dd5aa7741a24cf6aaebff1898978e9 Description: Documentation for GNU sharutils Homepage: http://www.gnu.org/software/sharutils/ Description-md5: c3131f88b01c34cd8e0ddf87a6d89587 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: shim Priority: optional Section: admin Installed-Size: 2501 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Version: 0.4-0ubuntu4 Filename: pool/main/s/shim/shim_0.4-0ubuntu4_amd64.deb Size: 791748 MD5sum: 222bb9b2f22e3ae04bee6615d3c6cd1e SHA1: 67aa8393934ee99856989d99eea56a5b34e73b35 SHA256: 9446dd4809ee5de1732362cd38aa8198b2865a8c89a2196ff8f690d7a9b987a4 Description: boot loader to chain-load signed boot loaders under Secure Boot Description-md5: ba97e9b3cf7ad648ef7a4f6c9fa9a6d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: shim-signed Priority: optional Section: utils Installed-Size: 1359 Maintainer: Steve Langasek Architecture: amd64 Source: shim-signed (1.6) Version: 1.6+0.4-0ubuntu4 Depends: shim (= 0.4-0ubuntu4), grub-efi-amd64-bin, grub2-common Recommends: secureboot-db Filename: pool/main/s/shim-signed/shim-signed_1.6+0.4-0ubuntu4_amd64.deb Size: 327234 MD5sum: 3456329d8517b8c28844abb83055a48a SHA1: 92fd8bf757e57034abf87ff9f86864aed1a62b7c SHA256: 7bc4a2ae337b00607389e7a74e71fdb6c3dcdcc6e72420df114ae108fcecd3b6 Description: Secure Boot chain-loading bootloader (Microsoft-signed binary) Built-Using: shim (= 0.4-0ubuntu4) Description-md5: a481805ba65b750cfdd6438a7d8539a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: shotwell Priority: extra Section: gnome Installed-Size: 5770 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian Shotwell Maintainers Architecture: amd64 Version: 0.18.0-0ubuntu4 Depends: libaccounts-glib0 (>= 1.0), libc6 (>= 2.14), libcairo2 (>= 1.2.4), libexif12, libgdk-pixbuf2.0-0 (>= 2.22.0), libgee-0.8-2 (>= 0.8.3), libgexiv2-2 (>= 0.6.1), libglib2.0-0 (>= 2.35.9), libgphoto2-6 (>= 2.5.2), libgphoto2-port10 (>= 2.5.2), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.6.0), libgudev-1.0-0 (>= 146), libjson-glib-1.0-0 (>= 0.12.0), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libraw9 (>= 0.15.1), librest-0.7-0 (>= 0.7), libsignon-glib1 (>= 1.1), libsoup2.4-1 (>= 2.26.1), libsqlite3-0 (>= 3.5.9), libunity9 (>= 3.4.6), libwebkitgtk-3.0-0 (>= 1.3.10), libxml2 (>= 2.7.4), shotwell-common (= 0.18.0-0ubuntu4), librsvg2-common, dbus-x11 Suggests: account-plugin-facebook, account-plugin-google, account-plugin-flickr, unity-control-center-signon Filename: pool/main/s/shotwell/shotwell_0.18.0-0ubuntu4_amd64.deb Size: 1416468 MD5sum: b823e45f9538764779c4bbab7ee8240d SHA1: 596e2daa770a185bd13b3f7b36569e5c345e3f71 SHA256: 95cba3870dffa1c341999a0388e5645f836e98e92a63234a11ae663a8408c9da Description: digital photo organizer Homepage: http://yorba.org/shotwell/ Description-md5: 061090134a05e91755c69c693cc4d3b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: shotwell-common Priority: optional Section: gnome Installed-Size: 1496 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian Shotwell Maintainers Architecture: all Source: shotwell Version: 0.18.0-0ubuntu4 Replaces: shotwell (<< 0.14.1-1) Depends: dconf-gsettings-backend | gsettings-backend Recommends: shotwell Breaks: shotwell (<< 0.14.1-1) Filename: pool/main/s/shotwell/shotwell-common_0.18.0-0ubuntu4_all.deb Size: 477550 MD5sum: 130a30744ab0823bf8135fcc8986024f SHA1: e830331e2b064e0ffe4c637a4c006f5370230157 SHA256: 338db142c7bc8871b210b4947be0120decf4380ce5545d0e5bb158899cb80702 Description: digital photo organizer - common files Homepage: http://yorba.org/shotwell/ Description-md5: 2309ea32c18aa19f094eb502562fada4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: shotwell-dbg Priority: extra Section: debug Installed-Size: 7271 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian Shotwell Maintainers Architecture: amd64 Source: shotwell Version: 0.18.0-0ubuntu4 Depends: shotwell (= 0.18.0-0ubuntu4) Filename: pool/main/s/shotwell/shotwell-dbg_0.18.0-0ubuntu4_amd64.deb Size: 5991560 MD5sum: 51d54116c87415b03dfcbc42fbcbbdb6 SHA1: 5244b79fe01b059f34e2c23372f24a2396b24637 SHA256: 593b2b83ded974ac487036d4c613a6239e06c7de0d6aa0e2e2a80e9a7cb2cf21 Description: digital photo organizer - debugging symbols Homepage: http://yorba.org/shotwell/ Description-md5: c721a414b604290e12589edcec3ef62a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: shtool Priority: optional Section: devel Installed-Size: 544 Maintainer: Ubuntu Developers Original-Maintainer: William Vera Architecture: all Version: 2.0.8-6 Depends: perl Suggests: autoconf, automake, libtool Filename: pool/main/s/shtool/shtool_2.0.8-6_all.deb Size: 149346 MD5sum: ca8e02813cb7b7e55352aaffa6504cc7 SHA1: 56a77b66b48e2c597f73b09e92a1822842bab206 SHA256: b82ba243718b861f38031302e74bc3788ef793963c87753ded29e53ab13079be Description: portable shell tool from the GNU project Homepage: http://www.gnu.org/software/shtool/ Description-md5: 487ad53b13df08e5afd83734afb48f0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: shunit2 Priority: optional Section: devel Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Ulrich Dangel Architecture: all Version: 2.1.6-1 Filename: pool/main/s/shunit2/shunit2_2.1.6-1_all.deb Size: 43596 MD5sum: 1bcda27a3902727273ae976a6ac166f9 SHA1: 6ace734c9086e4d154055f691f35376dbef98d70 SHA256: 6e3c48e5be739720500442e8e44282bce362a6baabe1995eb051c3a8ab885b0d Description: unit test framework for Bourne based shell scripts Homepage: http://code.google.com/p/shunit2/ Description-md5: 87603abc3a9465868b0384759d8b4ce6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: siege Priority: optional Section: web Installed-Size: 257 Maintainer: Ubuntu Developers Original-Maintainer: Josue Abarca Architecture: amd64 Version: 3.0.5-1 Replaces: siege-ssl Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Conflicts: siege-ssl Filename: pool/main/s/siege/siege_3.0.5-1_amd64.deb Size: 83022 MD5sum: 7fd1bd4fc82883d1e0d365f1204adef2 SHA1: 74213b78dd3d9ad7f9b2bec98fa58e8b7026d9e3 SHA256: 111a79073f944919f22f819cc6f71451b690b057bd10e4652c94b306d3227be8 Description: HTTP regression testing and benchmarking utility Homepage: http://www.joedog.org/JoeDog/Siege Description-md5: 1effcb97a2aa1b9b4c5c8a40d7e3d65a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: signon-keyring-extension Priority: optional Section: gnome Installed-Size: 81 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 0.6+14.04.20140307-0ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libqt5core5a (>= 5.0.2), libsecret-1-0 (>= 0.7), libsignon-extension1, libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon-keyring-extension/signon-keyring-extension_0.6+14.04.20140307-0ubuntu1_amd64.deb Size: 13652 MD5sum: 84366afad6387256a188f7f186b466d1 SHA1: 15c1c57d737dae08dad06f9dbf8473a2b5a79261 SHA256: dd79b37ac093d0eba51a97eb8ac4963392bdba466132819cfbcc23cfb3c29f62 Description: GNOME keyring extension for signond Homepage: https://launchpad.net/signon-keyring-extension Description-md5: 9a54618c16aff5bc5587bf531f2e3937 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: signon-plugin-oauth2 Priority: optional Section: libs Installed-Size: 226 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 0.19+14.04.20140305-0ubuntu2 Depends: libc6 (>= 2.2.5), libqt5core5a (>= 5.2.0), libqt5network5 (>= 5.0.2), libstdc++6 (>= 4.1.1), signon-ui Filename: pool/main/s/signon-plugin-oauth2/signon-plugin-oauth2_0.19+14.04.20140305-0ubuntu2_amd64.deb Size: 58200 MD5sum: 2db17afb1d00722fda26d9a4ada53680 SHA1: 417f7304f7b7fe972757dc2b67f27aca2acec903 SHA256: 016de4a6f06e317a0e33167e20e04bbc63a9c08b922a1aa90819f13b6144f58c Description: Single Signon oauth2 plugin Homepage: http://code.google.com/p/accounts-sso/ Description-md5: aac81bf6c225cb08d089fa03c1a76e5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: signon-plugin-oauth2-dev Priority: optional Section: libdevel Installed-Size: 48 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon-plugin-oauth2 Version: 0.19+14.04.20140305-0ubuntu2 Depends: signon-plugin-oauth2 (= 0.19+14.04.20140305-0ubuntu2) Filename: pool/main/s/signon-plugin-oauth2/signon-plugin-oauth2-dev_0.19+14.04.20140305-0ubuntu2_amd64.deb Size: 2738 MD5sum: 9935e6184cb9c426ad0b1910e6d61398 SHA1: b876b01cd8b58117d81c176f74ae5f60866e44ce SHA256: 6ecbb55cdebdf3dec26f66ac25e02f991a57150fa077ff10853d6ed966557dae Description: Single Signon oauth2 plugin Homepage: http://code.google.com/p/accounts-sso/ Description-md5: cb100153cb4349bf80a9ff6012a3b6fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: signon-plugin-password Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Replaces: signon-passwordplugin Depends: libc6 (>= 2.2.5), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1), signond Conflicts: signon-passwordplugin Filename: pool/main/s/signon/signon-plugin-password_8.56+14.04.20140307-0ubuntu2_amd64.deb Size: 14754 MD5sum: 2cb61f4474b2d91646ae61b049a38f91 SHA1: 4b9d853d16de796b4d1927b9e9ec69e00dbcd759 SHA256: ebb45ff8b868f05c418e067d1e311f54a126f0b72fc50181bb4d748370f3cfdf Description: Plain Password plugin for Single Sign On Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 1443d094b0a2eedfe1ff7ebe9adcd172 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: signon-plugin-ssotest Priority: optional Section: libs Installed-Size: 183 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libc6 (>= 2.2.5), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libstdc++6 (>= 4.1.1), signond Filename: pool/main/s/signon/signon-plugin-ssotest_8.56+14.04.20140307-0ubuntu2_amd64.deb Size: 60132 MD5sum: cc10a5cc822bfc6ba691f66397de9740 SHA1: 695fe8b7486f607d70bd355cc348a600c1195ae8 SHA256: 327a374c542aa652218cd7af48c6fe5f03f7d4d57fdedce203bd3531e2e79fa2 Description: Test plugin for Single Sign On Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 75c64b001f11cd599e8f4b09f366f77a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: signon-plugins-dev Priority: optional Section: libdevel Installed-Size: 119 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libsignon-qt5-dev Filename: pool/main/s/signon/signon-plugins-dev_8.56+14.04.20140307-0ubuntu2_amd64.deb Size: 15586 MD5sum: 9e562ff8ab70ee58ae8114dde2ef7dc5 SHA1: 04c877b128b4ffd95f6a3bf76f77ed9089f52c01 SHA256: 242769ef3bad05031e71620e3d6d9442dbe705ff83e88f9601f4b8e53034404e Description: Development files for Single Sign On plugins Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 0fdec0bbfa0388a1714a386572561362 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: signon-ui Priority: optional Section: gnome Installed-Size: 446 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 0.16+14.04.20140304.is.0.15+14.04.20140313-0ubuntu1 Depends: libaccounts-qt5-1, libc6 (>= 2.14), libglib2.0-0 (>= 2.12.0), libnotify4 (>= 0.7.0), libproxy1 (>= 0.4.7), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.2.0), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2), libqt5test5 (>= 5.0.2), libqt5webkit5, libqt5widgets5 (>= 5.2.0), libsignon-qt5-1, libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon-ui/signon-ui_0.16+14.04.20140304.is.0.15+14.04.20140313-0ubuntu1_amd64.deb Size: 114126 MD5sum: 95516c16ebb7502ad3163e6ab4a8660d SHA1: 43f00f5bf43d9624836d50b0bc727751f528b1a4 SHA256: 5308b5252867b6986f6efd3801fb92ac55403e58d2d88fbd97b724bebfd18951 Description: Single Sign-on UI Homepage: https://launchpad.net/signon-ui Description-md5: c3261de338d126dcdc430c8beedea103 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: signond Priority: optional Section: gnome Installed-Size: 666 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Replaces: signon-plugins, signon-saslplugin (<< 8.40) Depends: libc6 (>= 2.14), libproxy1 (>= 0.4.7), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5sql5 (>= 5.0.2), libsignon-extension1, libsignon-plugins-common1, libstdc++6 (>= 4.1.1), session-migration, libqt5sql5-sqlite Recommends: signon-ui Breaks: signon-plugins, signon-saslplugin (<< 8.40) Filename: pool/main/s/signon/signond_8.56+14.04.20140307-0ubuntu2_amd64.deb Size: 171476 MD5sum: f0756f2a731f1200abbfb57c36da0579 SHA1: 525de6538a63c80f5ec345ec4d7bec040b0c901c SHA256: 2d41491c7979f4c46f6d99bcbceb67c2d9aa52bb765fc8b6eeb4298a716afbd2 Description: Single Sign On framework Homepage: http://code.google.com/p/accounts-sso/ Description-md5: e82cc644df18f6d1c382ada5d5c88928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: signond-dev Priority: optional Section: libdevel Installed-Size: 211 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Replaces: signon-saslplugin-dev (<< 8.40) Depends: signond (= 8.56+14.04.20140307-0ubuntu2), qtbase5-dev Breaks: signon-saslplugin-dev (<< 8.40) Filename: pool/main/s/signon/signond-dev_8.56+14.04.20140307-0ubuntu2_amd64.deb Size: 27766 MD5sum: 8ef853b61f26d7ecaea030dda130ec24 SHA1: 7a824e801a53769b99ec27a2f6df2e33d7080813 SHA256: 261fa007bedff7abc78ac3a5d7e4b5bf7923c1c324b9fba1cee082aa5109826b Description: Development files for Signon client library development Homepage: http://code.google.com/p/accounts-sso/ Description-md5: b42d5c20c50bc859c56c797635fa1d8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: signond-doc Priority: optional Section: doc Installed-Size: 21493 Maintainer: Ubuntu Desktop Team Architecture: all Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Filename: pool/main/s/signon/signond-doc_8.56+14.04.20140307-0ubuntu2_all.deb Size: 15336636 MD5sum: bfe91172e1d23da521fa35679506da44 SHA1: 98008987916f5a88eb0e5a9e785b6eb2dab9be10 SHA256: f278886f02dfb7cf883899abd9db4f93dd56192a0e330deaf5c4b0541d47d375 Description: Single Sign On framework - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 3a68da7e7c27f3c2ca7fecd296974d05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: simple-scan Priority: optional Section: gnome Installed-Size: 632 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Version: 3.12.0-0ubuntu1 Depends: gnome-icon-theme, xdg-utils, dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.14), libcairo2 (>= 1.6.0), libcolord1 (>= 0.1.10), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.3.16), libgudev-1.0-0 (>= 146), libsane (>= 1.0.11-3), zlib1g (>= 1:1.1.4) Filename: pool/main/s/simple-scan/simple-scan_3.12.0-0ubuntu1_amd64.deb Size: 133978 MD5sum: 1811aa8fa33cc7629cde23b3d2fb3d02 SHA1: 599f1e16587601a1df49132149d0201a2fb04cd0 SHA256: 97b0dc4d9e72d441f1a51129820233591d0a6619a29c61f736009f64c5470e39 Description: Simple Scanning Utility Homepage: https://launchpad.net/simple-scan Description-md5: 0801cb168babf587af56100a43d62a83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: simple-scan-dbg Priority: extra Section: debug Installed-Size: 549 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: amd64 Source: simple-scan Version: 3.12.0-0ubuntu1 Depends: simple-scan (= 3.12.0-0ubuntu1) Filename: pool/main/s/simple-scan/simple-scan-dbg_3.12.0-0ubuntu1_amd64.deb Size: 451638 MD5sum: b0bb32e324e3d30bc779cdc81bcd9776 SHA1: 8ff6ae51b41894edd78b134fd96aef14d4547d08 SHA256: 10d9da900f60e0d801a2ea4c87554558d2ab1fc767803fb2fad26a50dc51063f Description: Simple Scanning Utility - debugging symbols Homepage: https://launchpad.net/simple-scan Description-md5: 8bed55fd0216a48b7dddbe1aa30d590a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sip-dbg Priority: extra Section: debug Installed-Size: 715 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: sip4 Version: 4.15.5-1build1 Depends: sip-dev (= 4.15.5-1build1), python-dbg Filename: pool/main/s/sip4/sip-dbg_4.15.5-1build1_amd64.deb Size: 178216 MD5sum: 3d1c046549b643339840570dc017c4c9 SHA1: 3774e92c66762ab030edf795a0d49e886cec5c7d SHA256: 798bdb67fcd76925499cc173bc52c5145ab730e7fa65a4b8acfb15e49fd17ccb Description: Debug symbols for Python/C++ bindings generator application Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: 20b39e1d8af7262e88a5c44daba8edf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sip-dev Priority: optional Section: python Installed-Size: 403 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: amd64 Source: sip4 Version: 4.15.5-1build1 Replaces: python-sip-dev (<< 4.14.7-3~) Depends: libc6 (>= 2.14) Recommends: python-sip-dev (>= 4.15.5-1build1) | python3-sip-dev (>= 4.15.5-1build1) Suggests: python-sip-doc Breaks: python-sip-dev (<< 4.14.7-3~) Filename: pool/main/s/sip4/sip-dev_4.15.5-1build1_amd64.deb Size: 132214 MD5sum: 5b29e665cc99ca8a613607b6c4c1f4c7 SHA1: 3ad4f3d3b0fffe74efcb224d35ea63688f02d7b6 SHA256: ceb7f790f48b9b009a6e1688fdd9eaa9d34571f8ef252602ff44050d7f84ec61 Description: Python/C++ bindings generator code generator application Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: c5a485e2857aa14add006945e93b72d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: slapd Priority: optional Section: net Installed-Size: 4097 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: amd64 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Replaces: ldap-utils (<< 2.2.23-3), libldap2 Provides: ldap-server, libslapi-2.4-2 Depends: libc6 (>= 2.15), libdb5.3, libldap-2.4-2 (= 2.4.31-1+nmu2ubuntu8), libltdl7 (>= 2.4.2), libodbc1 (>= 2.2.11) | unixodbc (>= 2.2.11), libperl5.18 (>= 5.18.2), libsasl2-2 (>= 2.1.24), libslp1, libwrap0 (>= 7.6-4~), coreutils (>= 4.5.1-1), psmisc, perl (>> 5.8.0) | libmime-base64-perl, adduser, lsb-base (>= 3.2-13) Pre-Depends: debconf (>= 0.5) | debconf-2.0, multiarch-support Recommends: libsasl2-modules Suggests: ldap-utils, ufw Conflicts: ldap-server, libltdl3 (= 1.5.4-1), umich-ldapd Filename: pool/main/o/openldap/slapd_2.4.31-1+nmu2ubuntu8_amd64.deb Size: 1316506 MD5sum: f97af1e61c682f61cea9b21c49d35804 SHA1: cb12d3eb312109f18deb451cbc0a40947acd6134 SHA256: 11b17cb7ed2dbd7dab9bd36b64a7f3dc833b74b561068ff21b6509647cdb43f6 Description: OpenLDAP server (slapd) Homepage: http://www.openldap.org/ Description-md5: dd977840e276b3f03520c0ab1d050cf8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: slapd-dbg Priority: extra Section: net Installed-Size: 6074 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: amd64 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Depends: slapd (= 2.4.31-1+nmu2ubuntu8) Filename: pool/main/o/openldap/slapd-dbg_2.4.31-1+nmu2ubuntu8_amd64.deb Size: 5333986 MD5sum: 7cabc46b91a3412543f59f8daa61dc6b SHA1: 0bf1524b1715f9b3391e2716b009f0231a387e15 SHA256: 5795afdb15e2130da79bc0c9ab39213a5eab2ceec59943a0ade2bed1749806b6 Description: Debugging information for the OpenLDAP server (slapd) Homepage: http://www.openldap.org/ Description-md5: 60adf5b076ecd11243c2b33f25815a47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: slice Priority: optional Section: text Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Debian WML Packaging Team Architecture: all Version: 1.3.8-12 Depends: libbit-vector-perl, perl (>= 5.6.0) | perl5, perl Filename: pool/main/s/slice/slice_1.3.8-12_all.deb Size: 20392 MD5sum: 6ceb666321a015b7467e3e37eb1a8efc SHA1: af15139a10790c2b8209538425da2f71cf6093f9 SHA256: fe4e5f15ed1f9ca2189fee468e7f4ba32ad73dcb6fd01b7950b668e4511027a7 Description: Extract out pre-defined slices of an ASCII file Homepage: http://web.archive.org/web/20041028021735/http://www.engelschall.com/sw/slice/ Description-md5: 36db0db236e06b885a3c1bc5d9423e2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: smartmontools Priority: optional Section: utils Installed-Size: 1611 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Iuculano Architecture: amd64 Version: 6.2+svn3841-1.2 Depends: libc6 (>= 2.17), libcap-ng0, libgcc1 (>= 1:4.1.1), libselinux1 (>= 1.32), libstdc++6 (>= 4.1.1), debianutils (>= 2.2), lsb-base (>= 3.2-14) Recommends: mailx | mailutils Suggests: gsmartcontrol, smart-notifier Conflicts: smartsuite, ucsc-smartsuite Filename: pool/main/s/smartmontools/smartmontools_6.2+svn3841-1.2_amd64.deb Size: 445284 MD5sum: d03f917eac4a51f138ea47e1bdfc10d5 SHA1: ae0096164ddff51e8a3ab1e8fba90f45e8039bfa SHA256: b13dc9cf10740d042ac3a7da6d724125d66e0c12bc8c855a3d3bd0f6c4778c41 Description: control and monitor storage systems using S.M.A.R.T. Homepage: http://smartmontools.sourceforge.net/ Description-md5: ea81561661ccfc1b07aa52e4cc37874a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: smbclient Priority: optional Section: net Installed-Size: 894 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: samba (<< 2.999+3.0.alpha21-4), samba-doc (<< 2:4.0.5~), samba4-clients (<< 4.0.5), smbget Provides: samba-client Depends: samba-common (= 2:4.1.6+dfsg-1ubuntu2), libbsd0 (>= 0.0), libc6 (>= 2.14), libpopt0 (>= 1.14), libreadline6 (>= 6.0), libroken18-heimdal (>= 1.4.0+git20110226), libsmbclient (>= 2:4.0.3+dfsg1), libtalloc2 (>= 2.0.4~git20101213), libtevent0 (>= 0.9.9), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Suggests: cifs-utils, heimdal-clients Conflicts: samba-doc (<< 2:4.0.5~), samba4-clients (<< 4.0.3+dfsg1-0.1ubuntu3) Filename: pool/main/s/samba/smbclient_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 237576 MD5sum: b702b0e5dff3d5814bf6563d7fd37cc2 SHA1: 02df145f3e2adbce9904ff26934fb525bbfb828b SHA256: c9da2df49c230debe6a6a8b36842d0c886fc291c434f90dc019d2819bca0b809 Description: command-line SMB/CIFS clients for Unix Homepage: http://www.samba.org Description-md5: 476018eed30b7f1e76b02afe22aaf008 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: smoke-dev-tools Priority: optional Section: devel Installed-Size: 1140 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokegen Version: 4:4.13.0-0ubuntu1 Replaces: libsmokeqt4-dev (<< 4:4.7.0) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-xml (>= 4:4.5.3), libqtcore4 (>= 4:4.8.0), libsmokebase3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.4.0) Breaks: libsmokeqt4-dev (<< 4:4.7.0) Filename: pool/main/s/smokegen/smoke-dev-tools_4.13.0-0ubuntu1_amd64.deb Size: 328410 MD5sum: 76d52f79720812f4d499ed413c75d533 SHA1: 4a1568126d1b31dc6b803c90ba570fae4cac8fc3 SHA256: d183c28c6bdc0289ff014913d38afecce7c7050d731caf5ad44393a670032211 Description: SMOKE development tools Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokegen Description-md5: 4a9c152821a22749c41dfb3c59991f20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: smokegen-dbg Priority: extra Section: debug Installed-Size: 3331 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: smokegen Version: 4:4.13.0-0ubuntu1 Replaces: kdebindings-dbg Depends: libsmokebase3 (= 4:4.13.0-0ubuntu1) Recommends: smoke-dev-tools (= 4:4.13.0-0ubuntu1), libqt4-dbg Breaks: kdebindings-dbg Filename: pool/main/s/smokegen/smokegen-dbg_4.13.0-0ubuntu1_amd64.deb Size: 3173116 MD5sum: ba58c456041ad32fe97f0af8168a4a2e SHA1: 5655a3dde23e1b6e01eacf4d4ba2ad06f1c0a184 SHA256: 077d96b293641a0a2551698b1735ccf9e138622c3e83c9da7276327e87e46f48 Description: SMOKE development tools -- debug symbols Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokegen Description-md5: 94e89920bb40cf8e7799c29a5b366383 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sni-qt Priority: optional Section: x11 Installed-Size: 185 Maintainer: Kubuntu Developers Architecture: amd64 Version: 0.2.6-0ubuntu1 Depends: libc6 (>= 2.14), libdbusmenu-qt2 (>= 0.3.2), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.6.1), libqtcore4 (>= 4:4.7.3-1ubuntu3~), libqtgui4 (>= 4:4.7.3), libstdc++6 (>= 4.1.1) Filename: pool/main/s/sni-qt/sni-qt_0.2.6-0ubuntu1_amd64.deb Size: 56096 MD5sum: ee2efd177aa2147883098e57a0fb40ba SHA1: 455af47ce3fe2efd6cbe07e20da708e40baf82ed SHA256: ff9d23425a0b876b75acf1ae599e0e5c88ff4a76644274f09cde809007092823 Description: indicator support for Qt Multi-Arch: same Homepage: https://launchpad.net/sni-qt Description-md5: c0515721f2af4cef344b06fad7f320aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: snmp Priority: optional Section: net Installed-Size: 541 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: amd64 Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Depends: libc6 (>= 2.14), libsnmp30 (>= 5.7.2~dfsg), libssl1.0.0 (>= 1.0.0), libsnmp-base Recommends: perl-modules Breaks: libsnmp15 (<< 5.7.2~dfsg-0.1) Filename: pool/main/n/net-snmp/snmp_5.7.2~dfsg-8.1ubuntu3_amd64.deb Size: 146088 MD5sum: 2b218c971509d465b0e1f1c1f59252fd SHA1: fed25b3d5b46b031cb1cabd33818f3c6610149a2 SHA256: 11a0a011f91ce67f30cfc45312033ae3d0223c946af3c67f90a6cca8c3951596 Description: SNMP (Simple Network Management Protocol) applications Homepage: http://net-snmp.sourceforge.net/ Description-md5: ca9254c1be9e571fd6ae9298d0545de5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: snmpd Priority: optional Section: net Installed-Size: 227 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: amd64 Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Depends: libc6 (>= 2.4), libmysqlclient18 (>= 5.5.24+dfsg-1), libsnmp30 (>= 5.7.2~dfsg), libwrap0 (>= 7.6-4~), debconf (>= 0.5) | debconf-2.0, adduser, debconf, lsb-base (>= 3.2-13), libsnmp-base Filename: pool/main/n/net-snmp/snmpd_5.7.2~dfsg-8.1ubuntu3_amd64.deb Size: 73258 MD5sum: 1339b13be467d99af97c784b001dc655 SHA1: aa89d2ddf48d2a9c09539b88008d7f008c9e5305 SHA256: ea1861c128ab381108a1b9b6a172996f3ce3c76ee5c9277511855ac083b5a1dd Description: SNMP (Simple Network Management Protocol) agents Homepage: http://net-snmp.sourceforge.net/ Description-md5: 9dc6ec703377042ed23b16c47ed5cb6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: software-center Priority: optional Section: gnome Installed-Size: 2920 Maintainer: Ubuntu Developers Architecture: all Version: 13.10-0ubuntu4 Replaces: gnome-app-install Provides: gnome-app-install Depends: python:any (>= 2.7.1-0ubuntu2), iso-codes, app-install-data (>= 0.4.0), aptdaemon (>= 0.40), software-center-aptdaemon-plugins, humanity-icon-theme, gir1.2-glib-2.0 (>= 1.31), gir1.2-gtk-3.0, gir1.2-gmenu-3.0 (>= 3.1.5), gir1.2-webkit-3.0, gvfs-backends, python-gi (>= 3.4.0-1ubuntu0.1), python-gi-cairo, python-xapian, python-apt (>= 0.8.3ubuntu4), python-aptdaemon (>= 0.40), python-aptdaemon.gtk3widgets, python-dbus, python-defer, python-lxml, policykit-1, policykit-1-gnome | policykit-1-kde, python-xdg, ubuntu-sso-client, python-piston-mini-client (>= 0.1+bzr29), oneconf (>= 0.2.6), python-oneconf (>= 0.3) | oneconf (<< 0.3), python-debtagshw, ubuntu-extras-keyring Recommends: lsb-release, apt-xapian-index (>= 0.38ubuntu1), update-notifier, software-properties-gtk, sessioninstaller, xz-utils (>= 5.1.1alpha+20120614-1) Conflicts: gnome-app-install (<< 1) Filename: pool/main/s/software-center/software-center_13.10-0ubuntu4_all.deb Size: 325012 MD5sum: 3dcc67daa4ab6ba51dd2e392ca94116b SHA1: ab1a5711bf31f50417e0294011e21b0d3bd4c1ec SHA256: 0b46f974424b89f216504897966eaad5b58c0dbc04002e1cc183766cc4fb9e49 Description: Utility for browsing, installing, and removing software Homepage: https://launchpad.net/software-center Description-md5: 1dc0e162e89af83013265b684e2d3742 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: software-center-aptdaemon-plugins Priority: optional Section: gnome Installed-Size: 80 Maintainer: Michael Vogt Architecture: all Version: 0.1.6build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python3-gi, gir1.2-glib-2.0, python-piston-mini-client Breaks: aptdaemon (<< 0.43+bzr760) Filename: pool/main/s/software-center-aptdaemon-plugins/software-center-aptdaemon-plugins_0.1.6build1_all.deb Size: 5750 MD5sum: f1794f59f2d716ac1c80c3094e57af3c SHA1: eabe62b3a7de994b079a1dbfc374b33414f634e1 SHA256: 185cc80590feb52c9f8120b21692d304d86a257b860b07a173a4c7f2a0708516 Description: The aptdaemon plugins for software-center Description-md5: 08ea9d85331761dcca5ae154d2c0f707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: software-properties-common Priority: optional Section: admin Installed-Size: 184 Maintainer: Michael Vogt Architecture: all Source: software-properties Version: 0.92.36 Replaces: python-software-properties (<< 0.85), python3-software-properties (<< 0.85) Depends: python3, python3:any (>= 3.3.2-2~), python3-gi, gir1.2-glib-2.0, python-apt-common (>= 0.9), python3-dbus, python3-software-properties (= 0.92.36), ca-certificates Breaks: python-software-properties (<< 0.85), python3-software-properties (<< 0.85) Filename: pool/main/s/software-properties/software-properties-common_0.92.36_all.deb Size: 9290 MD5sum: cc73b80341a355a631cb29b1f68f060f SHA1: a55e945e2b8b09c2a26bb1815e0773e4102522e9 SHA256: 03cfae403ebdb0f200adc397d2b20a217f6bb2127ce16dac81af1e8b6b4afa7b Description: manage the repositories that you install software from (common) Description-md5: d19f432480048ad00ac5c2bfd116cd00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: software-properties-gtk Priority: optional Section: gnome Installed-Size: 422 Maintainer: Michael Vogt Architecture: all Source: software-properties Version: 0.92.36 Depends: python3, python3:any (>= 3.3.2-2~), python3-software-properties (= 0.92.36), python3-gi, gir1.2-gtk-3.0, python3-aptdaemon.gtk3widgets, software-properties-common, ubuntu-drivers-common (>= 1:0.2.75) Filename: pool/main/s/software-properties/software-properties-gtk_0.92.36_all.deb Size: 46764 MD5sum: 133b18e32985f8ddbc6bd1e6aea82917 SHA1: b179702cfde4aab281e4b688d40cc7fcf35835d5 SHA256: 52f7bbfb93d5770274d25f768a22168eaea89d44508eb63fa1f00ac2dc4fd032 Description: manage the repositories that you install software from (gtk) Description-md5: 1912baba2086cd851f5a53b65d6c9eea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: soprano-daemon Priority: extra Section: utils Installed-Size: 598 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: amd64 Source: soprano Version: 2.9.4+dfsg1-0ubuntu2 Replaces: libsoprano-dev (<< 2.3.0+dfsg.1-1), libsoprano4 (<< 2.3.0+dfsg.1-1) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.8.0), libraptor2-0 (>= 2.0.8), librdf0 (>= 1.0.16), libstdc++6 (>= 4.1.1) Recommends: libsoprano4 (= 2.9.4+dfsg1-0ubuntu2) Suggests: virtuoso-minimal Breaks: libsoprano-dev (<< 2.3.0+dfsg.1-1), libsoprano4 (<< 2.3.0+dfsg.1-1) Filename: pool/main/s/soprano/soprano-daemon_2.9.4+dfsg1-0ubuntu2_amd64.deb Size: 154974 MD5sum: d98cdcc5c262640b200c2a87ef7a5bae SHA1: 3833ae9ee36b956aad84695edd720499dd5d4e7b SHA256: 537f7aeeee8d3bfd494e95138559c6676157f5e84aba9816886a429fcaafe4f4 Description: daemon for the Soprano RDF framework Homepage: http://soprano.sourceforge.net Description-md5: 3de33c598636fca61e64a47b6c17fda0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: sosreport Priority: optional Section: admin Installed-Size: 864 Maintainer: Adam Stokes Architecture: amd64 Version: 3.1-1ubuntu2 Depends: python3:any (>= 3.3.2-2~), python3-six Filename: pool/main/s/sosreport/sosreport_3.1-1ubuntu2_amd64.deb Size: 66104 MD5sum: c5b2587aaf6edfa692c998ce90cea75d SHA1: b9c5a79a3a537a2fce14e608597d079f28f67ba0 SHA256: d3f02fdfebb01eff72bda83e05ab752c4c7659c6a23f9faf8bc815887dca69ca Description: Set of tools to gather troubleshooting data from a system Homepage: https://github.com/sosreport/sosreport Description-md5: 5b3e7a1f7fbde7625dc009697c8ed440 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sound-theme-freedesktop Priority: extra Section: sound Installed-Size: 541 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.8-1 Replaces: freedesktop-sound-theme (<< 0.7.pristine) Breaks: freedesktop-sound-theme (<< 0.7.pristine) Filename: pool/main/s/sound-theme-freedesktop/sound-theme-freedesktop_0.8-1_all.deb Size: 384852 MD5sum: f7048c3d03228ec96f10fa394b589b70 SHA1: 332c5386ad0cef1a5664cb0eb4f56a8dca73fc22 SHA256: bc89ca4acb6dd5bbec646dbbcaf90caed9510702eba305164ef5632e527bc43e Description: freedesktop.org sound theme Multi-Arch: foreign Homepage: http://www.freedesktop.org/ Description-md5: da6611b2187811b48e41e74c062f00e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: sp Priority: optional Section: text Installed-Size: 488 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: amd64 Source: jade (1.2.1-47.3ubuntu1) Version: 1.3.4-1.2.1-47.3ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libsp1c2 (>= 1.3.4-1.2.1-44), libstdc++6 (>= 4.1.1) Suggests: doc-base, sgml-data Filename: pool/main/j/jade/sp_1.3.4-1.2.1-47.3ubuntu1_amd64.deb Size: 124368 MD5sum: 33c95862824e485814e01f4254381b34 SHA1: 1fc1458e75ebcd103cf01842dd0d6c31304218c4 SHA256: 696b19348bce7b6af246867470572893ee1098c20ab015e673dca80e0a0fe386 Description: James Clark's SGML parsing tools Multi-Arch: foreign Description-md5: e3d72d6fafb6531320dbaf608dd8ef69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: spamassassin Priority: optional Section: mail Installed-Size: 3575 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: all Version: 3.4.0-1ubuntu1 Provides: libmail-spamassassin-perl Depends: perl (>= 5.8.0), libhtml-parser-perl (>= 3.43), libsocket6-perl, libsys-hostname-long-perl, libarchive-tar-perl, libwww-perl, libnet-dns-perl (>= 0.34), libnetaddr-ip-perl, perl-modules (>= 5.10) | libio-zlib-perl (>= 1.04), adduser Recommends: spamc (>= 2.30), sa-compile, libmail-spf-perl, libsys-syslog-perl, gnupg, libio-socket-inet6-perl Suggests: razor (>= 2.361-2), libio-socket-ssl-perl, libdbi-perl, pyzor, libcompress-zlib-perl, libmail-dkim-perl Conflicts: gotmail (<= 0.8.1-1), spamass-milter (<< 0.2.0-7) Filename: pool/main/s/spamassassin/spamassassin_3.4.0-1ubuntu1_all.deb Size: 1034006 MD5sum: 38865a8e27f4a31272b3402ac59fa4e6 SHA1: 3daa27f64d951cbb5302cbe276213dbcbcd545cb SHA256: 216887ec4d48556cd02d08cc6ec5a3501b49d36a616d6ca45a520a7bb194f546 Description: Perl-based spam filter using text analysis Homepage: http://www.spamassassin.org/ Description-md5: dc09f4668ebbf8e10ef779ed26e5716c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: spamc Priority: optional Section: mail Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: amd64 Source: spamassassin Version: 3.4.0-1ubuntu1 Depends: libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4) Suggests: spamassassin Conflicts: spamassassin (<< 2.30-2) Filename: pool/main/s/spamassassin/spamc_3.4.0-1ubuntu1_amd64.deb Size: 51640 MD5sum: ca66bc6af81f9045158eb86f5d04e757 SHA1: d0cfa194ea7d37aaf58353f00b09954325ef5cbd SHA256: 9452bf03a3ae283c13d74ec612f605b27ed8074c78d22a34783823cb5198b208 Description: Client for SpamAssassin spam filtering daemon Homepage: http://www.spamassassin.org/ Description-md5: b2e3d1db161689a544d73b142bacbe57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: speech-dispatcher Priority: extra Section: sound Installed-Size: 1108 Maintainer: Ubuntu Developers Original-Maintainer: Debian TTS Team Architecture: amd64 Version: 0.8-5ubuntu1 Depends: adduser, lsb-base (>= 3.0-10), speech-dispatcher-audio-plugins (= 0.8-5ubuntu1), libc6 (>= 2.16), libdotconf0 (>= 1.0.13), libespeak1 (>= 1.30), libglib2.0-0 (>= 2.35.9), libltdl7 (>= 2.4.2), libspeechd2 (>= 0.7.1) Recommends: pulseaudio Suggests: libttspico-utils, speech-dispatcher-doc-cs, speech-dispatcher-festival, speech-dispatcher-flite Filename: pool/main/s/speech-dispatcher/speech-dispatcher_0.8-5ubuntu1_amd64.deb Size: 304230 MD5sum: cc21134f82fd8b660ca7802c432a9f59 SHA1: 4c7bbc956fd2bd33e89098fad124333185d890d3 SHA256: b2b9315a8c2ccbcafe181e1a791b11ac692ce65b1508ed9275253909532e8936 Description: Common interface to speech synthesizers Homepage: http://devel.freebsoft.org/speechd Description-md5: 9726217383c5d7c9454fe7d0db64bda2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: speech-dispatcher-audio-plugins Priority: optional Section: sound Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian TTS Team Architecture: amd64 Source: speech-dispatcher Version: 0.8-5ubuntu1 Replaces: speech-dispatcher (<< 0.8-1) Depends: libasound2 (>= 1.0.16), libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libpulse0 (>= 1:0.99.1) Pre-Depends: multiarch-support Breaks: speech-dispatcher (<< 0.8-1) Filename: pool/main/s/speech-dispatcher/speech-dispatcher-audio-plugins_0.8-5ubuntu1_amd64.deb Size: 21846 MD5sum: 47df29e32e8935910b65e3e18415963e SHA1: 91a33d10e02f7f3c3828249fc7dce3b7953839ed SHA256: e6ac51a4c3e2152237aba5374dc7435717e3149e93049ba90e15775a73a00324 Description: Speech Dispatcher: Audio output plugins Multi-Arch: same Homepage: http://devel.freebsoft.org/speechd Description-md5: 97e11b8d3a4db4250a1597bb395285e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: speex-doc Priority: optional Section: doc Installed-Size: 1544 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: all Source: speex Version: 1.2~rc1.1-1ubuntu1 Suggests: speex Filename: pool/main/s/speex/speex-doc_1.2~rc1.1-1ubuntu1_all.deb Size: 580400 MD5sum: 14cdae7af63711f8aea45860a760981a SHA1: dc74cc35d7949f7f10cca5c7fa58f8559f1690a7 SHA256: 89ce7257ad6343499228a9d5d400d2cf4277e63e3d0dd32d649c4e661fe169ff Description: Documentation for speex Homepage: http://www.speex.org/ Description-md5: 781c28c25cd4fa72bbb3a3a126d089f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: spell Priority: optional Section: text Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Giacomo Catenazzi Architecture: amd64 Version: 1.0-24 Depends: libc6 (>= 2.3.4), ispell | aspell, iamerican | ibritish | ispell-dictionary Filename: pool/main/s/spell/spell_1.0-24_amd64.deb Size: 15290 MD5sum: 7b0ee22c45856d89d18b935c9bb9c1f1 SHA1: 1d8cfc996d03f44e8bed6279a2c4283f1553ebbb SHA256: 7e31b2528d3b52be9f79a24b45c7bc96e3312393382ede14825a2fe4833768cd Description: GNU Spell, a clone of Unix `spell' Homepage: http://directory.fsf.org/project/spell/ Description-md5: 5a76d1ef6292acb49c2e7067087f0aff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sphinx-common Priority: optional Section: python Installed-Size: 1497 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sphinx Version: 1.2.2+dfsg-1ubuntu1 Replaces: python-sphinx (<< 1.1) Depends: libjs-sphinxdoc (= 1.2.2+dfsg-1ubuntu1) Recommends: python-sphinx | python3-sphinx Conflicts: python-sphinx (<< 1.1) Filename: pool/main/s/sphinx/sphinx-common_1.2.2+dfsg-1ubuntu1_all.deb Size: 391856 MD5sum: 34e085129f059277142c64a4bc3d2172 SHA1: 157c23801e6e6fbe799041edad56c07a093dca81 SHA256: f0647c01b45fd86231fd02a48cd808422f1d7e8312f20b1e8109c3bd8d49ca7f Description: documentation generator for Python projects - common data Homepage: http://sphinx-doc.org/ Description-md5: bd9984218442c73c2721b81e265ef953 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sphinx-doc Priority: optional Section: doc Installed-Size: 2815 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sphinx Version: 1.2.2+dfsg-1ubuntu1 Replaces: python-sphinx (<< 1.1) Depends: libjs-sphinxdoc (>= 1.0) Conflicts: python-sphinx (<< 1.1) Filename: pool/main/s/sphinx/sphinx-doc_1.2.2+dfsg-1ubuntu1_all.deb Size: 998294 MD5sum: 5c984799095e9b65de9e283a5dc60878 SHA1: 9f5d245b322b7fde28f3e1790504b186fb2bc7fd SHA256: 7da597537511f020f811f7c7f82aff1aaf68538585054c967efc2cb68747e458 Description: documentation generator for Python projects - documentation Homepage: http://sphinx-doc.org/ Description-md5: 8ffc8b8c69e49e0b472daf3c0cbe89be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sphinx-voxforge-hmm-en Priority: extra Section: sound Installed-Size: 28046 Maintainer: Ubuntu Developers Architecture: all Source: sphinx-voxforge-en Version: 0.1.1~daily20130301-0ubuntu1 Filename: pool/main/s/sphinx-voxforge-en/sphinx-voxforge-hmm-en_0.1.1~daily20130301-0ubuntu1_all.deb Size: 22015318 MD5sum: d8ad5706980bba62c3511142be7c0343 SHA1: 592927e7aa5c160520eb3325a4e7b67f134fa730 SHA256: 3cbeb77b22927c280bf6d56c539f1aee6d889dc5b336dc68ba56161037a0b0ff Description: English sphinx acoustic model built from Voxforge audio corpus Homepage: http://www.voxforge.org/ Description-md5: 85dbd9eae5c05d34f08f6ebd648d2d58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: sphinx-voxforge-lm-en Priority: extra Section: sound Installed-Size: 5434 Maintainer: Ubuntu Developers Architecture: all Source: sphinx-voxforge-en Version: 0.1.1~daily20130301-0ubuntu1 Filename: pool/main/s/sphinx-voxforge-en/sphinx-voxforge-lm-en_0.1.1~daily20130301-0ubuntu1_all.deb Size: 1960252 MD5sum: ab6920ea3056d3cef80feb8129355805 SHA1: 2da685ed3ccdec2355cd34a61048567559396def SHA256: b6e81dc86693b9cf50ada2c55f108adf07f0c2d3fd4438ba2316e0fc6438b072 Description: English sphinx language model built from Voxforge audio corpus Homepage: http://www.voxforge.org/ Description-md5: 0b5b2cf8e21de4630aa242d3fa088837 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: sqlite3 Priority: optional Section: misc Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: amd64 Version: 3.8.2-1ubuntu2 Depends: libc6 (>= 2.14), libreadline6 (>= 6.0), libsqlite3-0 (= 3.8.2-1ubuntu2) Suggests: sqlite3-doc Filename: pool/main/s/sqlite3/sqlite3_3.8.2-1ubuntu2_amd64.deb Size: 28888 MD5sum: 3da8375c390f6528cdd2763332431ad6 SHA1: 98414cab64352755bc6ea0f6b1d08f534e693c76 SHA256: 314303e570de6508069465ec01fbd51c332be92290289ec5bdf00ef386dcf3b0 Description: Command line interface for SQLite 3 Multi-Arch: foreign Homepage: http://www.sqlite.org/ Description-md5: 60cd5a660be500525f955c43bd7981cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: sqlite3-doc Priority: optional Section: doc Installed-Size: 9483 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: all Source: sqlite3 Version: 3.8.2-1ubuntu2 Recommends: sqlite3 Filename: pool/main/s/sqlite3/sqlite3-doc_3.8.2-1ubuntu2_all.deb Size: 2708330 MD5sum: 0759259efce4d42815e37488e17467df SHA1: 356b2ec43bc5dedd828b3d68a8bce7950bc32cd9 SHA256: a0684f5d9bdfb270a50c4111a1cac83c61981fb7d37cd6b795d1f8ba87b7c785 Description: SQLite 3 documentation Homepage: http://www.sqlite.org/ Description-md5: 012466e9aa8467597bb2ec5a942a4472 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: squashfs-tools Priority: optional Section: admin Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Filesystems Group Architecture: amd64 Version: 1:4.2+20130409-2 Depends: libc6 (>= 2.14), liblzma5 (>= 5.1.1alpha+20110809), liblzo2-2, zlib1g (>= 1:1.1.4) Filename: pool/main/s/squashfs-tools/squashfs-tools_4.2+20130409-2_amd64.deb Size: 90420 MD5sum: 2cada0eb67c11634a71201ac3fffa17b SHA1: 528adbf85f52d498fbf927c7079f92f7350866ac SHA256: 6e1b8fec27482f48eeaf3249d131b9ac7d58b5c995385497b4cdf380c940a99a Description: Tool to create and append to squashfs filesystems Homepage: http://squashfs.sourceforge.net/ Description-md5: 17dcc783a84cdb071acdaa9841a6522c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: squashfs-tools-dbg Priority: extra Section: debug Installed-Size: 332 Maintainer: Ubuntu Developers Original-Maintainer: Filesystems Group Architecture: amd64 Source: squashfs-tools Version: 1:4.2+20130409-2 Depends: squashfs-tools (= 1:4.2+20130409-2) Filename: pool/main/s/squashfs-tools/squashfs-tools-dbg_4.2+20130409-2_amd64.deb Size: 249132 MD5sum: ef38a1dfc2fdd61889712871297959b6 SHA1: 85282565ad89d08d6ecb6dc30b23ed75bdabccf0 SHA256: c21cf9446ebc72f66984d1c82e5c8828f3e3f519148f49bc7fb32c75a3a9f0fd Description: Tool to create and append to squashfs filesystems (debug) Homepage: http://squashfs.sourceforge.net/ Description-md5: dae020a02abd8b7816b3667608e5514a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: squid-deb-proxy Priority: extra Section: net Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Michael Vogt Architecture: all Version: 0.8.6 Depends: debconf (>= 0.5) | debconf-2.0, squid3 Recommends: avahi-utils Filename: pool/main/s/squid-deb-proxy/squid-deb-proxy_0.8.6_all.deb Size: 11990 MD5sum: 55709f341a55604b09f538cc371073ed SHA1: 9a512cba4b71f676e794f377454db11f7a653ab1 SHA256: 0923a39c70a10a945b0a6dd81013a691c35640762c521b25ce33d0d908d39103 Description: Squid proxy configuration to optimize package downloads Homepage: https://launchpad.net/squid-deb-proxy Description-md5: 41e200bb53a24b83c8c354c625759190 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: squid-langpack Priority: optional Section: web Installed-Size: 2142 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: all Version: 20121005-1 Filename: pool/main/s/squid-langpack/squid-langpack_20121005-1_all.deb Size: 333618 MD5sum: c01476b433c8b2bbecb11bb054a1d90a SHA1: f0f024908783942546a14d7cd4e46b70f0860412 SHA256: 536bc64c219d60c2f34222627ffe228b1f2bc241d39c3c70673c4eec328da4ff Description: Localized error pages for Squid Homepage: http://www.squid-cache.org Description-md5: 04e20b604c7b0479aa6f6600450b1def Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: squid3 Priority: optional Section: web Installed-Size: 5972 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: amd64 Version: 3.3.8-1ubuntu6 Depends: libc6 (>= 2.15), libcap2 (>= 2.10), libcomerr2 (>= 1.01), libdb5.3, libecap2, libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libgssapi-krb5-2 (>= 1.10+dfsg~), libkrb5-3 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7), libltdl7 (>= 2.4.2), libnetfilter-conntrack3, libpam0g (>= 0.99.7.1), libsasl2-2 (>= 2.1.24), libstdc++6 (>= 4.6), libxml2 (>= 2.7.4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), netbase, adduser, logrotate (>= 3.5.4-1), squid3-common (= 3.3.8-1ubuntu6), lsb-base, ssl-cert (>= 1.0-11ubuntu1) Suggests: squidclient, squid-cgi, squid-purge, resolvconf (>= 0.40), smbclient, ufw, winbindd, apparmor (>= 2.3) Filename: pool/main/s/squid3/squid3_3.3.8-1ubuntu6_amd64.deb Size: 1784370 MD5sum: 23b50064b1f07209a053ad09ea947e9a SHA1: 1a0c6949ce514d90f774d2d8d2ab2bdf1257d6ea SHA256: 15b47f9ef8040b3f265319dfb39708ad09623c4b6156bb7de98a5e114a51f74f Description: Full featured Web Proxy cache (HTTP proxy) Homepage: http://www.squid-cache.org Description-md5: 03beec2567a9d8411e86109a53d6316a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: squid3-common Priority: optional Section: web Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: all Source: squid3 Version: 3.3.8-1ubuntu6 Depends: squid-langpack (>= 20110214-1) Filename: pool/main/s/squid3/squid3-common_3.3.8-1ubuntu6_all.deb Size: 152790 MD5sum: daf4876f3c73d16818993d52a6bf608d SHA1: 17718245569758a3cf041dfd829896a2926aabe6 SHA256: 8e33cec286aa244b4564db9854243a6370787a7d3f05530a69adfbfef3ab13ac Description: Full featured Web Proxy cache (HTTP proxy) - common files Homepage: http://www.squid-cache.org Description-md5: 3e901946e35992c109fbb47e7164ec67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: squid3-dbg Priority: extra Section: debug Installed-Size: 42057 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: amd64 Source: squid3 Version: 3.3.8-1ubuntu6 Depends: squid3 (= 3.3.8-1ubuntu6) Filename: pool/main/s/squid3/squid3-dbg_3.3.8-1ubuntu6_amd64.deb Size: 8611462 MD5sum: a23cca0df0935956be0f45c2cd92b944 SHA1: 9b011258eb45f1797690d8a5d4086645f074d4cd SHA256: 6b11a03480e7b97acb8233736ebea77629c549cc9784fc95870eab9d77d5eb93 Description: Full featured Web Proxy cache (HTTP proxy) - Debug symbols Homepage: http://www.squid-cache.org Description-md5: 19d07746abc740ae906d1c40fe4fb3a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ss-dev Priority: extra Section: libdevel Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: amd64 Source: e2fsprogs (1.42.9-3ubuntu1) Version: 2.0-1.42.9-3ubuntu1 Depends: libc6-dev | libc-dev, libss2 (= 1.42.9-3ubuntu1), comerr-dev Filename: pool/main/e/e2fsprogs/ss-dev_2.0-1.42.9-3ubuntu1_amd64.deb Size: 16886 MD5sum: 151badbcb6856ab32dc9ee93071d849e SHA1: 1a386a785019ca0d1b824ee6999776dd3c246ba4 SHA256: 234d8aa1177d3257f24c18b5936986e690d5a1c7d50ec5cef6ad48d59a2592ff Description: command-line interface parsing library - headers and static libraries Homepage: http://e2fsprogs.sourceforge.net Description-md5: 9f7a224dc59f72d5dc2ab6204013b575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ssh Priority: optional Section: net Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSH Maintainers Architecture: all Source: openssh Version: 1:6.6p1-2ubuntu1 Depends: openssh-client (>= 1:6.6p1-2ubuntu1), openssh-server (>= 1:6.6p1-2ubuntu1) Filename: pool/main/o/openssh/ssh_6.6p1-2ubuntu1_all.deb Size: 1116 MD5sum: 100fd88c47dcebb10bc87be3fce1d0dc SHA1: fe21c9f99eb5d6640c8826d97414596219cea971 SHA256: 1fd36f6c1dfa778ad57cd0f109cd6cf9921f66645aa407ac4dad9250f714840c Description: secure shell client and server (metapackage) Homepage: http://www.openssh.org/ Description-md5: b00e309365895c14a10af55945efb136 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ssh-askpass-gnome Priority: optional Section: gnome Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSH Maintainers Architecture: amd64 Source: openssh Version: 1:6.6p1-2ubuntu1 Replaces: ssh (<< 1:3.5p1-3) Provides: ssh-askpass Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.8.0), libx11-6, openssh-client | ssh (>= 1:1.2pre7-4) | ssh-krb5 Filename: pool/main/o/openssh/ssh-askpass-gnome_6.6p1-2ubuntu1_amd64.deb Size: 14406 MD5sum: 0fdcfcae224e5f76330a60f93ed538de SHA1: 30189db78cddb4dde51a3f39bd960f68acfa38ce SHA256: 9322e9ef4925d2f26eec494f644161128271f143d4d37ad5e40b732cd72dc756 Description: interactive X program to prompt users for a passphrase for ssh-add Homepage: http://www.openssh.org/ Description-md5: e888e7e8e5a6ee7b30f000dc22ed083f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ssh-import-id Priority: extra Section: misc Installed-Size: 83 Maintainer: Dustin Kirkland Architecture: all Version: 3.21-0ubuntu1 Depends: ca-certificates, openssh-client, python-requests (>= 1.1.0), wget, python (>= 2.7), python (<< 2.8) Recommends: openssh-server Filename: pool/main/s/ssh-import-id/ssh-import-id_3.21-0ubuntu1_all.deb Size: 9624 MD5sum: 1deb9e2ae1f2e40a8f7d884402343b0b SHA1: c0d1f1108629aed9de3f57e86eb9723dc5fc66ba SHA256: 14e778ad33664ead8275708a76c209417906f3db64e711df0711050fd7491d13 Description: securely retrieve an SSH public key and install it locally Homepage: http://launchpad.net/ssh-import-id Description-md5: 28404285c28db44d2e1c02dc4290d166 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: sshfs Priority: optional Section: utils Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Bartosz Fenski Architecture: amd64 Source: sshfs-fuse Version: 2.5-1ubuntu1 Depends: libc6 (>= 2.14), libfuse2 (>= 2.8.1), libglib2.0-0 (>= 2.12.0), fuse, openssh-client Filename: pool/main/s/sshfs-fuse/sshfs_2.5-1ubuntu1_amd64.deb Size: 41684 MD5sum: 9913e043ff353e954ef55d84ed049569 SHA1: cab755069a915e1c2c4ee89211972066d1a4b3d3 SHA256: ae0e78c6179d7e1fb1e5a14c2af82d5712521022b0dd97156d5739cbb98539e0 Description: filesystem client based on SSH File Transfer Protocol Homepage: http://fuse.sourceforge.net/sshfs.html Description-md5: 53290533db24b88f6a76ffb069dba11c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sshfs-dbg Priority: extra Section: utils Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Bartosz Fenski Architecture: amd64 Source: sshfs-fuse Version: 2.5-1ubuntu1 Depends: sshfs (= 2.5-1ubuntu1) Filename: pool/main/s/sshfs-fuse/sshfs-dbg_2.5-1ubuntu1_amd64.deb Size: 109890 MD5sum: 43fcfe19477b2862dabc69e407a540cb SHA1: f26f1db66ffa2ce1800c5f7ea42b0981a548e229 SHA256: f40ff9151776a3f6479448156b5987cc6a52665401ba2ee1d5939a09f509d256 Description: filesystem client based on SSH File Transfer Protocol (with debugging symbols) Homepage: http://fuse.sourceforge.net/sshfs.html Description-md5: 3e86d7c74f8f2af6d12d3346ed7c65c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ssl-cert Priority: optional Section: utils Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: all Version: 1.0.33 Depends: debconf (>= 0.5) | debconf-2.0, openssl (>= 0.9.8g-9), adduser Suggests: openssl-blacklist Filename: pool/main/s/ssl-cert/ssl-cert_1.0.33_all.deb Size: 16650 MD5sum: bb2d2f616d7b4da9b76caa98002657eb SHA1: e2b01268291d438b7d457b5d3595c5b14e5400d1 SHA256: fde7cfb8e6e2fc3e13fd8b288fd5f63e7146058b95ec79686f97372293da4390 Description: simple debconf wrapper for OpenSSL Multi-Arch: foreign Description-md5: 5def45ff95c1ca066f6999553bb7628f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, mail-server, ubuntu-usb, print-server, postgresql-server, lamp-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: sssd Priority: extra Section: utils Installed-Size: 43 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Version: 1.11.5-1ubuntu3 Depends: sssd-common (= 1.11.5-1ubuntu3), sssd-ad (= 1.11.5-1ubuntu3), sssd-ipa (= 1.11.5-1ubuntu3), sssd-krb5 (= 1.11.5-1ubuntu3), sssd-ldap (= 1.11.5-1ubuntu3), sssd-proxy (= 1.11.5-1ubuntu3), python-sss (= 1.11.5-1ubuntu3) Filename: pool/main/s/sssd/sssd_1.11.5-1ubuntu3_amd64.deb Size: 4140 MD5sum: af4c1e81a31abe66a1211c8e9804973b SHA1: 51a1900d9ddcf9bf4ba4980febc4da6c9a15d15d SHA256: 9208cf4a8e4c7644753ca00ba6a14b10a03bac1d17ea908c0d77ccfcfc14baf4 Description: System Security Services Daemon -- metapackage Multi-Arch: foreign Homepage: https://fedorahosted.org/sssd/ Description-md5: fbc7eaa314ae2423fee9d2943b3f4223 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-ad Priority: extra Section: utils Installed-Size: 306 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.14), libdhash1 (>= 0.3.0.1), libkrb5-3 (>= 1.10.2+dfsg), libldap-2.4-2 (>= 2.4.7), libsss-idmap0 (= 1.11.5-1ubuntu3), libtalloc2 (>= 2.0.4~git20101213), libtevent0 (>= 0.9.9), samba-libs (>= 2:4.1.6+dfsg), sssd-common (= 1.11.5-1ubuntu3), sssd-ad-common (= 1.11.5-1ubuntu3), sssd-krb5-common (= 1.11.5-1ubuntu3) Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-ad_1.11.5-1ubuntu3_amd64.deb Size: 85606 MD5sum: c33eacdb4858f94957c8907357335f0a SHA1: 7bfaebf929cbfb712220f26a42b812b22e0800cb SHA256: d1cdeeeab21bb0f195b11cc9a570ae211f8a409c6ee32ddc445b7e14739bfe4e Description: System Security Services Daemon -- Active Directory back end Homepage: https://fedorahosted.org/sssd/ Description-md5: 4273ee06e2ffa001b1fbe0a4de26f278 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-ad-common Priority: extra Section: utils Installed-Size: 203 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libdhash1 (>= 0.3.0.1), libldb1 (>= 0.9.21), libpopt0 (>= 1.14), libsss-idmap0, libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9), samba-libs (>= 2:4.1.6+dfsg), sssd-common (= 1.11.5-1ubuntu3) Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-ad-common_1.11.5-1ubuntu3_amd64.deb Size: 51814 MD5sum: e85e67d0c3baa88ca708bc01f82a8de6 SHA1: bde5674b2193020186a4a8c759d0691211209b63 SHA256: 69803a713e527234df763ca124f3f3bf03d771a7f3e312d7dc507e38e29c6de9 Description: System Security Services Daemon -- PAC responder Homepage: https://fedorahosted.org/sssd/ Description-md5: dbd13e6ad445d781c84f0033e8c07ed7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-common Priority: extra Section: utils Installed-Size: 3168 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc-ares2 (>= 1.7.0), libc6 (>= 2.14), libdbus-1-3 (>= 1.1.1), libdhash1 (>= 0.3.0.1), libglib2.0-0 (>= 2.12.0), libini-config3 (>= 0.3.0.1), libkeyutils1, libkrb5-3 (>= 1.7dfsg), libldb1 (>= 0.9.21), libnl-3-200 (>= 3.2.7), libnl-route-3-200 (>= 3.2.7), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libpam0g (>= 0.99.7.1), libpcre3, libpopt0 (>= 1.14), libsss-idmap0, libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9), init-system-helpers (>= 1.13~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python, python-sss Recommends: bind9-host, libnss-sss, libpam-sss, libsss-sudo Suggests: apparmor, sssd-tools Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-common_1.11.5-1ubuntu3_amd64.deb Size: 803348 MD5sum: 7c4bbb708e0f668767ad46ad3454d613 SHA1: 5afafcad43ad76ae43a66e9031f89403ff18856f SHA256: 1875eb0dfbc4cbf4c10b22e191aa2c58fdeb5b3d778e7251901d7c85ffd20786 Description: System Security Services Daemon -- common files Homepage: https://fedorahosted.org/sssd/ Description-md5: a5ba2c9d00035681fc2f51380e1cdc52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-ipa Priority: extra Section: utils Installed-Size: 579 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.14), libdhash1 (>= 0.3.0.1), libipa-hbac0 (= 1.11.5-1ubuntu3), libkrb5-3 (>= 1.10.2+dfsg), libldap-2.4-2 (>= 2.4.7), libsss-idmap0 (= 1.11.5-1ubuntu3), libtalloc2 (>= 2.0.4~git20101213), libtevent0 (>= 0.9.9), samba-libs (>= 2:4.1.6+dfsg), sssd-common (= 1.11.5-1ubuntu3), sssd-ad-common (= 1.11.5-1ubuntu3), sssd-krb5-common (= 1.11.5-1ubuntu3) Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-ipa_1.11.5-1ubuntu3_amd64.deb Size: 166222 MD5sum: 949158b5f08573890cd196f1fb9813c9 SHA1: bbd7edecb4741437c8118c223e460a834e023276 SHA256: b73736df96dec4d5254d6c067cafed8046f93c72d200e6dc2ab3acbdd7951266 Description: System Security Services Daemon -- IPA back end Homepage: https://fedorahosted.org/sssd/ Description-md5: 2038cf62aa379855c7c1db16c87a719d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-krb5 Priority: extra Section: utils Installed-Size: 123 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.4), libdhash1 (>= 0.3.0.1), libkrb5-3 (>= 1.10.2+dfsg), sssd-common (= 1.11.5-1ubuntu3), sssd-krb5-common (= 1.11.5-1ubuntu3) Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-krb5_1.11.5-1ubuntu3_amd64.deb Size: 26412 MD5sum: 6fe06803b8db9fe5ecf5a18c740b74d5 SHA1: 02e626e7799dac551505d38379e6cee398e8b7a2 SHA256: 577e5b43794bec3f541d7c8df08275301b552366777f27a3d26fbb0ac908a108 Description: System Security Services Daemon -- Kerberos back end Homepage: https://fedorahosted.org/sssd/ Description-md5: d0051aea66e9cb824fd5a62c13ec59f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-krb5-common Priority: extra Section: utils Installed-Size: 490 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.14), libdhash1 (>= 0.3.0.1), libkrb5-3 (>= 1.11+dfsg), libpopt0 (>= 1.14), libtalloc2 (>= 2.0.4~git20101213), sssd-common (= 1.11.5-1ubuntu3) Recommends: libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-krb5-common_1.11.5-1ubuntu3_amd64.deb Size: 127772 MD5sum: c59c216a334be8fa45d73ea06a731b63 SHA1: de2406576227e9518b557000267c2b994f8812d6 SHA256: 72ddb1d03abb1aeba35c14721e633a1a4624c6e5f0b35a62bc6ae091653a30e0 Description: System Security Services Daemon -- Kerberos helpers Homepage: https://fedorahosted.org/sssd/ Description-md5: 0db76966892b1b9d99a4e13589fa35db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-ldap Priority: extra Section: utils Installed-Size: 249 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.14), libdhash1 (>= 0.3.0.1), libkrb5-3 (>= 1.10.2+dfsg), libldap-2.4-2 (>= 2.4.7), libsss-idmap0 (= 1.11.5-1ubuntu3), sssd-common (= 1.11.5-1ubuntu3), sssd-krb5-common (= 1.11.5-1ubuntu3) Recommends: ldap-utils Suggests: libsasl2-modules-ldap Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-ldap_1.11.5-1ubuntu3_amd64.deb Size: 74138 MD5sum: e678348e832065f45ff011fad1c78f15 SHA1: 38a86d1cf4910a1354afe226a60ff4a932884aee SHA256: da893372fa40229794f27d1be06136f3e20f1158f0e81c050fde2cc8d293b734 Description: System Security Services Daemon -- LDAP back end Homepage: https://fedorahosted.org/sssd/ Description-md5: 0d4cb3d2fe39a40d7b6d878a4103345c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-proxy Priority: extra Section: utils Installed-Size: 201 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libpam0g (>= 0.99.7.1), libpopt0 (>= 1.14), libtalloc2 (>= 2.0.4~git20101213), sssd-common (= 1.11.5-1ubuntu3) Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-proxy_1.11.5-1ubuntu3_amd64.deb Size: 49930 MD5sum: 02bf1fb1be36f31189cb8021bf58ecca SHA1: 7d5deb7fd2957fa0d5d9f7bc0d913d189f22a207 SHA256: 2cfef49e0ec707b61148d43fe99952f84720e80f915ce1d618b6f6b7f25cf776 Description: System Security Services Daemon -- proxy back end Homepage: https://fedorahosted.org/sssd/ Description-md5: db53c238b765b652c290236bc0c64fc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-tools Priority: extra Section: utils Installed-Size: 1054 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: amd64 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.12), libdhash1 (>= 0.3.0.1), libldb1 (>= 0.9.21), libpopt0 (>= 1.14), libselinux1 (>= 1.32), libsemanage1 (>= 2.0.3), libtalloc2 (>= 2.0.4~git20101213), sssd-common (= 1.11.5-1ubuntu3), python Filename: pool/main/s/sssd/sssd-tools_1.11.5-1ubuntu3_amd64.deb Size: 173054 MD5sum: 2cafb25599f28298865dc264e88a4900 SHA1: 06de022c0bd984bdec12b89d71d567c4f751e10e SHA256: 3db6e5fda0051030916f6c4d8fd1ab1ea49efca5f71cbce01c24d1a94ae7ee4f Description: System Security Services Daemon -- tools Homepage: https://fedorahosted.org/sssd/ Description-md5: 66903119785d144d9d3cb3400805d908 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: strace Priority: standard Section: utils Installed-Size: 492 Maintainer: Ubuntu Developers Original-Maintainer: Frederik Schüler Architecture: amd64 Version: 4.8-1ubuntu5 Depends: libc6 (>= 2.15) Filename: pool/main/s/strace/strace_4.8-1ubuntu5_amd64.deb Size: 112950 MD5sum: bbea10ae68a31912941d65c2cb807e4d SHA1: 18396d6bc592369ce134be9f78ff23c1008ab7e7 SHA256: de1eb3e97abba5f5dc13273afe5ca56ebf4de811f03aeec42568decebecd98eb Description: A system call tracer Homepage: http://sourceforge.net/projects/strace/ Description-md5: 1b3bd3036843450c0ee018b1f88d7282 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: strigi-dbg Priority: extra Section: devel Installed-Size: 9360 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: amd64 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libstreamanalyzer0 (= 0.7.8-1ubuntu2), libstreams0 (= 0.7.8-1ubuntu2), libstrigiqtdbusclient0 (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/strigi-dbg_0.7.8-1ubuntu2_amd64.deb Size: 8750826 MD5sum: 3209db2633e38f46185d32e5e8bcfaca SHA1: 9372c6818b1c42f283a11ad4f8cc95216139c8f3 SHA256: 3beb455ab087ed59a864806d54bae0efbf8b43b2efb778b9c49ac653cf522193 Description: debugging symbols for strigi Homepage: http://strigi.sourceforge.net Description-md5: 3cc550c56d3970fe1812d44fcea00ee2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: strongswan Priority: optional Section: net Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: all Version: 5.1.2-0ubuntu2 Depends: strongswan-ike Suggests: network-manager-strongswan Filename: pool/main/s/strongswan/strongswan_5.1.2-0ubuntu2_all.deb Size: 29710 MD5sum: e964c632111bb937137a4551ed4f8334 SHA1: 4539ca679dfff23e426bc61fae374e7cdb13c9d2 SHA256: effd2035bc095379334adeb347fb80f10fa2b0b4a6a9cfa3a95b72e4902163fb Description: IPsec VPN solution metapackage Homepage: http://www.strongswan.org Description-md5: 2a75a11171efab83c74306fc6401c1e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-dbg Priority: extra Section: debug Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: strongswan, libstrongswan Filename: pool/main/s/strongswan/strongswan-dbg_5.1.2-0ubuntu2_amd64.deb Size: 13036 MD5sum: fc7fcf6f6da8b9b16b94791b8e949455 SHA1: 498fa72761b2b0f77864cc82ed76e4d6ea60b0d4 SHA256: a4fbabb76f54624d0bbd35791459c25a190b6fd3a684bc53385a58761321d23f Description: strongSwan library and binaries - debugging symbols Homepage: http://www.strongswan.org Description-md5: 9aedf903d6c8fb0b813b9e5dfc9c9cf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: strongswan-ike Priority: optional Section: net Installed-Size: 5492 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ikev1, strongswan-ikev2 Provides: ike-server Depends: libc6 (>= 2.15), libstrongswan (= 5.1.2-0ubuntu2), strongswan-starter | strongswan-nm, strongswan-plugin-openssl | strongswan-plugin-gcrypt | strongswan-plugin-gmp, bsdmainutils, debianutils (>= 1.7), host, iproute2 | iproute Pre-Depends: debconf | debconf-2.0 Suggests: strongswan-plugin-agent, strongswan-plugin-certexpire, strongswan-plugin-coupling, strongswan-plugin-curl, strongswan-plugin-dnscert, strongswan-plugin-dnskey, strongswan-plugin-duplicheck, strongswan-plugin-error-notify, strongswan-plugin-ipseckey, strongswan-plugin-ldap, strongswan-plugin-led, strongswan-plugin-lookip, strongswan-plugin-ntru, strongswan-plugin-pkcs11, strongswan-plugin-radattr, strongswan-plugin-sql, strongswan-plugin-soup, strongswan-plugin-unity, strongswan-plugin-whitelist, strongswan-tnc-client, strongswan-tnc-server Conflicts: freeswan (<< 2.04-12), openswan, strongswan (<< 4.2.12-1) Filename: pool/main/s/strongswan/strongswan-ike_5.1.2-0ubuntu2_amd64.deb Size: 1198244 MD5sum: 2e54eb2127a9fd44ddb51ebb80104b3b SHA1: 3540a1e63f17759d10ee78a3dd8bba2e5191908f SHA256: 3d3d1713fb176f5c1612e9292f17c8506cfc0fa5a84861f67f9a5fa1ce2c819a Description: strongSwan Internet Key Exchange (v2) daemon Homepage: http://www.strongswan.org Description-md5: c79a031d7401b6bca17cec8cb59118bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-dhcp Priority: optional Section: net Installed-Size: 399 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: libstrongswan (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.14), libstrongswan (= 5.1.2-0ubuntu2) Breaks: libstrongswan (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-dhcp_5.1.2-0ubuntu2_amd64.deb Size: 80002 MD5sum: c4e42d5f4ca2e1f0b8ecce0c9a29eeb8 SHA1: e574b84165954f85c545a3efbdd2b42bcab39b82 SHA256: 5b961bd090c8a83c6050b9335e91b6b36409360aef4ccc35f65153a3c65f0d1e Description: strongSwan plugin for forwarding DHCP request to a server Homepage: http://www.strongswan.org Description-md5: a4423ac3e7906a382873cc91fcb48f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-md5 Priority: optional Section: net Installed-Size: 301 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.4), libstrongswan (= 5.1.2-0ubuntu2) Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-md5_5.1.2-0ubuntu2_amd64.deb Size: 48600 MD5sum: c288c2b6089354fbfa72acd837ea4d23 SHA1: 087688ec814a799460180a5dbde57908d0ffacfc SHA256: e3e549ddd606490af62b354c089dfce019e550ff7fd4ce2a4f676f1d9eedbe36 Description: strongSwan plugin for EAP-MD5 protocol handler Homepage: http://www.strongswan.org Description-md5: aaa44c78fad7a54b2e906fa6352ebb35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-mschapv2 Priority: optional Section: net Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.14), libstrongswan (= 5.1.2-0ubuntu2) Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-mschapv2_5.1.2-0ubuntu2_amd64.deb Size: 64382 MD5sum: 3f78fc8df6f0773c90f0ecf5d61bd142 SHA1: 7154e0a7d90f4c5d0b889d266a6287ef7e0e3226 SHA256: 35e31c8f00e02de3274e9d0bd6fa5fcb8e21b9e6d569b8609b55d2c1b451e6db Description: strongSwan plugin for EAP-MSCHAPv2 protocol handler Homepage: http://www.strongswan.org Description-md5: 6c0197c5e8d905da3cbdbf4f9304767d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-peap Priority: optional Section: net Installed-Size: 393 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.14), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-eap-peap_5.1.2-0ubuntu2_amd64.deb Size: 73958 MD5sum: 6e43f30982bd1c2a0e4174caad610753 SHA1: b258ee61c78de2e7cc2361cd15170a07684ff72a SHA256: 04d5a77c17dec0ae65681dc0c8398c8d3aea26a4e237d0cce44994d1596cc646 Description: strongSwan plugin for EAP-PEAP protocol handler Homepage: http://www.strongswan.org Description-md5: 185d18373352c0c10afd0db73d09fd06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-radius Priority: optional Section: net Installed-Size: 683 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.14), libstrongswan (= 5.1.2-0ubuntu2) Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-radius_5.1.2-0ubuntu2_amd64.deb Size: 158724 MD5sum: 1699a82ec9313091a4653d9c898cbc27 SHA1: 4b8eb5248a7fb3c73b89f474cc7f00cb844b5a1f SHA256: 97b8f06c755f318e7fba7ffbe77826d5afcbf0014b3773f19c8fef0d75b0983f Description: strongSwan plugin for EAP interface to a RADIUS server Homepage: http://www.strongswan.org Description-md5: 3699032811a7c1cba619098ae52311e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-tls Priority: optional Section: net Installed-Size: 279 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.2.5), libstrongswan (= 5.1.2-0ubuntu2) Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-tls_5.1.2-0ubuntu2_amd64.deb Size: 37432 MD5sum: 06d94b86dae5d826e53d6b5b8a730eba SHA1: af3e601d09cd17aedb273a7367f7115fc470d942 SHA256: 27a9eeb788f321b2a05bf552442b1e5ff14e72cbd51b9ecde113f347819eeb09 Description: strongSwan plugin for the EAP-TLS protocol handler Homepage: http://www.strongswan.org Description-md5: a16eaeb0a19b0562216cfc6ff5cb7b1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-tnc Priority: optional Section: net Installed-Size: 308 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.2.5), libstrongswan (= 5.1.2-0ubuntu2), strongswan-tnc-base Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-tnc_5.1.2-0ubuntu2_amd64.deb Size: 51172 MD5sum: 736b531d4b725609145413e72954a880 SHA1: f1a1bdb1ff23110dcf804c08421ac6b930fb33c6 SHA256: ae72f5979baa65e35a0f62717a5beee799bb1c9440d8edcfe500b497ad2470e6 Description: strongSwan plugin for the EAP-TNC protocol handler Homepage: http://www.strongswan.org Description-md5: 5c539f333dfecf8549119593af6a4ea0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-ttls Priority: optional Section: net Installed-Size: 392 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.14), libstrongswan (= 5.1.2-0ubuntu2) Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-ttls_5.1.2-0ubuntu2_amd64.deb Size: 74208 MD5sum: 08177fffb5de96038a1212c2dad2a4a2 SHA1: 7efbd129a4d6dfdabccd106b150f108b74115e02 SHA256: 5c2cd49d05588f4173fba1937dd8d11607c1f400d82379b696aefa4686aeacc9 Description: strongSwan plugin for the EAP-TTLS protocol handler Homepage: http://www.strongswan.org Description-md5: 3732fd8831e70a41ca7043c40f42e460 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-gmp Priority: optional Section: net Installed-Size: 373 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: libstrongswan (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.14), libgmp10, libstrongswan (= 5.1.2-0ubuntu2) Breaks: libstrongswan (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-gmp_5.1.2-0ubuntu2_amd64.deb Size: 62184 MD5sum: b2ae347dd2abf6ad574bcdd4f8d635dd SHA1: 57b206dd419b42efb7c846d97209aab935ac8189 SHA256: dfd2809f0b45d4013ab47e34ec4ebfecf72624c099856132bcfc85ec05ffddb4 Description: strongSwan plugin for libgmp based crypto Homepage: http://www.strongswan.org Description-md5: 179fd502d2775a4edba83daa3a7e7e4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-ldap Priority: optional Section: net Installed-Size: 241 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.14), libldap-2.4-2 (>= 2.4.7), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-ldap_5.1.2-0ubuntu2_amd64.deb Size: 24582 MD5sum: 632ab7413ec922b2c8f9be4e4ee75245 SHA1: 15d8871356380d6dc0eaf9886a3c643a5b1d5274 SHA256: b20086b0ce51ae3f0f6a7591b0c3a7fd10916a5da53a83bec2c9cbd66fa08b26 Description: strongSwan plugin for LDAP CRL fetching Homepage: http://www.strongswan.org Description-md5: b505e33466efefd903ec98a2a51b36c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-mysql Priority: optional Section: net Installed-Size: 289 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.14), libmysqlclient18 (>= 5.5.24+dfsg-1), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-mysql_5.1.2-0ubuntu2_amd64.deb Size: 37024 MD5sum: 9dee2089af3c3f8aba5acad73c35c109 SHA1: eb223a9d0a848584fff4d29a3601b47421e7c6c0 SHA256: 55618af834b853b9be7baabfca208743e1c578315b6f339efd783bce1b29f97e Description: strongSwan plugin for MySQL Homepage: http://www.strongswan.org Description-md5: b93af820dd533950a7428f3abbc4da49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-openssl Priority: optional Section: net Installed-Size: 794 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: libstrongswan (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0), libstrongswan (= 5.1.2-0ubuntu2) Breaks: libstrongswan (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-openssl_5.1.2-0ubuntu2_amd64.deb Size: 188762 MD5sum: fc8c70eb4f7c84cc15d3253f1266a127 SHA1: 3462d297149fa00f0101220e70a2171ffc834279 SHA256: 5a96202bad12f4fe6eebd208dab34869b2bd8a686587166a3a1772134992af78 Description: strongSwan plugin for OpenSSL Homepage: http://www.strongswan.org Description-md5: c9b60e3237fcd913f7a71cf3d2b86e2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-pkcs11 Priority: optional Section: net Installed-Size: 626 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: libstrongswan (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.4), libstrongswan (= 5.1.2-0ubuntu2) Breaks: libstrongswan (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-pkcs11_5.1.2-0ubuntu2_amd64.deb Size: 134770 MD5sum: d044989a5e32741117c6549a59540056 SHA1: 1b5e5ef0ed46f49a153356b95554158187e4e89c SHA256: 2f2c59e550eea6a88f42a6e31adff64460ed253c1b7fa040bd083e2008ca7d3f Description: strongSwan plugin for PKCS#11 smartcard backend Homepage: http://www.strongswan.org Description-md5: 15f07089dfd6fb39d12f5e3b38684481 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-radattr Priority: optional Section: net Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.4), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-radattr_5.1.2-0ubuntu2_amd64.deb Size: 55370 MD5sum: e2382091ca4ac0dd5051762d7a0aa9cf SHA1: 2792c7537c9a3430c11157fef41d7c6b19c35796 SHA256: d40d5af037e58dcd4d9d6ae6a7836ac0dfc1fb4aba379d8b41b82e637e59af02 Description: strongSwan plugin for custom RADIUS attribute processing Homepage: http://www.strongswan.org Description-md5: 4c0ccf1bd5185896a8df76a2824fc16a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-sql Priority: optional Section: net Installed-Size: 417 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.2.5), libstrongswan (= 5.1.2-0ubuntu2), strongswan-plugin-sqlite | strongswan-plugin-mysql Filename: pool/main/s/strongswan/strongswan-plugin-sql_5.1.2-0ubuntu2_amd64.deb Size: 84140 MD5sum: b9dba70934e2d3d9d028657b58944abf SHA1: b07de1254e35d366e8b3057661f992aa3af17662 SHA256: 4d8c50948edfbc973031c63869f054cc499feb42e657c19136fd9883bfbe113d Description: strongSwan plugin for SQL configuration and credentials Homepage: http://www.strongswan.org Description-md5: 287c63e3385aac8498ea13025e8f65cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-sqlite Priority: optional Section: net Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.2.5), libsqlite3-0 (>= 3.5.9), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-sqlite_5.1.2-0ubuntu2_amd64.deb Size: 28754 MD5sum: e25ca738fb2e6c0e0a1b07c07a5f842d SHA1: 1653e9cf992dbf25afea94fa7ecc8d7f184e6fbf SHA256: 7471f5470aa03f7c2d9b9366dfc867eacf3bf5c709cec75cd025db87de9a6e1e Description: strongSwan plugin for SQLite Homepage: http://www.strongswan.org Description-md5: 9a015dcd2bb027946de2a9d5ad8af197 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-unbound Priority: optional Section: net Installed-Size: 293 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.2.5), libldns1 (>= 1.4.0), libunbound2 (>= 1.4.1), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-unbound_5.1.2-0ubuntu2_amd64.deb Size: 42298 MD5sum: adcbcc10c83f6ecbf1b55f785407b83d SHA1: 38d7488ad277e731acfbd52e52acf381d6495a33 SHA256: 64356afd054113fb37c9466f4ed652fbbfeeae5c1605b4b00d42381901391897 Description: strongSwan plugin for DNSSEC-enabled resolver using libunbound Homepage: http://www.strongswan.org Description-md5: cac3aa577eb5dc1890d0fec329b5ba21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-pt-tls-client Priority: optional Section: net Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.3.4), libstrongswan (= 5.1.2-0ubuntu2), strongswan-tnc-base, strongswan-tnc-client (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-pt-tls-client_5.1.2-0ubuntu2_amd64.deb Size: 39098 MD5sum: 4cc2dade22fcdac81e58323f76dce4bb SHA1: dbe057850600596ab5feeb14c7466f861dbfe6f1 SHA256: b9a7988b824e4da2814f98279b5177486408a67dd9bfca209c075b607848fb14 Description: strongSwan TLS-based Posture Transport (PT) protocol client Homepage: http://www.strongswan.org Description-md5: f774634bf2e33acfc6862c7ecd158f4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-starter Priority: optional Section: net Installed-Size: 2728 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.14), libstrongswan (= 5.1.2-0ubuntu2), debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), strongswan-ike, adduser Conflicts: strongswan (<< 4.2.12-1) Filename: pool/main/s/strongswan/strongswan-starter_5.1.2-0ubuntu2_amd64.deb Size: 707712 MD5sum: d523a722bee632900b344e970aa7c9e5 SHA1: 2670ec1623b9bed47cbc3520d65065f674edfc57 SHA256: fe0059f18db22f618e1561ffc6233555d9405f70a9f76382258929ddc38b482c Description: strongSwan daemon starter and configuration file parser Homepage: http://www.strongswan.org Description-md5: 84d2b1124a17b8d68e77457ef1030d73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-tnc-base Priority: optional Section: net Installed-Size: 2271 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.14), libstrongswan (= 5.1.2-0ubuntu2), libtspi1 (>= 0.3.1), libxml2 (>= 2.7.4) Suggests: strongswan-tnc-ifmap, strongswan-tnc-pdp Filename: pool/main/s/strongswan/strongswan-tnc-base_5.1.2-0ubuntu2_amd64.deb Size: 524354 MD5sum: fb91778d9fa9fa92b5dbbf635d791aea SHA1: fd298649c18407697a0048403e61a81a8da6df29 SHA256: 4cd83bee2f6805a70f1543f3ff80a622ed48e966675822fcef047001fd9d0c51 Description: strongSwan Trusted Network Connect's (TNC) - base files Homepage: http://www.strongswan.org Description-md5: 2177e03f0d4dad88206f309f3b429600 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-tnc-client Priority: optional Section: net Installed-Size: 788 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.14), libstrongswan (= 5.1.2-0ubuntu2), strongswan-tnc-base (= 5.1.2-0ubuntu2) Suggests: strongswan-pt-tls-client Filename: pool/main/s/strongswan/strongswan-tnc-client_5.1.2-0ubuntu2_amd64.deb Size: 162260 MD5sum: c4f8f1dff6e02d93a610fe83a4cf1b0a SHA1: 8ae8a7a980d28e412740ef6419e8e9b2bf69997e SHA256: cecdcce7a9a2925df0ff7ef0c14b73c7aa383631c65d1ebf0e530b726d29403e Description: strongSwan Trusted Network Connect's (TNC) - client files Homepage: http://www.strongswan.org Description-md5: 3a13953cd4cfd8070665b78718ec5b10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-tnc-pdp Priority: optional Section: net Installed-Size: 398 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.14), libstrongswan (= 5.1.2-0ubuntu2), strongswan-tnc-base, strongswan-tnc-server (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-tnc-pdp_5.1.2-0ubuntu2_amd64.deb Size: 80034 MD5sum: 7e80a2328c083d3b1341ab32d053a59f SHA1: d6badb75a16a94fc8d9d24bb19853785e8c3488d SHA256: 67f08f9f9b46b38b94338711e1635a65927c8617bde5f0579c1f153e483d7268 Description: strongSwan plugin for Trusted Network Connect's (TNC) PDP Homepage: http://www.strongswan.org Description-md5: dafa0ef413ff0dc80cb188f8d98b073c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-tnc-server Priority: optional Section: net Installed-Size: 1350 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: amd64 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.14), libstrongswan (= 5.1.2-0ubuntu2), strongswan-tnc-base (= 5.1.2-0ubuntu2), strongswan-plugin-sqlite (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-tnc-server_5.1.2-0ubuntu2_amd64.deb Size: 307584 MD5sum: aa03ee542d36b86ccb4178f0fd6141d4 SHA1: cc9b49f6dd1c31cb9e416ae8e21c542ced1e13e9 SHA256: 4fbe06b980f40ad4fe71b2c462e178e0c943dab7abe0946e61477c201b112a60 Description: strongSwan Trusted Network Connect's (TNC) - server files Homepage: http://www.strongswan.org Description-md5: a1b89f5a884d4b6a65cee8eb8bb89b48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: subunit Priority: optional Section: devel Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: all Version: 0.0.18-0ubuntu7 Depends: python-subunit (>= 0.0.18-0ubuntu7), perl, libsubunit-perl (>= 0.0.18-0ubuntu7), python:any, python2.7:any Recommends: python-gtk2, python-junitxml Filename: pool/main/s/subunit/subunit_0.0.18-0ubuntu7_all.deb Size: 17896 MD5sum: 324616f90c2aa31d36c929df252bfd83 SHA1: b269d1ed0933bf80c9ac00f8b93eb89197d1b894 SHA256: 3eafc6c02fdc89df9de9bb940b43f1f97ef4910ae101a7622b8dd08a0a2e6eed Description: command line tools for processing Subunit streams Homepage: http://code.launchpad.net/subunit Description-md5: c4f3b986477aba30324b421056a528f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: subversion Priority: optional Section: devel Installed-Size: 1392 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Version: 1.8.8-1ubuntu3 Depends: libsvn1 (= 1.8.8-1ubuntu3), libapr1 (>= 1.4.8-2~), libaprutil1 (>= 1.2.7+dfsg), libc6 (>= 2.4), libsasl2-2 (>= 2.1.24) Suggests: subversion-tools, db5.3-util, patch Filename: pool/main/s/subversion/subversion_1.8.8-1ubuntu3_amd64.deb Size: 280928 MD5sum: 692af6e9fb390333b45fc1e82b8d2602 SHA1: 335f0306256423bdbc0ef61d5f941663b63d7065 SHA256: 3969e6d200ea08188edb309d0e24e20bc3a52ca49e333b06b91c9a0722ae1bf4 Description: Advanced version control system Homepage: http://subversion.apache.org/ Description-md5: 9fa4bc531e7ceb09fda8950bea636958 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: subversion-dbg Priority: extra Section: debug Installed-Size: 40066 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: amd64 Source: subversion Version: 1.8.8-1ubuntu3 Depends: subversion (= 1.8.8-1ubuntu3) | libsvn1 (= 1.8.8-1ubuntu3) | libapache2-mod-svn (= 1.8.8-1ubuntu3) | subversion-tools (= 1.8.8-1ubuntu3) | python-subversion (= 1.8.8-1ubuntu3) | ruby-svn (= 1.8.8-1ubuntu3) | libsvn-perl (= 1.8.8-1ubuntu3) | libsvn-java (= 1.8.8-1ubuntu3) Filename: pool/main/s/subversion/subversion-dbg_1.8.8-1ubuntu3_amd64.deb Size: 8007494 MD5sum: 7220d7f3c7af3d856f1a25bdfc1590fb SHA1: 57d14916b2bbf95bae094810c976650dc67a3a44 SHA256: 75493cd3120dfc6a275fb7bc999b2eda380fc0bb35a5fb30f07dba3b2b4ece38 Description: Debug symbols for Apache Subversion Homepage: http://subversion.apache.org/ Description-md5: 569ba1e37da7360371240eb086080640 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: subversion-tools Priority: extra Section: admin Installed-Size: 893 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: all Source: subversion Version: 1.8.8-1ubuntu3 Replaces: subversion (<< 1.7) Depends: subversion Recommends: python-subversion, libsvn-perl, libconfig-inifiles-perl, liburi-perl, exim4 | mail-transport-agent, rsync Suggests: ruby-svn, svn2cl Breaks: subversion (<< 1.7) Filename: pool/main/s/subversion/subversion-tools_1.8.8-1ubuntu3_all.deb Size: 159034 MD5sum: 967cd816b7c50e4b7fe8df9e2f0cdb25 SHA1: 14dbc692d3bcaccbdfd3a2fa0526d577c1eaf7b8 SHA256: 0a78dc538730a0f4f69efd2966c74bfac2e6fdcdbc6155dabde3b8b87c0305fb Description: Assorted tools related to Apache Subversion Homepage: http://subversion.apache.org/ Description-md5: 002bb86e31ed8d34194857631040da61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sudo Priority: important Section: admin Installed-Size: 1528 Maintainer: Ubuntu Developers Original-Maintainer: Bdale Garbee Architecture: amd64 Version: 1.8.9p5-1ubuntu1 Replaces: sudo-ldap Depends: libc6 (>= 2.15), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), libpam-modules Conflicts: sudo-ldap Filename: pool/main/s/sudo/sudo_1.8.9p5-1ubuntu1_amd64.deb Size: 341730 MD5sum: 622df6b43c28072fd1a47ed7fcbd28f2 SHA1: 354128caa875166b2af198be64a529e64ed8b081 SHA256: ac15a9810ca1b92aa5d515e542d4df5f7655e19923c47ba6d76f3ec2b2f736da Description: Provide limited super user privileges to specific users Description-md5: acd82d558698567df941afe9b1ac35df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: sunpinyin-data Priority: extra Section: utils Installed-Size: 41995 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: open-gram Version: 0.1.22+20120112-1 Filename: pool/main/o/open-gram/sunpinyin-data_0.1.22+20120112-1_amd64.deb Size: 25156170 MD5sum: 9eeea00fbf06a95a5506e2944451013d SHA1: 9658406736254427dce9d6c334a8ef693fb9210a SHA256: 9c116e806c3362586588fe36467655913c064b158f05b87c906e362c46006969 Description: Statistical language model data from open-gram Homepage: http://code.google.com/p/open-gram/ Description-md5: c614b4d9586dfb2bf36e45ce05502655 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sunpinyin-utils Priority: optional Section: utils Installed-Size: 509 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: amd64 Source: sunpinyin Version: 2.0.3+git20130507-1ubuntu1 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), python Filename: pool/main/s/sunpinyin/sunpinyin-utils_2.0.3+git20130507-1ubuntu1_amd64.deb Size: 141154 MD5sum: a142ae685cdc795f2eb16c4f809dab41 SHA1: f46723e45a2a191e5557b1224af3dd1732b761ad SHA256: 1141ba1b7591e6ac9e3e766cfbb6e7dade0eb9585b0f5ac1e21a9df4f47a37dd Description: Simplified Chinese Input Method from SUN (utilities) Homepage: http://code.google.com/p/sunpinyin Description-md5: 6adbc7c47606f3863642290190a5a2af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swift-account Priority: optional Section: net Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Replaces: swift (<< 1.13.1~rc1-0ubuntu1~) Depends: python-swift (= 1.13.1-0ubuntu1), rsync, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: swift (<< 1.13.1~rc1-0ubuntu1~) Filename: pool/main/s/swift/swift-account_1.13.1-0ubuntu1_all.deb Size: 17014 MD5sum: ebfc9ea1e47d47d98f1ae0115f9ba79e SHA1: 0b5310ccd386b546ec15f6f4f68935d0e1171ae7 SHA256: 7d76fc8a0149f95dc184667e651b1e73052eb27b24fcb2e044144d989f14dd99 Description: distributed virtual object store - account server Homepage: http://launchpad.net/swift Description-md5: 809bc8c5c556488caaf22ddd2273fd22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: swift-container Priority: optional Section: net Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Replaces: swift (<< 1.13.1~rc1-0ubuntu1~) Depends: python-swift (= 1.13.1-0ubuntu1), rsync, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: swift (<< 1.13.1~rc1-0ubuntu1~) Filename: pool/main/s/swift/swift-container_1.13.1-0ubuntu1_all.deb Size: 15744 MD5sum: ff3226387a99e52d7301653692399288 SHA1: fafaa84a080d5d12381b763a02b332bde6449a76 SHA256: f92abdd5634595feee5588071da80b368b5dd2b979ec4c94255c41ec3e91944f Description: distributed virtual object store - container server Homepage: http://launchpad.net/swift Description-md5: f8277674f07a294ae8e420393c5fd350 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: swift-doc Priority: optional Section: doc Installed-Size: 2066 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Depends: libjs-jquery Filename: pool/main/s/swift/swift-doc_1.13.1-0ubuntu1_all.deb Size: 273976 MD5sum: da8a225058290bc8cea7841a8d661052 SHA1: eb84bb851dec1c463ab8ce76441950984ffe61d6 SHA256: 22a3b6aaa6e6c412dddd08b4a87baeb7696bf6ca0b90891103ca4f1a6ea48a4b Description: distributed virtual object store - documentation Homepage: http://launchpad.net/swift Description-md5: f6e5b3e01afabbb95c5d13d2088c78b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: swift-object Priority: optional Section: net Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Replaces: swift (<< 1.13.1~rc1-0ubuntu1~) Depends: python-swift (= 1.13.1-0ubuntu1), rsync, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: swift (<< 1.13.1~rc1-0ubuntu1~) Filename: pool/main/s/swift/swift-object_1.13.1-0ubuntu1_all.deb Size: 18186 MD5sum: 6c467209e49f37a5e69478a0f4131c9b SHA1: f5001c0a64228dc4cd587583dd0151b600da15c5 SHA256: 603ed67492af6380fd9d805ee02bbed83854e26a8fe76b87584db85439d89a9c Description: distributed virtual object store - object server Homepage: http://launchpad.net/swift Description-md5: 9c7491cb7a75e1ec163d08f6da52b8a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: swift-proxy Priority: optional Section: net Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Replaces: swift (<< 1.13.1~rc1-0ubuntu1~) Depends: python-swift (= 1.13.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: swift (<< 1.13.1~rc1-0ubuntu1~) Filename: pool/main/s/swift/swift-proxy_1.13.1-0ubuntu1_all.deb Size: 18704 MD5sum: dc13763977e79774feae29171d50e954 SHA1: e73dbef82a129fb455d85091112890b0ecf7e912 SHA256: f251b3eaa87149b9247757fcdf90a6b324ce04585da0187a00e1b9d2241f47b1 Description: distributed virtual object store - proxy server Homepage: http://launchpad.net/swift Description-md5: 484efcd1f3cbf484a2fed44dcec3d88f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: swig Priority: optional Section: interpreters Installed-Size: 307 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: amd64 Source: swig2.0 Version: 2.0.11-1ubuntu2 Replaces: swig1.3 Depends: swig2.0 (>= 2.0.11-1ubuntu2) Suggests: swig-doc, swig-examples Conflicts: swig1.3 Filename: pool/main/s/swig2.0/swig_2.0.11-1ubuntu2_amd64.deb Size: 6272 MD5sum: 811b859da9a3907ec1c640e413efc6bb SHA1: 4ffa4a03f08db32264035192f8996e2493d61a6e SHA256: 1fd3b2d2f4d6f2c1c470da5de065c73af2f7f6c96cdf4e4e4308eecd790456a7 Description: Generate scripting interfaces to C/C++ code Homepage: http://www.swig.org/ Description-md5: a28fcf988d36aabc4bc2004da9763e6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swig-doc Priority: optional Section: doc Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: all Source: swig2.0 Version: 2.0.11-1ubuntu2 Replaces: swig1.3-doc Depends: swig2.0-doc (>= 2.0.0-1) Conflicts: swig1.3-doc Filename: pool/main/s/swig2.0/swig-doc_2.0.11-1ubuntu2_all.deb Size: 3144 MD5sum: a82df2524e290ea8eb90e7d72874706b SHA1: 5dba81926226181089bfc32756ca673190e5a994 SHA256: 5a7140e3a3c3c73dad78fc40718da8b623cb350e1d9c71bca4da3b16fba10710 Description: HTML documentation for SWIG Homepage: http://www.swig.org/ Description-md5: 2104d01eb9224307104354239ccb1487 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swig-examples Priority: optional Section: interpreters Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: all Source: swig2.0 Version: 2.0.11-1ubuntu2 Replaces: swig1.3-examples Depends: swig2.0-examples (>= 2.0.0-1) Conflicts: swig1.3-examples Filename: pool/main/s/swig2.0/swig-examples_2.0.11-1ubuntu2_all.deb Size: 3152 MD5sum: 5e8ef09cb02b8f6876d6ded7ea980708 SHA1: 55f562383a737e26439db5048d150c7e2b7e92f1 SHA256: 46359e4d18f2a91cecbb5057f5ba836f41dfe116bd8d1239eaa937bb06def47a Description: Examples for applications of SWIG Homepage: http://www.swig.org/ Description-md5: cdfa6a45a18616de442335dc86a086df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swig2.0 Priority: optional Section: interpreters Installed-Size: 4002 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: amd64 Version: 2.0.11-1ubuntu2 Replaces: swig (<< 2.0.4-3.1) Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libpcre3, libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Suggests: swig2.0-examples, swig2.0-doc Breaks: swig (<< 2.0.4-3.1) Filename: pool/main/s/swig2.0/swig2.0_2.0.11-1ubuntu2_amd64.deb Size: 874824 MD5sum: 21ebe4721d225a08ae0119bb451828dc SHA1: 1489cf9f2ad86586f887bd24c02d4f7b10254619 SHA256: 03a8c2de9dd2f985fb2963d9c73fd02173b820fba8e39bbdad364d46ecf3277b Description: Generate scripting interfaces to C/C++ code Homepage: http://www.swig.org/ Description-md5: 52b54965f2b28a9f8f9512151ba51620 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swig2.0-doc Priority: optional Section: doc Installed-Size: 6291 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: all Source: swig2.0 Version: 2.0.11-1ubuntu2 Filename: pool/main/s/swig2.0/swig2.0-doc_2.0.11-1ubuntu2_all.deb Size: 1892298 MD5sum: 0cdce64e6f0d025b9fc221033c71ae61 SHA1: f6553bc2db59a9cf32a3ee34ecd0b1791e36f1f3 SHA256: a1699ff7a668c3f2661e4acb61109c02f655d634f72590325339b545a5032f52 Description: HTML documentation for SWIG Homepage: http://www.swig.org/ Description-md5: 46a1a1a54da97568b9ea278e43bcfd42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swig2.0-examples Priority: optional Section: interpreters Installed-Size: 3695 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: all Source: swig2.0 Version: 2.0.11-1ubuntu2 Depends: swig2.0 Filename: pool/main/s/swig2.0/swig2.0-examples_2.0.11-1ubuntu2_all.deb Size: 718438 MD5sum: 837bf863cd5824395c8b41719caae1d0 SHA1: d8950883eff1d9d7ff4083c9fa0bbbe66fbc3f15 SHA256: 2c9af03bf029e1523f1c8a5d6b4c3814c6c2b56d7574f8883ef1e39dd2063981 Description: Examples for applications of SWIG Homepage: http://www.swig.org/ Description-md5: 3ab5c9257106ba955b283c3165f0b8c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: symlinks Priority: optional Section: utils Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Sven Joachim Architecture: amd64 Version: 1.4-1ubuntu1 Depends: libc6 (>= 2.3.4) Filename: pool/main/s/symlinks/symlinks_1.4-1ubuntu1_amd64.deb Size: 10148 MD5sum: f7f764a42d0fa201c793320bcd8adbfe SHA1: 9ddc0e61987e216eb4434c3dd9863e10a9b6d891 SHA256: 65d057ce043bdb2f1f3115a6ae2f28b6f01b4cb88d8280410d514313f8c5310d Description: scan/change symbolic links Multi-Arch: foreign Description-md5: 8b394270bf455093283fc1b107b84003 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: syslinux Priority: optional Section: utils Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Version: 3:4.05+dfsg-6+deb8u1 Replaces: syslinux-common Depends: libc6 (>= 2.8), libuuid1 (>= 2.16), syslinux-common (= 3:4.05+dfsg-6+deb8u1) Recommends: mtools Suggests: dosfstools, os-prober Breaks: syslinux-common (<< 3:4.05+dfsg-6+deb8u1) Filename: pool/main/s/syslinux/syslinux_4.05+dfsg-6+deb8u1_amd64.deb Size: 55728 MD5sum: 1a0c20697e4c4a557e7ae50eca1eb91c SHA1: c26f1a0c103055dfa09ca49bab3b2dd40de5043b SHA256: 1236dabe1d439ef9cd4f7df932e56a5f318617c669ca65cd0cc20daa43d7a738 Description: collection of boot loaders Homepage: http://syslinux.zytor.com/ Description-md5: 04cf2d13f397d774391aeddaa2f600dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: syslinux-common Priority: optional Section: utils Installed-Size: 3238 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: all Source: syslinux Version: 3:4.05+dfsg-6+deb8u1 Replaces: syslinux Recommends: libcrypt-passwdmd5-perl, libdigest-sha-perl Breaks: syslinux (<< 3:4.05+dfsg-6+deb8u1) Filename: pool/main/s/syslinux/syslinux-common_4.05+dfsg-6+deb8u1_all.deb Size: 916942 MD5sum: 878dd51ad15ad3545b30b6b7efc4d9ef SHA1: 34e2d1650cbce464b7b513a9d8bc6560b19b9f74 SHA256: 4881ee37658b4d0359511f9622e8bcc0b6b08ac9874e50c5bbbb36dd0332d692 Description: collection of boot loaders (common files) Homepage: http://syslinux.zytor.com/ Description-md5: f2b9a4fb89de957c7f351d950d7b9e0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: syslinux-legacy Priority: optional Section: utils Installed-Size: 127 Maintainer: Ubuntu Core Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Version: 2:3.63+dfsg-2ubuntu5 Depends: libc6 (>= 2.4) Recommends: mtools Filename: pool/main/s/syslinux-legacy/syslinux-legacy_3.63+dfsg-2ubuntu5_amd64.deb Size: 48038 MD5sum: 3bbe9b0562375972f70ffaf8749b2384 SHA1: 7f173733f5e9a4211736d708a502cedd7cb8f339 SHA256: fbbd2ae90e97f2b7eb6cd58717159c79eb8b0b899904870575023d1e36b68f4a Description: Bootloader for Linux/i386 using MS-DOS floppies Homepage: http://syslinux.zytor.com/ Description-md5: 0eceaa824560da0ee38193c760edbaab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: syslinux-themes-ubuntu Priority: optional Section: misc Installed-Size: 35 Maintainer: Colin Watson Architecture: amd64 Version: 8 Depends: syslinux-themes-ubuntu-trusty Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu_8_amd64.deb Size: 1624 MD5sum: 7940ff43c46942ada9c2c26bbcc8f156 SHA1: b57b0aed8e5f9a212fec328dff593b51cd6e2dcf SHA256: c7611bb04747612707191bef3ebb905a5798f90581dd7f25cef6acf162af1d39 Description: collection of boot loaders (theme metapackage) Description-md5: 4d9510247fd680ebc4f00821f6a2bdb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-oneiric Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: amd64 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-oneiric_8_amd64.deb Size: 20612 MD5sum: 173aec100ae54c11952459ac349559c7 SHA1: 95d2920751f574b9a2ddce0dc692c87116a8655c SHA256: a0910025c31e6028a2943dcbdcc8f2d16a501978c9e3ee9ee7008304ba9044a7 Description: collection of boot loaders (ubuntu-oneiric theme) Enhances: extlinux Description-md5: 3cbef668eac7c9cc813d79bc7c664064 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-precise Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: amd64 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-precise_8_amd64.deb Size: 20620 MD5sum: 74d52b6160221020a7b449d5c1e94b72 SHA1: 3cc6893cf0c6e96c06e87f42e47a0260cf51f351 SHA256: fff3706ac1273db65152468668d50e2f600186b855d964d7e9605d2901e51e6c Description: collection of boot loaders (ubuntu-precise theme) Enhances: extlinux Description-md5: a6249ff199b52ede802e9c6dbf4e159d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-quantal Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: amd64 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-quantal_8_amd64.deb Size: 20624 MD5sum: f8eebcd078a999f892bada742d98a376 SHA1: 03de7b332f2d85d30b87d3a17f26f230831af883 SHA256: cc47bc5bf4f3a3507aa99027b108a991d1fa443cc66deefaa930833fd07c7370 Description: collection of boot loaders (ubuntu-quantal theme) Enhances: extlinux Description-md5: cde822fef08112910c720011731b0d6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-raring Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: amd64 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-raring_8_amd64.deb Size: 20606 MD5sum: 11396b685552a643fa3b22c2f8c3af9f SHA1: 72c5fa1c89bba1a08ef3d2db1e8f0f126ada7d63 SHA256: 5c87a9651c53e94d76f575f109e0345a3b27beba778f24a218efea53ffa12b3f Description: collection of boot loaders (ubuntu-raring theme) Enhances: extlinux Description-md5: 37eda53ce18df04aa85cb5a2fe108e0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-saucy Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: amd64 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-saucy_8_amd64.deb Size: 20622 MD5sum: a85bcc2d56cae6bade382a13b124c8a1 SHA1: 48befde0b56908b8fbd452dcac76726cebb016be SHA256: f98b784292c1cc81e2034a7b9ed222e3ca6bab0f9777d8d83034cdaf10dfc739 Description: collection of boot loaders (ubuntu-saucy theme) Enhances: extlinux Description-md5: 5ea01ac67565fd15be64a2418651a1f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-trusty Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: amd64 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-trusty_8_amd64.deb Size: 20616 MD5sum: 5ce905183e9cf266e98a47275f12d9ab SHA1: 6c18a433f1c27ac990dfaba0403227d3647d59e1 SHA256: 644dd35165dcb57404ac53bf60806cf66ba629a44436f131d166ff930dc0d1f5 Description: collection of boot loaders (ubuntu-trusty theme) Enhances: extlinux Description-md5: 84375f23b8d7c2e4ce2c5d6981d03395 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sysstat Priority: optional Section: admin Installed-Size: 856 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: amd64 Version: 10.2.0-1 Depends: bzip2, lsb-base (>= 3.0-6), ucf (>= 2.003), debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.14), libsensors4 (>= 1:3.0.0) Recommends: cron Suggests: isag Filename: pool/main/s/sysstat/sysstat_10.2.0-1_amd64.deb Size: 282942 MD5sum: c85d3d8c3d3162c4d6b2efe1b963e0d2 SHA1: dfddad489c8c8f63cec2cc3a838fa8416fb011c4 SHA256: 7ce890e0a4469cb0488e130a881bbd47ad7f578b347fc87bb8d31a276e8c3524 Description: system performance tools for Linux Homepage: http://pagesperso-orange.fr/sebastien.godard/ Description-md5: 53969a0c693353fe5d132e483e9ab770 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: system-config-kickstart Priority: optional Section: admin Installed-Size: 1596 Maintainer: Colin Watson Architecture: all Version: 2.5.20-0ubuntu23 Depends: python:any (>= 2.7.1-0ubuntu2), python-gtk2, python-glade2, console-setup (>= 1.7ubuntu17), hwdata, iso-codes, isoquery, localechooser-data (>= 2.03ubuntu1), python-apt Filename: pool/main/s/system-config-kickstart/system-config-kickstart_2.5.20-0ubuntu23_all.deb Size: 375484 MD5sum: f03569b388c00e16d66d40b14c79835d SHA1: a4a8fa3debd8ab859fc6f159a41d08a84295c676 SHA256: 45ef007ba27a356e988f3ee84c07853905a8f551611a6982c7434d96c866f8ea Description: graphical tool for creating Kickstart files Description-md5: 574e6cf064979e6b9bc5935bc7681e86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: system-config-printer-common Priority: optional Section: python Installed-Size: 304 Maintainer: Ubuntu Core Developers Original-Maintainer: Otavio Salvador Architecture: all Source: system-config-printer Version: 1.4.3+20140219-0ubuntu2 Replaces: system-config-printer, system-config-printer-gnome (<< 1.3.11+20120807-0ubuntu7) Depends: python-cups (>= 1.9.60), python-smbc, python-dbus, python-cupshelpers Recommends: system-config-printer-udev, avahi-utils Conflicts: system-config-printer, system-config-printer-kde (<= 0.09ubuntu1) Filename: pool/main/s/system-config-printer/system-config-printer-common_1.4.3+20140219-0ubuntu2_all.deb Size: 36348 MD5sum: 391e5ffc4576fe5dbac00f03b6ce4141 SHA1: d9ff8b5665c97f619b1092f0a665200d8a8733d6 SHA256: 83d3e25d732f67c6bc248fb83adde8ae8a6d3d0ca972f5bfa817a6967c188114 Description: Printer configuration GUI Description-md5: c74f0cd3e1d13a8368c9c62f6e46ce72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: system-config-printer-gnome Priority: optional Section: python Installed-Size: 1395 Maintainer: Ubuntu Core Developers Original-Maintainer: Otavio Salvador Architecture: all Source: system-config-printer Version: 1.4.3+20140219-0ubuntu2 Replaces: system-config-printer Depends: system-config-printer-common (>= 1.3.11+20120807-0ubuntu7), python-gtk2, python-notify, python-gobject, gnome-icon-theme, python-libxml2, python-gnomekeyring, python-pycurl, gir1.2-notify-0.7, gir1.2-packagekitglib-1.0, packagekit-system-interface Conflicts: system-config-printer Filename: pool/main/s/system-config-printer/system-config-printer-gnome_1.4.3+20140219-0ubuntu2_all.deb Size: 136534 MD5sum: ac4f4bcf64d70f9eaf20345bdd1c4690 SHA1: 76e034beb20ef1246fae948bf585ace558a3e8eb SHA256: 4cf67b89dbf2560744fc62e356c3acd46528037648b333e1ccc33275a0d21f7b Description: Printer configuration GUI Description-md5: b79f41032a7f19ff0d213970778d42b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: system-config-printer-udev Priority: optional Section: python Installed-Size: 120 Maintainer: Ubuntu Core Developers Original-Maintainer: Otavio Salvador Architecture: amd64 Source: system-config-printer Version: 1.4.3+20140219-0ubuntu2 Depends: libc6 (>= 2.14), libcups2 (>= 1.6.0), libglib2.0-0 (>= 2.12.0), libudev1 (>= 183), libusb-1.0-0 (>= 2:1.0.8), python-cups (>= 1.9.55), python-dbus, python-cupshelpers Filename: pool/main/s/system-config-printer/system-config-printer-udev_1.4.3+20140219-0ubuntu2_amd64.deb Size: 18600 MD5sum: 61676c58f442cfbd3e75ddca9a98dfbe SHA1: dfaebde5a53492ca653843e411d6b83fb74a9da5 SHA256: 1bc5fb1a71c6365ebf4aec646cf680f5727b43f29c3769e857056300c0a573de Description: Printer auto-configuration facility based on udev Description-md5: 606b069a213dafd5ca999bb8f562bb40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: systemd-services Priority: standard Section: admin Installed-Size: 948 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Replaces: logind, systemd (<< 198-1), ubuntu-system-service Provides: logind Depends: libacl1 (>= 2.2.51-8), libc6 (>= 2.17), libcap2 (>= 2.10), libcgmanager0, libdbus-1-3 (>= 1.1.1), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libselinux1 (>= 2.0.65), libsystemd-daemon0 (= 204-5ubuntu20), libudev1 (>= 183), udev (>= 175-0ubuntu23), dbus, systemd | systemd-shim (>= 3) Suggests: cgmanager Conflicts: logind Breaks: systemd (<< 198-1) Filename: pool/main/s/systemd/systemd-services_204-5ubuntu20_amd64.deb Size: 196064 MD5sum: d5900a2236c1cc311ec683a870122f51 SHA1: 313cae4522c1323a48920635748ffa83ada39660 SHA256: be8ec0de7509a866180a04b55ae1d403320a200494e42d54b6ddfae50c005cdd Description: systemd runtime services Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 2b01627856e6c435a0ff31af7419b02e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: systemd-shim Priority: standard Section: admin Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Version: 6-2bzr1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3) Suggests: pm-utils Filename: pool/main/s/systemd-shim/systemd-shim_6-2bzr1_amd64.deb Size: 11448 MD5sum: 88023d8c854ad5de72b22a9e37844bad SHA1: 9acd5392d407ed03fdf5c5cfbca9c8bb2467fa6d SHA256: a186b2d2991ee75cb97d9df45b36b536f28ea3508b450fa1cd54170b15e6d99f Description: shim for systemd Description-md5: 846766299c4c08819c23c1b596c6097a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: systemtap-doc Priority: optional Section: doc Installed-Size: 3653 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: all Source: systemtap Version: 2.3-1ubuntu1 Replaces: systemtap (<< 0.0.20081220-1) Suggests: doc-base Breaks: systemtap (<< 0.0.20081220-1) Filename: pool/main/s/systemtap/systemtap-doc_2.3-1ubuntu1_all.deb Size: 1302424 MD5sum: 404a90dc113a5e5ff388187dfd2db6ab SHA1: 07bf1f2b8be3c6e9d3fb8efd0455e4e0cef03fa9 SHA256: 7d84a81a072408bd209040d93b1efae8bb5dae45a99c9bd7a216b433bc6ca05d Description: documentation and examples for SystemTap Homepage: http://sourceware.org/systemtap/ Description-md5: 423c79924d2af3ef7018de62dd2edbd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: systemtap-sdt-dev Priority: optional Section: devel Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: amd64 Source: systemtap Version: 2.3-1ubuntu1 Depends: python:any Filename: pool/main/s/systemtap/systemtap-sdt-dev_2.3-1ubuntu1_amd64.deb Size: 16420 MD5sum: fa27dd7c0e3d8034b6fb518803f4db64 SHA1: 6f3736dbf48d159d2e1d6a18999a4882bfb2e40d SHA256: 858a8afc63e01f7f4ac03c6b1816cb48bd7feeb6207b7963c4593c9c7acdc342 Description: statically defined probes development files Homepage: http://sourceware.org/systemtap/ Description-md5: ecef96f7dab2e30fd0d586168053cc6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sysv-rc Priority: required Section: admin Installed-Size: 221 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian sysvinit maintainers Architecture: all Source: sysvinit Version: 2.88dsf-41ubuntu6 Replaces: file-rc Depends: debconf (>= 0.5) | debconf-2.0, sysvinit-utils (>= 2.86.ds1-62), insserv (>> 1.12.0-10) Recommends: lsb-base (>= 3.2-14) Suggests: sysv-rc-conf, bum Conflicts: file-rc Breaks: initscripts (<< 2.86.ds1-63) Filename: pool/main/s/sysvinit/sysv-rc_2.88dsf-41ubuntu6_all.deb Size: 36528 MD5sum: 17d764af18089f8c13a339d4d4e367da SHA1: 326be45fc5d3fb30184f123538d736329ef9f7e9 SHA256: a1db4c6c3f780b9f13e635785a8b6d503232fcf9844e2139fabb78f7e473472d Description: System-V-like runlevel change mechanism Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/sysvinit Description-md5: 195f2d617082a23f37cee0f50784eef9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: sysvinit-utils Priority: required Section: admin Installed-Size: 242 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian sysvinit maintainers Architecture: amd64 Source: sysvinit Version: 2.88dsf-41ubuntu6 Replaces: last, sysvinit (<= 2.86.ds1-65) Depends: libc6 (>= 2.15), libselinux1 (>= 1.32), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Recommends: upstart (>= 0.6.3-4) Suggests: bootlogd, sash Conflicts: chkconfig (<< 11.0-79.1-2), last, sysvconfig Breaks: upstart (<< 1.5-0ubuntu5) Filename: pool/main/s/sysvinit/sysvinit-utils_2.88dsf-41ubuntu6_amd64.deb Size: 53126 MD5sum: 473f1fc59249d46cd0c95708edb5f922 SHA1: c44430d04a04ba82189d5da08f452865bf9789aa SHA256: effa15d814f14ffec9b8a7c0ee9f823779aa124deef1ec4b5495a4b437ac4d1b Description: System-V-like utilities Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/sysvinit Description-md5: 1d2bc4c9c32104729144c7578ecd30bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: t1utils Priority: optional Section: text Installed-Size: 293 Maintainer: Ubuntu Developers Original-Maintainer: C.M. Connelly Architecture: amd64 Version: 1.37-2ubuntu1 Depends: libc6 (>= 2.14) Filename: pool/main/t/t1utils/t1utils_1.37-2ubuntu1_amd64.deb Size: 132426 MD5sum: 85efaca8ba09f009c5b5dfd3251042d7 SHA1: fd559fcdf23426fad18db32e201498a1aa5a0ea3 SHA256: 064c6a3cf7100dc45a53c3d52ad048d6a80c6f5bfdc32e57b6957ffeb3cd80eb Description: Collection of simple Type 1 font manipulation programs Homepage: http://www.lcdf.org/type/ Description-md5: abf1d47b8ca1b485d148651358fc9283 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tar Essential: yes Priority: required Section: utils Installed-Size: 784 Maintainer: Ubuntu Developers Original-Maintainer: Bdale Garbee Architecture: amd64 Version: 1.27.1-1 Replaces: cpio (<< 2.4.2-39) Pre-Depends: libacl1 (>= 2.2.51-8), libc6 (>= 2.17), libselinux1 (>= 1.32) Suggests: bzip2, ncompress, xz-utils, tar-scripts Conflicts: cpio (<= 2.4.2-38) Breaks: dpkg-dev (<< 1.14.26) Filename: pool/main/t/tar/tar_1.27.1-1_amd64.deb Size: 195424 MD5sum: 1cbbf0c43cd1bde16f860c884a09671a SHA1: 39738aea1f3ccb0a54d87e5944e139f1824dfc7c SHA256: e2ad9f15b9c8b2099e6aeb18c9714ef74ac9fa61ce0c55bdba828ae006b26e06 Description: GNU version of the tar archiving utility Multi-Arch: foreign Description-md5: 48033bf96442788d1f697785773ad9bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: tar-doc Priority: optional Section: doc Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Bdale Garbee Architecture: all Version: 1.27.1-1 Depends: dpkg (>= 1.15.4) | install-info Filename: pool/main/t/tar-doc/tar-doc_1.27.1-1_all.deb Size: 185838 MD5sum: f20cce03b2ff512603a37a6b1939bb11 SHA1: 5d9b567497fbfcf927419ba0d73eca950fd17472 SHA256: 2c8d68e6e56e93a9cacb573f517dc65f9df73debb00a2e2f040f5b7f16d7cbdf Description: documentation for the tar package Description-md5: 6b9e60dc6dddd349e316e7e4fb90e3df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tasksel Priority: optional Section: admin Installed-Size: 240 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Version: 2.88ubuntu15 Depends: debconf (>= 0.5) | debconf-2.0, liblocale-gettext-perl, apt (>= 0.6.45ubuntu14), aptitude (>= 0.2.15-1), tasksel-data Pre-Depends: debconf (>= 1.5.34) | cdebconf (>= 0.106) Conflicts: base-config (<< 2.32), debconf (<< 1.4.27) Filename: pool/main/t/tasksel/tasksel_2.88ubuntu15_all.deb Size: 29670 MD5sum: 2e096657693512ae39b94f66658fe9e7 SHA1: f77144d1e6f5011d2e7abc0a8dc72c582307bd52 SHA256: 34eb609f8d5387babdc5ec96a178053297de091170ed09282a0ff2e63e71a4e0 Description: Tool for selecting tasks for installation on Debian systems Description-md5: 60dd85155b58c0e35083e848351ae922 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: tasksel-data Priority: optional Section: admin Installed-Size: 136 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: tasksel Version: 2.88ubuntu15 Depends: tasksel Recommends: laptop-detect Conflicts: tasksel (<< 2.67) Filename: pool/main/t/tasksel/tasksel-data_2.88ubuntu15_all.deb Size: 6366 MD5sum: 9e6d0f90594e051424709c3adefc14ec SHA1: 9deecf6ddac4820538b85758830868a8582b0a73 SHA256: 1430f6a12b2aec4d5b7e295f8f2bbb9bddf86882acd6a88ce0f177276f8edc07 Description: Official tasks used for installation of Debian systems Description-md5: f50423a30414db0072803e0bf842ea21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: tcl Priority: optional Section: interpreters Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Provides: tclsh Depends: tcl8.6 (>= 8.6.0-2) Conflicts: tcl-lib, tcl8.5-lib Breaks: tcl8.3 (<< 8.3.5-15), tcl8.4 (<< 8.4.20-2), tcl8.5 (<< 8.5.14-3), tcl8.6 (<< 8.6.0-2) Filename: pool/main/t/tcltk-defaults/tcl_8.6.0+6ubuntu3_amd64.deb Size: 4900 MD5sum: 61ab936085c2131c1ff81e2aed407b13 SHA1: 6791fa823489a575f3569d17cd080a17efe14577 SHA256: 965b0985d39def527f274b25ff76f0e64e2b34b51e1652ac3af2cf352db365e8 Description: Tool Command Language (default version) - shell Multi-Arch: foreign Description-md5: dc49b54190858f10215816ea3b0a62d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tcl-dev Priority: optional Section: devel Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Replaces: tcl-lib (<< 8.6.0+6ubuntu1), tk-tile Depends: tcl8.6-dev (>= 8.6.0-2), tcl Suggests: tcl-doc Conflicts: tk-tile Filename: pool/main/t/tcltk-defaults/tcl-dev_8.6.0+6ubuntu3_amd64.deb Size: 5436 MD5sum: f47218eb2178dd6df157524cb6980a3a SHA1: 7c01c489564ccb60f58d3eee8be1186de97d2ebe SHA256: a40eeb4cd29e68b9ae1910b7f1dccdd31a7ece2605a2d876d4be809de00224f8 Description: Tool Command Language (default version) - development files Multi-Arch: same Description-md5: 4374a84d90512fcd0ebb9e4048b934e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tcl-doc Priority: optional Section: doc Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: all Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Recommends: tcl8.6-doc (>= 8.6.0-2) Suggests: tcl Filename: pool/main/t/tcltk-defaults/tcl-doc_8.6.0+6ubuntu3_all.deb Size: 114754 MD5sum: 4e1500ca97a1d68b9fca4d0cd573013e SHA1: 8b69e27898d261beb32d07dc9624a4a8a5baa36a SHA256: 76570463b67b2571a6b4f6dc06d33d0ee4fa29b5f627241f468c39cc79fab4e3 Description: Tool Command Language (default version) - manual pages Description-md5: 21080369a6fe959dc4ec829a9bddb565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tcl8.5 Priority: optional Section: interpreters Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: amd64 Version: 8.5.15-2ubuntu1 Depends: libtcl8.5 (= 8.5.15-2ubuntu1), libc6 (>= 2.2.5) Suggests: tcl-tclreadline Conflicts: tcl74 (<= 7.4p3-2) Filename: pool/main/t/tcl8.5/tcl8.5_8.5.15-2ubuntu1_amd64.deb Size: 13910 MD5sum: 98c35f631ef8db6d398e3e0aed33351d SHA1: 5699ca66a15bc77f05c81dc3be315befdede1b9c SHA256: 1976a5591f805ff4c5331b6257e8c8daaadce0caedfba4a4511fe4220978aece Description: Tcl (the Tool Command Language) v8.5 - shell Multi-Arch: foreign Homepage: http://www.tcl.tk/ Description-md5: 4bf0f53ab369949bd3d71dfa098ebd0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, ubuntustudio-desktop Package: tcl8.5-dev Priority: optional Section: devel Installed-Size: 3492 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: amd64 Source: tcl8.5 Version: 8.5.15-2ubuntu1 Depends: dpkg-dev (>= 1.16.1~), libtcl8.5 (= 8.5.15-2ubuntu1), tcl8.5 Suggests: tcl8.5-doc Filename: pool/main/t/tcl8.5/tcl8.5-dev_8.5.15-2ubuntu1_amd64.deb Size: 658916 MD5sum: 6ce362485d559aec131053f8b9c28b17 SHA1: 2be0f130f35e999775cc9f6a0ae1f006e481fca1 SHA256: 74a7b439a5a7574111d1d29eeb56d65751586a884971639385342bf7df17575c Description: Tcl (the Tool Command Language) v8.5 - development files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: df1803692fba8f14e6b8ee973f51df9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tcl8.5-doc Priority: optional Section: doc Installed-Size: 1559 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: all Source: tcl8.5 Version: 8.5.15-2ubuntu1 Provides: tcldoc Suggests: tcl8.5 Conflicts: tcl8.3-doc, tcl8.4-doc, tcldoc Filename: pool/main/t/tcl8.5/tcl8.5-doc_8.5.15-2ubuntu1_all.deb Size: 940256 MD5sum: 3a2ee4e4a126cb6e422ba587dea41984 SHA1: 4b3c674f8592f4f1cedaf51036055c66523fc3fe SHA256: 0b9516ab497eac7a7be79fd715a0e7f7259fcb70cf45f7a37eef8c1774f197d0 Description: Tcl (the Tool Command Language) v8.5 - manual pages Homepage: http://www.tcl.tk/ Description-md5: 972f585b08b7a86b1219ff701b8d85b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tcl8.6 Priority: optional Section: interpreters Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Version: 8.6.1-4ubuntu1 Depends: libc6 (>= 2.2.5), libtcl8.6 (>= 8.6.0) Suggests: tcl-tclreadline Conflicts: tcl74 (<= 7.4p3-2) Filename: pool/main/t/tcl8.6/tcl8.6_8.6.1-4ubuntu1_amd64.deb Size: 14152 MD5sum: c922d51fcd84bdcc7c675e2e739e7326 SHA1: 01d81b035987d43ea68dddcc893d8593e5c0b4ec SHA256: 34fad51651dd00c3ee60d3dbbe99701bdbf0be2f3d3e00c8c8ee56913c03a37e Description: Tcl (the Tool Command Language) v8.6 - shell Multi-Arch: foreign Homepage: http://www.tcl.tk/ Description-md5: db96a3d5e5af8fae5a2b1f4b947f010b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tcl8.6-dev Priority: optional Section: devel Installed-Size: 4305 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Source: tcl8.6 Version: 8.6.1-4ubuntu1 Depends: dpkg-dev (>= 1.16.1~), zlib1g-dev, libtcl8.6 (= 8.6.1-4ubuntu1), tcl8.6 Suggests: tcl8.6-doc Filename: pool/main/t/tcl8.6/tcl8.6-dev_8.6.1-4ubuntu1_amd64.deb Size: 846644 MD5sum: b10aa4c00eb28d3581de8c30ded3867c SHA1: 3a9b6c86fe722ff6c5aa210522a585d3ab179f00 SHA256: 6c8ce170f11c094b7ad69672d9e94c582d239549dc68194ef21b77a98dd6302a Description: Tcl (the Tool Command Language) v8.6 - development files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 0a8e81d77745269a6580e4019ff2eaf9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tcl8.6-doc Priority: optional Section: doc Installed-Size: 1714 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: all Source: tcl8.6 Version: 8.6.1-4ubuntu1 Provides: tcldoc Suggests: tcl8.6 Conflicts: tcldoc Filename: pool/main/t/tcl8.6/tcl8.6-doc_8.6.1-4ubuntu1_all.deb Size: 1056404 MD5sum: 39cd39ee9853f719ff8518924262e5c4 SHA1: 6d77028f68f8b3c56603b423a1cc9097ea2d8ddc SHA256: 77d4c425b7eb09e95289efe3e5bf10b256d2154def6fcac1ccec75090f3587e7 Description: Tcl (the Tool Command Language) v8.6 - manual pages Homepage: http://www.tcl.tk/ Description-md5: 9ea712fb1f7cc048c9f9212446174371 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tcpd Priority: optional Section: net Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: amd64 Source: tcp-wrappers Version: 7.6.q-25 Replaces: libwrap0 (<< 7.6-8) Depends: libc6 (>= 2.4), libwrap0 (>= 7.6-4~) Filename: pool/main/t/tcp-wrappers/tcpd_7.6.q-25_amd64.deb Size: 22988 MD5sum: 04bf032141134b0a3bab2aff3a418c48 SHA1: f097b9a958aca997d5f124b79970588ed918d5e0 SHA256: da0fb98bf7142fb9b87c454f067aaf7f51c5991776223820022b496b00121901 Description: Wietse Venema's TCP wrapper utilities Multi-Arch: foreign Description-md5: d52fad3ffb22dc8056c1ddced83af179 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, cloud-image, openssh-server, lamp-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tcpdump Priority: standard Section: net Installed-Size: 1101 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: amd64 Version: 4.5.1-2ubuntu1 Depends: libc6 (>= 2.14), libpcap0.8 (>= 1.2.1), libssl1.0.0 (>= 1.0.0) Suggests: apparmor (>= 2.3) Filename: pool/main/t/tcpdump/tcpdump_4.5.1-2ubuntu1_amd64.deb Size: 353816 MD5sum: 2225623a7a0163956d115876292922c4 SHA1: 89e5bf2be2cc77c537fd9d2498afdedb372c38eb SHA256: 86d44047cedfb97d93d9fe22c55325a558839e4dba2ec0c1ab07d1d4bfda23a8 Description: command-line network traffic analyzer Homepage: http://www.tcpdump.org/ Description-md5: f01841bfda357d116d7ff7b7a47e8782 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: tdb-tools Priority: optional Section: utils Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: amd64 Source: tdb Version: 1.2.12-1 Depends: libc6 (>= 2.4), libtdb1 (>= 1.2.11) Filename: pool/main/t/tdb/tdb-tools_1.2.12-1_amd64.deb Size: 23228 MD5sum: de4c8d7fde171e77514f1b3fbf82cd82 SHA1: dc7a714f4d5a391d811ab3b770556392109d0ac1 SHA256: 0793b5b58dc03022c611dc19825b08d5eae457b881bec66b84c34ae25a979c83 Description: Trivial Database - bundled binaries Homepage: http://tdb.samba.org/ Description-md5: 4c671417a2674117648ec2fcd5245c12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: tdsodbc Priority: optional Section: libs Installed-Size: 450 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: freetds Version: 0.91-5 Replaces: freetds0, libct0, libct1 Depends: libc6 (>= 2.17), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), odbcinst1debian2 (>= 2.2.11-3), debconf (>= 0.5) | debconf-2.0, freetds-common Recommends: libodbc1 Conflicts: freetds0, libct0, unixodbc (<< 2.1.1-2) Breaks: libiodbc2 (<< 3.52.7-3~), odbcinst1debian2 (<< 2.2.14p2-3), unixodbc (<< 2.2.14p2-3) Filename: pool/main/f/freetds/tdsodbc_0.91-5_amd64.deb Size: 193498 MD5sum: 8c95656a911900ccda811b3b61ffc116 SHA1: 568c0bb94ca91f900f8d2ac232cc3307389efa28 SHA256: a42b4ca7af2ceaddfee37108ccaa54751f289e93a5d002640025d0711349b968 Description: ODBC driver for connecting to MS SQL and Sybase SQL servers Multi-Arch: same Homepage: http://www.freetds.org/ Description-md5: 0fecf9617c4dc2509f73a437bea0f895 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: telepathy-gabble Priority: optional Section: net Installed-Size: 1926 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Version: 0.18.2-1 Provides: telepathy-connection-manager Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.32), libgnutls26 (>= 2.12.17-0), libnice10 (>= 0.1.0), libsoup2.4-1 (>= 2.4.0), libsqlite3-0 (>= 3.5.9), libtelepathy-glib0 (>= 0.19.7), libxml2 (>= 2.7.4) Breaks: telepathy-mission-control-5 (<< 1:5.5) Filename: pool/main/t/telepathy-gabble/telepathy-gabble_0.18.2-1_amd64.deb Size: 553776 MD5sum: e8b73d89f00ef8aee74fb8514c009195 SHA1: 2f85ebf1ef5cad59d11b3e103a37289a06e5b266 SHA256: b312c29f19b1ca26dde8d7229d50faa77b2e085f31ab0d2b1fe03e7eb7ac815f Description: Jabber/XMPP connection manager Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: be6f33acbe432be29ffa09bddecfab4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telepathy-gabble-dbg Priority: extra Section: net Installed-Size: 10280 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-gabble Version: 0.18.2-1 Depends: telepathy-gabble (= 0.18.2-1) Filename: pool/main/t/telepathy-gabble/telepathy-gabble-dbg_0.18.2-1_amd64.deb Size: 8540958 MD5sum: 629542e3a2e807da189c6dee65009ef9 SHA1: d94a4478beb29d31a718cb1fcc6cfe6611b12db5 SHA256: bec8a78df2e3cbc9b27a283dbeea1138dbefbc78ad31fdb5ead4adc4a029e712 Description: Jabber/XMPP connection manager (debug symbols) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 0b694c4e40c4b2d79296747eb82e274a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: telepathy-haze Priority: optional Section: net Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Version: 0.8.0-1 Provides: telepathy-connection-manager Depends: libc6 (>= 2.14), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libpurple0 (>= 1:2.7.0), libtelepathy-glib0 (>= 0.19.1) Filename: pool/main/t/telepathy-haze/telepathy-haze_0.8.0-1_amd64.deb Size: 76024 MD5sum: b5ce1a50e64cdf25aa889d268a20c417 SHA1: f6a5e248fd532052b16e21e87ee60add587912a2 SHA256: 7196ad0db01ec70f16378d01c8525168da5f8f1d5329a46b80e0f093e608a7ee Description: Telepathy connection manager that uses libpurple Description-md5: ced066e1c97d88c67834b36aa22e47cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telepathy-haze-dbg Priority: extra Section: debug Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-haze Version: 0.8.0-1 Depends: telepathy-haze (= 0.8.0-1) Filename: pool/main/t/telepathy-haze/telepathy-haze-dbg_0.8.0-1_amd64.deb Size: 272002 MD5sum: e3160535e6cc3ac84329558094bff555 SHA1: d05042423bd57681a88ff9f3bc23c251f0be7a6d SHA256: 639008ef325633a80449385a860e914286592e5d3329a513a02a19956b12c37a Description: Telepathy connection manager that uses libpurple - debug symbols Description-md5: 003666614710ffdc50603a7f73c9d5bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: telepathy-idle Priority: optional Section: net Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Version: 0.2.0-1 Provides: telepathy-connection-manager Depends: libc6 (>= 2.4), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.32), libtelepathy-glib0 (>= 0.22) Filename: pool/main/t/telepathy-idle/telepathy-idle_0.2.0-1_amd64.deb Size: 55882 MD5sum: 020b1aab89e31e9664f99d582f191f1e SHA1: 62a4cf6746e8a891adfcfe4b3eab4791b403050a SHA256: ed0ae025c5a43d704418dc61b8d9476bb336ba65f653d20cbfc343b0161fb5b4 Description: IRC connection manager for Telepathy Homepage: http://sourceforge.net/projects/telepathy-idle Description-md5: 67fdbab1fbd4d29a5cdf58c93c2f65c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telepathy-indicator Priority: optional Section: gnome Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Ken VanDine Architecture: amd64 Version: 0.3.1+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.2.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.28.0), libgtk-3-0 (>= 3.0.0), libmessaging-menu0 (>= 12.10.0), libtelepathy-glib0 (>= 0.19.9), libunity9 (>= 3.4.6) Filename: pool/main/t/telepathy-indicator/telepathy-indicator_0.3.1+14.04.20140411-0ubuntu1_amd64.deb Size: 13890 MD5sum: 2eaf87be260bdb5391fc3c8af83ee402 SHA1: ceefe788c923e6b08a23867958c1c688d5da0661 SHA256: 606de8a471b04bf2eb32f1be6ac86e97c51d372c92e940f79f0a1c5d65501dc6 Description: Desktop service to integrate Telepathy with the messaging menu. Homepage: https://launchpad.net/telepathy-indicator Description-md5: a4b32afd6541e8d9bac93a2561aa4423 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: telepathy-logger Priority: optional Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Version: 0.8.0-3 Depends: libtelepathy-logger3 (= 0.8.0-3), libc6 (>= 2.4), libglib2.0-0 (>= 2.28), libtelepathy-glib0 (>= 0.19.2), dconf-gsettings-backend | gsettings-backend Filename: pool/main/t/telepathy-logger/telepathy-logger_0.8.0-3_amd64.deb Size: 6028 MD5sum: 8d350b949abd0bc7086d457a8bfb1655 SHA1: 9ef0af1592155456d46a831871e49fa1d6de52a1 SHA256: 9a73febfa01168c55995af96696031d7af113593e3298ede20af04822566e9b9 Description: Telepathy logger service - Daemon Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 33ed7f7be4047686973cac37c0f0a576 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telepathy-mission-control-5 Priority: optional Section: net Installed-Size: 531 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Version: 1:5.16.1-1ubuntu3 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.92), libglib2.0-0 (>= 2.35.9), libmission-control-plugins0 (= 1:5.16.1-1ubuntu3), libnm-glib4 (>= 0.7.999), libtelepathy-glib0 (>= 0.20), libupower-glib1 (>= 0.9.11), dconf-gsettings-backend | gsettings-backend Suggests: telepathy-haze, apparmor Conflicts: telepathy-mission-control Filename: pool/main/t/telepathy-mission-control-5/telepathy-mission-control-5_5.16.1-1ubuntu3_amd64.deb Size: 158578 MD5sum: d94c48bb7e134e1bd297e7a0e6b05453 SHA1: 113e238da56c44ac3b51189a06c6abcc64e33ce6 SHA256: fd86d004e75b3d01de75cc7dd2bbbac0d1a7e6784ee2b30f17b0a711e09c67d0 Description: management daemon for Telepathy real-time communication framework Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: e55b455e982023023ef7a47ea2921383 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telepathy-mission-control-5-dbg Priority: extra Section: debug Installed-Size: 655 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Source: telepathy-mission-control-5 Version: 1:5.16.1-1ubuntu3 Depends: telepathy-mission-control-5 (= 1:5.16.1-1ubuntu3) Filename: pool/main/t/telepathy-mission-control-5/telepathy-mission-control-5-dbg_5.16.1-1ubuntu3_amd64.deb Size: 495220 MD5sum: 9f131a6128c983be7bbd62402b128974 SHA1: 79d5601c99cb9cfb0482e0b26aba22369799fe45 SHA256: 8684dd41cc4365d253c2b4cd89b17ba535b642ccb4d37c756482f8f066af85dd Description: management daemon for Telepathy (debug symbols) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 01ed5c781869b5a9d61f1a43cf9f7158 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: telepathy-salut Priority: optional Section: net Installed-Size: 1172 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: amd64 Version: 0.8.1-1ubuntu3 Provides: telepathy-connection-manager Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-gobject0 (>= 0.6.22), libc6 (>= 2.14), libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libgnutls26 (>= 2.12.17-0), libsoup2.4-1 (>= 2.4.1), libsqlite3-0 (>= 3.5.9), libtelepathy-glib0 (>= 0.19.1), libuuid1 (>= 2.16), libxml2 (>= 2.7.4), avahi-daemon Filename: pool/main/t/telepathy-salut/telepathy-salut_0.8.1-1ubuntu3_amd64.deb Size: 332182 MD5sum: e7083c263297d770a7e45516d298dd9f SHA1: a812ecef371c2c0d8125c7e3fb42d0503548f0f1 SHA256: 827cdece25dc99f57c6369c23c327b714cbc69d4df9ea6918bb464e914af4b68 Description: Link-local XMPP connection manager for the Telepathy framework Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: ab783567a369d0ac62ded3363fee56ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telnet Priority: standard Section: net Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Alberto Gonzalez Iniesta Architecture: amd64 Source: netkit-telnet Version: 0.17-36build2 Replaces: netstd Provides: telnet-client Depends: netbase, libc6 (>= 2.15), libstdc++6 (>= 4.1.1) Filename: pool/main/n/netkit-telnet/telnet_0.17-36build2_amd64.deb Size: 67100 MD5sum: 3ff25cb854d0914a6075cdb13cd2c7b4 SHA1: 7ecbbc2a2b3e8c5ee38d45fcb2d529ec5a556d02 SHA256: 322e5b2c04b3fa7b436faf0768bcfa5e4685aa8f653f6ea4f0fc5f425a4086d6 Description: The telnet client Description-md5: 13e2fd93c4633bde812f94ff8e412f05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: testrepository Priority: optional Section: python Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.0.18-1ubuntu1 Depends: python-testrepository (>= 0.0.18-1ubuntu1) | python3-testrepository (>= 0.0.18-1ubuntu1), python:any Filename: pool/main/t/testrepository/testrepository_0.0.18-1ubuntu1_all.deb Size: 12240 MD5sum: 8ae32b6a8aa46e45e61daead996694a4 SHA1: 5c1b2e25e762041a8a5b5fb444205e6eb520b2e4 SHA256: bc5c525c00f10d0e7590d028db6e451080d255e354402dc608ae8eedda0c5d23 Description: Test result manager Homepage: https://pypi.python.org/pypi/testrepository Description-md5: 0c940809474b63448d71a13456f0430e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tex-common Priority: optional Section: tex Installed-Size: 1058 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Version: 4.04 Replaces: dvipdfmx, tetex-base (<= 3.0-10) Depends: debconf (>= 0.5) | debconf-2.0, ucf, debconf (>= 1.4.69) | cdebconf (>= 0.39), dpkg (>= 1.14.18) Suggests: debhelper (>= 7.0.8) Conflicts: context (<= 2011.05.18.20110627-1), tetex-base (<< 2007), texlive-common (<< 2009) Breaks: alqalam (<= 0.2-5), cm-super (<= 0.3.4-4), cm-super-minimal (<= 0.3.4-7), context-doc-nonfree (<= 2012.06.27-1), gregoriotex (<= 2.0-1.1), itrans (<= 5.3-10), jadetex (<= 3.13-12), ko.tex-base (<= 0.1.0+20071012-1), ko.tex-extra (<= 0.1.0+20071012-1), latex-cjk-chinese (<< 4.8.2+git20111216-2), latex-cjk-chinese-arphic-bkai00mp (<= 1.21+nmu1), latex-cjk-chinese-arphic-bsmi00lp (<= 1.21+nmu1), latex-cjk-chinese-arphic-gbsn00lp (<= 1.21+nmu1), latex-cjk-chinese-arphic-gkai00mp (<= 1.21+nmu1), latex-cjk-japanese-wadalab (<= 0.20050817-15), latex-cjk-thai (<= 4.8.2+git20111216-1), latex-fonts-sipa-arundina (<= 0.2.0-1), latex-fonts-thai-tlwg (<= 1:0.5.0-1), latex-sanskrit (<= 2.2-8), lmodern (<= 2.004.1-3.1), luatex (<< 0.70.1), musixtex (<= 1:0.115-2), scalable-cyrfonts-tex (<= 4.15), tex-gyre (<= 2.004.1-2.1), texlive-common (<< 2010), texlive-lang-arab (<< 2012), thailatex (<< 2013), tipa (<= 2:1.3-15) Filename: pool/main/t/tex-common/tex-common_4.04_all.deb Size: 620556 MD5sum: e214a0815a99ff4042b9d470b3e41b91 SHA1: c7e15a184a79f7c7730201e739eb3cd4fd971293 SHA256: e58035d6a0ef6ac7534540178f7629283fbaf17cadf03cfa1eaba07881f453e1 Description: common infrastructure for building and installing TeX Description-md5: 9c5d58c83f2a52331afe0a8e3cd67376 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: tex-gyre Priority: optional Section: tex Installed-Size: 18950 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Version: 2.004.2-4 Depends: tex-common (>= 3), fonts-texgyre (= 2.004.2-4) Pre-Depends: dpkg (>= 1.15.7.2) Filename: pool/main/t/tex-gyre/tex-gyre_2.004.2-4_all.deb Size: 7129792 MD5sum: d54170654531d882060d386c0469cb6e SHA1: 9d89abcb438d73dd2ea39395aed4c43bd623e2cc SHA256: 722931e09f8f14d45911d5c88693e28afcfefebc18271fe622c0f7a8e4ed1564 Description: scalable PostScript and OpenType fonts based on URW Fonts Homepage: http://www.gust.org.pl/projects/e-foundry/tex-gyre/ Description-md5: 85d66d19a3aed797f584c9b3a750a54c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texi2html Priority: optional Section: text Installed-Size: 1808 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 1.82+dfsg1-3 Depends: libtext-unidecode-perl, perl, dpkg (>= 1.15.4) | install-info Suggests: latex2html Filename: pool/main/t/texi2html/texi2html_1.82+dfsg1-3_all.deb Size: 402636 MD5sum: 7ed1bd0b769ceb4ca8ce4219d895c938 SHA1: e3494d5b084ad9feb478fc0b546225674764639e SHA256: f683d1b49075ba038c450d223d5a3d9bce9fe243e2ba4fbe61ca22ab2c195ee6 Description: Convert Texinfo files to HTML Multi-Arch: foreign Homepage: http://www.nongnu.org/texi2html/ Description-md5: 8bdc2e0c74f055b1b22258635c110919 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texinfo Priority: optional Section: text Installed-Size: 2664 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: amd64 Version: 5.2.0.dfsg.1-2 Replaces: tetex-base (<< 1.0.2+20000804-9), tetex-bin (<< 3.0) Depends: libc6 (>= 2.14), libtext-unidecode-perl, libintl-perl, libxml-libxml-perl Suggests: texlive-base, texlive-latex-base, texlive-generic-recommended, texinfo-doc-nonfree Breaks: ja-trans (<= 0.7-3.1), tetex-base (<< 3.0), tetex-bin (<< 3.0) Filename: pool/main/t/texinfo/texinfo_5.2.0.dfsg.1-2_amd64.deb Size: 560820 MD5sum: a97e30c216266e3417ec0af78724ac70 SHA1: 402e5705938d21fdbf06d8b3400cd500f8f566f8 SHA256: d79dd27fec3c10bc29b5058f1d7e7b0d79db26fb0deeac627900bb8332a727bc Description: Documentation system for on-line information and printed output Multi-Arch: foreign Description-md5: 1c7c77fec8377bb6e9c62acc5e9736a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texinfo-doc-nonfree Priority: optional Section: doc Installed-Size: 3894 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Version: 5.2.0-1 Replaces: info (<= 4.8-8), texinfo (<= 4.8-8) Recommends: info Conflicts: info (<= 4.8-8), texinfo (<= 4.8-8) Filename: pool/main/t/texinfo-doc-nonfree/texinfo-doc-nonfree_5.2.0-1_all.deb Size: 820360 MD5sum: 8732c08dd30f0e7210dd97b0512de5df SHA1: 4b4300cc5674b9553765ec49aede1b2bb3ca06e7 SHA256: 1ac6462bf85f1f1b72fff50f5c8a7ce215a583352fbae03df50a546fc0a28115 Description: texinfo and info documentation that is non-free Description-md5: 0702852174ad437db8e2786ae34b6933 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive Priority: optional Section: tex Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-latex-recommended (>= 2013.20130512), texlive-fonts-recommended (>= 2013.20130512), texlive-latex-base (>= 2013.20130512) Filename: pool/main/t/texlive-base/texlive_2013.20140215-1_all.deb Size: 14234 MD5sum: 99d5f0b96fbab61763eee08bc8bc208b SHA1: d090e0196183d5d639fbe05cc3fafe881b2db299 SHA256: 9b4edda5fdf5b4cbd3b1a8b210d26782c18cf38b2e2fe9655577f50dce854b26 Description: TeX Live: A decent selection of the TeX Live packages Homepage: http://www.tug.org/texlive/ Description-md5: 7746f703067fc491a96a5538309c5d51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-base Priority: optional Section: tex Installed-Size: 43839 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Version: 2013.20140215-1 Replaces: context (<< 2012.05.30.20121209), texlive-binaries (<< 2013), texlive-common (<< 2013), texlive-doc-en (<< 2013) Provides: dvipdfmx Depends: tex-common (>= 4.03), xdg-utils, debconf (>= 0.5) | debconf-2.0, dpkg (>= 1.14.18), luatex (>= 0.70.1), ucf, texlive-binaries (>= 2013.20130512), libpaper-utils Recommends: lmodern (>= 0.93.3) Suggests: ghostscript, gv | postscript-viewer, xpdf-reader | pdf-viewer, perl-tk Conflicts: pdfjam (<< 2013.20130512), ptex-bin (<< 2013.20130512), texlive (<< 2013.20130512), texlive-base (<< 2013.20130512), texlive-bibtex-extra (<< 2013.20130512), texlive-binaries (<< 2013.20130512), texlive-common, texlive-doc-ar (<< 2013.20130512), texlive-doc-base, texlive-doc-bg (<< 2013.20130512), texlive-doc-cs+sk (<< 2013.20130512), texlive-doc-de (<< 2013.20130512), texlive-doc-en (<< 2013.20130512), texlive-doc-es (<< 2013.20130512), texlive-doc-fi (<< 2013.20130512), texlive-doc-fr (<< 2013.20130512), texlive-doc-it (<< 2013.20130512), texlive-doc-ja (<< 2013.20130512), texlive-doc-ko (<< 2013.20130512), texlive-doc-mn (<< 2013.20130512), texlive-doc-nl (<< 2013.20130512), texlive-doc-pl (<< 2013.20130512), texlive-doc-pt (<< 2013.20130512), texlive-doc-rs (<< 2013.20130512), texlive-doc-ru (<< 2013.20130512), texlive-doc-si (<< 2013.20130512), texlive-doc-th (<< 2013.20130512), texlive-doc-tr (<< 2013.20130512), texlive-doc-uk (<< 2013.20130512), texlive-doc-vi (<< 2013.20130512), texlive-doc-zh (<< 2013.20130512), texlive-extra-utils (<< 2013.20130512), texlive-font-utils (<< 2013.20130512), texlive-fonts-extra (<< 2013.20130512), texlive-fonts-extra-doc (<< 2013.20130512), texlive-fonts-recommended (<< 2013.20130512), texlive-fonts-recommended-doc (<< 2013.20130512), texlive-formats-extra (<< 2013.20130512), texlive-full (<< 2013.20130512), texlive-games (<< 2013.20130512), texlive-generic-extra (<< 2013.20130512), texlive-generic-recommended (<< 2013.20130512), texlive-humanities (<< 2013.20130512), texlive-humanities-doc (<< 2013.20130512), texlive-lang-african (<< 2013.20130512), texlive-lang-all (<< 2013.20130512), texlive-lang-arabic (<< 2013.20130512), texlive-lang-armenian (<< 2013.20130512), texlive-lang-cjk (<< 2013.20130512), texlive-lang-croatian (<< 2013.20130512), texlive-lang-cyrillic (<< 2013.20130512), texlive-lang-czechslovak (<< 2013.20130512), texlive-lang-danish (<< 2013.20130512), texlive-lang-dutch (<< 2013.20130512), texlive-lang-english (<< 2013.20130512), texlive-lang-european (<< 2013.20130512), texlive-lang-finnish (<< 2013.20130512), texlive-lang-french (<< 2013.20130512), texlive-lang-german (<< 2013.20130512), texlive-lang-greek (<< 2013.20130512), texlive-lang-hebrew (<< 2013.20130512), texlive-lang-hungarian (<< 2013.20130512), texlive-lang-indic (<< 2013.20130512), texlive-lang-italian (<< 2013.20130512), texlive-lang-latin (<< 2013.20130512), texlive-lang-latvian (<< 2013.20130512), texlive-lang-lithuanian (<< 2013.20130512), texlive-lang-mongolian (<< 2013.20130512), texlive-lang-norwegian (<< 2013.20130512), texlive-lang-other (<< 2013.20130512), texlive-lang-polish (<< 2013.20130512), texlive-lang-portuguese (<< 2013.20130512), texlive-lang-spanish (<< 2013.20130512), texlive-lang-swedish (<< 2013.20130512), texlive-lang-tibetan (<< 2013.20130512), texlive-lang-vietnamese (<< 2013.20130512), texlive-latex-base (<< 2013.20130512), texlive-latex-base-doc (<< 2013.20130512), texlive-latex-extra (<< 2013.20130512), texlive-latex-extra-doc (<< 2013.20130512), texlive-latex-recommended (<< 2013.20130512), texlive-latex-recommended-doc (<< 2013.20130512), texlive-latex3 (<< 2013.20130512), texlive-luatex (<< 2013.20130512), texlive-math-extra (<< 2013.20130512), texlive-metapost (<< 2013.20130512), texlive-metapost-doc (<< 2013.20130512), texlive-music (<< 2013.20130512), texlive-omega (<< 2013.20130512), texlive-pictures (<< 2013.20130512), texlive-pictures-doc (<< 2013.20130512), texlive-plain-extra (<< 2013.20130512), texlive-pstricks (<< 2013.20130512), texlive-pstricks-doc (<< 2013.20130512), texlive-publishers (<< 2013.20130512), texlive-publishers-doc (<< 2013.20130512), texlive-science (<< 2013.20130512), texlive-science-doc (<< 2013.20130512), texlive-xetex (<< 2013.20130512), texpower (<< 2013.20130512), thailatex (<< 2013.20130512) Breaks: context (<< 2012.05.30.20121209) Filename: pool/main/t/texlive-base/texlive-base_2013.20140215-1_all.deb Size: 16162714 MD5sum: 1d562562174391ebac22e35fde9f786f SHA1: 32c4e0fd6f4117615b8db9e7ee3e32522142f32e SHA256: 20a7076e5eb3ce6706366226d2e05c81f3ddd49ede6bd30ec43120e91b8cb91e Description: TeX Live: Essential programs and files Homepage: http://www.tug.org/texlive/ Description-md5: 962e7229ffe1c463c82fdfd8c6b2f94e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: texlive-bibtex-extra Priority: optional Section: tex Installed-Size: 52974 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Replaces: texlive-publishers (<< 2013), texlive-publishers-doc (<< 2013) Depends: texlive-base (>= 2013.20130512), texlive-binaries (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3), texlive-latex-base (>= 2013.20130512) Breaks: biber (<< 1.8) Filename: pool/main/t/texlive-extra/texlive-bibtex-extra_2013.20140215-2_all.deb Size: 32337136 MD5sum: 3b8b6051acc1ec2da380ff88b79b793b SHA1: 065dfda3c0442be9a3bce892648ead60e419d72b SHA256: 9deaa92523fde15a67ba58cc65d321c020e451f8cc52d0a9b7ac4ed8cc9a9df2 Description: TeX Live: BibTeX additional styles Homepage: http://www.tug.org/texlive/ Description-md5: 39cfa4a94de6a212994ecc723a2a89eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-binaries Priority: optional Section: tex Installed-Size: 13466 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: amd64 Source: texlive-bin Version: 2013.20130729.30972-2build3 Replaces: jmpost, mendexk, ptex-bin, texlive-base (<< 2010), texlive-metapost (<< 2010) Provides: jmpost, makejvf, mendexk, texlive-base-bin Depends: libc6 (>= 2.14), libcairo2 (>= 1.12), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.9), libgcc1 (>= 1:4.1.1), libgraphite2-3 (>= 1.2.2), libgs9 (>= 8.61.dfsg.1), libharfbuzz0b (>= 0.9.18-3), libicu52 (>= 52~m1-1~), libkpathsea6, libpng12-0 (>= 1.2.13-4), libpoppler44 (>= 0.24.5), libptexenc1, libstdc++6 (>= 4.6), libx11-6, libxaw7, libxmu6, libxpm4, libxt6, zlib1g (>= 1:1.1.4), tex-common (>= 3), perl, dpkg (>= 1.15.4) | install-info Recommends: texlive-base, luatex, python, ruby, wish Conflicts: jmpost, makejvf, mendexk Breaks: jtex-bin, multex-bin, texlive-base (<< 2013) Filename: pool/main/t/texlive-bin/texlive-binaries_2013.20130729.30972-2build3_amd64.deb Size: 4058542 MD5sum: 01c48a7133cdb5fa0f38af9cd2190a05 SHA1: d3105ade79dfe6ec0c184ccb1013ae0b35fa4195 SHA256: 4a800b4753f7ccbe58143c276c0f6187a9bb07138b7f4b48934cb5cbbf441950 Description: Binaries for TeX Live Homepage: http://www.tug.org/texlive/ Description-md5: db16fecae335f49155c09b3c343347b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: texlive-extra-utils Priority: optional Section: tex Installed-Size: 13140 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Provides: pdfjam Depends: texlive-binaries (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3), texlive-latex-base (>= 2013.20130512), texlive-base (>= 2013.20130512), luatex, python Recommends: ruby | ruby-interpreter, texlive-latex-recommended, ghostscript Suggests: chktex, fragmaster, xindy, latexdiff, lacheck, latexmk, dvidvi, purifyeps, dvipng Filename: pool/main/t/texlive-extra/texlive-extra-utils_2013.20140215-2_all.deb Size: 10247522 MD5sum: f2f853f91363e20517f46a69fa56ad81 SHA1: 5c140611245666cb808b6e908406ce239f910943 SHA256: a91aef18332ba483db5ef572177da5906ed11b53e603541750484adf9c618255 Description: TeX Live: TeX auxiliary programs Homepage: http://www.tug.org/texlive/ Description-md5: c3fcd94d6ffafccb5b6b9340de0e29b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-font-utils Priority: optional Section: tex Installed-Size: 4172 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Replaces: texlive-binaries (<< 2013) Depends: texlive-binaries (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Recommends: ghostscript, ps2eps Suggests: t1utils, psutils Filename: pool/main/t/texlive-extra/texlive-font-utils_2013.20140215-2_all.deb Size: 1711680 MD5sum: 17c55e34d55eb52ec52a7eb351b97f94 SHA1: f9ba05423aac149f942ca2f27fe45137ecb010fe SHA256: f7377741181abeec7604a82f96760d23dd5e1ed9973e95cfb0694e241253484d Description: TeX Live: Graphics and font utilities Homepage: http://www.tug.org/texlive/ Description-md5: 938e24a68cfa627ba35eb61e0001d5e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-fonts-extra-doc Priority: optional Section: doc Installed-Size: 64490 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-extra/texlive-fonts-extra-doc_2013.20140215-2_all.deb Size: 53280346 MD5sum: ab4d976e70022df3693c60ba97221dfe SHA1: 4f11b88c2247594efab314c3ec90afc11578514f SHA256: 6f1f8f967dac93bf9db11622ea5eb21b7d22ce89f18c43b87d4c6f1dddb8e8dd Description: TeX Live: Documentation files for texlive-fonts-extra Homepage: http://www.tug.org/texlive/ Description-md5: f9855b4595b57fc990fb2a0bd72492ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-fonts-recommended Priority: optional Section: tex Installed-Size: 18433 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Replaces: texlive-latex-recommended (<< 2013.20140110) Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Recommends: tex-gyre, texlive-fonts-recommended-doc, tipa (>= 2:1.2-2.1) Filename: pool/main/t/texlive-base/texlive-fonts-recommended_2013.20140215-1_all.deb Size: 5714720 MD5sum: 768b993311561a8f41f1b8ecaa622061 SHA1: 7bf3be5baf86b60dceb5c105939a14125ce95628 SHA256: d135aa894de70625f7b6987de7cd9205f3e705aa0a2e1f3a8784c0b7c2351dea Description: TeX Live: Recommended fonts Homepage: http://www.tug.org/texlive/ Description-md5: b3f5e79dcd77ba4284be591375b2d59b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-fonts-recommended-doc Priority: optional Section: doc Installed-Size: 3392 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Replaces: texlive-latex-recommended-doc (<< 2013.20140110) Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Filename: pool/main/t/texlive-base/texlive-fonts-recommended-doc_2013.20140215-1_all.deb Size: 2730444 MD5sum: 919dd77e8ddf998bda6ca6ddf7b73f64 SHA1: 4ca3fe10ff3346b6a6bffccb58ae836e01ff2e39 SHA256: d9e01c425db681afd62887bcf6f52a14844fa5fe7522988ebc8fa128e2181564 Description: TeX Live: Documentation files for texlive-fonts-recommended Homepage: http://www.tug.org/texlive/ Description-md5: fedfa7c022515f5060512ccde356a7e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-generic-recommended Priority: optional Section: tex Installed-Size: 5696 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Filename: pool/main/t/texlive-base/texlive-generic-recommended_2013.20140215-1_all.deb Size: 2114244 MD5sum: b0dc50e0fdb498f4cd2499210d99441a SHA1: b4d174de5df44203afadf31abfaa5cb85744956a SHA256: e5702d91c779502a0d70764640b7f6a90644efbc74881c18283ecf784a59bf08 Description: TeX Live: Generic recommended packages Homepage: http://www.tug.org/texlive/ Description-md5: bd7adf926fa73548281fe2765db86351 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-humanities-doc Priority: optional Section: doc Installed-Size: 18323 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-extra/texlive-humanities-doc_2013.20140215-2_all.deb Size: 15574216 MD5sum: fb495476c397a64b0f30cde35c77e437 SHA1: b10282f037d71068495cf951f4f2f46ad9f40271 SHA256: ce7d24ae525525f20adb4e20dffb1c49c132384fdc8c9f5d9866bf437ad4fcca Description: TeX Live: Documentation files for texlive-humanities Homepage: http://www.tug.org/texlive/ Description-md5: 7970c09be020df4008b079e83da54e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-lang-german Priority: optional Section: tex Installed-Size: 31782 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-lang Version: 2013.20140215-1 Replaces: texlive-doc-de (<< 2013) Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Filename: pool/main/t/texlive-lang/texlive-lang-german_2013.20140215-1_all.deb Size: 21680704 MD5sum: 49cfc4965cfe801093827970b2189c11 SHA1: b4618e2bc1c7614c2d8e4e361bb3c3d330b88a51 SHA256: 5f0040c6e4b6773daa40e109279a9fcd8cb6263ceffbf2f836744e20755c74c0 Description: TeX Live: German Homepage: http://www.tug.org/texlive/ Description-md5: 3675a7bf5c3c998af997c543eaa2a107 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-latex-base Priority: optional Section: tex Installed-Size: 7764 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-binaries (>= 2013.20130512), texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Recommends: texlive-latex-base-doc Filename: pool/main/t/texlive-base/texlive-latex-base_2013.20140215-1_all.deb Size: 827504 MD5sum: 304749f9cd3bd15f9179f5253757b8b7 SHA1: 70d2bf10115f834e3a2487024d63960f844a07e5 SHA256: 33d9e2a0dd960748a9e777ef1b0b14c18daebfcf7beb946f5b150f5660112499 Description: TeX Live: LaTeX fundamental packages Homepage: http://www.tug.org/texlive/ Description-md5: 3890dc2d6efbf7bf362a47f4d48c73e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: texlive-latex-base-doc Priority: optional Section: doc Installed-Size: 42725 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-base/texlive-latex-base-doc_2013.20140215-1_all.deb Size: 37065204 MD5sum: bbe07fc77c1286493924d4fe8dfcc667 SHA1: 062c8644224c894bc20c34537a6b40692d02cca0 SHA256: 8831b7865b4e1b20c67440f3f226f08e4c9171d083815ecfe1b0a6614efc3f59 Description: TeX Live: Documentation files for texlive-latex-base Homepage: http://www.tug.org/texlive/ Description-md5: a2182d8729e262aa2d6b925e5a5f6802 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: texlive-latex-extra Priority: optional Section: tex Installed-Size: 36576 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Replaces: texlive-pictures (<< 2013), texlive-publishers (<< 2013.20140215) Depends: luatex, dpkg (>= 1.14.18), tex-common (>= 3), preview-latex-style, texlive-binaries (>= 2013.20130512), texlive-base (>= 2013.20130512), texlive-latex-recommended (>= 2013.20130512), texlive-pictures (>= 2013.20130512) Recommends: texlive-latex-extra-doc Suggests: libfile-which-perl, python-pygments Breaks: texlive-publishers (<< 2013.20140215) Filename: pool/main/t/texlive-extra/texlive-latex-extra_2013.20140215-2_all.deb Size: 7285794 MD5sum: 157194baf4396d722adb459c85f73dd4 SHA1: efd481ac9a3f745c4670ed47143c59aba6d09b2c SHA256: edb3eacd417ca363c4942f551e2fc59524c0c6c5cbe5c2b875a480ed2b9eadcb Description: TeX Live: LaTeX additional packages Homepage: http://www.tug.org/texlive/ Description-md5: c925993df4154860644076e9ed084e51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-latex-extra-doc Priority: optional Section: doc Installed-Size: 431232 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Replaces: texlive-pictures-doc (<< 2013), texlive-publishers-doc (<< 2013.20140215) Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Breaks: texlive-publishers-doc (<< 2013.20140215) Filename: pool/main/t/texlive-extra/texlive-latex-extra-doc_2013.20140215-2_all.deb Size: 316824150 MD5sum: a8573d5e6cb2c651704f3e36a4d2cc85 SHA1: 4037bc5062e026b6d7176b629d097d1675de01aa SHA256: 06193c43ae4c310bf4d5d45f57913eadf1a9097e7fb3789da132660d01958353 Description: TeX Live: Documentation files for texlive-latex-extra Homepage: http://www.tug.org/texlive/ Description-md5: 5ac6c6c9a0c0f6fddfd3fc657d09c522 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-latex-recommended Priority: optional Section: tex Installed-Size: 17575 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Provides: texlive-latex3 Depends: texlive-latex-base (>= 2013.20130512), texlive-binaries (>= 2013.20130512), texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Recommends: texlive-latex-recommended-doc, latex-xcolor (>= 2.09), latex-beamer (>= 3.06.dfsg.1-0.1), prosper (>= 1.00.4+cvs.2006.10.22) Filename: pool/main/t/texlive-base/texlive-latex-recommended_2013.20140215-1_all.deb Size: 7267854 MD5sum: c2795f6628c012644d9f039a347140c4 SHA1: ab603d4c21b9d3a8f04dd15e7980c827226ed28f SHA256: a06e8a4e9f23b2cc74a568d575468e58c7d6a3dfe64a3d721a6e5551123346bb Description: TeX Live: LaTeX recommended packages Homepage: http://www.tug.org/texlive/ Description-md5: 42ea58ff4415e0b3d156e44245e23201 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-latex-recommended-doc Priority: optional Section: doc Installed-Size: 39424 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-base/texlive-latex-recommended-doc_2013.20140215-1_all.deb Size: 34963242 MD5sum: 7199eee882c2c1ef5e4700ad69e95178 SHA1: 60ac17b376f5fcdca3f798e0aad219d546a56bd3 SHA256: 1ad9786dc608728ba68908128cdb196e60d37bf148d17b1ccf73c688867c6c58 Description: TeX Live: Documentation files for texlive-latex-recommended Homepage: http://www.tug.org/texlive/ Description-md5: baa8291c3456557519fe1fb86023b2b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-luatex Priority: optional Section: tex Installed-Size: 14839 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-base (>= 2013.20130512), texlive-binaries (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3), luatex (>= 0.70.1) Filename: pool/main/t/texlive-base/texlive-luatex_2013.20140215-1_all.deb Size: 8204172 MD5sum: 94591d20dfa91b322353bf142be8d5d1 SHA1: 781bb0af08852b039bb412225cbfa355b158328f SHA256: 207b971c1e731b92b8661ddf7f8ae5d6ab6172467cb6cba60daebfc26354526a Description: TeX Live: LuaTeX packages Homepage: http://www.tug.org/texlive/ Description-md5: 2a53e6d76573b205fe37f3cbe3db909d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: texlive-math-extra Priority: optional Section: tex Installed-Size: 18211 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: texlive-latex-base (>= 2013.20130512), texlive-base (>= 2013.20130512), texlive-fonts-recommended (>= 2013.20130512), texlive-binaries (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-extra/texlive-math-extra_2013.20140215-2_all.deb Size: 13849388 MD5sum: 9e6472775f36cda8c0788daa3f35d707 SHA1: f52454d096aef1f30cfd2afdf8666c531b150bdf SHA256: d2ec40a185fdae0a05ff5e2733fc7eefb1e07b642ee20ec61294a583e0e55923 Description: TeX Live: Mathematics packages Homepage: http://www.tug.org/texlive/ Description-md5: 1fe549c10b47a44cf3ea233259c3245c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-metapost-doc Priority: optional Section: doc Installed-Size: 30947 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Filename: pool/main/t/texlive-base/texlive-metapost-doc_2013.20140215-1_all.deb Size: 26573892 MD5sum: 0d3bdd337d40a342ec6577019b7c510d SHA1: 33bf3f4f4ac1b0855f92745328c8d724ccdb5fdc SHA256: 49fa169dbddfefcda3f43813cd4dfa0e24c1814c6f072f230b4abeef400b425f Description: TeX Live: Documentation files for texlive-metapost Homepage: http://www.tug.org/texlive/ Description-md5: 0dc5a30b89d031677eb32d4cf8381caf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-pictures Priority: optional Section: tex Installed-Size: 10581 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3), luatex, texlive-binaries (>= 2013.20130512) Recommends: texlive-pictures-doc, ruby | ruby-interpreter, tk, pgf (>= 1.01.dfsg.1) Suggests: dot2tex, libtcltk-ruby, texlive-latex-extra Filename: pool/main/t/texlive-base/texlive-pictures_2013.20140215-1_all.deb Size: 2414096 MD5sum: 4dd5fd512c9e0a4007e34d70c58f2edc SHA1: dd09100bb2022b7ccdad774c91639c337ee790b2 SHA256: 241f043e7670eb5c043b25941fb9292022023546ac77a7dba4392a00b973b719 Description: TeX Live: Graphics, pictures, diagrams Homepage: http://www.tug.org/texlive/ Description-md5: 1a8132be4cbac7c2a760fb20b641c7e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-pictures-doc Priority: optional Section: doc Installed-Size: 66317 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-base/texlive-pictures-doc_2013.20140215-1_all.deb Size: 57993830 MD5sum: 013f2bb871e3cdcc52feff2326cfa4ea SHA1: cd4470e3a267255f3299a68ce14262d06a5bfd44 SHA256: f71b4b66605ae0ca0ed50b469d9360ec04cfe3e7fcf2b72541d047906ac140d7 Description: TeX Live: Documentation files for texlive-pictures Homepage: http://www.tug.org/texlive/ Description-md5: a0c7d5a93d0c18d832e97c0ffdb9ab11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-pstricks Priority: optional Section: tex Installed-Size: 34436 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: texlive-base (>= 2013.20130512), texlive-generic-recommended (>= 2013.20130512), pgf, dpkg (>= 1.14.18), tex-common (>= 3), texlive-binaries (>= 2013.20130512) Recommends: ps2eps, texlive-font-utils, texlive-extra-utils, texlive-pstricks-doc Filename: pool/main/t/texlive-extra/texlive-pstricks_2013.20140215-2_all.deb Size: 26174772 MD5sum: 479ec3137daa21472fb0b7d0051eb001 SHA1: da1a949a2d7b3274e0b5e9051b4f15cd7cbb0990 SHA256: cbd7a3a76789539f399e48306dfe9fb075daaf80baffaede909d6afebde06bc7 Description: TeX Live: PSTricks Homepage: http://www.tug.org/texlive/ Description-md5: 1801069bac9fceb389a3b38ad0eb3d68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-pstricks-doc Priority: optional Section: doc Installed-Size: 95971 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-extra/texlive-pstricks-doc_2013.20140215-2_all.deb Size: 76685714 MD5sum: f4362847ee47ef6919a22974c30977b5 SHA1: 53064e1369be09317402afe02c3518b8ca49f1b5 SHA256: 9306672df1c0ad8cb00e60b484e0170609154576e73c24dc1457887dc3e5ac70 Description: TeX Live: Documentation files for texlive-pstricks Homepage: http://www.tug.org/texlive/ Description-md5: 2c5c80fc3fb2ae00432cbaaa63e07f92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-publishers-doc Priority: optional Section: doc Installed-Size: 90617 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Replaces: texlive-latex-extra-doc (<< 2013.20140215) Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Breaks: texlive-latex-extra-doc (<< 2013.20140215) Filename: pool/main/t/texlive-extra/texlive-publishers-doc_2013.20140215-2_all.deb Size: 68582702 MD5sum: 38ab5e0f0fc3c55f251cf01937bee03e SHA1: bf71a27825638c96ec727931f51536e2e62fbf66 SHA256: 2ef330207a7db0597edc95b31290027dfd8d07e0972f4c2dc6f517761d2b825b Description: TeX Live: Documentation files for texlive-publishers Homepage: http://www.tug.org/texlive/ Description-md5: 7b34b5c428ad0074c9975b2426b66d35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-science-doc Priority: optional Section: doc Installed-Size: 25387 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Filename: pool/main/t/texlive-extra/texlive-science-doc_2013.20140215-2_all.deb Size: 21909830 MD5sum: bed6ba62e83e57e124c8e9a5a4a335fc SHA1: ae6e2326c3fae8d0e8d787d358f8a98d1012d0dd SHA256: c778027c532f3220ee50475284f687e7fe209db273a0c1d6fd1e334bc1d2c110 Description: TeX Live: Documentation files for texlive-science Homepage: http://www.tug.org/texlive/ Description-md5: 40b9eb4c24f330a9b0e3d1690cfd256a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tftp-hpa Priority: extra Section: net Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Version: 5.2-7ubuntu3 Depends: libc6 (>= 2.15) Conflicts: tftp Filename: pool/main/t/tftp-hpa/tftp-hpa_5.2-7ubuntu3_amd64.deb Size: 17720 MD5sum: 5673b0fc76540fe2c540e5fe62c125cf SHA1: 7e0159904988d7bbeb6741a3e788207fd45a0f2b SHA256: f1b31caccf2cbd60b869294e4a21544d3adc9a47551af926face5d3411db4a21 Description: HPA's tftp client Homepage: http://www.kernel.org/pub/software/network/tftp/ Description-md5: 89598997fd5ff3458fe7d72bdc41cb10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tftpd-hpa Priority: extra Section: net Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Source: tftp-hpa Version: 5.2-7ubuntu3 Depends: debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.15), libwrap0 (>= 7.6-4~), adduser, lsb-base (>= 4.1+Debian3) Suggests: syslinux-common Conflicts: atftpd, tftpd Filename: pool/main/t/tftp-hpa/tftpd-hpa_5.2-7ubuntu3_amd64.deb Size: 38210 MD5sum: c6e13bdf52d8385abbeda7be26d8348e SHA1: b5ebda5c3d771548fc52f324e488684f602c694b SHA256: 8c013027e9bff0fb7117c84a7a16711cb021a50c41bb689ae6e047a1fd216aff Description: HPA's tftp server Homepage: http://www.kernel.org/pub/software/network/tftp/ Description-md5: d73c6815bace5ace463cb884370cdecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tgt Priority: optional Section: net Installed-Size: 650 Maintainer: Ubuntu Developers Original-Maintainer: Debian Kernel Team Architecture: amd64 Version: 1:1.0.43-0ubuntu4 Depends: libc6 (>= 2.15), libibverbs1 (>= 1.1.2), librados2, librbd1, librdmacm1 (>= 1.0.16), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libconfig-general-perl, sg3-utils Filename: pool/main/t/tgt/tgt_1.0.43-0ubuntu4_amd64.deb Size: 202470 MD5sum: 9ad752342cd593ad81dd70502da93639 SHA1: 7d1c52e2e4a9cbdc78eba2339a57c8e080b6b92c SHA256: 2bacccf15b88432de0c0ddfd7c784e815d9aa30f8a1fdfc0b860f88db1c7b1b5 Description: Linux SCSI target user-space tools Homepage: http://stgt.berlios.de/ Description-md5: 8e479676c938395c781f504f196e4ff9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: thermald Priority: optional Section: admin Installed-Size: 498 Maintainer: Colin King Architecture: amd64 Version: 1.1~rc2-11 Depends: libc6 (>= 2.14), libdbus-glib-1-2 (>= 0.88), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libstdc++6 (>= 4.2.1), libxml2 (>= 2.7.4), init-system-helpers (>= 1.13~) Filename: pool/main/t/thermald/thermald_1.1~rc2-11_amd64.deb Size: 145634 MD5sum: 43dc9559f9730893019d2eb49bb20834 SHA1: 8f1a4d64de4cfbbb34a19eb730a1240e076f7242 SHA256: be1fd83e9e9a4b75e5e33d4aa62e8191a8ba972b4ab75624014d551726b25256 Description: Thermal monitoring and controlling daemon Homepage: https://github.com/01org/thermal_daemon Description-md5: b3957326598bfd50927c3294bfbabcc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: thunderbird Priority: optional Section: mail Installed-Size: 64480 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Version: 1:24.4.0+build1-0ubuntu1 Replaces: mozilla-thunderbird, thunderbird-gnome-support (<= 3.0.4+nobinonly-0ubuntu3) Provides: mail-reader Depends: libasound2 (>= 1.0.16), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.15), libcairo2 (>= 1.2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.9), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), libstartup-notification0 (>= 0.8), libstdc++6 (>= 4.6), libx11-6, libxext6, libxrender1, libxt6 Recommends: myspell-en-us | hunspell-dictionary | myspell-dictionary, libcanberra0, libdbusmenu-glib4, libdbusmenu-gtk4 Suggests: thunderbird-gnome-support, ttf-lyx Conflicts: mozilla-thunderbird Breaks: thunderbird-couchdb, thunderbird-gnome-support (<= 3.0.4+nobinonly-0ubuntu3) Filename: pool/main/t/thunderbird/thunderbird_24.4.0+build1-0ubuntu1_amd64.deb Size: 23810094 MD5sum: 91ea570a2663d3549531f1315204baec SHA1: e3ce04a07840b830c739fcda5df857b71754d5f6 SHA256: fe87a867958c92a3696393b5c360cf483c906c32932bac511235e81945dd4617 Description: Email, RSS and newsgroup client with integrated spam filter Description-md5: 68ed1001b79d708ad48956a0c129114d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: thunderbird-dbg Priority: optional Section: devel Installed-Size: 1102815 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (= 1:24.4.0+build1-0ubuntu1) Filename: pool/main/t/thunderbird/thunderbird-dbg_24.4.0+build1-0ubuntu1_amd64.deb Size: 266525798 MD5sum: 7dec1e68b9c101448b775c2febb16e81 SHA1: e8cb882d1266dedf193eae3ded0e1c1cdb8cf285 SHA256: 20c22a8151cacb66ceefc9a7327b19c2dc29d052c7f0f0be0e5d78494f38b59f Description: Email, RSS and newsgroup client - debug symbols Description-md5: 7ce9b689254d265f0d4bac6602f7a80f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-dev Priority: optional Section: mail Installed-Size: 39366 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (= 1:24.4.0+build1-0ubuntu1) Filename: pool/main/t/thunderbird/thunderbird-dev_24.4.0+build1-0ubuntu1_amd64.deb Size: 5507408 MD5sum: 650ffbedd0e22a88ea01777cebfe16b1 SHA1: 4c22ff50a883fafdca044c4bffe2b5f83036f5f1 SHA256: 738a66e7512c55ab998f83de52e2c771c209add74cdab9b3e26bda56788f3ac5 Description: Email, RSS and newsgroup client - development files Description-md5: 564ab343c2a2437ef25d94273b1364c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-globalmenu Priority: optional Section: web Installed-Size: 131 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird Filename: pool/main/t/thunderbird/thunderbird-globalmenu_24.4.0+build1-0ubuntu1_amd64.deb Size: 8204 MD5sum: cdb7013ad1929b310cd76110f04ee18d SHA1: 07cec8d72283821306ec541f4ea6bf42de2e5a52 SHA256: a3f736e224029c61b53cc88808d0616dbfc3a394020ee5bd4ef788baf9e97ff2 Description: Email, RSS and newsgroup client (transitional package) Description-md5: fd9f1e7c342cabe4de92af51203c160c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-gnome-support Priority: optional Section: mail Installed-Size: 131 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (= 1:24.4.0+build1-0ubuntu1), libmessaging-menu0, libunity9, libnotify4 | libnotify1 Filename: pool/main/t/thunderbird/thunderbird-gnome-support_24.4.0+build1-0ubuntu1_amd64.deb Size: 8534 MD5sum: cbf3c5e0a26d64cd302df1a0666ef820 SHA1: 97548e7680f60e4257333b9a1774fa66f107bc2d SHA256: 5146a2d2449892181c317d2cd91d32becd7fefad67dfc26e486553849130990d Description: Email, RSS and newsgroup client - GNOME support Description-md5: c6d750d99833a5a122c5bdc00727ccaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: thunderbird-gnome-support-dbg Priority: optional Section: devel Installed-Size: 131 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-gnome-support, thunderbird-dbg Filename: pool/main/t/thunderbird/thunderbird-gnome-support-dbg_24.4.0+build1-0ubuntu1_amd64.deb Size: 8222 MD5sum: 9d5b05e2cfaadcbe0a7f6f6e42fe215f SHA1: b8e82e0dca149dcf3d72ff681052b0ab55ee5249 SHA256: ce214a99f0d90a39ff40af6df71a9f26829b5e943c13113d80ff3da31c5c0b3b Description: Email, RSS and newsgroup client - transitional package Description-md5: 8fa21aaf02af881ccc7c33f8559e6531 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-af Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Filename: pool/main/t/thunderbird/thunderbird-locale-af_24.4.0+build1-0ubuntu1_amd64.deb Size: 11326 MD5sum: fadb4bfc7b76ab719e45a0a2354dc97c SHA1: 0d81479dffa63f99b2512f1bae6dd95168dd1a4f SHA256: ad21e3cdd2db0cb8d1a021c7dcc97cf82eca0bdb3e066d713d393f4c86ed86b7 Description: Transitional package for unavailable language Description-md5: ea537565996c4e6bdc82ab0905f0cc41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ar Priority: optional Section: web Installed-Size: 620 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ar_24.4.0+build1-0ubuntu1_amd64.deb Size: 396636 MD5sum: c00cae9a8a4ad66fb2f88b98adf73f97 SHA1: 8582bfb955c737bc9ef137ca0406048701158fda SHA256: c0bab365dfcf3444acb4bcffb5c157f2c905bf77ddbb8026c53967c914dd68e1 Description: Arabic language pack for Thunderbird Description-md5: d96ba05b4c6d792e4d18138bbe13c392 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ast Priority: optional Section: web Installed-Size: 540 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ast_24.4.0+build1-0ubuntu1_amd64.deb Size: 309484 MD5sum: 5d1065b72a12e82d717fe41df22c813e SHA1: f9a12dfd1f5219a32f163a44ad3f4914296912e9 SHA256: fa6c174d9a49c7ab57adc8d93d1343cdd2cb90bc2f1ef32495dc56295f9dfe5a Description: Asturian language pack for Thunderbird Description-md5: 92f2ba3ec6c41ae12a73493e796843ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-be Priority: optional Section: web Installed-Size: 585 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-be_24.4.0+build1-0ubuntu1_amd64.deb Size: 356170 MD5sum: 44442b71445ca0ddf2e483b5dc5b63c7 SHA1: 74c40fa7cd6aa184c15edf9d742a28a11008e2b8 SHA256: 327c57254f1a908b817677433ede52a963d991933cd6c94a2e9945e9a25fca9a Description: Belarusian language pack for Thunderbird Description-md5: 8756cfe43a521c52482335cca067362b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-bg Priority: optional Section: web Installed-Size: 648 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-bg_24.4.0+build1-0ubuntu1_amd64.deb Size: 424800 MD5sum: e0d2887d330da46e23ef7ca8b07f1908 SHA1: 2dc51ad077cd8a3820afa897e6d69502cc3e362c SHA256: 46c0fc3c95dc29adcb639d4769b2c4fdb208f5f1c6b8dd3665eee8113465b44d Description: Bulgarian language pack for Thunderbird Description-md5: 3e822e5a8f71fa6f62fc77651434d4ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-bn Priority: optional Section: web Installed-Size: 699 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-bn_24.4.0+build1-0ubuntu1_amd64.deb Size: 472920 MD5sum: 24d5239e8ddf310d4805bce4f4e3c66d SHA1: 47f1fb1024a336882a8e31a2ea2640b95e42b9e6 SHA256: 2f69115242026fe74bc8672823cb79f4e2195fd722b543789153b0f14d8d995e Description: Bengali language pack for Thunderbird Description-md5: 0bf8b67f425d98dd586086e87a5b8652 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-bn-bd Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-bn Filename: pool/main/t/thunderbird/thunderbird-locale-bn-bd_24.4.0+build1-0ubuntu1_all.deb Size: 11308 MD5sum: d0a744ced0d9b9d60dc5aef4930dc791 SHA1: a55cfb1baa18cbd86580729e6df7e091972f0133 SHA256: a40be67ed552d22d1f7a14b1ab28b36347ce2e2379743f7836ca781c84511db7 Description: Transitional Bengali language pack for Thunderbird Description-md5: 0c16945c4912b109ad1b9a29c3548a82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-br Priority: optional Section: web Installed-Size: 595 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-br_24.4.0+build1-0ubuntu1_amd64.deb Size: 367788 MD5sum: d291635bfd76231f144ebc8d3c610fc4 SHA1: 00d07e6e94883c4252675f5ee6bab5b3f6bb3496 SHA256: 35297a039ac8d4ec941ce6c56d90f0216e5fda6043c1dd3975a07201af5179f0 Description: Breton language pack for Thunderbird Description-md5: 2194e389142c81481fa76aea7d4ab293 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ca Priority: optional Section: mail Installed-Size: 596 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ca_24.4.0+build1-0ubuntu1_amd64.deb Size: 370870 MD5sum: 6d393a5e7339bb9300b1825c22ea2d9d SHA1: 1a9c204a01d09c1c8e3045da23e63abec552c6dd SHA256: 2232ef8c266aadced307e1d414ab417b363aa00bceb94a5eac9cc4b2498c1add Description: Catalan; Valencian language pack for Thunderbird Description-md5: 9006308ddf098014382109f3256de904 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-cs Priority: optional Section: mail Installed-Size: 598 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-cs_24.4.0+build1-0ubuntu1_amd64.deb Size: 371276 MD5sum: 86942381965539051188e3841d6985ed SHA1: 0d523d281002398bae98bacd8a376955f46821d1 SHA256: 6565aaecd4302da8bb9d83ac6fccacfc2948f68c6da924a96f1a0dc4aefbcf93 Description: Czech language pack for Thunderbird Description-md5: e198ec1b38b4ba8d21c5ae2dd707b886 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-da Priority: optional Section: mail Installed-Size: 573 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-da_24.4.0+build1-0ubuntu1_amd64.deb Size: 348010 MD5sum: 555431ca26e9c0da8715d4e504f1b0ff SHA1: 2e9bf5691cfebf033035edd7cb1ef84833c13dbb SHA256: fc9d06540f009cf9f1f1d627a77512420cdf5f811ba7d78588877dc98e135267 Description: Danish language pack for Thunderbird Description-md5: bb23b7f1451e9101c6235d786e38632a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-de Priority: optional Section: mail Installed-Size: 574 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-de_24.4.0+build1-0ubuntu1_amd64.deb Size: 348944 MD5sum: b396fbe8a9155de8d57137fafc46d218 SHA1: 65729a2ee638b5cf9131e57c6d8c97f3d30149e8 SHA256: e815e6a38e1f16b712f33d84c1668d4b41eba4917192d5e4a020a0d097acd947 Description: German language pack for Thunderbird Description-md5: f1c4ac98e42d37c8f95db725d4288fa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-el Priority: optional Section: mail Installed-Size: 628 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-el_24.4.0+build1-0ubuntu1_amd64.deb Size: 404202 MD5sum: 71eabf6e9883bde6e94019d8eeafb15b SHA1: c39bdddc34b70d0ca084d63c8032bf4f304d72b0 SHA256: cdd008fb1dbde9dc5b3bb6f509e13821cff395c9360261b00942c3759fadc0c8 Description: Greek language pack for Thunderbird Description-md5: c4f1bc5322928b4103bc8085cd013d7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-en Priority: optional Section: web Installed-Size: 568 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-en_24.4.0+build1-0ubuntu1_amd64.deb Size: 335532 MD5sum: ac79b81ebfed81ad8abf0267a501e99c SHA1: 69bf8ffc365934d7d46b9122fcb37fad27bc287d SHA256: b009d209fb5ff1fdc41f2971cd596e298cdcf0746e466aedddd0590c854a8892 Description: English language pack for Thunderbird Description-md5: 7997849dd0bc6d27079f5d5768aba1a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-en-gb Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-en Filename: pool/main/t/thunderbird/thunderbird-locale-en-gb_24.4.0+build1-0ubuntu1_all.deb Size: 11300 MD5sum: 675fb69723b02d43d4d3481e19e43fac SHA1: b8f65254875c1489e88af8a712bc3751d7585fba SHA256: 255ee2649beab131a65863ad9a8509e5e4a6d0cc108c7231f4e12b1d2bc8aa7f Description: Transitional English language pack for Thunderbird Description-md5: 8b798a69e82f8ec9cbb2e264601a14fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-en-us Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-en Filename: pool/main/t/thunderbird/thunderbird-locale-en-us_24.4.0+build1-0ubuntu1_all.deb Size: 11302 MD5sum: d4080581745b11029f42dad9b18e9297 SHA1: b8b1afe911737723a1ce888ec8ad1a4ddf2b8d41 SHA256: 35d83d56d51b3fa899b0b695c5398714f9e8eae0fb9839f7fbe8a57d0ed67c93 Description: Transitional English language pack for Thunderbird Description-md5: 8b798a69e82f8ec9cbb2e264601a14fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-es Priority: optional Section: web Installed-Size: 967 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-es_24.4.0+build1-0ubuntu1_amd64.deb Size: 643442 MD5sum: 83891c620f1eb962277a7105680c353f SHA1: cd061bea7e62d90ea383b581cf5a6d7958f611c6 SHA256: 6f653ba502adf86b6dfcc5299f6ca6ea7c51e5902c0d5dbdb6d16a41debbcb72 Description: Spanish; Castilian language pack for Thunderbird Description-md5: ab065a0e196a1b25a631117f0de3a536 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-es-ar Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-es Filename: pool/main/t/thunderbird/thunderbird-locale-es-ar_24.4.0+build1-0ubuntu1_all.deb Size: 11298 MD5sum: 8d0817b42053605536066521fe13ec72 SHA1: 9e68f8083311f937c7fa963aeef2f62fd329f1e5 SHA256: 3889fb936057ac21a0091e81ce12ede916be65beffa602e772de01c5e5cd3529 Description: Transitional Spanish language pack for Thunderbird Description-md5: 869be0de01bca3f9f7bda73441e37a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-es-es Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-es Filename: pool/main/t/thunderbird/thunderbird-locale-es-es_24.4.0+build1-0ubuntu1_all.deb Size: 11296 MD5sum: 4fbef7341d2b718a7d6c7636fef4c2f8 SHA1: 1bca1db0baafc5043db69332910284877b149868 SHA256: 5b6e6fe332049d2c3b1ec3a78aa49e329890f911d5944e1cb1f94469ecaae9e6 Description: Transitional Spanish language pack for Thunderbird Description-md5: 869be0de01bca3f9f7bda73441e37a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-et Priority: optional Section: web Installed-Size: 587 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-et_24.4.0+build1-0ubuntu1_amd64.deb Size: 362634 MD5sum: 030d3206024b581162d29da8f5449098 SHA1: 570f452eea2c72536012c81ec55e49c3aa4b7e47 SHA256: 2c96ea1228b02a3d505a612dedce253381609e982910a694730fdccf66c17adc Description: Estonian language pack for Thunderbird Description-md5: 2b6b91b02a69b25fea719c79eebba322 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-eu Priority: optional Section: mail Installed-Size: 583 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-eu_24.4.0+build1-0ubuntu1_amd64.deb Size: 356912 MD5sum: eb603aa2424b1152cd6932aa454216ab SHA1: 76b88310406d5f7d1ad137d7c22f5c90bdf67199 SHA256: 7c251058d694bc9dd9ab109afb78203c5c6a6330ca17177e4ee99b52c3919f24 Description: Basque language pack for Thunderbird Description-md5: 51f658816bee1ac3d847f34fcfdf4715 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-fi Priority: optional Section: mail Installed-Size: 586 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-fi_24.4.0+build1-0ubuntu1_amd64.deb Size: 362138 MD5sum: f7f3376865c907e6d1cb809370d9844c SHA1: 26ef9fb7d86de4551561fa3b1b77909625101839 SHA256: 6b8468e0caf90ab62711bd5f34a440c7c325ad7ceb05ad4b1fb3f71be8705429 Description: Finnish language pack for Thunderbird Description-md5: d743f35cb2d00c0ac0c74faffc80c429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-fr Priority: optional Section: mail Installed-Size: 594 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-fr_24.4.0+build1-0ubuntu1_amd64.deb Size: 369310 MD5sum: abef8ca2ed03a1d51a3b83497fa3e33f SHA1: 7c2d68b94c6c13e4f36a39a9ab8e44afd4408d4d SHA256: 1341a783c1ff9427f33d4f45f9eaf37788a4bb3c779a33e2f020a219378f698f Description: French language pack for Thunderbird Description-md5: 5db38e54534997cea7feaf6bc2c20b8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-fy Priority: optional Section: web Installed-Size: 591 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-fy_24.4.0+build1-0ubuntu1_amd64.deb Size: 359780 MD5sum: f419849af9c7cb450dd499fedecf604f SHA1: 0f83bca9482e4fe27965b3d71fae44acbf8ab00a SHA256: 2c16037150be301bd7f297bfe1da48457de346a4fbb779c9481ee6185407e5f4 Description: Western Frisian language pack for Thunderbird Description-md5: 9a3ffaa5a603e7a65baffad8847604e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-fy-nl Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-fy Filename: pool/main/t/thunderbird/thunderbird-locale-fy-nl_24.4.0+build1-0ubuntu1_all.deb Size: 11312 MD5sum: 0b5d19d3ef9ddd33df8e528dfddfd736 SHA1: cf8fac69b0f92421772f35ae2f0869c89aa65acb SHA256: 11bd79479ca4925ac7bdf2eb4f8a7dc19deb8e10dc6424170ff124d7610a9fe7 Description: Transitional Western Frisian language pack for Thunderbird Description-md5: 23b74cfcdfb3628d4066cc962572e125 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ga Priority: optional Section: web Installed-Size: 598 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ga_24.4.0+build1-0ubuntu1_amd64.deb Size: 371464 MD5sum: 88cca84924fc5c0d0c401f1eb0724141 SHA1: 96fe2a4cdf5400d02626e6bbbbd0920668637def SHA256: 6039bc1844ede9e9e981c1cf8e79c9a340561e3186a63f17d4fab445af053e49 Description: Irish language pack for Thunderbird Description-md5: e0d162b3129190a72af5f015ea0da420 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ga-ie Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-ga Filename: pool/main/t/thunderbird/thunderbird-locale-ga-ie_24.4.0+build1-0ubuntu1_all.deb Size: 11300 MD5sum: 7f517cedd2e0ed74eb0aaa2221eca537 SHA1: f1a788a05308728e890e4fb2722ee10963d2e5be SHA256: 549a866773bf4a9acce2d47bcc99f9af3a16ea0f00c1d31cd43c4a1a3eabc5b0 Description: Transitional Irish language pack for Thunderbird Description-md5: 8fe591c24be723b831c5e4f9b5e007ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-gd Priority: optional Section: web Installed-Size: 604 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-gd_24.4.0+build1-0ubuntu1_amd64.deb Size: 379868 MD5sum: 099ec49cda9e3c1b43155f6bc31f9fbc SHA1: 242fcb7c9a13ec9b86ca3bb9d9bbabbf17e75a44 SHA256: f06157518c862420c38be351dc999dbd853f72dc6200726bcad71076a0cd1983 Description: Gaelic; Scottish Gaelic language pack for Thunderbird Description-md5: 6b59819c452353ff33df8a3be2c3e44d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-gl Priority: optional Section: web Installed-Size: 592 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-gl_24.4.0+build1-0ubuntu1_amd64.deb Size: 366564 MD5sum: 06ec5de655769158887c17d0faf3f3dc SHA1: 2cb8b2fa44fd91c1f82285e5075cf55a28cf506c SHA256: 4d0a199067cbd77ffa95cbead3ed0e9c43e643f4336991ac7d410295a4c8797a Description: Galician language pack for Thunderbird Description-md5: 026fea6c9c8a4a96d94ffb2e1bae174c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-he Priority: optional Section: web Installed-Size: 623 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-he_24.4.0+build1-0ubuntu1_amd64.deb Size: 398042 MD5sum: 0a96dc8a3a10cabcd16cad3666ed7ccb SHA1: 31b32ac692f0b142eab130515e34b823cff8bad5 SHA256: f304ab05a92bfec1ff03d790ff14aecd63027532279e5f548d35308d4522b5f2 Description: Hebrew language pack for Thunderbird Description-md5: c8ed17478d53bb50cbaa8eb4cb0e8b82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-hr Priority: optional Section: web Installed-Size: 590 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-hr_24.4.0+build1-0ubuntu1_amd64.deb Size: 362180 MD5sum: 548137ef9d6bb2a2c7197e9b290050b1 SHA1: 5c56a91d414eb2d6a0397b8d9d81b60b074737ba SHA256: b9df119792004778c963e62b23b9886cc8de6fb99c6519cdf3746c2bdfc798fd Description: Croatian language pack for Thunderbird Description-md5: 5c80407d37a30ddb4abbbb4dd98e774c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-hu Priority: optional Section: mail Installed-Size: 602 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-hu_24.4.0+build1-0ubuntu1_amd64.deb Size: 380212 MD5sum: 20e36f60f6d080179a4a7d30cfcda392 SHA1: 0182db851458b54144959fb423024517dd0ad5b1 SHA256: ba19eda3e3b450d9a4e5f1c1fbfdc8924593ab605d857e1ecbc338f4529e91e8 Description: Hungarian language pack for Thunderbird Description-md5: 26678637379ab77ab5fffe5f5e37f780 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-hy Priority: optional Section: web Installed-Size: 642 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-hy_24.4.0+build1-0ubuntu1_amd64.deb Size: 413050 MD5sum: 11694e1b4ba82c9bb12db3b31e634a0b SHA1: 9d4324a1a5dbf4dfc269f980cdfe8b937e2af50f SHA256: b29186b5796dbce3b5dda4e0d028b5626d4591849a76a064a75f2c5014401e92 Description: Armenian language pack for Thunderbird Description-md5: 05d72dd80a860558e11187eccde80f8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-id Priority: optional Section: web Installed-Size: 614 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-id_24.4.0+build1-0ubuntu1_amd64.deb Size: 393790 MD5sum: 6ef9fb3b63ca5e0475bcb6c0cdbee028 SHA1: 983cffa469a708f0ad5f651535197153e634ea56 SHA256: 1dcd6a0ce34743acb0a35b945925f835008e7915d4eb025fe48264fcae001829 Description: Indonesian language pack for Thunderbird Description-md5: a52ad96e5ee31add246fa95d4f17195e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-is Priority: optional Section: web Installed-Size: 592 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-is_24.4.0+build1-0ubuntu1_amd64.deb Size: 364524 MD5sum: c7e99a3ba8f235f0913ad33fa72bd26d SHA1: 02d6ff97c21c3b328e28ca297c312388bd6e96d7 SHA256: b5180f882a9f31f484f060bc7b78b36b0c034a4bd579b582cbbe6885305c259a Description: Icelandic language pack for Thunderbird Description-md5: 65ee5905905a537c9ddb5361dddad2f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-it Priority: optional Section: mail Installed-Size: 523 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-it_24.4.0+build1-0ubuntu1_amd64.deb Size: 295060 MD5sum: aef0f9499db27325f8cbf252b4c15041 SHA1: 1919e0591f9244377c8477b217b141f4d060fc6e SHA256: 0a57668efe220804c79576916b2a81eef15904d3e067269250605131c95716f6 Description: Italian language pack for Thunderbird Description-md5: 6f1c6153ae6ef20c28214fb6a47e2e2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ja Priority: optional Section: mail Installed-Size: 640 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ja_24.4.0+build1-0ubuntu1_amd64.deb Size: 416408 MD5sum: 0c8ef8382dbbccd8d847838372973ced SHA1: ce84bd383bc649eba92dc6c74ef4e0050766fa43 SHA256: bfcac71d9fe551710c82bffbf5a7eae10210103a95651ce9ae403e5c970eca27 Description: Japanese language pack for Thunderbird Description-md5: 05672037e38088a01fc61323aaea5f68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ka Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Filename: pool/main/t/thunderbird/thunderbird-locale-ka_24.4.0+build1-0ubuntu1_amd64.deb Size: 11322 MD5sum: 8fe716504d73c13d1891281702661acd SHA1: c880f512bab46bc8dff8ca03ebd6ffb5ed7c5fb1 SHA256: cd498b1674c650d8584c6a49ebb8b78d19c5cb79e2926fe0fc3d3c5533de684a Description: Transitional package for unavailable language Description-md5: ea537565996c4e6bdc82ab0905f0cc41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ko Priority: optional Section: web Installed-Size: 602 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ko_24.4.0+build1-0ubuntu1_amd64.deb Size: 368298 MD5sum: 4731e9ad8227bef8d692941de9fd56f4 SHA1: ee3baa210a79c141604b5da9863359c75a317699 SHA256: 175cf3272807100c173b685821603c0aba924c251db8c2e6a7accc9d1cb8a9fe Description: Korean language pack for Thunderbird Description-md5: 05bbef35aca99bece02f588c8a5075ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-lt Priority: optional Section: web Installed-Size: 607 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-lt_24.4.0+build1-0ubuntu1_amd64.deb Size: 382406 MD5sum: 5017843be674edcb361dc0761c4dca7d SHA1: b2978b4cff7357decd21c044a8a535e994a80549 SHA256: 972e94e623ff8a589e061d124808b6400e1725f5a6250fb2843423b8f4c1db4b Description: Lithuanian language pack for Thunderbird Description-md5: d61674e56f26ac9b99db185babee7546 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-mk Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Filename: pool/main/t/thunderbird/thunderbird-locale-mk_24.4.0+build1-0ubuntu1_amd64.deb Size: 11324 MD5sum: d09758830cbca9d63f5e2d93b7714751 SHA1: a41fbce92543b400a878a630220ca7ffca166265 SHA256: a2470f0b150685dfaeaf249f3c1bc5dd0ca3fdeb3fb32e05f7b6e368675187ce Description: Transitional package for unavailable language Description-md5: ea537565996c4e6bdc82ab0905f0cc41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-nb Priority: optional Section: web Installed-Size: 586 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-nb_24.4.0+build1-0ubuntu1_amd64.deb Size: 354040 MD5sum: 550881335f2c98990808722c817c9b00 SHA1: f92ba07981f7eb150e77624d62376bba943aa388 SHA256: c1fb27da04529c05417fc5ce083976250b9f7cfb17c70eb7e7503aaa286cdd87 Description: Bokmål, Norwegian; Norwegian Bokmål language pack for Thunderbird Description-md5: 998f9bca7c066364e2d15ae6be3582d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-nb-no Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-nb Filename: pool/main/t/thunderbird/thunderbird-locale-nb-no_24.4.0+build1-0ubuntu1_all.deb Size: 11308 MD5sum: b7c88ec1a5e176841a2695c4abf8905b SHA1: 7268892d4882e3b11e2424be9b99b694bfbc7ec0 SHA256: d35129078c23c036e8d61c2536dd01d4a86873e6f2757e083762ea8d41b9ce74 Description: Transitional Norwegian language pack for Thunderbird Description-md5: 07372224f7f0b015610d5e3f1ac02f57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-nl Priority: optional Section: mail Installed-Size: 584 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-nl_24.4.0+build1-0ubuntu1_amd64.deb Size: 357204 MD5sum: 508fd2ec60985b12be293b979b997790 SHA1: bc88e37fcd20f92c915191bd92d052fb8c514063 SHA256: 349e0a6972089be254378407e73eaa242d7827572fdd1293dd6637f8a2a1bf3f Description: Dutch; Flemish language pack for Thunderbird Description-md5: 38b6c5b7280a72183935b75b6ea9c7d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-nn Priority: optional Section: web Installed-Size: 586 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-nn_24.4.0+build1-0ubuntu1_amd64.deb Size: 355802 MD5sum: 94e239efb9c01412235c42e8237479e1 SHA1: d9ed154bf3b98597da5b604cb07c9ab22b254bfd SHA256: 09495b41d4b7bd55b454014fc7eb14b4c347a70381c4d321630ef41293e60dde Description: Norwegian Nynorsk; Nynorsk, Norwegian language pack for Thunderbird Description-md5: 7ecbfd7db64a82a92733abd49e768933 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-nn-no Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-nn Filename: pool/main/t/thunderbird/thunderbird-locale-nn-no_24.4.0+build1-0ubuntu1_all.deb Size: 11308 MD5sum: f29998d442433bdaf7f5fdcd54f44c27 SHA1: 90814a9992ddd5da2568384dcf64228397f6dee4 SHA256: 23b6ee0ca1e87d7625c83f0a5e67a534441ca622747d328e2d318349e513dd95 Description: Transitional Norwegian language pack for Thunderbird Description-md5: 07372224f7f0b015610d5e3f1ac02f57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pa Priority: optional Section: web Installed-Size: 671 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-pa_24.4.0+build1-0ubuntu1_amd64.deb Size: 444600 MD5sum: 3800d6ecc90b53b585fb5c616813d470 SHA1: 51b7540bd68a4fd39109a38f6f1f4eff3e34f86c SHA256: 07108058ff544036cc239427ce7f45300a94a14e2c6332855f37f54109e0986b Description: Panjabi; Punjabi language pack for Thunderbird Description-md5: aa580bb579804ee591e35edbbcd80dd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pa-in Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-pa Filename: pool/main/t/thunderbird/thunderbird-locale-pa-in_24.4.0+build1-0ubuntu1_all.deb Size: 11300 MD5sum: 88895476b2caedfe4f398cae5f4a3712 SHA1: 3104e2629467a7deffb5c59aa878764afbef44a3 SHA256: e1aeca8c20134bc00aa04a7fd35730613c45354eeb04895ccb202633f38bd263 Description: Transitional Punjabi language pack for Thunderbird Description-md5: 4f99cd6218380edd7d419f7754843622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pl Priority: optional Section: mail Installed-Size: 568 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-pl_24.4.0+build1-0ubuntu1_amd64.deb Size: 341216 MD5sum: 2accaeec549991367c582192864c5ccd SHA1: 8cf723878c990a118e1b1debfbf666bf3bc4b8ec SHA256: 59d445729a9368e0931cd831e19fcbf6293bb92e06989b9b6faef6520569060e Description: Polish language pack for Thunderbird Description-md5: 777da132688522a52205b5a6710bcbb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pt Priority: optional Section: web Installed-Size: 1024 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-pt_24.4.0+build1-0ubuntu1_amd64.deb Size: 707564 MD5sum: f05b565adcda9f0930f1a7ebff999a57 SHA1: 933cfc743f21900fc9abb19fe56ed2289480fb49 SHA256: a185c3713143c25f751be863553be0889eebd05012fa283b21f5ea9e03b91183 Description: Portuguese language pack for Thunderbird Description-md5: 0f8fb3826c29ae6bf3c3ad16d863b999 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pt-br Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-pt Filename: pool/main/t/thunderbird/thunderbird-locale-pt-br_24.4.0+build1-0ubuntu1_all.deb Size: 11304 MD5sum: d0a2d17456fb97dbff7d765bcabb0ac0 SHA1: 2e82dd1f505e7676d1162fd6d27885a83489b466 SHA256: f60fe9ebe5ec0ebbf410d40caef00c11dc05b13583e51e706f0bfb063a05132b Description: Transitional Portugese language pack for Thunderbird Description-md5: 063e3e81e79a8a10b5ce2b5d56714bfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pt-pt Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-pt Filename: pool/main/t/thunderbird/thunderbird-locale-pt-pt_24.4.0+build1-0ubuntu1_all.deb Size: 11306 MD5sum: 0792ef30cb6083a1f9148073977673ae SHA1: beddee9bd122566775282a946267ed207250b470 SHA256: a0c646d52b455b4c14954ea7e3205f0aeb1a77f8b82ca92610cfa682bb68fee7 Description: Transitional Portugese language pack for Thunderbird Description-md5: 063e3e81e79a8a10b5ce2b5d56714bfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-rm Priority: optional Section: web Installed-Size: 601 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-rm_24.4.0+build1-0ubuntu1_amd64.deb Size: 372016 MD5sum: db1c6f42bd6ca9d65c6490679ecaa339 SHA1: be16230d9fd8844ad721c402c972d90034df5ac5 SHA256: 4425c32962c2d13872a04d927a2a051ee86203aa96c702c1ba38e8325481ed77 Description: Romansh language pack for Thunderbird Description-md5: f2a8824b85c8ee2df8aadd456d6c4fc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ro Priority: optional Section: web Installed-Size: 658 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ro_24.4.0+build1-0ubuntu1_amd64.deb Size: 434598 MD5sum: a0742f8d81f37d66ad6629020b432959 SHA1: a3c5ec969c5c0de6b7ec66dbdcb7470d45a23e03 SHA256: c56c166523e9e3b004ba02b5de3f54781b786d8b8b056aefcfb2105b1ff3d0ef Description: Romanian language pack for Thunderbird Description-md5: 601aaa5358b7fd9504dbc00b274ce9a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ru Priority: optional Section: mail Installed-Size: 590 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ru_24.4.0+build1-0ubuntu1_amd64.deb Size: 363444 MD5sum: fd1d46b8d523bc86bab80c65428f1886 SHA1: a68505013f59753269596642fb62352bb4e670b5 SHA256: e314298aa104036d927a4ba406690f7732e0c0ef03c4e5c69cd2c430bab0d3f1 Description: Russian language pack for Thunderbird Description-md5: 3470b329081e3274f2b1fc7e8f4836e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-si Priority: optional Section: web Installed-Size: 674 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-si_24.4.0+build1-0ubuntu1_amd64.deb Size: 450814 MD5sum: d0e8120443bca080d933ed24be710ca1 SHA1: f7e934e4499f7c0ed5b6867960f43069f137c8dd SHA256: ada9d7eca29ab649ba3207589d52c9651ee688dee3e2b26cd474e7cd658c866c Description: Sinhala; Sinhalese language pack for Thunderbird Description-md5: a4cd27280668af50e718cc1dde325010 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sk Priority: optional Section: mail Installed-Size: 607 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-sk_24.4.0+build1-0ubuntu1_amd64.deb Size: 379980 MD5sum: df56d78b17e3615a34cf904d3a2ad438 SHA1: 678d3c9ffde26f4b270fa0128786fd35a2f701fc SHA256: 026d6e06854f990b2a4ecbcf99f8cd60fd3712f509a3ad801ee4dd832e16339f Description: Slovak language pack for Thunderbird Description-md5: 58fb9ea30d8ddc2d169728c65570981b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sl Priority: optional Section: mail Installed-Size: 596 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-sl_24.4.0+build1-0ubuntu1_amd64.deb Size: 363314 MD5sum: 7b90c928fe4e58f20fa7445c77664e24 SHA1: 5cfff9d0da5b0254bc5cccc25456f3967bf3f7f3 SHA256: d6a95826c9929dc74a8790528a4d314de36e67f7279f7609d6be50525a117e55 Description: Slovenian language pack for Thunderbird Description-md5: daf76ecbb038c82b1a007e0b97441b83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sq Priority: optional Section: web Installed-Size: 598 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-sq_24.4.0+build1-0ubuntu1_amd64.deb Size: 373976 MD5sum: 519b390bd402e920cd4e50ad88e714e3 SHA1: e0a1878b37dc35b004e015fdb991d2063a00a6d6 SHA256: fe8668e8ae3a6bc417152a623137c78ac756d8dade25ac4b3d23bf928808fc24 Description: Albanian language pack for Thunderbird Description-md5: aabacf80f66ab70ed6865d5c62e6feb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sr Priority: optional Section: web Installed-Size: 684 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-sr_24.4.0+build1-0ubuntu1_amd64.deb Size: 459762 MD5sum: 013cefd89195deca905bebf26ca9bb5d SHA1: 0f5e0cf098207666f61c9e20ddb48843d59be363 SHA256: b98577b64a6aee5b22cf4505ff32b1c11d25b224f9fa33f8cc176b39c04bca1c Description: Serbian language pack for Thunderbird Description-md5: 4903f7be134fb1cd72c302ad46ab3471 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sv Priority: optional Section: web Installed-Size: 589 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-sv_24.4.0+build1-0ubuntu1_amd64.deb Size: 357728 MD5sum: 69ee1451eee4a0841bc2231144b0658b SHA1: dc6a8e3086c872c40535c0ef4f82aba587a8d142 SHA256: 0be477fdd359cbe18d1b7f4f5589f8a84c04b65206243746afcd3f73a5643841 Description: Swedish language pack for Thunderbird Description-md5: 8a2405d1e465215d08f22ca0d7b53025 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sv-se Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-sv Filename: pool/main/t/thunderbird/thunderbird-locale-sv-se_24.4.0+build1-0ubuntu1_all.deb Size: 11304 MD5sum: 6c968be6072761cb82cf9a815c148ab5 SHA1: b2575a583cb79777fb9feddd6492d4acf88912c5 SHA256: ae3392e6d499ca940dc5421a94e304d270a037d58ef74fcf5dbffd650d5779a8 Description: Transitional Swedish language pack for Thunderbird Description-md5: f013f0346741e935e8ea6e28d12bc5e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ta Priority: optional Section: web Installed-Size: 697 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ta_24.4.0+build1-0ubuntu1_amd64.deb Size: 470890 MD5sum: 7da914dd66f72c55c3a4667ac02d9f42 SHA1: ec05b64a3e541b43dbf3c151821464888aa7f516 SHA256: 2d1fba7b504ba687b313825a279b9b1fa0390b36aa476407e27c4a4a3ae3956d Description: Tamil language pack for Thunderbird Description-md5: 1b6aec33cedf10be3259b193e9b12265 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ta-lk Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-ta Filename: pool/main/t/thunderbird/thunderbird-locale-ta-lk_24.4.0+build1-0ubuntu1_all.deb Size: 11294 MD5sum: 1f91ceb45f1587b76db7cf040f2fa06b SHA1: 19062b8c542e236f9a710c32999abd25612933fb SHA256: 0816001a838d8c9a5d5ff441e237293a0ee1e69a73fbbd9fc19e3a5ad5e5a7fc Description: Transitional Tamil language pack for Thunderbird Description-md5: 1a0bc948aeb218ec6560b280e4af0dd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-tr Priority: optional Section: mail Installed-Size: 603 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-tr_24.4.0+build1-0ubuntu1_amd64.deb Size: 377320 MD5sum: d980db8a6bf6ef6e558cea4243375257 SHA1: 9c6c0e3a0585a0f2d2c0cf5ad5eb431ba46c778d SHA256: 533a92e570d3075d41d22028c3b07286414768d25b812e63ea2dfa046a777760 Description: Turkish language pack for Thunderbird Description-md5: 96f7b80d2e94b507e60f8bc5a8a0fd27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-uk Priority: optional Section: web Installed-Size: 644 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-uk_24.4.0+build1-0ubuntu1_amd64.deb Size: 420524 MD5sum: 66b75e5506bf142d765265ea0fe3f5d7 SHA1: 21f7207767b3e83cb519a677fb24bc088d4b0ca7 SHA256: e24e07537fee06eb571567199af484883ea82544ade11972384ae1477159c4ce Description: Ukrainian language pack for Thunderbird Description-md5: 10eb02a1ee9b6883db9375d4708aafa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-vi Priority: optional Section: web Installed-Size: 659 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-vi_24.4.0+build1-0ubuntu1_amd64.deb Size: 435316 MD5sum: 7d94a184ca746da1b9dea4af353965de SHA1: 7f7bde153249c3379488babb4c3e76d03d1590bd SHA256: 1e806410e96ea0a16a1e30074127f95038d4d7a3eda3b8b4f2feb153f26eb978 Description: Vietnamese language pack for Thunderbird Description-md5: b7b5ecb4b2349b8ee7446da8c0ee8912 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-zh-cn Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-zh-hans Filename: pool/main/t/thunderbird/thunderbird-locale-zh-cn_24.4.0+build1-0ubuntu1_all.deb Size: 11312 MD5sum: ca1fbc10e035dbf2c1d7fcfbfd46fed3 SHA1: 56b2f4a2be878188b9538108958090565a3dd2dd SHA256: 995020e325942d6cd65f7f8a10d312753c37462c3360399ac72f1dd096cc3375 Description: Transitional Simplified Chinese language pack for Thunderbird Description-md5: 3a9fcde509c5d2504fb3f5bcdc7f4b7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-zh-hans Priority: optional Section: web Installed-Size: 613 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-zh-hans_24.4.0+build1-0ubuntu1_amd64.deb Size: 383818 MD5sum: a94f3aa698f032a1cd1ad4e6e845c542 SHA1: af1102678155cafcc4d1365e6d623ab04e5da665 SHA256: c85c993c400f33bf45d9a5e9159788c292c30b28e3087bd2350c12b456d15578 Description: Simplified Chinese language pack for Thunderbird Description-md5: 3638e8cfbb0bae8e88cb4e7f01b7eabe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-zh-hant Priority: optional Section: web Installed-Size: 616 Maintainer: Ubuntu Mozilla Team Architecture: amd64 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-zh-hant_24.4.0+build1-0ubuntu1_amd64.deb Size: 385804 MD5sum: 5e90b6ccee8529574d673eb3878a30f6 SHA1: 10d8fe78cd69d4fc7d639133bd6b5aabaa1e45bd SHA256: 411f9cfd6974c165c3c11b88a2840bb935465a53c86e821df9e56846d510757a Description: Traditional Chinese language pack for Thunderbird Description-md5: 364c5ad13dbb779048738785b9adcaf0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-zh-tw Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-zh-hant Filename: pool/main/t/thunderbird/thunderbird-locale-zh-tw_24.4.0+build1-0ubuntu1_all.deb Size: 11312 MD5sum: 4ee9a4b3e58eec4edcec9d3b23d91e49 SHA1: 74d2fa53c4df42be951296d00eb6745ed94eb224 SHA256: 05f57f6e92f8c4c852958be8856b1526ac3b93f669f0020b1722bc2c9cb2d6d2 Description: Transitional Traditional Chinese language pack for Thunderbird Description-md5: 153d368d7ff06df3219842e1b9490761 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tidy Priority: optional Section: web Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Jason Thomas Architecture: amd64 Version: 20091223cvs-1.2ubuntu1 Depends: libc6 (>= 2.14), libtidy-0.99-0 (>= 20091223cvs-1.2ubuntu1) Suggests: tidy-doc Filename: pool/main/t/tidy/tidy_20091223cvs-1.2ubuntu1_amd64.deb Size: 22128 MD5sum: 4c1673061235c123c702032213c535f1 SHA1: d835ec45a47bed746b2e0114be6e5ee97ec19f77 SHA256: 8725bacb34fadef543df964e78300d9cb2ccf28b002ae3b0e8fc7700ef5da038 Description: HTML syntax checker and reformatter Homepage: http://tidy.sourceforge.net/ Description-md5: fd11e1a504852ab2140f3a76fd8a688e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tidy-doc Priority: optional Section: doc Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Jason Thomas Architecture: all Source: tidy Version: 20091223cvs-1.2ubuntu1 Suggests: tidy Conflicts: tidy (<< 20030716-1) Filename: pool/main/t/tidy/tidy-doc_20091223cvs-1.2ubuntu1_all.deb Size: 86886 MD5sum: 11db34423506b8f518da41e3d464de37 SHA1: 768f3f66296f8c4288298ae18ff0dc400d02c0b4 SHA256: d7c95c4448ec453f796d6cbe3e94afa160a0f3e55291e1f62a296846bb91588a Description: HTML syntax checker and reformatter - documentation Homepage: http://tidy.sourceforge.net/ Description-md5: 40d22bc6a690527fb53baa539cc7c6ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: time Priority: standard Section: utils Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Bob Proulx Architecture: amd64 Version: 1.7-24 Depends: libc6 (>= 2.3.4), dpkg (>= 1.15.4) | install-info Filename: pool/main/t/time/time_1.7-24_amd64.deb Size: 29276 MD5sum: d4641899cd7fc011d26a8bb9990344d1 SHA1: c44232d70152ee0e515d4e19aba63a798114baec SHA256: 81bcc01dcbcf662f7b1862f74544b4fba168068f482e001472c75179c650d8db Description: GNU time program for measuring CPU resource usage Homepage: http://www.gnu.org/software/time Description-md5: 3482b423b592147357279e93ec9d47e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: tinycdb Priority: optional Section: utils Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Michael Tokarev Architecture: amd64 Version: 0.78 Depends: libc6 (>= 2.14), libcdb1 Filename: pool/main/t/tinycdb/tinycdb_0.78_amd64.deb Size: 13504 MD5sum: d100ecc50a5d0f5dc96b649c4244ba0b SHA1: 57eda1817cd3e203d109697a5744f76d960d1020 SHA256: c9922665d5a9b46947750d4efd4b7519d1214fa730782e97400f2eca4be3e728 Description: an utility to manipulate constant databases (cdb) Description-md5: db206835a75a16ebc84290ca026c89ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tipa Priority: optional Section: tex Installed-Size: 4767 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Version: 2:1.3-19 Replaces: tipa-type1 Depends: texlive-latex-base, texlive-base-bin, dpkg (>= 1.14.18), tex-common (>= 3) Conflicts: tipa-type1 Filename: pool/main/t/tipa/tipa_1.3-19_all.deb Size: 3310780 MD5sum: bc57bb25d7d1f06b616c1ac4e03184e1 SHA1: 3e10393f2e26b8aca39e48d7f7bf0799edf7df2c SHA256: 095a99d7da1285d03cafb56281ab961f5840755fbd76bb323f9a345ca9ef0e85 Description: system for processing phonetic symbols in LaTeX Homepage: http://www.ctan.org/tex-archive/fonts/tipa/ Description-md5: a56e773ea4d78490bebca15bee1b1c6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tipa-doc Priority: extra Section: doc Installed-Size: 4609 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Source: tipa Version: 2:1.3-19 Filename: pool/main/t/tipa/tipa-doc_1.3-19_all.deb Size: 4653122 MD5sum: a3ee40cdc28b19e040fee0e6aadd88ef SHA1: 53411279450f726e69ceed66f22def0950c63f79 SHA256: 2f461b5eaa4396d7dd307e1726f65ac076faaf4c56a05eb1220519c4248a6cb3 Description: documentation for the TIPA LaTeX font Homepage: http://www.ctan.org/tex-archive/fonts/tipa/ Description-md5: 061ad62b882f15d251decb718b9caf86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tk Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Provides: wish Depends: tk8.6 (>= 8.6.0-2), tcl Conflicts: tk-lib, tk8.5-lib Breaks: tk8.3 (<< 8.3.5-16), tk8.4 (<< 8.4.20-2), tk8.5 (<< 8.5.14-3), tk8.6 (<< 8.6.0-2) Filename: pool/main/t/tcltk-defaults/tk_8.6.0+6ubuntu3_amd64.deb Size: 3192 MD5sum: 67baa5323ccdee9d123dea4b6a6954ac SHA1: 7ab79c992258c0dda721dc8f1a8f6d0a2a5ee258 SHA256: c848edeae963bc29af3385be09e3d4ca0156edc47183b36a5dd40eda930252b2 Description: Toolkit for Tcl and X11 (default version) - windowing shell Multi-Arch: foreign Description-md5: c18f13af983cc9102503e0f44f8d4b2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tk-dev Priority: optional Section: devel Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Depends: tk8.6-dev (>= 8.6.0-2), tk, tcl-dev Suggests: tk-doc Filename: pool/main/t/tcltk-defaults/tk-dev_8.6.0+6ubuntu3_amd64.deb Size: 2964 MD5sum: 420d333db136bbb822425dc22b5a0ca8 SHA1: b05e94b8560b99decd0da5ba6e139ae7c8a6d70b SHA256: 20455a20a526d9c7b04c35ea8508040aed31679f0ca286e1ffae822bf844373b Description: Toolkit for Tcl and X11 (default version) - development files Multi-Arch: same Description-md5: 7e7c3316b08ee6e19b370908f28f78d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tk-doc Priority: optional Section: doc Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: all Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Depends: tcl-doc (= 8.6.0+6ubuntu3) Recommends: tk8.6-doc (>= 8.6.0-2) Suggests: tk Filename: pool/main/t/tcltk-defaults/tk-doc_8.6.0+6ubuntu3_all.deb Size: 968 MD5sum: 96277eca9ad5da58436c859da36fa112 SHA1: be22ca17027307a83f989bc0dc88869a5ec40ea7 SHA256: 2cede308ca4fd130f67a6bb6083b5d961a637dc29bcc79ad0e82a54d19493f3f Description: Toolkit for Tcl and X11 (default version) - manual pages Description-md5: 5cd3865abeee5ce7293d5dbd4523b8c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tk8.5 Priority: optional Section: libs Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: amd64 Version: 8.5.15-2ubuntu3 Depends: tcl8.5, libtk8.5 (= 8.5.15-2ubuntu3), libc6 (>= 2.2.5), libtcl8.5 (>= 8.5.0) Recommends: xterm | x-terminal-emulator Conflicts: libtk-img (<< 1.2.5), tk40 (<= 4.0p3-2) Filename: pool/main/t/tk8.5/tk8.5_8.5.15-2ubuntu3_amd64.deb Size: 11974 MD5sum: 800183902529277045c8e19596ef10c7 SHA1: d22bdbaf5041f4c0eebcc30ceb447e36add50adb SHA256: adc8f4077d3c469818ef849fb1e15c0dc8b44f0c6e0bde92068bcb57b3a61171 Description: Tk toolkit for Tcl and X11, v8.5 - windowing shell Multi-Arch: foreign Homepage: http://www.tcl.tk/ Description-md5: f62cd1aec09b4bda4b237fc2f6d951e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-audio Package: tk8.5-dev Priority: optional Section: devel Installed-Size: 3083 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: amd64 Source: tk8.5 Version: 8.5.15-2ubuntu3 Depends: dpkg-dev (>= 1.16.1~), x11proto-core-dev, libx11-dev, libxss-dev, libxext-dev, libxft-dev, tcl8.5-dev (>= 8.5.14-2), libtk8.5 (= 8.5.15-2ubuntu3), tk8.5 Suggests: tk8.5-doc Filename: pool/main/t/tk8.5/tk8.5-dev_8.5.15-2ubuntu3_amd64.deb Size: 646344 MD5sum: 929617ca01d373e92987f0d40815f405 SHA1: 9b5a7672b74e1d0cf5f15c4f7b5bbf52a0ef9d5b SHA256: d11543246432be8c495514afbf70713372129d5a5126ebf444c3a87f8d8e1128 Description: Tk toolkit for Tcl and X11, v8.5 - development files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 01f221ed6946f7c26ddad6a7edd186af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tk8.5-doc Priority: optional Section: doc Installed-Size: 1631 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: all Source: tk8.5 Version: 8.5.15-2ubuntu3 Replaces: tk8.5 (<< 8.5.14-2) Provides: tkdoc Suggests: tk8.5 Conflicts: tk8.3-doc, tk8.4-doc, tk8.5 (<< 8.5.14-2), tkdoc Filename: pool/main/t/tk8.5/tk8.5-doc_8.5.15-2ubuntu3_all.deb Size: 940622 MD5sum: 25e6fb7a0ac07299bf0c4c07e50349ea SHA1: 5b75b1b1eaa1754c6341f342741c0b97d1f65147 SHA256: 45c5f9bae600b42adb0b76c940962f5aa5de07c93ae271229143c2238d15d5f4 Description: Tk toolkit for Tcl and X11, v8.5 - manual pages Homepage: http://www.tcl.tk/ Description-md5: fd7cffc18c603b1490f25b95a6e7b065 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tk8.6 Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Version: 8.6.1-3ubuntu2 Depends: libc6 (>= 2.2.5), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Recommends: xterm | x-terminal-emulator Conflicts: libtk-img (<< 1.2.5), tk40 (<= 4.0p3-2) Filename: pool/main/t/tk8.6/tk8.6_8.6.1-3ubuntu2_amd64.deb Size: 12102 MD5sum: 013ecc1e321b8591e46082b74defd1ae SHA1: 9074f5bfaaae1d3ef1be24cdfa0c0d03ef27c4fc SHA256: bce89e777465252485c793752c61c7c1bb4541711acff47e285b055f80e1e6ea Description: Tk toolkit for Tcl and X11 v8.6 - windowing shell Multi-Arch: foreign Homepage: http://www.tcl.tk/ Description-md5: 066d4f5267290a404c952b599f887990 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tk8.6-dev Priority: optional Section: devel Installed-Size: 3070 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: amd64 Source: tk8.6 Version: 8.6.1-3ubuntu2 Depends: dpkg-dev (>= 1.16.1~), x11proto-core-dev, libx11-dev, libxt-dev, libxss-dev, libxext-dev, libxft-dev, tcl8.6-dev (>= 8.6.0-2), libtk8.6 (= 8.6.1-3ubuntu2), tk8.6 Suggests: tk8.6-doc Filename: pool/main/t/tk8.6/tk8.6-dev_8.6.1-3ubuntu2_amd64.deb Size: 665068 MD5sum: 41d252bb5e1d75a1be0931a949f63c59 SHA1: dd1ef87f19b8b368941e3feeefd7ade3a4f46b80 SHA256: c62fe5aa66d0c59d7a35bfb85182d856277d7f28dcd07994cb4b008e30246167 Description: Tk toolkit for Tcl and X11 v8.6 - development files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 5081fc14ac8d13fb09d3d3f090596c49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tk8.6-doc Priority: optional Section: doc Installed-Size: 1699 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: all Source: tk8.6 Version: 8.6.1-3ubuntu2 Replaces: tk8.6 (<< 8.6.0-2) Provides: tkdoc Suggests: tk8.6 Conflicts: tk8.6 (<< 8.6.0-2), tkdoc Filename: pool/main/t/tk8.6/tk8.6-doc_8.6.1-3ubuntu2_all.deb Size: 1015348 MD5sum: d874dcc8af842881382705bc163be573 SHA1: c0b31ae9fc65f3318c29a9d1e6ef7fcdffa38cb4 SHA256: dc9fd0ae0204565fbc5bc1a71a761db1a63e5628d0177c2734dd29fddea4358e Description: Tk toolkit for Tcl and X11 v8.6 - manual pages Homepage: http://www.tcl.tk/ Description-md5: bbe987d020c4105d0922d75a7d107bf3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tmake Priority: optional Section: devel Installed-Size: 1448 Maintainer: Jan Niehusmann Architecture: amd64 Version: 1.8-1.1 Depends: perl Suggests: libqt-dev Filename: pool/main/t/tmake/tmake_1.8-1.1_amd64.deb Size: 60646 MD5sum: 912757599adf948206d9ee4dc3b92829 SHA1: c8ccaca96da9664ba570a4ea12573569f4c27c0e SHA256: 41473117c1f40898db920e3728715401be27639178e5ca33021dc67150cdb319 Description: a cross-platform makefile tool Description-md5: 88f139f6520630dd3735500c2bce09da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tmispell-voikko Priority: optional Section: text Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: amd64 Version: 0.7.1-3 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.12.0), libglibmm-2.4-1c2a (>= 2.32.0), libncursesw5 (>= 5.6+20070908), libstdc++6 (>= 4.6), libtinfo5, libvoikko1 (>= 2.1), voikko-fi Suggests: ispell Conflicts: tmispell, tmispell-soikko Filename: pool/main/t/tmispell-voikko/tmispell-voikko_0.7.1-3_amd64.deb Size: 74116 MD5sum: bec6c0f3632d4af3ef582dc6138eedb1 SHA1: 68c67fcca558d6be76355ab29acd3581e95d41c5 SHA256: fce2862018468419439f2564c2cfcb965eaa1d0593037fd53bd7c38b968580a7 Description: Ispell wrapper which uses Voikko for spell-checking Homepage: http://voikko.sourceforge.net/ Description-md5: 4e96d6b673246a51faf74a4fd4c6943e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tmux Priority: optional Section: admin Installed-Size: 563 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: amd64 Version: 1.8-5 Depends: libc6 (>= 2.14), libevent-2.0-5 (>= 2.0.10-stable), libtinfo5 Filename: pool/main/t/tmux/tmux_1.8-5_amd64.deb Size: 247164 MD5sum: 04b86cf2e37ff425c8a3aa8bb655694c SHA1: ce0a84ead8b68184cc661d5ff19fff7daf58e5f6 SHA256: 42b81ef117d9761e9dbf1c5bdb232eaf759b698137c80b0dd61444742c946ebe Description: terminal multiplexer Homepage: http://tmux.sourceforge.net/ Description-md5: dc6ff920cb9183a42694d0ea54835078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-usb Package: tofrodos Priority: optional Section: utils Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Markus Koschany Architecture: amd64 Version: 1.7.13+ds-1ubuntu1 Depends: libc6 (>= 2.3.4) Filename: pool/main/t/tofrodos/tofrodos_1.7.13+ds-1ubuntu1_amd64.deb Size: 23316 MD5sum: c873e95c6056cb5bda05e956eaf80733 SHA1: 760a5498d3730470ed4434f740a5dd03e6861382 SHA256: ef9d5dd618512a6b006339207926bfa02582714e5ae1a6178c5036c7fd94f3fe Description: Converts DOS <-> Unix text files, alias tofromdos Homepage: http://www.thefreecountry.com/tofrodos/index.shtml Description-md5: 9004c348055c82d4e761c246e594b2d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tokyocabinet-doc Priority: optional Section: doc Installed-Size: 1370 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Frost Architecture: all Source: tokyocabinet Version: 1.4.48-2 Filename: pool/main/t/tokyocabinet/tokyocabinet-doc_1.4.48-2_all.deb Size: 523056 MD5sum: 5e38b1011f1017f30f5076eaf4eb2e1c SHA1: be316148871a8c682f12995e7c1699be8ac09d6a SHA256: d340144ca0573796b5a4afb29f2a7412a8483345b6ffb7d5228822eb3ce928ee Description: Tokyo Cabinet Database Documentation Homepage: http://fallabs.com/tokyocabinet/ Description-md5: d59b69c9c3f83f1538cad5f4090e8591 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tomcat7 Priority: optional Section: java Installed-Size: 364 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 7.0.52-1 Depends: tomcat7-common (>= 7.0.52-1), ucf, adduser, debconf (>= 0.5) | debconf-2.0 Recommends: authbind Suggests: tomcat7-docs (>= 7.0.52-1), tomcat7-admin (>= 7.0.52-1), tomcat7-examples (>= 7.0.52-1), tomcat7-user (>= 7.0.52-1), libtcnative-1 (>= 1.1.24) Filename: pool/main/t/tomcat7/tomcat7_7.0.52-1_all.deb Size: 35564 MD5sum: d68cb5bd4d8955d053fc96f324abb7e7 SHA1: 79e7474cb295194f5acaba7be642eb252f5fcbe0 SHA256: d3f342b49fb35902448bfafb85201ede13eb0b64d72548e66f265ea8a9911aa6 Description: Servlet and JSP engine Homepage: http://tomcat.apache.org Description-md5: 71d2a54f759941814ab4cf7873094b26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: tomcat7-admin Priority: optional Section: java Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Depends: tomcat7-common (>= 7.0.52-1) Filename: pool/main/t/tomcat7/tomcat7-admin_7.0.52-1_all.deb Size: 26790 MD5sum: adbf52d83147e7135d74695a5992c7b5 SHA1: 34abcba6fddf5a793c3be190bf0283628562f308 SHA256: 2b7687e709973e2ae98eaa965548747eb1c2e44db5cc7227a8af6a4895935783 Description: Servlet and JSP engine -- admin web applications Homepage: http://tomcat.apache.org Description-md5: 07b3738a38d2448ee2c0b77d4dbd745d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: tomcat7-common Priority: optional Section: java Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Depends: libtomcat7-java (>= 7.0.52-1), default-jre-headless | java6-runtime-headless | java6-runtime | java-6-runtime Filename: pool/main/t/tomcat7/tomcat7-common_7.0.52-1_all.deb Size: 47978 MD5sum: 948c303f592fc8654bd53f21c60bd671 SHA1: be8a3d72d7e627634db238308427f557b372ec1c SHA256: 433069276ab06be9ece399c511922ec708b8c28224daa072d06eceebf9ccae0c Description: Servlet and JSP engine -- common files Homepage: http://tomcat.apache.org Description-md5: f1b8817985b6e745bfe6216aa2086c4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: tomcat7-docs Priority: optional Section: doc Installed-Size: 4096 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Depends: tomcat7-common (>= 7.0.52-1) Filename: pool/main/t/tomcat7/tomcat7-docs_7.0.52-1_all.deb Size: 547950 MD5sum: ddd24a8636b44dc3da9e6e332e2a6be1 SHA1: 5172953ae6870acbfeacb4349dc41339c7257662 SHA256: 774f2c424e5256a19572ff72c88733f72891a5f7b7229ca3f3e2cdf5efd74077 Description: Servlet and JSP engine -- documentation Homepage: http://tomcat.apache.org Description-md5: 523c216160e93c3df0c2e38305883e9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: tomcat7-examples Priority: optional Section: java Installed-Size: 1311 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Depends: tomcat7-common (>= 7.0.52-1), libjstl1.1-java, libjakarta-taglibs-standard-java Filename: pool/main/t/tomcat7/tomcat7-examples_7.0.52-1_all.deb Size: 182070 MD5sum: b8778d81f4b0f8b985274ae3bb713e91 SHA1: ba166d1189c758b37902bf411fb97ae69298fe75 SHA256: 93a5aaa8c33975da4c8d6e04d3675f036a38ae2a8d4920716f686140e20d10df Description: Servlet and JSP engine -- example web applications Homepage: http://tomcat.apache.org Description-md5: 3fd8302e7ffe454afd9ba42730f7a01a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: toshset Priority: optional Section: utils Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Version: 1.76-4 Depends: libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libpci3 (>= 1:3.1.8-2), libstdc++6 (>= 4.1.1) Filename: pool/main/t/toshset/toshset_1.76-4_amd64.deb Size: 64384 MD5sum: dbf374c4204ef19cb71971dcf0b9d394 SHA1: 6e348a04c779339820558ff5ad63f813e09afc8f SHA256: e0215bf1979d0ad8f043b3c67462e403c4346632b2f1c9f20b78786a6d392a89 Description: Access much of the Toshiba laptop hardware interface Homepage: http://www.schwieters.org/toshset/ Description-md5: 8d0a96fd726e068c365e12ba1bdb9fda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: totem Priority: optional Section: gnome Installed-Size: 717 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.10.1-1ubuntu4 Depends: python:any (>= 2.7.1-0ubuntu2), libatk1.0-0 (>= 1.29.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libclutter-1.0-0 (>= 1.11.10), libclutter-gst-2.0-0 (>= 0.10.0), libclutter-gtk-1.0-0 (>= 0.91.8), libcogl15 (>= 1.15.8), libdbus-glib-1-2 (>= 0.88), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.5.12), libnautilus-extension1a (>= 1:2.91), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libtotem-plparser18 (>= 3.10.0), libtotem0 (>= 3.10.1-1ubuntu4), libtotem0 (<< 3.11), libx11-6, totem-common (= 3.10.1-1ubuntu4), gstreamer1.0-clutter, gstreamer1.0-plugins-base, gstreamer1.0-plugins-good, gstreamer1.0-x, gnome-icon-theme (>= 2.15.90), gnome-icon-theme-symbolic, gsettings-desktop-schemas Recommends: totem-plugins, gstreamer1.0-pulseaudio Suggests: gnome-codec-install, gstreamer1.0-libav, gstreamer1.0-plugins-bad, gstreamer1.0-plugins-ugly, totem-mozilla Filename: pool/main/t/totem/totem_3.10.1-1ubuntu4_amd64.deb Size: 104454 MD5sum: 65191965235f0363b57f9c3c99d2a1e9 SHA1: b7cf6d224460282e249b063271e79e0bf326caa9 SHA256: 7c2be5f0d220690b5fa04b2f206edd48cbb93814ef0b0b1c3dbe0f9d796b99e2 Description: Simple media player for the GNOME desktop based on GStreamer Homepage: http://www.gnome.org/projects/totem/ Description-md5: 3773374b409bb5710c492c328fe37f78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: totem-common Priority: optional Section: gnome Installed-Size: 1932 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: totem Version: 3.10.1-1ubuntu4 Depends: dconf-gsettings-backend | gsettings-backend Filename: pool/main/t/totem/totem-common_3.10.1-1ubuntu4_all.deb Size: 190920 MD5sum: 6d296aea7f7a009711bce0b63b3e7c70 SHA1: 98286db47fb2eb3efdc52f228841bce61313a501 SHA256: e2f1ca009ae04a86dba345577263a5ac20bb7312e17af947dfebcbae7b9f5894 Description: Data files for the Totem media player Homepage: http://www.gnome.org/projects/totem/ Description-md5: e5e4dab953a289de510184357646dc10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: totem-dbg Priority: extra Section: libs Installed-Size: 4712 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: totem Version: 3.10.1-1ubuntu4 Depends: totem (= 3.10.1-1ubuntu4) Filename: pool/main/t/totem/totem-dbg_3.10.1-1ubuntu4_amd64.deb Size: 913426 MD5sum: 6da48c6238ece52a499f6c983abf5f09 SHA1: 4d82dc3a779d62a9382753e7f36c85389d303210 SHA256: 0aa98cf639ea34f5b157cd3e2d09e1ab74d79ee8c0a44b0dc3213583005a26a3 Description: Debugging symbols for the Totem media player Homepage: http://www.gnome.org/projects/totem/ Description-md5: 2e6698ffe79828e97552b72939dbf59f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: totem-mozilla Priority: optional Section: web Installed-Size: 663 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: totem Version: 3.10.1-1ubuntu4 Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.33.0), libstdc++6 (>= 4.1.1), libtotem-plparser18 (>= 3.10.0), totem (= 3.10.1-1ubuntu4), dbus-x11 (>= 0.61) Filename: pool/main/t/totem/totem-mozilla_3.10.1-1ubuntu4_amd64.deb Size: 67292 MD5sum: ab4859e830bc301455eb1cef06c5ccdf SHA1: fe1dea765d8c2011f7105c38c1b1bb6656be29ff SHA256: e9e6e622018c6a119ca9d8b02f1e1b65a8c0662331d1e78de63df0343978bf83 Description: Totem Mozilla plugin Homepage: http://www.gnome.org/projects/totem/ Npp-Applications: ec8030f7-c20a-464f-9b0e-13a3a9e97384, 92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a Npp-Description: Watch Movies in your Browser (http://projects.gnome.org/totem/) Npp-Filename: libtotem- Npp-Mimetype: video/quicktime, video/mp4, image/x-macpaint, image/x-quicktime, application/x-mplayer2, video/x-ms-asf-plugin, video/x-msvideo, video/x-ms-asf, video/x-ms-wmv, video/x-wmv, video/x-ms-wvx, video/x-ms-wm, application/ogg, video/mpeg, audio/wav, audio/x-wav, audio/mpeg Npp-Name: Totem Mozilla plugin Description-md5: 0e3c465743f83cc1eccf3e903fa33e77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop Package: totem-plugins Priority: optional Section: gnome Installed-Size: 964 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Source: totem Version: 3.10.1-1ubuntu4 Depends: libc6 (>= 2.7), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.2), liblircclient0, libtotem0 (>= 3.10.1-1ubuntu4), libtotem0 (<< 3.11), libxml2 (>= 2.7.4), libzeitgeist-2.0-0 (>= 0.3.2), python:any (>= 2.7.1-0ubuntu2), python2.7, totem (= 3.10.1-1ubuntu4), gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-pango-1.0, gir1.2-peas-1.0, gir1.2-totem-1.0 (= 3.10.1-1ubuntu4), python-gi (>= 2.90.3), python-xdg Suggests: gromit Filename: pool/main/t/totem/totem-plugins_3.10.1-1ubuntu4_amd64.deb Size: 130376 MD5sum: 1a60f6326b7e8ea19e2587ecef6ce882 SHA1: fa022b138613f198e37a29a19efb8af30f3671db SHA256: 8406797385108ce81aebab44408c573462039cfd53312c1e6dfdce800752c9f2 Description: Plugins for the Totem media player Homepage: http://www.gnome.org/projects/totem/ Description-md5: c852fb65ed6d80aba464f0bc5a394dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: transfig Priority: optional Section: graphics Installed-Size: 1146 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: amd64 Version: 1:3.2.5.e-1ubuntu1 Depends: libc6 (>= 2.14), libpng12-0 (>= 1.2.13-4), libxpm4, x11-common, gawk Recommends: netpbm (>= 2:10.0-4), ghostscript Suggests: xfig Filename: pool/main/t/transfig/transfig_3.2.5.e-1ubuntu1_amd64.deb Size: 587908 MD5sum: e23c44e580e8e39b6832f772bbfe3772 SHA1: 8ebeef70b9c8285a20c7fdc2a0f683ae297b8b1b SHA256: df51456502e91f90c22dffe76874a5582b4d0648439b9c8e247ce581e3326640 Description: Utilities for converting XFig figure files Multi-Arch: foreign Homepage: http://xfig.org/ Description-md5: 534e2528f07883170add13274a0f0897 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: transmission-cli Priority: optional Section: net Installed-Size: 2469 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: amd64 Source: transmission Version: 2.82-1.1ubuntu3 Replaces: transmission-daemon (<< 1.50-1) Depends: libc6 (>= 2.14), libcurl3-gnutls (>= 7.18.0), libevent-2.0-5 (>= 2.0.10-stable), libminiupnpc8 (>= 1.6), libnatpmp1 (>= 20101211), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4), transmission-common (= 2.82-1.1ubuntu3) Suggests: transmission-daemon (= 2.82-1.1ubuntu3), transmission-gtk (= 2.82-1.1ubuntu3) Breaks: transmission-daemon (<< 1.50-1) Filename: pool/main/t/transmission/transmission-cli_2.82-1.1ubuntu3_amd64.deb Size: 386194 MD5sum: e97d2ec62625ba857a7338a7e9b95e62 SHA1: bc5660bc71847f2257f4cbd434888d5ceb178c29 SHA256: f0604afe040f6c53a0bd12263b572212555dff5630f3cf6d1f9099fcf2b1473c Description: lightweight BitTorrent client (command line programs) Homepage: http://www.transmissionbt.com/ Description-md5: 2bb621d0d95ecd3582f524eb28dbf71e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: transmission-common Priority: optional Section: net Installed-Size: 872 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: all Source: transmission Version: 2.82-1.1ubuntu3 Replaces: transmission-gtk (<< 2.10-1) Breaks: transmission-gtk (<< 2.10-1) Filename: pool/main/t/transmission/transmission-common_2.82-1.1ubuntu3_all.deb Size: 224862 MD5sum: 722c669dfb0970e91c18bc116f44f349 SHA1: ddcea73178c9eb9e826c91f7b92c3af6eeb01459 SHA256: 365013f0ba6523c57421df79abdefe629f1e39b478d81bde2e433eec2e8ce207 Description: lightweight BitTorrent client (common files) Homepage: http://www.transmissionbt.com/ Description-md5: c088436bdff78ec234e20d4cee7f3943 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: transmission-daemon Priority: optional Section: net Installed-Size: 589 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: amd64 Source: transmission Version: 2.82-1.1ubuntu3 Replaces: transmission-cli (<< 1.40-1) Depends: libc6 (>= 2.15), libcurl3-gnutls (>= 7.18.0), libevent-2.0-5 (>= 2.0.10-stable), libminiupnpc8 (>= 1.6), libnatpmp1 (>= 20101211), libssl1.0.0 (>= 1.0.0), libsystemd-daemon0 (>= 31), zlib1g (>= 1:1.1.4), transmission-common (= 2.82-1.1ubuntu3), lsb-base (>= 3.0), init-system-helpers (>= 1.13~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Pre-Depends: adduser Recommends: transmission-cli (>= 1.50-1) Breaks: transmission-cli (<< 1.40-1) Filename: pool/main/t/transmission/transmission-daemon_2.82-1.1ubuntu3_amd64.deb Size: 207042 MD5sum: 112e1a8a42b76c8c148fb4652e48534f SHA1: 4b771979a201c8a0ba0f48e03164b3716eaaad81 SHA256: 1abc19d670426810272d2d433fee5f93df74828d5a26611328be011e420dccf7 Description: lightweight BitTorrent client (daemon) Homepage: http://www.transmissionbt.com/ Description-md5: c5796eb91f75285b9af0fb5f16136e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: transmission-dbg Priority: extra Section: debug Installed-Size: 38914 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: amd64 Source: transmission Version: 2.82-1.1ubuntu3 Depends: transmission-cli, transmission-gtk, transmission-qt, transmission-daemon, transmission-common Filename: pool/main/t/transmission/transmission-dbg_2.82-1.1ubuntu3_amd64.deb Size: 6461556 MD5sum: 4590522fd664c138055fd6c14330b879 SHA1: 5d0ce905a089fde044e29fab531973872ffb08c0 SHA256: 331e15e2933cc606edf6ab90554d5c7c82e791c9d46ec578d415c6a637a85bf6 Description: lightweight BitTorrent client (debug symbols) Homepage: http://www.transmissionbt.com/ Description-md5: b093bc257efd8163683cc280c88fb97d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: transmission-gtk Priority: optional Section: net Installed-Size: 916 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: amd64 Source: transmission Version: 2.82-1.1ubuntu3 Depends: libappindicator3-1 (>= 0.4.90), libc6 (>= 2.14), libcurl3-gnutls (>= 7.18.0), libevent-2.0-5 (>= 2.0.10-stable), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.16), libminiupnpc8 (>= 1.6), libnatpmp1 (>= 20101211), libpango-1.0-0 (>= 1.14.0), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4), transmission-common (= 2.82-1.1ubuntu3), gconf2 (>= 2.28.1-2) Recommends: xdg-utils Filename: pool/main/t/transmission/transmission-gtk_2.82-1.1ubuntu3_amd64.deb Size: 306112 MD5sum: 3f831b0cc41e7d56c611f45f587eb8c3 SHA1: ff22bf6feec6931660ae0bcffb02a8d9da52eb56 SHA256: 61e88c8d2045a27a6d8e3f95ce84beee411e195f686a33fbf4f2ef380a120c2d Description: lightweight BitTorrent client (GTK+ interface) Homepage: http://www.transmissionbt.com/ Description-md5: 2a49d29e6e551104026a39357f5968bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: transmission-qt Priority: optional Section: net Installed-Size: 1900 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: amd64 Source: transmission Version: 2.82-1.1ubuntu3 Depends: libc6 (>= 2.14), libcurl3-gnutls (>= 7.18.0), libevent-2.0-5 (>= 2.0.10-stable), libgcc1 (>= 1:4.1.1), libminiupnpc8 (>= 1.6), libnatpmp1 (>= 20101211), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libssl1.0.0 (>= 1.0.0), libstdc++6 (>= 4.4.0), zlib1g (>= 1:1.1.4), transmission-common (= 2.82-1.1ubuntu3) Recommends: xdg-utils Filename: pool/main/t/transmission/transmission-qt_2.82-1.1ubuntu3_amd64.deb Size: 599868 MD5sum: 1bbbd04145e1adedce5e41d4b0e3012e SHA1: 1043995f182a0500ecb260f8f9071653b145640b SHA256: 8e2a9ec2712c6f80e94c6d43ee950c30d54d180656ce376632b9487f9b767cce Description: lightweight BitTorrent client (Qt interface) Homepage: http://www.transmissionbt.com/ Description-md5: 55875b4734dfba52b8c3483949c1215e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: trousers Priority: optional Section: utils Installed-Size: 402 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: amd64 Version: 0.3.11.2-1 Depends: libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0), adduser, lsb-base (>= 3.0-6) Breaks: udev (<< 136-1) Filename: pool/main/t/trousers/trousers_0.3.11.2-1_amd64.deb Size: 137048 MD5sum: 2130481b73dc943d294e99e7e260b572 SHA1: 073d8c844d9731b8863f5fc0ec55acc056740552 SHA256: d0cff5b32979573e732b7712e71035ce854fb7744be1aa1ab091059539c94416 Description: open-source TCG Software Stack (daemon) Homepage: http://trousers.sourceforge.net/ Description-md5: 1a853869dc86f41f4c57847cbf703eba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: trousers-dbg Priority: extra Section: libdevel Installed-Size: 1009 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: amd64 Source: trousers Version: 0.3.11.2-1 Depends: trousers (= 0.3.11.2-1), libtspi1 (= 0.3.11.2-1), libtspi-dev (= 0.3.11.2-1) Filename: pool/main/t/trousers/trousers-dbg_0.3.11.2-1_amd64.deb Size: 882384 MD5sum: b13bfa0ab08fcd02dff6654ffda6df80 SHA1: 1ce7757f04f74353a7ed5b884d15cb4cc90cbab7 SHA256: 37df72159cf5732fe9bf943170bf2ae2ce15b3b69ec8e38581219c178374bb00 Description: open-source TCG Software Stack (debug) Homepage: http://trousers.sourceforge.net/ Description-md5: af01efd57e989a4302402fc7a888fc49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ttf-alee Priority: optional Section: x11 Installed-Size: 3093 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 13 Filename: pool/main/t/ttf-alee/ttf-alee_13_all.deb Size: 750710 MD5sum: 8252461d0c7d733948f3fc430bc2d4cb SHA1: c71483f3ed988fb3a0737095cb893686f079274a SHA256: 6a84fa8dacacee60942b26c34164bb73bceb619c7cf0ef238cd8a8f8bee8cfd1 Description: free Hangul TrueType fonts Description-md5: 49f7dc47a23353dcd6d39bf73ed27a27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb, ubuntustudio-font-meta Package: ttf-bengali-fonts Priority: optional Section: x11 Installed-Size: 774 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Provides: ttf-bangla-fonts Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-bengali-fonts_0.5.14ubuntu1_all.deb Size: 269734 MD5sum: 92c832e3adfb286ce29f1310bd3907b7 SHA1: e84975baf6dac8c447f31584ef684c4f69bc5ffc SHA256: eb62179129a12bfa51a686df147d169485c61727c031f7fa898edc2b82deb43e Description: Free TrueType fonts for the Bengali language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 2b1979381e87874686949bbeaa3e33d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-dejavu Priority: optional Section: x11 Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-dejavu Version: 2.34-1ubuntu1 Depends: fonts-dejavu, ttf-dejavu-core, ttf-dejavu-extra Filename: pool/main/f/fonts-dejavu/ttf-dejavu_2.34-1ubuntu1_all.deb Size: 2806 MD5sum: dd04806e665edda569f0730bf6dfb37a SHA1: 48af50230821ecd9d6befbd5eeb9ee5964d9dcd4 SHA256: 5929efa3cba173f9733e95479779cbe468b20ea531b0eb8453a59c8e3f1069e0 Description: transitional dummy package Homepage: http://dejavu-fonts.org/ Description-md5: d022b4cd65360a59d321e029d730c59e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: ttf-dejavu-core Priority: optional Section: x11 Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-dejavu Version: 2.34-1ubuntu1 Depends: fonts-dejavu-core Filename: pool/main/f/fonts-dejavu/ttf-dejavu-core_2.34-1ubuntu1_all.deb Size: 2956 MD5sum: 9a1638907f97e9374172634e274f71fb SHA1: 338bd252fcf6a4980dd682d272431acd8d587758 SHA256: 60e0f1ba6ccdfe7988d384f083d5202669959d8f719998476a55f04267ca3d2d Description: transitional dummy package Homepage: http://dejavu-fonts.org/ Description-md5: d022b4cd65360a59d321e029d730c59e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-graphics Package: ttf-dejavu-extra Priority: optional Section: x11 Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-dejavu Version: 2.34-1ubuntu1 Depends: fonts-dejavu-extra Filename: pool/main/f/fonts-dejavu/ttf-dejavu-extra_2.34-1ubuntu1_all.deb Size: 3104 MD5sum: 9024935a4bbb9c01b4dffcb9bc02d680 SHA1: ab266f15153fbe3c9f07fe773bf33ca6517d078d SHA256: 5e03a4a681132351adb64cc3c16eca40d12c30d6ce68330bc8a632cb178434b3 Description: transitional dummy package Homepage: http://dejavu-fonts.org/ Description-md5: d022b4cd65360a59d321e029d730c59e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: ttf-devanagari-fonts Priority: optional Section: x11 Installed-Size: 4862 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-devanagari-fonts_0.5.14ubuntu1_all.deb Size: 938448 MD5sum: e02accfdee197de42d5a47713a01581d SHA1: be3e0f7e4db4c1646d02e931b8588b9df8d655a9 SHA256: febbfd839ada40ffe85bc7979c7f15df0f6b070f59eb7b4770b78d19c611c60c Description: Free TrueType fonts for languages using the Devanagari script Homepage: http://debian-in.alioth.debian.org/ Description-md5: 7c4a066ef4207f58c2d9df606c6bdf50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-gujarati-fonts Priority: optional Section: x11 Installed-Size: 429 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-gujarati-fonts_0.5.14ubuntu1_all.deb Size: 158600 MD5sum: 39b436d0b8e17e674bf47ba311b750cc SHA1: 1da7fbf7949a9aa2d812b482198b9cc947a6e65b SHA256: 18828bcdedc45ecf332069793d9eb62f3fc3cc65ab4430ed3538ce9315bfa757 Description: Free TrueType fonts for the Gujarati language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 34890ff56ce8374724b4fbc20102f71c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-indic-fonts Priority: optional Section: x11 Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 1:0.5.14ubuntu1 Depends: ttf-indic-fonts-core (= 1:0.5.14ubuntu1), ttf-bengali-fonts (= 1:0.5.14ubuntu1), ttf-devanagari-fonts (= 1:0.5.14ubuntu1), ttf-gujarati-fonts (= 1:0.5.14ubuntu1), ttf-kannada-fonts (= 1:0.5.14ubuntu1), ttf-malayalam-fonts (= 1:0.5.14ubuntu1), ttf-oriya-fonts (= 1:0.5.14ubuntu1), ttf-punjabi-fonts (= 1:0.5.14ubuntu1), ttf-tamil-fonts (= 1:0.5.14ubuntu1), ttf-telugu-fonts (= 1:0.5.14ubuntu1) Recommends: fonts-pagul (>= 1.0-1~), fonts-gubbi, fonts-navilu Filename: pool/main/t/ttf-indic-fonts/ttf-indic-fonts_0.5.14ubuntu1_all.deb Size: 2372 MD5sum: 9370096700c52de6a4f753c18613a118 SHA1: e92cb20ad3fde1e2efb11eb9ef9f029f46d68c7d SHA256: 8f319d475a2a69a4c12ea810eec4da4d97a6946fabd258363f974433ad2b6ab2 Description: Metapackage for free Indian language fonts Homepage: http://debian-in.alioth.debian.org/ Description-md5: 1cf5ffd68165cd66662518e0505f237d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ttf-indic-fonts-core Priority: optional Section: x11 Installed-Size: 2464 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Filename: pool/main/t/ttf-indic-fonts/ttf-indic-fonts-core_0.5.14ubuntu1_all.deb Size: 913600 MD5sum: b8cc517130c9f5f7864bae1879f7b49a SHA1: d41bfb27e50c199800d636efda4a50b2d19dda67 SHA256: b1778083700758d99944857c67af34f2d0513fca57f0057cb83fdadca7b32c9d Description: Core collection of free fonts for languages of India Homepage: http://debian-in.alioth.debian.org/ Description-md5: eb3e1483308ac43cc6dd2d5f5f747c64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ttf-kannada-fonts Priority: optional Section: x11 Installed-Size: 698 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-kannada-fonts_0.5.14ubuntu1_all.deb Size: 234320 MD5sum: c2b822d6f20425fe8b113d38ac2f4fa5 SHA1: 0712dd1f11381b547ba267f2c8527dfe4d18c849 SHA256: b2b79de162155e7573c4e0f89dde383448bb6cdaa58431bb79dd872bcaec27d1 Description: Free TrueType fonts for the Kannada language Homepage: http://debian-in.alioth.debian.org/ Description-md5: deae49025827090c69c2820385c41e68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-malayalam-fonts Priority: optional Section: x11 Installed-Size: 1397 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-malayalam-fonts_0.5.14ubuntu1_all.deb Size: 432658 MD5sum: 93186e23e2e9bc2085a629f330ce65f9 SHA1: 6260f68468874122d4ce23f958004c074fd69ad5 SHA256: 8137d5047705555d0de0da5f35ba0ee563ac85a3e2ec8052882c05c0b1d53403 Description: Free TrueType fonts for the Malayalam language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 4ad4130ff44a4a5cc72ca7bb20a8a30a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ttf-oriya-fonts Priority: optional Section: x11 Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-oriya-fonts_0.5.14ubuntu1_all.deb Size: 102620 MD5sum: 649122561d84fcbd731b7f2f04b0c1fc SHA1: 2ecfce627c7678e0ef00b99208bb2c5ecce4eda1 SHA256: 9689fc0a3c52d28a78d1653e4766dcbec9dfc1388dd4313c0230f2c2a241d6fe Description: Free TrueType fonts for the Oriya language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 126ee6c89859c0f81e57d69b83fde50a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-punjabi-fonts Priority: optional Section: x11 Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Filename: pool/main/t/ttf-indic-fonts/ttf-punjabi-fonts_0.5.14ubuntu1_all.deb Size: 57546 MD5sum: 75a679c57a1eb5baf86222ce14582b1c SHA1: 864fbf9bd6a664314df78716e60a0c6c5d791e54 SHA256: b96e59c6b149c7e9c9d081990359ddbef3e223ada49e68d7ea43b7dd88af7ca8 Description: Free TrueType fonts for the Punjabi language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 734ddc6f1aa432bfba7b2f9c057059f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ttf-tamil-fonts Priority: optional Section: x11 Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-tamil-fonts_0.5.14ubuntu1_all.deb Size: 25212 MD5sum: 46189367645a92ce24471dca7ddd6e89 SHA1: 45738cc9a39cb7764daeafb981c358f55dee7906 SHA256: 18d3b012b987de894ae1d96babc723f8f35eddd92557f1c923bce190cc62a3c4 Description: Free TrueType fonts for the Tamil language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 7740bfc9e153d2daf5eae54eeb2020c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-telugu-fonts Priority: optional Section: x11 Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-telugu-fonts_0.5.14ubuntu1_all.deb Size: 50078 MD5sum: 5c204135de8ab1c9ccd1a62fff56d994 SHA1: c070fcddde5785ff0cde4de4d90cc123487b355e SHA256: c229158e4dc19071652fa83aeec9cb86a5dfa3b38afb6bf47ed7676427885c01 Description: Free TrueType fonts for the Telugu language Homepage: http://debian-in.alioth.debian.org/ Description-md5: ba3cc27f4601521f4fbf1b7589fe7981 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-ubuntu-font-family Priority: optional Section: x11 Installed-Size: 3936 Maintainer: Ubuntu Developers Original-Maintainer: Paul Sladen Architecture: all Source: ubuntu-font-family-sources Version: 0.80-0ubuntu6 Replaces: ubuntu-private-fonts, ubuntu-private-nda-fonts Provides: ubuntu-private-fonts, ubuntu-private-nda-fonts Conflicts: ubuntu-private-fonts, ubuntu-private-nda-fonts Filename: pool/main/u/ubuntu-font-family-sources/ttf-ubuntu-font-family_0.80-0ubuntu6_all.deb Size: 1992838 MD5sum: 8b030ecdd9ae57ec7d64bc41f59780f1 SHA1: 7d90cd24ab1d81118fa601ddea381c284848b815 SHA256: c3b1b71c1ce3b7e9720fb736348f2415936471d0714fe5d8f8584743008c9d8a Description: Ubuntu Font Family, sans-serif typeface hinted for clarity Multi-Arch: foreign Homepage: http://font.ubuntu.com/ Description-md5: cbc588fec1f6d5cfee16894159e3ab67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ttf-unifont Priority: optional Section: x11 Installed-Size: 14737 Maintainer: Ubuntu Developers Original-Maintainer: Paul Hardy Architecture: all Source: unifont Version: 1:6.3.20131221-1 Depends: xfonts-utils Filename: pool/main/u/unifont/ttf-unifont_6.3.20131221-1_all.deb Size: 2613744 MD5sum: 5349f81deba858264f088beef5965155 SHA1: 0809da33dbf0349e1d347e29e1719cb05eb33ed3 SHA256: 69add8e06afb73cead349af5f803cd6e881648aa179259c95504bbcec64c6e2e Description: TrueType version of GNU Unifont Homepage: http://unifoundry.com Description-md5: 90d7c54e33c62ff0f413a481253489be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: ttf-wqy-microhei Priority: optional Section: x11 Installed-Size: 31 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-wqy-microhei Version: 0.2.0-beta-2 Depends: fonts-wqy-microhei Filename: pool/main/f/fonts-wqy-microhei/ttf-wqy-microhei_0.2.0-beta-2_all.deb Size: 2566 MD5sum: b4a49d19fd9fa703d901ab9cfb944241 SHA1: 1b678028a52c47f3c3c6aacd6cae3bbcddbed863 SHA256: 68b9591c4efcfef2acba6b3b1ffaaacbed46130296b1cad4c01e579470a04f26 Description: transitional dummy package Homepage: http://wenq.org/ Description-md5: d022b4cd65360a59d321e029d730c59e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-active, kubuntu-active Package: ttf-wqy-zenhei Priority: optional Section: x11 Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-wqy-zenhei Version: 0.9.45-5ubuntu1 Depends: fonts-wqy-zenhei Filename: pool/main/f/fonts-wqy-zenhei/ttf-wqy-zenhei_0.9.45-5ubuntu1_all.deb Size: 2424 MD5sum: d1f76c04a11e1891367a1e8c1f3df03c SHA1: fe6df46d4c8ea5ded04d57811fedbe640ebfa5fe SHA256: 0ea936e7347907547d66ee98da1e61c35e57f300f1a2ebdcd62d7e40bdf0c984 Description: transitional dummy package Homepage: http://wqy.sourceforge.net/ Description-md5: d022b4cd65360a59d321e029d730c59e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: twisted-doc Priority: extra Section: doc Installed-Size: 2351 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Recommends: www-browser | postscript-viewer | pdf-viewer Suggests: python-twisted Filename: pool/main/t/twisted/twisted-doc_13.2.0-1ubuntu1_all.deb Size: 414770 MD5sum: 072354434c8c4857790cabd8fc86f48a SHA1: 414b967c06f044213068bc0852ed8a96d91242c6 SHA256: 259960ab6c2b49fd2534de49cb64e5916412463f454660cc0998a99bb867018b Description: Official documentation of Twisted Description-md5: 21aa08a62eeca30f3c7899faf4a7419f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: twm Priority: optional Section: x11 Installed-Size: 339 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:1.0.6-1ubuntu1 Provides: x-window-manager Depends: libc6 (>= 2.14), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxext6, libxmu6, libxt6 Filename: pool/main/t/twm/twm_1.0.6-1ubuntu1_amd64.deb Size: 108958 MD5sum: ad5f940249d41cd9822cf92a88d5b7e7 SHA1: 3ba5cb1cf6078e8c40d47ac069f4e6e2478b99ec SHA256: 762e2b7fc35c1928c787e37f5d97a6c2472f0fa7adbb5b0a9b9dbee5fd0f9479 Description: Tab window manager Description-md5: 68a4936c620d35f590b904c66528006f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: txt2man Priority: optional Section: text Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Fredrik Steen Architecture: all Version: 1.5.5-4.1 Depends: gawk Filename: pool/main/t/txt2man/txt2man_1.5.5-4.1_all.deb Size: 14844 MD5sum: ee75af43f0cfbbe1c89e19ee544d6bc9 SHA1: fb3447a0aeb415a11c56094e1c5f694c73a4e5a2 SHA256: cdc685fb227e8a55caf2e7de5d44a024ff0a3a253d1cc6668925d100c93419b4 Description: Converts flat ASCII text to man page format Homepage: http://mvertes.free.fr/download/ Description-md5: 58e0f38e7db0afabc7e8e5a7926bd386 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tzdata Priority: required Section: libs Installed-Size: 1599 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: all Version: 2014b-1 Replaces: libc0.1, libc0.3, libc6, libc6.1 Provides: tzdata-jessie Depends: debconf (>= 0.5) | debconf-2.0 Filename: pool/main/t/tzdata/tzdata_2014b-1_all.deb Size: 181992 MD5sum: c9ad8a92ad5261a6dec660353ca9902a SHA1: f4a0d2c2f464da6a0e864994b2ddb51915380b34 SHA256: 161b910d8798ba29515e92f5d073f7edbd48f6c702e97f5c86310129d2701d31 Description: time zone and daylight-saving time data Multi-Arch: foreign Homepage: http://www.iana.org/time-zones Description-md5: a77a3cc9a67658dd7cfdc6547391b8f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: tzdata-java Priority: optional Section: libs Installed-Size: 356 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: all Source: tzdata Version: 2014b-1 Depends: tzdata (= 2014b-1) Filename: pool/main/t/tzdata/tzdata-java_2014b-1_all.deb Size: 71966 MD5sum: 8794d40286cdd4b7c9ae43430f425140 SHA1: 38621880ba2192662f6a8ac781517358be7e6c1f SHA256: a67eee679e1c409517a23bd27ee2b119d12df790647a7413e694542e10bfaec5 Description: time zone and daylight-saving time data for use by java runtimes Multi-Arch: foreign Homepage: http://www.iana.org/time-zones Description-md5: 811cf395ae4cc676283711d9bc20443f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: u-boot-tools Priority: optional Section: admin Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Clint Adams Architecture: amd64 Source: u-boot Version: 2013.10-3 Replaces: u-boot (<< 2010.12-2), uboot-envtools (<< 20081215-3~), uboot-mkimage (<= 0.4build1) Depends: libc6 (>= 2.14) Breaks: u-boot (<< 2010.12-2), uboot-envtools (<< 20081215-3~), uboot-mkimage (<= 0.4build1) Filename: pool/main/u/u-boot/u-boot-tools_2013.10-3_amd64.deb Size: 64108 MD5sum: f5355d4836fb9e7f33662cdedb98d0d3 SHA1: 3cd33b704ca36e9de90bb6fdd689f1052b4d9aef SHA256: 52ee958156f8869788542a322ed38462c70b62d0dcaa27f1698d68e2f7592f0c Description: companion tools for Das U-Boot bootloader Multi-Arch: foreign Homepage: http://www.denx.de/wiki/U-Boot/ Description-md5: e725d3253d541a5a2d90da965ef577af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ubiquity Priority: optional Section: admin Installed-Size: 16093 Maintainer: Ubuntu Installer Team Architecture: amd64 Version: 2.18.7 Replaces: espresso, espresso-grub, espresso-kbd-chooser, espresso-keyboard-setup, espresso-locale, espresso-timezone, espresso-utils, espresso-yaboot, partman, ubiquity-frontend-gtk (<< 2.3.8), ubuntu-express, user-setup (<< 0.05ubuntu6) Depends: libc6 (>= 2.15), libdebconfclient0 (>= 0.145), libdebian-installer4 (>= 0.88ubuntu4), libiw30 (>= 30~pre1), libparted0debian1 (>= 2.2-1), debconf (>= 1.5.43), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python3:any (>= 3.3.2-2~), ubiquity-frontend-2.18.7, ubiquity-artwork-2.18.7, laptop-detect, lsb-release, ubiquity-casper, python3-apt (>= 0.7.100.3~), console-setup (>= 1.70ubuntu8), iso-codes, passwd, adduser, os-prober, rdate, ntfs-3g (>= 1:2011.1.15AR.4+2011.4.12-1), ecryptfs-utils, cryptsetup, policykit-1, python3-icu (>= 1.0), python3-pam, language-selector-common (>= 0.4.16), archdetect-deb, dpkg-repack, apt-clone, wget, grub-common, dbus-x11, sbsigntool Recommends: grub-pc | grub | grub-efi, dmraid, btrfs-tools, ubuntu-drivers-common, lvm2 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) Filename: pool/main/u/ubiquity/ubiquity_2.18.7_amd64.deb Size: 5188192 MD5sum: b0a2e38a7bae43e4bbabb91e57a208f3 SHA1: 025ae3753bae52affb47ae255b50bc9ef3c265b7 SHA256: 3a03347c4adfdc3e0a10a1cbaeb2b38e68961e6b1992d312938f963bb6f220d6 Description: Ubuntu live CD installer Description-md5: a02e939502ca1f257871281bbc51e7e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: ubiquity-casper Priority: optional Section: misc Installed-Size: 112 Maintainer: Ubuntu Developers Architecture: all Source: casper Version: 1.340 Replaces: casper (<< 1.318) Depends: laptop-detect, sudo Breaks: casper (<< 1.318) Filename: pool/main/c/casper/ubiquity-casper_1.340_all.deb Size: 10856 MD5sum: 019be780d052070573b1e1b6ccf79368 SHA1: edc703d67f969d047f0b6425044c2d09d944782c SHA256: a6bb0582e985683486982d24bfd882f2f017ce17b21ef41f74a2af28b8fb6383 Description: Configuration hooks for live installer Enhances: ubiquity Tag: admin::boot, admin::filesystem, implemented-in::shell, protocol::smb, role::plugin, scope::utility, special::completely-tagged, works-with-format::iso9660 Description-md5: c8d716f3fb782cd7e002d2b9dba298b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: ubiquity-frontend-debconf Priority: optional Section: admin Installed-Size: 2660 Maintainer: Ubuntu Installer Team Architecture: amd64 Source: ubiquity Version: 2.18.7 Provides: ubiquity-frontend-2.18.7 Depends: python3:any (>= 3.3.2-2~), ubiquity (= 2.18.7), debconf (>= 1.5.24ubuntu2) | cdebconf, bogl-bterm (>= 0.1.18-2ubuntu4), tasksel Filename: pool/main/u/ubiquity/ubiquity-frontend-debconf_2.18.7_amd64.deb Size: 453500 MD5sum: ffad648bf436c3b1c04c70eabddb47f8 SHA1: 8c5fed85c17ec80b26dec6a5500c44f95508f367 SHA256: f21a740319942d67a9678d2d9e61d08765945459a0d3f42bb4c358c4d24c6808 Description: debconf frontend for the Ubiquity live installer Description-md5: fa1dbae8b89fc2e16547475097735858 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ubiquity-frontend-gtk Priority: optional Section: admin Installed-Size: 810 Maintainer: Ubuntu Installer Team Architecture: amd64 Source: ubiquity Version: 2.18.7 Replaces: espresso-frontend-gtk, ubiquity (<< 2.4.3), ubuntu-express-frontend-gtk Provides: indicator-renderer, ubiquity-frontend-2.18.7 Depends: libc6 (>= 2.2.5), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libido3-0.1-0 (>= 13.10.0daily13.06.19), libindicator3-7 (>= 0.4.90), libx11-6, python3:any (>= 3.3.2-2~), ubiquity (= 2.18.7), python3-dbus, gir1.2-gtk-3.0, gir1.2-soup-2.4, gir1.2-vte-2.90, gir1.2-webkit-3.0, iso-codes, metacity | xfwm4 | matchbox-window-manager | lubuntu-default-settings | openbox | gnome-shell, gir1.2-xkl-1.0, gir1.2-timezonemap-1.0, python3-gi, python3-cairo, python3-gi-cairo, gir1.2-appindicator3-0.1, busybox-static | busybox Suggests: gnome-control-center | feh Conflicts: espresso-frontend-gtk, ubiquity (<< 2.4.3), ubuntu-express-frontend-gtk Filename: pool/main/u/ubiquity/ubiquity-frontend-gtk_2.18.7_amd64.deb Size: 86594 MD5sum: 4f3b4789f8b8d3f8e7cb7a1afe5cbf9d SHA1: e03e9c5d98536f71eb5712e1a6cba14871e82d7b SHA256: 9da54a5291a7c79250064aaf428bb9d52054db958034445bc95bd5b73af50f54 Description: GTK+ frontend for Ubiquity live installer Description-md5: 44de7bf97742fb6f9f2aaa099078ef33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: ubiquity-slideshow-ubuntu Priority: optional Section: x11 Installed-Size: 1700 Maintainer: Ubuntu Developers Original-Maintainer: Ubiquity Slideshow Team Architecture: all Version: 83 Replaces: ubiquity-slideshow Provides: ubiquity-slideshow Conflicts: ubiquity-slideshow Filename: pool/main/u/ubiquity-slideshow-ubuntu/ubiquity-slideshow-ubuntu_83_all.deb Size: 548360 MD5sum: 90c796eba7870cd1f87c90aaa694603c SHA1: 6f1fe8798bf6577f0895f9ce83012b1161c81b65 SHA256: 587edef5e30e42aa413afc29e366c9ac047e82999ac314315a8f74c683ea04a8 Description: Ubiquity slideshow for Ubuntu Homepage: https://launchpad.net/ubiquity-slideshow-ubuntu Description-md5: 56e7b38abbebcc5524fba477d78222aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live Package: ubiquity-ubuntu-artwork Priority: optional Section: admin Installed-Size: 761 Maintainer: Ubuntu Installer Team Architecture: all Source: ubiquity Version: 2.18.7 Replaces: espresso-ubuntu-artwork, espresso-ubuntu-doc, ubiquity (<< 1.13.0), ubiquity-ubuntu-doc, ubuntu-express-ubuntu-artwork, ubuntu-express-ubuntu-doc Provides: ubiquity-artwork-2.18.7 Conflicts: espresso-ubuntu-artwork, espresso-ubuntu-doc, ubiquity-ubuntu-doc, ubuntu-express-ubuntu-artwork, ubuntu-express-ubuntu-doc Filename: pool/main/u/ubiquity/ubiquity-ubuntu-artwork_2.18.7_all.deb Size: 521952 MD5sum: f2613d6d7a1b3e82dcb2020c2d4028db SHA1: aced94d0bce7a190792255f1d16f89fc5f8292fa SHA256: 3d2028093d8fd6fb068fa28e0be19cf3dc5213f966ea61e9f901d3be7eb1b408 Description: Ubuntu artwork for Ubiquity live installer Description-md5: a7bbb2b9a8b2a3fbc7110f5a8d336a36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: ubuntu-artwork Priority: optional Section: gnome Installed-Size: 72 Maintainer: Ubuntu Artwork Team Architecture: all Source: ubuntu-themes (14.04+14.04.20140410-0ubuntu1) Version: 1:14.04+14.04.20140410-0ubuntu1 Depends: adium-theme-ubuntu, light-themes, ubuntu-mono, ubuntu-wallpapers Filename: pool/main/u/ubuntu-themes/ubuntu-artwork_14.04+14.04.20140410-0ubuntu1_all.deb Size: 7618 MD5sum: 156cd24ac2275d4488adba809786afbc SHA1: f4a91db89aefb367b2eb5cf22957c2cb9e539e91 SHA256: adc9bac10dd3367c3fa0021e7c2f4cd4bc54910680dbbd7308fa2be3d18aa74e Description: Ubuntu themes and artwork Homepage: https://launchpad.net/ubuntu-themes Description-md5: 0170465a4767bae89e6586555a311676 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-cloudimage-keyring Priority: optional Section: misc Installed-Size: 32 Maintainer: Ubuntu Developers Architecture: all Version: 2013.11.11 Filename: pool/main/u/ubuntu-cloudimage-keyring/ubuntu-cloudimage-keyring_2013.11.11_all.deb Size: 4504 MD5sum: a63030f040f58f4f9b6f3e4e34a5ccfb SHA1: d1a091781f5b6899a3f1325a61ecc675983fca61 SHA256: cd98b0addb68570ad27f58238811e602a97e399af811ce9a8827ede313670b3a Description: GnuPG keys of the Ubuntu Cloud Image builder Description-md5: 51c8d5c78b723f301ee9f0718a899a94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ubuntu-defaults-builder Priority: optional Section: devel Installed-Size: 173 Maintainer: Ubuntu Developers Architecture: all Version: 0.49 Depends: perl, libjson-perl, dpkg-dev, xkb-data, debhelper (>= 7.0.50~), lsb-release, unity-common, livecd-rootfs (>= 2.75), desktop-file-utils Recommends: syslinux-themes-ubuntu, gfxboot-theme-ubuntu, memtest86+, genisoimage, syslinux Filename: pool/main/u/ubuntu-defaults-builder/ubuntu-defaults-builder_0.49_all.deb Size: 24292 MD5sum: 933843984cad21a7d265773046f3fcb2 SHA1: c9bfac79a34a698371fed0e9d2df88b75367aac3 SHA256: 49ac821de08b8478ceea97d9e85afe317ffaf35bd07448a99b40207132c875f0 Description: create Ubuntu customization packages Description-md5: add8d6d8ce217beb06d5c16ac3ff8caf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ubuntu-desktop Priority: optional Section: metapackages Installed-Size: 60 Maintainer: Ubuntu Developers Architecture: amd64 Source: ubuntu-meta Version: 1.325 Depends: alsa-base, alsa-utils, anacron, at-spi2-core, baobab, bc, ca-certificates, checkbox-gui, dmz-cursor-theme, doc-base, eog, evince, file-roller, fonts-dejavu-core, fonts-freefont-ttf, foomatic-db-compressed-ppds, gedit, genisoimage, ghostscript-x, gnome-calculator, gnome-font-viewer, gnome-menus, gnome-power-manager, gnome-screenshot, gnome-session-canberra, gnome-system-log, gnome-system-monitor, gstreamer0.10-alsa, gstreamer0.10-plugins-base-apps, gstreamer0.10-pulseaudio, gstreamer1.0-alsa, gstreamer1.0-plugins-base-apps, gstreamer1.0-pulseaudio, gucharmap, gvfs-bin, inputattach, language-selector-gnome, libatk-adaptor, libnotify-bin, libpam-systemd, libsasl2-modules, libxp6, lightdm, memtest86+, nautilus, nautilus-sendto, notify-osd, openprinting-ppds, printer-driver-pnm2ppa, pulseaudio, rfkill, seahorse, software-center, software-properties-gtk, ssh-askpass-gnome, system-config-printer-gnome, ubuntu-artwork, ubuntu-drivers-common, ubuntu-extras-keyring, ubuntu-release-upgrader-gtk, ubuntu-session, ubuntu-settings, ubuntu-sounds, ubuntu-sso-client-qt, unity, unity-control-center, unity-greeter, unity-settings-daemon, unzip, update-manager, update-notifier, wireless-tools, wpasupplicant, xdg-user-dirs, xdg-user-dirs-gtk, xdiagnose, xkb-data, xorg, yelp, zenity, zip Recommends: acpi-support, activity-log-manager-control-center, aisleriot, app-install-data-partner, apport-gtk, avahi-autoipd, avahi-daemon, bluez, bluez-alsa, bluez-cups, branding-ubuntu, brasero, brltty, cheese, cups, cups-bsd, cups-client, cups-filters, deja-dup, empathy, example-content, firefox, fonts-droid, fonts-kacst-one, fonts-khmeros-core, fonts-lao, fonts-liberation, fonts-lklug-sinhala, fonts-nanum, fonts-sil-abyssinica, fonts-sil-padauk, fonts-takao-pgothic, fonts-thai-tlwg, fonts-tibetan-machine, gcc, gnome-accessibility-themes, gnome-bluetooth, gnome-disk-utility, gnome-mahjongg, gnome-orca, gnome-screensaver, gnome-sudoku, gnome-terminal, gnomine, gvfs-fuse, hplip, ibus, ibus-gtk3, ibus-pinyin, ibus-table, im-config, kerneloops-daemon, landscape-client-ui-install, laptop-detect, libgail-common, libnss-mdns, libpam-gnome-keyring, libproxy1-plugin-gsettings, libproxy1-plugin-networkmanager, libqt4-sql-sqlite, libreoffice-calc, libreoffice-gnome, libreoffice-impress, libreoffice-math, libreoffice-ogltrans, libreoffice-pdfimport, libreoffice-presentation-minimizer, libreoffice-style-human, libreoffice-writer, libwmf0.2-7-gtk, make, mousetweaks, nautilus-share, network-manager-gnome, network-manager-pptp, network-manager-pptp-gnome, onboard, overlay-scrollbar, pcmciautils, plymouth-theme-ubuntu-logo, policykit-desktop-privileges, printer-driver-c2esp, printer-driver-foo2zjs, printer-driver-min12xxw, printer-driver-ptouch, printer-driver-pxljr, printer-driver-sag-gdi, printer-driver-splix, pulseaudio-module-bluetooth, pulseaudio-module-x11, python3-aptdaemon.pkcompat, qt-at-spi, remmina, rhythmbox, rhythmbox-plugin-magnatune, shotwell, simple-scan, sni-qt, speech-dispatcher, telepathy-idle, thunderbird, thunderbird-gnome-support, totem, totem-mozilla, transmission-gtk, ttf-indic-fonts-core, ttf-punjabi-fonts, ttf-ubuntu-font-family, ubuntu-docs, unity-webapps-common, usb-creator-gtk, vino, whoopsie, xcursor-themes, xdg-utils, xterm, xul-ext-ubufox, xul-ext-unity, xul-ext-webaccounts Filename: pool/main/u/ubuntu-meta/ubuntu-desktop_1.325_amd64.deb Size: 3758 MD5sum: 555c849e78997010ddacdd879698a1cb SHA1: a92b6d8ac8c65d87a5e29d1da07405a63d7b6e1b SHA256: b1f4021fd308de51bc66f513c3192546c4ca6c45ba70f7f45035f54cc0186e6a Description: The Ubuntu desktop system Description-md5: 40ed9ed27fdbcbed784e2ebb1810b3e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-docs Priority: optional Section: text Installed-Size: 51183 Maintainer: Ubuntu Documentation Team Architecture: all Version: 14.04.3 Depends: yelp Filename: pool/main/u/ubuntu-docs/ubuntu-docs_14.04.3_all.deb Size: 1191478 MD5sum: aee65b026d9a05a712f4acb4e92f80c5 SHA1: 1e44bbd313fefaef14121add97d0511eb67e511d SHA256: b190789a0cda14f7dfc94bc0f638b32dd81734c5e88c93ee1154641da04df15c Description: Ubuntu Desktop Guide Homepage: https://launchpad.net/ubuntu-docs Description-md5: 4f49126cad7142c4004b76be52485aaf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-drivers-common Priority: optional Section: admin Installed-Size: 266 Maintainer: Ubuntu Developers Architecture: amd64 Version: 1:0.2.91.4 Replaces: jockey-common, jockey-gtk, jockey-kde, nvidia-common (<< 1:0.2.46) Provides: jockey-common, jockey-gtk, jockey-kde, nvidia-common Depends: python3:any (>= 3.3.2-2~), python3, debconf (>= 0.5.00) | debconf-2.0, libc6 (>= 2.4), libdrm2 (>= 2.4.3), libpciaccess0 (>= 0.10.7), pciutils, python3-apt, python3-xkit, udev (>= 204-0ubuntu4~), usbutils, alsa-utils, kmod | module-init-tools Pre-Depends: dpkg (>= 1.15.7.2) Suggests: python3-aptdaemon.pkcompat Conflicts: jockey-common, jockey-gtk, jockey-kde, nvidia-common (<< 1:0.2.46) Breaks: nvidia-prime (<< 0.6) Filename: pool/main/u/ubuntu-drivers-common/ubuntu-drivers-common_0.2.91.4_amd64.deb Size: 41600 MD5sum: 601d7f5a43409f73b0ed813a1b1fea63 SHA1: bb97297754105154f6db0443384098d44c541b50 SHA256: eda2c5ac32556a6459de5991959c6ca2d06c3c862df0a3d7631700f02dd97307 Description: Detect and install additional Ubuntu driver packages Enhances: packagekit-system-interface Description-md5: de3e80d0ec34be991721f7a39da892ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ubuntu-extras-keyring Priority: optional Section: misc Installed-Size: 48 Maintainer: Michael Vogt Architecture: all Version: 2010.09.27 Depends: apt, gnupg Filename: pool/main/u/ubuntu-extras-keyring/ubuntu-extras-keyring_2010.09.27_all.deb Size: 3424 MD5sum: 60d06f11d5bf5d7a32b55864e82de686 SHA1: 0d3dd18a127325bf53e4a832f7619e4bd7956259 SHA256: c09541f0797fc3cd5a55397135533378ccaaf1b1aa7cde50bf6fbfc84024c5a0 Description: GnuPG keys of the Ubuntu extras archive Description-md5: 84bfa4e18a920b9d183b3ea71b160a8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ubuntu-keyring Priority: important Section: misc Installed-Size: 46 Maintainer: Michael Vogt Architecture: all Version: 2012.05.19 Recommends: gpgv Filename: pool/main/u/ubuntu-keyring/ubuntu-keyring_2012.05.19_all.deb Size: 16738 MD5sum: 5ea5547e8f83b77d913b152a51d44edc SHA1: 407a0c22698566eaec921d8277e01ba0f9187787 SHA256: 315a58b14eec1e9252b2a2e294f2a4be1ccd043adb58bf5b7f56a538843ed504 Description: GnuPG keys of the Ubuntu archive Multi-Arch: foreign Description-md5: 50b1d2c58bfd75a47173455de2fe5cfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: ubuntu-location-service-doc Priority: optional Section: doc Installed-Size: 3876 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: all Source: location-service Version: 0.0.2+14.04.20140307-0ubuntu1 Recommends: ubuntu-location-service-examples Filename: pool/main/l/location-service/ubuntu-location-service-doc_0.0.2+14.04.20140307-0ubuntu1_all.deb Size: 1297714 MD5sum: 7f1f271a0a87b71e26158b9824a83609 SHA1: ae2e76746a018e6a9e7aa7d4758cf8b9570c9f03 SHA256: c45a61fe393ed4bc3fe08de115de0fc27fdfc32d32ca579509d20c827d5f5945 Description: location service aggregating position/velocity/heading Multi-Arch: foreign Homepage: http://launchpad.net/location-service Description-md5: d505cbdd5cbc5261ea8e3e133712c214 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ubuntu-location-service-examples Priority: optional Section: utils Installed-Size: 370 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: amd64 Source: location-service Version: 0.0.2+14.04.20140307-0ubuntu1 Depends: libboost-program-options1.54.0, libc6 (>= 2.14), libdbus-cpp2 (>= 2.0.0+14.04.20140307), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.5), libubuntu-location-service0, ubuntu-location-service-doc Filename: pool/main/l/location-service/ubuntu-location-service-examples_0.0.2+14.04.20140307-0ubuntu1_amd64.deb Size: 76516 MD5sum: fa726237040c3373986fa5e5fd8e83f9 SHA1: e5561e960aa93aa14c4507300571650a16359480 SHA256: 0af10751eddf8d1a93d143119c61f2f6c87c3b2f4f0632eae162ad1019b1f306 Description: location service aggregating position/velocity/heading Multi-Arch: same Homepage: http://launchpad.net/location-service Description-md5: b756d42b0076b6ca3830dfd71d1a3fc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ubuntu-minimal Priority: important Section: metapackages Installed-Size: 60 Maintainer: Ubuntu Developers Architecture: amd64 Source: ubuntu-meta Version: 1.325 Depends: adduser, apt, apt-utils, bzip2, console-setup, debconf, debconf-i18n, eject, gnupg, ifupdown, initramfs-tools, iproute2, iputils-ping, isc-dhcp-client, kbd, kmod, less, locales, lsb-release, makedev, mawk, net-tools, netbase, netcat-openbsd, ntpdate, passwd, procps, python3, resolvconf, rsyslog, sudo, tzdata, ubuntu-keyring, udev, upstart, ureadahead, vim-tiny, whiptail Filename: pool/main/u/ubuntu-meta/ubuntu-minimal_1.325_amd64.deb Size: 2644 MD5sum: 8cebdcb6570624050cc61139d62ea3ef SHA1: 6d39c1b03da209329a664192fb40ca6b7b2f9b52 SHA256: 9a65bc091e3a18d604ccb93bd6347f02b7b908feb00f957b0085afcaa91f5453 Description: Minimal core of Ubuntu Description-md5: 790932f14543314e43c3705a3451df24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: ubuntu-mono Priority: optional Section: gnome Installed-Size: 4133 Maintainer: Ubuntu Artwork Team Architecture: all Source: ubuntu-themes Version: 14.04+14.04.20140410-0ubuntu1 Depends: gnome-icon-theme, hicolor-icon-theme, humanity-icon-theme Filename: pool/main/u/ubuntu-themes/ubuntu-mono_14.04+14.04.20140410-0ubuntu1_all.deb Size: 173618 MD5sum: 4e12665e911f79cff575a62cf2b32234 SHA1: 6b2792b0d02aa6ff2aabcc20e8614fcdff98d9e8 SHA256: 6c54703b8589ac2bfd92ae59477b8cc0001008bf9b8096a22184288ba84130f5 Description: Ubuntu Mono Icon theme Homepage: https://launchpad.net/ubuntu-themes Description-md5: 66d920db5c91b0cc1657a52014f604b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-release-upgrader-core Priority: standard Section: admin Installed-Size: 308 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-release-upgrader Version: 1:0.220.2 Replaces: update-manager (<< 1:0.165), update-manager-core (<< 1:0.165) Depends: python3, python3:any (>= 3.2~), python3-distupgrade (= 1:0.220.2) Recommends: libpam-modules (>= 1.0.1-9ubuntu3) Breaks: software-properties (<< 0.9.27), update-manager (<< 1:0.165), update-manager-core (<< 1:0.165) Filename: pool/main/u/ubuntu-release-upgrader/ubuntu-release-upgrader-core_0.220.2_all.deb Size: 23038 MD5sum: 1ed5d5c9ec36dbf1e8e66a854f7f93d3 SHA1: bd26449b33dc98f9972f4384421a2191fdbd9057 SHA256: ebf0db640c3548efdab9506e0dee9a8300224ce5b16c69143aa70569a13f3a93 Description: manage release upgrades Description-md5: 9b6ae3ba71aff05989e4c93c17227206 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: ubuntu-release-upgrader-gtk Priority: optional Section: admin Installed-Size: 217 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-release-upgrader Version: 1:0.220.2 Depends: ubuntu-release-upgrader-core (= 1:0.220.2), update-manager, python3-distupgrade (= 1:0.220.2), python3-dbus, python3-gi (>= 3.8), gir1.2-vte-2.90, gir1.2-gtk-3.0, gir1.2-webkit-3.0 Filename: pool/main/u/ubuntu-release-upgrader/ubuntu-release-upgrader-gtk_0.220.2_all.deb Size: 9316 MD5sum: d6409ad371a280f4592604b94f3ac3f0 SHA1: c63efe60eb95fb196b6b75b4bd17165c5247c919 SHA256: f12cf26a3d01d6d68885fbf203de8a86afd8d08c00178aae98d4891fcd01e2eb Description: manage release upgrades Description-md5: 0f775b1b3e524ee71526ea41b76d44cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ubuntu-session Priority: optional Section: gnome Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-session Version: 3.9.90-0ubuntu12 Replaces: gnome-session (<< 3.9.90-0ubuntu8), ubuntu-settings (<< 14.04.4) Provides: x-session-manager Depends: unity-settings-daemon, gnome-session-bin (>= 3.9.90-0ubuntu12), gnome-session-bin (<< 3.10), gnome-session-common (= 3.9.90-0ubuntu12) Recommends: session-migration Conflicts: gnome-session (<< 3.9.90-0ubuntu8), ubuntu-settings (<< 14.04.4) Filename: pool/main/g/gnome-session/ubuntu-session_3.9.90-0ubuntu12_all.deb Size: 2620 MD5sum: c60b085285860e1fdfd9b4e900f3d7f0 SHA1: ce47081f71061516f18670659648caac2f43a4e6 SHA256: 7522ded74cbda6e0bc3e1e1a2d8d8a8139ac825a5776d2e6f558a0c70e5c00c6 Description: Ubuntu session Description-md5: a970e0a02ce764e3bd4e916b8713a51e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-settings Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu Desktop Team Architecture: all Version: 14.04.5 Replaces: ubuntu-default-settings (<= 12.10.1) Depends: dconf-gsettings-backend | gsettings-backend, libglib2.0-bin Conflicts: ubuntu-default-settings (<= 12.10.1) Filename: pool/main/u/ubuntu-settings/ubuntu-settings_14.04.5_all.deb Size: 4422 MD5sum: 2a88e9d5411b833d9fe59523ebe2ab59 SHA1: 01b963e2ddd42e95d1f3527b1af63722350dc2c4 SHA256: c871ddc2a4dfa190d955e8e888feca2854d219c978125afd70927065946c263b Description: default settings for the Ubuntu desktop Description-md5: d323aeeccb784a54b1c845d23dcf7ea6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop Package: ubuntu-sounds Priority: optional Section: gnome Installed-Size: 396 Maintainer: Ubuntu Artwork Team Architecture: all Version: 0.13 Filename: pool/main/u/ubuntu-sounds/ubuntu-sounds_0.13_all.deb Size: 275964 MD5sum: fc236e7b57f1837c7744d74b0dceb483 SHA1: 5da9125745ddc0338a55697dbf3601abb846ecd8 SHA256: c6045754b81da430475aa1bb3bcb54576b97045753270faa4445124a24a897ae Description: Ubuntu's GNOME audio theme Description-md5: e6c6df93fbd40b265448be70e35e5927 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-sso-client Priority: extra Section: python Installed-Size: 76 Maintainer: Ubuntu Developers Architecture: all Version: 13.10-0ubuntu6 Depends: python, python-ubuntu-sso-client (= 13.10-0ubuntu6) Pre-Depends: dpkg (>= 1.15.7.2) Suggests: ubuntu-sso-client-gui Filename: pool/main/u/ubuntu-sso-client/ubuntu-sso-client_13.10-0ubuntu6_all.deb Size: 2768 MD5sum: 663b43b0bd09a59e32a5f0f951e556a4 SHA1: 0db475b4e9eb7b7c6d0071bd5e717fc6a8bce7da SHA256: 0b2f714099b1a75cf4d1da2903c42281c416a7666ce7657bbf03d184e0070e3f Description: Ubuntu Single Sign-On client Description-md5: 543a423eef794c2c13933888a7e9829f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ubuntu-sso-client-qt Priority: extra Section: python Installed-Size: 3102 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-sso-client Version: 13.10-0ubuntu6 Replaces: ubuntu-sso-client (<< 2.99.4) Provides: ubuntu-sso-client-gui Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-imaging, python-qt4, python-qt4-dbus, python-ubuntu-sso-client (= 13.10-0ubuntu6), ubuntu-sso-client (= 13.10-0ubuntu6), ubuntuone-client-data Breaks: ubuntu-sso-client (<< 2.99.4) Filename: pool/main/u/ubuntu-sso-client/ubuntu-sso-client-qt_13.10-0ubuntu6_all.deb Size: 358904 MD5sum: 0fd059ae4c00788c16b7b3e5ae85e066 SHA1: a56b7f5e86fb6981251b0576f86e3d784bec4562 SHA256: 732ef1dd60f97598426afb4ef05c440d6fb96a4e34c4499df9b55d29dde367f9 Description: Ubuntu Single Sign-On client - Qt frontend Description-md5: bf6a998bfe3cde34edbd5ee047d3e873 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-standard Priority: standard Section: metapackages Installed-Size: 60 Maintainer: Ubuntu Developers Architecture: amd64 Source: ubuntu-meta Version: 1.325 Depends: busybox-static, cpio, cron, dmidecode, dnsutils, dosfstools, ed, file, ftp, hdparm, info, iptables, language-selector-common, logrotate, lshw, lsof, ltrace, man-db, mime-support, parted, pciutils, popularity-contest, psmisc, rsync, strace, time, usbutils, wget Recommends: apparmor, apt-transport-https, bash-completion, command-not-found, friendly-recovery, iputils-tracepath, irqbalance, manpages, mlocate, mtr-tiny, nano, ntfs-3g, openssh-client, plymouth, plymouth-theme-ubuntu-text, ppp, pppconfig, pppoeconf, tcpdump, telnet, ufw, update-manager-core, uuid-runtime Filename: pool/main/u/ubuntu-meta/ubuntu-standard_1.325_amd64.deb Size: 2688 MD5sum: 784f1623257cba780de4c331c68f2dc4 SHA1: e34374819984e4a81907bbad43e22fb1cbbddf5f SHA256: 2816a67a4594b0afdf5a44392d28097e2fa657fa1925bbef0f3ad0a047c6cabf Description: The Ubuntu standard system Description-md5: 129cec702d8a0005c808781d98183ffd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: ubuntu-system-service Priority: optional Section: admin Installed-Size: 101 Maintainer: Michael Vogt Architecture: all Version: 0.2.5build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-apt (>= 0.7.0), python-dbus, policykit-1 Breaks: gnome-settings-daemon (<< 3.6.4-0ubuntu8), indicator-datetime (<< 12.10.3daily13.03.07) Filename: pool/main/u/ubuntu-system-service/ubuntu-system-service_0.2.5build1_all.deb Size: 8812 MD5sum: 1e86ce5cab865d60d5765f0d8afcb24f SHA1: b7fc418f259c7bcdb8e262768e44c696f4229c83 SHA256: bb816e620f21ff400dc99ad253934ed7f83079e201dbccca45eded88a6e70219 Description: Dbus service to set various system-wide configurations Description-md5: 8cf38bb8f33a85cc1effac46d40ae28f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ubuntu-ui-toolkit-doc Priority: optional Section: doc Installed-Size: 4303 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-ui-toolkit Version: 0.1.46+14.04.20140408.1-0ubuntu1 Replaces: qt-components-ubuntu-doc Provides: qt-components-ubuntu-doc Depends: qtdeclarative5-doc-html, qtwebkit5-doc-html, qtsvg5-doc-html, qtscript5-doc-html, qtmultimedia5-doc-html, unity-action-doc Pre-Depends: dpkg (>= 1.15.6~) Conflicts: qt-components-ubuntu-doc Filename: pool/main/u/ubuntu-ui-toolkit/ubuntu-ui-toolkit-doc_0.1.46+14.04.20140408.1-0ubuntu1_all.deb Size: 744868 MD5sum: 75a4e0fe97db44ed0deb98e7d1350459 SHA1: 26aa887a647daa2b03d23f795b02bc4ba6efe03a SHA256: 910b63ed52dd206fd20385458c0f8bf15891286b8f2df90bda48b21932023035 Description: Qt Components for Ubuntu - documentation Multi-Arch: foreign Homepage: https://launchpad.net/ubuntu-ui-toolkit Description-md5: e922bd213d5331dc69e55474100c8536 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ubuntu-ui-toolkit-theme Priority: optional Section: libs Installed-Size: 442 Maintainer: Ubuntu Developers Architecture: amd64 Source: ubuntu-ui-toolkit Version: 0.1.46+14.04.20140408.1-0ubuntu1 Replaces: qt-components-ubuntu Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/u/ubuntu-ui-toolkit/ubuntu-ui-toolkit-theme_0.1.46+14.04.20140408.1-0ubuntu1_amd64.deb Size: 188374 MD5sum: 7d71ae4bbababcbdd534f138bf7216a7 SHA1: a090d754a0d3a0a5d64fa339da8925ea1364bd54 SHA256: b8327dc24e5b7022449a30433ea84c38332576fba0bce53c0d5881f6fb8a9dce Description: Qt Components for Ubuntu - Ubuntu Theme Multi-Arch: foreign Homepage: https://launchpad.net/ubuntu-ui-toolkit Description-md5: b5751a7509e564edaeaf8baf445d5512 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-virt-server Priority: optional Section: metapackages Installed-Size: 26 Maintainer: Ubuntu MOTU developers Architecture: all Source: ubuntu-virt Version: 1.4 Depends: qemu-kvm, libvirt-bin, openssh-server Filename: pool/main/u/ubuntu-virt/ubuntu-virt-server_1.4_all.deb Size: 2344 MD5sum: c31d379e595ff358beffd8a3f16afe2e SHA1: be3b22cf5e3f75a3fe736404c5badd20d9599eb9 SHA256: d47e137b6b15dfc04b4b617b7615ee68774b6f0a620c50c4160a3ed14cc3d74e Description: Common packages necessary for hosting virtual machines Description-md5: 218b8beddebb8fa62919b04e4e72dd88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: ubuntu-wallpapers Priority: optional Section: metapackages Installed-Size: 3784 Maintainer: Ubuntu Artwork Team Architecture: all Version: 14.04.0.1-0ubuntu1 Depends: ubuntu-wallpapers-trusty Suggests: ubuntu-wallpapers-saucy, ubuntu-wallpapers-karmic, ubuntu-wallpapers-lucid, ubuntu-wallpapers-maverick, ubuntu-wallpapers-natty, ubuntu-wallpapers-oneiric, ubuntu-wallpapers-precise, ubuntu-wallpapers-quantal, ubuntu-wallpapers-raring Filename: pool/main/u/ubuntu-wallpapers/ubuntu-wallpapers_14.04.0.1-0ubuntu1_all.deb Size: 3304384 MD5sum: abbcd401023e6f10a23f3f8c16e068e2 SHA1: b55452d1e428af1c850ab0ea63edb90e8537fc4e SHA256: b325377275dee4c4f2abc0b184d660c184a047bcd2718053743542665035117e Description: Ubuntu Wallpapers Homepage: https://launchpad.net/ubuntu-wallpapers Description-md5: dee983dea3f6bb210ec03f8e97bf3e84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-wallpapers-trusty Priority: optional Section: x11 Installed-Size: 8175 Maintainer: Ubuntu Artwork Team Architecture: all Source: ubuntu-wallpapers Version: 14.04.0.1-0ubuntu1 Filename: pool/main/u/ubuntu-wallpapers/ubuntu-wallpapers-trusty_14.04.0.1-0ubuntu1_all.deb Size: 8089032 MD5sum: 10aaad910eb87b228f637fb611755b28 SHA1: 8d68f0a2457a50d1095b5ec715f2e97c64ff3c65 SHA256: c4ccaac276ad96e4b69686c9dafa23b6a4bd1263a55f99aa2ec4ac13805a7c15 Description: Ubuntu 14.04 Wallpapers Homepage: https://launchpad.net/ubuntu-wallpapers Description-md5: d961f7bd015ace8f39e0eb8d65f69715 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntuone-client-data Priority: optional Section: libs Installed-Size: 500 Maintainer: Ubuntu Developers Architecture: all Version: 13.05-0ubuntu1 Replaces: ubuntuone-client (<< 4.1.90-0ubuntu3), ubuntuone-installer Breaks: ubuntuone-client (<< 4.1.90-0ubuntu3), ubuntuone-installer Filename: pool/main/u/ubuntuone-client-data/ubuntuone-client-data_13.05-0ubuntu1_all.deb Size: 269276 MD5sum: 375a8505c2358c601a67e63950d309b6 SHA1: 6f573c650e471976f3854b3e7b17a3f6ee614cda SHA256: 3060f7ea6d6b180b13b62f4565506869a941631f4dd98402305ac21f0dce40af Description: Data files for Ubuntu One Description-md5: e854a83610bd498ee92519c2fa67c004 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntuone-dev-tools Priority: optional Section: python Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Rodney Dawes Architecture: all Version: 13.10-0ubuntu2 Depends: python, pyflakes, python-coverage, python-twisted-core, python-twisted-web, python-ubuntuone-devtools (= 13.10-0ubuntu2) Filename: pool/main/u/ubuntuone-dev-tools/ubuntuone-dev-tools_13.10-0ubuntu2_all.deb Size: 7782 MD5sum: 3b726cf378e64bd62b2e0cca956d3d60 SHA1: 312328d72a6ac4925aa9042735d913a661298fba SHA256: 2f3f7dd2b901acb28b36b0fc784debd74f5deb854cd0e5dd24d4c3351b6ae123 Description: Ubuntu One development tools Homepage: http://launchpad.net/ubuntuone-dev-tools Description-md5: 9c13d2811564059601fb0290bc7cb623 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ucf Priority: important Section: utils Installed-Size: 229 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: all Version: 3.0027+nmu1 Depends: debconf (>= 1.5.19), coreutils (>= 5.91) Filename: pool/main/u/ucf/ucf_3.0027+nmu1_all.deb Size: 56328 MD5sum: 9f8e6182138346be7e16769b931e46b8 SHA1: 5fa724ce2e6fa446a91966b4cc1a585114112705 SHA256: 6a540d4b23468eaca26a285940c16f19454af7af85de3a903f3118775a95a577 Description: Update Configuration File(s): preserve user changes to config files Multi-Arch: foreign Description-md5: 83e3ff2859524c831253d938da348878 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: udev Priority: required Section: admin Installed-Size: 5144 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: amd64 Source: systemd Version: 204-5ubuntu20 Replaces: systemd-services (<< 202-0ubuntu6) Depends: libacl1 (>= 2.2.51-8), libblkid1 (>= 2.19.1), libc6 (>= 2.17), libcgmanager0, libdbus-1-3 (>= 1.0.2), libkmod2 (>= 5~), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libselinux1 (>= 2.0.65), libudev1 (= 204-5ubuntu20), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.0-6), util-linux (>= 2.16), procps Filename: pool/main/s/systemd/udev_204-5ubuntu20_amd64.deb Size: 735012 MD5sum: a73fe64dc1cd533cbfb2000e63764667 SHA1: 367cba9634d8e3d88c72cb5f7aeb906190f8a1f6 SHA256: af6189dc2f3d97e91e38497ade4120be49377eb4a64d520d75df024920580dd6 Description: /dev/ and hotplug management daemon Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: e875ddb09f46f1f7672af537f0c875ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: udhcpc Priority: optional Section: net Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: amd64 Source: busybox Version: 1:1.21.0-1ubuntu1 Depends: busybox (>> 1:1.21.0) | busybox-static (>> 1:1.21.0) Filename: pool/main/b/busybox/udhcpc_1.21.0-1ubuntu1_amd64.deb Size: 2524 MD5sum: 56a1926d308e9b263161c32e51dec46a SHA1: c27bb964eff2b8f3bf0d3d9bfbb90d05b101faf9 SHA256: f3e95f17a1950fb495a848c1e1f7c965dc46d6095bd72b6a460aa4a723bf1716 Description: Provides the busybox DHCP client implementation Homepage: http://www.busybox.net Description-md5: a69addd7be337317bf7e51287410c758 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: udisks2 Priority: optional Section: admin Installed-Size: 852 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Version: 2.1.3-1 Depends: libacl1 (>= 2.2.51-8), libatasmart4 (>= 0.13), libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 165), libpolkit-agent-1-0 (>= 0.99), libpolkit-gobject-1-0 (>= 0.101), libudisks2-0 (>= 2.0.91), udev, dbus, parted Recommends: policykit-1, dosfstools, ntfs-3g, eject, gdisk Suggests: xfsprogs, reiserfsprogs, exfat-utils, btrfs-tools, mdadm, cryptsetup-bin Filename: pool/main/u/udisks2/udisks2_2.1.3-1_amd64.deb Size: 170360 MD5sum: acd7c5908fb2bb291137d6548130a9b2 SHA1: ac923cd63acf7a450ded173f25fc38120eb65eb2 SHA256: 7617e1ca24d75f26ca9e7076e7fb596d681a4113bec5ba07afaa2b775f440755 Description: D-BUS service to access and manipulate storage devices Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/udisks Description-md5: fa7a6172e5ea699cb0cfa07f35578751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: udisks2-doc Priority: optional Section: doc Installed-Size: 3802 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: udisks2 Version: 2.1.3-1 Suggests: devhelp Filename: pool/main/u/udisks2/udisks2-doc_2.1.3-1_all.deb Size: 186948 MD5sum: 63498480dedd6a821d228f0c55d110f7 SHA1: 69d8dfcd3a0c7ef3701f0eabfc272313acbbcdf8 SHA256: 159c08c4ccdb946b5b5c5dd945206ad25ee686f3fddfd63472753f52834d7b7b Description: udisks2 documentation Homepage: http://www.freedesktop.org/wiki/Software/udisks Description-md5: abe2995ad264193cc84ba801988f1197 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ufw Priority: standard Section: admin Installed-Size: 731 Maintainer: Jamie Strandboge Architecture: all Version: 0.34~rc-0ubuntu2 Depends: debconf, iptables, ucf, python3:any (>= 3.3.2-2~), python3, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Suggests: rsyslog Filename: pool/main/u/ufw/ufw_0.34~rc-0ubuntu2_all.deb Size: 129328 MD5sum: 444f8ee6884b37d537d7ba30c66981ea SHA1: 95580644c0f0253d8c3429e35c3d2048f2520091 SHA256: 3d9137dbd341cd2797faac952ee08ceba56d42e5b2569624f066b7e6609d09c2 Description: program for managing a Netfilter firewall Homepage: https://launchpad.net/ufw Description-md5: 90e09f8ba6c08a5698b47f5da441b4a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: uidmap Priority: optional Section: admin Installed-Size: 338 Maintainer: Ubuntu Developers Original-Maintainer: Shadow package maintainers Architecture: amd64 Source: shadow Version: 1:4.1.5.1-1ubuntu9 Depends: libc6 (>= 2.7), libselinux1 (>= 1.32) Filename: pool/main/s/shadow/uidmap_4.1.5.1-1ubuntu9_amd64.deb Size: 63300 MD5sum: b8ed9f7e3f434fc0d9209d5d54f6d130 SHA1: aedffd1bde72ea12ac1b2b2d695df5324104c857 SHA256: c4181cb921508a8463e9a15efb40987dc85fad414236c41385313cb0d2c0b131 Description: programs to help use subuids Homepage: http://pkg-shadow.alioth.debian.org/ Description-md5: 5a75630915e85aa203a9f7c82c737da4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: umockdev Priority: optional Section: devel Installed-Size: 144 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: amd64 Version: 0.8.1-1 Depends: libc6 (>= 2.17), libglib2.0-0 (>= 2.32.0), libumockdev0 (>= 0.8) Pre-Depends: multiarch-support Filename: pool/main/u/umockdev/umockdev_0.8.1-1_amd64.deb Size: 34790 MD5sum: 1830a0b7c1618ea344a782a7541acabf SHA1: 9be377a57b0ef17076fe337df36cdfe2afced325 SHA256: 0f260c213984f40d1e886b28cdc056985b698475cdb4f0bf422a118ba845d512 Description: record/mock hardware devices for bug reports and regression tests Homepage: https://github.com/martinpitt/umockdev/ Description-md5: 286db1dc230b4374b7e4132a74169450 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unattended-upgrades Priority: optional Section: admin Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Michael Vogt Architecture: all Version: 0.82.1ubuntu2 Depends: debconf (>= 0.5) | debconf-2.0, debconf, python3, python3-apt, apt-utils, apt, ucf, lsb-release, lsb-base (>= 3.2-14), xz-utils Suggests: bsd-mailx, mail-transport-agent Filename: pool/main/u/unattended-upgrades/unattended-upgrades_0.82.1ubuntu2_all.deb Size: 25508 MD5sum: d8552e1c8778d8be451b12f49ceb1314 SHA1: 96632a0b80db04734548ce4c46920b04e6080f29 SHA256: d2b1a4da5def0bc193f797e63bec8ec62a10d65979f8a2b2348621ba84d6b8d1 Description: automatic installation of security upgrades Description-md5: 13ffb6fcb282e3e2203472fa9b1a59f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: unicode-data Priority: optional Section: misc Installed-Size: 31239 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Version: 6.3.0-2 Filename: pool/main/u/unicode-data/unicode-data_6.3.0-2_all.deb Size: 6814588 MD5sum: d1ac71db74963e41baf3b8d7229d8139 SHA1: 49fcdf039b493a265f9efdc333150eb8311eb5ed SHA256: c8ee5335fca0b046bacc679492ad54f80eab8b9e2fde396831ed97c9523a51c2 Description: Property data for the Unicode character set Homepage: http://www.unicode.org/ Description-md5: 8ca2003962df648573522c5c3ca66f11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unifont Priority: optional Section: x11 Installed-Size: 6074 Maintainer: Ubuntu Developers Original-Maintainer: Paul Hardy Architecture: all Version: 1:6.3.20131221-1 Replaces: unifont-bin (<< 1:5.1.20080706-1) Depends: xfonts-unifont, ttf-unifont, xfonts-utils Suggests: unifont-bin Filename: pool/main/u/unifont/unifont_6.3.20131221-1_all.deb Size: 1390174 MD5sum: 953d59eec477911dd14d3100fdc6d309 SHA1: f7ee4784e3886aefae4161f43dde666e9e0f33ad SHA256: dbf45fe0ac1bafb3462cc37382edf096c8060a3fdbefee02b99725dbda1a51d1 Description: font with a glyph for each visible Unicode Plane 0 character Homepage: http://unifoundry.com Description-md5: bc02473fe540e171d0d8ad406484d498 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: unity Priority: optional Section: gnome Installed-Size: 5996 Maintainer: Ubuntu Developers Architecture: amd64 Version: 7.2.0+14.04.20140416-0ubuntu1 Provides: indicator-renderer Depends: compiz-core, libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libbamf3-2 (>= 0.5.0), libc6 (>= 2.17), libcairo2 (>= 1.13.0~20140204), libdbusmenu-glib4 (>= 0.4.2), libdee-1.0-4 (>= 0.5.2), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgl1-mesa-glx | libgl1, libglew1.10 (>= 1.10.0), libglib2.0-0 (>= 2.39.4), libgnome-desktop-3-7 (>= 3.2.0), libgtk-3-0 (>= 3.9.10), libindicator3-7 (>= 0.4.90), libjson-glib-1.0-0 (>= 0.12.0), libnotify4 (>= 0.7.0), libnux-4.0-0, libpam0g (>= 0.99.7.1), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), libsigc++-2.0-0c2a (>= 2.0.2), libstartup-notification0 (>= 0.2), libstdc++6 (>= 4.8), libunity-core-6.0-9 (= 7.2.0+14.04.20140416-0ubuntu1), libunity-misc4 (>= 4.0.2), libunity-protocol-private0 (>= 7.1.4+14.04.20140210), libx11-6 (>= 2:1.2.99.901), libxext6, libxfixes3 (>= 1:5.0.1-1), libxi6 (>= 2:1.7.1.901), libxrender1, libzeitgeist-2.0-0 (>= 0.9.9), session-migration, python:any, compiz, compiz-core-abiversion-20140123, libnux-abiversion-20140307.0, compiz-plugins-default, libglib2.0-bin, nux-tools, dconf-cli, unity-asset-pool (>= 0.8.18), unity-greeter, bamfdaemon, unity-scope-home Recommends: unity-control-center, unity-scope-virtualbox, unity-scope-clementine, unity-scope-gdrive, unity-scope-gourmet, unity-scope-yelp, unity-scope-tomboy, unity-scope-manpages, unity-scope-musicstores, unity-scope-openclipart, unity-lens-music, unity-scope-video-remote, unity-scope-gmusicbrowser, unity-scope-calculator, unity-scope-devhelp, unity-lens-photos, unity-scope-musique, unity-lens-applications, unity-lens-files, unity-scope-texdoc, unity-scope-guayadeque, unity-lens-video, unity-scope-colourlovers, unity-scope-audacious, unity-scope-chromiumbookmarks, unity-scope-zotero, unity-scope-firefoxbookmarks, unity-lens-friends, indicator-appmenu, indicator-application, indicator-sound, indicator-bluetooth, indicator-datetime, indicator-keyboard, indicator-messages, indicator-printers, indicator-power, indicator-session, telepathy-indicator, hud Breaks: unity-lens-applications (<< 5.12.0-0ubuntu2), unity-lens-files (<< 5.10.0-0ubuntu2), unity-lens-music (<< 6.0.0), unity-lens-video (<< 0.3.6-0ubuntu2) Filename: pool/main/u/unity/unity_7.2.0+14.04.20140416-0ubuntu1_amd64.deb Size: 1433600 MD5sum: 3573a1763cb61595fe56e7c5bccb2ce1 SHA1: e59c93c7a7248dcd36ed100f24758c6bfb9a3eed SHA256: cad164078b74933d1d28c3f578f59e637803b6dd4bb9206991120b92d69bb71a Description: Interface designed for efficiency of space and interaction. Homepage: https://launchpad.net/unity Description-md5: dec4e0049e561b260175a841cf8a6410 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-2d-dbg Priority: extra Section: debug Installed-Size: 123 Maintainer: Ubuntu Developers Architecture: all Source: unity Version: 7.2.0+14.04.20140416-0ubuntu1 Depends: unity Filename: pool/main/u/unity/unity-2d-dbg_7.2.0+14.04.20140416-0ubuntu1_all.deb Size: 4952 MD5sum: 83e98220f4e37c8dd6844aa93f1dc00d SHA1: c95de6846243c26b258c4bcacd2f32b86233a3c7 SHA256: d93fbaa42107ddbb7a3b8091100aa2f21bd5559aeba8ac4b02c75004111b6951 Description: transitional dummy package Homepage: https://launchpad.net/unity Description-md5: a06d380855fbe7cc75a9788e2760f757 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-action-doc Priority: optional Section: doc Installed-Size: 1161 Maintainer: Ubuntu Developers Original-Maintainer: Antti Kaijanmäki Architecture: all Source: unity-action-api Version: 1.1.0+14.04.20140304-0ubuntu1 Filename: pool/main/u/unity-action-api/unity-action-doc_1.1.0+14.04.20140304-0ubuntu1_all.deb Size: 409842 MD5sum: 159210a9316e8ac9e1f1c04c03ef971b SHA1: 5c34a92ef42b97ce4fdd83357916522eb056cffb SHA256: 64059ef5c4530aa5346e5081b35db7789384ef01892f1a0d0f4e2c0bac8f5234 Description: Unity Action API - documentation Homepage: https://launchpad.net/unity-action-api Description-md5: 0425b2775665716658ae3f527dae90fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-asset-pool Priority: optional Section: gnome Installed-Size: 520 Maintainer: Kenneth Wimer Architecture: all Version: 0.8.24daily13.06.10-0ubuntu1 Replaces: account-plugin-facebook (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-flickr (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-foursquare (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-google (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-icons (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-identica (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-sina (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-sohu (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-twitter (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-windows-live (<= 0.10bzr13.02.27-0ubuntu1), unity-scope-calculator, unity-scope-colourlovers, unity-scope-deviantart, unity-scope-gallica, unity-scope-github, unity-scope-googlenews, unity-scope-imdb, unity-scope-launchpad, unity-scope-manpages, unity-scope-openclipart, unity-scope-openweathermap, unity-scope-soundcloud, unity-scope-virtualbox, unity-scope-yahoostock, unity-scope-yelp, unity-webapps-common (<= 2.4.13-0ubuntu1) Provides: unity-icon-theme Depends: gnome-icon-theme, hicolor-icon-theme Breaks: account-plugin-facebook (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-flickr (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-foursquare (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-google (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-icons (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-identica (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-sina (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-sohu (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-twitter (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-windows-live (<= 0.10bzr13.02.27-0ubuntu1), unity-webapps-common (<= 2.4.13-0ubuntu1) Filename: pool/main/u/unity-asset-pool/unity-asset-pool_0.8.24daily13.06.10-0ubuntu1_all.deb Size: 169262 MD5sum: acc40bc32a9b9110f79b3d81cefa6880 SHA1: eebe801549744fab82f7fe5db6bc8b33d40a04b5 SHA256: f89fe7a7dbc0de882bd8637b479d9c05c5a6255de54072d83b9d6ad4d65408dd Description: Unity Assets Pool Homepage: https://launchpad.net/unity-asset-pool Description-md5: 7a748f3e73c229d77eb2048991888278 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-control-center Priority: optional Section: gnome Installed-Size: 4112 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 14.04.3+14.04.20140410-0ubuntu1 Replaces: gnome-bluetooth (<< 3.4.0), gnome-control-center-unity, unity-control-center-datetime Provides: gnome-control-center-unity, unity-control-center-datetime Depends: session-migration, libaccountsservice0 (>= 0.6.34), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libcheese-gtk23 (>= 3.4.0), libcheese7 (>= 3.0.1), libcolord1 (>= 0.1.29), libcups2 (>= 1.6.0), libdbus-glib-1-2 (>= 0.78), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.23.0), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgnome-bluetooth11 (>= 3.4.0), libgnome-desktop-3-7 (>= 3.7.3), libgnome-menu-3-0 (>= 3.2.0.1), libgtk-3-0 (>= 3.10.0), libgtop2-7 (>= 2.22.3), libibus-1.0-5 (>= 1.5.1), libkrb5-3 (>= 1.8+dfsg), libnm-glib4 (>= 0.9.2.0+git201202091648.c24c4d4), libnm-gtk0 (>= 0.9.1.95), libnm-util2 (>= 0.9.1.90+git.20111206t233146.dff0d2a), libnotify4 (>= 0.7.3), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.18.0), libpolkit-gobject-1-0 (>= 0.99), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), libpwquality1 (>= 1.1.0), libtimezonemap1 (>= 0.4.1), libunity-control-center1 (>= 14.04.0), libupower-glib1 (>= 0.9.2), libwacom2 (>= 0.7), libwebkitgtk-3.0-0 (>= 1.3.10), libx11-6, libxi6 (>= 2:1.2.99.4), libxml2 (>= 2.7.4), accountsservice, apg, desktop-file-utils, gkbd-capplet (>= 3.5.90), gnome-desktop3-data, gnome-icon-theme (>= 2.24), gnome-icon-theme-symbolic, gnome-menus (>= 2.12.0), unity-settings-daemon, gsettings-desktop-schemas (>= 3.5.91), gsettings-ubuntu-schemas (>= 0.0.1+14.04.20140224), ibus, indicator-bluetooth, indicator-datetime, indicator-keyboard, indicator-power, indicator-sound Recommends: cups-pk-helper, gnome-session-bin, ubuntu-system-service, ibus (>= 1.5.0), iso-codes, mousetweaks, policykit-1-gnome, libcanberra-pulse, system-config-printer-gnome, gnome-control-center-shared-data Suggests: gnome-screensaver | xscreensaver, gnome-user-guide | ubuntu-docs, gstreamer0.10-pulseaudio, libcanberra-gtk-module, x11-xserver-utils Conflicts: gnome-control-center (<< 1:3.6.3-0ubuntu50), gnome-control-center-unity, unity-control-center-datetime Breaks: compiz (<< 1:0.9.8+bzr330), gnome-bluetooth (<< 3.4.0), gnome-power-manager (<< 3.0), gnome-session (<< 3.0), libglib2.0-0 (<< 2.28.6-2), metacity (<< 1:2.34.2), unity (<< 6.2-0ubuntu2~) Filename: pool/main/u/unity-control-center/unity-control-center_14.04.3+14.04.20140410-0ubuntu1_amd64.deb Size: 726324 MD5sum: 86d6d9a858ce5840d25b9cc4c435ba8b SHA1: 9c01eb86daf8a1ebdbf250c499a33b141a218531 SHA256: 3fce41afc1f89e659f015f4eeb2c6510d3bd30fe1c53d9cf1a69014a41d9b58a Description: utilities to configure the GNOME desktop Description-md5: 841ec7130e7cda8d105ccf44ab60b8fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-control-center-dev Priority: optional Section: devel Installed-Size: 102 Maintainer: Ubuntu Desktop Team Architecture: all Source: unity-control-center Version: 14.04.3+14.04.20140410-0ubuntu1 Filename: pool/main/u/unity-control-center/unity-control-center-dev_14.04.3+14.04.20140410-0ubuntu1_all.deb Size: 72314 MD5sum: c792e7f6db8a152797f54b889f15da7c SHA1: 43c7c6e6932a3c176c816b22a04130636a62f260 SHA256: c88fa76d1bf87957166f2fd92df3baa19db30fce857d051d866ad2a78a68395f Description: utilities to configure the GNOME desktop Description-md5: ea55aa04a24ea847c61e4865c135347b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-control-center-signon Priority: optional Section: gnome Installed-Size: 467 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: gnome-control-center-signon Version: 0.1.7~+14.04.20140211.2-0ubuntu4 Replaces: gnome-control-center-signon Depends: unity-control-center, libaccount-plugin-1.0-0 (= 0.1.7~+14.04.20140211.2-0ubuntu4), libaccount-plugin-generic-oauth, libaccount-plugin-google, signon-keyring-extension, signond, libaccounts-glib0 (>= 1.4), libc6 (>= 2.3.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.2.1), libunity-control-center1 (>= 14.04.0) Conflicts: gnome-control-center-signon Filename: pool/main/g/gnome-control-center-signon/unity-control-center-signon_0.1.7~+14.04.20140211.2-0ubuntu4_amd64.deb Size: 114426 MD5sum: 56d884a607ca0af5385ec98e4d33a760 SHA1: 615d9ecbd67c779285cb05aebfdde4e0a4e1275c SHA256: b24098dd564c4d2628833086519d0e8bf46194cce83ed19c23d279a797c7db87 Description: Unity Control Center extension for single signon Homepage: https://launchpad.net/online-accounts-gnome-control-center Description-md5: b482611832b525772bb3d05e8f84beb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-greeter Priority: optional Section: x11 Installed-Size: 636 Maintainer: Ubuntu Developers Architecture: amd64 Version: 14.04.9-0ubuntu1 Provides: lightdm-greeter Depends: dconf-gsettings-backend | gsettings-backend, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libcanberra0 (>= 0.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.7.90), libgtk-3-0 (>= 3.2.1), libido3-0.1-0 (>= 13.10.0daily13.06.19), libindicator3-7 (>= 0.4.90), liblightdm-gobject-1-0 (>= 1.4.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpixman-1-0 (>= 0.30.0), libx11-6 Recommends: unity-settings-daemon, indicator-application, indicator-datetime, indicator-keyboard, indicator-power, indicator-session, indicator-sound, network-manager-gnome, lightdm Suggests: lightdm-remote-session-freerdp, lightdm-remote-session-uccsconfigure, remote-login-service Breaks: edubuntu-artwork (<< 12.01.1~) Filename: pool/main/u/unity-greeter/unity-greeter_14.04.9-0ubuntu1_amd64.deb Size: 140354 MD5sum: 78334890d73015a33129cce89062b5fa SHA1: b6ead4cedd860853533fc4c8f27f7f68290dd1a4 SHA256: 3c915842415efe2ee8e66d8dc68c7812d5418ace3494a3006567d2e6883826a1 Description: Unity Greeter Homepage: https://launchpad.net/unity-greeter Description-md5: 9877c73111a0ce6340336dbc65020a9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-gtk-module-common Priority: optional Section: libs Installed-Size: 47 Maintainer: Ubuntu Desktop Team Architecture: all Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend Filename: pool/main/u/unity-gtk-module/unity-gtk-module-common_0.0.0+14.04.20140403-0ubuntu1_all.deb Size: 4268 MD5sum: ab22fd35b79727687d87e80de1ef6f6c SHA1: 3db02dfe8a4fdb04bca63e2437d4c6b746192dcf SHA256: 64664d795b76ca9dc0e0d4a15b70096d3b1328605801e50ebf8923abf82f7655 Description: Common files for GtkMenuShell D-Bus exporter Multi-Arch: foreign Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: a388f2f9c3b576a4a57a82c196e0c105 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-gtk2-module Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Replaces: appmenu-gtk Provides: appmenu-gtk Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.31.8), libgtk2.0-0 (>= 2.24.0), libunity-gtk2-parser0 (>= 0.0.0+14.04.20140403-0ubuntu1), libx11-6, unity-gtk-module-common (>= 0.0.0+14.04.20140403-0ubuntu1) Pre-Depends: multiarch-support, dpkg (>= 1.15.7.2) Conflicts: appmenu-gtk Filename: pool/main/u/unity-gtk-module/unity-gtk2-module_0.0.0+14.04.20140403-0ubuntu1_amd64.deb Size: 8640 MD5sum: 6a6a57ee25af38ea88ff81f11465a4b3 SHA1: a5ad4506545a8908ac24eef15e405787d206da0d SHA256: 14766059980ab4fb290fb65a85f9e042063b8765f2b332eaefabcfc8666fb934 Description: GtkMenuShell D-Bus exporter Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 6fe65134935f8a101553517ad8e7624b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-gtk3-module Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Replaces: appmenu-gtk3 Provides: appmenu-gtk3 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.3.16), libunity-gtk3-parser0 (>= 0.0.0+14.04.20140403-0ubuntu1), libx11-6, unity-gtk-module-common (>= 0.0.0+14.04.20140403-0ubuntu1) Pre-Depends: multiarch-support, dpkg (>= 1.15.7.2) Conflicts: appmenu-gtk3 Filename: pool/main/u/unity-gtk-module/unity-gtk3-module_0.0.0+14.04.20140403-0ubuntu1_amd64.deb Size: 9072 MD5sum: 21dfdb5553635632535c974988b83d74 SHA1: 3fe319a2304955c75ec1500dc8fde3afd884c32e SHA256: ab5d8137f7369cded2f55c3e01c58165d96111e43b9a61fd794def703358c094 Description: GtkMenuShell D-Bus exporter Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 1ba8399e464abb249a31e76873666566 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-applications Priority: optional Section: gnome Installed-Size: 548 Maintainer: Ubuntu Developers Architecture: amd64 Version: 7.1.0+13.10.20131011-0ubuntu2 Depends: libc6 (>= 2.2.5), libcolumbus1 (>= 1.0.0+13.10.20130814.1), libdb5.3, libdee-1.0-4 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.3), libgnome-menu-3-0 (>= 3.2.0.1), libstdc++6 (>= 4.2.1), libunity-protocol-private0 (>= 7.1.3+14.04.20131029.1), libunity9 (>= 7.1.0+13.10.20130828.1), libxapian22, libzeitgeist-1.0-1 (>= 0.3.2), dconf-gsettings-backend | gsettings-backend, unity-common-7.0 | unity-common (>= 7.0.0) Breaks: unity (<< 6.0.0) Filename: pool/main/u/unity-lens-applications/unity-lens-applications_7.1.0+13.10.20131011-0ubuntu2_amd64.deb Size: 151710 MD5sum: b588f6606f58045cf497fb159885b6ca SHA1: 240a8499e91726e04779ac930fd1bc665e994b46 SHA256: f8ce0dc89f74d4b7e47ee7a9bff83da48204e75ed0f0269bf0cc058ca7772cdc Description: Application lens for unity Homepage: https://launchpad.net/unity-lens-applications Description-md5: 64b6580768b60728b82aa6db3048e181 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-files Priority: optional Section: gnome Installed-Size: 248 Maintainer: Ubuntu Developers Architecture: amd64 Version: 7.1.0+13.10.20130920-0ubuntu1 Depends: libc6 (>= 2.2.5), libdee-1.0-4 (>= 1.0.0), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.3), libunity9 (>= 7.0.0daily13.05.31ubuntu.unity.next), libzeitgeist-2.0-0 (>= 0.9.9), dconf-gsettings-backend | gsettings-backend Recommends: unity-scope-gdrive Breaks: unity (<< 6.0.0) Filename: pool/main/u/unity-lens-files/unity-lens-files_7.1.0+13.10.20130920-0ubuntu1_amd64.deb Size: 59100 MD5sum: 266b5d27f192d962394a5c4dd66ba5ee SHA1: 47a3d3289e468fe7b806a524a931ce589984cd6f SHA256: 5adcc3ebda2f72a7926b0206004a6e0161d0870dfa2e84c9ef401451b4ec6003 Description: File lens for unity Homepage: https://launchpad.net/unity-lens-files Description-md5: d1d799872a8b58da7405893b84280bc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-friends Priority: extra Section: misc Installed-Size: 146 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 0.1.3+14.04.20140317-0ubuntu1 Depends: libaccounts-glib0 (>= 1.0), libc6 (>= 2.2.5), libdee-1.0-4 (>= 1.0.2), libfriends0 (>= 0.1.0), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.28.0), libunity9 (>= 7.0.9+13.10.20130723), friends (>= 0.1.3) Filename: pool/main/u/unity-lens-friends/unity-lens-friends_0.1.3+14.04.20140317-0ubuntu1_amd64.deb Size: 22926 MD5sum: 029939f66d23794bfa99ffa7d19f099a SHA1: 6edb08001393175c43ef3c3a50cbf44cfcb5b836 SHA256: 6a18ccf4939d7021b56a9cda6d8d7076ab5d5f883b9f344e9255c3f3e3f5cd31 Description: Friends scope for unity Homepage: https://launchpad.net/unity-lens-friends Description-md5: a7a0ff92b07f223b14f4cc734465c7c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-music Priority: optional Section: gnome Installed-Size: 238 Maintainer: Ubuntu Developers Architecture: amd64 Version: 6.9.0+13.10.20131011-0ubuntu1 Depends: libc6 (>= 2.4), libdee-1.0-4 (>= 1.0.2), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libsqlite3-0 (>= 3.5.9), libtdb1 (>= 1.2.7+git20101214), libunity9 (>= 7.0.0daily13.05.31ubuntu.unity.next) Recommends: unity-scope-musicstores Breaks: unity (<< 6.0) Filename: pool/main/u/unity-lens-music/unity-lens-music_6.9.0+13.10.20131011-0ubuntu1_amd64.deb Size: 66936 MD5sum: 1691f5434f1a63845c00b0ad2f736964 SHA1: 2913a4fdf3498df3c8efe199f5135e7dc66650c1 SHA256: 8956505d9301df12cf2f1145470507b0e9eb2ee92448272e620de5582aabe159 Description: Music lens for unity Homepage: https://launchpad.net/unity-lens-music Description-md5: 67b302320475c10cd580e3ae23077992 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-photos Priority: optional Section: gnome Installed-Size: 260 Maintainer: Ubuntu Desktop Team Architecture: all Version: 1.0+14.04.20140318-0ubuntu1 Replaces: unity-lens-photo Depends: gir1.2-accounts-1.0, gir1.2-dee-1.0 (>= 1.2.5), gir1.2-gdata-0.0, gir1.2-signon-1.0, gir1.2-soup-2.4, gir1.2-unity-5.0 (>= 7), python3-httplib2, python3-oauthlib Recommends: account-plugin-flickr, account-plugin-google, account-plugin-facebook Breaks: unity-lens-photo Filename: pool/main/u/unity-lens-photos/unity-lens-photos_1.0+14.04.20140318-0ubuntu1_all.deb Size: 21854 MD5sum: afc5945d342c713b7772539efffa679d SHA1: 915dcd817ca5107f992c53b14aefd0f0b46ba02a SHA256: 28d9ede623b5d73e6acff407ae72641779810476e3a9d276e83acaad35760a02 Description: Photos lens for Unity Description-md5: 11dd73cc00b7e23f5e12f02e86be8866 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-video Priority: optional Section: gnome Installed-Size: 136 Maintainer: Ubuntu Developers Architecture: amd64 Version: 0.3.15+13.10.20130920-0ubuntu1 Depends: libc6 (>= 2.3.4), libdee-1.0-4 (>= 0.5.2), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.3), libunity9 (>= 7.0.0daily13.05.31ubuntu.unity.next), libzeitgeist-1.0-1 (>= 0.3.14), unity-lens-music (>= 6.6.0) Recommends: unity-scope-video-remote Breaks: unity (<< 6.0.0) Filename: pool/main/u/unity-lens-video/unity-lens-video_0.3.15+13.10.20130920-0ubuntu1_amd64.deb Size: 32272 MD5sum: ba4467b4b8889587143c454e12a182ec SHA1: b1ac34428b3ceff6188b682044359853b5c26606 SHA256: f2774d2dff9ab7c79101fc20cde38797f21f342047225fce7070e7ed71569084 Description: Unity Video lens Homepage: https://launchpad.net/unity-lens-video Description-md5: c3836456f570e65cc62b1f8cd7770f53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-audacious Priority: optional Section: gnome Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130927.1-0ubuntu1 Depends: python3, python3-gi, python3-dbus, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Suggests: audacious Filename: pool/main/u/unity-scope-audacious/unity-scope-audacious_0.1+13.10.20130927.1-0ubuntu1_all.deb Size: 7664 MD5sum: c7f9f5a41b89d79d0fbf42c65e19f23d SHA1: 8be3eaa722cda834646b9fb6bf4361b373ef978b SHA256: a170b9654e6b170bf10fdd4aed7f01cd7788c1abc17c9ca1093c79cb42dd5a09 Description: Audacious scope for Unity Homepage: https://launchpad.net/unity-scope-audacious Description-md5: 4b89aa31823b9fa541d80636e1e46d3a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-calculator Priority: optional Section: gnome Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: David Callé Architecture: all Version: 0.1+14.04.20140328-0ubuntu1 Depends: python3, python3-gi, gnome-calculator, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-calculator/unity-scope-calculator_0.1+14.04.20140328-0ubuntu1_all.deb Size: 5822 MD5sum: 3e39f1d65927803e2f9fed747062e4f5 SHA1: 10245c5e6290c161bfd398b0c06a52ec90f90262 SHA256: fd731ced50c4624a64b51845fc5401b0fdd5952d1a68265b6cf30b5ab43bf8bb Description: Calculator scope for Unity Homepage: https://launchpad.net/unity-scope-calculator Description-md5: 8d93a11de0498325c6255d7deadca481 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-chromiumbookmarks Priority: optional Section: gnome Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-chromiumbookmarks/unity-scope-chromiumbookmarks_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6912 MD5sum: 0aa3f225f86fd5b5c69e39e75b7ff9c2 SHA1: b32e402166e53f9b1782f2cff1e5510693b79f92 SHA256: 7534bddda37a14455fa344fe412dcf6c751591e1139fde0c150cf45573e67ec8 Description: Chromium bookmarks scope for Unity Homepage: https://launchpad.net/unity-scope-chromiumbookmarks Description-md5: 50f71a985dcb604f770935a738d6eadd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-clementine Priority: optional Section: gnome Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0, python3-dbus Suggests: clementine Filename: pool/main/u/unity-scope-clementine/unity-scope-clementine_0.1+13.10.20130723-0ubuntu1_all.deb Size: 7268 MD5sum: 4b1e7c219982409177fd3faafeee297a SHA1: 0dc4f70a9ff46f13fdf2ae39e7608851a0030f4d SHA256: bfc145c79aa26b27f24841588d398641b3cf985b34192a708194fb0f84195cfd Description: Clementine scope for Unity Homepage: https://launchpad.net/unity-scope-clementine Description-md5: 35e975589039011884b350de4f393752 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-colourlovers Priority: optional Section: gnome Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: David Callé Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-colourlovers/unity-scope-colourlovers_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6900 MD5sum: 730078cd5617a0a5eb8fb5c3ea80a315 SHA1: a663aaca428b9ed087e07c3df4f2f229efaf5db1 SHA256: 662fe201a70ccb233399cc4ea65d44fd867157f7aa9d1bbb7a8418fb17fbfc9d Description: COLOURlovers scope for Unity Homepage: https://launchpad.net/unity-scope-colourlovers Description-md5: cd126a572c278592a2f60c5591f8b6b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-devhelp Priority: optional Section: gnome Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+14.04.20140328-0ubuntu1 Depends: python3, python3-gi, python3-lxml, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-devhelp/unity-scope-devhelp_0.1+14.04.20140328-0ubuntu1_all.deb Size: 6240 MD5sum: d5fff5b5be1b651450a4f6d50764b57f SHA1: fba064a052f5119a084e0deef1166cf22ebaf518 SHA256: 933ae67d4b0b59a4859edf27e2bd0041be9fe3ab13dc6225e20db12b61fb5870 Description: devhelp scope for Unity Homepage: https://launchpad.net/unity-scope-devhelp Description-md5: f4e7d29616d262cd36bcf50c7350d5e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-firefoxbookmarks Priority: optional Section: gnome Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130809.1-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-firefoxbookmarks/unity-scope-firefoxbookmarks_0.1+13.10.20130809.1-0ubuntu1_all.deb Size: 6540 MD5sum: 8e7f0a2273163aba1ad4781b21e2f46e SHA1: 59aedf7f0724e2bdf0aa4cc5dcf59b1083f6d8b5 SHA256: a58f337bf9d13a0ea039bf180c89a9900342067197643606edc47bf11ae7fd09 Description: Firefox bookmarks scope for Unity Homepage: https://launchpad.net/unity-scope-firefoxbookmarks Description-md5: 0918b28dd49c38eae5c6af3ba66662e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-gdrive Priority: extra Section: gnome Installed-Size: 113 Maintainer: Ubuntu Developers Architecture: all Version: 0.9+13.10.20130723-0ubuntu1 Replaces: unity-lens-gdocs, unity-scope-gdocs (<< 0.8) Depends: python3, gir1.2-dee-1.0, python3-gi, gir1.2-unity-5.0 (>= 7.0), unity-scopes-runner, gir1.2-glib-2.0, gir1.2-accounts-1.0, gir1.2-signon-1.0, gir1.2-gdata-0.0, account-plugin-google Breaks: unity-lens-gdocs, unity-scope-gdocs (<< 0.8) Filename: pool/main/u/unity-scope-gdrive/unity-scope-gdrive_0.9+13.10.20130723-0ubuntu1_all.deb Size: 11648 MD5sum: 5bdea40858aa82f2e2c971f2707ceff7 SHA1: ed5349c686fdd41e9012e93180ca40eb0c08ac86 SHA256: 26f2e75ae13bef2fafe1a7db3b622fc8f546f8e568c4ed7876d1e75f8b135881 Description: Google Drive scope for Unity Homepage: https://launchpad.net/unity-scope-gdrive Description-md5: 0bef15047cc723076c239161c0a7a8a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-gmusicbrowser Priority: optional Section: gnome Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, python3-dbus, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Suggests: gmusicbrowser Filename: pool/main/u/unity-scope-gmusicbrowser/unity-scope-gmusicbrowser_0.1+13.10.20130723-0ubuntu1_all.deb Size: 7142 MD5sum: 1018a97296478b842fb87dbc2ce22189 SHA1: 158411ec6dc7d0421cb4dbf65aed3369f6137de0 SHA256: ce99ca45db6ea193e453b3c4548e8e58e5e87d0c1efa51bd20bbf68f254d0ae0 Description: gmusicbrowser scope for Unity Homepage: https://launchpad.net/unity-scope-gmusicbrowser Description-md5: b417a2cc9d7cc59b5e21c7b0c3029ed1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-gourmet Priority: optional Section: gnome Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-gourmet/unity-scope-gourmet_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6784 MD5sum: 5a51803610fc525955dd3f86db18fd97 SHA1: fda956a90eabf47ac9eeff20da5541791b017c18 SHA256: d87f98e1ee4614ba41e8671478a64d52dabc3205ac4e43c84ad836c14715bc7d Description: Gourmet Recipe Manager scope for Unity Homepage: https://launchpad.net/unity-scope-gourmet Description-md5: 3a23d30982db905600e7d9af6bff40ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-guayadeque Priority: optional Section: gnome Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130927.1-0ubuntu1 Depends: python3, python3-gi, python3-dbus, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Suggests: guayadeque Filename: pool/main/u/unity-scope-guayadeque/unity-scope-guayadeque_0.1+13.10.20130927.1-0ubuntu1_all.deb Size: 7776 MD5sum: ce0840776c33584b48fdbf3b7a2d95e9 SHA1: faec57b982a2fbaa69b0830e7d4d8d00f51a99b9 SHA256: bed351d98d33273003df9b6d38c44386d07517ef24907fc26a19ae80d53329d4 Description: Guayadeque scope for Unity Homepage: https://launchpad.net/unity-scope-guayadeque Description-md5: 0d86a5d6da27223c3ec2b4da1d3c5e26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-home Priority: optional Section: gnome Installed-Size: 334 Maintainer: Ubuntu Developers Architecture: amd64 Version: 6.8.2+14.04.20131029.1-0ubuntu1 Replaces: unity-lens-shopping, unity-scope-asklibreoffice, unity-scope-askubuntu, unity-scope-deviantart, unity-scope-gallica, unity-scope-github, unity-scope-googlenews, unity-scope-openweathermap, unity-scope-soundcloud, unity-scope-sumo, unity-scope-yahoostock Provides: unity-lens-shopping, unity-scope-asklibreoffice, unity-scope-askubuntu, unity-scope-deviantart, unity-scope-gallica, unity-scope-github, unity-scope-googlenews, unity-scope-openweathermap, unity-scope-soundcloud, unity-scope-sumo, unity-scope-yahoostock Depends: libc6 (>= 2.7), libdee-1.0-4 (>= 1.2.0daily12.12.05), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.31.8), libjson-glib-1.0-0 (>= 0.13.2), libsoup-gnome2.4-1 (>= 2.27.4), libsoup2.4-1 (>= 2.24.3), libunity-protocol-private0 (>= 7.1.3+14.04.20131029), libunity9 (>= 7.1.3+14.04.20131029), libuuid1 (>= 2.16), lsb-release, unity-scopes-master-default | unity-scopes-master Conflicts: unity-lens-shopping, unity-scope-asklibreoffice, unity-scope-askubuntu, unity-scope-deviantart, unity-scope-gallica, unity-scope-github, unity-scope-googlenews, unity-scope-openweathermap, unity-scope-soundcloud, unity-scope-sumo, unity-scope-yahoostock Filename: pool/main/u/unity-scope-home/unity-scope-home_6.8.2+14.04.20131029.1-0ubuntu1_amd64.deb Size: 105188 MD5sum: 124a82889dbf0e6b4f47a831e6712054 SHA1: 31b2d57190afbbfa9b6c64227ad449c197ad0289 SHA256: 838a105905fb2d0214cd9624b476b58318c90d0aa4458819ccbd05bc672812d9 Description: Home scope that aggregates results from multiple scopes Homepage: https://launchpad.net/unity-scope-home Description-md5: 294a8f7bb2c43ac24034217199d75858 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-manpages Priority: optional Section: gnome Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 3.0+14.04.20140324-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0, gir1.2-gtk-3.0, man-db Filename: pool/main/u/unity-scope-manpages/unity-scope-manpages_3.0+14.04.20140324-0ubuntu1_all.deb Size: 5954 MD5sum: d8b8f00c000e433e28d9a1ed00048259 SHA1: 6ada20bc41d1bfd0c29f14656f713efe2fe32168 SHA256: 9e157ace803dcc1670cdf44a5a16918b5ad190922f88b9d400cd552ba3028f49 Description: Manual pages scope for Unity Homepage: https://launchpad.net/unity-scope-manpages Description-md5: 357e355c23cf839ca9389de8e3655728 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-musicstores Priority: optional Section: gnome Installed-Size: 198 Maintainer: Ubuntu Developers Architecture: amd64 Source: unity-lens-music Version: 6.9.0+13.10.20131011-0ubuntu1 Depends: libc6 (>= 2.3.4), libdee-1.0-4 (>= 0.5.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.3), libjson-glib-1.0-0 (>= 0.12.0), libnotify4 (>= 0.7.0), liboauth0 (>= 0.9.1), libsoup2.4-1 (>= 2.4.0), libunity9 (>= 7.0.0daily13.05.31ubuntu.unity.next) Filename: pool/main/u/unity-lens-music/unity-scope-musicstores_6.9.0+13.10.20131011-0ubuntu1_amd64.deb Size: 51322 MD5sum: cbdaeae13ff715cb2871eb9f24f18662 SHA1: f71182a5c76c07eaae74b4510b345a9c1a4eb41e SHA256: 3cc555a1babf9a473ee50761c40aee0d9e77d6f7e1c61f1079d5ea81980525ab Description: Ubuntu One music store scope for unity Homepage: https://launchpad.net/unity-lens-music Description-md5: 60207a73362aedcd96371aa298d66214 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-musique Priority: optional Section: gnome Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0, python3-dbus Suggests: musique Filename: pool/main/u/unity-scope-musique/unity-scope-musique_0.1+13.10.20130723-0ubuntu1_all.deb Size: 7354 MD5sum: ae6a1f46a143e218f854a102eae8525d SHA1: cf8f13256dd48846fdb8a715afa7a87a6731994c SHA256: 097006f2e8148f85eb48122a6557b67e4abbda9fe3dac93c16069797f7e5f44f Description: Musique scope for Unity Homepage: https://launchpad.net/unity-scope-musique Description-md5: ccb12da918700e8b9e1459e20dc34abc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-openclipart Priority: optional Section: gnome Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: David Callé Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0, python3-feedparser Filename: pool/main/u/unity-scope-openclipart/unity-scope-openclipart_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6328 MD5sum: 70eb95ead7e5e09d1ae8c92062308afd SHA1: e3b9bbef37274e7ff24ba9618d1afe622b885c1c SHA256: 10939b658effc2f2557d14d0de734d9004112498ce94ae6ff659e6d6c7425848 Description: OpenClipArt scope for Unity Homepage: https://launchpad.net/unity-scope-openclipart Description-md5: 6bb953916026935117d740135f56e679 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-texdoc Priority: optional Section: gnome Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+14.04.20140328-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-texdoc/unity-scope-texdoc_0.1+14.04.20140328-0ubuntu1_all.deb Size: 5926 MD5sum: c0b1ed2bb3f50f2d5727969af4882615 SHA1: a3340c97333ee65a01d30ab57a9db154ea479a0a SHA256: 238bb78a2609f7fa916213aa3245b35e40bd538758a1916fc423d8296d2e9292 Description: Texdoc scope for Unity Homepage: https://launchpad.net/unity-scope-texdoc Description-md5: 96500a084f9dc3c5502e9c1f58afc4e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-tomboy Priority: optional Section: gnome Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: David Callé Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Suggests: tomboy Filename: pool/main/u/unity-scope-tomboy/unity-scope-tomboy_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6462 MD5sum: b916308bbfc9c24ba3a2b314d4524ffc SHA1: aa11745cec7a65d134d3b47ec2e0773122e7f787 SHA256: 2a4ff88e4ec0aa4b1ab97c2b2cba0ca3339b675b62d4372a43340a277e449943 Description: Tomboy scope for Unity Homepage: https://launchpad.net/unity-scope-tomboy Description-md5: 07730f5e1647a02b16f71903ce0e85a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-video-remote Priority: optional Section: gnome Installed-Size: 112 Maintainer: Ubuntu Developers Architecture: amd64 Source: unity-lens-video Version: 0.3.15+13.10.20130920-0ubuntu1 Depends: libc6 (>= 2.2.5), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.27), libjson-glib-1.0-0 (>= 0.12.0), libsoup-gnome2.4-1 (>= 2.27.4), libsoup2.4-1 (>= 2.24.3), libunity9 (>= 7.0.9+13.10.20130723), libzeitgeist-1.0-1 (>= 0.3.14) Filename: pool/main/u/unity-lens-video/unity-scope-video-remote_0.3.15+13.10.20130920-0ubuntu1_amd64.deb Size: 24452 MD5sum: e3d8d9be93331049cd9204f4305251ca SHA1: de7cdafea1785dd29d491cedd616d83d531ee1b2 SHA256: 1dbb9ebbe51816b4590b8193ca2e10ae0955ac8133bc65eff3228e0714b0436f Description: Remote videos engine Enhances: unity-lens-video Homepage: https://launchpad.net/unity-lens-video Description-md5: 5aced980cde9880d8d415e4952813f23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-virtualbox Priority: optional Section: gnome Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: David Callé Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Replaces: unity-lens-vm Provides: unity-lens-vm Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Conflicts: unity-lens-vm Filename: pool/main/u/unity-scope-virtualbox/unity-scope-virtualbox_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6524 MD5sum: 34b71dc463c3ff3d8b174637a6f98e95 SHA1: 52ceadd61595e71b463a3951ab44fa99b8197d60 SHA256: 7f9e798d8beff7f47382fc76cd09125ba41615aba6b949f929d1d9e22b593eee Description: VirtualBox scope for Unity Homepage: https://launchpad.net/unity-scope-virtualbox Description-md5: 86d7702f416b56c757ed2108ed496f36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-yelp Priority: optional Section: gnome Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Replaces: unity-lens-help Provides: unity-lens-help Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Conflicts: unity-lens-help Filename: pool/main/u/unity-scope-yelp/unity-scope-yelp_0.1+13.10.20130723-0ubuntu1_all.deb Size: 7100 MD5sum: 76b157dc464bdb1570229d66ec7aa9f7 SHA1: e590533454e0f278f3f55cd4cbfb524583057e3b SHA256: bd0e0db75321a301e573d66b872d50155507308f6faf922992a7c293741326e8 Description: Help scope for Unity Homepage: https://launchpad.net/unity-scope-yelp Description-md5: 5dc19f73d730c2ed4326dbdb8a80369d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-zotero Priority: optional Section: gnome Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-zotero/unity-scope-zotero_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6604 MD5sum: e7ec3e6819b68049a8df5b2b3b752809 SHA1: 0aa23f51dd2908b15d7b2e5c15387dc1f4f9788b SHA256: 2e5a8e76697a14b2f06c9522139de4d14138db83fb4b8fdbf21d9db31f6224a0 Description: Zotero scope for Unity Homepage: https://launchpad.net/unity-scope-zotero Description-md5: 4717cab06b3ce45071dea89e37046803 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scopes-master-default Priority: optional Section: gnome Installed-Size: 54 Maintainer: Ubuntu Developers Architecture: all Source: unity-scope-home Version: 6.8.2+14.04.20131029.1-0ubuntu1 Replaces: unity-scope-home (<< 6.8.1) Provides: unity-scopes-master Filename: pool/main/u/unity-scope-home/unity-scopes-master-default_6.8.2+14.04.20131029.1-0ubuntu1_all.deb Size: 6686 MD5sum: f8a724a473582e6e130dd93ad344c5b3 SHA1: a86c30df724afb32cbd1a3bb62b6abc056289fd1 SHA256: dd75d962e52f80ae0b674b193a999913b66a37a718f8f3101d2efb28c938dfc9 Description: Home scope that aggregates results from multiple scopes Homepage: https://launchpad.net/unity-scope-home Description-md5: 46030d6e70539b545984910ffe58efe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scopes-runner Priority: optional Section: gnome Installed-Size: 53 Maintainer: Ubuntu Core Developers Architecture: all Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Filename: pool/main/libu/libunity/unity-scopes-runner_7.1.4+14.04.20140210-0ubuntu1_all.deb Size: 4158 MD5sum: 39bbf07526735936ca285d541ca28b96 SHA1: bc7ad6b81ed0658ae48b4cfe52071a114c0d00f8 SHA256: 7840a620adc6d322b739f3fab03a448f4d0e74aec56f2f99be8a713664e14b8d Description: desktop runner for misceallenous scopes Homepage: https://launchpad.net/libunity Description-md5: 08e02b02866b8cee0b5d062879555ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-services Priority: optional Section: gnome Installed-Size: 219 Maintainer: Ubuntu Developers Architecture: amd64 Source: unity Version: 7.2.0+14.04.20140416-0ubuntu1 Depends: libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libdbus-1-3 (>= 1.0.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.39.1), libgtk-3-0 (>= 3.9.10), libido3-0.1-0 (>= 13.10.0daily13.06.19), libindicator3-7 (>= 0.4.90), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libupstart1 (>= 1.9.1), libx11-6, upstart Filename: pool/main/u/unity/unity-services_7.2.0+14.04.20140416-0ubuntu1_amd64.deb Size: 29652 MD5sum: d5c70fb7b28f7be45d362ea6ea834940 SHA1: ce3fb37b4187c9469e993c6622e7d552f43ff9b9 SHA256: a090b06c71ade33ffa62a5ab993678243b104c582d41c6eed974c9cc20fabde6 Description: Services for the Unity interface Homepage: https://launchpad.net/unity Description-md5: 739e58e2989afe568092890f45df8b83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-settings-daemon Priority: optional Section: gnome Installed-Size: 2656 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 14.04.0+14.04.20140414-0ubuntu1 Depends: libaccountsservice0 (>= 0.6.35-0ubuntu7), libasound2 (>= 1.0.16), libc6 (>= 2.14), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libcolord1 (>= 0.1.31), libcups2 (>= 1.6.0), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.7.90), libgtk-3-0 (>= 3.7.10), libgudev-1.0-0 (>= 146), libibus-1.0-5 (>= 1.5.1), liblcms2-2 (>= 2.2+git20110628), libnotify4 (>= 0.7.3), libpango-1.0-0 (>= 1.22.0), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), librsvg2-2 (>= 2.36.2), libupower-glib1 (>= 0.9.0), libwacom2 (>= 0.7), libx11-6, libxext6, libxfixes3 (>= 1:4.0.1), libxi6 (>= 2:1.2.99.4), libxkbfile1, libxtst6, dconf-gsettings-backend | gsettings-backend, accountsservice (>= 0.6.34), gsettings-desktop-schemas (>= 3.7.2.1), nautilus-data (>= 2.91.3-1), gnome-settings-daemon-schemas (>= 3.8), gnome-settings-daemon-schemas (<< 3.10), gsettings-ubuntu-schemas (>= 0.0.1+14.04.20140224) Recommends: ibus (>= 1.5.0), pulseaudio, systemd-services Suggests: x11-xserver-utils, gnome-screensaver, metacity | x-window-manager Breaks: banshee (<< 0.13.2+dfsg-7), gnome-color-manager (<< 3.0), gnome-control-center (<< 1:3.6.3-0ubuntu35), gnome-screensaver (<< 2.28.0), gnome-session (<< 3.9.90-0ubuntu6), indicator-datetime (<< 12.10.3daily13.03.26), rhythmbox (<< 0.11.5), totem (<< 2.22.0), unity (<< 7.1.2+14.04.20140214.1-0ubuntu1), unity-greeter (<< 0.2.1-0ubuntu1) Filename: pool/main/u/unity-settings-daemon/unity-settings-daemon_14.04.0+14.04.20140414-0ubuntu1_amd64.deb Size: 484830 MD5sum: 59e4686d61f67b8ad6a1587a23926fcf SHA1: da95ee7455069e2a9c0a89569b9d98b1406ad7a0 SHA256: 5f096e11724c2dfbe0c3cf0ef8f4585dc319b34685ca5015ffe664695e77409b Description: daemon handling the Unity session settings Description-md5: aea2dacf99fdb4c9af627c901ebc2b15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-settings-daemon-dev Priority: optional Section: gnome Installed-Size: 124 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: unity-settings-daemon Version: 14.04.0+14.04.20140414-0ubuntu1 Depends: libdbus-glib-1-dev (>= 0.74), libglib2.0-dev (>= 2.35.3) Filename: pool/main/u/unity-settings-daemon/unity-settings-daemon-dev_14.04.0+14.04.20140414-0ubuntu1_amd64.deb Size: 37866 MD5sum: 94fbc430f2e8d012eea2b48545640616 SHA1: 8e4b9a7d475161eb99df4cb5b7d68aa889e4cb19 SHA256: 22377655dc1d7f2241b0f4764f3cbc8092a74ae0f91f9cc58e6711a99e9c6d02 Description: Headers for building applications communicating with unity-settings-daemon Description-md5: 49b4ff9931ee8b6c680c024f7fcce33b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-voice-service Priority: optional Section: gnome Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Pete Woods Architecture: amd64 Source: unity-voice Version: 0.1+14.04.20140304-0ubuntu1 Depends: sphinx-voxforge-hmm-en, sphinx-voxforge-lm-en, libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libpocketsphinx1, libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libsphinxbase1 (>= 0.4.1), libstdc++6 (>= 4.1.1) Filename: pool/main/u/unity-voice/unity-voice-service_0.1+14.04.20140304-0ubuntu1_amd64.deb Size: 23580 MD5sum: 2e98e5afbb15066e90d665168ed27da8 SHA1: dd5eca0609ebff334949baa62d4e9c4663d101fa SHA256: 5040f11875e0c9cd6cceb4e5d27e5786c00bcd9b758b0d8b8bead41d76256173 Description: Voice recognition service for unity Multi-Arch: same Homepage: https://launchpad.net/unity-voice Description-md5: 94661cbe700749c738ec35dc6e483982 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-webapps-common Priority: optional Section: gnome Installed-Size: 130 Maintainer: Ubuntu Developers Architecture: all Source: webapps-applications Version: 2.4.17+14.04.20140416-0ubuntu1 Replaces: unity-webapps Depends: gir1.2-glib-2.0, python, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1), unity-webapps-service (>= 2.3.8-0ubuntu3), xdg-utils, session-migration Suggests: xul-ext-unity (>= 0.3.1) | unity-chromium-extension Breaks: unity-webapps, unity-webapps-amazon, unity-webapps-angrybirds, unity-webapps-cuttherope, unity-webapps-facebookapps, unity-webapps-googlereader, unity-webapps-lordofultima, unity-webapps-tiberiumalliances Filename: pool/main/w/webapps-applications/unity-webapps-common_2.4.17+14.04.20140416-0ubuntu1_all.deb Size: 10882 MD5sum: 82b9fbb453b617d0a03ac896f7e17056 SHA1: c0f964f602a847ba52f2b0d1576977fa58d8e405 SHA256: b727fbd30cb603db3b04a29f01bc634857dbcaa8afbf3058d8eeae48a0962b40 Description: Unity WebApp integration scripts Homepage: https://launchpad.net/webapps-applications Description-md5: 6239cf9f51a5f55b69feac74e29c76c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-webapps-qml Priority: optional Section: gnome Installed-Size: 663 Maintainer: Ubuntu Desktop Team Architecture: amd64 Version: 0.1+14.04.20140408-0ubuntu1 Depends: libqt5webkit5-qmlwebkitplugin, liboxideqt-qmlplugin (>= 1.0), qtdeclarative5-qtquick2-plugin, qtdeclarative5-unity-action-plugin, qtdeclarative5-ubuntu-ui-toolkit-plugin, qtdeclarative5-accounts-plugin, libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.20.0), libmessaging-menu0 (>= 12.10.2), libnotify4 (>= 0.7.0), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2), libstdc++6 (>= 4.1.1), libunity9 (>= 4.0.0) Suggests: qtdeclarative5-ubuntu-content0.1 Filename: pool/main/u/unity-webapps-qml/unity-webapps-qml_0.1+14.04.20140408-0ubuntu1_amd64.deb Size: 132698 MD5sum: 00d1e910c02ad290a4e40aff479160fa SHA1: fbde532679bf3e8cabeba12d8c64ce8a1dbe0811 SHA256: c813b24d7edb764f79ff24f3efe94acc966dc13742aa36cc38da75e1854dabb8 Description: Unity Webapps QML component Homepage: https://launchpad.net/unity-webapp-qml Description-md5: 1e74fa6c3286383cd2cf95b0cfe337a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-webapps-qml-doc Priority: optional Section: doc Installed-Size: 183 Maintainer: Ubuntu Desktop Team Architecture: all Source: unity-webapps-qml Version: 0.1+14.04.20140408-0ubuntu1 Suggests: unity-webapps-qml-examples Filename: pool/main/u/unity-webapps-qml/unity-webapps-qml-doc_0.1+14.04.20140408-0ubuntu1_all.deb Size: 14672 MD5sum: 1c3ef38560ab37352658e4d34ca1901c SHA1: 5813929e19a380dc361a891f056ba8ad14d77d8a SHA256: 36f05e124a9409130dbd71b5700fffadfce4b8548a8ab8d3bbee649ee20c4039 Description: Documentation for Unity Webapps QML - documentation Homepage: https://launchpad.net/unity-webapp-qml Description-md5: 62c935a6f4b10ac91afb30b8e8d762e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-webapps-qml-examples Priority: optional Section: libs Installed-Size: 127 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: unity-webapps-qml Version: 0.1+14.04.20140408-0ubuntu1 Depends: qtdeclarative5-window-plugin, qmlscene, unity-webapps-qml (>= 0.1+14.04.20140408-0ubuntu1) Filename: pool/main/u/unity-webapps-qml/unity-webapps-qml-examples_0.1+14.04.20140408-0ubuntu1_amd64.deb Size: 13180 MD5sum: 013543796aef02b8663d5d6bb2b62564 SHA1: 92bdbc41b7f7030fb50c76040a3b420277961235 SHA256: 812215b13972cdae3772dc7e489d400315be9cded153e29c237ff5171c1ae3e3 Description: Example usage of Unity Webapps QML component Homepage: https://launchpad.net/unity-webapp-qml Description-md5: 235b7b4ac2bb4a797af08154ff31ba36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-webapps-service Priority: optional Section: gnome Installed-Size: 488 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: libunity-webapps Version: 2.5.0~+14.04.20140409-0ubuntu1 Depends: geoclue-ubuntu-geoip | geoclue-provider, webapp-container, dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.3.4), libdbusmenu-glib4 (>= 0.4.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libgeoclue0 (>= 0.11.1), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libjson-glib-1.0-0 (>= 0.12.0), libmessaging-menu0 (>= 12.10.2), libnotify4 (>= 0.7.0), libsoup2.4-1 (>= 2.4.0), libsqlite3-0 (>= 3.5.9), libtelepathy-glib0 (>= 0.11.3), libunity-webapps0 (>= 2.3.1), libunity9 (>= 5.0.0), libwnck-3-0 (>= 2.91.6) Filename: pool/main/libu/libunity-webapps/unity-webapps-service_2.5.0~+14.04.20140409-0ubuntu1_amd64.deb Size: 82874 MD5sum: 2742637e8eafc69bb1b425457a31cfa5 SHA1: 1494588d5018ee7cf70fd92c7dd1436052725b57 SHA256: fcf19168d8c29edaafa45195c95664289b174f4d783683f56d9171847f1f03e0 Description: Service for Web Apps integration with the Unity desktop Homepage: https://launchpad.net/libunity-webapps Description-md5: b150af47b4181bd5946d75d2a40a22ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unixodbc Priority: optional Section: libs Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Version: 2.2.14p2-5ubuntu5 Depends: libc6 (>= 2.14), libreadline6 (>= 6.0), odbcinst1debian2 (>= 2.2.11-3), libodbc1 (>= 2.2.14p2-3) Conflicts: unixodbc-bin (<< 2.2.4-1) Filename: pool/main/u/unixodbc/unixodbc_2.2.14p2-5ubuntu5_amd64.deb Size: 19796 MD5sum: 1467e817f1dec689f4a29f8d80493e76 SHA1: 23e4fcfafc7ad0abfb9aaaf2484407857f46e640 SHA256: 605f8350f5b2de1ba0d1fc09e3b2f5f68dd674fa19228743c2b1959234083627 Description: Basic ODBC tools Multi-Arch: foreign Homepage: http://www.unixodbc.org/ Description-md5: dbef25e3cf8e980a394982ef6927a9ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Package: unixodbc-dev Priority: extra Section: devel Installed-Size: 1698 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: amd64 Source: unixodbc Version: 2.2.14p2-5ubuntu5 Depends: unixodbc (= 2.2.14p2-5ubuntu5), odbcinst1debian2 (= 2.2.14p2-5ubuntu5), libltdl3-dev Conflicts: libiodbc2-dev, remembrance-agent (<< 2.11-4) Filename: pool/main/u/unixodbc/unixodbc-dev_2.2.14p2-5ubuntu5_amd64.deb Size: 210864 MD5sum: a4e30ab3a3a219ec0eb5819945e0b2e3 SHA1: 51c0b60aaa91062bd70f7d632beb917ff5b6d8fd SHA256: 6bf034512de319484a98db8ed9c660f69addb498ab77fca2aa17464d672dd9b8 Description: ODBC libraries for UNIX (development files) Homepage: http://www.unixodbc.org/ Description-md5: 810ff6350f7d3725bcea408feaf73610 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: uno-libs3 Priority: optional Section: libs Installed-Size: 2272 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice (1:4.2.3~rc3-0ubuntu2) Version: 4.2.3~rc3-0ubuntu2 Replaces: ure (<< 4.0.3-2) Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Breaks: ure (<< 4.1.2~) Filename: pool/main/libr/libreoffice/uno-libs3_4.2.3~rc3-0ubuntu2_amd64.deb Size: 621592 MD5sum: 3c09b9e8caa48aa421342df0dd040f92 SHA1: d605a96d511992a3f3f91309335dbb6e4e672c40 SHA256: 97bcc16fd9ab0881fba12eff1610c3e6583ae1a0dd924062c18f2d8dc2b96a36 Description: LibreOffice UNO runtime environment -- public shared libraries Homepage: http://www.libreoffice.org Description-md5: c32efa4eb8b817c0d411d2ca5f54514b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: uno-libs3-dbg Priority: extra Section: libdevel Installed-Size: 18374 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice (1:4.2.3~rc3-0ubuntu2) Version: 4.2.3~rc3-0ubuntu2 Replaces: ure-dbg (<< 4.0.3-2) Depends: uno-libs3 (= 4.2.3~rc3-0ubuntu2) Filename: pool/main/libr/libreoffice/uno-libs3-dbg_4.2.3~rc3-0ubuntu2_amd64.deb Size: 3812926 MD5sum: fc30b54d9baf6ed635b73960f0d91503 SHA1: c987a62d34682de029a9fc247b7db92d54e190ce SHA256: 8f912bb9c7f75c9f5afa1dd2de73863a7aa4b95d7485cee8d198efba43cb7f5c Description: LibreOffice UNO runtime environment -- public shared library debug symbols Homepage: http://www.libreoffice.org Description-md5: d54b5319764bd01ea24fe172e068cee5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unzip Priority: optional Section: utils Installed-Size: 381 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 6.0-9ubuntu1 Replaces: unzip-crypt (<< 5.41) Depends: libbz2-1.0, libc6 (>= 2.14) Suggests: zip Conflicts: unzip-crypt (<< 5.41) Filename: pool/main/u/unzip/unzip_6.0-9ubuntu1_amd64.deb Size: 192854 MD5sum: 560d29b9cb418987787b50248e1e189b SHA1: 4fa90e897c93fdf3582d4efb46717ab94cee5011 SHA256: 98a44109511d90971354799c4a22fd4b6fbee8ba6e2668711fe7f4f69661b173 Description: De-archiver for .zip files Multi-Arch: foreign Homepage: http://www.info-zip.org/UnZip.html Description-md5: b83e2b495da5d292f3fe6ab67b088c47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: update-inetd Priority: optional Section: admin Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Serafeim Zanikolas Architecture: all Version: 4.43 Replaces: netbase (<< 4.27) Depends: debconf (>= 0.5) | debconf-2.0, libfile-temp-perl, libfile-copy-recursive-perl Breaks: netbase (<< 4.27) Filename: pool/main/u/update-inetd/update-inetd_4.43_all.deb Size: 19208 MD5sum: 6e166b2422a7dff8154cdd3fdf1e0af7 SHA1: d757fed82ee72ed0979f7306bff37616c91ac0ee SHA256: 333ff26154674df689b09567f6af4da99b826ba5e57c1f09fe1923acac4e7619 Description: inetd configuration file updater Multi-Arch: foreign Description-md5: 9a09f5c7959d1200217cfebee811fa42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: update-manager Priority: optional Section: gnome Installed-Size: 1059 Maintainer: Ubuntu Developers Architecture: all Version: 1:0.196.11 Depends: python3:any (>= 3.3.2-2~), python3, dconf-gsettings-backend | gsettings-backend, update-manager-core (= 1:0.196.11), python3-aptdaemon.gtk3widgets (>= 0.40) | synaptic, policykit-1, python3-dbus, python3-gi (>= 3.8), gir1.2-vte-2.90, gir1.2-gtk-3.0, ubuntu-release-upgrader-gtk, update-notifier, policykit-1-gnome | policykit-1-kde | lxpolkit | mate-polkit | razorqt-policykit-agent Recommends: software-properties-gtk (>= 0.71.2) Suggests: gir1.2-dbusmenu-glib-0.4, gir1.2-unity-5.0 Filename: pool/main/u/update-manager/update-manager_0.196.11_all.deb Size: 543864 MD5sum: 4f33497779ad1c7d13b74e21bf21ccdd SHA1: 6fe2ff826353773173565537e2e1eed83ad7039c SHA256: c29f6c09283ead42774cd1a59ac2d980ec6f2b192e4e7813b892d25a10a2814c Description: GNOME application that manages apt updates Description-md5: 590b36e19703392a6fe86ceaa8467c85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: update-manager-core Priority: standard Section: admin Installed-Size: 156 Maintainer: Ubuntu Developers Architecture: all Source: update-manager Version: 1:0.196.11 Replaces: update-manager (<< 1:0.146.2) Depends: python3, python3:any (>= 3.2~), python3-update-manager (= 1:0.196.11), lsb-release, ubuntu-release-upgrader-core Recommends: libpam-modules (>= 1.0.1-9ubuntu3) Breaks: computer-janitor (<= 1.11-0ubuntu1), update-manager (<< 1:0.146.2) Filename: pool/main/u/update-manager/update-manager-core_0.196.11_all.deb Size: 5278 MD5sum: bbff04b28ba25ba7e85ddfb6361bd66b SHA1: d7f63ac0c7e90212d2f0a5d86e1ce0c591317420 SHA256: 3fe93857a72bf1bd7d94ee9cf0b7c3c9f9526cd18ad348c672b69dbab2bfde9e Description: manage release upgrades Description-md5: 0a19dc54e8c67de7adf0ecfe839b541f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: update-motd Priority: optional Section: admin Installed-Size: 56 Maintainer: Dustin Kirkland Architecture: all Version: 3.5-0ubuntu1 Depends: libpam-modules (>= 1.0.1-9ubuntu3) Filename: pool/main/u/update-motd/update-motd_3.5-0ubuntu1_all.deb Size: 5910 MD5sum: b9d88387900ed306fbb0cb28d9bf0941 SHA1: 5fccdf16abd306728a45b8650f098f44cdd9cae1 SHA256: a1e1442797bf4dcdcaad183b267afcb9667a2642391e1a03c60350f3627a0d98 Description: superceded by pam_motd in libpam-modules Description-md5: 9c8cf590a0a87aa38d7783c428a47782 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: update-notifier Priority: optional Section: gnome Installed-Size: 280 Maintainer: Michael Vogt Architecture: amd64 Version: 0.154.1 Depends: libappindicator3-1 (>= 0.2.92), libc6 (>= 2.7), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.0.0), libgudev-1.0-0 (>= 146), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.18.0), libx11-6, dconf-gsettings-backend | gsettings-backend, update-notifier-common (= 0.154.1), python, python-apt, python-dbus, python-debian, update-manager-gnome | update-manager (>= 1:0.165), ubuntu-release-upgrader-gtk, notification-daemon, policykit-1 Recommends: apport-gtk (>= 2.8-0ubuntu3), python-aptdaemon.gtk3widgets | synaptic (>= 0.75.12), software-properties-gtk, anacron, python-aptdaemon Filename: pool/main/u/update-notifier/update-notifier_0.154.1_amd64.deb Size: 46650 MD5sum: d99a38da778cfe3cdf53719bb58167db SHA1: e0dafb791359d30b2079d7f49332c6e9c07458f5 SHA256: baddad2e4c35f62a39aed775867d2dcf4663449bbe4ffa4b9eace0b4cb398290 Description: Daemon which notifies about package updates Description-md5: 17a8ca38ec1439cd743e00edf3c9a926 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: update-notifier-common Priority: optional Section: gnome Installed-Size: 2087 Maintainer: Michael Vogt Architecture: all Source: update-notifier Version: 0.154.1 Replaces: update-notifier (<< 0.75.1) Depends: python, python3:any, python-apt (>= 0.6.12), python3-apt, python-debian, debconf, patch Pre-Depends: dpkg (>= 1.15.7.2) Recommends: libpam-modules (>= 1.0.1-9ubuntu3) Suggests: policykit-1 Filename: pool/main/u/update-notifier/update-notifier-common_0.154.1_all.deb Size: 163626 MD5sum: 26cc57dbc0c519d80a4a7349fd6682b7 SHA1: 8ab3dbb3b12caace694867456c4f96bee3543096 SHA256: e63e73c7c0ea3f006dfe62292a01c53fa061220d959ccc82483f9681fa7ed965 Description: Files shared between update-notifier and other packages Description-md5: 9e55b33c0bb042acf203440099a61649 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: upower Priority: optional Section: admin Installed-Size: 516 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: amd64 Version: 0.9.23-2ubuntu1 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), libimobiledevice4 (>= 0.9.7), libplist1 (>= 0.16), libpolkit-gobject-1-0 (>= 0.99), libupower-glib1 (>= 0.9.2), libusb-1.0-0 (>= 2:1.0.8), udev, dbus, pm-utils | systemd | systemd-services Recommends: policykit-1 Filename: pool/main/u/upower/upower_0.9.23-2ubuntu1_amd64.deb Size: 85730 MD5sum: b5f6b04626d861fae44f6f66e473b3aa SHA1: 80f93c2b80c3fbe7697f4139f1f7f6832096eb5d SHA256: 675dcb8745d1babc852446ab60f99e62744fc8d212b5a2c709e9a5f3629465be Description: abstraction for power management Multi-Arch: foreign Homepage: http://upower.freedesktop.org/ Description-md5: bb90bfcb9dd3dd8821e88236bc786c59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: upower-doc Priority: optional Section: doc Installed-Size: 418 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: upower Version: 0.9.23-2ubuntu1 Suggests: devhelp Filename: pool/main/u/upower/upower-doc_0.9.23-2ubuntu1_all.deb Size: 39508 MD5sum: 8e999441e7cb8f607df83c0238f74c34 SHA1: 4d16e9cf21bcca9c59841940480f03c8d6b98af7 SHA256: aae0771380bc476608e49ab180a7e4667369e572f367d828e67b4630e2090f94 Description: abstraction for power management - documentation Homepage: http://upower.freedesktop.org/ Description-md5: 9f0894a7a86564bdd2eebe4d26d9b029 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: upstart Priority: required Section: admin Installed-Size: 1681 Maintainer: James Hunt Architecture: amd64 Version: 1.12.1-0ubuntu4 Replaces: startup-tasks, system-services, sysvinit, upstart-compat-sysv, upstart-job Provides: startup-tasks, system-services, upstart-compat-sysv, upstart-job Depends: libc6 (>= 2.15), libdbus-1-3 (>= 1.2.16), libjson-c2 (>= 0.10), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libselinux1 (>= 1.32), libudev1 (>= 183), sysvinit-utils, initscripts, mountall, ifupdown (>= 0.6.10ubuntu5), libjson0 (>= 0.10-1.1ubuntu1), debianutils (>= 4) Suggests: python3, graphviz, bash-completion, upstart-monitor Conflicts: lxcguest, startup-tasks, system-services, sysvinit, upstart-compat-sysv, upstart-job Breaks: friendly-recovery (<< 0.2.13), libc6 (<< 2.12.1-0ubuntu12) Filename: pool/main/u/upstart/upstart_1.12.1-0ubuntu4_amd64.deb Size: 389494 MD5sum: 9b28fba926ddf3a61058314dbcced445 SHA1: 62146114279483a16500eb21ae3fa724685a411b SHA256: f4a58199d17cf3375bbfc755a2e47217b597751538929c0c7bf9ed2d0ed68a69 Description: event-based init daemon Multi-Arch: foreign Homepage: http://upstart.ubuntu.com/ Orig-Maintainer: Steve Langasek Description-md5: b776ec43b708c13dd0c2ab824471f478 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: upstart-app-launch Priority: optional Section: gnome Installed-Size: 230 Maintainer: Ted Gould Architecture: amd64 Version: 0.3+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.4), libclick-0.4-0 (>= 0.4.18), libglib2.0-0 (>= 2.37.0), libjson-glib-1.0-0 (>= 0.12.0), liblttng-ust0, libupstart-app-launch2 (>= 0.3+14.04.20140220), libzeitgeist-2.0-0 (>= 0.9.9), click-apparmor, upstart (>= 1.11), zeitgeist-core Filename: pool/main/u/upstart-app-launch/upstart-app-launch_0.3+14.04.20140411-0ubuntu1_amd64.deb Size: 31238 MD5sum: 0a673c7d9f9b51e2e1daae101679c0a3 SHA1: e694c85de4623178422fa8387c764fee18983d19 SHA256: 9a4781b2babcc6bcde958a2a5ea0424cbb10122314597098a2e5ff39e303f0dc Description: Upstart Job for Launching Applications Homepage: http://launchpad.net/upstart-app-launch Description-md5: 7ec31ff90c96d05e3f5a62845eeaa27a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: upstart-app-launch-tools Priority: optional Section: gnome Installed-Size: 101 Maintainer: Ted Gould Architecture: amd64 Source: upstart-app-launch Version: 0.3+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.26.0), libupstart-app-launch2 (>= 0.3+14.04.20140220), upstart-app-launch (= 0.3+14.04.20140411-0ubuntu1) Filename: pool/main/u/upstart-app-launch/upstart-app-launch-tools_0.3+14.04.20140411-0ubuntu1_amd64.deb Size: 9112 MD5sum: 5036d67b06676b0d18ae5fdd60195ea4 SHA1: 46b3abe819ba90e2d76d4a9e34990582fe6301a1 SHA256: b0294b4d91ec3a230e11d07f2fa748ff6560feea9b079ef3678832aa8f93c440 Description: Tools for working wtih launched applications Homepage: http://launchpad.net/upstart-app-launch Description-md5: 098c4f917c8ea50f02f77080ec430652 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: upstart-monitor Priority: optional Section: utils Installed-Size: 108 Maintainer: James Hunt Architecture: all Source: upstart Version: 1.12.1-0ubuntu4 Depends: python3:any (>= 3.2~), python3, upstart (>= 1.7), python3-dbus Recommends: python3-gi Filename: pool/main/u/upstart/upstart-monitor_1.12.1-0ubuntu4_all.deb Size: 10548 MD5sum: af08cca014bd1d4e7e6c725a78d85392 SHA1: fd92dd3cc920f7260f8404f53c7cdbe84ea0c839 SHA256: 9c8ab1e7b72d7c3bf511153c76f46af1545c77b0efa31151410806ba2abae577 Description: event monitor for upstart Homepage: http://upstart.ubuntu.com/ Orig-Maintainer: Steve Langasek Description-md5: 3ada932aec65f4da7c81b4d3251ee8e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ure Priority: optional Section: libs Installed-Size: 5308 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice (1:4.2.3~rc3-0ubuntu2) Version: 4.2.3~rc3-0ubuntu2 Replaces: libreoffice-common (<< 1:4.1.2~), libreoffice-java-common (<< 1:3.0.0~dev300m12) Depends: uno-libs3 (= 4.2.3~rc3-0ubuntu2), libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libxml2 (>= 2.7.4) Suggests: java5-runtime Conflicts: cli-uno-bridge (<< 1:3.0.0~dev300m22) Breaks: libreoffice-core (<< 1:4.1.2~), openoffice.org-core (<< 1:3.3~) Filename: pool/main/libr/libreoffice/ure_4.2.3~rc3-0ubuntu2_amd64.deb Size: 1639546 MD5sum: b845f1b1fa3dc74c2fd25c7d5db89347 SHA1: 464d287cdb41ef9fc2c4887a0cc17f0e2c85a372 SHA256: 2cfe08e2426c9fe4b393d910aa568a4879deecd4766b613af9c4e579b1856f00 Description: LibreOffice UNO runtime environment Homepage: http://www.libreoffice.org Description-md5: 91a81b0bbfc8236cc5518400be4807d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ure-dbg Priority: extra Section: devel Installed-Size: 31473 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: amd64 Source: libreoffice (1:4.2.3~rc3-0ubuntu2) Version: 4.2.3~rc3-0ubuntu2 Depends: uno-libs3-dbg (= 4.2.3~rc3-0ubuntu2), ure (= 4.2.3~rc3-0ubuntu2) Filename: pool/main/libr/libreoffice/ure-dbg_4.2.3~rc3-0ubuntu2_amd64.deb Size: 6465334 MD5sum: 0fd0f6ed5bcf276ed3c19ac0aaed32e7 SHA1: 3a7d0a10a2d55bd53234b34948f04f2385715226 SHA256: 05bf70d5a4ccd9a06eb17fe150d3a171d04c11fd671d2a9defb068062f1cbc9e Description: LibreOffice UNO runtime environment -- debug symbols Homepage: http://www.libreoffice.org Description-md5: 3cdc616cec4e36585ca32210926b84c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ureadahead Priority: important Section: admin Installed-Size: 124 Maintainer: Scott James Remnant Architecture: amd64 Version: 0.100.0-16 Replaces: readahead Provides: readahead Depends: e2fslibs (>= 1.42.2), libblkid1 (>= 2.16), libc6 (>= 2.4), libnih1 (>= 1.0.0), upstart (>= 0.6.0) Conflicts: readahead Filename: pool/main/u/ureadahead/ureadahead_0.100.0-16_amd64.deb Size: 25372 MD5sum: 13b04e6e26329348618305b58dee84b2 SHA1: 2ca1119066e9086cc160a85b1b4b90851d297c81 SHA256: 3d7223b2faececf34db61258a9f477e29e54ff2e39a609428441da56d7e9ef65 Description: Read required files in advance Description-md5: f28f31b10525897dede5f830e42ea144 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: usb-creator-common Priority: optional Section: admin Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: usb-creator Hackers Team Architecture: amd64 Source: usb-creator Version: 0.2.56 Depends: python3:any (>= 3.3.2-2~), python3-dbus, syslinux, syslinux-legacy, gir1.2-udisks-2.0, udisks2, genisoimage, mtools, parted, python3-debian Filename: pool/main/u/usb-creator/usb-creator-common_0.2.56_amd64.deb Size: 23250 MD5sum: 01621127728315862b91e667bbac56be SHA1: e45f27d82b834f6140cbc2382c111aa951f1aa41 SHA256: 06e07cd130ec3f2ee356c423b3810aa827a1d651cfe06f1424018426da3acac6 Description: create a startup disk using a CD or disc image (common files) Description-md5: 2069ab334146d9561ed7a9b97122dbbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: usb-creator-gtk Priority: optional Section: admin Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: usb-creator Hackers Team Architecture: amd64 Source: usb-creator Version: 0.2.56 Depends: python3:any (>= 3.3.2-2~), python3, usb-creator-common (= 0.2.56), python3-gi, gir1.2-gtk-3.0, gir1.2-gudev-1.0, gir1.2-pango-1.0, gir1.2-glib-2.0, gir1.2-unity-5.0, python3-dbus Filename: pool/main/u/usb-creator/usb-creator-gtk_0.2.56_amd64.deb Size: 23270 MD5sum: d4f9f2bf48f5694a0904f53bfde68cf5 SHA1: 3ea77024ae8e793e753f24dbb8f3654683c956ef SHA256: 9a38cd91dc2a49d56ac75e1040a6178ccc519bd86e0494b78a37ffdb08ca9022 Description: create a startup disk using a CD or disc image (for GNOME) Description-md5: 74bf09ff42f47fb48f3aaf55c1943254 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: usb-modeswitch Priority: extra Section: comm Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Didier Raboud Architecture: amd64 Version: 2.1.1+repack0-1ubuntu1 Depends: libc6 (>= 2.14), libpipeline1 (>= 1.0.0), libusb-1.0-0 (>= 2:1.0.8), usb-modeswitch-data (>= 20140327) Suggests: comgt, wvdial Breaks: usb-modeswitch-data (<< 20100127) Filename: pool/main/u/usb-modeswitch/usb-modeswitch_2.1.1+repack0-1ubuntu1_amd64.deb Size: 49958 MD5sum: dc6638f7a1b9837b1c22a20411b9b510 SHA1: 425e8b1cfecaab692aa50cfdb0c7d1e077126a99 SHA256: c2e45f93fe14c9d61679d7893acd04ff0bde2aafca10e75052a19122c9e0fc2a Description: mode switching tool for controlling "flip flop" USB devices Homepage: http://www.draisberghof.de/usb_modeswitch/ Description-md5: bbddadcef95b9342b7cf75c7d1b5cfa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: usb-modeswitch-data Priority: extra Section: comm Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Didier Raboud Architecture: all Version: 20140327-1 Replaces: usb-modeswitch (<< 1.0.7-1), usb-modeswitch-data-packed Provides: usb-modeswitch-data-packed Recommends: usb-modeswitch (>= 2.1.1), udev (>= 0.140) Conflicts: usb-modeswitch-data-packed Breaks: usb-modeswitch (<< 2.1.1) Filename: pool/main/u/usb-modeswitch-data/usb-modeswitch-data_20140327-1_all.deb Size: 26960 MD5sum: 497cd1c0a5fa0cbf7a3976b4c4147c6e SHA1: 933c4ee36b8e1bb6122454936e79e1a9b639e7fa SHA256: 6466f9752135d98092bc34ff8e227ce192ef90523cf54d8c797c23dbb45ab77e Description: mode switching data for usb-modeswitch Homepage: http://www.draisberghof.de/usb_modeswitch/ Description-md5: 83f8894d390ffa31e34c89e43fc95bb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: usbmuxd Priority: optional Section: utils Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: amd64 Version: 1.0.8-2ubuntu1 Depends: libc6 (>= 2.14), libplist1 (>= 0.16), libusb-1.0-0 (>= 2:1.0.8), libusbmuxd2 (>= 1.0.0), adduser Filename: pool/main/u/usbmuxd/usbmuxd_1.0.8-2ubuntu1_amd64.deb Size: 37272 MD5sum: 11a396f06ff5fb2cf8573e484b2b5d10 SHA1: aff427a6a79499d808e47c5480dbcecc3f9f948f SHA256: 15ec2c11f4cf22ce6ee35df624adfa92edff3240a629c0ac378c83f24f05df18 Description: USB multiplexor daemon for iPhone and iPod Touch devices Homepage: http://marcansoft.com/blog/iphonelinux/usbmuxd/ Description-md5: 4e458ee34e3d22d40bde533e8147603f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: usbutils Priority: standard Section: utils Installed-Size: 699 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: amd64 Version: 1:007-2ubuntu1 Depends: libc6 (>= 2.14), libusb-1.0-0 (>= 2:1.0.16), zlib1g (>= 1:1.1.4) Suggests: wget (>= 1.8.1-6) | lynx-cur Filename: pool/main/u/usbutils/usbutils_007-2ubuntu1_amd64.deb Size: 190296 MD5sum: 1729b63ce58a14a5d291e62a563c980b SHA1: b26559dec7b6d7042f51bd7ab3fb330a77089bbd SHA256: 8ff3d1d9e7ce14ced9ce897b0bdb205cfdd5fc2ae258561db503a462fd8e13ef Description: Linux USB utilities Multi-Arch: foreign Description-md5: 378e163adf667074991298e6e17f6516 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: user-setup Priority: extra Section: admin Installed-Size: 553 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Version: 1.48ubuntu2 Depends: debconf (>= 0.5) | debconf-2.0, passwd, adduser Filename: pool/main/u/user-setup/user-setup_1.48ubuntu2_all.deb Size: 189000 MD5sum: 4e905cb86bc4c05dfe6b8a1a3be2a80c SHA1: 3af68269008e577c722f1c2ff73bf4f41b994a16 SHA256: b5f0ba9bbe22e1ee0330bca8f1eb9d1bfe0905db15cc67aa690e0b0e4d556c78 Description: Set up initial user and password Description-md5: 4dec3dcb61a40a867c061e2bd022837e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-live Package: util-linux Essential: yes Priority: required Section: utils Installed-Size: 1634 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: amd64 Version: 2.20.1-5.1ubuntu20 Replaces: e2fsprogs, fdisk, fstrim, linux32, miscutils, schedutils, setterm, sparc-utils Provides: linux32, schedutils Depends: lsb-base (>= 3.0-6), tzdata (>= 2006c-2), dpkg (>= 1.15.4) | install-info, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Pre-Depends: libblkid1 (>= 2.20.1), libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libselinux1 (>= 1.32), libslang2 (>= 2.2.4), libtinfo5, libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4) Suggests: util-linux-locales, kbd | console-tools, dosfstools Conflicts: console-tools (<< 1:0.2.3-21), fdisk, fstrim, kbd (<< 1.05-3), linux32, schedutils, setterm Filename: pool/main/u/util-linux/util-linux_2.20.1-5.1ubuntu20_amd64.deb Size: 457166 MD5sum: 192e402ed0bf792758de752102da9868 SHA1: 579d11796340be3d89b3ad9b8eaaa0c76cd66aab SHA256: b527fef7794dd8af109699373ccb183b28c95f5d906b44d72df9688fad0be752 Description: Miscellaneous system utilities Multi-Arch: foreign Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: ed29c47368a140794fd6df09a19c1372 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: util-linux-locales Priority: extra Section: utils Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: all Source: util-linux Version: 2.20.1-5.1ubuntu20 Replaces: util-linux (<< 2.11b) Depends: util-linux (>= 2.20.1-0), util-linux (<< 2.20.1.0-0) Filename: pool/main/u/util-linux/util-linux-locales_2.20.1-5.1ubuntu20_all.deb Size: 1994 MD5sum: ac0b15745abc5e29c26b03941716a08b SHA1: 0ab2ff8603e7971beb5894e4bd826b390712d793 SHA256: 9d08ce47431a64fb6a759c0b772f21bd7e10de4018424c60d2c53c7a3f290b77 Description: Locales files for util-linux Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: b686310ac1c1c7070063e7177cf12870 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: uuid-dev Priority: extra Section: libdevel Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: amd64 Source: util-linux Version: 2.20.1-5.1ubuntu20 Replaces: e2fslibs-dev (<< 1.15) Depends: libc6-dev | libc-dev, libuuid1 (= 2.20.1-5.1ubuntu20) Filename: pool/main/u/util-linux/uuid-dev_2.20.1-5.1ubuntu20_amd64.deb Size: 23732 MD5sum: 7be482e43cc32bbb959b53346b094001 SHA1: 02a905631706e26078f1b9de222b56800fd8d050 SHA256: aa681eedf43f4ab4d8f0b6f79952eaee890d341654b02ee3f9dee6d642d05dac Description: universally unique id library - headers and static libraries Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 19cdb24314cb6c1b29cb0ed7e9062d4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: uuid-runtime Priority: standard Section: libs Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: amd64 Source: util-linux Version: 2.20.1-5.1ubuntu20 Replaces: e2fsprogs (<= 1.40.3-1ubuntu1) Depends: passwd, libuuid1 (>= 2.20.1), libc6 (>= 2.4) Filename: pool/main/u/util-linux/uuid-runtime_2.20.1-5.1ubuntu20_amd64.deb Size: 12242 MD5sum: e60090d8eae51090a8b4deb48cea512a SHA1: 654f9dac2ba81b16280c17b927d9bd3afa6fc2aa SHA256: 6f53a80fc94e1d12866ff4d399e9c12b730231c3d85e0acc1e787395ef6dafdf Description: runtime components for the Universally Unique ID library Multi-Arch: foreign Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 33fb0e6df435d693f2bb9940ac3eb325 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: uuidcdef Priority: optional Section: devel Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Source: xplc Version: 0.3.13-4 Depends: libc6 (>= 2.7), libuuid1 (>= 2.16) Filename: pool/main/x/xplc/uuidcdef_0.3.13-4_amd64.deb Size: 14504 MD5sum: 0484301c107518ce177cb4eabd3fc110 SHA1: cce27fcbca52a254ab389ef1b1df256fe54a9194 SHA256: 390c18f43625db9e8dc00eb4ad3bca1e5c7e074148da5e17cdcd67411938494d Description: Universally Unique Identifier (UUID) generator Homepage: http://xplc.sourceforge.net/ Description-md5: 1d910b1ba122bdc21c260082cb676050 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vala-0.18-doc Priority: optional Section: doc Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: all Source: vala-0.18 Version: 0.18.1-0ubuntu11 Provides: vala-doc Suggests: valac, devhelp Filename: pool/main/v/vala-0.18/vala-0.18-doc_0.18.1-0ubuntu11_all.deb Size: 20530 MD5sum: 101bab010ee4c729ff9fed16e1713e26 SHA1: a0ebefdec2c37eb35e2a62711704a79241e1e4d8 SHA256: c97c896e2e7ce92c53aae8f77c2681ff7ae014c0c50e9be6e393439b86e8b14f Description: C# like language for the GObject system - documentation Multi-Arch: foreign Homepage: http://live.gnome.org/Vala/ Description-md5: de483b7159809ff1a4971ef10ee5d570 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vala-0.22-doc Priority: optional Section: doc Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: all Source: vala-0.22 Version: 0.22.1-0ubuntu1 Provides: vala-doc Suggests: valac, devhelp Filename: pool/main/v/vala-0.22/vala-0.22-doc_0.22.1-0ubuntu1_all.deb Size: 20714 MD5sum: ebe04227aedd41a41b2fd4bc91e185c1 SHA1: 9f01d0d9b92072a3461314bed64c1cd60b736ecf SHA256: 0fc1081328d975e62bbe01058d40bf736bc29f69ccee8c683291671ef7411ec4 Description: C# like language for the GObject system - documentation Multi-Arch: foreign Homepage: http://live.gnome.org/Vala/ Description-md5: de483b7159809ff1a4971ef10ee5d570 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac Priority: optional Section: devel Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: all Source: vala-0.22 Version: 0.22.1-0ubuntu1 Depends: valac-0.22 Filename: pool/main/v/vala-0.22/valac_0.22.1-0ubuntu1_all.deb Size: 13594 MD5sum: 77c3b3ac02a0c1b0c931e33b08a9a9d8 SHA1: b5d3b6ffdd32f11d5302819fc8f9e57deb2439f1 SHA256: 16232b8720ad086afa2abb7574b23097ce0feb2a3bc066f8abb4c3a793502047 Description: C# like language for the GObject system Homepage: http://live.gnome.org/Vala/ Description-md5: f9d9283d952284bde9e56be7edbddfb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.18 Priority: optional Section: devel Installed-Size: 587 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: vala-0.18 Version: 0.18.1-0ubuntu11 Replaces: vala-utils (<< 0.10) Provides: vala-utils Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.26), libvala-0.18-0 (= 0.18.1-0ubuntu11), valac-0.18-vapi Recommends: libglib2.0-dev (>= 2.26) Conflicts: vala-utils (<< 0.10), valac (<< 0.9.5) Filename: pool/main/v/vala-0.18/valac-0.18_0.18.1-0ubuntu11_amd64.deb Size: 114374 MD5sum: 38aad64499f2c4c744bc67414fa11320 SHA1: 01bd3e5f7b55f4472c79123a577b2c42ab4251e4 SHA256: 656653a48b1f9abc389a817f8653657ee3a290f60b46969abb99cac2cf2233e5 Description: C# like language for the GObject system Homepage: http://live.gnome.org/Vala/ Description-md5: 218f3b0a7cade0003732a9717a7a8215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.18-dbg Priority: extra Section: debug Installed-Size: 2158 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: vala-0.18 Version: 0.18.1-0ubuntu11 Depends: valac-0.18 (= 0.18.1-0ubuntu11) Filename: pool/main/v/vala-0.18/valac-0.18-dbg_0.18.1-0ubuntu11_amd64.deb Size: 377292 MD5sum: 76c4924fd9324388776efd5252858854 SHA1: 1c2701a13e5cce9eb4be91ccfee39d0f441ffa2f SHA256: 261bb39a0287c656956e76f0b92369281154aa9fdd9b7791c177a29d652062c6 Description: C# like language for the GObject system - debug symbols Homepage: http://live.gnome.org/Vala/ Description-md5: 0f5939694f8d1d8b0f603121c18dafe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.18-vapi Priority: optional Section: devel Installed-Size: 5923 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: all Source: vala-0.18 Version: 0.18.1-0ubuntu11 Filename: pool/main/v/vala-0.18/valac-0.18-vapi_0.18.1-0ubuntu11_all.deb Size: 598838 MD5sum: f62c256ee0e0c525a5a5bff59d175f62 SHA1: a506046e818b8a5ceeae3b20e918e9436f560768 SHA256: a44ca37a20f11bd3ce5c70cb9e02e377a2106e79d2cb316819e8cfeb1ee9b120 Description: C# like language for the GObject system - vapi files Homepage: http://live.gnome.org/Vala/ Description-md5: 14e61d74db9df4b1edc860ca4ff8ade6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.22 Priority: optional Section: devel Installed-Size: 603 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: vala-0.22 Version: 0.22.1-0ubuntu1 Depends: libc6 (>= 2.14), libglib2.0-0 (>= 2.26), libvala-0.22-0 (= 0.22.1-0ubuntu1), libglib2.0-dev (>= 2.26), valac-0.22-vapi Filename: pool/main/v/vala-0.22/valac-0.22_0.22.1-0ubuntu1_amd64.deb Size: 115022 MD5sum: c49008104812e062fd6f09383348cb73 SHA1: 5c2914db9b0a055247388c28b6aa7ce938287e8e SHA256: 0d51f93517e9b703c582d15bce432f8402ee573880e2438bfbafe10c6d6edea7 Description: C# like language for the GObject system Homepage: http://live.gnome.org/Vala/ Description-md5: 218f3b0a7cade0003732a9717a7a8215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.22-dbg Priority: extra Section: debug Installed-Size: 2307 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: amd64 Source: vala-0.22 Version: 0.22.1-0ubuntu1 Depends: valac-0.22 (= 0.22.1-0ubuntu1) Filename: pool/main/v/vala-0.22/valac-0.22-dbg_0.22.1-0ubuntu1_amd64.deb Size: 385236 MD5sum: efb0e881a9853a71986366809b1aa39f SHA1: 76afe0876e5799ba45ebb096d2c4c434fbd5b21f SHA256: b0ddbba459e6f886595d978d3faad6cec6ab70e12da28fdfb8cb2ac5acfd1e93 Description: C# like language for the GObject system - debug symbols Homepage: http://live.gnome.org/Vala/ Description-md5: 0f5939694f8d1d8b0f603121c18dafe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.22-vapi Priority: optional Section: devel Installed-Size: 6274 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: all Source: vala-0.22 Version: 0.22.1-0ubuntu1 Filename: pool/main/v/vala-0.22/valac-0.22-vapi_0.22.1-0ubuntu1_all.deb Size: 627056 MD5sum: a397896192311764612b0509781a71ee SHA1: f12c32a07ca7fbb537222f78fb85ef66729b146c SHA256: 33089c798175f74c3ad8f17f2a637786847a714f1fb7f74f5efb82d8c61833c5 Description: C# like language for the GObject system - vapi files Homepage: http://live.gnome.org/Vala/ Description-md5: 14e61d74db9df4b1edc860ca4ff8ade6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valgrind Priority: optional Section: devel Installed-Size: 91449 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Version: 1:3.10~20140411-0ubuntu1 Replaces: valgrind-dev Depends: libc6 (>= 2.16), libc6-dbg Recommends: gdb Suggests: valgrind-dbg, kcachegrind, alleyoop, valkyrie (>> 1.3.0) Breaks: valgrind-dev Filename: pool/main/v/valgrind/valgrind_3.10~20140411-0ubuntu1_amd64.deb Size: 15078790 MD5sum: 3a8cc43fb0e7cc6ad899e34f1fc50f25 SHA1: fcf894b839e35a561b79cc8fa69ad79da3387949 SHA256: 0e166f5aa6817bd28780297d59421df27f3b6f63cda60b289a8ac80314f64a5c Description: instrumentation framework for building dynamic analysis tools Homepage: http://www.valgrind.org/ Description-md5: 0cb016d4f438ed8069cda723e3bb7786 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: valgrind-dbg Priority: extra Section: debug Installed-Size: 299702 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: amd64 Source: valgrind Version: 1:3.10~20140411-0ubuntu1 Depends: valgrind (= 1:3.10~20140411-0ubuntu1) Filename: pool/main/v/valgrind/valgrind-dbg_3.10~20140411-0ubuntu1_amd64.deb Size: 69532524 MD5sum: a7872990d9f4607c8dfc5e18b31a9131 SHA1: 7cac45c188040555d0bd67b403a92b9939c0307d SHA256: 9ca3253e95f8fc21d276e7e10b3c27e69462e47847aea535d6b8a6b79748ddd3 Description: instrumentation framework for building dynamic analysis tools (debug) Homepage: http://www.valgrind.org/ Description-md5: bbac8295630a71a4bc8614379be44b6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vbetool Priority: optional Section: utils Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: amd64 Version: 1.1-3 Depends: libc6 (>= 2.14), libpci3 (>= 1:3.1.9-2), libx86-1 (>= 0.99-1) Filename: pool/main/v/vbetool/vbetool_1.1-3_amd64.deb Size: 11602 MD5sum: e5487da0e86050f4ce7804dc8f822256 SHA1: 9f0894c898cd4698896b70bccdcb54642e060443 SHA256: 5cef03c931f128c01664d5630eba95637cbd101d139728401648a0936f520282 Description: run real-mode video BIOS code to alter hardware state Homepage: http://www.codon.org.uk/~mjg59/vbetool/ Description-md5: 25fb7adf077cdb98dd6d1022be48eba4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: vblade Priority: optional Section: admin Installed-Size: 74 Maintainer: Ubuntu Core Developers Original-Maintainer: David Martínez Moreno Architecture: amd64 Version: 20-1ubuntu2 Depends: libc6 (>= 2.7) Suggests: vblade-persist Filename: pool/main/v/vblade/vblade_20-1ubuntu2_amd64.deb Size: 17480 MD5sum: 46884d03f8ddc3f0856909d9864fa65b SHA1: 0a77fe774038be82ec8c44fd74d36ce685113895 SHA256: 12ce0fcc023fbcb53ee8ae2b119af90f29c345a572ed67944748a3f8ca43cf44 Description: virtual AoE blade emulator Homepage: http://aoetools.sf.net Description-md5: fe793de0deb8ad57b766bf0f1b186c3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: vim Priority: optional Section: editors Installed-Size: 2185 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: amd64 Version: 2:7.4.052-1ubuntu3 Provides: editor Depends: vim-common (= 2:7.4.052-1ubuntu3), vim-runtime (= 2:7.4.052-1ubuntu3), libacl1 (>= 2.2.51-8), libc6 (>= 2.15), libgpm2 (>= 1.20.4), libpython2.7 (>= 2.7), libselinux1 (>= 1.32), libtinfo5 Suggests: ctags, vim-doc, vim-scripts Filename: pool/main/v/vim/vim_7.4.052-1ubuntu3_amd64.deb Size: 955616 MD5sum: f870bba8885a240acb21977e22503c73 SHA1: 038639fda5e3a73d7f26a8e1bd20faa0282c74ff SHA256: 1c59553660fb37a9a0317ce7a906b55d580be53e4a478c55a88da4de9f9a86b9 Description: Vi IMproved - enhanced vi editor Homepage: http://www.vim.org/ Description-md5: 59e8b8f7757db8b53566d5d119872de8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-desktop-gnome, edubuntu-usb Package: vim-common Priority: important Section: editors Installed-Size: 317 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: amd64 Source: vim Version: 2:7.4.052-1ubuntu3 Depends: libc6 (>= 2.3.4) Recommends: vim | vim-gnome | vim-gtk | vim-athena | vim-nox | vim-tiny Filename: pool/main/v/vim/vim-common_7.4.052-1ubuntu3_amd64.deb Size: 95594 MD5sum: 25e2998c1a712ffbbe8bc4adbca010ef SHA1: 9e895774e23626cc8c9cb80ae4e9c3138b4629b5 SHA256: d4340bf38137de4131a3f25adf6a3b158246e6e90651d2ee9701b173ea8a9025 Description: Vi IMproved - Common files Homepage: http://www.vim.org/ Description-md5: dc8579ec9ee0dc36b43d271645170c36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: vim-dbg Priority: extra Section: editors Installed-Size: 35795 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: amd64 Source: vim Version: 2:7.4.052-1ubuntu3 Depends: vim (= 2:7.4.052-1ubuntu3) | vim-gtk (= 2:7.4.052-1ubuntu3) | vim-gnome (= 2:7.4.052-1ubuntu3) | vim-nox (= 2:7.4.052-1ubuntu3) | vim-common (= 2:7.4.052-1ubuntu3) | vim-athena (= 2:7.4.052-1ubuntu3) | vim-tiny (= 2:7.4.052-1ubuntu3) Filename: pool/main/v/vim/vim-dbg_7.4.052-1ubuntu3_amd64.deb Size: 7469252 MD5sum: 770aa94faaef17404092a475e98ef28e SHA1: c718fdfcf7aa029c85b377f9f5b1e5c25eae8c5a SHA256: 011502598232b47fd86ba0a118a1e900303c52eb338b6d6c6fbfc37cbd8fc3a0 Description: Vi IMproved - enhanced vi editor (debugging symbols) Homepage: http://www.vim.org/ Description-md5: 0ede2a692dbe73f7b27a8750a774149c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vim-doc Priority: optional Section: editors Installed-Size: 9352 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: all Source: vim Version: 2:7.4.052-1ubuntu3 Filename: pool/main/v/vim/vim-doc_7.4.052-1ubuntu3_all.deb Size: 1658940 MD5sum: a0235541a96e8bfa5b6e4057b86c08c5 SHA1: 3ec24e8686a8b1437c43803bb81272d8b4699faf SHA256: 3c7e97f64b14661e90c1cd435ebc37cee608218357cc784fe4669f2d3995b3a1 Description: Vi IMproved - HTML documentation Homepage: http://www.vim.org/ Description-md5: 7ab878e2d7c8234499efd3d1f686daa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vim-gnome Priority: extra Section: editors Installed-Size: 2570 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: amd64 Source: vim Version: 2:7.4.052-1ubuntu3 Provides: editor, gvim, vim, vim-lua, vim-perl, vim-python, vim-ruby, vim-tcl Depends: vim-gui-common (= 2:7.4.052-1ubuntu3), vim-common (= 2:7.4.052-1ubuntu3), vim-runtime (= 2:7.4.052-1ubuntu3), libacl1 (>= 2.2.51-8), libbonoboui2-0 (>= 2.15.1), libc6 (>= 2.15), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.12.0), libgnome2-0 (>= 2.17.3), libgnomeui-0 (>= 2.22.0), libgpm2 (>= 1.20.4), libgtk2.0-0 (>= 2.24.0), libice6 (>= 1:1.0.0), liblua5.2-0, libpango-1.0-0 (>= 1.14.0), libperl5.18 (>= 5.18.1), libpython2.7 (>= 2.7), libruby1.9.1 (>= 1.9.2.0), libselinux1 (>= 1.32), libsm6, libtcl8.6 (>= 8.6.0), libtinfo5, libx11-6, libxt6 Suggests: cscope, vim-doc, ttf-dejavu, gnome-icon-theme Filename: pool/main/v/vim/vim-gnome_7.4.052-1ubuntu3_amd64.deb Size: 1094684 MD5sum: dc90eea607691bb6ee87768927f532c2 SHA1: 6fe9b44c69b774b09565ae5e0e6351cbd2be66e9 SHA256: d3c66642b7ba6315cd1e37b05eb0fd58313586da10f3bb9fc383d2e930b45552 Description: Vi IMproved - enhanced vi editor - with GNOME2 GUI Homepage: http://www.vim.org/ Description-md5: cd4a76134bce59404c52749b68c94208 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: vim-gui-common Priority: optional Section: editors Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: all Source: vim Version: 2:7.4.052-1ubuntu3 Replaces: vim-runtime (<< 2:7.2.438+hg~d44112feb815-3) Recommends: vim-gnome | vim-gtk | vim-athena Breaks: vim-runtime (<< 2:7.2.438+hg~d44112feb815-3) Filename: pool/main/v/vim/vim-gui-common_7.4.052-1ubuntu3_all.deb Size: 73018 MD5sum: eccccafdd134aaf42a1821d0f3cc07d3 SHA1: 488cfcbdc45952eb7e2263c5ce1d442f9e57c93d SHA256: f53c285861bc1adec5c64bb1f5f69474c7827dd4dacc9ec08c89092c2406f7ca Description: Vi IMproved - Common GUI files Homepage: http://www.vim.org/ Description-md5: fb37e200739779358616f93cf24cfb10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: vim-runtime Priority: optional Section: editors Installed-Size: 25186 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: all Source: vim Version: 2:7.4.052-1ubuntu3 Recommends: vim | vim-gnome | vim-gtk | vim-athena | vim-nox | vim-tiny Breaks: vim-tiny (<< 2:7.4.052-1ubuntu3) Filename: pool/main/v/vim/vim-runtime_7.4.052-1ubuntu3_all.deb Size: 4888024 MD5sum: 63b364396cbd681098b8cf5c6b9865c8 SHA1: 46c5805bc55f0eea7b22162233378205a8e4f308 SHA256: 37f2db84092cea9bdb12cc9c06cc26b98a4655e005a407ce21c31a583e4c3502 Description: Vi IMproved - Runtime files Enhances: vim-tiny Homepage: http://www.vim.org/ Description-md5: 9955e4852adeb20e00e9b3a0614f19f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-desktop-gnome, edubuntu-usb Package: vim-tiny Priority: important Section: editors Installed-Size: 931 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: amd64 Source: vim Version: 2:7.4.052-1ubuntu3 Provides: editor Depends: vim-common (= 2:7.4.052-1ubuntu3), libacl1 (>= 2.2.51-8), libc6 (>= 2.15), libselinux1 (>= 1.32), libtinfo5 Suggests: indent Filename: pool/main/v/vim/vim-tiny_7.4.052-1ubuntu3_amd64.deb Size: 391240 MD5sum: 0ec79417129746ff789fcff0976730c5 SHA1: b2ac976af80f0f50a8336402d5a29c67a2880b9b SHA256: 9938ec82a8c882ebc2d59b64b0bf2ac01e9cbc5a235be4aa268d4f8484e75eab Description: Vi IMproved - enhanced vi editor - compact version Homepage: http://www.vim.org/ Description-md5: eb95c193faecdde6a747ca9801ca82df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: vino Priority: optional Section: gnome Installed-Size: 572 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.8.1-0ubuntu1 Depends: libappindicator3-1 (>= 0.2.92), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.15), libcairo2 (>= 1.10.0), libdbus-glib-1-2 (>= 0.78), libgcrypt11 (>= 1.4.5), libglib2.0-0 (>= 2.37.3), libgnutls26 (>= 2.12.17-0), libgtk-3-0 (>= 3.0.0), libice6 (>= 1:1.0.0), libjpeg8 (>= 8c), libminiupnpc8 (>= 1.6), libnotify4 (>= 0.7.0), libsecret-1-0 (>= 0.7), libsm6, libsoup2.4-1 (>= 2.24.0), libtelepathy-glib0 (>= 0.18.0), libx11-6, libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxtst6, zlib1g (>= 1:1.1.4), dconf-gsettings-backend | gsettings-backend Recommends: gvfs Suggests: vinagre, gnome-user-guide Breaks: gnome-session-bin (<< 3.0) Filename: pool/main/v/vino/vino_3.8.1-0ubuntu1_amd64.deb Size: 140118 MD5sum: d721570bf36d3bdfd72230c7295130e4 SHA1: 74768cabcb655e1642169c1ec6685d062ef9cf8b SHA256: df56fa80d38d531a9e43582627bb8b32306d8c1c87859b891ca9188d1195bcca Description: VNC server for GNOME Homepage: http://live.gnome.org/Vino Description-md5: a21f62d453ff4ea676a2699029dd5caa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: virt-manager Priority: optional Section: admin Installed-Size: 3264 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers = 2.28.1-2), python:any (>= 2.7.1-0ubuntu2), python-gtk2, python-glade2, python-gnome2, python-dbus, python-urlgrabber, python-vte, librsvg2-common, python-libvirt (>= 0.7.1), virtinst (>= 0.600.4), python-gtk-vnc (>= 0.3.8), python-appindicator Recommends: libvirt-bin (>= 0.4.6), gnome-icon-theme Suggests: virt-viewer, ssh-askpass, gnome-keyring, python-gnomekeyring, python-guestfs, python-spice-client-gtk Filename: pool/main/v/virt-manager/virt-manager_0.9.5-1ubuntu3_all.deb Size: 280240 MD5sum: 9a24910e8686e6d2fc3e6906a40938a9 SHA1: dc463682e464dc58e1f8c54a974e785ed96eb65d SHA256: a7efa230c81dd40f1f026039ba3ac273b7f17658e059857e3a1160ac53114016 Description: desktop application for managing virtual machines Homepage: http://virt-manager.et.redhat.com/ Description-md5: 9f7f584744b77cdacc2291f2a8ac220e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: virtinst Priority: extra Section: admin Installed-Size: 1060 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: all Version: 0.600.4-3ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-libvirt (>= 0.4.6), python-libxml2, python-urlgrabber, qemu-utils, acl Recommends: libvirt-bin Suggests: virt-viewer Filename: pool/main/v/virtinst/virtinst_0.600.4-3ubuntu2_all.deb Size: 179454 MD5sum: f5855222134f2e405dfcb73a0dedd187 SHA1: 421efcabb6f1e008991e379dc6ba76332500fbc2 SHA256: 0187171a4ca0981e2638f524f56a06289b1fdfd88de784f1b241b1e914fa482f Description: Programs to create and clone virtual machines Homepage: http://virt-manager.et.redhat.com/ Description-md5: c31098728b9b7faac6968bd65393f582 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: virtuoso-opensource-6.1-common Priority: optional Section: database Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: José Manuel Santamaría Lema Architecture: amd64 Source: virtuoso-opensource Version: 6.1.6+repack-0ubuntu3 Depends: libc6 (>= 2.14), libssl1.0.0 (>= 1.0.0) Filename: pool/main/v/virtuoso-opensource/virtuoso-opensource-6.1-common_6.1.6+repack-0ubuntu3_amd64.deb Size: 49014 MD5sum: ce8e61df1785b5410e7d5933ab3b1391 SHA1: c256c1e140369c2be938f0002958dfeed0fac6ce SHA256: eea3bf99cffb5d954598206ec7e5eb68b098819f65c00cc2a44da52ff8a03516 Description: high-performance database - common files Homepage: http://virtuoso.openlinksw.com/wiki/main/Main/ Description-md5: 964d57838657661e2d23406ac48d09eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: vlan Priority: extra Section: misc Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Ard van Breemen Architecture: amd64 Version: 1.9-3ubuntu10 Depends: libc6 (>= 2.4), iproute2 Filename: pool/main/v/vlan/vlan_1.9-3ubuntu10_amd64.deb Size: 30290 MD5sum: c542a1bacbad438f028c8da3afa30295 SHA1: 74d52dde55d647cff6ba5c057031bd5320f9cf5a SHA256: 4067dd1afdc0691115b06bea4ab6b2ca277e2920bbb7f60d41eb15f1baf9b2cd Description: user mode programs to enable VLANs on your ethernet devices Description-md5: da2d3e81af12341c15fb4a7267d2457d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: voikko-fi Priority: optional Section: text Installed-Size: 7617 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: amd64 Source: suomi-malaga Version: 1.15-1 Breaks: libvoikko1 (<< 2.2-1) Filename: pool/main/s/suomi-malaga/voikko-fi_1.15-1_amd64.deb Size: 1300706 MD5sum: 69bd5a72614306cbf4c877dfaba9bd50 SHA1: db73ca4e0b56c78a69f4aa456b987f009c59fe25 SHA256: 5cacc2e777d6547756167690e90bf8db6c3f16ceea457b1d39984df62cd05cee Description: Description of Finnish morphology written in Malaga Homepage: http://voikko.puimula.org/ Description-md5: c84bc8b178f2f740b85be0b6048596aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: vorbis-tools Priority: optional Section: sound Installed-Size: 392 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: amd64 Version: 1.4.0-1ubuntu3 Depends: libao4 (>= 1.1.0), libc6 (>= 2.15), libcurl3-gnutls (>= 7.16.2), libflac8 (>= 1.2.1), libogg0 (>= 1.1.0), libspeex1 (>= 1.2~beta3-1), libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libvorbisfile3 (>= 1.2.3) Filename: pool/main/v/vorbis-tools/vorbis-tools_1.4.0-1ubuntu3_amd64.deb Size: 128590 MD5sum: f5bfd4ced6f7f885d426570958f9a77c SHA1: 30498e5d8982ae618b286048bd5f01dd595ec551 SHA256: aa28184d91710f49460f545bb10aeff6defd2d3d5adafa5fe3ac1bfd00e8634e Description: several Ogg Vorbis tools Description-md5: 645372e1792c85c9ec06c90372ff2026 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, ubuntustudio-audio Package: vorbis-tools-dbg Priority: extra Section: debug Installed-Size: 830 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: amd64 Source: vorbis-tools Version: 1.4.0-1ubuntu3 Depends: vorbis-tools (= 1.4.0-1ubuntu3) Filename: pool/main/v/vorbis-tools/vorbis-tools-dbg_1.4.0-1ubuntu3_amd64.deb Size: 279016 MD5sum: cf1ff0ea18fc79e7564ebf7bbbbb99e3 SHA1: c8f1a62b7e6facae1994f42fae56253135650be3 SHA256: 7f4a52920f56848c4945c7de401c592084e0b765f92bea2ede036e619b70e797 Description: several Ogg Vorbis tools (debug files) Description-md5: ae0c23eaaf5a43d7b319f1650e589bc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vsftpd Priority: extra Section: net Installed-Size: 361 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: amd64 Version: 3.0.2-1ubuntu2 Replaces: ftp-server Provides: ftp-server Depends: debconf (>= 0.5) | debconf-2.0, upstart-job, libc6 (>= 2.15), libcap2 (>= 2.10), libpam0g (>= 0.99.7.1), libssl1.0.0 (>= 1.0.0), libwrap0 (>= 7.6-4~), adduser, libpam-modules, netbase Recommends: logrotate Conflicts: ftp-server Filename: pool/main/v/vsftpd/vsftpd_3.0.2-1ubuntu2_amd64.deb Size: 112128 MD5sum: 997602a2e393b5bf4a33868c5d5ece5d SHA1: 6f508e8c12b9f6bd159deef2c8bb029985afafb5 SHA256: e3b8b8902d30ba7db521715a31e989864e3d6ba12f54612b59aeedfea2fad022 Description: lightweight, efficient FTP server written for security Homepage: http://vsftpd.beasts.org/ Description-md5: 81386f72ac91a5ea48f8db0b023f3f9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: w3m Priority: optional Section: text Installed-Size: 2320 Maintainer: Ubuntu Developers Original-Maintainer: Tatsuya Kinoshita Architecture: amd64 Version: 0.5.3-15 Replaces: w3m-ssl, w3mmee Provides: www-browser Depends: libc6 (>= 2.15), libgc1c2 (>= 1:7.2d), libgpm2 (>= 1.20.4), libssl1.0.0 (>= 1.0.0), libtinfo5, zlib1g (>= 1:1.1.4) Recommends: ca-certificates Suggests: w3m-img, mime-support, w3m-el, man-db, cmigemo Conflicts: w3m-ssl Filename: pool/main/w/w3m/w3m_0.5.3-15_amd64.deb Size: 877046 MD5sum: 605170f9d1edea1f42cbe0ecefbf8ab7 SHA1: 7a219f70ba784749e2da1cb084a707386084375c SHA256: d345e3d59b2b9c4e283ac6aa424d30e56acaebd1207d444ffaf1f7d7c0a38161 Description: WWW browsable pager with excellent tables/frames support Multi-Arch: foreign Homepage: http://sourceforge.net/projects/w3m Description-md5: e87701c222276aabaaad92868f1fd4b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server Package: wakeonlan Priority: optional Section: net Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Thijs Kinkhorst Architecture: all Version: 0.41-11 Depends: perl, perl-modules Filename: pool/main/w/wakeonlan/wakeonlan_0.41-11_all.deb Size: 10274 MD5sum: 26253a8c776437ff2fce9fbfceb98c2e SHA1: 7cc057a9220e71ddb18460b07105ec3a166bcf69 SHA256: 6452496a533ce2e0de39cac4f3938e6aa634b301c619c4f4296b0fad0479aaa4 Description: Sends 'magic packets' to wake-on-LAN enabled ethernet adapters Homepage: http://gsd.di.uminho.pt/jpo/software/wakeonlan/ Description-md5: 1f4cb6ce85d821307a46719513c54d04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: walinuxagent Priority: extra Section: python Installed-Size: 244 Maintainer: Ben Howard Original-Maintainer: Microsoft Corporation Architecture: amd64 Version: 2.0.4-0ubuntu2 Depends: cloud-init (>= 0.7.3~bzr826-0ubuntu2), linux-image-extra-virtual, openssh-server (>= 1:5.9p1), openssl (>= 1.0), passwd (>= 4.1.4.2), python (>= 2.4), util-linux (>= 2.0), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Conflicts: network-manager Filename: pool/main/w/walinuxagent/walinuxagent_2.0.4-0ubuntu2_amd64.deb Size: 49898 MD5sum: 3834e65bd11feefb65946ae73fabd783 SHA1: d3a45b91fd9fc38291b2c399e17c67ddc2a0c159 SHA256: ab5077724e21f7727ae4081babf7aeef2594400d75bf12f2dba6a45ab6decee7 Description: Windows Azure Linux Agent Homepage: http://go.microsoft.com/fwlink/?LinkId=250998 Description-md5: 6c6e08b89d2f59e8bdc1b7bf37e6f34c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wamerican Priority: optional Section: text Installed-Size: 990 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wamerican_7.1-1_all.deb Size: 269024 MD5sum: 4471c47b87e4539ee280668d588f5562 SHA1: 3eb83bad3d6fbaf89ccd76b49372e1b64f0cd541 SHA256: 165f9b96be797f48d23423ea940f848f4404cd5f918f99ecd969560132dc5aca Description: American English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: ea52704df710a9095c3201e3426ac6ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-live, ubuntu-usb, kubuntu-desktop, kubuntu-live, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-live, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-dvd-live, edubuntu-usb, xubuntu-live, xubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-desktop, ubuntu-gnome-live Package: wamerican-huge Priority: optional Section: text Installed-Size: 3484 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wamerican-huge_7.1-1_all.deb Size: 912516 MD5sum: cacbfb850fef14cb8dbb2bfb234095e1 SHA1: e2a6e0aaf180f851abbb05335f0836162509c87b SHA256: 6cc8d468567114152da015a0fd7b4d048ab01e86aa5a59078c95ea9cdb55dce0 Description: American English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 7b9e8c1686b63ee9ccfc218dd6bd1eb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wamerican-insane Priority: optional Section: text Installed-Size: 6744 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wamerican-insane_7.1-1_all.deb Size: 1784550 MD5sum: 180e861a1380980eb826f5902a866625 SHA1: b2d1dba8bb7484217ba52d4910e9a5e0e5ccbe30 SHA256: 679696f5d80670e30fc1b8711eb03b478f6fc8da39189487af6828705f0a0c51 Description: American English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 2ef4d887ab1e548ed5cacf2a749a8479 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wamerican-large Priority: optional Section: text Installed-Size: 1637 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wamerican-large_7.1-1_all.deb Size: 457330 MD5sum: e63df0528bc3b7d54aff4653d3e99d53 SHA1: 622b84b4004050e44990dab33b401a3bd29592e6 SHA256: 3b953fc247672651d47a78bd8461ab8fa19f5951ea653935a46d5df85bb0d6a5 Description: American English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 41b875a0e51934c13cde74f932a1a742 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wamerican-small Priority: optional Section: text Installed-Size: 530 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wamerican-small_7.1-1_all.deb Size: 142280 MD5sum: 47b1dd6a1e36d8c5cfcc6c91a5154ac0 SHA1: 07f116dc2135ba580511b058e182b6028ed08f21 SHA256: f0b31e46a662f34c7b4ef0f1dc75486d1d91fcecc4e1341c21b9428c3ea8d742 Description: American English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 1c81151a87971c46e958626cff3c1389 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: watershed Priority: extra Section: admin Installed-Size: 61 Maintainer: Scott James Remnant Architecture: amd64 Version: 7 Replaces: udev (<< 135-1) Depends: libc6 (>= 2.14), initramfs-tools Recommends: udev Filename: pool/main/w/watershed/watershed_7_amd64.deb Size: 11356 MD5sum: b1b5d2c6f51e224123e13ea79661913d SHA1: 5c02014b7daecff6c0a6367996d2819d9b16745e SHA256: 44e2f28d80eb637ffbdb65ae7f71079454aa3780bf057e451b35256d8b476b1d Description: reduce superfluous executions of idempotent command Enhances: udev Description-md5: cb52a6ca2eead3558ae69bbed6fc1538 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: wbrazilian Priority: optional Section: text Installed-Size: 2986 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: br.ispell Version: 3.0~beta4-15 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20) Filename: pool/main/b/br.ispell/wbrazilian_3.0~beta4-15_all.deb Size: 658610 MD5sum: 8c4ac8d91391416fd03b78ed7233e5c8 SHA1: aeff5365b049939398e283769de7e82b07fde227 SHA256: d9f425cdeca28af98e23ddf92b6f2bb68b58ac33be4ed874c4a46117c7ac06e5 Description: Brazilian Portuguese wordlist Homepage: http://www.ime.usp.br/~ueda/br.ispell/ Description-md5: 97bc43f03ee25fe7a6834ff99e6b46fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wbritish Priority: optional Section: text Installed-Size: 990 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wbritish_7.1-1_all.deb Size: 268810 MD5sum: ab9333eee9f14a23a3ca660b96de8f05 SHA1: aaee819d3f07039915bee5006ad407ed5a858376 SHA256: a372c60c70a445687bec7dbbb87e161fdb81862e8d0a2e241b560b4b800cad18 Description: British English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 116a19ac7140ec65e353ae54c39f1127 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wbritish-huge Priority: optional Section: text Installed-Size: 3486 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wbritish-huge_7.1-1_all.deb Size: 912736 MD5sum: 917262d5282610ca45bfcd60d8eab45f SHA1: 3dcd802a773e1ae2d2f8a2cb11ff88447a251a33 SHA256: e8f97b74ace6ae75ab971315d85f6599dec2ce9fcb6c8540f1f78e367c2a67f5 Description: British English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 85050475ad6caaedcae3ec7137c18a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wbritish-insane Priority: optional Section: text Installed-Size: 6746 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wbritish-insane_7.1-1_all.deb Size: 1785102 MD5sum: 932d4ad3d81e715faab1b6ea7f90784d SHA1: e83463996855d633570e7daeacb0429f11bebb89 SHA256: 9c4e4a4906500f5f6ee992ca508a5b9698e81849bb08a7a70cfe81fb37b81b72 Description: British English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: e7a363036baff6823e2161a110e8d0be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wbritish-large Priority: optional Section: text Installed-Size: 1638 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wbritish-large_7.1-1_all.deb Size: 457276 MD5sum: 3079d0603bb63ea6254b756005862e10 SHA1: 62e61b6b2267c8791f2335f7464007974c574d5e SHA256: 0cb147d0d937701f971611181ad61f66722e380420d8a281275daacf9cc54cb9 Description: British English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: be8efae2ff01a71eb958ffe5a188e4ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wbritish-small Priority: optional Section: text Installed-Size: 531 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wbritish-small_7.1-1_all.deb Size: 142336 MD5sum: a2f9146fa469e8d549e166d8f246cab7 SHA1: c6c7329f8fe43f40a2c1ac3daa57d008b0e26912 SHA256: d400cfce5273f964a642b787eb8b6f1b46c6fb90e05af223f54bbcd981fad9ff Description: British English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 8ab966a95d331c273ffb4958a33b8fa0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wbulgarian Priority: optional Section: text Installed-Size: 9499 Maintainer: Ubuntu Developers Original-Maintainer: Damyan Ivanov Architecture: all Source: bgoffice Version: 4.1-3ubuntu1 Provides: wordlist Depends: dictionaries-common, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/b/bgoffice/wbulgarian_4.1-3ubuntu1_all.deb Size: 2101566 MD5sum: 8c6777a61fc93be76b75fe4f1a4214cc SHA1: 40c3d3d4d2fbbb29a1283ada7d9869a501698615 SHA256: 9eb9f4e299bf98b0b7c5738628b6edef093a115aa6a4794c9d0da3d99ec79234 Description: Bulgarian dictionary words for /usr/share/dict Homepage: http://bgoffice.sourceforge.net/ Description-md5: 785682dc7191e37850273578c646b4c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wcatalan Priority: extra Section: text Installed-Size: 6874 Maintainer: Ubuntu Developers Original-Maintainer: Jordi Mallach Architecture: all Source: softcatala-spell Version: 0.20111230b-4 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 1.1) Filename: pool/main/s/softcatala-spell/wcatalan_0.20111230b-4_all.deb Size: 1539844 MD5sum: f5324d31b12cb9645d0e6079819e0b87 SHA1: d2cd997aa91b1884d0c596012e33c57b7b839de8 SHA256: f03b347662038d517910ab22a6a7b20d4a83da438bb16ba5b3bafa8ea92a0feb Description: Catalan dictionary words for /usr/share/dict Homepage: http://www.softcatala.org/wiki/Corrector_ortogr%C3%A0fic Description-md5: 6349e4a22be2d15fc2132e0e70636ae9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wdanish Priority: optional Section: text Installed-Size: 3874 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Smedegaard Architecture: all Source: dsdo Version: 1.6.25-1.1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common Filename: pool/main/d/dsdo/wdanish_1.6.25-1.1_all.deb Size: 816760 MD5sum: b58e0d8b87848a388e6a4fa6c652f788 SHA1: a35daa4b9578afccbaea8e4dc40f3cd53cd6d1aa SHA256: f39d5683bce41f96873227209e4b87b8581e2a8f3e60e9ab6cfacd21d039d113 Description: The Comprehensive Danish Dictionary (DSDO) - wordlist Homepage: http://da.speling.org/ Description-md5: c3a0418e174e5a26862735e32b59b543 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wdiff Priority: optional Section: text Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 1.2.1-2 Depends: libc6 (>= 2.14), libtinfo5 Filename: pool/main/w/wdiff/wdiff_1.2.1-2_amd64.deb Size: 28750 MD5sum: 6989f04fdebb6da9ee95eb82bcfae16c SHA1: d8674f882261561346604b8955b981be5cd789bf SHA256: cad76395bc0cab2528cff06e6cf38742330cfcca295805b8c3ef43a0af8eb5ac Description: Compares two files word by word Homepage: http://www.gnu.org/software/wdiff/ Description-md5: ff5f47823aed30d56f7ce111a0e2cd14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wdiff-doc Priority: optional Section: doc Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: wdiff Version: 1.2.1-2 Filename: pool/main/w/wdiff/wdiff-doc_1.2.1-2_all.deb Size: 10564 MD5sum: 9d846ac1ead3dc70fd32503434e47162 SHA1: 0c8b140eb72b3d1e7cd46c5b46878aee6ea28145 SHA256: 76131d2a2309f7a4a99ea6de0c745337dbeff324c648872382f203668c8e3317 Description: Documentation for GNU wdiff Homepage: http://www.gnu.org/software/wdiff/ Description-md5: 30bdf7b296aaa5ae3f3faa4c62a793fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wdutch Priority: optional Section: text Installed-Size: 4199 Maintainer: Ubuntu Developers Original-Maintainer: Thijs Kinkhorst Architecture: all Source: dutch Version: 1:2.10-1 Provides: wordlist Depends: dictionaries-common, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/d/dutch/wdutch_2.10-1_all.deb Size: 1371362 MD5sum: a6b80c2e7390cf2a06f8cd0fd8c6c512 SHA1: 52d37978e3300ac8fb340bdd33b08da2cfdb2e40 SHA256: 665a1d27ab14cd697d8f7703fe66a0c81bd38350d17f46515d9b1873ea936c34 Description: list of Dutch words Homepage: http://www.opentaal.org/ Description-md5: 558760862405deb7c73a30bc741e018f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: webaccounts-extension-common Priority: optional Section: web Installed-Size: 64 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: webaccounts-browser-extension Version: 0.5-0ubuntu2 Depends: unity-control-center-signon | gnome-control-center-signon, dconf-gsettings-backend | gsettings-backend, libaccounts-glib0 (>= 1.1), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.28.0), libjson-glib-1.0-0 (>= 0.13.2) Filename: pool/main/w/webaccounts-browser-extension/webaccounts-extension-common_0.5-0ubuntu2_amd64.deb Size: 8068 MD5sum: be80dc6b80005170b2504c0db9e17960 SHA1: 7b2842d2afcec704c9edd47a8bdbea1f574423d4 SHA256: 86acb6e4568b525f5faf7db9fb4d6cdaeca422691e343f1e47ebd28c001b9f0c Description: Ubuntu Online Accounts browser extension - common files Homepage: https://launchpad.net/webaccounts-browser-extension Description-md5: 79fef2d5ef3f2287766ce1519a052c65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: webapp-container Priority: optional Section: x11 Installed-Size: 161 Maintainer: Ubuntu Developers Architecture: amd64 Source: webbrowser-app Version: 0.23+14.04.20140414-0ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.2.0~rc1) | libqt5quick5-gles (>= 5.2.0~rc1), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1, unity-webapps-qml, libqt5webkit5-qmlwebkitplugin, webbrowser-app (= 0.23+14.04.20140414-0ubuntu1) Filename: pool/main/w/webbrowser-app/webapp-container_0.23+14.04.20140414-0ubuntu1_amd64.deb Size: 32150 MD5sum: 5440cf9b50e99699288fbafd9e5da50f SHA1: 0766bb156d3c38cb1185390d04492bf4cf250f2d SHA256: 2f5e034ad75e908c31f350f2c336355a34b30d59332a1da8d09d4f003ae1ee15 Description: Ubuntu web applications container Multi-Arch: foreign Homepage: https://launchpad.net/webbrowser-app Description-md5: 743b356525e8f64d674b02949740a3f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: webbrowser-app Priority: optional Section: x11 Installed-Size: 1596 Maintainer: Ubuntu Developers Architecture: amd64 Version: 0.23+14.04.20140414-0ubuntu1 Replaces: qtdeclarative5-ubuntu-ui-extras-browser-plugin (<< 0.22), webbrowser-app-assets Provides: webbrowser-app-assets Depends: libc6 (>= 2.14), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.2.0~rc1) | libqt5quick5-gles (>= 5.2.0~rc1), libqt5sql5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1, liboxideqt-qmlplugin (>= 1.0.0~bzr490), qtdeclarative5-dialogs-plugin, qtdeclarative5-qtquick2-plugin, qtdeclarative5-ubuntu-ui-extras-browser-plugin (= 0.23+14.04.20140414-0ubuntu1), qtdeclarative5-ubuntu-ui-toolkit-plugin, qtdeclarative5-window-plugin Conflicts: webbrowser-app-assets Breaks: qtdeclarative5-ubuntu-ui-extras-browser-plugin (<< 0.22) Filename: pool/main/w/webbrowser-app/webbrowser-app_0.23+14.04.20140414-0ubuntu1_amd64.deb Size: 565166 MD5sum: a89a3a8eec009f8f2bcc986f14c2418c SHA1: a7e330268db48d95e4a4b9a5df106c0cdd466bb3 SHA256: 98389150552cb8802087aae55ed32b02ff375b7d97b500d98d5bb4d5d2133be5 Description: Ubuntu web browser Multi-Arch: foreign Homepage: https://launchpad.net/webbrowser-app Description-md5: 29e33a65d91110c950640694b8be3af7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: wfaroese Priority: optional Section: text Installed-Size: 4945 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: ispell-fo Version: 0.4.2-1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20) Filename: pool/main/i/ispell-fo/wfaroese_0.4.2-1_all.deb Size: 1152880 MD5sum: 31b77d081129c01ca7fe38e9bce1b858 SHA1: f991fea565b256b3f81a761d99374a78e6223159 SHA256: 00b99ffbcacf9f4cff7d6d58b54e6e53125ccfb69005e056ebd064c25e232bba Description: Faroese dictionary / wordlist Homepage: http://fo.speling.org Description-md5: e739a676b68fc7ab146524ca92c1864e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wfrench Priority: optional Section: text Installed-Size: 1565 Maintainer: Ubuntu Developers Original-Maintainer: Khalid El Fathi Architecture: all Version: 1.2.3-10 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common, debconf Filename: pool/main/w/wfrench/wfrench_1.2.3-10_all.deb Size: 356088 MD5sum: 7410cf2a393dc0335ad254ee8b2483eb SHA1: 89445a09ddaee792daec4c59fd18aa936816d697 SHA256: 5eea45d8af0e890a6f4f10c42c030fd7104b2a90f46e6fe6939731dff9c9a93e Description: French dictionary words for /usr/share/dict Description-md5: 7d7922bb49bb4f09ca95c06e894ff262 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wgalician-minimos Priority: optional Section: text Installed-Size: 6027 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: ispell-gl Version: 0.5-35 Provides: wordlist Depends: dictionaries-common (>= 1.1), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/i/ispell-gl/wgalician-minimos_0.5-35_all.deb Size: 1245684 MD5sum: fd5ab33923222df0d5f75aa579ec3e0a SHA1: beb429ad96d3b179068543f149273d92a3498f7e SHA256: 39860e16cd0683e4ed8dbd6cae0a19bb88ce2c5beb8261df2dc17d9f22d76710 Description: Wordlist for Galician (minimos) Homepage: http://ispell-gl.sourceforge.net Description-md5: 861fbb7a205c150da37045a5b2bb4f0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wget Priority: standard Section: web Installed-Size: 636 Maintainer: Ubuntu Developers Original-Maintainer: Noël Köthe Architecture: amd64 Version: 1.15-1ubuntu1 Depends: libc6 (>= 2.17), libidn11 (>= 1.13), libssl1.0.0 (>= 1.0.0), libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4) Recommends: ca-certificates Conflicts: wget-ssl Filename: pool/main/w/wget/wget_1.15-1ubuntu1_amd64.deb Size: 269550 MD5sum: f85d339b26a09d1c27505b08a369d5ae SHA1: 2ba46835177b13b02b8d475b7ab6c995f857d85e SHA256: f03ffc6493892fa09476696717e33428161393ca9973a3ca363020823eeeca15 Description: retrieves files from the web Multi-Arch: foreign Homepage: http://www.gnu.org/software/wget/ Description-md5: 63a4a740bcd9e8e94bf661e4f1806e02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: whiptail Priority: important Section: utils Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: amd64 Source: newt Version: 0.52.15-2ubuntu5 Depends: libc6 (>= 2.14), libnewt0.52, libpopt0 (>= 1.14), libslang2 (>= 2.2.4) Filename: pool/main/n/newt/whiptail_0.52.15-2ubuntu5_amd64.deb Size: 15390 MD5sum: b1f24487e4e7d155b3f803ab50578979 SHA1: 346f95794b158e6e2b8e9a0d8eba9a0d2ac3e6da SHA256: 97d07f70864852e93c5fc1a1e730fede3165e16cbeb86a77411b122d5c652041 Description: Displays user-friendly dialog boxes from shell scripts Homepage: https://fedorahosted.org/newt/ Description-md5: 845a08009ef9f0ef4ecc0aedd3a36ffa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: whois Priority: optional Section: net Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: amd64 Version: 5.1.1 Depends: libc6 (>= 2.15), libidn11 (>= 1.13) Filename: pool/main/w/whois/whois_5.1.1_amd64.deb Size: 30170 MD5sum: ee13236971ea14e653a31337da13ac90 SHA1: 6ff97a03aa843520b53001356d3c2cd0004939f3 SHA256: ebc799c6dcb20bff6d7177c5e1b14185497235076ee5fec9037d76ae28c2f9ca Description: intelligent WHOIS client Description-md5: 28e9df99a50bdfe098edfcf773417990 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: whoopsie Priority: optional Section: utils Installed-Size: 112 Maintainer: Evan Dandrea Architecture: amd64 Version: 0.2.24.5 Depends: libc6 (>= 2.14), libcurl3 (>= 7.16.2), libglib2.0-0 (>= 2.31.8), libwhoopsie0 (= 0.2.24.5), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), adduser Filename: pool/main/w/whoopsie/whoopsie_0.2.24.5_amd64.deb Size: 20490 MD5sum: be866e40a205bc99bc0205ffab45f438 SHA1: 8da3ffdfe25cbdd43a59571ac1639d9715d1eb49 SHA256: 57de4c5161192a23bdb9e16345d24443a64643d5ba8a475127c7f4c85fd82cf6 Description: Ubuntu error tracker submission Homepage: http://wiki.ubuntu.com/ErrorTracker Description-md5: fa531d23f073cbfda1b0fd75a3ff9d11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: whoopsie-preferences Priority: optional Section: utils Installed-Size: 78 Maintainer: Evan Dandrea Architecture: amd64 Version: 0.12 Replaces: activity-log-manager (<< 0.9.7-0ubuntu4), activity-log-manager-control-center (<< 0.9.6) Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.30.0), libpolkit-gobject-1-0 (>= 0.99), libwhoopsie-preferences0 (= 0.12), libwhoopsie0 Breaks: activity-log-manager (<< 0.9.7-0ubuntu4), activity-log-manager-control-center (<< 0.9.6) Filename: pool/main/w/whoopsie-preferences/whoopsie-preferences_0.12_amd64.deb Size: 7230 MD5sum: 771a8734fe2f31b4ebec9d612f04a689 SHA1: 6732a3154dafba95882f2b3fdb34339f28702ec1 SHA256: cbcdda1fe470f2601ea8119a74c826bc5cf24ca6c4d7b264bc2fc2817d791017 Description: System preferences for error reporting Homepage: http://launchpad.net/whoopsie-preferences Description-md5: f886483b693199d61aca58e268d6dd2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb Package: winbind Priority: optional Section: net Installed-Size: 1797 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: amd64 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: samba-doc (<< 2:4.0.5~), winbind4 Depends: samba (= 2:4.1.6+dfsg-1ubuntu2), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libbsd0 (>= 0.3.0), libc6 (>= 2.14), libcomerr2 (>= 1.01), libkrb5-26-heimdal (>= 1.4.0+git20110226), libldap-2.4-2 (>= 2.4.7), libpopt0 (>= 1.14), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.12), libwbclient0 (= 2:4.1.6+dfsg-1ubuntu2), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: multiarch-support Suggests: libnss-winbind, libpam-winbind Conflicts: samba-doc (<< 2:4.0.5~) Filename: pool/main/s/samba/winbind_4.1.6+dfsg-1ubuntu2_amd64.deb Size: 399588 MD5sum: e231cf9449873d3bfcf5de71adbd65bf SHA1: d556049ed4a0390a80d7e3c04c2e34a54ac067c1 SHA256: a375e3a35213c22c06df5f72147e35aab64c48e17dd87204429ce95b4b5f37a1 Description: service to resolve user and group information from Windows NT servers Enhances: libkrb5-26-heimdal Homepage: http://www.samba.org Description-md5: 7716bdbd49ef007f51760bb859065b02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server Package: wireless-regdb Priority: optional Section: net Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Ben Hutchings Architecture: all Version: 2013.02.13-1ubuntu1 Suggests: crda Filename: pool/main/w/wireless-regdb/wireless-regdb_2013.02.13-1ubuntu1_all.deb Size: 6456 MD5sum: 46e0e91934caea23180f1c83b6d99a81 SHA1: 050be82a687e9e6305ab05f952fafeec90c93501 SHA256: 15278495c52fc2495311d4de6a3a094e7dbce5c91bf1e151c2fe87cfd60b2004 Description: wireless regulatory database Multi-Arch: foreign Homepage: http://wireless.kernel.org/en/developers/Regulatory/#The_regulatory_database Description-md5: 9b699ccc910634888e4cf21e28a9467b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: wireless-tools Priority: optional Section: net Installed-Size: 328 Maintainer: Ubuntu Core Developers Original-Maintainer: Guus Sliepen Architecture: amd64 Version: 30~pre9-8ubuntu1 Depends: libc6 (>= 2.15), libiw30 (>= 30~pre1) Filename: pool/main/w/wireless-tools/wireless-tools_30~pre9-8ubuntu1_amd64.deb Size: 117946 MD5sum: 891cdb7a4c0c9f187b9410ee276dca5f SHA1: b404ab5136297de86db74e59e2d586f8991d6b95 SHA256: 06a1000a5384c414c5a837a15759d7aa468346b02e98a83ac4869bd90d46008d Description: Tools for manipulating Linux Wireless Extensions Multi-Arch: foreign Homepage: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html Description-md5: 34c7dc532552aa22b7a3e5860d0000e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: wirish Priority: optional Section: text Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Source: iirish Version: 2.0-22 Depends: dictionaries-common, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/i/iirish/wirish_2.0-22_all.deb Size: 43456 MD5sum: 1c6ac19d12997142375c381ef385322a SHA1: 5794fe2cdaefe451d7d7fff59b5dbdbe6d177541 SHA256: bae6e79af6de1c2c197057884b1e855ae77bdd53907a9f868b4dc011823d5988 Description: Irish (Gaeilge) dictionary words for /usr/share/dict Description-md5: d881dcf4d804e1c33315df8f25a15b9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: witalian Priority: optional Section: text Installed-Size: 1282 Maintainer: Ubuntu Developers Original-Maintainer: Davide G. M. Salvetti Architecture: all Version: 1.7.5ubuntu1 Provides: wordlist Depends: dictionaries-common, debconf (>= 0.5) | debconf-2.0, perl Filename: pool/main/w/witalian/witalian_1.7.5ubuntu1_all.deb Size: 223630 MD5sum: 0b7a721e53dc0a109739262c7d3912e4 SHA1: 1c113d4f1fb18368e6b22eb1e6ce024fdc37a326 SHA256: 93eeddecdc65b5ed7315fcbd0caf9e8aa6d8530d86c49b64d7cc98149a17ef5d Description: Italian dictionary words for /usr/share/dict/ Description-md5: c7c257cb483fe8552eeab0a66c02425b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wmanx Priority: optional Section: text Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Source: imanx Version: 0.50-11 Depends: dictionaries-common, debconf | debconf-2.0 Filename: pool/main/i/imanx/wmanx_0.50-11_all.deb Size: 86174 MD5sum: 82f1e0140c54a9405f766e7da16460ac SHA1: 0e78cea569b71b798fcecb9db5be3eac61453a5a SHA256: cb7543dc9b21f068a0ed2eea0992afd26b3f22edeadefb00eb88d940246f0c84 Description: Manx Gaelic dictionary words for /usr/share/dict Description-md5: 9fea7f65d60e955b8e69aa40848e7772 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wngerman Priority: optional Section: text Installed-Size: 4443 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: igerman98 Version: 20120607-1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20.0) Filename: pool/main/i/igerman98/wngerman_20120607-1_all.deb Size: 910100 MD5sum: 9825bccd61c729ce3d8975b5dfd76245 SHA1: 4627930b45cf927a6c2788b1a0c4655ac8f6fb6b SHA256: 1c30f13d3e7f220be857df5f2a68c03f65da54b5c3c88c135ad8e94c4465338f Description: New German orthography wordlist Homepage: http://j3e.de/ispell/igerman98/ Description-md5: d9ca90eeae6360bc46e3a53b73113c43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wnorwegian Priority: optional Section: text Installed-Size: 20183 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: all Source: norwegian Version: 2.0.10-5.1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common Filename: pool/main/n/norwegian/wnorwegian_2.0.10-5.1_all.deb Size: 3179256 MD5sum: 66031df258614e38f85d9a1e71c4802c SHA1: 3be71ddb2e168ed39bb6f55adf7e078ec31d557e SHA256: c26b161375074bc92798b86388cc143022bcb22c7e272bfd69c5ea6330b19850 Description: Norwegian word list Description-md5: 808855f90413a16cb734e0a0af6caeeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wodim Priority: optional Section: otherosfs Installed-Size: 862 Maintainer: Ubuntu Developers Original-Maintainer: Joerg Jaspert Architecture: amd64 Source: cdrkit Version: 9:1.1.11-2ubuntu3 Replaces: cdrecord, cdrtools-doc Provides: cdrecord Depends: libc6 (>= 2.14), libcap2 (>= 2.10) Recommends: genisoimage Suggests: cdrkit-doc Conflicts: xcdroast (<< 0.98+0alpha15-11) Filename: pool/main/c/cdrkit/wodim_1.1.11-2ubuntu3_amd64.deb Size: 372268 MD5sum: 548b1ee243afb65151663670514c63bb SHA1: 1ff04586881c294ea38f994a86ab1190bfd70c31 SHA256: ec3f63466ba3e1db81416fdc244440ae8f7a494b1907988fc39e6d964978a3d1 Description: command line CD/DVD writing tool Description-md5: 430a6da0f7f8a42f965bb87ea62dcc74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: wogerman Priority: optional Section: text Installed-Size: 1015 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: hkgerman Version: 1:2-28 Replaces: wgerman Provides: wordlist Depends: debconf (>= 0.5.0.0) | debconf-2.0, dictionaries-common (>= 0.20.0) Conflicts: wgerman Filename: pool/main/h/hkgerman/wogerman_2-28_all.deb Size: 305064 MD5sum: 091875703ab90f4e3b99d3132a21df1c SHA1: dd2c7e75d55824da007ff8f2789391c713970a0c SHA256: f759b77c8c176d3f3e2cce94814484d4f0129be9d5afe25eb6d2d977c256a5b8 Description: Old German dictionary for /usr/share/dict Description-md5: cf62a44be00c307a5eeeb204bf6afdbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wpasupplicant Priority: optional Section: net Installed-Size: 2185 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu wpasupplicant Maintainers Architecture: amd64 Source: wpa Version: 2.1-0ubuntu1 Depends: libc6 (>= 2.15), libdbus-1-3 (>= 1.1.4), libnl-3-200 (>= 3.2.7), libnl-genl-3-200 (>= 3.2.7), libpcsclite1 (>= 1.0.0), libreadline5 (>= 5.2), libssl1.0.0 (>= 1.0.1), lsb-base (>= 3.0-6), adduser, initscripts (>= 2.88dsf-13.3) Suggests: wpagui, libengine-pkcs11-openssl Filename: pool/main/w/wpa/wpasupplicant_2.1-0ubuntu1_amd64.deb Size: 747120 MD5sum: 4cee1d74ff5c54e20cd85e1f11864c81 SHA1: 54aa39c2afa1b6f5c03f3cb4ed5b578006f2c2c6 SHA256: a4ea37f0191ac3472244e502d34ddf29f46df047c99415fba4be483e0fd9aa5c Description: client support for WPA and WPA2 (IEEE 802.11i) Multi-Arch: foreign Homepage: http://w1.fi/wpa_supplicant/ Description-md5: db096b22f8ec5f5c7a8ec614d12ca20a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: wpolish Priority: optional Section: text Installed-Size: 48954 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: all Source: ipolish Version: 20130519-1 Replaces: manpages-pl (<= 20030214) Provides: wordlist Depends: dictionaries-common (>= 0.20.1), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/i/ipolish/wpolish_20130519-1_all.deb Size: 9709464 MD5sum: 2b8ccd8ea4189175cc95e9ca19de5f9b SHA1: 852092b06565940dad134b62eae8ce2eb7f88e6b SHA256: 6e158124673d05e6a24e2ce90c102e3050a959205d8ef287d96dd54feab9e48b Description: Polish dictionary words for /usr/share/dict Homepage: http://www.sjp.pl/ Description-md5: f4124ba8dfab1092ba729fbaf6105ff3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wportuguese Priority: optional Section: text Installed-Size: 4797 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: ispell.pt Version: 20140102-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/i/ispell.pt/wportuguese_20140102-1_all.deb Size: 771430 MD5sum: 2bb94922c3b420220d6eafb89215a424 SHA1: f33533c69de2540cb0ad9e29b2651518d63741cd SHA256: 09f6f119077f6971373a2633e19c8a188c028bcddbeae3409294c6142a54e67f Description: European Portuguese wordlist Homepage: http://natura.di.uminho.pt/wiki/doku.php?id=dicionarios:ispell Description-md5: 9f254be893945f232fe586d050c9af9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wspanish Priority: optional Section: text Installed-Size: 892 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Version: 1.0.26 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20) Filename: pool/main/w/wspanish/wspanish_1.0.26_all.deb Size: 257764 MD5sum: b68a391f14df58f32d8f7a3e4b25e161 SHA1: 2cb5c20516d2b4c41e4f323a184c45508466a717 SHA256: f768f4ac4f81d839700e1345cb52598e84d132462749b9d0943fa10d6eb7428b Description: Spanish dictionary words for /usr/share/dict Description-md5: b18ce74996783e2aca3616ac1beca4eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wswedish Priority: optional Section: text Installed-Size: 1305 Maintainer: Ubuntu Developers Original-Maintainer: Jeremiah C. Foster Architecture: all Source: swedish Version: 1.4.5-2.1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20) Filename: pool/main/s/swedish/wswedish_1.4.5-2.1_all.deb Size: 306772 MD5sum: 2d74e45e0da5f8909ba635eafc2fc472 SHA1: e3dcd320f97dc8efec1689220668a5b1a6a93c3b SHA256: 7d60562d9e16563d0840cd73b6570cf389ca672f8175ce1682ec7d6f7b5b0568 Description: Swedish dictionary words for /usr/share/dict Description-md5: 41d5123ba7e77d9885609115e5c03949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wswiss Priority: optional Section: text Installed-Size: 4445 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: igerman98 Version: 20120607-1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20.0) Filename: pool/main/i/igerman98/wswiss_20120607-1_all.deb Size: 910508 MD5sum: 18c09c020392a691969207c0926eba1b SHA1: 14afb53d163f5ff41fff550dbbeb6f9f4d84763a SHA256: 796825ce58cae19228ac52d8c897c99fb3c6a3c30b1fbc6d811c93c79a3679e5 Description: Swiss (German) orthography wordlist Homepage: http://j3e.de/ispell/igerman98/ Description-md5: 5bdced0dadba3b35f0cee78805b3229c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wukrainian Priority: optional Section: text Installed-Size: 29208 Maintainer: Ubuntu Developers Original-Maintainer: Євгеній Мещеряков Architecture: all Source: ispell-uk Version: 1.6.5-2 Provides: wordlist Depends: dictionaries-common (>= 1.11.2~), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/i/ispell-uk/wukrainian_1.6.5-2_all.deb Size: 4061612 MD5sum: 66ac908b55e9a1fce5aa365b8d5e1528 SHA1: a8fb33e8c5c9728cbae0b0cc6b4c2fdc8adc5c7e SHA256: 6d00ca93ace095d9dcf12c5cdcea4d656e0305bc9c05a0c2fb81a5cda489a26c Description: Ukrainian dictionary words for /usr/share/dict Homepage: http://ispell-uk.sourceforge.net Description-md5: 4c58b9b69101d950e73ce94f6a1fec14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wvdial Priority: optional Section: comm Installed-Size: 278 Maintainer: Ubuntu Developers Original-Maintainer: Thierry Randrianiriana Architecture: amd64 Version: 1.61-4.1 Depends: ppp (>= 2.3.0), debconf (>= 0.5.00) | cdebconf, libc6 (>= 2.4), libstdc++6 (>= 4.1.1), libuniconf4.6, libwvstreams4.6-base, libwvstreams4.6-extras, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/w/wvdial/wvdial_1.61-4.1_amd64.deb Size: 84170 MD5sum: b878702b4959ae848ed7568523f35eee SHA1: df27c29bc0638af3455ab3590f83bd8c047fbb62 SHA256: d7bbb46a9e2e936ead23dda566d09d0a9effab3bbe24fd3ec9350e76b40c1375 Description: intelligent Point-to-Point Protocol dialer Homepage: http://alumnit.ca/wiki/index.php?page=WvDial Description-md5: b8bf30c8dfd4d09e02af74bf497505d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-desktop Package: x11-apps Priority: optional Section: x11 Installed-Size: 2046 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 7.7+2 Replaces: bitmap, oclock, transset, x11perf, xbase-clients (<= 1:7.2.ds2-3), xbiff, xcalc, xclipboard, xclock, xconsole, xcursorgen, xditview, xeyes, xgc, xload, xlogo, xmag, xman, xmore, xwd, xwud Depends: libc6 (>= 2.14), libpng12-0 (>= 1.2.13-4), libsm6, libx11-6, libxaw7, libxcursor1 (>> 1.1.2), libxext6, libxft2 (>> 2.1.1), libxkbfile1, libxmu6, libxmuu1, libxrender1, libxt6 (>= 1:1.1.0), cpp Recommends: xbitmaps Suggests: mesa-utils Conflicts: bitmap, oclock, transset, x11perf, xbiff, xcalc, xclipboard, xclock, xconsole, xcursorgen, xditview, xeyes, xgc, xload, xlogo, xmag, xman, xmore, xwd, xwud Filename: pool/main/x/x11-apps/x11-apps_7.7+2_amd64.deb Size: 610258 MD5sum: bc685dbe927b0f0699fe2fc7dd97760e SHA1: b2c30db78ad7e974617ae45e53e52f4c7ca0e542 SHA256: 64213af6fbdd0bd457daa2feb216a51853c53b817e987a6de28fb40c356b0684 Description: X applications Description-md5: 5702f23f04bb60fad1ae4604e92691fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-common Priority: optional Section: x11 Installed-Size: 492 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xorg Version: 1:7.7+1ubuntu8 Depends: debconf (>= 0.5) | debconf-2.0, lsb-base (>= 1.3-9ubuntu2) Filename: pool/main/x/xorg/x11-common_7.7+1ubuntu8_all.deb Size: 49776 MD5sum: 446abef36b80fc5f332cf397d2d451d2 SHA1: 62a466734bcbd11774b4c581d136da50c8ad92a2 SHA256: 885343fada846f3209c54055cbdce8a3b16b89198ec7127032c718a7f2181b64 Description: X Window System (X.Org) infrastructure Multi-Arch: foreign Description-md5: c3a0735e67df3065d7cbf88aa39b7ec7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-session-utils Priority: optional Section: x11 Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 7.7+1 Depends: libc6 (>= 2.14), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxaw7, libxmuu1, libxt6 (>= 1:1.1.0), cpp Filename: pool/main/x/x11-session-utils/x11-session-utils_7.7+1_amd64.deb Size: 65570 MD5sum: f93ba2b07f870228fc1eaa5aaebbc3c9 SHA1: c2717696961f29d73542649af63099650a97c0a8 SHA256: 525de815d77c94db84d0139414fe01e5bf31e55cb5e4d265216b11fe71efd99f Description: X session utilities Description-md5: 8e1733f3dc337562406ab5336cb95a29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-utils Priority: optional Section: x11 Installed-Size: 595 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 7.7+1 Depends: libc6 (>= 2.15), libfontconfig1 (>= 2.9.0), libfontenc1, libgl1-mesa-glx | libgl1, libx11-6, libx11-xcb1, libxaw7, libxcb-shape0, libxcb1 (>= 1.6), libxcomposite1 (>= 1:0.3-1), libxext6, libxft2 (>> 2.1.1), libxi6, libxinerama1, libxmu6, libxmuu1, libxrandr2 (>= 2:1.2.0), libxrender1, libxt6, libxtst6, libxv1, libxxf86dga1, libxxf86vm1 Suggests: mesa-utils Filename: pool/main/x/x11-utils/x11-utils_7.7+1_amd64.deb Size: 230476 MD5sum: 784be88acb7a6f944c1fdcb2776049a3 SHA1: a9af94b6a88dad5860398f074373591773d0da7a SHA256: 8b0b2a5d63fd38d3c989d5d24bd9c2be2375459fcb0fd4407f7da9eda7262892 Description: X11 utilities Multi-Arch: foreign Description-md5: bf8a6af96a706be8e8bde2b9de07a319 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-xfs-utils Priority: optional Section: x11 Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 7.7+1 Replaces: fslsfonts, fstobdf, showfont, xbase-clients (<= 1:7.2.ds2-3), xfsinfo, xutils (<= 1:7.1.ds.3-1) Depends: libc6 (>= 2.4), libfs6, libx11-6 Conflicts: fslsfonts, fstobdf, showfont, xfsinfo Filename: pool/main/x/x11-xfs-utils/x11-xfs-utils_7.7+1_amd64.deb Size: 23604 MD5sum: 8a48b89aad3d844ea662a724e16c3fa5 SHA1: 3f7e24a7914e361a04803ffb2a4671450444bee0 SHA256: e9247b64a53444d79fb5576a5ff64aa217a47c747b10b34917c96ad19e48285d Description: X font server utilities Multi-Arch: foreign Description-md5: 5a898b5c3e2c778f4400d6652157d637 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-xkb-utils Priority: optional Section: x11 Installed-Size: 473 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 7.7+1 Replaces: xbase-clients (<= 1:7.2.ds2-3) Depends: libc6 (>= 2.14), libx11-6, libxaw7, libxkbfile1, libxt6 Filename: pool/main/x/x11-xkb-utils/x11-xkb-utils_7.7+1_amd64.deb Size: 155564 MD5sum: fdc0044df0ee371266d2712365b18cfb SHA1: a0b48f09157da408b2f6eee7860599ff0c5a1635 SHA256: 35836b61cad1dbf828f7f7f2a493186967a195ec8cb7fe2e73c979db982b51a1 Description: X11 XKB utilities Description-md5: a2adce3cb7ed4a10d97bc7fd4558b944 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-xserver-utils Priority: optional Section: x11 Installed-Size: 490 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 7.7+2ubuntu1 Replaces: iceauth, sessreg, x11-xserver-utils-lts-quantal (<< 3:0), x11-xserver-utils-lts-raring (<< 3:0), x11-xserver-utils-lts-saucy (<< 3:0), x11-xserver-utils-lts-trusty (<< 3:0), xbase-clients (<< 1:7.3), xgamma, xhost, xmodmap, xrandr, xrdb, xrefresh, xrgb, xset, xsetmode, xsetpointer, xsetroot, xstdcmap, xutils (<< 1:7.2), xvidtune Depends: libc6 (>= 2.14), libice6 (>= 1:1.0.0), libx11-6, libxaw7, libxcursor1 (>> 1.1.2), libxext6, libxi6, libxmu6, libxmuu1, libxrandr2 (>= 2:1.4.0), libxt6, libxxf86vm1, cpp Suggests: nickle, cairo-5c, xorg-docs-core Conflicts: iceauth, sessreg, xgamma, xhost, xmodmap, xrandr, xrdb, xrefresh, xrgb, xset, xsetmode, xsetpointer, xsetroot, xstdcmap, xvidtune Breaks: x11-xserver-utils-lts-quantal (<< 3:0), x11-xserver-utils-lts-raring (<< 3:0), x11-xserver-utils-lts-saucy (<< 3:0), x11-xserver-utils-lts-trusty (<< 3:0) Filename: pool/main/x/x11-xserver-utils/x11-xserver-utils_7.7+2ubuntu1_amd64.deb Size: 151248 MD5sum: 597e0045c6d46e40a870428a1bcb01d0 SHA1: 64ffb1457ca21cf4dfe10cbe88b5d9ebe9c78216 SHA256: 72f090d7db647d4063781e4d97ee598618c15622f50fad2a4a12c3ae2dfcc2fe Description: X server utilities Description-md5: 7bc6b40d32fbe568c9539995f7b1053e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-xserver-utils-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: x11-xserver-utils Filename: pool/main/x/xorg-lts-transitional/x11-xserver-utils-lts-quantal_5_amd64.deb Size: 1678 MD5sum: 50cdb74037b33a04c2f89708ae0ccf25 SHA1: cc8556b6acccdb75e70084d0c2f12c75d2d32806 SHA256: e528771318dafac0b1c6938d8b97d4832a57fa54b5305a66027b978aa7a19486 Description: Transitional package for x11-xserver-utils Description-md5: 1418c6239f4ae3a68035f0c3ae5ccba1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11-xserver-utils-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: x11-xserver-utils Filename: pool/main/x/xorg-lts-transitional/x11-xserver-utils-lts-raring_5_amd64.deb Size: 1676 MD5sum: a406fedb85fb13fe6bc2dfdce83c3e4c SHA1: 8e041d7010a7b7f97756c03f60127d67b9d39137 SHA256: 0ad3c26936c285096870cda5de58fb28e247ab2bd77688421495d8d8753c2faf Description: Transitional package for x11-xserver-utils Description-md5: 1418c6239f4ae3a68035f0c3ae5ccba1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11-xserver-utils-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: x11-xserver-utils Filename: pool/main/x/xorg-lts-transitional/x11-xserver-utils-lts-saucy_5_amd64.deb Size: 1676 MD5sum: 828134aa45bbbcc09444a2d257660129 SHA1: c3f784293de7dafc02417f1318e5f3f243789c52 SHA256: 7992b13979924e7f0c1c83fbe7a19679dca47b7eb497f6fd8df424cf17a28983 Description: Transitional package for x11-xserver-utils Description-md5: 1418c6239f4ae3a68035f0c3ae5ccba1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-bigreqs-dev Priority: optional Section: x11 Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-bigreqs Version: 1:1.1.2-1 Filename: pool/main/x/x11proto-bigreqs/x11proto-bigreqs-dev_1.1.2-1_all.deb Size: 12776 MD5sum: f4e21d1a1d7608cc5af5f28a75c41dc7 SHA1: fd3244d6c4916320e7e2dbab41d656c0ff914e95 SHA256: 2e2f56b9eced314c2b33860610db536424b1804a111866f2b17415cbacd3d77b Description: X11 Big Requests extension wire protocol Multi-Arch: foreign Description-md5: 4b14fa03b516756f1b9566d7e041da5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-composite-dev Priority: optional Section: x11 Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-composite Version: 1:0.4.2-2 Depends: x11proto-core-dev, x11proto-fixes-dev Filename: pool/main/x/x11proto-composite/x11proto-composite-dev_0.4.2-2_all.deb Size: 10462 MD5sum: b6bffad1792ace82c841d23efe9c2261 SHA1: d170606b1f491020815b2841eb44bf37188ebe7e SHA256: ca4a13bcad5c32e5dd166f6f44eacb0504c3558fd2ef7cb1f9c28ac62475abf0 Description: X11 Composite extension wire protocol Multi-Arch: foreign Description-md5: 2d1c932a4af20b53591ebb3032e823df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-core-dev Priority: optional Section: x11 Installed-Size: 1775 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-core Version: 7.0.24-1 Depends: xorg-sgml-doctools (>= 1:1.5) Filename: pool/main/x/x11proto-core/x11proto-core-dev_7.0.24-1_all.deb Size: 747816 MD5sum: 6164f9d3f3946bf6496ca661cf49d78d SHA1: 3dbd2ef8ffc57150e0821875ed0b5abdbcc4beb7 SHA256: 93096e2e2a6ad0b8f4978b4189d031bc5177dce7f931cd51d33a5f1e27ec8855 Description: X11 core wire protocol and auxiliary headers Multi-Arch: foreign Description-md5: bbced914936af2f7b061d601f3460438 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-damage-dev Priority: optional Section: x11 Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-damage Version: 1:1.2.1-2 Depends: x11proto-fixes-dev, x11proto-core-dev Filename: pool/main/x/x11proto-damage/x11proto-damage-dev_1.2.1-2_all.deb Size: 8286 MD5sum: 00208ad9e3f0dcc2e1fbbc2b31095cca SHA1: 796fd38778b27db0b3c432662b0abb1e19a4c5ff SHA256: 6904141f2b11e0f2fb287dc821130a8eddff8e509b2a647c355b467a4f6860d4 Description: X11 Damage extension wire protocol Multi-Arch: foreign Description-md5: 342607cfda8aaed51e6355f970dac27d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: x11proto-dmx-dev Priority: optional Section: x11 Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-dmx Version: 1:2.3.1-2 Breaks: libdmx-dev (<< 1:1.0.99.1) Filename: pool/main/x/x11proto-dmx/x11proto-dmx-dev_2.3.1-2_all.deb Size: 5848 MD5sum: 05785eefbf82f06a7b6e760990cdc070 SHA1: 5dca0b51ae514a11dfe1eeae264bc231929cd9d3 SHA256: 1558958e5a8f772ad5e39690ea3fbe4c05ccc9f709f55ac5d0af27f8abbeeec9 Description: X11 Distributed Multihead X extension wire protocol Multi-Arch: foreign Description-md5: f8d1758182fccfde9f304c805cd14f0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-dri2-dev Priority: optional Section: x11 Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-dri2 Version: 2.8-2 Filename: pool/main/x/x11proto-dri2/x11proto-dri2-dev_2.8-2_all.deb Size: 12552 MD5sum: 7c1470fe1a3d110f8237ace6da80c701 SHA1: 786eb519bb882a3fc54345a64e39ef6c58916a89 SHA256: 18815295e317d53ba8e739684731e412a53b55f1be742f990c2c69a82d8ba46c Description: X11 DRI2 extension wire protocol Multi-Arch: foreign Description-md5: f9fbe5a35c1d1a5259e8ba115300fae3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: x11proto-dri3-dev Priority: optional Section: x11 Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-dri3 Version: 1.0-1 Filename: pool/main/x/x11proto-dri3/x11proto-dri3-dev_1.0-1_all.deb Size: 5996 MD5sum: d9be821d5a3d63547aa3a4d361e9b79b SHA1: 9b3aa046c0905d11a22c3b1cc91a268a173c7326 SHA256: 3ba82674b80ab83dd3ac305a9628d608adac2038a07a6da9dff7a88addb3a768 Description: X11 DRI3 extension wire protocol Multi-Arch: foreign Description-md5: fc735f01903e7f10e258bf4a1cf5b3c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-fixes-dev Priority: optional Section: x11 Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-fixes Version: 1:5.0-2ubuntu2 Depends: x11proto-core-dev, x11proto-xext-dev (>= 7.0.99.1) Filename: pool/main/x/x11proto-fixes/x11proto-fixes-dev_5.0-2ubuntu2_all.deb Size: 14248 MD5sum: 7edaeb36e7264903b3d466b0ffe80e71 SHA1: 1f668507eca69843c2d4c26f7e7eb87f4aa892cb SHA256: f498eb367d11d82e3150c826bc239d789c5e8b42055706c83315c9966bf76ca2 Description: X11 Fixes extension wire protocol Multi-Arch: foreign Description-md5: 646898d46bc47837227c172744a907c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: x11proto-fonts-dev Priority: optional Section: x11 Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-fonts Version: 2.1.2-1 Depends: x11proto-core-dev Filename: pool/main/x/x11proto-fonts/x11proto-fonts-dev_2.1.2-1_all.deb Size: 69686 MD5sum: 05a7b342fb816095731e4b744e7608b9 SHA1: 81ce8b53572c2fe500c601bbbee7cecc8fe1aa3a SHA256: 136c06abbf96f2f6e5b3a721dce2416c0b6a273b319e8473a865935192f7989b Description: X11 font extension wire protocol Multi-Arch: foreign Description-md5: cc3bdc437d256f3f3baa58f182b4680f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-gl-dev Priority: optional Section: x11 Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-gl Version: 1.4.17-1 Replaces: xlibmesa-gl-dev Filename: pool/main/x/x11proto-gl/x11proto-gl-dev_1.4.17-1_all.deb Size: 17892 MD5sum: 9c358e179ec8058d64ff3ba2be9077ac SHA1: c6f775bd0b10cd1cfad71293d0ba9fb35e5a548e SHA256: 6fc8ce114b0e25912207b53d8ee26bcd136ff94801e63b82b903e1a9a3c76ed1 Description: X11 OpenGL extension wire protocol Multi-Arch: foreign Description-md5: 471f1487ed8f7f211b8c62143e8de0ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: x11proto-input-dev Priority: optional Section: x11 Installed-Size: 476 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-input Version: 2.3-1 Depends: x11proto-core-dev Filename: pool/main/x/x11proto-input/x11proto-input-dev_2.3-1_all.deb Size: 139090 MD5sum: 0cb019542bbf09f975c6ec6e52ffc7e9 SHA1: 092c18bd8e7c44cb412c2e7dd2a916cbd1ed6d01 SHA256: d80943d8e56d6b984815d01fe2fe6d1fd305464557222d272632c9adaa471a60 Description: X11 Input extension wire protocol Multi-Arch: foreign Description-md5: 33b1f72e2eebea58b8eb47f2d4dd9f65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-kb-dev Priority: optional Section: x11 Installed-Size: 1241 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-kb Version: 1.0.6-2 Filename: pool/main/x/x11proto-kb/x11proto-kb-dev_1.0.6-2_all.deb Size: 268608 MD5sum: 530c4b9b2a32034643dd479442c7a8f9 SHA1: 6d8b57c97d90fbe70cd4ed5149be1c6fa50f8e83 SHA256: d1bfc998cf8237291eaf913dc703a6cb7ea02d127a347d275767b1d1adc7d654 Description: X11 XKB extension wire protocol Multi-Arch: foreign Description-md5: 61b34fd535c21265b34560bcd6ff324c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-present-dev Priority: optional Section: x11 Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-present Version: 1.0-1 Filename: pool/main/x/x11proto-present/x11proto-present-dev_1.0-1_all.deb Size: 10146 MD5sum: d5a1ae7dbab14132d6cde52d5c4f94fa SHA1: e03ee88af9a93fc53b5d42eaa265b372ef3cc533 SHA256: 91441204bcca48c24f93ced07e79034445cc5b14c9d43f58ecc56b7a6d78538a Description: X11 Present extension wire protocol Multi-Arch: foreign Description-md5: cbe8266cb1085cf81630b0c9ba611fc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-print-dev Priority: optional Section: x11 Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-print Version: 1.0.5-2 Conflicts: libxp-dev (<< 1:1) Filename: pool/main/x/x11proto-print/x11proto-print-dev_1.0.5-2_all.deb Size: 10716 MD5sum: 5d0d59c0bde3246dd3f1a74692544574 SHA1: af00afbc228d4bd9ee0fb4b2a3941ff4392e39c8 SHA256: 04357d92e5d8901bda667d7368551577d4a824b861733f07f5023ab1416c91e5 Description: X11 Printing extension (Xprint) wire protocol Multi-Arch: foreign Description-md5: 851246615743641b0eb61bcf8ce0164c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-randr-dev Priority: optional Section: x11 Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-randr Version: 1.4.0+git20120101.is.really.1.4.0-0ubuntu1 Filename: pool/main/x/x11proto-randr/x11proto-randr-dev_1.4.0+git20120101.is.really.1.4.0-0ubuntu1_all.deb Size: 32916 MD5sum: 7328146e1709ec922e4643f996a9b456 SHA1: 5c0bcb8b007096717a30d3893020f5c5ff544599 SHA256: 1691cb53d4d61a04705de68efe8c60293b26ad39253af4a2a1fb611c76f56716 Description: X11 RandR extension wire protocol Multi-Arch: foreign Description-md5: a90461e9118057b1d9164b079935b319 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-record-dev Priority: optional Section: x11 Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-record Version: 1.14.2-1 Breaks: libxtst-dev (<< 2:1.0.99.2) Filename: pool/main/x/x11proto-record/x11proto-record-dev_1.14.2-1_all.deb Size: 33648 MD5sum: adb07763dc0b014d29a61afa00f1182c SHA1: 54faae4262790e45514cf536c81805ac0cc2be5a SHA256: de3b09b151622139cf0f06f98323ac4bacc5a5de8f823505b896ecb7ce61f4f8 Description: X11 Record extension wire protocol Multi-Arch: foreign Description-md5: 6b3887131806a4ac56ed17928e5d9244 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-render-dev Priority: optional Section: x11 Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-render Version: 2:0.11.1-2 Depends: x11proto-core-dev Filename: pool/main/x/x11proto-render/x11proto-render-dev_0.11.1-2_all.deb Size: 20148 MD5sum: 69109e51ddbebf87d3d8030067c18c6f SHA1: 1e4f8abf9e672fab93fd8705a8d8e0d998d96920 SHA256: 02080f5bb875bb1cd6e78a09e5b317ced150523596d4df47cc2767fc28fb5173 Description: X11 Render extension wire protocol Multi-Arch: foreign Description-md5: 5cb5db3bd22c00cad26a566ffef6609f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-resource-dev Priority: optional Section: x11 Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-resource Version: 1.2.0-3 Depends: x11proto-core-dev Filename: pool/main/x/x11proto-resource/x11proto-resource-dev_1.2.0-3_all.deb Size: 10662 MD5sum: a48e04c1e8b4a9baa8000c49570052ab SHA1: fb3ca0dc225c0175da63b552b85be102d12b8f22 SHA256: aba4b390d4a210086ac9b1a2d414699c1469c0cff811bc03075a1d51b55e37c8 Description: X11 Resource extension wire protocol Multi-Arch: foreign Description-md5: de611e1c4c80a89c1fbbe1cf2e773faa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-scrnsaver-dev Priority: optional Section: x11 Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-scrnsaver Version: 1.2.2-1 Depends: x11proto-core-dev Breaks: libxss-dev (<< 1:1.2.0) Filename: pool/main/x/x11proto-scrnsaver/x11proto-scrnsaver-dev_1.2.2-1_all.deb Size: 24988 MD5sum: 0f8bf0a5ce49e01656d9b59a86dda9d2 SHA1: 037ef088e6c957fb037afdc15e0a8b60c99e281a SHA256: 2736474f981320b9f2fb10cdc90867996d4fbeb14a3cc42cc450631e5f050fc8 Description: X11 Screen Saver extension wire protocol Multi-Arch: foreign Description-md5: 042ff8fd3c1946d38454e0752c99cd19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-video-dev Priority: optional Section: x11 Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-video Version: 2.3.2-1 Filename: pool/main/x/x11proto-video/x11proto-video-dev_2.3.2-1_all.deb Size: 17524 MD5sum: 877397ddeabe72bb67ca520ac5c6579f SHA1: b8c6b09e6eaff4499fd68d821d73056dd60be607 SHA256: 00426cdc55650ed2c3dd274c71066f5a6b0c1494a8e2ba6e8ff368f6d95cca74 Description: X11 Video extension wire protocol Multi-Arch: foreign Description-md5: 958221b5cc2ee4a5a42b95d105d951a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-xcmisc-dev Priority: optional Section: x11 Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xcmisc Version: 1.2.2-1 Filename: pool/main/x/x11proto-xcmisc/x11proto-xcmisc-dev_1.2.2-1_all.deb Size: 12714 MD5sum: ef788883da44bc662e5d2448a2c17070 SHA1: a464628e56273c1045c0d47baba2dca25419b255 SHA256: 8efbb2555aeab2ab1fed96a0bb67b71ab586100735c37fa2cef56afa9fc570df Description: X11 XC-Miscellaneous extension wire protocol Multi-Arch: foreign Description-md5: a858ad076b66ea04c95c8bbc067df5c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-xext-dev Priority: optional Section: x11 Installed-Size: 936 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xext Version: 7.3.0-1 Depends: x11proto-input-dev, x11proto-core-dev Breaks: libxext-dev (<< 2:1.0.99), libxtst-dev (<< 2:1.0.99) Filename: pool/main/x/x11proto-xext/x11proto-xext-dev_7.3.0-1_all.deb Size: 212136 MD5sum: b362877a46292dfc90745d33d8c0a504 SHA1: 2ff3ef08637dd821cb6ae60df8712bc6710b8ebe SHA256: 03d57b45dbf2bc58bcd99172c0fca7767bfca093204c30c9889d082af08ffbb7 Description: X11 various extension wire protocol Multi-Arch: foreign Description-md5: a7569fd4617dc5309a5f6accfb78680e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-xf86bigfont-dev Priority: optional Section: x11 Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xf86bigfont Version: 1.2.0-3 Depends: x11proto-core-dev Filename: pool/main/x/x11proto-xf86bigfont/x11proto-xf86bigfont-dev_1.2.0-3_all.deb Size: 4784 MD5sum: d8868c6ff7588e8508cef96ff5e31126 SHA1: 63a54c19106c60669b8d885564d0329b111d669e SHA256: ecada8467bc9b8647812473fc2039a0a52874eb6daf7201d99b71a00590c9660 Description: X11 Big Fonts extension wire protocol Multi-Arch: foreign Description-md5: 33341e02e7d8607a29206e70be407f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-xf86dga-dev Priority: optional Section: x11 Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xf86dga Version: 2.1-3 Depends: x11proto-core-dev Breaks: libxxf86dga-dev (<< 2:1.0.99.1) Filename: pool/main/x/x11proto-xf86dga/x11proto-xf86dga-dev_2.1-3_all.deb Size: 7288 MD5sum: 94b5ae92c982e09132cfb69ebecec580 SHA1: f4e0a739251f45290ecf5e13c3be19aa9fad12d5 SHA256: 2cc8a9dd95d48887143ea6328df065e123bbe3f119084d3f7f3fa29862a97a7d Description: X11 Direct Graphics Access extension wire protocol Multi-Arch: foreign Description-md5: cb56001dfdd6443e2c40c6d66ec6ff0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-xf86dri-dev Priority: optional Section: x11 Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xf86dri Version: 2.1.1-2 Filename: pool/main/x/x11proto-xf86dri/x11proto-xf86dri-dev_2.1.1-2_all.deb Size: 5630 MD5sum: dd75b0dbecfcb9019f405484d7147dbe SHA1: 58f4292a523428f20de25feca4e81c28ddbea362 SHA256: 53d1eab343d282d168074c786fda119172ff08b3a1955016d97d9adea6c42c20 Description: X11 DRI extension wire protocol Multi-Arch: foreign Description-md5: a5abe843364d4aa7466059cfaf1b7071 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-xf86vidmode-dev Priority: optional Section: x11 Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xf86vidmode Version: 2.3.1-2 Breaks: libxxf86vm-dev (<< 1:1.0.99.1) Filename: pool/main/x/x11proto-xf86vidmode/x11proto-xf86vidmode-dev_2.3.1-2_all.deb Size: 6116 MD5sum: 71ac0da02917c644c9515f4b9c0a0199 SHA1: 3236c946132db96aaaeb146c5a09f01cc50b58cb SHA256: 748612c028a962c1e7fbb34e5976b7309afcb4c7f559d5290875469cfabf90f0 Description: X11 Video Mode extension wire protocol Multi-Arch: foreign Description-md5: d3b9513a57f8f9f6705e07bbaf670234 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: x11proto-xinerama-dev Priority: optional Section: x11 Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xinerama Version: 1.2.1-2 Breaks: libxinerama-dev (<< 2:1.1) Filename: pool/main/x/x11proto-xinerama/x11proto-xinerama-dev_1.2.1-2_all.deb Size: 4966 MD5sum: ce033ff8d4e9212e6d996c67a8a1204e SHA1: 012bd151f36f6eb57f7c5f0fe069e5dc88d05819 SHA256: 4f586b505d840931e49f9fc934088ace98e32ab47a4c7795d82a3ed686e39aed Description: X11 Xinerama extension wire protocol Multi-Arch: foreign Description-md5: e3a2c33273f73014c3bebf7cc3c6ad5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xapian-doc Priority: optional Section: doc Installed-Size: 5342 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: all Source: xapian-core Version: 1.2.16-2ubuntu1 Recommends: libxapian-dev (= 1.2.16-2ubuntu1) Filename: pool/main/x/xapian-core/xapian-doc_1.2.16-2ubuntu1_all.deb Size: 1655988 MD5sum: ce09742c3a4329114443d8cefce77ffb SHA1: 259233b5918424d51d2b605dadeaf3660f0f452b SHA256: 0014581845a9ebf05d4f0aab44ab4a657cc22244ae49b733d0d32db41ecfdbf9 Description: Core Xapian documentation Homepage: http://xapian.org/ Description-md5: e76855e484cd6d937e71c4db76b80458 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xapian-examples Priority: optional Section: doc Installed-Size: 477 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: amd64 Source: xapian-core Version: 1.2.16-2ubuntu1 Depends: libc6 (>= 2.2.5), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), libxapian22 Recommends: libxapian-dev (= 1.2.16-2ubuntu1) Filename: pool/main/x/xapian-core/xapian-examples_1.2.16-2ubuntu1_amd64.deb Size: 23828 MD5sum: 367f90ca916744dc8f5725ace23ac9c4 SHA1: 2a91f3934597037981bcf88967cc4b2d3199520d SHA256: a7eb059f89c9ab8281c7607ee0c99f5fe04f23151ae2dea237d60e83d9182434 Description: Xapian simple example programs Homepage: http://xapian.org/ Description-md5: 0c45197954382af4e64ed4768737a697 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xauth Priority: standard Section: x11 Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:1.0.7-1ubuntu1 Depends: libc6 (>= 2.14), libx11-6, libxau6, libxext6, libxmuu1 Filename: pool/main/x/xauth/xauth_1.0.7-1ubuntu1_amd64.deb Size: 25766 MD5sum: 685acf3035a5d99f2bd9be83c730fad8 SHA1: b0dd393fbf08e2009cf496d335a859b99b03acdb SHA256: fac4ad40651feb318b7d84701991644140aeca827276ce174a3d782d2449e8c4 Description: X authentication utility Multi-Arch: foreign Description-md5: 20c8545ce7ba7273dbeefb5186103e04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: xaw3dg Priority: optional Section: x11 Installed-Size: 455 Maintainer: Ubuntu Developers Original-Maintainer: Francesco Paolo Lovergine Architecture: amd64 Source: xaw3d Version: 1.5+E-18.2 Depends: libc6 (>= 2.14), libx11-6, libxext6, libxmu6, libxt6 Pre-Depends: multiarch-support Conflicts: axe (<< 6.1.2-2), gv (<< 1:3.5.8-30.1), xaw3d (<= 1.3-6), xfig (<< 1:3.2.4-rel-9) Filename: pool/main/x/xaw3d/xaw3dg_1.5+E-18.2_amd64.deb Size: 174196 MD5sum: 49842fe446c71f5a26f2edfa8dd8a74e SHA1: f6e2db9120f9d6bf717d335f345c2b1c448d56ce SHA256: 99557e9a856bfa17512904b43da67c0bb90a8bbcf1e9da79b488f167fe0a91c1 Description: Xaw3d widget set Multi-Arch: same Description-md5: 10202d316ae3ffe0456d7091286d9be5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xaw3dg-dev Priority: optional Section: devel Installed-Size: 976 Maintainer: Ubuntu Developers Original-Maintainer: Francesco Paolo Lovergine Architecture: amd64 Source: xaw3d Version: 1.5+E-18.2 Replaces: xaw3dg (<< 1.5+E-16) Depends: xaw3dg (= 1.5+E-18.2), xutils-dev, libx11-dev, libxmu-dev, libxpm-dev, libxt-dev, x11proto-core-dev, x11proto-xext-dev Conflicts: xaw3d-dev Filename: pool/main/x/xaw3d/xaw3dg-dev_1.5+E-18.2_amd64.deb Size: 248412 MD5sum: 3a2dcafe0ac10d6f9df833a3b9133c02 SHA1: da0dcadc2bd3848997264a5becdd8fa9425e14dc SHA256: 9f9b76946d3ab7b7847c0519117c930afe88ffb46189c893863e1bfff249dbca Description: Xaw3d widget set development package Multi-Arch: same Description-md5: 0ff76680f649c459f9d2e589e210abec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xbitmaps Priority: optional Section: x11 Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1.1.1-2 Filename: pool/main/x/xbitmaps/xbitmaps_1.1.1-2_all.deb Size: 28074 MD5sum: 706d6b2d5ebcbee9feaed84d7d1df014 SHA1: 7a128f717912c10c151daeda898177deebcee70a SHA256: ea30b47ef73d66d980d66e1bdad5f9bb7815cf88926634789c7366d54b67587b Description: Base X bitmaps Multi-Arch: foreign Description-md5: 5c825d172ff946c25bc263a05be159f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xcb-proto Priority: optional Section: libdevel Installed-Size: 660 Maintainer: Ubuntu Developers Original-Maintainer: XCB Developers Architecture: all Version: 1.10-1 Filename: pool/main/x/xcb-proto/xcb-proto_1.10-1_all.deb Size: 77610 MD5sum: 09694e4f08bb3c2bb13c7539d24ebc07 SHA1: 8229980bad2adb4ade529baafa254578ea8c20ae SHA256: 9305eb82b457ce4fc50a3ffd9cfe52d735a5539d0c670384057e81a954ac760a Description: X C Binding - protocol descriptions Multi-Arch: foreign Homepage: http://xcb.freedesktop.org Description-md5: 0a6da0d45e213f3227fca0058bf59393 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xchat-gnome Priority: optional Section: gnome Installed-Size: 1172 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 1:0.30.0~git20131003.d20b8d+really20110821-0.2ubuntu12 Replaces: xchat-gnome-common (<< 1:0.30.0~git20100421.29cc76) Depends: gconf-service, libc6 (>= 2.14), libcairo2 (>= 1.2.4), libcanberra-gtk0 (>= 0.3), libcanberra0 (>= 0.2), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libice6 (>= 1:1.0.0), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libperl5.18 (>= 5.18.2), libpython2.7 (>= 2.7), libsexy2 (>= 0.1.8), libsm6, libssl1.0.0 (>= 1.0.0), libtcl8.6 (>= 8.6.0), libx11-6, gconf2 (>= 2.28.1-2), xchat-gnome-common (= 1:0.30.0~git20131003.d20b8d+really20110821-0.2ubuntu12) Recommends: xchat-gnome-indicator Filename: pool/main/x/xchat-gnome/xchat-gnome_0.30.0~git20131003.d20b8d+really20110821-0.2ubuntu12_amd64.deb Size: 280738 MD5sum: 35e06f5d5f1cd4cc41e9b893235ac104 SHA1: b3a1fc01b02efe452e2d30ebe95ec08ddc17d16b SHA256: 497405cb54de4b68cd7f6e3b12ddc4ec4f84ab24248f2f38be3f68fce42d6ac9 Description: simple and featureful IRC client for GNOME Description-md5: fa07313eea00d91b9ddefe4efde88eea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xchat-gnome-common Priority: optional Section: gnome Installed-Size: 1084 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: xchat-gnome Version: 1:0.30.0~git20131003.d20b8d+really20110821-0.2ubuntu12 Depends: gconf2 (>= 2.28.1-2) Filename: pool/main/x/xchat-gnome/xchat-gnome-common_0.30.0~git20131003.d20b8d+really20110821-0.2ubuntu12_all.deb Size: 149964 MD5sum: 593c3aa35fe14611789cd4c6a9a3c594 SHA1: d3d71beab364dd139b3e385b1d45cfd9d3733570 SHA256: a382060dd2b3e6fe8f2654bb30181a3c0a1f4a6292f85b26228bb0a76adc9815 Description: data files for XChat-GNOME Description-md5: 90aeb0da58973e46f49eadd01825654d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xchat-gnome-indicator Priority: optional Section: misc Installed-Size: 54 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: xchat-indicator Version: 0.3.11-0ubuntu4 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.28.0), libgtk2.0-0 (>= 2.24.0), libmessaging-menu0 (>= 12.10.0), libunity9 (>= 3.4.6), xchat-gnome (>= 0.26.1-1ubuntu2) Filename: pool/main/x/xchat-indicator/xchat-gnome-indicator_0.3.11-0ubuntu4_amd64.deb Size: 7746 MD5sum: fc0965919f48f6967606c11dfcc3a685 SHA1: 93998e61f80aad8ddf300f8703ebed7e7e0d338c SHA256: d31ef9690ddd0f8bd7309fd844ad67c21c793bdbce36d88df29ab3c3f01bbee6 Description: XChat-GNOME Indicator Plugin Enhances: xchat-gnome Homepage: https://launchpad.net/xchat-indicator Description-md5: 14c2b205f9bfbd5bfdce6930d1aeedfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xcursor-themes Priority: optional Section: x11 Installed-Size: 4088 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1.0.3-1 Filename: pool/main/x/xcursor-themes/xcursor-themes_1.0.3-1_all.deb Size: 486012 MD5sum: 9ad310ea79950882e8c031b64520d689 SHA1: e9184c972e6657b92b20b8a07de0830ecb104346 SHA256: fad132bb23c361480f9df3ec3098df7faf14b24aacdfe02db4a81c13bb17462e Description: Base X cursor themes Description-md5: d55b0b75b3d31697a2beb36f27eaec60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: xdelta3 Priority: optional Section: utils Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: A Mennucc1 Architecture: amd64 Version: 3.0.7-dfsg-2 Depends: libc6 (>= 2.14), liblzma5 (>= 5.1.1alpha+20120614) Filename: pool/main/x/xdelta3/xdelta3_3.0.7-dfsg-2_amd64.deb Size: 73560 MD5sum: 3e96d2d8dedd41fc6b9f440354adb359 SHA1: 98a7c143687b57c082b14bb4fffdeed63a9e27fa SHA256: 71ef5ec017e81e49290dca13f9a111107cdacd8dab168df15632ee869d960d5e Description: Diff utility which works with binary files Description-md5: ee691dc32e90c3bd989ad440d2196fcc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xdg-user-dirs Priority: optional Section: utils Installed-Size: 1178 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 0.15-1ubuntu3 Depends: libc6 (>= 2.14) Filename: pool/main/x/xdg-user-dirs/xdg-user-dirs_0.15-1ubuntu3_amd64.deb Size: 60688 MD5sum: d26d9dd18b05ef5eb30f3b54d73cb932 SHA1: 088885973587244cd21006e2b5ab6ceb72dd9f7e SHA256: a1d000d92d9b2ed729e701165fc92cf304f14490badd32c3d336ac6e9a5fd706 Description: tool to manage well known user directories Homepage: http://www.freedesktop.org/wiki/Software/xdg-user-dirs Description-md5: bede57a95f8202be418742bfd703ba9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xdg-user-dirs-gtk Priority: optional Section: utils Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: amd64 Version: 0.10-1ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.0.0), xdg-user-dirs Filename: pool/main/x/xdg-user-dirs-gtk/xdg-user-dirs-gtk_0.10-1ubuntu1_amd64.deb Size: 10096 MD5sum: 5abe042e25b738080c986570985789b2 SHA1: 13add66d807cb143aeb6d1829a251bfa503788d0 SHA256: 3ca7833f5fb15d90f89f3943a93c567c32d3eb01c8da99f07c18055bd6a959f1 Description: tool to manage well known user directories (Gtk extension) Homepage: http://www.freedesktop.org/wiki/Software/xdg-user-dirs Description-md5: 29d6579970525b2d5aea83508bb9d59c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: xdg-utils Priority: optional Section: utils Installed-Size: 263 Maintainer: Ubuntu Developers Original-Maintainer: Per Olofsson Architecture: all Version: 1.1.0~rc1-2ubuntu7 Recommends: libfile-mimeinfo-perl, x11-utils, x11-xserver-utils Suggests: gvfs-bin Filename: pool/main/x/xdg-utils/xdg-utils_1.1.0~rc1-2ubuntu7_all.deb Size: 65568 MD5sum: ec3863bc034aec1762cb67fdc39774fe SHA1: 67430cfc5977e50374039a71e8e4a29faf1b4a14 SHA256: 4bcaaa4c7fe8af9ef504a1b8ea0b546be016761083f7f39e6f79b5e3b45b6607 Description: desktop integration utilities from freedesktop.org Multi-Arch: foreign Homepage: http://portland.freedesktop.org/ Description-md5: b2d9372f62fa5a8a1219b71092959764 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: xdiagnose Priority: optional Section: python Installed-Size: 733 Maintainer: Bryce Harrington Architecture: all Version: 3.6.3build2 Replaces: x11-common (<< 1:7.6+7ubuntu1), xorg (<< 1:7.6+7ubuntu1), xserver-xorg-video-intel (<= 2:2.14.0-4ubuntu8) Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python3:any (>= 3.3.2-2~), python, python3-gi (>= 3.2.0-3), gir1.2-gtk-3.0, python3-apport, librsvg2-2, librsvg2-common, policykit-1 Recommends: intel-gpu-tools Conflicts: ubuntu-defaults-nexus7 (<= 0.39), x11-common (<< 1:7.6+7ubuntu1) Filename: pool/main/x/xdiagnose/xdiagnose_3.6.3build2_all.deb Size: 64060 MD5sum: 4b6cf5c3f370ec9019eabcd4556aae13 SHA1: d3bb4a7a20ea2ca7f441f58f3ff53909c5cdc598 SHA256: 9494bfb25576478c382c651b8dbc474f0e6607d9e3d29a66bb27d95eaffd376a Description: X.org diagnosis tool Homepage: http://wiki.ubuntu.com/X Description-md5: ceca96828e411b7ecc73f81dd97854fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: xfonts-base Priority: optional Section: x11 Installed-Size: 8280 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:1.0.3 Replaces: xfonts-misc Depends: xfonts-utils (>= 1:7.5+2) Suggests: xfs | xserver Filename: pool/main/x/xfonts-base/xfonts-base_1.0.3_all.deb Size: 6179596 MD5sum: 0d9498b974e915dce5e1fc5bc000156d SHA1: d81c2657d035df7ad1c2d70058d0fc2d5f45777f SHA256: af0090420584c81d901866046bec1b4640ba5211708cdf142cb1666e44797c6a Description: standard fonts for X Description-md5: b523687dc2655def36c6861a16a103b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xfonts-encodings Priority: optional Section: x11 Installed-Size: 668 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:1.0.4-1ubuntu1 Replaces: xfonts-base (<< 1:1.0.0) Depends: x11-common Filename: pool/main/x/xfonts-encodings/xfonts-encodings_1.0.4-1ubuntu1_all.deb Size: 583178 MD5sum: af0561894efc2f2e3037f0d400a05079 SHA1: 5e3356e7c4ba572683a7d3575461e6433607ab5a SHA256: 08e14c8cc65756f0b1b107417797109800b4d64e38bfddccadb6fd41552a535a Description: Encodings for X.Org fonts Multi-Arch: foreign Description-md5: 756f2a9079a3a81226ce262c1c944fd7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xfonts-mathml Priority: extra Section: x11 Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Atsuhito KOHDA Architecture: all Version: 6ubuntu1 Depends: xfonts-utils Suggests: fonts-lyx, fonts-stix Filename: pool/main/x/xfonts-mathml/xfonts-mathml_6ubuntu1_all.deb Size: 42466 MD5sum: 84d83d208d53201b2270de6b9feabf56 SHA1: 5401bef576d84c0dbda5722c80ca33e9d875a6c3 SHA256: 05be97f8ae24903dd981c205f29a1f6d063ad5f7a8bf0e5b114ec4912c684a01 Description: Type1 Symbol font for MathML Description-md5: a81cfa3755cf794a60eb7de0d016dae3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: xfonts-scalable Priority: optional Section: x11 Installed-Size: 532 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:1.0.3-1 Depends: xfonts-utils Suggests: xfs | xserver Conflicts: xfntscl Filename: pool/main/x/xfonts-scalable/xfonts-scalable_1.0.3-1_all.deb Size: 333924 MD5sum: 0c1ddf38d30ef820452a61ca5fceb134 SHA1: 9867602685dffb801aa4f2b80f962467bafd8553 SHA256: bddd15134e30c9cb1f269d3ca462f2c0e15029b5297d5501d67ef168dffa5398 Description: scalable fonts for X Description-md5: 130f2543a116db5cfb1067f413a7dc80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xfonts-unifont Priority: optional Section: x11 Installed-Size: 2785 Maintainer: Ubuntu Developers Original-Maintainer: Paul Hardy Architecture: all Source: unifont Version: 1:6.3.20131221-1 Replaces: unifont (<< 1:5.1.20080706) Depends: xfonts-utils Suggests: ttf-unifont Conflicts: unifont (<< 1:5.1.20080706) Filename: pool/main/u/unifont/xfonts-unifont_6.3.20131221-1_all.deb Size: 1834784 MD5sum: 6eb6e4728b2c00ef06c9c1a2aab901a7 SHA1: 44902c748f8f1c2325efb2b891f87421a013fa24 SHA256: 59b22c507bb6ecd7ccb04519fe86fc35270c1fa40d5243379ea5e240f3aeb43b Description: PCF (bitmap) version of GNU Unifont Homepage: http://unifoundry.com Description-md5: 8e141e66af37a4f88539c6e40f5177cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xfonts-utils Priority: optional Section: x11 Installed-Size: 391 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:7.7+1 Depends: libc6 (>= 2.14), libfontenc1, libfreetype6 (>= 2.2.1), libxfont1 (>= 1:1.4.2), zlib1g (>= 1:1.1.4), x11-common, xfonts-encodings Filename: pool/main/x/xfonts-utils/xfonts-utils_7.7+1_amd64.deb Size: 73910 MD5sum: e2a97d3e8d2dcd832df6a8697dc97802 SHA1: 7063ad9a9398696293bb34cf0d504abbe9533392 SHA256: 23891d79c5e08d302c91420ddca4bb7943513e282b384493f6072c81fd6e05b8 Description: X Window System font utility programs Multi-Arch: foreign Description-md5: cfb627fb99a0d0ef5d7b0b2f94423328 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xfpt Priority: extra Section: text Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Metzler Architecture: amd64 Version: 0.09-1 Depends: libc6 (>= 2.14) Filename: pool/main/x/xfpt/xfpt_0.09-1_amd64.deb Size: 94414 MD5sum: 5f59f346a60bb35a3fc56e63e166c181 SHA1: 1a4e89f93b6a013f2937f05df7d1a07c0daf684e SHA256: ac70997393ac912b6924dc598b849e16bf70023f4ff7a4f07b23620df651211e Description: generate XML from plain text Description-md5: 4f18f0f9f6e01f72c3d25e523873f3ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xfsdump Priority: optional Section: admin Installed-Size: 712 Maintainer: Ubuntu Developers Original-Maintainer: Nathan Scott Architecture: amd64 Version: 3.1.1ubuntu2 Depends: libattr1 (>= 2.0.0), libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libtinfo5, libuuid1 (>= 2.16), xfsprogs (>= 2.6.30) Suggests: acl, attr, quota Conflicts: xfsprogs (<< 3.0.0) Filename: pool/main/x/xfsdump/xfsdump_3.1.1ubuntu2_amd64.deb Size: 204364 MD5sum: 6f56500e3f74d41fc7109c288ad89b17 SHA1: da35c38ae268a4390b30ff9f0dcc2d65569165f2 SHA256: 66b971a240b117d8925d3b8ba2b38dc693ed5ff6c29e686410563052b643d8da Description: Administrative utilities for the XFS filesystem Homepage: http://oss.sgi.com/projects/xfs/ Description-md5: 8448ced317c37d3587808bf000f24a98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xfslibs-dev Priority: extra Section: libdevel Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: XFS Development Team Architecture: amd64 Source: xfsprogs Version: 3.1.9ubuntu2 Depends: libc6-dev | libc-dev, uuid-dev, xfsprogs (>= 3.0.0) Breaks: xfsprogs (<< 3.0.0) Filename: pool/main/x/xfsprogs/xfslibs-dev_3.1.9ubuntu2_amd64.deb Size: 23712 MD5sum: 04fe6d6a8872cf3bf2f8656b4e7ee729 SHA1: edd7ae5deb4a84c352bf04e7e056ec7076e30050 SHA256: dc1c2596739795a9eec0ec2dca58fe11786ccc134001b967693aaceed628de4f Description: XFS filesystem-specific static libraries and headers Homepage: http://oss.sgi.com/projects/xfs/ Description-md5: 54fdf1338d81d394bfd209d85009d7c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xfsprogs Priority: optional Section: admin Installed-Size: 2628 Maintainer: Ubuntu Developers Original-Maintainer: XFS Development Team Architecture: amd64 Version: 3.1.9ubuntu2 Replaces: xfsdump (<< 3.0.0) Provides: fsck-backend Depends: libblkid1 (>= 2.17.2), libc6 (>= 2.14), libreadline5 (>= 5.2), libuuid1 (>= 2.16) Suggests: xfsdump, acl, attr, quota Breaks: xfsdump (<< 3.0.0) Filename: pool/main/x/xfsprogs/xfsprogs_3.1.9ubuntu2_amd64.deb Size: 508136 MD5sum: cd7af43d46ad3eca3839ded13f2a0129 SHA1: c0b0000a524e5e90b73d0eb05578b1ef8414e1e1 SHA256: 7fd7c8fce22c77ea25b4bdce2c6012969e9f278b275e9836786d7f48f94ab183 Description: Utilities for managing the XFS filesystem Homepage: http://oss.sgi.com/projects/xfs/ Description-md5: d4c8a52ff3d62c047666981d75366c2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: xinetd Priority: extra Section: net Installed-Size: 320 Maintainer: Ubuntu Core Developers Original-Maintainer: Salvo 'LtWorf' Tomaselli Architecture: amd64 Version: 1:2.3.15-3ubuntu1 Provides: inet-superserver Depends: libc6 (>= 2.15), libwrap0 (>= 7.6-4~), netbase, update-inetd Recommends: rsyslog | system-log-daemon, logrotate Conflicts: inet-superserver Filename: pool/main/x/xinetd/xinetd_2.3.15-3ubuntu1_amd64.deb Size: 104410 MD5sum: 1b7626e4edab8164b11f74b323a4413f SHA1: 64a2cb5c48b371644b8adf37a40c4130e8ca0a41 SHA256: 570a1b90296d0c86d1965898743eccdab071098ceee06b5c33a4eee3d9250dab Description: replacement for inetd with many enhancements Homepage: http://www.xinetd.org Description-md5: dc305c474ff901c52b71c07c0ec109d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xinit Priority: optional Section: x11 Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1.3.2-1 Depends: libc6 (>= 2.11), libx11-6, coreutils (>= 7.4-1), x11-common, xauth Recommends: xserver-xorg | xserver, xterm | x-session-manager | x-window-manager | x-terminal-emulator Filename: pool/main/x/xinit/xinit_1.3.2-1_amd64.deb Size: 18810 MD5sum: add131a152863724727751fa6db8b00c SHA1: 45fd7bfb51998124e48a839c14c1168687ead1c0 SHA256: 13b4041e68010a906673158cf4cdf18ce38d8bbd1e8a9086887d6d86d9d43985 Description: X server initialisation tool Description-md5: d1a59408a40e4b7d5f1e952907662c93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xinput Priority: optional Section: x11 Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1.6.1-1 Depends: libc6 (>= 2.7), libx11-6 (>= 2:1.2.99.901), libxi6 (>= 2:1.2.99.4), libxinerama1, libxrandr2 (>= 2:1.2.0) Filename: pool/main/x/xinput/xinput_1.6.1-1_amd64.deb Size: 24924 MD5sum: 42f54fd5d4675d78fbf3a2b5ef63f73b SHA1: 4ce305e2b4ae0f56b9efb37c728f4e35cddb56f7 SHA256: 2f488a1859f59bc8c1a6b81b9d6f6ded189ff811773c9c07de50660d4ca0aeec Description: Runtime configuration and test of XInput devices Description-md5: 430b05bbc8c851147aaa5b8f95166a9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xkb-data Priority: important Section: x11 Installed-Size: 2836 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xkeyboard-config Version: 2.10.1-1ubuntu1 Breaks: libx11-6 (<< 2:1.4.3) Filename: pool/main/x/xkeyboard-config/xkb-data_2.10.1-1ubuntu1_all.deb Size: 294472 MD5sum: 9d44b9643e14b255b16071fbcc4e57ff SHA1: fb8dc1ea1db9ef440d750bb168a8d00d99ec630c SHA256: 831f26a3666a64edd378b0da1d4f1af2842d13a4672bc365d6b6568a95dbc594 Description: X Keyboard Extension (XKB) configuration data Multi-Arch: foreign Homepage: http://www.freedesktop.org/Software/XKeyboardConfig Description-md5: 3253e95e707af859f77590b31f05da3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: xkb-data-i18n Priority: extra Section: x11 Installed-Size: 2619 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xkeyboard-config Version: 2.10.1-1ubuntu1 Filename: pool/main/x/xkeyboard-config/xkb-data-i18n_2.10.1-1ubuntu1_all.deb Size: 292954 MD5sum: 430f883ab78063c06bd2298016859a0f SHA1: e5b49d82db547d953c2a2d37c983bbb6e2f764df SHA256: 6ebf3cb86dd1206bbd3d890b06c520fcf0ab92a539660f09d3563eca6da65094 Description: X Keyboard Extension (XKB) configuration data translations Multi-Arch: foreign Homepage: http://www.freedesktop.org/Software/XKeyboardConfig Description-md5: ad18c9da1cefd47e5b70e985c477f20e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xml-core Priority: standard Section: text Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 0.13+nmu2 Depends: sgml-base (>= 1.26+nmu2), sed (>= 4.1.2-8) Suggests: debhelper (>= 9.20120909) Filename: pool/main/x/xml-core/xml-core_0.13+nmu2_all.deb Size: 23274 MD5sum: 1c3346c29931346fdfc60b64db3f502b SHA1: 0d2b5a2eb86c6f53a9374c7e694e39b85637314e SHA256: c1dbc6d07db2e26821597b5cf67ee2a0d39e42ad8c992f65a5881260d8723d05 Description: XML infrastructure and XML catalog file support Description-md5: 304140a15687273ea24563dfcde030d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: xmlto Priority: optional Section: text Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Version: 0.0.25-2 Depends: debianutils (>= 1.16), docbook-xml (>= 4.2-8), docbook-xsl (>= 1.64.1.0), libxml2-utils, sgml-base, xsltproc (>= 1.1.12-8), libc6 (>= 2.3.4) Recommends: dblatex | fop, libpaper-utils, zip Suggests: w3m | lynx-cur | links, xmltex (>= 1.9.debian.1) Filename: pool/main/x/xmlto/xmlto_0.0.25-2_amd64.deb Size: 30442 MD5sum: 1b6c5f69fe8c987754ce83488a3e3d11 SHA1: c162bb3fea1116b86c5e09a7789954ed91072582 SHA256: bda65ba127ba94ffb381b86cd9a4cd8819dc3929b0c9d15bea2878fe6402d433 Description: XML-to-any converter Multi-Arch: foreign Homepage: https://fedorahosted.org/xmlto/ Description-md5: b2240e3783aa2cfe8124aad28dfb519c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xmltoman Priority: optional Section: devel Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 0.4-3 Depends: libxml-parser-perl Filename: pool/main/x/xmltoman/xmltoman_0.4-3_all.deb Size: 12202 MD5sum: 8e900672469675cb93dc86fc5319f36d SHA1: d0b69dfb0cb64065bb83ec6f471f7133c06e169e SHA256: 101b6a9b4b84b9ab87c71eaa86f6586984a8a8d2faa53f942d1c2548909eae60 Description: simple XML to man converter Homepage: http://sourceforge.net/projects/xmltoman/ Description-md5: b361414227db117d1ded552796462a85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xorg Priority: optional Section: x11 Installed-Size: 80 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:7.7+1ubuntu8 Provides: x-window-system, x-window-system-core Depends: xserver-xorg (>= 1:7.7+1ubuntu8), libgl1-mesa-glx | libgl1, libgl1-mesa-dri, libglu1-mesa, xfonts-base (>= 1:1.0.0-1), x11-apps, x11-session-utils, x11-utils, x11-xfs-utils, x11-xkb-utils, x11-xserver-utils, xauth, xinit, xfonts-utils, xkb-data, xorg-docs-core, xterm | x-terminal-emulator, x11-common, xinput Recommends: xfonts-scalable (>= 1:1.0.0-1) Suggests: xorg-docs, xfonts-100dpi (>= 1:1.0.0-1), xfonts-75dpi (>= 1:1.0.0-1) Filename: pool/main/x/xorg/xorg_7.7+1ubuntu8_amd64.deb Size: 3130 MD5sum: 78d0a21505c1c0621c998e4f8e2dfb02 SHA1: a9a933ff64603ad62bdf1456add675e274745e16 SHA256: c34dc0161d72b9ac647b6e3a2c905d9deacff7d90ff1cc5d1015df8b6972dad5 Description: X.Org X Window System Description-md5: f5abde5fb283cb96048a3d3a5fe06e17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xorg-dev Priority: optional Section: x11 Installed-Size: 64 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xorg Version: 1:7.7+1ubuntu8 Depends: libdmx-dev, libfontenc-dev, libfs-dev, libice-dev, libsm-dev, libx11-dev, libxau-dev, libxaw7-dev, libxcomposite-dev, libxcursor-dev, libxdamage-dev, libxdmcp-dev, libxext-dev, libxfixes-dev, libxfont-dev, libxft-dev, libxi-dev, libxinerama-dev, libxkbfile-dev, libxmu-dev, libxmuu-dev, libxpm-dev, libxrandr-dev, libxrender-dev, libxres-dev, libxss-dev, libxt-dev, libxtst-dev, libxv-dev, libxvmc-dev, libxxf86dga-dev, libxxf86vm-dev, x11proto-bigreqs-dev, x11proto-composite-dev, x11proto-core-dev, x11proto-damage-dev, x11proto-dmx-dev, x11proto-fixes-dev, x11proto-fonts-dev, x11proto-gl-dev, x11proto-input-dev, x11proto-kb-dev, x11proto-randr-dev, x11proto-record-dev, x11proto-render-dev, x11proto-resource-dev, x11proto-scrnsaver-dev, x11proto-video-dev, x11proto-xcmisc-dev, x11proto-xext-dev, x11proto-xf86bigfont-dev, x11proto-xf86dga-dev, x11proto-xf86dri-dev, x11proto-xf86vidmode-dev, x11proto-xinerama-dev, xserver-xorg-dev, xtrans-dev, x11-common Filename: pool/main/x/xorg/xorg-dev_7.7+1ubuntu8_all.deb Size: 2886 MD5sum: b50e878bcce5b1098029a6aeb5399592 SHA1: 5d6d0a69d208dcc93fd1e47f742c49bd93fa7ac6 SHA256: d7dee6595456e894246f7851abdd9bee25927a7c8766a63be7703f3d19044288 Description: X.Org X Window System development libraries Description-md5: 00a974084948001400546a402cbefdb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xorg-docs Priority: optional Section: x11 Installed-Size: 2057 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:1.7-1 Replaces: xprt-xprintorg (<= 1:0.1.0.alpha1-10), xspecs (<= 1:1.2+git20061105-2) Conflicts: xprt-xprintorg (<= 1:0.1.0.alpha1-10) Filename: pool/main/x/xorg-docs/xorg-docs_1.7-1_all.deb Size: 1225830 MD5sum: 88475b68f67fb7cd1a4ec82440c37016 SHA1: cfa363c9f9aba07ccfebc7418871b75b95f635d4 SHA256: 517d837538533b1ac661881365d439e3348cd2bbb765d509c94aacb10c04f331 Description: Miscellaneous documentation for the X.org X Window System Description-md5: 8e446e7efb54922706b8ca2c81cd7cf2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xorg-docs-core Priority: optional Section: x11 Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: xorg-docs Version: 1:1.7-1 Replaces: xorg-docs (<< 1:1.4-5) Suggests: xorg-docs Filename: pool/main/x/xorg-docs/xorg-docs-core_1.7-1_all.deb Size: 42062 MD5sum: 1f73bf325c6bb3cf9003b8abbe1d298a SHA1: 36abb81c27865e93450757e645d9a38023955210 SHA256: cde864eb05ace3b1698c580f0cd75a1af97610a5e62a2f903fa87cb9c410859e Description: Core documentation for the X.org X Window System Description-md5: 37a691694c97a0321d19b964ed2f7f5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xorg-sgml-doctools Priority: optional Section: x11 Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:1.11-1 Filename: pool/main/x/xorg-sgml-doctools/xorg-sgml-doctools_1.11-1_all.deb Size: 12926 MD5sum: 50af86828f27de21901ac305fcbcd97a SHA1: 982de6d8ba452399677ec979cc962f98759090ac SHA256: 2f6463489813c2a08e077a6502453c3252453f7cbdab9f323006e081b33e7ad3 Description: Common tools for building X.Org SGML documentation Multi-Arch: foreign Description-md5: 9b074ec1fd035c058dfb6f238155efeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xorriso Priority: optional Section: otherosfs Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: amd64 Source: libisoburn Version: 1.3.2-1ubuntu1 Depends: libc6 (>= 2.3.4), libisoburn1 (= 1.3.2-1ubuntu1), libburn4 (>= 0.7.2), libisofs6 (>= 0.6.24) Suggests: jigit (>= 1.17-2), cdck Filename: pool/main/libi/libisoburn/xorriso_1.3.2-1ubuntu1_amd64.deb Size: 113328 MD5sum: 6eaf5c26264940689f23305ec2fdefaf SHA1: e2c1b8263478dfb0a816d4e8e07f061976b0164f SHA256: 367d9009f70f9d892ac734f8adce83af9dfa8072508adc68aadeed7fc8b24afd Description: command line ISO-9660 and Rock Ridge manipulation tool Homepage: http://libburnia-project.org Description-md5: 4538911b3f3a5e4314b9eefecd4579e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-common Priority: optional Section: x11 Installed-Size: 1762 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xorg-server Version: 2:1.15.1-0ubuntu2 Replaces: xserver-common-lts-quantal (<< 3:0), xserver-common-lts-raring (<< 3:0), xserver-common-lts-saucy (<< 3:0), xserver-common-lts-trusty (<< 3:0), xserver-xorg-core (<< 2:1.5.2) Depends: x11-common, xkb-data, x11-xkb-utils Recommends: xfonts-base, xauth Breaks: xserver-common-lts-quantal (<< 3:0), xserver-common-lts-raring (<< 3:0), xserver-common-lts-saucy (<< 3:0), xserver-common-lts-trusty (<< 3:0) Filename: pool/main/x/xorg-server/xserver-common_1.15.1-0ubuntu2_all.deb Size: 27170 MD5sum: 08eaa74918537c080c75edf1e29d0ffc SHA1: a0020e15fc214ff3f03b90291cd47a3ef7831ac2 SHA256: 1f5a2d99d1b6c555235a4935c034fcb2379f8f033224e1318a10fb9e3691c903 Description: common files used by various X servers Description-md5: be03943b6955ee9fae7163ad516c772f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-common-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: all Source: xorg-lts-transitional Version: 3:5 Depends: xserver-common Filename: pool/main/x/xorg-lts-transitional/xserver-common-lts-quantal_5_all.deb Size: 1688 MD5sum: 80015c9db659a0e145f05ab1c76a14af SHA1: d489102d9ff4b42de20a82429339c922479f5e36 SHA256: 20249319a2760bcf267262182ff872c0bfdd40153874b37d65ff5509ad1e5e80 Description: Transitional package for xserver-common Description-md5: 71c1e9a97802e86d097fc4978111de0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-common-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: all Source: xorg-lts-transitional Version: 3:5 Depends: xserver-common Filename: pool/main/x/xorg-lts-transitional/xserver-common-lts-raring_5_all.deb Size: 1680 MD5sum: d512d72ddffffc5322c04c426e7ae2fe SHA1: d56bca14872309cebf353ee92cacae9174e15701 SHA256: effaff37be3d605b501235eeb775d8097bbd3be8cbf69b04b789ec09ed904636 Description: Transitional package for xserver-common Description-md5: 71c1e9a97802e86d097fc4978111de0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-common-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: all Source: xorg-lts-transitional Version: 3:5 Depends: xserver-common Filename: pool/main/x/xorg-lts-transitional/xserver-common-lts-saucy_5_all.deb Size: 1678 MD5sum: 570dfb7bb6f216a9e5541d1498d5e47c SHA1: b44e6d15342a2dfeaf64b196fa666b6924a10ee4 SHA256: 72c2c2af0d17e8d30f8f02c00fd4f31f64f07f5262b108ecb47c2b6043521827 Description: Transitional package for xserver-common Description-md5: 71c1e9a97802e86d097fc4978111de0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg Priority: optional Section: x11 Installed-Size: 366 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xorg Version: 1:7.7+1ubuntu8 Provides: xserver Depends: xserver-xorg-core (>= 2:1.11), xserver-xorg-video-all | xorg-driver-video, xserver-xorg-input-all | xorg-driver-input, xserver-xorg-input-evdev, libc6 (>= 2.7), xkb-data (>= 1.4), x11-xkb-utils Recommends: libgl1-mesa-dri Filename: pool/main/x/xorg/xserver-xorg_7.7+1ubuntu8_amd64.deb Size: 69228 MD5sum: 92ae5a828a4b886aed24304af9b4b4d4 SHA1: 9d824c077e5aded727642d8148744ae42a49724f SHA256: 61cd3fe6fdd10f6bb6630331391ada9e5e5708349ecafc65d4a9ee7c16317fb3 Description: X.Org X server Description-md5: 3d8c1d268e8af6b69f54d86fbd5a3939 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-core Priority: optional Section: x11 Installed-Size: 3669 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xorg-server Version: 2:1.15.1-0ubuntu2 Provides: xorg-input-abi-20, xorg-video-abi-15 Depends: xserver-common (>= 2:1.15.1-0ubuntu2), keyboard-configuration, udev (>= 149), libaudit1 (>= 1:2.2.1), libc6 (>= 2.17), libdrm2 (>= 2.3.1), libgcrypt11 (>= 1.5.1), libgl1-mesa-glx | libgl1, libpciaccess0 (>= 0.12.902), libpixman-1-0 (>= 0.30.0), libselinux1 (>= 2.0.82), libudev1 (>= 183), libxau6, libxdmcp6, libxfont1 (>= 1:1.4.2), libxshmfence1 Recommends: libgl1-mesa-dri (>= 7.10.2-4) Suggests: xfonts-100dpi | xfonts-75dpi, xfonts-scalable Conflicts: xserver-xorg-input-evtouch Breaks: libgl1-mesa-dri (<< 7.10.2-4), libgl1-mesa-dri-experimental (<< 7.10.2-4), libxfixes3 (<< 1:5.0.1), libxi6 (<< 2:1.7.1.901), qt4-x11 (<< 4:4.8.0-1ubuntu2), unity (<< 7.0.2), utouch-frame (<< 2.1.0), utouch-geis (<< 2.2.3), xserver-xorg-input, xserver-xorg-input-2, xserver-xorg-input-2.1, xserver-xorg-input-4, xserver-xorg-input-7, xserver-xorg-input-joystick (<= 1:1.5.0-3), xserver-xorg-input-synaptics (<= 1.2.2-1ubuntu4), xserver-xorg-input-tslib (<= 0.0.6-3), xserver-xorg-input-vmmouse (<= 1:12.6.5-4ubuntu2), xserver-xorg-input-wacom (<= 0.10.5+20100415-1), xserver-xorg-video, xserver-xorg-video-1.0, xserver-xorg-video-1.9, xserver-xorg-video-2, xserver-xorg-video-4, xserver-xorg-video-5, xserver-xorg-video-6, xserver-xorg-video-cyrix (<= 1:1.1.0-8), xserver-xorg-video-i810 (<< 2:2.4), xserver-xorg-video-imstt (<= 1:1.1.0-7), xserver-xorg-video-nsc (<= 1:2.8.3-4), xserver-xorg-video-sunbw2 (<= 1:1.1.0-5), xserver-xorg-video-v4l (<< 1:0.2.0), xserver-xorg-video-vga (<= 1:4.1.0-8) Filename: pool/main/x/xorg-server/xserver-xorg-core_1.15.1-0ubuntu2_amd64.deb Size: 1227730 MD5sum: 1ccf9dc83ecdaf7894d8258835e79b9c SHA1: 385ad98c31d11047cec2271ef72ae109a5826503 SHA256: aa25ed7a78a019d282186fc2a652908789a26f6f75340bbcb42eb7582ed5f832 Description: Xorg X server - core server Description-md5: e3826a765918b79dee4b90ec97f9302c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-core-dbg Priority: extra Section: x11 Installed-Size: 17033 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xorg-server Version: 2:1.15.1-0ubuntu2 Depends: xserver-xorg-core (= 2:1.15.1-0ubuntu2) Filename: pool/main/x/xorg-server/xserver-xorg-core-dbg_1.15.1-0ubuntu2_amd64.deb Size: 3791718 MD5sum: bed6fcbb44fe352de409320b25dc4f63 SHA1: fe28b2ad9dabc8ee3f81db7e1f589c0c5cbd856c SHA256: 51177d2f368687a363bb28d776649e32852e704814cfdedb8abf21de415181d8 Description: Xorg - the X.Org X server (debugging symbols) Description-md5: 748963cc445faabee033c53886a8a0cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-quantal_5_amd64.deb Size: 1540 MD5sum: f706f3efd727c53cda3d262ea51c6eaf SHA1: 4ab759e194b75888ea8ea94dc8657eb995d8b1a8 SHA256: 552628b78ac857b9d6b83976f3dfe312374610cff42d4ca44a6cb585fd6bbd46 Description: Transitional package for xserver-xorg-core Description-md5: d57cbac2f4daf340fb8de23a32304db2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-quantal-dbg_5_amd64.deb Size: 1548 MD5sum: ed0caefec494da277760de4e74eebb42 SHA1: afb4434f8f7de4c2970d5dea70a4cdadcbcd7b70 SHA256: d618490554712ff0a71b789bcc4385ef3933b5353fd1ccb9ee2a0a40a43ac19f Description: Transitional package for xserver-xorg-core-dbg Description-md5: 5477207740a1bb6cd8e3d20747a7e7f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-raring_5_amd64.deb Size: 1540 MD5sum: 4123b47e099f2d9aaaf0a9d848a3c024 SHA1: 202ea2c76acbec43a4141b96f01dfb5a49911005 SHA256: 8abc77b14af07e6286026ac073b4b9d2f02aad18646b6798de733998d6d31b05 Description: Transitional package for xserver-xorg-core Description-md5: d57cbac2f4daf340fb8de23a32304db2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-raring-dbg_5_amd64.deb Size: 1548 MD5sum: 604814057f899550d904bcdf8a41fd66 SHA1: 9996eddbd801058f5be97e535dbc589fb35d146a SHA256: 85ff1aef6d6a6defd4871cc87b0c097db7ed5985248f055b2763863c62ad5e7e Description: Transitional package for xserver-xorg-core-dbg Description-md5: 5477207740a1bb6cd8e3d20747a7e7f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-saucy_5_amd64.deb Size: 1540 MD5sum: 97de444544feb22dd3b2198ed64daba6 SHA1: 794abfe44ea7714e3b8fd6648af75e5e34ffc81f SHA256: 5489ca6f06cd3668bd7dba932449676c225d34b7d465a71cb953a72f2096ebca Description: Transitional package for xserver-xorg-core Description-md5: d57cbac2f4daf340fb8de23a32304db2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-saucy-dbg_5_amd64.deb Size: 1548 MD5sum: 8a29ef61ca380407936f3f43d4c43acf SHA1: 7c749a3c7de584d8dd125313b8b65d3f5632f846 SHA256: 68fd82588f4577feff36fd01f903ff9f295ee24ba51b648dda3d2a2bb7aa4acc Description: Transitional package for xserver-xorg-core-dbg Description-md5: 5477207740a1bb6cd8e3d20747a7e7f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-dev Priority: optional Section: x11 Installed-Size: 1444 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xorg-server Version: 2:1.15.1-0ubuntu2 Depends: libpixman-1-dev (>= 0.27.2), x11proto-core-dev (>= 7.0.22), x11proto-input-dev (>= 2.3), x11proto-xext-dev (>= 7.2.99.901), x11proto-video-dev, x11proto-randr-dev (>= 1.4.0), x11proto-render-dev (>= 2:0.11), x11proto-dri2-dev (>= 2.8), x11proto-gl-dev (>= 1.4.17), x11proto-fonts-dev, x11proto-xinerama-dev, x11proto-kb-dev, x11proto-xf86dri-dev, x11proto-resource-dev (>= 1.2.0), x11proto-scrnsaver-dev, x11proto-xf86bigfont-dev (>= 1.2.0), x11proto-dri3-dev, x11proto-present-dev, libxkbfile-dev, libpciaccess-dev, mesa-common-dev, libmirclient-dev Filename: pool/main/x/xorg-server/xserver-xorg-dev_1.15.1-0ubuntu2_amd64.deb Size: 205202 MD5sum: 8e1fc5bcddbb84164efb3cd37cbf829f SHA1: 85927d87ee171933b3ea7f918d914d53cbad10a4 SHA256: 2675f8174e3a7cee299e72939eb5b80c02a4c81180e3f34cedb10ae0d8109480 Description: Xorg X server - development files Description-md5: 241552d78aca8911808aea0707649843 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-dev-lts-quantal_5_amd64.deb Size: 1542 MD5sum: 1fb68cf36c73aead54eff9c5012df4dc SHA1: a8206ae8e0b21c832345b9d24c53a0053ba2cf0a SHA256: 3e58e8d0b6210fe6363774717b69c87a8af23ed0a0e9f3e9a26336dde7f99e85 Description: Transitional package for xserver-xorg-dev Description-md5: 3c1481b5ce424114f29f3ad31c6d05a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-dev-lts-raring_5_amd64.deb Size: 1538 MD5sum: 490a9c325d979a134220c7c1973dad94 SHA1: 09ea2bd7b1ee334e78c30d13fe04994e22117603 SHA256: 60842bb1f677142a4843e552e572575b946c9afcc5264a0ff81fd760b0af15c4 Description: Transitional package for xserver-xorg-dev Description-md5: 3c1481b5ce424114f29f3ad31c6d05a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-dev-lts-saucy_5_amd64.deb Size: 1542 MD5sum: 829a215d00300beff770bc621dbf5e6f SHA1: 3da460dc124e212a5d6b64d8d23cd64d18571fcf SHA256: f428bd607517d880293789a9c0df25bd5bd8e49e61cbf66569b0ed8f277ad7e4 Description: Transitional package for xserver-xorg-dev Description-md5: 3c1481b5ce424114f29f3ad31c6d05a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-glamoregl-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-glamoregl Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-glamoregl-lts-saucy_5_amd64.deb Size: 1550 MD5sum: 4d3519f8c2eb235af8b003aee9958d71 SHA1: cfd8015bc934b9b8d9ed811d83788a905acbd590 SHA256: ac0d60075da31dc647b1c587d43d808a48b43b1b109ab180d683d950e9304cd0 Description: Transitional package for xserver-xorg-video-glamoregl Description-md5: c0a4994e7fbd8a2768c11a07f8ae4ffa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-all Priority: optional Section: x11 Installed-Size: 64 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xorg Version: 1:7.7+1ubuntu8 Depends: xserver-xorg-input-evdev, xserver-xorg-input-synaptics, xserver-xorg-input-vmmouse, xserver-xorg-input-wacom Filename: pool/main/x/xorg/xserver-xorg-input-all_7.7+1ubuntu8_amd64.deb Size: 4758 MD5sum: 52119c771bf201b6e8f158e9aa362b6c SHA1: 9c2567acde5c6ecd696fdc64e31ba5eec1e883aa SHA256: ddcee0c745de4bca311e76100b8734178ff14be34a280f3b49d218a2ff5acf84 Description: X.Org X server -- input driver metapackage Description-md5: 6dc6019c398114619eba5fcd5806f328 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-all-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-all-lts-quantal_5_amd64.deb Size: 1548 MD5sum: b9332d6aef7c6620015e5eff403133f3 SHA1: 9572594a81fbd37d1c86e80b7e6de5fa45fe49ac SHA256: 332bfee9368aadf8dc972b7c2d94483ce206dcb06a16d01c8863e212421f1665 Description: Transitional package for xserver-xorg-input-all Description-md5: b4cfde0ab23faa6666000f3c82790e2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-all-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-all-lts-raring_5_amd64.deb Size: 1544 MD5sum: e9557346dcd95e1e16bc863cd9210a4c SHA1: 17a17e4b5ae3d0ffd1514050d15d789fade734b9 SHA256: f04e9b1e45fad74879686caf33b114bd09753d4e278381dd573ffefc0b1c6d7e Description: Transitional package for xserver-xorg-input-all Description-md5: b4cfde0ab23faa6666000f3c82790e2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-all-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-all-lts-saucy_5_amd64.deb Size: 1546 MD5sum: 90097089bafc100b2110dfba66674a0a SHA1: be6ecad344618aee6041749905585ce87156180c SHA256: 78d65f116e35d18289ea43d0c3c3c7d40d05b635ed99f78bcfccf59d15f344f7 Description: Transitional package for xserver-xorg-input-all Description-md5: b4cfde0ab23faa6666000f3c82790e2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev Priority: optional Section: x11 Installed-Size: 138 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:2.8.2-1ubuntu2 Provides: xorg-driver-input Depends: libc6 (>= 2.14), libmtdev1 (>= 1.1.0), libudev1 (>= 183), xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev_2.8.2-1ubuntu2_amd64.deb Size: 29600 MD5sum: 998c929bf516cae177f732cdfffdedfb SHA1: 6b22101f2ad8c08141578db89776ff67c1d4ea4a SHA256: c1298f0c2a10b4bb2e734f6bcb34b94adfe9b90a68851eb0160e586af58b65cc Description: X.Org X server -- evdev input driver Description-md5: b1ff33be36b557401f92e75bd8542eed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-evdev-dbg Priority: extra Section: debug Installed-Size: 320 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-input-evdev Version: 1:2.8.2-1ubuntu2 Depends: xserver-xorg-input-evdev (= 1:2.8.2-1ubuntu2) Filename: pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev-dbg_2.8.2-1ubuntu2_amd64.deb Size: 72180 MD5sum: 734fc115ef09a97b0b28ebb0c755ac05 SHA1: dd64240de7b90a87fe37ee97c7f839f2a158ea6a SHA256: 83943c670c7d93d144544e78da04612e931a127a877a066c542ed6f35ba7324c Description: X.Org X server -- evdev input driver (development headers) Description-md5: 1387aa7ff670694b709c4967d9abda47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-dev Priority: optional Section: libdevel Installed-Size: 57 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xserver-xorg-input-evdev Version: 1:2.8.2-1ubuntu2 Filename: pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev-dev_2.8.2-1ubuntu2_all.deb Size: 5190 MD5sum: 28542e20878ecd1d1d3bba4c451e6f47 SHA1: 84752c27e30599549ba0f74ac165cb0b2df2c2d6 SHA256: 16e574e703fe88128837c7e85291f8297467aa91c996b81d5c748109c4661a8c Description: X.Org X server -- evdev input driver (development headers) Description-md5: 2e3206bb3c027a0b8e6b2e8022db7f99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-dev-lts-quantal_5_amd64.deb Size: 1552 MD5sum: b1dd8d9e48f1afc69d52a69c878cfddf SHA1: 828f45370a10ee023f76dcdf5cf237ac5594d39d SHA256: b97e2c35e5e1280cc65686988b1fb11b445108458600dde37e54095deb46ddb3 Description: Transitional package for xserver-xorg-input-evdev-dev Description-md5: cabddf92fbdb6cc82387545f994d4a08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-dev-lts-raring_5_amd64.deb Size: 1552 MD5sum: 3fc32a091001488af41f6dcba4c4cddf SHA1: c9b6c884ffc7948ed15c115a1ada7b8d0a3fed46 SHA256: 55cb4e876000edb5dfaf6913601cf45c523ded060f01b868ba63763ff62620d3 Description: Transitional package for xserver-xorg-input-evdev-dev Description-md5: cabddf92fbdb6cc82387545f994d4a08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-dev-lts-saucy_5_amd64.deb Size: 1550 MD5sum: f59bb88c8d22ae8823b65f0897962104 SHA1: b2e1ec99c0ebb60ace5ec7945c4be84e0d8f08de SHA256: e52839fd70e01fae1a0821b8efacff0a8adc10dcd4a6d45415aa95372ba64157 Description: Transitional package for xserver-xorg-input-evdev-dev Description-md5: cabddf92fbdb6cc82387545f994d4a08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-quantal_5_amd64.deb Size: 1548 MD5sum: 9aa94a1a8a0fc26eca13dccd6456f1a5 SHA1: c95a1e7e10b54c5e8f4b39606fa5751abad991bf SHA256: 596be26fd1d4b278268478909a5f11729ec608957013266eceeb2e2129290281 Description: Transitional package for xserver-xorg-input-evdev Description-md5: 118c847ff1e11f78c35a3e30fd41b408 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-quantal-dbg_5_amd64.deb Size: 1558 MD5sum: bbd9c36f04ae1cea047c687ecec9704d SHA1: 1cd787c3effb88d9c689b254f4f8fa86a9395071 SHA256: 115098e98861e3941c78ae8c5b6270576e93987127faf132fa057567d84338f1 Description: Transitional package for xserver-xorg-input-evdev-dbg Description-md5: ec7423df3299eef9c4b33da46a4685ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-raring_5_amd64.deb Size: 1546 MD5sum: 5c9f213e6c295e924acef11b7be98757 SHA1: 2bd534720f1ba4f6f2d748337b0d9cace3f4a9e2 SHA256: 90e50b988eada5c91bb339b409d6b0be18e1a0a259b8991bebaf6667a2fd4af5 Description: Transitional package for xserver-xorg-input-evdev Description-md5: 118c847ff1e11f78c35a3e30fd41b408 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-raring-dbg_5_amd64.deb Size: 1558 MD5sum: de97ee9a2837820a4b95338ca4844220 SHA1: 67eec4a70284fdb8fd7b512c0c28c00950ea059c SHA256: 677fee6ca0cfc7cbfc6cee0f89032240a8648734573e06d03273b943cf58202e Description: Transitional package for xserver-xorg-input-evdev-dbg Description-md5: ec7423df3299eef9c4b33da46a4685ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-saucy_5_amd64.deb Size: 1548 MD5sum: 535645e4065ac3eacbe184ba6585c8bf SHA1: 4fc8d122e72bbd692fe8231d357472bb5da40d14 SHA256: 7ddde223827a2e41195d2828aabb6c2f5b74d6dfadca4953ae72199b855898e9 Description: Transitional package for xserver-xorg-input-evdev Description-md5: 118c847ff1e11f78c35a3e30fd41b408 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-saucy-dbg_5_amd64.deb Size: 1556 MD5sum: 9f0fc69bb499820d207c58f64c019c50 SHA1: 67ddb43638fbdff39a9e919ce5a98e6a5efa4844 SHA256: 46cf67e41e292fa3d1659f70a635e798ad355315750ac2fdc5b8491f80267745 Description: Transitional package for xserver-xorg-input-evdev-dbg Description-md5: ec7423df3299eef9c4b33da46a4685ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-mouse Priority: optional Section: x11 Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:1.9.0-1build1 Provides: xorg-driver-input Depends: libc6 (>= 2.7), xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.9.0-1build1_amd64.deb Size: 37384 MD5sum: 1f4546a52f01319cb212d7244f020a87 SHA1: 4aef55059a9e6323592c1f952605d3a0cab30d85 SHA256: 4ba588c03c53010ec616f482e1dc17e21b9fc218e2fc406fdfc463de0133b6c9 Description: X.Org X server -- mouse input driver Description-md5: 5fe0e019cb3ffe85c7922a79fcd8a5d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-mouse-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-mouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-mouse-lts-quantal_5_amd64.deb Size: 1548 MD5sum: 7c7a683ab6ba3302cd7510e1f5775af7 SHA1: 5a1f861a7730fe453254caccaff1b513270fa8d6 SHA256: b40b9e9c0d815771575be812ae61f28091fb2ef4c1c4428e18f61c669aa250f0 Description: Transitional package for xserver-xorg-input-mouse Description-md5: 94ecb3ec6b7b8c349a13b1e235ee0e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-mouse-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-mouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-mouse-lts-raring_5_amd64.deb Size: 1544 MD5sum: 8afedb077318090d0f9c82e9fccd57c1 SHA1: aa287bffce10c403125d461244591fcda4c2a9d1 SHA256: 8e25fd36786153753907575661aeaa2cd200ee5171f6371b97cd19192e6cc3dd Description: Transitional package for xserver-xorg-input-mouse Description-md5: 94ecb3ec6b7b8c349a13b1e235ee0e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-mouse-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-mouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-mouse-lts-saucy_5_amd64.deb Size: 1546 MD5sum: 9f3d55d16375f338efdef29551ea8a69 SHA1: 0e954bca9afac28461e1cb0f1a5753c177d1d413 SHA256: 1c369655ca9d2f9442d325a0be44416d2c4c8d952ef8b6bd84e5b1b61c83b2ed Description: Transitional package for xserver-xorg-input-mouse Description-md5: 94ecb3ec6b7b8c349a13b1e235ee0e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics Priority: optional Section: x11 Installed-Size: 228 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1.7.4-0ubuntu1 Replaces: xorg-driver-synaptics Provides: xorg-driver-input, xorg-driver-synaptics Depends: udev, libc6 (>= 2.14), libmtdev1 (>= 1.1.0), libx11-6, libxi6 (>= 2:1.2.0), xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902) Suggests: gpointing-device-settings, touchfreeze Conflicts: xorg-driver-synaptics Breaks: kde-config-touchpad (<< 0.8.1-2~) Filename: pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.7.4-0ubuntu1_amd64.deb Size: 59152 MD5sum: 86faaee7f90b86e8b14ad3c448f6d031 SHA1: 7e00b7474ff1c5dd1ca30a8c8a56d28eb1844d51 SHA256: 1c512ed6d52c6a3e16ef3447a3ba7150188d8c06ce11cd5cf242eb182353b1c6 Description: Synaptics TouchPad driver for X.Org server Description-md5: 6f7a84d9a52f4dc44fd0ad7cc265853b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-synaptics-dbg Priority: extra Section: debug Installed-Size: 426 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-input-synaptics Version: 1.7.4-0ubuntu1 Depends: xserver-xorg-input-synaptics (= 1.7.4-0ubuntu1) Filename: pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics-dbg_1.7.4-0ubuntu1_amd64.deb Size: 100826 MD5sum: 11c31341fea4e9423393484f31cd0351 SHA1: 329db25d7730ca62cad34f42785ecba47b63b041 SHA256: b76b143b78076549b698391b21ddcf81eb327c3488589ef545008c0f25760274 Description: Synaptics TouchPad driver for X.Org server Description-md5: c936b293973e295acf8a1d70dd001072 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xserver-xorg-input-synaptics Version: 1.7.4-0ubuntu1 Depends: x11proto-core-dev Filename: pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics-dev_1.7.4-0ubuntu1_all.deb Size: 6470 MD5sum: f0aa2ef5c4c2c9177f03fd3bb0b97355 SHA1: 57fe4024498f46c201eb1f59a9e6895a5073b990 SHA256: a42060be53afcd1d58ce1a8968df0a36c87ef789aaff7e3290081914e5c343a3 Description: Synaptics TouchPad driver for X.Org server (development headers) Description-md5: 95eb93bc0953189d6cf98a189b43a0ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-dev-lts-quantal_5_amd64.deb Size: 1558 MD5sum: 7dd605a16daf7cfe153cb1eaa7cec40b SHA1: fd3bdddb62ec4c1ca3e7c8b7bd0eef32204392cd SHA256: 43da6d6ebfc1c6e55992a05fd0f98ab5c2b619801c4f25fa09d7070f06a3f180 Description: Transitional package for xserver-xorg-input-synaptics-dev Description-md5: ed543ee6cbc7ae41efc76068ef81f751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-dev-lts-raring_5_amd64.deb Size: 1564 MD5sum: a97ac5519dc9295c13e5ab77c46b9356 SHA1: 6ef23f17d316091a06ad19272a687d8686101ef7 SHA256: abcdd50a9a13fad18f933be03b40bcaa0545ec17e33e8599861295435f579c6f Description: Transitional package for xserver-xorg-input-synaptics-dev Description-md5: ed543ee6cbc7ae41efc76068ef81f751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-dev-lts-saucy_5_amd64.deb Size: 1558 MD5sum: 228b6881f82d4c31463f9333cb4041ef SHA1: 5e968ab56b7e4f88fa4fd6e8dd34ac43710a05e2 SHA256: 4928aca48f00e067780dc55c37e6308a65572a96196003ea5a23e20512cbf73c Description: Transitional package for xserver-xorg-input-synaptics-dev Description-md5: ed543ee6cbc7ae41efc76068ef81f751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-quantal_5_amd64.deb Size: 1552 MD5sum: 4515dc6dfe96450d7d3ef8332bd8feef SHA1: 81077dd84f1660953117c049c9c9012f3ff4c7b5 SHA256: 3180b67774ee36f7c22405e73c49c7c96bdda40febf3a6f49616be3ecb970ebf Description: Transitional package for xserver-xorg-input-synaptics Description-md5: a8b4cc530842e39a894b0328ddf56df8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-quantal-dbg_5_amd64.deb Size: 1564 MD5sum: 1082495ea72fae67332cf22ab0aaa06c SHA1: e83a3188f3df11c9155508713717d9df2b3e2c7b SHA256: 30f7a9ff4ceb9f249a8eddb5e6fb06f4c8670c785e9d45e22388d52b10c43c49 Description: Transitional package for xserver-xorg-input-synaptics-dbg Description-md5: bc02f5feb3f1dcceada4b172abe2987d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-raring_5_amd64.deb Size: 1550 MD5sum: 137921d9d478e3bd766418c9ce65aa9a SHA1: 4f7310f031f2a9a172725b422e26814492b503d3 SHA256: efad420a245cf96d6ec3beddab9affeff34021f7fbbfaf4bb2edfddb21cb928b Description: Transitional package for xserver-xorg-input-synaptics Description-md5: a8b4cc530842e39a894b0328ddf56df8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-raring-dbg_5_amd64.deb Size: 1562 MD5sum: 9eea306818868cd00d51b3f55af5b782 SHA1: 17fe09ccc57c211598175107aeffd4b10c521275 SHA256: 28f5fbb7ce59a7d809ecf53e5bc803585c816f994c65c9ae1478225b5bececfc Description: Transitional package for xserver-xorg-input-synaptics-dbg Description-md5: bc02f5feb3f1dcceada4b172abe2987d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-saucy_5_amd64.deb Size: 1550 MD5sum: 55799c7822a633caccaa89421cb35f82 SHA1: fc88cea22383509f8fabe05da7f565afbfba81a6 SHA256: c0a73eb9854ac013ca1745af8f45cb941c74e5e70ef85785a57856658b8378bc Description: Transitional package for xserver-xorg-input-synaptics Description-md5: a8b4cc530842e39a894b0328ddf56df8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-saucy-dbg_5_amd64.deb Size: 1562 MD5sum: ce421b2baac04826515f42aeb748dc6c SHA1: ca7810d828009eb5a3d57ae283f9a0970292dc76 SHA256: abcca168fce69465001aa2b7ba79f61cf50e84ebcad9b2f4706784dfa5ff366d Description: Transitional package for xserver-xorg-input-synaptics-dbg Description-md5: bc02f5feb3f1dcceada4b172abe2987d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-vmmouse Priority: optional Section: x11 Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:13.0.0-1build1 Provides: xorg-driver-input Depends: libc6 (>= 2.7), xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902), xserver-xorg-input-mouse, udev Filename: pool/main/x/xserver-xorg-input-vmmouse/xserver-xorg-input-vmmouse_13.0.0-1build1_amd64.deb Size: 13410 MD5sum: a139add30baa3966434c301a43007524 SHA1: 2be0d9a1c71c57e76624ab1921e901fbf55a997b SHA256: 9a532d0d4eda3b6866e42b5cba63610328e4b6127fca651b32eeb1e809c04c71 Description: X.Org X server -- VMMouse input driver to use with VMWare Description-md5: aabb1c4203e92983f6cfdcb6e9300e31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-vmmouse-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-vmmouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-vmmouse-lts-quantal_5_amd64.deb Size: 1552 MD5sum: 8abacc9fd4594c8e56c559cedce04fd5 SHA1: 2ee15ac4d3fca3ee507e48b6e047b185f11c06df SHA256: f6fd0bb4aa16c5e11594bf60429be7d2c4c2cd6d1570082bc479636ca017fb15 Description: Transitional package for xserver-xorg-input-vmmouse Description-md5: e3f250f6137528d576336544e65156b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-vmmouse-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-vmmouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-vmmouse-lts-raring_5_amd64.deb Size: 1550 MD5sum: bdd7acd8c846f4e43fc835defc3dff17 SHA1: 5ed072dd6d02b20e0ff0ddcd01f674f523289414 SHA256: b34bdb4dd286261554acf5cc7531b38d76c918e44b4351e31fa0a99551358bb2 Description: Transitional package for xserver-xorg-input-vmmouse Description-md5: e3f250f6137528d576336544e65156b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-vmmouse-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-vmmouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-vmmouse-lts-saucy_5_amd64.deb Size: 1546 MD5sum: edf7647bee22a935e1625c5fb8f474a7 SHA1: f7697c26ad6e85bc4e3098fec4bfcc51c4be2650 SHA256: 3156158d49cdd0b5003ce68d825590777a9e7ef7125874352d99043c912ff565 Description: Transitional package for xserver-xorg-input-vmmouse Description-md5: e3f250f6137528d576336544e65156b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-void Priority: optional Section: x11 Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:1.4.0-1build3 Provides: xorg-driver-input Depends: libc6 (>= 2.4), xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-input-void/xserver-xorg-input-void_1.4.0-1build3_amd64.deb Size: 6898 MD5sum: fc0e1dc42bafb29dbeeb8f0183a422fa SHA1: b36090fb8ad6e97115b1a99c798d5636d4fcc1e8 SHA256: d02e7ecd1c24c8e3da6c6f675e1c381b060743d5a45614da62a2b82705489b9c Description: X.Org X server -- void input driver Description-md5: c1f2dfee72e5d90aa9febdfaa8f146c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-void-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-void Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-void-lts-quantal_5_amd64.deb Size: 1546 MD5sum: 40bec982ec3735e4444b666ddefb2686 SHA1: e8d60fa791f7b3719c35ee761088637bc490b0d4 SHA256: cc3d0e7c6a483fb946a2646406e31dc4aa115851b84c7370c4288982fd3e3724 Description: Transitional package for xserver-xorg-input-void Description-md5: d6ea818044154ad8b9de208b13e01f81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-void-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-void Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-void-lts-raring_5_amd64.deb Size: 1548 MD5sum: 4042a9e1ce1e8a082012846d502a2cec SHA1: 66ef649694b7f7d273808fc2e6af050f4edf9c47 SHA256: 9f70684b3b7fc0f62914a409d598c8c76379e1ae5558b4f0ace2e9c8822501be Description: Transitional package for xserver-xorg-input-void Description-md5: d6ea818044154ad8b9de208b13e01f81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-void-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-void Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-void-lts-saucy_5_amd64.deb Size: 1548 MD5sum: 0f824ec24f9caf94d64a61f495e8eae5 SHA1: ff08dd9648db84232bc45eef4dee7fc9070123e3 SHA256: a8c9322b858a6579a44c9e7c0bfb5bf0972cfceae0cd033c826b22b19f860eb5 Description: Transitional package for xserver-xorg-input-void Description-md5: d6ea818044154ad8b9de208b13e01f81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom Priority: optional Section: x11 Installed-Size: 301 Maintainer: Ubuntu X-SWAT Original-Maintainer: Ron Lee Architecture: amd64 Source: xf86-input-wacom Version: 1:0.23.0-0ubuntu2 Replaces: wacom-tools (<< 0.10.0) Provides: xorg-driver-input Depends: xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902), libc6 (>= 2.4), libx11-6, libxi6 (>= 2:1.2.0), libxinerama1, libxrandr2 (>= 2:1.2.0) Suggests: xinput Conflicts: wacom-tools (<< 0.10.0) Filename: pool/main/x/xf86-input-wacom/xserver-xorg-input-wacom_0.23.0-0ubuntu2_amd64.deb Size: 77744 MD5sum: 306480fed8919b57900a65806ef6f8e9 SHA1: 36f35ebd6f5a0d30633a31c44e740f11a71d29e6 SHA256: 7de2c73453b96966c03e162d30a28e34eb0d9dee9a7fbaebecfb3cfb6d3c84c8 Description: X.Org X server -- Wacom input driver Homepage: http://linuxwacom.sf.net Description-md5: 990a6fd67780d38db31b26b3018b5519 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-wacom-dbg Priority: extra Section: debug Installed-Size: 644 Maintainer: Ubuntu X-SWAT Original-Maintainer: Ron Lee Architecture: amd64 Source: xf86-input-wacom Version: 1:0.23.0-0ubuntu2 Depends: xserver-xorg-input-wacom (= 1:0.23.0-0ubuntu2) Filename: pool/main/x/xf86-input-wacom/xserver-xorg-input-wacom-dbg_0.23.0-0ubuntu2_amd64.deb Size: 157170 MD5sum: 5e4d3862a1da083e4a3aa2a8195a697e SHA1: 083a2d5ea6f692a9c1078f9c51cd848a04716ba9 SHA256: 8fdc722acf84d2fd5e9feaf1eefb0003875acdf3258de1c72992801efaacc3ea Description: X.Org X server -- Wacom input driver Homepage: http://linuxwacom.sf.net Description-md5: 33116a9dd722b7618ab0bb40981493d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-quantal_5_amd64.deb Size: 1554 MD5sum: 25bf7e517fc14a2e1c1b0f749dc92030 SHA1: 100a5273ca1e901cf6a639ade1201f8eddb3b03a SHA256: bcea98f9e59cd24137dd1661da5f91b19913d09bbb489a7218a76670249ef6ea Description: Transitional package for xserver-xorg-input-wacom Description-md5: 0e48d825b09965770bddefda0aa34b9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-quantal-dbg_5_amd64.deb Size: 1558 MD5sum: a44350f6e647be256f8ca127816b440f SHA1: 50d0669c156d3048c5e41d5b68ab04689a2ba059 SHA256: e66db91b80d3862e45f5ce75a373aeb92df9c5a245e6c36449f17694fff8b075 Description: Transitional package for xserver-xorg-input-wacom-dbg Description-md5: 0aecf782ddf8c4e97ae87f1f42a468f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-raring_5_amd64.deb Size: 1544 MD5sum: 239ed25ba9fad062c87ef485b9410399 SHA1: d715c4e2d1c5884b524eebe1d229270d5e06f479 SHA256: 325a7dc214949eea9023acda708615864fc3126ce504fab161b05f055a4226dd Description: Transitional package for xserver-xorg-input-wacom Description-md5: 0e48d825b09965770bddefda0aa34b9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-raring-dbg_5_amd64.deb Size: 1558 MD5sum: cc9cb8e3eafd44d19ff1c86f0fd5c232 SHA1: ebf5973c66a5701d5e3e56f7d4cfe840cc2e10f4 SHA256: 8bee80f8fd8f833fab17a517198f2d5663dc42649eb1f610fa5c89b733b28bde Description: Transitional package for xserver-xorg-input-wacom-dbg Description-md5: 0aecf782ddf8c4e97ae87f1f42a468f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-saucy_5_amd64.deb Size: 1548 MD5sum: 5f02f2cc7846cb2144a58c131bd5ccd1 SHA1: 98fafbddc55b7dfa16f4597c651fbb426139d986 SHA256: 6c0f0cb273d89be8f51d5a76f86669b22b264d940be30f3bc33fb7f8df303d6c Description: Transitional package for xserver-xorg-input-wacom Description-md5: 0e48d825b09965770bddefda0aa34b9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-saucy-dbg_5_amd64.deb Size: 1556 MD5sum: 012e3d2e086ff7b6d93f1e6e506e8956 SHA1: 9a546a4d75dfa177effe269f13a94c4d7f39d7e4 SHA256: 13509ea884d82ec852d6b0d685e8d1cdbddd85b253a6a9d3324243277b691d93 Description: Transitional package for xserver-xorg-input-wacom-dbg Description-md5: 0aecf782ddf8c4e97ae87f1f42a468f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-lts-quantal_5_amd64.deb Size: 1528 MD5sum: e7f2af925bc6c4ede387246961564b2c SHA1: dd72f068ec9bc9ec027f0f09e703c462ef655997 SHA256: 46ccef811c27c593e402a6a1e1c150a3126f10f01a523636f92d2a9008e440a2 Description: Transitional package for xserver-xorg Description-md5: 31f5cb550a7221c77028ac50f5e634f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-lts-raring_5_amd64.deb Size: 1530 MD5sum: f706adc3226299e6f4900b3cff59e099 SHA1: 3e77d7481f9392241ffb24ec409c683f9906a936 SHA256: 04db355679fdc0a9eba7bec2ed62e52f2dbe5ec7d2ddeb3b13576f6d44a74e83 Description: Transitional package for xserver-xorg Description-md5: 31f5cb550a7221c77028ac50f5e634f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-lts-saucy_5_amd64.deb Size: 1528 MD5sum: ebb3ad9ddd1699fd1d0304800408f5db SHA1: 9a85f33f153800c1ccd075d75af2decf167a7dcd SHA256: 929827a4fd219e2a542e7cf5b559cf8a813cf546b7e2faa5f2f743220f32d6c5 Description: Transitional package for xserver-xorg Description-md5: 31f5cb550a7221c77028ac50f5e634f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-all Priority: optional Section: x11 Installed-Size: 64 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xorg Version: 1:7.7+1ubuntu8 Replaces: xserver-xorg-driver-all Depends: xserver-xorg-video-ati, xserver-xorg-video-cirrus, xserver-xorg-video-fbdev, xserver-xorg-video-intel, xserver-xorg-video-mga, xserver-xorg-video-modesetting, xserver-xorg-video-neomagic, xserver-xorg-video-nouveau, xserver-xorg-video-openchrome, xserver-xorg-video-qxl, xserver-xorg-video-s3, xserver-xorg-video-savage, xserver-xorg-video-siliconmotion, xserver-xorg-video-sis, xserver-xorg-video-sisusb, xserver-xorg-video-tdfx, xserver-xorg-video-trident, xserver-xorg-video-vesa, xserver-xorg-video-vmware Conflicts: xserver-xorg-driver-all Filename: pool/main/x/xorg/xserver-xorg-video-all_7.7+1ubuntu8_amd64.deb Size: 4856 MD5sum: 86f3c6fa994a3d712c1c31bfc61beec7 SHA1: 16ac7a3b71b2a134ec1152f00694d30a725c1de3 SHA256: e642a6082633b34d966f7ca81fac099ae71c85ba98b434fbd64186c80343d48a Description: X.Org X server -- output driver metapackage Description-md5: d6c33380f65bba53cd75efae633435bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-all-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-all-lts-quantal_5_amd64.deb Size: 1550 MD5sum: 7383f12ead0cdc2324a048a11c9ebb86 SHA1: 3e83fd770006ff0c78dc6e7131335df0d3219992 SHA256: 52f32110bc7c7eb19698ae8933df1271e698da0aa244668bba58fe79576a08a3 Description: Transitional package for xserver-xorg-video-all Description-md5: 2c9ec56a4005f1acf3485cf78bf1d136 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-all-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-all-lts-raring_5_amd64.deb Size: 1548 MD5sum: 82b92b0737f3be1ee3cdae18b9dbb121 SHA1: a079ed82a4c0dbdd31641a415de1798da41822e2 SHA256: 4337150373055e1590cfa29d28364e9de7285a7f1e420d79ad860ca9c211be67 Description: Transitional package for xserver-xorg-video-all Description-md5: 2c9ec56a4005f1acf3485cf78bf1d136 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-all-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-all-lts-saucy_5_amd64.deb Size: 1548 MD5sum: c2b06142df4987081e5dc248bdb933db SHA1: 54b23494a614850a728ff09be424c97518569bf7 SHA256: 44174c1076a7c4fe6029111430092d96473915f0aa61712b5e9eb95d0bc04375 Description: Transitional package for xserver-xorg-video-all Description-md5: 2c9ec56a4005f1acf3485cf78bf1d136 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati Priority: optional Section: x11 Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:7.3.0-1ubuntu3 Provides: xorg-driver-video Depends: libc6 (>= 2.2.5), libpciaccess0, xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902), xserver-xorg-video-glamoregl, xserver-xorg-video-r128, xserver-xorg-video-mach64, xserver-xorg-video-radeon Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_7.3.0-1ubuntu3_amd64.deb Size: 6746 MD5sum: ef8bb7e91f74530a7dfb1cd0e8adada1 SHA1: 517326caa9f3c73d16056d91fadae7d4d7a8422d SHA256: 542eb3e8aa086b5f5def7ffebd2e4da48817264c364608b1c6165354379c4d31 Description: X.Org X server -- AMD/ATI display driver wrapper Description-md5: e44c47ee90083ed5cf59825a85aa1878 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-ati-dbg Priority: extra Section: x11 Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-video-ati Version: 1:7.3.0-1ubuntu3 Depends: xserver-xorg-video-ati (= 1:7.3.0-1ubuntu3), xserver-xorg-video-mach64-dbg, xserver-xorg-video-r128-dbg, xserver-xorg-video-radeon-dbg Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati-dbg_7.3.0-1ubuntu3_amd64.deb Size: 11410 MD5sum: e69e10c0da75138ae2e22579fd8fcfcd SHA1: 05f59fc4b4587232679a7271f2d72356767cc873 SHA256: d1f81f98b8ad2cf493e0c42f25ba88e59c7dbb4e446ae6fa1d64f285584f4080 Description: X.Org X server -- AMD/ATI display driver wrapper (debugging symbols) Description-md5: 1a16c53e03875db1244d90cea8cf3664 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-quantal_5_amd64.deb Size: 1550 MD5sum: 1f15eb01f17a7ce106822af07715a3c3 SHA1: 8d17435980b23769c6532c508ebd33cbfbdad952 SHA256: 0bb0419983fe4cfd438fc5ee6c3fd89352277b4069d2430fb5e509925bdc2d6d Description: Transitional package for xserver-xorg-video-ati Description-md5: 9379c0ada31822800a0e7821006a829c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-quantal-dbg_5_amd64.deb Size: 1558 MD5sum: daee5302b8f15b6f2eb7ae15c6ca8170 SHA1: ef699daa61901edd2b2027a33f406d2c28e0c8f3 SHA256: f746322975748ede166595f2e839dcf3b61903b9484f5e76410476c45f2c6a99 Description: Transitional package for xserver-xorg-video-ati-dbg Description-md5: 7604e3565d7f245549330be03a9952dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-raring_5_amd64.deb Size: 1546 MD5sum: b60eccdcfe3c59897ca9e55b2caa6556 SHA1: edb5e95567b43af338be8b0b6e911d9f7783e25b SHA256: 8752c8dc5407f28db0edb1bb108f762698fdf7e275fbaebc2a36617aecbb9deb Description: Transitional package for xserver-xorg-video-ati Description-md5: 9379c0ada31822800a0e7821006a829c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-raring-dbg_5_amd64.deb Size: 1556 MD5sum: 904b3e2356945abc3747713dae941a4a SHA1: 3fabdd59413fedd55e1ca1ea545b158149f95097 SHA256: 4d7fa3a6e49ef2f16b02a2e38614f834c4cbcecbe02ac5d30c22122d08310447 Description: Transitional package for xserver-xorg-video-ati-dbg Description-md5: 7604e3565d7f245549330be03a9952dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-saucy_5_amd64.deb Size: 1548 MD5sum: 9549d800762c3f3a759852d4eb6020c9 SHA1: e1efc7a2d46746a10ac006da69856b4fb9ce84aa SHA256: b1e3509acfac5a77c8f5e645a47bba1cd7887fe671bc40b05f4b6dd58ce7ee49 Description: Transitional package for xserver-xorg-video-ati Description-md5: 9379c0ada31822800a0e7821006a829c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-saucy-dbg_5_amd64.deb Size: 1548 MD5sum: cf2f20fb9e0f1e1bcf4c692ce6c7a679 SHA1: 92c5cfba70b1c7ea884ec74558a05d841f47e644 SHA256: 54bf7024b6ab6655357b86b236a2da2934f8fa1f8f084c8aaf891d542085abce Description: Transitional package for xserver-xorg-video-ati-dbg Description-md5: 7604e3565d7f245549330be03a9952dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-cirrus Priority: optional Section: x11 Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:1.5.2-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-cirrus/xserver-xorg-video-cirrus_1.5.2-1build1_amd64.deb Size: 28442 MD5sum: bc2822ed34ef18f6ca391350ca96c537 SHA1: 0fd75efb1bc96d638c0f38b07dd1517d3bc2680f SHA256: 9f224c165b15f5d6a0c666da5f3653378706f8572f386992f9125ab3b21a2a70 Description: X.Org X server -- Cirrus display driver Description-md5: 5f28614454a4c473f2697d26dc7536e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-cirrus-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-cirrus Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-cirrus-lts-quantal_5_amd64.deb Size: 1550 MD5sum: 7e4c1cb257a4ec1722b0aee261212d8b SHA1: 0be485fe1b8b7bef5194e1dbe305b1858317d899 SHA256: fc00a950dfd30b605be74dd812783d96962f7ef8d8c123357c72307ca54c39c5 Description: Transitional package for xserver-xorg-video-cirrus Description-md5: 4c318b5d42bf3c9adeb77856293c8b90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-cirrus-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-cirrus Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-cirrus-lts-raring_5_amd64.deb Size: 1548 MD5sum: fa27a8ddd3763779a3bd62b3adc09784 SHA1: 8d30cf9caf8fcc2dac282ded16c92d1eaae66018 SHA256: 459c57a0410e10100e97c2aecfe57d03591f8a470f14d9b06b0e99f707d82270 Description: Transitional package for xserver-xorg-video-cirrus Description-md5: 4c318b5d42bf3c9adeb77856293c8b90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-cirrus-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-cirrus Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-cirrus-lts-saucy_5_amd64.deb Size: 1546 MD5sum: 6d5037cc136dad56f9d4e0313ad850ec SHA1: acaabbb6171e90c90e1193c6957776f0ae74fb2e SHA256: 25f84a332f8b8c5ff5cf24ab2e3f3c7d11f4b382723fd7086c8801f46a4ada11 Description: Transitional package for xserver-xorg-video-cirrus Description-md5: 4c318b5d42bf3c9adeb77856293c8b90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-dummy Priority: optional Section: x11 Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:0.3.7-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.2.5), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-dummy/xserver-xorg-video-dummy_0.3.7-1build1_amd64.deb Size: 8554 MD5sum: 20bcbd85888bcc8c9b74fefc44cb00b2 SHA1: ee011eab1ea8c57a5ee9abbb1f06a26de38a8825 SHA256: ac747d13cc170e95e5c3a523527bb64ffb2d5e7752b079d9fb226960c2e969e8 Description: X.Org X server -- dummy display driver Description-md5: b619b7eefcfd6515f1380f16941855cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-dummy-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-dummy Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-dummy-lts-quantal_5_amd64.deb Size: 1550 MD5sum: a911d8a59f621f11ac6ee9fb507320b5 SHA1: 8c7f18112050a4a8abd7650091e9dee7f8802dcd SHA256: a3c5ced7ac2590001f2200f678bec8b8eb4c2573458d76a5b7f03c8225fe6571 Description: Transitional package for xserver-xorg-video-dummy Description-md5: 3dbbb8b6172454d3432425ed47cfcad1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-dummy-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-dummy Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-dummy-lts-raring_5_amd64.deb Size: 1546 MD5sum: 7bccc0bbb7770bed46ec4d97894a1abc SHA1: 4d9df48eb31f1ffd77b6d397877a7f23b24bf3e1 SHA256: bb9bb061236faaaed14beb8d6a41e6369a5c2255779a5e99b78240a77119b988 Description: Transitional package for xserver-xorg-video-dummy Description-md5: 3dbbb8b6172454d3432425ed47cfcad1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-dummy-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-dummy Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-dummy-lts-saucy_5_amd64.deb Size: 1548 MD5sum: 8fe5ba2211d914a6441bc0fd93832532 SHA1: 0364ff898c7f20744e4ec8068ff36887ea8812e1 SHA256: abe358fa5ba338c1a6bed761a13a0654cd72f16d7f522adc336e07e06b6556cf Description: Transitional package for xserver-xorg-video-dummy Description-md5: 3dbbb8b6172454d3432425ed47cfcad1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-fbdev Priority: optional Section: x11 Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:0.4.4-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.2.5), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-fbdev/xserver-xorg-video-fbdev_0.4.4-1build1_amd64.deb Size: 11656 MD5sum: 3b985909a05fe734973ae49d5933f808 SHA1: e16e301e1e4e2b5233edda6b5976a31cc7f04570 SHA256: 6801bd0426f574fb1354eb7bf344ca21a4bf9a41c4325b22b79ebac9339fc8fa Description: X.Org X server -- fbdev display driver Description-md5: 64c436c9c202e79fa1c638b0252edf4c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-fbdev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-fbdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-fbdev-lts-quantal_5_amd64.deb Size: 1550 MD5sum: a2133a975f4ebaeded2afb626599d093 SHA1: c9c6517f6b0f91e9577bfc66dcc73202384fa109 SHA256: 0ef09e6dbb5c795fc74f21852726245d505f0021d453a2e291290b466414e4d6 Description: Transitional package for xserver-xorg-video-fbdev Description-md5: 365a908e0c6ad843729a88f5e2563e8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-fbdev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-fbdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-fbdev-lts-raring_5_amd64.deb Size: 1552 MD5sum: a1371b5264fb2f0ad2b9ce9b66c939ac SHA1: bf7c08ccb21160faf08666f5fec6b8177de22bdd SHA256: 8e1e15e726d7026526d82d4d7e2ade477c81d4684486db5e060e5dbb8230e56d Description: Transitional package for xserver-xorg-video-fbdev Description-md5: 365a908e0c6ad843729a88f5e2563e8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-fbdev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-fbdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-fbdev-lts-saucy_5_amd64.deb Size: 1550 MD5sum: ba2303bac4069824b77020e004515937 SHA1: b0f96d0358e49e0203a873770fd7d6e35ff47f98 SHA256: 97e953dcbf18d88d234b35c8b70835b7110be4ada9cdfe0e4fc9288a0d874494 Description: Transitional package for xserver-xorg-video-fbdev Description-md5: 365a908e0c6ad843729a88f5e2563e8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-glamoregl Priority: optional Section: x11 Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: glamor-egl Version: 0.6.0-0ubuntu4 Replaces: xserver-xorg-glamoregl Depends: libglamor0 (= 0.6.0-0ubuntu4), libc6 (>= 2.2.5), libegl1-mesa (>= 7.8.1) | libegl1-x11, libgbm1 (>= 8.1~0), libglapi-mesa, xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Conflicts: xserver-xorg-glamoregl Filename: pool/main/g/glamor-egl/xserver-xorg-video-glamoregl_0.6.0-0ubuntu4_amd64.deb Size: 8322 MD5sum: 161f9dfb79322e01893192404602bc34 SHA1: 53e876476689a98b6684a9a2f8ffa3a8f8dd39e6 SHA256: b46d37b6f8cea493c1e7a692acca21893012a8259ecf99750ac5ec04a69e0fb8 Description: X.Org X server -- graphics acceleration module based on OpenGL Homepage: http://www.freedesktop.org/wiki/Software/Glamor Description-md5: 818d14b657c4c70f93fafbe3d2845968 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-intel Priority: optional Section: x11 Installed-Size: 2765 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 2:2.99.910-0ubuntu1 Provides: xorg-driver-video Depends: libc6 (>= 2.17), libdrm-intel1 (>= 2.4.38), libdrm2 (>= 2.4.30), libpciaccess0 (>= 0.8.0+git20071002), libpixman-1-0 (>= 0.30.0), libudev1 (>= 183), libx11-6, libx11-xcb1, libxcb-dri2-0, libxcb-util0 (>= 0.3.8), libxcb1, libxv1, libxvmc1, xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.99.910-0ubuntu1_amd64.deb Size: 602136 MD5sum: aa5e651f5d230f0b2dd52609aba952e6 SHA1: 158bb775c3627322c0839d3e4712ff9ca537b84b SHA256: 9039c1b11ff7a02685d20a499aef790efb46a034ef1d33e2ea9d49b60e62b230 Description: X.Org X server -- Intel i8xx, i9xx display driver Homepage: http://www.x.org/ Description-md5: 4c1c091bee575987f9997018db5db7a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-intel-dbg Priority: extra Section: x11 Installed-Size: 9327 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-video-intel Version: 2:2.99.910-0ubuntu1 Depends: xserver-xorg-video-intel (= 2:2.99.910-0ubuntu1) Recommends: intel-gpu-tools Filename: pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel-dbg_2.99.910-0ubuntu1_amd64.deb Size: 1824152 MD5sum: 7b6e2d4791128349cbe5c567d88339bb SHA1: 799efbb134e6b2fb6612a235a7cbf9ed50d9655f SHA256: 46ad0c69861a6048612b0fce96066e777fe5bf083e00a1368d01f54cd1a188eb Description: X.Org X server -- Intel i8xx, i9xx display driver (debug symbols) Homepage: http://www.x.org/ Description-md5: 407ff36ec08d6f79ce154b88e799d94a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-quantal_5_amd64.deb Size: 1550 MD5sum: 7f2950df2575a48e306747866cda6ef3 SHA1: ff47c918a5b27cb7ff431eb5847b1ff7c2e6b5d7 SHA256: b234b95af827760be557e2338f81e233768c063f60e4a2a92cc08de9046fd0c0 Description: Transitional package for xserver-xorg-video-intel Description-md5: a7631eaf2f66066e19f0f317a138ffe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-quantal-dbg_5_amd64.deb Size: 1554 MD5sum: 6cde3d37d8bf88915bfd979949237037 SHA1: 69910c0718f9e97f84baf4d943c0e6f99b22e2fe SHA256: 2d7cc182960530977c7cabd1cc9419d08f53539fc5d0ebdae5b1414aadd06e59 Description: Transitional package for xserver-xorg-video-intel-dbg Description-md5: 420604e5765dff8714279fe3fbfa0af2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-raring_5_amd64.deb Size: 1546 MD5sum: d3b0397748d924f48bc6af545e1e9559 SHA1: 98d3e37c8255ba392e0e66968db0d6257fa67b59 SHA256: 2c22c934c37cf05398a3a0031fdefa20a18c91f133efbc1cf980f3277046b4d3 Description: Transitional package for xserver-xorg-video-intel Description-md5: a7631eaf2f66066e19f0f317a138ffe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-raring-dbg_5_amd64.deb Size: 1558 MD5sum: 379da05cb197709959c66c89ce885a97 SHA1: 5699aef0baff4ac303c0c899fb42881898748954 SHA256: aaae8e5776228da17cb950def425b564e662d2b4462add7f58bf2918759460b1 Description: Transitional package for xserver-xorg-video-intel-dbg Description-md5: 420604e5765dff8714279fe3fbfa0af2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-saucy_5_amd64.deb Size: 1548 MD5sum: 424ab923e4537209fa6f983e73ad74d6 SHA1: 2f02b25c4ae18724d7da61d14095a264d9ef966e SHA256: 0faa05e29c07e5ee179186cd6f4f777d3b0a3efdd8a8c6b2cf272a691474a6f2 Description: Transitional package for xserver-xorg-video-intel Description-md5: a7631eaf2f66066e19f0f317a138ffe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-saucy-dbg_5_amd64.deb Size: 1556 MD5sum: c3959e3ed534d1ad6f03536fc892a8ad SHA1: cd4750cc48f80834fd88457028d65671e80ac329 SHA256: cef2c312a29f037d676905cd714140844b1def42536d91bd6ee92be977161f00 Description: Transitional package for xserver-xorg-video-intel-dbg Description-md5: 420604e5765dff8714279fe3fbfa0af2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64 Priority: optional Section: x11 Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 6.9.4-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-mach64/xserver-xorg-video-mach64_6.9.4-1build1_amd64.deb Size: 65556 MD5sum: b0aca80ceac56266e4afd0410f30b9f0 SHA1: d0e78a9710ff56ffdffa46bf55a4f2f91327e615 SHA256: 7bbffffcb1608399ba681a606e88498220c40b18e98925552f2aa81e149e7ea2 Description: X.Org X server -- ATI Mach64 display driver Description-md5: ab0671e493d30e224d249f0d4e44d652 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-mach64-dbg Priority: extra Section: x11 Installed-Size: 1655 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-video-mach64 Version: 6.9.4-1build1 Depends: xserver-xorg-video-mach64 (= 6.9.4-1build1) Filename: pool/main/x/xserver-xorg-video-mach64/xserver-xorg-video-mach64-dbg_6.9.4-1build1_amd64.deb Size: 254582 MD5sum: 06670ecb9dff817c44fe9fb20a1bf671 SHA1: de2ce79a43dc4ac9bbff7931d6a9f0ba0910c54d SHA256: c3c9f145f3b8c7910fb8c34ffedf173e4944e7f5665402697bc5b99db2db6ad0 Description: X.Org X server -- ATI display driver (debugging symbols) Description-md5: b003245afd6a2df641f6b6edc6a34ba8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-quantal_5_amd64.deb Size: 1550 MD5sum: 94d10e578a388ba6b86f882937fcff74 SHA1: 5c693e3ef8a6302a6727eaa34780a4ac7e978d4f SHA256: 4f45cf6500b3f82658612f366bfdf87f3158126d3a9bda5155a1f1477480e0f5 Description: Transitional package for xserver-xorg-video-mach64 Description-md5: ca9aaa363ab7c8918ff472d38995ece8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-quantal-dbg_5_amd64.deb Size: 1564 MD5sum: 269be475babc5994b7bc0c07be31d803 SHA1: 2d20e071ec25a95f1271c518b3c449ff769d4c02 SHA256: 0d9e73550d432a7f2ab27b168fd10a43ac0c76c0a2cdbd2d6778d207a8ef9b6c Description: Transitional package for xserver-xorg-video-mach64-dbg Description-md5: 91e9809a0a3cca982eb292fb3fc87b58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-raring_5_amd64.deb Size: 1548 MD5sum: c8423e836224959a421dd27526a3b385 SHA1: c19406b7bb6d993b83a3d4d6933beade1441fc4a SHA256: f9a10a4e782f845063c01367ab56b979ba9146ec3644bfceccc368954dad645e Description: Transitional package for xserver-xorg-video-mach64 Description-md5: ca9aaa363ab7c8918ff472d38995ece8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-raring-dbg_5_amd64.deb Size: 1558 MD5sum: 727da813b91e255e54394aac84607a5c SHA1: 85c8ab58181d064447a566b0c813bcb1c2e92836 SHA256: 57833f2aab0cdc1e1028f3fe1c16e886a09b23bed7c93dee69b8b68fae622541 Description: Transitional package for xserver-xorg-video-mach64-dbg Description-md5: 91e9809a0a3cca982eb292fb3fc87b58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-saucy_5_amd64.deb Size: 1550 MD5sum: 7b9cd0c9fe04a5615154af409aa4aabb SHA1: b609707d7322b3b0c36bc843e38b7c47b2f6b7b9 SHA256: 2e6d7605e44e0d16641c3a088159523e969954a1c7f8dd103e1a070191a03f56 Description: Transitional package for xserver-xorg-video-mach64 Description-md5: ca9aaa363ab7c8918ff472d38995ece8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-saucy-dbg_5_amd64.deb Size: 1556 MD5sum: 659a75503c40db2cf584794e1a912dac SHA1: 4e58ae94f92b79bfa635d22421e661acab9f4122 SHA256: 51d54ae613bde369ea1372f8ae482836e1ae91492257d5601b3ef6c1745f3040 Description: Transitional package for xserver-xorg-video-mach64-dbg Description-md5: 91e9809a0a3cca982eb292fb3fc87b58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mga Priority: optional Section: x11 Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:1.6.3-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Suggests: firmware-linux Filename: pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.6.3-1build1_amd64.deb Size: 62896 MD5sum: 61600f42b214e5d1a402c24da3c84de5 SHA1: 0f1f9f913cb8f3518edaecb4fd5d8b9ca79bccef SHA256: 57d33830c0b2b3cf812fe1fbc8533f4359fba26986e090d7c592c47ba88de66e Description: X.Org X server -- MGA display driver Description-md5: 200eb66faed86a912425212d586b2826 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-mga-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mga Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mga-lts-quantal_5_amd64.deb Size: 1550 MD5sum: 6c73a59aba1bb421d9ab26caaa34cf2c SHA1: a207f16a498aea2de2d277b1a614ed83df6b47ea SHA256: f9f871bca0dd975fd4e8a76556d809522ba8ff91149eac1695fae3c508b4c8d8 Description: Transitional package for xserver-xorg-video-mga Description-md5: abd70f78df7974b63d101cfab5464af4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mga-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mga Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mga-lts-raring_5_amd64.deb Size: 1546 MD5sum: a016696f686aa65cf31e9d1ade0f66eb SHA1: 22fd3553d9f593238e700689a7f909c390f3f87e SHA256: fa621e0f03c23dea5daade189178a42281358d09682a836d38c620f83a936b1b Description: Transitional package for xserver-xorg-video-mga Description-md5: abd70f78df7974b63d101cfab5464af4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mga-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mga Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mga-lts-saucy_5_amd64.deb Size: 1544 MD5sum: 35fc29867d5c3a2f1189fb76c52bc12b SHA1: a7c0d83992fabb35702d93f3aa39ad47aaf677f4 SHA256: 95b5a00458c88764f9ee554a0f39e0e51f422c00f05e6e691afbfa81ba2d92c0 Description: Transitional package for xserver-xorg-video-mga Description-md5: abd70f78df7974b63d101cfab5464af4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting Priority: optional Section: x11 Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 0.8.1-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.4), libdrm2 (>= 2.4.38), libudev1 (>= 183), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-modesetting/xserver-xorg-video-modesetting_0.8.1-1build1_amd64.deb Size: 19776 MD5sum: 7e639526980c08d43d8598aacd9390f1 SHA1: 44932b1d5403984bad701542df7b7a7d1c35a68e SHA256: 244bc7872e670beba4bd5a2d537ced714894e2cec95f95a664645f7d2962d0bc Description: X.Org X server -- Generic modesetting driver Description-md5: 64d8f5d5562d7c8cf818d1d2526e5933 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-modesetting-dbg Priority: extra Section: debug Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-video-modesetting Version: 0.8.1-1build1 Depends: xserver-xorg-video-modesetting (= 0.8.1-1build1) Filename: pool/main/x/xserver-xorg-video-modesetting/xserver-xorg-video-modesetting-dbg_0.8.1-1build1_amd64.deb Size: 57476 MD5sum: 27b8e5b6a054578551f47d1b2b0ba16a SHA1: b9e8b539637acf17bb7d4adfa539f32e6e4a11b2 SHA256: e6ffd0402e33c9f0deb937bed4a97a414ef489f7965441dbb0e564a46945454b Description: X.Org X server -- Generic modesetting driver (debug symbols) Description-md5: 63910490cc4b8a67278e59cda5f7d19b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-quantal_5_amd64.deb Size: 1558 MD5sum: 98d77baa0ff31e9e986379cba793298f SHA1: 984967d5da6ad7bc805c42356a3f48c099c99299 SHA256: b905090ad4a6f9a81a8518d1893ab9955cbcee25efa96485bca6296462b58486 Description: Transitional package for xserver-xorg-video-modesetting Description-md5: ad63034e5af9c89086370e928adc46a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-quantal-dbg_5_amd64.deb Size: 1572 MD5sum: 87b565a55c76ce0007fde712c5bae0dc SHA1: 1fc7e75ac10aa770fdddc4c61e250cb088f6aa8c SHA256: c56c11ef7399cacd06b33d107edbe7b4cfab0641a5738d30d73141d635402858 Description: Transitional package for xserver-xorg-video-modesetting-dbg Description-md5: fabe4c69b7282164605884ac8e50b1a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-raring_5_amd64.deb Size: 1560 MD5sum: 6d7b5dc5dd742a60ff5913cd7f1c2445 SHA1: 994e55ef5059f4779e2486fd43ffdb99d82f27a0 SHA256: 901f34c7d44cbc089639d2d333373e451f223d3933146f88ca0e69a829648719 Description: Transitional package for xserver-xorg-video-modesetting Description-md5: ad63034e5af9c89086370e928adc46a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-raring-dbg_5_amd64.deb Size: 1566 MD5sum: 34a5f3c40cf8c6cfde8f2a7b83c7aea7 SHA1: 897d8ba03e2edf9c0d1a1505d5d0a4998f4d8def SHA256: e915b899f5b6d62f6da1731c0d539e65de1b3d074e3372fa6a42e166a7571928 Description: Transitional package for xserver-xorg-video-modesetting-dbg Description-md5: fabe4c69b7282164605884ac8e50b1a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-saucy_5_amd64.deb Size: 1560 MD5sum: 840ea16995510b4c0a319868a8c2ffaa SHA1: 9fde7f989bc86b0625c729e1bb43ad2651e90eeb SHA256: 217c03dcd43d81508af34d7a70320fb52b85e6c7d12505e204e3181b19bcb56f Description: Transitional package for xserver-xorg-video-modesetting Description-md5: ad63034e5af9c89086370e928adc46a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-saucy-dbg_5_amd64.deb Size: 1564 MD5sum: 23dc702082beb368663c6e216f888721 SHA1: 3dedfd9a60f9e0f6f963a8a8d55603d342fbe1e7 SHA256: 6b13fdd9515ff790b42c62fda68785099758a976cc561f9482c8541f901775a3 Description: Transitional package for xserver-xorg-video-modesetting-dbg Description-md5: fabe4c69b7282164605884ac8e50b1a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-neomagic Priority: optional Section: x11 Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:1.2.8-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-neomagic/xserver-xorg-video-neomagic_1.2.8-1build1_amd64.deb Size: 29078 MD5sum: fd3b535901c9e80ceea1b2309d55ad7c SHA1: 8630f88c2bf9b433465428cc4a702cb47a7d7248 SHA256: c1786f168082b2ee52b72b60207735d4eac821f6b92b1bf7f04e5ff406837dd1 Description: X.Org X server -- Neomagic display driver Description-md5: eb267e73f4319f1e002b0d2f41b3f551 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-neomagic-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-neomagic Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-neomagic-lts-quantal_5_amd64.deb Size: 1558 MD5sum: de83447db408eb6e529ff663abaf494f SHA1: e775a13713e64a816f4e9ff3445ffc09dc83b9fc SHA256: 1e999329d5723df111934217b944f6069cf82b5dfa247f9c3e6bf17b125e71c9 Description: Transitional package for xserver-xorg-video-neomagic Description-md5: a3186b9efd530974b129fc190089643a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-neomagic-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-neomagic Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-neomagic-lts-raring_5_amd64.deb Size: 1554 MD5sum: 9f71ebb5ce228c3a16561d018d3d9050 SHA1: 55f1a46d4425c406c08a44fbd6325ced5eb26786 SHA256: 52bcbb4d43862a5a2a058d09c9f150f24bf607048d265c379d7a6de8d4d960b7 Description: Transitional package for xserver-xorg-video-neomagic Description-md5: a3186b9efd530974b129fc190089643a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-neomagic-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-neomagic Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-neomagic-lts-saucy_5_amd64.deb Size: 1554 MD5sum: eee745425ca3a9a80320b22b8f158251 SHA1: e0941768e90936fe20da803b9b6017a82dd785bb SHA256: ca7964804483d7d8b1ace9a532297a5ee6aad12ac8b74199ccd31d6cc3ee1770 Description: Transitional package for xserver-xorg-video-neomagic Description-md5: a3186b9efd530974b129fc190089643a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau Priority: optional Section: x11 Installed-Size: 301 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:1.0.10-1ubuntu2 Provides: xorg-driver-video Depends: libc6 (>= 2.15), libdrm-nouveau2 (>= 2.4.38), libdrm2 (>= 2.4.25), libudev1 (>= 183), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Recommends: libgl1-mesa-dri (>= 9.0) Filename: pool/main/x/xserver-xorg-video-nouveau/xserver-xorg-video-nouveau_1.0.10-1ubuntu2_amd64.deb Size: 78978 MD5sum: 532990491db98df5d1b55ac155d0e264 SHA1: 29d983bbd048066d8df81048a6330aca497ffe96 SHA256: 21c2abfafccf89f1e5aa46bf8dcc134788fb2b466ca14096558c4c6f2ff7df2d Description: X.Org X server -- Nouveau display driver Homepage: http://nouveau.freedesktop.org/wiki/ Description-md5: b084a16945b86c1eda89ad33dbb4530d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-nouveau-dbg Priority: extra Section: debug Installed-Size: 2199 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-video-nouveau Version: 1:1.0.10-1ubuntu2 Depends: xserver-xorg-video-nouveau (= 1:1.0.10-1ubuntu2) Filename: pool/main/x/xserver-xorg-video-nouveau/xserver-xorg-video-nouveau-dbg_1.0.10-1ubuntu2_amd64.deb Size: 342858 MD5sum: e263a2ef7f1a27bc26853723cfaa0f2d SHA1: 5ea90d9560d5538ff0d3bf74987846e434ae5a83 SHA256: fb9b779a82eb7ad1527ca3ed31d5397d1a9a8e422aa5429ce106e53dcd016ea1 Description: X.Org X server -- Nouveau display driver (debug symbols) Homepage: http://nouveau.freedesktop.org/wiki/ Description-md5: 5304f6a18155884f62e07d246a25ea57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-quantal_5_amd64.deb Size: 1552 MD5sum: 4fb26a86e67159acb83c9c6db1c80b05 SHA1: 3e2eef22b0b49ea65c2be53ac15568dfd0587912 SHA256: 593a44d1fb7955d5e1e41bd97319433fd1e6b777d0fdc84cf358c7e0c52e4bf1 Description: Transitional package for xserver-xorg-video-nouveau Description-md5: 37d08999ae7aeb4f9ee7f9e57646b7ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-quantal-dbg_5_amd64.deb Size: 1560 MD5sum: 37f1e9d81275da9e622c4d6060b62397 SHA1: 3fbbad6650eacb6d6f858ae9e906df6ddc4f2a23 SHA256: 143c8408941bdaf9657d0e8ccbb6faef782b5171c029efdd5b0384055e7707a1 Description: Transitional package for xserver-xorg-video-nouveau-dbg Description-md5: 3a973f50d80db795808b732232af81a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-raring_5_amd64.deb Size: 1550 MD5sum: efff379ac81211e7b9623327ab9ceeb0 SHA1: 7610b05031d8eec6f2ea35aefed06311f902f6e0 SHA256: c48dcc0184a3042dc4d7984266b3a0c74b8f6d9a0ea82b204407a929d71765c4 Description: Transitional package for xserver-xorg-video-nouveau Description-md5: 37d08999ae7aeb4f9ee7f9e57646b7ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-raring-dbg_5_amd64.deb Size: 1560 MD5sum: 49591d5afc8d3aa4baa1fedda38a1ad2 SHA1: 158a6602dbad9e71be3f608198c92400888b7b78 SHA256: 6adc8a477ba969d3e324acd55dd4aa05ad77937f85d9f83718e54b7a07e5a2a9 Description: Transitional package for xserver-xorg-video-nouveau-dbg Description-md5: 3a973f50d80db795808b732232af81a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-saucy_5_amd64.deb Size: 1552 MD5sum: 916954aa890b74b4fb979d5dfd3b31a9 SHA1: 18ec037eef3e3193b47912abdd25937d9c6f934e SHA256: a995e8586e5441153192418b2a0fe0d0e99a2db8334ba5e7794ef5e8e746dab5 Description: Transitional package for xserver-xorg-video-nouveau Description-md5: 37d08999ae7aeb4f9ee7f9e57646b7ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-saucy-dbg_5_amd64.deb Size: 1554 MD5sum: d73dff236b3fd66b5ea0384494e2cb90 SHA1: d41cbba22ebc068d3f9dcc4af2e8048bfa353176 SHA256: 03b7ee18d6fedb67e6b7342158354c272b6ca7d5980d2f0f715496749bab8a40 Description: Transitional package for xserver-xorg-video-nouveau-dbg Description-md5: 3a973f50d80db795808b732232af81a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome Priority: optional Section: x11 Installed-Size: 528 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:0.3.3-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.14), libdrm2 (>= 2.3.1), libx11-6 (>= 2:1.4.99.1), libxext6, libxv1, libxvmc1, xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.3.3-1build1_amd64.deb Size: 136262 MD5sum: e30b2cbdeba217a65796cd420176b0bc SHA1: 449fc63cd10c391dc7368478492c4e50ba306768 SHA256: fd633a14780bc3d3280044fadcc783f167a2bd87283a71c2aa6920e86f058477 Description: X.Org X server -- VIA display driver Homepage: http://www.openchrome.org Description-md5: 11d4a7275218ad33ccc6479463963d83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-openchrome-dbg Priority: extra Section: debug Installed-Size: 1893 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-video-openchrome Version: 1:0.3.3-1build1 Depends: xserver-xorg-video-openchrome (= 1:0.3.3-1build1) Filename: pool/main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome-dbg_0.3.3-1build1_amd64.deb Size: 368084 MD5sum: 93275eb037c03a2779256872ee079ff4 SHA1: 666325cdc24b900616b6122f1ba4223b9053a848 SHA256: 6a1a20dac90284c31ed920170c6b154db0ecde0a181c7a0bb040a401fdf769e9 Description: X.Org X server -- VIA display driver -- debugging symbols Homepage: http://www.openchrome.org Description-md5: ca202006e00e58695b2cdeb5d735905a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-quantal_5_amd64.deb Size: 1558 MD5sum: 497b9ca4242e0779a1205c09c98cdd3c SHA1: fa45fbca58c7673faa2ad4e1efa265acf0796836 SHA256: 7a923d3904cbfb78d7c56e61f5c2000f2afb71330ad005a335a6ed345a925054 Description: Transitional package for xserver-xorg-video-openchrome Description-md5: 4308920923e39bc9840de5e7e2449f36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-quantal-dbg_5_amd64.deb Size: 1566 MD5sum: e7f66dde15594428a7eca19be153fd1f SHA1: 8f627bf1a2fb42d46528f133ebb5e014e3e9beaf SHA256: 253f83e08221e8be4528f0f6e1b7a645c5b46ee02d6f25c367d79c1d40ebdb10 Description: Transitional package for xserver-xorg-video-openchrome-dbg Description-md5: e77e6135135694782613f8c6806bfb01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-raring_5_amd64.deb Size: 1552 MD5sum: 3344ce41db199a826aab3616ce5665c0 SHA1: d9bff97ae44ce6d524bb0a7f79cce6b9e3c57fd0 SHA256: e9fbd42b5828a11a45e4fc0e0eae9a82d6f89d8485e62fa0327682798068b316 Description: Transitional package for xserver-xorg-video-openchrome Description-md5: 4308920923e39bc9840de5e7e2449f36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-raring-dbg_5_amd64.deb Size: 1564 MD5sum: d1d15653e07953dc8dfeafba2753ba87 SHA1: ac1b676dd4d8476ecb308322d00b0df2927c5bf2 SHA256: 09b76f26aa563ac0a812c634b37a1c39a10d92191588f394476e82a99c52c567 Description: Transitional package for xserver-xorg-video-openchrome-dbg Description-md5: e77e6135135694782613f8c6806bfb01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-saucy_5_amd64.deb Size: 1556 MD5sum: 2a705259e693974bfe419a3cfe208a73 SHA1: b335bba41e70bd448d29d39767066ccfdf412f4d SHA256: d495813f08315b7b9dd61e297d680ba60a13461e162368c05dacce706fd8122c Description: Transitional package for xserver-xorg-video-openchrome Description-md5: 4308920923e39bc9840de5e7e2449f36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-saucy-dbg_5_amd64.deb Size: 1564 MD5sum: 67be08766237412c7fd94abd6b86b960 SHA1: 0d4d0058a28f5f194eacb576dfb3efb3ba4eaf64 SHA256: dd0039b558962729011e758fe189430348ea432e7d9b4dfba69acd8c43369d23 Description: Transitional package for xserver-xorg-video-openchrome-dbg Description-md5: e77e6135135694782613f8c6806bfb01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-qxl Priority: optional Section: x11 Installed-Size: 408 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 0.1.1-0ubuntu3 Provides: xorg-driver-video Depends: libc6 (>= 2.15), libspice-server1 (>= 0.12.2), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-qxl/xserver-xorg-video-qxl_0.1.1-0ubuntu3_amd64.deb Size: 100426 MD5sum: 66dea28ff13a6ef34e2209d1c4ca85f8 SHA1: ad5132dc4bbc812788c1f1250f19ec60f15b9332 SHA256: bcfb9103c1da12e9834fa05f7c0a52c933b2b64430301c6e1d232125add692dd Description: X.Org X server -- QXL display driver Homepage: http://spice-space.org/ Description-md5: 26837ff18ae5ca3c32daf3167b2fa7f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-qxl-dbg Priority: extra Section: debug Installed-Size: 2637 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-video-qxl Version: 0.1.1-0ubuntu3 Depends: xserver-xorg-video-qxl (= 0.1.1-0ubuntu3) Filename: pool/main/x/xserver-xorg-video-qxl/xserver-xorg-video-qxl-dbg_0.1.1-0ubuntu3_amd64.deb Size: 568698 MD5sum: 5cb7bbae255032eccdf68426da03106e SHA1: 71511a3048638ffa1aebca6226955648e3e5ba10 SHA256: d4e345cc6e40b97ff5d2af5e56fd2119bfb889102f4f5c09562e6f7b131e7093 Description: X.Org X server -- QXL display driver (debugging symbols) Homepage: http://spice-space.org/ Description-md5: c84250fdbc852793f3d32fb23b74e2a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128 Priority: optional Section: x11 Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 6.9.2-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Suggests: firmware-linux Filename: pool/main/x/xserver-xorg-video-r128/xserver-xorg-video-r128_6.9.2-1build1_amd64.deb Size: 47796 MD5sum: 2aa5752ed1127e869b5d085f6f8772fa SHA1: 96e92a7e34c5a7d492c066bc6ffaa4d01cfd81f1 SHA256: ffdf1a4880e7186e234b3b1d5126bfb2413420f004d6a16b85d63daeaa56d9b1 Description: X.Org X server -- ATI r128 display driver Description-md5: eadf9436a9254699f3f6ffaf12d64459 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-r128-dbg Priority: extra Section: x11 Installed-Size: 572 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-video-r128 Version: 6.9.2-1build1 Depends: xserver-xorg-video-r128 (= 6.9.2-1build1) Filename: pool/main/x/xserver-xorg-video-r128/xserver-xorg-video-r128-dbg_6.9.2-1build1_amd64.deb Size: 136302 MD5sum: 9b30b83dade93fcd49e7f03864b2b95c SHA1: b1cc023afcf8154d9c8d67689658dea983214796 SHA256: 9bc1642d4cc8a6b2f72324c1f51a76c5cd27b5d100c072d6cb1d559cc70a0cad Description: X.Org X server -- ATI r128 display driver (debugging symbols) Description-md5: 3b0961064d5006b21a331fd12170da1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-quantal_5_amd64.deb Size: 1550 MD5sum: 0da72f9c4322080474c946cfb76732d4 SHA1: d622200bf2e9d6b1773f244503eaf3cbb664a16f SHA256: da50ec1dc78873e4498acafda53099c5c13c9be746ff9fbba9cf2f83e1ddaad8 Description: Transitional package for xserver-xorg-video-r128 Description-md5: 5658f7e52b39a3ff27a18dfa1c7d753c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-quantal-dbg_5_amd64.deb Size: 1558 MD5sum: 9a2791124776960b45b81a438f054107 SHA1: df276a87a6aeac67ef5266649bc9616213193b23 SHA256: 9c73ab0694ee185102f4ad3e2f76725bf6972cde97d09892a7347cb7df6882ec Description: Transitional package for xserver-xorg-video-r128-dbg Description-md5: 3a9532581245f5f41935d3630c1206f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-raring_5_amd64.deb Size: 1546 MD5sum: fa2c05191809fcfa625e2f2a0c357e78 SHA1: 2427664f9bfbf876472b01a7763047957a5fadfb SHA256: e3b8debcdd7c959a8cdf79f1bf308482583f710c853fa148966fdc20145f85b7 Description: Transitional package for xserver-xorg-video-r128 Description-md5: 5658f7e52b39a3ff27a18dfa1c7d753c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-raring-dbg_5_amd64.deb Size: 1552 MD5sum: 391b5c401cd5f2ff6a290977733e5462 SHA1: 683c940f0d8ab64a7ddaf0f3c5d7d482d3c2ca81 SHA256: 64a1439c090832e96004de92b005fadb942c2c7cac080c83267eaf79dbdb63ac Description: Transitional package for xserver-xorg-video-r128-dbg Description-md5: 3a9532581245f5f41935d3630c1206f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-saucy_5_amd64.deb Size: 1550 MD5sum: ef0d4983be251439700e5dcb2e094750 SHA1: cafa39e248003216cf25d83c60b7abb8514555bb SHA256: 4a4719e3b0a4ff6801273b586359f6a74d3c396350c8255db7988969f4238411 Description: Transitional package for xserver-xorg-video-r128 Description-md5: 5658f7e52b39a3ff27a18dfa1c7d753c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-saucy-dbg_5_amd64.deb Size: 1552 MD5sum: 6f74e252112b96e36993f28d6833bdb5 SHA1: a8fb465b514683c88fbeb258460f0e99fe182358 SHA256: f3d4de390156c024f36a63281a46d77a10f608d3880b9b64f7065726cbbfb5ab Description: Transitional package for xserver-xorg-video-r128-dbg Description-md5: 3a9532581245f5f41935d3630c1206f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon Priority: optional Section: x11 Installed-Size: 508 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-video-ati Version: 1:7.3.0-1ubuntu3 Provides: xorg-driver-video Depends: libc6 (>= 2.17), libdrm-radeon1 (>= 2.4.39), libglamor0, libudev1 (>= 183), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Suggests: linux-firmware Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon_7.3.0-1ubuntu3_amd64.deb Size: 120922 MD5sum: 3ef84e612bb39b9b04074d3f1627713e SHA1: b6742b090db7f0c089972e0e1550373a96914ebf SHA256: c460cd86f12275439797f684b8c2253766ed0cdbb1526f10f38e6c7b6a1c7fdc Description: X.Org X server -- AMD/ATI Radeon display driver Description-md5: 22660c3d89bfa098ecfd9bc40808f7b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-radeon-dbg Priority: extra Section: x11 Installed-Size: 943 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xserver-xorg-video-ati Version: 1:7.3.0-1ubuntu3 Depends: xserver-xorg-video-radeon (= 1:7.3.0-1ubuntu3) Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon-dbg_7.3.0-1ubuntu3_amd64.deb Size: 858394 MD5sum: 2f966477c79eecc33cbba2fb5dbad4be SHA1: f72765567c7515497ffd2e44c83a5025de44e8a7 SHA256: af51e5e23fc62f45ffd75262deea42df8acfccf04002dc7f06e0bee70bdaff02 Description: X.Org X server -- AMD/ATI Radeon display driver (debugging symbols) Description-md5: c7be5446365f77ecf178234fd656daf6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-quantal_5_amd64.deb Size: 1556 MD5sum: 0d0cc9fb05821a43a9081fa8554b0c2f SHA1: a1e04724bad9387c8901ec6228b70c33a1302fb1 SHA256: f42c6bdc826c1d035409c3f3a5d41fbd0e5f0a138f991e22e7cd42e23c6907ef Description: Transitional package for xserver-xorg-video-radeon Description-md5: f4320c461c3c4aa1ce7f13672398f4fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-quantal-dbg_5_amd64.deb Size: 1558 MD5sum: edac77b313e5aa05835d9210043842c6 SHA1: d11536d4161603fbdf705a0eba9d107e28292fa4 SHA256: dfe24ed8b2428b92bf1d915014c4028bc7846f846f12571ee1bbf50999c6d246 Description: Transitional package for xserver-xorg-video-radeon-dbg Description-md5: 411cd9a45ad5f4042e79f23d0223bf55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-raring_5_amd64.deb Size: 1548 MD5sum: 35719d5ed364a6c55c1ac7ec56209772 SHA1: 062e22c9d50e893f7f32b836d7bbbfba060fb88a SHA256: ac23d9da668e1bdc6f9c6b84fdc66dab011fc2e12bb1a2380b027858395ba17d Description: Transitional package for xserver-xorg-video-radeon Description-md5: f4320c461c3c4aa1ce7f13672398f4fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-raring-dbg_5_amd64.deb Size: 1558 MD5sum: a28259de81282ab4085da719dbe21d3d SHA1: 83ee8ded71b1089fb9d906cf71e2e39480086c58 SHA256: 32fdc41b6eb8a7ebf38ab7fc91db2e064dfd17ab4b4557b1207a335aa7906e4a Description: Transitional package for xserver-xorg-video-radeon-dbg Description-md5: 411cd9a45ad5f4042e79f23d0223bf55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-saucy_5_amd64.deb Size: 1550 MD5sum: 8184301a7a537b7e175f5e359a1259ef SHA1: 4baafdb0adb56645939923e22c732c995af1d521 SHA256: 40337407fd20efc917c5ec7930c22b815b2b1b9b76e8f6277eafb746c283db43 Description: Transitional package for xserver-xorg-video-radeon Description-md5: f4320c461c3c4aa1ce7f13672398f4fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-saucy-dbg_5_amd64.deb Size: 1554 MD5sum: 79e066687d56dab11b94586dc53b41d2 SHA1: befaf4bb470f9d51f6a42d1ac8657e4b429356fb SHA256: 8443f5d1a4184c20903280397d6c2fc1da8d3de9a0b8144540be585541633446 Description: Transitional package for xserver-xorg-video-radeon-dbg Description-md5: 411cd9a45ad5f4042e79f23d0223bf55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-s3 Priority: optional Section: x11 Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:0.6.5-0ubuntu4 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-s3/xserver-xorg-video-s3_0.6.5-0ubuntu4_amd64.deb Size: 28548 MD5sum: 23fe52cd404db8ad9fe30de768b04307 SHA1: 7e022ab18b7785b1aa265782c5324065ca957ea0 SHA256: adeb72ec4195a345750318f2605045e757a59cb8c32189a03b9a327fa32a38fa Description: X.Org X server -- legacy S3 display driver Description-md5: 08333113374682cbc50a4f18cf30d8c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-s3-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-s3 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-s3-lts-quantal_5_amd64.deb Size: 1546 MD5sum: 406487fbafdc158f5aeef61defb4f082 SHA1: 18fb0a2ec39ecb0d768bc030f4664708bea44561 SHA256: 26374603d45107e1c37f062032a1654f016cf2d1e218fa4e0bbc32c0a27c1524 Description: Transitional package for xserver-xorg-video-s3 Description-md5: 3cec4b699d55041b76f4e4dda052e81b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-s3-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-s3 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-s3-lts-raring_5_amd64.deb Size: 1544 MD5sum: 50fe52b545b4c610cdad4e4a59f38151 SHA1: f2704d5fe65af8d8f8e32eb75eda69a77afa926d SHA256: 222cc02daed76219d113d15aba2f59433fa02e6907e3d28c511251e7983114c1 Description: Transitional package for xserver-xorg-video-s3 Description-md5: 3cec4b699d55041b76f4e4dda052e81b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-s3-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-s3 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-s3-lts-saucy_5_amd64.deb Size: 1548 MD5sum: c506a42f9b1e67ad356a3738147969f9 SHA1: c4e17afe2ab041b9e3ed52b9300a7e434073d6e3 SHA256: a8bab0497d97e2c6b35b3bbaf835cc3beb42d8bbbf2cb923c212d11c611a7316 Description: Transitional package for xserver-xorg-video-s3 Description-md5: 3cec4b699d55041b76f4e4dda052e81b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-savage Priority: optional Section: x11 Installed-Size: 209 Maintainer: Ubuntu X-SWAT Architecture: amd64 Version: 1:2.3.7-2ubuntu2 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-savage/xserver-xorg-video-savage_2.3.7-2ubuntu2_amd64.deb Size: 59548 MD5sum: 7aa968407a1146415b56f191599a2bee SHA1: 5544835af2489b813d3581b8f34b426d6ecf9962 SHA256: f5a5e807223adb527f43a3fe75d3d74087eb840c8c3c608b4c9154d2c683a939 Description: X.Org X server -- Savage display driver Orig-Maintainer: Debian X Strike Force Description-md5: 2b956e72f2fefc3baf572d184b2fdd12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-savage-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-savage Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-savage-lts-quantal_5_amd64.deb Size: 1556 MD5sum: 43457e86cf80531346eddd1ca6a40df6 SHA1: 80a24cea97675d84fc52c6c873e5b78bb15304d5 SHA256: 15e50a595012c959d16f87aa52960742b458dccf38d1b1709807bbd196a1a506 Description: Transitional package for xserver-xorg-video-savage Description-md5: e537f0ff16f3bd930106048e364fcdf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-savage-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-savage Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-savage-lts-raring_5_amd64.deb Size: 1548 MD5sum: 68b1403c33e00f8e4f17171b6898ecb9 SHA1: abc0adc485a545cbbd02cc64586ccfb6784953d7 SHA256: ac0a6d23f900bbace0e61f806de2357b3958ebe5d023cd9d7c817b70cd6a9dda Description: Transitional package for xserver-xorg-video-savage Description-md5: e537f0ff16f3bd930106048e364fcdf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-savage-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-savage Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-savage-lts-saucy_5_amd64.deb Size: 1544 MD5sum: 461f5939acfc6f6cc9f24403b6c978b5 SHA1: 8e93e88545578d94b3716c84158f7a3637787b00 SHA256: 11bef853ba1838dbc3bcb8717719a793e9b338c191c58f58d679a6e3323593f6 Description: Transitional package for xserver-xorg-video-savage Description-md5: e537f0ff16f3bd930106048e364fcdf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-siliconmotion Priority: optional Section: x11 Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:1.7.7-2build1 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-siliconmotion/xserver-xorg-video-siliconmotion_1.7.7-2build1_amd64.deb Size: 47280 MD5sum: ecdaf21bf212fa9532679bce3e2d4c6a SHA1: ac3fba91122d26ec0bcbca99ed818e3b4b92cb5f SHA256: d61a46dbe6e17683392a762df7a6d8939d591ffb9a57701ae9a22d3b75c93a16 Description: X.Org X server -- SiliconMotion display driver Description-md5: b873756bacc23507a4c008ed69fa8738 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-siliconmotion-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-siliconmotion Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-siliconmotion-lts-quantal_5_amd64.deb Size: 1564 MD5sum: e674cf98bb453dfbfae1e808cec3e07a SHA1: 0ed09fa8052a7c0edbc9ef2cf655f8235305025c SHA256: 7e300b1c79e93e846e3e951d1218cf192daeb7d2a76af4bb009e411a012ff430 Description: Transitional package for xserver-xorg-video-siliconmotion Description-md5: cec74f20fa494256849073dfdac90abb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-siliconmotion-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-siliconmotion Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-siliconmotion-lts-raring_5_amd64.deb Size: 1558 MD5sum: db25b419e84fa20f42c34a640f8761f8 SHA1: ae6b34b27478a2ae9e31bf8df0dee56431a948a6 SHA256: 7662ebb8f31048530c3812ed123d0f9aeeb8c778b2404971c353417ccd320af9 Description: Transitional package for xserver-xorg-video-siliconmotion Description-md5: cec74f20fa494256849073dfdac90abb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-siliconmotion-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-siliconmotion Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-siliconmotion-lts-saucy_5_amd64.deb Size: 1558 MD5sum: efc3052fb48f84dac37e5b1eae7ed2fc SHA1: 619969e08763eea1dcc06b5b6866da4dc9c7484d SHA256: 9aa056d599e425c6cd25f8a5f5f5d0a02579a4902e82c3e71340e2555becd1a4 Description: Transitional package for xserver-xorg-video-siliconmotion Description-md5: cec74f20fa494256849073dfdac90abb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sis Priority: optional Section: x11 Installed-Size: 631 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:0.10.7-0ubuntu6 Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-sis Provides: xorg-driver-video, xserver-xorg-video- Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Conflicts: xserver-xorg-driver-sis Filename: pool/main/x/xserver-xorg-video-sis/xserver-xorg-video-sis_0.10.7-0ubuntu6_amd64.deb Size: 224452 MD5sum: 07e5a6d537d63c736ed4899e9679e527 SHA1: 83f62a5adbe4c84324b7afed5ffcf22aa69cc000 SHA256: 76296cd234fd6adb98c91d7abc250758acd07588c240ad125a67ca14f7d6dd0c Description: X.Org X server -- SiS display driver Description-md5: 42dac6b9768ebbc736ea67fc56bc1813 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-sis-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sis Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sis-lts-quantal_5_amd64.deb Size: 1548 MD5sum: d6c2d143643e513c82510771688a0aaf SHA1: 0c38e86cd4bf75bf7fc4f754d155a5adc8cbb70e SHA256: dc1ed1ec48cf56c19fbe25ced0183a2dbc00e35affc93ff8204a3ae394fce0a2 Description: Transitional package for xserver-xorg-video-sis Description-md5: 911074974c4441d4c3def63fb4a7bb34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sis-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sis Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sis-lts-raring_5_amd64.deb Size: 1548 MD5sum: 49f845ee8a025bf1880d218f97ea9eab SHA1: 26308ddcb76ea9e850b407a25f273514c7b37a3e SHA256: 356873136371cfa4582175d1a33d2583ba16d5be46920b41eb80a351f26d2501 Description: Transitional package for xserver-xorg-video-sis Description-md5: 911074974c4441d4c3def63fb4a7bb34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sis-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sis Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sis-lts-saucy_5_amd64.deb Size: 1544 MD5sum: baa03d386db5c4c2b7fd324036a0c0e9 SHA1: a89dac01d35fcf006301beb0853279c1bf18e490 SHA256: 8e1978d571eb4ceda0cd03f2699ab3818e9ee40f12ae9d9272ccd40fd2b55170 Description: Transitional package for xserver-xorg-video-sis Description-md5: 911074974c4441d4c3def63fb4a7bb34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sisusb Priority: optional Section: x11 Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:0.9.6-2build1 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-sisusb/xserver-xorg-video-sisusb_0.9.6-2build1_amd64.deb Size: 36292 MD5sum: af76990186f6d43684f5f7b28e8f5aeb SHA1: de08526c2b4bfe574864e5362b0a26ab0974633b SHA256: af33d6fa12525fe07a3ce4542a1d40aa044786561a4339c52c1fbbb02d575070 Description: X.Org X server -- SiS USB display driver Description-md5: c07d67930c26348f4f1fb95c2c7c7c8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-sisusb-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sisusb Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sisusb-lts-quantal_5_amd64.deb Size: 1552 MD5sum: 9916203bd9565a0e6f5221a7f01cc5d6 SHA1: ed407b2986e1e4662f591788884f53966b3bc0f9 SHA256: 1074cca36dcfd871061608125bda5fc6a578f6961c588899347707abb7440433 Description: Transitional package for xserver-xorg-video-sisusb Description-md5: 830a24085bb339b790bca03bd3e76b9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sisusb-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sisusb Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sisusb-lts-raring_5_amd64.deb Size: 1548 MD5sum: 9578dcd6df261580ada87ba69c63af3c SHA1: 7c023a4f7144f5239ec23fe19e6093f0bc76851e SHA256: bf83ab16a6ae2562f318c238fe9faf15f38a358b90c44e0301cac607600ef1eb Description: Transitional package for xserver-xorg-video-sisusb Description-md5: 830a24085bb339b790bca03bd3e76b9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sisusb-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sisusb Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sisusb-lts-saucy_5_amd64.deb Size: 1546 MD5sum: d799387e96a29f335a65014175a03533 SHA1: 64d07830d69d8037ae94eeb834fea4547325025c SHA256: 364395c59b04a6c38daad2d3162d2fd3f1a97d98a16bb2ddc07e45f91e76a413 Description: Transitional package for xserver-xorg-video-sisusb Description-md5: 830a24085bb339b790bca03bd3e76b9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-tdfx Priority: optional Section: x11 Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:1.4.5-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-tdfx/xserver-xorg-video-tdfx_1.4.5-1build1_amd64.deb Size: 29182 MD5sum: 0912908668558ebd576ff51497db71ea SHA1: 30a2e17e89d8db6098a0310a0265b1955ee2b10b SHA256: 7fea7ce56ce0ed54490532f470a85a72233d094f0a7679c2b0936dcb57338a3c Description: X.Org X server -- tdfx display driver Description-md5: ed596fbd18e1efd6378926e2096000e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-tdfx-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-tdfx Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-tdfx-lts-quantal_5_amd64.deb Size: 1546 MD5sum: fc11a4a035190a0f2b9f41301c1aa403 SHA1: eb93d969746f2376dd280ded5d53a9cba9779941 SHA256: fc1784c1102e9d5f1c8ef35e5a32902afd777d330f72656e83344d546547b598 Description: Transitional package for xserver-xorg-video-tdfx Description-md5: aebd48ca604b38bdbe0409c73150e1c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-tdfx-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-tdfx Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-tdfx-lts-raring_5_amd64.deb Size: 1548 MD5sum: a37fe5373773d16e7d42e99d5e8f85db SHA1: 293df645d7ad8aa309c39fc502e3316dc967e485 SHA256: 45ab2eec852cd1400810ef0bf35ffad672a83b51000fb9af230f2a3f49dcb2b8 Description: Transitional package for xserver-xorg-video-tdfx Description-md5: aebd48ca604b38bdbe0409c73150e1c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-tdfx-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-tdfx Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-tdfx-lts-saucy_5_amd64.deb Size: 1548 MD5sum: f391f92360c2c0430ec465690c3218ab SHA1: 5d3a17710508a906017fff95fc32e507d73fe61e SHA256: 085061c7018a90beca52fcbd4fd266eef61e62028081c1dfea6056053bf0a880 Description: Transitional package for xserver-xorg-video-tdfx Description-md5: aebd48ca604b38bdbe0409c73150e1c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-trident Priority: optional Section: x11 Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:1.3.6-0ubuntu5 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-trident/xserver-xorg-video-trident_1.3.6-0ubuntu5_amd64.deb Size: 53312 MD5sum: b3a6e2ab2b0aa5daf8c3ea24654544ab SHA1: 9c8e2818b5c9d88a0361611d053dc42d204bee4e SHA256: a1884909a57f543e40efae41f4fcada434ee315042e8c886a0f5ff9d7035f9c8 Description: X.Org X server -- Trident display driver Description-md5: 64f00c4c0730397d4bf5aaa193176b46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-trident-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-trident Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-trident-lts-quantal_5_amd64.deb Size: 1550 MD5sum: 829a478061d0ccdc72ae404b5b07f69a SHA1: 37849c7fc9ab658e64a047dfd70fc634acf42d15 SHA256: 352b4336eec0bbfc469190c58924e53ad3cff1a18f7ba13bbf92f47906eda411 Description: Transitional package for xserver-xorg-video-trident Description-md5: a01f3e2ed4616380783cbbdfaf5b93a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-trident-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-trident Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-trident-lts-raring_5_amd64.deb Size: 1552 MD5sum: 1600f70e88d74753621c6f67ae9ce53a SHA1: af62971f5e701b3ed5085826854038afe64b8d55 SHA256: c92644d36e16ffa82e3512adedadf5c08add2f9739cab7ac3faa69c9641a06c9 Description: Transitional package for xserver-xorg-video-trident Description-md5: a01f3e2ed4616380783cbbdfaf5b93a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-trident-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-trident Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-trident-lts-saucy_5_amd64.deb Size: 1546 MD5sum: 85b2c66d7d611abe6ec022e55182ea34 SHA1: 348ecaf584724c0d0b6b8135defc5e98b60d1bf0 SHA256: 4079f2fc9e7e131941cca23ad7ea52e63d468b915223190b7e7ac533c1d473d5 Description: Transitional package for xserver-xorg-video-trident Description-md5: a01f3e2ed4616380783cbbdfaf5b93a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vesa Priority: optional Section: x11 Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:2.3.3-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.14), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-vesa/xserver-xorg-video-vesa_2.3.3-1build1_amd64.deb Size: 14266 MD5sum: 333b81582761cd72eb1237c4b047ccb2 SHA1: 1f926a6c29038b97211909c9fc25cf3259443652 SHA256: 1c55d01666328ce53328fc38215e4094a23d5cac969188418ffda969c9e6f6b3 Description: X.Org X server -- VESA display driver Description-md5: a16fd7ddeb274e98b09a99dec1bfcca6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-vesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vesa Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vesa-lts-quantal_5_amd64.deb Size: 1546 MD5sum: 841a686745a623fca198ecdafb19ce32 SHA1: 81b899def04a1c4305e14dd6cfbeae368e2307ec SHA256: 3feb85aeb54a17a24b79ddbdf66f19fbd2287143dcef077aa2b35f0c67ed8f3b Description: Transitional package for xserver-xorg-video-vesa Description-md5: 8bfafa7238f63f06e92b94364a91e4b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vesa Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vesa-lts-raring_5_amd64.deb Size: 1546 MD5sum: b368fde961b0703dfa6fff807b443f33 SHA1: 858029469631d2c7897b0ab582174ca5b05d5665 SHA256: 1940ff61e2ab60aeffd74c924d4d66a63b95d80e3125577834510feeeeb1e96a Description: Transitional package for xserver-xorg-video-vesa Description-md5: 8bfafa7238f63f06e92b94364a91e4b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vesa Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vesa-lts-saucy_5_amd64.deb Size: 1548 MD5sum: 0efd30e2a41d8b7793dc4a099d85b702 SHA1: 69ecb0514a0278309a2b371ff224ca2d6bb3c680 SHA256: 2cbefa844c349f58bf860fadd2d867e1757b385c500e5cf2152a9d70ef2d85f2 Description: Transitional package for xserver-xorg-video-vesa Description-md5: 8bfafa7238f63f06e92b94364a91e4b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vmware Priority: optional Section: x11 Installed-Size: 242 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:13.0.2-2ubuntu1 Provides: xorg-driver-video Depends: libc6 (>= 2.14), libdrm2 (>= 2.4.38), libx11-6 (>= 2:1.4.99.1), libxatracker2, libxext6, xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-vmware/xserver-xorg-video-vmware_13.0.2-2ubuntu1_amd64.deb Size: 65534 MD5sum: 740d303ea3effef29ef58270e5c2cdb4 SHA1: 916d6838e539a8b0df0646e97ae33e6ea13e00f1 SHA256: 8080b1100f3a1e25b2ac8dbaed01a6ddbe8f67e567ee4570f7c5394486025453 Description: X.Org X server -- VMware display driver Description-md5: 21afce1387bf1052ec99956e90ec2d1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-vmware-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vmware Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vmware-lts-quantal_5_amd64.deb Size: 1552 MD5sum: 64b8cb7c92650803ba1e29d24efcd80b SHA1: 30a4dbfe8ff2ac1f26dfa6669f32b0beb511032b SHA256: f02c63a6a53c316426e9ead01a3fea3beec93a5b8d722f6cfdc6875963380151 Description: Transitional package for xserver-xorg-video-vmware Description-md5: 0b8049c8d4ce79b853f04e40203c2fb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vmware-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vmware Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vmware-lts-raring_5_amd64.deb Size: 1548 MD5sum: dbef63395557a0717aa281575f9032f6 SHA1: f263c5303d5819b4dc9e42f285d75039e332bfe5 SHA256: 27cf1aa2f8e5414183b42050d90c0ca8e96e2730ecdd838c515b2fc079edc1ef Description: Transitional package for xserver-xorg-video-vmware Description-md5: 0b8049c8d4ce79b853f04e40203c2fb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vmware-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: amd64 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vmware Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vmware-lts-saucy_5_amd64.deb Size: 1550 MD5sum: 4267d839123f6aef2994dc91d106098b SHA1: a24b02913210738db094798d8d25f306975f1dd5 SHA256: 7da16855606c0aeeca9cce4a5a08b1f4f12615df34f06e404ca61d6d0305163f Description: Transitional package for xserver-xorg-video-vmware Description-md5: 0b8049c8d4ce79b853f04e40203c2fb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xsltproc Priority: optional Section: text Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: amd64 Source: libxslt Version: 1.1.28-2build1 Depends: libc6 (>= 2.3.4), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.27) Filename: pool/main/libx/libxslt/xsltproc_1.1.28-2build1_amd64.deb Size: 13636 MD5sum: 9f5ac011504f795b2daefde42a279bd3 SHA1: a8700aa1abdcc8326bbe6bf359987391df756f72 SHA256: e3ea769d0fc7b3dcf93facd3162cfb0cc73a536daa0056912fd4d27b60b1f938 Description: XSLT 1.0 command line processor Multi-Arch: foreign Homepage: http://xmlsoft.org/xslt/ Description-md5: 269c4daf3d326a815e26cdd2e64cf686 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: xterm Priority: optional Section: x11 Installed-Size: 1659 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 297-1ubuntu1 Provides: x-terminal-emulator Depends: xbitmaps, libc6 (>= 2.15), libfontconfig1 (>= 2.9.0), libice6 (>= 1:1.0.0), libtinfo5, libutempter0 (>= 1.1.5), libx11-6, libxaw7, libxft2 (>> 2.1.1), libxmu6, libxpm4, libxt6 Recommends: x11-utils Suggests: xfonts-cyrillic Filename: pool/main/x/xterm/xterm_297-1ubuntu1_amd64.deb Size: 664882 MD5sum: 0d43c2141bc640b8c6a37506f0edcfc1 SHA1: 3f5ca1ad453f9522db097e8f90c091ff39ee65f7 SHA256: 3ac771a061100594ff78fecedb681e1f71b0051e9f759ca831b1fd0407a5160f Description: X terminal emulator Multi-Arch: foreign Homepage: http://invisible-island.net/xterm/xterm.html Description-md5: c1e47d60a01948be9aae7a2a4f63a0fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xtrans-dev Priority: optional Section: x11 Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: xtrans Version: 1.3.2-1 Filename: pool/main/x/xtrans/xtrans-dev_1.3.2-1_all.deb Size: 69938 MD5sum: d37a75d0f7eab2c7e2429585ad5b125a SHA1: 7d986a6dc921f7d6eedf10d0886164716e51a5b3 SHA256: 070f3cd8ecd8ea472d89265018064a47df891f47225b0411645e069d73614620 Description: X transport library (development files) Multi-Arch: foreign Description-md5: d8dcf2e537228be6091670219f433234 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xul-ext-mozvoikko Priority: optional Section: web Installed-Size: 101 Maintainer: Ubuntu Core Developers Original-Maintainer: Heikki Mäntysaari Architecture: all Source: mozvoikko Version: 2.0.1-0ubuntu1 Replaces: mozvoikko Depends: libvoikko1, voikko-fi, firefox (>= 4.0) | thunderbird (>= 5.0) | seamonkey (>= 2.2) Breaks: mozvoikko (<= 1.0-4ubuntu2) Filename: pool/main/m/mozvoikko/xul-ext-mozvoikko_2.0.1-0ubuntu1_all.deb Size: 15478 MD5sum: 559eaf08e979b8fd9106d7a787f57080 SHA1: a1e8467ebc10a48a81d18b2425182e6f0d8c1c6d SHA256: 665f839176a1aef28d238231252bcc96fbb7151426e5c15040b577b8c538ff86 Description: Finnish spell-checker extension for Firefox Description-md5: 49444a7908796ef7df8bae1011294ead Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xul-ext-ubufox Priority: optional Section: web Installed-Size: 378 Maintainer: Ubuntu Mozilla Team Architecture: all Source: ubufox Version: 2.8-0ubuntu1 Replaces: ubufox (<< 0.9~rc2-0ubuntu3) Provides: firefox-ubufox, ubufox Depends: aptdaemon, libglib2.0-0 (>= 2.26) Recommends: firefox (>= 9.0) Breaks: ubufox (<< 0.9~rc2-0ubuntu3) Filename: pool/main/u/ubufox/xul-ext-ubufox_2.8-0ubuntu1_all.deb Size: 56222 MD5sum: 48f48503090501a6af48e15d75215e76 SHA1: 100b5bd88c5689078d11818e73d749d6dd2f0178 SHA256: 623c06fbad31ff9c26c5ba60ae56f4fcbc71ddde51d48e6740d98f80444c24c0 Description: Ubuntu-specific configuration defaults and apt support for Firefox Enhances: firefox Homepage: https://launchpad.net/ubufox Description-md5: d3a589833861a3e410e82d2a68586881 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xul-ext-unity Priority: optional Section: web Installed-Size: 453 Maintainer: Ubuntu Developers Architecture: all Source: unity-firefox-extension Version: 3.0.0+14.04.20140416-0ubuntu1 Provides: firefox-unity Depends: libufe-xidgetter0 (>= 3.0.0+14.04.20140416-0ubuntu1), libunity-webapps0 (>= 1.8.0+r699), xul-ext-websites-integration, firefox (>= 10.0) Breaks: firefox (<< 10.0) Filename: pool/main/u/unity-firefox-extension/xul-ext-unity_3.0.0+14.04.20140416-0ubuntu1_all.deb Size: 33684 MD5sum: 438a921f67a6a4dc68630fe8f7dc87c0 SHA1: 08c9e5e2ab3ef9ec058b6617d2eb9b93bae5e03c SHA256: 530d519c2a399c5cc847a4e819eba482c3b3b3c13b8ce8fbf1eabfafd8e5aff5 Description: Firefox extension: Unity Integration Enhances: firefox Homepage: https://launchpad.net/unity-firefox-extension Description-md5: e4b53d72615feaed2201e5bdbe48e5b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: xul-ext-webaccounts Priority: optional Section: web Installed-Size: 60 Maintainer: Ubuntu Desktop Team Architecture: amd64 Source: webaccounts-browser-extension Version: 0.5-0ubuntu2 Provides: firefox-webaccounts Depends: webaccounts-extension-common (= 0.5-0ubuntu2), firefox (>= 9.0) Breaks: firefox (<< 9.0) Filename: pool/main/w/webaccounts-browser-extension/xul-ext-webaccounts_0.5-0ubuntu2_amd64.deb Size: 3994 MD5sum: d262aa4855503828172a639aae86449a SHA1: b59040d989778904830d6278cfd72c564109e534 SHA256: 2f35c6be123f57e8958fabdbee3538ca8d5af33f65f0a31b482003b43652bdc0 Description: Ubuntu Online Accounts extension for firefox Enhances: firefox Homepage: https://launchpad.net/webaccounts-browser-extension Description-md5: 48d651d5fcf582b2a27ff04903f0d38a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: xul-ext-websites-integration Priority: extra Section: web Installed-Size: 91 Maintainer: Ubuntu Desktop Team Architecture: all Source: webapps-greasemonkey Version: 2.3.6+13.10.20130920.1-0ubuntu1 Depends: libunity-webapps0 Filename: pool/main/w/webapps-greasemonkey/xul-ext-websites-integration_2.3.6+13.10.20130920.1-0ubuntu1_all.deb Size: 14216 MD5sum: 69662971d3882c8a36c33021c01b8636 SHA1: c8fbd657de083cf3207fcbb790174ad737afc5b6 SHA256: d15cdf5e47cb1c117aca74737d357ce74b5d9a878ba3dcdcff70e95d455c716a Description: Firefox extension: Website Integration Homepage: https://launchpad.net/webapps-greasemonkey Description-md5: dfcc6dccd7e7364b9f62adcd6fe38561 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: xutils-dev Priority: optional Section: x11 Installed-Size: 1433 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: amd64 Version: 1:7.7~1ubuntu6 Depends: libc6 (>= 2.14), cpp Filename: pool/main/x/xutils-dev/xutils-dev_7.7~1ubuntu6_amd64.deb Size: 238284 MD5sum: d671ca98b27e7ea3ff9259ebdc22a821 SHA1: d6b30df9833157f64a60be45e194f019992025ef SHA256: d95dfab0574103287e90ac5cf036bd196f005e5c22d5e987333fcb3efd7c944b Description: X Window System utility programs for development Multi-Arch: foreign Description-md5: a6b66c6670710a65fa7788271bdb5c54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xvfb Priority: optional Section: x11 Installed-Size: 2131 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: amd64 Source: xorg-server Version: 2:1.15.1-0ubuntu2 Provides: xserver Depends: xserver-common (>= 2:1.15.1-0ubuntu2), libaudit1 (>= 1:2.2.1), libc6 (>= 2.17), libgcrypt11 (>= 1.5.1), libgl1-mesa-glx | libgl1, libpixman-1-0 (>= 0.30.0), libselinux1 (>= 2.0.82), libxau6, libxdmcp6, libxfont1 (>= 1:1.4.2), xauth, x11-xkb-utils Recommends: libgl1-mesa-dri Filename: pool/main/x/xorg-server/xvfb_1.15.1-0ubuntu2_amd64.deb Size: 744494 MD5sum: 0843a58faabd899e3834c04d7fcd9178 SHA1: b8cc638d4ab6ac3ddc590b39ff512c5961a36dbb SHA256: f671ae8fa5e31625593b3aac424988e13e2e1db337254d26bc1b1a7404fcb61d Description: Virtual Framebuffer 'fake' X server Multi-Arch: foreign Description-md5: ff95e4399e5ec034de6998347673eb73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xz-utils Priority: optional Section: utils Installed-Size: 384 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan Nieder Architecture: amd64 Version: 5.1.1alpha+20120614-2ubuntu2 Replaces: lzip (<< 1.8~rc2), xz-lzma Provides: lzma Depends: libc6 (>= 2.14), liblzma5 (>= 5.1.1alpha+20120614) Conflicts: lzma (<< 9.22-1), xz-lzma Breaks: lzip (<< 1.8~rc2) Filename: pool/main/x/xz-utils/xz-utils_5.1.1alpha+20120614-2ubuntu2_amd64.deb Size: 78794 MD5sum: 195995c093404e3ee766d04ea3cdffe6 SHA1: f4a916c08806f696435635886c240e57d12e8bc1 SHA256: e133d06874946eca85922b8b9314ab7821efce7d93a419f6ea49fe934f9a5dfa Description: XZ-format compression utilities Multi-Arch: foreign Homepage: http://tukaani.org/xz/ Description-md5: ea97a558c8575aebbed2c11cbd20e0f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: yapps2 Priority: optional Section: python Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Urlichs Architecture: all Version: 2.1.1-17.2ubuntu1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8), yapps2-runtime (= 2.1.1-17.2ubuntu1) Filename: pool/main/y/yapps2/yapps2_2.1.1-17.2ubuntu1_all.deb Size: 58838 MD5sum: a2dd69de9cbc8b3b36331c85f05d5708 SHA1: 829be2f6cf6d119a35357813b04fa6c7343342ad SHA256: 18717148bb7dda11f0325c912c986635b1224ca84a9e42ffdaea2e74aeb85248 Description: Yet Another Python Parser System Description-md5: e0daec7e8417eea1a6ad27d120598d3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: yapps2-runtime Priority: optional Section: python Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Urlichs Architecture: all Source: yapps2 Version: 2.1.1-17.2ubuntu1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/y/yapps2/yapps2-runtime_2.1.1-17.2ubuntu1_all.deb Size: 8136 MD5sum: 92010778be108b66e1b95da356537331 SHA1: 911473d2d6f1cf828ee6cffcaf06c52a0531c26d SHA256: 600ce9a34ed0da55bd57a223c76805ee695a827f5deb916c713e9111ab830410 Description: Yet Another Python Parser System Description-md5: 5818ec475f14a1d7b0209d5ee2aed309 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: yasm Priority: optional Section: devel Installed-Size: 1656 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hocevar Architecture: amd64 Version: 1.2.0-1ubuntu1 Depends: libc6 (>= 2.14) Filename: pool/main/y/yasm/yasm_1.2.0-1ubuntu1_amd64.deb Size: 642462 MD5sum: bd54f397381c5e56dec7362fd25bc9e2 SHA1: 7922b86d552dee0bfc3824c989715d0ea4a65b90 SHA256: c8c1d7e43ec916c79b9c6b11c85cd5fea09a7624f9f327d2b2c9be500a94d821 Description: modular assembler with multiple syntaxes support Homepage: http://www.tortall.net/projects/yasm/ Description-md5: dea64a38f47da6fb51ac8a3e78582601 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: yelp Priority: optional Section: gnome Installed-Size: 2120 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.10.2-0ubuntu1 Depends: libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libwebkitgtk-3.0-0 (>= 1.3.10), libyelp0 (= 3.10.2-0ubuntu1), dconf-gsettings-backend | gsettings-backend, yelp-xsl (>= 3.1.2), man-db (>= 2.5.1-1) Recommends: gnome-user-guide Filename: pool/main/y/yelp/yelp_3.10.2-0ubuntu1_amd64.deb Size: 490216 MD5sum: ea9de8972cb80f2b15aedde60106f76f SHA1: 1bfa7595b5228fe89f94b9a1a76d818704397fe2 SHA256: 3cbc0d5fc6d2495d5a96508d6aa3ae30ad4975e602a230b02b5f91e09b4607d1 Description: Help browser for GNOME Homepage: https://wiki.gnome.org/Yelp Description-md5: b660f3f94d2a495572d2b53c6824da41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: yelp-tools Priority: optional Section: gnome Installed-Size: 299 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.10.0-1 Depends: xsltproc, libxml2-utils, itstool Recommends: zip Filename: pool/main/y/yelp-tools/yelp-tools_3.10.0-1_all.deb Size: 20440 MD5sum: 0ea9d6ee94439f778ce63ec1bb7ccc42 SHA1: 72df4ff64e9689773ac906ee69fd1478df6970a4 SHA256: 6abb3b0422cc94021bbb8284051f8ac7c24adf9504b094344762598828c13a2a Description: Yelp documentation tools Description-md5: 67d34d4de561eee98dcba90001663b95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: yelp-xsl Priority: optional Section: gnome Installed-Size: 1863 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.10.1-1 Filename: pool/main/y/yelp-xsl/yelp-xsl_3.10.1-1_all.deb Size: 297934 MD5sum: 1abc29e923409c32bdb051accdae095e SHA1: cbbeedbfbc869c5f1c890ec9d978684e7a60cd20 SHA256: 703a7fe6d76d8b26638e9fe8e66317456d5010bc3d004e1954b9ca3f325f808d Description: XSL stylesheets for the yelp help browser Description-md5: 1a100ec4d885b993f504229830095864 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: yui-compressor Priority: optional Section: java Installed-Size: 619 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.4.7-1 Depends: default-jre-headless | java5-runtime-headless, java-wrappers, libjargs-java Filename: pool/main/y/yui-compressor/yui-compressor_2.4.7-1_all.deb Size: 563176 MD5sum: 6ab98a05df98e6add4a25858e4a5064b SHA1: 57b464ea6c7c4f9d5bfa7b5f1a0b449d6daf7973 SHA256: c901c617551c43241e3558c5adec2b11c33bf7bef81928f1d305fccd0bda6d3a Description: JavaScript/CSS minifier Homepage: http://yuilibrary.com/projects/yuicompressor/ Description-md5: bd069b00e0a22b6335e050845844bcb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: zeitgeist Priority: optional Section: utils Installed-Size: 34 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: all Version: 0.9.14-0ubuntu4 Depends: python-zeitgeist, zeitgeist-core, zeitgeist-datahub Filename: pool/main/z/zeitgeist/zeitgeist_0.9.14-0ubuntu4_all.deb Size: 2764 MD5sum: 7ac3d9f47cbb5dca75357faab5cacea7 SHA1: a22063ecdfb31b6673e7cb4e457fe4d9dc80a1ca SHA256: 5a19f3e8d9722a60b7aea9d773a1a5217809ad43ed5c243412cde65ca0d5b3a1 Description: event logging framework Homepage: http://zeitgeist-project.com/ Description-md5: c3a22cf4812c44cba8ff553657f1d168 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zeitgeist-core Priority: optional Section: utils Installed-Size: 442 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: amd64 Source: zeitgeist Version: 0.9.14-0ubuntu4 Provides: zeitgeist-extension-fts Depends: libc6 (>= 2.4), libdee-1.0-4 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.1.1), libxapian22, libzeitgeist-2.0-0 (>= 0.9.14) Suggests: zeitgeist-datahub Filename: pool/main/z/zeitgeist/zeitgeist-core_0.9.14-0ubuntu4_amd64.deb Size: 113342 MD5sum: e9d363c7f209a3c09f171ee963226955 SHA1: faf3079a5f455c930bc4799c47dbc82607bb841a SHA256: e4ce2921f59d99ab14c7a6620a2d95b16171634d365b4c9e486b80c998387aef Description: event logging framework - engine Homepage: http://zeitgeist-project.com/ Description-md5: 4709c129c4bf63ba0918f4c77885bbb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zeitgeist-datahub Priority: optional Section: utils Installed-Size: 184 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: amd64 Source: zeitgeist Version: 0.9.14-0ubuntu4 Depends: zeitgeist-core (>= 0.5.0~), libc6 (>= 2.2.5), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libjson-glib-1.0-0 (>= 0.13.2), libtelepathy-glib0 (>= 0.18.0), libzeitgeist-2.0-0 (>= 0.9.9) Filename: pool/main/z/zeitgeist/zeitgeist-datahub_0.9.14-0ubuntu4_amd64.deb Size: 40226 MD5sum: 2d1f029ff36f082fc934dd5fcae09351 SHA1: 4c404f36f4697e73e41a9dd8274b2a55755623cb SHA256: 70a13af3fd2e0c82ee194d7bee6dc20223aae5e366751dfdbef04c8d850df099 Description: event logging framework - passive logging daemon Enhances: zeitgeist-core Homepage: http://zeitgeist-project.com/ Description-md5: 87456215f638005a5a334b203b507846 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zenity Priority: optional Section: gnome Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: amd64 Version: 3.8.0-1ubuntu1 Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgtk-3-0 (>= 3.0.0), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libwebkitgtk-3.0-0 (>= 1.3.10), libx11-6, zenity-common (= 3.8.0-1ubuntu1) Filename: pool/main/z/zenity/zenity_3.8.0-1ubuntu1_amd64.deb Size: 58534 MD5sum: 6b377f41ea8562f51b004fe4cd7e8c0a SHA1: 944c699096cb6550803a5e7a451c4d1788596ed9 SHA256: ba534b2d5c5545d05a2c4ad5db32cc527832487900af752dcd556f5d87631557 Description: Display graphical dialog boxes from shell scripts Multi-Arch: foreign Homepage: http://live.gnome.org/Zenity Description-md5: 0eaa042a6247aca86bac2f94a69fc906 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zenity-common Priority: optional Section: gnome Installed-Size: 1684 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: zenity Version: 3.8.0-1ubuntu1 Replaces: zenity (<< 2.91.5-1~) Breaks: zenity (<< 2.91.5-1~) Filename: pool/main/z/zenity/zenity-common_3.8.0-1ubuntu1_all.deb Size: 208508 MD5sum: f29a009442891e62feaa4c5b3c0852d1 SHA1: 66b3d123f2f151de29c227f4da3686b66f71bfa9 SHA256: a76a6cce57afd1b6b707c04e3142c81125bd4cc1ad51453d094b1b78e259b52b Description: Display graphical dialog boxes from shell scripts (common files) Homepage: http://live.gnome.org/Zenity Description-md5: 31577d10cdc7dea3e76b1ffaca46c1f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zerofree Priority: extra Section: admin Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Thibaut Paumard Architecture: amd64 Version: 1.0.2-1ubuntu1 Depends: e2fslibs (>= 1.37), libc6 (>= 2.3.4) Filename: pool/main/z/zerofree/zerofree_1.0.2-1ubuntu1_amd64.deb Size: 8654 MD5sum: a92cc8c9a9afdbe9ab37676606eb9c7b SHA1: 0a587c71e8771de15ecf45b506d97600837ec0c4 SHA256: 657c927de5b848db0d0f1217fe611cb8310f77e531394b20ca2455a10a9b7df9 Description: zero free blocks from ext2, ext3 and ext4 file-systems Homepage: http://intgat.tigress.co.uk/rmy/uml/index.html Description-md5: 262e6e46f0838142d423e7e4b5195bfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: zip Priority: optional Section: utils Installed-Size: 589 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: amd64 Version: 3.0-8 Depends: libbz2-1.0, libc6 (>= 2.14) Recommends: unzip Filename: pool/main/z/zip/zip_3.0-8_amd64.deb Size: 261756 MD5sum: 673f904236646069a126ebf70cae494a SHA1: b5d26ae4e43de1a680b5c0b9e5e1e20ec3756410 SHA256: acf6b4296a95240d3670d12856bb89b756e3be93df4e5c32761b0714f321c9c0 Description: Archiver for .zip files Multi-Arch: foreign Homepage: http://www.info-zip.org/Zip.html Description-md5: 581928d34d669e63c353cd694bd040b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zlib1g Priority: required Section: libs Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: amd64 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Provides: libz1 Depends: libc6 (>= 2.14) Pre-Depends: multiarch-support Conflicts: zlib1 (<= 1:1.0.4-7) Breaks: libxml2 (<< 2.7.6.dfsg-2), texlive-binaries (<< 2009-12) Filename: pool/main/z/zlib/zlib1g_1.2.8.dfsg-1ubuntu1_amd64.deb Size: 57118 MD5sum: 468af3913970b3264a2525959e37a871 SHA1: 680daaa7c021f6c8e7c4e31fb29e15c057617397 SHA256: 0721c2cb0c0829b7c110ef1589bd90e7dc4242d84848cd201150d5b399cd38c2 Description: compression library - runtime Multi-Arch: same Homepage: http://zlib.net/ Description-md5: 567f396aeeb2b2b63295099aed237057 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: zlib1g-dbg Priority: extra Section: libdevel Installed-Size: 412 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: amd64 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Provides: libz-dbg Depends: zlib1g (= 1:1.2.8.dfsg-1ubuntu1) Filename: pool/main/z/zlib/zlib1g-dbg_1.2.8.dfsg-1ubuntu1_amd64.deb Size: 297106 MD5sum: e7cdb119c8dd5ed59e05cb3362ecbd59 SHA1: 6a3905dadcaea5e15e7b603f81637360b470c9b6 SHA256: 4aca1c789eafa01cb27667e1f95f685f15b372072f53d0de7b5868407b0b3645 Description: compression library - development Homepage: http://zlib.net/ Description-md5: dddc7d60663fa5dc77c76a30127d83db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: zlib1g-dev Priority: optional Section: libdevel Installed-Size: 443 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: amd64 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Provides: libz-dev Depends: zlib1g (= 1:1.2.8.dfsg-1ubuntu1), libc6-dev | libc-dev Conflicts: zlib1-dev Filename: pool/main/z/zlib/zlib1g-dev_1.2.8.dfsg-1ubuntu1_amd64.deb Size: 183378 MD5sum: baf554d3c4a2cc8b2d9a190c04e9e3d7 SHA1: b5c073d1a419915ed9c3047d2f04aaed24268c47 SHA256: d44332327123a4fef16ededcffac98ac0425402f9c2ccc8e42193b122f8a54b8 Description: compression library - development Multi-Arch: same Homepage: http://zlib.net/ Description-md5: d7f4e8a626131fc83c643c5d59096290 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: zsh Priority: optional Section: shells Installed-Size: 1819 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: amd64 Version: 5.0.2-3ubuntu6 Depends: libc6 (>= 2.15), libcap2 (>= 2.10), libtinfo5, zsh-common (= 5.0.2-3ubuntu6) Pre-Depends: dpkg (>= 1.15.6~) Recommends: libncursesw5 (>= 5.6+20070908), libpcre3 (>= 8.10) Suggests: zsh-doc Filename: pool/main/z/zsh/zsh_5.0.2-3ubuntu6_amd64.deb Size: 606764 MD5sum: 02690de1f21de2126ce3b70b71543bec SHA1: f3c6e54c87c1233d6ad5fbca58593153d00e1a96 SHA256: fdd6b9250cc7a9c91e303cdc7592bf491bbf77da3cc4692782bfa040640d902b Description: shell with lots of features Homepage: http://www.zsh.org/ Description-md5: a129d6b2d23d2d5d3a6b822d3f8f856d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: zsh-beta-doc Priority: optional Section: doc Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: all Source: zsh Version: 5.0.2-3ubuntu6 Depends: zsh-common (= 5.0.2-3ubuntu6), zsh-doc Filename: pool/main/z/zsh/zsh-beta-doc_5.0.2-3ubuntu6_all.deb Size: 1086 MD5sum: 9da38535edc28d26385e198a78ebff3d SHA1: e5d5040bf61160d11bfb47ed3453cee71b0488fc SHA256: 09d4ea63d12e9fac7105ab27c0e55a7a55fe804a076b4398bfa6bf95bcde7323 Description: transitional package to zsh-doc Homepage: http://www.zsh.org/ Description-md5: 425eb63fb19f0f0c8b27e64eb711dab6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: zsh-common Priority: optional Section: shells Installed-Size: 9309 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: all Source: zsh Version: 5.0.2-3ubuntu6 Replaces: zsh (<= 5.0.2-1) Pre-Depends: dpkg (>= 1.15.6~) Recommends: zsh Suggests: zsh-doc Breaks: zsh (<= 5.0.2-1) Filename: pool/main/z/zsh/zsh-common_5.0.2-3ubuntu6_all.deb Size: 2118774 MD5sum: f24e896687a03c530868cc42e9c23370 SHA1: b3c7f457cd9d0c42e55afb8338537f4ff5f67c91 SHA256: 0fce511693192b0bf4b5b7660d5a745f8bfbfb09dfe0ee0a5551a2a4df2ac5c2 Description: architecture independent files for Zsh Homepage: http://www.zsh.org/ Description-md5: 8aac20ad1d93f2ea018a327bcfd5912f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: zsh-dbg Priority: extra Section: devel Installed-Size: 1960 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: amd64 Source: zsh Version: 5.0.2-3ubuntu6 Depends: zsh (= 5.0.2-3ubuntu6), zsh-common (= 5.0.2-3ubuntu6) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/z/zsh/zsh-dbg_5.0.2-3ubuntu6_amd64.deb Size: 1539962 MD5sum: 5799435b87e1f3fd3b0a144b5f0d73f4 SHA1: 8decb4b518208c19173e480e7cce9ee55e363673 SHA256: 9743378637f12919f17d0667d63762b3d851b515148403a2c757d8aa39a8a065 Description: shell with lots of features (debugging symbols) Homepage: http://www.zsh.org/ Description-md5: b7daaaf215cd0857365c0b1532bd3ec4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: zsh-dev Priority: optional Section: libdevel Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: amd64 Source: zsh Version: 5.0.2-3ubuntu6 Depends: zsh-common (= 5.0.2-3ubuntu6) Filename: pool/main/z/zsh/zsh-dev_5.0.2-3ubuntu6_amd64.deb Size: 54390 MD5sum: 9f62cca0a115c3f288a05212c4437f76 SHA1: 123d7cdabf526af791daaa91f0dfcff55e93d8c5 SHA256: 3885661fa9c74b37fb88fbb16f5d8d795809f9e1a2b063056805265e43778266 Description: shell with lots of features (development files) Homepage: http://www.zsh.org/ Description-md5: 958eee099c22df2f69105f5ecae036a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: zsh-doc Priority: optional Section: doc Installed-Size: 5719 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: all Source: zsh Version: 5.0.2-3ubuntu6 Depends: zsh-common (= 5.0.2-3ubuntu6) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/z/zsh/zsh-doc_5.0.2-3ubuntu6_all.deb Size: 2274216 MD5sum: 60dbce7416762cde5d8cd16a87ca6920 SHA1: f9d3959495fbce6b0afce1d5e401d102e4d449af SHA256: 8d12dfd5f886b6f7e46c2bdb1643a2528733b8696eec9ddc84e3d239b80c40d1 Description: zsh documentation - info/HTML format Homepage: http://www.zsh.org/ Description-md5: 9b5459fce7bedf54d5694a22e68389c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m ubuntu-release-upgrader-0.220.10/utils/apt/lists/partial/0000755000000000000000000000000013017612173020110 5ustar ubuntu-release-upgrader-0.220.10/utils/apt/lists/lock0000644000000000000000000000000013017611302017306 0ustar ././@LongLink0000644000000000000000000000016200000000000011602 Lustar rootrootubuntu-release-upgrader-0.220.10/utils/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_main_binary-i386_Packagesubuntu-release-upgrader-0.220.10/utils/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_main_binary-0000644000000000000000003723174512332705640031034 0ustar Package: account-plugin-aim Priority: optional Section: gnome Installed-Size: 941 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: account-plugin-empathy Depends: empathy (= 3.8.6-0ubuntu9), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Filename: pool/main/e/empathy/account-plugin-aim_3.8.6-0ubuntu9_i386.deb Size: 8836 MD5sum: 14e8b8c30b338a184ccff88cb26e7123 SHA1: 106d1c163f62ced231e103f782199258ada043ae SHA256: 544534a92f3cae88f28e3150fba90d77b5414a0d448a3fe5fcfa2de06d065ec7 Description: Messaging account plugin for AIM Homepage: http://wiki.gnome.org/Empathy Description-md5: 1a2069e5dd5f4777061642b2d7c9a76a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-facebook Priority: optional Section: gnome Installed-Size: 65 Maintainer: Ubuntu Desktop Team Architecture: all Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Depends: libaccount-plugin-generic-oauth | ubuntu-system-settings-online-accounts, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1) Filename: pool/main/a/account-plugins/account-plugin-facebook_0.11+14.04.20140409.1-0ubuntu1_all.deb Size: 3008 MD5sum: bffab5cb1974efc1cbb78cb0fe33d6a7 SHA1: e76677842b857754439b84481446cee0fa46a0d1 SHA256: f0b62d83fe5fcc85e458e77a1ab3ddb321cd629e5848a11e30b7a311060e05bd Description: GNOME Control Center account plugin for single signon - facebook Homepage: https://launchpad.net/account-plugins Description-md5: 01a81d75d91a6678012aaf832ed5a51c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-flickr Priority: optional Section: gnome Installed-Size: 64 Maintainer: Ubuntu Desktop Team Architecture: all Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Depends: libaccount-plugin-generic-oauth | ubuntu-system-settings-online-accounts, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1) Filename: pool/main/a/account-plugins/account-plugin-flickr_0.11+14.04.20140409.1-0ubuntu1_all.deb Size: 2618 MD5sum: c36fd8bb7b7073644f6ec0e99bc59dc0 SHA1: 040dfd8049e8b9030ff8a6585052c847cd3a5efb SHA256: edb047d9fa34f8c2bc793fb5cb51fc7b5e31eb619bc1974b56de43e4738e6eb0 Description: GNOME Control Center account plugin for single signon - flickr Homepage: https://launchpad.net/account-plugins Description-md5: 65227609ad37a6458b711608bad1c565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-google Priority: optional Section: gnome Installed-Size: 66 Maintainer: Ubuntu Desktop Team Architecture: all Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Depends: libaccount-plugin-google | ubuntu-system-settings-online-accounts, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1) Filename: pool/main/a/account-plugins/account-plugin-google_0.11+14.04.20140409.1-0ubuntu1_all.deb Size: 3358 MD5sum: 79a2116405bbc34b715f84024099c967 SHA1: c4c8ab57101e372df176e9bb79fc3ba4d39adae5 SHA256: 0667f6dfa3bbde4a5c77c2170215ba5d50d73d6bf4cb547c8d9556a3a45952fe Description: GNOME Control Center account plugin for single signon Homepage: https://launchpad.net/account-plugins Description-md5: 33423c62c8cdfe0c6a499715b18fd300 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-jabber Priority: optional Section: gnome Installed-Size: 941 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: account-plugin-empathy Depends: empathy (= 3.8.6-0ubuntu9), telepathy-gabble, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Filename: pool/main/e/empathy/account-plugin-jabber_3.8.6-0ubuntu9_i386.deb Size: 8850 MD5sum: cce3f2fd4210c8ec9b6609b8d0f58dac SHA1: 5cc198d8f44e58677a553428da40fbbb6d166ac4 SHA256: 84a4b9955ecc1a13f6551aced5cefac042f99f515a8b586a7fd4bacb27459964 Description: Messaging account plugin for Jabber/XMPP Homepage: http://wiki.gnome.org/Empathy Description-md5: a3b6eae3781031008639c5fca9ab3338 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-salut Priority: optional Section: gnome Installed-Size: 941 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: account-plugin-empathy Depends: empathy (= 3.8.6-0ubuntu9), telepathy-salut, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Filename: pool/main/e/empathy/account-plugin-salut_3.8.6-0ubuntu9_i386.deb Size: 8866 MD5sum: 7709dc5fdce82475df58a740a4a4e36c SHA1: dbbef956a10faeba4088cc0d4277a20dbedcf43e SHA256: 6ee3bc7271ac5f7172cb3473c1de8cbed1019697db46217621ee22b4145fd6f7 Description: Messaging account plugin for Local XMPP (Salut) Homepage: http://wiki.gnome.org/Empathy Description-md5: 4d1868589be13e3e2f58afeefddbceff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-twitter Priority: optional Section: gnome Installed-Size: 63 Maintainer: Ubuntu Desktop Team Architecture: all Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Depends: libaccount-plugin-generic-oauth | ubuntu-system-settings-online-accounts, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1) Filename: pool/main/a/account-plugins/account-plugin-twitter_0.11+14.04.20140409.1-0ubuntu1_all.deb Size: 2332 MD5sum: 24cc9fcb2e1a7da130f5812174802054 SHA1: 6b25ca5f577da333acbbd9cd8d385343ce9fd68d SHA256: b88b4a24ecff55afa480a80191e4ca16919af2c9b8ce98f89808f720a6deffaa Description: GNOME Control Center account plugin for single signon - twitter Homepage: https://launchpad.net/account-plugins Description-md5: 66785ad58695c9ded73383857a9ed7b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-windows-live Priority: optional Section: gnome Installed-Size: 55 Maintainer: Ubuntu Desktop Team Architecture: all Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Depends: libaccount-plugin-generic-oauth, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1) Filename: pool/main/a/account-plugins/account-plugin-windows-live_0.11+14.04.20140409.1-0ubuntu1_all.deb Size: 2250 MD5sum: e9cfcac2aa9c29c838dbb5b23f694c3f SHA1: 14d44a8052117e4ca4691e2b3d0bb8328503d829 SHA256: b55fe18277b4803d4f950ec9e5605a09d8c1bed2dcbc2d6488291288c06b42a1 Description: GNOME Control Center account plugin for single signon - windows live Homepage: https://launchpad.net/account-plugins Description-md5: fcc0ce4adcd04c0f807e362ee5a229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: account-plugin-yahoo Priority: optional Section: gnome Installed-Size: 941 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: account-plugin-empathy Depends: empathy (= 3.8.6-0ubuntu9), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Filename: pool/main/e/empathy/account-plugin-yahoo_3.8.6-0ubuntu9_i386.deb Size: 8844 MD5sum: 2164fe80a97de64437efc7c36c61c5a1 SHA1: 48183cd107f31d424f02ad3b951242cf17cb6246 SHA256: 732d0a63135f67763ef695a3149722b0a7dd8e779446487f879afe0340642a56 Description: Messaging account plugin for Yahoo! Homepage: http://wiki.gnome.org/Empathy Description-md5: 8478f3242edc90b5534110f689f38e24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: accounts-qml-module-doc Priority: optional Section: doc Installed-Size: 245 Maintainer: Ubuntu Desktop Team Architecture: all Source: accounts-qml-module Version: 0.4+14.04.20140317-0ubuntu1 Filename: pool/main/a/accounts-qml-module/accounts-qml-module-doc_0.4+14.04.20140317-0ubuntu1_all.deb Size: 15054 MD5sum: abb49fee53a0bec1785228f2f6553337 SHA1: 6d8ab6ddd7e5695ed2a12f87cf1fda4b79f3d870 SHA256: 7e18e859842e4d453a17e89647cb26196c9f33f1cfa7c10c317e06bf695a6e01 Description: Online Accounts QML - documentation Multi-Arch: foreign Homepage: https://launchpad.net/accounts-qml-module Description-md5: 122b4b6da41c90cb7a74515255f22c9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: accountsservice Priority: standard Section: gnome Installed-Size: 420 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Version: 0.6.35-0ubuntu7 Depends: dbus, libaccountsservice0 (= 0.6.35-0ubuntu7), libc6 (>= 2.4), libgcr-base-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.37.3), libpam0g (>= 0.99.7.1), libpolkit-gobject-1-0 (>= 0.99) Suggests: gnome-control-center Filename: pool/main/a/accountsservice/accountsservice_0.6.35-0ubuntu7_i386.deb Size: 61140 MD5sum: 5fb2d5e2a12b74a10a5eeb02853c4b4e SHA1: 589527bb4ed65594c071808bcd4865c699bb17cc SHA256: 76a817cb67ab5fd1d112a672f63d7fe4ee397a8f2c29b300359fd80d6c3ed263 Description: query and manipulate user account information Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: 8aeed0a03c7cd494f0c4b8d977483d7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: acct Priority: optional Section: admin Installed-Size: 314 Maintainer: Ubuntu Developers Original-Maintainer: Mathieu Trudel-Lapierre Architecture: i386 Version: 6.5.5-1ubuntu5 Depends: libc6 (>= 2.4), dpkg (>= 1.15.4) | install-info Filename: pool/main/a/acct/acct_6.5.5-1ubuntu5_i386.deb Size: 79232 MD5sum: a34ac8f35636aa396ceb9c9887ecda1d SHA1: b235c67b6e1cbe420c1c2aad363e134f318ec87d SHA256: 7d07f9ff1086239d709c33693df97bbee8f8002e55e2d18ebc951ad98ede4819 Description: The GNU Accounting utilities for process and login accounting Homepage: http://www.gnu.org/software/acct/ Description-md5: b24f45ef7d67937aa65ecb8e36a7e5a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: acl Priority: optional Section: utils Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 2.2.52-1 Depends: libacl1 (= 2.2.52-1), libc6 (>= 2.4) Filename: pool/main/a/acl/acl_2.2.52-1_i386.deb Size: 42952 MD5sum: 141ecf06944e9aefb60d0d04766d37db SHA1: 68ef9e4406a73e6eaa6d00682ee739e5d88daea5 SHA256: 00fd1f9931cc1ff45f3144534c1c31548dd0c3f664c6022fb1bff127ca2c14f1 Description: Access control list utilities Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/acl/ Description-md5: 75eddab5ddd2597445b43aa18f0db77a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: acpi-support Priority: optional Section: admin Installed-Size: 92 Maintainer: Ubuntu Core developers Original-Maintainer: Bart Samwel Architecture: i386 Version: 0.142 Depends: acpid (>= 1.0.4-1ubuntu4) Recommends: toshset, wireless-tools Conflicts: uswsusp (<= 0.2) Filename: pool/main/a/acpi-support/acpi-support_0.142_i386.deb Size: 10180 MD5sum: d76d0009b493c61694b6ec5a85ef0fbf SHA1: 31ec69798e28b10be2916aa8e171ab504eeba311 SHA256: dc9398a701b1ed249aa552d04ab05f4dcb5ca9b3f7cffa12784fb2bbfbe28c2c Description: scripts for handling many ACPI events Description-md5: 3da3f1fdfeedd4b9182ff4fd508042a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: acpica-tools Priority: optional Section: devel Installed-Size: 1813 Maintainer: Ubuntu Developers Original-Maintainer: Mattia Dongili Architecture: i386 Source: acpica-unix Version: 20140214-1ubuntu1 Replaces: acpidump (<< 20100513-4), iasl (<< 20130214-0.1) Provides: acpidump, iasl Depends: libc6 (>= 2.4) Breaks: acpidump (<< 20100513-4), iasl (<< 20130214-0.1) Filename: pool/main/a/acpica-unix/acpica-tools_20140214-1ubuntu1_i386.deb Size: 612830 MD5sum: a41983103aaac25f6991b77f943eb887 SHA1: 02875c1d69c8cd83aa18101e8c616e0dcd512029 SHA256: f241fe5bae10997ebb8aae0df0485a7e96c44b34862e948e083b48f3a161aa77 Description: ACPICA tools for the development and debug of ACPI tables Homepage: http://www.acpica.org Description-md5: 49928e241f299a9ae2e7d4a00124a5ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: acpid Priority: optional Section: admin Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Debian Acpi Team Architecture: i386 Version: 1:2.0.21-1ubuntu2 Depends: libc6 (>= 2.15), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.2-14), kmod Filename: pool/main/a/acpid/acpid_2.0.21-1ubuntu2_i386.deb Size: 34160 MD5sum: 928a7d717e2e3e72ad3e52e748912e44 SHA1: aff5aefee366412ca919ebf81b2c49c6ab0fe5d7 SHA256: 96521c00060a1fa1f880b95e1a210522da0a4dab38bd5ffd749a8c2577434767 Description: Advanced Configuration and Power Interface event daemon Homepage: http://www.tedfelix.com/linux/acpid-netlink.html Description-md5: 6a7c4e4695f570d8fbcaec667cdcfcfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: activity-log-manager Priority: optional Section: utils Installed-Size: 709 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: i386 Version: 0.9.7-0ubuntu14 Replaces: activity-log-manager-common, activity-log-manager-control-center (<< 0.9.6) Depends: libc6 (>= 2.3.6-6~), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.37.3), libgnome-control-center1 (>= 1:2.91.2), libgtk-3-0 (>= 3.5.12), libpango-1.0-0 (>= 1.22.0), libpolkit-gobject-1-0 (>= 0.99), libunity-control-center1 (>= 14.04.0), libwhoopsie-preferences0 (>= 0.9), libzeitgeist-2.0-0 (>= 0.9.9), zeitgeist-core (>= 0.8~) | zeitgeist (>= 0.8~), whoopsie-preferences Conflicts: activity-log-manager-common Breaks: activity-log-manager-control-center (<< 0.9.6) Filename: pool/main/a/activity-log-manager/activity-log-manager_0.9.7-0ubuntu14_i386.deb Size: 107178 MD5sum: e7ad532c843386fa6237edf88ee089d7 SHA1: 14010573ec43230441ebe2e4673fa45f93daa0f8 SHA256: 6ffd2aebc2bec13f6cdacbf8c8398d4b4107256633994b7dc77a0fe521abbe34 Description: blacklist configuration user interface for Zeitgeist Homepage: https://launchpad.net/activity-log-manager Description-md5: 7d35a32d4ba1123a4581b898008fd386 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: activity-log-manager-control-center Priority: optional Section: utils Installed-Size: 30 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: all Source: activity-log-manager Version: 0.9.7-0ubuntu14 Depends: activity-log-manager Filename: pool/main/a/activity-log-manager/activity-log-manager-control-center_0.9.7-0ubuntu14_all.deb Size: 1686 MD5sum: ffcf6c3906adb7dc1e7f8296fecfb9bd SHA1: 1ab980aea0d4d80b3d719a7f102ef4780a182a26 SHA256: 3eb533b3f9e54bccde4d447835a2487b455b9e2df12da2b7283550afed5bcd67 Description: blacklist configuration for Zeitgeist (transitional package) Homepage: https://launchpad.net/activity-log-manager Description-md5: 15308e023a784b2842ee8146a3cf38fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: adduser Priority: required Section: admin Installed-Size: 644 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Adduser Developers Architecture: all Version: 3.113+nmu3ubuntu3 Replaces: manpages-it (<< 0.3.4-2), manpages-pl (<= 20051117-1) Depends: perl-base (>= 5.6.0), passwd (>= 1:4.0.12), debconf | debconf-2.0 Suggests: liblocale-gettext-perl, perl-modules, ecryptfs-utils (>= 67-1) Filename: pool/main/a/adduser/adduser_3.113+nmu3ubuntu3_all.deb Size: 169360 MD5sum: 98c532cd738cfce59d448ed96ea5c8e7 SHA1: a64caa75eee209bacbc39cbbcb058db80e5042af SHA256: 1461ce364a68db36190a6981ad9e3889c8a5286e809e45c6e34a720905de46a4 Description: add and remove users and groups Multi-Arch: foreign Homepage: http://alioth.debian.org/projects/adduser/ Description-md5: 7965b5cd83972a254552a570bcd32c93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: adium-theme-ubuntu Priority: extra Section: gnome Installed-Size: 160 Maintainer: Ubuntu Artwork Team Architecture: all Version: 0.3.4-0ubuntu1 Filename: pool/main/a/adium-theme-ubuntu/adium-theme-ubuntu_0.3.4-0ubuntu1_all.deb Size: 42432 MD5sum: 6978e4eaad8e4c8ba8d725e8b76e7c19 SHA1: bfe15e682ad0d5afcfe31ad8e6b3041a4de39085 SHA256: b68071f467a7e95513fcb595f96b0eac5610e02311eacf761299fde0fe9afb23 Description: Adium message style for Ubuntu Homepage: http://launchpad.net/adium-theme-ubuntu Description-md5: 314da14682c298664cc6118ca7defcf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: advancecomp Priority: optional Section: utils Installed-Size: 806 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: i386 Version: 1.18-1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Filename: pool/main/a/advancecomp/advancecomp_1.18-1_i386.deb Size: 151294 MD5sum: 6b0bb394c40c238fc11037ff4665ce8e SHA1: d8ae02db0bf40d9bd512810c65d97e2983e3c681 SHA256: 0ff848d4f4da35481b720303721228e751584ae81623d2166bf51fbf649daad5 Description: collection of recompression utilities Homepage: http://advancemame.sourceforge.net/ Description-md5: 45269d7ed6ff6092f699fce2e0061b74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: aide Priority: optional Section: admin Installed-Size: 1356 Maintainer: Ubuntu Developers Original-Maintainer: Aide Maintainers Architecture: i386 Version: 0.16~a2.git20130520-2 Provides: aide-binary Recommends: aide-common (= 0.16~a2.git20130520-2) Conflicts: aide-dynamic, aide-xen Filename: pool/main/a/aide/aide_0.16~a2.git20130520-2_i386.deb Size: 511658 MD5sum: 34d778356f0e8ba22f6cc3016badbbc6 SHA1: 671c5f438643cb81b89a786ee3cc3e3af6a9bc48 SHA256: d2d496d8ec5a05c0b8ce6228e0428d597c28ca2a74ad8fa7c057a6803dabef32 Description: Advanced Intrusion Detection Environment - static binary Built-Using: acl (= 2.2.52-1), attr (= 1:2.4.47-1), e2fsprogs (= 1.42.9-2ubuntu1), eglibc (= 2.18-0ubuntu2), libselinux (= 2.2.1-1ubuntu2), mhash (= 0.9.9.9-4), zlib (= 1:1.2.8.dfsg-1ubuntu1) Homepage: http://aide.sourceforge.net Description-md5: 5cf26f0af8c95254f9ec7920c1214cbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: aide-common Priority: optional Section: admin Installed-Size: 303 Maintainer: Ubuntu Developers Original-Maintainer: Aide Maintainers Architecture: all Source: aide Version: 0.16~a2.git20130520-2 Depends: debconf (>= 0.5) | debconf-2.0, aide (>= 0.15.1-6) | aide-xen (>= 0.15.1-6) | aide-dynamic (>= 0.15.1-6), bsd-mailx | mailx, liblockfile1, ucf (>= 2.0020), initscripts (>= 2.88dsf-13.3) Recommends: cron Filename: pool/main/a/aide/aide-common_0.16~a2.git20130520-2_all.deb Size: 63768 MD5sum: e31367042430e83a61139b6395e5b8c4 SHA1: 0ed317921c59f6bc3f736ef0fdbd07777b80c0d9 SHA256: 156d73c326d440a50acc8bafed3df961454d19f686867047ee0ad3b2822e9c7c Description: Advanced Intrusion Detection Environment - Common files Homepage: http://aide.sourceforge.net Description-md5: 7a8490e442a29581e6cca1b191be3f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: aisleriot Priority: optional Section: games Installed-Size: 2956 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Version: 1:3.10.2-1 Replaces: gnome-games (<< 1:3.1.0), gnome-games-data (<< 1:3.1.0) Depends: dconf-gsettings-backend | gsettings-backend, gconf2 (>= 2.28.1-2), gconf-service, guile-2.0-libs, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.12), librsvg2-2 (>= 2.32.0) Recommends: yelp Suggests: gnome-cards-data Breaks: gnome-games (<< 1:3.1.0), gnome-games-data (<< 1:3.1.0) Filename: pool/main/a/aisleriot/aisleriot_3.10.2-1_i386.deb Size: 584956 MD5sum: cdab312e2ac86e2e766f80ed119b562c SHA1: 6bce3ef9ea5ad8ddde4596c2e7fbfdb8dc3860e0 SHA256: 5acc6b496a2fb1a8d5ac4db64d821567ba02e2eec2932f58b81158959d65a28f Description: GNOME solitaire card game collection Homepage: https://wiki.gnome.org/Aisleriot Description-md5: e7f99df3aa92cf870d335784e155ec33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: alembic Priority: optional Section: python Installed-Size: 879 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.6.2+ds-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-sqlalchemy (>= 0.8~), python-sqlalchemy (<< 0.9), python-mako, libjs-sphinxdoc (>= 1.0) Recommends: python-pkg-resources Filename: pool/main/a/alembic/alembic_0.6.2+ds-1_all.deb Size: 140188 MD5sum: 5a3d3c0db358b45dc688cd10fac14a66 SHA1: d26ba2b4c05fac014a16a53c422c1cc00ae5222d SHA256: 811efc7bf9c1e384b391deed73d68285d2a93d37f4bb403258d0b6b79d94f5cd Description: lightweight database migration tool for SQLAlchemy Homepage: http://www.bitbucket.org/zzzeek/alembic Description-md5: 78c404926f64e6525ea240a527f23143 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: alien Priority: optional Section: admin Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Joey Hess Architecture: all Version: 8.90 Depends: debhelper (>= 7), perl, rpm (>= 2.4.4-2), dpkg-dev, make, cpio, rpm2cpio Suggests: patch, bzip2, lsb-rpm, lintian, lzma Filename: pool/main/a/alien/alien_8.90_all.deb Size: 54096 MD5sum: 5ef475206a42913ab6a490db7a369962 SHA1: 5cb324fcee0222146f50df49edfc45391a8405dc SHA256: 193e5c5b3e47a736f51c7bebf090597fd15a5311cc289b1af69f9549b86aa960 Description: convert and install rpm and other packages Homepage: http://kitenet.net/~joey/code/alien/ Description-md5: 250884c1c7113f08b8c335ac3cf22206 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: alsa-base Priority: optional Section: sound Installed-Size: 502 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian ALSA Maintainers Architecture: all Source: alsa-driver Version: 1.0.25+dfsg-0ubuntu4 Provides: alsa Depends: module-init-tools (>= 3.2.1), linux-sound-base, udev Recommends: alsa-utils Suggests: apmd (>= 3.0.2-1), alsa-oss, oss-compat Filename: pool/main/a/alsa-driver/alsa-base_1.0.25+dfsg-0ubuntu4_all.deb Size: 151320 MD5sum: 979111a2d4d2fcb0da0e76c2146249ce SHA1: 5e3469a8cd4c9fb070b05f49d91d19414d240db6 SHA256: 580a16e83995c22f2796e550dc1198fa53d7c5c6df2f352196e4c828ba37b76f Description: ALSA driver configuration files Multi-Arch: foreign Homepage: http://www.alsa-project.org/ Description-md5: 14d30d1beb8026b3d2636c32c5a92cca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: alsa-utils Priority: optional Section: sound Installed-Size: 2052 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: i386 Version: 1.0.27.2-1ubuntu2 Provides: audio-mixer Depends: lsb-base (>= 3.0-9), kmod, whiptail | dialog, libasound2 (>= 1.0.27), libc6 (>= 2.15), libncursesw5 (>= 5.6+20080119), libsamplerate0 (>= 0.1.7), libtinfo5 Recommends: alsa-base (>= 1.0.15) Filename: pool/main/a/alsa-utils/alsa-utils_1.0.27.2-1ubuntu2_i386.deb Size: 923628 MD5sum: bdb4fd733e3bdf4017658f07abb6a9fb SHA1: 6a820950fdc282fc114dbdff85c87214911c5794 SHA256: 0b7de9dd603dee7878a926b2d9cbbffab9aa028e17f02196b6f717b93755275c Description: Utilities for configuring and using ALSA Multi-Arch: foreign Homepage: http://www.alsa-project.org/ Description-md5: a4e555adf5e969eded25828df3763172 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: amavisd-new Priority: extra Section: mail Installed-Size: 2266 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: all Version: 1:2.7.1-2ubuntu3 Replaces: amavis Provides: amavis Depends: debconf (>= 0.5) | debconf-2.0, adduser (>= 3.34), file, libmime-tools-perl, libconvert-tnef-perl (>= 0.06), libconvert-uulib-perl (>= 1.0.5), libarchive-tar-perl, libarchive-zip-perl (>= 1.14), libmailtools-perl (>= 1.58), libunix-syslog-perl, libnet-server-perl, libtime-hires-perl, libdigest-md5-perl, libmime-base64-perl, libio-stringy-perl, libberkeleydb-perl, libmail-dkim-perl, pax, perl (>= 5.10.1) | libcompress-raw-zlib-perl (>= 2.017), perl Recommends: libnet-patricial-perl Suggests: spamassassin (>= 3.1.0a), clamav, clamav-daemon, lha, arj, unrar, zoo, nomarch, cpio, lzop, cabextract, apt-listchanges (>= 2.35), libnet-ldap-perl (>= 1:0.32), libauthen-sasl-perl, libdbi-perl (>= 1.43), dspam, libmail-dkim-perl (>= 0.31), p7zip, rpm, unrar-free, libsnmp-perl, lhasa, altermime, ripole Conflicts: amavis, logcheck (<= 1.2.62) Filename: pool/main/a/amavisd-new/amavisd-new_2.7.1-2ubuntu3_all.deb Size: 667726 MD5sum: 1910da28708751c7b42bb978816fb88c SHA1: d7e946e0adb6527800f387e62465b7d26fc68322 SHA256: d8832276611ab37bd6aa2021f91296434cc492389bd0dd624be6ab94ac0e0488 Description: Interface between MTA and virus scanner/content filters Description-md5: d95fd9c270e69763b2674a7c7629b731 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: anacron Priority: optional Section: admin Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: i386 Version: 2.3-20ubuntu1 Replaces: pe Depends: libc6 (>= 2.7), debianutils (>= 1.7), init-system-helpers (>= 1.13~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.0-10) Recommends: cron (>= 3.0pl1-43), rsyslog | system-log-daemon Suggests: default-mta | mail-transport-agent, powermgmt-base Filename: pool/main/a/anacron/anacron_2.3-20ubuntu1_i386.deb Size: 25836 MD5sum: da636bc41b14a1ded9eed11d5f526d92 SHA1: 6794ba3b89353d0f799790b8efaba32764015ffa SHA256: 5b83da56f01d32995a3484c69189936674ae4bf899645909d9ef253a3c4da1ce Description: cron-like program that doesn't go by time Homepage: http://sourceforge.net/projects/anacron/ Description-md5: cd9f07726e1ee3bc93fcfdb799520070 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: android-headers Priority: extra Section: libdevel Installed-Size: 602 Maintainer: Ubuntu Developers Architecture: all Version: 4.2.2-2-0ubuntu1 Replaces: android-platform-headers Conflicts: android-platform-headers Filename: pool/main/a/android-headers/android-headers_4.2.2-2-0ubuntu1_all.deb Size: 104452 MD5sum: 32a9594e86c8bf5c0e829255adb82357 SHA1: a99dc74b3303303ab32bab0e4ad70cef8efa27a2 SHA256: a9dcff12ff32162df0abe4f5fb7f4ebb1f63c0268018a6068c04801b4982ce81 Description: Android Platform Headers from AOSP releases Multi-Arch: foreign Description-md5: e1917201fcc7c3db3655fe7302aa91d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: android-tools-fsutils Priority: extra Section: devel Installed-Size: 499 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: android-tools Version: 4.2.2+git20130218-3ubuntu23 Depends: python:any, libc6 (>= 2.11), libselinux1 (>= 2.0.65), zlib1g (>= 1:1.2.3.4) Filename: pool/main/a/android-tools/android-tools-fsutils_4.2.2+git20130218-3ubuntu23_i386.deb Size: 62134 MD5sum: 5009c9eaf4b1c90e7ba65a25794baa8a SHA1: e9b931b1daa29c77f6ead8852ad50f44affcca14 SHA256: 5c5ba503daa760232c30b6937b58bd182c89cee171deb6f6164a6f1ab1fbb06b Description: Android ext4 utilities with sparse support Homepage: http://developer.android.com/guide/developing/tools/adb.html Description-md5: fa313db8b2a8da5624dad8e1f2d2fb34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant Priority: optional Section: java Installed-Size: 2165 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.9.3-2build1 Replaces: ant-doc (<= 1.6.5-1), libant1.6-java Depends: default-jre-headless | java5-runtime-headless | java6-runtime-headless | java7-runtime-headless, libxerces2-java Recommends: ant-optional Suggests: ant-doc, ant-gcj, default-jdk | java-compiler | java-sdk Conflicts: libant1.6-java Breaks: ant-doc (<= 1.6.5-1) Filename: pool/main/a/ant/ant_1.9.3-2build1_all.deb Size: 1868788 MD5sum: de9cb334d44947cf78ce9ca36ad474b4 SHA1: 6cc6e4052b736d8d823ef486e0c531e108a19df6 SHA256: ad49e047a073c7c7dff3451df8f5ddfe9bcaeb7ba847e077dc663ed934f3a67d Description: Java based build tool like make Homepage: http://ant.apache.org Description-md5: 5ceb3b9317ae6734ab188db300acaade Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant-contrib Priority: extra Section: java Installed-Size: 523 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.0~b3+svn177-6 Depends: ant Suggests: libcommons-httpclient-java, libbcel-java, ivy Filename: pool/main/a/ant-contrib/ant-contrib_1.0~b3+svn177-6_all.deb Size: 254894 MD5sum: 55fd21b9bf0477c63ea80b6aa6143eb4 SHA1: b29478d8fd547f71e9e1d3ca6972c8b0c618e95d SHA256: f53548d6f1f34bb337b018107427511a1ebc5e7c7f8098d65dcc9735a0b9ae83 Description: collection of tasks, types and other tools for Apache Ant Enhances: ant Homepage: http://ant-contrib.sourceforge.net Description-md5: 8aabd2378cb21c875bf00bbf4783525c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant-doc Priority: optional Section: doc Installed-Size: 32534 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ant Version: 1.9.3-2build1 Suggests: ant Filename: pool/main/a/ant/ant-doc_1.9.3-2build1_all.deb Size: 1911166 MD5sum: 97732bce5313025f99eaed9d20b66101 SHA1: 304fcffc3f104271d86ea0a49c297af14389c03e SHA256: 77efee5617551743ed4926551cd5a673a9862c1076b2868c2a2c473c95efecc5 Description: Java based build tool like make - API documentation and manual Homepage: http://ant.apache.org Description-md5: 57a585c539546126acd9aa0e320f0d4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant-gcj Priority: optional Section: java Installed-Size: 5824 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: i386 Source: ant Version: 1.9.3-2build1 Depends: ant, libgcj-common (>> 1:4.1.1-13), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.2-1~) Filename: pool/main/a/ant/ant-gcj_1.9.3-2build1_i386.deb Size: 1269466 MD5sum: 0ccb03914d277cb4f110a5faa7c23765 SHA1: dc02e155d98655f7041ed99e9575f09f6c640aa6 SHA256: 9947fd46c8774df86cf15a5729e89cbae0fd3b85033ce5e5b0c6f6ae07696528 Description: Java based build tool like make (GCJ) Homepage: http://ant.apache.org Description-md5: 9817433be612930049ef6ea3cc5f558e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant-optional Priority: optional Section: java Installed-Size: 820 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ant Version: 1.9.3-2build1 Replaces: libant1.6-java Depends: ant (= 1.9.3-2build1) Suggests: ant-optional-gcj, antlr, javacc, junit, jython, libbcel-java (>= 5.0), libbsf-java, libcommons-logging-java, libcommons-net-java, libgnumail-java, libjaxp1.3-java, libjdepend-java, libjsch-java, liblog4j1.2-java, liboro-java, libregexp-java, libxalan2-java (>= 2.4.0-1), libxml-commons-resolver1.1-java Conflicts: libant1.6-java Filename: pool/main/a/ant/ant-optional_1.9.3-2build1_all.deb Size: 301518 MD5sum: 22a05d5dd04deca10c951c0e140b3d82 SHA1: b033badc97e2ee08095075ed56efb2606daaf710 SHA256: e92edd3d8e675bf3b2dc1a68321dbbedd81e268edfad1b1a66009a2e64a24697 Description: Java based build tool like make - optional libraries Homepage: http://ant.apache.org Description-md5: ccdbce1086b391c7aabff03d95a69d02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ant-optional-gcj Priority: optional Section: java Installed-Size: 1122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: i386 Source: ant Version: 1.9.3-2build1 Depends: ant-optional, libgcj-common (>> 1:4.1.1-13), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.2-1~) Filename: pool/main/a/ant/ant-optional-gcj_1.9.3-2build1_i386.deb Size: 233746 MD5sum: b2015425146d515f456dec7f0bbb391d SHA1: 36b2659e9025175cdec983b3408256f655c72f78 SHA256: 35bfaa0dddddf5050775e1ec35c784b0a13bc57b5a12c761ac0ff77160a80c81 Description: Java based build tool like make - optional libraries (GCJ) Homepage: http://ant.apache.org Description-md5: ee76e20b54d4379ceee2f186bd809836 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: anthy Priority: optional Section: utils Installed-Size: 398 Maintainer: Ubuntu Developers Original-Maintainer: NOKUBI Takatsugu Architecture: i386 Version: 9100h-23ubuntu2 Replaces: anthy-cannadic, anthy-cannadic-2ch Depends: anthy-common, libanthy0 (= 9100h-23ubuntu2), libc6 (>= 2.15), debconf (>= 0.5) | debconf-2.0 Suggests: kasumi Conflicts: anthy-cannadic, anthy-cannadic-2ch Filename: pool/main/a/anthy/anthy_9100h-23ubuntu2_i386.deb Size: 124576 MD5sum: 50bd354b39bb17d1ac14dffa421acd73 SHA1: c39cc2f5f503def6884ca349bbcca5b9769bd925 SHA256: 1fc4653a894cf5237e38ecb6bfa650bfea24ccec6808318fc31dcadfbb72f4e6 Description: input method for Japanese - backend, dictionary and utility Homepage: http://anthy.sourceforge.jp/ Description-md5: 7ddaacfe3551af98af20a59f6fd95f97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-usb Package: anthy-common Priority: optional Section: utils Installed-Size: 13045 Maintainer: Ubuntu Developers Original-Maintainer: NOKUBI Takatsugu Architecture: all Source: anthy Version: 9100h-23ubuntu2 Pre-Depends: dpkg (>= 1.15.6~) Conflicts: anthy (<= 9100h-4) Filename: pool/main/a/anthy/anthy-common_9100h-23ubuntu2_all.deb Size: 2505838 MD5sum: 6f907b5bc728f95d9c066405a63118da SHA1: a004194b69d421112b74c9060e0721257a4e8715 SHA256: 9e6192fabcc602c0f177dd3cda0373ce6dc08a35d3b83a42cb6a24832b189be0 Description: input method for Japanese - common files and dictionary Multi-Arch: foreign Homepage: http://anthy.sourceforge.jp/ Description-md5: f52e2748066d910d80910ccdd02d1aad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-usb Package: antlr Priority: optional Section: devel Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.7.7+dfsg-5 Depends: libantlr-java (= 2.7.7+dfsg-5), default-jre-headless | java5-runtime-headless | java6-runtime-headless Filename: pool/main/a/antlr/antlr_2.7.7+dfsg-5_all.deb Size: 5646 MD5sum: 134f75632414cf327096a390a3347f2e SHA1: 368ef93370734cbd2a1b428e5d0601fbde31e912 SHA256: ccc0a578805f049d47592703b52d8126b69193b0b5fa4cceee7918d70432008d Description: language tool for constructing recognizers, compilers etc Homepage: http://www.antlr2.org/ Description-md5: 21a2d2105df695e242797a7829b2c9b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: antlr-doc Priority: optional Section: doc Installed-Size: 1798 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: antlr Version: 2.7.7+dfsg-5 Conflicts: antlr (<< 2.7.6-8) Filename: pool/main/a/antlr/antlr-doc_2.7.7+dfsg-5_all.deb Size: 889346 MD5sum: c2cd9d1c6ed52f3c6e242652046f3a42 SHA1: 57a59e5f3367f48e63b833e49841b82024e06846 SHA256: 69553f75ba1a6f77e670f0592e076172c94245574764e9aba3f5f7da5e40ca61 Description: language tool for constructing recognizers, compilers etc Homepage: http://www.antlr2.org/ Description-md5: 2c7eadb8bcc6ff951791285f19c40007 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apache2 Priority: optional Section: web Installed-Size: 462 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Version: 2.4.7-1ubuntu4 Replaces: apache2.2-common Depends: lsb-base, procps, perl, mime-support, apache2-bin (= 2.4.7-1ubuntu4), apache2-data (= 2.4.7-1ubuntu4) Recommends: ssl-cert Suggests: www-browser, apache2-doc, apache2-suexec-pristine | apache2-suexec-custom, ufw, apache2-utils Conflicts: apache2.2-common Filename: pool/main/a/apache2/apache2_2.4.7-1ubuntu4_i386.deb Size: 87406 MD5sum: 41b7cb7d7ad18eb0ba92a762f0c8e30a SHA1: 95993c6515fe6027b68d7cc5aa03718035aef1d8 SHA256: 5345dbd9b9b588a611d1f036cbce354d6ff5daa8c9caba4a96d0c15705f80ae2 Description: Apache HTTP Server Homepage: http://httpd.apache.org/ Description-md5: 2afad91d50cbfeff68d0e3436b9ce235 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: apache2-bin Priority: optional Section: httpd Installed-Size: 3018 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apache2 Version: 2.4.7-1ubuntu4 Replaces: apache2-mpm-event (<< 2.3~), apache2-mpm-itk (<< 2.3~), apache2-mpm-prefork (<< 2.3~), apache2-mpm-worker (<< 2.3~), apache2.2-bin (<< 2.3~), apache2.2-common, libapache2-mod-macro (<< 1:2.4.6-1~), libapache2-mod-proxy-html (<< 1:2.4.4-2~) Provides: apache2-api-20120211, httpd, httpd-cgi Depends: libapr1 (>= 1.5.0), libaprutil1 (>= 1.5.0), libaprutil1-dbd-sqlite3 | libaprutil1-dbd-mysql | libaprutil1-dbd-odbc | libaprutil1-dbd-pgsql | libaprutil1-dbd-freetds, libaprutil1-ldap, libc6 (>= 2.4), libldap-2.4-2 (>= 2.4.7), libpcre3, libssl1.0.0 (>= 1.0.1), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4), perl Suggests: www-browser, apache2-doc, apache2-suexec-pristine | apache2-suexec-custom Conflicts: apache2.2-bin (<< 2.3~), apache2.2-common Breaks: libapache2-mod-macro (<< 1:2.4.6-1~), libapache2-mod-proxy-html (<< 1:2.4.4-2~) Filename: pool/main/a/apache2/apache2-bin_2.4.7-1ubuntu4_i386.deb Size: 824188 MD5sum: 771f721886614b3fd57c8bfac1bb392e SHA1: bcf5b6d4ebd06555e02276f48ef6071d993e9488 SHA256: 71e81b543fccb44e2a855114d49549099213e097e4bcce11ab3adefd9b9457ab Description: Apache HTTP Server (binary files and modules) Homepage: http://httpd.apache.org/ Description-md5: 768126d098ab290dd8fd72553414fb1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: apache2-data Priority: optional Section: httpd Installed-Size: 703 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: all Source: apache2 Version: 2.4.7-1ubuntu4 Replaces: apache2.2-common Conflicts: apache2.2-common Filename: pool/main/a/apache2/apache2-data_2.4.7-1ubuntu4_all.deb Size: 160074 MD5sum: b2a697ee4f8347ce8907ee21a70d97db SHA1: c132dad5b76f4c80c39be238e72b2ae859d5af01 SHA256: 30cd8b33825e01ca2cde2117d49e8d1c5efd6c6c0cf225513562aed37ba4c5cd Description: Apache HTTP Server (common files) Multi-Arch: foreign Homepage: http://httpd.apache.org/ Description-md5: 43b9030fc3d3460e30654e95c72c1277 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: apache2-dbg Priority: extra Section: debug Installed-Size: 6528 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apache2 Version: 2.4.7-1ubuntu4 Depends: apache2, apache2-bin (= 2.4.7-1ubuntu4) Filename: pool/main/a/apache2/apache2-dbg_2.4.7-1ubuntu4_i386.deb Size: 1853198 MD5sum: 1d55bbdd98c4378379bc6aa27f4c1399 SHA1: 310b5089b41f902f776b438532cc3c3e56241c56 SHA256: ca3750d53279a7712f808a95195febd395128c54529e65fdfd8d6d2ba8342f32 Description: Apache debugging symbols Homepage: http://httpd.apache.org/ Description-md5: 9631d879f838030d45d1d561f55abee1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apache2-dev Priority: optional Section: httpd Installed-Size: 922 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apache2 Version: 2.4.7-1ubuntu4 Replaces: apache2-prefork-dev, apache2-threaded-dev Provides: apache2-prefork-dev, apache2-threaded-dev, dh-apache2 Depends: openssl, libapr1-dev, libaprutil1-dev, debhelper (>= 9), perl Conflicts: apache2-prefork-dev, apache2-threaded-dev Filename: pool/main/a/apache2/apache2-dev_2.4.7-1ubuntu4_i386.deb Size: 166624 MD5sum: 14d82220828baa2ff66e5c83066e9fa2 SHA1: fd30a58dc5471e251af36985bcce4f194f06bd04 SHA256: 489c8c5da8c6f8d8da6e932aa4f6aa1da9dbbf960cad8f7e07c1fba19a882b5a Description: Apache HTTP Server (development headers) Homepage: http://httpd.apache.org/ Description-md5: 33ccaee882001bf3dff7d3a2f1df3b30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apache2-doc Priority: optional Section: doc Installed-Size: 19278 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: all Source: apache2 Version: 2.4.7-1ubuntu4 Recommends: apache2 Filename: pool/main/a/apache2/apache2-doc_2.4.7-1ubuntu4_all.deb Size: 2572800 MD5sum: b5fa091de85f2bc289bdde4f8052ce06 SHA1: 1bcc2e095c29d23bf03a65787bc8c1d63a745f8e SHA256: b7fba00ddd8fb685ecded34517dd41988ae7fe4b7a0ed76eaf0a35f0fa574081 Description: Apache HTTP Server (on-site documentation) Homepage: http://httpd.apache.org/ Description-md5: 35791cd71bc2556ea2bde4e6294a5ad3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apache2-mpm-event Priority: optional Section: web Installed-Size: 22 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apache2 Version: 2.4.7-1ubuntu4 Provides: httpd, httpd-cgi Depends: apache2 (= 2.4.7-1ubuntu4) Filename: pool/main/a/apache2/apache2-mpm-event_2.4.7-1ubuntu4_i386.deb Size: 1454 MD5sum: ae105f66e51eebcc1f04b3a17461143d SHA1: a685c5a36f4f9fc3326694a643cd6056b666b228 SHA256: d92af929925414546d4833b3d9010382a0437eb5b0b058172d9559dbd8465f32 Description: transitional event MPM package for apache2 Homepage: http://httpd.apache.org/ Description-md5: e8836e8c2c34524fb11cc83011803e4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apache2-mpm-prefork Priority: optional Section: net Installed-Size: 22 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apache2 Version: 2.4.7-1ubuntu4 Provides: httpd, httpd-cgi Depends: apache2 (= 2.4.7-1ubuntu4) Filename: pool/main/a/apache2/apache2-mpm-prefork_2.4.7-1ubuntu4_i386.deb Size: 1456 MD5sum: 3ab0e3a0c30d4330cfc88a1be3bf8825 SHA1: 05d17cb9d7cb952fc2f3c39c3231b2a1b89496bc SHA256: 7b477e443b8afd5cc27fcfbc330b0768a06c66f3b93813a6d1889bf5a83d56e4 Description: transitional prefork MPM package for apache2 Homepage: http://httpd.apache.org/ Description-md5: 2a27f385dd2020da306403c3748102b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: apache2-mpm-worker Priority: optional Section: net Installed-Size: 22 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apache2 Version: 2.4.7-1ubuntu4 Provides: httpd, httpd-cgi Depends: apache2 (= 2.4.7-1ubuntu4) Filename: pool/main/a/apache2/apache2-mpm-worker_2.4.7-1ubuntu4_i386.deb Size: 1458 MD5sum: d89d227fd58706bd381834844e2b2602 SHA1: cbbbdb2d88daeefa5fb3652fc677e588a7a1f7dd SHA256: a2f2889bcacfa6c35b6dfb885158050efe3a7232ea08e5446a9989408ce5a395 Description: transitional worker MPM package for apache2 Homepage: http://httpd.apache.org/ Description-md5: 4ed48ca29196089175ff0720834d5528 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apache2-utils Priority: optional Section: net Installed-Size: 327 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apache2 Version: 2.4.7-1ubuntu4 Depends: libapr1 (>= 1.4.8-2~), libaprutil1 (>= 1.5.0), libc6 (>= 2.4), libssl1.0.0 (>= 1.0.1) Filename: pool/main/a/apache2/apache2-utils_2.4.7-1ubuntu4_i386.deb Size: 83700 MD5sum: df5397a0d172ee4ce0d73d97e4e2500f SHA1: 8389d2fd1a7deafba36dc9c0d43abdbf9c1570d7 SHA256: 0e6c362096610f8d462c50214429e1414f4bf21fe4e36570c5ece057f03bf96d Description: Apache HTTP Server (utility programs for web servers) Multi-Arch: foreign Homepage: http://httpd.apache.org/ Description-md5: 3b2c95f65bdd470106fa63104997fa7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apache2.2-bin Priority: optional Section: httpd Installed-Size: 22 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apache2 Version: 2.4.7-1ubuntu4 Depends: apache2-bin (>= 2.3~) Breaks: gnome-user-share (<< 3.8.0-2~), libapache2-mod-dnssd (<< 0.6-3.1~) Filename: pool/main/a/apache2/apache2.2-bin_2.4.7-1ubuntu4_i386.deb Size: 1476 MD5sum: ff3ef9fc7424cb6b318a1a7ae4e65502 SHA1: 9907da003dbdc0df40221371535761111d95fd5c SHA256: 83e7e2fa980a41b53e0fadd1e42f5b575b624a810ef8b86c500ed885eeabf229 Description: Transitional package for apache2-bin Homepage: http://httpd.apache.org/ Description-md5: 36c293ebb5b77f14b95215fd3ffa7760 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apg Priority: optional Section: admin Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Marc Haber Architecture: i386 Version: 2.2.3.dfsg.1-2ubuntu1 Depends: libc6 (>= 2.4) Filename: pool/main/a/apg/apg_2.2.3.dfsg.1-2ubuntu1_i386.deb Size: 42592 MD5sum: ce430edbbd6451fb1654f4d6070342d8 SHA1: 4ec8eb4e4e7f40e96f6bc2b25e5a93ae161cdade SHA256: 2f7b46c0b6c59bbc38eb7fb238e8d2c53351c7ed28f74870c132cd53e98a73fb Description: Automated Password Generator - Standalone version Description-md5: a5b52a98c91c8de997b830850fb4fb58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: app-install-data Priority: optional Section: gnome Installed-Size: 36228 Maintainer: Michael Vogt Architecture: all Source: app-install-data-ubuntu Version: 14.04.0 Filename: pool/main/a/app-install-data-ubuntu/app-install-data_14.04.0_all.deb Size: 12609342 MD5sum: 87817ca38286bd9572325a6e20473b15 SHA1: a3e83b05d21202eb785b16c3f8f0623b4e324c03 SHA256: 7f90992cace9d15d42e44834447bd29d11486b3049c92aa508467822f68a09ef Description: Ubuntu applications (data files) Description-md5: f60778a916e4cfc34f4e6d08cae5fa94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: app-install-data-partner Priority: optional Section: x11 Installed-Size: 39 Maintainer: Michael Vogt Architecture: all Version: 13.04 Filename: pool/main/a/app-install-data-partner/app-install-data-partner_13.04_all.deb Size: 2680 MD5sum: 02eaca93dca393694dcb0a88c183a851 SHA1: 4e4d8248d2afa8be506e2cd9b21149cd7cdc5f33 SHA256: 5cd9f7a0f220d8308d0b26321c0aff6ca39dca81eb4955ecf4728e8bcf2585e4 Description: Application Installer (data files for partner applications/repositories) Description-md5: e9d7d86a1ed75f4133d63f90545e9dbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: apparmor Priority: standard Section: admin Installed-Size: 1185 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Version: 2.8.95~2430-0ubuntu5 Replaces: apparmor-parser, apparmor-utils (<< 2.8.0-0ubuntu28), libapache2-mod-apparmor (<< 2.5.1-0ubuntu3) Depends: libc6 (>= 2.8), debconf (>= 0.5) | debconf-2.0, python3, libapparmor-perl, lsb-base, initramfs-tools, debconf Suggests: apparmor-profiles, apparmor-docs, apparmor-utils Breaks: apparmor-easyprof-ubuntu (<< 1.1.14), apparmor-utils (<< 2.8.0-0ubuntu28), libapache2-mod-apparmor (<< 2.5.1-0ubuntu3), libvirt-bin (<< 1.2.2-0ubuntu9~), lightdm (<< 1.9.14-0ubuntu2~), lxc (<< 1.0.2-0ubuntu2~) Filename: pool/main/a/apparmor/apparmor_2.8.95~2430-0ubuntu5_i386.deb Size: 328342 MD5sum: 2d21a3f7c0685aac2bf3d6dcf576b127 SHA1: b67e6b97df12ad230ec0213d6c6dca1e1b61810a SHA256: 40fd2c900ff7fe4d507996746b336229749cb2d77a43c2eff7f8bbf91bb49c70 Description: User-space parser utility for AppArmor Homepage: http://apparmor.net/ Description-md5: 35c06b71e31a437828d84b93a41bd493 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: apparmor-docs Priority: extra Section: doc Installed-Size: 293 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: apparmor Version: 2.8.95~2430-0ubuntu5 Filename: pool/main/a/apparmor/apparmor-docs_2.8.95~2430-0ubuntu5_all.deb Size: 241038 MD5sum: cc991fd96d85f1806b048e5a13a966c1 SHA1: 1a7a8c89ad80f5cb253ef0a0a050b820133065fc SHA256: 42c43a8125ba7e6fd720a1312064178557e1333a1ca1537560746fc3fed5c6a0 Description: Documentation for AppArmor Homepage: http://apparmor.net/ Description-md5: ca238fbee0c75e966c57c3649cd3bc9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apparmor-easyprof Priority: extra Section: admin Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: apparmor Version: 2.8.95~2430-0ubuntu5 Replaces: apparmor-utils (<< 2.8.0-0ubuntu14) Depends: python3.4, python3-apparmor Breaks: apparmor-utils (<< 2.8.0-0ubuntu14) Filename: pool/main/a/apparmor/apparmor-easyprof_2.8.95~2430-0ubuntu5_all.deb Size: 9832 MD5sum: 4efbb58616eeb63fd4b3ec74ca3ff3a8 SHA1: 8c3f3f865c25eeb0b00f9b44741bff6f65c3218f SHA256: 20493663b6da58ea3fbca95da3f1408ed483dca507435bb8dcdca76c0cf00d3e Description: AppArmor easyprof profiling tool Multi-Arch: foreign Homepage: http://apparmor.net/ Description-md5: e82ab0ed04f6b741d056bf09b6fa0a55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apparmor-easyprof-ubuntu Priority: optional Section: admin Installed-Size: 174 Maintainer: Jamie Strandboge Architecture: all Version: 1.1.16 Depends: apparmor (>= 2.8.95~2430-0ubuntu4) Filename: pool/main/a/apparmor-easyprof-ubuntu/apparmor-easyprof-ubuntu_1.1.16_all.deb Size: 15966 MD5sum: 657b98f1be9a2420de7343cebaaf366b SHA1: 6a25baef800a079752654a48ca7f5c342a53bd2e SHA256: a4761f4d1631f29712b6e982a32460565e6c212ae9e571036d73b0e779bbe9c8 Description: AppArmor easyprof templates for Ubuntu Description-md5: 7e6a2e2f170348400aa571f1e2095040 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apparmor-notify Priority: extra Section: admin Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: libapparmor-perl, perl Suggests: libnotify-bin Filename: pool/main/a/apparmor/apparmor-notify_2.8.95~2430-0ubuntu5_all.deb Size: 11564 MD5sum: 127111ca0c723bb413d251d0d940fc17 SHA1: d610c37842d165293d1f572a95b7107bfdee2ca4 SHA256: da257034b93b1fab11db7ea2eccf87e3562603388263d414cd9358d819436bfb Description: AppArmor notification system Homepage: http://apparmor.net/ Description-md5: e52281d3d6b2d671b6cf682c76155a65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apparmor-profiles Priority: extra Section: admin Installed-Size: 282 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: apparmor Version: 2.8.95~2430-0ubuntu5 Recommends: apparmor Filename: pool/main/a/apparmor/apparmor-profiles_2.8.95~2430-0ubuntu5_all.deb Size: 33304 MD5sum: 44d85bc8dcf83cf56b5105abba2f13f5 SHA1: 0c30f35d2529908fa0a698e46a278435deb3fd09 SHA256: 71ec15447c931aa13b56cb544c74f5497ae794770aef5f63aca25ccb798575e7 Description: Profiles for AppArmor Security policies Homepage: http://apparmor.net/ Description-md5: dd1ced2ad1af9effef302648735d913e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apparmor-utils Priority: optional Section: admin Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: apparmor (>= 2.6.1-4ubuntu1), libapparmor-perl, python3-apparmor, python3 Suggests: apparmor-docs, vim-addon-manager Filename: pool/main/a/apparmor/apparmor-utils_2.8.95~2430-0ubuntu5_i386.deb Size: 52730 MD5sum: 6446746a936638d2905a2a60a383d351 SHA1: 80189619e1a364341799409d76b2ccfa12e74a4e SHA256: 9857169c6663d403849e21061db4112943f56393e83ed59fe418296344b9a699 Description: Utilities for controlling AppArmor Homepage: http://apparmor.net/ Description-md5: 0db7c88e5f68968b04bd8031570a8ed9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: appmenu-qt Priority: optional Section: x11 Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Version: 0.2.7+14.04.20140305-0ubuntu1 Depends: libc6 (>= 2.1.3), libdbusmenu-qt2, libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8), libqtcore4 (>= 4:4.8), libqtgui4 (>= 4:4.8), libstdc++6 (>= 4.1.1) Filename: pool/main/a/appmenu-qt/appmenu-qt_0.2.7+14.04.20140305-0ubuntu1_i386.deb Size: 22380 MD5sum: 2e303e723fbaedc7bd9af5de34de6c7b SHA1: e42e2ff667f4412a74420408f7846db4f349af54 SHA256: 00f896841bfb409b76bf568b90cb1db0d10c199c32c63d95fa12fd12f391cb42 Description: application menu for Qt Homepage: https://launchpad.net/appmenu-qt Description-md5: ee9da32936e6c6776fb2c769b8cb5dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb Package: appmenu-qt5 Priority: extra Section: kde Installed-Size: 141 Maintainer: Ubuntu Developers Architecture: i386 Version: 0.3.0+14.04.20140415-0ubuntu1 Depends: libc6 (>= 2.1.3), libdbusmenu-qt5, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.8.0), libqt5core5a (>= 5.0.2), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), libx11-6, qtbase-abi-5-2-1 Suggests: libqt5core5, libqt5gui5 Filename: pool/main/a/appmenu-qt5/appmenu-qt5_0.3.0+14.04.20140415-0ubuntu1_i386.deb Size: 30088 MD5sum: 262e693613d5000a7cce8fdc389072bc SHA1: 6d91a3684fb85bcbe72f1dc4b5da22b4c95dd9cf SHA256: a0ea3045dfcc9b449a69bb70db2192e3753b896d3a48c227e452500f809eff53 Description: application menu for Qt5 Homepage: https://launchpad.net/appmenu-qt5 Description-md5: 82a58cac5babc8ae5fe18577980518dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: apport Priority: optional Section: utils Installed-Size: 1264 Maintainer: Martin Pitt Architecture: all Version: 2.14.1-0ubuntu3 Replaces: python-apport (<< 2.2-0ubuntu1) Depends: python3, python3-apport (>= 2.14.1-0ubuntu3), lsb-base (>= 3.0-6), python3-gi, gir1.2-glib-2.0 (>= 1.29.17), sysv-rc (>= 2.86.ds1-14.1ubuntu2), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Recommends: apport-symptoms, policykit-1 Suggests: apport-gtk | apport-kde Breaks: python-apport (<< 2.2-0ubuntu1) Filename: pool/main/a/apport/apport_2.14.1-0ubuntu3_all.deb Size: 177976 MD5sum: ca2867977ca6f40002f5058b08672863 SHA1: d1f3a2e2647e3c8e6f9a14f78cf6e573af08f5e7 SHA256: d8afc4820821c12e86e319ca931db373ac66947b19b4fbd824611a706873d0f0 Description: automatically generate crash reports for debugging Homepage: https://wiki.ubuntu.com/Apport Description-md5: c04626471654f9246cf5e28b560d262e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: apport-gtk Priority: optional Section: gnome Installed-Size: 203 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python3, python3-apport (>= 2.14.1-0ubuntu3), gir1.2-gtk-3.0 (>= 3.1.90), gir1.2-wnck-3.0, python3-gi, apport (>= 0.41), procps, x-terminal-emulator Recommends: update-notifier, gdb | gdb-minimal Filename: pool/main/a/apport/apport-gtk_2.14.1-0ubuntu3_all.deb Size: 9554 MD5sum: f23ea0f89ac24a1b409e69d97ee3d50e SHA1: 147b100aae8d7a5147b5577885b2c96e645f8600 SHA256: 1e355247fdc7f175756f59e34f07f99631c9810109ab33873ad215be1466f088 Description: GTK+ frontend for the apport crash report system Homepage: https://wiki.ubuntu.com/Apport Description-md5: 2f45e17d5bf22355d7921dba196ae6dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: apport-retrace Priority: optional Section: devel Installed-Size: 180 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python (>= 2.7), python3, python-apport (>= 2.14.1-0ubuntu3), apt, binutils, dpkg-dev, gdb, libc6-dbg | libc6-dbgsym | libc-dbg Suggests: gdb-multiarch Filename: pool/main/a/apport/apport-retrace_2.14.1-0ubuntu3_all.deb Size: 12236 MD5sum: 704bc65174009bb2760da8b45486ea40 SHA1: 93465188ab170e4e964e08740871b588d429c561 SHA256: 4eaae9c622c62af16edb58467329ce000b6c877ca43b209d6f95a9d666bf1f52 Description: tools for reprocessing Apport crash reports Homepage: https://wiki.ubuntu.com/Apport Description-md5: 7608c287131a28c4611767ba61f02050 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apport-symptoms Priority: optional Section: utils Installed-Size: 75 Maintainer: Ubuntu Developers Architecture: all Version: 0.20 Recommends: apport Filename: pool/main/a/apport-symptoms/apport-symptoms_0.20_all.deb Size: 14198 MD5sum: 089a296892f64423dcd98987979c871e SHA1: 6529a657af16afe87fc592f86fa4cec7db233e3d SHA256: 014f0a1fbe238342efc4eacba64c431271de5c01ab1e9dbea5e831b958136c1c Description: symptom scripts for apport Homepage: https://wiki.ubuntu.com/Apport Description-md5: 685dc189a71c0847d5bc525d477c0d11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: apt Priority: important Section: admin Installed-Size: 3492 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: i386 Version: 1.0.1ubuntu2 Replaces: manpages-it (<< 2.80-4~), manpages-pl (<< 20060617-3~), openjdk-6-jdk (<< 6b24-1.11-0ubuntu1~), sun-java5-jdk (>> 0), sun-java6-jdk (>> 0) Depends: libapt-pkg4.12 (>= 0.9.16), libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), ubuntu-keyring, gnupg Suggests: aptitude | synaptic | wajig, dpkg-dev (>= 1.17.2), apt-doc, python-apt Conflicts: python-apt (<< 0.7.93.2~) Breaks: manpages-it (<< 2.80-4~), manpages-pl (<< 20060617-3~), openjdk-6-jdk (<< 6b24-1.11-0ubuntu1~), sun-java5-jdk (>> 0), sun-java6-jdk (>> 0) Filename: pool/main/a/apt/apt_1.0.1ubuntu2_i386.deb Size: 953600 MD5sum: 6119a5bee5e1a6e9ca396879b5cac90c SHA1: 73487e62425c7bd9d288e2c5f0d32ddfcf058f9f SHA256: 464b8bbf3130411fbe08acae0ac674bb181d2b4309ebe29cb392e9c35c37b9a0 Description: commandline package manager Description-md5: 9fb97a88cb7383934ef963352b53b4a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: apt-clone Priority: extra Section: admin Installed-Size: 89 Maintainer: Michael Vogt Architecture: all Version: 0.3.1~ubuntu11 Depends: python3:any (>= 3.3.2-2~), python3, lsb-release, python3-apt Recommends: dpkg-repack Filename: pool/main/a/apt-clone/apt-clone_0.3.1~ubuntu11_all.deb Size: 12512 MD5sum: ab07fe381aa60cd82dfd0ba52e8ef16a SHA1: b60164f7722ce4bb7c6f94a5629505ee7e73ff56 SHA256: 00541332ecba53e0ed8cc8d45578b11133900c169f3412742992848703d6e74f Description: Script to create state bundles Homepage: https://launchpad.net/apt-clone Description-md5: 3b7312fdf94d9d4feb2e22a6ca187600 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: apt-doc Priority: optional Section: doc Installed-Size: 671 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: all Source: apt Version: 1.0.1ubuntu2 Filename: pool/main/a/apt/apt-doc_1.0.1ubuntu2_all.deb Size: 171780 MD5sum: 91c09ea0185c33a7a200827a9b96d875 SHA1: d8c9e63768c879876230491a6cd7da2eed73c8a2 SHA256: 3e547a4b8c1d8edfb9714c554c1c532f0d2d916a84de52eabb24869cc6f1dfb3 Description: documentation for APT Description-md5: bc2b838ed28e60af95d78926380a3300 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: apt-listchanges Priority: optional Section: utils Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Sandro Tosi Architecture: all Version: 2.85.13ubuntu2 Depends: python:any (>= 2.7.1-0ubuntu2), apt (>= 0.8.9), python-apt (>= 0.7.93), ucf (>= 0.28), debianutils (>= 2.0.2), debconf (>= 0.5) | debconf-2.0 Suggests: x-terminal-emulator, www-browser, python-glade2, python-gtk2, default-mta | mail-transport-agent Filename: pool/main/a/apt-listchanges/apt-listchanges_2.85.13ubuntu2_all.deb Size: 46934 MD5sum: cf87a443c9dddd0c0f583773019bcab0 SHA1: 20d463341f2339f1aae65d1dc05654c418564dd7 SHA256: 14a9765497ef18f4d334a7a0ced64e41acf2c077d9cface2500f939d4e290880 Description: package change history notification tool Description-md5: ff242d11e25a826706c61be7ebf92ad4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apt-transport-https Priority: standard Section: admin Installed-Size: 227 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: i386 Source: apt Version: 1.0.1ubuntu2 Depends: libapt-pkg4.12 (>= 0.8.16~exp9), libc6 (>= 2.4), libcurl3-gnutls (>= 7.16.2), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Filename: pool/main/a/apt/apt-transport-https_1.0.1ubuntu2_i386.deb Size: 25388 MD5sum: 1f03711aa947f53e860d7109698e8d24 SHA1: ffe68a969e7d02affd05c5404f0b25b19387aaa2 SHA256: 7376b07e81c9d6aeadde6fefa936042b26c2175972a7810294ad42dddb779c96 Description: https download transport for APT Description-md5: 3365a6b50bd0e4eef6e176a80c735f43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: apt-utils Priority: important Section: admin Installed-Size: 648 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: i386 Source: apt Version: 1.0.1ubuntu2 Depends: libapt-inst1.5 (>= 0.9.15.4), libapt-pkg4.12 (>= 0.9.16), libc6 (>= 2.4), libdb5.3, libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Filename: pool/main/a/apt/apt-utils_1.0.1ubuntu2_i386.deb Size: 172154 MD5sum: 9cc843e81a637b906270d9ff5535bc71 SHA1: 48876f0c7e3157e5e8e71c8d1e09b6f63b4db714 SHA256: d51666eb39ed3b5f749144b13daaf0df642aff909f58b67a87c0bcc9ac982ff2 Description: package management related utility programs Description-md5: 16cce27ec0fa5c8589595434ab59868e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: apt-xapian-index Priority: optional Section: admin Installed-Size: 328 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: all Version: 0.45ubuntu4 Depends: python (>= 2.7), python-xapian (>= 1.0.2), python-apt (>= 0.7.93.2), python-debian (>= 0.1.14), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: app-install-data, python-xdg Filename: pool/main/a/apt-xapian-index/apt-xapian-index_0.45ubuntu4_all.deb Size: 56368 MD5sum: 996a7231edaa325e96da81209386b4eb SHA1: bf1bdd19c1792bc7176af49dc366c634c27f38fe SHA256: 0085663c41c5aefa1d5d6871309e958c2495fc8ccb452910059969df2afac34c Description: maintenance and search tools for a Xapian index of Debian packages Homepage: http://www.enricozini.org/sw/apt-xapian-index/ Description-md5: 4d067fd0ee3f7e05edcd4cf184b9376f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: aptdaemon Priority: extra Section: admin Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Version: 1.1.1-1ubuntu5 Depends: python3:any (>= 3.2~), python3, gir1.2-glib-2.0, python3-aptdaemon (= 1.1.1-1ubuntu5), python3-gi, policykit-1 Recommends: lintian Breaks: software-center (<< 1.1.21) Filename: pool/main/a/aptdaemon/aptdaemon_1.1.1-1ubuntu5_all.deb Size: 13420 MD5sum: 31d3896b6d03e2f5daab6c9d745ed451 SHA1: cbe8a0e776657a53de430419b9c0221e6687b7d0 SHA256: c66cd594c0d40c57fd9cd794a82a1b703d11903f69ca91577aec92dfb61ba186 Description: transaction based package management service Homepage: https://launchpad.net/aptdaemon Description-md5: 5ed476246aefb12d0c1b0deb4818778b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: aptdaemon-data Priority: extra Section: admin Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Replaces: python-aptdaemon-gtk (<= 0.41+bzr580-0ubuntu1) Filename: pool/main/a/aptdaemon/aptdaemon-data_1.1.1-1ubuntu5_all.deb Size: 161488 MD5sum: beab625ea75fcbf8e8ba2049e320aa5b SHA1: 93ba7679f7d41f8400ed9aedc50cbc6ba8930789 SHA256: 6088a0c71884bcb1d51a7e2bd414af1e37e2b258e9b0b3ecc16f3e9eba37ca4f Description: data files for clients Homepage: https://launchpad.net/aptdaemon Description-md5: 3985974f0d80501bf717f4eee701d6e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: aptitude Priority: optional Section: admin Installed-Size: 4480 Maintainer: Ubuntu Developers Original-Maintainer: Aptitude Development Team Architecture: i386 Version: 0.6.8.2-1ubuntu4 Depends: aptitude-common (= 0.6.8.2-1ubuntu4), libapt-pkg4.12 (>= 0.9.11), libboost-iostreams1.54.0, libc6 (>= 2.4), libcwidget3, libept1.4.12, libgcc1 (>= 1:4.1.1), libncursesw5 (>= 5.6+20070908), libsigc++-2.0-0c2a (>= 2.0.2), libsqlite3-0 (>= 3.6.5), libstdc++6 (>= 4.6), libtinfo5, libxapian22 Recommends: sensible-utils, apt-xapian-index, libparse-debianchangelog-perl Suggests: aptitude-doc-en | aptitude-doc, tasksel, debtags Conflicts: ia32-apt-get (<< 22) Filename: pool/main/a/aptitude/aptitude_0.6.8.2-1ubuntu4_i386.deb Size: 1356496 MD5sum: 24c8fc5cbd5a8e3b7a0ea28039a02bdc SHA1: 3af83b9c163027429352bd31569d78f257b1f2d1 SHA256: 1f16e99f3cea80ae8845f2237db40ef59617cbaace4020b89a7238b31c600b2e Description: terminal-based package manager Homepage: http://aptitude.alioth.debian.org/ Description-md5: 6077c8b6794c43d6b34dfc9169fe4ee5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: aptitude-common Priority: optional Section: admin Installed-Size: 4180 Maintainer: Ubuntu Developers Original-Maintainer: Aptitude Development Team Architecture: all Source: aptitude Version: 0.6.8.2-1ubuntu4 Replaces: aptitude (<< 0.6.8-1) Recommends: aptitude Breaks: aptitude (<< 0.6.8-1) Filename: pool/main/a/aptitude/aptitude-common_0.6.8.2-1ubuntu4_all.deb Size: 699846 MD5sum: 2754aaf46ec1afa1625930ab94038a07 SHA1: acb6386f681912d4518550eaf387a3c838c00aac SHA256: 2f608d5d7694695264b0460c9459cc072300a63860787096abc14bfc8cd50ff4 Description: architecture indepedent files for the aptitude package manager Homepage: http://aptitude.alioth.debian.org/ Description-md5: 9a6108ce73d52516dd3b6e88cb5c0961 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: aptitude-dbg Priority: extra Section: devel Installed-Size: 18483 Maintainer: Ubuntu Developers Original-Maintainer: Aptitude Development Team Architecture: i386 Source: aptitude Version: 0.6.8.2-1ubuntu4 Depends: aptitude (= 0.6.8.2-1ubuntu4) Recommends: libcwidget3-dbg Filename: pool/main/a/aptitude/aptitude-dbg_0.6.8.2-1ubuntu4_i386.deb Size: 18001726 MD5sum: 9254bf4a0654a915e495dcb7fcad9322 SHA1: aa73db068ff6c2d1ab480b37855516079dc3df43 SHA256: 0ffb77173331a9312daef6ef33c39ff08623f84c732b882f78a93eb3f11dbe9b Description: Debug symbols for the aptitude package manager Homepage: http://aptitude.alioth.debian.org/ Description-md5: 1113502e17f6968feafa2dabfeba01a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: aptitude-doc-en Priority: optional Section: admin Installed-Size: 1214 Maintainer: Ubuntu Developers Original-Maintainer: Aptitude Development Team Architecture: all Source: aptitude Version: 0.6.8.2-1ubuntu4 Provides: aptitude-doc Suggests: aptitude Filename: pool/main/a/aptitude/aptitude-doc-en_0.6.8.2-1ubuntu4_all.deb Size: 263610 MD5sum: f1b32fc1e376d03b1262d5c85bad6c22 SHA1: 2b6ff86d9df945d2647b2bd30cba5ed23d229ae2 SHA256: d3995081fe3d9298d225cd1eeeafcbe1af12f1818c496896ee1b045c2e07e80c Description: English manual for aptitude, a terminal-based package manager Homepage: http://aptitude.alioth.debian.org/ Description-md5: 2d2da927067ef4b395df37dd2ad5ed3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: apturl Priority: optional Section: admin Installed-Size: 106 Maintainer: Michael Vogt Architecture: i386 Version: 0.5.2ubuntu4 Depends: python3:any (>= 3.3.2-2~), python3, gconf2 (>= 2.28.1-2), apturl-common (= 0.5.2ubuntu4), gnome-icon-theme (>= 2.14.0-1), python3-gi, software-properties-gtk, python3-aptdaemon, python3-aptdaemon.gtk3widgets, gir1.2-gtk-3.0, gir1.2-webkit-3.0 Suggests: libgtk2-perl (>= 1:1.130) Filename: pool/main/a/apturl/apturl_0.5.2ubuntu4_i386.deb Size: 8800 MD5sum: 9d98be6f59f502b5507f02cbf337576c SHA1: b08195f701571229ed63ada6170e001e628ec79c SHA256: 88d889dd4303db323881035ec991ba7dc13c574d5d98b3026e0d26e7a31184a6 Description: install packages using the apt protocol - GTK+ frontend Description-md5: 0ff87045fbbd2d7c44b70b7ac3d409e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: apturl-common Priority: optional Section: admin Installed-Size: 168 Maintainer: Michael Vogt Architecture: i386 Source: apturl Version: 0.5.2ubuntu4 Replaces: apturl (<< 0.3.6ubuntu2) Depends: python3:any (>= 3.3.2-2~), python3-apt, python3-update-manager Filename: pool/main/a/apturl/apturl-common_0.5.2ubuntu4_i386.deb Size: 11308 MD5sum: fd5e139a37e2786b664adc91537ca658 SHA1: 107c25329957a41f960547a12fdeb5af991724d8 SHA256: 635458e3d1a8d0c904bd6fcf06bd51930b6061d7d04015a8fd40121cec78813f Description: install packages using the apt protocol - common data Description-md5: 1a9a3582fbd6f80810cf5bf2bc1a5249 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: archdetect-deb Priority: optional Section: utils Installed-Size: 82 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: i386 Source: hw-detect Version: 1.95ubuntu2 Depends: libc6 (>= 2.3.4), libdebian-installer4 (>= 0.88ubuntu3) Filename: pool/main/h/hw-detect/archdetect-deb_1.95ubuntu2_i386.deb Size: 5740 MD5sum: e884c1159ccf0207342691c9af9412c1 SHA1: fd18df767fafc5257e8ae52240ade308fa7018ce SHA256: a09f501b5c97190c3f4255c1c5dea357a7520000c5de1aa8525264f3a5031422 Description: Hardware architecture detector Description-md5: 765a228bfe63c8b4154e609b8f7c1823 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: asciidoc Priority: optional Section: text Installed-Size: 2314 Maintainer: Ubuntu Developers Original-Maintainer: Fredrik Steen Architecture: all Version: 8.6.9-2ubuntu1 Depends: python (>= 2.4), python:any (>= 2.7.1-0ubuntu2) Recommends: dblatex, docbook-utils, libxml2-utils, xmlto Suggests: source-highlight, vim-addon-manager Filename: pool/main/a/asciidoc/asciidoc_8.6.9-2ubuntu1_all.deb Size: 688098 MD5sum: 19c38bfeac072d642710e4a895c7cc3a SHA1: ad02481e473862b019c131b4c2ed63063106bf48 SHA256: 1a3dc74d3a6e83342b88a10be827a5a94d92163f525be9c134dda56c66c5f741 Description: Highly configurable text format for writing documentation Multi-Arch: foreign Homepage: http://www.asciidoc.org Description-md5: db604821694f4714e2ebf12b4f45105d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: aspell Priority: optional Section: text Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: i386 Version: 0.60.7~20110707-1ubuntu1 Replaces: aspell-bin (<< 0.60.3-2), aspell-hi (<= 0.01-1), aspell-mr (<= 0.10-1) Provides: aspell-bin Depends: libaspell15 (= 0.60.7~20110707-1ubuntu1), libc6 (>= 2.4), libncursesw5 (>= 5.6+20070908), libstdc++6 (>= 4.1.1), libtinfo5, dictionaries-common (>> 0.40) Recommends: aspell-en | aspell-dictionary | aspell6a-dictionary Suggests: aspell-doc, spellutils Breaks: aspell-bin (<< 0.60.3-2) Filename: pool/main/a/aspell/aspell_0.60.7~20110707-1ubuntu1_i386.deb Size: 75556 MD5sum: f441693cedb1414be30ba5fbb6a0c4a2 SHA1: 22c8ac95d5fd6e3750323274baec4a0891695b97 SHA256: 4dafa4baf501cb23ee1d2549ee659f85c0ab3d17a9bb9ae01d65288df8d379ce Description: GNU Aspell spell-checker Homepage: http://aspell.net/ Description-md5: 21dcab5448cba7f61ba8df4ace46f1af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: aspell-doc Priority: optional Section: doc Installed-Size: 960 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: all Source: aspell Version: 0.60.7~20110707-1ubuntu1 Suggests: aspell (>> 0.60) Filename: pool/main/a/aspell/aspell-doc_0.60.7~20110707-1ubuntu1_all.deb Size: 227112 MD5sum: 602ac7668ebf4ef0199960384df79681 SHA1: 20eb0053bb7436b9f34bd0afe87d4470e3f9b698 SHA256: 2223029801538b32ef3b744bf375b4706c0248094f3c3e80cacc4437588ce333 Description: Documentation for GNU Aspell spell-checker Homepage: http://aspell.net/ Description-md5: 33c68b861d6f2e2ef1b189909b98b741 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: aspell-en Priority: optional Section: text Installed-Size: 330 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: all Version: 7.1-0-1 Provides: aspell-dictionary Depends: aspell (>= 0.60.3-2), dictionaries-common (>= 0.49.2) Filename: pool/main/a/aspell-en/aspell-en_7.1-0-1_all.deb Size: 267192 MD5sum: 194c3da8a684af52430a7d53ed2f3f4f SHA1: ab89dc931afb97a7cfad9dabe49d43c230b32db9 SHA256: c127889a2276b9f7d7b5dd72c2ba19ffed284bb04c46d328ca7625e94e32af3f Description: English dictionary for GNU Aspell Homepage: http://aspell.net/ Description-md5: 33430e0431f04d392965162affa799eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: at Priority: optional Section: admin Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Ansgar Burchardt Architecture: i386 Version: 3.1.14-1ubuntu1 Depends: libc6 (>= 2.7), libpam0g (>= 0.99.7.1), init-system-helpers (>= 1.5), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.2-14), libpam-runtime (>= 1.0.1-11) Suggests: default-mta | mail-transport-agent Filename: pool/main/a/at/at_3.1.14-1ubuntu1_i386.deb Size: 35952 MD5sum: dfc6709eca5d5b502c303078976b8e8e SHA1: 0aa84f7aee84ef1ad46d3d585e9b1c7587611411 SHA256: c8c0a58a3063447d67c61ea162aa3f5c3c7770a2cb82c2150b536c9512331265 Description: Delayed job execution and batch processing Multi-Arch: foreign Description-md5: 97e204a9f4ad8c681dbd54ec7c505251 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server Package: at-spi2-core Priority: optional Section: misc Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Version: 2.10.2.is.2.10.1-0ubuntu1 Depends: libatspi2.0-0, libc6 (>= 2.7), libdbus-1-3 (>= 1.0.2), libglib2.0-0 (>= 2.37.3), libx11-6, libxtst6 Breaks: gdm3 (<< 3.4) Filename: pool/main/a/at-spi2-core/at-spi2-core_2.10.2.is.2.10.1-0ubuntu1_i386.deb Size: 42802 MD5sum: 0a42aca5cd40ec64cd115083904dd5df SHA1: cd720ab4b0b55a1025d9fdf1dc42247656bd0dbf SHA256: 9ddcce60a8d36f616a9263a1143fffc77ba4dc34db50bee6852b353967b0804a Description: Assistive Technology Service Provider Interface (dbus core) Multi-Arch: foreign Homepage: http://live.gnome.org/Accessibility Description-md5: bfa19b4797e8c3ac7592c237175ae49e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: at-spi2-core-dbg Priority: extra Section: debug Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Depends: at-spi2-core (= 2.10.2.is.2.10.1-0ubuntu1) Filename: pool/main/a/at-spi2-core/at-spi2-core-dbg_2.10.2.is.2.10.1-0ubuntu1_i386.deb Size: 101532 MD5sum: 815d6307979448afc1fa00ed9ebe5c78 SHA1: 615129f07030d5705a62233f4e0ace735ba41c6c SHA256: 8040db912c7047a4477c569e83124dd202809fe27fa9697424c2b662cd328e52 Description: Assistive Technology Service Provider Interface - debugging symbols Homepage: http://live.gnome.org/Accessibility Description-md5: bed70eea3d0c01227e434bb20a6f0102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: at-spi2-doc Priority: optional Section: misc Installed-Size: 993 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Recommends: devhelp Filename: pool/main/a/at-spi2-core/at-spi2-doc_2.10.2.is.2.10.1-0ubuntu1_all.deb Size: 70526 MD5sum: d822933b903a0e7b1ecaa9628ea40253 SHA1: 614b79347bddad664aa8a35cfcac6ced41095293 SHA256: 0ab93bef3f09cbdb835d6ce1c591cc1a096aa25d4a99fde19d14d220143fd5ef Description: Assistive Technology Service Provider Interface (Documentation) Homepage: http://live.gnome.org/Accessibility Description-md5: e4ecae3df3f427dece5859c37aad6173 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: attr Priority: optional Section: utils Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 1:2.4.47-1ubuntu1 Depends: libattr1 (= 1:2.4.47-1ubuntu1), libc6 (>= 2.7) Conflicts: xfsdump (<< 2.0.0) Filename: pool/main/a/attr/attr_2.4.47-1ubuntu1_i386.deb Size: 28880 MD5sum: 292ce46101462968df7651714d8838a4 SHA1: b4dfaacd4305ef13fcc35966608d27a20a24c167 SHA256: 7d4b2c5e9bb7141b938e7ca104514513a5ae27a6bf996c99d2b45884f5d410ef Description: Utilities for manipulating filesystem extended attributes Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/attr/ Description-md5: 06768ac28dead3beb310d915f4822f45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-audio Package: auctex Priority: optional Section: tex Installed-Size: 3254 Maintainer: Ubuntu Developers Original-Maintainer: Davide G. M. Salvetti Architecture: all Version: 11.87-1ubuntu2 Replaces: preview-latex Provides: preview-latex Depends: emacs24 | emacs-snapshot, preview-latex-style, dpkg (>= 1.15.4) | install-info, debconf (>= 0.5) | debconf-2.0 Recommends: ghostscript, texlive-latex-recommended, evince | xpdf | evince-gtk, xdg-utils Suggests: catdvi, dvipng, lacheck Conflicts: preview-latex Breaks: emacspeak (<= 17.0-1) Filename: pool/main/a/auctex/auctex_11.87-1ubuntu2_all.deb Size: 1136670 MD5sum: b4a1b123f897b933c22f2fdd2a2e9bb6 SHA1: 8e386754b8a57e400c1f154a62932d76d21ef017 SHA256: 5c9394704e42229acb6b6e23ed1dc74ebe98ce7e8de51ffe7259a5c45e779679 Description: integrated document editing environment for TeX etc. Homepage: http://www.gnu.org/software/auctex/ Description-md5: 25baf0e24237a5e428db3cee78559130 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: auditd Priority: extra Section: admin Installed-Size: 608 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: audit Version: 1:2.3.2-2ubuntu1 Depends: lsb-base (>= 3.0-6), init-system-helpers (>= 1.13~), libaudit1 (>= 1:2.2.1), libauparse0 (>= 1:2.3.1), libc6 (>= 2.16) Suggests: audispd-plugins Filename: pool/main/a/audit/auditd_2.3.2-2ubuntu1_i386.deb Size: 176248 MD5sum: eb2d5baae815ccd28fc807c5317817b2 SHA1: d8e0b47aeec38709d2dc89a4e8ab25fbf28286b1 SHA256: 2a89a58c33452fa0ba40f520eec79e486d1b56187019ef503f72e0bbc4e418dd Description: User space tools for security auditing Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: 77aaff86394a1a8da0659fa99413f455 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: augeas-dbg Priority: extra Section: debug Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: i386 Source: augeas Version: 1.2.0-0ubuntu1 Depends: libaugeas0 (= 1.2.0-0ubuntu1), augeas-tools (= 1.2.0-0ubuntu1) Filename: pool/main/a/augeas/augeas-dbg_1.2.0-0ubuntu1_i386.deb Size: 24118 MD5sum: 163ded0b95c85aa8fe31e0a606b824bc SHA1: bba29e98087da187a56f262f86d8a4d2539b6b99 SHA256: 5b9bfe31c96589def42af3cb365e7f759dcf0aa9817fc131dd8ed7d25a628c56 Description: Debugging symbols for libaugeas0 Homepage: http://augeas.net/ Description-md5: 04bb4e8b4c50b75a43a23eeb7fc23ad2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: augeas-doc Priority: optional Section: doc Installed-Size: 11405 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: all Source: augeas Version: 1.2.0-0ubuntu1 Filename: pool/main/a/augeas/augeas-doc_1.2.0-0ubuntu1_all.deb Size: 677116 MD5sum: 30df692547bcef81dc61d0b791bff537 SHA1: 3f956c2c3f57a7e5fea11542e10b5f4d9b099039 SHA256: cd1a4211df8ee09eea9b8c1950951bfc09dce005d24264513b70bfd19135edd5 Description: Augeas lenses documentation Homepage: http://augeas.net/ Description-md5: df6d79b56cf65fba9d747321e87a4f25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: augeas-lenses Priority: optional Section: misc Installed-Size: 1227 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: all Source: augeas Version: 1.2.0-0ubuntu1 Suggests: augeas-doc Filename: pool/main/a/augeas/augeas-lenses_1.2.0-0ubuntu1_all.deb Size: 229376 MD5sum: b17b46de599fffc329a786b72dd30fa2 SHA1: 43e7bc674a826215166a09dc231e3beb415906b0 SHA256: 838b6a91c6f024256d28bba16b1042f501d387ca3af18a18559efb113971326f Description: Set of lenses needed by libaugeas0 to parse config files Homepage: http://augeas.net/ Description-md5: be11d5488843917c54ba7d49005b36de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: augeas-tools Priority: optional Section: admin Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: i386 Source: augeas Version: 1.2.0-0ubuntu1 Depends: libaugeas0 (>= 0.10.0), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libreadline6 (>= 6.0) Filename: pool/main/a/augeas/augeas-tools_1.2.0-0ubuntu1_i386.deb Size: 20256 MD5sum: 7188b201ac09c72e217722efac3ffa30 SHA1: 4e64db4b969a121a8ff5c32e6db6a743cfbf8ffd SHA256: ab1567a280cc9dc382aa2abf4311f6e84965703fcdb5ce576dd6fb8988c174ed Description: Augeas command line tools Homepage: http://augeas.net/ Description-md5: 3910bb8edac0a7a2eb4c78437f67490b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: auth-client-config Priority: optional Section: admin Installed-Size: 99 Maintainer: Jamie Strandboge Architecture: all Version: 0.9ubuntu1 Depends: python Suggests: libpam-cracklib Filename: pool/main/a/auth-client-config/auth-client-config_0.9ubuntu1_all.deb Size: 15406 MD5sum: f5ea3286e581f2db5133ee26199422a3 SHA1: 6b3c7da974e33d37637fdf85d615828cb9787d64 SHA256: 24332e773d6092b20a086baf095737315362ca0d1dcb15f989caee0fc945e900 Description: pam and NSS profile switcher Description-md5: 4cc8ab70be75a9c4a7a4aadde9497ff1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: authbind Priority: extra Section: utils Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Ian Jackson Architecture: i386 Version: 2.1.1 Depends: libc6 (>= 2.3.4) Filename: pool/main/a/authbind/authbind_2.1.1_i386.deb Size: 19644 MD5sum: e20c8b45fc7135a49ad062eb49de177f SHA1: c72d425e2739a9bc4dea0bac4970d13695b4acde SHA256: 69b3e52f86cba2b387cff6aaf28df2682d0bb48a0bec7e17de83d4266cde9a70 Description: Allows non-root programs to bind() to low ports Description-md5: 6ffd268fa04a5e344832e2275265da15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: autoconf Priority: optional Section: devel Installed-Size: 1890 Maintainer: Ubuntu Developers Original-Maintainer: Ben Pfaff Architecture: all Version: 2.69-6 Depends: perl (>> 5.005), m4 (>= 1.4.13), debianutils (>= 1.8) Recommends: automake | automaken Suggests: autoconf2.13, autoconf-archive, gnu-standards, autoconf-doc, libtool, gettext Breaks: autoconf2.13 (<< 2.13-47), gettext (<< 0.10.39), pkg-config (<< 0.25-1.1) Filename: pool/main/a/autoconf/autoconf_2.69-6_all.deb Size: 322180 MD5sum: e2e5c30dc7112212301988d4c3329fe8 SHA1: 117ef68b22eb4f84cd2ac1e3a42bfe4d3825869c SHA256: 79639ce363f7964dc6d034dc13b489ada1a0e0d3c6f0c27e5f6c86405164eef8 Description: automatic configure script builder Multi-Arch: foreign Homepage: http://www.gnu.org/software/autoconf/ Description-md5: 4ce0439e1f4ccd6c825471aa546f1611 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: autoconf-doc Priority: optional Section: doc Installed-Size: 4342 Maintainer: Ubuntu Developers Original-Maintainer: Ben Pfaff Architecture: all Source: autoconf Version: 2.69-6 Depends: gnu-standards Filename: pool/main/a/autoconf/autoconf-doc_2.69-6_all.deb Size: 2815516 MD5sum: 31ea0171b79eec05ed29e1399ea2195e SHA1: 5f0cc7f47b44f069d4336215baf1db7522344d38 SHA256: 6a6a62788eaa8b869e4ec3dda61bb9d6b40b2e440dda687f72e108032c03120e Description: automatic configure script builder documentation Homepage: http://www.gnu.org/software/autoconf/ Description-md5: c941bf6d49c8e26e328c69ddd7cb39c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: autoconf2.13 Priority: optional Section: devel Installed-Size: 1258 Maintainer: Ubuntu Developers Original-Maintainer: Ben Pfaff Architecture: all Version: 2.13-62 Depends: m4, debianutils (>= 1.8), autoconf, perl, libfile-temp-perl, dpkg (>= 1.15.4) | install-info Recommends: automake1.4 Suggests: gnu-standards Filename: pool/main/a/autoconf2.13/autoconf2.13_2.13-62_all.deb Size: 351200 MD5sum: 6a44055f75aee8d1d884bfefe896c958 SHA1: c6167eb5c7ce4ae7b8c628bf023259577a33162f SHA256: 8409cded8e8e0b0d24fd3e5b5c1e32af2d4b73b6f13511ad078fa9160dd2587d Description: automatic configure script builder (obsolete version) Description-md5: bc5162b28a67120a5898327c3cd78daf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: autoconf2.64 Priority: extra Section: devel Installed-Size: 1920 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: all Version: 2.64-3 Replaces: autoconf (<< 2.50) Depends: m4, debianutils (>= 1.8), autoconf (>= 2.50), perl, libfile-temp-perl Conflicts: autoconf (<< 2.50) Filename: pool/main/a/autoconf2.64/autoconf2.64_2.64-3_all.deb Size: 512912 MD5sum: e010f4cfd67416bc35a77f5ecb12c102 SHA1: 11d75ef19c08fc0cf1a946257b0824c0f1b957aa SHA256: 8eb412d99f3ea6141a91b038ecc62b83bbf697b3a803630984e34ee12b444173 Description: automatic configure script builder (obsolete version) Description-md5: 10ebda51cac38f72fa38461f25a84819 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: autofs Priority: extra Section: utils Installed-Size: 1587 Maintainer: Ubuntu Developers Original-Maintainer: Michael Tokarev Architecture: i386 Version: 5.0.7-3ubuntu3 Replaces: autofs5 (<< 5.0.6-1~) Provides: autofs5 Depends: libc6 (>= 2.16), libxml2 (>= 2.7.4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), ucf Pre-Depends: multiarch-support Recommends: nfs-common, kmod | module-init-tools Breaks: autofs5 (<< 5.0.6-1~) Filename: pool/main/a/autofs/autofs_5.0.7-3ubuntu3_i386.deb Size: 274688 MD5sum: a7255adc17c797581b38b8c2ea5e145f SHA1: 0a38d3bd5c66f1028b2584fc6e0442ada479411f SHA256: ff7197f17dd89e43ffde42a2d5916d273b8ef24afcff8794d525e2500cd9452f Description: kernel-based automounter for Linux Homepage: http://www.kernel.org/pub/linux/daemons/autofs/v5/ Description-md5: c2943d4026686519e74f5ea404af6a90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: autofs5 Priority: extra Section: oldlibs Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Michael Tokarev Architecture: all Source: autofs Version: 5.0.7-3ubuntu3 Depends: autofs (>= 5.0.7-3ubuntu3) Filename: pool/main/a/autofs/autofs5_5.0.7-3ubuntu3_all.deb Size: 2546 MD5sum: 150b9a39ad327640226c082475c442f0 SHA1: 48d5e5259832c49ba5d0bcbaa7d7d71c851967ff SHA256: e60858c39204c7174ce5fcf11620f80ba4f7d10a32be6292d19567d21d8010a2 Description: transitional dummy package for 'autofs' Homepage: http://www.kernel.org/pub/linux/daemons/autofs/v5/ Description-md5: 1b300636de9a031d02d3d95b18d3b52a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: autogen Priority: optional Section: devel Installed-Size: 2946 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Metzler Architecture: i386 Version: 1:5.18-2ubuntu2 Depends: guile-2.0-libs, libc6 (>= 2.11), libopts25 (>= 1:5.18), libxml2 (>= 2.7.4), libopts25-dev (= 1:5.18-2ubuntu2) Filename: pool/main/a/autogen/autogen_5.18-2ubuntu2_i386.deb Size: 1053024 MD5sum: 7c0c59acf282fd58e93fed692141a78c SHA1: bbfa0ee881d911bc1624b5d760bffa2642d8a4d4 SHA256: 102835419f8d1d65ead24520903766b6bee242473299a9acf3cb7760505d6d8e Description: automated text file generator Multi-Arch: foreign Homepage: http://www.gnu.org/software/autogen/ Description-md5: 2f86cfabb08ada7ec7136b2b9acca967 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: automake Priority: optional Section: devel Installed-Size: 1492 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: all Source: automake-1.14 Version: 1:1.14.1-2ubuntu1 Provides: automake-1.14, automaken Depends: autoconf (>= 2.65), autotools-dev (>= 20020320.1) Conflicts: automake (<< 1:1.4-p5-1), automake1.10-doc, automake1.5 (<< 1.5-2), automake1.6 (<< 1.6.1-4) Filename: pool/main/a/automake-1.14/automake_1.14.1-2ubuntu1_all.deb Size: 510410 MD5sum: e9d110c27959df7ac9aef0e1c70d37fd SHA1: 415fe3c2973550ec8f38f676d18bf6c31036e78f SHA256: 5c89874cdd37762176158cb32d66ba3f251574408a0b142f73d939ca3f359a7c Description: Tool for generating GNU Standards-compliant Makefiles Multi-Arch: foreign Homepage: http://www.gnu.org/software/automake/ Description-md5: c12e147d0e0aa5be7a2c5d8d77613ff5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: automake1.10 Priority: optional Section: devel Installed-Size: 1363 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: all Version: 1:1.10.3-3.1ubuntu1 Replaces: automake (<< 1:1.11-1), automake1.10-doc Provides: automaken Depends: autoconf (>= 2.60), autotools-dev (>= 20020320.1) Conflicts: automake (<< 1:1.11-1), automake1.10-doc, automake1.5 (<< 1.5-2), automake1.6 (<< 1.6.1-4) Filename: pool/main/a/automake1.10/automake1.10_1.10.3-3.1ubuntu1_all.deb Size: 516722 MD5sum: 8c2a177524410c251e4daa75ae272e3b SHA1: f11781d3ef6c3f84ef4f2793343d06d520637bef SHA256: 5afad85d6e31e9141966ffe4a30333541d5d0302e1b56fdf1bb9b1c75a623d1f Description: Tool for generating GNU Standards-compliant Makefiles Homepage: http://www.gnu.org/software/automake/ Description-md5: 665f57a8fdf721ce5247d4bd57bad0af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: automake1.11 Priority: optional Section: devel Installed-Size: 1505 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: all Version: 1:1.11.6-2 Replaces: automake (<< 1:1.11.6-2~) Provides: automaken Depends: autoconf (>= 2.62), autotools-dev (>= 20020320.1) Conflicts: automake (<< 1:1.11.6-2~), automake1.10-doc, automake1.5 (<< 1.5-2), automake1.6 (<< 1.6.1-4) Filename: pool/main/a/automake1.11/automake1.11_1.11.6-2_all.deb Size: 577490 MD5sum: ec802ed6900acc9e39607be76c032bf0 SHA1: 3fd92e649a615fefd9f58fb0c5673102bbe0eb7e SHA256: ab0db78e200b240abc5d9d44098a07931e05a2077a7e7e671d6f576a26dba149 Description: Tool for generating GNU Standards-compliant Makefiles Multi-Arch: foreign Homepage: http://www.gnu.org/software/automake/ Description-md5: 325adcd2e2a33d77efe3948d260d2fad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: automake1.4 Priority: optional Section: devel Installed-Size: 932 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: all Source: automake Version: 1:1.4-p6-13.1 Replaces: automake, automake1.4-doc Provides: automake1.4-doc Depends: autoconf, autotools-dev (>= 20010511.2) Conflicts: automake (<< 1:1.4-p6-3), automake1.4-doc, automake1.5 Filename: pool/main/a/automake/automake1.4_1.4-p6-13.1_all.deb Size: 232476 MD5sum: 08dd057ba44cb66bb587c1cd5f03ad72 SHA1: a452d72333721b4192b3a498465ac3b2f5ba88f7 SHA256: dccd20885dfebf1584ad65702ed6dda1ec5f929a3cd19e7813e37dd4d3af5be3 Description: A tool for generating GNU Standards-compliant Makefiles Homepage: http://www.gnu.org/software/automake/ Description-md5: 549c257438a50b62feacc392e53bb8f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: automake1.9 Priority: optional Section: devel Installed-Size: 1137 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: all Version: 1.9.6+nogfdl-4ubuntu1 Provides: automaken Depends: autoconf (>= 2.58), autotools-dev (>= 20020320.1) Suggests: automake1.9-doc Conflicts: automake (<< 1:1.4-p5-1), automake1.5 (<< 1.5-2), automake1.6 (<< 1.6.1-4) Filename: pool/main/a/automake1.9/automake1.9_1.9.6+nogfdl-4ubuntu1_all.deb Size: 338192 MD5sum: 5bc0b73852c50927a98ac4150cf2c585 SHA1: 8dbab4e448dd095f7ab9dc6defe308823cd1b16a SHA256: 75358908ffe09e115d3971273c967306dd931b94edd846dbd6a762448e40cb56 Description: A tool for generating GNU Standards-compliant Makefiles Description-md5: 16f7c6a70ae85327f4522569aa2e0cc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: automoc Priority: extra Section: devel Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Version: 1.0~version-0.9.88-5build1 Depends: libc6 (>= 2.0), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1), libqt4-dev Filename: pool/main/a/automoc/automoc_1.0~version-0.9.88-5build1_i386.deb Size: 32690 MD5sum: 1eb8d2e7cd333aa8b02f5173eb9b1731 SHA1: 8c31309d76faa5c4fc2e3578b6f763bcb5746fa5 SHA256: 3fc1fb5e02b4832cd6488f4f6e8a11646997f7c55e922296d8163cc85a88e6c4 Description: automatic moc for Qt 4 packages Homepage: http://cia.vc/stats/project/kde/automoc Description-md5: 089a1b306f5bbbf5910999a44b5b53b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: autopkgtest Priority: optional Section: devel Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Autopkgtest team Architecture: all Version: 2.14.1 Depends: python (>= 2.6), debhelper, python-debian, apt-utils, pbuilder Suggests: autopkgtest-xenlvm, schroot, lxc, qemu-system, qemu-utils Filename: pool/main/a/autopkgtest/autopkgtest_2.14.1_all.deb Size: 65854 MD5sum: 9d3a13f9950bf662120b05d516fbe0ff SHA1: 3f0b67798e41e3a670048bdeb58f83f1b64cf1b9 SHA256: 08ef21d5bd666f5c8e8a2e05575e8c72dcad29ccd8b6374d8cb15cef3aac020e Description: automatic as-installed testing for Debian packages Description-md5: 837abf3c07beaa78ca6ce864013f7a3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: autopoint Priority: optional Section: devel Installed-Size: 442 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: gettext Version: 0.18.3.1-1ubuntu2 Replaces: gettext (<= 0.17-11) Depends: xz-utils Filename: pool/main/g/gettext/autopoint_0.18.3.1-1ubuntu2_all.deb Size: 369022 MD5sum: 6f571876dea2457bc791600243886dbb SHA1: 8f0142dd47093d0a883939bdcbf3546979fd4edf SHA256: 63d44d1f471089bbedc478c3ca783ab20db43595be58452fbd73b3e33c19bcfb Description: The autopoint program from GNU gettext Homepage: http://www.gnu.org/software/gettext/ Description-md5: 347fdc045a58fcfc2665ef5e73c453b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: autotools-dev Priority: optional Section: devel Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Henrique de Moraes Holschuh Architecture: all Version: 20130810.1 Filename: pool/main/a/autotools-dev/autotools-dev_20130810.1_all.deb Size: 44326 MD5sum: 31c2af2345b80945a9b60bec2ee31f06 SHA1: 3b38cc37ffe713ad76f54607bb85ffa8bd4863e6 SHA256: 81c286a8649e16eed5b0e14ceae9901420053e47a10d121de671ae013a9c8708 Description: Update infrastructure for config.{guess,sub} files Enhances: cdbs, debhelper Multi-Arch: foreign Homepage: http://savannah.gnu.org/projects/config/ Description-md5: 32ffa2f2f5e89ec7409d0b4d9086ce91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: avahi-autoipd Priority: optional Section: net Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libc6 (>= 2.4), libdaemon0 (>= 0.10), adduser Recommends: isc-dhcp-client, iproute Conflicts: zeroconf Filename: pool/main/a/avahi/avahi-autoipd_0.6.31-4ubuntu1_i386.deb Size: 36044 MD5sum: a1b688825883e7c23242452e51c4520b SHA1: fe7c6932aa7bb8854f3c3c64826b7ab3f9a96451 SHA256: dfc0dc2d6b33381af6f0fb30b6b6983393649400d7d114f572b7cd285eadbd46 Description: Avahi IPv4LL network address configuration daemon Homepage: http://avahi.org/ Description-md5: acd046468650e18ecf72b9fbe41992f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: avahi-daemon Priority: optional Section: net Installed-Size: 337 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (>= 0.6.16), libavahi-core7 (>= 0.6.24), libc6 (>= 2.8), libcap2 (>= 2.10), libdaemon0 (>= 0.13), libdbus-1-3 (>= 1.1.1), libexpat1 (>= 2.0.1), init-system-helpers (>= 1.13~), upstart (>= 0.6.7-4), adduser, dbus (>= 1.2.16-0ubuntu3), lsb-base (>= 3.0-6), bind9-host | host Recommends: libnss-mdns Suggests: avahi-autoipd Filename: pool/main/a/avahi/avahi-daemon_0.6.31-4ubuntu1_i386.deb Size: 57378 MD5sum: 354cc4ada56cec9d2df09bc0a544ec03 SHA1: 6e99fcd81e269e3773705c8e82202f0fa4fff268 SHA256: f63284fadb1ff0844ecb37f439ed5c68aba9b36de47108dd63183d19424c7579 Description: Avahi mDNS/DNS-SD daemon Multi-Arch: foreign Homepage: http://avahi.org/ Description-md5: 13d651a25febc553220e03e75c6f4c7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: avahi-dbg Priority: extra Section: libdevel Installed-Size: 1042 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Filename: pool/main/a/avahi/avahi-dbg_0.6.31-4ubuntu1_i386.deb Size: 769902 MD5sum: 0c96b1b0bd3dce61b775d6599d194c5f SHA1: 2cb7647bf9b0547e0af1f02a69c7e27f49821339 SHA256: 50196689a122a6b3ab3d9373f78f7ba108b3b4e1457fc259dab25b5606b3c393 Description: Avahi - debugging symbols Homepage: http://avahi.org/ Description-md5: be77e76d0e7f31e403a87133b185f545 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: avahi-utils Priority: optional Section: net Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.22), libc6 (>= 2.4), libgdbm3 (>= 1.8.3), avahi-daemon Filename: pool/main/a/avahi/avahi-utils_0.6.31-4ubuntu1_i386.deb Size: 23306 MD5sum: 53090bee18c048edeb04c1e528b751d3 SHA1: d7c02840cd14a8a5dfb2716e32da275c6395e887 SHA256: 511b1dbd216f0e2731d2c58efbcb98d111140a9cf89ab63af441e010bbbd63a5 Description: Avahi browsing, publishing and discovery utilities Homepage: http://avahi.org/ Description-md5: 58895f03e39692a5213ffb4d5bbc3564 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: awstats Priority: optional Section: web Installed-Size: 3141 Maintainer: Ubuntu Developers Original-Maintainer: Sergey B Kirpichev Architecture: all Version: 7.2+dfsg-1 Depends: perl Recommends: libnet-xwhois-perl, coreutils (>= 7.4) Suggests: apache2 | httpd, libnet-dns-perl, libnet-ip-perl, libgeo-ipfree-perl, liburi-perl Filename: pool/main/a/awstats/awstats_7.2+dfsg-1_all.deb Size: 777742 MD5sum: 3eee86b73e0af4c30019fa7a82e36ec9 SHA1: 393ce056b4bff098cdfa6f29f7f57075522e2593 SHA256: bc95fdf465fd45c0b9db5bd3f0467ac73927890c0f882541bcb3cca547d10236 Description: powerful and featureful web server log analyzer Homepage: http://awstats.sourceforge.net/ Description-md5: 13563117d747b5d1acdce35986df9f8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: b43-fwcutter Priority: optional Section: utils Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Echeverry Architecture: i386 Version: 1:018-2 Depends: libc6 (>= 2.4), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/b/b43-fwcutter/b43-fwcutter_018-2_i386.deb Size: 25354 MD5sum: 5cfe1474476d2651666102455ada0076 SHA1: c9073d8d5463ab8b537a370776b4c7b1c3713fee SHA256: 3dcd7fad75529942bda454f1fa3c37c3f13df4422904d1cd04495709e93e0b45 Description: utility for extracting Broadcom 43xx firmware Homepage: http://wireless.kernel.org/en/users/Drivers/b43 Description-md5: 19713b4b3c64e57d9fe7a1aec56c25e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-live Package: backuppc Priority: optional Section: utils Installed-Size: 2209 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Drolez Architecture: i386 Version: 3.3.0-1ubuntu1 Depends: libc6 (>= 2.0), perl, libdigest-md5-perl, libcompress-zlib-perl, libarchive-zip-perl, tar (>> 1.13), adduser (>= 3.9), dpkg (>= 1.8.3), apache2 | httpd, debconf (>= 0.5) | debconf-2.0, smbclient, samba-common-bin, bzip2, default-mta | mail-transport-agent, iputils-ping | inetutils-ping, ucf, libtime-modules-perl, libwww-perl, libsocket6-perl Recommends: rsync, libfile-rsyncp-perl (>= 0.68), openssh-client | ssh-client, rrdtool, libio-dirent-perl Suggests: w3m | www-browser, par2 Conflicts: libfile-rsyncp-perl (<< 0.68) Filename: pool/main/b/backuppc/backuppc_3.3.0-1ubuntu1_i386.deb Size: 432790 MD5sum: 76f9511e0a86bd980fd00296d94140e6 SHA1: d752355b6d1a22cbb3b86762535c903f6cdb54c1 SHA256: 2877f4a4bc04f95ea262f2ae503ea2fc065549592b2d4ee86773e7225d680c74 Description: high-performance, enterprise-grade system for backing up PCs Description-md5: 9cf963981a203dec6d92fb3ac952296c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula Priority: optional Section: admin Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: all Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-server, bacula-client, bacula-common Suggests: bacula-doc Filename: pool/main/b/bacula/bacula_5.2.6+dfsg-9.1ubuntu3_all.deb Size: 1468 MD5sum: b1ea4a06df5da3e89a86f1d203aef270 SHA1: 960927a92dc8e4dc7921678ce7d90f3ad12ce47e SHA256: 74d7fea840acfa7cd7e18d99219e686a39386dcd2921e3c03f9cbcb951f6f2df Description: network backup service - metapackage Homepage: http://www.bacula.org/ Description-md5: 009b2ac44623dcd1e29278295ca5947d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-client Priority: optional Section: admin Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: all Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-console (>= 5.2.6+dfsg-9.1ubuntu3), bacula-fd (>= 5.2.6+dfsg-9.1ubuntu3) Recommends: bacula-traymonitor Filename: pool/main/b/bacula/bacula-client_5.2.6+dfsg-9.1ubuntu3_all.deb Size: 15144 MD5sum: daae13045b12deb955ce3213b07ea463 SHA1: f305c481dfcd5a8cf546dd3949f82b217eeb70f5 SHA256: 1ce2e68725392fde7961d4ef10762eed4ee4cb91359cb88905f04ac0aaa438a5 Description: network backup service - client metapackage Homepage: http://www.bacula.org/ Description-md5: 227b9f3b8ef268598d29ad6660928fff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-common Priority: optional Section: admin Installed-Size: 1144 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director-common Depends: libc6 (>= 2.4), libcap2 (>= 2.10), libgcc1 (>= 1:4.1.1), libpython2.7 (>= 2.7), libssl1.0.0 (>= 1.0.0), libstdc++6 (>= 4.1.1), libwrap0 (>= 7.6-4~), zlib1g (>= 1:1.1.4), debconf (>= 0.5) | debconf-2.0 Pre-Depends: adduser Suggests: bacula-doc Filename: pool/main/b/bacula/bacula-common_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 576952 MD5sum: 662fb8ba02075560b4226debf0a250ce SHA1: edbca07362143ee5bb13c2a21f19a703bb3d97dc SHA256: 4e8ee7fe3c913ad30627006d20a2b2a85dddb3163402e61014ef3698f532f471 Description: network backup service - common support files Homepage: http://www.bacula.org/ Description-md5: a77a947b0f7c49ed7fa29da0fc3d1883 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-common-dbg Priority: extra Section: debug Installed-Size: 1410 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-common-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 416106 MD5sum: 1043ddbca9b938f29d4766030d8dcfb8 SHA1: 35aa28976f78f08e1faa9ce3f1cba406dd0420f8 SHA256: b9be80844691b4e0479b5ed15902cb6e27c448a63b589e96edf07018d382f180 Description: network backup service - common support files (debugging) Homepage: http://www.bacula.org/ Description-md5: b57c149082c2f659ca5a4102d5fc7018 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-common-mysql Priority: optional Section: admin Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common, libc6 (>= 2.4), libmysqlclient18 (>= 5.5.13-1), libstdc++6 (>= 4.1.1) Suggests: bacula-doc Conflicts: bacula-common-pgsql, bacula-common-sqlite3 Filename: pool/main/b/bacula/bacula-common-mysql_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 70110 MD5sum: 95f77d2b414f1ee7c1bd964474128241 SHA1: 1ba1d50fee1dcf1c1ef56b5c8f60f12827c28058 SHA256: eae349da85d60fad06da1a4e4819abf2237f03ec65c95b68a7a643f83e046f22 Description: network backup service - MySQL common files Homepage: http://www.bacula.org/ Description-md5: 18345f5e6d30abeca0dc5928c641250c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-common-mysql-dbg Priority: extra Section: debug Installed-Size: 469 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common-mysql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-common-pgsql-dbg, bacula-common-sqlite3-dbg Filename: pool/main/b/bacula/bacula-common-mysql-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 122966 MD5sum: 9f74e1624548980209545a0f9d899184 SHA1: d8564a94de74eb27ab7ef72efd4cf52affd5381c SHA256: 0c26ceeaa296fe5fa9ece2bf304093847e714f31e8affa3842c7a3efaaca2039 Description: network backup service - MySQL common files (debugging) Homepage: http://www.bacula.org/ Description-md5: 0c0b18d0bc483e7d507fba51e43e7f0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-common-pgsql Priority: optional Section: admin Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common, libc6 (>= 2.4), libpq5, libstdc++6 (>= 4.1.1) Suggests: bacula-doc Conflicts: bacula-common-mysql, bacula-common-sqlite3 Filename: pool/main/b/bacula/bacula-common-pgsql_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 73008 MD5sum: d04bea5f053e44b26b2f344301c16330 SHA1: 6a9f3a1cdc38e2e4e8b64fab98a0e562ab51f467 SHA256: b845ba30c151f6f62901cdaec4b3c30f43b0f87c1cffe22c22ecd533e672f11f Description: network backup service - PostgreSQL common files Homepage: http://www.bacula.org/ Description-md5: 68a19e17141f8502139794588d5498af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-common-pgsql-dbg Priority: extra Section: debug Installed-Size: 473 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common-pgsql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-common-mysql-dbg, bacula-common-sqlite3-dbg Filename: pool/main/b/bacula/bacula-common-pgsql-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 124686 MD5sum: 97ef442ca977ea72166b14ab7069aed9 SHA1: b7a296a6a00e498a5c5b5196adbc16ed967239fc SHA256: 6cab091437cf4777b5c6fc2337c9d5b798daeca17e0ba45563375b8cb927af05 Description: network backup service - PostgreSQL common files (debugging) Homepage: http://www.bacula.org/ Description-md5: 2803f6ecf155e03257b90d142dba1357 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-common-sqlite3 Priority: optional Section: admin Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common, libc6 (>= 2.4), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.1.1) Suggests: bacula-doc Conflicts: bacula-common-mysql, bacula-common-pgsql Filename: pool/main/b/bacula/bacula-common-sqlite3_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 70232 MD5sum: be48ee3985ac41de046fb6a43a10c50e SHA1: ff88c0eae24961fcb26f434f2b25ffc2957d4194 SHA256: 57997b4982750b3ab869fb84ab635f73fc21c6ef0a81dd27846eb0970f0a9e5b Description: network backup service - SQLite v3 common files Homepage: http://www.bacula.org/ Description-md5: e90e2d51ca574a1be7259beee84f9963 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-common-sqlite3-dbg Priority: extra Section: debug Installed-Size: 465 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common-sqlite3 (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-common-mysql-dbg, bacula-common-pgsql-dbg Filename: pool/main/b/bacula/bacula-common-sqlite3-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 121416 MD5sum: 52490f138136058b10dd29b88cce5d65 SHA1: daf6d6a9fedb3b34a2634f2b5887094d8ceb06ac SHA256: f14cd7d6327380432a40386a44b99e15aa25e9517d859ace0c577412f84d76c6 Description: network backup service - SQLite v3 common files (debugging) Homepage: http://www.bacula.org/ Description-md5: ff80382efd1414d4185afbc43de043ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-console Priority: optional Section: admin Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), libc6 (>= 2.4), libreadline6 (>= 6.0) Filename: pool/main/b/bacula/bacula-console_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 29626 MD5sum: f186ff8ffa42a3ac54741aace97b21a5 SHA1: 11973e590a54830a6d148d0f15db6925bba84c31 SHA256: 2dee178aaba04cac584e520749539dbae94f1712200af6847b95e32ff1f472fa Description: network backup service - text console Homepage: http://www.bacula.org/ Description-md5: 9c44424f651ece05595790d16593b74e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-console-dbg Priority: extra Section: debug Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-console (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-console-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 40584 MD5sum: 8fce1cdac3064ae55d41d21bd33f92c6 SHA1: 6ab1815693407b83c024c5677662f3424a52b415 SHA256: 7409fa05237a9d44974b31fa827712d9f43c7b6d37c8bf181ab970fe8705cd11 Description: network backup service - text console (debugging) Homepage: http://www.bacula.org/ Description-md5: 0b80669d9604fe440ecbd7be99dc5769 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-console-qt Priority: optional Section: utils Installed-Size: 1474 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1) Filename: pool/main/b/bacula/bacula-console-qt_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 517144 MD5sum: f8b8d7b7a56bf9c865d514ccdb5f096a SHA1: 0f9e8a9aa6f15059f0526bf407612e4bb51501bb SHA256: d83bc276db278924538b0d1ed6378776183302bdf73ac4270ca74c696cc60509 Description: network backup service - Bacula Administration Tool Homepage: http://www.bacula.org/ Description-md5: a69c901abfe5cf76f5452e12b1daf08c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-console-qt-dbg Priority: extra Section: debug Installed-Size: 12055 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-console-qt (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-console-qt-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 1945494 MD5sum: 15687cb6327ba9364c1444f5131b5776 SHA1: 6f0328597abf515487cbf282f38ff1b161130a4e SHA256: 7dd756571d837fa0fef4f8b86d3e4d630f4a76e6c47887cdd0b04d6a9584449a Description: network backup service - Bacula Administration Tool (debugging) Homepage: http://www.bacula.org/ Description-md5: 1100fa8432d3aa4a627e471b6d701e28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-director-common Priority: optional Section: admin Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), gawk, bsd-mailx | mailx, lsb-base, libc6 (>= 2.3.4) Filename: pool/main/b/bacula/bacula-director-common_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 23156 MD5sum: 86899b147ef576e74ac1e15decae6c75 SHA1: b5b89aa49e5a76a99f4c14f53e678ceded93663f SHA256: 81c30de65f2f2c5069690e1a77537ab03d9c61a24cac7061d887e785aea00d8f Description: network backup service - Director common files Homepage: http://www.bacula.org/ Description-md5: 694c22816210678ee08fdd75235da51c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-director-common-dbg Priority: extra Section: debug Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-director-common (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-director-common-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 7192 MD5sum: c115cd97300746c1c13f900cf876fcdc SHA1: 783e1936d8228b4e0533496ddd4b66b6591622eb SHA256: 98f3601ab057055f5e191384678e1b8f973fa6f3a448b8dbaede8b7de0925744 Description: network backup service - Director common files (debugging) Homepage: http://www.bacula.org/ Description-md5: 6e11c7bc87f8027c34226893fbcf35de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-director-mysql Priority: optional Section: admin Installed-Size: 811 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director Provides: bacula-director Depends: bacula-director-common (= 5.2.6+dfsg-9.1ubuntu3), bacula-common-mysql (>= 5.2.6+dfsg-9.1ubuntu3), dbconfig-common, mysql-client, ucf, bacula-common, libc6 (>= 2.4), libpython2.7 (>= 2.7), libstdc++6 (>= 4.1.1), debconf (>= 0.5) | debconf-2.0 Recommends: mysql-server Suggests: gawk Conflicts: bacula-director Filename: pool/main/b/bacula/bacula-director-mysql_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 222074 MD5sum: 84c87b7372c848dfa4391983982bfe06 SHA1: 67071e8b7e10c4b52575176c899c1b932c76240a SHA256: 4030c5ce34b425d68408a313311af5cdd0aed6b0437f2521ecd427e03be60e34 Description: network backup service - MySQL storage for Director Homepage: http://www.bacula.org/ Description-md5: 8ecb3ea825dc66e6049255bf579a3027 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-director-mysql-dbg Priority: extra Section: debug Installed-Size: 2104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director-dbg Provides: bacula-director-dbg Depends: bacula-director-mysql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-director-dbg Filename: pool/main/b/bacula/bacula-director-mysql-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 504170 MD5sum: a1b24c33d141b3ff96841f539184ede9 SHA1: a14fb6cd5795cef7f2b743a070cc54f972db6667 SHA256: a5d1ce64c02c6af80b5158dbcdf38cfa0153d83a29fcb705cded5bfe7900d371 Description: network backup service - MySQL storage for Director (debugging) Homepage: http://www.bacula.org/ Description-md5: f0c37d6499f67a036b5c54f79b23d151 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-director-pgsql Priority: optional Section: admin Installed-Size: 818 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director Provides: bacula-director Depends: bacula-director-common (= 5.2.6+dfsg-9.1ubuntu3), bacula-common-pgsql (>= 5.2.6+dfsg-9.1ubuntu3), dbconfig-common, postgresql-client (>= 7.4), ucf, bacula-common, libc6 (>= 2.4), libpython2.7 (>= 2.7), libstdc++6 (>= 4.1.1), debconf (>= 0.5) | debconf-2.0 Recommends: postgresql (>= 7.4) Suggests: gawk, postgresql-contrib, postgresql-doc Conflicts: bacula-director Filename: pool/main/b/bacula/bacula-director-pgsql_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 223310 MD5sum: 5970f8800bb7c69ebb72086ed1b2fd4c SHA1: e30fa78a0c0eded280da5b100f1286cbd2eab1c7 SHA256: 969b0388dcf09ba96656bc70df840fa3ea1ad3f15910e28749ef9a568c2396b8 Description: network backup service - PostgreSQL storage for Director Homepage: http://www.bacula.org/ Description-md5: db7ac39ef41b2e5d6739d980eccc213a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-director-pgsql-dbg Priority: extra Section: debug Installed-Size: 2104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director-dbg Provides: bacula-director-dbg Depends: bacula-director-pgsql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-director-dbg Filename: pool/main/b/bacula/bacula-director-pgsql-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 504028 MD5sum: bf3edc202161ee00442882bc5577bc20 SHA1: 8898f4966e4b6bf25c4c8e03aea7a2f4f7b673d9 SHA256: 42679e3e25c09dca4c7b1ac6a687f3f61cd716e55ff6f4dc92b499a58b9908de Description: network backup service - PostgreSQL storage for Director (debugging) Homepage: http://www.bacula.org/ Description-md5: 70e8699e78b44febd70214aa0abcec17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-director-sqlite3 Priority: optional Section: admin Installed-Size: 815 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director Provides: bacula-director Depends: bacula-director-common (= 5.2.6+dfsg-9.1ubuntu3), bacula-common-sqlite3 (>= 5.2.6+dfsg-9.1ubuntu3), sqlite3, file, dbconfig-common, ucf, bacula-common, libc6 (>= 2.4), libpython2.7 (>= 2.7), libstdc++6 (>= 4.1.1), debconf (>= 0.5) | debconf-2.0 Suggests: gawk Conflicts: bacula-director Filename: pool/main/b/bacula/bacula-director-sqlite3_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 221712 MD5sum: 12ddc85853a610d7c381c9c7ac4e8361 SHA1: d16e626c03ed625cda0cb1b957273338649bf692 SHA256: 65f28b692edaf66c43518d352ee21f3eb0eac33b9aa247edb7d2b5149f582ff8 Description: network backup service - SQLite 3 storage for Director Homepage: http://www.bacula.org/ Description-md5: 0913f988bdfa3d7d5446a408a63ccee4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-director-sqlite3-dbg Priority: extra Section: debug Installed-Size: 2104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-director-dbg Provides: bacula-director-dbg Depends: bacula-director-sqlite3 (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-director-dbg Filename: pool/main/b/bacula/bacula-director-sqlite3-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 504174 MD5sum: ef78bc6a6762cdf3c56b4f1eaf09e9ff SHA1: 6aed11a8215137aa2da4c9c3ddbd1e7d3bf5ab37 SHA256: e5db53886a42f8fdb0b6c6801d4ff35571c4f3ec72fb0a41d1b9582283807e31 Description: network backup service - SQLite 3 storage for Director (debugging) Homepage: http://www.bacula.org/ Description-md5: c4953b4e7ca2c8227daea18be55382a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-fd Priority: optional Section: admin Installed-Size: 339 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), lsb-base, ucf, libacl1 (>= 2.2.51-8), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), liblzo2-2, libpython2.7 (>= 2.7), zlib1g (>= 1:1.1.4) Suggests: bacula-traymonitor Filename: pool/main/b/bacula/bacula-fd_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 85204 MD5sum: 6c431daa41bea521eac65d59cf095ba5 SHA1: e26e60772ed96ffa846c22c083af91b822c4e1ca SHA256: 5a0aa477060d0f27f7814c8c560a00012b4e3e80951fcf84f81bfe1ccdc0d9dd Description: network backup service - file daemon Homepage: http://www.bacula.org/ Description-md5: 154a2979b1f3aa0443cce61b74858b98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-fd-dbg Priority: extra Section: debug Installed-Size: 650 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-fd (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-fd-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 181536 MD5sum: 4160d08828f1183f6c8850f7f9d4789b SHA1: 92e87f016856ef8ee4ebbe0589aeab9b868ead23 SHA256: 4a828aa9a0fc2f0412d12071f3df51f35d50703259ba0f11925e329e6c1ad760 Description: network backup service - file daemon (debugging) Homepage: http://www.bacula.org/ Description-md5: c3ac38a4c97bd32504010a2b6565d137 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-sd Priority: optional Section: admin Installed-Size: 1107 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), mtx, python, lsb-base, ucf, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), liblzo2-2, libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Recommends: bacula-sd-mysql (>= 5.2.6+dfsg-9.1ubuntu3) | bacula-sd-tools Suggests: dds2tar, scsitools, sg3-utils, mt-st Filename: pool/main/b/bacula/bacula-sd_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 219600 MD5sum: 13b8754ca41ce5ab3559e4679a90a31b SHA1: 06e60505f917a806cbe1ab83b4e97721869a075c SHA256: b35c7dd3717a9d381d49f84c75f257adf35fa1dcb06f0850096980210ae0194e Description: network backup service - storage daemon Homepage: http://www.bacula.org/ Description-md5: 0ad04d9a17c49eb0cb2f5769768cdab4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-sd-dbg Priority: extra Section: debug Installed-Size: 3245 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-sd (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-sd-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 514736 MD5sum: 6095f33d71dddc49ada43ed165f95cf8 SHA1: 182458c57132cfa2f8044e718931f8877004e983 SHA256: 357e8364048f1bba669b140b06a45cf32463e0a459495972e8ef1c0f5a2452b3 Description: network backup service - storage daemon (debugging) Homepage: http://www.bacula.org/ Description-md5: 886d52470fa179d58139efa5be26c1e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-sd-mysql Priority: optional Section: admin Installed-Size: 1020 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools Provides: bacula-sd-tools Depends: bacula-sd (= 5.2.6+dfsg-9.1ubuntu3), bacula-common-mysql (>= 5.2.6+dfsg-9.1ubuntu3), bacula-common, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: bacula-sd-tools Filename: pool/main/b/bacula/bacula-sd-mysql_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 197284 MD5sum: a9682527636d2a385100f89958c1e1a6 SHA1: 133971839b5aa232becc65ea6b09b36b8cf3166d SHA256: 60ee00313f7e77a3f142cbf33e6332295b449505887145863bf8b753e471e850 Description: network backup service - MySQL SD tools Homepage: http://www.bacula.org/ Description-md5: 251b177333b22f114f807be8321bd987 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-sd-mysql-dbg Priority: extra Section: debug Installed-Size: 3009 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools-dbg Provides: bacula-sd-tools-dbg Depends: bacula-sd-mysql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-sd-tools-dbg Filename: pool/main/b/bacula/bacula-sd-mysql-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 476850 MD5sum: 6f853641c1b9f698e514e9d5e240e10a SHA1: 9e88b2091cecd55212b1e560b34b759266f58b61 SHA256: 6bf21127fe9205310f62c13545bb254ef62c901ac5493d74e781dac5763bab23 Description: network backup service - MySQL SD tools (debugging) Homepage: http://www.bacula.org/ Description-md5: 7ddca0a2768062d8245d97b74435809e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-sd-pgsql Priority: optional Section: admin Installed-Size: 1020 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools Provides: bacula-sd-tools Depends: bacula-sd (= 5.2.6+dfsg-9.1ubuntu3), bacula-common-pgsql (>= 5.2.6+dfsg-9.1ubuntu3), bacula-common, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: bacula-sd-tools Filename: pool/main/b/bacula/bacula-sd-pgsql_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 197294 MD5sum: e81fdfc83d03f4dafec5ec5b0d211d1d SHA1: 681575ba6d21c4b5d85985c0c12accd675ab4a50 SHA256: f34d4a5833501c4491340a6ba7488b7909d32abf691a693ab95f645002d7ca85 Description: network backup service - PostgreSQL SD tools Homepage: http://www.bacula.org/ Description-md5: a7e27eeb3f6d087c5a1da0bd36ce1206 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-sd-pgsql-dbg Priority: extra Section: debug Installed-Size: 3009 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools-dbg Provides: bacula-sd-tools-dbg Depends: bacula-sd-pgsql (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-sd-tools-dbg Filename: pool/main/b/bacula/bacula-sd-pgsql-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 475974 MD5sum: e24141e6e5166b08f877079b3ba169e1 SHA1: f43437b7b58580595727b2140851780ab72b80bd SHA256: 648bab4905be2123eed29eb09414649022cc1d5070ed59e578247669eb3e97ba Description: network backup service - PostgreSQL SD tools (debugging) Homepage: http://www.bacula.org/ Description-md5: 2d6599db285b174b6ed46533339cf114 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-sd-sqlite3 Priority: optional Section: admin Installed-Size: 1020 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools Provides: bacula-sd-tools Depends: bacula-sd (= 5.2.6+dfsg-9.1ubuntu3), bacula-common, bacula-common-sqlite3 (>= 5.2.6+dfsg-9.1ubuntu3), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: bacula-sd-tools Filename: pool/main/b/bacula/bacula-sd-sqlite3_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 197288 MD5sum: 232aa162a9a406972f69a8b953a2683e SHA1: 857c830cc262aa57a4dc38dfa7ed15f4551c94a6 SHA256: c3ea78fea14034240c54598dfc83043e87572f32448af93d65655ca9f35da028 Description: network backup service - SQLite 3 SD tools Homepage: http://www.bacula.org/ Description-md5: 9f984fdef85da962861ec1189ef90985 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-sd-sqlite3-dbg Priority: extra Section: debug Installed-Size: 3009 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Replaces: bacula-sd-tools-dbg Provides: bacula-sd-tools-dbg Depends: bacula-sd-sqlite3 (= 5.2.6+dfsg-9.1ubuntu3) Conflicts: bacula-sd-tools-dbg Filename: pool/main/b/bacula/bacula-sd-sqlite3-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 475556 MD5sum: 9cebedb6da1ddeb56b2a897d86cfc3af SHA1: 61eb4eaeabc49614b7dd0ccc51356f3b53ba03e0 SHA256: c0d14f3b36f13ab5535189c458846d94a3bb9eae4764c7d9be29b437e7a80045 Description: network backup service - SQLite 3 SD tools (debugging) Homepage: http://www.bacula.org/ Description-md5: 2d83f4b73f0efee75d6929e75209743d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bacula-server Priority: optional Section: admin Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: all Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-director-mysql (>= 5.2.6+dfsg-9.1ubuntu3) | bacula-director, bacula-sd (>= 5.2.6+dfsg-9.1ubuntu3), bacula-sd-mysql (>= 5.2.6+dfsg-9.1ubuntu3) | bacula-sd-tools Recommends: bacula-fd Filename: pool/main/b/bacula/bacula-server_5.2.6+dfsg-9.1ubuntu3_all.deb Size: 15062 MD5sum: 1e4234bf547df4e2c6ba715773cb409a SHA1: d95443ea24bb7cc6ccc26dbbf28521e44f097eee SHA256: 66da1098d43f0716395f59471a078b8dbaeb15204f487b580af0827a0415b286 Description: network backup service - server metapackage Homepage: http://www.bacula.org/ Description-md5: 2e8fb07015da38dc46006ec06da5cc4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-traymonitor Priority: optional Section: admin Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-common (= 5.2.6+dfsg-9.1ubuntu3), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.16.0), libgtk2.0-0 (>= 2.10.0), libpango-1.0-0 (>= 1.14.0) Suggests: kde | gnome-desktop-environment Filename: pool/main/b/bacula/bacula-traymonitor_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 32242 MD5sum: ef523d19368dd888ec09fcc4d089f692 SHA1: be461f539938b7059cc6845bd1d85ec9b7990cc9 SHA256: 79b8703800f9dc17ce8a8a692b0a5c5a883487a34464ab65179cd15c41709f30 Description: network backup service - tray monitor Homepage: http://www.bacula.org/ Description-md5: b0b637db66c8a655b0b2f0867973e199 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bacula-traymonitor-dbg Priority: extra Section: debug Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bacula Team Architecture: i386 Source: bacula Version: 5.2.6+dfsg-9.1ubuntu3 Depends: bacula-traymonitor (= 5.2.6+dfsg-9.1ubuntu3) Filename: pool/main/b/bacula/bacula-traymonitor-dbg_5.2.6+dfsg-9.1ubuntu3_i386.deb Size: 54382 MD5sum: b66a3b85fe4d5843c6e34161dd319ed6 SHA1: 8d435a317de1394e3e88542e09ee00035a53fde1 SHA256: ee50a59629866b44049b3d74442c3547160e1207d983eb1699667a564f14973d Description: network backup service - tray monitor (debugging) Homepage: http://www.bacula.org/ Description-md5: ff88c2dec76e85dc57a5242d369a6534 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bamf-dbg Priority: extra Section: debug Installed-Size: 606 Maintainer: Didier Roche Architecture: i386 Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Depends: libbamf3-2 (= 0.5.1+14.04.20140409-0ubuntu1) Filename: pool/main/b/bamf/bamf-dbg_0.5.1+14.04.20140409-0ubuntu1_i386.deb Size: 419328 MD5sum: 517412b04919745fc09950211cc83aeb SHA1: a2f14a76a974a6abc9769f96ca8b71a1c2a2c03d SHA256: 0fa82fb82c11a7de0cdef368de4d761e96cfda924d979cea75c79e0ad15a1b2a Description: Window matching library - debugging symbols Homepage: https://launchpad.net/bamf Description-md5: d08673dde009c4e5d772fa886e34cfd2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bamfdaemon Priority: optional Section: libs Installed-Size: 354 Maintainer: Didier Roche Architecture: i386 Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libgtop2-7 (>= 2.22.3), libwnck-3-0 (>= 3.4.7), libx11-6, libbamf3-2 (= 0.5.1+14.04.20140409-0ubuntu1) Filename: pool/main/b/bamf/bamfdaemon_0.5.1+14.04.20140409-0ubuntu1_i386.deb Size: 77832 MD5sum: be620bd6d2650932da3913c492da172c SHA1: c5c938a770615b3e5db621005ef7c885c97138d3 SHA256: 2671d477959c4933b4cdcd36cc0ca7f9e2ed7ef00b52c0122c0507f05c837aa8 Description: Window matching library - daemon Multi-Arch: foreign Homepage: https://launchpad.net/bamf Description-md5: 5e170802764cd2226fe0395c325fb65f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: baobab Priority: optional Section: gnome Installed-Size: 900 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.8.2-1ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.8.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), dconf-gsettings-backend | gsettings-backend Recommends: yelp Filename: pool/main/b/baobab/baobab_3.8.2-1ubuntu1_i386.deb Size: 156992 MD5sum: b3c34095318d5507f6c910a4cc315559 SHA1: dc3db54e3dc0006a21efd48089a014d689ae2154 SHA256: da3c6db5d27e2d9b5d13fb07c3e1997c6cfe93cef352168238acefe0c1d62823 Description: GNOME disk usage analyzer Homepage: http://live.gnome.org/GnomeUtils Description-md5: 5f6072b89ebb1dc83433fa7658814dc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: base-files Essential: yes Priority: required Section: admin Installed-Size: 433 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 7.2ubuntu5 Replaces: base, dpkg (<= 1.15.0), miscutils Provides: base Pre-Depends: awk Breaks: initscripts (<< 2.88dsf-13.3), sendfile (<< 2.1b.20080616-5.2~) Filename: pool/main/b/base-files/base-files_7.2ubuntu5_i386.deb Size: 70188 MD5sum: 996bbd38ce61921c1270b41d1329ac0a SHA1: 71428a6cbc574291dc46336a281c747338155a1b SHA256: 93e9bb3b69826245584013d9c19729f7d7e871c6d6e2a7268cde5c7b4785b859 Description: Debian base system miscellaneous files Multi-Arch: foreign Description-md5: 6d16337f57b84c4747f56438355b2395 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: base-passwd Essential: yes Priority: required Section: admin Installed-Size: 247 Maintainer: Colin Watson Architecture: i386 Version: 3.5.33 Replaces: base Depends: libc6 (>= 2.8), libdebconfclient0 (>= 0.145) Recommends: debconf (>= 0.5) | debconf-2.0 Filename: pool/main/b/base-passwd/base-passwd_3.5.33_i386.deb Size: 47720 MD5sum: 14a1a1252790e09b49ebece750715fee SHA1: 6395a3c5562835f4e2b43921c5ca9e245f0a5628 SHA256: 4bbc63c5ced7098f1f5e6f78f9095d0efd0bb9ac64fc7ee97c85c21eb74548dc Description: Debian base system master password and group files Multi-Arch: foreign Description-md5: aad0cc52ee72b2469af5552851e49f03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: bash Essential: yes Priority: required Section: shells Installed-Size: 1436 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Version: 4.3-6ubuntu1 Replaces: bash-completion (<< 20060301-0), bash-doc (<= 2.05-1) Depends: base-files (>= 2.1.12), debianutils (>= 2.15) Pre-Depends: dash (>= 0.5.5.1-2.2), libc6 (>= 2.15), libtinfo5 Recommends: bash-completion (>= 20060301-0) Suggests: bash-doc Conflicts: bash-completion (<< 20060301-0) Filename: pool/main/b/bash/bash_4.3-6ubuntu1_i386.deb Size: 547752 MD5sum: 39f25027c7fdc6383db0bc51b7fa8dab SHA1: 699ffd08e1b14fb915efedeeb52a8a863d996fbd SHA256: f211475a009551969dbc00e3faa548d42dfa2531f0dbc0296855bc14a00fb0ac Description: GNU Bourne Again SHell Multi-Arch: foreign Homepage: http://tiswww.case.edu/php/chet/bash/bashtop.html Description-md5: 3522aa7b4374048d6450e348a5bb45d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: bash-completion Priority: standard Section: shells Installed-Size: 929 Maintainer: Ubuntu Developers Original-Maintainer: Bash Completion Maintainers Architecture: all Version: 1:2.1-4 Replaces: bash, cryptsetup (<< 2:1.1.2-2), xen-tools (<= 4.1-1) Depends: bash (>= 3.2) Pre-Depends: dpkg (>= 1.15.7.2~) Breaks: xen-tools (<= 4.1-1) Filename: pool/main/b/bash-completion/bash-completion_2.1-4_all.deb Size: 153944 MD5sum: e3971798754f0f73eb7a5a80b73c591e SHA1: 2dece2aaa8073cea586c2a506e301b9d9f56e16b SHA256: 9305a9cf2049e3e0ad5f78a33bf2d500a95a1a8826b133840049c0f49f972879 Description: programmable completion for the bash shell Multi-Arch: foreign Homepage: http://bash-completion.alioth.debian.org Description-md5: 00158d11d140744fbdcfdd08e81901ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: bash-doc Priority: optional Section: doc Installed-Size: 2585 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: bash Version: 4.3-6ubuntu1 Replaces: bash (<< 4.3-2) Depends: dpkg (>= 1.15.4) | install-info Filename: pool/main/b/bash/bash-doc_4.3-6ubuntu1_all.deb Size: 1118976 MD5sum: 67c6ec14705777869166eaa00c6ddb58 SHA1: b0cf59c1166639009840f8e41d17ed0be37d1488 SHA256: e6227a81764b456e454a5f77b2c16781d4475314b6e42f0a83a30eb9d0e141bc Description: Documentation and examples for the The GNU Bourne Again SHell Homepage: http://tiswww.case.edu/php/chet/bash/bashtop.html Description-md5: 87bcd31a74f29447890330d831edb1f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bbdb Priority: optional Section: mail Installed-Size: 1646 Maintainer: Ubuntu Developers Original-Maintainer: Joerg Jaspert Architecture: all Version: 2.36-3ubuntu1 Depends: make, emacs24 | emacsen, perl Suggests: vm, w3m-el, gnuserv, gnus | t-gnus Filename: pool/main/b/bbdb/bbdb_2.36-3ubuntu1_all.deb Size: 722994 MD5sum: e7c8b96ccd805fc962ed25abb3859b73 SHA1: b62e3aece7d7c5b1f025e1ae7865668de27b1c59 SHA256: ae14ef976f950acf1d43e3c5f4245493e9c41a5d6a44216f658f885e4cd7ffa7 Description: The Insidious Big Brother Database (email rolodex) for Emacs Homepage: http://bbdb.sourceforge.net/ Description-md5: cf6e32334b121b23ad0d84643800ce68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bbswitch-dkms Priority: extra Section: kernel Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: bbswitch Version: 0.7-2ubuntu1 Depends: dkms (>= 2.1.0.0) Suggests: bumblebee Filename: pool/main/b/bbswitch/bbswitch-dkms_0.7-2ubuntu1_i386.deb Size: 10936 MD5sum: 553824f861ba7c5e256c9e89c1c48a68 SHA1: 524d5c64d4adb37441fb9e7237f3a8e43b0cd1c9 SHA256: a0ffa3a8cf6857fde9bbb51a9f8eb4dfa7c20c1a853b3c9ee97dd97fac05a60a Description: Interface for toggling the power on nVidia Optimus video cards Homepage: https://github.com/Bumblebee-Project/bbswitch Description-md5: ee3c559fb3c0692ad46e619a0a3007dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bc Priority: optional Section: math Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Ryan Kavanagh Architecture: i386 Version: 1.06.95-8ubuntu1 Depends: libc6 (>= 2.4), libreadline6 (>= 6.0) Filename: pool/main/b/bc/bc_1.06.95-8ubuntu1_i386.deb Size: 78586 MD5sum: 550ad5b9c31f4588831cfe8c041a7368 SHA1: 6f15a554715a299d5b1862ab18b8258615f20eab SHA256: bdf80373ad61a12bb786690a2cd297d7410cd5e2baacff4ffc1f66e6de403088 Description: GNU bc arbitrary precision calculator language Multi-Arch: foreign Homepage: http://ftp.gnu.org/gnu/bc/ Description-md5: b8da7e3f115e4c703a180cdb05aec611 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: bcc Priority: optional Section: devel Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Juan Cespedes Architecture: i386 Source: linux86 Version: 0.16.17-3.1ubuntu3 Replaces: linux86 Provides: c-compiler Depends: libc6 (>= 2.7), bin86 (= 0.16.17-3.1ubuntu3) Recommends: elks-libc (= 0.16.17-3.1ubuntu3) Conflicts: linux86 Filename: pool/main/l/linux86/bcc_0.16.17-3.1ubuntu3_i386.deb Size: 121184 MD5sum: 848be109aaa3b2bdff0c4cd6e85ebb3d SHA1: 841c65d51bfe796b3ae02eeeccb3225126b359e3 SHA256: 1df58d637861fca57208bd67afefda2223ab51b5423f28c0de3be8769d6b76ad Description: 16-bit x86 C compiler Description-md5: 268215b21e3311cc4ec3976927b43fee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bcrelay Priority: optional Section: net Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Christoph Biedl Architecture: i386 Source: pptpd Version: 1.3.4+27+gddb30f8-1ubuntu1 Replaces: pptpd (<< 1.2.3-1) Depends: libc6 (>= 2.15) Filename: pool/main/p/pptpd/bcrelay_1.3.4+27+gddb30f8-1ubuntu1_i386.deb Size: 13592 MD5sum: 77b95376aa41df007bcdeeb47f4358e0 SHA1: 750348222350799ceb508800951d74036b255e19 SHA256: e215e7dc15d3e8cf457eaadbd0cf0bdb885e0219e5f4fe9f07dbdbb37920729c Description: Broadcast relay daemon Homepage: http://poptop.sourceforge.net/dox/ Description-md5: 8169550aed31e33592b7b141c95a3b62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bdf2psf Priority: optional Section: utils Installed-Size: 217 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: console-setup Version: 1.70ubuntu8 Depends: perl Filename: pool/main/c/console-setup/bdf2psf_1.70ubuntu8_all.deb Size: 25442 MD5sum: 455ecbf3eac8abb4b1f2c9ad452e2555 SHA1: 6f0c5e06abdca1cc8ccec63765cf40e98343d67a SHA256: 3e81487246ae7cb498f23ef7fe966f4d2d6ce6bcfdae50142a33a3be6e19461f Description: font converter to generate console fonts from BDF source fonts Description-md5: 5eb98031ca1e36678eeeefee0d31085b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bdfresize Priority: optional Section: x11 Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Tatsuya Kinoshita Architecture: i386 Version: 1.5-8 Depends: libc6 (>= 2.7) Filename: pool/main/b/bdfresize/bdfresize_1.5-8_i386.deb Size: 12514 MD5sum: 0b0d9369e23e4168d70a7f1cd1076f24 SHA1: 1c0692405923867d04be88b5e231f69722e40286 SHA256: 94ac0c54a2d58708bec9aaec115e67b1914049a0022deedc39016cc61a6bc237 Description: tool for resizing BDF format font Homepage: http://openlab.jp/efont/ Description-md5: fdbe88767321eba83a9069b596b75cc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: beanstalkd Priority: extra Section: net Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: Gregory Potamianos Architecture: i386 Version: 1.9-2ubuntu1 Depends: libc6 (>= 2.8), init-system-helpers (>= 1.13~), adduser, netbase Suggests: doc-base Filename: pool/main/b/beanstalkd/beanstalkd_1.9-2ubuntu1_i386.deb Size: 43738 MD5sum: c568d887f58fa878fca43d4134270966 SHA1: 54d88b4e82ef1a316c98bf40bf8c54c767a15d81 SHA256: f25fcd7f11c7edc149eb5f6cae82482e4755d6f24f72c8d6d72a8bcef207db52 Description: simple, in-memory, workqueue service Homepage: http://kr.github.com/beanstalkd/ Description-md5: c5918527026b57dc76d8a8c9e30ecf13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bf-utf-source Priority: extra Section: devel Installed-Size: 10137 Maintainer: Ubuntu Developers Original-Maintainer: Changwoo Ryu Architecture: all Source: bf-utf Version: 0.07 Filename: pool/main/b/bf-utf/bf-utf-source_0.07_all.deb Size: 1022906 MD5sum: eb462ec586eb2ed8873330a8401fc3ca SHA1: e1d202c223c861270b7e87f15759f55ddd6af414 SHA256: 2902f18c830a815635475ded29897d73fcc6822b6a11ed15579c7a33300d3228 Description: source for fonts needed to build Debian installers Description-md5: b71d2b1a2abb75a1dc34320f9bde9d23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bin86 Priority: optional Section: devel Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Juan Cespedes Architecture: i386 Source: linux86 Version: 0.16.17-3.1ubuntu3 Depends: libc6 (>= 2.7) Conflicts: linux86 Filename: pool/main/l/linux86/bin86_0.16.17-3.1ubuntu3_i386.deb Size: 85650 MD5sum: 354e18bee92d9d3eef643d59f051c558 SHA1: 32768a77ba3093343895f143f228d4bf71d2d87e SHA256: 9f8379c2c3bebf2a5d64bb065aecee88b1d4d5225b83d6697f6c29ef2673427b Description: 16-bit x86 assembler and loader Description-md5: ab9b02e844161c194a3566d31fb8a4ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bind9 Priority: optional Section: net Installed-Size: 931 Maintainer: LaMont Jones Architecture: i386 Version: 1:9.9.5.dfsg-3 Replaces: apparmor-profiles (<< 2.1+1075-0ubuntu4), bind, bind9utils (<< 1:9.9.3.dfsg.P2-3), dnsutils (<< 1:9.1.0-3) Depends: libbind9-90 (= 1:9.9.5.dfsg-3), libc6 (>= 2.4), libcap2 (>= 2.10), libdns100 (= 1:9.9.5.dfsg-3), libisc95 (= 1:9.9.5.dfsg-3), libisccc90 (= 1:9.9.5.dfsg-3), libisccfg90 (= 1:9.9.5.dfsg-3), liblwres90 (= 1:9.9.5.dfsg-3), libxml2 (>= 2.7.4), debconf (>= 0.5) | debconf-2.0, init-system-helpers (>= 1.13~), netbase, adduser, lsb-base (>= 3.2-14), bind9utils (= 1:9.9.5.dfsg-3), net-tools Suggests: dnsutils, bind9-doc, resolvconf, ufw Conflicts: apparmor-profiles (<< 2.1+1075-0ubuntu4), bind Filename: pool/main/b/bind9/bind9_9.9.5.dfsg-3_i386.deb Size: 280214 MD5sum: b65ece5749f220aa4aec5a93a2f9eb35 SHA1: e05f9b691b867e9e8d787406a62dae0bc9b7607e SHA256: 83741481bee7edda754324d0634c9a6e9ebb22cdd0d7567c62b1d38d9e538217 Description: Internet Domain Name Server Description-md5: afd61d02df1ec6f856b928dfbf6fd201 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: dns-server Package: bind9-doc Priority: optional Section: doc Installed-Size: 1362 Maintainer: LaMont Jones Architecture: all Source: bind9 Version: 1:9.9.5.dfsg-3 Filename: pool/main/b/bind9/bind9-doc_9.9.5.dfsg-3_all.deb Size: 181844 MD5sum: ba4d250e42578ed36c909c4735338cb2 SHA1: 89876fa5216672123cb97148940f677c30aab111 SHA256: 775d6cbfec93ec9f0bc9d3c5aa12f5d5dce85a51e4b6d24353bceebf4f3ce169 Description: Documentation for BIND Description-md5: 329b8ef5cf9ad3d51ce47e6d8d13d75e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: dns-server Package: bind9-host Priority: standard Section: net Installed-Size: 169 Maintainer: LaMont Jones Architecture: i386 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: dnsutils (<< 1:9.0.0), host (<< 1:9.7.0) Provides: host Depends: libbind9-90 (= 1:9.9.5.dfsg-3), libc6 (>= 2.4), libdns100 (= 1:9.9.5.dfsg-3), libisc95 (= 1:9.9.5.dfsg-3), libisccfg90 (= 1:9.9.5.dfsg-3), liblwres90 (= 1:9.9.5.dfsg-3) Conflicts: dnsutils (<< 1:9.0.0), host (<< 1:9.7.0) Filename: pool/main/b/bind9/bind9-host_9.9.5.dfsg-3_i386.deb Size: 45068 MD5sum: ff7bc7709767ad955800f31bbbaa0cf3 SHA1: e31eaedb772b74629fd64f42c89548d65db2cc2c SHA256: b128a6fd02d32077b206216ca525911b75748ab9e438b2c4ea0f3b3b4fcc0cb2 Description: Version of 'host' bundled with BIND 9.X Description-md5: acdae162c721f5d2986f557bdefa1e70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: bind9utils Priority: optional Section: net Installed-Size: 613 Maintainer: LaMont Jones Architecture: i386 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: bind9 (<= 1:9.9.5.dfsg-1) Depends: libbind9-90, libc6 (>= 2.4), libdns100, libisc95, libisccc90, libisccfg90, python, python-argparse Filename: pool/main/b/bind9/bind9utils_9.9.5.dfsg-3_i386.deb Size: 140720 MD5sum: f4251fa002e7bddbe0f9218a42404860 SHA1: 0a02fa97e41a8501578ee48bf4d25170a1a40bd7 SHA256: 43860dfc7b83f3ea8893bd42ab5987f4f79f80488efa9d7ff5f6ef391a9ca5e0 Description: Utilities for BIND Description-md5: 5f6f5621a6edd04ef33a0fe5d2d5bff8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: dns-server Package: binfmt-support Priority: optional Section: admin Installed-Size: 234 Maintainer: Colin Watson Architecture: i386 Version: 2.1.4-1 Depends: libc6 (>= 2.8), libpipeline1 (>= 1.0.0), init-system-helpers (>= 1.13~), lsb-base (>= 4.1+Debian3) Filename: pool/main/b/binfmt-support/binfmt-support_2.1.4-1_i386.deb Size: 46878 MD5sum: 059f600b09ad5f6ce314dc9ef303d37a SHA1: 427a94923e00c50eaaea8e5389cf05b02c0ef945 SHA256: 1329e3cfb74eddf6102ef4a1d1338ae1d9fad206b94b7ca69ba44275800c72fa Description: Support for extra binary formats Multi-Arch: foreign Homepage: http://binfmt-support.nongnu.org/ Description-md5: 29e82a31bb4248987c1cee43d589e134 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-audio Package: binutils Priority: optional Section: devel Installed-Size: 10812 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: i386 Version: 2.24-5ubuntu3 Replaces: binutils-gold (<< 2.20.51.20100415), binutils-mingw-w64-i686 (<< 2.23.52.20130612-1+3), binutils-mingw-w64-x86-64 (<< 2.23.52.20130612-1+3) Provides: binutils-gold, elf-binutils Depends: libc6 (>= 2.11), zlib1g (>= 1:1.2.0) Suggests: binutils-doc (>= 2.24-5ubuntu3) Conflicts: binutils-gold (<< 2.20.51.20100415), binutils-mingw-w64-i686 (<< 2.23.52.20130612-1+3), binutils-mingw-w64-x86-64 (<< 2.23.52.20130612-1+3), elf-binutils, gas, modutils (<< 2.4.19-1) Breaks: binutils-mingw-w64-i686 (<< 2.23.52.20130612-1+3), binutils-mingw-w64-x86-64 (<< 2.23.52.20130612-1+3) Filename: pool/main/b/binutils/binutils_2.24-5ubuntu3_i386.deb Size: 2112050 MD5sum: 6bc953bc68c18c962b27d018e88a5f89 SHA1: 9677dc850d5ad69deae420dafb54f02960a14788 SHA256: b03502d3503c9017e5afd83bc169154573597da6b7935111c75bda92311dd69b Description: GNU assembler, linker and binary utilities Description-md5: fde49b4cfeaad346a6e094f973da28d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: binutils-aarch64-linux-gnu Priority: extra Section: devel Installed-Size: 13958 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: i386 Source: binutils-arm64-cross (0.11) Version: 2.24-1ubuntu1cross0.11 Depends: binutils, libc6 (>= 2.11), zlib1g (>= 1:1.1.4) Suggests: binutils-doc (= 2.24-1ubuntu1cross0.11) Filename: pool/main/b/binutils-arm64-cross/binutils-aarch64-linux-gnu_2.24-1ubuntu1cross0.11_i386.deb Size: 2665454 MD5sum: c19403c0861a2f054e2f6963dc05d4e4 SHA1: dc75d91234edc61e1921b41c7218a630ef3779e1 SHA256: fce153e44b6c0edb6a8d71eabd918b0096e8a6361f07784335d8f69d79808b1c Description: GNU binary utilities, for aarch64-linux-gnu target Description-md5: 4f3566ae5e721ce41d5e747ddb0644a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 17657 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: i386 Source: binutils-armhf-cross (1.98) Version: 2.24-2ubuntu3cross1.98 Depends: binutils, libc6 (>= 2.11), zlib1g (>= 1:1.1.4) Suggests: binutils-doc (= 2.24-2ubuntu3cross1.98) Filename: pool/main/b/binutils-armhf-cross/binutils-arm-linux-gnueabihf_2.24-2ubuntu3cross1.98_i386.deb Size: 3422960 MD5sum: bf0d0a06be90229c68477aa4f802437d SHA1: 72f25dcb6e8f79a57d97383d5904a2b56b6d7acc SHA256: 2ff82298469787676bcf1c149b2167636da1fff162c9a1092dc7eba40b6adda1 Description: GNU binary utilities, for arm-linux-gnueabihf target Description-md5: 1c336f1a0f1cb48756b45db43be0ea57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-dev Priority: extra Section: devel Installed-Size: 10993 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: i386 Source: binutils Version: 2.24-5ubuntu3 Replaces: libbfd-dev, libc5-dev Provides: libbfd-dev Depends: binutils (= 2.24-5ubuntu3) Conflicts: libbfd-dev Filename: pool/main/b/binutils/binutils-dev_2.24-5ubuntu3_i386.deb Size: 1834462 MD5sum: f7c9befd1259024f8ca570b7a4043f63 SHA1: 5779940fbf30e610f1b8ce6aa081557c16a0c25e SHA256: 075398fed9dd763db0e984060a09a7a21133acbc5382f43a0d0c872c6f240db5 Description: GNU binary utilities (BFD development files) Description-md5: ddc22c04156534b000b4f021b88a6023 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-doc Priority: optional Section: doc Installed-Size: 510 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: all Source: binutils Version: 2.24-5ubuntu3 Depends: dpkg (>= 1.15.4) | install-info Suggests: binutils (= 2.24-5ubuntu3) Conflicts: binutils (<< 2.9.1.0.25-3) Filename: pool/main/b/binutils/binutils-doc_2.24-5ubuntu3_all.deb Size: 452092 MD5sum: 3ed018a9af18416740b8025e78ba56b3 SHA1: 174c79bc97b8f55fbae958101e86d59d57d59466 SHA256: 06d3355bfbc497f61d90c9a66904c5798c29c343bff6498859bca74fe9437cb6 Description: Documentation for the GNU assembler, linker and binary utilities Description-md5: 61fd9f95707b9eb9ad8fe9b13a862636 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-multiarch Priority: extra Section: devel Installed-Size: 5999 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: i386 Source: binutils Version: 2.24-5ubuntu3 Depends: libc6 (>= 2.11), zlib1g (>= 1:1.2.0), binutils (= 2.24-5ubuntu3) Filename: pool/main/b/binutils/binutils-multiarch_2.24-5ubuntu3_i386.deb Size: 1404158 MD5sum: 938b8a1770f31484c7f5e1f044279d00 SHA1: 2a15df7f851d9f27613d3e839bea10d0a55bdc34 SHA256: 1332be83f1fbb4016e79a98b6ed5d04439916b05d02311181999be9a61a0ab7d Description: Binary utilities that support multi-arch targets Description-md5: f9de0df7e70bff89b6d3519f04688470 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-multiarch-dev Priority: extra Section: devel Installed-Size: 25 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: i386 Source: binutils Version: 2.24-5ubuntu3 Replaces: binutils-multiarch (<< 2.24-5) Depends: binutils-dev (= 2.24-5ubuntu3), binutils-multiarch (= 2.24-5ubuntu3) Filename: pool/main/b/binutils/binutils-multiarch-dev_2.24-5ubuntu3_i386.deb Size: 1174 MD5sum: cf002cdbfe40cc9ef2a459a3ba2ceb1d SHA1: 39f30b4bc85c5bd14640e76841406bbbb7167687 SHA256: adbea8f741ed182763921759a556ecced8bd8a43bd46b555ab0cd97a6ab36707 Description: GNU binary utilities that support multi-arch targets (BFD development files) Description-md5: adf07629018b12b2492a658992c9a6a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 19650 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: i386 Source: binutils-powerpc-cross (0.10) Version: 2.24-2ubuntu1cross0.10 Depends: binutils, libc6 (>= 2.11), zlib1g (>= 1:1.1.4) Suggests: binutils-doc (= 2.24-2ubuntu1cross0.10) Filename: pool/main/b/binutils-powerpc-cross/binutils-powerpc-linux-gnu_2.24-2ubuntu1cross0.10_i386.deb Size: 4308394 MD5sum: 7cda9d90aa5df69f7dd00beb36d8e17a SHA1: 91088a7fc1acd6f41dbc668931f2ae71326b2333 SHA256: 7dcea0267191711772960c7cc151a5f37d44cce953a77112f06a01b2ccb72452 Description: GNU binary utilities, for powerpc-linux-gnu target Description-md5: b0372e82b679525fd97c0e17e8db82bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-powerpc64le-linux-gnu Priority: extra Section: devel Installed-Size: 19668 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: i386 Source: binutils-ppc64el-cross (0.4) Version: 2.24-2ubuntu3cross0.4 Depends: binutils, libc6 (>= 2.11), zlib1g (>= 1:1.1.4) Suggests: binutils-doc (= 2.24-2ubuntu3cross0.4) Filename: pool/main/b/binutils-ppc64el-cross/binutils-powerpc64le-linux-gnu_2.24-2ubuntu3cross0.4_i386.deb Size: 3828802 MD5sum: da18ae3deb7088814bcea6a6d22978dd SHA1: 227c1dd0f9254f51caaffc52664cef98ae78f158 SHA256: c1b4590f1dcf1d8710a827e69030c13b2194e3e0ce9bb5c28ad7ec5bf4a9f0aa Description: GNU binary utilities, for powerpc64le-linux-gnu target Description-md5: 99e8cb7d295747b431c63aaa6f3c121c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: binutils-source Priority: optional Section: devel Installed-Size: 19069 Maintainer: Ubuntu Core developers Original-Maintainer: Matthias Klose Architecture: all Source: binutils Version: 2.24-5ubuntu3 Depends: texinfo, zlib1g-dev, make, python Filename: pool/main/b/binutils/binutils-source_2.24-5ubuntu3_all.deb Size: 16738212 MD5sum: 4e1ccfc47c9723388ffa86604af90392 SHA1: 0fc253eaea52d92c3c0844877689f995e1fe67b9 SHA256: d2000730e2ebbbf36c10ae78475d08e6e6ca1151e2911d4eedbe888c15746fab Description: GNU assembler, linker and binary utilities (source) Description-md5: acf2f0e289b8b831828996002f7eb6f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: biosdevname Priority: optional Section: misc Installed-Size: 101 Maintainer: Colin Watson Architecture: i386 Version: 0.4.1-0ubuntu6 Depends: libc6 (>= 2.7), libpci3 (>= 1:3.2.1-1), udev Filename: pool/main/b/biosdevname/biosdevname_0.4.1-0ubuntu6_i386.deb Size: 19288 MD5sum: 361336cad1b930cb84d1d791f59a72d7 SHA1: 31c0f48788f0c077dba47a8268fb796e686888a6 SHA256: c13b509a78d36e9182db6fc4468c29fce0bce868c81b2fecdc48e9154f58d540 Description: apply BIOS-given names to network devices Description-md5: f2f6eadace6aa3dd6e4a2c232d2665ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bison Priority: optional Section: devel Installed-Size: 1388 Maintainer: Ubuntu Developers Original-Maintainer: Chuan-kai Lin Architecture: i386 Version: 2:3.0.2.dfsg-2 Depends: m4, libc6 (>= 2.15), libbison-dev (= 2:3.0.2.dfsg-2) Suggests: bison-doc Filename: pool/main/b/bison/bison_3.0.2.dfsg-2_i386.deb Size: 240374 MD5sum: a0aa0fca0dc82fbec17b5843453c29a5 SHA1: fe1ebb3e60358d92b39e0d99c175bf4e1e62a8cf SHA256: bc4e7d68868cd87543fcb05fdf1d0d0c8c651e92506c5f05c054b7e08b73b2d9 Description: YACC-compatible parser generator Multi-Arch: foreign Homepage: http://www.gnu.org/software/bison/ Description-md5: 3b8154d16aa228f689bcd81364e7088c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bison-doc Priority: optional Section: doc Installed-Size: 2623 Maintainer: Ubuntu Developers Original-Maintainer: Chuan-kai Lin Architecture: all Version: 1:3.0.2-1 Replaces: bison (<< 2.2.dfsg-1) Suggests: doc-base Filename: pool/main/b/bison-doc/bison-doc_3.0.2-1_all.deb Size: 1221400 MD5sum: 285b5b64e9d79b33cafd3d21302ae798 SHA1: 98507b7f7704a4f71e773e703fdd5eddc610ec39 SHA256: 46dbc38ee189eee4673732246ae3bc705d82df610f25514d1fb7d818660b8641 Description: Documentation for the Bison parser generator Homepage: http://www.gnu.org/software/bison/ Description-md5: 13fe90eab8084a7e8639929bf1218e17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bittornado Priority: optional Section: net Installed-Size: 634 Maintainer: Ubuntu Developers Original-Maintainer: Cameron Dale Architecture: all Version: 0.3.18-10ubuntu4 Replaces: bittorrent Provides: python-bittornado Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: mime-support, python-crypto Suggests: bittornado-gui, python-psyco Conflicts: bittorrent (<= 3.4.2-2) Filename: pool/main/b/bittornado/bittornado_0.3.18-10ubuntu4_all.deb Size: 129966 MD5sum: 7314ea86bef45f4c65f5e3002293929a SHA1: fb96fd3def55d3477bf6a3b217bca04fbe7d91ca SHA256: 386e2b10c873426aa695e851c09d888f98e3a189fc61c885b3b18ca9fb1034b2 Description: bittorrent client (and tracker) with console and curses interfaces Homepage: http://bittornado.com Description-md5: 369c0fcd3b015c34e46b68ad36098715 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: blt Priority: optional Section: libs Installed-Size: 2387 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Version: 2.4z-7ubuntu2 Replaces: blt-common, blt-demo (<< 2.4i-1), blt-dev (<< 2.4z-3), blt4.2, blt8.0, blt8.0-unoff Provides: blt-common Depends: libc6 (>= 2.7), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0), libx11-6 Suggests: blt-demo Conflicts: blt-common, blt4.2, blt8.0, blt8.0-unoff Filename: pool/main/b/blt/blt_2.4z-7ubuntu2_i386.deb Size: 540204 MD5sum: 46d7624c747ba806548f346312f414f4 SHA1: 3db7bc13787c9e340e682a4cf78aaaafd418b32e SHA256: c3fed1bf679127ccd785f3ca8292760944100405d33571e51a331a3ca14dc857 Description: graphics extension library for Tcl/Tk - run-time package Homepage: http://blt.sourceforge.net/ Description-md5: 56096f2217f06b9d3cf932028cad2bd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: blt-dev Priority: extra Section: devel Installed-Size: 1991 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: blt Version: 2.4z-7ubuntu2 Replaces: blt (<< 2.4i-1), blt4.2, blt4.2-dev, blt8.0-unoff Depends: blt (= 2.4z-7ubuntu2), tk8.6-dev, tcl8.6-dev Suggests: blt-demo Conflicts: blt8.0-dev, blt8.0-unoff Filename: pool/main/b/blt/blt-dev_2.4z-7ubuntu2_i386.deb Size: 711656 MD5sum: 56af8628de4ba8be5c40b8ccc1432939 SHA1: 9b4847117ad72f85ab43085642fd71fcd47a4c6d SHA256: 3c4fdeba37054dbbc72d2e588415d9c1e0a270cda29c19a6d959bb3eff4f342b Description: graphics extension library for Tcl/Tk - development files Homepage: http://blt.sourceforge.net/ Description-md5: 44af66f352120a6c751bc742de4a0748 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bluez Priority: optional Section: admin Installed-Size: 2405 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: i386 Version: 4.101-0ubuntu13 Replaces: bluez-audio (<= 3.36-3), bluez-input, bluez-network, bluez-serial, bluez-utils (<= 3.36-3), udev (<< 170-1) Depends: libc6 (>= 2.15), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.28.0), libreadline6 (>= 6.0), libudev1 (>= 183), libusb-0.1-4 (>= 2:0.1.12), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), module-init-tools, udev (>= 170-1), lsb-base, dbus, python3-dbus Suggests: bluez-hcidump Conflicts: bluez-audio (<= 3.36-3), bluez-utils (<= 3.36-3) Breaks: udev (<< 170-1) Filename: pool/main/b/bluez/bluez_4.101-0ubuntu13_i386.deb Size: 579728 MD5sum: 2875db161994545df9ea7369f96f171c SHA1: 8a59a2145441f3a2c043fc27dd3b2c534e4d01ae SHA256: 17fdaa730b817f095675c9aedd42c3b0f7293aaad5fa17ad25d25cd64ec9a9c4 Description: Bluetooth tools and daemons Multi-Arch: foreign Homepage: http://www.bluez.org Description-md5: ef25d6a9f4a57e78f32faa7b58ef4e59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: bluez-alsa Priority: optional Section: admin Installed-Size: 371 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: i386 Source: bluez Version: 4.101-0ubuntu13 Replaces: bluez-audio Depends: libasound2 (>= 1.0.16), libc6 (>= 2.15), bluez Filename: pool/main/b/bluez/bluez-alsa_4.101-0ubuntu13_i386.deb Size: 80392 MD5sum: 9fb6f7fd98e131093d6e256311afa2bd SHA1: 5e927c63f255cae7b652bacb58a8892315436802 SHA256: 18d8ba18eec6d6aae48916fe7b53504b008914c2a6bd5c9d5045957bed2ed57c Description: Bluetooth ALSA support Multi-Arch: same Homepage: http://www.bluez.org Description-md5: 930bafabe25000357ec6aaca35e4d911 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: bluez-cups Priority: optional Section: admin Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: i386 Source: bluez Version: 4.101-0ubuntu13 Depends: libc6 (>= 2.15), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.28), cups Filename: pool/main/b/bluez/bluez-cups_4.101-0ubuntu13_i386.deb Size: 58072 MD5sum: 13855296e8241304c1792b5193584f55 SHA1: 3dabb4379fa62ff39bcf70268fae9617bb46b02c SHA256: 8b034b24e97d8f47736cd19f7c6343bbd5e7ece6884c357985a15940c75af330 Description: Bluetooth printer driver for CUPS Homepage: http://www.bluez.org Description-md5: 4e5f0a66844f2292ecbf023e856b77d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: bluez-dbg Priority: extra Section: debug Installed-Size: 4853 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: i386 Source: bluez Version: 4.101-0ubuntu13 Depends: bluez (= 4.101-0ubuntu13), libbluetooth3-dbg (= 4.101-0ubuntu13) Filename: pool/main/b/bluez/bluez-dbg_4.101-0ubuntu13_i386.deb Size: 1241844 MD5sum: 4fdc74e428b75b81ef3741c3a16a58d1 SHA1: 4808a118510b9bc29cb506d28ef09eaccc9e51c2 SHA256: 17837ebe84bf5c96506db5a25575c669446bf88c70614fa566f8b913b9b7e5ce Description: Bluetooth tools and daemons (with debugging symbols) Homepage: http://www.bluez.org Description-md5: e8e0a3eaa44ef0a0697e2a30ce6147e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bogl-bterm Priority: optional Section: utils Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Samuel Thibault Architecture: i386 Source: bogl Version: 0.1.18-9ubuntu1 Depends: libc6 (>= 2.15), ncurses-term (>= 5.9-7) Filename: pool/main/b/bogl/bogl-bterm_0.1.18-9ubuntu1_i386.deb Size: 27700 MD5sum: 5ffdd11415cbd597f2a2caaf130afd62 SHA1: 8183fb6d1955e7bbbd97e5528b96376d386a11ac SHA256: cbc4d148643cc8f071cf45942bac9a3accb28c099e6931df7ab0d49b4e0965e0 Description: Ben's Own Graphics Library - graphical terminal Description-md5: fe97701510fdc5e5e434e93cc1a3672c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bonnie++ Priority: optional Section: utils Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Russell Coker Architecture: i386 Version: 1.97.1 Replaces: bonnie, zcav Provides: bonnie, zcav Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: bonnie, bonnie++, zcav Filename: pool/main/b/bonnie++/bonnie++_1.97.1_i386.deb Size: 65832 MD5sum: 523470dfed3fbac3cea9f12cd1eb4a48 SHA1: ef54f2797184fe5e9bf8646516502e81a6f6cea4 SHA256: f4325cbdba2fc75df4bc71815e6c9c993143820de5ca5471dc68fced10db127e Description: Hard drive benchmark suite Description-md5: a0ce87e811bb566159dfb37f3f86a518 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: branding-ubuntu Priority: optional Section: graphics Installed-Size: 1219 Maintainer: Scott Ritchie Architecture: all Version: 0.8 Provides: branding Filename: pool/main/b/branding-ubuntu/branding-ubuntu_0.8_all.deb Size: 370914 MD5sum: bc91fe135775bea46bc48d6fda7ed5b6 SHA1: f56f42726982465d342364a83ff989327ac47889 SHA256: 77922f058ea88784939c364a3beb39182044c84ccdadf5efd7f21e33de3c7be2 Description: Replacement artwork with Ubuntu branding Homepage: https://wiki.ubuntu.com/branding Description-md5: dcdbf2a78f33302112c02c85585f54cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: brasero Priority: optional Section: gnome Installed-Size: 1063 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.10.0-0ubuntu1 Depends: libbrasero-media3-1 (= 3.10.0-0ubuntu1), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.0.0), libice6 (>= 1:1.0.0), libnautilus-extension1a (>= 1:2.91), libpango-1.0-0 (>= 1.14.0), libsm6, libtotem-plparser18 (>= 3.10.0), libxml2 (>= 2.7.4), gstreamer1.0-plugins-base (>= 0.11.92), gnome-icon-theme, gvfs, brasero-common (= 3.10.0-0ubuntu1) Recommends: brasero-cdrkit, yelp Suggests: vcdimager, libdvdcss2 Conflicts: nautilus-cd-burner Filename: pool/main/b/brasero/brasero_3.10.0-0ubuntu1_i386.deb Size: 152260 MD5sum: 391c28bb24e6f944490505128381025a SHA1: 711ce38361979417df371225382a95bc7449a196 SHA256: 520940420f760b8be20b4121f30d93c9d9e4c1647b20280ad81095fdc2cafa67 Description: CD/DVD burning application for GNOME Homepage: http://www.gnome.org/projects/brasero/ Description-md5: f8b587a21ec167a346c66c4d208477cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: brasero-cdrkit Priority: optional Section: gnome Installed-Size: 688 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: brasero Version: 3.10.0-0ubuntu1 Replaces: libbrasero-media3-1 (<< 3.8.0-1) Depends: libbrasero-media3-1 (= 3.10.0-0ubuntu1), libc6 (>= 2.7), libglib2.0-0 (>= 2.29.14), libgstreamer1.0-0 (>= 1.0.0), libxml2 (>= 2.7.4), genisoimage, growisofs, wodim Suggests: dvdauthor, readom Breaks: libbrasero-media3-1 (<< 3.8.0-1) Filename: pool/main/b/brasero/brasero-cdrkit_3.10.0-0ubuntu1_i386.deb Size: 33176 MD5sum: 0e0629d47a82bc99d048b7c155b6ffaa SHA1: 96f706a152c917a33e3c386518366719ca9e3b3f SHA256: 1fa9ea1f80d1b9e6ec7615cd1dac32fd476f9f60910098672ad4e72a33d0e782 Description: cdrkit extensions for the Brasero burning application Homepage: http://www.gnome.org/projects/brasero/ Description-md5: f665c5ddfb353765cb64ff49e7f6bc98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: brasero-common Priority: optional Section: gnome Installed-Size: 2128 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: brasero Version: 3.10.0-0ubuntu1 Replaces: brasero (<< 2.26) Depends: dconf-gsettings-backend | gsettings-backend Breaks: brasero (<< 2.26) Filename: pool/main/b/brasero/brasero-common_3.10.0-0ubuntu1_all.deb Size: 284256 MD5sum: ef3e3c02803a08b7145475245dc8c786 SHA1: db25e089e0cd29cfc4aebb431a3566c84d03d7db SHA256: b7ff767d435085004f7df39d51d12fe37d7cf0ce81c918b3b754e2d0019eb9a9 Description: Common files for the Brasero CD burning application and library Homepage: http://www.gnome.org/projects/brasero/ Description-md5: 4606bf022bac975b6e53bb64c48943d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: bridge-utils Priority: optional Section: net Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Garcia Mantinan Architecture: i386 Version: 1.5-6ubuntu2 Depends: libc6 (>= 2.7) Suggests: ifupdown, net-tools Conflicts: ifupdown (<< 0.6.0) Filename: pool/main/b/bridge-utils/bridge-utils_1.5-6ubuntu2_i386.deb Size: 29128 MD5sum: 25736efe9651212cf93772ee6ee96b04 SHA1: d3304771fe7e4e74485136affca1c86aec0f928b SHA256: a4c87b760cbf1fe987c02012ac69b5d055d6ef7ef8ed9250c70aaa138521f1c3 Description: Utilities for configuring the Linux Ethernet bridge Multi-Arch: foreign Description-md5: bc06a038a6315377cf0871ca4de79aac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: brltty Priority: extra Section: admin Installed-Size: 6976 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Version: 5.0-2ubuntu2 Replaces: libbrlapi1 (<< 3.7.2-7.1) Depends: libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.17), libgpm2 (>= 1.20.4), libicu52 (>= 52~m1-1~), libncursesw5 (>= 5.6+20070908), libtinfo5, init-system-helpers (>= 1.13~), lsb-base (>= 3.2-14), initramfs-tools (>= 0.40ubuntu30) Recommends: python3 Suggests: brltty-speechd, brltty-x11, console-braille Breaks: udev (<< 136-1) Filename: pool/main/b/brltty/brltty_5.0-2ubuntu2_i386.deb Size: 1079344 MD5sum: b51b90c4beb660d112a8d9e914baa91f SHA1: dec73f91912ae5e2e4af614e0bd757533f4a7c87 SHA256: 30d747ead2b55fd786ae806abe86a191bf0a987a68661086a256271bd0ec2c51 Description: Access software for a blind person using a braille display Homepage: http://mielke.cc/brltty/ Description-md5: a37f99c1cd1793507aa1485689256c9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: brltty-dbg Priority: extra Section: debug Installed-Size: 4199 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: brltty Version: 5.0-2ubuntu2 Depends: brltty (= 5.0-2ubuntu2) Filename: pool/main/b/brltty/brltty-dbg_5.0-2ubuntu2_i386.deb Size: 1027470 MD5sum: e9d1834e9c4ae0010b4f49182b7ca85c SHA1: c1ebeded2095516aa5b4104071153793650ec35b SHA256: 9af6a5af8df2fcbcefc9baa6de409b79268659d7e53ac4b6bf242ffbd8f9ff29 Description: debugging symbols for brltty Homepage: http://mielke.cc/brltty/ Description-md5: ac1ac77ad2a46d315e305a5db2a19a1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bsd-mailx Priority: optional Section: mail Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: i386 Version: 8.1.2-0.20131005cvs-1 Replaces: mailx (<< 1:20071201) Provides: mail-reader, mailx Depends: base-files (>= 2.2.0), default-mta | mail-transport-agent, libbsd0 (>= 0.2.0), libc6 (>= 2.8), liblockfile1 (>= 1.0) Breaks: mailutils (<< 1:1.1+dfsg1-4), mailx (<< 1:20071201) Filename: pool/main/b/bsd-mailx/bsd-mailx_8.1.2-0.20131005cvs-1_i386.deb Size: 64602 MD5sum: 550cd7c658aa324aa614aa59a4aa4e0f SHA1: 4443ff9234ba88a91399c5772d9de435ef7dce9c SHA256: 0f187e8ff58f5e72c2609899f844812d9e5994e4c3e90787a1bb0308bb1a27f0 Description: simple mail user agent Description-md5: 6a40d16f64cad8f0f3874f11989dc9c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: bsdmainutils Priority: standard Section: utils Installed-Size: 533 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bsdmainutils Team Architecture: i386 Version: 9.0.5ubuntu1 Depends: libc6 (>= 2.4), libtinfo5, bsdutils (>= 3.0-0), debianutils (>= 1.8) Suggests: cpp, wamerican | wordlist, whois, vacation Breaks: bsdutils (<< 1:2.13-11) Filename: pool/main/b/bsdmainutils/bsdmainutils_9.0.5ubuntu1_i386.deb Size: 197238 MD5sum: 858275eac7c37c6524265a9176838092 SHA1: d2f224313127014414d5db43867d426682a215ea SHA256: 7ece3f1120fd084d4efb31db2acfc0d0f65851977d3678e8fc40ec05092cbef8 Description: collection of more utilities from FreeBSD Multi-Arch: foreign Description-md5: 156725110b9d8b7a144a6b1a40ed5446 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: bsdutils Essential: yes Priority: required Section: utils Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: i386 Source: util-linux (2.20.1-5.1ubuntu20) Version: 1:2.20.1-5.1ubuntu20 Depends: libc6 (>= 2.7) Recommends: bsdmainutils Filename: pool/main/u/util-linux/bsdutils_2.20.1-5.1ubuntu20_i386.deb Size: 34094 MD5sum: 73ff628cb1a4b3690ef8e78424c99cac SHA1: 760a6a88f4f6e5a2dd9e49e2f1f673f5109155cc SHA256: 8664421e13d4bd4f4e630dbc349815ccb23236d8d22adf17ecc98fb943b45ef0 Description: Basic utilities from 4.4BSD-Lite Multi-Arch: foreign Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 1bf4bce740174530b7953a9832a5268e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: bsh Priority: optional Section: devel Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.0b4-15 Depends: default-jre-headless | java1-runtime-headless | java2-runtime-headless, libjline-java, libbsh-java (= 2.0b4-15) Suggests: bsh-doc, default-jre | java1-runtime | java2-runtime, libservlet3.0-java Filename: pool/main/b/bsh/bsh_2.0b4-15_all.deb Size: 4402 MD5sum: 3d8221b28424b0b7e8dc43e57181d76f SHA1: 3d5a70f952bde09062413a118fde9115a1145159 SHA256: eb102634bce7d5b27ef9f446ac976eea6ddfa80d16728ef7a39abc2df1aafa0c Description: Java scripting environment (BeanShell) Version 2 Enhances: libbsf-java Homepage: http://www.beanshell.org Description-md5: 7344effde5b85638644be4f2f28d5c66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bsh-doc Priority: optional Section: doc Installed-Size: 3690 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bsh Version: 2.0b4-15 Recommends: default-jdk-doc Suggests: bsh Filename: pool/main/b/bsh/bsh-doc_2.0b4-15_all.deb Size: 339388 MD5sum: a788bfd6a5408a9d5e75b594a54ae0f1 SHA1: 995cd833230ebcbae201d9298e90504a449ade09 SHA256: c35f6a4bdf39dacf4bcf7a95dc44595b1e88e41179ce61da38244c0019352e69 Description: Documentation for bsh Homepage: http://www.beanshell.org Description-md5: 185310e44d4c9d8cbde45a7662aad306 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: btrfs-tools Priority: optional Section: admin Installed-Size: 2633 Maintainer: Ubuntu Developers Original-Maintainer: Dimitri John Ledkov Architecture: i386 Version: 3.12-1 Depends: e2fslibs (>= 1.42), libblkid1 (>= 2.17.2), libc6 (>= 2.7), libcomerr2 (>= 1.01), liblzo2-2, libuuid1 (>= 2.16), zlib1g (>= 1:1.2.0) Filename: pool/main/b/btrfs-tools/btrfs-tools_3.12-1_i386.deb Size: 364996 MD5sum: 2471fcfdae51326b0ec8489e22a15a63 SHA1: ec99c3da2d305ace300601dcff88d1fa912ce5c0 SHA256: fb8daaac48a2987c36183abb58d78a24d6f9f62f4b7cebbbbfa66d239257d222 Description: Checksumming Copy on Write Filesystem utilities Homepage: http://btrfs.wiki.kernel.org/ Description-md5: b373529b44d89311deab77020f34ab70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, xubuntu-live, mythbuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: btrfs-tools-dbg Priority: extra Section: debug Installed-Size: 4062 Maintainer: Ubuntu Developers Original-Maintainer: Dimitri John Ledkov Architecture: i386 Source: btrfs-tools Version: 3.12-1 Depends: btrfs-tools (= 3.12-1) Filename: pool/main/b/btrfs-tools/btrfs-tools-dbg_3.12-1_i386.deb Size: 3289388 MD5sum: 9d5c7f3b8c1ac0be88e1600fe3437cf5 SHA1: 4b116045b17f1ffd27e4d54d28d3f2f8e447cf93 SHA256: 2ee6d5e83282751b2838057678c17ea19ad02c67991f0b1f3d46d704aee9ad93 Description: Checksumming Copy on Write Filesystem utilities (debug) Homepage: http://btrfs.wiki.kernel.org/ Description-md5: 4af127eb36ab33d39c76f1b8545ca586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: build-essential Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Version: 11.6ubuntu6 Depends: libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5) Filename: pool/main/b/build-essential/build-essential_11.6ubuntu6_i386.deb Size: 4824 MD5sum: 8e9771ec60a86566ea75cbcc9b52eef6 SHA1: 45eacaa897909d2c9d6a0fecc9850bae947455eb SHA256: 5d9aac78a8022a99a90f2bc5e9fa84c53eee67ec9530147937dad7a675888ebf Description: Informational list of build-essential packages Description-md5: 90ef0ef86cafda0bd16f746eb621d9da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Package: busybox-initramfs Priority: required Section: shells Installed-Size: 339 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: i386 Source: busybox Version: 1:1.21.0-1ubuntu1 Replaces: busybox-cvs-initramfs Depends: libc6 (>= 2.11) Conflicts: busybox-cvs-initramfs Filename: pool/main/b/busybox/busybox-initramfs_1.21.0-1ubuntu1_i386.deb Size: 171794 MD5sum: 90a52a6611395e6ecf878445e6675ccd SHA1: ac798a1bc17f2bf07a56ea9d48bdc6e2caa1992c SHA256: c0db9b16dce1c86cd13263c1e25a1a377f7b7432de9a98cac41c0c6c55df6d11 Description: Standalone shell setup for initramfs Homepage: http://www.busybox.net Description-md5: 07bc91bcf5e1da8f300c48c3d990ca10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: busybox-static Priority: standard Section: shells Installed-Size: 1784 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: i386 Source: busybox Version: 1:1.21.0-1ubuntu1 Replaces: busybox Conflicts: busybox Filename: pool/main/b/busybox/busybox-static_1.21.0-1ubuntu1_i386.deb Size: 912890 MD5sum: 256a4d4af9924df38861a7e206472fa3 SHA1: 8a8c7a27bc22b3c54837538ad5f2ad5cbe38c05b SHA256: 694488f848e66540bc9259ca5e5656ef83e42315edcca29f8e765be7405f3079 Description: Standalone rescue shell with tons of builtin utilities Homepage: http://www.busybox.net Description-md5: 1ccce12e08e4aa13a2e6bdd5ffb85b65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-live Package: byacc-j Priority: extra Section: devel Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Claude Architecture: i386 Version: 1.15-1build2 Depends: libc6 (>= 2.4) Filename: pool/main/b/byacc-j/byacc-j_1.15-1build2_i386.deb Size: 55574 MD5sum: 81a17d4bb93a0161e2c481ed8a993aae SHA1: 001ebd01ea9bc9adbb5fb1be9bc3682d341bd5ad SHA256: 6cbac337b90263a8ad376af43f33da285fde78894dc7f5db2a882e941a428606 Description: Berkeley YACC parser generator extended to generate Java code Homepage: http://byaccj.sourceforge.net/ Description-md5: 42880c5a059007b8a9f0571727aa92aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: byobu Priority: optional Section: misc Installed-Size: 629 Maintainer: Dustin Kirkland Architecture: all Version: 5.77-0ubuntu1 Replaces: byobu-extras (<< 2.17), screen-profiles (<< 2.0), screen-profiles-extras (<< 2.0) Provides: byobu-extras, screen-profiles, screen-profiles-extras Depends: debconf (>= 0.5) | debconf-2.0, gettext-base, python3 | python, python3-newt | python-newt, tmux (>= 1.5) | screen, gawk Recommends: screen, tmux (>= 1.5), run-one Suggests: apport, lsb-release, po-debconf, ttf-ubuntu-font-family (>= 0.80-0ubuntu1~medium), update-notifier-common, vim, w3m Breaks: byobu-extras (<< 2.17), screen-profiles (<< 2.0), screen-profiles-extras (<< 2.0) Filename: pool/main/b/byobu/byobu_5.77-0ubuntu1_all.deb Size: 102636 MD5sum: 9548ba592315dc89e7ea9473b645fd1f SHA1: a26e69b55edd8763fd36d5bba30b989fbbcd29a5 SHA256: d841f50903a596f4b9685fe20f46e8cf5fac3c75e473bb2c81d3e43442ba216e Description: powerful, text based window manager and shell multiplexer Enhances: screen Homepage: http://byobu.co Description-md5: 024f61f4fb7dd0808208a74ed4c03472 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-usb Package: bzip2 Priority: important Section: utils Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 1.0.6-5 Replaces: libbz2 (<< 0.9.5d-3) Depends: libbz2-1.0 (= 1.0.6-5), libc6 (>= 2.4) Suggests: bzip2-doc Filename: pool/main/b/bzip2/bzip2_1.0.6-5_i386.deb Size: 37406 MD5sum: 6f111b8de1ced3689c064eb82789f004 SHA1: f66a080603118487af83ccc15c63ade5f57e6d71 SHA256: 8621716057d35b31d282d0fb3f32d4aa7388b86e798eac7af6f6235bb4c96c6b Description: high-quality block-sorting file compressor - utilities Multi-Arch: foreign Homepage: http://www.bzip.org/ Description-md5: 26e9d96b611ed3cf741ba7007fd4f233 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: bzip2-doc Priority: optional Section: doc Installed-Size: 427 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: all Source: bzip2 Version: 1.0.6-5 Replaces: bzip2 (<< 1.0.4-0ubuntu2) Depends: dpkg (>= 1.15.4) | install-info Filename: pool/main/b/bzip2/bzip2-doc_1.0.6-5_all.deb Size: 297686 MD5sum: db43a6135d2c44b28953d54982322bf2 SHA1: 7e72bce1fda96eaa9e7b2e440c97777e62acfe2b SHA256: f41627754c65889e4559dd85f1d0d13b4d4c4df9888e6b3b9ec9b641d3f0dc47 Description: high-quality block-sorting file compressor - documentation Homepage: http://www.bzip.org/ Description-md5: 0a6a95149555ae52f2f3730b1a531c1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bzr Priority: optional Section: devel Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: all Version: 2.6.0+bzr6593-1ubuntu1 Depends: python-bzrlib (<= 2.6.0+bzr6593-1ubuntu1.1~), python-bzrlib (>= 2.6.0+bzr6593-1ubuntu1), python:any Recommends: python-gpgme Suggests: bzr-doc, bzrtools, python-bzrlib.tests Breaks: bzr-pqm (<< 1.4.0~bzr80), bzr-xmloutput (<< 0.8.8+bzr160), python-bzrlib (<< 2.4.0~beta3~) Filename: pool/main/b/bzr/bzr_2.6.0+bzr6593-1ubuntu1_all.deb Size: 37350 MD5sum: 8eca9b9925b1171995950957d625da21 SHA1: 22b7610ef97e23c1ab0eb0d984aedaa0cf6c597b SHA256: 3c3daca071c9742b7d4c67e061ed2fbf2896a0a22b9d040a267637fcdc502cc6 Description: easy to use distributed version control system Homepage: http://bazaar-vcs.org Description-md5: f32d9f21ee4179ce03ee1a7b140a6942 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: bzr-doc Priority: optional Section: doc Installed-Size: 12879 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: all Source: bzr Version: 2.6.0+bzr6593-1ubuntu1 Replaces: bzr (<< 2.0.1) Depends: libjs-sphinxdoc (>= 1.0) Suggests: bzr Breaks: bzr (<< 2.0.1) Filename: pool/main/b/bzr/bzr-doc_2.6.0+bzr6593-1ubuntu1_all.deb Size: 3810730 MD5sum: 6696cb0f3d2cee40c5b31a6c772c8c23 SHA1: 0aff35a6f00c863e8e4275cceafbc898d1406713 SHA256: fc9d05e7b25772dc054fcbc3a7135bdb94ee0e95f8ef915125fa32276ab8e0eb Description: easy to use distributed version control system (documentation) Homepage: http://bazaar-vcs.org Description-md5: be78b3437844e0c0ae751828fbde0ee3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: bzrtools Priority: optional Section: devel Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: all Version: 2.6.0-1 Depends: bzr (<< 2.7.0), bzr (>= 2.6~), patch, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: rsync Suggests: graphviz, librsvg2-bin Filename: pool/main/b/bzrtools/bzrtools_2.6.0-1_all.deb Size: 47280 MD5sum: 876c6763123bb3972e3155ed3be88d04 SHA1: 5b4aa7d89d892e16789dea3081e63a1378ac902b SHA256: bd6c07ffd10dc237a62d670dbbf30406e0295550587b339f1f80f9736c700883 Description: Collection of tools for bzr Homepage: http://bazaar-vcs.org/BzrTools Description-md5: 6c07f8b9822c3077213cf19f6c40285b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ca-certificates Priority: standard Section: misc Installed-Size: 432 Maintainer: Ubuntu Developers Original-Maintainer: Michael Shuler Architecture: all Version: 20130906ubuntu2 Depends: openssl (>= 1.0.0), debconf (>= 0.5) | debconf-2.0 Breaks: ca-certificates-java (<< 20121112+nmu1) Filename: pool/main/c/ca-certificates/ca-certificates_20130906ubuntu2_all.deb Size: 174738 MD5sum: ffc121a2863735a5e6f476a9291b6676 SHA1: 1f3e543caddf2bcfb81c4400ded151b8ce5fc359 SHA256: eae233fd19efe1c789d675c95e47631ddc59b26ffa219ecc1a418e28c3db92f1 Description: Common CA certificates Enhances: openssl Multi-Arch: foreign Description-md5: 085a1b1af3f2d16012dfc750cd9aedc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: ca-certificates-java Priority: optional Section: misc Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 20130815ubuntu1 Depends: ca-certificates (>= 20121114), openjdk-7-jre-headless (>= 7~u3-2.1.1~pre1-1) | java6-runtime-headless, libnss3 (>= 3.12.9+ckbi-1.82-0ubuntu3~) Filename: pool/main/c/ca-certificates-java/ca-certificates-java_20130815ubuntu1_all.deb Size: 13390 MD5sum: efc4948adfc7855968db71d52b181af0 SHA1: 4c8f66d50640d7b767e5122e34cd0653e0f89886 SHA256: 51ed9489be99ffff5a23201a23db9dd8b844e40fda50788465adc11383efebf0 Description: Common CA certificates (JKS keystore) Multi-Arch: foreign Description-md5: 304cd3554728e5d076f8ecbb3b5057d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: camlp4 Priority: optional Section: devel Installed-Size: 64791 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Source: ocaml Version: 4.01.0-3ubuntu3 Provides: camlp4-4.01.0 Depends: libc6 (>= 2.15), ocaml-nox-4.01.0 Filename: pool/main/o/ocaml/camlp4_4.01.0-3ubuntu3_i386.deb Size: 10051260 MD5sum: a347c80d9942436dd35834e4d9e185d3 SHA1: 1797121b8b9589012e1fc25220249b87ce23a3a3 SHA256: 7bae58ac70b83bf5cc8966dfd0ec157c8f4e6c8d3271cb6f1519374bd5970cdf Description: Pre Processor Pretty Printer for OCaml Homepage: http://caml.inria.fr/ Description-md5: d3db06397da6a350ee47d34809fee848 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: camlp5 Priority: extra Section: devel Installed-Size: 18636 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Version: 6.11+dfsg-3 Replaces: ocaml-nox (<< 3.10.0) Provides: camlp5-2by42 Depends: ocaml-compiler-libs, ocaml-nox-4.01.0, libc6 (>= 2.7) Suggests: ocaml-findlib Breaks: ocaml-nox (<< 3.10.0) Filename: pool/main/c/camlp5/camlp5_6.11+dfsg-3_i386.deb Size: 2024224 MD5sum: 115c114b61dacc7dcf4d54543d0245c9 SHA1: 590c115bef060117a7099bd946fe55fe97052e81 SHA256: bb9e1588b47a81925b4706cfd91e35a59d9c920bd0d1c71eaf671bcdd8db939e Description: Pre Processor Pretty Printer for OCaml - classical version Homepage: http://pauillac.inria.fr/~ddr/camlp5/ Description-md5: 1113a8e1433440e62f5174bc5b44ee5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: casper Priority: extra Section: misc Installed-Size: 254 Maintainer: Ubuntu Developers Architecture: i386 Version: 1.340 Depends: libc6 (>= 2.8), libplymouth2 (>= 0.8.0~-13~ppa1), initramfs-tools (>= 0.92bubuntu55), busybox-initramfs (>= 1:1.1.3-4ubuntu3), dmsetup, user-setup, sudo, eject, uuid-runtime, localechooser-data (>= 2.03ubuntu1), util-linux (>= 2.15-1), file, lzma, udev (>= 174), cifs-utils Conflicts: live-initramfs, usplash (<< 0.4-43) Breaks: genext2fs (<< 1.4.1) Filename: pool/main/c/casper/casper_1.340_i386.deb Size: 42048 MD5sum: 21aac3711180f81b8518144db4fcdd1f SHA1: e3ead6e96fe1a4d9a54c6084f0e7a9bd4f6d9e34 SHA256: cf88c8c7db584652b12ad59029205ab2025766344e9dfde5a294561f75b55132 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 Description-md5: 9be0120948307c7e897a16c45a69ba0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-live Package: ccache Priority: optional Section: devel Installed-Size: 250 Maintainer: Ubuntu Developers Original-Maintainer: Y Giridhar Appaji Nag Architecture: i386 Version: 3.1.9-1 Depends: libc6 (>= 2.8), zlib1g (>= 1:1.1.4) Suggests: distcc Filename: pool/main/c/ccache/ccache_3.1.9-1_i386.deb Size: 76674 MD5sum: 13981df37045256323820de4264c649e SHA1: 9971f17260cdf93b1959c8addd04068b24614212 SHA256: 49108fffa7d776d27b155568cd3b970ca6c290938339a3d067e6cbc660a87dc9 Description: Compiler cache for fast recompilation of C/C++ code Homepage: http://ccache.samba.org Description-md5: 25eb84ff8138d0e37480a4434b1571e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cdbs Priority: optional Section: devel Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: CDBS Hackers Architecture: all Version: 0.4.122ubuntu2 Depends: dh-translations, python-scour Recommends: autotools-dev Suggests: devscripts Filename: pool/main/c/cdbs/cdbs_0.4.122ubuntu2_all.deb Size: 42102 MD5sum: 970eb873b3d7de645dacbb4042816e47 SHA1: 4cc9986391a76d01c7a6582e2dcc8a4dd724c675 SHA256: 633baad09f8e1348c82d1c78b7fb14675700e675be41eeb4a93054b716d56276 Description: common build system for Debian packages Multi-Arch: foreign Description-md5: 600297a26a1bc2bcf29442cdb6deb9f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cdebconf Priority: extra Section: utils Installed-Size: 487 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: i386 Version: 0.187ubuntu1 Provides: debconf-2.0 Depends: libc6 (>= 2.8), libdebian-installer4 (>= 0.88ubuntu2), libnewt0.52, libslang2 (>= 2.2.4), libtextwrap1, debconf, dpkg (>= 1.15.4) Suggests: cdebconf-gtk Filename: pool/main/c/cdebconf/cdebconf_0.187ubuntu1_i386.deb Size: 130424 MD5sum: 86bf83ba9e1db888084976e56244d7ef SHA1: 1464b1c7dcbb0183069e3d186923575796e58ed7 SHA256: 980d7ab30d07f7ed0f8493c5db87a3cd68a412ee12daa53519dd2c84bb78bdcc Description: Debian Configuration Management System (C-implementation) Description-md5: 19ca11018968935708d0ed3262e5aa67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cdparanoia-dbg Priority: extra Section: devel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: i386 Source: cdparanoia Version: 3.10.2+debian-11 Depends: libcdparanoia0 (= 3.10.2+debian-11), libcdparanoia-dev (= 3.10.2+debian-11) Filename: pool/main/c/cdparanoia/cdparanoia-dbg_3.10.2+debian-11_i386.deb Size: 10468 MD5sum: 05052a794f44b3445119f61075edfde6 SHA1: 03bf40314382b62d53a303bed3355980b43779fe SHA256: 3f0f78f8c11d97226b7f9c31cfcad0111e9ba46596a6d70876fb25072f663674 Description: audio extraction tool for sampling CDs (debug) Homepage: http://www.xiph.org/paranoia/ Description-md5: 6dcdd1263c2603bc6d0187c6de49d078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cdrkit-doc Priority: optional Section: doc Installed-Size: 263 Maintainer: Ubuntu Developers Original-Maintainer: Joerg Jaspert Architecture: all Source: cdrkit Version: 9:1.1.11-2ubuntu3 Replaces: cdrtools-doc Suggests: wodim, genisoimage, icedax Conflicts: cdrtools-doc Filename: pool/main/c/cdrkit/cdrkit-doc_1.1.11-2ubuntu3_all.deb Size: 141344 MD5sum: 5755eaf4e89e09a50a9dcb7a6340235a SHA1: 98f50d0f4dc110e80dfc8c57cb70c1fcbb975b84 SHA256: c1d6967b0b88099c5d7f5847913998f7fb896cb96034d467c9cd184d9acf5c00 Description: Documentation for the cdrkit package suite Description-md5: de4ca130903a6946310802d51064b32e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ceilometer-agent-central Priority: optional Section: python Installed-Size: 43 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: ceilometer-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/c/ceilometer/ceilometer-agent-central_2014.1-0ubuntu1_all.deb Size: 2658 MD5sum: 3e6f5062139e561066d1f3399777bbb9 SHA1: d1b04197ba8333be23b6231b9b5940319783b706 SHA256: 20494a471b914b6f46ed34cfd4d8a59ab343960423ff185db465e11275233a89 Description: ceilometer central agent Description-md5: 3038fa1055e9879da6f132abe24ba6a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceilometer-agent-compute Priority: optional Section: python Installed-Size: 43 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: ceilometer-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/c/ceilometer/ceilometer-agent-compute_2014.1-0ubuntu1_all.deb Size: 2654 MD5sum: 208dff107b791671515a9c9f5a36f3a2 SHA1: fb69a93826684985019afcd07e608330c896eac0 SHA256: 80e6e142d7dd72c0a0f1a50b8ce18be099850df07bcd2fd4d1ac7886a6962a35 Description: ceilometer compute agent Description-md5: 6dcabb824dba2d47ed7a641ea543ec62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceilometer-api Priority: optional Section: python Installed-Size: 43 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: ceilometer-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Suggests: mongodb Filename: pool/main/c/ceilometer/ceilometer-api_2014.1-0ubuntu1_all.deb Size: 2630 MD5sum: fd895e50cae802ce5d272e390ed13796 SHA1: bc0b8b8bba6bdc2807ed96ac7db8836fb3472db6 SHA256: 9fa0865ae1b373298b809b0c2516dacce2fbd07a680167914adbf5f681f54902 Description: ceilometer api service Description-md5: 54717dd842a1eba3c0dd18405956bea7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceilometer-collector Priority: optional Section: python Installed-Size: 43 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: ceilometer-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Suggests: mongodb Filename: pool/main/c/ceilometer/ceilometer-collector_2014.1-0ubuntu1_all.deb Size: 2668 MD5sum: c5ba292615da72ef599e909780a4ad4a SHA1: 10e09a53f30ec9555390a4f88818c998ad7ea07d SHA256: 5eb81828182b10936540c7f33ca380a08ac96c48acdf356cc0ebc5d89cc705ec Description: ceilometer collector service Description-md5: 08f79895957d580c9ce4de5524e1d4aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceilometer-common Priority: optional Section: python Installed-Size: 98 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: adduser, python-ceilometer (= 2014.1-0ubuntu1), python:any Filename: pool/main/c/ceilometer/ceilometer-common_2014.1-0ubuntu1_all.deb Size: 11210 MD5sum: 4825427eb9be2a1344ef28b32b9b86ec SHA1: c0df0964b52cc69c35217b56f6d36cdf33f4caf8 SHA256: a6a33c83f3a26891a7a9153a8203b9d4cb60a330960a015bde22c492f78bf87c Description: ceilometer common files Description-md5: becb34f2ab270eef3a49fdfdc648780f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceph Priority: optional Section: admin Installed-Size: 30486 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Version: 0.79-0ubuntu1 Replaces: gceph, librgw-dev, librgw1, librgw1-dbg, obsync Depends: binutils, ceph-common, cryptsetup-bin | cryptsetup, gdisk, hdparm | sdparm, parted, uuid-runtime, xfsprogs, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any, libaio1 (>= 0.3.93), libboost-system1.54.0, libboost-thread1.54.0, libc6 (>= 2.16), libgcc1 (>= 1:4.1.1), libgoogle-perftools4, libleveldb1, libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Recommends: libcephfs1, librados2, librbd1 Conflicts: gceph, librgw-dev, librgw1, librgw1-dbg, obsync Filename: pool/main/c/ceph/ceph_0.79-0ubuntu1_i386.deb Size: 5439136 MD5sum: 28b45171b61feec096998d121f6ac72a SHA1: 48b496fd32b31453fe5deb06268278fc4b088662 SHA256: bca77992b38c0b408bd479e152a0f0f68f26cabec9d2a80ae682f98fd4537fb0 Description: distributed storage and file system Homepage: http://ceph.com/ Description-md5: 8076f05fe2327940c1772acbf6f471cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceph-common Priority: optional Section: admin Installed-Size: 22356 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Replaces: ceph-client-tools Depends: librbd1 (= 0.79-0ubuntu1), python-ceph (= 0.79-0ubuntu1), python:any, libaio1 (>= 0.3.93), libblkid1 (>= 2.17.2), libboost-system1.54.0, libboost-thread1.54.0, libc6 (>= 2.16), libcurl3-gnutls (>= 7.28.0), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libgoogle-perftools4, libkeyutils1, libleveldb1, libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), librados2, libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Suggests: ceph, ceph-mds Conflicts: ceph-client-tools Filename: pool/main/c/ceph/ceph-common_0.79-0ubuntu1_i386.deb Size: 4833472 MD5sum: a4f1d2f2079eef1e7305fa51f9c07d12 SHA1: 511fd3a3221f16fe4fc0da515bd577d9c77fa49e SHA256: 193cfd0ae045f438b605f4a513f787e8089b999b52e23e6b56a2d7ec9253e0ab Description: common utilities to mount and interact with a ceph storage cluster Homepage: http://ceph.com/ Description-md5: e302e645c41e2c6148fcff41573e283b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ceph-common-dbg Priority: extra Section: debug Installed-Size: 86686 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Replaces: ceph-client-tools-dbg Depends: ceph-common (= 0.79-0ubuntu1) Conflicts: ceph-client-tools-dbg Filename: pool/main/c/ceph/ceph-common-dbg_0.79-0ubuntu1_i386.deb Size: 83344930 MD5sum: 06f06fbe1bd2f82688800cab223f36eb SHA1: 85df53ec521dbdd0b1100ec3545a623f7f79ca4e SHA256: cad6d829e4140c168ee2e5163fc514bc172f5d04e7a05e26e0107234faca7083 Description: debugging symbols for ceph-common Homepage: http://ceph.com/ Description-md5: 4e090d4d7aa07af441f4e2ba271159ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ceph-dbg Priority: extra Section: debug Installed-Size: 101524 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Replaces: gceph-dbg Depends: ceph (= 0.79-0ubuntu1) Conflicts: gceph-dbg Filename: pool/main/c/ceph/ceph-dbg_0.79-0ubuntu1_i386.deb Size: 96959050 MD5sum: 36d8991e7bd7d0b8e4d23c4b24475f62 SHA1: eec35b0657851927613fd29744cb61db03bedf6f SHA256: 357b4e24874ffa6b1910e3e1a1038c5e4dc8a873629ce52948c11a714ab52bbd Description: debugging symbols for ceph Homepage: http://ceph.com/ Description-md5: 43fb0fb4a4a9eb4d08ff4a0f12738692 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cgmanager Priority: optional Section: admin Installed-Size: 256 Maintainer: Serge Hallyn Architecture: i386 Version: 0.24-0ubuntu5 Depends: libc6 (>= 2.4), libcgmanager0, libdbus-1-3 (>= 1.2.16), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Suggests: cgmanager-utils Filename: pool/main/c/cgmanager/cgmanager_0.24-0ubuntu5_i386.deb Size: 46570 MD5sum: 39e94d2c5bb61adbb08f3d44aca69ca7 SHA1: 33332717700331cede48a6f76244f60aa2fe8bf9 SHA256: 709cdee33dddb91accb396d6e5dc84627545bc2c85d49af431853401d2944255 Description: Central cgroup manager daemon Homepage: http://cgmanager.linuxcontainers.org/ Description-md5: 573a1987c819a2ae4addaf68ae70241e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cgroup-lite Priority: extra Section: admin Installed-Size: 45 Maintainer: Ubuntu Developers Architecture: all Version: 1.9 Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), mountall (>> 2.48~) Conflicts: cgroup-bin (<< 0.38) Filename: pool/main/c/cgroup-lite/cgroup-lite_1.9_all.deb Size: 3918 MD5sum: fe1749ba83aaf6d4f3e87ccdbc3581d4 SHA1: 4aa02c17d9ef33e3373e414afdc125de22e99a7c SHA256: b54114f2656704134d71be24b91ec827b4ab0dcead09acfa5083726fafdb73c0 Description: Light-weight package to set up cgroups at system boot Description-md5: fe014e9d284dece1e33bea560fa15953 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: check Priority: optional Section: devel Installed-Size: 314 Maintainer: Ubuntu Developers Original-Maintainer: Robert Lemmen Architecture: i386 Version: 0.9.10-6ubuntu3 Depends: dpkg (>= 1.15.4) | install-info, mawk Filename: pool/main/c/check/check_0.9.10-6ubuntu3_i386.deb Size: 120926 MD5sum: 7b6ee279d20a74c4829714af4dbac849 SHA1: 9c102332ae621e937fa474e31789eb25a60fe346 SHA256: a1adf401920daf8a33bd5465104eff360ffbc6258c4d1986f296359418d38a3f Description: unit test framework for C Multi-Arch: same Homepage: http://check.sourceforge.net/ Description-md5: a51fdfa929f98fb924854b88bd42548c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: checkbox-gui Priority: optional Section: utils Installed-Size: 736 Maintainer: Ubuntu Developers Architecture: i386 Source: checkbox Version: 0.17.6-0ubuntu6 Replaces: checkbox-qt (<< 0.17.4ubuntu4) Depends: checkbox-ng-service, plainbox-provider-checkbox, qtdeclarative5-localstorage-plugin, qtdeclarative5-qtquick2-plugin, qtdeclarative5-ubuntu-ui-toolkit-plugin | qt-components-ubuntu Breaks: checkbox-qt (<< 0.17.4ubuntu4) Filename: pool/main/c/checkbox/checkbox-gui_0.17.6-0ubuntu6_i386.deb Size: 173776 MD5sum: f034b56917e203942300424d91f0d1c0 SHA1: e5c888f991f97bbcead843027ca5a1f1b2b79f93 SHA256: 8fdaebe66c7ad27799b6a6a35d00b43a3ba544b6aa0b83e760cbbe5205877fa1 Description: QML based interface for system testing based on Plainbox. Description-md5: 3c1efb42f6c99e058364c3af86d62ec5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: checkbox-ng Priority: optional Section: utils Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: all Version: 0.3-2 Replaces: checkbox (<< 0.17.6-0ubuntu1) Depends: python3-checkbox-ng (= 0.3-2), python3:any (>= 3.2~), python3 Breaks: checkbox (<< 0.17.6-0ubuntu1) Filename: pool/main/c/checkbox-ng/checkbox-ng_0.3-2_all.deb Size: 7332 MD5sum: 7604dce2eccfb238a86a0012ff9595b0 SHA1: 16b59a1b803c62447b6637035a6f039aa32dc935 SHA256: db9c4616eac3cda567552a1530ca2d123a63248f2b1613958a478cfc1ffb3da9 Description: PlainBox based test runner Homepage: http://launchpad.net/checkbox Description-md5: 94b5ef78da01f8122bfd9cc4f404005b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: checkbox-ng-service Priority: optional Section: utils Installed-Size: 35 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: all Source: checkbox-ng Version: 0.3-2 Depends: checkbox-ng (= 0.3-2), python3-dbus, python3-gi Filename: pool/main/c/checkbox-ng/checkbox-ng-service_0.3-2_all.deb Size: 2446 MD5sum: d35382ed84b4b97de89eac3702f3b011 SHA1: 8cfc3a3a7ecdbc64e8470c75b9562c3bac303804 SHA256: e5a824ef8f904f379d959740dc47845191d14557f11a1025dd239d33f888f298 Description: CheckBox D-Bus service Homepage: http://launchpad.net/checkbox Description-md5: 8ed91cf1ed3801026e33fc23ddaf8d4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: checksecurity Priority: optional Section: admin Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Javier Fernandez-Sanguino Pen~a Architecture: all Version: 2.0.14ubuntu1 Replaces: cron Depends: cron (>= 3.0pl1-74) | anacron, debconf (>= 0.5) | debconf-2.0, perl (>= 5.8.0), util-linux (>= 2.15~rc1-1) Suggests: apt-watch | cron-apt, lockfile-progs, tiger, logcheck, tripwire | integrit | aide | samhain | fcheck, fcron Conflicts: lockfile-progs (<< 0.1.7) Filename: pool/main/c/checksecurity/checksecurity_2.0.14ubuntu1_all.deb Size: 19376 MD5sum: c01ee1de167442fdb77852ae456e28f6 SHA1: 8612477cfa835568ae1e093243092c45a3126a41 SHA256: af97c67d9b2f9ba5312544aa5fcd39bace3de20037d506ddbbd2da9de4e6a46a Description: basic system security checks Description-md5: 26c46b0bdb352b8c55ce0f21193e0c60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cheese Priority: optional Section: gnome Installed-Size: 397 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.10.2-0ubuntu2 Depends: libc6 (>= 2.3.6-6~), libcanberra-gtk3-0 (>= 0.25), libcheese-gtk23 (>= 3.4.0), libcheese7 (>= 3.5.1), libclutter-1.0-0 (>= 1.13.2), libclutter-gtk-1.0-0 (>= 0.91.8), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.2.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.4.4), cheese-common (= 3.10.2-0ubuntu2), gnome-video-effects Recommends: gvfs, gnome-icon-theme, hicolor-icon-theme, nautilus-sendto, yelp Suggests: gnome-video-effects-frei0r, gnome-video-effects-extra Filename: pool/main/c/cheese/cheese_3.10.2-0ubuntu2_i386.deb Size: 48224 MD5sum: a290d00acd2456c8aff783d90da67067 SHA1: 3e9cff3ce26bd9c32c8375ebc603b674667e793e SHA256: 621a14b2c578d4bb1006bb29e682671503a5f3816d2c62785a81b8314a5f8dcf Description: tool to take pictures and videos from your webcam Homepage: http://projects.gnome.org/cheese/ Description-md5: d43e2962bb9e2e6472e35b9746fa32d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: cheese-common Priority: optional Section: gnome Installed-Size: 3532 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: cheese Version: 3.10.2-0ubuntu2 Replaces: cheese (<< 2.30.1-1) Depends: dconf-gsettings-backend | gsettings-backend Breaks: cheese (<< 2.30.1-1) Filename: pool/main/c/cheese/cheese-common_3.10.2-0ubuntu2_all.deb Size: 2721054 MD5sum: 3372782fce822f93a0208f97ec301531 SHA1: 1eee20d0c27b60835818054e05c2c090e32328a1 SHA256: e38c63470cf60f1f1332b528130df0e427b6d9906f55f0373483c27b538a72e8 Description: Common files for the Cheese tool to take pictures and videos Multi-Arch: foreign Homepage: http://projects.gnome.org/cheese/ Description-md5: bd8017d577dcb034b7c3327cc79fe310 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: chkrootkit Priority: optional Section: misc Installed-Size: 923 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Iuculano Architecture: i386 Version: 0.49-4.1ubuntu1 Depends: libc6 (>= 2.7), debconf (>= 0.5) | debconf-2.0, binutils, net-tools, debconf, procps Filename: pool/main/c/chkrootkit/chkrootkit_0.49-4.1ubuntu1_i386.deb Size: 361134 MD5sum: d976591ce03ec83a4cb4f9a2966f466b SHA1: d3a64c122d0af0284a887ed55e3035a8df280707 SHA256: 12db651458885abfb600d18e0d8609f60e1684ee59a231bfa625fe8c19d098de Description: rootkit detector Homepage: http://www.chkrootkit.org/ Description-md5: 1fb422eb07ad1833888e688ab81e8df9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: chrpath Priority: optional Section: utils Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: i386 Version: 0.14-3ubuntu1 Depends: libc6 (>= 2.7) Filename: pool/main/c/chrpath/chrpath_0.14-3ubuntu1_i386.deb Size: 12190 MD5sum: 7339adf6788e66cbe0b4d4c38ebcb30b SHA1: c285f2532d222923f7dfb0e45448d317f3dbb587 SHA256: 50091a20f9265677e06874c512e833ba828def47e18de90d7b522c4cef5dba0b Description: Tool to edit the rpath in ELF binaries Multi-Arch: foreign Description-md5: a999fc68ae2f1aed25b996deccacd83d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cifs-utils Priority: optional Section: otherosfs Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Version: 2:6.0-1ubuntu2 Replaces: smbfs (<< 2:4.0~rc1-1) Depends: samba-common, libc6 (>= 2.17), libkeyutils1, libkrb5-3 (>= 1.10+dfsg~), libtalloc2 (>= 2.0.4~git20101213), libwbclient0 (>= 2:3.6.0~pre3) Recommends: keyutils Suggests: smbclient, winbind Filename: pool/main/c/cifs-utils/cifs-utils_6.0-1ubuntu2_i386.deb Size: 84160 MD5sum: 8fe7fd51836d8fe91901e70f455d3f77 SHA1: df8667b8de4309a943bb1a4ea46fa0a3c6a7adc3 SHA256: 9ea63e98b74d70c520129040c0abc72320763daedea862374dc905c2b55df070 Description: Common Internet File System utilities Homepage: http://www.samba.org/~jlayton/cifs-utils/ Description-md5: 935040b98485786df2e3f301255ff219 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, samba-server, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: cinder-api Priority: extra Section: net Installed-Size: 58 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Depends: cinder-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/c/cinder/cinder-api_2014.1-0ubuntu1_all.deb Size: 3424 MD5sum: 32fa1f0a041226fa639b21b73d2fe89b SHA1: 882dbd9334aa7fa30a2b98fe4937c2797eddb38d SHA256: 6b204308ae86fb567c3e54c92efd5a5fa8c3af2bcab54d3ccac2f455e0843afa Description: Cinder storage service - API server Homepage: http://launchpad.net/cinder Description-md5: 325d82ff6875c8b415e2cbe731a45c21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cinder-backup Priority: extra Section: net Installed-Size: 50 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Depends: cinder-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/c/cinder/cinder-backup_2014.1-0ubuntu1_all.deb Size: 3186 MD5sum: 8f3d6a7cbe1df16360848d748c464677 SHA1: bfafcd11df1242bd8fa3f01f5084b31e600cf241 SHA256: 53630e4460c14b4163d3b863eb5457cc4fb7c3ac33b1f040aaecdfd428d26737 Description: Cinder storage service - Scheduler server Homepage: http://launchpad.net/cinder Description-md5: e2df85270f1e60cf99b08a0d7054224e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cinder-common Priority: extra Section: net Installed-Size: 117 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Depends: adduser, python-cinder (= 1:2014.1-0ubuntu1), python:any Filename: pool/main/c/cinder/cinder-common_2014.1-0ubuntu1_all.deb Size: 12154 MD5sum: 57128ffeed3876bfd670b16780e77089 SHA1: 04284345e891a72eb7e764a8b07ce97caff7a707 SHA256: b9282554104bfeb67cd6512b7fd17f1ac9e07e7b976766da267c3449f54583da Description: Cinder storage service - common files Homepage: http://launchpad.net/cinder Description-md5: d0c1f1d187fc251f073166729bba6897 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cinder-scheduler Priority: extra Section: net Installed-Size: 58 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Depends: cinder-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/c/cinder/cinder-scheduler_2014.1-0ubuntu1_all.deb Size: 3472 MD5sum: 57f5d0edc22a378cf4e541caa76a401e SHA1: 214c200af3eac73e74fde2a4171a3b764afd8ca3 SHA256: 4de84df5c2ccebfa90859fa2299855035f071be2468ed7f0c18d3fb11b5d2895 Description: Cinder storage service - Scheduler server Homepage: http://launchpad.net/cinder Description-md5: cdc56e77ac87da514cb5cf0c47684649 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cinder-volume Priority: extra Section: net Installed-Size: 109 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Replaces: cinder-common (<= 2012.2~rc1~20120907.1154-0ubuntu1) Depends: cinder-common (= 1:2014.1-0ubuntu1), lvm2, tgt, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: cinder-common (<= 2012.2~rc1~20120907.1154-0ubuntu1) Filename: pool/main/c/cinder/cinder-volume_2014.1-0ubuntu1_all.deb Size: 7130 MD5sum: 7577fbb882572a24e0d5c2a44d661b62 SHA1: 5edfe1ff6d37d21ff6a837d8fe398f963d4e0ec7 SHA256: ce68006b0a749b4754288ff2f82dd69003c474e4e80c5a652ad338d0580bb6af Description: Cinder storage service - Volume server Homepage: http://launchpad.net/cinder Description-md5: 47b3310ccd07d775fd3dc3ac73b9c761 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: clamav Priority: optional Section: utils Installed-Size: 598 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: i386 Version: 0.98.1+dfsg-4ubuntu1 Depends: libc6 (>= 2.15), libclamav6 (>= 0.98.1+dfsg), zlib1g (>= 1:1.1.4), clamav-freshclam | clamav-data Recommends: clamav-base Suggests: clamav-docs Filename: pool/main/c/clamav/clamav_0.98.1+dfsg-4ubuntu1_i386.deb Size: 80620 MD5sum: 43bc5c7403484ce824b2fe0f5a2ab778 SHA1: 8cd8b1522d45d1321592a16389f61c80c30ed605 SHA256: 0796677d5286174705bafd6154d0de9a98fa5974644a8d5ecd6b6c8727d65518 Description: anti-virus utility for Unix - command-line interface Homepage: http://www.clamav.net/ Description-md5: 25816a2f56a0c214a484e117fd9fe0b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: clamav-base Priority: optional Section: utils Installed-Size: 522 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: all Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Depends: debconf (>= 0.5) | debconf-2.0, adduser, ucf, logrotate Recommends: clamav Filename: pool/main/c/clamav/clamav-base_0.98.1+dfsg-4ubuntu1_all.deb Size: 105644 MD5sum: 5ff54d00b34fc450a22845a8808facc6 SHA1: 439d252c3669f36dd3509746d14125a13e1fa8ed SHA256: 1e71761b3a97de190086824e2814946bda9f1d86fcbd890c013c6997ac8df71f Description: anti-virus utility for Unix - base package Homepage: http://www.clamav.net/ Description-md5: 36333c8001fa330971bb9bf732bd846d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: clamav-daemon Priority: optional Section: utils Installed-Size: 845 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: i386 Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Depends: libc6 (>= 2.15), libclamav6 (>= 0.98.1+dfsg), libncurses5 (>= 5.5-5~), libtinfo5, zlib1g (>= 1:1.2.0.2), clamav-base (= 0.98.1+dfsg-4ubuntu1), clamav-freshclam | clamav-data, lsb-base (>= 3.2-13), ucf Suggests: daemon, clamav-docs, apparmor (>= 2.3+1289) Filename: pool/main/c/clamav/clamav-daemon_0.98.1+dfsg-4ubuntu1_i386.deb Size: 128508 MD5sum: 0e33617641c448deb54dba596d7e97ce SHA1: f67566afecc60b1f2b399919ef4b3d5026c026cd SHA256: fab076b00130932d9f4fbb9fcce2cdbbe6ee4c31792a4d41b5a3470f65104956 Description: anti-virus utility for Unix - scanner daemon Homepage: http://www.clamav.net/ Description-md5: 67066a5cf6ee89fc8ce3ae691827a9ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: clamav-dbg Priority: extra Section: debug Installed-Size: 91515 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: i386 Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Depends: libclamav6, clamav (= 0.98.1+dfsg-4ubuntu1) Filename: pool/main/c/clamav/clamav-dbg_0.98.1+dfsg-4ubuntu1_i386.deb Size: 24418294 MD5sum: 5dbd8a0ca9836f4345e58274fff419a9 SHA1: 32c6699d2e25a12b763491e8a8aa0631a9ad1aab SHA256: f312877bed6fc0515f6c839f49552de3d50a0fee6cd80a1889d80dab8775e0a8 Description: debug symbols for ClamAV Homepage: http://www.clamav.net/ Description-md5: 33a33cc71dce345b4a0ce175ebeca8c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: clamav-docs Priority: optional Section: doc Installed-Size: 1529 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: all Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Filename: pool/main/c/clamav/clamav-docs_0.98.1+dfsg-4ubuntu1_all.deb Size: 1030292 MD5sum: bc94ea55b44e68ba2c5fa3213464379e SHA1: a7a523ffcb44e334c1371fb978994f1e26676e51 SHA256: fbe9d246d8fa299cbc6c5879aba69f317eb86d185b4db4c9add65ffe1432f8ae Description: anti-virus utility for Unix - documentation Homepage: http://www.clamav.net/ Description-md5: e2412f6e57d4fb282e22d549e939cb72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: clamav-freshclam Priority: optional Section: utils Installed-Size: 634 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: i386 Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Provides: clamav-data Depends: debconf (>= 0.5) | debconf-2.0, clamav-base (>= 0.98.1+dfsg-4ubuntu1), libc6 (>= 2.15), libclamav6 (>= 0.98.1+dfsg), zlib1g (>= 1:1.1.4), ucf, logrotate, lsb-base (>= 3.2-13) Suggests: clamav-docs, apparmor (>= 2.3+1289) Conflicts: clamav-data, libclamav2, libclamav3 Filename: pool/main/c/clamav/clamav-freshclam_0.98.1+dfsg-4ubuntu1_i386.deb Size: 105790 MD5sum: bf4c0c9c81a451ae28a836f0c5ee3775 SHA1: d30e9bedb3365879eebaf5b98dc4d061bc05f824 SHA256: 0a0d184b6105e8cea1b9830d018ef6d76ae3a2daec5c83dc84cac5b6a219c4f0 Description: anti-virus utility for Unix - virus database update utility Homepage: http://www.clamav.net/ Description-md5: 824a85afc618e1467a907719e4edd7bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cli-common Priority: optional Section: interpreters Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Common Team Architecture: all Version: 0.9 Replaces: cli-common-dev (<< 0.5.1) Depends: perl-modules Filename: pool/main/c/cli-common/cli-common_0.9_all.deb Size: 171580 MD5sum: cf6f2231666fdaf2b67c265bebc848b0 SHA1: e63f16c98c3db82993524d1db3a271fee7445e2c SHA256: baf1abe35b2f7b3132730fc7f877e1c4db4d11b197dbad4eda1d00415959d769 Description: common files between all CLI packages Homepage: http://alioth.debian.org/projects/pkg-cli-common/ Description-md5: c868d733992b0f798d46399562a779bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: cli-common-dev Priority: optional Section: interpreters Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Common Team Architecture: all Source: cli-common Version: 0.9 Replaces: cli-common (<< 0.4.0) Depends: debhelper (>= 7.0.8), perl-modules, mono-utils (>= 3.0~) | cil-disassembler, mono-devel (>= 3.0~) | strong-name-tool, libxml-dom-perl Filename: pool/main/c/cli-common/cli-common-dev_0.9_all.deb Size: 39614 MD5sum: 5c81e5ab42971949a32353f2daa15209 SHA1: 2387bc59db05f0f6570924d660e0f944912a6d21 SHA256: 29e302b9cf67db08c08b69d67f7c2f353d1b323887a9f0172887ed4236a65120 Description: common files for building CLI packages Homepage: http://alioth.debian.org/projects/pkg-cli-common/ Description-md5: 3920a08599d8970b5296ceb111af4410 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: click Priority: optional Section: admin Installed-Size: 156 Maintainer: Colin Watson Architecture: i386 Version: 0.4.21.1 Replaces: click-package Provides: click-package Depends: libc6 (>= 2.3.4), python3, python3:any (>= 3.2~), python3-click (= 0.4.21.1), adduser Pre-Depends: multiarch-support Recommends: click-apparmor, upstart-app-launch-tools Conflicts: click-package Filename: pool/main/c/click/click_0.4.21.1_i386.deb Size: 13216 MD5sum: c4182e2724aeec39ff732a9d1418edcd SHA1: 1583b43da3a2ac1cff38dd7e8e594155c9196048 SHA256: be538d9f5f05fcb66f8e3fa87c16a73513ea610bceb9f0538bb7cbdbd464783c Description: Click packages Description-md5: 1f88be1eec9a52975d22b0103f98879a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: click-apparmor Priority: optional Section: admin Installed-Size: 91 Maintainer: Steve Beattie Architecture: i386 Version: 0.2 Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python3:any (>= 3.3~), python3, python3-apparmor-click (= 0.2), click, apparmor (>= 2.8.0-0ubuntu15) Filename: pool/main/c/click-apparmor/click-apparmor_0.2_i386.deb Size: 10314 MD5sum: 2eaff8c4635c91b93bc2b88e79c60497 SHA1: 669323bc68c254183578b509132061ca3430d22e SHA256: 6e84b4d6c2bf2ede03b5d042c03aeeb366415fbd29aa8f05d0a40e26bc742a34 Description: Click manifest to AppArmor easyprof conversion tools Description-md5: 2f38f52265e23d1e53ff74e49c902daa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: click-dev Priority: optional Section: admin Installed-Size: 91 Maintainer: Colin Watson Architecture: i386 Source: click Version: 0.4.21.1 Depends: perl, python3-click (= 0.4.21.1) Recommends: debootstrap, schroot Filename: pool/main/c/click/click-dev_0.4.21.1_i386.deb Size: 7242 MD5sum: be6a8d974734e8f421eab8b25621d8ea SHA1: 4b6af0e06583c6d2ee37c9e1dc317dbcb32f1f09 SHA256: 2346e0e0fcda078d0665f0bf82747e4679391fa7ce3a81c49ce6efe1290bcf05 Description: build Click packages Multi-Arch: foreign Description-md5: 524a787d5934e296c23fd4c9d590ebf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: click-doc Priority: optional Section: doc Installed-Size: 220 Maintainer: Colin Watson Architecture: all Source: click Version: 0.4.21.1 Replaces: click-package-doc Provides: click-package-doc Depends: libjs-sphinxdoc (>= 1.0) Conflicts: click-package-doc Filename: pool/main/c/click/click-doc_0.4.21.1_all.deb Size: 40074 MD5sum: 9a24da6cb123b38fdf182c795b1023db SHA1: 285f90bb8fbc66eda656f642e5cae696ebc7a8d3 SHA256: bb6ef999cca4acd69f884d8217f763a9f628768d148f5be01fa99182686de231 Description: Click packages (documentation) Description-md5: 60608bb1e29a4ab375e8538c009ecb38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cliff-tablib Priority: extra Section: python Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.1-1 Depends: python-cliff, python-tablib, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/c/cliff-tablib/cliff-tablib_1.1-1_all.deb Size: 4106 MD5sum: 38b40e8358506f6922dd4cb907b36ed2 SHA1: 9fcb707705c51b4fc4d0661f7ba04d6099ac6195 SHA256: 458a3bd100bfda90ac733446e92ba10019312133eb796dc0696e7931ad5c8635 Description: tablib formatters for cliff Homepage: https://github.com/dreamhost/cliff-tablib Description-md5: d6e967db5586ebf950614f0b011e0005 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cloop-utils Priority: optional Section: misc Installed-Size: 217 Maintainer: Ubuntu Core Developers Original-Maintainer: Eduard Bloch Architecture: i386 Source: cloop Version: 2.6.39.2-1ubuntu3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/c/cloop/cloop-utils_2.6.39.2-1ubuntu3_i386.deb Size: 69140 MD5sum: bbfae50c07c54050a5c4a1124946cec9 SHA1: bae5324b18df9cf5e2d0ebe1bb405ffb50124d06 SHA256: 0ecdf005120e9932c99e08ab37730acab22ff3bd9afcdbe734150005de8decea Description: Tools for handling with cloop compressed volumes Description-md5: 3d1d4288bcff38ee763800b505a55411 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cloud-guest-utils Priority: extra Section: admin Installed-Size: 74 Maintainer: Scott Moser Architecture: all Source: cloud-utils Version: 0.27-0ubuntu9 Replaces: cloud-utils (<< 0.27-0ubuntu3) Depends: e2fsprogs (>= 1.4), util-linux (>= 2.17.2), python:any Recommends: gdisk Conflicts: cloud-utils (<< 0.27-0ubuntu3) Filename: pool/main/c/cloud-utils/cloud-guest-utils_0.27-0ubuntu9_all.deb Size: 13762 MD5sum: d9ef94a7e36e0f9944aa650923103e96 SHA1: 1ef7e7862305546f7d7443b282d0ec041dda4af8 SHA256: cbc4d82be9f3c1064d18b51264b04f99e58c8add36da919ebd0cf3b488a3c265 Description: cloud guest utilities Description-md5: fda0c5237d2eca0ed770cea9796a01fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: cloud-image-utils Priority: extra Section: admin Installed-Size: 112 Maintainer: Scott Moser Architecture: all Source: cloud-utils Version: 0.27-0ubuntu9 Replaces: cloud-utils (<< 0.27-0ubuntu3) Depends: ca-certificates, euca2ools, file, genisoimage, qemu-utils, wget, python:any Recommends: distro-info, python-distro-info Conflicts: cloud-utils (<< 0.27-0ubuntu3) Filename: pool/main/c/cloud-utils/cloud-image-utils_0.27-0ubuntu9_all.deb Size: 25604 MD5sum: a117996d9df5a07f5fe6c714714b2782 SHA1: 45182cb334ce987843f190febdb4d9cd413bcaec SHA256: 3d22db96d4ad1187c624001ab687feae958b89222272a061f29e8a4d4c618735 Description: cloud image management utilities Description-md5: 765804be1cec3814207205510c2632bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cloud-init Priority: extra Section: admin Installed-Size: 964 Maintainer: Scott Moser Architecture: all Version: 0.7.5-0ubuntu1 Replaces: ec2-init (<< 0.5.3) Provides: ec2-init Depends: cloud-guest-utils | cloud-utils, ifupdown (>= 0.6.10ubuntu5), procps, python (>= 2.7), python-requests (>= 0.8.2), software-properties-common, debconf (>= 0.5) | debconf-2.0, python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-cheetah, python-prettytable, python-oauth, python-serial, python-configobj, python-yaml, python-jsonpatch Recommends: eatmydata Conflicts: ec2-init (<< 0.5.3) Filename: pool/main/c/cloud-init/cloud-init_0.7.5-0ubuntu1_all.deb Size: 190622 MD5sum: cc0d636ccbdff6f6969505eb33da29cc SHA1: 05aef5df1b3b7c0f4612b4b08cc5b8931efbf43f SHA256: e669b7b7bc7176219f013c1895e8662640e25e70f7fa0e76ba8333b9244fa397 Description: Init scripts for cloud instances Python-Version: 2.7 Description-md5: 8719ef0e4178017b7147590b1fde082e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: cloud-utils Priority: extra Section: admin Installed-Size: 31 Maintainer: Scott Moser Architecture: all Version: 0.27-0ubuntu9 Depends: cloud-guest-utils, cloud-image-utils Filename: pool/main/c/cloud-utils/cloud-utils_0.27-0ubuntu9_all.deb Size: 1506 MD5sum: 714a16c336ece8ec80b6a22a7de909ee SHA1: e8689dd3e842ff6597d965b3f73530206109f50a SHA256: 2dc7091beed00a5ef562fa07c5306c62cf6f807ea1936e5f03257603c80363e2 Description: metapackage for installation of upstream cloud-utils source Description-md5: 1e4961d514cf3ca76a2bdf19b3eb3abc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cluster-glue Priority: optional Section: admin Installed-Size: 1458 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Version: 1.0.11+hg2754-1.1build1 Replaces: heartbeat (<= 2.99.2+sles11r9-5), heartbeat-common (<= 2.99.2+sles11r9-5), libheartbeat2 (<= 2.99.2+sles11r9-5) Depends: libbz2-1.0, libc6 (>= 2.4), libcurl3 (>= 7.16.2), libdbus-glib-1-2 (>= 0.84), libglib2.0-0 (>= 2.24.0), liblrm2 (= 1.0.11+hg2754-1.1build1), libopenhpi2, libopenipmi0, libpils2 (= 1.0.11+hg2754-1.1build1), libplumb2 (= 1.0.11+hg2754-1.1build1), libplumbgpl2 (= 1.0.11+hg2754-1.1build1), libsnmp30 (>= 5.7.2~dfsg), libstonith1 (= 1.0.11+hg2754-1.1build1), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4), perl, python:any (>= 2.7.1-0ubuntu2), python2.7, libtimedate-perl Conflicts: heartbeat (<= 2.99.2+sles11r9-5), heartbeat-common (<= 2.99.2+sles11r9-5), libheartbeat2 (<= 2.99.2+sles11r9-5) Filename: pool/main/c/cluster-glue/cluster-glue_1.0.11+hg2754-1.1build1_i386.deb Size: 296420 MD5sum: 7e2d047cf2c4b927d2443170e43688c4 SHA1: 43e5839518a921600f6a51213b702128e60f458d SHA256: 97eb689d79595f0490b9cc80a6483ae3581c55cca1bad2edbb7ca5f592578236 Description: Reusable cluster components for Linux HA Homepage: http://hg.linux-ha.org/glue/ Description-md5: 6b0e3d7f13fd53c8e3c9d7292e7411ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cluster-glue-dev Priority: optional Section: admin Installed-Size: 8681 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1) Depends: liblrm2-dev (= 1.0.11+hg2754-1.1build1), libpils2-dev (= 1.0.11+hg2754-1.1build1), libplumb2-dev (= 1.0.11+hg2754-1.1build1), libplumbgpl2-dev (= 1.0.11+hg2754-1.1build1), libstonith1-dev (= 1.0.11+hg2754-1.1build1) Conflicts: libcluster-glue-dev (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/cluster-glue-dev_1.0.11+hg2754-1.1build1_i386.deb Size: 843830 MD5sum: 7b4f367504bb71f8e95064923d23aa45 SHA1: a84b169ee3e66374d15a738e430c3f1138e22b50 SHA256: 43d123b439c833ee624e100ecb4619eba2073434de339bc316089e5b7671b8c2 Description: Development files for the cluster glue components Homepage: http://hg.linux-ha.org/glue/ Description-md5: 156dc1307d9731c4a3cd06a830aac444 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: clvm Priority: extra Section: admin Installed-Size: 878 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: i386 Source: lvm2 Version: 2.02.98-6ubuntu2 Depends: libc6 (>= 2.15), libcmap4 (>= 2.3.0), libcpg4 (>= 2.3.0), libdevmapper-event1.02.1 (>= 2:1.02.74), libdevmapper1.02.1 (>= 2:1.02.77), libdlm3, libquorum5 (>= 2.3.0), libudev1 (>= 183), lvm2 (= 2.02.98-6ubuntu2), lsb-base Recommends: corosync Filename: pool/main/l/lvm2/clvm_2.02.98-6ubuntu2_i386.deb Size: 266378 MD5sum: 68f64d82682722b9bc9b471808d26fdc SHA1: c6a6177a31f10a4d5b039a992dbbca3227e960a5 SHA256: 1f92ffa6b0c30e6e45ea447d330a70276acc3c06f145bdfa274a9d0b8143c919 Description: Cluster LVM Daemon for lvm2 Multi-Arch: foreign Homepage: http://sources.redhat.com/lvm2/ Description-md5: 46f93b5b21bc2e311bd9e9e51949e9a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cmake Priority: optional Section: devel Installed-Size: 13296 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: i386 Version: 2.8.12.2-0ubuntu3 Depends: libarchive13, libc6 (>= 2.15), libcurl3 (>= 7.16.2), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.2.3.3), cmake-data (>= 2.8.12.2), procps Recommends: make, gcc Suggests: codeblocks, eclipse Filename: pool/main/c/cmake/cmake_2.8.12.2-0ubuntu3_i386.deb Size: 2640560 MD5sum: 274871cf04f16d3bad9b2cd335fcc0e8 SHA1: a59c4ca54e036f06c63d1acf284d15fdf9cc5a39 SHA256: fbb1b0a5001baed545e1310dd6de0ab958e20cb4fd8e44af4e58c9366c7c998b Description: cross-platform, open-source make system Multi-Arch: foreign Homepage: http://cmake.org/ Description-md5: 47b53839da906127970f1e8c870afc2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cmake-data Priority: optional Section: devel Installed-Size: 2853 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: all Source: cmake Version: 2.8.12.2-0ubuntu3 Replaces: cmake (<= 2.6.2-1) Conflicts: emacsen-common (<< 2.0.0) Breaks: cmake (<= 2.6.2-1) Filename: pool/main/c/cmake/cmake-data_2.8.12.2-0ubuntu3_all.deb Size: 676138 MD5sum: c45c69a56c25f93a52b1e1775ce3af23 SHA1: 317557782ab43cea035600906aaa3078161e1cb6 SHA256: 39e9c8633c7cb9885b8f5d36bba0d4b4acaab4d460af60002afbea6e3fd7619c Description: CMake data files (modules, templates and documentation) Homepage: http://cmake.org/ Description-md5: a70b3cf96f911b61c8fa1e1b3f34f44f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cmake-dbg Priority: extra Section: debug Installed-Size: 90045 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: i386 Source: cmake Version: 2.8.12.2-0ubuntu3 Depends: cmake-data, cmake (= 2.8.12.2-0ubuntu3) Filename: pool/main/c/cmake/cmake-dbg_2.8.12.2-0ubuntu3_i386.deb Size: 88910118 MD5sum: a4e85fdf79249c1af35ec6a37488332c SHA1: 17b419947908d18abf2295afcc7b974cb1102d14 SHA256: 39b4f7fb8850ca8dfea11d959bc5d240241ebdcee399c86fd38d309db89d87fc Description: debugging symbols for CMake Homepage: http://cmake.org/ Description-md5: 7f4ed0ea110853f600e8542e7e8e3db6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cmake-doc Priority: optional Section: doc Installed-Size: 5070 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: all Source: cmake Version: 2.8.12.2-0ubuntu3 Replaces: cmake (<= 2.8.2-1), cmake-curses-gui (<= 2.8.2-1), cmake-data (<= 2.8.2-1), cmake-qt-gui (<= 2.8.2-1) Depends: cmake-data Recommends: doc-base Suggests: cmake Breaks: cmake (<= 2.8.2-1), cmake-curses-gui (<= 2.8.2-1), cmake-data (<= 2.8.2-1), cmake-qt-gui (<= 2.8.2-1) Filename: pool/main/c/cmake/cmake-doc_2.8.12.2-0ubuntu3_all.deb Size: 1431254 MD5sum: c1afe00fb891d09fc72de5b4cbd2cd6a SHA1: f4871d2794d07063afe823e099d302e143b30b1a SHA256: 739e19f4351d3db54160bbda5c1c4db97d0e371969e5fd107a76caf0ebfbc7ee Description: extended documentation in various formats for CMake Homepage: http://cmake.org/ Description-md5: c77e6a2a8065e9574225a496b383a0cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: colord Priority: optional Section: graphics Installed-Size: 1368 Maintainer: Christopher James Halse Rogers Architecture: i386 Version: 1.0.6-1 Depends: libc6 (>= 2.4), libcolord1 (>= 1.0.2), libcolorhug1 (>= 0.1.30), libdbus-1-3 (>= 1.0.2), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), libgusb2 (>= 0.1.3), liblcms2-2 (>= 2.2+git20110628), libpolkit-gobject-1-0 (>= 0.99), libsane (>= 1.0.11-3), libsqlite3-0 (>= 3.5.9), libsystemd-login0 (>= 31), dconf-gsettings-backend | gsettings-backend, adduser, acl, policykit-1 (>= 0.103) Filename: pool/main/c/colord/colord_1.0.6-1_i386.deb Size: 211324 MD5sum: 2da467737f45a4a5ebdbe5984a18d379 SHA1: 4b5f9a76033caf0020e8584e616683621683b81e SHA256: 7a0608b6fbc6de1ea31d6cecd29fbd900ec9f6ca584a55d312cb036615b4e633 Description: system service to manage device colour profiles -- system daemon Multi-Arch: foreign Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 64e70acbf5b727798902cde7ba73ee66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: comerr-dev Priority: extra Section: libdevel Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Source: e2fsprogs (1.42.9-3ubuntu1) Version: 2.1-1.42.9-3ubuntu1 Replaces: e2fslibs-dev (<< 1.33-2), libkrb5-dev (<< 1.3) Depends: libc6-dev | libc-dev, libcomerr2 (= 1.42.9-3ubuntu1) Suggests: doc-base Filename: pool/main/e/e2fsprogs/comerr-dev_2.1-1.42.9-3ubuntu1_i386.deb Size: 37958 MD5sum: 1b08fe8ff069229a50a48722fe93fff3 SHA1: debb50593bfcdb3b3ab6c29e7b383998719a11c8 SHA256: b89371938f6cc4c5907814ec69dfdd8839bd8951de522c70d99730b97150bfe0 Description: common error description library - headers and static libraries Homepage: http://e2fsprogs.sourceforge.net Description-md5: 2188fc96978a9083bb050c70bc3cab2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: command-not-found Priority: standard Section: admin Installed-Size: 52 Maintainer: Michael Vogt Original-Maintainer: Zygmunt Krynicki Architecture: all Version: 0.3ubuntu12 Depends: python3-commandnotfound (>= 0.3ubuntu7) Filename: pool/main/c/command-not-found/command-not-found_0.3ubuntu12_all.deb Size: 3652 MD5sum: aeaba095167a9dbeabe9d60c02d221bd SHA1: 1b3a7f22f525a7974d6cdfcc5819fa1a02b1847b SHA256: ea80f8cd2bb22d48bac2d4610a0c1cacd2c78fe73db3ae2d9298717e04e6df77 Description: Suggest installation of packages in interactive bash sessions Description-md5: add5e86211cf27a4446f18bd0c777aa8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: command-not-found-data Priority: standard Section: admin Installed-Size: 2853 Maintainer: Michael Vogt Original-Maintainer: Zygmunt Krynicki Architecture: i386 Source: command-not-found Version: 0.3ubuntu12 Filename: pool/main/c/command-not-found/command-not-found-data_0.3ubuntu12_i386.deb Size: 749776 MD5sum: 67636473735784632c99a9a60e86c168 SHA1: a4fd29beef6e3c79ec3e07b5c0f3c79e0935cdc8 SHA256: 413e68394cee73f5683cba91132f0d9ac6635ce9bde34c5e0fa4a2ca6a0cd653 Description: Set of data files for command-not-found. Description-md5: 730a06588855602fe72d37b151efeed2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: compiz Priority: optional Section: x11 Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:0.9.11+14.04.20140409-0ubuntu1 Provides: x-window-manager Depends: compiz-core (>= 1:0.9.11+14.04.20140409-0ubuntu1), compiz-plugins-default (>= 1:0.9.11+14.04.20140409-0ubuntu1), compiz-gnome, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/c/compiz/compiz_0.9.11+14.04.20140409-0ubuntu1_all.deb Size: 4042 MD5sum: dcc6a1b9a173160f13c8d7a21e91f429 SHA1: f14885637d650f0eb77f081511658d477794490a SHA256: 1ffd772778fdb7a7cae2ce867815731ed2e7d4807c6a4978f190e8a31e9eb41b Description: OpenGL window and compositing manager Description-md5: f8949ff691855a5244d51aa54ee72f8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: compiz-core Priority: optional Section: x11 Installed-Size: 1208 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Replaces: compizconfig-settings-manager (<< 0.9.8) Provides: compiz-core-abiversion-20140123 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.30.0), libglibmm-2.4-1c2a (>= 2.36.2), libice6 (>= 1:1.0.0), libsigc++-2.0-0c2a (>= 2.0.2), libsm6, libstartup-notification0 (>= 0.7), libstdc++6 (>= 4.6), libx11-6, libxext6, libxi6 (>= 2:1.2.99.4), libxinerama1, libxrandr2 Recommends: compiz-plugins-default Filename: pool/main/c/compiz/compiz-core_0.9.11+14.04.20140409-0ubuntu1_i386.deb Size: 315902 MD5sum: a8f76e87161101e18a8fb61effcbeaa6 SHA1: f80f0fbe47829b9b8d89b56dba881345ce880b86 SHA256: b96607b272997a3fa4e75cc17da76417c3ad560c76217dc315f0d52e2fb53f3c Description: OpenGL window and compositing manager Description-md5: 96330190075d58bc036c352e8a3a72fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: compiz-dev Priority: optional Section: x11 Installed-Size: 650 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Replaces: compiz-dev (<< 1:0.9.8), compiz-plugins-extra (<< 1:0.9.8), compiz-plugins-main-dev (<< 1:0.9.8) Depends: compiz-core (= 1:0.9.11+14.04.20140409-0ubuntu1), libdecoration0-dev (= 1:0.9.11+14.04.20140409-0ubuntu1), compiz-plugins-default (= 1:0.9.11+14.04.20140409-0ubuntu1), libgl1-mesa-dev | libgl-dev, libpng-dev, libxcomposite-dev (>= 1:0.3-2), libxfixes-dev (>= 1:4.0.1), libxdamage-dev (>= 1:1.0.3), libxinerama-dev, libxrandr-dev (>= 2:1.1.0.2), libxcursor-dev, libice-dev (>= 1:1.0.1), libsm-dev (>= 1:1.0.1), libstartup-notification0-dev (>= 0.7), libxslt1-dev, libxml2-dev, libx11-xcb-dev, libglib2.0-dev, libglibmm-2.4-dev, libgtk-3-dev Suggests: compiz-plugins Breaks: compiz-plugins-extra (<< 1:0.9.8), compiz-plugins-main-dev (<< 1:0.9.8) Filename: pool/main/c/compiz/compiz-dev_0.9.11+14.04.20140409-0ubuntu1_i386.deb Size: 75404 MD5sum: baa6d1fb0c526e1a523d1081226d068d SHA1: 980dfe31781dacb7aeb3b58e8df06e6721f42aac SHA256: 3e4ad4be373fb0f161ef9f54f15651fd16406c9285c335f8964d4152d3bbfb7d Description: OpenGL window and compositing manager - development files Description-md5: 867507a9b714c75e96d3438264bda095 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: compiz-gnome Priority: optional Section: x11 Installed-Size: 1430 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Replaces: compiz-plugins-main (<= 1:0.9.8), compiz-plugins-main-default (<= 1:0.9.8), compizconfig-backend-gconf (<= 1:0.9.8), libcompizconfig0 (<= 1:0.9.8) Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libcairo2 (>= 1.2.4), libcompizconfig0, libdecoration0 (>= 1:0.9.8.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libmetacity-private0a (>= 1:2.34.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libwnck22 (>= 1:2.22), libx11-6, libxrender1, dconf-gsettings-backend | gsettings-backend, gconf2 (>= 2.28.1-2), session-migration, compiz-plugins-default (= 1:0.9.11+14.04.20140409-0ubuntu1), gsettings-desktop-schemas, gnome-settings-daemon-schemas (>= 3.4.2-0ubuntu9) Recommends: python-gconf, gnome-system-monitor Breaks: compiz-plugins-main (<= 1:0.9.8), compiz-plugins-main-default (<= 1:0.9.8), compizconfig-backend-gconf (<= 1:0.9.8) Filename: pool/main/c/compiz/compiz-gnome_0.9.11+14.04.20140409-0ubuntu1_i386.deb Size: 154204 MD5sum: fa0623710b572967906ef44240d8ca69 SHA1: d72a71522c5ad0ba4a4d433ac1f6dceb69dcd934 SHA256: abe673275bb42fc0fe75308f044556f7930fc1421114fbcc90b797d9b2437ff6 Description: OpenGL window and compositing manager - GNOME window decorator Description-md5: f487b7706c4305676403c9a70567359c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: compiz-plugins-default Priority: optional Section: x11 Installed-Size: 3706 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Replaces: compiz-plugins (<< 1:0.9.10), compiz-plugins-main-default (<< 1:0.9.8) Depends: compiz-core (= 1:0.9.11+14.04.20140409-0ubuntu1), libdecoration0 (= 1:0.9.11+14.04.20140409-0ubuntu1), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libpng12-0 (>= 1.2.13-4), libstdc++6 (>= 4.6), libx11-6, libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3 (>= 1:4.0.1), libxml2 (>= 2.7.4), libxrandr2 (>= 4.3), libxrender1 Breaks: compiz-plugins (<< 1:0.9.10), compiz-plugins-main-default (<< 1:0.9.8) Filename: pool/main/c/compiz/compiz-plugins-default_0.9.11+14.04.20140409-0ubuntu1_i386.deb Size: 732594 MD5sum: d60cd388d453f2afa65e84fcd124ced6 SHA1: 43c2937d3b5b37f0a6308c28e47874c8c3426800 SHA256: 042edd0f293899fceab460e9fb9ce7505aac68130ed5cc7e7fc9b5d0cfc5d584 Description: OpenGL window and compositing manager - default plugins Description-md5: 946b91cace0c0f855a4d0dc9d9a9ed9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: compiz-plugins-main-dev Priority: extra Section: x11 Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Depends: compiz-dev Filename: pool/main/c/compiz/compiz-plugins-main-dev_0.9.11+14.04.20140409-0ubuntu1_all.deb Size: 3436 MD5sum: 61751918954c92985c500d5f9f7c65be SHA1: e725547178d9e19d143b3a8f0c4a7adaa2481add SHA256: 66cab346b400b6141dc80f972bd06091640c569dd02753750b7c897f2f935fd5 Description: transitional dummy package. Description-md5: 881dd7ae5d144e48dc92946d884ecd75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: console-setup Priority: important Section: utils Installed-Size: 1529 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Version: 1.70ubuntu8 Replaces: console-terminus Provides: console-terminus Depends: debconf (>= 1.5.34), xkb-data (>= 0.9), keyboard-configuration, initramfs-tools (>= 0.85eubuntu12), kbd (>= 1.15-1ubuntu3) Suggests: lsb-base (>= 3.0-6), locales Conflicts: console-terminus, lsb (<< 2.0-6), lsb-base (<< 3.0-6), lsb-core (<< 2.0-6) Filename: pool/main/c/console-setup/console-setup_1.70ubuntu8_all.deb Size: 1112668 MD5sum: 370ff02356551786ee5749a62e5a2fe6 SHA1: 239dd43ef88b28b4ff0de4afa77729d96914d4d2 SHA256: b66a09332645ab567ad1460825f422a17bd7aea9bf27c8d61d71ec0cfdda31b7 Description: console font and keymap setup program Description-md5: f2352fd13dfab31f8aa67306eb77bb05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: consolekit Priority: optional Section: admin Installed-Size: 441 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Version: 0.4.5-3.1ubuntu2 Depends: libc6 (>= 2.4), libck-connector0 (= 0.4.5-3.1ubuntu2), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.31.8), libpolkit-gobject-1-0 (>= 0.94), libx11-6, zlib1g (>= 1:1.1.4), dbus (>= 1.1.2) Recommends: libpam-ck-connector Breaks: udev (<< 147) Filename: pool/main/c/consolekit/consolekit_0.4.5-3.1ubuntu2_i386.deb Size: 103446 MD5sum: 0ca395159fea35165402021fee2875e0 SHA1: 7790336a9c264586c0c3f54621e53a2543921070 SHA256: 73cc11c9eb618fab7dd140bd9cf4fa82342920acd2661bb7e3df565ee9fa6667 Description: framework for defining and tracking users, sessions and seats Homepage: http://www.freedesktop.org/wiki/Software/ConsoleKit Description-md5: ebcb508a56f0ac7c55a29c37ded2a104 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, lubuntu-core, ubuntustudio-video, ubuntustudio-graphics Package: coreutils Essential: yes Priority: required Section: utils Installed-Size: 6124 Maintainer: Ubuntu Developers Original-Maintainer: Michael Stone Architecture: i386 Version: 8.21-1ubuntu5 Replaces: mktemp, timeout Pre-Depends: libacl1 (>= 2.2.51-8), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.17), libselinux1 (>= 1.32) Conflicts: timeout Filename: pool/main/c/coreutils/coreutils_8.21-1ubuntu5_i386.deb Size: 1086730 MD5sum: ce6e6ba8243988c068b257d1386ffb20 SHA1: 4b9e532f86e1082cfd5545ebbd28e12afddfd1cd SHA256: ecbae724cf3ea23dc637d3d569ec156ca6613a2c1662ca3bd3c8eccdbc6c0f1e Description: GNU core utilities Multi-Arch: foreign Homepage: http://gnu.org/software/coreutils Description-md5: ca29325ab0239421f7b6be11369cc121 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: corosync Priority: optional Section: admin Installed-Size: 920 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Version: 2.3.3-1ubuntu1 Depends: libc6 (>= 2.4), libcfg6 (= 2.3.3-1ubuntu1), libcmap4 (= 2.3.3-1ubuntu1), libcorosync-common4 (= 2.3.3-1ubuntu1), libcpg4 (= 2.3.3-1ubuntu1), libdbus-1-3 (>= 1.0.2), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libqb0, libquorum5 (= 2.3.3-1ubuntu1), libsam4 (= 2.3.3-1ubuntu1), libtotem-pg5 (= 2.3.3-1ubuntu1), libvotequorum6 (= 2.3.3-1ubuntu1), lsb-base (>= 3.0-6), adduser Conflicts: openais (<< 0.85), openais-legacy (<< 1.0.0) Filename: pool/main/c/corosync/corosync_2.3.3-1ubuntu1_i386.deb Size: 211194 MD5sum: 994c882aed98a994b0d19bae7d2be352 SHA1: 828ac2b5a5022772e7cf1bcaaf7a05b08472b645 SHA256: 77966fd889efa084c4eef315bf7f3d0d320119b8cd6c8c8d068ffa1b0f194cde Description: Standards-based cluster framework (daemon and modules) Description-md5: 6919b701a49bdb9b99ff093ba8f8a84f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: corosync-dbg Priority: extra Section: debug Installed-Size: 3788 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Depends: libcfg6 (= 2.3.3-1ubuntu1), libcmap4 (= 2.3.3-1ubuntu1), libcorosync-common4 (= 2.3.3-1ubuntu1), libcpg4 (= 2.3.3-1ubuntu1), libquorum5 (= 2.3.3-1ubuntu1), libsam4 (= 2.3.3-1ubuntu1), libtotem-pg5 (= 2.3.3-1ubuntu1), libvotequorum6 (= 2.3.3-1ubuntu1) Filename: pool/main/c/corosync/corosync-dbg_2.3.3-1ubuntu1_i386.deb Size: 822602 MD5sum: 8dc0709af7f20fb1b5766e7bba60d8f6 SHA1: 30530b680b5395f9c86f6a772750f4cbb917f229 SHA256: bd28870c98af1e5836d11d3afa64191b46b17c80f74a21cb35c180ec6b86a7dc Description: Standards-based cluster framework (debugging symbols) Description-md5: fd4a4e8fd33ddf4706a49a3a324162ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: corosync-dev Priority: optional Section: libdevel Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Depends: libcorosync-common-dev (= 2.3.3-1ubuntu1) Filename: pool/main/c/corosync/corosync-dev_2.3.3-1ubuntu1_i386.deb Size: 3222 MD5sum: 672005645388f5a6f2dc1e4f9f41e21b SHA1: 61c5b69b4b9342c78799eec090251408db2b4a98 SHA256: 7878de5640a1fbf9e0b16dcab6d005d5ec978521f8edd42935ad6090d2a45e9a Description: Standards-based cluster framework (transitional package) Description-md5: 7b075c5ac6dc0b847b60b2f60289a719 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpio Priority: required Section: utils Installed-Size: 312 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: i386 Version: 2.11+dfsg-1ubuntu1 Replaces: cpio-mt Depends: libc6 (>= 2.17) Suggests: libarchive1 Conflicts: cpio-mt, mt-st (<< 0.6) Filename: pool/main/c/cpio/cpio_2.11+dfsg-1ubuntu1_i386.deb Size: 106276 MD5sum: 195a74ac47207b4e77d0dd050a2734fd SHA1: f55b1acf4ac56663799a1882dea0078f1188fd5d SHA256: ca0f4d66c3bd14e4fa58afee0c910ae0acbe8374b1e5cc6420eaf4e86bd05a1f Description: GNU cpio -- a program to manage archives of files Multi-Arch: foreign Homepage: http://www.gnu.org/software/cpio/ Description-md5: 5f492bf139a41f29fd2d6fcadf43606e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: cpp Priority: optional Section: interpreters Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: cpp-4.8 (>= 4.8.2-5~) Suggests: cpp-doc Conflicts: cpp-doc (<< 1:2.95.3) Filename: pool/main/g/gcc-defaults/cpp_4.8.2-1ubuntu6_i386.deb Size: 27450 MD5sum: 3e18ec5579f464e287b4505fe6a6d346 SHA1: a9cd38d05ce333851b33da5b837468babc1a120b SHA256: 63d90ec5e7661e061953837a416f16f44af9eae50f110ccc887f5ab3890eb296 Description: GNU C preprocessor (cpp) Multi-Arch: allowed Description-md5: aa450f6a454bdd6b0d8d9862a9240255 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cpp-4.7 Priority: optional Section: interpreters Installed-Size: 12199 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libc6 (>= 2.11), libcloog-ppl1, libgmp10, libmpc3, libmpfr4 (>= 3.1.2), libppl-c4, zlib1g (>= 1:1.1.4) Suggests: gcc-4.7-locales (>= 4.7.2-16) Filename: pool/main/g/gcc-4.7/cpp-4.7_4.7.3-12ubuntu1_i386.deb Size: 3973134 MD5sum: d7993861544c4a673e7ae3235dec0ab8 SHA1: d9f4df26ea641db1d0491717a532ef488b31d254 SHA256: b9766689678012fd0d2bf93da896e6aa8bab32b61d7dc96c976ee29815c884a9 Description: GNU C preprocessor Homepage: http://gcc.gnu.org/ Description-md5: 93a75b5e1f4b43c36eba0239b6fab6a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.7-doc Priority: optional Section: doc Installed-Size: 550 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (>= 4.7.2-16), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.7/cpp-4.7-doc_4.7.3-12ubuntu1_all.deb Size: 175610 MD5sum: 88c41190b70236d09fd6663704b6a343 SHA1: 7ec16c07310513b311c7daa798e8e812155ccb44 SHA256: 7baa760c64bf5c0ec6172e59d0599926b7272c82f8fce5eea0e04556248fd357 Description: Documentation for the GNU C preprocessor (cpp) Homepage: http://gcc.gnu.org/ Description-md5: 22a9ba311e91d8d744a9e4df2030d2bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.8 Priority: optional Section: interpreters Installed-Size: 13443 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-locales (>= 4.8) Filename: pool/main/g/gcc-4.8/cpp-4.8_4.8.2-19ubuntu1_i386.deb Size: 4447674 MD5sum: 5f4dd2e6b642a87b4ea49ff8aba3449b SHA1: 09ec116a96ea7873aad7cd02efbf4c0d5801fb67 SHA256: c5eb773c5e9246b0034adbaa33a8aa50dc507866fda7fa6804c7bebe139d0729 Description: GNU C preprocessor Homepage: http://gcc.gnu.org/ Description-md5: 93a75b5e1f4b43c36eba0239b6fab6a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cpp-4.8-aarch64-linux-gnu Priority: extra Section: devel Installed-Size: 11420 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-locales (>= 4.8) Filename: pool/main/g/gcc-4.8-arm64-cross/cpp-4.8-aarch64-linux-gnu_4.8.2-13ubuntu1cross0.11_i386.deb Size: 3741684 MD5sum: 349abaaa3074bc8a03a69cef70ea48c8 SHA1: d16d47a16786047483694ea8570a706325ba9931 SHA256: 285f323b5353da25e6d190bbb47779fa9b3d21c0f8c63dcf9d2d0ca76e0421ee Description: GNU C preprocessor Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 45f5a7d0ff0712ad443d07c2355c0a1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.8-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 13873 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-locales (>= 4.8) Filename: pool/main/g/gcc-4.8-armhf-cross/cpp-4.8-arm-linux-gnueabihf_4.8.2-16ubuntu4cross0.11_i386.deb Size: 4352370 MD5sum: 356717db0471e9b8917f437caeb4e816 SHA1: db23dbe9a11d24cbf703f003bb5fa027100a4ec8 SHA256: a8f181f64cffed42cfca3ca26a1e86fe2c4936da8de5e720da0143bd2977d625 Description: GNU C preprocessor Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 7f9493441e3cdf1166438a9959deefe1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.8-doc Priority: optional Section: doc Installed-Size: 551 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.8/cpp-4.8-doc_4.8.2-19ubuntu1_all.deb Size: 175874 MD5sum: 5740cae8e6078fa7d92ab7d7b1655141 SHA1: 84a3d473ec448faf2156c58ae32e1c0be774f256 SHA256: b556ef4df3207fe0d03f8450986e680f9a5e004e3baf36c905514ea9833f8c8a Description: Documentation for the GNU C preprocessor (cpp) Homepage: http://gcc.gnu.org/ Description-md5: 22a9ba311e91d8d744a9e4df2030d2bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.8-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 13869 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-locales (>= 4.8) Filename: pool/main/g/gcc-4.8-powerpc-cross/cpp-4.8-powerpc-linux-gnu_4.8.2-16ubuntu3cross0.11_i386.deb Size: 4449810 MD5sum: b0c857d99d1d5dd4070f71580650dbf2 SHA1: 34e1f47011b852ea9c390ea2c16865e532444d81 SHA256: d5714b5fc777cf65e1d6780c2373f23df6ce4dfdc8897eb372030f983b0d0667 Description: GNU C preprocessor Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 4f91d407b8b7aa38dc64eff3ee27629c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-4.8-powerpc64le-linux-gnu Priority: extra Section: devel Installed-Size: 13869 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Replaces: gcc-4.6 (<< 4.6.1-9) Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-locales (>= 4.8) Filename: pool/main/g/gcc-4.8-ppc64el-cross/cpp-4.8-powerpc64le-linux-gnu_4.8.2-16ubuntu4cross0.4_i386.deb Size: 4295526 MD5sum: df390ac6999232f797c330c428c93f57 SHA1: 92019ca5c03352ed70efa91e2632a2aa9f8307b9 SHA256: bdf65182349e9faee6154d46ebc1c2a75f5e016647473ac835c85f60127c3e69 Description: GNU C preprocessor Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 3c8dfbf0de7afc39cf0815e138362016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-aarch64-linux-gnu Priority: optional Section: interpreters Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-arm64-cross (0.4) Version: 4:4.8.2-1 Depends: cpp-4.8-aarch64-linux-gnu (>= 4.8.2-1) Suggests: cpp-doc Conflicts: cpp-4.4-aarch64-linux-gnu (<= 4.4.5-15~), cpp-4.5-aarch64-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-arm64-cross/cpp-aarch64-linux-gnu_4.8.2-1_i386.deb Size: 1962 MD5sum: 568f909bcb7f894b9bf736e199f3a9f9 SHA1: 7bd8c22aa957b90184477eea20523ed9e3bd9c98 SHA256: b0fa25a0a875b43c718290c4d61ab5c46d33a7903407d0e1ef7cc0c3c21f9961 Description: The GNU C preprocessor (cpp) for arm64 architecture Description-md5: 6e957852a7f6cac226d33fd7f7b31252 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-arm-linux-gnueabihf Priority: optional Section: interpreters Installed-Size: 38 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-armhf-cross (1.16) Version: 4:4.8.2-1 Depends: cpp-4.8-arm-linux-gnueabihf (>= 4.8.2-1) Suggests: cpp-doc Conflicts: cpp-4.4-arm-linux-gnueabihf (<= 4.4.5-15~), cpp-4.5-arm-linux-gnueabihf (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-armhf-cross/cpp-arm-linux-gnueabihf_4.8.2-1_i386.deb Size: 2524 MD5sum: edf56d1da846645a54fa68bdc0ed357d SHA1: 8ae3bd7058d442d08c56ad50c1df55f391309d37 SHA256: efaa42ee88ba1e4837dcab73c139c82081d76ba6eb45243ee233b61153a23fd6 Description: The GNU C preprocessor (cpp) for armhf architecture Description-md5: c20358ba520d7c2baa5f430290659867 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-doc Priority: optional Section: doc Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: cpp-4.8-doc (>= 4.8.2-5~) Suggests: cpp (>= 4:4.8.2-1ubuntu6) Filename: pool/main/g/gcc-defaults/cpp-doc_4.8.2-1ubuntu6_i386.deb Size: 3488 MD5sum: c067ae111006eca829404236ced48536 SHA1: 15941994dbd72643fb0a295c336d3bd5dcf5069c SHA256: 8b8ca1bbfa359881ae192505d89227b4b79f0036e5955588ebe89cd751ecda26 Description: Documentation for the GNU C preprocessor (cpp) Description-md5: bedc30e6ac711bb807bb5f49569e8b35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-powerpc-linux-gnu Priority: optional Section: interpreters Installed-Size: 37 Maintainer: Ubuntu Developers Architecture: i386 Source: gcc-defaults-powerpc-cross (0.7) Version: 4:4.8.2-1 Depends: cpp-4.8-powerpc-linux-gnu (>= 4.8.2-1) Suggests: cpp-doc Conflicts: cpp-4.4-powerpc-linux-gnu (<= 4.4.5-15~), cpp-4.5-powerpc-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-powerpc-cross/cpp-powerpc-linux-gnu_4.8.2-1_i386.deb Size: 1962 MD5sum: 730ed857ba2a56b003520bb6de914614 SHA1: 741ad9710895fb43bd24fa596369b1a5dcfe3e7a SHA256: 15b1e2ae8aa8ce904c931a348b69ffc22dc610f0ede4d58f367e3089f6a87d60 Description: The GNU C preprocessor (cpp) for powerpc architecture Description-md5: 89245abafedbc05f3c9d982699229ef4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpp-powerpc64le-linux-gnu Priority: optional Section: interpreters Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-ppc64el-cross (0.2) Version: 4:4.8.2-1 Depends: cpp-4.8-powerpc64le-linux-gnu (>= 4.8.2-1) Suggests: cpp-doc Conflicts: cpp-4.4-powerpc64le-linux-gnu (<= 4.4.5-15~), cpp-4.5-powerpc64le-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-ppc64el-cross/cpp-powerpc64le-linux-gnu_4.8.2-1_i386.deb Size: 1852 MD5sum: 2d6d0b9fcfa515c01ea93b412bd8f63e SHA1: acad2010585c506f62083c80b1667d7dc1e5fadf SHA256: bf729b1540677c4453e4ff70ff5a833ab9079af1c43042f529bea8001c58c5d3 Description: The GNU C preprocessor (cpp) for ppc64el architecture Description-md5: eccbd0f1f8501d0309f3cdf37a1d2ada Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cpu-checker Priority: optional Section: utils Installed-Size: 45 Maintainer: Kees Cook Architecture: i386 Version: 0.7-0ubuntu4 Replaces: qemu-kvm (<< 0.12.3-0ubuntu13) Depends: msr-tools Conflicts: qemu-kvm (<< 0.12.3-0ubuntu13) Filename: pool/main/c/cpu-checker/cpu-checker_0.7-0ubuntu4_i386.deb Size: 6848 MD5sum: 86377ea398351f5f32afeb85c9e3ef06 SHA1: c8f2e33c5942aabe98ff6a962bd653bd499f7bec SHA256: 934d964e788dba71cf4371efe18683254d368f9392722569a46839b25c6889c8 Description: tools to help evaluate certain CPU (or BIOS) features Homepage: https://launchpad.net/cpu-checker Description-md5: c2cf9eeaa26a61213dc6270934083431 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: cracklib-runtime Priority: optional Section: admin Installed-Size: 607 Maintainer: Ubuntu Developers Original-Maintainer: Jan Dittberner Architecture: i386 Source: cracklib2 Version: 2.9.1-1build1 Depends: file, libcrack2 (>= 2.9.1-1build1), libc6 (>= 2.4) Recommends: wamerican | wordlist Filename: pool/main/c/cracklib2/cracklib-runtime_2.9.1-1build1_i386.deb Size: 136492 MD5sum: 74ff540b05f132ec49f01bb88ff4d0d5 SHA1: ddedf1522e33b6001c38c4861949ab8b84d873ac SHA256: 1c0f649ecec2284f40c3d02552a4657a374cbe94124e232cde0243a817a0c9c1 Description: runtime support for password checker library cracklib2 Multi-Arch: foreign Homepage: http://sourceforge.net/projects/cracklib Description-md5: 735547e1edb1c58c3775b3a199b66896 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: cramfsprogs Priority: optional Section: utils Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian kernel team Architecture: i386 Source: cramfs Version: 1.1-6build4 Replaces: mkcramfs Provides: mkcramfs Depends: libc6 (>= 2.8), zlib1g (>= 1:1.1.4) Conflicts: mkcramfs Filename: pool/main/c/cramfs/cramfsprogs_1.1-6build4_i386.deb Size: 21454 MD5sum: ddda8013bf80e2f9a33920a5a2d20781 SHA1: 05b1537c0d1a43e2323c4ab80214999856a89ca4 SHA256: 50b471855f100d93ec5f5828e96a24b99e187a2317f10837154f1dd0c877c027 Description: Tools for CramFs (Compressed ROM File System) Description-md5: 84999f91c25bcc80c3b25c460b471672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: crash Priority: optional Section: utils Installed-Size: 6970 Maintainer: Ubuntu Developers Original-Maintainer: Troy Heber Architecture: i386 Version: 7.0.3-3ubuntu2 Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libtinfo5, zlib1g (>= 1:1.2.0), binutils Suggests: kexec-tools, makedumpfile Filename: pool/main/c/crash/crash_7.0.3-3ubuntu2_i386.deb Size: 2288246 MD5sum: 83393f671522241ddf6ff0e246de64ea SHA1: 97a52d3b0410342bf8039dbbcdc1832cd9f8f140 SHA256: 652efe11c6a76b63cc605041899843e0a77121f1a43f502041482c76ddfe3999 Description: kernel debugging utility, allowing gdb like syntax Description-md5: 62a3af04681a29149ddd988c1db996db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: crda Priority: optional Section: net Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Ben Hutchings Architecture: i386 Version: 1.1.2-1ubuntu2 Replaces: wireless-crda (<< 1.15), wireless-regdb (= 2011.04.28-1ubuntu1), wireless-regdb (= 2011.04.28-1ubuntu2) Depends: libc6 (>= 2.4), libnl-3-200 (>= 3.2.7), libnl-genl-3-200 (>= 3.2.7), libssl1.0.0 (>= 1.0.0), wireless-regdb Recommends: iw Breaks: wireless-crda (<< 1.15), wireless-regdb (= 2011.04.28-1ubuntu1), wireless-regdb (= 2011.04.28-1ubuntu2) Filename: pool/main/c/crda/crda_1.1.2-1ubuntu2_i386.deb Size: 14744 MD5sum: 02ebbc961d74626115bca8f8b249989e SHA1: 64606b4689b96cf3e47b21a7d434250357e2b923 SHA256: ac02cec8e1430705629b1716ba35d003608f0532497caaf2f3fc63342cd7fad2 Description: wireless Central Regulatory Domain Agent Multi-Arch: foreign Homepage: http://wireless.kernel.org/en/developers/Regulatory/#CRDA Description-md5: 808a6a982a696519de07435805e6695e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: crmsh Priority: extra Section: admin Installed-Size: 1123 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: all Version: 1.2.5+hg1034-1ubuntu3 Replaces: pacemaker (<< 1.1.8-1) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-lxml Recommends: pacemaker (>= 1.1.8-1) Breaks: pacemaker (<< 1.1.8-1) Filename: pool/main/c/crmsh/crmsh_1.2.5+hg1034-1ubuntu3_all.deb Size: 256840 MD5sum: d9f6d3783786ff4de3fe908ef10ca3e8 SHA1: ff834b649542862ff093ca4d73c40e3fffc4d392 SHA256: 040d46c809c4c05cf9d1214072ba7478fd812f0ba50e72d095693db10648a494 Description: CRM shell for the pacemaker cluster manager Homepage: http://savannah.nongnu.org/projects/crmsh/ Description-md5: 8a58092e8c39ea609fa8214b76607d1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cron Priority: important Section: admin Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Maintainer: Javier Fernández-Sanguino Peña Architecture: i386 Version: 3.0pl1-124ubuntu2 Provides: cron-daemon Depends: libc6 (>= 2.7), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), upstart-job, debianutils (>= 1.7), adduser, lsb-base (>= 3.0-10), libpam-runtime (>= 1.0.1-11) Pre-Depends: dpkg (>= 1.15.7.2) Suggests: anacron (>= 2.0-1), logrotate, checksecurity, exim4 | postfix | mail-transport-agent Breaks: dpkg (<< 1.15.4) Filename: pool/main/c/cron/cron_3.0pl1-124ubuntu2_i386.deb Size: 81022 MD5sum: 4e1f4de089c73d5527551d796e3a19fe SHA1: 1504b3e20cac8dad846a5c71d6044f02fb568546 SHA256: 13406d72c6ab1274e634f24cf0c7e33932fb9f41570a81dfb3bca9c72fba141f Description: process scheduling daemon Homepage: http://ftp.isc.org/isc/cron/ Description-md5: 7384e614068d48b9ac2335cb05added3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: crossbuild-essential-arm64 Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: build-essential Version: 11.6ubuntu6 Depends: libc6-dev:arm64, gcc-aarch64-linux-gnu (>= 4.7.2-3), g++-aarch64-linux-gnu (>= 4.7.2-3), pkg-config-aarch64-linux-gnu, dpkg-cross Filename: pool/main/b/build-essential/crossbuild-essential-arm64_11.6ubuntu6_all.deb Size: 4436 MD5sum: ce794e358d807785208bfa1d8bad6779 SHA1: 009f3503f5e2c22e7801fd3e26b534232dbcd180 SHA256: 7f8d7fca6e94577024c86052c20601ce94e9e86ec71b0e9d8aedb938b99f52db Description: Informational list of cross-build-essential packages Description-md5: 9b2629bcd07961cfcb27934f1371078a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: crossbuild-essential-armhf Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: build-essential Version: 11.6ubuntu6 Depends: libc6-dev:armhf, gcc-arm-linux-gnueabihf (>= 4.7.2-3), g++-arm-linux-gnueabihf (>= 4.7.2-3), pkg-config-arm-linux-gnueabihf, dpkg-cross Filename: pool/main/b/build-essential/crossbuild-essential-armhf_11.6ubuntu6_all.deb Size: 4438 MD5sum: 3d8f9a381bb09f0078e5378fed483404 SHA1: 42196a2661e4309ca74d1351871ae99633050fcc SHA256: 7aab41fbf4ee86a2554ffa5542d900e01e538006d797bb9ba3d0e6f4fccbf3bf Description: Informational list of cross-build-essential packages Description-md5: 9b2629bcd07961cfcb27934f1371078a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: crossbuild-essential-powerpc Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: build-essential Version: 11.6ubuntu6 Depends: libc6-dev:powerpc, gcc-powerpc-linux-gnu (>= 4.7.2-3), g++-powerpc-linux-gnu (>= 4.7.2-3), pkg-config-powerpc-linux-gnu, dpkg-cross Filename: pool/main/b/build-essential/crossbuild-essential-powerpc_11.6ubuntu6_all.deb Size: 4438 MD5sum: 100255572bc2ffcdac6abf92817b669c SHA1: c94597da71c9f720bf68fa2a2646bdeeb3b2aa78 SHA256: c32a4a91a82fc665f21a82cf4a473306cba1b5df7a9c3c5f5f3944fe93ae46e5 Description: Informational list of cross-build-essential packages Description-md5: 9b2629bcd07961cfcb27934f1371078a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: crossbuild-essential-ppc64el Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: build-essential Version: 11.6ubuntu6 Depends: libc6-dev:ppc64el, gcc-powerpc64le-linux-gnu (>= 4.7.2-3), g++-powerpc64le-linux-gnu (>= 4.7.2-3), pkg-config-powerpc64le-linux-gnu, dpkg-cross Filename: pool/main/b/build-essential/crossbuild-essential-ppc64el_11.6ubuntu6_all.deb Size: 4446 MD5sum: 0f1f6d68ccae10cd6f5ea198e15fc06f SHA1: 09f1816cf7cb8a2304528cb5acfc8fa863f0fa88 SHA256: 7deeba731553ae90e51b65806c69884aa97196cc84d3ffdf857f938dfb3084b8 Description: Informational list of cross-build-essential packages Description-md5: 9b2629bcd07961cfcb27934f1371078a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cryptsetup Priority: optional Section: admin Installed-Size: 346 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cryptsetup Team Architecture: i386 Version: 2:1.6.1-1ubuntu1 Replaces: cryptsetup-luks, hashalot (<< 0.3-2) Provides: cryptsetup-luks Depends: libc6 (>= 2.15), debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), dmsetup, initramfs-tools (>= 0.91) | linux-initramfs-tool, plymouth, cryptsetup-bin Recommends: kbd, console-setup, busybox-static | busybox Suggests: dosfstools, liblocale-gettext-perl Conflicts: cryptsetup-luks Breaks: hashalot (<< 0.3-2) Filename: pool/main/c/cryptsetup/cryptsetup_1.6.1-1ubuntu1_i386.deb Size: 115860 MD5sum: 8230cc5c3ee8b8d135f6ac19dfc0c318 SHA1: 066b31dbd132d80dcf1f124ee534a1f0b97b2967 SHA256: 1ebaa17772e452f1b277c0a8fed2a5739d0f3b86f9b66b056e6d6a4ffd533904 Description: disk encryption support - startup scripts Homepage: http://code.google.com/p/cryptsetup/ Description-md5: 7d16ff8049ac55b58d616e4fc3a33f99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: cryptsetup-bin Priority: optional Section: admin Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cryptsetup Team Architecture: i386 Source: cryptsetup Version: 2:1.6.1-1ubuntu1 Replaces: cryptsetup (<< 2:1.4.1-2ubuntu2~) Depends: libc6 (>= 2.15), libcryptsetup4 (>= 2:1.6), libpopt0 (>= 1.14) Breaks: cryptsetup (<< 2:1.4.1-2ubuntu2~) Filename: pool/main/c/cryptsetup/cryptsetup-bin_1.6.1-1ubuntu1_i386.deb Size: 78990 MD5sum: 14cb12b771e99245d9955d4a3ebdd459 SHA1: 9f443e2d7c071d45d7240fce62cf5498547d19d0 SHA256: 82a2602da1b934c446102024e227883fa82722c6122d1e35efb7b3f98f88494b Description: disk encryption support - command line tools Homepage: http://code.google.com/p/cryptsetup/ Description-md5: add9677f52cab4742cc168ac5534c9ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: cu Priority: extra Section: comm Installed-Size: 275 Maintainer: Ubuntu Developers Original-Maintainer: Richard A Nelson (Rick) Architecture: i386 Source: uucp Version: 1.07-20.1 Replaces: uucp (<< 1.06.1+1.07beta1-patch2-1) Depends: libc6 (>= 2.15) Conflicts: uucp (<< 1.06.1+1.07beta1-patch2-1) Filename: pool/main/u/uucp/cu_1.07-20.1_i386.deb Size: 69960 MD5sum: 64f3031deeaa121f2269b8fc1a2c295e SHA1: 6cce6f0d24fac20949bb5d93c58f15a1f62968aa SHA256: 1b7a4c4fcf7641785cb53b102e80130c5b9b08551f73c6b74cafee8ddf41ec12 Description: call up another system Description-md5: 3be86ba2957547b80526914de84a5085 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: culmus Priority: optional Section: x11 Installed-Size: 2256 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: all Version: 0.130-1 Depends: xfonts-utils Filename: pool/main/c/culmus/culmus_0.130-1_all.deb Size: 1143794 MD5sum: 3b88fd215a6821022ac3601d916a6b5d SHA1: 301a1b48271f960e1f0f1a55ac3ce88fcdd1ca15 SHA256: 420369a314b487124c75a6874dfb671e31e495c88999d25d3418873afbfa23c8 Description: TrueType and Type1 Hebrew Fonts for X11 Homepage: http://culmus.sourceforge.net/ Description-md5: c74d0db338ef6e6969b558807c269bd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: cup Priority: optional Section: devel Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 0.11a+20060608-3build1 Depends: default-jre-headless | java1-runtime-headless | java2-runtime-headless Suggests: java-compiler Filename: pool/main/c/cup/cup_0.11a+20060608-3build1_all.deb Size: 120102 MD5sum: 83c30d2acc7ab453427509fbde2c18a7 SHA1: 03ae9a17248c70a0e7973ddf7a9a092ed590de4d SHA256: 3c46acbe632cec7750737e4fd53e531eb9570687a24364af24d1cfa5cedf7806 Description: LALR parser generator for Java(tm) Homepage: http://www2.cs.tum.edu/projects/cup/ Description-md5: e17ebf4be9cb3dd50e987f7295bcd089 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cups Priority: optional Section: net Installed-Size: 806 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Version: 1.7.2-0ubuntu1 Replaces: ghostscript-cups (<< 9.02~) Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.16), libcups2 (= 1.7.2-0ubuntu1), libcupscgi1 (>= 1.4.2), libcupsimage2 (>= 1.4.0), libcupsmime1 (>= 1.4.0), libcupsppdc1 (>= 1.4.0), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libusb-1.0-0 (>= 2:1.0.8), debconf (>= 1.2.9) | debconf-2.0, libc-bin (>= 2.13), cups-core-drivers (>= 1.7.2-0ubuntu1), cups-daemon (>= 1.7.2-0ubuntu1), poppler-utils (>= 0.12), procps, ghostscript (>= 9.02~), lsb-base (>= 3.2-14~), cups-common (>= 1.7.2-0ubuntu1), cups-server-common (>= 1.7.2-0ubuntu1), cups-client (>= 1.7.2-0ubuntu1), cups-ppdc, cups-filters (>= 1.0.24-3~) Recommends: avahi-daemon, colord, cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0), printer-driver-gutenprint, cups-filters (>= 1.0.36) | ghostscript-cups (>= 9.02~) Suggests: cups-bsd, foomatic-db-compressed-ppds | foomatic-db, printer-driver-hpcups, hplip, cups-pdf, udev, smbclient Breaks: foomatic-filters (<< 4.0), ghostscript-cups (<< 9.02~) Filename: pool/main/c/cups/cups_1.7.2-0ubuntu1_i386.deb Size: 178286 MD5sum: 25d40248eac4a5aa17d2edd855a28419 SHA1: c1551f7571aee47347ab9244c1d96299d25bf5b5 SHA256: 5b724e0a843747e78a14b6568d7be3daeaa99067c005fb53aa1845cc541a314c Description: Common UNIX Printing System(tm) - PPD/driver support, web interface Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: 757338adad655b8f7da62fcd23ed6453 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-browsed Priority: optional Section: net Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups-filters Version: 1.0.52-0ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.4), libcups2 (>= 1.6.0), libglib2.0-0 (>= 2.14.0), init-system-helpers (>= 1.13~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Recommends: avahi-daemon (>= 0.6.31-3~) Breaks: cups-daemon (<< 1.6.4) Filename: pool/main/c/cups-filters/cups-browsed_1.0.52-0ubuntu1_i386.deb Size: 48356 MD5sum: d92a3dd5daa89f89b7eb3324f80bd82e SHA1: ade808cbe4b72c37db21a5cd6c187aebaa653fdd SHA256: c3a54fd60d2ab87121ef555be739e7146a5667eda2a948e964cd42f3bafbb99e Description: OpenPrinting CUPS Filters - cups-browsed Enhances: cups Homepage: http://www.openprinting.org/ Description-md5: 6841b0cfd74741276406b0948b8f9867 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-bsd Priority: extra Section: net Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Replaces: lpr Provides: lpr Depends: libc6 (>= 2.4), libcups2 (>= 1.6.2), debconf (>= 0.5) | debconf-2.0, cups-client (= 1.7.2-0ubuntu1), update-inetd, cups-common (>= 1.7.2-0ubuntu1) Suggests: cups Conflicts: lpr, lprng Filename: pool/main/c/cups/cups-bsd_1.7.2-0ubuntu1_i386.deb Size: 26024 MD5sum: 9295a3650b3b05137d0c1f4312c9a1d4 SHA1: b5daed08e7809631917624189139ead5202688f3 SHA256: 5dcbb7511a56e0b0bbe4c67e77714631f1cc8a9a48348cb23a83ca6f94e6663b Description: Common UNIX Printing System(tm) - BSD commands Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: 8ca999eda442e2096dafa2745e4db8de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-client Priority: optional Section: net Installed-Size: 1013 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.4), libcups2 (= 1.7.2-0ubuntu1), libcupsimage2 (>= 1.4.0), cups-common (>= 1.7.2-0ubuntu1), adduser Recommends: smbclient Suggests: cups, xpp, cups-bsd Conflicts: lprng Filename: pool/main/c/cups/cups-client_1.7.2-0ubuntu1_i386.deb Size: 189638 MD5sum: 0f4f226428ad2272adace13a60e14edb SHA1: 88d82c9e9b01a3ff3e439f14741170732d616d08 SHA256: 8e85d5e9ce0989ff4f5f4590121458dc9ed6f9036863831b296b7fe873270b9f Description: Common UNIX Printing System(tm) - client programs (SysV) Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: 49064ce8151bc5cfbb65936322a4e2ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-common Priority: optional Section: net Installed-Size: 1652 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: cups Version: 1.7.2-0ubuntu1 Filename: pool/main/c/cups/cups-common_1.7.2-0ubuntu1_all.deb Size: 160238 MD5sum: 1e2e77b500fa601f137acc88dfb8ee9a SHA1: 8cf5c372f7ba532767a97163eaf7e28af7d90457 SHA256: e8a44aca28bb82c4a1ea46bc9a53b4d2bd11112e08770da6e004154c74594750 Description: Common UNIX Printing System(tm) - common files Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: ae28e55960aa62a85c88769b70d73eaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-core-drivers Priority: optional Section: net Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Replaces: cups (<< 1.7.1-4~) Depends: libc6 (>= 2.4), libcups2 (= 1.7.2-0ubuntu1), cups-daemon (>= 1.7.2-0ubuntu1), cups-filters-core-drivers (>= 1.0.24-3~) Recommends: avahi-daemon Breaks: cups (<< 1.7.1-4~) Filename: pool/main/c/cups/cups-core-drivers_1.7.2-0ubuntu1_i386.deb Size: 24724 MD5sum: 6f057e4e0928b429bf2192f716cf283c SHA1: 20f9f3c19a07f8aa4a1c24176c7ac22e0b436eec SHA256: f6d70ef040306fc10ba37b19920553bc911a29df4ad10abbfe3be0740b5c1c7f Description: Common UNIX Printing System(tm) - PPD-less printing Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: ce54982db957a747e5a00eb03d0acd3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-daemon Priority: optional Section: net Installed-Size: 946 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Replaces: cups (<< 1.6.1-1~) Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.15), libcups2 (= 1.7.2-0ubuntu1), libcupsmime1 (>= 1.5.0), libdbus-1-3 (>= 1.0.2), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), libpam0g (>= 0.99.7.1), libpaper1, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), procps, lsb-base (>= 3), ssl-cert (>= 1.0.11), adduser, bc Pre-Depends: dpkg (>= 1.15.7.2) Recommends: colord, cups-browsed Suggests: cups, cups-bsd, cups-common (>= 1.7.2-0ubuntu1), cups-server-common (>= 1.7.2-0ubuntu1), cups-client (>= 1.7.2-0ubuntu1), cups-ppdc, cups-filters, poppler-utils (>= 0.12), ghostscript (>= 9.02~), cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0), foomatic-db-compressed-ppds | foomatic-db, printer-driver-gutenprint, printer-driver-hpcups, hplip, cups-pdf, udev, smbclient Breaks: cups (<< 1.6.1-1~) Filename: pool/main/c/cups/cups-daemon_1.7.2-0ubuntu1_i386.deb Size: 259482 MD5sum: 776a8f116690ff9abfbc488f3fcda35b SHA1: f86ccdaf90342268e11764fe5145eb79795f023b SHA256: a89c773b66040b33a058fb0a0c1e12c19e26d9e167ab38e5355c5cdd704ea408 Description: Common UNIX Printing System(tm) - daemon Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: 559bf8b849cd67e4ad13a2a638aea615 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-dbg Priority: extra Section: libdevel Installed-Size: 2614 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: cups-daemon (= 1.7.2-0ubuntu1) Filename: pool/main/c/cups/cups-dbg_1.7.2-0ubuntu1_i386.deb Size: 1942866 MD5sum: 6fc44e4014df7eaa3eee246ecfc944c7 SHA1: 803d0f2ced8ba94e9ff50aee36aaa862c6194d4b SHA256: bd3f7ce5c2b839c92448b93c2a66b348fddb0da6216f7ff8931d05a3812371c4 Description: Common UNIX Printing System(tm) - debugging symbols Homepage: http://www.cups.org Description-md5: 45781fd5891c0e6a36e3f989431c7203 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cups-driver-gutenprint Priority: optional Section: graphics Installed-Size: 21 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: all Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Depends: printer-driver-gutenprint Filename: pool/main/g/gutenprint/cups-driver-gutenprint_5.2.10~pre2-0ubuntu2_all.deb Size: 1402 MD5sum: d4fa73cf73da79a6a213d5f0c6eaf347 SHA1: d8f8f9c1930a0711aa91efd3365964daea9146bb SHA256: e23904a9d565da31cfee2c01471bcfafd38659d1a7a6b5fa3620349f62b38b58 Description: transitional dummy package for gutenprint printer driver Description-md5: 3d2831c87978ed0cc0cc99648dd71da8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: print-server, lubuntu-desktop, ubuntustudio-desktop Package: cups-filters Priority: optional Section: net Installed-Size: 1439 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Version: 1.0.52-0ubuntu1 Replaces: cups (<< 1.5.0-16), cups-common (<< 1.5.0-16), cups-ppdc (<< 1.6), foomatic-filters, ghostscript-cups Provides: foomatic-filters, ghostscript-cups Depends: libc6 (>= 2.15), libcups2 (>= 1.4.0), libcupsfilters1 (>= 1.0.42), libcupsimage2 (>= 1.4.0), libfontconfig1 (>= 2.9.0), libfontembed1 (>= 1.0.31), libgcc1 (>= 1:4.1.1), libijs-0.35 (>= 0.35), libpoppler44 (>= 0.24.5), libqpdf13 (>> 5.0.0~), libstdc++6 (>= 4.1.1), cups-filters-core-drivers (>= 1.0.52-0ubuntu1), bc, ghostscript (>= 9.02~) Recommends: colord Suggests: foomatic-db-compressed-ppds | foomatic-db Conflicts: foomatic-filters, ghostscript-cups Breaks: cups (<< 1.5.0-16), cups-common (<< 1.5.0-16), cups-ppdc (<< 1.6) Filename: pool/main/c/cups-filters/cups-filters_1.0.52-0ubuntu1_i386.deb Size: 427608 MD5sum: 1d2977b09f8cf25f3027480a8610ebe3 SHA1: c89fdaea7f465a450f2d3f76cae4861beb54a4a5 SHA256: ba9e4ab37f75b6fcb15c8f0a9a3f83ae33fba06f62e69c9bf5be35673d395bcc Description: OpenPrinting CUPS Filters - Main Package Homepage: http://www.openprinting.org/ Description-md5: 3904eb1f4e7435cb00f37604454e097a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-filters-core-drivers Priority: optional Section: net Installed-Size: 339 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups-filters Version: 1.0.52-0ubuntu1 Replaces: cups (<< 1.5.0-16), cups-filters (<< 1.0.44-1~) Depends: libc6 (>= 2.4), libcups2 (>= 1.7.0), libcupsfilters1 (>= 1.0.36), libcupsimage2 (>= 1.4.0), libgcc1 (>= 1:4.1.1), liblcms2-2 (>= 2.2+git20110628), libpoppler44 (>= 0.24.5), libqpdf13 (>> 5.0.0~), libstdc++6 (>= 4.4.0), bc, poppler-utils Breaks: cups (<< 1.5.0-16), cups-filters (<< 1.0.44-1~) Filename: pool/main/c/cups-filters/cups-filters-core-drivers_1.0.52-0ubuntu1_i386.deb Size: 89410 MD5sum: c51a4edcf629dd8ec8783405eb6efd88 SHA1: 900254a2fb7e59ad55483b4ea43aecd7fec10ca0 SHA256: c68645c9dc4a940c1a809d15ac766a0256e382b87fbfcc7c916b0c209c40c78e Description: OpenPrinting CUPS Filters - PPD-less printing Homepage: http://www.openprinting.org/ Description-md5: 67465907d5010e764cd27bef007a9ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-pk-helper Priority: extra Section: gnome Installed-Size: 280 Maintainer: Ubuntu Developers Original-Maintainer: Guido Günther Architecture: i386 Version: 0.2.5-0ubuntu1 Depends: libc6 (>= 2.4), libcups2 (>= 1.6.0), libglib2.0-0 (>= 2.31.8), libpolkit-gobject-1-0 (>= 0.99) Filename: pool/main/c/cups-pk-helper/cups-pk-helper_0.2.5-0ubuntu1_i386.deb Size: 57100 MD5sum: 78eb5b863d756369cb8e6569df63bc27 SHA1: 680e7e9092e9f95dd4762e450a3c5c94ddee3df5 SHA256: c0a2398d84c69c7ae4e059b8f85df4bdf4b899b28b7bbf2a278ebda49e18c3b6 Description: PolicyKit helper to configure cups with fine-grained privileges Homepage: http://www.freedesktop.org/wiki/Software/cups-pk-helper Description-md5: 99cdef8011b592b6ad8076a155343c2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: cups-ppdc Priority: optional Section: net Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libc6 (>= 2.4), libcups2 (>= 1.6.2), libcupsppdc1 (>= 1.4.0), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), cups-common (>= 1.7.2-0ubuntu1) Filename: pool/main/c/cups/cups-ppdc_1.7.2-0ubuntu1_i386.deb Size: 24954 MD5sum: 0c230846ec94d2f31a39ef380262a49e SHA1: 03dd9e69b640036c4d0bfb67850da50c40f8f1f0 SHA256: 8a7f0f990f117f4cd582819525c3bfa87c30856fd741b0a8e9976e69cfb61b7f Description: Common UNIX Printing System(tm) - PPD manipulation utilities Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: ba3fa27bc468a14b73280f189057f4e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: cups-server-common Priority: optional Section: net Installed-Size: 2692 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: cups Version: 1.7.2-0ubuntu1 Replaces: cups (<< 1.6.2-2~), cups-common (<< 1.7.0) Breaks: cups (<< 1.6.2-2~), cups-common (<< 1.7.0) Filename: pool/main/c/cups/cups-server-common_1.7.2-0ubuntu1_all.deb Size: 511712 MD5sum: e14d4e968345cb166a64ea4d9962b2bb SHA1: dc30249a7a12eafd588850412fcc17be05c1a11d SHA256: 6b31917b59a9bdc0ef7fcbf67a3f69d0a6c0f0c504f2d75c0baa768c6fca9e81 Description: Common UNIX Printing System(tm) - server common files Multi-Arch: foreign Homepage: http://www.cups.org Description-md5: 78d6321e2b482147d6a44eac119c72bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: curl Priority: optional Section: web Installed-Size: 301 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Version: 7.35.0-1ubuntu2 Depends: libc6 (>= 2.17), libcurl3 (= 7.35.0-1ubuntu2), zlib1g (>= 1:1.1.4) Filename: pool/main/c/curl/curl_7.35.0-1ubuntu2_i386.deb Size: 122606 MD5sum: 0ba6ceb54a2a735a50b063bbe7da823b SHA1: 630159b7a5ce48671d443fd2d7cf656084956b2e SHA256: 11d902a8a15f6642bc0bc7342c4386c3d37a5b052f143ea181a4257e54b1a825 Description: command line tool for transferring data with URL syntax Multi-Arch: foreign Homepage: http://curl.haxx.se Description-md5: f83293d10df083ae6f7bb7d01642913c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: curtin-common Priority: extra Section: admin Installed-Size: 60 Maintainer: Ubuntu Developers Architecture: all Source: curtin Version: 0.1.0~bzr126-0ubuntu1 Depends: util-linux (>= 2.20.1-1ubuntu3) Conflicts: curtin (<= 0.1.0~bzr54-0ubuntu1) Filename: pool/main/c/curtin/curtin-common_0.1.0~bzr126-0ubuntu1_all.deb Size: 8784 MD5sum: 6a3b3f5e03c55d143ca7819a8dcb3bd2 SHA1: 8da6d4534db85401b69e85b68814eda938e8e209 SHA256: b9889373cc1a2e0ca6ab609475e3d32d38a198ec7dc931c90324e7a214a6f5aa Description: Library and tools for curtin installer Homepage: http://launchpad.net/curtin Description-md5: b24ac6ac0cf9c430ccd5e7cc40c446ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cvs Priority: optional Section: devel Installed-Size: 4137 Maintainer: Ubuntu Developers Original-Maintainer: Thorsten Glaser Architecture: i386 Version: 2:1.12.13+real-12 Replaces: cvs-doc Provides: cvs-doc Depends: libbsd0 (>= 0.0), libc6 (>= 2.17), libgssapi-krb5-2 (>= 1.10+dfsg~), libkrb5-3 (>= 1.6.dfsg.2), zlib1g (>= 1:1.1.4), adduser, dpkg (>= 1.15.4) | install-info Recommends: openssh-client Suggests: mksh (>= 40~), rcs Conflicts: cvs-doc Filename: pool/main/c/cvs/cvs_1.12.13+real-12_i386.deb Size: 2311982 MD5sum: 79a1a9d61797727c295e13362c6e1fa0 SHA1: eed6549e0658075c1bb1b57e81a4deb4985dbc76 SHA256: 3fc83664f652e3eff4fdb6eadfb3d39b9b4b77944bc223545864415817a6b283 Description: Concurrent Versions System Multi-Arch: foreign Homepage: http://www.nongnu.org/cvs/ Description-md5: 62e6daa6a4968f3b8a09c5e8724afc0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: cvsps Priority: optional Section: devel Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Version: 2.1-6build1 Depends: libc6 (>= 2.7), zlib1g (>= 1:1.1.4), cvs Filename: pool/main/c/cvsps/cvsps_2.1-6build1_i386.deb Size: 44368 MD5sum: 3779bce7924900d5b1b753a0c701e3ff SHA1: 110b7ad0689d5cce237f24ec95b360f79222f8a0 SHA256: 742fe5ac4a05310cea529cd93e70914ac78397bb5215f66122cb185a44062970 Description: Tool to generate CVS patch set information Description-md5: 4a043ea6c8515d03de2571bcffdceb1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cyrus-sasl2-dbg Priority: extra Section: libdevel Installed-Size: 949 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: i386 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libsasl2-2 (= 2.1.25.dfsg1-17build1) Recommends: cyrus-sasl2-mit-dbg | cyrus-sasl2-heimdal-dbg Filename: pool/main/c/cyrus-sasl2/cyrus-sasl2-dbg_2.1.25.dfsg1-17build1_i386.deb Size: 729764 MD5sum: 3538bae78e27c579888341431e94d050 SHA1: d2db4cf40be1821bee5859a56a9bc56c4ffc8dfd SHA256: 6f506edb1a1da4cbfdb2ba14f58cd6ff313d5828c314cf2486588ccd4c54ceb1 Description: Cyrus SASL - debugging symbols Homepage: http://www.cyrusimap.org/ Description-md5: 1dd80585b22a821c1f59f219462ebb5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cyrus-sasl2-doc Priority: optional Section: doc Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: all Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Filename: pool/main/c/cyrus-sasl2/cyrus-sasl2-doc_2.1.25.dfsg1-17build1_all.deb Size: 61982 MD5sum: b96745eeedff618918d4853cce2249d1 SHA1: 6c0fe35e0b716a94b6217ea5c664a0e253c6dcfa SHA256: 1e8e79959ca1198686ed715f0640ff9eb45c56782ad8d8a2193293e12080be3a Description: Cyrus SASL - documentation Homepage: http://www.cyrusimap.org/ Description-md5: d7d08ebfc592e9842e2cf44e2e6633b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cyrus-sasl2-heimdal-dbg Priority: extra Section: debug Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: i386 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: cyrus-sasl2-dbg (= 2.1.25.dfsg1-17build1), libsasl2-modules-gssapi-heimdal (= 2.1.25.dfsg1-17build1) Conflicts: cyrus-sasl2-mit-dbg Filename: pool/main/c/cyrus-sasl2/cyrus-sasl2-heimdal-dbg_2.1.25.dfsg1-17build1_i386.deb Size: 33316 MD5sum: c74c8457ef9a7d33f3c53c27cf11dba0 SHA1: b06da325dec31402c6d7e2c55241e2b4a48152d8 SHA256: ba8d1fbdf5c5370f48c32437659c59ace00a78d64c3ff8d2c3dc91ccd4eb7c73 Description: Cyrus SASL - debugging symbols for Heimdal modules Homepage: http://www.cyrusimap.org/ Description-md5: d92a4bc29c5a0f1499816117127e70f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cyrus-sasl2-mit-dbg Priority: extra Section: debug Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: i386 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: cyrus-sasl2-dbg (= 2.1.25.dfsg1-17build1), libsasl2-modules-gssapi-mit (= 2.1.25.dfsg1-17build1) Conflicts: cyrus-sasl2-heimdal-dbg Filename: pool/main/c/cyrus-sasl2/cyrus-sasl2-mit-dbg_2.1.25.dfsg1-17build1_i386.deb Size: 32834 MD5sum: 9879188e946698e760814c34a09abe02 SHA1: 0bf9f04d5423dd593d1e49b1a97f32d41321a518 SHA256: 2ca73614aad123925b71f36cb1eb91c5cb8541ca2fa766efd01f34e72a75f4e9 Description: Cyrus SASL - debugging symbols for MIT modules Homepage: http://www.cyrusimap.org/ Description-md5: 281cc95397fa0a6eb002c5962230b180 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cython Priority: optional Section: python Installed-Size: 6082 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: i386 Version: 0.20.1+git90-g0e6e38e-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4) Recommends: python-dev, gcc Filename: pool/main/c/cython/cython_0.20.1+git90-g0e6e38e-1ubuntu2_i386.deb Size: 1259810 MD5sum: 4a3d1a1a9452e78ce844158a7d2e1f55 SHA1: 28ad18415501392231cc9258eace61e3f4f38d10 SHA256: 2a0b66945f717fa6b4e7f299f0ad0e9048bcea9810e9e0f3e748351e4ed37117 Description: C-Extensions for Python Homepage: http://cython.org/ Description-md5: 8c2f4ce3deabcb6941dffa8d5f424759 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cython-dbg Priority: extra Section: debug Installed-Size: 13564 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: i386 Source: cython Version: 0.20.1+git90-g0e6e38e-1ubuntu2 Depends: libc6 (>= 2.4), cython (= 0.20.1+git90-g0e6e38e-1ubuntu2) Filename: pool/main/c/cython/cython-dbg_0.20.1+git90-g0e6e38e-1ubuntu2_i386.deb Size: 2986398 MD5sum: d1575fd20ea24456b3627c6ce84e1268 SHA1: 39b97027e87b6c401b49c95ce4c284f10103994b SHA256: bebdde35e2e3af97fa5843b31b50bbc872c8c2359d42138359dd0c5adb99f2b3 Description: C-Extensions for Python - debug build Homepage: http://cython.org/ Description-md5: 831a0dd08543e9409273899064e59998 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cython-doc Priority: optional Section: doc Installed-Size: 2035 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: all Source: cython Version: 0.20.1+git90-g0e6e38e-1ubuntu2 Depends: libjs-jquery, libjs-underscore Suggests: cython Filename: pool/main/c/cython/cython-doc_0.20.1+git90-g0e6e38e-1ubuntu2_all.deb Size: 358824 MD5sum: d5cff01dbdc1b96ce07176565bcf5c49 SHA1: f0dfce90f63656097b1dc52dc5938d30df372ad2 SHA256: c40209ac422caee3c25971691a6d12e9e60cc0bdfe26adbeed81b941ef14226a Description: C-Extensions for Python - documentation Homepage: http://cython.org/ Description-md5: b98326e90960af4cacb6e6e5f189b186 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cython3 Priority: optional Section: python Installed-Size: 6082 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: i386 Source: cython Version: 0.20.1+git90-g0e6e38e-1ubuntu2 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4) Recommends: python3-dev, gcc Filename: pool/main/c/cython/cython3_0.20.1+git90-g0e6e38e-1ubuntu2_i386.deb Size: 1261854 MD5sum: ee5ff1563ad6e1d9f332623af28e8b1f SHA1: 30d3908246529b9243f3c85c3da764021d583d22 SHA256: 01905d9e8004b2fc60edc076182acd78aa062bc106b5deb0bf4eebf209164747 Description: C-Extensions for Python 3 Homepage: http://cython.org/ Description-md5: b3e5d225e2a7bc6b2e277f244314026c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: cython3-dbg Priority: extra Section: debug Installed-Size: 16019 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: i386 Source: cython Version: 0.20.1+git90-g0e6e38e-1ubuntu2 Depends: libc6 (>= 2.4), cython3 (= 0.20.1+git90-g0e6e38e-1ubuntu2) Filename: pool/main/c/cython/cython3-dbg_0.20.1+git90-g0e6e38e-1ubuntu2_i386.deb Size: 3529246 MD5sum: 5d6b9f4e3a3e344824f20bb95b7937d9 SHA1: bdc8d04233627ada38faf92765fbfd27436211cc SHA256: 77b25eabcaf3e68bb534a09efaba7c59ce51643280fd7ca4d53ef5fa175b5258 Description: C-Extensions for Python 3 - debug build Homepage: http://cython.org/ Description-md5: 520b1a6dd2231aab1f97775233a2363a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: d-shlibs Priority: optional Section: utils Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Smedegaard Architecture: all Version: 0.54ubuntu1 Depends: binutils, apt Filename: pool/main/d/d-shlibs/d-shlibs_0.54ubuntu1_all.deb Size: 10112 MD5sum: d897538a499b1c205c9bf5cbfe680e1f SHA1: 49f9e602a44e22c4303239360d814b956872e88a SHA256: 041a0a2aead0f50f286991e1b64a397ffb5d6a8388c65a5fde4d3a9ef4180f68 Description: Debian shared library package building helper scripts Description-md5: 466a25946a61d311253c205f77544680 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dash Essential: yes Priority: required Section: shells Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: i386 Version: 0.5.7-4ubuntu1 Depends: debianutils (>= 2.15), dpkg (>= 1.15.0) Pre-Depends: libc6 (>= 2.11) Filename: pool/main/d/dash/dash_0.5.7-4ubuntu1_i386.deb Size: 82958 MD5sum: aaaf0f072e0a9d37bd073617d6026eb4 SHA1: b388ac1d592692afbfec7e94af4799f1f8be1645 SHA256: baf964b63ddd72bfa35755a44dc6a50c2e63ace8a5de7c7cb175d6cb3efdbc8b Description: POSIX-compliant shell Homepage: http://gondor.apana.org.au/~herbert/dash/ Description-md5: 8d4d9c32c6b2b70328f7f774a0cc1248 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: datefudge Priority: optional Section: devel Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: i386 Version: 1.18ubuntu3 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/d/datefudge/datefudge_1.18ubuntu3_i386.deb Size: 7808 MD5sum: ba0db79e1f920aed9bbf133c1219cb7b SHA1: 39e216167bce178548794a9ef3a07ed4b1c5425d SHA256: 3fce6fddd4c2d47725ab12a600fcb7dd96d0e8f3c5a5568e0b8b128bdd6c24fa Description: Fake the system date Multi-Arch: same Description-md5: 90d216207ae2ffe441dfbc9f8a57f5df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: db-util Priority: extra Section: utils Installed-Size: 38 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: all Source: db-defaults Version: 1:5.3.21~exp1ubuntu1 Depends: db5.3-util Filename: pool/main/d/db-defaults/db-util_5.3.21~exp1ubuntu1_all.deb Size: 2724 MD5sum: 73011b8b5e7d63e07e7c5ae8d81a08a2 SHA1: 1c4455cd9664b8909dfbf5ce22bb2914b568345d SHA256: 116f57f7d107d484544256c0d9308161ad004307af46884469d4fda1038172a5 Description: Berkeley Database Utilities Description-md5: d85ea68b5af48dcbdc0e4173be4d602d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: db5.3-doc Priority: optional Section: doc Installed-Size: 75305 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: all Source: db5.3 Version: 5.3.28-3ubuntu3 Filename: pool/main/d/db5.3/db5.3-doc_5.3.28-3ubuntu3_all.deb Size: 19033424 MD5sum: 9ec133493fb3818c268071050dcd8a41 SHA1: c1f7a3cb91d72eeef559ccbd695bf34ab8fff677 SHA256: 58ed58d86466d71a693831a3fc918c7b8a07317990db4c95336c65ce9400c215 Description: Berkeley v5.3 Database Documentation [html] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 2826975d4a00b1b8491b8c516aaecf66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: db5.3-util Priority: optional Section: database Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.4), libdb5.3 Filename: pool/main/d/db5.3/db5.3-util_5.3.28-3ubuntu3_i386.deb Size: 62906 MD5sum: 19d032d11d68c16a9574456eff3d70b7 SHA1: baae2020035f1520b4ed87c3193143948e0f4713 SHA256: 3b118bf68ef6fc73238720f57c66dc0c90fa435c103dc58fe6d357353a534296 Description: Berkeley v5.3 Database Utilities Multi-Arch: foreign Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 4415a3b6c387cfe327a0d463376221c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dbconfig-common Priority: optional Section: admin Installed-Size: 1180 Maintainer: Ubuntu Developers Original-Maintainer: Sean Finney Architecture: all Version: 1.8.47+nmu1 Depends: ucf (>= 0.28), debconf (>= 0.5) | debconf-2.0 Suggests: virtual-mysql-client | mysql-client | postgresql-client Filename: pool/main/d/dbconfig-common/dbconfig-common_1.8.47+nmu1_all.deb Size: 467850 MD5sum: 5193d53a4fa411be8f40f2e4d4d134c4 SHA1: 17999aecea80f69cfb01d6bcf35d288a5a8cf157 SHA256: a07c3a741c41c34306fac4ea6145d42517b8b9e34cbd164d73839e34b23f11a3 Description: common framework for packaging database applications Description-md5: 9186eecaccc3c493ebe2ca055eea8697 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dblatex Priority: optional Section: text Installed-Size: 6800 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Hoenen Architecture: all Version: 0.3.4-3build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), docbook-xml, xsltproc, python-apt (>= 0.7.91), texlive (>= 2009), texlive-bibtex-extra (>= 2009), texlive-latex-extra (>= 2009), texlive-math-extra (>= 2009), texlive-extra-utils (>= 2009) Recommends: libxml2-utils Suggests: docbook, ghostscript, graphicsmagick-imagemagick-compat | imagemagick, latex-cjk-all, lmodern, opensp, pdf-viewer, texlive-lang-cyrillic (>= 2009), texlive-xetex (>= 2009), transfig Filename: pool/main/d/dblatex/dblatex_0.3.4-3build1_all.deb Size: 1405122 MD5sum: b10a74ef95a43fcd6707d9f889be7e64 SHA1: 8c6ce41fe7279d220e9fe7724bcbeba33fb92e3d SHA256: 59b631bc2a2bdf59539890ef804a483957bc085ead40422537c22500e88f8abd Description: Produces DVI, PostScript, PDF documents from DocBook sources Homepage: http://dblatex.sourceforge.net/ Description-md5: 15cf88c884f1b5720fc344f3f77ffa0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dbus Priority: standard Section: devel Installed-Size: 1011 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Version: 1.6.18-0ubuntu4 Depends: libapparmor1 (>= 2.8.94-0ubuntu1), libc6 (>= 2.10), libdbus-1-3 (>= 1.0.2), libexpat1 (>= 2.0.1), libselinux1 (>= 1.32), libsystemd-login0 (>= 31), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), adduser, lsb-base (>= 3.2-14), upstart (>= 0.6.3-6), netbase (>= 4.45ubuntu3) Recommends: libpam-systemd Suggests: dbus-x11 Breaks: unity-services (<< 6.0.0-0ubuntu6) Filename: pool/main/d/dbus/dbus_1.6.18-0ubuntu4_i386.deb Size: 226360 MD5sum: deea10e22b1a32176631e1cbd49ed801 SHA1: 56f44c0e767d5d37671f8779c180856be9cf2e01 SHA256: 1ec10e530af9dd98de80388792d2668194060a93bcebf8b0d108eb4c3944475a Description: simple interprocess messaging system (daemon and utilities) Multi-Arch: foreign Homepage: http://dbus.freedesktop.org/ Description-md5: 8317e43242716ec7f7692a3ac5895e1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: dbus-1-dbg Priority: extra Section: debug Installed-Size: 5539 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: dbus Version: 1.6.18-0ubuntu4 Depends: libdbus-1-3 (= 1.6.18-0ubuntu4), dbus (= 1.6.18-0ubuntu4), dbus-x11 (= 1.6.18-0ubuntu4), libapparmor1 (>= 2.8.94-0ubuntu1), libc6 (>= 2.15), libexpat1 (>= 2.0.1), libselinux1 (>= 1.32), libsystemd-login0 (>= 31), libx11-6 Filename: pool/main/d/dbus/dbus-1-dbg_1.6.18-0ubuntu4_i386.deb Size: 2889002 MD5sum: 60c1ae6d14790238c3a40d29614e348f SHA1: 1bfec6ccbb1ae871cc5cafe99ff0d99851626376 SHA256: 41989a028b37bd196c28d580b5cc9eef766e5cbb2cebf8593ea31ee383985dab Description: simple interprocess messaging system (debug symbols) Homepage: http://dbus.freedesktop.org/ Description-md5: 8e652fad9ff7afdabd20cb27b87476a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dbus-1-doc Priority: optional Section: doc Installed-Size: 20692 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: dbus Version: 1.6.18-0ubuntu4 Suggests: libdbus-1-dev Filename: pool/main/d/dbus/dbus-1-doc_1.6.18-0ubuntu4_all.deb Size: 1289458 MD5sum: 46b3472ab4bb364d1a45dc1b3908b86f SHA1: 3070c99673c99dc78f0b733a0e123fd20a53d6c2 SHA256: 00eb9a184528b94df1410cde164c564a58050b98d1fe98a368ab7a9614f5a9cd Description: simple interprocess messaging system (documentation) Homepage: http://dbus.freedesktop.org/ Description-md5: 4ff746780e6dca0a27147236301ca4fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dbus-cpp-dev-examples Priority: optional Section: x11 Installed-Size: 884 Maintainer: Thomas Voß Architecture: i386 Source: dbus-cpp Version: 2.0.0+14.04.20140326-0ubuntu1 Depends: libc6 (>= 2.4), libdbus-cpp2 (>= 2.0.0+14.04.20140310), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Filename: pool/main/d/dbus-cpp/dbus-cpp-dev-examples_2.0.0+14.04.20140326-0ubuntu1_i386.deb Size: 147530 MD5sum: 5be1e895e20adb50bb4359a41942290d SHA1: 1e65c8c17f578cb18971c163dab8b9674d6c640b SHA256: c01bec62989a318c1fcd1e5c522d26caef510f0bdab475911154a5534ee2a270 Description: header-only dbus-binding leveraging C++-11, example binaries Multi-Arch: same Homepage: http://launchpad.net/dbus-cpp Description-md5: 72f28e813da4ccbfa0c2e6aa7651b308 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dbus-test-runner Priority: optional Section: gnome Installed-Size: 53 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 14.04.1+14.04.20140320-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libdbustest1, libglib2.0-0 (>= 2.14.0), gvfs-backends, dbus Suggests: bustle Filename: pool/main/d/dbus-test-runner/dbus-test-runner_14.04.1+14.04.20140320-0ubuntu1_i386.deb Size: 6614 MD5sum: a7e2f769d963cc3cab859a48498e9b63 SHA1: 3c9e74aa5fffd30beb403252b766346d1f234fd8 SHA256: 7c8804b39bedcef8122ddb76dd0fc7edf298a1090415587cf527ccb197e6b005 Description: Runs tests under a new DBus session Multi-Arch: foreign Homepage: https://launchpad.net/dbus-test-runner Description-md5: 88e7da912a798eb55139c316ccca5b7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dbus-x11 Priority: optional Section: x11 Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: dbus Version: 1.6.18-0ubuntu4 Depends: libc6 (>= 2.15), libx11-6, dbus Breaks: x11-common (<< 1:7.5+4) Filename: pool/main/d/dbus/dbus-x11_1.6.18-0ubuntu4_i386.deb Size: 18542 MD5sum: 090318631d83e852d64b58adbbec7274 SHA1: 7662fae62fd5ca58e3e422635c39d67aeba54dc8 SHA256: a15cca5ea105fb103b2d2e6f5c9d433efaf8921790555ce3a1c30acec9f2fa61 Description: simple interprocess messaging system (X11 deps) Multi-Arch: foreign Homepage: http://dbus.freedesktop.org/ Description-md5: 101d13ea029d06116b86761850faa2f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dc Priority: optional Section: math Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Ryan Kavanagh Architecture: i386 Source: bc Version: 1.06.95-8ubuntu1 Depends: libc6 (>= 2.4) Filename: pool/main/b/bc/dc_1.06.95-8ubuntu1_i386.deb Size: 44820 MD5sum: 89ec4b0e68b9b05060db1700157db360 SHA1: 9ef3f4557387fb61c286f6b56ed47d5b98482b7f SHA256: 1505d67d3fde910fa590a62d1127cdc7ac40effaac260ffd814047a873399086 Description: GNU dc arbitrary precision reverse-polish calculator Multi-Arch: foreign Homepage: http://ftp.gnu.org/gnu/bc/ Description-md5: df0fb5699f014e0d2bb4210971dadffa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dconf-cli Priority: optional Section: utils Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: d-conf Version: 0.20.0-1 Replaces: dconf-tools (<< 0.16.0-2) Depends: libc6 (>= 2.4), libdconf1 (>= 0.14.0), libglib2.0-0 (>= 2.39.4) Conflicts: dconf Breaks: dconf-tools (<< 0.16.0-2) Filename: pool/main/d/d-conf/dconf-cli_0.20.0-1_i386.deb Size: 22414 MD5sum: 5fe926574b67ec8fee67340e5e9b8f82 SHA1: e7d43bade71029841db344caab43443194a75b99 SHA256: 7f1581cd6abf007be0f9ade9a447936a7ce35a98611b6ea7bb250b87384f1f80 Description: simple configuration storage system - utilities Homepage: https://wiki.gnome.org/dconf Description-md5: 1d5ca74b35414d275ff0579f00176c88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: dconf-gsettings-backend Priority: optional Section: libs Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: d-conf Version: 0.20.0-1 Replaces: libdconf0 (<< 0.7.3-2) Provides: gsettings-backend Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.39.1), dconf-service (>= 0.20.0-1), dconf-service (<< 0.20.0-1.1~), libdconf1 (= 0.20.0-1) Breaks: libdconf0 (<< 0.7.3-2), libglib2.0-0 (<< 2.30) Filename: pool/main/d/d-conf/dconf-gsettings-backend_0.20.0-1_i386.deb Size: 19192 MD5sum: 1615a2d32f867e01ac4283a34eaf94d6 SHA1: de69ec9798ecceee7b91eceb5cbcfba1e58173e0 SHA256: 277f80508652ea60f570a367163c164564e71281edc71e4e78a3981a0df6f0ca Description: simple configuration storage system - GSettings back-end Multi-Arch: same Homepage: https://wiki.gnome.org/dconf Description-md5: 6b19a0652a2cca6e9bf8daa15cc3026b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dconf-service Priority: optional Section: libs Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: d-conf Version: 0.20.0-1 Replaces: dconf-gsettings-backend (<< 0.10.0-2), libdconf0 (<< 0.7.3-2) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.39.1), libdconf1 (= 0.20.0-1) Recommends: dconf-gsettings-backend Breaks: dconf-gsettings-backend (<< 0.10.0-2), libdconf0 (<< 0.7.3-2) Filename: pool/main/d/d-conf/dconf-service_0.20.0-1_i386.deb Size: 26270 MD5sum: eda9fc82f9aad812ba865814b893a6d8 SHA1: 576aa7e7aec7e48a24a4b7c810e9bac59f3cc16f SHA256: c336dfa253f853033759a6c6c5b3244c3c8f996b5bd33880e80298fcd277dcff Description: simple configuration storage system - D-Bus service Multi-Arch: foreign Homepage: https://wiki.gnome.org/dconf Description-md5: 8339e79de2cc17111e9f391efbb6d79f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dctrl-tools Priority: optional Section: utils Installed-Size: 328 Maintainer: Ubuntu Developers Original-Maintainer: dctrl-tools developers Architecture: i386 Version: 2.23ubuntu1 Replaces: grep-dctrl Provides: grep-dctrl Depends: libc6 (>= 2.4) Suggests: apt, debtags Conflicts: grep-dctrl Filename: pool/main/d/dctrl-tools/dctrl-tools_2.23ubuntu1_i386.deb Size: 99190 MD5sum: 09b2018e749fce259ed3f4f95e991dce SHA1: b38c1ed4f6d91d7b29e0c7c98b66f70b31803e87 SHA256: 8d0208f4c31aac2933752cab76988923bc8b9b05f87269bf13aa28b4ea940ba5 Description: Command-line tools to process Debian package information Multi-Arch: foreign Description-md5: 2be4fae2cb5697a030eba7e7ef050401 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debconf Priority: required Section: admin Installed-Size: 609 Maintainer: Colin Watson Original-Maintainer: Debconf Developers Architecture: all Version: 1.5.51ubuntu2 Replaces: debconf-tiny Provides: debconf-2.0 Pre-Depends: perl-base (>= 5.6.1-4) Recommends: apt-utils (>= 0.5.1), debconf-i18n Suggests: debconf-doc, debconf-utils, whiptail | dialog | gnome-utils, libterm-readline-gnu-perl, libgtk2-perl (>= 1:1.130), libnet-ldap-perl, perl, libqtgui4-perl, libqtcore4-perl 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) Filename: pool/main/d/debconf/debconf_1.5.51ubuntu2_all.deb Size: 136156 MD5sum: 083b7e0bc23eeeca392d35ab898b1eac SHA1: 3769003f2ff0f930fb3fa746b60f6ae2af110dd9 SHA256: 85670d1a5b314c12c2f7c60e7fb075eb0e47fa1643a5a9a92cb900927a9f99a7 Description: Debian configuration management system Multi-Arch: foreign Description-md5: 85b82bf406dfc9a635114f44ab7fb66d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: debconf-doc Priority: optional Section: doc Installed-Size: 454 Maintainer: Colin Watson Original-Maintainer: Debconf Developers Architecture: all Source: debconf Version: 1.5.51ubuntu2 Suggests: debian-policy (>= 3.5) Conflicts: debconf (<< 0.3.10) Filename: pool/main/d/debconf/debconf-doc_1.5.51ubuntu2_all.deb Size: 226792 MD5sum: a0ee566fb05ee0f85497488fb7f99410 SHA1: 582b12301aefece393535fde977391c518a5c889 SHA256: 6ea2f0cc4b65b0458920b8a2def1fb31ee8ca2d6c152a6b42f295facc25ce931 Description: debconf documentation Description-md5: da116c01af307835ff58f0c7931292af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: debconf-i18n Priority: important Section: admin Installed-Size: 1104 Maintainer: Colin Watson Original-Maintainer: Debconf Developers Architecture: all Source: debconf Version: 1.5.51ubuntu2 Replaces: debconf (<< 1.3.0), debconf-utils (<< 1.3.22) Depends: debconf, liblocale-gettext-perl, libtext-iconv-perl, libtext-wrapi18n-perl, libtext-charwidth-perl Conflicts: debconf-english, debconf-utils (<< 1.3.22) Filename: pool/main/d/debconf/debconf-i18n_1.5.51ubuntu2_all.deb Size: 207762 MD5sum: f263a8a394f490cf0dfad010cb1a8099 SHA1: 2bde705f627560331ee696f6b7f9c27a3e08a7bc SHA256: 4abe6a0ae30ef2f6daa8c6053f64472cd4f82d29eb5c293ee7887a0a4a234b6e Description: full internationalization support for debconf Description-md5: 3f303f9083a6c63ddcfd70b4738cca54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: debconf-utils Priority: optional Section: devel Installed-Size: 153 Maintainer: Colin Watson Original-Maintainer: Debconf Developers Architecture: all Source: debconf Version: 1.5.51ubuntu2 Replaces: debconf (<< 0.1.0) Depends: debconf (>= 1.3.20) Conflicts: debconf (<< 0.1.0) Filename: pool/main/d/debconf/debconf-utils_1.5.51ubuntu2_all.deb Size: 57388 MD5sum: f118bf526895959b2d88b5c1f7261b89 SHA1: 928020a8e37de2f7b90eb9beebbd5b6bc8e0c293 SHA256: 1ce0ef3b105a8704ab9bf687b8e57de534c1d485f0af930568061eaac78daf02 Description: debconf utilities Description-md5: 6ee047164ccc84b6b919790585947b39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debhelper Priority: optional Section: devel Installed-Size: 995 Maintainer: Ubuntu Developers Original-Maintainer: Debhelper Maintainers Architecture: all Version: 9.20131227ubuntu1 Depends: perl, file (>= 3.23), dpkg (>= 1.16.2), dpkg-dev (>= 1.17.0), binutils, po-debconf, man-db (>= 2.5.1-1), dh-apparmor Suggests: dh-make Conflicts: automake (<< 1.11.2), dpkg-cross (<< 1.18), python-central (<< 0.5.6), python-support (<< 0.5.3) Filename: pool/main/d/debhelper/debhelper_9.20131227ubuntu1_all.deb Size: 604320 MD5sum: 1b50829a28ce8da780c48a47ccb8cfa5 SHA1: 8f5aeb68847e226a4a159d6a1a7838aedbd12642 SHA256: 332196724d4cbcb2a55e0e7521334f699897f09400794e89adcf8114919a47f3 Description: helper programs for debian/rules Multi-Arch: foreign Homepage: http://kitenet.net/~joey/code/debhelper/ Description-md5: 7f6c2c5e1519e9ecdd8a657cdb536c4c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debian-goodies Priority: optional Section: utils Installed-Size: 190 Maintainer: Ubuntu Developers Original-Maintainer: Javier Fernandez-Sanguino Pen~a Architecture: all Version: 0.63 Replaces: debget Depends: curl, dctrl-tools | grep-dctrl, perl, python (>= 2.4), whiptail | dialog Recommends: lsof Suggests: popularity-contest, xdg-utils, zenity Conflicts: debget Filename: pool/main/d/debian-goodies/debian-goodies_0.63_all.deb Size: 62734 MD5sum: fe2397793fe261f70051b23898711fcd SHA1: 50bac694b581e23ef0c7691d8237c5fd90a2cd3d SHA256: 3a06b3df40a9d28d5d0d78804165ef16f2d3a62dd0a036732974092f84287438 Description: Small toolbox-style utilities for Debian systems Description-md5: 13b40a80b8f8855561f737d5d9bf6761 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debian-installer Priority: optional Section: devel Installed-Size: 1317 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: i386 Version: 20101020ubuntu318 Filename: pool/main/d/debian-installer/debian-installer_20101020ubuntu318_i386.deb Size: 675122 MD5sum: bc5915dae05ce84d83ba9867c67e4dd8 SHA1: 80337a4b233274d8fc702fff736d0cdf3a82b65b SHA256: c2a83e1eaa1b7acf6a12db34f237c1e3c3300675dd93828e98e0a0bca3d5d0ec Description: Debian installer Description-md5: 4971db8ed5ee1de169a33701c5a72c9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debiandoc-sgml Priority: optional Section: text Installed-Size: 1331 Maintainer: Ubuntu Developers Original-Maintainer: Osamu Aoki Architecture: all Version: 1.2.28-1 Depends: perl, sgml-base (>= 1.26+nmu2), libhtml-parser-perl, libroman-perl, libtext-format-perl, sgml-data, sgmlspl, sp Recommends: ghostscript, texlive, texlive-latex-extra, texinfo Suggests: debiandoc-sgml-doc, latex-cjk-all, texlive-lang-all Filename: pool/main/d/debiandoc-sgml/debiandoc-sgml_1.2.28-1_all.deb Size: 116790 MD5sum: 50b3d968c3b0a58453fa6592594979b2 SHA1: 3d285fe759a73a9070864fd36568b9f814b48075 SHA256: 0f152e2829853e83155440c8a60ed4b5965bdeb5da6e17e0dac2d42ba9b8d4ec Description: DebianDoc SGML DTD and formatting tools Multi-Arch: foreign Description-md5: 0da31969986c39eaecea1ef07f8b2c10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: debianutils Essential: yes Priority: required Section: utils Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Clint Adams Architecture: i386 Version: 4.4 Replaces: manpages-pl (<< 1:0.5) Depends: sensible-utils Pre-Depends: libc6 (>= 2.15) Filename: pool/main/d/debianutils/debianutils_4.4_i386.deb Size: 88188 MD5sum: b5bce3af4b2ee9ba2bc62f36b7ec69b0 SHA1: 6657bab32ec50a6ee20735fda4356f7d12231429 SHA256: a366c6a3579a98c6380ea29b18b802b40b286e235705b17e02cd5674ba1bc7f0 Description: Miscellaneous utilities specific to Debian Multi-Arch: foreign Description-md5: ccafef5bb90a2453aecca96cbb772d23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: debootstrap Priority: extra Section: admin Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: all Version: 1.0.59 Depends: wget Recommends: gnupg, ubuntu-keyring Filename: pool/main/d/debootstrap/debootstrap_1.0.59_all.deb Size: 30060 MD5sum: 43020ddccf5175dad1e6fcfa33241b8f SHA1: a47f3606126a8d7526affaec07558090020413b1 SHA256: 1df1b167fed24eb2cae0bcc0ba6d5357f6a40fe0a8aaa6bfe828c7a007413f65 Description: Bootstrap a basic Debian system Description-md5: 883a8efb3ed16248b0d2091d9c0b60c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: debugedit Priority: optional Section: admin Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: rpm Version: 4.11.1-3 Replaces: rpm (<< 4.11.1-2) Depends: libc6 (>= 2.4), libelf1 (>= 0.131), libpopt0 (>= 1.14), librpmio3 (>= 4.10.0) Suggests: rpm-i18n Breaks: rpm (<< 4.11.1-2) Filename: pool/main/r/rpm/debugedit_4.11.1-3_i386.deb Size: 17666 MD5sum: a8ddfdd776c1f1514d132c1e43710433 SHA1: 840802cb5078a2b46be88a3d36797f787af42988 SHA256: 53f8382e57b1d5e922af2ee20237f3aea9e29ff4434a3c84b41b58d1383ef251 Description: tool to mangle source locations in .debug files Multi-Arch: foreign Homepage: http://rpm.org/ Description-md5: ed96261dd092de973eb3cefecd2b42e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: default-jdk Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: i386 Source: java-common (0.51) Version: 2:1.7-51 Provides: java-sdk, java2-sdk, java5-sdk, java6-sdk, java7-sdk Depends: default-jre (= 2:1.7-51), openjdk-7-jdk (>= 7~u3-2.1.1) Filename: pool/main/j/java-common/default-jdk_1.7-51_i386.deb Size: 932 MD5sum: 98f3982cd61086e28d1b43786f9f2f2a SHA1: 7b10fb3c7ad2a2122c3b95601453497661b25f5e SHA256: 1632d02248c2cfca092d09d843de685a4f75df3b74554e438d1a328fe7553867 Description: Standard Java or Java compatible Development Kit Description-md5: ca637d730fe79c07d8a0127632111416 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: default-jdk-doc Priority: optional Section: doc Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: all Source: java-common Version: 0.51 Depends: openjdk-7-doc Suggests: default-jdk Filename: pool/main/j/java-common/default-jdk-doc_0.51_all.deb Size: 3534 MD5sum: cae590c4fdd1df11f5b5272583d7f1d5 SHA1: bbe6b0c6d948678a50fd20dd8de17eaba9580e05 SHA256: 90f5916808f3bd29ebeecb3ba8af36122e780b7e04af8c205cc78d2fc609802f Description: Standard Java or Java compatible Development Kit (documentation) Description-md5: 58d45895ed109f4c99eeb57e53b8feb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: default-jre Priority: optional Section: interpreters Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: i386 Source: java-common (0.51) Version: 2:1.7-51 Provides: java-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime Depends: default-jre-headless (= 2:1.7-51), openjdk-7-jre (>= 7~u3-2.1.1) Filename: pool/main/j/java-common/default-jre_1.7-51_i386.deb Size: 934 MD5sum: 64f2e21a2e01006ddeccd7ad0f203534 SHA1: 5a7055224ac9cf87105a2084afd8df09010ba36a SHA256: 5a728ab1fff0b7ef51d1cdcc8f730066bebad678cdd118c090974d0dfb9f029c Description: Standard Java or Java compatible Runtime Description-md5: 8b4656282ca1a2289b066642c85602f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: default-jre-headless Priority: optional Section: interpreters Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: i386 Source: java-common (0.51) Version: 2:1.7-51 Replaces: openjdk-6-jre-headless (<< 6b23~pre8-2~) Provides: java-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless Depends: openjdk-7-jre-headless (>= 7~u3-2.1.1), java-common Suggests: default-jre Filename: pool/main/j/java-common/default-jre-headless_1.7-51_i386.deb Size: 3834 MD5sum: 88ee6d3b0708738071712d980475e144 SHA1: 6b5781e265d6619444cdf512ef165037b5a31aef SHA256: 822a02e3745b9ea1ec4e54d6663721e5b0f14d8634fffcbb43228a8777550347 Description: Standard Java or Java compatible Runtime (headless) Description-md5: d5b4670ac6d3f132e688eb4d6e67965f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: deja-dup Priority: optional Section: utils Installed-Size: 2940 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: i386 Version: 30.0-0ubuntu4 Depends: dconf-gsettings-backend | gsettings-backend, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libdbusmenu-glib4 (>= 0.4.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-control-center1 (>= 1:3.3.5), libgtk-3-0 (>= 3.9.12), libnautilus-extension1a (>= 1:2.91), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libpeas-1.0-0 (>= 1.0.0), libsecret-1-0 (>= 0.7), libunity-control-center1 (>= 14.04.0), libunity9 (>= 3.4.6), duplicity (>= 0.6.23), gnome-icon-theme-symbolic Pre-Depends: multiarch-support Recommends: deja-dup-backend-gvfs, policykit-1 Suggests: deja-dup-backend-cloudfiles, deja-dup-backend-s3 Filename: pool/main/d/deja-dup/deja-dup_30.0-0ubuntu4_i386.deb Size: 283052 MD5sum: a97ae8d983a1b533e2da69046c129adf SHA1: 2c06a2686568412f9a36a53f01be307394271d73 SHA256: 27158b157e23de05ef67a67a749759dfd4fcb1b44bb02efa81566b177582ef88 Description: Back up your files Homepage: https://launchpad.net/deja-dup Description-md5: bcefeda9975db72a7a2ac610f40bac2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: deja-dup-backend-gvfs Priority: optional Section: utils Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: all Source: deja-dup Version: 30.0-0ubuntu4 Depends: deja-dup, gvfs-backends Filename: pool/main/d/deja-dup/deja-dup-backend-gvfs_30.0-0ubuntu4_all.deb Size: 2528 MD5sum: 82445583822f0d1d0fd677444840792f SHA1: ec0f071e422009ab070416689fa719a1b3d168e2 SHA256: c47f4ee8993889741083f16be61cc02dd897eb852b5c369f794ad19667005399 Description: Remote server support for Déjà Dup Homepage: https://launchpad.net/deja-dup Description-md5: 650d0424cc3225cff2629dcb8e14a5d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: dejagnu Priority: optional Section: devel Installed-Size: 1798 Maintainer: Ubuntu Developers Original-Maintainer: Hector Oron Architecture: all Version: 1.5-3build1 Depends: expect, dpkg (>= 1.15.4) | install-info Filename: pool/main/d/dejagnu/dejagnu_1.5-3build1_all.deb Size: 972994 MD5sum: b2f4f7c15bfbf2e8f2453e2635fbfc9b SHA1: 5f6c319155156ee2c85767d358129400723d8b10 SHA256: a9dd433168aa89a76f5af6a54d61c78ae2da72cfafdfebf4c5038f9eca500be6 Description: framework for running test suites on software tools Description-md5: 641b5a9db687ec0ef1d5efaa06180677 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: desktop-file-utils Priority: optional Section: devel Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: i386 Version: 0.22-1ubuntu1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.28.0) Filename: pool/main/d/desktop-file-utils/desktop-file-utils_0.22-1ubuntu1_i386.deb Size: 42106 MD5sum: 5032d995e7a8288dd57e0dbf5f9b7403 SHA1: 96cac0c6b1916ee5edb383e1025a8507cf308823 SHA256: 806a58f3faaea475f7fea03a5a8ce55701518ce09333f1b99a02f0577bfe6a75 Description: Utilities for .desktop files Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/desktop-file-utils Description-md5: b235afbde001f33936d80b8419f367f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: devhelp Priority: optional Section: devel Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.8.2-2ubuntu1 Depends: libc6 (>= 2.3.6-6~), libdevhelp-3-2 (>= 3.6.1), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.0.0) Recommends: libgtk-3-doc, libglib2.0-doc, libpango1.0-doc Filename: pool/main/d/devhelp/devhelp_3.8.2-2ubuntu1_i386.deb Size: 12036 MD5sum: 06bbf431aabbcf668f9e92712d5731d0 SHA1: 0425a4685dd50bed17ec7c872730a86fbdfd461f SHA256: 67c93ae24daddc7ed0bc0fb9a4f100a838781c9a0f80f5dce4ce2624c25c3b64 Description: GNOME developers help program Homepage: https://wiki.gnome.org/devhelp Description-md5: ae983a3767d2a0a40ed35bb280300912 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: devhelp-common Priority: optional Section: devel Installed-Size: 264 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: devhelp Version: 3.8.2-2ubuntu1 Replaces: libdevhelp-1-0 (<< 2.27.92-1) Depends: dconf-gsettings-backend | gsettings-backend, python3:any (>= 3.3.2-2~) Filename: pool/main/d/devhelp/devhelp-common_3.8.2-2ubuntu1_all.deb Size: 42148 MD5sum: 2c16278eff04512cd2073af068946da0 SHA1: fb2807c58c4601010b5df42584a7631df8aeaf8f SHA256: bfd1b5b95f16d861cc946f9f40e6916889596069608dea4758ede62a9ef60cab Description: Common files for devhelp and its library Homepage: https://wiki.gnome.org/devhelp Description-md5: 516ddf515c96f5c42cd65b6141da8c77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: device-tree-compiler Priority: extra Section: devel Installed-Size: 524 Maintainer: Ubuntu Developers Original-Maintainer: Hector Oron Architecture: i386 Version: 1.4.0+dfsg-1 Depends: libc6 (>= 2.8) Filename: pool/main/d/device-tree-compiler/device-tree-compiler_1.4.0+dfsg-1_i386.deb Size: 356946 MD5sum: b8131b221c3c22af9fb423753bbe98cc SHA1: cbd8246c30fedbbb2c07dfee14285df10a7b9791 SHA256: 367f55fbd86b51d6d45b215b816cf54e7dde32e7f5f01674613e56c5f79d99cd Description: Device Tree Compiler for Flat Device Trees Multi-Arch: foreign Homepage: http://git.jdl.com/gitweb/?p=dtc.git Description-md5: c14bd2aee94155eab7033dce0d089d26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: devio Priority: optional Section: utils Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Rod Whitby Architecture: i386 Version: 1.2-1build2 Depends: libc6 (>= 2.7) Filename: pool/main/d/devio/devio_1.2-1build2_i386.deb Size: 17680 MD5sum: a476677674196722ccb3407c6001695a SHA1: e2dec29eac2746c5db0e56f751865a4938665f3e SHA256: 8ebecd9fbdd5132e4e9094175c4ba6100500fc471e06b6da7cbda80886e0016f Description: correctly read (or write) a region of a block device Description-md5: 0bd1a5ee0f78f228d879d86ec100473d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: devscripts Priority: optional Section: devel Installed-Size: 1764 Maintainer: Ubuntu Developers Original-Maintainer: Devscripts Devel Team Architecture: i386 Version: 2.14.1 Replaces: ubuntu-dev-tools (<< 0.124~) Depends: dpkg-dev (>= 1.16.4), perl, python3:any (>= 3.3.2-2~), python3, libc6 (>= 2.3.4) Recommends: at, dctrl-tools, dput | dupload, fakeroot, gnupg, libdistro-info-perl, libencode-locale-perl, libjson-perl, libparse-debcontrol-perl, liburi-perl, libwww-perl, lintian, man-db, patch, patchutils, python3-debian (>= 0.1.15), python3-magic, sensible-utils, strace, unzip, wdiff, wget | curl, xz-utils Suggests: bsd-mailx | mailx, build-essential, cvs-buildpackage, devscripts-el, gnuplot, gpgv, libauthen-sasl-perl, libfile-desktopentry-perl, libnet-smtp-ssl-perl, libterm-size-perl, libtimedate-perl, libyaml-syck-perl, mutt, ssh-client, svn-buildpackage, w3m, debian-keyring, equivs, liblwp-protocol-https-perl, libsoap-lite-perl Breaks: ubuntu-dev-tools (<< 0.147~) Filename: pool/main/d/devscripts/devscripts_2.14.1_i386.deb Size: 791376 MD5sum: f31aa03df11ddda0f2295db119a6898f SHA1: cd33f23d634d60638191a0ac883f0aee2e98e6d8 SHA256: db87d5c88f0bd854ab8ed0bdc7d6a046441b22c41c7d96bec92f383888f78c6b Description: scripts to make the life of a Debian Package maintainer easier Multi-Arch: foreign Description-md5: c88970e1a384c95711009f8d50e92b41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dh-apparmor Priority: extra Section: devel Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: apparmor Version: 2.8.95~2430-0ubuntu5 Replaces: debhelper (<< 9.20120115ubuntu3) Suggests: apparmor-easyprof Breaks: debhelper (<< 9.20120115ubuntu3) Filename: pool/main/a/apparmor/dh-apparmor_2.8.95~2430-0ubuntu5_all.deb Size: 11326 MD5sum: cf8c08173dfa0b7aeb467439b4c6e736 SHA1: fd8689776c828319edc1dbdb61f3173c237ff0fe SHA256: 27019e0538273868f4cbe26b5894887d762e4c640a2dd5890d55f7535983bf25 Description: AppArmor debhelper routines Multi-Arch: foreign Homepage: http://apparmor.net/ Description-md5: efd212d2f49b2d33d3233f07e30c77cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dh-apport Priority: optional Section: devel Installed-Size: 170 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: perl Filename: pool/main/a/apport/dh-apport_2.14.1-0ubuntu3_all.deb Size: 6782 MD5sum: 4a2d88a63b317a27858867300eba7cd1 SHA1: f998ea9f36b8b8584f0a3721c2fbe9e0eec9a9bc SHA256: a48b0748c08fa662e222d43514c9b59f5e67e3fe4cd52ffec09ba2ee8f5ce5f0 Description: debhelper extension for the apport crash report system Multi-Arch: foreign Homepage: https://wiki.ubuntu.com/Apport Description-md5: a5c779df9e0b356100c76151d7cef527 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-autoreconf Priority: optional Section: devel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Version: 9 Depends: perl, debhelper, autoconf, automake | automaken, autopoint, libtool (>= 2.4.2) Filename: pool/main/d/dh-autoreconf/dh-autoreconf_9_all.deb Size: 15542 MD5sum: a2ec5e5eca4db22b5276fc22889b864c SHA1: 6cc4624ac47f369deb00356e902febe4bf167b9b SHA256: a4c22770c7a70f9b2f49b5eb2fc1fd9b6ba386da493fd685d4e00c85b3db0430 Description: debhelper add-on to call autoreconf and clean up after the build Enhances: cdbs, debhelper Multi-Arch: foreign Description-md5: 64431da0ae4318a5fbf441743bd5ffc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-buildinfo Priority: optional Section: devel Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Yann Dirson Architecture: all Version: 0.10ubuntu1 Depends: debhelper, perl, build-essential (>= 7) Filename: pool/main/d/dh-buildinfo/dh-buildinfo_0.10ubuntu1_all.deb Size: 14066 MD5sum: 9b9f0aaaee91839b5b494ca5be7576be SHA1: 2ae3258ff67b7b09e499bd198162e4148a6aa0ba SHA256: 0bbeab16490d8d893fe7fe1aee34459dfa009878d9e84170911b2ea0bed12b54 Description: Debhelper addon to track package versions used to build a package Multi-Arch: foreign Description-md5: 78727bb9b900caa5668c494ce4bf26b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-di Priority: optional Section: devel Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: all Version: 6 Depends: perl Filename: pool/main/d/dh-di/dh-di_6_all.deb Size: 11402 MD5sum: 5edb4169ff37b9649efdac9c4da0dfc7 SHA1: 3831f1b724ea81e66b778daf0926f679d79c840d SHA256: e42336ec636b4b68538ac88fdc51a1a8e6d1606b3efad5eb88badb361fa38663 Description: Debhelper addon for debian-installer Description-md5: d31938dbb9a87daa76cd0914921cf8da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-exec Priority: extra Section: devel Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Gergely Nagy Architecture: i386 Version: 0.12 Depends: libc6 (>= 2.8), libpipeline1 (>= 1.0.0), perl (>= 5.14.2~), debhelper (>= 8.9.13~) Filename: pool/main/d/dh-exec/dh-exec_0.12_i386.deb Size: 24804 MD5sum: 84105df8e2839f48f6372290fb1e5240 SHA1: 00e0683c02fa941135948705f6dddb7d3d1d34df SHA256: ddd89bd76ca9a9f00594a158f89f3bd6c9d521d22dcc3f9a2aa151d1a5c2573d Description: Scripts to help with executable debhelper files Multi-Arch: foreign Homepage: https://github.com/algernon/dh-exec Description-md5: 3569ef1554e59b0180fa9e354c412863 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-linktree Priority: optional Section: devel Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Raphaël Hertzog Architecture: all Version: 0.4 Depends: debhelper, libdpkg-perl, perl Filename: pool/main/d/dh-linktree/dh-linktree_0.4_all.deb Size: 11030 MD5sum: 3942c0eb25297b7c75ecfa508e2d248d SHA1: b6d9ba88c0898b24ee6b011d3450ec23b2db4812 SHA256: 65660abc008905a732e4d611e389255081805745bad878be493be4036a587a77 Description: Create symlink trees within a Debian package Description-md5: 2db0ade7f7e567b15612bded5502ce65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-make Priority: optional Section: devel Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: all Version: 0.63 Depends: debhelper (>= 9), make, perl, dpkg-dev Suggests: build-essential Filename: pool/main/d/dh-make/dh-make_0.63_all.deb Size: 37556 MD5sum: fadb40ab5ffb3e05e91b4a8132994ed8 SHA1: 5a5dbae9b49cac349e241798306a3e7579ac365f SHA256: 1f22caf603e58355c9691f79380e79986bef1f050fff4b9a2e762f0ae2a2acd2 Description: tool that converts source archives into Debian package source Description-md5: 49189f3da1d1311b194d89a6376ec4e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dh-migrations Priority: extra Section: misc Installed-Size: 58 Maintainer: Didier Roche Architecture: all Source: session-migration Version: 0.2.1 Depends: debhelper Filename: pool/main/s/session-migration/dh-migrations_0.2.1_all.deb Size: 5446 MD5sum: fa88c63e896b1eb8a75cbd3c3cec1f42 SHA1: 56f3676229885bc8c9332f147692e4db76849aea SHA256: 556e3677e6d538537a02faaf1fe512afbefd8b3e80d21f37b58b1c11252e0dd7 Description: debhelper extension for session-migration support Homepage: https://launchpad.net/session-migration Description-md5: 0b12c10d8021951a91ae59cfe2ce0fb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-modaliases Priority: optional Section: admin Installed-Size: 74 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-drivers-common Version: 1:0.2.91.4 Depends: perl Filename: pool/main/u/ubuntu-drivers-common/dh-modaliases_0.2.91.4_all.deb Size: 8118 MD5sum: 502dfda2bc192428e817b4efe0cf84d2 SHA1: cf9b43b122fdf23100eff18c32c96a2996cf12cf SHA256: d0c25ea55471a3cf9ea5f3e31413a8fae5cbd4ba0697c468c8bf87fd6bc160a0 Description: debhelper extension for scanning kernel module aliases Enhances: debhelper Description-md5: 1a811f1261ebf8d94f48be93de246b96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-ocaml Priority: extra Section: devel Installed-Size: 299 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: all Version: 1.0.8 Replaces: ocaml (<< 3.11.0~beta1-1), ocaml-base (<< 3.11.0~beta1-1), ocaml-base-nox (<< 3.11.0~beta1-1), ocaml-nox (<< 3.11.0~beta1-1) Recommends: debhelper, ocaml-nox (>> 3.12) Suggests: git Breaks: ocaml (<< 3.12), ocaml-base (<< 3.12), ocaml-base-nox (<< 3.12), ocaml-nox (<< 3.12) Filename: pool/main/d/dh-ocaml/dh-ocaml_1.0.8_all.deb Size: 80538 MD5sum: c678e5bb22ec81500285f9e73c1bd52f SHA1: 85d16f1959d0272ddefb86d493ef7c1997b9c172 SHA256: 333449334f9b0688e1370b20c136f262da5d2b157577291a5b042f538a6ed382 Description: helper tools for maintaining OCaml-related Debian packages Description-md5: a2d96f5703de2b33380537be59e6a4c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-python Priority: important Section: python Installed-Size: 309 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Version: 1.20140128-1ubuntu8 Replaces: python3 (<< 3.3.2-4~) Depends: python3:any (>= 3.3.2-2~) Breaks: python3 (<< 3.3.2-4~) Filename: pool/main/d/dh-python/dh-python_1.20140128-1ubuntu8_all.deb Size: 51026 MD5sum: 3ede45ec37b676086dc1de5ad3213bc8 SHA1: b84642dfc6e7c19b9a151c70a1e2c0d5a9b72fdf SHA256: 6c76877dcda9c8c6a5e19530b4aef708bd01f6e488e936cbf24153241ab3e056 Description: Debian helper tools for packaging Python libraries and applications Multi-Arch: foreign Description-md5: 9f24690d2f6e9b70048dc4079a2dfca7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: dh-systemd Priority: extra Section: admin Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: pkg-systemd-maintainers Architecture: all Source: init-system-helpers Version: 1.14 Depends: perl, debhelper Filename: pool/main/i/init-system-helpers/dh-systemd_1.14_all.deb Size: 12806 MD5sum: bc1fd80cf1e2d61f5d1148cc445067b1 SHA1: de944635d4e508320fdd301d434bab769fd3fa1d SHA256: 2f8d066bdc0bfd5895c5d6a1142405e93580c1a51c74aa1c9e0c5c7413781089 Description: debhelper add-on to handle systemd unit files Multi-Arch: foreign Description-md5: 820ef7f34d93a6611a99b031c2c55eb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dh-translations Priority: extra Section: devel Installed-Size: 77 Maintainer: Ubuntu Developers Architecture: all Source: pkgbinarymangler Version: 121 Depends: debhelper, intltool Filename: pool/main/p/pkgbinarymangler/dh-translations_121_all.deb Size: 21596 MD5sum: 2359f10f56ef056993698cc212d36b23 SHA1: ca05f86529fa504f3c686ef883530f11c3cfd28f SHA256: 72f30b19e77d25943cb64bf94731390ee2f793da158f914e8bdd5eca5b0e2f77 Description: debhelper extension for translation support Description-md5: 7c1312ea3fd1cf79858c39fdb547739f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dh-xsp Priority: optional Section: web Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: xsp Version: 3.0.11-1 Replaces: mono-xsp-base Depends: perl, debhelper Conflicts: mono-utils (<= 1.1.9.2-1), mono-xsp-base Filename: pool/main/x/xsp/dh-xsp_3.0.11-1_all.deb Size: 10964 MD5sum: 95e4bcf2b6dfdf3e939726b392938339 SHA1: 86a59c467d112456c969b99c05b811a76786c98b SHA256: 17f4003bb3c482dc1f52cd7142b9b82e6b2744f26717c0646be130ba721732aa Description: debhelper add-on to handle ASP.NET sites Homepage: http://www.mono-project.com/ASP.NET Description-md5: 228c1bfe1a779be20859b0fbd2da6dc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dialog Priority: optional Section: misc Installed-Size: 1072 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 1.2-20130928-1 Provides: libdialog-dev Depends: libc6 (>= 2.15), libncursesw5 (>= 5.6+20070908), libtinfo5, debianutils (>= 1.6) Filename: pool/main/d/dialog/dialog_1.2-20130928-1_i386.deb Size: 294184 MD5sum: 4c83ef04a5b85ce2789971a37bb11540 SHA1: 8fdd7d37702e8450fcf273e873ac4a286aff634e SHA256: 55d92560c03b606619b64492b18a5227c4b02f7d4c6d453f7e5c02bb67421ffc Description: Displays user-friendly dialog boxes from shell scripts Homepage: http://invisible-island.net/dialog/dialog.html Description-md5: bcacb3d599cbbb23a47a1141ae12a28b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dict Priority: optional Section: text Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: i386 Source: dictd Version: 1.12.1+dfsg-2 Provides: dict-client Depends: netbase, recode, libc6 (>= 2.4), libmaa3 (>= 1.2.0) Recommends: gawk, m4 Suggests: dictd | dict-server Filename: pool/main/d/dictd/dict_1.12.1+dfsg-2_i386.deb Size: 51658 MD5sum: 6550dcab2c9024f45cc23056c8a3328e SHA1: 50fd014b5d478ce53327af272b787e077cdb301c SHA256: b8450fc1e9390b7d6c9ab64cb5766141ca2b8c668ba522161fcc7f1b63340931 Description: dictionary client Homepage: http://sourceforge.net/projects/dict/ Description-md5: 74d1a239ff1066a180ba971c6b64178b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dict-foldoc Priority: optional Section: text Installed-Size: 2515 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: all Version: 20120518-1 Provides: dictd-dictionary Depends: dictd | dict-server, base-files (>> 4) Filename: pool/main/d/dict-foldoc/dict-foldoc_20120518-1_all.deb Size: 2384320 MD5sum: 7716992021f9a41086e6519192804583 SHA1: 5415aecc79fc33718023d8603ae7e1afc8e476c0 SHA256: 6f9f367a2dac31f884864ae8faf9cdd75cd9ffe0eba5a52e72b0b0702627fc16 Description: FOLDOC dictionary database Homepage: http://foldoc.org/ Description-md5: 0101618028c7357f4f09a878b5f39054 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dict-gcide Priority: optional Section: text Installed-Size: 17122 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: all Version: 0.48.1 Replaces: dict-web1913 Provides: dict-web1913, dictd-dictionary Depends: dictd | dict-server Suggests: dict-wn Breaks: dict-web1913 (<= 1.4-0.47pd-3) Filename: pool/main/d/dict-gcide/dict-gcide_0.48.1_all.deb Size: 15121586 MD5sum: 4bb39b311fc89992e60d1e268499c655 SHA1: 05663b0a8fc2faf8d8f9116568e7b884fcfad988 SHA256: 3b8f983cd721d05ad9a091fa6f09b141035bf85ffc39f5dd0270a8ff64672121 Description: Comprehensive English Dictionary Homepage: http://git.debian.org/?p=collab-maint/dict-gcide.git Description-md5: 5de203d81ca57711d27ea9dedad7c40f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dict-jargon Priority: optional Section: text Installed-Size: 672 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: all Version: 4.4.7-2ubuntu1 Provides: dictd-dictionary Depends: dictd | dict-server Suggests: dict Filename: pool/main/d/dict-jargon/dict-jargon_4.4.7-2ubuntu1_all.deb Size: 616856 MD5sum: 5e0735f4496d4fdb759134ac10bafbb9 SHA1: 691f01c07091da5d7f21c76a82bb82f952d12bcd SHA256: 92e59e92410c6b4e534c290890180d3c1c2007a56edd99d98fd6fb6ed0ede153 Description: dict package for The Jargon Lexicon Homepage: http://catb.org/jargon/ Description-md5: 1eac195cce310e5397fbed31d9ca95a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dict-moby-thesaurus Priority: optional Section: text Installed-Size: 11112 Maintainer: Ubuntu Core Developers Original-Maintainer: John Goerzen Architecture: all Version: 1.0-6.2 Suggests: dict, dictd Filename: pool/main/d/dict-moby-thesaurus/dict-moby-thesaurus_1.0-6.2_all.deb Size: 11050520 MD5sum: 3062d9add4c8b57d257a86dc97591675 SHA1: e9d2fa4479d2abdb40dd938c4e3058694bc8dd38 SHA256: fa72466e4fc004c05606fd163a71801559481e77c8b1b6a72caa9f6f92a92eb1 Description: Largest and most comprehensive thesaurus Description-md5: a55792325c78ce9d5b51442d580243a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dict-vera Priority: optional Section: text Installed-Size: 386 Maintainer: Ubuntu Developers Original-Maintainer: Ryan Kavanagh Architecture: all Source: vera (1.20-1) Version: 1:1.20-1 Provides: dictd-dictionary Depends: dictd | dict-server Filename: pool/main/v/vera/dict-vera_1.20-1_all.deb Size: 298584 MD5sum: 8faab596b52b99be306e6ab280c3eb0e SHA1: 3c66393116d2e0aef2b37731962cf2c0b33de42d SHA256: cd044de82eee3cfcdd0d6df34c270a6f248d13a171f5e417662e10462c11e496 Description: Dictionary of computer related acronyms -- dict format Homepage: http://cgi.snafu.de/ohei/user-cgi-bin/veramain-e.cgi Description-md5: b9bd42acd3704e66d0e172d47d02e560 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dictd Priority: optional Section: text Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: i386 Version: 1.12.1+dfsg-2 Provides: dict-server Depends: adduser, dictzip (>= 1.12.1+dfsg), lsb-base (>= 3.2-13), netbase, ucf (>= 3), update-inetd, debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.11), libmaa3 (>= 1.2.0), zlib1g (>= 1:1.1.4) Recommends: dict | dict-client Suggests: dict-foldoc, dict-gcide | dictd-dictionary, dict-jargon, dict-wn Conflicts: dict-server Filename: pool/main/d/dictd/dictd_1.12.1+dfsg-2_i386.deb Size: 115504 MD5sum: 419223c89fdb8969b135ed0fef3ce8f7 SHA1: 5a762ba2089ad009ea82d445d8fa38799183d3f9 SHA256: 4d09ee03d180a63fc9f3e030aee7baae7f86a908446a72ebbcbddad19336b99b Description: dictionary server Homepage: http://sourceforge.net/projects/dict/ Description-md5: 5442ec960cfda460694f725c1e289641 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: dictfmt Priority: optional Section: utils Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: i386 Source: dictd Version: 1.12.1+dfsg-2 Depends: libc6 (>= 2.4), libmaa3 (>= 1.2.0) Recommends: dictzip Filename: pool/main/d/dictd/dictfmt_1.12.1+dfsg-2_i386.deb Size: 36638 MD5sum: 9a11c18ef0a86a3cd1c67839626a896c SHA1: a9ff8bd2a3759ac7acfdaac80da6b73486bcdb81 SHA256: 918b8d9fb6dbb299d77936177602718a397ecb4992cc7ee39edef2bc14c89e22 Description: utility to format a file for use by a dictd server Homepage: http://sourceforge.net/projects/dict/ Description-md5: 2f01edba47d44fe481f5b4f832bc34ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dictionaries-common Priority: optional Section: text Installed-Size: 923 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Version: 1.20.5 Replaces: openoffice.org-updatedicts Provides: openoffice.org-updatedicts Depends: debconf (>= 1.5.5) | debconf-2.0, libtext-iconv-perl Suggests: ispell | aspell | hunspell, wordlist, emacsen-common, jed-extra Conflicts: emacsen-common (<< 2.0.0) Breaks: hunspell-ar (<= 0.0.0+20080110-1.1), hunspell-da (<= 1:3.1.0), hunspell-de-at (<= 20100727-1), hunspell-de-ch (<= 20100727-1), hunspell-de-de (<= 20100727-1), hunspell-en-us (<= 20070829-4ubuntu2), hunspell-eu-es (<= 0.4.20081029-4), hunspell-gl-es (<= 2.2a-8), hunspell-kk (<= 1.1-1), hunspell-ko (<= 0.5.3-1), hunspell-se (<= 1.0~beta6.20081222-1.1), hunspell-uz (<= 0.6-3.1), hyphen-en-us (<< 2.8.3-1), myspell-bg (<= 3.0-12), myspell-ca (<= 0.6-10), myspell-cs (<= 20040229-5), myspell-cs-cz (<= 20040229-5), myspell-da (<= 1.6.25-1), myspell-de-at (<= 20100727-1), myspell-de-ch (<= 20100727-1), myspell-de-de (<= 20100727-1), myspell-de-de-oldspell (<= 1:2-27), myspell-el-gr (<= 0.8-1), myspell-en-au (<= 2.1-5), myspell-eo (<= 2.1.2000.02.25-42), myspell-es (<= 1.11-1), myspell-et (<= 1:20030606-12.1), myspell-eu-es (<= 0.4.20081029-4), myspell-fa (<= 0.20070816-2), myspell-fi (<= 0.7-17.3), myspell-fo (<= 0.2.44-2), myspell-fr (<= 1.4-25), myspell-fr-gut (<= 1:1.0-28), myspell-ga (<= 2.0-20), myspell-gd (<= 0.50-7), myspell-gl-es (<= 2.2a-8), myspell-gv (<= 0.50-9), myspell-he (<= 1.1-1), myspell-hr (<= 20060617-2), myspell-hu (<= 0.99.4-2), myspell-hy (<= 0.20.0-1), myspell-ku (<= 0.20.0-1.1), myspell-lv (<= 0.9.3-2), myspell-nb (<= 2.0.10-3.2), myspell-nl (<= 1:2.0-1), myspell-nn (<= 2.0.10-3.2), myspell-nr (<< 20070206-4ubuntu1), myspell-ns (<< 20070206-4ubuntu1), myspell-pl (<= 20100612-1), myspell-pt-br (<= 20101030-1), myspell-pt-pt (<= 20091013-2), myspell-ru (<= 0.99g5-8.1), myspell-sk (<= 0.5.5a-2.1fakesync1), myspell-sl (<< 1.0-3ubuntu1), myspell-ss (<< 20070206-4ubuntu1), myspell-sv-se (<= 1.3.8-6-2.2), myspell-tn (<< 20070206-4ubuntu1), myspell-ts (<< 20070207-4ubuntu1), myspell-uk (<= 1.6.0-1), myspell-ve (<< 20070206-3ubuntu1), myspell-xh (<< 20070206-4ubuntu1), myspell-zu (<< 20070207-5ubuntu1), mythes-it (<= 2.0.7.gh.deb1-3), openoffice.org-thesaurus-it (<< 2.0.7.gh.deb1-1.1ubuntu3) Filename: pool/main/d/dictionaries-common/dictionaries-common_1.20.5_all.deb Size: 231654 MD5sum: 428942cce9899c3c2760d21f42a2a348 SHA1: 61325b0bcbeefafe8160ed52f394ecbeb84e381d SHA256: 244b62756c70b52988053607126b3d2edc8fc20c8aff66c39b1e1881f1225b74 Description: Common utilities for spelling dictionary tools Homepage: http://dict-common.alioth.debian.org Description-md5: 7640c2b6d1773c8331f39ba17ae63f3a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dictionaries-common-dev Priority: optional Section: text Installed-Size: 308 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: dictionaries-common Version: 1.20.5 Depends: debhelper (>= 4.1.13), dictionaries-common (>> 0.3.6) Filename: pool/main/d/dictionaries-common/dictionaries-common-dev_1.20.5_all.deb Size: 68986 MD5sum: 842544eda8512587341c0e4da26c19e2 SHA1: a04e0b5f84ecdb8d2de11b41c450df6b965300e5 SHA256: 50616637f7ab27678415cb13879d5c080016e4052231bc6e950c49f8c08971e8 Description: Developer tools and Policy for spelling dictionary tools Homepage: http://dict-common.alioth.debian.org Description-md5: 7cc03ea985ef1f189a911159193d0e78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dictzip Priority: optional Section: text Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: i386 Source: dictd Version: 1.12.1+dfsg-2 Replaces: dictd (<< 1.7.1-1) Depends: libc6 (>= 2.7), libmaa3 (>= 1.2.0), zlib1g (>= 1:1.1.4) Filename: pool/main/d/dictd/dictzip_1.12.1+dfsg-2_i386.deb Size: 27654 MD5sum: d578836e0ff8d02d6f02449a84df946a SHA1: 08410e7597c41fcfec67048fdf0f6f357408c2c2 SHA256: 0b9e271ef72fb4d0718c675d63670a685bd71d9b7ba3bb06b647021d872b7056 Description: compression utility for dictionary databases Homepage: http://sourceforge.net/projects/dict/ Description-md5: 8b6985a0311f25c9b6975297145471f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: diffstat Priority: optional Section: devel Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Sandro Tosi Architecture: i386 Version: 1.58-1 Depends: libc6 (>= 2.4) Filename: pool/main/d/diffstat/diffstat_1.58-1_i386.deb Size: 21180 MD5sum: 7789fda65de15e613f179ce511c2cef4 SHA1: 86cee38c5f717821c328382322bf8277ab4df1f0 SHA256: 98b9ed53695ce76bf391e4cd003c5065dc215c0bcd53c44b44d0faca772041c5 Description: produces graph of changes introduced by a diff file Homepage: http://invisible-island.net/diffstat/ Description-md5: 823a79fb1afafc025e5a1d8d5d0da641 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: diffutils Essential: yes Priority: required Section: utils Installed-Size: 404 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 1:3.3-1 Replaces: diff Pre-Depends: libc6 (>= 2.17) Suggests: diffutils-doc, wdiff Filename: pool/main/d/diffutils/diffutils_3.3-1_i386.deb Size: 201800 MD5sum: 4ea7e1bbc662fa38f77cd4b3ead932f2 SHA1: 4626ffda87b9d757f77d3304a4b7d47dd09d1847 SHA256: a1eb7ddf677871c34ac828c3986c58838490a659b853cf783c9777542ef560c7 Description: File comparison utilities Homepage: http://www.gnu.org/software/diffutils/ Description-md5: 5cf0bc18e36aa2957e62b309d6aa34f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: diffutils-doc Priority: optional Section: doc Installed-Size: 717 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: diffutils Version: 1:3.3-1 Filename: pool/main/d/diffutils/diffutils-doc_3.3-1_all.deb Size: 104428 MD5sum: 8467abd62537b2e0d8a709106c330f07 SHA1: 35a72fee101dcbe447ca0b2bf72dc8fbae98d849 SHA256: e25d15b6666d8dcfad07afc2dd1426781e2630e7d81c3d96504018e6baa5b8e1 Description: Documentation for GNU diffutils in HTML format Homepage: http://www.gnu.org/software/diffutils/ Description-md5: 3c6b1148d808e7917d665c9ccd6d0bc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: distro-info Priority: optional Section: devel Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Drung Architecture: i386 Version: 0.12 Replaces: ubuntu-dev-tools (<< 0.127~) Depends: distro-info-data (>= 0.7~), libc6 (>= 2.7) Suggests: shunit2 (>= 2.1.6) Breaks: ubuntu-dev-tools (<< 0.133~) Filename: pool/main/d/distro-info/distro-info_0.12_i386.deb Size: 19232 MD5sum: 66f952da1356b0e6fab7096ab2b12784 SHA1: 4eb83d9b03826b75f30779ae85eb3ba9c05ecfb4 SHA256: a18a5606009cdf2a6c9f102adf761911670d660c3f23cd7a2cf766fef57f7dc7 Description: provides information about the distributions' releases Description-md5: 5671943e370fd3dd7449d885e6363cee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: distro-info-data Priority: optional Section: devel Installed-Size: 34 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Drung Architecture: all Version: 0.18 Replaces: distro-info (<< 0.3~) Breaks: distro-info (<< 0.3~) Filename: pool/main/d/distro-info-data/distro-info-data_0.18_all.deb Size: 3962 MD5sum: 91bf6a885ab44625c664ad0f290f86f9 SHA1: 5f68ec254e1c4e38871a94d083bb3a83d40e9b89 SHA256: a0400b86cd4144b21bf988cb2aacf2a0469f9b33015f090a3e12af4b1ef70838 Description: information about the distributions' releases (data files) Description-md5: f7fe06a2e0396bbe8c1c7abad056bf48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: diveintopython Priority: optional Section: doc Installed-Size: 4220 Maintainer: Ubuntu Core Developers Original-Maintainer: Ross Burton Architecture: all Version: 5.4-2ubuntu2 Pre-Depends: dpkg (>= 1.10.24) Recommends: python Filename: pool/main/d/diveintopython/diveintopython_5.4-2ubuntu2_all.deb Size: 348358 MD5sum: 5071ded4626ce9342fbd34af55b166e0 SHA1: b15253f8a16bdb58633e510d9bbb140bf457d2e9 SHA256: b1dded5076cfd546ebc4d1967a161bd5f60703ee26f9f7dbcf01119efbf04fba Description: free Python book for experienced programmers Description-md5: 780747a46232db722f91ff1ef6884f9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: diveintopython-zh Priority: optional Section: doc Installed-Size: 4124 Maintainer: ZhengPeng Hou Architecture: all Version: 5.4b-1 Recommends: python Filename: pool/main/d/diveintopython-zh/diveintopython-zh_5.4b-1_all.deb Size: 536212 MD5sum: 5785d34428cbb1897a65b3e4229e4483 SHA1: dd73523d77e266b9231984b436391a08919c24e2 SHA256: 0e5bde584c6f51039e55eb2508bf3c6fe479173b82fd57c7c0313e0797598519 Description: free Python book for experienced programmers (zh translation) Description-md5: 4df8e54927ccaa5ad4d65927a0695a7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: djvulibre-dbg Priority: extra Section: libs Installed-Size: 546 Maintainer: Ubuntu Developers Original-Maintainer: Barak A. Pearlmutter Architecture: i386 Source: djvulibre Version: 3.5.25.4-3 Depends: libdjvulibre21 (= 3.5.25.4-3) Filename: pool/main/d/djvulibre/djvulibre-dbg_3.5.25.4-3_i386.deb Size: 79992 MD5sum: 4ec86e80bf459aad1b724629a704f351 SHA1: 605dad5c4da8487313cdaf2ca3248b42d447bb5b SHA256: 63169cda7d1ae25b0c1d038effc69481c84e251eb69d8a62f24233c46a4b7cf8 Description: Debug symbols for the DjVu image format Multi-Arch: same Homepage: http://djvu.sourceforge.net/ Description-md5: 491e47717200675c2416d353ba9f4f8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dkms Priority: optional Section: admin Installed-Size: 341 Maintainer: Ubuntu Developers Original-Maintainer: Dynamic Kernel Modules Support Team Architecture: all Version: 2.2.0.3-1.1ubuntu5 Depends: module-init-tools, gcc, make | build-essential | dpkg-dev, coreutils (>= 7.4), patch Recommends: fakeroot, menu | sudo Suggests: dpkg-dev, debhelper Filename: pool/main/d/dkms/dkms_2.2.0.3-1.1ubuntu5_all.deb Size: 64416 MD5sum: c061b4c50bcebc9d51f65703f5f8fdaf SHA1: 2b896b95757e3e8a37e9cbb108251ce5e5848455 SHA256: e0cfaedc62da1afe2d2de3121a6fc0b1f5f64d0f4e4e440156408961883e7fb8 Description: Dynamic Kernel Module Support Framework Homepage: http://linux.dell.com/dkms Description-md5: b7b6bb6a6b083b2245e0648e7752a459 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dmidecode Priority: standard Section: utils Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: i386 Version: 2.12-2 Depends: libc6 (>= 2.4) Filename: pool/main/d/dmidecode/dmidecode_2.12-2_i386.deb Size: 42834 MD5sum: b2571a7116d4b69fa74ea1858b50b473 SHA1: 4510f12dfce0ed486bfa13a0cf6dc5d20c7ad9a9 SHA256: bb5266d21980bd323f7b7edea597957949f80c284273e7613004dc458e58d999 Description: SMBIOS/DMI table decoder Homepage: http://dmidecode.nongnu.org/ Description-md5: 266176aa2231f4b521210b81955e4d36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: dmidecode-dbg Priority: extra Section: debug Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: i386 Source: dmidecode Version: 2.12-2 Depends: dmidecode (= 2.12-2) Filename: pool/main/d/dmidecode/dmidecode-dbg_2.12-2_i386.deb Size: 84670 MD5sum: 03ad96a1b7100c9676b1b6879e0592ca SHA1: cd58e3146d15b50175a8df1f637fc1b1634f12df SHA256: d3387a797439fec85b766309da19f64f89658b3e2d466d302a8a237d71406ce2 Description: SMBIOS/DMI table decoder (debug) Homepage: http://dmidecode.nongnu.org/ Description-md5: d50c751833be541ddf30c9f81198d451 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dmraid Priority: optional Section: admin Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Iuculano Architecture: i386 Version: 1.0.0.rc16-4.2ubuntu3 Depends: libc6 (>= 2.4), libdmraid1.0.0.rc16 (>= 1.0.0.rc16), udev, dmsetup, kpartx-boot Breaks: mdadm (<= 3.2.5-5ubuntu2) Filename: pool/main/d/dmraid/dmraid_1.0.0.rc16-4.2ubuntu3_i386.deb Size: 22990 MD5sum: 19bf8e6db3a756b33c15b084a3a3290a SHA1: b2e89628681d93327ded81494eb0b2c51fb73f85 SHA256: 80d57e3300b1c11a1344e3d90a6f995ceadcfb3082d0575e0715adbf34d8d27c Description: Device-Mapper Software RAID support tool Homepage: http://people.redhat.com/~heinzm/sw/dmraid/ Description-md5: 3e36d6b2b8560a6acc827d35c09fed48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: dmsetup Priority: important Section: admin Installed-Size: 178 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: i386 Source: lvm2 (2.02.98-6ubuntu2) Version: 2:1.02.77-6ubuntu2 Depends: libc6 (>= 2.4), libdevmapper1.02.1 (>= 2:1.02.77), initramfs-tools, util-linux (>> 2.16), udev (>> 141-2) Conflicts: devicekit-disks (<< 009) Breaks: udev (<< 138-1) Filename: pool/main/l/lvm2/dmsetup_1.02.77-6ubuntu2_i386.deb Size: 37140 MD5sum: 848d3871ccb1704aac567fee89584a32 SHA1: 55feb7d1d9fc877a896888102afc6ec2482ae4e1 SHA256: 5e3fa783016d3c5d7be15385af92cb5e61b63b715620981007e596bd5378fbdf Description: Linux Kernel Device Mapper userspace library Multi-Arch: foreign Homepage: http://sources.redhat.com/lvm2/ Description-md5: 808f3b8b96c64d5f095bd9a6d6d9c928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: dmz-cursor-theme Priority: optional Section: gnome Installed-Size: 3462 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Version: 0.4.4ubuntu1 Filename: pool/main/d/dmz-cursor-theme/dmz-cursor-theme_0.4.4ubuntu1_all.deb Size: 192720 MD5sum: a4683048ac92cf17a5c58d72dc9ec43c SHA1: cb6569d9e6a708902f771d7a2912582dc4e51361 SHA256: 09e01d9eba09beaecdee226802089c73b7a6ae7c4268d425017d3534584fe55a Description: Style neutral, scalable cursor theme Description-md5: 486c37c0e4890a318fb8856ce996d5b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop Package: dnsmasq-base Priority: optional Section: net Installed-Size: 640 Maintainer: Ubuntu Developers Original-Maintainer: Simon Kelley Architecture: i386 Source: dnsmasq Version: 2.68-1 Replaces: dnsmasq (<< 2.63-1~) Depends: adduser, libc6 (>= 2.15), libdbus-1-3 (>= 1.1.1), libidn11 (>= 1.13), libnetfilter-conntrack3 Breaks: dnsmasq (<< 2.63-1~) Filename: pool/main/d/dnsmasq/dnsmasq-base_2.68-1_i386.deb Size: 250108 MD5sum: dfcbdbbf8595545d69750486177daa65 SHA1: c9725002ceaa4fafe35a577723644928c46e5dd7 SHA256: ee1ee90e47f0e52baf09aa560dca4910625b48d8c95bb6f9c9ec733890fc520c Description: Small caching DNS proxy and DHCP/TFTP server Description-md5: 1f9c3f0c557ca377bcc6c659e4694437 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dnsmasq-utils Priority: optional Section: net Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Simon Kelley Architecture: i386 Source: dnsmasq Version: 2.68-1 Depends: libc6 (>= 2.4) Conflicts: dnsmasq (<< 2.40) Filename: pool/main/d/dnsmasq/dnsmasq-utils_2.68-1_i386.deb Size: 7738 MD5sum: a626298ed6f8b4e391d1768f2b317864 SHA1: b939791b3173bae741ef44cab0c722e654bae421 SHA256: 989765919b884b70fa5183bdcc01c73d556830a5fef6ab5ff612eab696a99969 Description: Utilities for manipulating DHCP leases Description-md5: c01626c0b1b5fea18d3a8d04fbe44ea7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dnstracer Priority: optional Section: net Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Jari Aalto Architecture: i386 Version: 1.9-4 Depends: libc6 (>= 2.15) Filename: pool/main/d/dnstracer/dnstracer_1.9-4_i386.deb Size: 21480 MD5sum: 84898d708134a5640f08e2cd2fcfdbf3 SHA1: 1d21bef5c313afa4775839a35a8862b2abeb7157 SHA256: b103d852345a61c12626a35e7cd160f91214358a621193480014501032800d93 Description: trace DNS queries to the source Homepage: http://freshmeat.net/projects/dnstracer Description-md5: 3508085f63f3549f0524dbe74f98a0bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dnsutils Priority: standard Section: net Installed-Size: 355 Maintainer: LaMont Jones Architecture: i386 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: bind, bind9 (<< 1:9.1.0-3) Depends: libbind9-90 (= 1:9.9.5.dfsg-3), libc6 (>= 2.4), libdns100 (= 1:9.9.5.dfsg-3), libisc95 (= 1:9.9.5.dfsg-3), libisccfg90 (= 1:9.9.5.dfsg-3), libkrb5-3 (>= 1.6.dfsg.2), liblwres90 (= 1:9.9.5.dfsg-3), bind9-host | host Suggests: rblcheck Conflicts: netstd (<< 2.00) Filename: pool/main/b/bind9/dnsutils_9.9.5.dfsg-3_i386.deb Size: 92792 MD5sum: b37f50e11e812e92e0d38db4d1001bc0 SHA1: f183b0d05fe6fdcd754b04a30eb46ea877cd6af8 SHA256: c54a9d6579e589f299202d62af6f956bc38c6973d51a44c99d253d3b594b686f Description: Clients provided with BIND Description-md5: 11090f3795381e992a73710a1cc4118b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: doc-base Priority: optional Section: doc Installed-Size: 460 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: all Version: 0.10.5 Depends: libuuid-perl, libyaml-tiny-perl Suggests: dhelp | dwww | doc-central | yelp | khelpcenter4, rarian-compat Filename: pool/main/d/doc-base/doc-base_0.10.5_all.deb Size: 86068 MD5sum: 1fa84b6b03d47b9197e6eea5921bc4b3 SHA1: 024823cd714bad098a5143e6289c846536f3e586 SHA256: f59df3b7a4b1de6a3600ea5140146bd59ca9916f95dee5ee57900814985bf1a8 Description: utilities to manage online documentation Description-md5: 795a15f13949941d9a1bf4330905c8bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: docbook Priority: optional Section: text Installed-Size: 2715 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 4.5-5.1ubuntu1 Depends: sgml-data (>= 1.5.0), sgml-base (>= 1.26+nmu2) Suggests: docbook-defguide, docbook-dsssl, docbook-xml, psgml Breaks: docbook-xml (<< 4.4-4~) Filename: pool/main/d/docbook/docbook_4.5-5.1ubuntu1_all.deb Size: 443342 MD5sum: facf8348ca0b1a7beeea3b4a5c29618e SHA1: 40b33741bd72c251bb49fa6fa8fb5bb7c454c6ed SHA256: 3b8d8abbd3ad97d785c9d4fe07e1dcddc786ec3c96b01b9e4bf78d08748b5a60 Description: standard SGML representation system for technical documents Multi-Arch: foreign Homepage: http://www.oasis-open.org/docbook/sgml/ Description-md5: ead20f911a71259289f56248053bcdf9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: docbook-dsssl Priority: optional Section: text Installed-Size: 2578 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: all Version: 1.79-7ubuntu1 Replaces: docbook-stylesheets Depends: openjade | openjade1.3 | jade, docbook (>= 3.1) | docbook-xml, sgml-base (>= 1.26+nmu2), perl Suggests: jadetex, docbook-dsssl-doc Conflicts: docbook-stylesheets Filename: pool/main/d/docbook-dsssl/docbook-dsssl_1.79-7ubuntu1_all.deb Size: 349710 MD5sum: 8e390aa049ce274660ecc89cc43fdcc5 SHA1: adc5d43092cd5e0048592ee01a57d482a1eaef80 SHA256: 8073d2319ebc65e450e4a76b5e6f79b4af70dacb56c64fcb780a1ee0be403bf3 Description: modular DocBook DSSSL stylesheets, for print and HTML Multi-Arch: foreign Homepage: http://docbook.sourceforge.net/projects/dsssl/ Description-md5: 858031b46e88a202ef467a0ea94f76d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: docbook-to-man Priority: optional Section: text Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: i386 Version: 1:2.0.0-31 Depends: libc6 (>= 2.4), docbook, sp | opensp Filename: pool/main/d/docbook-to-man/docbook-to-man_2.0.0-31_i386.deb Size: 80296 MD5sum: 7b8369303f318782d29b8fcdad8cb70a SHA1: 5f9212622d76d5f735a1be2714243d10263b3bfb SHA256: 1b2d4d55f24706fbef65b9b0f1273b1761e6e3ea59e617d0f15b082b157ee6a8 Description: converter from DocBook SGML into roff man macros Multi-Arch: foreign Homepage: http://www.oasis-open.org/docbook/tools/dtm/ Description-md5: 355b2afd3a17f2847b875415a346ff1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: docbook-utils Priority: optional Section: text Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 0.6.14-3ubuntu1 Replaces: cygnus-stylesheets, docbk-xml2x, docbook2man, docbook2texi, docbook2x-doc Depends: docbook-dsssl, jadetex, lynx | links | links2 | w3m, sgmlspl, sp, perl Recommends: docbook-xml Filename: pool/main/d/docbook-utils/docbook-utils_0.6.14-3ubuntu1_all.deb Size: 68010 MD5sum: 438e84629749b64a210cda8dbda2fad0 SHA1: d76b1a7a2616cc24e752314c1c9133d9a02cbe96 SHA256: 1c3491d30483de8971ce443d005f1e3c7120e26ee1703a9a8b161f36dd659207 Description: Convert DocBook files to other formats (HTML, RTF, PS, man, PDF) Multi-Arch: foreign Homepage: http://sources.redhat.com/docbook-tools/ Description-md5: cd7e3cec0a19dc4f52d33b1b531aacb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: docbook-xml Priority: optional Section: text Installed-Size: 2145 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 4.5-7.2 Provides: docbk-xml Depends: sgml-data (>= 2.0.2), sgml-base (>= 1.26+nmu2), xml-core (>= 0.12) Suggests: docbook, docbook-dsssl, docbook-xsl, docbook-defguide Filename: pool/main/d/docbook-xml/docbook-xml_4.5-7.2_all.deb Size: 335852 MD5sum: 8f68834fdf6514eab14ea6b17d05e1cd SHA1: ee12e73bdd90e22c79bc0de079c1828b95e6a272 SHA256: 5617c215cda5794d99d7ec0be027df423b53aae52aa1969b014933cefc22ea52 Description: standard XML documentation system for software and systems Homepage: http://docbook.org/schemas/4x.html Description-md5: 283ee39bcb227d4b875ce6f857e41f58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-desktop Package: docbook-xsl Priority: optional Section: text Installed-Size: 14454 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 1.78.1+dfsg-1 Depends: xml-core (>= 0.12) Recommends: docbook-xml (>= 4.1.2-4) Suggests: dbtoepub, docbook-xsl-doc-html | docbook-xsl-doc-pdf | docbook-xsl-doc-text | docbook-xsl-doc, docbook-xsl-saxon, fop, libsaxon-java, libxalan2-java, libxslthl-java, xalan Filename: pool/main/d/docbook-xsl/docbook-xsl_1.78.1+dfsg-1_all.deb Size: 2146476 MD5sum: 0f340fcf75e2ff5ce31a5eae2223aa1a SHA1: 5f941b3251bcac777f162b8f6d6d999cb795cfb4 SHA256: a5771665f051491b42dc36c06a6bc305cc0841a298821d1dce543803e8794c98 Description: stylesheets for processing DocBook XML to various output formats Multi-Arch: foreign Homepage: http://wiki.docbook.org/DocBookXslStylesheets Description-md5: 4798e7d834fe4007ed35a5da76675e12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: docbook-xsl-ns Priority: optional Section: text Installed-Size: 14488 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: docbook-xsl Version: 1.78.1+dfsg-1 Depends: xml-core (>= 0.12) Recommends: docbook5-xml (>> 5) Suggests: dbtoepub, docbook-xsl-doc-html | docbook-xsl-doc-pdf | docbook-xsl-doc-text | docbook-xsl-doc, docbook-xsl-saxon, fop, libsaxon-java, libxalan2-java, libxslthl-java, xalan Filename: pool/main/d/docbook-xsl/docbook-xsl-ns_1.78.1+dfsg-1_all.deb Size: 2136486 MD5sum: f673db31f846da67e71196bf0910d812 SHA1: 58e4e8d6346105fd2da2c5aebcd104b0363bce23 SHA256: 395d454b1d3ddf9471378fa0ef9c4e2742adb0f848d456ed3718a478833fce22 Description: stylesheets for processing DocBook 5 XML to various output formats Homepage: http://wiki.docbook.org/DocBookXslStylesheets Description-md5: feaf34e3e39a21ba45c997abe92b57b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: docbook2x Priority: optional Section: text Installed-Size: 1415 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Version: 0.8.8-9 Depends: libc6 (>= 2.3.4), xml-core (>= 0.12), perl, libxml-sax-expat-perl, libtext-wrapi18n-perl, opensp | sp, texinfo, xsltproc Recommends: docbook-xml, docbook-xsl Filename: pool/main/d/docbook2x/docbook2x_0.8.8-9_i386.deb Size: 342300 MD5sum: da926b1c968ac654f55521d7a5ddb42e SHA1: 1f5f7bfba63696fb16ae79841d9858d057854389 SHA256: cef8f4060b15380523299af66e3bb4ac1fabf1004cd465b92701bfb65c35da01 Description: Converts DocBook/XML documents into man pages and TeXinfo Homepage: http://docbook2x.sourceforge.net Description-md5: 0460a03df0bea65e00317c6f10f31272 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: docbook5-xml Priority: optional Section: text Installed-Size: 3540 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 5.0-2 Depends: xml-core (>= 0.12) Suggests: docbook-xsl-ns, docbook5-defguide Filename: pool/main/d/docbook5-xml/docbook5-xml_5.0-2_all.deb Size: 806724 MD5sum: 003ae8780f10826d3ac14d83720f2e68 SHA1: 88aadee36eeb6ba54fc8cfa8a2ead3dae4ac4e23 SHA256: e1c547052cfa92f39473232009f0ae97b01fedb0a89a97f93cd3a2b7391e92ab Description: standard XML documentation system for software and systems Homepage: http://docbook.org/schemas/5x.html Description-md5: 01c2468021dec31e79a7135346319d9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: docutils-common Priority: optional Section: python Installed-Size: 675 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-docutils Version: 0.11-3 Replaces: docutils-writer-odt, python-docutils (<< 0.7-3~), python-odtwriter Depends: sgml-base (>= 1.26+nmu2), xml-core (>= 0.12) Recommends: python-docutils | python3-docutils Conflicts: python-docutils (<< 0.7-3~) Breaks: docutils-writer-odt, python-odtwriter Filename: pool/main/p/python-docutils/docutils-common_0.11-3_all.deb Size: 143384 MD5sum: 8fcd1b48d490c1a16bc307cf51b29e88 SHA1: 334dec3878f7e69b847db99ab6de18fce126ba7f SHA256: 67025e47c6cf26de6f6b4199a864e694313c992b875957176435b636488726b6 Description: text processing system for reStructuredText - common data Homepage: http://docutils.sourceforge.net/ Description-md5: 84cf51ac94facf9d285421c8082ca5da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: docutils-doc Priority: optional Section: doc Installed-Size: 4133 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-docutils Version: 0.11-3 Replaces: python-docutils (<< 0.7-3~) Conflicts: python-docutils (<< 0.7-3~) Filename: pool/main/p/python-docutils/docutils-doc_0.11-3_all.deb Size: 888184 MD5sum: 78df317de3c8cbcdc76ec4c78d2d5921 SHA1: 54e56c79716faf85dfb31217eddcd6a0066bf79c SHA256: 05783ebc65c42260009c753b5d6c2fe9c65a19651a784e1d0bf685a6e3897af0 Description: text processing system for reStructuredText - documentation Homepage: http://docutils.sourceforge.net/ Description-md5: 60ab5df53b5ac456a51df5c40faee7f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dosfstools Priority: standard Section: otherosfs Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Version: 3.0.26-1 Depends: libc6 (>= 2.7) Filename: pool/main/d/dosfstools/dosfstools_3.0.26-1_i386.deb Size: 59518 MD5sum: 36fad36abedccd5ffc9fffc254745a60 SHA1: 8405cc5ac127db1279fb8f4b9ac4477b65605b07 SHA256: 23b6c87962cf035aeaaaacb441a678c2b5eb9ef59bb56f7ead7b5c3e5279417d Description: utilities for making and checking MS-DOS FAT filesystems Homepage: http://daniel-baumann.ch/software/dosfstools/ Description-md5: 6e6f1615505926a1cde788227bb8c0b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: dosfstools-dbg Priority: extra Section: devel Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Source: dosfstools Version: 3.0.26-1 Depends: dosfstools (= 3.0.26-1) Filename: pool/main/d/dosfstools/dosfstools-dbg_3.0.26-1_i386.deb Size: 126102 MD5sum: bfc2565dfd07e10ecf3317ec2681b941 SHA1: 967ff4a10d27ed6632e487099e4f66b51a6dcf88 SHA256: 91ad4bd0604bd291e6a1eb6f5e2131c429f3df60dcbe67e7251bfb5e3fef66f9 Description: utilities for making and checking MS-DOS FAT filesystems (debug) Homepage: http://daniel-baumann.ch/software/dosfstools/ Description-md5: c36802847c419ec5329168f8bc43c65e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dovecot-core Priority: optional Section: mail Installed-Size: 6496 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: i386 Source: dovecot Version: 1:2.2.9-1ubuntu2 Replaces: dovecot-common (<< 1:2.0.14-2~), mailavenger (<< 0.8.1-4) Provides: dovecot-common Depends: libbz2-1.0, libc6 (>= 2.17), libpam0g (>= 0.99.7.1), libssl1.0.0 (>= 1.0.0), libwrap0 (>= 7.6-4~), zlib1g (>= 1:1.1.4), debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libpam-runtime (>= 0.76-13.1), openssl, adduser, ucf (>= 2.0020), ssl-cert (>= 1.0-11ubuntu1), lsb-base (>= 3.2-12ubuntu3) Recommends: ntpdate Suggests: ntp, dovecot-gssapi, dovecot-sieve, dovecot-pgsql, dovecot-mysql, dovecot-sqlite, dovecot-ldap, dovecot-imapd, dovecot-pop3d, dovecot-lmtpd, dovecot-managesieved, dovecot-solr, ufw Breaks: dovecot-common (<< 1:2.0.14-2~), mailavenger (<< 0.8.1-4) Filename: pool/main/d/dovecot/dovecot-core_2.2.9-1ubuntu2_i386.deb Size: 2095522 MD5sum: 34f1ff1a509e98c2ef69484db101446d SHA1: 5663a403c899d0692d9931c580c8aa309063457c SHA256: 0c600e46470b7dde6cef46567bb8287cd18d2a6702cc4017c9d2170553742581 Description: secure POP3/IMAP server - core files Homepage: http://dovecot.org/ Description-md5: 42825422b1ef9e3a592c94dfafed375c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: dovecot-dbg Priority: extra Section: debug Installed-Size: 21587 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: i386 Source: dovecot Version: 1:2.2.9-1ubuntu2 Depends: dovecot-core (= 1:2.2.9-1ubuntu2) Filename: pool/main/d/dovecot/dovecot-dbg_2.2.9-1ubuntu2_i386.deb Size: 5445136 MD5sum: 8e175e4d3875f90dea127577073cbee8 SHA1: 4ac13541127a96457f5f36d3c20e18c92aeac445 SHA256: 674c04b1d33f99c5aec991284bf578b5009f9b06cb78735b62956826efa07821 Description: secure POP3/IMAP server - debug symbols Homepage: http://dovecot.org/ Description-md5: ffb457ad37715bf3c94d1439cfdd43cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dovecot-dev Priority: optional Section: mail Installed-Size: 1575 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: i386 Source: dovecot Version: 1:2.2.9-1ubuntu2 Replaces: dovecot-common (<< 1:2.0.14-2~) Depends: dovecot-core (= 1:2.2.9-1ubuntu2) Breaks: dovecot-common (<< 1:2.0.14-2~) Filename: pool/main/d/dovecot/dovecot-dev_2.2.9-1ubuntu2_i386.deb Size: 225254 MD5sum: 6a06df0bfc2aaec353f411da24ce977c SHA1: 828c99022102c850041d935662acb7d0fa3d7578 SHA256: 152ac374f974c3413edd34d028c12e54371bd96ab0493f8c9156036bca64ae76 Description: secure POP3/IMAP server - header files Homepage: http://dovecot.org/ Description-md5: ffb4394c4cda3a428a661a4a841033fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dovecot-imapd Priority: optional Section: mail Installed-Size: 905 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: i386 Source: dovecot Version: 1:2.2.9-1ubuntu2 Provides: imap-server Depends: dovecot-core (= 1:2.2.9-1ubuntu2), libbz2-1.0, libc6 (>= 2.4), zlib1g (>= 1:1.1.4), ucf (>= 2.0020) Filename: pool/main/d/dovecot/dovecot-imapd_2.2.9-1ubuntu2_i386.deb Size: 121486 MD5sum: bbf3057bda88115516408005fde53863 SHA1: 904ad9db0a268f449aca12be9ffef90772a927c8 SHA256: 618d250ad10893a6a126113de67e715ec832005de2c7edadfd7c3062d4dc57e0 Description: secure POP3/IMAP server - IMAP daemon Homepage: http://dovecot.org/ Description-md5: c160efea9f93533ab3404291018f7556 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: dovecot-managesieved Priority: optional Section: mail Installed-Size: 680 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: i386 Source: dovecot Version: 1:2.2.9-1ubuntu2 Replaces: dovecot-common (<< 1:2.0.14-2~) Depends: dovecot-core (= 1:2.2.9-1ubuntu2), dovecot-sieve (= 1:2.2.9-1ubuntu2), libc6 (>= 2.4), ucf (>= 2.0020) Breaks: dovecot-common (<< 1:2.0.14-2~) Filename: pool/main/d/dovecot/dovecot-managesieved_2.2.9-1ubuntu2_i386.deb Size: 46454 MD5sum: 68667646b8c127769d45420f37ce6bfe SHA1: b13ffa2733cdab88849b399b09af31d34c1be36a SHA256: 8d0dc09058f98f8f28b265871eee075856f57e6acc30d1922081e3c99639f8dd Description: secure POP3/IMAP server - ManageSieve server Homepage: http://dovecot.org/ Description-md5: 9c22507acd609a92f0a6377258e2d338 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dovecot-pop3d Priority: optional Section: mail Installed-Size: 609 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: i386 Source: dovecot Version: 1:2.2.9-1ubuntu2 Provides: pop3-server Depends: dovecot-core (= 1:2.2.9-1ubuntu2), libc6 (>= 2.4), ucf (>= 2.0020) Filename: pool/main/d/dovecot/dovecot-pop3d_2.2.9-1ubuntu2_i386.deb Size: 28016 MD5sum: 548943b55ece999f497312b7e23360dc SHA1: 65a7edcfc33ae32a2e29cec1f7ceab9f8bd6f227 SHA256: 9b34d0e7fb869ff49356f24892060dd9315b175e7ed2dea74224592a48f3b500 Description: secure POP3/IMAP server - POP3 daemon Homepage: http://dovecot.org/ Description-md5: 399e133dbb91be39d372ab3528375bab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: dovecot-sieve Priority: optional Section: mail Installed-Size: 1270 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: i386 Source: dovecot Version: 1:2.2.9-1ubuntu2 Depends: dovecot-core (= 1:2.2.9-1ubuntu2), libc6 (>= 2.4), ucf (>= 2.0020) Filename: pool/main/d/dovecot/dovecot-sieve_2.2.9-1ubuntu2_i386.deb Size: 236290 MD5sum: d2a68afd244e9f044c3916e42fd5992d SHA1: c340a9f8d0605fbd1cc88b0da45e45c2cbdc2746 SHA256: 7da15f0e5dacfb610cbc9b9c521c4c0d678022f936e48cb64e43080ac5309176 Description: secure POP3/IMAP server - Sieve filters support Homepage: http://dovecot.org/ Description-md5: 70234206edc75d829fdb3617a653da24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: doxygen Priority: optional Section: devel Installed-Size: 10032 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Version: 1.8.6-2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Suggests: doxygen-latex, doxygen-doc, doxygen-gui, graphviz Conflicts: graphviz (<< 1.12) Filename: pool/main/d/doxygen/doxygen_1.8.6-2_i386.deb Size: 2345038 MD5sum: dbd2fbacd0e877a44f2e66e8134c85b3 SHA1: 3392d5cdf32c42bb4912d318c9a394faf2b66031 SHA256: bf94676c9affc6711b2aa4b9dd7b7010e517e039eae155f4049f6f1998b4f0e0 Description: Documentation system for C, C++, Java, Python and other languages Multi-Arch: foreign Homepage: http://www.stack.nl/~dimitri/doxygen/ Description-md5: 492da4d72df8e1b313e0a62be4fae0e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: doxygen-dbg Priority: extra Section: debug Installed-Size: 30359 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: doxygen Version: 1.8.6-2 Depends: doxygen (= 1.8.6-2) Filename: pool/main/d/doxygen/doxygen-dbg_1.8.6-2_i386.deb Size: 7648428 MD5sum: 5b80ba389e1af24c89d06e8eae4f934c SHA1: 626618c78fe8ee40a27a0c1fb66a400266168a7e SHA256: bb39cd452fafbe676fdafc08fdd85f8c6a65d07e724d41cd7bbb9dce91e3476d Description: Debug symbols for doxygen Homepage: http://www.stack.nl/~dimitri/doxygen/ Description-md5: 3b3452c547a089b8eba5801720747d74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: doxygen-doc Priority: optional Section: doc Installed-Size: 4041 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: doxygen Version: 1.8.6-2 Replaces: doxygen (<< 1.2.14), doxygen-docs Provides: doxygen-docs Recommends: doxygen Conflicts: doxygen-docs Filename: pool/main/d/doxygen/doxygen-doc_1.8.6-2_all.deb Size: 1838160 MD5sum: 33037fa0aba30c049a7836dc33ec6e79 SHA1: fe87a5b3f5ae7a45f4947407e17ce86dff777a33 SHA256: bd2a81aab5ea4727e6413a373e6121c94fd11ef51d42d3d1d156f546bdd3139c Description: Documentation for doxygen Homepage: http://www.stack.nl/~dimitri/doxygen/ Description-md5: 95a07d9f5965b3499af7270363210b77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: doxygen-latex Priority: optional Section: devel Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: doxygen Version: 1.8.6-2 Depends: doxygen (>= 1.8.6-2), texlive-extra-utils, texlive-latex-extra, latex-xcolor, texlive-font-utils, ghostscript, texlive-fonts-recommended Filename: pool/main/d/doxygen/doxygen-latex_1.8.6-2_all.deb Size: 5120 MD5sum: d2a9349a312751adf81e3ca0d974dfef SHA1: fa5d12a0dc26c204717e83a510ff0687f281e1d1 SHA256: 89e1b23ce4a81928beeba0470ceb61bf85d975eca5440a240ff95d7684172252 Description: Documentation system for C, C++, Java, Python and other languages Multi-Arch: foreign Homepage: http://www.stack.nl/~dimitri/doxygen/ Description-md5: 0ef72aac65162cbb800870e839494cf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dpatch Priority: optional Section: devel Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Gergely Nagy Architecture: all Version: 2.0.35 Depends: bash (>= 3.0-6), dpkg-dev Recommends: fakeroot, patchutils Suggests: curl Filename: pool/main/d/dpatch/dpatch_2.0.35_all.deb Size: 54654 MD5sum: 97795d94a6d0f6feda375be2c5d73f80 SHA1: 72a68f6b0a869132881edcea9f2e26a24a363682 SHA256: c1a934bdba169ef1f59fe54e1c2cb0111b128b79ed091e534c4303e6862ed292 Description: patch maintenance system for Debian source packages Multi-Arch: foreign Description-md5: 286f2861a86b05464a69997c4054a622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dpkg Essential: yes Priority: required Section: admin Installed-Size: 6208 Maintainer: Ubuntu Developers Original-Maintainer: Dpkg Developers Architecture: i386 Version: 1.17.5ubuntu5 Replaces: manpages-it (<< 2.80-4) Pre-Depends: libbz2-1.0, libc6 (>= 2.11), liblzma5 (>= 5.1.1alpha+20120614), libselinux1 (>= 2.1.0), zlib1g (>= 1:1.1.4), tar (>= 1.23) Suggests: apt Breaks: apt (<< 0.7.7), aptitude (<< 0.4.7-1), dpkg-dev (<< 1.15.8), libdpkg-perl (<< 1.15.8) Filename: pool/main/d/dpkg/dpkg_1.17.5ubuntu5_i386.deb Size: 1940298 MD5sum: 93e2fdb7be0f15b9076d51b467cbc49b SHA1: 6f4257770c7430adad76e1e3f6ec5423b770dc34 SHA256: 3ec8235aa5c5c307f26199e5d12d1c521e9caab9080402425f30927b5d394467 Description: Debian package management system Origin: Ubuntu Bugs: https://bugs.launchpad.net/ubuntu/+filebug Multi-Arch: foreign Homepage: https://wiki.debian.org/Teams/Dpkg Description-md5: 2f156c6a30cc39895ad3487111e8c190 Supported: 5y Task: minimal Package: dpkg-cross Priority: extra Section: utils Installed-Size: 204 Maintainer: Ubuntu Developers Original-Maintainer: Debian Embedded Group Architecture: all Version: 2.6.11ubuntu1 Depends: perl, debconf (>= 0.5) | debconf-2.0, dpkg-dev (>= 1.14.7), libconfig-auto-perl, libdebian-dpkgcross-perl (= 2.6.11ubuntu1) Recommends: fakeroot Suggests: binutils-multiarch Breaks: debhelper (<< 8.1.2~) Filename: pool/main/d/dpkg-cross/dpkg-cross_2.6.11ubuntu1_all.deb Size: 38438 MD5sum: abe829455c875a6fe9f6bb1bea1a3c11 SHA1: 1d48b41867966519225bf6ca9747a569a1547419 SHA256: 9ebc3a395cd9bfee242e6d7e57ed0925c5ee92c21568b3228a94b99328e0d4c6 Description: tools for cross compiling Debian packages Homepage: http://dpkg-cross.alioth.debian.org/ Description-md5: 9d0bf8c2e94aac7ec8ba6d07b4e081b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dpkg-dev Priority: optional Section: utils Installed-Size: 1634 Maintainer: Ubuntu Developers Original-Maintainer: Dpkg Developers Architecture: all Source: dpkg Version: 1.17.5ubuntu5 Replaces: manpages-it (<< 2.80-4) Depends: libdpkg-perl (= 1.17.5ubuntu5), bzip2, xz-utils, patch, make, binutils, base-files (>= 5.0.0) Recommends: gcc | c-compiler, build-essential, fakeroot, gnupg | gnupg2, gpgv | gpgv2, libalgorithm-merge-perl Suggests: debian-keyring Breaks: devscripts (<< 2.10.26), dpkg-cross (<< 2.0.0) Filename: pool/main/d/dpkg/dpkg-dev_1.17.5ubuntu5_all.deb Size: 726082 MD5sum: 8b00e60c75ce7dace3368967066721a6 SHA1: 10354d2d26d8e3b50b3d0c917bd74149fd30b93d SHA256: bd565a70d6b10ca68dc79c922414a3789fa44c6cafb99d646a8d9c0b244dffd9 Description: Debian package development tools Origin: Ubuntu Bugs: https://bugs.launchpad.net/ubuntu/+filebug Multi-Arch: foreign Homepage: https://wiki.debian.org/Teams/Dpkg Description-md5: 2eaf4b4a1cef9584869950f3a52106fc Build-Essential: yes Supported: 5y Package: dpkg-repack Priority: optional Section: admin Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Joey Hess Architecture: all Version: 1.37 Depends: perl Filename: pool/main/d/dpkg-repack/dpkg-repack_1.37_all.deb Size: 8280 MD5sum: d589f5b5630822f4ac4f6f3bfdaf2fa8 SHA1: 8a147b270733a9deabf61480262a3797a76f72ca SHA256: a3a8640d195972161334a3f83a914a760a7bcb918284715fd5982306898a3c69 Description: puts an unpacked .deb file back together Homepage: http://kitenet.net/~joey/code/dpkg-repack/ Description-md5: 35ebfa697cce16904a4a902c745064e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: dput Priority: optional Section: devel Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Y Giridhar Appaji Nag Architecture: all Version: 0.9.6.4ubuntu1 Depends: python (>= 2.5), gnupg Suggests: openssh-client, lintian, mini-dinstall, rsync, python-bzrlib Filename: pool/main/d/dput/dput_0.9.6.4ubuntu1_all.deb Size: 33128 MD5sum: de5ea4c148044a2dcfad57478e286d84 SHA1: 5949b7eabdf323431405a3526b93ab64f49beaa6 SHA256: 50e9f794630995fbb6c5c1efbc58a594c0bb6dfd7e3a1e0d7e66b3f3fc78c1dc Description: Debian package upload tool Description-md5: be606ab8f417df2f8c89a0ea937e9a78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: drac-dev Priority: optional Section: devel Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Noël Köthe Architecture: i386 Source: drac Version: 1.12-8build1 Filename: pool/main/d/drac/drac-dev_1.12-8build1_i386.deb Size: 7078 MD5sum: 8df9beb3c4a3ea85f6f64dc74e4c169e SHA1: a4b69a3d7a91017c29645e1144caf946072e0a8e SHA256: f7b0c12e4a2bc773bc76c969fb18b269cfd97b1546fcdb6c00e1bea186e78e96 Description: Dynamic Relay Authorization Control (development files) Homepage: http://mail.cc.umanitoba.ca/drac/ Description-md5: b8d3a0f6e5fd46c1b5cdc83af4187251 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: drbd8-utils Priority: extra Section: admin Installed-Size: 913 Maintainer: Ubuntu Developers Original-Maintainer: Debian DRBD Maintainers Architecture: i386 Source: drbd8 Version: 2:8.4.4-1ubuntu1 Replaces: drbd, drbd-utils Provides: drbd-utils Depends: libc6 (>= 2.16), init-system-helpers (>= 1.13~), perl Recommends: heirloom-mailx | mailx Suggests: heartbeat Conflicts: drbd-utils Filename: pool/main/d/drbd8/drbd8-utils_8.4.4-1ubuntu1_i386.deb Size: 255210 MD5sum: f7730f56cfc7cac6f6a8ead7279db3b8 SHA1: 661205d89d96d865c0371b1ee44d5d75ee0fe05f SHA256: 74826697cc07b50c3e6600b3b59918f82c59f2d859ea2d24009f4d232c3f3a2f Description: RAID 1 over TCP/IP for Linux (user utilities) Homepage: http://www.drbd.org/ Description-md5: 7da3dade742b03d1a9c08b339123f93b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dselect Priority: optional Section: admin Installed-Size: 1408 Maintainer: Ubuntu Developers Original-Maintainer: Dpkg Developers Architecture: i386 Source: dpkg Version: 1.17.5ubuntu5 Replaces: dpkg-ftp, dpkg-multicd, manpages-it (<< 2.80-4) Depends: libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libncursesw5 (>= 5.6+20070908), libstdc++6 (>= 4.1.1), libtinfo5, dpkg (>= 1.13.1) Suggests: perl Conflicts: dpkg-ftp, dpkg-multicd Filename: pool/main/d/dpkg/dselect_1.17.5ubuntu5_i386.deb Size: 176490 MD5sum: a05f44a2cc6312711d40bcb28e657927 SHA1: 90b59dc4687ffa1ea0e1710c372c77e69dbcf4b8 SHA256: 2a0a9486d6a91e9ac544771f3bc4a8671938d9ba0b86faea1d479555a59d1c0e Description: Debian package management front-end Origin: Ubuntu Bugs: https://bugs.launchpad.net/ubuntu/+filebug Multi-Arch: foreign Homepage: https://wiki.debian.org/Teams/Dpkg Description-md5: 269b383010cda7ddc3f6381398082aec Supported: 5y Package: duplicity Priority: optional Section: utils Installed-Size: 1164 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Zangerl Architecture: i386 Version: 0.6.23-1ubuntu4 Depends: libc6 (>= 2.4), librsync1 (>= 0.9.6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-lockfile Suggests: rsync, python-paramiko, python-urllib3, python-oauthlib, python-boto, ncftp, python-cloudfiles, lftp, python-gdata, tahoe-lafs, python-swiftclient Breaks: deja-dup (<< 29.5) Filename: pool/main/d/duplicity/duplicity_0.6.23-1ubuntu4_i386.deb Size: 198774 MD5sum: 8e5759626fb3b300bfd71084004d3440 SHA1: c6e46273f749963e63959323ae6f4f7e5e823793 SHA256: 854f54913a359bb401daf73db34059ab3202f3557233338859b5c35248471dc4 Description: encrypted bandwidth-efficient backup Homepage: http://duplicity.nongnu.org/ Description-md5: 4d1078d59b01217b0f9070c1c5c93a05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: dupload Priority: optional Section: devel Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: all Version: 2.7.0ubuntu1 Depends: perl, libnet-perl Recommends: openssh-client | ssh Suggests: lintian, mail-transport-agent Filename: pool/main/d/dupload/dupload_2.7.0ubuntu1_all.deb Size: 24984 MD5sum: dc6deb5ec548f23821a8c4558c9aa541 SHA1: 70a063da24e463c616905a6d719e73f0a855bc07 SHA256: 52d320c42a1702093ca611fd94f2f43cbeea8df9ce6fbf0c5fc6868120707dd8 Description: utility to upload Debian packages Description-md5: 86dd8dc6b2c98cc369b781a29edbde0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: dvd+rw-tools Priority: optional Section: utils Installed-Size: 303 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: i386 Version: 7.1-10build1 Depends: libc6 (>= 2.7), libstdc++6 (>= 4.1.1), genisoimage, growisofs (>= 7.1-9) Suggests: cdrskin Filename: pool/main/d/dvd+rw-tools/dvd+rw-tools_7.1-10build1_i386.deb Size: 82242 MD5sum: 1acd72ad028a6abc26aa2e97bcc45fe1 SHA1: 4ad1c3d014216c111965d6bb42626cbb7af759c6 SHA256: 89ae48eed29b155f4e5fc2721c7d726b6a4608c3e584ce1e5c82bfeb28b3cc02 Description: DVD+-RW/R tools Homepage: http://fy.chalmers.se/~appro/linux/DVD+RW/ Description-md5: 63f942222e20cd33a7d6646892c22266 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: dvd+rw-tools-dbg Priority: extra Section: devel Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: i386 Source: dvd+rw-tools Version: 7.1-10build1 Depends: dvd+rw-tools (= 7.1-10build1) Filename: pool/main/d/dvd+rw-tools/dvd+rw-tools-dbg_7.1-10build1_i386.deb Size: 12072 MD5sum: a4b61246d81d3c8b69f8e845d3ec3437 SHA1: c9b11a71855acaf21729947f696719a1e9265a07 SHA256: c7640288337a2f44d04dcfe460ae79b722b0ffa8d93019eefe8a3b088ebf4309 Description: DVD+-RW/R tools (debug) Homepage: http://fy.chalmers.se/~appro/linux/DVD+RW/ Description-md5: ec18b175ab72dbb4b0c37e97b17de5bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dvipng Priority: optional Section: utils Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Varun Hiremath Architecture: i386 Version: 1.14-2 Depends: libc6 (>= 2.4), libfreetype6 (>= 2.2.1), libgd3 (>= 2.1.0~alpha~), libkpathsea6, texlive-base-bin, ghostscript Filename: pool/main/d/dvipng/dvipng_1.14-2_i386.deb Size: 78262 MD5sum: 71ec28bd90903da45db91f96f08014ef SHA1: c615b3ca544bd56155dde30318ac9c841f9ab365 SHA256: b6bd6edf340d595f3ccd551bb17d230aadfc24d06a1e31ea795c54331d5670f3 Description: convert DVI files to PNG graphics Homepage: http://www.nongnu.org/dvipng/ Description-md5: 5a07c90ad09a037b4cdf0fc0a7aa18bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: dwarves Priority: extra Section: utils Installed-Size: 1016 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Girard Architecture: i386 Source: dwarves-dfsg Version: 1.10-2 Depends: libc6 (>= 2.4), libdw1 (>= 0.148), libelf1 (>= 0.142), zlib1g (>= 1:1.1.4) Filename: pool/main/d/dwarves-dfsg/dwarves_1.10-2_i386.deb Size: 485596 MD5sum: 7f66be926c73b5aafaebf7f4677d0ab6 SHA1: b65cdc0ee830f18f65757336d2f472fe4c2a728d SHA256: f87438676f3c37fe218872413482eb0dce61e025e8586ed44fa153571ea218c4 Description: set of advanced DWARF utilities Homepage: http://acmel.wordpress.com Description-md5: 33dbd1e2b20217578306e033e5d7c8e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: e2fslibs Priority: required Section: libs Installed-Size: 418 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Replaces: e2fsprogs (<< 1.34-1) Provides: libe2p2, libext2fs2 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/e/e2fsprogs/e2fslibs_1.42.9-3ubuntu1_i386.deb Size: 192390 MD5sum: 78df0341596b8b9f7414685be7ec8ec5 SHA1: e0cabe0c658f6bd98bf212a9876639534c98f62d SHA256: 89d070530e41bd76ec7e41711ed5ad82bdfe015ab113331683c3de707f24474e Description: ext2/ext3/ext4 file system libraries Multi-Arch: same Homepage: http://e2fsprogs.sourceforge.net Description-md5: ba4f61a3e0b238831f03143cbdce696e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: e2fslibs-dbg Priority: extra Section: libdevel Installed-Size: 1064 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Depends: e2fslibs (= 1.42.9-3ubuntu1) Filename: pool/main/e/e2fsprogs/e2fslibs-dbg_1.42.9-3ubuntu1_i386.deb Size: 312766 MD5sum: 0064b93c6e651ee85a9a8f260fecddf1 SHA1: f80987872c85c5499b86a462a769e62230892cc1 SHA256: 7d5549ede3025b67e3885376b2673a43dbd552425c88e17a4ccee129c4d243ff Description: debugging information for e2fslibs Homepage: http://e2fsprogs.sourceforge.net Description-md5: 3ae73487772accd1aaa7b4e391b84e21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: e2fslibs-dev Priority: extra Section: libdevel Installed-Size: 786 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Replaces: libkrb5-dev (<< 1.3) Provides: e2p-dev, ext2fs-dev Depends: libc6-dev | libc-dev, comerr-dev, e2fslibs (= 1.42.9-3ubuntu1) Suggests: doc-base Filename: pool/main/e/e2fsprogs/e2fslibs-dev_1.42.9-3ubuntu1_i386.deb Size: 204578 MD5sum: 25f982490c6fcde4dade99b916426603 SHA1: 7fa402330204918f3026c1075e5b8787c99969be SHA256: 9bbc093783f77926853b06bd77b51e3157002170f5854dc72ea8887925fae4c5 Description: ext2/ext3/ext4 file system libraries - headers and static libraries Homepage: http://e2fsprogs.sourceforge.net Description-md5: 6c413fbf2fbe007c87112b744560fc94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: e2fsprogs Essential: yes Priority: required Section: admin Installed-Size: 2424 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Version: 1.42.9-3ubuntu1 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.42.9-3ubuntu1), libblkid1 (>= 2.17.2), libc6 (>= 2.11), libcomerr2 (>= 1.42~WIP-2011-10-05-1), libss2 (>= 1.34-1), libuuid1 (>= 2.16), util-linux (>= 2.15~rc1-1) Suggests: gpart, parted, e2fsck-static Conflicts: dump (<< 0.4b4-4), initscripts (<< 2.85-4), quota (<< 1.55-8.1), sysvinit (<< 2.85-4) Filename: pool/main/e/e2fsprogs/e2fsprogs_1.42.9-3ubuntu1_i386.deb Size: 668106 MD5sum: 38eff415d7199d32b99ce91788c4aef4 SHA1: d4488f0ae2c15aa2221fde97be3466f94cd2fa41 SHA256: 8ee2a67cde364170fb767e1793cef74282d5aab0896a7cf2eebd5ab0a12f4559 Description: ext2/ext3/ext4 file system utilities Multi-Arch: foreign Homepage: http://e2fsprogs.sourceforge.net Description-md5: 3cc82e29372f2405b28e6171db1e687d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: e2fsprogs-dbg Priority: extra Section: devel Installed-Size: 3536 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Depends: e2fsprogs (= 1.42.9-3ubuntu1) Filename: pool/main/e/e2fsprogs/e2fsprogs-dbg_1.42.9-3ubuntu1_i386.deb Size: 931516 MD5sum: 6e1ab927a9b3af64ed89722f5c0d2347 SHA1: 54643f74b98dd59986eda7150556cfa6c63d2316 SHA256: a318ba4bafac491ddcadc691d1e21c1afa2d6e39a278853ec14d6fa5096929c4 Description: debugging information for e2fsprogs Homepage: http://e2fsprogs.sourceforge.net Description-md5: f0f860f2f03441dce76ec09fc4fdde9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: eatmydata Priority: optional Section: utils Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: i386 Source: libeatmydata Version: 26-2 Provides: libeatmydata Depends: libc6 (>= 2.1.3) Filename: pool/main/libe/libeatmydata/eatmydata_26-2_i386.deb Size: 7782 MD5sum: b876658027cf091da4eaec20d1fc3b9d SHA1: 352c2ea9246d36cfe52fbfd130f612991ef91a60 SHA256: e00fc2cedabccdef5c24ead9e780deb116ad7af5e408db006b4bc3888ffbf88c Description: library and utilities designed to disable fsync and friends Homepage: https://launchpad.net/libeatmydata Description-md5: 8b35348223c5f515ecb4a88949a00006 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: ebtables Priority: optional Section: net Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Jochen Friedrich Architecture: i386 Version: 2.0.10.4-3ubuntu1 Depends: libc6 (>= 2.4) Recommends: iptables, kmod Filename: pool/main/e/ebtables/ebtables_2.0.10.4-3ubuntu1_i386.deb Size: 75038 MD5sum: b7a2c2f5ce647b9f40328da8d671ab8c SHA1: 9035907eadcece32bc9381891d9ef4322094c1d6 SHA256: a6755cda9eaf25d7c29eacfe4805cb574a253e5559ce14dcb45a239c77839938 Description: Ethernet bridge frame table administration Homepage: http://ebtables.sourceforge.net Description-md5: 1ee8adc32f9027f83fc2926324d15ddf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: ecj Priority: optional Section: devel Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: i386 Version: 3.9.0-1 Replaces: ecj-bootstrap (<< 3.2.2), eclipse-ecj Depends: libecj-java (>= 3.9.0-1), gcj-4.8-jre-headless (>= 4.4.6), gcj-4.8-jre-lib (>= 4.4.6), java-common (>= 0.23) Recommends: ecj-gcj Suggests: ant Conflicts: ecj-bootstrap (<< 3.2.2), eclipse-ecj Filename: pool/main/e/ecj/ecj_3.9.0-1_i386.deb Size: 8810 MD5sum: aabec9dd545bbce12e01023d4455c52c SHA1: 4eb720967d97867862daa1849b3d6029640785dc SHA256: 3ed0c5cc29db560b363b5f9126eb4b56085088e4b30a76137fb7796db87aa741 Description: standalone version of the Eclipse Java compiler Description-md5: e6284592785e30058ea1bd0ff42945b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ecj-gcj Priority: optional Section: devel Installed-Size: 4419 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: i386 Source: ecj Version: 3.9.0-1 Replaces: ecj-bootstrap-gcj (<< 3.2.2), eclipse-ecj-gcj Provides: libecj-java-gcj Depends: ecj (>= 3.9.0-1), libecj-java-gcj (>= 3.9.0-1), libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.1-1~) Recommends: java-gcj-compat (>= 1.0.69) Conflicts: eclipse-ecj-gcj Filename: pool/main/e/ecj/ecj-gcj_3.9.0-1_i386.deb Size: 1207588 MD5sum: 31627a4de93c448ebe183c540efe8cba SHA1: 191a29b3ef47c95c3a41b42f4a78f9833deb7187 SHA256: b8a71debc925f0e9d667f8ea8da3b967699f74f115410ceec912c4a999c395df Description: standalone version of the Eclipse Java compiler (native version) Description-md5: 87a3c61abece4f35d693d02aceff0ca5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ecryptfs-utils Priority: optional Section: misc Installed-Size: 528 Maintainer: Dustin Kirkland Original-Maintainer: Daniel Baumann Architecture: i386 Version: 104-0ubuntu1 Depends: libc6 (>= 2.8), libecryptfs0, libkeyutils1, libpam0g (>= 0.99.7.1), gettext-base, keyutils, libnss3-1d, libpam-runtime (>= 1.0.1-6) Recommends: cryptsetup, lsof, rsync Suggests: opencryptoki, zescrow-client Filename: pool/main/e/ecryptfs-utils/ecryptfs-utils_104-0ubuntu1_i386.deb Size: 98774 MD5sum: 4de405d41dfa132bc83456df66e9f160 SHA1: 7d57950064e112f3702210155439c9f760126ae5 SHA256: ee650d09fa470cf3b7bb7d3f284a03966fb0bc67bfd36ce84d08964f529d649f Description: ecryptfs cryptographic filesystem (utilities) Homepage: http://ecryptfs.org/ Description-md5: 86edf09a53857e8032a0fe1204a813d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: ecryptfs-utils-dbg Priority: extra Section: debug Installed-Size: 603 Maintainer: Dustin Kirkland Original-Maintainer: Daniel Baumann Architecture: i386 Source: ecryptfs-utils Version: 104-0ubuntu1 Depends: ecryptfs-utils (= 104-0ubuntu1), libecryptfs0 (= 104-0ubuntu1), libecryptfs-dev (= 104-0ubuntu1) Filename: pool/main/e/ecryptfs-utils/ecryptfs-utils-dbg_104-0ubuntu1_i386.deb Size: 212664 MD5sum: bebcef66873a1bdb67da0adeb5e43859 SHA1: 278da9cf25ba289aa02078676f264faf0330e92e SHA256: 16d731c16dbed358993defc3c1ac383f3f8b3c5eeec390efaa4a95dc96d2840c Description: ecryptfs cryptographic filesystem (utilities; debug) Homepage: http://ecryptfs.org/ Description-md5: 6b21be33a53e819cceba44f8b3206783 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ed Priority: standard Section: editors Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Martin Zobel-Helas Architecture: i386 Version: 1.9-2 Depends: libc6 (>= 2.11) Filename: pool/main/e/ed/ed_1.9-2_i386.deb Size: 50272 MD5sum: 831aec6b00b73b53e20c0a46d99a6a36 SHA1: 25d7b6ecf780415ccd284acc695e2b96369d6fb3 SHA256: 38453f7a9f902c4a8d441c30d01a5558827a1abb51feacc3433343805ad18dc6 Description: classic UNIX line editor Multi-Arch: foreign Homepage: http://www.gnu.org/software/ed/ Description-md5: 10ab4f4d0d094d088419c432af89cf48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: efibootmgr Priority: optional Section: admin Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: i386 Version: 0.5.4-7ubuntu1 Depends: libc6 (>= 2.7), libpci3 (>= 1:3.2.1-1) Filename: pool/main/e/efibootmgr/efibootmgr_0.5.4-7ubuntu1_i386.deb Size: 27770 MD5sum: 4fe9f5aa128c7c58ff94d59034b0b789 SHA1: 3d16507f1b28c975440d6002ed4bd37da7a214d5 SHA256: d79990af9dc965b9b747c016e77e0962a68445e60c04328dbe541b7fc0f9dd41 Description: Interact with the EFI Boot Manager Description-md5: 88166155034b3db745bdc7b3f0220152 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: eglibc-source Priority: optional Section: devel Installed-Size: 24686 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: all Source: eglibc Version: 2.19-0ubuntu6 Recommends: xz-utils Filename: pool/main/e/eglibc/eglibc-source_2.19-0ubuntu6_all.deb Size: 13968406 MD5sum: da6133c140473f1b230e988085ff6e88 SHA1: 51d8c1432c962658b8f27caf17e11977698ddca1 SHA256: 29918417d44eed0032da07efa4cb3755fad542ab1beb662cdab933925042e4df Description: Embedded GNU C Library: sources Multi-Arch: foreign Homepage: http://www.eglibc.org Description-md5: e4d1c2960e50de66688b8a889117873c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: eject Priority: important Section: utils Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Frank Lichtenheld Architecture: i386 Version: 2.1.5+deb1+cvs20081104-13.1 Depends: libc6 (>= 2.8), libdevmapper1.02.1 (>= 2:1.02.20) Suggests: cdtool, setcd Filename: pool/main/e/eject/eject_2.1.5+deb1+cvs20081104-13.1_i386.deb Size: 22818 MD5sum: 3016538df17cf9dd317d7c1fe74165a5 SHA1: 3d48dac76f19eb51db07b0ed1fc9257c6ab0e32e SHA256: f84fed1854d85c7c1e4e9352685393013c26469341ea6f673d5b2f7435d985b5 Description: ejects CDs and operates CD-Changers under Linux Multi-Arch: foreign Homepage: http://www.pobox.com/~tranter/eject.html Description-md5: 9a5f66fd7e4bca3deeb3357f3e927ab3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: elks-libc Priority: optional Section: devel Installed-Size: 651 Maintainer: Ubuntu Developers Original-Maintainer: Juan Cespedes Architecture: all Source: linux86 Version: 0.16.17-3.1ubuntu3 Replaces: bcc (<< 0.14.9), linux86 Recommends: bcc (= 0.16.17-3.1ubuntu3) Conflicts: linux86 Filename: pool/main/l/linux86/elks-libc_0.16.17-3.1ubuntu3_all.deb Size: 214574 MD5sum: 75d87d8c2c906579ec84624fff93d76d SHA1: 5cd6d3b9c5a881ad5fcdcffbd5a075761b017731 SHA256: 57bee73becbeae5dc2bc4cd859c13dc065e4a49472d876225e3e37fd6538feb2 Description: 16-bit x86 C library and include files Description-md5: 2da04d6881989db1f4a11df4a992c06f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: emacs Priority: optional Section: editors Installed-Size: 25 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Source: emacs-defaults Version: 45.0ubuntu1 Depends: emacs24 | emacs24-lucid | emacs24-nox Filename: pool/main/e/emacs-defaults/emacs_45.0ubuntu1_all.deb Size: 1624 MD5sum: 2648ac76d7058d4a722ae304e474aa06 SHA1: 6667aaf3b043b44f10271b943dbb9dbb9620dbf2 SHA256: cb9185c543841971a754ebf8c6a35396c865171532b407dce5b5447c41cfa232 Description: GNU Emacs editor (metapackage) Description-md5: 21fb7da111336097a2378959f6d6e6a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: emacs-goodies-el Priority: optional Section: editors Installed-Size: 3508 Maintainer: Ubuntu Developers Original-Maintainer: Peter S Galbraith Architecture: all Version: 35.8ubuntu2 Replaces: emacs-goodies-extra-el Provides: emacs-goodies-extra-el Depends: emacs24 | emacsen, bash (>= 2.05a) | bash-static, dpkg (>= 1.15.4) | install-info Recommends: dict, wget, perl-doc Filename: pool/main/e/emacs-goodies-el/emacs-goodies-el_35.8ubuntu2_all.deb Size: 654048 MD5sum: 47d0361a8edf728c0d14750fc0d93f2f SHA1: 660e1244966fae845e15f01314a40c18e0f1ef40 SHA256: ff8ce718940efcd3a9cf6949e9514951976eb6b18f4914333e84343869cf2e15 Description: Miscellaneous add-ons for Emacs Description-md5: ecf648ccbfa7121d2a087f7d0fdab229 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: emacs24 Priority: optional Section: editors Installed-Size: 11322 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: i386 Version: 24.3+1-2ubuntu1 Replaces: emacs24-lucid, emacs24-nox Provides: editor, emacsen, info-browser, mail-reader, news-reader Depends: emacs24-bin-common (= 24.3+1-2ubuntu1), gconf-service, libasound2 (>= 1.0.16), libc6 (>= 2.15), libcairo2 (>= 1.2.4), libdbus-1-3 (>= 1.5.12), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgif4 (>= 4.1.4), libglib2.0-0 (>= 2.37.3), libgnutls26 (>= 2.12.17-0), libgpm2 (>= 1.20.4), libgtk-3-0 (>= 3.2.1), libice6 (>= 1:1.0.0), libjpeg8 (>= 8c), libm17n-0 (>= 1.6.1), libmagickcore5 (>= 8:6.7.7.10), libmagickwand5 (>= 8:6.7.7.10), libotf0 (>= 0.9.11), libpango-1.0-0 (>= 1.18.0), libpng12-0 (>= 1.2.13-4), librsvg2-2 (>= 2.14.4), libselinux1 (>= 1.32), libsm6, libtiff5 (>= 4.0.3), libtinfo5, libx11-6, libxft2 (>> 2.1.1), libxml2 (>= 2.7.4), libxpm4, libxrender1 Conflicts: emacs24-lucid, emacs24-nox Filename: pool/main/e/emacs24/emacs24_24.3+1-2ubuntu1_i386.deb Size: 2859246 MD5sum: 797bbdfb9e541d8bfb2f773d2f6d0f58 SHA1: d063efc234d3de412c380f859acccef505b96266 SHA256: 75aac5f428249194a4cb606eb43d3c5143fafbdeddc1054947291400f33f9362 Description: GNU Emacs editor (with GTK+ user interface) Homepage: http://www.gnu.org/software/emacs/ Description-md5: ac8913ffe24029ae506e2840dc7a29da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: emacs24-bin-common Priority: optional Section: editors Installed-Size: 396 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: i386 Source: emacs24 Version: 24.3+1-2ubuntu1 Depends: emacs24-common (= 24.3+1-2ubuntu1), libc6 (>= 2.17), liblockfile1 (>= 1.0) Filename: pool/main/e/emacs24/emacs24-bin-common_24.3+1-2ubuntu1_i386.deb Size: 96516 MD5sum: 55b0b3c2e727798e35250928100abafe SHA1: c031c903d20501f8590badbecd0f2cf82a6f00a5 SHA256: a24aa4a0a645e6970059a7511ec334b8660c45220a685f8aa3e603f8f6c178a3 Description: GNU Emacs editor's shared, architecture dependent files Homepage: http://www.gnu.org/software/emacs/ Description-md5: 5ff3152634868791fef583ffea47e2ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: emacs24-common Priority: optional Section: editors Installed-Size: 62997 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Source: emacs24 Version: 24.3+1-2ubuntu1 Depends: emacsen-common (>= 1.4.10), dpkg (>= 1.15.4) | install-info, emacs24-common-non-dfsg Suggests: emacs24-el Conflicts: cedet, eieio, emacs24-el (<< 24.3+1-2ubuntu1), speedbar Filename: pool/main/e/emacs24/emacs24-common_24.3+1-2ubuntu1_all.deb Size: 13714576 MD5sum: 9495eedb7a75080e7c8a667dbaa939b1 SHA1: 1fe23bd8a96553c997869b1c1b348385b71a3fe8 SHA256: de1c8b7cd1fd80ba561d3772e71e190674638e61fec06c4e2bdcbfe5dda95758 Description: GNU Emacs editor's shared, architecture independent infrastructure Homepage: http://www.gnu.org/software/emacs/ Description-md5: 6a12ee1a523f1f778a591101a037892d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: emacs24-common-non-dfsg Priority: optional Section: editors Installed-Size: 4481 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Source: emacs24-non-dfsg Version: 24.3+1-1 Replaces: emacs22-common (<< 22.2) Depends: dpkg (>= 1.15.4) | install-info Conflicts: emacs22-common (<< 22.2) Filename: pool/main/e/emacs24-non-dfsg/emacs24-common-non-dfsg_24.3+1-1_all.deb Size: 4420980 MD5sum: b46d6f1d6adb20d6133f91a9d967ba23 SHA1: bae1325aa44d1e62cf360849005090a734b731b2 SHA256: e41bdd38edb58c3e25085932d830b223908b2ae0edc17552c994d4badf11e0f0 Description: GNU Emacs common non-DFSG items, including the core documentation Description-md5: 4ec84c62d4d6533d9f6a093fa1157b61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: emacs24-dbg Priority: extra Section: debug Installed-Size: 3289 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: i386 Source: emacs24 Version: 24.3+1-2ubuntu1 Filename: pool/main/e/emacs24/emacs24-dbg_24.3+1-2ubuntu1_i386.deb Size: 3036802 MD5sum: ec92c6ff5b1d11fb0ecf018f593e44f2 SHA1: 40f2211a415efbc08f7ac6765e8ad674d42f3773 SHA256: 86a714487716c1b400d442a620dea5316d4b363d3019330851903eb9b693cf80 Description: Debugging symbols for emacs24 Homepage: http://www.gnu.org/software/emacs/ Description-md5: 925a29ce071ba7bede24b5e8a656e2b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: emacs24-el Priority: optional Section: editors Installed-Size: 14443 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Source: emacs24 Version: 24.3+1-2ubuntu1 Depends: emacs24-common (= 24.3+1-2ubuntu1) Filename: pool/main/e/emacs24/emacs24-el_24.3+1-2ubuntu1_all.deb Size: 14786502 MD5sum: a7a3eba27a356cfa17c8dbf07d83601c SHA1: 5a339c8fa88747af0de41b16f6b63205634ac888 SHA256: 3181357118216d470e36802e5252979dc0c675fc44851adfeb52020c0ba54e23 Description: GNU Emacs LISP (.el) files Homepage: http://www.gnu.org/software/emacs/ Description-md5: 293759cc44e4faeb7e4ad6e292cf8c63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: emacs24-lucid-dbg Priority: extra Section: debug Installed-Size: 3302 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: i386 Source: emacs24 Version: 24.3+1-2ubuntu1 Filename: pool/main/e/emacs24/emacs24-lucid-dbg_24.3+1-2ubuntu1_i386.deb Size: 3053750 MD5sum: 89482748e0cdad368c82f700d56465bd SHA1: 59b794152750295398ca981f8826df442b67d3e3 SHA256: 964d158a8d34ef4f6d3d90459b20f7f37a4501466b58345186bbb6d3c8c250f6 Description: Debugging symbols for emacs24-lucid Homepage: http://www.gnu.org/software/emacs/ Description-md5: 169d344d01c40efc75f57d32fba2d5eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: emacs24-nox Priority: optional Section: editors Installed-Size: 10105 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: i386 Source: emacs24 Version: 24.3+1-2ubuntu1 Replaces: emacs24, emacs24-lucid Provides: editor, emacs24, emacsen, info-browser, mail-reader, news-reader Depends: emacs24-bin-common (= 24.3+1-2ubuntu1), libasound2 (>= 1.0.16), libc6 (>= 2.15), libdbus-1-3 (>= 1.5.12), libgnutls26 (>= 2.12.17-0), libgpm2 (>= 1.20.4), libselinux1 (>= 1.32), libtinfo5, libxml2 (>= 2.7.4) Conflicts: emacs24, emacs24-lucid Filename: pool/main/e/emacs24/emacs24-nox_24.3+1-2ubuntu1_i386.deb Size: 2518466 MD5sum: 6be148acbc28a7237cdb142186891720 SHA1: a0e30901a6c6fd08c47d1109bbaa01eba498184c SHA256: e5b42245fc44df26d740ab266173907b823e8c61d3b047d1a99780b638c7fa11 Description: GNU Emacs editor (without X support) Homepage: http://www.gnu.org/software/emacs/ Description-md5: 266bc7f40cce319d43c2bee556304f6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: emacs24-nox-dbg Priority: extra Section: debug Installed-Size: 2326 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: i386 Source: emacs24 Version: 24.3+1-2ubuntu1 Filename: pool/main/e/emacs24/emacs24-nox-dbg_24.3+1-2ubuntu1_i386.deb Size: 2104526 MD5sum: 1397accad45a2f4cb5f95df00785370b SHA1: d786b6b331d514d400c228674009c76a73cf2f92 SHA256: 380a494e90e5860bd52886e1ef7c7296879f4951866016c45678582d1a70587d Description: Debugging symbols for emacs24-nox Homepage: http://www.gnu.org/software/emacs/ Description-md5: 4389abe1e6662a2323ce69ab7cf9f2c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: emacsen-common Priority: optional Section: editors Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Version: 2.0.7 Filename: pool/main/e/emacsen-common/emacsen-common_2.0.7_all.deb Size: 17136 MD5sum: cd6d92d1f1fc4168a322adba7e980e12 SHA1: ea6a4dca015d0334cd9739de0f34dc9f52739ba2 SHA256: 509dd1c460038cdc7e7646533dc9ab48599c4ba046420bf24dc106938947fb25 Description: Common facilities for all emacsen Description-md5: 181ad2d7eef0b855d8f6d9bbf2373d8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: empathy Priority: optional Section: gnome Installed-Size: 2764 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Version: 3.8.6-0ubuntu9 Replaces: empathy-call, libempathy-gtk-common Provides: empathy-call Depends: libaccounts-glib0 (>= 1.0), libc6 (>= 2.7), libcairo2 (>= 1.2.4), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libcheese-gtk23 (>= 3.4.0), libclutter-1.0-0 (>= 1.10.0), libclutter-gst-2.0-0 (>= 0.10.0), libclutter-gtk-1.0-0 (>= 1.4), libcogl15 (>= 1.15.8), libdbus-glib-1-2 (>= 0.88), libenchant1c2a (>= 1.6.0), libfarstream-0.2-2 (>= 0.1.91), libfolks-telepathy25 (>= 0.6.6), libfolks25 (>= 0.7.3), libgcr-base-3-1 (>= 3.8.0), libgcr-ui-3-1 (>= 3.8.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libgee-0.8-2 (>= 0.8.3), libgeoclue0 (>= 0.11.1+git20091217), libglib2.0-0 (>= 2.37.3), libgnutls26 (>= 2.12.17-0), libgoa-1.0-0b (>= 3.5.1), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.5.1), libgudev-1.0-0 (>= 146), libido3-0.1-0 (>= 0.1.8), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.18.0), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), libsecret-1-0 (>= 0.7), libsignon-glib1 (>= 1.1), libsoup2.4-1 (>= 2.4.0), libtelepathy-farstream3 (>= 0.6.0), libtelepathy-glib0 (>= 0.19.9), libtelepathy-logger3 (>= 0.8.0), libunity9 (>= 3.4.6), libwebkitgtk-3.0-0 (>= 1.3.10), libx11-6, libxml2 (>= 2.7.4), dconf-gsettings-backend | gsettings-backend, empathy-common (= 3.8.6-0ubuntu9), telepathy-mission-control-5 (>= 1:5.12.0), gsettings-desktop-schemas, gnome-icon-theme (>= 2.30.0), geoclue, telepathy-logger (>= 0.2.13), dbus-x11, gstreamer1.0-pulseaudio Recommends: telepathy-gabble, telepathy-salut, telepathy-haze, gvfs-backends, gnome-contacts, mcp-account-manager-uoa | mcp-account-manager-goa, nautilus-sendto-empathy, sound-theme-freedesktop Suggests: vino, telepathy-idle Conflicts: empathy-call Filename: pool/main/e/empathy/empathy_3.8.6-0ubuntu9_i386.deb Size: 569860 MD5sum: ba6bb4b0c22c5884899df81db9f8cea6 SHA1: 96743bce98db2e73cc9fd7ce5d78723f8b59fec2 SHA256: 0da34fae0b78c1365deae3f01ee96e475b657f67ea9ada50bd0b788b759032d5 Description: GNOME multi-protocol chat and call client Homepage: http://wiki.gnome.org/Empathy Description-md5: 3de154866a0cfb4298a6b2fcadb16cac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: empathy-common Priority: optional Section: gnome Installed-Size: 4868 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: empathy Version: 3.8.6-0ubuntu9 Replaces: empathy (<< 2.27.92), empathy-doc, libempathy-common, libempathy-gtk-common Provides: empathy-doc, libempathy-common, libempathy-gtk-common Recommends: yelp Conflicts: empathy-doc, libempathy-common, libempathy-gtk-common Filename: pool/main/e/empathy/empathy-common_3.8.6-0ubuntu9_all.deb Size: 1518984 MD5sum: 5f8ec7f0d294362b7197cc0f268f11df SHA1: dbbf73dc6045bc212f175ccb68c22f2c50432b49 SHA256: 4e5aa6f6ad22c7a643a8ac201e49ba426ab2357dd4aefee0f72062ef1b95638e Description: GNOME multi-protocol chat and call client (common files) Homepage: http://wiki.gnome.org/Empathy Description-md5: 8058f46e415708e37ee31059dfde834a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: empathy-dbg Priority: extra Section: debug Installed-Size: 6144 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: empathy Version: 3.8.6-0ubuntu9 Depends: empathy (= 3.8.6-0ubuntu9) Filename: pool/main/e/empathy/empathy-dbg_3.8.6-0ubuntu9_i386.deb Size: 1502760 MD5sum: 1098820c8a88189a680ddbadbd1d7d3a SHA1: 68271e9e5e2fd1578d2f993f3b31837ec910f17d SHA256: 55918f21dab63e8db25e2aa2496ef2577473bbeb44fd2fbb169e242c89a4571a Description: GNOME multi-protocol chat and call client (debug symbols) Homepage: http://wiki.gnome.org/Empathy Description-md5: 10c077168b23f9e2baf359b50747ddb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: enchant Priority: optional Section: text Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Prach Pongpanich Architecture: i386 Version: 1.6.0-10ubuntu1 Replaces: libenchant1c2a (<< 1.6.0-4) Depends: libc6 (>= 2.3.6-6~), libenchant1c2a (>= 1.6.0), libglib2.0-0 (>= 2.12.0) Breaks: libenchant1c2a (<< 1.6.0-4) Filename: pool/main/e/enchant/enchant_1.6.0-10ubuntu1_i386.deb Size: 11804 MD5sum: 3f753b0cc89c0d74fe9662ec0fb293ad SHA1: 4b2a26eaa6995a3299bc601e0cd974106034a6cb SHA256: c4de20b57e61b0bc2af08a174f90c85dc3189a18525189521f74fea2d1b65f2f Description: Wrapper for various spell checker engines (binary programs) Homepage: http://www.abisource.com/projects/enchant/ Description-md5: 468849838461717319f3b939b17d0750 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: eog Priority: optional Section: gnome Installed-Size: 2720 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.10.2-0ubuntu5 Replaces: gir1.2-eog-3.0 Depends: libatk1.0-0 (>= 1.32.0-2~), libc6 (>= 2.11), libcairo2 (>= 1.10.0), libexempi3 (>= 2.2.0), libexif12, libgdk-pixbuf2.0-0 (>= 2.22.0), libgirepository-1.0-1 (>= 0.9.3), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.2.0), libgrip0 (>= 0.1.0), libgtk-3-0 (>= 3.7.8), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libpeas-1.0-0 (>= 1.0.0), librsvg2-2 (>= 2.36.2), libx11-6, libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4), dconf-gsettings-backend | gsettings-backend, gir1.2-gtk-3.0, gnome-icon-theme (>= 2.19.1), shared-mime-info (>= 0.20), gsettings-desktop-schemas (>= 2.91.92), gir1.2-peas-1.0 Recommends: librsvg2-common, yelp Conflicts: gir1.2-eog-3.0 Breaks: eog-plugins (<< 2.91) Filename: pool/main/e/eog/eog_3.10.2-0ubuntu5_i386.deb Size: 622634 MD5sum: f6a9bed5600815d0ac675cc5b1175f4c SHA1: 5b04893c9c4d504c166e49c732330c9b15a6a2b2 SHA256: d97bc48368c77cc55107df683697fcba7f667c6840cba16b61126d9ce1a6d859 Description: Eye of GNOME graphics viewer program Homepage: http://projects.gnome.org/eog Description-md5: a17b1b698fda7b280b8e85d7b08c5d27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: eog-dbg Priority: extra Section: gnome Installed-Size: 1740 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: eog Version: 3.10.2-0ubuntu5 Depends: eog (= 3.10.2-0ubuntu5) Filename: pool/main/e/eog/eog-dbg_3.10.2-0ubuntu5_i386.deb Size: 482306 MD5sum: f3556efc8df321d632fe7b0317b5b88c SHA1: f6c6f3d382eefc997a8b897c509f9db9d485d6e5 SHA256: 1355d77859df5888a0ab14b49fa3fabf9e3b190eca0a2135086bbe54712b9985 Description: Eye of GNOME graphics viewer program - debugging symbols Homepage: http://projects.gnome.org/eog Description-md5: 2bd18fd76c12144cf92a1f8244b4214a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: eog-dev Priority: optional Section: gnome Installed-Size: 1404 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: eog Version: 3.10.2-0ubuntu5 Depends: eog (>= 3.10.2-0ubuntu5), libgtk-3-dev (>= 3.0.0) Filename: pool/main/e/eog/eog-dev_3.10.2-0ubuntu5_all.deb Size: 125822 MD5sum: 9c5f0a2226c2d60146d251fd0b24fc08 SHA1: c2e45623c329c9d3246335df6008b55c32de0148 SHA256: 6e04a84847c5c6fc8ddd50ac40e63888ad76acf49dcb78aae1e5efea636f0528 Description: Development files for the Eye of GNOME Homepage: http://projects.gnome.org/eog Description-md5: a1e8edcec2412e3deacc23f403c2195f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: eperl Priority: optional Section: devel Installed-Size: 303 Maintainer: Ubuntu Developers Original-Maintainer: Debian WML Packaging Team Architecture: i386 Version: 2.2.14-20build1 Depends: libc6 (>= 2.4), libperl5.18 (>= 5.18.1), perl (>= 5.18.1-4), perlapi-5.18.1 Suggests: libapache2-mod-perl2 Filename: pool/main/e/eperl/eperl_2.2.14-20build1_i386.deb Size: 114694 MD5sum: f2da5d1f825c0b0b84e7f7de7628fec4 SHA1: 5f1308d2de770fa11e4e7d64e3d233f271ada599 SHA256: 1d0d5abc614c38e7361c2fe92d460dc39940b22d06d0015c58d21992e7e45ed7 Description: Embedded Perl 5 Language Homepage: http://www.ossp.org/pkg/tool/eperl/ Description-md5: 8c031cf4d8b7bf7f078c7b2aac563af3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: epydoc-doc Priority: optional Section: doc Installed-Size: 14114 Maintainer: Ubuntu Developers Original-Maintainer: Kenneth J. Pronovici Architecture: all Source: epydoc Version: 3.0.1+dfsg-4 Recommends: iceweasel | www-browser Filename: pool/main/e/epydoc/epydoc-doc_3.0.1+dfsg-4_all.deb Size: 905442 MD5sum: 4f974688ea6b89954421b72f8f4f1e47 SHA1: 4312feb01ddf1472a1f80b601e57cf5c0c38abd4 SHA256: 6899fda99bae523dfa271c3bd9ee02f6717f331489fe9afaba92a266a431b4fc Description: tool for documenting Python modules (documentation) Homepage: http://epydoc.sourceforge.net/ Description-md5: 62a87a5b5e1f848de8ae6118f6c98253 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-asn1 Priority: optional Section: interpreters Installed-Size: 1110 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.1.3) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-asn1_16.b.3-dfsg-1ubuntu2_i386.deb Size: 737568 MD5sum: 1838883b7f1b190b0e03a365cc3dc984 SHA1: 9da259010da7154863e5e50f667ab21bb7cbb198 SHA256: 362f0e7427bac492193ff84ab131523944c4837d9417987d53ba5b3ea04c624d Description: Erlang/OTP modules for ASN.1 support Homepage: http://www.erlang.org/ Description-md5: ee4d0b49672ea14e8a224f00c393a8c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-base Priority: optional Section: interpreters Installed-Size: 12266 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe, erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-doc-html (<< 1:13.b.4), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Provides: erlang-abi-15.b Depends: procps, libc6 (>= 2.14), libtinfo5, zlib1g (>= 1:1.2.3.3) Recommends: libsctp1 (>= 1.0.15+dfsg), erlang-crypto (= 1:16.b.3-dfsg-1ubuntu2), erlang-syntax-tools (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang-tools (= 1:16.b.3-dfsg-1ubuntu2), erlang, erlang-manpages, erlang-doc Conflicts: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe, erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-doc-html (<< 1:13.b.4), erlang-manpages (<= 1:11.b.1-2) Filename: pool/main/e/erlang/erlang-base_16.b.3-dfsg-1ubuntu2_i386.deb Size: 6458986 MD5sum: b10213e73015decec746a0c28b694678 SHA1: 3c91a65b08271fc777943dba451947348defd620 SHA256: 9dc61dc0acbfb6516454bd666c23104c47214ea161462b480a39e6e174445237 Description: Erlang/OTP virtual machine and base applications Homepage: http://www.erlang.org/ Description-md5: eb27cf1ed982601f2dcb1802ba9d4396 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-corba Priority: optional Section: interpreters Installed-Size: 3467 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-inets (= 1:16.b.3-dfsg-1ubuntu2), erlang-mnesia (= 1:16.b.3-dfsg-1ubuntu2), erlang-ssl (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-corba_16.b.3-dfsg-1ubuntu2_i386.deb Size: 2234444 MD5sum: 204cb0cf46f93c533aee934afaff9c1c SHA1: fe42e62e62fc623a808e6d3746eabeff49f5ec48 SHA256: 4ef4be3ec00ad21970144033f3f6b7f4e4a8a63be13045c6ea0095c07c150b52 Description: Erlang/OTP applications for CORBA support Homepage: http://www.erlang.org/ Description-md5: f04931348634fb479d846559ba5c94f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-crypto Priority: optional Section: interpreters Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-crypto_16.b.3-dfsg-1ubuntu2_i386.deb Size: 70008 MD5sum: 8f0c271e3a8f55fb98895906aff7a4f0 SHA1: 7eec0e9c63961832485c941327db30c3a628d001 SHA256: e532d49c4bf27498ecfe938a201847ad24b1bd3143c6cce06880c597b3d82cc6 Description: Erlang/OTP cryptographic modules Homepage: http://www.erlang.org/ Description-md5: 6d6a5e48deb89695b61d6380e84e7e95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-dbg Priority: extra Section: debug Installed-Size: 14993 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-dbg_16.b.3-dfsg-1ubuntu2_i386.deb Size: 3717312 MD5sum: 4dcb9d6c3b438ef5174fe56df7a06bb4 SHA1: 8bd8f653fede031a224641f7d438cd8f31836a0c SHA256: fa123797eb93c911ca691c530e4f7412b140e3d58bea85c98c233efd085f97b1 Description: Erlang/OTP symbol files Homepage: http://www.erlang.org/ Description-md5: e54a8e24d35ee5c70df6691a7e605b6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-dev Priority: optional Section: interpreters Installed-Size: 3667 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-dev_16.b.3-dfsg-1ubuntu2_i386.deb Size: 324748 MD5sum: 4efca0ad8184b3f58bbf5f8289e05488 SHA1: aa328048018a13bd36727c4e859e0f63cd18b228 SHA256: 2a95a443f5a9f08c140fa1392d23383624fe8977b43f016755a3f34c085bf25b Description: Erlang/OTP development libraries and headers Homepage: http://www.erlang.org/ Description-md5: 023eca40c938a81e31cb3d07fa28976e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-diameter Priority: optional Section: interpreters Installed-Size: 997 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2), erlang-ssl (= 1:16.b.3-dfsg-1ubuntu2), erlang-syntax-tools (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-diameter_16.b.3-dfsg-1ubuntu2_i386.deb Size: 599806 MD5sum: 99c48dd707179e126b36ec0c2501279e SHA1: a4647a24e49df3d97cf9850ee2c09f36dbef0a6d SHA256: bd6e1f59167da5f04233e6c6ee2dcd7af0dfecffaa616c33ced1639ecfdb654a Description: Erlang/OTP implementation of RFC 6733 protocol Homepage: http://www.erlang.org/ Description-md5: 42a0b30fc825ef17d696ef8100828e2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-doc Priority: optional Section: doc Installed-Size: 157368 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: all Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang-doc-html Provides: erlang-doc-html Suggests: erlang Conflicts: erlang-base (<< 1:13.b.4), erlang-base-hipe (<< 1:13.b.4), erlang-doc-html Filename: pool/main/e/erlang/erlang-doc_16.b.3-dfsg-1ubuntu2_all.deb Size: 16673206 MD5sum: bdfa86202701b32ca90d603e8a6f0b27 SHA1: 6a40b2b4b55e8c3d7f27789f947a8389a088316d SHA256: ce482083b9c4e951e522f5f04ced7ae58bbc5ae94836810465bbe0c3682dfa3c Description: Erlang/OTP HTML/PDF documentation Homepage: http://www.erlang.org/ Description-md5: d151a4898d82d984d031d1b1e1366eea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-edoc Priority: optional Section: interpreters Installed-Size: 512 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-inets (= 1:16.b.3-dfsg-1ubuntu2), erlang-syntax-tools (= 1:16.b.3-dfsg-1ubuntu2), erlang-xmerl (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-edoc_16.b.3-dfsg-1ubuntu2_i386.deb Size: 298470 MD5sum: 79bb88b2f1e7eda0326915963c5e810d SHA1: 2812054b904b079360dc43de220b41227884635f SHA256: 73ccf8b87aaed9cc5d32cd10f1a99316cf3b239563793b0a9ea5ce2944a639e2 Description: Erlang/OTP module for generating documentation Homepage: http://www.erlang.org/ Description-md5: a3f918489b4ca4cd8e396c420e04b999 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-eldap Priority: optional Section: interpreters Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-asn1 (= 1:16.b.3-dfsg-1ubuntu2), erlang-ssl (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-eldap_16.b.3-dfsg-1ubuntu2_i386.deb Size: 91880 MD5sum: 03729e7db4928795cf88ef9a5873125d SHA1: 7517800578fb6f2c8fd958237aa8697d0c650feb SHA256: efc7de0e81b05e31d6f0c6347aa427f013071fc9385ef5e466441742e726b0d0 Description: Erlang/OTP LDAP library Homepage: http://www.erlang.org/ Description-md5: 84192ee472dc7261422d95bd91233523 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-erl-docgen Priority: optional Section: interpreters Installed-Size: 631 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-edoc (= 1:16.b.3-dfsg-1ubuntu2), erlang-xmerl (= 1:16.b.3-dfsg-1ubuntu2) Suggests: xsltproc, fop, erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-erl-docgen_16.b.3-dfsg-1ubuntu2_i386.deb Size: 134178 MD5sum: 01c48ec676bdb2ab4681c3198e90f435 SHA1: 3acd13cb357ed446bb5392309d96d74d1e8b8a80 SHA256: c0cba6639cb4c410616a47d27ac6b70da549cbc83adb75cadca232fcf9825729 Description: Erlang/OTP documentation stylesheets Homepage: http://www.erlang.org/ Description-md5: 5f30cb8c9d86134a3ac21b268d81d997 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-eunit Priority: optional Section: interpreters Installed-Size: 290 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-eunit_16.b.3-dfsg-1ubuntu2_i386.deb Size: 136972 MD5sum: 2e6342ad1efb0d6a0dbf00139ccbe792 SHA1: 49887ceb1a4489d9ecc360e73109f420ceda5b12 SHA256: 5cb99e4d0dc7e8d9ae1e367e05196aa95e2d5706e473a8866f679f576d68cf58 Description: Erlang/OTP module for unit testing Homepage: http://www.erlang.org/ Description-md5: 559493af07c14e28bf56267ccbd871a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-examples Priority: optional Section: interpreters Installed-Size: 2631 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: all Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (>= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (>= 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2.0) | erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2.0) Recommends: erlang-asn1, erlang-crypto, erlang-gs, erlang-inets, erlang-megaco, erlang-snmp, erlang-ssh, erlang-ssl, erlang-syntax-tools Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-examples_16.b.3-dfsg-1ubuntu2_all.deb Size: 1014900 MD5sum: 2ec7f9b3ca831e31d860eeb4009832ce SHA1: f546884c1cbd8428baa56275c12dbd8e397c25c8 SHA256: cc4c6c7340e7a82b93b38ef0c8be1d7c11a3841d2d9531cd45e2f6b15851c6ff Description: Erlang/OTP application examples Homepage: http://www.erlang.org/ Description-md5: 7fd4d1d18889e4d971a860ea2e41b36b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-gs Priority: optional Section: interpreters Installed-Size: 1068 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), tk | wish Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-gs_16.b.3-dfsg-1ubuntu2_i386.deb Size: 578838 MD5sum: e0716204a90275de634339935ae33595 SHA1: 07430c6ca43d28268e601890cfd8aee55398091d SHA256: 581022692240154db6d071f463b7bc9819a1e878de3e438e70345fd80953aae3 Description: Erlang/OTP graphics system Homepage: http://www.erlang.org/ Description-md5: e52ca1e4bb6bd044a046027c91209d06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-ic Priority: optional Section: interpreters Installed-Size: 1223 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang-ic-java, erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-ic_16.b.3-dfsg-1ubuntu2_i386.deb Size: 818348 MD5sum: 9ef0d505dc2a678dd8d3e853c2a7ae39 SHA1: dc8c69ff04d3006bf20fbb1b884157b55f8fd23f SHA256: 656e9c9d218bef349e418d684080571e9e39df1795766c24f753e211d42678a0 Description: Erlang/OTP IDL compiler Homepage: http://www.erlang.org/ Description-md5: e0dcaf593d7a257b63b65fed1429bb17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-inets Priority: optional Section: interpreters Installed-Size: 1177 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-mnesia (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2), erlang-ssl (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-inets_16.b.3-dfsg-1ubuntu2_i386.deb Size: 752998 MD5sum: 46486d284610e62714976e2069f4485f SHA1: f2bbb9c14485be81e2a77c3fd4f2168ba003dc64 SHA256: 96a0ce93d566106eea19934353ddebf24614b90f59bcbb7423ce8842b8aee756 Description: Erlang/OTP Internet clients and servers Homepage: http://www.erlang.org/ Description-md5: 57f5c22cbb30db3a06eef4cd25d47c34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-megaco Priority: optional Section: interpreters Installed-Size: 9175 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-asn1 (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.3) Suggests: erlang-debugger (= 1:16.b.3-dfsg-1ubuntu2), erlang-et (= 1:16.b.3-dfsg-1ubuntu2), erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-megaco_16.b.3-dfsg-1ubuntu2_i386.deb Size: 5333258 MD5sum: 0bc73acb3b0c3b49514638dfcfda362b SHA1: db1e677093ab708bd3e0dcdba5e6e105213b5574 SHA256: 12db1f3a11e2338a25c10ce57d8936d3c1b4ecd52ef57cee284e8fb07beb5106 Description: Erlang/OTP implementation of Megaco/H.248 protocol Homepage: http://www.erlang.org/ Description-md5: 690fb9316fd0c68e524cdd808aa967b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-mnesia Priority: optional Section: interpreters Installed-Size: 992 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-mnesia_16.b.3-dfsg-1ubuntu2_i386.deb Size: 657764 MD5sum: 3d0cf23d7086fa33879c98688fc602fa SHA1: 21d0ae07d8a9ea390b1eef0438c5683117a696c5 SHA256: 808ef2f7659ba463550c1522ad9467b31dad3603c3b245ce1111fcc17949f596 Description: Erlang/OTP distributed relational/object hybrid database Homepage: http://www.erlang.org/ Description-md5: 48d2214e21e1f80fbec2f00309f8406f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-nox Priority: optional Section: interpreters Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: all Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Depends: erlang-base | erlang-base-hipe, erlang-asn1, erlang-corba, erlang-crypto, erlang-diameter, erlang-edoc, erlang-eldap, erlang-erl-docgen, erlang-eunit, erlang-ic, erlang-inets, erlang-mnesia, erlang-odbc, erlang-os-mon, erlang-parsetools, erlang-percept, erlang-public-key, erlang-runtime-tools, erlang-snmp, erlang-ssh, erlang-ssl, erlang-syntax-tools, erlang-tools, erlang-webtool, erlang-xmerl Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-nox_16.b.3-dfsg-1ubuntu2_all.deb Size: 17596 MD5sum: 1c856c31318475610bb103e0d4749678 SHA1: ef07c7119f93386ffb85ff25f02d0830d4820428 SHA256: 1cf1322a6bad7e9c8c45f7490f4d6f771997dbcd9b712a0e8b392bc76f8435b1 Description: Erlang/OTP applications that don't require X Window System Homepage: http://www.erlang.org/ Description-md5: 7a788b312a01454a03fd4262bf827fcd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-odbc Priority: optional Section: interpreters Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.7), libodbc1 (>= 2.2.11) | unixodbc (>= 2.2.11) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-odbc_16.b.3-dfsg-1ubuntu2_i386.deb Size: 50486 MD5sum: 13bbbf9f9839ffd30987f745d81d46b3 SHA1: 20907d75a67147975715426ff1cf295d89b2b624 SHA256: 10a425330dfb6e6cdfb93e3b445a8bd3a22098f189203a8d406a9d744ce5f233 Description: Erlang/OTP interface to SQL databases Homepage: http://www.erlang.org/ Description-md5: 8fb16205445a0b6f3190216580f2428d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-os-mon Priority: optional Section: interpreters Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-mnesia (= 1:16.b.3-dfsg-1ubuntu2), erlang-snmp (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.4) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-os-mon_16.b.3-dfsg-1ubuntu2_i386.deb Size: 94736 MD5sum: 115cf6f6981dfab7140a4f105b628ec7 SHA1: 39f53dc120ae469c4ce1e5c674adf3355eec52e5 SHA256: 97153bc5127fee88cc26fd9f56179e7ac5330168b12a45e19a6142acfe64c809 Description: Erlang/OTP operating system monitor Homepage: http://www.erlang.org/ Description-md5: f8627add1b4145778041a638d379dc3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-parsetools Priority: optional Section: interpreters Installed-Size: 298 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-parsetools_16.b.3-dfsg-1ubuntu2_i386.deb Size: 156080 MD5sum: 7e5b7305a7da98189a2d7b2b14a04efe SHA1: 3490a38d2fb923d4c86a67495ab20ca6ae0164a5 SHA256: e1bbb08093c4b1f94688d8a506c3aedb20435005f541f515e8971021e1541063 Description: Erlang/OTP parsing tools Homepage: http://www.erlang.org/ Description-md5: 3e51e2f8676cdc2b45f2ac3d74b79580 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-percept Priority: optional Section: interpreters Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-inets (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-percept_16.b.3-dfsg-1ubuntu2_i386.deb Size: 136110 MD5sum: aff90d786872578bd1e93782512dad41 SHA1: bba1354f42788fdfac0b8e04952e180d13a914fd SHA256: 3d3c635861c794cbefc8afabd66b08be6d24c8892c138f4889cb58597886f106 Description: Erlang/OTP concurrency profiling tool Homepage: http://www.erlang.org/ Description-md5: c42515507b812528e2f0945482c60c14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-public-key Priority: optional Section: interpreters Installed-Size: 851 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-asn1 (= 1:16.b.3-dfsg-1ubuntu2), erlang-crypto (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-public-key_16.b.3-dfsg-1ubuntu2_i386.deb Size: 497102 MD5sum: 7dd2836159f7ab0745de883b8595b73f SHA1: 375259b03a85d2512905b7abe03ad0a421938aa0 SHA256: 46dd481b77e7e337862745d209f507e5347c211d7aee9e98ccb758890ad2c211 Description: Erlang/OTP public key infrastructure Homepage: http://www.erlang.org/ Description-md5: e10bb8263805ad3875bec38b249b88db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-runtime-tools Priority: optional Section: interpreters Installed-Size: 377 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-mnesia (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.4) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-runtime-tools_16.b.3-dfsg-1ubuntu2_i386.deb Size: 157210 MD5sum: 90b5de9abd1473f4f3511b4d524a60e4 SHA1: e8955c4213050dddad52a17cb97e8e44e6ff928c SHA256: 69d1ab5ab57f6d8fc9342921b892e793bb680f7a63a9c4ab5676e0507fa65c92 Description: Erlang/OTP runtime tracing/debugging tools Homepage: http://www.erlang.org/ Description-md5: a0448be753203ae3013367e215bb963c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-snmp Priority: optional Section: interpreters Installed-Size: 2876 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-crypto (= 1:16.b.3-dfsg-1ubuntu2), erlang-mnesia (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-snmp_16.b.3-dfsg-1ubuntu2_i386.deb Size: 1497010 MD5sum: 47633f0eb25616d3146c09a7cd40a446 SHA1: dd73de9fafc8a896c356a15fa0b3459c17c95acf SHA256: bd746df51c24f01b8e538523687b9e23f3dfd8733586bac2c95968c9f74b8c0f Description: Erlang/OTP SNMP applications Homepage: http://www.erlang.org/ Description-md5: dfb924f9e0e51a8acfd28878335946b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-src Priority: optional Section: interpreters Installed-Size: 48015 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: all Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-erl-docgen (<< 1:16.b.3-dfsg-1ubuntu2), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (>= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (>= 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2.0) | erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2.0) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-src_16.b.3-dfsg-1ubuntu2_all.deb Size: 5464252 MD5sum: 0e4b975000abdf44aabd71a164f1d5fe SHA1: d2657e6975c7bd845a6814edb9b82233d8b166b7 SHA256: fcc309446e8207176c578343d644631ea0c2774ec297f6c7fa2782dc73892a41 Description: Erlang/OTP applications sources Homepage: http://www.erlang.org/ Description-md5: 6a6a52b3019a4fbd9d35a8cde25c0477 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: erlang-ssh Priority: optional Section: interpreters Installed-Size: 580 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-crypto (= 1:16.b.3-dfsg-1ubuntu2), erlang-public-key (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-ssh_16.b.3-dfsg-1ubuntu2_i386.deb Size: 361632 MD5sum: f7a137453c010757e4c9a3ca029f9943 SHA1: 858700092e9ee046180fae4d3eb461f678d06ee5 SHA256: 6fbe9acb6cadcf0e196241c421e4597e2a8afac0b059844be03e8d06cc0c936a Description: Erlang/OTP implementation of SSH protocol Homepage: http://www.erlang.org/ Description-md5: 2ab50c8973bb765ccc1c37f7e496762f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-ssl Priority: optional Section: interpreters Installed-Size: 762 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-crypto (= 1:16.b.3-dfsg-1ubuntu2), erlang-public-key (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-ssl_16.b.3-dfsg-1ubuntu2_i386.deb Size: 558220 MD5sum: 71c9684bb153f1790ce031848e5cf70b SHA1: eaa231c2395e4036174eab12c1e573d3cf22c52e SHA256: 94bdd9d7034a2fc2942ac57365e822c67921b92bea40d9160c9290fe7b37b5b2 Description: Erlang/OTP implementation of SSL Homepage: http://www.erlang.org/ Description-md5: 15c091acf332c7d47a15da19885fdc6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-syntax-tools Priority: optional Section: interpreters Installed-Size: 497 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-syntax-tools_16.b.3-dfsg-1ubuntu2_i386.deb Size: 289044 MD5sum: 65f1cc2f496c5ea9cd79002dc1351a2c SHA1: 39447dcff635fd60fd7dfe0de4e7b90fbb62904e SHA256: 87b0615ae739f22aeaeb72848383274d6236e0c8ca7651d9277f6c0ec2419fd2 Description: Erlang/OTP modules for handling abstract Erlang syntax trees Homepage: http://www.erlang.org/ Description-md5: 734d87e62fdb69e61b39974407f3d15f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-tools Priority: optional Section: interpreters Installed-Size: 1140 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-inets (= 1:16.b.3-dfsg-1ubuntu2), erlang-runtime-tools (= 1:16.b.3-dfsg-1ubuntu2), erlang-webtool (= 1:16.b.3-dfsg-1ubuntu2), libc6 (>= 2.4) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-tools_16.b.3-dfsg-1ubuntu2_i386.deb Size: 504192 MD5sum: 7907c1b0d7070915cec5b8e9d4779a43 SHA1: 1410053c84223f015e531b056e8dde79ef030138 SHA256: 1523b755f2534913b0c4170329c4eebe83cf945f78711aeccaaf4c8524e69729 Description: Erlang/OTP various tools Homepage: http://www.erlang.org/ Description-md5: 4285755cbac612fc7f4013b85cae332f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-webtool Priority: optional Section: interpreters Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2), erlang-inets (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang-observer (= 1:16.b.3-dfsg-1ubuntu2), erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-webtool_16.b.3-dfsg-1ubuntu2_i386.deb Size: 39430 MD5sum: bf4d3a00aa272ba080ef1142dd72011a SHA1: ea7d46768fda6c1a5ff1b57c852303f66f65f97e SHA256: b64e959ea33bb7513a097f0a39e0d7ec78bdd40e7a995b80e2f54cb9b17e4063 Description: Erlang/OTP helper for web-based tools Homepage: http://www.erlang.org/ Description-md5: b8b0e4887cb074b9d62eb4be3acf0a19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: erlang-xmerl Priority: optional Section: interpreters Installed-Size: 1635 Maintainer: Ubuntu Developers Original-Maintainer: Debian Erlang Packagers Architecture: i386 Source: erlang Version: 1:16.b.3-dfsg-1ubuntu2 Replaces: erlang (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base (<< 1:16.b.3-dfsg-1ubuntu2), erlang-base-hipe (<< 1:16.b.3-dfsg-1ubuntu2), erlang-dev (<< 1:16.b.3-dfsg-1ubuntu2), erlang-doc (>> 1:16.b.3-dfsg-999), erlang-doc (<< 1:16.b.3-dfsg), erlang-examples (<< 1:16.b.3-dfsg-1ubuntu2), erlang-manpages (<= 1:11.b.1-2), erlang-mode (<< 1:12.b.1-dfsg-2), erlang-nox (<< 1:16.b.3-dfsg-1ubuntu2), erlang-src (<< 1:16.b.3-dfsg-1ubuntu2), erlang-x11 (<< 1:16.b.3-dfsg-1ubuntu2) Depends: erlang-base (= 1:16.b.3-dfsg-1ubuntu2) | erlang-base-hipe (= 1:16.b.3-dfsg-1ubuntu2) Suggests: erlang, erlang-manpages, erlang-doc Filename: pool/main/e/erlang/erlang-xmerl_16.b.3-dfsg-1ubuntu2_i386.deb Size: 970464 MD5sum: e9de7d2c0f4bda82a78121bc355327c3 SHA1: 25e5fca2fb0d91c50eb8b518835985904a6101e2 SHA256: 51952752607f317cf112ab01c58681b1ca6bf6d00f94920d55e311b915192722 Description: Erlang/OTP XML tools Homepage: http://www.erlang.org/ Description-md5: 222136c221feb614758c204affd11214 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: esound-common Priority: optional Section: sound Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: esound Version: 0.2.41-11 Conflicts: libesd-alsa0 Filename: pool/main/e/esound/esound-common_0.2.41-11_all.deb Size: 9558 MD5sum: ea82d1ec589a96744b42a355b71b1754 SHA1: b0fe3787445966261b0b5afad37a2a98fe4d9c3f SHA256: e168a1c286186fbd2d411a0c21cc6ca6165769249f1c5d0e741d4c6582cf45fe Description: Enlightened Sound Daemon - Common files Multi-Arch: foreign Description-md5: b75a4aad1c529ec1a944fb2841c7c0ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: espeak Priority: optional Section: sound Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Version: 1.47.11-1ubuntu1 Depends: libc6 (>= 2.4), libespeak1 (>= 1.47.11) Filename: pool/main/e/espeak/espeak_1.47.11-1ubuntu1_i386.deb Size: 59740 MD5sum: 042d1c7f931126acade1cfb1a56680f9 SHA1: 21a222ef68540148a6b248ee1467107c262dd9e9 SHA256: 3f3d4b38a18a0d4260e7e21f83513ebd95c6466184c35502b831605843afb9a8 Description: Multi-lingual software speech synthesizer Multi-Arch: foreign Homepage: http://espeak.sourceforge.net/ Description-md5: e4d7ea42a09ed7423403adc9c62ce2f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, ubuntustudio-desktop Package: espeak-data Priority: optional Section: sound Installed-Size: 1873 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: espeak Version: 1.47.11-1ubuntu1 Filename: pool/main/e/espeak/espeak-data_1.47.11-1ubuntu1_i386.deb Size: 852884 MD5sum: fc9e3ccab71b6ed1a594b72682e0e318 SHA1: 1b0f21fd45973e19152dda2c0fbf94390f08b26f SHA256: 4fd4933b9e37ba453adcd731b9e82ccb93309ed04a6d3b40ebcb3bbc115acd0c Description: Multi-lingual software speech synthesizer: speech data files Multi-Arch: same Homepage: http://espeak.sourceforge.net/ Description-md5: b42247f7f19f21e26acfed336bd9a588 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: espeak-dbg Priority: extra Section: debug Installed-Size: 803 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: espeak Version: 1.47.11-1ubuntu1 Depends: espeak (= 1.47.11-1ubuntu1), libespeak1 (= 1.47.11-1ubuntu1) Filename: pool/main/e/espeak/espeak-dbg_1.47.11-1ubuntu1_i386.deb Size: 262742 MD5sum: ecdf1dbf09c07a83572f878e91a1095c SHA1: f10deb830b53f8ade8474d9a02ab800b7c0d438e SHA256: 2c593152f4242d426da8e6e468834797b1860780c304a3d75a563b0f526ab03c Description: Multi-lingual software speech synthesizer: debugging symbols Homepage: http://espeak.sourceforge.net/ Description-md5: 36379027743829246f1b7bead7323458 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: etckeeper Priority: optional Section: admin Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: Joey Hess Architecture: all Version: 1.9ubuntu2 Depends: bzr (>= 1.5~) | git (>= 1:1.7) | mercurial | darcs, hostname, debconf (>= 0.5) | debconf-2.0 Recommends: cron Suggests: sudo (>= 1.7.4p4) Conflicts: bzr (<< 1.5~) Filename: pool/main/e/etckeeper/etckeeper_1.9ubuntu2_all.deb Size: 26680 MD5sum: d2bc93f1900718579a0e4fab7cf5a806 SHA1: 333ddf2d76ae30de37a98c183ae091575a630df2 SHA256: ba5aca1d51666f9d1edf8d17227c25df47aa2618334478e5d227436f1bb1238e Description: store /etc in git, mercurial, bzr or darcs Homepage: http://kitenet.net/~joey/code/etckeeper/ Description-md5: 95cb5b7044929ac8be07759fde67a217 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ethtool Priority: optional Section: utils Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 1:3.13-1 Depends: libc6 (>= 2.7) Filename: pool/main/e/ethtool/ethtool_3.13-1_i386.deb Size: 88082 MD5sum: 79d0fa2b1e8d2d45d0d10b21b0eb6a17 SHA1: 874b34a6d6d4a730c81e7d19c729c4c3f4bccca8 SHA256: bfc051a968926b90fd98786757ce3a259adc7218e7a0e21a40f7c6225b8abb86 Description: display or change Ethernet device settings Homepage: http://www.kernel.org/pub/software/network/ethtool/ Description-md5: 23bc6b45146ecc72a42d24b5993d6004 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: euca2ools Priority: optional Section: utils Installed-Size: 1089 Maintainer: Ubuntu Developers Original-Maintainer: Debian Eucalyptus Maintainers Architecture: all Version: 3.0.2-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-lxml, python-requestbuilder, python-requests, python-six, python-setuptools Recommends: openssl Filename: pool/main/e/euca2ools/euca2ools_3.0.2-1ubuntu1_all.deb Size: 250834 MD5sum: c4010c39e3a5e0a490a0d038ae9f5166 SHA1: 8ff341050f3f672f614d9b74e54599109626a3d5 SHA256: b178546b1d6d65298d63ce57587e1c87da7a4323b1b029a60e5e7a096b00e95c Description: tools for interacting with AWS API-compatible services Homepage: http://www.eucalyptus.com/download/euca2ools Description-md5: f6ee18e2bf2077bdd59e1f5810906ff2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: evince Priority: optional Section: gnome Installed-Size: 1172 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.10.3-0ubuntu10 Provides: djvu-viewer, pdf-viewer, postscript-viewer Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libevdocument3-4 (= 3.10.3-0ubuntu10), libevview3-3 (= 3.10.3-0ubuntu10), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.9.10), libice6 (>= 1:1.0.0), libnautilus-extension1a (>= 1:2.91), libpango-1.0-0 (>= 1.14.0), libsecret-1-0 (>= 0.7), libsm6, evince-common (>= 3.10), evince-common (<< 3.11), gnome-icon-theme (>= 2.17.1), shared-mime-info, gnome-icon-theme-symbolic Recommends: dbus-x11, gvfs Suggests: unrar, poppler-data, nautilus, apparmor Conflicts: evince-gtk Filename: pool/main/e/evince/evince_3.10.3-0ubuntu10_i386.deb Size: 160172 MD5sum: 1fa9890823ef0c5ae5eb64fb112e7799 SHA1: 9365cb6cde59e6dcab8bce2b893adb5780c50827 SHA256: a2e115a495753892d6ff96707ca6d1b44346ce6d8e4aa1827778bc2c09890c6e Description: Document (PostScript, PDF) viewer Homepage: http://www.gnome.org/projects/evince/ Description-md5: 531974388dc5701b9dbc2f5d96f92ec6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: evince-common Priority: optional Section: gnome Installed-Size: 2680 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: evince Version: 3.10.3-0ubuntu10 Depends: dconf-gsettings-backend | gsettings-backend, gsettings-desktop-schemas Filename: pool/main/e/evince/evince-common_3.10.3-0ubuntu10_all.deb Size: 427188 MD5sum: 465b4e7d8e4b372560a0fc81190ee2a3 SHA1: cd80b7e6c63b465453e2aa5eed2776a51c3af470 SHA256: 997a17f3ffc226fbf740a6144b7e438cb87907c0ed530d25139c0a7646a6b7aa Description: Document (PostScript, PDF) viewer - common files Homepage: http://www.gnome.org/projects/evince/ Description-md5: cbee657abf0923de613d04ab6ccfdd8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: evince-dbg Priority: extra Section: gnome Installed-Size: 4159 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: evince Version: 3.10.3-0ubuntu10 Depends: evince (= 3.10.3-0ubuntu10), libevdocument3-4 (= 3.10.3-0ubuntu10), libevview3-3 (= 3.10.3-0ubuntu10) Filename: pool/main/e/evince/evince-dbg_3.10.3-0ubuntu10_i386.deb Size: 1075834 MD5sum: 9b34c7c48879ced92c5b54d180b197f0 SHA1: b2dd328cb1da9590a3d5907d23b278feb761fb80 SHA256: 1d3ff0aa8e0ace970df8249213a724dd4fcd9e6a0bf8257776c15c448e4e3ff3 Description: Document (PostScript, PDF) viewer - debugging symbols Homepage: http://www.gnome.org/projects/evince/ Description-md5: 7aaf40301b0ad64e9c6e52927fc3e9b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution Priority: optional Section: gnome Installed-Size: 405 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Version: 3.10.4-0ubuntu1 Replaces: evolution-common (<< 2.91) Provides: imap-client, mail-reader Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.3.6-6~), libcamel-1.2-45, libecal-1.2-16 (>= 3.7.90), libedataserver-1.2-18 (>= 3.5.91), libevolution (>= 3.10), libevolution (<< 3.11), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.0.0), libical1 (>= 1.0), libnotify4 (>= 0.7.0), libsoup2.4-1 (>= 2.32.2), libwebkitgtk-3.0-0 (>= 1.3.10), libxml2 (>= 2.7.4), evolution-common (= 3.10.4-0ubuntu1), evolution-data-server (>= 3.10), evolution-data-server (<< 3.11), gnome-icon-theme (>= 2.30.2.1), dbus, psmisc Pre-Depends: debconf (>= 1.4.69) | debconf-2.0 Recommends: evolution-plugins, evolution-indicator, yelp, spamassassin | bogofilter Suggests: evolution-ews, evolution-plugins-experimental, gnupg, network-manager Filename: pool/main/e/evolution/evolution_3.10.4-0ubuntu1_i386.deb Size: 47824 MD5sum: 1d08d3aece856883058be938ddca7dab SHA1: 83cf06b4dfc8cda9520735124f584ab3de62d569 SHA256: 3c11deec1637d714973bd9b1c7b1b238f1e3ea0f5cfb4fec31019dc66677b759 Description: groupware suite with mail client and organizer Homepage: http://projects.gnome.org/evolution/ Description-md5: cfafd27ead8392a897eb797ec9866714 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: evolution-common Priority: optional Section: gnome Installed-Size: 16320 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: all Source: evolution Version: 3.10.4-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend Recommends: evolution Filename: pool/main/e/evolution/evolution-common_3.10.4-0ubuntu1_all.deb Size: 1447780 MD5sum: b87dcdc58807e9422e101e6deef7545f SHA1: ddd6e10e2336a2de324bf4005637eca4d4ade2c8 SHA256: 8e0d7cc93ac96fc93f808892f0d5230d854653bb82d16b258d7413d267bfd0c5 Description: architecture independent files for Evolution Homepage: http://projects.gnome.org/evolution/ Description-md5: 63a9c80d6efb5e50b74aae7ebcc8bf5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: evolution-data-server Priority: optional Section: gnome Installed-Size: 1308 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Version: 3.10.4-0ubuntu1 Replaces: evolution-data-server-goa (<< 3.10.3-0ubuntu2~) Depends: libc6 (>= 2.7), libcamel-1.2-45 (= 3.10.4-0ubuntu1), libdb5.3, libebackend-1.2-7 (>= 3.8.4), libebook-1.2-14 (>= 3.10.0), libebook-contacts-1.2-0 (>= 3.7.90), libecal-1.2-16 (>= 3.7.90), libedata-book-1.2-20 (>= 3.7.90), libedata-cal-1.2-23 (>= 3.8.4), libedataserver-1.2-18 (>= 3.7.90), libgdata13 (>= 0.11.0), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.0.0), libgweather-3-6 (>= 3.7.91), libical1 (>= 1.0), libldap-2.4-2 (>= 2.4.7), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~beta3), libpango-1.0-0 (>= 1.14.0), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.40.3), libxml2 (>= 2.9.0), evolution-data-server-common (= 3.10.4-0ubuntu1) Recommends: evolution-data-server-online-accounts Suggests: evolution, evolution-data-server-dbg (= 3.10.4-0ubuntu1) Conflicts: evolution-data-server-goa (<< 3.10.3-0ubuntu2~) Breaks: libebook-1.2-12 (<< 3.4), libebook-1.2-13 (<< 3.6), libebook1.2-10 (<< 3.2), libebook1.2-9 (<< 2.32), libecal1.2-11 (<< 3.6), libecal1.2-7 (<< 2.32), libecal1.2-8 (<< 3.2), libedataserverui-3.0-5 Filename: pool/main/e/evolution-data-server/evolution-data-server_3.10.4-0ubuntu1_i386.deb Size: 304624 MD5sum: a7c4d07e3e5875ed745ee2a6854ecfca SHA1: 097f5c4f6072664590afd55b498f21965f46f297 SHA256: 3e3e58fee6ca18cac7630f1addddb8c60c4b2d6b5282438cfe28a4ed4ef8679a Description: evolution database backend server Homepage: http://projects.gnome.org/evolution/ Description-md5: 00223d501d234f5cb46209c8c730f321 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: evolution-data-server-common Priority: optional Section: gnome Installed-Size: 320 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: all Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend Filename: pool/main/e/evolution-data-server/evolution-data-server-common_3.10.4-0ubuntu1_all.deb Size: 109344 MD5sum: ebbbceb1f323703e00b14dfce12c18f9 SHA1: d30796b32e18d88dc880c26b068ea459898c22b1 SHA256: 3fd7ad49183313bb19fa6cfc57c15853010639ac7deb032e19ac280606e18389 Description: architecture independent files for Evolution Data Server Homepage: http://projects.gnome.org/evolution/ Description-md5: 5cc3d01ab453e709e471f91ff4d74d00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: evolution-data-server-dbg Priority: extra Section: gnome Installed-Size: 5655 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: evolution-data-server (= 3.10.4-0ubuntu1) Filename: pool/main/e/evolution-data-server/evolution-data-server-dbg_3.10.4-0ubuntu1_i386.deb Size: 4539662 MD5sum: a36d9f91dfc16f20d239307f8201f45e SHA1: 32680f55ca4abad7cb580b6e91a42093c1d2b5e2 SHA256: 104b10bb4aa5e03f26c6c2bbc843b622c915afce798f3a437f3a0faa1699ff7e Description: evolution database backend server with debugging symbols Homepage: http://projects.gnome.org/evolution/ Description-md5: 67f33ddd8521aa2c8e1b89732e218dfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution-data-server-dev Priority: optional Section: gnome Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libglib2.0-dev (>= 2.34), libnss3-dev, libnspr4-dev Breaks: libedataserverui-3.0-dev Filename: pool/main/e/evolution-data-server/evolution-data-server-dev_3.10.4-0ubuntu1_i386.deb Size: 96562 MD5sum: 93734c53073b17c7a1d1e4ed6e0ca61a SHA1: fc9fc1d5daeb4b2fa48d8c5f21d3b47f9002cf62 SHA256: b18c2ede3a8e234f2babdd33f1c33b559a525b09d633e9a8018bba7229c27f18 Description: Development files for evolution-data-server (metapackage) Homepage: http://projects.gnome.org/evolution/ Description-md5: f80e85b29ef7b2fa18ebc57f7a903dcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution-data-server-doc Priority: optional Section: doc Installed-Size: 12321 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: all Source: evolution-data-server Version: 3.10.4-0ubuntu1 Replaces: libcamel1.2-dev (<< 3.4.2), libebackend1.2-dev (<< 3.4.2), libebook1.2-dev (<< 3.4.2), libecal1.2-dev (<< 3.4.2), libedata-book1.2-dev (<< 3.4.2), libedata-cal1.2-dev (<< 3.4.2), libedataserver1.2-dev (<< 3.4.2), libedataserverui-3.0-dev (<< 3.4.2), libedataserverui1.2-dev Suggests: devhelp Breaks: libcamel1.2-dev (<< 3.4.2), libebackend1.2-dev (<< 3.4.2), libebook1.2-dev (<< 3.4.2), libecal1.2-dev (<< 3.4.2), libedata-book1.2-dev (<< 3.4.2), libedata-cal1.2-dev (<< 3.4.2), libedataserver1.2-dev (<< 3.4.2), libedataserverui-3.0-dev (<< 3.4.2), libedataserverui1.2-dev Filename: pool/main/e/evolution-data-server/evolution-data-server-doc_3.10.4-0ubuntu1_all.deb Size: 670876 MD5sum: f9e8e435b13800a75dbbc23c45f22020 SHA1: 1ce18a33572438865a25e0ca9f1a24daeb507d0d SHA256: 53d0df1f83bdddaae17216e081468269a49c195e4f1aa4015144cdbf8ea3c70a Description: Documentation files for the Evolution Data Server libraries Homepage: http://projects.gnome.org/evolution/ Description-md5: b241d0c600eee3a52e0b78eb3b6bbba5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution-data-server-online-accounts Priority: optional Section: gnome Installed-Size: 259 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Replaces: evolution-data-server (<< 3.8.3), evolution-data-server-common (<< 3.8.3-0ubuntu4~), evolution-data-server-goa (<< 3.10.3-0ubuntu2~), evolution-data-server-uoa (<< 3.10.3-0ubuntu2~) Provides: evolution-data-server-goa, evolution-data-server-uoa Depends: libaccounts-glib0 (>= 1.4), libc6 (>= 2.3.6-6~), libcamel-1.2-45 (= 3.10.4-0ubuntu1), libebackend-1.2-7 (>= 3.7.90), libedataserver-1.2-18 (>= 3.7.90), libglib2.0-0 (>= 2.34), libgoa-1.0-0b (>= 3.7.91), libjson-glib-1.0-0 (>= 0.12.0), librest-0.7-0 (>= 0.7), libsignon-glib1 (>= 1.8), libsoup2.4-1 (>= 2.40.3), libxml2 (>= 2.9.0), evolution-data-server-common (= 3.10.4-0ubuntu1) Suggests: evolution Conflicts: evolution-data-server-goa (<< 3.10.3-0ubuntu2~), evolution-data-server-uoa (<< 3.10.3-0ubuntu2~) Breaks: evolution-data-server (<< 3.8.3), evolution-data-server-common (<< 3.8.3-0ubuntu4~) Filename: pool/main/e/evolution-data-server/evolution-data-server-online-accounts_3.10.4-0ubuntu1_i386.deb Size: 30448 MD5sum: 1488bde12e64f8ce389a96bde028c64f SHA1: 06ef3b1097d8f987d73268db6238d0f7442d64bf SHA256: 5bee188bf02bedc1f87d3978f087a81749ce1f02484492d54d352db77a4ea851 Description: evolution data server integration with Ubuntu Online Accounts Homepage: http://projects.gnome.org/evolution/ Description-md5: bc63dd0a9ff4f5cb5bd5cc0805ed5f2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: evolution-dbg Priority: extra Section: gnome Installed-Size: 11573 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution Version: 3.10.4-0ubuntu1 Depends: evolution (= 3.10.4-0ubuntu1) Filename: pool/main/e/evolution/evolution-dbg_3.10.4-0ubuntu1_i386.deb Size: 9692860 MD5sum: 9fedb2b0ddebbcc9a354c080c9c80d0c SHA1: c7f2b9807523d26d7abfac077c6388587870e35e SHA256: 202ddbce0a1985e6f9e0b654b9b98a763300e07ac04057fd1780ba5bce831da5 Description: debugging symbols for Evolution Homepage: http://projects.gnome.org/evolution/ Description-md5: 5264e3842eb3d96148e4540a2e161bde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution-dev Priority: optional Section: devel Installed-Size: 7662 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution Version: 3.10.4-0ubuntu1 Depends: libevolution (= 3.10.4-0ubuntu1), libxml2-dev, libcamel1.2-dev, libgtkhtml-4.0-dev, libgtkhtml-editor-4.0-dev, libebackend1.2-dev, libgtk-3-dev, libgnome-desktop-3-dev, libwebkitgtk-3.0-dev (>= 1.10.0), libedataserver1.2-dev Filename: pool/main/e/evolution/evolution-dev_3.10.4-0ubuntu1_i386.deb Size: 496138 MD5sum: b7f3f938a882c852ab6cb99be3421dac SHA1: 2ab4268d744d1361e7491ed41391c77b52665d29 SHA256: 1834627490c1431fa04a986966346a922fc53e7b43123ad50dbd2ed1a973d74f Description: development library files for Evolution Homepage: http://projects.gnome.org/evolution/ Description-md5: e8841388a6199690879d253b06445273 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: evolution-indicator Priority: extra Section: gnome Installed-Size: 95 Maintainer: Ubuntu Core Developers Architecture: i386 Version: 0.2.20-0ubuntu15 Depends: gconf-service, libc6 (>= 2.3.6-6~), libcamel-1.2-45, libcanberra0 (>= 0.2), libdbusmenu-glib4 (>= 0.4.2), libedataserver-1.2-18 (>= 3.5.91), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.0.0), libmessaging-menu0 (>= 12.10.0), libnotify4 (>= 0.7.0), libunity9 (>= 3.4.6), gconf2 (>= 2.28.1-2), evolution Filename: pool/main/e/evolution-indicator/evolution-indicator_0.2.20-0ubuntu15_i386.deb Size: 13582 MD5sum: 97b2f5e6de0ff101ca3c3d3656d24634 SHA1: 494a4a2e98a6e218a838c50aff5c0d5a37ec5ef0 SHA256: 751a631b922e2f0a536a710f112b920046d29bc55288d7feaec987cd6eb63b75 Description: GNOME panel indicator applet for Evolution Homepage: https://launchpad.net/evolution-indicator Description-md5: 6944713b1e0d80d83d83552513d6ab38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: evolution-plugins Priority: optional Section: gnome Installed-Size: 538 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.4), libcamel-1.2-45, libcanberra0 (>= 0.2), libebook-1.2-14 (>= 3.5.91), libebook-contacts-1.2-0 (>= 3.7.90), libecal-1.2-16 (>= 3.7.90), libedataserver-1.2-18 (>= 3.5.91), libevolution (>= 3.10), libevolution (<< 3.11), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.4.0), libgtkhtml-editor-4.0-0 (>= 4.6), libgtkhtml-editor-4.0-0 (<< 4.8), libical1 (>= 1.0), libnotify4 (>= 0.7.0), libpst4 (>= 0.6.54), libxml2 (>= 2.7.4), evolution (= 3.10.4-0ubuntu1) Recommends: notification-daemon Filename: pool/main/e/evolution/evolution-plugins_3.10.4-0ubuntu1_i386.deb Size: 81850 MD5sum: 065937d2c08dde516ec4ceb2eee7f4e8 SHA1: 0df1bd975ffd198228bf54b574b4a85fef35f20e SHA256: f884d93b1e60af5b4d9adb79f4dcb12ac694c1b22bdfb5f753d2268aa4197350 Description: standard plugins for Evolution Homepage: http://projects.gnome.org/evolution/ Description-md5: 156ab79328b91976048e2cd724c8542d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: example-content Priority: optional Section: x11 Installed-Size: 6217 Maintainer: Ubuntu Artwork Team Architecture: all Version: 48 Filename: pool/main/e/example-content/example-content_48_all.deb Size: 5223256 MD5sum: 23f9641fe76154e623f42fc90035c020 SHA1: 576dc02357ccf7506f7fc8cd3121ada85692f27f SHA256: 875894ddba9b9c1c1856b54f1bd8536b777d092673285fce110779fc0062e143 Description: Ubuntu example content Homepage: https://launchpad.net/example-content Description-md5: c3d0a7db62e70da762d52dfac33a7bd0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: execstack Priority: optional Section: admin Installed-Size: 225 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: prelink Version: 0.0.20090925-8 Replaces: prelink Depends: libc6 (>= 2.4), libelfg0 (>= 0.8.12), libselinux1 (>= 1.32) Conflicts: prelink (<< 0.0.20090311-2) Filename: pool/main/p/prelink/execstack_0.0.20090925-8_i386.deb Size: 81984 MD5sum: 1efe14cf89850b67014f8fe3a16702ae SHA1: 235fd040dcc80cbe7e869d5b06b7f7a8733f69fe SHA256: 248c6b8c560cee7c6ab649775af649abe509e06f12a473a32aaebd60ca854a1d Description: ELF GNU_STACK program header editing utility Description-md5: b4977f65448ec7a7e1fca51450d83efb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exim4 Priority: optional Section: mail Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: all Version: 4.82-3ubuntu2 Depends: debconf (>= 0.5) | debconf-2.0, debconf (>= 1.4.69) | cdebconf (>= 0.39), exim4-base (>= 4.82), exim4-daemon-light | exim4-daemon-heavy | exim4-daemon-custom Filename: pool/main/e/exim4/exim4_4.82-3ubuntu2_all.deb Size: 7876 MD5sum: 6045b17135cbec6b17c22e167a79e03f SHA1: 124a7c9d4309256d9737d0919b162dc3cc80054e SHA256: 8777c115822fe077f96fed0aa64160e867c1038c9773b58850be8480feb7335f Description: metapackage to ease Exim MTA (v4) installation Homepage: http://www.exim.org/ Description-md5: 458592f74d76e446735736c1d55ce615 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: exim4-base Priority: extra Section: mail Installed-Size: 1495 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: i386 Source: exim4 Version: 4.82-3ubuntu2 Replaces: exim, exim-tls, exim4-daemon-custom, exim4-daemon-heavy, exim4-daemon-light Depends: libc6 (>= 2.4), libdb5.3, debconf (>= 0.5) | debconf-2.0, cron | fcron, exim4-config (>= 4.30) | exim4-config-2, adduser, netbase, lsb-base (>= 3.0-6) Recommends: psmisc, mailx, perl-modules Suggests: mail-reader, eximon4, exim4-doc-html | exim4-doc-info, gnutls-bin | openssl, file, spf-tools-perl, swaks Conflicts: exim, exim-tls Breaks: exim4-daemon-custom (<< 4.82), exim4-daemon-heavy (<< 4.82), exim4-daemon-light (<< 4.82) Filename: pool/main/e/exim4/exim4-base_4.82-3ubuntu2_i386.deb Size: 853092 MD5sum: 71e8eee0ec03acd7ddf28e863ca9f33e SHA1: 67389b0060883d9e8ab06d6b3f7ee2136b87f9fb SHA256: 6199494abca127763cb3d90c2770ccb118b03ee059d48ba534be0842f40f6777 Description: support files for all Exim MTA (v4) packages Homepage: http://www.exim.org/ Description-md5: ab23a802a5e7dee33641329abf2b6565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: exim4-config Priority: extra Section: mail Installed-Size: 1003 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: all Source: exim4 Version: 4.82-3ubuntu2 Provides: exim4-config-2 Depends: debconf (>= 0.5) | debconf-2.0, adduser Conflicts: courier-mta, esmtp-run, exim, exim-tls, exim4-config, exim4-config-2, hula-mta, masqmail, mta-dummy, nullmailer, postfix, sendmail-bin, smail, ssmtp, xmail, zmailer Breaks: exim4-daemon-heavy (<< 4.82~rc1), exim4-daemon-light (<< 4.82~rc1) Filename: pool/main/e/exim4/exim4-config_4.82-3ubuntu2_all.deb Size: 297758 MD5sum: b9ec5218ccbb23d5b6c24584dd05a0e8 SHA1: ac52144bd045389d5a94195668e4628253d52308 SHA256: 2afa9532b39fa57e9c1eba095efbb0f84a225d8ab04f4cfe1e9e878e1417c374 Description: configuration for the Exim MTA (v4) Homepage: http://www.exim.org/ Description-md5: 32395c972fcf7f5014c06bce8ee1c59a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: exim4-daemon-heavy Priority: optional Section: mail Installed-Size: 1242 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: i386 Source: exim4 Version: 4.82-3ubuntu2 Replaces: exim4-base (<= 4.61-1), mail-transport-agent Provides: exim4-localscanapi-1.0, exim4-localscanapi-1.1, mail-transport-agent Depends: exim4-base (>= 4.82), libc6 (>= 2.15), libdb5.3, libgnutls26 (>= 2.12.17-0), libldap-2.4-2 (>= 2.4.7), libmysqlclient18 (>= 5.5.24+dfsg-1), libpam0g (>= 0.99.7.1), libpcre3, libperl5.18 (>= 5.18.2), libpq5, libsasl2-2 (>= 2.1.24), libsqlite3-0 (>= 3.5.9), debconf (>= 0.5) | debconf-2.0 Conflicts: mail-transport-agent Breaks: clamav-daemon (<< 0.95) Filename: pool/main/e/exim4/exim4-daemon-heavy_4.82-3ubuntu2_i386.deb Size: 448762 MD5sum: 672b8b447b34c2f94f23afc93eba059a SHA1: 9c3e47d16077d64bb290f583bc501c9562386580 SHA256: ffbd22c61e468d317d847901a3cb27c81a9df63fac8ca34a4854b18d92dabe5d Description: Exim MTA (v4) daemon with extended features, including exiscan-acl Homepage: http://www.exim.org/ Description-md5: 29c4b395a92bdc12932f151c3643a602 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: exim4-daemon-heavy-dbg Priority: extra Section: mail Installed-Size: 2867 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: i386 Source: exim4 Version: 4.82-3ubuntu2 Depends: exim4-daemon-heavy Filename: pool/main/e/exim4/exim4-daemon-heavy-dbg_4.82-3ubuntu2_i386.deb Size: 866972 MD5sum: 4dbee8f535f8d33813e4a5e5de46542e SHA1: 6bc6d64e2306538672a284187c59c7e65d4c559c SHA256: 8502a3397378deaa9b2f782416a1d00dd7e9cc9cf5e10e3272cf2e818210365a Description: debugging symbols for the Exim MTA "heavy" daemon Homepage: http://www.exim.org/ Description-md5: c42822621e1df91a52982b923c500d4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exim4-daemon-light Priority: extra Section: mail Installed-Size: 1103 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: i386 Source: exim4 Version: 4.82-3ubuntu2 Replaces: exim4-base (<= 4.61-1), mail-transport-agent Provides: exim4-localscanapi-1.0, exim4-localscanapi-1.1, mail-transport-agent Depends: exim4-base (>= 4.82), libc6 (>= 2.15), libdb5.3, libgnutls26 (>= 2.12.17-0), libpcre3, debconf (>= 0.5) | debconf-2.0 Conflicts: mail-transport-agent Filename: pool/main/e/exim4/exim4-daemon-light_4.82-3ubuntu2_i386.deb Size: 402210 MD5sum: 3a4d88c8005c4cf9136b5c0ac4bcae14 SHA1: 3966c1a5a2d9f6db466d513e0afd4fde482ae17a SHA256: 56818fcbc04ad5135775dcf50cf14762f9025ea76d689182c5d7f107db3ad3d9 Description: lightweight Exim MTA (v4) daemon Homepage: http://www.exim.org/ Description-md5: 3f5190a801cb3e11718c951f768c4d54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: exim4-daemon-light-dbg Priority: extra Section: mail Installed-Size: 2536 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: i386 Source: exim4 Version: 4.82-3ubuntu2 Depends: exim4-daemon-light Filename: pool/main/e/exim4/exim4-daemon-light-dbg_4.82-3ubuntu2_i386.deb Size: 756118 MD5sum: a08e938a2943d4f397b86f7f539dc90c SHA1: 97e3c5bbdb7c1fa923c03884d3414636ab8ca118 SHA256: c40281d0d832fc15861cfaac6006b8598e2ef4ad1e1c9adab350a11a2375aadd Description: debugging symbols for the Exim MTA "light" daemon Homepage: http://www.exim.org/ Description-md5: dff44febf1a413d05a89808719c665f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exim4-dbg Priority: extra Section: mail Installed-Size: 707 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: i386 Source: exim4 Version: 4.82-3ubuntu2 Depends: exim4-base, exim4-config Recommends: eximon4 Filename: pool/main/e/exim4/exim4-dbg_4.82-3ubuntu2_i386.deb Size: 179338 MD5sum: 7f83e83fef6c4456ac5c66ac523f1a09 SHA1: 39f0d854f9e3ac5e04afb71f527119c3f75e5df5 SHA256: 46fb45351dfdccd8cd89cd2dc7f8be9b357e9d96a7796d862a90d715497ef222 Description: debugging symbols for the Exim MTA (utilities) Homepage: http://www.exim.org/ Description-md5: 5cf2fe8a21737e0585d95be54f8ada23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exim4-dev Priority: extra Section: mail Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: i386 Source: exim4 Version: 4.82-3ubuntu2 Filename: pool/main/e/exim4/exim4-dev_4.82-3ubuntu2_i386.deb Size: 15126 MD5sum: 08e8e9751eb52f9adc532473f86e5599 SHA1: 984ae106518291951cef1b042906123af4b0998c SHA256: 903ea8f5d0d73254e8a1a1a175fbe958a750acf22af4e2756e739efb999657a8 Description: header files for the Exim MTA (v4) packages Homepage: http://www.exim.org/ Description-md5: d5a123381ab67fa02f35533169e299d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exim4-doc-html Priority: optional Section: doc Installed-Size: 3233 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: all Source: eximdoc4 Version: 4.82-2 Replaces: eximdoc4-html Filename: pool/main/e/eximdoc4/exim4-doc-html_4.82-2_all.deb Size: 455346 MD5sum: 0b26558a7331008d5820453cfe7c12f9 SHA1: bdce5b372830f45d469a6093487cc44c59b34283 SHA256: 8e2603407100f263c8ecde8f1d469cacdec5aa773abca930e2c12eea7ac479aa Description: documentation for the Exim MTA (v4) in html format Homepage: http://www.exim.org/ Description-md5: 73ca59c47a017d63ed6c9d76704b5a85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: eximon4 Priority: optional Section: mail Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Exim4 Maintainers Architecture: i386 Source: exim4 Version: 4.82-3ubuntu2 Replaces: eximon Depends: libc6 (>= 2.7), libpcre3, libx11-6, libxaw7, libxmu6, libxt6, exim4-base (>= 4.10) Conflicts: eximon Filename: pool/main/e/exim4/eximon4_4.82-3ubuntu2_i386.deb Size: 41850 MD5sum: f5c0f862660c28d8550f42f8b39cd6ef SHA1: 956584c6a7c78a644bb29d98875899fa0b9c28d9 SHA256: 4597fe784bea3c66bdc383413c72f46cd776326bc6893b3b0517e9a7d1c2fc58 Description: monitor application for the Exim MTA (v4) (X11 interface) Homepage: http://www.exim.org/ Description-md5: 9d049018af5088cbceaa2af23692d02a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: expect Priority: optional Section: interpreters Installed-Size: 313 Maintainer: Ubuntu Developers Original-Maintainer: Sergei Golovan Architecture: i386 Version: 5.45-5ubuntu1 Depends: libc6 (>= 2.11), libtcl8.6 (>= 8.6.0) Conflicts: expectk (<< 5.45) Filename: pool/main/e/expect/expect_5.45-5ubuntu1_i386.deb Size: 149166 MD5sum: 33949beb1a07d14c0fd7f7ec5472a1d1 SHA1: 8463ca175f94f80797bb5c207f1f9bb66992f07f SHA256: ceed9941a1370ab8ce90f941dca20ca33cbf73b17501024e68f2db0ad25a61d3 Description: Automates interactive applications Homepage: http://sourceforge.net/projects/expect/ Description-md5: c1249473d87dda15c30aa04e1c9d08c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: expect-dev Priority: optional Section: devel Installed-Size: 277 Maintainer: Ubuntu Developers Original-Maintainer: Sergei Golovan Architecture: i386 Source: expect Version: 5.45-5ubuntu1 Replaces: expect (<< 5.44.1.14) Depends: expect (= 5.45-5ubuntu1), tcl8.6-dev Recommends: tk8.6-dev Filename: pool/main/e/expect/expect-dev_5.45-5ubuntu1_i386.deb Size: 75184 MD5sum: 09e56d1b1b7a97ed30ab71d270c9b03f SHA1: 6330e158bd25f0e183e4711b3234d37cf3ee2ff2 SHA256: 22f9db81378abb6dd5ef44d9ac44312c882ed21c8f1f421a77727f06789d4d6c Description: Automates interactive applications (development) Homepage: http://sourceforge.net/projects/expect/ Description-md5: 1094390d25af288c90dbf968fc31aeb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: exuberant-ctags Priority: optional Section: editors Installed-Size: 301 Maintainer: Colin Watson Architecture: i386 Version: 1:5.9~svn20110310-7 Provides: ctags Depends: libc6 (>= 2.11) Suggests: vim | nvi | elvis | vile | emacsen Filename: pool/main/e/exuberant-ctags/exuberant-ctags_5.9~svn20110310-7_i386.deb Size: 115804 MD5sum: 08fc952fcf5d92b26dcae0446ed888b6 SHA1: 0d484c522e05658e37b90351a606844533b8e31a SHA256: 96c9180726c3c392f062b739ac890ab11ecdabb99076033baec568f5d9da0334 Description: build tag file indexes of source code definitions Multi-Arch: foreign Homepage: http://ctags.sourceforge.net/ Description-md5: dffcafa00047da8d3dac60f57fa4eef4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: facter Priority: optional Section: admin Installed-Size: 318 Maintainer: Ubuntu Developers Original-Maintainer: Puppet Package Maintainers Architecture: all Version: 1.7.5-1ubuntu1 Depends: bind9-host | host, net-tools, ruby-json, ruby | ruby-interpreter Recommends: pciutils, dmidecode Suggests: virt-what Filename: pool/main/f/facter/facter_1.7.5-1ubuntu1_all.deb Size: 67346 MD5sum: 1671b6aa619d14ed42233fca054297fb SHA1: e6dadf5928fa89cdbb9345e685f1fdaaea74e3e9 SHA256: f61cdfa242583ac01adceb43fbfd1c4dc0dbce259f05938fa68d2b5019f0cd1d Description: collect and display facts about the system Homepage: http://projects.puppetlabs.com/projects/facter Description-md5: aa6eefd05a936ac36b8b75f91c9a65ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fakeroot Priority: optional Section: utils Installed-Size: 229 Maintainer: Ubuntu Developers Original-Maintainer: Clint Adams Architecture: i386 Version: 1.20-3ubuntu2 Depends: libc6 (>= 2.15), libfakeroot (>= 1.20-3ubuntu2) Filename: pool/main/f/fakeroot/fakeroot_1.20-3ubuntu2_i386.deb Size: 55412 MD5sum: 6eaa1d416bfaf9fcdf9a15477dec316a SHA1: 93bbbc60464aba3d781ae40a210b14f6b4603ffc SHA256: 74d6186873d505ec2bd7996139b0d3924551f86acd03b635fb699702ad568d82 Description: tool for simulating superuser privileges Multi-Arch: foreign Description-md5: db2730aa4872dbe27ff20c4aad3c5429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: faketime Priority: extra Section: utils Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Kahn Gillmor Architecture: i386 Version: 0.9.5-2 Depends: libc6 (>= 2.4), libfaketime (= 0.9.5-2) Pre-Depends: multiarch-support Filename: pool/main/f/faketime/faketime_0.9.5-2_i386.deb Size: 9398 MD5sum: f46122787eba61c81c3021ca663d8c2e SHA1: 9d0aafcc2677dff20220249ed66b7342e5eeaac7 SHA256: 660d3832797b6169581dd18e483142f0a7fe835b5bdc00c416c226786c0cd84d Description: report faked system time to programs Multi-Arch: foreign Homepage: http://www.code-wizards.com/projects/libfaketime/ Description-md5: 9230deac6c49626e80400467f9098477 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fastjar Priority: extra Section: misc Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Version: 2:0.98-5 Depends: dpkg (>= 1.15.4) | install-info, libc6 (>= 2.4), zlib1g (>= 1:1.1.4) Filename: pool/main/f/fastjar/fastjar_0.98-5_i386.deb Size: 36764 MD5sum: 3796296e612d0419aa550a075befadd6 SHA1: a956fb0d9a6eded27f095e435fe4ff1fa67374ad SHA256: c2e9132aef8244b2770097e7b38159488fd0d5c0fa2f3e627c4050a79cb7730f Description: Jar creation utility Multi-Arch: foreign Description-md5: a0d7499d9046ecf1733ddfd9e23815be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fbset Priority: optional Section: admin Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: i386 Version: 2.1-27 Depends: libc6 (>= 2.3.4), udev | makedev (>= 2.3.1-24) Filename: pool/main/f/fbset/fbset_2.1-27_i386.deb Size: 121580 MD5sum: 9f72312eb4fee087faba82d165a82d13 SHA1: 7ed89450d4c4d79c2b4a25b1e5fe3971601638da SHA256: 0a8b20a102aad738fafb6e56a08791f13ba34d7e58b95ac924139a20a8d7cd5c Description: framebuffer device maintenance program Homepage: http://users.telenet.be/geertu/Linux/fbdev/ Description-md5: 7997084a9c5398cd30090426f11200a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fdupes Priority: optional Section: utils Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Sandro Tosi Architecture: i386 Version: 1.51-1 Depends: libc6 (>= 2.7) Filename: pool/main/f/fdupes/fdupes_1.51-1_i386.deb Size: 16388 MD5sum: 08fbefdbe75b5a9466225531eafea892 SHA1: a641227603beddf4c45deb4d9f3577a1c0938d1e SHA256: 39a9504bf91d733e2662aec0718218c21e825bbd0a27a9f767de82683e6a4878 Description: identifies duplicate files within given directories Multi-Arch: foreign Homepage: http://code.google.com/p/fdupes/ Description-md5: d917c30aa3870e8a38071caa9a905475 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fetchmail Priority: optional Section: mail Installed-Size: 928 Maintainer: Ubuntu Developers Original-Maintainer: Fetchmail Maintainers Architecture: i386 Version: 6.3.26-1 Replaces: fetchmail-common, fetchmail-ssl Provides: fetchmail-ssl Depends: libc6 (>= 2.15), libcomerr2 (>= 1.01), libgssapi-krb5-2 (>= 1.10+dfsg~), libkrb5-3 (>= 1.6.dfsg.2), libssl1.0.0 (>= 1.0.0), debianutils (>= 1.7), adduser (>= 3.34), lsb-base (>= 3.2-13) Recommends: ca-certificates Suggests: fetchmailconf, default-mta | mail-transport-agent, resolvconf Conflicts: fetchmail-common Breaks: fetchmail-ssl (<= 6.2.5-12), logcheck (<< 1.1.1-9) Filename: pool/main/f/fetchmail/fetchmail_6.3.26-1_i386.deb Size: 349686 MD5sum: 413e0041450dbe1d87e6c9f0ed114342 SHA1: b9bd5357b07a8a0ad27376882113c42306207b0a SHA256: 8c49b54cad7a795a11c7f94b3e195e6f5f94893182bfce547d8f015a0a5701d7 Description: SSL enabled POP3, APOP, IMAP mail gatherer/forwarder Homepage: http://www.fetchmail.info Description-md5: 05cb6c758ac9e6de53b36438f8f52a45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fglrx-pxpress Priority: optional Section: admin Installed-Size: 39 Maintainer: Ubuntu Developers Architecture: i386 Source: ubuntu-drivers-common Version: 1:0.2.91.4 Depends: ubuntu-drivers-common Filename: pool/main/u/ubuntu-drivers-common/fglrx-pxpress_0.2.91.4_i386.deb Size: 1306 MD5sum: fc0bef63c955522923cb669f4a1f53d6 SHA1: a2041ccde24bde4052ebf4f1059ea1438f40618f SHA256: 2f47916715beff8b1a8c0abf608d8a22be821e8c1014e2fb6774c74977e1c968 Description: transitional package for ubuntu-drivers-common Description-md5: f11494e618e154235d7240541a9fc755 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: file Priority: important Section: utils Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: i386 Version: 1:5.14-2ubuntu3 Depends: libc6 (>= 2.4), libmagic1 (= 1:5.14-2ubuntu3) Filename: pool/main/f/file/file_5.14-2ubuntu3_i386.deb Size: 18452 MD5sum: acaa29409c23df53b97340192daac041 SHA1: 574a5a2c193461279473ad8975691db145a33656 SHA256: cb0a003d5fea40be638e69edce2622256f10f088d4fe9d10696702c28eea7264 Description: Determines file type using "magic" numbers Multi-Arch: foreign Homepage: http://www.darwinsys.com/file/ Description-md5: 24356148df43e324f7cd0edfa5faa2fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: file-dbg Priority: extra Section: debug Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: i386 Source: file Version: 1:5.14-2ubuntu3 Depends: libmagic1 (= 1:5.14-2ubuntu3) Filename: pool/main/f/file/file-dbg_5.14-2ubuntu3_i386.deb Size: 123454 MD5sum: 41d90041d9ba1fe3eb1720bb592106fc SHA1: c1123363ca28c410cff99150571a0530728114a6 SHA256: 9cd4ad6985a2991ae4b3b41cb5ddfb57b692abbd6c43024da8bc7b6f66a23135 Description: Determines file type using "magic" numbers (debug) Multi-Arch: foreign Homepage: http://www.darwinsys.com/file/ Description-md5: 7ed49ee2ef2414f5a9f875a720169751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: file-roller Priority: optional Section: gnome Installed-Size: 1880 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.10.2.1-0ubuntu4 Replaces: gnome-icon-theme (<< 2.14) Depends: bzip2, nautilus-data (>= 3.0), unzip, zip, dconf-gsettings-backend | gsettings-backend, libarchive13, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.10.0), libjson-glib-1.0-0 (>= 0.12.0), libmagic1 (>= 5.12), libnautilus-extension1a (>= 1:2.91), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0) Recommends: gnome-icon-theme (>= 2.18), gvfs, sessioninstaller, yelp Suggests: arj, lha, lzip, lzma, lzop, ncompress, p7zip-full, rpm2cpio, rzip, sharutils, unace, unalz, unar, xz-utils, zoo Filename: pool/main/f/file-roller/file-roller_3.10.2.1-0ubuntu4_i386.deb Size: 298710 MD5sum: ab7c1d9cbe9485b45d1adf9bf77c1939 SHA1: b47a0b7b426b0ef90cd988a53528abc44e0ce876 SHA256: 1a56f3302b298cee9bdc85f9487d0df33c47eaf2e118e1a57b6194aa8eb0b69d Description: archive manager for GNOME Homepage: http://fileroller.sourceforge.net/ Description-md5: 38d3e4bf80de5287311da5585810d3db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: finch Priority: optional Section: net Installed-Size: 770 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: i386 Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: pidgin-data (>= 1:2.10.9), pidgin-data (<< 1:2.10.9-z), libc6 (>= 2.7), libglib2.0-0 (>= 2.35.9), libgstreamer0.10-0 (>= 0.10.10), libncursesw5 (>= 5.6+20070908), libpurple0 (>= 1:2.8.0), libtinfo5, libxml2 (>= 2.7.4) Suggests: libx11-6 Filename: pool/main/p/pidgin/finch_2.10.9-0ubuntu3_i386.deb Size: 196484 MD5sum: 4e7265bb8bdd1ca54e79b72d9712bbee SHA1: d0c201ea04dfd53d4e0697d9588d176b70549aec SHA256: 34dfbffcdafa26f5d9126412d5a7446ff94975b0922121de8417a651051fd0cf Description: text-based multi-protocol instant messaging client Homepage: http://www.pidgin.im Description-md5: 6ddcf2f478810ed1b861f2343495f79b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: finch-dev Priority: optional Section: devel Installed-Size: 342 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: finch (>= 1:2.10.9), finch (<< 1:2.10.9+1~), pkg-config, libpurple-dev, libglib2.0-dev, libncursesw5-dev Filename: pool/main/p/pidgin/finch-dev_2.10.9-0ubuntu3_all.deb Size: 35438 MD5sum: a033349d2a1c4c1bf3f8a8cfb680bc70 SHA1: a491952325e058727a2d1df6aaddfa3cc6f7545d SHA256: e324e78ae564c79d76d052f219e9c50645f09871d8b6721d3e6b28701f9019d2 Description: text-based multi-protocol instant messaging client - development Homepage: http://www.pidgin.im Description-md5: 6a61ea06da490e4c5dc81a62a7ae4a2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: findutils Essential: yes Priority: required Section: utils Installed-Size: 668 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Metzler Architecture: i386 Version: 4.4.2-7 Pre-Depends: libc6 (>= 2.17) Suggests: mlocate | locate Filename: pool/main/f/findutils/findutils_4.4.2-7_i386.deb Size: 237412 MD5sum: 05193725e5638e6434000c30d70d13a2 SHA1: 2d06917eb349f6a3d6750c97a75554431e1556fb SHA256: 47b3459f2e25d908f373784650b26e7e84607a53db87aa3c13c42ad276785e3d Description: utilities for finding files--find, xargs Multi-Arch: foreign Homepage: http://savannah.gnu.org/projects/findutils/ Description-md5: ad1a783819241ffdf3ff5f37a676af59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: firefox Priority: optional Section: web Installed-Size: 59477 Maintainer: Ubuntu Mozilla Team Architecture: i386 Version: 28.0+build2-0ubuntu2 Replaces: kubuntu-firefox-installer Provides: gnome-www-browser, iceweasel, www-browser Depends: lsb-release, libasound2 (>= 1.0.16), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.17), libcairo2 (>= 1.2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), libstartup-notification0 (>= 0.8), libstdc++6 (>= 4.6), libx11-6, libxext6, libxrender1, libxt6 Recommends: xul-ext-ubufox, libcanberra0, libdbusmenu-glib4, libdbusmenu-gtk4 Suggests: fonts-lyx Filename: pool/main/f/firefox/firefox_28.0+build2-0ubuntu2_i386.deb Size: 25088680 MD5sum: df8b35e6cfdba2eb070273afff6e21e3 SHA1: 4de6255cf327381566f4a0bc6adda2bb69dd4283 SHA256: 95770d9301a77fc23a417a8f413c04a53e7980aa2cc32d6fcb0393f41dae6894 Description: Safe and easy web browser from Mozilla Xul-Appid: {ec8030f7-c20a-464f-9b0e-13a3a9e97384} Description-md5: 46b619f510631c4693dc09c1a3778a55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: firefox-dbg Priority: extra Section: debug Installed-Size: 759149 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Depends: firefox (= 28.0+build2-0ubuntu2) Filename: pool/main/f/firefox/firefox-dbg_28.0+build2-0ubuntu2_i386.deb Size: 204668492 MD5sum: 2aa734855046e9b6dcc28e301d077611 SHA1: f139aa2a8791922c39e1f4723d39848e93c7ea97 SHA256: 05f696f004e503df38902f05cebfe9a37191175ce53a191f02fd084006f1e9b9 Description: Safe and easy web browser from Mozilla - debug symbols Description-md5: 2937d9d7faa9d066b938045bc076f879 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: firefox-dev Priority: extra Section: devel Installed-Size: 256 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Depends: firefox (= 28.0+build2-0ubuntu2) Conflicts: xulrunner-1.9-dev, xulrunner-1.9.2-dev, xulrunner-2.0-dev Filename: pool/main/f/firefox/firefox-dev_28.0+build2-0ubuntu2_i386.deb Size: 22276 MD5sum: 4e82fac132b2af09f3cac3a3ddca1cac SHA1: ab45a049bdc663bee3626d88c9c24fc512bba685 SHA256: 9a9371ab1abd4ce3c6119d6e25c423aea95c776f2a130a96673434ecbc2bde31 Description: Safe and easy web browser from Mozilla - development files Description-md5: e6b1c31ba86625fb8e5f17ebd7dfd6c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: firefox-globalmenu Priority: optional Section: web Installed-Size: 171 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Depends: firefox Filename: pool/main/f/firefox/firefox-globalmenu_28.0+build2-0ubuntu2_i386.deb Size: 8318 MD5sum: 688d96a44df4c34b49d7cce77de1a60b SHA1: 5cbc09b6d57f9718d95f37962583a25101f1a17c SHA256: 927cbd3bb1161ffa66746f41e4febac79db9da1d270a66cebc98656ef27370c5 Description: Safe and easy web browser from Mozilla (transitional package) Description-md5: 1b267431605d90f28d4104239bf87ff8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: firefox-locale-af Priority: optional Section: web Installed-Size: 592 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-af-base Filename: pool/main/f/firefox/firefox-locale-af_28.0+build2-0ubuntu2_i386.deb Size: 337170 MD5sum: 79e8500e3721957ecfb10fe73cb0e5be SHA1: a670500de7c112771584d6df209fddd66a9a219d SHA256: 572b129bffc87866e1bacd4208bf752b08e0cfd852c8743a6f66dc4b183ab264 Description: Afrikaans language pack for Firefox Description-md5: 1f2d31c5ec337989fa73d4561a877f98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-an Priority: optional Section: web Installed-Size: 593 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-an-base Filename: pool/main/f/firefox/firefox-locale-an_28.0+build2-0ubuntu2_i386.deb Size: 341428 MD5sum: 33f8c75bc3ffd4fd092ac2dbca359919 SHA1: 07db00ed033e56c1390626b4946cf427290d2976 SHA256: 906b3654c7dbb4a693c8abe11d054da1d316ced2246609ab08a5abec5002e761 Description: Aragonese language pack for Firefox Description-md5: 84dc3959cabfc22bb848244498e5653a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ar Priority: optional Section: web Installed-Size: 621 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ar-base Filename: pool/main/f/firefox/firefox-locale-ar_28.0+build2-0ubuntu2_i386.deb Size: 366792 MD5sum: f9bd1eb23dbed93ccbd0f4607db83387 SHA1: c88ecacd2c4584d2ad8bba2034e0622efeb40d16 SHA256: e22c07ba028b56b3faa3a31be4e3917df78179b78242880c5d8c59e771d07be7 Description: Arabic language pack for Firefox Description-md5: a5123286dfa8a3ded7978c0ec00ec6f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-as Priority: optional Section: web Installed-Size: 626 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-as-base Filename: pool/main/f/firefox/firefox-locale-as_28.0+build2-0ubuntu2_i386.deb Size: 378704 MD5sum: d9dc86497e0d87a86787b544a84f09f3 SHA1: 5c0c3b0467363a6c803ce30ba596aaedbb11d766 SHA256: 92f8b2705b28a3bd3d0858d5103920d8215ecf2b075f23869ea0be10922cb352 Description: Assamese language pack for Firefox Description-md5: 9c46a24962d3692dcff9f290ff8f2e5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ast Priority: optional Section: web Installed-Size: 540 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ast-base Filename: pool/main/f/firefox/firefox-locale-ast_28.0+build2-0ubuntu2_i386.deb Size: 286860 MD5sum: 478b9813edb70d0da215421e5a68814f SHA1: 81676e7abfd02c52f4cda033b32fc9bcd79e115d SHA256: f15343d31b4c60c66694505377923d065a67440aae56ff28a25b6f00ff0d4e78 Description: Asturian language pack for Firefox Description-md5: f648bf0b51344fe4fc8b6419faaf903f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-be Priority: optional Section: web Installed-Size: 574 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-be-base Filename: pool/main/f/firefox/firefox-locale-be_28.0+build2-0ubuntu2_i386.deb Size: 317466 MD5sum: dde9cf27e20e5248b3b3115a17df80d5 SHA1: f83d4743c6f6d61015aac8b7e57f39b02f2f825e SHA256: b9def5af17726decae4164c919b254e9a86c61b9664a7606a3a007534fe30f0d Description: Belarusian language pack for Firefox Description-md5: 7b231b0d3f58acf262a12b2168cb358c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-bg Priority: optional Section: web Installed-Size: 613 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-bg-base Filename: pool/main/f/firefox/firefox-locale-bg_28.0+build2-0ubuntu2_i386.deb Size: 363804 MD5sum: e4af3235878b329d90ca94af3b3097f2 SHA1: eda2f0d48ae29c3eec3685a9a008afa7329bf6a6 SHA256: b9452b6cc8d1f9cc80f7064b69bdd05d7fcbd49e6fb57d0197f77882d53fdb20 Description: Bulgarian language pack for Firefox Description-md5: a6418377c6a1864fbec5d0096027c80b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-bn Priority: optional Section: web Installed-Size: 1096 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-bn-base Filename: pool/main/f/firefox/firefox-locale-bn_28.0+build2-0ubuntu2_i386.deb Size: 749298 MD5sum: 393ff3ebf368fd223885ebd86be5fb5d SHA1: 3b4489d7526012678c23541ecf4dae2d99b5b451 SHA256: 24eaf4f5acc4da826afa4f8eb64a564fef1ff1333c1e49c37d3dc21cd29193a9 Description: Bengali language pack for Firefox Description-md5: cd17d1988001fce46f906d72ce3c6612 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: firefox-locale-br Priority: optional Section: web Installed-Size: 579 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-br-base Filename: pool/main/f/firefox/firefox-locale-br_28.0+build2-0ubuntu2_i386.deb Size: 326884 MD5sum: 4501bae8a6fed2c4866cea01cd3a11ee SHA1: d91e5a0519d3165b8bc4e27b57fd9876d8edbe2c SHA256: c6e209c758451a3793c80047f2ffbb8d06e1637f7a5397a3260efa190c788ec1 Description: Breton language pack for Firefox Description-md5: 880da4a954cd5c32e28bc4be50b8dea2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-bs Priority: optional Section: web Installed-Size: 597 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-bs-base Filename: pool/main/f/firefox/firefox-locale-bs_28.0+build2-0ubuntu2_i386.deb Size: 344326 MD5sum: b41d62f83f0e7e59ec57792d44dc6b3d SHA1: a96494daa9365e53ee40e3d73f7835cf4d63d7e7 SHA256: 00b90e06244f4eb5e8559df852d1445d65242b192ce0ab6ca816a97e4414ec23 Description: Bosnian language pack for Firefox Description-md5: 5ee279fa3b945b639bc360970fc44d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ca Priority: optional Section: web Installed-Size: 592 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ca-base Filename: pool/main/f/firefox/firefox-locale-ca_28.0+build2-0ubuntu2_i386.deb Size: 340118 MD5sum: 9f1f0a3b426baa64b6722ec9dca20fbe SHA1: c80be351408ea2c284ec907c6f5e95ce70de0222 SHA256: 1916c1fdbe9cde33e48aa8d74ed814b326939e16b4ed40b306399e3358d20f89 Description: Catalan; Valencian language pack for Firefox Description-md5: d48166338c00f06f6c36f6214a5a0d8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-cs Priority: optional Section: web Installed-Size: 576 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-cs-base Filename: pool/main/f/firefox/firefox-locale-cs_28.0+build2-0ubuntu2_i386.deb Size: 325950 MD5sum: 35e0173e9c5be404ac534e221bd78600 SHA1: b86925e242ed8afed8533921e3031b2998ce7378 SHA256: 97d8d1ecc74cbebff7b6ec4c39913ea450e6c7b0c3bfa85297abe8c6ec94fd0d Description: Czech language pack for Firefox Description-md5: 9b0b230a019634cdfd1b60f7fd46b813 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-csb Priority: optional Section: web Installed-Size: 569 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-csb-base Filename: pool/main/f/firefox/firefox-locale-csb_28.0+build2-0ubuntu2_i386.deb Size: 315788 MD5sum: a37b8a58ef99c4b08a48c9c7586bab36 SHA1: 292b05f1ec554809a5410038164bac8a0c08142d SHA256: 6ed4f3c2e70c2589a023c634fcd2b155cb38468960a1bbf1f2e10f1682b7cce0 Description: Kashubian language pack for Firefox Description-md5: 76438ffb5606f4d03a5aba83c323a0da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-cy Priority: optional Section: web Installed-Size: 583 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-cy-base Filename: pool/main/f/firefox/firefox-locale-cy_28.0+build2-0ubuntu2_i386.deb Size: 328928 MD5sum: 88a906e1bb66a72df33a531e8e20418c SHA1: 486dcfe02e71462a14b0334db15b7e0631151b2c SHA256: 7790e5870d2c1fa91e35cc3fa49d890bf23f8bef25ef5ebf55f29a888377b758 Description: Welsh language pack for Firefox Description-md5: 9f3df834aa7f35a8968d57963f462187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-da Priority: optional Section: web Installed-Size: 572 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-da-base Filename: pool/main/f/firefox/firefox-locale-da_28.0+build2-0ubuntu2_i386.deb Size: 322532 MD5sum: 0be9f0bf6221b2bbb0110fa3338768ca SHA1: 7e13c4b18db87b07235f1de0abab365ae3a61317 SHA256: f042314a29e61202e80e758f4b2f9ab7cc6a90e7f011071aca2c987f8dd429a3 Description: Danish language pack for Firefox Description-md5: 25350d542907c601644fdbaf48ce9060 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-de Priority: optional Section: web Installed-Size: 589 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-de-base Filename: pool/main/f/firefox/firefox-locale-de_28.0+build2-0ubuntu2_i386.deb Size: 333514 MD5sum: 5445215e150de36a03188a26c91f9478 SHA1: f400e1e5ae01026691d0207e2d0888a45b153347 SHA256: 86a2ce1df9193127de192e52c6c2f09717d87e63a9c890e57d76aa046d6ede7a Description: German language pack for Firefox Description-md5: 97a5b441966c2394117490ceebbb8584 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: firefox-locale-el Priority: optional Section: web Installed-Size: 619 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-el-base Filename: pool/main/f/firefox/firefox-locale-el_28.0+build2-0ubuntu2_i386.deb Size: 366352 MD5sum: 51a645b6f46c997f50b6ec8ead1bedf1 SHA1: d76df3f8052d853bc9088abee53ca8d0e6c03d9e SHA256: 885a330120b390b0f0c8b1b63f351bc6dbce87b4bc9511abff0c4435b9888dc5 Description: Greek language pack for Firefox Description-md5: f0378f5c3eae2c3f377fbc483e6581b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-en Priority: optional Section: web Installed-Size: 939 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-en-base Filename: pool/main/f/firefox/firefox-locale-en_28.0+build2-0ubuntu2_i386.deb Size: 521002 MD5sum: 45040630140e7f7fa67190a49fa670ba SHA1: 0d6f801ffa51136f237f87f0a3f47a1cfe1c07f5 SHA256: 5333ed4b772ad5cc4ebc151498c6cb18debf9b88631e4f100991a2993eff78ff Description: English language pack for Firefox Description-md5: 59e7e034b5f9626737da9a2c21a3e6b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: firefox-locale-eo Priority: optional Section: web Installed-Size: 598 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-eo-base Filename: pool/main/f/firefox/firefox-locale-eo_28.0+build2-0ubuntu2_i386.deb Size: 340040 MD5sum: f334ca55d705750949caaf36f29652cd SHA1: 07bdd1c172c8b05d064822672d27761fc43b13d2 SHA256: fbd46641cb4e26c26617110164da023687fc4051081d9da2fbcaeca968da1e35 Description: Esperanto language pack for Firefox Description-md5: 1b15bec1df3ef8869a632d474dfb2589 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-es Priority: optional Section: web Installed-Size: 1656 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-es-base Filename: pool/main/f/firefox/firefox-locale-es_28.0+build2-0ubuntu2_i386.deb Size: 1106182 MD5sum: eefd1effa35ca34fd3159a590701baeb SHA1: 7bbec18e966d121d1d4de52b473a6812453a43cd SHA256: 8139b0100c7db4113abf64ae8818b71b29b43a39b9e91bfda5b6e2402ac5a1aa Description: Spanish; Castilian language pack for Firefox Description-md5: 30083dcb82dfa2029aeabd0206ce0f4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: firefox-locale-et Priority: optional Section: web Installed-Size: 567 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-et-base Filename: pool/main/f/firefox/firefox-locale-et_28.0+build2-0ubuntu2_i386.deb Size: 317184 MD5sum: 48215c43019eb291c4dadbfeeeaf3556 SHA1: 60654dc1aa8b7aa80221ddd1852ff5b967095d52 SHA256: aa037170c3f221a52f36083e8d885c5d8e86d3d19ebdb5050bf2749a09d9274a Description: Estonian language pack for Firefox Description-md5: 334b47c1e5a384da36ae89623fec8e70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-eu Priority: optional Section: web Installed-Size: 597 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-eu-base Filename: pool/main/f/firefox/firefox-locale-eu_28.0+build2-0ubuntu2_i386.deb Size: 340070 MD5sum: f4556da41eedfb2ac5b00d0361c1be0f SHA1: 79176b9aa20c56e5b7e58dcf63a1d69b4a23667b SHA256: 273088229810dbdeb6770f6b038897cd65f300446d54a46b6f90c2536a5ffd5b Description: Basque language pack for Firefox Description-md5: af348a109ea600cac4199bf41ea027f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-fa Priority: optional Section: web Installed-Size: 632 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-fa-base Filename: pool/main/f/firefox/firefox-locale-fa_28.0+build2-0ubuntu2_i386.deb Size: 378778 MD5sum: b565e5c276dedb6ae2b36bce668f29a0 SHA1: f3ea1a062cb544df2babb9a887e01f3ef0063def SHA256: 1d50c3336028d8e28cad9e28399889b054b5c0c5a512f555be16ffbe61478625 Description: Persian language pack for Firefox Description-md5: 39c9ec90bfa422dbe322c5144c9719eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-fi Priority: optional Section: web Installed-Size: 582 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-fi-base Filename: pool/main/f/firefox/firefox-locale-fi_28.0+build2-0ubuntu2_i386.deb Size: 329876 MD5sum: ba66b60a9d1a16543e00df594772d0c1 SHA1: be70d41b30e9baa14e89361e676538bb383c7ade SHA256: 4a111ccf46b7e0a146b598443b7b4a58f6d97793463dd6a6c9486e8b916abbbf Description: Finnish language pack for Firefox Description-md5: 845195bd76d02590d0c2a74ed1b5c5f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-fr Priority: optional Section: web Installed-Size: 603 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-fr-base Filename: pool/main/f/firefox/firefox-locale-fr_28.0+build2-0ubuntu2_i386.deb Size: 346288 MD5sum: 8c68917d0f5209119360a45198a7c2b3 SHA1: fc0ead8c415a4227f98949ca0a25425e25c4a7e7 SHA256: f5ebc250ac4bf534ba3a2f28aee764370fad267ea5721bc636dca3de3b37eb71 Description: French language pack for Firefox Description-md5: 4b599250252777b1f0b2e86222826241 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: firefox-locale-fy Priority: optional Section: web Installed-Size: 593 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-fy-base Filename: pool/main/f/firefox/firefox-locale-fy_28.0+build2-0ubuntu2_i386.deb Size: 338456 MD5sum: 30bf7f0f93bd03b0ea2b4f74e41d5b93 SHA1: 1839066bba1c2630a4f0c11ff487e1e39cf173f8 SHA256: 2702ee0c7c395308d1d2e6eb1836a38194d28cdcf27247ffe37e11cccad4beda Description: Western Frisian language pack for Firefox Description-md5: 73e0293d227dc25de2183bbda4ffb994 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ga Priority: optional Section: web Installed-Size: 600 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ga-base Filename: pool/main/f/firefox/firefox-locale-ga_28.0+build2-0ubuntu2_i386.deb Size: 344446 MD5sum: 1e26145bc5a279efbf2f8255b5184635 SHA1: 4d403d42bdf9fe3b1aeb0347821ac6f2c885db0b SHA256: dead1e2a6afb99e8c6685d332e302a1c1ddb4ecf2d69cfa8a6bae81739705ae7 Description: Irish language pack for Firefox Description-md5: 3989bf0d690ce80122175c0328ae435d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-gd Priority: optional Section: web Installed-Size: 590 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-gd-base Filename: pool/main/f/firefox/firefox-locale-gd_28.0+build2-0ubuntu2_i386.deb Size: 338494 MD5sum: 5f06dfe784183c301999784454b168e4 SHA1: faa5663d8e187d78e15bfc0b9ae4ad9559508420 SHA256: 7c44c98e9e4cdadc0649b72237acbd8eb863fa19759eff215c1211ae4711d606 Description: Gaelic; Scottish Gaelic language pack for Firefox Description-md5: f88ffac5fcd5341c9502358cb67b49f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-gl Priority: optional Section: web Installed-Size: 574 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-gl-base Filename: pool/main/f/firefox/firefox-locale-gl_28.0+build2-0ubuntu2_i386.deb Size: 325450 MD5sum: 5b45982bde89434ce00be95ca6ffbd2f SHA1: f353b445929ee8deb04373e92a6dfb4be2957d1d SHA256: d3e5825358b0c5bc138b189157ab2300dc629ec9c2c014d3c446f37580eb04d3 Description: Galician language pack for Firefox Description-md5: f411e16f3f4a2f154a90570e3ca52ef8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-gu Priority: optional Section: web Installed-Size: 607 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-gu-base Filename: pool/main/f/firefox/firefox-locale-gu_28.0+build2-0ubuntu2_i386.deb Size: 353444 MD5sum: 009df8ec4bcda91be2a60f29d0fa0679 SHA1: 6c3c2665dbf2ad2f1df47caf8ac57476fe4c93b3 SHA256: 7d12e73566775836dc0ae98c454ed3da1eedf0d4118670513a40911a4236a588 Description: Gujarati language pack for Firefox Description-md5: c646198c5d0155da51530f8b2225818b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-he Priority: optional Section: web Installed-Size: 601 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-he-base Filename: pool/main/f/firefox/firefox-locale-he_28.0+build2-0ubuntu2_i386.deb Size: 353794 MD5sum: 1f6dbef103c08294d82eac1a711d8746 SHA1: 6aae768edbd12f731af12a7d7df24d04b744d487 SHA256: 7132d860a5e839c7ec228069f9be2f6213b1437566a86e6affe40740878fb3c4 Description: Hebrew language pack for Firefox Description-md5: 8d33d6616f2426b1fe3287417f0d7949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-hi Priority: optional Section: web Installed-Size: 623 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-hi-base Filename: pool/main/f/firefox/firefox-locale-hi_28.0+build2-0ubuntu2_i386.deb Size: 372470 MD5sum: dd558b21d89208fac61c77a188aabff1 SHA1: 095ba599d4c3a257745ee48985391caced2a7664 SHA256: 7ddebe948d830c0bb849820780b68de77a4ff8d3c600eea6019401889f91caa5 Description: Hindi language pack for Firefox Description-md5: 29f96336756fa58ec44eefd686bd6e85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: firefox-locale-hr Priority: optional Section: web Installed-Size: 604 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-hr-base Filename: pool/main/f/firefox/firefox-locale-hr_28.0+build2-0ubuntu2_i386.deb Size: 347712 MD5sum: f910487887a7fab015ab8cc26dc3de34 SHA1: e05a0a6ce1118327d51a0edd64a28eacfe1bc6d0 SHA256: dccc2e940d39b58c493290a3a86916dd525a91f742460176be67052db87f67bb Description: Croatian language pack for Firefox Description-md5: 4138741435206cca66b4c3941d2b6e82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-hu Priority: optional Section: web Installed-Size: 583 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-hu-base Filename: pool/main/f/firefox/firefox-locale-hu_28.0+build2-0ubuntu2_i386.deb Size: 335324 MD5sum: 2d3721f7b65bb9d94f3d53f34d1846e8 SHA1: ea078f0e0fdeff529153899e2800c25bbe750e38 SHA256: 76f152708a5cd0ba7ea5193a50e7436ede134ba9dc5854a5a8069db1d5287561 Description: Hungarian language pack for Firefox Description-md5: 7587d24fac9230de0dab2a74b1b3c298 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-hy Priority: optional Section: web Installed-Size: 638 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-hy-base Filename: pool/main/f/firefox/firefox-locale-hy_28.0+build2-0ubuntu2_i386.deb Size: 386932 MD5sum: 3bc33f43969bdaeb2c6dc4ebf3adb173 SHA1: 7ef5c77c95a474ae88849be5683367f95d260577 SHA256: 3a3406a789cfb972fde88df1978a03608be9b379ce72ed3144995deee864590f Description: Armenian language pack for Firefox Description-md5: 2278344f15e1efe17aecd1af5a2be846 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-id Priority: optional Section: web Installed-Size: 561 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-id-base Filename: pool/main/f/firefox/firefox-locale-id_28.0+build2-0ubuntu2_i386.deb Size: 313754 MD5sum: 24c9e030e2b524c84925c387e180b303 SHA1: 64f33b0def353c7b9ec1f4cef5c6376aff8d1d44 SHA256: f55d7e6cb8f0afada31ce61ab220e14f5830326192889ff035d2bfd4e7064e08 Description: Indonesian language pack for Firefox Description-md5: 568a225a428289bfedbfee77f12ef445 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-is Priority: optional Section: web Installed-Size: 592 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-is-base Filename: pool/main/f/firefox/firefox-locale-is_28.0+build2-0ubuntu2_i386.deb Size: 335338 MD5sum: 5e8d70e3ed0ffe95126e30431595caec SHA1: e514d490c9de2ca66b4fd05d41bcb51dbdcdf42c SHA256: 4c961a625599d88ffc87fb0b8ec1226e8b06399c42f353cf3977f632f803e7db Description: Icelandic language pack for Firefox Description-md5: 3a574633745f9b6d97f07f1c738599a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-it Priority: optional Section: web Installed-Size: 536 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-it-base Filename: pool/main/f/firefox/firefox-locale-it_28.0+build2-0ubuntu2_i386.deb Size: 276960 MD5sum: 4b7b69a27404f4749e921152d699d019 SHA1: 7e0958302afbc7af4a11d5fefa52fbd626290f18 SHA256: 8a14de7e096d9a22987e24646d568786d7d04f3220b522e9ce5ef351f6f3013c Description: Italian language pack for Firefox Description-md5: 67e195ac5003115f8cafa0ec0b0ec849 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-ja Priority: optional Section: web Installed-Size: 622 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ja-base Filename: pool/main/f/firefox/firefox-locale-ja_28.0+build2-0ubuntu2_i386.deb Size: 370266 MD5sum: edf15027ff9d683fe47ed23cb342d0f1 SHA1: 898d686c96a3ac5d07e7b95dcbff6287e79f46cd SHA256: b288896d44fc32000daf0e7a1c17bec085d22d8b94de865bfb2a8c6ce0067773 Description: Japanese language pack for Firefox Description-md5: aa0b0e800989cac3ce480ef7507c17d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live Package: firefox-locale-ka Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-ka_28.0+build2-0ubuntu2_i386.deb Size: 10398 MD5sum: 9cd21bb69a82053740560b0f31ecbe7b SHA1: 474f9414faae84f86f14e34a0c20776ac9dc74c9 SHA256: 670eb1589f7ac008d64bfc705a5e332dd3533f7fdce9fd8ab557ec5834d58846 Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-kk Priority: optional Section: web Installed-Size: 622 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-kk-base Filename: pool/main/f/firefox/firefox-locale-kk_28.0+build2-0ubuntu2_i386.deb Size: 372968 MD5sum: db38b370c0ce607aba68dda6a68b3e55 SHA1: 42146624c07b2ed1ddc3cc66c893a18cf5ba8240 SHA256: 238c49148fb8d6e7aba07f70ec006ff3038e7ba6df6c92d87f52b8724168f03e Description: Kazakh language pack for Firefox Description-md5: 98ad9668e81080f67619b3468ea616a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-km Priority: optional Section: web Installed-Size: 664 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-km-base Filename: pool/main/f/firefox/firefox-locale-km_28.0+build2-0ubuntu2_i386.deb Size: 410494 MD5sum: 4e4ea0503af84248cfab79b4b383ce52 SHA1: de6df17d3524cb76e485d5c5ba84e4b431c92da4 SHA256: 2396902a0787d29a08e8df42cdbe8d28cb7e023a12698bb10d1bbeda2572ba1b Description: Central Khmer language pack for Firefox Description-md5: 5244e85b69105bab39ff55a3e06c2079 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-kn Priority: optional Section: web Installed-Size: 637 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-kn-base Filename: pool/main/f/firefox/firefox-locale-kn_28.0+build2-0ubuntu2_i386.deb Size: 388188 MD5sum: 7b5d52bb5f3d4c5417f593b512259cde SHA1: 76e06f363ee03b5c1ec9c4249247c7686e90f143 SHA256: d562a8d77c6b074732437d447be18ed6f9c7fb44613ca0a88babbef6dab33028 Description: Kannada language pack for Firefox Description-md5: 609de6cf2cadf99b292a639def3e15db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ko Priority: optional Section: web Installed-Size: 587 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ko-base Filename: pool/main/f/firefox/firefox-locale-ko_28.0+build2-0ubuntu2_i386.deb Size: 333224 MD5sum: 1556466ae4acfd029a35f5f08b8ca01a SHA1: d6a78aede4af7792c151208f1093495c5e1ac432 SHA256: a746e8e984b34a350a5d63731b8c03828eed96d2e43d60a2752c963d436af9b0 Description: Korean language pack for Firefox Description-md5: 7477cc3b85c1cc2886c7438ffec39b8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ku Priority: optional Section: web Installed-Size: 601 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ku-base Filename: pool/main/f/firefox/firefox-locale-ku_28.0+build2-0ubuntu2_i386.deb Size: 348072 MD5sum: bd8d238d866478d6687bf24115ba60c4 SHA1: 2eb1c0da4b2b4a501786303ac4e5466bb64c4b51 SHA256: c5774beb77152fc249bdeeb95f80879f971c643f878d05b2827751deee23d78e Description: Kurdish language pack for Firefox Description-md5: 9eb28b49c217558a45aff76b83b8990f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-lg Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-lg_28.0+build2-0ubuntu2_i386.deb Size: 10404 MD5sum: 28bf81bc555b4587c170a7c2eb234c94 SHA1: e9e756d3d81d7824dc44a900af365f7834f6bcf9 SHA256: 2d9830a94b513355db11cd4a0b585025d07a057b3cf1901fe5a9bfde96bb1ff3 Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-lt Priority: optional Section: web Installed-Size: 601 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-lt-base Filename: pool/main/f/firefox/firefox-locale-lt_28.0+build2-0ubuntu2_i386.deb Size: 350568 MD5sum: e596d3d2fd31dfb646962ae9e7928809 SHA1: 6c882044ff878a092b9198aea6c3b0f6018764cb SHA256: 8bc7eaa19369d50b62eeb1e2c1b000186f426bc66b26bc7f27396669f5e2b459 Description: Lithuanian language pack for Firefox Description-md5: 519f3c51c7a90ee972069b44a1acef4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-lv Priority: optional Section: web Installed-Size: 583 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-lv-base Filename: pool/main/f/firefox/firefox-locale-lv_28.0+build2-0ubuntu2_i386.deb Size: 329414 MD5sum: 029e36e8ea2b73eb9129db8d00c1c797 SHA1: 65a25ba707281d3e0de7be01988b45cb4e6b8a21 SHA256: 6a4665e3702d43fcd5cb2dc0fc7a746d6849a21150d1b93769c492b5f6525a4c Description: Latvian language pack for Firefox Description-md5: 355c458949586e8977646d1ce6c5096d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-mai Priority: optional Section: web Installed-Size: 626 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-mai-base Filename: pool/main/f/firefox/firefox-locale-mai_28.0+build2-0ubuntu2_i386.deb Size: 375944 MD5sum: bd9908c3dbb6885511f350be527ef55f SHA1: 3f0e14141dc8fb64e260b609ef16643c82320bb7 SHA256: f637e98c96460c9c10e5af90b81caec596e3b8b1362eef8c2e38cba164704d3e Description: Maithili language pack for Firefox Description-md5: 9fd42103512e10b616b758b3e6da26f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-mk Priority: optional Section: web Installed-Size: 638 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-mk-base Filename: pool/main/f/firefox/firefox-locale-mk_28.0+build2-0ubuntu2_i386.deb Size: 382146 MD5sum: 3dcbc2661b97c31c9c950a10aecf6355 SHA1: 822a4a64482f1222bcfa3dd2d41c6399ef1b602d SHA256: f78e6e79bc74bce68dbe5b93e2b73baa7440cad6696232f7d99d1acc7169ad58 Description: Macedonian language pack for Firefox Description-md5: 0731fc46c1b1fae2ba6f6b1105017640 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ml Priority: optional Section: web Installed-Size: 649 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ml-base Filename: pool/main/f/firefox/firefox-locale-ml_28.0+build2-0ubuntu2_i386.deb Size: 397280 MD5sum: c316d72899d7daf44c27d776169bd785 SHA1: 8d84859d788a98db454e999bacf4a93e628269d4 SHA256: dc89e8cec1432642ebc4abf89d30a197d499570e0783a759e3592d325ffd93dc Description: Malayalam language pack for Firefox Description-md5: 90093d1da853cba1ef56fb07a5d3ccff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-mn Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-mn_28.0+build2-0ubuntu2_i386.deb Size: 10394 MD5sum: 65170f041a227bb621bc986dc1bada7f SHA1: f1a46481e91d6689bd7e011e582d893b69ce671c SHA256: e560222d7e540aa941d12610d3b3cc0a99d7757db9dd69396f74d726bb5b6056 Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-mr Priority: optional Section: web Installed-Size: 622 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-mr-base Filename: pool/main/f/firefox/firefox-locale-mr_28.0+build2-0ubuntu2_i386.deb Size: 370830 MD5sum: d1158ba47205f0a13764d8182705245e SHA1: ecd88a694959e59599769c324b2bcc8affbf7bb7 SHA256: fb58e4724fca7ae8ddab1251574250777529e4dada491d3df5414a5bc3406db1 Description: Marathi language pack for Firefox Description-md5: b7ac24ce2d3f6d087e9a9bbf9c956d6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ms Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-ms_28.0+build2-0ubuntu2_i386.deb Size: 10402 MD5sum: 8a8c7ecddb32ec50cdde274d11e8a064 SHA1: 929e76b802ca1ef63cd26f00b73fcdb922eb6de9 SHA256: f53eaeb596db932e916afd6030d6cc235327f506339696631add931d7d5af067 Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-nb Priority: optional Section: web Installed-Size: 584 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-nb-base Filename: pool/main/f/firefox/firefox-locale-nb_28.0+build2-0ubuntu2_i386.deb Size: 327232 MD5sum: a0e3c9d56f99d3d90459b8f6be535339 SHA1: 283d5e191a7a3f2e8c068c6551792f7fd0f407d2 SHA256: d5aaabdd95565726dc0693a39abf4fa7f00614d663f2eae777a865e78b9eec99 Description: Bokmål, Norwegian; Norwegian Bokmål language pack for Firefox Description-md5: 8a05e67a1c0fa64d86a13ead1dbd4981 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-nl Priority: optional Section: web Installed-Size: 581 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-nl-base Filename: pool/main/f/firefox/firefox-locale-nl_28.0+build2-0ubuntu2_i386.deb Size: 329504 MD5sum: 7d8a8880654bbe569c763616d7060b5e SHA1: c1980f33c3f95262b712a83cc7b170d0cf52998b SHA256: f84d56abf09ef2c505d6f334770cd1d7056158471fe62cc8266e31c212b6d609 Description: Dutch; Flemish language pack for Firefox Description-md5: c8c7d0f350530c7041fcfc71d8f297a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-nn Priority: optional Section: web Installed-Size: 577 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-nn-base Filename: pool/main/f/firefox/firefox-locale-nn_28.0+build2-0ubuntu2_i386.deb Size: 322584 MD5sum: 252a9d3630ed30294cebc05767c8c323 SHA1: 83cc980021ad205a02722078afe1012246720491 SHA256: 5b632d368a94500da2fb35c4880f86e9592cd9274c962ab7292b8982e6d65a7c Description: Norwegian Nynorsk; Nynorsk, Norwegian language pack for Firefox Description-md5: a2434677506d5d2ae1b6f340d5e3b2ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-nso Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-nso_28.0+build2-0ubuntu2_i386.deb Size: 10396 MD5sum: 55c775125b84007df6fcb99965ce76c2 SHA1: 1f36904ef6fe6c482e0a0ddddb530121f38894f2 SHA256: 4a1421ab9d7b2921f4a7e7a18da4a74ee84859a2b4e60535f724c2f1e930d657 Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-oc Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-oc_28.0+build2-0ubuntu2_i386.deb Size: 10402 MD5sum: abdb788e2c9ff01f55b9b0766415b312 SHA1: d52d23d472a6d8209c85af5ce6a93b7af1967aab SHA256: 1e09ea260755e49ecb1057f4f17d71e08a8ee740b3240205dd0020e5a89f0d04 Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-or Priority: optional Section: web Installed-Size: 643 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-or-base Filename: pool/main/f/firefox/firefox-locale-or_28.0+build2-0ubuntu2_i386.deb Size: 393766 MD5sum: 3bd07fd80879e072e9707be51a99615a SHA1: 442519b8696b047df30886dfdb53bd9aa6371939 SHA256: 21a8c956e1dbcaa7199bfd2d64578842edf0f183171aa441025bc593ab64fd9a Description: Oriya language pack for Firefox Description-md5: 5135d4190ce2532be58c91c5fd3f319b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-pa Priority: optional Section: web Installed-Size: 617 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-pa-base Filename: pool/main/f/firefox/firefox-locale-pa_28.0+build2-0ubuntu2_i386.deb Size: 365666 MD5sum: 544d8d16549baa41d908351e0ded79f0 SHA1: 7eb5147273daf732f5ba3fce8953e05c8b030fcd SHA256: 882abda2a45ca15800c855ac176d3572d7ef490d22c9ad0f9395631b345325bc Description: Panjabi; Punjabi language pack for Firefox Description-md5: 3bfbd21e289c4d4ef3e9bd89d92a048f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-pl Priority: optional Section: web Installed-Size: 572 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-pl-base Filename: pool/main/f/firefox/firefox-locale-pl_28.0+build2-0ubuntu2_i386.deb Size: 320992 MD5sum: 55d9cfbe66d89d82ce6392e5231b728a SHA1: 575009d0b323ccacdaafde11162d8a5d5dcdbd5f SHA256: d0535f8c07c67f6565c7dca94e4539cc5fcde4fbd8c533fefe53f14f552d8a7a Description: Polish language pack for Firefox Description-md5: ffd73141d32fab7a8990d3663208d5ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-pt Priority: optional Section: web Installed-Size: 969 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-pt-base Filename: pool/main/f/firefox/firefox-locale-pt_28.0+build2-0ubuntu2_i386.deb Size: 633254 MD5sum: cbf4267cde58b6b0506ff64c3e51ce4a SHA1: 7cfebeee7292238ca773d69856ed9ff27875764f SHA256: f52b491157488194ad22828bd336aa8cc1a2e63cf2e35401973be2738fe46576 Description: Portuguese language pack for Firefox Description-md5: ba400e83844c93550cd9bbb88c3f610f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: firefox-locale-ro Priority: optional Section: web Installed-Size: 621 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ro-base Filename: pool/main/f/firefox/firefox-locale-ro_28.0+build2-0ubuntu2_i386.deb Size: 366600 MD5sum: 3ddae886c3b315b4b3c306784c9b7fd2 SHA1: 0a24b777f7b756cdfc76b9c08910bd93603bdab1 SHA256: eba04bfd4944adad273bea64fd38567d3bf0de76d77fecb217ead6dbb6293f57 Description: Romanian language pack for Firefox Description-md5: bfe768497923b95b007c38b40a8b5c77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ru Priority: optional Section: web Installed-Size: 565 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ru-base Filename: pool/main/f/firefox/firefox-locale-ru_28.0+build2-0ubuntu2_i386.deb Size: 309986 MD5sum: 6ef7fa4f3e01f7314b5f405f9eadac66 SHA1: e4a3a4df5cd01e46924097e2ad322a28ff0dec05 SHA256: 05bcfdcd05b4b0932640186d080c3ff75e8edb4a20518f251e3d0130972e801b Description: Russian language pack for Firefox Description-md5: b936b6c575ae73b427a148a37de4ebd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, lubuntu-live Package: firefox-locale-si Priority: optional Section: web Installed-Size: 624 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-si-base Filename: pool/main/f/firefox/firefox-locale-si_28.0+build2-0ubuntu2_i386.deb Size: 373828 MD5sum: c0865eda286a38abf37c07c16732231a SHA1: 318b23bccd715ae1fff0f283b878339f66ff7e8c SHA256: 0c207d8789fc574560050f01fe0f0df2fa61ae5c05e3035a7b86abe1ef679a70 Description: Sinhala; Sinhalese language pack for Firefox Description-md5: d336ad9f3d64d9c8b369c2627a15f388 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-sk Priority: optional Section: web Installed-Size: 590 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-sk-base Filename: pool/main/f/firefox/firefox-locale-sk_28.0+build2-0ubuntu2_i386.deb Size: 339734 MD5sum: e3ccc65a09b3f911708d17658b4eaea2 SHA1: 81c118e951baceb0339328d45164ea0b54f0c930 SHA256: 9f07846c192488f109aca5345a020ecba72d3d34dca95df0bc330142c93b0d4e Description: Slovak language pack for Firefox Description-md5: 66f1264b5485237c1ea88079ced9a6a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-sl Priority: optional Section: web Installed-Size: 573 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-sl-base Filename: pool/main/f/firefox/firefox-locale-sl_28.0+build2-0ubuntu2_i386.deb Size: 322936 MD5sum: 3211c4fccfd57e65410a72d9db4f42c0 SHA1: ef9e9ec08f89f8ac90c862433eaba4f11d6ed68f SHA256: ab77794a3ca112c165f0f8e5c02b5900b4c2882d856d1511c5e247ba2a14e531 Description: Slovenian language pack for Firefox Description-md5: 6fe2fc03696fbf18b2bf180914ee1eb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-sq Priority: optional Section: web Installed-Size: 598 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-sq-base Filename: pool/main/f/firefox/firefox-locale-sq_28.0+build2-0ubuntu2_i386.deb Size: 343874 MD5sum: 317093cd00b34bb81359169abeac062d SHA1: 4628a0e80080bc54c1443e89144e369a486805ff SHA256: f08ff129fb0518df6f300b775fd9a479351c0986c2a79f8f250b4bb58cfe7f01 Description: Albanian language pack for Firefox Description-md5: 6c9c10ead9f18734cd4a77e1c53deb4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-sr Priority: optional Section: web Installed-Size: 630 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-sr-base Filename: pool/main/f/firefox/firefox-locale-sr_28.0+build2-0ubuntu2_i386.deb Size: 379422 MD5sum: eae9d3021aafaf58285a8a80e15d6295 SHA1: e9190b4b96675a34e047aac636a1bc0c4a9050b1 SHA256: 1c87bd82dc127498447a9bbd5fe2a54c30dd9487067e518e897423304e70148f Description: Serbian language pack for Firefox Description-md5: 8d2109908f20a4405f139a82593c158f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-sv Priority: optional Section: web Installed-Size: 588 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-sv-base Filename: pool/main/f/firefox/firefox-locale-sv_28.0+build2-0ubuntu2_i386.deb Size: 332488 MD5sum: 5ca5eebb8b77639351ce489433793d4d SHA1: aa65c00f187793ce97c3c402eaa6a7aba5b1dfd1 SHA256: fc4ab013f92aa115d44900c0e72696e637bfef8ad1ce71098d54dbbb437c5d57 Description: Swedish language pack for Firefox Description-md5: 2ea193ea12432f41b53f83a470b59148 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: firefox-locale-sw Priority: optional Section: web Installed-Size: 183 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Filename: pool/main/f/firefox/firefox-locale-sw_28.0+build2-0ubuntu2_i386.deb Size: 10394 MD5sum: 2bae22ac91a0df4022486dba4cf776cb SHA1: f4f86444684038cdfc2e92b62c3c05467d72256b SHA256: 1dc64ff288fd2de5dd5d725e00c14a87e25cb055fc75454024969f22499cb94e Description: Transitional package for unavailable language Description-md5: bc79d90071e5d3639a93287638590a8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-ta Priority: optional Section: web Installed-Size: 630 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-ta-base Filename: pool/main/f/firefox/firefox-locale-ta_28.0+build2-0ubuntu2_i386.deb Size: 382346 MD5sum: accbcbf00d74759c5a540850d8f7983a SHA1: d7c761977b0d499f906abd24434a0598206610c0 SHA256: 00d241bc53d15fd223dd7e9896d24de6369c4ff9f999041bb8a7a0476d43b682 Description: Tamil language pack for Firefox Description-md5: 6ccedad7af96901a91334720c56bd490 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-te Priority: optional Section: web Installed-Size: 645 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-te-base Filename: pool/main/f/firefox/firefox-locale-te_28.0+build2-0ubuntu2_i386.deb Size: 395924 MD5sum: e4ee9346b22668496fe9324a92733d90 SHA1: abdcfe8a8193a1cc150be2bf42e8b7b0bffb4b14 SHA256: eff2b4661667b48ec4d274f71e31e1ee27069387628dbb0128a7bdc79c3bf92d Description: Telugu language pack for Firefox Description-md5: d66752b03661f62d700263ab82e868e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-th Priority: optional Section: web Installed-Size: 640 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-th-base Filename: pool/main/f/firefox/firefox-locale-th_28.0+build2-0ubuntu2_i386.deb Size: 384482 MD5sum: 3db178e6895cf6af2cee711bf373f2cb SHA1: 7347388de202c0a29b286e1d1f5f806f1c23cd1b SHA256: 1d2b97d91922a90e21b00b6332bfd4dd36a68a25a2e7f596bcd15387d8506a61 Description: Thai language pack for Firefox Description-md5: cc27bcd11daedf111f9aab87632f7263 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-tr Priority: optional Section: web Installed-Size: 585 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-tr-base Filename: pool/main/f/firefox/firefox-locale-tr_28.0+build2-0ubuntu2_i386.deb Size: 334092 MD5sum: 314b8d7605f9fed9e4bd05059ca39a16 SHA1: 0c65e96491cece96d820e2c5e9d3a3e3cfb5971e SHA256: 6dddae097166a0722643b92518d6bc0e9c7d70fd6f6f7c4e2d2de19068f0f000 Description: Turkish language pack for Firefox Description-md5: 3c205697910b54cdfc483ed64de82490 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-uk Priority: optional Section: web Installed-Size: 604 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-uk-base Filename: pool/main/f/firefox/firefox-locale-uk_28.0+build2-0ubuntu2_i386.deb Size: 357752 MD5sum: 586ae601153611525b62b3b6077a2011 SHA1: 5636861ef4fc9220941536724d0cf5052bad4bd4 SHA256: 86c383dae708c94f8d8ea3b35715fa3655de09652ea3bcf93f8f5785930efdef Description: Ukrainian language pack for Firefox Description-md5: ba467b5c78e88b367e14f3ac484d3816 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-vi Priority: optional Section: web Installed-Size: 606 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-vi-base Filename: pool/main/f/firefox/firefox-locale-vi_28.0+build2-0ubuntu2_i386.deb Size: 352434 MD5sum: 14deb2ca8bd3a314e4398c157ded6127 SHA1: 2c3e3038842ef3d0496e8412e5a9345892d086d1 SHA256: 31de057bfb493dff03bddea446b24028df300055f5ae38ed5e64d8e72fc41da7 Description: Vietnamese language pack for Firefox Description-md5: e187907de9840d733e0c8a14eafc65ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-xh Priority: optional Section: web Installed-Size: 576 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-xh-base Filename: pool/main/f/firefox/firefox-locale-xh_28.0+build2-0ubuntu2_i386.deb Size: 328402 MD5sum: e917cb4aa4928bbe6d6042de3fd9b148 SHA1: 1042e6c9549e2fb23d556a758def813ee21978f1 SHA256: 37f1bfe28157180b8bd4b446bcbe358166dbe7b77ad5c370bc798a81bd7df647 Description: Xhosa language pack for Firefox Description-md5: e188707f31d9656051e8d08cd25f43fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: firefox-locale-zh-hans Priority: optional Section: web Installed-Size: 617 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-zh-hans-base Filename: pool/main/f/firefox/firefox-locale-zh-hans_28.0+build2-0ubuntu2_i386.deb Size: 354634 MD5sum: cea80aa062dfb5bb803745e17cf6e445 SHA1: cee47517ea69938c44d50e21b0c2521217345d82 SHA256: 02fd7ac921db357d7a7001b19f14659710d5bc8a95f05d283a9bb3cbec933833 Description: Simplified Chinese language pack for Firefox Description-md5: 3e3ba5b1c9c87d325f38630cc1f5f593 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: firefox-locale-zh-hant Priority: optional Section: web Installed-Size: 599 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-zh-hant-base Filename: pool/main/f/firefox/firefox-locale-zh-hant_28.0+build2-0ubuntu2_i386.deb Size: 346342 MD5sum: 8cd10cfd094619b2db63a96b2fec3fb5 SHA1: 122cadccae2f55ca5f10ceff01ffeeb827900c0f SHA256: 3382794838dca977b7ef8ba1a81cc02dd9274b17d471e24a97dd9fb6b30af4b9 Description: Traditional Chinese language pack for Firefox Description-md5: 344951ca63511f11ceb711b1ac9aa10f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: firefox-locale-zu Priority: optional Section: web Installed-Size: 594 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: firefox Version: 28.0+build2-0ubuntu2 Replaces: language-pack-zu-base Filename: pool/main/f/firefox/firefox-locale-zu_28.0+build2-0ubuntu2_i386.deb Size: 343218 MD5sum: 17b8f0399d71f38c8e86789e0ff1c29b SHA1: 81a870130c0b4fc27848d7ba4046015ced33af68 SHA256: 6fc3c0858e31438372d6467ea7cba5b5d09ccf71943f4810fd60879dd4403260 Description: Zulu language pack for Firefox Description-md5: 17c6d848071fd7a4338f4653918fe50f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: flac Priority: optional Section: sound Installed-Size: 359 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Version: 1.3.0-2 Depends: libc6 (>= 2.7), libflac8 (>= 1.3.0) Filename: pool/main/f/flac/flac_1.3.0-2_i386.deb Size: 148234 MD5sum: 9c15659a9219d4e58602d2b208d3791e SHA1: cc9785c00323ab32db2b9554fe5e9d9c655fad37 SHA256: 2a92aed7eadfaae873d67071aceb68a303b431a7730473fe53b72dbb579589a9 Description: Free Lossless Audio Codec - command line tools Homepage: http://xiph.org/flac/ Description-md5: f1560839832c89e0262853df6c9f7e62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: flex Priority: optional Section: devel Installed-Size: 468 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: i386 Version: 2.5.35-10.1ubuntu2 Depends: libc6 (>= 2.11), m4, libfl-dev (= 2.5.35-10.1ubuntu2), dpkg (>= 1.15.4) | install-info Pre-Depends: debconf | debconf-2.0 Recommends: gcc | c-compiler Suggests: bison, build-essential Filename: pool/main/f/flex/flex_2.5.35-10.1ubuntu2_i386.deb Size: 198826 MD5sum: 27cb81027d75db58240873ec3f8fd3ed SHA1: 253c08edd934d7e3a85beca7c527c7598544dada SHA256: 870bc45e20265ba718ee9872a04d2d95e0af414eeb3129a16c53f0229965df5f Description: A fast lexical analyzer generator. Multi-Arch: foreign Homepage: http://flex.sf.net/ Description-md5: 2e3fd254c37c87fd9abf35386a54cb30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: flex-doc Priority: optional Section: doc Installed-Size: 1561 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: all Source: flex Version: 2.5.35-10.1ubuntu2 Filename: pool/main/f/flex/flex-doc_2.5.35-10.1ubuntu2_all.deb Size: 142138 MD5sum: da09cb347fb1f693234ab18464fcc43a SHA1: 69a74a57b1f33c5d52e812fd9e1f402107faa2f6 SHA256: b665dfc12cf20244e659e4e1b8079413068a1405279f268239e6cee9c6733b48 Description: Documentation for flex (a fast lexical analyzer generator). Homepage: http://flex.sf.net/ Description-md5: c65756c236e334cd17819ad544508795 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: flite1-dev Priority: extra Section: devel Installed-Size: 23147 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: flite Version: 1.4-release-8 Provides: flite-dev Depends: libflite1 (= 1.4-release-8), libc6-dev Conflicts: flite-dev Filename: pool/main/f/flite/flite1-dev_1.4-release-8_i386.deb Size: 12901558 MD5sum: 7c3434c616c98526e0155f54198df148 SHA1: 11ca192fcce8aab22c937210e7387e48dbde4dc4 SHA256: 78c01c18063e2703c848d398b182e81e05e2504c9a2ecab98207d767a40aa00a Description: Small run-time speech synthesis engine - development files Multi-Arch: same Homepage: http://www.speech.cs.cmu.edu/flite Description-md5: ae41b46b7487cddc69b0014a01855297 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fltk1.1-doc Priority: optional Section: doc Installed-Size: 2969 Maintainer: Ubuntu Developers Original-Maintainer: Aaron M. Ucko Architecture: all Source: fltk1.1 Version: 1.1.10-17 Filename: pool/main/f/fltk1.1/fltk1.1-doc_1.1.10-17_all.deb Size: 2130754 MD5sum: b3f474f59da57c65a0404ff0abeaf87f SHA1: 1fc5751b9c17b9bca8b134f18d7a4e344dfe1fde SHA256: 503b097f459c5c1af96b548020994aac5cbab442bd510fe9427c560faf4e855f Description: Fast Light Toolkit - documentation Homepage: http://www.fltk.org/ Description-md5: cb89fb265884e1336ad2c05695a67c80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: folks-common Priority: optional Section: libs Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: folks Version: 0.9.5-1ubuntu5 Depends: dconf-gsettings-backend | gsettings-backend Filename: pool/main/f/folks/folks-common_0.9.5-1ubuntu5_all.deb Size: 3996 MD5sum: 6131a321efc7494f9028a257dcaceb1e SHA1: 06e23c03d45c3e47828c1007493c041cc3f09d0d SHA256: a00fb35a843e4b1cc6dc4be775c196510d0e38a75bcac04ad90e363c6b9fbc19 Description: library to aggregates people into metacontacts (common files) Multi-Arch: foreign Homepage: https://live.gnome.org/Folks/ Description-md5: 51f0e7fa459256b7f6d53ea160bcc369 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: fontconfig Priority: optional Section: utils Installed-Size: 542 Maintainer: Ubuntu Developers Original-Maintainer: Keith Packard Architecture: i386 Version: 2.11.0-0ubuntu4 Replaces: fontconfig-config (<< 2.5.93-1) Depends: fontconfig-config, libc6 (>= 2.3.6-6~), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1) Filename: pool/main/f/fontconfig/fontconfig_2.11.0-0ubuntu4_i386.deb Size: 174746 MD5sum: 7b9140c8cd1441f143026df129cc5d78 SHA1: f8bd86f8f9f69e86c416f4bfc20b3ed44e088b4c SHA256: 2a5140faaf9ae59c2474273f54e684a3e50c6c87d56862dd20543c2b953f1ff6 Description: generic font configuration library - support binaries Multi-Arch: foreign Description-md5: 4c47f79299a983151349c73c189cb29a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: fontconfig-config Priority: optional Section: libs Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Keith Packard Architecture: all Source: fontconfig Version: 2.11.0-0ubuntu4 Replaces: fontconfig (<< 2.3.2-2) Depends: fonts-dejavu-core | ttf-bitstream-vera | fonts-freefont-ttf | gsfonts-x11, ucf (>= 0.29) Conflicts: fontconfig (<< 2.3.2-2) Filename: pool/main/f/fontconfig/fontconfig-config_2.11.0-0ubuntu4_all.deb Size: 47348 MD5sum: ebbca95a18feb28a750339dc9c2d1285 SHA1: 8fa9c09f764133fa67b29c1d78d3f5f4922b5859 SHA256: 326f76effdf455ce0f36552f5108b866b71674ffb30a914ac60d28c1611e4b89 Description: generic font configuration library - configuration Multi-Arch: foreign Description-md5: 2e2f2fdd3e4ff822be010c67693043db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fontforge Priority: optional Section: x11 Installed-Size: 2415 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: i386 Version: 20120731.b-5 Depends: fontforge-common (= 20120731.b-5), libfontforge1 (= 20120731.b-5), libgdraw4 (= 20120731.b-5), libc6 (>= 2.11), libpython2.7 (>= 2.7) Suggests: fontforge-doc, potrace, autotrace, python-fontforge, fontforge-extras Conflicts: defoma, fontforge-nox Filename: pool/main/f/fontforge/fontforge_20120731.b-5_i386.deb Size: 854874 MD5sum: a38a318f76f567f9742e91dc4a64e140 SHA1: b65bcb4c9c81de0bcd464546e45bb2c0f8a079a5 SHA256: e223c302f626a5e209365b03ee7dcf66f72ea9c76a1b6cb0711a9fa62ad35124 Description: font editor Multi-Arch: foreign Homepage: http://fontforge.sourceforge.net/ Description-md5: 250c7e0cdfdcb9f2cd8e0a7d2de3d4b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: fontforge-common Priority: optional Section: fonts Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fontforge Version: 20120731.b-5 Breaks: fontforge (<< 0.0.20120101+git-3), fontforge-nox (<< 0.0.20120101+git-3) Filename: pool/main/f/fontforge/fontforge-common_20120731.b-5_all.deb Size: 25800 MD5sum: fc62a7dc29dd7eb8bf474f2fa76611e4 SHA1: 6dde4515b170d660d021ba9701116ac85f20edc2 SHA256: 722c5853a8ed2067864988fc3f6945b3536cc7e7cc58dc32e8118505115d1a2b Description: font editor (common files) Homepage: http://fontforge.sourceforge.net/ Description-md5: c406d1ea7efca96ecb4fe4e2386f60da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: fontforge-dbg Priority: extra Section: debug Installed-Size: 7365 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: i386 Source: fontforge Version: 20120731.b-5 Depends: fontforge (= 20120731.b-5) Filename: pool/main/f/fontforge/fontforge-dbg_20120731.b-5_i386.deb Size: 6911206 MD5sum: 277b1100b8d730d9b6ee422642974174 SHA1: 7d6d56a0fcd37dbdfd3e4e4090a857bd24a8989b SHA256: 0ffa49dd9f1823abaec0c552dd6bb501ee07c35d0558013fe1977bf263700ab3 Description: debugging symbols for fontforge Homepage: http://fontforge.sourceforge.net/ Description-md5: 994a4bc983b816b0ec7b6998b7b18a0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fontforge-nox Priority: optional Section: graphics Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: i386 Source: fontforge Version: 20120731.b-5 Depends: fontforge-common (= 20120731.b-5), libfontforge1 (= 20120731.b-5), libc6 (>= 2.4) Conflicts: defoma, fontforge Filename: pool/main/f/fontforge/fontforge-nox_20120731.b-5_i386.deb Size: 8770 MD5sum: d6a9c58f029e6443132653fd350a5312 SHA1: 0c4d9f9257509b7ca0559c3c76651e020c1aa460 SHA256: 5d060878c6c7626e84e6e4754498c6d5dec95e85c8fa4ea8579ea3b4e405b3b6 Description: font editor - non-X version Multi-Arch: foreign Homepage: http://fontforge.sourceforge.net/ Description-md5: 219220aaf625312684b5384c36e55f9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-arabeyes Priority: optional Section: fonts Installed-Size: 5564 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.1-3 Replaces: ttf-arabeyes (<< 2.1-3) Provides: ttf-arabeyes Conflicts: ttf-arabeyes (<< 2.1-3) Filename: pool/main/f/fonts-arabeyes/fonts-arabeyes_2.1-3_all.deb Size: 2306886 MD5sum: c858e4f5cee3c44a4691f141fafa25a7 SHA1: 5e562c6fd594e3027ef587fca1297dfd2c261cef SHA256: 9f90937ec79ff1e2f38ef9665ee23000b5c58121e7fa93b073cd226a2497d1de Description: Arabeyes GPL TrueType Arabic fonts Homepage: http://www.arabeyes.org/project.php?proj=Khotot Description-md5: 74f761affb4f770742400c9d8a19bc5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-arphic-bkai00mp Priority: optional Section: fonts Installed-Size: 10260 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.10-12 Replaces: ttf-arphic-bkai00mp (<< 2.10-9) Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-arphic-bkai00mp (<< 2.10-9) Filename: pool/main/f/fonts-arphic-bkai00mp/fonts-arphic-bkai00mp_2.10-12_all.deb Size: 4912630 MD5sum: 4f4a91a4bfd8feb1a3288fa798278dbf SHA1: 99659a9e9f058a44b7d966805aff0cbcdcfeb749 SHA256: a690e644898fbd2a04f1d8b42e7e89e600a8e692423181e87e24fb0486235d17 Description: "AR PL KaitiM Big5" Chinese TrueType font by Arphic Technology Multi-Arch: foreign Homepage: http://www.arphic.com.tw/ Description-md5: 2ec9ffa2923089a58a166fef4027defd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-arphic-bsmi00lp Priority: optional Section: fonts Installed-Size: 12434 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.10-13 Replaces: ttf-arphic-bsmi00lp (<< 2.10-10) Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-arphic-bsmi00lp (<< 2.10-10) Filename: pool/main/f/fonts-arphic-bsmi00lp/fonts-arphic-bsmi00lp_2.10-13_all.deb Size: 3765108 MD5sum: 2cea7c4d321b3e60e791ab72ed774994 SHA1: 6166baaf915ccf4b7c6a69b20a4a593920b844fb SHA256: 1fa359f05654ed2277c5bf8397f809c7ede8b1192c5caaf2545fc18f7ce4c228 Description: "AR PL Mingti2L Big5" Chinese TrueType font by Arphic Technology Multi-Arch: foreign Homepage: http://www.arphic.com.tw/ Description-md5: 1d9211b69ba018715b788a41accc598d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-arphic-gbsn00lp Priority: optional Section: fonts Installed-Size: 5158 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.11-13 Replaces: ttf-arphic-gbsn00lp (<< 2.11-10) Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-arphic-gbsn00lp (<< 2.11-10) Filename: pool/main/f/fonts-arphic-gbsn00lp/fonts-arphic-gbsn00lp_2.11-13_all.deb Size: 1721556 MD5sum: 117aa72a3c913ef70e0c8cc568a43a57 SHA1: 76c62a70f4fe0a0c72ef0196b2114f24e2fefbc3 SHA256: 7e896083aeee87cb57cc1db6a05b1d44d6485c0c280e5352a3693f22fb62eacf Description: "AR PL SungtiL GB" Chinese TrueType font by Arphic Technology Multi-Arch: foreign Homepage: http://www.arphic.com.tw/ Description-md5: 7e893935877172b3d8425067b18b266a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-arphic-gkai00mp Priority: optional Section: fonts Installed-Size: 4612 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.11-13 Replaces: ttf-arphic-gkai00mp (<< 2.11-10) Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-arphic-gkai00mp (<< 2.11-10) Filename: pool/main/f/fonts-arphic-gkai00mp/fonts-arphic-gkai00mp_2.11-13_all.deb Size: 2292364 MD5sum: 3622f59353e97914855409d681bb7e2e SHA1: 121ef4064a3ba5f6e5feb2dd66b9501a3e3b8b65 SHA256: 57193a58706b9daa822b99e50c203d22aefb9b59ecc38d306000ba38161d0f69 Description: "AR PL KaitiM GB" Chinese TrueType font by Arphic Technology Multi-Arch: foreign Homepage: http://www.arphic.com.tw/ Description-md5: 26e94e58214bc8d1a4374dbce196cdd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-arphic-ukai Priority: optional Section: fonts Installed-Size: 17282 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.2.20080216.2-4ubuntu2 Replaces: ttf-arphic-ukai (<< 0.2.20080216.1-2), ttf-arphic-ukai-mbe (<< 0.2.20080216.1-2) Breaks: ttf-arphic-ukai (<< 0.2.20080216.1-2), ttf-arphic-ukai-mbe (<< 0.2.20080216.1-2) Filename: pool/main/f/fonts-arphic-ukai/fonts-arphic-ukai_0.2.20080216.2-4ubuntu2_all.deb Size: 8287866 MD5sum: f59640583ddaf273aff6b00b4e0752f5 SHA1: 2ab266d1a25f411b33006c2a915f0e2bf9eea3cd SHA256: c96c1974d0a3e508767a2a3bfb7834d085752d5081bccb521ebb9507c076e4dd Description: "AR PL UKai" Chinese Unicode TrueType font collection Kaiti style Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/CJKUnifonts Description-md5: 9ee77285c529022b183ae872b6c54f2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-arphic-uming Priority: optional Section: fonts Installed-Size: 21049 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.2.20080216.2-7ubuntu2 Depends: debconf | debconf-2.0 Pre-Depends: dpkg (>= 1.15.6~) Conflicts: fonts-arphic-uming-mbe Breaks: ttf-arphic-uming (<< 0.2.20080216.2-1), ttf-arphic-uming-mbe (<< 0.2.20080216.2-1) Filename: pool/main/f/fonts-arphic-uming/fonts-arphic-uming_0.2.20080216.2-7ubuntu2_all.deb Size: 7815932 MD5sum: e65bfed903286eb54df91ef6dd6ce25b SHA1: ef7cfd16a7bcdb491cddbf9f2e0d9f225e513a25 SHA256: b7c92b6152f5545313fbcfb7ec8fa58b1ff731a7638363db0cf5fdfbf99585e0 Description: "AR PL UMing" Chinese Unicode TrueType font collection Mingti style Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/CJKUnifonts Description-md5: 89ebf2540943e6e6d5fb35dfcf8b85b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-dejavu Priority: optional Section: fonts Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.34-1ubuntu1 Replaces: ttf-dejavu (<< 2.33+svn2514-2~) Depends: fonts-dejavu-core, fonts-dejavu-extra Breaks: ttf-dejavu (<< 2.33+svn2514-2~) Filename: pool/main/f/fonts-dejavu/fonts-dejavu_2.34-1ubuntu1_all.deb Size: 3114 MD5sum: c1840421ddd674cd539dc3e20e3c8a31 SHA1: 40b37ca8a980e95fa9b14dc4b8eedbab8fd13289 SHA256: 882df93da0ba0dc966141e9517fb15d5adedd0d08bf958d23361a01f8648cf3d Description: metapackage to pull in fonts-dejavu-core and fonts-dejavu-extra Multi-Arch: foreign Homepage: http://dejavu-fonts.org/ Description-md5: 168fb05000ceed15f5c61146d1002737 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: fonts-dejavu-core Priority: optional Section: fonts Installed-Size: 2898 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-dejavu Version: 2.34-1ubuntu1 Replaces: ttf-dejavu (<< 2.20-1), ttf-dejavu-core (<< 2.33+svn2514-2~) Breaks: ttf-dejavu (<< 2.20-1), ttf-dejavu-core (<< 2.33+svn2514-2~) Filename: pool/main/f/fonts-dejavu/fonts-dejavu-core_2.34-1ubuntu1_all.deb Size: 1024460 MD5sum: 7167c133d8ec713c90fc64faab927994 SHA1: bd0e14ee289531295a3780659638cfda2db79c53 SHA256: d7eb9a90ecf62b85dcf2f3bb84a0d66e41fef81141240c73e5cab3351553dc03 Description: Vera font family derivate with additional characters Multi-Arch: foreign Homepage: http://dejavu-fonts.org/ Description-md5: e9860eb046746c77c9d46f69839006b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-dejavu-extra Priority: optional Section: fonts Installed-Size: 6544 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-dejavu Version: 2.34-1ubuntu1 Replaces: ttf-dejavu (<< 2.20-1), ttf-dejavu-extra (<< 2.33+svn2514-2~) Depends: fonts-dejavu-core Breaks: ttf-dejavu (<< 2.20-1), ttf-dejavu-extra (<< 2.33+svn2514-2~) Filename: pool/main/f/fonts-dejavu/fonts-dejavu-extra_2.34-1ubuntu1_all.deb Size: 1736420 MD5sum: 6ff5bf572089a3f2eb8d1c6e466c7851 SHA1: 7293cf1c769a85785d1b3f5295f8960b87daf75b SHA256: a204133c4cc9713439de0bc320490c97229a59b3f990499b45317dd1b988ba9a Description: Vera font family derivate with additional characters (extra variants) Multi-Arch: foreign Homepage: http://dejavu-fonts.org/ Description-md5: 9f9e099bb6723f306b78a94a60945eb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-font-meta Package: fonts-droid Priority: optional Section: fonts Installed-Size: 7591 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-android Version: 1:4.3-3ubuntu1 Replaces: ttf-droid (<< 1:4.2~r1-1~) Pre-Depends: dpkg (>= 1.15.7.2) Breaks: ttf-droid (<< 1:4.2~r1-1~) Filename: pool/main/f/fonts-android/fonts-droid_4.3-3ubuntu1_all.deb Size: 3040640 MD5sum: b661b4d9ff9f973d1214094cbc3e5299 SHA1: 417be07d5e1c76db8f213cf7d5656f78ab404fea SHA256: c6abc779f9a844fff8de7e4250b3c5df3d7b784df288288c78fb8c9d5922e070 Description: handheld device font with extensive style and language support Multi-Arch: foreign Homepage: https://android.googlesource.com/platform/frameworks/base/ Description-md5: 0844ca9145078c0fbfe116eafd82f0a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: fonts-farsiweb Priority: optional Section: fonts Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.4.dfsg-12 Replaces: ttf-farsiweb (<< 0.4.dfsg-10) Breaks: ttf-farsiweb (<< 0.4.dfsg-10) Filename: pool/main/f/fonts-farsiweb/fonts-farsiweb_0.4.dfsg-12_all.deb Size: 110950 MD5sum: b84e7771753afb2ca6a9d4a6ceb2a43a SHA1: f4dc619a3394fd1926bdd6439d02cae5ef418d01 SHA256: 306bdba0e3e99781d4e5b72ff29df9424b2e6b8a712d1fc081056829e70e417c Description: free TrueType fonts for Persian language Multi-Arch: foreign Description-md5: 3b31dc6c673688fa0360708e2cb68b3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-freefont-ttf Priority: optional Section: fonts Installed-Size: 10613 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-freefont Version: 20120503-4 Replaces: ttf-freefont (<< 20120503-1) Provides: ttf-freefont Breaks: ttf-freefont (<< 20120503-1) Filename: pool/main/f/fonts-freefont/fonts-freefont-ttf_20120503-4_all.deb Size: 4140296 MD5sum: 6badd2b9f94417d1a8fb4c0682829787 SHA1: b4ac1db35d40cd412674d3f2fac17af9df42030a SHA256: 993554c34ff6f24087ac2efa37631f7131f4ef3077495fd21dfb451981ba7904 Description: Freefont Serif, Sans and Mono Truetype fonts Multi-Arch: foreign Homepage: http://savannah.gnu.org/projects/freefont/ Description-md5: bcd17b715258e4f7c257d125d8ee8d2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-gubbi Priority: optional Section: fonts Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 1.3-3 Filename: pool/main/f/fonts-gubbi/fonts-gubbi_1.3-3_all.deb Size: 59376 MD5sum: 78a75f0d02b65e817c3edca8e625156b SHA1: 2c1dbe0f95a13dd2c3ff39d6eced02c177d6e49b SHA256: 869a4f1a6015ad6a4cc2b51ea49f3391c3c5059b4ad9e5a4bf7cd4e0ea951370 Description: Gubbi free font for Kannada script Multi-Arch: foreign Homepage: https://github.com/aravindavk/Gubbi Description-md5: eb63446925bdcbfdaaf6debc955a1a5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-ipafont-gothic Priority: optional Section: fonts Installed-Size: 12275 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-ipafont Version: 00303-12ubuntu1 Replaces: otf-ipafont-gothic (<< 00303-1) Provides: fonts-japanese-gothic Pre-Depends: dpkg (>= 1.15.6~) Recommends: fonts-ipafont-mincho Breaks: otf-ipafont (<= 00301-4), otf-ipafont-gothic (<< 00303-1), ttf-ipafont (<= 00203-13) Filename: pool/main/f/fonts-ipafont/fonts-ipafont-gothic_00303-12ubuntu1_all.deb Size: 3518818 MD5sum: 2f5c6da9089c6670088274e972548892 SHA1: 0bf84c762560f7d4ade8f947ffd367ea8519b380 SHA256: 76f4503b0715060143d6a9ecde08c1570b619baacdd7952bea0f099fc9be4bc4 Description: Japanese OpenType font set, IPA Gothic font Multi-Arch: foreign Homepage: http://ossipedia.ipa.go.jp/ipafont/index.html Description-md5: db4305028cbd86b5c8eed9ef8fe87874 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-ipafont-mincho Priority: optional Section: fonts Installed-Size: 15811 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-ipafont Version: 00303-12ubuntu1 Replaces: otf-ipafont-mincho (<< 00303-1) Provides: fonts-japanese-mincho Pre-Depends: dpkg (>= 1.15.6~) Recommends: fonts-ipafont-gothic Breaks: otf-ipafont (<= 00301-4), otf-ipafont-mincho (<< 00303-1), ttf-ipafont (<= 00203-13) Filename: pool/main/f/fonts-ipafont/fonts-ipafont-mincho_00303-12ubuntu1_all.deb Size: 4726398 MD5sum: d534ef0fa8b1abc46684d0a4eab5bf9a SHA1: 298711e14997e05fd3e1489e325820bc72f4d7ff SHA256: 133d928e4aab0f5f6671296b43504b4fbf6bafa0a6e374ae256f08b8db04ef7d Description: Japanese OpenType font set, IPA Mincho font Multi-Arch: foreign Homepage: http://ossipedia.ipa.go.jp/ipafont/index.html Description-md5: 18ed86abaa822df064d1c7e256237048 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-kacst Priority: optional Section: fonts Installed-Size: 1009 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.01+mry-10 Replaces: ttf-kacst (<< 2.01+mry-2) Provides: ttf-kacst Pre-Depends: dpkg (>= 1.15.6~) Recommends: fonts-kacst-one Breaks: ttf-kacst (<< 2.01+mry-2) Filename: pool/main/f/fonts-kacst/fonts-kacst_2.01+mry-10_all.deb Size: 305452 MD5sum: 3e977cc1cdf72dfbe68a806943802961 SHA1: 14dfd6d876a94f9a83f77580bfcd66152a2228b3 SHA256: b61538af0ebeb52896fba17c7314a3e2e8f99186fe1307f0a0f8c78beba4041f Description: KACST free TrueType Arabic fonts Multi-Arch: foreign Homepage: http://www.kacst.edu.sa/en/ Description-md5: 9fffa0bcade63a18b2b500875b4d9364 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-kacst-one Priority: optional Section: fonts Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 5.0+svn11846-7 Replaces: ttf-kacst-one (<< 5.0-1) Pre-Depends: dpkg (>= 1.15.6~) Recommends: fonts-kacst Breaks: ttf-kacst (<< 2.01+mry), ttf-kacst-one (<< 5.0-1) Filename: pool/main/f/fonts-kacst-one/fonts-kacst-one_5.0+svn11846-7_all.deb Size: 46714 MD5sum: 4d34c38bd6136bcf2559fb7cfc4e32a5 SHA1: 68c25df99c5e75b3bc6950f69f292b9089aad720 SHA256: 697c393237952614705d59676443a1af416c981275afa2a1531108e79e22f9e8 Description: TrueType font designed for Arabic language Multi-Arch: foreign Homepage: http://projects.arabeyes.org Description-md5: a65185b91bc3d8f45a9c53093befe7c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-khmeros Priority: optional Section: fonts Installed-Size: 2050 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 5.0-7ubuntu1 Replaces: ttf-khmeros (<< 5.0-4) Depends: fonts-khmeros-core Breaks: ttf-khmeros (<< 5.0-4) Filename: pool/main/f/fonts-khmeros/fonts-khmeros_5.0-7ubuntu1_all.deb Size: 247000 MD5sum: c2e5d25dbf19e4a0d6d3e0ae9dfe2a42 SHA1: 891b2744e7a558507928e5fd5b51764d3f60a68e SHA256: 44acf1b80621c955712e1ae4a60714ebc28a32ea5a2a54dda807589cd3a5e70b Description: KhmerOS Unicode fonts for the Khmer language of Cambodia Multi-Arch: foreign Homepage: http://www.khmeros.info Description-md5: 8ac7322b9c773c29a7403212d0bf419b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-khmeros-core Priority: optional Section: fonts Installed-Size: 571 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-khmeros Version: 5.0-7ubuntu1 Replaces: fonts-khmeros (<< 5.0-5ubuntu1), ttf-khmeros (<< 5.0-4), ttf-khmeros-core (<< 5.0-5ubuntu1) Breaks: fonts-khmeros (<< 5.0-5ubuntu1), ttf-khmeros (<< 5.0-4), ttf-khmeros-core (<< 5.0-5ubuntu1) Filename: pool/main/f/fonts-khmeros/fonts-khmeros-core_5.0-7ubuntu1_all.deb Size: 91242 MD5sum: 3b8019df8de03ed0e31e1c77daf3f683 SHA1: 5c9020e688d31664d49771d70aefcdaaf7c884d2 SHA256: 1d4b78e739a71483673a947a109b530428eb1a780b69eabeaa0bc3a45afd6850 Description: KhmerOS Unicode fonts for the Khmer language of Cambodia Homepage: http://www.khmeros.info Description-md5: 7253bb5aac00bdc165c6fa4e0950cc75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-lao Priority: optional Section: fonts Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Christian Perrier Architecture: all Version: 0.0.20060226-9 Filename: pool/main/f/fonts-lao/fonts-lao_0.0.20060226-9_all.deb Size: 49054 MD5sum: 39e912d6e23ac14fd3e3080bfa84a2d4 SHA1: 030df6094ac4b1356f528d50f446a0f1c333fd29 SHA256: 3417039c90b698b151b04ef645172ec7d8e38bfe985c16ddeff3d9b1e19ad99b Description: TrueType font for Lao language Multi-Arch: foreign Description-md5: eb63a168aea0b273845436a0088de3a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-liberation Priority: optional Section: fonts Installed-Size: 2119 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.07.3-3 Replaces: ttf-liberation (<< 1.07.0-2) Breaks: ttf-liberation (<< 1.07.0-2) Filename: pool/main/f/fonts-liberation/fonts-liberation_1.07.3-3_all.deb Size: 1320134 MD5sum: e49c41cbaaeae1a956f18a0f4efb5324 SHA1: 129ffa50eebc541bf6ab662110da022cd9337584 SHA256: 05d54a84c77c5df24342e058ca37fff5e70fda720ac6abff6ca8be5a233820c2 Description: Fonts with the same metrics as Times, Arial and Courier Multi-Arch: foreign Homepage: https://fedorahosted.org/liberation-fonts/ Description-md5: 9f375e761d413f36fd2c7df206c8836d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: fonts-lklug-sinhala Priority: optional Section: fonts Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.6-3 Replaces: sinhala-font-lklug, ttf-sinhala-lklug (<< 0.5.4-1) Breaks: sinhala-font-lklug, ttf-sinhala-lklug (<< 0.5.4-1) Filename: pool/main/f/fonts-lklug-sinhala/fonts-lklug-sinhala_0.6-3_all.deb Size: 73996 MD5sum: 9be067d551b98c494866ac800c9533f4 SHA1: 6e044a89234dcf1abd83c35ec565534974c5e768 SHA256: 147117ed2926459f2acd2c27586b7051dc399a01c7891b6eea4c5ff0e9ed3b21 Description: Unicode Sinhala font by Lanka Linux User Group Multi-Arch: foreign Homepage: http://www.lug.lk/fonts/lklug Description-md5: 8e3f8979a19f99371f1d76271ddfc4e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-lmodern Priority: optional Section: fonts Installed-Size: 10747 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Source: lmodern Version: 2.004.4-3 Replaces: lmodern (<= 2.004.2-1) Depends: dpkg (>= 1.14.18), tex-common (>= 4) Breaks: lmodern (<= 2.004.2-1) Filename: pool/main/l/lmodern/fonts-lmodern_2.004.4-3_all.deb Size: 6379826 MD5sum: 6149f0574451e118fd39b094d5bb6363 SHA1: f32686cc9d06fabd40ea3676f17360d95aff6463 SHA256: 0d89373efcca779fa026d8b9acccf4021616be2088a76f31ae0deaea796d3459 Description: OpenType fonts based on Computer Modern Homepage: http://www.gust.org.pl/projects/e-foundry/latin-modern/ Description-md5: 80d0553dfb3c18bdf3f44ed9358e1ac9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: fonts-manchufont Priority: optional Section: fonts Installed-Size: 1457 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.007.svn0068-4 Replaces: ttf-manchufont (<< 2.007.svn0068-2) Breaks: ttf-manchufont (<< 2.007.svn0068-2) Filename: pool/main/f/fonts-manchufont/fonts-manchufont_2.007.svn0068-4_all.deb Size: 1136726 MD5sum: a622f2d6a3f0805645c2115b4623a12d SHA1: 868194e3df25c4dee9c80ecab64e1c98deb1eb4e SHA256: 4ad30dc7859ad8bc1153e14d4dca8b5262c7d70d95584e3dd15129b2b658706a Description: Smart OpenType font for Manchu script Multi-Arch: foreign Homepage: http://sourceforge.net/projects/manchufont/ Description-md5: 43422cd839d1ea2881b54d015a36b75d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: fonts-mgopen Priority: optional Section: fonts Installed-Size: 1913 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.1-9 Replaces: ttf-mgopen (<< 1.1-6) Breaks: ttf-mgopen (<< 1.1-6) Filename: pool/main/f/fonts-mgopen/fonts-mgopen_1.1-9_all.deb Size: 566820 MD5sum: 8f041f018d7c8d5a42f94e2c9a825768 SHA1: b71544dbb3cac78586c9efb00545e8dadaef3924 SHA256: 6057bd06faba7c69b8d76a6677539184eb5a318786d341eb869e3d469d4b9b73 Description: Magenta MgOpen TrueType fonts Multi-Arch: foreign Homepage: http://www.magenta.gr/ Description-md5: 779afa88314e6ab13d708b63a8b6c1c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: fonts-nafees Priority: optional Section: fonts Installed-Size: 713 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.2-5ubuntu1 Replaces: ttf-nafees (<< 1.2-4) Breaks: ttf-nafees (<< 1.2-4) Filename: pool/main/f/fonts-nafees/fonts-nafees_1.2-5ubuntu1_all.deb Size: 224632 MD5sum: 54d7da0e96ae8d1c76008efb024aa0fa SHA1: ae17e2a4d8fb628d5fd179ca82278c73e98dcc15 SHA256: 9ac4007059a3b54beb5474a16ca3fe6bc7b046cbcd0048e949ea85ebd5129112 Description: nafees free OpenType Urdu fonts Multi-Arch: foreign Description-md5: 05cf2021a3860fb91760fffee74b5f04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-nanum Priority: optional Section: fonts Installed-Size: 25141 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 20131007-1 Replaces: ttf-nanum (<< 3.010-2) Pre-Depends: dpkg (>= 1.15.7.2) Breaks: ttf-nanum (<< 3.010-2) Filename: pool/main/f/fonts-nanum/fonts-nanum_20131007-1_all.deb Size: 8709238 MD5sum: 5706cd1325058aac7e5d346c990589d7 SHA1: a90f80db050db938bfef8b0489787dbb74495a69 SHA256: 32c2577507ad0b306b3e652925c4596061dca45fe8baf585540a5671ab347d73 Description: Nanum Korean fonts Multi-Arch: foreign Homepage: http://hangeul.naver.com/nanum.nhn Description-md5: 093af57339d69dba4ec6008634e86163 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: fonts-nanum-coding Priority: optional Section: fonts Installed-Size: 4515 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.0-6 Replaces: ttf-nanum-coding (<< 2.0-2) Breaks: ttf-nanum-coding (<< 2.0-2) Filename: pool/main/f/fonts-nanum-coding/fonts-nanum-coding_2.0-6_all.deb Size: 1424134 MD5sum: 3b5c8d7fbc2096fa1fc3fc8dc922d1fc SHA1: b8f299a502abeafbdf1db13402c4ecbbf16c8ea0 SHA256: 2fce8f3c66c2c6c26d7deda4aa37a8bcbe65e4f00160fa79e84247d4fdf916c1 Description: Nanum Coding fixed width Korean TrueType font Multi-Arch: foreign Homepage: http://dev.naver.com/projects/nanumfonts Description-md5: 2cf421beb958f4701e23667402158bc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-usb Package: fonts-nanum-extra Priority: optional Section: fonts Installed-Size: 17381 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-nanum Version: 20131007-1 Replaces: fonts-nanum-gothic-light (<< 1.000-4), ttf-nanum (<< 3.010-1), ttf-nanum-extra (<< 3.010-2) Pre-Depends: dpkg (>= 1.15.7.2) Breaks: fonts-nanum-gothic-light (<< 1.000-4), ttf-nanum (<< 3.010-1), ttf-nanum-extra (<< 3.010-2) Filename: pool/main/f/fonts-nanum/fonts-nanum-extra_20131007-1_all.deb Size: 4917268 MD5sum: f51216244a87cbe21cfe7f06885d1c4f SHA1: ac2f009f42076234c2bc4f8ebbcf0ea13b53ecc0 SHA256: ed1d9f0d785213f436a59831970f30040f6e06ee1f37a32e3a3494983311cd40 Description: Additional Nanum Korean fonts Multi-Arch: foreign Homepage: http://hangeul.naver.com/nanum.nhn Description-md5: e3201ae8a558f6181de55ff1d414f501 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-usb Package: fonts-navilu Priority: optional Section: fonts Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 1.2-2 Filename: pool/main/f/fonts-navilu/fonts-navilu_1.2-2_all.deb Size: 75302 MD5sum: a23e6846f128ea11c84ab2cd8173391b SHA1: c9cf35e80bba17e577927a39f66f952ec79097a1 SHA256: 56c9dd3c105fc4a2d514bc31a1d7928946c99cd543d423ee408a2929446304fd Description: Handwriting font for Kannada Multi-Arch: foreign Homepage: https://github.com/aravindavk/Navilu Description-md5: b6933f3ff2a68558c782f0ac51ab3bec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-opensymbol Priority: optional Section: fonts Installed-Size: 367 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice (1:4.2.3~rc3-0ubuntu2) Version: 2:102.6+LibO4.2.3~rc3-0ubuntu2 Replaces: ttf-opensymbol Provides: ttf-opensymbol Recommends: fontconfig Filename: pool/main/libr/libreoffice/fonts-opensymbol_102.6+LibO4.2.3~rc3-0ubuntu2_all.deb Size: 111118 MD5sum: 0e648664f2e41eee13cfae2369745f9c SHA1: 6cc40b25b4469b69706932aaeada8055c254998f SHA256: 8cbe2e86f7de67dada80894515daf6eac5b45663e3f7b8f94cf3b341d0a2312b Description: OpenSymbol TrueType font Homepage: http://www.libreoffice.org Description-md5: c976ef54f80faf44d726a46723d3fbd0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: fonts-pagul Priority: extra Section: fonts Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 1.0-7 Filename: pool/main/f/fonts-pagul/fonts-pagul_1.0-7_all.deb Size: 75348 MD5sum: 4cbc0a9919b6004d6418c13755d7d5c2 SHA1: 1dc178e90cd3ec5027deabd0e85e81f41dd6a194 SHA256: 7f2bfbd12fc957031883ffa72ff791d5f375868c7524baa12fc69b6aa1f0ce56 Description: Free TrueType font for the Sourashtra language Multi-Arch: foreign Homepage: https://sourceforge.net/projects/pagul/ Description-md5: e962bdab2a1e550cdc3d8630cbea149e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: fonts-sil-abyssinica Priority: optional Section: fonts Installed-Size: 1091 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.200-6 Replaces: ttf-sil-abyssinica (<< 1.200-1) Pre-Depends: dpkg (>= 1.15.6~) Suggests: fontconfig, libgraphite3, pango-graphite Breaks: ttf-sil-abyssinica (<< 1.200-1) Filename: pool/main/f/fonts-sil-abyssinica/fonts-sil-abyssinica_1.200-6_all.deb Size: 667084 MD5sum: 4517ec9e1083c6bbde9f554c3b9b41d7 SHA1: 44087bd4005cce20461738ce0b5cb63e5740a76f SHA256: 3d16474dce2321de0463094e20d2bf4e26917f1a985ed5d88de8f43aca884dc0 Description: smart Unicode font for Ethiopian and Erythrean scripts (Amharic et al.) Multi-Arch: foreign Homepage: http://scripts.sil.org/AbyssinicaSIL Description-md5: 8fccebec6e37d1916d24db0127e8c0c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-sil-ezra Priority: optional Section: fonts Installed-Size: 428 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.51-8 Replaces: ttf-sil-ezra (<< 2.51-7) Breaks: ttf-sil-ezra (<< 2.51-7) Filename: pool/main/f/fonts-sil-ezra/fonts-sil-ezra_2.51-8_all.deb Size: 130774 MD5sum: eff43fbc9b495df2692d1ac8d939f5c9 SHA1: bb9b1637cd13e620be33943afd3cb444b4474252 SHA256: 20dbd8b2daa96f786bbf3275ebf6344b65b41e3ae5c2beb9ea35968b65c222dc Description: smart Unicode font for Hebrew Multi-Arch: foreign Homepage: http://scripts.sil.org/EzraSIL_Home Description-md5: b4bbac17fa39d3a395628ade21910dcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-sil-nuosusil Priority: optional Section: fonts Installed-Size: 569 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.1.1-7 Replaces: fonts-sil-yi (<< 2.1.1-1), ttf-sil-nuosusil (<< 2.1.1-7) Provides: fonts-sil-yi, ttf-sil-nuosusil Conflicts: fonts-sil-yi (<< 2.1.1-1), ttf-sil-nuosusil (<< 2.1.1-7) Filename: pool/main/f/fonts-sil-nuosusil/fonts-sil-nuosusil_2.1.1-7_all.deb Size: 252530 MD5sum: b742b8a4b2a9e629ac58cedade55773d SHA1: 6fb0f531ad30632ce6495feb46f32e353182527d SHA256: 8f53dd2b0fb1499d0979f0d8377775e04a502d481e2d841fe96cb6063aba9609 Description: Unicode font for Yi (a script used in southwestern China) Homepage: http://scripts.sil.org/SILYi_Home Description-md5: d6ea72c7c14321fad5939a643e9354f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-sil-padauk Priority: optional Section: fonts Installed-Size: 1857 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 2.80-2 Replaces: ttf-sil-padauk (<< 2.61-4) Suggests: libgraphite2-3 Breaks: ttf-sil-padauk (<< 2.61-4) Filename: pool/main/f/fonts-sil-padauk/fonts-sil-padauk_2.80-2_all.deb Size: 269822 MD5sum: fe2ae01126639228fadd00352c455175 SHA1: 5e4557a90adcc9022f54d67e01ebff3a4b415e6b SHA256: b6e13fd43fc5f7d84f36d443f85a3e491519f8127ea329b1be916c7c57eaeb06 Description: smart Unicode font for languages in Myanmar Multi-Arch: foreign Homepage: http://scripts.sil.org/Padauk Description-md5: c3b7f670979534e77fce0a08284c2584 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-sil-scheherazade Priority: optional Section: fonts Installed-Size: 322 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.001-8 Replaces: ttf-sil-scheherazade (<< 1.001-7) Provides: ttf-sil-scheherazade Conflicts: ttf-sil-scheherazade (<< 1.001-7) Filename: pool/main/f/fonts-sil-scheherazade/fonts-sil-scheherazade_1.001-8_all.deb Size: 134570 MD5sum: 80dee349ebac308dd8f0a8c56679af2c SHA1: 55b20ae67681c6d934b99985ddd9f9341dde42cb SHA256: da8332e758cb2a10773b410ec4f65350606c6b64253b17d307282a291aa7642c Description: smart Unicode font for Arabic Homepage: http://scripts.sil.org/ArabicFonts Description-md5: 6a8207d145d1833524ba78bcd9eb3c1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-takao-gothic Priority: optional Section: fonts Installed-Size: 12046 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-takao Version: 003.02.01-9ubuntu2 Replaces: ttf-takao-gothic (<< 003.02.01-5) Provides: fonts-japanese-gothic Depends: fonts-takao-pgothic Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-takao-gothic (<< 003.02.01-5) Filename: pool/main/f/fonts-takao/fonts-takao-gothic_003.02.01-9ubuntu2_all.deb Size: 4809962 MD5sum: b242b7646c234253b63aad57d9ed9d21 SHA1: 6654e81e58c6a92052f58d429462495c6a36e945 SHA256: 9c734f309777b4175399d894a3b3e6b3f273ba439edea62b72dbcc7ebcd93427 Description: Japanese TrueType font set, Takao Gothic Fonts Multi-Arch: foreign Homepage: https://launchpad.net/takao-fonts Description-md5: 2feb186733f4ca332a716712c2b94e84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-takao-mincho Priority: optional Section: fonts Installed-Size: 23411 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-takao Version: 003.02.01-9ubuntu2 Replaces: ttf-takao-mincho (<< 003.02.01-5) Provides: fonts-japanese-mincho Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-takao-mincho (<< 003.02.01-5) Filename: pool/main/f/fonts-takao/fonts-takao-mincho_003.02.01-9ubuntu2_all.deb Size: 6342530 MD5sum: c72d91496b0ecc3e63071427d1c32af0 SHA1: 27890dfc31fd3f442f56f05df3f5d41b1ad6d2da SHA256: 76510584acbffec8c4c1482f14a8c54cbc036b420def042ab0321c086bde93b7 Description: Japanese TrueType font set, Takao Mincho Fonts Multi-Arch: foreign Homepage: https://launchpad.net/takao-fonts Description-md5: 4e7ce63e6bb9ed84b172c26835def9b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-takao-pgothic Priority: optional Section: fonts Installed-Size: 6170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-takao Version: 003.02.01-9ubuntu2 Replaces: fonts-takao-gothic (<< 003.02.01-5ubuntu1), ttf-takao-gothic (<< 003.02.01-5), ttf-takao-pgothic (<< 003.02.01-5ubuntu1) Provides: fonts-japanese-gothic Pre-Depends: dpkg (>= 1.15.6~) Conflicts: fonts-takao-gothic (<< 003.02.01-5ubuntu1), ttf-takao-gothic (<< 003.02.01-5), ttf-takao-pgothic (<< 003.02.01-5ubuntu1) Filename: pool/main/f/fonts-takao/fonts-takao-pgothic_003.02.01-9ubuntu2_all.deb Size: 3403360 MD5sum: 868fd2fffac89b8df128f01d9a6a76f6 SHA1: 66cacb8ed8cd990ebd2ec25258d0bad0a8b4521b SHA256: 23dd59decc5076194e98bd947963cbbff38598e7708b5a503148842d309cb388 Description: Japanese TrueType font set, Takao P Gothic Fonts Homepage: https://launchpad.net/takao-fonts Description-md5: 912deeb0144fb88b9943945137555612 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-texgyre Priority: optional Section: fonts Installed-Size: 13875 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Source: tex-gyre Version: 2.004.2-4 Replaces: tex-gyre (<= 2.004.1-4) Depends: dpkg (>= 1.14.18), tex-common (>= 4) Breaks: tex-gyre (<= 2.004.1-4) Filename: pool/main/t/tex-gyre/fonts-texgyre_2.004.2-4_all.deb Size: 9789890 MD5sum: a6ca506e183bf81cc2fa38302310a7c1 SHA1: fed82c4cfe3a3cb83c957b3e9571b0e0b9dad3d3 SHA256: 8bf5c66ed33fec0c47507a8e462759b12a1de0fa0a649a42f0706b71db1b9216 Description: OpenType fonts based on URW Fonts Homepage: http://www.gust.org.pl/projects/e-foundry/tex-gyre/ Description-md5: 0adbb149da23691487882aa3da65b90b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: fonts-thai-tlwg Priority: optional Section: fonts Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Depends: fonts-tlwg-garuda, fonts-tlwg-kinnari, fonts-tlwg-loma, fonts-tlwg-mono, fonts-tlwg-norasi, fonts-tlwg-purisa, fonts-tlwg-sawasdee, fonts-tlwg-typewriter, fonts-tlwg-typist, fonts-tlwg-typo, fonts-tlwg-umpush, fonts-tlwg-waree Filename: pool/main/f/fonts-tlwg/fonts-thai-tlwg_0.5.1-3_all.deb Size: 7254 MD5sum: 40e9a7f21a8e1e1dcf99276e42733248 SHA1: 4d4ddee9b2636798f80cce4c84f69370231181f6 SHA256: 55f872ed0b21073e7f0143fb972deedd671ebe03c5b6302f9ed39fe5b815ed3c Description: Thai fonts maintained by TLWG (meta package) Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 7c3d0b4786dd2c73109ba776d98ae5b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tibetan-machine Priority: optional Section: fonts Installed-Size: 4449 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.901b-5 Conflicts: ttf-tmuni (<< 1.901b-3) Breaks: ttf-tmuni (<< 1.901b-3) Filename: pool/main/f/fonts-tibetan-machine/fonts-tibetan-machine_1.901b-5_all.deb Size: 848824 MD5sum: e1c003f0a725c061df4e35bc02409542 SHA1: 3a59a51b22f4cec58a001afcd95044ee2b605417 SHA256: 509f3e5e5871f8d8c89428e6717b659066b4d7cc60368894a7b3f393b5f6d060 Description: font for Tibetan, Dzongkha and Ladakhi (OpenType Unicode) Multi-Arch: foreign Homepage: https://collab.itc.virginia.edu/wiki/tibetan-script/Tibet%20Machine%20Web.html Description-md5: be01a3b4eb62bd41e37a556440ff464b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-garuda Priority: optional Section: fonts Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-garuda_0.5.1-3_all.deb Size: 151392 MD5sum: e81b1f9b4378c9d75901d8b661d8ce9b SHA1: d1f134c028466931ad819f05aab06cae89771c94 SHA256: 1b70d93649e5d831cbef2117265869e82097371ffaf58be1b0f43c7083bde140 Description: Thai Garuda font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: df8af89ab64bd1769b931ba942051b9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-kinnari Priority: optional Section: fonts Installed-Size: 622 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-kinnari_0.5.1-3_all.deb Size: 260664 MD5sum: a190acfa741a9a69d3df7b8d146639d8 SHA1: 9f4282d2b67d8887723e4b96aef64d6b5f7d95c7 SHA256: 9045214d566093eab968cd81b437e26e550d3913e6f7b7a3b3f2945b40356fcd Description: Thai Kinnari font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 14791472e2e9c861709e53b801832749 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-loma Priority: optional Section: fonts Installed-Size: 402 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-loma_0.5.1-3_all.deb Size: 150696 MD5sum: 567d549614dfb099941b6dc183c792ad SHA1: 6ecc2708e0a1f198335df50fa2002ff964525843 SHA256: cb43cecc6a8ae413b891e28800c4f0133acc68d830987a516cd9b6cc569ed13e Description: Thai Loma font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 677a1f1fe68a7308a5462fb7c7db4bc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-mono Priority: optional Section: fonts Installed-Size: 469 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-mono_0.5.1-3_all.deb Size: 164046 MD5sum: f0cf322680de700dd93d5c852bb1e426 SHA1: a0210769fcb7f8f4f8d160867acd92f6584ff81d SHA256: 9f40f9a39aa4e0ccb69125a0a6e271e6aa1734f94beada938df415ac27764ed8 Description: Thai TlwgMono font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 6fb87a07512347418ba219eba68126fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-norasi Priority: optional Section: fonts Installed-Size: 720 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-norasi_0.5.1-3_all.deb Size: 296802 MD5sum: f834b0ae6b0beba5ecb1d1730b065f5c SHA1: 99d106360b04d43010f334700d0f44547346bfb1 SHA256: 8eb7f8f49503c8d419b19dcc8d81bf9ddd633d61fe28c217e414ea2f3d678715 Description: Thai Norasi font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: a2048ac58dfd7598ff2f94f63bbf3726 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-purisa Priority: optional Section: fonts Installed-Size: 664 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-purisa_0.5.1-3_all.deb Size: 298024 MD5sum: 627d7e2b69f989dc24c51b7261bdd623 SHA1: eb90c77fd4e340de65a7e330ac6ae9afad140c96 SHA256: 9fed9f4d2466b5fffea495f5e7c374074b4cb9571ba3c2ddddcf8b3efd765a9d Description: Thai Purisa font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: c3f2349dde83031076a097d595a923cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-sawasdee Priority: optional Section: fonts Installed-Size: 415 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-sawasdee_0.5.1-3_all.deb Size: 150090 MD5sum: 2d4bdf97825252e590c70975a5ab6a5a SHA1: 3f290c25059254537053bff8b3ad5c268520fd40 SHA256: 76b145649419d236ba49704495b9135764df250cb0031e4174b1a75a99eeb6f6 Description: Thai Sawasdee font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 3e02245948f937f38a8243317105f048 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-typewriter Priority: optional Section: fonts Installed-Size: 465 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-typewriter_0.5.1-3_all.deb Size: 165214 MD5sum: b4f0afec3f794c9eca5cc07ce8c45aa9 SHA1: ed22233ca73a48aadec3cda72d6c846f8c473c41 SHA256: 7577da442d44c16b8138de8643b5b7160ba5a41496f0e805cc45a0d567eeb17b Description: Thai TlwgTypewriter font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: b09761daf922fab4a000a00bca1fca8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-typist Priority: optional Section: fonts Installed-Size: 467 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-typist_0.5.1-3_all.deb Size: 165314 MD5sum: 899eb6f93ac04c4c679931bc351e05eb SHA1: 83e30c2393eb80ac9c6775be2f6fd80f0efce59a SHA256: a9499370fe44b46f45b6deb7a55c0d41eb950cf4d798df1d5b5953eb416685b7 Description: Thai TlwgTypist font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: e034beee1a066eab15c594da361a86fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-typo Priority: optional Section: fonts Installed-Size: 468 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-typo_0.5.1-3_all.deb Size: 165100 MD5sum: a5966de0aa1338b9ad7fb780d740a7b4 SHA1: c32e590861a21f6a4d0751483772bf5e57905d6a SHA256: d6e5691b7dc3274354480987df883d5de675d49ced7bc4b91094f5f5e4461bc4 Description: Thai TlwgTypo font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: f1ef38863656645d870623bfbd6ceea2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-umpush Priority: optional Section: fonts Installed-Size: 567 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-umpush_0.5.1-3_all.deb Size: 208408 MD5sum: 3b0da0f3b500d137cbd8d3d2e930ed40 SHA1: 55a49db444d8a4e70f7f5182cddb89014f26718b SHA256: 43d8c54470306a94882259730d775c2c42866f73611b7e5c0889ffc257f1efe7 Description: Thai Umpush font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 579761dffb2b613a75b881f45b635501 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-tlwg-waree Priority: optional Section: fonts Installed-Size: 427 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: fonts-tlwg Version: 1:0.5.1-3 Replaces: ttf-thai-tlwg (<< 1:0.4.16) Breaks: ttf-thai-tlwg (<< 1:0.4.16) Filename: pool/main/f/fonts-tlwg/fonts-tlwg-waree_0.5.1-3_all.deb Size: 156886 MD5sum: 62c29605411864d89b9417036c940178 SHA1: 1c898170393f19aa9968b11fb7fcaacd04ebf17c SHA256: 017da375d3d688aaf0f4c5cf30b8ed1c6299d36b8afa4f179bfcc83dd918c0da Description: Thai Waree font Multi-Arch: foreign Homepage: http://linux.thai.net/projects/fonts-tlwg Description-md5: 5af2b496ecd166395a958c9ca5bc49b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: fonts-ubuntu-font-family-console Priority: optional Section: fonts Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Paul Sladen Architecture: all Source: ubuntu-font-family-sources Version: 0.80-0ubuntu6 Filename: pool/main/u/ubuntu-font-family-sources/fonts-ubuntu-font-family-console_0.80-0ubuntu6_all.deb Size: 15614 MD5sum: 1a7533372064037f77632cc1f53fd362 SHA1: 13890f11cadd482ef047a765b5f43cdad696897b SHA256: 55fe56e51632d3267ce83743e5c68e0ed9118b4c6ed4ba53a166cd556d7b21ae Description: Ubuntu Font Family Linux console fonts, sans-serif monospace Multi-Arch: foreign Homepage: http://font.ubuntu.com/ Description-md5: ab3f2b5fd6cdd8d896b03ed48ae8c95a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server Package: fonts-ukij-uyghur Priority: optional Section: fonts Installed-Size: 20627 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 20110217-3 Filename: pool/main/f/fonts-ukij-uyghur/fonts-ukij-uyghur_20110217-3_all.deb Size: 5229700 MD5sum: 7eff9289fb49e8cf3852bc454487d321 SHA1: b9598caa5f354c59048b80aeb18ea78be1e74072 SHA256: 136c4114964bb912c1c9facbbc55bbf2e31e097ca17d08c8f01e05e2bc926e3f Description: fonts for Uyghur language Multi-Arch: foreign Homepage: http://ukij.org/fonts/ Description-md5: 61c4776cdf86a76293c2c22c81484834 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-unfonts-core Priority: optional Section: fonts Installed-Size: 33498 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 1.0.3.is.1.0.2-080608-10ubuntu1 Replaces: ttf-unfonts (<< 1.0.1-7), ttf-unfonts-core (<< 1.0.2-080608-4) Pre-Depends: dpkg (>= 1.15.7.2) Breaks: ttf-unfonts (<< 1.0.1-7), ttf-unfonts-core (<< 1.0.2-080608-4) Filename: pool/main/f/fonts-unfonts-core/fonts-unfonts-core_1.0.3.is.1.0.2-080608-10ubuntu1_all.deb Size: 14434120 MD5sum: 68b8a5be53820158e9ec684b05331d6a SHA1: 6a04284cbb46fb8ff5c83e8349e46deda6706503 SHA256: 2299ec9bafa6c40607d797c3df607bdb97b8d8496fe9f6879394751b5995ad30 Description: Un series Korean TrueType fonts Multi-Arch: foreign Homepage: http://kldp.net/projects/unfonts Description-md5: d2d7c4f882eca1661f5721fed9472492 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-desktop Package: fonts-vlgothic Priority: optional Section: fonts Installed-Size: 8169 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 20130607-1ubuntu1 Replaces: ttf-vlgothic (<< 20110414-1) Provides: fonts-japanese-gothic Pre-Depends: dpkg (>= 1.15.6~) Breaks: ttf-vlgothic (<< 20110414-1) Filename: pool/main/f/fonts-vlgothic/fonts-vlgothic_20130607-1ubuntu1_all.deb Size: 2212796 MD5sum: f20e1d6ee9d21f9468a1c2f5cdf35d6c SHA1: 84e72db2abd762ef35742b72c15fdb499a031a2f SHA256: af2c66a35a2db68e00e262f26032e2114679e47877cd952bb44d25eae4907cdb Description: Japanese TrueType font from Vine Linux Multi-Arch: foreign Homepage: http://dicey.org/vlgothic/ Description-md5: f163dce2cbe8004517cecb6dcc146df6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fonts-wqy-microhei Priority: optional Section: fonts Installed-Size: 5167 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.2.0-beta-2 Replaces: ttf-wqy-microhei (<< 0.2.0-beta-2) Provides: ttf-wqy-microhei Recommends: fontconfig (>= 2.3.1-1) Breaks: ttf-wqy-microhei (<< 0.2.0-beta-2) Filename: pool/main/f/fonts-wqy-microhei/fonts-wqy-microhei_0.2.0-beta-2_all.deb Size: 1607142 MD5sum: 5cbdb0b119f4b00f7acf48298399c72c SHA1: bb331b474dd4d6f8c6b5261388faec3a4915a6dd SHA256: f76aa2406eed010d23b2cd12070002c81616084cb3fedc99fea9c40c615d610b Description: Sans-serif style CJK font derived from Droid Multi-Arch: foreign Homepage: http://wenq.org/ Description-md5: c32a7f886f6870b4b8e9be19f98fbef8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-active, kubuntu-active, ubuntustudio-audio Package: fonts-wqy-zenhei Priority: optional Section: fonts Installed-Size: 16459 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Version: 0.9.45-5ubuntu1 Replaces: ttf-wqy-zenhei (<< 0.9.45-5) Provides: ttf-wqy-zenhei Depends: fontconfig (>= 2.3.1-1) Breaks: ttf-wqy-zenhei (<< 0.9.45-5) Filename: pool/main/f/fonts-wqy-zenhei/fonts-wqy-zenhei_0.9.45-5ubuntu1_all.deb Size: 7470352 MD5sum: d02ef9a5edd1b0d3f700d24d59405208 SHA1: 51cf563c6d3e4edfeb6fe47268a528752a5039a7 SHA256: 16029b33b02099e8085d8a819c62805dec7c791f7eb66cf873a768e2875cc6c2 Description: "WenQuanYi Zen Hei" A Hei-Ti Style (sans-serif) Chinese font Multi-Arch: foreign Homepage: http://wqy.sourceforge.net/ Description-md5: 1e5c788bfbd34f18409a1ccd47e50c2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: foomatic-db-compressed-ppds Priority: optional Section: text Installed-Size: 609 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Group Architecture: all Source: foomatic-db Version: 20140410-0ubuntu1 Replaces: foomatic-db, foomatic-db-hpijs Provides: foomatic-db Depends: python3, xz-utils Recommends: cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0), ghostscript, cups, cups-client Suggests: hplip, hplip-cups, cups-filters, openprinting-ppds, printer-driver-all (>= 0.20111206) Conflicts: foomatic-db, foomatic-db-hpijs Breaks: cups (<< 1.5.0-3~), foomatic-db Filename: pool/main/f/foomatic-db/foomatic-db-compressed-ppds_20140410-0ubuntu1_all.deb Size: 423966 MD5sum: a9ed7ae2222aece292c1ab37055ae6b2 SHA1: 6686c0f00bc702e51e2f6dd2c97d2c92e4661052 SHA256: af18142593b93ab3bee8db57017e55eacd3caea6f16e279774d1bbfc2911713f Description: OpenPrinting printer support - Compressed PPDs derived from the database Homepage: http://www.openprinting.org/ Description-md5: fb3b03f43036d62b4dc6ed630144d256 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: foomatic-db-engine Priority: extra Section: text Installed-Size: 792 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Group Architecture: i386 Version: 4.0.11-0ubuntu1 Depends: libc6 (>= 2.7), libxml2 (>= 2.7.4), perl, cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0), wget | curl Pre-Depends: bash (>= 2.05) Recommends: cups, cups-client, foomatic-db-compressed-ppds | foomatic-db Suggests: foomatic-db-gutenprint, netcat Breaks: cups (<< 1.5.0-3~) Filename: pool/main/f/foomatic-db-engine/foomatic-db-engine_4.0.11-0ubuntu1_i386.deb Size: 218430 MD5sum: 9339ee7fb0e3ddd0fa6c783c43d4084f SHA1: 23dc6d803bada249ed8c8c421c8c4192b2aa513c SHA256: 4ffa2854e27c0c41add881647f409df0473568d4adbcfc122d2e66d9a21dbe62 Description: OpenPrinting printer support - programs Homepage: http://www.openprinting.org/ Description-md5: 06dc0af0df2ebffe0b2cf09bedf80c7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fop Priority: optional Section: text Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1:1.1.dfsg-2ubuntu1 Depends: default-jre-headless | java2-runtime-headless, libfop-java (= 1:1.1.dfsg-2ubuntu1) Recommends: libsaxon-java Suggests: fop-doc, libservlet3.0-java Filename: pool/main/f/fop/fop_1.1.dfsg-2ubuntu1_all.deb Size: 13516 MD5sum: 063c034a1549350d464d0b908e743703 SHA1: 5118ae5f5f6d681b02552c076592f915c734641b SHA256: a1306820392e4470392d13219d480d0ff27871b697afdee8f3a41429914ff155 Description: XML formatter driven by XSL Formatting Objects (XSL-FO.) Homepage: http://xmlgraphics.apache.org/fop/ Description-md5: cdc9333d514b57a909e228652b544fef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: fop-doc Priority: optional Section: doc Installed-Size: 67305 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: fop Version: 1:1.1.dfsg-2ubuntu1 Replaces: libfop-java-doc Filename: pool/main/f/fop/fop-doc_1.1.dfsg-2ubuntu1_all.deb Size: 5779150 MD5sum: c0e4362f3003c19aac0871d0de788574 SHA1: 144c7bb9b8fa12a116fe9c93a5d141e9ebcbe4f1 SHA256: 8e372435b7dea31073176c098ddbe39587296c4b1f165d4806321e76ead3bff4 Description: XML formatter driven by XSL Formatting Objects (doc) Homepage: http://xmlgraphics.apache.org/fop/ Description-md5: d016a404cbfacb599991ebf66fd3b5b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: freeglut3 Priority: optional Section: libs Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Anton Gladky Architecture: i386 Source: freeglut Version: 2.8.1-1 Depends: libc6 (>= 2.17), libgl1-mesa-glx | libgl1, libx11-6 (>= 2:1.2.99.901), libxi6 (>= 2:1.2.99.4), libxxf86vm1 Pre-Depends: multiarch-support Filename: pool/main/f/freeglut/freeglut3_2.8.1-1_i386.deb Size: 88248 MD5sum: 8ac7097ea0bc836176be58940d258904 SHA1: 827112d8759619c8cd3a3163a471c905156eddd3 SHA256: f4dbb5dae9d88f42c6eaaf0e72ad65716febb7dbc821fc1e08b8b40f83919c30 Description: OpenGL Utility Toolkit Multi-Arch: same Homepage: http://freeglut.sourceforge.net/ Description-md5: a6aaac3592e8283681e07e3278c82c7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: freeglut3-dbg Priority: extra Section: libdevel Installed-Size: 281 Maintainer: Ubuntu Developers Original-Maintainer: Anton Gladky Architecture: i386 Source: freeglut Version: 2.8.1-1 Depends: freeglut3 (= 2.8.1-1) Filename: pool/main/f/freeglut/freeglut3-dbg_2.8.1-1_i386.deb Size: 167496 MD5sum: e8cc5b2beccfa91aaeea83593b5d7c97 SHA1: a5c7638f6279a075942aba10a0b3743241d2565c SHA256: c339ebd9598ee6c7c4f503383c21957cf956aeb7b5618559808f6dbb69f123ab Description: OpenGL Utility Toolkit debugging information Multi-Arch: same Homepage: http://freeglut.sourceforge.net/ Description-md5: e1f5f8fa74574791b9fd3f9314daffc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: freeglut3-dev Priority: optional Section: libdevel Installed-Size: 614 Maintainer: Ubuntu Developers Original-Maintainer: Anton Gladky Architecture: i386 Source: freeglut Version: 2.8.1-1 Depends: freeglut3 (= 2.8.1-1), libgl1-mesa-dev | libgl-dev, libglu1-mesa-dev | libglu-dev, libxt-dev, libxext-dev Filename: pool/main/f/freeglut/freeglut3-dev_2.8.1-1_i386.deb Size: 165642 MD5sum: 8a059a2f5db1eaffb5a9ffd4349b5cff SHA1: 5fd79d312ef419f509ea3ee14d1de20d7caf0238 SHA256: 946ff0b96214990151e4f58168d6303d3461205aa7a521b6ee1c8fc3ad226cbf Description: OpenGL Utility Toolkit development files Multi-Arch: same Homepage: http://freeglut.sourceforge.net/ Description-md5: 79f3fc9a50b1fb368d365cbd8188f334 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: freeipmi-common Priority: extra Section: admin Installed-Size: 446 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: all Source: freeipmi Version: 1.1.5-3ubuntu3 Pre-Depends: dpkg (>= 1.15.7.2~) Suggests: freeipmi-tools Filename: pool/main/f/freeipmi/freeipmi-common_1.1.5-3ubuntu3_all.deb Size: 159738 MD5sum: a16e777f97bdddf2de94d8854c7737db SHA1: aea7d7a04dcf342706be6dc807ed3a50039b42c2 SHA256: 6ef9bf1619c03868bc7be1fdd1baa9ee99fd27697bffc03c5d4cb0fb958031e7 Description: GNU implementation of the IPMI protocol - common files Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: e744e2bab7d803679befab25b3d06fcc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freeipmi-tools Priority: extra Section: admin Installed-Size: 3425 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: i386 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libc6 (>= 2.15), libfreeipmi12 (>= 1.1.5), libipmiconsole2 (>= 1.1.5), libipmidetect0 (>= 1.1.5) Suggests: freeipmi-ipmidetect, freeipmi-bmc-watchdog Filename: pool/main/f/freeipmi/freeipmi-tools_1.1.5-3ubuntu3_i386.deb Size: 656050 MD5sum: 4b1258f4aba63f17e03ffeb588349276 SHA1: c3319062cd24ddaa343c9d50224f2275a9022f27 SHA256: 7d565e41c16c6e24d6b97dc0c74eb3e4b8054964c05924d8610052baf001a27b Description: GNU implementation of the IPMI protocol - tools Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: b9853a25f20aef237aed373e68bef1d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freeradius Priority: optional Section: net Installed-Size: 1798 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: i386 Version: 2.1.12+dfsg-1.2ubuntu8 Provides: radius-server Depends: lsb-base (>= 3.1-23.2), libc6 (>= 2.15), libfreeradius2 (= 2.1.12+dfsg-1.2ubuntu8), libgdbm3 (>= 1.8.3), libltdl7 (>= 2.4.2), libpam0g (>= 0.99.7.1), libperl5.18 (>= 5.18.2), libpython2.7 (>= 2.7), libssl1.0.0 (>= 1.0.0), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), freeradius-common, ssl-cert, ca-certificates, adduser Recommends: freeradius-utils Suggests: freeradius-ldap, freeradius-postgresql, freeradius-mysql, freeradius-krb5 Filename: pool/main/f/freeradius/freeradius_2.1.12+dfsg-1.2ubuntu8_i386.deb Size: 497328 MD5sum: 7102cf1eed0886fd4544d1eb64539163 SHA1: 1e30746adf408e79cc68eef0cbbaefb9a7f910f0 SHA256: a57125738c7b712d3d2983e0729c2bf4695b6f9be81a19f2ed51d9c86bfb3951 Description: high-performance and highly configurable RADIUS server Homepage: http://www.freeradius.org/ Description-md5: 55219a1267c72db69e230159726b4e4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freeradius-common Priority: optional Section: net Installed-Size: 909 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: all Source: freeradius Version: 2.1.12+dfsg-1.2ubuntu8 Replaces: freeradius (<< 2.0) Depends: adduser Conflicts: radiusd-livingston, xtradius, yardradius Filename: pool/main/f/freeradius/freeradius-common_2.1.12+dfsg-1.2ubuntu8_all.deb Size: 189326 MD5sum: a1850edc8dcc3c5bf27cdc075e53d489 SHA1: e19c739ea05449bd5b5749b2361127642a273aaa SHA256: 85099bc69da929bea27af32ca1f53b5c9bae75f798aa49251ad6d2fc454dc4e5 Description: FreeRADIUS common files Homepage: http://www.freeradius.org/ Description-md5: 1c7945f97894906b5aaee9b087c2f56c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freeradius-dbg Priority: optional Section: net Installed-Size: 3537 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: i386 Source: freeradius Version: 2.1.12+dfsg-1.2ubuntu8 Depends: freeradius (= 2.1.12+dfsg-1.2ubuntu8) Filename: pool/main/f/freeradius/freeradius-dbg_2.1.12+dfsg-1.2ubuntu8_i386.deb Size: 952842 MD5sum: 80692d814be643ce9061a63db2037b96 SHA1: 81a7243bbe52a79e765b53cebac4ec5a903c2e17 SHA256: b5768bc75010f1b3b73053c84832634583feb2fb7fb90f08a37b3710d717cceb Description: debug symbols for the FreeRADIUS packages Homepage: http://www.freeradius.org/ Description-md5: 105d232caa700371774afccdc8cf3bd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: freeradius-utils Priority: optional Section: net Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: i386 Source: freeradius Version: 2.1.12+dfsg-1.2ubuntu8 Replaces: freeradius (<< 2.0) Depends: libc6 (>= 2.15), libfreeradius2 (= 2.1.12+dfsg-1.2ubuntu8), libgdbm3 (>= 1.8.3), libpcap0.8 (>= 0.9.8), freeradius-common Recommends: libdbi-perl Conflicts: radiusd-livingston, yardradius Filename: pool/main/f/freeradius/freeradius-utils_2.1.12+dfsg-1.2ubuntu8_i386.deb Size: 53356 MD5sum: c70824ecc1d8b79c2c938c6a9c1e6d40 SHA1: 280f690fb46511e660267c8a43f8d47c5868181a SHA256: d65fae65c767852d99c9429c755eccf9ef3f47ea0d1f0bf1f9d7a8e2aa65091d Description: FreeRADIUS client utilities Homepage: http://www.freeradius.org/ Description-md5: 60c2c453c2c27871c03c6323f1d4cf90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freerdp-dbg Priority: extra Section: debug Installed-Size: 1873 Maintainer: Ubuntu Developers Original-Maintainer: Mike Gabriel Architecture: i386 Source: freerdp Version: 1.0.2-2ubuntu1 Depends: freerdp-x11 (= 1.0.2-2ubuntu1), libfreerdp1 (= 1.0.2-2ubuntu1), libfreerdp-plugins-standard (= 1.0.2-2ubuntu1) Filename: pool/main/f/freerdp/freerdp-dbg_1.0.2-2ubuntu1_i386.deb Size: 1603442 MD5sum: 63206fa7628579f48cdafb83cb42be93 SHA1: 66af2022e78fbcee4ef717cd4f71b0f5a2e247d9 SHA256: 44470b685f526293732fcfffa4d3ee4e51031a800045093054b4a61524377f3c Description: RDP client for Windows Terminal Services (debug) Homepage: http://www.freerdp.com/ Description-md5: b076a6058ef43b006433da2ad80ff6a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: freerdp-x11 Priority: optional Section: x11 Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Mike Gabriel Architecture: i386 Source: freerdp Version: 1.0.2-2ubuntu1 Provides: freerdp Depends: libc6 (>= 2.15), libfreerdp1 (>= 1.0.1), libx11-6, libxcursor1 (>> 1.1.2), libxext6, libxinerama1, libxv1 Recommends: libfreerdp-plugins-standard Filename: pool/main/f/freerdp/freerdp-x11_1.0.2-2ubuntu1_i386.deb Size: 48602 MD5sum: d72ce59d0177752d39e33bb54ccc22c2 SHA1: 82acb540edeadf4b877781eb41025e70abfdbe35 SHA256: 9fb1588d308e45fded05784b060783c5cd3ad50d34020c3a9651cca6c55a2e75 Description: RDP client for Windows Terminal Services Homepage: http://www.freerdp.com/ Description-md5: 59079f812101eee635ba7f9e171e46a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, ubuntustudio-desktop Package: freetds-common Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: all Source: freetds Version: 0.91-5 Replaces: libct3, libct4 (<< 0.82-1) Filename: pool/main/f/freetds/freetds-common_0.91-5_all.deb Size: 24256 MD5sum: 3eb2adb8cea310bece33c8a6c61657c2 SHA1: bdf3909101d9f6b65f9398c2d72c6390cf5d0212 SHA256: dd1ccfa8784a592e7e13d83ffcec16badca277dded1565847ee395678c222ee2 Description: configuration files for FreeTDS SQL client libraries Multi-Arch: foreign Homepage: http://www.freetds.org/ Description-md5: a0e753a476f0693fa2896e6335f586c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: freetds-dev Priority: optional Section: devel Installed-Size: 1318 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: freetds Version: 0.91-5 Depends: libct4 (= 0.91-5), libsybdb5 (= 0.91-5) Conflicts: crystalspace-dev Filename: pool/main/f/freetds/freetds-dev_0.91-5_i386.deb Size: 479344 MD5sum: 382f365b47c878bb6ba8d456933a70a7 SHA1: 81dc59bcf53a72f03f31f56707f755aefc08c032 SHA256: 8622ae24c05fafe1254075fa8675409f7725a11055ff0cd1f1a9a116d3136b57 Description: MS SQL and Sybase client library (static libs and headers) Homepage: http://www.freetds.org/ Description-md5: 66f74ed837454f3b258fb8264488f827 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: friendly-recovery Priority: standard Section: admin Installed-Size: 67 Maintainer: Michael Vogt Architecture: all Version: 0.2.25 Depends: upstart-job, upstart, whiptail Recommends: gettext-base, update-manager-core (>= 0.90.0) Breaks: grub2 (<< 1.99-12ubuntu4), initramfs-tools (<< 0.99ubuntu4), upstart (<< 1.3-0ubuntu9) Filename: pool/main/f/friendly-recovery/friendly-recovery_0.2.25_all.deb Size: 9236 MD5sum: ec8080a245218171b8abede8a166c44d SHA1: f56953b6f69d3371b26c4946a410db8d45e1a79b SHA256: d789315f5d51442998bbf9a2090652e49b57fe540bc8d35a5d96c4d3cf7d3e6e Description: Make recovery more user-friendly Description-md5: 40525278a400423d374c64c78bc211a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: friends Priority: extra Section: misc Installed-Size: 87 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 0.2.0+14.04.20140217.1-0ubuntu1 Depends: libaccounts-glib0 (>= 1.0), libc6 (>= 2.3.6-6~), libdee-1.0-4 (>= 0.5.12), libglib2.0-0 (>= 2.37.3), dconf-gsettings-backend | gsettings-backend, friends-dispatcher Filename: pool/main/f/friends/friends_0.2.0+14.04.20140217.1-0ubuntu1_i386.deb Size: 13998 MD5sum: 900eda06f1b05284491467ecb1af1c8a SHA1: 9843d3eec55f0dee14a84f6d53d3f41972f9c4e1 SHA256: 8fce8be41ca9d9e55e30454953a095da75aa821de84d29922961127e3e829f5a Description: Social integration with the desktop Multi-Arch: foreign Homepage: https://launchpad.net/friends Description-md5: a6dcce49ed6a9d3cd70d71b3cbe5688e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: friends-dispatcher Priority: extra Section: misc Installed-Size: 253 Maintainer: Ubuntu Desktop Team Architecture: all Source: friends Version: 0.2.0+14.04.20140217.1-0ubuntu1 Depends: gir1.2-dee-1.0, gir1.2-ebook-1.2 (>= 3.8), gir1.2-ebookcontacts-1.2 (>= 3.8), gir1.2-edataserver-1.2 (>= 3.8), gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-networkmanager-1.0, gir1.2-notify-0.7, gir1.2-signon-1.0, gir1.2-soup-2.4, gir1.2-accounts-1.0, python3-pkg-resources, python3-dbus, python3-gi, python3-oauthlib, python3:any (>= 3.3.2-2~), python3 Recommends: friends-facebook, friends-twitter, gir1.2-dbusmenu-glib-0.4, gir1.2-messagingmenu-1.0, gir1.2-unity-5.0 Conflicts: friends (<< 0.1.1bzr13.02.12) Breaks: friends (<< 0.1.1bzr13.02.12) Filename: pool/main/f/friends/friends-dispatcher_0.2.0+14.04.20140217.1-0ubuntu1_all.deb Size: 42706 MD5sum: 3e04e67a6d22812ea42bba8a96169c37 SHA1: f5970e4d9d8b453a1abe47a839eeadcd990b3780 SHA256: 1cfa6c2370c6478879fa38f35a3e54dbc900dd50ca733ec94ad5f24c04cff5e2 Description: Social integration with the desktop Multi-Arch: foreign Homepage: https://launchpad.net/friends Description-md5: a6dcce49ed6a9d3cd70d71b3cbe5688e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: friends-facebook Priority: extra Section: misc Installed-Size: 63 Maintainer: Ubuntu Desktop Team Architecture: all Source: friends Version: 0.2.0+14.04.20140217.1-0ubuntu1 Depends: friends, python3:any (>= 3.3.2-2~), account-plugin-facebook Filename: pool/main/f/friends/friends-facebook_0.2.0+14.04.20140217.1-0ubuntu1_all.deb Size: 5554 MD5sum: b4601126858905736748700c69a5f00d SHA1: 82bf24f5182696b7848f54e1657b803fc91ec84f SHA256: 18eb0697f8cb6eb61b944b569fd6e76fa6d3f08681c1dadbaa2a7068efe0616b Description: Social integration with the desktop - Facebook Multi-Arch: foreign Homepage: https://launchpad.net/friends Description-md5: 3a31b7d978956f8c11b4dbb3699ecfca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: friends-flickr Priority: extra Section: misc Installed-Size: 57 Maintainer: Ubuntu Desktop Team Architecture: all Source: friends Version: 0.2.0+14.04.20140217.1-0ubuntu1 Depends: friends, python3:any (>= 3.3.2-2~), account-plugin-flickr Filename: pool/main/f/friends/friends-flickr_0.2.0+14.04.20140217.1-0ubuntu1_all.deb Size: 3904 MD5sum: 67c62b71ad3bf850445868362eca9873 SHA1: d1681e89e74eeec8f6c02a86fa2296af6e2c33ca SHA256: fa6365ae966b4cce88c8baf269fc8e6f05df40cf2cdaf28f706daefc8c5b5bb2 Description: Social integration with the desktop - Flickr Multi-Arch: foreign Homepage: https://launchpad.net/friends Description-md5: 41dffac763f165245b75f8ee0dddae2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: friends-twitter Priority: extra Section: misc Installed-Size: 68 Maintainer: Ubuntu Desktop Team Architecture: all Source: friends Version: 0.2.0+14.04.20140217.1-0ubuntu1 Depends: friends, python3:any (>= 3.3.2-2~), account-plugin-twitter Filename: pool/main/f/friends/friends-twitter_0.2.0+14.04.20140217.1-0ubuntu1_all.deb Size: 6484 MD5sum: 2fd552ce849c4967175c49e12209d3ab SHA1: 8bbd574fb3217825537c6067bbad8b7af6e53785 SHA256: 8fa4fb92fffc180d36029f372363bbf3d87c99db3ab61898a6b52a0876050b3e Description: Social integration with the desktop - Twitter Multi-Arch: foreign Homepage: https://launchpad.net/friends Description-md5: 1bdc9bb7fd13cd173ba94c65d1bf657f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ftp Priority: standard Section: net Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Alberto Gonzalez Iniesta Architecture: i386 Source: netkit-ftp Version: 0.17-28 Replaces: netstd Depends: libc6 (>= 2.15), libreadline6 (>= 6.0), netbase Filename: pool/main/n/netkit-ftp/ftp_0.17-28_i386.deb Size: 53826 MD5sum: e98657d9dbac5cf8700a4b47346aa46a SHA1: ffdf520052b98c20f598234fba684cc5b6ace5e4 SHA256: 5d008a59d025609a10bafd8a9bb9c2e5b227f8f07ca3da1313b862a359f251d8 Description: classical file transfer client Description-md5: ce93e483dfc5fef0655f73f364b3c01c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: fuse Priority: standard Section: utils Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Version: 2.9.2-4ubuntu4 Depends: libc6 (>= 2.4), libfuse2 (= 2.9.2-4ubuntu4), adduser, mount (>= 2.19.1), sed (>= 4), udev | makedev Filename: pool/main/f/fuse/fuse_2.9.2-4ubuntu4_i386.deb Size: 24410 MD5sum: d2e3caabe07bda4e161107c144fb9b37 SHA1: 996b764bc2e2d1de94fb365a4949acd588c6be89 SHA256: aba94e1dabd3c3a53c4359cf6efb9a158933d6591dea670c45af6527257d20f9 Description: Filesystem in Userspace Homepage: http://fuse.sourceforge.net/ Description-md5: 7c02c670c9296dcdf481f6c060b0083d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: fuse-dbg Priority: extra Section: debug Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Source: fuse Version: 2.9.2-4ubuntu4 Depends: fuse (= 2.9.2-4ubuntu4), libfuse2 (= 2.9.2-4ubuntu4), libfuse-dev (= 2.9.2-4ubuntu4) Filename: pool/main/f/fuse/fuse-dbg_2.9.2-4ubuntu4_i386.deb Size: 249938 MD5sum: ae98eef5edd9063442ea41e047ca4f34 SHA1: d86b4ef65cca7e03b9cb011c772b2d0050c70270 SHA256: 5c504b61d80bd6e0ffbbb992cd270171015c9b3c9be51dddaecca2e1be453a06 Description: Filesystem in Userspace Homepage: http://fuse.sourceforge.net/ Description-md5: 7c02c670c9296dcdf481f6c060b0083d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++ Priority: optional Section: devel Installed-Size: 34 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Provides: c++-compiler Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc (>= 4:4.8.2-1ubuntu6), g++-4.8 (>= 4.8.2-5~), gcc-4.8 (>= 4.8.2-5~) Suggests: g++-multilib Filename: pool/main/g/gcc-defaults/g++_4.8.2-1ubuntu6_i386.deb Size: 1500 MD5sum: 2ae0ec73b94c9f6f5073115bcb489772 SHA1: abe4ce23489d22c728cb6ab5a1ea471686356a7c SHA256: fecd9de588933f96885659f7e9a21d1bd077a187735b01503c22c5b531d9b4e9 Description: GNU C++ compiler Description-md5: 4d44b18774ae5123b7c3f70d940cf655 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Package: g++-4.7 Priority: optional Section: devel Installed-Size: 13091 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Provides: c++-compiler, c++abi2-dev Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), gcc-4.7 (= 4.7.3-12ubuntu1), libstdc++6-4.7-dev (= 4.7.3-12ubuntu1), libc6 (>= 2.11), libcloog-ppl1, libgmp10, libmpc3, libmpfr4 (>= 3.1.2), libppl-c4, zlib1g (>= 1:1.1.4) Suggests: g++-4.7-multilib, gcc-4.7-doc (>= 4.7.2-16), libstdc++6-4.7-dbg (>= 4.7.3-12ubuntu1) Filename: pool/main/g/gcc-4.7/g++-4.7_4.7.3-12ubuntu1_i386.deb Size: 4317714 MD5sum: 8866dabdd5923e37b90d007eb1d0d532 SHA1: 4d5c7fd1ed747787b95c5e6861810230cfeab02d SHA256: 6453ba7cd096a7e6b6565140dae40f168be17566d48f012b3264c48b643e1aee Description: GNU C++ compiler Homepage: http://gcc.gnu.org/ Description-md5: 0a3fad3367cb994bd16c61b0e16a8b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8 Priority: optional Section: devel Installed-Size: 17076 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Provides: c++-compiler, c++abi2-dev Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: g++-4.8-multilib, gcc-4.8-doc (>= 4.8), libstdc++6-4.8-dbg (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/g++-4.8_4.8.2-19ubuntu1_i386.deb Size: 7022868 MD5sum: 7a73baf7f64880012939ad634dcb7dfa SHA1: 8e789d8ca40c0c86b22dc087a56b320d05fec63f SHA256: f5954c4cc6cb12be81c4ddc5b2351f8dddc866249d336560513563f8cebcf530 Description: GNU C++ compiler Homepage: http://gcc.gnu.org/ Description-md5: 0a3fad3367cb994bd16c61b0e16a8b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Package: g++-4.8-aarch64-linux-gnu Priority: extra Section: devel Installed-Size: 12387 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Provides: c++-compiler-aarch64-linux-gnu, c++abi2-dev Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), gcc-4.8-aarch64-linux-gnu (= 4.8.2-13ubuntu1cross0.11), libstdc++-4.8-dev-arm64-cross (= 4.8.2-13ubuntu1cross0.11), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-doc (>= 4.8), libstdc++6-4.8-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11) Filename: pool/main/g/gcc-4.8-arm64-cross/g++-4.8-aarch64-linux-gnu_4.8.2-13ubuntu1cross0.11_i386.deb Size: 4107656 MD5sum: 63fab51fae4e1c676abd287f774dabd2 SHA1: 364ea636bdb1ffd3c78270d5b7a60d9acb47d72d SHA256: 8b6503734491084af1b28fa86b815d8d9bc305c1124306261d5e251b07cb4607 Description: GNU C++ compiler Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 375cdf23ac087e4b16d8e29883083ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 14837 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Provides: c++-compiler-arm-linux-gnueabihf, c++abi2-dev Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), gcc-4.8-arm-linux-gnueabihf (= 4.8.2-16ubuntu4cross0.11), libstdc++-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: g++-4.8-multilib-arm-linux-gnueabihf, gcc-4.8-doc (>= 4.8), libstdc++6-4.8-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) Filename: pool/main/g/gcc-4.8-armhf-cross/g++-4.8-arm-linux-gnueabihf_4.8.2-16ubuntu4cross0.11_i386.deb Size: 4712404 MD5sum: b798e597fab883558e96dc66fbd8fce2 SHA1: a0b7432330bad745ede16117ea46574ed9c07c83 SHA256: 6656057b5dc8f578e042bbcd56780ebdf917c72ec647bbf313d5600bc5421116 Description: GNU C++ compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 1af3e5930fd0d3a33d12f0f8bc7e2f24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), g++-4.8 (= 4.8.2-19ubuntu1), gcc-4.8-multilib (= 4.8.2-19ubuntu1), lib64stdc++-4.8-dev (= 4.8.2-19ubuntu1), libx32stdc++-4.8-dev (= 4.8.2-19ubuntu1) Suggests: lib64stdc++6-4.8-dbg (>= 4.8.2-19ubuntu1), libx32stdc++6-4.8-dbg (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/g++-4.8-multilib_4.8.2-19ubuntu1_i386.deb Size: 992 MD5sum: 6d18d40e2052343d5e84dea91b32cd5d SHA1: ee05f841593d6b6295669a64f0b108f9525d65e9 SHA256: 38410ec8e0766421a19f1713650c92b749e51757ffd57632fad399bba956eedc Description: GNU C++ compiler (multilib files) Homepage: http://gcc.gnu.org/ Description-md5: 0a4963e8755de4e48202cd72696d3556 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-multilib-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), g++-4.8-arm-linux-gnueabihf (= 4.8.2-16ubuntu4cross0.11), gcc-4.8-multilib-arm-linux-gnueabihf (= 4.8.2-16ubuntu4cross0.11), libsfstdc++-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11) | libsfstdc++-4.8-dev-armhf-cross Suggests: libsfstdc++6-4.8-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) | libsfstdc++6-4.8-dbg-armhf-cross Filename: pool/main/g/gcc-4.8-armhf-cross/g++-4.8-multilib-arm-linux-gnueabihf_4.8.2-16ubuntu4cross0.11_i386.deb Size: 1094 MD5sum: 81f59b388564a3a4e93425e088543b11 SHA1: 5852c863d26497e0d8291f8236c1ed359f76e617 SHA256: ba460fbc2caccf5e7af5dfd38518b3624c1a1e01957bcca6a0a33210951086ea Description: GNU C++ compiler (multilib files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 0a4963e8755de4e48202cd72696d3556 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-multilib-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), g++-4.8-powerpc-linux-gnu (= 4.8.2-16ubuntu3cross0.11), gcc-4.8-multilib-powerpc-linux-gnu (= 4.8.2-16ubuntu3cross0.11), lib64stdc++-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11) Suggests: lib64stdc++6-4.8-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11) Filename: pool/main/g/gcc-4.8-powerpc-cross/g++-4.8-multilib-powerpc-linux-gnu_4.8.2-16ubuntu3cross0.11_i386.deb Size: 1074 MD5sum: 63e870b255d0202381062c1f9f1405de SHA1: c09bc2937827a5764acced175aa4715b766886c1 SHA256: fca8d3b68eb9f79436f51ddcaaa7deec4cbdbd76c8f8f7c760d3c918b2cb0cce Description: GNU C++ compiler (multilib files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 0a4963e8755de4e48202cd72696d3556 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 14833 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Provides: c++-compiler-powerpc-linux-gnu, c++abi2-dev Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), gcc-4.8-powerpc-linux-gnu (= 4.8.2-16ubuntu3cross0.11), libstdc++-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: g++-4.8-multilib-powerpc-linux-gnu, gcc-4.8-doc (>= 4.8), libstdc++6-4.8-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11) Filename: pool/main/g/gcc-4.8-powerpc-cross/g++-4.8-powerpc-linux-gnu_4.8.2-16ubuntu3cross0.11_i386.deb Size: 4817474 MD5sum: 2a4e94e96fc1bccef4d92bf4b1ad62db SHA1: f83484f1e75eab14815ef815beca862f0643890c SHA256: 3d21b56c06305c80ab571908b55cdf46a654cca2d31aa6e754180ed111b59132 Description: GNU C++ compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 2c5b1836d138ff53e7df7f27a0862e1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-4.8-powerpc64le-linux-gnu Priority: extra Section: devel Installed-Size: 14833 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Provides: c++-compiler-powerpc64le-linux-gnu, c++abi2-dev Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), gcc-4.8-powerpc64le-linux-gnu (= 4.8.2-16ubuntu4cross0.4), libstdc++-4.8-dev-ppc64el-cross (= 4.8.2-16ubuntu4cross0.4), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gcc-4.8-doc (>= 4.8), libstdc++6-4.8-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4) Filename: pool/main/g/gcc-4.8-ppc64el-cross/g++-4.8-powerpc64le-linux-gnu_4.8.2-16ubuntu4cross0.4_i386.deb Size: 4659598 MD5sum: 26db719af33d55d36cae4d69cb357610 SHA1: 151136665bfb74b655e2a6014f4bf3aaeecfdcdd SHA256: ff5a2c5ce99f3bffcdf7e3acda5b430f93f279267891f4a352726248ab16d18a Description: GNU C++ compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 7326febff1363e9a9e082bce774ea2a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-aarch64-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-arm64-cross (0.4) Version: 4:4.8.2-1 Depends: cpp-aarch64-linux-gnu (>= 4:4.8.2-1), gcc-aarch64-linux-gnu (>= 4:4.8.2-1), g++-4.8-aarch64-linux-gnu (>= 4.8.2-1), gcc-4.8-aarch64-linux-gnu (>= 4.8.2-1) Conflicts: g++-4.4-aarch64-linux-gnu (<= 4.4.5-15~), g++-4.5-aarch64-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-arm64-cross/g++-aarch64-linux-gnu_4.8.2-1_i386.deb Size: 1048 MD5sum: a1bccfe1d0a4d0e088c4b0b072547724 SHA1: eed783e20fe3316ab9476ecc466a0fd4f248c6a3 SHA256: 1071000eb3129611c3ce26bd721d55231397805f9d38c5bbaa8d7beaabcac239 Description: The GNU C++ compiler for arm64 architecture Description-md5: c170d59c5aa5c989fc7036dc7d932825 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-arm-linux-gnueabihf Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-armhf-cross (1.16) Version: 4:4.8.2-1 Depends: cpp-arm-linux-gnueabihf (>= 4:4.8.2-1), gcc-arm-linux-gnueabihf (>= 4:4.8.2-1), g++-4.8-multilib-arm-linux-gnueabihf (>= 4.8.2-1), gcc-4.8-multilib-arm-linux-gnueabihf (>= 4.8.2-1) Conflicts: g++-4.4-arm-linux-gnueabihf (<= 4.4.5-15~), g++-4.5-arm-linux-gnueabihf (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-armhf-cross/g++-arm-linux-gnueabihf_4.8.2-1_i386.deb Size: 1058 MD5sum: 8e2c5307c2a64f30bf2d56aa850c6758 SHA1: b302efa7d661837bbf63567f653d6e8fb6d4face SHA256: 29aee1ff8cc2746d9cb2b0256c4e5e623a4a3c138ed7728d8aa725d1acbaf59b Description: The GNU C++ compiler for armhf architecture Description-md5: c8a07fa46539a050c506e4213fbe4719 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc-multilib (>= 4:4.8.2-1ubuntu6), g++ (>= 4:4.8.2-1ubuntu6), g++-4.8-multilib (>= 4.8.2-5~) Filename: pool/main/g/gcc-defaults/g++-multilib_4.8.2-1ubuntu6_i386.deb Size: 932 MD5sum: 52ef98478f04d2ed09f21766242337b4 SHA1: 71ff72904112e37ad8181efd996166139e1fe73e SHA256: 897d876b4a7dfafaa3a409e42e017352bd1195c1be648e6957fb77be62c86052 Description: GNU C++ compiler (multilib files) Description-md5: 9df28aeef12fea2f44664b1d4c3bac30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-powerpc-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Architecture: i386 Source: gcc-defaults-powerpc-cross (0.7) Version: 4:4.8.2-1 Depends: cpp-powerpc-linux-gnu (>= 4:4.8.2-1), gcc-powerpc-linux-gnu (>= 4:4.8.2-1), g++-4.8-multilib-powerpc-linux-gnu (>= 4.8.2-1), gcc-4.8-multilib-powerpc-linux-gnu (>= 4.8.2-1) Conflicts: g++-4.4-powerpc-linux-gnu (<= 4.4.5-15~), g++-4.5-powerpc-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-powerpc-cross/g++-powerpc-linux-gnu_4.8.2-1_i386.deb Size: 1012 MD5sum: de2fb382f17a6ee5bbd2986db6db17e7 SHA1: ae73ecf318b26a13fd14ed5e7953268b0c675612 SHA256: 16edab70ba1723c8781bc6cfd7777095d220531d28f14567860b036a662bbd26 Description: The GNU C++ compiler for powerpc architecture Description-md5: 51becdb3258aa2f9a0fa67603dbc4407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: g++-powerpc64le-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-ppc64el-cross (0.2) Version: 4:4.8.2-1 Depends: cpp-powerpc64le-linux-gnu (>= 4:4.8.2-1), gcc-powerpc64le-linux-gnu (>= 4:4.8.2-1), g++-4.8-powerpc64le-linux-gnu (>= 4.8.2-1), gcc-4.8-powerpc64le-linux-gnu (>= 4.8.2-1) Conflicts: g++-4.4-powerpc64le-linux-gnu (<= 4.4.5-15~), g++-4.5-powerpc64le-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-ppc64el-cross/g++-powerpc64le-linux-gnu_4.8.2-1_i386.deb Size: 1052 MD5sum: 5c04e512aa8992e4f38e9f8b46277c0f SHA1: 14c16a1b91adc4287276f93957a542ffef1cbe3c SHA256: a4707e5149cfa24e9f00a2b94bd365da347be519d6ed0a6abdb691abba00e8ef Description: The GNU C++ compiler for ppc64el architecture Description-md5: 6c5f0d5dc319d0f980bdaff7ba6fe23e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gawk Priority: optional Section: interpreters Installed-Size: 1860 Maintainer: Ubuntu Developers Original-Maintainer: Arthur Loiret Architecture: i386 Version: 1:4.0.1+dfsg-2.1ubuntu2 Provides: awk Pre-Depends: libc6 (>= 2.11), libreadline6 (>= 6.0), libsigsegv2 (>= 2.9) Suggests: gawk-doc Filename: pool/main/g/gawk/gawk_4.0.1+dfsg-2.1ubuntu2_i386.deb Size: 729650 MD5sum: 75c7d280278af8eea79a75bd1d0d967e SHA1: 026149532acce28b970b5e98d604f033f783c30a SHA256: 11a49a98c88dd6f5f054c5be22d5c3a9143cc2e054b9b8dbc3a73db73e61e26f Description: GNU awk, a pattern scanning and processing language Multi-Arch: foreign Homepage: http://www.gnu.org/software/gawk/ Description-md5: 0dce81fe543994c3caea814e2777732e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-usb, cloud-image, server, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: gcc Priority: optional Section: devel Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Provides: c-compiler Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc-4.8 (>= 4.8.2-5~) Recommends: libc6-dev | libc-dev Suggests: gcc-multilib, make, manpages-dev, autoconf, automake1.9, libtool, flex, bison, gdb, gcc-doc Conflicts: gcc-doc (<< 1:2.95.3) Filename: pool/main/g/gcc-defaults/gcc_4.8.2-1ubuntu6_i386.deb Size: 5096 MD5sum: 12ee434d87cd0b7e1b062b07512ad072 SHA1: 10a455852e28fd4a9591db36e09c6f26ccb48518 SHA256: 0afa10f118cc6a9f6a5974e3e0bfb3942234b1aa79a81d41ccb4b382d4ddb1a4 Description: GNU C compiler Description-md5: c7efd71c7c651a9ac8b2adf36b137790 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gcc-4.7 Priority: optional Section: devel Installed-Size: 13078 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Version: 4.7.3-12ubuntu1 Provides: c-compiler Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), cpp-4.7 (= 4.7.3-12ubuntu1), binutils (>= 2.24), libgcc-4.7-dev (= 4.7.3-12ubuntu1), libc6 (>= 2.11), libcloog-ppl1, libgmp10, libmpc3, libmpfr4 (>= 3.1.2), libppl-c4, zlib1g (>= 1:1.1.4) Recommends: libc6-dev (>= 2.13-0ubuntu6) Suggests: gcc-4.7-multilib, libmudflap0-4.7-dev (>= 4.7.3-12ubuntu1), gcc-4.7-doc (>= 4.7.2-16), gcc-4.7-locales (>= 4.7.2-16), libgcc1-dbg (>= 1:4.7.3-12ubuntu1), libgomp1-dbg (>= 4.7.3-12ubuntu1), libitm1-dbg (>= 4.7.3-12ubuntu1), libquadmath0-dbg (>= 4.7.3-12ubuntu1), libmudflap0-dbg (>= 4.7.3-12ubuntu1), binutils-gold (>= 2.24) Filename: pool/main/g/gcc-4.7/gcc-4.7_4.7.3-12ubuntu1_i386.deb Size: 4491788 MD5sum: a64661830ca3849dcc3d22e13db111cb SHA1: 9c35167e14f7494ae1cb3038a9394978a238137a SHA256: 2ce3ccacb69598e56971e25fdf6d4eda1a8625f876f196fa0bd9640796b6a93c Description: GNU C compiler Homepage: http://gcc.gnu.org/ Description-md5: 394374e688b1afb3af5f419895d29698 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.7-base Priority: optional Section: libs Installed-Size: 204 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Breaks: dehydra (<= 0.9.hg20110609-2), gcc-4.4-base (<< 4.4.7), gcj-4.4-base (<< 4.4.6-9~), gcj-4.6-base (<< 4.6.1-4~), gnat-4.4-base (<< 4.4.6-3~), gnat-4.6 (<< 4.6.1-5~) Filename: pool/main/g/gcc-4.7/gcc-4.7-base_4.7.3-12ubuntu1_i386.deb Size: 13830 MD5sum: 2b0d6365ac79546090c50d266c4f6c14 SHA1: 36aaf2da60446f6e85c5d7262f297cf86732ca78 SHA256: 9e5c7bd51ef0d71bdb586c60d62c862ecb8ed651b5ca74926c8a91d26f6bccb8 Description: GCC, the GNU Compiler Collection (base package) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.7-doc Priority: optional Section: doc Installed-Size: 8396 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gcc (<= 2.7.2.3-4.3), gcc-docs (<< 2.95.2) Depends: gcc-4.7-base (>= 4.7.2-16), dpkg (>= 1.15.4) | install-info Conflicts: gcc-docs (<< 2.95.2) Filename: pool/main/g/gcc-4.7/gcc-4.7-doc_4.7.3-12ubuntu1_all.deb Size: 2035796 MD5sum: a97a50b2c93b16ccf708518b71eb7b8f SHA1: 76e42a85d38f8c6e98d6de7c2040e1af3c43eddb SHA256: fdb51d60fa6606aa4c67059c2ec45efa66b9ce30b99f8f93c0bd673722999b63 Description: Documentation for the GNU compilers (gcc, gobjc, g++) Homepage: http://gcc.gnu.org/ Description-md5: bf320d6d806b62ff03b567626d36b1fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.7-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), gcc-4.7 (= 4.7.3-12ubuntu1), libc6-dev-amd64 (>= 2.11), libc6-dev-x32 (>= 2.11), lib64gcc-4.7-dev (= 4.7.3-12ubuntu1), libx32gcc-4.7-dev (= 4.7.3-12ubuntu1) Filename: pool/main/g/gcc-4.7/gcc-4.7-multilib_4.7.3-12ubuntu1_i386.deb Size: 972 MD5sum: 98479351357abe78832556e636202a5c SHA1: 454b14941a2a5eb0349dbe789e0e2030e58d5ac2 SHA256: 7a058409c8157b60494fa6e176ec22eafccb5517deab59ad0dbe2522957b2cfd Description: GNU C compiler (multilib files) Homepage: http://gcc.gnu.org/ Description-md5: f1f416f51fd3f11d562e86a79da6216a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.7-plugin-dev Priority: optional Section: devel Installed-Size: 5535 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), gcc-4.7 (= 4.7.3-12ubuntu1), libgmp-dev (>= 2:5.0.1~), libc6 (>= 2.8) Filename: pool/main/g/gcc-4.7/gcc-4.7-plugin-dev_4.7.3-12ubuntu1_i386.deb Size: 699302 MD5sum: 7048c903c4a7f0d3c67f36a44fbdb767 SHA1: 9764a6b5994159767262ec6d8c512e7181e771c4 SHA256: 3bdbc569d8bd93e5db4f6e3d1d59fd21b73fbb7fe96cd8350259acb87301b681 Description: Files for GNU GCC plugin development. Homepage: http://gcc.gnu.org/ Description-md5: f04e3fe2e4b62ffb72f0dc5ae683f155 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8 Priority: optional Section: devel Installed-Size: 14608 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Version: 4.8.2-19ubuntu1 Provides: c-compiler Depends: cpp-4.8 (= 4.8.2-19ubuntu1), gcc-4.8-base (= 4.8.2-19ubuntu1), binutils (>= 2.24), libgcc-4.8-dev (= 4.8.2-19ubuntu1), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Recommends: libc6-dev (>= 2.13-0ubuntu6) Suggests: gcc-4.8-multilib, gcc-4.8-doc (>= 4.8), gcc-4.8-locales (>= 4.8), libgcc1-dbg (>= 1:4.8.2-19ubuntu1), libgomp1-dbg (>= 4.8.2-19ubuntu1), libitm1-dbg (>= 4.8.2-19ubuntu1), libatomic1-dbg (>= 4.8.2-19ubuntu1), libasan0-dbg (>= 4.8.2-19ubuntu1), libtsan0-dbg (>= 4.8.2-19ubuntu1), libbacktrace1-dbg (>= 4.8.2-19ubuntu1), libquadmath0-dbg (>= 4.8.2-19ubuntu1), binutils-gold (>= 2.24) Filename: pool/main/g/gcc-4.8/gcc-4.8_4.8.2-19ubuntu1_i386.deb Size: 4884246 MD5sum: ad531b4cf5cdf4f0755714a82dcfe54f SHA1: 6478c3df1682e8c45bca4e9e56dfea03f030af2f SHA256: d4494653830e1d714db9846467ef5e4107fd929807ef64a021153e953d9c1b2e Description: GNU C compiler Homepage: http://gcc.gnu.org/ Description-md5: 394374e688b1afb3af5f419895d29698 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gcc-4.8-aarch64-linux-gnu Priority: extra Section: devel Installed-Size: 12523 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Provides: c-compiler-aarch64-linux-gnu Depends: cpp-4.8-aarch64-linux-gnu (= 4.8.2-13ubuntu1cross0.11), binutils-aarch64-linux-gnu (>= 2.22), libgcc-4.8-dev-arm64-cross (= 4.8.2-13ubuntu1cross0.11), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Recommends: libc6-dev-arm64-cross (>= 2.13-0ubuntu6) Suggests: gcc-4.8-doc (>= 4.8), gcc-4.8-locales (>= 4.8), libgcc1-dbg-arm64-cross (>= 1:4.8.2-13ubuntu1cross0.11), libgomp1-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libitm1-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libatomic1-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libasan0-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libtsan0-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libbacktrace1-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libquadmath-dbg-arm64-cross (>= 4.8.2-13ubuntu1cross0.11) Conflicts: gcc-multilib Filename: pool/main/g/gcc-4.8-arm64-cross/gcc-4.8-aarch64-linux-gnu_4.8.2-13ubuntu1cross0.11_i386.deb Size: 4173890 MD5sum: c46181b9ca9f77e0422961d010068d32 SHA1: 56bc87a5558d5aac9c3286f479470b488a8fe0e3 SHA256: 38329a7feea59f00d1f7e7a029b3ad2d966e7fa14edc7021294498874547274d Description: GNU C compiler Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 828abc0c548c8d3a65e71359bac1dfd7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-aarch64-linux-gnu-base Priority: extra Section: devel Installed-Size: 211 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Filename: pool/main/g/gcc-4.8-arm64-cross/gcc-4.8-aarch64-linux-gnu-base_4.8.2-13ubuntu1cross0.11_i386.deb Size: 14472 MD5sum: 6f1532881319b6fe845873a98de3f170 SHA1: 45fbf7909a54d33d8896b67246b96f2e0d9071b0 SHA256: a5a38e2a4070f0b580b5484f64b33ca55319751f1334c29ddbb1b6c7ef737df9 Description: GCC, the GNU Compiler Collection (base package) Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 14994 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Provides: c-compiler-arm-linux-gnueabihf Depends: cpp-4.8-arm-linux-gnueabihf (= 4.8.2-16ubuntu4cross0.11), binutils-arm-linux-gnueabihf (>= 2.22), libgcc-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Recommends: libc6-dev-armhf-cross (>= 2.13-0ubuntu6) Suggests: gcc-4.8-multilib-arm-linux-gnueabihf, gcc-4.8-doc (>= 4.8), gcc-4.8-locales (>= 4.8), libgcc1-dbg-armhf-cross (>= 1:4.8.2-16ubuntu4cross0.11), libgomp1-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libitm1-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libatomic1-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libasan0-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libtsan0-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libbacktrace1-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libquadmath-dbg-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), binutils-gold (>= 2.22) Conflicts: gcc-multilib Filename: pool/main/g/gcc-4.8-armhf-cross/gcc-4.8-arm-linux-gnueabihf_4.8.2-16ubuntu4cross0.11_i386.deb Size: 4855648 MD5sum: 259dfe84f99bc8171dc8f233e7bd7cdc SHA1: 68650edf165737bfa8af324821b8aa343e218ad3 SHA256: d1d594eeccc27320641abb2aef4ccc5f0c6f7e6fe53f3d006947f82a0763a324 Description: GNU C compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: a8c6e1ef7e1b049137f2e6519bdc7073 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-arm-linux-gnueabihf-base Priority: extra Section: devel Installed-Size: 211 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Filename: pool/main/g/gcc-4.8-armhf-cross/gcc-4.8-arm-linux-gnueabihf-base_4.8.2-16ubuntu4cross0.11_i386.deb Size: 14778 MD5sum: 158bd438ed5c0d80bc6aded736bc3f73 SHA1: 5f5d6aef6dd96f916e85bd9db9a62b27ed04a71d SHA256: 01fb723b0e25efdcf3ce1d68bb4b6e13db7fa2b32ea46bfdefc9896dee8b5a4c Description: GCC, the GNU Compiler Collection (base package) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-base Priority: important Section: libs Installed-Size: 212 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Breaks: dehydra (<= 0.9.hg20110609-2), gcc-4.4-base (<< 4.4.7), gcc-4.7-base (<< 4.7.3), gcj-4.4-base (<< 4.4.6-9~), gcj-4.6-base (<< 4.6.1-4~), gnat-4.4-base (<< 4.4.6-3~), gnat-4.6 (<< 4.6.1-5~) Filename: pool/main/g/gcc-4.8/gcc-4.8-base_4.8.2-19ubuntu1_i386.deb Size: 15474 MD5sum: bf44ac4b1995d1fb9a8c03394a0edc0f SHA1: 47f084acf1bf68d6118881d7eaf6582307edfff9 SHA256: e2fb7bf25c99223c121ce23aab2d9643e6644067f4973887d0e68399d34e8a88 Description: GCC, the GNU Compiler Collection (base package) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: gcc-4.8-doc Priority: optional Section: doc Installed-Size: 8589 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcc (<= 2.7.2.3-4.3), gcc-docs (<< 2.95.2) Depends: gcc-4.8-base (>= 4.8), dpkg (>= 1.15.4) | install-info Conflicts: gcc-docs (<< 2.95.2) Filename: pool/main/g/gcc-4.8/gcc-4.8-doc_4.8.2-19ubuntu1_all.deb Size: 2080568 MD5sum: dce161f5b20ed462328baf0ca7e3344d SHA1: f0f964ad98a55ce0f395c3bb3ab2c8ba465b613f SHA256: dddbba1da23b1bb11a6ad8b373df7fc2c331fb4a5dae8e8a60e2df12dd83a394 Description: Documentation for the GNU compilers (gcc, gobjc, g++) Homepage: http://gcc.gnu.org/ Description-md5: bf320d6d806b62ff03b567626d36b1fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (= 4.8.2-19ubuntu1), libc6-dev-amd64 (>= 2.11), libc6-dev-x32 (>= 2.11), lib64gcc-4.8-dev (= 4.8.2-19ubuntu1), libx32gcc-4.8-dev (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/gcc-4.8-multilib_4.8.2-19ubuntu1_i386.deb Size: 966 MD5sum: 570918164b98dd73c92b556eb3fa73d0 SHA1: eadca100214e69c5dbcb3f073b78b2b92481ce7f SHA256: 5844115513e6239db362878f0c1059f62a5853b79aed139f692b5e33fcd9ef4f Description: GNU C compiler (multilib files) Homepage: http://gcc.gnu.org/ Description-md5: f1f416f51fd3f11d562e86a79da6216a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcc-4.8-multilib-arm-linux-gnueabihf Priority: extra Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), gcc-4.8-arm-linux-gnueabihf (= 4.8.2-16ubuntu4cross0.11), libc6-dev-armel-armhf-cross (>= 2.11) | libc6-dev-armel-armhf-cross, libsfgcc-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11) | libsfgcc-4.8-dev-armhf-cross Filename: pool/main/g/gcc-4.8-armhf-cross/gcc-4.8-multilib-arm-linux-gnueabihf_4.8.2-16ubuntu4cross0.11_i386.deb Size: 1066 MD5sum: dcffb3da0846f1933dfd2eab023f81af SHA1: 4dddb46810f03dd786df37347dac86e4abb5ce31 SHA256: 5a4a266ca9bbcf1c812a1c2721910c7e659e257d3199fe572a301d193a93165b Description: GNU C compiler (multilib files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: f1f416f51fd3f11d562e86a79da6216a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-multilib-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), gcc-4.8-powerpc-linux-gnu (= 4.8.2-16ubuntu3cross0.11), libc6-dev-ppc64-powerpc-cross (>= 2.11), lib64gcc-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11) Filename: pool/main/g/gcc-4.8-powerpc-cross/gcc-4.8-multilib-powerpc-linux-gnu_4.8.2-16ubuntu3cross0.11_i386.deb Size: 1050 MD5sum: 64fd179f3f57168891fdcca4731630dd SHA1: 1c95adc898f7b392b3ea4078a6c154fa50f52b7d SHA256: f6698925f335b9407c1aaebe7f886895d08c9b36097ef785c171dfd0df903d9e Description: GNU C compiler (multilib files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: f1f416f51fd3f11d562e86a79da6216a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-plugin-dev Priority: optional Section: devel Installed-Size: 4960 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (= 4.8.2-19ubuntu1), libgmp-dev (>= 2:5.0.1~), libc6 (>= 2.8) Filename: pool/main/g/gcc-4.8/gcc-4.8-plugin-dev_4.8.2-19ubuntu1_i386.deb Size: 675828 MD5sum: cf3a92ceab87388fd42fb71f467209e5 SHA1: ac792f20df320b3ede56ec0cc71bf298b2f483c5 SHA256: 3d86e2e0d741e4e0c5a28322d31b403afba7bb370a7f90363c11cd7f85acc403 Description: Files for GNU GCC plugin development. Homepage: http://gcc.gnu.org/ Description-md5: f04e3fe2e4b62ffb72f0dc5ae683f155 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-powerpc-linux-gnu Priority: extra Section: devel Installed-Size: 14940 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Provides: c-compiler-powerpc-linux-gnu Depends: cpp-4.8-powerpc-linux-gnu (= 4.8.2-16ubuntu3cross0.11), binutils-powerpc-linux-gnu (>= 2.22), libgcc-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Recommends: libc6-dev-powerpc-cross (>= 2.13-0ubuntu6) Suggests: gcc-4.8-multilib-powerpc-linux-gnu, gcc-4.8-doc (>= 4.8), gcc-4.8-locales (>= 4.8), libgcc1-dbg-powerpc-cross (>= 1:4.8.2-16ubuntu3cross0.11), libgomp1-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libitm1-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libatomic1-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libasan0-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libtsan0-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libbacktrace1-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libquadmath-dbg-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), binutils-gold (>= 2.22) Conflicts: gcc-multilib Filename: pool/main/g/gcc-4.8-powerpc-cross/gcc-4.8-powerpc-linux-gnu_4.8.2-16ubuntu3cross0.11_i386.deb Size: 4746210 MD5sum: bdd727ff6f690e008c367f81d955ccf6 SHA1: b2c5357850b6fe432771e3186a197e6c2b41c1c0 SHA256: f386196959abb058b7e2974cbd2dc2068e8e1d6723668ec2939899582a5d4f27 Description: GNU C compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 33e193e34c96ee2f0388ed9d3fe40d3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-powerpc-linux-gnu-base Priority: extra Section: devel Installed-Size: 211 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Filename: pool/main/g/gcc-4.8-powerpc-cross/gcc-4.8-powerpc-linux-gnu-base_4.8.2-16ubuntu3cross0.11_i386.deb Size: 14582 MD5sum: 9b54741bf30f056fc4daea2ef8df5e44 SHA1: ff1239d6ff6b47b2132ee452be4be5f983cdcce3 SHA256: 5e591c17f46920295779f6a6d02f726ea28f8bdf06e00a464f42acb6a6d30ec5 Description: GCC, the GNU Compiler Collection (base package) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-powerpc64le-linux-gnu Priority: extra Section: devel Installed-Size: 14954 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Provides: c-compiler-powerpc64le-linux-gnu Depends: cpp-4.8-powerpc64le-linux-gnu (= 4.8.2-16ubuntu4cross0.4), binutils-powerpc64le-linux-gnu (>= 2.22), libgcc-4.8-dev-ppc64el-cross (= 4.8.2-16ubuntu4cross0.4), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Recommends: libc6-dev-ppc64el-cross (>= 2.13-0ubuntu6) Suggests: gcc-4.8-doc (>= 4.8), gcc-4.8-locales (>= 4.8), libgcc1-dbg-ppc64el-cross (>= 1:4.8.2-16ubuntu4cross0.4), libgomp1-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libitm1-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libatomic1-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libasan0-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libtsan0-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libbacktrace1-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libquadmath-dbg-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4) Conflicts: gcc-multilib Filename: pool/main/g/gcc-4.8-ppc64el-cross/gcc-4.8-powerpc64le-linux-gnu_4.8.2-16ubuntu4cross0.4_i386.deb Size: 4728050 MD5sum: 34d9239b3bc60c2985ae1ad8d20682ae SHA1: d38edb555a26f2387e4effc6ae0ac3e93081eb23 SHA256: eb5c499910e9ea26e629d610e50ddcbb5d42f8e25768e91be45976d9a8129361 Description: GNU C compiler Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: b0d3628b0ae68d51d3d28e1503c35c1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-powerpc64le-linux-gnu-base Priority: extra Section: devel Installed-Size: 211 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Filename: pool/main/g/gcc-4.8-ppc64el-cross/gcc-4.8-powerpc64le-linux-gnu-base_4.8.2-16ubuntu4cross0.4_i386.deb Size: 14172 MD5sum: 98edf2077ffcff3b2304ede3b60c2814 SHA1: 4f107ee809937cffa0a5ea197d6dc1373a79c9bd SHA256: 383b06951543b171116b9bf1050e79bfa3ad025c5dc8b8ccc30fee679306c11f Description: GCC, the GNU Compiler Collection (base package) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.8-source Priority: optional Section: devel Installed-Size: 81362 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: make (>= 3.81), autoconf2.64, quilt, patchutils, gawk Filename: pool/main/g/gcc-4.8/gcc-4.8-source_4.8.2-19ubuntu1_all.deb Size: 68187040 MD5sum: ad8bd080e3640adda7f1978dee2fcbc2 SHA1: 47692788a405f5d756cd620040443b50dcf14fb9 SHA256: e54639c1df674b9df6b0a087d0fe752c4b161b3563721bc8699f291ef74904d2 Description: Source of the GNU Compiler Collection Homepage: http://gcc.gnu.org/ Description-md5: cb00049993a8c14b73bb041c050eb8c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-4.9-base Priority: required Section: libs Installed-Size: 211 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Breaks: dehydra (<= 0.9.hg20110609-2), gcc-4.4-base (<< 4.4.7), gcj-4.4-base (<< 4.4.6-9~), gcj-4.6-base (<< 4.6.1-4~), gnat-4.4-base (<< 4.4.6-3~), gnat-4.6 (<< 4.6.1-5~) Filename: pool/main/g/gccgo-4.9/gcc-4.9-base_4.9-20140406-0ubuntu1_i386.deb Size: 13886 MD5sum: 7638ee6e9af7c7df6bdf28aba2e88d99 SHA1: 96e2fe6217212b59fa9c72d3e6a486730430f296 SHA256: 61e048e440a79b933f478bbcb7d7316a79336170fa754bfddd7c302da653d234 Description: GCC, the GNU Compiler Collection (base package) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: b6e93638a6d08ea7a18929d7cf078e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: gcc-aarch64-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-arm64-cross (0.4) Version: 4:4.8.2-1 Depends: cpp-aarch64-linux-gnu (>= 4:4.8.2-1), gcc-4.8-aarch64-linux-gnu (>= 4.8.2-1) Recommends: libc6-dev-arm64-cross | libc-dev-arm64-cross Suggests: make, manpages-dev, autoconf, automake1.9, libtool, flex, bison, gdb-aarch64-linux-gnu, gcc-doc Conflicts: gcc-4.4-aarch64-linux-gnu (<= 4.4.5-15~), gcc-4.5-aarch64-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-arm64-cross/gcc-aarch64-linux-gnu_4.8.2-1_i386.deb Size: 1138 MD5sum: 32f87e41c29d3790d4234bbb277fa692 SHA1: a9c1af4e398d9b5ae64baa8b95d328dc82a8d9fe SHA256: 9b8e86f414c70f7125cb0b82967bd59362c3106f2fe16af4f837a5568a5d6dc7 Description: The GNU C compiler for arm64 architecture Description-md5: 6840011a0c7c054951d46dc0508a69d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-arm-linux-gnueabihf Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-armhf-cross (1.16) Version: 4:4.8.2-1 Depends: cpp-arm-linux-gnueabihf (>= 4:4.8.2-1), gcc-4.8-multilib-arm-linux-gnueabihf (>= 4.8.2-1) Recommends: libc6-dev-armhf-cross | libc-dev-armhf-cross Suggests: make, manpages-dev, autoconf, automake1.9, libtool, flex, bison, gdb-arm-linux-gnueabihf, gcc-doc Conflicts: gcc-4.4-arm-linux-gnueabihf (<= 4.4.5-15~), gcc-4.5-arm-linux-gnueabihf (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-armhf-cross/gcc-arm-linux-gnueabihf_4.8.2-1_i386.deb Size: 1148 MD5sum: d49bcf427aa142ef267178d193444f93 SHA1: d7c491dea247465b56d6521d3b3a63a1d20de140 SHA256: 2704e08fe6d326c92e00eb05e784863795cba59aa14030940a76ceb7d489ae65 Description: The GNU C compiler for armhf architecture Description-md5: 43964bcc6fc47c7ce1993cc9c56f31e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-doc Priority: optional Section: doc Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: gcc-4.8-doc (>= 4.8.2-5~) Suggests: gcc (>= 4:4.8.2-1ubuntu6) Filename: pool/main/g/gcc-defaults/gcc-doc_4.8.2-1ubuntu6_i386.deb Size: 3520 MD5sum: 65ea946bc022167644c9d15896663bd1 SHA1: ef2c3a01eef0133c6143c3218e9ad0c58ed87204 SHA256: 77dd4aea683c9358ba6db99272bc2bf4146196ce5bc499d16563d2e26f54aab4 Description: Documentation for the GNU C compilers (gcc, gobjc, g++) Description-md5: af77f0c56a32a74fc629f4cd7c91d2da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-multilib Priority: optional Section: devel Installed-Size: 25 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Replaces: gcc (<< 4.6.1-2ubuntu5) Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc (>= 4:4.8.2-1ubuntu6), gcc-4.8-multilib (>= 4.8.2-5~), linux-libc-dev (>= 3.0.0-2) Pre-Depends: linux-libc-dev (>= 2.6.38-8.42) Filename: pool/main/g/gcc-defaults/gcc-multilib_4.8.2-1ubuntu6_i386.deb Size: 1024 MD5sum: 26229d1b1b5db0368252d7b758a9af15 SHA1: f5bfa0d25b792cccd7f7cfc7753a65c3112ed2a2 SHA256: 5fb77c86706ff36270c735b0d60a4af2db06f76ced60b0c1c1d022731bcaee32 Description: GNU C compiler (multilib files) Description-md5: a92261e9624fa45dc5948edfd86a1054 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcc-powerpc-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Architecture: i386 Source: gcc-defaults-powerpc-cross (0.7) Version: 4:4.8.2-1 Depends: cpp-powerpc-linux-gnu (>= 4:4.8.2-1), gcc-4.8-multilib-powerpc-linux-gnu (>= 4.8.2-1) Recommends: libc6-dev-powerpc-cross | libc-dev-powerpc-cross Suggests: make, manpages-dev, autoconf, automake1.9, libtool, flex, bison, gdb-powerpc-linux-gnu, gcc-doc Conflicts: gcc-4.4-powerpc-linux-gnu (<= 4.4.5-15~), gcc-4.5-powerpc-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-powerpc-cross/gcc-powerpc-linux-gnu_4.8.2-1_i386.deb Size: 1102 MD5sum: d09b40d76df6be2a76b79f1ee2abdd09 SHA1: 392eaad5d5143facaa353ca237ed5717ba5897a2 SHA256: 0670845a192e09f51665734b55442e41f1561ce787de5e947505c5839349c589 Description: The GNU C compiler for powerpc architecture Description-md5: 2837b485f272cda25e5f5c89c6993b5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcc-powerpc64le-linux-gnu Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-ppc64el-cross (0.2) Version: 4:4.8.2-1 Depends: cpp-powerpc64le-linux-gnu (>= 4:4.8.2-1), gcc-4.8-powerpc64le-linux-gnu (>= 4.8.2-1) Recommends: libc6-dev-ppc64el-cross | libc-dev-ppc64el-cross Suggests: make, manpages-dev, autoconf, automake1.9, libtool, flex, bison, gdb-powerpc64le-linux-gnu, gcc-doc Conflicts: gcc-4.4-powerpc64le-linux-gnu (<= 4.4.5-15~), gcc-4.5-powerpc64le-linux-gnu (<= 4.5.2-8~) Filename: pool/main/g/gcc-defaults-ppc64el-cross/gcc-powerpc64le-linux-gnu_4.8.2-1_i386.deb Size: 1150 MD5sum: 2f377da69eb242e3daac30474cf5e83b SHA1: 0b94c474f9b1cd57fbe23f0f687c19ca92d03a9c SHA256: fb24a4dffb7412a6b26bf1ca0655ab075f2ee73e232b7932d11ddded2ebeddc0 Description: The GNU C compiler for ppc64el architecture Description-md5: 7837db33d0ba4cb36938328d9c887d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gccgo-4.7-doc Priority: optional Section: doc Installed-Size: 147 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (>= 4.7.2-16), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.7/gccgo-4.7-doc_4.7.3-12ubuntu1_all.deb Size: 48666 MD5sum: 397dbbf3ca7e1377fa3f9c7496ba0b82 SHA1: 8ce707e59dfc141bf8a23d55693b87d47bd49819 SHA256: 07e1726c6eff41cc5aab91270aa315661fad874818c1a6a59b1138c76be79d4f Description: Documentation for the GNU Go compiler (gccgo) Homepage: http://gcc.gnu.org/ Description-md5: 76326180b2469131aa9547f46e5b3105 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gccgo-4.8-doc Priority: optional Section: doc Installed-Size: 147 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.8/gccgo-4.8-doc_4.8.2-19ubuntu1_all.deb Size: 48692 MD5sum: 55495bd2e668272461f57f383f40ef25 SHA1: 8ac43e223940ba04a1314adc134a44f28ea52cc0 SHA256: 88546b368678f298459b7c2bfeb2a74541a9806673e4dc618aa94e2bcea50ea2 Description: Documentation for the GNU Go compiler (gccgo) Homepage: http://gcc.gnu.org/ Description-md5: 76326180b2469131aa9547f46e5b3105 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gccgo-4.9-doc Priority: optional Section: doc Installed-Size: 147 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (>= 4.9), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gccgo-4.9/gccgo-4.9-doc_4.9-20140406-0ubuntu1_all.deb Size: 48746 MD5sum: 6102ac9ff08d89db8a1901ee40ad1ff7 SHA1: a456df64356a14a208312253bbc4ded4a0c5fc3a SHA256: aeea3d3379569d2b0555249b8d6aac244936a6e182a36eb16914360c0f549a33 Description: Documentation for the GNU Go compiler (gccgo) Homepage: http://gcc.gnu.org/ Description-md5: 76326180b2469131aa9547f46e5b3105 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcj-4.8 Priority: optional Section: java Installed-Size: 13124 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcj-4.8-jdk (<< 4.8.1-4), libgcj11 (<< 4.5-20100101-1) Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (>= 4.8), libc6-dev (>= 2.13-0ubuntu6), ecj-gcj, libecj-java-gcj (>= 3.5.1), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4), dpkg (>= 1.15.4) | install-info Conflicts: cpp-4.1 (<< 4.1.1), gcc-4.1 (<< 4.1.1), gcj-4.4 Filename: pool/main/g/gcc-4.8/gcj-4.8_4.8.2-19ubuntu1_i386.deb Size: 4269790 MD5sum: fcafc3270686730928f734125dcb5cd3 SHA1: 9bc7f1328db8f3505175881cbac4aedb3d08baa9 SHA256: 74cf5275ae09470b62a0ea4b177a14bc0fd227f181e927210f8726b16a6d81a3 Description: GCJ byte code and native compiler for Java(TM) Homepage: http://gcc.gnu.org/ Description-md5: 8753e734cc2a7f934f8620bd89d6afe5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcj-4.8-jdk Priority: optional Section: java Installed-Size: 1126 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: libgcj11 (<< 4.5-20100101-1) Provides: java-compiler, java-sdk, java2-sdk, java5-sdk Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (>= 4.8), libc6-dev (>= 2.13-0ubuntu6), gcj-4.8 (= 4.8.2-19ubuntu1), gcj-4.8-jre (= 4.8.2-19ubuntu1), libgcj14-dev (= 4.8.2-19ubuntu1), fastjar, libgcj-bc, java-common, libantlr-java, libc6 (>= 2.8), libgcj14 (>= 4.8), zlib1g (>= 1:1.1.4), dpkg (>= 1.15.4) | install-info Recommends: libecj-java-gcj Suggests: gcj-4.8-source (>= 4.8), libgcj14-dbg (>= 4.8.2-19ubuntu1) Conflicts: cpp-4.1 (<< 4.1.1), gcc-4.1 (<< 4.1.1), gcj-4.4 Filename: pool/main/g/gcc-4.8/gcj-4.8-jdk_4.8.2-19ubuntu1_i386.deb Size: 533530 MD5sum: 3ad3453c841580e1ce49ede2114d70ad SHA1: b5894f97da632322e31b5b3b989d6d8dd48e3362 SHA256: b95f4995964454f0a8698f7b6b493a1bd137fecf2b98ab65f390c4194f4d6c8f Description: GCJ and Classpath development tools for Java(TM) Homepage: http://gcc.gnu.org/ Description-md5: 4dd080bc432002fe5f9359aef3f3f988 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcj-4.8-jre Priority: optional Section: java Installed-Size: 49 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcj-4.8-jre-headless (<< 4.8.2-2) Provides: java-runtime, java1-runtime, java2-runtime, java5-runtime Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcj-4.8-jre-headless (= 4.8.2-19ubuntu1), libgcj14-awt (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/gcj-4.8-jre_4.8.2-19ubuntu1_i386.deb Size: 1268 MD5sum: 18500c705c7c0bbecc9abb3ef680b112 SHA1: f0cb01edbaf174931dc8b309e8015941611e3937 SHA256: 691542924eb48fd81b980c6989760c7b05857e32f1130b93313f5fea6666cf3d Description: Java runtime environment using GIJ/Classpath Homepage: http://gcc.gnu.org/ Description-md5: 33bb6e364710093f6308dbe21c570d27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcj-4.8-jre-headless Priority: optional Section: java Installed-Size: 258 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcj-4.8-jre-lib (<< 4.8-20121219-0) Provides: java-runtime-headless, java1-runtime-headless, java2-runtime-headless, java5-runtime-headless Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcj-4.8-jre-lib (>= 4.8), libgcj14 (= 4.8.2-19ubuntu1), libc6 (>= 2.0), libgcc1 (>= 1:4.1.1) Suggests: fastjar, gcj-4.8-jdk (= 4.8.2-19ubuntu1), libgcj14-awt (= 4.8.2-19ubuntu1) Conflicts: gij-4.4, java-gcj-compat (<< 1.0.76-4) Filename: pool/main/g/gcc-4.8/gcj-4.8-jre-headless_4.8.2-19ubuntu1_i386.deb Size: 56056 MD5sum: 59c406c60136f80257b463f2bf150c60 SHA1: 359477d240be869edad1156ed9c6ffebf87fa998 SHA256: b841cdd7dfcdc7ac3cfd629e814822687dd93de0c9836048fe1db4c13d9b400f Description: Java runtime environment using GIJ/Classpath (headless version) Homepage: http://gcc.gnu.org/ Description-md5: b8134c13a4a7d7c52148d94bce341fa5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcj-4.8-jre-lib Priority: optional Section: java Installed-Size: 11193 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), libgcj14 (>= 4.8) Filename: pool/main/g/gcc-4.8/gcj-4.8-jre-lib_4.8.2-19ubuntu1_all.deb Size: 10350538 MD5sum: e0dac1e287fb14cc0a4e2a9c46f1ddde SHA1: 938f6839dac52c47734ea9b04572b3e95158e9ed SHA256: ae5163402a0475f79ed2eb99364332ed2a3ebe2da17d133a9fdce755c5bcf723 Description: Java runtime library for use with gcj (jar files) Homepage: http://gcc.gnu.org/ Description-md5: c6c8d4fc017cdac424e562b583372f96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gcj-4.8-source Priority: optional Section: java Installed-Size: 12667 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), gcj-4.8-jdk (>= 4.8) Filename: pool/main/g/gcc-4.8/gcj-4.8-source_4.8.2-19ubuntu1_all.deb Size: 11661762 MD5sum: 6cba06d51b72a640630c386f7d823f3a SHA1: 9ac79248f4f2a398732bb29693c237cab876f119 SHA256: 677e1be4cafcc6f45b1dfc09886dfa620441401369be8497bbb0f3b984c82c2b Description: GCJ java sources for use in IDEs like eclipse and netbeans Homepage: http://gcc.gnu.org/ Description-md5: 4c55da0bb9881014d9bba36bde1b8806 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcj-jdk Priority: optional Section: java Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Replaces: gjdoc, java-gcj-compat-dev (<< 1.0.80-2) Provides: gjdoc, java-compiler, java-gcj-compat-dev, java-sdk, java2-sdk, java5-sdk Depends: libgcj-common (>= 1:4.8.2-1ubuntu6), gcj-jre (>= 4:4.8.2-1ubuntu6), gcj-4.8-jdk (>= 4.8.2-5~) Conflicts: classpath-common (<= 2:0.97.2-1.1), gcj (<< 4:4.4.0-2), gjdoc, java-gcj-compat-dev (<< 1.0.80-2) Filename: pool/main/g/gcc-defaults/gcj-jdk_4.8.2-1ubuntu6_i386.deb Size: 6160 MD5sum: 43e1c67f30a8efb1713dd85ac89f5323 SHA1: 36a8994198da3d5534adee278e237531c2428032 SHA256: 7f8a426114749b839670ddbc0730492faec1648e914b8551c65fb66922d4aa2e Description: gcj and Classpath development tools for Java(TM) Description-md5: 851163a88ca4f075c45ce19de1ec3bd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcj-jre Priority: optional Section: java Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Provides: java-gcj-compat, java-runtime, java1-runtime, java2-runtime, java5-runtime Depends: libgcj-common (>= 1:4.8.2-1ubuntu6), gcj-jre-headless (>= 4:4.8.2-1ubuntu6), gcj-4.8-jre (>= 4.8.2-5~) Filename: pool/main/g/gcc-defaults/gcj-jre_4.8.2-1ubuntu6_i386.deb Size: 1120 MD5sum: f5064f7aa7b456c94a410985547e3b4f SHA1: 94748b74216ed84ee8458e10d7a227d54680f53a SHA256: be21f436a05b29f26c076feef954b6f3c7f3ed34f35ca55d8bdb724b2aa076c8 Description: Java runtime environment using GIJ/Classpath Description-md5: 33bb6e364710093f6308dbe21c570d27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcj-jre-headless Priority: optional Section: java Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Replaces: java-gcj-compat-headless (<< 1.0.80-6) Provides: java-gcj-compat-headless, java-runtime-headless, java-virtual-machine, java1-runtime-headless, java2-runtime-headless, java5-runtime-headless Depends: libgcj-common (>= 1:4.8.2-1ubuntu6), gcj-4.8-jre-headless (>= 4.8.2-5~) Suggests: gcj-jdk Conflicts: gij (<< 4:4.4.0-2), java-gcj-compat-headless (<< 1.0.80-6) Filename: pool/main/g/gcc-defaults/gcj-jre-headless_4.8.2-1ubuntu6_i386.deb Size: 1574 MD5sum: 0448f807a5cae3a16c5b97c0c203f46e SHA1: 24e738d75c05ffbc06a584aea326d250d17920f0 SHA256: e968cc220749d7aef59f0e84007a184553d3765864c83c7fd06778077f698ff6 Description: Java runtime environment using GIJ/Classpath (headless version) Description-md5: b8134c13a4a7d7c52148d94bce341fa5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gcj-native-helper Priority: optional Section: java Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: i386 Source: java-common (0.51) Version: 2:1.7-51 Replaces: default-jdk-builddep Provides: default-jdk-builddep Depends: default-jdk (= 2:1.7-51), gcj-jdk Conflicts: default-jdk-builddep Filename: pool/main/j/java-common/gcj-native-helper_1.7-51_i386.deb Size: 1078 MD5sum: 02b97c1f123c1b772615ceaa0c85ff0d SHA1: 71c96e7770b926ea6d2f2d84dc8df91305dfc37a SHA256: b43f58115bbbb46a48eba2095996fd9c72022dacbb1228245245844a01fa8bb0 Description: Standard helper tools for creating gcj native packages Description-md5: 10c11f7828c6f1fceeb2a126d9c6ac58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gconf-service Priority: optional Section: libs Installed-Size: 377 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: gconf Version: 3.2.6-0ubuntu2 Depends: gconf-service-backend (= 3.2.6-0ubuntu2) Filename: pool/main/g/gconf/gconf-service_3.2.6-0ubuntu2_i386.deb Size: 2040 MD5sum: b7f174394df2b3744774eec1a61be2c3 SHA1: aee02dd4d68f65d3ebae1aee8b800839ac9d1ac8 SHA256: d200aff26c4cd40fa618ec845b93e74b562031c91ac84980e0d85a3d5addf768 Description: GNOME configuration database system (D-Bus service) Multi-Arch: foreign Homepage: http://projects.gnome.org/gconf/ Description-md5: 14dd873ae96b0afab2fa365fb38aa07d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gconf-service-backend Priority: optional Section: libs Installed-Size: 565 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: gconf Version: 3.2.6-0ubuntu2 Replaces: gconf-service (<< 3.2.5-0ubuntu2), gconf2-common (<< 3.2.3-2) Depends: gconf-service, libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libgconf-2-4 (= 3.2.6-0ubuntu2), libglib2.0-0 (>= 2.25.9), libldap-2.4-2 (>= 2.4.7), libxml2 (>= 2.7.4), gconf2-common (= 3.2.6-0ubuntu2) Breaks: gconf2-common (<< 3.2.3-2) Filename: pool/main/g/gconf/gconf-service-backend_3.2.6-0ubuntu2_i386.deb Size: 54650 MD5sum: 99194e8692bbc6ccf53c09cc0b1b21a8 SHA1: 314afcb1bd9e5c6d8a6177d33a18a537f6265e99 SHA256: 6d2e63129b55830bf543cf2d4d027473f8f4aa138e50887a44a7a19032269f2a Description: GNOME configuration database system (D-Bus service) Homepage: http://projects.gnome.org/gconf/ Description-md5: bed955216fb5fa381f3812c7de667c52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gconf2 Priority: optional Section: libs Installed-Size: 596 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: gconf Version: 3.2.6-0ubuntu2 Depends: gconf-service, libc6 (>= 2.4), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.31.8), libxml2 (>= 2.7.4), gconf-service-backend (= 3.2.6-0ubuntu2), psmisc, dbus-x11, python:any Suggests: gconf-defaults-service Filename: pool/main/g/gconf/gconf2_3.2.6-0ubuntu2_i386.deb Size: 63980 MD5sum: e15469143ff9728abd0ec2efc8f3668b SHA1: 5d00c8b50dda83efcf5c399926f7ff12f22ae389 SHA256: 57410405eda0ed4c5871f72cd7b1c7438a41661e5adf28d41f781bf74056f7c4 Description: GNOME configuration database system (support tools) Multi-Arch: foreign Homepage: http://projects.gnome.org/gconf/ Description-md5: c44e6944a0e1021dcd2391ea71d64fb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gconf2-common Priority: optional Section: libs Installed-Size: 516 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: gconf Version: 3.2.6-0ubuntu2 Depends: ucf Breaks: libgconf2-4 (<< 3.2.3-2) Filename: pool/main/g/gconf/gconf2-common_3.2.6-0ubuntu2_all.deb Size: 20230 MD5sum: e6938b668c59737d159f8feefb310a1f SHA1: ccdd4b6052b7e2dfa0bf5fe4182d5e4c9832b97b SHA256: 70be19c0c5692ed4c75916265942c4e2eed22d01dea07fe1b95adfb9116cbc5f Description: GNOME configuration database system (common files) Multi-Arch: foreign Homepage: http://projects.gnome.org/gconf/ Description-md5: 7942b10b6a0626fe9c4f3821d2fc5d2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gcr Priority: optional Section: gnome Installed-Size: 484 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Version: 3.10.1-1 Replaces: gnome-keyring (<< 3.3) Depends: dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.4), libgcr-base-3-1 (>= 3.8.0), libgcr-ui-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.32.0), libgtk-3-0 (>= 3.0.0), dbus-x11 Breaks: gnome-keyring (<< 3.3) Filename: pool/main/g/gcr/gcr_3.10.1-1_i386.deb Size: 48098 MD5sum: 14e1699cbd4194eed3b06e41f8bad19a SHA1: e926d77f9caab929778b724780f884e708bcbaed SHA256: 486d5f08f95396448e06ff66389a4d035a1f41ef8b701af211de0be4538ac0ec Description: GNOME crypto services (daemon and tools) Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: ee6145fe2ef6efa76055bc896f49f5f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gdb Priority: optional Section: devel Installed-Size: 5698 Maintainer: Ubuntu Core developers Original-Maintainer: Héctor Orón Martínez Architecture: i386 Version: 7.7-0ubuntu3 Depends: libc6 (>= 2.15), libexpat1 (>= 2.0.1), liblzma5 (>= 5.1.1alpha+20110809), libncurses5 (>= 5.5-5~), libpython3.4 (>= 3.4~b1), libreadline6 (>= 6.0), libtinfo5, zlib1g (>= 1:1.2.0), libpython3-stdlib Recommends: libc-dbg, python3 Suggests: gdb-doc, gdbserver Filename: pool/main/g/gdb/gdb_7.7-0ubuntu3_i386.deb Size: 2101848 MD5sum: 529865c698aa03e3bbbbcd488006b133 SHA1: fb9e64a888b1192f14e0dd148dbf961c90de58c8 SHA256: 871844decc087fcbc01c4e050e264bd64050d8096d0891ad23b73e233e065122 Description: GNU Debugger Multi-Arch: allowed Homepage: http://www.gnu.org/s/gdb/ Description-md5: 4f2b8eb95df2ba7a5b11e0301c48b8e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gdb-doc Priority: optional Section: devel Installed-Size: 10573 Maintainer: Ubuntu Developers Original-Maintainer: Héctor Orón Martínez Architecture: i386 Version: 7.6.2-1ubuntu1 Replaces: gdb (<< 6.4.50.20060511-1), insight (<< 6.1+cvs.2004.04.07-1) Filename: pool/main/g/gdb-doc/gdb-doc_7.6.2-1ubuntu1_i386.deb Size: 4875212 MD5sum: eaedc7678d0fc0d91a50dff760ec8339 SHA1: 2a47f6de46e6cbbd9ee050d268729a1f1c9a3218 SHA256: 83a70abbb788df51c647f3d957a21f937ff909479090f0b1e084017a7aa43dcb Description: The GNU Debugger Documentation Description-md5: 43091bf04b45c942f19804a19e09d5f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gdebi-core Priority: optional Section: admin Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Ubuntu Developers Architecture: all Source: gdebi Version: 0.9.5.3 Depends: python3:any (>= 3.3.2-2~), python3-apt, python3-debian, file Suggests: xz-utils | xz-lzma Filename: pool/main/g/gdebi/gdebi-core_0.9.5.3_all.deb Size: 9926 MD5sum: 9904c284605899e98e82d6058390abd4 SHA1: c3ed34d273212f1f43cb35cc19adfed53a14c35a SHA256: d47d10f868a842c59c24cd099c7a51a2c6ce7825287603cf65bf81e08c356b7f Description: simple tool to install deb files Description-md5: ca4b6f1506c62c4e8999e272cc575c97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-desktop Package: gdisk Priority: extra Section: admin Installed-Size: 771 Maintainer: Ubuntu Developers Original-Maintainer: Guillaume Delacour Architecture: i386 Version: 0.8.8-1build1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libncurses5 (>= 5.5-5~), libpopt0 (>= 1.14), libstdc++6 (>= 4.4.0), libtinfo5, libuuid1 (>= 2.16) Recommends: groff-base Conflicts: gdisk-noicu Filename: pool/main/g/gdisk/gdisk_0.8.8-1build1_i386.deb Size: 189142 MD5sum: 03fbe28d78685ffce5f89b11988a37b3 SHA1: 9ae195e3dc815c9e43b2e1f89c0beb489e7af919 SHA256: c204e4b33458dae0f7a86b08e46d26e3ff8f5649c3e1733fed8b7413fd7af40b Description: GPT fdisk text-mode partitioning tool Homepage: http://sourceforge.net/projects/gptfdisk/ Description-md5: b06cbe95055333a53ea37de280470adc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gedit Priority: optional Section: gnome Installed-Size: 2575 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.10.4-0ubuntu4 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libenchant1c2a (>= 1.6.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libgirepository-1.0-1 (>= 0.9.3), libglib2.0-0 (>= 2.38), libgtk-3-0 (>= 3.10), libgtksourceview-3.0-1 (>= 3.10.0), libpango-1.0-0 (>= 1.14.0), libpeas-1.0-0 (>= 1.1.0), libx11-6, libxml2 (>= 2.7.4), libzeitgeist-2.0-0 (>= 0.9.9), gedit-common (>= 3.10), gedit-common (<< 3.11), gsettings-desktop-schemas, python3-gi (>= 3.0), python-gi-cairo (>= 3.0), gir1.2-peas-1.0, iso-codes Recommends: gir1.2-gtksource-3.0, zenity, yelp Suggests: gedit-plugins Breaks: gedit-plugins (<< 2.91) Filename: pool/main/g/gedit/gedit_3.10.4-0ubuntu4_i386.deb Size: 480838 MD5sum: 75bdf58ceb63788a6c61d23ce174a8e6 SHA1: 06415986f0336e8ee7b3205950cfa6d778f8754d SHA256: 34ea1ebac4066f8bf4b943eb6c44229646da2dfa911af43d80bb583d1c17bdbd Description: official text editor of the GNOME desktop environment Homepage: http://www.gnome.org/projects/gedit/ Description-md5: 5091aaf6659e6bf7ca9b32695a59f9cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gedit-common Priority: optional Section: gnome Installed-Size: 3328 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gedit Version: 3.10.4-0ubuntu4 Depends: dconf-gsettings-backend | gsettings-backend Recommends: gedit Filename: pool/main/g/gedit/gedit-common_3.10.4-0ubuntu4_all.deb Size: 146158 MD5sum: f8e9cecb4eb58cad9e306f12dc3b7faf SHA1: ac6c389086dd54156424e45ab1ffa57c8f7693cc SHA256: 2120fcbe1f14c28f31346ce94606edc89c3e56455ba705cbf2ebd6a0c01520f2 Description: official text editor of the GNOME desktop environment (support files) Homepage: http://www.gnome.org/projects/gedit/ Description-md5: 193111e3506c371cfc98afccfffed3c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gedit-dev Priority: optional Section: devel Installed-Size: 1174 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gedit Version: 3.10.4-0ubuntu4 Depends: gedit (>= 3.10), gedit (<< 3.11), libgtksourceview-3.0-dev (>= 3.2.0), libpeas-dev Filename: pool/main/g/gedit/gedit-dev_3.10.4-0ubuntu4_i386.deb Size: 64468 MD5sum: 5903ae5280b3ea8cd3a458b0db38a222 SHA1: cb8184d368ca1b1a307060483ec5ee82fea7885f SHA256: 33a78d7cd23afe92752dd53e2e49a32557c594cdbf8e2d7961a3010a41c26915 Description: official text editor of the GNOME desktop environment (development files) Homepage: http://www.gnome.org/projects/gedit/ Description-md5: 3432b77a961b8bf02ccb1564908edf94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gem2deb Priority: optional Section: ruby Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.6.1 Depends: ruby | ruby-interpreter, ruby1.9.1 (>= 1.9.3.0-1~), ruby1.9.1-dev (>= 1.9.3.0-1~), ruby2.0, ruby2.0-dev, build-essential, devscripts, debhelper (>= 7.0.50~), perl Filename: pool/main/g/gem2deb/gem2deb_0.6.1_all.deb Size: 41838 MD5sum: 997c3551ca724d593856f48c2bc3a394 SHA1: fbfea4063463c47c695efa3189a9103433cad63d SHA256: eee567573cf43ad86d24846a57e15632d9e504844fc38c95a69bdaee4a9473e3 Description: Debian Ruby packaging suite Description-md5: 3ed6a615741be6d1ca15c4b2a22b42c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: genext2fs Priority: optional Section: admin Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Jérémie Koenig Architecture: i386 Version: 1.4.1-4build1 Depends: libc6 (>= 2.4) Filename: pool/main/g/genext2fs/genext2fs_1.4.1-4build1_i386.deb Size: 23452 MD5sum: 9d376e86f227f0972cdfce451d5b280f SHA1: 4df2a23e918f585828f74b192763132526727894 SHA256: decc74605d99a7bb49c61c47b0bf5d506eea42d505a96c78db3c6e6905ed67c3 Description: ext2 filesystem generator for embedded systems Description-md5: da14ae0f39cc44d3688a7cd107f79a2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: genisoimage Priority: optional Section: otherosfs Installed-Size: 1425 Maintainer: Ubuntu Developers Original-Maintainer: Joerg Jaspert Architecture: i386 Source: cdrkit Version: 9:1.1.11-2ubuntu3 Replaces: mkisofs Provides: mkisofs Depends: libbz2-1.0, libc6 (>= 2.7), libmagic1, zlib1g (>= 1:1.1.4) Suggests: wodim, cdrkit-doc Conflicts: mkhybrid, mkisofs Filename: pool/main/c/cdrkit/genisoimage_1.1.11-2ubuntu3_i386.deb Size: 576236 MD5sum: 7ad56bfdf49cc08c524b964b8b36cb65 SHA1: c39f30059cc09d599f4d1a33c8e245e1d3e36ab0 SHA256: a0c5ea5f23695d98b0bfdc470aab99f74e63fb1d0f88fd64c4686e63cd00cb7e Description: Creates ISO-9660 CD-ROM filesystem images Description-md5: f771a046498c00cf831887fc4da45a69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: geoclue Priority: optional Section: utils Installed-Size: 109 Maintainer: Ubuntu Desktop Team Original-Maintainer: Laurent Bigonville Architecture: i386 Version: 0.12.99-3ubuntu1 Depends: libc6 (>= 2.7), libdbus-glib-1-2 (>= 0.88), libgeoclue0 (>= 0.11.1), libglib2.0-0 (>= 2.37.3), libnm-glib4 (>= 0.7.999), libnm-util2 (>= 0.7.0), dconf-gsettings-backend | gsettings-backend Filename: pool/main/g/geoclue/geoclue_0.12.99-3ubuntu1_i386.deb Size: 19358 MD5sum: 3f8bbef2c279d275de8bf4b9622ef822 SHA1: 6184867c7ecf703e5a4a0fdf47b19d50e68ec58f SHA256: fb992c518ca3d9947a241541cfa50ab698e58300637eaaae0bf025c90c377504 Description: Geographic information framework Homepage: http://www.freedesktop.org/wiki/Software/GeoClue Description-md5: 6da06cc93556594a6f287eb2dc09812e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: geoclue-examples Priority: optional Section: utils Installed-Size: 85 Maintainer: Ubuntu Desktop Team Original-Maintainer: Laurent Bigonville Architecture: i386 Source: geoclue Version: 0.12.99-3ubuntu1 Replaces: geoclue (<< 0.11.1-4) Depends: libc6 (>= 2.4), libgeoclue0 (>= 0.11.1+git20091217), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.8.0), geoclue (= 0.12.99-3ubuntu1) Filename: pool/main/g/geoclue/geoclue-examples_0.12.99-3ubuntu1_i386.deb Size: 11146 MD5sum: f960bb13d9550479024cfbcdeebda43d SHA1: 2559a6000378d1ab42c988bbcdca77f6c5e7dd48 SHA256: 6be3c320b9529900256591211ec0a3750cd16af86662c22e5a81784d6da0f2a1 Description: GeoClue example clients Homepage: http://www.freedesktop.org/wiki/Software/GeoClue Description-md5: 87de327a2303da80e00291b7c43bbbdb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: geoclue-ubuntu-geoip Priority: optional Section: gnome Installed-Size: 78 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: ubuntu-geoip Version: 1.0.2+14.04.20131125-0ubuntu2 Provides: geoclue-provider Depends: geoclue, dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.3.6-6~), libgeoclue0 (>= 0.12.0), libglib2.0-0 (>= 2.37.3), libnm-glib4 (>= 0.7.999), libsoup2.4-1 (>= 2.33.92) Filename: pool/main/u/ubuntu-geoip/geoclue-ubuntu-geoip_1.0.2+14.04.20131125-0ubuntu2_i386.deb Size: 11084 MD5sum: 0b176256be1b55c223067cdd6193a985 SHA1: 83972cfa978d0d499b1c94a1795bd0092d6c5586 SHA256: 74cd67c352f26cf4e31f778aa6f2562b3dab12d7bf01de3058c6075327ee88fa Description: Provide positioning for GeoClue via Ubuntu GeoIP services Homepage: https://launchpad.net/ubuntu-geoip Description-md5: df34267f7cce5e55cfbdebfaa4496638 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: geoip-bin Priority: optional Section: net Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Patrick Matthäi Architecture: i386 Source: geoip Version: 1.6.0-1 Replaces: libgeoip1 (<= 1.4.4.dfsg-2) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgeoip1, libstdc++6 (>= 4.1.1) Filename: pool/main/g/geoip/geoip-bin_1.6.0-1_i386.deb Size: 30676 MD5sum: 545be8d84deeebb65344c9a987e5561d SHA1: 4470f0444390819e252b3afdbdd3e3f81473c95a SHA256: b67b8a7d09fd28dc657470d3fcb10a8185112d1affa10ca3669a2fe2ec7c5804 Description: IP lookup command line tools that use the GeoIP library Multi-Arch: foreign Homepage: http://www.maxmind.com/ Description-md5: e058df40dc45f1ddd083b2822302409e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: geoip-database Priority: standard Section: net Installed-Size: 3881 Maintainer: Ubuntu Developers Original-Maintainer: Patrick Matthäi Architecture: all Version: 20140313-1 Recommends: libgeoip1 Breaks: libgeoip1 (<< 1.4.5.dfsg) Filename: pool/main/g/geoip-database/geoip-database_20140313-1_all.deb Size: 1195894 MD5sum: ab4d4f6bc0e04b25cad2fbe1479f44bc SHA1: 06d38aee4084124f86351dfa6f1c404a8ae3e83b SHA256: 30dc5a2c3296180ed0740fb4ec70eb1ea5b49efc5e48a091913a8106f6895c7e Description: IP lookup command line tools that use the GeoIP library (country database) Homepage: http://www.maxmind.com/ Description-md5: 3bfa5b4c9f973261799fb4d9355f3b6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: geoip-dbg Priority: extra Section: debug Installed-Size: 490 Maintainer: Ubuntu Developers Original-Maintainer: Patrick Matthäi Architecture: i386 Source: geoip Version: 1.6.0-1 Depends: geoip-bin (= 1.6.0-1) | libgeoip1 (= 1.6.0-1) Filename: pool/main/g/geoip/geoip-dbg_1.6.0-1_i386.deb Size: 279786 MD5sum: 2d7be69ff3dff15a4e2cc17da3c38e3f SHA1: 625457e946e87e5c6f9c8e3998dd1f4bb03d79fa SHA256: 599588f3cfc840f4ea934d5bbf74cbb27548c9f6e2a8bc7d6916130aa9939773 Description: debugging symbols for the GeoIP packages Homepage: http://www.maxmind.com/ Description-md5: 1ad5bb1cea8a55e3d51a0d9303580aa6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: germinate Priority: optional Section: utils Installed-Size: 89 Maintainer: Colin Watson Architecture: all Version: 2.16 Depends: python3:any (>= 3.0~), python3, perl, python3-germinate (= 2.16) Filename: pool/main/g/germinate/germinate_2.16_all.deb Size: 19500 MD5sum: bff91256839bfef93453523fd0e7f241 SHA1: f378ffd07b0af20cb1d43aa3f03e71264c8aebab SHA256: 7e0b84dafd66256e5ec5ed53c9e177dbd7d566be6d39970c29e6fecaf98845db Description: expand dependencies in a list of seed packages Description-md5: 40e625c1a35fdcfca7f5a004d645f691 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gettext Priority: optional Section: devel Installed-Size: 3356 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 0.18.3.1-1ubuntu2 Depends: libc6 (>= 2.17), libcroco3 (>= 0.6.2), libgomp1 (>= 4.2.1), libtinfo5, libunistring0, libxml2 (>= 2.7.4), gettext-base, dpkg (>= 1.15.4) | install-info Recommends: curl | wget | lynx-cur, libasprintf-dev, libgettextpo-dev Suggests: gettext-doc Breaks: autopoint (<= 0.17-11) Filename: pool/main/g/gettext/gettext_0.18.3.1-1ubuntu2_i386.deb Size: 814814 MD5sum: 588d88963829de62767d4ad097cfa49f SHA1: a0a2b255469d1b180eb33ce058b570937115d329 SHA256: d91f3c3282b46b2580c6631c39fd869bf84e4199a2abdd8ce442642a337d79cd Description: GNU Internationalization utilities Multi-Arch: foreign Homepage: http://www.gnu.org/software/gettext/ Description-md5: 0db85b3962766eeef57d5324263a308e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gettext-base Priority: standard Section: utils Installed-Size: 332 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Source: gettext Version: 0.18.3.1-1ubuntu2 Depends: libc6 (>= 2.4), libasprintf0c2 (>= 0.18.1.1-6) Filename: pool/main/g/gettext/gettext-base_0.18.3.1-1ubuntu2_i386.deb Size: 47882 MD5sum: 4cd85654df722ed729fc1cad58b545e4 SHA1: 8930da387f01e4bc2a405bb430952415c8c53c3e SHA256: dce4fb01c58947125ee7fec0d00090df07840dd9ddea0452c685cd93eefb6145 Description: GNU Internationalization utilities for the base system Homepage: http://www.gnu.org/software/gettext/ Description-md5: 6c8ed1da584066e0871910b60d931f43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: gettext-doc Priority: optional Section: doc Installed-Size: 3917 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: gettext Version: 0.18.3.1-1ubuntu2 Filename: pool/main/g/gettext/gettext-doc_0.18.3.1-1ubuntu2_all.deb Size: 498664 MD5sum: f0c7911d6654b68087ac7ebdad0e35ff SHA1: 471267265a9823af1f6fdb01bd7af72aa137c58c SHA256: df5ea52cb34a139728aceacaa1cabfd4dec690e1c615892d1510203ffb77dca0 Description: Documentation for GNU gettext Homepage: http://www.gnu.org/software/gettext/ Description-md5: 966c7204112700e6dcb867375471b50b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gettext-el Priority: optional Section: lisp Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: gettext Version: 0.18.3.1-1ubuntu2 Depends: gettext, emacs24 | emacs23 | emacsen Filename: pool/main/g/gettext/gettext-el_0.18.3.1-1ubuntu2_all.deb Size: 34838 MD5sum: 14476f63efcfe7de1eca2c39f0e7edac SHA1: 242c84d966eb918ea723276ded1ce2a07d52775e SHA256: bd3c1aaec6e26ba17342ef89aa06591ee5b18613ae0ab281f155f4862c04125c Description: Emacs po-mode for editing gettext .po files Homepage: http://www.gnu.org/software/gettext/ Description-md5: a9d28f54d889f7c47e492c902c81accf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: gfortran Priority: optional Section: devel Installed-Size: 33 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Provides: fortran-compiler, gfortran-mod-10 Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc (>= 4:4.8.2-1ubuntu6), gfortran-4.8 (>= 4.8.2-5~) Suggests: gfortran-multilib, gfortran-doc Filename: pool/main/g/gcc-defaults/gfortran_4.8.2-1ubuntu6_i386.deb Size: 1270 MD5sum: 37ff62a675435a2ce09f7299b17fcfbf SHA1: c132c420569aca28e5195f3ee7b3193f7cc8042e SHA256: b836563ab28dd2a151c3b7837849ae93f905e3756be57cf1f7856c17d9588ec3 Description: GNU Fortran 95 compiler Description-md5: 19814cb032299ba2188b0196ece62ba3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gfortran-4.7-doc Priority: optional Section: doc Installed-Size: 1388 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (>= 4.7.2-16), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.7/gfortran-4.7-doc_4.7.3-12ubuntu1_all.deb Size: 296412 MD5sum: 288b5b0e18ed3ba53e1816977a514aa4 SHA1: 11ad481bb2da1eea7e1ceffad709f7b2f744dbd5 SHA256: c1f03016222ed93b28f33dfc0ea44b8c75575b642aa771bb4a952813e1261b6b Description: Documentation for the GNU Fortran compiler (gfortran) Homepage: http://gcc.gnu.org/ Description-md5: 17a01a9ada93e104865a01e6615e2401 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gfortran-4.8 Priority: optional Section: devel Installed-Size: 14170 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Provides: fortran95-compiler, gfortran-mod-10 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (= 4.8.2-19ubuntu1), libgfortran-4.8-dev (= 4.8.2-19ubuntu1), libc6-dev (>= 2.13-0ubuntu6), libc6 (>= 2.11), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4) Suggests: gfortran-4.8-multilib, gfortran-4.8-doc, libgfortran3-dbg (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/gfortran-4.8_4.8.2-19ubuntu1_i386.deb Size: 4722274 MD5sum: e01b5b943928821e879e1babd95c78b9 SHA1: 41135fe1c03c555e57abbded8846ad564bdaa083 SHA256: 64c3663f7ec2abb5781cef9656fe24f5d8ecf29eb2d74d8bbbb8b3d5ab50794a Description: GNU Fortran compiler Homepage: http://gcc.gnu.org/ Description-md5: 5dd93c5d21d0717205bc5a3b538b0ca2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gfortran-4.8-doc Priority: optional Section: doc Installed-Size: 1400 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gcc-4.8/gfortran-4.8-doc_4.8.2-19ubuntu1_all.deb Size: 300252 MD5sum: 25bce03cae69ce9b631d7931a3746827 SHA1: 71d59f0acd48ab40d4336c91724a7c9722982cbb SHA256: 9f50122e1f9da7ef14ba1058ac6c43ebfc0a9f2b179a839a537a8ec604e3a6d2 Description: Documentation for the GNU Fortran compiler (gfortran) Homepage: http://gcc.gnu.org/ Description-md5: 17a01a9ada93e104865a01e6615e2401 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gfortran-4.8-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gfortran-4.8 (= 4.8.2-19ubuntu1), gcc-4.8-multilib (= 4.8.2-19ubuntu1), lib64gfortran-4.8-dev (= 4.8.2-19ubuntu1), libx32gfortran-4.8-dev (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/gfortran-4.8-multilib_4.8.2-19ubuntu1_i386.deb Size: 978 MD5sum: 8035b97021f42bdc03350978b0ef79c6 SHA1: 98678e2f8488ab77285cbec139bc8d4082b50a5b SHA256: fff31b40f37ad0a38bf3fcb35d9da45677eb8dddfb4b2e5ef793b0614c272952 Description: GNU Fortran compiler (multilib files) Homepage: http://gcc.gnu.org/ Description-md5: 005da023d3d2e21ed1c3e72be2361917 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gfortran-doc Priority: optional Section: doc Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: gfortran-4.8-doc (>= 4.8.2-5~) Suggests: gfortran (>= 4:4.8.2-1ubuntu6) Filename: pool/main/g/gcc-defaults/gfortran-doc_4.8.2-1ubuntu6_i386.deb Size: 3260 MD5sum: 517111835dafc813c49e135df8546b95 SHA1: 344328edfa67bfbb095e0c9b602b6355538c19f8 SHA256: bc6820117f97269e94e9a3d228c38a0ffa3efdebd4518a5a9fc0e0568e7c97e2 Description: Documentation for the GNU Fortran compiler (gfortran) Description-md5: 6855bbffb1ede02166da131963e7fd83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gfortran-multilib Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc-multilib (>= 4:4.8.2-1ubuntu6), gfortran (>= 4:4.8.2-1ubuntu6), gfortran-4.8-multilib (>= 4.8.2-5~) Filename: pool/main/g/gcc-defaults/gfortran-multilib_4.8.2-1ubuntu6_i386.deb Size: 952 MD5sum: 88582e837816b4064cebe29d829f3ead SHA1: c3d7ca119ec3ba0c2c87e21f4f45f92fe67f7dd1 SHA256: 0c0d1bd2b6b35a32c52af84a161c1968b5426b08b6dde35e6b5ecc67ff0caa6a Description: GNU Fortran 95 compiler (multilib files) Description-md5: de3f0253a1d23ed0c3ee4e62e170756b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gfxboot Priority: optional Section: utils Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Version: 4.5.1-3ubuntu1 Suggests: gfxboot-themes Filename: pool/main/g/gfxboot/gfxboot_4.5.1-3ubuntu1_i386.deb Size: 20136 MD5sum: 1ad6509ef43ae1f2735bb74fe363c797 SHA1: a7e4b267aa751423458d73e89c64ba249266684f SHA256: af65b1920fa63b4253591ae87d3d6f142ac10bfe661c3fac7a3728ba85786908 Description: tool to test and create graphical boot logos (runtime) Homepage: http://gfxboot.sourceforge.net/ Description-md5: dacebcc0ca068d91673a1386979de16b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gfxboot-dev Priority: extra Section: misc Installed-Size: 460 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Source: gfxboot Version: 4.5.1-3ubuntu1 Depends: libc6 (>= 2.8), libfreetype6 (>= 2.2.1), gfxboot (= 4.5.1-3ubuntu1), cpio, libfribidi0, libhtml-parser-perl Suggests: gfxboot-themes Filename: pool/main/g/gfxboot/gfxboot-dev_4.5.1-3ubuntu1_i386.deb Size: 86288 MD5sum: fd1f856a00b602b1c69e2002103a20e3 SHA1: 7b6cd290d24fa7c5b78ff284ade3b2cbcdccf809 SHA256: 859e1fbe875d2bfa7510fb9d9fda4892fb0b7299744b7c8e7d55d754d4a9942e Description: tool to test and create graphical boot logos (development) Homepage: http://gfxboot.sourceforge.net/ Description-md5: 368555be148adde019e0c934a1aedcd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gfxboot-theme-ubuntu Priority: optional Section: utils Installed-Size: 1412 Maintainer: Colin Watson Architecture: i386 Version: 0.16.1 Depends: gfxboot (>= 3.3.28) Filename: pool/main/g/gfxboot-theme-ubuntu/gfxboot-theme-ubuntu_0.16.1_i386.deb Size: 333022 MD5sum: da90332b1e7042fe531b1473f2089145 SHA1: 46d7936445b1c5ee2a9193fb86d22a0a7197fe71 SHA256: 439d3c433101cbd6f37c28cdd230561f0efaa20c4d930e31408c645dfc858659 Description: Ubuntu theme for gfxboot-compliant boot loaders Description-md5: 20c8ed8e2ecaec26141cbb8137defe84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ghostscript Priority: optional Section: text Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Version: 9.10~dfsg-0ubuntu10 Provides: postscript-viewer Depends: libc6 (>= 2.0), libgs9 (= 9.10~dfsg-0ubuntu10), gsfonts (>= 6.0-1), debconf | debconf-2.0, debianutils (>= 1.6) Suggests: ghostscript-x, hpijs Breaks: ghostscript-x (<< 8.64~dfsg-8) Filename: pool/main/g/ghostscript/ghostscript_9.10~dfsg-0ubuntu10_i386.deb Size: 40852 MD5sum: 07a9a5987b59c6afda36481bacfa2f4a SHA1: 0d567e8ebee636c5e2ea55f9dd395fd0521b3717 SHA256: a8b46718e2b102e6c2f0d8af87f66bcef61a74ff25e0ee7316fe9791642622d3 Description: interpreter for the PostScript language and for PDF Multi-Arch: foreign Homepage: http://www.ghostscript.com/ Description-md5: 3b69f5ec8191e8f0d88dd3e30e7b1b69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ghostscript-dbg Priority: extra Section: debug Installed-Size: 21323 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Depends: libgs9 (= 9.10~dfsg-0ubuntu10) | ghostscript (= 9.10~dfsg-0ubuntu10) | ghostcript-cups (= 9.10~dfsg-0ubuntu10) | ghostcript-x (= 9.10~dfsg-0ubuntu10) Filename: pool/main/g/ghostscript/ghostscript-dbg_9.10~dfsg-0ubuntu10_i386.deb Size: 5194824 MD5sum: b4d4e2f73c0b4c469c2608974dcc7028 SHA1: 591879efc597183e70874fe208a3760afeee8d24 SHA256: 2aaf953b216d6e7fc5425eff538343209503f1a30c6172597202ba8669bbbb35 Description: interpreter for the PostScript language and for PDF - Debug symbols Homepage: http://www.ghostscript.com/ Description-md5: b88404b3189bdd4e7a7b79221e98739c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ghostscript-doc Priority: optional Section: text Installed-Size: 15728 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Suggests: ghostscript Filename: pool/main/g/ghostscript/ghostscript-doc_9.10~dfsg-0ubuntu10_all.deb Size: 5080626 MD5sum: 00d3da59e5aaef6522b32bef81bf0fd4 SHA1: f04b5a56d24156e292fa8953c40aed5d99158eb0 SHA256: 2e2d3df47dbbe0ac9e96f434ace108239d3793de84bf4cef40790adc9fb34273 Description: interpreter for the PostScript language and for PDF - Documentation Homepage: http://www.ghostscript.com/ Description-md5: 772951004a1a824bee59da206fba24e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ghostscript-x Priority: optional Section: text Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Depends: libc6 (>= 2.7), libx11-6, libxt6, ghostscript (= 9.10~dfsg-0ubuntu10) Filename: pool/main/g/ghostscript/ghostscript-x_9.10~dfsg-0ubuntu10_i386.deb Size: 33236 MD5sum: 5d6e9b5ccff8ff0e233e8b50f188e10f SHA1: 0fa6b953229696773924f8d1544086e003754dc9 SHA256: 837540186a33553bba644edefc023593103b0ee32741774a57b28da9a3bd2a39 Description: interpreter for the PostScript language and for PDF - X11 support Homepage: http://www.ghostscript.com/ Description-md5: 5f6f4265cecdf5f91c519e5f197328b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: giflib-dbg Priority: extra Section: libdevel Installed-Size: 608 Maintainer: Ubuntu Developers Original-Maintainer: Thibaut Gridel Architecture: i386 Source: giflib Version: 4.1.6-11 Depends: giflib-tools (= 4.1.6-11), libgif4 (= 4.1.6-11), libgif-dev (= 4.1.6-11) Filename: pool/main/g/giflib/giflib-dbg_4.1.6-11_i386.deb Size: 325902 MD5sum: d0e5c6efeb866104f456bc0da62878d7 SHA1: b814d0255402075dacf76e4d7559fa1cd92d15b4 SHA256: f51ecf10d57ba7161004da7b86570d77831f8bfe6d086320be0ab4bc3e228455 Description: library for GIF images (debug) Homepage: http://giflib.sourceforge.net/ Description-md5: 7f99d5bf219b9cacea03ecc7f02fb695 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: giflib-tools Priority: optional Section: utils Installed-Size: 586 Maintainer: Ubuntu Developers Original-Maintainer: Thibaut Gridel Architecture: i386 Source: giflib Version: 4.1.6-11 Provides: libungif-bin Depends: libc6 (>= 2.7), libgif4 (>= 4.1.4), libperl4-corelibs-perl | perl (<< 5.12.3-7) Filename: pool/main/g/giflib/giflib-tools_4.1.6-11_i386.deb Size: 134032 MD5sum: 15868fdd7095057900feae4bd505afc7 SHA1: 86d832c9311ca325299c72efeeb8fd0ab760db3a SHA256: 960aee5eebcebb9cd574aaa2a51e50453b0b0a5e2cc6f23a7944f222aefb1286 Description: library for GIF images (utilities) Homepage: http://giflib.sourceforge.net/ Description-md5: a19e8498a460f459fbf8306ec5aabc61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gimp Priority: optional Section: graphics Installed-Size: 15024 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: i386 Version: 2.8.10-0ubuntu1 Replaces: gimp-plugin-registry (<< 4.20120506) Provides: gimp-helpbrowser, gimp-python Depends: libgimp2.0 (>= 2.8.10), libgimp2.0 (<= 2.8.10-z), gimp-data (>= 2.8.10), gimp-data (<= 2.8.10-z), python-gtk2 (>= 2.8.0), libgdk-pixbuf2.0-0 (>= 2.24.1), libaa1 (>= 1.4p5), libbabl-0.1-0 (>= 0.1.10), libbz2-1.0, libc6 (>= 2.15), libcairo2 (>= 1.10.2), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libexif12, libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgegl-0.2-0 (>= 0.2.0), libglib2.0-0 (>= 2.37.3), libgs9 (>= 8.61.dfsg.1), libgtk2.0-0 (>= 2.24.10), libgudev-1.0-0 (>= 146), libjasper1, libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libmng2 (>= 1.0.10), libpango-1.0-0 (>= 1.29.4), libpangocairo-1.0-0 (>= 1.29.4), libpangoft2-1.0-0 (>= 1.29.4), libpng12-0 (>= 1.2.13-4), libpoppler-glib8 (>= 0.18.0), librsvg2-2 (>= 2.14.4), libtiff5 (>= 4.0.3), libwebkitgtk-1.0-0 (>= 1.3.10), libwmf0.2-7 (>= 0.2.8.4), libx11-6, libxcursor1 (>> 1.1.2), libxext6, libxfixes3, libxmu6, libxpm4, zlib1g (>= 1:1.1.4), python:any (>= 2.7.1-0ubuntu2), python2.7 Recommends: ghostscript Suggests: gimp-help-en | gimp-help, gimp-data-extras, gvfs-backends, libasound2 Breaks: gimp-plugin-registry (<< 4.20120506) Filename: pool/main/g/gimp/gimp_2.8.10-0ubuntu1_i386.deb Size: 3286280 MD5sum: f1b66904cc31147bb0d46b6b60dac42f SHA1: 64f84246c66da9e14187d44f739ddbeb100cbf2a SHA256: c6102f6327c6591d52a6bac0254a820af08e6cab26a58b91af985720c34bc071 Description: The GNU Image Manipulation Program Homepage: http://www.gimp.org/ Description-md5: ad6dd18a09fb86ea4529ac53f33168b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: gimp-data Priority: optional Section: graphics Installed-Size: 14700 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp Version: 2.8.10-0ubuntu1 Replaces: gimp (<< 2.4.0~rc2-2), gimp-python (<< 2.6.0) Recommends: gimp Conflicts: gimp (<< 2.4.0~rc2-2), gimp-python (<< 2.6.0) Filename: pool/main/g/gimp/gimp-data_2.8.10-0ubuntu1_all.deb Size: 3067712 MD5sum: f0b842ef8c86e888d57c2ce304058cca SHA1: 4dfa5ac6226885364b931dfe24dab7893b49f4ed SHA256: a0bf6c6ff1372eb760fc8e5d81446fdb434842ac68392451df061a5cc7a0ea3c Description: Data files for GIMP Homepage: http://www.gimp.org/ Description-md5: f70d84aecd044d27d27535082275ce75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: gimp-dbg Priority: extra Section: graphics Installed-Size: 43788 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: i386 Source: gimp Version: 2.8.10-0ubuntu1 Depends: gimp (= 2.8.10-0ubuntu1) | libgimp2.0 (= 2.8.10-0ubuntu1) Filename: pool/main/g/gimp/gimp-dbg_2.8.10-0ubuntu1_i386.deb Size: 11238102 MD5sum: 2e5ec1f2488ee6a729a87d0da5da9ce6 SHA1: bbc90949cc79aea23d8a3d96d710be661fc8383f SHA256: 4c5174d2f464ce6874a3a8c32dbdf595fd9d7ad8c449167d150b126c291e3365 Description: Debugging symbols for GIMP Homepage: http://www.gimp.org/ Description-md5: 2f9db4a750267fb9aae49799596bcd26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gimp-help-common Priority: optional Section: doc Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Filename: pool/main/g/gimp-help/gimp-help-common_2.6.1-1_all.deb Size: 9220 MD5sum: fb9314b6ddb4a891a7deb9d06c522df9 SHA1: adb71a72ad1eb06de77802959269d36097344f0b SHA256: b1d81ed6379eaf31d61af4b6c087e328998aa9a10477e856cf1e29c642e94200 Description: Data files for the GIMP documentation Homepage: http://www.gimp.org Description-md5: c622b6265a4154156ac063b049290303 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-dvd-live, edubuntu-usb Package: gimp-help-de Priority: optional Section: doc Installed-Size: 44816 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-de_2.6.1-1_all.deb Size: 29884550 MD5sum: 9de7c657d4e68637bc44ca6ee5df0de2 SHA1: 8de5c8971dd843553d2828567dab390ef3815dbe SHA256: ea031b88772a62396f87da4bb193be254d5a2953ce30a2aa4c3f4ebc3030d723 Description: Documentation for the GIMP (German) Enhances: gimp Homepage: http://www.gimp.org Description-md5: c2f5a03af9efa144296c9c42f7c63d19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: gimp-help-en Priority: optional Section: doc Installed-Size: 40248 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-en_2.6.1-1_all.deb Size: 26076972 MD5sum: 8f6b36ab610118892382f53cdfdaa535 SHA1: a789dfb5c65971d1bc4b356ef162787bc9811178 SHA256: 00ef870149d275be1b5920f0d118351330b40a5967f0e77e087a8e5ea0ee770b Description: Documentation for the GIMP (English) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 44a9ca52b03dfcc2c9c4595709a17943 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-dvd-live, edubuntu-usb Package: gimp-help-es Priority: optional Section: doc Installed-Size: 41444 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-es_2.6.1-1_all.deb Size: 26810028 MD5sum: e1f77c2c4853bb231694c8dff7748ef0 SHA1: 8597009691d13c3d97bc1438ceedd2e05b8ea6b9 SHA256: 3384c9749ae495b04617fcf1df656ee17b9bc6629c37009de96c701cce7662ed Description: Documentation for the GIMP (Spanish) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 8de727556a253519c345cb654483a3da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-fr Priority: optional Section: doc Installed-Size: 40624 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-fr_2.6.1-1_all.deb Size: 25768780 MD5sum: f650d73696dd6b86270b8a268b39d376 SHA1: d1676e5b751b7b3711717ba1f047da3da20bc5fe SHA256: f03b57abfd9a1ea82a4ae1cd1e8b1bcd2390cac99ff0e405c2ab593bbf761e3e Description: Documentation for the GIMP (French) Enhances: gimp Homepage: http://www.gimp.org Description-md5: d56fa51bce3855e6068629e20ce6278b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: gimp-help-it Priority: optional Section: doc Installed-Size: 45376 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-it_2.6.1-1_all.deb Size: 30985150 MD5sum: 9850a4edeaa1c15a6a8ce531d451c07b SHA1: 2fb57306e2ac7d969ce035d6e42346136b08f583 SHA256: 1287fda7393a8911bf201f3a715ec55ea11b2b35092bce59e2505deb22bf4ecc Description: Documentation for the GIMP (Italian) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 0cc37908ae6e1669de9a5a8f41a62095 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-ko Priority: optional Section: doc Installed-Size: 39764 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-ko_2.6.1-1_all.deb Size: 25564180 MD5sum: f2bfbc65a8e647bebbaf1abb51f84448 SHA1: 9b9eee28116aefe9fdce0722e7ea3cf113057f3c SHA256: 51c415a309d9de31b3f0e987a65dcee4ba79502625ded1889341147b7a4d15fd Description: Documentation for the GIMP (Korean) Enhances: gimp Homepage: http://www.gimp.org Description-md5: e91196af2a2dea242371d6453abb7ff0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-nl Priority: optional Section: doc Installed-Size: 40400 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-nl_2.6.1-1_all.deb Size: 26121422 MD5sum: 537f69d8985392786acbee5de99480a3 SHA1: 20874c7027d5dcdc59dc8c58420cf662be2d1547 SHA256: 91a05368bcc1a890650b5916db5c1d16722499f1a16137c3fa5eee4d69d48823 Description: Documentation for the GIMP (Dutch) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 21a6a448fddd7bf5a39aa142a86a4b19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-nn Priority: optional Section: doc Installed-Size: 34300 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-nn_2.6.1-1_all.deb Size: 21561508 MD5sum: 0156dfad76b28c056158e1281f29366c SHA1: a990021cb9ae07f15abf35e7447cdd579c28b92f SHA256: 7669047312d1f9c4adc4c34773efe724cd3658d3d9fd3e2247a773cd762ae148 Description: Documentation for the GIMP (Norwegian) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 77bfe274a90f6b7f8c1326bcd0b85342 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-pl Priority: optional Section: doc Installed-Size: 40276 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-pl_2.6.1-1_all.deb Size: 26092186 MD5sum: e0622a14f455f03b9e5a65f1f7a5fb95 SHA1: a4afa3c0dea9562a63145ca7b925bc91f2718415 SHA256: 196c6fc5b674c4fb71f75f046f89d31cf063ceaa98caeadfbf459513b4231752 Description: Documentation for the GIMP (Polish) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 274b548dd6c2359aeda00e0162bdf78e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-ru Priority: optional Section: doc Installed-Size: 41196 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-ru_2.6.1-1_all.deb Size: 26457976 MD5sum: cae7f92cb3c59d85b86a1b12dcc501c1 SHA1: a0896e3784ebd3cb5f1bde70e0e888a8e14908be SHA256: f3a2c7190c9955930af41e6b7444e76d083d35e298d5bfe68e47c6341cc3e711 Description: Documentation for the GIMP (Russian) Enhances: gimp Homepage: http://www.gimp.org Description-md5: e7ac773da975d41de40cfe41fc7fd0e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gimp-help-sv Priority: optional Section: doc Installed-Size: 40940 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp-help Version: 2.6.1-1 Provides: gimp-help Depends: gimp-help-common (= 2.6.1-1), gimp-helpbrowser | www-browser Filename: pool/main/g/gimp-help/gimp-help-sv_2.6.1-1_all.deb Size: 26704982 MD5sum: 516421f7cfd55168bddec7a570ea7aab SHA1: b8459fc16028b7b4dbe793ee2dd3f255dfbdc115 SHA256: 2085e4a3a9b97c5fb8add77d11f68c55488129db584fc8ddf51b38d1a97785ad Description: Documentation for the GIMP (Swedish) Enhances: gimp Homepage: http://www.gimp.org Description-md5: 8f04b34bd98f7e7f37a59c0a5f429049 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: gir1.2-accountplugin-1.0 Priority: optional Section: introspection Installed-Size: 43 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: gnome-control-center-signon Version: 0.1.7~+14.04.20140211.2-0ubuntu4 Depends: libaccount-plugin-1.0-0 (= 0.1.7~+14.04.20140211.2-0ubuntu4) Filename: pool/main/g/gnome-control-center-signon/gir1.2-accountplugin-1.0_0.1.7~+14.04.20140211.2-0ubuntu4_i386.deb Size: 3176 MD5sum: e56182fe3531bdaea97dbd7907ca05fe SHA1: b1b84bd36db853731303d6471098daf93557eeee SHA256: 07abe7c5c819c5086fcace971949c1e69e6c3f2bb30ca19030609ae6f99c38eb Description: typelib file for libaccount-plugin-1.0-0 Homepage: https://launchpad.net/online-accounts-gnome-control-center Description-md5: ae193a7ff62eeae274b269385244b87d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-accounts-1.0 Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libaccounts-glib Version: 1.15+14.04.20131126.2-0ubuntu3 Depends: libaccounts-glib0 (= 1.15+14.04.20131126.2-0ubuntu3) Filename: pool/main/liba/libaccounts-glib/gir1.2-accounts-1.0_1.15+14.04.20131126.2-0ubuntu3_i386.deb Size: 6254 MD5sum: 7f400ad686c1cb2f4384767acc284a6b SHA1: ee57bcf4013f804276ba0f3180b6595303ebca3e SHA256: 47e3700b7dda1570cffe0558ec13926434a7fdb045a7cd5d698a3d5638770b79 Description: typelib file for libaccounts-glib0 Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 030c7e7e113a19718bd61ed39007d4f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-accountsservice-1.0 Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: accountsservice Version: 0.6.35-0ubuntu7 Replaces: gir1.2-accountservice-1.0 (<< 0.6.12-4) Depends: gir1.2-glib-2.0, libaccountsservice0 (>= 0.6.35-0ubuntu7) Breaks: gir1.2-accountservice-1.0 (<< 0.6.12-4) Filename: pool/main/a/accountsservice/gir1.2-accountsservice-1.0_0.6.35-0ubuntu7_i386.deb Size: 4672 MD5sum: 46dd2565ae58905f42d5c0efc1d8ef35 SHA1: 5ce1c25028a17bbabb1d64542a443503e4a07f91 SHA256: bb9845d130783ec21f0442694bc28c1e812ff7db39dfe7e4f69a465a3add374f Description: GObject introspection data for AccountService Multi-Arch: foreign Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: 3e307108d5acfea1c79fd66a238baaf2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-appindicator-0.1 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: gir1.2-glib-2.0, gir1.2-gtk-2.0, libappindicator1 (>= 0.4.90) Filename: pool/main/liba/libappindicator/gir1.2-appindicator-0.1_12.10.1+13.10.20130920-0ubuntu4_i386.deb Size: 3336 MD5sum: 7b75b7f9293905eccba46523bd24a99f SHA1: a372c261a474ce0cecb2d2c4be9ddf6a6909447f SHA256: 7905cc3cca8e04c77756c031aad40b70343b9d21d7cc60610ce6b3f6a38cfd6c Description: Typelib files for libappindicator1. Homepage: https://launchpad.net/libappindicator Description-md5: fd2d1c899c298f83c6cd1e90eb9f78b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-appindicator3-0.1 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libappindicator3-1 (>= 0.4.90) Filename: pool/main/liba/libappindicator/gir1.2-appindicator3-0.1_12.10.1+13.10.20130920-0ubuntu4_i386.deb Size: 3340 MD5sum: f45ade847ee8da4b09f1867ca0ee6b54 SHA1: 40c2bdcfb3592b403f47340c7c8708327c1a87f0 SHA256: cb24679534e020e632db02385a282de919d0ffb16bf8f268f3ddf5f44963b821 Description: Typelib files for libappindicator3-1. Homepage: https://launchpad.net/libappindicator Description-md5: a95ebdac40aa90c36d1a2a1108877142 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: gir1.2-atk-1.0 Priority: optional Section: libs Installed-Size: 143 Maintainer: Ubuntu Developers Architecture: i386 Source: atk1.0 Version: 2.10.0-2ubuntu2 Replaces: gir1.0-gtk-2.0 (<< 2.22), gobject-introspection-repository Depends: gir1.2-glib-2.0, libatk1.0-0 (>= 2.10.0) Conflicts: gir1.0-atk-1.0 Filename: pool/main/a/atk1.0/gir1.2-atk-1.0_2.10.0-2ubuntu2_i386.deb Size: 16228 MD5sum: 0ed010aed0fa65d0dd0d248f2d393b28 SHA1: 33157eea337e330b4f63fac204f6292cb28add9e SHA256: b26954aa220624e3ec31ae8503eb716ac1ce9f50e178ce61efc34af8a99d539b Description: ATK accessibility toolkit (GObject introspection) Homepage: http://www.gtk.org/ Description-md5: f14d9112796808986e9cae4624933403 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-atspi-2.0 Priority: optional Section: misc Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Replaces: gir1.0-gtk-2.0 (<< 2.22), gobject-introspection-repository Depends: gir1.2-glib-2.0, libatspi2.0-0 Filename: pool/main/a/at-spi2-core/gir1.2-atspi-2.0_2.10.2.is.2.10.1-0ubuntu1_i386.deb Size: 13388 MD5sum: 611034e25665027b0238c2f4d0efc473 SHA1: aa6ea8939cc9d23a546311e1b769670e78d0e69a SHA256: f66a9a7b8646dda06e0407e77b120f813697ad0683c8970fdff9925456765171 Description: Assistive Technology Service Provider (GObject introspection) Homepage: http://live.gnome.org/Accessibility Description-md5: b2f515b8cdef2fbe0cb29eb69f2ea27a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-bamf-3 Priority: optional Section: libs Installed-Size: 60 Maintainer: Didier Roche Architecture: i386 Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Depends: gir1.2-glib-2.0, libbamf3-2 (>= 0.5.0) Filename: pool/main/b/bamf/gir1.2-bamf-3_0.5.1+14.04.20140409-0ubuntu1_i386.deb Size: 5990 MD5sum: 17aec12c52f3733d56b5add8551ef6df SHA1: 00f14f838560c9b4c75b7e281f64eb4671ed9db0 SHA256: 60c8a0b45c47faa2ffc7eceab1cda3f63a98dc915a532fa2db5439e4f3bcfefc Description: GObject introspection data for the Bamf library Homepage: https://launchpad.net/bamf Description-md5: 3b453325c374db76b542a9f2cc19639d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-brasero-3.0 Priority: optional Section: introspection Installed-Size: 616 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: brasero Version: 3.10.0-0ubuntu1 Depends: gir1.2-gtk-3.0, libbrasero-media3-1 (>= 3.0.0) Filename: pool/main/b/brasero/gir1.2-brasero-3.0_3.10.0-0ubuntu1_i386.deb Size: 15074 MD5sum: 31912da5fad138f23713ad78938a9e94 SHA1: 94a0124b6a34b06fbc75c0388465e0c4492bff09 SHA256: 305925cc2f1ffa14c2679791c74a9f153de8d124b55c14bf9a8c5f5af611dd53 Description: CD/DVD burning library for GNOME - GObject introspection data Homepage: http://www.gnome.org/projects/brasero/ Description-md5: 7c1eeb238606ff6f5c6a9ecdcd3121f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-cheese-3.0 Priority: optional Section: libdevel Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: cheese Version: 3.10.2-0ubuntu2 Depends: gir1.2-clutter-1.0, gir1.2-freedesktop, gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gstreamer-1.0, libcheese7 (>= 3.5.1) Filename: pool/main/c/cheese/gir1.2-cheese-3.0_3.10.2-0ubuntu2_i386.deb Size: 11766 MD5sum: bba41441b570bcef089aba599ab0e4fa SHA1: 217b77eebb5b4c9f2ea4d75159356907584f97ac SHA256: 04af1a6c0868ddf4b00ae11cb77e29d6246b1a55856ee8ce6f07b9a65ca6e699 Description: tool to take pictures and videos from your webcam - gir bindings Homepage: http://projects.gnome.org/cheese/ Description-md5: 6bb6f1733150d36f15c99ff4d977005b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-click-0.4 Priority: optional Section: introspection Installed-Size: 58 Maintainer: Colin Watson Architecture: i386 Source: click Version: 0.4.21.1 Depends: gir1.2-gee-0.8, gir1.2-glib-2.0, gir1.2-json-1.0, libclick-0.4-0 (= 0.4.21.1) Filename: pool/main/c/click/gir1.2-click-0.4_0.4.21.1_i386.deb Size: 6190 MD5sum: 242c613ee69d4110449bb0a8d7859cd6 SHA1: bafd2c04c166d8208245cf039c5ab55e07bd869c SHA256: 9497834c62d75ecb047c4391b1ca38d72f3e2a44a4704a738511722b4c5c59d2 Description: GIR bindings for Click package management library Description-md5: fbd7cef9943963b4852f1b41e72488ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-clutter-1.0 Priority: optional Section: libs Installed-Size: 653 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Replaces: gir1.0-clutter-1.0, libclutter-1.0-0 (<< 1.0.8) Depends: gir1.2-atk-1.0, gir1.2-cogl-1.0, gir1.2-coglpango-1.0, gir1.2-freedesktop, gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-json-1.0, libclutter-1.0-0 (>= 1.16.0) Conflicts: gir1.0-clutter-1.0 Breaks: libclutter-1.0-0 (<< 1.0.8) Filename: pool/main/c/clutter-1.0/gir1.2-clutter-1.0_1.16.4-0ubuntu2_i386.deb Size: 103314 MD5sum: 3e519b07793fb95b279e7ad7c84ec6bf SHA1: 95d8f414a5bedc0e520d44a5fef3a407df754dbf SHA256: b71145a238ea4d8d4338814bd6b899218b5257ac36d709ad3cce06c8e97921f3 Description: GObject introspection data for the Clutter 1.0 library Homepage: http://www.clutter-project.org/ Description-md5: 312bf4f2636f72196b1ab50b2a930bad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-clutter-gst-2.0 Priority: optional Section: introspection Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-gst-2.0 Version: 2.0.8-1build1 Depends: gir1.2-clutter-1.0, gir1.2-glib-2.0, gir1.2-gst-plugins-base-1.0, gir1.2-gstreamer-1.0, libclutter-gst-2.0-0 (>= 1.6.0) Filename: pool/main/c/clutter-gst-2.0/gir1.2-clutter-gst-2.0_2.0.8-1build1_i386.deb Size: 4552 MD5sum: 761b05062db9ea96bd92e9d72872f5c0 SHA1: ae8c3b0708811f38902dbff126799e49a9c0a658 SHA256: e6ce547529f7f16796735f5e88fa3db3111122cd4fb4e58a60c1ad8ee1b9d20f Description: Gobject introspection data for Clutter GStreamer elements Homepage: http://www.clutter-project.org/ Description-md5: 855dec98b1cf3c3349601619f57b8ade Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-cogl-1.0 Priority: optional Section: libs Installed-Size: 107 Maintainer: Rico Tzschichholz Architecture: i386 Source: cogl Version: 1.16.2-1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libcogl15 (>= 1.15.8) Filename: pool/main/c/cogl/gir1.2-cogl-1.0_1.16.2-1_i386.deb Size: 14272 MD5sum: 3cb44e5ebe69df0f69d4f18c564fbd41 SHA1: 772a90e4cc0aad5cda23a7aca3b057478755cf1a SHA256: cdcef5fd194b3cc4613833e074761d714bb3a176b2b9edd9bd3726be48f8b50e Description: GObject introspection data for the Cogl 1.0 library Description-md5: 148c6f8cbdcd16e6500ac32753a34daf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-coglpango-1.0 Priority: optional Section: libs Installed-Size: 64 Maintainer: Rico Tzschichholz Architecture: i386 Source: cogl Version: 1.16.2-1 Depends: gir1.2-cogl-1.0 (= 1.16.2-1), gir1.2-pango-1.0, libcogl-pango15 (>= 1.15.8) Filename: pool/main/c/cogl/gir1.2-coglpango-1.0_1.16.2-1_i386.deb Size: 4198 MD5sum: 002c8659814eca573476e36e1da94eb3 SHA1: fcfff77de5489ed3098ec3ef8b9d3b2f980d4d92 SHA256: 00a39c4ccbc5d50d9ed24392e16efae07524f2f705c6c60ebc362e16f4949739 Description: GObject introspection data for the CoglPango 1.0 library Description-md5: 9add089f4444192d7be4e46f724bc4b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-colord-1.0 Priority: optional Section: libs Installed-Size: 110 Maintainer: Christopher James Halse Rogers Architecture: i386 Source: colord Version: 1.0.6-1 Depends: gir1.2-glib-2.0, libcolord1 (>= 1.0.2) Filename: pool/main/c/colord/gir1.2-colord-1.0_1.0.6-1_i386.deb Size: 17686 MD5sum: 1f0c9e68fa5c847317d006b978244773 SHA1: 8abed54a244c50e25a472d0ff43003f8a1fbb532 SHA256: 6a13c78b7ad5d04439a207fa17d8c832ab8b66051bab5de26c46e24e4b370f03 Description: GObject introspection data for the colord library Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 0c970be8eaa2db714c047406a0f5d648 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-colorhug-1.0 Priority: extra Section: introspection Installed-Size: 61 Maintainer: Christopher James Halse Rogers Architecture: i386 Source: colord Version: 1.0.6-1 Depends: gir1.2-colord-1.0 (= 1.0.6-1), gir1.2-glib-2.0, gir1.2-gusb-1.0, libcolorhug1 (>= 0.1.31) Filename: pool/main/c/colord/gir1.2-colorhug-1.0_1.0.6-1_i386.deb Size: 7576 MD5sum: 5c6e0c11c8d7aa2f667913fc0ba6c64f SHA1: 30129d5fda09c1a588fc861240364a3aacc91fc8 SHA256: cb60a1b378bb7924e233f22710ae9131457efa431d8031c3e470b5b44d7c2d84 Description: GObject introspection data for the colorhug library Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 85412213b22827c0cb9426e23da9a286 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-dbusmenu-glib-0.4 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libdbusmenu-glib4 (= 12.10.3+14.04.20140319-0ubuntu1) Filename: pool/main/libd/libdbusmenu/gir1.2-dbusmenu-glib-0.4_12.10.3+14.04.20140319-0ubuntu1_i386.deb Size: 6088 MD5sum: f455de2e98159701a4a84cdfd9cb4e80 SHA1: c6f8964a4d68ed802bc17c1451ee787c119bd512 SHA256: b097712d09542b95bc71060233192b673154737b0a6b94fdfc350946975ce53a Description: typelib file for libdbusmenu-glib4 Homepage: https://launchpad.net/dbusmenu Description-md5: 178deafecf0710d3aefd7dd5299fab54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-dbusmenu-gtk-0.4 Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libdbusmenu-gtk4 (= 12.10.3+14.04.20140319-0ubuntu1) Filename: pool/main/libd/libdbusmenu/gir1.2-dbusmenu-gtk-0.4_12.10.3+14.04.20140319-0ubuntu1_i386.deb Size: 2994 MD5sum: 2ccc9192e4143c7b07bb3682bc72bce2 SHA1: d55ff5a374b15e780c7272f85198847f3b215ad7 SHA256: 0e1e7fdb5e334fe2771cded02cd93bf454fe177720464fbcc159a136b498b41b Description: typelib file for libdbusmenu-gtk4 Homepage: https://launchpad.net/dbusmenu Description-md5: 3f3980e25152e413f88a2d127cddbec2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-dbusmenu-gtk3-0.4 Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libdbusmenu-gtk3-4 (= 12.10.3+14.04.20140319-0ubuntu1) Filename: pool/main/libd/libdbusmenu/gir1.2-dbusmenu-gtk3-0.4_12.10.3+14.04.20140319-0ubuntu1_i386.deb Size: 2992 MD5sum: 56af46d00d828be7bcfb9eb273bac047 SHA1: 237549336c1676aac140a2c07331e8b820d919f3 SHA256: 5f9182f27cbae95e5165a86dabe27814f898b4480225f0e6965b45a7bbae45ee Description: typelib file for libdbusmenu-gtk3-4 Homepage: https://launchpad.net/dbusmenu Description-md5: d3860f813354e5bde7033c08ab9c38eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-dee-1.0 Priority: optional Section: libs Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: i386 Source: dee Version: 1.2.7+14.04.20140324-0ubuntu1 Replaces: gir1.2-dee-0.5 Depends: gir1.2-glib-2.0, libdee-1.0-4 (>= 1.2.7+13.10.20130924.1) Filename: pool/main/d/dee/gir1.2-dee-1.0_1.2.7+14.04.20140324-0ubuntu1_i386.deb Size: 12512 MD5sum: 2dfc4e5ab2e03e395efb505fa80919f5 SHA1: 8a072a07815740d1ab35ad5ad00f2c437f0885a7 SHA256: 4506cdcfe4127fc73657793fbf103a2560f0de1cb670664d5eb84c5e5645ac1a Description: GObject introspection data for the Dee library Homepage: https://launchpad.net/dee Description-md5: 79b0788f2610b4887e4b3afe5e29363c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-ebook-1.2 Priority: optional Section: libs Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: gir1.2-ebookcontacts-1.2 (= 3.10.4-0ubuntu1), gir1.2-edataserver-1.2 (= 3.10.4-0ubuntu1), gir1.2-freedesktop, gir1.2-glib-2.0, libebook-1.2-14 (>= 3.10.0) Filename: pool/main/e/evolution-data-server/gir1.2-ebook-1.2_3.10.4-0ubuntu1_i386.deb Size: 7106 MD5sum: 4f59edbd26ed38fdec48764404052ade SHA1: 81636fee0f2000edf3152db07f347a9691a180bf SHA256: f7ec32517eba4e0b5b6746392fe6aeca45fe2c7f8db87e62874000bdf78ccb12 Description: GObject introspection for the EBook library Homepage: http://projects.gnome.org/evolution/ Description-md5: eee3f328364fb5b2eb00182c350108b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-ebookcontacts-1.2 Priority: optional Section: introspection Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: gir1.2-edataserver-1.2 (= 3.10.4-0ubuntu1), gir1.2-freedesktop, gir1.2-glib-2.0, libebook-contacts-1.2-0 (>= 3.8.2) Filename: pool/main/e/evolution-data-server/gir1.2-ebookcontacts-1.2_3.10.4-0ubuntu1_i386.deb Size: 12548 MD5sum: 98d0773fa9e087b4472918d2815f3db7 SHA1: 163ab1ab55f37a9db92877632b63c1c6330caa0e SHA256: 5142a10baabc68395a854d61b42cea01b4754bc5ae9578aba8f127d2c3929717 Description: GObject introspection for the EBook Contacts library Homepage: http://projects.gnome.org/evolution/ Description-md5: 5c91e1ab067d8ddd63b0ef031e231a4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-edataserver-1.2 Priority: optional Section: libs Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libedataserver-1.2-18 (>= 3.10.0) Filename: pool/main/e/evolution-data-server/gir1.2-edataserver-1.2_3.10.4-0ubuntu1_i386.deb Size: 19032 MD5sum: 0e58c27a4691a7c3e4b981056f4ad32e SHA1: b2c057ad2d4f83367c4c4cf84aafb49607e65b74 SHA256: 57b4c5f812ed81e5104e9be4e56b4b24ba154ffe11e13db12e2600affe9ec4df Description: GObject introspection for the EDataServer library Homepage: http://projects.gnome.org/evolution/ Description-md5: 2ec1ed52300f0467a0d5460ca0faa785 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-evince-3.0 Priority: optional Section: libs Installed-Size: 685 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: evince Version: 3.10.3-0ubuntu10 Provides: gir1.2-evince-document-3.0, gir1.2-evince-view-3.0 Depends: gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, libevdocument3-4 (>= 3.9.5), libevview3-3 (>= 3.9.5) Filename: pool/main/e/evince/gir1.2-evince-3.0_3.10.3-0ubuntu10_i386.deb Size: 24980 MD5sum: 6c19d27bb0e2be123f47a8e68e67e55f SHA1: 770b1a69390cefc4c18d0614a19a8219237678eb SHA256: 0dd5d6fc708a883777288036d5d3948f2b9f07dff5e28150c03e21023125d177 Description: GObject introspection data for the evince libraries Homepage: http://www.gnome.org/projects/evince/ Description-md5: 4dafa58edf36d098ff0274eb48552db5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-farstream-0.1 Priority: optional Section: introspection Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: farstream Version: 0.1.2-1ubuntu3 Depends: gir1.2-glib-2.0, gir1.2-gstreamer-0.10, libfarstream-0.1-0 (>= 0.1.1) Filename: pool/main/f/farstream/gir1.2-farstream-0.1_0.1.2-1ubuntu3_i386.deb Size: 8042 MD5sum: 7c704bdbfc550b6bcb0bee8289a77252 SHA1: ebac9a85df8a5f97b896c227edcccb19e767ae02 SHA256: 934b280820e14ab6bcc84b1a3b59c3947f336dba477df3fefa16d360792a55a7 Description: Audio/Video communications framework: GObject-Introspection Multi-Arch: same Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 372775129a67708a288c83d61f8d289c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-farstream-0.2 Priority: optional Section: introspection Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: farstream-0.2 Version: 0.2.3-1ubuntu2 Depends: gir1.2-glib-2.0, gir1.2-gstreamer-1.0, libfarstream-0.2-2 (>= 0.2.3) Filename: pool/main/f/farstream-0.2/gir1.2-farstream-0.2_0.2.3-1ubuntu2_i386.deb Size: 8210 MD5sum: 15acd4032f5a53e2980dd1378fd1f4a0 SHA1: e6cb38577125013f9ea03f359562d7f455867412 SHA256: 487e18231e1d1e4ebe18182244dec8481696f373beef6817a0509a60f91d3d5e Description: Audio/Video communications framework: GObject-Introspection Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 372775129a67708a288c83d61f8d289c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-folks-0.6 Priority: optional Section: libs Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: folks Version: 0.9.5-1ubuntu5 Depends: gir1.2-ebookcontacts-1.2, gir1.2-edataserver-1.2, gir1.2-gee-0.8, gir1.2-glib-2.0, gir1.2-telepathyglib-0.12 Filename: pool/main/f/folks/gir1.2-folks-0.6_0.9.5-1ubuntu5_i386.deb Size: 16086 MD5sum: 891d5f31441ea69e7c6867ff97dbe807 SHA1: 496c0bf9a088579491dc00c38ccbad9324fece23 SHA256: 6b7a561fdefdf6f0698c3e09fcd02f6d4851bbde62c6c5de63a0b4990f39f424 Description: library to aggregates people into metacontacts - GObject-Introspection Homepage: https://live.gnome.org/Folks/ Description-md5: 101a0cc9448dd2bd027680cded24f583 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-freedesktop Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gobject-introspection Version: 1.40.0-1 Depends: gir1.2-glib-2.0 (= 1.40.0-1) Conflicts: gir1.0-freedesktop, gobject-introspection-freedesktop Filename: pool/main/g/gobject-introspection/gir1.2-freedesktop_1.40.0-1_i386.deb Size: 5638 MD5sum: de7128f1f6f27a0fe3606d7026266a47 SHA1: 14f4a741d6874c542027c4b22eaebb7bcf6d4219 SHA256: 2a471ffbb33e2a4682dabbcba05ca528eb6c82652c2fe464c5b7351598b3cd8f Description: Introspection data for some FreeDesktop components Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: e492870e481eb146e130bddc80b8d5df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-friends-0.1 Priority: extra Section: libs Installed-Size: 40 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: gir1.2-glib-2.0 Filename: pool/main/libf/libfriends/gir1.2-friends-0.1_0.1.2+14.04.20131108.1-0ubuntu1_i386.deb Size: 4016 MD5sum: a8cfdf8e4a620a5218a8a9a97e17290a SHA1: 6690d6bfdc1ff46ce0997e69cb80a4849cc68a98 SHA256: ec49d8d22ae1763c7fbae09e5c9442d8017be45e61c1b8615f04def0c2dc01a7 Description: GObject Introspection data for the Friends library Homepage: https://launchpad.net/friends Description-md5: 5d8236eb449f825e9323c35bc5bea857 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-friends-gtk-0.1 Priority: extra Section: libs Installed-Size: 38 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: gir1.2-friends-0.1 (= 0.1.2+14.04.20131108.1-0ubuntu1), libfriends-gtk0 (= 0.1.2+14.04.20131108.1-0ubuntu1), gir1.2-gtk-3.0 Filename: pool/main/libf/libfriends/gir1.2-friends-gtk-0.1_0.1.2+14.04.20131108.1-0ubuntu1_i386.deb Size: 2768 MD5sum: 9f81685bda26265e68a703b165b9ff30 SHA1: fe01eb81400ec05143fcf12e0c479c74ac5aae28 SHA256: a61e97d5dd6b7f3ed0bece7c5a39f733e2ab8a0671365c58c19dcc5f62a3df25 Description: GObject Introspection data for Friends GTK widgets Homepage: https://launchpad.net/friends Description-md5: 87968d653b3e7a765f1863a1397e763f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gck-1 Priority: optional Section: introspection Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gcr Version: 3.10.1-1 Depends: gir1.2-glib-2.0, libgck-1-0 (>= 3.3.90) Filename: pool/main/g/gcr/gir1.2-gck-1_3.10.1-1_i386.deb Size: 9232 MD5sum: bd1bb7ca086332f52cd8942a4acb9b28 SHA1: 797c2919a6d230edb4cc4de6292923ed39214d30 SHA256: f80ea52fe11997ebbbc3dd9023c76fbaf914146c802384c0b30ef9d865f388fe Description: GObject introspection data for the GCK library Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 9fe18a0ed10ac386dd01e38e2599f7d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-gconf-2.0 Priority: optional Section: libs Installed-Size: 400 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: gconf Version: 3.2.6-0ubuntu2 Depends: gconf-service, gir1.2-glib-2.0, libgconf-2-4 (>= 2.31.1) Conflicts: gir1.0-gconf-2.0 Filename: pool/main/g/gconf/gir1.2-gconf-2.0_3.2.6-0ubuntu2_i386.deb Size: 6184 MD5sum: 12fa00dd0bb5ab2c160c4d388cb2fe50 SHA1: 47b7069931e13acbc8e7df9df6303bb9b54f04a0 SHA256: 2871745165a151d645bbdb226ac0ba4fbe0eedf7ea64542d09a1d3f9d402c48f Description: GNOME configuration database system (GObject-Introspection) Homepage: http://projects.gnome.org/gconf/ Description-md5: 1268956fd1a3637618828db77c2ef43c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: gir1.2-gcr-3 Priority: optional Section: introspection Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gcr Version: 3.10.1-1 Depends: gir1.2-gck-1 (= 3.10.1-1), gir1.2-glib-2.0, gir1.2-gtk-3.0, libgcr-base-3-1 (>= 3.8.0), libgcr-ui-3-1 (>= 3.10.1) Filename: pool/main/g/gcr/gir1.2-gcr-3_3.10.1-1_i386.deb Size: 13616 MD5sum: c1eef83bdf394f9c36a7d3b898b9351e SHA1: 9f25d48e239a31f228e12bfa0e339c768deb54ac SHA256: 2af37e1a32a4b7ca57c8859ef64829427aca9e9d76589c463b49aa3f8def4b8a Description: GObject introspection data for the GCR library Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: b69189318ad490ce96b37e11ad4c8b09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-gdata-0.0 Priority: optional Section: libs Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgdata Version: 0.14.1-1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, gir1.2-goa-1.0, gir1.2-soup-2.4, libgdata13 (>= 0.13.3) Conflicts: gir1.0-gdata-0.0 Filename: pool/main/libg/libgdata/gir1.2-gdata-0.0_0.14.1-1_i386.deb Size: 31014 MD5sum: ef20f3ef20a495ccc2a6d32c9821af7f SHA1: ffa244805500ee18cc7cddce218d1ba4eaa4bc78 SHA256: de29bd3df458298b327cfebdd2a46ae92fcec5803b11cccba110cf5725978eb2 Description: GObject introspection data for the GData webservices library Homepage: https://wiki.gnome.org/libgdata Description-md5: f54b7f85ee1176e1236a3584322d2174 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-gdesktopenums-3.0 Priority: optional Section: gnome Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gsettings-desktop-schemas Version: 3.10.1-0ubuntu1 Filename: pool/main/g/gsettings-desktop-schemas/gir1.2-gdesktopenums-3.0_3.10.1-0ubuntu1_i386.deb Size: 8316 MD5sum: a5f8247afe497667ada45c2a765acb68 SHA1: a4e65a05d8406c960ef686adf077faabf16f90ea SHA256: dd1631a2199e44d9b8534ea8f33ada97af10431dae8eb78c5db27053208d6693 Description: GObject introspection for GSettings desktop-wide schemas Homepage: http://www.gnome.org/ Description-md5: 477a4df605ef5075dfb853bde74cb266 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gir1.2-gdkpixbuf-2.0 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Replaces: gir1.0-gtk-2.0 (<< 2.21.3), gir1.2-gtk-2.0 (<< 2.21.3) Depends: gir1.2-glib-2.0, libgdk-pixbuf2.0-0 (>= 2.30.1) Conflicts: gir1.0-gdkpixbuf-2.0 Filename: pool/main/g/gdk-pixbuf/gir1.2-gdkpixbuf-2.0_2.30.7-0ubuntu1_i386.deb Size: 7956 MD5sum: 856c67631edb91bb4f981cd8e6445445 SHA1: b5d6c2dcb11fc8ff99f8047cd274be21143d62df SHA256: 6bd2e89093cc6f9e20a66d546e34e1c44f5acf7357a6405c0efd16a1046620c8 Description: GDK Pixbuf library - GObject-Introspection Homepage: http://www.gtk.org/ Description-md5: 3ea1af7270ed1e5298c960b834579512 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gee-0.8 Priority: optional Section: introspection Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: libgee-0.8 Version: 0.10.5-1ubuntu1 Depends: gir1.2-glib-2.0 Filename: pool/main/libg/libgee-0.8/gir1.2-gee-0.8_0.10.5-1ubuntu1_i386.deb Size: 18436 MD5sum: dcce80238bf817716820d5dd5538cf43 SHA1: 6773d0debf122e64616c87a4e5fa101f2379efa6 SHA256: c173411342988bacaddfd627dfbbb98d2fd2f57f9b9e0bd7daefff6b71377842 Description: GLib Telepathy connection manager library (GObject-Introspection) Homepage: http://live.gnome.org/Libgee Description-md5: 07711b2b9024af5a804714d7a13cd842 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gee-1.0 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: libgee Version: 0.6.8-1ubuntu1 Depends: gir1.2-glib-2.0 Filename: pool/main/libg/libgee/gir1.2-gee-1.0_0.6.8-1ubuntu1_i386.deb Size: 12904 MD5sum: 925eb0fd1d160339411db16c13262a59 SHA1: 803f84a3cd8742ac0c81f29327066112081ccaa7 SHA256: d387110c0439959fd6a924c2a3c37e25f57995273e45bf9be10debc32a1581ec Description: GLib Telepathy connection manager library (GObject-Introspection) Homepage: http://live.gnome.org/Libgee Description-md5: 07711b2b9024af5a804714d7a13cd842 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gexiv2-0.10 Priority: optional Section: introspection Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: i386 Source: gexiv2 Version: 0.10.0-1ubuntu1 Replaces: gir1.2-gexiv2-0.4 Depends: gir1.2-glib-2.0, libgexiv2-2 (>= 0.9.1) Conflicts: gir1.2-gexiv2-0.4 Filename: pool/main/g/gexiv2/gir1.2-gexiv2-0.10_0.10.0-1ubuntu1_i386.deb Size: 6080 MD5sum: f749c05ec496558f85c410b9c3955bc3 SHA1: 55b79a4ed6d3fe9d16634d756f895b6cb9aeff9f SHA256: d55f922b931899444e2cd5b54df899eb164a752c7a67c65dfdd82c95845cba16 Description: GObject-based wrapper around the Exiv2 library - introspection data Multi-Arch: foreign Homepage: https://wiki.gnome.org/Projects/gexiv2 Description-md5: 557460c3f61388f7b58cf71018302220 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gkbd-3.0 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnomekbd Version: 3.6.0-0ubuntu2 Replaces: gir1.2-gnomekbd-3.0 Depends: gir1.2-atk-1.0, gir1.2-freedesktop, gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-pango-1.0, gir1.2-xkl-1.0, libgnomekbd8 (>= 3.0.0.1) Conflicts: gir1.2-gnomekbd-3.0 Filename: pool/main/libg/libgnomekbd/gir1.2-gkbd-3.0_3.6.0-0ubuntu2_i386.deb Size: 6518 MD5sum: c4dce19892928c5c89db2dcb25e3ceb6 SHA1: 1b876b6c210dd5ce822cee2826f1abd7ce6d806b SHA256: 0adda08224f746d65d046aec2d6b3886d047a657ff7b035d3bfff4f782abf482 Description: GObject introspection data for the GnomeKbd library Description-md5: 16f5d54ee1cc6d63963a1713fa8aea2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-gladeui-2.0 Priority: optional Section: libs Installed-Size: 673 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: glade Version: 3.16.1-0ubuntu2 Depends: gir1.2-gtk-3.0, libgladeui-2-6 (>= 3.16.1) Filename: pool/main/g/glade/gir1.2-gladeui-2.0_3.16.1-0ubuntu2_i386.deb Size: 29648 MD5sum: db98a2d4a5e1645d8d3c2d9766ad35bb SHA1: 92042454257280de6bd5700b40299aa7283e0ea0 SHA256: d0819c098c92dec98d189d57312653abcc16ebeb6dc16ec5b192a8764a8e80b8 Description: GObject introspection data for the GTK+ User Interface library Homepage: http://glade.gnome.org/ Description-md5: e7342a083294f60fa73d831c99cad50c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-glib-2.0 Priority: standard Section: libs Installed-Size: 619 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gobject-introspection Version: 1.40.0-1 Depends: libgirepository-1.0-1 (>= 1.35.9), libglib2.0-0 (>= 2.39.91) Conflicts: gir1.0-glib-2.0, gobject-introspection-glib-2.0 Breaks: gnome-shell (<< 3.0.2-6), python-gobject (<< 2.90) Filename: pool/main/g/gobject-introspection/gir1.2-glib-2.0_1.40.0-1_i386.deb Size: 123186 MD5sum: 5b543f25b2d2bbece69339d11ae34782 SHA1: f39665deeffc35e7e53062afbb1f65a330c7173b SHA256: 28eb4b70b037691b86236e1b3acddbc2920dfc9608d50bd0f891b516982dae22 Description: Introspection data for GLib, GObject, Gio and GModule Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: 4a611c6bfb6cf3afde558f13b2ebca03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: gir1.2-gmenu-3.0 Priority: optional Section: libs Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-menus Version: 3.10.1-0ubuntu2 Depends: gir1.2-glib-2.0, libgnome-menu-3-0 (>= 3.6.0) Conflicts: gobject-introspection-repository Filename: pool/main/g/gnome-menus/gir1.2-gmenu-3.0_3.10.1-0ubuntu2_i386.deb Size: 3650 MD5sum: 80e8881e2e13038489284cd79e6a4b4b SHA1: cd705b3aa2f2ab861ad59115139a8b3df14b0494 SHA256: e3eed9e94ccc41b54bb39c0c0bb7079ce48f1fda24e5efc52c8c82eff021d542 Description: GObject introspection data for the GNOME menu library Description-md5: 5d8df3e18602842907166fd6393f2e1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gnomebluetooth-1.0 Priority: optional Section: gnome Installed-Size: 245 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-bluetooth Version: 3.8.2.1-0ubuntu4 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libgnome-bluetooth11 (>= 3.4.0) Breaks: gnome-bluetooth (<< 3.8), gnome-shell (<< 3.4.2-9) Filename: pool/main/g/gnome-bluetooth/gir1.2-gnomebluetooth-1.0_3.8.2.1-0ubuntu4_i386.deb Size: 5528 MD5sum: 098fcc3eafa1814fddbeec829017fd18 SHA1: 3b418a96dcfea4b5bb07d6eb710b589a6baa8e3e SHA256: 2b365a3cea1ac288dc3504196b78a9f484508f1ef99e089c8599117204b2bc94 Description: Introspection data for GnomeBluetooth Homepage: https://wiki.gnome.org/GnomeBluetooth Description-md5: eaf5b6e0a4c10828824d324c8ac01ee5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-gnomedesktop-3.0 Priority: optional Section: gnome Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-desktop3 Version: 3.8.4-0ubuntu3 Depends: gir1.2-gdesktopenums-3.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, libgnome-desktop-3-7 (>= 3.8.2) Breaks: gnome-shell (<< 3.7.90) Filename: pool/main/g/gnome-desktop3/gir1.2-gnomedesktop-3.0_3.8.4-0ubuntu3_i386.deb Size: 8568 MD5sum: ced1c09ad876e23e5c3cbf47784999c6 SHA1: b98b599d4daac0405a60e5dfa1001769efeef1b9 SHA256: 71f223375e8c5e0f9984d17b34e197cbdadca0e5d4c1425306b1d9b90bcbe698 Description: Introspection data for GnomeDesktop Description-md5: 20549ec984ca80b043c2764659dd5041 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gir1.2-gnomekeyring-1.0 Priority: optional Section: introspection Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnome-keyring Version: 3.8.0-2 Depends: libgnome-keyring0 (= 3.8.0-2), gir1.2-glib-2.0 Filename: pool/main/libg/libgnome-keyring/gir1.2-gnomekeyring-1.0_3.8.0-2_i386.deb Size: 5922 MD5sum: 91fe6a325ae9c997db54023f75642012 SHA1: 34da827c77fa1f5982fbab34b79ecfa64efdde32 SHA256: 312c06aed89a0e9a1e4970302e93964167ac44f31f1f710250f65dfd222dbac3 Description: GNOME keyring services library - introspection data Homepage: http://live.gnome.org/GnomeKeyring Description-md5: ddbbb20d38606bc82ef49cdb852ecdc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-goa-1.0 Priority: optional Section: gnome Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Depends: gir1.2-glib-2.0, libgoa-1.0-0b (>= 3.7.91) Filename: pool/main/g/gnome-online-accounts/gir1.2-goa-1.0_3.10.3-0ubuntu1_i386.deb Size: 10234 MD5sum: 16a7363173a9d2805a2c4ad777cee489 SHA1: de3b82a13f58acf202955ce64b302c3926218074 SHA256: 7fa2409a1ec2f93db4d2c6d0ba9c0de5def34cc9cc50c9b79b29298fdc3068c3 Description: Introspection data for GNOME Online Accounts Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 32742d5948429e16ebbc1aef9ea991b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-grip Priority: optional Section: libs Installed-Size: 46 Maintainer: Ubuntu Developers Architecture: i386 Source: libgrip Version: 0.3.7+14.04.20140303-0ubuntu1 Filename: pool/main/libg/libgrip/gir1.2-grip_0.3.7+14.04.20140303-0ubuntu1_i386.deb Size: 5118 MD5sum: 00f3a15ab1099644a317f3ad0eb14ddc SHA1: 2df4cf1d0d2879acf2b711ee38ecc8f61322a9ab SHA256: 1348956b762db0912f9fd3ed01762a43444c8ab050f4b3df86a34122d82aba81 Description: typelib file for libgrip Homepage: https://launchpad.net/libgrip Description-md5: dd972431806ac09582f1df4defb3aa48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gsf-1 Priority: optional Section: introspection Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Smirnov Architecture: i386 Source: libgsf Version: 1.14.27-2ubuntu2 Replaces: gir1.2-libgsf-1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libgsf-1-114 (>= 1.14.27) Conflicts: gir1.2-libgsf-1 Filename: pool/main/libg/libgsf/gir1.2-gsf-1_1.14.27-2ubuntu2_i386.deb Size: 12476 MD5sum: 252d65f654f4052d8abd837b7510691c SHA1: 8d14099164e82400e17a6fd42eae4e81eb0627ef SHA256: 80a0844905ec55e18067230fe95b22ecf90369d1ceb87930d2568e2b6dc25f50 Description: GObject introspection data for the Structured File Library Homepage: http://projects.gnome.org/libgsf/ Description-md5: cafac8e6a223b52243bdc070459447ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gssdp-1.0 Priority: optional Section: libs Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: i386 Source: gssdp Version: 0.14.7-1ubuntu1 Replaces: gir1.0-gssdp-1.0 Depends: gir1.2-glib-2.0, gir1.2-soup-2.4, libgssdp-1.0-3 (>= 0.14.6) Conflicts: gir1.0-gssdp-1.0 Filename: pool/main/g/gssdp/gir1.2-gssdp-1.0_0.14.7-1ubuntu1_i386.deb Size: 3532 MD5sum: f94f9a0f40971adf3bbae85895ce9545 SHA1: 140314062a34189bf31252db1dd10eb4e3c2e277 SHA256: 0016e23c24b14da0ab11813a1914feba3c70061d698518d45690a7e74058ca28 Description: GObject introspection data for the GSSDP library Homepage: http://www.gupnp.org Description-md5: f0adf17be0a5f9da4315bebe6d6f60e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gst-plugins-base-0.10 Priority: optional Section: libs Installed-Size: 299 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Replaces: gir1.0-gst-plugins-base-0.10, gobject-introspection-repository (<< 0.6.5-2), libgstreamer-plugins-base0.10-0 (<< 0.10.25-3) Depends: gir1.2-gstreamer-0.10 Conflicts: gir1.0-gst-plugins-base-0.10 Filename: pool/main/g/gst-plugins-base0.10/gir1.2-gst-plugins-base-0.10_0.10.36-1.1ubuntu2_i386.deb Size: 99248 MD5sum: fb103a1d62d9765a47c0b31755af448c SHA1: 402a62d728f62e7fbaf19d76a3e915cd10ef72b3 SHA256: 366c6b8cc53751fe826797d21f935065cec5ccb783619a6c09ec80790c89d626 Description: Description: GObject introspection data for the GStreamer Plugins Base library Homepage: http://gstreamer.freedesktop.org Description-md5: 1c3b9ff935990198956b8c00dd1b7da8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gst-plugins-base-1.0 Priority: optional Section: introspection Installed-Size: 313 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: gir1.2-glib-2.0, gir1.2-gstreamer-1.0 Filename: pool/main/g/gst-plugins-base1.0/gir1.2-gst-plugins-base-1.0_1.2.3-1_i386.deb Size: 61798 MD5sum: 938c6e5787d7f8b4f0a38044d4b4d233 SHA1: 1dc16450339a923ffe470952196d278b308f9411 SHA256: 2e399921c15f2efb1a24b1d8e4c04087661484ca543de01f3fe78c1696aa8ef2 Description: Description: GObject introspection data for the GStreamer Plugins Base library Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: 1c3b9ff935990198956b8c00dd1b7da8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-gstreamer-0.10 Priority: optional Section: libs Installed-Size: 854 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Replaces: gir1.0-gstreamer-0.10, gobject-introspection-repository (<< 0.6.5-2), libgstreamer0.10-0 (<< 0.10.25-3) Depends: gir1.2-freedesktop, gir1.2-glib-2.0 Conflicts: gir1.0-gstreamer-0.10 Filename: pool/main/g/gstreamer0.10/gir1.2-gstreamer-0.10_0.10.36-1.2ubuntu3_i386.deb Size: 96664 MD5sum: d69b29f8babdb98691c3b0d5499d893c SHA1: c9fb19e71e79ea7f84bd0bd165df47b9f36093f9 SHA256: a1dd7b5536e210071921f4c58658b594dbc58fcfdd495773173be922cecbc5c8 Description: Description: GObject introspection data for the GStreamer library Homepage: http://gstreamer.freedesktop.org Description-md5: 77a6d9cb5ff0c6e1dc81858155a05394 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gstreamer-1.0 Priority: optional Section: introspection Installed-Size: 1060 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gstreamer1.0 Version: 1.2.3-1 Depends: gir1.2-glib-2.0 Filename: pool/main/g/gstreamer1.0/gir1.2-gstreamer-1.0_1.2.3-1_i386.deb Size: 65554 MD5sum: 2dced00133ae7c700dfb4263a588f051 SHA1: b5b1954addfdf111c11baa9144a4823d674ec2d1 SHA256: ad82575d4f390848c7434b79df20983dad4cedf972176390db7e28f1e905f0a1 Description: Description: GObject introspection data for the GStreamer library Homepage: http://gstreamer.freedesktop.org Description-md5: 77a6d9cb5ff0c6e1dc81858155a05394 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gtk-2.0 Priority: optional Section: libs Installed-Size: 1355 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Replaces: gir1.0-gtk-2.0 Depends: libgtk2.0-common, gir1.2-atk-1.0, gir1.2-freedesktop, gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-pango-1.0, libgtk2.0-0 (>= 2.24.0) Conflicts: gir1.0-gtk-2.0, gobject-introspection-repository Filename: pool/main/g/gtk+2.0/gir1.2-gtk-2.0_2.24.23-0ubuntu1_i386.deb Size: 171394 MD5sum: 549cc5378dc373a7f9b1115d50587e62 SHA1: 1da33a6eae037924f4efd2ba3e67ee1eac59b783 SHA256: 030bdfe97cd0cf59ffd8c54322c2ef70291b07635c77d422ee65d671bb94238e Description: GTK+ graphical user interface library -- gir bindings Homepage: http://www.gtk.org/ Description-md5: f16f9e8db01aaaf8ce43a52cf10f4f37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gtk-3.0 Priority: optional Section: libs Installed-Size: 932 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libgtk-3-common, gir1.2-atk-1.0, gir1.2-freedesktop, gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-pango-1.0, libgtk-3-0 (>= 3.10.0) Filename: pool/main/g/gtk+3.0/gir1.2-gtk-3.0_3.10.8-0ubuntu1_i386.deb Size: 173932 MD5sum: 7f266d948f2b83b2f453c5cf07d677e8 SHA1: b200ab05055bb2bd3feff492ee87b23dd9a615f2 SHA256: 4cf2929bf8fcb0c82f9c836c8e6718a0f7a4535e47308146d0fcd23e484c7f5d Description: GTK+ graphical user interface library -- gir bindings Homepage: http://www.gtk.org/ Description-md5: f16f9e8db01aaaf8ce43a52cf10f4f37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gtk-vnc-2.0 Priority: optional Section: libs Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Provides: gir1.2-gvnc-1.0 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libgtk-vnc-2.0-0 (>= 0.5.2), libgvnc-1.0-0 (>= 0.5.3) Filename: pool/main/g/gtk-vnc/gir1.2-gtk-vnc-2.0_0.5.3-0ubuntu2_i386.deb Size: 9674 MD5sum: f4b150287b820a244ca1f0cf974af450 SHA1: 6cd52b1ddd7a45548de34536cf0bedc7f6620721 SHA256: b5332bc8924e501907ec0985f2c69ec88b1a42d043ef385ae068f15bafc5f153 Description: GObject introspection data for GTK-VNC. Description-md5: bb391bfc3998f15e87f20fe7e89e3883 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gtkclutter-1.0 Priority: optional Section: libs Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-gtk Version: 1.4.4-3ubuntu2 Replaces: gir1.0-clutter-gtk-1.0 Depends: gir1.2-clutter-1.0, gir1.2-gtk-3.0, libclutter-gtk-1.0-0 (>= 1.3.2) Conflicts: gir1.0-clutter-gtk-1.0 Filename: pool/main/c/clutter-gtk/gir1.2-gtkclutter-1.0_1.4.4-3ubuntu2_i386.deb Size: 3370 MD5sum: 31b26af7c1e9d0554e828af2b9437a67 SHA1: 607e6dce51e45f5782d14c31d6f0d10c66d7c19c SHA256: a835dbef111629789499c10e1e4db4fee6d84a2261cc5a399b85d3c523818956 Description: GObject introspection data for the GTK+ Clutter library Homepage: http://www.clutter-project.org/ Description-md5: bd3cdd6b014da3b5e717a64bade54654 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-gtksource-3.0 Priority: optional Section: libs Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtksourceview3 Version: 3.10.2-0ubuntu1 Depends: gir1.2-gtk-3.0, libgtksourceview-3.0-1 (>= 3.10.0) Filename: pool/main/g/gtksourceview3/gir1.2-gtksource-3.0_3.10.2-0ubuntu1_i386.deb Size: 13884 MD5sum: f1a9362c28ea00912f1e572f8526729d SHA1: cce9089bb5bd6aafb3d2b0afbf322b08aaec319d SHA256: f24f78319eb901f768f98d728c2127aaeb487aa9d1fe93fffeae10ae3fcb64a2 Description: gir files for the GTK+ syntax highlighting widget Homepage: http://projects.gnome.org/gtksourceview/ Description-md5: cbb588ad5836e297ad1d488393c56be7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gtkspell3-3.0 Priority: optional Section: introspection Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtkspell3 Version: 3.0.4-1 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libgtkspell3-3-0 (>= 3.0.3) Filename: pool/main/g/gtkspell3/gir1.2-gtkspell3-3.0_3.0.4-1_i386.deb Size: 2934 MD5sum: b7d8ba7eb7296a02dc14751898bc250f SHA1: 56f6ae5a706ddc2115c371eacba4cd736a0d98c1 SHA256: c0e6dcd498d2e1ec928f53825f0b06bebedded24ba0b51c4f50dfd8c08df47e3 Description: GObject introspection data for the GtkSpell library Homepage: http://gtkspell.sourceforge.net/ Description-md5: 794a4b720b7e0b743b6bef5e77f3ca22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gtop-2.0 Priority: optional Section: libdevel Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgtop2 Version: 2.28.5-2 Depends: gir1.2-glib-2.0, libgtop2-7 (>= 2.24.0) Filename: pool/main/libg/libgtop2/gir1.2-gtop-2.0_2.28.5-2_i386.deb Size: 11994 MD5sum: 9ea379f526e81686411a8195997c9c01 SHA1: 3fe5870c76355d3f8eae24545a6e48d8fe183ec2 SHA256: 1daeb6e684b89e4ee8d1fd007719f1d215b4bf2c69c2e8617e90394761563f40 Description: gtop system monitoring library (gir bindings) Description-md5: 2645cb471358326290ce77b54b63dac8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-gucharmap-2.90 Priority: optional Section: libs Installed-Size: 281 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gucharmap Version: 1:3.10.1-0ubuntu2 Depends: gir1.2-gtk-3.0, gir1.2-pango-1.0, libgucharmap-2-90-7 (>= 1:3.4.0.1) Filename: pool/main/g/gucharmap/gir1.2-gucharmap-2.90_3.10.1-0ubuntu2_i386.deb Size: 6942 MD5sum: 0687099c3f9003d9a709ce712b0580bb SHA1: 1878aee04f15ade04d8f0e2c02f18c051acba9ea SHA256: 956f633d95fb7c5c66380e0cd2cd004e5ffbee333b8302a61ec064ce03e0e140 Description: GObject introspection data for the Unicode browser widget library Homepage: https://wiki.gnome.org/Gucharmap Description-md5: d5fe6cccb59d33ea7708000a049fedf5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gudev-1.0 Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd (204-5ubuntu20) Version: 1:204-5ubuntu20 Depends: gir1.2-glib-2.0, libgudev-1.0-0 (>= 165) Filename: pool/main/s/systemd/gir1.2-gudev-1.0_204-5ubuntu20_i386.deb Size: 5494 MD5sum: 9df20d891c1b1bdde44792d3e54c68f6 SHA1: 7beb9435ce5ab21daca5c2ca746a8fdcdd5c0bea SHA256: 7cd3a30740be8e41366d7cdf15667be66b444cbc3d5b33bee3b11afecdd14132 Description: libgudev-1.0 introspection data Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 17b4f1d7865f064cde612f6abf30b636 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-gupnp-1.0 Priority: optional Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: i386 Source: gupnp Version: 0.20.10-1ubuntu1 Replaces: gir1.0-gupnp-1.0 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, gir1.2-gssdp-1.0, gir1.2-soup-2.4, libgupnp-1.0-4 (>= 0.20.9) Conflicts: gir1.0-gupnp-1.0 Filename: pool/main/g/gupnp/gir1.2-gupnp-1.0_0.20.10-1ubuntu1_i386.deb Size: 8194 MD5sum: fd80348624528b62ca02a0fa77c5b71a SHA1: cc9c52ad271be5123b2d8a57bd56f15f5d9a1036 SHA256: c8a885601498ca4d6ee4cf97d7e6d46a512414af8e641264b86457e909accf6e Description: GObject introspection data for the GUPnP library Homepage: http://live.gnome.org/GObjectIntrospection Description-md5: 6a38bcbf4d96abcee783c7db0dbffa8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gupnpigd-1.0 Priority: optional Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: i386 Source: gupnp-igd Version: 0.2.2-1 Depends: gir1.2-glib-2.0, libgupnp-igd-1.0-4 (>= 0.2.1) Filename: pool/main/g/gupnp-igd/gir1.2-gupnpigd-1.0_0.2.2-1_i386.deb Size: 3016 MD5sum: c962b7419e63ae6cc945a3a044ede7c1 SHA1: 38f579a658b49f1c58be7c8c2807e23e1652e9bd SHA256: 1acb8778f95d09652cb21a5aac25d2d2fc16c304c8db72ad815977611d402ac7 Description: GObject introspection data for the GUPnP IGD library Homepage: http://live.gnome.org/GObjectIntrospection Description-md5: 81f4ea8b350871b0d020a0e2ca6ee32a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gusb-1.0 Priority: extra Section: introspection Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: libgusb Version: 0.1.6-5 Depends: gir1.2-glib-2.0, libgusb2 (>= 0.1.5) Filename: pool/main/libg/libgusb/gir1.2-gusb-1.0_0.1.6-5_i386.deb Size: 4384 MD5sum: 1ad213ed5dfcf00a80d529c4d94d5c33 SHA1: e42ae075b3629927bf6eec5adc74fe1ac940681a SHA256: 5caf24098bbda3b3b576d1bd211742df395ab2d2f9a88b3cede443cf6778d628 Description: GObject introspection data for libgusb Homepage: http://www.hughski.com/downloads.html Description-md5: 31e266d00de17dd940874fd90941064f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gweather-3.0 Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgweather Version: 3.10.2-0ubuntu1 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libgweather-3-6 (>= 3.10.0) Filename: pool/main/libg/libgweather/gir1.2-gweather-3.0_3.10.2-0ubuntu1_i386.deb Size: 6580 MD5sum: eb97bf236aafb8413b3c89c703ba9d8a SHA1: 100ddcab548567876f01a74fd458cab0174bed2d SHA256: 7e0bc8cc7dfc80db9eda024f6820f332cf13a6c7c27d865020c2fdb025abaac3 Description: GObject introspection data for the GWeather library Description-md5: 638795aed97665a2afa63aa4e60c5689 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-gxps-0.1 Priority: optional Section: introspection Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Savvas Radevic Architecture: i386 Source: libgxps Version: 0.2.2-2ubuntu2 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libgxps2 (>= 0.2.1) Filename: pool/main/libg/libgxps/gir1.2-gxps-0.1_0.2.2-2ubuntu2_i386.deb Size: 4032 MD5sum: debe768d6a353a24c3a2ad94b0c5b3a0 SHA1: f8e3ef10311f0304d08579ada027e9e57303bae1 SHA256: cd51335304629e3cc60ce409aa77de98e125fb0bf0edd0d499384168d63f689d Description: GObject introspection data for the gxps library Homepage: https://live.gnome.org/libgxps Description-md5: 9bace9af2707d467de2eeed8db04f4b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-harfbuzz-0.0 Priority: optional Section: introspection Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: i386 Source: harfbuzz Version: 0.9.27-1 Depends: gir1.2-glib-2.0, libharfbuzz0b (>= 0.9.22) Filename: pool/main/h/harfbuzz/gir1.2-harfbuzz-0.0_0.9.27-1_i386.deb Size: 13922 MD5sum: 626c236b6069a3e4ebc28d562027f244 SHA1: 79cef7ca5e661bf60a56c2fbc8aa5c5e26b54d66 SHA256: 07051a461ac296ae2a6f27697bea382e18e2c164eea0870be0c63c3faba834b0 Description: OpenType text shaping engine (GObject introspection data) Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: 73d49920d5dd518c9cf268c2ffa20d38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-hud-2 Priority: optional Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Architecture: i386 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud2 (= 13.10.1+14.04.20140402-0ubuntu1) Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/gir1.2-hud-2_13.10.1+14.04.20140402-0ubuntu1_i386.deb Size: 2870 MD5sum: 48a96a57d8e1c0590e35e86a315b35ca SHA1: b805adc525a97995e4c1998a9c08c2f663f19768 SHA256: af4f35efda9ac70ee52b0de5cebf4e1fa21b1dad1fe66dedec35e0ec4ba5d9c0 Description: typelib file for libhud2 Homepage: http://launchpad.net/hud Description-md5: 132e2d7534ebba5bd9dd3565bfef0fb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-hud-client-2 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Architecture: i386 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud-client2 (= 13.10.1+14.04.20140402-0ubuntu1) Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/gir1.2-hud-client-2_13.10.1+14.04.20140402-0ubuntu1_i386.deb Size: 3694 MD5sum: 597574429ad3c161566635b1279189f7 SHA1: 78df45342cc60ef987d12ad298fec70ba5c395c7 SHA256: 5d8dca1569e2a7443e6158ab7cebf6a06964d8bda1a2d3e2d892b42b67c59da4 Description: typelib file for libhud-client-2 Homepage: http://launchpad.net/hud Description-md5: e3ebed3ce56a206c3d4e01263fac4f0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-ibus-1.0 Priority: optional Section: introspection Installed-Size: 341 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: ibus Version: 1.5.5-1ubuntu3 Depends: gir1.2-glib-2.0, libibus-1.0-5 (>= 1.5.5) Filename: pool/main/i/ibus/gir1.2-ibus-1.0_1.5.5-1ubuntu3_i386.deb Size: 61970 MD5sum: d94a188ead7da7ad9d186069bf3c5003 SHA1: 6e26b55eaf9498bca558dfba811514710c38ed2b SHA256: 4201523f504728f7e2d31505825cb0c434e4086745d5f007216b7d608cd0bcb3 Description: Intelligent Input Bus - introspection data Homepage: http://code.google.com/p/ibus/ Description-md5: c39b02e52edca9051d32a1b84aa1381f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: gir1.2-ido3-0.1 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Architecture: i386 Source: ido Version: 13.10.0+14.04.20140407-0ubuntu1 Depends: libido3-0.1-0 (>= 13.10.0+14.04.20140407-0ubuntu1) Filename: pool/main/i/ido/gir1.2-ido3-0.1_13.10.0+14.04.20140407-0ubuntu1_i386.deb Size: 4652 MD5sum: 24e0d4bef19012ffad1987e996f9ad05 SHA1: 33eaaedf442b8da1a83a25b11944518921b09854 SHA256: bc2577772a82bb43f4c46bba0b46b19402da1e020201f93351e1f0545290e619 Description: Typelib file for libido3-0.1 Homepage: https://launchpad.net/ido Description-md5: bb7f368e7bdb21f88c804bac9be64243 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-javascriptcoregtk-1.0 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: gir1.2-webkit-1.0 (<< 1.5.0) Conflicts: gir1.0-webkit-1.0, gir1.2-webkit-1.0 (<< 1.5.0), gobject-introspection-repository Filename: pool/main/w/webkitgtk/gir1.2-javascriptcoregtk-1.0_2.4.0-1ubuntu2_i386.deb Size: 11964 MD5sum: 6e62025ba070574be35dfb1e1e7f04a5 SHA1: 2042fbf763d36c92316b04a8603ce57de299616e SHA256: d439b67b607f754022da70895ccd6a0b8e747ef7f2c81ba9b857675cddfa142e Description: JavaScript engine library from WebKitGTK+ - GObject introspection data Homepage: http://webkitgtk.org/ Description-md5: 9d556f63f3921052c006631a1b066bec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-javascriptcoregtk-3.0 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: gir1.2-webkit-3.0 (<< 1.5.0) Conflicts: gir1.0-webkit-3.0, gir1.2-webkit-3.0 (<< 1.5.0), gobject-introspection-repository Filename: pool/main/w/webkitgtk/gir1.2-javascriptcoregtk-3.0_2.4.0-1ubuntu2_i386.deb Size: 11958 MD5sum: 55e3f191ec13476bd1bc47b6a52f46ac SHA1: 2f3c6a7e668af04df3ccc17d334a75f04f0b5202 SHA256: ba97a42e7d1d4df59100f8e9fbe9501e41cf904060d386c85c1c5312a0aa8f85 Description: JavaScript engine library from WebKitGTK+ - GObject introspection data Homepage: http://webkitgtk.org/ Description-md5: 21bf00274d5ad6876078c2b697e5743c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-json-1.0 Priority: optional Section: libs Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: json-glib Version: 0.16.2-1ubuntu1 Replaces: gir1.0-json-glib-1.0, gir1.2-json-glib-1.0 Depends: gir1.2-glib-2.0 (>= 0.9.12), libjson-glib-1.0-0 (>= 0.16.0) Conflicts: gir1.0-json-glib-1.0, gir1.2-json-glib-1.0 Filename: pool/main/j/json-glib/gir1.2-json-1.0_0.16.2-1ubuntu1_i386.deb Size: 7316 MD5sum: 722f27a0bc855634189603536969cc52 SHA1: 7e179335c525ccf31a7d77bf6789aab19ff8678b SHA256: c7c0b8cd31b24637498a06e94965f870f3eeb185b0864b78761b8f7760917635 Description: GLib JSON manipulation library (introspection data) Homepage: https://wiki.gnome.org/JsonGlib Description-md5: 0f85fea1ebe80dc12ff040a9de582288 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-video, ubuntu-gnome-desktop Package: gir1.2-langtag-0.5 Priority: optional Section: introspection Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: liblangtag Version: 0.5.1-2 Depends: gir1.2-glib-2.0 Filename: pool/main/libl/liblangtag/gir1.2-langtag-0.5_0.5.1-2_i386.deb Size: 7726 MD5sum: a39e2c158abcb98ba5a4ef05cfb497d5 SHA1: 7728a8d94e7326ef3ae232e533cda32afb0a95f1 SHA256: 708412981d377648e5c2bf3f08d19b504af74744bb19452f133e2f8e218aeb33 Description: library to access tags for identifying languages - introspection Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: 5d8c04c5e4b0ea4b511a18580aa04fe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-lightdm-1 Priority: optional Section: libs Installed-Size: 68 Maintainer: Robert Ancell Architecture: i386 Source: lightdm Version: 1.10.0-0ubuntu3 Depends: liblightdm-gobject-1-0 (= 1.10.0-0ubuntu3) Filename: pool/main/l/lightdm/gir1.2-lightdm-1_1.10.0-0ubuntu3_i386.deb Size: 4794 MD5sum: eaa45f78b18e21eaea42afb497df8bcb SHA1: b2783b414720d045552078aaa62580277c1b4ffe SHA256: 89bd4580b625bfdd330edfad21bb3528839a1a18ae991100eb25583cc1c286df Description: Typelib file for liblightdm-1 Homepage: https://launchpad.net/lightdm Description-md5: 15edc3a87b41d0dccba5699c5b28aa73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-messagingmenu-1.0 Priority: optional Section: libs Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: indicator-messages Version: 13.10.1+14.04.20140410-0ubuntu1 Depends: gir1.2-glib-2.0, libmessaging-menu0 (>= 13.10.1+13.10.20130820) Filename: pool/main/i/indicator-messages/gir1.2-messagingmenu-1.0_13.10.1+14.04.20140410-0ubuntu1_i386.deb Size: 2918 MD5sum: 80e9253e598c7ce0c372029ccc6b2c1e SHA1: e177c06cd7e783955fdc8be66eb98b02bce82616 SHA256: 133c40e710e6da308cad5abf0b6e028bc18d61790a0184fd295edba38a0cba22 Description: Messaging Menu - gir bindings Homepage: https://launchpad.net/indicator-messages Description-md5: c3332a75a05dc3da9846ebba71002ac1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-mx-1.0 Priority: optional Section: libs Installed-Size: 436 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: mx Version: 1.4.7-0ubuntu3 Depends: gir1.2-clutter-1.0, gir1.2-glib-2.0, gir1.2-gtk-2.0, libmx-1.0-2 (>= 1.4.1) Filename: pool/main/m/mx/gir1.2-mx-1.0_1.4.7-0ubuntu3_i386.deb Size: 22074 MD5sum: 8d7decb2435300821ae7bfd30450ada7 SHA1: e31f273ebf31a9e88cb7e7c8a4f44bb77b474189 SHA256: b79700105158a56ecc76354f8456f43181a3748733bfd78c8d852ed81536eb78 Description: GObject introspection data for the libmx library Homepage: http://www.clutter-project.org/ Description-md5: be97dd01cfceb8e3c4baee39f2bbb9ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-nautilus-3.0 Priority: optional Section: libdevel Installed-Size: 114 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: nautilus Version: 1:3.10.1-0ubuntu8 Replaces: gir1.0-nautilus-3.0 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libnautilus-extension1a (>= 1:2.91) Conflicts: gir1.0-nautilus-3.0 Filename: pool/main/n/nautilus/gir1.2-nautilus-3.0_3.10.1-0ubuntu8_i386.deb Size: 5424 MD5sum: ef5f3322c6148823e92c05086f7c7008 SHA1: 116e3f83e5ee55736aa4afa7666d4b9cd29e8b97 SHA256: 0176c9664143f0c64f3d0da4a350d0be0a51f8d3120322071fd14c2247a70627 Description: libraries for nautilus components - gir bindings Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: c96feb0c498fde4a37f1e7aa9514778c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-networkmanager-1.0 Priority: optional Section: libs Installed-Size: 260 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libnm-glib4 (>= 0.9.8.4), libnm-util2 (>= 0.9.8.0) Filename: pool/main/n/network-manager/gir1.2-networkmanager-1.0_0.9.8.8-0ubuntu7_i386.deb Size: 35396 MD5sum: ac4c0ce8cc1c7e92c0d94761c60e15e2 SHA1: 813ab72ca1e379687057751f4ef3a71f5e35ab55 SHA256: a8a69a9f61444f696514e03943161b042d0a5b4f688e99fe6b96549836083958 Description: GObject introspection data for NetworkManager Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 1a7cb995cf66551c57433bbaf46aee25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-nmgtk-1.0 Priority: optional Section: libs Installed-Size: 71 Maintainer: Ubuntu Core Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager-applet Version: 0.9.8.8-0ubuntu4 Depends: gir1.2-gtk-3.0, gir1.2-networkmanager-1.0, libnm-gtk0 (>= 0.9.7.997) Filename: pool/main/n/network-manager-applet/gir1.2-nmgtk-1.0_0.9.8.8-0ubuntu4_i386.deb Size: 4242 MD5sum: feb1aa0760cbc05b0f7bc60b2940032b SHA1: d442583256a1533d417717e249a23562417717a9 SHA256: 8a8c1bdd5082de5b95bfb5343cc6100dc8e1d1638da62d1d459a10dc467e0231 Description: GObject introspection data for libnm-gtk Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: a6a3920bae0459439a680159bc6ba236 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-notify-0.7 Priority: optional Section: libs Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libnotify Version: 0.7.6-1ubuntu3 Depends: gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, libnotify4 (>= 0.7.3) Filename: pool/main/libn/libnotify/gir1.2-notify-0.7_0.7.6-1ubuntu3_i386.deb Size: 3466 MD5sum: 2b6a43ac3cba33a877f4897644647e54 SHA1: 519ca06de6e6ead9167b99982dff3f251a6f0164 SHA256: 77f183a1f1d772b46080c53296a03265528969dd1f8ca44272724f050c17af53 Description: sends desktop notifications to a notification daemon (Introspection files) Description-md5: be88d1ababa905c3de028ca3c2dba65c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-packagekitglib-1.0 Priority: optional Section: libs Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: i386 Source: packagekit Version: 0.8.12-1ubuntu5 Depends: gir1.2-glib-2.0 (>= 0.10.1), libpackagekit-glib2-16 (>= 0.8.12) Filename: pool/main/p/packagekit/gir1.2-packagekitglib-1.0_0.8.12-1ubuntu5_i386.deb Size: 27636 MD5sum: 2379853352e9847d9876b27b4f152249 SHA1: 68d8c8f9a6f43689aecfd8edb7c51fd1bad7516a SHA256: 3a50cf5d073aef74734c8c593aa0313d99fc6d4f2943026fba8dc16d74039369 Description: GObject introspection data for the PackageKit GLib library Homepage: http://www.packagekit.org Description-md5: 58dad6540a9f05da7569c62ae80d0533 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-pango-1.0 Priority: optional Section: libs Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: gir1.0-gtk-2.0 (<< 2.22), gir1.0-pango-1.0, gobject-introspection-repository Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libpango-1.0-0 (>= 1.36.0), libpangocairo-1.0-0 (>= 1.22.0), libpangoft2-1.0-0 (>= 1.14.0), libpangoxft-1.0-0 (>= 1.14.0) Conflicts: gir1.0-pango-1.0 Filename: pool/main/p/pango1.0/gir1.2-pango-1.0_1.36.3-1ubuntu1_i386.deb Size: 19090 MD5sum: d6c6951f54d8421b603a1db6f7178b11 SHA1: 71e70549c2d9f7a2a50aefe340170dc5e90ad3c2 SHA256: df5878a3773d9129da192f39f41ee191f743603338c869223b3948396f4baccc Description: Layout and rendering of internationalized text - gir bindings Description-md5: f177c55f2e19760894bc8f51c468361c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-peas-1.0 Priority: extra Section: libs Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libpeas Version: 1.8.1-2ubuntu2 Replaces: gir1.0-libpeas-1.0, gir1.0-peas-1.0 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, libpeas-1.0-0 (>= 1.6.2) Conflicts: gir1.0-libpeas-1.0, gir1.0-peas-1.0 Filename: pool/main/libp/libpeas/gir1.2-peas-1.0_1.8.1-2ubuntu2_i386.deb Size: 5552 MD5sum: 1379cf5dc90adcccfddb30592fbc9e46 SHA1: 172bdebc2ccccbbc94b2c23b1f8bbaa44c6735e1 SHA256: 10fafb1e3269f6f702f23b3c97868c23852e346b7b01ecf410a75c5079d65076 Description: Application plugin library (introspection files) Homepage: https://wiki.gnome.org/Libpeas Description-md5: 39453a6e0ce93895a424e482b96aa4d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-polkit-1.0 Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: gir1.2-glib-2.0, libpolkit-agent-1-0 (>= 0.105), libpolkit-gobject-1-0 (>= 0.105) Filename: pool/main/p/policykit-1/gir1.2-polkit-1.0_0.105-4ubuntu2_i386.deb Size: 7144 MD5sum: 014801976fc95470df441cb3bcccd232 SHA1: 2a97dbbb7ce8e808c32e3f14c7a09031c7f902d8 SHA256: c7616e35478abc6ebf7cd44917c3159fb93a07c1f311780ee40b01265ebcad02 Description: GObject introspection data for PolicyKit Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 4f1754998d1990ea4af7a70d3a9b9278 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-poppler-0.18 Priority: optional Section: introspection Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, libpoppler-glib8 (>= 0.22.1) Filename: pool/main/p/poppler/gir1.2-poppler-0.18_0.24.5-2ubuntu4_i386.deb Size: 13780 MD5sum: c51093fa4bc7c0b218db6a2238bd94bf SHA1: 3ee5f00a4a130e897c253a36170175b14634b125 SHA256: 0f8459e79c96efe890b502b53790192c4c65bffca1e415620afdb0d837b027cf Description: GObject introspection data for poppler-glib Homepage: http://poppler.freedesktop.org/ Description-md5: 6b6381807b3c5b1b31f06935b5817c74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-rb-3.0 Priority: optional Section: libs Installed-Size: 581 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: rhythmbox Version: 3.0.2-0ubuntu1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, gir1.2-gst-plugins-base-1.0, gir1.2-gstreamer-1.0, gir1.2-gtk-3.0, librhythmbox-core8 (>= 3.0.2) Filename: pool/main/r/rhythmbox/gir1.2-rb-3.0_3.0.2-0ubuntu1_i386.deb Size: 37558 MD5sum: 6065be97b9667f0ffa98a2c92de2f781 SHA1: a28f9ab55e7631c28418825d4252f45e1f2fa433 SHA256: 446902a4d12d8b0bda228ce8c390f85fb091b9bacb99b99d7c6a0206b2713c7e Description: GObject introspection data for the rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 43faa5bf87ed9c2f0ca8769fadf80dd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-rest-0.7 Priority: optional Section: libs Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: librest Version: 0.7.90-0ubuntu1 Depends: gir1.2-glib-2.0, librest-0.7-0 (>= 0.7.90) Filename: pool/main/libr/librest/gir1.2-rest-0.7_0.7.90-0ubuntu1_i386.deb Size: 8446 MD5sum: 73d593bf7536d21188d1bc90c23567f7 SHA1: 59f6995b089df024723a428e3e35b08df6c8f465 SHA256: 4e797afeeefa149909c88134d635f86b5ad5587564d50f77a364fce7e526cdbe Description: REST service access library (introspection files) Homepage: http://www.gnome.org/ Description-md5: 20603212d512dbb9aa6548318a9e63da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-rest-extras-0.7 Priority: optional Section: libs Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: librest Version: 0.7.90-0ubuntu1 Depends: gir1.2-freedesktop, gir1.2-glib-2.0, gir1.2-rest-0.7 (= 0.7.90-0ubuntu1), librest-extras-0.7-0 Filename: pool/main/libr/librest/gir1.2-rest-extras-0.7_0.7.90-0ubuntu1_i386.deb Size: 4640 MD5sum: 8f2517d0e0ab22adeec4ee187431a412 SHA1: 178f73c3ebc4aab43d7c9dc3cdc716f2f0bff1ca SHA256: 927d0776fef13473e082c57563d7b8cae15f82a88138ece17d3a7f2c0cafb097 Description: REST service access library extra components (introspectionfiles) Homepage: http://www.gnome.org/ Description-md5: db3563d5908b29a3c9b980deadfc403a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-rsvg-2.0 Priority: optional Section: libs Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: librsvg Version: 2.40.2-1 Depends: gir1.2-freedesktop, gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, librsvg2-2 (>= 2.35.2) Filename: pool/main/libr/librsvg/gir1.2-rsvg-2.0_2.40.2-1_i386.deb Size: 3558 MD5sum: 8878c75b09d47e69b149cc718a470730 SHA1: 7260c9f75cb864a520f76442b9860fba1a08e3c5 SHA256: 0a8e02e6389d8f82069860341f6264e35e7915d92315d9b1e9448f4fd8a5b34c Description: gir files for renderer library for SVG files Homepage: http://live.gnome.org/LibRsvg Description-md5: a992477456c546e734bee1939289530a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-secret-1 Priority: optional Section: introspection Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libsecret Version: 0.16-0ubuntu1 Depends: gir1.2-glib-2.0, libsecret-1-0 (>= 0.16) Filename: pool/main/libs/libsecret/gir1.2-secret-1_0.16-0ubuntu1_i386.deb Size: 7982 MD5sum: 0012c28956ec630ae8c983e3ef3bcdf0 SHA1: 99f927882523fd2c408ca7e172b36b0eb7821405 SHA256: ba952b3a0139306aa1bbe2c4eb7e59135c068832fab8227da325845fae7bd75e Description: Secret store (GObject-Introspection) Homepage: https://live.gnome.org/Libsecret Description-md5: 282aebbdbea3a39223d0f976ec4df8d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gir1.2-signon-1.0 Priority: optional Section: libs Installed-Size: 81 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libsignon-glib Version: 1.10daily13.06.25-0ubuntu2 Depends: libsignon-glib1 (= 1.10daily13.06.25-0ubuntu2) Filename: pool/main/libs/libsignon-glib/gir1.2-signon-1.0_1.10daily13.06.25-0ubuntu2_i386.deb Size: 5352 MD5sum: e0923570f3bdc55b3313b4dc7404a0b4 SHA1: cd6bb97f60ba7b56949e1bdfc0f4af5b7f4d705a SHA256: 296c4367b3a189d99c894b1c7fbf3b1b481b6b9c0c1b15e3ac17551504d4df6e Description: GObject introspection data for the Signon library Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 4c90684f152719c7772c481917663d90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gir1.2-soup-2.4 Priority: optional Section: libs Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Provides: gir1.2-soup-gnome-2.4 Depends: gir1.2-glib-2.0, libsoup-gnome2.4-1 (>= 2.27.4), libsoup2.4-1 (>= 2.44.0) Conflicts: gir1.0-soup-2.4, gir1.0-soup-gnome-2.4 Filename: pool/main/libs/libsoup2.4/gir1.2-soup-2.4_2.44.2-1ubuntu2_i386.deb Size: 22434 MD5sum: 2e58e1a0b13588577aa2ff55e24e3320 SHA1: b0d9f718c2aa1e87bd7a80c6cb5cd0aec7a5956d SHA256: f740a921b27c348e23811ceaaf6d7f5cb1dddd644598ddab0e80723b72d5b5ea Description: GObject introspection data for the libsoup HTTP library Description-md5: 538da50445bc19b8ea14ae946fa95a44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-telepathyglib-0.12 Priority: optional Section: libs Installed-Size: 264 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-glib Version: 0.22.1-1ubuntu2 Replaces: gir1.0-telepathyglib-0.12 Depends: gir1.2-glib-2.0, libtelepathy-glib0 (>= 0.21.2) Conflicts: gir1.0-telepathyglib-0.12 Filename: pool/main/t/telepathy-glib/gir1.2-telepathyglib-0.12_0.22.1-1ubuntu2_i386.deb Size: 48366 MD5sum: 65c21587316c513ee23653fdf38741b0 SHA1: 55a71a1f6ba55207e224bb9ba9967ccb829c8b54 SHA256: b3760b08ed9cd2539733acf4e0d017968db54da946d1cda735ceb5f365f0c868 Description: GLib Telepathy connection manager library (GObject-Introspection) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 79b134317a8965965a687e169f21caea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-telepathylogger-0.2 Priority: optional Section: libs Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-logger Version: 0.8.0-3 Depends: gir1.2-glib-2.0, gir1.2-telepathyglib-0.12, libtelepathy-logger3 (>= 0.8.0) Filename: pool/main/t/telepathy-logger/gir1.2-telepathylogger-0.2_0.8.0-3_i386.deb Size: 4418 MD5sum: c6cc95724cd811407eddf294c1103653 SHA1: d99de71dae880f38fc67fbb2e6cd9bbab0652eb2 SHA256: 6a73b2881b5b88dfdb9e86ccf5c70b68a5965f8be159a21343d44fc0745ee512 Description: Telepathy logger service - introspection Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 9d322246efc6be61a33d36f696cd71ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-timezonemap-1.0 Priority: optional Section: libs Installed-Size: 38 Maintainer: Ubuntu Developers Architecture: i386 Source: libtimezonemap Version: 0.4.1 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-json-1.0, libtimezonemap1 (>= 0.4.1) Filename: pool/main/libt/libtimezonemap/gir1.2-timezonemap-1.0_0.4.1_i386.deb Size: 2634 MD5sum: 3347fdbce00ecc0d241724807337cf99 SHA1: 498c5ac485f552f6f3b0499b5f715429c38ed69e SHA256: f1cd0a0fcbea2a998cf65261e5fd050f410b7144bb6bd1bb8d7794fb1634bbda Description: typelib interface for libtimezonemap Description-md5: 231074d1b59567e384d19c2c4a8351dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: gir1.2-totem-1.0 Priority: optional Section: libs Installed-Size: 320 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: totem Version: 3.10.1-1ubuntu4 Depends: gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-totem-plparser-1.0, libtotem0 (<< 3.11), libtotem0 (>= 3.10.1-1ubuntu4) Filename: pool/main/t/totem/gir1.2-totem-1.0_3.10.1-1ubuntu4_i386.deb Size: 5670 MD5sum: e7896e3465112096ed9e4e04cd234286 SHA1: a95d069fab301012c47ea5ad3a38b2c26690f9e6 SHA256: 477e3e4b63de46275ddb8367344940907b679798310cbba83268a425f193cc33 Description: GObject introspection data for Totem media player Homepage: http://www.gnome.org/projects/totem/ Description-md5: f8fb0d202ba3f9170c84de5e0c27a305 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-totem-plparser-1.0 Priority: optional Section: libs Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: totem-pl-parser Version: 3.10.2-0ubuntu1 Replaces: gir1.0-totem-plparser-1.0 Depends: gir1.2-glib-2.0, libtotem-plparser18 (>= 3.10.0) Conflicts: gir1.0-totem-plparser-1.0 Filename: pool/main/t/totem-pl-parser/gir1.2-totem-plparser-1.0_3.10.2-0ubuntu1_i386.deb Size: 4742 MD5sum: a54d89eafa9904b370408a70c41b5996 SHA1: 47a4f221c8c701da007d2d64ab9026ca5c467407 SHA256: b26a4475293b791d0129c713ecfbfa801d32a1a62320d89f14c52fc669ea6bcc Description: GObject introspection data for the Totem Playlist Parser library Description-md5: 6dff5eed01c354550bf8d8578ef0f76a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-udisks-2.0 Priority: optional Section: introspection Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: udisks2 Version: 2.1.3-1 Depends: gir1.2-glib-2.0, libudisks2-0 (>= 2.1.1) Filename: pool/main/u/udisks2/gir1.2-udisks-2.0_2.1.3-1_i386.deb Size: 16240 MD5sum: d3cbc11697f929d82be0df1f439dc090 SHA1: 0a6b3d487cc037545b3c66a6921c862d6ea0aee1 SHA256: 3039de4b5c4775db8f5b18523be25e9967c7fe229e1f555c8696ec4bdc219f2d Description: GObject based library to access udisks2 - introspection data Homepage: http://www.freedesktop.org/wiki/Software/udisks Description-md5: f5f1b5062052b10eabb6cc3d51d6bd13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-umockdev-1.0 Priority: optional Section: introspection Installed-Size: 38 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: i386 Source: umockdev Version: 0.8.1-1 Depends: libumockdev0 (>= 0.8.1-1), gir1.2-glib-2.0 Filename: pool/main/u/umockdev/gir1.2-umockdev-1.0_0.8.1-1_i386.deb Size: 2596 MD5sum: 978d77d447f6af2adaf1b9f311fd0819 SHA1: 4f15fdee775f655af79edc33d148ffedd53d9ecf SHA256: 4789fc7664c158ca03d998c45778f06578bba33d1a66934d7ec7ef69839834a4 Description: introspection data for umockdev library Homepage: https://github.com/martinpitt/umockdev/ Description-md5: fbb61fba8c934a3abb2dd226ec23d275 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-unity-5.0 Priority: optional Section: libs Installed-Size: 155 Maintainer: Ubuntu Core Developers Architecture: i386 Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Depends: gir1.2-dbusmenu-glib-0.4, gir1.2-dee-1.0, gir1.2-glib-2.0, libunity9 (>= 7.1.1+13.10.20130920) Filename: pool/main/libu/libunity/gir1.2-unity-5.0_7.1.4+14.04.20140210-0ubuntu1_i386.deb Size: 17408 MD5sum: 3a7d0e33db01c4eb3412ecd27d97c8a6 SHA1: e2b7449edeb340e69674f4469108b2455b64c279 SHA256: 611bd5c0cc4d3679601f9d5f246f53dd6ac5a004ec32b9248009343e4d62d534 Description: GObject introspection data for the Unity library Multi-Arch: same Homepage: https://launchpad.net/libunity Description-md5: 162c569a3952f4e1717dfc2d72f6bb6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-unity-webapps-0.2 Priority: optional Section: introspection Installed-Size: 63 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libunity-webapps Version: 2.5.0~+14.04.20140409-0ubuntu1 Filename: pool/main/libu/libunity-webapps/gir1.2-unity-webapps-0.2_2.5.0~+14.04.20140409-0ubuntu1_i386.deb Size: 8676 MD5sum: 96eb0d3821c8487eb041bf97e15581b0 SHA1: e77055688ffd4a63ded2aec2052f47f41bcb0da5 SHA256: 5f8a27349da5dc58333729817d093be49db06e860ef6590bd15a1e393b0fe388 Description: GObject introspection data for the UnityWebapps library Homepage: https://launchpad.net/libunity-webapps Description-md5: aa958933c4aff1c55b3d2a05924987fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-upowerglib-1.0 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: upower Version: 0.9.23-2ubuntu1 Depends: gir1.2-glib-2.0, libupower-glib1 (>= 0.9.11) Filename: pool/main/u/upower/gir1.2-upowerglib-1.0_0.9.23-2ubuntu1_i386.deb Size: 5808 MD5sum: 5fde756b7b74175516381914797e4205 SHA1: 822985c14a94b7a9c8e893ae97993fe5a72d4a92 SHA256: 486a9b16d39321e16667271eb0339824837506dcdb31596fc204bd64f6196933 Description: GObject introspection data for upower Homepage: http://upower.freedesktop.org/ Description-md5: e44c29e9141611d185719724f06044c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: gir1.2-upstart-app-launch-2 Priority: optional Section: libs Installed-Size: 43 Maintainer: Ted Gould Architecture: i386 Source: upstart-app-launch Version: 0.3+14.04.20140411-0ubuntu1 Depends: libupstart-app-launch2 (= 0.3+14.04.20140411-0ubuntu1), gir1.2-glib-2.0 Recommends: upstart-app-launch (= 0.3+14.04.20140411-0ubuntu1) Filename: pool/main/u/upstart-app-launch/gir1.2-upstart-app-launch-2_0.3+14.04.20140411-0ubuntu1_i386.deb Size: 3016 MD5sum: d68dc1d623356b19a455b8ca2817f714 SHA1: 3619c9e1b721dd56be0b9502acd3efcb53b40185 SHA256: 8fd9740fe04be25acf86d9d1c291eee9873170630b790df566de74d428434903 Description: typelib file for libupstart-app-launch2 Homepage: http://launchpad.net/upstart-app-launch Description-md5: d08ea3af8508e7409917d7cd0bc49a0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-vte-2.90 Priority: optional Section: libs Installed-Size: 436 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: vte3 Version: 1:0.34.9-1ubuntu1 Depends: gir1.2-gtk-3.0, gir1.2-pango-1.0, libvte-2.90-9 (>= 1:0.34.2) Filename: pool/main/v/vte3/gir1.2-vte-2.90_0.34.9-1ubuntu1_i386.deb Size: 6554 MD5sum: b945289de1a3d73aa570d5188da80792 SHA1: 562d398eed20bb7a6c674135345be607a4f8e88f SHA256: a4d1a43cf0ee71179a30d263ba9d708a9b9542f423524838df836b162f9a5299 Description: GObject introspection data for the VTE library Description-md5: 41cb5d8a8e27456cf39b3e3fdc888730 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-webkit-1.0 Priority: optional Section: libs Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: gir1.2-javascriptcoregtk-1.0 (= 2.4.0-1ubuntu2), gir1.2-glib-2.0, gir1.2-gtk-2.0, gir1.2-soup-2.4, libwebkitgtk-1.0-0 (>= 2.3.90) Conflicts: gir1.0-webkit-1.0, gobject-introspection-repository Filename: pool/main/w/webkitgtk/gir1.2-webkit-1.0_2.4.0-1ubuntu2_i386.deb Size: 60294 MD5sum: 0ba742d5aff6896ac0f4ec50e65b2c7a SHA1: 9601787f0cdb471f4d3b65eaa6d9c0d9d3ad8874 SHA256: f5e5b32332f3ef96f073b729736d6633db5589bb4644c2717347b6ff7223089c Description: Web content engine library for GTK+ - GObject introspection data Homepage: http://webkitgtk.org/ Description-md5: 542f5a085cb7a4301e3da6c74903baa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-webkit-3.0 Priority: optional Section: libs Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: gir1.2-javascriptcoregtk-3.0 (= 2.4.0-1ubuntu2), gir1.2-glib-2.0, gir1.2-gtk-3.0 (>= 3.10.0), gir1.2-soup-2.4, libwebkitgtk-3.0-0 (>= 2.3.90) Conflicts: gir1.0-webkit-3.0, gobject-introspection-repository Filename: pool/main/w/webkitgtk/gir1.2-webkit-3.0_2.4.0-1ubuntu2_i386.deb Size: 60324 MD5sum: d95168d5b24465574a5e254b069ff673 SHA1: 799dd92abafc79392b4e71312fae74ef82bd8169 SHA256: 3c9910b53913cd974c1643a552fc72b6e22e7dcedcccc67b8c1cee264ea7a2ff Description: Web content engine library for GTK+ - GObject introspection data Homepage: http://webkitgtk.org/ Description-md5: 77672bb78379c44449a96bdac9a39ec6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-webkit2-3.0 Priority: optional Section: introspection Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: gir1.2-javascriptcoregtk-3.0 (= 2.4.0-1ubuntu2), gir1.2-glib-2.0, gir1.2-gtk-3.0 (>= 3.10.0), gir1.2-soup-2.4, libwebkit2gtk-3.0-25 (>= 2.3.90) Conflicts: gir1.0-webkit-3.0, gobject-introspection-repository Filename: pool/main/w/webkitgtk/gir1.2-webkit2-3.0_2.4.0-1ubuntu2_i386.deb Size: 26594 MD5sum: 27a67034b68fff6a57438098ed795014 SHA1: f25f55e5265955a7277e8e9013250db0a58a3243 SHA256: e93a944d624b6508648f77b9b92e7399a536b944768cb7f88672e37a7393e06e Description: WebKit2 API layer for WebKitGTK+ - GObject introspection data Homepage: http://webkitgtk.org/ Description-md5: 930ecccf58bd28080ded64da6b9507d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-wnck-1.0 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: libwnck Version: 1:2.30.7-0ubuntu4 Replaces: gir1.0-wnck-1.0 Depends: gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-2.0, libwnck22 (>= 1:2.30.2-0ubuntu3) Conflicts: gir1.0-wnck-1.0 Filename: pool/main/libw/libwnck/gir1.2-wnck-1.0_2.30.7-0ubuntu4_i386.deb Size: 8418 MD5sum: 053521f96cbdc1eeb967e2a184e64bb5 SHA1: 91088cedb2d4ddb3f2c94a8e063da7383e8dbe13 SHA256: e863c88e46f18734272c3f47e024638d6e686a8b78df9179f52d58f5a47bc05f Description: GObject introspection data for the WNCK library Description-md5: 27983425e71085c70259e80ee712ca44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gir1.2-wnck-3.0 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: libwnck3 Version: 3.4.7-0ubuntu3 Depends: gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, libwnck-3-0 (>= 3.4.7) Filename: pool/main/libw/libwnck3/gir1.2-wnck-3.0_3.4.7-0ubuntu3_i386.deb Size: 8748 MD5sum: 5e79477bf3e396d245827e967c337695 SHA1: c878291e960b95167b72f61e4f05a38e40a7e69f SHA256: d46b7bf76cec4b05ae1f3567355a578385283a5a2f4fb53fe011fcb79ae1f321 Description: GObject introspection data for the WNCK library Description-md5: 27983425e71085c70259e80ee712ca44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gir1.2-xkl-1.0 Priority: optional Section: introspection Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libxklavier Version: 5.4-0ubuntu1 Depends: libxklavier16 (= 5.4-0ubuntu1), gir1.2-freedesktop, gir1.2-glib-2.0 Filename: pool/main/libx/libxklavier/gir1.2-xkl-1.0_5.4-0ubuntu1_i386.deb Size: 5472 MD5sum: 4fa0dc14263d2f743762dcc93dd40068 SHA1: 29b2684a5400645b4e59d9c2fd440f4d518ce510 SHA256: 5ab0c0ad056788143ad2ab204e4e8f8340d722deefa14905944bcc5440166d44 Description: X Keyboard Extension high-level API - introspection data Homepage: http://www.freedesktop.org/wiki/Software/LibXklavier Description-md5: 127c3bf2e772bac3955bc6eecb367d73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-desktop Package: gir1.2-zeitgeist-2.0 Priority: optional Section: introspection Installed-Size: 94 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: i386 Source: zeitgeist Version: 0.9.14-0ubuntu4 Depends: libzeitgeist-2.0-0 (= 0.9.14-0ubuntu4), gir1.2-glib-2.0 Filename: pool/main/z/zeitgeist/gir1.2-zeitgeist-2.0_0.9.14-0ubuntu4_i386.deb Size: 13642 MD5sum: 7ddee9151caf36ffa894e69430fe8278 SHA1: 2017dd9f4e7758639220ecedea448fdde93078fd SHA256: 56c7d1afa5d7b6de20814755a88c45be9ac2bb2adfc9344dacf8578f80ad9072 Description: library to access Zeitgeist - gir bindings Homepage: http://zeitgeist-project.com/ Description-md5: 8ed57a0ba976858d02578ddf84c24542 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: git Priority: optional Section: vcs Installed-Size: 19800 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: i386 Version: 1:1.9.1-1 Replaces: git-core (<< 1:1.7.0.4-1.), gitweb (<< 1:1.7.4~rc1) Provides: git-completion, git-core Depends: libc6 (>= 2.16), libcurl3-gnutls (>= 7.16.2), libexpat1 (>= 2.0.1), libpcre3, zlib1g (>= 1:1.2.0), perl-modules, liberror-perl, git-man (>> 1:1.9.1), git-man (<< 1:1.9.1-.) Recommends: patch, less, rsync, ssh-client Suggests: gettext-base, git-daemon-run | git-daemon-sysvinit, git-doc, git-el, git-email, git-gui, gitk, gitweb, git-arch, git-bzr, git-cvs, git-mediawiki, git-svn Breaks: bash-completion (<< 1:1.90-1), cogito (<= 0.18.2+), git-buildpackage (<< 0.6.5), git-core (<< 1:1.7.0.4-1.), gitosis (<< 0.2+20090917-7), gitpkg (<< 0.15), gitweb (<< 1:1.7.4~rc1), guilt (<< 0.33), stgit (<< 0.15), stgit-contrib (<< 0.15) Filename: pool/main/g/git/git_1.9.1-1_i386.deb Size: 2117466 MD5sum: 1035e34faf4fe6a0ccb4494e5a7b43c8 SHA1: 681e583f79ea923978d0fb6710ef6a556f9f37ab SHA256: 46268bb68fdecebd15da35e91a0f4361b1e1d060ff3050ea480baa743ddbe31a Description: fast, scalable, distributed revision control system Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: c1f968556452a190fe359bffd151c012 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: git-bzr Priority: extra Section: vcs Installed-Size: 616 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: all Source: git Version: 1:1.9.1-1 Provides: git-remote-bzr Depends: git (>> 1:1.9.1), git (<< 1:1.9.1-.), python, python-bzrlib Suggests: git-doc, bzr Conflicts: bzr-git Filename: pool/main/g/git/git-bzr_1.9.1-1_all.deb Size: 14296 MD5sum: 6697976b80f32ea0822fd1d5d48ec14b SHA1: b38daa318bdfb2ead8840d2b4dd0d40521af6d99 SHA256: f7f5fe3d67aee57b9430d69112f764da1bfed005a39a7afacfa6644200ececb4 Description: fast, scalable, distributed revision control system (bzr interoperability) Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: dc3cedae18205b05c02fc2af4e8c08cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: git-core Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: all Source: git Version: 1:1.9.1-1 Depends: git (>> 1:1.7.0.2) Filename: pool/main/g/git/git-core_1.9.1-1_all.deb Size: 1452 MD5sum: 63a2e8ce4d19b346045fb05c9d0d5725 SHA1: 40ed2d641fde0e76e67612ab023ca5c2f97bd815 SHA256: 8d4f9e359ceb8a397448f48350e3b3a7e7f3b802b07d325c4bce9ba06cd5ea23 Description: fast, scalable, distributed revision control system (obsolete) Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: a5277a215be4fbea0e2f9300b9266151 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: git-doc Priority: optional Section: devel Installed-Size: 9614 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: all Source: git Version: 1:1.9.1-1 Suggests: git, git-arch, git-cvs, git-svn, git-email, gitk, gitweb Filename: pool/main/g/git/git-doc_1.9.1-1_all.deb Size: 843684 MD5sum: 753a7bee56930c6e7078949857beead7 SHA1: 4682a8f3ef5bced0b3b542b8fb1252b95df02156 SHA256: 4dd5baea410166cb274a7a79ec0f2fbfd2a61ba95171e1b683784857725bdf33 Description: fast, scalable, distributed revision control system (documentation) Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: 067fe3355198c178fc97b3730c54a120 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: git-man Priority: optional Section: vcs Installed-Size: 1265 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: all Source: git Version: 1:1.9.1-1 Replaces: git (<< 1:1.7.4~rc1), git-core (<< 1:1.7.0.4-1.) Breaks: git (<< 1:1.7.4~rc1) Filename: pool/main/g/git/git-man_1.9.1-1_all.deb Size: 698014 MD5sum: a02db7ff67aeb4adc1ed1824c16061ac SHA1: 0f3cc7e2f904a74c12a6852d1276dbba91dfe0bf SHA256: 68e29d8261598b114ec3af374fa098a755166f8c52f7f1e4f1f57a7f7c6cf054 Description: fast, scalable, distributed revision control system (manual pages) Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: 0c79f507738c0cb72351c8ae551ee47d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gitk Priority: optional Section: devel Installed-Size: 1220 Maintainer: Ubuntu Developers Original-Maintainer: Gerrit Pape Architecture: all Source: git Version: 1:1.9.1-1 Depends: git (>> 1:1.9.1), git (<< 1:1.9.1-.), tk Suggests: git-doc Filename: pool/main/g/git/gitk_1.9.1-1_all.deb Size: 120602 MD5sum: 5fad677d673e20b1352d36f22ccaf57e SHA1: ad4b61892ae57fc039be5a78682d0af540a376bc SHA256: 1b2f10701623c94a66cf3284c4c8ee55f4258a376a1993d86172bd809834c5f4 Description: fast, scalable, distributed revision control system (revision tree visualizer) Multi-Arch: foreign Homepage: http://git-scm.com/ Description-md5: 09d5ab78b8aa2f432bbf841a62bb9abc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gkbd-capplet Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnomekbd Version: 3.6.0-0ubuntu2 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.26), libgnomekbd8 (>= 2.91.90), libgtk-3-0 (>= 3.0.0), libxklavier16 (>= 5.0) Filename: pool/main/libg/libgnomekbd/gkbd-capplet_3.6.0-0ubuntu2_i386.deb Size: 4778 MD5sum: d3a1d2124d74b9fc6c35f035e3a79817 SHA1: fade8d838d0c696913a556de5a2e1c533d8ba66b SHA256: 96bfe13475b1d5d7d32ecbbede042bab38395190898cba432507ec6e77516a45 Description: GNOME Panel applet for libgnomekbd Description-md5: 92c48b524e722191ce19dd5017839c09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: glance Priority: extra Section: python Installed-Size: 33 Maintainer: Ubuntu OpenStack Architecture: all Version: 1:2014.1-0ubuntu1 Depends: glance-api (= 1:2014.1-0ubuntu1), glance-registry (= 1:2014.1-0ubuntu1) Suggests: python-ceph Filename: pool/main/g/glance/glance_2014.1-0ubuntu1_all.deb Size: 1738 MD5sum: 2426aa4b6f4894e8718347841fba8132 SHA1: 13551f81407a43cb6d181b4af7d1751c1c308386 SHA256: 03c24ade0cbb1b9ea4f87856a4f43c2cfadd6cd3d7dad98d627539e08dd408d5 Description: OpenStack Image Registry and Delivery Service - Daemons Homepage: http://launchpad.net/glance Description-md5: 339da060766773f0f887cd36e425e1e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: glance-api Priority: extra Section: python Installed-Size: 142 Maintainer: Ubuntu OpenStack Architecture: all Source: glance Version: 1:2014.1-0ubuntu1 Replaces: glance (<< 2012.1~e1~20110919.1021-0ubuntu2) Depends: glance-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Recommends: python-glanceclient Filename: pool/main/g/glance/glance-api_2014.1-0ubuntu1_all.deb Size: 22772 MD5sum: 4501230d9fee6505a6c4dfd107ef3072 SHA1: 36adc3a9bbb2ad24c31d0673bd6bcff5973458f7 SHA256: a7dd5ff5fe00a6e36142a80e5bb758c85b68f01c80996115557da40fcdb5db25 Description: OpenStack Image Registry and Delivery Service - API Homepage: http://launchpad.net/glance Description-md5: 42730c4382da9ba8dd9214037a2fa93e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: glance-common Priority: extra Section: python Installed-Size: 86 Maintainer: Ubuntu OpenStack Architecture: all Source: glance Version: 1:2014.1-0ubuntu1 Replaces: glance (<= 2011.3-0ubuntu4.1) Depends: adduser, python-glance (= 1:2014.1-0ubuntu1), python:any Breaks: glance (<= 2011.3-0ubuntu4.1) Filename: pool/main/g/glance/glance-common_2014.1-0ubuntu1_all.deb Size: 6534 MD5sum: 7cf734f1e8d21019c9bef2c886032fa8 SHA1: 12acbd52959db80f40a7a099c0ce69c7967e4b4e SHA256: 4bf982309af032c01448f99a1fcb44e8faa34251279e041eec63bbfbcb1d7bb5 Description: OpenStack Image Registry and Delivery Service - Common Homepage: http://launchpad.net/glance Description-md5: 30114b8292754cb9dbc0df08ef8677a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: glance-registry Priority: extra Section: python Installed-Size: 71 Maintainer: Ubuntu OpenStack Architecture: all Source: glance Version: 1:2014.1-0ubuntu1 Replaces: glance (<< 2012.1~e1~20110919.1021-0ubuntu2) Depends: glance-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Recommends: python-glanceclient Filename: pool/main/g/glance/glance-registry_2014.1-0ubuntu1_all.deb Size: 6922 MD5sum: c8990cc392e13c9a806fc982917f72e1 SHA1: ef2d1d6dfaa2352e76609e1aa3937c71689f1c23 SHA256: 02b45eff1c9d8e85d73483f08c8a3fab077e59ba7ab21c1f8aa5430fbfdebc65 Description: OpenStack Image Registry and Delivery Service - Registry Homepage: http://launchpad.net/glance Description-md5: fe9b1490f5110376f973da81ebc05838 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: glib-networking Priority: optional Section: libs Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 2.40.0-1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.39.4), libgnutls26 (>= 2.12.17-0), libp11-kit0 (>= 0.11), libproxy1 (>= 0.4.7), glib-networking-services (>= 2.40.0-1), glib-networking-services (<< 2.40.0-1.1~), glib-networking-common (= 2.40.0-1), gsettings-desktop-schemas Breaks: libglib2.0-0 (<< 2.30.1-2) Filename: pool/main/g/glib-networking/glib-networking_2.40.0-1_i386.deb Size: 39234 MD5sum: e2a31c734915c5177ad9c73ac85c3950 SHA1: bd70d14e1090bf38ddacf1408e4453e329343c6f SHA256: 2614107c91ef9887071555642fd28cd95d7ee8a5c52b329674a4e27eee0afc96 Description: network-related giomodules for GLib Multi-Arch: same Description-md5: dce7ee23bcf70829c58fe6f9a749eca7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: glib-networking-common Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: glib-networking Version: 2.40.0-1 Replaces: glib-networking (<< 2.30.1-2) Recommends: glib-networking Breaks: glib-networking (<< 2.30.1-2) Filename: pool/main/g/glib-networking/glib-networking-common_2.40.0-1_all.deb Size: 9086 MD5sum: 17e5436407e0fca90d1848da85ee3c5a SHA1: 9d260a86d456f8253bf153e59d11f4ca47ee5ef0 SHA256: d19aa7d6e1944dbe0157d84329a2983194e96c8d340e9b87725bb6bf8578df89 Description: network-related giomodules for GLib - data files Multi-Arch: foreign Description-md5: 53a1d4e1dd58e8fb13abe57894840f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: glib-networking-dbg Priority: extra Section: debug Installed-Size: 824 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: glib-networking Version: 2.40.0-1 Depends: glib-networking (= 2.40.0-1) Filename: pool/main/g/glib-networking/glib-networking-dbg_2.40.0-1_i386.deb Size: 218480 MD5sum: d48ba2ae3567c8818a31a76cfc6f14da SHA1: 7ddd87cccfb4d42cc7858ef01ad1e55a32f2652e SHA256: 5b82ff2823609c4ac22d30350f943dd903e58966afcbb046132242035a05418b Description: network-related giomodules for GLib - debugging symbols Description-md5: b6d3f8f2df66550f6d6317646b5d1ee2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: glib-networking-services Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: glib-networking Version: 2.40.0-1 Replaces: glib-networking (<< 2.30.1-2) Depends: libc6 (>= 2.0), libglib2.0-0 (>= 2.39.3), libproxy1 (>= 0.4.7), glib-networking-common (= 2.40.0-1) Recommends: glib-networking Breaks: glib-networking (<< 2.30.1-2) Filename: pool/main/g/glib-networking/glib-networking-services_2.40.0-1_i386.deb Size: 13734 MD5sum: 1ceaf6fa807f1837b8294e428b36d763 SHA1: 6abdf08fabffb1c90fafa8287aaa40a1615cce6c SHA256: 1a912e444d804535831d5e75a9b2422069d57b4d44b92286c96b5b9b0c28c6d3 Description: network-related giomodules for GLib - D-Bus services Multi-Arch: foreign Description-md5: 365372e1c223a507a4114d685b245121 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: glibc-doc Priority: optional Section: doc Installed-Size: 2273 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: all Source: eglibc Version: 2.19-0ubuntu6 Depends: glibc-doc-reference (>= 2.18) Filename: pool/main/e/eglibc/glibc-doc_2.19-0ubuntu6_all.deb Size: 20118 MD5sum: 7390ec3e4d4006a87e4331fc6b1ac792 SHA1: 77e44f6651efde40930ec98863f39ae253e54b09 SHA256: 9887154b7c607372054c7b1dfe0ba78b0819c022937549e8cd8f7d2348acc536 Description: Embedded GNU C Library: Documentation Multi-Arch: foreign Homepage: http://www.eglibc.org Description-md5: 49341b064b2f9185d1eb2c96e4a87c33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: glibc-doc-reference Priority: optional Section: doc Installed-Size: 11988 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: all Version: 2.19-0ubuntu1 Replaces: glibc-doc (<< 2.16) Conflicts: glibc-doc (<< 2.4) Breaks: glibc-doc (<< 2.16) Filename: pool/main/g/glibc-doc-reference/glibc-doc-reference_2.19-0ubuntu1_all.deb Size: 5129978 MD5sum: e2a8f67e9cdba5c46ada923d9857981b SHA1: b5aa87776d2fa9bffc3a0550c2eebd79bf534e9b SHA256: 97e66c713bbfa0cbe1220b6ae7769b20a6b35052dfb98467c57a85ac61d0a16b Description: GNU C Library: Documentation Description-md5: e6c7ec3ab323b394692e513eddd3c5de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-accessibility-themes Priority: optional Section: gnome Installed-Size: 4691 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-themes-standard Version: 3.10.0-1ubuntu2 Replaces: gnome-themes-standard (<< 3.6.2-1) Breaks: gnome-themes-standard (<< 3.6.2-1) Filename: pool/main/g/gnome-themes-standard/gnome-accessibility-themes_3.10.0-1ubuntu2_all.deb Size: 1964630 MD5sum: ed1cdc45c453f65f363987f51c568544 SHA1: dee5f356ffe8b1f723433527a0a44a538e3b7ac8 SHA256: b110ef43f1b683312dbe7bc7be37cd87e9bc3b3d60121cec8d4c16b3ee6e3ac1 Description: Accessibility themes for the GNOME desktop Multi-Arch: foreign Description-md5: 9a3883fd96857ae09e00959fd97705f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-bluetooth Priority: optional Section: gnome Installed-Size: 1112 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.8.2.1-0ubuntu4 Replaces: nautilus-sendto (<< 2.28.4-2) Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libgnome-bluetooth11 (>= 3.4.0), libgtk-3-0 (>= 3.0.0), dconf-gsettings-backend | gsettings-backend, gir1.2-glib-2.0, gir1.2-gnomebluetooth-1.0 (= 3.8.2.1-0ubuntu4), gir1.2-gtk-3.0, bluez (>= 4.36), obexd-client, udev (>= 154), obex-data-server Recommends: gvfs-backends, unity-control-center | gnome-control-center, gnome-user-share Conflicts: bluez-gnome Breaks: gnome-phone-manager (<< 0.67), nautilus-sendto (<< 3.0), network-manager-gnome (<< 0.9.0-3) Filename: pool/main/g/gnome-bluetooth/gnome-bluetooth_3.8.2.1-0ubuntu4_i386.deb Size: 129922 MD5sum: 9508f100c8efdaa6b3a3da5a9a5a6d8a SHA1: a9d17074eb42324c6542c0be0e66a1bef83abe6d SHA256: 9b4c43b111a2947efdac2eb1378a3cd584612cf5d25957e521c0561db29d505a Description: GNOME Bluetooth tools Homepage: https://wiki.gnome.org/GnomeBluetooth Description-md5: 8a12c9e4bfc6922e61abb655aec6a01b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-calculator Priority: optional Section: math Installed-Size: 2040 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 1:3.10.2-0ubuntu1 Replaces: gcalctool (<< 6.7) Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.31.18), libgtk-3-0 (>= 3.3.16), libpango-1.0-0 (>= 1.14.0), libxml2 (>= 2.7.4), dconf-gsettings-backend | gsettings-backend Recommends: yelp, gvfs, gnome-icon-theme Breaks: gcalctool (<< 6.7) Filename: pool/main/g/gnome-calculator/gnome-calculator_3.10.2-0ubuntu1_i386.deb Size: 205310 MD5sum: 8fecc1918f8e8e6ca8b76fea7bf04cf7 SHA1: 55f9c8ec77ed422a1ed1a3824cf06ef563fcd184 SHA256: 1a7117c3817d11e12773e1fe3e548ac4380e071432e9c259851750de8a7ab1c1 Description: GNOME desktop calculator Homepage: https://live.gnome.org/Calculator Description-md5: b799a60ac654f01c9ce535852ae2ec77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-common Priority: optional Section: gnome Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.10.0-1 Depends: autoconf, automake (>= 1:1.11), libtool, pkg-config, gettext, intltool, autopoint Filename: pool/main/g/gnome-common/gnome-common_3.10.0-1_all.deb Size: 15690 MD5sum: 34538c146a8cfb660f1bcea1154426a6 SHA1: d65c546c695573ad485c3e35629eecaa74149f49 SHA256: eef46a5df7008435054419cf0eb49cd9cbd1da92fea9772c3742b2e81751e110 Description: common scripts and macros to develop with GNOME Description-md5: 1c22ca15aa3a851a0b1118ceed08aff6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-contacts Priority: optional Section: gnome Installed-Size: 932 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.8.3-1ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.3.6-6~), libcairo2 (>= 1.10.0), libcheese-gtk23 (>= 3.4.0), libcheese7 (>= 3.0.1), libedataserver-1.2-18 (>= 3.5.91), libfolks-eds25 (>= 0.7.3), libfolks-telepathy25 (>= 0.6.0), libfolks25 (>= 0.9.1), libgdk-pixbuf2.0-0 (>= 2.25.2), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.2.0), libgtk-3-0 (>= 3.7.10), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libtelepathy-glib0 (>= 0.17.6), dconf-gsettings-backend | gsettings-backend Filename: pool/main/g/gnome-contacts/gnome-contacts_3.8.3-1ubuntu1_i386.deb Size: 189120 MD5sum: e268b4b7567f85ed2c105066887a8420 SHA1: 6e05f887dc6bb63fe2cd1da8baa007fb5c1912ae SHA256: a0f144ed70cbb2bc1ca63f161fa69c073aca466827bdc18b4c17564fb17ef090 Description: Contacts manager for GNOME Description-md5: 79d9d8cdf2b5dd4c7e214e8397694bcd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-control-center Priority: optional Section: gnome Installed-Size: 3411 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 1:3.6.3-0ubuntu56 Replaces: gnome-bluetooth (<< 3.4.0) Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libcheese-gtk23 (>= 3.4.0), libcheese7 (>= 3.0.1), libcolord1 (>= 0.1.29), libcups2 (>= 1.6.0), libdbus-glib-1-2 (>= 0.78), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.23.0), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgnome-bluetooth11 (>= 3.4.0), libgnome-control-center1 (>= 1:3.5.2), libgnome-desktop-3-7 (>= 3.7.3), libgnome-menu-3-0 (>= 3.2.0.1), libgoa-1.0-0b (>= 3.5.90), libgoa-backend-1.0-1 (>= 3.10.0), libgtk-3-0 (>= 3.5.13), libgtop2-7 (>= 2.22.3), libibus-1.0-5 (>= 1.5.1), libkrb5-3 (>= 1.8+dfsg), libnm-glib4 (>= 0.9.2.0+git201202091648.c24c4d4), libnm-gtk0 (>= 0.9.1.95), libnm-util2 (>= 0.9.1.90+git.20111206t233146.dff0d2a), libnotify4 (>= 0.7.3), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.18.0), libpolkit-gobject-1-0 (>= 0.99), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), libpwquality1 (>= 1.1.0), libsystemd-login0 (>= 31), libupower-glib1 (>= 0.9.2), libwacom2 (>= 0.6), libx11-6, libxi6 (>= 2:1.2.99.4), libxml2 (>= 2.7.4), accountsservice, apg, desktop-file-utils, gkbd-capplet (>= 3.5.90), gnome-control-center-data (<< 1:3.7), gnome-control-center-data (>= 1:3.6.3-0ubuntu56), gnome-desktop3-data, gnome-icon-theme (>= 2.24), gnome-icon-theme-symbolic, gnome-menus (>= 2.12.0), gnome-settings-daemon (>= 3.8.4), gsettings-desktop-schemas (>= 3.5.91) Recommends: cups-pk-helper, gnome-session-bin, ubuntu-system-service, ibus (>= 1.5.0), iso-codes, mousetweaks, policykit-1-gnome, libcanberra-pulse, system-config-printer-gnome, gnome-control-center-shared-data Suggests: gnome-screensaver | xscreensaver, gnome-user-guide | ubuntu-docs, gstreamer0.10-pulseaudio, libcanberra-gtk-module, x11-xserver-utils Breaks: compiz (<< 1:0.9.8+bzr330), gnome-bluetooth (<< 3.4.0), gnome-power-manager (<< 3.0), gnome-session (<< 3.0), libglib2.0-0 (<< 2.28.6-2), metacity (<< 1:2.34.2), unity (<< 6.2-0ubuntu2~) Filename: pool/main/g/gnome-control-center/gnome-control-center_3.6.3-0ubuntu56_i386.deb Size: 459596 MD5sum: 8538e7e16ff8a21646fb5f84acd8a058 SHA1: 5532e230530f8dce03f83b1ab34625c8a26f002b SHA256: e6322d5ab3d33cddf78959038822df9eb218d38d1a8115a1d6ff76193aa985cd Description: utilities to configure the GNOME desktop Description-md5: 841ec7130e7cda8d105ccf44ab60b8fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gnome-control-center-data Priority: optional Section: gnome Installed-Size: 5100 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-control-center Version: 1:3.6.3-0ubuntu56 Replaces: capplets-data, gdm (<< 3.0), gdm3 (<< 3.0), gnome-media-common (<< 2.91), gnome-power-manager (<< 3.2), gnome-settings-daemon (<< 3.0) Provides: capplets-data Recommends: gnome-control-center (>= 1:3.6.3-0ubuntu56) Conflicts: capplets-data Breaks: gdm (<< 3.0), gdm3 (<< 3.0), gnome-power-manager (<< 3.2), gnome-settings-daemon (<< 3.0) Filename: pool/main/g/gnome-control-center/gnome-control-center-data_3.6.3-0ubuntu56_all.deb Size: 1216472 MD5sum: b5c0af991e56b87c86a85fd3560a4f93 SHA1: 9be1841fe16dbd02ee401c202833b8843fad92d1 SHA256: 96dd399196d959ecc5e14fa984ed9495aee3e7090763ca8f4f93fee8c54f8c4d Description: configuration applets for GNOME - data files Description-md5: 8bfe062731867305191b949e29fc5afa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gnome-control-center-dev Priority: optional Section: devel Installed-Size: 1506 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-control-center Version: 1:3.6.3-0ubuntu56 Filename: pool/main/g/gnome-control-center/gnome-control-center-dev_3.6.3-0ubuntu56_all.deb Size: 72764 MD5sum: 8b7f72f3e01901ff6fc2c833c1d61df9 SHA1: 6dbe4d4983c6fe110aa609a64f274f55d65f6b14 SHA256: d78ed4d195edd0c75c8dd7a623fca31a3bd2243da847c45f12f84a4e1827246f Description: utilities to configure the GNOME desktop Description-md5: ea55aa04a24ea847c61e4865c135347b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-control-center-shared-data Priority: optional Section: gnome Installed-Size: 1624 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-control-center Version: 1:3.6.3-0ubuntu56 Replaces: gnome-control-center-data (<< 1:3.6.3-0ubuntu54) Conflicts: gnome-control-center-data (<< 1:3.6.3-0ubuntu54) Filename: pool/main/g/gnome-control-center/gnome-control-center-shared-data_3.6.3-0ubuntu56_all.deb Size: 180722 MD5sum: 9cb509e3d08b99aef0454c6ac5de6ce1 SHA1: 09fdfcba1740cc99e8b0576d813002e1d0c03b7a SHA256: ac9693c5b10eebdc2555f728181ccb6837c4bc56becfb9af2cb7d70e29d1fe3c Description: configuration applets for GNOME - shared data Description-md5: 067e66f1b4aa5a4aea7fc154813ec964 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-desktop3-data Priority: optional Section: gnome Installed-Size: 600 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-desktop3 Version: 3.8.4-0ubuntu3 Replaces: gnome-desktop-data (<< 1:2.32.1-2) Breaks: gnome-desktop-data (<< 1:2.32.1-2) Filename: pool/main/g/gnome-desktop3/gnome-desktop3-data_3.8.4-0ubuntu3_all.deb Size: 49660 MD5sum: 0d2a2fdb300e3200854a4d357e7b00f2 SHA1: 50f1c751de81d360eb6d6ecf7ea3f1eac3178116 SHA256: e824451f12ede93984a983f964a09de143472d1030a3e91d5bfb101ef20c2fd5 Description: Common files for GNOME desktop apps Multi-Arch: foreign Description-md5: 5ce5840cc354bd74e7e4932be3851519 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-disk-utility Priority: optional Section: admin Installed-Size: 1204 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Version: 3.10.0-1ubuntu3 Depends: libc6 (>= 2.10), libcairo2 (>= 1.2.4), libcanberra-gtk3-0 (>= 0.25), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.8), liblzma5 (>= 5.1.1alpha+20120614), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libpwquality1 (>= 1.1.0), libsecret-1-0 (>= 0.7), libsystemd-login0 (>= 31), libudisks2-0 (>= 2.1.1), dconf-gsettings-backend | gsettings-backend, udisks2 (>= 2.1.1), gnome-icon-theme-symbolic Filename: pool/main/g/gnome-disk-utility/gnome-disk-utility_3.10.0-1ubuntu3_i386.deb Size: 212058 MD5sum: d0993dc7d1a37a75e794afcd50320c69 SHA1: b9d52a7830584c187fe58a232645962cc38661a0 SHA256: ae75f4bce5ae09d63d0f9fc0b83b1503486a9494dcc3970f39820b90f8a40139 Description: manage and configure disk drives and media Homepage: http://git.gnome.org/cgit/gnome-disk-utility/ Description-md5: 8bbfe121f73fcddf9e0a9c15f0e8afd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: gnome-doc-utils Priority: optional Section: gnome Installed-Size: 2512 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.20.10-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-libxml2, libxml2-utils, xsltproc Filename: pool/main/g/gnome-doc-utils/gnome-doc-utils_0.20.10-1build1_all.deb Size: 240166 MD5sum: c63a8e78dae5dff46773209ae2cf4767 SHA1: ed6d920e0c3424d63d0e1f6cdafe31adce85ec7c SHA256: c4c27350fdc84b2a925e42093da13741e3e887e14b5e4f96d0667b4a6f863dd5 Description: collection of documentation utilities for the GNOME project Homepage: https://live.gnome.org/GnomeDocUtils Description-md5: c3d9911ee7a34120e7583f410a1b1b75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-font-viewer Priority: optional Section: gnome Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.8.0-1build1 Replaces: capplets-data (<< 1:3.0.0), gnome-control-center (<< 1:3.0.0) Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.35.9), libgnome-desktop-3-7 (>= 3.2.0), libgtk-3-0 (>= 3.7.10), libpango-1.0-0 (>= 1.14.0) Breaks: capplets-data (<< 1:3.0.0), gnome-control-center (<< 1:3.0.0) Filename: pool/main/g/gnome-font-viewer/gnome-font-viewer_3.8.0-1build1_i386.deb Size: 38844 MD5sum: 6f5e6382db0638d82bacb0b84a4efe4c SHA1: e47929f05faf77450d7f14d3c96539527534f39f SHA256: 42aa6ba3405e7b1df858da85d085c1ae1037f47b5235ccec3bedcacbffc79977 Description: font viewer for GNOME Homepage: http://live.gnome.org/GnomeUtils Description-md5: 45d5c8d2f724b76011b8cba2eec0f28d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-icon-theme Priority: optional Section: gnome Installed-Size: 1074 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Version: 3.10.0-0ubuntu2 Replaces: gnome-icon-theme-full (<< 3.10.0-0ubuntu2) Depends: hicolor-icon-theme, libgtk-3-bin, librsvg2-common, humanity-icon-theme | gnome-icon-theme-full Breaks: evolution (<< 2.30), gnome-games (<< 1:2.30.2-1), mail-notification (<< 5.4.dfsg.1-2.2), netspeed (<< 0.15.2-2), rhythmbox (<< 0.12.8) Filename: pool/main/g/gnome-icon-theme/gnome-icon-theme_3.10.0-0ubuntu2_all.deb Size: 775460 MD5sum: 8993be3b5dc9499d209d7ae4d2f54d0c SHA1: f572c98c2799eba0f95e10c2c73975ff02ad9a64 SHA256: c79b89cb390d8f4bbebd42e7eef31d1e5e602ff8025f50c555fcd9ea983720b3 Description: GNOME Desktop icon theme (small subset) Enhances: nautilus (>= 2.2) Description-md5: ec613884d4bc3f3708c01949f5fec105 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-icon-theme-symbolic Priority: optional Section: gnome Installed-Size: 736 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.10.1-1ubuntu1 Replaces: gnome-power-manager (<< 3.2) Depends: hicolor-icon-theme, gnome-icon-theme (>= 3.10), gnome-icon-theme (<< 3.11) Breaks: gnome-power-manager (<< 3.2) Filename: pool/main/g/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic_3.10.1-1ubuntu1_all.deb Size: 92354 MD5sum: ab58385a397ef67b3288c5e38ca51183 SHA1: 9331a5b81cac36822820e1614da03505e2cdd786 SHA256: 5d616104ac6329622c3018e3cd84141a5e48428cc9ed0227feaecc5377ddc80a Description: GNOME desktop icon theme (symbolic icons) Enhances: gnome-icon-theme Description-md5: 800dd952295825b8b41722262e2a9ca1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-keyring Priority: optional Section: gnome Installed-Size: 3408 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Version: 3.10.1-1ubuntu4 Depends: dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.15), libcap-ng0, libdbus-1-3 (>= 1.1.1), libgck-1-0 (>= 3.3.90), libgcr-base-3-1 (>= 3.8.0), libgcrypt11 (>= 1.5.1), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), gcr (>= 3.4), dbus-x11, p11-kit (>= 0.16), libcap2-bin Pre-Depends: multiarch-support Recommends: libpam-gnome-keyring, libp11-kit-gnome-keyring Breaks: libgnome-keyring0 (<< 3.0), seahorse-plugins (<< 3.0) Filename: pool/main/g/gnome-keyring/gnome-keyring_3.10.1-1ubuntu4_i386.deb Size: 533882 MD5sum: 75835c69bf672d9efe37054c4e487cf8 SHA1: c1b458fc90714d8607d8980b27f1afa1d197d89d SHA256: d11c4a550cf917d6666d0a6cf5b2d3aa7532f3f4dedfc553096bafc98ad4f083 Description: GNOME keyring services (daemon and tools) Multi-Arch: foreign Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: ab339ead4844e2dd14c8a8c09473bb75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-mahjongg Priority: optional Section: games Installed-Size: 3968 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Version: 1:3.10.2-0ubuntu1 Replaces: mahjongg (<< 1:3.7.2) Depends: libc6 (>= 2.3.6-6~), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.18), libgtk-3-0 (>= 3.4.0), librsvg2-2 (>= 2.32.0), dconf-gsettings-backend | gsettings-backend Recommends: yelp Breaks: mahjongg (<< 1:3.7.2) Filename: pool/main/g/gnome-mahjongg/gnome-mahjongg_3.10.2-0ubuntu1_i386.deb Size: 2878172 MD5sum: 6d8de821083113a39d8e824da55fd510 SHA1: 67189977f8cd38f631bc9fc86298ed7223134f6d SHA256: aef1a275d5aec95567c07bd5a754210b236539d5fa2cc324a90f06bcc99265a2 Description: classic Eastern tile game for GNOME Homepage: https://live.gnome.org/Mahjongg Description-md5: adc178a2d2b4ff75c015f3907a755657 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-menus Priority: optional Section: gnome Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.10.1-0ubuntu2 Depends: python3:any (>= 3.1~), python3 Breaks: alacarte (<< 0.13.2-2), gnome-control-center (<< 2.91), gnome-panel (<< 2.91) Filename: pool/main/g/gnome-menus/gnome-menus_3.10.1-0ubuntu2_i386.deb Size: 23160 MD5sum: daa4b88cf9e9cc46ea8beb4de85afbb8 SHA1: fa35f268b3baffdae26c7b19928d9b6dcecea06f SHA256: d91e72e7d0df09951a59b4278d63213a7bae7daa6fb100ef7da760537804673e Description: GNOME implementation of the freedesktop menu specification Description-md5: 340ecd22d4f56c95b252e114631d7311 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-mime-data Priority: optional Section: gnome Installed-Size: 4388 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 2.18.0-1 Filename: pool/main/g/gnome-mime-data/gnome-mime-data_2.18.0-1_all.deb Size: 361662 MD5sum: aec0e04401d4aaea789cbc1b7686a008 SHA1: e33a3fd01de0061526c9d66d4105c5e332c1f5ac SHA256: badd19eb59a616e24fea4bd48d5d2940c41356d83276f570f76530e93ae071d6 Description: base MIME and Application database for GNOME. Description-md5: 9b063ee1e2d34952bbfe193cf3ca0429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-mines Priority: optional Section: games Installed-Size: 1296 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 1:3.10.1-0ubuntu1 Replaces: gnomine (<< 1:3.7.2) Depends: libc6 (>= 2.3.6-6~), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.4.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), librsvg2-2 (>= 2.32.0), dconf-gsettings-backend | gsettings-backend Recommends: yelp Breaks: gnomine (<< 1:3.7.2) Filename: pool/main/g/gnome-mines/gnome-mines_3.10.1-0ubuntu1_i386.deb Size: 297232 MD5sum: 066f2608f5435a8972a0f32de3f285c7 SHA1: 724b5e1c28b56a98e57866337d250e824b23f19b SHA256: 2e0145f178e5a42b277eaa98d700de75abf95bd0f1c92bd173674eeea3052064 Description: popular minesweeper puzzle game for GNOME Homepage: https://wiki.gnome.org/Mines Description-md5: 36262e86f4363ae5903b00c430f60af1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntu-gnome-desktop Package: gnome-orca Priority: optional Section: gnome Installed-Size: 5932 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Version: 3.10.3-0ubuntu1 Replaces: gnome-orca-common (<< 2.20.1-2) Depends: python3:any (>= 3.3.2-2~), python3, python3-speechd (>= 0.6.2), python3-gi (>= 3.4.2), python3-pyatspi (>= 2.6), python3-brlapi, python3-louis (>= 1.6.2), gir1.2-glib-2.0, gir1.2-pango-1.0, gir1.2-gtk-3.0 (>= 3.6.2), gir1.2-wnck-3.0 Conflicts: gnome-orca-common (<< 2.20.1-2) Filename: pool/main/g/gnome-orca/gnome-orca_3.10.3-0ubuntu1_all.deb Size: 751948 MD5sum: a08528efb758b14b06c6ac1f9735bc64 SHA1: fb59e3b98ed163f633490e99393fcd347490c877 SHA256: 88274fd630f476598ddaa3cb86b7a0a741aa9a521512bd4ba79291dc79a2d944 Description: Scriptable screen reader Homepage: http://live.gnome.org/Orca Description-md5: f65a62b4ea6bad4bd1544c0d34a697ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-pkg-tools Priority: optional Section: devel Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.19.3ubuntu2 Depends: perl, dh-translations, python-scour Suggests: svn-buildpackage Filename: pool/main/g/gnome-pkg-tools/gnome-pkg-tools_0.19.3ubuntu2_all.deb Size: 23130 MD5sum: a521f4888e04e2be5f225b13824ed176 SHA1: c82d973a4f2dc25037ffe7db25cfb19c385b536f SHA256: 18a73613c850800fb3c6f8292b783965f66daa85c69ab393fe182fc0fcd60984 Description: Tools for the Debian GNOME Packaging Team Multi-Arch: foreign Description-md5: c70a3c297a4da5c32996ed18c8c8e7f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-power-manager Priority: optional Section: gnome Installed-Size: 364 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.8.2-1ubuntu2 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.4.0), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libupower-glib1 (>= 0.9.1), dconf-gsettings-backend | gsettings-backend, notification-daemon, dbus-x11, upower, gnome-settings-daemon-schemas (>= 3.2) Suggests: policykit-1 Breaks: gnome-session (<< 2.28) Filename: pool/main/g/gnome-power-manager/gnome-power-manager_3.8.2-1ubuntu2_i386.deb Size: 81272 MD5sum: 4ea8594bcb71dfab80bc5093b442a79b SHA1: 16392dac3a01bca97aee9b17c2828a78eda3e3a2 SHA256: e8e617c6bf8b7f78d88084fe618f92af4c173e58531c8a1bacaec30c8823ded2 Description: power management tool for the GNOME desktop Homepage: http://www.gnome.org/projects/gnome-power-manager/ Description-md5: 1ece6a08127f01c856017ac9675775b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gnome-screensaver Priority: optional Section: gnome Installed-Size: 396 Maintainer: Ubuntu Desktop Team Original-Maintainer: Guilherme de S. Pastore Architecture: i386 Version: 3.6.1-0ubuntu13 Depends: libc6 (>= 2.7), libcairo2 (>= 1.10.0), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.7.3), libgtk-3-0 (>= 3.0.0), libpam0g (>= 0.99.7.1), libsystemd-login0 (>= 31), libx11-6, libxext6, libxxf86vm1, dbus-x11, gnome-icon-theme (>= 2.15.90), gsettings-desktop-schemas (>= 2.91.92) Recommends: gnome-power-manager | xfce4-power-manager, libpam-gnome-keyring Filename: pool/main/g/gnome-screensaver/gnome-screensaver_3.6.1-0ubuntu13_i386.deb Size: 83986 MD5sum: 7847c3f6ccd6283459aefce4f48084a6 SHA1: 4f9c6c03a690ed64595311c58a5ce7e6c88ce139 SHA256: 517fd1030a9146982b750eb9f6625645b1a694206db391c2b62cb36dd11033e9 Description: GNOME screen saver and locker Homepage: http://live.gnome.org/GnomeScreensaver Description-md5: 4dad587fa91113f99b8fc502d8ecfc68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gnome-screenshot Priority: optional Section: gnome Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.10.1-0ubuntu1 Replaces: gnome-utils (<< 2.30.0-2) Depends: libc6 (>= 2.7), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libgdk-pixbuf2.0-0 (>= 2.23.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.16), libx11-6, libxext6, dconf-gsettings-backend | gsettings-backend Breaks: gnome-utils (<< 2.30.0-2) Filename: pool/main/g/gnome-screenshot/gnome-screenshot_3.10.1-0ubuntu1_i386.deb Size: 29196 MD5sum: ac772a79a41d6966e85d45ad775be78e SHA1: fd0d7f382b16d1cb38176bc36b4a06c7c5e9cb22 SHA256: 81e2e38b3e2e6bd4a432e331d31f5567ad292d3724e6a28800f66a05b42ca39e Description: screenshot application for GNOME Homepage: https://wiki.gnome.org/GnomeUtils Description-md5: c90436a1a5b51bb06f2cb8922490040a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-session Priority: optional Section: gnome Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.9.90-0ubuntu12 Replaces: gnome-session-bin (<< 3.0), gnome3-session Provides: gnome3-session, x-session-manager Depends: gnome-settings-daemon (>= 3.0), gnome-session-bin (>= 3.9.90-0ubuntu12), gnome-session-bin (<< 3.10), gnome-session-common (= 3.9.90-0ubuntu12) Recommends: session-migration Suggests: gnome-user-guide, desktop-base, gnome-keyring Conflicts: gnome3-session Breaks: bug-buddy (<< 2.20), gnome-power-manager (<< 2.28), xserver-xorg (<< 1:7.4) Filename: pool/main/g/gnome-session/gnome-session_3.9.90-0ubuntu12_all.deb Size: 10354 MD5sum: b61ef76a0232ea73f2f22c5701eea71c SHA1: 8c942d29cdd0c14619d2edc7bede964910519182 SHA256: ba860452390211c5196ce93ed99306b8a64a9f90ed9a16fba49502367b488083 Description: GNOME Session Manager - GNOME 3 session Description-md5: 7cfb8372c3ddbf9bd501f540d336a524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gnome-session-bin Priority: optional Section: gnome Installed-Size: 604 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-session Version: 3.9.90-0ubuntu12 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libgdk-pixbuf2.0-0 (>= 2.22.0), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.7.90), libgtk-3-0 (>= 3.0.0), libice6 (>= 1:1.0.0), libjson-glib-1.0-0 (>= 0.12.0), libsm6, libsystemd-journal0 (>= 183), libsystemd-login0 (>= 43), libupower-glib1 (>= 0.9.0), libx11-6, libxau6, libxcomposite1 (>= 1:0.3-1), libxrender1, dconf-gsettings-backend | gsettings-backend, dbus-x11, gsettings-desktop-schemas, upower (>= 0.9.0) Conflicts: gnome-session (<< 3.9.90-0ubuntu8) Filename: pool/main/g/gnome-session/gnome-session-bin_3.9.90-0ubuntu12_i386.deb Size: 137160 MD5sum: be48217c3d1446a6b9df25ffb52aa8d8 SHA1: 2ac70b86fbd0ef76104756da1f95a97de522c165 SHA256: 22b44d2df1a82412cd80508b5ea8669a9563bd6dfff8d7d6756d828e9b410709 Description: GNOME Session Manager - Minimal runtime Description-md5: 4c2133392307e0ef72a944d936883f7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-session-canberra Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Replaces: libcanberra-gtk0 (<< 0.28-3ubuntu2) Depends: libc6 (>= 2.3.6-6~), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.0.0), libcanberra-gtk0 Recommends: libcanberra-pulse Breaks: libcanberra-gtk0 (<< 0.28-3ubuntu2) Filename: pool/main/libc/libcanberra/gnome-session-canberra_0.30-0ubuntu3_i386.deb Size: 6332 MD5sum: 9816fa5169bd531798ac095e7bb572da SHA1: f42b4ec570fe38f316cb745da49b390e31ea9479 SHA256: 694d8bc7fe27b333fac96ef91c75f386718a54c214b3ec3616257248d65e8d56 Description: GNOME session log in and log out sound events Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 2aefd6590467e10cdd2703be5a5a4d62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-session-common Priority: optional Section: gnome Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-session Version: 3.9.90-0ubuntu12 Replaces: gnome-session (<< 3.0), gnome-session-bin (<< 3.0), libgnomevfs2-common (<< 1:2.24.0-3) Filename: pool/main/g/gnome-session/gnome-session-common_3.9.90-0ubuntu12_all.deb Size: 42196 MD5sum: d92d41ef2a2eea45e377b1083c51c25d SHA1: fbab0b51bc8687357bfad7fa70c640919f0b509f SHA256: 8586d1a12c6ca68e8ceb0c5ad7a07558ec0f17a200facab7af74d476fd7b410f Description: GNOME Session Manager - common files Description-md5: 4e4f4b98eb1049a0a4a28d994692754e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-settings-daemon Priority: extra Section: gnome Installed-Size: 2444 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.8.6.1-0ubuntu11 Depends: libaccountsservice0 (>= 0.6.35-0ubuntu7), libc6 (>= 2.7), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libcolord1 (>= 0.1.31), libcups2 (>= 1.6.0), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.7.90), libgtk-3-0 (>= 3.9.10), libgudev-1.0-0 (>= 146), libibus-1.0-5 (>= 1.5.1), liblcms2-2 (>= 2.2+git20110628), libnotify4 (>= 0.7.3), libpango-1.0-0 (>= 1.22.0), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), librsvg2-2 (>= 2.36.2), libupower-glib1 (>= 0.9.0), libwacom2 (>= 0.7), libx11-6, libxext6, libxfixes3 (>= 1:4.0.1), libxi6 (>= 2:1.2.99.4), libxkbfile1, libxtst6, accountsservice (>= 0.6.34), gsettings-desktop-schemas (>= 3.7.2.1), nautilus-data (>= 2.91.3-1), gnome-settings-daemon-schemas (= 3.8.6.1-0ubuntu11) Recommends: ibus (>= 1.5.0), pulseaudio, systemd-services Suggests: x11-xserver-utils, gnome-screensaver, metacity | x-window-manager Breaks: banshee (<< 0.13.2+dfsg-7), gnome-color-manager (<< 3.0), gnome-control-center (<< 1:3.6.3-0ubuntu35), gnome-screensaver (<< 2.28.0), gnome-session (<< 3.9.90-0ubuntu6), indicator-datetime (<< 12.10.3daily13.03.26), rhythmbox (<< 0.11.5), totem (<< 2.22.0), unity-greeter (<< 0.2.1-0ubuntu1) Filename: pool/main/g/gnome-settings-daemon/gnome-settings-daemon_3.8.6.1-0ubuntu11_i386.deb Size: 481282 MD5sum: e96638cedd1b43a9ff151acc537b4079 SHA1: 6c47bdefd1df2762022aaa2f0c9d1f9a249c5f96 SHA256: f4b39cf3c90ec96d0937ee1fde822c0b18dadb3367e0652d6fa943c7baf79576 Description: daemon handling the GNOME session settings Description-md5: ba41f64fe10326f7ff74ab22f1003a11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: gnome-settings-daemon-dev Priority: extra Section: gnome Installed-Size: 141 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-settings-daemon Version: 3.8.6.1-0ubuntu11 Depends: libdbus-glib-1-dev (>= 0.74), libglib2.0-dev (>= 2.35.3) Filename: pool/main/g/gnome-settings-daemon/gnome-settings-daemon-dev_3.8.6.1-0ubuntu11_i386.deb Size: 37542 MD5sum: 429dad2acc5d5a737950763147d66afd SHA1: b8edb95b8eac0bee366ce8c79664dc3d80072110 SHA256: 399e44fe9e74589011101dbd149abf86558a0665f561547bf08c8508ae19570b Description: Headers for building applications communicating with gnome-settings-daemon Description-md5: 7da21b55f83cd4a428a2bd849fda6b81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-settings-daemon-schemas Priority: optional Section: gnome Installed-Size: 185 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-settings-daemon Version: 3.8.6.1-0ubuntu11 Replaces: gnome-settings-daemon (<< 3.8.6.1-0ubuntu8) Breaks: gnome-settings-daemon (<< 3.8.6.1-0ubuntu8) Filename: pool/main/g/gnome-settings-daemon/gnome-settings-daemon-schemas_3.8.6.1-0ubuntu11_all.deb Size: 44174 MD5sum: 5ba080b8be4e371ec3a4f21d191c41f6 SHA1: ccea43cb1523af4637cc11342bd8af72873ce0a5 SHA256: 9c45ffda513bb763902d1e89b4ea733b9f450a03d2acd6095979340ca1b28ee5 Description: gnome-settings-daemon schemas Description-md5: a578d96b60fe617a3adcc1429e6531f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-sharp2-examples Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Depends: mono-runtime (>= 2.10.1), libglib2.0-0 (>= 2.36.0), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgnome-vfs2.0-cil (>= 2.24.0), libgnome2.24-cil (>= 2.24.0), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1) Filename: pool/main/g/gnome-sharp2/gnome-sharp2-examples_2.24.2-3_all.deb Size: 26152 MD5sum: 5507a1afaa55cd4957ca9f6232efc514 SHA1: 5b9deedbd5a440daed8325275e8cb0b7497be2a4 SHA256: 43990424977f55b268f1ad9025dbf0ca411d8652f8884717770fb9a7f2662134 Description: sample applications for GNOME# 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 61ab43a373ebba41e28de5ef49732447 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnome-sudoku Priority: optional Section: games Installed-Size: 2252 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Version: 1:3.10.2-0ubuntu2 Depends: dconf-gsettings-backend | gsettings-backend, python3:any (>= 3.3.2-2~), python3, python3-gi (>= 2.90.1), python3-gi-cairo (>= 2.90.1), gir1.2-gtk-3.0, python3-cairo Recommends: yelp Filename: pool/main/g/gnome-sudoku/gnome-sudoku_3.10.2-0ubuntu2_all.deb Size: 771684 MD5sum: 6f80be047d23c2dbbcde6a4e0defb186 SHA1: f7b30e553d8412f4902f64a3ded4f4947b61996c SHA256: 217ace7f447ad73afb245ba595e5054fd75704e9967e3e72c3cbb6b9a775dc7e Description: Sudoku puzzle game for GNOME Homepage: https://live.gnome.org/GnomeSudoku Description-md5: 36f1efc2746ddf39c8f11ff90893cc96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntu-gnome-desktop Package: gnome-system-log Priority: optional Section: gnome Installed-Size: 1132 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.8.1-1svn1 Replaces: baobab (<< 3.3.3-1), gnome-utils (<< 2.30.0-2) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.31.18), libgtk-3-0 (>= 3.8.0), libpango-1.0-0 (>= 1.14.0), zlib1g (>= 1:1.1.4), dconf-gsettings-backend | gsettings-backend, gsettings-desktop-schemas, policykit-1 Suggests: yelp Breaks: baobab (<< 3.3.3-1), gnome-utils (<< 2.30.0-2) Filename: pool/main/g/gnome-system-log/gnome-system-log_3.8.1-1svn1_i386.deb Size: 208240 MD5sum: 9dc7b918501fb64b0d90e41587943b69 SHA1: bbf95cb76ae0d908b85bf582173be1723828b2fc SHA256: 6682589265bde19c2b720598e915fac13d789a16ab59ac825d71b6b1a34be0d6 Description: system log viewer for GNOME Homepage: http://live.gnome.org/GnomeUtils Description-md5: 537fd56b5adfd5b99fdf86c82e261f93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-system-monitor Priority: optional Section: gnome Installed-Size: 1544 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.8.2.1-2ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.8), libglibmm-2.4-1c2a (>= 2.36.2), libgtk-3-0 (>= 3.5.12), libgtkmm-3.0-1 (>= 3.8.1), libgtop2-7 (>= 2.22.3), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), librsvg2-2 (>= 2.35.0), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6), libwnck-3-0 (>= 2.91.6) Recommends: gvfs Filename: pool/main/g/gnome-system-monitor/gnome-system-monitor_3.8.2.1-2ubuntu1_i386.deb Size: 354740 MD5sum: 458049564a36b10e04a99d30d964efe7 SHA1: 213dc804b981076178df601d9702942d74c7677b SHA256: d8ddfc91a10d1d21e6007a28e4b6fb540abcb8ce8f504eaff456273e4537f9a1 Description: Process viewer and system resource monitor for GNOME Description-md5: bb5488674b14e5248e88189686b54d2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-terminal Priority: optional Section: gnome Installed-Size: 719 Maintainer: Ubuntu Desktop Team Original-Maintainer: Guilherme de S. Pastore Architecture: i386 Version: 3.6.2-0ubuntu1 Replaces: gnome-terminal-data (<< 2.26.2-3) Provides: x-terminal-emulator Depends: gconf-service, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.16), libice6 (>= 1:1.0.0), libpango-1.0-0 (>= 1.14.0), libsm6, libvte-2.90-9 (>= 1:0.34.9), libx11-6, gsettings-desktop-schemas (>= 0.1.0), gnome-terminal-data (>= 3.6), gnome-terminal-data (<< 3.7) Recommends: yelp, gvfs Filename: pool/main/g/gnome-terminal/gnome-terminal_3.6.2-0ubuntu1_i386.deb Size: 108458 MD5sum: c0404dd0d81c160a6feef09e8a8b5442 SHA1: 86ddf43ad5b7fb2638f48dbc49157f61c001a745 SHA256: 6774e7cec6d508a75b9960f139384f4b6d5ec840756b6798b96d594a206defc8 Description: GNOME terminal emulator application Description-md5: c385379e72ae70e0ca5a4dee09859951 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-terminal-data Priority: optional Section: gnome Installed-Size: 1172 Maintainer: Ubuntu Desktop Team Original-Maintainer: Guilherme de S. Pastore Architecture: all Source: gnome-terminal Version: 3.6.2-0ubuntu1 Depends: gconf2 (>= 2.28.1-2) Recommends: gnome-terminal Filename: pool/main/g/gnome-terminal/gnome-terminal-data_3.6.2-0ubuntu1_all.deb Size: 60880 MD5sum: d50a5943b34f5a0d78b3592c2bf9132b SHA1: b4c460cb3c97bcb0b189cddd0dfd6995c4932e9f SHA256: 00e423c5e10793fefe9c45d79860284cf38260179cca6306848fdcbb8b88e56e Description: Data files for the GNOME terminal emulator Description-md5: 9b9dc36a1c83dd9ce4cb3aedf50168f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-user-guide Priority: optional Section: gnome Installed-Size: 29161 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-user-docs Version: 3.8.2-1 Depends: yelp (>= 3) Filename: pool/main/g/gnome-user-docs/gnome-user-guide_3.8.2-1_all.deb Size: 1866688 MD5sum: 3c44c6d741dd4d39b2191776720bca86 SHA1: 8334a8af37adcd7d82a722a3e0bae2427a4c4cdd SHA256: 662c689646fb0af0b04be430887747fc9fb0c984ab2106460fb00bc3b9bc9cdc Description: GNOME user's guide Description-md5: 3ee74fea06ef39daa7352728b1424f4c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gnome-user-share Priority: optional Section: gnome Installed-Size: 856 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.0.4-0ubuntu1 Depends: libc6 (>= 2.4), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.28.0), libgnome-bluetooth11 (>= 2.91.2), libgtk-3-0 (>= 3.0.0), libnotify4 (>= 0.7.0), libselinux1 (>= 1.32), libx11-6, dconf-gsettings-backend | gsettings-backend, gconf2 (>= 2.28.1-2), obex-data-server, gnome-bluetooth Suggests: apache2.2-bin, libapache2-mod-dnssd (>= 0.6) Filename: pool/main/g/gnome-user-share/gnome-user-share_3.0.4-0ubuntu1_i386.deb Size: 94750 MD5sum: 11b6f6fbe47edf28d2e95960fb19570e SHA1: 48b5e126c1a36ab9a934ce97d08247af0ae405fc SHA256: 83fca5bfec12212c1cbb6f8664371492ae34f13970bbbbc54acb5be1ed46d726 Description: User level public file sharing via WebDAV or ObexFTP Description-md5: 33cfc5ae7457d2bb78e7d428c558106b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-video-effects Priority: optional Section: gnome Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.4.1-0ubuntu1 Depends: gstreamer1.0-plugins-good Suggests: gnome-video-effects-extra, gnome-video-effects-frei0r Filename: pool/main/g/gnome-video-effects/gnome-video-effects_0.4.1-0ubuntu1_all.deb Size: 35360 MD5sum: fc3fcc0378af448cf16d9ad22aa167a5 SHA1: 9ee15a0b4e9754edb72a0343291bb8c9573fa87f SHA256: bc2a10606855bacef911e998773b5d14e3f287410e1ef8055e530a373a1c78fd Description: GNOME Video Effects Homepage: http://live.gnome.org/GnomeVideoEffects Description-md5: e9646a04dcbef7ac50b4f5cff9a4fde7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gnome-video-effects-dev Priority: optional Section: devel Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-video-effects Version: 0.4.1-0ubuntu1 Depends: gnome-video-effects (= 0.4.1-0ubuntu1) Suggests: gnome-video-effects-extra (= 0.4.1-0ubuntu1), gnome-video-effects-frei0r (= 0.4.1-0ubuntu1) Filename: pool/main/g/gnome-video-effects/gnome-video-effects-dev_0.4.1-0ubuntu1_all.deb Size: 1978 MD5sum: d0d428b2fa98c578296e97afe3a78fac SHA1: 345798ebb18298df411f25303735ece0f341d3c6 SHA256: 1bae61c7534cbe3b9a6ab6bb3943a1ab399270364dc1e37fb660d189c1066b59 Description: Development files for gnome-video-effects Homepage: http://live.gnome.org/GnomeVideoEffects Description-md5: bd0ba71689bb3aca69740a3295e8a94f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnomine Priority: optional Section: games Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-mines Version: 1:3.10.1-0ubuntu1 Depends: gnome-mines Filename: pool/main/g/gnome-mines/gnomine_3.10.1-0ubuntu1_all.deb Size: 11614 MD5sum: 7ca323cb1955e71f5c8d7075d90bfde1 SHA1: 11523269ed43253720c5822655f132e706d18a5e SHA256: ae92baed828b43d950515dcdfde9d0a660462b9995d6287caf6570e0cf92d800 Description: popular minesweeper puzzle game for GNOME (transitional package) Homepage: https://wiki.gnome.org/Mines Description-md5: f0f3029a7265c8c15e77b1b69d34cb9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: gnu-efi Priority: optional Section: devel Installed-Size: 584 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Version: 3.0u+debian-1ubuntu2 Filename: pool/main/g/gnu-efi/gnu-efi_3.0u+debian-1ubuntu2_i386.deb Size: 99142 MD5sum: 85727903addebef97eb9d82289e88908 SHA1: cee25caa150adf08dac5d4825d464c9e650534b7 SHA256: df222d64c76933dbc2da91a6519a74b99e0ddc145ffe29185004926ab6fb0eb1 Description: Library for developing EFI applications Homepage: http://sourceforge.net/projects/gnu-efi/ Description-md5: 426d4a05670bc3d994639e6e49d7b5b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnu-standards Priority: optional Section: doc Installed-Size: 1700 Maintainer: Ubuntu Developers Original-Maintainer: Tim Retout Architecture: all Version: 2010.03.11-1 Depends: dpkg (>= 1.15.4) | install-info Filename: pool/main/g/gnu-standards/gnu-standards_2010.03.11-1_all.deb Size: 1280808 MD5sum: 45c941bc1a6daae03f5ff461510c4def SHA1: 531e3e06d6f01f4f95097666793f0ee905e70786 SHA256: 9b73cfa3bab8b3059b06f945a4284114eac3ec0dd5a405ba3cfc8ebecc0cd01b Description: GNU coding and package maintenance standards Homepage: http://savannah.gnu.org/projects/gnustandards Description-md5: 258c5a9a781b8c29f66d83021d8419a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gnupg Priority: important Section: utils Installed-Size: 1656 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuPG-Maintainers Architecture: i386 Version: 1.4.16-1ubuntu2 Depends: libbz2-1.0, libc6 (>= 2.15), libreadline6 (>= 6.0), libusb-0.1-4 (>= 2:0.1.12), zlib1g (>= 1:1.1.4), gpgv Suggests: gnupg-curl, gnupg-doc, xloadimage | imagemagick | eog, libpcsclite1 Filename: pool/main/g/gnupg/gnupg_1.4.16-1ubuntu2_i386.deb Size: 591088 MD5sum: e4efa558dfad8bd8c61efb8ab0460ab2 SHA1: f8003efebac42b63df0a7c9e9e890bee5f573e39 SHA256: 5ef6ed264b5a7d3f1180fc2e93af9d60760468a7c696fe70245a01727e7f3e91 Description: GNU privacy guard - a free PGP replacement Multi-Arch: foreign Homepage: http://www.gnupg.org Description-md5: f9c3b47becaeff9b3854707a8cb94146 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: gnupg-agent Priority: optional Section: utils Installed-Size: 976 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: gnupg2 Version: 2.0.22-3ubuntu1 Replaces: gnupg2 (<< 2.0.18-2), gpgsm (<< 2.0.18-2), newpg Depends: libassuan0 (>= 2.0.2), libc6 (>= 2.15), libgcrypt11 (>= 1.5.1), libgpg-error0 (>= 1.10), libpth20 (>= 2.0.7), libreadline6 (>= 6.0), pinentry-gtk2 | pinentry-curses | pinentry Recommends: gnupg2 | gpgsm | gnupg Conflicts: newpg Breaks: gnupg2 (<< 2.0.18-2), gpgsm (<< 2.0.18-2) Filename: pool/main/g/gnupg2/gnupg-agent_2.0.22-3ubuntu1_i386.deb Size: 231028 MD5sum: 54e93abae2b8b5f898a595df3eb8e184 SHA1: be7c26868d7444fb8eb50ada449fcb6d7514252a SHA256: 798117e13f55b5a793f925d0517eb40e4b78934d0abd0375eb378eda3cd40e03 Description: GNU privacy guard - password agent Multi-Arch: foreign Homepage: http://www.gnupg.org/ Description-md5: dcf7e2d3c3f22b87f14eec4c0034623c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: gnupg-doc Priority: optional Section: doc Installed-Size: 4489 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Version: 2003.04.06+dak1-1ubuntu1 Suggests: gnupg Filename: pool/main/g/gnupg-doc/gnupg-doc_2003.04.06+dak1-1ubuntu1_all.deb Size: 2974614 MD5sum: db2ebbaae65041fba2594df2c71af9db SHA1: 4636ca47646f4aa47081fe619bda902f5ac77458 SHA256: 6407c14d5df199142418ddb921e3aecfe4106200ef55450ac153626a268b15dd Description: GNU Privacy Guard documentation Description-md5: 5a7ad3c5aa6a169f89c0dd2ba615307b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gnupg2 Priority: extra Section: utils Installed-Size: 2168 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Version: 2.0.22-3ubuntu1 Depends: gnupg-agent (= 2.0.22-3ubuntu1), libassuan0 (>= 2.0.1), libbz2-1.0, libc6 (>= 2.15), libcurl3-gnutls (>= 7.16.2), libgcrypt11 (>= 1.5.1), libgpg-error0 (>= 1.10), libksba8 (>= 1.2.0), libreadline6 (>= 6.0), zlib1g (>= 1:1.1.4), dpkg (>= 1.15.4) | install-info Recommends: libldap-2.4-2 (>= 2.4.7) Suggests: gnupg-doc, xloadimage Conflicts: gpg-idea Filename: pool/main/g/gnupg2/gnupg2_2.0.22-3ubuntu1_i386.deb Size: 672078 MD5sum: 2bb147442b3f7a40e8a8f99d09e14cad SHA1: 032e347a2e5033063ed6618de3fdb5d825de4fde SHA256: 22ecfdf6d480af53606b4dc2896311422dba3f02ebd954dc2b2d57cf5e2c65bf Description: GNU privacy guard - a free PGP replacement (new v2.x) Multi-Arch: foreign Homepage: http://www.gnupg.org/ Description-md5: 38ae35d9c0bbcf859092b0c70f889224 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: gnutls-bin Priority: optional Section: net Installed-Size: 693 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: gnutls26 (2.12.23-12ubuntu2) Version: 3.0.11+really2.12.23-12ubuntu2 Depends: libc6 (>= 2.15), libgnutls26 (>= 2.12.17-0) Filename: pool/main/g/gnutls26/gnutls-bin_3.0.11+really2.12.23-12ubuntu2_i386.deb Size: 109044 MD5sum: e13a39d2e5b80d5de21ef0243e0f009f SHA1: 4335d973b2dad0bf135246a0f2f0ab9862a572ba SHA256: 63c67d0970c91ffd0582f702581e1fe014aea634efe8847a132e32f93c7c2a19 Description: GNU TLS library - commandline utilities Multi-Arch: foreign Homepage: http://www.gnutls.org/ Description-md5: 33f669c0eda9ac17638870658371c713 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gnutls26-doc Priority: optional Section: doc Installed-Size: 5883 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: all Source: gnutls26 Version: 2.12.23-12ubuntu2 Filename: pool/main/g/gnutls26/gnutls26-doc_2.12.23-12ubuntu2_all.deb Size: 2358670 MD5sum: 497773c2137e7ca646d744085dbc8955 SHA1: a5772b3f9e80125c8fde84f548d9e98e8d7ef0cb SHA256: 5b9f54d57c2afd7cd208e291344d3765d0624b007f3d4235d18b3cbeb4dcbe48 Description: GNU TLS library 2.x - documentation and examples Multi-Arch: foreign Homepage: http://www.gnutls.org/ Description-md5: b01a1eff3c9deeb4182f891e4e7c9467 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gob2 Priority: extra Section: devel Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Stephen Kitt Architecture: i386 Version: 2.0.20-1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.16.0) Filename: pool/main/g/gob2/gob2_2.0.20-1_i386.deb Size: 84622 MD5sum: 24964931c3be7fe1203785c329edd669 SHA1: 9f6b17f13605c162c4603e575b9e4c8be43d72a9 SHA256: f5ac20b600e3f0833cbacf7307e9aeedb7154bf20fd05cea409667115e5aae20 Description: GTK+ Object Builder Homepage: http://www.jirka.org/gob.html Description-md5: 0f5d229d9f79efbdbf11a584051163fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gobi-loader Priority: optional Section: comm Installed-Size: 67 Maintainer: Ubuntu Kernel Team Architecture: i386 Version: 0.7-0ubuntu2 Depends: udev, libc6 (>= 2.4) Filename: pool/main/g/gobi-loader/gobi-loader_0.7-0ubuntu2_i386.deb Size: 8710 MD5sum: edb31682cd0e1fd3388ea569b411f1c1 SHA1: 82fc57d31409dcd6a74551f7d337ed902c145681 SHA256: 592dea26d2e4251d520cf6608807099315ef4497ce4c4b836771ce0acf01ada1 Description: Firmware loader for Qualcom GobiUSB chipsets Homepage: http://www.codon.org.uk/~mjg59/gobi_loader/ Description-md5: 0bc71f740c2e62e89ed4b58d4c0934a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gobjc Priority: optional Section: devel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4:4.8.2-1ubuntu6 Provides: objc-compiler Depends: cpp (>= 4:4.8.2-1ubuntu6), gcc (>= 4:4.8.2-1ubuntu6), gobjc-4.8 (>= 4.8.2-5~) Suggests: gobjc-multilib Filename: pool/main/g/gcc-defaults/gobjc_4.8.2-1ubuntu6_i386.deb Size: 946 MD5sum: bb883d3c27e790f282771a2650be721d SHA1: 7c3e3f59c0307917350b8ef2ab87f7b3e5131401 SHA256: dc178d8324872993c503f587bfcaedbad77d51253f29b99526276e4b37574e23 Description: GNU Objective-C compiler Description-md5: 8eb5a7695a9f4935cb3126a66df29405 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gobjc-4.8 Priority: optional Section: devel Installed-Size: 12877 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Provides: objc-compiler Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), gcc-4.8 (= 4.8.2-19ubuntu1), libc6-dev (>= 2.13-0ubuntu6), libc6 (>= 2.8), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.10), libmpc3, libmpfr4 (>= 3.1.2), zlib1g (>= 1:1.1.4), libobjc-4.8-dev (= 4.8.2-19ubuntu1) Suggests: gobjc-4.8-multilib, gcc-4.8-doc (>= 4.8), libobjc4-dbg (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/gobjc-4.8_4.8.2-19ubuntu1_i386.deb Size: 4264936 MD5sum: 86eaac6d7b2d0c3ea5521d5a38a58822 SHA1: 91a091301a49a201c08aec3ec75f19e72da49b48 SHA256: f4cc0778fe2b8f67007c86d3bc15d2f064403d5415011002cb9546b13dd0e6fd Description: GNU Objective-C compiler Homepage: http://gcc.gnu.org/ Description-md5: ef51de6b57526dc4a161944678606486 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gobject-introspection Priority: optional Section: devel Installed-Size: 1355 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 1.40.0-1 Depends: libc6 (>= 2.7), libffi6 (>= 3.0.4), libgirepository-1.0-1 (= 1.40.0-1), libglib2.0-0 (>= 2.39.0), python:any (>= 2.7.1-0ubuntu2), python2.7, build-essential, python-mako Filename: pool/main/g/gobject-introspection/gobject-introspection_1.40.0-1_i386.deb Size: 254106 MD5sum: a80000146348c955c37942817118478f SHA1: e5f1f3f0cbaf5df1b2d00fe756c8fe2ec8dc6d6d SHA256: d5f8c05331b1381046f107ef9e23ef4a0856be860cb4a3d33bf1ede37fbc6337 Description: Generate interface introspection data for GObject libraries Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: 237f5e120c510b5b463f0799b240157e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: google-mock Priority: optional Section: devel Installed-Size: 3256 Maintainer: Ubuntu Developers Original-Maintainer: Fredrik Hallenberg Architecture: i386 Version: 1.6.0+svn437-0ubuntu5 Depends: python:any Filename: pool/main/g/google-mock/google-mock_1.6.0+svn437-0ubuntu5_i386.deb Size: 616786 MD5sum: 785c9fe990eccb5367c0fb49bf4bd61a SHA1: f7bc8a961c8f3cf679cf85c333eea87f1152c850 SHA256: a727e594f8a4cccd7c9825906dfaa5324fb905b0ec416b44bda8ab07d0e7dc53 Description: Google's framework for writing and using C++ mock classes Multi-Arch: same Homepage: http://code.google.com/p/googlemock/ Description-md5: 95d9b26f75a8f8f8a93fbe8e13d5b0e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gparted Priority: optional Section: gnome Installed-Size: 1880 Maintainer: Phillip Susi Architecture: i386 Version: 0.18.0-1 Depends: libatkmm-1.6-1 (>= 2.22.1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.12.0), libglibmm-2.4-1c2a (>= 2.36.2), libgtk2.0-0 (>= 2.14.0), libgtkmm-2.4-1c2a (>= 1:2.24.0), libpangomm-1.4-1 (>= 2.27.1), libparted0debian1 (>= 2.2-1), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Suggests: xfsprogs, reiserfsprogs, reiser4progs, jfsutils, ntfs-3g, dosfstools, yelp, kpartx, dmraid, dmsetup, gpart Filename: pool/main/g/gparted/gparted_0.18.0-1_i386.deb Size: 540366 MD5sum: 1b30464a3676d84e3d7905b1615590a2 SHA1: b2951b771680b3aa18afc7fd16a854641bcbfbca SHA256: 623254043b4514967f2756c04f3fe70008a3a6c4e5233f0086561289fc4f3396 Description: GNOME partition editor Homepage: http://gparted.sourceforge.net Description-md5: 1caa85feb72cd19af74db3487848870c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-live Package: gperf Priority: optional Section: devel Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Hilko Bengen Architecture: i386 Version: 3.0.4-1 Replaces: libg++27-dev, libg++272-dev Depends: libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/g/gperf/gperf_3.0.4-1_i386.deb Size: 107196 MD5sum: 6f02734731ae136ece9fcbd8743996c4 SHA1: ef8212fc8749a4c86ee622a396d896211d416a0c SHA256: b9214bfbb7a828b3edd162f17786114b6a244a7f44cfeed36e072556fa723670 Description: Perfect hash function generator Multi-Arch: foreign Homepage: http://www.gnu.org/software/gperf/ Description-md5: 100d8b95fd17c0a38c7613dd1af69b60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gpgsm Priority: optional Section: utils Installed-Size: 517 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: gnupg2 Version: 2.0.22-3ubuntu1 Replaces: gnupg2 (<< 2.0.0-2) Depends: gnupg-agent (= 2.0.22-3ubuntu1), libassuan0 (>= 2.0.1), libc6 (>= 2.7), libgcrypt11 (>= 1.5.1), libgpg-error0 (>= 1.10), libksba8 (>= 1.2.0), libreadline6 (>= 6.0), scdaemon (= 2.0.22-3ubuntu1) Breaks: gnupg2 (<< 2.0.0-2) Filename: pool/main/g/gnupg2/gpgsm_2.0.22-3ubuntu1_i386.deb Size: 189494 MD5sum: dd25f134c5fac44d1345bf6317fb747b SHA1: 97a2c2ff3ed66e59346f54050d47bae27b9183c3 SHA256: c4ae6ffc9a55d8d915c7cda1dd5fc4f7eec1bc560c14ef4417d41d199a293db2 Description: GNU privacy guard - S/MIME version Multi-Arch: foreign Homepage: http://www.gnupg.org/ Description-md5: eaa08168026822f8656ab2343df90485 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: gpgv Priority: important Section: utils Installed-Size: 437 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuPG-Maintainers Architecture: i386 Source: gnupg Version: 1.4.16-1ubuntu2 Depends: libbz2-1.0, libc6 (>= 2.4), zlib1g (>= 1:1.1.4) Suggests: gnupg Filename: pool/main/g/gnupg/gpgv_1.4.16-1ubuntu2_i386.deb Size: 151916 MD5sum: c80a8972b99878c1cb387cdd3c8688b4 SHA1: 972c501cc4339edba2ec04e5754bd26289f7650f SHA256: 754aa99dc1814e17a7f5da718425b0c408edf79665da8832655e8818fb3802af Description: GNU privacy guard - signature verification tool Multi-Arch: foreign Homepage: http://www.gnupg.org Description-md5: 19709c7fc27595437225fd34d295b347 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: grantlee-dbg Priority: extra Section: debug Installed-Size: 5159 Maintainer: Kubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: grantlee Version: 0.4.0-0ubuntu1 Depends: libgrantlee-core0 (= 0.4.0-0ubuntu1) | libgrantlee-gui0 (= 0.4.0-0ubuntu1) Suggests: libqt4-dbg Filename: pool/main/g/grantlee/grantlee-dbg_0.4.0-0ubuntu1_i386.deb Size: 4956784 MD5sum: 5d65855716582a2a3b7af3430da0610d SHA1: 1088efd5bc104133e90c98c100b43df540f38134 SHA256: f303fee501b83e881c1fe08550c7ba22a6e1c180f7e59f2b51b9c808d6bab707 Description: Grantlee templating library (debugging symbols) Homepage: http://www.grantlee.org/ Description-md5: 1f690ca74827f47ed79925128d6d3469 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: graphviz Priority: optional Section: graphics Installed-Size: 1720 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: i386 Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.15), libcdt5, libcgraph6, libexpat1 (>= 2.0.1), libgd3 (>= 2.1.0~alpha~), libgvc6, libgvpr2, libx11-6, libxaw7, libxmu6, libxt6 Recommends: fonts-liberation Suggests: gsfonts, graphviz-doc Conflicts: gdtclft Filename: pool/main/g/graphviz/graphviz_2.36.0-0ubuntu3_i386.deb Size: 442202 MD5sum: 74ce1d91f40439eb348197b4ff4733bc SHA1: a3b7cbddae881c91188d6cb6bf2e30111a65485e SHA256: 247ae38633a0432a745e06398f2c0f4fdbba2f1b2f9add41c918f6b4314b9efe Description: rich set of graph drawing tools Multi-Arch: foreign Homepage: http://www.graphviz.org/ Description-md5: 3596bf983eb939217c51507635922cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: graphviz-dev Priority: optional Section: devel Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: all Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libgraphviz-dev Filename: pool/main/g/graphviz/graphviz-dev_2.36.0-0ubuntu3_all.deb Size: 11772 MD5sum: 5d0a3ec85360193b2301368c837c297e SHA1: 21fa6d5023d39364b8dd410ab5197ed7b74231c0 SHA256: 99f6d84ec5c9130fcfc010018681dccd38332bd514e89ce7e382ef8dc9e472cc Description: transitional package for graphviz-dev rename Homepage: http://www.graphviz.org/ Description-md5: 9f63b6f413c4d84a0c3d45a554d3697b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: graphviz-doc Priority: optional Section: doc Installed-Size: 5063 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: all Source: graphviz Version: 2.36.0-0ubuntu3 Suggests: graphviz Conflicts: graphviz (<< 2.12-1) Filename: pool/main/g/graphviz/graphviz-doc_2.36.0-0ubuntu3_all.deb Size: 3585704 MD5sum: d821cc94dac2f0bd6382d81f5fcf60dc SHA1: b19656533776095392c754f73e8899ee37f233c2 SHA256: 639f612d22009044d3d7119d77b1110b26dd8c8698c11886fda7fdeb41395d30 Description: additional documentation for graphviz Homepage: http://www.graphviz.org/ Description-md5: f78e17da4b5250c519aa60f99d9c7a3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grep Essential: yes Priority: required Section: utils Installed-Size: 688 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 2.16-1 Provides: rgrep Depends: dpkg (>= 1.15.4) | install-info Pre-Depends: libc6 (>= 2.4), libpcre3 Suggests: libpcre3 (>= 7.7) Conflicts: rgrep Filename: pool/main/g/grep/grep_2.16-1_i386.deb Size: 157396 MD5sum: 6ea099d37b45f2d72e6e069a4c26a8de SHA1: 1d55ec4ea7a207cf017622d3a0f879979e33f59c SHA256: eb88d7abd611eed0c91b9f3b7a5b66624195135eb417b73efae07799bb18c3bb Description: GNU grep, egrep and fgrep Multi-Arch: foreign Homepage: http://www.gnu.org/software/grep/ Description-md5: f9188c5583d41955f3b3fe60b9d445f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: groff Priority: optional Section: text Installed-Size: 9680 Maintainer: Colin Watson Architecture: i386 Version: 1.22.2-5 Replaces: groff-base (<< 1.17.2-9), groff-x11 (<< 1.18-1), jgroff (<< 1.17-1) Provides: groff-x11, jgroff Depends: groff-base (= 1.22.2-5), libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libx11-6, libxaw7, libxmu6, libxt6 Recommends: ghostscript, imagemagick, libpaper1, netpbm, perl, psutils Breaks: groff-x11 (<< 1.18-1), jgroff (<< 1.17-1) Filename: pool/main/g/groff/groff_1.22.2-5_i386.deb Size: 3169174 MD5sum: 51fc71be86664a8d3984ba16f7164b7f SHA1: 4b0b5a5c3182c66acecd4af3113998fb945e5292 SHA256: 94aec02edf2d567e905469b0cc60920c0f70850ec49ece73537a1f1ba8190b22 Description: GNU troff text-formatting system Multi-Arch: foreign Homepage: https://www.gnu.org/software/groff/ Description-md5: 11123d1736a0022d49d06092e56ad563 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: groff-base Priority: standard Section: text Installed-Size: 2743 Maintainer: Colin Watson Architecture: i386 Source: groff Version: 1.22.2-5 Replaces: groff (<< 1.20.1-6), jgroff (<< 1.17-1) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Suggests: groff Breaks: groff (<< 1.17-1), jgroff (<< 1.17-1), pmake (<< 1.45-7), troffcvt (<< 1.04-14) Filename: pool/main/g/groff/groff-base_1.22.2-5_i386.deb Size: 1029846 MD5sum: 5f80417d7c3c379412e5ba79d4a66560 SHA1: c9b387fd51339b5755c38f30f9bfd366da937332 SHA256: bf4fc62c51fdc2186ddb7d587276d38764e7705891353c3e978c1c5884df9048 Description: GNU troff text-formatting system (base system components) Multi-Arch: foreign Homepage: https://www.gnu.org/software/groff/ Description-md5: 106eb90e9251712205de3a823876b349 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: growisofs Priority: optional Section: video Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: i386 Source: dvd+rw-tools Version: 7.1-10build1 Replaces: dvd+rw-tools (<< 7.1-9) Depends: libc6 (>= 2.4), libstdc++6 (>= 4.1.1) Breaks: dvd+rw-tools (<< 7.1-9) Filename: pool/main/d/dvd+rw-tools/growisofs_7.1-10build1_i386.deb Size: 69848 MD5sum: 9866c8c804aa2e0cc32a464cda99f214 SHA1: bbbc78ca45d7ed5469b1b93195d39e1c40a85b7b SHA256: 3eb0526f3f482104284acabaf7ce79b87189a698dc572c06a4d87badae4407bc Description: DVD+-RW/R recorder Homepage: http://fy.chalmers.se/~appro/linux/DVD+RW/ Description-md5: 11a5fa8747e3713569def36f6fbc2b0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: grub Priority: optional Section: admin Installed-Size: 856 Maintainer: Ubuntu Kernel Team Original-Maintainer: Grub Maintainers Architecture: i386 Version: 0.97-29ubuntu66 Provides: linux-boot-loader Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libtinfo5, grub-common, udev (>= 117-5), ucf (>= 3.004-0ubuntu2), debconf (>= 1.5.19) | cdebconf, util-linux (>= 2.15-1) Suggests: grub-legacy-doc, mdadm Conflicts: grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-ieee1275, grub-pc Filename: pool/main/g/grub/grub_0.97-29ubuntu66_i386.deb Size: 329782 MD5sum: b255b723927c7f7cd8de9b963409870f SHA1: c2f6509cf539aecc3bece781a04113e9f5e80fb6 SHA256: 90b19eb20f354b3e67e0954768f8110f28e4bfe18cfc8a21de39d01f96c7e6da Description: GRand Unified Bootloader (Legacy version) Description-md5: b4c258376515bf0b4c56cbfd21b52dc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-common Priority: optional Section: admin Installed-Size: 11748 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-coreboot (<< 2.00-4), grub-efi (<< 1.99-1), grub-efi-amd64 (<< 2.00-4), grub-efi-ia32 (<< 2.00-4), grub-efi-ia64 (<< 2.00-4), grub-ieee1275 (<< 2.00-4), grub-linuxbios (<< 1.96+20080831-1), grub-pc (<< 2.00-4), grub-yeeloong (<< 2.00-4) Depends: libc6 (>= 2.7), libdevmapper1.02.1 (>= 2:1.02.36), libfreetype6 (>= 2.2.1), libfuse2 (>= 2.8.1), liblzma5 (>= 5.1.1alpha+20120614), gettext-base, lsb-base (>= 3.0-6) Recommends: os-prober (>= 1.33) Suggests: multiboot-doc, grub-emu, xorriso (>= 0.5.6.pl00), desktop-base (>= 4.0.6), console-setup Conflicts: mdadm (<< 2.6.7-2) Breaks: apport (<< 2.1.1), friendly-recovery (<< 0.2.13), lupin-support (<< 0.55) Filename: pool/main/g/grub2/grub-common_2.02~beta2-9_i386.deb Size: 1672582 MD5sum: 32cb14ca35b7100d16dd0ccadcc150ff SHA1: d425109009c57f9fde629137c3836056c7155b8c SHA256: d7c657f59dc4a5b705df57dc88242407cd100281adb3fb75ce9a9679b1da96c0 Description: GRand Unified Bootloader (common files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 6e1c01c5245ffb9578aee58ee944229b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: grub-doc Priority: optional Section: doc Installed-Size: 146 Maintainer: Ubuntu Kernel Team Original-Maintainer: Grub Maintainers Architecture: all Source: grub Version: 0.97-29ubuntu66 Depends: grub-legacy-doc, multiboot-doc Filename: pool/main/g/grub/grub-doc_0.97-29ubuntu66_all.deb Size: 2356 MD5sum: 72a8479abdff9c5e41ddfa72f30cd924 SHA1: 13d95153b753bc98a4ae10315f89fb6cd1d05f0a SHA256: 0d33ef58f8220f8cc97a761fa9e8c419de6036a3eeb12b7ac8922aa146e30d6f Description: Documentation for GRand Unified Bootloader (dummy package) Description-md5: 5798584f2330e6f258a865c322f43f1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-efi Priority: extra Section: admin Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common, grub-efi-ia32 (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-efi_2.02~beta2-9_i386.deb Size: 2546 MD5sum: d3bcaa877bb22b56d913cac2487f436f SHA1: f7093f3fa97d7ecdef0fe2e150f09e51ec41e781 SHA256: 83f0412d95b1063946ebdf12a29a261fab6252a3aeea221c275ea8c0075c4560 Description: GRand Unified Bootloader, version 2 (dummy package) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: ab0258bbb994f6742ad233346c11cf50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-efi-amd64 Priority: extra Section: admin Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Replaces: grub, grub-common (<= 1.97~beta2-1), grub-coreboot, grub-efi-ia32, grub-ieee1275, grub-legacy, grub-pc, grub2 (<< 2.02~beta2-9) Depends: debconf (>= 0.5) | debconf-2.0, grub-common, grub2-common (= 2.02~beta2-9), grub-efi-amd64-bin (= 2.02~beta2-9), ucf Conflicts: elilo, grub, grub-coreboot, grub-efi-ia32, grub-ieee1275, grub-legacy, grub-pc, grub-xen Filename: pool/main/g/grub2/grub-efi-amd64_2.02~beta2-9_i386.deb Size: 44450 MD5sum: 4c641a086f945920314b5b9adccadf61 SHA1: 3f6107c0d8e3e0da26529af9430c8695635fd745 SHA256: 5cebcb3c08267bb8a7b34c1623fa2dea2fd02b64ba4b20e437c4567d2278466f Description: GRand Unified Bootloader, version 2 (EFI-AMD64 version) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 1ec69fc2c3202308968b8f3288b1500c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-efi-amd64-bin Priority: extra Section: admin Installed-Size: 2656 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-common (<= 1.97~beta2-1), grub-efi-amd64 (<< 1.99-1), grub2 (<< 2.02~beta2-9) Depends: grub-common (= 2.02~beta2-9), efibootmgr Filename: pool/main/g/grub2/grub-efi-amd64-bin_2.02~beta2-9_i386.deb Size: 648590 MD5sum: 81226e13aff89443915fe34343c729f8 SHA1: 068a65f07a3f55b52250b602898eb9be309faa94 SHA256: 7afe04460e62e60cbe3f3de207eb396ee6d8369fdb86a8100a07b101dff76c9b Description: GRand Unified Bootloader, version 2 (EFI-AMD64 binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 598ec5b1a14f26c488bd7d7079c3e538 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-efi-amd64-dbg Priority: extra Section: debug Installed-Size: 16720 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9), grub-efi-amd64-bin (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-efi-amd64-dbg_2.02~beta2-9_i386.deb Size: 2890562 MD5sum: d975156729b6da75a4bd09d940256cf3 SHA1: 04cdf0cf401cbaf79247fdf6baa8fc7ce60a2e15 SHA256: d0dcdb5307487520fc1cf45f29bbfda9cc45e619829e5b3154a73bbc682e661f Description: GRand Unified Bootloader, version 2 (EFI-AMD64 debug files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 01a50868394847340399eb4743e46af0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-efi-ia32 Priority: extra Section: admin Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Replaces: grub, grub-common (<= 1.97~beta2-1), grub-coreboot, grub-efi, grub-efi-amd64, grub-ieee1275, grub-legacy, grub-pc, grub2 (<< 2.02~beta2-9) Depends: debconf (>= 0.5) | debconf-2.0, grub-common, grub2-common (= 2.02~beta2-9), grub-efi-ia32-bin (= 2.02~beta2-9), ucf Conflicts: elilo, grub (<< 0.97-54), grub-coreboot, grub-efi-amd64, grub-ieee1275, grub-legacy, grub-pc, grub-xen Filename: pool/main/g/grub2/grub-efi-ia32_2.02~beta2-9_i386.deb Size: 44466 MD5sum: 88ef69f9d5c71ae05fd2a25c830fcefc SHA1: 5017a025c5c44e557e23d22521f6d78cf8820eb9 SHA256: d67c1cbbb16ca10c64af3b976aa3ebcff5a6bd05b5deb9382a62ba9670cb02d5 Description: GRand Unified Bootloader, version 2 (EFI-IA32 version) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 0b211963be056bf8e983c31763cd0a45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-efi-ia32-bin Priority: extra Section: admin Installed-Size: 1915 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-common (<= 1.97~beta2-1), grub-efi, grub-efi-ia32 (<< 1.99-1), grub2 (<< 2.02~beta2-9) Depends: grub-common (= 2.02~beta2-9), efibootmgr Filename: pool/main/g/grub2/grub-efi-ia32-bin_2.02~beta2-9_i386.deb Size: 615276 MD5sum: 06d3f896fedb306107c723ecebd1bf26 SHA1: cccb2d076f306f458ab2dce6516fb0ecc4a6af46 SHA256: 4ce255afc1d5c374c2cf8952cf93c8e337812c998672a1e68e2b7b8354de7dae Description: GRand Unified Bootloader, version 2 (EFI-IA32 binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 9f83262e22d6097ee9567fff6e1de4bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-efi-ia32-dbg Priority: extra Section: debug Installed-Size: 11052 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9), grub-efi-ia32-bin (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-efi-ia32-dbg_2.02~beta2-9_i386.deb Size: 2710766 MD5sum: af13ec07debb975396bcf97e6efbd77b SHA1: c3df6a835fd57dfab0117462b33d84b06515dbb0 SHA256: d92297e50a9557acf4f502af8ceba3fb2f6146ecfdb769947e612bdd7e318839 Description: GRand Unified Bootloader, version 2 (EFI-IA32 debug files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 985cf475352ed91c8a577b3365c0062f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-gfxpayload-lists Priority: optional Section: admin Installed-Size: 47 Maintainer: Colin Watson Architecture: i386 Version: 0.6 Depends: grub-pc (>= 1.99~20101210-1ubuntu2) Filename: pool/main/g/grub-gfxpayload-lists/grub-gfxpayload-lists_0.6_i386.deb Size: 3500 MD5sum: f673c5e7fd0522ff3adbc94d46fd559a SHA1: 33f99b402cff7e23b858c39ab7694767360767d7 SHA256: 2638dcc90163a976cffd46a554cfc6605fc44a0efcf122f0c484189b48a19d39 Description: GRUB gfxpayload blacklist Description-md5: 30331f38db8adc84acf67dc823e8b37c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: grub-ieee1275 Priority: extra Section: admin Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-common (<= 1.97~beta2-1), grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-legacy, grub-pc, grub2 (<< 2.02~beta2-9) Depends: debconf (>= 0.5) | debconf-2.0, grub-common, grub2-common (= 2.02~beta2-9), grub-ieee1275-bin (= 2.02~beta2-9), ucf Conflicts: grub (<< 0.97-54), grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-legacy, grub-pc, grub-xen Filename: pool/main/g/grub2/grub-ieee1275_2.02~beta2-9_i386.deb Size: 44422 MD5sum: b6d270dcabe6cffd073c4ef0f6f536b6 SHA1: 25b17e10337a28319d75a7d4dde895d3f46c4405 SHA256: 907f89bff78fbc4bfb2a9afa10de094a2b9c8f6e555c57f1bd704db4d9278058 Description: GRand Unified Bootloader, version 2 (Open Firmware version) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 2c687718a62801e41cd0aa29811470e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-ieee1275-bin Priority: extra Section: admin Installed-Size: 1799 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-common (<= 1.97~beta2-1), grub-ieee1275 (<< 1.99-1), grub2 (<< 2.02~beta2-9) Depends: grub-common (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-ieee1275-bin_2.02~beta2-9_i386.deb Size: 589494 MD5sum: 63f521a32146667768f12bace603f1af SHA1: f99a6575a564a0e73d68413dd83702918a61341a SHA256: c3178b7bcbf1f948bf95a48e58497f9d2bcc2fd90c130a526ddb4d92b843c1cb Description: GRand Unified Bootloader, version 2 (Open Firmware binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 2aa28ecd15d342ed322b1e1858743f29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-ieee1275-dbg Priority: extra Section: debug Installed-Size: 10433 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9), grub-ieee1275-bin (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-ieee1275-dbg_2.02~beta2-9_i386.deb Size: 2561622 MD5sum: db4a0507d4b3f5b396c7d275ebde678b SHA1: bafc8501c9175c9101d279a1a1c135145946226e SHA256: c6eb7672736ec38ee8072ea71b6512484c71e16833caad2139a1e5eb0c993381 Description: GRand Unified Bootloader, version 2 (Open Firmware debug files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 3e4b991fd886a5a8442d2e484c000e45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-ipxe Priority: optional Section: admin Installed-Size: 1098 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Blank Architecture: all Source: ipxe Version: 1.0.0+git-20131111.c3d1e78-2ubuntu1 Suggests: grub-pc (>= 1.96) Filename: pool/main/i/ipxe/grub-ipxe_1.0.0+git-20131111.c3d1e78-2ubuntu1_all.deb Size: 635380 MD5sum: f34fce145b5368bf87059f70618fe19c SHA1: 096049cd05721a613e18fc44265e2a03f2de00cf SHA256: 2d9384af7042f35f5a341895f4c12d5dcd3c2eaa06e73f0c62c98788ef532f13 Description: Network booting from GRUB using iPXE Homepage: http://ipxe.org/ Description-md5: 069f85eb75e193394b417a675f95bdda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-legacy-doc Priority: optional Section: doc Installed-Size: 214 Maintainer: Ubuntu Kernel Team Original-Maintainer: Grub Maintainers Architecture: all Source: grub Version: 0.97-29ubuntu66 Replaces: grub-doc Suggests: doc-base Filename: pool/main/g/grub/grub-legacy-doc_0.97-29ubuntu66_all.deb Size: 54696 MD5sum: 185c985507bc457214a64cc7128d36ae SHA1: b15748afed43992d52a234186c8cd14827d7b5d3 SHA256: c12d72d75cf0bc55f6d3c38849538007833e0459b6a5994d69b058176ef294e5 Description: Documentation for GRUB Legacy Description-md5: 89c7b20a06c65204f61a967d49c9207b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-legacy-ec2 Priority: extra Section: admin Installed-Size: 146 Maintainer: Scott Moser Architecture: all Source: cloud-init Version: 0.7.5-0ubuntu1 Depends: debconf (>= 1.5.19) | cdebconf, ucf, util-linux (>= 2.15-1), debconf (>= 0.5) | debconf-2.0 Suggests: grub-legacy-doc Conflicts: grub Filename: pool/main/c/cloud-init/grub-legacy-ec2_0.7.5-0ubuntu1_all.deb Size: 23232 MD5sum: fda82ec097f5327cdff90dadd1653ac5 SHA1: 028f3c99f8db19e2a96bc47f9d5b32359a889f24 SHA256: 72773e63033ad60349229390df43bdf5b35a597a0dc2201001f1ab3e8464abd6 Description: Handles update-grub for ec2 instances Description-md5: e5f8ea347000ef0d0aedb42c000e0b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: cloud-image Package: grub-pc Priority: optional Section: admin Installed-Size: 553 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Replaces: grub, grub-common (<= 1.97~beta2-1), grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-ieee1275, grub-legacy, grub2 (<< 2.02~beta2-9) Depends: debconf (>= 0.5) | debconf-2.0, grub-common, grub2-common (= 2.02~beta2-9), grub-pc-bin (= 2.02~beta2-9), ucf, grub-gfxpayload-lists Conflicts: grub (<< 0.97-54), grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-ieee1275, grub-legacy, grub-xen Filename: pool/main/g/grub2/grub-pc_2.02~beta2-9_i386.deb Size: 172806 MD5sum: 8dea841857fb742feb59d2ed2db5cbfc SHA1: 23c4981cb6bde1e1e08e41efdbb8364808240945 SHA256: 8a225dc868e5a0fc97a50a00f7b4ae159ff8f611ac2f72ce89820ee0e17825e9 Description: GRand Unified Bootloader, version 2 (PC/BIOS version) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 7cb7fdca20b02381c6123a250be96bab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: grub-pc-bin Priority: optional Section: admin Installed-Size: 2835 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Replaces: grub-common (<= 1.97~beta2-1), grub-pc (<< 1.99-1), grub2 (<< 2.02~beta2-9) Depends: libc6 (>= 2.7), libdevmapper1.02.1 (>= 2:1.02.36), grub-common (= 2.02~beta2-9) Suggests: desktop-base (>= 4.0.6) Filename: pool/main/g/grub2/grub-pc-bin_2.02~beta2-9_i386.deb Size: 889156 MD5sum: 997aa61b73a2c43981b649a7c01c9dd0 SHA1: ed95e504672de3569bdabd8d46073b21fd788be5 SHA256: 3c037e9dbbb62cef520f6e35643a7a544e0ff700b5bd32a607a58ecda163115c Description: GRand Unified Bootloader, version 2 (PC/BIOS binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: d3fd4372607d45553d46ed1fecfb4f99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: grub-pc-dbg Priority: extra Section: debug Installed-Size: 11514 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9), grub-pc-bin (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-pc-dbg_2.02~beta2-9_i386.deb Size: 2795688 MD5sum: 9a37e7f2f25dc8da7df40fd96dac49cb SHA1: bd4cb2f544495e54fbb2beed238d8bac3d90d8e5 SHA256: b8761ca82b58adaab2d9787044ea13176fabc1a050eeb95e401981a0566d4097 Description: GRand Unified Bootloader, version 2 (PC/BIOS debug files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 7c0972b8a14a3f1091b6056556730eb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub-xen Priority: extra Section: admin Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Depends: debconf (>= 0.5) | debconf-2.0, grub-common, grub2-common (= 2.02~beta2-9), grub-xen-bin (= 2.02~beta2-9), ucf Conflicts: grub (<< 0.97-54), grub-coreboot, grub-efi-amd64, grub-efi-ia32, grub-ieee1275, grub-legacy, grub-pc Filename: pool/main/g/grub2/grub-xen_2.02~beta2-9_i386.deb Size: 44396 MD5sum: 4807c4adf09bc1e9aeb33264c259fa89 SHA1: b169205b938aceaa1ca45f0e6a56c070e4020b7a SHA256: 135e7c4c854c01cd7974deadc04c315736292bf1521b9c731e9d0303ebc47a3f Description: GRand Unified Bootloader, version 2 (Xen version) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: e5f5bd7dbe07e28d8c9a50b4c9b49ada Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-xen-bin Priority: extra Section: admin Installed-Size: 3515 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-xen-bin_2.02~beta2-9_i386.deb Size: 910520 MD5sum: f0347760dc62fad7597487c80b2c895c SHA1: d9b879a844cf3fe83df2462cb5ace9f574ada743 SHA256: 29c3560c220102e07cf1d4e8332b79ebd42db8fe273cdbe2195ced751d1b656b Description: GRand Unified Bootloader, version 2 (Xen binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: f5cc81c0440ba3a440462606e825c347 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: grub-xen-dbg Priority: extra Section: debug Installed-Size: 20843 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Depends: grub-common (= 2.02~beta2-9), grub-xen-bin (= 2.02~beta2-9) Filename: pool/main/g/grub2/grub-xen-dbg_2.02~beta2-9_i386.deb Size: 4195258 MD5sum: daa9c1abf9148452688126e5ff8ae30e SHA1: b62678fb8008e25d6adf0846cb87e974e2ee36cd SHA256: 87e67adfb034defeae6a5bcdc823cd045be1f731ef82a8903cd4b5d905a7cb89 Description: GRand Unified Bootloader, version 2 (Xen debug files) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: 08653de052a0b5d9f21f8d2925bd514b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: grub2-common Priority: optional Section: admin Installed-Size: 1171 Maintainer: Ubuntu Developers Original-Maintainer: GRUB Maintainers Architecture: i386 Source: grub2 Version: 2.02~beta2-9 Replaces: grub, grub-common (<< 1.99-1), grub-coreboot (<< 2.00-4), grub-efi (<< 1.99-1), grub-efi-amd64 (<< 2.00-4), grub-efi-ia32 (<< 2.00-4), grub-efi-ia64 (<< 2.00-4), grub-ieee1275 (<< 2.00-4), grub-legacy, grub-linuxbios (<< 1.99-1), grub-pc (<< 2.00-4), grub-yeeloong (<< 2.00-4) Depends: grub-common (= 2.02~beta2-9), dpkg (>= 1.15.4) | install-info, libc6 (>= 2.7), libdevmapper1.02.1 (>= 2:1.02.36), liblzma5 (>= 5.1.1alpha+20120614) Conflicts: grub (<< 0.97-54), grub-doc (<< 0.97-29ubuntu60), grub-legacy, grub-legacy-doc (<< 0.97-29ubuntu60) Filename: pool/main/g/grub2/grub2-common_2.02~beta2-9_i386.deb Size: 512634 MD5sum: aa06ad8e753c2de5390978726566cb9b SHA1: 7ddacbad1b5fe4e692f6bd5f86ecdeb518c39b7d SHA256: 0748f0e8e1b78b7e1d56d855f50f7881b64532366d8daa8a14fb1d712026cb69 Description: GRand Unified Bootloader (common files for version 2) Multi-Arch: foreign Homepage: http://www.gnu.org/software/grub/ Description-md5: a969e6536e745e177a340b30bdb5ba3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: gsettings-desktop-schemas Priority: optional Section: libs Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.10.1-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend Breaks: gnome-shell (<< 3.7.90) Filename: pool/main/g/gsettings-desktop-schemas/gsettings-desktop-schemas_3.10.1-0ubuntu1_all.deb Size: 24038 MD5sum: 89765ae8f693b23076bac9a9cad64c44 SHA1: b582f89d4e361eec4e160d75138510d17689ece5 SHA256: 5b67959dc294e04f1274aa37071b2be220c63c716db45bc998f24b89ee41012a Description: GSettings deskop-wide schemas Multi-Arch: foreign Homepage: http://www.gnome.org/ Description-md5: 8bee294b32252fd9454e02190c796c52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gsettings-desktop-schemas-dev Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gsettings-desktop-schemas Version: 3.10.1-0ubuntu1 Depends: gsettings-desktop-schemas (= 3.10.1-0ubuntu1), gir1.2-gdesktopenums-3.0 (= 3.10.1-0ubuntu1) Filename: pool/main/g/gsettings-desktop-schemas/gsettings-desktop-schemas-dev_3.10.1-0ubuntu1_i386.deb Size: 4166 MD5sum: c30017414533153ba7418fbc9e54205b SHA1: 4463fa9de61aac14d9ef114ac00bb425fbc93786 SHA256: 92dad5cde34cb0372a3a9e63bea299d6dcf2842cc90e6a96d34c5a8396e16c3a Description: Development files for GSettings desktop-wide schemas Homepage: http://www.gnome.org/ Description-md5: 39628a8dda830ce47f0c6955f25c1dde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gsettings-ubuntu-schemas Priority: optional Section: gnome Installed-Size: 39 Maintainer: Ubuntu Desktop Team Architecture: all Source: gsettings-ubuntu-touch-schemas Version: 0.0.1+14.04.20140401-0ubuntu1 Replaces: gsettings-ubuntu-touch-schemas (<= 0.0.1+14.04.20140130.1-0ubuntu1) Depends: dconf-gsettings-backend | gsettings-backend Breaks: gsettings-ubuntu-touch-schemas (<= 0.0.1+14.04.20140130.1-0ubuntu1) Filename: pool/main/g/gsettings-ubuntu-touch-schemas/gsettings-ubuntu-schemas_0.0.1+14.04.20140401-0ubuntu1_all.deb Size: 4344 MD5sum: ae416080a07c9e5a6c9573353dca9d2e SHA1: 3c60b9674b8c3db64fe7f778a96d6581435ebd65 SHA256: 5ed54592b364034378baf2f9b1e7714cca54331aaeba9d3a40d9845b5fce5e43 Description: GSettings deskop-wide schemas for Ubuntu Multi-Arch: foreign Homepage: https://launchpad.net/gsettings-ubuntu-touch-schemas Description-md5: b9e4749e3e05f9b2715eeafdf172b511 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: gsfonts Priority: optional Section: text Installed-Size: 4764 Maintainer: Ubuntu Developers Original-Maintainer: Masayuki Hatta (mhatta) Architecture: all Version: 1:8.11+urwcyr1.0.7~pre44-4.2ubuntu1 Conflicts: gs (<< 5.50-5), gs-aladdin (<< 6.50-4), gsfonts-x11 (<< 0.13) Filename: pool/main/g/gsfonts/gsfonts_8.11+urwcyr1.0.7~pre44-4.2ubuntu1_all.deb Size: 3373970 MD5sum: 47126e30ae67398d61e7af8cff54f3db SHA1: 261a68c2136932e975e50e3f053233845af09923 SHA256: fae918c51d76e993f984d0a9e108c9abb64db0dfcd75d39a40f939d740972661 Description: Fonts for the Ghostscript interpreter(s) Homepage: http://www.ghostscript.com/ Description-md5: c77fd616d53a8b059361ca26ef255651 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gsfonts-x11 Priority: optional Section: x11 Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Version: 0.22 Depends: gsfonts (>= 6.0-2), xfonts-utils (>= 1:7.5+2) Breaks: gsfonts (<< 6.0-2) Filename: pool/main/g/gsfonts-x11/gsfonts-x11_0.22_all.deb Size: 9108 MD5sum: cf11cebee0cfa788dbc04484b20278e4 SHA1: 728e8cc0cdf8738b33e707153c18693a112c8642 SHA256: b8d2292d4cb075496768d98de02ff352cafabb868f510897ebd80f4ab9bab837 Description: Make Ghostscript fonts available to X11 Description-md5: c9e30693eb83345b91b7d2f3ddc42a3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: gstreamer-tools Priority: optional Section: utils Installed-Size: 695 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Depends: libc6 (>= 2.0), libglib2.0-0 (>= 2.24), gstreamer0.10-tools | gstreamer0.8-tools Conflicts: gstreamer0.8-tools (<< 0.8.11-2) Filename: pool/main/g/gstreamer0.10/gstreamer-tools_0.10.36-1.2ubuntu3_i386.deb Size: 6204 MD5sum: 0af690111c04886133a9f2e150399611 SHA1: aeae2330c31d397a2dc683f380b93ec71747de58 SHA256: 4300bef4a43c61604ab0592e958255c577d0b5367b78d2a5c99f7af973ba5741 Description: Tools for use with GStreamer Homepage: http://gstreamer.freedesktop.org Description-md5: 4bf8ad824e4b1bcee731f8903efd36d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gstreamer0.10-alsa Priority: optional Section: libs Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Provides: gstreamer0.10-audiosink, gstreamer0.10-audiosource Depends: libasound2 (>= 1.0.16), libc6 (>= 2.4), libglib2.0-0 (>= 2.31.8), libgstreamer0.10-0 (>= 0.10.36), libgstreamer-plugins-base0.10-0 (>= 0.10.36) Recommends: alsa-base (>= 0.9.0) Suggests: alsa-utils (>= 0.9.0) Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-alsa_0.10.36-1.1ubuntu2_i386.deb Size: 29630 MD5sum: be8d26914f816a03639a5da48d9ba6d8 SHA1: 95dec67041db75c8360e0eccbd8d817d198f1b9e SHA256: 53a62c17fe72b0103c94a1c1762a051015e1be229c5591647ab9339ba4f34a76 Description: GStreamer plugin for ALSA Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Gstreamer-Elements: alsamixer, alsasink, alsasrc Gstreamer-Version: 0.10 Description-md5: 339f038172c486f3cef220df0c0e5ac4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer0.10-doc Priority: optional Section: doc Installed-Size: 7617 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Depends: libxml2-doc, libglib2.0-doc Recommends: libgstreamer0.10-dev (= 0.10.36-1.2ubuntu3) Filename: pool/main/g/gstreamer0.10/gstreamer0.10-doc_0.10.36-1.2ubuntu3_all.deb Size: 495440 MD5sum: 596c83ddb87428b8c5dab95d134ea167 SHA1: d1b7886bb16dd8868e55d98a72198401f707be16 SHA256: c7ca3349a22877c12da798acba2ac7c27e2da288149fa94c27f52b51f3a9464f Description: GStreamer core documentation and manuals Homepage: http://gstreamer.freedesktop.org Description-md5: 2274936f9039765c43e33252ae21527d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer0.10-gconf Priority: optional Section: sound Installed-Size: 167 Maintainer: Ubuntu Desktop Team Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-good0.10 Version: 0.10.31-3+nmu1ubuntu5 Replaces: gstreamer0.10-plugins-good (<< 0.10.30-2) Depends: gconf2 (>= 2.28.1-2), gconf-service, libc6 (>= 2.3.6-6~), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.31.8), libgstreamer0.10-0 (>= 0.10.36) Breaks: gstreamer0.10-plugins-good (<< 0.10.30-2) Filename: pool/main/g/gst-plugins-good0.10/gstreamer0.10-gconf_0.10.31-3+nmu1ubuntu5_i386.deb Size: 67918 MD5sum: d73140b771e056272ca9cb87b4bf2900 SHA1: 77f2ae048b608a620a2f464a1251125608f78cf8 SHA256: 12f91febd1850ec9e659ad9cb6018c9412fcba5fa0fb69f1d3fc9bc05835d465 Description: GStreamer plugin for getting the sink/source information from GConf Multi-Arch: same Gstreamer-Elements: gconfaudiosink, gconfaudiosrc, gconfvideosink, gconfvideosrc Gstreamer-Version: 0.10 Description-md5: d08fde0c4992c475ba15a5c96ec7e85c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: gstreamer0.10-nice Priority: optional Section: net Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: libnice Version: 0.1.4-1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.31.8), libgstreamer0.10-0 (>= 0.10.35.2-2), libnice10 (>= 0.1.0) Breaks: libgstfarsight0.10-0 (<< 0.0.23) Filename: pool/main/libn/libnice/gstreamer0.10-nice_0.1.4-1_i386.deb Size: 18056 MD5sum: dbca0d684867071618085ffe22e99ab7 SHA1: 20c7158a22a1e3af1cc063056aa4cf593dfc7903 SHA256: 386b361e854252d84a82c1d6a09d2e557f8b1b8ad20eeae45dc28ecc43d46e52 Description: ICE library (GStreamer 0.10 plugin) Multi-Arch: same Homepage: http://nice.freedesktop.org/ Description-md5: 8eab62208a4fc17f92a82e6b281f7f6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: gstreamer0.10-plugins-base Priority: optional Section: libs Installed-Size: 2167 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Replaces: gstreamer0.10-plugins-bad (<< 0.10.3+cvs20060814-0ubuntu4) Provides: gstreamer0.10-audiosource, gstreamer0.10-videosource Depends: libc6 (>= 2.7), libcdparanoia0 (>= 3.10.2+debian), libglib2.0-0 (>= 2.37.3), libgstreamer0.10-0 (>= 0.10.36-1.1), libogg0 (>= 1.0rc3), liborc-0.4-0 (>= 1:0.4.18), libtheora0 (>= 1.0), libvisual-0.4-0 (>= 0.4.0-4), libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libxml2 (>= 2.7.4), libgstreamer-plugins-base0.10-0 (>= 0.10.36) Suggests: gvfs Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-plugins-base_0.10.36-1.1ubuntu2_i386.deb Size: 529508 MD5sum: ab097f1b5260900a7b65ec459aa2252c SHA1: dd93779422ed860f912e8496ef8fcbb64a6a845b SHA256: 049f0440aedebb3bf6518761f3f097778c1d1512ba059e44c16b7d17af5c8df8 Description: GStreamer plugins from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Gstreamer-Decoders: application/ogg; application/x-annodex; application/x-ass; application/x-ogg-avi; application/x-ogm-audio; application/x-ogm-text; application/x-ogm-video; application/x-ssa; application/x-subtitle; application/x-subtitle-dks; application/x-subtitle-mpl2; application/x-subtitle-qttext; application/x-subtitle-sami; application/x-subtitle-tmplayer; audio/x-vorbis; video/x-theora Gstreamer-Elements: adder, appsink, appsrc, audioconvert, audiorate, audioresample, audiotestsrc, cdparanoiasrc, decodebin, decodebin2, encodebin, ffmpegcolorspace, gdpdepay, gdppay, giosink, giosrc, giostreamsink, giostreamsrc, multifdsink, oggaviparse, oggdemux, oggmux, oggparse, ogmaudioparse, ogmtextparse, ogmvideoparse, playbin, playbin2, playsink, ssaparse, subparse, subtitleoverlay, tcpclientsink, tcpclientsrc, tcpserversink, tcpserversrc, theoradec, theoraenc, theoraparse, uridecodebin, videorate, videoscale, videotestsrc, volume, vorbisdec, vorbisenc, vorbisparse, vorbistag Gstreamer-Encoders: application/ogg; application/x-gdp; audio/x-vorbis; video/x-theora Gstreamer-Uri-Sinks: appsink, file Gstreamer-Uri-Sources: appsrc, cdda, file Gstreamer-Version: 0.10 Description-md5: 73eb82d2de7fe71e4455e1742423e3e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer0.10-plugins-base-apps Priority: optional Section: utils Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.24), libgstreamer0.10-0 (>= 0.10.36), perl, gstreamer0.10-tools Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-plugins-base-apps_0.10.36-1.1ubuntu2_i386.deb Size: 63526 MD5sum: d49b693e1315357d26897e592276a057 SHA1: b2a49932ee6ed61e67389cf56c0d187f99a51a17 SHA256: ab58ae75cfb52ea6a7b1080cda60badc1bc584ffb21d79482717bf4e424a6846 Description: GStreamer helper programs from the "base" set Homepage: http://gstreamer.freedesktop.org Description-md5: 72cc51baa52c95f36129fb0f74a62970 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: gstreamer0.10-plugins-base-dbg Priority: extra Section: libdevel Installed-Size: 4218 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Replaces: gstreamer0.10-plugins-bad-dbg (<< 0.10.3+cvs20060814-0ubuntu4) Depends: gstreamer0.10-alsa (= 0.10.36-1.1ubuntu2), gstreamer0.10-plugins-base (= 0.10.36-1.1ubuntu2), gstreamer0.10-x (= 0.10.36-1.1ubuntu2), libgstreamer-plugins-base0.10-0 (= 0.10.36-1.1ubuntu2) Suggests: gstreamer0.10-gnomevfs (= 0.10.36-1.1ubuntu2) Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-plugins-base-dbg_0.10.36-1.1ubuntu2_i386.deb Size: 3454588 MD5sum: 1afc55f94c35719b3dc17f9b4b2c9c86 SHA1: ed6c614bc76e2d2fdf3e3e709a97aa06d3602d23 SHA256: 082c478a79bc18c1d08a640e3ee4998b4ac5696942d85ccc16e741780d51e93a Description: GStreamer plugins from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: b7d3c79dd3992a2b1b542fa636eec13a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer0.10-plugins-base-doc Priority: optional Section: doc Installed-Size: 5141 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Depends: libglib2.0-doc, gstreamer0.10-doc Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-plugins-base-doc_0.10.36-1.1ubuntu2_all.deb Size: 357418 MD5sum: c45b53243d3e08af6568384add48069a SHA1: fe7255111f7c2c1b753c7b47a7caa36623d88e4f SHA256: d1aa0066b0fc4d7c49e4036d3a3bec37d6e93df65413fbc0921981618dd6e0c6 Description: GStreamer documentation for plugins from the "base" set Homepage: http://gstreamer.freedesktop.org Description-md5: aaf86bd34d894dca484623ae59419aad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer0.10-plugins-good Priority: optional Section: libs Installed-Size: 5316 Maintainer: Ubuntu Desktop Team Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-good0.10 Version: 0.10.31-3+nmu1ubuntu5 Replaces: gstreamer0.10-plugins-bad (<< 0.10.21.2), gstreamer0.10-plugins-good-doc (<< 0.10.6-2), gstreamer0.10-plugins-really-bad (<< 0.10.21.2) Provides: gstreamer0.10-audiosink, gstreamer0.10-audiosource, gstreamer0.10-videosink, gstreamer0.10-videosource, gstreamer0.10-visualization Depends: libaa1 (>= 1.4p5), libavc1394-0 (>= 0.5.3), libbz2-1.0, libc6 (>= 2.11), libcaca0 (>= 0.99.beta17-1), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10.0), libdv4, libflac8 (>= 1.3.0), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base0.10-0 (>= 0.10.36), libgstreamer0.10-0 (>= 0.10.36-1.1), libgudev-1.0-0 (>= 146), libiec61883-0 (>= 1.2.0), libjack-jackd2-0 (>= 1.9.5~dfsg-14) | libjack-0.116, libjpeg8 (>= 8c), liborc-0.4-0 (>= 1:0.4.18), libpng12-0 (>= 1.2.13-4), libraw1394-11, libshout3, libsoup-gnome2.4-1 (>= 2.27.4), libsoup2.4-1 (>= 2.26.1), libspeex1 (>= 1.2~beta3-1), libstdc++6 (>= 4.1.1), libtag1c2a (>= 1.5), libv4l-0 (>= 0.5.0), libwavpack1 (>= 4.40.0), libx11-6, libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxml2 (>= 2.7.4), libxv1, zlib1g (>= 1:1.1.4), gstreamer0.10-plugins-base Pre-Depends: multiarch-support Recommends: gstreamer0.10-x Breaks: gstreamer0.10-plugins-bad (<< 0.10.21.2), gstreamer0.10-plugins-really-bad (<< 0.10.21.2) Filename: pool/main/g/gst-plugins-good0.10/gstreamer0.10-plugins-good_0.10.31-3+nmu1ubuntu5_i386.deb Size: 1343826 MD5sum: f68d364af8f4dd6002e5e0597cf90335 SHA1: 6527fda0f2b87799ed2a46ea5868b016d8e7b184 SHA256: 42140dd27d0d01565b23fe31e0df47e7ff32db21d44ed93b2a4a118ad02f5d97 Description: GStreamer plugins from the "good" set Multi-Arch: same Gstreamer-Decoders: application/x-3gp; application/x-apetag; application/x-icy; application/x-id3; application/x-navi-animation; application/x-rtcp; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string){ AMR, AMR-WB }, encoding-params=(string)1, octet-align=(string)1, crc=(string){ 0, 1 }, robust-sorting=(string)0, interleaving=(string)0; application/x-rtp, media=(string){ video, audio, application }, payload=(int)[ 96, 127 ], encoding-name=(string)MPEG4-GENERIC, streamtype=(string){ 4, 5 }, mode=(string){ generic, CELP-cbr, CELP-vbr, AAC-lbr, AAC-hbr }; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string)SPEEX, encoding-params=(string)1; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string)SIREN, dct-length=(int)320; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string)ILBC, mode=(string){ 20, 30 }; application/x-rtp, media=(string){ video, audio }, payload=(int)[ 96, 127 ], encoding-name=(string)DV, encode=(string){ SD-VCR/525-60, SD-VCR/625-50, HD-VCR/1125-60, HD-VCR/1250-50, SDL-VCR/525-60, SDL-VCR/625-50, 306M/525-60, 306M/625-50, 314M-25/525-60, 314M-25/625-50, 314M-50/525-60, 314M-50/625-50 }; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string){ TELEPHONE-EVENT, VORBIS, X-QDM, QCELP, MP4A-LATM, L16, MPA-ROBUST, X-MP3-DRAFT-00, X-MP3-DRAFT-01, X-MP3-DRAFT-02, X-MP3-DRAFT-03, X-MP3-DRAFT-04, X-MP3-DRAFT-05, X-MP3-DRAFT-06, MPA, PCMU, PCMA, GSM, G729, G726, G726-16, G726-24, G726-32, G726-40, AAL2-G726-16, AAL2-G726-24, AAL2-G726-32, AAL2-G726-40, G723, G722, CELT, BV16, BV32, AC3 }; application/x-rtp, payload=(int)[ 96, 127 ], media=(string){ audio, video }, encoding-name=(string){ X-QT, X-QUICKTIME }; application/x-rtp, media=(string)video, payload=(int)[ 96, 127 ], encoding-name=(string){ RAW, THEORA, X-SV3V-ES, X-SORENSON-VIDEO, X-SORENSONVIDEO, X-SorensonVideo, MP4V-ES, MP2T-ES, MP1S, JPEG, JPEG2000, H264, H263, H263-2000, MPV, H263-1998 }; application/x-rtp, media=(string)other, payload=(int)[ 96, 127 ], encoding-name=(string)MP1S; application/x-rtp, media=(string)video, payload=(int)34, encoding-name=(string)H263; application/x-rtp, media=(string)audio, payload=(int)0, encoding-name=(string)PCMU; application/x-rtp, media=(string)audio, payload=(int)8, encoding-name=(string)PCMA; application/x-rtp, media=(string)application, payload=(int)[ 96, 127 ], encoding-name=(string)X-GST; application/x-rtp, media=(string)audio, payload=(int){ 12, 10, 11, 14, 3, 18, 4, 9 }; application/x-rtp, media=(string)video, payload=(int){ 33, 26, 32 }; application/x-subtitle-avi; audio/ac3; audio/mpeg, mpegversion=(int){ 1, 2, 4 }; audio/x-ac3; audio/x-alaw; audio/x-amr-nb-sh; audio/x-amr-wb-sh; audio/x-au; audio/x-dts; audio/x-eac3; audio/x-flac; audio/x-m4a; audio/x-mulaw; audio/x-speex; audio/x-wav; audio/x-wavpack, framed=(boolean){ true, false }; audio/x-wavpack-correction, framed=(boolean)false; image/bmp; image/gif; image/jpeg, sof-marker=(int){ 0, 1, 2, 5, 6, 7, 9, 10, 13, 14 }; image/png; image/svg; image/svg+xml; image/tiff; image/vnd.wap.wbmp; image/x-MS-bmp; image/x-bitmap; image/x-bmp; image/x-cmu-raster; image/x-icon; image/x-pcx; image/x-pixmap; image/x-portable-anymap; image/x-portable-bitmap; image/x-portable-graymap; image/x-portable-pixmap; image/x-sun-raster; image/x-tga; multipart/x-mixed-replace; text/x-cmml, encoded=(boolean)true; video/mj2; video/quicktime; video/webm; video/x-dv, systemstream=(boolean){ false, true }; video/x-fli; video/x-flv; video/x-matroska; video/x-msvideo; video/x-smoke Gstreamer-Elements: 3gppmux, aacparse, aasink, ac3parse, agingtv, alawdec, alawenc, alpha, alphacolor, amrparse, apedemux, apev2mux, aspectratiocrop, asteriskh263, audioamplify, audiochebband, audiocheblimit, audiodynamic, audioecho, audiofirfilter, audioiirfilter, audioinvert, audiokaraoke, audiopanorama, audiowsincband, audiowsinclimit, auparse, autoaudiosink, autoaudiosrc, autoconvert, autovideoconvert, autovideosink, autovideosrc, avidemux, avimux, avisubtitle, breakmydata, cacasink, cairooverlay, cairorender, cairotextoverlay, cairotimeoverlay, capsdebug, capssetter, cmmldec, cmmlenc, cpureport, cutter, dcaparse, deinterlace, deinterleave, dicetv, dtmfdetect, dtmfsrc, dv1394src, dvdec, dvdemux, dynudpsink, edgetv, efence, equalizer-10bands, equalizer-3bands, equalizer-nbands, flacdec, flacenc, flacparse, flactag, flvdemux, flvmux, flxdec, gamma, gdkpixbufdec, gdkpixbufscale, gdkpixbufsink, goom, goom2k1, gppmux, gstrtpbin, gstrtpjitterbuffer, gstrtpptdemux, gstrtpsession, gstrtpssrcdemux, hdv1394src, icydemux, id3demux, id3v2mux, imagefreeze, interleave, ismlmux, jackaudiosink, jackaudiosrc, jifmux, jpegdec, jpegenc, jpegparse, level, liveadder, matroskademux, matroskamux, matroskaparse, mj2mux, monoscope, mp4mux, mpegaudioparse, mulawdec, mulawenc, multifilesink, multifilesrc, multipartdemux, multipartmux, multiudpsink, navigationtest, navseek, optv, oss4mixer, oss4sink, oss4src, ossmixer, osssink, osssrc, pngdec, pngenc, progressreport, pushfilesrc, qtdemux, qtmoovrecover, qtmux, quarktv, radioactv, revtv, rganalysis, rglimiter, rgvolume, rippletv, rndbuffersize, rtpL16depay, rtpL16pay, rtpac3depay, rtpac3pay, rtpamrdepay, rtpamrpay, rtpbvdepay, rtpbvpay, rtpceltdepay, rtpceltpay, rtpdec, rtpdepay, rtpdtmfdepay, rtpdtmfmux, rtpdtmfsrc, rtpdvdepay, rtpdvpay, rtpg722depay, rtpg722pay, rtpg723depay, rtpg723pay, rtpg726depay, rtpg726pay, rtpg729depay, rtpg729pay, rtpgsmdepay, rtpgsmpay, rtpgstdepay, rtpgstpay, rtph263depay, rtph263pay, rtph263pdepay, rtph263ppay, rtph264depay, rtph264pay, rtpilbcdepay, rtpilbcpay, rtpj2kdepay, rtpj2kpay, rtpjpegdepay, rtpjpegpay, rtpmp1sdepay, rtpmp2tdepay, rtpmp2tpay, rtpmp4adepay, rtpmp4apay, rtpmp4gdepay, rtpmp4gpay, rtpmp4vdepay, rtpmp4vpay, rtpmpadepay, rtpmpapay, rtpmparobustdepay, rtpmpvdepay, rtpmpvpay, rtpmux, rtppcmadepay, rtppcmapay, rtppcmudepay, rtppcmupay, rtpqcelpdepay, rtpqdm2depay, rtpsirendepay, rtpsirenpay, rtpspeexdepay, rtpspeexpay, rtpsv3vdepay, rtptheoradepay, rtptheorapay, rtpvorbisdepay, rtpvorbispay, rtpvrawdepay, rtpvrawpay, rtpxqtdepay, rtspsrc, shagadelictv, shapewipe, shmsink, shmsrc, shout2send, smokedec, smokeenc, smpte, smptealpha, souphttpclientsink, souphttpsrc, spectrum, speexdec, speexenc, splitfilesrc, streaktv, taginject, testsink, udpsink, udpsrc, v4l2radio, v4l2sink, v4l2src, vertigotv, videobalance, videobox, videocrop, videoflip, videomixer, videomixer2, warptv, wavenc, wavpackdec, wavpackenc, wavpackparse, wavparse, webmmux, ximagesrc, y4menc Gstreamer-Encoders: application/pdf; application/postscript; application/x-rtp; application/x-yuv4mpeg, y4mversion=(int)2; audio/x-alaw; audio/x-flac; audio/x-mulaw; audio/x-speex; audio/x-wav; audio/x-wavpack-correction, framed=(boolean)true; image/jpeg; image/png; image/svg+xml; multipart/x-mixed-replace; text/x-cmml, encoded=(boolean)true; video/mj2; video/quicktime; video/webm; video/x-flv; video/x-matroska; video/x-msvideo; video/x-smoke Gstreamer-Uri-Sinks: udp Gstreamer-Uri-Sources: dv, hdv, http, https, pushfile, radio, rtsp, rtsp-sdp, rtsph, rtspt, rtspu, udp, v4l2 Gstreamer-Version: 0.10 Description-md5: 5af11b405c70a6a41fff183475cb6042 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntu-gnome-desktop Package: gstreamer0.10-plugins-good-dbg Priority: extra Section: libdevel Installed-Size: 7144 Maintainer: Ubuntu Desktop Team Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-good0.10 Version: 0.10.31-3+nmu1ubuntu5 Replaces: gstreamer0.10-plugins-bad-dbg (<< 0.10.21.2) Depends: gstreamer0.10-plugins-good (= 0.10.31-3+nmu1ubuntu5), gstreamer0.10-pulseaudio (= 0.10.31-3+nmu1ubuntu5), gstreamer0.10-gconf (= 0.10.31-3+nmu1ubuntu5) Breaks: gstreamer0.10-plugins-bad-dbg (<< 0.10.21.2) Filename: pool/main/g/gst-plugins-good0.10/gstreamer0.10-plugins-good-dbg_0.10.31-3+nmu1ubuntu5_i386.deb Size: 5998700 MD5sum: 58f2787ceec57d515b68e78bb12bf516 SHA1: 3cf57d0ea42762099bcc2cb9c565233c3d0015ef SHA256: 295488bffaf7adf47ee77a1670c8e648700f8505d859127aee67d6e1f66c3788 Description: GStreamer plugins from the "good" set Multi-Arch: same Description-md5: 23ae3e3874bef9755952358103d2a3d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer0.10-plugins-good-doc Priority: optional Section: doc Installed-Size: 2990 Maintainer: Ubuntu Desktop Team Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gst-plugins-good0.10 Version: 0.10.31-3+nmu1ubuntu5 Depends: gstreamer0.10-doc, gstreamer0.10-plugins-base-doc Filename: pool/main/g/gst-plugins-good0.10/gstreamer0.10-plugins-good-doc_0.10.31-3+nmu1ubuntu5_all.deb Size: 221620 MD5sum: 661774d4442467df4cee6db52c860010 SHA1: 6d2f968ee3aa615a8f1be459c5cf1c5dca3d8070 SHA256: 908b920a84a908ec0076cf6c58e491dbf54869e17d6b087feec0a7f32054fdf5 Description: GStreamer documentation for plugins from the "good" set Description-md5: 39674248e63796a3ad344a5d7425ad8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer0.10-pulseaudio Priority: optional Section: sound Installed-Size: 251 Maintainer: Ubuntu Desktop Team Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-good0.10 Version: 0.10.31-3+nmu1ubuntu5 Provides: gstreamer0.10-audiosink, gstreamer0.10-audiosource Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base0.10-0 (>= 0.10.36), libgstreamer0.10-0 (>= 0.10.36), libpulse0 (>= 1:1.0) Filename: pool/main/g/gst-plugins-good0.10/gstreamer0.10-pulseaudio_0.10.31-3+nmu1ubuntu5_i386.deb Size: 98906 MD5sum: a6061936244e33ef340c3781040a202a SHA1: a52bee584a7c839dd9226c66dbdd8d27b077ffb8 SHA256: cc9c6b2a8e306b4cc3fa71e724702ccd9ec26a2055a6f37ceb6794d13e6f4bd6 Description: GStreamer plugin for PulseAudio Multi-Arch: same Gstreamer-Elements: pulseaudiosink, pulsemixer, pulsesink, pulsesrc Gstreamer-Version: 0.10 Description-md5: b4aa98329fafbb54ea588de42c256d78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer0.10-tools Priority: optional Section: utils Installed-Size: 778 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.24.0), pkg-config, libgstreamer0.10-0 (>= 0.10.36) Suggests: gstreamer0.10-plugins-base Filename: pool/main/g/gstreamer0.10/gstreamer0.10-tools_0.10.36-1.2ubuntu3_i386.deb Size: 40974 MD5sum: 2fcd71f9dcf123119868111f5580b9a6 SHA1: 70d4c3467e98317c0257549d57f870630475c9f9 SHA256: 009c6d39f9bfccab4d8003cc33166ce61b5199a6468998d9143277030fb05b05 Description: Tools for use with GStreamer Homepage: http://gstreamer.freedesktop.org Description-md5: 909df9df4ba32a53040e4e54751c1cfa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: gstreamer0.10-x Priority: optional Section: libs Installed-Size: 303 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Provides: gstreamer0.10-videosink Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.31.8), libgstreamer0.10-0 (>= 0.10.36), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.16.0), libx11-6, libxext6, libxv1, libgstreamer-plugins-base0.10-0 (>= 0.10.36) Filename: pool/main/g/gst-plugins-base0.10/gstreamer0.10-x_0.10.36-1.1ubuntu2_i386.deb Size: 57720 MD5sum: 1d00a718768161ce8694668cecbaef47 SHA1: 5391bc7dd6ce7ec5fcb47d0ed6d194aeab148fa0 SHA256: db965c8141de290cff921c3f6a80630d6629f98953d09453aca4ae588a3b3ba2 Description: GStreamer plugins for X11 and Pango Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Gstreamer-Elements: clockoverlay, textoverlay, textrender, timeoverlay, ximagesink, xvimagesink Gstreamer-Version: 0.10 Description-md5: f30e1dbce14d6ece228c6b4e6dfdfdbd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntu-gnome-desktop Package: gstreamer1.0-alsa Priority: optional Section: libs Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base1.0 Version: 1.2.3-1 Provides: gstreamer1.0-audiosink, gstreamer1.0-audiosource Depends: libasound2 (>= 1.0.16), libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgstreamer1.0-0 (>= 1.0.0), libgstreamer-plugins-base1.0-0 (>= 1.2.3) Recommends: alsa-base (>= 0.9.0) Suggests: alsa-utils (>= 0.9.0) Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-alsa_1.2.3-1_i386.deb Size: 27596 MD5sum: dfd041df972f9c82ef2bf139184b6b9f SHA1: 6f088f922b616da0408f64f17d21ce8bf0f44b5a SHA256: 79e4b77cfacf244ea542f8b05e9870ebfad38c782690879de2bad741585de545 Description: GStreamer plugin for ALSA Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Gstreamer-Elements: alsasink, alsasrc Gstreamer-Version: 1.2 Description-md5: 339f038172c486f3cef220df0c0e5ac4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gstreamer1.0-clutter Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-gst-2.0 Version: 2.0.8-1build1 Depends: libc6 (>= 2.3.6-6~), libclutter-1.0-0 (>= 1.13.0), libcogl15 (>= 1.15.8), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libx11-6 Filename: pool/main/c/clutter-gst-2.0/gstreamer1.0-clutter_2.0.8-1build1_i386.deb Size: 22862 MD5sum: 96d66b59298147006f39164fa3d7dc72 SHA1: 040f2218ae47b2da88fe91e3b040e84944f7e6ff SHA256: 5cd43fb1413eb6e839c57916d5e2490f7760a2a5c13d22ed6e68c1b9f596e802 Description: Clutter PLugin for GStreamer 1.0 Homepage: http://www.clutter-project.org/ Description-md5: 8ea8d25fb358dcee12567aa5357196c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer1.0-doc Priority: optional Section: doc Installed-Size: 8210 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gstreamer1.0 Version: 1.2.3-1 Depends: libglib2.0-doc Recommends: libgstreamer1.0-dev (= 1.2.3-1) Filename: pool/main/g/gstreamer1.0/gstreamer1.0-doc_1.2.3-1_all.deb Size: 472624 MD5sum: 8ae49100d599a55e6274e2fb8a7c1a75 SHA1: 1b93ba08faa18c000ee918a574ad1a06c3c7e185 SHA256: a82cf6524062ef882d17ef86b586d85239552f60c6052b67117d54f5685d55b8 Description: GStreamer core documentation and manuals Homepage: http://gstreamer.freedesktop.org Description-md5: 2274936f9039765c43e33252ae21527d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer1.0-nice Priority: optional Section: net Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: libnice Version: 0.1.4-1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.31.8), libgstreamer1.0-0 (>= 1.0.0), libnice10 (>= 0.1.0) Filename: pool/main/libn/libnice/gstreamer1.0-nice_0.1.4-1_i386.deb Size: 18070 MD5sum: b13e7a8450ea7575d846e5c85888e321 SHA1: 5b2ea312baa538b389c6a8d1631c1c5752b8fd89 SHA256: 0472385253b477e68e4005399943c7d0c73827edb49aec61ae685e64d9b3dc97 Description: ICE library (GStreamer plugin) Multi-Arch: same Homepage: http://nice.freedesktop.org/ Description-md5: e6a5fecf0861bb3b1b3bda258d7f2552 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gstreamer1.0-plugins-base Priority: optional Section: libs Installed-Size: 1782 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base1.0 Version: 1.2.3-1 Provides: gstreamer1.0-audiosource, gstreamer1.0-videosource Depends: libc6 (>= 2.7), libcdparanoia0 (>= 3.10.2+debian), libglib2.0-0 (>= 2.37.3), libgstreamer1.0-0 (>= 1.2.0), libogg0 (>= 1.0rc3), liborc-0.4-0 (>= 1:0.4.18), libtheora0 (>= 1.0), libvisual-0.4-0 (>= 0.4.0-4), libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libgstreamer-plugins-base1.0-0 (>= 1.2.3) Suggests: gvfs Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-plugins-base_1.2.3-1_i386.deb Size: 481276 MD5sum: 4a8b5970975957ce4f7accad138eb63a SHA1: 40753f03636acc95108444c2445a9b2ed471716b SHA256: 9c579b07dd95ae7234df27e40b02e2cd5bb9ed9b9500cb05270235aac39012fc Description: GStreamer plugins from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Gstreamer-Decoders: application/kate; application/ogg; application/x-ass; application/x-ogg-avi; application/x-ogm-audio; application/x-ogm-text; application/x-ogm-video; application/x-ssa; application/x-subtitle; application/x-subtitle-dks; application/x-subtitle-mpl2; application/x-subtitle-qttext; application/x-subtitle-sami; application/x-subtitle-tmplayer; audio/ogg; audio/x-vorbis; video/ogg; video/x-theora Gstreamer-Elements: adder, appsink, appsrc, audioconvert, audiorate, audioresample, audiotestsrc, cdparanoiasrc, decodebin, encodebin, giosink, giosrc, giostreamsink, giostreamsrc, multifdsink, multisocketsink, oggaviparse, oggdemux, oggmux, oggparse, ogmaudioparse, ogmtextparse, ogmvideoparse, playbin, playsink, ssaparse, streamsynchronizer, subparse, subtitleoverlay, tcpclientsink, tcpclientsrc, tcpserversink, tcpserversrc, theoradec, theoraenc, theoraparse, uridecodebin, videoconvert, videorate, videoscale, videotestsrc, volume, vorbisdec, vorbisenc, vorbisparse, vorbistag Gstreamer-Encoders: application/ogg; audio/ogg; audio/x-vorbis; video/ogg; video/x-theora Gstreamer-Uri-Sinks: appsink, file Gstreamer-Uri-Sources: appsrc, cdda, file Gstreamer-Version: 1.2 Description-md5: 73eb82d2de7fe71e4455e1742423e3e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer1.0-plugins-base-apps Priority: optional Section: utils Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.32), libgstreamer1.0-0 (>= 1.0.0), gstreamer1.0-tools Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-plugins-base-apps_1.2.3-1_i386.deb Size: 25102 MD5sum: 371905bcc4a4a089667329e4e46c00c0 SHA1: 428d680a52ee330ecb773604a11edb6dcbc86030 SHA256: 1d556808a840ecf811c536f6ebc830ec324001062cfe5f82635d1fef0b42f677 Description: GStreamer helper programs from the "base" set Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: 72cc51baa52c95f36129fb0f74a62970 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: gstreamer1.0-plugins-base-dbg Priority: extra Section: debug Installed-Size: 3838 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: gstreamer1.0-alsa (= 1.2.3-1), gstreamer1.0-plugins-base (= 1.2.3-1), gstreamer1.0-x (= 1.2.3-1), libgstreamer-plugins-base1.0-0 (= 1.2.3-1) Suggests: gstreamer1.0-gnomevfs (= 1.2.3-1) Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-plugins-base-dbg_1.2.3-1_i386.deb Size: 3119438 MD5sum: 9bf9ada82a5f14b67e5870bf2370e19e SHA1: f8222dfa8394e26a142a46330aaf2b84ee343ee5 SHA256: 72c6db0058e7b6570db65b67f45c3046ca54d13b06d281465986983521b91ec7 Description: GStreamer plugins from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: b7d3c79dd3992a2b1b542fa636eec13a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer1.0-plugins-base-doc Priority: optional Section: doc Installed-Size: 5464 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: libglib2.0-doc, gstreamer1.0-doc Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-plugins-base-doc_1.2.3-1_all.deb Size: 326274 MD5sum: 5b08511b8fc1e4c4cc83082219a11178 SHA1: 633a2c0aff5c911ff15decc70b6a53d193bcdf3b SHA256: 38e898fae422d2ae5de6c7c88da0386c9ced2dd01473b233a00e0d9d02ca3b9f Description: GStreamer documentation for plugins from the "base" set Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: aaf86bd34d894dca484623ae59419aad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer1.0-plugins-good Priority: optional Section: libs Installed-Size: 5028 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Replaces: gstreamer1.0-plugins-bad (<< 1.1.2) Provides: gstreamer1.0-audiosink, gstreamer1.0-audiosource, gstreamer1.0-videosink, gstreamer1.0-videosource, gstreamer1.0-visualization Depends: libaa1 (>= 1.4p5), libavc1394-0 (>= 0.5.3), libbz2-1.0, libc6 (>= 2.17), libcaca0 (>= 0.99.beta17-1), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10.0), libdv4, libflac8 (>= 1.3.0), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.2.1), libgstreamer-plugins-good1.0-0 (= 1.2.3-1ubuntu2), libgstreamer1.0-0 (>= 1.2.0), libiec61883-0 (>= 1.2.0), libjack-jackd2-0 (>= 1.9.5~dfsg-14) | libjack-0.116, libjpeg8 (>= 8c), liborc-0.4-0 (>= 1:0.4.18), libpng12-0 (>= 1.2.13-4), libraw1394-11, libshout3, libsoup2.4-1 (>= 2.38), libspeex1 (>= 1.2~beta3-1), libstdc++6 (>= 4.1.1), libtag1c2a (>= 1.5), libv4l-0 (>= 0.5.0), libvpx1 (>= 1.3.0), libwavpack1 (>= 4.40.0), libx11-6, libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxv1, zlib1g (>= 1:1.1.4), gstreamer1.0-plugins-base Recommends: gstreamer1.0-x Breaks: gstreamer1.0-plugins-bad (<< 1.1.2) Filename: pool/main/g/gst-plugins-good1.0/gstreamer1.0-plugins-good_1.2.3-1ubuntu2_i386.deb Size: 1260046 MD5sum: 4f98e13966edbc2e3f77e09426c863e1 SHA1: 556f89142ce5e53a87c04eea8417a356e0fb5b15 SHA256: 5471ce9672c929cc0ff3b1af6693032c5b3bfea6a047524c5b99680388fb33da Description: GStreamer plugins from the "good" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Gstreamer-Decoders: application/x-3gp; application/x-apetag; application/x-icy; application/x-id3; application/x-navi-animation; application/x-rtp, media=(string)audio, encoding-name=(string){ AMR, AMR-WB }, encoding-params=(string)1, octet-align=(string)1; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], encoding-name=(string){ TELEPHONE-EVENT, SBC }; application/x-rtp, payload=(int)[ 96, 127 ], media=(string){ audio, video }, encoding-name=(string){ X-QT, X-QUICKTIME }; application/x-rtp, media=(string)audio, encoding-name=(string)SPEEX, encoding-params=(string)1; application/x-rtp, media=(string)audio, encoding-name=(string)SIREN, dct-length=(int)320; application/x-rtp, media=(string){ video, audio, application }, encoding-name=(string)MPEG4-GENERIC, mode=(string){ generic, CELP-cbr, CELP-vbr, AAC-lbr, AAC-hbr }; application/x-rtp, media=(string)audio, encoding-name=(string)ILBC, mode=(string){ 20, 30 }; application/x-rtp, media=(string){ video, audio }, encoding-name=(string)DV, encode=(string){ SD-VCR/525-60, SD-VCR/625-50, HD-VCR/1125-60, HD-VCR/1250-50, SDL-VCR/525-60, SDL-VCR/625-50, 306M/525-60, 306M/625-50, 314M-25/525-60, 314M-25/625-50, 314M-50/525-60, 314M-50/625-50 }; application/x-rtp, media=(string)video, encoding-name=(string){ RAW, VP8-DRAFT-IETF-01, THEORA, X-SV3V-ES, X-SORENSON-VIDEO, X-SORENSONVIDEO, X-SorensonVideo, MP4V-ES, MP2T, MP2T-ES, MP1S, JPEG, JPEG2000, H264, H263, H263-1998, H263-2000, MPV }; application/x-rtp, media=(string)audio, encoding-name=(string){ VORBIS, X-QDM, QCELP, MP4A-LATM, L24, L16, MPA-ROBUST, X-MP3-DRAFT-00, X-MP3-DRAFT-01, X-MP3-DRAFT-02, X-MP3-DRAFT-03, X-MP3-DRAFT-04, X-MP3-DRAFT-05, X-MP3-DRAFT-06, MPA, PCMU, PCMA, GSM, G729, G726, G726-16, G726-24, G726-32, G726-40, AAL2-G726-16, AAL2-G726-24, AAL2-G726-32, AAL2-G726-40, G723, G722, CELT, BV16, BV32, AC3 }; application/x-rtp, media=(string)audio, payload=(int){ 12, 10, 11, 14, 0, 8, 3, 18, 4, 9 }; application/x-rtp, media=(string)video, payload=(int){ 33, 26, 34, 32 }; application/x-rtp, media=(string)other, encoding-name=(string)MP1S; application/x-rtp, media=(string)application, encoding-name=(string)X-GST; application/x-subtitle-avi; audio/ac3; audio/mpeg, mpegversion=(int){ 1, 2, 4 }; audio/webm; audio/x-ac3; audio/x-alaw; audio/x-amr-nb-sh; audio/x-amr-wb-sh; audio/x-au; audio/x-dts; audio/x-eac3; audio/x-flac; audio/x-m4a; audio/x-matroska; audio/x-mulaw; audio/x-private1-ac3; audio/x-private1-dts; audio/x-sbc; audio/x-speex; audio/x-wav; audio/x-wavpack; image/bmp; image/gif; image/jpeg; image/png; image/svg; image/svg+xml; image/tiff; image/vnd.wap.wbmp; image/x-MS-bmp; image/x-bitmap; image/x-bmp; image/x-cmu-raster; image/x-icon; image/x-pcx; image/x-pixmap; image/x-portable-anymap; image/x-portable-bitmap; image/x-portable-graymap; image/x-portable-pixmap; image/x-sun-raster; image/x-tga; multipart/x-mixed-replace; video/mj2; video/quicktime; video/webm; video/x-dv, systemstream=(boolean){ false, true }; video/x-fli; video/x-flv; video/x-matroska; video/x-matroska-3d; video/x-msvideo; video/x-vp8; video/x-vp9 Gstreamer-Elements: 3gppmux, aacparse, aasink, ac3parse, agingtv, alawdec, alawenc, alpha, alphacolor, amrparse, apedemux, apev2mux, aspectratiocrop, asteriskh263, audioamplify, audiochebband, audiocheblimit, audiodynamic, audioecho, audiofirfilter, audioiirfilter, audioinvert, audiokaraoke, audiopanorama, audiowsincband, audiowsinclimit, auparse, autoaudiosink, autoaudiosrc, autovideosink, autovideosrc, avidemux, avimux, avisubtitle, breakmydata, cacasink, cairooverlay, capssetter, cpureport, cutter, dcaparse, deinterlace, deinterleave, dicetv, dtmfsrc, dv1394src, dvdec, dvdemux, dynudpsink, edgetv, equalizer-10bands, equalizer-3bands, equalizer-nbands, flacdec, flacenc, flacparse, flactag, flvdemux, flvmux, flxdec, gamma, gdkpixbufdec, gdkpixbufoverlay, gdkpixbufsink, goom, goom2k1, hdv1394src, icydemux, id3demux, id3v2mux, imagefreeze, interleave, ismlmux, jackaudiosink, jackaudiosrc, jifmux, jpegdec, jpegenc, jpegparse, level, matroskademux, matroskamux, matroskaparse, mj2mux, monoscope, mp4mux, mpegaudioparse, mulawdec, mulawenc, multifilesink, multifilesrc, multipartdemux, multipartmux, multiudpsink, navigationtest, navseek, optv, oss4sink, oss4src, osssink, osssrc, pngdec, pngenc, progressreport, pushfilesrc, qtdemux, qtmoovrecover, qtmux, quarktv, radioactv, revtv, rganalysis, rglimiter, rgvolume, rippletv, rndbuffersize, rtpL16depay, rtpL16pay, rtpL24depay, rtpL24pay, rtpac3depay, rtpac3pay, rtpamrdepay, rtpamrpay, rtpbin, rtpbvdepay, rtpbvpay, rtpceltdepay, rtpceltpay, rtpdec, rtpdtmfdepay, rtpdtmfmux, rtpdtmfsrc, rtpdvdepay, rtpdvpay, rtpg722depay, rtpg722pay, rtpg723depay, rtpg723pay, rtpg726depay, rtpg726pay, rtpg729depay, rtpg729pay, rtpgsmdepay, rtpgsmpay, rtpgstdepay, rtpgstpay, rtph263depay, rtph263pay, rtph263pdepay, rtph263ppay, rtph264depay, rtph264pay, rtpilbcdepay, rtpilbcpay, rtpj2kdepay, rtpj2kpay, rtpjitterbuffer, rtpjpegdepay, rtpjpegpay, rtpmp1sdepay, rtpmp2tdepay, rtpmp2tpay, rtpmp4adepay, rtpmp4apay, rtpmp4gdepay, rtpmp4gpay, rtpmp4vdepay, rtpmp4vpay, rtpmpadepay, rtpmpapay, rtpmparobustdepay, rtpmpvdepay, rtpmpvpay, rtpmux, rtppcmadepay, rtppcmapay, rtppcmudepay, rtppcmupay, rtpptdemux, rtpqcelpdepay, rtpqdm2depay, rtprtxqueue, rtpsbcdepay, rtpsbcpay, rtpsession, rtpsirendepay, rtpsirenpay, rtpspeexdepay, rtpspeexpay, rtpssrcdemux, rtpsv3vdepay, rtptheoradepay, rtptheorapay, rtpvorbisdepay, rtpvorbispay, rtpvp8depay, rtpvp8pay, rtpvrawdepay, rtpvrawpay, rtpxqtdepay, rtspsrc, sbcparse, scaletempo, shagadelictv, shapewipe, shout2send, smpte, smptealpha, souphttpclientsink, souphttpsrc, spectrum, speexdec, speexenc, splitfilesrc, streaktv, taginject, testsink, udpsink, udpsrc, v4l2radio, v4l2sink, v4l2src, vertigotv, videobalance, videobox, videocrop, videoflip, videomedian, videomixer, vp8dec, vp8enc, vp9dec, vp9enc, warptv, wavenc, wavpackdec, wavpackenc, wavpackparse, wavparse, webmmux, ximagesrc, y4menc Gstreamer-Encoders: application/x-rtp; application/x-yuv4mpeg, y4mversion=(int)2; audio/webm; audio/x-alaw; audio/x-flac; audio/x-matroska; audio/x-mulaw; audio/x-speex; audio/x-wav; audio/x-wavpack-correction, framed=(boolean)true; image/jpeg, sof-marker=(int){ 0, 1, 2, 9 }; image/png; multipart/x-mixed-replace; video/mj2; video/quicktime; video/webm; video/x-flv; video/x-matroska; video/x-matroska-3d; video/x-msvideo; video/x-vp8, profile=(string){ 0, 1, 2, 3 }; video/x-vp9, profile=(string){ 0, 1, 2, 3 } Gstreamer-Uri-Sinks: udp Gstreamer-Uri-Sources: dv, hdv, http, https, icy, icyx, pushfile, radio, rtsp, rtsp-sdp, rtsph, rtsps, rtspsh, rtspst, rtspsu, rtspt, rtspu, splitfile, udp, v4l2 Gstreamer-Version: 1.2 Description-md5: 5af11b405c70a6a41fff183475cb6042 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer1.0-plugins-good-dbg Priority: extra Section: debug Installed-Size: 6457 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Replaces: gstreamer1.0-plugins-bad (<< 1.1.2) Depends: gstreamer1.0-plugins-good (= 1.2.3-1ubuntu2), gstreamer1.0-pulseaudio (= 1.2.3-1ubuntu2) Breaks: gstreamer1.0-plugins-bad (<< 1.1.2) Filename: pool/main/g/gst-plugins-good1.0/gstreamer1.0-plugins-good-dbg_1.2.3-1ubuntu2_i386.deb Size: 5372004 MD5sum: 5d12f7897c70df3754bef674d688bea1 SHA1: ee7814e8b568851bd98e8347d21ed746c50f47e2 SHA256: 0dbd0e6148dc95a6954c0137f310838e0e9212d0023cd71b11a4a5252bd9e1d1 Description: GStreamer plugins from the "good" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Description-md5: 23ae3e3874bef9755952358103d2a3d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer1.0-plugins-good-doc Priority: optional Section: doc Installed-Size: 3005 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Depends: gstreamer1.0-doc, gstreamer1.0-plugins-base-doc Filename: pool/main/g/gst-plugins-good1.0/gstreamer1.0-plugins-good-doc_1.2.3-1ubuntu2_all.deb Size: 185732 MD5sum: 20c09a9a8330e5f0b3b74942aef79527 SHA1: 030bd6f4dd4b6320367e220db2caf32e7e0d0e69 SHA256: 523f5b87d13f98f27eec5020b866a0c25eb5e8d0094be01651fe43405208ab44 Description: GStreamer documentation for plugins from the "good" set Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Description-md5: 39674248e63796a3ad344a5d7425ad8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gstreamer1.0-pulseaudio Priority: optional Section: sound Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Provides: gstreamer1.0-audiosink, gstreamer1.0-audiosource Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.2.0), libpulse0 (>= 1:2.0) Filename: pool/main/g/gst-plugins-good1.0/gstreamer1.0-pulseaudio_1.2.3-1ubuntu2_i386.deb Size: 48490 MD5sum: ddc3e84186c06bdeb5d2455c19898dae SHA1: c231c8dddeb51562b380ebe032de27472e3a14a2 SHA256: 4bef7ca5a2e4bb8df634f4dd1a31254e547d9b4e6d77b230700ab0ae9d64a5dd Description: GStreamer plugin for PulseAudio Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Gstreamer-Elements: pulsesink, pulsesrc Gstreamer-Version: 1.2 Description-md5: b4aa98329fafbb54ea588de42c256d78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gstreamer1.0-tools Priority: optional Section: utils Installed-Size: 903 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gstreamer1.0 Version: 1.2.3-1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.32), pkg-config, libgstreamer1.0-0 (>= 1.2.3) Suggests: gstreamer1.0-plugins-base Filename: pool/main/g/gstreamer1.0/gstreamer1.0-tools_1.2.3-1_i386.deb Size: 36644 MD5sum: 928f44e1b3c0391b293f7981eb84c6ef SHA1: 92569c13e8f34796275f1bfa0dcc75a617abc3ec SHA256: 0130e571df170b0cf227c76472a71a7234371adbc90be9adcad614710049e66c Description: Tools for use with GStreamer Homepage: http://gstreamer.freedesktop.org Description-md5: 909df9df4ba32a53040e4e54751c1cfa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: gstreamer1.0-x Priority: optional Section: libs Installed-Size: 290 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base1.0 Version: 1.2.3-1 Provides: gstreamer1.0-videosink Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgstreamer1.0-0 (>= 1.0.0), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.16.0), libx11-6, libxext6, libxv1, libgstreamer-plugins-base1.0-0 (>= 1.2.3) Filename: pool/main/g/gst-plugins-base1.0/gstreamer1.0-x_1.2.3-1_i386.deb Size: 62598 MD5sum: 3514a23f9847526deea7071fd415ce36 SHA1: 3e16c504bc3919eceffc7b2922c933c2f747b9cc SHA256: 9a3ddc23eeff64feb091656c78dc6eea7c5a80194032aefe7328d8abfb939b06 Description: GStreamer plugins for X11 and Pango Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Gstreamer-Elements: clockoverlay, textoverlay, textrender, timeoverlay, ximagesink, xvimagesink Gstreamer-Version: 1.2 Description-md5: f30e1dbce14d6ece228c6b4e6dfdfdbd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gtester2xunit Priority: extra Section: misc Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Martin Mrazik Architecture: all Version: 0.1daily13.06.05-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python-libxslt1 Filename: pool/main/g/gtester2xunit/gtester2xunit_0.1daily13.06.05-0ubuntu2_all.deb Size: 4884 MD5sum: e835fc42dd3ce45548dc7be29b85cce6 SHA1: e52d16eee311c132a6429dbe3e04d327c202a0d5 SHA256: 16ffb2ac5d338e9eb84da40b229e5f75d73cabd6eeebd1f656bae29200983211 Description: Helper for converting gtester xml output to xunit. Description-md5: 248c11eda3977a38c998cea31de71054 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk-3-examples Priority: extra Section: x11 Installed-Size: 2035 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Replaces: libgtk-3-common (<< 3.5.4) Depends: libc6 (>= 2.4), libcairo2 (>= 1.13.0~20140204), libgdk-pixbuf2.0-0 (>= 2.25.2), libglib2.0-0 (>= 2.37.5), libgtk-3-0 (= 3.10.8-0ubuntu1), libpango-1.0-0 (>= 1.32.4), libpangocairo-1.0-0 (>= 1.32.4), dconf-gsettings-backend | gsettings-backend Breaks: libgtk-3-common (<< 3.5.4) Filename: pool/main/g/gtk+3.0/gtk-3-examples_3.10.8-0ubuntu1_i386.deb Size: 348790 MD5sum: 41a6d2876b576fa70c7d70e99519de32 SHA1: 459724f5fd95684c4ce13df4b72dee5132885d61 SHA256: 18bc1675d08087cb5056c94ca4de62696899d259c13098406e26c369e7551a1f Description: example files for GTK+ 3 Homepage: http://www.gtk.org/ Description-md5: 20d01ceb8b030c4e6e1bcf1ff939c8a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk-doc-tools Priority: optional Section: gnome Installed-Size: 2629 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk-doc Version: 1.20-1ubuntu1 Depends: perl, python (>= 2.3), jade (>= 1.2.1-35), docbook-dsssl, docbook-xml (>= 4.3), docbook-xsl (>= 1.64.1.0), docbook-to-man, xsltproc (>= 1.1.15), gnome-common Recommends: pkg-config (>= 0.19.0) Conflicts: sgml2x (<< 1.0.0-2) Filename: pool/main/g/gtk-doc/gtk-doc-tools_1.20-1ubuntu1_all.deb Size: 155086 MD5sum: c37ae948418d20478872bf950d9eb479 SHA1: 8e78898e0756a5a66e63f2c18faff7c23943f5da SHA256: 75c60521c41953bbd9e39bcc6e6be9693fbc41bf83b2c0c153a50fcc3e21ae44 Description: GTK+ documentation tools Multi-Arch: foreign Description-md5: d81800b98624f248b7995144c6f0cbf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk-im-libthai Priority: optional Section: libs Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: i386 Version: 0.2.1-4ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.24.5-4), libthai0 (>= 0.1.12) Recommends: im-switch Filename: pool/main/g/gtk-im-libthai/gtk-im-libthai_0.2.1-4ubuntu1_i386.deb Size: 9618 MD5sum: 56632cbcc2c7e000c8096ff3b589d1be SHA1: f73dd1cdf1a5f9a31985a21b99029886cba9c67e SHA256: 420a398ae81d819aaa732c8a5761a62e3a83c52fe070038d7a9e031cd5935c5a Description: GTK+ 2 Input Method Module using LibThai Multi-Arch: same Homepage: http://linux.thai.net/projects/libthai Description-md5: 776effbebeeb007fc66f3ab370061078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: gtk-sharp2-examples Priority: optional Section: libs Installed-Size: 903 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gtk-sharp2 Version: 2.12.10-5 Depends: mono-runtime (>= 2.10.1), libglade2.0-cil (>= 2.12.10-1ubuntu1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-cairo4.0-cil (>= 2.10.1), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-drawing4.0-cil (>= 1.0) Filename: pool/main/g/gtk-sharp2/gtk-sharp2-examples_2.12.10-5_all.deb Size: 270680 MD5sum: 9168349059cc3f6c143b746b3a480164 SHA1: 3ef3ead05c331f47e4a118ba5f74a0915a70818f SHA256: 0f7f55180aba7c5d59f5736b7dbc5d63e8a7e8588a759bca4af6dfa2b7385e01 Description: sample applications for the GTK# 2.10 toolkit Homepage: http://www.mono-project.com/GtkSharp Description-md5: ebe2699f12a4078218f82ff84d736171 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk-sharp2-gapi Priority: optional Section: libs Installed-Size: 374 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: i386 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: gtk-sharp2-unstable-gapi Depends: libglib2.0-cil (>= 2.12.10-5), libxml-libxml-perl, mono-runtime (>= 2.10.1), libc6 (>= 2.16) | libc6.1 (>= 2.16) | libc0.1 (>= 2.16), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-xml4.0-cil (>= 1.0) Conflicts: gtk-sharp2-unstable-gapi Filename: pool/main/g/gtk-sharp2/gtk-sharp2-gapi_2.12.10-5_i386.deb Size: 66782 MD5sum: 86dac5127dbff1f226e7ddba1aeadeb7 SHA1: 15fe63b7586c9a98a3b0cb92352dc34dae1bdd1a SHA256: 73d931ed4a499a8eea3f3957b7bc56248ac924958de2e576f27a5cedf77aedc6 Description: C source parser and C# code generator for GObject based APIs Homepage: http://www.mono-project.com/GtkSharp Description-md5: 38acd13008e1b751281924b2e53ad340 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk2-engines Priority: optional Section: gnome Installed-Size: 1201 Maintainer: Ubuntu Desktop Team Original-Maintainer: Ed Boraas Architecture: i386 Version: 1:2.20.2-3ubuntu1 Depends: libc6 (>= 2.1.3), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.19.7-2) Breaks: gnome-themes-extras (<< 2) Filename: pool/main/g/gtk2-engines/gtk2-engines_2.20.2-3ubuntu1_i386.deb Size: 207884 MD5sum: 6d17443c60e46fe53c76c3dc05636347 SHA1: ab80a3253706896b4bf229779c6ecd73fca6f665 SHA256: 725cc193da3c1cefe7e74906e5b2a5a2cfaa8b41e700d3a5f6527ae3ef4129a4 Description: theme engines for GTK+ 2.x Multi-Arch: same Description-md5: 431d7b89dfc9dd3fc4ebcf14cfd7ba82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-core, ubuntustudio-desktop Package: gtk2-engines-murrine Priority: optional Section: x11 Installed-Size: 330 Maintainer: Ubuntu Core Developers Original-Maintainer: Yves-Alexis Perez Architecture: i386 Version: 0.98.2-0ubuntu2 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.24.5-4), libpango1.0-0 (>= 1.14.0), libpixman-1-0 (>= 0.15.14) Suggests: murrine-themes (>= 0.98) Filename: pool/main/g/gtk2-engines-murrine/gtk2-engines-murrine_0.98.2-0ubuntu2_i386.deb Size: 105358 MD5sum: 4d7f12dd8cbc33e9a888d126c8214cd7 SHA1: 4a871c6aedb378848bc0d736a24da71f49404d3a SHA256: 8e670db024de3a1abb90a173605073e83fe5553010fbe15142786060f4e0dd62 Description: cairo-based gtk+-2.0 theme engine Multi-Arch: same Description-md5: a474aa12ce9f8a94946342fe0706c7f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop Package: gtk2.0-examples Priority: extra Section: x11 Installed-Size: 1427 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.6.4-6.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.28.3), libpangocairo-1.0-0 (>= 1.28.3), libgtk2.0-0 (= 2.24.23-0ubuntu1) Filename: pool/main/g/gtk+2.0/gtk2.0-examples_2.24.23-0ubuntu1_i386.deb Size: 240716 MD5sum: c63d8649b1ccb851b081e789c7e87790 SHA1: 33bf6af89d480de114ae5671828d72a525270c1f SHA256: 724b343cc2aaddb1411ca888cd9ed138b8fd64242b3c36e8c45e4b7bb8eaf6c5 Description: example files for GTK+ 2.0 Homepage: http://www.gtk.org/ Description-md5: b21dc929fd32c106b404bb82eff33515 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gtk3-engines-unico Priority: optional Section: x11 Installed-Size: 61 Maintainer: Ubuntu Developers Architecture: i386 Source: unico Version: 1.0.3+14.04.20140109-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.2) Filename: pool/main/u/unico/gtk3-engines-unico_1.0.3+14.04.20140109-0ubuntu1_i386.deb Size: 8550 MD5sum: 18078c95fc17e80df27d9a572cad465c SHA1: 3d71cc8b59c34f45ec14879a05db8ea0b55ac93d SHA256: 454b8a012122eca3353703c0c7233cb2ca09a8af5390f76cbe7a919457e02daa Description: Unico Gtk+ 3 theme engine Multi-Arch: same Homepage: https://launchpad.net/unico Description-md5: e8d181b58ea774fbea9ee3ad82a2d502 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core Package: gtkmm-documentation Priority: optional Section: doc Installed-Size: 8086 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: all Version: 3.8.0-1 Depends: lynx | www-browser, doc-base, libgtkmm-3.0-doc Recommends: libglibmm-2.4-doc Filename: pool/main/g/gtkmm-documentation/gtkmm-documentation_3.8.0-1_all.deb Size: 1844558 MD5sum: 7d362b78b03c6035ffb3aa6b828ee4ac SHA1: 685e48a9280edb429454e7515f1046daa82f3824 SHA256: 1e2abf11325ff3f3684d3bed7d9cf119b794d6c7a6e452ae21908b53fbc7521a Description: Documentation of C++ wrappers for GLib/GTK+ Homepage: http://www.gtkmm.org/ Description-md5: 233d7f913415bf5e7e16e4fa8fc4b021 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gucharmap Priority: optional Section: x11 Installed-Size: 588 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 1:3.10.1-0ubuntu2 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.4.0), libgucharmap-2-90-7 (= 1:3.10.1-0ubuntu2), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), dconf-gsettings-backend | gsettings-backend Recommends: yelp Filename: pool/main/g/gucharmap/gucharmap_3.10.1-0ubuntu2_i386.deb Size: 31234 MD5sum: f2042b43890a4fede861bfa99b472a00 SHA1: 7b5dfab045811798636b29708148db7fae48bde1 SHA256: 7406092592cc25b42b504954c1ee0543df3523149fb2a4d924f2ddc99e77e9a7 Description: Unicode character picker and font browser Homepage: https://wiki.gnome.org/Gucharmap Description-md5: e99485eac2609af50962be9c053d886a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: guile-2.0 Priority: optional Section: lisp Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: i386 Version: 2.0.9+1-1ubuntu1 Provides: guile Depends: guile-2.0-libs (= 2.0.9+1-1ubuntu1), libc6 (>= 2.3.6-6~) Suggests: guile-2.0-doc Filename: pool/main/g/guile-2.0/guile-2.0_2.0.9+1-1ubuntu1_i386.deb Size: 7934 MD5sum: b20eb264f5d7a7d7f352afc1f2db13f6 SHA1: 0f73021694d67104f2ce979591d3c16ad5d628a1 SHA256: 52354f169d48408ce85a9c56317e9f73855e38708ff4b373aa178cbdfab802bb Description: GNU extension language and Scheme interpreter Homepage: http://www.gnu.org/software/guile/ Description-md5: 92e64a8da1c1f586d1a7fc7b1ad1ec5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: guile-2.0-dev Priority: optional Section: lisp Installed-Size: 3326 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: i386 Source: guile-2.0 Version: 2.0.9+1-1ubuntu1 Provides: libguile-dev Depends: guile-2.0 (= 2.0.9+1-1ubuntu1), libc6-dev, libncurses5-dev, libreadline6-dev, libltdl-dev, libgmp-dev, libgc-dev, pkg-config Conflicts: libguile-dev Filename: pool/main/g/guile-2.0/guile-2.0-dev_2.0.9+1-1ubuntu1_i386.deb Size: 670302 MD5sum: 4b17360fb8dc219d87304cd53617d3e3 SHA1: 45c78a940f103d6b7d94edcd7b8c045f67af4abf SHA256: 38015d907c9f85944640256d76633cc3817b097418f3567d8ed4e9316a14ab95 Description: Development files for Guile 2.0 Homepage: http://www.gnu.org/software/guile/ Description-md5: ff686195c9946b251edb1db64ccf707d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: guile-2.0-doc Priority: optional Section: doc Installed-Size: 850 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: all Source: guile-2.0 Version: 2.0.9+1-1ubuntu1 Depends: dpkg (>= 1.15.4) | install-info Suggests: guile-2.0-doc-non-dfsg Filename: pool/main/g/guile-2.0/guile-2.0-doc_2.0.9+1-1ubuntu1_all.deb Size: 841926 MD5sum: bf0a94e33e546366ed052a2e0a2924f9 SHA1: 64a0a361ae7410a67f0ce978ffa724f302e2f50e SHA256: acc97cab494b793b1aefcd97a780180bfc4de613f6825f0b8c59e4770dc9abbe Description: Documentation for Guile 2.0 Homepage: http://www.gnu.org/software/guile/ Description-md5: 0a004c9e5b876d950b35f4408ccf6e80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: guile-2.0-libs Priority: optional Section: lisp Installed-Size: 10220 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: i386 Source: guile-2.0 Version: 2.0.9+1-1ubuntu1 Provides: guile-2.0-slib Depends: libc6 (>= 2.17), libffi6 (>= 3.0.4), libgc1c2 (>= 1:7.2d), libgmp10, libltdl7 (>= 2.4.2), libreadline6 (>= 6.0), libunistring0 Conflicts: guile-2.0-slib Filename: pool/main/g/guile-2.0/guile-2.0-libs_2.0.9+1-1ubuntu1_i386.deb Size: 2114884 MD5sum: e219d9b804170e1e10dcc5ea3a883aa2 SHA1: 8952137ccec0e82962ef875d17c907fe6844387d SHA256: a3f56eb67698820d6417b55f126e7ed751730b31ea2931fde59346cedfb1ced5 Description: Core Guile libraries Homepage: http://www.gnu.org/software/guile/ Description-md5: cba24c28494e692c2455c31f93fe375a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: gunicorn Priority: optional Section: python Installed-Size: 576 Maintainer: Ubuntu Developers Original-Maintainer: Chris Lamb Architecture: all Version: 17.5-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources, python-setuptools Suggests: python-tornado, python-gevent, python-pastedeploy, python-setproctitle Filename: pool/main/g/gunicorn/gunicorn_17.5-2build1_all.deb Size: 122090 MD5sum: 17287d1ba95071e4826ba2f83091b3a1 SHA1: a61af3d7c747939c0721ad260b0e213a118e18c5 SHA256: 588b593ca5180a4cddb13b1792d9a61259af61b87c2cdbdf8b2722793bf35536 Description: Event-based HTTP/WSGI server Homepage: http://gunicorn.org/ Description-md5: 2ff72d8c5c219c7f7f89448c09a76c6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gutenprint-doc Priority: optional Section: doc Installed-Size: 757 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: all Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Suggests: printer-driver-gutenprint (>= 5.2.10~pre2-0ubuntu2), foomatic-db-gutenprint (>= 5.2.10~pre2-0ubuntu2), gimp-gutenprint (>= 5.2.10~pre2-0ubuntu2), ijsgutenprint (>= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/gutenprint-doc_5.2.10~pre2-0ubuntu2_all.deb Size: 646246 MD5sum: 1918000e3e52e3f8f8a3a087d156145e SHA1: 7e142f7e7926fa6b9ed98ab08e39c3697653503f SHA256: 70fa81a3596bf1ffec3e12cdbd29c548412c0202b346ce2fa3b6f95139137e91 Description: users' guide for Gutenprint and CUPS Description-md5: fd0b498e1d4569443dd02bcdb60e5771 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gutenprint-locales Priority: optional Section: libs Installed-Size: 10932 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: all Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Filename: pool/main/g/gutenprint/gutenprint-locales_5.2.10~pre2-0ubuntu2_all.deb Size: 366190 MD5sum: bdd092d13ad637471737885f32abc096 SHA1: 43059fb16ff7215aa75dbc4d118e56b782b30843 SHA256: 193c14d64cec8788fee7d7ee455831470fbc2fbf9f26b9610c68efe69e01ac62 Description: locale data files for Gutenprint Description-md5: f67db937fb075a8b53b8e5766040a9b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gvfs Priority: optional Section: libs Installed-Size: 565 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 1.20.1-1ubuntu1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libudev1 (>= 183), gvfs-daemons (>= 1.20.1-1ubuntu1), gvfs-daemons (<< 1.20.1-1ubuntu1.1~), gvfs-libs (= 1.20.1-1ubuntu1), gvfs-common (= 1.20.1-1ubuntu1) Suggests: gvfs-backends, gvfs-backends-goa Breaks: brasero (<< 2.28.0-2), libgdu0 (<< 2.28.1-3), libglib2.0-0 (<< 2.30), rhythmbox (<< 0.12.6-2) Filename: pool/main/g/gvfs/gvfs_1.20.1-1ubuntu1_i386.deb Size: 89354 MD5sum: d00db3546089ab5988ef594ce646319c SHA1: 1e3d7a70c208252a27b180389d5296dca1d9439e SHA256: 051e7bb738a25e35032aa520c1708b6b50f85460c39e3763f005ca464ed2c95f Description: userspace virtual filesystem - GIO module Multi-Arch: same Description-md5: 61f453207c2ab18880315d27f13ee0fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-backends Priority: optional Section: libs Installed-Size: 1431 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gvfs Version: 1.20.1-1ubuntu1 Replaces: gvfs-common (<< 1.13) Depends: libarchive13, libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libbluetooth3 (>= 4.91), libc6 (>= 2.7), libcdio-cdda1 (>= 0.83), libcdio-paranoia1 (>= 0.83), libcdio13 (>= 0.83), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libexpat1 (>= 2.0.1), libgcrypt11 (>= 1.5.1), libglib2.0-0 (>= 2.37.3), libgphoto2-6 (>= 2.5.2), libgphoto2-port10 (>= 2.5.2), libgtk-3-0 (>= 3.0.0), libgudev-1.0-0 (>= 146), libimobiledevice4 (>= 1.1.5), libmtp9 (>= 1.1.6), libplist1 (>= 0.16), libsmbclient (>= 2:4.0.3+dfsg1), libsoup2.4-1 (>= 2.42.0), libxml2 (>= 2.7.4), dconf-gsettings-backend | gsettings-backend, gvfs (= 1.20.1-1ubuntu1), gvfs-daemons (= 1.20.1-1ubuntu1), gvfs-libs (= 1.20.1-1ubuntu1), gvfs-common (= 1.20.1-1ubuntu1), psmisc Recommends: gnome-keyring Suggests: obex-data-server, samba-common Breaks: gvfs-common (<< 1.13) Filename: pool/main/g/gvfs/gvfs-backends_1.20.1-1ubuntu1_i386.deb Size: 262446 MD5sum: b20b655cd0fc322058248a1a8243e634 SHA1: bc5def780fe794bedfa9465e0152f99d407b6399 SHA256: 667039832605b10efc868e63cdc4b0d89a923644e0b26509c28ea548bb45daa8 Description: userspace virtual filesystem - backends Multi-Arch: foreign Description-md5: 33d9d0b77211277edc2b5fdaf9916857 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-bin Priority: optional Section: libs Installed-Size: 437 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gvfs Version: 1.20.1-1ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.0), gvfs-common (= 1.20.1-1ubuntu1) Suggests: gvfs Filename: pool/main/g/gvfs/gvfs-bin_1.20.1-1ubuntu1_i386.deb Size: 49808 MD5sum: eaed889b0917524e88e3dc1e67d63772 SHA1: 64238bc34c11e866de7fafc395b8669d222761f6 SHA256: 92179f439f35a6d7716f227cfb43dfc611d38cc2396e6dffc58ead7791ebf292 Description: userspace virtual filesystem - binaries Multi-Arch: foreign Description-md5: 02be92bf6407403290f8dec1428dea18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-common Priority: optional Section: libs Installed-Size: 372 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gvfs Version: 1.20.1-1ubuntu1 Replaces: gvfs (<< 1.10.1-1) Depends: desktop-file-utils Recommends: gvfs Breaks: gvfs (<< 1.10.1-1) Filename: pool/main/g/gvfs/gvfs-common_1.20.1-1ubuntu1_all.deb Size: 42046 MD5sum: f7a88f1a344a8769519b8b67385217f0 SHA1: 9ba4f84dd0b55b5d54255b85577da7346e9e4ba1 SHA256: 1dee0c940b5b2a0aae83a8fbbeb7b461d4b095f3bf89b64e552126508df17ca0 Description: userspace virtual filesystem - common data files Multi-Arch: foreign Description-md5: 9572165fd324aff77138e36127f7d629 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-daemons Priority: optional Section: libs Installed-Size: 660 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gvfs Version: 1.20.1-1ubuntu1 Replaces: gvfs (<< 1.10.1-1), gvfs-backends (<< 1.8.1-1) Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), libsecret-1-0 (>= 0.7), libsystemd-login0 (>= 31), libudev1 (>= 183), libudisks2-0 (>= 2.0.91), x11-utils, udisks2, gvfs-libs (= 1.20.1-1ubuntu1), gvfs-common (= 1.20.1-1ubuntu1) Recommends: dbus, policykit-1-gnome, gvfs Suggests: gvfs-backends, gvfs-backends-goa Breaks: brasero (<< 2.28.0-2), gvfs (<< 1.10.1-1), gvfs-backends (<< 1.8.1-1), libgdu0 (<< 2.28.1-3), libglib2.0-0 (<< 2.28.6-2), rhythmbox (<< 0.12.6-2) Filename: pool/main/g/gvfs/gvfs-daemons_1.20.1-1ubuntu1_i386.deb Size: 106270 MD5sum: 8a7ecd7629da0f6701c54d79e27d1dbb SHA1: 6686704934226c78e7dd85124bbef47541e69130 SHA256: 3d40391f1ed46f75092e91d8308ea56a24cc1ac2adb5c57fb3350c62bd4bbf96 Description: userspace virtual filesystem - servers Multi-Arch: foreign Description-md5: 3ce59381bd6888364e59f20a23789369 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-dbg Priority: extra Section: debug Installed-Size: 6408 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gvfs Version: 1.20.1-1ubuntu1 Depends: gvfs (= 1.20.1-1ubuntu1) Filename: pool/main/g/gvfs/gvfs-dbg_1.20.1-1ubuntu1_i386.deb Size: 1492452 MD5sum: d834275811501976b577a183e680ea94 SHA1: 254e855e5454691757d1e6087bb1042dc86521c6 SHA256: def9702cab29d7ae6fed7e1a4c3e5da4445006277bd616491a74e38974168b70 Description: userspace virtual filesystem - debugging information Description-md5: 5812d809c0496325bb376dd4fd9c9dc0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: gvfs-fuse Priority: optional Section: libs Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gvfs Version: 1.20.1-1ubuntu1 Depends: libc6 (>= 2.3.6-6~), libfuse2 (>= 2.8.1), libglib2.0-0 (>= 2.37.0), gvfs (= 1.20.1-1ubuntu1), fuse (>= 2.8.4) Filename: pool/main/g/gvfs/gvfs-fuse_1.20.1-1ubuntu1_i386.deb Size: 13132 MD5sum: 1794fe6cc4c09368d5503b1dd9c9d85a SHA1: 76782cc25360b0a5d0ed902c048ae452ce84009f SHA256: 8fbe9ff09995295b0c3bc91d2b403010eff8eff2847adf1ce34ffef8c485430c Description: userspace virtual filesystem - fuse server Description-md5: e8ae435dfe556826602d3a021208211e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gvfs-libs Priority: optional Section: libs Installed-Size: 608 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gvfs Version: 1.20.1-1ubuntu1 Replaces: gvfs (<< 1.10.1-1), libgvfscommon0 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libsecret-1-0 (>= 0.7), gvfs-common (= 1.20.1-1ubuntu1) Conflicts: libgvfscommon0 Breaks: gvfs (<< 1.10.1-1) Filename: pool/main/g/gvfs/gvfs-libs_1.20.1-1ubuntu1_i386.deb Size: 103364 MD5sum: bc1ba651906c12d19bbebca25ab159e3 SHA1: 6db969e1e5604b80a2eb84cc5ccdd4e0e46bbd35 SHA256: daa1672b8dc733d49276e53f3397281828a09a34cfc117f1279e2305d3c65bf0 Description: userspace virtual filesystem - private libraries Multi-Arch: same Description-md5: 6558598d97ea2bbb18ca95c90e7c0683 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: gzip Essential: yes Priority: required Section: utils Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Bdale Garbee Architecture: i386 Version: 1.6-3ubuntu1 Depends: dpkg (>= 1.15.4) | install-info Pre-Depends: libc6 (>= 2.17) Suggests: less Filename: pool/main/g/gzip/gzip_1.6-3ubuntu1_i386.deb Size: 83826 MD5sum: bd15c96d5bbe824751991e9f06ba7d48 SHA1: 40f0774f63251465d7fb9ba0a3af61a85e3428d8 SHA256: 01eb03af70afcd8e98754f46fd8cfe7ebf9247ea109f8ac8ab55f8be15a4b6da Description: GNU compression utilities Description-md5: 100720c9e2c6508f1a1f3731537b38e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: haproxy Priority: optional Section: net Installed-Size: 802 Maintainer: Ubuntu Developers Original-Maintainer: Debian HAProxy Maintainers Architecture: i386 Version: 1.4.24-2 Depends: libc6 (>= 2.15), libpcre3 (>= 8.10), adduser Suggests: vim-haproxy Filename: pool/main/h/haproxy/haproxy_1.4.24-2_i386.deb Size: 448512 MD5sum: 26d455c44739a1e5515d8c7d00da2dbd SHA1: 95fa03f12d3b4b54e55bab75c5015af58a1fb27f SHA256: b8f2d28c3c1d8ecec0b5123cb72dfc76e7139fe5954c9c5a23ee32b95aede7ac Description: fast and reliable load balancing reverse proxy Homepage: http://haproxy.1wt.eu/ Description-md5: 29390feb7563fd9f1e74f245bf31a64c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hardening-includes Priority: extra Section: devel Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Package Hardening Architecture: all Source: hardening-wrapper Version: 2.5ubuntu2 Depends: perl, make, binutils Filename: pool/main/h/hardening-wrapper/hardening-includes_2.5ubuntu2_all.deb Size: 13872 MD5sum: 50970196e03dd107d29058ecd5013311 SHA1: 02775bed72d023a786877f4477028bafb8fec1e5 SHA256: 358814defd29727a28c90ccec5e325c781fb7c712b41389f6dc01165d70f10bd Description: Makefile for enabling compiler flags for security hardening Multi-Arch: foreign Homepage: http://wiki.debian.org/Hardening Description-md5: 751856277fa8b95a4cbaccf7d392446f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hardening-wrapper Priority: extra Section: devel Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Package Hardening Architecture: i386 Version: 2.5ubuntu2 Depends: gcc | g++, perl Filename: pool/main/h/hardening-wrapper/hardening-wrapper_2.5ubuntu2_i386.deb Size: 10388 MD5sum: ff72fb7aa197fe669fbc91d587bd5a5c SHA1: 293b440d260b3ca38c67ce10c6d3b725639d358f SHA256: d57f994b659c9649e1d0589f0b16f2ffd682fdd890a37a83d06dc3dd3c6e72e8 Description: Compiler wrapper to enable security hardening flags Multi-Arch: foreign Homepage: http://wiki.debian.org/Hardening Description-md5: 3345448d3a8754631900ad7f4bb201db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hdparm Priority: standard Section: admin Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Stephen Gran Architecture: i386 Version: 9.43-1ubuntu3 Replaces: apmd (<= 3.0.2-1.15) Depends: libc6 (>= 2.7) Recommends: powermgmt-base Suggests: apmd Filename: pool/main/h/hdparm/hdparm_9.43-1ubuntu3_i386.deb Size: 95502 MD5sum: b66a76a2a5ac4a2623e99bad89a7af88 SHA1: 1c6c12662361d2cd8704636eb6df5db14166a2ac SHA256: 2d6f2b4231377e27efaac46e9fcd5097a0888ce1a13ae47b231c5da389fbb25e Description: tune hard disk parameters for high performance Homepage: http://sourceforge.net/projects/hdparm/ Description-md5: ba89c51b95ba0e5ec35eb04f2e427585 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: hdparm-dbg Priority: extra Section: admin Installed-Size: 280 Maintainer: Ubuntu Developers Original-Maintainer: Stephen Gran Architecture: i386 Source: hdparm Version: 9.43-1ubuntu3 Depends: hdparm (= 9.43-1ubuntu3) Filename: pool/main/h/hdparm/hdparm-dbg_9.43-1ubuntu3_i386.deb Size: 95862 MD5sum: 5d449b5a78146533d30413787c0bd3d0 SHA1: 3d2a10832fbb049e717160b74110738827e4d719 SHA256: 753c6e08ba8d097c78ca40daedf0bba6b681283ac53611f5a3db15a09e7b21ee Description: debug files for hdparm Homepage: http://sourceforge.net/projects/hdparm/ Description-md5: 9baaf3d17ca4e8aa6b12eba3612fdf1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: heartbeat Priority: optional Section: admin Installed-Size: 1184 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Version: 1:3.0.5-3.2 Provides: cluster-messaging-framework Depends: python:any (>= 2.7.1-0ubuntu2), libbz2-1.0, libc6 (>= 2.15), libglib2.0-0 (>= 2.16.0), libheartbeat2 (>= 1:3.0.5), libpils2 (>= 1.0.11+hg2754), libplumb2 (>= 1.0.11+hg2754), libplumbgpl2 (>= 1.0.11+hg2754), libstonith1 (>= 1.0.11+hg2754), zlib1g (>= 1:1.1.4), cluster-glue, iproute, adduser, iputils-ping, psmisc, gawk, mawk, libxml2-utils, libpam-runtime (>= 0.76-14), resource-agents Recommends: rsyslog | system-log-daemon, logrotate, iptables, pacemaker (>= 1.0.6) Filename: pool/main/h/heartbeat/heartbeat_3.0.5-3.2_i386.deb Size: 279000 MD5sum: ebdde37c2c7240d3af708b4fcae81c72 SHA1: 8612fb744cfe7dd96cc9cd179fe5bf331e82c872 SHA256: 533cea81addec547ffb92ceec6a23ea142fa248d2930e5fb908e7e9af6ffcb04 Description: Subsystem for High-Availability Linux Homepage: http://www.linux-ha.org/ Description-md5: ddb086c6c9251076ab28140d4a3653ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heartbeat-dev Priority: optional Section: admin Installed-Size: 5675 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: heartbeat Version: 1:3.0.5-3.2 Depends: heartbeat (= 1:3.0.5-3.2) Conflicts: libpils-dev (<< 2.0.8-3), libstonith-dev (<< 2.0.8-3), pacemaker-dev (<< 1.0.1-1) Filename: pool/main/h/heartbeat/heartbeat-dev_3.0.5-3.2_i386.deb Size: 455776 MD5sum: 47b8ca6321d5c8e84ab01613d259e342 SHA1: 09402c6b69bd543bba47664f81b198dbf62592da SHA256: 28e734559a4462432095cb53b5d0c9299f9c82b6a7ecb739cd447bef941206e1 Description: Subsystem for High-Availability Linux - development files Homepage: http://www.linux-ha.org/ Description-md5: 2db4a8a5564e6bdaa093155ea6bcbb9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: heat-api Priority: optional Section: web Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: adduser, heat-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/h/heat/heat-api_2014.1-0ubuntu1_all.deb Size: 5310 MD5sum: 095764015903637d07abc222d2c212e0 SHA1: c33e88116a412359ad827fc72f7740efa912c811 SHA256: 64080cf3c8331d7327f0b468482678580c57f675a73386825d5d991799cf9245 Description: OpenStack orchestration service - ReST API Homepage: http://wiki.openstack.org/Heat Description-md5: 862c7d73d236c2f223f925fc152f96c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heat-api-cfn Priority: optional Section: web Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: adduser, heat-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/h/heat/heat-api-cfn_2014.1-0ubuntu1_all.deb Size: 5440 MD5sum: 648cf3ff667deecc3317b3fff4fc92d3 SHA1: da1a78b839f3af835e212aa58c7f884f18e8b06f SHA256: cf5b5f03a52e03e0161c10f3ad0e42163b4c5564659f5d48e1d885d9b59cae20 Description: OpenStack orchestration service - CFN API Homepage: http://wiki.openstack.org/Heat Description-md5: 19dff3990205e341e40adec7f5ec18da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heat-api-cloudwatch Priority: optional Section: web Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: adduser, heat-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/h/heat/heat-api-cloudwatch_2014.1-0ubuntu1_all.deb Size: 5376 MD5sum: 264ac8ed43b215a2df6864c8982dd8b1 SHA1: 1d7b94101d862df2947ffe9b8b72d59a8728cec5 SHA256: 269b36ff925328701284d650a375f7b98bc0a8c4c7d66d67efaa51fad1247ebf Description: OpenStack orchestration service - CloudWatch API Homepage: http://wiki.openstack.org/Heat Description-md5: 8800fa04f4f5972ec900ba33c3acce59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heat-common Priority: optional Section: web Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: adduser, python-heat (= 2014.1-0ubuntu1), python:any Filename: pool/main/h/heat/heat-common_2014.1-0ubuntu1_all.deb Size: 14970 MD5sum: f86b6c33efd877c75b26628d9b006c49 SHA1: a8207afa84a838d456f6676018658a5ad336f0cf SHA256: 26f4529d8c36c6f0956f9478c8ffc297d7d6da05316e121be794a88e1171c0a0 Description: OpenStack orchestration service - common files Homepage: http://wiki.openstack.org/Heat Description-md5: 6870a02e61dd51e197ab6a39a8cbf67b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heat-engine Priority: optional Section: web Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: adduser, heat-common (= 2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/h/heat/heat-engine_2014.1-0ubuntu1_all.deb Size: 5726 MD5sum: ce12715766ff55452dddc6d58ab002d7 SHA1: 3c7d60dac514e404a40976689caf13459106f9ea SHA256: c0c1bf0b0fde09d3b8a7f62132b0f9109517bf6b62b4b20842a89f2c42af33a7 Description: OpenStack orchestration service - engine Homepage: http://wiki.openstack.org/Heat Description-md5: 53042942302aa61b9edbcfcd47dd563f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: heimdal-dbg Priority: extra Section: debug Installed-Size: 11903 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libkrb5-26-heimdal (= 1.6~git20131207+dfsg-1ubuntu1) Filename: pool/main/h/heimdal/heimdal-dbg_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 3099042 MD5sum: 9c44bb059eb968cc176d87ccd1559b58 SHA1: 7950f469c1f4c7381fa680a750504d4f2e77efd9 SHA256: 20285418bf1f872b05cc9175d3d0b6e45f5d827a59eada465a42fc763da44f3a Description: Heimdal Kerberos - debugging symbols Homepage: http://www.h5l.org/ Description-md5: acd8be250d493898cc42ffd860fba6b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: heimdal-dev Priority: extra Section: devel Installed-Size: 1269 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: heimdal-multidev (= 1.6~git20131207+dfsg-1ubuntu1) Conflicts: libkrb5-dev Filename: pool/main/h/heimdal/heimdal-dev_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 120456 MD5sum: 75132654d483644263a4354dbcb85317 SHA1: 6c280fb085441e8caede198a8c5ad38429f9a421 SHA256: 288d9fb939b5ac61f7a581264f6a8c27d8a028f447fb37d812df6c84744be398 Description: Heimdal Kerberos - development files Homepage: http://www.h5l.org/ Description-md5: 2afcb518ba77da818c92ff450076c587 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: heimdal-docs Priority: extra Section: net Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: all Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Replaces: heimdal-lib (<< 0.3c-5), heimdal-servers (<< 0.6.3-3), libkrb5-15-heimdal Depends: dpkg (>= 1.15.4) | install-info Suggests: heimdal-clients, heimdal-clients-x, heimdal-servers, heimdal-servers-x Conflicts: heimdal-lib (<< 0.3c-5) Filename: pool/main/h/heimdal/heimdal-docs_1.6~git20131207+dfsg-1ubuntu1_all.deb Size: 78354 MD5sum: 51b13bcd3fe0f060c986641a36e65b03 SHA1: f674ef88c273478ea1ecc5a15eced9d19f44b8c8 SHA256: 0e5da2ed919c21501d871d977ec505c969dd294bd71080aff6361a14ef1cfb30 Description: Heimdal Kerberos - documentation Homepage: http://www.h5l.org/ Description-md5: 8c3b64daa0902eebf8cd924e71d8e102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: heimdal-multidev Priority: extra Section: devel Installed-Size: 5192 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Replaces: heimdal-clients (<< 0.4e-7), heimdal-dev (<< 1.6~git20131117+dfsg-2) Depends: comerr-dev, libasn1-8-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libgssapi3-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libhcrypto4-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libhdb9-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libheimbase1-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libhx509-5-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libkadm5clnt7-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libkadm5srv8-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libkafs0-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libkdc2-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libkrb5-26-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libwind0-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libotp0-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libsl0-heimdal (= 1.6~git20131207+dfsg-1ubuntu1), libc6 (>= 2.8), libcomerr2 (>= 1.01), libroken18-heimdal (>= 1.4.0+git20110226) Suggests: heimdal-docs Conflicts: heimdal-clients (<< 0.4e-7), kerberos4kth-dev Filename: pool/main/h/heimdal/heimdal-multidev_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 1032504 MD5sum: 643782a21a7cb3921acbc43f638ebf0a SHA1: cb18c2b7f1bad1fca6e6ff5c76a970c8e3e011d8 SHA256: e10fa9bcf748e65e80b0646732bfc86443dc03c9ba1e41369c0101712642b1c2 Description: Heimdal Kerberos - Multi-implementation Development Homepage: http://www.h5l.org/ Description-md5: 2c68ae41ae2a5a78791f623671e565b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hello Priority: optional Section: devel Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 2.8-4 Depends: libc6 (>= 2.4), dpkg (>= 1.15.4) | install-info Filename: pool/main/h/hello/hello_2.8-4_i386.deb Size: 27336 MD5sum: 0271df1808042bf69ff9ced280b2e5d6 SHA1: 1441559d57a435f8480f1c2bcf0999e534ea661a SHA256: 1452eeb144667b246e173c88eea9bccf63badaf7dba8d96375840d82f316c389 Description: The classic greeting, and a good example Homepage: http://www.gnu.org/software/hello/ Description-md5: b7df6fe7ffb325083a3a60819a7df548 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hello-debhelper Priority: extra Section: devel Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 2.8-1 Replaces: hello Provides: hello Depends: libc6 (>= 2.4), dpkg (>= 1.15.4) | install-info Conflicts: hello Filename: pool/main/h/hello-debhelper/hello-debhelper_2.8-1_i386.deb Size: 28144 MD5sum: bbe2603f9130c9e251b031eb0992c532 SHA1: 803c88cd4c07fe76009a9ecec934af22bf60fc04 SHA256: b39b299929e55c4db9c54c63550e00b6f3eca90e7f3fb4aa54f308972acb02bf Description: The classic greeting, and a good example Homepage: http://www.gnu.org/software/hello/ Description-md5: b5040bf1400ca86808cb22ddf3c17197 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: help2man Priority: optional Section: devel Installed-Size: 312 Maintainer: Ubuntu Developers Original-Maintainer: Brendan O'Dea Architecture: i386 Version: 1.44.1 Depends: perl (>= 5.18.2-2), libc6 (>= 2.1.3), liblocale-gettext-perl, dpkg (>= 1.15.4) | install-info Filename: pool/main/h/help2man/help2man_1.44.1_i386.deb Size: 59432 MD5sum: 81804d16af1b8b9dcfadf01d3edf34c8 SHA1: b349e847df5f4064c13521b75b13c3b0f8ce6d36 SHA256: 34492bc5762be5c38875bcb1797f6f002a3955750ed6ad22a4386185bd0aceb9 Description: Automatic manpage generator Multi-Arch: foreign Description-md5: 81b7f764f56e92da4f916f9b4836fe21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hevea Priority: optional Section: tex Installed-Size: 2142 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: all Version: 2.09-2 Depends: ghostscript, netpbm (>= 2:9.10-1), texlive-base, ocaml-base-nox-4.01.0, dpkg (>= 1.14.18), tex-common (>= 3) Suggests: hevea-doc, texlive-latex-extra Filename: pool/main/h/hevea/hevea_2.09-2_all.deb Size: 307518 MD5sum: 442cd25123ebdb5274ab1c4155dae5e5 SHA1: 872aebff5e00ae3b30e1d20f1ecd63230a5ed45a SHA256: bac4d0e17ed58d31f96a507a4ec7c9dd9b0c6eed3abb06b3d20f66a03524825a Description: translates from LaTeX to HTML, info, or text Homepage: http://hevea.inria.fr/ Description-md5: c2eb86fe7224c45959f529c65265c0a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hfsplus Priority: optional Section: otherosfs Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Aurélien GÉRÔME Architecture: i386 Version: 1.0.4-12.1 Depends: libc6 (>= 2.7), libhfsp0 Filename: pool/main/h/hfsplus/hfsplus_1.0.4-12.1_i386.deb Size: 37124 MD5sum: a50322dda69ffac482fe1f1dc696a23f SHA1: da98d39b8745f3a656ed73884d52a2f5bad54c0d SHA256: 6b6add25516ec94f2809b442966aadc81407c0600e6d8f385ff6641301cf514b Description: Tools to access HFS+ formatted volumes Description-md5: 7e515c0e4f0451b5ec9743b7fc5e7b9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hfsutils Priority: optional Section: otherosfs Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Version: 3.2.6-12ubuntu3 Depends: libc6 (>= 2.7) Suggests: hfsutils-tcltk Filename: pool/main/h/hfsutils/hfsutils_3.2.6-12ubuntu3_i386.deb Size: 67450 MD5sum: 242f840a6e48af122fd48fcd0332e3c1 SHA1: cde4c752e18d042484e858d722b544b0902819bb SHA256: c5913e3827863625bc13867be0d36636bd26d52280b23337fb9fecab35f32799 Description: Tools for reading and writing Macintosh volumes Homepage: http://www.mars.org/home/rob/proj/hfs/ Description-md5: bc1cfdae0eb986fc7820c770cf54995a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hicolor-icon-theme Priority: optional Section: misc Installed-Size: 1415 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: all Version: 0.13-1 Filename: pool/main/h/hicolor-icon-theme/hicolor-icon-theme_0.13-1_all.deb Size: 7140 MD5sum: 36c0aaa4eb741993539d6d575046d4d0 SHA1: 23ed43a06e3564afdd81ab24321e624b2d44430e SHA256: a024f667b77de7b72f614031fe33c096b4fce4d668c5866d404efc8e0bea11ed Description: default fallback theme for FreeDesktop.org icon themes Multi-Arch: foreign Description-md5: 653c5f5ecfe0f797f5a047b73a60b6d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hostname Essential: yes Priority: required Section: admin Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hostname Team Architecture: i386 Version: 3.15ubuntu1 Replaces: nis (<< 3.17-30) Pre-Depends: libc6 (>= 2.4) Breaks: nis (<< 3.17-30) Filename: pool/main/h/hostname/hostname_3.15ubuntu1_i386.deb Size: 11230 MD5sum: 20108ecf4cd676cbdf3db291acc9e6ff SHA1: 6702bf04e5f932fee6d4723568654df1bc0f3c9e SHA256: d77f85f69c1f8cda3faca8bc016806e7fddb7685f3f58967d8423f785bc3c2e9 Description: utility to set/show the host name or domain name Description-md5: a5a22acc3c69a7f40f07f1a8dfc93af1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: hplip Priority: optional Section: utils Installed-Size: 384 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: i386 Version: 3.14.3-0ubuntu3 Depends: libc6 (>= 2.4), libcups2 (>= 1.6.0), libdbus-1-3 (>= 1.0.2), libhpmud0 (= 3.14.3-0ubuntu3), libsane (>= 1.0.11-3), libsane-hpaio (= 3.14.3-0ubuntu3), hplip-data (= 3.14.3-0ubuntu3), printer-driver-hpcups (= 3.14.3-0ubuntu3), python (>= 2.7), python (<< 2.8), python-dbus (>= 0.80), python-imaging, python-pexpect, python-reportlab, coreutils (>= 5.1.0), lsb-base (>= 3), adduser (>= 3.34), cups (>= 1.1.20), policykit-1, python-gobject-2, wget Recommends: printer-driver-postscript-hp, sane-utils, avahi-daemon Suggests: hplip-gui, hplip-doc, python-notify, system-config-printer Filename: pool/main/h/hplip/hplip_3.14.3-0ubuntu3_i386.deb Size: 64226 MD5sum: 472bfa2fe732a872e1912780f0f00749 SHA1: 802204e4060e4428fea93f97fcac9f500446a212 SHA256: 15aab3541e98170fa6524c96482e12eef8a39ed3218add9120d8763f52a336e8 Description: HP Linux Printing and Imaging System (HPLIP) Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 2c0bf2568da19b1e4a1da75410d4aa8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hplip-data Priority: optional Section: utils Installed-Size: 9549 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: all Source: hplip Version: 3.14.3-0ubuntu3 Depends: python:any (>= 2.7.1-0ubuntu2), xz-utils Suggests: hplip Filename: pool/main/h/hplip/hplip-data_3.14.3-0ubuntu3_all.deb Size: 6390402 MD5sum: e4d1ca7be2b77d2ad734b071737e9bc8 SHA1: e25b5916865951381cf0049aa733227e6c1b0121 SHA256: 41e3ddc6ed0f78f9d419f7d58e78f3c74a0f5493d3c6979d8dc6f3e4dc02e3cf Description: HP Linux Printing and Imaging - data files Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 99432a59ee13492042933313a6992d32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hplip-dbg Priority: extra Section: utils Installed-Size: 1595 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: i386 Source: hplip Version: 3.14.3-0ubuntu3 Depends: hplip (= 3.14.3-0ubuntu3) | printer-driver-hpcups (= 3.14.3-0ubuntu3) | printer-driver-hpijs (= 3.14.3-0ubuntu3) Breaks: hplip (<< 3.10.2-2ubuntu2) Filename: pool/main/h/hplip/hplip-dbg_3.14.3-0ubuntu3_i386.deb Size: 1250842 MD5sum: 486e8e304691232ddc3fea75db23c8d2 SHA1: 288908b12712b867003a34d0733570e63f61f4e2 SHA256: e1167ed6bef50e87722c877d078200912b3686fae74fc3823aaaf5d1ec8bb706 Description: HP Linux Printing and Imaging - debugging information Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 710137fceefc7e3d667c64008f481e76 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hplip-doc Priority: optional Section: doc Installed-Size: 787 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: all Source: hplip Version: 3.14.3-0ubuntu3 Suggests: hplip Filename: pool/main/h/hplip/hplip-doc_3.14.3-0ubuntu3_all.deb Size: 590874 MD5sum: 55cf6d3471022f9debf9115e82250b13 SHA1: 7266134694e4e8204a5f4ca4b465116a44b32947 SHA256: c0777701542eb2dcecd671d9d0ef4ce867095bbaa78079351eccbcf7017751dd Description: HP Linux Printing and Imaging - documentation Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 7a9d622f180b9cbe47e31edb62d9f944 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hspell Priority: extra Section: text Installed-Size: 997 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: i386 Version: 1.2-2 Depends: libc6 (>= 2.7), zlib1g (>= 1:1.1.4) Filename: pool/main/h/hspell/hspell_1.2-2_i386.deb Size: 854006 MD5sum: d1754a0059fcb4516ef739fcbb5b1f1d SHA1: 10a4fb624ef037547906172ecaeb274291525b7d SHA256: a350a7115501a335ef540d2044bfbc8c752b3562789e549e9e2b1e6bd954c99e Description: Hebrew spell checker and morphological analyzer Homepage: http://hspell.ivrix.org.il/ Description-md5: e857f190ff37945e27152a7e8a1ccdef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: html2text Priority: optional Section: web Installed-Size: 261 Maintainer: Ubuntu Developers Original-Maintainer: Holger Levsen Architecture: i386 Version: 1.3.2a-17 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Suggests: curl | wget Filename: pool/main/h/html2text/html2text_1.3.2a-17_i386.deb Size: 78170 MD5sum: 21d1ccf6d73d6d164ffd9e7fff9c2dbd SHA1: 2cc2204c64858367b1e257d0f3751ffc5b58398f SHA256: 2295a69dcf75b086de3449f67ea6784820118964676816fa9b035d7db44c723b Description: advanced HTML to text converter Homepage: http://www.mbayer.de/html2text/ Description-md5: a57fb9ed5921cd11bfc59269f601f3c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: htmldoc Priority: optional Section: web Installed-Size: 530 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Licquia Architecture: i386 Version: 1.8.27-8ubuntu1 Depends: libc6 (>= 2.15), libfltk1.1 (>= 1.1.6), libgcc1 (>= 1:4.1.1), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libssl1.0.0 (>= 1.0.0), libxpm4, zlib1g (>= 1:1.1.4), htmldoc-common Filename: pool/main/h/htmldoc/htmldoc_1.8.27-8ubuntu1_i386.deb Size: 212194 MD5sum: 11f801915be9075e098cb8ec0cdde5a3 SHA1: 0debb9d546d3d25273ca45ffbb43e8b782f24ee1 SHA256: b82f94ed2f136b3198cf255d89a47770290155cc71b712d11fb8b6b2c4fe9432 Description: HTML processor that generates indexed HTML, PS, and PDF Homepage: http://www.htmldoc.org/ Description-md5: 7eac64051be488714b6fe5cba14de685 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: htmldoc-common Priority: extra Section: web Installed-Size: 7956 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Licquia Architecture: all Source: htmldoc Version: 1.8.27-8ubuntu1 Replaces: htmldoc (<< 1.8.27) Conflicts: htmldoc (<< 1.8.27) Filename: pool/main/h/htmldoc/htmldoc-common_1.8.27-8ubuntu1_all.deb Size: 5107666 MD5sum: 1f26d8deea461a3fb431d0bbf058c76b SHA1: e5ce18717b0a6f3599642a2e2ff5a2a6d6dd406b SHA256: ae0a5596347b4a85f01ce78f407a4a1ac007a1f698d7a3481ebf38d94ddb4a0a Description: Common arch-independent files for htmldoc Homepage: http://www.htmldoc.org/ Description-md5: 901a9dca8c859918d977a5cca8bdc4a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hud Priority: optional Section: gnome Installed-Size: 928 Maintainer: Ubuntu Developers Architecture: i386 Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.4), libcolumbus1 (>= 1.1.0+14.04.20140325.3), libdbusmenu-qt5, libdee-1.0-4 (>= 1.2.7+13.10.20130924.1), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libgsettings-qt1, libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5sql5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.6), libunityvoice1 (>= 0.1), unity-voice-service, libqt5sql5-sqlite Conflicts: indicator-appmenu (<< 13) Filename: pool/main/h/hud/hud_13.10.1+14.04.20140402-0ubuntu1_i386.deb Size: 212896 MD5sum: 36215c5cb027bdd6962cf625f850b23a SHA1: c7f48a74f792bcc720838f1aa40507ad610ffd13 SHA256: 8ac55e2b03e53978b5d69bb18afee2bcb74e12e465e654ab0f828cdc960b5c72 Description: Backend for the Unity HUD Homepage: http://launchpad.net/hud Description-md5: b04907a06b678f3d59cae82834a5efa4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: hud-doc Priority: optional Section: doc Installed-Size: 80 Maintainer: Ubuntu Developers Architecture: all Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/hud-doc_13.10.1+14.04.20140402-0ubuntu1_all.deb Size: 9378 MD5sum: f4fec1e32a0062cc64081dfc4ea94a0f SHA1: bdca791704c9b3697669731bcee346fc421e411b SHA256: cfc730f71aaf3da26d3b77276e3ae675ed0ca1715a1daad075dde10d9bb25fd2 Description: Backend for the Unity HUD Homepage: http://launchpad.net/hud Description-md5: 6f462a46ce37bf857af0688d624e6f32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: human-theme Priority: optional Section: x11 Installed-Size: 504 Maintainer: Ubuntu Artwork Team Architecture: all Version: 0.39.2 Replaces: gtk2-engines-ubuntulooks, human-cursors-theme (<= 0.5), human-gtk-theme, ubuntu-artwork (<< 31) Provides: human-gtk-theme Depends: dmz-cursor-theme, humanity-icon-theme, gtk2-engines-murrine Conflicts: gtk2-engines-ubuntulooks, human-cursors-theme (<= 0.5), human-gtk-theme, ubuntu-artwork (<< 31) Filename: pool/main/h/human-theme/human-theme_0.39.2_all.deb Size: 58790 MD5sum: 51a226a1f4cfedd504018e84ee303e07 SHA1: a0bd62dccbc1c7741b1ed1b82a3618fe4ac8c78a SHA256: d18c2ad3c01c2d960237e111e0d3a209dbac9f4903695349da273f3935c57256 Description: Human theme Description-md5: d0a1fff6e60b7a3fbe81de0845282c9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: humanity-icon-theme Priority: optional Section: gnome Installed-Size: 14658 Maintainer: Ubuntu MOTU Developers Architecture: all Version: 0.6.5 Depends: gnome-icon-theme, hicolor-icon-theme Filename: pool/main/h/humanity-icon-theme/humanity-icon-theme_0.6.5_all.deb Size: 1315458 MD5sum: 102123113755224bbc058ea92501887f SHA1: 83f9c22db62d329fd25150e9b753f7fc40a9eefc SHA256: 830cfc45f636d8fcae13258b0a6a345e47764d8c2e403a490a216f349f2e555a Description: Humanity Icon theme Description-md5: 75b3fa4ecc35cdc4c2e608df830504f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hunspell Priority: optional Section: text Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Version: 1.3.2-6ubuntu2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libhunspell-1.3-0, libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libstdc++6 (>= 4.1.1), libtinfo5, hunspell-en-us | hunspell-dictionary | myspell-dictionary Filename: pool/main/h/hunspell/hunspell_1.3.2-6ubuntu2_i386.deb Size: 41242 MD5sum: 01334cda6a916d6de11b3d1c678c7cd4 SHA1: 5602a4ccf7a783400c060241903d8446ea39b260 SHA256: 2c7765f4ecf171ab873a6256c84e5a34f31d6f7182e3534f78fee33931f44fe7 Description: spell checker and morphological analyzer (program) Multi-Arch: foreign Homepage: http://hunspell.sourceforge.net/ Description-md5: 50f852033e680e7617350acb7eb6aee9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-an Priority: optional Section: text Installed-Size: 324 Maintainer: Ubuntu Developers Original-Maintainer: Jordi Mallach Architecture: all Version: 0.2-1 Provides: hunspell-dictionary, hunspell-dictionary-an, myspell-an, openoffice.org-spellcheck-an Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceweasel | icedove | iceape-browser Filename: pool/main/h/hunspell-an/hunspell-an_0.2-1_all.deb Size: 91516 MD5sum: a75454aaac0a325e95d09cf0951e58d8 SHA1: 5af2f577ab1f2230c5dfc6decfab36895fcb6ebc SHA256: be27e829c1b487d75817a83081f000238f7e993ba47d2f9a24ea7254a4d7971e Description: Aragonese dictionary for hunspell Homepage: https://addons.mozilla.org/es-ES/firefox/addon/corrector-ortografico-aragones/ Description-md5: d0054bf706f5de42b827b582b439a58f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-ar Priority: optional Section: text Installed-Size: 3829 Maintainer: Ubuntu Developers Original-Maintainer: Debian Arabic Packaging Team Architecture: all Version: 3.2-1 Provides: hunspell-dictionary, hunspell-dictionary-ar Depends: dictionaries-common (>= 0.10) Suggests: hunspell Filename: pool/main/h/hunspell-ar/hunspell-ar_3.2-1_all.deb Size: 824022 MD5sum: 97c97c0a3d332a881d8e62c839893ad6 SHA1: be83a5d0cd1f35c417a29f6482fd8e8231c73a54 SHA256: 76138d8ddd9f94332dddbcb342ba11a38559a4bc85255b02d9d96ce142a4b49b Description: Arabic dictionary for hunspell Homepage: http://ayaspell.sourceforge.net/ Description-md5: 93f6185c2690f32654b636259724d0bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-be Priority: optional Section: text Installed-Size: 1761 Maintainer: Ubuntu Developers Original-Maintainer: Hleb Valoshka <375gnu@gmail.com> Architecture: all Version: 0.53-3 Provides: hunspell-dictionary, hunspell-dictionary-be Depends: dictionaries-common (>= 1.0.0) Suggests: iceape-browser | iceweasel | icedove, libreoffice Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/h/hunspell-be/hunspell-be_0.53-3_all.deb Size: 363532 MD5sum: dfe948beaa2a2d983dc0a741a7002f8d SHA1: fee4e02e687821a382b042b833b361ac379e3a90 SHA256: 795b7cfcdd9efda88643e47c682377f969e19d8019942bee0ab8a037546e4e6b Description: Belarusian dictionary for hunspell and academic orthography Homepage: http://spell-be.sourceforge.net/ Description-md5: 39aa502ba34dadde5fc56275b1b45406 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-br Priority: optional Section: text Installed-Size: 5563 Maintainer: Ubuntu Developers Original-Maintainer: Elie Roux Architecture: all Version: 0.11-1 Provides: hunspell-dictionary, hunspell-dictionary-br Depends: dictionaries-common (>= 1.10.5) Suggests: iceape-browser | iceweasel | icedove, libreoffice Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/h/hunspell-br/hunspell-br_0.11-1_all.deb Size: 1244606 MD5sum: 0df7229dc83f73ef4479fdc24c00d345 SHA1: 7ea444d5a14b7f211ec778e2dc451812237e7052 SHA256: ea762e2b8adb750796427b2c5fbf011955064fff7fb87589bf78a1f0c503282f Description: Breton language dictionary for hunspell Homepage: http://www.drouizig.org/index.php/en/binviou-en/difazier-hunspell Description-md5: e3293c4c9da8adeaff107fcbc4829e30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-da Priority: optional Section: text Installed-Size: 3022 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-da Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-da, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-da_4.2.1-0ubuntu1_all.deb Size: 538060 MD5sum: 0c133e4c4154b5982f036db043cb0f8a SHA1: aa34b21a35a8b6bf935054d943aa00b7129adeb9 SHA256: 97a7210f255a689d37566473c3be64dbbd5a30faa31dd928fe9b4d8ae13de6e6 Description: Danish dictionary for hunspell Description-md5: 5a8c985009284b57be78cdc2f636af8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-de-at Priority: optional Section: text Installed-Size: 1112 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: igerman98 Version: 20120607-1 Replaces: myspell-de-at, openoffice.org-spellcheck-de-at Provides: hunspell-dictionary, hunspell-dictionary-de, openoffice.org-spellcheck-de-at Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: myspell-de-at, openoffice.org-spellcheck-de-at Breaks: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/i/igerman98/hunspell-de-at_20120607-1_all.deb Size: 333204 MD5sum: 1934c8838f3cd25ba8d3c5275179802b SHA1: 21898d6618ef3fc9053aff05c75a073ebc2e348a SHA256: dd97b2d9c435854f5ed241c3ba359880e866f53e0c65b8fff6971115d2408f03 Description: Austrian (German) dictionary for hunspell Homepage: http://j3e.de/ispell/igerman98/ Description-md5: 21dbb27e1a8c96ac29937a738480f386 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-de-ch Priority: optional Section: text Installed-Size: 1111 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: igerman98 Version: 20120607-1 Replaces: myspell-de-ch, openoffice.org-spellcheck-de-ch Provides: hunspell-dictionary, hunspell-dictionary-de, openoffice.org-spellcheck-de-ch Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: myspell-de-ch, openoffice.org-spellcheck-de-ch Breaks: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/i/igerman98/hunspell-de-ch_20120607-1_all.deb Size: 332726 MD5sum: 32dadcfb6bcb4e147ac80d29b43847f6 SHA1: 24fcee4bc0c10fe05ab6e47e7d8bbeb4fc9a2918 SHA256: 982704c02237c8d6f49e63e6acc9842101b8b865d7ef21d8d6724f35740c3fb0 Description: Swiss (German) dictionary for hunspell Homepage: http://j3e.de/ispell/igerman98/ Description-md5: f5edb11368cd12014803d27fd484dfc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-de-de Priority: optional Section: text Installed-Size: 1108 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: igerman98 Version: 20120607-1 Replaces: myspell-de-de, openoffice.org-spellcheck-de-de Provides: hunspell-dictionary, hunspell-dictionary-de, openoffice.org-spellcheck-de-de Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: myspell-de-de, openoffice.org-spellcheck-de-de Breaks: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/i/igerman98/hunspell-de-de_20120607-1_all.deb Size: 332674 MD5sum: a8efcbd0f485b0f52da0a7b12531fc84 SHA1: e752f542ef20b66497389f5c8b3da05eff36153d SHA256: 07d4ee40880e2a80ef0edcff6c249f234da9ac8a8805ba63b850a768555fd77d Description: German dictionary for hunspell Homepage: http://j3e.de/ispell/igerman98/ Description-md5: 55d7da2ec74619bc1b79858a0ee72905 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-en-ca Priority: optional Section: text Installed-Size: 736 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-en Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-en-ca_4.2.1-0ubuntu1_all.deb Size: 195434 MD5sum: 01c3400109a217fd6c77ac3bacf82b5b SHA1: fbafc1bb0f66d4c549c13e9d4183f70d04802bbe SHA256: ed0e9618d00adc10d579e0789e55dddf6a28d2851d86821c9064ea73df1aa50b Description: English_canadian dictionary for hunspell Description-md5: bf68da2bd6cf4e84d7793b2eaa15efc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-en-us Priority: optional Section: text Installed-Size: 726 Maintainer: Ubuntu Core Developers Original-Maintainer: Rene Engelhard Architecture: all Version: 20070829-4ubuntu3 Replaces: myspell-en-us, openoffice.org-spellcheck-en-us Provides: hunspell-dictionary, hunspell-dictionary-en Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-en-us, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/h/hunspell-en-us/hunspell-en-us_20070829-4ubuntu3_all.deb Size: 248460 MD5sum: 1316333195e60281db9673bbab5fee7e SHA1: 4e5a57e174350253ae6b61aa882197ebafeecc05 SHA256: 5a1d14ffbe474a743f87248a5b0049ef35619a58e5935263ac95be61128750ac Description: English_american dictionary for hunspell Description-md5: 9f2626c060235fd5c6d1fd50ba24e576 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: hunspell-eu-es Priority: optional Section: text Installed-Size: 4872 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: xuxen-eu-spell Version: 0.4.20081029-6 Replaces: myspell-eu-es, openoffice.org-spellcheck-eu Provides: hunspell-dictionary, hunspell-dictionary-eu, myspell-eu-es, openoffice.org-spellcheck-eu Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-eu-es, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), openoffice.org-spellcheck-eu, thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/x/xuxen-eu-spell/hunspell-eu-es_0.4.20081029-6_all.deb Size: 643736 MD5sum: 040d86f50b74486be1b08ced3bf6dff3 SHA1: 8203956e1d57b749bf437f578b79851fa8a238a6 SHA256: a09321a80158fba03da6dbfbf8107aa3a56b96009a91f8f11538a9c53ecd5672 Description: Basque (Euskera) dictionary for hunspell Homepage: http://www.euskara.euskadi.net/r59-20660/es/contenidos/informacion/euskarazko_softwarea/es_9568/xuxen.html Description-md5: 605aa62d43f45421d8ec5a4a2bcf7cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-fr Priority: optional Section: text Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Sébastien Villemot Architecture: all Version: 1:5.0.2-1 Depends: hunspell-fr-classical | hunspell-fr-modern | hunspell-fr-revised | hunspell-fr-comprehensive Filename: pool/main/h/hunspell-fr/hunspell-fr_5.0.2-1_all.deb Size: 7672 MD5sum: b42ee1d68e1a37e353e606e7b1d0f2b3 SHA1: 21ad68e4cb8613de2454232b8a703e5acdc6fc1c SHA256: bd9478eeff60e90453e274924ad843a171284622a28ff52e43133423b2d3bd3f Description: French dictionary for hunspell (dependency package) Homepage: http://www.dicollecte.org/ Description-md5: 83a51849a5574ba453f74b91afbd6161 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-fr-classical Priority: optional Section: text Installed-Size: 1373 Maintainer: Ubuntu Developers Original-Maintainer: Sébastien Villemot Architecture: all Source: hunspell-fr Version: 1:5.0.2-1 Replaces: hunspell-fr (<< 1:4.11-1~) Provides: hunspell-dictionary, hunspell-dictionary-fr Depends: dictionaries-common (>= 0.10) Suggests: hunspell Conflicts: hunspell-fr-comprehensive, hunspell-fr-modern, hunspell-fr-revised, myspell-fr, myspell-fr-gut Breaks: hunspell-fr (<< 1:4.11-1~) Filename: pool/main/h/hunspell-fr/hunspell-fr-classical_5.0.2-1_all.deb Size: 289552 MD5sum: e73e3884a3384db25d3c1f62f2fe0eeb SHA1: ed40d7e8e3f5de5e468d5a8ead8065d650aeca34 SHA256: a07e896762b8c4aa20b3865ebe1043a9a7912085cc4e3ffa17d897ee1b9fcbea Description: French dictionary for hunspell (classical version) Homepage: http://www.dicollecte.org/ Description-md5: 81f2c4bc1c217aeb02b80308cfa4cfc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-gl-es Priority: optional Section: text Installed-Size: 969 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Version: 2.2a-10 Replaces: hunspell-gl, myspell-gl-es, openoffice.org-spellcheck-gl Provides: hunspell-dictionary, hunspell-dictionary-gl, hunspell-gl, myspell-gl-es, openoffice.org-spellcheck-gl Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: firefox (<< 2.0.0.3-2), hunspell-gl, iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-gl-es, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), openoffice.org-spellcheck-gl, thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/h/hunspell-gl-es/hunspell-gl-es_2.2a-10_all.deb Size: 223722 MD5sum: cb675148c923feb8a115535a3a4cbabc SHA1: 154c2efe640a06cf308ad58c3429cd8d9b9ae8fb SHA256: 1a8f6b12667c6f9e3233f3dc63244b524bd3d69dfe84891a4870842dbf79df66 Description: Galician dictionary for hunspell Homepage: http://wiki.mancomun.org/index.php/Corrector_ortogr%C3%A1fico_para_OpenOffice.org Description-md5: 58ac884f39337d4cf44d94f67c627ee8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-hu Priority: optional Section: text Installed-Size: 3516 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: myspell-hu Provides: hunspell-dictionary, hunspell-dictionary-hu, myspell-hu Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-da, myspell-hu, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-hu_4.2.1-0ubuntu1_all.deb Size: 543004 MD5sum: d87b3dfc37d203ead236e3dd3417500f SHA1: f0c67ebecd317631245da9a9ea0c486bc8701ce2 SHA256: 8102534248eba51c0e94e9cf9c50a27f4c1d2746e583424c5ffdbfeb776154d2 Description: Hungarian dictionary for hunspell Description-md5: 8e74ec5f6be4b535670181b99998df49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-kk Priority: optional Section: text Installed-Size: 2256 Maintainer: Ubuntu Developers Original-Maintainer: Timur Birsh Architecture: all Version: 1.1-2 Provides: hunspell-dictionary, hunspell-dictionary-kk, myspell-dictionary, myspell-dictionary-kk Depends: dictionaries-common (>= 1.10.5) Suggests: iceape-browser | iceweasel | icedove, openoffice.org (>= 1.0.3-3) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/h/hunspell-kk/hunspell-kk_1.1-2_all.deb Size: 216156 MD5sum: a48f830cc421573e4c44d1b1e9295aaf SHA1: 6b48e493e150ed2e79ab2fc18b76200e339fadf7 SHA256: 0449dfb318fe36bde99cae7fba86db50be1d8f7188c7e0ea18bfa8da82844072 Description: Kazakh dictionary for hunspell Homepage: http://extensions.services.openoffice.org/en/project/dict-kk Description-md5: 2a25a1bf5003dfcc4ae3090cbf1088f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-ko Priority: optional Section: text Installed-Size: 16624 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: all Source: hunspell-dict-ko Version: 0.5.6-1 Provides: hunspell-dictionary, hunspell-dictionary-ko Depends: dictionaries-common (>= 1.0) Conflicts: libhunspell-1.2-0 (<< 1.2.14) Filename: pool/main/h/hunspell-dict-ko/hunspell-ko_0.5.6-1_all.deb Size: 623858 MD5sum: ff9c4999258406674729a35558dc5916 SHA1: e6718df6b1cacc1c8ae69084db9565f3fddfbf2e SHA256: 23057192b9d6d829c4c57911bf6c4c14cab5609c397bc885815a3202bbe7953b Description: Korean dictionary for hunspell Homepage: http://code.google.com/p/spellcheck-ko Description-md5: 090019df0067a4bc2d2bafee381ca3e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-ml Priority: optional Section: text Installed-Size: 5300 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.1-2 Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Filename: pool/main/h/hunspell-ml/hunspell-ml_0.1-2_all.deb Size: 738970 MD5sum: a3bc871934952d7482668433b525023c SHA1: a359b594ca1c12dc3c368dbba410ce1cdec544e3 SHA256: 8540416bd3b2630c50c0382ecd3cee74d9c004c8351488144b043ebe51fcf553 Description: Malayalam dictionary for hunspell Homepage: http://git.savannah.gnu.org/cgit/smc.git/tree/spellcheck/hunspell-ml Description-md5: 0609042d7ef531b2f5f045a0543d5b3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-ne Priority: optional Section: text Installed-Size: 914 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-ne Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-ne_4.2.1-0ubuntu1_all.deb Size: 136874 MD5sum: 1051b71943df5c2bd66a1cac99722cda SHA1: eec123d01cc97421130dc2c67ad2fdda771056b3 SHA256: a84630a1e7593e3cfe24ba69169b998c47b4dfef1e0045bb90bf1640f69c662d Description: Nepali dictionary for hunspell Description-md5: 571921f9ddb4141e43e9bfe8b2e04f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-ro Priority: optional Section: text Installed-Size: 2245 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-ro Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-ro_4.2.1-0ubuntu1_all.deb Size: 488842 MD5sum: acadd4905304da78e3f9f7f8ba186275 SHA1: e6afecb23d4de57f5274ab8b5b0b6c8c744e8009 SHA256: 88fd4fc07ccd2f920640155797e07a6fdd6535efd98c5d807ea995f2c3f7d1da Description: Romanian dictionary for hunspell Description-md5: 10607c959078651c46285f922caeda7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-ru Priority: optional Section: text Installed-Size: 5435 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Kurochkin Architecture: all Version: 20120501-1 Replaces: myspell-ru Provides: hunspell-dictionary, hunspell-dictionary-ru Depends: dictionaries-common (>= 1.0.0) Suggests: iceape-browser | iceweasel | icedove, libreoffice Conflicts: myspell-ru, openoffice.org (<= 1.0.3-2) Filename: pool/main/h/hunspell-ru/hunspell-ru_20120501-1_all.deb Size: 780236 MD5sum: 5f9b273b937afa8970319ccc7a3fca7d SHA1: 266c607d578a8be636ba8641db575c7d60d7e03f SHA256: 8d43078286f4401a657eae0ea453649da2dc75336a6d863624484e1113915848 Description: Russian dictionary for hunspell Homepage: http://code.google.com/p/hunspell-ru Description-md5: b2560ee0149ee7f786e1c222fb14fbba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-se Priority: optional Section: text Installed-Size: 25440 Maintainer: Ubuntu Developers Original-Maintainer: Petter Reinholdtsen Architecture: all Version: 1.0~beta6.20081222-1.2 Provides: hunspell-dictionary, hunspell-dictionary-se Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 1:2.4) Conflicts: openoffice.org-core (<< 1:2.4) Filename: pool/main/h/hunspell-se/hunspell-se_1.0~beta6.20081222-1.2_all.deb Size: 3323480 MD5sum: e9c3a30d18aa31f0ef9b9bd4a57ebd38 SHA1: c8d3b5fdec195095f6a54c1453278c8f2945825c SHA256: dfc7cf40a5c8f4560a72d81e39f2c14418a11ee7f3ecec60804d2a8f938b9732 Description: North Sámi Hunspell dictionary Homepage: http://www.divvun.no/ Description-md5: 62b6e0369fa956d93175e6dd703ef89b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-sh Priority: optional Section: text Installed-Size: 2072 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: openoffice.org-dictionaries (1:3.3.0~rc10-2ubuntu3) Version: 1:3.3.0-2ubuntu3 Provides: hunspell-dictionary, hunspell-dictionary-sh Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-da, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/o/openoffice.org-dictionaries/hunspell-sh_3.3.0-2ubuntu3_all.deb Size: 541366 MD5sum: 67a4d53507babd1e3dc104dcda35f548 SHA1: 7ac847f161247b07f284d4c1bf315c01b519891a SHA256: 4cc65ef67dcb38fd4b908a5181d874f90d5ccac7a99e2ff80f9539ee5d6323cd Description: Serbian (Latin) dictionary for hunspell Description-md5: 04f47a26d13c0b2005e61c629953367b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-sr Priority: optional Section: text Installed-Size: 3603 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-sr Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-da, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-sr_4.2.1-0ubuntu1_all.deb Size: 435646 MD5sum: 07d2cf62ad3ef1e49dadc9ee85ca6790 SHA1: c245d3e7d20b5374998b365fff9760c64bc5b489 SHA256: 03bdcb28f07727af902f9bad5709a6728291e6621da01df5b46cac7817bc77a1 Description: Serbian (Cyrillic) dictionary for hunspell Description-md5: f5d57030825603e08dd13f5c2c349e39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-sv-se Priority: optional Section: text Installed-Size: 1237 Maintainer: Ubuntu Developers Original-Maintainer: Jon Lachmann (JoTaB) Architecture: all Source: hunspell-sv Version: 1.51-1 Replaces: myspell-sv-se (<< 1.46) Provides: hunspell-dictionary, hunspell-dictionary-sv Depends: dictionaries-common (>= 0.10) Suggests: libreoffice, iceape-browser | iceweasel | icedove Conflicts: openoffice.org (<= 1.0.3-2) Breaks: myspell-sv-se (<< 1.46) Filename: pool/main/h/hunspell-sv/hunspell-sv-se_1.51-1_all.deb Size: 385848 MD5sum: 3cb9adf0cab1c86c0751c75e0e257a47 SHA1: b42c5a6968096b80e194a8a1eaa6e4bb4bad3d5b SHA256: 46c4662b0a79144b40c3d85039e7d4a8f921467148674933dca20efb67ad1d4c Description: Swedish (SE) dictionary for hunspell Homepage: http://dsso.se Description-md5: 4c9bea8a4d209b5a408d3b2c7d5a0f38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-tools Priority: optional Section: text Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: hunspell Version: 1.3.2-6ubuntu2 Replaces: hunspell (<< 1.2.7-2), libmyspell-dev Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libhunspell-1.3-0, libstdc++6 (>= 4.1.1), perl Conflicts: libmyspell-dev Filename: pool/main/h/hunspell/hunspell-tools_1.3.2-6ubuntu2_i386.deb Size: 36010 MD5sum: 754c601afeffd722cff586e81b6f41ed SHA1: fef4de7a32a80ff11c6dccdb91c18ca8c1fe548c SHA256: 3490c7c498c26913c33949cd66feea33ccf0bd780831c404021f1c5718efb548 Description: tools for hunspell Multi-Arch: foreign Homepage: http://hunspell.sourceforge.net/ Description-md5: faef56263ef510ba98b31e7b12846321 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hunspell-uz Priority: optional Section: text Installed-Size: 2227 Maintainer: Ubuntu Developers Original-Maintainer: Mashrab Kuvatov Architecture: all Source: uzbek-wordlist Version: 0.6-3.2ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-uz, openoffice.org-spellcheck-uz Depends: dictionaries-common (>= 0.10) Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/u/uzbek-wordlist/hunspell-uz_0.6-3.2ubuntu1_all.deb Size: 301378 MD5sum: d1a045ff3d4fc93399a3576c046f333e SHA1: ab670c4cce1b043c97b1a759749d66c37d373044 SHA256: 05761128217d43c8de6d7c96fb83f0cc5e112a7d0f9b744f7397f2bcb3cb25dc Description: The Uzbek dictionary for Hunspell Homepage: http://www.uni-bremen.de/~kmashrab/uzbek-word-list Description-md5: 90697b4c1ee13d3b9009d6e0ac988ba4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hunspell-vi Priority: optional Section: text Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: hunspell-dictionary, hunspell-dictionary-vi Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: hunspell, openoffice.org-hunspell | openoffice.org-core (>= 2.0.2) Conflicts: firefox (<< 2.0.0.3-2), iceape-browser (<< 1.1.1-2), icedove (<< 2.0.0.0-4), iceweasel (<< 2.0.0.3-2), libxul0d (= 1.8.0.11-3), mozilla-browser (<< 1.8+1.1.1-2), myspell-da, openoffice.org (<= 1.0.3-2), openoffice.org-core (<< 2.1~m190-1), thunderbird (<< 2.0.0.1+0dfsg-0) Filename: pool/main/libr/libreoffice-dictionaries/hunspell-vi_4.2.1-0ubuntu1_all.deb Size: 10806 MD5sum: fff9e19e3f1c3a41aedba324884704b4 SHA1: b70e78fd46ee0eac220fb4b0d6b959d0839bd95c SHA256: 575d59e8e0031d6df157acbc7074b79cd523cd754cc750a2cf3834616d2fe0f0 Description: Vietnamese dictionary for hunspell Description-md5: 1b093cf1df281717e230d01b4d824e4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hwdata Priority: optional Section: misc Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Noël Köthe Architecture: all Version: 0.249-1 Depends: usbutils, pciutils Filename: pool/main/h/hwdata/hwdata_0.249-1_all.deb Size: 26150 MD5sum: 26b339ce45c8f1e4c537a6e884d7b00b SHA1: 33eff2aaf91dafe095f7723ffee3ab6e44aec4b1 SHA256: 9aa1f7cece971609030c1678e76516cbea1b718a5a4f318422be64343b2594a2 Description: hardware identification / configuration data Homepage: http://git.fedorahosted.org/git/hwdata.git Description-md5: 6e7179178cc057e540de50958531ced6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: hyphen-af Priority: optional Section: text Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-af (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-af, openoffice.org-hyphenation-af Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-af (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-af_4.2.1-0ubuntu1_all.deb Size: 23640 MD5sum: 82326f6b9453094ec3f9465decd536f5 SHA1: 101847e30bab7e65b37f6d4786e5daff4b73cef6 SHA256: 341abe5601c7a05e37c52fb4dee2c2033e327bc40e4658308537781aa46e3327 Description: Afrikaans hyphenation patterns for LibreOffice Description-md5: a5307d02f0ae0a971eafea3ee9d16123 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-as Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-1 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-as/hyphen-as_0.7.0-1_all.deb Size: 3086 MD5sum: 2f1acda3219686245bba4c38fb0b8890 SHA1: 44938d20c024ed77f4f8e2f1eb7cd4c78f5d8bc6 SHA256: 7173d85398aa1cffa5404ab047cd733d942ad2ab1b61d4d33eb6379fac7a4c4c Description: Assamese hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 6499970f8f88c6b64e1f6671ea5823a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-bn Priority: optional Section: text Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-2 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-bn/hyphen-bn_0.7.0-2_all.deb Size: 3812 MD5sum: 86610eb4a295416384f9d1163aaae4c5 SHA1: 59b35fbf356132a6ea3257b9b2a0ed9444268f53 SHA256: 844595783b3bda96aa7b8bb7990e01f701ce760dee8865527b269eab06aef0bc Description: Bengali hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 7a3d01dd5a3f7a2b80717116e4452956 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-ca Priority: optional Section: text Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-ca (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-ca, openoffice.org-hyphenation-ca Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-ca (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-ca_4.2.1-0ubuntu1_all.deb Size: 8068 MD5sum: 78b5e63f5f6a0c836cf9f1e7f4488e29 SHA1: f0ffd5712b81e3060a8d694e512405effdaa51f5 SHA256: 344227d098d162c0227b77b3c0c2dc7ad1ffe3e6463aad4dc00edffa631888b6 Description: Catalan hyphenation patterns for LibreOffice Description-md5: b1f0417bf15f8eabfe99965dd80f1dd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-de Priority: optional Section: text Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-de (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-de, openoffice.org-hyphenation-de Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-de (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-de_4.2.1-0ubuntu1_all.deb Size: 26046 MD5sum: 4ef97d6a0c39ada6ab9dc3e0f7e2707b SHA1: 955457163f10a8dc11e10c3f4d44bed50c6ab3bb SHA256: 17507f233d5b4d7870b6d18d8064d3a912d560aef69ffa5f1c71847496df8b31 Description: German hyphenation patterns for LibreOffice Description-md5: fcb85331c55478e80f68c456aa2befde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-en-us Priority: optional Section: text Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: hyphen Version: 2.8.6-3ubuntu2 Replaces: openoffice.org-hyphenation-en-us Provides: hyphen-hyphenation-pattern, openoffice.org-hyphenation, openoffice.org-hyphenation-en, openoffice.org-hyphenation-en-us Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen/hyphen-en-us_2.8.6-3ubuntu2_all.deb Size: 47986 MD5sum: 024461af435c7e6965d0af41fed9d21b SHA1: 8ebc880260d256c3a2b88b28ca4530eb19ae16c5 SHA256: 59c34d10dae5ee70809e62cd408fa9024f510d4ed61b93da9122ebf802d9ce9f Description: US English hyphenation patterns for LibreOffice/OpenOffice.org Description-md5: e60be58f330008eaa2d82bc454b9864d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-fr Priority: optional Section: text Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-fr (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-fr, openoffice.org-hyphenation-fr Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-fr (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-fr_4.2.1-0ubuntu1_all.deb Size: 9828 MD5sum: 91816630dffc57bea6c81abcf347106f SHA1: de62ce64ca671f051008af52ee36e7e2c2eb384e SHA256: a0fd4607eaff51db72a75061dc93931e0a62a3b7ad2b41c4c3b589392f2b28ba Description: French hyphenation patterns for LibreOffice Description-md5: 0f4d7ed46797c4f30c8039c2ee661596 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-gu Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-2 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-gu/hyphen-gu_0.7.0-2_all.deb Size: 3542 MD5sum: 9bc08b5dea1a573e9cb5f86b71080ee9 SHA1: ca4dabc89c5ff48ffce1cef8aaea5892adf97d5b SHA256: 9852039dacf7a8e974563e93db260d735616aba12589399f4d3e7da2ea3ceb6c Description: Gujarati hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 292fddf2b1d5ea525c7e1c7fe8c637d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-hi Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Muneeb Shaikh Architecture: all Version: 0.7.0-3 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-hi/hyphen-hi_0.7.0-3_all.deb Size: 3484 MD5sum: aa883828f00caa139e1cb5e26dcee30e SHA1: 77d3b76e9aa8b9623a962419ff6f2b73ae893f37 SHA256: 07ec17beeda7ab51185d80e40feee164bdc66bf9e3b3daf92600fd8c3212629d Description: Hindi hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: a19c86db8d7ccfaf5d8b3bffee4d412a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-hr Priority: optional Section: text Installed-Size: 38 Maintainer: Ubuntu Developers Original-Maintainer: Vedran Furač Architecture: all Source: myspell-hr Version: 20060617-2.4 Replaces: openoffice.org-hyphenation-hr (<< 20060617-2.2~) Provides: openoffice.org-hyphenation Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer Conflicts: openoffice.org (<= 1.0.3-2) Breaks: openoffice.org-hyphenation-hr (<< 20060617-2.2~) Filename: pool/main/m/myspell-hr/hyphen-hr_20060617-2.4_all.deb Size: 6758 MD5sum: 0be44682a093563e65e49f0b82545f03 SHA1: e134cf22ef89e1559fd7fc851e7217fdc285421b SHA256: c37e15cee88f98004480640804478a9d33d383baff0877ef75da4b3ec279a735 Description: Croatian hyphenation pattern for LibreOffice Description-md5: 76e715122f93e2498e1bdb1687793fa3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-hu Priority: optional Section: text Installed-Size: 887 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-hu (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-hu, openoffice.org-hyphenation-hu Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-hu (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-hu_4.2.1-0ubuntu1_all.deb Size: 248582 MD5sum: 8c088aff6ff8c63e761329c3a15ab72e SHA1: aa0da1edc09a94a95b3fe32088c673f9167e74bd SHA256: d69927f8e291b4d22baac55660a72e6bca4c86c1ec80e88bf8d91bc2562b7843 Description: Hungarian hyphenation patterns for LibreOffice Description-md5: 4f2acefedfb909095eeb06a6d77715a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-it Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-it (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-it, openoffice.org-hyphenation-it Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-it (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-it_4.2.1-0ubuntu1_all.deb Size: 3078 MD5sum: ef21ff5d7aa3d2f837280c3a779a32c9 SHA1: 2f31486eba13c7f575a1214166887f618ff65f63 SHA256: fde3a6e9f41350bf613d8146ffc094744af2491bd2d3b426d2b5c69314173bab Description: Italian hyphenation patterns for LibreOffice Description-md5: f6685448f1574540a5e86ebdf6749ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-kn Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-2 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-kn/hyphen-kn_0.7.0-2_all.deb Size: 3676 MD5sum: e1a10215a0f43c1fb1b9a42b4141c9c9 SHA1: beb65ddb9e459be8b9f8908a4552efaa14057feb SHA256: d99bb1f586608f7830d9dac34cf17389a2005c6a06788bf620adf25d7f915b7c Description: Kannada hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 5213b4d38f170a9c5e1105a71b0e99d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-mr Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-1 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-mr/hyphen-mr_0.7.0-1_all.deb Size: 3034 MD5sum: 28af8d2506659d98d9701fbea589171f SHA1: c75d251ceb2147766919acab7bc7ba7b9ce59e3d SHA256: 0b2715d5399f57ca836bcef56b5f5baeb8386c2c365011ccf5fc5edc0bdda195 Description: Marathi hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 7df3a5107229e9c0f812da60a80d88d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-pa Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-1 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-pa/hyphen-pa_0.7.0-1_all.deb Size: 3692 MD5sum: 23ddbf0d8d00326436acc83db6f39b82 SHA1: 311fdb8e55f82cd613ef9e68d606d2cfb79982d7 SHA256: 26223b57116c647f010f4db9d244d65e9dbaf53f7808673290a090cb2efaa11e Description: Punjabi hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: b4d8e0f9cd3afa9821e7f14002ae9b4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-pl Priority: optional Section: text Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Mateusz Skowronski Architecture: all Source: openoffice.org-hyphenation-pl Version: 1:3.0a-4 Replaces: openoffice.org-hyphenation-pl Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-pl, openoffice.org-hyphenation-pl Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/o/openoffice.org-hyphenation-pl/hyphen-pl_3.0a-4_all.deb Size: 17260 MD5sum: 680d3b791ad70aa4f8b176d0386f1781 SHA1: 058caa547cbdf12e4af1b6b4603df1626dfa4970 SHA256: a67635c63925110617ce92511487ec67e4813214c941aaddca49f4b6af414b19 Description: Polish hyphenation patterns for LibreOffice/OpenOffice.org Description-md5: 86fb13e848cc82c9df265b4d3fdfe085 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-ro Priority: optional Section: text Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-ro (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-ro, openoffice.org-hyphenation-ro Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-ro (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-ro_4.2.1-0ubuntu1_all.deb Size: 8204 MD5sum: b8851e14761478ef0e71835f48890c28 SHA1: e13ab99fea8022937284b41a70ef91881a5d1130 SHA256: c75188ea245438e47b6ca238f588d757ae500510784f665ff1623dbd7e0437fa Description: Romanian hyphenation patterns for LibreOffice Description-md5: a0078210900c6e76ce285e3ff5e926a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-ru Priority: optional Section: text Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Ilyas Gasanov Architecture: all Version: 20030310-1ubuntu1 Replaces: openoffice.org-hyphenation (<< 0.7), openoffice.org-hyphenation-ru Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-ru, openoffice.org-hyphenation-ru Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Breaks: openoffice.org-hyphenation (<< 0.7) Filename: pool/main/h/hyphen-ru/hyphen-ru_20030310-1ubuntu1_all.deb Size: 22680 MD5sum: 9dd03835efea668d842c5c944d2695dd SHA1: 8039b836d789099b0067b13066075edada28838b SHA256: 3bde382418ee6e537b9a9c4d1cb418b9342d12de31201a7b2f339abad1d8e395 Description: Russian hyphenation patterns for LibreOffice/OpenOffice.org Homepage: http://scon155.phys.msu.su/~swan/hyphenation.html Description-md5: ba659b49955c19970596e82b98770436 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-sh Priority: optional Section: text Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: openoffice.org-dictionaries (1:3.3.0~rc10-2ubuntu3) Version: 1:3.3.0-2ubuntu3 Replaces: openoffice.org-hyphenation-sh (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-sh, openoffice.org-hyphenation-sh Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-sh (<< 1:3.3.0-7) Filename: pool/main/o/openoffice.org-dictionaries/hyphen-sh_3.3.0-2ubuntu3_all.deb Size: 14302 MD5sum: 8df23c6701ad510dc4c7eafc0dfd5a11 SHA1: f05d21fb45cf073f489d83b232a27b21e3a1be3f SHA256: e7ee3c1a15e53443e12289a6ed157b09739b5cc48f6d4b176f20383a11037ba4 Description: Serbian (Latin) hyphenation patterns for LibreOffice/OpenOffice.org Description-md5: 563012a55349dc830a2b661943bacfb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-sl Priority: optional Section: text Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-sl (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-sl, openoffice.org-hyphenation-sl Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-sl (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-sl_4.2.1-0ubuntu1_all.deb Size: 5902 MD5sum: cf7a2e7c73c2d1ca1bd118a2c5b8f686 SHA1: 0d2dc49514b00a55e165015d0250c8452503363b SHA256: 18164a6c6712a1a151b7cbf0d3788f70a77d8effd5a2271550d7b1ba557b2dfb Description: Slovenian hyphenation patterns for LibreOffice Description-md5: 40e0c6917588d7bc8619905ed09e9a40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-sr Priority: optional Section: text Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-sr (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-sr, openoffice.org-hyphenation-sr Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-sr (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-sr_4.2.1-0ubuntu1_all.deb Size: 16524 MD5sum: cd3747428f153b010c21a75d5caaa329 SHA1: 490c470bc3f26f97199b8f411206e6fd733342d6 SHA256: 5c11f66183786c659f5acb22977fbf4f242adeb20dc270616e33a7236509d2fd Description: Serbian (Cyrillic) hyphenation patterns for LibreOffice Description-md5: 23a66c4273e59dab0a4d572c511db1f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: hyphen-ta Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-1 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-ta/hyphen-ta_0.7.0-1_all.deb Size: 3052 MD5sum: eff2b213f0d68ed42e8c1fbdc02ed727 SHA1: a7e449e826ee7b804235473101a0033648d0f9a8 SHA256: 37d34e0de7c60cf29710a54242e8ca65bad74332b872d8b67efb8f04adcb038b Description: Tamil hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: 32da4ff48e819de74500813b3bd605ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-te Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 0.7.0-1 Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer | openoffice.org-writer Filename: pool/main/h/hyphen-te/hyphen-te_0.7.0-1_all.deb Size: 3054 MD5sum: 818cae0be81c4078e017552dfbd67ded SHA1: c1bf7450690c886ef82cdfe8029d324d91a4d9d4 SHA256: f71fd17049473faaefc52dcc6123418916144810eabe2e27a0163d0b764d8082 Description: Telugu hyphenation patterns for OpenOffice.org/LibreOffice Homepage: http://wiki.smc.org.in/Hyphenation Description-md5: ecc3d6cb3d015e0e244c6efef50fa087 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: hyphen-zu Priority: optional Section: text Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-hyphenation-zu (<< 1:3.3.0-7) Provides: hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-zu, openoffice.org-hyphenation-ui Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Recommends: libreoffice-writer | openoffice.org-writer Conflicts: openoffice.org-hyphenation-zu (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/hyphen-zu_4.2.1-0ubuntu1_all.deb Size: 3002 MD5sum: 3cd978b07cdfd44d070ca77de214546a SHA1: db7123666d21c4a2c6d55392667750df2e7ffdf1 SHA256: 1c28c93ae37dd256990d492170c302001f1564a321638143fa266180ebd5aa14 Description: Zulu hyphenation patterns for LibreOffice Description-md5: 1c92337321e978ec9c5d724ac0cb3b41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: iamerican Priority: optional Section: text Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: all Source: ispell Version: 3.3.02-6 Provides: ispell-dictionary Depends: dictionaries-common, ienglish-common (= 3.3.02-6), ispell, debconf (>= 0.5) | debconf-2.0 Suggests: wamerican Filename: pool/main/i/ispell/iamerican_3.3.02-6_all.deb Size: 187706 MD5sum: 4645f680fd237250e769736c7328be03 SHA1: 5dca913ec6ffa31a106d5eec06ecac1eecadb975 SHA256: 03e0d2d6d0fe3cb0370f4868d3a2ff827e81e8ea9caf3f1d829ef492ade33a3c Description: American English dictionary for ispell (standard version) Homepage: http://www.lasr.cs.ucla.edu/geoff/ispell.html Description-md5: b5822be7a8c9b0ed058672fb296cf975 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iasl Priority: optional Section: devel Installed-Size: 30 Maintainer: Ubuntu Developers Original-Maintainer: Mattia Dongili Architecture: all Source: acpica-unix Version: 20140214-1ubuntu1 Depends: acpica-tools Filename: pool/main/a/acpica-unix/iasl_20140214-1ubuntu1_all.deb Size: 2174 MD5sum: c4bfa92bcaf442cfd232b4943b039f41 SHA1: 666546cc338480c4813ec430624009f96cfbed9c SHA256: 7d895c9f3a2fe4fb48894f968fba6cfed45e071176cc8de307a02bd83fd14ff4 Description: transitional dummy package Homepage: http://www.acpica.org Description-md5: a5c8edd2e468efe26034ff0306cb9680 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibmasm-utils Priority: extra Section: admin Installed-Size: 136 Maintainer: Chuck Short Architecture: i386 Version: 3.0-1ubuntu11 Depends: libc6 (>= 2.4) Conflicts: ibmasm Filename: pool/main/i/ibmasm-utils/ibmasm-utils_3.0-1ubuntu11_i386.deb Size: 15988 MD5sum: bbfe5b128f537f2031a930c35b15eba7 SHA1: 08da9b1a02862ecb8ffd8bab06bcf5e14eb5494a SHA256: 7a0d2959f83a59e8b088402159b1a13bdfb87b72698b7d456dc9ef63c3daa137 Description: IBM Advanced System Management Drivers Description-md5: 1492d898c61fc6156c9371da240e8fd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ibus Priority: optional Section: utils Installed-Size: 1204 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Version: 1.5.5-1ubuntu3 Depends: dconf-cli, gir1.2-gtk-3.0 (>= 3.8.5), gir1.2-ibus-1.0 (= 1.5.5-1ubuntu3), gnome-icon-theme, librsvg2-common, python-gi, python-notify, dconf-gsettings-backend | gsettings-backend, python:any (>= 2.7.1-0ubuntu2), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libdconf1 (>= 0.14.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.2.1), libgtk2.0-0 (>= 2.24.5-4), libibus-1.0-5 (>= 1.5.5), libpango-1.0-0 (>= 1.14.0), libx11-6, libxi6 (>= 2:1.2.99.4) Recommends: ibus-gtk | ibus-qt4, ibus-gtk3 | ibus-qt4, im-config Suggests: ibus-clutter, ibus-doc, ibus-qt4 Breaks: ibus-anthy (<< 1.5.3-2), ibus-el (<< 0.3.2-2), ibus-googlepinyin (<< 0.1.2-2) Filename: pool/main/i/ibus/ibus_1.5.5-1ubuntu3_i386.deb Size: 180566 MD5sum: 3904d4f5d0aa0768d1ab36fadef04f0d SHA1: 7e56eded8504f9d119a237755e65361c7ed5db7b SHA256: 134a136c9445dfe1e65391e394608dc0e720253fd9f82a98da4ff12ccac96512 Description: Intelligent Input Bus - core Multi-Arch: foreign Homepage: http://code.google.com/p/ibus/ Description-md5: 489faf3b419b10c90a2fd62eb552cc93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: ibus-anthy Priority: optional Section: utils Installed-Size: 728 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Version: 1.5.4-2 Depends: anthy, ibus (>= 1.5), python:any (>= 2.7.1-0ubuntu2), libanthy0, libc6 (>= 2.1.3), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/i/ibus-anthy/ibus-anthy_1.5.4-2_i386.deb Size: 66192 MD5sum: 537f0e87c19bdf5a712462c1f08ea18a SHA1: 2ca50d096cb957f5c1aa2d5edb7df32904c8e9b5 SHA256: 003fba5e203bd2e682820b3746ca6425fb33480ad45ff24902fbdf97738cd951 Description: anthy engine for IBus Homepage: http://code.google.com/p/ibus Description-md5: 505c94c7454cb60018e66638b33fc6c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-usb Package: ibus-anthy-dev Priority: optional Section: libdevel Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: ibus-anthy Version: 1.5.4-2 Depends: anthy, ibus (>= 1.5) Filename: pool/main/i/ibus-anthy/ibus-anthy-dev_1.5.4-2_i386.deb Size: 6336 MD5sum: 8b90991ea102390e6409edaa4692aa7f SHA1: fef44055a2b12bbd50a3c8197913550dada3818b SHA256: d07695b653a0e82e9fc36d9e71ad1b294913f213009a0affb6d4210ce87444b9 Description: anthy engine for IBus, development files Multi-Arch: same Homepage: http://code.google.com/p/ibus Description-md5: 51066f2ee01056b293e228aa3638e623 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibus-chewing Priority: optional Section: utils Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Version: 1.4.10.1-1 Depends: libc6 (>= 2.4), libchewing3 (>= 0.3.4), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.12.0), libibus-1.0-5 (>= 1.5.1), libx11-6, gconf2 (>= 2.28.1-2), ibus (>= 1.5) Filename: pool/main/i/ibus-chewing/ibus-chewing_1.4.10.1-1_i386.deb Size: 39804 MD5sum: a829ae5de7929fe6830eb1c283ba8671 SHA1: 700e15752ab9648ad1dbc5528bf4b7207a021ccf SHA256: 5ca7b5cd384dc644a8ae4fcb97b353695e01a02d213e5b5e49955ff1668a5dba Description: Chewing engine for IBus Homepage: http://code.google.com/p/ibus Description-md5: 41b0580d9f7567a74d302851c00d4d6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-chewing-dbg Priority: extra Section: debug Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: ibus-chewing Version: 1.4.10.1-1 Depends: ibus-chewing (= 1.4.10.1-1) Filename: pool/main/i/ibus-chewing/ibus-chewing-dbg_1.4.10.1-1_i386.deb Size: 85660 MD5sum: 19fd5603d8fa1abc904c0fbbec84566c SHA1: 3977257dc5952e9a912ed5ff3c64b15acf8c0031 SHA256: 1042b55dd8cadce453dcbf9883db716168dfb6beaf7804daa30fc7961bd07ce7 Description: Chewing engine for IBus - debugging symbols Homepage: http://code.google.com/p/ibus Description-md5: bb518b51a924dee6927d341072e34d00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibus-doc Priority: optional Section: doc Installed-Size: 4174 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus Version: 1.5.5-1ubuntu3 Filename: pool/main/i/ibus/ibus-doc_1.5.5-1ubuntu3_all.deb Size: 238112 MD5sum: e159530e174724c67c5ef5d975866cf6 SHA1: bf5ccf7b2909017a972b34525368b0e799ffe5c7 SHA256: 85b9f6ac90f59179986aadb215f08aa2ff2d62e0cffd085875ddc6d6db7c0db4 Description: Intelligent Input Bus - development documentation Homepage: http://code.google.com/p/ibus/ Description-md5: 09048d4e789485a527aee6fb9a9dd253 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibus-gtk Priority: optional Section: utils Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: ibus Version: 1.5.5-1ubuntu3 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.31.8), libgtk2.0-0 (>= 2.24.5-4), libibus-1.0-5 (>= 1.5.1), libpango-1.0-0 (>= 1.14.0) Filename: pool/main/i/ibus/ibus-gtk_1.5.5-1ubuntu3_i386.deb Size: 12960 MD5sum: b9e265d48bc05c63a27aac040dda5452 SHA1: b922ec6bfdaabf174cb83922ae8709a2fa133097 SHA256: f83a8f559831d370336039f67615f1b3441964331cc37a02b6d3e8317e766931 Description: Intelligent Input Bus - GTK+2 support Multi-Arch: same Homepage: http://code.google.com/p/ibus/ Description-md5: 1f9ea675e099fe199fcaa23aae7ef941 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ibus-gtk3 Priority: optional Section: utils Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: ibus Version: 1.5.5-1ubuntu3 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.0.0), libibus-1.0-5 (>= 1.5.4), libpango-1.0-0 (>= 1.14.0) Filename: pool/main/i/ibus/ibus-gtk3_1.5.5-1ubuntu3_i386.deb Size: 13068 MD5sum: f2e11cef045c0b58244d738f2ee29f23 SHA1: ed4b745723eb4d7a9ed289b803665b94c2119c37 SHA256: b5ef9a99da7fe4dce2b17e8a0a981b262d52c70645fb8df6893a638e55849f40 Description: Intelligent Input Bus - GTK+3 support Multi-Arch: same Homepage: http://code.google.com/p/ibus/ Description-md5: bffc1306e64ce23ae551c3e11837360a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ibus-hangul Priority: optional Section: utils Installed-Size: 312 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Version: 1.4.2-3 Depends: gir1.2-gtk-3.0, ibus, python-gi (>= 3.0), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.24.0), libhangul1 (>= 0.1.0), libibus-1.0-5 (>= 1.5.1) Filename: pool/main/i/ibus-hangul/ibus-hangul_1.4.2-3_i386.deb Size: 51844 MD5sum: 484c72fb9f07b7b9712d3b102b9fe74b SHA1: 0ae019b6dce614a8f8388a6ba910f6a0cbc06c1b SHA256: 96b86a0c1185c4c5c1ee0ed0db70ce9ad9e7108a70edb3c93361543999df8eee Description: Hangul engine for IBus Homepage: http://code.google.com/p/ibus Description-md5: 4e243516689250cc0c28c7b8c9ef79a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-m17n Priority: optional Section: utils Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Version: 1.3.4-3ubuntu1 Depends: ibus, libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.28.0), libgtk-3-0 (>= 3.0.0), libibus-1.0-5 (>= 1.5.1), libm17n-0 (>= 1.6.3) Filename: pool/main/i/ibus-m17n/ibus-m17n_1.3.4-3ubuntu1_i386.deb Size: 29784 MD5sum: 105f5d5d63509c7db0a74a9d7bb2a5c9 SHA1: a0ccae66275b3637abcbc2331c1bc34de00b02ba SHA256: bb47d8ce604027dd4d8f26418bce37f77446a97760d4134c5fec83bfabf709f3 Description: m17n engine for IBus Homepage: http://code.google.com/p/ibus Description-md5: 708da2b84aa9b56aa3d1fd82f0066c89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibus-pinyin Priority: optional Section: utils Installed-Size: 1400 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Version: 1.5.0-1ubuntu1 Depends: ibus (>= 1.5), libpyzy-1.0-0, python-ibus, python-xdg, python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.37.3), libibus-1.0-5 (>= 1.5.1), liblua5.2-0, libsqlite3-0 (>= 3.6.11), libstdc++6 (>= 4.5) Filename: pool/main/i/ibus-pinyin/ibus-pinyin_1.5.0-1ubuntu1_i386.deb Size: 414230 MD5sum: b610437a61e4713478fff154aeee2a7b SHA1: e281890cd610ea6e4274d778929ce99afe71cc39 SHA256: 829bffa89f69f1bfcf09c77dc2447cb011c1dbd317569991e4b14e00ab0acfb9 Description: Pinyin engine for IBus Multi-Arch: foreign Homepage: http://code.google.com/p/ibus Description-md5: cbc95a4d4b71d4719d3b69058e9a3ecf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ibus-sunpinyin Priority: optional Section: utils Installed-Size: 556 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Version: 2.0.3-5build1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.35.9), libibus-1.0-5 (>= 1.5.1), libstdc++6 (>= 4.2.1), libsunpinyin3, python (>= 2.7.1-0ubuntu2), sunpinyin-data, python-glade2 Filename: pool/main/i/ibus-sunpinyin/ibus-sunpinyin_2.0.3-5build1_i386.deb Size: 190374 MD5sum: 2e7d5d4b5fa20178c2483794f0868167 SHA1: e1db54391155293ddb0c7fd588feb9f60fd50fb0 SHA256: a22be908b59c69a2e8ea589bc8369c99362d72e5822da48c813cc23313622cd0 Description: sunpinyin engine for ibus Homepage: http://code.google.com/p/sunpinyin Description-md5: 09535412ce7ac7a2dbc02de8607f3f55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ibus-table Priority: optional Section: utils Installed-Size: 744 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Version: 1.5.0.is.1.5.0.20130419-2 Depends: ibus (>= 1.5.0), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/i/ibus-table/ibus-table_1.5.0.is.1.5.0.20130419-2_all.deb Size: 214052 MD5sum: ab0aebd55182d92437d50d3da7a47e9c SHA1: f14caa6952dd556e13c58c028efb546c3c6d5869 SHA256: 2c992bd86533d76c33f4cbe9f4787b5059ea8db61558fa06b2c156a593ce2b18 Description: table engine for IBus Homepage: http://code.google.com/p/ibus Description-md5: e031a824eef34ac558f88d83af479d09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ibus-table-cangjie Priority: optional Section: utils Installed-Size: 28 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table-cangjie3, ibus-table-cangjie5, ibus-table-cangjie-big Filename: pool/main/i/ibus-table-chinese/ibus-table-cangjie_1.4.6-Source-1_all.deb Size: 2662 MD5sum: b12595f789fa9ef8956fb0ecef7174c2 SHA1: 5a34402c40ecbe25e9688cfa4efb16a33c214759 SHA256: 20eb13243e113fff337c9bb648ab751af3a2e027de583c51107f2698fe6bc83d Description: ibus-table input method: CangJie (dummy package) Homepage: http://code.google.com/p/ibus Description-md5: acb60694cc35cb702c2977198bf13ef4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-cangjie-big Priority: optional Section: utils Installed-Size: 4985 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-cangjie-big_1.4.6-Source-1_all.deb Size: 1931784 MD5sum: 4a576c19418e0924d0199778fce9900d SHA1: a09eedf231785af00b33188b3962c12144b0bdc8 SHA256: 3278585169a8ecd7930a87454f00b994f9438e69a8a3581f6b1d363a38a3361f Description: ibus-table input method: CangJie (big) Homepage: http://code.google.com/p/ibus Description-md5: 8fedd8c480d9cbf548915bcb43772119 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-cangjie3 Priority: optional Section: utils Installed-Size: 2954 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-cangjie3_1.4.6-Source-1_all.deb Size: 1128944 MD5sum: 71034b4e6d38659e330750149b0d7ff7 SHA1: bb4913a9b9be90fffcecaf52d7e3303ec290c08f SHA256: 0aac043676aff8e2b551e3a96ff9d386dbc0cb88a6cbf2b2b7e26e53974016fc Description: ibus-table input method: CangJie3 Homepage: http://code.google.com/p/ibus Description-md5: d4a5ff016a00bc9265ad90550fcab2be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-cangjie5 Priority: optional Section: utils Installed-Size: 6482 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-cangjie5_1.4.6-Source-1_all.deb Size: 2511380 MD5sum: 08976235eaaf0dfffef8abb025ff3376 SHA1: 809cd21087402fa9311a08ad9a7d5e2d04525ca9 SHA256: a89869e4097378fa4a28e92f6ee45a8d38c738b42f3d7ef7f6f2706547f32d20 Description: ibus-table input method: CangJie5 Homepage: http://code.google.com/p/ibus Description-md5: 59317e407747164d15e633e19cc42e10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-erbi Priority: optional Section: utils Installed-Size: 3857 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-erbi_1.4.6-Source-1_all.deb Size: 1781918 MD5sum: 710fba1b653a38cd21aaa04639b1a4f6 SHA1: 5e4225a0777c00b90a17005ff4346e0570891089 SHA256: ad2b9c31dccd03e2e7f818b7d73e06c9c78375a3560819ad296993989738a0bc Description: ibus-table input method: ErBi Homepage: http://code.google.com/p/ibus Description-md5: 392dfe636cd5717cb1f83161bc72cfb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-extraphrase Priority: optional Section: utils Installed-Size: 5184 Maintainer: Ubuntu Developers Original-Maintainer: LI Daobing Architecture: all Version: 1.2.0.20100305-1 Filename: pool/main/i/ibus-table-extraphrase/ibus-table-extraphrase_1.2.0.20100305-1_all.deb Size: 2123480 MD5sum: 3c18c4db7228d18896885f952d29ca34 SHA1: 84508eadcc7eb02c0a35264e87d21ecb94277386 SHA256: dde103284d7df0c0cb36fa3fb4a2a388a63134eeb183d80c425b2e289390f009 Description: Extra phrase for table engine of ibus Homepage: http://code.google.com/p/ibus Description-md5: 01d06f393cb71e1e2c8434088db312c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-wubi Priority: optional Section: utils Installed-Size: 26128 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-wubi_1.4.6-Source-1_all.deb Size: 11635436 MD5sum: 4f3b8427bca1426cecf503c6b71514f0 SHA1: e5c6bd50705e844d49db273d6a459b815f23505f SHA256: ccbcbf64eaa8b8c8fe7f8f7e35ca40b5f932f0741eeb1791510a7a7d8a28a1dd Description: ibus-table input method: Wubi Homepage: http://code.google.com/p/ibus Description-md5: 278793ebd142ced486093b43728001bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-table-yong Priority: optional Section: utils Installed-Size: 5407 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus-table-chinese Version: 1.4.6-Source-1 Depends: ibus-table (>= 1.3.9.20110827) Filename: pool/main/i/ibus-table-chinese/ibus-table-yong_1.4.6-Source-1_all.deb Size: 2185650 MD5sum: 10810a0b0875a2d62049b64c0bdec75b SHA1: 3b16f056c266e27710498b4e6db85be5da23d1bb SHA256: 66ede9e6f163fad6099afca9ba1fd2f784e20c435121cc4bd76ca75b0866b423 Description: ibus-table input method: YongMa Homepage: http://code.google.com/p/ibus Description-md5: 721d8a21a95b0d10850050efbef1d0b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ibus-unikey Priority: extra Section: utils Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: Lê Quốc Tuấn Architecture: i386 Version: 0.6.1-1build2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.12.0), libibus-1.0-5 (>= 1.5.1), libstdc++6 (>= 4.4.0), libx11-6, ibus (>= 1.3.99) Filename: pool/main/i/ibus-unikey/ibus-unikey_0.6.1-1build2_i386.deb Size: 84060 MD5sum: 6763898fbc02f143472680ae7d33ba44 SHA1: 151dfaa633073851fe33e4c4c155c1032a403cf5 SHA256: 291219996292207f04d75cc9f94ed3518b6797efc0c404ae2507f07e3e0f41bf Description: Vietnamese Input Method Engine for IBus using Unikey Engine Homepage: http://ibus-unikey.googlecode.com/ Description-md5: 985e023e854ac292f0b39058569a0321 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: icc-profiles-free Priority: optional Section: graphics Installed-Size: 1665 Maintainer: Ubuntu Developers Original-Maintainer: Oleksandr Moskalenko Architecture: all Version: 2.0.1+dfsg-1 Replaces: icc-profiles (<= 2.0-2) Conflicts: icc-profiles (<= 2.0-2) Breaks: icc-profiles (<= 2.0-2) Filename: pool/main/i/icc-profiles-free/icc-profiles-free_2.0.1+dfsg-1_all.deb Size: 549198 MD5sum: 01697f6893a029a8e5b6d2b25d1f895a SHA1: e0415862cbf0ceb1b446143f68973c965b9b3385 SHA256: f59b543a8bd6ddc50c2889e4c74c6bd27011ccca72787cd7ff6de6aab3e4ac1f Description: ICC color profiles for use with color profile aware software Description-md5: 6584abf9fda2e191cfa8f85a81a04059 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, ubuntustudio-publishing, ubuntustudio-photography Package: icedtea-7-jre-jamvm Priority: extra Section: java Installed-Size: 1632 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: i386 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Depends: openjdk-7-jre-headless (= 7u51-2.4.6-1ubuntu4), libc6 (>= 2.4), zlib1g (>= 1:1.1.4) Filename: pool/main/o/openjdk-7/icedtea-7-jre-jamvm_7u51-2.4.6-1ubuntu4_i386.deb Size: 419842 MD5sum: 5bef60f5eb130e5e69f53d185a78f102 SHA1: f71a7969967080328895e17219e996fc5c10d2b1 SHA256: e029a670011e463096c466841dc5f5bd137f69cf73b4529ef7cc83aff9637be0 Description: Alternative JVM for OpenJDK, using JamVM Multi-Arch: same Homepage: http://openjdk.java.net/ Description-md5: a3b67c2c3683232269f84a02ede3fd4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: icedtea-7-plugin Priority: extra Section: web Installed-Size: 687 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: i386 Source: icedtea-web Version: 1.5-1ubuntu1 Depends: openjdk-7-jre, icedtea-netx (= 1.5-1ubuntu1), libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libstdc++6 (>= 4.6) Conflicts: icedtea-gcjwebplugin (<< 1.0-1ubuntu4), icedtea-plugin (<< 1.2~pre1-1~), icedtea6-plugin (<< 6b21.2~pre1-1~) Filename: pool/main/i/icedtea-web/icedtea-7-plugin_1.5-1ubuntu1_i386.deb Size: 153020 MD5sum: 8289ce874232cdc060bf8af906581482 SHA1: c443d17dd879bc6b6e3f14aec98b09b2d7425a3f SHA256: 9c1586479f207b137183e4267c5ba77fca5817dabfa4fc0ba719cb674868a2a4 Description: web browser plugin based on OpenJDK and IcedTea to execute Java applets Multi-Arch: same Homepage: http://icedtea.classpath.org/wiki/IcedTea-Web Npp-Applications: ec8030f7-c20a-464f-9b0e-13a3a9e97384, 92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a, aa5ca914-c309-495d-91cf-3141bbb04115 Npp-Description: IcedTea Java Web Browser Plugin for OpenJDK 7 (execution of applets on web pages) Npp-Mimetype: application/x-java-vm, application/x-java-applet, application/x-java-applet;version=1.1, application/x-java-applet;version=1.1.1, application/x-java-applet;version=1.1.2, application/x-java-applet;version=1.1.3, application/x-java-applet;version=1.2, application/x-java-applet;version=1.2.1, application/x-java-applet;version=1.2.2, application/x-java-applet;version=1.3, application/x-java-applet;version=1.3.1, application/x-java-applet;version=1.4, application/x-java-applet;version=1.4.1, application/x-java-applet;version=1.4.2, application/x-java-applet;version=1.5, application/x-java-applet;version=1.6, application/x-java-applet;version=1.7, application/x-java-applet;jpi-version=1.7.0_00, application/x-java-bean, application/x-java-bean;version=1.1, application/x-java-bean;version=1.1.1, application/x-java-bean;version=1.1.2, application/x-java-bean;version=1.1.3, application/x-java-bean;version=1.2, application/x-java-bean;version=1.2.1, application/x-java-bean;version=1.2.2, application/x-java-bean;version=1.3, application/x-java-bean;version=1.3.1, application/x-java-bean;version=1.4, application/x-java-bean;version=1.4.1, application/x-java-bean;version=1.4.2, application/x-java-bean;version=1.5, application/x-java-bean;version=1.6, application/x-java-bean;version=1.7, application/x-java-bean;jpi-version=1.7.0_00 Npp-Name: The IcedTea Web Browser Plugin Description-md5: 73779ff36047046383e1c1bd3e13a884 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-dvd-live, kubuntu-active-dvd-live Package: icedtea-netx Priority: extra Section: java Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: i386 Source: icedtea-web Version: 1.5-1ubuntu1 Replaces: openjdk-6-jre (<< 6b18-1.8.7-3), openjdk-6-jre-headless (<< 6b18-1.8.7-3) Depends: openjdk-7-jre | openjdk-6-jre (>= 6b23~pre10~), icedtea-netx-common (>= 1.5-1ubuntu1) Conflicts: openjdk-6-jre (<< 6b18-1.8.7-3), openjdk-6-jre-headless (<< 6b18-1.8.7-3) Filename: pool/main/i/icedtea-web/icedtea-netx_1.5-1ubuntu1_i386.deb Size: 19506 MD5sum: a39af4e33124519d5740ee4cab785c86 SHA1: b81740cb595ef8beb057f65a5f04a03c375a9ffd SHA256: 487cab0fc4787e1c6d1446ea6e3dc3400e088cb3385787ffda1b566e3c24d444 Description: NetX - implementation of the Java Network Launching Protocol (JNLP) Multi-Arch: same Homepage: http://icedtea.classpath.org/wiki/IcedTea-Web Description-md5: 052037f44a864c63fefe21804d48141f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-dvd-live, kubuntu-active-dvd-live Package: icedtea-netx-common Priority: extra Section: java Installed-Size: 1334 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: all Source: icedtea-web Version: 1.5-1ubuntu1 Replaces: icedtea-netx (<< 1.2~), icedtea-plugin (<< 1.1.2-1~), openjdk-6-jre (<< 6b18-1.8.7-3), openjdk-6-jre-headless (<< 6b18-1.8.7-3) Conflicts: openjdk-6-jre (<< 6b18-1.8.7-3), openjdk-6-jre-headless (<< 6b18-1.8.7-3) Filename: pool/main/i/icedtea-web/icedtea-netx-common_1.5-1ubuntu1_all.deb Size: 1137090 MD5sum: ab6c09c10297d9da4f5b4a2a3d510a40 SHA1: 7280a201f725014ba1999993c51c5e640c37763e SHA256: f9c2cd4d0225de61dfa9717eb681db65e3663ff5440e63f785d771a381e091ff Description: NetX - implementation of the Java Network Launching Protocol (JNLP) Multi-Arch: foreign Homepage: http://icedtea.classpath.org/wiki/IcedTea-Web Description-md5: f1e89cc323726441544f1bc048dd4946 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-dvd-live, kubuntu-active-dvd-live Package: icedtea-plugin Priority: extra Section: web Installed-Size: 35 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: all Source: icedtea-web Version: 1.5-1ubuntu1 Depends: icedtea-7-plugin Filename: pool/main/i/icedtea-web/icedtea-plugin_1.5-1ubuntu1_all.deb Size: 3214 MD5sum: 888f7bfd4dbf32bc8a986c3f62eff389 SHA1: fcf9159f3680b8b0bec3e43d4d1a6b8cc3632bb4 SHA256: c7793bb6b76ee507bb348e591ca592389c5e8ba11605a5c3ca1b3797128b4170 Description: web browser plugin to execute Java applets (dependency package) Homepage: http://icedtea.classpath.org/wiki/IcedTea-Web Description-md5: 6da6e3fbb572567cdab3a35a85e93560 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-dvd-live, kubuntu-active-dvd-live Package: icon-naming-utils Priority: optional Section: gnome Installed-Size: 108 Maintainer: Ubuntu Core Developers Original-Maintainer: Philipp Kern Architecture: all Version: 0.8.90-2 Depends: perl, libxml-simple-perl Filename: pool/main/i/icon-naming-utils/icon-naming-utils_0.8.90-2_all.deb Size: 11492 MD5sum: 9ad12f4ddbd5fa9259e9b389717cdefc SHA1: cb75959a340c983443d1435fbe0c961ceae3ef9c SHA256: cca4af936f1eff50345008c65a4461d72cae22f7db9fbf4ec78912b578ca9aad Description: script for maintaining backwards compatibility of Tango Project Homepage: http://www.tango-project.org Description-md5: 5aaeb0f96a8778a442c08d744b22e0bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: icu-devtools Priority: optional Section: libdevel Installed-Size: 497 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: icu Version: 52.1-3 Replaces: icu-tools (<< 52.1-3~), libicu-dev (<< 52.1-3) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1) Breaks: icu-tools (<< 52.1-3~), libicu-dev (<< 52.1-3) Filename: pool/main/i/icu/icu-devtools_52.1-3_i386.deb Size: 158788 MD5sum: 900fd14c306613dc5d520238a57f71cd SHA1: 972c9958c81339dc30d399eac56e865942ada973 SHA256: 55a7777986d58e6b26c532b09ec1e6675812379260cfd19d19aa1f3fa351e5c5 Description: Development utilities for International Components for Unicode Multi-Arch: foreign Homepage: http://www.icu-project.org Description-md5: 4f58797462ac478415b579bf552abff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: icu-doc Priority: optional Section: doc Installed-Size: 41798 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: all Source: icu Version: 52.1-3 Filename: pool/main/i/icu/icu-doc_52.1-3_all.deb Size: 2627658 MD5sum: 5b0da581886ca0e9c331c3634a0371bf SHA1: 8d27110bcb2cc9f112000e9b6b618eb305846fea SHA256: 4a6c28c90b7c880395afaefee58b49e81f37b086feb69779de2a75d2fbb2e6d8 Description: API documentation for ICU classes and functions Homepage: http://www.icu-project.org Description-md5: 85b63ef20f81e6ed56386e76f65f4297 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: idle Priority: optional Section: python Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-defaults Version: 2.7.5-5ubuntu3 Replaces: python (<< 2.7.3-1~) Depends: python (>= 2.7.5-5ubuntu3), python-tk, idle-python2.7 Breaks: python (<< 2.7.3-1~) Filename: pool/main/p/python-defaults/idle_2.7.5-5ubuntu3_all.deb Size: 3114 MD5sum: c18627e5a82c87a441cc1b8a3c278240 SHA1: 44525cf376f81a06da8374e0f4309e7756efd181 SHA256: 8776508df7c4df3f3e71d608596cd4c27470e9b7dacfde86361320c63e6d3ab8 Description: IDE for Python using Tkinter (default version) Enhances: python Homepage: http://www.python.org/ Description-md5: d98c42430725f0a7a890e93ce1835e7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: idle-python2.7 Priority: optional Section: python Installed-Size: 1084 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.6.1-2) Depends: python2.7, python-tk (>= 2.6~a3), python2.7-tk Filename: pool/main/p/python2.7/idle-python2.7_2.7.6-8_all.deb Size: 222576 MD5sum: aad47d4c9a0ac711ebd48ae0bdd1dafa SHA1: a3b33a43caaa29c13c6ea98af2e282b40ad456ac SHA256: 56fa53afc073607ab228799c7d145ea89d73affbbcdbf19217e1381f62974557 Description: IDE for Python (v2.7) using Tkinter Enhances: python2.7 Description-md5: 1fd93a936611995336444949b73d0b8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: idle-python3.4 Priority: optional Section: python Installed-Size: 200 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: python3.4, python3-tk, python3.4-tk Filename: pool/main/p/python3.4/idle-python3.4_3.4.0-2ubuntu1_all.deb Size: 33678 MD5sum: 70521cbd17fef167fd23f2a554374783 SHA1: 1ab9de4965ec9c9fd73fce50c553f5805f626225 SHA256: 0b5290ee3af92b7d44f09f32bd65a1f739795ec614d9041c1509c44ccaa65d97 Description: IDE for Python (v3.4) using Tkinter Enhances: python3.4 Description-md5: e512a89469c399100e6c8d9b845e1aea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: idle3 Priority: optional Section: python Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3-defaults Version: 3.4.0-0ubuntu2 Replaces: python3 (<< 3.2.3-1~) Depends: python3 (>= 3.4.0-0ubuntu2), python3-tk, idle-python3.4 Breaks: python3 (<< 3.2.3-1~) Filename: pool/main/p/python3-defaults/idle3_3.4.0-0ubuntu2_all.deb Size: 3080 MD5sum: 583c7eea45a327946d05cb369a61a41c SHA1: 8051f1b75bb55b6cd489ac3ec8a2cf4884a7c192 SHA256: 3d4f6e1e98e18bca3788377ab62cdda9e3eba2dd86d268467ca8365011a7c98e Description: IDE for Python using Tkinter (default version) Enhances: python3 Homepage: http://www.python.org/ Description-md5: 68e68d2a1fb7d9696e2efbe40970bf3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ienglish-common Priority: optional Section: text Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: all Source: ispell Version: 3.3.02-6 Depends: dictionaries-common (>= 1.10.6~), ispell (>= 3.3.02) Recommends: iamerican | iamerican-small | iamerican-large | iamerican-huge | iamerican-insane | ibritish | ibritish-small | ibritish-large | ibritish-huge | ibritish-insane Filename: pool/main/i/ispell/ienglish-common_3.3.02-6_all.deb Size: 11164 MD5sum: 7ceb2b1a5de472d31503528c19fe6587 SHA1: f01236a3ce28a3e2c858ac43f835e4aae2e34b57 SHA256: 7a8392e57e9a00d9f483a5df6e0b060ec947fe693ad6ef420dd5b9fde942ca43 Description: Common files for British and American ispell dictionaries Homepage: http://www.lasr.cs.ucla.edu/geoff/ispell.html Description-md5: 00100424e9bbeb721b9f506e8d037b49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ifenslave Priority: optional Section: net Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: all Version: 2.4ubuntu1 Replaces: ifenslave-2.6 (<< 1.1.0-22) Depends: ifupdown, iproute2 Recommends: net-tools Breaks: ifenslave-2.6 (<< 1.1.0-22) Filename: pool/main/i/ifenslave/ifenslave_2.4ubuntu1_all.deb Size: 12922 MD5sum: 939a6c5c389757ace752bb01d0467064 SHA1: 200c21cf95c8b746ae961ce0e87214c6bd8aea5a SHA256: 1f457ab74ca730d3499155dec69a55f97a51fbba0b31e045099e3767f8937078 Description: configure network interfaces for parallel routing (bonding) Multi-Arch: foreign Description-md5: 74732f22bb89d876029092ddddb4e653 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ifenslave-2.6 Priority: optional Section: net Installed-Size: 30 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: all Source: ifenslave Version: 2.4ubuntu1 Depends: ifenslave (>= 2.2) Filename: pool/main/i/ifenslave/ifenslave-2.6_2.4ubuntu1_all.deb Size: 1642 MD5sum: 38759149a444c81e9f8261540c0dcf30 SHA1: fc6f17d90471fe85f9808130aa7516bb14d39cb7 SHA256: dab0e0d47c22b5a460f45f22fa52ca1767e2e5973678ae58358d2490fd193bf2 Description: transitional package, use "ifenslave" Multi-Arch: foreign Description-md5: 9c4d28f6aed0f5dbf0603d3f68d763cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ifupdown Priority: required Section: admin Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Andrew Shadura Architecture: i386 Version: 0.7.47.2ubuntu4 Replaces: netbase (<< 5.0) Depends: iproute2, libc6 (>= 2.7), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 4.1+Debian3), initscripts (>= 2.88dsf-25), adduser Recommends: isc-dhcp-client | dhcp-client Suggests: ppp, rdnssd, net-tools Breaks: dhcp3-client (<< 4.0), netbase (<< 5.0) Filename: pool/main/i/ifupdown/ifupdown_0.7.47.2ubuntu4_i386.deb Size: 51230 MD5sum: b118aabe578648272430d5d907a51a71 SHA1: 9b7dd173907e7213fd3eafb93b9b49c497822e09 SHA256: 94d26257ec85838d5d368ce2719be6e51b039ab0aa72bbe02a828cdcb111777f Description: high level tools to configure network interfaces Multi-Arch: foreign Description-md5: 442edbd184a6e1febc9b203604eb38f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: im-config Priority: optional Section: x11 Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Osamu Aoki Architecture: all Version: 0.24-1ubuntu4 Provides: im-switch Depends: zenity | kde-baseapps-bin | dialog, gettext-base Recommends: x11-common, dialog Conflicts: im-switch Filename: pool/main/i/im-config/im-config_0.24-1ubuntu4_all.deb Size: 22214 MD5sum: 12851d1e0109616dbacb5bfac7a582c0 SHA1: 248a88a09b9605d12fc7358427413fa711487423 SHA256: 5c7fbf8265b7394c41a74227aae88e92a04b5da2549511c9c7af38157180e3ea Description: Input method configuration framework Description-md5: 7ebedf87e8f65c091969a42e1c5aaad4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: imagemagick Priority: optional Section: graphics Installed-Size: 440 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: i386 Version: 8:6.7.7.10-6ubuntu3 Depends: libc6 (>= 2.3.6-6~), libmagickcore5 (>= 8:6.7.7.10), libmagickwand5 (>= 8:6.7.7.10), hicolor-icon-theme Recommends: libmagickcore5-extra, ghostscript, netpbm Suggests: imagemagick-doc, autotrace, cups-bsd | lpr | lprng, curl, enscript, ffmpeg, gimp, gnuplot, grads, groff-base, hp2xx, html2ps, libwmf-bin, mplayer, povray, radiance, sane-utils, texlive-base-bin, transfig, xdg-utils, ufraw-batch Filename: pool/main/i/imagemagick/imagemagick_6.7.7.10-6ubuntu3_i386.deb Size: 188484 MD5sum: ecea98ff8e7e336c1f727eb7969a587c SHA1: 739ceaa1334f5caac2fd99cb5ecc96c081341683 SHA256: 3848eb8a4a4be362003fe923c96468f5ddec30efc86358be82d3f8614e14e355 Description: image manipulation programs Multi-Arch: foreign Homepage: http://www.imagemagick.org/ Description-md5: 7c91199cdb23d3f0345a662d072b5a37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: imagemagick-common Priority: optional Section: graphics Installed-Size: 295 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: all Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Pre-Depends: dpkg (>= 1.15.7.2) Filename: pool/main/i/imagemagick/imagemagick-common_6.7.7.10-6ubuntu3_all.deb Size: 37156 MD5sum: 8218c800bf862f820cc6a4cdc23f09a6 SHA1: be00884ba3f35d0cdad69dd3f4cbee53fb57d52e SHA256: 6ec5d7974b285ad5bcc8b3bba988ba94bf50fffb485c9c13fc5f23d2acb2fe6b Description: image manipulation programs -- infrastructure Multi-Arch: foreign Homepage: http://www.imagemagick.org/ Description-md5: 374ab3990448f9e5ee5a8ddca297d3a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: imagemagick-dbg Priority: extra Section: libdevel Installed-Size: 6871 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: i386 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: imagemagick (= 8:6.7.7.10-6ubuntu3), libmagick++5 (= 8:6.7.7.10-6ubuntu3), libmagickcore5-extra (= 8:6.7.7.10-6ubuntu3), perlmagick (= 8:6.7.7.10-6ubuntu3) Filename: pool/main/i/imagemagick/imagemagick-dbg_6.7.7.10-6ubuntu3_i386.deb Size: 5466058 MD5sum: cacd0cde0f64e88f2afd1f54e71f8482 SHA1: 72981b539a5799d3ac9258bc2e5fdf272b563721 SHA256: 4f4f6993b81b2fe43d25d04eab31db71e5c868be0b25db4118bb5f9bea311fd3 Description: debugging symbols for ImageMagick Homepage: http://www.imagemagick.org/ Description-md5: bcd82c976803bc08e1948c79a714f76d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: imagemagick-doc Priority: optional Section: doc Installed-Size: 21712 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: all Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Recommends: www-browser Suggests: imagemagick Conflicts: imagemagick (<= 7:6.4.0) Filename: pool/main/i/imagemagick/imagemagick-doc_6.7.7.10-6ubuntu3_all.deb Size: 4216086 MD5sum: 0f91cd3f93415d5de4a1f18e8cb9e645 SHA1: c1374781716450d28c3420fd9e7860ff4b53a520 SHA256: 43858b7cd972c605868fed015074fbb685e100a36590b6fe33585c19bce9f6d5 Description: document files of ImageMagick Homepage: http://www.imagemagick.org/ Description-md5: 5d9b7cb104f5e68c9f08614fbae829f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: indent Priority: optional Section: devel Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 2.2.11-4 Depends: libc6 (>= 2.4) Filename: pool/main/i/indent/indent_2.2.11-4_i386.deb Size: 78704 MD5sum: f9d457a54356b2c896269b4857563723 SHA1: cef187f0ddc0c00e9fba0550906916fa19c8cf08 SHA256: 25873b81b976845d40088e1a8f4f007bbcabdd98f7323f6d1228a39f5d3e966f Description: C language source code formatting program Multi-Arch: foreign Description-md5: 89cfc962c403fb895c513c63c128c266 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: indent-doc Priority: optional Section: doc Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: indent Version: 2.2.11-4 Filename: pool/main/i/indent/indent-doc_2.2.11-4_all.deb Size: 27252 MD5sum: 379b6b0113a2f223434c0953c73748a8 SHA1: abc6a9b82170f676166243ef8bd2a8cfa17baf1f SHA256: 83c68ba9f38371bf67d169895968200d5bb6cb702f3866eb69a1495df4c88aff Description: Documentation for GNU indent Description-md5: b1d6cfeff8b582dee47070d3d3ba2886 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: indicator-application Priority: optional Section: gnome Installed-Size: 154 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 12.10.1+14.04.20140407-0ubuntu1 Depends: libappindicator3-1 (>= 0.2.92), libc6 (>= 2.3.6-6~), libdbus-glib-1-2 (>= 0.88), libdbusmenu-gtk3-4 (>= 0.4.2), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libindicator3-7 (>= 0.4.90), libpango-1.0-0 (>= 1.14.0) Filename: pool/main/i/indicator-application/indicator-application_12.10.1+14.04.20140407-0ubuntu1_i386.deb Size: 23332 MD5sum: 6ba6d96f9e190f52804696fae55ca5d7 SHA1: 8c3b0ae493b2e860fd9d66aa47c943f3d31c4944 SHA256: 214348ec970d5bd83877a1bfbefb598e7d60dc199981f682b4537d37336c592d Description: Application Indicators Homepage: https://launchpad.net/indicator-application Description-md5: fec3a294dcadc4ec7cf73d92b3adc2ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: indicator-appmenu Priority: optional Section: gnome Installed-Size: 138 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 13.01.0+14.04.20140404-0ubuntu1 Depends: libbamf3-2 (>= 0.2.110), libc6 (>= 2.4), libdbusmenu-glib4 (>= 0.4.2), libdbusmenu-gtk3-4 (>= 0.4.2), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.12), libindicator3-7 (>= 0.4.90), libx11-6, dconf-gsettings-backend | gsettings-backend Recommends: indicator-applet | indicator-renderer, unity-gtk2-module, unity-gtk3-module, appmenu-qt, appmenu-qt5 Filename: pool/main/i/indicator-appmenu/indicator-appmenu_13.01.0+14.04.20140404-0ubuntu1_i386.deb Size: 24176 MD5sum: 98183246b4b4a2bc2371077fc6bfccc5 SHA1: 2cc25b209b3ec5eb49dbc3982ed67593857addc8 SHA256: dfd34417e22e0b7bccfafa53988c7ede556bc965a3603bf73d87bad55935c646 Description: Indicator for application menus. Homepage: http://launchpad.net/indicator-appmenu Description-md5: 411fe4661e19ef0cd325d0a6c997ec00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-bluetooth Priority: extra Section: gnome Installed-Size: 280 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 0.0.6+14.04.20140207-0ubuntu2 Replaces: gnome-bluetooth (<< 3.6.1-0ubuntu2) Depends: dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), liburl-dispatcher1 (>= 0.1), bluez (>= 4.36), unity-control-center | gnome-control-center | ubuntu-system-settings, gnome-bluetooth | ubuntu-system-settings Breaks: gnome-bluetooth (<< 3.6.1-0ubuntu2) Filename: pool/main/i/indicator-bluetooth/indicator-bluetooth_0.0.6+14.04.20140207-0ubuntu2_i386.deb Size: 43592 MD5sum: b7e567074c8e36324aa2cb590d9dc325 SHA1: 06a86d1fe8dca6f60ee7e52bc6d209a477b4efcb SHA256: a7ce669654ba7e1217268d244792ea5d3b6142aab47d90ef82487ac092a8c25c Description: System bluetooth indicator. Homepage: https://launchpad.net/indicator-bluetooth Description-md5: 6c65b08124db76931866665b2baebc9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-datetime Priority: optional Section: misc Installed-Size: 768 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 13.10.0+14.04.20140415.3-0ubuntu1 Replaces: indicator-datetime (<< 13.10.0) Depends: libc6 (>= 2.4), libcanberra0 (>= 0.2), libecal-1.2-16 (>= 3.7.90), libedataserver-1.2-18 (>= 3.5.91), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.37.0), libical1 (>= 1.0), libnotify4 (>= 0.7.6), libstdc++6 (>= 4.6), liburl-dispatcher1 (>= 0.1), dconf-gsettings-backend | gsettings-backend, systemd-services, systemd-shim Recommends: indicator-applet | indicator-renderer, evolution-data-server, geoclue-ubuntu-geoip | geoclue-provider, unity-control-center (>= 14.04.3) | ubuntu-system-settings Suggests: click Conflicts: indicator-datetime (<< 13.10.0) Filename: pool/main/i/indicator-datetime/indicator-datetime_13.10.0+14.04.20140415.3-0ubuntu1_i386.deb Size: 145770 MD5sum: b07180df9d244b5418ea19a6857d3af7 SHA1: 46fa4c27080543686c8fc1c8fa464f282dfaa720 SHA256: 0121b2ce741edda9a149908ad1788c38ce7eeac92444cfa76159b1540fd625f3 Description: Simple clock Homepage: https://launchpad.net/indicator-datetime Description-md5: 083f98dd29157b1f6c5a8c4594d7d774 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-keyboard Priority: optional Section: gnome Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: William Hua Architecture: i386 Version: 0.0.0+14.04.20140410.1-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend, libaccountsservice0 (>= 0.6.35-0ubuntu7), libc6 (>= 2.3.6-6~), libcairo2 (>= 1.2.4), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.5), libgnome-desktop-3-7 (>= 3.5.2), libgtk-3-0 (>= 3.1.6), libibus-1.0-5 (>= 1.5.1), liblightdm-gobject-1-0 (>= 1.1.3), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libxklavier16 (>= 5.1) Breaks: ibus (<< 1.5.5-1ubuntu3) Filename: pool/main/i/indicator-keyboard/indicator-keyboard_0.0.0+14.04.20140410.1-0ubuntu1_i386.deb Size: 42046 MD5sum: def129481030f064a0e32cb6797a8435 SHA1: 0ec3d1ce395e3bb41f96e5a45a5d70b2c540422c SHA256: 55484e343bf543ca8767210d232dad506cb513aa33689a164095620513783d06 Description: Keyboard indicator Homepage: https://code.launchpad.net/indicator-keyboard Description-md5: 0399ae266619db0e430ad43d8d5ad076 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-messages Priority: optional Section: gnome Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Version: 13.10.1+14.04.20140410-0ubuntu1 Replaces: indicator-status-provider-emesene, indicator-status-provider-mc5, indicator-status-provider-pidgin, indicator-status-provider-telepathy, libindicator-messages-status-provider-dev, libindicator-messages-status-provider1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), dconf-gsettings-backend | gsettings-backend Recommends: indicator-applet | indicator-renderer Conflicts: indicator-status-provider-emesene, indicator-status-provider-mc5, indicator-status-provider-pidgin, indicator-status-provider-telepathy, libindicator-messages-status-provider-dev, libindicator-messages-status-provider1 Breaks: gwibber-services (<< 3.5.4-0ubuntu1~), telepathy-indicator (<< 0.3.0-0ubuntu1~), thunderbird (<< 15.0+build1-0ubuntu1~), xchat-gnome-indicator (<< 0.3.11-0ubuntu2~), xchat-indicator (<< 0.3.11-0ubuntu2~) Filename: pool/main/i/indicator-messages/indicator-messages_13.10.1+14.04.20140410-0ubuntu1_i386.deb Size: 64442 MD5sum: f8224ecb7b5605b1f5c259069a7ce279 SHA1: 5f5bf149ea83dc783e34b82c35878f98f1e266dd SHA256: 430da93744d38999ad18bd7a334297e086d6ddcceb1f4e03215ed4d3887da24a Description: indicator that collects messages that need a response Homepage: https://launchpad.net/indicator-messages Description-md5: 4b542e22d4916b1b888ba25c790e7864 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: indicator-power Priority: optional Section: gnome Installed-Size: 165 Maintainer: Ubuntu Core Developers Architecture: i386 Version: 12.10.6+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), liburl-dispatcher1 (>= 0.1), dconf-gsettings-backend | gsettings-backend, upower Recommends: unity-control-center | gnome-control-center (>= 3.1) | ubuntu-system-settings | xfce4-power-manager, indicator-applet (>= 0.2) | indicator-renderer Filename: pool/main/i/indicator-power/indicator-power_12.10.6+14.04.20140411-0ubuntu1_i386.deb Size: 28348 MD5sum: fab7114cad8ef9a5797091064ae60aab SHA1: 91b1eabf83124ee13a5e8491e78db441220ee4f8 SHA256: eb6cbf8bc3fd1fe4387a5afca083732207ab9570c2692212c0658a1d5d153351 Description: Indicator showing power state. Homepage: https://launchpad.net/indicator-power Description-md5: a640c20ce04b08d6092562fe0fecbddd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: indicator-printers Priority: extra Section: gnome Installed-Size: 204 Maintainer: Ubuntu Desktop Team Original-Maintainer: Lars Uebernickel Architecture: i386 Version: 0.1.7+14.04.20140313-0ubuntu1 Depends: libc6 (>= 2.2), libcairo2 (>= 1.2.4), libcups2 (>= 1.6.0), libdbusmenu-glib4 (>= 0.4.2), libdbusmenu-gtk3-4 (>= 0.4.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libindicator3-7 (>= 0.4.90), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), cups (>= 1.5) Recommends: indicator-applet (>= 0.2) | indicator-renderer, system-config-printer-gnome Filename: pool/main/i/indicator-printers/indicator-printers_0.1.7+14.04.20140313-0ubuntu1_i386.deb Size: 24772 MD5sum: 7c872df587dacd73549858dd5ac78803 SHA1: b0fefb74d675ce66ebcd213e9bd6dca0a8ab8444 SHA256: c1df4703d8a2b6f810ed20854bef0f82688428903e146a082da3a42732c857f8 Description: indicator showing active print jobs Homepage: https://launchpad.net/indicator-printers Description-md5: 3b6c1a985bc7a48b6754888ad18d064e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-session Priority: optional Section: gnome Installed-Size: 844 Maintainer: Ubuntu Developers Architecture: i386 Version: 12.10.5+14.04.20140410-0ubuntu1 Depends: libc6 (>= 2.0), libglib2.0-0 (>= 2.37.3), dconf-gsettings-backend | gsettings-backend, systemd-services, gnome-settings-daemon-schemas, gsettings-desktop-schemas Recommends: indicator-applet (>= 0.2) | indicator-renderer, gnome-screensaver, yelp, unity-control-center | gnome-control-center, unity-control-center-signon | gnome-control-center-signon Suggests: lightdm, apport, zenity Filename: pool/main/i/indicator-session/indicator-session_12.10.5+14.04.20140410-0ubuntu1_i386.deb Size: 102350 MD5sum: 0b4488b6bafc2cc4174907038600d642 SHA1: f74c8ad9043e34f4edbbd4d52670cf2e8f635948 SHA256: bc337800f06f9dc426b135928fbdf47a701797022142b4af602bc31f7b85c968 Description: indicator showing session management, status and user switching Homepage: https://launchpad.net/indicator-session Description-md5: 039ad83f5a2abd8ebf915df110887494 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: indicator-sound Priority: extra Section: sound Installed-Size: 373 Maintainer: Ubuntu Desktop Team Original-Maintainer: Conor Curran Architecture: i386 Version: 12.10.2+14.04.20140401-0ubuntu1 Depends: libaccountsservice0 (>= 0.6.8), libc6 (>= 2.2), libglib2.0-0 (>= 2.37.3), libnotify4 (>= 0.7.0), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), liburl-dispatcher1 (>= 0.1), dconf-gsettings-backend | gsettings-backend, pulseaudio, gsettings-ubuntu-schemas (>= 0.0.1+14.04.20140224) Recommends: unity-control-center | gnome-control-center | ubuntu-system-settings | pavucontrol, accountsservice Suggests: unity-greeter-session-broadcast Filename: pool/main/i/indicator-sound/indicator-sound_12.10.2+14.04.20140401-0ubuntu1_i386.deb Size: 62242 MD5sum: 415afc5dbf88719213956acd7b1aa102 SHA1: f973b6b82af889a924e38e0afcc46f5e025ddde4 SHA256: b469f6f550bce9840fe7e4136841b3984b9493b3baa1b34d8ac4d2a591ccd96d Description: System sound indicator. Homepage: https://launchpad.net/indicator-sound Description-md5: fab6eabedadace061843b11db0e18547 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: info Priority: standard Section: doc Installed-Size: 438 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: i386 Source: texinfo Version: 5.2.0.dfsg.1-2 Replaces: texinfo (<< 4.7-2) Provides: info-browser Depends: libc6 (>= 2.15), libtinfo5, install-info Suggests: texinfo-doc-nonfree Filename: pool/main/t/texinfo/info_5.2.0.dfsg.1-2_i386.deb Size: 93112 MD5sum: c51c1cd90c34aab5b334859e5b0438d3 SHA1: d69445598d934bb6944ebd83f6c13b3d253be2fc SHA256: cf378608186dcd0c67976c6673723100b5095a7f0fef6778695b036f738016f0 Description: Standalone GNU Info documentation browser Multi-Arch: foreign Description-md5: 98475bbce3804b8961f7886328b1baea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: init-system-helpers Priority: important Section: admin Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: pkg-systemd-maintainers Architecture: all Version: 1.14 Depends: perl Breaks: systemd (<< 44-12) Filename: pool/main/i/init-system-helpers/init-system-helpers_1.14_all.deb Size: 12064 MD5sum: d5d0546bbf94e8dee1e73d900fb9801e SHA1: f8607d8ae1717fb53814dacb62f1efc3eac6cdd2 SHA256: b2de4721e6eafbf18db8ce4bb5c22a9014a06e88ec57151a52ca5f4f37133e17 Description: helper tools for all init systems Multi-Arch: foreign Description-md5: aa78a7dd54f7afeb8b7fc4843f230f13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: initramfs-tools Priority: required Section: utils Installed-Size: 365 Maintainer: Ubuntu Kernel Team Original-Maintainer: Debian kernel team Architecture: all Version: 0.103ubuntu4 Provides: linux-initramfs-tool Depends: initramfs-tools-bin (>= 0.103ubuntu4), initramfs-tools-bin (<< 0.103ubuntu4.1~), klibc-utils (>= 2.0-1~), busybox-initramfs (>= 1:1.13.3-1ubuntu5), cpio, module-init-tools, udev (>= 147~-5), findutils (>= 4.2.24), util-linux (>> 2.15~rc1) Suggests: bash-completion Conflicts: usplash (<< 0.5.50) Breaks: cryptsetup (<< 2:1.1.0-2.1), elilo (<< 3.12-3.1~), lilo (<< 22.8-8.2~), mountall (<< 2.0~), s390-tools (<< 1.8.3-2~) Filename: pool/main/i/initramfs-tools/initramfs-tools_0.103ubuntu4_all.deb Size: 44304 MD5sum: ec53fad89eee19fdf565b165501a1244 SHA1: 65ecd9c476c6dec370b626138ecf6cf137a399bc SHA256: 4a914c1ff5c2cfb4762e3120f675bdcf24f6c2c444a7b39d6d165d41cedbe1b5 Description: tools for generating an initramfs Multi-Arch: foreign Description-md5: a490e1911ad8a5615a7f99c834d1a8d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: initramfs-tools-bin Priority: required Section: utils Installed-Size: 119 Maintainer: Ubuntu Kernel Team Original-Maintainer: Debian kernel team Architecture: i386 Source: initramfs-tools Version: 0.103ubuntu4 Depends: libc6 (>= 2.4), libudev1 (>= 183) Filename: pool/main/i/initramfs-tools/initramfs-tools-bin_0.103ubuntu4_i386.deb Size: 8726 MD5sum: 43655289d3a7c524401a3267e51c425c SHA1: 4ff290098ec3c47017e4afd1e0c15d2ee1027daa SHA256: 0dc0c19f32a42c0d4a5d245a8dc8dbd70dbd43b8ea4071111cad0136ca0bc9bc Description: binaries used by initramfs-tools Description-md5: 14e601bd8c0a0905d238d89be3036fa8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: initscripts Priority: required Section: admin Installed-Size: 219 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian sysvinit maintainers Architecture: i386 Source: sysvinit Version: 2.88dsf-41ubuntu6 Replaces: libc0.1, libc0.3, libc6, libc6.1 Depends: libc6 (>= 2.4), mount (>= 2.11x-1), debianutils (>= 4), lsb-base (>= 3.2-14), sysvinit-utils (>= 2.86.ds1-64), sysv-rc | file-rc, coreutils (>= 5.93), passwd, upstart, mountall (>= 2.28) Recommends: psmisc, e2fsprogs Conflicts: libdevmapper1.02.1 (<< 2:1.02.24-1) Breaks: aide (<< 0.15.1-5), atm-tools (<< 1:2.5.1-1.3), bootchart (<< 0.10~svn407-3.3), console-common (<< 0.7.86), cruft (<< 0.9.16), eepc-acpi-scripts (<< 1.1.12), fcheck (<< 2.7.59-16), hostapd (<< 1:0.7.3-3), hostname (<< 2.95ubuntu1~boot2), ifupdown (<< 0.6.8ubuntu27), libpam-mount (<< 2.13-1), ltsp-client-core (<< 5.2.16-1), mdadm (<< 3.2.2-1), nbd-client (<< 1:2.9.23-1), nfs-common (<< 1:1.2.5-3), portmap (<< 6.0.0-2), readahead-fedora (<< 2:1.5.6-3), resolvconf (<< 1.49), rpcbind (<< 0.2.0-7), rsyslog (<< 5.8.2-2), selinux-policy-default (<= 2:0.2.20100524-9), splashy (<< 0.3.13-5.1+b1), sysklogd (<< 1.5-6.2), udev (<< 146-2~boot6), upstart (<< 0.6.3-2~boot4), wpasupplicant (<< 0.7.3-4), xymon (<< 4.3.0~beta2.dfsg-9) Filename: pool/main/s/sysvinit/initscripts_2.88dsf-41ubuntu6_i386.deb Size: 27664 MD5sum: ce69db92be70ba3f4071553d033352d3 SHA1: b99e3ee5cf5deb4bcad16039adc23aee3f3765d8 SHA256: a8d6216462f5ef6dae34975d338e4ec311404328a0ee82669e6faebd592fcf13 Description: scripts for initializing and shutting down the system Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/sysvinit Description-md5: db9003c179cd2a623493209da58ea2ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: inkscape Priority: optional Section: graphics Installed-Size: 60648 Maintainer: Ubuntu Developers Original-Maintainer: Wolfram Quester Architecture: i386 Version: 0.48.4-3ubuntu2 Depends: python:any (>= 2.7.1-0ubuntu2), libaspell15 (>= 0.60.7~20110707), libatkmm-1.6-1 (>= 2.22.1), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libcairomm-1.0-1 (>= 1.6.4), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgc1c2 (>= 1:7.2d), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.35.9), libglibmm-2.4-1c2a (>= 2.36.2), libgnomevfs2-0 (>= 1:2.17.90), libgomp1 (>= 4.2.1), libgsl0ldbl (>= 1.9), libgtk2.0-0 (>= 2.24.0), libgtkmm-2.4-1c2a (>= 1:2.24.0), libgtkspell0 (>= 2.0.10), liblcms2-2 (>= 2.2+git20110628), libmagick++5 (>= 8:6.7.7.10), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpangoft2-1.0-0 (>= 1.14.0), libpangomm-1.4-1 (>= 2.27.1), libpng12-0 (>= 1.2.13-4), libpoppler-glib8 (>= 0.18.0), libpoppler44 (>= 0.24.5), libpopt0 (>= 1.14), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6), libwpd-0.9-9, libwpg-0.2-2, libx11-6, libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), zlib1g (>= 1:1.1.4) Recommends: aspell, imagemagick, libgnomevfs2-extra, libwmf-bin, perlmagick, python-lxml, python-numpy, transfig Suggests: pstoedit, dia | dia-gnome, libsvg-perl, libxml-xql-perl, python-uniconvertor, ruby Filename: pool/main/i/inkscape/inkscape_0.48.4-3ubuntu2_i386.deb Size: 9667064 MD5sum: fc6d27302e315fe68a49ed8e93ec14bb SHA1: 8d45ce7ce017873e2bbc776e0d13c057351b1e99 SHA256: bb28e87d3a0a3c80fa4745c9d07e9a893dfad64f8fb2d9ec696861a57a59a92d Description: vector-based drawing program Homepage: http://www.inkscape.org/ Description-md5: c0b92a491186d76eb1f17936e7516236 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: inputattach Priority: extra Section: utils Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Stephen Kitt Architecture: i386 Source: joystick Version: 1:1.4.7-1 Depends: libc6 (>= 2.15) Breaks: joystick (<< 20051019-6) Filename: pool/main/j/joystick/inputattach_1.4.7-1_i386.deb Size: 18680 MD5sum: 3d3d3d8967779871130fd58e33770513 SHA1: 273571e49fbc37e05ac2951809a65ce9084a726e SHA256: a559c95b4ff97f76e1b345c3954cbcf10bb2b6649071b76f29879992d2a9dd4a Description: utility to connect serial-attached peripherals to the input subsystem Homepage: https://sourceforge.net/projects/linuxconsole/ Description-md5: 4411fd970af7a25054439075e5312465 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: insserv Priority: required Section: misc Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Petter Reinholdtsen Architecture: i386 Version: 1.14.0-5ubuntu2 Depends: libc6 (>= 2.7) Suggests: bootchart2 Breaks: sysv-rc (<< 2.87dsf-3) Filename: pool/main/i/insserv/insserv_1.14.0-5ubuntu2_i386.deb Size: 42722 MD5sum: afba3f4b2c754950470d5009569d87e2 SHA1: 9276a8d84344c1d018af49b4a609e8a9512cc38a SHA256: 82ff9db2bd4784ad963eca27e54c93ece4bf9de0e566819e13db8336d02e02e9 Description: boot sequence organizer using LSB init.d script dependency information Homepage: http://savannah.nongnu.org/projects/sysvinit Description-md5: 0be88d1805bf68a98b830e9ce52bf123 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: install-info Priority: standard Section: doc Installed-Size: 261 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: i386 Source: texinfo Version: 5.2.0.dfsg.1-2 Replaces: texinfo (<< 4.13a.dfsg.1-2) Depends: libc6 (>= 2.4) Pre-Depends: dpkg (>= 1.16.1) Breaks: texinfo (<< 4.13a.dfsg.1-2) Filename: pool/main/t/texinfo/install-info_5.2.0.dfsg.1-2_i386.deb Size: 50788 MD5sum: bff227324a8453874fc232c664d90dd9 SHA1: 3a85ea5212650f474cb9ea0c9da395f28a6d33a9 SHA256: 6b3fea704af716b397b6a422098643fb38e71c883922a7fe57389244fcb2b7cc Description: Manage installed documentation in info format Multi-Arch: foreign Description-md5: 1fc51f7aec70d7bdeff2e1bf59b3ebbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: installation-guide-amd64 Priority: optional Section: doc Installed-Size: 1800 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: installation-guide Version: 20100518ubuntu10 Conflicts: installation-guide Filename: pool/main/i/installation-guide/installation-guide-amd64_20100518ubuntu10_all.deb Size: 1261260 MD5sum: 3816e6f57ced245fc0a5bfc03e5c6c9f SHA1: 96517da48f6dac753a5fa16b03be9a840590cbb7 SHA256: c6fb8301d95acf0f6c7d825d062071941b0e2582b6678662c47e2a1a17f89710 Description: Ubuntu installation guide for amd64 Description-md5: 1f8ea366e0beb2b4a9e47f52f3983d54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: installation-guide-armhf Priority: optional Section: doc Installed-Size: 1580 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: installation-guide Version: 20100518ubuntu10 Conflicts: installation-guide Filename: pool/main/i/installation-guide/installation-guide-armhf_20100518ubuntu10_all.deb Size: 1102882 MD5sum: 9a5302dd1f37c020e3dfabff4d5e96a5 SHA1: 5a9c0c5d0f2efe87178d8216a1adfb692429bb08 SHA256: 7f837476a33faf6d61a7e1205eea7696bb9bcd09cf7a436813e2fbec3811b8bc Description: Ubuntu installation guide for armhf Description-md5: 1f1eb5b199d592723594860507e756da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: installation-guide-i386 Priority: optional Section: doc Installed-Size: 1810 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: installation-guide Version: 20100518ubuntu10 Conflicts: installation-guide Filename: pool/main/i/installation-guide/installation-guide-i386_20100518ubuntu10_all.deb Size: 1271504 MD5sum: 41f318711afff2c15ff02f2350979a0e SHA1: 3ac7c8c4604ac6d9c3389d7611506f61a77107ce SHA256: d2106de570cadb2a0b8cc0d6d82755f1c92b85301deef7c1c190d0975d6b938a Description: Ubuntu installation guide for i386 Description-md5: 2741a9539428bef3a28fc0b9092ef544 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: installation-guide-powerpc Priority: optional Section: doc Installed-Size: 1661 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: installation-guide Version: 20100518ubuntu10 Conflicts: installation-guide Filename: pool/main/i/installation-guide/installation-guide-powerpc_20100518ubuntu10_all.deb Size: 1162666 MD5sum: 3cc3135a318195a665c737a1b3cfd066 SHA1: 00a1126f6a62b418dc064ad5233930b2eb8aa1b0 SHA256: 8b69219f51b089c66285d52d540a42410b48b64feafbb201b7f52db16bef1bcf Description: Ubuntu installation guide for powerpc Description-md5: 92a1f217bd580e43e3bcf77a8a095906 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: installation-report Priority: optional Section: misc Installed-Size: 79 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Version: 2.54ubuntu1 Depends: debconf Recommends: pciutils Filename: pool/main/i/installation-report/installation-report_2.54ubuntu1_all.deb Size: 7476 MD5sum: c1819867e163b6917bdf5f7055628144 SHA1: 417c31fa55ae2369238c6e80b6fcd4f576059647 SHA256: 9693c12a53d7d0b13fbeadd1a6f024811da0911d12db19f8026b5dd32dce58b6 Description: system installation report Description-md5: 1807d9b3c4b555bdb2fbab05932b1fa9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: intel-gpu-tools Priority: optional Section: x11 Installed-Size: 610 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1.3-0ubuntu2 Depends: libc6 (>= 2.8), libcairo2 (>= 1.2.4), libdrm-intel1 (>= 2.4.36), libdrm2 (>= 2.4.30), libpciaccess0 (>= 0.8.0+git20071002) Conflicts: xserver-xorg-video-intel (<< 2.9.1) Filename: pool/main/i/intel-gpu-tools/intel-gpu-tools_1.3-0ubuntu2_i386.deb Size: 196176 MD5sum: 9791497d724aec4d9be3f122fc563117 SHA1: 867a308126fb877d5a2418938f86b33fc69f9880 SHA256: 633d2122e0216be81bd05e30698cc5bb416ee27b09defd3863a7904f3c68c0f9 Description: tools for debugging the Intel graphics driver Homepage: http://www.intellinuxgraphics.org/ Description-md5: 564f3bda44ca25bdb6227f2b18149b73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: intltool Priority: optional Section: devel Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.50.2-2 Provides: xml-i18n-tools Depends: gettext (>= 0.10.36-1), patch, automake | automaken, perl (>= 5.8.1), libxml-parser-perl, file Filename: pool/main/i/intltool/intltool_0.50.2-2_all.deb Size: 52040 MD5sum: 2ce0153413e48213cd4f661aee5d032e SHA1: 52b6bea4ec6768985adae0c335d7755d07e2aef7 SHA256: 869ae3083501c82b01623755a54b2d49375ab4a44e72b5a787f716116f62f197 Description: Utility scripts for internationalizing XML Multi-Arch: foreign Homepage: https://launchpad.net/intltool Description-md5: 72cf82626aca7106375b8705c1270e71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: intltool-debian Priority: optional Section: devel Installed-Size: 140 Maintainer: Ubuntu Core Developers Original-Maintainer: Nicolas FRANCOIS (Nekral) Architecture: all Version: 0.35.0+20060710.1 Depends: perl, gettext Filename: pool/main/i/intltool-debian/intltool-debian_0.35.0+20060710.1_all.deb Size: 31574 MD5sum: f44cdcbab68d6dba3bc89ff4df61c64e SHA1: bacbb9b6f45e76611d1273fd5b72d81ac2596816 SHA256: 16e27fb8e90c8d3f15213e315cb087667d49f7ae6f38e21273d3aa5d18a0c1be Description: Help i18n of RFC822 compliant config files Description-md5: f7eec8ae3ead840be969d214dcf411d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: iproute Priority: optional Section: net Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: Debian iproute2 Maintainers Architecture: all Source: iproute2 (3.12.0-2) Version: 1:3.12.0-2 Depends: iproute2 Filename: pool/main/i/iproute2/iproute_3.12.0-2_all.deb Size: 2384 MD5sum: 0c0e23538c05211f3459d5a565de2dc1 SHA1: 7368bc7d6a67de06db50b46a27cf3635b9cce900 SHA256: 3879ba896b4d5211d3b42c878c9f3164881716084c2cfb844d30b1de68e964ce Description: transitional dummy package for iproute2 Homepage: http://www.linux-foundation.org/en/Net:Iproute2 Description-md5: ba97e0c6cd2fc3c5cae2e667fb15a030 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: iproute-doc Priority: optional Section: doc Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: Debian iproute2 Maintainers Architecture: all Source: iproute2 (3.12.0-2) Version: 1:3.12.0-2 Depends: iproute2-doc Filename: pool/main/i/iproute2/iproute-doc_3.12.0-2_all.deb Size: 2388 MD5sum: 4efd0b7d4a7b012b50cb2fdb834e2ff9 SHA1: 009d285434665b6588c855fbdb62eb67c39903c6 SHA256: 60c30322203dfa497ae2fd3b9359e81952d4fba4761b167217ab34b336483ff7 Description: transitional dummy package for iproute2-doc Homepage: http://www.linux-foundation.org/en/Net:Iproute2 Description-md5: ca2b9e91562ef4c829cc2050464e7083 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iproute2 Priority: required Section: net Installed-Size: 1152 Maintainer: Ubuntu Developers Original-Maintainer: Debian iproute2 Maintainers Architecture: i386 Version: 3.12.0-2 Replaces: iproute Provides: arpd Depends: libc6 (>= 2.14), libdb5.3 Recommends: libatm1 (>= 2.4.1-17~), libxtables10 Suggests: iproute2-doc Conflicts: arpd, iproute (<< 20130000-1) Filename: pool/main/i/iproute2/iproute2_3.12.0-2_i386.deb Size: 394812 MD5sum: 95eb9a03c9d18213b7ac7a3a5422b390 SHA1: 1022d3b0d8eefd3d0a3b3dc2adfa6aa052529749 SHA256: 71b2d6962dffe4b7cb51af77ee5d5402398bcd509661c51f75b0f2d914b93e56 Description: networking and traffic control tools Multi-Arch: foreign Homepage: http://www.linux-foundation.org/en/Net:Iproute2 Description-md5: d10cc46ca4a9e5489b7d2c879fcfba17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: iproute2-doc Priority: optional Section: doc Installed-Size: 1006 Maintainer: Ubuntu Developers Original-Maintainer: Debian iproute2 Maintainers Architecture: all Source: iproute2 Version: 3.12.0-2 Replaces: iproute-doc Conflicts: iproute-doc (<< 20130000-1) Filename: pool/main/i/iproute2/iproute2-doc_3.12.0-2_all.deb Size: 917868 MD5sum: 999f0283f5996772759e9ea3d99ca5c6 SHA1: b99ab4bd8a8b3581e0cf7e50ad68d212b258560e SHA256: 88fc7998283f5a2f62bd8e22dce96633be7c0e1a8ce2fa9aeb5fa5c1c40644bd Description: networking and traffic control tools - documentation Homepage: http://www.linux-foundation.org/en/Net:Iproute2 Description-md5: 04b627412e2f9e6b31ebbbedd1b39794 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iptables Priority: standard Section: net Installed-Size: 1347 Maintainer: Ubuntu Developers Original-Maintainer: Laurence J. Lane Architecture: i386 Version: 1.4.21-1ubuntu1 Depends: libc6 (>= 2.7), libnfnetlink0, libxtables10 (= 1.4.21-1ubuntu1) Filename: pool/main/i/iptables/iptables_1.4.21-1ubuntu1_i386.deb Size: 253854 MD5sum: d56b208e05b0d721cf92c534c223bac8 SHA1: aed3c8eb758124c2ed4938d18a121b38c8bb916f SHA256: 75f793b68d01dd1ea92c398bcd8e38128e24d46f6572a7dfed4f3cd8f9015275 Description: administration tools for packet filtering and NAT Homepage: http://www.netfilter.org/ Description-md5: c998471c84128382a425d500ab6155da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: iptables-dev Priority: optional Section: devel Installed-Size: 295 Maintainer: Ubuntu Developers Original-Maintainer: Laurence J. Lane Architecture: i386 Source: iptables Version: 1.4.21-1ubuntu1 Depends: iptables (= 1.4.21-1ubuntu1) Conflicts: iptables (<< 1.4.2-2) Breaks: linux-libc-dev (<< 3.5) Filename: pool/main/i/iptables/iptables-dev_1.4.21-1ubuntu1_i386.deb Size: 55312 MD5sum: fe01888c295fdfec200d86038d80343b SHA1: 5376907bc5af5a0bb2447855b0d34f2c48624937 SHA256: 68564fc2862b93046e84b00b0f31d025b24657eaa808dbef27c601e60ec14d2d Description: iptables development files Homepage: http://www.netfilter.org/ Description-md5: 0af7161abbc31c70e9f70c1b93871c64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iptraf Priority: optional Section: net Installed-Size: 595 Maintainer: Ubuntu Developers Original-Maintainer: Frederic Peters Architecture: i386 Version: 3.0.0-8.1 Depends: libc6 (>= 2.4), libncurses5 (>= 5.5-5~), libtinfo5 Filename: pool/main/i/iptraf/iptraf_3.0.0-8.1_i386.deb Size: 154876 MD5sum: 0cbc8c3b6f8e26e4c868f56098b7369b SHA1: c26ff9134901dd4ee26cb3502c2de666a2065ed5 SHA256: 237fe2ac3eb9d9b12cfb3bd134f24ef91c3cae782e5c459e407a9108eea00c36 Description: Interactive Colorful IP LAN Monitor Description-md5: 375f1b3b30ae8305e36a4575ba82dbda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: iputils-arping Priority: optional Section: net Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: i386 Source: iputils Version: 3:20121221-4ubuntu1 Depends: libc6 (>= 2.4), libcap2 (>= 2.10) Recommends: libcap2-bin Conflicts: arping Filename: pool/main/i/iputils/iputils-arping_20121221-4ubuntu1_i386.deb Size: 26218 MD5sum: 44ed12fb23b0fd0f5479c9b54b91a222 SHA1: 509c9bb2fe85fdcbde4ea7a00c6bb2a510371ac8 SHA256: 337990f54c537933ca79fbc7c2a5cd06504f113593b9b6a1d85d8ee3934b18b1 Description: Tool to send ICMP echo requests to an ARP address Description-md5: bb18b14837d8c79e0cf4999c5662365c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: iputils-ping Priority: important Section: net Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: i386 Source: iputils Version: 3:20121221-4ubuntu1 Provides: ping Depends: libc6 (>= 2.11), libcap2 (>= 2.10), libgnutls-openssl27 Recommends: libcap2-bin Filename: pool/main/i/iputils/iputils-ping_20121221-4ubuntu1_i386.deb Size: 50608 MD5sum: 01dc296ac3426da4c1d1ac4032b83e17 SHA1: 898ff98982bc118387bb0db48f3c9ab9a52235c5 SHA256: 73962dc6c801bddcae289f731de5efacc0f266c07e7822ac17980d88a3e748fb Description: Tools to test the reachability of network hosts Description-md5: d70a0a65fee86f2e5c78f759703e9922 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: iputils-tracepath Priority: standard Section: net Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: i386 Source: iputils Version: 3:20121221-4ubuntu1 Depends: libc6 (>= 2.15), libcap2 (>= 2.10) Suggests: traceroute Filename: pool/main/i/iputils/iputils-tracepath_20121221-4ubuntu1_i386.deb Size: 32336 MD5sum: 6dc5624301d235d361984b68ef0e934f SHA1: f87bf44d8f45d353a6a8fbd83f4ed89793901f5d SHA256: 88d23c02bfccb188de093e1bbe1d6d7afe6387c208c694508fe89fc57796cbca Description: Tools to trace the network path to a remote host Description-md5: 78111c7284c2d6a95b25d6b8054e11b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: ipvsadm Priority: extra Section: net Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: i386 Version: 1:1.26-2ubuntu1 Replaces: lvs Depends: libc6 (>= 2.7), libnl-3-200 (>= 3.2.16), libnl-genl-3-200 (>= 3.2.16), libpopt0 (>= 1.14), debconf (>= 0.5) | debconf-2.0, lsb-base (>= 3.0-6) Suggests: heartbeat, keepalived, ldirectord Conflicts: lvs Filename: pool/main/i/ipvsadm/ipvsadm_1.26-2ubuntu1_i386.deb Size: 43956 MD5sum: 133da8f0452f51ea87147aed36f64352 SHA1: abaa47761051f103604dd5bc9534b2adbae60353 SHA256: 642a6d42edc0959df9b7e7a8373879dd0604e07c11c8ff11246ec1b665fef25a Description: Linux Virtual Server support programs Description-md5: 2da8a6ae3f9cfd71d98b31040016c5b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ipxe Priority: optional Section: admin Installed-Size: 2269 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Blank Architecture: all Version: 1.0.0+git-20131111.c3d1e78-2ubuntu1 Depends: ipxe-qemu, grub-ipxe Filename: pool/main/i/ipxe/ipxe_1.0.0+git-20131111.c3d1e78-2ubuntu1_all.deb Size: 807198 MD5sum: 39d39dc54285ef2c7e3784d3f850cdf2 SHA1: 45dd580b5f16e5920b9ca067de2367ac8b200cd3 SHA256: 18c76d7fbb5d7becded4749489e93a7e6bcefa14f9858d5678eb140af7f8f504 Description: PXE boot firmware Multi-Arch: foreign Homepage: http://ipxe.org/ Description-md5: 464080e9cd2fc9e60db75303b8932264 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ipxe-qemu Priority: optional Section: admin Installed-Size: 1944 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Blank Architecture: all Source: ipxe Version: 1.0.0+git-20131111.c3d1e78-2ubuntu1 Replaces: kvm-ipxe (<< 1.0.0+git-20130710.936134e-0ubuntu1) Breaks: kvm-ipxe (<< 1.0.0+git-20130710.936134e-0ubuntu1) Filename: pool/main/i/ipxe/ipxe-qemu_1.0.0+git-20131111.c3d1e78-2ubuntu1_all.deb Size: 506160 MD5sum: a9b184f7e6590ab8ba597faa254763a5 SHA1: 95e8756844307a67edc68163aecd3a545047c6cc SHA256: f3d152a2998f753567050330eb3d0e60b96bbdff3ee137d9eebab9073f7d20c9 Description: PXE boot firmware - ROM images for qemu Multi-Arch: foreign Homepage: http://ipxe.org/ Description-md5: 61c8bdd569b68d2eeeb8615a8b57f65e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: irda-utils Priority: optional Section: utils Installed-Size: 243 Maintainer: Ubuntu Core Developers Original-Maintainer: Alberto Gonzalez Iniesta Architecture: i386 Version: 0.9.18-12ubuntu1 Replaces: irda-common, irda-tools Provides: irda-tools Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.12.0), debconf (>= 0.5) | debconf-2.0, udev | makedev, kmod Pre-Depends: debconf | debconf-2.0 Recommends: openobex-apps, setserial Suggests: libgsmme1c102, liblinc1, obexftp Conflicts: irda-common, irda-tools Filename: pool/main/i/irda-utils/irda-utils_0.9.18-12ubuntu1_i386.deb Size: 79120 MD5sum: 50be73531471dd002801727351f1500f SHA1: 0f1311184a9383489d23feee5eec5814fa1e0d1c SHA256: 6465c1cfb672825a3408246330aaaffbb4a861834ba3251253e8d3ad6dd1ec4e Description: IrDA management and handling utilities Homepage: http://irda.sourceforge.net Description-md5: dccf1c24ff86cb1061cf9d1d11729575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: irqbalance Priority: standard Section: utils Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 1.0.6-2 Depends: libc6 (>= 2.4), libcap-ng0, libglib2.0-0 (>= 2.28.0), libnuma1, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.1) Filename: pool/main/i/irqbalance/irqbalance_1.0.6-2_i386.deb Size: 30454 MD5sum: f824f1a27eb3478b5826552287af02d0 SHA1: eb74775f10dc3d38336571423db233dbbae255ef SHA256: 14a448110476f3e4a0fb2192617889383859b6b1a939971182e19eb5440cce97 Description: Daemon to balance interrupts for SMP systems Homepage: http://code.google.com/p/irqbalance/ Description-md5: accb4bce861e7ccb0e8eb0424467337d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: irssi Priority: optional Section: net Installed-Size: 2388 Maintainer: Ubuntu Developers Original-Maintainer: Gerfried Fuchs Architecture: i386 Version: 0.8.15-5ubuntu3 Depends: libc6 (>= 2.15), libglib2.0-0 (>= 2.35.9), libperl5.18 (>= 5.18.1), libssl1.0.0 (>= 1.0.0), libtinfo5, perl (>= 5.18.1-4), perlapi-5.18.1, perl-base (>= 5.8.1) Suggests: irssi-scripts Filename: pool/main/i/irssi/irssi_0.8.15-5ubuntu3_i386.deb Size: 873126 MD5sum: d15ffeed8c8f8757082bbc3b95d898f8 SHA1: b380e03c02c2150a2f1ab5e1a0fe0647cbb00f2a SHA256: 251285acd8d7ede707ac22b33ee0c4069501d8d4763da2958ad790aac6ed5aaf Description: terminal based IRC client Homepage: http://irssi.org/ Description-md5: f222734d8d370d75bf620389270c0ade Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: irssi-dev Priority: optional Section: net Installed-Size: 472 Maintainer: Ubuntu Developers Original-Maintainer: Gerfried Fuchs Architecture: i386 Source: irssi Version: 0.8.15-5ubuntu3 Depends: irssi Filename: pool/main/i/irssi/irssi-dev_0.8.15-5ubuntu3_i386.deb Size: 47400 MD5sum: 3bb60296da4548caf0458312c7b71090 SHA1: 83d127f1ba30d031228e78eda68f587d283bcfce SHA256: 064d5f3183b097c3437fd5c88277b0a645bfa73b2840bbc5809358c50bf951e5 Description: terminal based IRC client - development files Homepage: http://irssi.org/ Description-md5: 48f02dc7e9ee186db7d00968bfcaaf49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: isc-dhcp-client Priority: important Section: net Installed-Size: 1938 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: i386 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Replaces: dhcp3-client Provides: dhcp-client, dhcp3-client Depends: libc6 (>= 2.15), debianutils (>= 2.8.2), isc-dhcp-common (= 4.2.4-7ubuntu12), iproute2 Suggests: resolvconf, avahi-autoipd, apparmor Conflicts: dhcp-client (<< 3.0), ifupdown (<< 0.6.8+nmu3), resolvconf (<= 1.45), samba-common (<< 3.0.0beta1-2) Filename: pool/main/i/isc-dhcp/isc-dhcp-client_4.2.4-7ubuntu12_i386.deb Size: 624968 MD5sum: b3ab72d704a4c1ef26769085c72f40c8 SHA1: 526464b184fa252a3988ae83472b1b3baf5630e0 SHA256: 7f95e5d6e6a2514c3bfe6644b9b69634058a8cbc7fa2287a00b6a5b12c4a8ae8 Description: ISC DHCP client Description-md5: 7d48c04c85ad9235ca7273ba8da51bbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: isc-dhcp-client-dbg Priority: extra Section: debug Installed-Size: 4462 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: i386 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Depends: debianutils (>= 2.8.2), isc-dhcp-common (= 4.2.4-7ubuntu12) Suggests: resolvconf, avahi-autoipd Conflicts: dhcp-client (<< 3.0), samba-common (<< 3.0.0beta1-2) Filename: pool/main/i/isc-dhcp/isc-dhcp-client-dbg_4.2.4-7ubuntu12_i386.deb Size: 1315004 MD5sum: ae38eb796c3c1de3bd15243feffcc40e SHA1: e1d04f8613db8b8b22d53d67f0e9caa0e224db7b SHA256: 7cad35a765a315132f637d93d10806c13bbbf18079ba9743146ebcf492235f1f Description: ISC DHCP client (debugging symbols) Description-md5: 65f8c2f2d81ecd053c5bca54e46ec524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: isc-dhcp-common Priority: important Section: net Installed-Size: 1880 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: i386 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Replaces: dhcp3-common Provides: dhcp3-common Depends: libc6 (>= 2.15), debianutils (>= 2.8.2) Filename: pool/main/i/isc-dhcp/isc-dhcp-common_4.2.4-7ubuntu12_i386.deb Size: 695234 MD5sum: 32083369dad6d78e07497275a20a2cdc SHA1: 34b661d5011e762f9408fba7ca57bdb3de4364d9 SHA256: 1dcb5194f98ef51b7ad9c4fa0fbad60fa9dc77c1c9618cc6913849f3cfb1fee5 Description: common files used by all the isc-dhcp* packages Description-md5: 5683d165d1bf7aa98dc09ae338bc059f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: isc-dhcp-dev Priority: optional Section: devel Installed-Size: 1615 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: i386 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Replaces: dhcp3-dev Provides: dhcp3-dev Depends: libc6-dev Filename: pool/main/i/isc-dhcp/isc-dhcp-dev_4.2.4-7ubuntu12_i386.deb Size: 347852 MD5sum: 483a883affd445eeb5b69327cbe55e3d SHA1: af67923ce15d4b6ebed2c654856bd80617ad8705 SHA256: 09e08b793414feff9c476646e1ba638c68a677bbbc53cfbf8c3f9c2568210793 Description: API for accessing and modifying the DHCP server and client state Description-md5: 629de35b97db45a08414abd22d153d05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: isc-dhcp-relay-dbg Priority: extra Section: debug Installed-Size: 4284 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: i386 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Depends: debianutils (>= 2.8.2), isc-dhcp-common (= 4.2.4-7ubuntu12) Conflicts: dhcp-relay Filename: pool/main/i/isc-dhcp/isc-dhcp-relay-dbg_4.2.4-7ubuntu12_i386.deb Size: 1257438 MD5sum: 60eefe4cf9234d29f7171ed31d7be06d SHA1: ed489d106c82a43578c5f4e0f6e7b9e050baf7e5 SHA256: c25c97fe3eca8c676ad4c6070b5c36ecae13e34ae4e6b3d4d82a4e15015cf1e9 Description: DHCP relay daemon (debugging symbols) Description-md5: 02902cd378278d57c30d249e39a858b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: isc-dhcp-server Priority: optional Section: net Installed-Size: 2222 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: i386 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Replaces: dhcp3-server Provides: dhcp3-server Depends: debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.15), debianutils (>= 2.8.2), isc-dhcp-common (= 4.2.4-7ubuntu12), lsb-base, adduser Suggests: isc-dhcp-server-ldap, apparmor Conflicts: dhcp Filename: pool/main/i/isc-dhcp/isc-dhcp-server_4.2.4-7ubuntu12_i386.deb Size: 744758 MD5sum: 13b23e8f56cff493ef0ad14380f364fe SHA1: 5cdcf65ce11ffd860b0b4c66dcb6aaaaad309e98 SHA256: 6cf1c99898c8e9ee2f1e8795374cee0c2d6beb6a500bf20069f8dab3275eafde Description: ISC DHCP server for automatic IP address assignment Description-md5: 4f5d533c02fa72751acbaefe5e28258d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: isc-dhcp-server-dbg Priority: extra Section: debug Installed-Size: 5115 Maintainer: Ubuntu Developers Original-Maintainer: Debian ISC DHCP maintainers Architecture: i386 Source: isc-dhcp Version: 4.2.4-7ubuntu12 Depends: debianutils (>= 2.8.2), isc-dhcp-common (= 4.2.4-7ubuntu12), lsb-base Suggests: isc-dhcp-server-ldap Conflicts: dhcp Filename: pool/main/i/isc-dhcp/isc-dhcp-server-dbg_4.2.4-7ubuntu12_i386.deb Size: 1484238 MD5sum: ccc6d131aad75df685c72d4ed66f302e SHA1: 18d9ca3dcf40122c8989206f30387a317ca524c2 SHA256: 46db845bbfe4ef5e71adfcf1dc5bb5aa703dbe3c90ad8849c86d87ba4ea96687 Description: ISC DHCP server for automatic IP address assignment (debug) Description-md5: b66d42f652cf79ebf5bf05f89e2126b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iso-codes Priority: standard Section: libs Installed-Size: 15207 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Quathamer Architecture: all Version: 3.52-1 Suggests: isoquery Filename: pool/main/i/iso-codes/iso-codes_3.52-1_all.deb Size: 2072544 MD5sum: 793218360e85540bc396352fcc3973cf SHA1: ceb6e1a25292af89d9fcf018eb5f6d5c36a716b9 SHA256: 811d9131a21a1e22fc8f978c7b751f19c9c9ef0253a0e1502373985375ec4f64 Description: ISO language, territory, currency, script codes and their translations Multi-Arch: foreign Homepage: http://pkg-isocodes.alioth.debian.org/ Description-md5: b58345a815d3102f83ba9b7d058c5dee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: isoquery Priority: optional Section: misc Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Quathamer Architecture: all Version: 1.7-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-lxml Recommends: iso-codes Filename: pool/main/i/isoquery/isoquery_1.7-1build1_all.deb Size: 20162 MD5sum: 31b39a8f956136cc66ce8ebdd383b962 SHA1: 7ef0d7ecb5e09a10b119ec20b6cefca748863127 SHA256: a0b2ebb6bc463548e1feccf9055e65a853dc7587aa777aa7c68333b184a69038 Description: Search and display various ISO codes (country, language, ...) Description-md5: 866b111a4e7daff346e02925b145017f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ispell Priority: optional Section: text Installed-Size: 335 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: i386 Version: 3.3.02-6 Depends: dictionaries-common, libc6 (>= 2.7), libtinfo5 Recommends: iamerican | ispell-dictionary, wamerican | wordlist Suggests: spell Breaks: iamerican (<= 3.1.20.0-9), ibritish (<= 3.1.20.0-9), ibulgarian (<= 3.0-12), iczech (<= 20040229-5), idanish (<= 1.6.25-1), iestonian (<= 1:20030606-12.1), ifinnish (<= 0.7-17.3), ifinnish-large (<= 0.7-17.3), ifrench (<= 1.4-25), ifrench-gut (<= 1:1.0-27), igaelic (<= 0.50-7), ihungarian (<= 0.99.4-2), iirish (<= 2.0-20), iitalian (<= 1:2.3-2), imanx (<= 0.50-8), inorwegian (<= 2.0.10-3.2), iogerman (<= 1:2-26), ipolish (<= 20100612-1), irussian (<= 0.99g5-8.1), iswedish (<= 1.4.5-2), iukrainian (<= 1.6.0-1) Filename: pool/main/i/ispell/ispell_3.3.02-6_i386.deb Size: 154522 MD5sum: 2d1ffe0fb725b14d4ead690aff07b750 SHA1: ddc7d0f91ed5a62188cad231e8746da64f5ec083 SHA256: 6194afb4344a1d3d7fec0881f8008bcfc43ac020f46f0104b5e88a395d058af6 Description: International Ispell (an interactive spelling corrector) Multi-Arch: foreign Homepage: http://www.lasr.cs.ucla.edu/geoff/ispell.html Description-md5: 577e95b1fdc6375f1bcda985b53bef21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: itstool Priority: extra Section: gnome Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: all Version: 2.0.2-2 Depends: python, python-libxml2 Filename: pool/main/i/itstool/itstool_2.0.2-2_all.deb Size: 19764 MD5sum: f1699d73115cecb3084da16428f5d697 SHA1: 570f451f8ad067f40261376d82f07726ef4a8bfa SHA256: bc4de7a780a5c3f7470d7198b1f96cab1aa50934b7c354e1f676fff1c9592f9c Description: tool for translating XML documents with PO files Homepage: http://itstool.org/ Description-md5: 9f2ec5e942fbd453418d12d2a39ade84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: ivy Priority: optional Section: libs Installed-Size: 1259 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.3.0-3 Depends: default-jre-headless | java2-runtime-headless Suggests: libjsch-java, libbcprov-java, libbcpg-java, ivy-doc, default-jre | java2-runtime Filename: pool/main/i/ivy/ivy_2.3.0-3_all.deb Size: 1107908 MD5sum: 6f5d1601a483cafdb6ecada50551dffa SHA1: 63f69b284d5b70dd2a18b7c78e72df7c5cd35268 SHA256: 53a34f3bdc1195a42dda05da73bca51052045ab2c6eb815cbf821e90f6d59d46 Description: agile dependency manager Homepage: http://ant.apache.org/ivy/ Description-md5: 0ab55554c371b847fd21b35c7c384d95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ivy-doc Priority: optional Section: doc Installed-Size: 12057 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ivy Version: 2.3.0-3 Depends: default-jdk-doc Filename: pool/main/i/ivy/ivy-doc_2.3.0-3_all.deb Size: 851624 MD5sum: 009b193b2ce34d4e6e390999d7ff3277 SHA1: 2b289899be661910f75b145ee2eafc611b75b2fb SHA256: 4fac1bc68a6899cea01e53944e0fae22f4535f61fea52256e032ba3f38c6a53e Description: agile dependency manager (documentation) Homepage: http://ant.apache.org/ivy/ Description-md5: 9cb552d087d4baa4a77179acd6a17c53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: iw Priority: optional Section: net Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu wpasupplicant Maintainers Architecture: i386 Version: 3.4-1 Replaces: aircrack-ng (<< 1:1.0~rc2-1) Depends: libc6 (>= 2.7), libnl-3-200 (>= 3.2.3), libnl-genl-3-200 (>= 3.2.3) Recommends: crda Breaks: aircrack-ng (<< 1:1.0~rc2-1) Filename: pool/main/i/iw/iw_3.4-1_i386.deb Size: 51852 MD5sum: ce03ed338c008a16ee76cf93778693ae SHA1: 9eadcd10957722cf38a2a996713b72d2a2d91c20 SHA256: c6504a14c2457a0b1c5f3a5cd781463a83f2872140b6570de274730a6476dbd4 Description: tool for configuring Linux wireless devices Multi-Arch: foreign Homepage: http://wireless.kernel.org/en/users/Documentation/iw Description-md5: 4c6223f7a0c9b6124876da23f91821d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: jade Priority: optional Section: text Installed-Size: 851 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: i386 Version: 1.2.1-47.3ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libsp1c2 (>= 1.3.4-1.2.1-44), libstdc++6 (>= 4.1.1), sgml-base (>= 1.26+nmu2) Suggests: doc-base, sgml-data, sp Filename: pool/main/j/jade/jade_1.2.1-47.3ubuntu1_i386.deb Size: 217868 MD5sum: 55e932a26b91f84851242d9b09859492 SHA1: 1afc2abd555981ea56beef5fffc15b054077ce60 SHA256: 38434be4d87c679f18dc6d1c90dd1d9cdf505dfe087fde2866d48f8fe44ace66 Description: James Clark's DSSSL Engine Multi-Arch: foreign Description-md5: fa4940aa399a19ee92a71f4060910110 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: jadetex Priority: optional Section: tex Installed-Size: 683 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Task Force Architecture: all Version: 3.13-14 Depends: dpkg (>= 1.14.18), tex-common (>= 3), debianutils (>= 1.7), texlive-latex-base, texlive-fonts-recommended, texlive-latex-recommended, texlive-generic-recommended, tipa Recommends: openjade1.3 | openjade | jade (>= 1.2-1) Suggests: docbook-dsssl Conflicts: cslatex, csplain, tetex-base (<= 2.0.2a-2) Filename: pool/main/j/jadetex/jadetex_3.13-14_all.deb Size: 240156 MD5sum: 452566914ef23f6d5996dfbcc66e38bb SHA1: ed23429ef74cbf2541096219823a485629a30088 SHA256: 5bc1c8ede1d3024eb03a3acdcd2e3085b1c43594b3a34c0ea9a6352e9b70a9fd Description: generator of printable output from SGML or XML using Jade Homepage: http://jadetex.sourceforge.net/ Description-md5: b38d27947c8b7139909f3a0eda619d0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: jasper Priority: extra Section: misc Installed-Size: 79 Maintainer: Canonical ARM Architecture: all Source: jasper-initramfs Version: 0.69 Depends: initramfs-tools, busybox-initramfs, util-linux (>= 2.17.2-0), uuid-runtime, e2fsprogs (>= 1.41.11-1), coreutils (>= 7.4-2), oem-config, dosfstools, u-boot-tools | uboot-mkimage, bc, app-install-data Filename: pool/main/j/jasper-initramfs/jasper_0.69_all.deb Size: 8420 MD5sum: 6e06a8dfa42963bc7f122eed33744580 SHA1: 12301497039a7165ad537b4acee72c56e8d1b9f2 SHA256: c4fc496b5144f171e1cd9ceb312b9de9d0b823f3076a432c5c6c6e5f90be416d Description: Configure a preinstalled ext2/3 system image Description-md5: 903e60d35a4d8b5516793d8f0e202ab9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: java-common Priority: optional Section: misc Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Mailing List Architecture: all Version: 0.51 Suggests: default-jre, equivs Filename: pool/main/j/java-common/java-common_0.51_all.deb Size: 129966 MD5sum: c8352e7908b8a260b2657f9b80c08031 SHA1: b65f54d0115be1ff96cc26027376ad70f7807dff SHA256: b8fe15437858f758f8d80a20682ff29de0940669bf64ee68ffebdc9cbfcdaad8 Description: Base of all Java packages Multi-Arch: foreign Description-md5: 96d3cc2a3d292493a37a344e5f38de0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: java-wrappers Priority: optional Section: misc Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 0.1.27 Depends: unzip Filename: pool/main/j/java-wrappers/java-wrappers_0.1.27_all.deb Size: 9908 MD5sum: 83d30f1c7f70b7a6e5d9ab82fcafd64c SHA1: fc55a890a798890f2e4e3cebef21e34fae92f951 SHA256: 02b0f4cc5c4ec8b1e7669191834958fcdb189a092d12cfc5f5b27868c1f9e8c0 Description: wrappers for java executables Description-md5: e86d708e5e3f275f38cfa60fd19637c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: javacc Priority: optional Section: devel Installed-Size: 380 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 5.0-5 Depends: default-jre-headless | java1-runtime-headless | java2-runtime-headless Suggests: javacc-doc Filename: pool/main/j/javacc/javacc_5.0-5_all.deb Size: 284562 MD5sum: c825ef668f2da4628a88e8a7115fc6f8 SHA1: 48ebae1b8237af6c94a736d87dfda86016a59233 SHA256: ba9b4d132e13adff01bfff1043eb878ba37e2c90a25d9b9c784c5728d330fdef Description: Parser generator for use with Java Homepage: http://javacc.java.net Description-md5: 61505d89a764133cbd782b370c93fe98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: javahelper Priority: optional Section: devel Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: javatools Version: 0.45ubuntu1 Depends: debhelper, devscripts, bsdmainutils, dpkg-dev, dctrl-tools, libarchive-zip-perl (>= 1.30-6~) Suggests: cvs, gawk, tofrodos Filename: pool/main/j/javatools/javahelper_0.45ubuntu1_all.deb Size: 77456 MD5sum: e1c24c40f7c3535502369a15f45459e8 SHA1: c0d9ba12444c61e171b765f7ef6fc55da387547f SHA256: ab3cdafab7aa4954538c6c658227670929552b1e068af0f168f000519fd8f17e Description: Helper scripts for packaging Java programs Description-md5: d45b9daf1c52a4839fc72a1c8d80017d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: javascript-common Priority: optional Section: web Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Version: 11 Suggests: apache2 (>= 2.4.6~) | lighttpd | httpd Filename: pool/main/j/javascript-common/javascript-common_11_all.deb Size: 6066 MD5sum: 97257c1c7151131cd487ee09bbb1b653 SHA1: 0442d0d4975c8ed6be5811fbd4508eef2ced1b8a SHA256: 83d6f46fb68dfb160de8a9f2a28349fa944d3e5c526888cbbf02ef5073933d3c Description: Base support for JavaScript library packages Description-md5: 1c8d846310501114a6acd24c4e760036 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-photography Package: jflex Priority: optional Section: devel Installed-Size: 1395 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.4.3-3 Depends: default-jre-headless | java1-runtime | java2-runtime Filename: pool/main/j/jflex/jflex_1.4.3-3_all.deb Size: 1065894 MD5sum: e3b50048e62ba5118796f9add7e146c7 SHA1: ce8b26d886a283c3edbf667cb6225fb8620d827c SHA256: afcc66596a15348816e2ddb3fbf8cdb13c6ccf9ef22f74388b86084be5caf5a2 Description: lexical analyzer generator for Java Enhances: ant-optional Homepage: http://www.jflex.de/ Description-md5: 8cfe78ca20814658bf3751fbef74366b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: jfsutils Priority: optional Section: admin Installed-Size: 1094 Maintainer: Ubuntu Developers Original-Maintainer: Stefan Hornburg (Racke) Architecture: i386 Version: 1.1.15-2.1 Depends: libc6 (>= 2.7), libuuid1 (>= 2.16) Filename: pool/main/j/jfsutils/jfsutils_1.1.15-2.1_i386.deb Size: 274110 MD5sum: b64544ffef35f124835f0bfcac1fd284 SHA1: 127a1d39ca4d9b55f5842325a345cd35f4b4b965 SHA256: d398ee68ce3c993b02c1b20a81d224f9e118360b1cd88346a0c972dcfffe07f6 Description: utilities for managing the JFS filesystem Homepage: http://jfs.sourceforge.net/ Description-md5: a5f4fa74fc33c6f6eaa400813f226b20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: jigit Priority: extra Section: utils Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: i386 Version: 1.19-2 Depends: libbz2-1.0, libc6 (>= 2.7), zlib1g (>= 1:1.2.3.3), libio-compress-perl Recommends: wget Filename: pool/main/j/jigit/jigit_1.19-2_i386.deb Size: 31110 MD5sum: 2a7b0ad462ece06cf85ba2e6fcf1abdc SHA1: 3e79c15ebbb1c0e9eb42190f3248b9d31219ba2e SHA256: 91183b6bc8b6b21537204df48890602c8009bd83bf5a58638ff235401227a1c9 Description: tools for working with jigdo files Homepage: http://www.einval.com/~steve/software/JTE/ Description-md5: d1cccff5286555330cb70d9bdd9e62ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: jlex Priority: optional Section: devel Installed-Size: 152 Maintainer: Colin Watson Architecture: all Version: 1.2.6-7 Replaces: javalex Depends: default-jre | java5-runtime | java6-runtime | java7-runtime Conflicts: javalex Filename: pool/main/j/jlex/jlex_1.2.6-7_all.deb Size: 67476 MD5sum: 50cd2bc9de8912ea72f8a69593fced3f SHA1: 437ac88d3b8009871627784491a8b2f755edfc85 SHA256: fe11d04c5ca9999c2ccbd080bad5e5d6e25ada94a54cea516c70d90a1dc8259f Description: Lex-style lexical analyser generator for Java Multi-Arch: foreign Homepage: http://www.cs.princeton.edu/~appel/modern/java/JLex/ Description-md5: 42f9e8c7f031dc6088bd557e08ba56b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: john Priority: optional Section: admin Installed-Size: 956 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: i386 Version: 1.8.0-1 Depends: libc6 (>= 2.7), john-data (= 1.8.0-1) Suggests: wordlist Filename: pool/main/j/john/john_1.8.0-1_i386.deb Size: 416548 MD5sum: fb0cba3a4669154c86b2b1a6413222b0 SHA1: 3644f3523e7bdf9f2e60ff2b6b5ad3046c197c21 SHA256: d733ddf021fe70f9a57b4e4a340efb459dd2378b939866b4f4594d4db864acdf Description: active password cracking tool Homepage: http://www.openwall.com/john/ Description-md5: 2ffcaf0da9fa0a8266bfe4aa906d4742 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: john-data Priority: optional Section: admin Installed-Size: 7265 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: all Source: john Version: 1.8.0-1 Breaks: john (<= 1.7.2-1) Filename: pool/main/j/john/john-data_1.8.0-1_all.deb Size: 5195992 MD5sum: 12c553e51f25d56ad7527bd26ce7d772 SHA1: 66627f4450ed3e9c0655235ef0d4669246042670 SHA256: 381ef55ea3684c5e85bf6f9970afa46c28580eef322b4f6d37c75cfea6d653cd Description: active password cracking tool - character sets Enhances: john Homepage: http://www.openwall.com/john/ Description-md5: a3317ed0e06a264c46ef425d9336ae80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: joyent-mdata-client Priority: optional Section: admin Installed-Size: 120 Maintainer: Ben Howard Architecture: i386 Version: 0.0.1-0ubuntu2 Depends: libc6 (>= 2.4) Filename: pool/main/j/joyent-mdata-client/joyent-mdata-client_0.0.1-0ubuntu2_i386.deb Size: 21798 MD5sum: 4a35e11c38c5aebe032c49d76be0087d SHA1: 7fddba2acab7526e1196b9d36ff340401f25fbd7 SHA256: a2f3cc130a66876d44f7b5f8b22dc4fe2abd01c430d92426e864854853035c7a Description: metadata client for use on SmartOS hyper-visor Homepage: https://github.com/joyent/mdata-client Description-md5: 78fe19782c892d527d85becaf017e2ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: junit Priority: optional Section: devel Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 3.8.2-8build1 Recommends: default-jre (>= 1.4) | default-jre-headless (>= 1.4) | java2-runtime | java2-runtime-headless Suggests: junit-doc Filename: pool/main/j/junit/junit_3.8.2-8build1_all.deb Size: 106136 MD5sum: d02751e894a869d29c58bd00df24ae8e SHA1: da382b110af5beb8da3d1dd507c8778744b4725f SHA256: 0faae5b5c8d0ec9cd1c8b3004a2adaf22fcfa76853e89a9545eb2f8e2e50fb85 Description: Automated testing framework for Java Enhances: ant-optional Homepage: http://www.junit.org Description-md5: 4656faacf15a15de9e0ff0fcff36bb0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: junit-doc Priority: optional Section: devel Installed-Size: 1087 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: junit Version: 3.8.2-8build1 Suggests: junit Filename: pool/main/j/junit/junit-doc_3.8.2-8build1_all.deb Size: 113154 MD5sum: aa780fc5c19540427095faef88e95559 SHA1: 111affdae32b4460c38cf852e78f4521d0de3f38 SHA256: 72208163beaf50e592e5627280e288602ba2fade36bfec1d0e12cd827c4a39f6 Description: Document for JUnit Homepage: http://www.junit.org Description-md5: dafa4198cbea8c6e6ef9d5bfc82954ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: junit4 Priority: optional Section: devel Installed-Size: 310 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 4.11-2 Depends: default-jre-headless | java5-runtime-headless, libhamcrest-java Filename: pool/main/j/junit4/junit4_4.11-2_all.deb Size: 227210 MD5sum: 6c2deb61c467b8bdc5d569837b375022 SHA1: 0cb25c0c51b99471a341d7cb363dcd3b0d1bc68c SHA256: 4e965b4edda06cf994d4aa1311266eeae3f19c6ff7630ff4b366b763cfe756ff Description: JUnit regression test framework for Java Homepage: http://www.junit.org/ Description-md5: 6e472ef1eb53b7098f32665495dd5b52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: junit4-doc Priority: optional Section: doc Installed-Size: 2390 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: junit4 Version: 4.11-2 Recommends: default-jdk-doc, libhamcrest-java-doc Suggests: junit4 Filename: pool/main/j/junit4/junit4-doc_4.11-2_all.deb Size: 312920 MD5sum: 9d63182a2292a5e359d5644db3707253 SHA1: bffe5a34a1889b34308bf92cafc8eb11bf1c59e6 SHA256: ab514b1b5373ab165d3d25d804798493adc3f81c6e99d4b80162beb569da7b4e Description: JUnit regression test framework for Java - documentation Homepage: http://www.junit.org/ Description-md5: 76c2a881e3392afd1eddd749d9d0edd7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: kbd Priority: important Section: utils Installed-Size: 952 Maintainer: Ubuntu Developers Original-Maintainer: Console utilities maintainers Architecture: i386 Version: 1.15.5-1ubuntu1 Provides: console-utilities Depends: libc6 (>= 2.7), console-setup, lsb-base (>= 3.0-10), initramfs-tools Pre-Depends: dpkg (>= 1.15.7.2) Conflicts: console-utilities Filename: pool/main/k/kbd/kbd_1.15.5-1ubuntu1_i386.deb Size: 241198 MD5sum: c90cecc8d1cd7e61a4375c5c127dad15 SHA1: 3568594903bfb4391195d2a14a4b54176a191f8e SHA256: 0b49aee615ae9f91c2650f05ac40aec8b46294ef9eacb8559f993e1c478942f4 Description: Linux console font and keytable utilities Description-md5: cd8bb3115cf19677906ec372cf3956da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: kdelibs-bin Priority: optional Section: libs Installed-Size: 864 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.15), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkjsapi4 (= 4:4.13.0-0ubuntu1), libkjsembed4 (= 4:4.13.0-0ubuntu1), libkrosscore4 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libnepomukutils4 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libsoprano4 (>= 2.7.56), libstdc++6 (>= 4.4.0), libx11-6 Conflicts: kdelibs4c2a, kjscmd Filename: pool/main/k/kde4libs/kdelibs-bin_4.13.0-0ubuntu1_i386.deb Size: 200598 MD5sum: a5514383860bb3698b717213a836ee90 SHA1: 8672048888b69108d671770747f07d229b006df2 SHA256: e84990dac2451a7b3bb842396d00c10eaa21e08bfc09d82c3fa01045b52967db Description: core executables for KDE Applications Homepage: http://www.kde.org/ Description-md5: 8c1a7b51c921c425f6300691dd629da4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: kdelibs5-data Priority: optional Section: libs Installed-Size: 7492 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: kde4libs Version: 4:4.13.0-0ubuntu1 Replaces: kdebase-runtime-data (<< 4:4.5.85), libplasma2 Depends: perl, hicolor-icon-theme Breaks: kdebase-runtime-data (<< 4:4.5.85), libplasma2 Filename: pool/main/k/kde4libs/kdelibs5-data_4.13.0-0ubuntu1_all.deb Size: 2590876 MD5sum: 3de03402bf1ac8b0b800a30a86594edd SHA1: 1de1df5cca9f5174dd6ceb3dc2fc86a36c870148 SHA256: 53695be293f859bd404276b758929c45ae88555fd15c54e0986ddd6c95d91bff Description: core shared data for all KDE Applications Homepage: http://www.kde.org/ Description-md5: 2bd024f64244b4a4f31312afcf299c8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: kdelibs5-dbg Priority: extra Section: libdevel Installed-Size: 329409 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libkdecore5 (= 4:4.13.0-0ubuntu1), libqt4-dbg (>= 4:4.6) Recommends: libkdeui5 (= 4:4.13.0-0ubuntu1), libkpty4 (= 4:4.13.0-0ubuntu1), libkdesu5 (= 4:4.13.0-0ubuntu1), libkjsapi4 (= 4:4.13.0-0ubuntu1), libkjsembed4 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkntlm4 (= 4:4.13.0-0ubuntu1), libsolid4 (= 4:4.13.0-0ubuntu1), libkde3support4 (= 4:4.13.0-0ubuntu1), libkfile4 (= 4:4.13.0-0ubuntu1), libknewstuff2-4 (= 4:4.13.0-0ubuntu1), libknewstuff3-4 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libkutils4 (= 4:4.13.0-0ubuntu1), libthreadweaver4 (= 4:4.13.0-0ubuntu1), libkhtml5 (= 4:4.13.0-0ubuntu1), libkimproxy4 (= 4:4.13.0-0ubuntu1), libkmediaplayer4 (= 4:4.13.0-0ubuntu1), libktexteditor4 (= 4:4.13.0-0ubuntu1), libknotifyconfig4 (= 4:4.13.0-0ubuntu1), libkdnssd4 (= 4:4.13.0-0ubuntu1), libkrosscore4 (= 4:4.13.0-0ubuntu1), libkrossui4 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libnepomukutils4 (= 4:4.13.0-0ubuntu1), libnepomukquery4a (= 4:4.13.0-0ubuntu1), libplasma3 (= 4:4.13.0-0ubuntu1), libkunitconversion4 (= 4:4.13.0-0ubuntu1), libkdewebkit5 (= 4:4.13.0-0ubuntu1), libkcmutils4 (= 4:4.13.0-0ubuntu1), libkemoticons4 (= 4:4.13.0-0ubuntu1), libkidletime4 (= 4:4.13.0-0ubuntu1), libkprintutils4 (= 4:4.13.0-0ubuntu1), libkdeclarative5 (= 4:4.13.0-0ubuntu1), kdelibs-bin (= 4:4.13.0-0ubuntu1) Filename: pool/main/k/kde4libs/kdelibs5-dbg_4.13.0-0ubuntu1_i386.deb Size: 78730026 MD5sum: 5d791855e128cdf0d7f4921c82f605bf SHA1: 4dced83da215bad574a26343ddfb95befe8663a0 SHA256: 28c9db4ae603b7b0ec0520db452603f641962ed4bc1ec1484a1ba4f1d3af2f30 Description: debugging symbols for the KDE Development Platform libraries Homepage: http://www.kde.org/ Description-md5: 5267f8d9119e5ba93ffb45270c660c6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: kdelibs5-dev Priority: optional Section: libdevel Installed-Size: 8860 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Replaces: kdelibs5-data (<< 4:4.9.2-0ubuntu2), kdelibs5-experimental-dev (<< 4:4.8.80~), libplasma-dev (<< 4:4.1.96), pkg-kde-tools (<< 0.15.3ubuntu5) Depends: libc6 (>= 2.4), libkde3support4 (= 4:4.13.0-0ubuntu1), libkdecore5 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkpty4 (= 4:4.13.0-0ubuntu1), libkdesu5 (= 4:4.13.0-0ubuntu1), libkjsapi4 (= 4:4.13.0-0ubuntu1), libkjsembed4 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkntlm4 (= 4:4.13.0-0ubuntu1), libsolid4 (= 4:4.13.0-0ubuntu1), libkfile4 (= 4:4.13.0-0ubuntu1), libknewstuff2-4 (= 4:4.13.0-0ubuntu1), libknewstuff3-4 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libkutils4 (= 4:4.13.0-0ubuntu1), libthreadweaver4 (= 4:4.13.0-0ubuntu1), libkhtml5 (= 4:4.13.0-0ubuntu1), libkimproxy4 (= 4:4.13.0-0ubuntu1), libkmediaplayer4 (= 4:4.13.0-0ubuntu1), libktexteditor4 (= 4:4.13.0-0ubuntu1), libknotifyconfig4 (= 4:4.13.0-0ubuntu1), libkdnssd4 (= 4:4.13.0-0ubuntu1), libkrosscore4 (= 4:4.13.0-0ubuntu1), libkrossui4 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libnepomukutils4 (= 4:4.13.0-0ubuntu1), libnepomukquery4a (= 4:4.13.0-0ubuntu1), libplasma3 (= 4:4.13.0-0ubuntu1), libkunitconversion4 (= 4:4.13.0-0ubuntu1), libkdewebkit5 (= 4:4.13.0-0ubuntu1), libkcmutils4 (= 4:4.13.0-0ubuntu1), libkemoticons4 (= 4:4.13.0-0ubuntu1), libkidletime4 (= 4:4.13.0-0ubuntu1), libkprintutils4 (= 4:4.13.0-0ubuntu1), libkdeclarative5 (= 4:4.13.0-0ubuntu1), kdoctools (= 4:4.13.0-0ubuntu1), kdelibs-bin (= 4:4.13.0-0ubuntu1), automoc (>= 1.0~version-0.9.88), libqt4-dev (>= 4:4.8.0), libsoprano-dev (>= 2.7.56), libphonon-dev (>= 4:4.6.0really4.4.3) Recommends: libqt4-opengl-dev (>= 4:4.7.0) Conflicts: kdelibs4-dev, libkjsembed-dev Breaks: kdelibs5-data (<< 4:4.9.2-0ubuntu2), kdelibs5-experimental-dev (<< 4:4.8.80~), libplasma-dev (<< 4:4.1.96), pkg-kde-tools (<< 0.15.3ubuntu5) Filename: pool/main/k/kde4libs/kdelibs5-dev_4.13.0-0ubuntu1_i386.deb Size: 1411134 MD5sum: 2733a7296533f5646a4162ffa8469ad8 SHA1: 98498dfef5e559349eb5fe46d8fbc5da3f1b7b74 SHA256: 624380757731bdad0c28af316e4d54a5640dc5f269cf31d9fe28b7032aff84a9 Description: development files for the KDE Development Platform libraries Homepage: http://www.kde.org/ Description-md5: 4143b0754ef485c998c2c10e78ae60ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: kdoctools Priority: optional Section: libs Installed-Size: 2035 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.4), libkdecore5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), docbook-xml, docbook-xsl, libxml2-utils Filename: pool/main/k/kde4libs/kdoctools_4.13.0-0ubuntu1_i386.deb Size: 171594 MD5sum: 5131e35a7a39e3b5f0c4d88c92504d08 SHA1: 085cbe40721c445d9d5c1e06e6a5e5cd5072679a SHA256: 874e267760c327a75506a019ec77876d06e4c76b99237d6babaffe4fe9fed1bf Description: various tools for accessing application documentation Homepage: http://www.kde.org/ Description-md5: 238d6e603fc4c3e7e34babe8e5e78683 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: kdump-tools Priority: optional Section: devel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: John Wright Architecture: all Source: makedumpfile Version: 1.5.5-2ubuntu1 Depends: makedumpfile, kexec-tools Filename: pool/main/m/makedumpfile/kdump-tools_1.5.5-2ubuntu1_all.deb Size: 12726 MD5sum: ae8e48d55d7de4c6d448d3c564e5e8c5 SHA1: b1567c318849a52fa30bf55cd0f00119197eb35c SHA256: 1cc2a70435e62e8215cecb47bdd6ccd4f51aeeb8fa400c931f4e26f60c3ed1fc Description: scripts and tools for automating kdump (Linux crash dumps) Description-md5: e4c630411cca5f22a32a48bd81b16449 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: keepalived Priority: optional Section: admin Installed-Size: 392 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: i386 Version: 1:1.2.7-1ubuntu1 Depends: iproute, ipvsadm, libc6 (>= 2.15), libnl-3-200 (>= 3.2.16), libnl-genl-3-200 (>= 3.2.16), libpopt0 (>= 1.14), libsnmp30 (>= 5.7.2~dfsg), libssl1.0.0 (>= 1.0.0) Filename: pool/main/k/keepalived/keepalived_1.2.7-1ubuntu1_i386.deb Size: 148890 MD5sum: ce0aa26f2e6f57f2fdbc1d329dfce447 SHA1: c6a499955d9d5012fb08d967613484b57685595d SHA256: bbcdafb8994bf94b14521cb9adf6f3e26ea56bf774d3856458cd6db69d1d18d5 Description: Failover and monitoring daemon for LVS clusters Description-md5: e2d2506352721e77c2c351de4714ddd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: kernel-wedge Priority: optional Section: utils Installed-Size: 125 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Version: 2.87ubuntu1 Depends: debhelper (>= 9), make Filename: pool/main/k/kernel-wedge/kernel-wedge_2.87ubuntu1_all.deb Size: 21924 MD5sum: 8ff0a0d1d51a288b5b792821db99066f SHA1: b401b5bd69eebc1e78844b91999050bc40ddbdc7 SHA256: 799412aaf09338fa833966184484fa786f83318f03876e10f696882d3adb810c Description: udeb package builder for Debian-Installer Description-md5: fb028eb3928d8d0a511055c3e1f6fab8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: kerneloops-daemon Priority: optional Section: utils Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: kerneloops Version: 0.12+git20090217-3ubuntu8 Replaces: kerneloops (<< 0.12+git20090217-2) Depends: libc6 (>= 2.4), libcurl3-gnutls (>= 7.16.2), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.14.0), lsb-base (>= 3.2-14), adduser Recommends: apport Breaks: kerneloops (<< 0.12+git20090217-2) Filename: pool/main/k/kerneloops/kerneloops-daemon_0.12+git20090217-3ubuntu8_i386.deb Size: 18078 MD5sum: cd7a89fb44051d69209943d940118669 SHA1: c0f96ed8bb0517f4ab3339d4876575fe6ef58ee4 SHA256: 9ab4123acabfc739ebe6ef865a0344a5f32503d9fe27d77e7506f729387ff90e Description: kernel oops tracker Homepage: http://www.kerneloops.org/ Description-md5: 330bcb97ef14d708a3f5db273fe5cd73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: kexec-tools Priority: optional Section: admin Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Khalid Aziz Architecture: i386 Version: 1:2.0.6-0ubuntu2 Depends: libc6 (>= 2.11), debconf (>= 0.5) | debconf-2.0, debconf Filename: pool/main/k/kexec-tools/kexec-tools_2.0.6-0ubuntu2_i386.deb Size: 71334 MD5sum: d385f77d399709e1b78bdf98cfaa47e1 SHA1: 2bad9dcd5847035ab1027de25dc079b952cf314a SHA256: adcc54b5295105b14918d99b7eff326fe6839b65eb46c64f54d4a40750b27577 Description: tools to support fast kexec reboots Homepage: http://kernel.org/pub/linux/utils/kernel/kexec/ Description-md5: 8d39a422632d6a4c4a9ed06e009b2673 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: keyboard-configuration Priority: important Section: utils Installed-Size: 2304 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: console-setup Version: 1.70ubuntu8 Replaces: console-setup (<< 1.47), console-setup-mini (<< 1.47) Depends: debconf (>= 1.5.34), liblocale-gettext-perl Conflicts: console-setup (<< 1.47), console-setup-mini (<< 1.47) Filename: pool/main/c/console-setup/keyboard-configuration_1.70ubuntu8_all.deb Size: 555622 MD5sum: 7bf4385a6e3be4bf3549ca06c79977ab SHA1: 8cad9803d396354edc741443cda94840fb2cee20 SHA256: 997ddef05a1f2afe5eb96289a526bef665157e7fc481a77215bbf67277ae47ff Description: system-wide keyboard preferences Description-md5: 85ee5b58c8d635ba9041b52f81058494 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: keymapper Priority: optional Section: utils Installed-Size: 193 Maintainer: Colin Watson Architecture: all Version: 0.5.3-10.1build2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), xkb-data | xkeyboard-config, yapps2-runtime (>= 2.1.1-17) Suggests: graphviz Filename: pool/main/k/keymapper/keymapper_0.5.3-10.1build2_all.deb Size: 38220 MD5sum: ea6f277ffd74c894d8c1210a0061804c SHA1: 11820054b36a5de4972c7dc16f52bb9979d8fcf2 SHA256: 1d8ef2c94e151df53d22654141422f98b0b77297477dc86ee99e53f69eff04a0 Description: Keyboard map decision tree builder and interpreter Description-md5: bbe579d785b279437415488f97281034 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: keystone Priority: extra Section: python Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Monty Taylor Architecture: all Version: 1:2014.1-0ubuntu1 Depends: adduser, python-keystone (= 1:2014.1-0ubuntu1), ssl-cert (>= 1.0.12), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/k/keystone/keystone_2014.1-0ubuntu1_all.deb Size: 24038 MD5sum: 97e8341601e1ea21ad1657f66471c98d SHA1: 552d99b3f1c35a599116239f5414361dd3b2c53d SHA256: 0480fd64f158ed3abcb580f6107f5392618fc1dd566f09d89de47b3833202307 Description: OpenStack identity service - Daemons Homepage: http://launchpad.net/keystone Description-md5: 27421a6db50f80b519e733aec71dae10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: keystone-doc Priority: extra Section: doc Installed-Size: 2550 Maintainer: Ubuntu Developers Original-Maintainer: Monty Taylor Architecture: all Source: keystone Version: 1:2014.1-0ubuntu1 Depends: libjs-jquery Filename: pool/main/k/keystone/keystone-doc_2014.1-0ubuntu1_all.deb Size: 854566 MD5sum: 7f8fff7e16265e3eb761c226803aea35 SHA1: 31e4e4e4c1b04484197ed481a47cccfa79673012 SHA256: 1b35d866d7da77e7b6e5c9419e5d5c72596b2a40dafe2146f6ff96cf41feae73 Description: OpenStack identity service - Documentation Homepage: http://launchpad.net/keystone Description-md5: 42b26822f99c12d16268512a33f6dfd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: keyutils Priority: optional Section: misc Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: i386 Version: 1.5.6-1 Depends: libc6 (>= 2.15), libkeyutils1 Filename: pool/main/k/keyutils/keyutils_1.5.6-1_i386.deb Size: 32464 MD5sum: def358f917240d1f7414012c08dcd43f SHA1: 3a7838d096fe92edfc6f929e8bdabdc32a0618e1 SHA256: ed27223166bbc88fba324c0c9058c31470b547c8f52091dededbfeb18674c519 Description: Linux Key Management Utilities Homepage: http://people.redhat.com/~dhowells/keyutils/ Description-md5: 2d8745863e4f147ac2e1dded0b9fa058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, samba-server, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: keyutils-dbg Priority: extra Section: devel Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: i386 Source: keyutils Version: 1.5.6-1 Depends: keyutils (= 1.5.6-1), libkeyutils1 (= 1.5.6-1), libkeyutils-dev (= 1.5.6-1) Filename: pool/main/k/keyutils/keyutils-dbg_1.5.6-1_i386.deb Size: 52628 MD5sum: da7255b3e7659a608013b9298d270162 SHA1: f737268b747e9f30d39db474c80569419e24c48d SHA256: 016fe36000f6fc82e335ea2ab5a2323844069b4f70f474735554e4cfe6c594f1 Description: Linux Key Management Utilities (debug) Homepage: http://people.redhat.com/~dhowells/keyutils/ Description-md5: 6934d10b03c868f12d7b84829730e608 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: klibc-utils Priority: required Section: libs Installed-Size: 392 Maintainer: Ubuntu Developers Original-Maintainer: maximilian attems Architecture: i386 Source: klibc Version: 2.0.3-0ubuntu1 Depends: libklibc (= 2.0.3-0ubuntu1) Breaks: initramfs-tools (<< 0.103) Filename: pool/main/k/klibc/klibc-utils_2.0.3-0ubuntu1_i386.deb Size: 103848 MD5sum: d0a1dc7a8215d31c401ec09ad4fbda7f SHA1: 6fb73753a5f5124bf5855eeb15e12c94d7edf2f7 SHA256: 30e2bba85460edcf24795257e67b74f80b1625668f5fc621882bc041cb49086d Description: small utilities built with klibc for early boot Homepage: http://git.kernel.org/?p=libs/klibc/klibc.git;a=summary Description-md5: c3467a84f84cfb54cfe339be01214b23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: kmod Priority: required Section: admin Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: i386 Version: 15-0ubuntu6 Replaces: module-init-tools (<< 4) Depends: libc6 (>= 2.17), libkmod2, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.0-6) Breaks: module-init-tools (<< 4) Filename: pool/main/k/kmod/kmod_15-0ubuntu6_i386.deb Size: 85988 MD5sum: ffac2185c5718e0166240218e2f1cb2f SHA1: ac8dd7b9a32f9a7a50831766b843ae0a894a48ee SHA256: 86adea373cdee1ce07ee39bca59052039bb26ceb64a57bbc0a96fb42ff9e5ec7 Description: tools for managing Linux kernel modules Multi-Arch: foreign Description-md5: 0cd8f9566ff621a593309a12fd64999f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: konwert Priority: optional Section: text Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Yann Dirson Architecture: i386 Version: 1.8-11.2build2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1), perl, konwert-filters Suggests: konwert-dev Filename: pool/main/k/konwert/konwert_1.8-11.2build2_i386.deb Size: 46334 MD5sum: 7fbea21b548c075e1f15d5df17658f50 SHA1: e173738987b2ee00a0f2fdc883f5a7390e1081f9 SHA256: 39ff4171c03fb2f36ebc65d7bbf8e83c0edbca14dd393a081b66049ef7610576 Description: Charset conversion for files or terminal I/O Description-md5: 926256ae6d5bc4067982801086f63ea3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: konwert-dev Priority: extra Section: text Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Yann Dirson Architecture: all Source: konwert Version: 1.8-11.2build2 Depends: konwert Suggests: g++ Filename: pool/main/k/konwert/konwert-dev_1.8-11.2build2_all.deb Size: 21962 MD5sum: b7b9f78bd46e95cb0c77798c4f4c152d SHA1: 2d84aa3d4865557f2502cc839328ce8c565468e1 SHA256: 686a5979ac4f685f145a818a0feb77468d5ba4ce4fcbe60c7a6b491777634a07 Description: Tools to define new charset conversion for konwert Description-md5: d8ecc77619a386925b83b8579073fbe5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: konwert-filters Priority: optional Section: text Installed-Size: 542 Maintainer: Ubuntu Developers Original-Maintainer: Yann Dirson Architecture: all Source: konwert Version: 1.8-11.2build2 Depends: perl, libfile-temp-perl Recommends: konwert Filename: pool/main/k/konwert/konwert-filters_1.8-11.2build2_all.deb Size: 227960 MD5sum: df138cb262ca61f928760e4465d57981 SHA1: 70684656078648d30097da1dfd6f9bc481282076 SHA256: d4a1bed828cb511bffdbb57b81b28808c81b8450fe9f0baee7c94f2b0210a2a0 Description: Filters used by konwert for charset conversion Description-md5: 6fde49421294c6c2e8fcec04e1459871 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: kpartx Priority: extra Section: admin Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian LVM Team Architecture: i386 Source: multipath-tools Version: 0.4.9-3ubuntu7 Replaces: multipath-tools (<< 0.4.7-3) Depends: libc6 (>= 2.4), libdevmapper1.02.1 (>= 2:1.02.36), udev (>> 136-1), dmsetup (>= 2:1.02.24) Filename: pool/main/m/multipath-tools/kpartx_0.4.9-3ubuntu7_i386.deb Size: 25570 MD5sum: 2be96e500981f07468ba91023b49d2dc SHA1: 554d2e7cc5e4ec240c9c7958ebf28a0b6e358951 SHA256: 7feca1fd5bfc48856bfc737fd17781ac77fdcc5cbbdbe7a84507cc34da37fd35 Description: create device mappings for partitions Homepage: http://christophe.varoqui.free.fr/ Description-md5: 5edc0d8999e24d591b49f95449a8741f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: kpartx-boot Priority: extra Section: admin Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian LVM Team Architecture: all Source: multipath-tools Version: 0.4.9-3ubuntu7 Depends: initramfs-tools, kpartx (>= 0.4.9-3ubuntu7), kpartx (<< 0.4.9-3ubuntu7.1~) Filename: pool/main/m/multipath-tools/kpartx-boot_0.4.9-3ubuntu7_all.deb Size: 2076 MD5sum: 005ff7e502feb0a71411aa5cf8992105 SHA1: 929586139f286670b43845fd37f85a27625c4988 SHA256: 6bfd5dc5966417469ac1d78175e905c4c381995e362688da5b59e39a8d2546b8 Description: Provides kpartx during boot Homepage: http://christophe.varoqui.free.fr/ Description-md5: 10329bba552304246c0935379a51e55f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: krb5-config Priority: optional Section: net Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: all Source: kerberos-configs Version: 2.3 Depends: debconf (>= 0.5) | debconf-2.0, bind9-host Filename: pool/main/k/kerberos-configs/krb5-config_2.3_all.deb Size: 23388 MD5sum: ce80bcaaeb9e8ebb8d8538fe5a5614f3 SHA1: dd72c2d76dbee418ceb5d2c8da85e3a991af7138 SHA256: cb1245cb267bf12bb9f0ebfe6c46ad04825bcc14e54b4fa02ab87f6381f3201b Description: Configuration files for Kerberos Version 5 Description-md5: 36570a434cf5f024efb3ccc2fd73ab6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: krb5-doc Priority: optional Section: doc Installed-Size: 13021 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: all Source: krb5 Version: 1.12+dfsg-2ubuntu4 Conflicts: heimdal-docs Filename: pool/main/k/krb5/krb5-doc_1.12+dfsg-2ubuntu4_all.deb Size: 2044512 MD5sum: c879887667d5f1e8c6c2f2656794dac4 SHA1: fa86dcba46080a06a538cbe47a6a7382b513a3ab SHA256: a99366cfc437dfd9ec7b6eb945eb5fa1db3138575c6ea9a8cb6608333679fab3 Description: Documentation for MIT Kerberos Homepage: http://web.mit.edu/kerberos/ Description-md5: 82977cdecba51fe5a20802f9dee9fabf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: krb5-locales Priority: standard Section: localization Installed-Size: 2660 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: all Source: krb5 Version: 1.12+dfsg-2ubuntu4 Filename: pool/main/k/krb5/krb5-locales_1.12+dfsg-2ubuntu4_all.deb Size: 12332 MD5sum: 7d23105af6bdc0c2f1023bf00cb66b6f SHA1: 790c1f405c4f6c766be1069c4610dc06a24bf169 SHA256: 6610c635beaa30a043006706d57ead944ee84ff552a6a0243ed87d8015dca869 Description: Internationalization support for MIT Kerberos Multi-Arch: foreign Homepage: http://web.mit.edu/kerberos/ Description-md5: 9832530db9d027f2921f0105bd4c102e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: krb5-multidev Priority: optional Section: libdevel Installed-Size: 782 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libkrb5-3 (= 1.12+dfsg-2ubuntu4), libk5crypto3 (= 1.12+dfsg-2ubuntu4), libgssapi-krb5-2 (= 1.12+dfsg-2ubuntu4), libgssrpc4 (= 1.12+dfsg-2ubuntu4), libkadm5srv-mit9 (= 1.12+dfsg-2ubuntu4), libkadm5clnt-mit9 (= 1.12+dfsg-2ubuntu4), comerr-dev Suggests: krb5-doc Filename: pool/main/k/krb5/krb5-multidev_1.12+dfsg-2ubuntu4_i386.deb Size: 110866 MD5sum: 54d1660a0430d214928bd0a693e5e9de SHA1: 66f4a5beae0fbab5a2841cb63f73a85c26817e14 SHA256: 7988361e5cdc93c8ddfcd669620252f17a42640db2028d05845d03c18becb613 Description: Development files for MIT Kerberos without Heimdal conflict Homepage: http://web.mit.edu/kerberos/ Description-md5: 7761820aba399b20f00deab931782fe1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: landscape-client Priority: optional Section: admin Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Landscape Team Architecture: i386 Version: 14.01-0ubuntu3 Depends: python:any, debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.2), python-twisted-web, python-twisted-names, python-pycurl, landscape-common (= 14.01-0ubuntu3) Filename: pool/main/l/landscape-client/landscape-client_14.01-0ubuntu3_i386.deb Size: 18926 MD5sum: 1e077dc04cb0ee723dbf4271a6047d3a SHA1: ab484ff41d746faecd73ffea38e216425a1070a6 SHA256: e81cda1afcd43360113e0372ba487af4ff87f621b6e71daca1a7ffe7b0ee9b7c Description: The Landscape administration system client Description-md5: 3b6c233c041e3a732a8f320ae24c6a60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: landscape-client-ui Priority: optional Section: admin Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Landscape Team Architecture: i386 Source: landscape-client Version: 14.01-0ubuntu3 Replaces: landscape-client (<< 13.05.1+bzr682) Depends: python:any, landscape-client (= 14.01-0ubuntu3), landscape-client-ui-install (= 14.01-0ubuntu3), python-gi, python-dbus, policykit-1, gir1.2-notify-0.7, gir1.2-gtk-3.0 Filename: pool/main/l/landscape-client/landscape-client-ui_14.01-0ubuntu3_i386.deb Size: 4138 MD5sum: c12e50ab81066bcc1d6d759906691d0a SHA1: 44bbb840408125f70a48b4a706035dcf28af6f82 SHA256: 048d5c3d777bedb0473778e81ec226ce46bc5a22403af5dfc1d37858add2e5ea Description: The Landscape administration system client - UI configuration Description-md5: 492e934962914cbe7430f25c3860cdec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: landscape-client-ui-install Priority: optional Section: admin Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Landscape Team Architecture: i386 Source: landscape-client Version: 14.01-0ubuntu3 Depends: python:any, python-gi, python-dbus, policykit-1, gir1.2-gtk-3.0, python-aptdaemon.gtk3widgets Filename: pool/main/l/landscape-client/landscape-client-ui-install_14.01-0ubuntu3_i386.deb Size: 6404 MD5sum: c8ea4f6e1e74c2e775fafbea16aa7cf6 SHA1: 54a864a5acf41108c099251fb4eb3a9925c6133b SHA256: 366a47f42bade9fa988a015f6fc3f819942b7f7f68d1a03baf7ce6bacbebe94f Description: The Landscape administration system client - UI installer Description-md5: 3d4cc26e92f97555be860321697a84bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: landscape-common Priority: optional Section: admin Installed-Size: 961 Maintainer: Ubuntu Developers Original-Maintainer: Landscape Team Architecture: i386 Source: landscape-client Version: 14.01-0ubuntu3 Replaces: landscape-client (<< 12.09+bzr582) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), debconf (>= 0.5) | debconf-2.0, python-twisted-core, python-configobj, python-apt, ca-certificates, python-gdbm, lsb-release, lsb-base, adduser, bc, lshw, libpam-modules Filename: pool/main/l/landscape-client/landscape-common_14.01-0ubuntu3_i386.deb Size: 168206 MD5sum: 9db288ee3e88e4745fcadd11a0d5a0eb SHA1: b2054a697b5fd1cde570fe14d9908174e86da961 SHA256: f2cfbd6cfad179955f1635bc9c81d8ec0f2fc5b06edb254994de492564a52e9f Description: The Landscape administration system client - Common files Python-Version: 2.7 Description-md5: 835e5462d72cec2787f651391834f9a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server Package: language-pack-aa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-aa (<< 1:14.04+20140410), language-pack-aa-base, language-pack-gnome-aa (<< 1:14.04+20140410), language-pack-gnome-aa-base (<< 1:14.04+20140410), language-pack-kde-aa (<< 1:14.04+20140410), language-pack-kde-aa-base (<< 1:14.04+20140410) Depends: language-pack-aa-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-aa/language-pack-aa_14.04+20140410_all.deb Size: 1976 MD5sum: 8f45a466bf19172992e808dfdfde7392 SHA1: 45d7151db628b61035a7e765ca8ab0bf195be974 SHA256: 3b90d735ca2cf4e457e36147fc91bf011e503c9dc3f2c4df919ea48730439360 Description: translation updates for language Afar Description-md5: 83fcc5a2b60002b773a7152e98365c0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-aa-base Priority: optional Section: translations Installed-Size: 55 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-aa (<< 1:14.04+20140410), language-pack-aa-base (<< 1:14.04+20140410), language-pack-gnome-aa (<< 1:14.04+20140410), language-pack-gnome-aa-base (<< 1:14.04+20140410), language-pack-kde-aa (<< 1:14.04+20140410), language-pack-kde-aa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-aa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-aa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-aa-base/language-pack-aa-base_14.04+20140410_all.deb Size: 3100 MD5sum: f320e923bdf7c9f30ed79382ffa1d4b7 SHA1: ba2ea25387d8df9b8f88f25916038413c17e8ad1 SHA256: 7631840d39712fc0ecb798081da8708639beaefb4ba6900bbc6a75666dca9a78 Description: translations for language Afar Description-md5: 83d559e19a35101e0d08280200265f89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-af Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-af (<< 1:14.04+20140410), language-pack-af-base, language-pack-gnome-af (<< 1:14.04+20140410), language-pack-gnome-af-base (<< 1:14.04+20140410), language-pack-kde-af (<< 1:14.04+20140410), language-pack-kde-af-base (<< 1:14.04+20140410) Depends: language-pack-af-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-af/language-pack-af_14.04+20140410_all.deb Size: 1982 MD5sum: 62c6ecffc80ac182edc0c81e2e8a06ea SHA1: a5b2913c5e422edcddef69f00dc444f366b74133 SHA256: 597b461a2c5ef50e1f5d142f385083527fdd8c343c03d22efefb4c16664397ef Description: translation updates for language Afrikaans Description-md5: d2d9e90761f53e2a13002b27ce8f5d64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-af-base Priority: optional Section: translations Installed-Size: 872 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-af (<< 1:14.04+20140410), language-pack-af-base (<< 1:14.04+20140410), language-pack-gnome-af (<< 1:14.04+20140410), language-pack-gnome-af-base (<< 1:14.04+20140410), language-pack-kde-af (<< 1:14.04+20140410), language-pack-kde-af-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-af (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-af Conflicts: language-pack-af (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-af-base/language-pack-af-base_14.04+20140410_all.deb Size: 280734 MD5sum: ca6be3f25dc4121616864b4d25fc8fdf SHA1: f964e5dd705deaa101cfe596f47a89e5def65358 SHA256: e0007112bfecd4ce8f92b6f469930e3346b6b159b27796f7118464640bd66627 Description: translations for language Afrikaans Description-md5: f2472f2187166553fd095a522d2d6014 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-am Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-am (<< 1:14.04+20140410), language-pack-am-base, language-pack-gnome-am (<< 1:14.04+20140410), language-pack-gnome-am-base (<< 1:14.04+20140410), language-pack-kde-am (<< 1:14.04+20140410), language-pack-kde-am-base (<< 1:14.04+20140410) Depends: language-pack-am-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-am/language-pack-am_14.04+20140410_all.deb Size: 1962 MD5sum: 9bb73c2e67b10c0b1f9160d2271bf906 SHA1: 9c6e61479cd26e2676696bcb5f60d66e2d5c57f2 SHA256: ada4726b2e03b549f51988e6cbf522d8e38ec05e1546647eeb2d80588dc5f1f4 Description: translation updates for language Amharic Description-md5: b1e3cb56c9a6998181138cf208c5317c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-am-base Priority: optional Section: translations Installed-Size: 140 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-am (<< 1:14.04+20140410), language-pack-am-base (<< 1:14.04+20140410), language-pack-gnome-am (<< 1:14.04+20140410), language-pack-gnome-am-base (<< 1:14.04+20140410), language-pack-kde-am (<< 1:14.04+20140410), language-pack-kde-am-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-am (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-am (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-am-base/language-pack-am-base_14.04+20140410_all.deb Size: 28292 MD5sum: 948358e76113976826ad35014d9bde65 SHA1: c51e1f8b3368bdb39feb19e65c0bed5402201ce5 SHA256: 1998a6bdb7aa0f1447e9317006477dcb7bb524dc64335b2a93f09d2af9842b2e Description: translations for language Amharic Description-md5: 225a82c408273f3a2be38716c8a70a5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-an Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-an (<< 1:14.04+20140410), language-pack-an-base, language-pack-gnome-an (<< 1:14.04+20140410), language-pack-gnome-an-base (<< 1:14.04+20140410), language-pack-kde-an (<< 1:14.04+20140410), language-pack-kde-an-base (<< 1:14.04+20140410) Depends: language-pack-an-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-an/language-pack-an_14.04+20140410_all.deb Size: 1972 MD5sum: 2c122028b55c54f76f31ed5c981c2f1d SHA1: 295ac37bd7f0347e42265384d5379fdee5203db2 SHA256: e16c120a915287b49aa9dbb4a55ce3fa068635ce19a03072d7d6d3101812f4a4 Description: translation updates for language Aragonese Description-md5: e2a096d70c7c7fec5b3ec7bbe59a0267 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-an-base Priority: optional Section: translations Installed-Size: 73 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-an (<< 1:14.04+20140410), language-pack-an-base (<< 1:14.04+20140410), language-pack-gnome-an (<< 1:14.04+20140410), language-pack-gnome-an-base (<< 1:14.04+20140410), language-pack-kde-an (<< 1:14.04+20140410), language-pack-kde-an-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-an (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-an Conflicts: language-pack-an (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-an-base/language-pack-an-base_14.04+20140410_all.deb Size: 9576 MD5sum: aa22470fcd06141b173246f94b876d31 SHA1: 803ee44b2500c4fa8e70b6af25ab2e3cb8d42b6d SHA256: b99590d51368553dfe8dda09730dd9b1cb2db03df1ff234ee23f0cd4eabefdd8 Description: translations for language Aragonese Description-md5: 10bfd3179da46c760b2294e970e184da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ar Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ar (<< 1:14.04+20140410), language-pack-ar-base, language-pack-gnome-ar (<< 1:14.04+20140410), language-pack-gnome-ar-base (<< 1:14.04+20140410), language-pack-kde-ar (<< 1:14.04+20140410), language-pack-kde-ar-base (<< 1:14.04+20140410) Depends: language-pack-ar-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ar/language-pack-ar_14.04+20140410_all.deb Size: 1986 MD5sum: 2216ff80a723d91e31bebbf41bad1706 SHA1: 11d2772dd3add01143b82443189983835b882aed SHA256: 482fa373b342bc1b5722877f7389638237fc3b85f20f930941911112d1c99b3a Description: translation updates for language Arabic Description-md5: b7461fa593f1c6fcd1db9db0c40d9039 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ar-base Priority: optional Section: translations Installed-Size: 1000 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ar (<< 1:14.04+20140410), language-pack-ar-base (<< 1:14.04+20140410), language-pack-gnome-ar (<< 1:14.04+20140410), language-pack-gnome-ar-base (<< 1:14.04+20140410), language-pack-kde-ar (<< 1:14.04+20140410), language-pack-kde-ar-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ar (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ar Conflicts: language-pack-ar (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ar-base/language-pack-ar-base_14.04+20140410_all.deb Size: 261222 MD5sum: caed09bbaabfcc879472e861acc63a92 SHA1: cfb4457d0f5d6f5fa84c5c32fc4752a150064645 SHA256: f1d92546f6fde2428df3f9bf1712997e2bc64ac11ea69f70d9f04a35e2cf203e Description: translations for language Arabic Description-md5: 774e1cdd50e244f821c0560eba60e5d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-as Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-as (<< 1:14.04+20140410), language-pack-as-base, language-pack-gnome-as (<< 1:14.04+20140410), language-pack-gnome-as-base (<< 1:14.04+20140410), language-pack-kde-as (<< 1:14.04+20140410), language-pack-kde-as-base (<< 1:14.04+20140410) Depends: language-pack-as-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-as/language-pack-as_14.04+20140410_all.deb Size: 1992 MD5sum: e54bc716acf59213a20f804dbf6cf30d SHA1: 829ed702011c6889d18b0c82d1884a240ae80a78 SHA256: e253f2c58fab57980271b27f3738a21552c82ae8e5e0aa481f686b4dfa93c3fc Description: translation updates for language Assamese Description-md5: b579abb9f9b0b339e949f69fd53f77ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-as-base Priority: optional Section: translations Installed-Size: 1445 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-as (<< 1:14.04+20140410), language-pack-as-base (<< 1:14.04+20140410), language-pack-gnome-as (<< 1:14.04+20140410), language-pack-gnome-as-base (<< 1:14.04+20140410), language-pack-kde-as (<< 1:14.04+20140410), language-pack-kde-as-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-as (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-as Conflicts: language-pack-as (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-as-base/language-pack-as-base_14.04+20140410_all.deb Size: 274132 MD5sum: 8541956b526688eb14a0ac681f50a3d3 SHA1: 268d9178c3152c162a95912e988f77d55da289cb SHA256: 34cce863a5a86f5a78acecfb5041f6843763d20a94d78875cdd1831528b30602 Description: translations for language Assamese Description-md5: e8c511c0d62d945198e81649b65b18ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ast Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ast (<< 1:14.04+20140410), language-pack-ast-base, language-pack-gnome-ast (<< 1:14.04+20140410), language-pack-gnome-ast-base (<< 1:14.04+20140410), language-pack-kde-ast (<< 1:14.04+20140410), language-pack-kde-ast-base (<< 1:14.04+20140410) Depends: language-pack-ast-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ast/language-pack-ast_14.04+20140410_all.deb Size: 1980 MD5sum: 5eb18f623c26eaee9e751d88cf009e9a SHA1: cd0a722bf997dcdd8250b5d60382b48cf459ec3a SHA256: b74e82a8ba1625bdf810b9c2f83d0576b03923f1700ff122274c1a309721ae47 Description: translation updates for language Asturian Description-md5: 786fb5ebccafbf7ec8c011f2a4076942 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ast-base Priority: optional Section: translations Installed-Size: 4255 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ast (<< 1:14.04+20140410), language-pack-ast-base (<< 1:14.04+20140410), language-pack-gnome-ast (<< 1:14.04+20140410), language-pack-gnome-ast-base (<< 1:14.04+20140410), language-pack-kde-ast (<< 1:14.04+20140410), language-pack-kde-ast-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ast (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ast Conflicts: language-pack-ast (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ast-base/language-pack-ast-base_14.04+20140410_all.deb Size: 1298320 MD5sum: 101c6e6c95e7057d5b8178e1d13f2f6c SHA1: b6b77608fdb0cc750cdced43839f123a86f11134 SHA256: b968072d940fdc0e953b53ee2f962407d2b215bf44bd7aa0b50f84ad09b8cb4c Description: translations for language Asturian Description-md5: e812a27ce8778aa9ee7c4e14ad29e632 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-az Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-az (<< 1:14.04+20140410), language-pack-az-base, language-pack-gnome-az (<< 1:14.04+20140410), language-pack-gnome-az-base (<< 1:14.04+20140410), language-pack-kde-az (<< 1:14.04+20140410), language-pack-kde-az-base (<< 1:14.04+20140410) Depends: language-pack-az-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-az/language-pack-az_14.04+20140410_all.deb Size: 1966 MD5sum: 302cbcacf9e81c52ca6f7153530146c6 SHA1: a0acfb8c9df9004ace16dcc42d8315c95a18a6ad SHA256: 719f3b31a89167ffbddbc50bbabb420419b47efc64d7352e5b06439e5c13a9b0 Description: translation updates for language Azerbaijani Description-md5: df7b32eca79a0fba5010572dd26a64e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-az-base Priority: optional Section: translations Installed-Size: 200 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-az (<< 1:14.04+20140410), language-pack-az-base (<< 1:14.04+20140410), language-pack-gnome-az (<< 1:14.04+20140410), language-pack-gnome-az-base (<< 1:14.04+20140410), language-pack-kde-az (<< 1:14.04+20140410), language-pack-kde-az-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-az (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-az (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-az-base/language-pack-az-base_14.04+20140410_all.deb Size: 55026 MD5sum: 1a61a370a7b7a3224b4e989a36d9b9c9 SHA1: af5dddfe21f2f7796d9009b1445ccdbec6681b32 SHA256: d37098af467847e6d12b97062180b4441902415a9602ddd6ab227ca7662b49ba Description: translations for language Azerbaijani Description-md5: 97d3d5c8aa79adb5ed68001d5410e2b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-be Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-be (<< 1:14.04+20140410), language-pack-be-base, language-pack-gnome-be (<< 1:14.04+20140410), language-pack-gnome-be-base (<< 1:14.04+20140410), language-pack-kde-be (<< 1:14.04+20140410), language-pack-kde-be-base (<< 1:14.04+20140410) Depends: language-pack-be-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-be/language-pack-be_14.04+20140410_all.deb Size: 1978 MD5sum: add6d2d84e016686db3bd4a526ebd755 SHA1: 93c46bee901f1b4ae900f06a4931dbab6077509d SHA256: 508475cd976ea088923a0be960a7429852ecce392f50e06e6aae8511d7bdd940 Description: translation updates for language Belarusian Description-md5: b33689d929a5da2b17030649e9dbcbcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-be-base Priority: optional Section: translations Installed-Size: 1575 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-be (<< 1:14.04+20140410), language-pack-be-base (<< 1:14.04+20140410), language-pack-gnome-be (<< 1:14.04+20140410), language-pack-gnome-be-base (<< 1:14.04+20140410), language-pack-kde-be (<< 1:14.04+20140410), language-pack-kde-be-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-be (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-be Conflicts: language-pack-be (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-be-base/language-pack-be-base_14.04+20140410_all.deb Size: 422344 MD5sum: 70baba0efa9c9a52268f016cf144c2be SHA1: 9a1475ba884d0ce82f5a34ab8b81613f42ec3cc8 SHA256: 1c0e9aa5497a7085ff78c0b68897305c03da8e3046b9b35ff66a5081ec7d311e Description: translations for language Belarusian Description-md5: 8845113bd3cc7413c31f90b0871d0d18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bem Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bem (<< 1:14.04+20140410), language-pack-bem-base, language-pack-gnome-bem (<< 1:14.04+20140410), language-pack-gnome-bem-base (<< 1:14.04+20140410), language-pack-kde-bem (<< 1:14.04+20140410), language-pack-kde-bem-base (<< 1:14.04+20140410) Depends: language-pack-bem-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bem/language-pack-bem_14.04+20140410_all.deb Size: 1988 MD5sum: 21ab7830c586c699e0d3b1afeaf73206 SHA1: d90c5d6af72695e2b520e44e0ff1b541a49d25e5 SHA256: 3fe62667597cbce8f22c0489d5bf9ed9cf683843b214d521d22e4bf9b9a45685 Description: translation updates for language Bemba (Zambia) Description-md5: 25a5fe4c115df1123100888b65fdeb84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bem-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bem (<< 1:14.04+20140410), language-pack-bem-base (<< 1:14.04+20140410), language-pack-gnome-bem (<< 1:14.04+20140410), language-pack-gnome-bem-base (<< 1:14.04+20140410), language-pack-kde-bem (<< 1:14.04+20140410), language-pack-kde-bem-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bem (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-bem (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bem-base/language-pack-bem-base_14.04+20140410_all.deb Size: 2314 MD5sum: 3a5bd392eb4ff2e6da5bc166cec90f85 SHA1: 5923b1d85e9b4aec6aa0d250ac2532378ffba20a SHA256: 8b28fe224807bbb5e074b8536d60358717b2659637c6f12a85c741d2321d7dd3 Description: translations for language Bemba (Zambia) Description-md5: 2d03dc4e28fd62ed6f94e02a00980b7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ber Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ber (<< 1:14.04+20140410), language-pack-ber-base, language-pack-gnome-ber (<< 1:14.04+20140410), language-pack-gnome-ber-base (<< 1:14.04+20140410), language-pack-kde-ber (<< 1:14.04+20140410), language-pack-kde-ber-base (<< 1:14.04+20140410) Depends: language-pack-ber-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ber/language-pack-ber_14.04+20140410_all.deb Size: 1958 MD5sum: 67060ed211bcfa8c257b70fb8d249d96 SHA1: fbb021c929b5e650fc116fe96cb082bd289fa436 SHA256: 671ef273a12afe186c37bb9d87e6f523e5f8628efcfcfefaf71ae3bbb2749844 Description: translation updates for language Berber languages Description-md5: 08a0b2567f6732ea7c7215915554c568 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ber-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ber (<< 1:14.04+20140410), language-pack-ber-base (<< 1:14.04+20140410), language-pack-gnome-ber (<< 1:14.04+20140410), language-pack-gnome-ber-base (<< 1:14.04+20140410), language-pack-kde-ber (<< 1:14.04+20140410), language-pack-kde-ber-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ber (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ber (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ber-base/language-pack-ber-base_14.04+20140410_all.deb Size: 2310 MD5sum: e0b6092a2bedcf41a5d2dd591277b1ae SHA1: a27929ab3252cbbcf398642b3fa8f2b445e0ba51 SHA256: e2382e1fedf63130fb355f8ec3f5fa6be61509ba23321a0398115ba132c5ec93 Description: translations for language Berber languages Description-md5: 335252b22911cb54251f2c63dc1d2e9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bg (<< 1:14.04+20140410), language-pack-bg-base, language-pack-gnome-bg (<< 1:14.04+20140410), language-pack-gnome-bg-base (<< 1:14.04+20140410), language-pack-kde-bg (<< 1:14.04+20140410), language-pack-kde-bg-base (<< 1:14.04+20140410) Depends: language-pack-bg-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bg/language-pack-bg_14.04+20140410_all.deb Size: 1986 MD5sum: 841bcd58225f4e16f046c11bf7aeca31 SHA1: e0e50c3af03e17f4b154fe5b6b9e85a90bdc2bbf SHA256: e3145c56f2e69127470262a487e3630320dd930b50b2d42014890e46ab5c71a4 Description: translation updates for language Bulgarian Description-md5: b28d78176a301f6f96615efcf80f1808 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bg-base Priority: optional Section: translations Installed-Size: 2775 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bg (<< 1:14.04+20140410), language-pack-bg-base (<< 1:14.04+20140410), language-pack-gnome-bg (<< 1:14.04+20140410), language-pack-gnome-bg-base (<< 1:14.04+20140410), language-pack-kde-bg (<< 1:14.04+20140410), language-pack-kde-bg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-bg Conflicts: language-pack-bg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bg-base/language-pack-bg-base_14.04+20140410_all.deb Size: 702020 MD5sum: 23d347faf97d90b74162d1173348b972 SHA1: e221e4668aa6aa4c0f7c365256da713c9dbef3b4 SHA256: 2c39b45009820c9a3937e770cc0790a4968fa815e3242026206772864f22623c Description: translations for language Bulgarian Description-md5: e00ad017be5b63638fc61d319592abe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bho Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bho (<< 1:14.04+20140410), language-pack-bho-base, language-pack-gnome-bho (<< 1:14.04+20140410), language-pack-gnome-bho-base (<< 1:14.04+20140410), language-pack-kde-bho (<< 1:14.04+20140410), language-pack-kde-bho-base (<< 1:14.04+20140410) Depends: language-pack-bho-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bho/language-pack-bho_14.04+20140410_all.deb Size: 1986 MD5sum: a6022211b7c2e472981b0b822e279045 SHA1: 074b86881879b22afe7512567b96410c57d3d186 SHA256: ef8d6c489cd1cc0bcbf88df9ceb075359fedda1c858f962051d1bc8c2402badb Description: translation updates for language Bhojpuri Description-md5: b76784318bb1360201b89ecb1064cb50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bho-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bho (<< 1:14.04+20140410), language-pack-bho-base (<< 1:14.04+20140410), language-pack-gnome-bho (<< 1:14.04+20140410), language-pack-gnome-bho-base (<< 1:14.04+20140410), language-pack-kde-bho (<< 1:14.04+20140410), language-pack-kde-bho-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bho (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-bho (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bho-base/language-pack-bho-base_14.04+20140410_all.deb Size: 2294 MD5sum: a11df987cb69a4684fdfd50dd323b094 SHA1: 4843b0fb8eb99de310fcb3f1a105e6f9fc527ccd SHA256: 002a4c8e9ab3bcc2bd99f3c8affd4d7027bc2535721a065b829c5797eb02a1e1 Description: translations for language Bhojpuri Description-md5: c652118c5f9301f72ad3ffd6c9491ea2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bn (<< 1:14.04+20140410), language-pack-bn-base, language-pack-gnome-bn (<< 1:14.04+20140410), language-pack-gnome-bn-base (<< 1:14.04+20140410), language-pack-kde-bn (<< 1:14.04+20140410), language-pack-kde-bn-base (<< 1:14.04+20140410) Depends: language-pack-bn-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bn/language-pack-bn_14.04+20140410_all.deb Size: 1968 MD5sum: c37a075aed452644cc68de7913852eee SHA1: ce7bc4ca5c1c95e16c0d8c1619bf6a228ddebd1d SHA256: 213ba0dd4273a4be6f1bcf640202666256601958f67b0abd88ce7cab36921e91 Description: translation updates for language Bengali Description-md5: b7438f245e95831586edbc40b4301839 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-bn-base Priority: optional Section: translations Installed-Size: 1451 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bn (<< 1:14.04+20140410), language-pack-bn-base (<< 1:14.04+20140410), language-pack-gnome-bn (<< 1:14.04+20140410), language-pack-gnome-bn-base (<< 1:14.04+20140410), language-pack-kde-bn (<< 1:14.04+20140410), language-pack-kde-bn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-bn Conflicts: language-pack-bn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bn-base/language-pack-bn-base_14.04+20140410_all.deb Size: 326906 MD5sum: 1e33e4ec5fe75b65cb141dffe568fe8e SHA1: 829711e0dfdf4a15743c08554c9b813f618e6d99 SHA256: 44ff05d57db0c4fdf0c3880ae293853ddf3559178c8d717b99ccc836adda82dd Description: translations for language Bengali Description-md5: c39fe7e4cf544b672027c38cc37a29f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-bo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bo (<< 1:14.04+20140410), language-pack-bo-base, language-pack-gnome-bo (<< 1:14.04+20140410), language-pack-gnome-bo-base (<< 1:14.04+20140410), language-pack-kde-bo (<< 1:14.04+20140410), language-pack-kde-bo-base (<< 1:14.04+20140410) Depends: language-pack-bo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bo/language-pack-bo_14.04+20140410_all.deb Size: 1988 MD5sum: e877e62afb7fc09cbe04491e2018337d SHA1: 8adb08afc0c0dab694c27528a2eae2e1313c3ed6 SHA256: 35b66f183f1665d4f98637c6919ed7cb7e3cf7f49cb07d6f8729426a759bda9b Description: translation updates for language Tibetan Description-md5: 081118ec2e7ce3ca2c25ffdd61a80881 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bo-base Priority: optional Section: translations Installed-Size: 185 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bo (<< 1:14.04+20140410), language-pack-bo-base (<< 1:14.04+20140410), language-pack-gnome-bo (<< 1:14.04+20140410), language-pack-gnome-bo-base (<< 1:14.04+20140410), language-pack-kde-bo (<< 1:14.04+20140410), language-pack-kde-bo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-bo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bo-base/language-pack-bo-base_14.04+20140410_all.deb Size: 35466 MD5sum: 3f07e0f7b9838a68aa8d44a3c0bbe94f SHA1: c35d7de1c4aba32ef3c8e7dbb01d4c488b3e827b SHA256: 9ad7270cad1bf4d472581c4bc784aa2734d9282a95928b89693a17d32f3e022b Description: translations for language Tibetan Description-md5: 6eb3e916d13ab024a2cfced5768e5fda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-br Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-br (<< 1:14.04+20140410), language-pack-br-base, language-pack-gnome-br (<< 1:14.04+20140410), language-pack-gnome-br-base (<< 1:14.04+20140410), language-pack-kde-br (<< 1:14.04+20140410), language-pack-kde-br-base (<< 1:14.04+20140410) Depends: language-pack-br-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-br/language-pack-br_14.04+20140410_all.deb Size: 1972 MD5sum: 3cf58d6e4e01310d75c87abd69fa072d SHA1: 3aabba26d0b0b0671c7abc2d312d602cce9a8ce6 SHA256: 9f2c00dd9748b9bc51d682997cc67863e0d65a920566ed8ccb5dab238a4b4818 Description: translation updates for language Breton Description-md5: 9e1867192aa855c7e89f8b4d52aa2d33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-br-base Priority: optional Section: translations Installed-Size: 287 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-br (<< 1:14.04+20140410), language-pack-br-base (<< 1:14.04+20140410), language-pack-gnome-br (<< 1:14.04+20140410), language-pack-gnome-br-base (<< 1:14.04+20140410), language-pack-kde-br (<< 1:14.04+20140410), language-pack-kde-br-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-br (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-br Conflicts: language-pack-br (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-br-base/language-pack-br-base_14.04+20140410_all.deb Size: 80398 MD5sum: 8c890dac145ecb107203c63fec3befe0 SHA1: 6c7764647a708b20db20eae0fd68061f3c642a3a SHA256: e09f368bbf9377bd0e7eda01807848cd04acf2399666404d75a63ca334a376c9 Description: translations for language Breton Description-md5: 98574dcbc6266fe3445df8a302417f44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bs (<< 1:14.04+20140410), language-pack-bs-base, language-pack-gnome-bs (<< 1:14.04+20140410), language-pack-gnome-bs-base (<< 1:14.04+20140410), language-pack-kde-bs (<< 1:14.04+20140410), language-pack-kde-bs-base (<< 1:14.04+20140410) Depends: language-pack-bs-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-bs/language-pack-bs_14.04+20140410_all.deb Size: 1964 MD5sum: 9b76ed39136bf86b722b31ec7d620463 SHA1: 25cea21cf283cdef78b4d37f18b577f8396b19f5 SHA256: bb20a810791687cb0430b4f310c1275818c38a9ec2dd6e2718cfeed9c9419ddf Description: translation updates for language Bosnian Description-md5: f3915a5e2e0641fa35f76f6ca40b33fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-bs-base Priority: optional Section: translations Installed-Size: 12811 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bs (<< 1:14.04+20140410), language-pack-bs-base (<< 1:14.04+20140410), language-pack-gnome-bs (<< 1:14.04+20140410), language-pack-gnome-bs-base (<< 1:14.04+20140410), language-pack-kde-bs (<< 1:14.04+20140410), language-pack-kde-bs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-bs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-bs Conflicts: language-pack-bs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-bs-base/language-pack-bs-base_14.04+20140410_all.deb Size: 4044900 MD5sum: 29fc2bbc66eea2887f9eaec011731866 SHA1: 196bee174f1dd3bc28c06d73bc2b73ae6a0c9dc9 SHA256: 59bd20d44ad4420143fc8083d87cd51f211b2707fe92a472e14bb8610274cdbd Description: translations for language Bosnian Description-md5: 087e28594f1a2191d43d3443e4ca8eea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ca Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ca (<< 1:14.04+20140410), language-pack-ca-base, language-pack-gnome-ca (<< 1:14.04+20140410), language-pack-gnome-ca-base (<< 1:14.04+20140410), language-pack-kde-ca (<< 1:14.04+20140410), language-pack-kde-ca-base (<< 1:14.04+20140410) Depends: language-pack-ca-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ca/language-pack-ca_14.04+20140410_all.deb Size: 1984 MD5sum: d2f736f228faf32174ddfcc00f1c43a1 SHA1: eb87142201964aeceadc1d851880cb15d2c3288e SHA256: e8b5d8e0ef5cc500b9fbed572152fb401971eae906ba683d0711ec296116d19c Description: translation updates for language Catalan; Valencian Description-md5: 9180e20f11f818db00710984b1673248 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ca-base Priority: optional Section: translations Installed-Size: 4903 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ca (<< 1:14.04+20140410), language-pack-ca-base (<< 1:14.04+20140410), language-pack-gnome-ca (<< 1:14.04+20140410), language-pack-gnome-ca-base (<< 1:14.04+20140410), language-pack-kde-ca (<< 1:14.04+20140410), language-pack-kde-ca-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ca (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ca Conflicts: language-pack-ca (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ca-base/language-pack-ca-base_14.04+20140410_all.deb Size: 1519676 MD5sum: c7525e5a44867f555ce2d66a9ce1126a SHA1: 466a10cdc2b275361f41078882c0ae59d1609c4c SHA256: 4fe42f3fe1aaf0ac540d0c31038dfe0402aafa60374d69207a4e25a6df2790ac Description: translations for language Catalan; Valencian Description-md5: e922c99335fe678d232e144046cf228b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-crh Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-crh (<< 1:14.04+20140410), language-pack-crh-base, language-pack-gnome-crh (<< 1:14.04+20140410), language-pack-gnome-crh-base (<< 1:14.04+20140410), language-pack-kde-crh (<< 1:14.04+20140410), language-pack-kde-crh-base (<< 1:14.04+20140410) Depends: language-pack-crh-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-crh/language-pack-crh_14.04+20140410_all.deb Size: 1976 MD5sum: 8cde4ccfa093db1bae242cb5e033d0b5 SHA1: 82a3e9823f45c12b2ccdc8a4a5357a6d8af274fc SHA256: 22462f80bc3a8b68832c5bae1feb6cae3d9be7a10718372f32992fd14c8c0100 Description: translation updates for language Tatar, Crimean Description-md5: 3f01f6112f372d4eff9acacca078b7ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-crh-base Priority: optional Section: translations Installed-Size: 467 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-crh (<< 1:14.04+20140410), language-pack-crh-base (<< 1:14.04+20140410), language-pack-gnome-crh (<< 1:14.04+20140410), language-pack-gnome-crh-base (<< 1:14.04+20140410), language-pack-kde-crh (<< 1:14.04+20140410), language-pack-kde-crh-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-crh (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-crh (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-crh-base/language-pack-crh-base_14.04+20140410_all.deb Size: 157178 MD5sum: 2b9655ab6e58e99fa4ee3be6f9835fb0 SHA1: 9d3ba150f9ab30e546dd1ff627287dd9f43e1bd9 SHA256: 39c46228b4b5734963afb0f747544ebf7c816f195c1fbc6d170e54d3e43c2088 Description: translations for language Tatar, Crimean Description-md5: 53f1d0dfa0f2f89c276040c632cc9c8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-cs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cs (<< 1:14.04+20140410), language-pack-cs-base, language-pack-gnome-cs (<< 1:14.04+20140410), language-pack-gnome-cs-base (<< 1:14.04+20140410), language-pack-kde-cs (<< 1:14.04+20140410), language-pack-kde-cs-base (<< 1:14.04+20140410) Depends: language-pack-cs-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-cs/language-pack-cs_14.04+20140410_all.deb Size: 1976 MD5sum: d9b0a2d0466b774b220fe776e9a35834 SHA1: ab213b4031a40967e0d1cb9a90cd3953c31ae21d SHA256: 17d15350de3a569e1ed46eb76727977552a6fce5208d90891a77ab3d55ad754a Description: translation updates for language Czech Description-md5: c82e1ffc721dc9c65221596ec679a707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-cs-base Priority: optional Section: translations Installed-Size: 5976 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cs (<< 1:14.04+20140410), language-pack-cs-base (<< 1:14.04+20140410), language-pack-gnome-cs (<< 1:14.04+20140410), language-pack-gnome-cs-base (<< 1:14.04+20140410), language-pack-kde-cs (<< 1:14.04+20140410), language-pack-kde-cs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-cs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-cs Conflicts: language-pack-cs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-cs-base/language-pack-cs-base_14.04+20140410_all.deb Size: 1884016 MD5sum: df84904c7881cd62c3eb0e34f4c2f2a7 SHA1: 52ae2479aac6b4c4fb9c9432a920ac2f59ce3a14 SHA256: dc94cba3f102da7c68cfaa8ea3526d1cc9949bce6074aea28b789632e217b61e Description: translations for language Czech Description-md5: 6fec579a922fe521d2e3be90c00aa659 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-csb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-csb (<< 1:14.04+20140410), language-pack-csb-base, language-pack-gnome-csb (<< 1:14.04+20140410), language-pack-gnome-csb-base (<< 1:14.04+20140410), language-pack-kde-csb (<< 1:14.04+20140410), language-pack-kde-csb-base (<< 1:14.04+20140410) Depends: language-pack-csb-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-csb/language-pack-csb_14.04+20140410_all.deb Size: 1994 MD5sum: 7556ec0ae93fab7d691f27214ea80f5a SHA1: a9bf0dbd36851fc2907f5c2b747a3b985018313f SHA256: 7f7777935d823a0d44fc667e02f700515b42799e24d1ef23ef2c6c479ee7d623 Description: translation updates for language Kashubian Description-md5: 01def04713c70bae615f4bb1ed72b8bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-csb-base Priority: optional Section: translations Installed-Size: 107 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-csb (<< 1:14.04+20140410), language-pack-csb-base (<< 1:14.04+20140410), language-pack-gnome-csb (<< 1:14.04+20140410), language-pack-gnome-csb-base (<< 1:14.04+20140410), language-pack-kde-csb (<< 1:14.04+20140410), language-pack-kde-csb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-csb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-csb Conflicts: language-pack-csb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-csb-base/language-pack-csb-base_14.04+20140410_all.deb Size: 21490 MD5sum: b72c395561ba9e4f5106e4f675d25eba SHA1: 107789485e5dca5fc0535db47e7b02190bc490a1 SHA256: b87fa916c2293917de9e21112ad9eb6cb00b3a209d17eb656fe971d40334f14a Description: translations for language Kashubian Description-md5: 3d5c1e7cd98bacd40dccc518887eb916 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-cv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cv (<< 1:14.04+20140410), language-pack-cv-base, language-pack-gnome-cv (<< 1:14.04+20140410), language-pack-gnome-cv-base (<< 1:14.04+20140410), language-pack-kde-cv (<< 1:14.04+20140410), language-pack-kde-cv-base (<< 1:14.04+20140410) Depends: language-pack-cv-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-cv/language-pack-cv_14.04+20140410_all.deb Size: 1984 MD5sum: a93c95dd7e118e6774fba99452234180 SHA1: f1151b4c0ea18d68207d2623990e14060f189ba9 SHA256: 4d61e5870b19cb970070e2a64edd315ef5530779280590d4a036a71463336ca4 Description: translation updates for language Chuvash Description-md5: e1e78a9e6f64733059e7eac58ac2af07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-cv-base Priority: optional Section: translations Installed-Size: 63 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cv (<< 1:14.04+20140410), language-pack-cv-base (<< 1:14.04+20140410), language-pack-gnome-cv (<< 1:14.04+20140410), language-pack-gnome-cv-base (<< 1:14.04+20140410), language-pack-kde-cv (<< 1:14.04+20140410), language-pack-kde-cv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-cv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-cv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-cv-base/language-pack-cv-base_14.04+20140410_all.deb Size: 5918 MD5sum: 5cfd7d04fd65ab12a5dc89081c75ad1d SHA1: 41174761c262e08ca602d6609588206f00f2cb42 SHA256: 54d5c903ed3ba99505f6d15f5506b005bdd1a6e598d6e8b47d1f6cb22d96de19 Description: translations for language Chuvash Description-md5: b00b93e2274d80ece171005f4ab2f6fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-cy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cy (<< 1:14.04+20140410), language-pack-cy-base, language-pack-gnome-cy (<< 1:14.04+20140410), language-pack-gnome-cy-base (<< 1:14.04+20140410), language-pack-kde-cy (<< 1:14.04+20140410), language-pack-kde-cy-base (<< 1:14.04+20140410) Depends: language-pack-cy-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-cy/language-pack-cy_14.04+20140410_all.deb Size: 1976 MD5sum: 97f78cc5439772ebf75d5d4baa10bd81 SHA1: 03ece323090ba61ff463647aea53c2a186cffb3a SHA256: 2dbb95adddedddafc970d1c86267ce696e2aa14074a68b0b353fc8a441a1a7ba Description: translation updates for language Welsh Description-md5: 237a3a7bfbd7baafb5578f26255a48d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-cy-base Priority: optional Section: translations Installed-Size: 172 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cy (<< 1:14.04+20140410), language-pack-cy-base (<< 1:14.04+20140410), language-pack-gnome-cy (<< 1:14.04+20140410), language-pack-gnome-cy-base (<< 1:14.04+20140410), language-pack-kde-cy (<< 1:14.04+20140410), language-pack-kde-cy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-cy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-cy Conflicts: language-pack-cy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-cy-base/language-pack-cy-base_14.04+20140410_all.deb Size: 42580 MD5sum: 3e59ff7eacf11a4b7d07af95fde6de51 SHA1: c06847113c8c1e26fa4e8247189411ad2653a80e SHA256: d00547f6f1c504c1e0f0475cd605a7963384d98fedf899b8e39c0fc8dc01fe63 Description: translations for language Welsh Description-md5: 26fd7802a1ad32b58ee571950199fd6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-da Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-da (<< 1:14.04+20140410), language-pack-da-base, language-pack-gnome-da (<< 1:14.04+20140410), language-pack-gnome-da-base (<< 1:14.04+20140410), language-pack-kde-da (<< 1:14.04+20140410), language-pack-kde-da-base (<< 1:14.04+20140410) Depends: language-pack-da-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-da/language-pack-da_14.04+20140410_all.deb Size: 1980 MD5sum: 55021062ec30db14962532d74b609630 SHA1: 61a057a16ee825e0e612012f6f1aaa4eff221895 SHA256: 9df77e483fd2f831a60938f912892a892738b04cb7e79c42c5a558e1a32c9806 Description: translation updates for language Danish Description-md5: fc5b985c1d9d555ab3e3dfc9c09c087b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-da-base Priority: optional Section: translations Installed-Size: 5117 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-da (<< 1:14.04+20140410), language-pack-da-base (<< 1:14.04+20140410), language-pack-gnome-da (<< 1:14.04+20140410), language-pack-gnome-da-base (<< 1:14.04+20140410), language-pack-kde-da (<< 1:14.04+20140410), language-pack-kde-da-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-da (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-da Conflicts: language-pack-da (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-da-base/language-pack-da-base_14.04+20140410_all.deb Size: 1625550 MD5sum: 701de353512623f2d9f972122ec79023 SHA1: 1fadef7ce72727162468089ae198418010d11f87 SHA256: 3106e30f71d6e86a50bff9e30fd464d33d4437765607830a9914c35634e6fdb3 Description: translations for language Danish Description-md5: 75d3ac723dbbaf2ea917ca16377b26f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-de Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-de (<< 1:14.04+20140410), language-pack-de-base, language-pack-gnome-de (<< 1:14.04+20140410), language-pack-gnome-de-base (<< 1:14.04+20140410), language-pack-kde-de (<< 1:14.04+20140410), language-pack-kde-de-base (<< 1:14.04+20140410) Depends: language-pack-de-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-de/language-pack-de_14.04+20140410_all.deb Size: 1984 MD5sum: 12bf28f4238b99c1aafbe98254475995 SHA1: cf269feefd1ce0d0d1399b67b280eaaf698e0786 SHA256: 211fe7c2ebcbfe88bc02a9cb8fa7c7e24c676c1786a03083cf5b37ab937f91ae Description: translation updates for language German Description-md5: 7e1003aa8b32be447478e2f728aca1c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-de-base Priority: optional Section: translations Installed-Size: 12003 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-de (<< 1:14.04+20140410), language-pack-de-base (<< 1:14.04+20140410), language-pack-gnome-de (<< 1:14.04+20140410), language-pack-gnome-de-base (<< 1:14.04+20140410), language-pack-kde-de (<< 1:14.04+20140410), language-pack-kde-de-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-de (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-de Conflicts: language-pack-de (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-de-base/language-pack-de-base_14.04+20140410_all.deb Size: 3609380 MD5sum: b6e887bb9af8d43119d7ed79bd418fe6 SHA1: a49757622e7a931a68c2ce08f849e72d6ace2caa SHA256: 694fb5af6ada9fdde97616ad208499fdf90550a082d4c186cfdc806fdfdccdbd Description: translations for language German Description-md5: cce71c30c95918c49a4b12ee178005ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-dv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dv (<< 1:14.04+20140410), language-pack-dv-base, language-pack-gnome-dv (<< 1:14.04+20140410), language-pack-gnome-dv-base (<< 1:14.04+20140410), language-pack-kde-dv (<< 1:14.04+20140410), language-pack-kde-dv-base (<< 1:14.04+20140410) Depends: language-pack-dv-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-dv/language-pack-dv_14.04+20140410_all.deb Size: 1998 MD5sum: 57415840b19970058654343fa51689b1 SHA1: 172f0e339fc3bcca5a640b52f9e569e6887d3260 SHA256: 71c8eedc3b41e967550bca3c54a59f99de2688607ccd73264445170200dc9a3c Description: translation updates for language Divehi; Dhivehi; Maldivian Description-md5: 71d2ea52e20184ff8de58b94cf0d7997 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-dv-base Priority: optional Section: translations Installed-Size: 83 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dv (<< 1:14.04+20140410), language-pack-dv-base (<< 1:14.04+20140410), language-pack-gnome-dv (<< 1:14.04+20140410), language-pack-gnome-dv-base (<< 1:14.04+20140410), language-pack-kde-dv (<< 1:14.04+20140410), language-pack-kde-dv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-dv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-dv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-dv-base/language-pack-dv-base_14.04+20140410_all.deb Size: 11836 MD5sum: d898e725caa25f171b725a3f39d2b533 SHA1: 3ba77e7a4a824114937a0f628a9f955e4e0e024f SHA256: 22998ccc8c3494e5b21f6677d6b6824f32b3ce5471c7c718245cbaa7b8cdb11f Description: translations for language Divehi; Dhivehi; Maldivian Description-md5: f147999b910001f79fe5d83a846f7afc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-dz Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dz (<< 1:14.04+20140410), language-pack-dz-base, language-pack-gnome-dz (<< 1:14.04+20140410), language-pack-gnome-dz-base (<< 1:14.04+20140410), language-pack-kde-dz (<< 1:14.04+20140410), language-pack-kde-dz-base (<< 1:14.04+20140410) Depends: language-pack-dz-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-dz/language-pack-dz_14.04+20140410_all.deb Size: 1996 MD5sum: ee5308dea1bbb65bd6d061041cf019e1 SHA1: 8d22d2afcb0bf9704115159835afbf9936de59a6 SHA256: 0e4bdbc599112c553327acabec494cff2bbe41d4908fa43048db3aca8d61124b Description: translation updates for language Dzongkha Description-md5: 08aa62e809ba382e782284536ab109dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-dz-base Priority: optional Section: translations Installed-Size: 783 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dz (<< 1:14.04+20140410), language-pack-dz-base (<< 1:14.04+20140410), language-pack-gnome-dz (<< 1:14.04+20140410), language-pack-gnome-dz-base (<< 1:14.04+20140410), language-pack-kde-dz (<< 1:14.04+20140410), language-pack-kde-dz-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-dz (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-dz (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-dz-base/language-pack-dz-base_14.04+20140410_all.deb Size: 131876 MD5sum: b9b8fb1178119ba524894554730b36a7 SHA1: 38506d07137a1a2de270dd065a09c53034fb1a37 SHA256: c3a2f4b82edab99d54b30709ad614e12a700f88c23ed1a5cc52ddc977cdda6bb Description: translations for language Dzongkha Description-md5: 8ed30f03c05041b4b42814ff34fab38f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-el Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-el (<< 1:14.04+20140410), language-pack-el-base, language-pack-gnome-el (<< 1:14.04+20140410), language-pack-gnome-el-base (<< 1:14.04+20140410), language-pack-kde-el (<< 1:14.04+20140410), language-pack-kde-el-base (<< 1:14.04+20140410) Depends: language-pack-el-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-el/language-pack-el_14.04+20140410_all.deb Size: 1984 MD5sum: ecccc9d159432dd40b9e549a0c2f7c01 SHA1: af7085f0e3fa02fe4fb994ee7f7552bbf06b5ed4 SHA256: bd5c51138220f1e91760d94e908d1e4db42f91409db6e0dfb361a42ae979ea72 Description: translation updates for language Greek, Modern (1453-) Description-md5: bf069b368d39f9c1d8f4eda8c75b5832 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-el-base Priority: optional Section: translations Installed-Size: 3643 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-el (<< 1:14.04+20140410), language-pack-el-base (<< 1:14.04+20140410), language-pack-gnome-el (<< 1:14.04+20140410), language-pack-gnome-el-base (<< 1:14.04+20140410), language-pack-kde-el (<< 1:14.04+20140410), language-pack-kde-el-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-el (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-el Conflicts: language-pack-el (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-el-base/language-pack-el-base_14.04+20140410_all.deb Size: 910270 MD5sum: b7d5287b16cfa4b6184690aa469b6436 SHA1: e2486d7411fbe85e254e97bbc2c2ba20a332384e SHA256: 1f817196555542c8b1715e8a3bacd757d3df899a1e83dfeb1f1e06572aa3cd5b Description: translations for language Greek, Modern (1453-) Description-md5: 801f1f369eb9ebad57eba9a14b69f2cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-en Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-en (<< 1:14.04+20140410), language-pack-en-base, language-pack-gnome-en (<< 1:14.04+20140410), language-pack-gnome-en-base (<< 1:14.04+20140410), language-pack-kde-en (<< 1:14.04+20140410), language-pack-kde-en-base (<< 1:14.04+20140410) Depends: language-pack-en-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-en/language-pack-en_14.04+20140410_all.deb Size: 1986 MD5sum: 1e207eb3fb9b4ef5c98bfe1689a28844 SHA1: 02d955b873d93c71a74afbe9955592f46706af74 SHA256: 1e1224c589c7f581368441fac46c65e2b41ff5c7febafd9f5412ee7a940b2a8d Description: translation updates for language English Description-md5: 1d50dcc1c889caf78b59116d95acb689 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: language-pack-en-base Priority: optional Section: translations Installed-Size: 4076 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-en (<< 1:14.04+20140410), language-pack-en-base (<< 1:14.04+20140410), language-pack-gnome-en (<< 1:14.04+20140410), language-pack-gnome-en-base (<< 1:14.04+20140410), language-pack-kde-en (<< 1:14.04+20140410), language-pack-kde-en-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-en (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-en Conflicts: language-pack-en (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-en-base/language-pack-en-base_14.04+20140410_all.deb Size: 850206 MD5sum: 5827ee01737867ece3602daedf997ed5 SHA1: a96a846473e546dbb62afe07fb571a10dbb3fd0e SHA256: 7900f115662363eedd741a63f652a2af4fd61a18883ea0b10ca546cafd355cb8 Description: translations for language English Description-md5: 4d50ec3e150f74689e2c54919b300631 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-dvd-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: language-pack-eo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eo (<< 1:14.04+20140410), language-pack-eo-base, language-pack-gnome-eo (<< 1:14.04+20140410), language-pack-gnome-eo-base (<< 1:14.04+20140410), language-pack-kde-eo (<< 1:14.04+20140410), language-pack-kde-eo-base (<< 1:14.04+20140410) Depends: language-pack-eo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-eo/language-pack-eo_14.04+20140410_all.deb Size: 1992 MD5sum: aef4d50cbe54ea79daea57b76d96c7a7 SHA1: 621f30fb20c561c662d523227b47fa85aabe9cc0 SHA256: 7eaf3cc4e3dfec6ca68d84b1c3f456ebf88be23af98f3eb4ed1a82e7d9faac61 Description: translation updates for language Esperanto Description-md5: 4d612644e4af68b4fad26a544958714b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-eo-base Priority: optional Section: translations Installed-Size: 2391 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eo (<< 1:14.04+20140410), language-pack-eo-base (<< 1:14.04+20140410), language-pack-gnome-eo (<< 1:14.04+20140410), language-pack-gnome-eo-base (<< 1:14.04+20140410), language-pack-kde-eo (<< 1:14.04+20140410), language-pack-kde-eo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-eo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-eo Conflicts: language-pack-eo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-eo-base/language-pack-eo-base_14.04+20140410_all.deb Size: 741754 MD5sum: 6d1faae22a71a7f5ecc1899a36e20d4a SHA1: c5d1e7af76de7ebd408106d832227c53b51c7524 SHA256: 0b62da972c23e1753ddfc8a1028077f149f3cf2dd99540e0d1409ace919aae0f Description: translations for language Esperanto Description-md5: 7131d1d335bbae33aa87fd61ebb8728e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-es Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-es (<< 1:14.04+20140410), language-pack-es-base, language-pack-gnome-es (<< 1:14.04+20140410), language-pack-gnome-es-base (<< 1:14.04+20140410), language-pack-kde-es (<< 1:14.04+20140410), language-pack-kde-es-base (<< 1:14.04+20140410) Depends: language-pack-es-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-es/language-pack-es_14.04+20140410_all.deb Size: 1988 MD5sum: 506a6800ce142cd4857a281db60c11c5 SHA1: 2150db93c7eb4f6163405a57248298dc6b1155d4 SHA256: 66c91341f32f7da23c70d8008ccc3f979ee069578e721545ac750ff8206664c3 Description: translation updates for language Spanish; Castilian Description-md5: 7a373fb17da933b78cbebcb492badd03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-es-base Priority: optional Section: translations Installed-Size: 13321 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-es (<< 1:14.04+20140410), language-pack-es-base (<< 1:14.04+20140410), language-pack-gnome-es (<< 1:14.04+20140410), language-pack-gnome-es-base (<< 1:14.04+20140410), language-pack-kde-es (<< 1:14.04+20140410), language-pack-kde-es-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-es (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-es Conflicts: language-pack-es (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-es-base/language-pack-es-base_14.04+20140410_all.deb Size: 3980786 MD5sum: 8b0761c924ee21e3f530d88df60276ca SHA1: 1470576e21d8e515ad13b6c8bd75bd447053292a SHA256: 42fb41465ebba9b8299225793071c5b214ce5aa0cb86ce9d37ff60c8fc5ace3c Description: translations for language Spanish; Castilian Description-md5: 1d6b26e2e1f0d7a530581fe3843d3540 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-et Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-et (<< 1:14.04+20140410), language-pack-et-base, language-pack-gnome-et (<< 1:14.04+20140410), language-pack-gnome-et-base (<< 1:14.04+20140410), language-pack-kde-et (<< 1:14.04+20140410), language-pack-kde-et-base (<< 1:14.04+20140410) Depends: language-pack-et-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-et/language-pack-et_14.04+20140410_all.deb Size: 1964 MD5sum: bb763a0ec0104e6070938f0a1cfc0859 SHA1: 71398a0179ec808546623f147a5c4edd88df5040 SHA256: f3394326fb5970f80513606e78417bc3a324d0c6d34f22fcb834a0f860586168 Description: translation updates for language Estonian Description-md5: 22b7da0baed9516fb9ce2d51cca0c41d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-et-base Priority: optional Section: translations Installed-Size: 2173 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-et (<< 1:14.04+20140410), language-pack-et-base (<< 1:14.04+20140410), language-pack-gnome-et (<< 1:14.04+20140410), language-pack-gnome-et-base (<< 1:14.04+20140410), language-pack-kde-et (<< 1:14.04+20140410), language-pack-kde-et-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-et (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-et Conflicts: language-pack-et (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-et-base/language-pack-et-base_14.04+20140410_all.deb Size: 678978 MD5sum: 281e95ec7cb5256e79126032bb28da54 SHA1: 1e3ffe78e4fbaab938fcaad8590e9c8dc676699d SHA256: aa772657e36dab494e73ca4141a218989fdd4a840e01db9cd6be731295a4f47a Description: translations for language Estonian Description-md5: d0009203f1fe500fb705a3840c1478f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-eu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eu (<< 1:14.04+20140410), language-pack-eu-base, language-pack-gnome-eu (<< 1:14.04+20140410), language-pack-gnome-eu-base (<< 1:14.04+20140410), language-pack-kde-eu (<< 1:14.04+20140410), language-pack-kde-eu-base (<< 1:14.04+20140410) Depends: language-pack-eu-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-eu/language-pack-eu_14.04+20140410_all.deb Size: 1974 MD5sum: f7209d38c7d7f4e8a2ed5d8b02f74b22 SHA1: ab9114e2d628d5f6bca3f4aa8b0d56a46148e0f8 SHA256: ff8f978fa9890995142bca7994e5b5c45d8119ef4349dddeccd1419d70a2d0ae Description: translation updates for language Basque Description-md5: 3df38419401806ba95f38ddb438ac3c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-eu-base Priority: optional Section: translations Installed-Size: 1839 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eu (<< 1:14.04+20140410), language-pack-eu-base (<< 1:14.04+20140410), language-pack-gnome-eu (<< 1:14.04+20140410), language-pack-gnome-eu-base (<< 1:14.04+20140410), language-pack-kde-eu (<< 1:14.04+20140410), language-pack-kde-eu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-eu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-eu Conflicts: language-pack-eu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-eu-base/language-pack-eu-base_14.04+20140410_all.deb Size: 565746 MD5sum: 9b430c7e5c0416e2f4a5eaababa93d36 SHA1: 76ecb6f647ba69f37551b82908ba17e62098722b SHA256: 8dc484e4cba41da33767375e2a13726c34ee955df4b66cb8e01ca8deacd31fb8 Description: translations for language Basque Description-md5: f66eef54282ee6ff8369aaacfffec24c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fa (<< 1:14.04+20140410), language-pack-fa-base, language-pack-gnome-fa (<< 1:14.04+20140410), language-pack-gnome-fa-base (<< 1:14.04+20140410), language-pack-kde-fa (<< 1:14.04+20140410), language-pack-kde-fa-base (<< 1:14.04+20140410) Depends: language-pack-fa-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fa/language-pack-fa_14.04+20140410_all.deb Size: 1970 MD5sum: 21c6bdc8b4d0cb4df50a6d6cb9a720bd SHA1: 1eb3be6f973b39f2d9d349aa59d276c8f12adbde SHA256: 40d154556f85d3c0081c5093820fd2e59ea21e8978edde152245ddf2221434f9 Description: translation updates for language Persian Description-md5: 12c78e97a2b9b2415cb66832cf0d8e0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fa-base Priority: optional Section: translations Installed-Size: 458 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fa (<< 1:14.04+20140410), language-pack-fa-base (<< 1:14.04+20140410), language-pack-gnome-fa (<< 1:14.04+20140410), language-pack-gnome-fa-base (<< 1:14.04+20140410), language-pack-kde-fa (<< 1:14.04+20140410), language-pack-kde-fa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-fa Conflicts: language-pack-fa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fa-base/language-pack-fa-base_14.04+20140410_all.deb Size: 115980 MD5sum: 34c0dc0bfccd41bc1527264982d71685 SHA1: 381d3c7b9215fb46d80360cf7cdf2ac2c45e3a4d SHA256: cfe785c83222f24fc9bf6d28c52d92153858ab39658db4603b91dedc77a6f7df Description: translations for language Persian Description-md5: 3d60abe7c26b4c5c64b88c3e5626cb74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ff Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ff (<< 1:14.04+20140410), language-pack-ff-base, language-pack-gnome-ff (<< 1:14.04+20140410), language-pack-gnome-ff-base (<< 1:14.04+20140410), language-pack-kde-ff (<< 1:14.04+20140410), language-pack-kde-ff-base (<< 1:14.04+20140410) Depends: language-pack-ff-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ff/language-pack-ff_14.04+20140410_all.deb Size: 1970 MD5sum: 8124b54c24f1c7e5fde58d792ea83380 SHA1: 31d1117653d772dbe7b043fa0a8cce3f88e3da0b SHA256: a429d64b4fb62d029e7b1c2d4f20e156acb35719b1cc5db8232298d1442ec208 Description: translation updates for language Fulah Description-md5: 4088f5e7c8292dc2fb07a9e80f92cefa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ff-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ff (<< 1:14.04+20140410), language-pack-ff-base (<< 1:14.04+20140410), language-pack-gnome-ff (<< 1:14.04+20140410), language-pack-gnome-ff-base (<< 1:14.04+20140410), language-pack-kde-ff (<< 1:14.04+20140410), language-pack-kde-ff-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ff (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ff (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ff-base/language-pack-ff-base_14.04+20140410_all.deb Size: 2312 MD5sum: 2ab05e2ada113e7a6635688e7a365e4d SHA1: 7d50d63f5d8d03c15313ab091961f1d7ea99c74e SHA256: 76eb0e582c458c8bcb371eaeea1390dc740164d4e5c2ac9f72e795657d070c33 Description: translations for language Fulah Description-md5: 856b3bf5e55a85f2407bfeb0135a39db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fi (<< 1:14.04+20140410), language-pack-fi-base, language-pack-gnome-fi (<< 1:14.04+20140410), language-pack-gnome-fi-base (<< 1:14.04+20140410), language-pack-kde-fi (<< 1:14.04+20140410), language-pack-kde-fi-base (<< 1:14.04+20140410) Depends: language-pack-fi-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fi/language-pack-fi_14.04+20140410_all.deb Size: 1970 MD5sum: d83625f84af8c0fdc152b26f43a88069 SHA1: 04d4467c5bcbc11aecc978ee51fcd60c5793ec38 SHA256: 54346e2c9912e61a6e22aa680e5a4d94894601b92b36d458227f6c4d6d47b195 Description: translation updates for language Finnish Description-md5: 5a3181df23020923606c71d3f11f2400 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fi-base Priority: optional Section: translations Installed-Size: 4853 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fi (<< 1:14.04+20140410), language-pack-fi-base (<< 1:14.04+20140410), language-pack-gnome-fi (<< 1:14.04+20140410), language-pack-gnome-fi-base (<< 1:14.04+20140410), language-pack-kde-fi (<< 1:14.04+20140410), language-pack-kde-fi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-fi Conflicts: language-pack-fi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fi-base/language-pack-fi-base_14.04+20140410_all.deb Size: 1514044 MD5sum: 51cc81cbd0d6341b47b30aa8f705b307 SHA1: 536cfc9e3f8595b80bcd313e22657b224079de3a SHA256: 16101d4e8ffe7090c0e5b6f8c78ade7b40a197984fd6d4a8583c81645d6545b8 Description: translations for language Finnish Description-md5: 69649dcd35128b8bab70b6a7c3423916 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fil Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fil (<< 1:14.04+20140410), language-pack-fil-base, language-pack-gnome-fil (<< 1:14.04+20140410), language-pack-gnome-fil-base (<< 1:14.04+20140410), language-pack-kde-fil (<< 1:14.04+20140410), language-pack-kde-fil-base (<< 1:14.04+20140410) Depends: language-pack-fil-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fil/language-pack-fil_14.04+20140410_all.deb Size: 1978 MD5sum: 1255f12ca3da4871be0b3b7546545522 SHA1: 5d8103813909840ecece7d8c7795e835bd444f10 SHA256: 94d0b6dba7f285d039534ba3c136c85abf2a8c348a328cf5d340fa7df09e6041 Description: translation updates for language Filipino Description-md5: f351fef4cc881a3c795e754e98cd3d97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fil-base Priority: optional Section: translations Installed-Size: 76 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fil (<< 1:14.04+20140410), language-pack-fil-base (<< 1:14.04+20140410), language-pack-gnome-fil (<< 1:14.04+20140410), language-pack-gnome-fil-base (<< 1:14.04+20140410), language-pack-kde-fil (<< 1:14.04+20140410), language-pack-kde-fil-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fil (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-fil (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fil-base/language-pack-fil-base_14.04+20140410_all.deb Size: 10698 MD5sum: 0111adaea14dc39d2b009d27fbeb99d9 SHA1: 0c8f7b4dfe51a23f941d0843769627b38d6be94c SHA256: ce3602fb45951742de2e4c0d1c72080563afc23980f4569a3815023c5b8b957b Description: translations for language Filipino Description-md5: 11a581c578643aa3cd64817e9b25f163 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fo (<< 1:14.04+20140410), language-pack-fo-base, language-pack-gnome-fo (<< 1:14.04+20140410), language-pack-gnome-fo-base (<< 1:14.04+20140410), language-pack-kde-fo (<< 1:14.04+20140410), language-pack-kde-fo-base (<< 1:14.04+20140410) Depends: language-pack-fo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fo/language-pack-fo_14.04+20140410_all.deb Size: 1982 MD5sum: 1c23f355ac6b2576b2e4d4cb34d1b062 SHA1: e63373829a008d68fc8210d258f77c453c25bfdd SHA256: fde98bef021ecc97a8ff3b1bcd05a442922b8cbab279fe62bfb976df6a5258e2 Description: translation updates for language Faroese Description-md5: ed9ea590d69244c2bdedfc4a4a41c2bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fo-base Priority: optional Section: translations Installed-Size: 136 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fo (<< 1:14.04+20140410), language-pack-fo-base (<< 1:14.04+20140410), language-pack-gnome-fo (<< 1:14.04+20140410), language-pack-gnome-fo-base (<< 1:14.04+20140410), language-pack-kde-fo (<< 1:14.04+20140410), language-pack-kde-fo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-fo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fo-base/language-pack-fo-base_14.04+20140410_all.deb Size: 32596 MD5sum: a614034d516a0c3a07c9f94bf4fab284 SHA1: c1515e1b30e4d62a85ceb1c9d54995e0518a421a SHA256: 53ce9ad5514dfc8f7e5fd675a932a472f096e0ea34962f47d9051e8ee950d44e Description: translations for language Faroese Description-md5: f95c425be0233b99f4a92c980e944570 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fr (<< 1:14.04+20140410), language-pack-fr-base, language-pack-gnome-fr (<< 1:14.04+20140410), language-pack-gnome-fr-base (<< 1:14.04+20140410), language-pack-kde-fr (<< 1:14.04+20140410), language-pack-kde-fr-base (<< 1:14.04+20140410) Depends: language-pack-fr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fr/language-pack-fr_14.04+20140410_all.deb Size: 1960 MD5sum: fad75b022da1ac744eec389bde0c6011 SHA1: b2068218d723ba56c90271e2d1730ed9b73ae7d1 SHA256: 560728505f1b683e89a741bf58b6b25ecea0a0650715726be7fd5b9a3b0026be Description: translation updates for language French Description-md5: 309dd7e54102d66deb2a59a73577d65d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-fr-base Priority: optional Section: translations Installed-Size: 10192 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fr (<< 1:14.04+20140410), language-pack-fr-base (<< 1:14.04+20140410), language-pack-gnome-fr (<< 1:14.04+20140410), language-pack-gnome-fr-base (<< 1:14.04+20140410), language-pack-kde-fr (<< 1:14.04+20140410), language-pack-kde-fr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-fr Conflicts: language-pack-fr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fr-base/language-pack-fr-base_14.04+20140410_all.deb Size: 3039260 MD5sum: bed4c4765ca1491f1ff09aca3bc1a71b SHA1: 51d9034dfd731eb853d3621fd388896d4651bea3 SHA256: 8d27a3b8f7293d288349aa1a6a8082bcb984de46dd12bd9e87a6f879d865b596 Description: translations for language French Description-md5: 9b0508a6b9e7b451bcdb734707b962a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-fur Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fur (<< 1:14.04+20140410), language-pack-fur-base, language-pack-gnome-fur (<< 1:14.04+20140410), language-pack-gnome-fur-base (<< 1:14.04+20140410), language-pack-kde-fur (<< 1:14.04+20140410), language-pack-kde-fur-base (<< 1:14.04+20140410) Depends: language-pack-fur-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fur/language-pack-fur_14.04+20140410_all.deb Size: 1968 MD5sum: 767624cceee37f8dc1fc32c5ce4ec7c4 SHA1: f1426527bd6f96a6312f239db985a7c230b20674 SHA256: cd959ad3025e47e86299e7744181478ba4d57be2d0c11dff712dcb8156a471fc Description: translation updates for language Friulian Description-md5: db72674d838c425e7a6eca326e7ab2a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fur-base Priority: optional Section: translations Installed-Size: 76 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fur (<< 1:14.04+20140410), language-pack-fur-base (<< 1:14.04+20140410), language-pack-gnome-fur (<< 1:14.04+20140410), language-pack-gnome-fur-base (<< 1:14.04+20140410), language-pack-kde-fur (<< 1:14.04+20140410), language-pack-kde-fur-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fur (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-fur (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fur-base/language-pack-fur-base_14.04+20140410_all.deb Size: 11104 MD5sum: 091431b046fae976d6f22d77bce3aeeb SHA1: 51d107b000206ee216530bf5734288c5df0e9d7c SHA256: ed9637374fcca7471487197c42799d034d7ad152f6d0c3543ece85d0e8f8b08e Description: translations for language Friulian Description-md5: 06f57bdef39db5007711fe13347d5e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fy (<< 1:14.04+20140410), language-pack-fy-base, language-pack-gnome-fy (<< 1:14.04+20140410), language-pack-gnome-fy-base (<< 1:14.04+20140410), language-pack-kde-fy (<< 1:14.04+20140410), language-pack-kde-fy-base (<< 1:14.04+20140410) Depends: language-pack-fy-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-fy/language-pack-fy_14.04+20140410_all.deb Size: 1956 MD5sum: 5a2206cb1050578ab2242f574eb27a97 SHA1: f250841b11afb62fdf96befbab60f7b0781de081 SHA256: 20fb2e4bdae7312abca72696a31fb445cd3bb34c05cfdeaa576bf3af3786d45e Description: translation updates for language Western Frisian Description-md5: ccd4d4bb6f4681f06e04c2b8577e1a6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-fy-base Priority: optional Section: translations Installed-Size: 84 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fy (<< 1:14.04+20140410), language-pack-fy-base (<< 1:14.04+20140410), language-pack-gnome-fy (<< 1:14.04+20140410), language-pack-gnome-fy-base (<< 1:14.04+20140410), language-pack-kde-fy (<< 1:14.04+20140410), language-pack-kde-fy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-fy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-fy Conflicts: language-pack-fy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-fy-base/language-pack-fy-base_14.04+20140410_all.deb Size: 13036 MD5sum: 9a4e8e206bf9678a1be69c8fc32c81bf SHA1: 4117ce0f6b8197d19a3a605e6356adb88cad86d0 SHA256: cf890b7d2f1ecea20ca19613270ae15ae83f66a802aa3e07adbb1575683c0ac4 Description: translations for language Western Frisian Description-md5: e16544cbb4c091363255a6ee09033e4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ga Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ga (<< 1:14.04+20140410), language-pack-ga-base, language-pack-gnome-ga (<< 1:14.04+20140410), language-pack-gnome-ga-base (<< 1:14.04+20140410), language-pack-kde-ga (<< 1:14.04+20140410), language-pack-kde-ga-base (<< 1:14.04+20140410) Depends: language-pack-ga-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ga/language-pack-ga_14.04+20140410_all.deb Size: 1978 MD5sum: e46e82eebae2084b6da5691b3b704dba SHA1: 5eb210a50103808ef911d33e7c69d520646bb676 SHA256: 0ca48030adf0858239f01277ae66abc9956ca83b90edda4e864a23f1161429c7 Description: translation updates for language Irish Description-md5: afb72cd0308b4388a5de1d5376d8f710 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ga-base Priority: optional Section: translations Installed-Size: 1238 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ga (<< 1:14.04+20140410), language-pack-ga-base (<< 1:14.04+20140410), language-pack-gnome-ga (<< 1:14.04+20140410), language-pack-gnome-ga-base (<< 1:14.04+20140410), language-pack-kde-ga (<< 1:14.04+20140410), language-pack-kde-ga-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ga (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ga Conflicts: language-pack-ga (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ga-base/language-pack-ga-base_14.04+20140410_all.deb Size: 372930 MD5sum: 2baa825f2ba0b08ba5638d195c2f8e4a SHA1: d45f79b10523694b6377016bdb024590d45319a3 SHA256: 267baa60efda3f52b75d25765e3a8e510966fa474f81d3d0fe9b3b5d3f7a8880 Description: translations for language Irish Description-md5: dad2ef2f3b51f47660a1325ecb6e8444 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gd Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gd (<< 1:14.04+20140410), language-pack-gd-base, language-pack-gnome-gd (<< 1:14.04+20140410), language-pack-gnome-gd-base (<< 1:14.04+20140410), language-pack-kde-gd (<< 1:14.04+20140410), language-pack-kde-gd-base (<< 1:14.04+20140410) Depends: language-pack-gd-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gd/language-pack-gd_14.04+20140410_all.deb Size: 1968 MD5sum: 8fb589b10d12d1adba38e71040bd2ca2 SHA1: a97755a73401670d6a41172aad89a9a2b163ea8a SHA256: 5614efa0e69dea8b96e69ef97a99ab2f15b82cead24a70f386995989917df603 Description: translation updates for language Gaelic; Scottish Gaelic Description-md5: 0a78a0b775ced525d1b02c4dbd4bd246 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gd-base Priority: optional Section: translations Installed-Size: 556 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gd (<< 1:14.04+20140410), language-pack-gd-base (<< 1:14.04+20140410), language-pack-gnome-gd (<< 1:14.04+20140410), language-pack-gnome-gd-base (<< 1:14.04+20140410), language-pack-kde-gd (<< 1:14.04+20140410), language-pack-kde-gd-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gd (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-gd Conflicts: language-pack-gd (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gd-base/language-pack-gd-base_14.04+20140410_all.deb Size: 162860 MD5sum: d205b75b68cca093dcd7baf269f52a7c SHA1: 9f7229e0ad651f19d08f7d53a714092f28ec5900 SHA256: f2ba3f71e17c9d1efdfcc113b0e46841a20b8efb4e8490bbf18a60ffa5812403 Description: translations for language Gaelic; Scottish Gaelic Description-md5: c5dcf19f2ce8a70ee10441e51b9c9f4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gl (<< 1:14.04+20140410), language-pack-gl-base, language-pack-gnome-gl (<< 1:14.04+20140410), language-pack-gnome-gl-base (<< 1:14.04+20140410), language-pack-kde-gl (<< 1:14.04+20140410), language-pack-kde-gl-base (<< 1:14.04+20140410) Depends: language-pack-gl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gl/language-pack-gl_14.04+20140410_all.deb Size: 1986 MD5sum: e4714c04ab968e4def5a0962e77e32f5 SHA1: 1b825f065b0923e8737c3fa3f3d3bab40df38baf SHA256: 540d3780e8d02c964b40dff80b5eb0d6af72728e16dc16a3ba4f7a9de9b7cf5b Description: translation updates for language Galician Description-md5: 401e02a1f6e5b0070cbf6816eb820b99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gl-base Priority: optional Section: translations Installed-Size: 4774 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gl (<< 1:14.04+20140410), language-pack-gl-base (<< 1:14.04+20140410), language-pack-gnome-gl (<< 1:14.04+20140410), language-pack-gnome-gl-base (<< 1:14.04+20140410), language-pack-kde-gl (<< 1:14.04+20140410), language-pack-kde-gl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-gl Conflicts: language-pack-gl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gl-base/language-pack-gl-base_14.04+20140410_all.deb Size: 1473876 MD5sum: a4b5cde97d0984007d33e7515c2e6269 SHA1: 8f18d1ac58c55bea3ada7ff83e0cce60a7e965de SHA256: df23791f1d8b8f4c0e7057fc29cfc74a4548a55f1c5c0d39daca4dc555477e9e Description: translations for language Galician Description-md5: fdc37bc5f999ce7b299370b71557d91b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-aa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-aa (<< 1:14.04+20140410), language-pack-aa-base (<< 1:14.04+20140410), language-pack-gnome-aa (<< 1:14.04+20140410), language-pack-gnome-aa-base, language-pack-kde-aa (<< 1:14.04+20140410), language-pack-kde-aa-base (<< 1:14.04+20140410) Depends: language-pack-gnome-aa-base (>= 1:14.04+20140410), language-pack-aa Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-aa/language-pack-gnome-aa_14.04+20140410_all.deb Size: 2010 MD5sum: d37b0cae33901fd0791527275b43708c SHA1: 3193b17e95cd34fb0363549c0974a07c28487341 SHA256: 964d3916774aeb2f7bd2145e6e497d4d54a30891fee9a6cda768710eb9b444d1 Description: GNOME translation updates for language Afar Description-md5: 465ba2a19defd5c25ad711d044ce9ed7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-aa-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-aa (<< 1:14.04+20140410), language-pack-aa-base (<< 1:14.04+20140410), language-pack-gnome-aa (<< 1:14.04+20140410), language-pack-gnome-aa-base (<< 1:14.04+20140410), language-pack-kde-aa (<< 1:14.04+20140410), language-pack-kde-aa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-aa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-aa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-aa-base/language-pack-gnome-aa-base_14.04+20140410_all.deb Size: 5732 MD5sum: f6001c19d544e9d0bfcf1aa29b77ab50 SHA1: 2aefeb030c5deaf7b13e094eb6325e59d0ad6b5d SHA256: 1586831472350264b6df21dc23652e601565f7cb0bbc070d9603286d8a84e248 Description: GNOME translations for language Afar Description-md5: 59b0ce1007716d7295d7798f28946bd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-af Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-af (<< 1:14.04+20140410), language-pack-af-base (<< 1:14.04+20140410), language-pack-gnome-af (<< 1:14.04+20140410), language-pack-gnome-af-base, language-pack-kde-af (<< 1:14.04+20140410), language-pack-kde-af-base (<< 1:14.04+20140410) Depends: language-pack-gnome-af-base (>= 1:14.04+20140410), language-pack-af Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-af/language-pack-gnome-af_14.04+20140410_all.deb Size: 2010 MD5sum: 2a5992ba9a353b4e1c168a33f4b5a7af SHA1: 833340c5ed51a2b0a44342b9d7970af4dc861879 SHA256: b0690487192ba99c1805842b1742749a269fe3d4c20bb94013e49895da947eea Description: GNOME translation updates for language Afrikaans Description-md5: 03f00246cba45c8f55d1443f8e7dc385 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-af-base Priority: optional Section: translations Installed-Size: 1631 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-af (<< 1:14.04+20140410), language-pack-af-base (<< 1:14.04+20140410), language-pack-gnome-af (<< 1:14.04+20140410), language-pack-gnome-af-base (<< 1:14.04+20140410), language-pack-kde-af (<< 1:14.04+20140410), language-pack-kde-af-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-af (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-af (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-af-base/language-pack-gnome-af-base_14.04+20140410_all.deb Size: 517356 MD5sum: ee6bdc296e4973f7a3fe676d24ea9832 SHA1: 74f4403abf8daf812acc43966ab137f65469deb8 SHA256: 4d76919305d47943a0f6f876fb41dce11864a05814b22b624ecd722f1d0ff05f Description: GNOME translations for language Afrikaans Description-md5: 8e716c92217a4d1abc824304e2590795 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-am Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-am (<< 1:14.04+20140410), language-pack-am-base (<< 1:14.04+20140410), language-pack-gnome-am (<< 1:14.04+20140410), language-pack-gnome-am-base, language-pack-kde-am (<< 1:14.04+20140410), language-pack-kde-am-base (<< 1:14.04+20140410) Depends: language-pack-gnome-am-base (>= 1:14.04+20140410), language-pack-am Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-am/language-pack-gnome-am_14.04+20140410_all.deb Size: 2002 MD5sum: b005717c54f546df013b7fb0f8e8a29b SHA1: 34bf85b09d6f4827e2b964d6ed474d9a87953ff9 SHA256: 020d4115da5c8de9dc03314a3d90a2cadc503f531e7eb2bb45588b74ede11287 Description: GNOME translation updates for language Amharic Description-md5: 6a0f6906d5e65f8d586a550508d05fb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-am-base Priority: optional Section: translations Installed-Size: 1133 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-am (<< 1:14.04+20140410), language-pack-am-base (<< 1:14.04+20140410), language-pack-gnome-am (<< 1:14.04+20140410), language-pack-gnome-am-base (<< 1:14.04+20140410), language-pack-kde-am (<< 1:14.04+20140410), language-pack-kde-am-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-am (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-am (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-am-base/language-pack-gnome-am-base_14.04+20140410_all.deb Size: 242118 MD5sum: 1f99ca330a47e28cba438a1adc184402 SHA1: 637b2d25a3b32dd636facec1948bb857252a1689 SHA256: 2f730fd17a5047439bbfc81b7467c851f08c5414661c8e9c686da9b1e077b2f2 Description: GNOME translations for language Amharic Description-md5: fc178baa34307057585db99c60f5ae4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-an Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-an (<< 1:14.04+20140410), language-pack-an-base (<< 1:14.04+20140410), language-pack-gnome-an (<< 1:14.04+20140410), language-pack-gnome-an-base, language-pack-kde-an (<< 1:14.04+20140410), language-pack-kde-an-base (<< 1:14.04+20140410) Depends: language-pack-gnome-an-base (>= 1:14.04+20140410), language-pack-an Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-an/language-pack-gnome-an_14.04+20140410_all.deb Size: 1994 MD5sum: ae8ef8369a69d8d5a86292110f23bd60 SHA1: 8f399245ccd1c4072760c74e9db4cb333ddedbbf SHA256: 55b3464207632622bbbdcd194642dd63cf7ebef914ecfacc33f1516f296750b0 Description: GNOME translation updates for language Aragonese Description-md5: 0aac3e51000a31708c6f4462b77eafbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-an-base Priority: optional Section: translations Installed-Size: 815 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-an (<< 1:14.04+20140410), language-pack-an-base (<< 1:14.04+20140410), language-pack-gnome-an (<< 1:14.04+20140410), language-pack-gnome-an-base (<< 1:14.04+20140410), language-pack-kde-an (<< 1:14.04+20140410), language-pack-kde-an-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-an (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-an (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-an-base/language-pack-gnome-an-base_14.04+20140410_all.deb Size: 237992 MD5sum: 316b936a678fc54d49943dfcbc55c494 SHA1: f8bdfd2c2e30f76ffc29c0be9bd867fdfc50061e SHA256: ba705bf4338abda11f3be09138a24050180031d5cea1d96038f9cc1b832a0546 Description: GNOME translations for language Aragonese Description-md5: 4cc2b9efba21b7cd1d341f2b6448d179 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ar Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ar (<< 1:14.04+20140410), language-pack-ar-base (<< 1:14.04+20140410), language-pack-gnome-ar (<< 1:14.04+20140410), language-pack-gnome-ar-base, language-pack-kde-ar (<< 1:14.04+20140410), language-pack-kde-ar-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ar-base (>= 1:14.04+20140410), language-pack-ar Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ar/language-pack-gnome-ar_14.04+20140410_all.deb Size: 2022 MD5sum: 276bacb46f1deab2c1a22b3823a50383 SHA1: 9899baa4c28228709733084644ebd374816d656d SHA256: ccf8ac8db992a72fa3a4dc0bf17bd01b6e2bb74a533e2770e7768d9746778ec6 Description: GNOME translation updates for language Arabic Description-md5: 0f6f92054b1a7dc34e76963baffa4d89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ar-base Priority: optional Section: translations Installed-Size: 5591 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ar (<< 1:14.04+20140410), language-pack-ar-base (<< 1:14.04+20140410), language-pack-gnome-ar (<< 1:14.04+20140410), language-pack-gnome-ar-base (<< 1:14.04+20140410), language-pack-kde-ar (<< 1:14.04+20140410), language-pack-kde-ar-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ar (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ar (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ar-base/language-pack-gnome-ar-base_14.04+20140410_all.deb Size: 1485736 MD5sum: 1673fc2c648035395077629c56679b67 SHA1: f2833e8d93fae6e84a27d4bfe2cf37e9a6d093fd SHA256: 9e64eaddc38f6ab186ad4db3d1c66c46ccf17a79bde3712d062e9b5a257c805d Description: GNOME translations for language Arabic Description-md5: 6b409ad3ecfa0957ec92465c34b220a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-as Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-as (<< 1:14.04+20140410), language-pack-as-base (<< 1:14.04+20140410), language-pack-gnome-as (<< 1:14.04+20140410), language-pack-gnome-as-base, language-pack-kde-as (<< 1:14.04+20140410), language-pack-kde-as-base (<< 1:14.04+20140410) Depends: language-pack-gnome-as-base (>= 1:14.04+20140410), language-pack-as Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-as/language-pack-gnome-as_14.04+20140410_all.deb Size: 2016 MD5sum: 6fddfe2af75423a0ee133f9627cc4e7a SHA1: 9cc65047c769f3e636cb4da777f714fc62369576 SHA256: 06acfc86296bcf53923a008540efa3d141a997ac280c6490b49ff5760a700c68 Description: GNOME translation updates for language Assamese Description-md5: 44e6111f833f0bca06a9339dc76a1fa4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-as-base Priority: optional Section: translations Installed-Size: 4565 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-as (<< 1:14.04+20140410), language-pack-as-base (<< 1:14.04+20140410), language-pack-gnome-as (<< 1:14.04+20140410), language-pack-gnome-as-base (<< 1:14.04+20140410), language-pack-kde-as (<< 1:14.04+20140410), language-pack-kde-as-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-as (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-as (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-as-base/language-pack-gnome-as-base_14.04+20140410_all.deb Size: 993878 MD5sum: b51b657db25db8b472b46dc7a8f7888c SHA1: a112fcaf665f762f6bed60cb4deaef72e102c621 SHA256: 0b5697125bba49580fc09060a5553f67b8e383a372664f413a25328457b0039e Description: GNOME translations for language Assamese Description-md5: 9e5b46ee392770c61be053e586db1d1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ast Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ast (<< 1:14.04+20140410), language-pack-ast-base (<< 1:14.04+20140410), language-pack-gnome-ast (<< 1:14.04+20140410), language-pack-gnome-ast-base, language-pack-kde-ast (<< 1:14.04+20140410), language-pack-kde-ast-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ast-base (>= 1:14.04+20140410), language-pack-ast Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ast/language-pack-gnome-ast_14.04+20140410_all.deb Size: 2010 MD5sum: f34f348808b4c53f03974346a28afa68 SHA1: 7cbee94979b1ec7b815e23b4fa4f5ca4aa65f830 SHA256: e1e693d9617639d4003da2c58e8a7dcbb1da5bb55fb933ee98e66900e96f2bd2 Description: GNOME translation updates for language Asturian Description-md5: 6a3be15a2b74123351bfddd4c40ccb80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ast-base Priority: optional Section: translations Installed-Size: 5460 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ast (<< 1:14.04+20140410), language-pack-ast-base (<< 1:14.04+20140410), language-pack-gnome-ast (<< 1:14.04+20140410), language-pack-gnome-ast-base (<< 1:14.04+20140410), language-pack-kde-ast (<< 1:14.04+20140410), language-pack-kde-ast-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ast (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ast (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ast-base/language-pack-gnome-ast-base_14.04+20140410_all.deb Size: 1635232 MD5sum: acebc8207af8ac2f5e2f4131cf3661ec SHA1: a9fc5fe3bafa91320af79a77ab3da053de4c9716 SHA256: f3ee9c5fd7fa589b4e829c7b5c3898cf0f6240d6128ffb5b122d95c6cb131f5d Description: GNOME translations for language Asturian Description-md5: 29a3c2b3c1e77a9a015f376afe296fc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-az Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-az (<< 1:14.04+20140410), language-pack-az-base (<< 1:14.04+20140410), language-pack-gnome-az (<< 1:14.04+20140410), language-pack-gnome-az-base, language-pack-kde-az (<< 1:14.04+20140410), language-pack-kde-az-base (<< 1:14.04+20140410) Depends: language-pack-gnome-az-base (>= 1:14.04+20140410), language-pack-az Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-az/language-pack-gnome-az_14.04+20140410_all.deb Size: 2010 MD5sum: dd9e19e29df672ae1b2acdf64acd6113 SHA1: 4233288bc7ea822080d393b7be7889bd7c8cd508 SHA256: 6545d590af67d04d18234c2f3cd9be6f9e38a0dd856c552d315612d0fbca05dd Description: GNOME translation updates for language Azerbaijani Description-md5: 0586b807626a158d1c297704e9693094 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-az-base Priority: optional Section: translations Installed-Size: 1773 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-az (<< 1:14.04+20140410), language-pack-az-base (<< 1:14.04+20140410), language-pack-gnome-az (<< 1:14.04+20140410), language-pack-gnome-az-base (<< 1:14.04+20140410), language-pack-kde-az (<< 1:14.04+20140410), language-pack-kde-az-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-az (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-az (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-az-base/language-pack-gnome-az-base_14.04+20140410_all.deb Size: 439622 MD5sum: f09d1a36b2874279c22e2082c6d25013 SHA1: 886646a836e55912f088f544704c264c11b11145 SHA256: 7e62a65b2e84e62388fe547c814a81a283d0ccd760a6d84fbf88dcd58056a2f7 Description: GNOME translations for language Azerbaijani Description-md5: 4a0cc5000417da2b02fbaf7e1b56b638 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-be Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-be (<< 1:14.04+20140410), language-pack-be-base (<< 1:14.04+20140410), language-pack-gnome-be (<< 1:14.04+20140410), language-pack-gnome-be-base, language-pack-kde-be (<< 1:14.04+20140410), language-pack-kde-be-base (<< 1:14.04+20140410) Depends: language-pack-gnome-be-base (>= 1:14.04+20140410), language-pack-be Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-be/language-pack-gnome-be_14.04+20140410_all.deb Size: 2012 MD5sum: 35b095450936aaeecd33e4183ac9c06c SHA1: a09343d877a3ace92339e05742008811e9b38660 SHA256: b32e90c9d2c42cb935c82780e060afea02c773162b44b7309f26a2a6b56b2966 Description: GNOME translation updates for language Belarusian Description-md5: 96ea9c7f50faf1c2a796fb79251da380 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-be-base Priority: optional Section: translations Installed-Size: 6459 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-be (<< 1:14.04+20140410), language-pack-be-base (<< 1:14.04+20140410), language-pack-gnome-be (<< 1:14.04+20140410), language-pack-gnome-be-base (<< 1:14.04+20140410), language-pack-kde-be (<< 1:14.04+20140410), language-pack-kde-be-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-be (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-be (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-be-base/language-pack-gnome-be-base_14.04+20140410_all.deb Size: 1753712 MD5sum: e7634aac3fcd87cd0e08c69a40eca81a SHA1: 0220cd6db6f85df346a58223c1ccd9663e8125b6 SHA256: 0f5b78f7eed6c8f77e814a81ef0dacdd71aaaec8076e99fbfe17dba152b26a57 Description: GNOME translations for language Belarusian Description-md5: 2f05d17b9a548c01ecb664544f50ba1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bem Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bem (<< 1:14.04+20140410), language-pack-bem-base (<< 1:14.04+20140410), language-pack-gnome-bem (<< 1:14.04+20140410), language-pack-gnome-bem-base, language-pack-kde-bem (<< 1:14.04+20140410), language-pack-kde-bem-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bem-base (>= 1:14.04+20140410), language-pack-bem Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bem/language-pack-gnome-bem_14.04+20140410_all.deb Size: 2022 MD5sum: fbc19330249d5e609004911549b5ae61 SHA1: 184aac993bb99bcaa725ae9b3c93aeb09df6982d SHA256: 3ca9a92e723d1b819ebfb0c23339439f1731f24972fc532e89d6b7581acbf37e Description: GNOME translation updates for language Bemba (Zambia) Description-md5: b8f14bbeb2f24760fce51992fe1522e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bem-base Priority: optional Section: translations Installed-Size: 50 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bem (<< 1:14.04+20140410), language-pack-bem-base (<< 1:14.04+20140410), language-pack-gnome-bem (<< 1:14.04+20140410), language-pack-gnome-bem-base (<< 1:14.04+20140410), language-pack-kde-bem (<< 1:14.04+20140410), language-pack-kde-bem-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bem (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bem (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bem-base/language-pack-gnome-bem-base_14.04+20140410_all.deb Size: 7392 MD5sum: fe985e94d76c65f7301c86898e0c953b SHA1: 84132105dca01f5870244785865609f5b1796e8c SHA256: ffbe29c3a5c1949beeada209e4d117558ca83b3214400b63bc87d027067b6541 Description: GNOME translations for language Bemba (Zambia) Description-md5: 3e675e504c56683738036ded7e375a72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ber Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ber (<< 1:14.04+20140410), language-pack-ber-base (<< 1:14.04+20140410), language-pack-gnome-ber (<< 1:14.04+20140410), language-pack-gnome-ber-base, language-pack-kde-ber (<< 1:14.04+20140410), language-pack-kde-ber-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ber-base (>= 1:14.04+20140410), language-pack-ber Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ber/language-pack-gnome-ber_14.04+20140410_all.deb Size: 2034 MD5sum: cafc58bd5ecffc24c7638ff1a6b35ec1 SHA1: 42bcfe3541aeda1d29b8110a51688dbb8a741c44 SHA256: cf8d784fa823ba46020398b0c74a62aca64b46c3cf7dc41c034ed0511065f3fd Description: GNOME translation updates for language Berber languages Description-md5: 434c83b8a697928f35c9867f8c684ea3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ber-base Priority: optional Section: translations Installed-Size: 39 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ber (<< 1:14.04+20140410), language-pack-ber-base (<< 1:14.04+20140410), language-pack-gnome-ber (<< 1:14.04+20140410), language-pack-gnome-ber-base (<< 1:14.04+20140410), language-pack-kde-ber (<< 1:14.04+20140410), language-pack-kde-ber-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ber (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ber (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ber-base/language-pack-gnome-ber-base_14.04+20140410_all.deb Size: 2726 MD5sum: 50e79f06d3fbda5914863ba1275bf4d2 SHA1: c530953b9d1bd72c9562fbc8923f929c7b2e4055 SHA256: 4db9aa4d8010235fcf0602f0caca1d21358660cf81bac8c3bec0fd40682bde38 Description: GNOME translations for language Berber languages Description-md5: ffc57e61b310d1bddca40f1100428466 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bg (<< 1:14.04+20140410), language-pack-bg-base (<< 1:14.04+20140410), language-pack-gnome-bg (<< 1:14.04+20140410), language-pack-gnome-bg-base, language-pack-kde-bg (<< 1:14.04+20140410), language-pack-kde-bg-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bg-base (>= 1:14.04+20140410), language-pack-bg Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bg/language-pack-gnome-bg_14.04+20140410_all.deb Size: 1994 MD5sum: 9940f0a9efac7746200b3e05d8241c28 SHA1: 65b8196417d086491a641cd257aad0268c23d290 SHA256: 5c5203d71f141867aa66d8e7b45f076788c85cf7a4cda6575b28431190a6d350 Description: GNOME translation updates for language Bulgarian Description-md5: 39c75e4a5d413cd9c9ed74d6edc586d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bg-base Priority: optional Section: translations Installed-Size: 8273 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bg (<< 1:14.04+20140410), language-pack-bg-base (<< 1:14.04+20140410), language-pack-gnome-bg (<< 1:14.04+20140410), language-pack-gnome-bg-base (<< 1:14.04+20140410), language-pack-kde-bg (<< 1:14.04+20140410), language-pack-kde-bg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bg-base/language-pack-gnome-bg-base_14.04+20140410_all.deb Size: 2442748 MD5sum: 0c52172a103d1708f7b13b17c645dfbd SHA1: ae63a1e4bc73867fdcead4edb82e21bc49debbff SHA256: 0dbfdfd600c21b4e60e8286fc2e754661270e4d53e9145461e11797148508882 Description: GNOME translations for language Bulgarian Description-md5: 8a1d1b6f6fce08ac4b4f8f1b8b6c61ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bho Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bho (<< 1:14.04+20140410), language-pack-bho-base (<< 1:14.04+20140410), language-pack-gnome-bho (<< 1:14.04+20140410), language-pack-gnome-bho-base, language-pack-kde-bho (<< 1:14.04+20140410), language-pack-kde-bho-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bho-base (>= 1:14.04+20140410), language-pack-bho Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bho/language-pack-gnome-bho_14.04+20140410_all.deb Size: 2028 MD5sum: b8dad9bcbd09ad21cea34792e3ad2824 SHA1: be2319fc9195566907c7eff192b533048d5e0d68 SHA256: 09658839dbb284d3a09bf97ee03cbe65c287635a9fc40b0f3b1ca010ab23a29c Description: GNOME translation updates for language Bhojpuri Description-md5: 21240d1be764e70438124da003e4236d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bho-base Priority: optional Section: translations Installed-Size: 41 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bho (<< 1:14.04+20140410), language-pack-bho-base (<< 1:14.04+20140410), language-pack-gnome-bho (<< 1:14.04+20140410), language-pack-gnome-bho-base (<< 1:14.04+20140410), language-pack-kde-bho (<< 1:14.04+20140410), language-pack-kde-bho-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bho (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bho (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bho-base/language-pack-gnome-bho-base_14.04+20140410_all.deb Size: 3760 MD5sum: 9c5361f058f1827d1a03a70201bcceea SHA1: 0a4186c6d1da188753cf4cbc54638b00e295c606 SHA256: f021143f8b7fb449ce4221e3b292b3c7ea76a3281dd7d0ebcc11aaa52f6ef246 Description: GNOME translations for language Bhojpuri Description-md5: 54ce160c0a580f31e2b6ba05930db1ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bn (<< 1:14.04+20140410), language-pack-bn-base (<< 1:14.04+20140410), language-pack-gnome-bn (<< 1:14.04+20140410), language-pack-gnome-bn-base, language-pack-kde-bn (<< 1:14.04+20140410), language-pack-kde-bn-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bn-base (>= 1:14.04+20140410), language-pack-bn Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bn/language-pack-gnome-bn_14.04+20140410_all.deb Size: 2000 MD5sum: f1881d26a80a1db5ebffaaebe6cbfa7e SHA1: 37537e9b499ee9d72998ce10c5e5d779c24a4692 SHA256: 92b13f70da1a8573b1205a626cf222950dfc6bc49c07891c59d0f7edacc70435 Description: GNOME translation updates for language Bengali Description-md5: 618bad86984babbaea7527bcf3af1813 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-bn-base Priority: optional Section: translations Installed-Size: 5143 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bn (<< 1:14.04+20140410), language-pack-bn-base (<< 1:14.04+20140410), language-pack-gnome-bn (<< 1:14.04+20140410), language-pack-gnome-bn-base (<< 1:14.04+20140410), language-pack-kde-bn (<< 1:14.04+20140410), language-pack-kde-bn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bn-base/language-pack-gnome-bn-base_14.04+20140410_all.deb Size: 1100906 MD5sum: 1dc1a893faba527e059218f0838b89ee SHA1: fd845a609fa9786004cb6eb494dac67046120994 SHA256: f6589437c5ef1889009bf557b3694a944e14f4e99a23c75c316a9c6e9caa67d3 Description: GNOME translations for language Bengali Description-md5: 683861dab0513ec045b4707f39a7c1d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-bo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bo (<< 1:14.04+20140410), language-pack-bo-base (<< 1:14.04+20140410), language-pack-gnome-bo (<< 1:14.04+20140410), language-pack-gnome-bo-base, language-pack-kde-bo (<< 1:14.04+20140410), language-pack-kde-bo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bo-base (>= 1:14.04+20140410), language-pack-bo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bo/language-pack-gnome-bo_14.04+20140410_all.deb Size: 2020 MD5sum: 15ade55026f04ce6a6bb65c71e2ec295 SHA1: 38ed268d477f494c87fca50e534713a16331ee98 SHA256: bfa9ab423736ea9bca94abecab219c65cc893df3baed371411cc7df74bda1b6a Description: GNOME translation updates for language Tibetan Description-md5: 56d4ff5bbc721854ba87992bf16e98ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bo-base Priority: optional Section: translations Installed-Size: 2007 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bo (<< 1:14.04+20140410), language-pack-bo-base (<< 1:14.04+20140410), language-pack-gnome-bo (<< 1:14.04+20140410), language-pack-gnome-bo-base (<< 1:14.04+20140410), language-pack-kde-bo (<< 1:14.04+20140410), language-pack-kde-bo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bo-base/language-pack-gnome-bo-base_14.04+20140410_all.deb Size: 383778 MD5sum: 0b32813c4e5ba862eaff387504acb997 SHA1: e3201d7aecbfb018a08e2c9dbb001b72ffa62b7c SHA256: 8689832b1e183bda45a0182514a621af6ff4b04b873d9b125ae6a719b4fb533a Description: GNOME translations for language Tibetan Description-md5: 9bc1467dffd8ad92726244fced455f91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-br Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-br (<< 1:14.04+20140410), language-pack-br-base (<< 1:14.04+20140410), language-pack-gnome-br (<< 1:14.04+20140410), language-pack-gnome-br-base, language-pack-kde-br (<< 1:14.04+20140410), language-pack-kde-br-base (<< 1:14.04+20140410) Depends: language-pack-gnome-br-base (>= 1:14.04+20140410), language-pack-br Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-br/language-pack-gnome-br_14.04+20140410_all.deb Size: 2022 MD5sum: f546a14bb37a6b9af5d73da4e273c3a0 SHA1: f4bf5bddf4f8a6e900ca619512a7bcc1655de8cf SHA256: 07d949255c7e088317ccab42b18903f0e92c37ca8979d33f44946fc0b4ea1b5d Description: GNOME translation updates for language Breton Description-md5: 0e0fd3c24b3d534422651bb466272942 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-br-base Priority: optional Section: translations Installed-Size: 2859 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-br (<< 1:14.04+20140410), language-pack-br-base (<< 1:14.04+20140410), language-pack-gnome-br (<< 1:14.04+20140410), language-pack-gnome-br-base (<< 1:14.04+20140410), language-pack-kde-br (<< 1:14.04+20140410), language-pack-kde-br-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-br (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-br (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-br-base/language-pack-gnome-br-base_14.04+20140410_all.deb Size: 831670 MD5sum: 83a0eb729f541befba011fe7cca3f924 SHA1: 6f309a3a19967cf003c2dd9ba234a3b3dba49d6e SHA256: 133bba99b890a69ef52da5bebd4c19cf9153db10ac521ba533d1454c776c4f72 Description: GNOME translations for language Breton Description-md5: e9faf34a465a703d7b022af6b6b8bb42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bs (<< 1:14.04+20140410), language-pack-bs-base (<< 1:14.04+20140410), language-pack-gnome-bs (<< 1:14.04+20140410), language-pack-gnome-bs-base, language-pack-kde-bs (<< 1:14.04+20140410), language-pack-kde-bs-base (<< 1:14.04+20140410) Depends: language-pack-gnome-bs-base (>= 1:14.04+20140410), language-pack-bs Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-bs/language-pack-gnome-bs_14.04+20140410_all.deb Size: 1996 MD5sum: b40f8d30fbbd10214cbaf6e1b77172be SHA1: 7118449ace722055c7c1a96ea2226345cbaa0aef SHA256: f3f87033e397d357441eb436eefbd074dace238779b2fa89743b4b6b2b8456d7 Description: GNOME translation updates for language Bosnian Description-md5: 26d9ed7b5bbba1b9b962f4048b050736 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-bs-base Priority: optional Section: translations Installed-Size: 6194 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-bs (<< 1:14.04+20140410), language-pack-bs-base (<< 1:14.04+20140410), language-pack-gnome-bs (<< 1:14.04+20140410), language-pack-gnome-bs-base (<< 1:14.04+20140410), language-pack-kde-bs (<< 1:14.04+20140410), language-pack-kde-bs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-bs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-bs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-bs-base/language-pack-gnome-bs-base_14.04+20140410_all.deb Size: 1926040 MD5sum: b075c61246f4d746b4ade18110a76d00 SHA1: ebd02698d87e02d5575cd1edfe011d7f880eb19c SHA256: 314fb760a2a0bb36774a09540dcf1725ff400dfbcda0140f9195f786c6435a5b Description: GNOME translations for language Bosnian Description-md5: 20a297709f48558e680c7ebc9220901a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ca Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ca (<< 1:14.04+20140410), language-pack-ca-base (<< 1:14.04+20140410), language-pack-gnome-ca (<< 1:14.04+20140410), language-pack-gnome-ca-base, language-pack-kde-ca (<< 1:14.04+20140410), language-pack-kde-ca-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ca-base (>= 1:14.04+20140410), language-pack-ca Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ca/language-pack-gnome-ca_14.04+20140410_all.deb Size: 2002 MD5sum: f498ad17080174ee2bc4fd4d4abf9ceb SHA1: 2953ca5d0a35e9f1bca1738c4730f6150899b199 SHA256: 9ad417e91451fe4098b85754296a75fdf82ee9440fc2aeb8e2cd9c25e9e239e1 Description: GNOME translation updates for language Catalan; Valencian Description-md5: ab87ef4d7d2098ed4c1a34a7f113d9bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ca-base Priority: optional Section: translations Installed-Size: 14246 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ca (<< 1:14.04+20140410), language-pack-ca-base (<< 1:14.04+20140410), language-pack-gnome-ca (<< 1:14.04+20140410), language-pack-gnome-ca-base (<< 1:14.04+20140410), language-pack-kde-ca (<< 1:14.04+20140410), language-pack-kde-ca-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ca (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ca (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ca-base/language-pack-gnome-ca-base_14.04+20140410_all.deb Size: 4182722 MD5sum: b7ad09cbe034e9f321086eed6ee41cff SHA1: 37b271b522aed7b3366a12233c7e7bbdd3318210 SHA256: ca82aa4ef7f04ad44fe83158a5875df1e3d9a7016287088c092c9bb672ce1c82 Description: GNOME translations for language Catalan; Valencian Description-md5: 4e3e5530fe505c7e26aae7e22b0c6082 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-crh Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-crh (<< 1:14.04+20140410), language-pack-crh-base (<< 1:14.04+20140410), language-pack-gnome-crh (<< 1:14.04+20140410), language-pack-gnome-crh-base, language-pack-kde-crh (<< 1:14.04+20140410), language-pack-kde-crh-base (<< 1:14.04+20140410) Depends: language-pack-gnome-crh-base (>= 1:14.04+20140410), language-pack-crh Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-crh/language-pack-gnome-crh_14.04+20140410_all.deb Size: 2012 MD5sum: a680d8e0b125da3b045de5816724b4b0 SHA1: 6f88b151d4e09acaf7f9edd70c1bb821dd68a852 SHA256: 8827216e3a8375274a1b732d79cf8527131959c58a6b120d166627be17a4f5f9 Description: GNOME translation updates for language Tatar, Crimean Description-md5: 34ec837b5f9517fa4cb242bc2911d9be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-crh-base Priority: optional Section: translations Installed-Size: 1542 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-crh (<< 1:14.04+20140410), language-pack-crh-base (<< 1:14.04+20140410), language-pack-gnome-crh (<< 1:14.04+20140410), language-pack-gnome-crh-base (<< 1:14.04+20140410), language-pack-kde-crh (<< 1:14.04+20140410), language-pack-kde-crh-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-crh (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-crh (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-crh-base/language-pack-gnome-crh-base_14.04+20140410_all.deb Size: 490080 MD5sum: 6b60220588f39f401a1d434dbccc64e3 SHA1: 8284063a15c117ca1b762701d89f086dd6151a37 SHA256: dcb283839c1e972b7236282e6f9d682141c574fc646626c12d7bebc4c9970d0b Description: GNOME translations for language Tatar, Crimean Description-md5: 96baee078fb9271f9d992c02185b3503 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cs (<< 1:14.04+20140410), language-pack-cs-base (<< 1:14.04+20140410), language-pack-gnome-cs (<< 1:14.04+20140410), language-pack-gnome-cs-base, language-pack-kde-cs (<< 1:14.04+20140410), language-pack-kde-cs-base (<< 1:14.04+20140410) Depends: language-pack-gnome-cs-base (>= 1:14.04+20140410), language-pack-cs Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-cs/language-pack-gnome-cs_14.04+20140410_all.deb Size: 2026 MD5sum: 644e93ac10e19fe28028bd250cf7b5d2 SHA1: a526b2d10d9864f7c3e52ebd192d74b056a886e9 SHA256: 6839cacae290af53f870fd25d28ca9537bdabd86ea7bea539adf5801455045fa Description: GNOME translation updates for language Czech Description-md5: 3f1f01e2f8dae65e579521a8e5e78a11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cs-base Priority: optional Section: translations Installed-Size: 9660 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cs (<< 1:14.04+20140410), language-pack-cs-base (<< 1:14.04+20140410), language-pack-gnome-cs (<< 1:14.04+20140410), language-pack-gnome-cs-base (<< 1:14.04+20140410), language-pack-kde-cs (<< 1:14.04+20140410), language-pack-kde-cs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-cs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-cs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-cs-base/language-pack-gnome-cs-base_14.04+20140410_all.deb Size: 3164450 MD5sum: e1edc9cb99d8a5d7398901629fc9fb46 SHA1: 8739f05696baf56663c4f05c6e6f7f88089e8782 SHA256: 24f31a37efa6f44fa8bae0a260fa7111d8318abac21a10def57ed817d0a1bedd Description: GNOME translations for language Czech Description-md5: 00a4405b87530e19774eeb1016adab80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-csb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-csb (<< 1:14.04+20140410), language-pack-csb-base (<< 1:14.04+20140410), language-pack-gnome-csb (<< 1:14.04+20140410), language-pack-gnome-csb-base, language-pack-kde-csb (<< 1:14.04+20140410), language-pack-kde-csb-base (<< 1:14.04+20140410) Depends: language-pack-gnome-csb-base (>= 1:14.04+20140410), language-pack-csb Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-csb/language-pack-gnome-csb_14.04+20140410_all.deb Size: 2010 MD5sum: f839d97ef9b655a317712bd23db77a95 SHA1: 47735554f05be323ec38923ee579371ae316d331 SHA256: 3650a1156ac498793081c5fe213d2afff55cff75b83fd4953a262f0ecba62d64 Description: GNOME translation updates for language Kashubian Description-md5: a68275ab880925493c02fb7b617163ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-csb-base Priority: optional Section: translations Installed-Size: 158 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-csb (<< 1:14.04+20140410), language-pack-csb-base (<< 1:14.04+20140410), language-pack-gnome-csb (<< 1:14.04+20140410), language-pack-gnome-csb-base (<< 1:14.04+20140410), language-pack-kde-csb (<< 1:14.04+20140410), language-pack-kde-csb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-csb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-csb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-csb-base/language-pack-gnome-csb-base_14.04+20140410_all.deb Size: 42798 MD5sum: 1e4ebad734bdc5b9f24e2f78ac9ae27c SHA1: b064fff5f2fbe5caa814b9afe82be4a8aa98a063 SHA256: 68b5af43dc04e5d38aedda2a29a89ea2872bc7725a2996af884d731ff1c936d8 Description: GNOME translations for language Kashubian Description-md5: d071c0b9bb569c8f77eb6f43204dee4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cv (<< 1:14.04+20140410), language-pack-cv-base (<< 1:14.04+20140410), language-pack-gnome-cv (<< 1:14.04+20140410), language-pack-gnome-cv-base, language-pack-kde-cv (<< 1:14.04+20140410), language-pack-kde-cv-base (<< 1:14.04+20140410) Depends: language-pack-gnome-cv-base (>= 1:14.04+20140410), language-pack-cv Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-cv/language-pack-gnome-cv_14.04+20140410_all.deb Size: 2026 MD5sum: 9640675c15ef4270f18d1cc989e6a574 SHA1: 112948bd2c4347d95233d4c6319ce1d7c5b85881 SHA256: ee847c5ffc998499a8346262a2f8e096459f99f04cf4f1ed45327344884c4bd6 Description: GNOME translation updates for language Chuvash Description-md5: 9ad1527306a851ff43c9b89336fe8a79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cv-base Priority: optional Section: translations Installed-Size: 69 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cv (<< 1:14.04+20140410), language-pack-cv-base (<< 1:14.04+20140410), language-pack-gnome-cv (<< 1:14.04+20140410), language-pack-gnome-cv-base (<< 1:14.04+20140410), language-pack-kde-cv (<< 1:14.04+20140410), language-pack-kde-cv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-cv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-cv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-cv-base/language-pack-gnome-cv-base_14.04+20140410_all.deb Size: 12320 MD5sum: 90668f2d03654235fbe7089495faf30f SHA1: 6319e9541e6da214f5ebe91a457ce12e02bad65e SHA256: 04f28018551e331d5dc8b2862340a3a767b2852580190781e129e310735f26fa Description: GNOME translations for language Chuvash Description-md5: cb8a93c30d4547469dc0b196647ad14d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cy (<< 1:14.04+20140410), language-pack-cy-base (<< 1:14.04+20140410), language-pack-gnome-cy (<< 1:14.04+20140410), language-pack-gnome-cy-base, language-pack-kde-cy (<< 1:14.04+20140410), language-pack-kde-cy-base (<< 1:14.04+20140410) Depends: language-pack-gnome-cy-base (>= 1:14.04+20140410), language-pack-cy Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-cy/language-pack-gnome-cy_14.04+20140410_all.deb Size: 2012 MD5sum: e2255bad19b671919c8121953a123cec SHA1: 8e7c754a6439353eaa468ab177a944751080e294 SHA256: 8c6f1ef62b7fd17b9f9e4644fbae85c74f31df9335decd324c74cee421387693 Description: GNOME translation updates for language Welsh Description-md5: ed81e88151014cb5147dce245cda6627 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-cy-base Priority: optional Section: translations Installed-Size: 1518 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-cy (<< 1:14.04+20140410), language-pack-cy-base (<< 1:14.04+20140410), language-pack-gnome-cy (<< 1:14.04+20140410), language-pack-gnome-cy-base (<< 1:14.04+20140410), language-pack-kde-cy (<< 1:14.04+20140410), language-pack-kde-cy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-cy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-cy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-cy-base/language-pack-gnome-cy-base_14.04+20140410_all.deb Size: 489040 MD5sum: 3718a1a4bdb144b42ce123021deebfd7 SHA1: 360607845522f599d2bdd574176857b3c2ad3f37 SHA256: 8ba5f6681e004dc1ef777acaa79db89e29a51bc4640acc33bcb1c6e6e7cc2643 Description: GNOME translations for language Welsh Description-md5: 8ca7498014d0db547925dd15582efc47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-da Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-da (<< 1:14.04+20140410), language-pack-da-base (<< 1:14.04+20140410), language-pack-gnome-da (<< 1:14.04+20140410), language-pack-gnome-da-base, language-pack-kde-da (<< 1:14.04+20140410), language-pack-kde-da-base (<< 1:14.04+20140410) Depends: language-pack-gnome-da-base (>= 1:14.04+20140410), language-pack-da Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-da/language-pack-gnome-da_14.04+20140410_all.deb Size: 2016 MD5sum: 77904fd2745226d88bd902081a47bb17 SHA1: 6c0089cb1a6a4ca2264cdc37dac79f4adf383031 SHA256: 6934a2b1e9f49388e4a0e286d8951f26d4e162986e1592233e1acb4dbc83a016 Description: GNOME translation updates for language Danish Description-md5: f351d23d28ad484bafd77fcc6fba4150 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-da-base Priority: optional Section: translations Installed-Size: 6373 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-da (<< 1:14.04+20140410), language-pack-da-base (<< 1:14.04+20140410), language-pack-gnome-da (<< 1:14.04+20140410), language-pack-gnome-da-base (<< 1:14.04+20140410), language-pack-kde-da (<< 1:14.04+20140410), language-pack-kde-da-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-da (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-da (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-da-base/language-pack-gnome-da-base_14.04+20140410_all.deb Size: 1793006 MD5sum: 0fb17fcd11bb59f4aa7cda32cd36b90e SHA1: fd01cadc8b203c8c1398b5bfe88efa5b392e256c SHA256: d9202e718a749ff8317b316f9923da10412595d4e4d1175ac634d8735d6cf884 Description: GNOME translations for language Danish Description-md5: e085e168402e89c38da8d5f7ed9dac1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-de Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-de (<< 1:14.04+20140410), language-pack-de-base (<< 1:14.04+20140410), language-pack-gnome-de (<< 1:14.04+20140410), language-pack-gnome-de-base, language-pack-kde-de (<< 1:14.04+20140410), language-pack-kde-de-base (<< 1:14.04+20140410) Depends: language-pack-gnome-de-base (>= 1:14.04+20140410), language-pack-de Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-de/language-pack-gnome-de_14.04+20140410_all.deb Size: 2006 MD5sum: 34ac728e32e4b04603f4b485cc90d0bf SHA1: 2c4e8325215bc282af6421073ef7c8026fc0882c SHA256: e7bfdc54c612c92aaac9c63fd67b2adb2ec07d5be0492a6e200c247842736929 Description: GNOME translation updates for language German Description-md5: a0958a91362128ab3efbd66e6933f5b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-de-base Priority: optional Section: translations Installed-Size: 17104 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-de (<< 1:14.04+20140410), language-pack-de-base (<< 1:14.04+20140410), language-pack-gnome-de (<< 1:14.04+20140410), language-pack-gnome-de-base (<< 1:14.04+20140410), language-pack-kde-de (<< 1:14.04+20140410), language-pack-kde-de-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-de (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-de (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-de-base/language-pack-gnome-de-base_14.04+20140410_all.deb Size: 7213326 MD5sum: 3c235a4049ad179fb85bf062289df9a1 SHA1: 27345280e23f2f7ae989fac61ccbd3b3a64c16e8 SHA256: 046154d1efb121bc0ce5b926d0cba0d331e6cd6bfd52a86d548d618ae28ae7bf Description: GNOME translations for language German Description-md5: f54c9d1d096ce5abd63fbb6d2bbf173e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-dv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dv (<< 1:14.04+20140410), language-pack-dv-base (<< 1:14.04+20140410), language-pack-gnome-dv (<< 1:14.04+20140410), language-pack-gnome-dv-base, language-pack-kde-dv (<< 1:14.04+20140410), language-pack-kde-dv-base (<< 1:14.04+20140410) Depends: language-pack-gnome-dv-base (>= 1:14.04+20140410), language-pack-dv Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-dv/language-pack-gnome-dv_14.04+20140410_all.deb Size: 2038 MD5sum: a9477a0d9fc04212f918084fa85b2fbd SHA1: 2274393027c2cd70dbd70ab6d651bab07d4da663 SHA256: ad7d690124d20a3290e00d3cf58f6510a31a3fbdf8552ec4fecbeb0619448446 Description: GNOME translation updates for language Divehi; Dhivehi; Maldivian Description-md5: c7f64160794a161eb3234142563f4154 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-dv-base Priority: optional Section: translations Installed-Size: 378 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dv (<< 1:14.04+20140410), language-pack-dv-base (<< 1:14.04+20140410), language-pack-gnome-dv (<< 1:14.04+20140410), language-pack-gnome-dv-base (<< 1:14.04+20140410), language-pack-kde-dv (<< 1:14.04+20140410), language-pack-kde-dv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-dv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-dv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-dv-base/language-pack-gnome-dv-base_14.04+20140410_all.deb Size: 86522 MD5sum: bdc894ff31c1e9582e9195fd4593d1be SHA1: 47afe23f933a74657b08f13fe43156b549bfcaff SHA256: fd6dc5650a61dc7f8e7f74eab58a3f6f4230329907300011a4cac08bf7bc870e Description: GNOME translations for language Divehi; Dhivehi; Maldivian Description-md5: a5a212de01f2a5da9a78258bae6baf31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-dz Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dz (<< 1:14.04+20140410), language-pack-dz-base (<< 1:14.04+20140410), language-pack-gnome-dz (<< 1:14.04+20140410), language-pack-gnome-dz-base, language-pack-kde-dz (<< 1:14.04+20140410), language-pack-kde-dz-base (<< 1:14.04+20140410) Depends: language-pack-gnome-dz-base (>= 1:14.04+20140410), language-pack-dz Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-dz/language-pack-gnome-dz_14.04+20140410_all.deb Size: 2008 MD5sum: c68a98eda214e3be0681a092ac5fd13d SHA1: 6db2e9d6439e3157996f41fb2c6848369e1b4555 SHA256: ab55f3db4e4fa9453f55c8c6c70188994d4a9d06b9373bcf82b5f03ee800ae7d Description: GNOME translation updates for language Dzongkha Description-md5: b1d3795c03d04099c6060bca58c796ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-dz-base Priority: optional Section: translations Installed-Size: 3618 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-dz (<< 1:14.04+20140410), language-pack-dz-base (<< 1:14.04+20140410), language-pack-gnome-dz (<< 1:14.04+20140410), language-pack-gnome-dz-base (<< 1:14.04+20140410), language-pack-kde-dz (<< 1:14.04+20140410), language-pack-kde-dz-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-dz (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-dz (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-dz-base/language-pack-gnome-dz-base_14.04+20140410_all.deb Size: 678004 MD5sum: 3dc07c9f9d6154779b5af3370ad4d58e SHA1: f49479572343a97d45e13312d35c282617b41511 SHA256: c2849851990a54a6b70fb9576fd906219caa9790073c6fefadaf4bf323dd4c34 Description: GNOME translations for language Dzongkha Description-md5: 9f2dc473f82dbc7b0b961130085c12cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-el Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-el (<< 1:14.04+20140410), language-pack-el-base (<< 1:14.04+20140410), language-pack-gnome-el (<< 1:14.04+20140410), language-pack-gnome-el-base, language-pack-kde-el (<< 1:14.04+20140410), language-pack-kde-el-base (<< 1:14.04+20140410) Depends: language-pack-gnome-el-base (>= 1:14.04+20140410), language-pack-el Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-el/language-pack-gnome-el_14.04+20140410_all.deb Size: 2020 MD5sum: e4817267a2866d3b231d52e3f9965d35 SHA1: 21994f5018985b5965e4b5ff7c532d171c99e35a SHA256: 9109589be2debca138c86d5936795a07f5c387fd6393f16f874704d3bc586fdf Description: GNOME translation updates for language Greek, Modern (1453-) Description-md5: 6dbbb5bc65518f12afeb2c03afec9aea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-el-base Priority: optional Section: translations Installed-Size: 15597 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-el (<< 1:14.04+20140410), language-pack-el-base (<< 1:14.04+20140410), language-pack-gnome-el (<< 1:14.04+20140410), language-pack-gnome-el-base (<< 1:14.04+20140410), language-pack-kde-el (<< 1:14.04+20140410), language-pack-kde-el-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-el (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-el (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-el-base/language-pack-gnome-el-base_14.04+20140410_all.deb Size: 4161576 MD5sum: 40972f5aa6c8025ab057469b7d174301 SHA1: 87c31a2e850e52e829a032c243a26db904469de2 SHA256: 07ba2cad79ae8f10e0aea47efbb1065cfbe0d7d63192478362f91ea794877590 Description: GNOME translations for language Greek, Modern (1453-) Description-md5: 0e506815db01ae3de0db70d82358b239 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-en Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-en (<< 1:14.04+20140410), language-pack-en-base (<< 1:14.04+20140410), language-pack-gnome-en (<< 1:14.04+20140410), language-pack-gnome-en-base, language-pack-kde-en (<< 1:14.04+20140410), language-pack-kde-en-base (<< 1:14.04+20140410) Depends: language-pack-gnome-en-base (>= 1:14.04+20140410), language-pack-en Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-en/language-pack-gnome-en_14.04+20140410_all.deb Size: 2018 MD5sum: b5fa52a22281d9397cba48cb0a5639cb SHA1: 697fbf4a2b87c1d2958107bf27eb66458060df25 SHA256: 09c8d72df49c6f426dd71ab403e1a85695061c7d4a7f2282b43a2bb292abb241 Description: GNOME translation updates for language English Description-md5: f157b41ce91b17658e35473d760b0ee8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-dvd-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: language-pack-gnome-en-base Priority: optional Section: translations Installed-Size: 7019 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-en (<< 1:14.04+20140410), language-pack-en-base (<< 1:14.04+20140410), language-pack-gnome-en (<< 1:14.04+20140410), language-pack-gnome-en-base (<< 1:14.04+20140410), language-pack-kde-en (<< 1:14.04+20140410), language-pack-kde-en-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-en (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-en (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-en-base/language-pack-gnome-en-base_14.04+20140410_all.deb Size: 1296544 MD5sum: 9ef62f4174f1efab4ef5422bc6f87b2b SHA1: 3356f3963fbb96d25d7dcb67193288b84303abf8 SHA256: 1e3aaf33693bd7b01790fb86c16bcf2cc4b8ef3582d19eec24d51db407be725e Description: GNOME translations for language English Description-md5: 6dcf0d0aa5e8c80949aea145d961d4ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-dvd-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: language-pack-gnome-eo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eo (<< 1:14.04+20140410), language-pack-eo-base (<< 1:14.04+20140410), language-pack-gnome-eo (<< 1:14.04+20140410), language-pack-gnome-eo-base, language-pack-kde-eo (<< 1:14.04+20140410), language-pack-kde-eo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-eo-base (>= 1:14.04+20140410), language-pack-eo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-eo/language-pack-gnome-eo_14.04+20140410_all.deb Size: 2008 MD5sum: 7ffbe0cced6176a8ad20b5f1005741ba SHA1: 91990bceb09e3ba7fbc79c9078c38c85fa8b4c1f SHA256: d7f5874123caa646ef3e2d64407651e8fb9e08587271e2c79811f16975e29577 Description: GNOME translation updates for language Esperanto Description-md5: ceacc3b2057b1f72d1b6327d8759fbeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-eo-base Priority: optional Section: translations Installed-Size: 3054 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eo (<< 1:14.04+20140410), language-pack-eo-base (<< 1:14.04+20140410), language-pack-gnome-eo (<< 1:14.04+20140410), language-pack-gnome-eo-base (<< 1:14.04+20140410), language-pack-kde-eo (<< 1:14.04+20140410), language-pack-kde-eo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-eo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-eo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-eo-base/language-pack-gnome-eo-base_14.04+20140410_all.deb Size: 999636 MD5sum: afe6e7630d6f17bb00ef5ced2d6ca545 SHA1: 81335aed275e771b90666d04d266c34d67ccd1d1 SHA256: 6274713bd2cf6bb472803467c2eaf01affc05c2616b1931994c1e202ad812dfc Description: GNOME translations for language Esperanto Description-md5: 86d3eb823a1db57d463e3879f090b212 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-es Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-es (<< 1:14.04+20140410), language-pack-es-base (<< 1:14.04+20140410), language-pack-gnome-es (<< 1:14.04+20140410), language-pack-gnome-es-base, language-pack-kde-es (<< 1:14.04+20140410), language-pack-kde-es-base (<< 1:14.04+20140410) Depends: language-pack-gnome-es-base (>= 1:14.04+20140410), language-pack-es Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-es/language-pack-gnome-es_14.04+20140410_all.deb Size: 2022 MD5sum: 4908f95b2c7be2063bfec61019d29280 SHA1: c0e8f626328105d0a6ff55db1000300ab4fa6ffb SHA256: c60a31562df62d8b055389e1418e60b41c2933d329e97c364e81d45a63d85960 Description: GNOME translation updates for language Spanish; Castilian Description-md5: 7a7b33095707884163c9cbe9ae7373b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-es-base Priority: optional Section: translations Installed-Size: 13595 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-es (<< 1:14.04+20140410), language-pack-es-base (<< 1:14.04+20140410), language-pack-gnome-es (<< 1:14.04+20140410), language-pack-gnome-es-base (<< 1:14.04+20140410), language-pack-kde-es (<< 1:14.04+20140410), language-pack-kde-es-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-es (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-es (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-es-base/language-pack-gnome-es-base_14.04+20140410_all.deb Size: 4584814 MD5sum: 3e361118e34965d8d3b4114ed9c7d3ba SHA1: 50589bf6145ff8679f8cc7260dd57a75e07f8e2f SHA256: ed143f4f72bd8b73d99ca8956cc6d46d0fe5761ae83cf46371ec50be84230950 Description: GNOME translations for language Spanish; Castilian Description-md5: 983d0cbe31440ccade3b4083c6c8d49e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-et Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-et (<< 1:14.04+20140410), language-pack-et-base (<< 1:14.04+20140410), language-pack-gnome-et (<< 1:14.04+20140410), language-pack-gnome-et-base, language-pack-kde-et (<< 1:14.04+20140410), language-pack-kde-et-base (<< 1:14.04+20140410) Depends: language-pack-gnome-et-base (>= 1:14.04+20140410), language-pack-et Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-et/language-pack-gnome-et_14.04+20140410_all.deb Size: 2006 MD5sum: 13b8834256191e815ba447056515c828 SHA1: 11904ae0a360669cd65849383db51146c0b910c3 SHA256: bd829559f25164fb7b0e86c3c68ad431e34908c8c5640211400c47bb23015766 Description: GNOME translation updates for language Estonian Description-md5: fab1585cf3e8c550080ac329d5e52581 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-et-base Priority: optional Section: translations Installed-Size: 4377 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-et (<< 1:14.04+20140410), language-pack-et-base (<< 1:14.04+20140410), language-pack-gnome-et (<< 1:14.04+20140410), language-pack-gnome-et-base (<< 1:14.04+20140410), language-pack-kde-et (<< 1:14.04+20140410), language-pack-kde-et-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-et (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-et (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-et-base/language-pack-gnome-et-base_14.04+20140410_all.deb Size: 1309972 MD5sum: ea6808f4c5c5e4c1a68e7d23125cf550 SHA1: f61ffa36e93d2ebb31149c8e3488982cf0d54500 SHA256: 1a6c1c2dc2dc05ad4a7b778c3d06833544727994767c6552db9d1e852fb1b6c0 Description: GNOME translations for language Estonian Description-md5: 09789edfaecf691231d91a73a577d329 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-eu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eu (<< 1:14.04+20140410), language-pack-eu-base (<< 1:14.04+20140410), language-pack-gnome-eu (<< 1:14.04+20140410), language-pack-gnome-eu-base, language-pack-kde-eu (<< 1:14.04+20140410), language-pack-kde-eu-base (<< 1:14.04+20140410) Depends: language-pack-gnome-eu-base (>= 1:14.04+20140410), language-pack-eu Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-eu/language-pack-gnome-eu_14.04+20140410_all.deb Size: 2008 MD5sum: 048e44def5577b28141f5c098cdfbf99 SHA1: b1ec3727a480453cf662fbdf9b2ec798c7a1c7a1 SHA256: d56dff52079adb26e90020fa844d44a41c2731eecce712cca6a5441a49350667 Description: GNOME translation updates for language Basque Description-md5: 9d58b7ea5c4c440d487ef4a0edfc5906 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-eu-base Priority: optional Section: translations Installed-Size: 9140 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-eu (<< 1:14.04+20140410), language-pack-eu-base (<< 1:14.04+20140410), language-pack-gnome-eu (<< 1:14.04+20140410), language-pack-gnome-eu-base (<< 1:14.04+20140410), language-pack-kde-eu (<< 1:14.04+20140410), language-pack-kde-eu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-eu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-eu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-eu-base/language-pack-gnome-eu-base_14.04+20140410_all.deb Size: 3257298 MD5sum: dcb9602358b825284e5f8d3bab95fe88 SHA1: 2282349bc6a65f05fc9eddbc44d270f8faf352ad SHA256: dd607cde495778dbf6cbbb266c490b3e0ec516668da2dc327ac43088a7027c80 Description: GNOME translations for language Basque Description-md5: 601a3771386658d41ca9f180a5d6ac5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fa (<< 1:14.04+20140410), language-pack-fa-base (<< 1:14.04+20140410), language-pack-gnome-fa (<< 1:14.04+20140410), language-pack-gnome-fa-base, language-pack-kde-fa (<< 1:14.04+20140410), language-pack-kde-fa-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fa-base (>= 1:14.04+20140410), language-pack-fa Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fa/language-pack-gnome-fa_14.04+20140410_all.deb Size: 2026 MD5sum: f14992585c33bbe503b95e665c0b9db8 SHA1: 47ebb437fba9adddb54c8f00d5e7781e7a512eee SHA256: 9c3841bebfd85c2ce90be65f3fee4e813ef4cfff1cbea63be78cbc1b077ac053 Description: GNOME translation updates for language Persian Description-md5: 551205c028d3eef0365255924c6f6016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fa-base Priority: optional Section: translations Installed-Size: 3031 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fa (<< 1:14.04+20140410), language-pack-fa-base (<< 1:14.04+20140410), language-pack-gnome-fa (<< 1:14.04+20140410), language-pack-gnome-fa-base (<< 1:14.04+20140410), language-pack-kde-fa (<< 1:14.04+20140410), language-pack-kde-fa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fa-base/language-pack-gnome-fa-base_14.04+20140410_all.deb Size: 830516 MD5sum: a5465a7f310dde0c7d016a10163071ea SHA1: a72c6e951d747a652d65e45a464d5350bf8a2669 SHA256: f071761a434ec6cfcbb55e1e8468fe7b37f1ce21b9c7434ba9433fa64e05f053 Description: GNOME translations for language Persian Description-md5: 52384612794213c4d4d9f267a0463a98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ff Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ff (<< 1:14.04+20140410), language-pack-ff-base (<< 1:14.04+20140410), language-pack-gnome-ff (<< 1:14.04+20140410), language-pack-gnome-ff-base, language-pack-kde-ff (<< 1:14.04+20140410), language-pack-kde-ff-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ff-base (>= 1:14.04+20140410), language-pack-ff Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ff/language-pack-gnome-ff_14.04+20140410_all.deb Size: 2000 MD5sum: 58fdf265a7ebca75618ec9656a157755 SHA1: 9d0a05508b7f2b4eb7c66b102b0d2ab415e35022 SHA256: 79c5ee075ccb429799d7056b80d9a339605a2e33b45140bc1ebb4717c04b5f6e Description: GNOME translation updates for language Fulah Description-md5: 306a1ca4120144a0c3a770761e425c0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ff-base Priority: optional Section: translations Installed-Size: 39 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ff (<< 1:14.04+20140410), language-pack-ff-base (<< 1:14.04+20140410), language-pack-gnome-ff (<< 1:14.04+20140410), language-pack-gnome-ff-base (<< 1:14.04+20140410), language-pack-kde-ff (<< 1:14.04+20140410), language-pack-kde-ff-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ff (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ff (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ff-base/language-pack-gnome-ff-base_14.04+20140410_all.deb Size: 2822 MD5sum: 776f4f77f394e382514615013116a487 SHA1: 2f7770a7a36517b0fbda6bfb0ab54687b8589a9b SHA256: 75cf8c9e8a39c9a64e7e77f56aefdc13e9428f9e432ea097e6e38962e055b432 Description: GNOME translations for language Fulah Description-md5: 2283d7be6b64e6dc1d60ec39072e1306 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fi (<< 1:14.04+20140410), language-pack-fi-base (<< 1:14.04+20140410), language-pack-gnome-fi (<< 1:14.04+20140410), language-pack-gnome-fi-base, language-pack-kde-fi (<< 1:14.04+20140410), language-pack-kde-fi-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fi-base (>= 1:14.04+20140410), language-pack-fi Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fi/language-pack-gnome-fi_14.04+20140410_all.deb Size: 2002 MD5sum: a9668d0f9b51cc340fe3a0dce988ef20 SHA1: 3a8a55c9712c3f9b14773ae0e2ebe901e20d03ff SHA256: 381da965dc3143d2cf51dc153f02377b21479c550436902536a9c2f0ebbb70fa Description: GNOME translation updates for language Finnish Description-md5: 04748a1b6c60eb8cb3ed435bc40e6c63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fi-base Priority: optional Section: translations Installed-Size: 7393 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fi (<< 1:14.04+20140410), language-pack-fi-base (<< 1:14.04+20140410), language-pack-gnome-fi (<< 1:14.04+20140410), language-pack-gnome-fi-base (<< 1:14.04+20140410), language-pack-kde-fi (<< 1:14.04+20140410), language-pack-kde-fi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fi-base/language-pack-gnome-fi-base_14.04+20140410_all.deb Size: 2111158 MD5sum: 8f1dc9f689e2d352a911de3761339e61 SHA1: 6cf8805c88618f9969cdc3dd4d9afd4b162a5b0c SHA256: 1117ca7b0a42221352cccebcf740c57db45f2006c0da520113a07587935ea75c Description: GNOME translations for language Finnish Description-md5: fc10ffbbd8a598c55917993acbe77a9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fil Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fil (<< 1:14.04+20140410), language-pack-fil-base (<< 1:14.04+20140410), language-pack-gnome-fil (<< 1:14.04+20140410), language-pack-gnome-fil-base, language-pack-kde-fil (<< 1:14.04+20140410), language-pack-kde-fil-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fil-base (>= 1:14.04+20140410), language-pack-fil Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fil/language-pack-gnome-fil_14.04+20140410_all.deb Size: 2006 MD5sum: 18fb9693a8d0938305d4670064688baf SHA1: 1312a6a477e973cf71663bc5393b90ba8da2e854 SHA256: f3ab414a8127632a1fd2483b32aaf6bb65dbffce69ef443007cbbd3d2ea49287 Description: GNOME translation updates for language Filipino Description-md5: 994e6f9bb26ea7f5b18a544330dea20f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fil-base Priority: optional Section: translations Installed-Size: 120 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fil (<< 1:14.04+20140410), language-pack-fil-base (<< 1:14.04+20140410), language-pack-gnome-fil (<< 1:14.04+20140410), language-pack-gnome-fil-base (<< 1:14.04+20140410), language-pack-kde-fil (<< 1:14.04+20140410), language-pack-kde-fil-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fil (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fil (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fil-base/language-pack-gnome-fil-base_14.04+20140410_all.deb Size: 29366 MD5sum: 4ca3776a28a7e4f7cae157880ec7f671 SHA1: de4eb22c0c640f7aa85b8b74ebad52c2fc091aba SHA256: 5d1053dc92064ebef05f537f45cc1395f936c8232ed53832ea339dce06bec0a5 Description: GNOME translations for language Filipino Description-md5: 27792fe59a82f17297f7063131ff0c81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fo (<< 1:14.04+20140410), language-pack-fo-base (<< 1:14.04+20140410), language-pack-gnome-fo (<< 1:14.04+20140410), language-pack-gnome-fo-base, language-pack-kde-fo (<< 1:14.04+20140410), language-pack-kde-fo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fo-base (>= 1:14.04+20140410), language-pack-fo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fo/language-pack-gnome-fo_14.04+20140410_all.deb Size: 1996 MD5sum: a0dbcd3a826fef00a5b5882451bcd195 SHA1: 2f395a0876308a730f6d27117e32beec8b96c607 SHA256: 624ae0d6c170e855ada1a8f71a1c24a2e2d353a2591e4f82a0a7478f91e9f6ef Description: GNOME translation updates for language Faroese Description-md5: e505f858592774d131cf480d44a66bc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fo-base Priority: optional Section: translations Installed-Size: 918 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fo (<< 1:14.04+20140410), language-pack-fo-base (<< 1:14.04+20140410), language-pack-gnome-fo (<< 1:14.04+20140410), language-pack-gnome-fo-base (<< 1:14.04+20140410), language-pack-kde-fo (<< 1:14.04+20140410), language-pack-kde-fo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fo-base/language-pack-gnome-fo-base_14.04+20140410_all.deb Size: 182100 MD5sum: f0b5ec05e89f368c97e20e816d4a967b SHA1: d9a4e3c1fd43b9ffccd294b4cb7690ef6125acf0 SHA256: 410cc956392b962d0ff532267bfed628cd934e8057eda0fe067be843f10f9563 Description: GNOME translations for language Faroese Description-md5: ad827fc1fba03b1536905c35d2d01824 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fr (<< 1:14.04+20140410), language-pack-fr-base (<< 1:14.04+20140410), language-pack-gnome-fr (<< 1:14.04+20140410), language-pack-gnome-fr-base, language-pack-kde-fr (<< 1:14.04+20140410), language-pack-kde-fr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fr-base (>= 1:14.04+20140410), language-pack-fr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fr/language-pack-gnome-fr_14.04+20140410_all.deb Size: 2002 MD5sum: 1bd6837cb367e36a821ccfc72e3fdba6 SHA1: ddd92e04b1f7dbe11f826184f5d94df01e7b5661 SHA256: 018942e36b733469ecdf79c62499ea552aeeed3ec71da6b5b466a0419c05acff Description: GNOME translation updates for language French Description-md5: 21adbce30a921a4d7cc42bf6b23ce710 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-gnome-fr-base Priority: optional Section: translations Installed-Size: 15334 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fr (<< 1:14.04+20140410), language-pack-fr-base (<< 1:14.04+20140410), language-pack-gnome-fr (<< 1:14.04+20140410), language-pack-gnome-fr-base (<< 1:14.04+20140410), language-pack-kde-fr (<< 1:14.04+20140410), language-pack-kde-fr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fr-base/language-pack-gnome-fr-base_14.04+20140410_all.deb Size: 5310174 MD5sum: f81d08786f451fd9b3e7e50fef8e4c5d SHA1: 5a74d9815f09e29554313c88a2ee6863d613d5e6 SHA256: f1d6bc2663203cfaf719d7a3b79169e0c6b1ef0915e6d11550e62d611ecce120 Description: GNOME translations for language French Description-md5: b901a09fbcee9911358fb23d15c18001 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, lubuntu-live Package: language-pack-gnome-fur Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fur (<< 1:14.04+20140410), language-pack-fur-base (<< 1:14.04+20140410), language-pack-gnome-fur (<< 1:14.04+20140410), language-pack-gnome-fur-base, language-pack-kde-fur (<< 1:14.04+20140410), language-pack-kde-fur-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fur-base (>= 1:14.04+20140410), language-pack-fur Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fur/language-pack-gnome-fur_14.04+20140410_all.deb Size: 2026 MD5sum: 85fae7c5a1ae5dbe7c64cd1aded5f2e5 SHA1: a7c651f4f78a2eaba8065402a19d4ad698a0eca6 SHA256: 502c9cf8c149fa9d8942b0d5e84f39a1fb306183bb756fc7176cdecbb1214ffe Description: GNOME translation updates for language Friulian Description-md5: 59d75262a1634576c2eea782910d9e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fur-base Priority: optional Section: translations Installed-Size: 358 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fur (<< 1:14.04+20140410), language-pack-fur-base (<< 1:14.04+20140410), language-pack-gnome-fur (<< 1:14.04+20140410), language-pack-gnome-fur-base (<< 1:14.04+20140410), language-pack-kde-fur (<< 1:14.04+20140410), language-pack-kde-fur-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fur (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fur (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fur-base/language-pack-gnome-fur-base_14.04+20140410_all.deb Size: 100654 MD5sum: 5c40b99bcc15ab0c4a1ba5d79cd9a85b SHA1: fe9fe53ba0a9a5178c2750d6b75a1ea7e7c7b199 SHA256: 4fe25faec9451782a6393d4915864f1e7dd74656b608cd41a8ff575447035664 Description: GNOME translations for language Friulian Description-md5: 1b22c65e63a13d96b4dd14a3e0265b1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fy (<< 1:14.04+20140410), language-pack-fy-base (<< 1:14.04+20140410), language-pack-gnome-fy (<< 1:14.04+20140410), language-pack-gnome-fy-base, language-pack-kde-fy (<< 1:14.04+20140410), language-pack-kde-fy-base (<< 1:14.04+20140410) Depends: language-pack-gnome-fy-base (>= 1:14.04+20140410), language-pack-fy Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-fy/language-pack-gnome-fy_14.04+20140410_all.deb Size: 2036 MD5sum: a19eac1e29da4288d0910a5757a02d57 SHA1: 4352aa4ce22aa8325e54be65ed298a2b5d193cbe SHA256: 1893846564c97a280e2fb213739b5ca4f11fbe905e6e9ab21dcf3bf5e6de8480 Description: GNOME translation updates for language Western Frisian Description-md5: fe574fd39ec51e5587da6fa4f22fbeda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-fy-base Priority: optional Section: translations Installed-Size: 409 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-fy (<< 1:14.04+20140410), language-pack-fy-base (<< 1:14.04+20140410), language-pack-gnome-fy (<< 1:14.04+20140410), language-pack-gnome-fy-base (<< 1:14.04+20140410), language-pack-kde-fy (<< 1:14.04+20140410), language-pack-kde-fy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-fy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-fy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-fy-base/language-pack-gnome-fy-base_14.04+20140410_all.deb Size: 113914 MD5sum: a177f0cbff78d3605cd6f4acc6a8f90e SHA1: a2a3c36788414b5c4954c5e6b31894323d4e04f2 SHA256: f6553cb00b446b2b9e65a6f5369e2ea140d9fe09d87ff557e1d0b19bf897dbea Description: GNOME translations for language Western Frisian Description-md5: 6d368dded6d79f66721ae864f2259bfa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ga Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ga (<< 1:14.04+20140410), language-pack-ga-base (<< 1:14.04+20140410), language-pack-gnome-ga (<< 1:14.04+20140410), language-pack-gnome-ga-base, language-pack-kde-ga (<< 1:14.04+20140410), language-pack-kde-ga-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ga-base (>= 1:14.04+20140410), language-pack-ga Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ga/language-pack-gnome-ga_14.04+20140410_all.deb Size: 2014 MD5sum: 97ab83252be9774d2e391e6e7e80355d SHA1: 3f07a7355252fcb16aa8d3b79025deb2ac9e6b2c SHA256: 09b9f96f6cfe013dcf8a8b73540a1034d0084d570b5eaa6b9060d1a5cbcb7dde Description: GNOME translation updates for language Irish Description-md5: 0cc908d04c46970488a92d91e1fa3eb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ga-base Priority: optional Section: translations Installed-Size: 1121 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-ga (<< 1:14.04+20140410), language-pack-ga-base (<< 1:14.04+20140410), language-pack-gnome-ga (<< 1:14.04+20140410), language-pack-gnome-ga-base (<< 1:14.04+20140410), language-pack-kde-ga (<< 1:14.04+20140410), language-pack-kde-ga-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ga (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ga (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ga-base/language-pack-gnome-ga-base_14.04+20140410_all.deb Size: 354506 MD5sum: dd05256728afcd53f772b7162aeff2ff SHA1: 1ddf3f41aaa9e85214ada70cf15d7cef281890ec SHA256: 9264189af00db2069185c79108681278511ab7769a4b36c206da9435da8d1a16 Description: GNOME translations for language Irish Description-md5: 4b0fc4db3cca34a82e094aa0594f30aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gd Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gd (<< 1:14.04+20140410), language-pack-gd-base (<< 1:14.04+20140410), language-pack-gnome-gd (<< 1:14.04+20140410), language-pack-gnome-gd-base, language-pack-kde-gd (<< 1:14.04+20140410), language-pack-kde-gd-base (<< 1:14.04+20140410) Depends: language-pack-gnome-gd-base (>= 1:14.04+20140410), language-pack-gd Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-gd/language-pack-gnome-gd_14.04+20140410_all.deb Size: 2004 MD5sum: 701e28e63e2b38c4a66778f229380308 SHA1: 6f961bf9b1e890913adf977f56092de7810947d5 SHA256: 525fa261a8d5f46f5b57b48c7636c63237e6174f08a2587e4a9a8d03ceb0e469 Description: GNOME translation updates for language Gaelic; Scottish Gaelic Description-md5: d3d41a5b8521d7116325ee5f62bc4b6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gd-base Priority: optional Section: translations Installed-Size: 2484 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gd (<< 1:14.04+20140410), language-pack-gd-base (<< 1:14.04+20140410), language-pack-gnome-gd (<< 1:14.04+20140410), language-pack-gnome-gd-base (<< 1:14.04+20140410), language-pack-kde-gd (<< 1:14.04+20140410), language-pack-kde-gd-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-gd (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-gd (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-gd-base/language-pack-gnome-gd-base_14.04+20140410_all.deb Size: 715362 MD5sum: c08adc7bb5d7cda554c68fa4c03046d6 SHA1: 5c72e5248732b51e27d137558af84fb69d16a7b6 SHA256: 88ee8f740d9dfe5d6dd38a94026ba8f80aa1347f18c1395e0a4457d77dde1ec4 Description: GNOME translations for language Gaelic; Scottish Gaelic Description-md5: dcb3564a2bab75ff5ce823b7dfd6e695 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gl (<< 1:14.04+20140410), language-pack-gl-base (<< 1:14.04+20140410), language-pack-gnome-gl (<< 1:14.04+20140410), language-pack-gnome-gl-base, language-pack-kde-gl (<< 1:14.04+20140410), language-pack-kde-gl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-gl-base (>= 1:14.04+20140410), language-pack-gl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-gl/language-pack-gnome-gl_14.04+20140410_all.deb Size: 2024 MD5sum: 3232a9cf703e88bcaf322c05cb8f7776 SHA1: 2c5ab2dee28df7f443b6a94f95e52802f1e293f1 SHA256: 89be70d19d859155a6b09a126c9199bafb7891852c273385a33bdbc206efdf2d Description: GNOME translation updates for language Galician Description-md5: 3f6b490651b0c00a48c9d5ea7dbb0540 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gl-base Priority: optional Section: translations Installed-Size: 9486 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gl (<< 1:14.04+20140410), language-pack-gl-base (<< 1:14.04+20140410), language-pack-gnome-gl (<< 1:14.04+20140410), language-pack-gnome-gl-base (<< 1:14.04+20140410), language-pack-kde-gl (<< 1:14.04+20140410), language-pack-kde-gl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-gl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-gl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-gl-base/language-pack-gnome-gl-base_14.04+20140410_all.deb Size: 2590082 MD5sum: 4337df2497e378b4f165139dfb8359b2 SHA1: bf06eadcf7518290929a8a1be5fcb90c93688a1a SHA256: f688b60c4218335eb0ecb3448ef436aea925bbd348ce6ec89458eda47bacb3fa Description: GNOME translations for language Galician Description-md5: b58d2983ed777a15a2ad903880d96493 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gu (<< 1:14.04+20140410), language-pack-gnome-gu-base, language-pack-gu (<< 1:14.04+20140410), language-pack-gu-base (<< 1:14.04+20140410), language-pack-kde-gu (<< 1:14.04+20140410), language-pack-kde-gu-base (<< 1:14.04+20140410) Depends: language-pack-gnome-gu-base (>= 1:14.04+20140410), language-pack-gu Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-gu/language-pack-gnome-gu_14.04+20140410_all.deb Size: 2012 MD5sum: 2e30001c1b4a439d2b3aef8865ad2263 SHA1: 80d2676bcc1b25d49ca7681bb580f601ad221350 SHA256: 463c626454d61810eea02f5f7d8d63d5bd7d0f40ae15ce1e4ffd515e2adb0974 Description: GNOME translation updates for language Gujarati Description-md5: bf62acc24f1c0ad53a1acb347048aaf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gu-base Priority: optional Section: translations Installed-Size: 5109 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gu (<< 1:14.04+20140410), language-pack-gnome-gu-base (<< 1:14.04+20140410), language-pack-gu (<< 1:14.04+20140410), language-pack-gu-base (<< 1:14.04+20140410), language-pack-kde-gu (<< 1:14.04+20140410), language-pack-kde-gu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-gu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-gu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-gu-base/language-pack-gnome-gu-base_14.04+20140410_all.deb Size: 1148014 MD5sum: 5b017392f527f62da8ef08e7c4a95448 SHA1: af464dcf307cdf5e54f3ee395a76d89142f582f7 SHA256: 26164b170de20f244c037bbb40436a9ae46f31fc9658eeec21ac4329e7051ca4 Description: GNOME translations for language Gujarati Description-md5: f7582ec407a93e7d514123e211b2df50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gv (<< 1:14.04+20140410), language-pack-gnome-gv-base, language-pack-gv (<< 1:14.04+20140410), language-pack-gv-base (<< 1:14.04+20140410), language-pack-kde-gv (<< 1:14.04+20140410), language-pack-kde-gv-base (<< 1:14.04+20140410) Depends: language-pack-gnome-gv-base (>= 1:14.04+20140410), language-pack-gv Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-gv/language-pack-gnome-gv_14.04+20140410_all.deb Size: 2006 MD5sum: 60f5d24fb1aa4483e7d64ca89fa37242 SHA1: fc6b81e761d02ddebc891435f739571ca88c3d1b SHA256: 1e2275ca010b10bf6c6e229369ccc5363252e09003dcd4b3a45a85e786819e1c Description: GNOME translation updates for language Manx Description-md5: f8ff66d663013ba21c25d4837b858694 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-gv-base Priority: optional Section: translations Installed-Size: 236 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gv (<< 1:14.04+20140410), language-pack-gnome-gv-base (<< 1:14.04+20140410), language-pack-gv (<< 1:14.04+20140410), language-pack-gv-base (<< 1:14.04+20140410), language-pack-kde-gv (<< 1:14.04+20140410), language-pack-kde-gv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-gv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-gv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-gv-base/language-pack-gnome-gv-base_14.04+20140410_all.deb Size: 66494 MD5sum: 7a0ccaca6467a1a04f3544c2c140d9a8 SHA1: e14a0920893e483678ae05235f3bea2d17f2af17 SHA256: 6343738eaa83dca905e4b087963996875af2e995b84b88cb97a02d63ff1dc41e Description: GNOME translations for language Manx Description-md5: e558809b15364c524dac0755838ba627 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ha Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ha (<< 1:14.04+20140410), language-pack-gnome-ha-base, language-pack-ha (<< 1:14.04+20140410), language-pack-ha-base (<< 1:14.04+20140410), language-pack-kde-ha (<< 1:14.04+20140410), language-pack-kde-ha-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ha-base (>= 1:14.04+20140410), language-pack-ha Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ha/language-pack-gnome-ha_14.04+20140410_all.deb Size: 1996 MD5sum: 276566e36f702a435be3ed50d8a6a857 SHA1: 5497b5dbc33e59b26f352af28b2374a6a74be378 SHA256: 2b09edec3ddbfbf993a930f2290183bb342f45f4da65f671272d46514f6a9101 Description: GNOME translation updates for language Hausa Description-md5: 4a7ba7424f53091ad20bcd041997e08c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ha-base Priority: optional Section: translations Installed-Size: 66 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ha (<< 1:14.04+20140410), language-pack-gnome-ha-base (<< 1:14.04+20140410), language-pack-ha (<< 1:14.04+20140410), language-pack-ha-base (<< 1:14.04+20140410), language-pack-kde-ha (<< 1:14.04+20140410), language-pack-kde-ha-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ha (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ha (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ha-base/language-pack-gnome-ha-base_14.04+20140410_all.deb Size: 12828 MD5sum: a23627e561d3de2145f50b9b9329e7b5 SHA1: c3bac8f1a7730232e746548a27c5c12b5c43ea93 SHA256: ef95ea84f97cbef5c6b7f72d445368edc67a59d5b8957fe19d922da13b634b95 Description: GNOME translations for language Hausa Description-md5: 7cf14c3e0dc4153f5a08791a1daa2c10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-he Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-he (<< 1:14.04+20140410), language-pack-gnome-he-base, language-pack-he (<< 1:14.04+20140410), language-pack-he-base (<< 1:14.04+20140410), language-pack-kde-he (<< 1:14.04+20140410), language-pack-kde-he-base (<< 1:14.04+20140410) Depends: language-pack-gnome-he-base (>= 1:14.04+20140410), language-pack-he Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-he/language-pack-gnome-he_14.04+20140410_all.deb Size: 2002 MD5sum: 14bfe86a28f37e6db505561ac2b33cdc SHA1: 12bd221e2bd7fc278bc314581d53bda862569e85 SHA256: fddba78d16fece899fb59f13f6d5a695fae8a5bd8f3ddeea3f1300d85cd99610 Description: GNOME translation updates for language Hebrew Description-md5: 011d59ad93627223b59a1d2f1f8ba819 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-he-base Priority: optional Section: translations Installed-Size: 5297 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-he (<< 1:14.04+20140410), language-pack-gnome-he-base (<< 1:14.04+20140410), language-pack-he (<< 1:14.04+20140410), language-pack-he-base (<< 1:14.04+20140410), language-pack-kde-he (<< 1:14.04+20140410), language-pack-kde-he-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-he (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-he (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-he-base/language-pack-gnome-he-base_14.04+20140410_all.deb Size: 1396782 MD5sum: 6fc065b562cd7f32526fb4514143610e SHA1: 485ea88c7afbc59fa1ae5e258a386b6c2f06bbd8 SHA256: b5c86b78d16af83f88aff65b01fc8c16eee104e7b8e2a2a11510fce30e5e2db0 Description: GNOME translations for language Hebrew Description-md5: beff55082040d0366e73f9ae97bb8be5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hi (<< 1:14.04+20140410), language-pack-gnome-hi-base, language-pack-hi (<< 1:14.04+20140410), language-pack-hi-base (<< 1:14.04+20140410), language-pack-kde-hi (<< 1:14.04+20140410), language-pack-kde-hi-base (<< 1:14.04+20140410) Depends: language-pack-gnome-hi-base (>= 1:14.04+20140410), language-pack-hi Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-hi/language-pack-gnome-hi_14.04+20140410_all.deb Size: 1998 MD5sum: dc6436a77c7f79da3594adacc602cc4f SHA1: cda94520b86ea10da8428e5af380597318b740f4 SHA256: 69db1fe800372ceb5bd95e7eb7b86317cfb9147172476d9367fdb322a6fb703f Description: GNOME translation updates for language Hindi Description-md5: 9d65f9fe672554b8a95723b2f44b0535 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-hi-base Priority: optional Section: translations Installed-Size: 6800 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hi (<< 1:14.04+20140410), language-pack-gnome-hi-base (<< 1:14.04+20140410), language-pack-hi (<< 1:14.04+20140410), language-pack-hi-base (<< 1:14.04+20140410), language-pack-kde-hi (<< 1:14.04+20140410), language-pack-kde-hi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-hi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-hi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-hi-base/language-pack-gnome-hi-base_14.04+20140410_all.deb Size: 1445656 MD5sum: ec2ba6fdab7101a40fb70d8063c4f227 SHA1: e8102a179f1b105f52c57e0ef065ec0ac9fea611 SHA256: 1dc24d54bbe45c85bdfab13601845697ed78e15905a8e6fd14c718e0846fbc97 Description: GNOME translations for language Hindi Description-md5: 8971cdb99d712d856b39264edf215aa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-hr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hr (<< 1:14.04+20140410), language-pack-gnome-hr-base, language-pack-hr (<< 1:14.04+20140410), language-pack-hr-base (<< 1:14.04+20140410), language-pack-kde-hr (<< 1:14.04+20140410), language-pack-kde-hr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-hr-base (>= 1:14.04+20140410), language-pack-hr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-hr/language-pack-gnome-hr_14.04+20140410_all.deb Size: 1980 MD5sum: 3851435d09a9437271f720d098948ced SHA1: d5d3d5ee7b218a0147d1f9afe14fb54f4bb868c7 SHA256: 1374b3200f11698a05dda1dcc2a88d254cf892b3d6f2865a35e41cbe21d7ad14 Description: GNOME translation updates for language Croatian Description-md5: 044892d57458d04841f2ae46766bbe68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hr-base Priority: optional Section: translations Installed-Size: 3622 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hr (<< 1:14.04+20140410), language-pack-gnome-hr-base (<< 1:14.04+20140410), language-pack-hr (<< 1:14.04+20140410), language-pack-hr-base (<< 1:14.04+20140410), language-pack-kde-hr (<< 1:14.04+20140410), language-pack-kde-hr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-hr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-hr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-hr-base/language-pack-gnome-hr-base_14.04+20140410_all.deb Size: 1064430 MD5sum: 06817a293d5208bdffb56871d0aee5f7 SHA1: f9db8e23aae396c56d4ffeefc0416f34b8d0573c SHA256: afcd7e030b8316bf88c53251f4551f96a0770fc05a0203099ab058518cde8aa5 Description: GNOME translations for language Croatian Description-md5: 11be93aa79c21ac5e9d40b3719403117 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ht Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ht (<< 1:14.04+20140410), language-pack-gnome-ht-base, language-pack-ht (<< 1:14.04+20140410), language-pack-ht-base (<< 1:14.04+20140410), language-pack-kde-ht (<< 1:14.04+20140410), language-pack-kde-ht-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ht-base (>= 1:14.04+20140410), language-pack-ht Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ht/language-pack-gnome-ht_14.04+20140410_all.deb Size: 2044 MD5sum: d026def6f49a85d52dc456b48cef9032 SHA1: 0066f18272fe6ed4787e2f9815604fe47ff2ede3 SHA256: c73a804ba3c83fb54c6b785d83636a7be9b30073024b5417ee22bfd8e034d9bd Description: GNOME translation updates for language Haitian; Haitian Creole Description-md5: 23fb6115636bca5b2c257fdad69b02e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ht-base Priority: optional Section: translations Installed-Size: 54 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ht (<< 1:14.04+20140410), language-pack-gnome-ht-base (<< 1:14.04+20140410), language-pack-ht (<< 1:14.04+20140410), language-pack-ht-base (<< 1:14.04+20140410), language-pack-kde-ht (<< 1:14.04+20140410), language-pack-kde-ht-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ht (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ht (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ht-base/language-pack-gnome-ht-base_14.04+20140410_all.deb Size: 8458 MD5sum: 549406237a8f331f48d1872891c33986 SHA1: 19c3b985f407cbfc5ffa27bf5fc81274b5ce6fd1 SHA256: 2a458f1fe775c6b4d9b19f9d3f0ccd6af9107abc16b74155d08bac4d611a68d1 Description: GNOME translations for language Haitian; Haitian Creole Description-md5: 57d2119d3e8bda0e15b5ea21900b2139 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hu (<< 1:14.04+20140410), language-pack-gnome-hu-base, language-pack-hu (<< 1:14.04+20140410), language-pack-hu-base (<< 1:14.04+20140410), language-pack-kde-hu (<< 1:14.04+20140410), language-pack-kde-hu-base (<< 1:14.04+20140410) Depends: language-pack-gnome-hu-base (>= 1:14.04+20140410), language-pack-hu Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-hu/language-pack-gnome-hu_14.04+20140410_all.deb Size: 2022 MD5sum: 53bc7da6a686b6e7dd9604d2aad4fae2 SHA1: 875343658a074306ae91757839255fcefa285cba SHA256: 7f8926d8ae447fb209af7711773cf724cb0b2d5f100053043a248657c3583754 Description: GNOME translation updates for language Hungarian Description-md5: 7eace40e3cbcdb248004e88dea56dec4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hu-base Priority: optional Section: translations Installed-Size: 9152 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hu (<< 1:14.04+20140410), language-pack-gnome-hu-base (<< 1:14.04+20140410), language-pack-hu (<< 1:14.04+20140410), language-pack-hu-base (<< 1:14.04+20140410), language-pack-kde-hu (<< 1:14.04+20140410), language-pack-kde-hu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-hu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-hu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-hu-base/language-pack-gnome-hu-base_14.04+20140410_all.deb Size: 2228058 MD5sum: 6e6deb1f831eddf6b4da9f598f70431a SHA1: 8de405ee80a43c73e5a372c0664b0dcdb3c37923 SHA256: bbba1d5c4201b67c0af9e2e8892b542844aac83ad7f1eb4ae258110d74bf3069 Description: GNOME translations for language Hungarian Description-md5: 5f77cf8b924f572be024835291c44cef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hy (<< 1:14.04+20140410), language-pack-gnome-hy-base, language-pack-hy (<< 1:14.04+20140410), language-pack-hy-base (<< 1:14.04+20140410), language-pack-kde-hy (<< 1:14.04+20140410), language-pack-kde-hy-base (<< 1:14.04+20140410) Depends: language-pack-gnome-hy-base (>= 1:14.04+20140410), language-pack-hy Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-hy/language-pack-gnome-hy_14.04+20140410_all.deb Size: 1986 MD5sum: af97901d19c6511dfb80ead11801ec42 SHA1: 07414319887b7bac1c7f8457161bf1deead3e4fd SHA256: 49d8d60a1fce8b50981832289d8aa3f8bd4d72e623fb426ac9e33d5ff35113be Description: GNOME translation updates for language Armenian Description-md5: 7662e0ac8d9a861b610f915339625f38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-hy-base Priority: optional Section: translations Installed-Size: 852 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hy (<< 1:14.04+20140410), language-pack-gnome-hy-base (<< 1:14.04+20140410), language-pack-hy (<< 1:14.04+20140410), language-pack-hy-base (<< 1:14.04+20140410), language-pack-kde-hy (<< 1:14.04+20140410), language-pack-kde-hy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-hy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-hy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-hy-base/language-pack-gnome-hy-base_14.04+20140410_all.deb Size: 200082 MD5sum: f1e44165c8e520b2270574ad1c40a1d3 SHA1: 277c20b6bb97e2f0b36960fcd516bf3475f0e06a SHA256: bcf962e57715b6e8c5a771bca2cfbffed84e7a6bfcaf96428f8f168c43b73597 Description: GNOME translations for language Armenian Description-md5: 5f80263914549f24a56fd804b7ea8268 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ia Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ia (<< 1:14.04+20140410), language-pack-gnome-ia-base, language-pack-ia (<< 1:14.04+20140410), language-pack-ia-base (<< 1:14.04+20140410), language-pack-kde-ia (<< 1:14.04+20140410), language-pack-kde-ia-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ia-base (>= 1:14.04+20140410), language-pack-ia Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ia/language-pack-gnome-ia_14.04+20140410_all.deb Size: 2016 MD5sum: 16f0bae7bec85312103b97ca8e997ecf SHA1: 9091d8dfc8ef1cff3a1c70eaa481f8b485e35e0b SHA256: 95b2e690d13816f411b8a53d7358e1480113dcffbb261ad15967607dc16eb130 Description: GNOME translation updates for language Interlingua (International Auxiliary Language Association) Description-md5: de3fb08a7b5ad1827191893cd6ad11cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ia-base Priority: optional Section: translations Installed-Size: 182 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ia (<< 1:14.04+20140410), language-pack-gnome-ia-base (<< 1:14.04+20140410), language-pack-ia (<< 1:14.04+20140410), language-pack-ia-base (<< 1:14.04+20140410), language-pack-kde-ia (<< 1:14.04+20140410), language-pack-kde-ia-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ia (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ia (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ia-base/language-pack-gnome-ia-base_14.04+20140410_all.deb Size: 45294 MD5sum: 0bd3c0d90de4f66992a233b8eeb2e2b6 SHA1: 9af20be58fb14546951db1906ab057acbd632bd2 SHA256: f158240df0833c9e1976757e8176fd7d37c866a0ff4f6d0e4b48dcbb51b6ca3e Description: GNOME translations for language Interlingua (International Auxiliary Language Association) Description-md5: 8a76f2f4c32992f8db56551f1df2cf29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-id Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-id (<< 1:14.04+20140410), language-pack-gnome-id-base, language-pack-id (<< 1:14.04+20140410), language-pack-id-base (<< 1:14.04+20140410), language-pack-kde-id (<< 1:14.04+20140410), language-pack-kde-id-base (<< 1:14.04+20140410) Depends: language-pack-gnome-id-base (>= 1:14.04+20140410), language-pack-id Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-id/language-pack-gnome-id_14.04+20140410_all.deb Size: 2002 MD5sum: c784df12bdc23412a819c6c6999826e2 SHA1: 56c61293206b448e76d93acb4ebaaa00745a4a2f SHA256: 4ff8de080aaf070ba915c3e7dfeaf65ffab0861279c52c9a05db14e73085f9c4 Description: GNOME translation updates for language Indonesian Description-md5: 6911adb303367e541af85d78473fee32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-id-base Priority: optional Section: translations Installed-Size: 6215 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-id (<< 1:14.04+20140410), language-pack-gnome-id-base (<< 1:14.04+20140410), language-pack-id (<< 1:14.04+20140410), language-pack-id-base (<< 1:14.04+20140410), language-pack-kde-id (<< 1:14.04+20140410), language-pack-kde-id-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-id (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-id (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-id-base/language-pack-gnome-id-base_14.04+20140410_all.deb Size: 1669060 MD5sum: 1c0dfdb1c65888a3d059c1df0f08f29c SHA1: 6859982accafcbf4811c047ca6cf6a33028789d6 SHA256: 84b32cfbf664386b3cd8e20c9882c4e41666cba5296f9e1ef0cb72bbb338ad88 Description: GNOME translations for language Indonesian Description-md5: 7debbdf0cb01fd3c61b80db33a66a598 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ig Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ig (<< 1:14.04+20140410), language-pack-gnome-ig-base, language-pack-ig (<< 1:14.04+20140410), language-pack-ig-base (<< 1:14.04+20140410), language-pack-kde-ig (<< 1:14.04+20140410), language-pack-kde-ig-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ig-base (>= 1:14.04+20140410), language-pack-ig Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ig/language-pack-gnome-ig_14.04+20140410_all.deb Size: 2012 MD5sum: 12eadc571f636c66b2cdea988f8eac6c SHA1: 9b3767b17daa38888d0db128e057f19a0c4a5ae5 SHA256: b5003f86a2c999384729d90be3cf615831084975c5528ea173b6278acfa78867 Description: GNOME translation updates for language Igbo Description-md5: 0f783ca5727b56d998626d7e6334dc4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ig-base Priority: optional Section: translations Installed-Size: 96 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ig (<< 1:14.04+20140410), language-pack-gnome-ig-base (<< 1:14.04+20140410), language-pack-ig (<< 1:14.04+20140410), language-pack-ig-base (<< 1:14.04+20140410), language-pack-kde-ig (<< 1:14.04+20140410), language-pack-kde-ig-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ig (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ig (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ig-base/language-pack-gnome-ig-base_14.04+20140410_all.deb Size: 22128 MD5sum: 4d1197d216773d51e9b12916179e0192 SHA1: d58fb5ab76c84937efac309a3375bacc381c89e9 SHA256: 188e946588aa5f284963c27207f16f4b59865d51b2fc7a00f55a7793c91c7e76 Description: GNOME translations for language Igbo Description-md5: 365d013a0736ef9a2e355ce4d7cb3464 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-is Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-is (<< 1:14.04+20140410), language-pack-gnome-is-base, language-pack-is (<< 1:14.04+20140410), language-pack-is-base (<< 1:14.04+20140410), language-pack-kde-is (<< 1:14.04+20140410), language-pack-kde-is-base (<< 1:14.04+20140410) Depends: language-pack-gnome-is-base (>= 1:14.04+20140410), language-pack-is Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-is/language-pack-gnome-is_14.04+20140410_all.deb Size: 2004 MD5sum: 58b910acd26cd99bee0f25854607cf31 SHA1: 128385f593f5a63c6400e5f1164a72de35516b48 SHA256: b2c2645265c2b9d78d9d9306bce96ddb078f3d67f0f3dd4228e26dcaae795b45 Description: GNOME translation updates for language Icelandic Description-md5: a26cf69f6d0d6210f13f5abfdea8c869 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-is-base Priority: optional Section: translations Installed-Size: 1663 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-is (<< 1:14.04+20140410), language-pack-gnome-is-base (<< 1:14.04+20140410), language-pack-is (<< 1:14.04+20140410), language-pack-is-base (<< 1:14.04+20140410), language-pack-kde-is (<< 1:14.04+20140410), language-pack-kde-is-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-is (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-is (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-is-base/language-pack-gnome-is-base_14.04+20140410_all.deb Size: 535368 MD5sum: 335424a389f73f95d16d2483f970cbd5 SHA1: b1e00f968a1bcbf5b5bf1c3c3cd91bcefd5e8023 SHA256: a307a3ec4ed23c62eabdbd57442a0059ec668025dc74ad8de61e2058c083b763 Description: GNOME translations for language Icelandic Description-md5: 701eaaf2c397ba4c8abcd517267b7bd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-it Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-it (<< 1:14.04+20140410), language-pack-gnome-it-base, language-pack-it (<< 1:14.04+20140410), language-pack-it-base (<< 1:14.04+20140410), language-pack-kde-it (<< 1:14.04+20140410), language-pack-kde-it-base (<< 1:14.04+20140410) Depends: language-pack-gnome-it-base (>= 1:14.04+20140410), language-pack-it Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-it/language-pack-gnome-it_14.04+20140410_all.deb Size: 2002 MD5sum: 567dd87a2fcc8dec9c5925167a81d5c0 SHA1: 7eb1f367e7d31a2c1185361c310880906b069240 SHA256: 581ea649624364ce9712aeaf4e383454e154fa3882384ccf3e1d7f68389be18a Description: GNOME translation updates for language Italian Description-md5: 32f81303de09a8b4c153e2c9f933756e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-it-base Priority: optional Section: translations Installed-Size: 9086 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-it (<< 1:14.04+20140410), language-pack-gnome-it-base (<< 1:14.04+20140410), language-pack-it (<< 1:14.04+20140410), language-pack-it-base (<< 1:14.04+20140410), language-pack-kde-it (<< 1:14.04+20140410), language-pack-kde-it-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-it (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-it (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-it-base/language-pack-gnome-it-base_14.04+20140410_all.deb Size: 2792978 MD5sum: 438e1b0eb18031f7a045e9795763c877 SHA1: b03ce937128a6d752b5a1ae1d2b9c276b4d13502 SHA256: 4b4f09d13b55636567bbcb4458db5dfaa6c7deb55ff3dcdb85a0849d3ee048ee Description: GNOME translations for language Italian Description-md5: 127bd385b638390c80e6549d357158da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ja Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ja (<< 1:14.04+20140410), language-pack-gnome-ja-base, language-pack-ja (<< 1:14.04+20140410), language-pack-ja-base (<< 1:14.04+20140410), language-pack-kde-ja (<< 1:14.04+20140410), language-pack-kde-ja-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ja-base (>= 1:14.04+20140410), language-pack-ja Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ja/language-pack-gnome-ja_14.04+20140410_all.deb Size: 2014 MD5sum: 3d97bc0eeff625e72cdc4adb4fd12ea5 SHA1: f8050be7e8dce706d979525b15c2c9d89628123e SHA256: 2c06801dadaa13e87a6939c3f82ebb87ac9044db28ba9b3594ff33adab945751 Description: GNOME translation updates for language Japanese Description-md5: 4a04c4a4bd51eccfcc200fe3c710ee1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-ja-base Priority: optional Section: translations Installed-Size: 9498 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ja (<< 1:14.04+20140410), language-pack-gnome-ja-base (<< 1:14.04+20140410), language-pack-ja (<< 1:14.04+20140410), language-pack-ja-base (<< 1:14.04+20140410), language-pack-kde-ja (<< 1:14.04+20140410), language-pack-kde-ja-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ja (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ja (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ja-base/language-pack-gnome-ja-base_14.04+20140410_all.deb Size: 2637080 MD5sum: 9a0236056b9a00448139309b8553d1b6 SHA1: c4d2b32578e785c91c2c5cf60750e1ee26bc0e1e SHA256: a49071d75a5f0552c5240034ad87a51b5bab1346980c95383e96e2288ace9e7b Description: GNOME translations for language Japanese Description-md5: 13319f21aefdbb1cb1c486f5f8c7d7a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-ka Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ka (<< 1:14.04+20140410), language-pack-gnome-ka-base, language-pack-ka (<< 1:14.04+20140410), language-pack-ka-base (<< 1:14.04+20140410), language-pack-kde-ka (<< 1:14.04+20140410), language-pack-kde-ka-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ka-base (>= 1:14.04+20140410), language-pack-ka Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ka/language-pack-gnome-ka_14.04+20140410_all.deb Size: 2002 MD5sum: 80a7fe695486970fbc3ef51cfc2e8e35 SHA1: 5142f3b70e62611ae9fc839e42a5026b79a8d9b3 SHA256: 7b1f675a027bbf19bbd2d41222ce41ea407017ff46d1d40f48c7a8fae017a3b2 Description: GNOME translation updates for language Georgian Description-md5: ec29bcfa3737fb537c84960a86a2257e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ka-base Priority: optional Section: translations Installed-Size: 1635 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ka (<< 1:14.04+20140410), language-pack-gnome-ka-base (<< 1:14.04+20140410), language-pack-ka (<< 1:14.04+20140410), language-pack-ka-base (<< 1:14.04+20140410), language-pack-kde-ka (<< 1:14.04+20140410), language-pack-kde-ka-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ka (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ka (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ka-base/language-pack-gnome-ka-base_14.04+20140410_all.deb Size: 358930 MD5sum: 4c33b7778d8efb97d19ebd40f19485bc SHA1: e57d78ac6f11c42ced36a4796b8d7e9d41ea3425 SHA256: 22ce605115a731f509cf605513ef1ee18bd69d43c80a21568e9025f3236d38bb Description: GNOME translations for language Georgian Description-md5: 7c03451b213b867665adccb84361abff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kk (<< 1:14.04+20140410), language-pack-gnome-kk-base, language-pack-kde-kk (<< 1:14.04+20140410), language-pack-kde-kk-base (<< 1:14.04+20140410), language-pack-kk (<< 1:14.04+20140410), language-pack-kk-base (<< 1:14.04+20140410) Depends: language-pack-gnome-kk-base (>= 1:14.04+20140410), language-pack-kk Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-kk/language-pack-gnome-kk_14.04+20140410_all.deb Size: 1998 MD5sum: a0b24cc7eec5e0e4fa444a4d96ff3952 SHA1: 12b33ed2d4df26f78cdf8f025e464d95f7d55b3e SHA256: c477be00f8915507b9852c053fc0cb3007ba3fd04d2e9948d3032524662ae2a8 Description: GNOME translation updates for language Kazakh Description-md5: 714afabe2ef0f5eb4fa6a2cb9eb4c5ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kk-base Priority: optional Section: translations Installed-Size: 1937 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kk (<< 1:14.04+20140410), language-pack-gnome-kk-base (<< 1:14.04+20140410), language-pack-kde-kk (<< 1:14.04+20140410), language-pack-kde-kk-base (<< 1:14.04+20140410), language-pack-kk (<< 1:14.04+20140410), language-pack-kk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-kk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-kk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-kk-base/language-pack-gnome-kk-base_14.04+20140410_all.deb Size: 439986 MD5sum: 066547028700451b2921a08bb92ec73e SHA1: 6b1ae1258f6b4635c2cd174539069f4160283989 SHA256: 7abb364f757552df885b400e3b707a6c08ba2b5fd8826ee1e74d5684b2ca074f Description: GNOME translations for language Kazakh Description-md5: e60f8c0fb55f84da371ee524f749163c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kl (<< 1:14.04+20140410), language-pack-gnome-kl-base, language-pack-kde-kl (<< 1:14.04+20140410), language-pack-kde-kl-base (<< 1:14.04+20140410), language-pack-kl (<< 1:14.04+20140410), language-pack-kl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-kl-base (>= 1:14.04+20140410), language-pack-kl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-kl/language-pack-gnome-kl_14.04+20140410_all.deb Size: 1994 MD5sum: e8e0160187130e46f63105e226e1a2e3 SHA1: 92f0fc8a9be16a72c4b52391f99c76a5633367a8 SHA256: 0d62ffbb30fd563c25581e37f9e355748b9d298ef9e586e767f49ecb7612b1aa Description: GNOME translation updates for language Kalaallisut; Greenlandic Description-md5: c557476b901eb95c853c32746bcc813f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kl-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kl (<< 1:14.04+20140410), language-pack-gnome-kl-base (<< 1:14.04+20140410), language-pack-kde-kl (<< 1:14.04+20140410), language-pack-kde-kl-base (<< 1:14.04+20140410), language-pack-kl (<< 1:14.04+20140410), language-pack-kl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-kl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-kl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-kl-base/language-pack-gnome-kl-base_14.04+20140410_all.deb Size: 5470 MD5sum: ed9785fb41a56d47ae66dcea2d34bfa4 SHA1: cc4d2b39a997fc99c16e2ce853e7c0442582cc9a SHA256: d9c00f8ffe88d769dc99caf0ec9a83de4be2803b555c26f1101ce4649f981e24 Description: GNOME translations for language Kalaallisut; Greenlandic Description-md5: feead0b70fde93da631a34cea11dda18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-km Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-km (<< 1:14.04+20140410), language-pack-gnome-km-base, language-pack-kde-km (<< 1:14.04+20140410), language-pack-kde-km-base (<< 1:14.04+20140410), language-pack-km (<< 1:14.04+20140410), language-pack-km-base (<< 1:14.04+20140410) Depends: language-pack-gnome-km-base (>= 1:14.04+20140410), language-pack-km Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-km/language-pack-gnome-km_14.04+20140410_all.deb Size: 2018 MD5sum: 44ea9f7aeaa1b34ec5f7d32b94bd9d9a SHA1: 3445a77b49133d3a09db28e14252e834c49facc5 SHA256: 9cf33c0a070e2fbd48b9236ac8f35e6b97e17c4533f30f9edb53a56d79cf2319 Description: GNOME translation updates for language Central Khmer Description-md5: e14deb3436dbea25abc58ec302b968f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-km-base Priority: optional Section: translations Installed-Size: 6229 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-km (<< 1:14.04+20140410), language-pack-gnome-km-base (<< 1:14.04+20140410), language-pack-kde-km (<< 1:14.04+20140410), language-pack-kde-km-base (<< 1:14.04+20140410), language-pack-km (<< 1:14.04+20140410), language-pack-km-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-km (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-km (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-km-base/language-pack-gnome-km-base_14.04+20140410_all.deb Size: 1216538 MD5sum: f110e30ff2034fb3d2f6b71e6dea8009 SHA1: 5e1f4b3cad6c70d1636e25b183bc4b6f3c224329 SHA256: 4bf8cd0808dda7642c5b66da0037e4dfe065d0139810503074d128fa2d7d39ed Description: GNOME translations for language Central Khmer Description-md5: 539644a98859f7b9915b32f93acc41bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kn (<< 1:14.04+20140410), language-pack-gnome-kn-base, language-pack-kde-kn (<< 1:14.04+20140410), language-pack-kde-kn-base (<< 1:14.04+20140410), language-pack-kn (<< 1:14.04+20140410), language-pack-kn-base (<< 1:14.04+20140410) Depends: language-pack-gnome-kn-base (>= 1:14.04+20140410), language-pack-kn Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-kn/language-pack-gnome-kn_14.04+20140410_all.deb Size: 2026 MD5sum: 90874c5d81a64efbfed10110ef54f43e SHA1: 2d3433e51d46acada53962e0a1e78f88dce55e2c SHA256: 85e83ed29747ebcca7cc64f7f8579b0489678131fe39d20c311c69de73a08141 Description: GNOME translation updates for language Kannada Description-md5: a5aa28c8af1e1dcea8b7ed58d1dc79ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kn-base Priority: optional Section: translations Installed-Size: 5794 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kn (<< 1:14.04+20140410), language-pack-gnome-kn-base (<< 1:14.04+20140410), language-pack-kde-kn (<< 1:14.04+20140410), language-pack-kde-kn-base (<< 1:14.04+20140410), language-pack-kn (<< 1:14.04+20140410), language-pack-kn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-kn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-kn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-kn-base/language-pack-gnome-kn-base_14.04+20140410_all.deb Size: 1178058 MD5sum: 79de1196b923a8dd106619d20c10c6a1 SHA1: a68f9af361615304dd602cdacd0aa08865cc6fad SHA256: bc9456bcf6afbf9447b8ac10024e8f0a6e4a267833c6a50cf070aefb6e98d7e7 Description: GNOME translations for language Kannada Description-md5: 813626350bec0223e8660a5546539b16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ko Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ko (<< 1:14.04+20140410), language-pack-gnome-ko-base, language-pack-kde-ko (<< 1:14.04+20140410), language-pack-kde-ko-base (<< 1:14.04+20140410), language-pack-ko (<< 1:14.04+20140410), language-pack-ko-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ko-base (>= 1:14.04+20140410), language-pack-ko Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ko/language-pack-gnome-ko_14.04+20140410_all.deb Size: 2004 MD5sum: 01f8cd946ea84957f9408dc9027381f2 SHA1: 9e4c34eec34c700af0af746007a968d5c040c72a SHA256: 0ddd99be5d5a1d90c4256ff7e60f740b64220e5802abd8625ec695eda30623d6 Description: GNOME translation updates for language Korean Description-md5: 4828e180b1e2aa3b76474b717ec1111f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ko-base Priority: optional Section: translations Installed-Size: 6616 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ko (<< 1:14.04+20140410), language-pack-gnome-ko-base (<< 1:14.04+20140410), language-pack-kde-ko (<< 1:14.04+20140410), language-pack-kde-ko-base (<< 1:14.04+20140410), language-pack-ko (<< 1:14.04+20140410), language-pack-ko-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ko (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ko (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ko-base/language-pack-gnome-ko-base_14.04+20140410_all.deb Size: 1772258 MD5sum: ce1a0bf4fc17f8328ca6b9b45a13a4a7 SHA1: bf0a8d2448a56b83dfe1f6a5ccfca3c40616d7a6 SHA256: 91bd3fd25b4eafcdcf5081944ac9aa96fafcd567acf3ad9b037f88b58916bbc5 Description: GNOME translations for language Korean Description-md5: 7c19ce071b7c68f137ffd5ed07445cda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ks Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ks (<< 1:14.04+20140410), language-pack-gnome-ks-base, language-pack-kde-ks (<< 1:14.04+20140410), language-pack-kde-ks-base (<< 1:14.04+20140410), language-pack-ks (<< 1:14.04+20140410), language-pack-ks-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ks-base (>= 1:14.04+20140410), language-pack-ks Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ks/language-pack-gnome-ks_14.04+20140410_all.deb Size: 2024 MD5sum: 3ec3f40803a2d6d1975df3fede0a0ca2 SHA1: 19fa0d7999659f324d81d4921f87750d98f50230 SHA256: 20faaee14e0896649719a5ffacfc271fe38143aa2e9db81b7887b50d69c330b3 Description: GNOME translation updates for language Kashmiri Description-md5: 04ac20233c1c24f813b17f5ce881270f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ks-base Priority: optional Section: translations Installed-Size: 66 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ks (<< 1:14.04+20140410), language-pack-gnome-ks-base (<< 1:14.04+20140410), language-pack-kde-ks (<< 1:14.04+20140410), language-pack-kde-ks-base (<< 1:14.04+20140410), language-pack-ks (<< 1:14.04+20140410), language-pack-ks-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ks (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ks (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ks-base/language-pack-gnome-ks-base_14.04+20140410_all.deb Size: 11372 MD5sum: ed7e03ae831c4366958d72b56e77a474 SHA1: a6cf5f97d096907f091338ddadd23fa4c843fb24 SHA256: 3fed790986cbc2a088b29e44291933bbf48fd74a7f3c155dbb875a4b2367f8ec Description: GNOME translations for language Kashmiri Description-md5: b06856346dd05003eab3dc0e3782dd27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ku Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ku (<< 1:14.04+20140410), language-pack-gnome-ku-base, language-pack-kde-ku (<< 1:14.04+20140410), language-pack-kde-ku-base (<< 1:14.04+20140410), language-pack-ku (<< 1:14.04+20140410), language-pack-ku-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ku-base (>= 1:14.04+20140410), language-pack-ku Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ku/language-pack-gnome-ku_14.04+20140410_all.deb Size: 1998 MD5sum: 0afd184c4bf4e1a8df4d45c543c158b1 SHA1: af192780e9efccb4d0d3a35b9e5ad25f52de33ae SHA256: 08f92600f292308b0580977efe618029515aa564010a23a063c339bf8beb3c10 Description: GNOME translation updates for language Kurdish Description-md5: 533d53605921556aaeeabfb009c47e40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ku-base Priority: optional Section: translations Installed-Size: 857 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ku (<< 1:14.04+20140410), language-pack-gnome-ku-base (<< 1:14.04+20140410), language-pack-kde-ku (<< 1:14.04+20140410), language-pack-kde-ku-base (<< 1:14.04+20140410), language-pack-ku (<< 1:14.04+20140410), language-pack-ku-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ku (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ku (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ku-base/language-pack-gnome-ku-base_14.04+20140410_all.deb Size: 271958 MD5sum: 9e23aead8735241900f0ac27c9c86ea7 SHA1: 3d5f2c591a535040aea9b0fb813d2217a84b4399 SHA256: c8bd27e0c72413ef387c2797697adc48fae29ddd084c19365d3e535e13bfff53 Description: GNOME translations for language Kurdish Description-md5: 08e62d14f8279cdcf46a6d0100c1894c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kw (<< 1:14.04+20140410), language-pack-gnome-kw-base, language-pack-kde-kw (<< 1:14.04+20140410), language-pack-kde-kw-base (<< 1:14.04+20140410), language-pack-kw (<< 1:14.04+20140410), language-pack-kw-base (<< 1:14.04+20140410) Depends: language-pack-gnome-kw-base (>= 1:14.04+20140410), language-pack-kw Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-kw/language-pack-gnome-kw_14.04+20140410_all.deb Size: 1982 MD5sum: deb4eb35c148b77c664fe59381d244c9 SHA1: af2a7243bd29f04eab2e16fcba0006657aa884fd SHA256: e89d9a5d2fc9df5360e8df03b807346a177d55310d90472388603e09123365a0 Description: GNOME translation updates for language Cornish Description-md5: bb569c59cbc699ac6518dee822bb89c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-kw-base Priority: optional Section: translations Installed-Size: 110 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kw (<< 1:14.04+20140410), language-pack-gnome-kw-base (<< 1:14.04+20140410), language-pack-kde-kw (<< 1:14.04+20140410), language-pack-kde-kw-base (<< 1:14.04+20140410), language-pack-kw (<< 1:14.04+20140410), language-pack-kw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-kw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-kw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-kw-base/language-pack-gnome-kw-base_14.04+20140410_all.deb Size: 25268 MD5sum: 14feca216feb911c361892156e5a8ccf SHA1: cd7c1ce405bc2ea48a865d6e8252a4e7c2f4d7ea SHA256: ba7f01604eff35744f0bf2b1bd860b2732ee2d95c015cb51a52274c879e17892 Description: GNOME translations for language Cornish Description-md5: d1d5c7bf9506b8207f70817d02d5bf7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ky Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ky (<< 1:14.04+20140410), language-pack-gnome-ky-base, language-pack-kde-ky (<< 1:14.04+20140410), language-pack-kde-ky-base (<< 1:14.04+20140410), language-pack-ky (<< 1:14.04+20140410), language-pack-ky-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ky-base (>= 1:14.04+20140410), language-pack-ky Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ky/language-pack-gnome-ky_14.04+20140410_all.deb Size: 2018 MD5sum: 4692c3cd8b546bc7b97a6f71c6cc7345 SHA1: bf209976e88689b1cf66ff32d53b2bf00ae2fae1 SHA256: 00dd5622b8396bedc16a8ad148f48e49aa6f6a2f646cd45d7f7eeebc2c18ac41 Description: GNOME translation updates for language Kirghiz; Kyrgyz Description-md5: e040bd6c796ccd8d9fd664fd3518b46b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ky-base Priority: optional Section: translations Installed-Size: 472 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ky (<< 1:14.04+20140410), language-pack-gnome-ky-base (<< 1:14.04+20140410), language-pack-kde-ky (<< 1:14.04+20140410), language-pack-kde-ky-base (<< 1:14.04+20140410), language-pack-ky (<< 1:14.04+20140410), language-pack-ky-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ky (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ky (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ky-base/language-pack-gnome-ky-base_14.04+20140410_all.deb Size: 138250 MD5sum: b8d92e9be01125b2c2492d285374227c SHA1: 0778204460feabd3599e1c9b7856269a13b5ef82 SHA256: 44dfb11e732120cf6ce1a7bac2e9dcbe0eebf36937bacd3f53fa590f7a0ddee8 Description: GNOME translations for language Kirghiz; Kyrgyz Description-md5: 6c88610b73d5a1c0aa0ddb7611503df5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lb (<< 1:14.04+20140410), language-pack-gnome-lb-base, language-pack-kde-lb (<< 1:14.04+20140410), language-pack-kde-lb-base (<< 1:14.04+20140410), language-pack-lb (<< 1:14.04+20140410), language-pack-lb-base (<< 1:14.04+20140410) Depends: language-pack-gnome-lb-base (>= 1:14.04+20140410), language-pack-lb Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-lb/language-pack-gnome-lb_14.04+20140410_all.deb Size: 2030 MD5sum: 3e6155fbc5cab1318db2d77de087759c SHA1: 83a2aa405a9786226802aba3f90c43c240f3f9a4 SHA256: 1eb936b4ab5b6ed3c9bc7ca1ac72ade7fe14d14ed2e1b773147467aa2d069fa3 Description: GNOME translation updates for language Luxembourgish; Letzeburgesch Description-md5: 53ffde6473d532178ad74c89af83cf06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lb-base Priority: optional Section: translations Installed-Size: 169 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lb (<< 1:14.04+20140410), language-pack-gnome-lb-base (<< 1:14.04+20140410), language-pack-kde-lb (<< 1:14.04+20140410), language-pack-kde-lb-base (<< 1:14.04+20140410), language-pack-lb (<< 1:14.04+20140410), language-pack-lb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-lb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-lb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-lb-base/language-pack-gnome-lb-base_14.04+20140410_all.deb Size: 43274 MD5sum: 3030cc586ae5638779e1444e12ff61be SHA1: e61b797800458ae772fe54ed0aa6ca591451500a SHA256: a1965afc34d991bca3213a814f0e23733acef63451f0dce3c0f7a9ed5d329f3e Description: GNOME translations for language Luxembourgish; Letzeburgesch Description-md5: 6fea25dc8205f50b27fde35d15920f86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lg (<< 1:14.04+20140410), language-pack-gnome-lg-base, language-pack-kde-lg (<< 1:14.04+20140410), language-pack-kde-lg-base (<< 1:14.04+20140410), language-pack-lg (<< 1:14.04+20140410), language-pack-lg-base (<< 1:14.04+20140410) Depends: language-pack-gnome-lg-base (>= 1:14.04+20140410), language-pack-lg Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-lg/language-pack-gnome-lg_14.04+20140410_all.deb Size: 1990 MD5sum: 195e8c1ad75d00f3dca51e67010baaa6 SHA1: 95d379a559fa631d02ad0bcfa08d26a555296f92 SHA256: 0c8870f11fd67b0ebaa34662fddf845142bc94c326e4e48a2cd1ba04de8ae5ad Description: GNOME translation updates for language Ganda Description-md5: 77dc9acf868d98ba72944d114146531e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lg-base Priority: optional Section: translations Installed-Size: 85 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lg (<< 1:14.04+20140410), language-pack-gnome-lg-base (<< 1:14.04+20140410), language-pack-kde-lg (<< 1:14.04+20140410), language-pack-kde-lg-base (<< 1:14.04+20140410), language-pack-lg (<< 1:14.04+20140410), language-pack-lg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-lg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-lg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-lg-base/language-pack-gnome-lg-base_14.04+20140410_all.deb Size: 21218 MD5sum: ba5345a8eae757707157448aeccad3c4 SHA1: 920ed9a423867ea320905a574d5899d0039dc615 SHA256: d25e3f5614e458fdfb59cd82b33d70ae7c577b63f6447ebf90fdf5add9a22f83 Description: GNOME translations for language Ganda Description-md5: 1f3665f7bb974f4d891a3136c84d3202 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-li Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-li (<< 1:14.04+20140410), language-pack-gnome-li-base, language-pack-kde-li (<< 1:14.04+20140410), language-pack-kde-li-base (<< 1:14.04+20140410), language-pack-li (<< 1:14.04+20140410), language-pack-li-base (<< 1:14.04+20140410) Depends: language-pack-gnome-li-base (>= 1:14.04+20140410), language-pack-li Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-li/language-pack-gnome-li_14.04+20140410_all.deb Size: 2012 MD5sum: afffcc3a18ac87a9e5ceb101915daf15 SHA1: c96ee13ce9e82439d4833ad601943543f9e1965f SHA256: 661fe561860b756409fe9c2d2fd85d0bfcea09840770df1df3eef960c3031c34 Description: GNOME translation updates for language Limburgan; Limburger; Limburgish Description-md5: 805bc9fe9874e1fd47903561043bdc71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-li-base Priority: optional Section: translations Installed-Size: 299 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-li (<< 1:14.04+20140410), language-pack-gnome-li-base (<< 1:14.04+20140410), language-pack-kde-li (<< 1:14.04+20140410), language-pack-kde-li-base (<< 1:14.04+20140410), language-pack-li (<< 1:14.04+20140410), language-pack-li-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-li (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-li (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-li-base/language-pack-gnome-li-base_14.04+20140410_all.deb Size: 81650 MD5sum: 95b3809262211b9a7fcfd6f1bc0f6afb SHA1: 86cec42526fb5fd5215b2de929ffbf3784cb9da7 SHA256: 5fd4bf1d5c8752624e320716753ec76cb141f0b9841d63caea8912237e963a62 Description: GNOME translations for language Limburgan; Limburger; Limburgish Description-md5: 3bed3215f800b46f0a2e223fbbc72acc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lo (<< 1:14.04+20140410), language-pack-gnome-lo-base, language-pack-kde-lo (<< 1:14.04+20140410), language-pack-kde-lo-base (<< 1:14.04+20140410), language-pack-lo (<< 1:14.04+20140410), language-pack-lo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-lo-base (>= 1:14.04+20140410), language-pack-lo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-lo/language-pack-gnome-lo_14.04+20140410_all.deb Size: 1998 MD5sum: 479dd619026ffb49a57e5e1e629c7192 SHA1: 4306a73b7f4ba19b8c67630127a58662c9abd273 SHA256: c73623b29f113e81c9eb0d4ccd7a265dd73d35491eff266909bebb777a6cee6f Description: GNOME translation updates for language Lao Description-md5: 3fcfb4957a33b7684fcbba7e88bd298e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lo-base Priority: optional Section: translations Installed-Size: 62 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lo (<< 1:14.04+20140410), language-pack-gnome-lo-base (<< 1:14.04+20140410), language-pack-kde-lo (<< 1:14.04+20140410), language-pack-kde-lo-base (<< 1:14.04+20140410), language-pack-lo (<< 1:14.04+20140410), language-pack-lo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-lo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-lo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-lo-base/language-pack-gnome-lo-base_14.04+20140410_all.deb Size: 9582 MD5sum: 7205831cf1e4b728afa513d4e0745e67 SHA1: 7b7b4952e117d5901dd4af9f0548c6b2b03ea2f0 SHA256: b37893c1e12243c2509270ca0f1d432884b78d5aa851109d352d04a6f457256b Description: GNOME translations for language Lao Description-md5: 39943fc9a2e71276c92b601805ff5e4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lt (<< 1:14.04+20140410), language-pack-gnome-lt-base, language-pack-kde-lt (<< 1:14.04+20140410), language-pack-kde-lt-base (<< 1:14.04+20140410), language-pack-lt (<< 1:14.04+20140410), language-pack-lt-base (<< 1:14.04+20140410) Depends: language-pack-gnome-lt-base (>= 1:14.04+20140410), language-pack-lt Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-lt/language-pack-gnome-lt_14.04+20140410_all.deb Size: 2018 MD5sum: 833673bc9c1530f5daf698078927fcfc SHA1: 5f5f2f3edebad225bd11d27e813d60dfc5d77565 SHA256: c37df34a57e5100588d150f47c674c803d1b8663cee37f4e9160b30efef63e02 Description: GNOME translation updates for language Lithuanian Description-md5: 4ba7442de17833bbc1569f5cc3616989 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lt-base Priority: optional Section: translations Installed-Size: 5526 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lt (<< 1:14.04+20140410), language-pack-gnome-lt-base (<< 1:14.04+20140410), language-pack-kde-lt (<< 1:14.04+20140410), language-pack-kde-lt-base (<< 1:14.04+20140410), language-pack-lt (<< 1:14.04+20140410), language-pack-lt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-lt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-lt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-lt-base/language-pack-gnome-lt-base_14.04+20140410_all.deb Size: 1628190 MD5sum: 7f886d7dfab7410c7cceeb4a3f0537f6 SHA1: c98f47340d4e8e879a065f8fd4f7ce5d39d1728e SHA256: 6df0d7735fa19781fa5f6ecc495423efbac23fcd78da9ab445673ccdc587ee02 Description: GNOME translations for language Lithuanian Description-md5: 7d1b02dac8da0b68d1ff87b3e743ecab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lv (<< 1:14.04+20140410), language-pack-gnome-lv-base, language-pack-kde-lv (<< 1:14.04+20140410), language-pack-kde-lv-base (<< 1:14.04+20140410), language-pack-lv (<< 1:14.04+20140410), language-pack-lv-base (<< 1:14.04+20140410) Depends: language-pack-gnome-lv-base (>= 1:14.04+20140410), language-pack-lv Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-lv/language-pack-gnome-lv_14.04+20140410_all.deb Size: 2022 MD5sum: cd4a72390564f1140431c4c816be22ba SHA1: a4e30c8afe3bf1fd5b44da687f2accbc4907030a SHA256: 0bdf61f3378777bf408ff7e07a2a2c119f1fed1feb2c0d8a263cdfd72cc31dfe Description: GNOME translation updates for language Latvian Description-md5: b2cc43479ccef9c8e91e041ed3c30d31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-lv-base Priority: optional Section: translations Installed-Size: 7242 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lv (<< 1:14.04+20140410), language-pack-gnome-lv-base (<< 1:14.04+20140410), language-pack-kde-lv (<< 1:14.04+20140410), language-pack-kde-lv-base (<< 1:14.04+20140410), language-pack-lv (<< 1:14.04+20140410), language-pack-lv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-lv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-lv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-lv-base/language-pack-gnome-lv-base_14.04+20140410_all.deb Size: 2036098 MD5sum: 5f19f0faa8daef7f7dd1f01e71c53366 SHA1: 37a4b474d2eb9373788fedef3fa4a6be38b4599c SHA256: 58679b34230a1f8d85f71b6249f6fe31bcca8f14071c84ca245844f9b1cbeb8a Description: GNOME translations for language Latvian Description-md5: c740682e1c1a0f947b9927d10dcbd552 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mai Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mai (<< 1:14.04+20140410), language-pack-gnome-mai-base, language-pack-kde-mai (<< 1:14.04+20140410), language-pack-kde-mai-base (<< 1:14.04+20140410), language-pack-mai (<< 1:14.04+20140410), language-pack-mai-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mai-base (>= 1:14.04+20140410), language-pack-mai Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mai/language-pack-gnome-mai_14.04+20140410_all.deb Size: 2006 MD5sum: bcce00f27739a122a223da595f41273b SHA1: 152bd058154695bfb82ba0d41d4751c6021fe1a0 SHA256: 95652febd4dab492e14ac2b07d684954a2976bb6472c82ddf25d936db276f8c4 Description: GNOME translation updates for language Maithili Description-md5: a117b47da8535d9bc1607413af0e4990 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mai-base Priority: optional Section: translations Installed-Size: 1713 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mai (<< 1:14.04+20140410), language-pack-gnome-mai-base (<< 1:14.04+20140410), language-pack-kde-mai (<< 1:14.04+20140410), language-pack-kde-mai-base (<< 1:14.04+20140410), language-pack-mai (<< 1:14.04+20140410), language-pack-mai-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mai (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mai (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mai-base/language-pack-gnome-mai-base_14.04+20140410_all.deb Size: 408562 MD5sum: fd74e1b7aae2f5613c2b094b4df713b8 SHA1: 0087dd69d7e01b3bc192eef60d8ad4c3c9609eb0 SHA256: b66ba6f008e8df83eba32ebc919071a934d3b4c41f2b77c1cd1813050339438b Description: GNOME translations for language Maithili Description-md5: 99b3f5dc53db18cc6c155766c921a3c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mg (<< 1:14.04+20140410), language-pack-gnome-mg-base, language-pack-kde-mg (<< 1:14.04+20140410), language-pack-kde-mg-base (<< 1:14.04+20140410), language-pack-mg (<< 1:14.04+20140410), language-pack-mg-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mg-base (>= 1:14.04+20140410), language-pack-mg Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mg/language-pack-gnome-mg_14.04+20140410_all.deb Size: 1994 MD5sum: a00e5887a166a06c7a629a0257fef937 SHA1: 9524e731333f8e6bbe6d5830b959e792d9399c6a SHA256: eb8bf5334282f63020aaaab502486b2b1626d0fe4f60aefef19dd1374fe95c15 Description: GNOME translation updates for language Malagasy Description-md5: 624f9541ee66640349544b28ed64b1e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mg-base Priority: optional Section: translations Installed-Size: 1299 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mg (<< 1:14.04+20140410), language-pack-gnome-mg-base (<< 1:14.04+20140410), language-pack-kde-mg (<< 1:14.04+20140410), language-pack-kde-mg-base (<< 1:14.04+20140410), language-pack-mg (<< 1:14.04+20140410), language-pack-mg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mg-base/language-pack-gnome-mg-base_14.04+20140410_all.deb Size: 298032 MD5sum: bdde1753eef397cc0f200e8bd91071aa SHA1: 7ea34f10f1269f9bbd65a59b789431e555314094 SHA256: ef2463114fda42a4492036970f7cc92b732cf85911e0faf31bd5dca693cc5541 Description: GNOME translations for language Malagasy Description-md5: 3de90c9eca8a11e22b3cbabdecba3226 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mhr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mhr (<< 1:14.04+20140410), language-pack-gnome-mhr-base, language-pack-kde-mhr (<< 1:14.04+20140410), language-pack-kde-mhr-base (<< 1:14.04+20140410), language-pack-mhr (<< 1:14.04+20140410), language-pack-mhr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mhr-base (>= 1:14.04+20140410), language-pack-mhr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mhr/language-pack-gnome-mhr_14.04+20140410_all.deb Size: 2026 MD5sum: 7c3ad15eb0d69e8b17fcd3fc3777f114 SHA1: cb8623d0e48efe8cbfc2993c25823d41bc341540 SHA256: c8fed3c22e5af54f71135dcd863166bc2b34018207006e19546752417f9ee5ca Description: GNOME translation updates for language Mari, Eastern Description-md5: 0ff1059e1ee42c958a4b4748af077021 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mhr-base Priority: optional Section: translations Installed-Size: 95 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mhr (<< 1:14.04+20140410), language-pack-gnome-mhr-base (<< 1:14.04+20140410), language-pack-kde-mhr (<< 1:14.04+20140410), language-pack-kde-mhr-base (<< 1:14.04+20140410), language-pack-mhr (<< 1:14.04+20140410), language-pack-mhr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mhr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mhr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mhr-base/language-pack-gnome-mhr-base_14.04+20140410_all.deb Size: 19168 MD5sum: 8edd6e022912e414c9c12767a79741da SHA1: d21b63c7ce4c19360142ac73dc3fab8020e3e707 SHA256: 5989d8e756f96d2d39ea3fb3ddfdd89edbeb0abe741e584c059ebc9261ce021a Description: GNOME translations for language Mari, Eastern Description-md5: 3363aa952b93565b9f596546c6d97502 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mi (<< 1:14.04+20140410), language-pack-gnome-mi-base, language-pack-kde-mi (<< 1:14.04+20140410), language-pack-kde-mi-base (<< 1:14.04+20140410), language-pack-mi (<< 1:14.04+20140410), language-pack-mi-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mi-base (>= 1:14.04+20140410), language-pack-mi Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mi/language-pack-gnome-mi_14.04+20140410_all.deb Size: 2008 MD5sum: 533df897b47662f30cff99d04c15ac52 SHA1: e81390454cb594aec096079c44818b0ca78dd04d SHA256: 9fc0a84a21a8415d42a263fba2f97462051ff232a0402dbd688c1e9ae8a9ecc9 Description: GNOME translation updates for language Maori Description-md5: f6bf22a1785fa557d50a4c8214977e38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mi-base Priority: optional Section: translations Installed-Size: 135 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mi (<< 1:14.04+20140410), language-pack-gnome-mi-base (<< 1:14.04+20140410), language-pack-kde-mi (<< 1:14.04+20140410), language-pack-kde-mi-base (<< 1:14.04+20140410), language-pack-mi (<< 1:14.04+20140410), language-pack-mi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mi-base/language-pack-gnome-mi-base_14.04+20140410_all.deb Size: 32878 MD5sum: 89314d03ab454c5a37f3812eda904a71 SHA1: e27d1204d059ef62ba2a3d1a83e4eb7c2a2f0b43 SHA256: feba5c0262d8038503dc6d8363ee5d3aaad7b06d733b9cb785328b154a11c2ab Description: GNOME translations for language Maori Description-md5: 8a24bfd55810955e7d484e9fdc67b7be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mk (<< 1:14.04+20140410), language-pack-gnome-mk-base, language-pack-kde-mk (<< 1:14.04+20140410), language-pack-kde-mk-base (<< 1:14.04+20140410), language-pack-mk (<< 1:14.04+20140410), language-pack-mk-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mk-base (>= 1:14.04+20140410), language-pack-mk Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mk/language-pack-gnome-mk_14.04+20140410_all.deb Size: 2002 MD5sum: 2ff864625853ea023ed2c222d20e5cb3 SHA1: 1f892c3dad5314ceb5720070ff064de8ef168197 SHA256: b7ce0a67220dbd1bb44fb878a8787ac4a23acfdef3c2b9aa724a3cf3a6906c46 Description: GNOME translation updates for language Macedonian Description-md5: 2922782fc5716cf8bc95473be5487aaf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mk-base Priority: optional Section: translations Installed-Size: 3969 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mk (<< 1:14.04+20140410), language-pack-gnome-mk-base (<< 1:14.04+20140410), language-pack-kde-mk (<< 1:14.04+20140410), language-pack-kde-mk-base (<< 1:14.04+20140410), language-pack-mk (<< 1:14.04+20140410), language-pack-mk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mk-base/language-pack-gnome-mk-base_14.04+20140410_all.deb Size: 984838 MD5sum: c26f990d6a04001ee7261b04637de64f SHA1: f1f78a029e1d5ffecc63a66b480c9fd47a7c30ef SHA256: 2c56a6fff5f97305ad33f2f03cadf1be13969ae31c5b7d1d62c57740a24e1b16 Description: GNOME translations for language Macedonian Description-md5: 74a11822caab07b3e843010a06c61308 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ml Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ml (<< 1:14.04+20140410), language-pack-gnome-ml-base, language-pack-kde-ml (<< 1:14.04+20140410), language-pack-kde-ml-base (<< 1:14.04+20140410), language-pack-ml (<< 1:14.04+20140410), language-pack-ml-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ml-base (>= 1:14.04+20140410), language-pack-ml Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ml/language-pack-gnome-ml_14.04+20140410_all.deb Size: 1996 MD5sum: cbab62bf2d00b04210a0ed1394d81803 SHA1: 026db43cf03eead0f08ec71bd73c55e2abb6db7c SHA256: 50b8881ba11a46d07719174949a86f3b23ed52c199627ff95f1b95551d0d254f Description: GNOME translation updates for language Malayalam Description-md5: 12e323acf19a1fa6542aea20129fd772 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ml-base Priority: optional Section: translations Installed-Size: 5174 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ml (<< 1:14.04+20140410), language-pack-gnome-ml-base (<< 1:14.04+20140410), language-pack-kde-ml (<< 1:14.04+20140410), language-pack-kde-ml-base (<< 1:14.04+20140410), language-pack-ml (<< 1:14.04+20140410), language-pack-ml-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ml (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ml (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ml-base/language-pack-gnome-ml-base_14.04+20140410_all.deb Size: 1006332 MD5sum: 8533194f7b529d288bf84d1cafb26738 SHA1: ca4791d126c700765506affb1a6e0b81446ed9d7 SHA256: cbd97cba13668c83dabea89096a29d6b82a8bf18ed8c3d97e4cbc7fd5f3bd700 Description: GNOME translations for language Malayalam Description-md5: b8ee340a84ec0331b3810dca05b3af4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mn (<< 1:14.04+20140410), language-pack-gnome-mn-base, language-pack-kde-mn (<< 1:14.04+20140410), language-pack-kde-mn-base (<< 1:14.04+20140410), language-pack-mn (<< 1:14.04+20140410), language-pack-mn-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mn-base (>= 1:14.04+20140410), language-pack-mn Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mn/language-pack-gnome-mn_14.04+20140410_all.deb Size: 1994 MD5sum: 9c663da0836bf047a2d03452a0506161 SHA1: ea2fd385b2980328c4f6c701869d0efa2c64a0f7 SHA256: d37b0770ac414a3d6be97dc11dde13868d6a78dadf511da1fcd3ad4816ecca14 Description: GNOME translation updates for language Mongolian Description-md5: 0cd528d078542e079e14cd1c1abb2d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mn-base Priority: optional Section: translations Installed-Size: 974 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mn (<< 1:14.04+20140410), language-pack-gnome-mn-base (<< 1:14.04+20140410), language-pack-kde-mn (<< 1:14.04+20140410), language-pack-kde-mn-base (<< 1:14.04+20140410), language-pack-mn (<< 1:14.04+20140410), language-pack-mn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mn-base/language-pack-gnome-mn-base_14.04+20140410_all.deb Size: 236688 MD5sum: a1a058ed338fc158c4c7ca8d5c2dae8e SHA1: b3d3f18d09a24ad59324a46f5563fec1eb82f909 SHA256: ba537a6600ca6c7d23b8994440da49171f087878860313b04c1ec896fb3e64e7 Description: GNOME translations for language Mongolian Description-md5: cb296431d37da08a5bf8aae2a014fa04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mr (<< 1:14.04+20140410), language-pack-gnome-mr-base, language-pack-kde-mr (<< 1:14.04+20140410), language-pack-kde-mr-base (<< 1:14.04+20140410), language-pack-mr (<< 1:14.04+20140410), language-pack-mr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mr-base (>= 1:14.04+20140410), language-pack-mr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mr/language-pack-gnome-mr_14.04+20140410_all.deb Size: 1996 MD5sum: a248fd373b53745ef79c109fb3b08081 SHA1: a557e07beda42a675610df46daa99d61163450f1 SHA256: 03119b72b52c350b39575ed1e3c65776b5b124e0b197c807a43410eba5766f05 Description: GNOME translation updates for language Marathi Description-md5: 9b0e9d1864953992f55621e31fea2dd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mr-base Priority: optional Section: translations Installed-Size: 4962 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mr (<< 1:14.04+20140410), language-pack-gnome-mr-base (<< 1:14.04+20140410), language-pack-kde-mr (<< 1:14.04+20140410), language-pack-kde-mr-base (<< 1:14.04+20140410), language-pack-mr (<< 1:14.04+20140410), language-pack-mr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mr-base/language-pack-gnome-mr-base_14.04+20140410_all.deb Size: 1124212 MD5sum: bebc39cd27f3741a1ae61bca4c97b43b SHA1: a65361d858ea38a2aaf4a1e3d650b4e52da65cda SHA256: 75a5071e5ff4a26d893c30028c86d0830f46ba85a95d6b850e2c49d6359296d0 Description: GNOME translations for language Marathi Description-md5: 082eb38e25b22826d51c644f5f1c4154 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ms Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ms (<< 1:14.04+20140410), language-pack-gnome-ms-base, language-pack-kde-ms (<< 1:14.04+20140410), language-pack-kde-ms-base (<< 1:14.04+20140410), language-pack-ms (<< 1:14.04+20140410), language-pack-ms-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ms-base (>= 1:14.04+20140410), language-pack-ms Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ms/language-pack-gnome-ms_14.04+20140410_all.deb Size: 1998 MD5sum: 12e250c30fe4480cb9f42cdafba90822 SHA1: 1a856ce9dbdb6634fba082c42bdfdcf6b1b2ecc2 SHA256: 2ec67ae796af393a4cd0f7934232dd5bc64a591fbd7b7f54361089595e2a6456 Description: GNOME translation updates for language Malay Description-md5: 87e64cf63dc5ec9474864761c98cc277 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ms-base Priority: optional Section: translations Installed-Size: 5867 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ms (<< 1:14.04+20140410), language-pack-gnome-ms-base (<< 1:14.04+20140410), language-pack-kde-ms (<< 1:14.04+20140410), language-pack-kde-ms-base (<< 1:14.04+20140410), language-pack-ms (<< 1:14.04+20140410), language-pack-ms-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ms (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ms (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ms-base/language-pack-gnome-ms-base_14.04+20140410_all.deb Size: 1757376 MD5sum: 36fd11cd4b95791f2902cb21038e25b6 SHA1: 60b79210d9cd04ca031bfd368bc835a72f2e83b3 SHA256: 24d248efd4a83ba37b2c12d2e043e27e048ece6fd9d1f9d4d30e0f5773c930af Description: GNOME translations for language Malay Description-md5: dae19fdc27a75f13b37dfbd554b9920d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mt (<< 1:14.04+20140410), language-pack-gnome-mt-base, language-pack-kde-mt (<< 1:14.04+20140410), language-pack-kde-mt-base (<< 1:14.04+20140410), language-pack-mt (<< 1:14.04+20140410), language-pack-mt-base (<< 1:14.04+20140410) Depends: language-pack-gnome-mt-base (>= 1:14.04+20140410), language-pack-mt Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-mt/language-pack-gnome-mt_14.04+20140410_all.deb Size: 1990 MD5sum: 9473610dcd037609752ba322291e3bcd SHA1: e41748e99b3425e07686d0de8f8869eeee388f40 SHA256: cd2e9c9ba937b9088d580114e29a78be06e09e44f394c3968817720fd57c8cfc Description: GNOME translation updates for language Maltese Description-md5: 507ae9329767e80851c2a048aed7c686 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-mt-base Priority: optional Section: translations Installed-Size: 52 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mt (<< 1:14.04+20140410), language-pack-gnome-mt-base (<< 1:14.04+20140410), language-pack-kde-mt (<< 1:14.04+20140410), language-pack-kde-mt-base (<< 1:14.04+20140410), language-pack-mt (<< 1:14.04+20140410), language-pack-mt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-mt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-mt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-mt-base/language-pack-gnome-mt-base_14.04+20140410_all.deb Size: 7978 MD5sum: b0163b2bd8ca3cd67337122f1a9903f5 SHA1: a3dc6b380ef72a0ce6f8d2f1c8c51b29a44a972c SHA256: e612c4e991356323f301c99ec740dcf6a0671e8193a8097f4ee004cfac66c358 Description: GNOME translations for language Maltese Description-md5: b3836852aaf1a8aec3eb8f5a64ec6a5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-my Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-my (<< 1:14.04+20140410), language-pack-gnome-my-base, language-pack-kde-my (<< 1:14.04+20140410), language-pack-kde-my-base (<< 1:14.04+20140410), language-pack-my (<< 1:14.04+20140410), language-pack-my-base (<< 1:14.04+20140410) Depends: language-pack-gnome-my-base (>= 1:14.04+20140410), language-pack-my Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-my/language-pack-gnome-my_14.04+20140410_all.deb Size: 1994 MD5sum: 021f681bbb28a282115afdbe7012e33d SHA1: f4a3895f04cd4ea59aecab7c9e1006615e1030d0 SHA256: 8d2dddb9e20eb7cdfc3b61ae4c5f29c221251548bc498e62ce0e45d2178dc3da Description: GNOME translation updates for language Burmese Description-md5: 6e30200fe15bd569b10f3710ff2733d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-my-base Priority: optional Section: translations Installed-Size: 3561 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-my (<< 1:14.04+20140410), language-pack-gnome-my-base (<< 1:14.04+20140410), language-pack-kde-my (<< 1:14.04+20140410), language-pack-kde-my-base (<< 1:14.04+20140410), language-pack-my (<< 1:14.04+20140410), language-pack-my-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-my (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-my (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-my-base/language-pack-gnome-my-base_14.04+20140410_all.deb Size: 748954 MD5sum: 15a856f438dca7ed97a2abcbba5b6dc4 SHA1: 79152dbfddf968d643fc9c33008c9769ac9830fa SHA256: 2a3f06b6a793a6948b83365e1f96938dd7923fa2e7a0f3de5cd94756b841f0e0 Description: GNOME translations for language Burmese Description-md5: 9c88e8c1f302f2efb13f7f63fa40f37e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nan Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nan (<< 1:14.04+20140410), language-pack-gnome-nan-base, language-pack-kde-nan (<< 1:14.04+20140410), language-pack-kde-nan-base (<< 1:14.04+20140410), language-pack-nan (<< 1:14.04+20140410), language-pack-nan-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nan-base (>= 1:14.04+20140410), language-pack-nan Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nan/language-pack-gnome-nan_14.04+20140410_all.deb Size: 2010 MD5sum: 395a3b233fa33086e034949223d3493a SHA1: 983454232a4b9e0e1b1ae243fbf4e30349fa050f SHA256: 75c3423ea4ad99cd86236fdf490a7e7f5cf94f7694eeb2738ffe481fccc9ff5b Description: GNOME translation updates for language Chinese, Min Nan Description-md5: d70e650fcd9c2d6e393a03dc0ab4a418 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nan-base Priority: optional Section: translations Installed-Size: 41 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nan (<< 1:14.04+20140410), language-pack-gnome-nan-base (<< 1:14.04+20140410), language-pack-kde-nan (<< 1:14.04+20140410), language-pack-kde-nan-base (<< 1:14.04+20140410), language-pack-nan (<< 1:14.04+20140410), language-pack-nan-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nan (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nan (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nan-base/language-pack-gnome-nan-base_14.04+20140410_all.deb Size: 3966 MD5sum: f394722c35512c14dc3584b42b643d7d SHA1: d36991c50de6998f935d394ec4d4ead5c019f524 SHA256: 45808c5042c5c5e93b404481d4cfe308d2b6e63e71b87e9c1f64926d51793346 Description: GNOME translations for language Chinese, Min Nan Description-md5: d5faf8f6166e747d9c0068c139b43d7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nb (<< 1:14.04+20140410), language-pack-gnome-nb-base, language-pack-kde-nb (<< 1:14.04+20140410), language-pack-kde-nb-base (<< 1:14.04+20140410), language-pack-nb (<< 1:14.04+20140410), language-pack-nb-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nb-base (>= 1:14.04+20140410), language-pack-nb Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nb/language-pack-gnome-nb_14.04+20140410_all.deb Size: 2016 MD5sum: df104cb9a8bad29d6baa2db8ce465364 SHA1: 2ef9e48249e17a6368838909a665abc651020d90 SHA256: c4f8017c9b57a2d4b53358cf8050320435f69711d662eb377228a7860b45823d Description: GNOME translation updates for language Bokmål, Norwegian; Norwegian Bokmål Description-md5: 6a1b73da105a57b595b139f8bf97ef1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nb-base Priority: optional Section: translations Installed-Size: 5511 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nb (<< 1:14.04+20140410), language-pack-gnome-nb-base (<< 1:14.04+20140410), language-pack-kde-nb (<< 1:14.04+20140410), language-pack-kde-nb-base (<< 1:14.04+20140410), language-pack-nb (<< 1:14.04+20140410), language-pack-nb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nb-base/language-pack-gnome-nb-base_14.04+20140410_all.deb Size: 1665170 MD5sum: a8434a710de5791d3020bd6fa1bffd3e SHA1: 638f8aee822e19b7e705222c892a3ea4caf22d74 SHA256: 13f77fb0486db61458f4c4e56bf21e8e87b361588bbd148df905b95856892c56 Description: GNOME translations for language Bokmål, Norwegian; Norwegian Bokmål Description-md5: 7acea85112366268273879cf1fb63d00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nds Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nds (<< 1:14.04+20140410), language-pack-gnome-nds-base, language-pack-kde-nds (<< 1:14.04+20140410), language-pack-kde-nds-base (<< 1:14.04+20140410), language-pack-nds (<< 1:14.04+20140410), language-pack-nds-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nds-base (>= 1:14.04+20140410), language-pack-nds Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nds/language-pack-gnome-nds_14.04+20140410_all.deb Size: 2006 MD5sum: f942071ea6f0afa36c60fd7c0489464d SHA1: e79194c9662dfd509459668c5ff1f0a803b0e247 SHA256: 1f988244b99a5f76ca2b25b84fa2d5a2c0ed822a81a177b914a6b97e04599d8e Description: GNOME translation updates for language German, Low Description-md5: 82bbe4142808df0f11e1203cbb622a52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nds-base Priority: optional Section: translations Installed-Size: 737 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nds (<< 1:14.04+20140410), language-pack-gnome-nds-base (<< 1:14.04+20140410), language-pack-kde-nds (<< 1:14.04+20140410), language-pack-kde-nds-base (<< 1:14.04+20140410), language-pack-nds (<< 1:14.04+20140410), language-pack-nds-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nds (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nds (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nds-base/language-pack-gnome-nds-base_14.04+20140410_all.deb Size: 231912 MD5sum: d4595946663c449dabbc0c545adf27a8 SHA1: a1e6e812812cb212d6d8d18cf49552ada49db066 SHA256: 8e009e2e89b476bd0c720090bd17e3e69b3ff8483cf65f5dbc5cf1b21c1ae927 Description: GNOME translations for language German, Low Description-md5: 4c461a96f247e0bc6766c05feca8af92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ne Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ne (<< 1:14.04+20140410), language-pack-gnome-ne-base, language-pack-kde-ne (<< 1:14.04+20140410), language-pack-kde-ne-base (<< 1:14.04+20140410), language-pack-ne (<< 1:14.04+20140410), language-pack-ne-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ne-base (>= 1:14.04+20140410), language-pack-ne Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ne/language-pack-gnome-ne_14.04+20140410_all.deb Size: 1988 MD5sum: d329538ef8a3f05b782191b1f843c25d SHA1: 267357835afd913cc91984e8dcaa98a9ac3938ba SHA256: 7dd6d85f5cdb525b35a09880e3c94acc87b9b4dde01c75ecbfe2946e68020538 Description: GNOME translation updates for language Nepali Description-md5: 2f1a937545a84cfe0c3b4ffca7267bf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ne-base Priority: optional Section: translations Installed-Size: 2747 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ne (<< 1:14.04+20140410), language-pack-gnome-ne-base (<< 1:14.04+20140410), language-pack-kde-ne (<< 1:14.04+20140410), language-pack-kde-ne-base (<< 1:14.04+20140410), language-pack-ne (<< 1:14.04+20140410), language-pack-ne-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ne (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ne (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ne-base/language-pack-gnome-ne-base_14.04+20140410_all.deb Size: 594070 MD5sum: 4fa0184df18c814305c908c1ad1b3001 SHA1: f1fb54a8c651faa8d16b12ee6f229499ef0499be SHA256: ec44cfeb122a64a463fc6e4fffea51f8fc396c3bcdf10e60611ed5f48439ba2b Description: GNOME translations for language Nepali Description-md5: cc44ea151a4ae98b863e289583f1ebfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nl (<< 1:14.04+20140410), language-pack-gnome-nl-base, language-pack-kde-nl (<< 1:14.04+20140410), language-pack-kde-nl-base (<< 1:14.04+20140410), language-pack-nl (<< 1:14.04+20140410), language-pack-nl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nl-base (>= 1:14.04+20140410), language-pack-nl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nl/language-pack-gnome-nl_14.04+20140410_all.deb Size: 2014 MD5sum: 7441e0e0d28fc50bc6b3d08422241411 SHA1: 0d603ca8902c3490ba973b7239c1fc277e030070 SHA256: 6af21e653577016fcb308db8ff7feca15a3b3723ee5634aae9bc98414884820c Description: GNOME translation updates for language Dutch; Flemish Description-md5: 1d604658a57e2a027894f420d2aeb9f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nl-base Priority: optional Section: translations Installed-Size: 6893 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nl (<< 1:14.04+20140410), language-pack-gnome-nl-base (<< 1:14.04+20140410), language-pack-kde-nl (<< 1:14.04+20140410), language-pack-kde-nl-base (<< 1:14.04+20140410), language-pack-nl (<< 1:14.04+20140410), language-pack-nl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nl-base/language-pack-gnome-nl-base_14.04+20140410_all.deb Size: 1940332 MD5sum: 18da2d2856e986a42322de9b1c281891 SHA1: 78f52820acf34141ac4c0ee72feebcc37c1cc8f9 SHA256: 63e2f2081189655d0b1be8f0bef4df6a7508fec451fa993af94b9908c652af22 Description: GNOME translations for language Dutch; Flemish Description-md5: 37834e64ef66a034f09effbb51f4fab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nn (<< 1:14.04+20140410), language-pack-gnome-nn-base, language-pack-kde-nn (<< 1:14.04+20140410), language-pack-kde-nn-base (<< 1:14.04+20140410), language-pack-nn (<< 1:14.04+20140410), language-pack-nn-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nn-base (>= 1:14.04+20140410), language-pack-nn Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nn/language-pack-gnome-nn_14.04+20140410_all.deb Size: 2018 MD5sum: 9fb4babfc58b8025d6a16eaaf81d5545 SHA1: 500af70503c75732debce4a9989e5e7ca48ce297 SHA256: 401f09d9ebfd0d06fe1c6c31dc5c4d313238b749a0f1ffd7845809b24ad797b9 Description: GNOME translation updates for language Norwegian Nynorsk; Nynorsk, Norwegian Description-md5: 94f1a27ad27bb708529205507fd85429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nn-base Priority: optional Section: translations Installed-Size: 2820 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nn (<< 1:14.04+20140410), language-pack-gnome-nn-base (<< 1:14.04+20140410), language-pack-kde-nn (<< 1:14.04+20140410), language-pack-kde-nn-base (<< 1:14.04+20140410), language-pack-nn (<< 1:14.04+20140410), language-pack-nn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nn-base/language-pack-gnome-nn-base_14.04+20140410_all.deb Size: 923364 MD5sum: a965443474a6271f136cfad0c20625f1 SHA1: 4e9352c9a32f28fd45d1c5006e2c0f7ea124fd3d SHA256: 07945cbc88513b9b7f47d0b481229821f49e8ef8967dace97f794c76de372cce Description: GNOME translations for language Norwegian Nynorsk; Nynorsk, Norwegian Description-md5: 2361eaea8d3fbffd19c12235a054647d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nso Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nso (<< 1:14.04+20140410), language-pack-gnome-nso-base, language-pack-kde-nso (<< 1:14.04+20140410), language-pack-kde-nso-base (<< 1:14.04+20140410), language-pack-nso (<< 1:14.04+20140410), language-pack-nso-base (<< 1:14.04+20140410) Depends: language-pack-gnome-nso-base (>= 1:14.04+20140410), language-pack-nso Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-nso/language-pack-gnome-nso_14.04+20140410_all.deb Size: 2022 MD5sum: 90decf9c8d1b6f0d5af6a66bed993ed5 SHA1: 0dbc0fb4a02994f6bc517053d7127e9dda8d0f04 SHA256: b5853384acc5dd04b5ea696f3402eb09d76efda24c7a794950e8a8b9376ae34e Description: GNOME translation updates for language Pedi Description-md5: 32d80bc1603f393765a511ff0b1028ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-nso-base Priority: optional Section: translations Installed-Size: 375 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nso (<< 1:14.04+20140410), language-pack-gnome-nso-base (<< 1:14.04+20140410), language-pack-kde-nso (<< 1:14.04+20140410), language-pack-kde-nso-base (<< 1:14.04+20140410), language-pack-nso (<< 1:14.04+20140410), language-pack-nso-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-nso (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-nso (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-nso-base/language-pack-gnome-nso-base_14.04+20140410_all.deb Size: 92582 MD5sum: d3a5f6d2fc32a73fdcb7294d038b3247 SHA1: fe3f1a97af8831677a9966c91015d129cd29cff2 SHA256: 0e06400025f129e4cb6b192db0b918db366db6608c997af21c4e96cfdb4ab547 Description: GNOME translations for language Pedi Description-md5: 96c3f28b147a95be68917c3c3b81349d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-oc Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-oc (<< 1:14.04+20140410), language-pack-gnome-oc-base, language-pack-kde-oc (<< 1:14.04+20140410), language-pack-kde-oc-base (<< 1:14.04+20140410), language-pack-oc (<< 1:14.04+20140410), language-pack-oc-base (<< 1:14.04+20140410) Depends: language-pack-gnome-oc-base (>= 1:14.04+20140410), language-pack-oc Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-oc/language-pack-gnome-oc_14.04+20140410_all.deb Size: 2016 MD5sum: 28ceb84ecc6a20406de40c0fdeacedc8 SHA1: 21196c7163336dc21969641ac3d39b44cc3ead20 SHA256: ce639166755bf5346af307b922339f9432bbaabd2d03e0c2a65a322a23be22f6 Description: GNOME translation updates for language Occitan (post 1500) Description-md5: 66709e79725308337ddae299414597b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-oc-base Priority: optional Section: translations Installed-Size: 6733 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-oc (<< 1:14.04+20140410), language-pack-gnome-oc-base (<< 1:14.04+20140410), language-pack-kde-oc (<< 1:14.04+20140410), language-pack-kde-oc-base (<< 1:14.04+20140410), language-pack-oc (<< 1:14.04+20140410), language-pack-oc-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-oc (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-oc (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-oc-base/language-pack-gnome-oc-base_14.04+20140410_all.deb Size: 1717118 MD5sum: 030fcaa45e95f3505788acafbf777242 SHA1: ad1eb0eeff2b934ddded978b73a694a97ab717fa SHA256: 128763f10aa79747f489fcd628657e08cb32402120f16d8188626bff678fe168 Description: GNOME translations for language Occitan (post 1500) Description-md5: 03f6d0a0742ef2501a78fa0c46af92cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-om Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-om (<< 1:14.04+20140410), language-pack-gnome-om-base, language-pack-kde-om (<< 1:14.04+20140410), language-pack-kde-om-base (<< 1:14.04+20140410), language-pack-om (<< 1:14.04+20140410), language-pack-om-base (<< 1:14.04+20140410) Depends: language-pack-gnome-om-base (>= 1:14.04+20140410), language-pack-om Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-om/language-pack-gnome-om_14.04+20140410_all.deb Size: 2004 MD5sum: a099f25d78d477669a652d881646ea28 SHA1: 7ec98fc9c37e58316a235d3a39d0ec6f5ac0cc45 SHA256: 036e3720b1c90283ac5f8c2f0f405ee239e78b7400fe73068e4cc3723ec4f723 Description: GNOME translation updates for language Oromo Description-md5: cfacd0839921b9bb8c34d3d5de323562 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-om-base Priority: optional Section: translations Installed-Size: 42 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-om (<< 1:14.04+20140410), language-pack-gnome-om-base (<< 1:14.04+20140410), language-pack-kde-om (<< 1:14.04+20140410), language-pack-kde-om-base (<< 1:14.04+20140410), language-pack-om (<< 1:14.04+20140410), language-pack-om-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-om (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-om (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-om-base/language-pack-gnome-om-base_14.04+20140410_all.deb Size: 4482 MD5sum: c2af7bbbb81f2cd6b30d3d182f5eaf33 SHA1: 484077eb5020d45096e93afc70ad4550abf613a0 SHA256: e1148b78791d0b8edf1d8532553892e02f1524fc1366c2c6eeeba7ec58f73995 Description: GNOME translations for language Oromo Description-md5: da878de684a821f28071564ae85ecc62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-or Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-or (<< 1:14.04+20140410), language-pack-gnome-or-base, language-pack-kde-or (<< 1:14.04+20140410), language-pack-kde-or-base (<< 1:14.04+20140410), language-pack-or (<< 1:14.04+20140410), language-pack-or-base (<< 1:14.04+20140410) Depends: language-pack-gnome-or-base (>= 1:14.04+20140410), language-pack-or Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-or/language-pack-gnome-or_14.04+20140410_all.deb Size: 2010 MD5sum: a0f74e062d662a8d81a35647fe7a398b SHA1: 3927cad7a1fbffebf59cf018487ddffea3eb16ee SHA256: 117db81977167a979daae481dec8eeca83e97a1b850a8860cd9b547c2fd03f8e Description: GNOME translation updates for language Oriya Description-md5: b54573c8a85273e8395d289e946e17da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-or-base Priority: optional Section: translations Installed-Size: 4754 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-or (<< 1:14.04+20140410), language-pack-gnome-or-base (<< 1:14.04+20140410), language-pack-kde-or (<< 1:14.04+20140410), language-pack-kde-or-base (<< 1:14.04+20140410), language-pack-or (<< 1:14.04+20140410), language-pack-or-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-or (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-or (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-or-base/language-pack-gnome-or-base_14.04+20140410_all.deb Size: 1006378 MD5sum: 0e1861c1d418420ae050c183d75ea1be SHA1: fca07a2d51cc1cc80a9b868b7dc1fe20d9b019f8 SHA256: 7d53b74cc7a16152c66bdba3b3b386e037955f19ae4f252cdf6333b1f3e4da95 Description: GNOME translations for language Oriya Description-md5: 83d7866a97d42af7d9a004ca2752c21a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-os Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-os (<< 1:14.04+20140410), language-pack-gnome-os-base, language-pack-kde-os (<< 1:14.04+20140410), language-pack-kde-os-base (<< 1:14.04+20140410), language-pack-os (<< 1:14.04+20140410), language-pack-os-base (<< 1:14.04+20140410) Depends: language-pack-gnome-os-base (>= 1:14.04+20140410), language-pack-os Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-os/language-pack-gnome-os_14.04+20140410_all.deb Size: 1998 MD5sum: b4cb0f05c1880ded91fa1ef3be1e427e SHA1: 0e200c0b1cd3e7092636f7c36a0398d6e898a378 SHA256: 444ed22073e0892d813edb42fd1c9a7af9a1f1ebb1158a5acd9acd11cb4bfe8e Description: GNOME translation updates for language Ossetian; Ossetic Description-md5: 398bf3070ba332d16dd4d3cbea91951d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-os-base Priority: optional Section: translations Installed-Size: 101 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-os (<< 1:14.04+20140410), language-pack-gnome-os-base (<< 1:14.04+20140410), language-pack-kde-os (<< 1:14.04+20140410), language-pack-kde-os-base (<< 1:14.04+20140410), language-pack-os (<< 1:14.04+20140410), language-pack-os-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-os (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-os (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-os-base/language-pack-gnome-os-base_14.04+20140410_all.deb Size: 21788 MD5sum: 31e930a9282e19b74bb842f6504b41df SHA1: b515b3892175d172ba2c17fd6d2d0f79fa181dde SHA256: 73d3f9af661c68ceb66d880b4ddcbc3735c0469e88a1cfcf0da725a51b4648c8 Description: GNOME translations for language Ossetian; Ossetic Description-md5: 9bbdd1be9ea52b74df20166a65a32f78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pa (<< 1:14.04+20140410), language-pack-gnome-pa-base, language-pack-kde-pa (<< 1:14.04+20140410), language-pack-kde-pa-base (<< 1:14.04+20140410), language-pack-pa (<< 1:14.04+20140410), language-pack-pa-base (<< 1:14.04+20140410) Depends: language-pack-gnome-pa-base (>= 1:14.04+20140410), language-pack-pa Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-pa/language-pack-gnome-pa_14.04+20140410_all.deb Size: 2000 MD5sum: 5b165a55714f057a566b2d807f8d8311 SHA1: 11746a9cd4a591c904a889259a391d537b6cedbb SHA256: c21c6592da0c55a61c37f69b38af80f420f26e59b56bf328c3e6dee31e814e83 Description: GNOME translation updates for language Panjabi; Punjabi Description-md5: 5be4e374eb6b9e6959faf7cad9d7f66b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pa-base Priority: optional Section: translations Installed-Size: 6571 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pa (<< 1:14.04+20140410), language-pack-gnome-pa-base (<< 1:14.04+20140410), language-pack-kde-pa (<< 1:14.04+20140410), language-pack-kde-pa-base (<< 1:14.04+20140410), language-pack-pa (<< 1:14.04+20140410), language-pack-pa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-pa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-pa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-pa-base/language-pack-gnome-pa-base_14.04+20140410_all.deb Size: 1518772 MD5sum: d33d4c16067bf79e76ab39b0f1f671b1 SHA1: 31a05d427b9aa41a8ca81c1ee3e0b8dc1826a0a3 SHA256: 63c099b7db2132c14f860a55f60ab62b3ee0aac60fa4e91c7211023c5c4e8bb2 Description: GNOME translations for language Panjabi; Punjabi Description-md5: c6a8dfc20918971e648f39bd171d7538 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pap Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pap (<< 1:14.04+20140410), language-pack-gnome-pap-base, language-pack-kde-pap (<< 1:14.04+20140410), language-pack-kde-pap-base (<< 1:14.04+20140410), language-pack-pap (<< 1:14.04+20140410), language-pack-pap-base (<< 1:14.04+20140410) Depends: language-pack-gnome-pap-base (>= 1:14.04+20140410), language-pack-pap Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-pap/language-pack-gnome-pap_14.04+20140410_all.deb Size: 2016 MD5sum: 39f9f3dfa63f896bbf1607f27db98f14 SHA1: 0458033495c872c620e3e0102f0001555b3a7bea SHA256: 9d1ce0f139d59af5f9d9b05098e553c30994a320c6f325d778adc9f6bf705ef4 Description: GNOME translation updates for language Papiamento Description-md5: 801a8a38476d486baa9e55c78c896d89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pap-base Priority: optional Section: translations Installed-Size: 44 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pap (<< 1:14.04+20140410), language-pack-gnome-pap-base (<< 1:14.04+20140410), language-pack-kde-pap (<< 1:14.04+20140410), language-pack-kde-pap-base (<< 1:14.04+20140410), language-pack-pap (<< 1:14.04+20140410), language-pack-pap-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-pap (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-pap (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-pap-base/language-pack-gnome-pap-base_14.04+20140410_all.deb Size: 5212 MD5sum: d4fefa1574abb27861a6378edef0ad99 SHA1: eff58306dfa03801c3000cebdc79a803f6ca301c SHA256: aa6ec09c78a08d41d45f9bdd827dffe097592be2d976cbd3f07a36a3d58a8f18 Description: GNOME translations for language Papiamento Description-md5: 401902f1b4e7d47cbc2ca5803fd92720 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pl (<< 1:14.04+20140410), language-pack-gnome-pl-base, language-pack-kde-pl (<< 1:14.04+20140410), language-pack-kde-pl-base (<< 1:14.04+20140410), language-pack-pl (<< 1:14.04+20140410), language-pack-pl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-pl-base (>= 1:14.04+20140410), language-pack-pl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-pl/language-pack-gnome-pl_14.04+20140410_all.deb Size: 1990 MD5sum: b5dbd66cccdfe9672bc707e68f51575a SHA1: 36b678f545b008805fb97b1ffeeb6ab72097a405 SHA256: 3bcae594caffe21deab9eedf66d6934b449ab93cdd85e5d033b53a564bb1bfa6 Description: GNOME translation updates for language Polish Description-md5: f43ceb1b03f4255958e3e4557c37aa58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pl-base Priority: optional Section: translations Installed-Size: 6748 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pl (<< 1:14.04+20140410), language-pack-gnome-pl-base (<< 1:14.04+20140410), language-pack-kde-pl (<< 1:14.04+20140410), language-pack-kde-pl-base (<< 1:14.04+20140410), language-pack-pl (<< 1:14.04+20140410), language-pack-pl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-pl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-pl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-pl-base/language-pack-gnome-pl-base_14.04+20140410_all.deb Size: 2010086 MD5sum: 235c6470e0f3a95b2023b40bcc9a8e8d SHA1: af44efc68f12ce401144c71edef0e65eeb378818 SHA256: 662c3414c578d92428c012c454735f2a6fe7101730be8df8385bf000814dd195 Description: GNOME translations for language Polish Description-md5: 6315e4744f9582612befc793db907b66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ps Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ps (<< 1:14.04+20140410), language-pack-gnome-ps-base, language-pack-kde-ps (<< 1:14.04+20140410), language-pack-kde-ps-base (<< 1:14.04+20140410), language-pack-ps (<< 1:14.04+20140410), language-pack-ps-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ps-base (>= 1:14.04+20140410), language-pack-ps Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ps/language-pack-gnome-ps_14.04+20140410_all.deb Size: 2014 MD5sum: da042e99d695e390470f71daf27e59b2 SHA1: e627fe9c76e18ca3e9d9ad45f32ac215ffd2b19a SHA256: 107775415b23ff35fc7bbb63b2d162bbb08330855cd48c6e2e4f783e6e9814de Description: GNOME translation updates for language Pushto; Pashto Description-md5: 6e5833284f0c3fa71c4aa83a3b69ab0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ps-base Priority: optional Section: translations Installed-Size: 512 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ps (<< 1:14.04+20140410), language-pack-gnome-ps-base (<< 1:14.04+20140410), language-pack-kde-ps (<< 1:14.04+20140410), language-pack-kde-ps-base (<< 1:14.04+20140410), language-pack-ps (<< 1:14.04+20140410), language-pack-ps-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ps (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ps (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ps-base/language-pack-gnome-ps-base_14.04+20140410_all.deb Size: 132412 MD5sum: b92b58a56287d23500dba2291a19a248 SHA1: 882bbd2575c7940646ca05823848911f79103067 SHA256: 51bde3b44146baedf1679f54d284b1e3f900a43ed2e2b4f722199e4e5d7b6809 Description: GNOME translations for language Pushto; Pashto Description-md5: 3d552d798b636e6fe4846300f8411e5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-pt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pt (<< 1:14.04+20140410), language-pack-gnome-pt-base, language-pack-kde-pt (<< 1:14.04+20140410), language-pack-kde-pt-base (<< 1:14.04+20140410), language-pack-pt (<< 1:14.04+20140410), language-pack-pt-base (<< 1:14.04+20140410) Depends: language-pack-gnome-pt-base (>= 1:14.04+20140410), language-pack-pt Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-pt/language-pack-gnome-pt_14.04+20140410_all.deb Size: 2004 MD5sum: bef178945f231bd5f118a3dadf16c42e SHA1: d7cd1b913319f7e39a8a8a68dafa9705be61f2e0 SHA256: adec03dc8966fe96af5a5f7523eda66c0a037fa34d60469ca57f6254148abc83 Description: GNOME translation updates for language Portuguese Description-md5: 8bd089c6a5524f01c6f3ca61600de39c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-pt-base Priority: optional Section: translations Installed-Size: 16881 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pt (<< 1:14.04+20140410), language-pack-gnome-pt-base (<< 1:14.04+20140410), language-pack-kde-pt (<< 1:14.04+20140410), language-pack-kde-pt-base (<< 1:14.04+20140410), language-pack-pt (<< 1:14.04+20140410), language-pack-pt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-pt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-pt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-pt-base/language-pack-gnome-pt-base_14.04+20140410_all.deb Size: 4846636 MD5sum: 86c016c5e3c71d064e27fd9a11e6ca5a SHA1: e759710e0bb2d8da144c86d22269e0665b88eb9c SHA256: caf7a251d67903f773fae9d65c500cd4c9d80116ed0733ad03e0d797d9327e66 Description: GNOME translations for language Portuguese Description-md5: 4ee89c98e155a3fca14d1ccad82fc438 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-ro Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ro (<< 1:14.04+20140410), language-pack-gnome-ro-base, language-pack-kde-ro (<< 1:14.04+20140410), language-pack-kde-ro-base (<< 1:14.04+20140410), language-pack-ro (<< 1:14.04+20140410), language-pack-ro-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ro-base (>= 1:14.04+20140410), language-pack-ro Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ro/language-pack-gnome-ro_14.04+20140410_all.deb Size: 2002 MD5sum: 8c1069b29ebabca52aa87597bffaeba6 SHA1: 52069ba0b7f995d1251f675c514dd819818e7af6 SHA256: 64c9f3bcd5e208a1109a941552ceadfae09077c44320c578610c2f004d010930 Description: GNOME translation updates for language Romanian Description-md5: 3540af51111fa5be98432a3342d524b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ro-base Priority: optional Section: translations Installed-Size: 6364 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ro (<< 1:14.04+20140410), language-pack-gnome-ro-base (<< 1:14.04+20140410), language-pack-kde-ro (<< 1:14.04+20140410), language-pack-kde-ro-base (<< 1:14.04+20140410), language-pack-ro (<< 1:14.04+20140410), language-pack-ro-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ro (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ro (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ro-base/language-pack-gnome-ro-base_14.04+20140410_all.deb Size: 2038272 MD5sum: 08f08f63b2dc97568ccaf16d20cf4fbd SHA1: c94805f730a99e52355787dba1f61d8224d52d51 SHA256: fd632d2de953e16a915314932d21f894a0f03191e645c97e8af9aed8d514b13c Description: GNOME translations for language Romanian Description-md5: 7cae8d5120001604efabf2f7f91a0274 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ru Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ru (<< 1:14.04+20140410), language-pack-gnome-ru-base, language-pack-kde-ru (<< 1:14.04+20140410), language-pack-kde-ru-base (<< 1:14.04+20140410), language-pack-ru (<< 1:14.04+20140410), language-pack-ru-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ru-base (>= 1:14.04+20140410), language-pack-ru Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ru/language-pack-gnome-ru_14.04+20140410_all.deb Size: 1996 MD5sum: 5a2184ff2ff42f781ff1edf12f7ad482 SHA1: 814b88fe3e4c6341659fa6d5726298ec1e94fc47 SHA256: 9272911ebd53351dca2db8f25e1c2ba46d5cf31bac9b13a7be6773f28a8baffb Description: GNOME translation updates for language Russian Description-md5: ba49f5482199ce5fcccb32e707e43111 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, lubuntu-live Package: language-pack-gnome-ru-base Priority: optional Section: translations Installed-Size: 12239 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ru (<< 1:14.04+20140410), language-pack-gnome-ru-base (<< 1:14.04+20140410), language-pack-kde-ru (<< 1:14.04+20140410), language-pack-kde-ru-base (<< 1:14.04+20140410), language-pack-ru (<< 1:14.04+20140410), language-pack-ru-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ru (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ru (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ru-base/language-pack-gnome-ru-base_14.04+20140410_all.deb Size: 2758112 MD5sum: 7fd0e6bcdc2c85a5d623d1a756cafc68 SHA1: 4c7a3e36625527782796633d7b0d622bcb753ebd SHA256: a52b6098f562707a200c0e73991e637674d42651dfc5cf22f32527b6a4a88c27 Description: GNOME translations for language Russian Description-md5: 80a178c6df431d1149ac2879c976c67b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, lubuntu-live Package: language-pack-gnome-rw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-rw (<< 1:14.04+20140410), language-pack-gnome-rw-base, language-pack-kde-rw (<< 1:14.04+20140410), language-pack-kde-rw-base (<< 1:14.04+20140410), language-pack-rw (<< 1:14.04+20140410), language-pack-rw-base (<< 1:14.04+20140410) Depends: language-pack-gnome-rw-base (>= 1:14.04+20140410), language-pack-rw Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-rw/language-pack-gnome-rw_14.04+20140410_all.deb Size: 2012 MD5sum: 9dbce867e46eb1aff622aef628da863c SHA1: 51b5dd364600509cc9607c14b714681c85883df5 SHA256: 417f1f0445065608c0fda5924c5396ce1c43bd12e665fc9f092ed400c817f497 Description: GNOME translation updates for language Kinyarwanda Description-md5: 829669d440217f95e488ad94edbb1164 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-rw-base Priority: optional Section: translations Installed-Size: 146 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-rw (<< 1:14.04+20140410), language-pack-gnome-rw-base (<< 1:14.04+20140410), language-pack-kde-rw (<< 1:14.04+20140410), language-pack-kde-rw-base (<< 1:14.04+20140410), language-pack-rw (<< 1:14.04+20140410), language-pack-rw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-rw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-rw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-rw-base/language-pack-gnome-rw-base_14.04+20140410_all.deb Size: 35106 MD5sum: 128c74e40617a06b5f5b4b398641c161 SHA1: 6763f0c0d03d2008309a8cd9556893fc51320291 SHA256: dd04684a964d15f758dd7bb2d2c8a3f466a404fe7a6842d3c1976de351988488 Description: GNOME translations for language Kinyarwanda Description-md5: f14653fecf5e554de093e19f7c82a160 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sa (<< 1:14.04+20140410), language-pack-gnome-sa-base, language-pack-kde-sa (<< 1:14.04+20140410), language-pack-kde-sa-base (<< 1:14.04+20140410), language-pack-sa (<< 1:14.04+20140410), language-pack-sa-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sa-base (>= 1:14.04+20140410), language-pack-sa Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sa/language-pack-gnome-sa_14.04+20140410_all.deb Size: 2014 MD5sum: edaa13702907c55efcad42d7dd165c6d SHA1: c28c3d7f342f4bbe9f4499cd4b54fed3ef6ab332 SHA256: d5f6fd17c347dc3809afd899624cd5dcde4a5cad59e3349a56bd261884ac8917 Description: GNOME translation updates for language Sanskrit Description-md5: df4ab564ac5657d1952207e87228e171 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sa-base Priority: optional Section: translations Installed-Size: 39 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sa (<< 1:14.04+20140410), language-pack-gnome-sa-base (<< 1:14.04+20140410), language-pack-kde-sa (<< 1:14.04+20140410), language-pack-kde-sa-base (<< 1:14.04+20140410), language-pack-sa (<< 1:14.04+20140410), language-pack-sa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sa-base/language-pack-gnome-sa-base_14.04+20140410_all.deb Size: 2980 MD5sum: 8add1d3d33c6779daa9bda334b443b5f SHA1: 7a317dbcd3e7398291ac336521260296e00f18b2 SHA256: 7714873a8d180b5732a7dc7ed59e7d8f3cfe6eb58d8e6916677715274e004eb7 Description: GNOME translations for language Sanskrit Description-md5: 417914845e6c6774f95f66d67d6c697a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sc Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sc (<< 1:14.04+20140410), language-pack-gnome-sc-base, language-pack-kde-sc (<< 1:14.04+20140410), language-pack-kde-sc-base (<< 1:14.04+20140410), language-pack-sc (<< 1:14.04+20140410), language-pack-sc-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sc-base (>= 1:14.04+20140410), language-pack-sc Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sc/language-pack-gnome-sc_14.04+20140410_all.deb Size: 2002 MD5sum: 463fdf1bef3cd2f55e8b7d548b1650cd SHA1: 403148df47feb065f15aa466a772ed6cdc11e50e SHA256: bf77cdf3e7e38e8237ec01f274b7b75bc592299d5bee24350a5b1b38f26025c3 Description: GNOME translation updates for language Sardinian Description-md5: 0114ca5ce79b6d6a75fc523f2738e369 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sc-base Priority: optional Section: translations Installed-Size: 90 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sc (<< 1:14.04+20140410), language-pack-gnome-sc-base (<< 1:14.04+20140410), language-pack-kde-sc (<< 1:14.04+20140410), language-pack-kde-sc-base (<< 1:14.04+20140410), language-pack-sc (<< 1:14.04+20140410), language-pack-sc-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sc (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sc (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sc-base/language-pack-gnome-sc-base_14.04+20140410_all.deb Size: 20762 MD5sum: e41f894e9476078b8e3bd35c3b0d9b4d SHA1: 431d4cb92d3cd60c07d184ea4b19b2229b2af6f2 SHA256: 85f876f3eaaf74ccc2928ebd8af17ddc6e967178493fd9b098d1648a2368fe56 Description: GNOME translations for language Sardinian Description-md5: a7d9e1a217748b1ca1d2ff387dbca90d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sd Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sd (<< 1:14.04+20140410), language-pack-gnome-sd-base, language-pack-kde-sd (<< 1:14.04+20140410), language-pack-kde-sd-base (<< 1:14.04+20140410), language-pack-sd (<< 1:14.04+20140410), language-pack-sd-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sd-base (>= 1:14.04+20140410), language-pack-sd Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sd/language-pack-gnome-sd_14.04+20140410_all.deb Size: 1986 MD5sum: bb78d01d8ee1b0560c1b1d8e950aba0a SHA1: b743f884121ad7d9fea2b08241f98f05231b1970 SHA256: 8d13b54b1ff11ebcfa180bacfa376a228a05c93ba3798f091dfe8c59eff9ecc9 Description: GNOME translation updates for language Sindhi Description-md5: a1c09554ebfb2a2c6bcb71a4568ada8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sd-base Priority: optional Section: translations Installed-Size: 354 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sd (<< 1:14.04+20140410), language-pack-gnome-sd-base (<< 1:14.04+20140410), language-pack-kde-sd (<< 1:14.04+20140410), language-pack-kde-sd-base (<< 1:14.04+20140410), language-pack-sd (<< 1:14.04+20140410), language-pack-sd-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sd (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sd (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sd-base/language-pack-gnome-sd-base_14.04+20140410_all.deb Size: 88042 MD5sum: 09a416189adfab82fb37c9bc576f84a0 SHA1: d5e4e944bae33ed833060e59ad13e04d5bb50e70 SHA256: e6086bfbb4eaf1a64ff117d25e00ef57054557cb1db29c6af9d10b1b9a850680 Description: GNOME translations for language Sindhi Description-md5: 010bf621413f8b2f30fd8a3a1140df1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-se Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-se (<< 1:14.04+20140410), language-pack-gnome-se-base, language-pack-kde-se (<< 1:14.04+20140410), language-pack-kde-se-base (<< 1:14.04+20140410), language-pack-se (<< 1:14.04+20140410), language-pack-se-base (<< 1:14.04+20140410) Depends: language-pack-gnome-se-base (>= 1:14.04+20140410), language-pack-se Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-se/language-pack-gnome-se_14.04+20140410_all.deb Size: 1994 MD5sum: 119b5c74af27877ac2d4169a4fa23500 SHA1: 0039b0a6277ca7558d0203f3223a0b8c4eba268a SHA256: 5fc6127ce2d67765f13aa579b74765a3d7aa074f1e4a86a8dfc42ce709bfd5e3 Description: GNOME translation updates for language Northern Sami Description-md5: 661531223c0c7b08dcd35eeee531c68a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-se-base Priority: optional Section: translations Installed-Size: 197 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-se (<< 1:14.04+20140410), language-pack-gnome-se-base (<< 1:14.04+20140410), language-pack-kde-se (<< 1:14.04+20140410), language-pack-kde-se-base (<< 1:14.04+20140410), language-pack-se (<< 1:14.04+20140410), language-pack-se-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-se (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-se (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-se-base/language-pack-gnome-se-base_14.04+20140410_all.deb Size: 47904 MD5sum: c9831df6fecf3fe3b4adcae4d1e53236 SHA1: cbde18b0e082b6820a7bf9f56ed5bf14329563ee SHA256: 4a0de6f810042f4a81e8cf5886383043dedce1d2b055577ebcbaafb73411c881 Description: GNOME translations for language Northern Sami Description-md5: 5ff065de071f81e4a0e534155a553742 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-shs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-shs (<< 1:14.04+20140410), language-pack-gnome-shs-base, language-pack-kde-shs (<< 1:14.04+20140410), language-pack-kde-shs-base (<< 1:14.04+20140410), language-pack-shs (<< 1:14.04+20140410), language-pack-shs-base (<< 1:14.04+20140410) Depends: language-pack-gnome-shs-base (>= 1:14.04+20140410), language-pack-shs Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-shs/language-pack-gnome-shs_14.04+20140410_all.deb Size: 2002 MD5sum: de7f010d27a38a6272e51a9bf31a79cb SHA1: fe28101c587a8193a6c7a71a8938a9f8be6d3053 SHA256: 7ff6347cd640594d245303b604ed77f23e97d1a37b55fd5eb3950f8175bbd051 Description: GNOME translation updates for language Shuswap Description-md5: 085706656685d487137034c8638624e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-shs-base Priority: optional Section: translations Installed-Size: 38 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-shs (<< 1:14.04+20140410), language-pack-gnome-shs-base (<< 1:14.04+20140410), language-pack-kde-shs (<< 1:14.04+20140410), language-pack-kde-shs-base (<< 1:14.04+20140410), language-pack-shs (<< 1:14.04+20140410), language-pack-shs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-shs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-shs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-shs-base/language-pack-gnome-shs-base_14.04+20140410_all.deb Size: 2734 MD5sum: 6642f98bc3f9fac00fdc8a7aeced0cdd SHA1: 8026ce8a0ddfaadcec6001c1638a91a39644cbf9 SHA256: 2a44e0847600a975a33996ea0cebd95b816553106b1c7ab1648dedb2a3c19494 Description: GNOME translations for language Shuswap Description-md5: 6e2062e36b127ecee06fa8fd24e04bf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-si Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-si (<< 1:14.04+20140410), language-pack-gnome-si-base, language-pack-kde-si (<< 1:14.04+20140410), language-pack-kde-si-base (<< 1:14.04+20140410), language-pack-si (<< 1:14.04+20140410), language-pack-si-base (<< 1:14.04+20140410) Depends: language-pack-gnome-si-base (>= 1:14.04+20140410), language-pack-si Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-si/language-pack-gnome-si_14.04+20140410_all.deb Size: 1994 MD5sum: 6b138cb8387778f99d1eca1b74b46750 SHA1: 9c40ec25abd2757e67497d5463b6b410230141e5 SHA256: 9ace6454229a36c1cfe943223a4d91b68f28e9ec17a1aec91b53ced048c0c858 Description: GNOME translation updates for language Sinhala; Sinhalese Description-md5: eff7b3f9c7b20c6316294b4b87994efb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-si-base Priority: optional Section: translations Installed-Size: 2028 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-si (<< 1:14.04+20140410), language-pack-gnome-si-base (<< 1:14.04+20140410), language-pack-kde-si (<< 1:14.04+20140410), language-pack-kde-si-base (<< 1:14.04+20140410), language-pack-si (<< 1:14.04+20140410), language-pack-si-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-si (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-si (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-si-base/language-pack-gnome-si-base_14.04+20140410_all.deb Size: 445388 MD5sum: e7533e4d353d3af21cb3438cf97e845c SHA1: 8884f681bfcada1acc78f1f9f475d1fbbd74fbff SHA256: 5ec4e45a178ab2308ca6442588550dc513c4955d70e6cd495cc313e774df56b7 Description: GNOME translations for language Sinhala; Sinhalese Description-md5: 7de9ae6781852cc9f642191a54229c23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sk (<< 1:14.04+20140410), language-pack-gnome-sk-base, language-pack-kde-sk (<< 1:14.04+20140410), language-pack-kde-sk-base (<< 1:14.04+20140410), language-pack-sk (<< 1:14.04+20140410), language-pack-sk-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sk-base (>= 1:14.04+20140410), language-pack-sk Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sk/language-pack-gnome-sk_14.04+20140410_all.deb Size: 2002 MD5sum: 3004f1cfcf01c8d028a36ec3f327b8f8 SHA1: b87655db50667f69f6b59cb8268648eb6a97fbdb SHA256: e14b824e8d338b70ac6f8c0cebd50e717af793de1d99cb6035b61009db2dbdd6 Description: GNOME translation updates for language Slovak Description-md5: 7f1bb07378a0d7c8013f9aeaebdef863 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sk-base Priority: optional Section: translations Installed-Size: 5658 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sk (<< 1:14.04+20140410), language-pack-gnome-sk-base (<< 1:14.04+20140410), language-pack-kde-sk (<< 1:14.04+20140410), language-pack-kde-sk-base (<< 1:14.04+20140410), language-pack-sk (<< 1:14.04+20140410), language-pack-sk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sk-base/language-pack-gnome-sk-base_14.04+20140410_all.deb Size: 1692038 MD5sum: 9eb2d7a9a503931294eb983ef5b46fa7 SHA1: f32b6dd593a47abea68fb02f569e8d904920ac38 SHA256: 1e768a56db95e08ac5247124adea971eef94ba07b4d532c7237db7caf25ee21e Description: GNOME translations for language Slovak Description-md5: f7d2bf42f49309958b0c8270abd6f043 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sl (<< 1:14.04+20140410), language-pack-gnome-sl-base, language-pack-kde-sl (<< 1:14.04+20140410), language-pack-kde-sl-base (<< 1:14.04+20140410), language-pack-sl (<< 1:14.04+20140410), language-pack-sl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sl-base (>= 1:14.04+20140410), language-pack-sl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sl/language-pack-gnome-sl_14.04+20140410_all.deb Size: 2012 MD5sum: 1cce95cc83c9047d0dba7f205723c998 SHA1: 2af3633671bd16363fdc48f3237bf03ea93b122a SHA256: 24d0919de9a02c83727787228acbd312aa7002aa93977332061a5bf30b43ee93 Description: GNOME translation updates for language Slovenian Description-md5: 9ff05ef79f08a9edbbf7d641dada217c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sl-base Priority: optional Section: translations Installed-Size: 10160 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sl (<< 1:14.04+20140410), language-pack-gnome-sl-base (<< 1:14.04+20140410), language-pack-kde-sl (<< 1:14.04+20140410), language-pack-kde-sl-base (<< 1:14.04+20140410), language-pack-sl (<< 1:14.04+20140410), language-pack-sl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sl-base/language-pack-gnome-sl-base_14.04+20140410_all.deb Size: 2543238 MD5sum: d79a878e7df06c5f7ba790559fc03fd5 SHA1: 523ee4157057826961a21798d8763b7d996a75e6 SHA256: 02f7ec52f4a55a002d65206d7c30f7598558370b6fe263cdd28f6cd185fa90d4 Description: GNOME translations for language Slovenian Description-md5: d1c125d5e64d7cb437dcfc5aecfc010b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-so Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:13.04+20130418 Replaces: language-pack-gnome-so (<< 1:13.04+20130418), language-pack-gnome-so-base, language-pack-kde-so (<< 1:13.04+20130418), language-pack-kde-so-base (<< 1:13.04+20130418), language-pack-so (<< 1:13.04+20130418), language-pack-so-base (<< 1:13.04+20130418) Depends: language-pack-gnome-so-base (>= 1:13.04+20130418), language-pack-so Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-so/language-pack-gnome-so_13.04+20130418_all.deb Size: 2000 MD5sum: eda7b8fcdf5899cf1e2c371cc57325aa SHA1: cc5892967f5b986b045cc5c4a9675fe020861cc5 SHA256: fa546ad9f78ea0dd5a3d282bf91beeed22e0fbbbbb5bcfa137e214638b56be02 Description: GNOME translation updates for language Somali Description-md5: 43dd1318affa4c413078ab37655db066 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-so-base Priority: optional Section: translations Installed-Size: 38 Maintainer: Language pack maintainers Architecture: all Version: 1:13.04+20130418 Replaces: language-pack-gnome-so (<< 1:13.04+20130418), language-pack-gnome-so-base (<< 1:13.04+20130418), language-pack-kde-so (<< 1:13.04+20130418), language-pack-kde-so-base (<< 1:13.04+20130418), language-pack-so (<< 1:13.04+20130418), language-pack-so-base (<< 1:13.04+20130418) Depends: locales (>= 2.3.6), language-pack-gnome-so (>= 1:13.04+20130418) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-so (<< 1:13.04+20130418) Filename: pool/main/l/language-pack-gnome-so-base/language-pack-gnome-so-base_13.04+20130418_all.deb Size: 2724 MD5sum: 616b8f6cb5e8f32aa5c37ce7b167fe54 SHA1: 4adb80135f5cdec22297bb5e4ea4776a76d1a109 SHA256: 25d1c6f9f3077dce62cf4bd7c998fc0bd03d9e0dee171cba094aa8cef56771d8 Description: GNOME translations for language Somali Description-md5: cbe1e13e0e3a56c20adec9a37c96b2a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sq Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sq (<< 1:14.04+20140410), language-pack-gnome-sq-base, language-pack-kde-sq (<< 1:14.04+20140410), language-pack-kde-sq-base (<< 1:14.04+20140410), language-pack-sq (<< 1:14.04+20140410), language-pack-sq-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sq-base (>= 1:14.04+20140410), language-pack-sq Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sq/language-pack-gnome-sq_14.04+20140410_all.deb Size: 2004 MD5sum: 7430f4729729ae2ffe7bac8d9dd3abf3 SHA1: d1b8a9cc6f202076f7aa74ef833b4e8025e3faea SHA256: 5436b76183d4dbf2940ca9143aea30e9037f3290c92f604a988a2661e49420fc Description: GNOME translation updates for language Albanian Description-md5: b1866be86dde73bbc352177c4681624a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sq-base Priority: optional Section: translations Installed-Size: 4073 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sq (<< 1:14.04+20140410), language-pack-gnome-sq-base (<< 1:14.04+20140410), language-pack-kde-sq (<< 1:14.04+20140410), language-pack-kde-sq-base (<< 1:14.04+20140410), language-pack-sq (<< 1:14.04+20140410), language-pack-sq-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sq (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sq (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sq-base/language-pack-gnome-sq-base_14.04+20140410_all.deb Size: 1181370 MD5sum: 992cdcddeac3b45833b517fea1642544 SHA1: 239ee546632451cf66a7fb42620dc1fa8ec0d775 SHA256: d539df9e1dc137661ac5c92a518efc9729e4d46bdca601ef6f47032d504d723b Description: GNOME translations for language Albanian Description-md5: 4dde5935c1ef292cfb9a3847415f9203 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sr (<< 1:14.04+20140410), language-pack-gnome-sr-base, language-pack-kde-sr (<< 1:14.04+20140410), language-pack-kde-sr-base (<< 1:14.04+20140410), language-pack-sr (<< 1:14.04+20140410), language-pack-sr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sr-base (>= 1:14.04+20140410), language-pack-sr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sr/language-pack-gnome-sr_14.04+20140410_all.deb Size: 1982 MD5sum: 653d3798c690ad44d820c438c88b4e3d SHA1: 5d8804c2950c2dfc62228f5153165dd612c9e640 SHA256: 8d95015d98be7d74e8dc53745b97ac15e7f729672fa8c847034f522ca91bc57d Description: GNOME translation updates for language Serbian Description-md5: 45acfa8d4ee7923177892692b5119e1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sr-base Priority: optional Section: translations Installed-Size: 16161 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sr (<< 1:14.04+20140410), language-pack-gnome-sr-base (<< 1:14.04+20140410), language-pack-kde-sr (<< 1:14.04+20140410), language-pack-kde-sr-base (<< 1:14.04+20140410), language-pack-sr (<< 1:14.04+20140410), language-pack-sr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sr-base/language-pack-gnome-sr-base_14.04+20140410_all.deb Size: 5402038 MD5sum: bd38d4db5e4dcc4709f896cf9e0e926d SHA1: c175427750c42c3d8bddde03b26038929ec7df31 SHA256: cc8aa26d341d25c95d21154719e41118e244d4c39e858962e494489337aaf564 Description: GNOME translations for language Serbian Description-md5: d6bba7853de4421ad89ce866e3448768 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-st Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-st (<< 1:14.04+20140410), language-pack-gnome-st-base, language-pack-kde-st (<< 1:14.04+20140410), language-pack-kde-st-base (<< 1:14.04+20140410), language-pack-st (<< 1:14.04+20140410), language-pack-st-base (<< 1:14.04+20140410) Depends: language-pack-gnome-st-base (>= 1:14.04+20140410), language-pack-st Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-st/language-pack-gnome-st_14.04+20140410_all.deb Size: 2000 MD5sum: 8347d408c2e58f11bb5369795083c506 SHA1: 18e95c0695e047afb5851bb1ef8f2de0f0f763e0 SHA256: 22a7e040c4b10c4faf17f138fcbc870a72ea234a0160be70fdbcae075a605a63 Description: GNOME translation updates for language Sotho, Southern Description-md5: 2dd1bc892c465ef6bf871f9d028b774b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-st-base Priority: optional Section: translations Installed-Size: 40 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-st (<< 1:14.04+20140410), language-pack-gnome-st-base (<< 1:14.04+20140410), language-pack-kde-st (<< 1:14.04+20140410), language-pack-kde-st-base (<< 1:14.04+20140410), language-pack-st (<< 1:14.04+20140410), language-pack-st-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-st (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-st (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-st-base/language-pack-gnome-st-base_14.04+20140410_all.deb Size: 3580 MD5sum: 12fddac1595e1d614809020b5f7d4a63 SHA1: 7aa7689933868446dc214608364e7379aff2b0ae SHA256: 5a59ba5dd381757ee427c3f969786ee409d1bf22e40a29efa988fd5976a0862e Description: GNOME translations for language Sotho, Southern Description-md5: d444736ae0167710db8e1437fe1e678c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sv (<< 1:14.04+20140410), language-pack-gnome-sv-base, language-pack-kde-sv (<< 1:14.04+20140410), language-pack-kde-sv-base (<< 1:14.04+20140410), language-pack-sv (<< 1:14.04+20140410), language-pack-sv-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sv-base (>= 1:14.04+20140410), language-pack-sv Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sv/language-pack-gnome-sv_14.04+20140410_all.deb Size: 2016 MD5sum: b0c0ee3f25c6485cdb31f250f5d00365 SHA1: ce89296dc5985dd6460d21d18a38cf6c36aa6244 SHA256: 4d5dcd40601774ee2c35ef1b69eda785835781a2f5b523a8deadc86c10534231 Description: GNOME translation updates for language Swedish Description-md5: bb1d72d15af6affc7a4b16c6e635c08f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sv-base Priority: optional Section: translations Installed-Size: 9591 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sv (<< 1:14.04+20140410), language-pack-gnome-sv-base (<< 1:14.04+20140410), language-pack-kde-sv (<< 1:14.04+20140410), language-pack-kde-sv-base (<< 1:14.04+20140410), language-pack-sv (<< 1:14.04+20140410), language-pack-sv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sv-base/language-pack-gnome-sv-base_14.04+20140410_all.deb Size: 3079850 MD5sum: dc56257652d4c043d2585886b5800168 SHA1: 8495e0f8d2bd4a59c3fc8fe611dc041a91c0d7aa SHA256: f5e031693482ebb5c4fffe887c29551eafaf4f80068624291c64bb1b0975f0a1 Description: GNOME translations for language Swedish Description-md5: f5f380a948362efc4eb39306fd6b25a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sw (<< 1:14.04+20140410), language-pack-gnome-sw-base, language-pack-kde-sw (<< 1:14.04+20140410), language-pack-kde-sw-base (<< 1:14.04+20140410), language-pack-sw (<< 1:14.04+20140410), language-pack-sw-base (<< 1:14.04+20140410) Depends: language-pack-gnome-sw-base (>= 1:14.04+20140410), language-pack-sw Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-sw/language-pack-gnome-sw_14.04+20140410_all.deb Size: 1990 MD5sum: 85a95bdff8838581e078692bb58a87a5 SHA1: 0a75fe8f6b8367e05965f48a17a1ea822c6e7862 SHA256: 45b188fac796cd6f95126f4a724f7c98188b4a0dc847ef9793c56850920e4ff6 Description: GNOME translation updates for language Swahili Description-md5: e7b055006ad05880a4fbff1b425d6524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-sw-base Priority: optional Section: translations Installed-Size: 65 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sw (<< 1:14.04+20140410), language-pack-gnome-sw-base (<< 1:14.04+20140410), language-pack-kde-sw (<< 1:14.04+20140410), language-pack-kde-sw-base (<< 1:14.04+20140410), language-pack-sw (<< 1:14.04+20140410), language-pack-sw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-sw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-sw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-sw-base/language-pack-gnome-sw-base_14.04+20140410_all.deb Size: 11924 MD5sum: 158345255639db6a6db67a529064fa9a SHA1: e98fa24b10ac04edc2fde216fab50347cee59074 SHA256: c024807e316c3e142315ffa6553541a24dde355911c7929308096727deaaa714 Description: GNOME translations for language Swahili Description-md5: 0b03031a128d203b76dca8f5d4b536ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ta Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ta (<< 1:14.04+20140410), language-pack-gnome-ta-base, language-pack-kde-ta (<< 1:14.04+20140410), language-pack-kde-ta-base (<< 1:14.04+20140410), language-pack-ta (<< 1:14.04+20140410), language-pack-ta-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ta-base (>= 1:14.04+20140410), language-pack-ta Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ta/language-pack-gnome-ta_14.04+20140410_all.deb Size: 2004 MD5sum: 2efdf3e178f3a59c9fd5e8fa7ddf536f SHA1: f1156edc13d6155c5eeac80c9d32d1e6fb619d63 SHA256: 41e540aaaf0d2448758175f6f1ed1d6edf901d9d50f86d5a89de504af850f516 Description: GNOME translation updates for language Tamil Description-md5: 1f87e19e829b55bdf13e56bd13043076 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ta-base Priority: optional Section: translations Installed-Size: 6858 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ta (<< 1:14.04+20140410), language-pack-gnome-ta-base (<< 1:14.04+20140410), language-pack-kde-ta (<< 1:14.04+20140410), language-pack-kde-ta-base (<< 1:14.04+20140410), language-pack-ta (<< 1:14.04+20140410), language-pack-ta-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ta (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ta (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ta-base/language-pack-gnome-ta-base_14.04+20140410_all.deb Size: 1379016 MD5sum: 2956741bcadaebc1afcdda95a6ac7426 SHA1: 4711c932bfbdd79860ddfa9d6f4403d187587dfa SHA256: d2e4d42934ab7f87bb26f65dc12a22d8d65640d03a033672fa1d63bf2fa13de4 Description: GNOME translations for language Tamil Description-md5: 7f9198f392bf94345eae66f7812b20f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-te Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-te (<< 1:14.04+20140410), language-pack-gnome-te-base, language-pack-kde-te (<< 1:14.04+20140410), language-pack-kde-te-base (<< 1:14.04+20140410), language-pack-te (<< 1:14.04+20140410), language-pack-te-base (<< 1:14.04+20140410) Depends: language-pack-gnome-te-base (>= 1:14.04+20140410), language-pack-te Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-te/language-pack-gnome-te_14.04+20140410_all.deb Size: 1984 MD5sum: fd5fadd8c3f293c8b2731e65efdf51d5 SHA1: 4618eb8e0c7ae6c4c4a375c7e0a3f46fc6c334bb SHA256: 1d3efd63439d59b447d5e292d12eda1da9afc10a620c9dd285d20c645cc35dcd Description: GNOME translation updates for language Telugu Description-md5: 943b70671888a44264daf05f3045ef34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-te-base Priority: optional Section: translations Installed-Size: 8556 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-te (<< 1:14.04+20140410), language-pack-gnome-te-base (<< 1:14.04+20140410), language-pack-kde-te (<< 1:14.04+20140410), language-pack-kde-te-base (<< 1:14.04+20140410), language-pack-te (<< 1:14.04+20140410), language-pack-te-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-te (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-te (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-te-base/language-pack-gnome-te-base_14.04+20140410_all.deb Size: 1705522 MD5sum: df13c0e852154702cc1ff071c97d1b73 SHA1: e4209d172fb62205e8387b4a60342423bd81d55d SHA256: 9368ffb2698e28a69fc9c1dbee81c7834cebc0aedf978778af3e1e356f699338 Description: GNOME translations for language Telugu Description-md5: 905b65e342303bb10d18388b38b96353 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tg (<< 1:14.04+20140410), language-pack-gnome-tg-base, language-pack-kde-tg (<< 1:14.04+20140410), language-pack-kde-tg-base (<< 1:14.04+20140410), language-pack-tg (<< 1:14.04+20140410), language-pack-tg-base (<< 1:14.04+20140410) Depends: language-pack-gnome-tg-base (>= 1:14.04+20140410), language-pack-tg Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-tg/language-pack-gnome-tg_14.04+20140410_all.deb Size: 1996 MD5sum: eca449a8563fd621a555c5c84b78a029 SHA1: 2c10e6e8f43dcdb68b3d8371da37cf148689d681 SHA256: 901d5a7628cb51c970ea4468e7869954b918c91ec7efdc48be69c373324e462b Description: GNOME translation updates for language Tajik Description-md5: a703bae4ff921305bab998f41cbead33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tg-base Priority: optional Section: translations Installed-Size: 2353 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tg (<< 1:14.04+20140410), language-pack-gnome-tg-base (<< 1:14.04+20140410), language-pack-kde-tg (<< 1:14.04+20140410), language-pack-kde-tg-base (<< 1:14.04+20140410), language-pack-tg (<< 1:14.04+20140410), language-pack-tg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-tg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-tg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-tg-base/language-pack-gnome-tg-base_14.04+20140410_all.deb Size: 521716 MD5sum: 4541df3b6d41b968ea2a7a3020568240 SHA1: cda4349fb27b0ed5b895d151a0fc071ca209bd10 SHA256: 4027331fe5bb5ea34c0db8f27bade2011db062d8e8463bda91bf90b4e4dbc6df Description: GNOME translations for language Tajik Description-md5: b207702403ebfbcc2179cdc72f31c9ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-th Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-th (<< 1:14.04+20140410), language-pack-gnome-th-base, language-pack-kde-th (<< 1:14.04+20140410), language-pack-kde-th-base (<< 1:14.04+20140410), language-pack-th (<< 1:14.04+20140410), language-pack-th-base (<< 1:14.04+20140410) Depends: language-pack-gnome-th-base (>= 1:14.04+20140410), language-pack-th Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-th/language-pack-gnome-th_14.04+20140410_all.deb Size: 2002 MD5sum: a24f2434aa6668c7560fc15c05f81613 SHA1: 59716e10d11cf2b59c90315e746bb7b49a63155b SHA256: 3cdbf2257107ec7d305f103c381d32cc9c6c1b6f0e2bf78fdb44ae9cdd43d517 Description: GNOME translation updates for language Thai Description-md5: 260f7893c953bfa370cfcd3e18dc2333 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-th-base Priority: optional Section: translations Installed-Size: 5781 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-th (<< 1:14.04+20140410), language-pack-gnome-th-base (<< 1:14.04+20140410), language-pack-kde-th (<< 1:14.04+20140410), language-pack-kde-th-base (<< 1:14.04+20140410), language-pack-th (<< 1:14.04+20140410), language-pack-th-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-th (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-th (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-th-base/language-pack-gnome-th-base_14.04+20140410_all.deb Size: 1193126 MD5sum: 0c5570fee0f9c4bfd19b6f5177aa6f3d SHA1: e8d527b2dcccdcaa491cfa23e72bb9f973236a22 SHA256: d15637aac37d6fdcc6361e1c431076b95783ea832ecf5ee880f325043bef46e1 Description: GNOME translations for language Thai Description-md5: 5ad4875bbdd96dcd96c47b6942cbcdea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ti Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ti (<< 1:14.04+20140410), language-pack-gnome-ti-base, language-pack-kde-ti (<< 1:14.04+20140410), language-pack-kde-ti-base (<< 1:14.04+20140410), language-pack-ti (<< 1:14.04+20140410), language-pack-ti-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ti-base (>= 1:14.04+20140410), language-pack-ti Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ti/language-pack-gnome-ti_14.04+20140410_all.deb Size: 2022 MD5sum: dace9bbc83572476b2c19d859082cebc SHA1: ec6b5583e270f3ab2420f8a5ea16a8845ffe1abc SHA256: 3a07c7a5cc08bc862c57bc3db4d7ebc3ecef72b6a19f7b7937f2c16bd3a47f20 Description: GNOME translation updates for language Tigrinya Description-md5: d5c8ed473e6de5a7582c072fd0d44426 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ti-base Priority: optional Section: translations Installed-Size: 49 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ti (<< 1:14.04+20140410), language-pack-gnome-ti-base (<< 1:14.04+20140410), language-pack-kde-ti (<< 1:14.04+20140410), language-pack-kde-ti-base (<< 1:14.04+20140410), language-pack-ti (<< 1:14.04+20140410), language-pack-ti-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ti (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ti (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ti-base/language-pack-gnome-ti-base_14.04+20140410_all.deb Size: 6754 MD5sum: c703e87c346b25582ad374e4d0d83d80 SHA1: ed24c3f5d6ae67e10ecb7740d4fcf59d69761d1b SHA256: ebb1c2b9c3590539841ebead18139bc5ee5cddb8af3d9355dbaec1071f525db2 Description: GNOME translations for language Tigrinya Description-md5: 674d0dce2efd3cd931d57472eaba5286 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tk (<< 1:14.04+20140410), language-pack-gnome-tk-base, language-pack-kde-tk (<< 1:14.04+20140410), language-pack-kde-tk-base (<< 1:14.04+20140410), language-pack-tk (<< 1:14.04+20140410), language-pack-tk-base (<< 1:14.04+20140410) Depends: language-pack-gnome-tk-base (>= 1:14.04+20140410), language-pack-tk Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-tk/language-pack-gnome-tk_14.04+20140410_all.deb Size: 2040 MD5sum: deb8dcb37c8fd34bdb7cbb7d5dd33964 SHA1: 51911b17678d1502f43e4411cd741d04a2e9d285 SHA256: 27cd1ec4beae953bba32fc62a2656fe6af6ca0b5129028962dd3fffc28f7246b Description: GNOME translation updates for language Turkmen Description-md5: 3025b7914da5dc42801d8bc3117a8894 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tk-base Priority: optional Section: translations Installed-Size: 130 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tk (<< 1:14.04+20140410), language-pack-gnome-tk-base (<< 1:14.04+20140410), language-pack-kde-tk (<< 1:14.04+20140410), language-pack-kde-tk-base (<< 1:14.04+20140410), language-pack-tk (<< 1:14.04+20140410), language-pack-tk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-tk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-tk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-tk-base/language-pack-gnome-tk-base_14.04+20140410_all.deb Size: 34972 MD5sum: 793cb385845bfe19dbb109ef4545304d SHA1: a308cb65f5ed36621d7b63f2298b33c6ac01b3f0 SHA256: bc8fb507ea78f80cb7244e7263ac1a824af7cb101bcd422783d3c94a1d3dfba5 Description: GNOME translations for language Turkmen Description-md5: 2de52385fc3bc9381c2beaea3cacbbbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tl (<< 1:14.04+20140410), language-pack-gnome-tl-base, language-pack-kde-tl (<< 1:14.04+20140410), language-pack-kde-tl-base (<< 1:14.04+20140410), language-pack-tl (<< 1:14.04+20140410), language-pack-tl-base (<< 1:14.04+20140410) Depends: language-pack-gnome-tl-base (>= 1:14.04+20140410), language-pack-tl Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-tl/language-pack-gnome-tl_14.04+20140410_all.deb Size: 1994 MD5sum: 21be2c1e5cf34e4b37e116e7895c692e SHA1: 38cdc07104566af6b2cf2fe6ab49d1ff6ffa133e SHA256: 6ae6e809ead63906d059500cea556c4b63afa9eb541a2b660e231c93c3ea3c5d Description: GNOME translation updates for language Tagalog Description-md5: 842cd1089ad73599f7c57dc2063355dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tl-base Priority: optional Section: translations Installed-Size: 854 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tl (<< 1:14.04+20140410), language-pack-gnome-tl-base (<< 1:14.04+20140410), language-pack-kde-tl (<< 1:14.04+20140410), language-pack-kde-tl-base (<< 1:14.04+20140410), language-pack-tl (<< 1:14.04+20140410), language-pack-tl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-tl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-tl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-tl-base/language-pack-gnome-tl-base_14.04+20140410_all.deb Size: 156046 MD5sum: db4bfb9050f516b79d83083f943346e4 SHA1: 9ca158071e10df216a70f6378f8d94a219b549d3 SHA256: 067429d7ad5c1cf00d1c5d44cdfe9ff9b4d8288060dd8c4c68a4b1ac95313d9a Description: GNOME translations for language Tagalog Description-md5: fc2daa475fdb6ef54d08eb375fb1016f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tr (<< 1:14.04+20140410), language-pack-gnome-tr-base, language-pack-kde-tr (<< 1:14.04+20140410), language-pack-kde-tr-base (<< 1:14.04+20140410), language-pack-tr (<< 1:14.04+20140410), language-pack-tr-base (<< 1:14.04+20140410) Depends: language-pack-gnome-tr-base (>= 1:14.04+20140410), language-pack-tr Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-tr/language-pack-gnome-tr_14.04+20140410_all.deb Size: 2000 MD5sum: 0b7bbc505c2e86c1f74868ccc164c13e SHA1: d942be5a187b94f9bde6faa5ff53832fbc20c6a9 SHA256: f74b0ae1d5e4512ef73757eb837584ba61a0a99b10e1a1aa81cafa899c6c0301 Description: GNOME translation updates for language Turkish Description-md5: 1df43f38739a28f0cf07581e88d49cc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tr-base Priority: optional Section: translations Installed-Size: 5601 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tr (<< 1:14.04+20140410), language-pack-gnome-tr-base (<< 1:14.04+20140410), language-pack-kde-tr (<< 1:14.04+20140410), language-pack-kde-tr-base (<< 1:14.04+20140410), language-pack-tr (<< 1:14.04+20140410), language-pack-tr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-tr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-tr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-tr-base/language-pack-gnome-tr-base_14.04+20140410_all.deb Size: 1657954 MD5sum: 924ae577ba7d29401d1604a93f540258 SHA1: 9b0221ba4e754d249157ff9bbe0a84577281e4b1 SHA256: 93f4e4c8ed8cce9d2733d5e757c5e9cc8842de9443004b62e5ca388495c72107 Description: GNOME translations for language Turkish Description-md5: d3e2fd89dcaf73ded0f30af0c2c0deae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ts Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ts (<< 1:14.04+20140410), language-pack-gnome-ts-base, language-pack-kde-ts (<< 1:14.04+20140410), language-pack-kde-ts-base (<< 1:14.04+20140410), language-pack-ts (<< 1:14.04+20140410), language-pack-ts-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ts-base (>= 1:14.04+20140410), language-pack-ts Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ts/language-pack-gnome-ts_14.04+20140410_all.deb Size: 2004 MD5sum: 241adb1d2af37a3efbbbf98a4826f1ed SHA1: fd9a20eeb7d45d290779773f63bb935bade5b3b4 SHA256: faf21e59a2c7a2b8cbc42245522ec0b6a8f9f9323601da514c73ecf8b8f71400 Description: GNOME translation updates for language Tsonga Description-md5: 81cfc2a339b10496770ac18ec3704329 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ts-base Priority: optional Section: translations Installed-Size: 68 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ts (<< 1:14.04+20140410), language-pack-gnome-ts-base (<< 1:14.04+20140410), language-pack-kde-ts (<< 1:14.04+20140410), language-pack-kde-ts-base (<< 1:14.04+20140410), language-pack-ts (<< 1:14.04+20140410), language-pack-ts-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ts (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ts (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ts-base/language-pack-gnome-ts-base_14.04+20140410_all.deb Size: 14292 MD5sum: 2b6422dcdd030f10808c23a13eb78392 SHA1: cab6a09d8974c54042729f87e60c3ea5e221a189 SHA256: c55dbbf7695dc58118233659926536baae353b1a9e11f79717f554d51472c3fc Description: GNOME translations for language Tsonga Description-md5: 2feab753ef977f259b87078c209c02fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tt (<< 1:14.04+20140410), language-pack-gnome-tt-base, language-pack-kde-tt (<< 1:14.04+20140410), language-pack-kde-tt-base (<< 1:14.04+20140410), language-pack-tt (<< 1:14.04+20140410), language-pack-tt-base (<< 1:14.04+20140410) Depends: language-pack-gnome-tt-base (>= 1:14.04+20140410), language-pack-tt Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-tt/language-pack-gnome-tt_14.04+20140410_all.deb Size: 1998 MD5sum: 4d691776cb378d43c4f354d3787479b7 SHA1: b4042bc018bf6433442d56db77dffb9c550ee6d2 SHA256: f66038e4cdf96bbbe58027cd1d3853bc10eb3ad597fefe711949ed3dfdcc35d3 Description: GNOME translation updates for language Tatar Description-md5: c88474b65f3b6d3f1e5ec95ad2ecab2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-tt-base Priority: optional Section: translations Installed-Size: 152 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tt (<< 1:14.04+20140410), language-pack-gnome-tt-base (<< 1:14.04+20140410), language-pack-kde-tt (<< 1:14.04+20140410), language-pack-kde-tt-base (<< 1:14.04+20140410), language-pack-tt (<< 1:14.04+20140410), language-pack-tt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-tt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-tt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-tt-base/language-pack-gnome-tt-base_14.04+20140410_all.deb Size: 39742 MD5sum: 09da324e9bc9d0cfcb4422913446cada SHA1: 37c6c51fc8a816e129d51ea8761b4dda935d33c1 SHA256: 6528604f86571f0d67ca4ae708dce54d3eee5b7e1ef0a04ba02b2c692778353b Description: GNOME translations for language Tatar Description-md5: 40990a9f12b4525a80b5590caf7ede4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ug Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ug (<< 1:14.04+20140410), language-pack-gnome-ug-base, language-pack-kde-ug (<< 1:14.04+20140410), language-pack-kde-ug-base (<< 1:14.04+20140410), language-pack-ug (<< 1:14.04+20140410), language-pack-ug-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ug-base (>= 1:14.04+20140410), language-pack-ug Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ug/language-pack-gnome-ug_14.04+20140410_all.deb Size: 2006 MD5sum: 3bc2ff96ea10af096e65727dd0c5c010 SHA1: 1f1320e49ccd2f3be0ffce9f9198bf2a80a756a8 SHA256: 08efb55e431202b839f0e33adff885c0f665632ff58c5cc54fe286ef489cca4a Description: GNOME translation updates for language Uighur; Uyghur Description-md5: da26f9c049165224a38795991258e233 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ug-base Priority: optional Section: translations Installed-Size: 6115 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ug (<< 1:14.04+20140410), language-pack-gnome-ug-base (<< 1:14.04+20140410), language-pack-kde-ug (<< 1:14.04+20140410), language-pack-kde-ug-base (<< 1:14.04+20140410), language-pack-ug (<< 1:14.04+20140410), language-pack-ug-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ug (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ug (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ug-base/language-pack-gnome-ug-base_14.04+20140410_all.deb Size: 1408234 MD5sum: 3b510eeb0396a09a1f9eb784e8bb32d2 SHA1: 6000a1628aa1d78c2a50d35fe117fc526ed10c6b SHA256: 9e15d86e64e4bfef0f58304f16f1a064c664d20d7ef991ae9d4ed07cfc2a3f36 Description: GNOME translations for language Uighur; Uyghur Description-md5: e8294230eaaf997c67b0359525b1cf62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-uk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uk (<< 1:14.04+20140410), language-pack-gnome-uk-base, language-pack-kde-uk (<< 1:14.04+20140410), language-pack-kde-uk-base (<< 1:14.04+20140410), language-pack-uk (<< 1:14.04+20140410), language-pack-uk-base (<< 1:14.04+20140410) Depends: language-pack-gnome-uk-base (>= 1:14.04+20140410), language-pack-uk Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-uk/language-pack-gnome-uk_14.04+20140410_all.deb Size: 1996 MD5sum: 4aedfc52091addbb482791a2af191672 SHA1: b9eb870d503040226958096185504055cac6e2f1 SHA256: 03c5ee20d88790dbf6014302a15fb1a13b5e8ff8d821032188ae4c267a953881 Description: GNOME translation updates for language Ukrainian Description-md5: 8e4299e1c45206c9c3a1355ea82b7a6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-uk-base Priority: optional Section: translations Installed-Size: 9380 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uk (<< 1:14.04+20140410), language-pack-gnome-uk-base (<< 1:14.04+20140410), language-pack-kde-uk (<< 1:14.04+20140410), language-pack-kde-uk-base (<< 1:14.04+20140410), language-pack-uk (<< 1:14.04+20140410), language-pack-uk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-uk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-uk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-uk-base/language-pack-gnome-uk-base_14.04+20140410_all.deb Size: 2312256 MD5sum: 183f8bd6d1c8b84723ef053b2a0b7c66 SHA1: fcd0eaebd3f931f9983fd102de4bbb65849f9165 SHA256: 78505103288a4b407b20a8416b5418fe51d46ad72b81f05e57703a4952b9350b Description: GNOME translations for language Ukrainian Description-md5: a66bca391cb5c1553a32b03d6ba89e03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ur Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ur (<< 1:14.04+20140410), language-pack-gnome-ur-base, language-pack-kde-ur (<< 1:14.04+20140410), language-pack-kde-ur-base (<< 1:14.04+20140410), language-pack-ur (<< 1:14.04+20140410), language-pack-ur-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ur-base (>= 1:14.04+20140410), language-pack-ur Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ur/language-pack-gnome-ur_14.04+20140410_all.deb Size: 2010 MD5sum: f9378818854c84cf9d68bd2799f35b6e SHA1: 3c9358f632f87e8e901b1930ec850f9369b39b52 SHA256: a43fa2cf8d58b134a960927f315f750859430c8f57b730d43291f849faad4c49 Description: GNOME translation updates for language Urdu Description-md5: def38b01d3dfd7698b77f0b0497d5949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ur-base Priority: optional Section: translations Installed-Size: 887 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ur (<< 1:14.04+20140410), language-pack-gnome-ur-base (<< 1:14.04+20140410), language-pack-kde-ur (<< 1:14.04+20140410), language-pack-kde-ur-base (<< 1:14.04+20140410), language-pack-ur (<< 1:14.04+20140410), language-pack-ur-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ur (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ur (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ur-base/language-pack-gnome-ur-base_14.04+20140410_all.deb Size: 161072 MD5sum: 42dc2cb092883b752c533c741d929c02 SHA1: 60022bae91073298f60b466f18ab4c828ae39fd7 SHA256: a216635c0225ff7e3a8f05f18e3472df955b0c5286c6351cc2a5bc4c0d8ef50e Description: GNOME translations for language Urdu Description-md5: 52bc5cfa982b85d655f1729669a1b25f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-uz Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uz (<< 1:14.04+20140410), language-pack-gnome-uz-base, language-pack-kde-uz (<< 1:14.04+20140410), language-pack-kde-uz-base (<< 1:14.04+20140410), language-pack-uz (<< 1:14.04+20140410), language-pack-uz-base (<< 1:14.04+20140410) Depends: language-pack-gnome-uz-base (>= 1:14.04+20140410), language-pack-uz Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-uz/language-pack-gnome-uz_14.04+20140410_all.deb Size: 2004 MD5sum: 831033d9ab1b88a7c4a06f2d12977be8 SHA1: dfd5e67dff82dddc72dc4de96f0e8efa7f24fe52 SHA256: 2c5c74d4d0db0d7e770af636fbf81646432f3f79f174f5e6a806a1c1025f1ec9 Description: GNOME translation updates for language Uzbek Description-md5: 1c1ee1a05a45a5ec9d01942bd00dbb3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-uz-base Priority: optional Section: translations Installed-Size: 1770 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uz (<< 1:14.04+20140410), language-pack-gnome-uz-base (<< 1:14.04+20140410), language-pack-kde-uz (<< 1:14.04+20140410), language-pack-kde-uz-base (<< 1:14.04+20140410), language-pack-uz (<< 1:14.04+20140410), language-pack-uz-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-uz (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-uz (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-uz-base/language-pack-gnome-uz-base_14.04+20140410_all.deb Size: 376436 MD5sum: dbd0ba970b6e8c3d72d99382b50316e0 SHA1: 0713c7faa86fa062af20bd7f581395e5c2b4e6fd SHA256: 9d123385b4ad6fdafec28ec5cbdaff281f0b5867a6446f101bc3f0c7da9bf2f9 Description: GNOME translations for language Uzbek Description-md5: 44dd98c0189933d7e086ac0805bcc7e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ve Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ve (<< 1:14.04+20140410), language-pack-gnome-ve-base, language-pack-kde-ve (<< 1:14.04+20140410), language-pack-kde-ve-base (<< 1:14.04+20140410), language-pack-ve (<< 1:14.04+20140410), language-pack-ve-base (<< 1:14.04+20140410) Depends: language-pack-gnome-ve-base (>= 1:14.04+20140410), language-pack-ve Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-ve/language-pack-gnome-ve_14.04+20140410_all.deb Size: 2010 MD5sum: 38c2a8f63f01044d2de2ec2a7d46141b SHA1: 033d81e2184455ed22477c61c38563ab830af3c3 SHA256: ca43a4fc2f01b5e114bd432c9ae090c38e357a489898a3ac3214dd8bac4292ff Description: GNOME translation updates for language Venda Description-md5: e8b57752983c85b3d7e8fdd9ddaf7f4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-ve-base Priority: optional Section: translations Installed-Size: 39 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ve (<< 1:14.04+20140410), language-pack-gnome-ve-base (<< 1:14.04+20140410), language-pack-kde-ve (<< 1:14.04+20140410), language-pack-kde-ve-base (<< 1:14.04+20140410), language-pack-ve (<< 1:14.04+20140410), language-pack-ve-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-ve (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-ve (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-ve-base/language-pack-gnome-ve-base_14.04+20140410_all.deb Size: 2834 MD5sum: 5545a64e7644c47cb4585cfdef6dac30 SHA1: de0ef0a7b56c7dbb626dd45ddd0ccae7e4e90c47 SHA256: e7da0120e97f548d4a5df2545e8d76651a42b0745f421e66bcf2ca2df2853ea1 Description: GNOME translations for language Venda Description-md5: d266860ee6ae34c7e672be44b5fccb63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-vi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-vi (<< 1:14.04+20140410), language-pack-gnome-vi-base, language-pack-kde-vi (<< 1:14.04+20140410), language-pack-kde-vi-base (<< 1:14.04+20140410), language-pack-vi (<< 1:14.04+20140410), language-pack-vi-base (<< 1:14.04+20140410) Depends: language-pack-gnome-vi-base (>= 1:14.04+20140410), language-pack-vi Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-vi/language-pack-gnome-vi_14.04+20140410_all.deb Size: 2006 MD5sum: aefafce569227c7012d4a6dd6f53fb1c SHA1: 0725d1e7cbd0ce15c8f9f827a4bb094033625774 SHA256: 1ad13e9dadec50416088d0d600d5c5dbd2eab45ff175922be6875b1cda0c4125 Description: GNOME translation updates for language Vietnamese Description-md5: cb187da4eec75784dd42a52057c4afe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-vi-base Priority: optional Section: translations Installed-Size: 6615 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-vi (<< 1:14.04+20140410), language-pack-gnome-vi-base (<< 1:14.04+20140410), language-pack-kde-vi (<< 1:14.04+20140410), language-pack-kde-vi-base (<< 1:14.04+20140410), language-pack-vi (<< 1:14.04+20140410), language-pack-vi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-vi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-vi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-vi-base/language-pack-gnome-vi-base_14.04+20140410_all.deb Size: 2082164 MD5sum: d69be5887dfc9240cf95cfbd55efb084 SHA1: d2dd9c1f2308b8878a53c4570a2bed21b50ca445 SHA256: a980c9c4736ea98fec9089a76d1b1301b034eb4e78fb9f5f6ef68b303df63a15 Description: GNOME translations for language Vietnamese Description-md5: a02fe55b4937f4d212b038e3ff928c4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wa (<< 1:14.04+20140410), language-pack-gnome-wa-base, language-pack-kde-wa (<< 1:14.04+20140410), language-pack-kde-wa-base (<< 1:14.04+20140410), language-pack-wa (<< 1:14.04+20140410), language-pack-wa-base (<< 1:14.04+20140410) Depends: language-pack-gnome-wa-base (>= 1:14.04+20140410), language-pack-wa Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-wa/language-pack-gnome-wa_14.04+20140410_all.deb Size: 1984 MD5sum: a5b5a97cb9b60c2ccb3f17846706af4b SHA1: be0e89f1c71f7fee67e56a2e937a4bc01c78169b SHA256: f7799c3ceaeb1ce8b57efafafbe5037793d5fff98ac5229bcc02ec217e7abf16 Description: GNOME translation updates for language Walloon Description-md5: cf5374429f2ac83519e28b491731e8d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wa-base Priority: optional Section: translations Installed-Size: 399 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wa (<< 1:14.04+20140410), language-pack-gnome-wa-base (<< 1:14.04+20140410), language-pack-kde-wa (<< 1:14.04+20140410), language-pack-kde-wa-base (<< 1:14.04+20140410), language-pack-wa (<< 1:14.04+20140410), language-pack-wa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-wa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-wa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-wa-base/language-pack-gnome-wa-base_14.04+20140410_all.deb Size: 109652 MD5sum: 03b80041b6508b71eee53a7e9bb2e867 SHA1: 4cf7d924b0c73a61de64214ed9adc6b66bb51f33 SHA256: 7c7f6d56c61a0556b561af8f21776bb8e61f825469692f94e05c1f592ccba276 Description: GNOME translations for language Walloon Description-md5: cbe68441dcb9b05299dadae277d7bf26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wae Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wae (<< 1:14.04+20140410), language-pack-gnome-wae-base, language-pack-kde-wae (<< 1:14.04+20140410), language-pack-kde-wae-base (<< 1:14.04+20140410), language-pack-wae (<< 1:14.04+20140410), language-pack-wae-base (<< 1:14.04+20140410) Depends: language-pack-gnome-wae-base (>= 1:14.04+20140410), language-pack-wae Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-wae/language-pack-gnome-wae_14.04+20140410_all.deb Size: 2006 MD5sum: 992175715d16aa50d53119b87e29f622 SHA1: 115946e74172cc15785a3e102d8abb5e7f163076 SHA256: 314b7445f5153c5c0ba2565626d3cfc6ceb5489253c56eb3eb8c352bebf8a0b2 Description: GNOME translation updates for language Walser Description-md5: 01f05ef89346e77faebd1321dece3dd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wae-base Priority: optional Section: translations Installed-Size: 84 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wae (<< 1:14.04+20140410), language-pack-gnome-wae-base (<< 1:14.04+20140410), language-pack-kde-wae (<< 1:14.04+20140410), language-pack-kde-wae-base (<< 1:14.04+20140410), language-pack-wae (<< 1:14.04+20140410), language-pack-wae-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-wae (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-wae (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-wae-base/language-pack-gnome-wae-base_14.04+20140410_all.deb Size: 20598 MD5sum: bf1159f82c14d34dad9250ffa74281f1 SHA1: 0fdfe88ed73f4c743c41d289c2a8a0ec55e9173e SHA256: 3c0f21126db7d9cf918dd9ca6da32d791af6888eb7e267f4969fbbc5e00f408a Description: GNOME translations for language Walser Description-md5: cf24d41ebc556c570c932d8c14a528f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wo (<< 1:14.04+20140410), language-pack-gnome-wo-base, language-pack-kde-wo (<< 1:14.04+20140410), language-pack-kde-wo-base (<< 1:14.04+20140410), language-pack-wo (<< 1:14.04+20140410), language-pack-wo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-wo-base (>= 1:14.04+20140410), language-pack-wo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-wo/language-pack-gnome-wo_14.04+20140410_all.deb Size: 2006 MD5sum: acfc50638f47bb74017fa940c6bc9034 SHA1: e1beea636d7b31f7927fee5921545278dd992500 SHA256: b9a0d4a4db978b01eb1bcae89d895ad2be63e5f9d33dfc15dca9f4e275312b6f Description: GNOME translation updates for language Wolof Description-md5: 6470a3fd200b3b12b8a70ca898998757 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-wo-base Priority: optional Section: translations Installed-Size: 48 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wo (<< 1:14.04+20140410), language-pack-gnome-wo-base (<< 1:14.04+20140410), language-pack-kde-wo (<< 1:14.04+20140410), language-pack-kde-wo-base (<< 1:14.04+20140410), language-pack-wo (<< 1:14.04+20140410), language-pack-wo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-wo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-wo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-wo-base/language-pack-gnome-wo-base_14.04+20140410_all.deb Size: 6516 MD5sum: 1e146d186dffc0b9a2ae0a47bb679892 SHA1: ef30b7110f545ef5d260b2f6029c0144730ec104 SHA256: b4082a157af1badfb35ed84e596c656a80e876c92c958e89404ff31a5f94e143 Description: GNOME translations for language Wolof Description-md5: f416d99b183a7f0b1ea907e5d5891734 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-xh Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-xh (<< 1:14.04+20140410), language-pack-gnome-xh-base, language-pack-kde-xh (<< 1:14.04+20140410), language-pack-kde-xh-base (<< 1:14.04+20140410), language-pack-xh (<< 1:14.04+20140410), language-pack-xh-base (<< 1:14.04+20140410) Depends: language-pack-gnome-xh-base (>= 1:14.04+20140410), language-pack-xh Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-xh/language-pack-gnome-xh_14.04+20140410_all.deb Size: 1992 MD5sum: b7e28dd75ff6ecd633dbcc1e99515310 SHA1: ef2560017ddfb6b189e7202e66a6e5ce2d1fd42a SHA256: 95ecefcf82c260e883abd98d1c8612ce3b6bf9ec0c8a9223ad280c9457b32d4f Description: GNOME translation updates for language Xhosa Description-md5: 2dba3fa9542517d2f2567cb4556b3f6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-xh-base Priority: optional Section: translations Installed-Size: 1115 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-xh (<< 1:14.04+20140410), language-pack-gnome-xh-base (<< 1:14.04+20140410), language-pack-kde-xh (<< 1:14.04+20140410), language-pack-kde-xh-base (<< 1:14.04+20140410), language-pack-xh (<< 1:14.04+20140410), language-pack-xh-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-xh (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-xh (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-xh-base/language-pack-gnome-xh-base_14.04+20140410_all.deb Size: 329720 MD5sum: 93c2b22824b935c762926bbb5992a722 SHA1: 88bd003e97c0c2fb7cb5c0c255a60d6e52c70cc9 SHA256: 9a7b1576e7697d07f8cfa0b00a05881a7c032b2d09c3b3bafbc34be68ba5d30b Description: GNOME translations for language Xhosa Description-md5: 2c5af6d03c4bfc16093a2a6c5cb21b3a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-gnome-yi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yi (<< 1:14.04+20140410), language-pack-gnome-yi-base, language-pack-kde-yi (<< 1:14.04+20140410), language-pack-kde-yi-base (<< 1:14.04+20140410), language-pack-yi (<< 1:14.04+20140410), language-pack-yi-base (<< 1:14.04+20140410) Depends: language-pack-gnome-yi-base (>= 1:14.04+20140410), language-pack-yi Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-yi/language-pack-gnome-yi_14.04+20140410_all.deb Size: 2000 MD5sum: 09095fdfce826c76f35f144d7ccf5029 SHA1: e26aed2129210742808c98454ea10afc35acfc98 SHA256: f23d14675d6c9229f572422a1364b7969db9258c534dedff8e94f7559bf6462a Description: GNOME translation updates for language Yiddish Description-md5: cc8f1518846242780629f49e8673724f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-yi-base Priority: optional Section: translations Installed-Size: 305 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yi (<< 1:14.04+20140410), language-pack-gnome-yi-base (<< 1:14.04+20140410), language-pack-kde-yi (<< 1:14.04+20140410), language-pack-kde-yi-base (<< 1:14.04+20140410), language-pack-yi (<< 1:14.04+20140410), language-pack-yi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-yi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-yi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-yi-base/language-pack-gnome-yi-base_14.04+20140410_all.deb Size: 59382 MD5sum: c71da298e658685958ca1f340db76f5a SHA1: fd23cfad8bc6bea814d935360185c968ee5c2b1f SHA256: 2158c95c91321691fdb92c868e1082117df45d9ad73ee705a743adc2405241dd Description: GNOME translations for language Yiddish Description-md5: ae7abc3ebc81a77513ab584d4882f25d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-yo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yo (<< 1:14.04+20140410), language-pack-gnome-yo-base, language-pack-kde-yo (<< 1:14.04+20140410), language-pack-kde-yo-base (<< 1:14.04+20140410), language-pack-yo (<< 1:14.04+20140410), language-pack-yo-base (<< 1:14.04+20140410) Depends: language-pack-gnome-yo-base (>= 1:14.04+20140410), language-pack-yo Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-yo/language-pack-gnome-yo_14.04+20140410_all.deb Size: 2026 MD5sum: 3a91e7a7bcbc2b8084d964d5a3cbfaa1 SHA1: bb76f13c94960261bb429c8ee9b37344f062ec3f SHA256: b2ccde0d562939969b61a18ed1fa676105b97e57185f379e3773a6d55fc3a39e Description: GNOME translation updates for language Yoruba Description-md5: 605366d86a567afb5bb001ec36dbb140 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-yo-base Priority: optional Section: translations Installed-Size: 103 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yo (<< 1:14.04+20140410), language-pack-gnome-yo-base (<< 1:14.04+20140410), language-pack-kde-yo (<< 1:14.04+20140410), language-pack-kde-yo-base (<< 1:14.04+20140410), language-pack-yo (<< 1:14.04+20140410), language-pack-yo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-yo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-yo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-yo-base/language-pack-gnome-yo-base_14.04+20140410_all.deb Size: 22720 MD5sum: a11fe11bee9aae2678e16d905e941481 SHA1: c1e3c49d01e2aade113636a39fe7accf0d5e8529 SHA256: b9eb2d578906c3a45be27dfd8334b68e23447bbe6aa2954eb730b5c6a7294548 Description: GNOME translations for language Yoruba Description-md5: 324fdbb5f99cd5125f6d9b40e2d47e02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-zh-hans Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh (<< 1:9.10), language-pack-gnome-zh-hans (<< 1:14.04+20140410), language-pack-gnome-zh-hans-base, language-pack-kde-zh-hans (<< 1:14.04+20140410), language-pack-kde-zh-hans-base (<< 1:14.04+20140410), language-pack-zh-hans (<< 1:14.04+20140410), language-pack-zh-hans-base (<< 1:14.04+20140410) Depends: language-pack-gnome-zh-hans-base (>= 1:14.04+20140410), language-pack-zh-hans Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-zh (<< 1:9.10) Filename: pool/main/l/language-pack-gnome-zh-hans/language-pack-gnome-zh-hans_14.04+20140410_all.deb Size: 2050 MD5sum: a97d37fb63a5090afe738c68de0a10a5 SHA1: 375e7a3ffb35d4706c497e9645e619f03519e47c SHA256: 98050560dd5ebdb52ce2a11c2d86cd89255bb66d781b573e33a3bd642c97a9ae Description: GNOME translation updates for language Simplified Chinese Description-md5: 00a9e6c608c7c1c1ea6b2a39cdb1d336 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-zh-hans-base Priority: optional Section: translations Installed-Size: 8834 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-base (<< 1:9.10), language-pack-gnome-zh-hans (<< 1:14.04+20140410), language-pack-gnome-zh-hans-base (<< 1:14.04+20140410), language-pack-kde-zh-hans (<< 1:14.04+20140410), language-pack-kde-zh-hans-base (<< 1:14.04+20140410), language-pack-zh-hans (<< 1:14.04+20140410), language-pack-zh-hans-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-zh-hans (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-zh-base (<< 1:9.10), language-pack-gnome-zh-hans (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-zh-hans-base/language-pack-gnome-zh-hans-base_14.04+20140410_all.deb Size: 2446218 MD5sum: 5cd73fe67b0df5e3bbee5e0b936250c1 SHA1: 24ffc7f5c9783467a554cc45031abff07425d561 SHA256: da24e2b54f52d2a9ab916485564ee5738fd5fbc01c8f8998a16f31d18c639fde Description: GNOME translations for language Simplified Chinese Description-md5: 8d266886048cd59372d7b7b25cad65e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-gnome-zh-hant Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh (<< 1:9.10), language-pack-gnome-zh-hant (<< 1:14.04+20140410), language-pack-gnome-zh-hant-base, language-pack-kde-zh-hant (<< 1:14.04+20140410), language-pack-kde-zh-hant-base (<< 1:14.04+20140410), language-pack-zh-hant (<< 1:14.04+20140410), language-pack-zh-hant-base (<< 1:14.04+20140410) Depends: language-pack-gnome-zh-hant-base (>= 1:14.04+20140410), language-pack-zh-hant Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-zh (<< 1:9.10) Filename: pool/main/l/language-pack-gnome-zh-hant/language-pack-gnome-zh-hant_14.04+20140410_all.deb Size: 2060 MD5sum: 90579cf765e11a38332baef2a5e0f2ca SHA1: f50d83a3343fab59b656b9e8297ee137b8dd6c57 SHA256: 942b86edaf6b71155028e6ff502350a56073ba92d9d3d7f6d5b0c3675d8761fa Description: GNOME translation updates for language Traditional Chinese Description-md5: 98d147f4998bf5fd350d5dcd4b0bdd8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-zh-hant-base Priority: optional Section: translations Installed-Size: 11014 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-base (<< 1:9.10), language-pack-gnome-zh-hant (<< 1:14.04+20140410), language-pack-gnome-zh-hant-base (<< 1:14.04+20140410), language-pack-kde-zh-hant (<< 1:14.04+20140410), language-pack-kde-zh-hant-base (<< 1:14.04+20140410), language-pack-zh-hant (<< 1:14.04+20140410), language-pack-zh-hant-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-zh-hant (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-zh-base (<< 1:9.10), language-pack-gnome-zh-hant (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-zh-hant-base/language-pack-gnome-zh-hant-base_14.04+20140410_all.deb Size: 3361288 MD5sum: 8ecd206218c8aafc4c18004b75835e98 SHA1: 320ef5ca510cfb29c1131d7e50c940e1074a90c1 SHA256: 131c752856f1cfb4bf5063488028b2192c6b989c19d53317996008b4f836a785 Description: GNOME translations for language Traditional Chinese Description-md5: 7f6891c51d198dbbd0787b942b59e90e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-zu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zu (<< 1:14.04+20140410), language-pack-gnome-zu-base, language-pack-kde-zu (<< 1:14.04+20140410), language-pack-kde-zu-base (<< 1:14.04+20140410), language-pack-zu (<< 1:14.04+20140410), language-pack-zu-base (<< 1:14.04+20140410) Depends: language-pack-gnome-zu-base (>= 1:14.04+20140410), language-pack-zu Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gnome-zu/language-pack-gnome-zu_14.04+20140410_all.deb Size: 2014 MD5sum: 6eb9415ae9f309ce0b087af653f740dc SHA1: a9812ada93056c62a37144ce232b91cc92166c94 SHA256: 1ba5d553fd7425b8e59d9bbf7878c96068543852f94e5e39c8e8e60b30861708 Description: GNOME translation updates for language Zulu Description-md5: 455dfb781169e21059ba39f8cc612cc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gnome-zu-base Priority: optional Section: translations Installed-Size: 319 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zu (<< 1:14.04+20140410), language-pack-gnome-zu-base (<< 1:14.04+20140410), language-pack-kde-zu (<< 1:14.04+20140410), language-pack-kde-zu-base (<< 1:14.04+20140410), language-pack-zu (<< 1:14.04+20140410), language-pack-zu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gnome-zu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gnome-zu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gnome-zu-base/language-pack-gnome-zu-base_14.04+20140410_all.deb Size: 95126 MD5sum: 399d5465164de209ea1f256b86d668ca SHA1: c0e3d1601ca205da8a637776925770b9203386a0 SHA256: 46af292adc0eb7e01d3feda556c4568b7f27f3343fed7fb4783589d15c541488 Description: GNOME translations for language Zulu Description-md5: 872849a62f18d896be604d295c3d4eef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gu (<< 1:14.04+20140410), language-pack-gnome-gu-base (<< 1:14.04+20140410), language-pack-gu (<< 1:14.04+20140410), language-pack-gu-base, language-pack-kde-gu (<< 1:14.04+20140410), language-pack-kde-gu-base (<< 1:14.04+20140410) Depends: language-pack-gu-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gu/language-pack-gu_14.04+20140410_all.deb Size: 1974 MD5sum: 0c5f62f966698f9da1537accec435f58 SHA1: 0a2c0ba647a5fcaf9faf7d9baa864fec258d5975 SHA256: 92193ef9d1d6b98f90611fa8b39714b3e2284dea3209b336b1e632c6d9289ca1 Description: translation updates for language Gujarati Description-md5: 630a37df7a4b998890d0d8ec4d67508d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gu-base Priority: optional Section: translations Installed-Size: 2053 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gu (<< 1:14.04+20140410), language-pack-gnome-gu-base (<< 1:14.04+20140410), language-pack-gu (<< 1:14.04+20140410), language-pack-gu-base (<< 1:14.04+20140410), language-pack-kde-gu (<< 1:14.04+20140410), language-pack-kde-gu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-gu Conflicts: language-pack-gu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gu-base/language-pack-gu-base_14.04+20140410_all.deb Size: 406432 MD5sum: cdcd6b979981d3ce8523ee69249c9fc3 SHA1: 006298628ab14a146bf6ce7221da7eef8cd05c68 SHA256: e2c874097c5d62816c8fe45d878897e8c720a2ee0e3bf4942450f65e9c31a108 Description: translations for language Gujarati Description-md5: afa7eb56251783b45b7a9c22d14a6f9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gv (<< 1:14.04+20140410), language-pack-gnome-gv-base (<< 1:14.04+20140410), language-pack-gv (<< 1:14.04+20140410), language-pack-gv-base, language-pack-kde-gv (<< 1:14.04+20140410), language-pack-kde-gv-base (<< 1:14.04+20140410) Depends: language-pack-gv-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-gv/language-pack-gv_14.04+20140410_all.deb Size: 1966 MD5sum: 30a91b8557b581555d40e6a078fd76ae SHA1: 82ccd21fb524fbe7e1bf14c122a29c4b2f9807f8 SHA256: 7c417b53fd2d82fd8a127f7c71fe5b3d9b5fa5680cc507b6a5b7a7007762319d Description: translation updates for language Manx Description-md5: 81d27c68fdc35922f46541a837b287f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-gv-base Priority: optional Section: translations Installed-Size: 63 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-gv (<< 1:14.04+20140410), language-pack-gnome-gv-base (<< 1:14.04+20140410), language-pack-gv (<< 1:14.04+20140410), language-pack-gv-base (<< 1:14.04+20140410), language-pack-kde-gv (<< 1:14.04+20140410), language-pack-kde-gv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-gv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-gv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-gv-base/language-pack-gv-base_14.04+20140410_all.deb Size: 6174 MD5sum: cc3c2b72c2080cf69875893503a35af8 SHA1: d6a9212b4a8fc3f5e8e5a36092603f9e08303f41 SHA256: 2ffcee6852a01bd1a810916b79a54a3a2294396210874df7f411bc00f31b21ce Description: translations for language Manx Description-md5: c075128fbccb267975089be9f5777b53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ha Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ha (<< 1:14.04+20140410), language-pack-gnome-ha-base (<< 1:14.04+20140410), language-pack-ha (<< 1:14.04+20140410), language-pack-ha-base, language-pack-kde-ha (<< 1:14.04+20140410), language-pack-kde-ha-base (<< 1:14.04+20140410) Depends: language-pack-ha-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ha/language-pack-ha_14.04+20140410_all.deb Size: 1998 MD5sum: 086da66c33eeee08579e648cad28e550 SHA1: e97da9ca1b69db0d07a75c21b6ac1b70c4dc221a SHA256: d04007e10eb7f42628084c7017ff0f556a67a06eb570957b3f856682d9f2b024 Description: translation updates for language Hausa Description-md5: d4f3b3231976d0ae593e22b09041eb27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ha-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ha (<< 1:14.04+20140410), language-pack-gnome-ha-base (<< 1:14.04+20140410), language-pack-ha (<< 1:14.04+20140410), language-pack-ha-base (<< 1:14.04+20140410), language-pack-kde-ha (<< 1:14.04+20140410), language-pack-kde-ha-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ha (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ha (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ha-base/language-pack-ha-base_14.04+20140410_all.deb Size: 2304 MD5sum: d944dd8d7f78d20a22c272563a799a90 SHA1: e4c6761e0ceaf45d4c3afef560f2aec196b20d61 SHA256: 509092e4c9ffcb5800978a100733bb9c8efa05a9347b6c4189c966a3c68263ce Description: translations for language Hausa Description-md5: 485224adc71797f98daf0dc075c0e3de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-he Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-he (<< 1:14.04+20140410), language-pack-gnome-he-base (<< 1:14.04+20140410), language-pack-he (<< 1:14.04+20140410), language-pack-he-base, language-pack-kde-he (<< 1:14.04+20140410), language-pack-kde-he-base (<< 1:14.04+20140410) Depends: language-pack-he-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-he/language-pack-he_14.04+20140410_all.deb Size: 1964 MD5sum: 2909b3d5f8a7a0e6a8023e5a7b1c0fdf SHA1: 3cc8813d07a4df7bee3e39b1bacd21b54af9b897 SHA256: 55091b81453a4d6eb1b5101ae06929ba3ce2dd5a9625a8eb6ac6f0f61fda6ed5 Description: translation updates for language Hebrew Description-md5: d818a44b8d69f5c3570e19e1052d8c44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-he-base Priority: optional Section: translations Installed-Size: 1771 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-he (<< 1:14.04+20140410), language-pack-gnome-he-base (<< 1:14.04+20140410), language-pack-he (<< 1:14.04+20140410), language-pack-he-base (<< 1:14.04+20140410), language-pack-kde-he (<< 1:14.04+20140410), language-pack-kde-he-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-he (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-he Conflicts: language-pack-he (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-he-base/language-pack-he-base_14.04+20140410_all.deb Size: 479380 MD5sum: 2f022bac61347211a5b960979358befa SHA1: 2f63027b83bc89ce9b181b5c84af30a7b8c7000b SHA256: 23f1599701f1844373c4ee278da6238ae3eb2a38de34454a96f9082fb9f7fc03 Description: translations for language Hebrew Description-md5: faf62eb70bf7b4cbe788cca7e662d04b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hi (<< 1:14.04+20140410), language-pack-gnome-hi-base (<< 1:14.04+20140410), language-pack-hi (<< 1:14.04+20140410), language-pack-hi-base, language-pack-kde-hi (<< 1:14.04+20140410), language-pack-kde-hi-base (<< 1:14.04+20140410) Depends: language-pack-hi-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hi/language-pack-hi_14.04+20140410_all.deb Size: 1974 MD5sum: 5ce7002e6e57a7ab29c8f88221f05c32 SHA1: 760f5d781f5843c939a98a84eebe40ee9e775ed1 SHA256: b0c76f94773cbb94f5adf86b2042cc59d984600d48a390eeb5054226f9b33e2a Description: translation updates for language Hindi Description-md5: 10c81a58a59764580519acdd9584b1b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-hi-base Priority: optional Section: translations Installed-Size: 1876 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hi (<< 1:14.04+20140410), language-pack-gnome-hi-base (<< 1:14.04+20140410), language-pack-hi (<< 1:14.04+20140410), language-pack-hi-base (<< 1:14.04+20140410), language-pack-kde-hi (<< 1:14.04+20140410), language-pack-kde-hi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-hi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-hi Conflicts: language-pack-hi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-hi-base/language-pack-hi-base_14.04+20140410_all.deb Size: 401418 MD5sum: 049136e0019547cfba64f1f2f3ebe487 SHA1: 980807c3a12103be5956830add3db5cbf94320c9 SHA256: 5fb53e946b68e178496e2f565641dab65616dbd76bd8c5ed6cd3b0340887e8a8 Description: translations for language Hindi Description-md5: c0196984bd1163f90f6ecaa40a72d855 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-hne Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-hne (<< 1:12.04+20120417), language-pack-gnome-hne-base (<< 1:12.04+20120417), language-pack-hne (<< 1:12.04+20120417), language-pack-hne-base, language-pack-kde-hne (<< 1:12.04+20120417), language-pack-kde-hne-base (<< 1:12.04+20120417) Depends: language-pack-hne-base (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hne/language-pack-hne_12.04+20120417_all.deb Size: 1974 MD5sum: 63813c8e3eda1a8e6e3bbedd06ad311b SHA1: 0981716ed326d849637b3996938220cd50fc3656 SHA256: 633b16564df07cf5abaf443e483a862fdca3402b8930111e9ce1920ed05b9c6c Description: translation updates for language Chhattisgarhi Description-md5: 4d4e9ad3ea6e40c3089581ffa466f591 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hne-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-hne (<< 1:12.04+20120417), language-pack-gnome-hne-base (<< 1:12.04+20120417), language-pack-hne (<< 1:12.04+20120417), language-pack-hne-base (<< 1:12.04+20120417), language-pack-kde-hne (<< 1:12.04+20120417), language-pack-kde-hne-base (<< 1:12.04+20120417) Depends: locales (>= 2.3.6), language-pack-hne (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-hne (<< 1:12.04+20120417) Filename: pool/main/l/language-pack-hne-base/language-pack-hne-base_12.04+20120417_all.deb Size: 2316 MD5sum: 41f6b16def706cd0405495c96ecfe35f SHA1: 0c54791d35bd55eadddac6bd963be064efcbfb61 SHA256: a746554d6e8e3f05365a4c3cd4b978df39734e988cbf33d26ebe8ea06f9c56e4 Description: translations for language Chhattisgarhi Description-md5: bb768c9a1c693f232a17c2e8f9ac7417 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hr (<< 1:14.04+20140410), language-pack-gnome-hr-base (<< 1:14.04+20140410), language-pack-hr (<< 1:14.04+20140410), language-pack-hr-base, language-pack-kde-hr (<< 1:14.04+20140410), language-pack-kde-hr-base (<< 1:14.04+20140410) Depends: language-pack-hr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hr/language-pack-hr_14.04+20140410_all.deb Size: 1976 MD5sum: f56905fd311338d36b0cacf6acff27fd SHA1: 483dbc6a2e1c171236787a0c8d83e503b8fb1fcf SHA256: 9cede99f6ab78f9eb038774230c6015ecef25d5b6364b821ade15b1e625a1c04 Description: translation updates for language Croatian Description-md5: 34c162e587e1cdea815ca5ed6f077313 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hr-base Priority: optional Section: translations Installed-Size: 1594 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hr (<< 1:14.04+20140410), language-pack-gnome-hr-base (<< 1:14.04+20140410), language-pack-hr (<< 1:14.04+20140410), language-pack-hr-base (<< 1:14.04+20140410), language-pack-kde-hr (<< 1:14.04+20140410), language-pack-kde-hr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-hr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-hr Conflicts: language-pack-hr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-hr-base/language-pack-hr-base_14.04+20140410_all.deb Size: 479962 MD5sum: ff38779554cd197b4b7434c8bbda232b SHA1: d0227de960b7b5bbb7b7091bd4f4cef48f94aee8 SHA256: 6586cb192077b6be943c149d3685d6cbdc4fe0a7149cbba7a81adac49c808e34 Description: translations for language Croatian Description-md5: a447d80c901274a32ff85590aab5e8ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hsb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-hsb (<< 1:12.04+20120417), language-pack-gnome-hsb-base (<< 1:12.04+20120417), language-pack-hsb (<< 1:12.04+20120417), language-pack-hsb-base, language-pack-kde-hsb (<< 1:12.04+20120417), language-pack-kde-hsb-base (<< 1:12.04+20120417) Depends: language-pack-hsb-base (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hsb/language-pack-hsb_12.04+20120417_all.deb Size: 2008 MD5sum: 4c88c7e0ba6d417c0302b1737ecdbdf9 SHA1: 6cbe88828a743009fea14016019dab356278960f SHA256: 7dca8c4316e78664aa7fb444566613c9b93f4d169e5f4412d74cc5865200cfd6 Description: translation updates for language Sorbian, Upper Description-md5: c49dae26fac1eb490a74c8e7373087aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hsb-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-hsb (<< 1:12.04+20120417), language-pack-gnome-hsb-base (<< 1:12.04+20120417), language-pack-hsb (<< 1:12.04+20120417), language-pack-hsb-base (<< 1:12.04+20120417), language-pack-kde-hsb (<< 1:12.04+20120417), language-pack-kde-hsb-base (<< 1:12.04+20120417) Depends: locales (>= 2.3.6), language-pack-hsb (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-hsb (<< 1:12.04+20120417) Filename: pool/main/l/language-pack-hsb-base/language-pack-hsb-base_12.04+20120417_all.deb Size: 2326 MD5sum: 40406d8f95ceba02e2b6a381627160cf SHA1: 67dadb7d0c3d72f7ffa3a6f8c0828a93dbb47321 SHA256: 2308c401e1f293281f64a8ec5aaa191bf39e40a8075bdfca561106ce1cbae9c1 Description: translations for language Sorbian, Upper Description-md5: 9d791420224b5f3a9a8ed7a952653246 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ht Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ht (<< 1:14.04+20140410), language-pack-gnome-ht-base (<< 1:14.04+20140410), language-pack-ht (<< 1:14.04+20140410), language-pack-ht-base, language-pack-kde-ht (<< 1:14.04+20140410), language-pack-kde-ht-base (<< 1:14.04+20140410) Depends: language-pack-ht-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ht/language-pack-ht_14.04+20140410_all.deb Size: 2006 MD5sum: 976790105d418891d68af7aa6c2e98ac SHA1: b6a0a9f84114c87466058b59d50c0095b9660910 SHA256: eb5603cb811a341f8f3f4763f5d8885456a94faf754e8dab9638a0f4033b6fa3 Description: translation updates for language Haitian; Haitian Creole Description-md5: 0ec3bf8b2d3a1f37f7b8966379b6d628 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ht-base Priority: optional Section: translations Installed-Size: 61 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ht (<< 1:14.04+20140410), language-pack-gnome-ht-base (<< 1:14.04+20140410), language-pack-ht (<< 1:14.04+20140410), language-pack-ht-base (<< 1:14.04+20140410), language-pack-kde-ht (<< 1:14.04+20140410), language-pack-kde-ht-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ht (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ht (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ht-base/language-pack-ht-base_14.04+20140410_all.deb Size: 5642 MD5sum: 7332ce98681b2d5782863b530578f5f3 SHA1: 1e74e2574895259905afad159dfa14646357032f SHA256: 698946af6f9e6c46c8a9df4aa056725e15174a348c3b35350a75817d60c0834a Description: translations for language Haitian; Haitian Creole Description-md5: 98160a22567281f8bb9c5446e10f56a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hu (<< 1:14.04+20140410), language-pack-gnome-hu-base (<< 1:14.04+20140410), language-pack-hu (<< 1:14.04+20140410), language-pack-hu-base, language-pack-kde-hu (<< 1:14.04+20140410), language-pack-kde-hu-base (<< 1:14.04+20140410) Depends: language-pack-hu-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hu/language-pack-hu_14.04+20140410_all.deb Size: 1976 MD5sum: 6eab761c281236bde4f102d5e229528d SHA1: b9f05c4940448cdbb5c9939001ad2d106aa740fc SHA256: dd68e55a879d35b0cf19accf9c9b2cf51bb033b498f9ffcb65409ce1797fb20d Description: translation updates for language Hungarian Description-md5: 0d0313d349ce5698586fe79ae7734182 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-hu-base Priority: optional Section: translations Installed-Size: 3876 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hu (<< 1:14.04+20140410), language-pack-gnome-hu-base (<< 1:14.04+20140410), language-pack-hu (<< 1:14.04+20140410), language-pack-hu-base (<< 1:14.04+20140410), language-pack-kde-hu (<< 1:14.04+20140410), language-pack-kde-hu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-hu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-hu Conflicts: language-pack-hu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-hu-base/language-pack-hu-base_14.04+20140410_all.deb Size: 1202130 MD5sum: d4c3b565938632354d2cc9f72a05d3e3 SHA1: b81b3355d56f2b0a56878a84170a1b25da60aa84 SHA256: 2148345c158f368e99a9eb2cf15c977199e56bd3f9a39b900ae9d8cc224d372b Description: translations for language Hungarian Description-md5: b68965ab3e4c15fb92f2826979c1c76d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-hy Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hy (<< 1:14.04+20140410), language-pack-gnome-hy-base (<< 1:14.04+20140410), language-pack-hy (<< 1:14.04+20140410), language-pack-hy-base, language-pack-kde-hy (<< 1:14.04+20140410), language-pack-kde-hy-base (<< 1:14.04+20140410) Depends: language-pack-hy-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-hy/language-pack-hy_14.04+20140410_all.deb Size: 1972 MD5sum: 190b7820242e568eb38fba923aa63a36 SHA1: 0c853d64a0584d3d49ede712e13cda6434f7f750 SHA256: 582d9779e61e64b249ba405118e27a354e8f427b4c8dc0fb541c39bc8c019e49 Description: translation updates for language Armenian Description-md5: 4db20f8fbcc35f2c868fdff4899f2a41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-hy-base Priority: optional Section: translations Installed-Size: 100 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-hy (<< 1:14.04+20140410), language-pack-gnome-hy-base (<< 1:14.04+20140410), language-pack-hy (<< 1:14.04+20140410), language-pack-hy-base (<< 1:14.04+20140410), language-pack-kde-hy (<< 1:14.04+20140410), language-pack-kde-hy-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-hy (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-hy Conflicts: language-pack-hy (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-hy-base/language-pack-hy-base_14.04+20140410_all.deb Size: 16384 MD5sum: 09d4605564ca3791f67fa149f0f8face SHA1: a82332f82682f82f78b180f520b2749d4ea39ff1 SHA256: 99e02cc0d6241a015f9c9b83f171751dc26130d7ad57ae3b93b2c38f9a3b5b4b Description: translations for language Armenian Description-md5: 009cbd292ee46edfba0d86a267b634a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ia Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ia (<< 1:14.04+20140410), language-pack-gnome-ia-base (<< 1:14.04+20140410), language-pack-ia (<< 1:14.04+20140410), language-pack-ia-base, language-pack-kde-ia (<< 1:14.04+20140410), language-pack-kde-ia-base (<< 1:14.04+20140410) Depends: language-pack-ia-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ia/language-pack-ia_14.04+20140410_all.deb Size: 1996 MD5sum: 8fc2eb546234e7ba0ed44582737dc1fc SHA1: 38c5f01f972f8aa7a0f30bae96244c98d98dc987 SHA256: 246efdd82db98522550a595559a1735349e59b17523f388dea644aab985ec841 Description: translation updates for language Interlingua (International Auxiliary Language Association) Description-md5: 30050b7a8422ff40904e643dd296c76a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ia-base Priority: optional Section: translations Installed-Size: 396 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ia (<< 1:14.04+20140410), language-pack-gnome-ia-base (<< 1:14.04+20140410), language-pack-ia (<< 1:14.04+20140410), language-pack-ia-base (<< 1:14.04+20140410), language-pack-kde-ia (<< 1:14.04+20140410), language-pack-kde-ia-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ia (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ia (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ia-base/language-pack-ia-base_14.04+20140410_all.deb Size: 97462 MD5sum: 1613440fc749f7ced3086d1b48f4c1fd SHA1: 08b3becd8a896bcee67589842fdc2cd1136ed86c SHA256: 0bc56c0debff47170ecb691bed56e6da6e59e0e119230aaf7ff22fc7311c4f10 Description: translations for language Interlingua (International Auxiliary Language Association) Description-md5: 9b3f157dbcedaffd5e4578c398861bc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-id Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-id (<< 1:14.04+20140410), language-pack-gnome-id-base (<< 1:14.04+20140410), language-pack-id (<< 1:14.04+20140410), language-pack-id-base, language-pack-kde-id (<< 1:14.04+20140410), language-pack-kde-id-base (<< 1:14.04+20140410) Depends: language-pack-id-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-id/language-pack-id_14.04+20140410_all.deb Size: 1962 MD5sum: c9afc22182a598cfa66bea461f32f39c SHA1: 4f9f17f87fa3c4f8357f532137e1ad749e788b99 SHA256: 3d053c16e448108d07d3cabfe2bb3b73a48386751cb822342a25d4a3edea2b48 Description: translation updates for language Indonesian Description-md5: c4c927885d7ce41f7307a8312a52b719 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-id-base Priority: optional Section: translations Installed-Size: 4682 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-id (<< 1:14.04+20140410), language-pack-gnome-id-base (<< 1:14.04+20140410), language-pack-id (<< 1:14.04+20140410), language-pack-id-base (<< 1:14.04+20140410), language-pack-kde-id (<< 1:14.04+20140410), language-pack-kde-id-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-id (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-id Conflicts: language-pack-id (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-id-base/language-pack-id-base_14.04+20140410_all.deb Size: 1394626 MD5sum: 67fb2b29cba9c84720241c52fff6d91e SHA1: 44d5aa07fbbf3ac659d527c7b55821b9beab006e SHA256: 09a8a7d0d01a1a8faee3f7f728956fc34882bb80214ff8499dfc025f4389bc81 Description: translations for language Indonesian Description-md5: 2952f1905ad6e2359ace30f7900fab0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ig Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ig (<< 1:14.04+20140410), language-pack-gnome-ig-base (<< 1:14.04+20140410), language-pack-ig (<< 1:14.04+20140410), language-pack-ig-base, language-pack-kde-ig (<< 1:14.04+20140410), language-pack-kde-ig-base (<< 1:14.04+20140410) Depends: language-pack-ig-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ig/language-pack-ig_14.04+20140410_all.deb Size: 1978 MD5sum: 5937897e79f39c0db9d5421d1fa876c5 SHA1: 44a442e4f671620af1781a7f9430eb5297ad33a2 SHA256: 6cec8a9d8451c0898da9b8919a192ef70d0db06b32a65b3b1284a1fc855a9a1e Description: translation updates for language Igbo Description-md5: 5fda8c9cd99daa29690203e1b085a104 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ig-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ig (<< 1:14.04+20140410), language-pack-gnome-ig-base (<< 1:14.04+20140410), language-pack-ig (<< 1:14.04+20140410), language-pack-ig-base (<< 1:14.04+20140410), language-pack-kde-ig (<< 1:14.04+20140410), language-pack-kde-ig-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ig (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ig (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ig-base/language-pack-ig-base_14.04+20140410_all.deb Size: 2304 MD5sum: 6938107de7089606e5f931faee63fc44 SHA1: 2154c83ee10c7646468cc615ce629b31c59f143c SHA256: 76a37a450e9e1463a7ce368a24cb56f46cf3beb03c5073a8de63595c6d7642c3 Description: translations for language Igbo Description-md5: a48c4bee660a62f54e5667d5d63a2d80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-is Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-is (<< 1:14.04+20140410), language-pack-gnome-is-base (<< 1:14.04+20140410), language-pack-is (<< 1:14.04+20140410), language-pack-is-base, language-pack-kde-is (<< 1:14.04+20140410), language-pack-kde-is-base (<< 1:14.04+20140410) Depends: language-pack-is-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-is/language-pack-is_14.04+20140410_all.deb Size: 1980 MD5sum: b6675876339a886554e6d0780bdaf240 SHA1: 8d4aeeb72f2c0b3f0edf6ed9ded282b1f206fd71 SHA256: 3db26da39d1364b9e06e6aea1efeb0a22e04675c5a46a5e86a006d699b1961fa Description: translation updates for language Icelandic Description-md5: ebb478ce4fa6147467d4a5addcbfe91c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-is-base Priority: optional Section: translations Installed-Size: 540 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-is (<< 1:14.04+20140410), language-pack-gnome-is-base (<< 1:14.04+20140410), language-pack-is (<< 1:14.04+20140410), language-pack-is-base (<< 1:14.04+20140410), language-pack-kde-is (<< 1:14.04+20140410), language-pack-kde-is-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-is (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-is Conflicts: language-pack-is (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-is-base/language-pack-is-base_14.04+20140410_all.deb Size: 161408 MD5sum: 4cb210d5a21dcb3cb0bce03e5bc80ed1 SHA1: 5d8a6ff674989ade71bc60005aea6d4be552aa7c SHA256: aaf51c11ff3a5c595cf4029072ed80ecd3c5791126c58aca498d3125b70b1617 Description: translations for language Icelandic Description-md5: 38850b6e2e9899518ffc186078b8911f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-it Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-it (<< 1:14.04+20140410), language-pack-gnome-it-base (<< 1:14.04+20140410), language-pack-it (<< 1:14.04+20140410), language-pack-it-base, language-pack-kde-it (<< 1:14.04+20140410), language-pack-kde-it-base (<< 1:14.04+20140410) Depends: language-pack-it-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-it/language-pack-it_14.04+20140410_all.deb Size: 1978 MD5sum: 388ec59d1b275c373c359a7e23ec8b4b SHA1: be00cdd5552cc9f809925ffc7025f7054bc9a437 SHA256: 20a509081d8142358a0717ee109b8a5b23feab88155a785261b52cda2829851b Description: translation updates for language Italian Description-md5: e120dba4eaa0911d53e8c96b72adf578 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-it-base Priority: optional Section: translations Installed-Size: 7170 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-it (<< 1:14.04+20140410), language-pack-gnome-it-base (<< 1:14.04+20140410), language-pack-it (<< 1:14.04+20140410), language-pack-it-base (<< 1:14.04+20140410), language-pack-kde-it (<< 1:14.04+20140410), language-pack-kde-it-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-it (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-it Conflicts: language-pack-it (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-it-base/language-pack-it-base_14.04+20140410_all.deb Size: 2165800 MD5sum: e960ea682182a3d96721d49308412629 SHA1: 0ea1183789fd58fa8e2435c7d1364beadb563b75 SHA256: 9adeaa4db73e5cd87f5645f9935e0715c307544f98e3590f52f6eecf3a8e9dbb Description: translations for language Italian Description-md5: 99813ee4cadd38f6c7b74f675b34a449 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-ja Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ja (<< 1:14.04+20140410), language-pack-gnome-ja-base (<< 1:14.04+20140410), language-pack-ja (<< 1:14.04+20140410), language-pack-ja-base, language-pack-kde-ja (<< 1:14.04+20140410), language-pack-kde-ja-base (<< 1:14.04+20140410) Depends: language-pack-ja-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ja/language-pack-ja_14.04+20140410_all.deb Size: 1958 MD5sum: 3abd33a2b6bc8cc639454f87af4c5a38 SHA1: fae02b922eb2100444c29f57276c3c44a129e2b0 SHA256: c8d86be7e5e9c374cb9f52e5d46e394bc6992b93c5a33a80ff35e921ed46494a Description: translation updates for language Japanese Description-md5: 7afb2a563f87356ed6329dc527a32e94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live Package: language-pack-ja-base Priority: optional Section: translations Installed-Size: 8390 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ja (<< 1:14.04+20140410), language-pack-gnome-ja-base (<< 1:14.04+20140410), language-pack-ja (<< 1:14.04+20140410), language-pack-ja-base (<< 1:14.04+20140410), language-pack-kde-ja (<< 1:14.04+20140410), language-pack-kde-ja-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ja (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ja Conflicts: language-pack-ja (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ja-base/language-pack-ja-base_14.04+20140410_all.deb Size: 2259710 MD5sum: 0190c187fff135c9bc80d66915e7635c SHA1: 05eb46884add1b6b5340ce097126587f2caddd17 SHA256: ac04e4bd05f6366e3753d0f81186fee9d434f5bb8910ffdc258fb9e67af03c69 Description: translations for language Japanese Description-md5: c52151431d27e2dcc1ed2fc2152797c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live Package: language-pack-ka Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ka (<< 1:14.04+20140410), language-pack-gnome-ka-base (<< 1:14.04+20140410), language-pack-ka (<< 1:14.04+20140410), language-pack-ka-base, language-pack-kde-ka (<< 1:14.04+20140410), language-pack-kde-ka-base (<< 1:14.04+20140410) Depends: language-pack-ka-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ka/language-pack-ka_14.04+20140410_all.deb Size: 1958 MD5sum: b851474e7fd6ec66ea61630d59fc217a SHA1: 485415a548a9a6fbe86301fe1d81633ea361fab7 SHA256: 40cbf0eb3e859dc5e3321f04d08ff6f9169f8ea1d585ce3c1a4773bd0361f61c Description: translation updates for language Georgian Description-md5: 4a6c0052acdeb3e339afe50aeb4eab8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ka-base Priority: optional Section: translations Installed-Size: 262 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ka (<< 1:14.04+20140410), language-pack-gnome-ka-base (<< 1:14.04+20140410), language-pack-ka (<< 1:14.04+20140410), language-pack-ka-base (<< 1:14.04+20140410), language-pack-kde-ka (<< 1:14.04+20140410), language-pack-kde-ka-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ka (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ka Conflicts: language-pack-ka (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ka-base/language-pack-ka-base_14.04+20140410_all.deb Size: 55732 MD5sum: 501fc200dae8b2752f81355ed5a19d8e SHA1: 6124d8edb8f3f0e779554af2aff0bc56dee842a1 SHA256: d6b04d8428f007f7cbdafb4630e776c99f70df764fb37d5835fdb77c6ae0821e Description: translations for language Georgian Description-md5: 133981ca5e178582776e1f7cc31edefa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kk (<< 1:14.04+20140410), language-pack-gnome-kk-base (<< 1:14.04+20140410), language-pack-kde-kk (<< 1:14.04+20140410), language-pack-kde-kk-base (<< 1:14.04+20140410), language-pack-kk (<< 1:14.04+20140410), language-pack-kk-base Depends: language-pack-kk-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-kk/language-pack-kk_14.04+20140410_all.deb Size: 1966 MD5sum: e1fd714dc7a932b8d5a250d13597c811 SHA1: 1f65360a15dee09d81cfc98d443f1914759985c1 SHA256: 1eaba79d5d6427e02311c66f2afdbe989c31f50349a26e2bf5c7b84f51a2140d Description: translation updates for language Kazakh Description-md5: 98e9c347910ee2332ebb439bf240c098 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kk-base Priority: optional Section: translations Installed-Size: 291 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kk (<< 1:14.04+20140410), language-pack-gnome-kk-base (<< 1:14.04+20140410), language-pack-kde-kk (<< 1:14.04+20140410), language-pack-kde-kk-base (<< 1:14.04+20140410), language-pack-kk (<< 1:14.04+20140410), language-pack-kk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-kk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-kk Conflicts: language-pack-kk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-kk-base/language-pack-kk-base_14.04+20140410_all.deb Size: 69116 MD5sum: eb3e00d411afb6725f42bb285da1f8f6 SHA1: 19843df34c504eb9b12f3d174e3ede557454c024 SHA256: fb7163127cf000d90a0f881e2b76f155614701f49219a2d560c05ab2549e34e4 Description: translations for language Kazakh Description-md5: 0321ed270db14e0a0e6ca71f6dca09ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kl (<< 1:14.04+20140410), language-pack-gnome-kl-base (<< 1:14.04+20140410), language-pack-kde-kl (<< 1:14.04+20140410), language-pack-kde-kl-base (<< 1:14.04+20140410), language-pack-kl (<< 1:14.04+20140410), language-pack-kl-base Depends: language-pack-kl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-kl/language-pack-kl_14.04+20140410_all.deb Size: 1998 MD5sum: 83185e87e70e599a72d5933dfc4f9b63 SHA1: 1fc5de70ae73345ac07d0e64a0662e3613e448bb SHA256: bd61f01592412febcc51b27d38db70c48e44dc38a6e30b4334f3bd5358a0a335 Description: translation updates for language Kalaallisut; Greenlandic Description-md5: fdb5099e989a4024e9a506808d27a0e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kl-base Priority: optional Section: translations Installed-Size: 58 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kl (<< 1:14.04+20140410), language-pack-gnome-kl-base (<< 1:14.04+20140410), language-pack-kde-kl (<< 1:14.04+20140410), language-pack-kde-kl-base (<< 1:14.04+20140410), language-pack-kl (<< 1:14.04+20140410), language-pack-kl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-kl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-kl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-kl-base/language-pack-kl-base_14.04+20140410_all.deb Size: 4482 MD5sum: d21e7b78ba200b0b41f6eef4874a5f30 SHA1: e2a65baccec771d5c3ddeb08adf88bcace5de85a SHA256: 58a80fee14867f3f2cdc256a0f21ff6992e5d5fc8ef3d5dd59231829fab44f2c Description: translations for language Kalaallisut; Greenlandic Description-md5: 1265b941877165341e798f4d09470198 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-km Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-km (<< 1:14.04+20140410), language-pack-gnome-km-base (<< 1:14.04+20140410), language-pack-kde-km (<< 1:14.04+20140410), language-pack-kde-km-base (<< 1:14.04+20140410), language-pack-km (<< 1:14.04+20140410), language-pack-km-base Depends: language-pack-km-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-km/language-pack-km_14.04+20140410_all.deb Size: 1982 MD5sum: 4099efb1dd16a512f28d5c8f6ab9e865 SHA1: f6d4c0a3bb0007c76a3664b2c26e89fbedc48dcc SHA256: c2e9945b5927dd54b0284295e2af1bb48c6b4ab97aa7d83a444ec70beca9b41a Description: translation updates for language Central Khmer Description-md5: ca40fa76b2a05d161972d2b9fe61acf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-km-base Priority: optional Section: translations Installed-Size: 2042 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-km (<< 1:14.04+20140410), language-pack-gnome-km-base (<< 1:14.04+20140410), language-pack-kde-km (<< 1:14.04+20140410), language-pack-kde-km-base (<< 1:14.04+20140410), language-pack-km (<< 1:14.04+20140410), language-pack-km-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-km (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-km Conflicts: language-pack-km (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-km-base/language-pack-km-base_14.04+20140410_all.deb Size: 433276 MD5sum: e86d664ffb5265f34b8ca6ea2e3d1372 SHA1: 30295f4550d8bec697560d98b704ce18483ac784 SHA256: a9c470f60330809076083eeabd3749b442e5a379b64b9a5369356bc846dff20b Description: translations for language Central Khmer Description-md5: 382521288b14ddd695dcaab74e373dd2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kn (<< 1:14.04+20140410), language-pack-gnome-kn-base (<< 1:14.04+20140410), language-pack-kde-kn (<< 1:14.04+20140410), language-pack-kde-kn-base (<< 1:14.04+20140410), language-pack-kn (<< 1:14.04+20140410), language-pack-kn-base Depends: language-pack-kn-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-kn/language-pack-kn_14.04+20140410_all.deb Size: 1986 MD5sum: 75a4db98c6eea6277f7d8100ecf5b33a SHA1: 369caee4f82fa77195ebbf537907dd893180ec71 SHA256: a52db1660e26f32980f0bf999cf1972edd312ea27da1fc73d2d5527b139b7db5 Description: translation updates for language Kannada Description-md5: 8368f135dfe46a8b81c37c2f7870e7b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kn-base Priority: optional Section: translations Installed-Size: 2202 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kn (<< 1:14.04+20140410), language-pack-gnome-kn-base (<< 1:14.04+20140410), language-pack-kde-kn (<< 1:14.04+20140410), language-pack-kde-kn-base (<< 1:14.04+20140410), language-pack-kn (<< 1:14.04+20140410), language-pack-kn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-kn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-kn Conflicts: language-pack-kn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-kn-base/language-pack-kn-base_14.04+20140410_all.deb Size: 396430 MD5sum: 13a3973d99d1566fa55b71b028899f3c SHA1: 72e2da736e08d27e0b412c94e729a6e7cced8df1 SHA256: 76303d50cb84c4107291b00cdbd57f61e2a1bb09a6fb44bebca2aa29949cc15a Description: translations for language Kannada Description-md5: c2017a7c289d9baf67e7d222d28ae9b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ko Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ko (<< 1:14.04+20140410), language-pack-gnome-ko-base (<< 1:14.04+20140410), language-pack-kde-ko (<< 1:14.04+20140410), language-pack-kde-ko-base (<< 1:14.04+20140410), language-pack-ko (<< 1:14.04+20140410), language-pack-ko-base Depends: language-pack-ko-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ko/language-pack-ko_14.04+20140410_all.deb Size: 1982 MD5sum: 79061e44126fee84a0d0775b249b5852 SHA1: f615605bb01b745fffae9703b6eed15a5338b46f SHA256: 8fe5a682b4f8dcdfad49164e8b5f2efd1218dadda4a12192b903273a0caa6a47 Description: translation updates for language Korean Description-md5: 771f757939a95209894f9aa91be69bdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ko-base Priority: optional Section: translations Installed-Size: 3075 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ko (<< 1:14.04+20140410), language-pack-gnome-ko-base (<< 1:14.04+20140410), language-pack-kde-ko (<< 1:14.04+20140410), language-pack-kde-ko-base (<< 1:14.04+20140410), language-pack-ko (<< 1:14.04+20140410), language-pack-ko-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ko (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ko Conflicts: language-pack-ko (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ko-base/language-pack-ko-base_14.04+20140410_all.deb Size: 866668 MD5sum: 3165bb954497da20e12f51d227c5c314 SHA1: e0609ef4220313278770fd555eefc3ae6afb1c59 SHA256: e5bbd9a3753e0bdbc07f7d9c9e10f84226f9af3423b615869ccb9e7aa41c4dc3 Description: translations for language Korean Description-md5: 333c6f787443de547e92672f3ee91c6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ks Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ks (<< 1:14.04+20140410), language-pack-gnome-ks-base (<< 1:14.04+20140410), language-pack-kde-ks (<< 1:14.04+20140410), language-pack-kde-ks-base (<< 1:14.04+20140410), language-pack-ks (<< 1:14.04+20140410), language-pack-ks-base Depends: language-pack-ks-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ks/language-pack-ks_14.04+20140410_all.deb Size: 1992 MD5sum: f2972f952e5043873a3c9f090196fabd SHA1: 36fa52364dd8918e8a0e63d7105f3a68d0ad2274 SHA256: ccc90bbb20453779fa047be319a530a5cf036d1bf09c8e444f7eb8c70620b7e8 Description: translation updates for language Kashmiri Description-md5: 92539c43d5b468fd082d81065e66ac81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ks-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ks (<< 1:14.04+20140410), language-pack-gnome-ks-base (<< 1:14.04+20140410), language-pack-kde-ks (<< 1:14.04+20140410), language-pack-kde-ks-base (<< 1:14.04+20140410), language-pack-ks (<< 1:14.04+20140410), language-pack-ks-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ks (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ks (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ks-base/language-pack-ks-base_14.04+20140410_all.deb Size: 2318 MD5sum: 123029032ecd7cc70389ce4816509846 SHA1: dbef6039e25cb84621c953250f06e66d1c5e2261 SHA256: 263e5f3cfe4819fe3ba6df0ef4e69422db0ed0616751bde1e4a88452e7896f4b Description: translations for language Kashmiri Description-md5: b3997fac45545ecfd182ae5705aa825b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ku Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ku (<< 1:14.04+20140410), language-pack-gnome-ku-base (<< 1:14.04+20140410), language-pack-kde-ku (<< 1:14.04+20140410), language-pack-kde-ku-base (<< 1:14.04+20140410), language-pack-ku (<< 1:14.04+20140410), language-pack-ku-base Depends: language-pack-ku-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ku/language-pack-ku_14.04+20140410_all.deb Size: 1978 MD5sum: 3d6e2c90d7cfa07a14d04de27245a1bf SHA1: 59a30670ec4ffd1280fbce370831e0c660882782 SHA256: de93c30f520dc5ba587dfd2956be96f7cb51b5ec784d1241ff6fd253ec87d6fa Description: translation updates for language Kurdish Description-md5: 3592b9815f5e61a1a402749bd9a44ccd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ku-base Priority: optional Section: translations Installed-Size: 419 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ku (<< 1:14.04+20140410), language-pack-gnome-ku-base (<< 1:14.04+20140410), language-pack-kde-ku (<< 1:14.04+20140410), language-pack-kde-ku-base (<< 1:14.04+20140410), language-pack-ku (<< 1:14.04+20140410), language-pack-ku-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ku (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ku Conflicts: language-pack-ku (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ku-base/language-pack-ku-base_14.04+20140410_all.deb Size: 126338 MD5sum: ba790caf1dcc766b15b2b8abd640d187 SHA1: 8c8e9cba8fc0f8f6757276154a4ab802e1f5c6af SHA256: bc25a78c6a990e3f9767ae0be02b5fd15d4de80ff3f1cac5fc2d9014e8b5f0f6 Description: translations for language Kurdish Description-md5: 9d60d4781a1a8118cf6da846f6ce8b12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kw (<< 1:14.04+20140410), language-pack-gnome-kw-base (<< 1:14.04+20140410), language-pack-kde-kw (<< 1:14.04+20140410), language-pack-kde-kw-base (<< 1:14.04+20140410), language-pack-kw (<< 1:14.04+20140410), language-pack-kw-base Depends: language-pack-kw-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-kw/language-pack-kw_14.04+20140410_all.deb Size: 1962 MD5sum: 0399080e57864d4af2eee3109f51e36a SHA1: c937a6eea7bba3362b76467578f6319d47558598 SHA256: 55b0d6a408ff3ed5dfc4ee481f4de60a3362fe135d3ab9ae7b1a47bf73a72928 Description: translation updates for language Cornish Description-md5: c9418196d93c919dcbc06293c473a972 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-kw-base Priority: optional Section: translations Installed-Size: 69 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-kw (<< 1:14.04+20140410), language-pack-gnome-kw-base (<< 1:14.04+20140410), language-pack-kde-kw (<< 1:14.04+20140410), language-pack-kde-kw-base (<< 1:14.04+20140410), language-pack-kw (<< 1:14.04+20140410), language-pack-kw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-kw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-kw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-kw-base/language-pack-kw-base_14.04+20140410_all.deb Size: 8344 MD5sum: 0b9e1efae107980a906fcf19580953be SHA1: 5961f3fc96f0f74f4a90653c61e5cf4385d6db52 SHA256: b8af3c4aabeef0927470bade008ae3c4fb3f2dc2839d3e5b9afb0ee2d30dc25f Description: translations for language Cornish Description-md5: 53d662aa3993bb5d875875f06cce8c54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ky Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ky (<< 1:14.04+20140410), language-pack-gnome-ky-base (<< 1:14.04+20140410), language-pack-kde-ky (<< 1:14.04+20140410), language-pack-kde-ky-base (<< 1:14.04+20140410), language-pack-ky (<< 1:14.04+20140410), language-pack-ky-base Depends: language-pack-ky-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ky/language-pack-ky_14.04+20140410_all.deb Size: 1976 MD5sum: 2d3daa912e55084530b4a448b6fa229a SHA1: f7134a237e47210058e74360fbe95239c6cdffd0 SHA256: 88a13a8752209af29a8497bfb43fdd1acce2d0c6783648c0a42f4705f6ed4172 Description: translation updates for language Kirghiz; Kyrgyz Description-md5: 07f850699cc8940cd521bb7bb53e8317 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ky-base Priority: optional Section: translations Installed-Size: 145 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ky (<< 1:14.04+20140410), language-pack-gnome-ky-base (<< 1:14.04+20140410), language-pack-kde-ky (<< 1:14.04+20140410), language-pack-kde-ky-base (<< 1:14.04+20140410), language-pack-ky (<< 1:14.04+20140410), language-pack-ky-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ky (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ky (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ky-base/language-pack-ky-base_14.04+20140410_all.deb Size: 30742 MD5sum: 5dd797970964264d5f90eafaea7aee52 SHA1: ff96d5aa68595d7491332c78410b9987d46d9daf SHA256: fcb4ee5ade88822f411b194a65b2e6667edab3b187d88527c51685c1e40620cf Description: translations for language Kirghiz; Kyrgyz Description-md5: 8205b33b8a1ad794919d4a78a2f02c9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lb (<< 1:14.04+20140410), language-pack-gnome-lb-base (<< 1:14.04+20140410), language-pack-kde-lb (<< 1:14.04+20140410), language-pack-kde-lb-base (<< 1:14.04+20140410), language-pack-lb (<< 1:14.04+20140410), language-pack-lb-base Depends: language-pack-lb-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-lb/language-pack-lb_14.04+20140410_all.deb Size: 2008 MD5sum: 15af12d9542c8119ef00cc3172783801 SHA1: cdb42fc0100df6992c4175fbdb1d188d4d25b969 SHA256: 9b30a44dda4710d27d64527e43712c31d091ded702f9246d4b474ab276e02460 Description: translation updates for language Luxembourgish; Letzeburgesch Description-md5: 29b9a13057c011ffe475ad6d28f7707c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lb-base Priority: optional Section: translations Installed-Size: 170 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lb (<< 1:14.04+20140410), language-pack-gnome-lb-base (<< 1:14.04+20140410), language-pack-kde-lb (<< 1:14.04+20140410), language-pack-kde-lb-base (<< 1:14.04+20140410), language-pack-lb (<< 1:14.04+20140410), language-pack-lb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-lb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-lb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-lb-base/language-pack-lb-base_14.04+20140410_all.deb Size: 42622 MD5sum: 17c3e94afc128f2dca4556e21c62a75c SHA1: 171a54c1be0d677f5038bd87e2bc06fe82028b9e SHA256: b55ac8768f6ae3de21c05591e21a4b499e24b702216d744f37e3b95eda30d4e3 Description: translations for language Luxembourgish; Letzeburgesch Description-md5: 18da36b0671337fba170251539955d33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lg (<< 1:14.04+20140410), language-pack-gnome-lg-base (<< 1:14.04+20140410), language-pack-kde-lg (<< 1:14.04+20140410), language-pack-kde-lg-base (<< 1:14.04+20140410), language-pack-lg (<< 1:14.04+20140410), language-pack-lg-base Depends: language-pack-lg-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-lg/language-pack-lg_14.04+20140410_all.deb Size: 1996 MD5sum: c8a3d17ff33b254cecb1bc4888d7eee2 SHA1: 5d06043049b04f8d9c9cc227a78e8fdb02b9182c SHA256: 2cb4f996b3c5ca9a79dbde9351a81c61b0a93247e1b6f9b00bce3a7fc376f659 Description: translation updates for language Ganda Description-md5: dc53f5f6accf5c17e5a4f97d65e8eb02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lg-base Priority: optional Section: translations Installed-Size: 359 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lg (<< 1:14.04+20140410), language-pack-gnome-lg-base (<< 1:14.04+20140410), language-pack-kde-lg (<< 1:14.04+20140410), language-pack-kde-lg-base (<< 1:14.04+20140410), language-pack-lg (<< 1:14.04+20140410), language-pack-lg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-lg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-lg Conflicts: language-pack-lg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-lg-base/language-pack-lg-base_14.04+20140410_all.deb Size: 85724 MD5sum: 42cbe751e3923817862a33d8ccc3b7e3 SHA1: f63f03397300e7750297e9a7a1fee2b233c3d140 SHA256: 00f1ad2a2a8a8ba89ddbc68cd50e8d0e543fb37afa9f7d092d09617b7c436c76 Description: translations for language Ganda Description-md5: f3cad9fe1486894db728a8562be06667 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-li Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-li (<< 1:14.04+20140410), language-pack-gnome-li-base (<< 1:14.04+20140410), language-pack-kde-li (<< 1:14.04+20140410), language-pack-kde-li-base (<< 1:14.04+20140410), language-pack-li (<< 1:14.04+20140410), language-pack-li-base Depends: language-pack-li-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-li/language-pack-li_14.04+20140410_all.deb Size: 2012 MD5sum: c21f50919bd8ddd0397e10d9d62428c1 SHA1: c37c63d7275e55293b029797796b32c0ff470891 SHA256: 1a89094a9a25895b767f574c25c3aafc012cbe1897fcf2d10512de6aec1cca32 Description: translation updates for language Limburgan; Limburger; Limburgish Description-md5: 167e6db03e43d9b435ec56a04c8e004d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-li-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-li (<< 1:14.04+20140410), language-pack-gnome-li-base (<< 1:14.04+20140410), language-pack-kde-li (<< 1:14.04+20140410), language-pack-kde-li-base (<< 1:14.04+20140410), language-pack-li (<< 1:14.04+20140410), language-pack-li-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-li (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-li (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-li-base/language-pack-li-base_14.04+20140410_all.deb Size: 2310 MD5sum: a7900f9885cdc2854e5748c5c5276b9f SHA1: 740e03a653a80a98fb834d7fb1ac1e022e88199e SHA256: 4245944286721498c3d9c0ec0ae75e350289b2a674f7db2d8a6078f9624a4641 Description: translations for language Limburgan; Limburger; Limburgish Description-md5: d79abb5c3992b572ca46198d807374ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lo (<< 1:14.04+20140410), language-pack-gnome-lo-base (<< 1:14.04+20140410), language-pack-kde-lo (<< 1:14.04+20140410), language-pack-kde-lo-base (<< 1:14.04+20140410), language-pack-lo (<< 1:14.04+20140410), language-pack-lo-base Depends: language-pack-lo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-lo/language-pack-lo_14.04+20140410_all.deb Size: 1972 MD5sum: 184cd53a0dbd55b45227873fedd24f1e SHA1: 4525c61d0b358cb41325c58d251508b698a126d2 SHA256: 3ec0c84345d893239a2b1ab9d0c76bed94df8fd86b8698892982049e69d7952f Description: translation updates for language Lao Description-md5: 1ea34c02248959a0e4d245025939bf22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lo-base Priority: optional Section: translations Installed-Size: 153 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lo (<< 1:14.04+20140410), language-pack-gnome-lo-base (<< 1:14.04+20140410), language-pack-kde-lo (<< 1:14.04+20140410), language-pack-kde-lo-base (<< 1:14.04+20140410), language-pack-lo (<< 1:14.04+20140410), language-pack-lo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-lo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-lo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-lo-base/language-pack-lo-base_14.04+20140410_all.deb Size: 26434 MD5sum: e573c6a77f750c25d7c4c47b1539c5bc SHA1: 4d50ad755c977cac210b7f2991f95b5abe99ac06 SHA256: 26dda6b9ac9ffd68baea2b2264612e416b5b7322c7aceeda57fc5eeee0f2383c Description: translations for language Lao Description-md5: 19afb8a7e8e7f44f6106f269aa4eebbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lt (<< 1:14.04+20140410), language-pack-gnome-lt-base (<< 1:14.04+20140410), language-pack-kde-lt (<< 1:14.04+20140410), language-pack-kde-lt-base (<< 1:14.04+20140410), language-pack-lt (<< 1:14.04+20140410), language-pack-lt-base Depends: language-pack-lt-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-lt/language-pack-lt_14.04+20140410_all.deb Size: 1978 MD5sum: 8a0696867b65ae33c3e5e92a1bdcbebe SHA1: 182ef5cd7c704abcdb34c2ac7a0b34ded76c7930 SHA256: e29a0ac7ed0f397e959126ca587d8d8ee5398457a9a095f93f2b9f18c4007861 Description: translation updates for language Lithuanian Description-md5: 0aa9b7870b4e450291143f74e957e291 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lt-base Priority: optional Section: translations Installed-Size: 1561 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lt (<< 1:14.04+20140410), language-pack-gnome-lt-base (<< 1:14.04+20140410), language-pack-kde-lt (<< 1:14.04+20140410), language-pack-kde-lt-base (<< 1:14.04+20140410), language-pack-lt (<< 1:14.04+20140410), language-pack-lt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-lt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-lt Conflicts: language-pack-lt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-lt-base/language-pack-lt-base_14.04+20140410_all.deb Size: 487070 MD5sum: 310f55ba5596765418ed2f5e8c83c957 SHA1: 8fedf423c11b130e6c0b12662966d1218a648a47 SHA256: 957056cc4339c0863902a66d47bed5edd3c0b4fc1a441440d41deebc12475a72 Description: translations for language Lithuanian Description-md5: 047f9630396ed1a0259a4bb51e951c29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lv (<< 1:14.04+20140410), language-pack-gnome-lv-base (<< 1:14.04+20140410), language-pack-kde-lv (<< 1:14.04+20140410), language-pack-kde-lv-base (<< 1:14.04+20140410), language-pack-lv (<< 1:14.04+20140410), language-pack-lv-base Depends: language-pack-lv-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-lv/language-pack-lv_14.04+20140410_all.deb Size: 1974 MD5sum: 44b800930ee1401a1c988b716bfb9f28 SHA1: 67eb91165b849d212734996c7391b3c575c2ad85 SHA256: e5aeb47ece5bd83258f6f1c23f0edc6463084652475ec4cd48340b846c011131 Description: translation updates for language Latvian Description-md5: 0514f99032fd1976655c4bf7e03146bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-lv-base Priority: optional Section: translations Installed-Size: 667 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-lv (<< 1:14.04+20140410), language-pack-gnome-lv-base (<< 1:14.04+20140410), language-pack-kde-lv (<< 1:14.04+20140410), language-pack-kde-lv-base (<< 1:14.04+20140410), language-pack-lv (<< 1:14.04+20140410), language-pack-lv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-lv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-lv Conflicts: language-pack-lv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-lv-base/language-pack-lv-base_14.04+20140410_all.deb Size: 196706 MD5sum: 64bade976b1f8e8cb7cb0067f2e4211e SHA1: 6ba984fe1ce15ff247b2ce133024b4af104ce77d SHA256: 3aa7f2b5f6710c0922a42d9c680b538ef4a410e49c36a80e6c93cf9f3694428d Description: translations for language Latvian Description-md5: a2c4b8a2b8ddc06f922a6291ade84644 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mai Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mai (<< 1:14.04+20140410), language-pack-gnome-mai-base (<< 1:14.04+20140410), language-pack-kde-mai (<< 1:14.04+20140410), language-pack-kde-mai-base (<< 1:14.04+20140410), language-pack-mai (<< 1:14.04+20140410), language-pack-mai-base Depends: language-pack-mai-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mai/language-pack-mai_14.04+20140410_all.deb Size: 1978 MD5sum: 6ce046a2e2ad63fb15c92affecabe07a SHA1: dd2612835f3494433bbeb26bdaedf224b1f454f4 SHA256: c4353600a4a330561bdd25ac744bc9e037d9ccb20a31d299c01bd8ae17fcd288 Description: translation updates for language Maithili Description-md5: 3f30c4eb0cd24bb561962e8944e1ae94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mai-base Priority: optional Section: translations Installed-Size: 389 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mai (<< 1:14.04+20140410), language-pack-gnome-mai-base (<< 1:14.04+20140410), language-pack-kde-mai (<< 1:14.04+20140410), language-pack-kde-mai-base (<< 1:14.04+20140410), language-pack-mai (<< 1:14.04+20140410), language-pack-mai-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mai (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-mai Conflicts: language-pack-mai (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mai-base/language-pack-mai-base_14.04+20140410_all.deb Size: 82146 MD5sum: cc5b929f168b91639b84ba1555073a19 SHA1: bb0beadbe081d546ad9dfb3c38b90425bfad47bb SHA256: a3f4952ceee32866b381879ee87aeaed6b315a99ace34f45b4b946f540dac307 Description: translations for language Maithili Description-md5: 5b14f287c08e4c4a2441ebccbbad6326 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mg (<< 1:14.04+20140410), language-pack-gnome-mg-base (<< 1:14.04+20140410), language-pack-kde-mg (<< 1:14.04+20140410), language-pack-kde-mg-base (<< 1:14.04+20140410), language-pack-mg (<< 1:14.04+20140410), language-pack-mg-base Depends: language-pack-mg-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mg/language-pack-mg_14.04+20140410_all.deb Size: 1964 MD5sum: f7cbc4d26da61c7809b3c1593500d998 SHA1: 95e61971fd228a332ed5c6c95499f6ebda815721 SHA256: 2ab7f3561f5cd9b9911921e82a20254a3f3de4fb983e5ab133ccfc27e0704983 Description: translation updates for language Malagasy Description-md5: 9735e26fab2615ce1f07455f43c80c18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mg-base Priority: optional Section: translations Installed-Size: 66 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mg (<< 1:14.04+20140410), language-pack-gnome-mg-base (<< 1:14.04+20140410), language-pack-kde-mg (<< 1:14.04+20140410), language-pack-kde-mg-base (<< 1:14.04+20140410), language-pack-mg (<< 1:14.04+20140410), language-pack-mg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-mg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mg-base/language-pack-mg-base_14.04+20140410_all.deb Size: 7056 MD5sum: b55f942d3acfa025b084b79b0dbf07b1 SHA1: c1379f6a52a88259e8c57907d5147d676c886c3f SHA256: a643909653ba2680559c6d41a7f6364a8dc8a70e28467f0f4e5497cc6530098c Description: translations for language Malagasy Description-md5: 627408b57387efc1e84177b265b49548 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mhr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mhr (<< 1:14.04+20140410), language-pack-gnome-mhr-base (<< 1:14.04+20140410), language-pack-kde-mhr (<< 1:14.04+20140410), language-pack-kde-mhr-base (<< 1:14.04+20140410), language-pack-mhr (<< 1:14.04+20140410), language-pack-mhr-base Depends: language-pack-mhr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mhr/language-pack-mhr_14.04+20140410_all.deb Size: 1974 MD5sum: 1529a5e154e583baf52a1e4de67a5252 SHA1: 29fa2e4f0f8cd456cb9327224d7d7fd7ae2912b5 SHA256: b84533caf0aefaeb037e9d6d9037eccb77fa604a535cb0dfac5e5468a63e6c8f Description: translation updates for language Mari, Eastern Description-md5: 9bc018ae73b4ac969beedd81b505cad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mhr-base Priority: optional Section: translations Installed-Size: 451 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mhr (<< 1:14.04+20140410), language-pack-gnome-mhr-base (<< 1:14.04+20140410), language-pack-kde-mhr (<< 1:14.04+20140410), language-pack-kde-mhr-base (<< 1:14.04+20140410), language-pack-mhr (<< 1:14.04+20140410), language-pack-mhr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mhr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-mhr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mhr-base/language-pack-mhr-base_14.04+20140410_all.deb Size: 106892 MD5sum: b31c68cba053d1702c2cfc4e47c9bd12 SHA1: 06d2dbe6a2ccb95ae7fc218f3500581992c4d512 SHA256: 0497cf8720e95948b886ef9e84b26fa2d0203e3f81bf0250e06524c1fbeac318 Description: translations for language Mari, Eastern Description-md5: bcebffceddd49e05e105d0da1aa05ebb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mi (<< 1:14.04+20140410), language-pack-gnome-mi-base (<< 1:14.04+20140410), language-pack-kde-mi (<< 1:14.04+20140410), language-pack-kde-mi-base (<< 1:14.04+20140410), language-pack-mi (<< 1:14.04+20140410), language-pack-mi-base Depends: language-pack-mi-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mi/language-pack-mi_14.04+20140410_all.deb Size: 1968 MD5sum: 53387eba315dd6cd3da8346ae5f6f109 SHA1: 00dc021125e78f37ac6d4d72a498460c43813aec SHA256: 5ee71462de71e83274f0dd34777af7d0123c1435a10f6b3e8edf9a145798b2c0 Description: translation updates for language Maori Description-md5: b2761457a20745c49d546a0de3e1a874 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mi-base Priority: optional Section: translations Installed-Size: 65 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mi (<< 1:14.04+20140410), language-pack-gnome-mi-base (<< 1:14.04+20140410), language-pack-kde-mi (<< 1:14.04+20140410), language-pack-kde-mi-base (<< 1:14.04+20140410), language-pack-mi (<< 1:14.04+20140410), language-pack-mi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-mi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mi-base/language-pack-mi-base_14.04+20140410_all.deb Size: 6228 MD5sum: 27bb9d9b83d977f70c544f5628f5e60d SHA1: acf3a4805e30a11fc300fe4095c8bed9bc316c5a SHA256: d2cfe9b96d828bc736bdf9d38c3f25a9353b8060ca0e6e43faccaf23d245516e Description: translations for language Maori Description-md5: 7c61e46eaba33ce65cdb79bffeb31ddf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mk (<< 1:14.04+20140410), language-pack-gnome-mk-base (<< 1:14.04+20140410), language-pack-kde-mk (<< 1:14.04+20140410), language-pack-kde-mk-base (<< 1:14.04+20140410), language-pack-mk (<< 1:14.04+20140410), language-pack-mk-base Depends: language-pack-mk-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mk/language-pack-mk_14.04+20140410_all.deb Size: 1988 MD5sum: df86983b7e5c44a28c89bd266caeafc4 SHA1: 0dca4098c12163f19a4295bf31daeda228f8c86d SHA256: 3156b95121e78d7d5c01dc81d2b9283ee4fffd37c11081e2752b5777ade5d74d Description: translation updates for language Macedonian Description-md5: a36efa2e9ffdbe0e1c5132e7b3bc555b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mk-base Priority: optional Section: translations Installed-Size: 578 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mk (<< 1:14.04+20140410), language-pack-gnome-mk-base (<< 1:14.04+20140410), language-pack-kde-mk (<< 1:14.04+20140410), language-pack-kde-mk-base (<< 1:14.04+20140410), language-pack-mk (<< 1:14.04+20140410), language-pack-mk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-mk Conflicts: language-pack-mk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mk-base/language-pack-mk-base_14.04+20140410_all.deb Size: 138596 MD5sum: aae28e000bd1938a44f03d6df94aaa0c SHA1: 0e9b8dd15e6bea39960b7f2f37d3f7febdb72e60 SHA256: 3aff53362a7b382b076f7489382530d7996577fd2233aa67bb8385caef4cb44f Description: translations for language Macedonian Description-md5: 54ed36b2d46b04c8b30c110398daa507 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ml Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ml (<< 1:14.04+20140410), language-pack-gnome-ml-base (<< 1:14.04+20140410), language-pack-kde-ml (<< 1:14.04+20140410), language-pack-kde-ml-base (<< 1:14.04+20140410), language-pack-ml (<< 1:14.04+20140410), language-pack-ml-base Depends: language-pack-ml-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ml/language-pack-ml_14.04+20140410_all.deb Size: 1968 MD5sum: 9e00c1209fafda449b8bb84dda9b6a00 SHA1: 1e8e43ed6fc3074beb26a20304d91748132a8751 SHA256: 05d03b79027655895a9b11951eb4d0076d19ed7994b0e5472665eae4ca131b2d Description: translation updates for language Malayalam Description-md5: 15eb580da4dd803cc6c7d597c3a74bb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ml-base Priority: optional Section: translations Installed-Size: 1834 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ml (<< 1:14.04+20140410), language-pack-gnome-ml-base (<< 1:14.04+20140410), language-pack-kde-ml (<< 1:14.04+20140410), language-pack-kde-ml-base (<< 1:14.04+20140410), language-pack-ml (<< 1:14.04+20140410), language-pack-ml-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ml (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ml Conflicts: language-pack-ml (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ml-base/language-pack-ml-base_14.04+20140410_all.deb Size: 300014 MD5sum: 5c62db9ddc94af663e6ca74087f98969 SHA1: e6c766e8294a80a75a1e52db5e29c731e2294908 SHA256: 51df3b440df1fc198c46ffbe953be16fd2ccaec84e497fa20f032fe7a034a674 Description: translations for language Malayalam Description-md5: eccb849404152b1da1bb6a4a06a3918c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mn (<< 1:14.04+20140410), language-pack-gnome-mn-base (<< 1:14.04+20140410), language-pack-kde-mn (<< 1:14.04+20140410), language-pack-kde-mn-base (<< 1:14.04+20140410), language-pack-mn (<< 1:14.04+20140410), language-pack-mn-base Depends: language-pack-mn-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mn/language-pack-mn_14.04+20140410_all.deb Size: 1990 MD5sum: dc3ddae677ef6e9a230ab87c48d149cc SHA1: f1978a41d9fa508c7cedcefe26786e13637b3a01 SHA256: ef3ce2ed15d6516902627c73aacdaa84687c940323cba2d8743915d248c0c51c Description: translation updates for language Mongolian Description-md5: b708d38cee42e6573bf3981b72d6c26d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mn-base Priority: optional Section: translations Installed-Size: 327 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mn (<< 1:14.04+20140410), language-pack-gnome-mn-base (<< 1:14.04+20140410), language-pack-kde-mn (<< 1:14.04+20140410), language-pack-kde-mn-base (<< 1:14.04+20140410), language-pack-mn (<< 1:14.04+20140410), language-pack-mn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-mn Conflicts: language-pack-mn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mn-base/language-pack-mn-base_14.04+20140410_all.deb Size: 78730 MD5sum: 72bea0f7ff0857c4ad98e604b704279a SHA1: 03d3cb0df278bb6eef5f1174baff37ec4f2bafae SHA256: e89e331d4146085d517b842ee84b8782133ee72f68f1908f22b5828df20053fe Description: translations for language Mongolian Description-md5: 13b66b45da6a7d3a04a8011ff050480c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mr (<< 1:14.04+20140410), language-pack-gnome-mr-base (<< 1:14.04+20140410), language-pack-kde-mr (<< 1:14.04+20140410), language-pack-kde-mr-base (<< 1:14.04+20140410), language-pack-mr (<< 1:14.04+20140410), language-pack-mr-base Depends: language-pack-mr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mr/language-pack-mr_14.04+20140410_all.deb Size: 1988 MD5sum: 055423a498a7267cbb95f1ffa9916b71 SHA1: 150e1866c1aafad1f69a645c57f095ebb111ae88 SHA256: e6de0e7f6879b3d33ae3ab72886da59cc27cb17f08fbbfee7bff81c1dadc1661 Description: translation updates for language Marathi Description-md5: c1463a5845988903df6aae41d673717f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mr-base Priority: optional Section: translations Installed-Size: 2274 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mr (<< 1:14.04+20140410), language-pack-gnome-mr-base (<< 1:14.04+20140410), language-pack-kde-mr (<< 1:14.04+20140410), language-pack-kde-mr-base (<< 1:14.04+20140410), language-pack-mr (<< 1:14.04+20140410), language-pack-mr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-mr Conflicts: language-pack-mr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mr-base/language-pack-mr-base_14.04+20140410_all.deb Size: 456220 MD5sum: dce44ad5531d803610cc1a09ebe72254 SHA1: b1760872ce60258960db9ba851170ababb12c2b7 SHA256: fed75c3c070ae727dc80376838859dbb17d33b8fbf43411c25a788a7f70ffef4 Description: translations for language Marathi Description-md5: f0dd3c75c5552c902ae573917be0988c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ms Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ms (<< 1:14.04+20140410), language-pack-gnome-ms-base (<< 1:14.04+20140410), language-pack-kde-ms (<< 1:14.04+20140410), language-pack-kde-ms-base (<< 1:14.04+20140410), language-pack-ms (<< 1:14.04+20140410), language-pack-ms-base Depends: language-pack-ms-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ms/language-pack-ms_14.04+20140410_all.deb Size: 1980 MD5sum: 4b1c3e6319cfdb4fec9d0ab2c9aad71f SHA1: b674ba23c6785a0d103f6682a5f678a2297bb69b SHA256: 7ffd7d18489230aeb2f1ca318b45e8bd4f14ceecd37d1b2d85153a1eb43dc6a8 Description: translation updates for language Malay Description-md5: 6fac81122e8e9c5fc177bd018d9c2d5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ms-base Priority: optional Section: translations Installed-Size: 4829 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ms (<< 1:14.04+20140410), language-pack-gnome-ms-base (<< 1:14.04+20140410), language-pack-kde-ms (<< 1:14.04+20140410), language-pack-kde-ms-base (<< 1:14.04+20140410), language-pack-ms (<< 1:14.04+20140410), language-pack-ms-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ms (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ms Conflicts: language-pack-ms (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ms-base/language-pack-ms-base_14.04+20140410_all.deb Size: 1502066 MD5sum: 56e08e1df4bddd76d909def4fe44322d SHA1: 0273f7584a56e9bf02d28d6894a5a79ef3e57b9c SHA256: 86f123c8c28d4acc02f8352682dc4036953744675f5233c12588a836d558adae Description: translations for language Malay Description-md5: 7b2a5d2a92b917facc024ac10ec1e808 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mt (<< 1:14.04+20140410), language-pack-gnome-mt-base (<< 1:14.04+20140410), language-pack-kde-mt (<< 1:14.04+20140410), language-pack-kde-mt-base (<< 1:14.04+20140410), language-pack-mt (<< 1:14.04+20140410), language-pack-mt-base Depends: language-pack-mt-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-mt/language-pack-mt_14.04+20140410_all.deb Size: 1986 MD5sum: 06e08c014c50ada7b141bdfaf8e78b21 SHA1: 7bfd59327658d147c19828510b6a723cb9262fbd SHA256: 495589ba5db9518a4e4cb4e0966138d1f785953616c8aff06423886629ca1687 Description: translation updates for language Maltese Description-md5: b974b9217182a6c4c78b7c620aaffcb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-mt-base Priority: optional Section: translations Installed-Size: 64 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-mt (<< 1:14.04+20140410), language-pack-gnome-mt-base (<< 1:14.04+20140410), language-pack-kde-mt (<< 1:14.04+20140410), language-pack-kde-mt-base (<< 1:14.04+20140410), language-pack-mt (<< 1:14.04+20140410), language-pack-mt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-mt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-mt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-mt-base/language-pack-mt-base_14.04+20140410_all.deb Size: 6520 MD5sum: 49dcce56a7a8ddce2d64549b004bef3e SHA1: ca05c7c3afd79907d68365199f7d42b7377e2e06 SHA256: d3b60f27a1db9420455adf299712b250c06176fb7d5844e5c6ab6feaf1e1f0be Description: translations for language Maltese Description-md5: 1ba04e49d0a8bf4cce9e44eb93ad502a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-my Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-my (<< 1:14.04+20140410), language-pack-gnome-my-base (<< 1:14.04+20140410), language-pack-kde-my (<< 1:14.04+20140410), language-pack-kde-my-base (<< 1:14.04+20140410), language-pack-my (<< 1:14.04+20140410), language-pack-my-base Depends: language-pack-my-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-my/language-pack-my_14.04+20140410_all.deb Size: 1968 MD5sum: 96e3fd7eaaca5fb8d8149506a4338c0e SHA1: 858dec7504b12606ae27c2dd1122fcb9981f7745 SHA256: 5d292766588cfd71c480c2ce522d1cb2af061a18a52491aca31e5048816f6f4c Description: translation updates for language Burmese Description-md5: 11692a65ba9a3150357090110381ee19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-my-base Priority: optional Section: translations Installed-Size: 745 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-my (<< 1:14.04+20140410), language-pack-gnome-my-base (<< 1:14.04+20140410), language-pack-kde-my (<< 1:14.04+20140410), language-pack-kde-my-base (<< 1:14.04+20140410), language-pack-my (<< 1:14.04+20140410), language-pack-my-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-my (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-my (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-my-base/language-pack-my-base_14.04+20140410_all.deb Size: 162460 MD5sum: 23aeca579413c5cfe1a30331b1a1b777 SHA1: 2e0d35d4a4a805c1affd2e823247251b52cca4e5 SHA256: ce03bebf7a6f118bf3689330ce657fbeb5f74af1c485e69f5879508d2b920dfd Description: translations for language Burmese Description-md5: eafee3e6ffb98e3bfbb14217961edb0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nan Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nan (<< 1:14.04+20140410), language-pack-gnome-nan-base (<< 1:14.04+20140410), language-pack-kde-nan (<< 1:14.04+20140410), language-pack-kde-nan-base (<< 1:14.04+20140410), language-pack-nan (<< 1:14.04+20140410), language-pack-nan-base Depends: language-pack-nan-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nan/language-pack-nan_14.04+20140410_all.deb Size: 1980 MD5sum: 42adb6318d6ba6e87534e1b1afbc1ae1 SHA1: dad039526e87ffe874afcaea5139b58842b637f5 SHA256: ecf933c844a12df8d826587a9dd66ef65eedb3af2e385ddbb2e1d4690b15986b Description: translation updates for language Chinese, Min Nan Description-md5: 61215204ad55c0ad1e57663525e47f2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nan-base Priority: optional Section: translations Installed-Size: 55 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nan (<< 1:14.04+20140410), language-pack-gnome-nan-base (<< 1:14.04+20140410), language-pack-kde-nan (<< 1:14.04+20140410), language-pack-kde-nan-base (<< 1:14.04+20140410), language-pack-nan (<< 1:14.04+20140410), language-pack-nan-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nan (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-nan (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nan-base/language-pack-nan-base_14.04+20140410_all.deb Size: 2986 MD5sum: 974b2bf6f42fb86604e8cad4019d9b52 SHA1: 7c6c941b147ad9ad82fb89a6b623dc1151dee4df SHA256: 9ef4117ea4d0519a02d4faf3f02c996c63784c99ae45639df3b2a89b9f37bc95 Description: translations for language Chinese, Min Nan Description-md5: ec8947c764d312d9ff19e593b0bdb75f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nb Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nb (<< 1:14.04+20140410), language-pack-gnome-nb-base (<< 1:14.04+20140410), language-pack-kde-nb (<< 1:14.04+20140410), language-pack-kde-nb-base (<< 1:14.04+20140410), language-pack-nb (<< 1:14.04+20140410), language-pack-nb-base Depends: language-pack-nb-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nb/language-pack-nb_14.04+20140410_all.deb Size: 1998 MD5sum: 6104030c099383b67ab10a3eee4515d9 SHA1: 80238544d69fce0ffcd7cdc9dd43b1a86826d160 SHA256: 50e058a3aec50a8aee00ce589c8df38b4c652abcbf70e07fb85dd74268389e65 Description: translation updates for language Bokmål, Norwegian; Norwegian Bokmål Description-md5: e5a81539419b99b61d7ff8c5a7b0985b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nb-base Priority: optional Section: translations Installed-Size: 2907 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nb (<< 1:14.04+20140410), language-pack-gnome-nb-base (<< 1:14.04+20140410), language-pack-kde-nb (<< 1:14.04+20140410), language-pack-kde-nb-base (<< 1:14.04+20140410), language-pack-nb (<< 1:14.04+20140410), language-pack-nb-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nb (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-nb Conflicts: language-pack-nb (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nb-base/language-pack-nb-base_14.04+20140410_all.deb Size: 910210 MD5sum: d4dcd8e625844383c3218ce63e7b9343 SHA1: de27a55f3c3b9d40f43d9320c3bba1f7a4a1b901 SHA256: d4dbfd1241d6dbbe54b028bc92df0435a961e8594b25daa3cb831a9b4cc2f755 Description: translations for language Bokmål, Norwegian; Norwegian Bokmål Description-md5: 848a8c4db84a81ca1844e7323c727f3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nds Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nds (<< 1:14.04+20140410), language-pack-gnome-nds-base (<< 1:14.04+20140410), language-pack-kde-nds (<< 1:14.04+20140410), language-pack-kde-nds-base (<< 1:14.04+20140410), language-pack-nds (<< 1:14.04+20140410), language-pack-nds-base Depends: language-pack-nds-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nds/language-pack-nds_14.04+20140410_all.deb Size: 1974 MD5sum: 964092aece0689fd6e0e525d324d452c SHA1: fda3f44e1bdfd3fbee0c73766a8e1fdca18670e9 SHA256: b928d5af69333f802b080cde0227daa9d5c8c6172d082210a04c6c5ce0bf289b Description: translation updates for language German, Low Description-md5: d1696da67bdcea01dacc28a956dd70c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nds-base Priority: optional Section: translations Installed-Size: 90 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nds (<< 1:14.04+20140410), language-pack-gnome-nds-base (<< 1:14.04+20140410), language-pack-kde-nds (<< 1:14.04+20140410), language-pack-kde-nds-base (<< 1:14.04+20140410), language-pack-nds (<< 1:14.04+20140410), language-pack-nds-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nds (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-nds (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nds-base/language-pack-nds-base_14.04+20140410_all.deb Size: 15036 MD5sum: add31de8f120a88fabe77b3b4f6b4505 SHA1: dfc2bc4b20833ef8dd02c46321ee5278c75ee4f9 SHA256: d0757308b7306f84cbac468fa7099b6a6e2da5cf083bc540de78fc1465dc589b Description: translations for language German, Low Description-md5: 137e7c9b7acb23f43087a960c65fcdac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ne Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ne (<< 1:14.04+20140410), language-pack-gnome-ne-base (<< 1:14.04+20140410), language-pack-kde-ne (<< 1:14.04+20140410), language-pack-kde-ne-base (<< 1:14.04+20140410), language-pack-ne (<< 1:14.04+20140410), language-pack-ne-base Depends: language-pack-ne-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ne/language-pack-ne_14.04+20140410_all.deb Size: 1978 MD5sum: 40860d1b952416b69594ffaa458aad25 SHA1: b02c768ebecc4982ee95e30d0d39513e00628958 SHA256: ca557b39430039b50bd5e621068aeb3871670c1d8690bf745c3edecd6e6dbb47 Description: translation updates for language Nepali Description-md5: c1403e2f1c360545ad4ecd7ec86dd29f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ne-base Priority: optional Section: translations Installed-Size: 584 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ne (<< 1:14.04+20140410), language-pack-gnome-ne-base (<< 1:14.04+20140410), language-pack-kde-ne (<< 1:14.04+20140410), language-pack-kde-ne-base (<< 1:14.04+20140410), language-pack-ne (<< 1:14.04+20140410), language-pack-ne-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ne (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ne (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ne-base/language-pack-ne-base_14.04+20140410_all.deb Size: 113430 MD5sum: 6da8f161b3379c871919c89c5a802789 SHA1: 360b8aa8038789e335c71cd25d72d4865dd9b260 SHA256: 87018302ed1a9c2cccb7c85a4eb927ceea5daedd13f903f75e551d3eb0108db9 Description: translations for language Nepali Description-md5: 73778da7d2c04e5881d1bb9c676a8b2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nl (<< 1:14.04+20140410), language-pack-gnome-nl-base (<< 1:14.04+20140410), language-pack-kde-nl (<< 1:14.04+20140410), language-pack-kde-nl-base (<< 1:14.04+20140410), language-pack-nl (<< 1:14.04+20140410), language-pack-nl-base Depends: language-pack-nl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nl/language-pack-nl_14.04+20140410_all.deb Size: 1960 MD5sum: 812e8b0e1b784ce040fc6e504dd53a0d SHA1: 16a5b5f0e3e1f4d15cdfce99e8bee3be71e2ec85 SHA256: e58d483902ca0b37bba5dd11e49b330906f6861d4299e16fe5a2c791cf7d2d19 Description: translation updates for language Dutch; Flemish Description-md5: abbd06c2b718cf6ca34c0db17f0d7c37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-nl-base Priority: optional Section: translations Installed-Size: 5904 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nl (<< 1:14.04+20140410), language-pack-gnome-nl-base (<< 1:14.04+20140410), language-pack-kde-nl (<< 1:14.04+20140410), language-pack-kde-nl-base (<< 1:14.04+20140410), language-pack-nl (<< 1:14.04+20140410), language-pack-nl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-nl Conflicts: language-pack-nl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nl-base/language-pack-nl-base_14.04+20140410_all.deb Size: 1819932 MD5sum: 5f13216a1772470c0f7e55f7ab64a472 SHA1: e2840bd869da32b3f7d0a9832813f47b960f8870 SHA256: 2eecd8656e87e0cf2100939714af8dd3f2571f80892ff7770b404baee6807333 Description: translations for language Dutch; Flemish Description-md5: 2c07d61e37160964bb9c1bddec329524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-nn Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nn (<< 1:14.04+20140410), language-pack-gnome-nn-base (<< 1:14.04+20140410), language-pack-kde-nn (<< 1:14.04+20140410), language-pack-kde-nn-base (<< 1:14.04+20140410), language-pack-nn (<< 1:14.04+20140410), language-pack-nn-base Depends: language-pack-nn-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nn/language-pack-nn_14.04+20140410_all.deb Size: 1988 MD5sum: 45e8184cc0696a8683825935fd907f41 SHA1: b9f67c11a5e1c8d756e971649924c0758cce66f9 SHA256: 8d16bc086b60ab092e083a6eb78016b5d29f670734d58fd6c62d3c266ae5b99c Description: translation updates for language Norwegian Nynorsk; Nynorsk, Norwegian Description-md5: 12e80421f55580d4f4bb594b12a48b81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nn-base Priority: optional Section: translations Installed-Size: 779 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nn (<< 1:14.04+20140410), language-pack-gnome-nn-base (<< 1:14.04+20140410), language-pack-kde-nn (<< 1:14.04+20140410), language-pack-kde-nn-base (<< 1:14.04+20140410), language-pack-nn (<< 1:14.04+20140410), language-pack-nn-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nn (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-nn Conflicts: language-pack-nn (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nn-base/language-pack-nn-base_14.04+20140410_all.deb Size: 236830 MD5sum: 044242db926b70075fdb43244ff88af3 SHA1: de105ce174d7c6166e85b8fa119b0004ecbca690 SHA256: a03cf5bd286be0f89122911ba116e83dbf1a7a120da77795bf8bf7beb1dbc7f4 Description: translations for language Norwegian Nynorsk; Nynorsk, Norwegian Description-md5: d5b06940bc7cef7e58d75032b2147707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nso Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nso (<< 1:14.04+20140410), language-pack-gnome-nso-base (<< 1:14.04+20140410), language-pack-kde-nso (<< 1:14.04+20140410), language-pack-kde-nso-base (<< 1:14.04+20140410), language-pack-nso (<< 1:14.04+20140410), language-pack-nso-base Depends: language-pack-nso-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-nso/language-pack-nso_14.04+20140410_all.deb Size: 1966 MD5sum: e4301eba6a3c766c4376d5f46db94051 SHA1: ef1b17b2698c9e0922f274b55abbf86dc4038a3c SHA256: 10e2f6e95ef41000ad2394ea23b57c87964e47a0f2f3c51028f85a80bc9f3584 Description: translation updates for language Pedi Description-md5: cb00c3e5ce7aa506d7bfcc7dcde84f30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-nso-base Priority: optional Section: translations Installed-Size: 71 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-nso (<< 1:14.04+20140410), language-pack-gnome-nso-base (<< 1:14.04+20140410), language-pack-kde-nso (<< 1:14.04+20140410), language-pack-kde-nso-base (<< 1:14.04+20140410), language-pack-nso (<< 1:14.04+20140410), language-pack-nso-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-nso (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-nso Conflicts: language-pack-nso (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-nso-base/language-pack-nso-base_14.04+20140410_all.deb Size: 7496 MD5sum: 72d69a38f53596897949d6cb835b9ece SHA1: ac9522e05d7ee9ef61156eb5af49619d27792955 SHA256: 82126686db8c1545e0ffbe9d20e83bd628c1db22baea165304a506f41c61b401 Description: translations for language Pedi Description-md5: 33db3bda3312bfd02bb81b59a6b03822 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-oc Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-oc (<< 1:14.04+20140410), language-pack-gnome-oc-base (<< 1:14.04+20140410), language-pack-kde-oc (<< 1:14.04+20140410), language-pack-kde-oc-base (<< 1:14.04+20140410), language-pack-oc (<< 1:14.04+20140410), language-pack-oc-base Depends: language-pack-oc-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-oc/language-pack-oc_14.04+20140410_all.deb Size: 2002 MD5sum: 993c605f5c17b1e7450c3eb75984167d SHA1: bf9c39b478fd4062099a46bb266f343b8edc7b4f SHA256: e7396329ba5653995c8d4798095ef0590a40d92a9dc023bd7fcc56b30097ba08 Description: translation updates for language Occitan (post 1500) Description-md5: c7d8488edf73defd42378e02543b8708 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-oc-base Priority: optional Section: translations Installed-Size: 2758 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-oc (<< 1:14.04+20140410), language-pack-gnome-oc-base (<< 1:14.04+20140410), language-pack-kde-oc (<< 1:14.04+20140410), language-pack-kde-oc-base (<< 1:14.04+20140410), language-pack-oc (<< 1:14.04+20140410), language-pack-oc-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-oc (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-oc Conflicts: language-pack-oc (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-oc-base/language-pack-oc-base_14.04+20140410_all.deb Size: 884280 MD5sum: 9142e6b43200a0bf60f17c88ae1b2592 SHA1: 5f7402cedc4e16583f20542f76b6e35ac9cbaaa2 SHA256: 6947105ab17fd5a5fd185f30e1bd5d0b45ddceb111dbced112213e11d5dd944e Description: translations for language Occitan (post 1500) Description-md5: b480e25408b2374ec4df3c0785121b10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-om Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-om (<< 1:14.04+20140410), language-pack-gnome-om-base (<< 1:14.04+20140410), language-pack-kde-om (<< 1:14.04+20140410), language-pack-kde-om-base (<< 1:14.04+20140410), language-pack-om (<< 1:14.04+20140410), language-pack-om-base Depends: language-pack-om-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-om/language-pack-om_14.04+20140410_all.deb Size: 1972 MD5sum: e51a6b3e9b35fea71ec86ea9653f50e9 SHA1: 8c1aecedcfc9c393776523a0e57e60ba0a835eb4 SHA256: 054ed5538773eb4aa1fcb788bc223bc41b14b9a3bb1e931f3056ba8af40dce77 Description: translation updates for language Oromo Description-md5: 432bb1c3495f415356fba9d2682e23b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-om-base Priority: optional Section: translations Installed-Size: 58 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-om (<< 1:14.04+20140410), language-pack-gnome-om-base (<< 1:14.04+20140410), language-pack-kde-om (<< 1:14.04+20140410), language-pack-kde-om-base (<< 1:14.04+20140410), language-pack-om (<< 1:14.04+20140410), language-pack-om-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-om (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-om (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-om-base/language-pack-om-base_14.04+20140410_all.deb Size: 4286 MD5sum: 47679902a79081c17aa732069893371d SHA1: 4153589a6a4f9e1fcc8e8230f6d5f62b2a0a6c1b SHA256: 07372e638ff8521b033b35b6f366978e08005e750be4b4c824bdc22f7a8076ba Description: translations for language Oromo Description-md5: 3c48e7c524bd62f241220dbb862be2d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-or Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-or (<< 1:14.04+20140410), language-pack-gnome-or-base (<< 1:14.04+20140410), language-pack-kde-or (<< 1:14.04+20140410), language-pack-kde-or-base (<< 1:14.04+20140410), language-pack-or (<< 1:14.04+20140410), language-pack-or-base Depends: language-pack-or-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-or/language-pack-or_14.04+20140410_all.deb Size: 1970 MD5sum: c02d5629da9a6243a20d06204e31009c SHA1: 911761b39d38c62316e107c83f530113f012aaec SHA256: 3c4503244266edf9a0c0e2cd28e187d4fbe2d535c7280802943e52480eed54e9 Description: translation updates for language Oriya Description-md5: 849d17e9eac687848aa688c4876f4723 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-or-base Priority: optional Section: translations Installed-Size: 1686 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-or (<< 1:14.04+20140410), language-pack-gnome-or-base (<< 1:14.04+20140410), language-pack-kde-or (<< 1:14.04+20140410), language-pack-kde-or-base (<< 1:14.04+20140410), language-pack-or (<< 1:14.04+20140410), language-pack-or-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-or (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-or Conflicts: language-pack-or (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-or-base/language-pack-or-base_14.04+20140410_all.deb Size: 320362 MD5sum: 45cad5d91905f227582c710f8e5c5a6e SHA1: e1f8a157e6bea9285f810dad729585b256a1a133 SHA256: ca4f1ffbb4830a0ead0dd40e394b733c03cf05c3c2a6d2822a534b80c3e62ded Description: translations for language Oriya Description-md5: 8ab6ee3ce7a0b1ce4b6d84f8ac3d3287 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-os Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-os (<< 1:14.04+20140410), language-pack-gnome-os-base (<< 1:14.04+20140410), language-pack-kde-os (<< 1:14.04+20140410), language-pack-kde-os-base (<< 1:14.04+20140410), language-pack-os (<< 1:14.04+20140410), language-pack-os-base Depends: language-pack-os-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-os/language-pack-os_14.04+20140410_all.deb Size: 1980 MD5sum: 9c4ee75f58f821c8f4695bf17a3b47f9 SHA1: 531d3afe934f6451008c1e2da20bcda2178450e1 SHA256: c429c903b82657f28d4df51ab9f6a66ab195ac30f0c61020e657ea879b041e5a Description: translation updates for language Ossetian; Ossetic Description-md5: fa7d4673e3fcb72bea74d39bae6710d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-os-base Priority: optional Section: translations Installed-Size: 64 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-os (<< 1:14.04+20140410), language-pack-gnome-os-base (<< 1:14.04+20140410), language-pack-kde-os (<< 1:14.04+20140410), language-pack-kde-os-base (<< 1:14.04+20140410), language-pack-os (<< 1:14.04+20140410), language-pack-os-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-os (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-os (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-os-base/language-pack-os-base_14.04+20140410_all.deb Size: 6640 MD5sum: 86343fc3b594157bab78a87aafc1dfcd SHA1: d4d7a754fa1f6590fa7c433b08a78fbd7ce5480d SHA256: 98b4178bce4c96c4f7af14f30a5c24ae7bb129fefc03a9549fb4dd65ca084a4c Description: translations for language Ossetian; Ossetic Description-md5: 3e5448b654a90314b8890aea03a032cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pa (<< 1:14.04+20140410), language-pack-gnome-pa-base (<< 1:14.04+20140410), language-pack-kde-pa (<< 1:14.04+20140410), language-pack-kde-pa-base (<< 1:14.04+20140410), language-pack-pa (<< 1:14.04+20140410), language-pack-pa-base Depends: language-pack-pa-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-pa/language-pack-pa_14.04+20140410_all.deb Size: 1970 MD5sum: 34a2f71700d60e382ea3c3cd5840cdeb SHA1: a5c500c2b849f24947368acc0bc196a3f3e69740 SHA256: 510055d9bb001c25c29a0ba96f3543d014b9702e417d569c7edf3ec00904b41f Description: translation updates for language Panjabi; Punjabi Description-md5: e0b453c4f3b09ad56c98e5ec913147a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pa-base Priority: optional Section: translations Installed-Size: 2035 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pa (<< 1:14.04+20140410), language-pack-gnome-pa-base (<< 1:14.04+20140410), language-pack-kde-pa (<< 1:14.04+20140410), language-pack-kde-pa-base (<< 1:14.04+20140410), language-pack-pa (<< 1:14.04+20140410), language-pack-pa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-pa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-pa Conflicts: language-pack-pa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-pa-base/language-pack-pa-base_14.04+20140410_all.deb Size: 437056 MD5sum: afe00ded50c46e4c5ba608991385a323 SHA1: 7a0638742d5f78ebcc042c499eea75dcbf249209 SHA256: e0fa80593a51ccc83e013340b0602d9bb04fd61e491debd0d7fe24dc98ce82a6 Description: translations for language Panjabi; Punjabi Description-md5: e579ea480c2c7b2878cf7bab852c841b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pap Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pap (<< 1:14.04+20140410), language-pack-gnome-pap-base (<< 1:14.04+20140410), language-pack-kde-pap (<< 1:14.04+20140410), language-pack-kde-pap-base (<< 1:14.04+20140410), language-pack-pap (<< 1:14.04+20140410), language-pack-pap-base Depends: language-pack-pap-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-pap/language-pack-pap_14.04+20140410_all.deb Size: 1974 MD5sum: 7b17e0d66931630eaa03ee1d46eb14d5 SHA1: 2f02266ecdb0e6ff8149e62231c34249db4c90a3 SHA256: 1198704cad7b30edccb19b8e258237a8ca96a33fd89e6fcb669a32b4e2d8c364 Description: translation updates for language Papiamento Description-md5: 2713f73fe41c251536b15e040b0c3eb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pap-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pap (<< 1:14.04+20140410), language-pack-gnome-pap-base (<< 1:14.04+20140410), language-pack-kde-pap (<< 1:14.04+20140410), language-pack-kde-pap-base (<< 1:14.04+20140410), language-pack-pap (<< 1:14.04+20140410), language-pack-pap-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-pap (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-pap (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-pap-base/language-pack-pap-base_14.04+20140410_all.deb Size: 2304 MD5sum: 23713c3ff9dcfed80e5edeacdbf53886 SHA1: c8523b2cf52fd9decdfc77ad9b358cbb4771f6dd SHA256: cffcfd8896772f811ba0cbc7c5a61ab25383e8e6339f9c9fd1b57b11e838ed26 Description: translations for language Papiamento Description-md5: 01a1807ee95c8dc257f947c8ba6607fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pl (<< 1:14.04+20140410), language-pack-gnome-pl-base (<< 1:14.04+20140410), language-pack-kde-pl (<< 1:14.04+20140410), language-pack-kde-pl-base (<< 1:14.04+20140410), language-pack-pl (<< 1:14.04+20140410), language-pack-pl-base Depends: language-pack-pl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-pl/language-pack-pl_14.04+20140410_all.deb Size: 1966 MD5sum: c5ad9648a1fb4bf24564a7ea59f8de00 SHA1: 01a869d855102a5b5f7138fd6496d032123e98f0 SHA256: 40ab73a77791cc4800745a01a2189dd3c5ec9da4d3bf35e0fd2994785af4e1d0 Description: translation updates for language Polish Description-md5: d9c80d720a6c8fa05d28f1a32c741463 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-pl-base Priority: optional Section: translations Installed-Size: 7810 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pl (<< 1:14.04+20140410), language-pack-gnome-pl-base (<< 1:14.04+20140410), language-pack-kde-pl (<< 1:14.04+20140410), language-pack-kde-pl-base (<< 1:14.04+20140410), language-pack-pl (<< 1:14.04+20140410), language-pack-pl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-pl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-pl Conflicts: language-pack-pl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-pl-base/language-pack-pl-base_14.04+20140410_all.deb Size: 2402228 MD5sum: d66cd7a550e31e26318b50725c85eaca SHA1: 4981070999122c26388fc91c0367bca4ff8c8dca SHA256: dd40008f0f20fad8d2385f16710ec3af97f2b6008726f8466c33f12b722a5036 Description: translations for language Polish Description-md5: 218d3c66cebc55614ff111887b1501aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-ps Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ps (<< 1:14.04+20140410), language-pack-gnome-ps-base (<< 1:14.04+20140410), language-pack-kde-ps (<< 1:14.04+20140410), language-pack-kde-ps-base (<< 1:14.04+20140410), language-pack-ps (<< 1:14.04+20140410), language-pack-ps-base Depends: language-pack-ps-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ps/language-pack-ps_14.04+20140410_all.deb Size: 1964 MD5sum: 6bfa38dcbf84087913759cdf5cb28992 SHA1: 8a53161b24c5f9c16853adcb9d60edf767662057 SHA256: 7193209e498334067a8d142ef59bd0213c62edfbe51e041f06e0ca82ed681d47 Description: translation updates for language Pushto; Pashto Description-md5: b448169ed995af6518c3dc0822eb318a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ps-base Priority: optional Section: translations Installed-Size: 105 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ps (<< 1:14.04+20140410), language-pack-gnome-ps-base (<< 1:14.04+20140410), language-pack-kde-ps (<< 1:14.04+20140410), language-pack-kde-ps-base (<< 1:14.04+20140410), language-pack-ps (<< 1:14.04+20140410), language-pack-ps-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ps (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ps (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ps-base/language-pack-ps-base_14.04+20140410_all.deb Size: 20328 MD5sum: 3afecca8ab3e1fe966ce34a847af964b SHA1: 2d69bfcb4ae887026bbd3a4008b2c56d6b2c25e6 SHA256: 10fa05401f17ff4db8f5d6bb280e630f8e55ce68a35317d74c2b170ebb89e5e4 Description: translations for language Pushto; Pashto Description-md5: 2efc67b41c2b11920af34f638a82521e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-pt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pt (<< 1:14.04+20140410), language-pack-gnome-pt-base (<< 1:14.04+20140410), language-pack-kde-pt (<< 1:14.04+20140410), language-pack-kde-pt-base (<< 1:14.04+20140410), language-pack-pt (<< 1:14.04+20140410), language-pack-pt-base Depends: language-pack-pt-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-pt/language-pack-pt_14.04+20140410_all.deb Size: 1992 MD5sum: e111e8602169a4077c45ccb2c33d2bce SHA1: 1fa1859f620d4916d42872fbeca7005cfe06d9a2 SHA256: 8c64889acf3b7d29a77d2c740d4c68a5bea284fc7b1d708ac8d8b6eca93043a6 Description: translation updates for language Portuguese Description-md5: bdb80b4ddacaf5fa67fbad83cb7c6f9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-pt-base Priority: optional Section: translations Installed-Size: 14095 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-pt (<< 1:14.04+20140410), language-pack-gnome-pt-base (<< 1:14.04+20140410), language-pack-kde-pt (<< 1:14.04+20140410), language-pack-kde-pt-base (<< 1:14.04+20140410), language-pack-pt (<< 1:14.04+20140410), language-pack-pt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-pt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-pt Conflicts: language-pack-pt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-pt-base/language-pack-pt-base_14.04+20140410_all.deb Size: 4301518 MD5sum: 467d46e948d00e77f3ae7d9bcf342279 SHA1: 249e9f55a7e12338bb5cf20292f5cd84fca08c16 SHA256: 6c35bb3a20261ab6f5718455e1d82c39ecbed17090f0d57399c98800a4bb95bf Description: translations for language Portuguese Description-md5: 43d77c941af707d0ba018624927e0fad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-ro Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ro (<< 1:14.04+20140410), language-pack-gnome-ro-base (<< 1:14.04+20140410), language-pack-kde-ro (<< 1:14.04+20140410), language-pack-kde-ro-base (<< 1:14.04+20140410), language-pack-ro (<< 1:14.04+20140410), language-pack-ro-base Depends: language-pack-ro-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ro/language-pack-ro_14.04+20140410_all.deb Size: 1952 MD5sum: 74c677256f02aff283b541e7b74e4ecb SHA1: dce4c0f571267a1657bf8071501d7e0e1cb4972c SHA256: 40c94317910bbd74f5b455a741a9efb64e7761b7f50394bdfe80d90ebf17b0a5 Description: translation updates for language Romanian Description-md5: e446108efaa2fbd79747c4078a6fecd0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ro-base Priority: optional Section: translations Installed-Size: 3321 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ro (<< 1:14.04+20140410), language-pack-gnome-ro-base (<< 1:14.04+20140410), language-pack-kde-ro (<< 1:14.04+20140410), language-pack-kde-ro-base (<< 1:14.04+20140410), language-pack-ro (<< 1:14.04+20140410), language-pack-ro-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ro (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ro Conflicts: language-pack-ro (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ro-base/language-pack-ro-base_14.04+20140410_all.deb Size: 1038792 MD5sum: e6ddd3e9e2d1fe77028bc90ea83be9bd SHA1: 165f3fea90729bece2b89342a2d016a6328c3e77 SHA256: a37ded22772d23cf93fec90306926f901533f3b68986c1e21535a83c5a4d0963 Description: translations for language Romanian Description-md5: 8889e6b4d2a003928f1f0b07f5029651 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ru Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ru (<< 1:14.04+20140410), language-pack-gnome-ru-base (<< 1:14.04+20140410), language-pack-kde-ru (<< 1:14.04+20140410), language-pack-kde-ru-base (<< 1:14.04+20140410), language-pack-ru (<< 1:14.04+20140410), language-pack-ru-base Depends: language-pack-ru-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ru/language-pack-ru_14.04+20140410_all.deb Size: 1968 MD5sum: b1415b120e5658af7623c6c860dc302d SHA1: 27fbe745c9ed9372cdb5ce00bcb48ffd09e22ee5 SHA256: d102416486906f3e8ed5f323f7cb85d63f91876620633a5d8eeb35af284fbcea Description: translation updates for language Russian Description-md5: cd093e2891d1268b4a62b984f94669b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, lubuntu-live Package: language-pack-ru-base Priority: optional Section: translations Installed-Size: 10548 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ru (<< 1:14.04+20140410), language-pack-gnome-ru-base (<< 1:14.04+20140410), language-pack-kde-ru (<< 1:14.04+20140410), language-pack-kde-ru-base (<< 1:14.04+20140410), language-pack-ru (<< 1:14.04+20140410), language-pack-ru-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ru (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ru Conflicts: language-pack-ru (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ru-base/language-pack-ru-base_14.04+20140410_all.deb Size: 2583286 MD5sum: b7730f8f275c96c25200d74982e667d3 SHA1: 5cbce5ac6903871cd3a34391fe4b4af64cc71aed SHA256: 338f3e981b8bba4061bb6317a88cb70054005b088582f614442bc8ca0bc020ab Description: translations for language Russian Description-md5: 67ed1fd3b278192ef03b250e781dd666 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live, lubuntu-live Package: language-pack-rw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-rw (<< 1:14.04+20140410), language-pack-gnome-rw-base (<< 1:14.04+20140410), language-pack-kde-rw (<< 1:14.04+20140410), language-pack-kde-rw-base (<< 1:14.04+20140410), language-pack-rw (<< 1:14.04+20140410), language-pack-rw-base Depends: language-pack-rw-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-rw/language-pack-rw_14.04+20140410_all.deb Size: 1974 MD5sum: 99a2bf55b677f25cc05528aab9c71b4c SHA1: 850d86d298afd1fb78d293e000847309de212c7e SHA256: bbd9a04a4cc3c2121016885d847522aadb04c9fc9bd6054de162eeeadb84afe6 Description: translation updates for language Kinyarwanda Description-md5: c97828242a30f6d2ee5909bac5f68c93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-rw-base Priority: optional Section: translations Installed-Size: 75 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-rw (<< 1:14.04+20140410), language-pack-gnome-rw-base (<< 1:14.04+20140410), language-pack-kde-rw (<< 1:14.04+20140410), language-pack-kde-rw-base (<< 1:14.04+20140410), language-pack-rw (<< 1:14.04+20140410), language-pack-rw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-rw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-rw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-rw-base/language-pack-rw-base_14.04+20140410_all.deb Size: 8850 MD5sum: 22adc23c82ef965d1a52dee0e705780b SHA1: f09390491ebe1932820f059c640a3a35c8b1d5a1 SHA256: 8b271a5ef593499bdf090453bbeba15d284c7ec75d22c5223117600ac32809ae Description: translations for language Kinyarwanda Description-md5: 1a245f0b9b3a6f946afc7ac7d75b60fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sa (<< 1:14.04+20140410), language-pack-gnome-sa-base (<< 1:14.04+20140410), language-pack-kde-sa (<< 1:14.04+20140410), language-pack-kde-sa-base (<< 1:14.04+20140410), language-pack-sa (<< 1:14.04+20140410), language-pack-sa-base Depends: language-pack-sa-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sa/language-pack-sa_14.04+20140410_all.deb Size: 1984 MD5sum: 1cad9ff823ea6af9d7ca4f5e3e55090c SHA1: 14c79cbff9418393675c17b7b8030c3136f6866f SHA256: b5fa970f90f0d159ee80d8f79f17c96b252d00dc68ec7a9d783368ab0f3c22e8 Description: translation updates for language Sanskrit Description-md5: 29207b0e9c7c66e6ab904fd84a3d9ab0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sa-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sa (<< 1:14.04+20140410), language-pack-gnome-sa-base (<< 1:14.04+20140410), language-pack-kde-sa (<< 1:14.04+20140410), language-pack-kde-sa-base (<< 1:14.04+20140410), language-pack-sa (<< 1:14.04+20140410), language-pack-sa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-sa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sa-base/language-pack-sa-base_14.04+20140410_all.deb Size: 2276 MD5sum: 8ddd1535c7caf4cb98d4b7faa8b5ca6f SHA1: 81c1604cea025052caf5daf6176e27f967adfbc1 SHA256: 0f2e7a089f54eeea4e38f7e6aed4d165dcd64f87d317238a3c2f7e03f756ecf9 Description: translations for language Sanskrit Description-md5: 01f89e63b4b693064112df988668ea51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sc Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sc (<< 1:14.04+20140410), language-pack-gnome-sc-base (<< 1:14.04+20140410), language-pack-kde-sc (<< 1:14.04+20140410), language-pack-kde-sc-base (<< 1:14.04+20140410), language-pack-sc (<< 1:14.04+20140410), language-pack-sc-base Depends: language-pack-sc-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sc/language-pack-sc_14.04+20140410_all.deb Size: 1972 MD5sum: ddf7f6e7c3f1057cbff8861fd61b810d SHA1: cbdcf67bf6a73f37c096e1f65752bdd78473c4d6 SHA256: 857063f5e5c541ea78b93fa7a6d71f537fde57d4ac2317f3a6f474027b0cc001 Description: translation updates for language Sardinian Description-md5: c9c0eb092595f1b123c095dd0eeaf0df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sc-base Priority: optional Section: translations Installed-Size: 75 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sc (<< 1:14.04+20140410), language-pack-gnome-sc-base (<< 1:14.04+20140410), language-pack-kde-sc (<< 1:14.04+20140410), language-pack-kde-sc-base (<< 1:14.04+20140410), language-pack-sc (<< 1:14.04+20140410), language-pack-sc-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sc (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-sc (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sc-base/language-pack-sc-base_14.04+20140410_all.deb Size: 10780 MD5sum: 7753a88f17381c13fcb34b04ae5ca04b SHA1: 3ccb88feb42bcf50874edcdc318e597d77dd2db7 SHA256: 52270392567cd0837b79fd7415932be110751d6a3cc62ac20df2f2e905bcf05c Description: translations for language Sardinian Description-md5: 1a82312bfe2283f71bc34f9dcbfc7edc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sd Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sd (<< 1:14.04+20140410), language-pack-gnome-sd-base (<< 1:14.04+20140410), language-pack-kde-sd (<< 1:14.04+20140410), language-pack-kde-sd-base (<< 1:14.04+20140410), language-pack-sd (<< 1:14.04+20140410), language-pack-sd-base Depends: language-pack-sd-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sd/language-pack-sd_14.04+20140410_all.deb Size: 1984 MD5sum: 7b45931ad62015a5d268ae26280da562 SHA1: ed346ad8417a59640fa8c3fa703f05ae265ab8df SHA256: f21fad127aa60084908c21e6958f81c6bfdb1be107960ae1a391be960c30aba8 Description: translation updates for language Sindhi Description-md5: f94a8f0c7e9135334271d7551fbc3ad9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sd-base Priority: optional Section: translations Installed-Size: 97 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sd (<< 1:14.04+20140410), language-pack-gnome-sd-base (<< 1:14.04+20140410), language-pack-kde-sd (<< 1:14.04+20140410), language-pack-kde-sd-base (<< 1:14.04+20140410), language-pack-sd (<< 1:14.04+20140410), language-pack-sd-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sd (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-sd (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sd-base/language-pack-sd-base_14.04+20140410_all.deb Size: 15704 MD5sum: d668aeb9d91e48a4134551a86b9964e0 SHA1: 553b962346c1dd502ab9183b87ae0fc6c8e1553d SHA256: a573a36d64831d680d4ac706060e2a7bbceebc4c24a986ed82eeadf24ba0cd0a Description: translations for language Sindhi Description-md5: f61edd9219594f9c59a537aa4e8f9cc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-se Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-se (<< 1:14.04+20140410), language-pack-gnome-se-base (<< 1:14.04+20140410), language-pack-kde-se (<< 1:14.04+20140410), language-pack-kde-se-base (<< 1:14.04+20140410), language-pack-se (<< 1:14.04+20140410), language-pack-se-base Depends: language-pack-se-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-se/language-pack-se_14.04+20140410_all.deb Size: 1988 MD5sum: f7eb3e7c1a1e7efd14026c415bb4c33e SHA1: 4130be0ee83861983006e0414985dbac3149c3d9 SHA256: 1d05d532901f3c7e7442496b97a70596f233bad86dee0c81bc946949dd575fc6 Description: translation updates for language Northern Sami Description-md5: ae2b2a287fbb238071d2d2237fa1da97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-se-base Priority: optional Section: translations Installed-Size: 100 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-se (<< 1:14.04+20140410), language-pack-gnome-se-base (<< 1:14.04+20140410), language-pack-kde-se (<< 1:14.04+20140410), language-pack-kde-se-base (<< 1:14.04+20140410), language-pack-se (<< 1:14.04+20140410), language-pack-se-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-se (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-se (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-se-base/language-pack-se-base_14.04+20140410_all.deb Size: 18684 MD5sum: a33b3eda7cafd34da62c36bc4623d562 SHA1: e5f75590a374f8237011402b29db4fffaf09c312 SHA256: 1d9b41e088284cf24d3d1b1310125e8cd43a99ac2039f131e3caded12afcfe54 Description: translations for language Northern Sami Description-md5: 4a22de8f82e5fda7bc1ac5c1a5794a26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-shs Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-shs (<< 1:14.04+20140410), language-pack-gnome-shs-base (<< 1:14.04+20140410), language-pack-kde-shs (<< 1:14.04+20140410), language-pack-kde-shs-base (<< 1:14.04+20140410), language-pack-shs (<< 1:14.04+20140410), language-pack-shs-base Depends: language-pack-shs-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-shs/language-pack-shs_14.04+20140410_all.deb Size: 1994 MD5sum: f00e17836df4ee2bb8bfd434aed15cb4 SHA1: a39fb1b0599e178a5aff16fea635b49f013994e7 SHA256: ebe192a7f5e7390524b2817e06d222ae0a8da43bf702245a2cac22a9870eb54f Description: translation updates for language Shuswap Description-md5: 9b020f8e491a3364f0770eeee5a302c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-shs-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-shs (<< 1:14.04+20140410), language-pack-gnome-shs-base (<< 1:14.04+20140410), language-pack-kde-shs (<< 1:14.04+20140410), language-pack-kde-shs-base (<< 1:14.04+20140410), language-pack-shs (<< 1:14.04+20140410), language-pack-shs-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-shs (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-shs (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-shs-base/language-pack-shs-base_14.04+20140410_all.deb Size: 2318 MD5sum: cfe246f4acbde8acd97545a58676ff48 SHA1: 73eb4f588d4cc65f99267e862adfd1e2ada2dde2 SHA256: e832ab9d86f296f829b770d1119c6f18134b4525538c88e721bc1fc04bb32098 Description: translations for language Shuswap Description-md5: ef3e65e6ff59403a11b534691fad3376 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-si Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-si (<< 1:14.04+20140410), language-pack-gnome-si-base (<< 1:14.04+20140410), language-pack-kde-si (<< 1:14.04+20140410), language-pack-kde-si-base (<< 1:14.04+20140410), language-pack-si (<< 1:14.04+20140410), language-pack-si-base Depends: language-pack-si-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-si/language-pack-si_14.04+20140410_all.deb Size: 1964 MD5sum: 046133b9adcf2e26a74b20f677a9a8d2 SHA1: db7c0833ce0207e30221af9bc517273018a2c4ea SHA256: 8c032c4e9cfe022928912d1e88a9742ae78cd4c7cfe9008d7afcc8d7146b8920 Description: translation updates for language Sinhala; Sinhalese Description-md5: 67913d4ae51f73da5cd7fe8f67ae68cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-si-base Priority: optional Section: translations Installed-Size: 219 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-si (<< 1:14.04+20140410), language-pack-gnome-si-base (<< 1:14.04+20140410), language-pack-kde-si (<< 1:14.04+20140410), language-pack-kde-si-base (<< 1:14.04+20140410), language-pack-si (<< 1:14.04+20140410), language-pack-si-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-si (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-si Conflicts: language-pack-si (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-si-base/language-pack-si-base_14.04+20140410_all.deb Size: 46222 MD5sum: 1e70d28816c7c9fd7c9f96bc0f052521 SHA1: bf131644edd22d7c5e97d8aca686e392547160ab SHA256: 0728c27511a589a960b023b966bdf9fc384d459f45d792eb032499fade891548 Description: translations for language Sinhala; Sinhalese Description-md5: 13f18bb3984eb7f7490a7404c7e1fc27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sk (<< 1:14.04+20140410), language-pack-gnome-sk-base (<< 1:14.04+20140410), language-pack-kde-sk (<< 1:14.04+20140410), language-pack-kde-sk-base (<< 1:14.04+20140410), language-pack-sk (<< 1:14.04+20140410), language-pack-sk-base Depends: language-pack-sk-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sk/language-pack-sk_14.04+20140410_all.deb Size: 1996 MD5sum: c326cac64dd1e1cf932a9031c66a142b SHA1: 6eb1a9eaf0f0fdefe77e398d2422783d14a7435b SHA256: ebdc278fbdb5f24587e689a23eab3f034b733d0f6c1facaa94c476c87a477658 Description: translation updates for language Slovak Description-md5: a1e721be17e337b689ba82909703eb86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sk-base Priority: optional Section: translations Installed-Size: 3318 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sk (<< 1:14.04+20140410), language-pack-gnome-sk-base (<< 1:14.04+20140410), language-pack-kde-sk (<< 1:14.04+20140410), language-pack-kde-sk-base (<< 1:14.04+20140410), language-pack-sk (<< 1:14.04+20140410), language-pack-sk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sk Conflicts: language-pack-sk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sk-base/language-pack-sk-base_14.04+20140410_all.deb Size: 1014788 MD5sum: 2fff2075ed2b6ab6e18e8797d25e411b SHA1: d34b419b547ab38e326e17211f982dba7cd4ab08 SHA256: 40afd624e2b840e67a7109f920ad53f8ee07dabf1f3c088d697b933a5167e004 Description: translations for language Slovak Description-md5: fa9be67348c603c233261a1d699ee4ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sl (<< 1:14.04+20140410), language-pack-gnome-sl-base (<< 1:14.04+20140410), language-pack-kde-sl (<< 1:14.04+20140410), language-pack-kde-sl-base (<< 1:14.04+20140410), language-pack-sl (<< 1:14.04+20140410), language-pack-sl-base Depends: language-pack-sl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sl/language-pack-sl_14.04+20140410_all.deb Size: 1968 MD5sum: d2eb0d2115509713ac27056346637c0b SHA1: 89950fd22229867df39ce42ee0f80a0c7b9b73a4 SHA256: 4f438cfdb3eca465afd90b7428fc896debb90d7d5db4681d57b4c2b3bbc9bd9f Description: translation updates for language Slovenian Description-md5: b1747d91b5340c785a6855fc4dea8bdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sl-base Priority: optional Section: translations Installed-Size: 4682 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sl (<< 1:14.04+20140410), language-pack-gnome-sl-base (<< 1:14.04+20140410), language-pack-kde-sl (<< 1:14.04+20140410), language-pack-kde-sl-base (<< 1:14.04+20140410), language-pack-sl (<< 1:14.04+20140410), language-pack-sl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sl Conflicts: language-pack-sl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sl-base/language-pack-sl-base_14.04+20140410_all.deb Size: 1485174 MD5sum: cb73315d9abcb0c45b4e1f1708303799 SHA1: c4cbf95d65252d582dbf67212b8410c42e8a28d0 SHA256: c590b5c6aa5623e9058ccbc3b6799674a7c565761e85014fab79685203a92be3 Description: translations for language Slovenian Description-md5: 542b7bd70d1fd323cda92a7875446e75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-so Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:13.04+20130418 Replaces: language-pack-gnome-so (<< 1:13.04+20130418), language-pack-gnome-so-base (<< 1:13.04+20130418), language-pack-kde-so (<< 1:13.04+20130418), language-pack-kde-so-base (<< 1:13.04+20130418), language-pack-so (<< 1:13.04+20130418), language-pack-so-base Depends: language-pack-so-base (>= 1:13.04+20130418) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-so/language-pack-so_13.04+20130418_all.deb Size: 1952 MD5sum: 65063fa70fc11f63ca9d335f80a0d3b0 SHA1: 835aa8250e14606f6e1d92da093d9db0b731d4ae SHA256: 99b465255d243ab083231e10e4162dc5d4e1501228fd69504a031a86f8531829 Description: translation updates for language Somali Description-md5: 78a07196f1dec552990304420b9a1458 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-so-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:13.04+20130418 Replaces: language-pack-gnome-so (<< 1:13.04+20130418), language-pack-gnome-so-base (<< 1:13.04+20130418), language-pack-kde-so (<< 1:13.04+20130418), language-pack-kde-so-base (<< 1:13.04+20130418), language-pack-so (<< 1:13.04+20130418), language-pack-so-base (<< 1:13.04+20130418) Depends: locales (>= 2.3.6), language-pack-so (>= 1:13.04+20130418) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-so (<< 1:13.04+20130418) Filename: pool/main/l/language-pack-so-base/language-pack-so-base_13.04+20130418_all.deb Size: 2324 MD5sum: b273547be828cdef151fd40ce0eb68c3 SHA1: a2e50164380c39387f7ebe41e1fc3d0ae2943031 SHA256: 594c9c5272c3e1a026a8f22cc9ebabe520bd2f39be1e157970ff01e72e7b85b0 Description: translations for language Somali Description-md5: 7f51e3ccb9dc32f5b36fbd61cfbde719 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sq Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sq (<< 1:14.04+20140410), language-pack-gnome-sq-base (<< 1:14.04+20140410), language-pack-kde-sq (<< 1:14.04+20140410), language-pack-kde-sq-base (<< 1:14.04+20140410), language-pack-sq (<< 1:14.04+20140410), language-pack-sq-base Depends: language-pack-sq-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sq/language-pack-sq_14.04+20140410_all.deb Size: 1988 MD5sum: eddf506bdb338cc6359c0f56cc821789 SHA1: 601eacf62839d055e7b780edab8287855a526b9b SHA256: b03d7e37c901dbea7ce956c924d3aaaf9ffa8ad596bf7e7f482d8a4fa576f0c8 Description: translation updates for language Albanian Description-md5: 65c046608d75d827e60d17bd98616840 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sq-base Priority: optional Section: translations Installed-Size: 2080 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sq (<< 1:14.04+20140410), language-pack-gnome-sq-base (<< 1:14.04+20140410), language-pack-kde-sq (<< 1:14.04+20140410), language-pack-kde-sq-base (<< 1:14.04+20140410), language-pack-sq (<< 1:14.04+20140410), language-pack-sq-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sq (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sq Conflicts: language-pack-sq (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sq-base/language-pack-sq-base_14.04+20140410_all.deb Size: 657142 MD5sum: 0a65ee7033e6f3e316f733fa72d18f99 SHA1: 11dd0aebdc7431e0961d5d1498d99fda0d5ef2f6 SHA256: fe5838541a7c24d7461b474be04445dc713505a97147ec89eeec2e77acbeadc4 Description: translations for language Albanian Description-md5: de1f3ebacd8d0aae60790904e97d7dc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sr (<< 1:14.04+20140410), language-pack-gnome-sr-base (<< 1:14.04+20140410), language-pack-kde-sr (<< 1:14.04+20140410), language-pack-kde-sr-base (<< 1:14.04+20140410), language-pack-sr (<< 1:14.04+20140410), language-pack-sr-base Depends: language-pack-sr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sr/language-pack-sr_14.04+20140410_all.deb Size: 1988 MD5sum: ce41f64a876105f7600d99be94ed8830 SHA1: 8ddaef2355392b7ee09506ef52e3d4169cb182df SHA256: 6011f59838c54494c7a604ec5594015f831de5e5a65ff6bd4f5e90ffde309063 Description: translation updates for language Serbian Description-md5: b8fd6921a9a342c76ce0490ba7305e76 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sr-base Priority: optional Section: translations Installed-Size: 5562 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sr (<< 1:14.04+20140410), language-pack-gnome-sr-base (<< 1:14.04+20140410), language-pack-kde-sr (<< 1:14.04+20140410), language-pack-kde-sr-base (<< 1:14.04+20140410), language-pack-sr (<< 1:14.04+20140410), language-pack-sr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sr Conflicts: language-pack-sr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sr-base/language-pack-sr-base_14.04+20140410_all.deb Size: 1409008 MD5sum: 2b83812ac1f633eb26119fdeca3016cc SHA1: a8b33be164a58ab5203fa8a9df1a252e0757c14e SHA256: 652af69076ddd60fbb506d1db2783b3ffb68e71ceca7c26a5cf82913496cb223 Description: translations for language Serbian Description-md5: 0d70e941c5569ccc3a517fcd3ec3a8f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ss Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-ss (<< 1:12.04+20120417), language-pack-gnome-ss-base (<< 1:12.04+20120417), language-pack-kde-ss (<< 1:12.04+20120417), language-pack-kde-ss-base (<< 1:12.04+20120417), language-pack-ss (<< 1:12.04+20120417), language-pack-ss-base Depends: language-pack-ss-base (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ss/language-pack-ss_12.04+20120417_all.deb Size: 1990 MD5sum: 6f4bb623b4711f0b65049647f31c00e7 SHA1: 49f36c5f852601a90f957e13fa2b243b840a6474 SHA256: 0afb8e2b73a8602631103a3666d8a3326f3ce796bcbae9830dbffbbaa3a7c3a4 Description: translation updates for language Swati Description-md5: 07304703e6d4890e533a4eaaec5eb67b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ss-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:12.04+20120417 Replaces: language-pack-gnome-ss (<< 1:12.04+20120417), language-pack-gnome-ss-base (<< 1:12.04+20120417), language-pack-kde-ss (<< 1:12.04+20120417), language-pack-kde-ss-base (<< 1:12.04+20120417), language-pack-ss (<< 1:12.04+20120417), language-pack-ss-base (<< 1:12.04+20120417) Depends: locales (>= 2.3.6), language-pack-ss (>= 1:12.04+20120417) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ss (<< 1:12.04+20120417) Filename: pool/main/l/language-pack-ss-base/language-pack-ss-base_12.04+20120417_all.deb Size: 2294 MD5sum: 4217591fd2866bfccdf6a7263d5294d9 SHA1: 097ad6f9c25ecf97a2dea8732da9b4851a4d071d SHA256: 99e7b97dc46456c19d93d46cbf664bad0bce4b7cb44f8a25c7d5b632a62c8a35 Description: translations for language Swati Description-md5: 75396859577a77b8099c47bc36b7e917 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-st Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-st (<< 1:14.04+20140410), language-pack-gnome-st-base (<< 1:14.04+20140410), language-pack-kde-st (<< 1:14.04+20140410), language-pack-kde-st-base (<< 1:14.04+20140410), language-pack-st (<< 1:14.04+20140410), language-pack-st-base Depends: language-pack-st-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-st/language-pack-st_14.04+20140410_all.deb Size: 1978 MD5sum: 637e3ef1ff3588349ebd98ceda40c934 SHA1: 975a927d7967196557f413c2d85754154b1a36b8 SHA256: 80c6fc318ea8817187d0ac32362b59b7f3a7bf03550a9b9d58198482f5e333ea Description: translation updates for language Sotho, Southern Description-md5: 432170d54acbd15deed207506d9056fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-st-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-st (<< 1:14.04+20140410), language-pack-gnome-st-base (<< 1:14.04+20140410), language-pack-kde-st (<< 1:14.04+20140410), language-pack-kde-st-base (<< 1:14.04+20140410), language-pack-st (<< 1:14.04+20140410), language-pack-st-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-st (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-st (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-st-base/language-pack-st-base_14.04+20140410_all.deb Size: 2316 MD5sum: eb619630d253d27d4e45b7ee45dc2e93 SHA1: bc374f2d3cf0c023a9ec9d107b2bf1a197c27d36 SHA256: b33e8dfaf80ea250a3b2a84cd74005b2757c78d68cf3d745f94817e6dad3faf5 Description: translations for language Sotho, Southern Description-md5: fcd076252ae590d0ce48603e5f63112c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sv Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sv (<< 1:14.04+20140410), language-pack-gnome-sv-base (<< 1:14.04+20140410), language-pack-kde-sv (<< 1:14.04+20140410), language-pack-kde-sv-base (<< 1:14.04+20140410), language-pack-sv (<< 1:14.04+20140410), language-pack-sv-base Depends: language-pack-sv-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sv/language-pack-sv_14.04+20140410_all.deb Size: 1966 MD5sum: d8ae4250ecd25da9ab58ad50b6ecd699 SHA1: 98c0f6d69ea9f5a63debee320ff3e8646c4cd483 SHA256: daff510873263451f1d7f3a43051c0b6430d1ee9891bb4a248d31c898ccbbe9d Description: translation updates for language Swedish Description-md5: 4dbf209ddea3cc582301e63976d4b356 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-sv-base Priority: optional Section: translations Installed-Size: 7227 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sv (<< 1:14.04+20140410), language-pack-gnome-sv-base (<< 1:14.04+20140410), language-pack-kde-sv (<< 1:14.04+20140410), language-pack-kde-sv-base (<< 1:14.04+20140410), language-pack-sv (<< 1:14.04+20140410), language-pack-sv-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sv (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sv Conflicts: language-pack-sv (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sv-base/language-pack-sv-base_14.04+20140410_all.deb Size: 2201968 MD5sum: c37b96b35351b9c9a4e38c1f55e72028 SHA1: 47e9bb7f4f47e44e87786ae2b72c6f41ca81dd69 SHA256: 34eb3da11e7ad483eb0c42b145e6e8d8fccf60814cf9a62254d62c2880f2deb2 Description: translations for language Swedish Description-md5: 31338056c9d389070cb14776e4f489dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, kubuntu-active-live, kubuntu-active-live, edubuntu-usb-live Package: language-pack-sw Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sw (<< 1:14.04+20140410), language-pack-gnome-sw-base (<< 1:14.04+20140410), language-pack-kde-sw (<< 1:14.04+20140410), language-pack-kde-sw-base (<< 1:14.04+20140410), language-pack-sw (<< 1:14.04+20140410), language-pack-sw-base Depends: language-pack-sw-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-sw/language-pack-sw_14.04+20140410_all.deb Size: 1968 MD5sum: 856a8cff33bb9d2679f48c411570bb03 SHA1: 00b0f88d58c1a5867f70dd3c6c57132af63f2ab0 SHA256: e83d9b18b53b2ba348325b8848b953d12ecd5a3730eeb5147ad814d6810f1834 Description: translation updates for language Swahili Description-md5: 2c5465b9342aab609549057d9c1b96eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-sw-base Priority: optional Section: translations Installed-Size: 64 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-sw (<< 1:14.04+20140410), language-pack-gnome-sw-base (<< 1:14.04+20140410), language-pack-kde-sw (<< 1:14.04+20140410), language-pack-kde-sw-base (<< 1:14.04+20140410), language-pack-sw (<< 1:14.04+20140410), language-pack-sw-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-sw (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-sw Conflicts: language-pack-sw (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-sw-base/language-pack-sw-base_14.04+20140410_all.deb Size: 7170 MD5sum: ab786a49e99478b75562bd9d718b661f SHA1: fdf8a159e6c7b18dd408570d1a46e7850d1c015c SHA256: 297f799f89fa4663dbe62dce477bea08330008f473b1896db0706546cc5bbab7 Description: translations for language Swahili Description-md5: bbe452ddd856c9f34b1d8c2e96f0ab4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ta Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ta (<< 1:14.04+20140410), language-pack-gnome-ta-base (<< 1:14.04+20140410), language-pack-kde-ta (<< 1:14.04+20140410), language-pack-kde-ta-base (<< 1:14.04+20140410), language-pack-ta (<< 1:14.04+20140410), language-pack-ta-base Depends: language-pack-ta-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ta/language-pack-ta_14.04+20140410_all.deb Size: 1990 MD5sum: b32fc6f5c339cf6e0047e345fca88294 SHA1: fe36223f55acf22b3ce32ddcc1cddc118ccabb0a SHA256: ed3105f031b3559a3f7dcb0d486c00a6695cbeef126f73085672d86b181d868a Description: translation updates for language Tamil Description-md5: 8806053a2a2cb360f22ec971454fc79c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ta-base Priority: optional Section: translations Installed-Size: 2394 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ta (<< 1:14.04+20140410), language-pack-gnome-ta-base (<< 1:14.04+20140410), language-pack-kde-ta (<< 1:14.04+20140410), language-pack-kde-ta-base (<< 1:14.04+20140410), language-pack-ta (<< 1:14.04+20140410), language-pack-ta-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ta (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-ta Conflicts: language-pack-ta (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ta-base/language-pack-ta-base_14.04+20140410_all.deb Size: 437584 MD5sum: 795e8270e06d566568023cd3d3c0f526 SHA1: e9cd0d21c6c94c5cd9b0923da1bc25c37d9951db SHA256: 9de7b37d1da819709aa1cdfcc54561a1013052071b6eb659729640ef1a45e993 Description: translations for language Tamil Description-md5: e40fddde8d8e33cc3807e4ff0b719e2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-te Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-te (<< 1:14.04+20140410), language-pack-gnome-te-base (<< 1:14.04+20140410), language-pack-kde-te (<< 1:14.04+20140410), language-pack-kde-te-base (<< 1:14.04+20140410), language-pack-te (<< 1:14.04+20140410), language-pack-te-base Depends: language-pack-te-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-te/language-pack-te_14.04+20140410_all.deb Size: 1992 MD5sum: b2bdaab6d0cfb0f0cc04a4fa03b26d8e SHA1: 9e75e3ce1a88759d8978a7c0a9e432cbd8461d2d SHA256: dccf05cf8f3c45fee427535c507b0349f2529b6b12ba51eb382e3c2a3c8ed43b Description: translation updates for language Telugu Description-md5: 1bd9ffcc21f1b8219e3889e3d08b45fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-te-base Priority: optional Section: translations Installed-Size: 2097 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-te (<< 1:14.04+20140410), language-pack-gnome-te-base (<< 1:14.04+20140410), language-pack-kde-te (<< 1:14.04+20140410), language-pack-kde-te-base (<< 1:14.04+20140410), language-pack-te (<< 1:14.04+20140410), language-pack-te-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-te (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-te Conflicts: language-pack-te (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-te-base/language-pack-te-base_14.04+20140410_all.deb Size: 404392 MD5sum: 918b8b2f28fc14e1c53401c4d16ff9a5 SHA1: c662e014a382ae0dd8fc8dd1e271f406f8ce0f1e SHA256: f232c71d2e5e770deaa727451ab3cb45404b9f3c5b460ae5ef7896e70489efa5 Description: translations for language Telugu Description-md5: e39a6b0a53bcbbd383ebbc7c100bf10e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tg Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tg (<< 1:14.04+20140410), language-pack-gnome-tg-base (<< 1:14.04+20140410), language-pack-kde-tg (<< 1:14.04+20140410), language-pack-kde-tg-base (<< 1:14.04+20140410), language-pack-tg (<< 1:14.04+20140410), language-pack-tg-base Depends: language-pack-tg-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-tg/language-pack-tg_14.04+20140410_all.deb Size: 1968 MD5sum: 3c7d6b59f6a4a9c84e0b4584635c698f SHA1: a86f96afd800595c871d0b56f19a196f2ae50f0a SHA256: 8174b639121f787c24f748a14359bc071a1542dd63d357952157d293e90d28cf Description: translation updates for language Tajik Description-md5: 743531e7d990fe4031553acad6bc4446 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tg-base Priority: optional Section: translations Installed-Size: 418 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tg (<< 1:14.04+20140410), language-pack-gnome-tg-base (<< 1:14.04+20140410), language-pack-kde-tg (<< 1:14.04+20140410), language-pack-kde-tg-base (<< 1:14.04+20140410), language-pack-tg (<< 1:14.04+20140410), language-pack-tg-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-tg (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-tg (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-tg-base/language-pack-tg-base_14.04+20140410_all.deb Size: 110670 MD5sum: 0b9057a5641a93f0b38fba57b851334d SHA1: 81217ddb96aa726d09681125bb996b667ece7831 SHA256: 902a13a6da376a624cf6c9618ac40975f51465d0710327045817aae52d81bbb6 Description: translations for language Tajik Description-md5: fec26409c467da2ecab75d602330d746 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-th Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-th (<< 1:14.04+20140410), language-pack-gnome-th-base (<< 1:14.04+20140410), language-pack-kde-th (<< 1:14.04+20140410), language-pack-kde-th-base (<< 1:14.04+20140410), language-pack-th (<< 1:14.04+20140410), language-pack-th-base Depends: language-pack-th-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-th/language-pack-th_14.04+20140410_all.deb Size: 1982 MD5sum: bddf39c5903833e0bdd3f4621c6eca87 SHA1: bcad5c761cc0b2a2d1559013149f91ec1ea01526 SHA256: 6fdd0c1759d7cc7f7f7ea81b66624abd7014683649c9da44df1387316dc261d2 Description: translation updates for language Thai Description-md5: eec8937ad930f325d8698415c162aa1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-th-base Priority: optional Section: translations Installed-Size: 766 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-th (<< 1:14.04+20140410), language-pack-gnome-th-base (<< 1:14.04+20140410), language-pack-kde-th (<< 1:14.04+20140410), language-pack-kde-th-base (<< 1:14.04+20140410), language-pack-th (<< 1:14.04+20140410), language-pack-th-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-th (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-th Conflicts: language-pack-th (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-th-base/language-pack-th-base_14.04+20140410_all.deb Size: 155106 MD5sum: 1cef9e42df0976ffee9d0fb5b888e5e0 SHA1: 8e5596cde1947b99926d915df5f89671ef81b115 SHA256: 97829c949c2cd622e373d255fccdc7326437f9920846391a567810feef7bd21e Description: translations for language Thai Description-md5: a49c51a351a1ae67524621ae73d455c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ti Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ti (<< 1:14.04+20140410), language-pack-gnome-ti-base (<< 1:14.04+20140410), language-pack-kde-ti (<< 1:14.04+20140410), language-pack-kde-ti-base (<< 1:14.04+20140410), language-pack-ti (<< 1:14.04+20140410), language-pack-ti-base Depends: language-pack-ti-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ti/language-pack-ti_14.04+20140410_all.deb Size: 1970 MD5sum: 6aa72a9fb30097902d2c490fb699eeb0 SHA1: bc3903dc5490556c7068e138461061bcdac779cd SHA256: a1a1aa78487e3ce0f055dd282e94a441f531b4715314c527089f39edcd836d7c Description: translation updates for language Tigrinya Description-md5: c9fa1d03ce22382a23631a020cb7b322 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ti-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ti (<< 1:14.04+20140410), language-pack-gnome-ti-base (<< 1:14.04+20140410), language-pack-kde-ti (<< 1:14.04+20140410), language-pack-kde-ti-base (<< 1:14.04+20140410), language-pack-ti (<< 1:14.04+20140410), language-pack-ti-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ti (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ti (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ti-base/language-pack-ti-base_14.04+20140410_all.deb Size: 2276 MD5sum: 82c55a3511c372a0717f00ffd83436a3 SHA1: d4b4eb056ebacb1c9e22f1762ec4f5b19c3a58dd SHA256: 992bd148c5ed2345c0852111de573fcf267575dd6541aca44e95295c2b5952f0 Description: translations for language Tigrinya Description-md5: f8a404460737ece587dc48dbdfff872e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tk (<< 1:14.04+20140410), language-pack-gnome-tk-base (<< 1:14.04+20140410), language-pack-kde-tk (<< 1:14.04+20140410), language-pack-kde-tk-base (<< 1:14.04+20140410), language-pack-tk (<< 1:14.04+20140410), language-pack-tk-base Depends: language-pack-tk-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-tk/language-pack-tk_14.04+20140410_all.deb Size: 1996 MD5sum: 84e3c087948cec433d2bc151d6348d46 SHA1: 94f6e4783a9a56cca1a74f37c5cd1e917973476a SHA256: c3b2a485734bf22d7d699adeb227b8016166e81f0e5f6e99dce429a86a5a84f9 Description: translation updates for language Turkmen Description-md5: eb70be9380f5f52e1e9d5742c4448fa9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tk-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tk (<< 1:14.04+20140410), language-pack-gnome-tk-base (<< 1:14.04+20140410), language-pack-kde-tk (<< 1:14.04+20140410), language-pack-kde-tk-base (<< 1:14.04+20140410), language-pack-tk (<< 1:14.04+20140410), language-pack-tk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-tk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-tk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-tk-base/language-pack-tk-base_14.04+20140410_all.deb Size: 2288 MD5sum: 03cc61c200d8145018d7b0a86adffd33 SHA1: 6ceaad22cfead08ad04e34d1cd24fd8808c769ba SHA256: 3a9655b260ef8e794357014eaef954bb079c80352322364b2ec66793c2185415 Description: translations for language Turkmen Description-md5: 7761c85249b1c98808ecedb5a9fb7e13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tl Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tl (<< 1:14.04+20140410), language-pack-gnome-tl-base (<< 1:14.04+20140410), language-pack-kde-tl (<< 1:14.04+20140410), language-pack-kde-tl-base (<< 1:14.04+20140410), language-pack-tl (<< 1:14.04+20140410), language-pack-tl-base Depends: language-pack-tl-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-tl/language-pack-tl_14.04+20140410_all.deb Size: 1988 MD5sum: 14ba0eec7db05710be3ede6dd52ded29 SHA1: d8b2ba6abafe4ad3e50c4c0f4538135a7e1ae03e SHA256: 9005f5dd5110b1aa592165bb6bc009b6c4461e7ef17a5500e3a65fa34019098a Description: translation updates for language Tagalog Description-md5: 9dd6b9cfcd1ac0b0f33038565350a683 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tl-base Priority: optional Section: translations Installed-Size: 306 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tl (<< 1:14.04+20140410), language-pack-gnome-tl-base (<< 1:14.04+20140410), language-pack-kde-tl (<< 1:14.04+20140410), language-pack-kde-tl-base (<< 1:14.04+20140410), language-pack-tl (<< 1:14.04+20140410), language-pack-tl-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-tl (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-tl (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-tl-base/language-pack-tl-base_14.04+20140410_all.deb Size: 78804 MD5sum: 2b54491840253cfa1f7f5a94baf36582 SHA1: f8e00b31dac1e19b7b2f758e7783cbbaef4e48c5 SHA256: 613eedc68968fbe930eb6a8305cbc700b7404f882cad1ae51e245e2b0a2708db Description: translations for language Tagalog Description-md5: 7ed478d7c2bbcdf1b54562c6b971d6bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tr Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tr (<< 1:14.04+20140410), language-pack-gnome-tr-base (<< 1:14.04+20140410), language-pack-kde-tr (<< 1:14.04+20140410), language-pack-kde-tr-base (<< 1:14.04+20140410), language-pack-tr (<< 1:14.04+20140410), language-pack-tr-base Depends: language-pack-tr-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-tr/language-pack-tr_14.04+20140410_all.deb Size: 1980 MD5sum: 806c370ae1126116414d63680e6b9117 SHA1: 72cd82bccd82847c9f2a4a1273a7207ecb26a02d SHA256: 48efd16d98e8e14ae32b7dd1826f01414c88aa196c4db88a6ea70313d6add416 Description: translation updates for language Turkish Description-md5: dfefbe4b5c37c26ad9200ad67f24f22f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tr-base Priority: optional Section: translations Installed-Size: 6900 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tr (<< 1:14.04+20140410), language-pack-gnome-tr-base (<< 1:14.04+20140410), language-pack-kde-tr (<< 1:14.04+20140410), language-pack-kde-tr-base (<< 1:14.04+20140410), language-pack-tr (<< 1:14.04+20140410), language-pack-tr-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-tr (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-tr Conflicts: language-pack-tr (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-tr-base/language-pack-tr-base_14.04+20140410_all.deb Size: 2179042 MD5sum: 414c5d62fce9f11eef5d646d48653780 SHA1: 2548cc825d17be9917e0297e18fb7e433f5148a4 SHA256: 5ba15f9e6e748dee991b5687b3046e7f2b7b6e63b38dafc87e8087ecf9e31db1 Description: translations for language Turkish Description-md5: 52118f29dc98ce6760c6c37492106298 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ts Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ts (<< 1:14.04+20140410), language-pack-gnome-ts-base (<< 1:14.04+20140410), language-pack-kde-ts (<< 1:14.04+20140410), language-pack-kde-ts-base (<< 1:14.04+20140410), language-pack-ts (<< 1:14.04+20140410), language-pack-ts-base Depends: language-pack-ts-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ts/language-pack-ts_14.04+20140410_all.deb Size: 1954 MD5sum: ac4f6d792f80ef86e9cbdddc97d0240e SHA1: d3909a3f8dc2fc091550afdf847b9d37954cc1e6 SHA256: baeb5d7bdf1a66a7e84e31e0b81206cc74e83adab96f6535cdec116069b00e49 Description: translation updates for language Tsonga Description-md5: 80af7e3af261456c616a3ed251a6822a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ts-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ts (<< 1:14.04+20140410), language-pack-gnome-ts-base (<< 1:14.04+20140410), language-pack-kde-ts (<< 1:14.04+20140410), language-pack-kde-ts-base (<< 1:14.04+20140410), language-pack-ts (<< 1:14.04+20140410), language-pack-ts-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ts (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ts (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ts-base/language-pack-ts-base_14.04+20140410_all.deb Size: 2286 MD5sum: 8da2691abc292d73cd5a890d7b835faf SHA1: 5cbc2fdb20dc03ef352c7a534e57715cccdc143a SHA256: eee5b92db45422c2a7eed5aa0a0c3b37cedbfa9619ca9b2a8811553dc21b5c64 Description: translations for language Tsonga Description-md5: 759bba521e2db9cad346887c277426e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tt Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tt (<< 1:14.04+20140410), language-pack-gnome-tt-base (<< 1:14.04+20140410), language-pack-kde-tt (<< 1:14.04+20140410), language-pack-kde-tt-base (<< 1:14.04+20140410), language-pack-tt (<< 1:14.04+20140410), language-pack-tt-base Depends: language-pack-tt-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-tt/language-pack-tt_14.04+20140410_all.deb Size: 1962 MD5sum: a48afc0a590916d6361470f5649abdec SHA1: f58c00be706c8e8f9415334e513a4c8863adc5ae SHA256: 4943c8c4fc8e0be32795061af7a0b28d746056879a90baddf8302180755a752f Description: translation updates for language Tatar Description-md5: 001ed68d9152610ee94da8d4a32b18b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-tt-base Priority: optional Section: translations Installed-Size: 63 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-tt (<< 1:14.04+20140410), language-pack-gnome-tt-base (<< 1:14.04+20140410), language-pack-kde-tt (<< 1:14.04+20140410), language-pack-kde-tt-base (<< 1:14.04+20140410), language-pack-tt (<< 1:14.04+20140410), language-pack-tt-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-tt (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-tt (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-tt-base/language-pack-tt-base_14.04+20140410_all.deb Size: 6576 MD5sum: d5352f2b27b3219918b4696e35dabe66 SHA1: 74e2be14c23c0541166aac33fd4b471e34da5dae SHA256: 46d753a31691e2fb0125a6c7f2babfadddd572b62f3741ab32bf8ebcb94902f4 Description: translations for language Tatar Description-md5: 17f1d1de78e155f7dcc311e50f866488 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ug Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ug (<< 1:14.04+20140410), language-pack-gnome-ug-base (<< 1:14.04+20140410), language-pack-kde-ug (<< 1:14.04+20140410), language-pack-kde-ug-base (<< 1:14.04+20140410), language-pack-ug (<< 1:14.04+20140410), language-pack-ug-base Depends: language-pack-ug-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ug/language-pack-ug_14.04+20140410_all.deb Size: 1960 MD5sum: dc7b7cdf0a703b39cd02c6879a34f3f6 SHA1: b9cd7ab8c6fb835a2cc67a9622e1290e7635d87c SHA256: a065322c3565ce5a8f69c3d1303e06a97c88fb130a9bfce651923ce9202b7676 Description: translation updates for language Uighur; Uyghur Description-md5: 98fee795d8737d35feb2278d1100a452 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ug-base Priority: optional Section: translations Installed-Size: 1299 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ug (<< 1:14.04+20140410), language-pack-gnome-ug-base (<< 1:14.04+20140410), language-pack-kde-ug (<< 1:14.04+20140410), language-pack-kde-ug-base (<< 1:14.04+20140410), language-pack-ug (<< 1:14.04+20140410), language-pack-ug-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ug (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ug (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ug-base/language-pack-ug-base_14.04+20140410_all.deb Size: 343722 MD5sum: ed0efb75d4eec4907e55da2b6068c24d SHA1: 1d85a3f11d7fba7845efe3131505a9c5b4a2bc18 SHA256: 80b2c411e4e618b54a5525979545674bd081219a1a1e8578f6100bdfbddaa7e0 Description: translations for language Uighur; Uyghur Description-md5: 7f1890dbe624bdc07b25a22382fc0fe0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-uk Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uk (<< 1:14.04+20140410), language-pack-gnome-uk-base (<< 1:14.04+20140410), language-pack-kde-uk (<< 1:14.04+20140410), language-pack-kde-uk-base (<< 1:14.04+20140410), language-pack-uk (<< 1:14.04+20140410), language-pack-uk-base Depends: language-pack-uk-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-uk/language-pack-uk_14.04+20140410_all.deb Size: 1976 MD5sum: b598cde2fb67a38234d66947c6f53b4f SHA1: 4ebab0a2dd5c56d52ccbaa23964f00ef01c0a912 SHA256: 85c710073c82fcf2d745f62899efa7c65b0af39eb7f98ac79cc0ea9b34ed290b Description: translation updates for language Ukrainian Description-md5: b4984ef0be7336d993df2f61982b4595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-uk-base Priority: optional Section: translations Installed-Size: 11880 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uk (<< 1:14.04+20140410), language-pack-gnome-uk-base (<< 1:14.04+20140410), language-pack-kde-uk (<< 1:14.04+20140410), language-pack-kde-uk-base (<< 1:14.04+20140410), language-pack-uk (<< 1:14.04+20140410), language-pack-uk-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-uk (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-uk Conflicts: language-pack-uk (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-uk-base/language-pack-uk-base_14.04+20140410_all.deb Size: 2902656 MD5sum: bca231c7747ccf76a4ce7d497e935068 SHA1: 1c619c927143c58c50b5da8d66591e19bd2278f6 SHA256: 4bbde4f25f78a2ffc672a1ce91329c87ae377291ca7f78dc08131779669b210a Description: translations for language Ukrainian Description-md5: 2afe15affd75b38e2531a951f33d7cb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ur Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ur (<< 1:14.04+20140410), language-pack-gnome-ur-base (<< 1:14.04+20140410), language-pack-kde-ur (<< 1:14.04+20140410), language-pack-kde-ur-base (<< 1:14.04+20140410), language-pack-ur (<< 1:14.04+20140410), language-pack-ur-base Depends: language-pack-ur-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ur/language-pack-ur_14.04+20140410_all.deb Size: 1974 MD5sum: 0780fe8126450fef761c663769a9b88e SHA1: 4f4f185e9fdbe8675d54eae8a07fe7064169a1fc SHA256: 56d2ab8c401b896d94f964aee048b1170843bd91d007093202f45f46f7e034e9 Description: translation updates for language Urdu Description-md5: 469e93f68fdb2f05c5bf98f21b4d2348 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ur-base Priority: optional Section: translations Installed-Size: 313 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ur (<< 1:14.04+20140410), language-pack-gnome-ur-base (<< 1:14.04+20140410), language-pack-kde-ur (<< 1:14.04+20140410), language-pack-kde-ur-base (<< 1:14.04+20140410), language-pack-ur (<< 1:14.04+20140410), language-pack-ur-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ur (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ur (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ur-base/language-pack-ur-base_14.04+20140410_all.deb Size: 79426 MD5sum: aa5d6c400ad62c8011d90cd17eca7e78 SHA1: 213ec6e04fd560eca72e82b934f32a81248da905 SHA256: 8a3e9f9e98e636f1adf7d59d3e877f4cf56b7efc291b7f312e12d577b47d2564 Description: translations for language Urdu Description-md5: 312cf33c8a0e5344fed86ee352ac217d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-uz Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uz (<< 1:14.04+20140410), language-pack-gnome-uz-base (<< 1:14.04+20140410), language-pack-kde-uz (<< 1:14.04+20140410), language-pack-kde-uz-base (<< 1:14.04+20140410), language-pack-uz (<< 1:14.04+20140410), language-pack-uz-base Depends: language-pack-uz-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-uz/language-pack-uz_14.04+20140410_all.deb Size: 1976 MD5sum: 54c071646f99abe2ea9aa009a892bf95 SHA1: 775993ff4f322d1a84dc68bb019511c16a15a37a SHA256: 9ad2565b588307214eff868716a632415dd4905038d9bbf2cd2719e214dee93d Description: translation updates for language Uzbek Description-md5: 78c0868100eb08408b6125a8ece4d131 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-uz-base Priority: optional Section: translations Installed-Size: 161 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-uz (<< 1:14.04+20140410), language-pack-gnome-uz-base (<< 1:14.04+20140410), language-pack-kde-uz (<< 1:14.04+20140410), language-pack-kde-uz-base (<< 1:14.04+20140410), language-pack-uz (<< 1:14.04+20140410), language-pack-uz-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-uz (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-uz (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-uz-base/language-pack-uz-base_14.04+20140410_all.deb Size: 33448 MD5sum: 8f36890146eb17cee7b1d20b43d25c06 SHA1: d41545075cf9f2669e6f5f03906bdc5662aa1b24 SHA256: 682d115feddc37b6a28e4465f85f9cef76e262b21f757b555aeb6c3050ba7a38 Description: translations for language Uzbek Description-md5: f899616f0f8a77ee9a7c6c4b39421ea5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ve Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ve (<< 1:14.04+20140410), language-pack-gnome-ve-base (<< 1:14.04+20140410), language-pack-kde-ve (<< 1:14.04+20140410), language-pack-kde-ve-base (<< 1:14.04+20140410), language-pack-ve (<< 1:14.04+20140410), language-pack-ve-base Depends: language-pack-ve-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-ve/language-pack-ve_14.04+20140410_all.deb Size: 1972 MD5sum: e64a40a4e3d5c50d62387afbf077a4b9 SHA1: e23ab0b20b0db754cf05f3a2c7f95f101ec1a038 SHA256: b9723f8181dff24ad2f1b2d9c833acda0927fa3215ff423a128ebc6a1da65024 Description: translation updates for language Venda Description-md5: 3f9c63888ed4622136f233bd0ebbda4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-ve-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-ve (<< 1:14.04+20140410), language-pack-gnome-ve-base (<< 1:14.04+20140410), language-pack-kde-ve (<< 1:14.04+20140410), language-pack-kde-ve-base (<< 1:14.04+20140410), language-pack-ve (<< 1:14.04+20140410), language-pack-ve-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-ve (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-ve (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-ve-base/language-pack-ve-base_14.04+20140410_all.deb Size: 2298 MD5sum: b83da3df82f5cd010c1a25f567b8c64b SHA1: 312a7eb460dc8f0840a2e47deeea1f473996f97e SHA256: f04cdf29c80f83d8da5590f1087912411035d015028dac19b0ca498059283151 Description: translations for language Venda Description-md5: e2215449dcc3f7bbb8d381073676f561 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-vi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-vi (<< 1:14.04+20140410), language-pack-gnome-vi-base (<< 1:14.04+20140410), language-pack-kde-vi (<< 1:14.04+20140410), language-pack-kde-vi-base (<< 1:14.04+20140410), language-pack-vi (<< 1:14.04+20140410), language-pack-vi-base Depends: language-pack-vi-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-vi/language-pack-vi_14.04+20140410_all.deb Size: 1964 MD5sum: 34782a51c4b407f116c0ffd6ca01d179 SHA1: b86d105f754191893e62d73a30f89a810df56ef6 SHA256: db81eaa76fa3759ecb8887f8a01c7784cdda5f3fdfe9f446cd5ce487d3928224 Description: translation updates for language Vietnamese Description-md5: c05ab7d70ecda888c4f951b61413e4c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-vi-base Priority: optional Section: translations Installed-Size: 6989 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-vi (<< 1:14.04+20140410), language-pack-gnome-vi-base (<< 1:14.04+20140410), language-pack-kde-vi (<< 1:14.04+20140410), language-pack-kde-vi-base (<< 1:14.04+20140410), language-pack-vi (<< 1:14.04+20140410), language-pack-vi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-vi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-vi Conflicts: language-pack-vi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-vi-base/language-pack-vi-base_14.04+20140410_all.deb Size: 1994400 MD5sum: 23f739b3f27607ebd5e6a004d47da0a2 SHA1: acc59fb8ede438b9a10f795b128992f5ca347179 SHA256: dcfca8b438593243fad162335a944af92e55c652850248a83743f70069f32290 Description: translations for language Vietnamese Description-md5: fc29673a60b8307b9261c9782712193e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wa Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wa (<< 1:14.04+20140410), language-pack-gnome-wa-base (<< 1:14.04+20140410), language-pack-kde-wa (<< 1:14.04+20140410), language-pack-kde-wa-base (<< 1:14.04+20140410), language-pack-wa (<< 1:14.04+20140410), language-pack-wa-base Depends: language-pack-wa-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-wa/language-pack-wa_14.04+20140410_all.deb Size: 1972 MD5sum: 2876bbedf95ba98199a350a970954f2c SHA1: 607caf6b3a19076d75b157be811d30e24c10fe23 SHA256: 6fb23094e3f8a2b0172471014e0ef44a3a89fab6ddcc76282eccbef4f399dddd Description: translation updates for language Walloon Description-md5: 96b9ab96403db99e2299f7a7a9475924 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wa-base Priority: optional Section: translations Installed-Size: 74 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wa (<< 1:14.04+20140410), language-pack-gnome-wa-base (<< 1:14.04+20140410), language-pack-kde-wa (<< 1:14.04+20140410), language-pack-kde-wa-base (<< 1:14.04+20140410), language-pack-wa (<< 1:14.04+20140410), language-pack-wa-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-wa (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-wa (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-wa-base/language-pack-wa-base_14.04+20140410_all.deb Size: 10418 MD5sum: b35b91c0a120d15522e42f071d1aba4c SHA1: a21c147efc5b83ac0485a1e65254b6882bd7ee9c SHA256: c9c5ff278f60c2846e63d1a44e9d6f2ec4ffa1a29d23f5521ca4cba1a47c74e8 Description: translations for language Walloon Description-md5: 455e8c9e339419e03db066b3c895c30d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wae Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wae (<< 1:14.04+20140410), language-pack-gnome-wae-base (<< 1:14.04+20140410), language-pack-kde-wae (<< 1:14.04+20140410), language-pack-kde-wae-base (<< 1:14.04+20140410), language-pack-wae (<< 1:14.04+20140410), language-pack-wae-base Depends: language-pack-wae-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-wae/language-pack-wae_14.04+20140410_all.deb Size: 1998 MD5sum: e7457227dca31227e1ebc97e4e44e24a SHA1: 39782be5f89fe944a53883b19c79e50c1c0365a5 SHA256: 58162aa460e69441756f53f847256023afb22cd026161ce29b14bb304fc1479b Description: translation updates for language Walser Description-md5: 6d9c3fe8c9f0ddbc1d71cb0cc6aca979 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wae-base Priority: optional Section: translations Installed-Size: 57 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wae (<< 1:14.04+20140410), language-pack-gnome-wae-base (<< 1:14.04+20140410), language-pack-kde-wae (<< 1:14.04+20140410), language-pack-kde-wae-base (<< 1:14.04+20140410), language-pack-wae (<< 1:14.04+20140410), language-pack-wae-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-wae (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-wae (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-wae-base/language-pack-wae-base_14.04+20140410_all.deb Size: 3758 MD5sum: 8cccd456421a0f0c2799c9cee72d9372 SHA1: 6c24fe9a9cbef99ed09ef6a683613040bef1bbfc SHA256: cdc630e9588ab8bfde728b436683f82a0618ee76614dfa9c867b2f8f501ef22e Description: translations for language Walser Description-md5: 9dac9b3ac536a3b6ba62907b22cf7733 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wo (<< 1:14.04+20140410), language-pack-gnome-wo-base (<< 1:14.04+20140410), language-pack-kde-wo (<< 1:14.04+20140410), language-pack-kde-wo-base (<< 1:14.04+20140410), language-pack-wo (<< 1:14.04+20140410), language-pack-wo-base Depends: language-pack-wo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-wo/language-pack-wo_14.04+20140410_all.deb Size: 1988 MD5sum: ded5d404d3b9d1ba30c54d786df2cb38 SHA1: 1c6b61e4b84ab3419d68447325e050c545a3ca52 SHA256: 124dd47ddf242e126da0be55b88239e6f8f47c53738c8983f3e84a395d36a852 Description: translation updates for language Wolof Description-md5: 2d3865bfde51cf4c4c2f5344613388b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-wo-base Priority: optional Section: translations Installed-Size: 60 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-wo (<< 1:14.04+20140410), language-pack-gnome-wo-base (<< 1:14.04+20140410), language-pack-kde-wo (<< 1:14.04+20140410), language-pack-kde-wo-base (<< 1:14.04+20140410), language-pack-wo (<< 1:14.04+20140410), language-pack-wo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-wo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-wo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-wo-base/language-pack-wo-base_14.04+20140410_all.deb Size: 4858 MD5sum: 6b2e22c683ce1096999ce1c41a9c3b32 SHA1: 82df9ea460e45549d91419ea98a384ba82ce2a7d SHA256: 6902a17ad6be6525d9ff3b5df67d6e28eb3d9836282987724426461658d667df Description: translations for language Wolof Description-md5: 6516ee85aa5f5193e08081f09502fd21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-xh Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-xh (<< 1:14.04+20140410), language-pack-gnome-xh-base (<< 1:14.04+20140410), language-pack-kde-xh (<< 1:14.04+20140410), language-pack-kde-xh-base (<< 1:14.04+20140410), language-pack-xh (<< 1:14.04+20140410), language-pack-xh-base Depends: language-pack-xh-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-xh/language-pack-xh_14.04+20140410_all.deb Size: 1974 MD5sum: 51de2efebd22b3abe4a55277bf8a1448 SHA1: bc392b40e6370187c330ff83df79e82ce3368284 SHA256: b3d0a9d5e67af138c38644b530c2cb2c9bb4e05cd6cfe3f7e5be4cae2effa68a Description: translation updates for language Xhosa Description-md5: ed25f787ca09539bd5981188f693a27f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-xh-base Priority: optional Section: translations Installed-Size: 186 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-xh (<< 1:14.04+20140410), language-pack-gnome-xh-base (<< 1:14.04+20140410), language-pack-kde-xh (<< 1:14.04+20140410), language-pack-kde-xh-base (<< 1:14.04+20140410), language-pack-xh (<< 1:14.04+20140410), language-pack-xh-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-xh (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-xh Conflicts: language-pack-xh (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-xh-base/language-pack-xh-base_14.04+20140410_all.deb Size: 48830 MD5sum: 631cfd99722e0aeeff593cd99ca239b7 SHA1: f51dfd422172998cf33b9a04e60d0f3d5c42728b SHA256: eed16fb09384950f25262fd81b5e36ba86a48079e650664592cef9fed516684a Description: translations for language Xhosa Description-md5: 95413a55151aa4dad9558a2d4e9a79d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live, xubuntu-live Package: language-pack-yi Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yi (<< 1:14.04+20140410), language-pack-gnome-yi-base (<< 1:14.04+20140410), language-pack-kde-yi (<< 1:14.04+20140410), language-pack-kde-yi-base (<< 1:14.04+20140410), language-pack-yi (<< 1:14.04+20140410), language-pack-yi-base Depends: language-pack-yi-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-yi/language-pack-yi_14.04+20140410_all.deb Size: 1980 MD5sum: 76f7525086ae1a9ae6ba6091ee7e1aae SHA1: f732b82590195ec0757f8d37ea06bb4c5f15c732 SHA256: 93489a1caf7493e838ef5e4d10b5fe196892098c93fd63ba52cef2148e810f0f Description: translation updates for language Yiddish Description-md5: 6e11de4f5860eb14f76adcb86ad81922 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-yi-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yi (<< 1:14.04+20140410), language-pack-gnome-yi-base (<< 1:14.04+20140410), language-pack-kde-yi (<< 1:14.04+20140410), language-pack-kde-yi-base (<< 1:14.04+20140410), language-pack-yi (<< 1:14.04+20140410), language-pack-yi-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-yi (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-yi (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-yi-base/language-pack-yi-base_14.04+20140410_all.deb Size: 2310 MD5sum: e2f1107a06c317d39b477a24f49e66e3 SHA1: 98f7af95cdac27f0ae4ffe57b0b4b3ee92300f0b SHA256: 640a85dc50f9bd1f7264059521ac99ce466ad1f9f22d2b3b3e8348525b66c3ea Description: translations for language Yiddish Description-md5: 353f698af4862953549ed8d853bf55b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-yo Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yo (<< 1:14.04+20140410), language-pack-gnome-yo-base (<< 1:14.04+20140410), language-pack-kde-yo (<< 1:14.04+20140410), language-pack-kde-yo-base (<< 1:14.04+20140410), language-pack-yo (<< 1:14.04+20140410), language-pack-yo-base Depends: language-pack-yo-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-yo/language-pack-yo_14.04+20140410_all.deb Size: 1974 MD5sum: 9bad126c881eaca4aa6af1a9674c91c7 SHA1: 05c58ea460e11a68af9693820d41f0e3d34030fa SHA256: fc10fa550d07857922cdc9ab5801fcc86e7d13da9d9e8634106ff287cb31806a Description: translation updates for language Yoruba Description-md5: cebc4d1e87448efe2569027124c752cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-yo-base Priority: optional Section: translations Installed-Size: 46 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-yo (<< 1:14.04+20140410), language-pack-gnome-yo-base (<< 1:14.04+20140410), language-pack-kde-yo (<< 1:14.04+20140410), language-pack-kde-yo-base (<< 1:14.04+20140410), language-pack-yo (<< 1:14.04+20140410), language-pack-yo-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-yo (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-yo (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-yo-base/language-pack-yo-base_14.04+20140410_all.deb Size: 2280 MD5sum: 82340bedc75d36f941c1188f1522097d SHA1: fd4c5608fb56ffe0eb350c1b17a326995e5c959e SHA256: 664ef7ceda116f6e0932552f749daf7d6baa35d0ec39db37db4f2ed5d950e9aa Description: translations for language Yoruba Description-md5: d6c0a9797e84c463ea66f0e903b19f57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-zh-hans Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-hans (<< 1:14.04+20140410), language-pack-gnome-zh-hans-base (<< 1:14.04+20140410), language-pack-kde-zh-hans (<< 1:14.04+20140410), language-pack-kde-zh-hans-base (<< 1:14.04+20140410), language-pack-zh (<< 1:9.10), language-pack-zh-hans (<< 1:14.04+20140410), language-pack-zh-hans-base Depends: language-pack-zh-hans-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-zh (<< 1:9.10) Filename: pool/main/l/language-pack-zh-hans/language-pack-zh-hans_14.04+20140410_all.deb Size: 2024 MD5sum: e60930f17a1dee522662c449505afd10 SHA1: cb83ec54e3d88d559738087d8ad8ea978f7296ca SHA256: b293dfc4654fd1fc980aa917b2ca72265e6cdf7f23840445f91972941d7fd3bf Description: translation updates for language Simplified Chinese Description-md5: 964ab477e1a08bec8503df90f7f29cc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-zh-hans-base Priority: optional Section: translations Installed-Size: 6764 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-hans (<< 1:14.04+20140410), language-pack-gnome-zh-hans-base (<< 1:14.04+20140410), language-pack-kde-zh-hans (<< 1:14.04+20140410), language-pack-kde-zh-hans-base (<< 1:14.04+20140410), language-pack-zh-base (<< 1:9.10), language-pack-zh-hans (<< 1:14.04+20140410), language-pack-zh-hans-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-zh-hans (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-zh-hans Conflicts: language-pack-zh-base (<< 1:9.10), language-pack-zh-hans (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-zh-hans-base/language-pack-zh-hans-base_14.04+20140410_all.deb Size: 2145826 MD5sum: 8d79b312c5e87c138da05ff44e90c539 SHA1: d2a5a00000c902344ed4444540f43d7b7b6c1aee SHA256: 8174faa24b1743fb2ab22b39b6654529106f9ba8d2839163df5d79e7bdeca247 Description: translations for language Simplified Chinese Description-md5: 090e3187cf4b4c0881472ca8fbbc69cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live, xubuntu-live, ubuntu-gnome-live Package: language-pack-zh-hant Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-hant (<< 1:14.04+20140410), language-pack-gnome-zh-hant-base (<< 1:14.04+20140410), language-pack-kde-zh-hant (<< 1:14.04+20140410), language-pack-kde-zh-hant-base (<< 1:14.04+20140410), language-pack-zh (<< 1:9.10), language-pack-zh-hant (<< 1:14.04+20140410), language-pack-zh-hant-base Depends: language-pack-zh-hant-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Conflicts: language-pack-zh (<< 1:9.10) Filename: pool/main/l/language-pack-zh-hant/language-pack-zh-hant_14.04+20140410_all.deb Size: 2028 MD5sum: a96dd4281d7ad419a2f35939ea23cdb4 SHA1: b5cf14dd5253630c580938b5ef9eddd848800b3a SHA256: 59e62f25f61aa7e5d1376fb68dee4ccae3f0baadae7d1d15611f53d03ab6ac28 Description: translation updates for language Traditional Chinese Description-md5: 4e63dbe1bf430bb900a0e6924be90980 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-zh-hant-base Priority: optional Section: translations Installed-Size: 5278 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zh-hant (<< 1:14.04+20140410), language-pack-gnome-zh-hant-base (<< 1:14.04+20140410), language-pack-kde-zh-hant (<< 1:14.04+20140410), language-pack-kde-zh-hant-base (<< 1:14.04+20140410), language-pack-zh-base (<< 1:9.10), language-pack-zh-hant (<< 1:14.04+20140410), language-pack-zh-hant-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-zh-hant (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-zh-hant Conflicts: language-pack-zh-base (<< 1:9.10), language-pack-zh-hant (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-zh-hant-base/language-pack-zh-hant-base_14.04+20140410_all.deb Size: 1712058 MD5sum: b977ce212e7fffeef9c3eec8cd8b5c59 SHA1: 96f35c9b0907e509e6380e58cbd35210dcad6c0f SHA256: f269f057f91db013c784449412a98de7f5fc6b5a63449632586d6750582216f6 Description: translations for language Traditional Chinese Description-md5: f8e445efc00758ad96a2d1f9f951f23b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-zu Priority: optional Section: translations Installed-Size: 30 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zu (<< 1:14.04+20140410), language-pack-gnome-zu-base (<< 1:14.04+20140410), language-pack-kde-zu (<< 1:14.04+20140410), language-pack-kde-zu-base (<< 1:14.04+20140410), language-pack-zu (<< 1:14.04+20140410), language-pack-zu-base Depends: language-pack-zu-base (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Filename: pool/main/l/language-pack-zu/language-pack-zu_14.04+20140410_all.deb Size: 1984 MD5sum: e9122d95c051fc56633dfb8c39b844e3 SHA1: ac484df667c7d448e6052a5baf8f0b87b4cee5c4 SHA256: f6cbb3a560455c2d25606dc59dfe414a6b0a9c2dbcfc183cec7ecc85690ba982 Description: translation updates for language Zulu Description-md5: 168afb79ed76475e269c5d27b939c071 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-pack-zu-base Priority: optional Section: translations Installed-Size: 98 Maintainer: Language pack maintainers Architecture: all Version: 1:14.04+20140410 Replaces: language-pack-gnome-zu (<< 1:14.04+20140410), language-pack-gnome-zu-base (<< 1:14.04+20140410), language-pack-kde-zu (<< 1:14.04+20140410), language-pack-kde-zu-base (<< 1:14.04+20140410), language-pack-zu (<< 1:14.04+20140410), language-pack-zu-base (<< 1:14.04+20140410) Depends: locales (>= 2.3.6), language-pack-zu (>= 1:14.04+20140410) Pre-Depends: dpkg (>= 1.10.27ubuntu1) Recommends: firefox-locale-zu Conflicts: language-pack-zu (<< 1:14.04+20140410) Filename: pool/main/l/language-pack-zu-base/language-pack-zu-base_14.04+20140410_all.deb Size: 17028 MD5sum: 524d5f2d02123a36872511e0840192c5 SHA1: 2f10f7a151688e753ec6832c6d12388db775653d SHA256: ca7f16ebe96553e319148cb249d0a0157689fca98fdaaac6691a292807081a64 Description: translations for language Zulu Description-md5: d94e403a84d34de4c8dfd22db4efb654 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb-live, edubuntu-usb-live Package: language-selector-common Priority: standard Section: admin Installed-Size: 2293 Maintainer: Ubuntu Developers Architecture: all Source: language-selector Version: 0.129 Depends: python3, python3:any (>= 3.3.2-2~), iso-codes, python3-apt (>= 0.7.12.0), python3-dbus, dbus, accountsservice (>= 0.6.29-1ubuntu6) Pre-Depends: dpkg (>= 1.15.7.2) Filename: pool/main/l/language-selector/language-selector-common_0.129_all.deb Size: 203394 MD5sum: 563c06b446595727142ba05772dbfc13 SHA1: 6e1b637d7fafe2568788f95a9a44ab5df5bccd23 SHA256: d589c40071dd2cd4306a5746218b582b6754863dc5c51ea057d58f14fb64653f Description: Language selector for Ubuntu Description-md5: 2289b4df765931b87d6dfc592bc87ebc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-live Package: language-selector-gnome Priority: optional Section: admin Installed-Size: 169 Maintainer: Ubuntu Developers Architecture: all Source: language-selector Version: 0.129 Replaces: language-selector (<< 0.17) Depends: language-selector-common (= 0.129), python3, python3:any (>= 3.3.2-2~), python3-gi, gir1.2-gtk-3.0, gir1.2-vte-2.90, python3-apt, aptdaemon (>= 0.40+bzr527), python3-aptdaemon.gtk3widgets, im-config (>= 0.24-1ubuntu2~) Recommends: yelp Conflicts: language-selector (<< 0.17) Filename: pool/main/l/language-selector/language-selector-gnome_0.129_all.deb Size: 18542 MD5sum: 316678e47a1b1e9248e4833f2033b230 SHA1: 9fb78dcbd0a1e1f6bb15a28131db2615382d656a SHA256: 5aa02f224c19c2f11dde44cf551a56ee8bfe79e3b492c47f5e82f70599768638 Description: Language selector for Ubuntu Description-md5: 788d18b75f9a70e3ac7605d12641951d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop Package: laptop-detect Priority: optional Section: utils Installed-Size: 56 Maintainer: Ubuntu Core Developers Original-Maintainer: Otavio Salvador Architecture: i386 Version: 0.13.7ubuntu2 Depends: dmidecode (>> 2.8-2) Filename: pool/main/l/laptop-detect/laptop-detect_0.13.7ubuntu2_i386.deb Size: 5614 MD5sum: 5c8674b3f55774e434c3440a3bd347a0 SHA1: bee94e36346ecd7574205d469daf23e284eacbc3 SHA256: 47571d86a79c07df7646f5e19b2a14ce16b99e133878e7aac7924add0bd7e4df Description: attempt to detect a laptop Description-md5: 34713d67b4e15ec22232fa2992ac84bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: latex-beamer Priority: optional Section: tex Installed-Size: 5606 Maintainer: Ubuntu Developers Original-Maintainer: OHURA Makoto Architecture: all Version: 3.24-1 Depends: dpkg (>= 1.14.18), tex-common (>= 4), pgf (>= 1.00-1), latex-xcolor (>= 2.00-1), texlive-latex-base Filename: pool/main/l/latex-beamer/latex-beamer_3.24-1_all.deb Size: 3787886 MD5sum: 6c54bfddda967b89ea7fb53fc6d6e7c3 SHA1: 66848e3dbd4b5cf7e4e28199f99af48c6f2f2132 SHA256: 3263c68762078a3f5e30e8460ca217ce0686bc8cb806c6ae222e14dff92f41bf Description: LaTeX class to produce presentations Description-md5: d2345de1842406c63c25458fb9c962ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: latex-xcolor Priority: optional Section: tex Installed-Size: 723 Maintainer: Ubuntu Developers Original-Maintainer: OHURA Makoto Architecture: all Version: 2.11-1.1 Depends: texlive-latex-recommended, dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/l/latex-xcolor/latex-xcolor_2.11-1.1_all.deb Size: 602582 MD5sum: f5f44b7625b3ae1acefb541906c9a24a SHA1: 9023ee79b811b1f4f2cf9666cf2d3da15a2475c1 SHA256: 9733d26703b4a65774994c7420c82ebe1dd95d744d6c5462dba288050cd408c6 Description: Easy driver-independent TeX class for color Description-md5: 627f963a445a9e604f4714a47daebdb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: latex2html Priority: optional Section: tex Installed-Size: 5174 Maintainer: Ubuntu Developers Original-Maintainer: Roland Stigge Architecture: all Version: 2008-debian1-10 Depends: dpkg (>= 1.14.18), tex-common (>= 3), perl, netpbm (>= 2:9.20), ghostscript-x, texlive-base-bin, texlive-latex-recommended, texlive-fonts-recommended, texlive-latex-extra, perl-doc Filename: pool/main/l/latex2html/latex2html_2008-debian1-10_all.deb Size: 2073610 MD5sum: a9b4ce11fbc5ba127836fcf353618718 SHA1: 7666e32fb39efde17027b80de9c3681c7a8ef838 SHA256: e1edf9d6d92eb388c88db6a3d9d71e94e291129a3f387c11380fb798e9210122 Description: LaTeX to HTML translator Description-md5: c54cf0081b5e186a36ce7c53ee9032c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lbdb Priority: optional Section: mail Installed-Size: 268 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: i386 Version: 0.38ubuntu1 Depends: libc6 (>= 2.4), libvformat0 (>= 1.13-6~), perl Suggests: mutt | mutt-ja, procmail, finger, abook, libpalm-perl, libnet-ldap-perl Filename: pool/main/l/lbdb/lbdb_0.38ubuntu1_i386.deb Size: 76796 MD5sum: 1eda6ab056d38082d7012b6cd8aa53ef SHA1: dbc3ce04c8b49732fba454c6d475154dfeac11a5 SHA256: 196be9eb7c2832b13b34b9a4266da07eac4dea7069061ad18ae7981aa8d64713 Description: Little Brother's DataBase for the mutt mail reader Homepage: http://www.spinnaker.de/lbdb/ Description-md5: bf7ab45b569ec588663f9de6e4526d93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldap-auth-client Priority: extra Section: admin Installed-Size: 26 Maintainer: Rick Clark Architecture: all Version: 0.5.3 Depends: libpam-ldap, libnss-ldap Conflicts: libnss-ldap (<< 255-1ubuntu1), libpam-ldap (<< 184-1ubuntu1) Filename: pool/main/l/ldap-auth-client/ldap-auth-client_0.5.3_all.deb Size: 2760 MD5sum: 7dec34fdaae760ca763360012276464f SHA1: 2f5fda907538a8dfba90a4e815369626db526a8a SHA256: aa2f525209c933f5d72eb80ab0aac401fca6b43e36f36777912176c65fa416c2 Description: meta-package for LDAP authentication Description-md5: 50269fd0d6d0f7be7b9b925af000b0dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldap-auth-config Priority: extra Section: admin Installed-Size: 65 Maintainer: Rick Clark Architecture: all Source: ldap-auth-client Version: 0.5.3 Depends: debconf (>= 0.5) | debconf-2.0, sed (>= 3.95), ldap-auth-client Pre-Depends: auth-client-config Filename: pool/main/l/ldap-auth-client/ldap-auth-config_0.5.3_all.deb Size: 9434 MD5sum: ed0ba47060c1ea46b5e6af5e5b349e81 SHA1: 7ce15a894fa33bcf1afa8cd12c12b376ab9c1cbe SHA256: 860dff81332327c937eb940580deab4271a8f6eba6f883ec2f22d47e7d63476b Description: Config package for LDAP authentication Multi-Arch: foreign Description-md5: 890b066be5bf7e92c9cb54c68d4f89c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldap-utils Priority: optional Section: net Installed-Size: 657 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: i386 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Replaces: openldap-utils, openldapd, slapd (<< 2.2.23-0.pre6) Provides: ldap-client, openldap-utils Depends: libc6 (>= 2.4), libldap-2.4-2 (= 2.4.31-1+nmu2ubuntu8), libsasl2-2 (>= 2.1.24) Recommends: libsasl2-modules Conflicts: ldap-client, openldap-utils, umich-ldap-utils Filename: pool/main/o/openldap/ldap-utils_2.4.31-1+nmu2ubuntu8_i386.deb Size: 116292 MD5sum: ea86eaeb4ec6dea75089ef0722ebdc40 SHA1: 05a8db49107fd01fb130384751671969a06b535d SHA256: 11f18399a82d7c74b378454a87de536b7529e53c59a4651e4aa07d30f579fe34 Description: OpenLDAP utilities Homepage: http://www.openldap.org/ Description-md5: f5d300156245ae8fa5972cf30bf60206 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-dvd-live Package: ldm Priority: optional Section: misc Installed-Size: 546 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: i386 Version: 2:2.2.13-1 Replaces: ltsp-client-core (<= 5.0.40~bzr20080121-2) Depends: libc6 (>= 2.15), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.22.0), libgtk2.0-0 (>= 2.18.0), libx11-6, libxext6, openssh-client | ssh, xserver-xorg | xserver, gettext-base, python, procps Recommends: netcat-traditional | netcat, gtk2-engines, dmz-cursor-theme Breaks: ltsp-client-core (<= 5.0.40~bzr20080121-2) Filename: pool/main/l/ldm/ldm_2.2.13-1_i386.deb Size: 98428 MD5sum: 5667bb535aabc63899795a935a14721c SHA1: ade756b509b3435c9b9cad048bc7abdb6eca09ca SHA256: 22e55d1cb9318d6b4caca7103fb9ce95bb0248cae47b06e0712de82c06b5aa63 Description: LTSP display manager Homepage: http://ltsp.org/ Description-md5: ea42de5b1b58281bf77ec88afc3ce73b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldm-server Priority: optional Section: misc Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: all Source: ldm Version: 2:2.2.13-1 Replaces: ltsp-server (<= 5.1.62) Depends: python, x11-common, openssh-server, update-inetd, openbsd-inetd | inet-superserver Recommends: ltspfs, gnome-session | x-session-manager | x-window-manager, libasound2-plugins, xauth Breaks: ltsp-server (<= 5.1.62) Filename: pool/main/l/ldm/ldm-server_2.2.13-1_all.deb Size: 8750 MD5sum: 3db5f61fe38d3862bc9ebe8a65860770 SHA1: 0b9d716b0d2f9975aae064833d20122b72692a25 SHA256: b8a9a4bb8991b477a6b2d2882049de8c7f53308636c31dee663603878e5d4ffc Description: server components for LTSP display manager Homepage: http://ltsp.org/ Description-md5: 83333381bb32c5d4cb09d85c656d4009 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldm-ubuntu-theme Priority: optional Section: misc Installed-Size: 410 Maintainer: Ubuntu Core Developers Architecture: all Source: ldm-ubuntu-themes Version: 2:2.0.47 Provides: ldm-themes Depends: human-theme, ldm (>= 2:2.0.6-1ubuntu1), ttf-ubuntu-font-family Conflicts: ldm-ubuntu-themes (<= 2:2.0.40.1) Filename: pool/main/l/ldm-ubuntu-themes/ldm-ubuntu-theme_2.0.47_all.deb Size: 349698 MD5sum: 5f50ee76d22c0c54eabe45af13ee60e3 SHA1: 71842e05d2d39397c37df21685fafdc2781dc580 SHA256: 0efc28d934181b1e290fe9a063f14cd17c156d8367b95669f7cc7fa907973f28 Description: Ubuntu theme for the LTSP Display Manager Description-md5: 2facb1227f5099161294dac67bad23bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ldp-docbook-xsl Priority: optional Section: text Installed-Size: 168 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: ldp-docbook-stylesheets Version: 0.0.20040321-2build1 Depends: docbook-xsl Filename: pool/main/l/ldp-docbook-stylesheets/ldp-docbook-xsl_0.0.20040321-2build1_all.deb Size: 29422 MD5sum: a3d16eb14a29c4b5997dbeaef2143954 SHA1: 9f0f0e89af302141828449916f464dfac9aecf81 SHA256: a183541e07d54db8cdacf6069616e53345cd99d0951e1ef711e7c45129fe04f7 Description: The Linux Documentation Project's XSL stylesheets Description-md5: f299ed5f0e3625ba8a45dcc75f6c232e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ledit Priority: optional Section: editors Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: all Version: 2.03-2build1 Provides: readline-editor Depends: ocaml-base-nox-4.01.0 Filename: pool/main/l/ledit/ledit_2.03-2build1_all.deb Size: 33808 MD5sum: 35e97efedd1a0b19a5f03bfb8a3f1d0f SHA1: c60443c2724c84f2a6894487ff9f176c3ad8f00b SHA256: 273b2289f24af6f81fb30f6058c5dea1adb4cbbe3656f50c6f7b38b57569a782 Description: line editor for interactive programs Homepage: http://cristal.inria.fr/~ddr/ledit/ Description-md5: 1f10287a364948723289d1e9c2700025 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: less Priority: important Section: text Installed-Size: 278 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 458-2 Depends: libc6 (>= 2.11), libtinfo5, debianutils (>= 1.8) Filename: pool/main/l/less/less_458-2_i386.deb Size: 114280 MD5sum: b137b41405bddb438d0abb16d4f47362 SHA1: 4da1a6afcd8faf1c039fa504d160a63ca5e3c16b SHA256: 0d6636e60b9851b59bff15fd7434fdd0a9078c54194bb2e0e05baf03b11f9c22 Description: pager program similar to more Multi-Arch: foreign Homepage: http://www.greenwoodsoftware.com/less/ Description-md5: a2c2d2eff1fb9762b71faf7540cf8dce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: leveldb-doc Priority: optional Section: doc Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: all Source: leveldb Version: 1.15.0-2 Filename: pool/main/l/leveldb/leveldb-doc_1.15.0-2_all.deb Size: 30670 MD5sum: e53fe1b497dae7d5d14eba516e5c01f8 SHA1: 81776ef39ccb40e9db46a44c6258959d1f590c9a SHA256: 30bd121da5c3c4059bc4d9a0ef718727b64e1748b1f1c861be6124ecbb9650e9 Description: LevelDB documentation Homepage: http://code.google.com/p/leveldb/ Description-md5: 06fa5885fbd2bea65afac7d42b4775a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lftp Priority: optional Section: net Installed-Size: 1176 Maintainer: Ubuntu Developers Original-Maintainer: Noël Köthe Architecture: i386 Version: 4.4.13-1 Depends: libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libgnutls26 (>= 2.12.17-0), libreadline6 (>= 6.0), libtinfo5, zlib1g (>= 1:1.1.4), netbase Filename: pool/main/l/lftp/lftp_4.4.13-1_i386.deb Size: 419964 MD5sum: 4943c6e909e81d28812372b5589f7842 SHA1: 6f1c86528ae14e8247e8fba7c2c383251903deb0 SHA256: 9b6c0fba08f10608eb3ffa09fd1d9ffd46a9f3ebf9bff6610fb6fcc497fb55b9 Description: Sophisticated command-line FTP/HTTP client programs Homepage: http://lftp.yar.ru/ Description-md5: c47b6714677978e167da4cdd38e54a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lib64asan0 Priority: extra Section: libs Installed-Size: 205 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gcc1 (>= 1:4.1.1), libc6-amd64 (>= 2.4) Filename: pool/main/g/gcc-4.8/lib64asan0_4.8.2-19ubuntu1_i386.deb Size: 63312 MD5sum: f3b016cefc346a0959493f998ed2b734 SHA1: e950fa0a286ba309d19c705ca33e6e8ef788d39e SHA256: 6b199c8e14483509323b4d392c0d137f6cc8a3f7593845172e82190caf4bcc56 Description: AddressSanitizer -- a fast memory error detector (64bit) Homepage: http://gcc.gnu.org/ Description-md5: 1a9f659ca4439e2038933f842e164011 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lib64asan0-dbg Priority: extra Section: debug Installed-Size: 1049 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64asan0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib64asan0-dbg_4.8.2-19ubuntu1_i386.deb Size: 231556 MD5sum: 04cac75646cde9c2db162771a1c7b872 SHA1: 44ee99d1004b9f1d330183992ccbb0eb6d22ac23 SHA256: 93c2787cdde7be1afdcfcec4dc45277234f4ad8139f4a1c134dd072d10fc213e Description: AddressSanitizer -- a fast memory error detector (64bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: f86d6035d0bdab5718527fadb4713347 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64asan0-powerpc-cross Priority: extra Section: devel Installed-Size: 266 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), lib64gcc1-powerpc-cross, libc6-ppc64-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64asan0-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 62646 MD5sum: b1e2b05437197ce249f0e34fbd171844 SHA1: 76c3af1a6f9a828b8c24efa381ad519e2511d09e SHA256: 7f9c70f344812e3be6cfea50f6dd8d4be21b1f6c5b2d27832bc7dc51617390a2 Description: AddressSanitizer -- a fast memory error detector (64bit) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 1a9f659ca4439e2038933f842e164011 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64atomic1 Priority: optional Section: libs Installed-Size: 54 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-amd64 (>= 2.14) Filename: pool/main/g/gcc-4.8/lib64atomic1_4.8.2-19ubuntu1_i386.deb Size: 8572 MD5sum: a6f7901326367f865cd91f9127cc7d3a SHA1: d46594600c2d4b17dafc6e565fd80f904219d6e2 SHA256: ffbd1dba200ea00189a7e574e1cbc200ac851dc3577c366572d5456d059424c9 Description: support library providing __atomic built-in functions (64bit) Homepage: http://gcc.gnu.org/ Description-md5: dcde910e366c584abcb0cd438bd4f06e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lib64atomic1-dbg Priority: extra Section: debug Installed-Size: 139 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64atomic1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib64atomic1-dbg_4.8.2-19ubuntu1_i386.deb Size: 16458 MD5sum: b1a8278c861084e896ae4ac5fddcc6c1 SHA1: 5016f1e6ca0dffd3018892a661af99f48ae535dd SHA256: 56277ef1357432bef81a3ad3e91d4625d916ec3179e7b7da4a2770436b06aa1f Description: support library providing __atomic built-in functions (64bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 3180ccc043db555a40bffc6fe5928e4c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64atomic1-powerpc-cross Priority: extra Section: devel Installed-Size: 69 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-ppc64-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64atomic1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 8284 MD5sum: 9882334a86f2b431d3122da3ef8a2247 SHA1: 6ed057925e9e51a02cb355fde080ccf79b93a412 SHA256: 87b18e3fdb8b66b8d3ee7b55d42603934c684f604e52eb4eee8f82c075e1c913 Description: support library providing __atomic built-in functions (64bit) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: dcde910e366c584abcb0cd438bd4f06e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64bz2-1.0 Priority: optional Section: libs Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: bzip2 Version: 1.0.6-5 Replaces: amd64-libs (<< 1.5) Depends: libc6-amd64 Filename: pool/main/b/bzip2/lib64bz2-1.0_1.0.6-5_i386.deb Size: 33426 MD5sum: a411fec8827a466872c501ac7e5f1b0a SHA1: 375107e120a34f972c1c4624c416f10efc0896f1 SHA256: 821728c688de25121c531ec08f81bd11cc9e3ff59a408c797f9240dee38ad607 Description: high-quality block-sorting file compressor library - 64bit runtime Homepage: http://www.bzip.org/ Description-md5: fbef5297494e748afb498b83f0bafbe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64bz2-dev Priority: optional Section: libdevel Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: bzip2 Version: 1.0.6-5 Replaces: amd64-libs-dev (<< 1.5) Depends: lib64bz2-1.0 (= 1.0.6-5), libbz2-dev (= 1.0.6-5), libc6-dev-amd64 Filename: pool/main/b/bzip2/lib64bz2-dev_1.0.6-5_i386.deb Size: 30736 MD5sum: 9791e1e392dc404546d0cb0b161eb3ff SHA1: 4658e5893dc7642eea22664ae96d9e2fd94ba4d7 SHA256: e8fc9d07878c60096f0a0b6f42ad8da1bff59f08a80204e14dd08f7369359bc3 Description: high-quality block-sorting file compressor library - 64bit development Homepage: http://www.bzip.org/ Description-md5: 1600b865aa4470e20872bf13fa6efa58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64expat1 Priority: optional Section: libs Installed-Size: 373 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: expat Version: 2.1.0-4ubuntu1 Depends: libc6-amd64 (>= 2.14) Filename: pool/main/e/expat/lib64expat1_2.1.0-4ubuntu1_i386.deb Size: 70088 MD5sum: 5b9a00e81d88e2112d3970e30bc264f6 SHA1: 4eb67741d8b51459b8a11faea5035bc568cb61d8 SHA256: d66d063476fff3b15e8af4f5a1b7b556979180643d8c7c3a947217fc02129c2a Description: XML parsing C library - runtime library (64bit) Homepage: http://expat.sourceforge.net Description-md5: dee7b2ed61b93c3cb2f05732747f1d07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64expat1-dev Priority: optional Section: libdevel Installed-Size: 711 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: expat Version: 2.1.0-4ubuntu1 Depends: lib64expat1 (= 2.1.0-4ubuntu1), libexpat1-dev, gcc-multilib Filename: pool/main/e/expat/lib64expat1-dev_2.1.0-4ubuntu1_i386.deb Size: 66640 MD5sum: efa036f78bb363b2a999d15ae4a8218c SHA1: dfc8dd81b7e54b472aa01a6804768779b911f1cc SHA256: f434a568c3b19340179d81a8f7cec7b001490e3774ac8f3d668142b40dca53d0 Description: XML parsing C library - development kit (64bit) Homepage: http://expat.sourceforge.net Description-md5: 5887fcce9542b4119fb1f11cb0a75b4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64gcc-4.7-dev Priority: optional Section: libdevel Installed-Size: 3945 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gcc-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib64gcc1 (>= 1:4.7.3-12ubuntu1), libx32gcc1 (>= 1:4.7.3-12ubuntu1), lib64gomp1 (>= 4.7.3-12ubuntu1), libx32gomp1 (>= 4.7.3-12ubuntu1), lib64itm1 (>= 4.7.3-12ubuntu1), libx32itm1 (>= 4.7.3-12ubuntu1), lib64quadmath0 (>= 4.7.3-12ubuntu1), libx32quadmath0 (>= 4.7.3-12ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.7/lib64gcc-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 1444084 MD5sum: 58d1f89340f2fdad7e875cadf2115c38 SHA1: 7d9a3c03eb9dd2e46b4cde1e7eb903f4fb2524f6 SHA256: 0c9eea16bb641b6eb528700ad59fd692a73f4da3588dde2bee3bb295f195614e Description: GCC support library (64bit development files) Homepage: http://gcc.gnu.org/ Description-md5: 44d3aaff7c21b9d5950416cabd2035a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64gcc-4.8-dev Priority: optional Section: libdevel Installed-Size: 4615 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gcc1 (>= 1:4.8.2-19ubuntu1), libx32gcc1 (>= 1:4.8.2-19ubuntu1), lib64gomp1 (>= 4.8.2-19ubuntu1), libx32gomp1 (>= 4.8.2-19ubuntu1), lib64itm1 (>= 4.8.2-19ubuntu1), libx32itm1 (>= 4.8.2-19ubuntu1), lib64atomic1 (>= 4.8.2-19ubuntu1), libx32atomic1 (>= 4.8.2-19ubuntu1), lib64asan0 (>= 4.8.2-19ubuntu1), libx32asan0 (>= 4.8.2-19ubuntu1), lib64quadmath0 (>= 4.8.2-19ubuntu1), libx32quadmath0 (>= 4.8.2-19ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8/lib64gcc-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 1558024 MD5sum: 00f0b809af122668fdb401d54e59bee3 SHA1: b558be485452cc474625fe395a0f689e8ac10378 SHA256: 8ad5b360e6b819f39ec8da3cccc009d057357250623e65974608337986122121 Description: GCC support library (64bit development files) Homepage: http://gcc.gnu.org/ Description-md5: 44d3aaff7c21b9d5950416cabd2035a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lib64gcc-4.8-dev-powerpc-cross Priority: optional Section: libdevel Installed-Size: 1661 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), lib64gcc1-powerpc-cross (>= 1:4.8.2-16ubuntu3cross0.11), lib64gomp1-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), lib64atomic1-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), lib64asan0-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11) Recommends: libc6-dev-powerpc-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64gcc-4.8-dev-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 247242 MD5sum: 7776e3c6d96cfcab074a3d4be8ea10e3 SHA1: 317a2e06c433f6534e3f543703885f2eec5cae8f SHA256: b040249c3333cfb22c8919a409f40a43e8da8b9dbd0e18ce3905302cc19d6fbb Description: GCC support library (64bit development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 44d3aaff7c21b9d5950416cabd2035a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64gcc1 Priority: optional Section: libs Installed-Size: 117 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libc6-amd64 (>= 2.14) Conflicts: libgcc1 (<= 1:3.3-0pre9) Filename: pool/main/g/gccgo-4.9/lib64gcc1_4.9-20140406-0ubuntu1_i386.deb Size: 38964 MD5sum: 02fcd3da9214d1d42a84afc92f2f9d05 SHA1: 8d2f5416ecd11ac5efa4965866e0619f30d6423f SHA256: a379310ca7ac4df2d0193c386c0ffc11accc62ac7e49a1166ebf0b9c3f8295d1 Description: GCC support library (64bit) Homepage: http://gcc.gnu.org/ Description-md5: 3fa6e907907011d66479852df2d160b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lib64gcc1-dbg Priority: extra Section: debug Installed-Size: 478 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), lib64gcc1 (= 1:4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/lib64gcc1-dbg_4.9-20140406-0ubuntu1_i386.deb Size: 85646 MD5sum: 68ceb767fbf1e583340835d0748cd29e SHA1: 09397ff4008080c22bec042dc60fbc9aa6dc8cb8 SHA256: c2fa0113dfb0e2a972e01151a2d2f1c136af6cf4206f8017a4ca190fdc17dd6b Description: GCC support library (debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: d2281f8d5a2b7dae7c362df43affcb03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64gcc1-powerpc-cross Priority: extra Section: devel Installed-Size: 119 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 1:4.8.2-16ubuntu3cross0.11 Provides: lib64gcc1-powerpc-dcv1 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-ppc64-powerpc-cross (>= 2.18) Conflicts: libgcc1-powerpc-cross (<= 1:3.3-0pre9) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64gcc1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 28506 MD5sum: 76e992bd50b952a961aac323416692a5 SHA1: 1370028c16294d12942b00492a6edbecfa45b41d SHA256: 9f9ef78cb342bd6bad2f45d1cd982a3da71867a12c4c90c56c6ac1bf4d570c5a Description: GCC support library (64bit) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 3bf79ce9852504418b0dfc9b851b45eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64gfortran-4.7-dev Priority: optional Section: libdevel Installed-Size: 2702 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gfortran-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib64gfortran3 (>= 4.7.3-12ubuntu1) Breaks: gfortran-4.7-multilib (<< 4.7.2-10) Filename: pool/main/g/gcc-4.7/lib64gfortran-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 266580 MD5sum: 5c4331193ce1fd6586df1d918392c740 SHA1: 979a8e26a31370522c36524ca06557e8a8efe082 SHA256: 56ea7dd2c52ca96dda252d917dc33bb4fe590ebefd7babb5142fbc788d53678b Description: Runtime library for GNU Fortran applications (64bit development files) Homepage: http://gcc.gnu.org/ Description-md5: 552b8ddfa55fb97fed937c39ac7c9855 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64gfortran-4.8-dev Priority: optional Section: libdevel Installed-Size: 2715 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gcc-4.8-dev (= 4.8.2-19ubuntu1), lib64gfortran3 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib64gfortran-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 269226 MD5sum: e5c433da1848ea2603677b3acb9060b4 SHA1: 16e47ecfdcb2f63c84a0801269b88e6419bd036e SHA256: d3ecd89fff22bb7bdcbc23ade6dc1c74d75cdf63241d85b8f6f00f578d49fb8d Description: Runtime library for GNU Fortran applications (64bit development files) Homepage: http://gcc.gnu.org/ Description-md5: 552b8ddfa55fb97fed937c39ac7c9855 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lib64gfortran3 Priority: optional Section: libs Installed-Size: 1205 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gcc1 (>= 1:4.4.0), lib64quadmath0 (>= 4.6), libc6-amd64 (>= 2.17) Filename: pool/main/g/gcc-4.8/lib64gfortran3_4.8.2-19ubuntu1_i386.deb Size: 249420 MD5sum: abb04522dfa2b9266077f8c2113d472a SHA1: 39e7c7da48c5a47f0415bd2671f847b7a5647c12 SHA256: a27090d5fb4e93458cd608a53f27a0c4efa72d81183549778ba0631f483c57fb Description: Runtime library for GNU Fortran applications (64bit) Homepage: http://gcc.gnu.org/ Description-md5: 46b19e07ae6f07ea3757b2684cf21c0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lib64gfortran3-dbg Priority: extra Section: debug Installed-Size: 4237 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gfortran3 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib64gfortran3-dbg_4.8.2-19ubuntu1_i386.deb Size: 611922 MD5sum: 18f99e46b089caa0dc60e101237e8f11 SHA1: d483d9d14531fa6d93cf589e61d0e88629bcba96 SHA256: 6a881fdbed2f1b0421fcc8af2e1895cfec8b1c32ffa75fc7ee480b24dbfac974 Description: Runtime library for GNU Fortran applications (64bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: c63c0c3ab768ea3fa5c30e961c50e5b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64go4 Priority: optional Section: libs Installed-Size: 13784 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: lib64go3 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gcc1 (>= 1:4.1.1), libc6-amd64 (>= 2.14) Filename: pool/main/g/gcc-4.8/lib64go4_4.8.2-19ubuntu1_i386.deb Size: 2203454 MD5sum: eb8d27e9580f80913ecbea0742e4bb03 SHA1: 3b742e221408b0427b365ebe0e73f924887c63f6 SHA256: 9169d5787237faca70980c8ab6aa77bf97cecc1affb4876306c01c5b70777fd7 Description: Runtime library for GNU Go applications (64bit) Homepage: http://gcc.gnu.org/ Description-md5: 07fa56d3e232224f82aa278bc1a968bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64go4-dbg Priority: extra Section: debug Installed-Size: 12451 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64go4 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib64go4-dbg_4.8.2-19ubuntu1_i386.deb Size: 2716996 MD5sum: 8a4cac049308c46d80561948f41bcfa8 SHA1: 3f19617baf32d9b3b0507d4970bdeedc8c08cc1c SHA256: 1a7ee13655f692e5232ce0aefff5b1f66f4a4b45b0bffcbc0828195c116634b0 Description: Runtime library for GNU Go applications (64bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: be3ea747a313cb4b1b98e9ead7d405f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64go5 Priority: optional Section: libs Installed-Size: 15061 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Replaces: lib64go3 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), lib64gcc1 (>= 1:4.1.1), libc6-amd64 (>= 2.14) Filename: pool/main/g/gccgo-4.9/lib64go5_4.9-20140406-0ubuntu1_i386.deb Size: 2458764 MD5sum: b989308c4ec6881477c354f631ebc1b8 SHA1: 568e7400f23155867b4562a7acb7a6ae1b564e2c SHA256: aac67164ab95d233327784115808e823240dd7044441f221c18cfb6db7fe99f2 Description: Runtime library for GNU Go applications (64bit) Homepage: http://gcc.gnu.org/ Description-md5: 07fa56d3e232224f82aa278bc1a968bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64go5-dbg Priority: extra Section: debug Installed-Size: 13401 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), lib64go5 (= 4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/lib64go5-dbg_4.9-20140406-0ubuntu1_i386.deb Size: 2933844 MD5sum: eb5a56592fbe47413a56b3630e7ccd0f SHA1: d0a5382e3279646b917cac0e85c77edf8e51382a SHA256: 2e31538027186dfe90fc92b5168cc97f618d6d3d03c1d4434d8ea371edbba527 Description: Runtime library for GNU Go applications (64bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: be3ea747a313cb4b1b98e9ead7d405f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64gomp1 Priority: optional Section: libs Installed-Size: 89 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-amd64 (>= 2.17) Filename: pool/main/g/gcc-4.8/lib64gomp1_4.8.2-19ubuntu1_i386.deb Size: 23010 MD5sum: be5d4fb10754eb384431a578843c5dfc SHA1: 3806bca9cff735ff17acb75d0af4a406a17a7e76 SHA256: 85d89431a7620d32506ea230e4b0f305be08a9cbca2975e9bb7da7d012eed7f9 Description: GCC OpenMP (GOMP) support library (64bit) Homepage: http://gcc.gnu.org/ Description-md5: a0950cb11ce700192ac4d8252bba5f9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lib64gomp1-dbg Priority: extra Section: debug Installed-Size: 273 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gomp1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib64gomp1-dbg_4.8.2-19ubuntu1_i386.deb Size: 56072 MD5sum: 37990a18bf1035e8d434ffc73bd1a328 SHA1: 84c925fe44a32a08d083095301e9bc49b5c43361 SHA256: e9dcc4795ea22838b897019c18ce58734978cfbfa242a82d33c54b74f66af56d Description: GCC OpenMP (GOMP) support library (64bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 882676390c496a4f303ad530c4fe700c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64gomp1-powerpc-cross Priority: extra Section: devel Installed-Size: 108 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-ppc64-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64gomp1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 22024 MD5sum: 554d8685f70cb376578b483a938c81a3 SHA1: 979250ba702d2405a92fb18ad7552d139b6cea34 SHA256: 342caf05153deb08f1f09cecabcf1e98e05364edb911bae3d78ad4dbcc38e1ad Description: GCC OpenMP (GOMP) support library (64bit) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: a0950cb11ce700192ac4d8252bba5f9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64itm1 Priority: optional Section: libs Installed-Size: 156 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-amd64 (>= 2.14) Filename: pool/main/g/gcc-4.8/lib64itm1_4.8.2-19ubuntu1_i386.deb Size: 28492 MD5sum: e8422b153869b0d1735c2a0946f48261 SHA1: ed065029f5d511917754d96a5c1a8972dd2a6009 SHA256: 361cd97e25cee66841e2b2bb67b2586a85e6451afe5dedb47928babd9cc2514d Description: GNU Transactional Memory Library (64bit) Homepage: http://gcc.gnu.org/ Description-md5: fcc38020a0be9787c7556be2d025d1a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lib64itm1-dbg Priority: extra Section: debug Installed-Size: 1028 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64itm1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib64itm1-dbg_4.8.2-19ubuntu1_i386.deb Size: 183310 MD5sum: 4fbe348cd3404c4b72e997e38a529064 SHA1: 9968c1dd0b010dfac16ed701bfb6682e4c5d36da SHA256: aaa8eaba83d718dbc71f784fcf0f9bf9e07e0a215243ba71fa67d6c481af1db3 Description: GNU Transactional Memory Library (64bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 2d248b06e644dd15948c161044b826f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64ncurses5 Priority: optional Section: libs Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: amd64-libs (<= 1.2) Depends: lib64tinfo5 (= 5.9+20140118-1ubuntu1), libc6-amd64 (>= 2.14) Filename: pool/main/n/ncurses/lib64ncurses5_5.9+20140118-1ubuntu1_i386.deb Size: 92648 MD5sum: 0961a5631fe9eb0a35bee79fc9e8ffdd SHA1: 4f25ca5234d9a4f4a0740880fe1345839250328c SHA256: edb28441ce8fafbcb216a73a114f4ce977398d58bab58cb73dce47d275a09fc3 Description: shared libraries for terminal handling (64-bit) Homepage: http://invisible-island.net/ncurses/ Description-md5: b8bc33d7762cd795ba47795e882f7c30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64ncurses5-dev Priority: optional Section: libdevel Installed-Size: 1085 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: amd64-libs-dev (<= 1.2), lib64tinfo5-dev Depends: lib64ncurses5 (= 5.9+20140118-1ubuntu1), lib64tinfo5 (= 5.9+20140118-1ubuntu1), libncurses5-dev (= 5.9+20140118-1ubuntu1), lib64c-dev Suggests: ncurses-doc Filename: pool/main/n/ncurses/lib64ncurses5-dev_5.9+20140118-1ubuntu1_i386.deb Size: 189232 MD5sum: 33e4f63a9feade6c7834c34ed66a4cee SHA1: 3094ccdf4c5f0dc0a837309978447d9904f1be2b SHA256: 3d85de2e053f034f8c40b4f2f591403544eb3483e0e7a7fb78785fb80251c0e4 Description: developer's libraries for ncurses (64-bit) Homepage: http://invisible-island.net/ncurses/ Description-md5: 6bddbac1ee6d7fcd11d85aa04df9fae3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64objc-4.7-dev Priority: optional Section: libdevel Installed-Size: 2606 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gobjc-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib64gcc-4.7-dev (= 4.7.3-12ubuntu1), lib64objc4 (>= 4.7.3-12ubuntu1) Filename: pool/main/g/gcc-4.7/lib64objc-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 356448 MD5sum: b02d53f02ae1308592bf9f100cf8fe8c SHA1: 81e75eaf39081e3e842fe17aab660776842dc9a5 SHA256: 12954fa8cb411497fe8b6435389dc59f4e7cfb27a08af6b3f1e888528890ad86 Description: Runtime library for GNU Objective-C applications (64bit development files) Homepage: http://gcc.gnu.org/ Description-md5: c0fc895d2778279155bfb6af8561da8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64objc-4.8-dev Priority: optional Section: libdevel Installed-Size: 3031 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gcc-4.8-dev (= 4.8.2-19ubuntu1), lib64objc4 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib64objc-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 361002 MD5sum: e5a655710f6703b9e528540e3a4a87e9 SHA1: 82ef4ae1a1f29dc09797887f256ec2a92ca3364f SHA256: 0b81f412d6f24202dfe8da5d2c109f4b17a3f7962261461479c6428257bc7623 Description: Runtime library for GNU Objective-C applications (64bit development files) Homepage: http://gcc.gnu.org/ Description-md5: c0fc895d2778279155bfb6af8561da8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64objc4 Priority: optional Section: libs Installed-Size: 432 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gcc1 (>= 1:4.1.1), libc6-amd64 (>= 2.14) Filename: pool/main/g/gcc-4.8/lib64objc4_4.8.2-19ubuntu1_i386.deb Size: 110034 MD5sum: de69c09b9767ff095579fa970bbbae05 SHA1: 898003aba553f085851d9c7232ec4f17e6921e15 SHA256: fd74a57bfd35f4aeda6d2938bc9b6951abf3b825a370649f08e5aea15dcab98f Description: Runtime library for GNU Objective-C applications (64bit) Homepage: http://gcc.gnu.org/ Description-md5: ed6abd85fb9be4df45f054e758ab70d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64objc4-dbg Priority: extra Section: debug Installed-Size: 1044 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64objc4 (= 4.8.2-19ubuntu1), lib64gcc1-dbg (>= 1:4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib64objc4-dbg_4.8.2-19ubuntu1_i386.deb Size: 211710 MD5sum: da78f8168c7864ac3add9c2d8c506084 SHA1: a7194d64176c82148191aa3a4a5db27d8b4eb553 SHA256: d44725fd66b955eb2512f5e786c103a24ad1fa4cd730016c47db571830c77250 Description: Runtime library for GNU Objective-C applications (64 bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 7cd2b0138394ee9bd1a02f3b57b33245 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64quadmath0 Priority: optional Section: libs Installed-Size: 266 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-amd64 (>= 2.14) Filename: pool/main/g/gcc-4.8/lib64quadmath0_4.8.2-19ubuntu1_i386.deb Size: 125844 MD5sum: 995c1d7801b8f78f99ca7029fc7dee00 SHA1: 551ffc7bad26c6b14d3e1b2128a9adde372ef2dd SHA256: b04befb6855c0caed044e9cb9e04fc0a4f3c7afbb924ded0ec14252305e58d0f Description: GCC Quad-Precision Math Library (64bit) Homepage: http://gcc.gnu.org/ Description-md5: 49289451e79bd744581e76fbb05eb94d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lib64quadmath0-dbg Priority: extra Section: debug Installed-Size: 690 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64quadmath0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib64quadmath0-dbg_4.8.2-19ubuntu1_i386.deb Size: 142730 MD5sum: 756a20642d41de6e6f185f502790aa61 SHA1: 7a757efc5ff402a5035c1bf41796ef9f47118fef SHA256: 9b40ab29bafc78b77b9381d73620a943dc1875496712ca4d8e9c49725ba61c4c Description: GCC Quad-Precision Math Library (64bit debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: bbb06b0ff2dba5c1dd20fe845b0f4d8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64readline-gplv2-dev Priority: extra Section: libdevel Installed-Size: 540 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: readline5 Version: 5.2+dfsg-2 Replaces: lib64readline5-dev, libreadline5-dev (<< 4.1-6) Depends: lib64readline5 (= 5.2+dfsg-2), lib64ncurses5-dev, libc6-dev-amd64 Conflicts: lib64readline-dev, lib64readline5-dev Filename: pool/main/r/readline5/lib64readline-gplv2-dev_5.2+dfsg-2_i386.deb Size: 147882 MD5sum: cc4795715fbb45ac41edb16f4734c6ab SHA1: d8aec5ddd968cf0ed66116560a3f7903aa1008e6 SHA256: 71c2e2c706c0c50d04329f59157f25a55626e1ad74e51546ed711e6501b2cc77 Description: GNU readline and history libraries, development files (64-bit) Description-md5: 8cc45075e945d3b096b1308cf10078b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64readline5 Priority: optional Section: libs Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: readline5 Version: 5.2+dfsg-2 Depends: readline-common, lib64tinfo5, libc6-amd64 (>= 2.15) Filename: pool/main/r/readline5/lib64readline5_5.2+dfsg-2_i386.deb Size: 128366 MD5sum: eaf28708b9b13693be711b51cde8304b SHA1: 19777554d69ff7664a123b3577295ff96adc85d6 SHA256: c559ac689f3e2948edfecf04464195342545052478358384755c812e35712da9 Description: GNU readline and history libraries, run-time libraries (64-bit) Description-md5: 00a13288424388ae43765b5040434241 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64readline6 Priority: optional Section: libs Installed-Size: 388 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: readline6 Version: 6.3-4ubuntu2 Depends: readline-common, lib64tinfo5, libc6-amd64 (>= 2.15) Filename: pool/main/r/readline6/lib64readline6_6.3-4ubuntu2_i386.deb Size: 115362 MD5sum: db4e0bd4a8b760b0768615ab93a1b551 SHA1: 07abbcee5c187cf8e688288d1ebcd4a4f39ea4bc SHA256: cf942c7697f9f7f2bb8c5b67dc7f50f1d83fa190a863cc926d4526ce07ac64b9 Description: GNU readline and history libraries, run-time libraries (64-bit) Description-md5: 00a13288424388ae43765b5040434241 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64readline6-dev Priority: optional Section: libdevel Installed-Size: 612 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: readline6 Version: 6.3-4ubuntu2 Provides: lib64readline-dev Depends: lib64readline6 (= 6.3-4ubuntu2), libc6-dev-amd64 Conflicts: lib64readline-dev, lib64readline-gplv2-dev Filename: pool/main/r/readline6/lib64readline6-dev_6.3-4ubuntu2_i386.deb Size: 108730 MD5sum: a8133b89d1d725aecd27331149fe0472 SHA1: b6828a317f23002f65d373773c747c0240465d3c SHA256: d9d1d43747fab9b6eea4946c27840f7413385c69efbd53eb362bc121b107f29a Description: GNU readline and history libraries, development files (64-bit) Description-md5: 8cc45075e945d3b096b1308cf10078b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64stdc++-4.8-dev Priority: optional Section: libdevel Installed-Size: 6205 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gcc-4.8-dev (= 4.8.2-19ubuntu1), lib64stdc++6 (>= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/lib64stdc++-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 316396 MD5sum: 2bf6db3f1f5ae5a746c4b8896dab34aa SHA1: d92e73bd43bce280ed30bea662cb14c851c3ac5d SHA256: 6dd39c7f23f11395e82b883aed99a47b84ca5680791601119d112d37a75fd224 Description: GNU Standard C++ Library v3 (development files) Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64stdc++-4.8-dev-powerpc-cross Priority: extra Section: devel Installed-Size: 7394 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), lib64gcc-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11), lib64stdc++6-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libstdc++-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64stdc++-4.8-dev-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 319848 MD5sum: 1dfc45eda5f4823dd5a023ea2168964a SHA1: 2c8ade3c5a41020f283f0940f153cb9bf090a4b3 SHA256: 4d1f53fa007897d60d2916cb13b50794c5cb996edbc023362acb2aa24b9bd8b5 Description: GNU Standard C++ Library v3 (development files) (powerpc) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 9fad388828b4fa14ecd808a58b88704b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64stdc++6 Priority: optional Section: libs Installed-Size: 1207 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gcc1 (>= 1:4.1.1), libc6-amd64 (>= 2.17) Filename: pool/main/g/gcc-4.8/lib64stdc++6_4.8.2-19ubuntu1_i386.deb Size: 250338 MD5sum: d8862f8ab636c7bdcab018241c0d6507 SHA1: 84349f2e499282b461786874e00ff8d22aa63e6c SHA256: 23ab2d762efb9415a76833183df3ee32210aa5170b44cc077850715026c51a1d Description: GNU Standard C++ Library v3 (64bit) Homepage: http://gcc.gnu.org/ Description-md5: 0b7bd88ae533336258d0ca3201397c0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64stdc++6-4.7-dbg Priority: extra Section: debug Installed-Size: 22627 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib64stdc++6 (>= 4.7.3-12ubuntu1), libstdc++6-4.7-dev (= 4.7.3-12ubuntu1), lib64gcc1-dbg (>= 1:4.7.3-12ubuntu1), lib64gcc1 (>= 1:4.1.1), libc6-amd64 (>= 2.14) Conflicts: lib64stdc++6-4.0-dbg, lib64stdc++6-4.1-dbg, lib64stdc++6-4.2-dbg, lib64stdc++6-4.3-dbg, lib64stdc++6-4.4-dbg, lib64stdc++6-4.5-dbg, lib64stdc++6-4.6-dbg, lib64stdc++6-dbg Filename: pool/main/g/gcc-4.7/lib64stdc++6-4.7-dbg_4.7.3-12ubuntu1_i386.deb Size: 2735854 MD5sum: 6e7a76640eb8db76a3f7d1aaaaf46aa4 SHA1: a22d4b2580ad6ea77ade6767737413f7707efa86 SHA256: 075ff746506285daaabf783c4ff05083566c879410ce168a91d6e1ca45c7d9fb Description: GNU Standard C++ Library v3 (debugging files) Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64stdc++6-4.7-dev Priority: optional Section: libdevel Installed-Size: 6075 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: g++-4.7-multilib (<< 4.7.2-10), libstdc++6-4.7-dev (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib64gcc-4.7-dev (= 4.7.3-12ubuntu1), lib64stdc++6 (>= 4.7.3-12ubuntu1), libstdc++6-4.7-dev (= 4.7.3-12ubuntu1) Breaks: g++-4.7-multilib (<< 4.7.2-10), libstdc++6-4.7-dev (<< 4.7.2-10) Filename: pool/main/g/gcc-4.7/lib64stdc++6-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 304400 MD5sum: 3c23c89dcd8928f8240da37b27f9f9b4 SHA1: ed83d7528df926a9d6526b1c0b437e8960c9e70e SHA256: 8d8e41ba909d8a072cf89e8e18a8f5e74502f5cc0c153c74fb6080302ce4ff16 Description: GNU Standard C++ Library v3 (development files) Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64stdc++6-4.8-dbg Priority: extra Section: debug Installed-Size: 27312 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64stdc++6 (>= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1), lib64gcc1-dbg (>= 1:4.8.2-19ubuntu1), lib64gcc1 (>= 1:4.1.1), libc6-amd64 (>= 2.17) Conflicts: lib64stdc++6-4.0-dbg, lib64stdc++6-4.1-dbg, lib64stdc++6-4.2-dbg, lib64stdc++6-4.3-dbg, lib64stdc++6-4.4-dbg, lib64stdc++6-4.5-dbg, lib64stdc++6-4.6-dbg, lib64stdc++6-4.7-dbg, lib64stdc++6-dbg Filename: pool/main/g/gcc-4.8/lib64stdc++6-4.8-dbg_4.8.2-19ubuntu1_i386.deb Size: 3802558 MD5sum: 95298f51dee5d8ec77f68c731674c34e SHA1: ddc1daffa3fbd03625508a14460db04888410f61 SHA256: c2ded6b0bbbde6c6bb2cb92f6699c98cf608d797450ddc4fdbd133cbd47fd66c Description: GNU Standard C++ Library v3 (debugging files) Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64stdc++6-powerpc-cross Priority: extra Section: devel Installed-Size: 1530 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Provides: lib64stdc++6-powerpc-dcv1 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), lib64gcc1-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libc6-ppc64-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/lib64stdc++6-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 252674 MD5sum: 739fe3b5413b42d8503dc077d17100d5 SHA1: 14e7e863ef75f9cfdf5a12ee1cbd69c0f7d19c60 SHA256: ea67e717ffd101c4c7db2498f20d5dec393aed026d40235b33092e8b49faef40 Description: GNU Standard C++ Library v3 (64bit) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 0d9878cc5a1368affffc14c4004138ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64tinfo5 Priority: optional Section: libs Installed-Size: 462 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: lib64ncurses5 (<< 5.9-3) Depends: libc6-amd64 (>= 2.16) Breaks: lib64ncurses5 (<< 5.9-3) Filename: pool/main/n/ncurses/lib64tinfo5_5.9+20140118-1ubuntu1_i386.deb Size: 74804 MD5sum: 5bc020cd28601bd8594d37f202092216 SHA1: aef70bcba491a235c0fd580107de37446336024d SHA256: c04d6c1c00cc6dd249c4905fd31cf751565482832293620e8411ca83443bc33a Description: shared low-level terminfo library for terminal handling (64-bit) Homepage: http://invisible-island.net/ncurses/ Description-md5: 8149870374b84523eba149791f7dca6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64z1 Priority: optional Section: libs Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: i386 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Replaces: amd64-libs (<< 1.4) Depends: libc6-amd64 (>= 2.14) Filename: pool/main/z/zlib/lib64z1_1.2.8.dfsg-1ubuntu1_i386.deb Size: 56134 MD5sum: de2a83a874dd74d83ba9931d3255fd13 SHA1: 0a132b8f1943247e21c0421a2be111a505279a3b SHA256: 65b4befa55c560df061c4f5575b1be3d11f4344d831fd1a6f5558e4b35fb6ec9 Description: compression library - 64 bit runtime Homepage: http://zlib.net/ Description-md5: 0dd45789d18a8fd0926142096f194c66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lib64z1-dev Priority: optional Section: libdevel Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: i386 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Replaces: amd64-libs-dev (<< 1.4) Provides: lib64z-dev Depends: lib64z1 (= 1:1.2.8.dfsg-1ubuntu1), zlib1g-dev (= 1:1.2.8.dfsg-1ubuntu1), lib64c-dev Filename: pool/main/z/zlib/lib64z1-dev_1.2.8.dfsg-1ubuntu1_i386.deb Size: 60086 MD5sum: 0ad543006c59a2ac116af2eb5d96b6b6 SHA1: 3b8b0914c3f175e7b1540ef512ba59ba71347314 SHA256: e1cba02f3d1081c8bca230674eb9ca08a7cc75f9a72bc66bc2fe1ae903be6022 Description: compression library - 64 bit development Homepage: http://zlib.net/ Description-md5: 64d869dcbc55d58070c70ba8cf33ee51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaa1 Priority: optional Section: libs Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Gergely Nagy Architecture: i386 Source: aalib Version: 1.4p5-41 Replaces: aalib1 Provides: aalib1 Depends: libc6 (>= 2.15), libgpm2 (>= 1.20.4), libncurses5 (>= 5.5-5~), libslang2 (>= 2.2.4), libtinfo5, libx11-6 Pre-Depends: multiarch-support Filename: pool/main/a/aalib/libaa1_1.4p5-41_i386.deb Size: 53458 MD5sum: aced1ef2d7b17b252fb77b34f39a2858 SHA1: b0a09b7967ae2267728b044ea6bd91a650fd2a65 SHA256: 5a5b30e4c1605d30d1bd488efbd51e911993633c244ad775fa642190e8ddf601 Description: ASCII art library Multi-Arch: same Homepage: http://aa-project.sourceforge.net/aalib/ Description-md5: e2907f5353392e24d8f1f2a5e56005ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libaa1-dbg Priority: extra Section: libs Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Gergely Nagy Architecture: i386 Source: aalib Version: 1.4p5-41 Depends: libaa1 (= 1.4p5-41) Filename: pool/main/a/aalib/libaa1-dbg_1.4p5-41_i386.deb Size: 102548 MD5sum: a0cdb827bb1288a0ae866f84ad95ac31 SHA1: 0c96b0b886379a65a721530b50a69c553a9ff02c SHA256: b5ec93117aeb052f678fbad7ceffb702c8f003b60c8bf55dae70ac0ddabb6412 Description: ASCII art library, debugging symbols Multi-Arch: same Homepage: http://aa-project.sourceforge.net/aalib/ Description-md5: 76947bc97a610d93762196ee9d41bc3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaa1-dev Priority: optional Section: libdevel Installed-Size: 335 Maintainer: Ubuntu Developers Original-Maintainer: Gergely Nagy Architecture: i386 Source: aalib Version: 1.4p5-41 Replaces: aalib1-dev Depends: libaa1 (= 1.4p5-41), libx11-dev, libslang2-dev, libncurses5-dev Conflicts: aalib1-dev Filename: pool/main/a/aalib/libaa1-dev_1.4p5-41_i386.deb Size: 142442 MD5sum: 0c47cc737077fa12738b4b3cecc2dbbf SHA1: 90375cb1a4bb173eb7e1d63e0743dc3cd133ae1f SHA256: a32318d8226b40ec3b8f161a27d880bfd0bf8d41cebc6ea9c5733966451a3f85 Description: ASCII art library, development kit Homepage: http://aa-project.sourceforge.net/aalib/ Description-md5: 79d999bcaca61f08c24bfa21e8c81ce2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaal-dev Priority: optional Section: libdevel Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Felix Zielcke Architecture: i386 Source: libaal Version: 1.0.5-6 Depends: libc6-dev | libc-dev Breaks: libreiser4-dev (<< 1.0.7-3) Filename: pool/main/liba/libaal/libaal-dev_1.0.5-6_i386.deb Size: 29082 MD5sum: 78ee6a33aa2431bb4e2be9707954851d SHA1: 5e750a668eede496313160d424e5e67ad9115e3e SHA256: a7e92e1b83d2fb3b347870dbb17e6f9c24fd716cfba574ee422818f8914f4627 Description: Reiser4's application abstraction library: Development files Homepage: http://sourceforge.net/projects/reiser4/ Description-md5: 51836a2ec851d7d89347baeca39945c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccount-plugin-1.0-0 Priority: optional Section: libs Installed-Size: 77 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: gnome-control-center-signon Version: 0.1.7~+14.04.20140211.2-0ubuntu4 Depends: libaccounts-glib0 (>= 1.5), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libsignon-glib1 (>= 1.8), signond Recommends: unity-control-center-signon Filename: pool/main/g/gnome-control-center-signon/libaccount-plugin-1.0-0_0.1.7~+14.04.20140211.2-0ubuntu4_i386.deb Size: 15986 MD5sum: 89c17049329e1365aacd7090cbe2cebf SHA1: e283d9ed47b41a1592ca5c40ccf82aba03652fd2 SHA256: e2c195c982c1c1d2e996ff948181d632a06bf29f185a632a046364967e85976f Description: libaccount-plugin for Unity Control Center Homepage: https://launchpad.net/online-accounts-gnome-control-center Description-md5: 44d7283d153c93a3029c4ed8c484c707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libaccount-plugin-1.0-dev Priority: optional Section: libdevel Installed-Size: 120 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: gnome-control-center-signon Version: 0.1.7~+14.04.20140211.2-0ubuntu4 Depends: gir1.2-accountplugin-1.0, libaccount-plugin-1.0-0 (= 0.1.7~+14.04.20140211.2-0ubuntu4), libglib2.0-dev, libgtk-3-dev, libaccounts-glib-dev (>= 1.7), libsignon-glib-dev (>= 1.8) Filename: pool/main/g/gnome-control-center-signon/libaccount-plugin-1.0-dev_0.1.7~+14.04.20140211.2-0ubuntu4_i386.deb Size: 8416 MD5sum: 8e6c110a1f15aabdff630afdf36a934b SHA1: 2bbb293515daaf31a4d51fd2a1e7cac84e0dfbb0 SHA256: dffeac3cd0d8be240020f515c80be2fe8916e530c5478ff6b2482542515d390c Description: libaccount-plugin for Unity Control Center - devel Homepage: https://launchpad.net/online-accounts-gnome-control-center Description-md5: 6004044a8b47bc8ad3d74da0eb75fa79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccount-plugin-1.0-doc Priority: optional Section: doc Installed-Size: 174 Maintainer: Ubuntu Desktop Team Architecture: all Source: gnome-control-center-signon Version: 0.1.7~+14.04.20140211.2-0ubuntu4 Filename: pool/main/g/gnome-control-center-signon/libaccount-plugin-1.0-doc_0.1.7~+14.04.20140211.2-0ubuntu4_all.deb Size: 16442 MD5sum: ed2c46c089b3601bc396818679349b41 SHA1: d4f57307cabcc56b99a031fac88550150fe0be68 SHA256: b7cba2fc6636d2b78b669150adaecd3ea1bfd7e81a23e9275620bde10814b698 Description: libaccount-plugin for Unity Control Center - Developer Docs Homepage: https://launchpad.net/online-accounts-gnome-control-center Description-md5: cf59e543993094c4ff7fb97f60bde28e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccount-plugin-generic-oauth Priority: optional Section: gnome Installed-Size: 47 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Replaces: account-plugin-generic-oauth (<< 0.10bzr13.04.30) Depends: libaccount-plugin-1.0-0 (>= 0.0.1), libc6 (>= 2.1.3), libglib2.0-0 (>= 2.14.0), signon-plugin-oauth2 Conflicts: account-plugin-generic-oauth (<< 0.10bzr13.04.30) Breaks: account-plugin-generic-oauth (<< 0.10bzr13.04.30) Filename: pool/main/a/account-plugins/libaccount-plugin-generic-oauth_0.11+14.04.20140409.1-0ubuntu1_i386.deb Size: 4714 MD5sum: 5149dab9a71721a30a26d262eaf864bb SHA1: 4832014c92afbe07d1aa6814f20853b3e4dba01f SHA256: 7b39c176fb0baa4b61f89ba268fbe223943dc954c3e8d6bb580757875074dd03 Description: GNOME Control Center account plugin for single signon - generic OAuth Homepage: https://launchpad.net/account-plugins Description-md5: 88383e5d8dc041d75f5a4d258c5d6347 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libaccount-plugin-google Priority: optional Section: gnome Installed-Size: 51 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: account-plugins Version: 0.11+14.04.20140409.1-0ubuntu1 Replaces: account-plugin-google (<< 0.10bzr13.04.30) Depends: libaccount-plugin-1.0-0 (>= 0.0.6), libc6 (>= 2.1.3), libglib2.0-0 (>= 2.14.0), signon-plugin-oauth2 Conflicts: account-plugin-google (<< 0.10bzr13.04.30) Breaks: account-plugin-google (<< 0.10bzr13.04.30) Filename: pool/main/a/account-plugins/libaccount-plugin-google_0.11+14.04.20140409.1-0ubuntu1_i386.deb Size: 5108 MD5sum: 767fb1cb38516619a5d886f12534494d SHA1: 690560ebe80a3501ed22878fe55696fcb103e2fe SHA256: 4b63af020020dc0bbbbd4b631f786265836466d291fa5df966cc3ba590f05a0e Description: GNOME Control Center account plugin for single signon - Google Auth Homepage: https://launchpad.net/account-plugins Description-md5: 61ca924881c1aaeb0a91de03d0a65ac7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libaccounts-glib-dev Priority: optional Section: libdevel Installed-Size: 264 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libaccounts-glib Version: 1.15+14.04.20131126.2-0ubuntu3 Depends: gir1.2-accounts-1.0, libaccounts-glib0 (= 1.15+14.04.20131126.2-0ubuntu3), libdbus-glib-1-dev, libglib2.0-dev, libsqlite3-dev, libxml2-dev Filename: pool/main/liba/libaccounts-glib/libaccounts-glib-dev_1.15+14.04.20131126.2-0ubuntu3_i386.deb Size: 19930 MD5sum: 6fa8371dfab4874472a03db21e1e5604 SHA1: 52c764e903b4ddf4fef2157db20795275c2cf0ec SHA256: bd4c20293ed209e1a71006863d9f9113cd45edb09fe66bb29adf2bc383b3e38d Description: library for single signon - development files Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 765d6d1ddff9dd3cf4394fe30970f017 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccounts-glib-doc Priority: optional Section: doc Installed-Size: 576 Maintainer: Ubuntu Desktop Team Architecture: all Source: libaccounts-glib Version: 1.15+14.04.20131126.2-0ubuntu3 Filename: pool/main/liba/libaccounts-glib/libaccounts-glib-doc_1.15+14.04.20131126.2-0ubuntu3_all.deb Size: 44498 MD5sum: 5a3ef2b317c2bfaf05933225aec558f6 SHA1: c6751e30a5b3213dd809cb0405e5839f5a0894e9 SHA256: c6abe1a04da8903cec9baf78544df62beaa3df87ce4b7d0248d065a72a84ba97 Description: library for single signon - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 8a097664e340ebf00e0822ccc0ac4e04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccounts-glib0 Priority: optional Section: libs Installed-Size: 147 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libaccounts-glib Version: 1.15+14.04.20131126.2-0ubuntu3 Depends: libc6 (>= 2.17), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/liba/libaccounts-glib/libaccounts-glib0_1.15+14.04.20131126.2-0ubuntu3_i386.deb Size: 38212 MD5sum: 36eb979ef583efc69f4f90962f4fefe3 SHA1: 47a946ebe67c07b0742f0edb00cbf2ba03789fc4 SHA256: 3ac1c4d5bdc9d6ad895f7a97227cba0d78e06123de8c94b72d23297509e6ea79 Description: library for single signon Multi-Arch: same Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 04337bac8cab900bc597648cf0e9cf55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libaccounts-qt-dev Priority: optional Section: libdevel Installed-Size: 89 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libaccounts-qt Version: 1.11+14.04.20140410.1-0ubuntu1 Replaces: libaccounts-qt5-dev (<< 1.11+14.04.20140410) Depends: libaccounts-qt1 (= 1.11+14.04.20140410.1-0ubuntu1) Breaks: libaccounts-qt5-dev (<< 1.11+14.04.20140410) Filename: pool/main/liba/libaccounts-qt/libaccounts-qt-dev_1.11+14.04.20140410.1-0ubuntu1_i386.deb Size: 7578 MD5sum: ed49c379cab463787fb7a33d35cbcdc4 SHA1: b44a7cbd485de49611ff0a741979c34723cd5d54 SHA256: 89a33dac0fdb7600625ddea792ac026cb92b921e8998ec7983073387e2b48692 Description: QT library for single sign on - development files Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 398e3f15b81b6da49a898ee092e3c4de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccounts-qt-doc Priority: optional Section: doc Installed-Size: 1381 Maintainer: Ubuntu Desktop Team Architecture: all Source: libaccounts-qt Version: 1.11+14.04.20140410.1-0ubuntu1 Filename: pool/main/liba/libaccounts-qt/libaccounts-qt-doc_1.11+14.04.20140410.1-0ubuntu1_all.deb Size: 333774 MD5sum: 59165a681b7cd2f88fc9206e473d4489 SHA1: c1c087fd5926bdbd1860c2afda611b66be23dd9e SHA256: d46defdaa0658884f6f3f58acc9f48b7fe5b60a4fff78dd24f8aafbfd13b6b18 Description: QT library for single sign on - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 3f63e418e13b388be318058ef8ec1098 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccounts-qt1 Priority: optional Section: libs Installed-Size: 130 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libaccounts-qt Version: 1.11+14.04.20140410.1-0ubuntu1 Depends: libaccounts-glib0 (>= 1.14), libc6 (>= 2.1.3), libglib2.0-0 (>= 2.35.8), libqt4-xml (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/liba/libaccounts-qt/libaccounts-qt1_1.11+14.04.20140410.1-0ubuntu1_i386.deb Size: 31084 MD5sum: 04fd6a0f100b0c38474f8c7303fa0c93 SHA1: 209967464b271554fd5046815b34291361c05d3d SHA256: 042d6987906c407ab200051216b9af2e3742c6f0fa2894a075ddd1797e490846 Description: QT library for single sign on Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 4ff445e13de255a469861d743f92e199 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libaccounts-qt5-1 Priority: optional Section: libs Installed-Size: 138 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libaccounts-qt Version: 1.11+14.04.20140410.1-0ubuntu1 Depends: libaccounts-glib0 (>= 1.14), libc6 (>= 2.1.3), libglib2.0-0 (>= 2.35.8), libqt5core5a (>= 5.0.2), libqt5xml5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/liba/libaccounts-qt/libaccounts-qt5-1_1.11+14.04.20140410.1-0ubuntu1_i386.deb Size: 33984 MD5sum: 197861f92fc86f9135678f9a2e9fc1ca SHA1: eeff91e7433baa2b3802f859c273fad639e81a75 SHA256: d8bd39624f22952da69fdd24754a39b3f52f2d22329f24b97210130c12c07553 Description: QT library for single sign on Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 4ff445e13de255a469861d743f92e199 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libaccounts-qt5-dev Priority: optional Section: libdevel Installed-Size: 81 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libaccounts-qt Version: 1.11+14.04.20140410.1-0ubuntu1 Depends: libaccounts-qt5-1 (= 1.11+14.04.20140410.1-0ubuntu1) Filename: pool/main/liba/libaccounts-qt/libaccounts-qt5-dev_1.11+14.04.20140410.1-0ubuntu1_i386.deb Size: 7216 MD5sum: 43c4c1be9431fa6462e29d1040c4ee48 SHA1: c7c5e435fbe6b71621c27a0b10ee1f4b362d06f0 SHA256: c6bb0a5d57d6b6fca761ff6c4f6ae997a66a6740700d4f878814085a77eb074d Description: QT library for single sign on - development files Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 398e3f15b81b6da49a898ee092e3c4de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccountsservice-dbg Priority: extra Section: debug Installed-Size: 306 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: accountsservice Version: 0.6.35-0ubuntu7 Depends: libaccountsservice0 (= 0.6.35-0ubuntu7) Filename: pool/main/a/accountsservice/libaccountsservice-dbg_0.6.35-0ubuntu7_i386.deb Size: 187812 MD5sum: 70597049b3643366466af7548eccdd6c SHA1: e8d0525ea4d9292552354f4360c78b6ae2e26a90 SHA256: a9d7c8abaa54506449ff6cc61b00a90066f266c7f9270c7bbd185ae60927db0c Description: query and manipulate user account information - debug Multi-Arch: same Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: 67e2c3a1e0dc7dd3b34232ab48d143a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccountsservice-dev Priority: optional Section: libdevel Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: accountsservice Version: 0.6.35-0ubuntu7 Depends: gir1.2-accountsservice-1.0 (= 0.6.35-0ubuntu7), libaccountsservice0 (= 0.6.35-0ubuntu7), libglib2.0-dev (>= 2.25.11), libpolkit-gobject-1-dev Filename: pool/main/a/accountsservice/libaccountsservice-dev_0.6.35-0ubuntu7_i386.deb Size: 9946 MD5sum: 151d6d5737b2e28b667f6aa0826ed8b4 SHA1: 008833e246829e8c945fc4fac9b9cfca662be95e SHA256: eb57a7528f4f0bb55e4e7839e02d3d15cf786b99bd97699c9c18f9b117c4e89d Description: query and manipulate user account information - header files Multi-Arch: same Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: d0607148cea2974f2cc311a5e0bab4f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccountsservice-doc Priority: optional Section: doc Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: all Source: accountsservice Version: 0.6.35-0ubuntu7 Filename: pool/main/a/accountsservice/libaccountsservice-doc_0.6.35-0ubuntu7_all.deb Size: 19820 MD5sum: 5a07cf89418dc337e37384de930f5d89 SHA1: a8d3e011372367e24628e8c7da3350030099867c SHA256: a2a68e68bbcba7ac44407df31ed85db0964ea89d4ff706f81e09c50d0eecdae1 Description: query and manipulate user account information - documentation Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: 15ee25a15ef232cbf860503a04604aa7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaccountsservice0 Priority: standard Section: libs Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: accountsservice Version: 0.6.35-0ubuntu7 Depends: libc6 (>= 2.3.6-6~), libgcr-base-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.37.3), libsystemd-login0 (>= 186) Breaks: accountsservice (<< 0.6.5) Filename: pool/main/a/accountsservice/libaccountsservice0_0.6.35-0ubuntu7_i386.deb Size: 67812 MD5sum: 93aeb17f5bc8b974023a1e18a9559998 SHA1: 9159919e6fd0ae132323e5fb9f04eb94b49b4c38 SHA256: 10d96459c1d60f2f647962078c14be6b6ccda400cd66a5150ef474f32052b7ae Description: query and manipulate user account information - shared libraries Multi-Arch: same Homepage: http://cgit.freedesktop.org/accountsservice/ Description-md5: d536aa425d73c3ead2f37bd9a771e648 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libacl1 Priority: required Section: libs Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: acl Version: 2.2.52-1 Depends: libattr1 (>= 1:2.4.46-8), libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: acl (<< 2.0.0), libacl1-kerberos4kth Filename: pool/main/a/acl/libacl1_2.2.52-1_i386.deb Size: 18078 MD5sum: 929485bba97504bc9a660edd26d01712 SHA1: eb4e6b9dde0ab8317671873d31551c94b9b96bb7 SHA256: c74b0b6a18adf89e1c85a5479cf82f4e933a713fd24ca70c381eae6ed4aca790 Description: Access control list shared library Multi-Arch: same Homepage: http://savannah.nongnu.org/projects/acl/ Description-md5: 65c1428a85567ba04597e882b0aecfe2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libacl1-dev Priority: extra Section: libdevel Installed-Size: 209 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: acl Version: 2.2.52-1 Replaces: acl-dev Provides: acl-dev Depends: libc6-dev | libc-dev, libacl1 (= 2.2.52-1), libattr1-dev (>= 1:2.4.46-8) Conflicts: acl (<< 2.0.0), acl-dev, kerberos4kth-dev (<< 1.2.2-4) Filename: pool/main/a/acl/libacl1-dev_2.2.52-1_i386.deb Size: 78464 MD5sum: 05a79bea6d2247469de1e51ef7878a18 SHA1: 3ceb89107e365d6fc94b8cb7a1388799180b5646 SHA256: e8825364beab133d6d95c446f5a4abb8017c1f5074e454055a6cc05b4216bdb5 Description: Access control list static libraries and headers Homepage: http://savannah.nongnu.org/projects/acl/ Description-md5: 6f959f1da9dd08f65124fad3eb738dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libadns1 Priority: optional Section: libs Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: adns Version: 1.4-2ubuntu1 Depends: libc6 (>= 2.16) Suggests: adns-tools Filename: pool/main/a/adns/libadns1_1.4-2ubuntu1_i386.deb Size: 54964 MD5sum: 2ff761038070668d24b33ee5e44debe6 SHA1: 7d2e68f1e0c80d8b322bfc31f79b4213f27df511 SHA256: ac49766fa7b9288ce24489caae38c5e5377a81ca8d8d1b64a064109290fe2a57 Description: Asynchronous-capable DNS client library and utilities Homepage: http://www.chiark.greenend.org.uk/~ian/adns/ Description-md5: ab5fbefe25e360eb57b7ed6cb736bfcf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libadns1-dev Priority: optional Section: libdevel Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: adns Version: 1.4-2ubuntu1 Depends: libadns1 (= 1.4-2ubuntu1), libc6-dev Conflicts: libadns0 Filename: pool/main/a/adns/libadns1-dev_1.4-2ubuntu1_i386.deb Size: 59410 MD5sum: dfd512809415ec35bc7e6802a38841c4 SHA1: 9bb2944a2d16a7c74c6c6217e66e33dff2123cf2 SHA256: ad52f3d91a8b72f32becdae57031aff626a42e3dc8df741cc20b180221e9a809 Description: Asynchronous-capable DNS client library and utilities Homepage: http://www.chiark.greenend.org.uk/~ian/adns/ Description-md5: c8c0ae8098645d1f31b45547febb1b87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaio-dev Priority: optional Section: libdevel Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: i386 Source: libaio Version: 0.3.109-4 Depends: libaio1 (= 0.3.109-4) Filename: pool/main/liba/libaio/libaio-dev_0.3.109-4_i386.deb Size: 14184 MD5sum: 3608566f10ef82deb514b56f1b7865c2 SHA1: d147515eda91a7789b07ef244b6112fb3bd1a2ec SHA256: 4ece31c2a45d2f3128ca1d2b4ce87bbf054dd2ddb4e540ea10335032394fd740 Description: Linux kernel AIO access library - development files Homepage: http://www.kernel.org/pub/linux/libs/aio/ Description-md5: d20b50c4f342f11af5f6427456b725d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libaio1 Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: i386 Source: libaio Version: 0.3.109-4 Pre-Depends: multiarch-support Filename: pool/main/liba/libaio/libaio1_0.3.109-4_i386.deb Size: 6578 MD5sum: 500e4369815e623c47ba6fa08e5ca30a SHA1: bf416850bf4f3f55fa437bd080d3306688888f37 SHA256: 236f41512ff44852feae6d62d0462758953304a7232aa63763d9cb0859ae0c52 Description: Linux kernel AIO access library - shared library Multi-Arch: same Homepage: http://www.kernel.org/pub/linux/libs/aio/ Description-md5: 157af2c75c8ea8af75b168f50ebe9f96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, samba-server, lamp-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-audio Package: libaio1-dbg Priority: optional Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: i386 Source: libaio Version: 0.3.109-4 Depends: libaio1 (= 0.3.109-4) Filename: pool/main/liba/libaio/libaio1-dbg_0.3.109-4_i386.deb Size: 6116 MD5sum: 3e7bc45bc7c4b741f3cd5d5a6546ce11 SHA1: 08ebd262ef4d3696fb5b8385d5f1dabaa6ed3cd8 SHA256: 14719b233c42ee9d01666842ad92b5ba04da8604df63cf4c9a2d9c3c133fdeb3 Description: Linux kernel AIO access library - debugging symbols Multi-Arch: same Homepage: http://www.kernel.org/pub/linux/libs/aio/ Description-md5: 3f639d1fe235cfbdc7c19a3472492f53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libalgorithm-c3-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.08-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/liba/libalgorithm-c3-perl/libalgorithm-c3-perl_0.08-1_all.deb Size: 11804 MD5sum: 4bd0af66c7c44e5ef196530b59e2610b SHA1: db354e55f1f949965ab33118cc7d8de3810f4788 SHA256: b5eda8c1439e15989f96631ea5c967ac7231368282afc9b5611ce9107882f3e2 Description: Perl module for merging hierarchies using the C3 algorithm Homepage: http://search.cpan.org/dist/Algorithm-C3/ Description-md5: e385bd8aff28a1a6cf99ba81ce8712a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libalgorithm-diff-perl Priority: optional Section: perl Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.19.02-3 Depends: perl Recommends: libalgorithm-diff-xs-perl Filename: pool/main/liba/libalgorithm-diff-perl/libalgorithm-diff-perl_1.19.02-3_all.deb Size: 49964 MD5sum: 7462f70e9e9b691ca4a4657371d6ba8e SHA1: e6a0ab1c5408a912216dcc8daa6499ec37cbf252 SHA256: dfaa00d820b4a854acb53b4ffa1049e4d500f05802471e48189208c36f136c6d Description: module to find differences between files Homepage: http://search.cpan.org/~tyemq/Algorithm-Diff/ Description-md5: 68eff3df92c200909c91eac9a8db8a70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libalgorithm-diff-xs-perl Priority: optional Section: perl Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.04-2build4 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3), libalgorithm-diff-perl Filename: pool/main/liba/libalgorithm-diff-xs-perl/libalgorithm-diff-xs-perl_0.04-2build4_i386.deb Size: 13092 MD5sum: 8c01a3998a2581f19e2996a8dfd70ba0 SHA1: dbccbdd4dfdc1e32d3e612aee5a84500efb43cb7 SHA256: 8ead20cfa66969a6d6f8ca0fc621904c7a5d8461cb473a7846223581be3a25d5 Description: module to find differences between files (XS accelerated) Homepage: http://search.cpan.org/dist/Algorithm-Diff-XS/ Description-md5: 56feaeb59eda2127e36fd831b5a423ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libalgorithm-merge-perl Priority: optional Section: perl Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.08-2 Depends: perl, libalgorithm-diff-perl Filename: pool/main/liba/libalgorithm-merge-perl/libalgorithm-merge-perl_0.08-2_all.deb Size: 12672 MD5sum: bf1355aea7ab249fcd344cf0c692bc6c SHA1: 54f2881183605c5cd41f9272942b9e860d459025 SHA256: 5ac0a3029a7ad1f3f52e2c313f6f4d02c5e3a500931c0114c376498fce6bca90 Description: Perl module for three-way merge of textual data Homepage: http://search.cpan.org/dist/Algorithm-Merge/ Description-md5: 24ecd848b7a3429afcfb05486a52c941 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libamd2.3.1 Priority: optional Section: libs Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libamd2.3.1_4.2.1-3ubuntu1_i386.deb Size: 17928 MD5sum: 84b3f97a861cc9e9268bf7bf8b125317 SHA1: 4a9c7f58283db662acee9547ddf5987da73dee15 SHA256: cb9a097fd653d4ff04e80ac37786547df1fdfe49fe3f5d848070f6ed82579631 Description: approximate minimum degree ordering library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 97217997208933cd4300b4fdf03c0d3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libandroid-properties-dev Priority: extra Section: libdevel Installed-Size: 67 Maintainer: Ubuntu Developers Architecture: i386 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Depends: libandroid-properties1 (= 0.1.0+git20131207+e452e83-0ubuntu12) Filename: pool/main/libh/libhybris/libandroid-properties-dev_0.1.0+git20131207+e452e83-0ubuntu12_i386.deb Size: 5156 MD5sum: d9ddbc3cf2a8b418c4a9268d02c3c9ce SHA1: 4f82e5cfe36f8a58737f32a361d65bf952c728d3 SHA256: ef1ef9ab7578e9117435d318c6e150ea10b25195189912d5e6d38bbb5c3314c6 Description: Development headers files for libandroid-properties Description-md5: fd78846cc0eb621999aaf215babfb840 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libandroid-properties1 Priority: extra Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Architecture: i386 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Depends: libc6 (>= 2.4) Filename: pool/main/libh/libhybris/libandroid-properties1_0.1.0+git20131207+e452e83-0ubuntu12_i386.deb Size: 9710 MD5sum: 427c3dad721ec076db8f02c8eb49f77c SHA1: 0a079f7d1d2ca0eea7a875025a21048d4b1483b0 SHA256: 2fa4e9fa6ae61317813379fcc08f51b2e796d76abfd2558f4d355afb1e03589f Description: Library to provide access to get, set and list Android properties Description-md5: 9af1ee376636863e49ba13ab6b202faa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libanthy-dev Priority: optional Section: libdevel Installed-Size: 600 Maintainer: Ubuntu Developers Original-Maintainer: NOKUBI Takatsugu Architecture: i386 Source: anthy Version: 9100h-23ubuntu2 Depends: libanthy0 (= 9100h-23ubuntu2) Filename: pool/main/a/anthy/libanthy-dev_9100h-23ubuntu2_i386.deb Size: 158062 MD5sum: 9aba52368982fd52980f9256c490bfbe SHA1: d3bec39b6d5f629c9e1104755f629eb8d5086133 SHA256: 804c6a51c4602a15e613858c81f614d5654e42efc2be5904716caddc26d1839e Description: input method for Japanese - development files Multi-Arch: same Homepage: http://anthy.sourceforge.jp/ Description-md5: 1609cf41dbe5259268a28711eb7c2e06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libanthy0 Priority: optional Section: libs Installed-Size: 455 Maintainer: Ubuntu Developers Original-Maintainer: NOKUBI Takatsugu Architecture: i386 Source: anthy Version: 9100h-23ubuntu2 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/a/anthy/libanthy0_9100h-23ubuntu2_i386.deb Size: 129760 MD5sum: 27ef190ec8704b13fbedb964cfb279e6 SHA1: ede6cc30323311526e1eb270092a8ffad965998a SHA256: 682e3057e6e6fd8b942c7d156d79c2183d89b6926bdb392be8fd9b49bdfea3bd Description: input method for Japanese - runtime library Multi-Arch: same Homepage: http://anthy.sourceforge.jp/ Description-md5: d11bb6a6c71781db2098f5a10adebb24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-usb Package: libantlr-dev Priority: optional Section: libdevel Installed-Size: 1285 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: i386 Source: antlr Version: 2.7.7+dfsg-5 Recommends: antlr Filename: pool/main/a/antlr/libantlr-dev_2.7.7+dfsg-5_i386.deb Size: 325660 MD5sum: 7011a2c77e88b7c6c179a27ad2c9422c SHA1: 256aec622891847e55fcdea80b9233299724aa98 SHA256: f3393cb6f832fe9c1d8d68ac928921bd3ecefbc2ed5e7e4eaa56314b3a379267 Description: language tool for constructing recognizers, compilers etc Homepage: http://www.antlr2.org/ Description-md5: 0aded9465f9780556491dc34397d806c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libantlr-java Priority: optional Section: devel Installed-Size: 492 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: antlr Version: 2.7.7+dfsg-5 Replaces: antlr (<< 2.7.7-8) Breaks: antlr (<< 2.7.7-8) Filename: pool/main/a/antlr/libantlr-java_2.7.7+dfsg-5_all.deb Size: 427352 MD5sum: ae77a5c634e35d8bfe06822964b5a27b SHA1: 50def6cbeb1360fc9a7f7c0cdea22b71c5679e99 SHA256: f7f6792adb4bc3c92fff430c25d3b4cb45c7b4e0e70e5bc21ae9659a0c9fb0d2 Description: language tool for constructing recognizers, compilers etc (java library) Homepage: http://www.antlr2.org/ Description-md5: 4ab4ec9aa6420590f40b10392c10776e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libao-common Priority: optional Section: libs Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: all Source: libao Version: 1.1.0-2ubuntu2 Replaces: libao4 (<< 1.0.0-2) Conflicts: libao2 Breaks: libao4 (<< 1.0.0-2) Filename: pool/main/liba/libao/libao-common_1.1.0-2ubuntu2_all.deb Size: 6278 MD5sum: f3f848ab211c5f4c77675ca86fba0e15 SHA1: 6cac05d571eb31cf7a85d6eba525564b6675ee32 SHA256: 6b67d19dd12a85db1a2842997048f5b4452439e1393955bab9e25b23f98e7948 Description: Cross Platform Audio Output Library (Common files) Multi-Arch: foreign Homepage: http://www.xiph.org/ao/ Description-md5: 1d9ee00d87630ccf7aaefc64d0d7db8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-dvd-live, ubuntustudio-audio Package: libao-dbg Priority: extra Section: libdevel Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: i386 Source: libao Version: 1.1.0-2ubuntu2 Depends: libao4 (= 1.1.0-2ubuntu2) Filename: pool/main/liba/libao/libao-dbg_1.1.0-2ubuntu2_i386.deb Size: 76532 MD5sum: 875e17a44100a711d0b40e88cd766fc9 SHA1: 1b92c311a19cf3f37dad72a8bf0c28ec745ba3d6 SHA256: 746dd768c647f1a363bf8321f48fa7b3dfa63c5bfcf194f02f21f645fb9dcfdd Description: Cross Platform Audio Output Library Debug Symbols Multi-Arch: same Homepage: http://www.xiph.org/ao/ Description-md5: 32ad063053b3245f115bae362892de40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libao-dev Priority: optional Section: libdevel Installed-Size: 250 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: i386 Source: libao Version: 1.1.0-2ubuntu2 Depends: libao4 (= 1.1.0-2ubuntu2), libc6-dev Filename: pool/main/liba/libao/libao-dev_1.1.0-2ubuntu2_i386.deb Size: 46208 MD5sum: cdee505fb2bd5ee4ba675fbbbb2769c0 SHA1: 9e4ba4a8c3e89849bc08c49ffa471734d9087f8f SHA256: 32aa7b2d26101b4025948734ad617dc6edf931e0b928e287627487ea8c2eb0a3 Description: Cross Platform Audio Output Library Development Multi-Arch: same Homepage: http://www.xiph.org/ao/ Description-md5: ca2756e818c8b0080fd300dca01c2429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libao4 Priority: optional Section: libs Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: i386 Source: libao Version: 1.1.0-2ubuntu2 Replaces: libao-pulse Depends: libc6 (>= 2.4), libao-common Pre-Depends: multiarch-support Suggests: libasound2, libaudio2, libesd0 | libesd-alsa0, libpulse0 Filename: pool/main/liba/libao/libao4_1.1.0-2ubuntu2_i386.deb Size: 30670 MD5sum: a4288832ea67413ef7e41b85393de6cb SHA1: f0c8e4bcac4f278f9914dc0118b298ed8c9cf663 SHA256: 4f6b131a08725d76746cdcaddd19d8aa07b929192cde7579b50526427643c69d Description: Cross Platform Audio Output Library Multi-Arch: same Homepage: http://www.xiph.org/ao/ Description-md5: 56c5e1da00794da09de8d22338ca5b2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-dvd-live, ubuntustudio-audio Package: libapache-pom-java Priority: optional Section: java Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: apache-pom Version: 10-2build1 Filename: pool/main/a/apache-pom/libapache-pom-java_10-2build1_all.deb Size: 4022 MD5sum: 4553871e98d3c8c0de6963da1570bc01 SHA1: 4996de47c2593fed1f42a31531752ec0b1df021a SHA256: f6c170c4ba19ddc76244900aab165e2cca9b2062a3211b31c52dc026dc165afe Description: Maven metadata for all Apache Software projects Homepage: http://maven.apache.org/pom/asf/ Description-md5: d7026a9defe5034a197af30017c1b176 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapache2-mod-apparmor Priority: extra Section: web Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: libapparmor1 (>= 2.7.0~beta1+bzr1772), libc6 (>= 2.1.3), apache2-api-20120211 Filename: pool/main/a/apparmor/libapache2-mod-apparmor_2.8.95~2430-0ubuntu5_i386.deb Size: 14058 MD5sum: a0792ce8c7be9cfd0f5ffd3fd503a8ac SHA1: 6e58fc3a8742e7750a2092684a833a884444e61c SHA256: fba4073aa0914cae2d0ed4063baf9b4bfcc969ce70d99eff31cb1ed8594b4134 Description: changehat AppArmor library as an Apache module Homepage: http://apparmor.net/ Description-md5: a5901c8ca6f4b08d12fc507332ec3d1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapache2-mod-auth-mysql Priority: optional Section: web Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Joey Schulze Architecture: i386 Source: mod-auth-mysql Version: 4.3.9-13.1ubuntu3 Depends: libc6 (>= 2.4), libmysqlclient18 (>= 5.5.24+dfsg-1) Filename: pool/main/m/mod-auth-mysql/libapache2-mod-auth-mysql_4.3.9-13.1ubuntu3_i386.deb Size: 21076 MD5sum: 265258994f8579bfcc125ebb292a2241 SHA1: 76bb705fca9735c7c6fa1d2c4928acaa5005a9fb SHA256: 874088e1037f76dc92993b93c0e0ea58e690804a260daed400b1ea54afb4daa0 Description: Apache 2 module for MySQL authentication Description-md5: ef80cee8ed7ae93c707d9527ba185c06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-auth-pgsql Priority: extra Section: httpd Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Marco Nenciarini Architecture: i386 Version: 2.0.3-6 Depends: libc6 (>= 2.4), libpq5, apache2-api-20120211 Filename: pool/main/liba/libapache2-mod-auth-pgsql/libapache2-mod-auth-pgsql_2.0.3-6_i386.deb Size: 20606 MD5sum: aa63e80caa3a4afbaafcdb65c576f9d0 SHA1: 89a06d0b5af833b3930e8c4d8b9c861435b61a0c SHA256: f5f66d1690312133fab43321ec0b001dc3cbd03955710fe48198ec8f094631d0 Description: Module for Apache2 which provides PostgreSQL authentication Homepage: http://www.giuseppetanzilli.it/mod_auth_pgsql2 Description-md5: 2853269f88c16d4ec6dd68d03d66ad23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-auth-plain Priority: extra Section: web Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Version: 2.0.52 Depends: libc6 (>= 2.4), apache2-api-20120211 Filename: pool/main/liba/libapache2-mod-auth-plain/libapache2-mod-auth-plain_2.0.52_i386.deb Size: 9504 MD5sum: b5b54005b4e945b023b8311f1376305c SHA1: 94ae098d3b741ae4338feb881e99938b3d8012a2 SHA256: cc20e315c29f2551610cbcfa4b3ab6592b12f6b73f9d422d082aaee0920881c4 Description: Module for Apache2 which provides plaintext authentication Description-md5: 3e01238a16b9a1c7773380c220a515ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-macro Priority: extra Section: web Installed-Size: 22 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apache2 (2.4.7-1ubuntu4) Version: 1:2.4.7-1ubuntu4 Depends: apache2-bin (>= 2.3~) Filename: pool/main/a/apache2/libapache2-mod-macro_2.4.7-1ubuntu4_i386.deb Size: 1450 MD5sum: 9c1c54b63e78ccc100c3af30892bb3bc SHA1: 919a763af2f1175e01cae55476df64b7999eda2a SHA256: 4c518222038ffab6f8eab472ef2c7dc530d37ed751109cce5584126aab27cb70 Description: Transitional package for apache2-bin Homepage: http://httpd.apache.org/ Description-md5: 36c293ebb5b77f14b95215fd3ffa7760 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-perl2 Priority: optional Section: perl Installed-Size: 3058 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 2.0.8+httpd24-r1449661-6ubuntu2 Depends: apache2-api-20120211, perl (>= 5.18.1-4), perlapi-5.18.1, libapr1 (>= 1.2.7), libaprutil1 (>= 1.2.7+dfsg), libc6 (>= 2.4), libperl5.18 (>= 5.18.1), libdevel-symdump-perl, liburi-perl, libwww-perl, netbase Recommends: libbsd-resource-perl, libapache2-reload-perl Filename: pool/main/liba/libapache2-mod-perl2/libapache2-mod-perl2_2.0.8+httpd24-r1449661-6ubuntu2_i386.deb Size: 1032174 MD5sum: c0a05ec2fa911000ed125d7a7294bfa7 SHA1: e4d428d08e2b9ac97095462023efee7378a6c5cd SHA256: dbfe957873d813f13dc32354ceda7e563f59973a0dc09d652162ebb0ef50cb8c Description: Integration of perl with the Apache2 web server Homepage: http://perl.apache.org/ Description-md5: e23cfdfee05b531a38b9a93d5d690a15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-perl2-dev Priority: optional Section: web Installed-Size: 241 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Source: libapache2-mod-perl2 Version: 2.0.8+httpd24-r1449661-6ubuntu2 Depends: libapache2-mod-perl2 (>= 2.0.8+httpd24-r1449661-6ubuntu2), libapache2-mod-perl2 (<< 2.0.8+httpd24-r1449661-6ubuntu2.1~) Filename: pool/main/liba/libapache2-mod-perl2/libapache2-mod-perl2-dev_2.0.8+httpd24-r1449661-6ubuntu2_all.deb Size: 36962 MD5sum: 3f0cd10965b0a326d94a7712302f71a5 SHA1: 04fafe636be313a63fb7524055b6cb1e255b3c57 SHA256: 26276ffb60c6ec16169acdc6e05296e26be9920d5da20b3984800645ee0de505 Description: Integration of perl with the Apache2 web server - development files Homepage: http://perl.apache.org/ Description-md5: c1f3b7f361a55b50e3b5ca768f1817d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapache2-mod-perl2-doc Priority: optional Section: web Installed-Size: 3401 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Source: libapache2-mod-perl2 Version: 2.0.8+httpd24-r1449661-6ubuntu2 Suggests: dwww Filename: pool/main/liba/libapache2-mod-perl2/libapache2-mod-perl2-doc_2.0.8+httpd24-r1449661-6ubuntu2_all.deb Size: 1855428 MD5sum: b2aa0b15b9f470f4fdb5bc8c00ce1cb5 SHA1: 1d7644bd9f69d21ba5f5e78247f3b13ece44252e SHA256: 1ab9d3f0fc7f62faa88665d2ff1c563713438950480ee44105f62d65732996ca Description: Integration of perl with the Apache2 web server - documentation Homepage: http://perl.apache.org/ Description-md5: 7399b209f03abbb5942d6a356f373572 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapache2-mod-php5 Priority: optional Section: httpd Installed-Size: 9023 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libbz2-1.0, libc6 (>= 2.15), libdb5.3, libpcre3, libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.9.0), zlib1g (>= 1:1.2.3.4), apache2-api-20120211, apache2 (>= 2.4), mime-support, php5-common (= 5.5.9+dfsg-1ubuntu4), libmagic1, ucf, tzdata Recommends: php5-cli Suggests: php-pear Conflicts: libapache2-mod-php4, libapache2-mod-php5filter Filename: pool/main/p/php5/libapache2-mod-php5_5.5.9+dfsg-1ubuntu4_i386.deb Size: 2144150 MD5sum: 169f22e4fec1e2eed79d098fd4c0269d SHA1: 888e547fd1906a6a90078a463ceda414595943ad SHA256: caaae14cdc33c59d94ac3f74b3d8ea9f560817a14159c76532827b4fc191b43f Description: server-side, HTML-embedded scripting language (Apache 2 module) Homepage: http://www.php.net/ Description-md5: bcf9a0837d83a4d93e1acc9c247605c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libapache2-mod-python Priority: optional Section: python Installed-Size: 440 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Version: 3.3.1-11ubuntu2 Depends: apache2-api-20120211, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libpython2.7 (>= 2.7) Suggests: libapache2-mod-python-doc Filename: pool/main/liba/libapache2-mod-python/libapache2-mod-python_3.3.1-11ubuntu2_i386.deb Size: 104416 MD5sum: c736ad20783be4facc54eed153464b75 SHA1: e0049ea29d6cafd5be0e727bb4ed4887e9777546 SHA256: ae75ab61451bcab024be1d87656206bafeddc3557c572dbf71eadf04a6b6a77d Description: Python-embedding module for Apache 2 Homepage: http://www.modpython.org/ Description-md5: 1d713411251bc8919aabac20971e2a54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-python-doc Priority: optional Section: python Installed-Size: 940 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: libapache2-mod-python Version: 3.3.1-11ubuntu2 Suggests: www-browser Filename: pool/main/liba/libapache2-mod-python/libapache2-mod-python-doc_3.3.1-11ubuntu2_all.deb Size: 108526 MD5sum: d58529f7ade43a207026cc52f77854b8 SHA1: fc5a7a1a723c5368c345a5d41ccd75539eec817c SHA256: 45bbb169a1e3518fd67474a02266204955795b296f992ea634fabde534c00930 Description: Python-embedding module for Apache 2 - documentation Homepage: http://www.modpython.org/ Description-md5: 9564caeb173aa6a96d396d2bfafe8b8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-mod-wsgi Priority: optional Section: python Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: mod-wsgi Version: 3.4-4ubuntu2 Provides: httpd-wsgi Depends: libc6 (>= 2.4), libpython2.7 (>= 2.7), apache2-api-20120211, python (>= 2.7), python (<< 2.8) Filename: pool/main/m/mod-wsgi/libapache2-mod-wsgi_3.4-4ubuntu2_i386.deb Size: 65590 MD5sum: 8e5de605cf850fd2a699412bc3e34fc0 SHA1: ac741c713dc18f0e3f59ffa4b16b05f32fddef78 SHA256: 29830b38915df8062b8963fe533c3f60634a2b3c9a62293648b9042c8a773898 Description: Python WSGI adapter module for Apache Homepage: http://www.modwsgi.org/ Description-md5: 524e8bdbab4989bd739c548590367eb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapache2-reload-perl Priority: optional Section: perl Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.12-2 Depends: perl, libapache2-mod-perl2 Filename: pool/main/liba/libapache2-reload-perl/libapache2-reload-perl_0.12-2_all.deb Size: 17302 MD5sum: 40a777c3bd592c8e9cca953c5aa83fba SHA1: 4e4e2e6363b33c721e3b437177618724e21e0a34 SHA256: 8f8a398586d97af7d17efc7397174bdb31756a9bd53f7162bf0eb7cdef3545c4 Description: module for reloading Perl modules when changed on disk Homepage: https://metacpan.org/release/Apache-Reload/ Description-md5: 9133f4572c0362fca02856e42bb7d655 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libapp-fatpacker-perl Priority: optional Section: perl Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.010000-1 Provides: fatpack Depends: perl Filename: pool/main/liba/libapp-fatpacker-perl/libapp-fatpacker-perl_0.010000-1_all.deb Size: 17022 MD5sum: e397d7c0691748363d40684bbdc084f4 SHA1: e87dad8433219831ce44874aba618d55082d2689 SHA256: a7aad39c17aab277a26524846a9f995e2b842c26cf0b394be63d3b21018c1518 Description: module to pack dependencies onto script files Homepage: https://metacpan.org/release/App-FatPacker Description-md5: e0cc551a5034b831dad4132e9d948d33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapparmor-dev Priority: extra Section: libdevel Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Replaces: libapparmor1 (<< 2.8.95~2395-0ubuntu1) Depends: libapparmor1 (= 2.8.95~2430-0ubuntu5) Breaks: libapparmor1 (<< 2.8.95~2395-0ubuntu1) Filename: pool/main/a/apparmor/libapparmor-dev_2.8.95~2430-0ubuntu5_i386.deb Size: 37788 MD5sum: 52b55114114186011dd8ef4d1f6d328e SHA1: d6105b8c24de4ff777f263495935e64cf9d14194 SHA256: 96926d8b7d9a0315dab07b99d141e7d4a49a2c77ca07287fe887b11d3bbf7787 Description: AppArmor development libraries and header files Multi-Arch: same Homepage: http://apparmor.net/ Description-md5: 4854e8f39d4ec17f1ef336b898438f73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapparmor-perl Priority: standard Section: perl Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: perl-base (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libapparmor1 (>= 2.8.94-0ubuntu1), libc6 (>= 2.4) Filename: pool/main/a/apparmor/libapparmor-perl_2.8.95~2430-0ubuntu5_i386.deb Size: 24406 MD5sum: a2f96c47771b65249727cbf197b688cb SHA1: f4583cd794286b4226fd9cf3b54d31285a71d41c SHA256: fb922120dc115715273c6c327786ab12608ce5a8080e741b44bfe23a4178bf41 Description: AppArmor library Perl bindings Homepage: http://apparmor.net/ Description-md5: 42d32a45493e77e0e2b388d84ea70892 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: libapparmor1 Priority: standard Section: libs Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: libc6 (>= 2.8) Filename: pool/main/a/apparmor/libapparmor1_2.8.95~2430-0ubuntu5_i386.deb Size: 23784 MD5sum: 86ef0894201d5f15bd6cdca87c3ede0b SHA1: 1f7707917958d4cf1312f1921eb81d881386e483 SHA256: d4ba2d3918b62fa5125f855e2acd92138dd0918f47241bd15b1074daa82a627e Description: changehat AppArmor library Multi-Arch: same Homepage: http://apparmor.net/ Description-md5: b066f3d6ec4f1e72570ebf49e31e9490 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libappconfig-perl Priority: optional Section: perl Installed-Size: 209 Maintainer: Ubuntu Developers Original-Maintainer: Stefan Hornburg (Racke) Architecture: all Source: appconfig Version: 1.66-1 Depends: perl Filename: pool/main/a/appconfig/libappconfig-perl_1.66-1_all.deb Size: 75464 MD5sum: e7776a9103b5346a974149eb140d0e74 SHA1: e123218af082e2f57ac1cad429b4163d0a76fabb SHA256: ba83df8aea129c6c28c5c93c388fa2697658b0e11b7bba622f220b7df45910c8 Description: Perl module for configuration file and command line handling Description-md5: 968a51d0c2668816fa49f49f0bee5fd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libappindicator-dev Priority: optional Section: libdevel Installed-Size: 145 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: gir1.2-appindicator-0.1 (= 12.10.1+13.10.20130920-0ubuntu4), libdbusmenu-glib-dev (>= 0.1.8), libdbus-glib-1-dev (>= 0.76), libappindicator1 (= 12.10.1+13.10.20130920-0ubuntu4) Filename: pool/main/liba/libappindicator/libappindicator-dev_12.10.1+13.10.20130920-0ubuntu4_i386.deb Size: 10768 MD5sum: 28e6fc5b1fe52e8f037245c17c2d3eb5 SHA1: 8f3f5bf7dde34bccdec0da73be84a706362c2b5d SHA256: fbecc7ae506a7325a9e1558986c113cf28c8732abdde36de11cdf3e924d44f79 Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 8892169afb7b9bc499e71c9594bafe1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libappindicator-doc Priority: optional Section: doc Installed-Size: 223 Maintainer: Ubuntu Desktop Team Architecture: all Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Filename: pool/main/liba/libappindicator/libappindicator-doc_12.10.1+13.10.20130920-0ubuntu4_all.deb Size: 19094 MD5sum: a9a1e2195619d7cfdc389792276fce0f SHA1: e3dbf33a4f280bbfa24bb712c342a72fd5dd6358 SHA256: 5bafa18450845775183db791156230fc481f11b4726615c451ddeb792dffda03 Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 02ba3477e299ea6febe16c1b60467b01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libappindicator0.1-cil Priority: optional Section: cli-mono Installed-Size: 83 Maintainer: Ubuntu Desktop Team Architecture: all Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: cli-common (>= 0.5.1), libappindicator1, libglib2.0-cil (>= 2.12.10-1ubuntu1), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.5-cil (>= 3.2.3) Filename: pool/main/liba/libappindicator/libappindicator0.1-cil_12.10.1+13.10.20130920-0ubuntu4_all.deb Size: 9448 MD5sum: 72152e9d5e374d502776d5cb533b0141 SHA1: d61ae4288d3fd91c35d529f30ceb1a95e319d8f8 SHA256: 762003741dad342cfb2fee01c888e1a26d5055677076023bffff3c34cdc07e7b Description: CLI bindings for libappindicator Homepage: https://launchpad.net/libappindicator Description-md5: 1847e304f46bfd56eda1cdad308e1f7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libappindicator0.1-cil-dev Priority: optional Section: libdevel Installed-Size: 39 Maintainer: Ubuntu Desktop Team Architecture: all Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: libappindicator0.1-cil (= 12.10.1+13.10.20130920-0ubuntu4) Filename: pool/main/liba/libappindicator/libappindicator0.1-cil-dev_12.10.1+13.10.20130920-0ubuntu4_all.deb Size: 1600 MD5sum: b6fdd6822e12289890acfb8256d36a1e SHA1: 5abb818c7fc69292dff889dee2bb56098d2769eb SHA256: f2d755262266f769055c87a6b0e48ee96a6cfcb1c9f086aeeee721777bc7750f Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 8892169afb7b9bc499e71c9594bafe1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libappindicator1 Priority: optional Section: libs Installed-Size: 94 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: libc6 (>= 2.3.6-6~), libdbusmenu-glib4 (>= 0.4.2), libdbusmenu-gtk4 (>= 0.4.2), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.20.0), libindicator7 (>= 0.4.90) Pre-Depends: multiarch-support Recommends: indicator-application (>= 0.2.93) Filename: pool/main/liba/libappindicator/libappindicator1_12.10.1+13.10.20130920-0ubuntu4_i386.deb Size: 17602 MD5sum: 044dc18968593e431884b8af1f63c239 SHA1: e95ad33fdef3b425fbd4c66bf1161c586d0a53af SHA256: 30d78d3bf6158b61d5716281c0dd1c63a6c15d390a65368d444abd6753863efb Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 19c351a0f9348d05d8bfa4468c6db3f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video Package: libappindicator3-1 Priority: optional Section: libs Installed-Size: 94 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: libc6 (>= 2.3.6-6~), libdbusmenu-glib4 (>= 0.4.2), libdbusmenu-gtk3-4 (>= 0.4.2), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libindicator3-7 (>= 0.4.90) Pre-Depends: multiarch-support Recommends: indicator-application (>= 0.2.93) Filename: pool/main/liba/libappindicator/libappindicator3-1_12.10.1+13.10.20130920-0ubuntu4_i386.deb Size: 17616 MD5sum: 414b5c41d4c37113475ffb66ecf66162 SHA1: 84b619b2717c1a76147453cfbae70bea8e59feb2 SHA256: a5bed4f37b45095d2510df87c4e0158637a1f8e1ddef79f80caadab871dca50d Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 19c351a0f9348d05d8bfa4468c6db3f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libappindicator3-dev Priority: optional Section: libdevel Installed-Size: 145 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Depends: gir1.2-appindicator3-0.1 (= 12.10.1+13.10.20130920-0ubuntu4), libdbusmenu-glib-dev (>= 0.1.8), libdbus-glib-1-dev (>= 0.76), libappindicator3-1 (= 12.10.1+13.10.20130920-0ubuntu4) Filename: pool/main/liba/libappindicator/libappindicator3-dev_12.10.1+13.10.20130920-0ubuntu4_i386.deb Size: 10774 MD5sum: bf1fc1c7ed94e34f4c115e1cc0790f23 SHA1: 88b01bb3590697999650921dfdf81a4a222100f2 SHA256: 65a4a6895c3ffd204394d0302bba3fbaaf04369d1093b39273d2feffeb36f836 Description: Application Indicators Homepage: https://launchpad.net/libappindicator Description-md5: 8892169afb7b9bc499e71c9594bafe1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapr1 Priority: optional Section: libs Installed-Size: 268 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apr Version: 1.5.0-1 Depends: libc6 (>= 2.15), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Conflicts: libapr1.0 Filename: pool/main/a/apr/libapr1_1.5.0-1_i386.deb Size: 88802 MD5sum: 466ae28d2e1b2a9d96a7ffa93ebe5b19 SHA1: f2426621e83f579be8dacc904f40cd56fd3a4bed SHA256: f096087851113aab2b5b7986807f936ad5fede3299224c3737bbba7f8f8aabe4 Description: Apache Portable Runtime Library Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: daaca3900e2bd4d38f204bf1b0ef044a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libapr1-dbg Priority: extra Section: libdevel Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apr Version: 1.5.0-1 Depends: libapr1 (= 1.5.0-1) Filename: pool/main/a/apr/libapr1-dbg_1.5.0-1_i386.deb Size: 212146 MD5sum: 7ac943e02a26c693a90fcd5463da5492 SHA1: fa313e85c4ec2def579f9d9913c5d5115f6951b8 SHA256: cef1a9a6cf12138d1e6786aae64c7e4849b81214251cf2c09ccf20f044b78e42 Description: Apache Portable Runtime Library - Debugging Symbols Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: c3c017e48521f94794214d8ee73f3bef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapr1-dev Priority: optional Section: libdevel Installed-Size: 7951 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apr Version: 1.5.0-1 Depends: libapr1 (= 1.5.0-1), uuid-dev, libsctp-dev Suggests: python Conflicts: libapr0-dev, libapr1.0-dev Filename: pool/main/a/apr/libapr1-dev_1.5.0-1_i386.deb Size: 593478 MD5sum: 8d4a6b47231a907f197ae6ec53bdbf65 SHA1: 38b31fc52b25ed000867d32488b468329256220d SHA256: 60c52e49ed788785ba28a79bdae1d7572e575bf62b737e3affcda4fedba24911 Description: Apache Portable Runtime Library - Development Headers Homepage: http://apr.apache.org/ Description-md5: 7242f99e86343755e74ffc6220d354b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaprutil1 Priority: optional Section: libs Installed-Size: 249 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apr-util Version: 1.5.3-1 Depends: libapr1 (>= 1.4.8-2~), libc6 (>= 2.4), libdb5.3, libexpat1 (>= 2.0.1), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Breaks: libapr1 (<< 1.4.8-2~) Filename: pool/main/a/apr-util/libaprutil1_1.5.3-1_i386.deb Size: 76562 MD5sum: 51f632b0e4def3ab972e0ddcd7cb7e59 SHA1: 4b9434c11e9e91271bfa3faff2da0695fa989638 SHA256: a037fe834e6c7726dbec7d9070722ea1a343652a033a90795e8ab61c4f943e23 Description: Apache Portable Runtime Utility Library Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: e0d4198f7ab8d2d00a12d0e044194068 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libaprutil1-dbd-sqlite3 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apr-util Version: 1.5.3-1 Depends: libaprutil1 (= 1.5.3-1), libc6 (>= 2.3.6-6~), libsqlite3-0 (>= 3.5.9) Filename: pool/main/a/apr-util/libaprutil1-dbd-sqlite3_1.5.3-1_i386.deb Size: 10288 MD5sum: fc858d2429aea6fe70fea387358940c1 SHA1: beae0b2ab6b08eae0956548806acbe5d69ed80db SHA256: 8895474c5a8f2bf33175ca6b9a35712c039f6024efeb9e0c0bcad68b182385b4 Description: Apache Portable Runtime Utility Library - SQLite3 Driver Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: f471c87c1f3c003cda76426ff2939b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libaprutil1-dbg Priority: extra Section: libdevel Installed-Size: 387 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apr-util Version: 1.5.3-1 Depends: libaprutil1 (= 1.5.3-1) Filename: pool/main/a/apr-util/libaprutil1-dbg_1.5.3-1_i386.deb Size: 261480 MD5sum: 91bebfbe602a712678d98441751dc585 SHA1: 1523d57cc65bc3474fb74dfbb5aed22e80a152b2 SHA256: 6163e54c8306a73d10331a5bb89986da222b4c71ae5b279be1517784102b0af6 Description: Apache Portable Runtime Utility Library - Debugging Symbols Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: 8e79c59d712eb77f803ccf06c2077e42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaprutil1-dev Priority: optional Section: libdevel Installed-Size: 4354 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apr-util Version: 1.5.3-1 Depends: libaprutil1 (= 1.5.3-1), libldap2-dev, libexpat1-dev, libpcre3-dev, libapr1-dev (>= 1.2.2-1), libsqlite3-dev, libpq-dev, libmysqlclient-dev Filename: pool/main/a/apr-util/libaprutil1-dev_1.5.3-1_i386.deb Size: 332066 MD5sum: 98127af4a96ea98cea521d4cb0f8d1fd SHA1: 3dbb2bd9e1e5986c26b724394420a63e54b5a24a SHA256: 3aa57aa5ec12b3845adfda9581b1d4ef19202a6e36ac1f2c44ddff2df8370699 Description: Apache Portable Runtime Utility Library - Development Headers Homepage: http://apr.apache.org/ Description-md5: d6ae06fa24afa413ea1d1cd0db69d8a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaprutil1-ldap Priority: optional Section: libs Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: i386 Source: apr-util Version: 1.5.3-1 Depends: libaprutil1 (= 1.5.3-1), libc6 (>= 2.3.6-6~), libldap-2.4-2 (>= 2.4.7) Filename: pool/main/a/apr-util/libaprutil1-ldap_1.5.3-1_i386.deb Size: 8552 MD5sum: 1d14742abf5334e7cfdab860905d12e3 SHA1: 56945ec2fadac8840004bd3456b38ea10f78ae22 SHA256: e4807defe495e62b75ab23695a9337955e93be202a1598d5cfc9d9476f34404c Description: Apache Portable Runtime Utility Library - LDAP Driver Multi-Arch: same Homepage: http://apr.apache.org/ Description-md5: d25faaa24a0fbf145505cba06b4192d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libapt-inst1.5 Priority: important Section: admin Installed-Size: 730 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: i386 Source: apt Version: 1.0.1ubuntu2 Depends: libapt-pkg4.12 (>= 0.8.16~exp9), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/a/apt/libapt-inst1.5_1.0.1ubuntu2_i386.deb Size: 58472 MD5sum: 21442e639b292b66a5c2dc94d62dcd9d SHA1: bc88cb2b129dcf93e87f240761e13bd213365f9d SHA256: 2a0fa894807eb8232f0b018a711227af40d2738c059915b423c1cdf2ff4a9def Description: deb package format runtime library Multi-Arch: same Description-md5: 5df05e67cb17e91ac56a732061d88850 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libapt-pkg-dev Priority: optional Section: libdevel Installed-Size: 536 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: i386 Source: apt Version: 1.0.1ubuntu2 Depends: libapt-pkg4.12 (= 1.0.1ubuntu2), libapt-inst1.5 (= 1.0.1ubuntu2), zlib1g-dev Filename: pool/main/a/apt/libapt-pkg-dev_1.0.1ubuntu2_i386.deb Size: 82600 MD5sum: b9c93dab443b5e904501c33b0b964856 SHA1: 0396365b319f0580bd1f116fe9a329376e005c1f SHA256: 24f1dbd71ba4552f208631a7b97027128177528de1729e3ee8b4f2fda248fa13 Description: development files for APT's libapt-pkg and libapt-inst Multi-Arch: same Description-md5: 8e463f77664788b23a47f5ac592f4595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapt-pkg-doc Priority: optional Section: doc Installed-Size: 11060 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: all Source: apt Version: 1.0.1ubuntu2 Filename: pool/main/a/apt/libapt-pkg-doc_1.0.1ubuntu2_all.deb Size: 666500 MD5sum: f3ede9b16ff71d97704dec2d6413306d SHA1: 8c9993487bc8cec61c71fcb5a27b2b98a23bd152 SHA256: 46bde832e5190269522dc265df4fe37d5b325221f9618a9ba7ee14d2322b7910 Description: documentation for APT development Description-md5: decce989b471f196cddabf52bee63592 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libapt-pkg-perl Priority: optional Section: perl Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Brendan O'Dea Architecture: i386 Version: 0.1.29build1 Depends: perl-base (>= 5.18.1-4), perlapi-5.18.1, libapt-pkg4.12 (>= 0.8.0), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/liba/libapt-pkg-perl/libapt-pkg-perl_0.1.29build1_i386.deb Size: 84548 MD5sum: 4b137b520032e91c28ab40039a2f3855 SHA1: 5123902ea6d04107d376186808c4779116163cf3 SHA256: 3ff59040c906724feda1530c63b9363237fe754d09d37940275b5347453d7f0b Description: Perl interface to libapt-pkg Description-md5: b90df5c972edb2fc10beeac8dffd2963 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libapt-pkg4.12 Priority: important Section: admin Installed-Size: 2860 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: i386 Source: apt Version: 1.0.1ubuntu2 Depends: libbz2-1.0, libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), liblzma5 (>= 5.1.1alpha+20120614), libstdc++6 (>= 4.6), zlib1g (>= 1:1.2.3.4) Pre-Depends: multiarch-support Breaks: apt (<< 0.9.4~), libapt-inst1.5 (<< 0.9.9~) Filename: pool/main/a/apt/libapt-pkg4.12_1.0.1ubuntu2_i386.deb Size: 633164 MD5sum: 85724036787c9989bb138ef654378bd3 SHA1: dfb4d7eba15150ec35d9ef3a1b8b6a6d0a038991 SHA256: 8c2e2c3897b99637f48bbbb21f98fd075ddc453d36792f40c2295623376d406f Description: package management runtime library Multi-Arch: same Description-md5: b80ec138bbd00d445bb187bcc0acc8fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: libarchive-dev Priority: optional Section: libdevel Installed-Size: 1184 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libarchive Maintainers Architecture: i386 Source: libarchive Version: 3.1.2-7ubuntu2 Replaces: libarchive1 (<< 2.8.5-3) Depends: libarchive13 (= 3.1.2-7ubuntu2) Breaks: libarchive1 (<< 2.8.5-3) Filename: pool/main/liba/libarchive/libarchive-dev_3.1.2-7ubuntu2_i386.deb Size: 426740 MD5sum: 1fd7d57a3db9601678b152b3f5b97a56 SHA1: b9f4bf274f871914d239be6018566fb3e23a418c SHA256: 18444b11bea4d664eab92c33ff4ae0397f16d61112feec80924fff9a57dd961a Description: Multi-format archive and compression library (development files) Multi-Arch: same Homepage: http://www.libarchive.org/ Description-md5: 4fedaf2f347af4287edce946b56ba586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libarchive-extract-perl Priority: important Section: perl Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.70-1 Depends: perl (>= 5.13.6) Filename: pool/main/liba/libarchive-extract-perl/libarchive-extract-perl_0.70-1_all.deb Size: 20324 MD5sum: 0d4c74fefd219a4ef3274c7a7848f79c SHA1: ff3a31d9a7a537deb9449d545bdb78daf6e7e754 SHA256: 6bda339c1f27f1157ec900fc32ceaeb5d487b1b62cc81eaf55c65d9ee6a10fe6 Description: generic archive extracting module Homepage: https://metacpan.org/release/Archive-Extract/ Description-md5: a9917e6be8ae1dd729c20bd956a215e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libarchive-zip-perl Priority: optional Section: perl Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.30-7 Depends: perl Filename: pool/main/liba/libarchive-zip-perl/libarchive-zip-perl_1.30-7_all.deb Size: 90080 MD5sum: 32ed5cb16540f45008ad6e5b311e26cb SHA1: 018081102460d6a2fb561b803684e72ddfefbc0a SHA256: 91f91bad66e0adb4313ed8cc62d11ef45db032a4d92da1e4fb6344fc51c70f65 Description: Perl module for manipulation of ZIP archives Homepage: https://metacpan.org/release/Archive-Zip/ Description-md5: d79121ddf62669813decdcb1d31db043 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libarchive13 Priority: optional Section: libs Installed-Size: 735 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libarchive Maintainers Architecture: i386 Source: libarchive Version: 3.1.2-7ubuntu2 Depends: libattr1 (>= 1:2.4.46-8), libbz2-1.0, libc6 (>= 2.16), liblzma5 (>= 5.1.1alpha+20120614), liblzo2-2, libnettle4 (>= 2.3), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: lrzip Filename: pool/main/liba/libarchive/libarchive13_3.1.2-7ubuntu2_i386.deb Size: 274512 MD5sum: fa101b60ecc66e7eac702c1529ae3228 SHA1: 6a08296530df013b697f35a024913dbf409ce446 SHA256: b140764e63fca8919509fb3f9a9c71b0f7fb7cdcdc29fc44b37b02c1e97145ec Description: Multi-format archive and compression library (shared library) Multi-Arch: same Homepage: http://www.libarchive.org/ Description-md5: 3efebf57a3d06179c6d5746db080711f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libart-2.0-2 Priority: optional Section: libs Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: libart-lgpl Version: 2.3.21-2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/liba/libart-lgpl/libart-2.0-2_2.3.21-2_i386.deb Size: 57482 MD5sum: 4955445d8149a83c154525a45e2cbde5 SHA1: 40c9d1ddc6f68007e5c7b30531586a13746add28 SHA256: 72a5f27d3e22bd6e86ee82a1c02f0951978278a0dabaf466be07a391c6051ff4 Description: Library of functions for 2D graphics - runtime files Multi-Arch: same Description-md5: c79e80a684d0e1f530bef577fc6a7eed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libart-2.0-dev Priority: optional Section: libdevel Installed-Size: 291 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: libart-lgpl Version: 2.3.21-2 Depends: libart-2.0-2 (= 2.3.21-2), pkg-config Filename: pool/main/liba/libart-lgpl/libart-2.0-dev_2.3.21-2_i386.deb Size: 71866 MD5sum: 560f7fe1a8bf9c0bf6a3c2faf71f0cc0 SHA1: 7221f0a532c9d278c0f8af8795d30512340984d5 SHA256: 165d691a903cc25ef121c0d06a58d42888f84f9c36a965b196be0f794d3c320c Description: Library of functions for 2D graphics - development files Description-md5: 18a0bfc8b4617d3d22b390966c9ece77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libart2.0-cil Priority: optional Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: gtk-sharp2-gapi (<< 2.10.0-1), libart2.24-cil, libgnome2.0-cil (<< 2.16.0-4) Depends: cli-common (>= 0.5.1), libart-2.0-2, libglib2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1) Suggests: monodoc-gtk2.0-manual Conflicts: libart2.24-cil Filename: pool/main/g/gnome-sharp2/libart2.0-cil_2.24.2-3_all.deb Size: 20946 MD5sum: 956a8758565886aa425a2f567347313c SHA1: 5c0ac8e21c101025083daaf1d085c31adcac31eb SHA256: a7d1035125e526244aefefffaef201eb8d658dbfa040864ea62d105fee25f1d8 Description: CLI binding for libart 2.3 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 8db29a9592d413f32791e2e6c15f7a82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libart2.0-cil-dev Priority: optional Section: libs Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: libart2.0-cil (<< 2.24.1-5), libart2.24-cil Depends: libart2.0-cil (= 2.24.2-3) Filename: pool/main/g/gnome-sharp2/libart2.0-cil-dev_2.24.2-3_all.deb Size: 7000 MD5sum: e40be2dadedaf4f0267c02f7871b957f SHA1: 1d1c9ef00b4def3eaf4acff9d2c06e50b4084b18 SHA256: 8d60ba03a5b01d7e1f75a59a27059fbc9efaa76ddf9c4dc734d26dcf374f195e Description: CLI binding for libart 2.3 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 9c9edffaf04cc5204d580ce1eda0ca7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasan0 Priority: optional Section: libs Installed-Size: 212 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libasan0_4.8.2-19ubuntu1_i386.deb Size: 64076 MD5sum: 2a9cd1661512844d246447b2bdcce56b SHA1: 9148c909209c7973258d121062f691cb0df4a256 SHA256: 94dfed6bf6920d8c25cc11dcb95003c11a8f41088590edc45d8659f268bfa361 Description: AddressSanitizer -- a fast memory error detector Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 04e20d522e263c6563c2ea719c87026f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libasan0-armhf-cross Priority: extra Section: devel Installed-Size: 147 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armhf-cross (>= 2.19), libgcc1-armhf-cross Filename: pool/main/g/gcc-4.8-armhf-cross/libasan0-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 55846 MD5sum: 55ee7425fca18a885ad4d34d44817a90 SHA1: 9ed74be7a560ec1f45d4314df64acdef8ba97eb8 SHA256: e04285c6de11b252a1f18410fd2522c47eed3411a25d6538b6896dba6ddaadd3 Description: AddressSanitizer -- a fast memory error detector Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 04e20d522e263c6563c2ea719c87026f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasan0-dbg Priority: extra Section: debug Installed-Size: 797 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libasan0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libasan0-dbg_4.8.2-19ubuntu1_i386.deb Size: 222706 MD5sum: 3ec515235bca32c83ba3495733e27a04 SHA1: e578857b6128dcc4f9a8a7557695ec45a53340fc SHA256: 8a07773d03ea48e2de19b5b3e95d8c5c3675b997764bbbc0ce6531aa867379df Description: AddressSanitizer -- a fast memory error detector (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: e0ab64cebecfb2c8f3560d8854956043 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasan0-powerpc-cross Priority: extra Section: devel Installed-Size: 234 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-powerpc-cross (>= 2.18), libgcc1-powerpc-cross Filename: pool/main/g/gcc-4.8-powerpc-cross/libasan0-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 61590 MD5sum: ed2ff59b5a7cb2660483b17612887b1e SHA1: 100a0c5fd399ece3cf239110a80b3eb943972737 SHA256: 83e2e3b0024f277720c651b577f0e8538e285ba0c9377aab7664d56a0410e7dc Description: AddressSanitizer -- a fast memory error detector Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 04e20d522e263c6563c2ea719c87026f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm-dev Priority: optional Section: libdevel Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: i386 Source: elfutils Version: 0.158-0ubuntu5 Depends: libasm1 (= 0.158-0ubuntu5), libelf-dev Conflicts: libasm0-dev, libelfsh0-dev Filename: pool/main/e/elfutils/libasm-dev_0.158-0ubuntu5_i386.deb Size: 16880 MD5sum: 66e5505488e5030e5d1cf9653bb4c761 SHA1: b1f32be29e72b902e7ec7c8e35de27ee83cab315 SHA256: c8e033b7871165d7c8852a698468f244b52bf791dd2fe5a18282d398f36e2f6a Description: libasm development libraries and header files Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: 013678075a0c3718f0cb70bbd4172cbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm1 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: i386 Source: elfutils Version: 0.158-0ubuntu5 Depends: libc6 (>= 2.4), libelf1 (= 0.158-0ubuntu5), libdw1 (= 0.158-0ubuntu5) Pre-Depends: multiarch-support Filename: pool/main/e/elfutils/libasm1_0.158-0ubuntu5_i386.deb Size: 16122 MD5sum: 67df9d6b8e2e73e7f195b97022704b33 SHA1: b087201f46f253df9a2cad147153339451f9af6d SHA256: 226fa5b800f5a6b81ff4b14dc9b18906669d5bfd1288134c721bf0c0f05afe55 Description: library with a programmable assembler interface Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: 109ac518b441c307fe4c75e886e56331 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm3-java Priority: optional Section: devel Installed-Size: 875 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: asm3 Version: 3.3.2-2 Filename: pool/main/a/asm3/libasm3-java_3.3.2-2_all.deb Size: 669092 MD5sum: 65c2b1e3af8cfe12ae7cb8ad4a499df2 SHA1: 5ca4422f99bbd0186272ac48a8b417ab846a3866 SHA256: 87ad28f00e151ac7b34e5916b531af9a34fa1a868f05e79d6f5f97a09aee9e1e Description: Java bytecode manipulation framework Homepage: http://asm.objectweb.org/ Description-md5: 821ca42f9901b1a9158de90b6afda2b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm3-java-doc Priority: optional Section: doc Installed-Size: 5794 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: asm3 Version: 3.3.2-2 Suggests: libasm3-java Filename: pool/main/a/asm3/libasm3-java-doc_3.3.2-2_all.deb Size: 506474 MD5sum: 0fc87fa95bf916563ebc024ced77bd6d SHA1: 1094ed8bb7e5d54cc7adaf5f9d0e4809e7cec60a SHA256: 6ddffd19a15783e9c7a0030e4cde73f174f4ba9d43ebb0630e916fd30faacf1b Description: Documentation for ASM, the Java(TM) bytecode manipulation framework Homepage: http://asm.objectweb.org/ Description-md5: e2d878653675aa3fa2a955f9ce360a8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm4-java Priority: optional Section: java Installed-Size: 880 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 4.1-3 Filename: pool/main/liba/libasm4-java/libasm4-java_4.1-3_all.deb Size: 633298 MD5sum: fccda971207bbe12ee22e843cc579b33 SHA1: 4f0b08bf7704f6bf4f4e60422d5a15c60cc6b246 SHA256: 657f1e1f305f4a216362be7f19252966906cfbbb2d59ac8a8b2f400f4bce1171 Description: Java bytecode manipulation framework Homepage: http://asm.objectweb.org/ Description-md5: 821ca42f9901b1a9158de90b6afda2b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasm4-java-doc Priority: optional Section: doc Installed-Size: 6007 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libasm4-java Version: 4.1-3 Suggests: libasm4-java Filename: pool/main/liba/libasm4-java/libasm4-java-doc_4.1-3_all.deb Size: 515550 MD5sum: ae026be507d3ccb47673344b090402e0 SHA1: 5536bb6bb2baf9ebe2ead17410d0b3ead12dcd22 SHA256: b291d60a39b4b71a51844d884b2a14344438be3de594981d4dd59a06b0726ed3 Description: Documentation for ASM, the Java(TM) bytecode manipulation framework Homepage: http://asm.objectweb.org/ Description-md5: e2d878653675aa3fa2a955f9ce360a8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasn1-8-heimdal Priority: standard Section: libs Installed-Size: 825 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.8), libcomerr2 (>= 1.01), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libasn1-8-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 169122 MD5sum: 3f197c7f9101bb1a01d4445f3e75f832 SHA1: 0a25e9bf233a9270a13c0d1f6a77764980e47690 SHA256: c31b44e6d0140223275be18fafa6c446ccf3c4320d7f1e142e7fe972c114806f Description: Heimdal Kerberos - ASN.1 library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 3d09240ec7d82874031da02109d856a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libasound2 Priority: optional Section: libs Installed-Size: 1180 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: i386 Source: alsa-lib Version: 1.0.27.2-3ubuntu7 Depends: libc6 (>= 2.16), libasound2-data (>= 1.0.27.2-3ubuntu7) Pre-Depends: multiarch-support Suggests: libasound2-plugins (>= 1.0.24) Breaks: bluez-alsa (<= 4.94-2), libasound2-plugin-equal (<= 0.6-1), libasound2-plugins (<< 1.0.24) Filename: pool/main/a/alsa-lib/libasound2_1.0.27.2-3ubuntu7_i386.deb Size: 324358 MD5sum: a62fc52395d0defdff062d7e91473324 SHA1: c94f8444051a88f0c193f5054eaddf5ed52ac0ef SHA256: 4abc006761310ffb94a99cdae24db25e4ba697e3231a7a97d75a90d669a0bf45 Description: shared library for ALSA applications Multi-Arch: same Homepage: http://www.alsa-project.org/ Description-md5: f80c24ce80b76f9116fc6c7d1a8aa34b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libasound2-data Priority: optional Section: libs Installed-Size: 338 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: all Source: alsa-lib Version: 1.0.27.2-3ubuntu7 Replaces: libasound2 (<< 1.0.27-4) Suggests: alsa-utils Breaks: libasound2 (<< 1.0.27-4) Filename: pool/main/a/alsa-lib/libasound2-data_1.0.27.2-3ubuntu7_all.deb Size: 26264 MD5sum: 1b78d6d03ed4303e843ba2c5bae3bc53 SHA1: 1b1e162c971a3eb5487beef6637d55b0b37bde86 SHA256: 6c3530e3e3333071df10fcb6e2282e44abd247b08af6c9b0f79fdfb9c44f385c Description: Configuration files and profiles for ALSA drivers Multi-Arch: foreign Homepage: http://www.alsa-project.org/ Description-md5: ccfa849033bc48b7ca28261b57c3eba7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libasound2-dbg Priority: extra Section: debug Installed-Size: 1224 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: i386 Source: alsa-lib Version: 1.0.27.2-3ubuntu7 Depends: libasound2 (= 1.0.27.2-3ubuntu7) Filename: pool/main/a/alsa-lib/libasound2-dbg_1.0.27.2-3ubuntu7_i386.deb Size: 966782 MD5sum: f4d39c07407bf85e0a13be5d4a842413 SHA1: 1cca4bb921f636bf24769c88620dcb3fae2f2d98 SHA256: 2f1b074f7c603273b77aae4b56e8352fc3f95e73450ff753ffe9f09fea5f8eee Description: debugging symbols for libasound2 Multi-Arch: same Homepage: http://www.alsa-project.org/ Description-md5: 232fcf589d65c42d570a335193dc6cfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasound2-dev Priority: optional Section: libdevel Installed-Size: 468 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: i386 Source: alsa-lib Version: 1.0.27.2-3ubuntu7 Provides: libasound-dev Depends: libasound2 (= 1.0.27.2-3ubuntu7) Suggests: libasound2-doc Filename: pool/main/a/alsa-lib/libasound2-dev_1.0.27.2-3ubuntu7_i386.deb Size: 59168 MD5sum: 66b55b5ea84ccde9ae964d0e1bf644d0 SHA1: f22f731c6cbe4f69d8f2f474d47dcced887e24e7 SHA256: 7063e563bce0c51deb23eec372872904ba192227f27056a3ee7f219699c73022 Description: shared library for ALSA applications -- development files Multi-Arch: same Homepage: http://www.alsa-project.org/ Description-md5: 6049c8294e480247b4c02744f09d51fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasound2-doc Priority: optional Section: libdevel Installed-Size: 12854 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: all Source: alsa-lib Version: 1.0.27.2-3ubuntu7 Depends: libjs-jquery Suggests: libasound2-dev Filename: pool/main/a/alsa-lib/libasound2-doc_1.0.27.2-3ubuntu7_all.deb Size: 585374 MD5sum: df3fab921e416a91b878e9df92fced4a SHA1: 48ea8465ec9b541ac56c40a79a047ee4d8397f2d SHA256: 6a5e818b469a020bb3381aee1229488fbadd89af45b26613bf29c09f1c261370 Description: documentation for user-space ALSA application programming Homepage: http://www.alsa-project.org/ Description-md5: 73dfd0644e1f116cf7c39ae3f4f19a1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasound2-plugins Priority: optional Section: libs Installed-Size: 250 Maintainer: Ubuntu Developers Original-Maintainer: Debian ALSA Maintainers Architecture: i386 Source: alsa-plugins Version: 1.0.27-2ubuntu2 Depends: libasound2 (>= 1.0.25), libc6 (>= 2.15), libjack-jackd2-0 (>= 1.9.5~dfsg-14) | libjack-0.116, libpulse0 (>= 1:0.99.1), libsamplerate0 (>= 0.1.7), libspeexdsp1 (>= 1.2~beta3.2-1) Pre-Depends: multiarch-support Filename: pool/main/a/alsa-plugins/libasound2-plugins_1.0.27-2ubuntu2_i386.deb Size: 62380 MD5sum: d68f4a5ae8de9e080be3cea910ab4d06 SHA1: 8accb98ad9c7d4d9b6fb845dd4415ad9706763dd SHA256: 7b70698e1a1462fc240fcdc2940f4eaa39613bb400bc3243b0a75554a77ff077 Description: ALSA library additional plugins Multi-Arch: same Homepage: http://www.alsa-project.org/ Description-md5: c0d2cf058a71ca3009a28dc5e2fd2801 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libaspell-dev Priority: optional Section: libdevel Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: i386 Source: aspell Version: 0.60.7~20110707-1ubuntu1 Depends: libaspell15 (= 0.60.7~20110707-1ubuntu1) Suggests: aspell-doc Filename: pool/main/a/aspell/libaspell-dev_0.60.7~20110707-1ubuntu1_i386.deb Size: 7220 MD5sum: e19e83cbd2551c9967a9973d745e4218 SHA1: 75ee2b436ab404943b5a01d56e1c7ea87c2a930e SHA256: af37f5a55bb7af19304cbaede6a968c5cfc616a97105c83fb8f59087c9b7e87d Description: Development files for applications with GNU Aspell support Homepage: http://aspell.net/ Description-md5: d095354c8f2a86e3e8733fec8ffeb6fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaspell15 Priority: optional Section: libs Installed-Size: 2145 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: i386 Source: aspell Version: 0.60.7~20110707-1ubuntu1 Depends: libc6 (>= 2.4), libstdc++6 (>= 4.6) Recommends: aspell-en | aspell-dictionary | aspell6a-dictionary Suggests: aspell Conflicts: aspell6-dictionary Breaks: aspell-bin (<< 0.60.3-2) Filename: pool/main/a/aspell/libaspell15_0.60.7~20110707-1ubuntu1_i386.deb Size: 311756 MD5sum: 3837e31c5615cc02ac5ef404ed9a7071 SHA1: 57019c137b7a0feacd6e015a09b6c9b2db7b5707 SHA256: f4c0752ad888e5f6e8dac7d54c6fd4d942f80390a0e0a22b1492f7b8f94f9424 Description: GNU Aspell spell-checker runtime library Homepage: http://aspell.net/ Description-md5: 6b1b157cf893a6b279b08af6c2efbd71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libasprintf-dev Priority: optional Section: libdevel Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Source: gettext Version: 0.18.3.1-1ubuntu2 Replaces: gettext (<< 0.18.1.1-10) Depends: libasprintf0c2 (= 0.18.3.1-1ubuntu2) Suggests: gettext-doc Breaks: gettext (<< 0.18.1.1-10) Filename: pool/main/g/gettext/libasprintf-dev_0.18.3.1-1ubuntu2_i386.deb Size: 4392 MD5sum: 1a345bc079a227987f137caf97b2490f SHA1: 6fd3f3990418e66b068b7f26624566b5bab45847 SHA256: 5df5e9a5e7c399faa42b99ab0ccb72e292b4baae512f9d41d5744ef06bf6ce0c Description: GNU Internationalization library development files Multi-Arch: same Homepage: http://www.gnu.org/software/gettext/ Description-md5: 393d9426ed23b67dd70484172664fc9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libasprintf0c2 Priority: standard Section: libs Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Source: gettext Version: 0.18.3.1-1ubuntu2 Replaces: gettext-base (<< 0.18.1.1-6) Depends: libc6 (>= 2.8), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: gettext-base (<< 0.18.1.1-6) Filename: pool/main/g/gettext/libasprintf0c2_0.18.3.1-1ubuntu2_i386.deb Size: 6618 MD5sum: 6ff48d715854667be796d32815dd1387 SHA1: 338883173bcfc2b8cc7503e20af8a769c94a684c SHA256: c7d0b89ca01f6ca2cf1eb21782492f5f3ceaf0a027cee69070d606055abd2430 Description: GNU library to use fprintf and friends in C++ Multi-Arch: same Homepage: http://www.gnu.org/software/gettext/ Description-md5: 6eb9b97491340c986012d5953e1dc01b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libassuan-dev Priority: optional Section: libdevel Installed-Size: 254 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: libassuan Version: 2.1.1-1ubuntu1 Depends: libassuan0 (= 2.1.1-1ubuntu1), dpkg (>= 1.15.4) | install-info Filename: pool/main/liba/libassuan/libassuan-dev_2.1.1-1ubuntu1_i386.deb Size: 85594 MD5sum: bfcb0aecce7240c143d9cf6ff1965d1a SHA1: 6e64b5960e3030cbabeaeba5c8af59ee2a07e270 SHA256: e92996b59253a56976f923ec0473bbff118371851943dde0c930ee99e152d9af Description: IPC library for the GnuPG components Homepage: http://www.gnupg.org/(en)/related_software/libassuan/index.html Description-md5: 21f42f002a320cdf878147698100e624 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libassuan0 Priority: optional Section: libs Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: libassuan Version: 2.1.1-1ubuntu1 Depends: libc6 (>= 2.8), libgpg-error0 (>= 1.10) Pre-Depends: multiarch-support Filename: pool/main/liba/libassuan/libassuan0_2.1.1-1ubuntu1_i386.deb Size: 29736 MD5sum: d70d27d4623e801a8b9d4abe78d344d0 SHA1: 365832a03e4f620b1c4e42662d233706a28841a2 SHA256: e1f8ef7f4ad54b23685010c15eed463f0c1ac146c0fb55a22f1edc71d0c4087d Description: IPC library for the GnuPG components Multi-Arch: same Homepage: http://www.gnupg.org/(en)/related_software/libassuan/index.html Description-md5: 843ea2cfa8c78142dfe1e4eb215ca365 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, mail-server, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libassuan0-dbg Priority: extra Section: debug Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: libassuan Version: 2.1.1-1ubuntu1 Depends: libassuan0 (= 2.1.1-1ubuntu1) Filename: pool/main/liba/libassuan/libassuan0-dbg_2.1.1-1ubuntu1_i386.deb Size: 99696 MD5sum: 3582541201eddf82a901ce6d4d8699be SHA1: a03530a43c0ba9178d022264d68c2dc37e5e5ddb SHA256: 1c0ddbc8ec2f10c1282f7c6462eceb8bc0fa5ef722d9cf2d7907c46397f4bd08 Description: IPC library for the GnuPG components -- debugging symbols Multi-Arch: same Homepage: http://www.gnupg.org/(en)/related_software/libassuan/index.html Description-md5: 173295a7eb844c6edbc69762fc5121a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasyncns-dev Priority: optional Section: libdevel Installed-Size: 400 Maintainer: Ubuntu Developers Original-Maintainer: Tanguy Ortolo Architecture: i386 Source: libasyncns Version: 0.8-4ubuntu2 Depends: libasyncns0 (= 0.8-4ubuntu2) Filename: pool/main/liba/libasyncns/libasyncns-dev_0.8-4ubuntu2_i386.deb Size: 84300 MD5sum: c3d8007ba94b966b56465ed82b94c540 SHA1: 4a2d5e45f98cfa5c728316971589060f54e2da54 SHA256: ae3b3d9c053354be56a8c406bbce1cf550abe4d72fb949fc6eab55930695768b Description: Asynchronous name service query library development files Homepage: http://0pointer.de/lennart/projects/libasyncns/ Description-md5: fc74527707b369413fc2c96164fbb7bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libasyncns0 Priority: optional Section: libs Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Tanguy Ortolo Architecture: i386 Source: libasyncns Version: 0.8-4ubuntu2 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/liba/libasyncns/libasyncns0_0.8-4ubuntu2_i386.deb Size: 11614 MD5sum: 7926616ac13b4ee029180ac60e17f347 SHA1: 29f9fe305f0198538fc839390a3797297528b416 SHA256: b9e170317f891508a24e40ac88dc526a8e617f2d597ef89c9b2940f70ce9f26c Description: Asynchronous name service query library Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libasyncns/ Description-md5: bf0514d5327bc2f861035ea0499ea160 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libatasmart-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: libatasmart Version: 0.19-3 Depends: libatasmart4 (= 0.19-3) Filename: pool/main/liba/libatasmart/libatasmart-dev_0.19-3_i386.deb Size: 5280 MD5sum: 0c3d1ee0c7bb7f4d339f2611ea8b6b3d SHA1: 9485bf58205d3fc17418accf44c6bebea85bed68 SHA256: 07f550e879f11092c444619f08b3302d4c774b6f0caee036ddff38cca41d833a Description: ATA S.M.A.R.T. reading and parsing library - development files Homepage: http://0pointer.de/blog/projects/being-smart.html Description-md5: d276b59da8737c9307085e946262c4d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatasmart4 Priority: optional Section: libs Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: libatasmart Version: 0.19-3 Depends: libc6 (>= 2.8), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/liba/libatasmart/libatasmart4_0.19-3_i386.deb Size: 27672 MD5sum: f4a812403b2cd8cc54e5be7fa0823118 SHA1: ebe2635af1b6b58dbd7930359401a9c0ecf5821e SHA256: 4be1c1d8651b0ca44b40c5dd3e1ead3aabf4a9aca4a5f8fcce735a59499e71c8 Description: ATA S.M.A.R.T. reading and parsing library Multi-Arch: same Homepage: http://0pointer.de/blog/projects/being-smart.html Description-md5: 4fb72691593fceb8c154958820feb0ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatk-adaptor Priority: optional Section: misc Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: at-spi2-atk Version: 2.10.2-2ubuntu1 Replaces: at-spi Provides: at-spi Depends: libatk-bridge2.0-0 (>= 2.5.3), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.12.0) Conflicts: at-spi Filename: pool/main/a/at-spi2-atk/libatk-adaptor_2.10.2-2ubuntu1_i386.deb Size: 9906 MD5sum: f755418b5287081a665a7da42668b523 SHA1: 16e96b251151666ea438f2a9847d1a98db4a07d6 SHA256: e0f8a7ff6ffd0a52e42dcfe9c7abceb3e6fd16335f59a1443870822f6ad9cf4f Description: AT-SPI 2 toolkit bridge Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 555ac72f9da0fe143c3859b4404b33e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatk-adaptor-dbg Priority: extra Section: debug Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: at-spi2-atk Version: 2.10.2-2ubuntu1 Depends: libatk-adaptor (= 2.10.2-2ubuntu1) Filename: pool/main/a/at-spi2-atk/libatk-adaptor-dbg_2.10.2-2ubuntu1_i386.deb Size: 4142 MD5sum: ec3f216448b11586cffc474b2707300f SHA1: 13281ab7aad4ede93600de732cc013ba95a8781d SHA256: d9015026e1cbd5fc393d7fc5db13b3b16b6266f4b4abe93aa5fa29acd9c5464b Description: AT-SPI 2 toolkit bridge - debugging symbols Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 54d72f2b48843e611d994b4a51c4f160 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatk-bridge2.0-0 Priority: optional Section: libs Installed-Size: 209 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: at-spi2-atk Version: 2.10.2-2ubuntu1 Depends: libatk1.0-0 (>= 2.10.0), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/a/at-spi2-atk/libatk-bridge2.0-0_2.10.2-2ubuntu1_i386.deb Size: 46556 MD5sum: a620e0a6861eaced17204be0f094c766 SHA1: 3266bac5f3b658d7c0e5b64c0f9b6ed02b8fe47c SHA256: cbcabe9ad002bd6deb37bea7dc114b5aa0a953557cc6c308de5581dea4769eca Description: AT-SPI 2 toolkit bridge - shared library Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: c290f0f14adb88ba9a3084abd9dc2268 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatk-bridge2.0-0-dbg Priority: extra Section: debug Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: at-spi2-atk Version: 2.10.2-2ubuntu1 Depends: libatk-bridge2.0-0 (= 2.10.2-2ubuntu1) Filename: pool/main/a/at-spi2-atk/libatk-bridge2.0-0-dbg_2.10.2-2ubuntu1_i386.deb Size: 161662 MD5sum: e24bf7721e334ee70dd1b4e0242ea375 SHA1: 38b1428e500d2cdbfb1ace0c823b7562e35cea97 SHA256: 93c6b753663a4af88c945642c3fec8c414dc3ca3f63002180d8a0c97f7f4b9eb Description: AT-SPI 2 toolkit bridge - debugging symbols Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 0f47ff42a5311c3b6c914986ff693d8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatk-bridge2.0-dev Priority: optional Section: libdevel Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: at-spi2-atk Version: 2.10.2-2ubuntu1 Depends: libatk-bridge2.0-0 (= 2.10.2-2ubuntu1), libglib2.0-dev (>= 2.4.1-2) Filename: pool/main/a/at-spi2-atk/libatk-bridge2.0-dev_2.10.2-2ubuntu1_i386.deb Size: 2774 MD5sum: 4a0b66795e1be74dc166bb452fb4a5d6 SHA1: ef33af253557b1eddb5bf7c3d4d7b159fde6737f SHA256: da4ee74768a85a51700459f378b37aa52254cecd83fd7231d0707bb1fb7fa92c Description: Development files for the AT-SPI 2 toolkit bridge Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 178e73fa408e4d41e0478ebc5a88e6f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatk-wrapper-java Priority: optional Section: java Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: java-atk-wrapper Version: 0.30.4-4 Depends: default-jre | java2-runtime Recommends: libatk-wrapper-java-jni Filename: pool/main/j/java-atk-wrapper/libatk-wrapper-java_0.30.4-4_all.deb Size: 30172 MD5sum: 014b8ad7900e10b8097d9197b104eb4b SHA1: 042775635ea3d4ce70040eb53dc2779e4b42c049 SHA256: 0662c2f751100346012c4123fa49d1272da1a778de8ba1ff1ab45124c3090712 Description: ATK implementation for Java using JNI Multi-Arch: foreign Homepage: http://ftp.gnome.org/pub/GNOME/sources/java-atk-wrapper/ Description-md5: 2435a7ab3fb5e265d740a2fa375e41e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: libatk-wrapper-java-jni Priority: optional Section: java Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: java-atk-wrapper Version: 0.30.4-4 Depends: libatk1.0-0 (>= 1.18.0), libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.12.0), default-jre | java2-runtime, libatk-wrapper-java (>= 0.30.4-4) Pre-Depends: multiarch-support Filename: pool/main/j/java-atk-wrapper/libatk-wrapper-java-jni_0.30.4-4_i386.deb Size: 25034 MD5sum: 2272ae34ee85531efbf0294fa44f07dd SHA1: 808f06e559d914d6605471397d973ec88d7b4b60 SHA256: e6836488e3422ff56fd62e5ad2814d5d6d9e8a9de85161f723782a7823e6a4b0 Description: ATK implementation for Java using JNI (JNI bindings) Multi-Arch: same Homepage: http://ftp.gnome.org/pub/GNOME/sources/java-atk-wrapper/ Description-md5: ba571b57059ec7e09d91c5389edc0996 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: libatk1.0-0 Priority: optional Section: libs Installed-Size: 215 Maintainer: Ubuntu Developers Architecture: i386 Source: atk1.0 Version: 2.10.0-2ubuntu2 Depends: libc6 (>= 2.2), libglib2.0-0 (>= 2.37.3), libatk1.0-data (= 2.10.0-2ubuntu2) Pre-Depends: multiarch-support Filename: pool/main/a/atk1.0/libatk1.0-0_2.10.0-2ubuntu2_i386.deb Size: 49470 MD5sum: 6389616c51cf2200d69caa97e2c00613 SHA1: 187e1c2fff50f8606d4ea5d37a4dccfbdeda03b7 SHA256: ec4a41add4677efbeac2ed2220054f545d945b866e99547f08d39d4ed43faf70 Description: ATK accessibility toolkit Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 1c89fa26cb3e32fd7a97c099285532f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatk1.0-data Priority: optional Section: misc Installed-Size: 92 Maintainer: Ubuntu Developers Architecture: all Source: atk1.0 Version: 2.10.0-2ubuntu2 Filename: pool/main/a/atk1.0/libatk1.0-data_2.10.0-2ubuntu2_all.deb Size: 13736 MD5sum: 023fba9076d80ade2849987daf871532 SHA1: 118ce636ecc156ea91f08f8ecb6d60b93732b994 SHA256: 43e680d915cf6f43b9bf83a3da0030e340cddd6683122346f215abcbfebd0676 Description: Common files for the ATK accessibility toolkit Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 63757e00246d87f2d55232721e35abc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatk1.0-dbg Priority: extra Section: libdevel Installed-Size: 235 Maintainer: Ubuntu Developers Architecture: i386 Source: atk1.0 Version: 2.10.0-2ubuntu2 Depends: libatk1.0-0 (= 2.10.0-2ubuntu2) Filename: pool/main/a/atk1.0/libatk1.0-dbg_2.10.0-2ubuntu2_i386.deb Size: 123872 MD5sum: e56250bba1a7da34dc78040a46442ced SHA1: 71129498aa0e44c7d6a1644a6600e22fa72f0c48 SHA256: 1d8bda79b8752ae8a64df3d4c0ccbfcfaf70cfc0cd70dbf679bde4bba21fcda1 Description: ATK libraries and debugging symbols Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 80bcc20a15a8cede2d753e7ffc4fcb70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatk1.0-dev Priority: optional Section: libdevel Installed-Size: 935 Maintainer: Ubuntu Developers Architecture: i386 Source: atk1.0 Version: 2.10.0-2ubuntu2 Replaces: gir-repository-dev Depends: libatk1.0-0 (= 2.10.0-2ubuntu2), gir1.2-atk-1.0 (= 2.10.0-2ubuntu2), pkg-config, libglib2.0-dev (>= 2.31.2) Filename: pool/main/a/atk1.0/libatk1.0-dev_2.10.0-2ubuntu2_i386.deb Size: 67814 MD5sum: 5ccf8e7e5b452ad16c226fc7190944ba SHA1: e786bed596016f98486331d143e7100c2f717340 SHA256: f973dd7eb5f59dcb5c3ce30833f866577d0ceb9b563b7da7ef069021e94418d2 Description: Development files for the ATK accessibility toolkit Homepage: http://www.gtk.org/ Description-md5: 53650239fb69a38c98ea6ac0aaa4e43a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatk1.0-doc Priority: optional Section: doc Installed-Size: 1106 Maintainer: Ubuntu Developers Architecture: all Source: atk1.0 Version: 2.10.0-2ubuntu2 Suggests: libglib2.0-doc, libgtk2.0-doc, devhelp Filename: pool/main/a/atk1.0/libatk1.0-doc_2.10.0-2ubuntu2_all.deb Size: 91336 MD5sum: 30996fbf108d285b8571e06784c607b7 SHA1: fa83a493f149508ab5d7aa000435e024705b3140 SHA256: 29eaefb79702c521ae855e00fcdc93909718ee552128aeb72618efec3c44c2a6 Description: Documentation files for the ATK toolkit Homepage: http://www.gtk.org/ Description-md5: 1cd17cc7acbbb1b0f9afe07b816b808b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libatkmm-1.6-1 Priority: optional Section: libs Installed-Size: 300 Maintainer: Ubuntu Developers Original-Maintainer: Krzysztof Klimonda Architecture: i386 Source: atkmm1.6 Version: 2.22.7-2ubuntu1 Replaces: libgtkmm-2.4-1c2a (<< 1:2.22.0) Depends: libatk1.0-0 (>= 1.12.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libglibmm-2.4-1c2a (>= 2.36.2), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: libgtkmm-2.4-1c2a (<< 1:2.22.0) Filename: pool/main/a/atkmm1.6/libatkmm-1.6-1_2.22.7-2ubuntu1_i386.deb Size: 59310 MD5sum: 892ce26aa2ea2b76bb90c30463d04135 SHA1: 1f01fd51ee44199fc4b0d444b708e1990ecae66c SHA256: 39f28779af0722e79e464e52daa9aae2debc907279a329f4a730cee1cc7140a2 Description: C++ wrappers for ATK accessibility toolkit (shared libraries) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: f8f61bf9439c2cdfdc1b6675c29553dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatkmm-1.6-dbg Priority: extra Section: debug Installed-Size: 547 Maintainer: Ubuntu Developers Original-Maintainer: Krzysztof Klimonda Architecture: i386 Source: atkmm1.6 Version: 2.22.7-2ubuntu1 Replaces: libgtkmm-2.4-dbg (<< 1:2.22.0) Depends: libatkmm-1.6-1 (= 2.22.7-2ubuntu1) Breaks: libgtkmm-2.4-dbg (<< 1:2.22.0) Filename: pool/main/a/atkmm1.6/libatkmm-1.6-dbg_2.22.7-2ubuntu1_i386.deb Size: 452442 MD5sum: d1fdf1c77460b6c90a7ade18681d17c8 SHA1: 1c11469e23cc5ec550f4470c32e87ac1077a9a06 SHA256: 508595b27c9e4c8435fc5bcdc4cbe1a41867e349f9ec751d2c0ae5c4190d9d2c Description: C++ wrappers for ATK accessibility toolkit (debug symbols) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: caf14a5d54e8e5e415813e74d9d006d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatkmm-1.6-dev Priority: optional Section: libdevel Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Krzysztof Klimonda Architecture: i386 Source: atkmm1.6 Version: 2.22.7-2ubuntu1 Replaces: libgtkmm-2.4-dev (<< 1:2.22.0) Depends: libatkmm-1.6-1 (= 2.22.7-2ubuntu1), libglibmm-2.4-dev (>= 2.36.0), libatk1.0-dev (>= 1.12.0) Suggests: libatkmm-1.6-doc Breaks: libgtkmm-2.4-dev (<< 1:2.22.0) Filename: pool/main/a/atkmm1.6/libatkmm-1.6-dev_2.22.7-2ubuntu1_i386.deb Size: 27222 MD5sum: d8d3e9767942d871ceacf9dc089e4d9a SHA1: 47cb613560068b19b0a058ca9f514fa649f673c2 SHA256: 5b1cb8a945907da68110e0e370f2c0dd5799d3bc1c345f8fb08d36f3d100f7aa Description: C++ wrappers for ATK accessibility toolkit (development files) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 2f43001f33ccae4bec69147e61af7d18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatkmm-1.6-doc Priority: optional Section: doc Installed-Size: 1338 Maintainer: Ubuntu Developers Original-Maintainer: Krzysztof Klimonda Architecture: all Source: atkmm1.6 Version: 2.22.7-2ubuntu1 Depends: lynx | www-browser, doc-base Recommends: gtkmm-documentation Filename: pool/main/a/atkmm1.6/libatkmm-1.6-doc_2.22.7-2ubuntu1_all.deb Size: 89712 MD5sum: 77bf0ba4cee7d8be6fddb5d1692abecb SHA1: d860a6274101def76e22772743dad326a26c9e62 SHA256: c46e3e0bf84b437426423210965c01caa2f76be79587ac4aa0e0d5690c3a63b2 Description: C++ wrappers for ATK accessibility toolkit (documentation) Multi-Arch: foreign Homepage: http://www.gtkmm.org/ Description-md5: a8e26cc9a5de19c795cfb2d35352e480 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatm1 Priority: optional Section: libs Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Peter De Schrijver (p2) Architecture: i386 Source: linux-atm Version: 1:2.5.1-1.5 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Conflicts: atm-tools (<< 2.4.1-6) Filename: pool/main/l/linux-atm/libatm1_2.5.1-1.5_i386.deb Size: 24432 MD5sum: 850b6f3715055e8bf705d39938b5b211 SHA1: 518a741c50f9619698ef0ed4b4afcbe66ba83d07 SHA256: 3c2fad1a9980866b81b0369198799eb90bc9d0f5cc89ade5385f1ebc68fe25e1 Description: shared library for ATM (Asynchronous Transfer Mode) Multi-Arch: same Homepage: http://linux-atm.sourceforge.net/ Description-md5: f31a6a0202925696ffa68472e483852e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-live Package: libatm1-dev Priority: optional Section: libdevel Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Peter De Schrijver (p2) Architecture: i386 Source: linux-atm Version: 1:2.5.1-1.5 Replaces: atm-dev (<< 2.4.1-7) Provides: libatm-dev Depends: libatm1 (= 1:2.5.1-1.5) Conflicts: atm-dev (<< 2.4.1-7) Filename: pool/main/l/linux-atm/libatm1-dev_2.5.1-1.5_i386.deb Size: 43196 MD5sum: cb0ef42063ae76d781f272fdcaa30e9c SHA1: e07c75d825b4afc66335d706251948801f484da0 SHA256: d88fe764f30e779a5a45ff94672a68f67a1ba80f5543eb9fd3653623e33dfb25 Description: Development files for compiling ATM programs Homepage: http://linux-atm.sourceforge.net/ Description-md5: b034705fcdd3f4d2345d779744f7526d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic-ops-dev Priority: optional Section: libdevel Installed-Size: 672 Maintainer: Ubuntu Developers Original-Maintainer: Ian Wienand Architecture: i386 Source: libatomic-ops Version: 7.4-0ubuntu3 Replaces: libatomic-ops Filename: pool/main/liba/libatomic-ops/libatomic-ops-dev_7.4-0ubuntu3_i386.deb Size: 69730 MD5sum: a18e5c39868f81838abe99dfd6db7639 SHA1: 2a37572570366295a18ed388a8c9419efe153d8c SHA256: 05699827ddf7571048521bb360015274ab57e010d9cb3e308c11d3c47cddd3c1 Description: A library for atomic operations (development files) Description-md5: d0d2699cb21face9e489b82ad0d63d49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic1 Priority: optional Section: libs Installed-Size: 53 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libatomic1_4.8.2-19ubuntu1_i386.deb Size: 8258 MD5sum: de1a19d40e9fb76fb7f69e6f1574bbec SHA1: 5a6d2c9b386678cbb2eff05e172f4689a5011e42 SHA256: 30b53af083fc61fbe2c0c39a33b97033df28f01c6ce04fa1d9c2e51312c51e3f Description: support library providing __atomic built-in functions Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 16938852526fc26bdbcb46c18435ed08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatomic1-arm64-cross Priority: extra Section: devel Installed-Size: 47 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libc6-arm64-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-arm64-cross/libatomic1-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 5722 MD5sum: 2c1f18aef46c2c331f501ad1a6feaf02 SHA1: 20d1250c7d6ed14a15669eb163eb2956d2fe3938 SHA256: 858cedfa4afa76b6dbfacdf6bda637af8542591474dc3174a42d0a3b4c3e15b1 Description: support library providing __atomic built-in functions Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 16938852526fc26bdbcb46c18435ed08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic1-armhf-cross Priority: extra Section: devel Installed-Size: 42 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libatomic1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 5748 MD5sum: a3ad12300426a6783cf2d450ec7b8bbb SHA1: b86744d84eaf1f4210bab6c1253e24e407aaedbb SHA256: 1e0bb270ea1c0370f8da3a8eebc985b8177943e44f99000bafd609e00deb7ad1 Description: support library providing __atomic built-in functions Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 16938852526fc26bdbcb46c18435ed08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic1-dbg Priority: extra Section: debug Installed-Size: 116 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libatomic1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libatomic1-dbg_4.8.2-19ubuntu1_i386.deb Size: 14636 MD5sum: a36d263bb3bacc8ddb563563f71771f8 SHA1: 574489feda4400b7c92ac718ebb541de6424bb82 SHA256: c99d57335039279bcce09edacb154f1ca9f4cad5cfbd605bcc6c556781d13c71 Description: support library providing __atomic built-in functions (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 26d76486cdd4f1973b721c8f322e9e61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic1-powerpc-cross Priority: extra Section: devel Installed-Size: 54 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/libatomic1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 6846 MD5sum: d8fc4ed81a1cade6eb757894478f2c39 SHA1: d1fe34274b2bd1ea1366bd81420894f22a3bcc55 SHA256: 432e6c0d60ea40655e5bbadda39199a5dea73483ecba2c5d39d8d05a6bc5b8da Description: support library providing __atomic built-in functions Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 16938852526fc26bdbcb46c18435ed08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatomic1-ppc64el-cross Priority: extra Section: devel Installed-Size: 58 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6-ppc64el-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libatomic1-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 7644 MD5sum: ed0828efaaa1629df469c535d62cb455 SHA1: a171243a68ce6246e4ded44cffab7e41551410b6 SHA256: af3e061809d18f1691e18ff5efe9e10206e456f3f2054f46e2e5223991dce189 Description: support library providing __atomic built-in functions Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 16938852526fc26bdbcb46c18435ed08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatspi2.0-0 Priority: optional Section: misc Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Depends: libc6 (>= 2.7), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.37.3), libx11-6 Pre-Depends: multiarch-support Recommends: at-spi2-core (= 2.10.2.is.2.10.1-0ubuntu1) Filename: pool/main/a/at-spi2-core/libatspi2.0-0_2.10.2.is.2.10.1-0ubuntu1_i386.deb Size: 51634 MD5sum: d2b5b330155b9fd9076e32cd6bab7700 SHA1: bb1d1afe56b30df05d581cbb89a1e88c132b75b3 SHA256: cabf50078ba1e8dbeb87c44376658a1b422b0b0a0cbd4dfc4acae0839d77c5fe Description: Assistive Technology Service Provider Interface - shared library Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 8e8543c1983d4f5d6305bf8bf14c302b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libatspi2.0-0-dbg Priority: extra Section: debug Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Depends: libatspi2.0-0 (= 2.10.2.is.2.10.1-0ubuntu1) Filename: pool/main/a/at-spi2-core/libatspi2.0-0-dbg_2.10.2.is.2.10.1-0ubuntu1_i386.deb Size: 144038 MD5sum: 08845b44e551ea27220a508fa6d5eac5 SHA1: d4ffe620597725f92320171a84961c7790c6753e SHA256: d8b0ee7bf12c44db233b209f215bb7d65421e3b1ea1a277093700005b52db143 Description: Assistive Technology Service Provider Interface - debugging symbols Multi-Arch: same Homepage: http://live.gnome.org/Accessibility Description-md5: 2f09127682a7556899d0526f5ed08a5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libatspi2.0-dev Priority: optional Section: libdevel Installed-Size: 558 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: at-spi2-core Version: 2.10.2.is.2.10.1-0ubuntu1 Replaces: gir-repository-dev Depends: gir1.2-atspi-2.0 (= 2.10.2.is.2.10.1-0ubuntu1), libatspi2.0-0 (= 2.10.2.is.2.10.1-0ubuntu1), libglib2.0-dev (>= 2.4.1-2), libdbus-1-dev, libdbus-glib-1-dev, dbus, libxtst-dev Filename: pool/main/a/at-spi2-core/libatspi2.0-dev_2.10.2.is.2.10.1-0ubuntu1_i386.deb Size: 56114 MD5sum: d0271db68b6b5c53d0c6be7d3b305006 SHA1: be1c7c286de81740ce0728900d6e5bddcf66c66b SHA256: 320b3d955357d6bf4b0468476964853eca93135fa9859a9426efae81a5be2724 Description: Development files for the assistive technology serice provider Homepage: http://live.gnome.org/Accessibility Description-md5: bec738c7ab772a19d5eca02168d4c616 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libattica-dbg Priority: extra Section: debug Installed-Size: 3450 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: attica Version: 0.4.2-1 Depends: libattica0.4 (= 0.4.2-1) Filename: pool/main/a/attica/libattica-dbg_0.4.2-1_i386.deb Size: 3346792 MD5sum: a88f23f26a6ef0c62cdc038e1539833b SHA1: 86f26d855f3e63432260826978622655d9eadca8 SHA256: fbad7a3bc0315454160c427ea54c9f42dd310c15ccc54a6d3ca6e9b1d736e223 Description: debug symbols for libattica Multi-Arch: same Homepage: https://projects.kde.org/attica Description-md5: d2a407a3867a8f94e53be8010010d6d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libattica-dev Priority: optional Section: libdevel Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: attica Version: 0.4.2-1 Depends: libattica0.4 (= 0.4.2-1), libqt4-dev Filename: pool/main/a/attica/libattica-dev_0.4.2-1_i386.deb Size: 23016 MD5sum: c7d9fac6716e65d156739bf090c29ffe SHA1: 4ba2b8b14dbea4407f12ea04be341079285db1c8 SHA256: c93fabb5a57d95d70c75717ce9226efd5f8858c6d8afe1fa053626a6ea607bee Description: development files for libattica Homepage: https://projects.kde.org/attica Description-md5: eb7e7920f297acf37f5a7bd13ce86c11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libattica0.4 Priority: optional Section: libs Installed-Size: 1006 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: attica Version: 0.4.2-1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-network (>= 4:4.7), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/a/attica/libattica0.4_0.4.2-1_i386.deb Size: 281690 MD5sum: 8331332308bb8401d893a11fccdcd391 SHA1: d6b8a9685f7a26cc17f082fb38f4de8be22d1c5f SHA256: bc486b436d59735c93e5915d0424eb73e822ddf42f8d0faf31f17b9038f068b1 Description: Qt library that implements the Open Collaboration Services API Multi-Arch: same Homepage: https://projects.kde.org/attica Description-md5: 2b0297fc24f9bdc9f8e014f379f87612 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libattr1 Priority: required Section: libs Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: attr Version: 1:2.4.47-1ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: attr (<< 2.0.0) Filename: pool/main/a/attr/libattr1_2.4.47-1ubuntu1_i386.deb Size: 9414 MD5sum: d5ce57175db2e8e07facc67ca1096d75 SHA1: e2b7fbc80c199b4d80a639d0dd46919d72a47fc9 SHA256: 0e9d88b95463981b17148ef409edac7f8ad4fd283b04917985ac1d4aba0a2686 Description: Extended attribute shared library Multi-Arch: same Homepage: http://savannah.nongnu.org/projects/attr/ Description-md5: 828e462109496dfbca870108ebcb31fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libattr1-dev Priority: extra Section: libdevel Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: attr Version: 1:2.4.47-1ubuntu1 Replaces: attr-dev Provides: attr-dev Depends: libc6-dev | libc-dev, libattr1 (= 1:2.4.47-1ubuntu1) Conflicts: attr (<< 2.0.0), attr-dev Filename: pool/main/a/attr/libattr1-dev_2.4.47-1ubuntu1_i386.deb Size: 33032 MD5sum: 0fd91dfc5a6eff21c6831db4fc778a8d SHA1: 4ba886e1b5b6b8e5b08390f19414c4184e96d201 SHA256: 178721549e689690d0df5b8ae36bd0bc7338d2cfb33117d44d330c1534c45c66 Description: Extended attribute static libraries and headers Multi-Arch: same Homepage: http://savannah.nongnu.org/projects/attr/ Description-md5: 094f1b349383bbd827cf50256c2c1c7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaudio-dev Priority: extra Section: libdevel Installed-Size: 1383 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: i386 Source: nas Version: 1.9.4-1 Replaces: nas-dev Provides: nas-dev Depends: libaudio2 (= 1.9.4-1), libc6 (>= 2.15), libxau6, libxt6 Conflicts: nas-dev Filename: pool/main/n/nas/libaudio-dev_1.9.4-1_i386.deb Size: 516438 MD5sum: 6759e1b02bddf1ea510f1df168bab68d SHA1: 9c4c974fde2ecd4c7786d2b9a30f8362e7d2631b SHA256: 3be13e6b8dbf26fda149936b6bab4e827d747328be2b18ee4ccee64ff9d696c2 Description: Network Audio System - development files Multi-Arch: same Description-md5: 64f0a82f05b3c53e80a2a946147df4f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaudio2 Priority: optional Section: libs Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: i386 Source: nas Version: 1.9.4-1 Replaces: nas-lib Provides: nas-lib Depends: libc6 (>= 2.15), libxau6, libxt6 Pre-Depends: multiarch-support Suggests: nas Filename: pool/main/n/nas/libaudio2_1.9.4-1_i386.deb Size: 56978 MD5sum: eecf38c43cb357e6d5f43ed60e65c5c9 SHA1: a93bf2911511aa12956df5b7db4a6716e1612015 SHA256: bbbb38f35ef14db905dd7eb487177a033adff77a116dd41a042e4f07d1ee4de2 Description: Network Audio System - shared libraries Multi-Arch: same Description-md5: e406a6ba4c2219d0fa8de179e6be344c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libaudiofile-dbg Priority: extra Section: debug Installed-Size: 621 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: audiofile Version: 0.3.6-2 Depends: libaudiofile1 (= 0.3.6-2) Filename: pool/main/a/audiofile/libaudiofile-dbg_0.3.6-2_i386.deb Size: 566176 MD5sum: d86af08e3e552bbc4fd74b70cf8c725c SHA1: 39306ab3cea399070b75ef78400d4e7104e46918 SHA256: f43deb0480a23706bbb644e65c4fc8376711a0235f841d7a49ed42258e8352c2 Description: Open-source version of SGI's audiofile library (debug) Multi-Arch: same Homepage: http://audiofile.68k.org/ Description-md5: 9cd7fb91eb23aab5a8ad7eae250d2d66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaudiofile-dev Priority: optional Section: libdevel Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: audiofile Version: 0.3.6-2 Depends: libaudiofile1 (= 0.3.6-2) Recommends: pkg-config Filename: pool/main/a/audiofile/libaudiofile-dev_0.3.6-2_i386.deb Size: 38560 MD5sum: bd30e5ddb51ffd1e47e9f152c9f867ef SHA1: 058b9f0c559fab22b6ddb52b220fed2fc8b30295 SHA256: 9310158ccac1456b2ee84088e50b983297dfb26cab2032693f4ed625bd1ca0f7 Description: Open-source version of SGI's audiofile library (header files) Multi-Arch: same Homepage: http://audiofile.68k.org/ Description-md5: aada0cfba076707b0be8faab61d1e438 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaudiofile1 Priority: optional Section: libs Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: audiofile Version: 0.3.6-2 Depends: libc6 (>= 2.4), libflac8 (>= 1.2.1), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/a/audiofile/libaudiofile1_0.3.6-2_i386.deb Size: 115332 MD5sum: e05c4f265132fc4ace1fd76a8712bdc5 SHA1: e6b48cb79cb29497f4ceae5d9026eb6c5d8e36a4 SHA256: 8ddaffe345f831cfb4a765f907a65ab5430298a01fbc719b072d0c510475457d Description: Open-source version of SGI's audiofile library Multi-Arch: same Homepage: http://audiofile.68k.org/ Description-md5: 4514295eed6d5fc564db1ca78517ee90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libaudit-common Priority: required Section: libs Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Source: audit Version: 1:2.3.2-2ubuntu1 Replaces: libaudit0, libaudit1 (<< 1:2.2.1-2) Breaks: libaudit0, libaudit1 (<< 1:2.2.1-2) Filename: pool/main/a/audit/libaudit-common_2.3.2-2ubuntu1_all.deb Size: 5372 MD5sum: 26dcbed153579639985b25f47a59118d SHA1: fa1ebe94534326ed1c4e19132a517331e5768ce8 SHA256: ef9751457270b682fcf39ef8629ba2ce89f4a2f38be4077a8c102021a39e3e46 Description: Dynamic library for security auditing - common files Multi-Arch: foreign Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: f1e698fe58902299a06c8f79f079ac9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libaudit-dev Priority: extra Section: libdevel Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: audit Version: 1:2.3.2-2ubuntu1 Depends: libaudit1 (= 1:2.3.2-2ubuntu1) Filename: pool/main/a/audit/libaudit-dev_2.3.2-2ubuntu1_i386.deb Size: 59674 MD5sum: 04d0e1f9e6c21f23ee738936ceb24cd6 SHA1: 4ce7ce492a918fed13e3a19c5cfbd7c68b96b53a SHA256: bcaa9465782c3639e58e3c5f0f3217e6007c5f8b26e8a52ea94a955e9a2e51f7 Description: Header files and static library for security auditing Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: fb095c1a1f1082c97ac0fa907e55f7a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaudit1 Priority: required Section: libs Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: audit Version: 1:2.3.2-2ubuntu1 Depends: libaudit-common (= 1:2.3.2-2ubuntu1), libc6 (>= 2.8) Pre-Depends: multiarch-support Filename: pool/main/a/audit/libaudit1_2.3.2-2ubuntu1_i386.deb Size: 35408 MD5sum: a1006c700151c1891fce46b4bbe5b3ca SHA1: 8e806387ce565c4dc9d457855620ad3fc4190eb9 SHA256: a3a6e667e7fc8f7a31b3694d6ff115c1f295edae130231d83d38f5611ad0980f Description: Dynamic library for security auditing Multi-Arch: same Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: ec521af3cbcca51c5a26a117f114a9b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libaugeas-dev Priority: optional Section: libdevel Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: i386 Source: augeas Version: 1.2.0-0ubuntu1 Depends: libaugeas0 (= 1.2.0-0ubuntu1), libxml2-dev Filename: pool/main/a/augeas/libaugeas-dev_1.2.0-0ubuntu1_i386.deb Size: 11102 MD5sum: 445d64d163f3beeefbd237476f3b761b SHA1: d55d5d082856ff6368d36a6fb85b250c2db5cf71 SHA256: cb93811f0faba878cb624a19a96cc08e1bf99f0dffc7cc737568debc7337ddf5 Description: Development files for writing applications based on libaugeas0 Homepage: http://augeas.net/ Description-md5: ed145203b749773dd79ed363ff832678 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaugeas-ruby1.8 Priority: optional Section: libs Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Source: ruby-augeas Version: 0.5.0-2 Depends: ruby-augeas Filename: pool/main/r/ruby-augeas/libaugeas-ruby1.8_0.5.0-2_all.deb Size: 1406 MD5sum: dcb41612c96bd01308eaa5e4a91284d9 SHA1: e6c9466b917adfefc49bb223cd186919d741023d SHA256: 9012daf4844506e76dd41eb34d08c74bb2678a4b8f3ef52f6cfcd5eaed775edd Description: Transitional package for ruby-augeas Homepage: http://augeas.net/ Description-md5: 86bd2838689e1a32a55f0df7314dbad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaugeas-ruby1.9.1 Priority: optional Section: ruby Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Source: ruby-augeas Version: 0.5.0-2 Depends: ruby-augeas Filename: pool/main/r/ruby-augeas/libaugeas-ruby1.9.1_0.5.0-2_all.deb Size: 1410 MD5sum: e1b270aedd79094603dd18d989b942f4 SHA1: 670eadf113e4a5ea9c4bc4642a89da63dbebc0cd SHA256: 172cc384379b2e9681693b7c90b62503ad63e67111a0f2bb085c194e5bc62985 Description: Transitional package for ruby-augeas Homepage: http://augeas.net/ Description-md5: 86bd2838689e1a32a55f0df7314dbad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libaugeas0 Priority: optional Section: libs Installed-Size: 511 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Valcárcel Scerpella Architecture: i386 Source: augeas Version: 1.2.0-0ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libxml2 (>= 2.7.4), augeas-lenses Suggests: augeas-tools Filename: pool/main/a/augeas/libaugeas0_1.2.0-0ubuntu1_i386.deb Size: 133640 MD5sum: 84fc8c603919404b2a9e37dc4b1451ce SHA1: 287064dbc419b09e9dfa8f3805163e1d5b52cbc7 SHA256: 6c18b642dffff50ae9f39b3ff997d94f2877b6c3afa0d0a2d561d923bbda8162 Description: Augeas configuration editing library and API Homepage: http://augeas.net/ Description-md5: 309877ef689bd8ed561675486502059a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libauparse-dev Priority: extra Section: libdevel Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: audit Version: 1:2.3.2-2ubuntu1 Replaces: libaudit-dev (<< 1:2.2.1-2) Depends: libauparse0 (= 1:2.3.2-2ubuntu1) Breaks: libaudit-dev (<< 1:2.2.1-2) Filename: pool/main/a/audit/libauparse-dev_2.3.2-2ubuntu1_i386.deb Size: 60852 MD5sum: 8e557b6f0ab3d7f4e0e4f9d331076fef SHA1: 7387bf87d15b1d51eed73dc6d54cb202d3dc853d SHA256: a291616babfdbe3879c90fc9d6f134f9987c02d88977c05976ccc8fee0b7afce Description: Header files and static library for the libauparse0 library Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: 44274718be015b9669c36ffc31b8d828 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libauparse0 Priority: optional Section: libs Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: audit Version: 1:2.3.2-2ubuntu1 Replaces: libaudit0, libaudit1 (<< 1:2.2.1-2) Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.8) Pre-Depends: multiarch-support Breaks: libaudit0, libaudit1 (<< 1:2.2.1-2) Filename: pool/main/a/audit/libauparse0_2.3.2-2ubuntu1_i386.deb Size: 33592 MD5sum: 6ab42edeb36a09d1f3f6a8122cc066af SHA1: 03644f5e2aa389939392c05ba722c2188a8f3ad0 SHA256: 02a79de832dfed02dfce38c313aec3fec76a94be9b8585b60588a7268f06ce1e Description: Dynamic library for parsing security auditing Multi-Arch: same Homepage: http://people.redhat.com/sgrubb/audit/ Description-md5: 364e3e4ce52a621a1d7dbb7226da14a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libauthen-sasl-perl Priority: extra Section: perl Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.1500-1 Depends: perl Suggests: libdigest-hmac-perl, libgssapi-perl Filename: pool/main/liba/libauthen-sasl-perl/libauthen-sasl-perl_2.1500-1_all.deb Size: 53192 MD5sum: 77c54d59791a7e684ed60557c512f52e SHA1: 4e57a0705e33737d787449b631966c36c98da48c SHA256: c4a6bb0024d9d460b836f317eab59828acb0974baee0cb401a1ed3bc62ece056 Description: Authen::SASL - SASL Authentication framework Homepage: http://search.cpan.org/dist/Authen-SASL/ Description-md5: add7806e00b58d9322dd910e2bb144df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libautodie-perl Priority: optional Section: perl Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.23-1 Depends: perl, libsub-identify-perl Recommends: libipc-system-simple-perl Filename: pool/main/liba/libautodie-perl/libautodie-perl_2.23-1_all.deb Size: 60564 MD5sum: a1a7a6152ffb63c94273d35d0f629259 SHA1: 169c0d1d20785fa10fed6cbffed51f4fe8fd3443 SHA256: 36ab51c893267ddb5aa913ad66baec311adc27b1f2bd4b3120750858b1638a61 Description: Perl pragma to make certain failures fatal Homepage: https://metacpan.org/release/autodie/ Description-md5: c8658a0874c1cd681f7cbe4fe17f699c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-client-dev Priority: optional Section: net Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (= 0.6.31-4ubuntu1), libavahi-common-dev, libdbus-1-dev (>= 0.60) Filename: pool/main/a/avahi/libavahi-client-dev_0.6.31-4ubuntu1_i386.deb Size: 29124 MD5sum: 8ef2770adedeabd2f3b1deb7874e2141 SHA1: 2c5cbb9a2cd96e50dd00d83e9c332a40e6beeb0f SHA256: 974830b4ca363df1189fdfdce86a8a08fec8a7fb99f1b844dca84529a494dbba Description: Development files for the Avahi client library Homepage: http://avahi.org/ Description-md5: 70b3114997bfcd9053f7bf3f89550ef9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-client3 Priority: optional Section: libs Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (>= 0.6.22), libc6 (>= 2.4), libdbus-1-3 (>= 1.1.1) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-client3_0.6.31-4ubuntu1_i386.deb Size: 24498 MD5sum: cd5898efcd586fea951efcb29aed899f SHA1: 672ae696467bc6f2c73bfc8ba081ccda2d3abeb8 SHA256: ab229a157913fd3c81f9496f325561f5e5884d0cf9a61157ce61059b2a996110 Description: Avahi client library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 23a3240e3fa4fb5375126d82ae53d14b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-common-data Priority: optional Section: libs Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Filename: pool/main/a/avahi/libavahi-common-data_0.6.31-4ubuntu1_i386.deb Size: 21266 MD5sum: 8ffb9c05fb53a49e66b67f77282742ea SHA1: d303e0b625a61da97b32d5e61363501108df506a SHA256: 7c8cac6a627821547d81679da34462672d000e94f307404602b3a55a2f46f02b Description: Avahi common data files Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 7262221e9aafb47f2911e3153296fab1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-common-dev Priority: optional Section: net Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (= 0.6.31-4ubuntu1) Filename: pool/main/a/avahi/libavahi-common-dev_0.6.31-4ubuntu1_i386.deb Size: 35730 MD5sum: 37cb9f898c91b13a805308509318e43b SHA1: 1d54aa267b0aa16cfebe525f238d92b7db448ee1 SHA256: 31292d2054cefcb908a93497ba0c75dd05aa3595200a41d0e8d04470a46887e6 Description: Development files for the Avahi common library Homepage: http://avahi.org/ Description-md5: 2bd45c44b0f13fa2319c808bd7de79e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-common3 Priority: optional Section: libs Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libc6 (>= 2.4), libavahi-common-data Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-common3_0.6.31-4ubuntu1_i386.deb Size: 22168 MD5sum: 87435bcf3db5b99d0df4d62eabcfbd6a SHA1: 77915b0fa1b70289c8f279559038ed2858f3fdb7 SHA256: 5689c0fb3fe2198ee41e8513496716ac388448912e112025732f13e7b7e108b7 Description: Avahi common library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: bbc06dc3aaf84439dd323000d2524550 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-compat-libdnssd-dev Priority: optional Section: libdevel Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-compat-libdnssd1 (= 0.6.31-4ubuntu1), libavahi-client-dev Filename: pool/main/a/avahi/libavahi-compat-libdnssd-dev_0.6.31-4ubuntu1_i386.deb Size: 30524 MD5sum: 0eef6a4d26811b155607ca8c4154f969 SHA1: 6036a300ed780121146cc172a2f1e42b8d47dcdb SHA256: f2292fd2f43c238e61049262b5b3d8d73882161922ec646feb3325fc84a73fe2 Description: Development headers for the Avahi Apple Bonjour compatibility library Homepage: http://avahi.org/ Description-md5: b649eb808a8fb7e872951939f15bc53f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-compat-libdnssd1 Priority: optional Section: libs Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: libnss-mdns Filename: pool/main/a/avahi/libavahi-compat-libdnssd1_0.6.31-4ubuntu1_i386.deb Size: 15850 MD5sum: 5a489566c3aa445b0a00c35413309ffb SHA1: 7f8aed57df4c5058e6678be9546988d4a66c2ec4 SHA256: 4356341de2baa71f4f2f685ba010bb5ad585d1e1cc86a5f459928a7671e7489e Description: Avahi Apple Bonjour compatibility library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: b65a9302d5f5a107a6de3804ec9351c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libavahi-core-dev Priority: optional Section: net Installed-Size: 451 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-core7 (= 0.6.31-4ubuntu1), libavahi-common-dev Filename: pool/main/a/avahi/libavahi-core-dev_0.6.31-4ubuntu1_i386.deb Size: 95238 MD5sum: 8c699f26213340e861e5be069fe9cf7f SHA1: ebaab69d72eb2efea23e4c3a67191187b44aa9a2 SHA256: 650ca69690fe249635148967419edb8e7fb9ba5426685d62869f60af979bf11a Description: Development files for Avahi's embeddable mDNS/DNS-SD library Homepage: http://avahi.org/ Description-md5: 9090641583bbaecbe0ef5fa8d0108f64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-core7 Priority: optional Section: libs Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (>= 0.6.16), libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-core7_0.6.31-4ubuntu1_i386.deb Size: 80718 MD5sum: 98ca8ae98a4bc7496db5b9470e926a4a SHA1: 7992c33e906c7191f806afa0ebf1c0d35f3092ae SHA256: 1d5724be727e198ab876d2917e80b78cc052b08d445c7306f6f56970c0789940 Description: Avahi's embeddable mDNS/DNS-SD library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 22b9d09fb6eef6b3d23199e3164eb87c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-glib-dev Priority: optional Section: net Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-glib1 (= 0.6.31-4ubuntu1), libglib2.0-dev, libavahi-common-dev Filename: pool/main/a/avahi/libavahi-glib-dev_0.6.31-4ubuntu1_i386.deb Size: 8046 MD5sum: ce20ca7b7cad05b36e22aa65f9b3f865 SHA1: 617ceee49339d072e9dd7503db5a0f484c1d590b SHA256: 803f5c01fc3cf6c6c8d608d41b2ec4e19ba9d5eace8ee3de22c6a8c70ee7b86d Description: Development headers for the Avahi GLib integration library Homepage: http://avahi.org/ Description-md5: c53bef724d42cfdb907059e698dd69b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-glib1 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (>= 0.6.16), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.16.0) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-glib1_0.6.31-4ubuntu1_i386.deb Size: 7982 MD5sum: 2c448780132ec4544fb710fe5bd0a014 SHA1: 75791a11cfce9199ed1f5c943a7cf57b98b885af SHA256: 00bf0207e240ef94dbb944302ff9a23b115df8cb06cd7be909d48e59a31de1ab Description: Avahi GLib integration library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 81eecad87a5c1892fe68f50918d70247 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-gobject-dev Priority: optional Section: libdevel Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-gobject0 (= 0.6.31-4ubuntu1), libglib2.0-dev, libavahi-client-dev, libavahi-glib-dev Filename: pool/main/a/avahi/libavahi-gobject-dev_0.6.31-4ubuntu1_i386.deb Size: 19694 MD5sum: eae111eb3e7dbc9c27bc02dfc3c6f53a SHA1: 36654f06bee6e6df396204add506ec66ca304763 SHA256: 046e1ecd9aea18ddaa5cc485b168ca5ba774f9026733911b82a909e401a4090d Description: Development headers for the Avahi GObject library Homepage: http://avahi.org/ Description-md5: b53a4bd17d9a35135092d4ba964682db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-gobject0 Priority: optional Section: libs Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-gobject0_0.6.31-4ubuntu1_i386.deb Size: 16100 MD5sum: 22ac1451bc9b73eac91fc61c5ec27775 SHA1: 031adcfa893810bd66d29119434904857b704240 SHA256: 7280120e1d036701bfccef9ca1456d4af4dc6dfa8868dab36f479f5932a4233b Description: Avahi GObject library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 44a1978a9ae30e9695613c7683efa9b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavahi-qt4-1 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-common3 (>= 0.6.16), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-qt4-1_0.6.31-4ubuntu1_i386.deb Size: 7652 MD5sum: 9e19e178f093c05d04db41ba427379e3 SHA1: 4e301188a1d07c5a6440219409770fbff0a26bc1 SHA256: c533a24b119d7ea280c87ea3e65af6d82b6af6239055acbad3429d03f579a9ba Description: Avahi Qt 4 integration library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 5722b93b169f461a7b1e7428fbaacb83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-qt4-dev Priority: optional Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-qt4-1 (= 0.6.31-4ubuntu1), libqt4-dev, libavahi-common-dev Filename: pool/main/a/avahi/libavahi-qt4-dev_0.6.31-4ubuntu1_i386.deb Size: 7766 MD5sum: ec4f377931d2f916d4c729ed3840a12d SHA1: 737884d8b0c94336f5e920303ba7ef3bf875e279 SHA256: 1aad729e4615f7128d37a64c8c1b52d0bf953e2aaaba32e6b2a9ae3105427727 Description: Development headers for the Avahi Qt 4 integration library Homepage: http://avahi.org/ Description-md5: 63265d92bdc9e13edccc29be45e4a852 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-ui-dev Priority: optional Section: libdevel Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-ui0 (= 0.6.31-4ubuntu1), libavahi-client-dev, libavahi-glib-dev, libgtk2.0-dev Filename: pool/main/a/avahi/libavahi-ui-dev_0.6.31-4ubuntu1_i386.deb Size: 18142 MD5sum: cd76f01f163e08f43af8db54fe569ebb SHA1: 10a1c210e226edb1c9a2f8dc85238c02d3775779 SHA256: f1ff823494d1f8eecada87bf121746135fb9089f31f6d69e5528dd30ddb0cf8a Description: Development headers for the Avahi GTK+ User interface library Homepage: http://avahi.org/ Description-md5: 93b46403f0b56ce77c0111c4f8b14d40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-ui-gtk3-0 Priority: optional Section: libs Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.22), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.4), libgdbm3 (>= 1.8.3), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-ui-gtk3-0_0.6.31-4ubuntu1_i386.deb Size: 18430 MD5sum: 14a8b9bc723330e3bbcfaed9ea7db46b SHA1: 31248a3a714d1712067efdb79be9ba0dd1d8d9f0 SHA256: b7a40c63c053c54c87ca1600709d888190f16878b18fdcb554095e102b965ca0 Description: Avahi GTK+ User interface library for GTK3 Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 55a81fa77d7687e44f84d058e85c4486 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-desktop Package: libavahi-ui-gtk3-dev Priority: optional Section: libdevel Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-ui-gtk3-0 (= 0.6.31-4ubuntu1), libavahi-client-dev, libavahi-glib-dev, libgtk-3-dev Conflicts: libavahi-ui-dev Filename: pool/main/a/avahi/libavahi-ui-gtk3-dev_0.6.31-4ubuntu1_i386.deb Size: 18194 MD5sum: efb95dc103c4ec4a2815954193f6404e SHA1: bcc792ac26f17e89188a1d5a770445a902217797 SHA256: 0e4fd61f6b21507e7ff32917c4378f1358f78b7ecfc11070cefc44ac82a87774 Description: Development headers for the Avahi GTK+ User interface library Homepage: http://avahi.org/ Description-md5: 93b46403f0b56ce77c0111c4f8b14d40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavahi-ui0 Priority: optional Section: libs Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.22), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.4), libgdbm3 (>= 1.8.3), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.14.0) Pre-Depends: multiarch-support Filename: pool/main/a/avahi/libavahi-ui0_0.6.31-4ubuntu1_i386.deb Size: 18480 MD5sum: 2f32fa08b4a059b75ea108ed363a5909 SHA1: c7cb744cb4484cd429621ba338434ec10bf391ae SHA256: d4715a7573042f4b5c2d12c76ac8d4c1ea7ea707afca3a71a4255d899e8c483c Description: Avahi GTK+ User interface library Multi-Arch: same Homepage: http://avahi.org/ Description-md5: 340ad1b36b81985d7e469a4a734a0367 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavalon-framework-java Priority: optional Section: libs Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: avalon-framework Version: 4.2.0-9 Suggests: libavalon-framework-java-doc Filename: pool/main/a/avalon-framework/libavalon-framework-java_4.2.0-9_all.deb Size: 70326 MD5sum: a2bc0b6525c3c66d913eefbceabaa40d SHA1: cf5a225120fc981fcedf5730a505c1b5f2c19fc0 SHA256: 98d91f719eb89399f7592e42e98ec4028792a70b4bb6529aa283c4d47850c411 Description: Common framework for Java server applications Homepage: http://excalibur.apache.org/ Description-md5: f9117fbf931d7d1e73c2658b182d9d0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavalon-framework-java-doc Priority: optional Section: doc Installed-Size: 1834 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: avalon-framework Version: 4.2.0-9 Suggests: libavalon-framework-java Filename: pool/main/a/avalon-framework/libavalon-framework-java-doc_4.2.0-9_all.deb Size: 156912 MD5sum: b27926761136736d28c003b014d92a76 SHA1: 8c2525440199ba6c5fd8f5e36b9a71b63166ce34 SHA256: 12af13cc455cea3e7da02f3a82faba8952c8290f458e667e9788eb390575024a Description: Common framework for Java server applications (API) Homepage: http://excalibur.apache.org/ Description-md5: f5c1e89e0e6d236615f930bed9800007 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libavc1394-0 Priority: extra Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: libavc1394 Version: 0.5.4-2 Depends: libc6 (>= 2.7), libraw1394-11 Pre-Depends: multiarch-support Filename: pool/main/liba/libavc1394/libavc1394-0_0.5.4-2_i386.deb Size: 20318 MD5sum: c8585875124743eadc221b4958ac323a SHA1: a61f01f6bbc70c6a75c37d157ad488e7e64fe487 SHA256: 571784b9ce1285e8e6cb71e69464dee2f87166fbae5d444ff7bc6a47a1cae814 Description: control IEEE 1394 audio/video devices Multi-Arch: same Homepage: http://sourceforge.net/projects/libavc1394/ Description-md5: cb6a1c443459f233bd1d723b97970a7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libavc1394-dev Priority: extra Section: libdevel Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: libavc1394 Version: 0.5.4-2 Depends: libavc1394-0 (= 0.5.4-2) Suggests: pkg-config Filename: pool/main/liba/libavc1394/libavc1394-dev_0.5.4-2_i386.deb Size: 8052 MD5sum: f2d696cbfdaad8be87174e716c32c8ea SHA1: fc0aecbb4eac35ff0f50aa3cf65c40d88df1157e SHA256: 644fc866797ad234e60ee8dd03c4da55212086810245ed92ff9c1c522d949563 Description: control IEEE 1394 audio/video devices (development files) Multi-Arch: same Homepage: http://sourceforge.net/projects/libavc1394/ Description-md5: 27025243e973058efe22de7dfab25bd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libb-hooks-endofscope-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.13-1 Depends: perl, libmodule-implementation-perl, libmodule-runtime-perl (>= 0.012), libsub-exporter-progressive-perl, libvariable-magic-perl (>= 0.48) Filename: pool/main/libb/libb-hooks-endofscope-perl/libb-hooks-endofscope-perl_0.13-1_all.deb Size: 14384 MD5sum: b896c8269ff86ae433803ec5ff385569 SHA1: 68620831cf7d915ca0217fb2971200ac026d57ed SHA256: 4446d8ef153fa1dab457cc2438b5d186a725b07c37a406475a86fdae94046c27 Description: module for executing code after a scope finished compilation Homepage: https://metacpan.org/release/B-Hooks-EndOfScope/ Description-md5: ed6059b7ec1cc37be7844823dcfb1ab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libb-hooks-op-check-perl Priority: optional Section: perl Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.19-1build2 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libb/libb-hooks-op-check-perl/libb-hooks-op-check-perl_0.19-1build2_i386.deb Size: 10498 MD5sum: 41af43f0e83f2715710848bf7213f936 SHA1: 2d4d6ecbe0f1a01b08f7d70ac499e7363393d0df SHA256: 1b5699935222c3264aa8a654357de93a836526b5020529c3c9dbe7325e01a9a5 Description: Perl wrapper for OP check callbacks Homepage: http://search.cpan.org/dist/B-Hooks-OP-Check/ Description-md5: 178740e79b5d43634e60c7b6db232207 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libb-keywords-perl Priority: optional Section: perl Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.13-1 Depends: perl Filename: pool/main/libb/libb-keywords-perl/libb-keywords-perl_1.13-1_all.deb Size: 11316 MD5sum: f0461f9deba1feb623c226477cd8f810 SHA1: 4e293be75ee4cbdfd0ee3f9745c7c6efbf5efe90 SHA256: ebfd6eb76a6832f39245603e3b047515a446935916125938069643b94a54a750 Description: lists of internal perl keywords Homepage: https://metacpan.org/release/B-Keywords/ Description-md5: 867be8146ae40a9735fca6dc5f66de66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbabl-0.1-0 Priority: optional Section: libs Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: babl Version: 0.1.10-1ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/b/babl/libbabl-0.1-0_0.1.10-1ubuntu2_i386.deb Size: 76066 MD5sum: 322a77da28cb83ae339e2a2b7df11c2c SHA1: 00e5aef869d7cfd0a36de78eaab9f23d4cef5aff SHA256: 415fdf79eb133c2c0b7657e9c674e5ebd7103984c4c709a4e0ae71466835b361 Description: Dynamic, any to any, pixel format conversion library Multi-Arch: same Homepage: http://gegl.org/babl/ Description-md5: ff900fc6f030f93197b9e121afde6c95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libbabl-0.1-0-dbg Priority: extra Section: debug Installed-Size: 641 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: babl Version: 0.1.10-1ubuntu2 Depends: libbabl-0.1-0 (= 0.1.10-1ubuntu2) Filename: pool/main/b/babl/libbabl-0.1-0-dbg_0.1.10-1ubuntu2_i386.deb Size: 151756 MD5sum: d71b30d17ecfd20814578e8e53893da4 SHA1: f55e85dcd804c1b370d7ce728316ee2b63e68da7 SHA256: 35428198c995f455281f4cfd18038fb76685cb82bf129936e1f182609a08c278 Description: Dynamic, any to any, pixel format conversion library (debugging symbols) Multi-Arch: same Homepage: http://gegl.org/babl/ Description-md5: b08378a00c467547de8f234092ef2e0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbabl-dev Priority: optional Section: libdevel Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: babl Version: 0.1.10-1ubuntu2 Replaces: libbabl-0.0-0-dev Provides: libbabl-0.0-0-dev Depends: libbabl-0.1-0 (= 0.1.10-1ubuntu2) Breaks: libbabl-0.0-0-dev Filename: pool/main/b/babl/libbabl-dev_0.1.10-1ubuntu2_i386.deb Size: 12246 MD5sum: 8217537ff1f0662595df106fe79632fb SHA1: e97def98f0fcaf721dbf0eee8878658bca6c9841 SHA256: 6fe0d8294ddc8ef968ff15d5792adfcaf79d2ac49da01b00bf45070cbec64af4 Description: Dynamic, any to any, pixel format conversion library (development files) Multi-Arch: same Homepage: http://gegl.org/babl/ Description-md5: 8222faeeaa3c6abb27290df29be5d457 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbabl-doc Priority: optional Section: doc Installed-Size: 1926 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: all Source: babl Version: 0.1.10-1ubuntu2 Replaces: libbabl-0.0-doc Breaks: libbabl-0.0-doc Filename: pool/main/b/babl/libbabl-doc_0.1.10-1ubuntu2_all.deb Size: 113348 MD5sum: 186224ae3e416ff7a1aa0a396c9ba20a SHA1: 6cbb9be9c18a490b8828be45766343b52c6755a5 SHA256: e3e0326c5b17d7d7ddbd7bdc90f58fb1247557ec85eb6dc24462098d652e0059 Description: Dynamic, any to any, pixel format conversion library (documentation) Multi-Arch: foreign Homepage: http://gegl.org/babl/ Description-md5: 1843cc45fff811e1ae47f159d418f66d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbamf-doc Priority: optional Section: doc Installed-Size: 276 Maintainer: Didier Roche Architecture: all Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Suggests: devhelp Filename: pool/main/b/bamf/libbamf-doc_0.5.1+14.04.20140409-0ubuntu1_all.deb Size: 22352 MD5sum: 8303deb1ca2088fff0c383bd2572de6f SHA1: c1748c9a65d9fcca19c031f9a7401721f0aae4c7 SHA256: dcaa10a7c5face8acba628487a69156b5e506550a63896c223d0d1240957edd8 Description: Window matching library - documentation Homepage: https://launchpad.net/bamf Description-md5: 11f61fe589985b977cd6f7ea9a9db116 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbamf3-2 Priority: optional Section: libs Installed-Size: 245 Maintainer: Didier Roche Architecture: i386 Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Breaks: unity (<< 3.2.12) Filename: pool/main/b/bamf/libbamf3-2_0.5.1+14.04.20140409-0ubuntu1_i386.deb Size: 48578 MD5sum: 7927b6eefd4f1b1dcb975ff8b9892207 SHA1: 2f08e78fabadf0afca3186c1a4ca7ae2300ba5f0 SHA256: aa9411e318402931d4ae11fa1ccead6f837443c53cf4da69c06003433f8dd467 Description: Window matching library - shared library Multi-Arch: same Homepage: https://launchpad.net/bamf Description-md5: 11d37ab9301d7178a8b4e967e68c0316 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libbamf3-dev Priority: optional Section: libdevel Installed-Size: 209 Maintainer: Didier Roche Architecture: i386 Source: bamf Version: 0.5.1+14.04.20140409-0ubuntu1 Depends: gir1.2-bamf-3 (= 0.5.1+14.04.20140409-0ubuntu1), libbamf3-2 (= 0.5.1+14.04.20140409-0ubuntu1), libglib2.0-dev (>= 2.30.0) Suggests: libbamf-doc Filename: pool/main/b/bamf/libbamf3-dev_0.5.1+14.04.20140409-0ubuntu1_i386.deb Size: 13384 MD5sum: 40d3da4600803a28a6b4058f70d99e9f SHA1: 3039798686e4ee01da042990cbef16a9620e9897 SHA256: 0e18019b1a8f9a94efc62105350cab51a29d1a56879f605a782cb3bdef052259 Description: Window matching library - development files Homepage: https://launchpad.net/bamf Description-md5: 701d26c3fffca1e031bcd5e22b1bbf2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbareword-filehandles-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.003-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3), libb-hooks-op-check-perl, liblexical-sealrequirehints-perl Filename: pool/main/libb/libbareword-filehandles-perl/libbareword-filehandles-perl_0.003-1build1_i386.deb Size: 9178 MD5sum: f2fe1260f33a035643bdf010e105df1a SHA1: 756dd5f0ef445da8b07296cafe0ecd109d1ebf1f SHA256: 9eb355b12f89017149f45b1eb6192246cc03b786bf0fb520db66028f223d0e82 Description: Perl pragma to disable bareword filehandles Homepage: http://search.cpan.org/dist/bareword-filehandles/ Description-md5: a315ce39c7cb346ac405ccfbd6b86972 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbasicobjects-dev Priority: extra Section: libdevel Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Depends: libbasicobjects0 (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libbasicobjects-dev_0.3.0.1-4_i386.deb Size: 4038 MD5sum: dc10a029834d4982d6d3ecb2a975b187 SHA1: 37b0ac14cd1c0455b47af9ff0ca16b73dd0c1262 SHA256: e75920d2f9e64a36c231e9a89d2b041fafc7f20df17b7b15d05af2757583717b Description: Basic object types for C -- development files Homepage: https://fedorahosted.org/sssd/ Description-md5: 321450c10ecdfe8c867dd0ec79f8ed14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbasicobjects0 Priority: extra Section: libs Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/d/ding-libs/libbasicobjects0_0.3.0.1-4_i386.deb Size: 5614 MD5sum: 95a5b76c74bdb57996a2a214c0998dfe SHA1: ee332a7dd2f62f8b9bcce47e59edfc1e3d80ecd9 SHA256: d555b1659fe57dcf3141b7c0a5221e0c2ab52604ba51b8b5777e23a8fc8a6036 Description: Basic object types for C Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 73d865f732ef29d6cec8df632e3e355c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbatik-java Priority: optional Section: libs Installed-Size: 10803 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: batik Version: 1.7.ubuntu-8ubuntu2 Depends: default-jre-headless | java2-runtime-headless, libxalan2-java, libbsf-java, libavalon-framework-java (>= 4.2.0), libcommons-io-java, libcommons-logging-java, java-wrappers (>= 0.1.12), libxml-commons-external-java Recommends: fop (>= 1:0.94), rhino, default-jre | java2-runtime Filename: pool/main/b/batik/libbatik-java_1.7.ubuntu-8ubuntu2_all.deb Size: 9030040 MD5sum: ed8360265920e9798fa45eaca98d4af3 SHA1: bb52f847d8e39a926879e34b373f348d0ce12379 SHA256: 618dd76e16596b58e42458d9f78bbdb6a62f5502344534b03e4388097ffeea4a Description: xml.apache.org SVG Library Homepage: http://xml.apache.org/batik/ Description-md5: 7b184faa1b3cf8713ca5674d8a7583ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcel-java Priority: optional Section: libs Installed-Size: 580 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bcel Version: 5.2-9build1 Suggests: libbcel-java-doc Filename: pool/main/b/bcel/libbcel-java_5.2-9build1_all.deb Size: 476432 MD5sum: 602e35ea909a815f76cca5ac38bd1bef SHA1: 7bc7197270f1ca8bec0892d16eb45e959de400e4 SHA256: e5ca5179c51b7c15b2d1c588c2cdbaf516bc81839f0e76eef8152be37648f476 Description: Analyze, create, and manipulate (binary) Java class files Homepage: http://jakarta.apache.org/bcel/ Description-md5: 130e464457303867bf0628be20236a5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcel-java-doc Priority: optional Section: libs Installed-Size: 31706 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bcel Version: 5.2-9build1 Recommends: default-jdk-doc Suggests: libbcel-java Filename: pool/main/b/bcel/libbcel-java-doc_5.2-9build1_all.deb Size: 1956660 MD5sum: a2d6df3782d469d8673ac41fed304cf0 SHA1: 695e4e78a7dc8951ba2849594366ed3e4b545be3 SHA256: 93f49c5f4e4502f00e6a48c78e4d6de1fd757c9b2a84c652b8563affe774dae9 Description: Documentation for Byte Code Engineering Library (BCEL) Homepage: http://jakarta.apache.org/bcel/ Description-md5: 28e1f469ef323ac95315d9f3b3f77df6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcmail-java-doc Priority: optional Section: doc Installed-Size: 1286 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Filename: pool/main/b/bouncycastle/libbcmail-java-doc_1.49+dfsg-2_all.deb Size: 97126 MD5sum: 172a2d1d4035335714c4de8eee5260e7 SHA1: f6f6940489012c91c63680a37457682463365206 SHA256: 61b7268d0f687f0a4521f56242fb09e18cdef9822e58c638ab967f0854d5144d Description: Bouncy Castle generators/processors for S/MIME and CMS (Documentation) Homepage: http://www.bouncycastle.org Description-md5: d8a6e0dfe63dc470544a1e91492cbb7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcpg-java Priority: optional Section: libs Installed-Size: 316 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Depends: libbcprov-java (>= 1.49+dfsg-2) Suggests: libbcpg-java-doc Filename: pool/main/b/bouncycastle/libbcpg-java_1.49+dfsg-2_all.deb Size: 204286 MD5sum: ad33257c4d8d754fa5bca9e7d6d12519 SHA1: d52188f6413c5777f78f8bd8a04ee5db673d7c00 SHA256: f3e01ebe259480441fe4bb6e56a05d2417b6f384d69ba51f4572f10d5697b10c Description: Bouncy Castle generators/processors for OpenPGP Homepage: http://www.bouncycastle.org Description-md5: fb261bacf9406a7cc08d3ab0f013ae4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcpg-java-doc Priority: optional Section: doc Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Filename: pool/main/b/bouncycastle/libbcpg-java-doc_1.49+dfsg-2_all.deb Size: 4420 MD5sum: 2932a612e5b18d87508f65536274a38e SHA1: b70eb4ec623f99c43440dd1dbdfae96276e4d7bc SHA256: 4633cccf9f32bdbf75052d7d66802da26097bcd43f7c9f337d12c30d78ecc2ec Description: Bouncy Castle generators/processors for OpenPGP (Documentation) Homepage: http://www.bouncycastle.org Description-md5: 382c4791eee554acd4c9cefa6f870dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcpkix-java-doc Priority: optional Section: doc Installed-Size: 8339 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Filename: pool/main/b/bouncycastle/libbcpkix-java-doc_1.49+dfsg-2_all.deb Size: 501134 MD5sum: 4b6c746458df1e776aaf1eea3ea89a38 SHA1: f3d36502b3b40635540a330dc90e0f73a1710a78 SHA256: daa8e4512288320af626b93109f157adeca7832f6e10e3b58024e2ab1d813718 Description: Bouncy Castle Java API for PKIX, CMS, EAC, TSP, PKCS... (Documentation) Homepage: http://www.bouncycastle.org Description-md5: d0ec732d002d1d25ee8a9203867dfca6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcprov-java Priority: optional Section: libs Installed-Size: 2381 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Suggests: libbcprov-java-doc Breaks: jakarta-jmeter (<< 2.8-1~), jenkins-instance-identity (<< 1.3-1~), jglobus (<< 2.0.6-1~), libitext-java (<< 2.1.7-6~), libpdfbox-java (<< 1:1.8.2+dfsg-1~), voms-api-java (<< 2.0.9-1.1~) Filename: pool/main/b/bouncycastle/libbcprov-java_1.49+dfsg-2_all.deb Size: 2008470 MD5sum: 7af4b38766c1204b63e030067a1dae41 SHA1: d29cfab331735454d379d805ddbf8a0181b33c56 SHA256: c309cddac61ed01e23f9b03adec80f3f1e6342870817ec9b26db73128efeec55 Description: Bouncy Castle Java Cryptographic Service Provider Homepage: http://www.bouncycastle.org Description-md5: 522bfc51b38b2fda273cc08a1fd66df1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbcprov-java-doc Priority: optional Section: libs Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bouncycastle Version: 1.49+dfsg-2 Filename: pool/main/b/bouncycastle/libbcprov-java-doc_1.49+dfsg-2_all.deb Size: 56880 MD5sum: eb7533aeef0c0e17ce985cc4f06f1e56 SHA1: e9614b6574a0c7aa25355223c2ff3be26e6e05f6 SHA256: 5896e663f56fe4c18212e52840d25049ed93df773081a8cbb40de4256c0640ca Description: Bouncy Castle Java Cryptographic Service Provider (Documentation) Homepage: http://www.bouncycastle.org Description-md5: e307199093bf86957104c3ad997f9a16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libberkeleydb-perl Priority: optional Section: perl Installed-Size: 415 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: i386 Version: 0.54-1 Depends: libc6 (>= 2.3.4), libdb5.3, perl (>= 5.18.1-5), perlapi-5.18.1 Filename: pool/main/libb/libberkeleydb-perl/libberkeleydb-perl_0.54-1_i386.deb Size: 108532 MD5sum: bf95c3302d77abb29214949017d51e84 SHA1: fa32358234acbf4e265227d134f0639b1bd99978 SHA256: 19cb32b323db846ecb583a39aa3968d30b8365f16241efa1bd5e1caf71432a25 Description: use Berkeley DB databases from Perl Description-md5: 9ce5d80703dc56df86a5ff913c319ed2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libbind-dev Priority: optional Section: libdevel Installed-Size: 5215 Maintainer: LaMont Jones Architecture: i386 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: bind-dev Depends: libdns100 (= 1:9.9.5.dfsg-3), libisccfg90 (= 1:9.9.5.dfsg-3), libisc95 (= 1:9.9.5.dfsg-3), liblwres90 (= 1:9.9.5.dfsg-3), libbind9-90 (= 1:9.9.5.dfsg-3) Conflicts: bind-dev Filename: pool/main/b/bind9/libbind-dev_9.9.5.dfsg-3_i386.deb Size: 1187604 MD5sum: 81cb5874ed81e08ccccf668d42a532f8 SHA1: dfc610392ad4d36efab7ec62b1563c025aa8a6fc SHA256: 330a6b016434dcfdc475bcf39e4cb06b636ab1281c20e78033cd302fad5640b4 Description: Static Libraries and Headers used by BIND Description-md5: 2224f8c1f8613ab53bfc2393a6add6a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbind9-90 Priority: standard Section: libs Installed-Size: 102 Maintainer: LaMont Jones Architecture: i386 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.4), libdns100, libisc95, libisccfg90 Conflicts: libbind0, libbind9-41 Filename: pool/main/b/bind9/libbind9-90_9.9.5.dfsg-3_i386.deb Size: 21860 MD5sum: 9916568100f5fd831dbf3216a0eb7d75 SHA1: c16f1d243857ebc7acfba59fcaf3833a49e6a232 SHA256: de9f29db6d1048ef6545fe03f03419ca9841cd919eacfaa905c42867b1016de6 Description: BIND9 Shared Library used by BIND Description-md5: 29eb09ddc694703c77f94b42a079fe3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libbison-dev Priority: optional Section: libdevel Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Chuan-kai Lin Architecture: i386 Source: bison Version: 2:3.0.2.dfsg-2 Recommends: bison Filename: pool/main/b/bison/libbison-dev_3.0.2.dfsg-2_i386.deb Size: 337898 MD5sum: 8712d91e692898f2b0d94a9f4054bd98 SHA1: 7047da008d2964f365bea01ffa892c8d7d5133ed SHA256: 5649c577b99f1538ddcd5e9fb13d9e036de2ee2b5b26f16097f81ccf97c0a374 Description: YACC-compatible parser generator - development library Multi-Arch: same Homepage: http://www.gnu.org/software/bison/ Description-md5: 9e58100d40bcef7ed1b8baab2a762770 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libbit-vector-perl Priority: optional Section: perl Installed-Size: 466 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 7.3-1build1 Depends: libc6 (>= 2.3), perl (>= 5.18.1-4), perlapi-5.18.1, libcarp-clan-perl Filename: pool/main/libb/libbit-vector-perl/libbit-vector-perl_7.3-1build1_i386.deb Size: 157778 MD5sum: 6703fb17f43aa0a9ebbb6cf53b458324 SHA1: 97385dab0582f7dcb66c048e1c19de42f7ad3df9 SHA256: 712fd0c3c638c6b2a75cea60e1fc1ed4d26ea39009c1eed24e83485954e15404 Description: Perl module for bit vectors and more Homepage: https://metacpan.org/release/Bit-Vector/ Description-md5: 667b66c34bb915821018851127ec800f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libblas-dev Priority: optional Section: libdevel Installed-Size: 915 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: blas Version: 1.2.20110419-7 Provides: libblas.so Depends: libblas3 (= 1.2.20110419-7) Filename: pool/main/b/blas/libblas-dev_1.2.20110419-7_i386.deb Size: 194132 MD5sum: 86328fa91c7a5634746283d0e6c0bcf7 SHA1: ecf720eb4994e4e3c89a8558df6221cc81f71e47 SHA256: 989de724378d322e497802745180f622fb919cf36a8c735aab5127da78b703aa Description: Basic Linear Algebra Subroutines 3, static library Homepage: http://www.netlib.org/blas/ Description-md5: da562eb21b2bf3e5296ce3e18fbf8cf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libblas-doc Priority: optional Section: doc Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: all Source: blas Version: 1.2.20110419-7 Filename: pool/main/b/blas/libblas-doc_1.2.20110419-7_all.deb Size: 390646 MD5sum: ea388abcababd3ce6e1fe3d67744babd SHA1: 9d4c7890f61a027b99fb0e07af20396fb335f674 SHA256: fbd51e0850c68e2beda26bda48593e25f7624bb6dd8a15e6d0ad06b4bc2c0ff2 Description: Basic Linear Algebra Subroutines 3, documentation Homepage: http://www.netlib.org/blas/ Description-md5: b18ca095ddf47b29497314b3940342a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libblas3 Priority: optional Section: libs Installed-Size: 527 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: blas Version: 1.2.20110419-7 Replaces: libatlas3gf-base (<< 3.8.4-4), libblas3gf (<< 1.2.20110419-3), libopenblas-base (<< 0.1.1-3) Provides: libblas.so.3, libblas.so.3gf, libblas3gf Depends: libc6 (>= 2.4) Conflicts: octave3.2 Breaks: libatlas3gf-base (<< 3.8.4-4), libblas3gf (<< 1.2.20110419-3), libopenblas-base (<< 0.1.1-3) Filename: pool/main/b/blas/libblas3_1.2.20110419-7_i386.deb Size: 182674 MD5sum: 1bc3e5738ec312a1f95530b4b82496aa SHA1: 7daaff14f79ed0e9c0114d5ba14f8e7ad3dcd7d8 SHA256: 114dfae6dc0a8ad3d31486505cad4b0ed3cab592618d2fdaf849e95602c240bb Description: Basic Linear Algebra Reference implementations, shared library Homepage: http://www.netlib.org/blas/ Description-md5: a36805beaf33b431991a1e3ce32f8143 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libblkid-dev Priority: extra Section: libdevel Installed-Size: 443 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: i386 Source: util-linux Version: 2.20.1-5.1ubuntu20 Depends: libc6-dev | libc-dev, libblkid1 (= 2.20.1-5.1ubuntu20), uuid-dev Filename: pool/main/u/util-linux/libblkid-dev_2.20.1-5.1ubuntu20_i386.deb Size: 84308 MD5sum: 7f787a4e7a835e03f4f5002a14bb358a SHA1: dc3ab5a3577d33be2d62fb5e9dea750421e50426 SHA256: b67aa69957d957334523cb4ebd47d28d1b8851a2d7268bf07ba633e1fd4522b6 Description: block device id library - headers and static libraries Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 597c258bdc4c32a8a6bda6d1ae6f88a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libblkid1 Priority: required Section: libs Installed-Size: 254 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: i386 Source: util-linux Version: 2.20.1-5.1ubuntu20 Depends: libc6 (>= 2.7), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Filename: pool/main/u/util-linux/libblkid1_2.20.1-5.1ubuntu20_i386.deb Size: 67396 MD5sum: 645847d30223f72f8805757cc342a135 SHA1: d184fff47c25f7f01daa25beb56cf093ed6534f8 SHA256: 3e5c10a43efb41a4ace11d3f69188b652a35b123f819d5164caab802d5cdf748 Description: block device id library Multi-Arch: same Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 9f5b2c2cfc1959cf76c0457903a778b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libbluetooth-dev Priority: extra Section: libdevel Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: i386 Source: bluez Version: 4.101-0ubuntu13 Replaces: libsdp2-dev (<= 1.5.2) Provides: libbluetooth3-dev Depends: libbluetooth3 (= 4.101-0ubuntu13), libc6-dev | libc-dev Suggests: pkg-config Conflicts: bluez-pan, libbluetooth-dev, libsdp2-dev (<= 1.5.2) Filename: pool/main/b/bluez/libbluetooth-dev_4.101-0ubuntu13_i386.deb Size: 66782 MD5sum: 2d77e2bbc0d419b98e758413fb098747 SHA1: 4f6f74599701106014e7beb877438423e0ed5fb8 SHA256: 56fdec9ea1713639ca1079242a08215cf9f3508e912188be1fd27b75d62b6b85 Description: Development files for using the BlueZ Linux Bluetooth library Homepage: http://www.bluez.org Description-md5: 8b6c03a029e3a8f7be5c49ed7b41a971 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbluetooth3 Priority: optional Section: libs Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: i386 Source: bluez Version: 4.101-0ubuntu13 Replaces: libsdp2 (<= 1.5-2) Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Conflicts: libsdp2 (<= 1.5-2) Filename: pool/main/b/bluez/libbluetooth3_4.101-0ubuntu13_i386.deb Size: 52694 MD5sum: 64776a21f3598be1d0fd47122a37d663 SHA1: 60b66c3c4983b43b3b85c9b23dd6b5aa0034b921 SHA256: 62f01bd8d3dd2e77f2b236fed6ce2214da77a237940beb4384aee22ac01e2b3e Description: Library to use the BlueZ Linux Bluetooth stack Multi-Arch: same Homepage: http://www.bluez.org Description-md5: 99ecfc643816cbb50cd9ae690a10287d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libbluetooth3-dbg Priority: extra Section: debug Installed-Size: 280 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: i386 Source: bluez Version: 4.101-0ubuntu13 Depends: libbluetooth3 (= 4.101-0ubuntu13) Filename: pool/main/b/bluez/libbluetooth3-dbg_4.101-0ubuntu13_i386.deb Size: 72420 MD5sum: 564dcf815ab2c42bf6565dbaa891cec1 SHA1: 0dd3696c2426cca23da9904d3ada3b40bec8e113 SHA256: 41238a2c05aca7b7c1c822862534720ab7de2c5aea6b481a0e71c1c766b43c76 Description: Library to use the BlueZ Linux Bluetooth stack with debugging symbols Homepage: http://www.bluez.org Description-md5: 397e91470345aa1bcafbb2ed78507c5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbogl-dev Priority: optional Section: libdevel Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Samuel Thibault Architecture: i386 Source: bogl Version: 0.1.18-9ubuntu1 Depends: libbogl0 (= 0.1.18-9ubuntu1), libc6-dev, libc6 (>= 2.8), libgd3 (>= 2.1.0~alpha~) Filename: pool/main/b/bogl/libbogl-dev_0.1.18-9ubuntu1_i386.deb Size: 92514 MD5sum: 847b877f1c0398b8e1b7529821ac7787 SHA1: 8c31a7a715ea4dedc0bcf08ab030f39dd1a40c57 SHA256: 5b742b6bbb23657bae06a420bc77b6520136f9aabcb40a14108c756e513fbbed Description: Ben's Own Graphics Library - development files Description-md5: 0c4bcd395d29b221f4253a517fd7ca08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbogl0 Priority: optional Section: libs Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Samuel Thibault Architecture: i386 Source: bogl Version: 0.1.18-9ubuntu1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/b/bogl/libbogl0_0.1.18-9ubuntu1_i386.deb Size: 51742 MD5sum: e75284fcf21fd0c4a421544655e0c35c SHA1: 07340bec9a8ad713392b82a988d8a85dabb8f40f SHA256: 48397274357cdfce5688c9af079d53ce40408ff4460816dea3f59b3bd4175607 Description: Ben's Own Graphics Library - shared library Multi-Arch: same Description-md5: 97b017ae8b9897959e3db5455d4978a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbonobo2-0 Priority: optional Section: libs Installed-Size: 930 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libbonobo Version: 2.32.1-0ubuntu5 Replaces: libbonobo-activation4 (<< 1:2.4), libbonobo2-common (<< 2.32.1-0ubuntu2) Depends: libbonobo2-common (= 2.32.1-0ubuntu5), liborbit2 (>= 1:2.14.19-0.1ubuntu1), libc6 (>= 2.4), libglib2.0-0 (>= 2.31.8), liborbit-2-0 (>= 1:2.14.10), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Recommends: dbus-x11 Suggests: libbonobo2-bin Conflicts: libbonobo-activation4 (<< 1:2.4), nautilus (<< 2.2.4-5) Filename: pool/main/libb/libbonobo/libbonobo2-0_2.32.1-0ubuntu5_i386.deb Size: 202216 MD5sum: b08d7d7ac1e9dc8d13586bfe1a37bf62 SHA1: bf289f8824cc808b5e69109e429ff5f1d636ecf1 SHA256: bdb30c1e78304757753808c2577f6869ff22d7fdbada937f6f23bae4b3678918 Description: Bonobo CORBA interfaces library Multi-Arch: same Description-md5: c045e6a5f3f268ea5ea59e1f0823c439 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libbonobo2-common Priority: optional Section: devel Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libbonobo Version: 2.32.1-0ubuntu5 Replaces: bonobo-activation (<< 1:2.4) Conflicts: bonobo-activation (<< 1:2.4) Filename: pool/main/libb/libbonobo/libbonobo2-common_2.32.1-0ubuntu5_all.deb Size: 34192 MD5sum: 3c03c136e70e3515e70db77f40690c61 SHA1: 2fb5814a2477215efecf959a05137d4155e70f87 SHA256: 620ac8dcad752b9ba204b391822806146c8f6948b4a54dec44f981f53ab9738c Description: Bonobo CORBA interfaces library -- support files Multi-Arch: foreign Description-md5: a396085518bc23be3c6afe583dbdd9a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libbonobo2-dev Priority: optional Section: libdevel Installed-Size: 2991 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libbonobo Version: 2.32.1-0ubuntu5 Replaces: libbonobo-activation-dev (<< 1:2.4), libbonobo2-common (<< 2.20.3-1) Depends: libbonobo2-0 (= 2.32.1-0ubuntu5), libglib2.0-dev (>= 2.8.0), liborbit2-dev (>= 1:2.12.4), libpopt-dev Conflicts: libbonobo-activation-dev (<< 1:2.4) Filename: pool/main/libb/libbonobo/libbonobo2-dev_2.32.1-0ubuntu5_i386.deb Size: 400128 MD5sum: 69b3f951c7c137a0041ad437761106e1 SHA1: e466a0ddf566131a8cdee4f7c7289d2253995955 SHA256: e470b2a684c1f4f0ca6635d45bf32cfad698356cc951166ba421380bdc3f41d2 Description: Bonobo CORBA interfaces library -- development files Multi-Arch: same Description-md5: 85ead80ed3866e82a21dd2eea58627d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbonoboui2-0 Priority: optional Section: libs Installed-Size: 539 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libbonoboui Version: 2.24.5-0ubuntu3 Replaces: libbonoboui2-common (<= 2.4.3-1) Depends: gconf-service, libart-2.0-2 (>= 2.3.19), libatk1.0-0 (>= 1.12.4), libbonobo2-0 (>= 2.15.0), libc6 (>= 2.7), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglade2-0 (>= 1:2.6.1), libglib2.0-0 (>= 2.37.3), libgnome2-0 (>= 2.17.3), libgnomecanvas2-0 (>= 2.11.1), libgtk2.0-0 (>= 2.24.0), liborbit-2-0 (>= 1:2.14.10), libpopt0 (>= 1.14), libx11-6, libxml2 (>= 2.7.4), libbonoboui2-common (>= 2.24), libbonoboui2-common (<< 2.25) Pre-Depends: multiarch-support Filename: pool/main/libb/libbonoboui/libbonoboui2-0_2.24.5-0ubuntu3_i386.deb Size: 148690 MD5sum: 99e1b3d33dd71dded9129d3ecbc70746 SHA1: e06a23fc161b51dea24e8257410f0502bda2bc07 SHA256: 746632db648500943b51418abd56a149a8458fbb9a6b7c010ddb2d2e86362d62 Description: The Bonobo UI library Multi-Arch: same Description-md5: 4fe3bd3a5987f980cdb316f8874b0ab5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: libbonoboui2-common Priority: optional Section: libs Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libbonoboui Version: 2.24.5-0ubuntu3 Conflicts: libbonoboui2-0 (<= 2.4.3-1) Filename: pool/main/libb/libbonoboui/libbonoboui2-common_2.24.5-0ubuntu3_all.deb Size: 11388 MD5sum: e6187dbf9ccc1cb119a3e151fb9000c6 SHA1: 7f5a4f5f60a9633fce5420919457057f9526d032 SHA256: 98df9a6ddb3e5429fd41b7cbdeff9b3ced041d47126d8bf4d8a3fbf2222a992c Description: The Bonobo UI library -- common files Multi-Arch: foreign Description-md5: dd3df0e40f04d2209b504a4cbf2e6f9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: libbonoboui2-dev Priority: optional Section: libdevel Installed-Size: 1935 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libbonoboui Version: 2.24.5-0ubuntu3 Replaces: libbonoboui2-common (<< 2.24.3-2) Depends: libbonoboui2-0 (= 2.24.5-0ubuntu3), libbonobo2-0 (>= 2.15.0), libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.16.0), libgnome2-0 (>= 2.17.3), libgtk2.0-0 (>= 2.8.0), liborbit-2-0 (>= 1:2.14.10), libglib2.0-dev (>= 2.6.0), libbonobo2-dev (>= 2.13.0), libgnomecanvas2-dev (>= 2.6.0), libgnome2-dev (>= 2.13.0), liborbit2-dev, libxml2-dev (>= 2.4.20), libsm-dev, libice-dev, libx11-dev Filename: pool/main/libb/libbonoboui/libbonoboui2-dev_2.24.5-0ubuntu3_i386.deb Size: 276892 MD5sum: d9d4426976c39cbf4117518625da972b SHA1: 198f3c0464ee543764435010578848980c38f3ba SHA256: 69674ca99274ac8dcc4124944ce20635df0070c3c8182a41f140c0e61c536473 Description: The Bonobo UI library - development files Multi-Arch: same Description-md5: e5333991c7b9786529fbbcfbccd87e1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-atomic1.54-dev Priority: optional Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-atomic1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-atomic1.53-dev Filename: pool/main/b/boost1.54/libboost-atomic1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 4878 MD5sum: 509e20872541b8135007a91bc0f06989 SHA1: c002f3495e50d1f56bff72b4be52967ae2126e13 SHA256: 456818e2bc29dccef8e8cde3d228b45723b6eba2e2a1edcc4735125acc6829a2 Description: atomic data types, operations, and memory ordering constraints Multi-Arch: same Homepage: http://www.boost.org/libs/atomic/ Description-md5: 1aa2477e97733797bec0d32670d4e90e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-atomic1.54.0 Priority: optional Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-atomic1.54.0_1.54.0-4ubuntu3_i386.deb Size: 8004 MD5sum: 4f3c209f150b160b4726b630c1a76ca4 SHA1: 19446879c36be9bb29004794218950ad96f9c7c2 SHA256: aa1084680a6cadd2da8123c399cc552c139200328fe884da936d02e571dc3b9c Description: atomic data types, operations, and memory ordering constraints Multi-Arch: same Homepage: http://www.boost.org/libs/atomic/ Description-md5: 1aa2477e97733797bec0d32670d4e90e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-chrono-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-chrono1.54-dev Filename: pool/main/b/boost-defaults/libboost-chrono-dev_1.54.0.1ubuntu1_i386.deb Size: 3444 MD5sum: 0f1ab82fe63d5f2d3865a405134c2bd9 SHA1: 20b8a0e6b543df4e5029c78a1f92b1d1ff989fe4 SHA256: 0c6aad9363fb1146eba2c2a08da2ba06e38dd328e2d92151d37e0982f698e058 Description: C++ representation of time duration, time point, and clocks (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/chrono/ Description-md5: 3ed0b8e3d2049ac6e9d2bf16559bf039 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-chrono1.54-dev Priority: optional Section: libdevel Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-chrono1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-chrono1.48-dev, libboost-chrono1.49-dev, libboost-chrono1.50-dev, libboost-chrono1.52-dev, libboost-chrono1.53-dev Filename: pool/main/b/boost1.54/libboost-chrono1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 14038 MD5sum: 105b96c757deeae59434de35ea7ac592 SHA1: 9f98c0b668e47759ed2061c8ae43aa64a427a143 SHA256: bd8d5fd346bbd2ca999a1d7fe6cbce4d2fdc0383929b039b766f489d23e7e11d Description: C++ representation of time duration, time point, and clocks Multi-Arch: same Homepage: http://www.boost.org/libs/chrono/ Description-md5: 885c86b3701dab9982f79d2dcc83515c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-chrono1.54.0 Priority: optional Section: libs Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost-system1.54.0, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-chrono1.54.0_1.54.0-4ubuntu3_i386.deb Size: 12520 MD5sum: fdd04534f44052e65d444eb3c9ff0e2f SHA1: e6c10ed8602e2bd06a8939e10cbcc364368cfc65 SHA256: 6bf0b8283bbce24babab0a5c6e6b3c245346aeae230b3b0733e40faf18ac2d00 Description: C++ representation of time duration, time point, and clocks Multi-Arch: same Homepage: http://www.boost.org/libs/chrono/ Description-md5: 48bd785e2e56a406e6dbf1b5ba8ce77e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-date-time-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-date-time1.54-dev Filename: pool/main/b/boost-defaults/libboost-date-time-dev_1.54.0.1ubuntu1_i386.deb Size: 2822 MD5sum: 6443896a69d6a6b2d56ce15544b4a4a8 SHA1: 8a5d1a397cb368f3da86e3c4d5d9ce0c58bfc183 SHA256: e4eb2ff1933dde603f1a347346ecdceaa74cadcb65d34ca3aaada65b62a11b28 Description: set of date-time libraries based on generic programming concepts (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/date_time/ Description-md5: fec011752e597965a5e71bea50d0cadc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-date-time1.54-dev Priority: optional Section: libdevel Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-date-time1.54.0 (= 1.54.0-4ubuntu3), libboost-serialization1.54-dev (= 1.54.0-4ubuntu3) Conflicts: libboost-date-time1.42-dev, libboost-date-time1.46-dev, libboost-date-time1.48-dev, libboost-date-time1.49-dev, libboost-date-time1.50-dev, libboost-date-time1.52-dev, libboost-date-time1.53-dev Filename: pool/main/b/boost1.54/libboost-date-time1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 24666 MD5sum: 574355d45cafa691cc2b0fa4c394df5c SHA1: 32d79983b5a119283f198441b03e93121d633125 SHA256: 1c2e7c1de39628f1ee9a7fed1cf574951459ab6c63b856bfb1c09097866ad3e1 Description: set of date-time libraries based on generic programming concepts Multi-Arch: same Homepage: http://www.boost.org/libs/date_time/ Description-md5: fca468edfa68f3723647bff7a2ed63c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-date-time1.54.0 Priority: optional Section: libs Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-date-time1.54.0_1.54.0-4ubuntu3_i386.deb Size: 20012 MD5sum: 82625b065f7e17d3b16559bc294f408a SHA1: fa4013dc6a58e30aaedc321b1346774852f613d4 SHA256: 82503b4e4018cbd530a529bbb4e93e2908bfdb1451af5c5241fe9eae81e6a9b1 Description: set of date-time libraries based on generic programming concepts Multi-Arch: same Homepage: http://www.boost.org/libs/date_time/ Description-md5: fca468edfa68f3723647bff7a2ed63c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libboost-dbg Priority: extra Section: debug Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-dev (= 1.54.0.1ubuntu1), libboost1.54-dbg Filename: pool/main/b/boost-defaults/libboost-dbg_1.54.0.1ubuntu1_i386.deb Size: 1750 MD5sum: 05d0376c52114e3c7cb99adbf75ba26b SHA1: 6ac19b7d07a049c8e60af4a44701fd62a742b31e SHA256: 82fb109465db0c589a9c0e7cfd5939fb16680994488ef25acc0f6212698cfea9 Description: Boost C++ Libraries with debug symbols (default version) Multi-Arch: same Homepage: http://www.boost.org/ Description-md5: 4cb12452359b4fc13c9231dcd7bb8e81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost1.54-dev Suggests: libboost-doc Filename: pool/main/b/boost-defaults/libboost-dev_1.54.0.1ubuntu1_i386.deb Size: 3076 MD5sum: fa13bc5aceb996e0aff00688427de64c SHA1: 33adc436566f893e5a015e66d48b847c1424c4d8 SHA256: b5d684a17907709f070235b6a5ea6a7e4cb1901ed77231abb4e5087d31a58d22 Description: Boost C++ Libraries development files (default version) Homepage: http://www.boost.org/ Description-md5: 75ed75185f266a5557b99a2d3d7e97bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-doc Priority: optional Section: doc Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: all Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost1.54-doc Filename: pool/main/b/boost-defaults/libboost-doc_1.54.0.1ubuntu1_all.deb Size: 3000 MD5sum: 27e0e00ddf558ff46f6a74b78170ecc2 SHA1: cd7054c685265efe294de675663bfe6f7386fefb SHA256: 0a970c82023ef0aaa1532d2407fe6ad5f7c0cf416b92c2fde1ca53f5f052d10a Description: Boost.org libraries documentation (default version) Homepage: http://www.boost.org/libs/ Description-md5: ce55d0e81f2b2ccba040dddda5d87edc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-filesystem-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-filesystem1.54-dev Filename: pool/main/b/boost-defaults/libboost-filesystem-dev_1.54.0.1ubuntu1_i386.deb Size: 2854 MD5sum: ac152d655267fbcc1a9e093d662e46d2 SHA1: ee4bf6686bec6e9973fba665694e54ee8c878ede SHA256: 3378fb30000dd2c16a257f459d5ba54a7e0aa134be697dcf1cd62e536b789650 Description: filesystem operations (portable paths, iteration over directories, etc) in C++ (default version) Multi-Arch: same Homepage: http://boost.org/libs/filesystem/ Description-md5: 6e07b9602e3f267bb81f55c9327b6a54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-filesystem1.54-dev Priority: optional Section: libdevel Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-filesystem1.54.0 (= 1.54.0-4ubuntu3), libboost-system1.54-dev (= 1.54.0-4ubuntu3) Conflicts: libboost-filesystem1.42-dev, libboost-filesystem1.46-dev, libboost-filesystem1.48-dev, libboost-filesystem1.49-dev, libboost-filesystem1.50-dev, libboost-filesystem1.52-dev, libboost-filesystem1.53-dev Filename: pool/main/b/boost1.54/libboost-filesystem1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 41428 MD5sum: bbc53899e0ee39c749e1ca448b96726c SHA1: 831e71c36eda88b29897b3c3191ea5d86c5ccbda SHA256: 1cce643a75f58087ff973486841d0427ab36bdb47d89bdefc62cd1b05c4a0dd5 Description: filesystem operations (portable paths, iteration over directories, etc) in C++ Multi-Arch: same Homepage: http://boost.org/libs/filesystem/ Description-md5: 2491b00e1306a35046eca365dc71ba1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-filesystem1.54.0 Priority: optional Section: libs Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost-system1.54.0, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-filesystem1.54.0_1.54.0-4ubuntu3_i386.deb Size: 34814 MD5sum: cd1d81279f687515ae7e746b75785aa5 SHA1: 32a544b650899828e4372dec32853970a699e639 SHA256: 11b8a1e106cf9c04b649a866783b2efecb7f1898ae6021b26651534d77f447b6 Description: filesystem operations (portable paths, iteration over directories, etc) in C++ Multi-Arch: same Homepage: http://boost.org/libs/filesystem/ Description-md5: 2491b00e1306a35046eca365dc71ba1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntustudio-graphics Package: libboost-iostreams-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-iostreams1.54-dev Filename: pool/main/b/boost-defaults/libboost-iostreams-dev_1.54.0.1ubuntu1_i386.deb Size: 2814 MD5sum: 7d1f5f752909dd42b65ee2a522b497aa SHA1: c60e3186bced5ed4e5a41b19f89c2b1831563c79 SHA256: 139e49a348bbd88769e5e510412aeec7d557db45c37aa127f9a8af0d16041667 Description: Boost.Iostreams Library development files (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/iostreams/ Description-md5: 5975602c88bc022c958917952dd5e364 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-iostreams1.54-dev Priority: optional Section: libdevel Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-regex1.54-dev (= 1.54.0-4ubuntu3), libboost-iostreams1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-iostreams1.42-dev, libboost-iostreams1.46-dev, libboost-iostreams1.48-dev, libboost-iostreams1.49-dev, libboost-iostreams1.50-dev, libboost-iostreams1.52-dev, libboost-iostreams1.53-dev Filename: pool/main/b/boost1.54/libboost-iostreams1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 32972 MD5sum: 39c2ac278745e947689a4e042ad50740 SHA1: c5ac61090f66902e3e9f188bd1ce99fc6af43124 SHA256: 3c123c7b9448efbedc532ee2e505848ab745adddc7af153abe4a16b4f663be5a Description: Boost.Iostreams Library development files Multi-Arch: same Homepage: http://www.boost.org/libs/iostreams/ Description-md5: c5f42432b54f040f1daea1900a535e47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-iostreams1.54.0 Priority: optional Section: libs Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libbz2-1.0, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-iostreams1.54.0_1.54.0-4ubuntu3_i386.deb Size: 29308 MD5sum: a900e7d1281580c065606d3a201f4b6d SHA1: a6f3b6eb33edae4e998ffd452051cda01716f482 SHA256: b61ccaf6bf5a8584ec6e26847a11464dae11479240966e244c1027f3db1970b7 Description: Boost.Iostreams Library Multi-Arch: same Homepage: http://www.boost.org/libs/iostreams/ Description-md5: 3c388d3a296c3c5ceb93d6073902d96e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: libboost-program-options-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-program-options1.54-dev Filename: pool/main/b/boost-defaults/libboost-program-options-dev_1.54.0.1ubuntu1_i386.deb Size: 2840 MD5sum: 14a0424216888c2a0b0da4b9325ef374 SHA1: 8be48eb003b428d253ea1a8b5d433d2aa3615399 SHA256: fa77a566450d5470a197f27d2df7e49f1d8aa810a1f5147994e1724432ed39d2 Description: program options library for C++ (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/program_options/ Description-md5: a440475d847084d39ab082669e382824 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-program-options1.54-dev Priority: optional Section: libdevel Installed-Size: 1013 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-program-options1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-program-options1.42-dev, libboost-program-options1.46-dev, libboost-program-options1.48-dev, libboost-program-options1.49-dev, libboost-program-options1.50-dev, libboost-program-options1.52-dev, libboost-program-options1.53-dev Filename: pool/main/b/boost1.54/libboost-program-options1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 132198 MD5sum: 31c0dc9065f08e5e0cede023aaddd3f9 SHA1: c6d5b16b895f9dd55efdea981e1def0755344c3e SHA256: 45c865c80d629d41169c6df341bd900383cd7d4d6b4afdb31e07d61058d175af Description: program options library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/program_options/ Description-md5: 9ab9e15257fa51221c16c7f0a9e40597 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-program-options1.54.0 Priority: optional Section: libs Installed-Size: 478 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-program-options1.54.0_1.54.0-4ubuntu3_i386.deb Size: 113718 MD5sum: 1a3745709d7587da35f411e3cea7acf2 SHA1: 4aadaa4f6e5584dd0c8ba7a61eec81494175db94 SHA256: ae207a62318274ac792ca9a4a0e84bc2875b08de6f62d8509732ceb448f7c6f6 Description: program options library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/program_options/ Description-md5: 9ab9e15257fa51221c16c7f0a9e40597 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libboost-python-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-python1.54-dev Filename: pool/main/b/boost-defaults/libboost-python-dev_1.54.0.1ubuntu1_i386.deb Size: 3196 MD5sum: 11aabf04a637560409c6efd916f9497d SHA1: 482072f9b4fc35f12cff04ef402dd872644925e1 SHA256: 076bac7e91ab47f78d96ac34da6f1e8d86ae2b65da93334ef19497014c6b01e6 Description: Boost.Python Library development files (default version) Homepage: http://www.boost.org/libs/python/ Description-md5: 4390e1abd33bbf45540fd859d22b2ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-python1.54-dev Priority: optional Section: libdevel Installed-Size: 1571 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-python1.54.0 (= 1.54.0-4ubuntu3), libpython-dev | libpython3-dev Suggests: libboost1.54-doc, python-pyste Conflicts: libboost-python1.42-dev, libboost-python1.46-dev, libboost-python1.48-dev, libboost-python1.49-dev, libboost-python1.50-dev, libboost-python1.52-dev, libboost-python1.53-dev Filename: pool/main/b/boost1.54/libboost-python1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 117672 MD5sum: c98d06d1a02ae36476599c630d32caa8 SHA1: 4442b7e6cae7a8b87881da9db0eb2ee6b7630207 SHA256: 90fee073a5c035e2e860a2f81bdb9db3de1f46c93c580ca775f413dda2965956 Description: Boost.Python Library development files Multi-Arch: same Homepage: http://www.boost.org/libs/python/ Description-md5: 8c2dd471f4dbeb52cefdbe65edd291f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-python1.54.0 Priority: optional Section: python Installed-Size: 948 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-python1.54.0_1.54.0-4ubuntu3_i386.deb Size: 120696 MD5sum: bf3d0f318e9ed046a4e17dd77d776791 SHA1: adb55e3e223c9c6e3220076051d5ff1a8bc74ea3 SHA256: d67bbd8f4a75dad75827785fd00df1f9ac4b098f4e3072195d573347299b2c9d Description: Boost.Python Library Multi-Arch: same Homepage: http://www.boost.org/libs/python/ Description-md5: 1fd3f0310a5498412ebe02c4766ff0b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, ubuntustudio-photography Package: libboost-regex-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-regex1.54-dev Filename: pool/main/b/boost-defaults/libboost-regex-dev_1.54.0.1ubuntu1_i386.deb Size: 3080 MD5sum: ccdc840a340065ffe3ce43a2cf115c63 SHA1: f1de0adc422d91ae2fcc8ddd6a9916904381f7ff SHA256: f81ccc0282135c7bcddfa7e14de9e4bdf3e717ac6f69ababa4e9560475aa9979 Description: regular expression library for C++ (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/regex/ Description-md5: f59ca6bb3564e2f39161592c7212d8f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-regex1.54-dev Priority: optional Section: libdevel Installed-Size: 2183 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-regex1.54.0 (= 1.54.0-4ubuntu3), libicu-dev Conflicts: libboost-regex1.42-dev, libboost-regex1.46-dev, libboost-regex1.48-dev, libboost-regex1.49-dev, libboost-regex1.50-dev, libboost-regex1.52-dev, libboost-regex1.53-dev Filename: pool/main/b/boost1.54/libboost-regex1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 292210 MD5sum: acdd890d6e890b7d15159a3ea9d5ed63 SHA1: e7604aa781713c364d6c3311ff45f658acb9d102 SHA256: 01067fbfccb8ae5ec551c50acdc9a7cc6b74c0f1affde86b89d825dbd47d4478 Description: regular expression library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/regex/ Description-md5: 798250c772fac56d605e432dcc6fe14f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-regex1.54.0 Priority: optional Section: libs Installed-Size: 1051 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-regex1.54.0_1.54.0-4ubuntu3_i386.deb Size: 260536 MD5sum: cd73088064432503f73edeb2edfe8b13 SHA1: 08ec060922fe2a1738c91815d88428eb5d75242f SHA256: d3206b91efbafae66eff2c0301f52a7bf4d650bf32640c5b80c5ca0206cdd068 Description: regular expression library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/regex/ Description-md5: 798250c772fac56d605e432dcc6fe14f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntustudio-graphics Package: libboost-serialization-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-serialization1.54-dev Filename: pool/main/b/boost-defaults/libboost-serialization-dev_1.54.0.1ubuntu1_i386.deb Size: 3044 MD5sum: 11c11d467b1e76420c95076c21d7675e SHA1: ebd4b843d73fb215b94e7a1a8c28b1311fdc851f SHA256: 40413af4b176fde5196896a5f7b2c2ff9020ce9c53c57cb268ca4c8544c745ab Description: serialization library for C++ (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/serialization/ Description-md5: 63afaec10662af03e819c54a399c6c92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-serialization1.54-dev Priority: optional Section: libdevel Installed-Size: 1777 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-serialization1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-serialization1.42-dev, libboost-serialization1.46-dev, libboost-serialization1.48-dev, libboost-serialization1.49-dev, libboost-serialization1.50-dev, libboost-serialization1.52-dev, libboost-serialization1.53-dev Filename: pool/main/b/boost1.54/libboost-serialization1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 147770 MD5sum: 3d6689b96f180b28a18ef9219b620743 SHA1: d88b7937113887b633be81ba5af746ed3a781194 SHA256: 2467fa3d10d46e79bd85bfbf03ce0039ddb29d4d8b0a421d69450de69de20847 Description: serialization library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/serialization/ Description-md5: 94da985e07c2397fc71a3f86ec4da7dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-serialization1.54.0 Priority: optional Section: libs Installed-Size: 772 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-serialization1.54.0_1.54.0-4ubuntu3_i386.deb Size: 126916 MD5sum: be8505247a1b739cb7675e891b2a6966 SHA1: 9e27f05efc997e814eef34ceac53bbf2c93eefb5 SHA256: 5a1e3c5bcad4ebde9528ccc569ac0068937d43c45e2d8b53cf05eb672082f6ad Description: serialization library for C++ Multi-Arch: same Homepage: http://www.boost.org/libs/serialization/ Description-md5: 94da985e07c2397fc71a3f86ec4da7dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-system-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-system1.54-dev Filename: pool/main/b/boost-defaults/libboost-system-dev_1.54.0.1ubuntu1_i386.deb Size: 2952 MD5sum: 9a4a8b0f93315730b3015968bf652d92 SHA1: 16821f3d23bc5f700c98ad1c62be971228a62168 SHA256: 2ba0252aa2a7c3e1ccd11787d9b0f133268595c1b7a6b02187bf0c19b40a2af5 Description: Operating system (e.g. diagnostics support) library (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/system/ Description-md5: 511c8b59885e43461ebbf17ad95baf29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-system1.54-dev Priority: optional Section: libdevel Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-system1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-system1.42-dev, libboost-system1.46-dev, libboost-system1.48-dev, libboost-system1.49-dev, libboost-system1.50-dev, libboost-system1.52-dev, libboost-system1.53-dev Filename: pool/main/b/boost1.54/libboost-system1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 9290 MD5sum: 869c7e9396c674012f6d24b1a01dff78 SHA1: 3e690937fa6ed6925ccf58877a3895a09b79cad3 SHA256: 956dd4be5a1cc912892e5f8495f1273a4aaccd8585e991d7062d249ae23a216d Description: Operating system (e.g. diagnostics support) library Multi-Arch: same Homepage: http://www.boost.org/libs/system/ Description-md5: 1197eb2ee52a77c28d5e31e8e74c41eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-system1.54.0 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-system1.54.0_1.54.0-4ubuntu3_i386.deb Size: 10244 MD5sum: b6998ca04cffd1595740eff68f760f2c SHA1: 02c3bf2268c3239bde0c0a0ce9394ef4045eab3d SHA256: 22f9ee8229f37737dca0e5ad3b77d306c095836e215c0fc2f8532f3c8b2a3973 Description: Operating system (e.g. diagnostics support) library Multi-Arch: same Homepage: http://www.boost.org/libs/system/ Description-md5: 1197eb2ee52a77c28d5e31e8e74c41eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: libboost-test-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-test1.54-dev Filename: pool/main/b/boost-defaults/libboost-test-dev_1.54.0.1ubuntu1_i386.deb Size: 2852 MD5sum: 2d3d124311613733a712c665eae4b750 SHA1: 0386073bce494a86ae7330c18a9eaed0b1e6f6ea SHA256: f527409ef2aa062e4e1ff3713c0912c2ff0437c0f5847f521bacf10b7362f426 Description: components for writing and executing test suites (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/test/ Description-md5: f5e9255f27b6f1dbc482e7659b46a588 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-test1.54-dev Priority: optional Section: libdevel Installed-Size: 2912 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-test1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-test1.42-dev, libboost-test1.46-dev, libboost-test1.48-dev, libboost-test1.49-dev, libboost-test1.50-dev, libboost-test1.52-dev, libboost-test1.53-dev Filename: pool/main/b/boost1.54/libboost-test1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 201906 MD5sum: e3b51e7df58842c40342363fb2d7aff7 SHA1: d3da10a0c989f518ca211f724f084254869e5120 SHA256: 5d29ef4f7efd2a4675dbb01840c866a7109a7f5007e7e4d5f696b7f47819ea25 Description: components for writing and executing test suites Multi-Arch: same Homepage: http://www.boost.org/libs/test/ Description-md5: 73a9e2027ebac32df5b898db3154448b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-test1.54.0 Priority: optional Section: libs Installed-Size: 728 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-test1.54.0_1.54.0-4ubuntu3_i386.deb Size: 165916 MD5sum: 686e35bcd0594b947613f2994bf87850 SHA1: 1e750847e6dfbf4f8903b7b9ebf7d3972f3ee7b6 SHA256: f461b57a9699284a11f510f956e397008e7ee51582cf0f93ce251310c01162a8 Description: components for writing and executing test suites Multi-Arch: same Homepage: http://www.boost.org/libs/test/ Description-md5: 73a9e2027ebac32df5b898db3154448b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-thread-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost-defaults Version: 1.54.0.1ubuntu1 Depends: libboost-thread1.54-dev Filename: pool/main/b/boost-defaults/libboost-thread-dev_1.54.0.1ubuntu1_i386.deb Size: 2844 MD5sum: f445535eeafd522d32294dfa75b92776 SHA1: f584acc861ff714fdb906a614d6827394ec4bd81 SHA256: 8b8320e915c858cbe309fe79df6a90c6fbc209c1835f50cbcf7aa31976c89bb6 Description: portable C++ multi-threading (default version) Multi-Arch: same Homepage: http://www.boost.org/libs/thread/ Description-md5: 370f39f5c5f5773a2c3c264a53bf3abe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-thread1.54-dev Priority: optional Section: libdevel Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3), libboost-atomic1.54-dev (= 1.54.0-4ubuntu3), libboost-chrono1.54-dev (= 1.54.0-4ubuntu3), libboost-date-time1.54-dev (= 1.54.0-4ubuntu3), libboost-system1.54-dev (= 1.54.0-4ubuntu3), libboost-thread1.54.0 (= 1.54.0-4ubuntu3) Conflicts: libboost-thread1.42-dev, libboost-thread1.46-dev, libboost-thread1.48-dev, libboost-thread1.49-dev, libboost-thread1.50-dev, libboost-thread1.52-dev, libboost-thread1.53-dev Filename: pool/main/b/boost1.54/libboost-thread1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 25332 MD5sum: 5c093b2163a01f9fba396ae648d60dd9 SHA1: abe698a18c02b3d5468c5255c14d229d65221a91 SHA256: 94e8661e8ffa16150daa60201dc0c0484e4853accf8ad17b3d85f00b5dca95b1 Description: portable C++ multi-threading Multi-Arch: same Homepage: http://www.boost.org/libs/thread/ Description-md5: d19954bb99722597efd2b9b392158287 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost-thread1.54.0 Priority: optional Section: libs Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost-system1.54.0, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/b/boost1.54/libboost-thread1.54.0_1.54.0-4ubuntu3_i386.deb Size: 25922 MD5sum: 60b9c00f957064412a91ce9478e5a1f1 SHA1: b7a6df854aa374689311f4553f480266bb4e3a9e SHA256: 197f3f6e1e62034bf110ae5d79bb406b43d5a259550a5539e4d285c38a0bc7ed Description: portable C++ multi-threading Multi-Arch: same Homepage: http://www.boost.org/libs/thread/ Description-md5: d19954bb99722597efd2b9b392158287 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libboost1.54-dbg Priority: extra Section: debug Installed-Size: 42415 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libboost1.54-dev (= 1.54.0-4ubuntu3) Conflicts: libboost1.42-dbg, libboost1.46-dbg, libboost1.48-dbg, libboost1.49-dbg, libboost1.50-dbg, libboost1.52-dbg, libboost1.53-dbg Filename: pool/main/b/boost1.54/libboost1.54-dbg_1.54.0-4ubuntu3_i386.deb Size: 38299684 MD5sum: 03d9603696b38c150bc1feb15f23d9ed SHA1: ef9e1cce0ec7a3a252956325e00186e695820d3d SHA256: c1a951fdf6a7a3f6bc5cd2c252fe5d190c2f5aeacab50b3e6a12090fb9519c97 Description: Boost C++ Libraries with debug symbols Multi-Arch: same Homepage: http://www.boost.org/ Description-md5: 2890e3b727db77a6ba70dab955875bfc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost1.54-dev Priority: optional Section: libdevel Installed-Size: 93840 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Depends: libstdc++-4.8-dev | libstdc++-dev Suggests: libboost1.54-doc, libboost-atomic1.54-dev, libboost-chrono1.54-dev, libboost-context1.54-dev, libboost-coroutine.54-dev, libboost-date-time1.54-dev, libboost-exception1.54-dev, libboost-filesystem1.54-dev, libboost-graph1.54-dev, libboost-graph-parallel1.54-dev, libboost-iostreams1.54-dev, libboost-locale1.54-dev, libboost-log.54-dev, libboost-math1.54-dev, libboost-mpi1.54-dev, libboost-mpi-python1.54-dev, libboost-program-options1.54-dev, libboost-python1.54-dev, libboost-random1.54-dev, libboost-regex1.54-dev, libboost-serialization1.54-dev, libboost-signals1.54-dev, libboost-system1.54-dev, libboost-test1.54-dev, libboost-thread1.54-dev, libboost-timer1.54-dev, libboost-wave1.54-dev, libboost1.54-tools-dev, libmpfrc++-dev, libntl-dev Conflicts: bjam, boost-build, libboost1.42-dev, libboost1.46-dev, libboost1.48-dev, libboost1.49-dev, libboost1.50-dev, libboost1.52-dev, libboost1.53-dev Filename: pool/main/b/boost1.54/libboost1.54-dev_1.54.0-4ubuntu3_i386.deb Size: 5684812 MD5sum: 37360ca64ffc3978892c1dfcdaabbbe0 SHA1: cecf197b5df3a1914e60a5f3e57c8c02c3fe1f90 SHA256: 253f24eaf724e2f37e68aa5d00c8512b3cf7e76b413d1e48c91e2ca256e16ff2 Description: Boost C++ Libraries development files Homepage: http://www.boost.org/ Description-md5: afccffe6a3ce49022d7832b028860029 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost1.54-doc Priority: optional Section: doc Installed-Size: 218750 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: all Source: boost1.54 Version: 1.54.0-4ubuntu3 Suggests: libboost1.54-dev (>= 1.54.0-4ubuntu3) Conflicts: libboost1.42-doc, libboost1.46-doc, libboost1.48-doc, libboost1.49-doc, libboost1.50-doc, libboost1.52-doc, libboost1.53-doc Filename: pool/main/b/boost1.54/libboost1.54-doc_1.54.0-4ubuntu3_all.deb Size: 36117554 MD5sum: 269a838d13d502c2c12ad0e07dc983be SHA1: 4db9edf7bbefccecd33f96bd8daf612190195c3f SHA256: 2fdb9cebc6d76b72b7c201f17e4622ddf6016363953d2edb53b459010ccd0904 Description: Boost.org libraries documentation Homepage: http://www.boost.org/libs/ Description-md5: 6a49ab761468ce3b7d5a6611af2773bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libboost1.54-tools-dev Priority: optional Section: libdevel Installed-Size: 4764 Maintainer: Ubuntu Developers Original-Maintainer: Debian Boost Team Architecture: i386 Source: boost1.54 Version: 1.54.0-4ubuntu3 Replaces: bjam, boost-build, libboost1.49-dev, libboost1.53-dev, libboost1.53-tools-dev Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Suggests: xsltproc, doxygen, docbook-xml (>= 4.2), docbook-xsl (>= 1.73.2), default-jdk (>= 1.4), fop (>= 0.94) Conflicts: bjam, boost-build, libboost1.49-dev, libboost1.53-tools-dev Filename: pool/main/b/boost1.54/libboost1.54-tools-dev_1.54.0-4ubuntu3_i386.deb Size: 1041098 MD5sum: e78f81b969f9d51a200d0884fd0079cb SHA1: 860038a1573f3b09d83a9b47c45553c2cb3ec75c SHA256: e9bb31c71d6a6758c58fe6ccd2391be50cabb9b35ff275558521481ac00e9a5d Description: Boost C++ Libraries development tools Multi-Arch: foreign Homepage: http://www.boost.org/ Description-md5: b20d39e2efe0c14e144ce9d2c5d01d38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbrasero-media3-1 Priority: optional Section: libs Installed-Size: 1751 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: brasero Version: 3.10.0-0ubuntu1 Depends: libappindicator3-1 (>= 0.2.96), libburn4 (>= 1.3.4), libc6 (>= 2.7), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.0.0), libisofs6 (>= 1.2.6), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libtotem-plparser18 (>= 3.10.0), libunity9 (>= 3.4.6), libxml2 (>= 2.7.4), brasero-common (= 3.10.0-0ubuntu1), dvd+rw-tools Recommends: gnome-icon-theme, gstreamer1.0-plugins-good Suggests: gstreamer1.0-plugins-ugly, cdrdao (>= 1:1.2.3), gstreamer1.0-fluendo-mp3, gstreamer1.0-plugins-bad Filename: pool/main/b/brasero/libbrasero-media3-1_3.10.0-0ubuntu1_i386.deb Size: 359448 MD5sum: 5689d3f9a4daba27cd369b1063290adc SHA1: 87e644130f4cf2780f571ad35b2a49e65624477e SHA256: 916e7a39ff1fdaaf84ad3c52c54c945e203dd9924c01cc59370527b53577b0e4 Description: CD/DVD burning library for GNOME - runtime Homepage: http://www.gnome.org/projects/brasero/ Description-md5: 24b5258efe5b1e76dca7a3f333ac5af7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libbrasero-media3-dev Priority: optional Section: libdevel Installed-Size: 2081 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: brasero Version: 3.10.0-0ubuntu1 Replaces: libbrasero-media-dev Depends: libbrasero-media3-1 (= 3.10.0-0ubuntu1), gir1.2-brasero-3.0 (= 3.10.0-0ubuntu1), libglib2.0-dev, libgtk-3-dev Filename: pool/main/b/brasero/libbrasero-media3-dev_3.10.0-0ubuntu1_i386.deb Size: 88926 MD5sum: bdf44bcb251ae51657793b1bb719a3cb SHA1: a6163898eb81cbf412873a7252679534d6bd19b6 SHA256: 5d1c6eeb08f4ee8f0649a472647f62eca2b4be8b4c42218137d5e1cde37a7634 Description: CD/DVD burning library for GNOME - development Homepage: http://www.gnome.org/projects/brasero/ Description-md5: e5d0a609d9371ea0dd9ee6e59e1db375 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbrlapi-dbg Priority: extra Section: debug Installed-Size: 1016 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: brltty Version: 5.0-2ubuntu2 Depends: libbrlapi0.6 (= 5.0-2ubuntu2) Filename: pool/main/b/brltty/libbrlapi-dbg_5.0-2ubuntu2_i386.deb Size: 235944 MD5sum: c75a011aab3447db70bf010c4079db80 SHA1: c6a32f1f1f19810c40d6ab3438396009648353d0 SHA256: 6bcd4181065e51ba5508db553fa21017dc6807dd7fcc7d54389bb18d28aefe14 Description: braille display access via BRLTTY - shared library debugging symbols Homepage: http://mielke.cc/brltty/ Description-md5: 23a22943a5f502e7531a59d18cc512e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbrlapi-dev Priority: extra Section: libdevel Installed-Size: 495 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: brltty Version: 5.0-2ubuntu2 Depends: libbrlapi0.6 (= 5.0-2ubuntu2) Conflicts: libbrlapi1-dev (<< 3.8) Filename: pool/main/b/brltty/libbrlapi-dev_5.0-2ubuntu2_i386.deb Size: 144794 MD5sum: 0e3bfa318a5d48399bff85aec377a092 SHA1: 49cb242648f6dc66e48657838ff3d7d882240f08 SHA256: cebe7ca1e54768681165b7e94d3647773d21e93289ed58d1f6e51756fc642a36 Description: Library for communication with BRLTTY - static libs and headers Multi-Arch: same Homepage: http://mielke.cc/brltty/ Description-md5: 90ebedc1883fd213db0ca76e379a6159 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbrlapi0.6 Priority: extra Section: libs Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: brltty Version: 5.0-2ubuntu2 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/b/brltty/libbrlapi0.6_5.0-2ubuntu2_i386.deb Size: 20808 MD5sum: fc72e4d54363a682dba0b10419fc765d SHA1: ca946fa5d0a8e3526ce67c5430778a2108332f79 SHA256: efcc9834ad1100324812f5b4537c10e51a5075c10820e65c33341002cbc5fdaf Description: braille display access via BRLTTY - shared library Multi-Arch: same Homepage: http://mielke.cc/brltty/ Description-md5: d7471913aa262901576c796cae4d0b04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libbsd-dev Priority: optional Section: libdevel Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: i386 Source: libbsd Version: 0.6.0-2ubuntu1 Replaces: libfreebsd-dev (<< 0.0-8) Depends: libbsd0 (= 0.6.0-2ubuntu1) Filename: pool/main/libb/libbsd/libbsd-dev_0.6.0-2ubuntu1_i386.deb Size: 113840 MD5sum: f2f8cf808a61cab1cac5b153554d6a9d SHA1: ed304fbfdba7852102fdca06391c396fc3f578e9 SHA256: 3fd7ceb5464b6164da7315c4a4a519a1f977e5669569d4e7ff17ee63ae4a0353 Description: utility functions from BSD systems - development files Homepage: http://libbsd.freedesktop.org/ Description-md5: e38ece2858014cfcdc89b4a9d7ebeca9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbsd-resource-perl Priority: extra Section: perl Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.2907-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2) Filename: pool/main/libb/libbsd-resource-perl/libbsd-resource-perl_1.2907-1build1_i386.deb Size: 31380 MD5sum: fd9da3a30d6772481a16506f20dd8278 SHA1: 5a37277d1020aabb5b61922519075bb38470c56c SHA256: b3219a4e9e57f2da00a4eb77120d483b8e3635dc8ee81b8f269f65046002c413 Description: BSD process resource limit and priority functions Homepage: https://metacpan.org/release/BSD-Resource/ Description-md5: 97e499ae57ca3a884ae47cea9b49f135 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libbsd0 Priority: important Section: libs Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: i386 Source: libbsd Version: 0.6.0-2ubuntu1 Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Filename: pool/main/libb/libbsd/libbsd0_0.6.0-2ubuntu1_i386.deb Size: 32062 MD5sum: 821cec438c74a4428dfa6b1dac66b277 SHA1: b9fa1f121c66ea107cc66b82e266009f71b7eac1 SHA256: 76109036ea18bba3b77edec7ab59fafbe08e4f4d820b43675fc0dd018961cd12 Description: utility functions from BSD systems - shared library Multi-Arch: same Homepage: http://libbsd.freedesktop.org/ Description-md5: 6341cc74d71c795b192431f79c0bc778 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libbsd0-dbg Priority: extra Section: libs Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Guillem Jover Architecture: i386 Source: libbsd Version: 0.6.0-2ubuntu1 Depends: libbsd0 (= 0.6.0-2ubuntu1) Filename: pool/main/libb/libbsd/libbsd0-dbg_0.6.0-2ubuntu1_i386.deb Size: 63260 MD5sum: f0495fba35a6e2dd9ae1f26382435d41 SHA1: 165e3a0b7a32423d72ac6e01865ea40085774330 SHA256: 414bff61eb6df345fc8364c6721d80fce7c459f22f37322685ceb3abdbb588fb Description: utility functions from BSD systems - debugging symbols Multi-Arch: same Homepage: http://libbsd.freedesktop.org/ Description-md5: 93629d020232f83fa6cc92af8bfa2fec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbsf-java Priority: optional Section: libs Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1:2.4.0-5build1 Depends: libapache-pom-java Suggests: bsh, libxalan2-java, rhino Filename: pool/main/libb/libbsf-java/libbsf-java_2.4.0-5build1_all.deb Size: 71232 MD5sum: 04834ac2a769b170ae47a5a6e7795005 SHA1: 85bfaff3da1562f4de46e91435fa9df46add8b8b SHA256: aa0f8a9bbeb40a270fde192ccc50bf717ba99dbe22ff558984c68887bf202dff Description: Bean Scripting Framework to support scripting languages in Java Homepage: http://jakarta.apache.org/bsf/ Description-md5: 7edf52967a3df85d4e3d6a32472105f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbsf-java-doc Priority: optional Section: doc Installed-Size: 1946 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libbsf-java Version: 1:2.4.0-5build1 Replaces: libbsf-java (<< 1:2.4.0-5) Suggests: libbsf-java Breaks: libbsf-java (<< 1:2.4.0-5) Filename: pool/main/libb/libbsf-java/libbsf-java-doc_2.4.0-5build1_all.deb Size: 119644 MD5sum: 46a65011cff793e95b95e4b9f62388cb SHA1: ae6f0445b1d2aa62962bcf688f0bbaf6caa1a7e3 SHA256: c956fa225fb5d5109c5737e58b8a596d563f8adf859521641e52aa88692edece Description: Bean Scripting Framework to support scripting - documentation Homepage: http://jakarta.apache.org/bsf/ Description-md5: 92502baf2a10b38aeaf5b2752e5730e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbsh-java Priority: optional Section: java Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: bsh Version: 2.0b4-15 Replaces: bsh (<= 2.0b4-13~) Breaks: bsh (<= 2.0b4-13~) Filename: pool/main/b/bsh/libbsh-java_2.0b4-15_all.deb Size: 264220 MD5sum: 02b161114371038012993b00f7c687e7 SHA1: 28bc7bf581d25a1768182c088b0ef731bfc3ace7 SHA256: c80273d0898008b93f5273b5a0e7515660dd20abae0f402d663df0c58655bb16 Description: Java scripting environment (BeanShell) Version 2 (library) Homepage: http://www.beanshell.org Description-md5: 9438acca3862ed2b76eba52014902e6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbtf1.2.0 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libbtf1.2.0_4.2.1-3ubuntu1_i386.deb Size: 8758 MD5sum: c3d56ea2c9b5824b66f77f54ac329a71 SHA1: ada3ce87ad86636ccd3ab6a368befe4607fada16 SHA256: 172c68a3a175432a0aaddf259b48e464fe02882d213dd6ffa457d38edd3c8e2c Description: permutation to block triangular form library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 6e365bf2b7dd8b53a71ca8cd3531be8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libburn-dbg Priority: extra Section: libdevel Installed-Size: 951 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: i386 Source: libburn Version: 1.3.4-0ubuntu1 Depends: libburn4 (= 1.3.4-0ubuntu1) Filename: pool/main/libb/libburn/libburn-dbg_1.3.4-0ubuntu1_i386.deb Size: 306272 MD5sum: bb2be164542c9dd0db5e5b2999b47a90 SHA1: 04c37dc6ed1b914a3780c5a6de4755e74640e815 SHA256: cb71b0632bb6eca39ecd7175761c26489b685bdbd501d6c860fb16244130ab66 Description: debugging symbols for libburn and cdrskin Homepage: http://libburnia-project.org Description-md5: b71a359cc4a9303ddd3ea0d3a4650049 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libburn-dev Priority: optional Section: libdevel Installed-Size: 613 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: i386 Source: libburn Version: 1.3.4-0ubuntu1 Depends: libburn4 (= 1.3.4-0ubuntu1) Suggests: libburn-doc (= 1.3.4-0ubuntu1) Filename: pool/main/libb/libburn/libburn-dev_1.3.4-0ubuntu1_i386.deb Size: 172694 MD5sum: 274e7f2a4819d9fba91b920b0cee877f SHA1: 911a0fd87e78e29eb2055ed9a5420ced635e239b SHA256: 9cec8c5f369008b9c51dea501c4782b3b5994760342c6ff32b3ff85ee81c3b26 Description: development package for libburn4 Homepage: http://libburnia-project.org Description-md5: 854de87c553918b83e5daae6f54aa114 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libburn-doc Priority: optional Section: doc Installed-Size: 2471 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: all Source: libburn Version: 1.3.4-0ubuntu1 Filename: pool/main/libb/libburn/libburn-doc_1.3.4-0ubuntu1_all.deb Size: 302590 MD5sum: dbcdeb433fa1539571c2a465d91b3991 SHA1: dca0835dc8ea659e88fc20426d07eb37ccac6755 SHA256: 1126980afa05d7c15fcf37efde5b9a3f0ea2d7e97c6dbb56a722dc99c05f1119 Description: API documentation for libburn library Homepage: http://libburnia-project.org Description-md5: 5ad35af2e43ccc2693002e90b6e34c39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libburn4 Priority: optional Section: libs Installed-Size: 346 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: i386 Source: libburn Version: 1.3.4-0ubuntu1 Depends: libc6 (>= 2.7) Filename: pool/main/libb/libburn/libburn4_1.3.4-0ubuntu1_i386.deb Size: 137598 MD5sum: fb3190b08c2c910c414a821ebcebb743 SHA1: 274593ba2cf0fc92dd0b4197f2aa324fec4d7cb0 SHA256: bbd917c77ab3eebd4950f41e88349341ced4161890685ed90d4214d1a2e79e20 Description: library to provide CD/DVD writing functions Homepage: http://libburnia-project.org Description-md5: bef2be60a0b4c082247dac63ace7c72f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libbusiness-isbn-data-perl Priority: optional Section: perl Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 20120719.001-1 Depends: perl Filename: pool/main/libb/libbusiness-isbn-data-perl/libbusiness-isbn-data-perl_20120719.001-1_all.deb Size: 19220 MD5sum: 9535cb54f3e86e7cb7a0654f1e04e606 SHA1: 7031fc90494407f62b2e7e867a5b52803361afb9 SHA256: af4184bc488ffa78e374ea9860fd8e5bd7b3fb0fbf041cf82b369c9664be8cf6 Description: data pack for Business::ISBN Homepage: http://search.cpan.org/dist/Business-ISBN-Data/ Description-md5: 8d0e38cef4621235676190262eac2227 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbusiness-isbn-perl Priority: optional Section: perl Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.07-1 Depends: perl, libbusiness-isbn-data-perl (>= 20120719.001) Suggests: libgd-barcode-perl Filename: pool/main/libb/libbusiness-isbn-perl/libbusiness-isbn-perl_2.07-1_all.deb Size: 18092 MD5sum: face1173589ab0a9b5959e7460db9683 SHA1: 2dca1045ec6458a0f227bd6df83b1919702cba95 SHA256: c25d5ab7dd1144131954022c9ef02e11bef5a8e87a456e1435667d8ba287997b Description: Perl library to work with International Standard Book Numbers Homepage: http://sourceforge.net/projects/perl-isbn/ Description-md5: 70e3939e29425484ad8e7999a53e663c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libbz2-1.0 Priority: required Section: libs Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: bzip2 Version: 1.0.6-5 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/b/bzip2/libbz2-1.0_1.0.6-5_i386.deb Size: 33934 MD5sum: a40ec8e2190e7aca0cc5740dcd76965e SHA1: 3ec484f2e78b24337a09988d5ed343cce6c5d23a SHA256: dce582f169fe24d02947ac2bc4e57504a828953d7502feac9f3b24f03a04dfc2 Description: high-quality block-sorting file compressor library - runtime Multi-Arch: same Homepage: http://www.bzip.org/ Description-md5: e921dd6ddb4bb508e6f1b62169b85d70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libbz2-dev Priority: optional Section: libdevel Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: bzip2 Version: 1.0.6-5 Replaces: bzip2 (<< 0.9.5d-3) Depends: libbz2-1.0 (= 1.0.6-5), libc6-dev | libc-dev Filename: pool/main/b/bzip2/libbz2-dev_1.0.6-5_i386.deb Size: 31936 MD5sum: adec9cbad852b8514fa3e24847a5a38a SHA1: b1e91a64f663befc6ed4b7209e15011cbac06369 SHA256: e30b698e5160936a95a93bbb00c387b48c2a7a406810b6dd58bfdadbeec38887 Description: high-quality block-sorting file compressor library - development Multi-Arch: same Homepage: http://www.bzip.org/ Description-md5: d144fb5e23e545a63e204740e6628ad3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc-ares-dev Priority: extra Section: libdevel Installed-Size: 257 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Schuldei Architecture: i386 Source: c-ares Version: 1.10.0-2 Depends: libc-ares2 (= 1.10.0-2) Conflicts: libares-dev Filename: pool/main/c/c-ares/libc-ares-dev_1.10.0-2_i386.deb Size: 103584 MD5sum: a8f9933b66c857a52297e0d600e664e1 SHA1: 45734dddb55b640cccf59dbd05ca6e68d57b3938 SHA256: ef855c9d911c4bdb26f36329bd97e08a9ae0a12ccb6cefe76ecdfe7391d19289 Description: asynchronous name resolver - development files Multi-Arch: same Homepage: http://c-ares.haxx.se/ Description-md5: 457af4d18b9753c3360923898df35b1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc-ares2 Priority: extra Section: libs Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Schuldei Architecture: i386 Source: c-ares Version: 1.10.0-2 Replaces: libc-ares1 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Conflicts: libcares2 Filename: pool/main/c/c-ares/libc-ares2_1.10.0-2_i386.deb Size: 38344 MD5sum: 8c7031b6a3f9ffb2729ccebcce74f7e1 SHA1: 5a581d66b6c6dee97e8fb33f4b2861a113ef10af SHA256: f4a87f45b1c7b6938687764f9ca56887a6dcba3a1cb8362feb960bffa7cbd7c6 Description: asynchronous name resolver Multi-Arch: same Homepage: http://c-ares.haxx.se/ Description-md5: 2ddfa5de14223839b0bc40795e305cef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc-bin Essential: yes Priority: required Section: libs Installed-Size: 3281 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Replaces: libc0.1, libc0.3, libc6, libc6.1 Depends: libc6 (>> 2.19), libc6 (<< 2.20), libcap2 (>= 2.10) Breaks: libc0.1 (<< 2.10), libc0.3 (<< 2.10), libc6 (<< 2.10), libc6.1 (<< 2.10) Filename: pool/main/e/eglibc/libc-bin_2.19-0ubuntu6_i386.deb Size: 1106456 MD5sum: 1ab0274052222eb9e9382a3fa273ffe5 SHA1: 26a266b99e165cdc54d8b1f941a69d4928e78eb9 SHA256: 27261c7d2ebf5e7b457d3b5729e0e31e8308c0078dc6ec8e1f3ccc259d6d3ee6 Description: Embedded GNU C Library: Binaries Multi-Arch: foreign Homepage: http://www.eglibc.org Description-md5: 522a2db5296e3eb124bc283f6680cc58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libc-dev-bin Priority: optional Section: libdevel Installed-Size: 361 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Replaces: libc0.1-dev, libc0.3-dev, libc6-dev, libc6.1-dev Depends: libc6 (>> 2.19), libc6 (<< 2.20) Recommends: manpages-dev Filename: pool/main/e/eglibc/libc-dev-bin_2.19-0ubuntu6_i386.deb Size: 63322 MD5sum: 1fa170568c4c6ea1da46f1c7599a79eb SHA1: 03bee147d532b773e703dab01473a8564ef1cee0 SHA256: 8bbb15b2b60afb34aae9a850890181c6c734a95af5501f69aaacfd8b20b3fa5d Description: Embedded GNU C Library: Development binaries Multi-Arch: foreign Homepage: http://www.eglibc.org Description-md5: fd5fdd2377062e0827c669a30c97e2dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libc6 Priority: required Section: libs Installed-Size: 9254 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Replaces: libc6-i386, libc6-xen Provides: glibc-2.19-1, libc6-i686, libc6-xen Depends: libgcc1 Suggests: glibc-doc, debconf | debconf-2.0, locales Conflicts: libc6-xen, prelink (<= 0.0.20090311-1), tzdata (<< 2007k-1), tzdata-etch Breaks: hurd (<< 1:0.5.git20140203-1), nscd (<< 2.19) Filename: pool/main/e/eglibc/libc6_2.19-0ubuntu6_i386.deb Size: 4017198 MD5sum: 5a1fc49fdf92dbbbb8d60e092f3d9ce4 SHA1: 83aaad0f14e44b79d5d3e522bf2cfa79880ad4a8 SHA256: 5c71d97ddf95c791b04508dc932a31aab0cbeaf5d3ba01aaa46bd23f9b69d3e4 Description: Embedded GNU C Library: Shared libraries Multi-Arch: same Homepage: http://www.eglibc.org Description-md5: 5089b4da6684d7432ab618fb5b79cec5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libc6-amd64 Priority: optional Section: libs Installed-Size: 10725 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Depends: libc6 (= 2.19-0ubuntu6) Conflicts: amd64-libs (<= 1.2) Filename: pool/main/e/eglibc/libc6-amd64_2.19-0ubuntu6_i386.deb Size: 2437092 MD5sum: 7563d1ec415391dc6c603da6a745404f SHA1: 57b3dae2937142b0f6dcfa954741bc12ad84e853 SHA256: 308edd1f90b7e8aaf6a9c2bd80195f8f6131ad7674093080ec9835794b05835a Description: Embedded GNU C Library: 64bit Shared libraries for AMD64 Homepage: http://www.eglibc.org Description-md5: 5e871a82fe5ae12250669afab6662439 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libc6-arm64-cross Priority: extra Section: libs Maintainer: Ubuntu Developers Architecture: all Source: arm64-cross-toolchain-base (0.10) Version: 2.19-0ubuntu2cross0.10 Provides: glibc-2.19-1-arm64-cross, libc6-arm64-dcv1 Conflicts: prelink-arm64-cross (<= 0.0.20090311-1), tzdata-etch-arm64-cross Filename: pool/main/a/arm64-cross-toolchain-base/libc6-arm64-cross_2.19-0ubuntu2cross0.10_all.deb Size: 991662 MD5sum: dbd6f633558507c62f2cde88a3081902 SHA1: bedcb52b357d9cc77d6e5d3189752128c3ea3065 SHA256: 56248e65042667797c33874aa0fb6863824857b2429b7085084c5b8f9d9110a9 Description: Embedded GNU C Library: Shared libraries (for cross-compiling) Description-md5: 24a92b169d87e4acb423e610210802be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-armel-armhf-cross Priority: extra Section: devel Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: all Source: armhf-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Depends: libc6-armel-cross Filename: pool/main/a/armhf-cross-toolchain-base/libc6-armel-armhf-cross_2.19-0ubuntu2cross1.104_all.deb Size: 1388 MD5sum: aed47a28254fde24a2e08ebb4c133361 SHA1: ff637c4febc9ddb7afd605f187d7575825a73a63 SHA256: a98bcb22a6a98e5a236d8ae78017d4685fb2fa229f2ab2ff801855f4be8557a1 Description: Dummy package to get libc6:armel installed Description-md5: 780e9a19653fff3e8fee03fa7d0e12fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-armel-cross Priority: extra Section: devel Maintainer: Ubuntu Developers Architecture: all Source: armel-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Provides: glibc-2.19-1-armel-cross, libc6-armel-armel-cross, libc6-armel-dcv1 Conflicts: prelink-armel-cross (<= 0.0.20090311-1), tzdata-etch-armel-cross Filename: pool/main/a/armel-cross-toolchain-base/libc6-armel-cross_2.19-0ubuntu2cross1.104_all.deb Size: 966534 MD5sum: e7e6a77330bd5131546c020ddaee7696 SHA1: 05381a0ad488a41b53421583bb1ba1db06693f55 SHA256: db977c4383267885bd6137f6b99491b1a487dedd7bdb005cff0a2a1c4688ed02 Description: Embedded GNU C Library: Shared libraries (for cross-compiling) Description-md5: 24a92b169d87e4acb423e610210802be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-armhf-cross Priority: extra Section: libs Maintainer: Ubuntu Developers Architecture: all Source: armhf-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Provides: glibc-2.19-1-armhf-cross, libc6-armhf-armhf-cross, libc6-armhf-dcv1 Conflicts: prelink-armhf-cross (<= 0.0.20090311-1), tzdata-etch-armhf-cross Filename: pool/main/a/armhf-cross-toolchain-base/libc6-armhf-cross_2.19-0ubuntu2cross1.104_all.deb Size: 946028 MD5sum: 76602a7c49f9954a995cbf17e57222c7 SHA1: 6e277fbf6ba462038aa351d7aad5f2f2d0e76582 SHA256: ac8c3cd764a01ab001f01f8ed505e370ad20d3a2de8de11ea077b3693657559d Description: Embedded GNU C Library: Shared libraries (for cross-compiling) Description-md5: 24a92b169d87e4acb423e610210802be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dbg Priority: extra Section: debug Installed-Size: 16208 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Provides: libc-dbg Depends: libc6 (= 2.19-0ubuntu6) Filename: pool/main/e/eglibc/libc6-dbg_2.19-0ubuntu6_i386.deb Size: 2967484 MD5sum: d660bb9f82b5881ef7d9fd570600278e SHA1: d6b265d530d5999dff3badece7da5b872a7f5828 SHA256: 8c7edfcfed2e789130b63562d166c66a158b3fd83e56d9e6797ee456f5995b65 Description: Embedded GNU C Library: detached debugging symbols Multi-Arch: same Homepage: http://www.eglibc.org Description-md5: 277bfaa2a11e93ce7a8e08b0947e8bd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libc6-dev Priority: optional Section: libdevel Installed-Size: 8640 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Provides: libc-dev Depends: libc6 (= 2.19-0ubuntu6), libc-dev-bin (= 2.19-0ubuntu6), linux-libc-dev Recommends: gcc | c-compiler Suggests: glibc-doc, manpages-dev Conflicts: libc0.1-dev, libc0.3-dev, libc6.1-dev Breaks: binutils (<< 2.20.1-1), binutils-gold (<< 2.20.1-11), cmake (<< 2.8.4+dfsg.1-5), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2), gcc-4.6 (<< 4.6.0-12), libhwloc-dev (<< 1.2-3), libjna-java (<< 3.2.7-4), liblouis-dev (<< 2.3.0-2), liblouisxml-dev (<< 2.4.0-2), make (<< 3.81-8.1), pkg-config (<< 0.26-1) Filename: pool/main/e/eglibc/libc6-dev_2.19-0ubuntu6_i386.deb Size: 1555008 MD5sum: ca3641e46ee32e3ca1552c13d72d4af2 SHA1: c2be7d5bc5f8a27fffad0456411bff43bd6daa22 SHA256: 3aa44aac5dcb20b9f90862008f5bfafdb2e5e79ea74b55a427ce5622017dcd52 Description: Embedded GNU C Library: Development Libraries and Header Files Multi-Arch: same Homepage: http://www.eglibc.org Description-md5: 67dac41d6c8268d6a08835d858b160af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libc6-dev-amd64 Priority: optional Section: libdevel Installed-Size: 9369 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Replaces: amd64-libs-dev (<= 1.2), libc6-dev (<< 2.13-11) Provides: lib64c-dev Depends: libc6-amd64 (= 2.19-0ubuntu6), libc6-dev (= 2.19-0ubuntu6) Recommends: gcc-multilib Conflicts: libc6-dev (<< 2.13-14) Filename: pool/main/e/eglibc/libc6-dev-amd64_2.19-0ubuntu6_i386.deb Size: 1430456 MD5sum: 1cae37db0f35b5e344f72ca715193bcb SHA1: 7f9f6f7644c6b191aba82b6e3ec209433eb0acf7 SHA256: 9364f4ce6850e8ec583e5f50310e7a2d4acad88835fb64a38b1954d634689d90 Description: Embedded GNU C Library: 64bit Development Libraries for AMD64 Homepage: http://www.eglibc.org Description-md5: e56f2cd3094aab960377d26a5ed4ab90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libc6-dev-arm64-cross Priority: extra Section: libdevel Maintainer: Ubuntu Developers Architecture: all Source: arm64-cross-toolchain-base (0.10) Version: 2.19-0ubuntu2cross0.10 Provides: libc-dev-arm64-cross, libc6-dev-arm64-dcv1 Depends: libc6-arm64-cross (= 2.19-0ubuntu2cross0.10), linux-libc-dev-arm64-cross Conflicts: libc0.1-dev-arm64-cross, libc0.3-dev-arm64-cross, libc6.1-dev-arm64-cross Filename: pool/main/a/arm64-cross-toolchain-base/libc6-dev-arm64-cross_2.19-0ubuntu2cross0.10_all.deb Size: 1687894 MD5sum: 978135bf49885f600e2d5bab8c6eb4b5 SHA1: dd8df5e1795505aed7aa92cce341d5a2f14906c6 SHA256: 580873ec2f36930861f7df8f7f57a48b5935b0daefeedcd67daf0a43d4c1db19 Description: Embedded GNU C Library: Development Libraries and Header Files (for cross-compiling) Description-md5: 9367b9762a0012b825ea039bd9a1e844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-armel-armhf-cross Priority: extra Section: devel Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: all Source: armhf-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Depends: libc6-dev-armel-cross Filename: pool/main/a/armhf-cross-toolchain-base/libc6-dev-armel-armhf-cross_2.19-0ubuntu2cross1.104_all.deb Size: 1132 MD5sum: 89929809f5e7867dd7c86c8efc8d66f5 SHA1: e746ba936aa226110854a7882753c88278474092 SHA256: 8fa2ac79f356f30275140288c7b131be21beb0c802719e2f12a3d1bcc7e4d36c Description: Dummy package to get libc6-dev:armel installed Description-md5: f80e6c73db074d37066ad221aa84dc6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-armel-cross Priority: extra Section: devel Maintainer: Ubuntu Developers Architecture: all Source: armel-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Provides: libc-dev-armel-cross, libc6-dev-armel-armel-cross, libc6-dev-armel-dcv1 Depends: libc6-armel-cross (= 2.19-0ubuntu2cross1.104), linux-libc-dev-armel-cross Conflicts: libc0.1-dev-armel-cross, libc0.3-dev-armel-cross, libc6.1-dev-armel-cross Filename: pool/main/a/armel-cross-toolchain-base/libc6-dev-armel-cross_2.19-0ubuntu2cross1.104_all.deb Size: 1615598 MD5sum: a724455e754d585a9de82d7ea750f3d8 SHA1: 9bf8d8d5cdb205baedf71f06e80dd659e7ab8081 SHA256: 0f79e39a26068ab4539494c70fa36d1d6e9cc0e5c5c764084718c6540c97421e Description: Embedded GNU C Library: Development Libraries and Header Files (for cross-compiling) Description-md5: 9367b9762a0012b825ea039bd9a1e844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-armhf-cross Priority: extra Section: libdevel Maintainer: Ubuntu Developers Architecture: all Source: armhf-cross-toolchain-base (1.104) Version: 2.19-0ubuntu2cross1.104 Provides: libc-dev-armhf-cross, libc6-dev-armhf-armhf-cross, libc6-dev-armhf-dcv1 Depends: libc6-armhf-cross (= 2.19-0ubuntu2cross1.104), linux-libc-dev-armhf-cross Conflicts: libc0.1-dev-armhf-cross, libc0.3-dev-armhf-cross, libc6.1-dev-armhf-cross Filename: pool/main/a/armhf-cross-toolchain-base/libc6-dev-armhf-cross_2.19-0ubuntu2cross1.104_all.deb Size: 1587368 MD5sum: 9942268c1d8d2ce50e609804c23020ac SHA1: 1723a0aa5bccf34a45bea20af68e1e61aef91633 SHA256: 1f02e9b93c21efc99ee5b413d63dc8e5ed191aba9fb5ccabc4a0b0f0e135570e Description: Embedded GNU C Library: Development Libraries and Header Files (for cross-compiling) Description-md5: 9367b9762a0012b825ea039bd9a1e844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-powerpc-cross Priority: extra Section: libdevel Maintainer: Ubuntu Developers Architecture: all Source: powerpc-cross-toolchain-base (1.1) Version: 2.19-0ubuntu2cross1.1 Provides: libc-dev-powerpc-cross, libc6-dev-powerpc-dcv1 Depends: libc6-powerpc-cross (= 2.19-0ubuntu2cross1.1), linux-libc-dev-powerpc-cross Conflicts: libc0.1-dev-powerpc-cross, libc0.3-dev-powerpc-cross, libc6.1-dev-powerpc-cross Filename: pool/main/p/powerpc-cross-toolchain-base/libc6-dev-powerpc-cross_2.19-0ubuntu2cross1.1_all.deb Size: 1774564 MD5sum: 80b60d20c3857cbb8196e858ae1ff59a SHA1: c3e7b90b48cdb0b57d6154808a23468ce6c980ca SHA256: 38521ee2270efb19553de3316172a5ff13244fea953e361b8b5c9890cf95906d Description: Embedded GNU C Library: Development Libraries and Header Files (for cross-compiling) Description-md5: 9367b9762a0012b825ea039bd9a1e844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-ppc64-powerpc-cross Priority: extra Section: libdevel Maintainer: Ubuntu Developers Architecture: all Source: powerpc-cross-toolchain-base (1.1) Version: 2.19-0ubuntu2cross1.1 Replaces: libc6-dev-powerpc-cross (<< 2.13-11) Provides: lib64c-dev-powerpc-cross, libc6-dev-ppc64-powerpc-dcv1 Depends: libc6-ppc64-powerpc-cross (= 2.19-0ubuntu2cross1.1), libc6-dev-powerpc-cross (= 2.19-0ubuntu2cross1.1) Conflicts: libc6-dev-powerpc-cross (<< 2.13-14) Filename: pool/main/p/powerpc-cross-toolchain-base/libc6-dev-ppc64-powerpc-cross_2.19-0ubuntu2cross1.1_all.deb Size: 1427632 MD5sum: 2ff8da742e91e01a317ac3426aafbcca SHA1: 72f0e8754ae36311c3694e05246bc2433aacbbb9 SHA256: 41dd1805f2fb6098b1722b6c2bb4d3cb7c1f8a9ca52e3f01db0d9db90ff936db Description: Embedded GNU C Library: 64bit Development Libraries for PowerPC64 (for cross-compiling) Description-md5: 299efbff8dd103d807798f8961769770 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-ppc64el-cross Priority: extra Section: libdevel Maintainer: Ubuntu Developers Architecture: all Source: ppc64el-cross-toolchain-base (0.2) Version: 2.19-0ubuntu2cross0.2 Provides: libc-dev-ppc64el-cross, libc6-dev-ppc64el-dcv1 Depends: libc6-ppc64el-cross (= 2.19-0ubuntu2cross0.2), linux-libc-dev-ppc64el-cross Conflicts: libc0.1-dev-ppc64el-cross, libc0.3-dev-ppc64el-cross, libc6.1-dev-ppc64el-cross Filename: pool/main/p/ppc64el-cross-toolchain-base/libc6-dev-ppc64el-cross_2.19-0ubuntu2cross0.2_all.deb Size: 1957228 MD5sum: 438056e9d253684400a311a2eb64510a SHA1: a253bf1129f463423e5e8e230df55f96b0da9fb0 SHA256: 97ee80a9350e4dd537f0e87ea9ac6b369290e17535fadbdcefa900d7c5d84b95 Description: Embedded GNU C Library: Development Libraries and Header Files (for cross-compiling) Description-md5: 9367b9762a0012b825ea039bd9a1e844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-dev-x32 Priority: optional Section: libdevel Installed-Size: 7389 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Depends: libc6-x32 (= 2.19-0ubuntu6), libc6-dev-amd64 (= 2.19-0ubuntu6), libc6-dev (= 2.19-0ubuntu6) Filename: pool/main/e/eglibc/libc6-dev-x32_2.19-0ubuntu6_i386.deb Size: 1410982 MD5sum: 5b9ce028cf9d6e3970f8f0b06cf041f5 SHA1: 0d2d9488379d804cd404866cfae87f58731607b3 SHA256: ee53a36455d12b7944f028c32c1049a57c8d975fb605b9ed2e37f35c550a6fe8 Description: Embedded GNU C Library: X32 ABI Development Libraries for AMD64 Homepage: http://www.eglibc.org Description-md5: 140597acae786a385454e1181b2fbecb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libc6-pic Priority: optional Section: libdevel Installed-Size: 6474 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Provides: glibc-pic, libc-pic Depends: libc6 (= 2.19-0ubuntu6) Conflicts: libc-pic Filename: pool/main/e/eglibc/libc6-pic_2.19-0ubuntu6_i386.deb Size: 1104340 MD5sum: 8f8e67ef32004140c24d48367dff8810 SHA1: 0a7ff881974a25f1d9e8f8c219e8c2f91f525871 SHA256: bacf5419bdfbe4990216267fdac705f4af7d002ddb49f71593430ba1bd1d9dd0 Description: Embedded GNU C Library: PIC archive library Multi-Arch: same Homepage: http://www.eglibc.org Description-md5: 85973cd40f4511da29e5fd362e133f28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-powerpc-cross Priority: extra Section: libs Maintainer: Ubuntu Developers Architecture: all Source: powerpc-cross-toolchain-base (1.1) Version: 2.19-0ubuntu2cross1.1 Replaces: libc6-powerpc-powerpc-cross Provides: glibc-2.19-1-powerpc-cross, libc6-powerpc-dcv1 Conflicts: prelink-powerpc-cross (<= 0.0.20090311-1), tzdata-etch-powerpc-cross Filename: pool/main/p/powerpc-cross-toolchain-base/libc6-powerpc-cross_2.19-0ubuntu2cross1.1_all.deb Size: 1073706 MD5sum: e3e1b2816d34fa25f3b76c3e48beb6c2 SHA1: 123fb0e974691b166bad7f3196798cf7c2fa23f1 SHA256: ff4f5d32c43a49b474d4eee3679bb8ecb9e34c72de05204c0cfc254ec482888d Description: Embedded GNU C Library: Shared libraries (for cross-compiling) Description-md5: 24a92b169d87e4acb423e610210802be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-ppc64-powerpc-cross Priority: extra Section: libs Maintainer: Ubuntu Developers Architecture: all Source: powerpc-cross-toolchain-base (1.1) Version: 2.19-0ubuntu2cross1.1 Provides: libc6-ppc64-powerpc-dcv1 Filename: pool/main/p/powerpc-cross-toolchain-base/libc6-ppc64-powerpc-cross_2.19-0ubuntu2cross1.1_all.deb Size: 1239250 MD5sum: 56c382cfab9a688bb451b2292bae417d SHA1: f04838578003e2decc715d31956e2bdf120287cf SHA256: c6c70d6d4289157687622edb840855072223332bd8a0f34a1be403b1ca9f90ba Description: Embedded GNU C Library: 64bit Shared libraries for PowerPC64 (for cross-compiling) Description-md5: 53c6ccf5f962b10779c2e791cdc50a86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-ppc64el-cross Priority: extra Section: libs Maintainer: Ubuntu Developers Architecture: all Source: ppc64el-cross-toolchain-base (0.2) Version: 2.19-0ubuntu2cross0.2 Provides: glibc-2.19-1-ppc64el-cross, libc6-ppc64el-dcv1 Conflicts: prelink-ppc64el-cross (<= 0.0.20090311-1), tzdata-etch-ppc64el-cross Filename: pool/main/p/ppc64el-cross-toolchain-base/libc6-ppc64el-cross_2.19-0ubuntu2cross0.2_all.deb Size: 1167910 MD5sum: eba68ef9921dada1178f75e03d7d6daf SHA1: 219fa21e476607bf4c3e5a664c48675ae631e9e2 SHA256: 919c1a16909d2a61c860abf12442daee7f435b64d4bbd60fee75f21b0cdf7b3d Description: Embedded GNU C Library: Shared libraries (for cross-compiling) Description-md5: 24a92b169d87e4acb423e610210802be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libc6-prof Priority: extra Section: libdevel Installed-Size: 6339 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Depends: libc6 (= 2.19-0ubuntu6) Filename: pool/main/e/eglibc/libc6-prof_2.19-0ubuntu6_i386.deb Size: 1157096 MD5sum: 01a5d0814a619e6fd4226e4d65e53642 SHA1: d7e46454682a54cbca10d8c1c83cf74517ade3cc SHA256: a2b8add7c41a021119f6a16e19a765b66f1de845d991d97b4560cc516156128a Description: Embedded GNU C Library: Profiling Libraries Multi-Arch: same Homepage: http://www.eglibc.org Description-md5: 37f174a2430988386de68890169f5224 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libc6-x32 Priority: optional Section: libs Installed-Size: 10289 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Depends: libc6 (= 2.19-0ubuntu6) Filename: pool/main/e/eglibc/libc6-x32_2.19-0ubuntu6_i386.deb Size: 2434618 MD5sum: 734f4bb1c0eb5ba547f8ab44d3dd1ce5 SHA1: d7ad5ceafb7ec9b9e77f1d8963441d32a0526704 SHA256: f861b1d6437f81d92f10851f817bd976e55c1400441f1baee9737965dc741c6c Description: Embedded GNU C Library: X32 ABI Shared libraries for AMD64 Homepage: http://www.eglibc.org Description-md5: f36805e5d41866f6c61e0d5467d9294b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcaca-dev Priority: optional Section: libdevel Installed-Size: 2056 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hocevar Architecture: i386 Source: libcaca Version: 0.99.beta18-1ubuntu5 Depends: libcaca0 (= 0.99.beta18-1ubuntu5), libslang2-dev Filename: pool/main/libc/libcaca/libcaca-dev_0.99.beta18-1ubuntu5_i386.deb Size: 328258 MD5sum: 36092eb5e946a2b6c66a860e1a549ab3 SHA1: eb91d338efe38f959e0004a22ab22ea78894346b SHA256: 0215c0ff8bb40ba93ac163eca2767865bebbd81ee4cae9e384b8c25496cccf02 Description: development files for libcaca Homepage: http://caca.zoy.org/wiki/libcaca Description-md5: a8407cdc111c971683cb4652610d1e8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcaca0 Priority: optional Section: libs Installed-Size: 1040 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hocevar Architecture: i386 Source: libcaca Version: 0.99.beta18-1ubuntu5 Depends: libc6 (>= 2.7), libncursesw5 (>= 5.6+20070908), libslang2 (>= 2.2.4), libstdc++6 (>= 4.1.1), libtinfo5, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/libc/libcaca/libcaca0_0.99.beta18-1ubuntu5_i386.deb Size: 201664 MD5sum: a13c2e6d67550d0f5e094f63aba2c4cb SHA1: 2afb6ea53016d7665f3f2520cac556b2eb6a4e51 SHA256: ce65423f431da890b0dec2a5a67b2ec8fbe67d98b6768161b7e7398274dd3f24 Description: colour ASCII art library Multi-Arch: same Homepage: http://caca.zoy.org/wiki/libcaca Description-md5: d4849604710d4ce2aca997ad664f17fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcairo-gobject2 Priority: optional Section: libs Installed-Size: 324 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: cairo Version: 1.13.0~20140204-0ubuntu1 Depends: libc6 (>= 2.1.3), libcairo2 (>= 1.10.0), libglib2.0-0 (>= 2.14.0) Pre-Depends: multiarch-support Filename: pool/main/c/cairo/libcairo-gobject2_1.13.0~20140204-0ubuntu1_i386.deb Size: 16484 MD5sum: 3665ef570083e0f8d3d434179b46b1bc SHA1: 833522f241ee03a293b70d32a5c92aeaf8f4c511 SHA256: c03a0e2c63ceaf077a4671a8643c01a65d145e0491c84be4ae1a686d9954c283 Description: The Cairo 2D vector graphics library (GObject library) Multi-Arch: same Homepage: http://cairographics.org/ Description-md5: 90e74160b3e9c9c5bd23b0262b83c47f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcairo-script-interpreter2 Priority: optional Section: libs Installed-Size: 425 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: cairo Version: 1.13.0~20140204-0ubuntu1 Depends: libc6 (>= 2.11), libcairo2 (>= 1.13.0~20140204), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), liblzo2-2, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/c/cairo/libcairo-script-interpreter2_1.13.0~20140204-0ubuntu1_i386.deb Size: 52644 MD5sum: 480744c849dfdcb9687583ff866cde5a SHA1: 6afbad4db1285b428eb8b9584843eb748f13bca2 SHA256: 1f1ce2e3d4845fd722a7c81a603564432084e5ae37ef01e68cd53893d802a734 Description: The Cairo 2D vector graphics library (script interpreter) Multi-Arch: same Homepage: http://cairographics.org/ Description-md5: 4845e41ff7468a737b9a3d9086b27385 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcairo2 Priority: optional Section: libs Installed-Size: 1467 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: cairo Version: 1.13.0~20140204-0ubuntu1 Depends: libc6 (>= 2.11), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.5), libpixman-1-0 (>= 0.30.0), libpng12-0 (>= 1.2.13-4), libx11-6, libxcb-render0, libxcb-shm0, libxcb1 (>= 1.6), libxext6, libxrender1, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Breaks: iceape-browser (<= 2.0.3-3), libgtk-directfb-2.0-0, xulrunner-1.9, xulrunner-1.9.1 (<= 1.9.1.8-3) Filename: pool/main/c/cairo/libcairo2_1.13.0~20140204-0ubuntu1_i386.deb Size: 550406 MD5sum: b6c30c2aef317079af72c6ad99bfe2d9 SHA1: 740d558d4eae1f4f82efd76a9d5199258c765eac SHA256: 707de4f5d5acd3baddf1fce4db79ff0ec0691cdf3cef7e7585880a1c7150dc0d Description: The Cairo 2D vector graphics library Multi-Arch: same Homepage: http://cairographics.org/ Description-md5: 263d485b1d6e2e1e534a91e570d6d5de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcairo2-dbg Priority: extra Section: libdevel Installed-Size: 4577 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: cairo Version: 1.13.0~20140204-0ubuntu1 Depends: libcairo2 (= 1.13.0~20140204-0ubuntu1) Suggests: libcairo-gobject2 (= 1.13.0~20140204-0ubuntu1), libcairo-script-interpreter2 (= 1.13.0~20140204-0ubuntu1), cairo-perf-utils (= 1.13.0~20140204-0ubuntu1) Filename: pool/main/c/cairo/libcairo2-dbg_1.13.0~20140204-0ubuntu1_i386.deb Size: 1295012 MD5sum: 57aae05c8bed5fa6ad9d6832924818c4 SHA1: 3b0cd35068af44ecb9ce6dad9dd3a03e22c85ec5 SHA256: be426146bd33bce69d150c082eaab98654c5f7dbdc2cb855cc7267c80394e1ed Description: The Cairo 2D vector graphics library (debugging symbols) Multi-Arch: same Homepage: http://cairographics.org/ Description-md5: 6d08317e1e0b4a57845b4cec25ce8351 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcairo2-dev Priority: optional Section: libdevel Installed-Size: 2304 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: cairo Version: 1.13.0~20140204-0ubuntu1 Provides: libcairo-dev Depends: libcairo2 (= 1.13.0~20140204-0ubuntu1), libcairo-gobject2 (= 1.13.0~20140204-0ubuntu1), libcairo-script-interpreter2 (= 1.13.0~20140204-0ubuntu1), libfontconfig1-dev (>= 2.2.95), libfreetype6-dev (>= 2.1.10), libx11-dev, libxrender-dev (>= 0.6), libpng-dev, libsm-dev, libpixman-1-dev (>= 0.22.0), libxcb1-dev (>= 1.6), libxcb-render0-dev (>= 1.6), libxcb-shm0-dev, libxext-dev, libglib2.0-dev Suggests: libcairo2-doc Filename: pool/main/c/cairo/libcairo2-dev_1.13.0~20140204-0ubuntu1_i386.deb Size: 566732 MD5sum: 38746b8c97aa081b75b8e046c9edc542 SHA1: a47a988b98e0b35854d1f9b800551b170f51d0a0 SHA256: a3b1b8e530e6bcb799bfce4c85ef2a8856b660fd07c07153e7b201301d051e0c Description: Development files for the Cairo 2D graphics library Homepage: http://cairographics.org/ Description-md5: 07fe86d11452aa2efc887db335b46f58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcairo2-doc Priority: optional Section: libs Installed-Size: 2026 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: all Source: cairo Version: 1.13.0~20140204-0ubuntu1 Recommends: lynx | www-browser Filename: pool/main/c/cairo/libcairo2-doc_1.13.0~20140204-0ubuntu1_all.deb Size: 233190 MD5sum: ed8f775713b62d019bf595bbef412ca7 SHA1: 7a9da89a6d1e9250b58ed9d760784a94141ef417 SHA256: bf1a18375bcdc9a5e7ce75c2a776adefc32d50cd18c3461a24cd9b4a3b207c90 Description: Documentation for the Cairo Multi-platform 2D graphics library Homepage: http://cairographics.org/ Description-md5: 4603e32e069e318a18ec80fe36526ad6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcairomm-1.0-1 Priority: optional Section: libs Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: cairomm Version: 1.10.0-1ubuntu3 Replaces: libcairomm-1.0-0 Depends: libc6 (>= 2.1.3), libcairo2 (>= 1.10.0), libgcc1 (>= 1:4.1.1), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/c/cairomm/libcairomm-1.0-1_1.10.0-1ubuntu3_i386.deb Size: 42984 MD5sum: be5aed730e28fc8cebc4555d77788161 SHA1: 44697792f6451204b00784a34fba5eee20119bfe SHA256: 72919c6ed8c0a3981e33f5f7c92f59d7f4005661badadef27db88254432295de Description: C++ wrappers for Cairo (shared libraries) Multi-Arch: same Homepage: http://cairographics.org/cairomm/ Description-md5: 9c233d1a7e5d4352725228498d10f142 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcairomm-1.0-dev Priority: optional Section: libdevel Installed-Size: 489 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: cairomm Version: 1.10.0-1ubuntu3 Depends: libcairomm-1.0-1 (= 1.10.0-1ubuntu3), libcairo2-dev (>= 1.10.0), libsigc++-2.0-dev Suggests: libcairomm-1.0-doc Filename: pool/main/c/cairomm/libcairomm-1.0-dev_1.10.0-1ubuntu3_i386.deb Size: 73752 MD5sum: 4d7fe16050fe74655252d4dcecbe2819 SHA1: 6dfc4077ccb385fd4cfc97b7da7214184e3c7cdd SHA256: a9d95dc1302556393d0a26de8f41c6d0e838a1d9234bad4b73d093773c540e7e Description: C++ wrappers for Cairo (development files) Multi-Arch: same Homepage: http://cairographics.org/cairomm/ Description-md5: a2c3c7b4cc9b846b20056a6c91abe5d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcairomm-1.0-doc Priority: optional Section: doc Installed-Size: 2339 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: all Source: cairomm Version: 1.10.0-1ubuntu3 Suggests: www-browser Filename: pool/main/c/cairomm/libcairomm-1.0-doc_1.10.0-1ubuntu3_all.deb Size: 395514 MD5sum: ef02260371974126e579890f5a95da59 SHA1: 0388c43b3acbede682615bcced19fb05dfa9919c SHA256: 637506dd16d6fa93d2914faa241c046a24b688582ef300d0856ea12babe2196f Description: C++ wrappers for Cairo (documentation) Homepage: http://cairographics.org/cairomm/ Description-md5: d5774e305168423f6cfea4081006286c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcamd2.3.1 Priority: optional Section: libs Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libcamd2.3.1_4.2.1-3ubuntu1_i386.deb Size: 15670 MD5sum: a9fac6cdf73d7d459339f68de228adc4 SHA1: 3cc2183e95d4c6f141bc3792ebd93911fe18d142 SHA256: 91bee118847adb1d12113b081e1b0088da7a19c564e907e9f542b8de24c52676 Description: symmetric approximate minimum degree library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 33f572e7507f842b25b406aac73c7832 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libcamel-1.2-45 Priority: optional Section: libs Installed-Size: 1584 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.15), libcomerr2 (>= 1.01), libglib2.0-0 (>= 2.35.9), libgssapi-krb5-2 (>= 1.10+dfsg~), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~beta3), libsqlite3-0 (>= 3.6.0), zlib1g (>= 1:1.1.4) Breaks: evolution (<< 2.26) Filename: pool/main/e/evolution-data-server/libcamel-1.2-45_3.10.4-0ubuntu1_i386.deb Size: 534346 MD5sum: aa8398b18192c79c2a4c6b8d26895556 SHA1: fffd910d04b313f388783cff4fa672dc47abceae SHA256: 304c222d3c2650a9218e3cd0c4be0f319860afe6a0d6a442a7d3c0ec963ba2c5 Description: Evolution MIME message handling library Homepage: http://projects.gnome.org/evolution/ Description-md5: 43ee52bbe1cd65f95cd1bd1abbdbcedd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libcamel1.2-dev Priority: optional Section: libdevel Installed-Size: 708 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libcamel-1.2-45 (= 3.10.4-0ubuntu1), libglib2.0-dev, libedataserver1.2-dev (= 3.10.4-0ubuntu1), libsqlite3-dev (>= 3.5), libnss3-dev, libnspr4-dev Filename: pool/main/e/evolution-data-server/libcamel1.2-dev_3.10.4-0ubuntu1_i386.deb Size: 72638 MD5sum: 38d296cf79b03d83c0108012474e2cb9 SHA1: 5525f54ecaeeddaf76aaaa8692a9d738357472a6 SHA256: 640bb5a3facdcde3bd9c3bf0c5a7398a6f806ac8db9b55af40dfa82241bb5c5c Description: Development files for libcamel Homepage: http://projects.gnome.org/evolution/ Description-md5: 24e22bc22b8cf416a7ef05c26c0d1807 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-dev Priority: optional Section: libdevel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra0 (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-dev_0.30-0ubuntu3_i386.deb Size: 6788 MD5sum: 8405f35e4d97d316a46d8aec5a1923ff SHA1: a103e2a470f29fc572b9cc96030493d34e73a7d9 SHA256: 1a6793b33ac82ddff36a8fa9d496b55af6a620ea6db444505abf7c08ff4f60ec Description: simple abstract interface for playing event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 33daa26374470334d81b5d41c69f51c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-doc Priority: optional Section: doc Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: all Source: libcanberra Version: 0.30-0ubuntu3 Filename: pool/main/libc/libcanberra/libcanberra-doc_0.30-0ubuntu3_all.deb Size: 24652 MD5sum: f9c1ae43b9951d697e1bbbed5d453e18 SHA1: b6563e30415b6d9fca572482489dd13f3faf7b45 SHA256: 5ca77c01c4d110bb856171431aa556ab2aac5b5ee075639336d65c62aa344d78 Description: simple abstract interface for playing event sounds - doc Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: a2055006d08141cee13dba3f7df7be75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gstreamer Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.3.6-6~), libcanberra0 (= 0.30-0ubuntu3), libglib2.0-0 (>= 2.32), libgstreamer1.0-0 (>= 1.0.0) Filename: pool/main/libc/libcanberra/libcanberra-gstreamer_0.30-0ubuntu3_i386.deb Size: 7710 MD5sum: a9c9b0bf3607669aec2d389db6085d74 SHA1: 75a8f5c4ec26ba486342bbad66b603a7e861c658 SHA256: 804b1c1f0596a554df7f7e25d8a3579ba851c8ae5610672efc4361228a3dfdf7 Description: GStreamer backend for libcanberra Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 6ed9b79f20215c7d94edabb80133434f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gstreamer-dbg Priority: extra Section: debug Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gstreamer (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-gstreamer-dbg_0.30-0ubuntu3_i386.deb Size: 18174 MD5sum: 581cde0e1cb6873c187731bd00cb756a SHA1: 9c6c476abcdb06216a3f735fdfef3890f3057a48 SHA256: e902b91e622486a5485d7acbcaa718ba0c9393d79fd404aae777897ccb8bcf67 Description: GStreamer libcanberra backend detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 5400bf2af6a3b426d6cef7a524c195dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk-common-dev Priority: optional Section: libdevel Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: all Source: libcanberra Version: 0.30-0ubuntu3 Replaces: libcanberra-gtk-dev (<< 0.26-1) Breaks: libcanberra-gtk-dev (<< 0.26-1) Filename: pool/main/libc/libcanberra/libcanberra-gtk-common-dev_0.30-0ubuntu3_all.deb Size: 8512 MD5sum: 63bb5a51c6512d8b4f6d94327980f82a SHA1: 214c94640ba24f91dcfdca6301a5a11bfb7ab3fa SHA256: d56185459f48ff3e0fd36a790aa0a162828b291342859a0dd16a6860a9dad63c Description: simple abstract interface for playing event sounds Multi-Arch: foreign Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: dfadcafa9c35e2f4291932f0df1611a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk-dev Priority: optional Section: libdevel Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk0 (= 0.30-0ubuntu3), libcanberra-dev (= 0.30-0ubuntu3), libgtk2.0-dev (>= 2.20), libx11-dev, libcanberra-gtk-common-dev Filename: pool/main/libc/libcanberra/libcanberra-gtk-dev_0.30-0ubuntu3_i386.deb Size: 1968 MD5sum: 6f57405f9f15a6103196971c252e28e2 SHA1: 1c7aa5cb7aa0a63eef7fa8079188c8f3b18d8c30 SHA256: 8e5acc878c332aebd964f519ba24ab3f9492e54c7495c7dc66ed05aced5ad423 Description: simple abstract interface for playing event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 9e052b90b219863489863bd5ebe0b6f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk-module Priority: optional Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.3.6-6~), libcanberra-gtk0 (>= 0.2), libglib2.0-0 (>= 2.32), libgtk2.0-0 (>= 2.24.5-4), libx11-6 Filename: pool/main/libc/libcanberra/libcanberra-gtk-module_0.30-0ubuntu3_i386.deb Size: 8868 MD5sum: 73953f486b70565d0f7c3f27cd15d5dd SHA1: 138b45bb740f3c70e056fca82912a367a82b4044 SHA256: 43bdbd84a1b58d7beeb1fcff7b41f348640f2a39028ee55cc31f8d655ac393bc Description: translates GTK+ widgets signals to event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 405adfc13d8fdb076cf1c2bffb2842ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-photography, ubuntu-gnome-desktop Package: libcanberra-gtk-module-dbg Priority: extra Section: libs Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk-module (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-gtk-module-dbg_0.30-0ubuntu3_i386.deb Size: 23822 MD5sum: 72995d1ac737a32d4d5284f7eeb53a38 SHA1: 28bb801afd69cb6941e0dc353647c8ebf0ff482e SHA256: 503b4ef1f32f3faaa3308b385cfbdfdb7ce993da0bb38372088f10e766541921 Description: libcanberra GtkModule detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 618dd90cfe9881b0bb35f4b09319fb5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk0 Priority: optional Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.3.6-6~), libcanberra0 (>= 0.12), libglib2.0-0 (>= 2.32), libgtk2.0-0 (>= 2.24.0), libx11-6 Pre-Depends: multiarch-support Recommends: libcanberra-gtk-module Filename: pool/main/libc/libcanberra/libcanberra-gtk0_0.30-0ubuntu3_i386.deb Size: 7584 MD5sum: a366f2f4ef8b0034e1c028c9c6c3d6bc SHA1: 0739abf2b358b66ed52130fe9507272167663608 SHA256: 92f13fbde1f7edc9daec15bc9c3ce5bbd47fefa7fa59ee9831e87bddb22ca92a Description: GTK+ helper for playing widget event sounds with libcanberra Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 341328ccbf871bdf01238ff50e7bd58f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-photography, ubuntu-gnome-desktop Package: libcanberra-gtk0-dbg Priority: extra Section: libs Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk0 (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-gtk0-dbg_0.30-0ubuntu3_i386.deb Size: 18782 MD5sum: eca5a385f1c1a25d96aebd2af26f0973 SHA1: 446f193735454bc577cc90d7147b31a9029e1e55 SHA256: f58f3a7fafd2e689f36fecdda7ab4624cea0d6c524f22f9fd508e6d90502d788 Description: libcanberra-gtk libraries detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 8e5c2972e04d6c415ff3fc83608884de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk3-0 Priority: optional Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.3.6-6~), libcanberra0 (>= 0.12), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.0.0), libx11-6 Pre-Depends: multiarch-support Recommends: libcanberra-gtk3-module Filename: pool/main/libc/libcanberra/libcanberra-gtk3-0_0.30-0ubuntu3_i386.deb Size: 7546 MD5sum: 7519a0039c0797f81b20679ee73bfe81 SHA1: d8e38af340ed57ff940602eeb60b260a20812d3d SHA256: 3172dad2d39fdac6be634111b7ffce05d5370747857d421d07075a306e551c28 Description: GTK+ 3.0 helper for playing widget event sounds with libcanberra Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 28d6a7626596fa7a0b31bcefc4258694 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcanberra-gtk3-0-dbg Priority: extra Section: debug Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk3-0 (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-gtk3-0-dbg_0.30-0ubuntu3_i386.deb Size: 15326 MD5sum: aa3172c7b81667a3c40b3cb7c24e7176 SHA1: 2d21b9ff9e5cbed204ae691fca154e635f83fa2b SHA256: 96efbf38338f20294dc633211057d2a223ed2cadaa25b7c7107644fe66648289 Description: libcanberra-gtk libraries detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: cbbbc0152e4e505c3a514d927bacd7a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk3-dev Priority: optional Section: libdevel Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk3-0 (= 0.30-0ubuntu3), libcanberra-dev (= 0.30-0ubuntu3), libcanberra-gtk-common-dev, libgtk-3-dev, libx11-dev Filename: pool/main/libc/libcanberra/libcanberra-gtk3-dev_0.30-0ubuntu3_i386.deb Size: 1976 MD5sum: 5b164c129933608bdfd5fe15c760d6bd SHA1: a194cb4f01e11669a4fc8006e3ec2f92f139ab29 SHA256: 11e229e9b00b9390bb0e4a3e50c18adda539371ca65c28fde63197273815afe9 Description: simple abstract interface for playing event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 3b72bc87209dcf7255d86a9cc09eb6d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-gtk3-module Priority: extra Section: debug Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.3.6-6~), libcanberra-gtk3-0 (>= 0.25), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.2.2-3), libx11-6 Filename: pool/main/libc/libcanberra/libcanberra-gtk3-module_0.30-0ubuntu3_i386.deb Size: 9002 MD5sum: 1a255a6abdace0c2ab6abbce0848e1bd SHA1: 6a445937e2e60e0772e2e7b83afb37009ac6ec40 SHA256: 1a4e0d9b057e76df9f4ac306e7a73de626dea9201df346e4c94b65f0a9831a88 Description: translates GTK3 widgets signals to event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 58c5135ab21e644eaa3987ff9a609e4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcanberra-gtk3-module-dbg Priority: extra Section: debug Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-gtk3-module (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-gtk3-module-dbg_0.30-0ubuntu3_i386.deb Size: 20122 MD5sum: ed1c9ad4f3ea4abae9d7307b7b0d35e7 SHA1: c7037ccb39f0781f7396415afad295129c61269b SHA256: 058c69e6dfe9a270bb4fad0ead531da2294b2cd5fcc5ba6b1018a777f786cc4f Description: libcanberra GtkModule detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 3a548785c55b42f735d5b2711622a6ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra-pulse Priority: optional Section: libdevel Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libc6 (>= 2.3.6-6~), libcanberra0 (= 0.30-0ubuntu3), libpulse0 (>= 1:0.99.1), pulseaudio Filename: pool/main/libc/libcanberra/libcanberra-pulse_0.30-0ubuntu3_i386.deb Size: 10832 MD5sum: 4a595aa7e9c5920eb492abfabb078488 SHA1: 7f918012bf3a1fb62cd88fa63f21c51b5fa26448 SHA256: 65dbecfc0a571dbb6de8756888d7ecc88772afa053fcfbb5105d8379d9dca6bb Description: PulseAudio backend for libcanberra Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 4d30b366834b96439df096fd4f8db59b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libcanberra-pulse-dbg Priority: extra Section: debug Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra-pulse (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra-pulse-dbg_0.30-0ubuntu3_i386.deb Size: 21378 MD5sum: b6aed3a5fed16849bd8010e8ecaa09b3 SHA1: dbe84d9f3d708391756d46919cfb3697012524a9 SHA256: affa52fde51690fcb2e5ad08f296a028ec0cd64e6840a902deaffa1904415b69 Description: PulseAudio libcanberra backend detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: c6932573dc901519ad80f84abd58e016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcanberra0 Priority: optional Section: libs Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.7), libltdl7 (>= 2.4.2), libtdb1 (>= 1.2.7+git20101214), libvorbisfile3 (>= 1.1.2), sound-theme-freedesktop Pre-Depends: multiarch-support Suggests: libcanberra-gtk0, libcanberra-pulse Filename: pool/main/libc/libcanberra/libcanberra0_0.30-0ubuntu3_i386.deb Size: 34990 MD5sum: 55b9c20b4f6673869e2c75bb28723dee SHA1: 2b07f350c986c67f791730fbf5da5e60a1ce09d0 SHA256: d0c52d56bc8f761b7c7b08a33c5ee544e56b338f570fd596124969ddaa378339 Description: simple abstract interface for playing event sounds Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: cddaf8d318137467db05076564b9e1fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcanberra0-dbg Priority: extra Section: libs Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Marc-Andre Lureau Architecture: i386 Source: libcanberra Version: 0.30-0ubuntu3 Depends: libcanberra0 (= 0.30-0ubuntu3) Filename: pool/main/libc/libcanberra/libcanberra0-dbg_0.30-0ubuntu3_i386.deb Size: 60586 MD5sum: 6d57a63370f8527b4cdb8836474f20a9 SHA1: 40445c4d5e3b6727f17c8d4178ed1407349440a8 SHA256: 6abc70bef7d2c3c88e7d501231923b460fea3d4f5fb92aa46544a31635534501 Description: libcanberra libraries detached debugging symbols Multi-Arch: same Homepage: http://0pointer.de/lennart/projects/libcanberra/ Description-md5: 78e8bb06d92e73a48ea54757e983614c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcap-dev Priority: optional Section: libdevel Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Werner Architecture: i386 Source: libcap2 Version: 1:2.24-0ubuntu2 Replaces: libcap2-dev Provides: libcap2-dev Depends: libcap2 (= 1:2.24-0ubuntu2) Suggests: manpages-dev Conflicts: libcap2-dev Filename: pool/main/libc/libcap2/libcap-dev_2.24-0ubuntu2_i386.deb Size: 22062 MD5sum: f0ca662888d05fdf65deacfaea7d0ec1 SHA1: a6659bd393bc0cf2c3dfbc93e8ab7e411ad17843 SHA256: 91130524083f85950e33907e395d54ad258ceface485c48a3a2a6176869aaef7 Description: development libraries and header files for libcap2 Multi-Arch: same Homepage: http://sites.google.com/site/fullycapable/ Description-md5: d69347927c96a3f49a38efab9a73d32d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcap-ng-dev Priority: optional Section: libdevel Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: i386 Source: libcap-ng Version: 0.7.3-1ubuntu2 Depends: libcap-ng0 (= 0.7.3-1ubuntu2) Filename: pool/main/libc/libcap-ng/libcap-ng-dev_0.7.3-1ubuntu2_i386.deb Size: 20894 MD5sum: ba71e7afebe8b770197a5b3039c6c18a SHA1: 364e0c65f362f0bd61f412f2bbaa21bf2063762f SHA256: a95003d200ae4177531f1488c5ff4c08e0e5c7cfad4043dd97e434370bd9603a Description: Development and header files for libcap-ng Homepage: http://people.redhat.com/sgrubb/libcap-ng Description-md5: 64bc86cc1334255a166399bd218d1df6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcap-ng0 Priority: standard Section: libs Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: i386 Source: libcap-ng Version: 0.7.3-1ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libc/libcap-ng/libcap-ng0_0.7.3-1ubuntu2_i386.deb Size: 9660 MD5sum: 29d0470ce3f7dfc846fd603728b5b264 SHA1: 0d9a5c9e6420bc6a3197953c7438022edf5cffec SHA256: 55188c8d43b2addb0296cccbdc7d6cfd027528d0790ed7c8f7e9a5a1ed66331c Description: An alternate POSIX capabilities library Homepage: http://people.redhat.com/sgrubb/libcap-ng Description-md5: a9611912ade327f38052faa7edd07603 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libcap2 Priority: required Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Werner Architecture: i386 Version: 1:2.24-0ubuntu2 Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Filename: pool/main/libc/libcap2/libcap2_2.24-0ubuntu2_i386.deb Size: 10766 MD5sum: 9f35055c98376d4a373e1ae857b16331 SHA1: 03afcd7cc8bd0a7f504b6219f3515d67a110b09c SHA256: bd7270a16446bb8e531bb00623c779f8ccbb42b9ee6321021547f082876df76a Description: support for getting/setting POSIX.1e capabilities Multi-Arch: same Homepage: http://sites.google.com/site/fullycapable/ Description-md5: 70bc0599e63caf0281090292b349ac9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libcap2-bin Priority: important Section: utils Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Werner Architecture: i386 Source: libcap2 Version: 1:2.24-0ubuntu2 Depends: libc6 (>= 2.3.4), libcap2 (>= 2.10) Recommends: libpam-cap Suggests: libcap-dev Conflicts: libcap-bin Filename: pool/main/libc/libcap2/libcap2-bin_2.24-0ubuntu2_i386.deb Size: 15522 MD5sum: 22599a9289c5a7a4010ef06a982303cf SHA1: 035e38dfe849e6d8ff57bf96475ca6d52f26dbcc SHA256: fcb64330ca10248c37e8af30cbee2109b3b45b0d8ac998b23783aa3765b751e7 Description: basic utility programs for using capabilities Homepage: http://sites.google.com/site/fullycapable/ Description-md5: 91b6887d53faf2a601809e4df7e37739 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libcapture-tiny-perl Priority: optional Section: perl Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.24-1 Depends: perl Filename: pool/main/libc/libcapture-tiny-perl/libcapture-tiny-perl_0.24-1_all.deb Size: 18600 MD5sum: 5d3c7c469ea44feedf42467892b08c5c SHA1: 5be0455ebc684c3b3136829241f282b7c7b1d5c9 SHA256: bfc29c0550e279972076c07b32e1c98806daf7ed6559b2669892a1e5c449cc16 Description: module to capture STDOUT and STDERR Homepage: https://metacpan.org/release/Capture-Tiny/ Description-md5: 5c1326e5886eb960290e2887315c0062 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcarp-clan-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.04-1 Depends: perl Filename: pool/main/libc/libcarp-clan-perl/libcarp-clan-perl_6.04-1_all.deb Size: 14144 MD5sum: ae3644d49e5550144911a4a33bb1a5fd SHA1: 20c8380d9c86c71b83ad4a072d0b9f9a19756ecb SHA256: f2f2213d55f659dfe76e58a4f941521d8d2ac3eb0b20990311d948d06fe13266 Description: Perl enhancement to Carp error logging facilities Homepage: http://search.cpan.org/dist/Carp-Clan/ Description-md5: e5a6eb72f36e93a94e8c3ddae4f4e21c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libccolamd2.8.0 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libccolamd2.8.0_4.2.1-3ubuntu1_i386.deb Size: 16650 MD5sum: ddc90b66f00d4c9324ca7330f7b97e7a SHA1: 830fede69225b5dba597376c291f3d9ce5a357a3 SHA256: f4c4a4dc35e0a5bb4d88e07e75b3609fe98e057f1bfc3168835a7765dbeb3b92 Description: constrained column approximate library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 5f3652d2b70c784dca41724ec361ac90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libcdb-dev Priority: optional Section: libdevel Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Michael Tokarev Architecture: i386 Source: tinycdb Version: 0.78 Replaces: tinycdb (<< 0.75) Depends: libcdb1 (= 0.78) Recommends: tinycdb Filename: pool/main/t/tinycdb/libcdb-dev_0.78_i386.deb Size: 22140 MD5sum: 5cad2d065cc25dd68fc34ca0711b010c SHA1: 76c22cb7c7d1a61dd358211b4765eb71b499cf1f SHA256: a6fb59ab95662b36b4f3afa8044c3e16f4702fc357790ec8ff1ba5d62ecf93b3 Description: development files for constant databases (cdb) Description-md5: 99a3c220b50d0876b5c71d671a218cb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdb1 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Michael Tokarev Architecture: i386 Source: tinycdb Version: 0.78 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/t/tinycdb/libcdb1_0.78_i386.deb Size: 13428 MD5sum: c46f934a5d3eabc69f68d49983a21e1d SHA1: 737581ff9f45f591ecde3082bc0c709a37118187 SHA256: 64f63c9ca6582bbc79563dc39860158fcfb71ac14a6db6abcaeeec199eb62eb2 Description: shared library for constant databases (cdb) Multi-Arch: same Description-md5: 49231186403d20807df971e388513617 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcdio-cdda-dev Priority: optional Section: libdevel Installed-Size: 204 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: i386 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libcdio-cdda1 (= 0.83-4.1ubuntu1), libcdio-dev, libc6-dev | libc-dev Filename: pool/main/libc/libcdio/libcdio-cdda-dev_0.83-4.1ubuntu1_i386.deb Size: 18824 MD5sum: 9d817d472a2cc7101b08638a9c189ea3 SHA1: 48786d18eb3718ab4441625c850a4068a2e2dffb SHA256: db140fbfe0c7627dbb32a0fa4351d15dda711dc3fcc79b4535771a5cd9dc1d29 Description: library to read and control digital audio CDs (development files) Homepage: http://www.gnu.org/software/libcdio/ Description-md5: cc879d65dd0f0f2b5cf3ad5083cd91c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdio-cdda1 Priority: optional Section: libs Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: i386 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libc6 (>= 2.4), libcdio13 (>= 0.83) Filename: pool/main/libc/libcdio/libcdio-cdda1_0.83-4.1ubuntu1_i386.deb Size: 15138 MD5sum: a91476324176114581c60db28d85b604 SHA1: 2d95bc82f5c4699379f44faf3b01a93e697841ae SHA256: 0c4ab6debc19a2856c805928658a4ff6d8bb42a729a19e9ea17febee370decf3 Description: library to read and control digital audio CDs Homepage: http://www.gnu.org/software/libcdio/ Description-md5: 37e67b059e05685fe9088e224253ecdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libcdio-dev Priority: optional Section: devel Installed-Size: 611 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: i386 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libcdio13 (= 0.83-4.1ubuntu1), libc6-dev | libc-dev, dpkg (>= 1.15.4) | install-info Filename: pool/main/libc/libcdio/libcdio-dev_0.83-4.1ubuntu1_i386.deb Size: 151248 MD5sum: e71a11b5ba2a0e931b2447218693be9c SHA1: 3f849e46c1276ae39624b8246deed18d3ddcff51 SHA256: f4fdb32d7fdd8ead6ab56e88f86d1533b5727be4e58d71a098961b5b2fadbe48 Description: library to read and control CD-ROM (development files) Homepage: http://www.gnu.org/software/libcdio/ Description-md5: 69075d5ba09a07334affe44f52f94b6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdio-paranoia-dev Priority: optional Section: libdevel Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: i386 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libcdio-paranoia1 (= 0.83-4.1ubuntu1), libcdio-cdda-dev, libcdio-dev, libc6-dev | libc-dev Filename: pool/main/libc/libcdio/libcdio-paranoia-dev_0.83-4.1ubuntu1_i386.deb Size: 17750 MD5sum: d6f7f9416dbb7ddbfc0e9411ac3acf02 SHA1: 0573c6108822d98905ea9048f3543ddcd8d40d62 SHA256: 1015fa6423911cf517ad4071762ed42896aae87417f7f23a24b9c3c22cbaf035 Description: library to read digital audio CDs with error correction (development files) Homepage: http://www.gnu.org/software/libcdio/ Description-md5: f83a8c84a36846105e3494b5dea4244c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdio-paranoia1 Priority: optional Section: libs Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: i386 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libc6 (>= 2.1.3), libcdio-cdda1 (>= 0.83), libcdio13 (>= 0.83) Filename: pool/main/libc/libcdio/libcdio-paranoia1_0.83-4.1ubuntu1_i386.deb Size: 15526 MD5sum: 98ae82dc95af17c1e2fdddbbc9aead23 SHA1: 1459ee3cfb59e253c9a7a3dfcbe75ed516cba8c3 SHA256: 93d03b9fce153e99e926fe9b674b36bd181db3cf8e597b7fca13a8bd4e88363b Description: library to read digital audio CDs with error correction Homepage: http://www.gnu.org/software/libcdio/ Description-md5: cc3435321a161f5f503f93431943251b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libcdio13 Priority: optional Section: libs Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: i386 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libc6 (>= 2.4) Filename: pool/main/libc/libcdio/libcdio13_0.83-4.1ubuntu1_i386.deb Size: 55274 MD5sum: 32427a925bd5142fbfff2970e0da4747 SHA1: 3b7d91761ef76058c03fda6365e589a968b3497d SHA256: f010e9ed65d8c46d2a7440526d84f9ff911c49063d02df91d631a87821a4831c Description: library to read and control CD-ROM Homepage: http://www.gnu.org/software/libcdio/ Description-md5: cfd26896ddfcc94bc6dec5a0e3cefbf9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libcdparanoia-dev Priority: optional Section: libdevel Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: i386 Source: cdparanoia Version: 3.10.2+debian-11 Provides: libcdparanoia0-dev Depends: libcdparanoia0 (= 3.10.2+debian-11) Filename: pool/main/c/cdparanoia/libcdparanoia-dev_3.10.2+debian-11_i386.deb Size: 61590 MD5sum: 1ffd9ec43c9a4654b775befaf3198c57 SHA1: 46afc8f5a051efb492a717dbab42f566b9b96e36 SHA256: 8259fd3746bbe53743ef579d368be356b96d09e0cae4e26eba3800d8305d9b03 Description: audio extraction tool for sampling CDs (development) Multi-Arch: same Homepage: http://www.xiph.org/paranoia/ Description-md5: acec99a4d550d44b0eb2da3c75a21736 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdparanoia0 Priority: optional Section: sound Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Optical Media Tools Team Architecture: i386 Source: cdparanoia Version: 3.10.2+debian-11 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/c/cdparanoia/libcdparanoia0_3.10.2+debian-11_i386.deb Size: 62838 MD5sum: 357b1b0fddd4bb5ca06a66a0ab993893 SHA1: 23a3b6c10fbd2e9ef73d39822f5f9c5bdb4a63cc SHA256: 41b54ea9fcbc8b6c23b6c7637944f4fac99800b5fb5a73d94dbb646351e2e0a3 Description: audio extraction tool for sampling CDs (library) Multi-Arch: same Homepage: http://www.xiph.org/paranoia/ Description-md5: 9c2625360224a2ad47519f64ce1f1f5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcdr-0.0-0 Priority: optional Section: libs Installed-Size: 896 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libcdr Version: 0.0.15-1ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), liblcms2-2 (>= 2.2+git20110628), libstdc++6 (>= 4.4.0), libwpd-0.9-9, zlib1g (>= 1:1.1.4) Filename: pool/main/libc/libcdr/libcdr-0.0-0_0.0.15-1ubuntu1_i386.deb Size: 371106 MD5sum: 1a1eb36c610f49fbb2bfecc8fda9379d SHA1: d89f74f2262d3a2789b11072013101b6c18f8eb6 SHA256: ae227b3f1403785c2bd09f56ce0a700c99d98ad3a2e614cb832c7e169fec42a4 Description: library for reading and converting Corel DRAW files Homepage: http://freedesktop.org/wiki/Software/libcdr Description-md5: 4762a6ae7e1d1806578fd6a25e9711c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libcdr-dev Priority: optional Section: libdevel Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libcdr Version: 0.0.15-1ubuntu1 Depends: libcdr-0.0-0 (= 0.0.15-1ubuntu1), liblcms2-dev, libwpd-dev (>= 0.9.0), libwpg-dev (>= 0.2.0), zlib1g-dev Filename: pool/main/libc/libcdr/libcdr-dev_0.0.15-1ubuntu1_i386.deb Size: 3814 MD5sum: 404892610a8c37d7a01c5e03f9ecca8e SHA1: fed87b9f7f2a178731ddce3c63ba66e0866dd3b0 SHA256: 34e4bda408417131818703c1aeee475583d0f50639331947cd9decc1a7ae6368 Description: library for reading and converting Corel DRAW files -- development Homepage: http://freedesktop.org/wiki/Software/libcdr Description-md5: e2c8541fd0b2625eecd3c470db2019a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdr-doc Priority: optional Section: doc Installed-Size: 7034 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libcdr Version: 0.0.15-1ubuntu1 Filename: pool/main/libc/libcdr/libcdr-doc_0.0.15-1ubuntu1_all.deb Size: 507990 MD5sum: 785667f0d5db6ec566e6ceee854524dc SHA1: 7066f38fac39e48158f1dcdeccf53b21a1b5515f SHA256: 726726133abd7cf7ae4d874a3c0d907c9480e8a2635eb5cb20ab82f0860d2c48 Description: library for reading and converting Corel DRAW files -- documentation Homepage: http://freedesktop.org/wiki/Software/libcdr Description-md5: 521f5a1d55246aaf7ad691d6113bfffe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcdt5 Priority: optional Section: libs Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: i386 Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.1.3) Conflicts: libgraphviz4 Filename: pool/main/g/graphviz/libcdt5_2.36.0-0ubuntu3_i386.deb Size: 22566 MD5sum: 24c2f0cc369e3409af9906c601550583 SHA1: 7b1c45368d53a8401ed0a29149d05d3b024d4e32 SHA256: 82f766e4eadede3523e4b33a35317e51d48a5dbab5847812266ef4e97142777d Description: rich set of graph drawing tools - cdt library Homepage: http://www.graphviz.org/ Description-md5: d9902443b1aa2da91da7ca4482e5eb20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-audio Package: libcephfs-dev Priority: optional Section: libdevel Installed-Size: 152954 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Replaces: libceph-dev, libceph1-dev, libcephfs1-dev Depends: libcephfs1 (= 0.79-0ubuntu1) Conflicts: libceph-dev, libceph1-dev, libcephfs1-dev Filename: pool/main/c/ceph/libcephfs-dev_0.79-0ubuntu1_i386.deb Size: 24255932 MD5sum: b874777997ed4d492993dd020fd74b55 SHA1: c9bc6b0f5a0cf09bf30859dc770fa1195708a6b3 SHA256: b66f2ca61c01392bf512e5b5bcd0cb50d1cc812ea8c7ee16ec57819018577ba7 Description: Ceph distributed file system client library (development files) Homepage: http://ceph.com/ Description-md5: 6b03c162d6b2cd6497a86ae380717147 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcephfs-jni Priority: optional Section: libs Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Depends: libcephfs1 (= 0.79-0ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Filename: pool/main/c/ceph/libcephfs-jni_0.79-0ubuntu1_i386.deb Size: 30858 MD5sum: 728b6d161105ab560508ba2c6bc2e2e1 SHA1: df1908f6a4931a428c7779289acf5f203c2056d8 SHA256: 85129c78548f43557a393cbb5dc40d8472421390371e2c54e8d09255805f56c4 Description: Java Native Interface library for CephFS Java bindings Homepage: http://ceph.com/ Description-md5: eeccae7ad4653bc059b325a5ec4ddd58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcephfs-jni-dbg Priority: extra Section: debug Installed-Size: 303 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Depends: libcephfs-jni (= 0.79-0ubuntu1) Filename: pool/main/c/ceph/libcephfs-jni-dbg_0.79-0ubuntu1_i386.deb Size: 246620 MD5sum: c38c1c97d48cb61aec818a0d08f34488 SHA1: 622bfd15063a55053fb61d81dfcb2ec85e99fbdd SHA256: 32930b2170ef42ddb8410efd65fa87d8619c46514d884684eba3a6777f77c115 Description: Debugging symbols for libcephfs-jni Homepage: http://ceph.com/ Description-md5: b463ee0275120595e8db9a2d2d079cf8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcephfs1 Priority: optional Section: libs Installed-Size: 5951 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Replaces: libceph, libceph1, libcephfs Depends: libboost-system1.54.0, libboost-thread1.54.0, libc6 (>= 2.9), libgcc1 (>= 1:4.1.1), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Conflicts: libceph, libceph1, libcephfs Filename: pool/main/c/ceph/libcephfs1_0.79-0ubuntu1_i386.deb Size: 1505642 MD5sum: f3ee468670b0f48fa9f2e83cc311a2cb SHA1: 8afc750b89aa1f1d4973cd2e631355fe974845f5 SHA256: d3f8fe05700a442aa347b2c94a66ed40df93350cf9839175ee3f8fd5fa4faf98 Description: Ceph distributed file system client library Homepage: http://ceph.com/ Description-md5: 02d5e7983127037e5b5e5e07dea2a6e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcephfs1-dbg Priority: extra Section: debug Installed-Size: 22498 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Replaces: libceph1-dbg Depends: libcephfs1 (= 0.79-0ubuntu1) Conflicts: libceph1-dbg Filename: pool/main/c/ceph/libcephfs1-dbg_0.79-0ubuntu1_i386.deb Size: 22832098 MD5sum: 4f48d5f8d683a3fddf568062a8a85614 SHA1: 19a836fd599af30629dd2bd4f3d6b408bccdbf11 SHA256: cbe6e1115d09e9906205fe1ae508fa5bb893a19f595886a23ae2db2f41c33688 Description: debugging symbols for libcephfs1 Homepage: http://ceph.com/ Description-md5: ef23abe3fb9706def734dae7e4f8e64f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcfg-dev Priority: optional Section: libdevel Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libcfg6 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libcfg-dev_2.3.3-1ubuntu1_i386.deb Size: 8046 MD5sum: 1a6ed7b8246c38942df5c0b62a2cee63 SHA1: 6cd1099028e480275c30df349fdd9554cbc60417 SHA256: 179b6d4e5c3db5a72d85479ccbce8ab1f8dadc0b61ba9e5a74dace79bb416361 Description: Standards-based cluster framework, Cfg devel files Description-md5: 8368430935fc23defcffcc2f2784d781 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcfg6 Priority: optional Section: libs Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.4), libcorosync-common4 (>= 2.3.3), libqb0 Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libcfg6_2.3.3-1ubuntu1_i386.deb Size: 7912 MD5sum: 62f637536ac831e1f03f4eb15963c3c4 SHA1: 8dad444e746914cfa9e4fd2030e3f5cd5cad82cf SHA256: 78661b87431978c75d775ac67a6ef6361c6b3e0b27e2b76396d0f81a62ce53b2 Description: Standards-based cluster framework, Cfg library Description-md5: d2e0d05de0acab0cdc443672b08301eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcglib-java Priority: optional Section: java Installed-Size: 830 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: cglib Version: 2.2.2+dfsg-5 Replaces: libcglib2.1-java Provides: libcglib2.1-java Depends: libasm3-java Conflicts: libcglib2.1-java Filename: pool/main/c/cglib/libcglib-java_2.2.2+dfsg-5_all.deb Size: 710300 MD5sum: 47001482dab20558c5a1d17b509d0ff9 SHA1: 1599d37358e6c7b6c2f2223a90f97ed3508d202b SHA256: 02080a426aada64e0fac2f9463334d7fa3de61a7a84c598d4fcd0c7d05a42856 Description: code generation library for Java Homepage: http://cglib.sourceforge.net Description-md5: a256be95c96c00f4ed2b5abb30d71453 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcglib-java-doc Priority: optional Section: doc Installed-Size: 2123 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: cglib Version: 2.2.2+dfsg-5 Suggests: libcglib-java Filename: pool/main/c/cglib/libcglib-java-doc_2.2.2+dfsg-5_all.deb Size: 158016 MD5sum: 32b5b21a9a142a40f47e64429822a01c SHA1: 15975b18363141299003a1a3e053a7bcacb6c43e SHA256: 055112af08159851ab0478010bb503bbab9e3e0480f7e39263fa664a6514a3c5 Description: code generation library for Java - documentation Homepage: http://cglib.sourceforge.net Description-md5: 782423f4e2f08258c01d5e58b7ffca69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcgmanager-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Serge Hallyn Architecture: i386 Source: cgmanager Version: 0.24-0ubuntu5 Depends: libcgmanager0 (= 0.24-0ubuntu5), libdbus-1-dev, libnih-dbus-dev Filename: pool/main/c/cgmanager/libcgmanager-dev_0.24-0ubuntu5_i386.deb Size: 3858 MD5sum: 448fe1457a70c566d36c1d8dbee29bc0 SHA1: 6428a919d9aed62555637f24470463bdb5721144 SHA256: 3ea9379be5df24f1fc64463bce84e53b83ef17861b3ac8ebb538857b432b72db Description: Central cgroup manager daemon (dev) Multi-Arch: same Homepage: http://cgmanager.linuxcontainers.org/ Description-md5: 12f79f20c7c5ba65465769cf23c10653 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcgmanager0 Priority: required Section: admin Installed-Size: 148 Maintainer: Serge Hallyn Architecture: i386 Source: cgmanager Version: 0.24-0ubuntu5 Depends: libc6 (>= 2.1.3), libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) Filename: pool/main/c/cgmanager/libcgmanager0_0.24-0ubuntu5_i386.deb Size: 23960 MD5sum: fd769ec69b38cce8792ae57b6ad2f1f6 SHA1: 38b69215fc4112357d2ab3667a81325eaf1eee90 SHA256: 349f7eb9268d29deac39bd8998afd260b121eab433d4940d7a8cfeb5c316b5f3 Description: Central cgroup manager daemon (client library) Multi-Arch: same Homepage: http://cgmanager.linuxcontainers.org/ Description-md5: ccb0bd9b73bea53fd951e4e6f59842e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libcgraph6 Priority: optional Section: libs Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: i386 Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.7), libcdt5 Conflicts: libgraphviz4 Filename: pool/main/g/graphviz/libcgraph6_2.36.0-0ubuntu3_i386.deb Size: 43792 MD5sum: 8c640dc8da21c697a7dc50abab2d6733 SHA1: 1d6cbfca6f6e359a5c116427d39ce536597fe39e SHA256: 041acc70df20de43e42313fc29269c800ee6dc396f71609586d79f557a4843ca Description: rich set of graph drawing tools - cgraph library Homepage: http://www.graphviz.org/ Description-md5: 3c0eff44ae2d3aa5e19d60a4384485eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-audio Package: libchart-perl Priority: optional Section: perl Installed-Size: 2010 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.4.6-1 Depends: perl, libgd-gd2-perl | libgd-gd2-noxpm-perl Filename: pool/main/libc/libchart-perl/libchart-perl_2.4.6-1_all.deb Size: 922686 MD5sum: 2c1fb56be2142020d9c34da221de0fcc SHA1: 21ef9c7ec68364d9ed41741ebed61625ef101da6 SHA256: f27e552554ca9a255617f425cd004a7f49d41d0e5398c6ca3578772ad9c99af5 Description: Chart library for Perl Homepage: https://metacpan.org/release/Chart/ Description-md5: 51f1d5392546d63db20afa344b08a11c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcheese-dev Priority: optional Section: libdevel Installed-Size: 353 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: cheese Version: 3.10.2-0ubuntu2 Replaces: libcheese-gtk-dev (<< 3.0.1-1) Depends: libcheese7 (= 3.10.2-0ubuntu2), gir1.2-cheese-3.0 (= 3.10.2-0ubuntu2), libglib2.0-dev (>= 2.28.0), libclutter-1.0-dev (>= 1.10.0), libgstreamer1.0-dev (>= 0.11.0), libgstreamer-plugins-base1.0-dev (>= 0.11.0), libclutter-gst-2.0-dev (>= 1.9.0), libgdk-pixbuf2.0-dev Suggests: libcheese-doc Breaks: libcheese-gtk-dev (<< 3.0.1-1) Filename: pool/main/c/cheese/libcheese-dev_3.10.2-0ubuntu2_i386.deb Size: 16972 MD5sum: a039e63f823932e4b3e712c280374812 SHA1: d68815316bef91f043fe995427cd98da064b0f0e SHA256: cf7ab2a4905092f430d37b4f8475ebfce6ba2bb44b4fdbb22d4548754bfd65da Description: tool to take pictures and videos from your webcam - base dev Homepage: http://projects.gnome.org/cheese/ Description-md5: 97bf1923e096fe62cf8744df6670dd07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcheese-doc Priority: optional Section: doc Installed-Size: 671 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: cheese Version: 3.10.2-0ubuntu2 Replaces: libcheese-gtk-dev (<< 3.6.1-1) Suggests: devhelp Breaks: libcheese-gtk-dev (<< 3.6.1-1) Filename: pool/main/c/cheese/libcheese-doc_3.10.2-0ubuntu2_all.deb Size: 211470 MD5sum: 3dc300bd4f6b3da4ad91c1a2b6eb636f SHA1: 97c85491896cda3fa0bc29fe5a1381e626ebaeac SHA256: a2060dfe950aafd7383ecdad24d34fe0bf40c50c3ad5a9afa22a298bc5939e23 Description: tool to take pictures and videos from your webcam - documentation Homepage: http://projects.gnome.org/cheese/ Description-md5: e7e5a84dea3e28141102c32189f08a96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcheese-gtk-dev Priority: optional Section: libdevel Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: cheese Version: 3.10.2-0ubuntu2 Depends: libcheese-gtk23 (= 3.10.2-0ubuntu2), libcheese-dev (= 3.10.2-0ubuntu2), libglib2.0-dev (>= 2.28.0), libgtk-3-dev (>= 3.4.4), libgstreamer1.0-dev (>= 0.11.0), libgstreamer-plugins-base1.0-dev (>= 0.11.0), libclutter-gtk-1.0-dev (>= 0.91.8), libcanberra-gtk3-dev (>= 0.26) Suggests: libcheese-doc Filename: pool/main/c/cheese/libcheese-gtk-dev_3.10.2-0ubuntu2_i386.deb Size: 10724 MD5sum: 55af28ce257f1f6b17c540f0b3f9771b SHA1: b8a66863e67d6d8ac0d3891f8f0c49267a6d8781 SHA256: 5a6fb8dab5fca678bbc383339623921904c8a636361db92663d6cb872a23ee45 Description: tool to take pictures and videos from your webcam - widgets dev Homepage: http://projects.gnome.org/cheese/ Description-md5: e13b89c841b34de912019e4e459cd320 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcheese-gtk23 Priority: optional Section: libs Installed-Size: 312 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: cheese Version: 3.10.2-0ubuntu2 Depends: libc6 (>= 2.3.6-6~), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcheese7 (>= 3.4.0), libclutter-1.0-0 (>= 1.13.2), libclutter-gtk-1.0-0 (>= 0.91.8), libcogl15 (>= 1.15.8), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.4.4), libx11-6, cheese-common (= 3.10.2-0ubuntu2) Pre-Depends: multiarch-support Filename: pool/main/c/cheese/libcheese-gtk23_3.10.2-0ubuntu2_i386.deb Size: 24854 MD5sum: 74fe1d0b14efb65dcd3680b682871be8 SHA1: 06feca1faa1e452b045df34217ed4c89bdc835c5 SHA256: b8c502b70ed80b5d07c6c385c301661ad09ac8f9b8fde159a7f6d8876c7ddf4c Description: tool to take pictures and videos from your webcam - widgets Multi-Arch: same Homepage: http://projects.gnome.org/cheese/ Description-md5: 8bb60b9097c6aeb14d65a7555ae93d33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libcheese7 Priority: optional Section: libs Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: cheese Version: 3.10.2-0ubuntu2 Depends: libc6 (>= 2.4), libclutter-gst-2.0-0 (>= 0.10.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgudev-1.0-0 (>= 146), cheese-common (= 3.10.2-0ubuntu2), gstreamer1.0-clutter, gstreamer1.0-plugins-base (>= 0.11.0), gstreamer1.0-plugins-good (>= 0.11.0), gstreamer1.0-x Pre-Depends: multiarch-support Filename: pool/main/c/cheese/libcheese7_3.10.2-0ubuntu2_i386.deb Size: 80750 MD5sum: 1211a4e3dc5290249df47f53811feebe SHA1: e09ebea05616fcda580384f79efb877aef2cfb1b SHA256: fa5a76ae1fe31bacb8f12e349b5f4b15b2e8a53dac4fc58942147fba4b074bf8 Description: tool to take pictures and videos from your webcam - base library Multi-Arch: same Homepage: http://projects.gnome.org/cheese/ Description-md5: e56ab6b768d752b78de0633ed49e3dc4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libchewing3 Priority: optional Section: libs Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: libchewing Version: 0.3.5-4build1 Provides: libchewing Depends: libchewing3-data (= 0.3.5-4build1), libc6 (>= 2.8) Pre-Depends: multiarch-support Breaks: scim-chewing (<< 0.3.3) Filename: pool/main/libc/libchewing/libchewing3_0.3.5-4build1_i386.deb Size: 37662 MD5sum: 01d0acfaae9586a764ffeb51b83c2a7f SHA1: 4c9eb9560d1a1c172a2d949d304355281733eb03 SHA256: bbc155959a551ee732d569047dbaacfdbe3e21ba4f498cfb4e6450d8dd77d7ae Description: intelligent phonetic input method library Multi-Arch: same Homepage: http://chewing.im Description-md5: 183658a3741630fdcf77aacc92f9d147 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libchewing3-data Priority: optional Section: misc Installed-Size: 4868 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: libchewing Version: 0.3.5-4build1 Provides: libchewing-data Breaks: libchewing-data (<= 0.2.7) Filename: pool/main/libc/libchewing/libchewing3-data_0.3.5-4build1_i386.deb Size: 1365394 MD5sum: bb5190585c5f2f2854b50972956d618d SHA1: b1d9250f6f63dfaf95252d6511e240b1a83f549b SHA256: a0bc1a6e83a9b3f18e43b701d92fdd5b768e4f55d85e32154d19c5b5b511f3df Description: intelligent phonetic input method library - data files Multi-Arch: same Homepage: http://chewing.im Description-md5: 879154f5e48749b3e8cd4efee026a476 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libchewing3-dbg Priority: extra Section: debug Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: libchewing Version: 0.3.5-4build1 Depends: libchewing3 (= 0.3.5-4build1) Filename: pool/main/libc/libchewing/libchewing3-dbg_0.3.5-4build1_i386.deb Size: 99504 MD5sum: f0e09f773e8929d2c2a983aea7261392 SHA1: 1d51b912b352bbf94c06b8945abc4bd34c27fe8d SHA256: d4fda89bc7369f092a23ed0f0b69647ba5906f23882b18aac51d4e31c9f2df73 Description: intelligent phonetic input method library - debug files Multi-Arch: same Homepage: http://chewing.im Description-md5: 65bec7e4e56d3a1d4ef543b83e9eda4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libchewing3-dev Priority: optional Section: libdevel Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: libchewing Version: 0.3.5-4build1 Depends: libchewing3 (= 0.3.5-4build1) Conflicts: libchewing-dev, libchewing1-dev, libchewing2-dev Filename: pool/main/libc/libchewing/libchewing3-dev_0.3.5-4build1_i386.deb Size: 51482 MD5sum: 13039269264f612123ac69555073b79e SHA1: a922f0e81cf62bf1aa22acba4d2ee68854f7e2fc SHA256: a4ca043b3070b921c94b9f28f76ef2e1f0966a4bf19da56ba46c13f89c7e6f6b Description: intelligent phonetic input method library (developer version) Homepage: http://chewing.im Description-md5: 8e328c3577cf1adcf013f475c7ccf220 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcholmod2.1.2 Priority: optional Section: libs Installed-Size: 811 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libamd2.3.1, libblas3 | libblas.so.3, libc6 (>= 2.7), libcamd2.3.1, libccolamd2.8.0, libcolamd2.8.0, liblapack3 | liblapack.so.3 Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libcholmod2.1.2_4.2.1-3ubuntu1_i386.deb Size: 193152 MD5sum: 6eafd0507ff8499b751820b7201f08a3 SHA1: 917ac5cfe08132e85faf9dbedebd62748eb3ee6d SHA256: 06a9f0709b46c26ce804b71b54b05c845cefa4610f1924c6edea2b3362b78acd Description: sparse Cholesky factorization library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 25fa37b74d5c43d409795092b01492b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libcib3 Priority: optional Section: libs Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcib1, libcib2, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libc6 (>= 2.4), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.12.0), libgnutls26 (>= 2.12.17-0), libpe-rules2 (>= 1.1.10+git20130802), libqb0, libxml2 (>= 2.7.4) Conflicts: libcib1, libcib2, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libcib3_1.1.10+git20130802-1ubuntu2_i386.deb Size: 38410 MD5sum: 6d5371acdcdf27bc4a78d2663f9b47b7 SHA1: 501f3e15ca844a3b1e154cd20a421c6644b057e7 SHA256: 7779c6c8bda3e130836729300c0a7f36e66a36afc1dbcb2380ef44d1f12487d1 Description: Pacemaker libraries - CIB Homepage: http://clusterlabs.org/ Description-md5: e4c9b943061f8bb08f63f286e0e29ccb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcib3-dev Priority: optional Section: libdevel Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcib1-dev, libcib2-dev, pacemaker-dev (<< 1.1.8+git20121010-1) Depends: libcib3 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libcib1-dev, libcib2-dev, pacemaker-dev (<< 1.1.8+git20121010-1) Filename: pool/main/p/pacemaker/libcib3-dev_1.1.10+git20130802-1ubuntu2_i386.deb Size: 47192 MD5sum: e8575ccbd0b321c1658fd33e72570d4f SHA1: ce90f90936efe8c6d7c725c2157c055ccec26bcd SHA256: e58c533f71bfe876b922b040a3d172146c72dc8ea14795afe647cce8c850cb8e Description: Development file for pacemaker's cib library Homepage: http://clusterlabs.org/ Description-md5: fce0c8bd401410afbf71087b9faf9799 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libck-connector-dev Priority: optional Section: libdevel Installed-Size: 183 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: consolekit Version: 0.4.5-3.1ubuntu2 Depends: libck-connector0 (= 0.4.5-3.1ubuntu2), libdbus-1-dev Filename: pool/main/c/consolekit/libck-connector-dev_0.4.5-3.1ubuntu2_i386.deb Size: 19412 MD5sum: ad5e81e7397b099ae087fcd8fd265277 SHA1: 3555d2636dacc68658a8e2beb627f5ca5c72ab2b SHA256: 461b919eefd70addc9afad22adc1fc1d61da8ff6b0c18b58609c3e66251d46e3 Description: ConsoleKit development files Homepage: http://www.freedesktop.org/wiki/Software/ConsoleKit Description-md5: 2269a65061f7abfeace2eec5a9d881f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libck-connector0 Priority: optional Section: libs Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: consolekit Version: 0.4.5-3.1ubuntu2 Depends: libc6 (>= 2.3.4), libdbus-1-3 (>= 1.0.2) Pre-Depends: multiarch-support Filename: pool/main/c/consolekit/libck-connector0_0.4.5-3.1ubuntu2_i386.deb Size: 10068 MD5sum: 9f5ac4328dc8497efdac40a747a46d7a SHA1: c779c85e08eb6cf84ca695c893f3bf713f123a4f SHA256: 15cdca134beaca1a7de9b72fc3a39306890aeb07b02f56867184e22d877b9bd2 Description: ConsoleKit libraries Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/ConsoleKit Description-md5: 9d47a31a9e2b24daac8abcb9b63d7396 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-video, ubuntustudio-graphics Package: libclamav-dev Priority: optional Section: libdevel Installed-Size: 310 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: i386 Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Depends: libclamav6 (= 0.98.1+dfsg-4ubuntu1), libssl-dev, libidn11-dev, libc6-dev | libc-dev, zlib1g-dev, libbz2-dev, libtommath-dev Filename: pool/main/c/clamav/libclamav-dev_0.98.1+dfsg-4ubuntu1_i386.deb Size: 13734 MD5sum: 251bcf4dab0d7291499e610c77d11914 SHA1: 9153fa58272e37e25122fa3110372231e2bfc20a SHA256: ae13d51e6eabae41504356b2e04665a28953ef715f939bc31a58cd66cfbefe05 Description: anti-virus utility for Unix - development files Homepage: http://www.clamav.net/ Description-md5: f9403f3147d4d160269156db01264656 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclamav6 Priority: optional Section: libs Installed-Size: 11104 Maintainer: Ubuntu Developers Original-Maintainer: ClamAV Team Architecture: i386 Source: clamav Version: 0.98.1+dfsg-4ubuntu1 Depends: libbz2-1.0, libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libltdl7 (>= 2.4.2), libstdc++6 (>= 4.2.1), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Suggests: libclamunrar6 Filename: pool/main/c/clamav/libclamav6_0.98.1+dfsg-4ubuntu1_i386.deb Size: 3201752 MD5sum: 1f17b9f5f4baf35825ce4762221646b6 SHA1: a2fd456dd9ce582599b0c7f4d7c44d10634259cb SHA256: 8b30ffdbe266d48d4a3a7c5903ee5185fb0bb625a6a3e0a01f0bdad772c6b795 Description: anti-virus utility for Unix - library Homepage: http://www.clamav.net/ Description-md5: 8eec48379ead2492f2f06feeb97a6a2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libclass-accessor-perl Priority: optional Section: perl Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.34-1 Depends: perl, libsub-name-perl Filename: pool/main/libc/libclass-accessor-perl/libclass-accessor-perl_0.34-1_all.deb Size: 26038 MD5sum: b8dc3f1734b92b8ccd6e9ba464ca42c0 SHA1: 566e5fa15fbedfc182f8c876691eee870df96bd6 SHA256: 4afa5673b05a2527754bb9b0ca546b7dc7846d2ba37d58153e39f6a0a7722a75 Description: Perl module that automatically generates accessors Homepage: http://search.cpan.org/dist/Class-Accessor/ Description-md5: 478fde937a7300dacb3834b3ffdba459 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libclass-c3-perl Priority: optional Section: perl Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.25-1 Depends: perl, libalgorithm-c3-perl Recommends: libclass-c3-xs-perl Filename: pool/main/libc/libclass-c3-perl/libclass-c3-perl_0.25-1_all.deb Size: 21510 MD5sum: 1efad6aa39c730ce1e2e114f4030f583 SHA1: 308d8dd0c1f56b74c640475b51d71ba4fc979c1f SHA256: e7de878bcc20ba0a70fab188886eff8bac6d32e4b1b077383a75c6bdfcb0e1e5 Description: pragma for using the C3 method resolution order Homepage: https://metacpan.org/release/Class-C3/ Description-md5: 3f1d1676f63dab7129fb8ece8f37bbb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclass-c3-xs-perl Priority: optional Section: perl Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.13-1build4 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libc/libclass-c3-xs-perl/libclass-c3-xs-perl_0.13-1build4_i386.deb Size: 14994 MD5sum: 5a50bfbecf17fb08881b697c49cf06fa SHA1: 16cedfbdd0a4a8ecd49ba25794cba95145b9ce8c SHA256: fb9e0e6ec87ab577eb0fcfb8066c3292e2ee37c0a2343508d245fb9cb0323457 Description: Perl module to accelerate Class::C3 Enhances: libclass-c3-perl (>= 0.16) Homepage: http://search.cpan.org/dist/Class-C3-XS/ Description-md5: a3ab4e438147fb81f1438e0b60c3904d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclass-data-inheritable-perl Priority: optional Section: perl Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.08-2 Depends: perl Filename: pool/main/libc/libclass-data-inheritable-perl/libclass-data-inheritable-perl_0.08-2_all.deb Size: 8774 MD5sum: 9039e8e68cb0dd670c7ee0975ce25774 SHA1: 2b9e2fc96580f4b040a38bcd5a741aa15c8c664d SHA256: 2d69dc9307d522f2dc5ba2972ad80947388ea5cf33622e9ccbe467b64556d1d5 Description: Perl module to create accessors to class data Homepage: https://metacpan.org/release/Class-Data-Inheritable/ Description-md5: 82bba9e65b0ab1d72fbef1e5e404c956 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclass-factory-util-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.7-2 Depends: perl (>= 5.6.0-16) Filename: pool/main/libc/libclass-factory-util-perl/libclass-factory-util-perl_1.7-2_all.deb Size: 7226 MD5sum: 7dc3b7ec8496ad0fb91699f47adc022f SHA1: 40f3f620d9b1367e5f84a6ec63bbfba246a1e4f0 SHA256: 713c6fb6bcaef7ef414550cb0568a30e2b652e35787df88be1e3b0a7cec35f50 Description: Utility method for factory classes Homepage: http://search.cpan.org/dist/Class-Factory-Util/ Description-md5: 34967d7a91719552ddacafe66eca6dc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libclass-inspector-perl Priority: optional Section: perl Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.28-1 Depends: perl Filename: pool/main/libc/libclass-inspector-perl/libclass-inspector-perl_1.28-1_all.deb Size: 18668 MD5sum: 9bd3a7cf779cfcf1b6cada5c754ab417 SHA1: efe6574d75d7787bbc6c1653a156731e162afb15 SHA256: ab710909e8bec268df436ef44d4854f3a89df1fb3983fbf122eadb902d44b845 Description: Perl module that provides information about classes Homepage: https://metacpan.org/release/Class-Inspector/ Description-md5: d5eb5ee11b9996f68f80dc05e4bedce4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libclass-load-perl Priority: optional Section: perl Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.20-1 Depends: perl, libdata-optlist-perl, libmodule-implementation-perl, libmodule-runtime-perl (>= 0.012), libpackage-stash-perl (>= 0.14), libtry-tiny-perl Filename: pool/main/libc/libclass-load-perl/libclass-load-perl_0.20-1_all.deb Size: 11582 MD5sum: 51c3b04e78103e53938f188521866449 SHA1: 535042d8915dd6df7de54f207a1ae55df876a9df SHA256: 7c5410ed54ce18d16ef858d889d0ccef9f054dab1b3f1797bf6e5eee669e359a Description: module for loading modules by name Homepage: http://search.cpan.org/dist/Class-Load/ Description-md5: b63795dd8b16286a9628af577cf946a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libclass-load-xs-perl Priority: optional Section: perl Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.06-1build1 Depends: libc6 (>= 2.1.3), perl (>= 5.18.1-4), perlapi-5.18.1, libclass-load-perl (>= 0.20) Filename: pool/main/libc/libclass-load-xs-perl/libclass-load-xs-perl_0.06-1build1_i386.deb Size: 13716 MD5sum: 855acf84844d2624ef90344ef2b6dbb8 SHA1: 79c7697c1fb85c11688fc9ab5a557c8d9e52bff2 SHA256: f4d7256cb914c52c7509080f905a4e4b7af3e6aa33018c8dcfedecee53ecbdc4 Description: XS implementation of parts of Class::Load Homepage: http://search.cpan.org/dist/Class-Load-XS/ Description-md5: e162500685b8f5f11cd4963332723776 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclass-method-modifiers-perl Priority: optional Section: perl Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.09-1 Depends: perl Filename: pool/main/libc/libclass-method-modifiers-perl/libclass-method-modifiers-perl_2.09-1_all.deb Size: 15208 MD5sum: dafaa7bd5bbb1cd5fd255d74c7e6f331 SHA1: cf4481cbdd1c39b327d47f84b5e4401cf1b2034b SHA256: 0c1f6cd4774a3ae6c60f0d7d0c32df27e551e54a623b76ef3148d6342129d240 Description: Perl module providing method modifiers Homepage: https://metacpan.org/release/Class-Method-Modifiers/ Description-md5: f1e6913eb390add5f060deebe6e85707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclass-singleton-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.4-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/libc/libclass-singleton-perl/libclass-singleton-perl_1.4-1_all.deb Size: 13616 MD5sum: bb7b4bd19f537ea7c163b34fa81fa5f7 SHA1: 0657d29e595bcf2b9919e4d6a973362d6cb4dbc4 SHA256: b3e0313d4aa12cf25979e16e66799d663b24cd6101a9106767330bd7271c85d9 Description: implementation of a "Singleton" class Homepage: http://search.cpan.org/dist/Class-Singleton/ Description-md5: a3bcd5a81069e913babf02f25eaf47f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libclass-tiny-perl Priority: optional Section: perl Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.012-1 Depends: perl, perl (>= 5.14.0) | libdevel-globaldestruction-perl Filename: pool/main/libc/libclass-tiny-perl/libclass-tiny-perl_0.012-1_all.deb Size: 14854 MD5sum: d0c02ecd07cd14ae94aa833799fb4fda SHA1: 4467f6711051d4c2b47f9e102924435a60e69a2e SHA256: 9a8d957cb168e07ec7f29bfd080d8323784bb6f59eea95c9a3f3dc2209454929 Description: minimalist class construction module for Perl Homepage: https://metacpan.org/release/Class-Tiny Description-md5: af73ea7f0ad0fbd0adf688f2cab87c59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclick-0.4-0 Priority: optional Section: libs Installed-Size: 200 Maintainer: Colin Watson Architecture: i386 Source: click Version: 0.4.21.1 Depends: libc6 (>= 2.3.6-6~), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.34), libjson-glib-1.0-0 (>= 0.12.0) Pre-Depends: multiarch-support Filename: pool/main/c/click/libclick-0.4-0_0.4.21.1_i386.deb Size: 51306 MD5sum: d137896b2a53a7f130c18b3a8e5470f0 SHA1: 7fb57ab601c3cb559e490787248cb07b32b9a364 SHA256: e554fd980211a3b8c20579daf0b0b03a38e14a66cb88d495326780141e805307 Description: run-time Click package management library Multi-Arch: same Description-md5: 00fddc5709ae09f963921e7a94d1e017 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclick-0.4-dev Priority: optional Section: libdevel Installed-Size: 121 Maintainer: Colin Watson Architecture: i386 Source: click Version: 0.4.21.1 Depends: libclick-0.4-0 (= 0.4.21.1), libglib2.0-dev, libjson-glib-dev Filename: pool/main/c/click/libclick-0.4-dev_0.4.21.1_i386.deb Size: 8410 MD5sum: 230dc0452b6b69283872e669804b596a SHA1: bcd6dbc64e9b9c6c1de2793c0d83d75d9612e51d SHA256: 7874dc5bee8c967a97ed381c8cf6f3dd53258e82ece9ca1c95852be75c3ba6e2 Description: development files for Click package management library Multi-Arch: same Description-md5: e6db64e1a45e66e69c5e7a6e77046966 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclone-perl Priority: optional Section: perl Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.36-1 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libc/libclone-perl/libclone-perl_0.36-1_i386.deb Size: 10890 MD5sum: fc0f5f61285fd35a497c788c10033cee SHA1: 508054e0f830d3612261cb8d0ed74eeabccccc5b SHA256: d74063c02a42be55df4fbdc7ae279f35a83c9735640d532757ab6366e2b4d485 Description: module for recursively copying Perl datatypes Homepage: https://metacpan.org/release/Clone/ Description-md5: f0346601158f65d4b4cbf16b7ddeb57a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcloog-isl-dev Priority: optional Section: libdevel Installed-Size: 320 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: cloog Version: 0.18.2-1 Depends: libisl-dev (>= 0.11), libgmp-dev, libcloog-isl4 (= 0.18.2-1), dpkg (>= 1.15.4) | install-info Conflicts: libcloog-ppl-dev Filename: pool/main/c/cloog/libcloog-isl-dev_0.18.2-1_i386.deb Size: 64960 MD5sum: 3e9ffe5b91c8b1d29dbc467d2f1b8d4a SHA1: c61c11a95c002d7d54eb7caa3656db11ffa4da9b SHA256: c0130e7d8ab2f986fd5ebc9caa311816427e2ffc0012ae8bd690fdd96d97708b Description: Chunky Loop Generator (development files) Multi-Arch: same Homepage: http://www.CLooG.org Description-md5: 8004e8b80eb2afe6beff143361c74aee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcloog-isl4 Priority: optional Section: libs Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: cloog Version: 0.18.2-1 Depends: libc6 (>= 2.7), libgmp10, libisl10 (>= 0.11) Pre-Depends: multiarch-support Filename: pool/main/c/cloog/libcloog-isl4_0.18.2-1_i386.deb Size: 57564 MD5sum: 45ef532103872633f62b349541ee0ab2 SHA1: d29d59d1c76b0975db1f44a419b97320b849196e SHA256: c53b3bb311e9005c62a079d0bfe46abb835a17fc946f885e1a702eba1d6836d4 Description: Chunky Loop Generator (runtime library) Multi-Arch: same Homepage: http://www.CLooG.org Description-md5: 4a5659656cc332664fb33eb2309007bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcloog-ppl-dev Priority: optional Section: libdevel Installed-Size: 311 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: cloog-ppl Version: 0.16.1-5 Depends: libppl-dev (>= 1:1.1), libgmp-dev, libcloog-ppl1 (= 0.16.1-5), dpkg (>= 1.15.4) | install-info Filename: pool/main/c/cloog-ppl/libcloog-ppl-dev_0.16.1-5_i386.deb Size: 64038 MD5sum: bd348883d04fbeec801f267ea915d05f SHA1: 08360e0261610c8b4bffc5bc84332ac17c82bec8 SHA256: adb66f6c54c07ff93bc3b57670b5a5ec93cb959f72a716ed85fe4f1a545e7419 Description: Chunky Loop Generator (development files) Multi-Arch: same Homepage: http://www.CLooG.org Description-md5: 55293a867d8486dd49aca1b5471c4f43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcloog-ppl1 Priority: optional Section: libs Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: cloog-ppl Version: 0.16.1-5 Depends: libc6 (>= 2.7), libgmp10, libppl-c4 Pre-Depends: multiarch-support Filename: pool/main/c/cloog-ppl/libcloog-ppl1_0.16.1-5_i386.deb Size: 55262 MD5sum: 8ac0e2b04d307dc94dd428f06596378a SHA1: 8a7d0090825954327d2ff1d7a80f9311be41bc5e SHA256: 2f58c92db498afead6a6fc81fd85bb39ea9cecf1a405dce997f22ed5eaeafa69 Description: Chunky Loop Generator (runtime library) Multi-Arch: same Homepage: http://www.CLooG.org Description-md5: 4a5659656cc332664fb33eb2309007bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclucene-contribs1 Priority: optional Section: libs Installed-Size: 350 Maintainer: Ubuntu Developers Original-Maintainer: Fathi Boudra Architecture: i386 Source: clucene-core Version: 2.3.3.4-4build1 Depends: libc6 (>= 2.4), libclucene-core1 (>= 2.3.3.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/c/clucene-core/libclucene-contribs1_2.3.3.4-4build1_i386.deb Size: 103372 MD5sum: 30ee89685d7dea5c75dd64b781374428 SHA1: 99af88022042cf5dd04d68680248942e5af290ec SHA256: 7ad6b3a9d5b0124fa232c630bbb46cd7be7287d51a60dbbb598f694330b571b5 Description: language specific text analyzers (runtime) Multi-Arch: same Homepage: http://clucene.sourceforge.net Description-md5: b8f105fe2b28a7ca61f9fa1429c94c84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libclucene-core1 Priority: optional Section: libs Installed-Size: 1636 Maintainer: Ubuntu Developers Original-Maintainer: Fathi Boudra Architecture: i386 Source: clucene-core Version: 2.3.3.4-4build1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/c/clucene-core/libclucene-core1_2.3.3.4-4build1_i386.deb Size: 586688 MD5sum: e7079dce8a1dbb99343036a10a430d1f SHA1: e59bf8ee5ca1ec90fa989706141cf7afddcb30ec SHA256: 08520c1517fd03f29ced61864896241457a5383648cda8175ae1582ea042dca2 Description: core library for full-featured text search engine (runtime) Multi-Arch: same Homepage: http://clucene.sourceforge.net Description-md5: 444089d45d353e1cb29acf147817805d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libclucene-dev Priority: optional Section: libdevel Installed-Size: 752 Maintainer: Ubuntu Developers Original-Maintainer: Fathi Boudra Architecture: i386 Source: clucene-core Version: 2.3.3.4-4build1 Depends: libc6-dev, libclucene-contribs1 (= 2.3.3.4-4build1), libclucene-core1 (= 2.3.3.4-4build1) Filename: pool/main/c/clucene-core/libclucene-dev_2.3.3.4-4build1_i386.deb Size: 157292 MD5sum: 38d7226a5564a70edd8e6e9d14c2c5db SHA1: a8685715089e7da6bd83f59d4c526bb46977edc0 SHA256: deb9ffab95482ef7516025e3c9a5b15312e86337d748c8847be97e855d232bff Description: library for full-featured text search engine (development) Homepage: http://clucene.sourceforge.net Description-md5: 575ed8411b755e9b5a7c9ce4030c35c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcluster-glue-dev Priority: optional Section: libdevel Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: all Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Depends: liblrm2-dev (>= 1.0.11+hg2754-1.1build1), libpils2-dev (>= 1.0.11+hg2754-1.1build1), libplumb2-dev (>= 1.0.11+hg2754-1.1build1), libplumbgpl2-dev (>= 1.0.11+hg2754-1.1build1), libstonith1-dev (>= 1.0.11+hg2754-1.1build1) Filename: pool/main/c/cluster-glue/libcluster-glue-dev_1.0.11+hg2754-1.1build1_all.deb Size: 3396 MD5sum: ee87bd15d6c07e553279e818f03f958e SHA1: a859a15a1d674aa6fa05d5b408874e8a3e83749b SHA256: bb8a2504b5a034333ef2d57adbb3af51747c9037465e12be5dc60ca5f8f7b1f7 Description: Reusable cluster components for Linux HA (transitional package) Homepage: http://hg.linux-ha.org/glue/ Description-md5: 8b468cb71213a5cd9941d4fff87973b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-1.0-0 Priority: optional Section: libs Installed-Size: 1556 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Depends: libatk1.0-0 (>= 2.5.3), libc6 (>= 2.7), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10), libcogl-pango15 (>= 1.15.8), libcogl15 (>= 1.15.8), libfontconfig1 (>= 2.9.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.18), libjson-glib-1.0-0 (>= 0.12.0), libpango-1.0-0 (>= 1.30), libpangocairo-1.0-0 (>= 1.30), libpangoft2-1.0-0 (>= 1.30), libx11-6 (>= 2:1.2.99.901), libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxi6 (>= 2:1.2.99.4) Pre-Depends: multiarch-support Recommends: libclutter-1.0-common Breaks: libcogl11, libcogl12, libcogl9 Filename: pool/main/c/clutter-1.0/libclutter-1.0-0_1.16.4-0ubuntu2_i386.deb Size: 473760 MD5sum: 86eaaba45a5d37b911970f691cf21af5 SHA1: e8b78029ac82791c5c647361b8469ddad27fa43e SHA256: 2e85b81b9a6e639796dd09d38e93e21a2efc28ec5378a6db4850b7a9f9961fb6 Description: Open GL based interactive canvas library Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: a61582dd624c05cff2d537148daf6e7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libclutter-1.0-common Priority: optional Section: libs Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Filename: pool/main/c/clutter-1.0/libclutter-1.0-common_1.16.4-0ubuntu2_all.deb Size: 81642 MD5sum: 56efc1ee316ac50e444011d283bfa641 SHA1: 2b622477757d74f4d37a609887caf3529701d354 SHA256: 234240f8f5eb8dcc9c8958db72ba0da2f8b4fdf58bda66f11a70ba2389e94176 Description: Open GL based interactive canvas library (common files) Multi-Arch: foreign Homepage: http://www.clutter-project.org/ Description-md5: 38161479c76808c77cc7cac8fb452207 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libclutter-1.0-dbg Priority: extra Section: debug Installed-Size: 3713 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Depends: libclutter-1.0-0 (= 1.16.4-0ubuntu2) Filename: pool/main/c/clutter-1.0/libclutter-1.0-dbg_1.16.4-0ubuntu2_i386.deb Size: 1073920 MD5sum: 17eeee04709aa44d1db13ac766b988d8 SHA1: 748df23fe03798b57abf427c0085e2f31351696b SHA256: a40680fcf91b2d8155474d7820780cad8761a73a6dbd7ce6fbeb92568fc5ca41 Description: Open GL based interactive canvas library (debug files) Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: fd1375dceedf124a35a174c0c643601c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-1.0-dev Priority: optional Section: libdevel Installed-Size: 4124 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Depends: libclutter-1.0-0 (= 1.16.4-0ubuntu2), gir1.2-clutter-1.0 (= 1.16.4-0ubuntu2), libgdk-pixbuf2.0-dev, libcairo2-dev (>= 1.10), libatk1.0-dev (>= 2.5.3), libpango1.0-dev (>= 1.30), libcogl-dev (>= 1.14.0), libcogl-pango-dev (>= 1.14.0), libgl1-mesa-dev (>= 7.1~rc3-1~), libgtk-3-dev, libdrm-dev, libx11-dev, libxext-dev, libxfixes-dev, libxdamage-dev, libxcomposite-dev, libxi-dev, libjson-glib-dev (>= 0.12) Recommends: pkg-config Suggests: libclutter-1.0-doc Filename: pool/main/c/clutter-1.0/libclutter-1.0-dev_1.16.4-0ubuntu2_i386.deb Size: 298636 MD5sum: a8b0e8b420efc382ffa6b88895ed35b3 SHA1: 120b8a5493c18302d275ed5f2f2e47cb7338f626 SHA256: 9073c6a79c8d7ccbccbbc4fc0200abbcb75e4085b96cb2d619712ad1772553c0 Description: Open GL based interactive canvas library (development files) Homepage: http://www.clutter-project.org/ Description-md5: d2f107ca493c4c999db05729a9a06672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-1.0-doc Priority: optional Section: doc Installed-Size: 10715 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: clutter-1.0 Version: 1.16.4-0ubuntu2 Replaces: libclutter-0.1-doc Suggests: devhelp Conflicts: libclutter-0.1-doc, libclutter-doc Filename: pool/main/c/clutter-1.0/libclutter-1.0-doc_1.16.4-0ubuntu2_all.deb Size: 2571212 MD5sum: d9377a5c890a8dea362152e8c0e81b09 SHA1: 3ede261c272f48ab4ae851c6d18c5a721457d12d SHA256: 7136f680cc684564151091510d413a5a6b01752de8fbf4684969f0c2da1e34e3 Description: Open GL based interactive canvas library (documentation) Homepage: http://www.clutter-project.org/ Description-md5: 02635797d227670df03bfcc254b316dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gst-2.0-0 Priority: optional Section: libs Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-gst-2.0 Version: 2.0.8-1build1 Depends: libc6 (>= 2.3.6-6~), libclutter-1.0-0 (>= 1.13.0), libcogl15 (>= 1.15.8), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libx11-6 Pre-Depends: multiarch-support Filename: pool/main/c/clutter-gst-2.0/libclutter-gst-2.0-0_2.0.8-1build1_i386.deb Size: 33020 MD5sum: ddf8b2462fa2d2780d916ec652436479 SHA1: ad9b23c67e6d5e01097682eb6737dd82c471a4d4 SHA256: 2709990af6c042e2f73689b4c9b57d496f21bce20c2b56f5178d912de74ae030 Description: Open GL based interactive canvas library GStreamer elements Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: 68c63db77bdc02fd5cd00999c8634190 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libclutter-gst-2.0-dbg Priority: extra Section: debug Installed-Size: 373 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-gst-2.0 Version: 2.0.8-1build1 Depends: libclutter-gst-2.0-0 (= 2.0.8-1build1) Filename: pool/main/c/clutter-gst-2.0/libclutter-gst-2.0-dbg_2.0.8-1build1_i386.deb Size: 96404 MD5sum: 5e9af67261cd608adeca50ba159daf83 SHA1: a55dff821ea1a366f6859b63e77a8229af27b878 SHA256: f191f099bb1301597be1cafad96d4ee1c90c42e7b65818758206819c5e722465 Description: Open GL based interactive canvas library GStreamer elements (debug files) Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: 9c77fb97df7a7751964a4f9c65704b23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gst-2.0-dev Priority: optional Section: libdevel Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-gst-2.0 Version: 2.0.8-1build1 Depends: libclutter-gst-2.0-0 (= 2.0.8-1build1), gir1.2-clutter-gst-2.0 (= 2.0.8-1build1), gstreamer1.0-clutter (= 2.0.8-1build1), pkg-config, libclutter-1.0-dev (>= 1.6.10-3), libgstreamer1.0-dev (>= 1.0.0), libgstreamer-plugins-base1.0-dev (>= 1.0.0) Suggests: libclutter-gst-2.0-doc Filename: pool/main/c/clutter-gst-2.0/libclutter-gst-2.0-dev_2.0.8-1build1_i386.deb Size: 60062 MD5sum: 273557fbd33753698d7705d84e31deaa SHA1: 06a839e341a38f58649bb0f1a42a20fb6629ffd5 SHA256: 71af3c8675d8aca09cfe034990812b02e08da596613d533b12f71e563f602ca5 Description: Open GL based interactive canvas library GStreamer elements (development files) Homepage: http://www.clutter-project.org/ Description-md5: 226f3bbc8ad7bee2e20aa688dabd66d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gst-2.0-doc Priority: optional Section: doc Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: clutter-gst-2.0 Version: 2.0.8-1build1 Suggests: devhelp Conflicts: libclutter-gst-doc Filename: pool/main/c/clutter-gst-2.0/libclutter-gst-2.0-doc_2.0.8-1build1_all.deb Size: 23782 MD5sum: 2a83fd322282354d557dbc2e46cf5af0 SHA1: 711b38d3f2c16bd66ced79ebebf852ba3824ccb9 SHA256: 69487195fd7be434bb8facc6c7e39a9cd2247056f4f8b61328da0aa824f2ed62 Description: Open GL based interactive canvas library GStreamer elements (documentation) Homepage: http://www.clutter-project.org/ Description-md5: 30572bfe8177705fb4404f6968d24263 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gtk-1.0-0 Priority: optional Section: libs Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-gtk Version: 1.4.4-3ubuntu2 Depends: libc6 (>= 2.3.6-6~), libcairo2 (>= 1.2.4), libclutter-1.0-0 (>= 1.13.10), libcogl15 (>= 1.15.8), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.6.0) Pre-Depends: multiarch-support Filename: pool/main/c/clutter-gtk/libclutter-gtk-1.0-0_1.4.4-3ubuntu2_i386.deb Size: 22090 MD5sum: 9eaf85f736493d44bc06590c990b4bf5 SHA1: 903960594b6b5f262b64ed3fbb38b1bed52fd748 SHA256: 8db5c82bdf7d17527e886b59b45f47c4a040df72cb3f37c60d0e90fa71db632f Description: Open GL based interactive canvas library GTK+ widget Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: b45ee0f005530aab6651f7cd9600f11a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libclutter-gtk-1.0-dbg Priority: extra Section: debug Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-gtk Version: 1.4.4-3ubuntu2 Depends: libclutter-gtk-1.0-0 (= 1.4.4-3ubuntu2) Filename: pool/main/c/clutter-gtk/libclutter-gtk-1.0-dbg_1.4.4-3ubuntu2_i386.deb Size: 56668 MD5sum: aad7084d913097e422a5df67dab70da3 SHA1: c0d8299e5e48b6588f13c08441dbcf067b618dda SHA256: 68bd9a31b5b3abfc3070b2868746be44b9bf2be9e27c88c41aae84e8c8f0ecfc Description: Open GL based interactive canvas library GTK+ widget (debug files) Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: af32fd57db2598d70bdf9ec1db8d3e73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gtk-1.0-dev Priority: optional Section: libdevel Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: clutter-gtk Version: 1.4.4-3ubuntu2 Depends: libclutter-gtk-1.0-0 (= 1.4.4-3ubuntu2), gir1.2-gtkclutter-1.0 (= 1.4.4-3ubuntu2), pkg-config, libgtk-3-dev (>= 3.6.0), libclutter-1.0-dev (>= 1.13.10) Suggests: libclutter-gtk-1.0-doc Filename: pool/main/c/clutter-gtk/libclutter-gtk-1.0-dev_1.4.4-3ubuntu2_i386.deb Size: 22882 MD5sum: 9703c0e5f0f643f07a7b2d38ead0c9d7 SHA1: b025865778b796c34e3089f868a988274cd22a59 SHA256: 48a4a175aacf1d764651b6ad620bdd7f6e97388b10c85ec7a1993703b866084d Description: Open GL based interactive canvas library GTK+ widget (development files) Homepage: http://www.clutter-project.org/ Description-md5: e9e6bec0e5d64d1155b64afd7e289839 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libclutter-gtk-1.0-doc Priority: optional Section: doc Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: clutter-gtk Version: 1.4.4-3ubuntu2 Replaces: libclutter-gtk-0.10-doc, libclutter-gtk-doc Recommends: libclutter-1.0-doc Suggests: devhelp Conflicts: libclutter-gtk-0.10-doc, libclutter-gtk-doc Filename: pool/main/c/clutter-gtk/libclutter-gtk-1.0-doc_1.4.4-3ubuntu2_all.deb Size: 22228 MD5sum: c208947fdd6c202dd3d3424a04a9c826 SHA1: 66353b2ac14591c9e85d21d552b757b5c9099710 SHA256: 1010e3ffb8ab86589168e426df04e0cff1eeb936e05fa6a8ff9e240c2e60acfb Description: Open GL based interactive canvas library GTK+ widget (documentation) Homepage: http://www.clutter-project.org/ Description-md5: 30dead2af292731b7e504c7925a6b467 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcmap-dev Priority: optional Section: libdevel Installed-Size: 374 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libcmap4 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libcmap-dev_2.3.3-1ubuntu1_i386.deb Size: 49064 MD5sum: d9df253b07731bba4e3906b8b4004a74 SHA1: ca4d89ade283883ed2a3c7237fc7243e4ced9049 SHA256: e73ef095730f3c648e37af69ab7a0f4c9fcf9f28b60049ce19b3be49e9dc002d Description: Standards-based cluster framework, Cmap devel files Description-md5: 6adabd0c7b46a5a4a23096bfd28a34a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcmap4 Priority: optional Section: libs Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.4), libcorosync-common4 (>= 2.3.3), libqb0 Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libcmap4_2.3.3-1ubuntu1_i386.deb Size: 10176 MD5sum: 35356d047ae682595d21e4f4637e103e SHA1: e0f75f843a7d5d36acfec8f1ec35e3459d1e03a2 SHA256: 07d5b74f43f79b6eb64c61898da2f82fe10403acc96f6c8761e091f5232be536 Description: Standards-based cluster framework, Cmap library Description-md5: f1c1a1df18465bf3a5d1bd58b0c1c807 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcmis-0.4-4 Priority: optional Section: libs Installed-Size: 1397 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libcmis Version: 0.4.1-3ubuntu4 Depends: libboost-date-time1.54.0, libc6 (>= 2.4), libcurl3-gnutls (>= 7.16.2), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libxml2 (>= 2.7.4) Filename: pool/main/libc/libcmis/libcmis-0.4-4_0.4.1-3ubuntu4_i386.deb Size: 358008 MD5sum: a22a4abf01b941b2893da139363fa066 SHA1: 287bc90f08cbd7b09889ba5591deebbb779a1b52 SHA256: 99e42da3bfc0c911b561247a334d121f8e2ad7bb1fcc463a41d862da2d928d12 Description: CMIS protocol client library Homepage: http://libcmis.sourceforge.net/ Description-md5: 11699a5b32c25fb91e259053a84ad624 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libcmis-dev Priority: optional Section: libdevel Installed-Size: 3625 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libcmis Version: 0.4.1-3ubuntu4 Depends: libcmis-0.4-4 (= 0.4.1-3ubuntu4), libcurl4-gnutls-dev, libxml2-dev Filename: pool/main/libc/libcmis/libcmis-dev_0.4.1-3ubuntu4_i386.deb Size: 489648 MD5sum: d96a2ac06e07262997515c55fdd1f3c0 SHA1: 1ea91501687bcdcf0f2441f8fd482ea54a8b82ae SHA256: 92b32f4ac8f9ad69c44337bff43fb6a5b4a943c863db51fff0007819f4526e4a Description: CMIS protocol client library -- development Homepage: http://libcmis.sourceforge.net/ Description-md5: 72ec2e8e22c9018b8744a8af90e49968 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-common Priority: optional Section: libs Installed-Size: 248 Maintainer: Rico Tzschichholz Architecture: all Source: cogl Version: 1.16.2-1 Filename: pool/main/c/cogl/libcogl-common_1.16.2-1_all.deb Size: 194324 MD5sum: a915ed2b8b0c1c49486e872b2f83ef47 SHA1: d9e3285e38dcc3f9de1e54960539d5ac48c9884d SHA256: 5ca53746a70dcffe4f1e64bcc703e8e0fbb92b1aec966e84b78b3f459193732c Description: Object oriented GL/GLES Abstraction/Utility Layer (common files) Multi-Arch: foreign Description-md5: d546b96c6a3a291dcdcc684916b2a0c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcogl-dev Priority: optional Section: libdevel Installed-Size: 1394 Maintainer: Rico Tzschichholz Architecture: i386 Source: cogl Version: 1.16.2-1 Depends: libcogl15 (= 1.16.2-1), gir1.2-cogl-1.0 (= 1.16.2-1), libgl1-mesa-dev (>= 7.1~rc3-1~), libgles2-mesa-dev (>= 7.1~rc3-1~) | libgles2-dev, libglib2.0-dev (>= 2.28.0), libdrm-dev, libwayland-dev, libgbm-dev, libgdk-pixbuf2.0-dev (>= 2.0), libx11-dev, libxcomposite-dev, libxext-dev, libxfixes-dev, libxdamage-dev Recommends: pkg-config Suggests: libcogl-doc Filename: pool/main/c/cogl/libcogl-dev_1.16.2-1_i386.deb Size: 156946 MD5sum: e38d8b5d47471b2a3d6a00e45e4a2771 SHA1: 71e25d874c8eaaa4db24a2f809384c27a563370c SHA256: 8b8f21c731281e3360ccaa7094e6332c0a3414ebb339d7ca02b493cc75dbf93e Description: Object oriented GL/GLES Abstraction/Utility Layer (development files) Description-md5: be3115f4a0115636a1065d55d8a70f4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-doc Priority: optional Section: doc Installed-Size: 3715 Maintainer: Rico Tzschichholz Architecture: all Source: cogl Version: 1.16.2-1 Suggests: devhelp Filename: pool/main/c/cogl/libcogl-doc_1.16.2-1_all.deb Size: 250106 MD5sum: b689ef129941c431d8364f0751e6e61c SHA1: 9eb248f081a5d2eee8064ddbd48f4184dba60695 SHA256: 0e43f8bb68e2c4ca0513e938ca27abd97db6ac908146705bea7feee377881deb Description: Object oriented GL/GLES Abstraction/Utility Layer (documentation) Description-md5: 6b316c36c70b839fe5274cc7bbbd7eaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-gles2-15 Priority: optional Section: libs Installed-Size: 91 Maintainer: Rico Tzschichholz Architecture: i386 Source: cogl Version: 1.16.2-1 Replaces: libcogl12 (<< 1.13.4-2) Depends: libc6 (>= 2.3.6-6~), libgl1-mesa-glx Pre-Depends: multiarch-support Recommends: libcogl-common Suggests: libgles2-mesa | libgles2 Filename: pool/main/c/cogl/libcogl-gles2-15_1.16.2-1_i386.deb Size: 32072 MD5sum: ae0d18bca06aa5a6ab986fa7bb6de160 SHA1: 968e9f053be20ea0ca6a19b02bb1a94727b74d3e SHA256: 52aef446af988a0ca73829aa318d2ff6e54d032b9ca9c8fdfdf42c2a1166a848 Description: Object oriented GL/GLES Abstraction/Utility Layer Multi-Arch: same Description-md5: d02a59a79a39b027f378070c58e31dd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-gles2-dev Priority: optional Section: libdevel Installed-Size: 166 Maintainer: Rico Tzschichholz Architecture: i386 Source: cogl Version: 1.16.2-1 Replaces: libcogl-dev (<< 1.14.0-1) Depends: libcogl-gles2-15 (= 1.16.2-1), libcogl-dev (= 1.16.2-1) Recommends: pkg-config Suggests: libcogl-doc Breaks: libcogl-dev (<< 1.14.0-1) Filename: pool/main/c/cogl/libcogl-gles2-dev_1.16.2-1_i386.deb Size: 13752 MD5sum: 129f8c00c5056f227d06055853509abf SHA1: e0a97b63e132fbe74ad26cde0a717bf1c2324cca SHA256: 82320e8aeae2adf2b1377a9c0d31ed70e468ca87f628727434c88bdac1b137c9 Description: Object oriented GL/GLES Abstraction/Utility Layer (development files) Description-md5: be3115f4a0115636a1065d55d8a70f4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-pango-dev Priority: optional Section: libdevel Installed-Size: 106 Maintainer: Rico Tzschichholz Architecture: i386 Source: cogl Version: 1.16.2-1 Depends: libcogl-pango15 (= 1.16.2-1), gir1.2-coglpango-1.0 (= 1.16.2-1), libcogl-dev (= 1.16.2-1), libglib2.0-dev (>= 2.28.0), libcairo2-dev (>= 1.10), libdrm-dev, libgdk-pixbuf2.0-dev (>= 2.0), libpango1.0-dev (>= 1.20), libx11-dev, libxcomposite-dev, libxext-dev, libxfixes-dev, libxdamage-dev Recommends: pkg-config Suggests: libcogl-doc Filename: pool/main/c/cogl/libcogl-pango-dev_1.16.2-1_i386.deb Size: 7370 MD5sum: c3ab710bee9d819d5676bc3eb20ad29e SHA1: b928e2eee70274fe54fd39e3df2d61e9a0cc8010 SHA256: 102834078b79c2407f6a7812ee6b2b7bb9e5311efdcfbef08d5de88daba7eb0a Description: Object oriented GL/GLES Abstraction/Utility Layer (development files) Description-md5: 5c4e7ce27e624192d91d8d0db6688471 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl-pango15 Priority: optional Section: libs Installed-Size: 93 Maintainer: Rico Tzschichholz Architecture: i386 Source: cogl Version: 1.16.2-1 Depends: libc6 (>= 2.3.6-6~), libcairo2 (>= 1.10), libcogl15 (>= 1.15.8), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.28.3-5), libpangocairo-1.0-0 (>= 1.28.3-5) Pre-Depends: multiarch-support Recommends: libcogl-common Filename: pool/main/c/cogl/libcogl-pango15_1.16.2-1_i386.deb Size: 14238 MD5sum: 9fd825d2af9400e7a0da125e6e3a3022 SHA1: 7e0655948c459e55a394a58b3933bd0d915799c9 SHA256: ad34753705c589c76ad2bb3e5af30a268c2059ebbff631c06d8b2a3317948a3a Description: Object oriented GL/GLES Abstraction/Utility Layer Multi-Arch: same Description-md5: 8c0fee75492f726194fa0be454f54661 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcogl-pango15-dbg Priority: extra Section: debug Installed-Size: 257 Maintainer: Rico Tzschichholz Architecture: i386 Source: cogl Version: 1.16.2-1 Depends: libcogl-pango15 (= 1.16.2-1) Filename: pool/main/c/cogl/libcogl-pango15-dbg_1.16.2-1_i386.deb Size: 63580 MD5sum: 885dd73e8abf8d6a37f73ff0f3c465bc SHA1: 7c02231e37d30649fcd959bc4212dc9735d7508c SHA256: 1217dd338ff79a533ad74df10d5b776f3d9e732491f1009c0f889af34a2e564a Description: Object oriented GL/GLES Abstraction/Utility Layer (debug files) Multi-Arch: same Description-md5: 858ef4ee207459a233afecb58be377b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcogl15 Priority: optional Section: libs Installed-Size: 759 Maintainer: Rico Tzschichholz Architecture: i386 Source: cogl Version: 1.16.2-1 Depends: libc6 (>= 2.17), libdrm2 (>= 2.4.17), libegl1-mesa (>= 7.8.1) | libegl1-x11, libegl1-mesa-drivers, libgbm1 (>= 8.1~0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.32.0), libwayland-client0 (>= 1.3.92), libwayland-server0 (>= 1.2.0), libx11-6, libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxrandr2 (>= 2:1.2.0), libgl1-mesa-glx Pre-Depends: multiarch-support Recommends: libcogl-common Suggests: libgles2-mesa | libgles2 Breaks: libclutter-1.0-0 (<< 1.15) Filename: pool/main/c/cogl/libcogl15_1.16.2-1_i386.deb Size: 267958 MD5sum: 5a27e5e4e55c0ab6805a4e37709eae28 SHA1: 5256ac63faad4013b6fabb43659898cd04a63c31 SHA256: d1192d1adf8c060d0b3cac1b60b2d41d14019df99c395f121898c892cba6fa05 Description: Object oriented GL/GLES Abstraction/Utility Layer Multi-Arch: same Description-md5: 8c0fee75492f726194fa0be454f54661 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcogl15-dbg Priority: extra Section: debug Installed-Size: 3843 Maintainer: Rico Tzschichholz Architecture: i386 Source: cogl Version: 1.16.2-1 Depends: libcogl15 (= 1.16.2-1) Filename: pool/main/c/cogl/libcogl15-dbg_1.16.2-1_i386.deb Size: 1005970 MD5sum: 1f4ae3ede5d364220c2d667559cc5d9d SHA1: 92053e98a8e8875e262d42f78fca19670d0d68d7 SHA256: 6165950753ba25e63cc4fa8691160a21f495afeb5d9485a8ab6d2f36eab93127 Description: Object oriented GL/GLES Abstraction/Utility Layer (debug files) Multi-Arch: same Description-md5: 6184f9688915cd7d80df1dba1ea3282a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcolamd2.8.0 Priority: optional Section: libs Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libcolamd2.8.0_4.2.1-3ubuntu1_i386.deb Size: 13452 MD5sum: de4f52069c035f5845c6d9a101f80cb4 SHA1: 817cf81a1418dffbce9899c465c23af414a58369 SHA256: ef8405cec9d2348dcc5629d7f9d983acfd61c2a5b916b9b087d1e511b2aeb719 Description: column approximate minimum degree ordering library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 8deaa08627160807bac22fabb0a29a30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libcollection-dev Priority: extra Section: libdevel Installed-Size: 259 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Depends: libcollection2 (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libcollection-dev_0.3.0.1-4_i386.deb Size: 36444 MD5sum: 141ca6ef9f9cce627dfecbd41d9bf3ca SHA1: 2439b99362b7290244b4493d41ba474e4ccc23d0 SHA256: de3ededd39723800041985cfd89f3bfe9f53576a5161dc87060295542b65c844 Description: Development files for libcollection Homepage: https://fedorahosted.org/sssd/ Description-md5: 032378fdcf3e622c55ae4a2852001238 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcollection2 Priority: extra Section: libs Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Replaces: libcollection Provides: libcollection Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Conflicts: libcollection Filename: pool/main/d/ding-libs/libcollection2_0.3.0.1-4_i386.deb Size: 20640 MD5sum: 316381f56e2ea4c4b54998a4287c020d SHA1: 638281010b6f0ff2cb46d83ada52779ba7f801e0 SHA256: faafae8fdf6dc8df1a86eefd8e03b1b80dec0da7835106581532e8f4af3f49a3 Description: Collection data-type for C Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 5016b92c89c873a9311c032bc7d6f4ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcolord-dev Priority: optional Section: libdevel Installed-Size: 735 Maintainer: Christopher James Halse Rogers Architecture: i386 Source: colord Version: 1.0.6-1 Depends: libcolord1 (= 1.0.6-1), liblcms2-dev, libglib2.0-dev, libdbus-1-dev Filename: pool/main/c/colord/libcolord-dev_1.0.6-1_i386.deb Size: 47840 MD5sum: e13c5c88619898ab59178d90171c9525 SHA1: f4a761c7779036813d55eebaa0d20fcbd2273019 SHA256: a3399770003e71560d0cde560fdffa95bf502974f358be189a7279278cbe7dcc Description: system service to manage device colour profiles -- development files Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 46f99fd2edfb515f6b8ebf04d3e975ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcolord1 Priority: optional Section: libs Installed-Size: 331 Maintainer: Christopher James Halse Rogers Architecture: i386 Source: colord Version: 1.0.6-1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), liblcms2-2 (>= 2.5) Pre-Depends: multiarch-support Recommends: colord Filename: pool/main/c/colord/libcolord1_1.0.6-1_i386.deb Size: 81368 MD5sum: cdc8be849b3582b9c47e309eee4d8290 SHA1: 41e2fdc4b3093b6d57436da98fee41212acf7bad SHA256: 513375d18bea1ff2b68f123739afc6298d01b7c675d2c16ed13bf367ca43a79c Description: system service to manage device colour profiles -- runtime Multi-Arch: same Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 4d55f8607f36d5762f983bc2d927fd71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcolorhug-dev Priority: extra Section: libdevel Installed-Size: 237 Maintainer: Christopher James Halse Rogers Architecture: i386 Source: colord Version: 1.0.6-1 Replaces: colorhug-client (<< 0.2.0-3) Depends: libcolorhug1 (= 1.0.6-1), libglib2.0-dev, libgusb-dev, libcolord-dev, gir1.2-colorhug-1.0 Breaks: colorhug-client (<< 0.2.0-3) Filename: pool/main/c/colord/libcolorhug-dev_1.0.6-1_i386.deb Size: 17480 MD5sum: 17bdd9f4726d20d86e37241c8d686b99 SHA1: f797ef587d294a1c01156f68714fe01eb68f0c22 SHA256: f1498015ca106f3dce912e6484e7fc2c5ff4cb8f2aa96c0d417007f2d4d35567 Description: library to access the ColorHug colourimeter -- development files Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 2b848b49bfa0ae456fb4d9fe1028bea1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcolorhug1 Priority: extra Section: graphics Installed-Size: 104 Maintainer: Christopher James Halse Rogers Architecture: i386 Source: colord Version: 1.0.6-1 Depends: libc6 (>= 2.7), libcolord1 (>= 0.1.29), libglib2.0-0 (>= 2.37.3), libgusb2 (>= 0.1.3) Pre-Depends: multiarch-support Filename: pool/main/c/colord/libcolorhug1_1.0.6-1_i386.deb Size: 21004 MD5sum: d0f897beabf5c44ac7df52d7f938c255 SHA1: da88c609655cf89b369efcde0f9449ef047fdb24 SHA256: 7bb170072028b8be4ddfa074660a2829f909da7be206aa9d5432763a3b58331c Description: library to access the ColorHug colourimeter -- runtime Multi-Arch: same Homepage: http://www.freedesktop.org/software/colord/ Description-md5: 5430db5db6b48bf89c6516c60d791c0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcolumbus1 Priority: optional Section: libs Installed-Size: 299 Maintainer: Ubuntu Developers Architecture: i386 Source: libcolumbus Version: 1.1.0+14.04.20140325.3-0ubuntu1 Depends: libcolumbus1-common (= 1.1.0+14.04.20140325.3-0ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/libc/libcolumbus/libcolumbus1_1.1.0+14.04.20140325.3-0ubuntu1_i386.deb Size: 79840 MD5sum: 315427b076fc938f64ccf622ae6cd0f6 SHA1: 9b5918878bae38dda9d2783a3c478843ad6380e2 SHA256: c591bbcccda67c746a7d18841c5476323d3d7b8c9aeae67939ce8da197252ed2 Description: error tolerant matching engine - shared library Multi-Arch: same Homepage: https://launchpad.net/libcolombus Description-md5: 1d8b3c73e578079ae9f55edfd2476ba0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libcolumbus1-common Priority: optional Section: libs Installed-Size: 31 Maintainer: Ubuntu Developers Architecture: all Source: libcolumbus Version: 1.1.0+14.04.20140325.3-0ubuntu1 Filename: pool/main/libc/libcolumbus/libcolumbus1-common_1.1.0+14.04.20140325.3-0ubuntu1_all.deb Size: 3182 MD5sum: c191c9219e8ed203342840e456c98746 SHA1: cbebc1d832f216613c7fe39d24cbc9f716814a3c SHA256: ddc33d3990e1c23b60f0de64767c50f28031de9d3e7bea77a58f6b407678e0a6 Description: error tolerant matching engine - common files Multi-Arch: foreign Homepage: https://launchpad.net/libcolombus Description-md5: 5b1a13928164c8e90dd3ac0c29030efa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libcolumbus1-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Architecture: i386 Source: libcolumbus Version: 1.1.0+14.04.20140325.3-0ubuntu1 Depends: libcolumbus1 (= 1.1.0+14.04.20140325.3-0ubuntu1) Filename: pool/main/libc/libcolumbus/libcolumbus1-dev_1.1.0+14.04.20140325.3-0ubuntu1_i386.deb Size: 6466 MD5sum: 38b433bf1677f39fe9b39188d66ca3ac SHA1: 6eea2360d391c96d1af7cd2224b5b38ea9f583bf SHA256: c6ad7138a92504d3acd1b5aa9a1c71ac92a178ea17aebd4a555cf90d5a852fc7 Description: error tolerant matching engine - development files Multi-Arch: same Homepage: https://launchpad.net/libcolombus Description-md5: c297587e723b1f50e5f866cbfb42b63d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcomerr2 Priority: required Section: libs Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Replaces: e2fsprogs (<< 1.34-1) Provides: libcomerr-kth-compat Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/e/e2fsprogs/libcomerr2_1.42.9-3ubuntu1_i386.deb Size: 62570 MD5sum: b02676edba6e456834b34760c94a428a SHA1: a3cbcd0e98210ffaf884a3e6bb2c31c87a2124cf SHA256: defd1336f963e465688d4c276998dfaf7474d2b2610b0f381cb3291af69a92b4 Description: common error description library Multi-Arch: same Homepage: http://e2fsprogs.sourceforge.net Description-md5: 5611f795c9947cfb9a2980a01506a1b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libcomerr2-dbg Priority: extra Section: libdevel Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Depends: libcomerr2 (= 1.42.9-3ubuntu1) Filename: pool/main/e/e2fsprogs/libcomerr2-dbg_1.42.9-3ubuntu1_i386.deb Size: 65662 MD5sum: c3b441bf5a8604b7dbdf55d4cb02fcf8 SHA1: 5f14b802c77264c16c90fbf031ca7d015787191f SHA256: 2bf87156d1da924037f7338e46940fa48dd0e3b1b474e4214d0e90166f9fe418 Description: debugging information for libcomerr2 Homepage: http://e2fsprogs.sourceforge.net Description-md5: 4013b4954dedd9e2a50c709e662dfc0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommon-sense-perl Priority: optional Section: perl Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 3.72-2build1 Depends: perl (>= 5.18.2), perl (<< 5.18.3~) Filename: pool/main/libc/libcommon-sense-perl/libcommon-sense-perl_3.72-2build1_i386.deb Size: 20304 MD5sum: bfc39054c76b80119823548bf2cd2d4b SHA1: 9648e98d00e32e8a3360c722a30e6cc0a9fe0fcc SHA256: 23aa8d27c8c4221d80228a2b4f174a2add55cf0ab6185251578546bd19133e32 Description: module that implements some sane defaults for Perl programs Homepage: http://search.cpan.org/dist/common-sense/ Description-md5: e7cabe54423a93004585d32869c8c1a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libcommons-cli-java Priority: optional Section: libs Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.2-3ubuntu1 Depends: libcommons-lang-java (>= 2.0) Filename: pool/main/libc/libcommons-cli-java/libcommons-cli-java_1.2-3ubuntu1_all.deb Size: 39008 MD5sum: f3a98e68fb7db7fb03d3583a27f1e9ff SHA1: 3389d6357f3fc8adfe05d6f250320bc48362a19c SHA256: 529d1c353eee51c4d706b5d3dbd1331efe026bc4f32ad09195db32ab2de6f0ea Description: API for working with the command line arguments and options Homepage: http://commons.apache.org/cli/ Description-md5: 081495f1c941687ec491aba0a644d409 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-codec-java Priority: optional Section: libs Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.9-1 Filename: pool/main/libc/libcommons-codec-java/libcommons-codec-java_1.9-1_all.deb Size: 214016 MD5sum: a863c457f1bf27251f574c9827240a54 SHA1: 615179906d4643e8fd723cc4068d2641a913074c SHA256: a8e08fbe4465504a7d6ff427c6ab816958a18f5fb9e9e51883d9a5a90487bf87 Description: encoder and decoders such as Base64 and hexadecimal codec Homepage: http://commons.apache.org/codec/ Description-md5: f0d1153fdd8793191c09de4105b02fc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-codec-java-doc Priority: optional Section: doc Installed-Size: 2810 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-codec-java Version: 1.9-1 Suggests: libcommons-codec-java Filename: pool/main/libc/libcommons-codec-java/libcommons-codec-java-doc_1.9-1_all.deb Size: 136122 MD5sum: 123b2c6b6065d3757924659a6bb7913a SHA1: 0813765db1c8662028c70c958d99963cd806701f SHA256: 6e79d95e38d96de615d57646ad155e11b8a853e00437127e1cd986a9a236e1fa Description: encoder and decoders such as Base64 and hexadecimal codec - documentation Homepage: http://commons.apache.org/codec/ Description-md5: dc9519c04fe756132c46205b11a7b2aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-collections3-java Priority: optional Section: libs Installed-Size: 729 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 3.2.1-6 Suggests: libcommons-collections3-java-doc Filename: pool/main/libc/libcommons-collections3-java/libcommons-collections3-java_3.2.1-6_all.deb Size: 602438 MD5sum: 5fde5cc0e14a119139babf1fb6344ef8 SHA1: 557843bb1ab27100b7583ae8acf18ab3ffa68a2d SHA256: 9ed2103615e960654a870a10de3a94423c4659c76f0b067c4bff1816fd803cb6 Description: Apache Commons Collections - Extended Collections API for Java Homepage: http://commons.apache.org/collections/ Description-md5: 4c7697aecd4b1c3a87686654049680ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libcommons-collections3-java-doc Priority: optional Section: libs Installed-Size: 14556 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-collections3-java Version: 3.2.1-6 Filename: pool/main/libc/libcommons-collections3-java/libcommons-collections3-java-doc_3.2.1-6_all.deb Size: 1077070 MD5sum: ac71043b0b2854ec8803be2fc981037f SHA1: 04422917df6306695a3bd8653e1f0e53622a4746 SHA256: 42ab47ccccdee7a7ee0e5c57446979c676d13460c4f81c475d3358d0c2053195 Description: Documentation for libcommons-collections3-java Homepage: http://commons.apache.org/collections/ Description-md5: e3f1eb5029394fb5f70496470789bb5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-compress-java Priority: optional Section: libs Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.6-1 Depends: libxz-java Filename: pool/main/libc/libcommons-compress-java/libcommons-compress-java_1.6-1_all.deb Size: 280140 MD5sum: 536594bd1c96980c12a42fd379314df5 SHA1: 9590d4d7b3d15eaabe53de8039f17280b774bc1c SHA256: 6b599bb10ea4566000fd53896032154d5cee281e1701cce2e5fb730e64bfa761 Description: Java API for working with compression and archive formats Homepage: http://commons.apache.org/compress/ Description-md5: 76de17b70e6e21e15df11e627978c90b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-dbcp-java Priority: optional Section: libs Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.4-3ubuntu1 Depends: libcommons-pool-java, libcommons-collections3-java Recommends: libgeronimo-jta-1.1-spec-java Suggests: libcommons-dbcp-java-doc Filename: pool/main/libc/libcommons-dbcp-java/libcommons-dbcp-java_1.4-3ubuntu1_all.deb Size: 148800 MD5sum: 0342cf94639067ae867d2c487ab325ce SHA1: 326ea8868c397ac8ded2a5a68b05a8519a01c2a4 SHA256: 00d9930bc79a8e61e02413efc511ceefa051413cc8747eac9ae67269918d5af2 Description: Database Connection Pooling Services Homepage: http://commons.apache.org/dbcp/ Description-md5: f2f7170da4a16dd656c8f4ad419adda9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libcommons-httpclient-java Priority: optional Section: libs Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-httpclient Version: 3.1-10.2 Depends: libcommons-logging-java, libcommons-codec-java Suggests: libcommons-httpclient-java-doc Filename: pool/main/c/commons-httpclient/libcommons-httpclient-java_3.1-10.2_all.deb Size: 290038 MD5sum: ffb75243a5237f24143a07d32f154351 SHA1: f67d59dd2a1fc40d84beebefc6b0f29389aeaf56 SHA256: 2edc95b33244fdd00712be9fe2c405a334071a3df363dfc1aec7cf65e3dddbb9 Description: A Java(TM) library for creating HTTP clients Homepage: http://hc.apache.org/httpclient-3.x Description-md5: 99727d397d64841b730572b9bf6b2abc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-httpclient-java-doc Priority: optional Section: libs Installed-Size: 14426 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-httpclient Version: 3.1-10.2 Suggests: libcommons-httpclient-java Filename: pool/main/c/commons-httpclient/libcommons-httpclient-java-doc_3.1-10.2_all.deb Size: 1517922 MD5sum: a9cfc9fd3204e765422c8951ff382597 SHA1: ef2b2c562fd43ac020bbb0b3cf19ab5aa071dac8 SHA256: daa9bf80f4096e1bbc86c129e49fae2bfa5e5d809c7f8febcaaf6a810cedaae9 Description: Documentation for libcommons-httpclient-java Homepage: http://hc.apache.org/httpclient-3.x Description-md5: 1070d64e1758482d619f5f0747f7157a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-io-java Priority: optional Section: libs Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-io Version: 2.4-2 Suggests: libcommons-io-java-doc Filename: pool/main/c/commons-io/libcommons-io-java_2.4-2_all.deb Size: 175848 MD5sum: 421de30d6e10473d22cecb07e3e988ca SHA1: 917acfb762b6d34ad3538b4f96a9aadc3dba4f71 SHA256: 2905eec038bf5cfb4a784823b6e433b72a53fa37b99ba9b0e43120deb6700a6f Description: Common useful IO related classes Homepage: http://commons.apache.org/io/ Description-md5: ab9a7ea305f82fb4e55b875ca4cdebe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-io-java-doc Priority: optional Section: doc Installed-Size: 3674 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-io Version: 2.4-2 Suggests: libcommons-io-java Filename: pool/main/c/commons-io/libcommons-io-java-doc_2.4-2_all.deb Size: 311380 MD5sum: df155f4a97abecdb822389045db732f6 SHA1: e55893be2710bd2bfd1e6bb1dc8e2e70d97e6aa4 SHA256: a189f4f207678580334c39556d0664d5a4bba7f57b435c0c65f6e6c7b86e612d Description: Common useful IO related classes - documentation Homepage: http://commons.apache.org/io/ Description-md5: 4208986ef444c6a3799df296be1e7b40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-lang-java Priority: optional Section: libs Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.6-3ubuntu2 Filename: pool/main/libc/libcommons-lang-java/libcommons-lang-java_2.6-3ubuntu2_all.deb Size: 269544 MD5sum: b8f439ab800d5e8b02ce1e391bb70d9f SHA1: 10dfb872ea0124b6835c98ada31366cee8b1ae36 SHA256: 87c2ac1b7c88b23c6d87882ac00d1605014a98c8fa0d814c0a04fb14ec282ba2 Description: Extension of the java.lang package Homepage: http://commons.apache.org/lang/ Description-md5: 9161abb49dba489be4e0433f38eb91fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-lang-java-doc Priority: optional Section: doc Installed-Size: 6618 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-lang-java Version: 2.6-3ubuntu2 Suggests: default-jdk-doc Filename: pool/main/libc/libcommons-lang-java/libcommons-lang-java-doc_2.6-3ubuntu2_all.deb Size: 520100 MD5sum: 9ecce0c2488fbd11dc852b787e5392b5 SHA1: 22ea277677c864f9ac9a0519d3acf67ec283b684 SHA256: 05e8d977c288e6cfbe64be17be4cc60bd18d0cdeb5bcd0fd6e19f26359464834 Description: Documentation for an extension of the java.lang package Homepage: http://commons.apache.org/lang/ Description-md5: ed7508efd02cb48f78275d96aa679a2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-logging-java Priority: optional Section: libs Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.3-1 Depends: libcommons-parent-java Suggests: libavalon-framework-java, libcommons-logging-java-doc, libexcalibur-logkit-java, liblog4j1.2-java, libservlet3.0-java Filename: pool/main/libc/libcommons-logging-java/libcommons-logging-java_1.1.3-1_all.deb Size: 120236 MD5sum: a0fd31a255cd5bd83622ae76c57661a9 SHA1: bdb9594641e2d1679503ee3b36cc3a902252d41b SHA256: 6de04da2b2e0ae481d5294c6f594d247910e28ae98fe8072cce009f429420f2f Description: common wrapper interface for several logging APIs Homepage: http://commons.apache.org/logging Description-md5: 73a7ea23210de9009f87c35d126ccfbd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-logging-java-doc Priority: optional Section: doc Installed-Size: 959 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-logging-java Version: 1.1.3-1 Filename: pool/main/libc/libcommons-logging-java/libcommons-logging-java-doc_1.1.3-1_all.deb Size: 116316 MD5sum: f1803454087e20bf1a04d74feac64390 SHA1: 0fde6080bb4e839bbf6f6c28ac8dc60310cf2fac SHA256: ae5f896bb4095560dd353b86b556a48d25eb446d494a4882f97a0ce1ff765ac5 Description: common wrapper interface for several logging APIs (documentation) Homepage: http://commons.apache.org/logging Description-md5: 53cdcf907ecf9a99d6246542131d7037 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-net-java Priority: optional Section: libs Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-net1-java Version: 1.4.1-5build1 Depends: libcommons-net1-java (= 1.4.1-5build1) Filename: pool/main/libc/libcommons-net1-java/libcommons-net-java_1.4.1-5build1_all.deb Size: 2472 MD5sum: ffb31b0225860c32d3a996c8d74fc570 SHA1: e7968c345cc71f0338e485475eb32ab14e74f4de SHA256: a47f04beb25304889dca3b4a1e1f76c880c232be9816ca78904d90b6e0960b32 Description: dummy package for upgrading to libcommons-net-java Homepage: http://commons.apache.org/net/ Description-md5: a503f3909f939e6f721b1efa0a665379 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-net1-java Priority: optional Section: java Installed-Size: 5224 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.4.1-5build1 Replaces: libcommons-net-java (<< 1.4.1-4~) Depends: liboro-java (>= 2.0.8) Conflicts: libcommons-net-java (<< 1.4.1-4~) Filename: pool/main/libc/libcommons-net1-java/libcommons-net1-java_1.4.1-5build1_all.deb Size: 584402 MD5sum: f6a0f790964651bfef71525bc4720db6 SHA1: 8c78099ec466ce9e70835272dc4e7b836a98f55b SHA256: 32e0198015c78b16ca0a13dc09ca51c1c591f2f4ad94aae8709cabfe866f40bb Description: internet protocol suite Java library Homepage: http://commons.apache.org/net/ Description-md5: 9a728e9eab438e51687c9363e60ad82d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-net2-java Priority: optional Section: java Installed-Size: 262 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.2-2 Suggests: libcommons-net2-java-doc Filename: pool/main/libc/libcommons-net2-java/libcommons-net2-java_2.2-2_all.deb Size: 193584 MD5sum: 92cdc7be1b34da71256eab8146195334 SHA1: dc743ec204bc8dffd776f33d9705afeec00c1362 SHA256: f629d4ca87f69041726a39bb58724b4adc23285a334b35dc4cb4d764b74f15a1 Description: internet protocol suite Java library Homepage: http://commons.apache.org/net/ Description-md5: 2ffffee07559c3a3e3e50730c14bee7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-net2-java-doc Priority: optional Section: doc Installed-Size: 5632 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libcommons-net2-java Version: 2.2-2 Recommends: default-jdk-doc Suggests: libcommons-net2-java Filename: pool/main/libc/libcommons-net2-java/libcommons-net2-java-doc_2.2-2_all.deb Size: 462364 MD5sum: ad663b9c62ba0c09c95d6689cab93842 SHA1: be65db1b5e3090caae4c7e00f1cb405164275839 SHA256: 21d767989ec75613f790d49a34714ef3cdf508406e7e786d3eed5af31f50b337 Description: internet protocol suite Java library - API docs Homepage: http://commons.apache.org/net/ Description-md5: e3e308bfb40230758e02c11e6753fecb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-parent-java Priority: optional Section: java Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-parent Version: 22-2build1 Depends: libapache-pom-java (>= 9) Filename: pool/main/c/commons-parent/libcommons-parent-java_22-2build1_all.deb Size: 6968 MD5sum: c73bfd5c49dcd677ced09f2362525dea SHA1: f74af2b4ece589b006c095e9f0b17e543bd14cf8 SHA256: ccc484bed85967667d6217b3efbe8eff52e02d4490aa0ab184b7fae39221fffa Description: Maven metadata for Apache Commons project Homepage: http://commons.apache.org/ Description-md5: d0073f82178a5a011e65b320564c5b57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-pool-java Priority: optional Section: libs Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-pool Version: 1.6-2 Filename: pool/main/c/commons-pool/libcommons-pool-java_1.6-2_all.deb Size: 104698 MD5sum: b7519f833b9a303167c61335f97412bf SHA1: 3c143d98bd33140a31349d0300267a8004ffa719 SHA256: 666059d4dd9e4accae0a6d1f6ec5c4122e1addd40b7110b462f1e88f4f77186a Description: pooling implementation for Java objects Homepage: http://commons.apache.org/pool/ Description-md5: 3a9df963586886381885c548196b37ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libcommons-pool-java-doc Priority: optional Section: doc Installed-Size: 1301 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-pool Version: 1.6-2 Recommends: default-jdk-doc Suggests: libcommons-pool-java Filename: pool/main/c/commons-pool/libcommons-pool-java-doc_1.6-2_all.deb Size: 121430 MD5sum: 8ec49b4034848dbcceed187c71417081 SHA1: ab5fa43ae2860b8ca0135adf1ba98a69115fdce9 SHA256: f7f6c46e98f6783a1024c5a3cafdd62069c08634720d07d84bba417f3d561e1d Description: pooling implementation for Java objects - documentation Homepage: http://commons.apache.org/pool/ Description-md5: b5d4dff62691b14e441858a4f24575b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-vfs-java Priority: optional Section: libs Installed-Size: 496 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-vfs Version: 2.0-3ubuntu1 Depends: libcommons-logging-java Recommends: ant, libcommons-collections3-java, libcommons-httpclient-java, libcommons-net2-java, libjsch-java Suggests: libcommons-vfs-java-doc Filename: pool/main/c/commons-vfs/libcommons-vfs-java_2.0-3ubuntu1_all.deb Size: 372648 MD5sum: 263a12fc464a59515c31e79484352207 SHA1: 91d1d99cdd81cec67a6bc908199714b622b2acdc SHA256: 4211702f391c6338c421e0a673c4180a04a6b2782de6fccf73798ecf2ceece3b Description: Java API for accessing various filesystems Homepage: http://commons.apache.org/vfs/ Description-md5: 8f23be4ffb3c69c4e3bb95bf6387e149 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcommons-vfs-java-doc Priority: optional Section: doc Installed-Size: 5999 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: commons-vfs Version: 2.0-3ubuntu1 Depends: libcommons-collections3-java-doc, libcommons-httpclient-java-doc, libcommons-logging-java-doc, libcommons-net2-java-doc Recommends: default-jdk-doc Suggests: libcommons-vfs-java Filename: pool/main/c/commons-vfs/libcommons-vfs-java-doc_2.0-3ubuntu1_all.deb Size: 454210 MD5sum: 4d0e2451052bf081705252e76ef3e46f SHA1: f6fdf2e9dc8bb459ff240a5d8afdd14c0552cb69 SHA256: 9edae37716adc2bc7a42dfcda56c3589f4efe4a40ed76f0e2ae2fdc62f2f09ca Description: Java API for accessing various filesystems - documentation Homepage: http://commons.apache.org/vfs/ Description-md5: 5d7572cd48b7c03c4eb03d3cd10b5a49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcompizconfig0 Priority: extra Section: libs Installed-Size: 521 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Depends: compiz-core (= 1:0.9.11+14.04.20140409-0ubuntu1), libc6 (>= 2.8), libgcc1 (>= 1:4.1.1), libprotobuf8, libstdc++6 (>= 4.1.1), libx11-6, libxml2 (>= 2.7.4) Filename: pool/main/c/compiz/libcompizconfig0_0.9.11+14.04.20140409-0ubuntu1_i386.deb Size: 115030 MD5sum: 9823a462e144e03cd69c4fdc5b867d22 SHA1: 33a710b8740c4873aeffb70b05c71a6253cf5e66 SHA256: e4b6e65078e7bff091f27ffac9a4a37ab7a709f238c94807be50028dc15804b3 Description: Settings library for plugins - OpenCompositing Project Description-md5: 9b1501bf431a077bb890354ada003ea2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libcompizconfig0-dev Priority: extra Section: libs Installed-Size: 234 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Depends: libcompizconfig0 (= 1:0.9.11+14.04.20140409-0ubuntu1), compiz-dev Filename: pool/main/c/compiz/libcompizconfig0-dev_0.9.11+14.04.20140409-0ubuntu1_i386.deb Size: 19824 MD5sum: b41f60ce6bcbfbdc6fe0c33f2d2c472d SHA1: 437c9642d9d4050d0840c35ba8b4c26f1d708707 SHA256: b8a46a20d239981d5b5621129272ac3e82ba56544a92709195be11791d2dabab Description: Development file for plugin settings - OpenCompositing Project Description-md5: 61d1c40aa4308fbedaf76a0b0daed3ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig++-dbg Priority: extra Section: debug Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: i386 Source: libconfig Version: 1.4.9-2 Depends: libconfig9 (= 1.4.9-2), libconfig++9 (= 1.4.9-2) Filename: pool/main/libc/libconfig/libconfig++-dbg_1.4.9-2_i386.deb Size: 77566 MD5sum: df333ada156ee1f4a40fbcd6a50bdef2 SHA1: 4bee0cca1ca46bc163e9c5e8945044956d761f6a SHA256: 9ac82b67957e941300bdb25491e57c22fe2413b3726002dc023622ed0de8bacb Description: parsing/manipulation of structured config files (C++ debug symbols) Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: fbe2762da28b88720f4093f85b6d0653 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig++-dev Priority: optional Section: libdevel Installed-Size: 442 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: i386 Source: libconfig Version: 1.4.9-2 Replaces: libconfig++8-dev (<< 1.4.8) Depends: libconfig++9 (= 1.4.9-2), libconfig-dev, pkg-config (>= 0.20) Breaks: libconfig++8-dev (<< 1.4.8) Filename: pool/main/libc/libconfig/libconfig++-dev_1.4.9-2_i386.deb Size: 107086 MD5sum: ea345f159b1d91442a0da62186bf651c SHA1: 9a280fd96f4ab741941df916b62dc5a4e542893b SHA256: e52bde7fa782f2e30509e86408993921f8865359b86195075f39757c00171c17 Description: parsing/manipulation of structured config files (C++ development) Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: f5222f17a36cd1f595adc29edaa8e337 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig++8-dev Priority: optional Section: libdevel Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: i386 Source: libconfig Version: 1.4.9-2 Depends: libconfig++-dev Filename: pool/main/libc/libconfig/libconfig++8-dev_1.4.9-2_i386.deb Size: 1768 MD5sum: d93f0e43ce729080a900f993280928e9 SHA1: 7889e1d568a2690c14685b63a3523546c8bb8b1a SHA256: 1a1c4a360686ffa252e217633e1962f5d8beb6ef8eb1920d53ad39d9cf6e658c Description: Transitional package for libconfig++-dev Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: cbbd85a6ac8cc27b5a39bddc176e3858 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig++9 Priority: optional Section: libs Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: i386 Source: libconfig Version: 1.4.9-2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/libc/libconfig/libconfig++9_1.4.9-2_i386.deb Size: 31266 MD5sum: 466c6e833c94c36e89ae110a3a945fb3 SHA1: a8918ca2cc97c86a5bdc689e097f21fba93629d4 SHA256: 639b0154efa204ddd13f6ccbcd0ab613b503e239fcbfdac7c87a6d94245ba968 Description: parsing/manipulation of structured configuration files (C++ binding) Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: 9a8df51133928631226892f0ee52493b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libconfig-auto-perl Priority: optional Section: perl Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.42-1 Depends: perl, libconfig-inifiles-perl, libio-string-perl, libxml-simple-perl, libyaml-perl (>= 0.67) Filename: pool/main/libc/libconfig-auto-perl/libconfig-auto-perl_0.42-1_all.deb Size: 18310 MD5sum: 9014d2e24a710762ef73ef8e8d947c26 SHA1: b29cfe1ff02dd09a8e1ae2a6d1a61c0a6f266ca5 SHA256: 696e7c3a3574dadb9c1574f2fd2143c4311786fead05c9983e2e33075ff7b66f Description: magical config file parser Homepage: http://search.cpan.org/dist/Config-Auto/ Description-md5: a21c1ce97ab57c25137804f64a29091a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig-dbg Priority: extra Section: debug Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: i386 Source: libconfig Version: 1.4.9-2 Depends: libconfig9 (= 1.4.9-2) Filename: pool/main/libc/libconfig/libconfig-dbg_1.4.9-2_i386.deb Size: 34488 MD5sum: 813382cabd496a7f087983690a9002cc SHA1: f225b9d9fd8fa2bead2d08ef66120fc613e9fee3 SHA256: b1413795471042ae270e60c96298e88b847c2cb4e6bb3d857411a87e350f7858 Description: parsing/manipulation of structured config files (debug symbols) Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: 760f799dc7517e67fc428436cec7cc8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig-dev Priority: optional Section: libdevel Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: i386 Source: libconfig Version: 1.4.9-2 Replaces: libconfig8-dev (<< 1.4.8) Depends: libconfig9 (= 1.4.9-2), pkg-config (>= 0.20) Recommends: libconfig-doc Breaks: libconfig8-dev (<< 1.4.8) Filename: pool/main/libc/libconfig/libconfig-dev_1.4.9-2_i386.deb Size: 81600 MD5sum: 77b030bd26a0459d14ccdc50b23f5c08 SHA1: 8e6c33d91c3e19ee36fa856d808b7e4bbfa4678d SHA256: 3142af04f6b708df1a51c65a93559fd89cebe9158b8b6874105df2f0688bdc6c Description: parsing/manipulation of structured config files (development) Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: 21ea54675951d05055b8aadda5a21743 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig-doc Priority: optional Section: doc Installed-Size: 319 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: all Source: libconfig Version: 1.4.9-2 Replaces: libconfig-dev (<= 1.4.8) Breaks: libconfig-dev (<= 1.4.8) Filename: pool/main/libc/libconfig/libconfig-doc_1.4.9-2_all.deb Size: 299532 MD5sum: 948bdda620a5228ebed7d25a0062ffa9 SHA1: 7db303167f41111b8e3e823b70b96251fa5705d7 SHA256: 1e08b3eff7009ecd55d3a85d954f2302b70ee2e776c5abff70c50ba3ec4bedda Description: parsing/manipulation of structured config files (Documentation) Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: 6392d9fb9c41805d37675a398591bb07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig-general-perl Priority: optional Section: perl Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Francesco Cecconi Architecture: all Version: 2.52-1 Depends: perl Filename: pool/main/libc/libconfig-general-perl/libconfig-general-perl_2.52-1_all.deb Size: 59036 MD5sum: 42dd64a2e8c1dd19c1f0efd52da3af41 SHA1: 4d705e617be957a597aceaeb62c604686fb277bc SHA256: eea06cd989822f74dba19911b1fbbcd4c1da037a5e8d9da2d452ca7e92451cd2 Description: Generic Configuration Module Homepage: http://search.cpan.org/dist/Config-General/ Description-md5: f788b822bb960d9c8c20404681f2f894 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libconfig-inifiles-perl Priority: extra Section: perl Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.82-1 Depends: liblist-moreutils-perl (>= 0.33) Filename: pool/main/libc/libconfig-inifiles-perl/libconfig-inifiles-perl_2.82-1_all.deb Size: 40042 MD5sum: cee7b6f0a27b1024e8c362493dad1d01 SHA1: 25cb83b73dd91ec6d747daa6b4a34235a3a7dba9 SHA256: 47360f3acd7592f8fe5cb649b9875dd1415e8196c03841c19c3519c07797e519 Description: Read .ini-style configuration files Homepage: http://search.cpan.org/dist/Config-IniFiles/ Description-md5: d24d974f36f7f51c4a836526d3ca23a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libconfig-tiny-perl Priority: optional Section: perl Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Dominic Hargreaves Architecture: all Version: 2.20-1 Depends: perl Filename: pool/main/libc/libconfig-tiny-perl/libconfig-tiny-perl_2.20-1_all.deb Size: 13562 MD5sum: 8317bc8a88186d5bb1ea6642b018859e SHA1: a8109fcb766d0fddb072a1980dd7be5870247539 SHA256: a05d7333b313d279252f09b3bc1db0dafb02e0e8f57af67249aefbf8518f2d8d Description: Read/Write .ini style files with as little code as possible Homepage: http://search.cpan.org/dist/Config-Tiny/ Description-md5: 2ed241fe044ca857ea722391dda4ed88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig8-dev Priority: optional Section: libdevel Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: i386 Source: libconfig Version: 1.4.9-2 Depends: libconfig-dev Filename: pool/main/libc/libconfig/libconfig8-dev_1.4.9-2_i386.deb Size: 1762 MD5sum: d4ff1cd07f6385d8c549a54cf7c558df SHA1: 4c09a962fc5896cff4ce587a0a6b6f6c903c0d05 SHA256: 2370cd83352c9d23c74681f28e5ba103ab53e762e4c497597ceb833f1c99b957 Description: Transitional package for libconfig-dev Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: 31c557599e2ff6f782f0af9b8f4e2846 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconfig9 Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan McCrohan Architecture: i386 Source: libconfig Version: 1.4.9-2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libc/libconfig/libconfig9_1.4.9-2_i386.deb Size: 21574 MD5sum: f88d2eaf1a20e3745348025a51eada47 SHA1: 0cf1091631dbe19511f7a0bc8eead368e8cc926f SHA256: bfbe6926bf187b49c54229e7a0d5cf62f991570c37c6cc75dfaef0873179fa15 Description: parsing/manipulation of structured configuration files Multi-Arch: same Homepage: http://www.hyperrealm.com/libconfig/ Description-md5: f9e4a016d7fc40b75858220651e186b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libconvert-asn1-perl Priority: optional Section: perl Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.26-1 Depends: perl, libmath-bigint-perl (>= 1.997) | perl (>= 5.15.3) Filename: pool/main/libc/libconvert-asn1-perl/libconvert-asn1-perl_0.26-1_all.deb Size: 43218 MD5sum: 9d1ed2ec26285221b50a4f523477f2aa SHA1: a0b83ea75a3e08a45c92a09ee72a0b920d5d45f3 SHA256: 307e6c96346fece2e130074e7515f0fca395f1793c89936e9ec8ad9dc2613d8d Description: Perl module for encoding and decoding ASN.1 data structures Homepage: http://search.cpan.org/dist/Convert-ASN1/ Description-md5: 95c0985828ade60ac629fccf28e83751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libconvert-binhex-perl Priority: optional Section: perl Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.123-1 Depends: perl Filename: pool/main/libc/libconvert-binhex-perl/libconvert-binhex-perl_1.123-1_all.deb Size: 32200 MD5sum: 633414005f9bf75a4c3151a26c4eb38a SHA1: e327452d6045bebc5a9a093b0af73903194044db SHA256: ef65c62af00220e1fc7b89f2227dff67aada2179bf20b75da55145412ac466f4 Description: Perl5 module for extracting data from macintosh BinHex files Homepage: https://metacpan.org/release/Convert-BinHex/ Description-md5: 1336112e61403d754353a49e3bfb2b2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libconvert-tnef-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.18-1 Depends: perl, libio-stringy-perl, libmime-tools-perl Filename: pool/main/libc/libconvert-tnef-perl/libconvert-tnef-perl_0.18-1_all.deb Size: 19742 MD5sum: 2830bbc8caf0406018d60efa0ee27cd7 SHA1: 3489f9687aa359d050b8c5a91a3541a96134bc87 SHA256: 919914ba106035c41fee5236fbc36643338145ce867ff24b0094adc8d0a44dfd Description: Perl module to read TNEF files Homepage: http://search.cpan.org/dist/Convert-TNEF/ Description-md5: 10ea4ce87255fafa7cdf59ba7808ae75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libconvert-uulib-perl Priority: optional Section: perl Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1:1.4~dfsg-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4) Filename: pool/main/libc/libconvert-uulib-perl/libconvert-uulib-perl_1.4~dfsg-1build3_i386.deb Size: 100322 MD5sum: c63a8ea939654956b98a93339c0288f0 SHA1: cebd89b5e911d0aeb25f1725b994c44c1291a302 SHA256: 21e96e5f06754e9e7a5e515b9fbadae9e165b2d9c3fb6e0388b3e21b78df534d Description: Perl interface to the uulib library (a.k.a. uudeview/uuenview) Homepage: http://search.cpan.org/dist/Convert::UUlib/ Description-md5: ad0fefb3ebad6ecaa1f26cdfdfa5e762 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcorosync-common-dev Priority: optional Section: libdevel Installed-Size: 235 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libcorosync-common4 (= 2.3.3-1ubuntu1), libqb-dev Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libcorosync-common-dev_2.3.3-1ubuntu1_i386.deb Size: 7068 MD5sum: 37d6deae2b21e8d8b530304a2322191f SHA1: 72e7e8f21e6a69976c306423aaca0a9225f2474a SHA256: 9eb1657eb829fee150637adfd075039dd86710fb207bfa1fc99975324374a660 Description: Standards-based cluster framework, common devel files Description-md5: 9f69c5d4e0e003621503cdd3322c20a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcorosync-common4 Priority: optional Section: libs Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.1.3) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libcorosync-common4_2.3.3-1ubuntu1_i386.deb Size: 6576 MD5sum: 58de83ee5119fad6467dae447b72d0d3 SHA1: ffad21e824c9e45d499b30c612084c045870528e SHA256: 64aa2c06c51215dc6437223ff6e17a448456e5c77a9446ee6e5d7afb4a0e5e86 Description: Standards-based cluster framework, common library Description-md5: e2510e42f361d7ebd6029fbbba636768 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcorosync-dev Priority: optional Section: libdevel Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: all Source: corosync Version: 2.3.3-1ubuntu1 Depends: libcfg-dev, libcmap-dev, libcorosync-common-dev, libcpg-dev, libquorum-dev, libsam-dev, libtotem-pg-dev, libvotequorum-dev Conflicts: libopenais-dev (<< 0.85), libopenais-legacy-dev (<< 1.0.0) Filename: pool/main/c/corosync/libcorosync-dev_2.3.3-1ubuntu1_all.deb Size: 3270 MD5sum: 422aefa161dc439b87287bc3a4d1bd2c SHA1: 4a7dbf56313cbb702920b07956455066882803e0 SHA256: 38b43185ba4c43bd4dfe8b66fb0eacee47dffcb4d68b8168a453b04fb480df80 Description: Standards-based cluster framework (transitional package) Description-md5: 6e6d0431e37192faa27fa9bcdcf6fa08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcorosync4 Priority: optional Section: libs Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: all Source: corosync Version: 2.3.3-1ubuntu1 Depends: libcfg6, libcmap4, libcorosync-common4, libcpg4, libquorum5, libsam4, libtotem-pg5, libvotequorum6 Conflicts: libopenais2 (<< 0.85) Filename: pool/main/c/corosync/libcorosync4_2.3.3-1ubuntu1_all.deb Size: 3254 MD5sum: 23db5d16f577b8e9743ca295357b9c46 SHA1: 6d80d40ae3da305df79678c288250acf7d5bcebf SHA256: 94aad13ddc2f1757f902cba064e5e5a6301a1fced0889540ead5d0ba1f6fe716 Description: Standards-based cluster framework (transitional package) Description-md5: 0733b47ac69d02d40f10868bc8aeac0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcpan-changes-perl Priority: optional Section: perl Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.27-1 Depends: perl, perl (>= 5.11.4) | libversion-perl Filename: pool/main/libc/libcpan-changes-perl/libcpan-changes-perl_0.27-1_all.deb Size: 27566 MD5sum: ac851aeb76831362f5693c46a3ff6527 SHA1: 4f8a39e4bc2369fd738842224cd175b2ef381e0b SHA256: b23e6e6e6f3b88dc6e4dcca53758b513f26226f864579712541644dfcf3fa23e Description: module for reading and writing CPAN Changes files Homepage: https://metacpan.org/release/CPAN-Changes/ Description-md5: 2e59ee9cf3588f641e251e3a898749ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcpan-meta-check-perl Priority: optional Section: perl Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.007-1 Depends: libcpan-meta-perl (>= 2.120920), libcpan-meta-requirements-perl, perl (>= 5.14) | libmodule-metatadata-perl, perl Filename: pool/main/libc/libcpan-meta-check-perl/libcpan-meta-check-perl_0.007-1_all.deb Size: 7716 MD5sum: c4e02e9ac97e0be591cb5b2eb14ad744 SHA1: 09f887e96b5a94f693993bc7bde0ce10d202cee9 SHA256: f170d63494839258d04e26429c4216e6164ea2bf8dc9f859bfc2673dc4ec33fb Description: verify requirements in a CPAN::Meta object Homepage: http://search.cpan.org/dist/CPAN-Meta-Check/ Description-md5: fdb3101dc776ee51f79469ae21e1e0e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcpan-meta-perl Priority: optional Section: perl Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.133380-2 Depends: perl, liblist-moreutils-perl, perl (>= 5.15.0) | libjson-pp-perl, perl (>= 5.17.1) | libcpan-meta-requirements-perl, perl (>= 5.17.1) | libcpan-meta-yaml-perl, perl (>= 5.17.1) | libparse-cpan-meta-perl (>= 1.4403) Filename: pool/main/libc/libcpan-meta-perl/libcpan-meta-perl_2.133380-2_all.deb Size: 69174 MD5sum: 4067458bb20331f3fe68f7e5b9043b2a SHA1: 929044b07e85b77f31a5108a80a6458a03874ada SHA256: fc1706673e3a1bb10ea067531fdc8aa7ceb31ec752d236743311993b1c2717d2 Description: Perl module to access CPAN distributions metadata Homepage: https://metacpan.org/release/CPAN-Meta Description-md5: ebe59ab652f4f628152652601afd7b16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcpg-dev Priority: optional Section: libdevel Installed-Size: 367 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libcpg4 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libcpg-dev_2.3.3-1ubuntu1_i386.deb Size: 52678 MD5sum: 325947a66ae9a0d1ba7e4357d9992fc6 SHA1: e2ebeac18c170217fc4e65bde47b2a5262d2737d SHA256: 3c6aa283629ebe0c1e211838c0f891d7ff92d6de127b549305ee4140e33858b4 Description: Standards-based cluster framework, Cpg devel files Description-md5: 5fa5451460cbdcc4cc8217f081b6f257 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcpg4 Priority: optional Section: libs Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.4), libcorosync-common4 (>= 2.3.3), libqb0 Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libcpg4_2.3.3-1ubuntu1_i386.deb Size: 9998 MD5sum: 255ffb08484908c24337ebf4b14e43a5 SHA1: 44c7ea03648b02b6a2a5cab741428bc737603ca1 SHA256: a841449fa4499df9119b14d7c55abfb6529daf5205243193494abf5fe448d8c3 Description: Standards-based cluster framework, Cpg library Description-md5: 9b778c6c94d6c27e4761b03ab11317f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcppunit-1.13-0 Priority: optional Section: libs Installed-Size: 259 Maintainer: Ubuntu Developers Original-Maintainer: Steve M. Robbins Architecture: i386 Source: cppunit Version: 1.13.1-2ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/c/cppunit/libcppunit-1.13-0_1.13.1-2ubuntu1_i386.deb Size: 77152 MD5sum: 8aa72866ea4850a642d4586937b3caff SHA1: f07a1e46709bba83ce4948153ce8d5e21db716c8 SHA256: a3f977128fb88bdcb2f8f01ef097eac66d3dfbc4247ef1915c7705e0837aa389 Description: Unit Testing Library for C++ Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/cppunit Description-md5: dca7bb14a898276dca99f38b635142d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcppunit-dev Priority: optional Section: libdevel Installed-Size: 733 Maintainer: Ubuntu Developers Original-Maintainer: Steve M. Robbins Architecture: i386 Source: cppunit Version: 1.13.1-2ubuntu1 Replaces: cppunit (<< 1.10.0-3) Depends: libcppunit-1.13-0 (= 1.13.1-2ubuntu1) Suggests: libcppunit-doc Filename: pool/main/c/cppunit/libcppunit-dev_1.13.1-2ubuntu1_i386.deb Size: 129560 MD5sum: 96d89018d414c2da9677ae360be4f597 SHA1: 48898fe96153d411e712a10d951ee67f96f86b90 SHA256: 1b31f8892ec98100712a38e5f95015bb79750bf6335edeae3ccbcac11081eb50 Description: Unit Testing Library for C++ Homepage: http://www.freedesktop.org/wiki/Software/cppunit Description-md5: dca7bb14a898276dca99f38b635142d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcppunit-doc Priority: optional Section: doc Installed-Size: 4838 Maintainer: Ubuntu Developers Original-Maintainer: Steve M. Robbins Architecture: all Source: cppunit Version: 1.13.1-2ubuntu1 Replaces: cppunit (<< 1.10.0-3), libcppunit-dev (<< 1.10.2-6) Conflicts: cppunit (<< 1.10.0-3), libcppunit-dev (<< 1.10.2-6) Filename: pool/main/c/cppunit/libcppunit-doc_1.13.1-2ubuntu1_all.deb Size: 483480 MD5sum: 485997ff4908cb774eb49cd26c48eda2 SHA1: d33f4fb7859ed290c7415de3f1308d6f9b5b52fe SHA256: 8be2fc5066d113470fe06778ac47b2cb61ddfd4c22d71ac9298b58035bc1a1d0 Description: Unit Testing Library for C++ Homepage: http://www.freedesktop.org/wiki/Software/cppunit Description-md5: dca7bb14a898276dca99f38b635142d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcppunit-subunit-dev Priority: optional Section: libdevel Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: subunit Version: 0.0.18-0ubuntu7 Depends: libcppunit-subunit0 (= 0.0.18-0ubuntu7) Filename: pool/main/s/subunit/libcppunit-subunit-dev_0.0.18-0ubuntu7_i386.deb Size: 8288 MD5sum: f2ebd6f16d8994e1430248f21494c667 SHA1: d2ac2dcfab0d93bea051a151aa450d5b5c7a6366 SHA256: 06847d203dbf7ca68bfe53d27dfd14f65db2f8d76130e1fbe0315c72bd0913b1 Description: SubunitTestProgressListener for CPPUnit - Development headers Homepage: http://code.launchpad.net/subunit Description-md5: 08b4f72b7a686430a6e3c1c2b2dde6fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcppunit-subunit0 Priority: optional Section: devel Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: subunit Version: 0.0.18-0ubuntu7 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/s/subunit/libcppunit-subunit0_0.0.18-0ubuntu7_i386.deb Size: 8922 MD5sum: 377ff437e386fbc8efa068be0b84cd45 SHA1: c3c9d66acdad051fb38684206fddbd9708a38c69 SHA256: 09c2756f0479f406c609bd14603752cf13a0e31e843796a879a53ee542dfc5db Description: SubunitTestProgressListener for CPPUnit - C++ shared library Multi-Arch: same Homepage: http://code.launchpad.net/subunit Description-md5: 3ea9828398b961d84b4bcf0c84e16d64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrack2 Priority: optional Section: libs Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Jan Dittberner Architecture: i386 Source: cracklib2 Version: 2.9.1-1build1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: cracklib-runtime Filename: pool/main/c/cracklib2/libcrack2_2.9.1-1build1_i386.deb Size: 26316 MD5sum: 9accf52264c4f765b66f254b134a7a74 SHA1: bd4782b5349a6c0bee95849cef38a5856f40adf8 SHA256: e0a40e0aa4e1efd21639d2f0f5e5d0cbaca5a3ba67ccaf6f6032cc05de5c9ebf Description: pro-active password checker library Multi-Arch: same Homepage: http://sourceforge.net/projects/cracklib Description-md5: 7c7145f5450c1a0c56b8fff046f9d67e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: libcrack2-dev Priority: extra Section: libdevel Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Jan Dittberner Architecture: i386 Source: cracklib2 Version: 2.9.1-1build1 Depends: libcrack2 (= 2.9.1-1build1) Recommends: cracklib-runtime Filename: pool/main/c/cracklib2/libcrack2-dev_2.9.1-1build1_i386.deb Size: 19732 MD5sum: bf782c4e0d5f4dd3c9e02cf591f538ac SHA1: 01b08cb7754122193a85b4fdb8bddd0b7a45c712 SHA256: 52d12e7b27e6409ab9cc2532cc98fa73d57d6d73babdc1777d9990a4b5e469c9 Description: pro-active password checker library - development files Homepage: http://sourceforge.net/projects/cracklib Description-md5: 0779bde9a363a04a44e6699096819016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrmcluster4 Priority: optional Section: libs Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcrmcluster1, libcrmcluster2, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libbz2-1.0, libc6 (>= 2.4), libcmap4 (>= 2.3.0), libcorosync-common4 (>= 2.3.0), libcpg4 (>= 2.3.0), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.16.0), libplumb2 (>= 1.0.11+hg2754), libqb0, libquorum5 (>= 2.3.0), libstonithd2 (>= 1.1.10+git20130802), libxml2 (>= 2.7.4) Conflicts: libcrmcluster1, libcrmcluster2, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libcrmcluster4_1.1.10+git20130802-1ubuntu2_i386.deb Size: 30188 MD5sum: 097890dc7e6f233d67d32981e290ebdd SHA1: 14ac0cb7c1defb68a127a3a8fe301cc88af0b40b SHA256: 2e3bc4085f1a94f20bd08b8fc8ee5c27cf3eb4bac83d95a785aa8245a2d359ff Description: Pacemaker libraries - CRM Homepage: http://clusterlabs.org/ Description-md5: a892ca8a76afa79809cd4a0148b7b15b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcrmcluster4-dev Priority: optional Section: libdevel Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcrmcluster1-dev, libcrmcluster2-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libcrmcluster4 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libcrmcluster1-dev, libcrmcluster2-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libcrmcluster4-dev_1.1.10+git20130802-1ubuntu2_i386.deb Size: 50752 MD5sum: a74a63953b1d80edb6c00b597a8bb7f5 SHA1: b0b597ea40132f42094c1504c9bf260b531814d4 SHA256: ac48cdb0f84523b2a9ab36f35ac858b0cc176c0eaec845df4dfcceca1e53e3d2 Description: Development file for pacemaker's crm library Homepage: http://clusterlabs.org/ Description-md5: 8e8b9f56e872e331ed3643e7092c0d20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrmcommon3 Priority: optional Section: libs Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcrmcommon2, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libbz2-1.0, libc6 (>= 2.17), libglib2.0-0 (>= 2.28.0), libgnutls26 (>= 2.12.17-0), libqb0, libuuid1 (>= 2.16), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25) Conflicts: libcrmcommon2, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libcrmcommon3_1.1.10+git20130802-1ubuntu2_i386.deb Size: 86848 MD5sum: 7b0585e451b5ce0f90135df02b5200fb SHA1: 2704dd875b3c3f6cccd3c6dc2b751b6725e3b94d SHA256: eb7d417631afce79b83b4ab99edc5c30baec961701012828da167d802db4744e Description: Pacemaker libraries - common CRM Homepage: http://clusterlabs.org/ Description-md5: f0a505f556eae75644cdd2bc62447550 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcrmcommon3-dev Priority: optional Section: libdevel Installed-Size: 464 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libcrmcommon2-dev, pacemaker-dev (<< 1.1.8+git20121010-1) Depends: libcrmcommon3 (= 1.1.10+git20130802-1ubuntu2), cluster-glue-dev (>= 1.0.11+hg2754) Conflicts: libcrmcommon2-dev, pacemaker-dev (<< 1.1.8+git20121010-1) Filename: pool/main/p/pacemaker/libcrmcommon3-dev_1.1.10+git20130802-1ubuntu2_i386.deb Size: 107076 MD5sum: 7b9ef5bd185dc81a612fafb9ac935814 SHA1: 81db8ba5a3c46bbf88d634fb1be5210e9af4d899 SHA256: ce8cfc76100f1a790bcee555dbdd07adece6cbeff438c6e57660ace9f4e9fa2d Description: Development file for pacemaker's common library Homepage: http://clusterlabs.org/ Description-md5: 58679e4fb14f5fff47a5f79805af3682 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrmservice1 Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Depends: libc6 (>= 2.8), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libqb0 Filename: pool/main/p/pacemaker/libcrmservice1_1.1.10+git20130802-1ubuntu2_i386.deb Size: 16722 MD5sum: c629b20388cd9a650341d833dbfa5aa1 SHA1: 34d02691dc92f2ec45f0d821718da704d39da44d SHA256: 800ae12dbfe0accefcf9a8153ed27de2decc1a6249516928b54968d31e30d1d3 Description: Pacemaker libraries - crmservice Homepage: http://clusterlabs.org/ Description-md5: c43d70cca679c3f725d486ebcc426fb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcrmservice1-dev Priority: optional Section: libdevel Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Depends: libcrmservice1 (= 1.1.10+git20130802-1ubuntu2) Filename: pool/main/p/pacemaker/libcrmservice1-dev_1.1.10+git20130802-1ubuntu2_i386.deb Size: 18528 MD5sum: e90d7e43665e31dc368d4f6d50375d14 SHA1: 5b082eb43172797d36bf4ddc2f8f5043ba08d914 SHA256: 934567eddbd685360faaac76fec374bfb1481c6f576d84247fda6662cac3f395 Description: Development file for pacemaker's crmservice library Homepage: http://clusterlabs.org/ Description-md5: 0833331082c9a7f7951b058c9fc388e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcroco3 Priority: optional Section: libs Installed-Size: 342 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libcroco Version: 0.6.8-2ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.16.0), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/libc/libcroco/libcroco3_0.6.8-2ubuntu1_i386.deb Size: 81090 MD5sum: 3ab53a03bb155dc46e300b0449bc6b05 SHA1: c97fa0b82dad9655b8d84b8cca84fc695c5ffa5e SHA256: 47ad32b52f9c3f8884ffe10c2ca575f79032934d56cc1aad97c0c26ffc631b1d Description: Cascading Style Sheet (CSS) parsing and manipulation toolkit Multi-Arch: same Description-md5: f77093d47da59d05dfec832709bee0eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcroco3-dev Priority: optional Section: libdevel Installed-Size: 550 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libcroco Version: 0.6.8-2ubuntu1 Depends: libcroco3 (= 0.6.8-2ubuntu1), libxml2-dev (>= 2.4.23), libglib2.0-dev (>= 2.0) Filename: pool/main/libc/libcroco/libcroco3-dev_0.6.8-2ubuntu1_i386.deb Size: 97118 MD5sum: 6a3e4fca7b77fea3debfb35aa2e3f28f SHA1: b3037bf547197cf4d948ece5fae67c5cd52cba90 SHA256: 2de261cce4d7166595f0fe20c8593d19935ad25384efda932f07399edb4b61b3 Description: Cascading Style Sheet (CSS) parsing and manipulation toolkit Multi-Arch: same Description-md5: db6605ebc061de99b3182ccf1ad077b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrypt-openssl-bignum-perl Priority: optional Section: perl Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.04-4build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3), libssl1.0.0 (>= 1.0.0) Filename: pool/main/libc/libcrypt-openssl-bignum-perl/libcrypt-openssl-bignum-perl_0.04-4build1_i386.deb Size: 23212 MD5sum: b350599ef5bf7858d85feb8322980097 SHA1: 04905cccb37d101497655c05d2d421c270ff8fa1 SHA256: fddb4c42f6790e531b54c5948d492431dd29be406f19aeb4d6ef808776a3cb94 Description: Perl module to access OpenSSL multiprecision integer arithmetic libraries Homepage: http://perl-openssl.sourceforge.net/ Description-md5: 6dbdf541a3152b7a4d7fd11123451e3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcrypt-openssl-random-perl Priority: optional Section: perl Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.04-1build6 Depends: libc6 (>= 2.1.3), libssl1.0.0 (>= 1.0.0), perl (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libc/libcrypt-openssl-random-perl/libcrypt-openssl-random-perl_0.04-1build6_i386.deb Size: 11162 MD5sum: 4dd425f7f68739716b8ad1b5bbe95ef7 SHA1: 09a18a16534d4a3785c4745ef354ce6a6a5981fc SHA256: df6eff97896123b595529fd49cabbf72797b8cdbbefaa04c5ac0387cc4216060 Description: Access to the OpenSSL pseudo-random number generator Homepage: http://perl-openssl.sourceforge.net/ Description-md5: 92be18be42f2aeaec53a59896805704e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcrypt-openssl-rsa-perl Priority: optional Section: perl Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.28-1build1 Depends: libc6 (>= 2.1.3), libssl1.0.0 (>= 1.0.0), perl (>= 5.18.1-4), perlapi-5.18.1, libcrypt-openssl-bignum-perl Filename: pool/main/libc/libcrypt-openssl-rsa-perl/libcrypt-openssl-rsa-perl_0.28-1build1_i386.deb Size: 25036 MD5sum: 7ebed3c6b25ea0f64944cf3e746de28c SHA1: 0eafae78039908dbb5f9f5e3859e4fa63f6a0dfd SHA256: 6519f2c07582b62f931cdf2d8d734918379486676a04c985da7df3ff2d075780 Description: module for RSA encryption using OpenSSL Homepage: http://perl-openssl.sourceforge.net/ Description-md5: 67bab379e746ed51e6818294689a0db5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcrypt-passwdmd5-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Bart Martens Architecture: all Version: 1.3-10 Depends: perl Filename: pool/main/libc/libcrypt-passwdmd5-perl/libcrypt-passwdmd5-perl_1.3-10_all.deb Size: 10384 MD5sum: 9e6f58659b4eaf111a13e3fd398e4e86 SHA1: ee3de9efb004651f0ae891af27346c9538bd93ee SHA256: ce19edadf5094edc374cad3d65eb65814c333abcb6e9e620ba527c0d671c9ee6 Description: interoperable MD5-based crypt() for perl Homepage: http://search.cpan.org/dist/Crypt-PasswdMD5/ Description-md5: 4c8749ca27c33021eee507bb6519d7e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcryptsetup-dev Priority: optional Section: libdevel Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cryptsetup Team Architecture: i386 Source: cryptsetup Version: 2:1.6.1-1ubuntu1 Depends: libcryptsetup4 (= 2:1.6.1-1ubuntu1) Filename: pool/main/c/cryptsetup/libcryptsetup-dev_1.6.1-1ubuntu1_i386.deb Size: 14842 MD5sum: 5743da2c705eb479d73e7f627be9d8c2 SHA1: 67401cec02bf651467aa1deaafe31ee45e7b45f7 SHA256: dc2fae367c7a63afa775db421e48d24792b5c129de0619a7afeb286a5f4a348e Description: disk encryption support - development files Homepage: http://code.google.com/p/cryptsetup/ Description-md5: f9f5cbe91fe7a25a22798d2891748370 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcryptsetup4 Priority: optional Section: libs Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cryptsetup Team Architecture: i386 Source: cryptsetup Version: 2:1.6.1-1ubuntu1 Depends: libc6 (>= 2.15), libdevmapper1.02.1 (>= 2:1.02.74), libgcrypt11 (>= 1.4.6-3), libuuid1 (>= 2.16), libgpg-error0 (>= 1.10-0.1) Filename: pool/main/c/cryptsetup/libcryptsetup4_1.6.1-1ubuntu1_i386.deb Size: 78812 MD5sum: 9b0bc6746693a0625f73364fee089b04 SHA1: 06110c7a66f69bc2fc72e9c45d135fefb70a5671 SHA256: dffff3b983e502236800d3b8177ef564a06445531b061e80fe7677f47c101267 Description: disk encryption support - shared library Homepage: http://code.google.com/p/cryptsetup/ Description-md5: 4d51c661b0adee027561376db6e58853 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libcsparse3.1.2 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libcsparse3.1.2_4.2.1-3ubuntu1_i386.deb Size: 26144 MD5sum: 66a0b29669e80915f1de75f9dddfbaa4 SHA1: c9213712b2210314e82e6e0a4265cb7c08493053 SHA256: 030b335ee99b4c55e642c0ab0a0774d9a1736c48222db481cd9ca18e7fbb5005 Description: concise sparse matrix library Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 6530f377281485af9bf1b1318db9dd6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcss-minifier-xs-perl Priority: optional Section: perl Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.09-1 Depends: perl (>= 5.18.1-4build1), perlapi-5.18.1, libc6 (>= 2.3) Filename: pool/main/libc/libcss-minifier-xs-perl/libcss-minifier-xs-perl_0.09-1_i386.deb Size: 14918 MD5sum: c2f5c2ecbae44aa7d5be801c3a5bef05 SHA1: 98db76032e1f6a81f5586eba7f1969e4e19c2347 SHA256: 9e2666098c3f43905197d222e3a807008d223cafef0c02512d12726193e93959 Description: XS based CSS minifier Homepage: https://metacpan.org/release/CSS-Minifier-XS/ Description-md5: e509baab9bc260a0df11d72e6e9f47f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libct4 Priority: optional Section: libs Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: freetds Version: 0.91-5 Depends: libc6 (>= 2.17), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), freetds-common Pre-Depends: multiarch-support Filename: pool/main/f/freetds/libct4_0.91-5_i386.deb Size: 160078 MD5sum: 4040ca56985f0be751d5b4e4ba2bb54f SHA1: fd5c8fcac014b5935ce99cbf057e38730f65bd3c SHA256: 025a549eb0daaea33aa7ef16a4a22083d77f4d261f16df9eb7d97212b72e890f Description: libraries for connecting to MS SQL and Sybase SQL servers Multi-Arch: same Homepage: http://www.freetds.org/ Description-md5: 88bdfc8ca47c9a060f885576c2df10f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libcunit1 Priority: optional Section: libs Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: i386 Source: cunit Version: 2.1-2.dfsg-1 Depends: libc6 (>= 2.11) Filename: pool/main/c/cunit/libcunit1_2.1-2.dfsg-1_i386.deb Size: 28086 MD5sum: bf58db700c57bda73e922b15d2f8dc4e SHA1: 5d04f6f106a0df6ee9d2329e9bd5423be094269a SHA256: 64d2922ddc9bc02a03b2dde2feded714a2b22abd6e285e94dd2b17a852ad8882 Description: Unit Testing Library for C Homepage: http://cunit.sourceforge.net/ Description-md5: d0b137bee12b1343ccbd0196c105fe5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcunit1-dev Priority: optional Section: libdevel Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: i386 Source: cunit Version: 2.1-2.dfsg-1 Depends: libcunit1 (= 2.1-2.dfsg-1) Suggests: libcunit1-doc (= 2.1-2.dfsg-1) Filename: pool/main/c/cunit/libcunit1-dev_2.1-2.dfsg-1_i386.deb Size: 61058 MD5sum: e1d28e87443b84e96d0788ed0b1af7b2 SHA1: 01e0ddb9418d3a5901c524a4f42e487f4943d3f4 SHA256: ec10d4893c95db561e783c3fa01139c2d0f626329413a26b33a38d61abac8281 Description: Unit Testing Library for C -- development files Homepage: http://cunit.sourceforge.net/ Description-md5: dfbf5c3edeed16e4dd326140c16cdd1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcunit1-doc Priority: optional Section: doc Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: all Source: cunit Version: 2.1-2.dfsg-1 Filename: pool/main/c/cunit/libcunit1-doc_2.1-2.dfsg-1_all.deb Size: 134210 MD5sum: 7e44b435a6e54767aeb1246fe9635c87 SHA1: 8cbfb946c0d812ddc9b9f806407645067f8351c1 SHA256: e2a5f4b4d5a0e4b170b3594267cb404017f06c0df9234f3c3b869f4928b0355d Description: Unit Testing Library for C -- documentation Homepage: http://cunit.sourceforge.net/ Description-md5: 2cbdb5eb40e8588e88b3a0064f056d48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcunit1-ncurses Priority: optional Section: libs Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: i386 Source: cunit Version: 2.1-2.dfsg-1 Depends: libc6 (>= 2.11), libncurses5 (>= 5.5-5~), libtinfo5 Conflicts: libcunit1 Filename: pool/main/c/cunit/libcunit1-ncurses_2.1-2.dfsg-1_i386.deb Size: 35194 MD5sum: f0c00bb8b57b46d86b73438525fe11a3 SHA1: 21b1cb414990360533d01ba5bb20f637fb852210 SHA256: 9b6dc0776ab9debd6518a0b897c67a95e4519fd40bcf1f6e911c09b87b70a506 Description: Unit Testing Library for C (ncurses) Homepage: http://cunit.sourceforge.net/ Description-md5: f2d60ed2cd7ddafcae6f521b5841b289 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcunit1-ncurses-dev Priority: optional Section: libdevel Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Philipp Benner Architecture: i386 Source: cunit Version: 2.1-2.dfsg-1 Depends: libcunit1-ncurses (= 2.1-2.dfsg-1) Suggests: libcunit1-doc (= 2.1-2.dfsg-1) Conflicts: libcunit1-dev Filename: pool/main/c/cunit/libcunit1-ncurses-dev_2.1-2.dfsg-1_i386.deb Size: 65634 MD5sum: 66aa8650f0c8a01bb93f429bcbc7b24f SHA1: 9ccf6331d1e1b27c369f49a5c4df21ec6dc3d6b1 SHA256: 81c3b2cf1eca859a91c0079839487cefabbc18e50c0b3a69a7641aedb496347b Description: Unit Testing Library for C (ncurses) -- development files Homepage: http://cunit.sourceforge.net/ Description-md5: 74ec0b41b188358436cbd9609f517c77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcups2 Priority: optional Section: libs Installed-Size: 582 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.4), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Suggests: cups-common Breaks: cups (<< 1.5.0) Filename: pool/main/c/cups/libcups2_1.7.2-0ubuntu1_i386.deb Size: 175188 MD5sum: 1105333f1a43b8c331fdbaf463f12b02 SHA1: 957700453ba7ef1226b1913b6fbe676e34cf0e5c SHA256: bb5c7f7bd14b9bd743ad19723b6285626dff6a33ffe8b6791f9facf78f1451fe Description: Common UNIX Printing System(tm) - Core library Multi-Arch: same Homepage: http://www.cups.org Description-md5: cce9961cb86712146cb19e1b4636f79d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcups2-dev Priority: optional Section: libdevel Installed-Size: 939 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libcups2 (= 1.7.2-0ubuntu1), libgnutls-dev, libkrb5-dev Filename: pool/main/c/cups/libcups2-dev_1.7.2-0ubuntu1_i386.deb Size: 216370 MD5sum: eb174861772c06205eedb844c7b08c24 SHA1: 3f978bcf6919301cb0dbe109133617de42cfda8a SHA256: d764974ba8f72e583025911646350d4f124935919f9491bf99df178f819b4204 Description: Common UNIX Printing System(tm) - Development files CUPS library Homepage: http://www.cups.org Description-md5: bf3f385e98251c2563c3f58554d2adce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcupscgi1 Priority: optional Section: libs Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libc6 (>= 2.4), libcups2 (= 1.7.2-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/c/cups/libcupscgi1_1.7.2-0ubuntu1_i386.deb Size: 26154 MD5sum: f9b955004f4a9282c906b324af7c943a SHA1: dff2b3de335ef1a01ed345a9e5c3680c30073404 SHA256: 1fb39c264b6e1aa208558e66dfc6ba6f21bfcc4a78915ba0d17c0f1d9588d4e6 Description: Common UNIX Printing System(tm) - CGI library Multi-Arch: same Homepage: http://www.cups.org Description-md5: 3660b0ffb79cde60a9580ea571ecfbcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcupscgi1-dev Priority: optional Section: libdevel Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libcupscgi1 (= 1.7.2-0ubuntu1), libcups2-dev (= 1.7.2-0ubuntu1) Filename: pool/main/c/cups/libcupscgi1-dev_1.7.2-0ubuntu1_i386.deb Size: 29250 MD5sum: c7910015cf46f9bb8fe9cc14a111302d SHA1: 2bc17f543243ed41d2b7f50f055cb5c8a657f610 SHA256: 5eb668fbdf1dd313d24d64ff759ad1726a426f165ce51b5f864428a8477ccbe8 Description: Common UNIX Printing System(tm) - Development files for CGI library Homepage: http://www.cups.org Description-md5: 433b937ac75daeec3873b3445bb48090 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcupsfilters-dev Priority: optional Section: libdevel Installed-Size: 280 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups-filters Version: 1.0.52-0ubuntu1 Depends: libcupsfilters1 (= 1.0.52-0ubuntu1) Filename: pool/main/c/cups-filters/libcupsfilters-dev_1.0.52-0ubuntu1_i386.deb Size: 60252 MD5sum: 6e082ca601d921914150c7a40a2da4e9 SHA1: 7328c687da260c343582328718c7b4b8c1ac095b SHA256: 1d96a3999e5869d326669b08efad3879aebcda9146f4bf1d3b8da0cc30838d17 Description: OpenPrinting CUPS Filters - Development files for the library Homepage: http://www.openprinting.org/ Description-md5: b9e86d6395fb70bb943d64a4a7cfaa29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcupsfilters1 Priority: optional Section: libs Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups-filters Version: 1.0.52-0ubuntu1 Depends: libc6 (>= 2.7), libcups2 (>= 1.7.0), libdbus-1-3 (>= 1.0.2), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3) Pre-Depends: multiarch-support Filename: pool/main/c/cups-filters/libcupsfilters1_1.0.52-0ubuntu1_i386.deb Size: 73918 MD5sum: 70aa6d54440cfc3b568039912fd16b29 SHA1: b6068a6d72b70055dade653cf57eb1855a4074b7 SHA256: df82c2bbf32f65c4654c4835c2e0e9b1d2c75f7c3427de635f4b0eba9cd040ff Description: OpenPrinting CUPS Filters - Shared library Multi-Arch: same Homepage: http://www.openprinting.org/ Description-md5: b891bc072c10210e109ee7d9699a32a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcupsimage2 Priority: optional Section: libs Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libc6 (>= 2.4), libcups2 (= 1.7.2-0ubuntu1), libcupsfilters1 (>= 1.0~b1) Pre-Depends: multiarch-support Filename: pool/main/c/cups/libcupsimage2_1.7.2-0ubuntu1_i386.deb Size: 15208 MD5sum: 4aed1c6bb50b66ea63ab6a795753f453 SHA1: 4cc7a5c4cfa2645abe03667b49355ae28bc20cec SHA256: 7b40deabb0a58fabc169d28c80e62083f26bd30b227bf992a36752d440e7fab8 Description: Common UNIX Printing System(tm) - Raster image library Multi-Arch: same Homepage: http://www.cups.org Description-md5: f4451fb5498322724719d7d3a8635bf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcupsimage2-dev Priority: optional Section: libdevel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libcupsimage2 (= 1.7.2-0ubuntu1), libcups2-dev (= 1.7.2-0ubuntu1), libcupsfilters-dev (>= 1.0~b1), libpng-dev, libtiff-dev, libjpeg8-dev | libjpeg-dev, zlib1g-dev Filename: pool/main/c/cups/libcupsimage2-dev_1.7.2-0ubuntu1_i386.deb Size: 18038 MD5sum: 5dfb8c43b71567da4b0398d7db16ef72 SHA1: 39cfc3a7baf83090b0a46946b0ba5eb11396cac2 SHA256: 4b8f53c27c77ebb1e071d4bbc4d3a146b9e10cac4305cbe9653ccebba9299648 Description: Common UNIX Printing System(tm) - Development files CUPS image library Homepage: http://www.cups.org Description-md5: 419c750b3360d0933e0bbc9e17913244 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcupsmime1 Priority: optional Section: libs Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libc6 (>= 2.4), libcups2 (= 1.7.2-0ubuntu1) Pre-Depends: multiarch-support Breaks: cups (<< 1.5.0) Filename: pool/main/c/cups/libcupsmime1_1.7.2-0ubuntu1_i386.deb Size: 12126 MD5sum: 0b5be331fe66ce64a92026db84e8ef2d SHA1: 08d0960f21507174ee2d18fef27e8e4f2aa70226 SHA256: 9e114da232369a8923cdd9718d91cea237c030f9a56ee613d79260268151a70a Description: Common UNIX Printing System(tm) - MIME library Multi-Arch: same Homepage: http://www.cups.org Description-md5: 3c738d1cd62835670ace55e8d83b4f80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcupsmime1-dev Priority: optional Section: libdevel Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libcupsmime1 (= 1.7.2-0ubuntu1), libcups2-dev (= 1.7.2-0ubuntu1) Filename: pool/main/c/cups/libcupsmime1-dev_1.7.2-0ubuntu1_i386.deb Size: 13032 MD5sum: deb5ec60cce5473c4e23629a4e691510 SHA1: 1d8dfd050eccd937923709ab1ede3a8cf397791f SHA256: dd1be2c003eaec6c764cb80efbec6e922db0860b13a9d90403c0b8660d32bbac Description: Common UNIX Printing System(tm) - Development files MIME library Homepage: http://www.cups.org Description-md5: ee515191b340413216668249b8b6097b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcupsppdc1 Priority: optional Section: libs Installed-Size: 251 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libc6 (>= 2.4), libcups2 (= 1.7.2-0ubuntu1), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/c/cups/libcupsppdc1_1.7.2-0ubuntu1_i386.deb Size: 43814 MD5sum: f005750885749e61cafb6e5c4e0a992b SHA1: 5f64e1ff8e9560e95dcd4b1e838f019a670236e6 SHA256: faa3713156b162d088ecf09598f81effe692d08604a9cca1ab30c643fb05e882 Description: Common UNIX Printing System(tm) - PPD manipulation library Multi-Arch: same Homepage: http://www.cups.org Description-md5: a2ce16897499bbac7df75d4d297b1713 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libcupsppdc1-dev Priority: optional Section: libdevel Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups Version: 1.7.2-0ubuntu1 Depends: libcupsppdc1 (= 1.7.2-0ubuntu1), libcups2-dev (= 1.7.2-0ubuntu1) Filename: pool/main/c/cups/libcupsppdc1-dev_1.7.2-0ubuntu1_i386.deb Size: 49604 MD5sum: a23d02a6b14ac43e0a65e53f2ce6c2d9 SHA1: 0d0912de3cbd488fad2bfa3a93663166f694989e SHA256: c41a5ffbfa855299cf05219f23793af3213af84a557b7016f73a72b23c066e9f Description: Common UNIX Printing System(tm) - Development files PPD library Homepage: http://www.cups.org Description-md5: f1c111d7276de209cb50ebccbc551f69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl3 Priority: optional Section: libs Installed-Size: 543 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Source: curl Version: 7.35.0-1ubuntu2 Depends: libc6 (>= 2.17), libgssapi-krb5-2 (>= 1.10+dfsg~), libidn11 (>= 1.13), libldap-2.4-2 (>= 2.4.7), librtmp0 (>= 2.3), libssl1.0.0 (>= 1.0.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: ca-certificates Filename: pool/main/c/curl/libcurl3_7.35.0-1ubuntu2_i386.deb Size: 173944 MD5sum: d616fa3063c005b27efb17cdf0363075 SHA1: bd5713ff2089e458fbef455f3ad882b52b261157 SHA256: f67a26e6066facf6020ed82c4ee59e07552dfe4541d181b187c3ae04ae0e5bfa Description: easy-to-use client-side URL transfer library (OpenSSL flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: f1c7f18aba2d8ab7a7e32acea1dc61e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntu-gnome-desktop Package: libcurl3-dbg Priority: extra Section: libdevel Installed-Size: 3466 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Source: curl Version: 7.35.0-1ubuntu2 Provides: libcurl4-dbg Depends: libcurl3 (= 7.35.0-1ubuntu2) | libcurl3-gnutls (= 7.35.0-1ubuntu2) | libcurl3-nss (= 7.35.0-1ubuntu2) Suggests: libc-dbg Filename: pool/main/c/curl/libcurl3-dbg_7.35.0-1ubuntu2_i386.deb Size: 3100960 MD5sum: df93ac59163f1003848ddac1d91081de SHA1: 9d6f8b02d132ea0a443adb30e65e819d5829c1a3 SHA256: 4d6d2ded1aa9aec1dfcb712476a78fb8240542ec5e6489232f482d6dc5d7dc3a Description: debugging symbols for libcurl (OpenSSL, GnuTLS and NSS flavours) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: fb54017039bcf3b29ee313d6fc59d8cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl3-gnutls Priority: standard Section: libs Installed-Size: 523 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Source: curl Version: 7.35.0-1ubuntu2 Depends: libc6 (>= 2.17), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), libidn11 (>= 1.13), libldap-2.4-2 (>= 2.4.7), librtmp0 (>= 2.3), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: ca-certificates Filename: pool/main/c/curl/libcurl3-gnutls_7.35.0-1ubuntu2_i386.deb Size: 166260 MD5sum: aa594e7f3c63d4461f199523d47de80c SHA1: a289d5fd35096d5ea008cb8a72a55dffd46d8300 SHA256: da575ff9bac390dfb971974ce982d1c83ccdeb5d04fd93562ce167901be8f349 Description: easy-to-use client-side URL transfer library (GnuTLS flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: 785baf29d91f9f781677a7f569940052 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libcurl3-nss Priority: optional Section: libs Installed-Size: 547 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Source: curl Version: 7.35.0-1ubuntu2 Depends: libc6 (>= 2.17), libgssapi-krb5-2 (>= 1.10+dfsg~), libidn11 (>= 1.13), libldap-2.4-2 (>= 2.4.7), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.14), librtmp0 (>= 2.3), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: ca-certificates Filename: pool/main/c/curl/libcurl3-nss_7.35.0-1ubuntu2_i386.deb Size: 176418 MD5sum: 215a8e1a0f311fb14fa4485d2100a23d SHA1: f270099354efb3f5e882e42922027199f6072920 SHA256: 4f95b6b0bd0e3037092ee7f88e73c653216b55a08cd098bf934aff67da1f693e Description: easy-to-use client-side URL transfer library (NSS flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: 459d2b4fbb16cf9975276e1d24a7ffe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl4-doc Priority: optional Section: doc Installed-Size: 1922 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: all Source: curl Version: 7.35.0-1ubuntu2 Replaces: libcurl4-gnutls-dev (<< 7.30.0-2), libcurl4-nss-dev (<< 7.30.0-2), libcurl4-openssl-dev (<< 7.30.0-2) Breaks: libcurl4-gnutls-dev (<< 7.30.0-2), libcurl4-nss-dev (<< 7.30.0-2), libcurl4-openssl-dev (<< 7.30.0-2) Filename: pool/main/c/curl/libcurl4-doc_7.35.0-1ubuntu2_all.deb Size: 927522 MD5sum: 1599c1a82c5a632c0427c38c56a3a919 SHA1: 4dd6a4a2a78b95001faebf971ba0a8b97c9467c1 SHA256: 1da6543e45e091b473e0d05ab7bff3d60acf308ccad9215c8fa88a5a8053f717 Description: documentation for libcurl Homepage: http://curl.haxx.se Description-md5: 6462959fec3647baef16ff31a5f39d94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl4-gnutls-dev Priority: optional Section: libdevel Installed-Size: 923 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Source: curl Version: 7.35.0-1ubuntu2 Provides: libcurl-dev, libcurl-ssl-dev, libcurl3-gnutls-dev, libcurl4-dev Depends: libcurl3-gnutls (= 7.35.0-1ubuntu2), libc6-dev | libc-dev, libgnutls-dev, libidn11-dev, libkrb5-dev, libldap2-dev, librtmp-dev, zlib1g-dev Suggests: libcurl4-doc, libcurl3-dbg Conflicts: libcurl4-nss-dev, libcurl4-openssl-dev Filename: pool/main/c/curl/libcurl4-gnutls-dev_7.35.0-1ubuntu2_i386.deb Size: 222912 MD5sum: 382e6ba517acbce20fffc3722d961b43 SHA1: 0e551894bf4c62b89d9a1100a879928e477f5a99 SHA256: 040360e06a869c093f66d07fc54ea3dedaa58a9b3984ead2c57df1af1d21d339 Description: development files and documentation for libcurl (GnuTLS flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: 934268033e9ea26fd8907507a9f641bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl4-nss-dev Priority: optional Section: libdevel Installed-Size: 951 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Source: curl Version: 7.35.0-1ubuntu2 Provides: libcurl-dev, libcurl-ssl-dev, libcurl3-nss-dev, libcurl4-dev Depends: libcurl3-nss (= 7.35.0-1ubuntu2), libc6-dev | libc-dev, libidn11-dev, libkrb5-dev, libldap2-dev, libnss3-dev, librtmp-dev, zlib1g-dev Suggests: libcurl4-doc, libcurl3-dbg Conflicts: libcurl4-gnutls-dev, libcurl4-openssl-dev Filename: pool/main/c/curl/libcurl4-nss-dev_7.35.0-1ubuntu2_i386.deb Size: 233860 MD5sum: ab3140fb6bf38541b1c32ee4349fa918 SHA1: ce18e59b35737ec5a93d97773fb84af960e6635a SHA256: 0bb069fa4c10eaf9885452a16bc2d711b8943d352e9821a8817122be08e99f7c Description: development files and documentation for libcurl (NSS flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: 03ed99f13850346b8ac59c56c3e4521f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcurl4-openssl-dev Priority: optional Section: libdevel Installed-Size: 944 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Source: curl Version: 7.35.0-1ubuntu2 Provides: libcurl-dev, libcurl-ssl-dev, libcurl3-dev, libcurl3-openssl-dev, libcurl4-dev Depends: libcurl3 (= 7.35.0-1ubuntu2), libc6-dev | libc-dev, libidn11-dev, libkrb5-dev, libldap2-dev, librtmp-dev, libssl-dev, zlib1g-dev Suggests: libcurl4-doc, libcurl3-dbg Conflicts: libcurl4-gnutls-dev, libcurl4-nss-dev Filename: pool/main/c/curl/libcurl4-openssl-dev_7.35.0-1ubuntu2_i386.deb Size: 230134 MD5sum: d03753fac067a662fb0aee34c505e1cb SHA1: 43d48e3e04f0a85a9de94a6d6f56fb83e21ebdce SHA256: f2ffde89c6f16d27eab02b04d503f1a3d9f3b471a96904af5aff7af6f487ac84 Description: development files and documentation for libcurl (OpenSSL flavour) Multi-Arch: same Homepage: http://curl.haxx.se Description-md5: 9ef3e0d3a9a6f50f79b0deaff858c410 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcwidget-dev Priority: extra Section: libdevel Installed-Size: 2256 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: i386 Source: cwidget Version: 0.5.16-3.5ubuntu1 Depends: libcwidget3 (= 0.5.16-3.5ubuntu1), libsigc++-2.0-dev, libncursesw5-dev, pkg-config Suggests: libcwidget-doc Filename: pool/main/c/cwidget/libcwidget-dev_0.5.16-3.5ubuntu1_i386.deb Size: 400266 MD5sum: af1417e35fb7921b8fe675c97f3e0ae4 SHA1: e0ee34ade43cb540fc5adf7b4b3c4559f1029689 SHA256: 28ffad36ccfc08ec77b9103100a88522332a3a5bd3ff5070573c0da6555ad12a Description: high-level terminal interface library for C++ (development files) Homepage: http://cwidget.alioth.debian.org Description-md5: d5195ade0a17480093dcedac51daaa4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcwidget-doc Priority: extra Section: libdevel Installed-Size: 7074 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: all Source: cwidget Version: 0.5.16-3.5ubuntu1 Recommends: iceweasel | www-browser Suggests: libcwidget-dev Filename: pool/main/c/cwidget/libcwidget-doc_0.5.16-3.5ubuntu1_all.deb Size: 334528 MD5sum: 900bf2747f37dd9622e1ba072fa119c7 SHA1: 035623eb08c93403e8bf9112f67f3d96e55cc66f SHA256: 89ef78c2d1f7d3a68db7ba2661ecafc063a5d08cdecae4cdd1c000b3a12cf0ea Description: high-level terminal interface library for C++ (documentation) Homepage: http://cwidget.alioth.debian.org Description-md5: c6b9ff80fc177d60deb9717229781d19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcwidget3 Priority: optional Section: libs Installed-Size: 1092 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: i386 Source: cwidget Version: 0.5.16-3.5ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libncursesw5 (>= 5.6+20070908), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6), libtinfo5 Suggests: libcwidget-dev Filename: pool/main/c/cwidget/libcwidget3_0.5.16-3.5ubuntu1_i386.deb Size: 300160 MD5sum: b9615845f1db2ba227209e440e803c3b SHA1: 50350b7df800e0b559718638138e8d8220b74e76 SHA256: 40d899e9a1952dc6b80937ced621249b693ee604976a5f5c24b6fbc734935222 Description: high-level terminal interface library for C++ (runtime files) Homepage: http://cwidget.alioth.debian.org Description-md5: 25817f3f038c1f33b9d63aafe32c6d75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: libcwidget3-dbg Priority: extra Section: libdevel Installed-Size: 8002 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: i386 Source: cwidget Version: 0.5.16-3.5ubuntu1 Depends: libcwidget3 (= 0.5.16-3.5ubuntu1) Suggests: libcwidget-dev Filename: pool/main/c/cwidget/libcwidget3-dbg_0.5.16-3.5ubuntu1_i386.deb Size: 1834166 MD5sum: 6d8aae20a9e5d3aeea549a0a57fb2399 SHA1: 732bff3dda5cc8beba734b7d6c0103d387de5a79 SHA256: fb5d5093b8fc53b6da6b8bf2283809792e037657fd1e5142c8b76c04e244e55a Description: high-level terminal interface library for C++ (debugging files) Homepage: http://cwidget.alioth.debian.org Description-md5: 94c149131ad8df1cd3a2166f75cbc127 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libcxsparse3.1.2 Priority: optional Section: libs Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libcxsparse3.1.2_4.2.1-3ubuntu1_i386.deb Size: 43924 MD5sum: 43eaa02ef941658336e24bb69f64760d SHA1: 0cfd9cfba19901dd1e677e6047ccd0c1c4aa0425 SHA256: f747c56418e22e4c1914b50fa473290634c6c670d4e5e8d66e3e01567e4b353d Description: concise sparse matrix library (complex, int and long int support) Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: f6d7a859e2e3907c881edcfe15aad57a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdaemon-dev Priority: optional Section: devel Installed-Size: 608 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: libdaemon Version: 0.14-2ubuntu1 Depends: libdaemon0 (= 0.14-2ubuntu1) Filename: pool/main/libd/libdaemon/libdaemon-dev_0.14-2ubuntu1_i386.deb Size: 107134 MD5sum: eb66c23ee5d33d8bf0a55440e0917e09 SHA1: d20399b42bcc4ed2e1152b4382f81651683a5421 SHA256: 36fecdef1bbf54e6ea22d0eb574f2bba368325deb6b7d93af4eb53e19ab38c7d Description: lightweight C library for daemons - development files Homepage: http://0pointer.de/lennart/projects/libdaemon/ Description-md5: 2c3ce17b6be7fbe6fb3a110c27a94bcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdaemon0 Priority: optional Section: libs Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: libdaemon Version: 0.14-2ubuntu1 Depends: libc6 (>= 2.15) Filename: pool/main/libd/libdaemon/libdaemon0_0.14-2ubuntu1_i386.deb Size: 16198 MD5sum: 8b8f3811202ca3ad39b89c6d9110b9cd SHA1: 4ab804ce5f56a57ac26f4f40eb8fdc49419f8ff3 SHA256: ea81756201a6f61e9d07e2211b4837920719b406209964e5f84b3e2eb209d31b Description: lightweight C library for daemons - runtime library Homepage: http://0pointer.de/lennart/projects/libdaemon/ Description-md5: 60b193432f6e7d8b0987f77d36bc9084 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdaemon0-dbg Priority: extra Section: libdevel Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: libdaemon Version: 0.14-2ubuntu1 Depends: libdaemon0 (= 0.14-2ubuntu1) Filename: pool/main/libd/libdaemon/libdaemon0-dbg_0.14-2ubuntu1_i386.deb Size: 22276 MD5sum: 1550f55e2c27d3da2bdb49bdf9c50cd6 SHA1: 2e61390fea05324ad02796de6c8a840b3ae6d6e4 SHA256: 6c9b2495136229ea7cc7d2046b38024cfb668cc8bd44315dcbe7ec47d6d98aa2 Description: lightweight C library for daemons - debugging symbols Homepage: http://0pointer.de/lennart/projects/libdaemon/ Description-md5: 0de392b2ae096c1f8e209f34c991642e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdata-optlist-perl Priority: optional Section: perl Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.109-1 Depends: perl, libparams-util-perl, libsub-install-perl Filename: pool/main/libd/libdata-optlist-perl/libdata-optlist-perl_0.109-1_all.deb Size: 9920 MD5sum: 5777250824e4f17206ae0df49d8e32f3 SHA1: 2dfd03787bf25e9edc9170fc198ceaced4e0bec0 SHA256: d93b8cd517ed78a78b2738ee84c4dff102c641ecb91ae827f8b20704ef8e4549 Description: module to parse and validate simple name/value option pairs Homepage: https://metacpan.org/release/Data-OptList/ Description-md5: a02528c5c88129d91015cfed0286ba18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdata-section-perl Priority: optional Section: perl Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.200005-1 Depends: perl, libmro-compat-perl, libsub-exporter-perl Filename: pool/main/libd/libdata-section-perl/libdata-section-perl_0.200005-1_all.deb Size: 11520 MD5sum: 854ab624ad50b0a7225d3ead3428aa93 SHA1: ba3e4c61aa317e41efdb98431bc79c2cdf1c90ef SHA256: bc084b828e9c54951d54eaef179d4159ae7cc3b830867f78c8dd9232b23b0875 Description: module to read chunks of data from a module's DATA section Homepage: https://github.com/rjbs/Data-Section Description-md5: 8bfe8cc5d6583ae3a3cafe8428bbee49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdata-section-simple-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.05-1 Depends: perl Filename: pool/main/libd/libdata-section-simple-perl/libdata-section-simple-perl_0.05-1_all.deb Size: 7466 MD5sum: d94c8568fbdb1481e2de1fad6f2fd617 SHA1: 66c1cd2a9ec602c8663f0b1b01f238311f61d2f8 SHA256: b87b619ef6ea27b5b054a577c29f7289e6afb7e5695a9b505efb620222905f1a Description: Perl module for reading data from __DATA__ section of the file Homepage: https://metacpan.org/release/Data-Section-Simple/ Description-md5: 78aab0d9fdb7da152bcc669160f98a8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdate-manip-perl Priority: optional Section: perl Installed-Size: 10577 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.42-1 Depends: perl Filename: pool/main/libd/libdate-manip-perl/libdate-manip-perl_6.42-1_all.deb Size: 912922 MD5sum: c0ca9c42520bc12add8d3e565fbb7662 SHA1: e34ce8ae9592f3cb9937fd977b80773c1cd985be SHA256: 0b39eacccbce4f6108b8a3160917a8dfd2ecfa128f70305804af8a0b03317137 Description: module for manipulating dates Homepage: https://metacpan.org/release/Date-Manip/ Description-md5: 76af4628055c478892d3eda050329d85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatetime-format-builder-perl Priority: optional Section: perl Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.8100-1 Depends: perl, libclass-factory-util-perl, libdatetime-format-strptime-perl, libdatetime-perl (>= 2:1.00), libparams-validate-perl Filename: pool/main/libd/libdatetime-format-builder-perl/libdatetime-format-builder-perl_0.8100-1_all.deb Size: 68256 MD5sum: ebe078fb8bf1d8d300dee6fe87df4dc5 SHA1: 917b8dcdc2df30700a289c63f57ba51cf91ab55e SHA256: 2396155ec597a15bcbe8c40ac7943fe5bc5feb90d03b23c0e608d88298bdd4cd Description: module to create DateTime parsers Homepage: https://metacpan.org/release/DateTime-Format-Builder/ Description-md5: b3b7f0364f7437abf9820fd05acb16cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatetime-format-mail-perl Priority: optional Section: perl Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.3001-2 Depends: libdatetime-perl, libparams-validate-perl, perl Filename: pool/main/libd/libdatetime-format-mail-perl/libdatetime-format-mail-perl_0.3001-2_all.deb Size: 13378 MD5sum: 03ce2b806ad829538c2af9d389c3a04b SHA1: f3057fbbb891f593bc840d641cacf38a48a2c12b SHA256: b69248a2e043577508be2938ac4db8f8d86dbc994aa50db67e6c805ed6fef16b Description: Convert between DateTime and RFC2822/822 formats Homepage: https://metacpan.org/release/DateTime-Format-Mail Description-md5: 18e41cf13895ba643ac612063cc679ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdatetime-format-mysql-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.04-3 Depends: perl, libdatetime-perl, libdatetime-format-builder-perl Filename: pool/main/libd/libdatetime-format-mysql-perl/libdatetime-format-mysql-perl_0.04-3_all.deb Size: 6988 MD5sum: cb07ca9e8ef652d26d0935bc30dee290 SHA1: 96b538f62656a814f7a4f34459e8013524e89b5f SHA256: 295430572da8de7f8ff574bd8d87c93fc73a51f23c00f12679209788bfa8a990 Description: Parse and format MySQL dates and times Homepage: https://metacpan.org/release/DateTime-Format-MySQL/ Description-md5: c3239034f66a11bed09d5f9df17cb0a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdatetime-format-strptime-perl Priority: optional Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.5400-1 Depends: perl, libdatetime-locale-perl, libdatetime-perl, libdatetime-timezone-perl, libparams-validate-perl Filename: pool/main/libd/libdatetime-format-strptime-perl/libdatetime-format-strptime-perl_1.5400-1_all.deb Size: 24234 MD5sum: 0364e44434bf0280d419254ffc5d0d51 SHA1: f4561474bd5ba89a301ae5833b257fd9547e5a92 SHA256: 0f7e2680c93d743c346ef43ad76248d9f35673c658f3d789302fe08bc1c37dc3 Description: Perl module to parse and format strp and strf time patterns Homepage: http://datetime.perl.org/ Description-md5: 5fdc55fcc6751419baaa069d930a67e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatetime-locale-perl Priority: extra Section: perl Installed-Size: 7164 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1:0.45-2 Depends: perl, liblist-moreutils-perl, libparams-validate-perl Filename: pool/main/libd/libdatetime-locale-perl/libdatetime-locale-perl_0.45-2_all.deb Size: 2273708 MD5sum: 8fe7a9860d2ec906231c63a569f57b05 SHA1: 37404c3a609677d26813a1784b3769eceeac46c1 SHA256: 16a3abfd1e6c0586a2cb92917f81445019091bf58e917422aebc0c8f0bd0835c Description: Perl extension providing localization support for DateTime Homepage: http://datetime.perl.org/ Description-md5: 8de47fc8419a2e0a4cc5c0d0194a351b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatetime-perl Priority: extra Section: perl Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 2:1.06-1 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.1.3), libdatetime-locale-perl, libdatetime-timezone-perl, libparams-validate-perl, libtry-tiny-perl Filename: pool/main/libd/libdatetime-perl/libdatetime-perl_1.06-1_i386.deb Size: 84166 MD5sum: 3dbafc22a08506d8966c775a2af0c699 SHA1: 16b98454070f2dd5d01dd254455d352e1c70ee8e SHA256: 8a957cb0d720194363852d3466865e278e588364952bb7bdc579f886c5458032 Description: module for manipulating dates, times and timestamps Homepage: http://datetime.perl.org/ Description-md5: abf0de5650ddf21a59440d99dbd1c161 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatetime-timezone-perl Priority: extra Section: perl Installed-Size: 6294 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1:1.63-1+2013h Depends: perl, libclass-load-perl, libclass-singleton-perl, libparams-validate-perl Filename: pool/main/libd/libdatetime-timezone-perl/libdatetime-timezone-perl_1.63-1+2013h_all.deb Size: 255204 MD5sum: e9a6a737fc8f64de0e6b15967c3af747 SHA1: 512325df99a10b59ec500ff1ea87283492590f17 SHA256: 47951472c86bab90bbc218e447a38791ce6ec08c1809d56ae8c6a7d9b7b9a175 Description: framework exposing the Olson time zone database to Perl Homepage: http://datetime.perl.org/ Description-md5: 49fff32146b7c0ac14d7bcca1f92bfe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libdatrie-dev Priority: optional Section: libdevel Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: i386 Source: libdatrie Version: 0.2.8-1 Depends: libdatrie1 (= 0.2.8-1) Suggests: libdatrie-doc (= 0.2.8-1) Conflicts: libdatrie0-dev Filename: pool/main/libd/libdatrie/libdatrie-dev_0.2.8-1_i386.deb Size: 17884 MD5sum: 14d0003c85c6ad2efba8fb8ece4b06dc SHA1: 7e16777db8e0b0743e9186fd1120d33120cf7e01 SHA256: f14671996e4df97af084ab13642be629cdb5ee03f0464af63505d74a75b636ce Description: Development files for double-array trie library Multi-Arch: same Homepage: http://linux.thai.net/projects/libthai Description-md5: aba60c2eb6bbe73331e039cccc12d3da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdatrie-doc Priority: optional Section: doc Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: libdatrie Version: 0.2.8-1 Depends: lynx | www-browser Conflicts: libdatrie0-doc Filename: pool/main/libd/libdatrie/libdatrie-doc_0.2.8-1_all.deb Size: 39732 MD5sum: 404fda39bd908ba687cdc681650c7303 SHA1: 6703a2c86bc2bf015e49989f8320c58b7ead1fef SHA256: 5bf096dbd36aacf3913194faa99c8e7873c661850339441c940fddee5b432a99 Description: Documentation files for double-array trie library Multi-Arch: foreign Homepage: http://linux.thai.net/projects/libthai Description-md5: 5e24c523a65f1703fd0422ed0e625cf0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdatrie1 Priority: optional Section: libs Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: i386 Source: libdatrie Version: 0.2.8-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libd/libdatrie/libdatrie1_0.2.8-1_i386.deb Size: 17286 MD5sum: deca9c4a92152a94ab991536d8782d5b SHA1: 658ddf772a9175bc6bf28382b4b184250f3d65f0 SHA256: 4f707cac769a9f2370fd6a01f9ad43dc0336fe35af8be42181dc9542b9564e5a Description: Double-array trie library Multi-Arch: same Homepage: http://linux.thai.net/projects/libthai Description-md5: bad75292299725e815dfa340308fd98b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdatrie1-bin Priority: optional Section: misc Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: i386 Source: libdatrie Version: 0.2.8-1 Depends: libc6 (>= 2.7), libdatrie1 (>= 0.2.0) Filename: pool/main/libd/libdatrie/libdatrie1-bin_0.2.8-1_i386.deb Size: 9814 MD5sum: 11e749180eed9c2b83a2dabb87e802ae SHA1: 814277d525686a608bec6bcd3d6978a7f2178e46 SHA256: 77d15b4caa37250961365a3889d7bd3d4133eddeb1a14f1def547dc74f5885e9 Description: Programs for double-array trie library Homepage: http://linux.thai.net/projects/libthai Description-md5: 5bde3cde365843ae025e4ef31881d0a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb++-dev Priority: extra Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db-defaults Version: 1:5.3.21~exp1ubuntu1 Depends: libdb5.3++-dev Conflicts: libdb4.6++-dev, libdb4.7++-dev, libdb4.8++-dev, libdb5.1++-dev Filename: pool/main/d/db-defaults/libdb++-dev_5.3.21~exp1ubuntu1_i386.deb Size: 2332 MD5sum: 61a9447937593156438cc855fc87ccb7 SHA1: d9ba827c6ef6163e11efc771648e01fdbe4100d2 SHA256: 75a0a1fdcdb0d6e79f37d8cffa104f25ed7f440494500b528b9ff779297b3ec0 Description: Berkeley Database Libraries for C++ [development] Multi-Arch: same Description-md5: 77047aba6756736aa06d1c92297f0f0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb-dev Priority: extra Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db-defaults Version: 1:5.3.21~exp1ubuntu1 Depends: libdb5.3-dev Conflicts: libdb4.6-dev, libdb4.7-dev, libdb4.8-dev, libdb5.1-dev Filename: pool/main/d/db-defaults/libdb-dev_5.3.21~exp1ubuntu1_i386.deb Size: 2284 MD5sum: e1263032cb5cf4847afd5f23443a0a6c SHA1: 167100d370d3491b528f21912d636ef95e73a093 SHA256: 316118baa5e3f9f0f6273df8fef321250ae8c75efbf5a2f18db0c860d0907bcb Description: Berkeley Database Libraries [development] Multi-Arch: same Description-md5: cc7d9357e644c1601c2255220178f551 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb-java-dev Priority: extra Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db-defaults Version: 1:5.3.21~exp1ubuntu1 Depends: libdb5.3-java-dev Conflicts: libdb4.6-java-dev, libdb4.7-java-dev, libdb4.8-java-dev, libdb5.1-java-dev Filename: pool/main/d/db-defaults/libdb-java-dev_5.3.21~exp1ubuntu1_i386.deb Size: 2288 MD5sum: 7d5b3e4df4864e523fa0698d58089f03 SHA1: 0ba86e5016a61245434a1d2755205e0c6a514c75 SHA256: d1cb24288f00ae62d5c1dc06f00934438213a117fecb158af7c9f1321bfe941e Description: Berkeley Database Libraries for Java [development] Multi-Arch: same Description-md5: 059e0f73d17247a508b8413c2d19a8ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb-sql-dev Priority: extra Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db-defaults Version: 1:5.3.21~exp1ubuntu1 Depends: libdb5.3-sql-dev Conflicts: libdb5.1-sql-dev Filename: pool/main/d/db-defaults/libdb-sql-dev_5.3.21~exp1ubuntu1_i386.deb Size: 2278 MD5sum: e7b17d95c47a97529e172223ede5095b SHA1: c4acd18adadb5c195569cbeb7a5c4cddf32f2d3b SHA256: bdac1b5cc8ecf8b28ef3488ce64a06cf5ccf680af832f99f2a19fa41a31c165f Description: Berkeley Database Libraries [SQL development] Multi-Arch: same Description-md5: a34f23f909f1599952a5f67265ecb074 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3 Priority: required Section: libs Installed-Size: 1788 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/d/db5.3/libdb5.3_5.3.28-3ubuntu3_i386.deb Size: 650810 MD5sum: 8f3662e0f651eb9435386641ecf9494d SHA1: b56541ad86e4cc41799da42d61fed6c3fee20beb SHA256: 400a7290930b913bc3b939e39c417d6d06eddfa71c65201dd0d1b90897738395 Description: Berkeley v5.3 Database Libraries [runtime] Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 6cef0d1fc062f09a5c2c1209dc807be1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libdb5.3++ Priority: optional Section: libs Installed-Size: 1915 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1), libdb5.3 Pre-Depends: multiarch-support Filename: pool/main/d/db5.3/libdb5.3++_5.3.28-3ubuntu3_i386.deb Size: 679610 MD5sum: f6e7541723f9d83a2096d0752706dbde SHA1: 85cd4dc1762061fcf6bbcefd0f30233f563de4d2 SHA256: 2bc9c56c51e51f5eb88fc1c0b81aa5146a73806f96a84c0ff5a8744289805baa Description: Berkeley v5.3 Database Libraries for C++ [runtime] Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: fa02dd6e6118cdb8ba3a2bb75d0e2ce3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3++-dev Priority: extra Section: libdevel Installed-Size: 2527 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3++ (= 5.3.28-3ubuntu3), libdb5.3-dev (= 5.3.28-3ubuntu3), libdb5.3 Conflicts: libdb4.6++-dev, libdb4.7++-dev, libdb4.8++-dev, libdb5.1++-dev, libdb5.2++-dev Filename: pool/main/d/db5.3/libdb5.3++-dev_5.3.28-3ubuntu3_i386.deb Size: 710716 MD5sum: 0b66bcab59995a0751b2df257b6c555f SHA1: 4ff2b8370d62a544b80ec968ca89ffcae5fc6b51 SHA256: 9ba6d4474a4cfd9d48928c6f780d0bbf37f35bdfb1e607e49a9c3ad943ecf2e1 Description: Berkeley v5.3 Database Libraries for C++ [development] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: a7a998f0313107491f90e490e2ad171f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-dbg Priority: extra Section: debug Installed-Size: 37762 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3 (= 5.3.28-3ubuntu3) Filename: pool/main/d/db5.3/libdb5.3-dbg_5.3.28-3ubuntu3_i386.deb Size: 35921044 MD5sum: abaada6d8a08fe93be744124dfdfd860 SHA1: bba4033ec78fb8b5dc3cff5efd65b674176ad6e9 SHA256: 35a459f5a49ff87726eadaeefdaf28c9d041389f27588248b1aabdfc4b75de12 Description: Berkeley v5.3 Database Libraries [debug] Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: b6795af6080c8d7c57c3e3f9c05328ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-dev Priority: extra Section: libdevel Installed-Size: 2421 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3 (= 5.3.28-3ubuntu3) Suggests: db5.3-doc Conflicts: libdb4.6-dev, libdb4.7-dev, libdb4.8-dev, libdb5.1-dev, libdb5.2-dev Filename: pool/main/d/db5.3/libdb5.3-dev_5.3.28-3ubuntu3_i386.deb Size: 699584 MD5sum: 583d18aa5b2c4397861c8ffd58b807d5 SHA1: a94f8e3510ea46232feb320cbc74b433070ce32f SHA256: ea8452b7b1a0264fda03ef771832d0fa616b2f20f27592c08ffabdf6db751043 Description: Berkeley v5.3 Database Libraries [development] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: a8fcb954a01494ec75806217ea263fd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-java Priority: optional Section: java Installed-Size: 613 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: all Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3-java-jni (>= 5.3.28-3ubuntu3), libdb5.3 Suggests: libdb5.3-java-gcj Filename: pool/main/d/db5.3/libdb5.3-java_5.3.28-3ubuntu3_all.deb Size: 547810 MD5sum: b08b31aeb3a5384e7ebee4eca2be3fc0 SHA1: 3a4a9660e7e248310a4f989c51da82ed452a44a7 SHA256: b9e6938a54605e694bf4dcb0678d0ee6c1399c4c275a03cc4f4799f251287199 Description: Berkeley v5.3 Database Libraries for Java Multi-Arch: foreign Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 7fe5662ba085d6fe249eb0a22491cd95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-java-dev Priority: optional Section: libdevel Installed-Size: 2509 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3-java (= 5.3.28-3ubuntu3), libdb5.3 Conflicts: libdb4.6-java-dev, libdb4.7-java-dev, libdb4.8-java-dev, libdb5.1-java-dev, libdb5.2-java-dev Filename: pool/main/d/db5.3/libdb5.3-java-dev_5.3.28-3ubuntu3_i386.deb Size: 710072 MD5sum: bdde601b7c168776168b571aa7216e13 SHA1: 5c40245d22d201cc17f3e9ebebd0bddadf99428d SHA256: cb50c31f817867bc623690a4207a5ea0058525cafc4981a3d5c90fd47b447ab7 Description: Berkeley v5.3 Database Libraries for Java [development] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 10357cd4b2e7bc530ef77abbf53eea71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-java-gcj Priority: optional Section: java Installed-Size: 2306 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3-java (= 5.3.28-3ubuntu3), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.2-1~), libdb5.3, libgcj-common (>> 1:4.1.1-13) Filename: pool/main/d/db5.3/libdb5.3-java-gcj_5.3.28-3ubuntu3_i386.deb Size: 479832 MD5sum: ffc3fd6158f4daf164f8f8eb16dbff81 SHA1: 1b344b7c97308cf38fcf66f2edb24aaafe3de372 SHA256: 1be500f319cb21e10c88f41ac651d66c9b69217ffdb5324051f9e5051e7e2056 Description: Berkeley v5.3 Database Libraries for Java (native code) Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 0603fab127b8432390749d24581d70a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-java-jni Priority: optional Section: java Installed-Size: 1955 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.17), libdb5.3 Pre-Depends: multiarch-support Conflicts: libdb5.1-java, libdb5.2-java Breaks: libdb5.3-java (<< 5.3.28-3ubuntu3) Filename: pool/main/d/db5.3/libdb5.3-java-jni_5.3.28-3ubuntu3_i386.deb Size: 685004 MD5sum: 07e9e9e2cfb659dfaaceaaa15f71e184 SHA1: 331c0be872602e8add7dbecd7724699bce938b9f SHA256: 1172a0ebec2b3fda97c6a9daee7da672070145b5bf02f8a1f61119dcc32ea2d9 Description: Berkeley v5.3 Database Libraries for Java Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 7fe5662ba085d6fe249eb0a22491cd95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-sql Priority: extra Section: libs Installed-Size: 2286 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.17), libdb5.3 Pre-Depends: multiarch-support Filename: pool/main/d/db5.3/libdb5.3-sql_5.3.28-3ubuntu3_i386.deb Size: 869074 MD5sum: 127e4e5fe9af417f2018347ff6dd742d SHA1: 8950bf14513259048e38c40afdf6aeb99a2b37ca SHA256: 1cd30ac04b1a7e0e8a1ce30ea770f7f153774f939b5879c4018286240987ccd9 Description: Berkeley v5.3 Database Libraries [SQL runtime] Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 71e39b5f9b4bfe07a3a092747c1d6bc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-sql-dev Priority: extra Section: libdevel Installed-Size: 3156 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3-sql (= 5.3.28-3ubuntu3), libdb5.3 Suggests: db5.3-doc Conflicts: libdb5.1-sql-dev, libdb5.2-sql-dev Filename: pool/main/d/db5.3/libdb5.3-sql-dev_5.3.28-3ubuntu3_i386.deb Size: 966866 MD5sum: 9a493d39dd20a747f0aa3b9d27ac73e4 SHA1: fa1786c2cdfa5212b0f9538c4e78daaba398a71e SHA256: 7afb41abb5835ef7bae654c5cf2587f75a20784d6ab08d5928d87a91cbb0353b Description: Berkeley v5.3 Database Libraries [SQL development] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: 75785db09c2db2de461c5e9b1296e888 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-stl Priority: extra Section: libs Installed-Size: 1999 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1), libdb5.3 Pre-Depends: multiarch-support Filename: pool/main/d/db5.3/libdb5.3-stl_5.3.28-3ubuntu3_i386.deb Size: 702908 MD5sum: de910d61521d41a6c52f202edc2cc382 SHA1: 90ac1213904404e8537bb04ff10799d0e4913226 SHA256: 73ff10cbc74f3045d27bbf06e6565126db03dc143a97d446d875e2caa01ee7f9 Description: Berkeley v5.3 Database Libraries [STL runtime] Multi-Arch: same Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: a4333c095837e70b0d0d67c82a44ba80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdb5.3-stl-dev Priority: extra Section: libdevel Installed-Size: 3024 Maintainer: Ubuntu Developers Original-Maintainer: Debian Berkeley DB Group Architecture: i386 Source: db5.3 Version: 5.3.28-3ubuntu3 Depends: libdb5.3-stl (= 5.3.28-3ubuntu3), libdb5.3 Suggests: db5.3-doc Conflicts: libdb5.1-stl-dev, libdb5.2-stl-dev Filename: pool/main/d/db5.3/libdb5.3-stl-dev_5.3.28-3ubuntu3_i386.deb Size: 796728 MD5sum: cceb3902be24db1638881eb4bde00323 SHA1: 5498966350d69708a33a01dda2eea4a4114b1d56 SHA256: b97a9591beeda20998a3a9ed8bafe2c803a5b9da76821b9132e036f9c0e6fcd7 Description: Berkeley v5.3 Database Libraries [STL development] Homepage: http://www.oracle.com/technology/software/products/berkeley-db/index.html Description-md5: edbeff150a3779fb5554f4b8c92bea16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbd-freetds Priority: optional Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: libdbi-drivers Version: 0.9.0-2ubuntu2 Depends: libc6 (>= 2.8), libct4 (>= 0.64), libdbi1 (>= 0.8.4) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbi-drivers/libdbd-freetds_0.9.0-2ubuntu2_i386.deb Size: 13008 MD5sum: 8836726e4d6aebdead386c76430f738a SHA1: c3f4c2817e99480cbb1a5d499cb9d1593ab74c5e SHA256: 0bb17c489968d0143f75ab187b96dc88935c4f5ea88ed6f5942a539a51ba1515 Description: Freetds database server driver for libdbi Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: 437893fe7e8036a8f1aaebb14b0de68e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdbd-mysql Priority: optional Section: libs Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: libdbi-drivers Version: 0.9.0-2ubuntu2 Depends: libc6 (>= 2.8), libdbi1 (>= 0.8.4), libmysqlclient18 (>= 5.5.13-1) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbi-drivers/libdbd-mysql_0.9.0-2ubuntu2_i386.deb Size: 146722 MD5sum: 2fae48874e9e27ee762708735016fcac SHA1: 2fa78ff610d1a5cc15cf2280d63e9f36f8d241e7 SHA256: 11cb3f1f1b6084f4a7f682b4b5263e2ca3467a0a0de558fa6c15885c1a96707e Description: MySQL database server driver for libdbi Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: 2f6453a1b87e77abc15937f5ab7942e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdbd-mysql-perl Priority: optional Section: perl Installed-Size: 302 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 4.025-1 Depends: perl (>= 5.18.1-4build1), perl-dbdabi-94, perlapi-5.18.1, libc6 (>= 2.4), libmysqlclient18 (>= 5.5.13-1), libdbi-perl Filename: pool/main/libd/libdbd-mysql-perl/libdbd-mysql-perl_4.025-1_i386.deb Size: 99558 MD5sum: d118d6640fca4324a0b6aee1947a11a1 SHA1: 5a7878aa024fd474fe21c8469bcc7d5d9a371609 SHA256: b94a12d2bd6d201d3b139b8d828601e3747e7a1896a601388d3822b5226162b7 Description: Perl5 database interface to the MySQL database Homepage: https://metacpan.org/release/DBD-mysql Description-md5: a95c384ff544205a63fc25a89e6e9737 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libdbd-pgsql Priority: optional Section: libs Installed-Size: 295 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: libdbi-drivers Version: 0.9.0-2ubuntu2 Depends: libc6 (>= 2.8), libdbi1 (>= 0.8.4), libpq5 Pre-Depends: multiarch-support Filename: pool/main/libd/libdbi-drivers/libdbd-pgsql_0.9.0-2ubuntu2_i386.deb Size: 144728 MD5sum: 3f33d3dcb816962936faaa8747a18588 SHA1: 46a6ce18594d3a9684bdf52dee995935d621c849 SHA256: 5419bbd4cf208d445e4962c0f7ccaa9489d8964ebf1ff3a0e6278e73d9d24d1d Description: PostgreSQL database server driver for libdbi Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: fe889b22a31ff8978490eec7cfd7eec3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdbd-sqlite3 Priority: optional Section: libs Installed-Size: 345 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: libdbi-drivers Version: 0.9.0-2ubuntu2 Depends: libc6 (>= 2.8), libdbi1 (>= 0.9.0), libsqlite3-0 (>= 3.5.9) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbi-drivers/libdbd-sqlite3_0.9.0-2ubuntu2_i386.deb Size: 174938 MD5sum: 2f23ab09efbe476d3cfee12fd2fedeb6 SHA1: b90759bfe6ed02b0f14f352cb3ce99bf3ac443eb SHA256: 141f5f4061ed3bc8392b114fc32bf34236cae0c810c68c410e0fa8826c28eee8 Description: SQLite3 database driver for libdbi Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: bbac5c425b82d758def37597a82c7afd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdbd-sqlite3-perl Priority: optional Section: perl Installed-Size: 301 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.40-3 Depends: perl (>= 5.18.1-5), perl-dbdabi-94, perlapi-5.18.1, libc6 (>= 2.4), libsqlite3-0 (>= 3.7.10) Filename: pool/main/libd/libdbd-sqlite3-perl/libdbd-sqlite3-perl_1.40-3_i386.deb Size: 92324 MD5sum: f5133f402cab43f1182a09c04819b090 SHA1: 4709e7284be227ac96916d610879b20397a7c61a SHA256: f22602bdc3bebfef68bf34fc5cb71f79badc8e68530eadc1d3aab9c4eb63df80 Description: Perl DBI driver with a self-contained RDBMS Homepage: https://metacpan.org/release/DBD-SQLite/ Description-md5: 8a3b0ad4d51c995e128a17cddbee5420 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbi-dev Priority: optional Section: libdevel Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: libdbi Version: 0.9.0-1 Replaces: libdbi0, libdbi0-dev, libdbi1 (<< 0.8.4-2) Provides: libdbi0-dev Depends: libdbi1 (= 0.9.0-1) Conflicts: libdbi0-dev Filename: pool/main/libd/libdbi/libdbi-dev_0.9.0-1_i386.deb Size: 25114 MD5sum: d9f00ca1c95bb5d8305087fb72911f3f SHA1: 09d7a5ddd7529bd45b4d5b9d97b7ffeb9e6f9773 SHA256: 9720d65cb7a1fca9f0d92bab1f6869d6a90d5435b61e446b2ecb745685c7a1c3 Description: DB Independent Abstraction Layer for C -- development files Homepage: http://libdbi.sourceforge.net/ Description-md5: 98dc3b749976b17d062eeee349991034 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbi-doc Priority: optional Section: doc Installed-Size: 1167 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: all Source: libdbi Version: 0.9.0-1 Filename: pool/main/libd/libdbi/libdbi-doc_0.9.0-1_all.deb Size: 750900 MD5sum: 714139edf80ad8cfbcbb1f8371f4319e SHA1: 4c7c0d222b9c70b4a40eb0176e2afd7aaa52be81 SHA256: 2d04f2a183c4a1c2128ce54883a1e635848c0ba7a146b5774af643a115f9082a Description: DB Independent Abstraction Layer for C -- documentation Homepage: http://libdbi.sourceforge.net/ Description-md5: a972248745e8c7bb9f2c106e8246b70b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbi-perl Priority: optional Section: perl Installed-Size: 2158 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.630-1 Provides: perl-dbdabi-94 Depends: perl (>= 5.18.1-4build1), perlapi-5.18.1, libc6 (>= 2.4) Suggests: libclone-perl (>= 0.34), libmldbm-perl, libnet-daemon-perl, libplrpc-perl, libsql-statement-perl (>= 1.402) Breaks: libdbd-anydata-perl (<< 0.11+), libdbd-csv-perl (<< 0.3600+), libsql-statement-perl (<< 1.33+) Filename: pool/main/libd/libdbi-perl/libdbi-perl_1.630-1_i386.deb Size: 881374 MD5sum: 04ef770362b5d4d4e13efbd0f28f442d SHA1: a5aa7b8d9d9acdd14d96146bb4ba1331085d0c6b SHA256: c6f5cdff9fd109de13b20ad547fb78abdb723aa26efe6c176af2c3e8ab0dd343 Description: Perl Database Interface (DBI) Homepage: http://dbi.perl.org/ Description-md5: aa070f52bfbf0d9e220aa40da4b4ced1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libdbi1 Priority: optional Section: libs Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: libdbi Version: 0.9.0-1 Depends: libc6 (>= 2.8) Breaks: libapache2-mod-log-sql-dbi (<= 1.100-11), libdbd-mysql (<< 0.8.2-1), libdbd-pgsql (<< 0.8.2-1), libdbd-sqlite (<< 0.8.2-1) Filename: pool/main/libd/libdbi/libdbi1_0.9.0-1_i386.deb Size: 28340 MD5sum: 490cb51eb58f67f24b11a27e40228333 SHA1: 73dc92932079008d765e3e338e6bf01dc5bdaa28 SHA256: 63e20cc8c7575a1bea5086ce5a2b47721a0632950e338e48e0bee630d843f747 Description: DB Independent Abstraction Layer for C -- shared library Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: 68fb04da0e97eaa776bc3ae20156b39c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdbi1-dbg Priority: extra Section: debug Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: libdbi Version: 0.9.0-1 Depends: libdbi1 (= 0.9.0-1) Filename: pool/main/libd/libdbi/libdbi1-dbg_0.9.0-1_i386.deb Size: 46756 MD5sum: 59b96f4b7e358a6cc72964fbd00af270 SHA1: 51f0f0400bd0fe366289f5401edcf1895754e3e0 SHA256: fa5ce57e75917aa6b8e734fb2f260aa964d9719a1320ad2022c1feab591aeeae Description: DB Independent Abstraction Layer for C -- debugging symbols Multi-Arch: same Homepage: http://libdbi.sourceforge.net/ Description-md5: 8e7672c71437c79da8c88da87f06433b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbm-deep-perl Priority: optional Section: perl Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.0011-1 Depends: perl Suggests: libdbi-perl, libdbd-sqlite3-perl | libdbd-mysql-perl Filename: pool/main/libd/libdbm-deep-perl/libdbm-deep-perl_2.0011-1_all.deb Size: 103716 MD5sum: e686f93fa0f15240588e93679a97f9bf SHA1: 9c2f98f200d3a19813de4b601d6c43b2994dcd81 SHA256: 4baae2212b3d2a3d3c50b2df6b5f30f362ab5f4a4ecfc3d69a35566569c67f50 Description: pure perl multi-level hash/array DBM that supports transactions Homepage: https://metacpan.org/release/DBM-Deep/ Description-md5: 239b9b1c3e41ef14bc74e72629e57b91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-1-3 Priority: required Section: libs Installed-Size: 398 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: dbus Version: 1.6.18-0ubuntu4 Depends: libc6 (>= 2.10) Pre-Depends: multiarch-support Recommends: dbus Breaks: kde-window-manager (<< 4:4.4.5-9), kdebase-workspace-bin (<< 4:4.4.5-9) Filename: pool/main/d/dbus/libdbus-1-3_1.6.18-0ubuntu4_i386.deb Size: 131568 MD5sum: e46252b6ec630d2393ac1c61a053af2b SHA1: 6e194519e2d838a66950ab8a3ee98aa02f4fd789 SHA256: f9843ecca7b059d1b86539356eb4e5c8422c000c97ec6e8116203fa97a107176 Description: simple interprocess messaging system (library) Multi-Arch: same Homepage: http://dbus.freedesktop.org/ Description-md5: 394b84dd0007d22bc4bb591ca6b5fa31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libdbus-1-dev Priority: optional Section: libdevel Installed-Size: 719 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: dbus Version: 1.6.18-0ubuntu4 Depends: libdbus-1-3 (= 1.6.18-0ubuntu4), pkg-config Filename: pool/main/d/dbus/libdbus-1-dev_1.6.18-0ubuntu4_i386.deb Size: 145548 MD5sum: 6c6cd286d4ff77c8b99e0ae79b4f7a86 SHA1: 59161381cee8b35b781f9b636e2b7107f175689a SHA256: a7c931910cc191be2ab1d29317d09e2e95c5128184ec3758b32421ae86693879 Description: simple interprocess messaging system (development headers) Multi-Arch: same Homepage: http://dbus.freedesktop.org/ Description-md5: 59e71e7e764b950dc1184788af416a7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-c++-1-0 Priority: optional Section: libs Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Cheng Architecture: i386 Source: dbus-c++ Version: 0.9.0-6ubuntu1 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/d/dbus-c++/libdbus-c++-1-0_0.9.0-6ubuntu1_i386.deb Size: 79210 MD5sum: 80b8a4ca4624da7d56d5d7cfdb1ebcd2 SHA1: 633b40dc32b99d37b8445d400dd6f9c17598aae1 SHA256: ebc8dd6130e1722a58644f3c0f9aaed69ba075997346ca5527f019812ee0941e Description: C++ API for D-Bus (runtime package) Multi-Arch: same Homepage: http://sourceforge.net/projects/dbus-cplusplus/ Description-md5: e5b1c64b0141a3e970558211fa3293cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libdbus-c++-bin Priority: optional Section: utils Installed-Size: 209 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Cheng Architecture: i386 Source: dbus-c++ Version: 0.9.0-6ubuntu1 Replaces: libdbus-c++-dev (<< 0.9.0-5) Depends: libdbus-c++-1-0 (= 0.9.0-6ubuntu1), libc6 (>= 2.4), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Suggests: libdbus-c++-dev Breaks: libdbus-c++-dev (<< 0.9.0-5) Filename: pool/main/d/dbus-c++/libdbus-c++-bin_0.9.0-6ubuntu1_i386.deb Size: 66582 MD5sum: 99f90480729562423a473474256b47a4 SHA1: f947b8a23740d00dca224a79e66818c0d635bccb SHA256: e7b0c9339f6e94355b79b41a4845fdbbde80f162cc6a2ffa80623e3b3c7a9df6 Description: C++ API for D-Bus (utilities) Multi-Arch: foreign Homepage: http://sourceforge.net/projects/dbus-cplusplus/ Description-md5: 11fea8988ab523e211c9b2a393825830 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-c++-dbg Priority: extra Section: debug Installed-Size: 908 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Cheng Architecture: i386 Source: dbus-c++ Version: 0.9.0-6ubuntu1 Depends: libdbus-c++-1-0 (= 0.9.0-6ubuntu1) Filename: pool/main/d/dbus-c++/libdbus-c++-dbg_0.9.0-6ubuntu1_i386.deb Size: 807236 MD5sum: 365d6f69509e1eae71d650196357f3e6 SHA1: d05a896f2fa2af30c8b4fdfe8f39661879fe27f2 SHA256: d32f75995417f442101be51d861afd3ee9694c072b4889f3c4323c6d5df46fa7 Description: C++ API for D-Bus (debugging symbols) Multi-Arch: same Homepage: http://sourceforge.net/projects/dbus-cplusplus/ Description-md5: b870962dc8aad60f27dcee65a515a96f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-c++-dev Priority: extra Section: libdevel Installed-Size: 556 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Cheng Architecture: i386 Source: dbus-c++ Version: 0.9.0-6ubuntu1 Depends: libdbus-c++-1-0 (= 0.9.0-6ubuntu1), libdbus-c++-bin (= 0.9.0-6ubuntu1) Filename: pool/main/d/dbus-c++/libdbus-c++-dev_0.9.0-6ubuntu1_i386.deb Size: 135178 MD5sum: 9ea1c17aa96d1dd5f49dffa02fe9a176 SHA1: 9b206e058825586f4a256aedc09e2b533ca6f971 SHA256: f44e2df6650d6ab40452f54132a7ec882e7769e2f26898b524647261c4200d58 Description: C++ API for D-Bus (development package) Multi-Arch: same Homepage: http://sourceforge.net/projects/dbus-cplusplus/ Description-md5: 28bfd5efb403f1587ce0104458bf8259 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-c++-doc Priority: optional Section: doc Installed-Size: 13096 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Cheng Architecture: all Source: dbus-c++ Version: 0.9.0-6ubuntu1 Suggests: libdbus-c++-dev Filename: pool/main/d/dbus-c++/libdbus-c++-doc_0.9.0-6ubuntu1_all.deb Size: 8758088 MD5sum: 62925b542157ce3c075512d388e66d26 SHA1: 3e293ae568a2165e22c48b909755f48515b9c2b1 SHA256: 774244ca84d4e07e3f7b420ecffc546e50c8bf88405d3868cdb2b07486be601f Description: C++ API for D-Bus (documentation) Homepage: http://sourceforge.net/projects/dbus-cplusplus/ Description-md5: eb500f187c5f0c1247ff129ddac8ec71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-cpp-dev Priority: optional Section: libdevel Installed-Size: 289 Maintainer: Thomas Voß Architecture: i386 Source: dbus-cpp Version: 2.0.0+14.04.20140326-0ubuntu1 Replaces: dbus-cpp-dev Provides: dbus-cpp-dev Depends: dbus, libdbus-cpp2 (= 2.0.0+14.04.20140326-0ubuntu1) Conflicts: dbus-cpp-dev Filename: pool/main/d/dbus-cpp/libdbus-cpp-dev_2.0.0+14.04.20140326-0ubuntu1_i386.deb Size: 29728 MD5sum: ba93bacf92fb8590a33ed790cd120ef7 SHA1: 5d30c27795f1463d65830c5dbcc4b673ab2589a1 SHA256: 1fd6bb7d785ca0fe57e8d6bc71785017e4ef92882f68b5aba95e92545e36e3bc Description: header-only dbus-binding leveraging C++-11 Multi-Arch: same Homepage: http://launchpad.net/dbus-cpp Description-md5: d97e755c33b36b87f5426fb54680aa16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-cpp2 Priority: optional Section: libdevel Installed-Size: 332 Maintainer: Thomas Voß Architecture: i386 Source: dbus-cpp Version: 2.0.0+14.04.20140326-0ubuntu1 Depends: libboost-system1.54.0, libc6 (>= 2.9), libdbus-1-3 (>= 1.5.12), libgcc1 (>= 1:4.1.1), libprocess-cpp1 (>= 1.0.0+14.04.20140326.2), libstdc++6 (>= 4.6) Filename: pool/main/d/dbus-cpp/libdbus-cpp2_2.0.0+14.04.20140326-0ubuntu1_i386.deb Size: 94520 MD5sum: 61ba40af7c06b36bcb3b8cde26b04018 SHA1: 38a3aed14f0b772bf2d96e59c7e37d8201428c06 SHA256: 2466537128ae87de58ac4d1b9fd1e43ee6c46a07f706fc03f65fd3f2c38232ea Description: header-only dbus-binding leveraging C++-11 Multi-Arch: same Homepage: http://launchpad.net/dbus-cpp Description-md5: fadd479c0a893a82d7c86d90d21f71cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Package: libdbus-glib-1-2 Priority: standard Section: libs Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: dbus-glib Version: 0.100.2-1 Depends: libc6 (>= 2.1.3), libdbus-1-3 (>= 1.2.16), libglib2.0-0 (>= 2.31.8) Pre-Depends: multiarch-support Filename: pool/main/d/dbus-glib/libdbus-glib-1-2_0.100.2-1_i386.deb Size: 74174 MD5sum: bac45ecb2d06c4bbfe1e2dbbed12b900 SHA1: 3d4ad1c72ced66d2127b07751629f0e5fee38e7c SHA256: acc76a354e81837f4bc444f3717000ae4d17e2baa298008bb6104bb8126f568a Description: simple interprocess messaging system (GLib-based shared library) Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings Description-md5: 8e029ea0c5a369338dd772bd50b9c2ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libdbus-glib-1-2-dbg Priority: extra Section: libdevel Installed-Size: 663 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: dbus-glib Version: 0.100.2-1 Depends: libdbus-glib-1-2 (= 0.100.2-1) Pre-Depends: multiarch-support Filename: pool/main/d/dbus-glib/libdbus-glib-1-2-dbg_0.100.2-1_i386.deb Size: 254462 MD5sum: 8b3f140d765a100c5c7957d0799c8d17 SHA1: 52371cc3ccd425cb7af2c8922b306424945f95ea SHA256: 9da6ffb810a9939b5bbd43dbeecc095a1c2f594f817774b357fdaef9c8f7297b Description: simple interprocess messaging system (GLib library debug symbols) Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings Description-md5: 2283298a7ca8f3bbce925fe63eaae0fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-glib-1-dev Priority: optional Section: libdevel Installed-Size: 428 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: dbus-glib Version: 0.100.2-1 Replaces: dbus-glib-1-dev, libdbus-1-dev (<< 0.90), libdbus-glib0-dev Depends: libdbus-glib-1-2 (= 0.100.2-1), libdbus-1-dev (>= 1.1), libglib2.0-dev, libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libexpat1 (>= 2.0.1), libglib2.0-0 (>= 2.26) Conflicts: dbus-1-utils (<< 0.50-2), dbus-glib-1-dev, libdbus-glib-dev Filename: pool/main/d/dbus-glib/libdbus-glib-1-dev_0.100.2-1_i386.deb Size: 119040 MD5sum: 798116357b629758476b9990c32c1091 SHA1: 30d894371cdedaff08cdf36c16e5754de62db278 SHA256: f733dd745262569edd0068a7c5ec946ca7a2558d58fe8fffc9cbcb96f6aa5bf4 Description: simple interprocess messaging system (GLib interface) Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings Description-md5: 5ea06bb77132d80541f7a3ebc3402f7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbus-glib-1-doc Priority: optional Section: doc Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: dbus-glib Version: 0.100.2-1 Depends: lynx | www-browser Suggests: devhelp Filename: pool/main/d/dbus-glib/libdbus-glib-1-doc_0.100.2-1_all.deb Size: 51344 MD5sum: 2f606bf2d61730b9d807bd08b4e34d2a SHA1: 9836dad28556ccb98e5ace6790f178024e4c2600 SHA256: 5d3b737f30992525df808351b7181de3aef2f48556952553872693aa965520e3 Description: simple interprocess messaging system (GLib library documentation) Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings Description-md5: 3a88be189c8cacf1869dd0947bf8992c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-glib-dev Priority: optional Section: libdevel Installed-Size: 425 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: gir1.2-dbusmenu-glib-0.4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbusmenu-glib4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbus-glib-1-dev (>= 0.76), libgtk2.0-dev (>= 2.12.0) Filename: pool/main/libd/libdbusmenu/libdbusmenu-glib-dev_12.10.3+14.04.20140319-0ubuntu1_i386.deb Size: 58914 MD5sum: 1de8dfddace6fa50255c57d809d714b6 SHA1: a49d8618fabe335087cb5081dbd9c44b04057c54 SHA256: ae8456ffd29e708073f75c354f7c117e9dc30f6659448646f3aa9c9d7f80f267 Description: library for passing menus over DBus - development files Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 58fdbd052d2353e5107fe93d2ee4c2dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-glib-doc Priority: optional Section: doc Installed-Size: 379 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: all Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Filename: pool/main/libd/libdbusmenu/libdbusmenu-glib-doc_12.10.3+14.04.20140319-0ubuntu1_all.deb Size: 29440 MD5sum: e3ca18498f08845bacc342b64e927508 SHA1: 322fa63400425076d008f12965cc74381f032815 SHA256: f2a5c6863f8ffbbcae2eec507cbce40e06ae6e9bee8b8b16c00e17ca82bf28f3 Description: library for passing menus over DBus - documentation Homepage: https://launchpad.net/dbusmenu Description-md5: 1ffdc025924bc65b6e7979b1ccb175c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-glib4 Priority: optional Section: libs Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Pre-Depends: multiarch-support Filename: pool/main/libd/libdbusmenu/libdbusmenu-glib4_12.10.3+14.04.20140319-0ubuntu1_i386.deb Size: 38640 MD5sum: ea3ca39c8f5063d8dcb6803dfddc7086 SHA1: b8db67bdf20f758c2827873b92ea4bb381481878 SHA256: 8c35e421dff8a9a29b29b2524fccb7cb8e8382207edee50564c52f30c37d98c3 Description: library for passing menus over DBus Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: a6315d20d559a38a0d81a231c032d91e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdbusmenu-gtk-dev Priority: optional Section: libdevel Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: gir1.2-dbusmenu-gtk-0.4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbusmenu-gtk4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbus-glib-1-dev (>= 0.76), libgtk2.0-dev (>= 2.12.0), libdbusmenu-glib-dev Filename: pool/main/libd/libdbusmenu/libdbusmenu-gtk-dev_12.10.3+14.04.20140319-0ubuntu1_i386.deb Size: 32554 MD5sum: 968be6d4328036698d26b6e15a91ef2e SHA1: 7fd46fbb64abc057f55ce6ec30e1f26702a702a8 SHA256: 0ad0cdcae33620fcea2fc7690149570219c8438210a3d1e97c33db5fa7d18ddf Description: library for passing menus over DBus - GTK+ version developement files Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 67bb3e998dab738032b93e4b5bb82284 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-gtk-doc Priority: optional Section: doc Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: all Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Filename: pool/main/libd/libdbusmenu/libdbusmenu-gtk-doc_12.10.3+14.04.20140319-0ubuntu1_all.deb Size: 15940 MD5sum: 715e069cd65e1eded9e726e90e4478cd SHA1: 9197fce78c24b1ed1fe8fc32434772743209f104 SHA256: e7b3036f35ac87e71f61c5aac955919ca300014ecae006ca4a108bbe5777ce4a Description: library for passing menus over DBus - GTK+ version documentation Homepage: https://launchpad.net/dbusmenu Description-md5: a7a9a931f5576eb00980d2018473e7f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-gtk3-4 Priority: optional Section: libs Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.3.6-6~), libdbusmenu-glib4 (>= 0.5.90), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.14.0) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbusmenu/libdbusmenu-gtk3-4_12.10.3+14.04.20140319-0ubuntu1_i386.deb Size: 25924 MD5sum: 0ab063c4ed738ec12b17d16c77d00dc9 SHA1: cba2eaf76fbfd910fe37254bc1d41c745b21a84f SHA256: e64848851d176947870fb7ec75b0f274557d702b9f52e97d22e028257b83c625 Description: library for passing menus over DBus - GTK+ version Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 4ba40d4f9c3c572696eb980868211738 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdbusmenu-gtk3-dev Priority: optional Section: libdevel Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: gir1.2-dbusmenu-gtk3-0.4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbusmenu-gtk3-4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbus-glib-1-dev (>= 0.76), libgtk-3-dev (>= 2.91.4-0ubuntu1), libdbusmenu-glib-dev Filename: pool/main/libd/libdbusmenu/libdbusmenu-gtk3-dev_12.10.3+14.04.20140319-0ubuntu1_i386.deb Size: 32578 MD5sum: dfd365d0fd6d4736c0d581542942a2a2 SHA1: b4857642f7faba726fc9e1be61ebd974652e2b88 SHA256: 0fbaf1e13a4626714d828adcc85822e63247b3b6bca8f43527f7e1ffcb1fc884 Description: library for passing menus over DBus - GTK+ version developement files Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 67bb3e998dab738032b93e4b5bb82284 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-gtk4 Priority: optional Section: libs Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.3.6-6~), libdbusmenu-glib4 (>= 0.5.90), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.14.0) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbusmenu/libdbusmenu-gtk4_12.10.3+14.04.20140319-0ubuntu1_i386.deb Size: 25818 MD5sum: f1390b8989dc3c0a9aedfa869f411ea5 SHA1: 0801a6c367c43190db6be1819e8ab0424d3032f4 SHA256: 043a72f18a02d1a59b2ff012b2fb67c833451b1dec9fcc58fc0c884f4432434f Description: library for passing menus over DBus - GTK+ version Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 4ba40d4f9c3c572696eb980868211738 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdbusmenu-jsonloader-dev Priority: optional Section: libdevel Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Depends: libdbusmenu-jsonloader4 (= 12.10.3+14.04.20140319-0ubuntu1), libdbus-glib-1-dev (>= 0.76), libdbusmenu-glib-dev (= 12.10.3+14.04.20140319-0ubuntu1), libjson-glib-dev Filename: pool/main/libd/libdbusmenu/libdbusmenu-jsonloader-dev_12.10.3+14.04.20140319-0ubuntu1_i386.deb Size: 5010 MD5sum: 97e8a45c70dad7b32849f5512845659a SHA1: 6687b4e8207caf436edaf9d20f69b594aeee96e3 SHA256: aff064a6af74646303fca88668957657224062c0e968d1ff0ec9394f58514606 Description: library for passing menus over DBus - Test lib development files Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: ee7366a5b0c7b5d39e6c8d71e57cb54f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-jsonloader4 Priority: optional Section: libs Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libdbusmenu Version: 12.10.3+14.04.20140319-0ubuntu1 Pre-Depends: multiarch-support Filename: pool/main/libd/libdbusmenu/libdbusmenu-jsonloader4_12.10.3+14.04.20140319-0ubuntu1_i386.deb Size: 6982 MD5sum: f78f8148fb28b992985f1d01e5042733 SHA1: fa3c6db13cea388bd86a583e263a602a1a66b76c SHA256: bceb68061492c348d9eaeb92ddf1f88172163b0e66e569c7f323bd0f3c44387a Description: library for passing menus over DBus - Test lib Multi-Arch: same Homepage: https://launchpad.net/dbusmenu Description-md5: 31f242c10f2e529e839b458606442772 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-qt-dev Priority: optional Section: libdevel Installed-Size: 75 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: i386 Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libdbusmenu-qt2 (= 0.9.3+14.04.20140314-0ubuntu1), libqt4-dev Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt-dev_0.9.3+14.04.20140314-0ubuntu1_i386.deb Size: 6946 MD5sum: 64d0bef4efa96cb5e113970725e670c3 SHA1: ba9e7601db5f35eddb6a728ba4db688add2e9512 SHA256: 2c5fb2c7a946e8093252474f803a7c6b989195c67a22e5ce5e03414643f91d6f Description: Qt implementation of the DBusMenu protocol (development) Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: 96bb127582683d0569a1c58e2c1ecb45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-qt-doc Priority: optional Section: doc Installed-Size: 263 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: all Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libjs-jquery Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt-doc_0.9.3+14.04.20140314-0ubuntu1_all.deb Size: 40826 MD5sum: f613acb24bfc69357b99814af2870b4d SHA1: 1773ded69579c676dd7870fb516bc988a0345385 SHA256: 04752c7906f9ed0f1f769b3aed1174a3efb1e26889e9d6573b3f0625bcc5574d Description: Qt implementation of the DBusMenu protocol (documentation) Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: ad7ef979e88a0b8aa837faede69206db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-qt2 Priority: optional Section: libs Installed-Size: 239 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: i386 Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.7.0~beta2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt2_0.9.3+14.04.20140314-0ubuntu1_i386.deb Size: 71384 MD5sum: 9a3342d19ae7dfdebcce5fa0fb505c98 SHA1: a31cb18ed2bcf72f9b7dc5d85493719b31b875f6 SHA256: 3d819e980224a8fc7595a4ca8184c26296aa4e245f885d334b205b6a04310376 Description: Qt implementation of the DBusMenu protocol Multi-Arch: same Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: 766edd98073f4d3a21908d0cdef3b2f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: libdbusmenu-qt5 Priority: optional Section: libs Installed-Size: 244 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: i386 Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Suggests: libqt5dbus5, libqt5gui5, libqt5widgets5 Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt5_0.9.3+14.04.20140314-0ubuntu1_i386.deb Size: 70650 MD5sum: ed11642de1f66327bc8d23d9464a5659 SHA1: 9ff4a273375b05206a4c0ee47afb38103f5bf6d2 SHA256: 63973f778e91f8248f16f89095a1650741230b6ed39ff5e4ef7d5489392f8962 Description: Qt5 implementation of the DBusMenu protocol Multi-Arch: same Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: b41fc7ee924555e1c2013886fe3c4e28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libdbusmenu-qt5-dev Priority: optional Section: libdevel Installed-Size: 75 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: i386 Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libdbusmenu-qt5 (= 0.9.3+14.04.20140314-0ubuntu1), qtbase5-dev Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt5-dev_0.9.3+14.04.20140314-0ubuntu1_i386.deb Size: 6930 MD5sum: d15a54fbf1be934cb2ffb7a5201d1638 SHA1: e0befff72ac786536f0d08fd4b0a04fbcad2662d SHA256: 43715af8628d5da12b48738b7de65cecb9aaecbd0bb98a22ee86115ba48dced8 Description: Qt5 implementation of the DBusMenu protocol (development) Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: 7316f530720c097bef78ae3b5660df5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbusmenu-qt5-doc Priority: optional Section: doc Installed-Size: 263 Maintainer: Kubuntu Developers Original-Maintainer: Jonathan Riddell Architecture: all Source: libdbusmenu-qt Version: 0.9.3+14.04.20140314-0ubuntu1 Depends: libjs-jquery Filename: pool/main/libd/libdbusmenu-qt/libdbusmenu-qt5-doc_0.9.3+14.04.20140314-0ubuntu1_all.deb Size: 40832 MD5sum: 0382540e846ede9f88a4c0ca64abe157 SHA1: 2b44cf683e15f11ff957fc3fe33c509bbf8286f5 SHA256: e971601d858947fee4d464d615dcd6f6cdcc58913513c28ee49f1b3a118d1cf4 Description: Qt5 implementation of the DBusMenu protocol (documentation) Homepage: https://launchpad.net/libdbusmenu-qt Description-md5: e6e9bf1b1d902742b48a46005ae5ba10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbustest1 Priority: optional Section: libs Installed-Size: 125 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: dbus-test-runner Version: 14.04.1+14.04.20140320-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3) Recommends: python3-dbusmock Filename: pool/main/d/dbus-test-runner/libdbustest1_14.04.1+14.04.20140320-0ubuntu1_i386.deb Size: 28296 MD5sum: 8a0486dabd6799e2d2eed53c2f8cae7a SHA1: e0d43ff3c1f8ecd715e6139b49bd6e9b71090977 SHA256: 03098c5de5cb164caf21f24be40297ac6d121b6e9de63ac0c7fd911f16f249c4 Description: Runs tests under a new DBus session Multi-Arch: same Homepage: https://launchpad.net/dbus-test-runner Description-md5: b819ee72bb8252917f5d12ee31a140ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdbustest1-dev Priority: optional Section: libdevel Installed-Size: 71 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: dbus-test-runner Version: 14.04.1+14.04.20140320-0ubuntu1 Depends: libglib2.0-dev, libdbustest1 (= 14.04.1+14.04.20140320-0ubuntu1) Filename: pool/main/d/dbus-test-runner/libdbustest1-dev_14.04.1+14.04.20140320-0ubuntu1_i386.deb Size: 4324 MD5sum: 197b180ebf65d9427f7dcfcf5e1f7e8f SHA1: f6f8081690c4468c629769db64e1084bfa64b76d SHA256: cc462d146b52c6448e4ffceecda3fcf8c60b52ef8e82d8ea725c44c3304e7a05 Description: Runs tests under a new DBus session Multi-Arch: same Homepage: https://launchpad.net/dbus-test-runner Description-md5: c23166453f6694d3b290d878db7e207e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-dbg Priority: extra Section: debug Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: d-conf Version: 0.20.0-1 Depends: libdconf1 (= 0.20.0-1) Filename: pool/main/d/d-conf/libdconf-dbg_0.20.0-1_i386.deb Size: 44986 MD5sum: a434be57354bce1f1130664f842437be SHA1: fa6dd73c439dd40a50de91911278cb09d1022ed6 SHA256: 33246e9017bea9c57f68b13a0f5598aa2441518e5242796cb5a017c096f1fb14 Description: simple configuration storage system - debugging symbols Multi-Arch: same Homepage: https://wiki.gnome.org/dconf Description-md5: 9f29eee974332ab712be9d4e3b38dc3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-dbus-1-0 Priority: optional Section: libs Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: d-conf Version: 0.20.0-1 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libglib2.0-0 (>= 2.39.1), libdconf1 (= 0.20.0-1) Pre-Depends: multiarch-support Filename: pool/main/d/d-conf/libdconf-dbus-1-0_0.20.0-1_i386.deb Size: 19758 MD5sum: a04cb3de8f92135e58c610b8afac975a SHA1: 1f8faa132c5459ce9923f93ea20914b8c1b04c1c SHA256: 77d268305eaf3de0f4b3f5399d912a6aaf0182f33b321099a5d042cbea30a155 Description: simple configuration storage system - D-Bus library Multi-Arch: same Homepage: https://wiki.gnome.org/dconf Description-md5: b4c812c63f2e0c9c75235c294edc9d00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-dbus-1-dbg Priority: extra Section: debug Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: d-conf Version: 0.20.0-1 Depends: libdconf-dbus-1-0 (= 0.20.0-1) Filename: pool/main/d/d-conf/libdconf-dbus-1-dbg_0.20.0-1_i386.deb Size: 42656 MD5sum: 7e751b8057d87d2e6423c14ba0c70868 SHA1: 1ac840d716b401fff10ca92ee0d5194dc4daef69 SHA256: e26faeeeed6bcc6570d1408cb1db0f5e1cb210c7f9e820464b68eaa0c151ce3a Description: simple configuration storage system - D-Bus debug symbols Multi-Arch: same Homepage: https://wiki.gnome.org/dconf Description-md5: b374a9264268fcabd65e57a147b475a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-dbus-1-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: d-conf Version: 0.20.0-1 Depends: libdconf-dbus-1-0 (= 0.20.0-1), libglib2.0-dev, libdbus-1-dev Filename: pool/main/d/d-conf/libdconf-dbus-1-dev_0.20.0-1_i386.deb Size: 2670 MD5sum: a65980d339202ef4cc87795c892cc821 SHA1: daf25aebe3116be24fb1f3681713354873b2f1d5 SHA256: aa60fa0967002b39b7957b075683def1c0eef9a89d76cc688928dceaa1361bd9 Description: simple configuration storage system - D-Bus development files Homepage: https://wiki.gnome.org/dconf Description-md5: 77b935cb77a45744b41f7fe36924e8dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-dev Priority: extra Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: d-conf Version: 0.20.0-1 Replaces: valac (<< 0.9.5) Depends: libdconf1 (= 0.20.0-1), libglib2.0-dev (>= 2.25.7) Recommends: libdconf-doc Breaks: valac (<< 0.9.5) Filename: pool/main/d/d-conf/libdconf-dev_0.20.0-1_i386.deb Size: 4276 MD5sum: 8196d5819b5da38ff64a8a7db9a4f60e SHA1: 8b0fd9472950a914be2fea63efeac9e9bc364be4 SHA256: bf432cb15f7e0dbb60a5837ba2c5990079a90459489765eaa1dee1905844419d Description: simple configuration storage system - development files Homepage: https://wiki.gnome.org/dconf Description-md5: 8a468e7db91abdc3f6a00615352bdbd2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf-doc Priority: optional Section: doc Installed-Size: 222 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: d-conf Version: 0.20.0-1 Filename: pool/main/d/d-conf/libdconf-doc_0.20.0-1_all.deb Size: 33424 MD5sum: 67fe6ef044d016d6a4ca3b8097507752 SHA1: 2cb5af80a7aef1ede521b1319440600efea467f6 SHA256: 7c22bec5df66084e3e5ace0870036e6cf689397abe0652f5f9f2d15d66b942b4 Description: simple configuration storage system - documentation Homepage: https://wiki.gnome.org/dconf Description-md5: 91ad4a904f2b2483abe22942755105f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdconf1 Priority: optional Section: libs Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: d-conf Version: 0.20.0-1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.39.1) Pre-Depends: multiarch-support Breaks: dconf-gsettings-backend (<< 0.10.0), gdm3 (<< 3.4.1-9) Filename: pool/main/d/d-conf/libdconf1_0.20.0-1_i386.deb Size: 31416 MD5sum: fb3ebab94f286de18f028cf26260b5b5 SHA1: 1bec9d4ad49b2883f378ed36f440032105e3beb6 SHA256: 20dc5b5eb93ee69554c2856e6132ee66f40d43ac86f0ae1db29d1c787e65552f Description: simple configuration storage system - runtime library Multi-Arch: same Homepage: https://wiki.gnome.org/dconf Description-md5: 468650903e334e192e00b3ec386e4f42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdebconfclient0 Priority: required Section: libs Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: i386 Source: cdebconf Version: 0.187ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/c/cdebconf/libdebconfclient0_0.187ubuntu1_i386.deb Size: 6594 MD5sum: b9e153c1cf4348dd545e8519cde1daf8 SHA1: 6bdc4eb81fba751cd1b4e70b8e39131ea2b234eb SHA256: 661a229ec8ab827aaaf6a5d20acc8031b2e8306f65ec60e677467ce05224ddce Description: Debian Configuration Management System (C-implementation library) Multi-Arch: same Description-md5: b378bda47ef5bd480fd87eac7a8cd0fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libdebconfclient0-dev Priority: optional Section: libdevel Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: i386 Source: cdebconf Version: 0.187ubuntu1 Replaces: libdebconf-dev Provides: libdebconfclient-dev Depends: libdebconfclient0 (= 0.187ubuntu1) Conflicts: cdebconf-dev, libcdebconf-dev, libdebconf-dev, libdebconfclient-dev Filename: pool/main/c/cdebconf/libdebconfclient0-dev_0.187ubuntu1_i386.deb Size: 9320 MD5sum: 8378444a7383dc8263b47cdafedf2860 SHA1: 36bb37e8c82ad0f73a01dba8afe3b27ac86eaede SHA256: 7f820f129f41a46dab4e48740d97d21f08fd9b9ec7d27bb09af36533280f8785 Description: Development files for cdebconf Multi-Arch: same Description-md5: 1a0c286931d2b4648ca209c2b325b1a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdebian-dpkgcross-perl Priority: extra Section: perl Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian Embedded Group Architecture: all Source: dpkg-cross Version: 2.6.11ubuntu1 Depends: perl, file, dpkg-dev (>> 1.14.6), libfile-temp-perl, libconfig-auto-perl, libfile-homedir-perl, liblocale-gettext-perl Filename: pool/main/d/dpkg-cross/libdebian-dpkgcross-perl_2.6.11ubuntu1_all.deb Size: 15894 MD5sum: 26e73fcef1c79353fcd812cfe1412614 SHA1: 5ec4e586c4e2f39b892f1213cf145246ca14410a SHA256: fd6b5270e83e24446353b21d8d137f01bc9ebe8663077d46765901f422b69aba Description: functions to aid cross-compiling Debian packages Homepage: http://dpkg-cross.alioth.debian.org/ Description-md5: db09ab9b6aecc2d54799cd5bbea2c491 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdebian-installer-extra4 Priority: optional Section: libs Installed-Size: 55 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: i386 Source: libdebian-installer Version: 0.88ubuntu4 Depends: libc6 (>= 2.7), libdebian-installer4 (= 0.88ubuntu4) Filename: pool/main/libd/libdebian-installer/libdebian-installer-extra4_0.88ubuntu4_i386.deb Size: 5180 MD5sum: a32f203a41122852136757116e47b8d5 SHA1: f54d8535971996cd75dc4b0269b0f0af8de9a8ee SHA256: f9c2b140d03643af62e31e5bb4bc52c0c841eeeee5166579cf74ba1640629c06 Description: Library of some extra debian-installer functions Multi-Arch: same Description-md5: 32e7f9f03c25886318648f08caae21cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdebian-installer4 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: i386 Source: libdebian-installer Version: 0.88ubuntu4 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libd/libdebian-installer/libdebian-installer4_0.88ubuntu4_i386.deb Size: 21132 MD5sum: a942b3b55765cdaf921c7ac7379e5ab8 SHA1: 2ce11b6c515ee4770bc91f1ac081a4b1d0965573 SHA256: 9b9f98d57e755ad7ab7b34fd3d15957d3c1260a3881d1d1c8a759b81d29707b4 Description: Library of common debian-installer functions Multi-Arch: same Description-md5: 00094361ed8983bbb1d7b850c62f3e1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libdebian-installer4-dev Priority: optional Section: libdevel Installed-Size: 1644 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: i386 Source: libdebian-installer Version: 0.88ubuntu4 Provides: libdebian-installer-dev Depends: libdebian-installer4 (= 0.88ubuntu4), libdebian-installer-extra4 (= 0.88ubuntu4) Conflicts: libdebian-installer-dev Filename: pool/main/libd/libdebian-installer/libdebian-installer4-dev_0.88ubuntu4_i386.deb Size: 114936 MD5sum: 7a5c98c741f7effc3ffb2f0fd876390a SHA1: 71fd5ebffb8ee1a0e11edec69527f1f1cafb2a1c SHA256: e7b3c011dd83ab45708a3060482358cf2dd70ce00b81cf79a35a93cca46e0379 Description: Library of common debian-installer functions Description-md5: 814b97674c6f9c4cc2c9d5abc86ff4f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdecoration0 Priority: optional Section: x11 Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Depends: libc6 (>= 2.4), libx11-6, libxrender1 Filename: pool/main/c/compiz/libdecoration0_0.9.11+14.04.20140409-0ubuntu1_i386.deb Size: 46608 MD5sum: bb6922af35b81e592a296ea86c011550 SHA1: 41d227e8d9e33c71375731128ef4b045b4dc80ef SHA256: 65987dacbd31331a0f3d6475ef059390fb31f21e065f2f5df29c435b5026b632 Description: Compiz window decoration library Description-md5: d54ec3ae170fe82084878bdc1b4f8687 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libdecoration0-dev Priority: optional Section: x11 Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: compiz Version: 1:0.9.11+14.04.20140409-0ubuntu1 Depends: libdecoration0 (= 1:0.9.11+14.04.20140409-0ubuntu1), libx11-dev, libxrender-dev (>= 1:0.9.1) Filename: pool/main/c/compiz/libdecoration0-dev_0.9.11+14.04.20140409-0ubuntu1_i386.deb Size: 6940 MD5sum: 6a451040af8556e5182b2ee9c6a8c0b7 SHA1: f0c13cbc0f2ba2d76a2ff872682ad211a25ddee2 SHA256: 8ca99f26ef5c514106a6b7bd108510e71a11f2c176265f8825e4059417531a06 Description: Compiz window decoration library - development files Description-md5: 6a66c25de23fa410e973153207110423 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-1.0-4 Priority: optional Section: libs Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: i386 Source: dee Version: 1.2.7+14.04.20140324-0ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libicu52 (>= 52~m1-1~) Pre-Depends: multiarch-support Filename: pool/main/d/dee/libdee-1.0-4_1.2.7+14.04.20140324-0ubuntu1_i386.deb Size: 71810 MD5sum: 4e147d17c1d7a7a776655c7d82e4d771 SHA1: 3ae866cd577c0aa2c8030ba40d140886e4e75a5c SHA256: aac43fd734e1993c1477892164c80759d99d7cce59b9ea15efdb743774f403b4 Description: model to synchronize multiple instances over DBus - shared lib Multi-Arch: same Homepage: https://launchpad.net/dee Description-md5: 7515a92a14357ed2c6efcfe54eae04b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdee-1.0-4-dbg Priority: extra Section: debug Installed-Size: 340 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: i386 Source: dee Version: 1.2.7+14.04.20140324-0ubuntu1 Depends: libdee-1.0-4 (= 1.2.7+14.04.20140324-0ubuntu1) Filename: pool/main/d/dee/libdee-1.0-4-dbg_1.2.7+14.04.20140324-0ubuntu1_i386.deb Size: 248532 MD5sum: d0943bae09d35f8ffdd8721a87de2abe SHA1: 3d88b0001e23148b8b124f02e82b7f18f8236bb5 SHA256: 91b2e75f5334f2ba867e52cfa3d9e6346f5e9480f3cc6c34295c537992e4550f Description: model to synchronize multiple instances over DBus Multi-Arch: same Homepage: https://launchpad.net/dee Description-md5: 1b25071dd4527b6b7599ca16ec39b41d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-dev Priority: optional Section: libdevel Installed-Size: 610 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: i386 Source: dee Version: 1.2.7+14.04.20140324-0ubuntu1 Depends: libdee-1.0-4 (= 1.2.7+14.04.20140324-0ubuntu1), gir1.2-dee-1.0, libglib2.0-dev (>= 2.22.0), libdbus-glib-1-dev (>= 0.80) Suggests: libdee-doc Filename: pool/main/d/dee/libdee-dev_1.2.7+14.04.20140324-0ubuntu1_i386.deb Size: 44086 MD5sum: 109d75a71f754b0cfb112ab63749ed45 SHA1: bf35700626141991b05dbbbe04a8d75e91bbd9df SHA256: d3020f996deb0bb91e6c7c8c8a1f7dc5aa9688d1601224e03c26a8c88746c585 Description: model to synchronize multiple instances over DBus - dev files Homepage: https://launchpad.net/dee Description-md5: 6851491fad355b0d3a4ee0086a377d34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-doc Priority: optional Section: doc Installed-Size: 776 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: all Source: dee Version: 1.2.7+14.04.20140324-0ubuntu1 Suggests: devhelp Filename: pool/main/d/dee/libdee-doc_1.2.7+14.04.20140324-0ubuntu1_all.deb Size: 58462 MD5sum: 00d7032c53c7c4ee7cd63ba0b1572f51 SHA1: 5b359921487500f656a6a66e576f683f32b6125d SHA256: d0860b31d09d884d26d19dd503e726ddb1ab50de731cd1367069b34689577a14 Description: model to synchronize multiple instances over DBus - documentation Homepage: https://launchpad.net/dee Description-md5: 11e5cff5e70ffaff6a342d3d4a0ef736 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-qt4-3 Priority: optional Section: libs Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Olivier Tilloy Architecture: i386 Source: dee-qt Version: 3.3+14.04.20140317-0ubuntu1 Depends: libdee-1.0-4 (>= 0.5.2), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1), libqt4-dbus, libqt4-declarative Pre-Depends: multiarch-support Filename: pool/main/d/dee-qt/libdee-qt4-3_3.3+14.04.20140317-0ubuntu1_i386.deb Size: 16418 MD5sum: da85133678fc5e61f44e733eed76d6b6 SHA1: 629209f059ee89690a6b417993c6b01dd66d24ac SHA256: c2d9441df8d2ffb13a3a4bdc74be61170e4405f94c19083c0fce862d292889d0 Description: Qt4 binding for Dee - shared library Multi-Arch: same Homepage: https://launchpad.net/dee-qt Description-md5: 4a30dc66e0016030ab14f687ab5e17b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-qt4-dev Priority: optional Section: libdevel Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Olivier Tilloy Architecture: i386 Source: dee-qt Version: 3.3+14.04.20140317-0ubuntu1 Replaces: libqtdee-dev Provides: libqtdee-dev Depends: libdee-qt4-3 (= 3.3+14.04.20140317-0ubuntu1), libqt4-dev (>= 4.7), libdee-dev (>= 1.0.0) Conflicts: libqtdee-dev Filename: pool/main/d/dee-qt/libdee-qt4-dev_3.3+14.04.20140317-0ubuntu1_i386.deb Size: 2770 MD5sum: ae8060e76074e82a38c7b27a9cf3572d SHA1: 4b98bd3fbf569399924a9b6be1ce2287564029cc SHA256: 9a923363f86b0351d5b71398468c3663ba2c0e7d00aff5be95a48f4994c76f3b Description: Qt binding for Dee - development files Homepage: https://launchpad.net/dee-qt Description-md5: ca2373cd878f932f15a9892fe12cae84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-qt5-3 Priority: optional Section: libs Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Olivier Tilloy Architecture: i386 Source: dee-qt Version: 3.3+14.04.20140317-0ubuntu1 Depends: libc6 (>= 2.1.3), libdee-1.0-4 (>= 0.5.2), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/d/dee-qt/libdee-qt5-3_3.3+14.04.20140317-0ubuntu1_i386.deb Size: 17216 MD5sum: 6975df7cbfebf15f49eb4b17b7573e49 SHA1: 7d46d198ad9bcbd9b1d2021445d3d443559f696e SHA256: 3b8ae1ff7903871136cd364768fb6baa5a4269ce92d23a394ec86f6d9668faf7 Description: Qt5 binding for Dee - shared library Multi-Arch: same Homepage: https://launchpad.net/dee-qt Description-md5: aec6908c79bf56620b44026260c1da22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdee-qt5-dev Priority: optional Section: libdevel Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Olivier Tilloy Architecture: i386 Source: dee-qt Version: 3.3+14.04.20140317-0ubuntu1 Depends: libdee-qt5-3 (= 3.3+14.04.20140317-0ubuntu1), libdee-dev (>= 1.0.0) Filename: pool/main/d/dee-qt/libdee-qt5-dev_3.3+14.04.20140317-0ubuntu1_i386.deb Size: 2772 MD5sum: 26cfa47ae2138db0c2efc0a5ec604489 SHA1: a17565a929cb6eb488c3dde3146e52d5e061f0ed SHA256: 6d9b35871d7311f28fb47b1174277b2715853db168a4a608f5f857d9f9725ebc Description: Qt5 binding and QtQuick2 plugin for Dee - development files Multi-Arch: same Homepage: https://launchpad.net/dee-qt Description-md5: 40eaf02e7d38ac76fa416e7abf5abf4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-caller-perl Priority: optional Section: perl Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 2.06-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3), libpadwalker-perl Filename: pool/main/libd/libdevel-caller-perl/libdevel-caller-perl_2.06-1build1_i386.deb Size: 12052 MD5sum: 12021550725da285bcc88cb19a427836 SHA1: dfafbbbff34493a3fc88ded5d294c2746a79a497 SHA256: 925484d8d217be655f8d3e2f7b3431f1901088b02bb739e2082f3a4977e42e21 Description: module providing enhanced caller() support Homepage: https://metacpan.org/release/Devel-Caller/ Description-md5: ad0dfe370ee7ed1b42895e16e40aafe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-cover-perl Priority: optional Section: perl Installed-Size: 581 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.08-1ubuntu2 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.3.4), perl (<< 5.18.3~) Suggests: libbrowser-open-perl, libjson-xs-perl, libpod-coverage-perl, libppi-html-perl | perltidy, libtemplate-perl, libtest-differences-perl Filename: pool/main/libd/libdevel-cover-perl/libdevel-cover-perl_1.08-1ubuntu2_i386.deb Size: 184198 MD5sum: 2e5747255d90f23436c30e8a184d8f4d SHA1: 70ad4d1d27020cb55313b14df9fdd6db67605fb2 SHA256: 63b3fe887a9dd2eef730fc0338871d33ef27415a8d9919bde8b5f31dc13702cd Description: Perl tool for determining code coverage metrics Homepage: https://metacpan.org/release/Devel-Cover/ Description-md5: 14aa017ee7cc6570ae7dd3bfb556e39c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-cycle-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.11-2 Depends: perl Suggests: libpadwalker-perl Filename: pool/main/libd/libdevel-cycle-perl/libdevel-cycle-perl_1.11-2_all.deb Size: 11734 MD5sum: 206bd223e4362ab3dac2050e609f6ab1 SHA1: 08960b22cb85df20fca799eca18c0604242c4ec7 SHA256: 6683cfce0579c7982685cc0fdc861a876496c0d809eec27065b85209feb800bc Description: Perl module to detect memory cycles in Perl objects Homepage: http://search.cpan.org/dist/Devel-Cycle/ Description-md5: ce8d683024731355a4200a498ff50253 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-declare-perl Priority: optional Section: perl Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.006015-1 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.4), libb-hooks-endofscope-perl, libb-hooks-op-check-perl (>= 0.19), libsub-name-perl Filename: pool/main/libd/libdevel-declare-perl/libdevel-declare-perl_0.006015-1_i386.deb Size: 31170 MD5sum: 5234e25e56f9c4899e9a0164b60c1c4c SHA1: de2ac230fe5a3784563e37b114d89fe91e5339bf SHA256: e207ea96a368f0c0cdf8a77d9f493fcd8d3af118de0b6a4db98fa73dd8abb516 Description: module to add new syntax to Perl Homepage: https://metacpan.org/release/Devel-Declare/ Description-md5: b1fb2e3a206c7c529fa629292fa647a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-globaldestruction-perl Priority: optional Section: perl Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.12-1 Depends: perl (>= 5.14.0), libsub-exporter-progressive-perl Filename: pool/main/libd/libdevel-globaldestruction-perl/libdevel-globaldestruction-perl_0.12-1_all.deb Size: 7858 MD5sum: 1d68209d82bc5ae75d1114ebec785138 SHA1: 3cde642dde0ba02934052f7ad7758ace382fa87b SHA256: 19846cbf52486ee963bc75c5be1579fc82dd7e661d732cd93aeae9d764d1d6bb Description: module to expose the flag that marks global destruction Homepage: https://metacpan.org/release/Devel-GlobalDestruction/ Description-md5: 52ac232f589fd38c2f99c464fe256d6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-lexalias-perl Priority: optional Section: perl Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.05-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3), libdevel-caller-perl Filename: pool/main/libd/libdevel-lexalias-perl/libdevel-lexalias-perl_0.05-1build1_i386.deb Size: 9818 MD5sum: efa5cbe814eb2595843d4db377f9ea3e SHA1: 61f804e81e2a29d1c23af5a2440e368bf424f59d SHA256: edcb20d34905964933513dd146fa193694b5107adf217f4c1b423a73a6d692d9 Description: Perl module that provides alias lexical variables Homepage: https://metacpan.org/release/Devel-LexAlias/ Description-md5: 80abecf1b6cb0c7b68436eccabcd51ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-partialdump-perl Priority: optional Section: perl Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.17-1 Depends: perl, libclass-tiny-perl, libnamespace-clean-perl (>= 0.20), libsub-exporter-perl Filename: pool/main/libd/libdevel-partialdump-perl/libdevel-partialdump-perl_0.17-1_all.deb Size: 13564 MD5sum: 663ae5d7093afc8ce0e89cb2beb9aa0e SHA1: 68c26c4764fa7a4bf52ec55d4862bd9bbd2c9e49 SHA256: e924b8202f327086265845291124b7dfcfcea6e94805bd9b825459ae6d3116e6 Description: Perl module to dump subroutine parameters concisely Homepage: https://metacpan.org/release/Devel-PartialDump/ Description-md5: 54bf265531fcc2601d743c0e527fb225 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-stacktrace-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.3000-1 Depends: perl Filename: pool/main/libd/libdevel-stacktrace-perl/libdevel-stacktrace-perl_1.3000-1_all.deb Size: 19894 MD5sum: 7c6103eb49f678921c8fa682d7aa2057 SHA1: b019ef7ad227d3996028493e14de3d273fc44ee4 SHA256: 5597f7db3c0ba04449266092a42c59390ad5cdb7cd348c2fb1337eb6565036b4 Description: Perl module containing stack trace and related objects Homepage: http://search.cpan.org/dist/Devel-StackTrace/ Description-md5: 00a628b735f7b2b23ad12a8bc4664922 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevel-symdump-perl Priority: optional Section: perl Installed-Size: 66 Maintainer: Colin Watson Architecture: all Version: 2.11-2 Depends: perl Filename: pool/main/libd/libdevel-symdump-perl/libdevel-symdump-perl_2.11-2_all.deb Size: 13420 MD5sum: 9ac683b0280399e69445f5eae21d07c7 SHA1: 74ccef0983200698989185b3bae5ed5b4c8e83ba SHA256: 2e1ae9ab13c1a0a9224c7145d09cc6aaf7ad3703cae23ef8a3534da0775932eb Description: Perl module for inspecting perl's symbol table Homepage: http://search.cpan.org/dist/Devel-Symdump/ Description-md5: 0b924661c0d3111e3fb79cac3c9803f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdevhelp-3-2 Priority: optional Section: libs Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: devhelp Version: 3.8.2-2ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.6), libpango-1.0-0 (>= 1.14.0), libwebkitgtk-3.0-0 (>= 1.3.10), zlib1g (>= 1:1.1.4), devhelp-common (>= 3.8.2-2ubuntu1) Filename: pool/main/d/devhelp/libdevhelp-3-2_3.8.2-2ubuntu1_i386.deb Size: 70822 MD5sum: 81ec64a8c0f33773d9853552c9bfc866 SHA1: 1a5c9b0fceb0887bc6d22c5f956f74063fdc0f3e SHA256: a6716d0251dfebbfe03284ad4837ab2d1bfd40c8995f9e9b9ede11d2137894f0 Description: Library providing documentation browser functionality Homepage: https://wiki.gnome.org/devhelp Description-md5: 21ddcea70a9cb4ee9c6d175af1786078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libdevhelp-dev Priority: optional Section: libdevel Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: devhelp Version: 3.8.2-2ubuntu1 Depends: libdevhelp-3-2 (= 3.8.2-2ubuntu1), libgtk-3-dev (>= 3.5.6), libwebkitgtk-3.0-dev (>= 1.6.0) Filename: pool/main/d/devhelp/libdevhelp-dev_3.8.2-2ubuntu1_i386.deb Size: 6096 MD5sum: cef29a407422cff609f50421f79539bd SHA1: cb8220976c0685420c9e9f08c27bb8023a33ab96 SHA256: 23f575063fe3eb9a15db3112fcf193ac05ebfdb74d4d05126673ec3602cc9418 Description: Library providing documentation browser functionality (development) Homepage: https://wiki.gnome.org/devhelp Description-md5: 7b49d3b0b0dd45d57e9ee7c132199c03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevmapper-dev Priority: optional Section: libdevel Installed-Size: 135 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: i386 Source: lvm2 (2.02.98-6ubuntu2) Version: 2:1.02.77-6ubuntu2 Depends: libdevmapper1.02.1 (= 2:1.02.77-6ubuntu2), libdevmapper-event1.02.1 (= 2:1.02.77-6ubuntu2), libselinux1-dev, libudev-dev Filename: pool/main/l/lvm2/libdevmapper-dev_1.02.77-6ubuntu2_i386.deb Size: 17216 MD5sum: e0dbc118ebfa15e0ff7fdf1e16766146 SHA1: b1fdcf5b03ecdda31305fa570d2ddc2798e3676f SHA256: e5ac358c009ba5d6086b6129021e86394e5209a82d36a818b48ca4b730750c77 Description: Linux Kernel Device Mapper header files Multi-Arch: same Homepage: http://sources.redhat.com/lvm2/ Description-md5: cd4f4f9d4fde600f0d1e37da66d54c85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdevmapper-event1.02.1 Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: i386 Source: lvm2 (2.02.98-6ubuntu2) Version: 2:1.02.77-6ubuntu2 Depends: libc6 (>= 2.15), libdevmapper1.02.1 (>= 2:1.02.63) Pre-Depends: multiarch-support Breaks: dmeventd (<< 2.02.95-4ubuntu1) Filename: pool/main/l/lvm2/libdevmapper-event1.02.1_1.02.77-6ubuntu2_i386.deb Size: 10458 MD5sum: 7634f54c2d4490c7b27bb9bff30c850f SHA1: c25bf5704b10c872692b526da9f6774cf47bf05c SHA256: 5c2b08b6872fa3f7a5e32c4f6049667686e229c20929d1ed6fc709616f9edac4 Description: Linux Kernel Device Mapper event support library Multi-Arch: same Homepage: http://sources.redhat.com/lvm2/ Description-md5: 13d66a8a0057f6e6c6d6c2b25188a38d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libdevmapper1.02.1 Priority: important Section: libs Installed-Size: 332 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: i386 Source: lvm2 (2.02.98-6ubuntu2) Version: 2:1.02.77-6ubuntu2 Depends: libc6 (>= 2.4), libselinux1 (>= 1.32), libudev1 (>= 183), dmsetup (>= 2:1.02.77-6ubuntu2) Pre-Depends: multiarch-support Conflicts: libdevmapper1.02 Breaks: lvm2 (<< 2.02.66) Filename: pool/main/l/lvm2/libdevmapper1.02.1_1.02.77-6ubuntu2_i386.deb Size: 89478 MD5sum: 2bc9d6392dee12c2abe16373c31614ac SHA1: 934b5efa8255670fe3cd2f1352da1b4a817adc5c SHA256: 270145cb2277b9c8b10054e28caa7cc76001e0d6df242f505f5688be7f449f47 Description: Linux Kernel Device Mapper userspace library Multi-Arch: same Homepage: http://sources.redhat.com/lvm2/ Description-md5: f57d8a0a3606e56cb6cc150cb7a19e50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libdhash-dev Priority: extra Section: libdevel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Depends: libdhash1 (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libdhash-dev_0.3.0.1-4_i386.deb Size: 17082 MD5sum: 39126431220841a7da8a8258f46c410c SHA1: b0a39321131a794d0a1872d2b1cb7a931cb54e7f SHA256: f0239933abf4fa6cdf77db9431a5f4eef8d9d21d0c6671131324ba8f4dfeb668 Description: Development files for libdhash Homepage: https://fedorahosted.org/sssd/ Description-md5: fe73aeb2d9bd8c430796eb752ba7b30d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdhash1 Priority: extra Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Replaces: libdhash Provides: libdhash Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Conflicts: libdhash Filename: pool/main/d/ding-libs/libdhash1_0.3.0.1-4_i386.deb Size: 8596 MD5sum: c6cbc8216a36dde75e6d6b75a48738c2 SHA1: 4b97ed30d2d402bed059c97db285c41c10ba5d08 SHA256: 9d7762e12cdb94a52f03b4254cd28ea5bc730ed64cea97ba8fa6796135576b90 Description: Dynamic hash table Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 0ca14de908fde381445369392f95dd0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdigest-hmac-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.03+dfsg-1 Depends: perl Filename: pool/main/libd/libdigest-hmac-perl/libdigest-hmac-perl_1.03+dfsg-1_all.deb Size: 12072 MD5sum: 7e10db441e0124fe8f0fe37ee9be74c3 SHA1: b50c708919a3c993e8298f0ac299b54dcc92f853 SHA256: c9fe7c086822e99131e4cd4b7075a964292684999f1ee2bedf4608bf7801dbfc Description: module for creating standard message integrity checks Homepage: http://search.cpan.org/dist/Digest-HMAC/ Description-md5: 70b680cf8c7387e1649b0563fe38d90d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdiscid-doc Priority: optional Section: doc Installed-Size: 318 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: all Source: libdiscid Version: 0.6.1-2 Depends: libjs-jquery Filename: pool/main/libd/libdiscid/libdiscid-doc_0.6.1-2_all.deb Size: 65216 MD5sum: 331512b63f557a02ae68539f07773f53 SHA1: f24d9b0d60675e1c5c50797a2a9aa8d8376f0b06 SHA256: e004e4f17421138dd715f58b7a4967cefe1cfc5080747b8f4e7271539cd545f4 Description: library for creating MusicBrainz DiscIDs (documentation) Multi-Arch: foreign Homepage: http://musicbrainz.org/doc/libdiscid Description-md5: fcfa93615ae573d7d31e819bce1ae97f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdiscid0 Priority: optional Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: libdiscid Version: 0.6.1-2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Suggests: libdiscid0-dbg (= 0.6.1-2) Filename: pool/main/libd/libdiscid/libdiscid0_0.6.1-2_i386.deb Size: 15330 MD5sum: c95f240c1150feba17593d6b7a742832 SHA1: e6553ebc8baaea00896e3f67075f8b037818cebb SHA256: 321e8629bb7f1f24a862263fec11198516eb413337b8ccc7379acf306f4c0f36 Description: library for creating MusicBrainz DiscIDs Multi-Arch: same Homepage: http://musicbrainz.org/doc/libdiscid Description-md5: 5344ed68feeead8556eb80f81eafd6f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, lubuntu-desktop Package: libdiscid0-dbg Priority: extra Section: debug Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: libdiscid Version: 0.6.1-2 Depends: libdiscid0 (= 0.6.1-2) Filename: pool/main/libd/libdiscid/libdiscid0-dbg_0.6.1-2_i386.deb Size: 24960 MD5sum: b1fbcad3444aa1a2dcf3852c49619815 SHA1: 294737c645447c71c54df9f80aa29a534dcccef9 SHA256: 69aa803f3ddfd50572ce5c7aff2ea62fe019d818ee8481a2527774183e39efd8 Description: library for creating MusicBrainz DiscIDs (debugging symbols) Multi-Arch: same Homepage: http://musicbrainz.org/doc/libdiscid Description-md5: 59bb38546b37a2c8085df18e6afb4368 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdiscid0-dev Priority: optional Section: libdevel Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: libdiscid Version: 0.6.1-2 Depends: libdiscid0 (= 0.6.1-2) Suggests: libdiscid-doc Filename: pool/main/libd/libdiscid/libdiscid0-dev_0.6.1-2_i386.deb Size: 43766 MD5sum: 1978a4d15a4976e34710b448e98c13c7 SHA1: d1d3bf8cebf56515fcb5370d8494d52f8ab14ca0 SHA256: dae21dddb35852a9fc5a9220a7904e920cb0253060ab26510c8eb3d94ce5307d Description: library for creating MusicBrainz DiscIDs (development files) Multi-Arch: same Homepage: http://musicbrainz.org/doc/libdiscid Description-md5: 7913462ea257bb6936e13f248507dc2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdist-checkconflicts-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.10-1 Depends: perl, liblist-moreutils-perl, libmodule-runtime-perl (>= 0.009) Filename: pool/main/libd/libdist-checkconflicts-perl/libdist-checkconflicts-perl_0.10-1_all.deb Size: 10058 MD5sum: d522001c5c4d8e9e98064266fca37c0f SHA1: 5eb267d3201f4b7c4dd4b19ac6573ae5279530c0 SHA256: 71834aba9cea5f869ff333e460967615239a410219fbce32da0cb16bb23a4f6f Description: module for declaring version conflicts for a distribution Homepage: https://metacpan.org/release/Dist-CheckConflicts/ Description-md5: 3ed68cbbfaa3fbc4f2e4e4db8290e3f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdistro-info-perl Priority: optional Section: perl Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Drung Architecture: all Source: distro-info Version: 0.12 Depends: distro-info-data, perl Filename: pool/main/d/distro-info/libdistro-info-perl_0.12_all.deb Size: 4682 MD5sum: b0fdea33bec6b92e33f7402a015e720e SHA1: dacd88150f716e814edea59fe16c6322ee2883ed SHA256: 14a1f301a981cf40fbf1cdea83c443403d0e77a5d57160ba82ff2fba05e7f10e Description: information about distributions' releases (Perl module) Description-md5: f417f8a2f224f083f2115d9569272b72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdjvulibre-dev Priority: optional Section: devel Installed-Size: 4840 Maintainer: Ubuntu Developers Original-Maintainer: Barak A. Pearlmutter Architecture: i386 Source: djvulibre Version: 3.5.25.4-3 Depends: libdjvulibre21 (= 3.5.25.4-3), libjpeg-dev Filename: pool/main/d/djvulibre/libdjvulibre-dev_3.5.25.4-3_i386.deb Size: 2341176 MD5sum: 5247ab2003ca09ce1cb5ecf76b303914 SHA1: 62a8e5930362ef78a13d24059e8f8edcf80228f4 SHA256: 9197a5b0c426c6f5e159d6d1d80afc1bd3e52962c5b65a3da9f50e2ccfa1eb69 Description: Development files for the DjVu image format Multi-Arch: same Homepage: http://djvu.sourceforge.net/ Description-md5: 7a47b77e06ba2a68a7aff0a9650a0118 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdjvulibre-text Priority: optional Section: libs Installed-Size: 382 Maintainer: Ubuntu Developers Original-Maintainer: Barak A. Pearlmutter Architecture: all Source: djvulibre Version: 3.5.25.4-3 Replaces: djview3 (= 3.5.20-9), djvulibre-desktop (<< 3.5.20-9), libdjvulibre15 Filename: pool/main/d/djvulibre/libdjvulibre-text_3.5.25.4-3_all.deb Size: 48840 MD5sum: 6b6fc3adede52eaec6490ab152480d98 SHA1: e54c2a243830263ab30a7ba60e6a83998db982dc SHA256: 35ecb11d65a2b48c4062313e68bf102388d7d2828d0956592e9c215f09de6c53 Description: Linguistic support files for libdjvulibre Multi-Arch: foreign Homepage: http://djvu.sourceforge.net/ Description-md5: d5fca3d4995b08f997ca3b715715e14b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdjvulibre21 Priority: optional Section: libs Installed-Size: 1647 Maintainer: Ubuntu Developers Original-Maintainer: Barak A. Pearlmutter Architecture: i386 Source: djvulibre Version: 3.5.25.4-3 Replaces: libdjvulibre1, libdjvulibre15 Depends: libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libjpeg8 (>= 8c), libstdc++6 (>= 4.1.1), libdjvulibre-text (>= 3.5.25.4-3) Pre-Depends: multiarch-support Conflicts: libdjvulibre1 Filename: pool/main/d/djvulibre/libdjvulibre21_3.5.25.4-3_i386.deb Size: 546480 MD5sum: 8981399374911de201225e0b528467c6 SHA1: 303191fa6794cc4afd0ed821d052d6e8be150a61 SHA256: 360ec48b3de40d576557d4f1289dd4576066b1429373bfd1f9d13765dacc9868 Description: Runtime support for the DjVu image format Multi-Arch: same Homepage: http://djvu.sourceforge.net/ Description-md5: 377e0a8fb1d56ba31c3feadafc4781b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdlm-dev Priority: optional Section: libdevel Installed-Size: 63 Maintainer: Andres Rodriguez Architecture: i386 Source: dlm Version: 4.0.1-0ubuntu1 Replaces: libdlm-dev (<= 3.1.8-1.1) Depends: libdlm3 (= 4.0.1-0ubuntu1) Breaks: libdlm-dev (<= 3.1.8-1.1) Filename: pool/main/d/dlm/libdlm-dev_4.0.1-0ubuntu1_i386.deb Size: 12882 MD5sum: 607013dda7c01bb5376037e60861f694 SHA1: aec2043ec634aedace37de6e44f9502788014610 SHA256: cca7b2b2046828bd8237cf742cb8ed3bf8ba91a33e90f8b2982b53a363060766 Description: DLM - distributed lock manager development files Homepage: https://git.fedorahosted.org/git/dlm.git Description-md5: 355f1dc46a5e6c94ed993f8849f5ed1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdlm3 Priority: optional Section: libs Installed-Size: 80 Maintainer: Andres Rodriguez Architecture: i386 Source: dlm Version: 4.0.1-0ubuntu1 Replaces: libdlm3 (<= 3.1.8-1.1) Depends: libc6 (>= 2.4) Breaks: libdlm3 (<= 3.1.8-1.1), udev (<< 0.136-1) Filename: pool/main/d/dlm/libdlm3_4.0.1-0ubuntu1_i386.deb Size: 15122 MD5sum: ce62827d406a8b823f3ce58d4c4fe073 SHA1: f93a3781c4004e90b7b3c8dab12005e03c032c75 SHA256: 3a93f6b8ce718d33ae15628430e8199de21685082fa180539a9a2a028757b8bf Description: DLM - distributed lock manager library Homepage: https://git.fedorahosted.org/git/dlm.git Description-md5: 0f627d9f2c1694e4b99ad977bf755732 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libdlmcontrol-dev Priority: optional Section: libdevel Installed-Size: 39 Maintainer: Andres Rodriguez Architecture: i386 Source: dlm Version: 4.0.1-0ubuntu1 Replaces: libdlmcontrol-dev (<= 3.1.8-1.1) Depends: libdlmcontrol3 (= 4.0.1-0ubuntu1) Breaks: libdlmcontrol-dev (<= 3.1.8-1.1) Filename: pool/main/d/dlm/libdlmcontrol-dev_4.0.1-0ubuntu1_i386.deb Size: 3214 MD5sum: 926841ca7e212010370c7d8b651d9400 SHA1: 1f3a78e10d7b6f1e3e22ef64e9f2ae32a1a66d37 SHA256: 824b510acb03cc364182d9da9736a2ad5f14bfa436b6ac66ae90c32c29b34ba9 Description: DLM - distributed lock manager development files Homepage: https://git.fedorahosted.org/git/dlm.git Description-md5: 355f1dc46a5e6c94ed993f8849f5ed1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdlmcontrol3 Priority: optional Section: libs Installed-Size: 46 Maintainer: Andres Rodriguez Architecture: i386 Source: dlm Version: 4.0.1-0ubuntu1 Replaces: libdlmcontrol3 (<= 3.1.8-1.1) Depends: libc6 (>= 2.4) Breaks: libdlmcontrol3 (<= 3.1.8-1.1) Filename: pool/main/d/dlm/libdlmcontrol3_4.0.1-0ubuntu1_i386.deb Size: 9256 MD5sum: 0c98a02291c32a238f1cc5128a83bcc9 SHA1: afa640ef18ea2caecbda83b3f8f6337f4fefd685 SHA256: 22219ead0d202b2dc4fd53d519b8c8125c2a079ba18b47cc603314ca4ed4fd69 Description: DLM - distributed lock manager library Homepage: https://git.fedorahosted.org/git/dlm.git Description-md5: 0f627d9f2c1694e4b99ad977bf755732 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdlrestrictions-dev Priority: extra Section: libdevel Installed-Size: 75 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: pkg-kde-tools Version: 0.15.12ubuntu1 Depends: libdlrestrictions1 (= 0.15.12ubuntu1) Filename: pool/main/p/pkg-kde-tools/libdlrestrictions-dev_0.15.12ubuntu1_i386.deb Size: 5936 MD5sum: 840ad5079fd23f91d916272579ef5e45 SHA1: 38d9a5f7e6880b122f4514762b8c885343d95073 SHA256: 83584ff706a5cf20f850fb24c0ba67133e480635d39eb88daba1e5e2fbf71c4a Description: development files for the DLRestrictions library Description-md5: fb7334f5c092bc11ad2eb318b1465d65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdlrestrictions1 Priority: extra Section: libs Installed-Size: 67 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: pkg-kde-tools Version: 0.15.12ubuntu1 Depends: libc6 (>= 2.4) Filename: pool/main/p/pkg-kde-tools/libdlrestrictions1_0.15.12ubuntu1_i386.deb Size: 10288 MD5sum: 1ddea64ade3c82eb9e69fbc1e19a379c SHA1: dfa14c734bf59694b81ae67e147d90ca5e4229f6 SHA256: 4c2b6b98a2650739830308c03d3b1beec6dda0cc86680a904150a6bff6a36f1c Description: library that implements library compatibility checks for dlopen() Description-md5: 28164c3828b6557ee21d394cbcb4648a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libdmapsharing-3.0-2 Priority: optional Section: libs Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libdmapsharing Version: 2.9.24-0ubuntu1 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libsoup2.4-1 (>= 2.32), zlib1g (>= 1:1.1.4) Filename: pool/main/libd/libdmapsharing/libdmapsharing-3.0-2_2.9.24-0ubuntu1_i386.deb Size: 63794 MD5sum: 5d4f92b22779cc87ec404be92b965856 SHA1: 435517c4b2a1aad833de8f8e7bbccf38d4a2909d SHA256: 3b046e77fec7d58ef8ddc8b3c87228a4cbd2fe0b606e2f1341a9d6a8fcec6863 Description: DMAP client and server library - runtime Homepage: http://www.flyn.org/projects/libdmapsharing/ Description-md5: b3621e4cd46512c95e25c2d5cff67ae1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libdmapsharing-3.0-dev Priority: optional Section: libdevel Installed-Size: 478 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libdmapsharing Version: 2.9.24-0ubuntu1 Depends: libdmapsharing-3.0-2 (= 2.9.24-0ubuntu1), libglib2.0-dev, libsoup2.4-dev, libgstreamer1.0-dev Filename: pool/main/libd/libdmapsharing/libdmapsharing-3.0-dev_2.9.24-0ubuntu1_i386.deb Size: 33488 MD5sum: f0c287333147c5fe9aa1de894701a3d5 SHA1: d2d054734df2ca1012de6143fac83c06c1775dca SHA256: 5076bf1597d3d58e3bc7558b473c6069380f166b0d1fbebacec29b16573b5da4 Description: DMAP client and server library - development Homepage: http://www.flyn.org/projects/libdmapsharing/ Description-md5: bb8f55d5c3a4142b22a433e34c58a8cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdmraid-dev Priority: optional Section: libdevel Installed-Size: 439 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Iuculano Architecture: i386 Source: dmraid Version: 1.0.0.rc16-4.2ubuntu3 Depends: libdmraid1.0.0.rc16 (= 1.0.0.rc16-4.2ubuntu3) Filename: pool/main/d/dmraid/libdmraid-dev_1.0.0.rc16-4.2ubuntu3_i386.deb Size: 108752 MD5sum: 62b596c8aca281788f59b4f6eab4f27e SHA1: 7750b9ba40ee555976f7196576a5b68bca119a9a SHA256: 58f107ec4c15ae03320d0ef89f946cc0bdfdec22d3818ffd4edcb0a1b852ead6 Description: Device-Mapper Software RAID support tool - header files Homepage: http://people.redhat.com/~heinzm/sw/dmraid/ Description-md5: e5a3901320dc2ca7963a3c9dcf456f14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdmraid1.0.0.rc16 Priority: optional Section: libs Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Iuculano Architecture: i386 Source: dmraid Version: 1.0.0.rc16-4.2ubuntu3 Replaces: libdmraid1.0.0.rc15 (<< 1.0.0.rc16-1) Depends: libc6 (>= 2.7), libdevmapper1.02.1 (>= 2:1.02.20) Filename: pool/main/d/dmraid/libdmraid1.0.0.rc16_1.0.0.rc16-4.2ubuntu3_i386.deb Size: 87476 MD5sum: aefb71b0566180676528b52e10a90ef1 SHA1: 11815d80046336eba25df01354ab4e524e4527f5 SHA256: 22bb406ea8bbfcf594794c769524fe37f3ebe804f7c89a34d2909d5b8dd3136a Description: Device-Mapper Software RAID support tool - shared library Homepage: http://people.redhat.com/~heinzm/sw/dmraid/ Description-md5: 46a093f4e6b08aef038639f58de18e32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libdmx-dev Priority: optional Section: libdevel Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdmx Version: 1:1.1.3-1 Replaces: x11proto-dmx-dev (<< 1:2.2.99.1) Depends: libdmx1 (= 1:1.1.3-1), libx11-dev, x11proto-dmx-dev Filename: pool/main/libd/libdmx/libdmx-dev_1.1.3-1_i386.deb Size: 35204 MD5sum: 227c6696776d52fd26c0953f00a766cd SHA1: 976ee5e48375a0bb995e0d7671fdd6f4ae7ed46a SHA256: 5ce2e172e9bd0e83b7b77b20006c87bffa5b8cbd88d11a7e8c0624a1ff80a8e6 Description: X11 Distributed Multihead extension library (development headers) Multi-Arch: same Description-md5: 4c3cc722eb34563e5337ba949cffc8b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdmx1 Priority: optional Section: libs Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdmx Version: 1:1.1.3-1 Depends: libc6 (>= 2.1.3), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libd/libdmx/libdmx1_1.1.3-1_i386.deb Size: 10668 MD5sum: e3d1f741ba8bec27dc3b02c70dd5d8f4 SHA1: d8716d9492cab0cb4cd754c03a6bd9900929a97c SHA256: f4d11f57cc0c38065757a6739f9a5be2d3025faa13db8670e7246998739d006c Description: X11 Distributed Multihead extension library Multi-Arch: same Description-md5: 3bb7f6af7b22c4a1e37a2eb6f705b674 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdmx1-dbg Priority: extra Section: libdevel Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdmx Version: 1:1.1.3-1 Depends: libdmx1 (= 1:1.1.3-1) Pre-Depends: multiarch-support Filename: pool/main/libd/libdmx/libdmx1-dbg_1.1.3-1_i386.deb Size: 26948 MD5sum: f1ba699397d9f8ed4c9a231266deea1f SHA1: 59caad96498374b7c1682d18eb6bb0d3ac5c7388 SHA256: b3874079d476e3a0a07dce568f92fd45e57b0db6f448bc507aa6bf47f4d57868 Description: X11 Distributed Multihead library (debug package) Multi-Arch: same Description-md5: c7776342d319349800d5af565864c2c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdns100 Priority: standard Section: libs Installed-Size: 2003 Maintainer: LaMont Jones Architecture: i386 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.4), libgeoip1, libgssapi-krb5-2 (>= 1.10+dfsg~), libisc95, libkrb5-3 (>= 1.6.dfsg.2), libssl1.0.0 (>= 1.0.0) Conflicts: libbind0, libbind9-41 Filename: pool/main/b/bind9/libdns100_9.9.5.dfsg-3_i386.deb Size: 625140 MD5sum: 634b8f2ee884fea135e8661ac697b220 SHA1: 80f216b9a40a948480f1cea59bb651e22a05ce35 SHA256: 4c90802f58382fd57639a1d7f8a926d3d933cfaebbb6b92d197ea59919ba928f Description: DNS Shared Library used by BIND Description-md5: fadbc60724c646c80c4b57d45d5e5161 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libdom4j-java Priority: optional Section: libs Installed-Size: 534 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: dom4j Version: 1.6.1+dfsg.3-2ubuntu1 Depends: libjaxen-java, libxpp2-java, libxpp3-java Suggests: libdom4j-java-doc Filename: pool/main/d/dom4j/libdom4j-java_1.6.1+dfsg.3-2ubuntu1_all.deb Size: 322862 MD5sum: 8fe4ede8082d57cd8a8e3af43ea2e085 SHA1: c88a4494fe9de842caa408fab794b8dd73975da9 SHA256: 5baa70c6dc64cfff9ce3ef80811b64dd187292a7b7c330bdd273e124ddc334bd Description: flexible XML framework for Java Homepage: http://sourceforge.net/projects/dom4j/ Description-md5: 50343e417d92798c418312c3142cb194 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdom4j-java-doc Priority: optional Section: doc Installed-Size: 4216 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: dom4j Version: 1.6.1+dfsg.3-2ubuntu1 Suggests: libdom4j-java Filename: pool/main/d/dom4j/libdom4j-java-doc_1.6.1+dfsg.3-2ubuntu1_all.deb Size: 493660 MD5sum: 91b5c67bc60a7a85f556fc62c639c242 SHA1: 9e772d04530d2ba9373b092bb4967ccc87737aec SHA256: f30259b160aac67e5b5ea05541cb54d9084bbacf760c30dfdf1002ee67225d03 Description: documentation for libdom4j-java Homepage: http://sourceforge.net/projects/dom4j/ Description-md5: fbba057eda34d9bea731ee2a1f4b3900 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdotconf-dev Priority: extra Section: libdevel Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Shane Wegner Architecture: i386 Source: dotconf Version: 1.3-0ubuntu2 Depends: libdotconf0 (= 1.3-0ubuntu2), libc6-dev Filename: pool/main/d/dotconf/libdotconf-dev_1.3-0ubuntu2_i386.deb Size: 19516 MD5sum: 034669e68ca6bc69258a3a38ff6622f6 SHA1: 33799104f51069a2c48c0e34b924a74f6545a19c SHA256: 6f188b278724b8cb75ecd0948982a0f06ed59c9791eb992055b905f7363b868c Description: Configuration file parser library - development files Description-md5: 48a406c7a7d2dd536c0d327fe0dc1849 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdotconf0 Priority: optional Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Shane Wegner Architecture: i386 Source: dotconf Version: 1.3-0ubuntu2 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/d/dotconf/libdotconf0_1.3-0ubuntu2_i386.deb Size: 13520 MD5sum: 4c3951de48d6d7b117b9ea609397ce1c SHA1: a3b949069e9a80f8de324c6dec60053c120a7b77 SHA256: 1f95ddbc621e33343ed38cffa1b431609f807b0a346fc43474b0d1ab498caefa Description: Configuration file parser library - runtime files Multi-Arch: same Description-md5: 921e2a5f88f20a745f43216bdd13ed16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdotconf0-dbg Priority: extra Section: debug Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Shane Wegner Architecture: i386 Source: dotconf Version: 1.3-0ubuntu2 Depends: libdotconf0 (= 1.3-0ubuntu2) Pre-Depends: multiarch-support Filename: pool/main/d/dotconf/libdotconf0-dbg_1.3-0ubuntu2_i386.deb Size: 21686 MD5sum: 799cefb70269ad357802cd05419f6d25 SHA1: 57aac2ddb99c9a10ce379008fc9591ff894c5f0f SHA256: 081c7aa0181626fb18e64b316f8e380a2734538caff46519da08c9bc198e66cc Description: Configuration file parser library - runtime files Multi-Arch: same Description-md5: 552f331f37966f8a47a288a6e6c2622a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdpkg-dev Priority: optional Section: libdevel Installed-Size: 1030 Maintainer: Ubuntu Developers Original-Maintainer: Dpkg Developers Architecture: i386 Source: dpkg Version: 1.17.5ubuntu5 Depends: zlib1g-dev, liblzma-dev, libbz2-dev Filename: pool/main/d/dpkg/libdpkg-dev_1.17.5ubuntu5_i386.deb Size: 94498 MD5sum: 02ab4d8d431aa0aebee57b0608250d3e SHA1: c1dfecbd999520836d8c3b538a12d815c8fca15a SHA256: 09ebfc6ac2400b21bad9a1ed64c0fe0a95169616fcb88aa16aba5877a58acda2 Description: Debian package management static library Origin: Ubuntu Bugs: https://bugs.launchpad.net/ubuntu/+filebug Homepage: https://wiki.debian.org/Teams/Dpkg Description-md5: 0fd17a1a6d9f7c47ceec993ee3976f22 Supported: 9m Package: libdpkg-perl Priority: optional Section: perl Installed-Size: 1520 Maintainer: Ubuntu Developers Original-Maintainer: Dpkg Developers Architecture: all Source: dpkg Version: 1.17.5ubuntu5 Replaces: dpkg (<< 1.15.8), dpkg-dev (<< 1.15.6) Depends: dpkg (>= 1.15.8), perl, libtimedate-perl Recommends: libfile-fcntllock-perl, bzip2, xz-utils Suggests: debian-keyring, gnupg | gnupg2, gpgv | gpgv2, gcc | c-compiler, binutils, patch Breaks: dpkg-dev (<< 1.15.6) Filename: pool/main/d/dpkg/libdpkg-perl_1.17.5ubuntu5_all.deb Size: 178470 MD5sum: 2048e5dd2281ff705d7c78533f13378f SHA1: b5066b701cf4dace92b5d133825b7543a6eb4b6e SHA256: e03c1a9bc8f7cd50ff763b9e29009aa713c604c7815220ef10c1f180099b4932 Description: Dpkg perl modules Origin: Ubuntu Bugs: https://bugs.launchpad.net/ubuntu/+filebug Multi-Arch: foreign Homepage: https://wiki.debian.org/Teams/Dpkg Description-md5: 3ee0a12d9e55e3d4d997dfd0f577ac59 Build-Essential: yes Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdrm-dev Priority: optional Section: libdevel Installed-Size: 669 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdrm Version: 2.4.52-1 Replaces: linux-libc-dev (<< 2.6.32-10) Depends: libdrm2 (= 2.4.52-1), libdrm-intel1 (= 2.4.52-1), libdrm-radeon1 (= 2.4.52-1), libdrm-nouveau2 (= 2.4.52-1) Filename: pool/main/libd/libdrm/libdrm-dev_2.4.52-1_i386.deb Size: 167124 MD5sum: 5587f1c94de1ff4bede43b8e6078d8e2 SHA1: 6c9f3119d418e49020522796a6cd92fedf88a61e SHA256: e29b56c28aadac2c1680d0396774129ac2d89efb62415750fe5690fa1414d534 Description: Userspace interface to kernel DRM services -- development files Multi-Arch: same Description-md5: 26367cfc3b23b21ad8b59e1f0974ff45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libdrm-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libdrm-dev Filename: pool/main/x/xorg-lts-transitional/libdrm-dev-lts-quantal_5_i386.deb Size: 1522 MD5sum: 35718455a27a631e2264791e65120f31 SHA1: fcc54012987c9768077174d5f98ac3a02404d072 SHA256: 08d4f2eb741ac0d0dd493730ade78f69ce69408dbfe0535842e59a6f90053d3e Description: Transitional package for libdrm-dev Description-md5: fa7d49c117a134050f84258d6b8f3ab8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdrm-intel1 Priority: optional Section: libs Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdrm Version: 2.4.52-1 Depends: libc6 (>= 2.17), libdrm2 (>= 2.4.38), libpciaccess0 Pre-Depends: multiarch-support Filename: pool/main/libd/libdrm/libdrm-intel1_2.4.52-1_i386.deb Size: 54160 MD5sum: 45ad0fe47bead92ea413988113bf6bbf SHA1: b82ca6264501f591ee819ac90c8731ddca3e9350 SHA256: b19014074370cc10c3ce47b9d3a2675a922738306466672013f580a99b004e67 Description: Userspace interface to intel-specific kernel DRM services -- runtime Multi-Arch: same Description-md5: a0ec25778ef74dfe186d7ace2946e2e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdrm-intel1-dbg Priority: extra Section: libdevel Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdrm Version: 2.4.52-1 Depends: libdrm-intel1 (= 2.4.52-1) Filename: pool/main/libd/libdrm/libdrm-intel1-dbg_2.4.52-1_i386.deb Size: 90620 MD5sum: 61df69e9eb78cb5a3ee6bd833e764289 SHA1: 2a440a5d8aeb6a8e2696a4060b58e5dee5c39d4e SHA256: 77f2114a11046c029a72cd30b72f2a717ccf7aa947cd5dc25abe9fd3b84094e1 Description: Userspace interface to intel-specific kernel DRM services -- debugging symbols Multi-Arch: same Description-md5: 479d5fd9b792b0e4005a9def65feed19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdrm-nouveau2 Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdrm Version: 2.4.52-1 Depends: libc6 (>= 2.3.4), libdrm2 (>= 2.4.38) Pre-Depends: multiarch-support Filename: pool/main/libd/libdrm/libdrm-nouveau2_2.4.52-1_i386.deb Size: 14202 MD5sum: 910f457519fdd2d0bf6517be8aaec73a SHA1: f66886d398ddc72156d8f7274baf7efdd0c25c59 SHA256: c8377ce0ddb32dbf7538b54c2f8f294a30af3e13ac3d2250c106e2ec43898502 Description: Userspace interface to nouveau-specific kernel DRM services -- runtime Multi-Arch: same Description-md5: e9d35521833d93a9e60b0579def3745c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdrm-nouveau2-dbg Priority: extra Section: debug Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdrm Version: 2.4.52-1 Depends: libdrm-nouveau2 (= 2.4.52-1) Filename: pool/main/libd/libdrm/libdrm-nouveau2-dbg_2.4.52-1_i386.deb Size: 24864 MD5sum: bf269d75acf24571f1f0a524d85bfb50 SHA1: 794ca02fcaf2190ad6d61454924dccfd25e5d8d0 SHA256: 1474e1532ac1239215b4afc5ae0b3cf157ac19722e8e727a3e9dc4bf0be709b5 Description: Userspace interface to nouveau-specific kernel DRM -- debugging symbols Multi-Arch: same Description-md5: bc7863f85d24e4be61774283f8d6e55d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdrm-radeon1 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdrm Version: 2.4.52-1 Depends: libc6 (>= 2.3.4), libdrm2 (>= 2.4.38) Pre-Depends: multiarch-support Filename: pool/main/libd/libdrm/libdrm-radeon1_2.4.52-1_i386.deb Size: 24596 MD5sum: 96557e27540e3d2ba3a82acd79799694 SHA1: 15dd1a2887e8786af404d61cb421350c6146e379 SHA256: 8cf8e3cd968cd59ad8e69a519b28731080a6128471656857069b90698fabc636 Description: Userspace interface to radeon-specific kernel DRM services -- runtime Multi-Arch: same Description-md5: fbdefd428f29bf05163182b24d86f2a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdrm-radeon1-dbg Priority: extra Section: debug Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdrm Version: 2.4.52-1 Depends: libdrm-radeon1 (= 2.4.52-1) Filename: pool/main/libd/libdrm/libdrm-radeon1-dbg_2.4.52-1_i386.deb Size: 44518 MD5sum: e835717895253a0eb015d344ba2e1923 SHA1: d2103bf2feee272689cbc678db8091864f8e14c0 SHA256: e02cdaef2ccf6ad8fdcdf7ebad9467c82f836b3b6a1dde4b2087f7f39c0952b4 Description: Userspace interface to radeon-specific kernel DRM services -- debugging symbols Multi-Arch: same Description-md5: 56a3655eb825ab9851b19faa2d4fad7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdrm2 Priority: required Section: libs Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdrm Version: 2.4.52-1 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/libd/libdrm/libdrm2_2.4.52-1_i386.deb Size: 23226 MD5sum: d048051a3d34aead6b014959108ec561 SHA1: 2705cfd56ce5cd3c0786c5908ca421af7f11321d SHA256: 89b43c0e35241a6811fe63ff99e0740e9566ae16db4a6e9cb24407cde9af6974 Description: Userspace interface to kernel DRM services -- runtime Multi-Arch: same Description-md5: aefc4200d84a6f2aee6f342bdd88dc24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libdrm2-dbg Priority: extra Section: libdevel Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libdrm Version: 2.4.52-1 Depends: libdrm2 (= 2.4.52-1) Filename: pool/main/libd/libdrm/libdrm2-dbg_2.4.52-1_i386.deb Size: 43312 MD5sum: dab7fefeeaecd7d2160c512bb2122c18 SHA1: b7655a82f51a2ca7b7e3243c57e16b58c94904da SHA256: a8acb7886fab992bb0ab4bc786caed7dbbf8b960843500937a77c481d9bcedeb Description: Userspace interface to kernel DRM services -- debugging symbols Multi-Arch: same Description-md5: 4ca6944e55bdf07eb73a9e7bebdd7276 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdumbnet-dev Priority: optional Section: libdevel Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: libdumbnet Version: 1.12-4build1 Depends: libc6 (>= 2.7), libdumbnet1 (= 1.12-4build1) Filename: pool/main/libd/libdumbnet/libdumbnet-dev_1.12-4build1_i386.deb Size: 52506 MD5sum: dcd8fd024ca6579e53154b75afd5ac2f SHA1: 13330db8c85edf0a3a0a0a64e7409464089ca783 SHA256: 8e48ded20410202d678612a21188e47ba1bc1166e5c0411e015706e78b92eafa Description: A dumb, portable networking library -- development files Homepage: http://code.google.com/p/libdnet/ Description-md5: 17b1f78b19b9fc67ae6fbefaee6f16f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdumbnet1 Priority: optional Section: libs Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: libdumbnet Version: 1.12-4build1 Depends: libc6 (>= 2.7) Filename: pool/main/libd/libdumbnet/libdumbnet1_1.12-4build1_i386.deb Size: 25324 MD5sum: 204749ae33126e6328b5b439168cdba6 SHA1: c4749ec6222684338c00a2044e2392f6f6ac12b7 SHA256: 238cabc47a6a71f42c0f04c4316a0bd30f32f27ce43a91dd87f3a7cd12144e87 Description: A dumb, portable networking library -- shared library Homepage: http://code.google.com/p/libdnet/ Description-md5: 76bb88e5df2b0c5aebe7bf74bed27710 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: libdv4 Priority: optional Section: libs Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: libdv Version: 1.0.0-6 Depends: libc6 (>= 2.11) Pre-Depends: multiarch-support Suggests: libdv-bin, oss-compat Filename: pool/main/libd/libdv/libdv4_1.0.0-6_i386.deb Size: 65224 MD5sum: 109b799b2cc3d61fc567c7ba099bb479 SHA1: e3911ae51f2f66989c72103e3e1a49c8206e5b0d SHA256: 681c9cd6c7aeda1b1efd5740cfbcc0be0f686b7d5d68c13b9fc54c3f930c6309 Description: software library for DV format digital video (runtime lib) Multi-Arch: same Homepage: http://libdv.sourceforge.net/ Description-md5: 736b863777ce31e159d4bbc98f81e587 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libdv4-dev Priority: extra Section: libdevel Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: libdv Version: 1.0.0-6 Replaces: libdv-dev Provides: libdv-dev Depends: libdv4 (= 1.0.0-6), libpopt-dev Recommends: pkg-config Conflicts: libdv-dev Filename: pool/main/libd/libdv/libdv4-dev_1.0.0-6_i386.deb Size: 9064 MD5sum: 0c974aa3ff00d81290b2e668a3e2911e SHA1: b56d4e8d0b7f155b6234bb2c2a604c13ecb8a379 SHA256: 36704739883d8a3eb49c149414656a8ea550b70e2df74addd74971631fed85c4 Description: software library for DV format digital video (devel files) Multi-Arch: same Homepage: http://libdv.sourceforge.net/ Description-md5: d017c359e4a26d0707ca717b327a65a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdw-dev Priority: optional Section: libdevel Installed-Size: 608 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: i386 Source: elfutils Version: 0.158-0ubuntu5 Depends: libelf-dev, libdw1 (= 0.158-0ubuntu5) Filename: pool/main/e/elfutils/libdw-dev_0.158-0ubuntu5_i386.deb Size: 146332 MD5sum: 5e4dac7ce1e337b82a0a1dee4f5ba080 SHA1: 3e6e15bdb109d9c9cabd36ae61a9e43c95489043 SHA256: ea94f6b186d280245f33bd768821b10fa242ef8460406530505a9b98a20fc9fe Description: libdw1 development libraries and header files Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: f125fde79e7cf4843502f64d2aca123c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libdw1 Priority: optional Section: libs Installed-Size: 660 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: i386 Source: elfutils Version: 0.158-0ubuntu5 Depends: libbz2-1.0, libc6 (>= 2.8), libelf1 (= 0.158-0ubuntu5), liblzma5 (>= 5.1.1alpha+20120614), zlib1g (>= 1:1.2.2.3) Pre-Depends: multiarch-support Filename: pool/main/e/elfutils/libdw1_0.158-0ubuntu5_i386.deb Size: 189878 MD5sum: f9b66d23da01d28f928fbc5764dbeb95 SHA1: 485f50261e5408dff72176774fd30fe6ecbd7458 SHA256: 1648e0ad67a5b3356d3764857b716aa533455eed0f9bf6ab0f63603cabcca7f4 Description: library that provides access to the DWARF debug information Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: 6238c70828caf72448d9f8116f0e5c97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libeasymock-java Priority: optional Section: libs Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: easymock Version: 2.5.2+ds-1 Suggests: junit4, libeasymock-java-doc Filename: pool/main/e/easymock/libeasymock-java_2.5.2+ds-1_all.deb Size: 66628 MD5sum: 20fcece73d4a645edf82c03e73db8d8e SHA1: 6969d1071bdf14497cb65a343162484275b3b3fb SHA256: 171e870b2df2497c2707a22e748187ec13586788185ce8b45a32a1fb3216a47b Description: Java library to generate Mock Objects for given interfaces Homepage: http://www.easymock.org Description-md5: ee077391c76cc4f7c567a56880a8e2da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libeasymock-java-doc Priority: optional Section: doc Installed-Size: 1619 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: easymock Version: 2.5.2+ds-1 Filename: pool/main/e/easymock/libeasymock-java-doc_2.5.2+ds-1_all.deb Size: 145698 MD5sum: c713b854ce190d41b99804107b32f48b SHA1: 4b60c3fc5c9e796dfcde8ba2a1df91f55731591a SHA256: cdfe1c4ee4f18f37c89950e3c7c2386c93dcba02df28e16d46eca55267eb3423 Description: Java library to generate Mock Objects for given interfaces (documentation) Enhances: libeasymock-java Homepage: http://www.easymock.org Description-md5: 44526f7427f08f22fe15fffcb5b0d1bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libebackend-1.2-7 Priority: optional Section: libs Installed-Size: 607 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.4), libdb5.3, libedataserver-1.2-18 (>= 3.10.0), libgcr-base-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.37.3), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.40.3), libsqlite3-0 (>= 3.6.0) Filename: pool/main/e/evolution-data-server/libebackend-1.2-7_3.10.4-0ubuntu1_i386.deb Size: 108348 MD5sum: 0ef1abf211bf4c02f5e33b7b1e88e4fa SHA1: 9e85f0b063b813c6c212d1d1c0c63fba0d276295 SHA256: 1ceec3278666059e89f8ed990d41abcf00c4babf27b4c12d811d4840be8cef65 Description: Utility library for evolution data servers Homepage: http://projects.gnome.org/evolution/ Description-md5: b3d133d6b14648a896d4e2d251b6dcae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libebackend1.2-dev Priority: optional Section: libdevel Installed-Size: 234 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libebackend-1.2-7 (= 3.10.4-0ubuntu1), libglib2.0-dev Filename: pool/main/e/evolution-data-server/libebackend1.2-dev_3.10.4-0ubuntu1_i386.deb Size: 13582 MD5sum: fe34466324ae907358a5c94984ac6731 SHA1: 1ed43d712381d6bf22826b91ba6f8d59612bba30 SHA256: 226fdb8277dd42400e3df269561f6dd50be77a2925ccf227fa4245c9ef10ad2f Description: Utility library for evolution data servers (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: a5d72b476981a785a5ae2459f4a20808 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libebook-1.2-14 Priority: optional Section: libs Installed-Size: 295 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.4), libcamel-1.2-45, libebackend-1.2-7, libebook-contacts-1.2-0 (>= 3.7.90), libedata-book-1.2-20 (>= 3.10.0), libedataserver-1.2-18 (>= 3.10.0), libglib2.0-0 (>= 2.34), libxml2 (>= 2.7.4) Filename: pool/main/e/evolution-data-server/libebook-1.2-14_3.10.4-0ubuntu1_i386.deb Size: 44876 MD5sum: a69a760ea2e42735d876e593294a0ed2 SHA1: 6b8da41c701f579bb49db983138cb9d92beee9d2 SHA256: fc3975dfb07b92404755887438f665a1041e549d0e3bad17eeb00dddb044b254 Description: Client library for evolution address books Homepage: http://projects.gnome.org/evolution/ Description-md5: cb24488ae2ac69e00752272e7be5221f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libebook-contacts-1.2-0 Priority: optional Section: libs Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.4), libedataserver-1.2-18 (>= 3.7.90), libglib2.0-0 (>= 2.34) Filename: pool/main/e/evolution-data-server/libebook-contacts-1.2-0_3.10.4-0ubuntu1_i386.deb Size: 44810 MD5sum: cdb9ef5cabbc4963acf909fff17a93d2 SHA1: 8f3309bafad061a09a704fdeba0d1203e10a9024 SHA256: 44e4acdf01cbac5f2dc3730b920c427059afabedbf08722acee09f580b9fdca1 Description: Client library for evolution contacts books Homepage: http://projects.gnome.org/evolution/ Description-md5: fd8f6220cee9a3b2df95847a5d20af2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libebook-contacts1.2-dev Priority: optional Section: libdevel Installed-Size: 449 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libebook-contacts-1.2-0 (= 3.10.4-0ubuntu1), libedataserver1.2-dev (= 3.10.4-0ubuntu1), libcamel1.2-dev (= 3.10.4-0ubuntu1) Filename: pool/main/e/evolution-data-server/libebook-contacts1.2-dev_3.10.4-0ubuntu1_i386.deb Size: 33338 MD5sum: 2f09e0af029133db8e02bb9c76af1bb5 SHA1: fdce93dd2fccb2aad9eeda7c84cd2cc64e3991cc SHA256: cc835262b646ff07d41977369869dc0eda39dd04e7bc100307070acfd1c96bc6 Description: Client library for evolution contacts books (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: db02360a3dd32c2d99c43b5ea29a380d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libebook1.2-dev Priority: optional Section: libdevel Installed-Size: 326 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libebook-1.2-14 (= 3.10.4-0ubuntu1), gir1.2-ebook-1.2 (= 3.10.4-0ubuntu1), libedataserver1.2-dev (= 3.10.4-0ubuntu1), libebook-contacts1.2-dev (= 3.10.4-0ubuntu1), libcamel1.2-dev (= 3.10.4-0ubuntu1), libglib2.0-dev Filename: pool/main/e/evolution-data-server/libebook1.2-dev_3.10.4-0ubuntu1_i386.deb Size: 18286 MD5sum: dc2d7a450e593d97976b91d7578d9078 SHA1: 12a20913b706b5fc116c28d86cc66fed031c2e79 SHA256: 846956c8970e7db2d3ab166136eb6d666e2d9aa6b9bc7c10e56e401246631df0 Description: Client library for evolution address books (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: ef3ee2f270bec1dd37ca08ab22a90311 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecal-1.2-16 Priority: optional Section: libs Installed-Size: 466 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.4), libedataserver-1.2-18 (>= 3.10.0), libglib2.0-0 (>= 2.34), libical1 (>= 1.0) Filename: pool/main/e/evolution-data-server/libecal-1.2-16_3.10.4-0ubuntu1_i386.deb Size: 94512 MD5sum: 7986833bf7bf69fd5897f0f39e942610 SHA1: 0c5f0d21be3633e70bae918dd69cedb8688d8788 SHA256: 19ee5f4a5daefaf5bf69b444d615308659e01f58e6e9f90437cb3108a441485d Description: Client library for evolution calendars Homepage: http://projects.gnome.org/evolution/ Description-md5: 04cb425637b47946ccd00f8590d52db8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libecal1.2-dev Priority: optional Section: libdevel Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libecal-1.2-16 (= 3.10.4-0ubuntu1), libical-dev (>= 0.43), libedataserver1.2-dev (= 3.10.4-0ubuntu1), libglib2.0-dev Filename: pool/main/e/evolution-data-server/libecal1.2-dev_3.10.4-0ubuntu1_i386.deb Size: 15648 MD5sum: c9e71f3b17f95ed2509a422cc0ad3b17 SHA1: 549e00a49f6c37571c422d797774673776eac0a2 SHA256: f979ab6e04a785594bb245020c9a4b07f140c28f160c754977e3391a9d85579a Description: Client library for evolution calendars (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: 64e78a627bc19180d08e2006a3590372 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecap2 Priority: extra Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: i386 Source: libecap Version: 0.2.0-1ubuntu4 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Filename: pool/main/libe/libecap/libecap2_0.2.0-1ubuntu4_i386.deb Size: 15234 MD5sum: 4ff0e3d28dd83fcbbdbbbe29733cdc6f SHA1: 2e3bcbca7fc2334477511d02a6ccf0a699b52a29 SHA256: c744aa2b9ba0afd0b3a806266f26f0cbad5fb39e74e89725bf5eca176147629a Description: eCAP library Homepage: http://www.e-cap.org/Downloads Description-md5: 9f1455007fb909c55f6b50ea29d233b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libecap2-dev Priority: extra Section: libdevel Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: i386 Source: libecap Version: 0.2.0-1ubuntu4 Depends: libecap2 (= 0.2.0-1ubuntu4) Filename: pool/main/libe/libecap/libecap2-dev_0.2.0-1ubuntu4_i386.deb Size: 22628 MD5sum: 9ff2ed1d728b520e55604d65c581d9d2 SHA1: ee255075edf607bc167e9a3f899b3a615930a2a5 SHA256: 4d1e420d36c87dcf806dc4680e4ec94e21b94ce99eaa06c0ee19568c561d08ef Description: eCAP development libraries Homepage: http://www.e-cap.org/Downloads Description-md5: df61b63e1494ff2ae59b89ae61f05f87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecj-java Priority: optional Section: libs Installed-Size: 1463 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ecj Version: 3.9.0-1 Replaces: ecj (<< 3.3.0-1), ecj-bootstrap (<< 3.2.2), eclipse-ecj Depends: java-common (>= 0.23) Recommends: default-jre-headless | java2-runtime-headless | java5-runtime-headless Suggests: ecj, ant, libecj-java-gcj Conflicts: ecj-bootstrap (<< 3.2.2), eclipse-ecj Filename: pool/main/e/ecj/libecj-java_3.9.0-1_all.deb Size: 1351576 MD5sum: cb4121aaadcbc7ba580f95cb8dcb3bfc SHA1: 2ef8b9fbcc953e6e09a54d4a38bc5894f1002b44 SHA256: 1f24d0cb24129bc92277754da48ba601e734803348fd171cc244c424d2437eb6 Description: Eclipse Java compiler (library) Description-md5: e33d4f11c75dd8a51173cfad687ae2c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libecj-java-gcj Priority: optional Section: libs Installed-Size: 4934 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: i386 Source: ecj Version: 3.9.0-1 Replaces: ecj-bootstrap-gcj (<< 3.2.2), ecj-gcj (<< 3.3.0+0728), eclipse-ecj-gcj Depends: java-common (>= 0.23), libecj-java (>= 3.9.0-1), libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.1-1~) Filename: pool/main/e/ecj/libecj-java-gcj_3.9.0-1_i386.deb Size: 1220208 MD5sum: 1d472dcc654e6dfabaeaf6b1d425bbcd SHA1: 8f359ffaf843d17a4d8d6ba261ada2b1242d6e49 SHA256: a9af6ae9b9fc026c30244ed96354cad637a4fcb091ac8f2ac59528dfc79dc7ab Description: Eclipse Java compiler (native library) Description-md5: 6a2c7480e747805957b4acfa89583de5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libecpg-compat3 Priority: optional Section: libs Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.3.6-6~), libecpg6 (>= 9.0~), libpgtypes3 Filename: pool/main/p/postgresql-9.3/libecpg-compat3_9.3.4-1_i386.deb Size: 11010 MD5sum: 95146c19a565ce75e9b9987359ffded1 SHA1: b5f0d797f8d06fe9353937a480f9d63d08e2419b SHA256: e721ff23f94f2af1912fd9f38960091430fe95fcd348910a51f67a8d3f7f3f2f Description: older version of run-time library for ECPG programs Homepage: http://www.postgresql.org/ Description-md5: 66ce228306ea5636e1cb757bd540255b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecpg-dev Priority: optional Section: libdevel Installed-Size: 1053 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.4), libpq-dev, libecpg6 (= 9.3.4-1), libecpg-compat3 (= 9.3.4-1), libpgtypes3 (= 9.3.4-1) Filename: pool/main/p/postgresql-9.3/libecpg-dev_9.3.4-1_i386.deb Size: 204274 MD5sum: 966730b20d35ef098db5f781fd56fc6d SHA1: f9fffd93637d7127abb15dad3b8bde00783cae7b SHA256: 19a051bf3eb8777a5b1666c31961cc3ea86d722c8b4cbab9fcd6e4272829690b Description: development files for ECPG (Embedded PostgreSQL for C) Homepage: http://www.postgresql.org/ Description-md5: 5eb928e68d1075508e3d6a4d7fc6f514 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecpg6 Priority: optional Section: libs Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.4), libpgtypes3, libpq5 (>= 9.0~) Filename: pool/main/p/postgresql-9.3/libecpg6_9.3.4-1_i386.deb Size: 34654 MD5sum: 8584277c00fe99a7348630720e09c161 SHA1: c40daeee6fae8670cb5a99a3f8ce4abbc189fdbf SHA256: 2dc3e773f735efa6c7f9d7e54e7eb9a2e8b48dba28d7d5e84f26a0782a255d2b Description: run-time library for ECPG programs Homepage: http://www.postgresql.org/ Description-md5: 51ed6df58b24baddae9952acb91903bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecryptfs-dev Priority: optional Section: libdevel Installed-Size: 208 Maintainer: Dustin Kirkland Original-Maintainer: Daniel Baumann Architecture: i386 Source: ecryptfs-utils Version: 104-0ubuntu1 Depends: libecryptfs0 (= 104-0ubuntu1), libgcrypt11-dev, libgpg-error-dev, libgpgme11-dev, libkeyutils-dev, libopencryptoki-dev, libpam0g-dev, libpkcs11-helper1-dev, libtspi-dev Filename: pool/main/e/ecryptfs-utils/libecryptfs-dev_104-0ubuntu1_i386.deb Size: 45686 MD5sum: e9fa915a58b5641271b08c09c4c24431 SHA1: 0e698f3438ad1848be7fd080cf76509b066546fb SHA256: 35346612ef2748f777eb4dc75174b42aae5b6ed0eb2cb615efa7f0f063236636 Description: ecryptfs cryptographic filesystem (development) Homepage: http://ecryptfs.org/ Description-md5: 4c5880400c7ab1144565f4ece5848c65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libecryptfs0 Priority: optional Section: libs Installed-Size: 159 Maintainer: Dustin Kirkland Original-Maintainer: Daniel Baumann Architecture: i386 Source: ecryptfs-utils Version: 104-0ubuntu1 Depends: libc6 (>= 2.8), libkeyutils1, libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1) Filename: pool/main/e/ecryptfs-utils/libecryptfs0_104-0ubuntu1_i386.deb Size: 46580 MD5sum: cdabacc088e1a082f5052e6ff3053406 SHA1: c9c8d4355021045144f08672182bc731ee810877 SHA256: a935107009e0e07bcc74612c5058478db76bde22a12a5ec7de1268fb7abcbbf8 Description: ecryptfs cryptographic filesystem (library) Homepage: http://ecryptfs.org/ Description-md5: 958faad97f1c3055b5fe02dce3e30b37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libedata-book-1.2-20 Priority: optional Section: libs Installed-Size: 365 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.7), libebackend-1.2-7 (>= 3.7.90), libebook-contacts-1.2-0 (>= 3.8.2), libedataserver-1.2-18 (>= 3.10.0), libglib2.0-0 (>= 2.34), libsqlite3-0 (>= 3.5.9) Filename: pool/main/e/evolution-data-server/libedata-book-1.2-20_3.10.4-0ubuntu1_i386.deb Size: 68130 MD5sum: e04571c8ee9ee086822437044d4230e8 SHA1: 6dcdac6d7922161e0064b2c64e7963af729eeebc SHA256: 880ca0bd87dfae757b00cb43e7ce8ae43b021327c86a107036714d9ec194fdbc Description: Backend library for evolution address books Homepage: http://projects.gnome.org/evolution/ Description-md5: 2951cda855016cedfd37b2b06ff0940f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libedata-book1.2-dev Priority: optional Section: libdevel Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libedata-book-1.2-20 (= 3.10.4-0ubuntu1), libedataserver1.2-dev (= 3.10.4-0ubuntu1), libebackend1.2-dev (= 3.10.4-0ubuntu1), libebook1.2-dev (= 3.10.4-0ubuntu1), libglib2.0-dev Filename: pool/main/e/evolution-data-server/libedata-book1.2-dev_3.10.4-0ubuntu1_i386.deb Size: 10864 MD5sum: b672c6b362cfdc8bfa1f31940e0be2e1 SHA1: ec01a04498d79ec82ea59062a21acb2477a7e2b3 SHA256: 8465ab0982dd926c7137e6c513b8498121360b6f3ab11cd987543ee79b615a45 Description: Backend library for evolution address books (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: daf7a85467bbdfac33345b2709b9f36d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libedata-cal-1.2-23 Priority: optional Section: libs Installed-Size: 365 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.4), libebackend-1.2-7 (>= 3.8.2), libecal-1.2-16 (>= 3.10.0), libedataserver-1.2-18 (>= 3.10.0), libglib2.0-0 (>= 2.34), libical1 (>= 1.0) Filename: pool/main/e/evolution-data-server/libedata-cal-1.2-23_3.10.4-0ubuntu1_i386.deb Size: 63294 MD5sum: e9e3eb9a3c6fb013c9058b590654ef80 SHA1: 01f846be07abacb3b60f1f8edf4ffa8ac2f3ef7c SHA256: 1b20ba3c52906e3807b394484f40e7179623bcda989d5e8d945aee1ee5b8b26c Description: Backend library for evolution calendars Homepage: http://projects.gnome.org/evolution/ Description-md5: 6f9b6ccd1e5738678caa1d75cb84cf43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libedata-cal1.2-dev Priority: optional Section: libdevel Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libedata-cal-1.2-23 (= 3.10.4-0ubuntu1), libical-dev (>= 0.43), libedataserver1.2-dev (= 3.10.4-0ubuntu1), libecal1.2-dev (= 3.10.4-0ubuntu1), libebackend1.2-dev (= 3.10.4-0ubuntu1), libglib2.0-dev Filename: pool/main/e/evolution-data-server/libedata-cal1.2-dev_3.10.4-0ubuntu1_i386.deb Size: 10942 MD5sum: 635c60c5ea9e14ab62e0106d4ecabc9f SHA1: 8d67cdeb6b6882f3a6d6314214f97b00b40e7766 SHA256: 2f8da4e34552c7221ad06f1983506847595990e707fe1c8e97d1302e693896f6 Description: Backend library for evolution calendars (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: e696a09b21241ebcdcff5dd7e60f1c19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libedataserver-1.2-18 Priority: optional Section: libs Installed-Size: 839 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libc6 (>= 2.11), libcamel-1.2-45, libgcr-base-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.37.3), libsoup2.4-1 (>= 2.40.3), libxml2 (>= 2.7.4), evolution-data-server-common (>= 3.10) Filename: pool/main/e/evolution-data-server/libedataserver-1.2-18_3.10.4-0ubuntu1_i386.deb Size: 166414 MD5sum: 341ec65496662203b6ddab6127373f53 SHA1: 236c7b7485c56d62485750449ca9f53321497243 SHA256: 68d9846bd4e044fc0c00fe0bf6da60a746ed96c792223d93f46ebd47a8510137 Description: Utility library for evolution data servers Homepage: http://projects.gnome.org/evolution/ Description-md5: fda04a0fcd5d6e38514bd04afa3d3e7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libedataserver1.2-dev Priority: optional Section: libdevel Installed-Size: 1085 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution-data-server Version: 3.10.4-0ubuntu1 Depends: libedataserver-1.2-18 (= 3.10.4-0ubuntu1), gir1.2-edataserver-1.2 (= 3.10.4-0ubuntu1), libedata-book1.2-dev, libcamel1.2-dev (= 3.10.4-0ubuntu1), libxml2-dev, libglib2.0-dev, libsoup2.4-dev, libsecret-1-dev Filename: pool/main/e/evolution-data-server/libedataserver1.2-dev_3.10.4-0ubuntu1_i386.deb Size: 74496 MD5sum: 944e512c23aeb92f1ee2ed2d94d70b69 SHA1: c1c1c72db0654cdf3bc437c166410facabf872f2 SHA256: e38e47ad697591a3c54f20eb42712e51e6122c18ec76a7ac8ebb5b57a304e0de Description: Utility library for evolution data servers (development files) Homepage: http://projects.gnome.org/evolution/ Description-md5: f544598afd99e88bcd01bf63f94d1b5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libedit-dev Priority: optional Section: libdevel Installed-Size: 450 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: i386 Source: libedit Version: 3.1-20130712-2 Depends: libedit2 (= 3.1-20130712-2), libbsd-dev (>= 0.1.3), libtinfo-dev Filename: pool/main/libe/libedit/libedit-dev_3.1-20130712-2_i386.deb Size: 106610 MD5sum: 1eb12bac19c29b1381df28f970bafe48 SHA1: 708035fd80a0944cf077dc4ff039abc0676bf827 SHA256: be0a6e44722e3365dd9f63508973fe878f1fe0c5c18501964be62e2391ba4fd3 Description: BSD editline and history libraries (development files) Multi-Arch: same Homepage: http://www.thrysoee.dk/editline/ Description-md5: 54bb892c6aa0a1d35b93b92b02a75cbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libedit2 Priority: standard Section: libs Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: i386 Source: libedit Version: 3.1-20130712-2 Depends: libc6 (>= 2.17), libtinfo5 Pre-Depends: multiarch-support Filename: pool/main/libe/libedit/libedit2_3.1-20130712-2_i386.deb Size: 84512 MD5sum: fcdfca28dc6a088ae7aa924c0782b280 SHA1: 6f03d3698233011f7d6f4baeee69c0a70ec55cd2 SHA256: dcbc9a850b566c501a16ffe2eac564dd8f4a99be4b3f0ef3e606a593adaee470 Description: BSD editline and history libraries Multi-Arch: same Homepage: http://www.thrysoee.dk/editline/ Description-md5: a6f790fcede07b70d3e02dd525b33082 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libedit2-dbg Priority: extra Section: debug Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: i386 Source: libedit Version: 3.1-20130712-2 Depends: libedit2 (= 3.1-20130712-2) Filename: pool/main/libe/libedit/libedit2-dbg_3.1-20130712-2_i386.deb Size: 148348 MD5sum: 06266c78ede0fb2ec8d3b1602d971a16 SHA1: bb6e9f2697f7f13b6a68ea41b80962ac985f9951 SHA256: b83b5e41a47d7ad92702654e1fae441bf06cc7fe82849081649d19dd8c6d5287 Description: BSD editline and history libraries (debug package) Multi-Arch: same Homepage: http://www.thrysoee.dk/editline/ Description-md5: b43859a00f9b459ff0bf594bd0cbfbdb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa Priority: optional Section: libs Installed-Size: 242 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libegl1-x11 Provides: libegl1-x11 Depends: libc6 (>= 2.8), libdrm2 (>= 2.4.25), libgbm1 (>= 7.11~1), libwayland-client0 (>= 1.3.92), libwayland-server0 (>= 1.2.0), libx11-6, libx11-xcb1, libxcb-dri2-0 (>= 1.8), libxcb-xfixes0, libxcb1, libudev1 | libudev0 Pre-Depends: multiarch-support Recommends: libegl1-mesa-drivers Conflicts: libegl1-x11 Filename: pool/main/m/mesa/libegl1-mesa_10.1.0-4ubuntu5_i386.deb Size: 57832 MD5sum: fb0e34ff4007f87905737bea458232a4 SHA1: e12110ad3bbf5e6a38a2704a229dddb1ba9f77ba SHA256: 068550d2c97ce21cc12cf9398fbd750432e61d1b7e7fb75828295a70b9bea785 Description: free implementation of the EGL API -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 303131c20d722e28695d1b6357d3c1c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libegl1-mesa-dbg Priority: extra Section: debug Installed-Size: 589 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libegl1-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libegl1-mesa-dbg_10.1.0-4ubuntu5_i386.deb Size: 160288 MD5sum: 357dc0b80fa16303647bf77f998cc9bc SHA1: d72e08a5d4097bca5952648ae04221c3ebd36d72 SHA256: d059184abde20c7260c9d16d6fdf25a2cba693e89a7a98895d10823fa3605a83 Description: free implementation of the EGL API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 2f865519d57e73074704ab36dee31207 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-dev Priority: optional Section: libdevel Installed-Size: 165 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libegl1-mesa (= 10.1.0-4ubuntu5), libegl1-mesa-drivers (= 10.1.0-4ubuntu5), libdrm-dev (>= 2.4.52), x11proto-dri2-dev (>= 2.6), x11proto-gl-dev (>= 1.4.14), libx11-dev, libxext-dev, libxxf86vm-dev, libxdamage-dev, libxfixes-dev, libxcb-glx0-dev, libxcb-dri2-0-dev, libxcb-dri3-dev, libxcb-present-dev, libxcb-sync-dev, libxshmfence-dev, libx11-xcb-dev, libmirclient-dev, libwayland-dev (>= 1.2.0) Filename: pool/main/m/mesa/libegl1-mesa-dev_10.1.0-4ubuntu5_i386.deb Size: 16688 MD5sum: 4fb7183429f1be04f3e49713d0563441 SHA1: be091c355e73a3573260d3fed714de7fdff9b013 SHA256: 9699630a2b57a05d0dc9c114330d5fb37523f905f8d8e43469607f807185d76b Description: free implementation of the EGL API -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 8e7125460d26d2b46c63ba2792ce25e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-dev-lts-quantal_5_i386.deb Size: 1544 MD5sum: 4e8f5c3287a12cf226bc51949a7d173a SHA1: 0882ca25dd9ac1a382c6ade54b71d889c719e820 SHA256: c831506b14c04afebfae01b25966d434c113c83247ee353538fd0650150c6ad9 Description: Transitional package for libegl1-mesa-dev Multi-Arch: same Description-md5: 4bca898e2a1c7dbed7511b8f328edb3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-dev-lts-raring_5_i386.deb Size: 1542 MD5sum: 98dcaeddc98fa3e710b36302a1fb5b7a SHA1: e981ec0db7968f45a4760d704405b56dabc040d1 SHA256: e7427e1d7c089b6159f51ef76e57b92788f3a5ddf41c4d0dca4e51cea67228e5 Description: Transitional package for libegl1-mesa-dev Multi-Arch: same Description-md5: 4bca898e2a1c7dbed7511b8f328edb3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-dev-lts-saucy_5_i386.deb Size: 1542 MD5sum: 889ef83b167af98c91da3db34d5e8726 SHA1: 5481e3f37093c6cda0e551bd5698b71838fcbecb SHA256: b3b84b005f2b425776491dd6b33fce516589a63b3d920dd46d82e18ee7770187 Description: Transitional package for libegl1-mesa-dev Multi-Arch: same Description-md5: 4bca898e2a1c7dbed7511b8f328edb3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers Priority: optional Section: libs Installed-Size: 6776 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libc6 (>= 2.4), libdrm-nouveau2 (>= 2.4.38), libdrm-radeon1 (>= 2.4.31), libdrm2 (>= 2.4.38), libegl1-mesa (= 10.1.0-4ubuntu5), libelf1 (>= 0.142), libgbm1 (>= 7.11~1), libgcc1 (>= 1:4.1.1), libgl1-mesa-dri, libglapi-mesa (= 10.1.0-4ubuntu5), libllvm3.4, libopenvg1-mesa (>= 7.9~) | libopenvg1, libstdc++6 (>= 4.6), libwayland-client0 (>= 1.3.92), libwayland-server0 (>= 1.2.0), libx11-6 (>= 2:1.4.99.1), libxext6, libxfixes3, libwayland-egl1-mesa (= 10.1.0-4ubuntu5), libudev1 | libudev0 Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libegl1-mesa-drivers_10.1.0-4ubuntu5_i386.deb Size: 1997904 MD5sum: 81ac35e036b388a95ab0927cca2d142e SHA1: 46947d2c7a7b330faecdcc98d187e34f88347621 SHA256: a3b5615bde9d4600221dbb348ef45a5a8e0c31cde3de95acc54fcd89c97224a5 Description: free implementation of the EGL API -- hardware drivers Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 6f63ffb98c579f02a36dc4f9945d5353 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libegl1-mesa-drivers-dbg Priority: extra Section: debug Installed-Size: 36935 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libegl1-mesa-drivers (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libegl1-mesa-drivers-dbg_10.1.0-4ubuntu5_i386.deb Size: 8269966 MD5sum: d7200553088dd3c2e399e00b1ba041ef SHA1: fd2b4fcf0fe727a4304212c9700b4231c90e9ee9 SHA256: 74e5d0f56bcc1496ea041b0d688b9ed46d70260519f24b4d5705a9f56240a2d4 Description: free implementation of the EGL API -- driver debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 2a77b1ce20257ac2bbd8df0260110ab0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-quantal_5_i386.deb Size: 1550 MD5sum: 026c39598cb3931a641ba8e4e06ee3e4 SHA1: cbd8232e9b1eca2f43cc7686a8331e9872f99702 SHA256: f236c1395a84a919f37c4ec573a61fc366e7ce804edee479068b2ac8ca4cbaab Description: Transitional package for libegl1-mesa-drivers Multi-Arch: same Description-md5: a5a8d66f909cb9994360bb92e98a6d2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-quantal-dbg_5_i386.deb Size: 1558 MD5sum: e3e9ab0eae3c48a976c71ef2079759f7 SHA1: 4b64ed77724d5155cd108c8050b1aa78c9c29b9b SHA256: 9bd57df3025ef62627df74c07f1cf3a22c196014c2f1a44a52ad125fc524dc3e Description: Transitional package for libegl1-mesa-drivers-dbg Multi-Arch: same Description-md5: 9127c7ac5c0d15075efb2cc58aac1fd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-raring_5_i386.deb Size: 1550 MD5sum: 949e218bc82fe0a7b1ce6dc415a82351 SHA1: 236562fa6548e2685d0ec8b10d4289acf23bcf1c SHA256: 659167b170fc07fbd80e41b3a320e8406b43f473bec114cde21ded8ed03177dc Description: Transitional package for libegl1-mesa-drivers Multi-Arch: same Description-md5: a5a8d66f909cb9994360bb92e98a6d2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-raring-dbg_5_i386.deb Size: 1552 MD5sum: 9fd20f663fa70d38a8bafddf60298ca0 SHA1: a23656b380df1a20325b9c154a7c925131800573 SHA256: ca526ce64090f32cebf2be5da9a7127c66f5dac16166bdf198dca752c5fbad84 Description: Transitional package for libegl1-mesa-drivers-dbg Multi-Arch: same Description-md5: 9127c7ac5c0d15075efb2cc58aac1fd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-saucy_5_i386.deb Size: 1548 MD5sum: 1957d06281cda2b95641de482a310188 SHA1: e60eae957d32c53ebf97ece008b85bcb5c82dd09 SHA256: 440f7ed9edeb051885900491a17fcaf53901c5087690fcc23ddf839bcf266f5b Description: Transitional package for libegl1-mesa-drivers Multi-Arch: same Description-md5: a5a8d66f909cb9994360bb92e98a6d2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-drivers-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-drivers-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-drivers-lts-saucy-dbg_5_i386.deb Size: 1560 MD5sum: 803622d6cab3f62d8a614a26bacf7f50 SHA1: c3fe6dcd22d2e0efe869de8544278ceeb6d63b92 SHA256: 2a274ade1f53d6711642e440c54482ed10697d98729de3ba950b098b8abec98e Description: Transitional package for libegl1-mesa-drivers-dbg Multi-Arch: same Description-md5: 9127c7ac5c0d15075efb2cc58aac1fd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-quantal_5_i386.deb Size: 1538 MD5sum: c3c943b118115812547b9888753aa87b SHA1: 5e9b05bf2f30fcf30e7c96fd8d895af196c88ed0 SHA256: 4cc616fe3927a5f1ab38801351028736c714e1c4ff501a670ff77373ac2cef6a Description: Transitional package for libegl1-mesa Multi-Arch: same Description-md5: 600805425833c1513eb7e523ef85ff03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-quantal-dbg_5_i386.deb Size: 1550 MD5sum: 0c2dc54e83cd4419203ca4feb10e0fc7 SHA1: 6ce54844c3347f18e67fe460f627dee35a3174db SHA256: 3901f317f0b702cfa06add18d6e11e54abaa39b4ec9b9fd5c9f1fc1b2796d8a1 Description: Transitional package for libegl1-mesa-dbg Multi-Arch: same Description-md5: 7b641c3f5bb10795f532cff4c739cf9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-raring_5_i386.deb Size: 1538 MD5sum: c9b0a48a22b96ac3db2d0fe469d2bac8 SHA1: 0efa86f722a33198dae9f3d98f3a73a220e36b10 SHA256: 0808dd06a45a22d4748bcbe98ac7fcf03209909e48918b076892bcfdd828012d Description: Transitional package for libegl1-mesa Multi-Arch: same Description-md5: 600805425833c1513eb7e523ef85ff03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-raring-dbg_5_i386.deb Size: 1548 MD5sum: ce1e6c4be843e1ca8ff3a4d207ec1410 SHA1: a7dd00f9515e5ca4377cfb590255c7c30213a60a SHA256: 5e91f35309d708591924d38cdd1bdf3c0396e94969058b036f7fc3c9ea148594 Description: Transitional package for libegl1-mesa-dbg Multi-Arch: same Description-md5: 7b641c3f5bb10795f532cff4c739cf9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-saucy_5_i386.deb Size: 1536 MD5sum: cd95d5346033f9aa1bdd6556f0f39f30 SHA1: c29de0a88cd8afb1e6c8fec1be0bcf0fd6e39652 SHA256: b8ae22b4baebb4b27a6d50a5c2d675688a136a590c8ccd49dad69161f14066c9 Description: Transitional package for libegl1-mesa Multi-Arch: same Description-md5: 600805425833c1513eb7e523ef85ff03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libegl1-mesa-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libegl1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libegl1-mesa-lts-saucy-dbg_5_i386.deb Size: 1546 MD5sum: 6a810429add1dc6d33cca9934b88256f SHA1: 9f007aa6b45a875584fbf0de81f99f4309c782be SHA256: 455e2c635e649a4f61e3cb8145a48cf42a6755dbc723844155ac021706c9484f Description: Transitional package for libegl1-mesa-dbg Multi-Arch: same Description-md5: 7b641c3f5bb10795f532cff4c739cf9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libelf-dev Priority: optional Section: libdevel Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: i386 Source: elfutils Version: 0.158-0ubuntu5 Depends: libelf1 (= 0.158-0ubuntu5) Conflicts: libelfg0-dev Filename: pool/main/e/elfutils/libelf-dev_0.158-0ubuntu5_i386.deb Size: 50082 MD5sum: be5ad3818b6f498ec6a1c389945be681 SHA1: cfe0e55b1990f790fa369450c5a129bada401a57 SHA256: 12be5fe03045f8c20cd27d8bba88ba60aa0de93395d09a9b56f1fba2d7a61baf Description: libelf1 development libraries and header files Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: 987fe60edac82d9ad80df9bdb9c08f33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libelf1 Priority: standard Section: libs Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: i386 Source: elfutils Version: 0.158-0ubuntu5 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/e/elfutils/libelf1_0.158-0ubuntu5_i386.deb Size: 42780 MD5sum: aef0744593cca248bc1d1f98424dafb8 SHA1: cf4bc83604609a950923cd7aa2d299caba4461d8 SHA256: 4fb8e4bf304d41a8fdb23dc9fc9bfcd7bcf2c756329fca42bd724b90ed541dce Description: library to read and write ELF files Multi-Arch: same Homepage: https://fedorahosted.org/elfutils/ Description-md5: 5188e87e91e6292255a5ccd72d2f25ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libelfg0 Priority: optional Section: libs Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Alex Pennace Architecture: i386 Source: libelf Version: 0.8.13-5 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: libelf, libelf0 (<= 0.6.4-5) Filename: pool/main/libe/libelf/libelfg0_0.8.13-5_i386.deb Size: 38406 MD5sum: 824c45daf020b40f23c5e450f5efbe3a SHA1: eaf19ffe41f635461ec0f18d6c07896036d06ebe SHA256: b687777f560234760e030f5a8ba8590a6b21df8679ed167627b7e33c8d1bb364 Description: an ELF object file access library Multi-Arch: same Description-md5: a7a2d847dc1ecc76622578d858b2494f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libelfg0-dev Priority: optional Section: libdevel Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Alex Pennace Architecture: i386 Source: libelf Version: 0.8.13-5 Depends: libelfg0 (= 0.8.13-5), libc6-dev Conflicts: libelf-dev, libelf0-dev, libelf1-dev Filename: pool/main/libe/libelf/libelfg0-dev_0.8.13-5_i386.deb Size: 42838 MD5sum: c976f2cf24fd7b08595b48d73aa2e646 SHA1: c8384e0258aa8c140e40bfbf58176f67f01891c5 SHA256: 0600043912679123cef1e5112de910fbe2048d0fea7718a82402e14b1c1ee5f5 Description: an ELF object file access library: development files Description-md5: cbac14f2c9ec1f9653f66af58dac7ccb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libemail-address-perl Priority: optional Section: perl Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.900-1 Depends: perl Filename: pool/main/libe/libemail-address-perl/libemail-address-perl_1.900-1_all.deb Size: 25666 MD5sum: 20fe10c11d967ab4e314571be152a151 SHA1: 1be745e39d91d70cc19ef8fa0ef380c795b92a7e SHA256: 1fc046df1ef147959789629921f7325863891f5f4acda5c73d203aa09388bb56 Description: Perl module for RFC 2822 address parsing and creation Homepage: https://metacpan.org/release/Email-Address/ Description-md5: 1e8970fa9c7abc7402d943397bdc2c75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libemail-valid-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.192-1 Depends: perl, libmailtools-perl, libnet-dns-perl, libnet-domain-tld-perl, netbase Filename: pool/main/libe/libemail-valid-perl/libemail-valid-perl_1.192-1_all.deb Size: 16454 MD5sum: 2c581079c452e918c934af9c27d7c659 SHA1: 643cbd7389cc2fdff6aa5ea3076e1faf02bd182d SHA256: 6460766fd76365c0cc84ac2c045db7f1c9d0030ef22e748d66d42c5f749e4a03 Description: Perl module for checking the validity of Internet email addresses Homepage: https://metacpan.org/release/Email-Valid/ Description-md5: 1fc85da7a0b1d6032d180b11db5e1387 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libenchant-dev Priority: optional Section: libdevel Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Prach Pongpanich Architecture: i386 Source: enchant Version: 1.6.0-10ubuntu1 Depends: libenchant1c2a (= 1.6.0-10ubuntu1), libglib2.0-dev Filename: pool/main/e/enchant/libenchant-dev_1.6.0-10ubuntu1_i386.deb Size: 52414 MD5sum: e5463a2df65c8af5e4ab64a556dd6d7d SHA1: 0ae9c5464806454c27954739b3272540b4785cda SHA256: 29281c16ba439307ddc1808ec9f95983e0c22362f3f8c6f486e7416c3d011d22 Description: Wrapper library for various spell checker engines (development) Homepage: http://www.abisource.com/projects/enchant/ Description-md5: b2620cb0d943a1db9ccdedf63e68ee00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libenchant-voikko Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Prach Pongpanich Architecture: i386 Source: enchant Version: 1.6.0-10ubuntu1 Replaces: libenchant1c2a (= 1.4.2-3) Depends: libc6 (>= 2.3.6-6~), libenchant1c2a (>= 1.6.0), libglib2.0-0 (>= 2.12.0), libvoikko1 Pre-Depends: multiarch-support Breaks: libenchant1c2a (= 1.4.2-3) Filename: pool/main/e/enchant/libenchant-voikko_1.6.0-10ubuntu1_i386.deb Size: 5458 MD5sum: 62150a345000da3b3c6d9295913bfc3b SHA1: 38535b3794db3c1a349bc233328c709cec328492 SHA256: 26c93b18a6434fc9c35000636400144ec617c8fa602d38b60ef9ab03a19215b6 Description: Voikko spell-checker libenchant plugin Multi-Arch: same Homepage: http://www.abisource.com/projects/enchant/ Description-md5: 6ba31c01c5eaf63c081ad274d913fe07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libenchant1c2a Priority: optional Section: libs Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Prach Pongpanich Architecture: i386 Source: enchant Version: 1.6.0-10ubuntu1 Replaces: libenchant-dev (<< 1.1.1++cvs.2003.11.08), libenchant1, libenchant1c2 Depends: aspell-en | myspell-dictionary | aspell-dictionary | ispell-dictionary | hunspell-dictionary, libaspell15 (>= 0.60.7~20110707), libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.35.9), libhunspell-1.3-0, libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: enchant Suggests: libenchant-voikko Breaks: ispell (<< 3.3.02), libenchant1, libenchant1c2 Filename: pool/main/e/enchant/libenchant1c2a_1.6.0-10ubuntu1_i386.deb Size: 62634 MD5sum: 49444af772114a0017e299a6a1850579 SHA1: 1c2d6125903d1b962b1fa75fde0dcd6049462c81 SHA256: 7800c99921c6ff2f88bf4367f0f6724c8e1654ce4c4b6cf4c1242c641e515948 Description: Wrapper library for various spell checker engines (runtime libs) Multi-Arch: same Homepage: http://www.abisource.com/projects/enchant/ Description-md5: 376c35f65a2fde728d882fde534aa99e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libencode-hanextra-perl Priority: optional Section: perl Installed-Size: 5429 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.23-2build3 Depends: libc6 (>= 2.1.3), perl (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libe/libencode-hanextra-perl/libencode-hanextra-perl_0.23-2build3_i386.deb Size: 2093238 MD5sum: 447e86ebaff48e1c4d18cba6f362af4b SHA1: 1cc89fbbc326b5f34767684d72f42597da97d1ac SHA256: 31806bf3904470d444e2f83931077dd250f7abd6fdbe72371e4ba0cd052cd7c9 Description: perl module providing extra sets of Chinese character encodings Homepage: http://search.cpan.org/dist/Encode-HanExtra/ Description-md5: c9657081f76f7811fdc359b8cf30270d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libencode-locale-perl Priority: optional Section: perl Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.03-1 Depends: perl Filename: pool/main/libe/libencode-locale-perl/libencode-locale-perl_1.03-1_all.deb Size: 12382 MD5sum: 0c83753bf3cd85dc4e0a837d1225ef31 SHA1: 39cf67b9896d69c1963d90413c31360112b66cb0 SHA256: 8524e2e53f849ac606d0714e3cbe2754702b14e1aeb4698f19337f1b7a18f521 Description: utility to determine the locale encoding Homepage: http://search.cpan.org/dist/Encode-Locale/ Description-md5: 56ab0dbfeb69a085703b46539790f388 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libept-dev Priority: optional Section: libdevel Installed-Size: 3557 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: i386 Source: libept Version: 1.0.12 Depends: libept1.4.12 (= 1.0.12), libwibble-dev (>= 1.1), libwibble-dev (<< 2.0), libtagcoll2-dev (>= 2.0.6), libtagcoll2-dev (<< 2.1), libapt-pkg-dev (>= 0.6.46.1), libxapian-dev (>= 1.0.5) Recommends: pkg-config Filename: pool/main/libe/libept/libept-dev_1.0.12_i386.deb Size: 560784 MD5sum: c5102fcb83bd0c1a2278cbd2c484bf62 SHA1: a965291fe2dfce1f28f9b43afff526ff67a4a9ac SHA256: fb5ba03f8d3b5338fe13558d2138d5c09511fcaa7b0951225b1eaa674cb8e75e Description: High-level library for managing Debian package information Description-md5: db1ebb07da1715a36bf605f6d6b727d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libept1.4.12 Priority: optional Section: libs Installed-Size: 391 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: i386 Source: libept Version: 1.0.12 Depends: libapt-pkg4.12 (>= 0.8.16~exp9), libc6 (>= 2.8), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/libe/libept/libept1.4.12_1.0.12_i386.deb Size: 139884 MD5sum: 57c39602b571cf93322c1e0d58f8b86e SHA1: d7f41cd1a15934472de0298a7d2db7ccf7e87770 SHA256: 734505dcdc3327dd6c32425b46aac6eff389ebad9a63308c918b5752dff62f86 Description: High-level library for managing Debian package information Multi-Arch: same Description-md5: dc36b06ff413539afcd133bd1698dd39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, lubuntu-desktop, ubuntustudio-desktop Package: liberror-perl Priority: optional Section: perl Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Clint Burfoot Architecture: all Version: 0.17-1.1 Depends: perl Filename: pool/main/libe/liberror-perl/liberror-perl_0.17-1.1_all.deb Size: 21062 MD5sum: 4988e40e65eeba03317411bfdd52b76c SHA1: 0fa82466fc39398e507eec6567e5a68270b82cda SHA256: 8b4ec546320c0f490cb7c90495abb7cb561229d939d063dde562cb73b796f468 Description: Perl module for error/exception handling in an OO-ish way Description-md5: 06d4af0c3e20d6842d89ce9b62d22ebf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libesd0 Priority: optional Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: esound Version: 0.2.41-11 Depends: libasound2 (>= 1.0.16), libaudiofile1 (>= 0.3.6), libc6 (>= 2.15), esound-common (= 0.2.41-11) Pre-Depends: multiarch-support Suggests: pulseaudio-esound-compat Conflicts: libesd-alsa0 Filename: pool/main/e/esound/libesd0_0.2.41-11_i386.deb Size: 16298 MD5sum: a9840f55e85821aa0eade3c4ba5f075e SHA1: fb8e5be9d5191399408042610b5b8e6054de5b1a SHA256: 275c9b02ed7bf0f46e45e2ca570b3fa17be12595cf0e7d8b549dfd9af7290d75 Description: Enlightened Sound Daemon - Shared libraries Multi-Arch: same Description-md5: 23af9daea845a74362f4e1a63a3e5895 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libesd0-dev Priority: optional Section: libdevel Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: esound Version: 0.2.41-11 Depends: libesd0 (= 0.2.41-11), esound-common (= 0.2.41-11), libaudiofile-dev (>= 0.1.5), pkg-config Filename: pool/main/e/esound/libesd0-dev_0.2.41-11_i386.deb Size: 23534 MD5sum: 911f18b0a4f7fb23e3618a257e04ca68 SHA1: c16a3b28a3fd9efa7e0a8ef0618393febdbf370d SHA256: d6fb9ab864261b3813a89cb314d5f4699472745428c63efdcb7bf38508fa0818 Description: Enlightened Sound Daemon - Development files Description-md5: c845070216fefb0dc80aaf6ac702ae74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libesmtp-dev Priority: optional Section: libdevel Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy T. Bouse Architecture: i386 Source: libesmtp Version: 1.0.6-1ubuntu2 Depends: libesmtp6 (= 1.0.6-1ubuntu2), libc6-dev Filename: pool/main/libe/libesmtp/libesmtp-dev_1.0.6-1ubuntu2_i386.deb Size: 41578 MD5sum: 169752897b67dc5a450f316a66df6924 SHA1: 86dffb0906d0bded3eab065fe89641490dc210ab SHA256: f4e89ca18b03e292e54ea8cebf873c4f79f99d71092b020bd48bd90502841f02 Description: LibESMTP SMTP client library development files Homepage: http://www.stafford.uklinux.net/libesmtp/ Description-md5: e311e7ad55f947033bf2f9c1bd9e8b92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libesmtp6 Priority: optional Section: libs Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy T. Bouse Architecture: i386 Source: libesmtp Version: 1.0.6-1ubuntu2 Replaces: libesmtp5 Depends: libc6 (>= 2.16), libssl1.0.0 (>= 1.0.0) Filename: pool/main/libe/libesmtp/libesmtp6_1.0.6-1ubuntu2_i386.deb Size: 40940 MD5sum: 187f522faa0c76df02882bd7395ec2c1 SHA1: 6d5f9204e2d86d20cb68a6f09e4bafee082378d8 SHA256: fc43e5c3b9cf9f68b6609187e186571c5fd080f9f83a716c44b982adaed0bc87 Description: LibESMTP SMTP client library Homepage: http://www.stafford.uklinux.net/libesmtp/ Description-md5: 1355416562036733fdccb1164963edfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libespeak-dev Priority: optional Section: libdevel Installed-Size: 507 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: espeak Version: 1.47.11-1ubuntu1 Depends: libespeak1 (= 1.47.11-1ubuntu1) Filename: pool/main/e/espeak/libespeak-dev_1.47.11-1ubuntu1_i386.deb Size: 164530 MD5sum: f9d08fab035c2a07a6f1eff4164252f3 SHA1: 5f887f4759e8c3aaaa71d7899fb3443dfeffc517 SHA256: 514f167634048a12741ce7012ef40660cec53c96b2f4f648bf5fa3b505b5e33c Description: Multi-lingual software speech synthesizer: development files Multi-Arch: same Homepage: http://espeak.sourceforge.net/ Description-md5: 16f8bdcde457d8c2150cb171d904d7ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libespeak1 Priority: optional Section: libs Installed-Size: 323 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: espeak Version: 1.47.11-1ubuntu1 Depends: libc6 (>= 2.16), libportaudio2 (>= 19+svn20101113), libpulse0 (>= 1:0.99.1), libsonic0 (>= 0.1.10), espeak-data (= 1.47.11-1ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/e/espeak/libespeak1_1.47.11-1ubuntu1_i386.deb Size: 131410 MD5sum: b82c9aa3e595151a76dde8da2d8504ff SHA1: 6aa4e72ce83bcaacba1f85f20b702a839101243e SHA256: 4e74498d9bd93e2380ea929801acc39070f11817716dd3fd1ee4234ba385bcc4 Description: Multi-lingual software speech synthesizer: shared library Multi-Arch: same Homepage: http://espeak.sourceforge.net/ Description-md5: 979c4445019f29a7a752783878e7fe06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libestr-dev Priority: extra Section: libdevel Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: i386 Source: libestr Version: 0.1.9-0ubuntu2 Depends: libestr0 (= 0.1.9-0ubuntu2) Filename: pool/main/libe/libestr/libestr-dev_0.1.9-0ubuntu2_i386.deb Size: 6436 MD5sum: 548b094aba68fb87d0c66466ad6fc6ac SHA1: 387fbfb3bdcff179c80be4aa2fdf767ed94322d9 SHA256: 39f98399ae47bed74b26ab9d7d82c916090808a0bf0767fb4f1c634da74136fc Description: Helper functions for handling strings (headers) Homepage: http://libestr.sourceforge.net/ Description-md5: c5c3f002eb52c877efe4bd30f3ac45c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libestr0 Priority: important Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: i386 Source: libestr Version: 0.1.9-0ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libe/libestr/libestr0_0.1.9-0ubuntu2_i386.deb Size: 8032 MD5sum: 89f7599bce60b7755b9685ec3fac4f1e SHA1: b637a138b02996fd3350450f23b1b6671bb88d38 SHA256: c7c232d0dc5f4df4d1232b0a047feb0d93f02388c6108b2a08267965148edcec Description: Helper functions for handling strings (lib) Homepage: http://libestr.sourceforge.net/ Description-md5: 9f10d2f5728b61168f4eac12d6f3e6d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libeval-closure-perl Priority: optional Section: perl Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.11-1 Depends: perl, libsub-exporter-perl, libtry-tiny-perl Recommends: libdevel-lexalias-perl (>= 0.05) Filename: pool/main/libe/libeval-closure-perl/libeval-closure-perl_0.11-1_all.deb Size: 11280 MD5sum: 779e3e6a6ca70d468849bbc70bb54ec5 SHA1: e41cea2186aaa5b469cfc7c6bf6625239321f5ce SHA256: 7b017feff06862950956df76a4ce71311378fb3788c0c363cba63b3f85217924 Description: Perl module to safely and cleanly create closures via string eval Homepage: https://metacpan.org/release/Eval-Closure/ Description-md5: e89014767dce167c131f30955893fe75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevdocument3-4 Priority: optional Section: libs Installed-Size: 1180 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: evince Version: 3.10.3-0ubuntu10 Replaces: libevince3-3 Depends: libc6 (>= 2.7), libcairo2 (>= 1.10.0), libdjvulibre21 (>= 3.5.25.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.8.0), libgxps2 (>= 0.2.1), libkpathsea6, libpango-1.0-0 (>= 1.14.0), libpoppler-glib8 (>= 0.24.0), libspectre1 (>= 0.2.3), libt1-5 (>= 5.1.0), libtiff5 (>= 4.0.3), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Breaks: libevince3-3 Filename: pool/main/e/evince/libevdocument3-4_3.10.3-0ubuntu10_i386.deb Size: 212908 MD5sum: bf5a561647c22c9639d1798858bb6b79 SHA1: 9f06671018abf2d0f34600ffd7b83829d2160251 SHA256: 229ce98ddc613fea2de36448933938efdbf66d22e16a2c25f868e33c002e9d16 Description: Document (PostScript, PDF) rendering library Homepage: http://www.gnome.org/projects/evince/ Description-md5: 956c243a0a4027d023c642ebca2308fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libevent-2.0-5 Priority: optional Section: libs Installed-Size: 318 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/libe/libevent/libevent-2.0-5_2.0.21-stable-1ubuntu1_i386.deb Size: 121210 MD5sum: 42630ffb6cbab51b56f58a5dbd5db929 SHA1: 3153f082c99099d4a02a6456c5465d6650b3c367 SHA256: bac14c389f1e9c48976a17736db3e26e7cb55b77ceacd4d8b8f069cce1d8ec5d Description: Asynchronous event notification library Multi-Arch: same Homepage: http://libevent.org/ Description-md5: 45b333b614c8e682d2a525e278f5c233 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libevent-core-2.0-5 Priority: optional Section: libs Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/libe/libevent/libevent-core-2.0-5_2.0.21-stable-1ubuntu1_i386.deb Size: 74908 MD5sum: c6195370acadfe29563695443fd407fc SHA1: 3db2005e22d571d6589ea8a655844d685ad6a007 SHA256: 51df72e08dd99599ec3dcbdc39751251559b60720d3710dd41d86cb6bb7dbf08 Description: Asynchronous event notification library (core) Multi-Arch: same Homepage: http://libevent.org/ Description-md5: 951eaa6250fb2e171dca3efbd48a13f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevent-dbg Priority: extra Section: debug Installed-Size: 693 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libevent-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-core-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-extra-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-pthreads-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-openssl-2.0-5 (= 2.0.21-stable-1ubuntu1) Filename: pool/main/libe/libevent/libevent-dbg_2.0.21-stable-1ubuntu1_i386.deb Size: 582656 MD5sum: de3fed5c9d362612e5b0a5924602b251 SHA1: 316b4cd7d6d530c4cc172ca2fc544c0f59194b46 SHA256: d497a4541865bebbafe661caca6a4e5f938ec8a5ae05536238d6593058e1dc29 Description: Asynchronous event notification library (debug symbols) Multi-Arch: same Homepage: http://libevent.org/ Description-md5: bb5dc0220b6e054969b4eb43196d2663 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevent-dev Priority: optional Section: libdevel Installed-Size: 1217 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libevent-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-core-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-extra-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-pthreads-2.0-5 (= 2.0.21-stable-1ubuntu1), libevent-openssl-2.0-5 (= 2.0.21-stable-1ubuntu1) Filename: pool/main/libe/libevent/libevent-dev_2.0.21-stable-1ubuntu1_i386.deb Size: 261468 MD5sum: 37dcdda1394dec41d0c08ae18d2606ba SHA1: dcb0142e070e8d3894470ec63b71b6415393ed46 SHA256: ed69df4eb833b3cc3301269bb6fc5e8b4e5d0f68d1951a008a28d7b74ddb1f78 Description: Asynchronous event notification library (development files) Homepage: http://libevent.org/ Description-md5: a0372b2adf9c0952b500f3fdbe22e52d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevent-extra-2.0-5 Priority: optional Section: libs Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libc6 (>= 2.7), libevent-core-2.0-5 (= 2.0.21-stable-1ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/libe/libevent/libevent-extra-2.0-5_2.0.21-stable-1ubuntu1_i386.deb Size: 56232 MD5sum: a9e015ffa2416f1b5911ee4d417e00ec SHA1: 89b0aef19509e370f0e89395b6c8113046bfc961 SHA256: b32ef4cb4a780da83fc0f5ac5f118519e2b2758f5eda90ea663137a834311ead Description: Asynchronous event notification library (extra) Multi-Arch: same Homepage: http://libevent.org/ Description-md5: 7e81dabcc83d13ad144b6515c21b85c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevent-openssl-2.0-5 Priority: optional Section: libs Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libc6 (>= 2.3.6-6~), libevent-core-2.0-5 (= 2.0.21-stable-1ubuntu1), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/libe/libevent/libevent-openssl-2.0-5_2.0.21-stable-1ubuntu1_i386.deb Size: 12708 MD5sum: 1f9aa21da2496a7157bb6d498fb45e14 SHA1: d2a5e2f168a56024594f10a152d9a17357559f3b SHA256: 06bdd448b5b0c07647579943ea583834001682097dda86e85cb4eb0b8a6d3f0e Description: Asynchronous event notification library (openssl) Multi-Arch: same Homepage: http://libevent.org/ Description-md5: 9fbb926ce82ae47152f531168a5a07bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevent-pthreads-2.0-5 Priority: optional Section: libs Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libevent Version: 2.0.21-stable-1ubuntu1 Depends: libc6 (>= 2.3.6-6~), libevent-core-2.0-5 (= 2.0.21-stable-1ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/libe/libevent/libevent-pthreads-2.0-5_2.0.21-stable-1ubuntu1_i386.deb Size: 6124 MD5sum: ede940fc077987293b58c8086672951e SHA1: af5723ec2ebde7307444f9eec2c3c6818e91d137 SHA256: 73bfd7d9b428a6dbf9ef0ccc5ab075495521e352ac3383320ad5bdae36f1a6da Description: Asynchronous event notification library (pthreads) Multi-Arch: same Homepage: http://libevent.org/ Description-md5: 1a5d857791ab89f821f6bb92b9d541ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevince-dev Priority: optional Section: libdevel Installed-Size: 2631 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: evince Version: 3.10.3-0ubuntu10 Depends: libevdocument3-4 (= 3.10.3-0ubuntu10), libevview3-3 (= 3.10.3-0ubuntu10), gir1.2-evince-3.0 (= 3.10.3-0ubuntu10), libgtk-3-dev (>= 3.8.0), libglib2.0-dev (>= 2.36) Filename: pool/main/e/evince/libevince-dev_3.10.3-0ubuntu10_i386.deb Size: 263088 MD5sum: 4326431f52762a7c4b2057bbf4e3d2b6 SHA1: 57d8948b76e5dfb00ddcbc93a64d2c3711ff69bb SHA256: 472bfb183ab6aa0c920a2759fdb81f52563931158f8e0157198209ac5a153633 Description: Document (PostScript, PDF) rendering library - development files Homepage: http://www.gnome.org/projects/evince/ Description-md5: 708a823ea6956d2cc85b60391375a7cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libevolution Priority: optional Section: gnome Installed-Size: 7152 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: evolution Version: 3.10.4-0ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10.0), libcamel-1.2-45 (>= 3.8.2), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libebackend-1.2-7 (>= 3.7.3), libebook-1.2-14 (>= 3.7.90), libebook-contacts-1.2-0 (>= 3.7.90), libecal-1.2-16 (>= 3.7.90), libedataserver-1.2-18 (>= 3.10.0), libgail-3-0 (>= 3.0.0), libgdata13 (>= 0.10.1), libgdk-pixbuf2.0-0 (>= 2.23.0), libglib2.0-0 (>= 2.35.9), libgnome-desktop-3-7 (>= 3.2.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.4.0), libgtkhtml-4.0-0 (>= 4.6), libgtkhtml-4.0-0 (<< 4.8), libgtkhtml-editor-4.0-0 (>= 4.6), libgtkhtml-editor-4.0-0 (<< 4.8), libgweather-3-6 (>= 3.7.91), libical1 (>= 1.0), libldap-2.4-2 (>= 2.4.7), libnotify4 (>= 0.7.0), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libpango-1.0-0 (>= 1.20.0), libpangocairo-1.0-0 (>= 1.14.0), libsecret-1-0 (>= 0.7), libsoup-gnome2.4-1 (>= 2.40.3), libsoup2.4-1 (>= 2.33.92), libwebkitgtk-3.0-0 (>= 2.1.90), libxml2 (>= 2.9.0), libytnef0 Filename: pool/main/e/evolution/libevolution_3.10.4-0ubuntu1_i386.deb Size: 1993342 MD5sum: 867b4970beee33c3f70001f6a8883005 SHA1: 3f17bba2a520beb5921be6baf7cbfada003ea189 SHA256: f633f7d63e072797dcd9d1c29f582e5b8aaa44d625bc05637e7de14bed2c0846 Description: evolution libraries Homepage: http://projects.gnome.org/evolution/ Description-md5: 7436231c1d82f82c18cdb494998d7362 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libevview3-3 Priority: optional Section: libs Installed-Size: 901 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: evince Version: 3.10.3-0ubuntu10 Replaces: libevince3-3 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.3.6-6~), libcairo2 (>= 1.10.0), libevdocument3-4 (>= 3.9.5), libgail-3-0 (>= 3.0.0), libglib2.0-0 (>= 2.37.3), libgrip0 (>= 0.1.0), libgtk-3-0 (>= 3.8.0), libpango-1.0-0 (>= 1.14.0) Breaks: libevince3-3 Filename: pool/main/e/evince/libevview3-3_3.10.3-0ubuntu10_i386.deb Size: 101438 MD5sum: 3485c63c57116ec0f5ffa9e0aef2aad7 SHA1: 875fdffa69c98fefbb10ea7824c59ccb1c814985 SHA256: dcc9dc5b2be4596a54a2a0797017841defd39e5d758190780197fcaaf041afb6 Description: Document (PostScript, PDF) rendering library - Gtk+ widgets Homepage: http://www.gnome.org/projects/evince/ Description-md5: ecf4f1038683832203c18a4989faaa7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libexcalibur-logkit-java Priority: optional Section: java Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: excalibur-logkit Version: 2.0-10 Replaces: liblogkit-java Conflicts: liblogkit-java Filename: pool/main/e/excalibur-logkit/libexcalibur-logkit-java_2.0-10_all.deb Size: 76560 MD5sum: 19f006fc3adf2779d04112f1f24bfa9a SHA1: 36876cd679e97095feb64d6dc1ad808f1caff653 SHA256: 41f33248443f97e9144b8f67ced9de0342cc9a91650cf2282b165041ddc1d149 Description: Lightweight and fast designed logging toolkit for Java Homepage: http://excalibur.apache.org/ Description-md5: 08162c5b39eb983f2aa76430dfd6d01b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexcalibur-logkit-java-doc Priority: optional Section: doc Installed-Size: 2563 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: excalibur-logkit Version: 2.0-10 Filename: pool/main/e/excalibur-logkit/libexcalibur-logkit-java-doc_2.0-10_all.deb Size: 185160 MD5sum: fa285a7ddcd6a2099600c194f062300f SHA1: 4830066d9a4057b8bd0c9ef7b6dcae851a2fff50 SHA256: 5d57f7ea1b18be6b068e19abe2d5193220342f5d31bd937b0d871953500e6b9d Description: Lightweight and fast designed logging toolkit for Java (API docs) Homepage: http://excalibur.apache.org/ Description-md5: 36f1596f4e096b21f4dfd712caf3cc39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexception-class-perl Priority: optional Section: perl Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.37-1 Depends: perl, libclass-data-inheritable-perl, libdevel-stacktrace-perl Filename: pool/main/libe/libexception-class-perl/libexception-class-perl_1.37-1_all.deb Size: 25864 MD5sum: 1eec870d566feaeaec55db0bd4dfa58a SHA1: b7d666ae27cfdf13c48182837359700275bfbcee SHA256: 0a3663e97af09d77b52b60edcd1b616e165be963153f5636d8248fbfcda837b0 Description: module that allows you to declare real exception classes in Perl Homepage: https://metacpan.org/release/Exception-Class/ Description-md5: fee2d46a930b8837b66c328030aa8d13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexempi-dev Priority: optional Section: libdevel Installed-Size: 1962 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: i386 Source: exempi Version: 2.2.1-1ubuntu1 Depends: libexempi3 (= 2.2.1-1ubuntu1) Filename: pool/main/e/exempi/libexempi-dev_2.2.1-1ubuntu1_i386.deb Size: 659876 MD5sum: bbd8cccf899100f3da872224392f4ac2 SHA1: 4719023fca2ca0845c138c59ae331a72fec5096f SHA256: e4a9ddaa8b46b6993cad0ddb6545dd98d68cbae0ce5063f4ecc44f9efeabe5d2 Description: library to parse XMP metadata (Development files) Multi-Arch: same Homepage: http://libopenraw.freedesktop.org/wiki/Exempi Description-md5: 29a8433f55412caee7501825a1bc21e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexempi3 Priority: optional Section: libs Installed-Size: 1121 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: i386 Source: exempi Version: 2.2.1-1ubuntu1 Depends: libc6 (>= 2.4), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/e/exempi/libexempi3_2.2.1-1ubuntu1_i386.deb Size: 471400 MD5sum: f452f046d6c92ef8d02d380b59722a45 SHA1: 3596310667196521f7ec18d48ffce0ca165ac672 SHA256: 63c3579f755b6a4db6469e432fa477bc1071fc39dead90e01cc174c83fb7f6bf Description: library to parse XMP metadata (Library) Multi-Arch: same Homepage: http://libopenraw.freedesktop.org/wiki/Exempi Description-md5: a1c9bcccb3f7f9214a240f613e875fbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libexempi3-dbg Priority: extra Section: debug Installed-Size: 2957 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: i386 Source: exempi Version: 2.2.1-1ubuntu1 Depends: libexempi3 (= 2.2.1-1ubuntu1) Filename: pool/main/e/exempi/libexempi3-dbg_2.2.1-1ubuntu1_i386.deb Size: 2957066 MD5sum: 4681ec8bab522a3bf62567984005a879 SHA1: fab79f55b2cee8dc71b705e18e5184708fc1db62 SHA256: 9e3beb1dd60bebf7b85c08c9db5b7a9f4f451536803593d94fe1c79d4ffe3621 Description: library to parse XMP metadata (Debug files) Multi-Arch: same Homepage: http://libopenraw.freedesktop.org/wiki/Exempi Description-md5: 59f67d930d936c935bf6cbb1d13acb68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexif-dev Priority: optional Section: libdevel Installed-Size: 1529 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: i386 Source: libexif Version: 0.6.21-1ubuntu1 Depends: libc6-dev, libexif12 (= 0.6.21-1ubuntu1), libjs-jquery Filename: pool/main/libe/libexif/libexif-dev_0.6.21-1ubuntu1_i386.deb Size: 269470 MD5sum: 0e06f527417f9a880d71b8cad018c1a7 SHA1: 89a8326060088124883c3ee36e94ad46be2ac8ac SHA256: 6bd74095124ae8330e0833e4b0956bfe5724fc3979b1300e3110cf2369754c7c Description: library to parse EXIF files (development files) Homepage: http://libexif.sourceforge.net/ Description-md5: 8c30e3b15204de874eb1e6fb7a6a74ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexif12 Priority: optional Section: libs Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: i386 Source: libexif Version: 0.6.21-1ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libe/libexif/libexif12_0.6.21-1ubuntu1_i386.deb Size: 71342 MD5sum: 11a6f9019cde5dc0dcc15da4b7ef874d SHA1: 48875a2a19b351ed2cf1499db5c737136ff939ed SHA256: 1e799a14fc3048e48678956213d0a62a280be67147fac000d4548190fad6dc2a Description: library to parse EXIF files Multi-Arch: same Homepage: http://libexif.sourceforge.net/ Description-md5: 7cb2387fed63f9f1902bcc28bafbd66b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libexiv2-12 Priority: optional Section: libs Installed-Size: 2207 Maintainer: Ubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: exiv2 Version: 0.23-1ubuntu2 Depends: libc6 (>= 2.4), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Suggests: exiv2 Filename: pool/main/e/exiv2/libexiv2-12_0.23-1ubuntu2_i386.deb Size: 578050 MD5sum: d4baa944c5a12f62c2ed5ec595514020 SHA1: 9902bf8f5f6f2bb06981523bcf8906b934d75fde SHA256: 0e4e7794ae8905e0fc175a4840c753395ab5d5370131ae05798395a969c1705a Description: EXIF/IPTC metadata manipulation library Homepage: http://www.exiv2.org Description-md5: 6e76ca4adbe1f5d1291bf7773427c33d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libexiv2-dbg Priority: extra Section: debug Installed-Size: 13834 Maintainer: Ubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: exiv2 Version: 0.23-1ubuntu2 Depends: libexiv2-12 (= 0.23-1ubuntu2) Filename: pool/main/e/exiv2/libexiv2-dbg_0.23-1ubuntu2_i386.deb Size: 3323174 MD5sum: 157dca7aa8adc6f6307d81f0a4e0ed5e SHA1: e644c3bb190e4b7180005e88c7f9e0cf80c2b3fc SHA256: 5a0680d483ff078d4c16babac545ef9cfd14b0fdb608603c20bbdc56505a9755 Description: EXIF/IPTC metadata manipulation library - debug Homepage: http://www.exiv2.org Description-md5: 1c3a4d0dcba5b770d4ef282ad13ec59f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexiv2-dev Priority: optional Section: libdevel Installed-Size: 4732 Maintainer: Ubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: exiv2 Version: 0.23-1ubuntu2 Depends: libexiv2-12 (= 0.23-1ubuntu2), pkg-config Suggests: libexiv2-doc Filename: pool/main/e/exiv2/libexiv2-dev_0.23-1ubuntu2_i386.deb Size: 762124 MD5sum: 9e667a3d3a44bab859c225f9024c43cc SHA1: f36e1a18f40b8a2d18e7ff89b0b5afebbee3b64b SHA256: b5968cd64f20caa24663ca45957f10b678f1f036ecf0f4a3352a2e56c66d21d2 Description: EXIF/IPTC metadata manipulation library - development files Homepage: http://www.exiv2.org Description-md5: 8408a1b5fb81618ee3ee0c6864f4ab39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexiv2-doc Priority: optional Section: doc Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: all Source: exiv2 Version: 0.23-1ubuntu2 Filename: pool/main/e/exiv2/libexiv2-doc_0.23-1ubuntu2_all.deb Size: 39018 MD5sum: 5bc93dbb9ecb942313e4e7cd697da55a SHA1: 8c6057875e1033b991543609055af485a01fae1f SHA256: 9db438573bba9cec6560b0b92e27ed052473df1ee631236817c2457ed433abaa Description: EXIF/IPTC metadata manipulation library - HTML documentation Homepage: http://www.exiv2.org Description-md5: 4f4a1c5f79034f3277873dbc9a2e0d34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libexpat1 Priority: important Section: libs Installed-Size: 373 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: expat Version: 2.1.0-4ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: wink (<= 1.5.1060-4) Filename: pool/main/e/expat/libexpat1_2.1.0-4ubuntu1_i386.deb Size: 71424 MD5sum: 693ca90f137dbf5701dd79f22a8814ab SHA1: 4c15c00b7ee590dc17e92380acfeb45016d85ff8 SHA256: 2d4fb17762814d9364afe8925a5bfbd7b6d7ca7355b79926775df02fa8addb4f Description: XML parsing C library - runtime library Multi-Arch: same Homepage: http://expat.sourceforge.net Description-md5: 969a775adb36dbfb73b9d7ef67f13bd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libexpat1-dev Priority: optional Section: libdevel Installed-Size: 644 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: expat Version: 2.1.0-4ubuntu1 Provides: libexpat-dev Depends: libexpat1 (= 2.1.0-4ubuntu1), libc6-dev | libc-dev Conflicts: libexpat-dev Filename: pool/main/e/expat/libexpat1-dev_2.1.0-4ubuntu1_i386.deb Size: 112354 MD5sum: 484a75a9444f0629018245831ad9addd SHA1: e54a609ec217dd42bef05eaaefc0d48e7c66a20c SHA256: 9876b0db69195392eab89f6602f23e1a401368faa66c75ed515365d17fdc9f84 Description: XML parsing C library - development kit Multi-Arch: same Homepage: http://expat.sourceforge.net Description-md5: 0b45073661cf63b9161c598405a4e62d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libexporter-lite-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.02-2 Depends: perl Filename: pool/main/libe/libexporter-lite-perl/libexporter-lite-perl_0.02-2_all.deb Size: 8924 MD5sum: a4f3a1c1ae2d6b023f6b155660de1113 SHA1: af83231bdf5cd989caf389445a7b93158c62cb5d SHA256: a6f15371521232ffbd30d306e4e0ca6f555b13971f51ee80c53dfc8103135e07 Description: lightweight subset of Exporter Homepage: http://search.cpan.org/dist/Exporter-Lite/ Description-md5: c56451c6043a4eb8b5548b0cb5637ed6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libexttextcat-2.0-0 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libexttextcat Version: 3.4.3-1ubuntu1 Depends: libc6 (>= 2.4), libexttextcat-data (= 3.4.3-1ubuntu1) Filename: pool/main/libe/libexttextcat/libexttextcat-2.0-0_3.4.3-1ubuntu1_i386.deb Size: 13302 MD5sum: e5c5575bb76d9c5ab10bfeab80bdd726 SHA1: 17d6eced3816d4d9961c4bc494693ad27b5966c7 SHA256: 943e5371b69f62e1cc9946a559bc61f1dac74d2090e93df98dbe46fac62772fd Description: Language detection library Homepage: http://software.wise-guys.nl/libtextcat/ Description-md5: 401d653d08b2ed885c9aa59a7d2b02ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libexttextcat-data Priority: optional Section: text Installed-Size: 412 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libexttextcat Version: 3.4.3-1ubuntu1 Filename: pool/main/libe/libexttextcat/libexttextcat-data_3.4.3-1ubuntu1_all.deb Size: 155494 MD5sum: 8402a440eea26b579c2ef82f1718c199 SHA1: 7b6dc1432273313cce015946facab3e6326c3542 SHA256: 695727d22ae8f5e4a0abb883b3b868e4308a6912e04e28fc043c14de7ba9ca22 Description: Language detection library - data files Homepage: http://software.wise-guys.nl/libtextcat/ Description-md5: 28d014fb56e2d488e67aa91cc00d1e72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libexttextcat-dev Priority: optional Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libexttextcat Version: 3.4.3-1ubuntu1 Depends: libexttextcat-2.0-0 (= 3.4.3-1ubuntu1) Filename: pool/main/libe/libexttextcat/libexttextcat-dev_3.4.3-1ubuntu1_i386.deb Size: 13008 MD5sum: 33c841b14c79d324c8bd85894ec69ac6 SHA1: 17c985ab044ec03de69743a7b9cb594d9deeca7e SHA256: 0819170b6c78d2a48b68be69451265fcebaf952ce9bc14b1d36ef597a2ea820f Description: Language detection library - development files Homepage: http://software.wise-guys.nl/libtextcat/ Description-md5: c21866821072dd789b2090997112eefb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libextutils-config-perl Priority: optional Section: perl Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.007-1 Depends: perl Filename: pool/main/libe/libextutils-config-perl/libextutils-config-perl_0.007-1_all.deb Size: 5484 MD5sum: 2229f354fc1e6f15ddbe16c0c24f8912 SHA1: 533010518ad790938781964365e2c386e81cd220 SHA256: e451d3abfb01ac9e3ccfc1340738a269bdaddb097cadd66cb3c8b12996e4339e Description: wrapper for perl's configuration Homepage: https://metacpan.org/release/ExtUtils-Config/ Description-md5: 685246915fbd707d7cf48c820e30f1c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libextutils-depends-perl Priority: optional Section: perl Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.305-1 Depends: perl Filename: pool/main/libe/libextutils-depends-perl/libextutils-depends-perl_0.305-1_all.deb Size: 15390 MD5sum: 5f76b78e99bb2b3fa9c9e8544adf5515 SHA1: d5035790f68edb96594a834166e07dd491fadf9a SHA256: 76b5158a89cf7f241769f9d20624c3015d7fbada0734de2b1d73d0e2f8592845 Description: Perl module for building extensions that depend on other extensions Homepage: http://gtk2-perl.sourceforge.net/ Description-md5: 539143b0ed56ca42100d14545eb4f268 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libextutils-helpers-perl Priority: optional Section: perl Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.021-1 Depends: perl Filename: pool/main/libe/libextutils-helpers-perl/libextutils-helpers-perl_0.021-1_all.deb Size: 15472 MD5sum: 5d1916c23c73b582e0d34fa2edd33fcf SHA1: 2f88bee11a1c8140255cf1fec83a86efdbb94987 SHA256: b3c284d3357920710ecf902e8d363d082a85ca2cbbfc6d0c47e748d54dcd0247 Description: various portability utilities for module builders Homepage: https://metacpan.org/release/ExtUtils-Helpers/ Description-md5: f503768c460faf962e5783f9d0d72d03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libextutils-installpaths-perl Priority: optional Section: perl Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.010-1 Depends: perl, libextutils-config-perl Filename: pool/main/libe/libextutils-installpaths-perl/libextutils-installpaths-perl_0.010-1_all.deb Size: 14544 MD5sum: ef95376100527c4234b0a6f4aea25f26 SHA1: 2255d527b2597e72ed89c1c20ffaa797dec01a3d SHA256: bebbd6b3584c34c1f0186c1526efea7b09004d664fcd9f2a56d1307098cabfcc Description: module to make Build.PL install path logic easy Homepage: https://metacpan.org/release/ExtUtils-InstallPaths Description-md5: 05a1ecf4b53ddd0c54ea0336dfd5257d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfakeroot Priority: optional Section: utils Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Clint Adams Architecture: i386 Source: fakeroot Version: 1.20-3ubuntu2 Replaces: fakeroot (<< 1.20-2~) Depends: libc6 (>= 2.4) Breaks: fakeroot (<< 1.20-2~) Filename: pool/main/f/fakeroot/libfakeroot_1.20-3ubuntu2_i386.deb Size: 25368 MD5sum: a9dda943d829dee1dbb6d611274482a7 SHA1: a632d346802c13ca4f48e74cffc69a090265b6d4 SHA256: 408d4e5014c3432a5540b0a866ca0cf3981172fe345591998d60559d1a3936a1 Description: tool for simulating superuser privileges - shared libraries Multi-Arch: same Description-md5: 22ea5d7d46de1e430af3ef824ed6d524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfaketime Priority: extra Section: utils Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Kahn Gillmor Architecture: i386 Source: faketime Version: 0.9.5-2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/f/faketime/libfaketime_0.9.5-2_i386.deb Size: 21158 MD5sum: e0a5d0b1cc0b9300cfea366cadfe6287 SHA1: 45140329972ee16628c7630d00d47f5b078ba406 SHA256: 9dd07c88bfa19136419fe75d713c960f4d14d76a514050dd911f34deb8469b9c Description: report faked system time to programs Multi-Arch: same Homepage: http://www.code-wizards.com/projects/libfaketime/ Description-md5: 9230deac6c49626e80400467f9098477 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.1-0 Priority: optional Section: libs Installed-Size: 665 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: farstream Version: 0.1.2-1ubuntu3 Replaces: libgstfarsight0.10-0 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base0.10-0 (>= 0.10.33), libgstreamer0.10-0 (>= 0.10.33), libnice10 (>= 0.1.0), gstreamer0.10-plugins-base (>= 0.10.33), gstreamer0.10-plugins-good (>= 0.10.29), gstreamer0.10-nice (>= 0.1.0) Pre-Depends: multiarch-support Conflicts: libgstfarsight0.10-0 Filename: pool/main/f/farstream/libfarstream-0.1-0_0.1.2-1ubuntu3_i386.deb Size: 177730 MD5sum: 400467045a78c32a0209c635dc8c8531 SHA1: 554d643bd38925b73d172f5e8bb6022bf19d3617 SHA256: 62b0858808cab5afd8aa3256d538154bf1c96fb91c73e457d50eee9a2ead6ea9 Description: Audio/Video communications framework: core library Multi-Arch: same Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: f7d95180a5bfbf33d770c2d677e3d23a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libfarstream-0.1-dbg Priority: extra Section: debug Installed-Size: 988 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: farstream Version: 0.1.2-1ubuntu3 Depends: libfarstream-0.1-0 (= 0.1.2-1ubuntu3), libgstreamer0.10-dev Filename: pool/main/f/farstream/libfarstream-0.1-dbg_0.1.2-1ubuntu3_i386.deb Size: 782744 MD5sum: 96a338ddca8297573110ee3f6d4e5d05 SHA1: 93655b3e06f7cb5788bf92fee14040a25f06969b SHA256: c65a4b2fb595bfa257d2e47908bd1ccf8ef332d220828234016eaca79ce4ddc3 Description: Audio/Video communications framework: debugging symbols Multi-Arch: same Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 1bbfbb00dc986d10b6c659758cff41aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.1-dev Priority: optional Section: libdevel Installed-Size: 417 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: farstream Version: 0.1.2-1ubuntu3 Depends: libfarstream-0.1-0 (= 0.1.2-1ubuntu3), libgstreamer0.10-dev, gir1.2-farstream-0.1 Filename: pool/main/f/farstream/libfarstream-0.1-dev_0.1.2-1ubuntu3_i386.deb Size: 51042 MD5sum: 4d3215fefd89719cddeeb10533101028 SHA1: e39ce6dd004b6af9afd75fd2c0b7d0642824575a SHA256: 5f3edb88776f59fea1bb04f5b691bd5b9d213595166c5281dcb9738da6248112 Description: Audio/Video communications framework: development files Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 3738ffa6e8fc2324f1230a8c8a058ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.1-doc Priority: optional Section: doc Installed-Size: 683 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: farstream Version: 0.1.2-1ubuntu3 Filename: pool/main/f/farstream/libfarstream-0.1-doc_0.1.2-1ubuntu3_all.deb Size: 51898 MD5sum: 78d8ac35840bc5d88dd049a447628964 SHA1: 6123e1e34f4800aab72ed6ca4e0bb99488d89c95 SHA256: 04a771f5a64301037cfad38fafb8869c7042516f316f61bf3584bb6239489075 Description: Audio/Video communications framework: documentation Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 37859e01ed610b45e8284b5a141d0595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.2-2 Priority: optional Section: libs Installed-Size: 660 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: farstream-0.2 Version: 0.2.3-1ubuntu2 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.35.9), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgupnp-igd-1.0-4 (>= 0.2.1), libnice10 (>= 0.1.0), gstreamer1.0-plugins-base, gstreamer1.0-plugins-good, gstreamer1.0-nice Pre-Depends: multiarch-support Conflicts: libfarstream-0.2-0 Filename: pool/main/f/farstream-0.2/libfarstream-0.2-2_0.2.3-1ubuntu2_i386.deb Size: 176288 MD5sum: 8341965944a9171caeed257ff15ed95b SHA1: c46423caa07e590067ec70bc5f170fea8b73ad5b SHA256: efbe7f8d6f1972fc26bd8f9cfb8269882de5ba902769e9f5443abe4daed944fd Description: Audio/Video communications framework: core library Multi-Arch: same Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: f7d95180a5bfbf33d770c2d677e3d23a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libfarstream-0.2-dbg Priority: extra Section: debug Installed-Size: 828 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: farstream-0.2 Version: 0.2.3-1ubuntu2 Depends: libfarstream-0.2-2 (= 0.2.3-1ubuntu2), libgstreamer1.0-dev Filename: pool/main/f/farstream-0.2/libfarstream-0.2-dbg_0.2.3-1ubuntu2_i386.deb Size: 650986 MD5sum: ba7966240020fea37a9f46579e4f727b SHA1: 4f33e0dcc183a1eda23dd73625876c48ffb3388e SHA256: f8f829319b617ef518c8d8d2fa3a14c05103d8d2bfa701d305cf2dcd9216f26c Description: Audio/Video communications framework: debugging symbols Multi-Arch: same Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 1bbfbb00dc986d10b6c659758cff41aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.2-dev Priority: optional Section: libdevel Installed-Size: 315 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: farstream-0.2 Version: 0.2.3-1ubuntu2 Depends: libfarstream-0.2-2 (= 0.2.3-1ubuntu2), libgstreamer1.0-dev, gir1.2-farstream-0.2 Filename: pool/main/f/farstream-0.2/libfarstream-0.2-dev_0.2.3-1ubuntu2_i386.deb Size: 28158 MD5sum: 76ec9a44b36a83805c94e64b6589f1c3 SHA1: 2c283f6858db911bf7bd422b5c2545d7188cf7b0 SHA256: fb3dcffae5d09ae14745b8e7dbdef085e74b00daf5fb5d9b17742c6b08105488 Description: Audio/Video communications framework: development files Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 3738ffa6e8fc2324f1230a8c8a058ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfarstream-0.2-doc Priority: optional Section: doc Installed-Size: 661 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: farstream-0.2 Version: 0.2.3-1ubuntu2 Filename: pool/main/f/farstream-0.2/libfarstream-0.2-doc_0.2.3-1ubuntu2_all.deb Size: 52234 MD5sum: 674c00d629a18fe427482db83ce198a7 SHA1: f3d92c4530d439f810b7c890f427478c2f3bce55 SHA256: bf295ac1056f432fa8fdc48e3cf5dbea0ea1a341104a57118c1f5c7465097c71 Description: Audio/Video communications framework: documentation Homepage: http://www.freedesktop.org/software/farstream/releases/farstream/ Description-md5: 37859e01ed610b45e8284b5a141d0595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfcgi-dev Priority: optional Section: libdevel Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Tatsuki Sugiura Architecture: i386 Source: libfcgi Version: 2.4.0-8.1ubuntu5 Depends: libfcgi0ldbl (= 2.4.0-8.1ubuntu5) Filename: pool/main/libf/libfcgi/libfcgi-dev_2.4.0-8.1ubuntu5_i386.deb Size: 29388 MD5sum: f07f82f0ad1d4235183bbff9e085da0e SHA1: 7f6519a816841d848b25713f5f04064c18ecaa90 SHA256: 1849be7c0c51ac0e64731eec563ab2e5205d0fe31fc7e00686618564062a68c8 Description: Header files of FastCGI Homepage: http://www.fastcgi.com/drupal/ Description-md5: 009cd06efa144074b4d3ca259df10f47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfcgi0ldbl Priority: optional Section: libs Installed-Size: 486 Maintainer: Ubuntu Developers Original-Maintainer: Tatsuki Sugiura Architecture: i386 Source: libfcgi Version: 2.4.0-8.1ubuntu5 Replaces: libfcgi0, libfcgi0c2 Provides: libfcgi Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: libfcgi0, libfcgi0c2 Filename: pool/main/libf/libfcgi/libfcgi0ldbl_2.4.0-8.1ubuntu5_i386.deb Size: 160806 MD5sum: 18140eebdfd3601692731651822e25eb SHA1: d52ea46ea701660fc01dd931b437ad0ca7fecc26 SHA256: abe4ccedeb5d9531d19ace853244eb26ae4641738e4680bcc27f1f46f196aa84 Description: Shared library of FastCGI Homepage: http://www.fastcgi.com/drupal/ Description-md5: 02d3c70a95e5835be90e8145cadd24cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfdt-dev Priority: extra Section: libdevel Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Hector Oron Architecture: i386 Source: device-tree-compiler Version: 1.4.0+dfsg-1 Depends: libfdt1 (= 1.4.0+dfsg-1) Filename: pool/main/d/device-tree-compiler/libfdt-dev_1.4.0+dfsg-1_i386.deb Size: 21966 MD5sum: 73bc8560f1726d064925f589b80230f0 SHA1: 8baf9fba473ce65255059fd3582388fc1bf19075 SHA256: 7dd29e15e3a620bfe18547fb2f0bfa32d57de17680ff6e42835adbd0b3b8d743 Description: Flat Device Trees manipulation library - development files Homepage: http://git.jdl.com/gitweb/?p=dtc.git Description-md5: ad28e5f86214823e1f8f3d325c48bfcf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfdt1 Priority: extra Section: libs Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Hector Oron Architecture: i386 Source: device-tree-compiler Version: 1.4.0+dfsg-1 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/d/device-tree-compiler/libfdt1_1.4.0+dfsg-1_i386.deb Size: 15432 MD5sum: 1c3302156c1e48c7b84f0b2d7a9592f4 SHA1: e6b0c60d690ee454ae71586d375d9cf332d8cab2 SHA256: cc5cdbd734f3077338da9b3fc2291a93f7c364b71dbe6650d6ba5378d32c88d1 Description: Flat Device Trees manipulation library Multi-Arch: same Homepage: http://git.jdl.com/gitweb/?p=dtc.git Description-md5: f077c697bf6c3a18b07f993cec1cb219 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libffado-dev Priority: optional Section: libdevel Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: libffado Version: 2.1.0+svn2240-1ubuntu3 Depends: libffado2 (= 2.1.0+svn2240-1ubuntu3), libxml2-dev Filename: pool/main/libf/libffado/libffado-dev_2.1.0+svn2240-1ubuntu3_i386.deb Size: 6866 MD5sum: 1ea06fef2b356db91243851bcf1661fd SHA1: e08cb6f8e017eb629c4f9c6cbb1fb5eae22d6c29 SHA256: 6b4609b5b7f7046dc061782998148545b8e331a66c6899cb611b7216e19c3ea9 Description: FFADO API - development files Homepage: http://www.ffado.org Description-md5: 9d3a45b6227b7fe7aebb546d9d19f3a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libffado2 Priority: optional Section: libs Installed-Size: 5042 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: libffado Version: 2.1.0+svn2240-1ubuntu3 Depends: libc6 (>= 2.16), libconfig++9, libgcc1 (>= 1:4.1.1), libglibmm-2.4-1c2a (>= 2.36.2), libiec61883-0 (>= 1.2.0), libraw1394-11, libstdc++6 (>= 4.4.0), libxml++2.6-2 (>= 2.36.0) Filename: pool/main/libf/libffado/libffado2_2.1.0+svn2240-1ubuntu3_i386.deb Size: 1622712 MD5sum: 9a5c74f672f2749b1714142cee2a0085 SHA1: 0d2b26f6184c98ed101b10154680b8f8b1fd3f76 SHA256: 95aabd1fa1c0a498143fd9a9ba5aa96a5ea6bbd4b0d949556c3a6d46c19c56b3 Description: FFADO API Homepage: http://www.ffado.org Description-md5: 4c331f90e31074719b77f3d0b71de841 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libffi-dev Priority: extra Section: libdevel Installed-Size: 281 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: libffi Version: 3.1~rc1+r3.0.13-12 Depends: libffi6 (= 3.1~rc1+r3.0.13-12), dpkg (>= 1.15.4) | install-info Conflicts: libffi4-dev Filename: pool/main/libf/libffi/libffi-dev_3.1~rc1+r3.0.13-12_i386.deb Size: 98996 MD5sum: 982b614b7b82649ab8fef71d9b1a142b SHA1: aaac1834a44f0cef4e2a1d5645bb198c54bda820 SHA256: 4b6a1e7b6db8b07c083214efab8c43655e31b25ceb6550851cf1e49cbfa4f258 Description: Foreign Function Interface library (development files) Multi-Arch: same Description-md5: cb5b8c2fd242772cae1be91db134642c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libffi6 Priority: important Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: libffi Version: 3.1~rc1+r3.0.13-12 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libf/libffi/libffi6_3.1~rc1+r3.0.13-12_i386.deb Size: 14430 MD5sum: 08b403de376237202357cef5480dde3f SHA1: 49e2acc40b7674e70a2bb4a24e6823759e2b621f SHA256: 6b255a6d03c16d8ca7d37d0f61ab73eddbe2b9a5da2187cceb283cfee3ecf620 Description: Foreign Function Interface library runtime Multi-Arch: same Description-md5: aa11fa9e12227fc9a1de7b2cb193c270 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libffi6-dbg Priority: extra Section: debug Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: libffi Version: 3.1~rc1+r3.0.13-12 Depends: libffi6 (= 3.1~rc1+r3.0.13-12) Filename: pool/main/libf/libffi/libffi6-dbg_3.1~rc1+r3.0.13-12_i386.deb Size: 26476 MD5sum: 8e1e02bb0b6d8a9957fd9b28ef97ba59 SHA1: b58300531ba0c9e85d2da3cb07d178996b1928ed SHA256: 1da5795a2ae9eeddfff7802c6d0417c2f89dc163436ec0b81a60e1cd3f8e2980 Description: Foreign Function Interface library runtime (debug symbols) Multi-Arch: same Description-md5: 20af1eabe0d6190ef16f6991d091b7b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-bin Priority: optional Section: libs Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: libfftw3-dev (<< 3.3.2-1) Depends: libc6 (>= 2.7), libfftw3-double3, libfftw3-long3, libfftw3-quad3, libfftw3-single3 Breaks: libfftw3-dev (<< 3.3.2-1) Filename: pool/main/f/fftw3/libfftw3-bin_3.3.3-7ubuntu3_i386.deb Size: 33232 MD5sum: 2e2677052484b29102493b7f3c6541c9 SHA1: dcba99c174ef220896e8240e50155bdb66682354 SHA256: f2dcc9185880d469ef311584ebf534ad1cead9fac4d15722935fdbf94a781f74 Description: Library for computing Fast Fourier Transforms - Tools Multi-Arch: foreign Homepage: http://fftw.org Description-md5: 1634796eb61b0b82db0ba1955d8060ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-dbg Priority: extra Section: debug Installed-Size: 55280 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: fftw3 Version: 3.3.3-7ubuntu3 Depends: libfftw3-dev (= 3.3.3-7ubuntu3) Filename: pool/main/f/fftw3/libfftw3-dbg_3.3.3-7ubuntu3_i386.deb Size: 8711590 MD5sum: 646fc53023637822ee92543bcc0e7a74 SHA1: 564e391a3a8875eff5edf1ce67b9b42e9f3ffe1d SHA256: 05cde10a571d3bafd3539ae981286d3adfae58417b730e19516cd7b361dc97e9 Description: Library for computing Fast Fourier Transforms - debug symbols Homepage: http://fftw.org Description-md5: 4ae9cef69209f997f0c8420fde5bfa58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-dev Priority: optional Section: libdevel Installed-Size: 16682 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: fftw3-dev Provides: fftw3-dev Depends: libfftw3-bin (= 3.3.3-7ubuntu3), libfftw3-double3 (= 3.3.3-7ubuntu3), libfftw3-long3 (= 3.3.3-7ubuntu3), libfftw3-quad3 (= 3.3.3-7ubuntu3), libfftw3-single3 (= 3.3.3-7ubuntu3) Conflicts: fftw3-dev Filename: pool/main/f/fftw3/libfftw3-dev_3.3.3-7ubuntu3_i386.deb Size: 2936678 MD5sum: aa5572fcdd2a1e6ffe52ba4ea80e46e3 SHA1: 4b4040f6b08b4d2d0d53dabf0c231888614380d1 SHA256: c109478f4a18677f26adbe0a466c808f2a6f35879d74a2c139872c39e015806f Description: Library for computing Fast Fourier Transforms - development Multi-Arch: same Homepage: http://fftw.org Description-md5: 0458906aced3a568dab153e7bdeb04f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-doc Priority: optional Section: doc Installed-Size: 1375 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: all Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: fftw3-doc Provides: fftw3-doc Suggests: libfftw3-3 Conflicts: fftw3-doc Filename: pool/main/f/fftw3/libfftw3-doc_3.3.3-7ubuntu3_all.deb Size: 185070 MD5sum: 2eb1c7be2f8da91a3f1eaa51f55b1e1f SHA1: 0d3995375b9d43f8a46a2be1059eb719fbe99623 SHA256: 403bb965373a7b4f95e3be0dd100d88ff8bc60a6db8f5b41b497d07a7bf3e43d Description: Documentation for fftw version 3 Homepage: http://fftw.org Description-md5: 4b102f0a50a0f8857bbe78f39afb5b51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-double3 Priority: optional Section: libs Installed-Size: 2000 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: libfftw3-3 (<< 3.3.3-1) Depends: libc6 (>= 2.11), libgomp1 (>= 4.2.1) Pre-Depends: multiarch-support Suggests: libfftw3-bin, libfftw3-dev Breaks: libfftw3-3 (<< 3.3.3-1) Filename: pool/main/f/fftw3/libfftw3-double3_3.3.3-7ubuntu3_i386.deb Size: 573070 MD5sum: fa386020be727c3cc4bbd6291c751053 SHA1: e7cfcf423deb8ef55faf1d741e37459ef6962e32 SHA256: fa71d6b9e741f1be5d37e70e94163eb7507a04f7c6af8ac5dc12fd41668cb330 Description: Library for computing Fast Fourier Transforms - Double precision Multi-Arch: same Homepage: http://fftw.org Description-md5: 9621f1cfaad5927e844a719259a992d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libfftw3-long3 Priority: optional Section: libs Installed-Size: 1000 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: libfftw3-3 (<< 3.3.3-1) Depends: libc6 (>= 2.4), libgomp1 (>= 4.2.1) Pre-Depends: multiarch-support Suggests: libfftw3-bin, libfftw3-dev Breaks: libfftw3-3 (<< 3.3.3-1) Filename: pool/main/f/fftw3/libfftw3-long3_3.3.3-7ubuntu3_i386.deb Size: 309398 MD5sum: 535c8d58639f2cd87a20c8b33af007aa SHA1: 6444849118a4d1057f955c5bcb399763768262e3 SHA256: d6365937a88e65344bf29f01c9b6892d967ccbaf6dbf0fe16bcab38328bbb95c Description: Library for computing Fast Fourier Transforms - Long precision Multi-Arch: same Homepage: http://fftw.org Description-md5: 635b21b639bb88b0432e61e40d91de25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libfftw3-quad3 Priority: optional Section: libs Installed-Size: 6432 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: fftw3 Version: 3.3.3-7ubuntu3 Depends: libc6 (>= 2.4), libgomp1 (>= 4.2.1), libquadmath0 (>= 4.6) Pre-Depends: multiarch-support Suggests: libfftw3-bin, libfftw3-dev Filename: pool/main/f/fftw3/libfftw3-quad3_3.3.3-7ubuntu3_i386.deb Size: 1633296 MD5sum: dcc35d95bb388261ac42417ac930c6a0 SHA1: daf87e0408c84a5c76eb2a13e71da5784953c48c SHA256: 801059d8f0a0fdfc4b03f85607fcbc1723a59fad88aaa96b394d307d5ef48d33 Description: Library for computing Fast Fourier Transforms - Quad precision Multi-Arch: same Homepage: http://fftw.org Description-md5: 0257bc9fe8f3f3c4a5554facc0480200 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfftw3-single3 Priority: optional Section: libs Installed-Size: 2072 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: fftw3 Version: 3.3.3-7ubuntu3 Replaces: libfftw3-3 (<< 3.3.3-1) Depends: libc6 (>= 2.11), libgomp1 (>= 4.2.1) Pre-Depends: multiarch-support Suggests: libfftw3-bin, libfftw3-dev Breaks: libfftw3-3 (<< 3.3.3-1) Filename: pool/main/f/fftw3/libfftw3-single3_3.3.3-7ubuntu3_i386.deb Size: 605580 MD5sum: 645f63cbc2bd23a33b78cb86ca2b9cec SHA1: b589f8aa5f36ee4f932314c659ce3538e6fb780f SHA256: 0fe1ae2f5592c4a30892065c28405e7980b6142f9d7f8f324919d9bc619d9de1 Description: Library for computing Fast Fourier Transforms - Single precision Multi-Arch: same Homepage: http://fftw.org Description-md5: 92b4a1a5847803599048be98e9eb70b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfile-basedir-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.03-1fakesync1 Depends: perl Filename: pool/main/libf/libfile-basedir-perl/libfile-basedir-perl_0.03-1fakesync1_all.deb Size: 10540 MD5sum: be0421f5e8ef45b51a354342edbcd165 SHA1: 253ad7cd1c340498975fc61d78d559b612b539fc SHA256: 39b20a9071b410037eeb80b6dedffbd03d5f18e90b17085073b0af83453b541c Description: Perl module to use the freedesktop basedir specification Homepage: http://search.cpan.org/dist/File-BaseDir/ Description-md5: e2d62144b6daacc640d5b6d78efd1111 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libfile-copy-recursive-perl Priority: optional Section: perl Installed-Size: 88 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.38-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/libf/libfile-copy-recursive-perl/libfile-copy-recursive-perl_0.38-1_all.deb Size: 20586 MD5sum: f9f292787835ae54426e80678737509c SHA1: 9167b509c2f681e637c6cd176f2010b03e8548ed SHA256: fc4d4bc6f138107487821184316a027e1fde31c77c38057b77f8b89ca874c4e0 Description: Perl extension for recursively copying files and directories Homepage: http://search.cpan.org/dist/File-Copy-Recursive/ Description-md5: a107442d1b00e794c7a17b73e1706430 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfile-desktopentry-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.07-1 Depends: perl, libfile-basedir-perl Filename: pool/main/libf/libfile-desktopentry-perl/libfile-desktopentry-perl_0.07-1_all.deb Size: 19428 MD5sum: 556e25e3c9edc07cfe59b0d9d1c7c026 SHA1: b3a50348b86d24767770fb777f1c80c2a5dbe3c2 SHA256: 3c6ff6753ac914e82f7fe183f25ccca42c28e43397088fee07c1775e56cb9958 Description: Perl module to handle freedesktop .desktop files Homepage: https://metacpan.org/release/File-DesktopEntry/ Description-md5: 8f24eaa02c2a203865d9e9866abd69ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libfile-fcntllock-perl Priority: optional Section: perl Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.14-2build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libf/libfile-fcntllock-perl/libfile-fcntllock-perl_0.14-2build1_i386.deb Size: 15976 MD5sum: 0a96c0b5bd1ba98ef27aeda227e46504 SHA1: 1201d236b0ff306c99aa10e5abf5be89b0a4ddd1 SHA256: a2ab1a97693b1d88f0a7503a7d971744d7620c91b2fa9d416c9928c87d8f34ec Description: Perl module for file locking with fcntl(2) Homepage: http://search.cpan.org/dist/File-FcntlLock/ Description-md5: 1376b0e0447b0e66b49e18521ea5b355 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfile-find-rule-perl Priority: optional Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.33-1 Depends: perl, libnumber-compare-perl, libtext-glob-perl Filename: pool/main/libf/libfile-find-rule-perl/libfile-find-rule-perl_0.33-1_all.deb Size: 29218 MD5sum: 4c2bd96772117f29f635cf42b7f90c55 SHA1: d8387c884558772dcb59303cbc1052599a118288 SHA256: 1dbf00181141e7366cd6ca72c7430cc5d0b69d92837b3084aafefd1282936357 Description: module to search for files based on rules Homepage: http://search.cpan.org/dist/File-Find-Rule/ Description-md5: 8cd4d0f3eaa3be198fad597b8d5381f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-find-rule-perl-perl Priority: optional Section: perl Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.13-1 Depends: perl, libfile-find-rule-perl, libparams-util-perl Filename: pool/main/libf/libfile-find-rule-perl-perl/libfile-find-rule-perl-perl_1.13-1_all.deb Size: 10348 MD5sum: 9c285a96e916dec1cc98d0ec82fdacf9 SHA1: ac4fecbd3bc18d2a93c067177093163c5be1bfc5 SHA256: 129789efecef86c79a41604bfd9000c39a850c1b7a105a1e85b5ee81376d40b0 Description: Perl module for searching Perl things Homepage: https://metacpan.org/release/File-Find-Rule-Perl/ Description-md5: 2c67e603b83c64a2eba394ccb9ca2109 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-homedir-perl Priority: optional Section: perl Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.00-1 Depends: perl, libfile-which-perl Filename: pool/main/libf/libfile-homedir-perl/libfile-homedir-perl_1.00-1_all.deb Size: 46028 MD5sum: 546840e5fe60b5e6db5096c3727ef8f4 SHA1: ef33d2b15fc2cdf74cc29e4950ad3bd83bb248f9 SHA256: 19f105f05a8f062336d8427d286869b4711180ad8bb151d3de0e72f5c2bf053b Description: Perl module for finding user directories across platforms Homepage: https://metacpan.org/release/File-HomeDir/ Description-md5: ade98c07a00a07f3124fef8d30765fff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-listing-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.04-1 Replaces: libwww-perl (<< 6.00) Depends: perl, libhttp-date-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libf/libfile-listing-perl/libfile-listing-perl_6.04-1_all.deb Size: 9774 MD5sum: a69f2a45649ddd30a1679e5a90db41c5 SHA1: 7e13a66085509f229b7e51008cdaab5c813ec36a SHA256: b3557750ae80d586d6e0fccf16d3d8b2cbd60f14e21e7710bf56e9180b4f286f Description: module to parse directory listings Homepage: http://search.cpan.org/dist/File-Listing/ Description-md5: 2ae02de0eba22eeba98280c10ba05d83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfile-mimeinfo-perl Priority: optional Section: perl Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.22-1 Depends: perl, libfile-basedir-perl, libfile-desktopentry-perl, shared-mime-info Filename: pool/main/libf/libfile-mimeinfo-perl/libfile-mimeinfo-perl_0.22-1_all.deb Size: 46628 MD5sum: 8bea1816bbf4780675f6f316d05cb1f0 SHA1: 1b5df89c69eec1290d75a84791a751c3bbc2b575 SHA256: 208b5340b0a7e3f109ff923144347daf24b563c593efa96d4fa34c0a8b9c2ab5 Description: Perl module to determine file types Homepage: https://metacpan.org/release/File-MimeInfo Description-md5: bf8d7b2ddae0ccc7b3c6b157af85a455 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libfile-remove-perl Priority: optional Section: perl Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.52-1 Depends: perl (>= 5.10.1) Filename: pool/main/libf/libfile-remove-perl/libfile-remove-perl_1.52-1_all.deb Size: 12020 MD5sum: 77ee0786fa711d25d8d7591373d1a5eb SHA1: 3d0384afbd74e67195263b1cab5eb1a3481f86a7 SHA256: 514517ebb721673225013b9e38e575a5aea7ea94767de2562e6bbd5c10298b81 Description: Perl module to remove files or directories Homepage: http://search.cpan.org/dist/File-Remove/ Description-md5: f2d0713273291555ac69f343cc9c92e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-rsyncp-perl Priority: optional Section: perl Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Drolez Architecture: i386 Version: 0.70-1ubuntu3 Depends: libc6 (>= 2.4), perl (>= 5.18.1-4build1), perlapi-5.18.1 Filename: pool/main/libf/libfile-rsyncp-perl/libfile-rsyncp-perl_0.70-1ubuntu3_i386.deb Size: 94796 MD5sum: 0603607a06d75833044504f58b79224f SHA1: 4ebdbcb2cc08bcf569879bf074bcda3925a77053 SHA256: 68e3716d9de80af1a61ae266f89e2fbe6cb357e9449ae3ab836ac065d0a9e481 Description: Perl based implementation of an Rsync client Description-md5: 7dde1ee87fa156812a3730ba7c20b95c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfile-sharedir-install-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.07-1 Depends: perl Filename: pool/main/libf/libfile-sharedir-install-perl/libfile-sharedir-install-perl_0.07-1_all.deb Size: 9688 MD5sum: 289cc312010a85b45a6752155a31fef8 SHA1: 70777779e5d5cd25b4f5fe42b31cfd0e70aabd36 SHA256: 3da9d3dab8f7ef9d96f2f2cb586785a5ed2db18e1f4f2f551177a72e88ee8f5e Description: module for installing read-only data files Homepage: https://metacpan.org/release/File-ShareDir-Install/ Description-md5: d6511539f0ade5fb7280a04a2728e6aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-sharedir-perl Priority: optional Section: perl Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.03-1 Depends: perl, libclass-inspector-perl Filename: pool/main/libf/libfile-sharedir-perl/libfile-sharedir-perl_1.03-1_all.deb Size: 11990 MD5sum: da62b4c709f1dec0a6a8991dd177dd9b SHA1: ecafe3f4e526ac6c1feba813e88c661240317f3a SHA256: 15cc2a2c7b24b9a1b30762872a73c29dc7d4fdd6600bc908e07c471c826e3c54 Description: module to locate non-code files during run-time Homepage: http://metacpan.org/release/File-ShareDir Description-md5: f89049a15c9c1ec82bcd4c1549cb4200 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-sharedir-projectdistdir-perl Priority: optional Section: perl Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.5.2-1 Depends: perl, libfile-sharedir-perl, libpath-class-perl, libpath-finddev-perl, libpath-isdev-perl, libpath-tiny-perl, libsub-exporter-perl Filename: pool/main/libf/libfile-sharedir-projectdistdir-perl/libfile-sharedir-projectdistdir-perl_0.5.2-1_all.deb Size: 12802 MD5sum: 74ff6164db39596fd7d38424ecd4dfb2 SHA1: 14844c4a171a8cdee10aee2ee2f923c7b29ca211 SHA256: e8a07cc3cee5ce68907d201454838987adface1b3462a03d3188f70232e04dc1 Description: simple set-and-forget use of a share directory in the project root Homepage: https://metacpan.org/release/File-ShareDir-ProjectDistDir Description-md5: e63f0eb84dc590f61f2b4cd78da2a28a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfile-slurp-perl Priority: extra Section: perl Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Zangerl Architecture: all Version: 9999.19-4 Depends: perl Filename: pool/main/libf/libfile-slurp-perl/libfile-slurp-perl_9999.19-4_all.deb Size: 41308 MD5sum: f0ebd5184288680f2243f00112396cab SHA1: bf15a2ff0ec0efb5c3990ac29eabcabab6152f1b SHA256: d6381a4e6ca6603a370758e7e806d819e517cbaa06007d1f9485a8468900af69 Description: single call read & write file routines Homepage: http://search.cpan.org/~uri/ Description-md5: a5d3680247ec670449656cbec8684e1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libfile-which-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.09-1 Depends: perl Filename: pool/main/libf/libfile-which-perl/libfile-which-perl_1.09-1_all.deb Size: 11628 MD5sum: 00c764e850f86335e4a8cc740235212a SHA1: f6300da5f54b711f1aca4b4b3a86ba1131ca5e8a SHA256: 8b6c0d72467bb77ae4fc1c4b988eb0420c5b9b9156e3ed59ff8b50033f33c319 Description: Perl module for searching paths for executable programs Homepage: http://search.cpan.org/dist/File-Which/ Description-md5: 627223f305dd82cde8da8e723d765351 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfilehandle-fmode-perl Priority: optional Section: perl Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.13-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libf/libfilehandle-fmode-perl/libfilehandle-fmode-perl_0.13-1build1_i386.deb Size: 11134 MD5sum: 1c877184f33e0f4907d8a91b52730c4d SHA1: ca8a6a5d7af12e45fd1634c9120b6aeb7005ee37 SHA256: a4af8818154a524e445192d0f6bb20411b33e6684d183b8b36fd9d20fb40d6b8 Description: Perl module for checking filehandle status Homepage: http://search.cpan.org/dist/FileHandle-Fmode/ Description-md5: 0ccf2c0dc7d718e35447bf8445764d98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfindlib-ocaml Priority: optional Section: ocaml Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Source: findlib Version: 1.4-2 Replaces: ocaml-findlib (<< 1.2.4-3) Provides: libfindlib-ocaml-aj9e9 Depends: ocaml-base-nox-4.01.0 Breaks: ocaml-findlib (<< 1.2.4-3) Filename: pool/main/f/findlib/libfindlib-ocaml_1.4-2_i386.deb Size: 97170 MD5sum: 6c4c3cf0432daa93c97a3b74ef629cfa SHA1: 26a50cd0d6cd472cf7f73ba4a21af17edc874ee8 SHA256: 03346fdebfe681b0f3b341361d5107cfa0a2ecb3949a6fe44f0031c2013f2edc Description: library for managing OCaml libraries (runtime) Homepage: http://projects.camlcity.org/projects/findlib.html Description-md5: 01a205b5d1b557788906974aab0a0eb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfindlib-ocaml-dev Priority: optional Section: ocaml Installed-Size: 653 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Source: findlib Version: 1.4-2 Replaces: ocaml-findlib (<< 1.2.4-3) Provides: libfindlib-ocaml-dev-aj9e9 Depends: libfindlib-ocaml-aj9e9, ocaml-nox-4.01.0 Recommends: ocaml-findlib Breaks: ocaml-findlib (<< 1.2.4-3) Filename: pool/main/f/findlib/libfindlib-ocaml-dev_1.4-2_i386.deb Size: 111412 MD5sum: 12cb521c092baadcda438dcd159f1516 SHA1: 2843a25614a727dcaa8ebd83915d2ba8b55b3fc7 SHA256: ff244c43834fe6986c750a71f00ac351ccda986737af5c43ba910ce84be7007c Description: library for managing OCaml libraries (development files) Homepage: http://projects.camlcity.org/projects/findlib.html Description-md5: caf97965ee3f3c53c2568ee3fc1f5f9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfl-dev Priority: optional Section: libdevel Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: i386 Source: flex Version: 2.5.35-10.1ubuntu2 Replaces: flex (<< 2.5.35-10ubuntu2) Breaks: flex (<< 2.5.35-10ubuntu2) Filename: pool/main/f/flex/libfl-dev_2.5.35-10.1ubuntu2_i386.deb Size: 17406 MD5sum: da9d805165cae5f8bb62bbcac2133995 SHA1: eeb0725e3fd05e3a15c14b6223e62d4e6c8eacbe SHA256: a81e608b5cf272f5731fcff28b2f9064f12fc2f4a09b68ffd27422047cab08a7 Description: static library for flex (a fast lexical analyzer generator). Multi-Arch: same Homepage: http://flex.sf.net/ Description-md5: 6047d1200bb6bfb43f2f751be6a566fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libflac++-dev Priority: optional Section: libdevel Installed-Size: 255 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: flac Version: 1.3.0-2 Depends: libflac++6 (= 1.3.0-2), libflac-dev Filename: pool/main/f/flac/libflac++-dev_1.3.0-2_i386.deb Size: 40198 MD5sum: 9f597f4ea8be6df7a716b7a838473b9e SHA1: af534f4531b6f2183c8da4b9434d7f8cdadbef5e SHA256: 3a25f22b2dbc4b379c9beb1a70a4a29ecc37adbc8072053c41622c6ed0052bb2 Description: Free Lossless Audio Codec - C++ development library Multi-Arch: same Homepage: http://xiph.org/flac/ Description-md5: 587748b0cbc64da87e6a3c66a716974c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libflac++6 Priority: optional Section: libs Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: flac Version: 1.3.0-2 Depends: libc6 (>= 2.4), libflac8 (>= 1.3.0), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/f/flac/libflac++6_1.3.0-2_i386.deb Size: 31916 MD5sum: 975b3dc81f9b302d641703e0a684027a SHA1: 455de0be304b47d730862af17c2102badebc0e1c SHA256: 555e2b2b41cbeb0789a5e061cfcbc1de804217b2b1c9df3df0ca50beea1ffb0d Description: Free Lossless Audio Codec - C++ runtime library Multi-Arch: same Homepage: http://xiph.org/flac/ Description-md5: 3e16a4b738821651b2d456b30ceedb19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-dvd-live, ubuntustudio-video, ubuntustudio-audio Package: libflac-dev Priority: optional Section: libdevel Installed-Size: 643 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: flac Version: 1.3.0-2 Depends: libflac8 (= 1.3.0-2), libogg-dev Filename: pool/main/f/flac/libflac-dev_1.3.0-2_i386.deb Size: 164526 MD5sum: 29df9e1e51f5f86700f58b1c49a5e66a SHA1: 3bcb500ff6570edca9ec2a2b13fb4ac834a14dda SHA256: c021f6656d37258f2c2d145430c426be343a2cff438234fbe31743ae338931de Description: Free Lossless Audio Codec - C development library Multi-Arch: same Homepage: http://xiph.org/flac/ Description-md5: cee7b37a9102c16f614988533407b6e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libflac-doc Priority: optional Section: doc Installed-Size: 5218 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: all Source: flac Version: 1.3.0-2 Recommends: doc-base Suggests: libflac-dev Filename: pool/main/f/flac/libflac-doc_1.3.0-2_all.deb Size: 1030494 MD5sum: 663a666534208e4dfa23b139b8c9608b SHA1: e0bbd781bb012dcdec08ead2a6cbdf2c8bfbcf81 SHA256: 1a74ff5f40c6c70379c5c145811705b903cf7e780d729850baaca95c7d9028fd Description: Free Lossless Audio Codec - library documentation Homepage: http://xiph.org/flac/ Description-md5: 0c0d8036449a3363599955cce1a15a27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libflac8 Priority: optional Section: libs Installed-Size: 246 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: flac Version: 1.3.0-2 Depends: libc6 (>= 2.7), libogg0 (>= 1.0rc3) Pre-Depends: multiarch-support Filename: pool/main/f/flac/libflac8_1.3.0-2_i386.deb Size: 98118 MD5sum: 070e668691ba3f7fdd691509446c19ee SHA1: c6599d8501d1104038a1fc8f430102bb322b22ac SHA256: 9463833bac3e3633f5b9a8b6519a11fd2a466aec7d49dbb76ba6764ee8f44d44 Description: Free Lossless Audio Codec - runtime C library Multi-Arch: same Homepage: http://xiph.org/flac/ Description-md5: f4e8094378ea7f3b5f74adc1e78593b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libflite1 Priority: extra Section: libs Installed-Size: 19599 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: flite Version: 1.4-release-8 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.11) Pre-Depends: multiarch-support Suggests: alsa-base Filename: pool/main/f/flite/libflite1_1.4-release-8_i386.deb Size: 12748432 MD5sum: b5c79f31ebc4686dc471d1fd04bec5fc SHA1: ff88df02560954ecc7a653ebe1f62b60a19eaa45 SHA256: 4d8804443102cd3205de5f79e017b98b6e50c2d89d832050b42c991110c5749c Description: Small run-time speech synthesis engine - shared libraries Multi-Arch: same Homepage: http://www.speech.cs.cmu.edu/flite Description-md5: be295a27d8aa7208ed274d8c974494b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libfltk1.1 Priority: optional Section: libs Installed-Size: 936 Maintainer: Ubuntu Developers Original-Maintainer: Aaron M. Ucko Architecture: i386 Source: fltk1.1 Version: 1.1.10-17 Depends: libc6 (>= 2.15), libfontconfig1 (>= 2.9.0), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libstdc++6 (>= 4.1.1), libx11-6, libxft2 (>> 2.1.1), libxinerama1 Pre-Depends: multiarch-support Breaks: flwm (<= 1.02-2) Filename: pool/main/f/fltk1.1/libfltk1.1_1.1.10-17_i386.deb Size: 312300 MD5sum: 26c6b6243967729925fcea02f601d59e SHA1: 3f1b089d1c4203c210c8d609b7a76bdb06ef6b92 SHA256: dbd762c71d99bb86fda53dd40c9f24dd8457a6378e89694956aeb615f59e0aaa Description: Fast Light Toolkit - shared libraries Multi-Arch: same Homepage: http://www.fltk.org/ Description-md5: 1258b55a967eac77a8cf269244ce33f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libfltk1.1-dbg Priority: extra Section: libdevel Installed-Size: 1165 Maintainer: Ubuntu Developers Original-Maintainer: Aaron M. Ucko Architecture: i386 Source: fltk1.1 Version: 1.1.10-17 Depends: libfltk1.1 (= 1.1.10-17) Recommends: gdb Filename: pool/main/f/fltk1.1/libfltk1.1-dbg_1.1.10-17_i386.deb Size: 963318 MD5sum: c117af1496e3e4e2ab4aa5c9e6910e77 SHA1: 57e82e58e80bcefa73c63507ea606409ea44e399 SHA256: 065dcd3c8bfa58f27d6e3879ba2995540ae9a21f0afa6c1979e7f98e0d9194fc Description: Fast Light Toolkit - shared libraries with debugging symbols Multi-Arch: same Homepage: http://www.fltk.org/ Description-md5: 1f1941337a021b4274529d38c4ee46bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfltk1.1-dev Priority: optional Section: libdevel Installed-Size: 1866 Maintainer: Ubuntu Developers Original-Maintainer: Aaron M. Ucko Architecture: i386 Source: fltk1.1 Version: 1.1.10-17 Replaces: libfltk-dev Provides: libfltk-dev Depends: libfltk1.1 (= 1.1.10-17), libx11-dev, debconf (>= 0.5) | debconf-2.0 Recommends: libgl1-mesa-dev | libgl-dev Suggests: fltk1.1-doc, fluid, libglu1-mesa-dev | libglu-dev, libjpeg-dev, libpng-dev, libxext-dev, libxft-dev, libxinerama-dev, zlib1g-dev | libz-dev Conflicts: libfltk-dev Filename: pool/main/f/fltk1.1/libfltk1.1-dev_1.1.10-17_i386.deb Size: 404650 MD5sum: 91d2f1d8bc15313e96b68fa7af68bdf6 SHA1: 52868abd1b5c6f0134c5598d9e190e8bd6963d1e SHA256: bdbda005d7276d68bd20e677b24098922599d88ba456a7bb0235906847a694a3 Description: Fast Light Toolkit - development files Homepage: http://www.fltk.org/ Description-md5: fd19f539170e49b3078fef85e7a556c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-dbg Priority: extra Section: debug Installed-Size: 690 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks25 (= 0.9.5-1ubuntu5) Filename: pool/main/f/folks/libfolks-dbg_0.9.5-1ubuntu5_i386.deb Size: 552744 MD5sum: 52ac15ba3e37c67e9c33504b9aa17a95 SHA1: f078bf4b18337d9e307e05882da5d021f256e3d2 SHA256: 2eef9d2437064a53d2f5adf60ef2b3b3d2437f7a1c9c162b6abac1eb0fe30cfd Description: library to aggregates people into metacontact - debugging symbols Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: 2cf9acc6886eab671e51660aadda2353 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-dev Priority: optional Section: libdevel Installed-Size: 420 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks25 (= 0.9.5-1ubuntu5), gir1.2-folks-0.6 (= 0.9.5-1ubuntu5), libglib2.0-dev (>= 2.32.0), libgee-0.8-dev Filename: pool/main/f/folks/libfolks-dev_0.9.5-1ubuntu5_i386.deb Size: 27370 MD5sum: b40fbb11bfe753f6cedc251ec0d6ee35 SHA1: c99a9d154bf1f3b8f5406c74eb45f1410e65cc1e SHA256: d525e0950d872c89576ff1bf6e6cf28519195711776f152a189ff5a9f92e9cf0 Description: library to aggregates people into metacontact - development files Homepage: https://live.gnome.org/Folks/ Description-md5: 9299190f6ecb951322db84a9c8470e8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-eds-dbg Priority: extra Section: debug Installed-Size: 332 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks-eds25 (= 0.9.5-1ubuntu5) Filename: pool/main/f/folks/libfolks-eds-dbg_0.9.5-1ubuntu5_i386.deb Size: 236964 MD5sum: 3e69e30b1da5a901a9b768c3efe8840d SHA1: a1777324526d60174fbe023ce884c7afc9ee0146 SHA256: 36d1cb7f441e620c15c9f6497b2749d4a47cd3d157e08c91d5372b9270cc5aaa Description: Evolution-data-server backend for libfolks - debugging symbols Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: a8d0e5a2f4a57261c73a56ca80a64a55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-eds-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks-eds25 (= 0.9.5-1ubuntu5), libfolks-dev (= 0.9.5-1ubuntu5), libglib2.0-dev (>= 2.24), libebook1.2-dev, libedataserver1.2-dev Filename: pool/main/f/folks/libfolks-eds-dev_0.9.5-1ubuntu5_i386.deb Size: 4234 MD5sum: 45675648269eab02884ab3cd8fdcf238 SHA1: dff1d3c474585a8afed46d901a493bb412e6d158 SHA256: bd028f0991351c9392374d4a2782bb3f410415e2f93e8a3c8df1598f0d02dc0c Description: Evolution-data-server backend for libfolks - development files Homepage: https://live.gnome.org/Folks/ Description-md5: 32e240aaa6d2e3b4945053fff6a3156c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-eds25 Priority: optional Section: libs Installed-Size: 291 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: folks Version: 0.9.5-1ubuntu5 Depends: libc6 (>= 2.3.6-6~), libebook-1.2-14 (>= 3.7.90), libebook-contacts-1.2-0 (>= 3.7.90), libedataserver-1.2-18 (>= 3.5.92), libfolks25 (= 0.9.5-1ubuntu5), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.32.0), evolution-data-server (>= 3.2.0) Pre-Depends: multiarch-support Recommends: folks-common (= 0.9.5-1ubuntu5) Filename: pool/main/f/folks/libfolks-eds25_0.9.5-1ubuntu5_i386.deb Size: 64016 MD5sum: 5967841855456ba92d55ac011540e193 SHA1: b07d89324012d8df0e454cc376b077e1e75cb0c2 SHA256: 7e52913a3ab21341da014e529183aba4441050e09efc13b31e98f84914c85dfc Description: Evolution-data-server backend for libfolks Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: 1b5e53fef2dc5f59dafced129d0380dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libfolks-telepathy-dbg Priority: extra Section: debug Installed-Size: 317 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks-telepathy25 (= 0.9.5-1ubuntu5) Filename: pool/main/f/folks/libfolks-telepathy-dbg_0.9.5-1ubuntu5_i386.deb Size: 223288 MD5sum: 57c6796fff324edc42532799de3b9d31 SHA1: 0a68c52b274ae75abe8f8899f16cb87fc7e254bd SHA256: a62f54f700919ed9ff7d7a614e751cfcc8ce46a58811d580e0a84eead94c63f0 Description: Telepathy backend for libfolks - debugging symbols Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: 6d72901fc607c6b5a7b1bc57f8a3f4e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-telepathy-dev Priority: optional Section: libdevel Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: folks Version: 0.9.5-1ubuntu5 Depends: libfolks-telepathy25 (= 0.9.5-1ubuntu5), libfolks-dev (= 0.9.5-1ubuntu5), libglib2.0-dev (>= 2.24), libtelepathy-glib-dev (>= 0.13.1) Filename: pool/main/f/folks/libfolks-telepathy-dev_0.9.5-1ubuntu5_i386.deb Size: 3738 MD5sum: 592c985f69d224dd310b2bec0f74daf8 SHA1: 0223e0f21e4d5cba25f71edc2b7da9e83250a80d SHA256: a1375ccbe4b280c1c62962ba03f2865f1914f9e78075d4bed3e54d78da810da5 Description: Telepathy backend for libfolks - development files Homepage: https://live.gnome.org/Folks/ Description-md5: 567a965724d2307678b47d578c88cb87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfolks-telepathy25 Priority: optional Section: libs Installed-Size: 268 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: folks Version: 0.9.5-1ubuntu5 Depends: libc6 (>= 2.3.6-6~), libfolks25 (= 0.9.5-1ubuntu5), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.37.3), libtelepathy-glib0 (>= 0.19.0), libzeitgeist-2.0-0 (>= 0.9.9) Pre-Depends: multiarch-support Recommends: folks-common (= 0.9.5-1ubuntu5) Filename: pool/main/f/folks/libfolks-telepathy25_0.9.5-1ubuntu5_i386.deb Size: 62762 MD5sum: 92ece4a1dd950979ae0f7dfc289bcf10 SHA1: c9b9013806f8f7506e8c22eec74bce5b83dd3119 SHA256: eac8669d5e19f2aefdee5b6f8a40814a76017ac93a86e1e00728303a10421369 Description: Telepathy backend for libfolks Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: fa12a105274bcb2f4d39c88598931432 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libfolks25 Priority: optional Section: libs Installed-Size: 575 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: folks Version: 0.9.5-1ubuntu5 Depends: libc6 (>= 2.3.6-6~), libgee-0.8-2 (>= 0.8.3), libglib2.0-0 (>= 2.37.3), folks-common (= 0.9.5-1ubuntu5) Pre-Depends: multiarch-support Recommends: libfolks-eds25 Breaks: libfolks-eds25 (<< 0.8.0-2~), libfolks-telepathy25 (<< 0.8.0-2~) Filename: pool/main/f/folks/libfolks25_0.9.5-1ubuntu5_i386.deb Size: 137882 MD5sum: 59971198867b7be7cc99cbe77c532da8 SHA1: b4edd722b8bc925ca50b4656d61a61dbb26223eb SHA256: 0c5ea16f7df9463ddaaa9a67ddf5da3fe69504307d307dfcfa84edcf26d2f06a Description: library to aggregates people into metacontacts Multi-Arch: same Homepage: https://live.gnome.org/Folks/ Description-md5: 6cf733f30836cfa6b9d6cd795bc30e6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libfont-afm-perl Priority: optional Section: perl Installed-Size: 120 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.20-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/libf/libfont-afm-perl/libfont-afm-perl_1.20-1_all.deb Size: 14288 MD5sum: 2322f8db827053cf4754f6182c30572f SHA1: a7363550f0c34f39f453cd20bc01efab5bff77df SHA256: ad470846b303cc5c3182b873f30bcc6dc1eaed2d67da028073a75be9fab45e00 Description: Font::AFM - Interface to Adobe Font Metrics files Homepage: http://search.cpan.org/dist/Font-AFM/ Description-md5: 251d04770a8f6c548fa442cde83c641d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfont-ttf-perl Priority: optional Section: perl Installed-Size: 1011 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.04-1 Depends: perl, libio-string-perl Suggests: libxml-parser-perl Filename: pool/main/libf/libfont-ttf-perl/libfont-ttf-perl_1.04-1_all.deb Size: 353146 MD5sum: 4a2eba06819718d08b6b7e158473457e SHA1: 6a82bf2b164e7e8c092f3aca5b5ee7821f59468a SHA256: 9f7c79d0988b93c887ff2d1640e60c69ed134c3658cd97744495f86ad160b19b Description: Perl module for TrueType font hacking Homepage: https://metacpan.org/release/Font-TTF/ Description-md5: c2adf749125bb1420434f9d47bc7461d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontconfig1 Priority: optional Section: libs Installed-Size: 493 Maintainer: Ubuntu Developers Original-Maintainer: Keith Packard Architecture: i386 Source: fontconfig Version: 2.11.0-0ubuntu4 Provides: libfontconfig Depends: fontconfig-config (= 2.11.0-0ubuntu4), libc6 (>= 2.7), libexpat1 (>= 2.0.1), libfreetype6 (>= 2.2.1) Pre-Depends: multiarch-support Filename: pool/main/f/fontconfig/libfontconfig1_2.11.0-0ubuntu4_i386.deb Size: 123394 MD5sum: 75764e04854ef769a3de4b2f92e448b7 SHA1: c3e9ff884d1464402897f16d0724a7d38eefa8f0 SHA256: 71db9dbc97d5d06303b0246d82ecec9d89f016db42eedc99a68e56435f0c4338 Description: generic font configuration library - runtime Multi-Arch: same Description-md5: 79e15bc25852b501452288a133d57a43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfontconfig1-dbg Priority: extra Section: libdevel Installed-Size: 629 Maintainer: Ubuntu Developers Original-Maintainer: Keith Packard Architecture: i386 Source: fontconfig Version: 2.11.0-0ubuntu4 Depends: libfontconfig1 (= 2.11.0-0ubuntu4) Filename: pool/main/f/fontconfig/libfontconfig1-dbg_2.11.0-0ubuntu4_i386.deb Size: 274694 MD5sum: c88dbfa8f0bb9b6bb7c9204fb901745b SHA1: 801fbfc9bf00c66ae377d7ecae28198ba5a7f73f SHA256: 5ab43d7a438882fdb5bd53a82c2ac1ee18419c35e814fc2e98c0cd2555191f82 Description: generic font configuration library - debugging symbols Description-md5: 626d31b62d1e9e091f20eb6ec4edac78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontconfig1-dev Priority: optional Section: libdevel Installed-Size: 1750 Maintainer: Ubuntu Developers Original-Maintainer: Keith Packard Architecture: i386 Source: fontconfig Version: 2.11.0-0ubuntu4 Provides: libfontconfig-dev Depends: libexpat1-dev, libfontconfig1 (= 2.11.0-0ubuntu4), libfreetype6-dev (>= 2.1.7), pkg-config Filename: pool/main/f/fontconfig/libfontconfig1-dev_2.11.0-0ubuntu4_i386.deb Size: 660628 MD5sum: 0947d27b017d0aedeaccd4eb97bb8d4f SHA1: a4ba0992ab7d144a9a7f2c76cdf5434a1ad2501e SHA256: 3925e668c81278a801a47e6380dedcb8a5dd3033c12febc969e21c5b9f297f85 Description: generic font configuration library - development Description-md5: 050db170deaa19847a8222ec11c75166 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfontembed-dev Priority: optional Section: libdevel Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups-filters Version: 1.0.52-0ubuntu1 Depends: libfontembed1 (= 1.0.52-0ubuntu1) Filename: pool/main/c/cups-filters/libfontembed-dev_1.0.52-0ubuntu1_i386.deb Size: 27066 MD5sum: ee7b8980c9aae17c39c096391021e15c SHA1: 1aa5a9cb731df75a03de1b4bdcd94b85ab434e1d SHA256: ea81ab1fcb8b6ee129696c22ca721b39148295e00b746f47dae10eb6841ca32d Description: OpenPrinting CUPS Filters - Development files for font embed library Homepage: http://www.openprinting.org/ Description-md5: c4c7345ca8b55eb3517e71b0b8ae9ac4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontembed1 Priority: optional Section: libs Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: cups-filters Version: 1.0.52-0ubuntu1 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/c/cups-filters/libfontembed1_1.0.52-0ubuntu1_i386.deb Size: 42860 MD5sum: 327fffcfbbb23251d2c794fde407edaf SHA1: 62a54c39f3c217748008264e3eb56fe05561290e SHA256: 3f74a7fe4f9c78a4955443a21e4b6ab24153d60496dc6b2d3607f4499b3f4f71 Description: OpenPrinting CUPS Filters - Font Embed Shared library Multi-Arch: same Homepage: http://www.openprinting.org/ Description-md5: 8224b9ef51388c11e00f94a6367092f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfontenc-dev Priority: optional Section: x11 Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libfontenc Version: 1:1.1.2-1 Depends: libfontenc1 (= 1:1.1.2-1), zlib1g-dev Filename: pool/main/libf/libfontenc/libfontenc-dev_1.1.2-1_i386.deb Size: 15118 MD5sum: 1d5ef2518f80bb4e21f47cd0d26376f9 SHA1: 1d2b9e87d074b17e4d2d3949144350ac0f29735f SHA256: 2370db52716db244c4b1b629bd16bfee11dd69965e3af744c55f0190a4de1a2a Description: X11 font encoding library (development headers) Multi-Arch: same Description-md5: 37a55bd1ad8c6306a02543c3bd4d426c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontenc1 Priority: optional Section: x11 Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libfontenc Version: 1:1.1.2-1 Depends: libc6 (>= 2.7), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/libf/libfontenc/libfontenc1_1.1.2-1_i386.deb Size: 15208 MD5sum: b7ee4142e588fa212172df411ff55a86 SHA1: 38b027c92009669c49d44a52875745d451f3db0c SHA256: acd56c39bf3de302ca6a404e92d4da1e009c217864d8968ee3ef0949d8110000 Description: X11 font encoding library Multi-Arch: same Description-md5: 7b4f6c27df2fd0d1bc06021e797d04f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfontenc1-dbg Priority: extra Section: x11 Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libfontenc Version: 1:1.1.2-1 Depends: libfontenc1 (= 1:1.1.2-1) Pre-Depends: multiarch-support Filename: pool/main/libf/libfontenc/libfontenc1-dbg_1.1.2-1_i386.deb Size: 19602 MD5sum: fa0d9160e6cd57a5274267498fbef9d4 SHA1: be71f7dc7cf3965b4abdfc47f8d65f290c4b3660 SHA256: ba3f9076475c154009edd4fa6672b2f030c1be55aece654ae4b0536d5a013dd2 Description: X11 font encoding library (debug package) Multi-Arch: same Description-md5: 3ac1b00bf4fd929c54e9c45f1bb650f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontforge-dev Priority: optional Section: libdevel Installed-Size: 520 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: i386 Source: fontforge Version: 20120731.b-5 Depends: libfontforge1 (= 20120731.b-5), libgdraw4 (= 20120731.b-5) Filename: pool/main/f/fontforge/libfontforge-dev_20120731.b-5_i386.deb Size: 103196 MD5sum: f4c749bdf562c8f9bff000be82d0d0ed SHA1: 737c379ad8374f3a37f95f4b06dacb8bf25f58f7 SHA256: e6b5f1b7e2988c286eb43ed0e3d18331a2fadb4c34e811368355adbe22a3b775 Description: font editor - runtime library (development files) Homepage: http://fontforge.sourceforge.net/ Description-md5: 9a5c812671af7c58235e812a87f2d571 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfontforge1 Priority: optional Section: libs Installed-Size: 6358 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: i386 Source: fontforge Version: 20120731.b-5 Replaces: fontforge (<= 0.0.20090224), libfontforge-dev (<< 0.0.20120101+git-3) Depends: libc6 (>= 2.15), libfreetype6 (>= 2.2.1), libgif4 (>= 4.1.4), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libpython2.7 (>= 2.7), libspiro0 (>= 20071029), libtiff5 (>= 4.0.3), libuninameslist0, libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Breaks: fontforge (<= 0.0.20090224), libfontforge-dev (<< 0.0.20120101+git-3) Filename: pool/main/f/fontforge/libfontforge1_20120731.b-5_i386.deb Size: 1725328 MD5sum: 5c0c6896abdd31da06d0b0451f9e7774 SHA1: 8eb5d55a3a198821f8f35cbd78d0fac41bcba16e SHA256: 3524a904a649e9130a8673c8700f959eb99c93d1a9aeb2483ae1c8edfd13a6de Description: font editor - runtime library Homepage: http://fontforge.sourceforge.net/ Description-md5: 4458ad30f3dfc98340b1d416ab2c8d24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: libfop-java Priority: optional Section: java Installed-Size: 10057 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: fop Version: 1:1.1.dfsg-2ubuntu1 Replaces: fop (<< 1:1.0.dfsg2-6) Depends: libxerces2-java, libxalan2-java, libbsf-java, libavalon-framework-java (>= 4.1.2-2), libbatik-java (>= 1.7), libcommons-io-java, libcommons-logging-java, libxt6, libxtst6, libxmlgraphics-commons-java (>= 1.4), java-wrappers (>= 0.1.15), libxml-commons-external-java Recommends: libsaxon-java Breaks: fop (<< 1:1.0.dfsg2-6) Filename: pool/main/f/fop/libfop-java_1.1.dfsg-2ubuntu1_all.deb Size: 9586588 MD5sum: f9e716c6ce74f4e6be53a80cac274267 SHA1: 48f57d89831124382fa65244bb987d9e676d27e8 SHA256: 694fc1ae7a2da4bb156d18c2cf466252f072e41612a6d6e280f6675482052aa0 Description: XML formatter driven by XSL Formatting Objects (XSL-FO.) Homepage: http://xmlgraphics.apache.org/fop/ Description-md5: 59558b1c113913229b219b4a66fb002a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libframe-dev Priority: optional Section: libdevel Installed-Size: 88 Maintainer: Ubuntu Developers Architecture: i386 Source: frame Version: 2.5.0daily13.06.05-0ubuntu1 Replaces: libutouch-frame-dev Depends: libframe6 (= 2.5.0daily13.06.05-0ubuntu1) Conflicts: libutouch-frame-dev Filename: pool/main/f/frame/libframe-dev_2.5.0daily13.06.05-0ubuntu1_i386.deb Size: 10034 MD5sum: 5d004abae9b7adef64e9cac0532f1cca SHA1: dd9bc1a8c996a2454e9fdc81d8ab0f4e1950c0ca SHA256: c910035c4a394fae7d7a1b59f20ee3503370fa87e1a4fd7784c48b656c55695c Description: Touch Frame Library - dev files Homepage: https://launchpad.net/frame Description-md5: 6c95e02fcb8bce93e6276c04dbe79524 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libframe6 Priority: optional Section: libs Installed-Size: 153 Maintainer: Ubuntu Developers Architecture: i386 Source: frame Version: 2.5.0daily13.06.05-0ubuntu1 Depends: libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libx11-6, libxi6 (>= 2:1.5.99.2) Pre-Depends: multiarch-support Filename: pool/main/f/frame/libframe6_2.5.0daily13.06.05-0ubuntu1_i386.deb Size: 46254 MD5sum: 4dace19cd0ed9f6ceb3df5675fc59536 SHA1: 96708e9101dfa04e2f8c31d1dcf7bbe36aae7c5d SHA256: ecd4e4adc5df10fbcd2adb635a211bb4fa3eeb11f2b746856f620f0710325050 Description: Touch Frame Library Multi-Arch: same Homepage: https://launchpad.net/frame Description-md5: e7b15dda3833200cc3273f72cc4aef44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfreeipmi-dev Priority: extra Section: libdevel Installed-Size: 5877 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: i386 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libfreeipmi12 (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libfreeipmi-dev_1.1.5-3ubuntu3_i386.deb Size: 774504 MD5sum: 4f0712f896bd39283d5955419ff6fae6 SHA1: 36f0d9e797b9a90948a58fef48f29d0d7a144a42 SHA256: c1a566526f028248221e3ac8693d9112068530beb91f2771bd0519d07f1b638a Description: GNU IPMI - development package Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: 4bd7c7d7ecc7c9a2ade84bbae733437d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfreeipmi12 Priority: extra Section: libs Installed-Size: 3827 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: i386 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libc6 (>= 2.15), libgcrypt11 (>= 1.5.1), freeipmi-common (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libfreeipmi12_1.1.5-3ubuntu3_i386.deb Size: 642056 MD5sum: ff5bd001379b471131e57df9667e98e3 SHA1: bcc5e86ada3d0ac7e02d667948fce10ebd0e775d SHA256: 24a69d1a08469db39085a69ec4f1b48d6823576dc06a58d535bb69444c238747 Description: GNU IPMI - libraries Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: 551e6ddaf5141d9148d078f03ee68154 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfreeradius-dev Priority: optional Section: libdevel Installed-Size: 408 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: i386 Source: freeradius Version: 2.1.12+dfsg-1.2ubuntu8 Depends: libfreeradius2 (= 2.1.12+dfsg-1.2ubuntu8) Filename: pool/main/f/freeradius/libfreeradius-dev_2.1.12+dfsg-1.2ubuntu8_i386.deb Size: 98854 MD5sum: a111034aee6437c98252815e4068f4af SHA1: d6cc37f60fcfa1b1f218a9ca212462576e84e8af SHA256: c3288a061a2cb94d1c6abb3c767511b7591ea9bd71c5e08e93d321c816ef2e4d Description: FreeRADIUS shared library development files Homepage: http://www.freeradius.org/ Description-md5: 3c0c3d13bc398f9c14b6ccb3e25e2af3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfreeradius2 Priority: optional Section: net Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: Josip Rodin Architecture: i386 Source: freeradius Version: 2.1.12+dfsg-1.2ubuntu8 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Filename: pool/main/f/freeradius/libfreeradius2_2.1.12+dfsg-1.2ubuntu8_i386.deb Size: 71670 MD5sum: 779b6d09883bb1dac84478615014b97d SHA1: 411752b684180ada95eb8e43ab643a90a8c6216c SHA256: 95346936935170dbfb933203a1d2dac816fc9cbbdbb65157dd1fee04f150d364 Description: FreeRADIUS shared library Homepage: http://www.freeradius.org/ Description-md5: 919b31a593d09cd5d4a89177002536aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfreerdp-dev Priority: optional Section: libdevel Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Mike Gabriel Architecture: i386 Source: freerdp Version: 1.0.2-2ubuntu1 Depends: libfreerdp1 (= 1.0.2-2ubuntu1), libfreerdp-plugins-standard (= 1.0.2-2ubuntu1) Filename: pool/main/f/freerdp/libfreerdp-dev_1.0.2-2ubuntu1_i386.deb Size: 52864 MD5sum: 77a8ef749e31d3c766250fb63001d5a5 SHA1: ecde8f73ffb8ccc45eac9546acfe6a0b786f1033 SHA256: c8784fcfc6b3cc6e5ce8563797fbe3b9d80beb6c24f272a5b401b8062709af0b Description: RDP client for Windows Terminal Services (development) Homepage: http://www.freerdp.com/ Description-md5: a097a02e403e05e19dd894fd2672c390 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfreerdp-plugins-standard Priority: optional Section: x11 Installed-Size: 293 Maintainer: Ubuntu Developers Original-Maintainer: Mike Gabriel Architecture: i386 Source: freerdp Version: 1.0.2-2ubuntu1 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.15), libcups2 (>= 1.4.0), libfreerdp1 (>= 1.0~beta5), libpulse0 (>= 1:0.99.1) Pre-Depends: multiarch-support Filename: pool/main/f/freerdp/libfreerdp-plugins-standard_1.0.2-2ubuntu1_i386.deb Size: 83234 MD5sum: 877d0813fe783afe04a14bf781b2528a SHA1: d858df61e348aa7e4006fe8773bc4ee003b92d5e SHA256: 2b2d218dac9bd46702932cc143e5448711f61668026a8763a0cdad3da6d65236 Description: RDP client for Windows Terminal Services (plugins) Multi-Arch: same Homepage: http://www.freerdp.com/ Description-md5: 885816f7707483db8486029572844035 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop Package: libfreerdp1 Priority: optional Section: libs Installed-Size: 674 Maintainer: Ubuntu Developers Original-Maintainer: Mike Gabriel Architecture: i386 Source: freerdp Version: 1.0.2-2ubuntu1 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0), libx11-6, libxkbfile1 Pre-Depends: multiarch-support Suggests: freerdp-x11 Filename: pool/main/f/freerdp/libfreerdp1_1.0.2-2ubuntu1_i386.deb Size: 248948 MD5sum: b8fea62a8fd7a2488b2433fc2c19f568 SHA1: 6061db7728e1c82e42227e8f30d48c6c50d4ff6c SHA256: 1d3f4696713472547e0142caa8116a06d764ee975fc39ecc998d1eb21096954f Description: RDP client for Windows Terminal Services (library) Multi-Arch: same Homepage: http://www.freerdp.com/ Description-md5: 939d0226ec88d437872c299a62844c96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop Package: libfreetype6 Priority: optional Section: libs Installed-Size: 877 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: freetype Version: 2.5.2-1ubuntu2 Depends: libc6 (>= 2.11), libpng12-0 (>= 1.2.13-4), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/f/freetype/libfreetype6_2.5.2-1ubuntu2_i386.deb Size: 300042 MD5sum: 834fa897acbf735d95156e8f8a50241b SHA1: 3a94caa731527b4770043d0fe2a776ebfe826a36 SHA256: fb11f390088b7e6a0f104c30cc436439c37219b25b66fa897a5867fbe2e2d60e Description: FreeType 2 font engine, shared library files Multi-Arch: same Homepage: http://www.freetype.org Description-md5: 74d3ddb20419b75f6ffeda0bea0b0ade Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfreetype6-dev Priority: optional Section: libdevel Installed-Size: 3363 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: freetype Version: 2.5.2-1ubuntu2 Depends: libfreetype6 (= 2.5.2-1ubuntu2), libc6-dev | libc-dev, zlib1g-dev | libz-dev, libpng-dev Filename: pool/main/f/freetype/libfreetype6-dev_2.5.2-1ubuntu2_i386.deb Size: 606654 MD5sum: bf4b660ccff6c368f3c836aff8473086 SHA1: ad87e419fe89738f22932fd86f7f2dcd095d3197 SHA256: d74f7a69ec11fc01ab1697dd18e19652229f46a3bb2dff216cc62ca8d7921b8f Description: FreeType 2 font engine, development files Homepage: http://www.freetype.org Description-md5: 172d8a56d9acb662016bcd69f56b4640 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libfribidi-bin Priority: optional Section: utils Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: i386 Source: fribidi Version: 0.19.6-1 Replaces: libfribidi0 (<< 0.19.2-3) Depends: libc6 (>= 2.4), libfribidi0 (>= 0.19.2) Breaks: libfribidi0 (<< 0.19.2-3) Filename: pool/main/f/fribidi/libfribidi-bin_0.19.6-1_i386.deb Size: 8364 MD5sum: 535caf00607a401194bbdaf7199ab4aa SHA1: 9465b432b996109ddc158f686dca54ce5a7759c6 SHA256: e6b3d38548fc5e7a7bfc3a299d0101443aef3816351bed25eb1d19047010c2c5 Description: Free Implementation of the Unicode BiDi algorithm (utility) Homepage: http://www.fribidi.org/ Description-md5: 5bd2ed1fd36acd62b51191a5c088558f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfribidi-dev Priority: optional Section: libdevel Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: i386 Source: fribidi Version: 0.19.6-1 Depends: libfribidi0 (= 0.19.6-1) Filename: pool/main/f/fribidi/libfribidi-dev_0.19.6-1_i386.deb Size: 42614 MD5sum: aed50ad9e337343753bcb1c265d7b472 SHA1: ed77eb4e1c03a80fa3563723afc41668628848eb SHA256: 76e6e85800c03d2c99fff49d05bdd2205d86976a2a4eeb661e65f93413457c73 Description: Development files for FreeBidi library Homepage: http://www.fribidi.org/ Description-md5: 4dddf6b79d76d215e47387fa37ab5e90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfribidi0 Priority: important Section: libs Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: i386 Source: fribidi Version: 0.19.6-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/f/fribidi/libfribidi0_0.19.6-1_i386.deb Size: 25426 MD5sum: f1043670a316da2439361de12a8a1ed6 SHA1: 4e19c5be5538d4b05582f6244983da47c7a05343 SHA256: a7c2a8753d0c7663c563da3d9d768b70fa92f0df414747f0a2aad438176182d6 Description: Free Implementation of the Unicode BiDi algorithm Multi-Arch: same Homepage: http://www.fribidi.org/ Description-md5: 61cf20beb4c9c8cddf96f40bdc83fbb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libfriends-dev Priority: extra Section: libdevel Installed-Size: 165 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: gir1.2-friends-0.1, libfriends0 (= 0.1.2+14.04.20131108.1-0ubuntu1) Filename: pool/main/libf/libfriends/libfriends-dev_0.1.2+14.04.20131108.1-0ubuntu1_i386.deb Size: 24556 MD5sum: e1db3cad5bc93d01978ae3f10048f38b SHA1: bfb3747041597df1026e2c77a16c67c82a5f0f4e SHA256: e176eb07bbc9ab578d3955ab0b5dc5771586126d28afa3d2a79526c7605a9c43 Description: Development files for accessing social networks Multi-Arch: same Homepage: https://launchpad.net/friends Description-md5: 603d4ff9220dc0ba3c774e06f4d89222 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfriends-gtk-dev Priority: extra Section: libdevel Installed-Size: 140 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: gir1.2-friends-gtk-0.1 (= 0.1.2+14.04.20131108.1-0ubuntu1), libfriends-dev (= 0.1.2+14.04.20131108.1-0ubuntu1), libfriends-gtk0 (= 0.1.2+14.04.20131108.1-0ubuntu1) Filename: pool/main/libf/libfriends/libfriends-gtk-dev_0.1.2+14.04.20131108.1-0ubuntu1_i386.deb Size: 24662 MD5sum: 1d557ed5cd0d60bc46736752cb0d55aa SHA1: c14774028e621b85cb5a0405c0faaac2aa798dd9 SHA256: 2de8328252b31f468e9151c30895f01f367b743842f27a1c5246fcad91d57272 Description: Development files for Friends GTK widgets Multi-Arch: same Homepage: https://launchpad.net/friends Description-md5: d53c4abf562b92026cbbe0c522b736ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfriends-gtk0 Priority: extra Section: libs Installed-Size: 86 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: libaccounts-glib0 (>= 1.0), libc6 (>= 2.3.6-6~), libcairo2 (>= 1.2.4), libfriends0 (>= 0.1.0), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.18.0), libgtk-3-0 (>= 3.0.0), libgtkspell3-3-0 Pre-Depends: multiarch-support Filename: pool/main/libf/libfriends/libfriends-gtk0_0.1.2+14.04.20131108.1-0ubuntu1_i386.deb Size: 20714 MD5sum: d2a054b442e14d94b0503d4274694139 SHA1: bb463fd26e4a657e90366becdaee0bd906b0d78e SHA256: 857dd9876b7ee8dbbce6d0d0c2130916cc24714487ee53ba2704db85045dc2be Description: Friends GTK Widgets Multi-Arch: same Homepage: https://launchpad.net/friends Description-md5: 94dd030906b261873e6ce818c3c59cfa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfriends0 Priority: extra Section: libs Installed-Size: 94 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libfriends Version: 0.1.2+14.04.20131108.1-0ubuntu1 Depends: friends-dispatcher, libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libjson-glib-1.0-0 (>= 0.12.0) Pre-Depends: multiarch-support Filename: pool/main/libf/libfriends/libfriends0_0.1.2+14.04.20131108.1-0ubuntu1_i386.deb Size: 22086 MD5sum: da3931d6add8839bc997928c8e4f1699 SHA1: 237cb88734be8101b8149b6a277361e7853eab74 SHA256: 885a2691111a4a425c977ea1c6b5e67c8225985b473c833d84dbc09dba6b1a68 Description: Provides an API for accessing social networks Multi-Arch: same Homepage: https://launchpad.net/friends Description-md5: 93265cdabbaa2758bae4a6173ecf28fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libfs-dev Priority: optional Section: libdevel Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libfs Version: 2:1.0.5-1 Depends: libfs6 (= 2:1.0.5-1), x11proto-core-dev, x11proto-fonts-dev Filename: pool/main/libf/libfs/libfs-dev_1.0.5-1_i386.deb Size: 31218 MD5sum: 215cc123b3c10bde0e78da22e7afadf1 SHA1: 11e6d669830122e1bc7868eabdd56d2c4d730c78 SHA256: 1b4f3f07dbd5d0b6f7017606293a259959543991311f9ca3e8088f1a98ef6252 Description: X11 Font Services library (development headers) Multi-Arch: same Description-md5: 8afa50cb2254f0d5b40ef30959e297da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfs6 Priority: optional Section: libs Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libfs Version: 2:1.0.5-1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/libf/libfs/libfs6_1.0.5-1_i386.deb Size: 25450 MD5sum: 48cebfefdad87793db93be6343300136 SHA1: 8a89d523de6698735a7ec3feec3163f5f6bc05b9 SHA256: e80e64505f1d00172e83b37cf7d26bf4c03bb5b719d543728413234cf47592a6 Description: X11 Font Services library Multi-Arch: same Description-md5: bc296d2b3e22926a5940397b64e85665 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libfs6-dbg Priority: extra Section: libdevel Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libfs Version: 2:1.0.5-1 Depends: libfs6 (= 2:1.0.5-1) Pre-Depends: multiarch-support Filename: pool/main/libf/libfs/libfs6-dbg_1.0.5-1_i386.deb Size: 65888 MD5sum: 08b89929deee323f057e911d13524510 SHA1: 4608fbcfcdeacf2b1f5689ad4bd785e630013563 SHA256: 974acfd53e0d940a03059faf2274f532e0cdb5cc1a092f606abdffd134aa7630 Description: X11 Font Services library (debug package) Multi-Arch: same Description-md5: 4adf63290da4ca2067cfdbd7d8c74262 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libftdi-dev Priority: optional Section: devel Installed-Size: 1809 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libftdi Version: 0.20-1ubuntu1 Depends: libftdi1 (= 0.20-1ubuntu1), libusb-dev (>= 0.1.11) Filename: pool/main/libf/libftdi/libftdi-dev_0.20-1ubuntu1_i386.deb Size: 122970 MD5sum: 20245f28d85a0551fe984d7e6b95272a SHA1: 0dc6052a6fe21eae5a12197f54da87177ab97aae SHA256: ee526762994a3a10bd4493bfc776eef962d60718ef5252d01c5cbe7d354972c1 Description: Development files for libftdi Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: 5d69cf46af3e5eb6b47a8652070827e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libftdi1 Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libftdi Version: 0.20-1ubuntu1 Depends: libc6 (>= 2.15), libusb-0.1-4 (>= 2:0.1.12) Pre-Depends: multiarch-support Filename: pool/main/libf/libftdi/libftdi1_0.20-1ubuntu1_i386.deb Size: 15090 MD5sum: 70ac74a8cc2187ff1664448610f55a54 SHA1: e5f2f06d028ddc56b5e4af27b09f850adeec7ce4 SHA256: 85c61f3e62c239d762861febadc82675a79ac7975716284d42e34a62880a5dcd Description: Library to control and program the FTDI USB controller Multi-Arch: same Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: e2f74d64618af8aead3354b7bdfc1891 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libftdi1-dbg Priority: extra Section: debug Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libftdi Version: 0.20-1ubuntu1 Depends: libftdi1 (= 0.20-1ubuntu1) Filename: pool/main/libf/libftdi/libftdi1-dbg_0.20-1ubuntu1_i386.deb Size: 18210 MD5sum: a644909556981cca1992298fc0528969 SHA1: 5f2e3a4fe7710923460b1eb190e9e3e5e8d886c5 SHA256: f1afa5ec0ba7386acaddfef579bff0969c1d0acf7f90f521697bcc17be0f35f6 Description: Debugging symbols for libftdi1 Multi-Arch: same Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: 649a167bf6227c1dc1d870e1b30c6f7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libftdipp-dev Priority: optional Section: libdevel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libftdi Version: 0.20-1ubuntu1 Depends: libftdipp1 (= 0.20-1ubuntu1), libftdi-dev (= 0.20-1ubuntu1), libboost-dev (>= 1.33) Filename: pool/main/libf/libftdi/libftdipp-dev_0.20-1ubuntu1_i386.deb Size: 11214 MD5sum: 898905e5b2f256edb84d964a116af3a6 SHA1: 9d624f47c7480833a751472afe35913110c92c3d SHA256: d6e0cc4d1107d374b6ab942db6c7875f791d131849be8a1e200b3054548c0022 Description: Development files for libftdipp Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: 9256afecac7fb32622c95945655af9e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libftdipp1 Priority: optional Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libftdi Version: 0.20-1ubuntu1 Depends: libc6 (>= 2.4), libftdi1 (>= 0.20), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libusb-0.1-4 (>= 2:0.1.12) Pre-Depends: multiarch-support Filename: pool/main/libf/libftdi/libftdipp1_0.20-1ubuntu1_i386.deb Size: 11356 MD5sum: a124368a870033b7db4e5431ed3a947d SHA1: 73fd0bb55453e67a9102f0466cd3781fc7ef14df SHA256: 600141300de9f1800bcdf205146d6abd18bbb71840892139038d88c32f8596d8 Description: Library to control and program the FTDI USB controller Multi-Arch: same Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: 2a0c22c2f360e2d63d883500e9e232bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libftdipp1-dbg Priority: extra Section: debug Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libftdi Version: 0.20-1ubuntu1 Depends: libftdipp1 (= 0.20-1ubuntu1) Filename: pool/main/libf/libftdi/libftdipp1-dbg_0.20-1ubuntu1_i386.deb Size: 41996 MD5sum: 41acb93cf535617c6b33500885f172b8 SHA1: d944420d08d167c03086659b6fa1b7424f273e42 SHA256: a8e233837f2d3d601e333fa43d02ca2105550129eb102b4837d68f25fe12604b Description: Debugging symbols for libftdipp1 Multi-Arch: same Homepage: http://www.intra2net.com/en/developer/libftdi/ Description-md5: 969d3e4aa92b08f97263e951ddb059e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfuse-dev Priority: optional Section: libdevel Installed-Size: 517 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Source: fuse Version: 2.9.2-4ubuntu4 Depends: libfuse2 (= 2.9.2-4ubuntu4), libselinux-dev Suggests: fuse Filename: pool/main/f/fuse/libfuse-dev_2.9.2-4ubuntu4_i386.deb Size: 106946 MD5sum: e6565d11fa02f25fc34a4b2f2bc9d32d SHA1: 3d475202f12f124f38ba82d39cf660778383a789 SHA256: b86ce12eeac3ef41ca281cbc6235850ecdacc508fc518a8844b41c8bd283267d Description: Filesystem in Userspace (development) Homepage: http://fuse.sourceforge.net/ Description-md5: da11b1a71c864509638e23fbce6723a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libfuse2 Priority: standard Section: libs Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Source: fuse Version: 2.9.2-4ubuntu4 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Suggests: fuse Conflicts: fuse (<< 2.9.2-4ubuntu4) Filename: pool/main/f/fuse/libfuse2_2.9.2-4ubuntu4_i386.deb Size: 90714 MD5sum: ee3f74aee8d437775010bd87cf50fbb7 SHA1: 1ddb285d5c9f50658d2326e713afbe5c61634218 SHA256: 8e5954c14399adfcee5dbdc171c916471168269738814e06e06d52060105ccce Description: Filesystem in Userspace (library) Multi-Arch: same Homepage: http://fuse.sourceforge.net/ Description-md5: 2838d8f82765d1fc4d4e07819a7b8d25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libgail-3-0 Priority: optional Section: libs Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libatk1.0-0 (>= 2.7.5), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.5), libgtk-3-0 (= 3.10.8-0ubuntu1), libpango-1.0-0 (>= 1.32.4), at-spi2-core Pre-Depends: multiarch-support Filename: pool/main/g/gtk+3.0/libgail-3-0_3.10.8-0ubuntu1_i386.deb Size: 20014 MD5sum: ccaa4c1298550faf74ac1d9ce223f28e SHA1: de8b6a70a7408e1db64d2a2f0274c1ec5f1d84a1 SHA256: eb7558ec3d76f51fdf0b19a952c2e9be9a985b3960ad804ea4a488354c98b46d Description: GNOME Accessibility Implementation Library -- shared libraries Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: ab3b6da8ff97ae53ae0793ae62e8ce35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgail-3-0-dbg Priority: extra Section: debug Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libgail-3-0 (= 3.10.8-0ubuntu1) Recommends: libgtk-3-0-dbg Filename: pool/main/g/gtk+3.0/libgail-3-0-dbg_3.10.8-0ubuntu1_i386.deb Size: 31608 MD5sum: a122e94f04ce715f0caa54880143f25c SHA1: 60eeed7c6fc4abf0a079788e170eccca5930e984 SHA256: e338744ac81e4f240cb6b54d683e8441eb437814dea86f2190d3ecd47069ca96 Description: Gail libraries and debugging symbols Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 7572e37e6047b9331d4e75a86129227b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail-3-dev Priority: optional Section: libdevel Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libgail-3-0 (= 3.10.8-0ubuntu1), libgtk-3-dev (= 3.10.8-0ubuntu1), pkg-config (>= 0.26-1), libatk1.0-dev (>= 2.2.0) Suggests: libgail-3-doc Filename: pool/main/g/gtk+3.0/libgail-3-dev_3.10.8-0ubuntu1_i386.deb Size: 12448 MD5sum: 0144517a43621046547c8050f51a886f SHA1: a863b572967da80d06f965d7c44e7bf81a815e19 SHA256: 2bf672dec3318d4c146fbc7f33bb9ce0fd94b9e15257cff2e2087320b164d35a Description: GNOME Accessibility Implementation Library -- development files Homepage: http://www.gtk.org/ Description-md5: 2af7ddcc4fb4dffeaea80c02eeee7d6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail-3-doc Priority: optional Section: doc Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Suggests: devhelp Filename: pool/main/g/gtk+3.0/libgail-3-doc_3.10.8-0ubuntu1_all.deb Size: 23378 MD5sum: 81ac125136aa7c50985c4ad786a46a1a SHA1: 6a941b8ad6bfac9f650fa0dc42119d810fd0bbd4 SHA256: dff96749bc3d52e52af2fa9a379177d1165c554da447df9f629e720b9d378c21 Description: documentation files of the Gail library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 82b0cc78ae040a44793411b60fb12902 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail-common Priority: optional Section: libs Installed-Size: 932 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libatk1.0-0 (>= 1.32.0), libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.28.3), libx11-6, libgail18 (= 2.24.23-0ubuntu1) Breaks: libgnome2-0 (<< 2.32.1-2) Filename: pool/main/g/gtk+2.0/libgail-common_2.24.23-0ubuntu1_i386.deb Size: 111566 MD5sum: bf6403aeb04bef623c363bf073cad3b2 SHA1: c1a29d2b5f7faf056a18273ef093f687a17c0dfc SHA256: f98ed3d6a8053a78400d62b13c87b4b8c06dbce4f4a9bfe5a4de673c3cadc0a9 Description: GNOME Accessibility Implementation Library -- common modules Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 1e096c69a430c00ddb1188437065bc5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgail-dbg Priority: extra Section: libdevel Installed-Size: 2155 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libgail18 (= 2.24.23-0ubuntu1) Recommends: libgtk2.0-0-dbg Filename: pool/main/g/gtk+2.0/libgail-dbg_2.24.23-0ubuntu1_i386.deb Size: 438634 MD5sum: e3ef14d88ac83fe91339f7e4000df0a3 SHA1: a62713b19486fad66bd06d3edff34b3a5aadb4f8 SHA256: 7063a788e59a529019c8f519395f7c99357df3131e36757374cca27461d2a075 Description: Gail libraries and debugging symbols Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 7572e37e6047b9331d4e75a86129227b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail-dev Priority: optional Section: libdevel Installed-Size: 606 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libgail18 (= 2.24.23-0ubuntu1), libgail-common (= 2.24.23-0ubuntu1), libgtk2.0-dev (= 2.24.23-0ubuntu1), pkg-config (>= 0.26-1), libatk1.0-dev (>= 1.13.0) Suggests: libgail-doc Filename: pool/main/g/gtk+2.0/libgail-dev_2.24.23-0ubuntu1_i386.deb Size: 14090 MD5sum: acba534b9315f325f2060131083f2aef SHA1: b5b51cbc2dc3bf903ce31b9e5f312689fc5d9464 SHA256: 44596c25a9a12c8eccac35901a867417ad4de20b861be4cac0562d4f963c961a Description: GNOME Accessibility Implementation Library -- development files Homepage: http://www.gtk.org/ Description-md5: 2af7ddcc4fb4dffeaea80c02eeee7d6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail-doc Priority: optional Section: doc Installed-Size: 623 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Suggests: devhelp Filename: pool/main/g/gtk+2.0/libgail-doc_2.24.23-0ubuntu1_all.deb Size: 16992 MD5sum: e5d498acf9fc54c5342890fd8512b6f0 SHA1: 61c0a87b7b847fb7e9a9cd5dae1faa43143e4f08 SHA256: af5395678dce5a8153e81c6d21158033d03f196f64fedc49e3b2be0a7115f86f Description: documentation files of the Gail library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 82b0cc78ae040a44793411b60fb12902 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgail18 Priority: optional Section: libs Installed-Size: 580 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libatk1.0-0 (>= 1.32.0), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.27.3), libpango-1.0-0 (>= 1.28.3), libgtk2.0-0 (= 2.24.23-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/g/gtk+2.0/libgail18_2.24.23-0ubuntu1_i386.deb Size: 13904 MD5sum: 749ce1922a46b2de889122d9be9e8a94 SHA1: 18ecaf44ff9792c20a3f5e5e6a19bd5176486d23 SHA256: a8cb6ea35d0aba9b89c38dc6da927e8e727cf4bd64e5efdbc78c957641dd20f9 Description: GNOME Accessibility Implementation Library -- shared libraries Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: ab3b6da8ff97ae53ae0793ae62e8ce35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgbm-dev Priority: optional Section: libdevel Installed-Size: 103 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgbm1 (= 10.1.0-4ubuntu5), libudev-dev Filename: pool/main/m/mesa/libgbm-dev_10.1.0-4ubuntu5_i386.deb Size: 7110 MD5sum: d95e341d52490e86a248f643b24ff7dc SHA1: f7353cfe1f8bf41f84c6a5f9b058001a631f6bb9 SHA256: 9dc254531797e854f156f1dac92ced9902c736e56c50b05ddf34200093a4e62d Description: generic buffer management API -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 97d3ae24c3bec4dfba8e29c665cda9e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm-dev Filename: pool/main/x/xorg-lts-transitional/libgbm-dev-lts-quantal_5_i386.deb Size: 1538 MD5sum: 844457b0e201772ba0b14b223b69f329 SHA1: 229b93eaee880fa8583e22d8ee66e44a926dee96 SHA256: 406fe461701e8111a6245d552b52b7f1c25974a83dc3796f9404fcd66e69221d Description: Transitional package for libgbm-dev Multi-Arch: same Description-md5: 2d55bec335777ad7b05e83021832846e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm-dev Filename: pool/main/x/xorg-lts-transitional/libgbm-dev-lts-raring_5_i386.deb Size: 1538 MD5sum: 6c179a771e1cd3ad0fa24aabf489fcba SHA1: 1f7dc9c8fd0afd2c6586248a79f761a96e675fe9 SHA256: c18e66312ee4a60228a6d71d9d0c35dc9ab0186be576ac62291dd494361b71fa Description: Transitional package for libgbm-dev Multi-Arch: same Description-md5: 2d55bec335777ad7b05e83021832846e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm-dev Filename: pool/main/x/xorg-lts-transitional/libgbm-dev-lts-saucy_5_i386.deb Size: 1536 MD5sum: 415acd3ca50de8291c2786ed27c9abbf SHA1: ffbdef430988c28f2030f61b5466eb6165c38a82 SHA256: 48e4032342748a93f4ff89673701b7dc9b3ddb09b843aee844adac3b0118b76f Description: Transitional package for libgbm-dev Multi-Arch: same Description-md5: 2d55bec335777ad7b05e83021832846e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1 Priority: optional Section: libs Installed-Size: 136 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libc6 (>= 2.8), libdrm2 (>= 2.4.3), libgl1-mesa-dri, libwayland-client0 (>= 1.2.0), libwayland-server0 (>= 1.2.0), libxcb-dri2-0, libxcb1, libudev1 | libudev0 Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libgbm1_10.1.0-4ubuntu5_i386.deb Size: 18854 MD5sum: d98c25d37db1aaf3712b2d4bbc750027 SHA1: 5aae0c680aa831f818be213b8ade40cf91a1850b SHA256: 7d2007d13b7bd23e8226f24946066c763987225079cf8d3246e7d41abfdb1b28 Description: generic buffer management API -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 9c1f8de2c17715ff7ed9524db86be4dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgbm1-dbg Priority: extra Section: debug Installed-Size: 269 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgbm1 (= 10.1.0-4ubuntu5) Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libgbm1-dbg_10.1.0-4ubuntu5_i386.deb Size: 57530 MD5sum: 02313957d33f1c0990a2e651b9ff174c SHA1: 1c7d3fe99c68688bb71560fada423a5eddac5276 SHA256: e02c48700200316892d07e499da555bcdad0ee1033c0e50dc01dd76f5515fb65 Description: generic buffer management API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: ff539259b350b2362cba34825ad1a809 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1 Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-quantal_5_i386.deb Size: 1536 MD5sum: a09abdd2633c52ebd7be7e8d4feff938 SHA1: 5f30cea55fb4e892cd562957b34906d0ae373c6b SHA256: 071232f53c7d51e17c5910793e092fd445e7371bde8882d520aa409e231d9dda Description: Transitional package for libgbm1 Multi-Arch: same Description-md5: 9606d8798ea4957d3a621bbe7949753e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1-dbg Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-quantal-dbg_5_i386.deb Size: 1538 MD5sum: d70f8a0dde68a439de77011a5ad65147 SHA1: a91666a6303ca507b22cc83ea52fd4212c9a736d SHA256: ac54239c5a6d6cb5bb7e598b72aec7c307b530f9f60368b1af4c2dd090a8cb6f Description: Transitional package for libgbm1-dbg Multi-Arch: same Description-md5: 9919d79420c26d0a2251c550f97a00af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1 Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-raring_5_i386.deb Size: 1532 MD5sum: 3bb842a5114dd6b0cc9a5af21b1fbc20 SHA1: 7cdc50d7ecc3c42bee97bdc0086dd4f1fda4957e SHA256: ca0574eb6b6d223b11baeaf501104c6e2fffd4246e8334bd626bad302534351f Description: Transitional package for libgbm1 Multi-Arch: same Description-md5: 9606d8798ea4957d3a621bbe7949753e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1-dbg Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-raring-dbg_5_i386.deb Size: 1538 MD5sum: 78a3bf4a8b72aa7d8f999bc824470dcb SHA1: 9233109ce164d8d7f8e4633592fb7888eb31b672 SHA256: 9ab542b8af15d68227105d96d1a8ad5356482394df0b94ec4c71d70a3499bef8 Description: Transitional package for libgbm1-dbg Multi-Arch: same Description-md5: 9919d79420c26d0a2251c550f97a00af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1 Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-saucy_5_i386.deb Size: 1524 MD5sum: 7d1901a6f44e86ca2934ff1855d76357 SHA1: f8dbef8836fe832bfc301bd35c2f5ea52618f66f SHA256: b885e8adb5a4a468c20608673a50f784d934345169bcf758580de014321e24af Description: Transitional package for libgbm1 Multi-Arch: same Description-md5: 9606d8798ea4957d3a621bbe7949753e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgbm1-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgbm1-dbg Filename: pool/main/x/xorg-lts-transitional/libgbm1-lts-saucy-dbg_5_i386.deb Size: 1536 MD5sum: 0aeaf730a3c3000e71b4886939a4af6c SHA1: b892a6a3fe56a3262f402f9a7ab5f472cd830adc SHA256: 19068103ba35b2a699c4b19eee447b9655ed7f935cbcb098e75dc89bc55c446e Description: Transitional package for libgbm1-dbg Multi-Arch: same Description-md5: 9919d79420c26d0a2251c550f97a00af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgc-dev Priority: optional Section: devel Installed-Size: 680 Maintainer: Ubuntu Developers Original-Maintainer: Christoph Egger Architecture: i386 Source: libgc Version: 1:7.2d-5ubuntu2 Depends: libgc1c2 (= 1:7.2d-5ubuntu2), libc-dev Filename: pool/main/libg/libgc/libgc-dev_7.2d-5ubuntu2_i386.deb Size: 162960 MD5sum: 7159cb3e423fa16845f6a211a117ac65 SHA1: d769dedee3d1addf0bf50eade2b1a92f0ff4469b SHA256: b049a4de47d7dc7fd8dd44d70789064bb566d854dffb0007c8ecd07be996b92b Description: conservative garbage collector for C (development) Multi-Arch: same Homepage: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ Description-md5: 6024ab577069982922a45069ab44dff3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgc1c2 Priority: optional Section: libs Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Christoph Egger Architecture: i386 Source: libgc Version: 1:7.2d-5ubuntu2 Replaces: libgc1, libgc1c3 Depends: libc6 (>= 2.11) Pre-Depends: multiarch-support Conflicts: libgc1 Filename: pool/main/libg/libgc/libgc1c2_7.2d-5ubuntu2_i386.deb Size: 72114 MD5sum: 307427553256542b4ff5bc5edf4a1b92 SHA1: 1294c201c59b110f33c53aa5df99c71056565383 SHA256: 358cff7bfe17da79de68374b36295a36d2a03171527d93ee67f568705026b5d7 Description: conservative garbage collector for C and C++ Multi-Arch: same Homepage: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ Description-md5: fb0bc4e8a25a8d1d4508437085e3f5c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libgcc-4.7-dev Priority: optional Section: libdevel Installed-Size: 4640 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gcc-4.7 (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libgcc1 (>= 1:4.7.3-12ubuntu1), libgomp1 (>= 4.7.3-12ubuntu1), libitm1 (>= 4.7.3-12ubuntu1), libquadmath0 (>= 4.7.3-12ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.7/libgcc-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 1610558 MD5sum: 214c8d639b9ee7b3fe7cc89a89f2e975 SHA1: 8c8aaa4d38eda8a3e477a314157a3d4092d77e5c SHA256: 447c3d5c993896ac8cf8a653f6368f9ac6737377f6cb8df228f5c833e79455c9 Description: GCC support library (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc-4.8-dev Priority: optional Section: libdevel Installed-Size: 5127 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcc1 (>= 1:4.8.2-19ubuntu1), libgomp1 (>= 4.8.2-19ubuntu1), libitm1 (>= 4.8.2-19ubuntu1), libatomic1 (>= 4.8.2-19ubuntu1), libasan0 (>= 4.8.2-19ubuntu1), libquadmath0 (>= 4.8.2-19ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8/libgcc-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 1735674 MD5sum: d6cfe7da8ee0419424d8f94d188d17fa SHA1: 9b2896f4592b809940bcf56d60d31fcf7ef14c54 SHA256: c2c9084a49653a83cc4c3f0215df52799bfa9c6a9064842021dd66a58ada7680 Description: GCC support library (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgcc-4.8-dev-arm64-cross Priority: optional Section: libdevel Installed-Size: 1480 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libgcc1-arm64-cross (>= 1:4.8.2-13ubuntu1cross0.11), libgomp1-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libatomic1-arm64-cross (>= 4.8.2-13ubuntu1cross0.11) Recommends: libc6-dev-arm64-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-arm64-cross/libgcc-4.8-dev-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 131624 MD5sum: 6952002523304ce93d34ba79fecc18ad SHA1: 945d370f8eeab0147dd164b4e65cbf4725b6a73e SHA256: 40cad2a5affbca173f54d5139d3587c1fe43c426323efd135ee9028c6225c096 Description: GCC support library (development files) Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc-4.8-dev-armhf-cross Priority: optional Section: libdevel Installed-Size: 2669 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libgcc1-armhf-cross (>= 1:4.8.2-16ubuntu4cross0.11), libgomp1-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libatomic1-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libasan0-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) Recommends: libc6-dev-armhf-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-armhf-cross/libgcc-4.8-dev-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 211032 MD5sum: 09d74e8aa5a50405093bb638a14834ad SHA1: 0e4e98a23b6e7f0be79158d45845fb7683c0afb8 SHA256: feac8b5c80f978bbeba56b5ce97c933c960da944c58ef2f2a1247d7609cb4179 Description: GCC support library (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc-4.8-dev-powerpc-cross Priority: optional Section: libdevel Installed-Size: 1508 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libgcc1-powerpc-cross (>= 1:4.8.2-16ubuntu3cross0.11), libgomp1-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libatomic1-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libasan0-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11) Recommends: libc6-dev-powerpc-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-powerpc-cross/libgcc-4.8-dev-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 285876 MD5sum: d0965e86f963fcc2167eb26b025f28c7 SHA1: a82cfd7b1de2800f0152f88b0c4afb8ed1fec017 SHA256: 16d8699f8a4533414b892d33153180b3d789813b994432f1dba693443ec99c61 Description: GCC support library (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc-4.8-dev-ppc64el-cross Priority: optional Section: libdevel Installed-Size: 1689 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libgcc1-ppc64el-cross (>= 1:4.8.2-16ubuntu4cross0.4), libgomp1-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libitm1-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libatomic1-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4) Recommends: libc6-dev-ppc64el-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libgcc-4.8-dev-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 245584 MD5sum: 8d014e158ca2ad98d5af842a7ac2f24f SHA1: 7998290a9928220b65aae7660566f76b9d921ad7 SHA256: 83768eae683a7a5253050974ae7457c05412c7366e305d2d434fa66613873be5 Description: GCC support library (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 4ab7cb439b47e1d0796fbaf8447229ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc1 Priority: required Section: libs Installed-Size: 152 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libc6 (>= 2.2.4) Pre-Depends: multiarch-support Breaks: gcc-4.1, gcc-4.3 (<< 4.3.6-1), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2) Filename: pool/main/g/gccgo-4.9/libgcc1_4.9-20140406-0ubuntu1_i386.deb Size: 47848 MD5sum: c4010c3cc26d48c89760cb489364edc1 SHA1: c3489ae83243324056eef9b39a76416bc51ecd99 SHA256: addbdd46018dac987e25af99885522d23867dfd1a669f6af2525e2b9ef8d200f Description: GCC support library Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: bbd60d723e97d8e06c04228ee4c76f10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libgcc1-arm64-cross Priority: extra Section: devel Installed-Size: 111 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 1:4.8.2-13ubuntu1cross0.11 Provides: libgcc1-arm64-dcv1 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libc6-arm64-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-arm64-cross/libgcc1-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 29272 MD5sum: 14e365312b564150ed93a5c0a06731fc SHA1: ffd0bc18b9edc753e86fd63b5c042b66da651038 SHA256: 87c4a26e1d56dfcba3f3afc57dfd250b738110b53d01f1309dcdad33e02c2030 Description: GCC support library Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: cde62b14dfad8bdbb610bc5af8262ced Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc1-armhf-cross Priority: extra Section: devel Installed-Size: 138 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 1:4.8.2-16ubuntu4cross0.11 Provides: libgcc1-armhf-dcv1 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libgcc1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 36462 MD5sum: a96f1e852a83d4fa1c1f0606b70e324c SHA1: e2898fe9c2f54f0d73bad731cc3d3e7ea15b2098 SHA256: 4c7f372012d169b861265fbc523f168b3ff27e7f9e081c957da651459319e960 Description: GCC support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: ef0d6f8d0383298ffaea5e6c0dd3d90b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc1-dbg Priority: extra Section: debug Installed-Size: 384 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libgcc1 (= 1:4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/libgcc1-dbg_4.9-20140406-0ubuntu1_i386.deb Size: 83968 MD5sum: b98ac8934197d6dbf2d8024908c8840b SHA1: ed513d3a1a580e1e96e4ad75a72147db5ea9b686 SHA256: 55c100b9745867e86d13b73dfb133d481108c3f1af451b55478ee5a05726313a Description: GCC support library (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: d2281f8d5a2b7dae7c362df43affcb03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc1-powerpc-cross Priority: extra Section: devel Installed-Size: 126 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 1:4.8.2-16ubuntu3cross0.11 Provides: libgcc1-powerpc-dcv1 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/libgcc1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 34204 MD5sum: 1cedf49926b7ddf761ecfad8b6089648 SHA1: 8de3ce3b45216199cc5e26d2ba93dced757c9ec0 SHA256: 6bb69fdc1048db506c8d5bbe13dda8962ff00d2fb7b8528bda2edb68758b033d Description: GCC support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: e1bd35e39eccaed54d86a8950b109d57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcc1-ppc64el-cross Priority: extra Section: devel Installed-Size: 115 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 1:4.8.2-16ubuntu4cross0.4 Provides: libgcc1-ppc64el-dcv1 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6-ppc64el-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libgcc1-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 28126 MD5sum: 0147697ed46e85542eb405f383cf6c04 SHA1: 2c5371646774f95f16e7363c37e3d0d8feb917d5 SHA256: 9d5bbf621f66a81c7798ef5382be1a159b0ff313463529f536ea6d077aff7b3f Description: GCC support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: ec819759719b2cca6329501a97792102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcj-bc Priority: optional Section: java Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-defaults (1.124ubuntu6) Version: 4.8.2-1ubuntu6 Depends: libgcj-common (>= 1:4.8.2-1ubuntu6), libgcj14 (>= 4.8.2-5~) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-defaults/libgcj-bc_4.8.2-1ubuntu6_i386.deb Size: 1288 MD5sum: 76adf68d1578a9ba36f3842f55a5d8f6 SHA1: 423d2e712c09cdaaea80c591b61b14afdc1387de SHA256: e01b1d63489526ef00260c1fdd837ff38f6a83aacfd94bf7a37ef0529ec418a7 Description: Link time only library for use with gcj Multi-Arch: same Description-md5: 92531142394600eb3406f5fc89716c34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgcj-common Priority: optional Section: libs Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-defaults (1.124ubuntu6) Version: 1:4.8.2-1ubuntu6 Replaces: java-gcj-compat (<< 1.0.65-8), java-gcj-compat-dev (<< 1.0.80-2) Depends: python:any Conflicts: classpath (<= 0.04-4) Filename: pool/main/g/gcc-defaults/libgcj-common_4.8.2-1ubuntu6_all.deb Size: 136672 MD5sum: 0cd3bcde56b8cf0573c7e8d7d19a973e SHA1: 36a2585a02711dce081ce4f0ccf1e189f4e8d253 SHA256: 4dfdb194a36031d92f1255eebd8a576508fb700ee21e188facf67b682392e4d8 Description: Java runtime library (common files) Multi-Arch: foreign Description-md5: 2f28079fd19fff52fbee4f6fbfa23148 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgcj-doc Priority: optional Section: doc Installed-Size: 429781 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Provides: classpath-doc Depends: gcc-4.8-base (>= 4.8) Filename: pool/main/g/gcc-4.8/libgcj-doc_4.8.2-19ubuntu1_all.deb Size: 18747984 MD5sum: c5e461ae3a5df2168ac3ba956ddb7c25 SHA1: 06926e3dde775488f50cec8c0c9d0eecbdf487e6 SHA256: eaa03692ef92d414f6d79ac3699135b43f99d874221da51514538006f51f48e6 Description: libgcj API documentation and example programs Enhances: libgcj14-dev Homepage: http://gcc.gnu.org/ Description-md5: f5a770b1765898ba56a3f1f8c749ab2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcj14 Priority: optional Section: libs Installed-Size: 38729 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gcj-4.8-jre-headless (<< 4.8.2-5), gij-4.4 (<< 4.4.0-1) Depends: gcc-4.8-base (>= 4.8), libgcj-common (>= 1:4.1.1-21), libasound2 (>= 1.0.16), libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libgmp10, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: gcj-4.8-jre-lib (>= 4.8) Suggests: libgcj14-dbg (>= 4.8.2-19ubuntu1), libgcj14-awt (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libgcj14_4.8.2-19ubuntu1_i386.deb Size: 7885866 MD5sum: 757fdaa15c3e1f4712b69f893d96adf0 SHA1: 8edc21fb08f643e4003907487bf3fd94894c10ac SHA256: a8ba477a44b41aa6c2b5f2383d179c0086b643ec8b9e5ad34fb8249fcee01c23 Description: Java runtime library for use with gcj Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 7f6bc4eae7de535afdc86e015c966562 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgcj14-awt Priority: optional Section: libs Installed-Size: 269 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), libgcj14 (= 4.8.2-19ubuntu1), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libfreetype6 (>= 2.2.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.22.0), libpangoft2-1.0-0 (>= 1.14.0), libxrandr2 (>= 4.3), libxrender1, libxtst6 Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libgcj14-awt_4.8.2-19ubuntu1_i386.deb Size: 63338 MD5sum: ab0ae371ef55ca43522a1ad27400c668 SHA1: 1bde418b4fc9978d5636a2334e37de443e67b024 SHA256: 6d7e2e428ae3ac717a8676fb0e121d153f288f31081fe726934bdd3ecf725681 Description: AWT peer runtime libraries for use with gcj Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 62c9d0df7d6fb42f9efbc0d8df5ad545 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgcj14-dbg Priority: extra Section: debug Installed-Size: 87661 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcj14 (= 4.8.2-19ubuntu1) Pre-Depends: multiarch-support Recommends: binutils, libc6-dbg | libc-dbg Filename: pool/main/g/gcc-4.8/libgcj14-dbg_4.8.2-19ubuntu1_i386.deb Size: 15113142 MD5sum: ca1787bf137648782074fd5ddf351619 SHA1: 59650dbb8f460665d03e999ce1b88d5123e34739 SHA256: 82a54f4a7bcb89105a72ac71863fffb033811efdc460e60fbc48a99b9d8a478f Description: Debugging symbols for libraries provided in libgcj14-dev Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: f7fe8a6b64bcf70fe0281e03d761a5bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcj14-dev Priority: optional Section: libdevel Installed-Size: 6674 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcj14-awt (= 4.8.2-19ubuntu1), libgcj-bc, zlib1g-dev Suggests: libgcj-doc Filename: pool/main/g/gcc-4.8/libgcj14-dev_4.8.2-19ubuntu1_i386.deb Size: 596700 MD5sum: 29678af1cd6f393f465a718606e4ca43 SHA1: d90663125437422d39dee747c4ce044e78926fce SHA256: 94b440f461576acf666539c0410339ae94b99af0e6167a073e6d64dcf8d6c3f7 Description: Java development headers for use with gcj Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 7161f4f8afb8f0860b930120a5520479 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgck-1-0 Priority: standard Section: libs Installed-Size: 386 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gcr Version: 3.10.1-1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libp11-kit0 (>= 0.20.0) Pre-Depends: multiarch-support Breaks: gnome-keyring (<< 3.4), seahorse (<< 3.4) Filename: pool/main/g/gcr/libgck-1-0_3.10.1-1_i386.deb Size: 72994 MD5sum: 60c55f855db5bcb8f389d31a914ba77c SHA1: 590148e5b084dc5d685d55db3b1355aacc2ab36f SHA256: ecc5b8bb35208963fc42c42658576c4262e3e69b8c9754a957729d4f59102392 Description: Glib wrapper library for PKCS#11 - runtime Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 295051c0037e672e4d1c6a05313400f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgck-1-dev Priority: optional Section: libdevel Installed-Size: 678 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gcr Version: 3.10.1-1 Depends: gir1.2-gck-1 (= 3.10.1-1), libgck-1-0 (= 3.10.1-1), libglib2.0-dev (>= 2.32.0), libp11-kit-dev Suggests: libgck-1-doc Filename: pool/main/g/gcr/libgck-1-dev_3.10.1-1_i386.deb Size: 37148 MD5sum: cd36efe2e719b24144c7186de697f315 SHA1: 576082eef29ed5cbea7cd540d4c0daed716eb303 SHA256: 61219606b5e27cd815fb884101f921eb4428af5463541a1c552abe52f0e6cbba Description: GLib wrapper library for PKCS#11 - development Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: cfa95aba9f3b2a479b52494f03079fe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgck-1-doc Priority: optional Section: doc Installed-Size: 1135 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: gcr Version: 3.10.1-1 Replaces: libgck-dev (<< 3.2.2-1) Suggests: devhelp Breaks: libgck-dev (<< 3.2.2-1) Filename: pool/main/g/gcr/libgck-1-doc_3.10.1-1_all.deb Size: 56750 MD5sum: c98badeb2bb0f694a313097267cae38f SHA1: 10a9b3830e406cef7f1aec41a1ab6c950ea0f042 SHA256: 2a2148a987aab2c0dab33aae50bf55ec0b9029408cce40597c7fda6276cbf746 Description: GLib wrapper library for PKCS#11 - documentation Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 1eff4110e2151494884bd0cc3ad14eee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgconf-2-4 Priority: optional Section: libs Installed-Size: 568 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: gconf Version: 3.2.6-0ubuntu2 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.35.9), gconf2-common (= 3.2.6-0ubuntu2) Pre-Depends: multiarch-support Recommends: gconf-service Conflicts: libbonobo2-0 (<< 2.24) Breaks: gconf2 (<< 3.2.3-2), libgconf2-4 (<< 3.2.3-2) Filename: pool/main/g/gconf/libgconf-2-4_3.2.6-0ubuntu2_i386.deb Size: 77272 MD5sum: 6f8a44c7b8af2deba91ab04dbf29f200 SHA1: 3953d9fea5f62a09c13b04c866d7a16a8478ad6b SHA256: 017feb42b9de4320a954f8e4cfbf4ff9bedc3c1f97d00109247adc06be7627a3 Description: GNOME configuration database system (shared libraries) Multi-Arch: same Homepage: http://projects.gnome.org/gconf/ Description-md5: f0df76e5dd08f004e77a327343ed3f6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgconf2-4 Priority: optional Section: libs Installed-Size: 377 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: gconf Version: 3.2.6-0ubuntu2 Depends: libgconf-2-4 (= 3.2.6-0ubuntu2), gconf-service Breaks: gconf2 (<< 3.2.3-2) Filename: pool/main/g/gconf/libgconf2-4_3.2.6-0ubuntu2_i386.deb Size: 2046 MD5sum: 2c4e635e8b16f4b444628958b1e579b7 SHA1: 1dbf663566facfb544319e01617e2fae93e4c7f1 SHA256: 761fb258d955a010c6241eb0dfa001c810c30755c3252ddd304769e98e4e9961 Description: GNOME configuration database system (dummy package) Multi-Arch: same Homepage: http://projects.gnome.org/gconf/ Description-md5: 33fc155702d066b4526ff5b7c66e6992 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: libgconf2-dev Priority: optional Section: libdevel Installed-Size: 893 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: gconf Version: 3.2.6-0ubuntu2 Replaces: gir-repository-dev (<< 0.6.5-7) Depends: libgconf-2-4 (= 3.2.6-0ubuntu2), gir1.2-gconf-2.0 (= 3.2.6-0ubuntu2), libglib2.0-dev (>= 2.25.9), libdbus-1-dev (>= 1.0.0), gconf2 (= 3.2.6-0ubuntu2) Recommends: libgconf2-doc Filename: pool/main/g/gconf/libgconf2-dev_3.2.6-0ubuntu2_i386.deb Size: 88198 MD5sum: 4a39315c692443d81d9b40ca5b948f22 SHA1: 8c18e546a39a3216d3bfe050dd9e7ba71893065b SHA256: 4cff63478df2628959f7dfd6c1083666da2b511f1693a28d824b76595092b758 Description: GNOME configuration database system (development) Homepage: http://projects.gnome.org/gconf/ Description-md5: 5a2f2e9f08aa6128fd4ac6475d2776ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgconf2-doc Priority: optional Section: doc Installed-Size: 1187 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: gconf Version: 3.2.6-0ubuntu2 Conflicts: libgconf2-dev (<< 3.2.3-2) Filename: pool/main/g/gconf/libgconf2-doc_3.2.6-0ubuntu2_all.deb Size: 75298 MD5sum: 4360b6e746e66e0db71b69b1a7e477e6 SHA1: cb833f0720010b08b8984674a663c6c7a9f87a72 SHA256: 378293b39eee16116b2308e3a2de291ce9658c22ac22279d1376f1cfab58ecf6 Description: GNOME configuration database system (API reference) Multi-Arch: foreign Homepage: http://projects.gnome.org/gconf/ Description-md5: 32322fe8cd70986e49b9cbc726e7e6f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgconf2.0-cil Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: libgconf2.24-cil, libgnome2.0-cil (<< 2.16.0-6) Depends: cli-common (>= 0.5.1), libdbus-glib-1-2 (>= 0.100.2), libgconf-2-4 (>= 2.31.1), gconf-service, libglib2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1) Suggests: monodoc-gtk2.0-manual Conflicts: libgconf2.24-cil Filename: pool/main/g/gnome-sharp2/libgconf2.0-cil_2.24.2-3_all.deb Size: 13996 MD5sum: 44d6f2bc45ae0c019201a9ceb90f4663 SHA1: 4a2f8538b94803f3eacc424176b5b670d2a4c310 SHA256: 822266dd8fb27264448be5c95e7358969ccba1b960084ce578b6969995696611 Description: CLI binding for GConf 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 5e568e797e3ab7a66ad95372b118db09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libgconf2.0-cil-dev Priority: optional Section: libs Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: libgconf2.0-cil (<< 2.24.1-5), libgconf2.24-cil Depends: libgconf2.0-cil (= 2.24.2-3), mono-runtime (>= 2.10.1), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-xml4.0-cil (>= 1.0) Filename: pool/main/g/gnome-sharp2/libgconf2.0-cil-dev_2.24.2-3_all.deb Size: 6300 MD5sum: 7b98a86228975205556829fd6cb39679 SHA1: d6bf8340f4e413a05a658723063fca53964e627f SHA256: e8a4fccd1ebd36e96dcbc968a20a19dc9f27b066a52f525d24875707a20d2747 Description: CLI binding for GConf 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 36b4a0c50ef408145809459a9a3fcf1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcr-3-common Priority: standard Section: libs Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: gcr Version: 3.10.1-1 Replaces: libgcr-3-0 (<< 3.2.2-1) Breaks: libgcr-3-0 (<< 3.2.2-1) Filename: pool/main/g/gcr/libgcr-3-common_3.10.1-1_all.deb Size: 8482 MD5sum: 20339639563f808aa7030347e4c0d2d6 SHA1: fe221acfa1e7f8c2245cabc3ea7a750997ee8fe4 SHA256: 90ec63b7e9c2fe0706541c750b22733e40bf594246452cb4c2f1dcf19ff50fce Description: Library for Crypto UI related tasks - common files Multi-Arch: foreign Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 0cf2bf26103907f5de0b12c22c99bf53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgcr-3-dev Priority: optional Section: libdevel Installed-Size: 790 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gcr Version: 3.10.1-1 Replaces: libgcr-dev (<< 3.0.0-2~) Depends: gir1.2-gcr-3 (= 3.10.1-1), libgcr-base-3-1 (= 3.10.1-1), libgcr-ui-3-1 (= 3.10.1-1), libglib2.0-dev (>= 2.32.0), libgck-1-dev (= 3.10.1-1), libgtk-3-dev (>= 3.0.0), libtasn1-3-dev, libtasn1-3-bin, libp11-kit-dev Suggests: libgcr-3-doc Breaks: libgcr-dev (<< 3.0.0-2~) Filename: pool/main/g/gcr/libgcr-3-dev_3.10.1-1_i386.deb Size: 50832 MD5sum: f21ad7b646450b0154c102125187e701 SHA1: c01c195679caeb97e382654df55b99215c7aa050 SHA256: 60761921aefd2222724f367c35a63134bd26aed17aa9853eb8fc5e19002b3db5 Description: Library for Crypto UI related tasks - development Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 2c7f08f369b97bd861c14d57fe6e7323 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcr-3-doc Priority: optional Section: doc Installed-Size: 1169 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: gcr Version: 3.10.1-1 Replaces: libgcr-3-dev (<< 3.2.2-1) Suggests: devhelp Breaks: libgcr-3-dev (<< 3.2.2-1) Filename: pool/main/g/gcr/libgcr-3-doc_3.10.1-1_all.deb Size: 134058 MD5sum: 65865347e80a165416a2deeda93ab2ea SHA1: 72fd774f16121766a6d5bbfe91f2c98d2dbf163d SHA256: b1d92549b4d11d81db8e4aa5f3f6d9fb1bc72cddd406d0742c7e0932956f4428 Description: Library for Crypto UI related tasks - documentation Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: d42e997633a20f948abe39568f9aaca9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcr-base-3-1 Priority: standard Section: libs Installed-Size: 728 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gcr Version: 3.10.1-1 Replaces: libgcr-3-1 (<< 3.8.2-2) Depends: libc6 (>= 2.4), libgck-1-0 (>= 3.3.90), libgcrypt11 (>= 1.4.5), libglib2.0-0 (>= 2.37.3), libp11-kit0 (>= 0.20.0), libgcr-3-common Pre-Depends: multiarch-support Breaks: libgcr-3-1 (<< 3.8.2-2) Filename: pool/main/g/gcr/libgcr-base-3-1_3.10.1-1_i386.deb Size: 169662 MD5sum: 50fffbe089b19b7b31616a1fef43f422 SHA1: 691628c4e31cf2351a3b0abc68929364adbc8bb7 SHA256: 8c16126299f29e13d26395dece72f918f51670319cb6db38ba494eb467a0de21 Description: Library for Crypto related tasks Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 14e274d3cca43006fcf7e2eab5df3b13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgcr-ui-3-1 Priority: optional Section: libs Installed-Size: 586 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gcr Version: 3.10.1-1 Replaces: libgcr-3-1 (<< 3.8.2-2) Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgck-1-0 (>= 3.3.90), libgcr-base-3-1 (>= 3.8.0), libgcrypt11 (>= 1.4.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.1.4), libpango-1.0-0 (>= 1.18.0), libgcr-3-common Pre-Depends: multiarch-support Breaks: libgcr-3-1 (<< 3.8.2-2) Filename: pool/main/g/gcr/libgcr-ui-3-1_3.10.1-1_i386.deb Size: 127732 MD5sum: f820b20125289dc0495d1420e664005f SHA1: 01a6d4b5687417bb6b35ae5f21d5c091e6bde145 SHA256: e3078a08114baeb405074b9953ab5580811a46a78e6e12bddc800eddcba900e2 Description: Library for Crypto UI related tasks Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: f0160c7d3daed603681dfd3b0562507f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgcrypt11 Priority: important Section: libs Installed-Size: 603 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Version: 1.5.3-2ubuntu4 Depends: libc6 (>= 2.15), libgpg-error0 (>= 1.10) Pre-Depends: multiarch-support Suggests: rng-tools Breaks: gnupg2 (<< 2.0.17-2ubuntu2), gpgsm (<< 2.0.17-2ubuntu2), libgnutls26 (<< 2.12.7-3) Filename: pool/main/libg/libgcrypt11/libgcrypt11_1.5.3-2ubuntu4_i386.deb Size: 236646 MD5sum: 8443b9ccca90785316ce5654c3296671 SHA1: 0e6f0a0d59ae27d98798a406e92014092af7a52d SHA256: 3e9a2cfe00d659c939ebec7f25271ee232fc7d7550127a1dee3ccfb5a109078c Description: LGPL Crypto library - runtime library Multi-Arch: same Homepage: http://directory.fsf.org/project/libgcrypt/ Description-md5: 9d1cc66909a9f1d1b631303b1886e8fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libgcrypt11-dbg Priority: extra Section: libdevel Installed-Size: 631 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: libgcrypt11 Version: 1.5.3-2ubuntu4 Depends: libgcrypt11 (= 1.5.3-2ubuntu4) Filename: pool/main/libg/libgcrypt11/libgcrypt11-dbg_1.5.3-2ubuntu4_i386.deb Size: 519362 MD5sum: 1d9b9b11b8a2967ee33c02fa140e1de4 SHA1: f126ea71cf19bada1d7800b107bacd2ba5707af6 SHA256: b6335fb3ff02218263942335f2b980ef8e20718f7a9e2caec83aadc2448dd4b0 Description: LGPL Crypto library - debugger files Multi-Arch: same Homepage: http://directory.fsf.org/project/libgcrypt/ Description-md5: 5a4b74c85d10ae086a05eeb54015f0a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcrypt11-dev Priority: optional Section: libdevel Installed-Size: 988 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: libgcrypt11 Version: 1.5.3-2ubuntu4 Provides: libgcrypt-dev Depends: libgcrypt11 (= 1.5.3-2ubuntu4), libc6-dev | libc-dev, libgpg-error-dev Suggests: libgcrypt11-doc Conflicts: libgcrypt-dev Filename: pool/main/libg/libgcrypt11/libgcrypt11-dev_1.5.3-2ubuntu4_i386.deb Size: 275124 MD5sum: 2669355c29ed52ab3fffea5cdde0d378 SHA1: f4f4805fc1a8b66062ef2bcfc31198339b9bdce2 SHA256: 8d7cb01056d938db74ef25ab82742159d5c850572bdfe466e884634eb533b9f8 Description: LGPL Crypto library - development files Homepage: http://directory.fsf.org/project/libgcrypt/ Description-md5: 488e2729b4b628201774de847d36a243 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgcrypt11-doc Priority: optional Section: doc Installed-Size: 1324 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: all Source: libgcrypt11 Version: 1.5.3-2ubuntu4 Replaces: libgcrypt-doc, libgcrypt7-doc Suggests: libgcrypt11-dev Conflicts: libgcrypt-doc, libgcrypt7-doc Filename: pool/main/libg/libgcrypt11/libgcrypt11-doc_1.5.3-2ubuntu4_all.deb Size: 617022 MD5sum: 46d70a4a8b6c449ffb9c8ea660969d65 SHA1: b171516a47dccef901d7430b2ed42279f8f389f6 SHA256: bdbc843c4dac141942cd224586e4cc33428da618feb9a3a1ba311ec1c7896427 Description: LGPL Crypto library - documentation Homepage: http://directory.fsf.org/project/libgcrypt/ Description-md5: 28eb339f6a25d24f5489ecff03309b7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd-barcode-perl Priority: optional Section: perl Installed-Size: 11584 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.15-5ubuntu1 Depends: perl, libgd-gd2-perl | libgd-gd2-noxpm-perl Filename: pool/main/libg/libgd-barcode-perl/libgd-barcode-perl_1.15-5ubuntu1_all.deb Size: 925056 MD5sum: a32dc2564d0b868eb7f3f82ca17dd0d0 SHA1: 8ffcf91b3ad5622f8794d7a8211beb14266fd536 SHA256: f980483a63d2e4ceb24107e0ca6226f1ffe98970fa6dc9a66dcbd9118d2e1dec Description: Perl module to create barcode images (GD::Barcode) Homepage: http://search.cpan.org/dist/GD-Barcode/ Description-md5: 39ad70c6dcfcb5e02c487a14c1ad7c0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd-dbg Priority: extra Section: debug Installed-Size: 451 Maintainer: Ubuntu Developers Original-Maintainer: GD team Architecture: i386 Source: libgd2 Version: 2.1.0-3 Depends: libgd3 (= 2.1.0-3) | libgd-tools (= 2.1.0-3) Recommends: gdb Filename: pool/main/libg/libgd2/libgd-dbg_2.1.0-3_i386.deb Size: 295882 MD5sum: fce7012fa43894827b2e321779f0aa72 SHA1: 593d06cc246506d9407c65997f25578a25e77576 SHA256: 877ab89ab18a2edd46ccdea1dd9ab20a91610204077c29b354c3cd0fb4be1685 Description: Debug symbols for GD Graphics Library Multi-Arch: same Homepage: http://www.libgd.org/ Description-md5: 916f9f3f32784956dbf8677e17dee321 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd-dev Priority: optional Section: libdevel Installed-Size: 782 Maintainer: Ubuntu Developers Original-Maintainer: GD team Architecture: i386 Source: libgd2 Version: 2.1.0-3 Replaces: libgd2-dev (<< 2.1.0~alpha1-2~), libgd2-noxpm-dev (<< 2.1.0~), libgd2-xpm-dev (<< 2.1.0~) Provides: libgd2-dev, libgd2-noxpm-dev, libgd2-xpm-dev Depends: libgd3 (= 2.1.0-3), libpng-dev, libz-dev, libjpeg-dev, libfreetype6-dev, libxpm-dev, libx11-dev, libxt-dev, libfontconfig-dev, libvpx-dev, libtiff-dev Breaks: libgd2-dev (<< 2.1.0~alpha1-2~), libgd2-noxpm-dev (<< 2.1.0~), libgd2-xpm-dev (<< 2.1.0~) Filename: pool/main/libg/libgd2/libgd-dev_2.1.0-3_i386.deb Size: 285868 MD5sum: f222033024bfdbb0d2419d4b65cf8f2d SHA1: 5c52ec9a1157ec6ef9aa443622a0bd4f2b884c3b SHA256: 4991bf0845277ebfde9b3447cf6876d02cce61df90c59a8aca15780a519bff7d Description: GD Graphics Library (development version) Multi-Arch: same Homepage: http://www.libgd.org/ Description-md5: e2e1452132bfe957f8694d8a8920856e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd-gd2-perl Priority: extra Section: perl Installed-Size: 439 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1:2.46-3.1build1 Depends: libc6 (>= 2.4), libgd3 (>= 2.1.0~alpha~), perl (>= 5.18.1-4), perlapi-5.18.1 Conflicts: libgd-gd1-noxpm-perl, libgd-gd1-perl, libgd-gd2-noxpm-perl, libgd-noxpm-perl, libgd-perl Filename: pool/main/libg/libgd-gd2-perl/libgd-gd2-perl_2.46-3.1build1_i386.deb Size: 181260 MD5sum: 02c4edb3c0084492d85e24d96685a4c4 SHA1: 35f197004074e23b802b21de86f6589bcce139d6 SHA256: 67bbfb105bc369143dbf4288fea5cf2f993156e69b811b7896eff77a62107638 Description: Perl module wrapper for libgd - gd2 variant Homepage: http://search.cpan.org/dist/GD/ Description-md5: 6b490b42580f69c7d85417026b064777 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgd-graph-perl Priority: extra Section: perl Installed-Size: 860 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.44-6 Depends: libgd-text-perl (>= 0.80), perl Suggests: ttf-dustin Filename: pool/main/libg/libgd-graph-perl/libgd-graph-perl_1.44-6_all.deb Size: 370556 MD5sum: 13bd83de29b5ed5f47a59393d44bfc21 SHA1: d04c59dd765e5c94d00daa8a573201732875ebbd SHA256: 32f4242b8a41a065fc60bd9e617bfd011152d363d5111a8d01961b0e2af00fd8 Description: Graph Plotting Module for Perl 5 Homepage: http://search.cpan.org/dist/GDGraph/ Description-md5: fc0d40385abd7f55ebea6990e8a0e323 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgd-text-perl Priority: extra Section: perl Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.86-8 Depends: libgd-gd2-perl, perl Suggests: ttf-dustin Filename: pool/main/libg/libgd-text-perl/libgd-text-perl_0.86-8_all.deb Size: 38160 MD5sum: f192160aa4530d66c2a3e506b89378be SHA1: 9cbd415552bc50c7565e9f6ec8122e35ada8724e SHA256: 46d712cd7f01f7399942c42e8a0a56a688392b53ee2e5b5ceaca8615af57264f Description: Text utilities for use with GD Homepage: http://search.cpan.org/dist/GDTextUtil/ Description-md5: d9f4bc5f8094ecfb630546573c918eda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgd2-noxpm-dev Priority: optional Section: libdevel Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: GD team Architecture: all Source: libgd2 Version: 2.1.0-3 Depends: libgd-dev Filename: pool/main/libg/libgd2/libgd2-noxpm-dev_2.1.0-3_all.deb Size: 1138 MD5sum: cb7682811ecbff885b4b09e9b9da9cb6 SHA1: c95a232a77d07354976140f873e1e085e3a9f66c SHA256: 7b90dbaa69a3426c6266550e55840399c9de1883085d98f98ae7ff7c8a65407f Description: GD Graphics Library (transitional package) Multi-Arch: foreign Homepage: http://www.libgd.org/ Description-md5: 4962b85e50b036a61d232e9405ec95c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd2-xpm-dev Priority: optional Section: libdevel Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: GD team Architecture: all Source: libgd2 Version: 2.1.0-3 Depends: libgd-dev Filename: pool/main/libg/libgd2/libgd2-xpm-dev_2.1.0-3_all.deb Size: 1132 MD5sum: 94194fcfc540f37071bde5669567992c SHA1: 9fb54954a6482566e84afde6c22453624af1ac39 SHA256: 50f70c05b47dab65e9beb24ba453baf2286d4719f369bde244937866c404998b Description: GD Graphics Library (transitional package) Multi-Arch: foreign Homepage: http://www.libgd.org/ Description-md5: 4962b85e50b036a61d232e9405ec95c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgd3 Priority: optional Section: libs Installed-Size: 459 Maintainer: Ubuntu Developers Original-Maintainer: GD team Architecture: i386 Source: libgd2 Version: 2.1.0-3 Depends: libc6 (>= 2.11), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>> 4.0.0-1~), libvpx1 (>= 1.0.0), libxpm4, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: libgd-tools Filename: pool/main/libg/libgd2/libgd3_2.1.0-3_i386.deb Size: 141906 MD5sum: 7f6c383b0476ee90a19940a6565106cc SHA1: b81b363c05f30c9d306cbfea42f92d748173e906 SHA256: fc587259392ade5f6df4599ee646432d7aec2f2e7cd343ff35dee5ac0416bf4d Description: GD Graphics Library Multi-Arch: same Homepage: http://www.libgd.org/ Description-md5: c60ac65f313e96eb4257868f1294e7fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgdata-common Priority: optional Section: libs Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgdata Version: 0.14.1-1 Filename: pool/main/libg/libgdata/libgdata-common_0.14.1-1_all.deb Size: 18530 MD5sum: a208ce161f22730f16e87109180da688 SHA1: 9f97db3c5f7a1aa19faf3f73e4b56386e98d7533 SHA256: ee9f695e98b0b4519a685e4c18d9c8a559aa6f47813d4a654905bbc76180ad8b Description: Library for accessing GData webservices - common data files Homepage: https://wiki.gnome.org/libgdata Description-md5: 5d011a11f567ab94a8c35d7b48cad649 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgdata-dev Priority: optional Section: libdevel Installed-Size: 3370 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgdata Version: 0.14.1-1 Depends: libgdata13 (= 0.14.1-1), gir1.2-gdata-0.0 (= 0.14.1-1), libgcr-3-dev, libglib2.0-dev (>= 2.31.0), libgoa-1.0-dev (>= 3.2), liboauth-dev (>= 0.9.4), libsoup2.4-dev (>= 2.37.91), libxml2-dev Suggests: libgdata-doc Filename: pool/main/libg/libgdata/libgdata-dev_0.14.1-1_i386.deb Size: 340062 MD5sum: 53cb3e093585d933c7548ead5b9372bd SHA1: fc19ca6f59ebea2c11ad983588fc5de1a4515f0b SHA256: 54955d971bd04985e2e73e4ff108facfa82c8224c6694fb9ed8dd319309717da Description: Library for accessing GData webservices - development files Homepage: https://wiki.gnome.org/libgdata Description-md5: 9892c19f92db563fe9dd7a426623ff57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdata-doc Priority: optional Section: doc Installed-Size: 5776 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgdata Version: 0.14.1-1 Recommends: libgdata-dev Suggests: devhelp Filename: pool/main/libg/libgdata/libgdata-doc_0.14.1-1_all.deb Size: 318300 MD5sum: 1311f7ff647a74c72825f5ef1db98584 SHA1: cf365778fcc50e3d9ae0897890671b4764f93ccb SHA256: 90ca7b76088485a172fccfcb86e9d5cb1d62be6721191af1905986caeb7b050c Description: Library for accessing GData webservices - documentation Homepage: https://wiki.gnome.org/libgdata Description-md5: 457badc41d89dbaf51ffd8a78ca96272 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdata13 Priority: optional Section: libs Installed-Size: 1003 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgdata Version: 0.14.1-1 Depends: libc6 (>= 2.7), libgcr-base-3-1 (>= 3.8.0), libglib2.0-0 (>= 2.37.3), libgoa-1.0-0b (>= 3.1.90), liboauth0 (>= 0.9.1), libsoup2.4-1 (>= 2.41.90), libxml2 (>= 2.7.4), libgdata-common Filename: pool/main/libg/libgdata/libgdata13_0.14.1-1_i386.deb Size: 203330 MD5sum: ea32effd02942ba54ebb15b2cde6f48d SHA1: 82fd5942516038de7cb0e1422d2d5fdaa1fefcc2 SHA256: 7ed77db70d3727b325423f60ba5a29741fcbc59366fb29029aca9a7f1eaa1620 Description: Library for accessing GData webservices - shared libraries Homepage: https://wiki.gnome.org/libgdata Description-md5: 2206a13104622d0ae3e6b435b0e80fc0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgdbm-dev Priority: optional Section: libdevel Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: gdbm Version: 1.8.3-12build1 Replaces: libgdbmg1-dev Depends: libc6-dev | libc-dev, libgdbm3 (= 1.8.3-12build1) Conflicts: libgdbm1-dev, libgdbmg1-dev Filename: pool/main/g/gdbm/libgdbm-dev_1.8.3-12build1_i386.deb Size: 23714 MD5sum: 5c8a33c1cdf5f3518c47f8fdfd9f381e SHA1: e81f66bb04e119144b70a8c1d39e93629f9956a8 SHA256: 719534b59bf8c15adf35208d5a6057419ea6d956ebe734d4052162486144ed1d Description: GNU dbm database routines (development files) Homepage: http://directory.fsf.org/project/gdbm/ Description-md5: ebbee6ca49fb46d5019df4512658e99f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdbm3 Priority: important Section: libs Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: gdbm Version: 1.8.3-12build1 Depends: libc6 (>= 2.1.3), dpkg (>= 1.15.4) | install-info Pre-Depends: multiarch-support Filename: pool/main/g/gdbm/libgdbm3_1.8.3-12build1_i386.deb Size: 33308 MD5sum: bdc3e96d34713fb6806c5fd2f24f456f SHA1: e22d6169013b154899a2b1a493f5f8f4fb924f93 SHA256: e596640abe96622240142f6d0992580154002d1dc070d9784c02dc9aeb4b3cb6 Description: GNU dbm database routines (runtime version) Multi-Arch: same Homepage: http://directory.fsf.org/project/gdbm/ Description-md5: 900375b4641d82391c1c951c3b8647f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: libgdiplus Priority: optional Section: libs Installed-Size: 458 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Version: 2.11+git20131008.9732566-5ubuntu1 Depends: libc6 (>= 2.11), libcairo2 (>= 1.4), libexif12, libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgif4 (>= 4.1.4), libglib2.0-0 (>= 2.31.8), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3), libx11-6 Filename: pool/main/libg/libgdiplus/libgdiplus_2.11+git20131008.9732566-5ubuntu1_i386.deb Size: 139022 MD5sum: 6250c9c34e1953a6d75df7a83b9875ff SHA1: 105c2982f3960c24fbf066d36019a300541006ca SHA256: ccff2f85ff8323072ad3aeae6f34e5c819316d8e61b4a113136d190734db37d4 Description: interface library for System.Drawing of Mono Homepage: http://www.mono-project.com/Libgdiplus Description-md5: 448897d7c1f6d9b0a49096653fa8811b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libgdk-pixbuf2.0-0 Priority: optional Section: libs Installed-Size: 512 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Replaces: libgtk2.0-0 (<< 2.21.3), libgtk2.0-bin (<< 2.21.3) Depends: libc6 (>= 2.11), libglib2.0-0 (>= 2.37.6), libjasper1, libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3), libx11-6, libgdk-pixbuf2.0-common (= 2.30.7-0ubuntu1) Pre-Depends: multiarch-support Breaks: libgtk2.0-0 (<< 2.21.3), libgtk2.0-bin (<< 2.21.3), librsvg2-2 (<< 2.26.3-2), libwmf0.2-7 (<< 0.2.8.4-7) Filename: pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-0_2.30.7-0ubuntu1_i386.deb Size: 155448 MD5sum: 5568a7dece2952932db346498d758dd6 SHA1: eb815c803eb014c3b0606f7c7228dc945eaafc1c SHA256: a1bb7b1e121eb50372a182f49356d402352d9876322b6c232843bcb3dc44dbef Description: GDK Pixbuf library Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 63eb319f3f676573afbb3b5585491e65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgdk-pixbuf2.0-0-dbg Priority: extra Section: debug Installed-Size: 651 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Depends: libgdk-pixbuf2.0-0 (= 2.30.7-0ubuntu1) Filename: pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-0-dbg_2.30.7-0ubuntu1_i386.deb Size: 410844 MD5sum: 9efefb5fa3a72dc630e8070155a063ca SHA1: 2d48f7e9bb68e9ae2af2717888e6654ffad772b5 SHA256: 2e8726cb07c30291cd42ac9f40dfb30b786ba4eaf39fe94d0dafcae5a2457db3 Description: GDK Pixbuf library - debug symbols Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 217d8f2ea9520f6108077353561fc1a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdk-pixbuf2.0-common Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Replaces: libgdk-pixbuf2.0-0 (<< 2.24.0-2) Breaks: libgdk-pixbuf2.0-0 (<< 2.24.0-2) Filename: pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-common_2.30.7-0ubuntu1_all.deb Size: 8610 MD5sum: a727c1c947675d9ffcb3413045b19b39 SHA1: 1e316caf2e4b3ab59345c1e910dbb8f0822a3586 SHA256: 1e99d0fe90e7625cd3a957f681ee89996df9cf240907cd1c19013048d1a198cb Description: GDK Pixbuf library - data files Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: cd3fff9d184ca859b9cd83a1a6a9e258 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgdk-pixbuf2.0-dev Priority: optional Section: libdevel Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Replaces: gir-repository-dev, libgtk2.0-bin (<< 2.21.3), libgtk2.0-dev (<< 2.21.3) Depends: libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (= 2.30.7-0ubuntu1), libglib2.0-0 (>= 2.37.6), gir1.2-gdkpixbuf-2.0 (= 2.30.7-0ubuntu1), libglib2.0-dev (>= 2.37.6), libx11-dev, libpng12-dev Breaks: libgtk2.0-bin (<< 2.21.3), libgtk2.0-dev (<< 2.21.3) Filename: pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-dev_2.30.7-0ubuntu1_i386.deb Size: 42818 MD5sum: 2686d2b2e5d91a3310efca2e88ec873f SHA1: c3f7561ca624d5403f4a06f763c7a86e236ea9fc SHA256: 10a5f7146eb3b083bdd9da99f7bbb8be2ea092a0e4840548c2717cf8025fb3f2 Description: GDK Pixbuf library (development files) Homepage: http://www.gtk.org/ Description-md5: 5aafdeaef76aa0707bd91e0f31424078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdk-pixbuf2.0-doc Priority: optional Section: doc Installed-Size: 929 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gdk-pixbuf Version: 2.30.7-0ubuntu1 Replaces: libgtk2.0-doc (<< 2.21.3) Breaks: libgtk2.0-doc (<< 2.21.3) Filename: pool/main/g/gdk-pixbuf/libgdk-pixbuf2.0-doc_2.30.7-0ubuntu1_all.deb Size: 173034 MD5sum: 8cf65030abff080d1d2c7d8587886906 SHA1: 30deab91030dcf9f649bebea0da291748621ef63 SHA256: b02bd017b4ce9fbbe42361b7494461f7d3c30d91dd4dc312b25022a690f8c020 Description: GDK Pixbuf library (documentation) Homepage: http://www.gtk.org/ Description-md5: c05c1d454653d6d30698975f8ff15372 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgdraw4 Priority: optional Section: libs Installed-Size: 846 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: i386 Source: fontforge Version: 20120731.b-5 Replaces: fontforge (<= 0.0.20090224) Depends: libc6 (>= 2.15), libcairo2 (>= 1.6.0), libfontconfig1 (>= 2.9.0), libfontforge1, libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpangoxft-1.0-0 (>= 1.14.0), libuninameslist0, libx11-6, libxft2 (>> 2.1.1) Breaks: fontforge (<= 0.0.20090224) Filename: pool/main/f/fontforge/libgdraw4_20120731.b-5_i386.deb Size: 294016 MD5sum: 504d9c08a5154d849a66283e0a72dd86 SHA1: d6937c04cf607107d427dad4eacf05000a22eb11 SHA256: 65cad16cae1a298fbf1a7b7a94e6e6fc5fd933a31a2843dcff7f1ce6efd7d26c Description: font editor - runtime graphics and widget library Homepage: http://fontforge.sourceforge.net/ Description-md5: 5183d393beee991eb82e9672ad02a523 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: libgee-0.8-2 Priority: optional Section: libs Installed-Size: 814 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: libgee-0.8 Version: 0.10.5-1ubuntu1 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.32) Pre-Depends: multiarch-support Filename: pool/main/libg/libgee-0.8/libgee-0.8-2_0.10.5-1ubuntu1_i386.deb Size: 178050 MD5sum: fed1dde1feff700845e3ea8dcf7f3eac SHA1: 8b955cce2b68d4378d83ade989dbf5204d455cee SHA256: c1aa61292495f5c0f2e0e4427ecc87757e9cdab3a4c7655b9f0d0e38cf9ce092 Description: GObject based collection library Multi-Arch: same Homepage: http://live.gnome.org/Libgee Description-md5: fdef2224902ba3d67e7c148642480993 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgee-0.8-2-dbg Priority: extra Section: debug Installed-Size: 1190 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: libgee-0.8 Version: 0.10.5-1ubuntu1 Depends: libgee-0.8-2 (= 0.10.5-1ubuntu1) Filename: pool/main/libg/libgee-0.8/libgee-0.8-2-dbg_0.10.5-1ubuntu1_i386.deb Size: 965672 MD5sum: 3d3baf35957e0fac712d0a31fa4e4ac1 SHA1: 6e0c90a74de55e39c8d523d29d0ad7afbeb3ca53 SHA256: e785f0dc92921da9052d1b78c244229f20bcf8034fd51939f74601c9275531fb Description: GObject based collection library - library symbols Homepage: http://live.gnome.org/Libgee Description-md5: 03e32312216775ea7722d0b6a5a7f839 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgee-0.8-dev Priority: optional Section: libdevel Installed-Size: 519 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: libgee-0.8 Version: 0.10.5-1ubuntu1 Depends: libgee-0.8-2 (= 0.10.5-1ubuntu1), gir1.2-gee-0.8 (= 0.10.5-1ubuntu1), libglib2.0-dev (>= 2.12.0) Filename: pool/main/libg/libgee-0.8/libgee-0.8-dev_0.10.5-1ubuntu1_i386.deb Size: 27092 MD5sum: 57f6bb14ee2b06f4ec0bdd1cb704338a SHA1: b1b6df65ae23b4dac121472f2691f4cdf02ca569 SHA256: 05e2eb67bc7f05fa4e1500dad366ca769c7b7f45d7bc60f1a3bd2acfea229a7a Description: GObject based collection library (development files) Homepage: http://live.gnome.org/Libgee Description-md5: e5006d899b9747f05d1ffd554017042d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgee-dev Priority: optional Section: libdevel Installed-Size: 326 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: libgee Version: 0.6.8-1ubuntu1 Depends: libgee2 (= 0.6.8-1ubuntu1), gir1.2-gee-1.0 (= 0.6.8-1ubuntu1), libglib2.0-dev (>= 2.12.0) Filename: pool/main/libg/libgee/libgee-dev_0.6.8-1ubuntu1_i386.deb Size: 17490 MD5sum: 0a99056f75ba2852096a805c83b1c24b SHA1: 3f5d78395315ceb1186f159155b8644d590eee33 SHA256: 7adda67ed4cd5117a3012608e19ef8634012331655871bb1425c63fdd0f9751c Description: GObject based collection library (development files) Homepage: http://live.gnome.org/Libgee Description-md5: e5006d899b9747f05d1ffd554017042d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgee2 Priority: optional Section: libs Installed-Size: 404 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: libgee Version: 0.6.8-1ubuntu1 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.25) Pre-Depends: multiarch-support Filename: pool/main/libg/libgee/libgee2_0.6.8-1ubuntu1_i386.deb Size: 88676 MD5sum: 968145f5b829fd8deb76b3606f8b1f7e SHA1: ec1639a04d20d2af62f912a3899ef9b8732c4c38 SHA256: e8a79f53d6f002a85c4da6451bb50d69a6e009b2a389927c86f21f1327baf2c7 Description: GObject based collection library Multi-Arch: same Homepage: http://live.gnome.org/Libgee Description-md5: fdef2224902ba3d67e7c148642480993 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libgee2-dbg Priority: extra Section: debug Installed-Size: 582 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: libgee Version: 0.6.8-1ubuntu1 Depends: libgee2 (= 0.6.8-1ubuntu1) Filename: pool/main/libg/libgee/libgee2-dbg_0.6.8-1ubuntu1_i386.deb Size: 456424 MD5sum: 635f87589506eae64c247baff917acae SHA1: 0b35e34865f378705debeeaed14ebdc733540c89 SHA256: 3a5b12d5a6a85e931f3419316498d7ec76cfca6f65bc09f81f06c4e4c456fafc Description: GObject based collection library - library symbols Homepage: http://live.gnome.org/Libgee Description-md5: 03e32312216775ea7722d0b6a5a7f839 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgegl-0.2-0 Priority: optional Section: libs Installed-Size: 2145 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: gegl Version: 0.2.0-4ubuntu1 Depends: libbabl-0.1-0, libc6 (>= 2.7), libcairo2 (>= 1.2.4), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libjasper1, libjpeg8 (>= 8c), libopenexr6 (>= 1.6.1), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpng12-0 (>= 1.2.13-4), librsvg2-2 (>= 2.14.4), libsdl1.2debian (>= 1.2.11), libstdc++6 (>= 4.1.1), libumfpack5.6.2 Pre-Depends: multiarch-support Filename: pool/main/g/gegl/libgegl-0.2-0_0.2.0-4ubuntu1_i386.deb Size: 378666 MD5sum: eeb9ad4a59b15d44fb629e16b4568b6a SHA1: 7b126f9fa396a10b89ddf131794b8d3004bd59bc SHA256: eb1b1450156cc3299915980a944ed150a087ccec4996782cdb922490dc4f342e Description: Generic Graphics Library Multi-Arch: same Homepage: http://gegl.org/ Description-md5: e11f6f0593fe04ad9db47d6eb6c3c502 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libgegl-0.2-0-dbg Priority: extra Section: debug Installed-Size: 2930 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: gegl Version: 0.2.0-4ubuntu1 Replaces: libgegl-0.0-dbg, libgegl-0.1-0-dbg Depends: libgegl-0.2-0 (= 0.2.0-4ubuntu1) Breaks: libgegl-0.0-dbg, libgegl-0.1-0-dbg Filename: pool/main/g/gegl/libgegl-0.2-0-dbg_0.2.0-4ubuntu1_i386.deb Size: 1739604 MD5sum: 1715a9a3a346c185f65343f78cd8314c SHA1: 940c91c1aa00f6208869c9dd481ba6a32dedc8e9 SHA256: 3ce9a68ad88dd5f2bdfa118e901260728667b9a68ad1eb113cc35971edddcdec Description: Generic Graphics Library (debugging symbols) Homepage: http://gegl.org/ Description-md5: 8880af6d69d402af45445c1bafe1515b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgegl-dev Priority: optional Section: libdevel Installed-Size: 536 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: gegl Version: 0.2.0-4ubuntu1 Replaces: libgegl-0.0-dev Provides: libgegl-0.0-dev Depends: libbabl-dev (>= 0.1.10), libgegl-0.2-0 (= 0.2.0-4ubuntu1), libglib2.0-dev (>= 2.16.1) Breaks: libgegl-0.0-dev Filename: pool/main/g/gegl/libgegl-dev_0.2.0-4ubuntu1_i386.deb Size: 51364 MD5sum: d70647ec4e57576d270eccbae9ebd6e8 SHA1: 52c6b29e08b93d9406f5808a0d1e68d7e944e2b9 SHA256: 06732ac304117b80a748bc1462f8d8016f9dcb7e5b1ddc14ce08a982f0d5523a Description: Generic Graphics Library (development files) Multi-Arch: same Homepage: http://gegl.org/ Description-md5: 53c453824550aacef970a7078d70e876 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgegl-doc Priority: optional Section: doc Installed-Size: 2465 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: all Source: gegl Version: 0.2.0-4ubuntu1 Replaces: libgegl-0.0-doc Breaks: libgegl-0.0-doc Filename: pool/main/g/gegl/libgegl-doc_0.2.0-4ubuntu1_all.deb Size: 1276316 MD5sum: 523e1f4b6ac6e3fb797bd554cc3c8d67 SHA1: 0b231904a51658ff238ae9674e3503b317e2bcb9 SHA256: 6aebfef8b33f8a95254fd13ddf0a063e5e39ab7eacf98507c1308521195ce7c3 Description: Generic Graphics Library (documentation) Multi-Arch: foreign Homepage: http://gegl.org/ Description-md5: 55c9429d61c63406180cddcb65b36001 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeis-dev Priority: extra Section: libdevel Installed-Size: 126 Maintainer: Ubuntu Developers Architecture: i386 Source: geis Version: 2.2.16+14.04.20140303-0ubuntu1 Replaces: libutouch-geis-dev Depends: libgeis1 (= 2.2.16+14.04.20140303-0ubuntu1) Conflicts: libutouch-geis-dev Filename: pool/main/g/geis/libgeis-dev_2.2.16+14.04.20140303-0ubuntu1_i386.deb Size: 16622 MD5sum: 1b236c2ee2718235f341284f7155cdf2 SHA1: 6edda05ba3c68916761f2c1a355c09eea84b7ee2 SHA256: 79a323667cbf0963bae12a5b8de85e28ecb9f0c89b2c39b680aaceb961d1fa4b Description: Gesture engine interface support - dev files Multi-Arch: same Homepage: https://launchpad.net/geis Description-md5: 2ff2cbb222e64416fdb9d07cbc3e9b72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeis-doc Priority: extra Section: doc Installed-Size: 1414 Maintainer: Ubuntu Developers Architecture: all Source: geis Version: 2.2.16+14.04.20140303-0ubuntu1 Replaces: libutouch-geis-doc Conflicts: libutouch-geis-doc Filename: pool/main/g/geis/libgeis-doc_2.2.16+14.04.20140303-0ubuntu1_all.deb Size: 134320 MD5sum: a36203fcd3b9c674d32bc32b98ee6d50 SHA1: 27f93c57cf219ed8e6b0319672511036ae72edf5 SHA256: 8efaeefd6162887d1517d2806d78139d96c0762082a24ce8ba23eea56d211009 Description: Gesture engine interface support - documentation Multi-Arch: foreign Homepage: https://launchpad.net/geis Description-md5: 9642f1590b474c5c7f69225a3b0fa0ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeis1 Priority: extra Section: libs Installed-Size: 207 Maintainer: Ubuntu Developers Architecture: i386 Source: geis Version: 2.2.16+14.04.20140303-0ubuntu1 Depends: libc6 (>= 2.15), libdbus-1-3 (>= 1.1.1), libframe6 (>= 2.2.4), libgrail6 (>= 3.0.8), libx11-6 (>= 2:1.2.99.901), libxext6, libxi6 (>= 2:1.5.99.2) Pre-Depends: multiarch-support Filename: pool/main/g/geis/libgeis1_2.2.16+14.04.20140303-0ubuntu1_i386.deb Size: 55980 MD5sum: cbe93a25b489a602a7e5902c7fe177f8 SHA1: a41e24cafa56b6879347953e4896d7e032da8fcc SHA256: 5e59c95119b5a169cfa94e81d9b4ea41311ccf0eac55ed82ff7a0edf248f2bcd Description: Gesture engine interface support Multi-Arch: same Homepage: https://launchpad.net/geis Description-md5: f7495ef36ba1b4f2f35ba465c3a4e4be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgeoclue-dev Priority: optional Section: libdevel Installed-Size: 699 Maintainer: Ubuntu Desktop Team Original-Maintainer: Laurent Bigonville Architecture: i386 Source: geoclue Version: 0.12.99-3ubuntu1 Depends: libgeoclue0 (= 0.12.99-3ubuntu1), pkg-config, libdbus-glib-1-dev, libxml2-dev Filename: pool/main/g/geoclue/libgeoclue-dev_0.12.99-3ubuntu1_i386.deb Size: 76524 MD5sum: bec2b3cfbe2511259a0d6066f5bdc191 SHA1: 44eaca9d60f2918f5f59175e5099ed026b191a15 SHA256: 9eb9109eba64b8806f5d1fcfc9192a29a31fc3224535157e1185444218cfe51f Description: C API for GeoClue (development files) Homepage: http://www.freedesktop.org/wiki/Software/GeoClue Description-md5: b601e42f27b83d12b146f02fd7b4a527 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeoclue0 Priority: optional Section: libs Installed-Size: 123 Maintainer: Ubuntu Desktop Team Original-Maintainer: Laurent Bigonville Architecture: i386 Source: geoclue Version: 0.12.99-3ubuntu1 Depends: libc6 (>= 2.4), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Suggests: geoclue Filename: pool/main/g/geoclue/libgeoclue0_0.12.99-3ubuntu1_i386.deb Size: 26666 MD5sum: 40437de587de79016e5827459b8ca74a SHA1: 5df187924eb057e4ca70780ae0c73f368a6b9ef4 SHA256: 5f73df2101cb0666ed63aff444608fbd1f90ecb18852815e60e4019b43330f3b Description: C API for GeoClue Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/GeoClue Description-md5: d2d9cc3fab1673420a38fd5310a46063 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgeoip-dev Priority: optional Section: libdevel Installed-Size: 571 Maintainer: Ubuntu Developers Original-Maintainer: Patrick Matthäi Architecture: i386 Source: geoip Version: 1.6.0-1 Depends: libgeoip1 (= 1.6.0-1), geoip-bin (= 1.6.0-1) Filename: pool/main/g/geoip/libgeoip-dev_1.6.0-1_i386.deb Size: 128556 MD5sum: a7718d53c87f75e4c4baedb61d579620 SHA1: e268e418589109f528e92bd208910eac32ea0362 SHA256: 1974cefc0641c584bc07ed43f1f49f991316ef680d242b09ac3e35ff87850d4c Description: Development files for the GeoIP library Homepage: http://www.maxmind.com/ Description-md5: afee88869c565d97ba7d87e66323e47c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeoip1 Priority: standard Section: libs Installed-Size: 258 Maintainer: Ubuntu Developers Original-Maintainer: Patrick Matthäi Architecture: i386 Source: geoip Version: 1.6.0-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: geoip-database Suggests: geoip-bin Filename: pool/main/g/geoip/libgeoip1_1.6.0-1_i386.deb Size: 77824 MD5sum: ada3563333a5bda07f14d02e19ef1beb SHA1: 72f3d4399cbd20e5a9a2991e68bb55e82de39f63 SHA256: a0b2679ea01ebce0d370bcea328fa2d9dbb6b2f974d4d53e607c5ecf10647c90 Description: non-DNS IP-to-country resolver library Multi-Arch: same Homepage: http://www.maxmind.com/ Description-md5: cc64f48b3eca4b1690c3b7284f2bd5fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgeronimo-jms-1.1-spec-java Priority: optional Section: libs Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Chris Grzegorczyk Architecture: all Source: geronimo-jms-1.1-spec Version: 1.1-1.2ubuntu3 Depends: default-jre-headless | java5-runtime-headless Filename: pool/main/g/geronimo-jms-1.1-spec/libgeronimo-jms-1.1-spec-java_1.1-1.2ubuntu3_all.deb Size: 22626 MD5sum: 6aecfd76bf61d4b0f8248f1fae2591f7 SHA1: 6d0b40fa283494f8f3980dba8e85f0ea760ad1e7 SHA256: 9a1f73bf77259b116ec83cb9020cc20ce737dc6b3ecbb2ee7b03dbc43c536905 Description: Geronimo API implementation of the JMS 1.1 spec Description-md5: 18837dffe48bfce6f4dd58dfc6a59043 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgeronimo-jta-1.1-spec-java Priority: optional Section: java Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: geronimo-jta-1.1-spec Version: 1.1.1-3ubuntu1 Replaces: libgeronimo-jta-1.0.1b-spec-java Provides: libgeronimo-jta-1.0.1b-spec-java Suggests: libgeronimo-jta-java-doc Conflicts: libgeronimo-jta-1.0.1b-spec-java Filename: pool/main/g/geronimo-jta-1.1-spec/libgeronimo-jta-1.1-spec-java_1.1.1-3ubuntu1_all.deb Size: 12428 MD5sum: 69dac65fa7a2612c152ab5e54cf35af0 SHA1: 5fb4ef6b1196b574b0f3dcf14186c6c9ebe9cbb9 SHA256: 0448eb1e9e445c38b1cfd5908eb8709cef03043e3204be195367d9f543415177 Description: Geronimo API implementation of the JTA 1.1 spec Homepage: http://geronimo.apache.org Description-md5: e0e1acab9e3fa9733d01db251177ed90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libgeronimo-jta-1.1-spec-java-doc Priority: optional Section: doc Installed-Size: 469 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: geronimo-jta-1.1-spec Version: 1.1.1-3ubuntu1 Suggests: libgeronimo-jta-java Filename: pool/main/g/geronimo-jta-1.1-spec/libgeronimo-jta-1.1-spec-java-doc_1.1.1-3ubuntu1_all.deb Size: 44670 MD5sum: b1b601e582753ca05b9db0e6ff263666 SHA1: ac6aad46d6e89a4cf75789c37078b70367245864 SHA256: ccacd428a3e06b4f9c2d313cdcced7f2fd517d97a09972ea001069e667b9291e Description: Documentation for the JTA 1.1 spec Homepage: http://geronimo.apache.org Description-md5: da905d4b4c2225fa91f4b0464729ffde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgettextpo-dev Priority: optional Section: libdevel Installed-Size: 554 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Source: gettext Version: 0.18.3.1-1ubuntu2 Replaces: gettext (<< 0.18.1.1-10) Depends: libgettextpo0 (= 0.18.3.1-1ubuntu2) Suggests: gettext-doc Breaks: gettext (<< 0.18.1.1-10) Filename: pool/main/g/gettext/libgettextpo-dev_0.18.3.1-1ubuntu2_i386.deb Size: 115912 MD5sum: 622b75839708093f2e7ef4294d227b27 SHA1: efd5111574a4403852aeb96f541f42e53b246939 SHA256: dc86549fbf8a966f9f0f1c84b3a49a8f5c69e8aa57047afe30c94e60b39c994f Description: GNU Internationalization library development files Multi-Arch: same Homepage: http://www.gnu.org/software/gettext/ Description-md5: 2c61a6422d46693142537473ae5017c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgettextpo0 Priority: optional Section: devel Installed-Size: 361 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Source: gettext Version: 0.18.3.1-1ubuntu2 Replaces: gettext (<< 0.18.1.1-6) Depends: libc6 (>= 2.11), libunistring0 Pre-Depends: multiarch-support Breaks: gettext (<< 0.18.1.1-6) Filename: pool/main/g/gettext/libgettextpo0_0.18.3.1-1ubuntu2_i386.deb Size: 104742 MD5sum: 9f06fe396935d20262e3b7d50b3ac396 SHA1: e214e77a2b2c6e1dedc90f2309b3f6423989e8a2 SHA256: 493449e50cebaff0b52a223195324efec9fb541706f126f3922b4f0f6b002a5d Description: GNU Internationalization library Multi-Arch: same Homepage: http://www.gnu.org/software/gettext/ Description-md5: 34be8e77b3524b55ecae7e97edf3c2ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgexiv2-2 Priority: optional Section: libs Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: i386 Source: gexiv2 Version: 0.10.0-1ubuntu1 Depends: libc6 (>= 2.4), libexiv2-12, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.37.3), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Breaks: shotwell (<< 0.12) Filename: pool/main/g/gexiv2/libgexiv2-2_0.10.0-1ubuntu1_i386.deb Size: 40140 MD5sum: c8a9403aac4ecb6ec79135e2c3eb4f38 SHA1: 9dbeb6611801a185ae41e156fe22047a32153fb3 SHA256: bd36319c6ddd72f6569afa1a5c1ea67ae9efb3c39a1049b9973f3871a2fffe25 Description: GObject-based wrapper around the Exiv2 library Multi-Arch: same Homepage: https://wiki.gnome.org/Projects/gexiv2 Description-md5: 09e54078832a4676c504f775b7cea605 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgexiv2-2-dbg Priority: extra Section: debug Installed-Size: 386 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: i386 Source: gexiv2 Version: 0.10.0-1ubuntu1 Depends: libgexiv2-2 (= 0.10.0-1ubuntu1) Filename: pool/main/g/gexiv2/libgexiv2-2-dbg_0.10.0-1ubuntu1_i386.deb Size: 324234 MD5sum: 285e1a018dd81c5a863b901962e9d2d2 SHA1: d25c882c6881736ac742be50a99cb9a671b5d813 SHA256: 8ee32723022781695507906a6d80242512ff3f8a4356f2d31c0b64640a7d6c93 Description: GObject-based wrapper around the Exiv2 library (debugging symbols) Multi-Arch: same Homepage: https://wiki.gnome.org/Projects/gexiv2 Description-md5: 9d6468417be2dd31c32b511f5c862952 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgexiv2-dev Priority: extra Section: libdevel Installed-Size: 355 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: i386 Source: gexiv2 Version: 0.10.0-1ubuntu1 Depends: libgexiv2-2 (= 0.10.0-1ubuntu1), gir1.2-gexiv2-0.10 (= 0.10.0-1ubuntu1), libglib2.0-dev Filename: pool/main/g/gexiv2/libgexiv2-dev_0.10.0-1ubuntu1_i386.deb Size: 52198 MD5sum: c8bff14b1f748c1cb45be712997850f2 SHA1: 66b004c9e3e1b96efd878fa22f29ef25a7d2871e SHA256: cce975f79501d2c37de2f42af2c4c43ead979516374a678710316edfca52f854 Description: GObject-based wrapper around the Exiv2 library - development files Multi-Arch: foreign Homepage: https://wiki.gnome.org/Projects/gexiv2 Description-md5: 24ca90ed7b6b0c3a0a3c4385dd3a81a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgflags-dev Priority: optional Section: libdevel Installed-Size: 429 Maintainer: Ubuntu Developers Original-Maintainer: Koichi Akabe Architecture: i386 Source: gflags Version: 2.0-1.1ubuntu1 Depends: libgflags2 (= 2.0-1.1ubuntu1) Filename: pool/main/g/gflags/libgflags-dev_2.0-1.1ubuntu1_i386.deb Size: 72710 MD5sum: f9fec29cd55a20f88a7d4377f6acf9d5 SHA1: c1f2110ac05138947ded80c40978efe60d8a1f90 SHA256: 5c2df1f630a50a9794a7abfbc4d2b78befb7a384aa22673848979f1569534038 Description: commandline flags module for C++ (development files) Homepage: https://code.google.com/p/gflags/ Description-md5: 5c18b4b4e8e0e1671fd33b5406ce23c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgflags-doc Priority: optional Section: doc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Koichi Akabe Architecture: all Source: gflags Version: 2.0-1.1ubuntu1 Filename: pool/main/g/gflags/libgflags-doc_2.0-1.1ubuntu1_all.deb Size: 13882 MD5sum: cdc947e573a2a54b139ea44c4d74114f SHA1: 5bc08287bc145f371f2b3811003915eb07b8c718 SHA256: 5e920df30f0e91fb9b64135653f4177d12600f50e7fb229b6a82ab414d63fddc Description: documentation of gflags Homepage: https://code.google.com/p/gflags/ Description-md5: d8899120f7c0b6bd34c6b0618822e113 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgflags2 Priority: optional Section: libs Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Koichi Akabe Architecture: i386 Source: gflags Version: 2.0-1.1ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/g/gflags/libgflags2_2.0-1.1ubuntu1_i386.deb Size: 64166 MD5sum: 0ee6d4ee8da8745d0cc874228b288cd5 SHA1: 6134f77f2745eda5199e201970aebd81eff5b89b SHA256: 223ca782f90f849afa906680fe378fe4431e1987942d72b89c7b87bb3f662681 Description: commandline flags module for C++ (shared library) Homepage: https://code.google.com/p/gflags/ Description-md5: 9efc698726dbf2a2dd40dc6bcdfbdeb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgfortran-4.7-dev Priority: optional Section: libdevel Installed-Size: 1890 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gfortran-4.7 (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libgfortran3 (>= 4.7.3-12ubuntu1) Breaks: gfortran-4.7 (<< 4.7.2-10) Filename: pool/main/g/gcc-4.7/libgfortran-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 250354 MD5sum: 75896973cd0e5644b9f2e045a5145e53 SHA1: 1977e2e9d07eb763a5403c88a5ed2c9011954f85 SHA256: 2dbdc8337c91ca860323bc9bae3f111d8c900428a222883796e4c4db5a3059d2 Description: Runtime library for GNU Fortran applications (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 146f5739f84c8211389d84c7aa5bf949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgfortran-4.8-dev Priority: optional Section: libdevel Installed-Size: 1887 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcc-4.8-dev (= 4.8.2-19ubuntu1), libgfortran3 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libgfortran-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 243200 MD5sum: 67bf7a2b93bf02255d68526735206a94 SHA1: 78f801170b69ab476d23a7eb89f979c98ce9a141 SHA256: 7d60a997b512f57431c700e5c5f1e96b9bece95f4b43c867fd3ead9a71419389 Description: Runtime library for GNU Fortran applications (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 146f5739f84c8211389d84c7aa5bf949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgfortran3 Priority: optional Section: libs Installed-Size: 1077 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.17), libgcc1 (>= 1:4.4.0), libquadmath0 (>= 4.6) Pre-Depends: multiarch-support Breaks: gcc-4.1, gcc-4.3 (<< 4.3.6-1), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2) Filename: pool/main/g/gcc-4.8/libgfortran3_4.8.2-19ubuntu1_i386.deb Size: 225568 MD5sum: 4d4d8a3ef6bd31a833aec1d616e2461a SHA1: 75258c5dff2f204dc6b0ef39e8245ecfd76d7d37 SHA256: d5390f49a5c1dd70e5bddc16b23c0a7ac0e915996cb087f2a919ff4570057a25 Description: Runtime library for GNU Fortran applications Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: bb4b9e7dbbaa67e95441936718b11f39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libgfortran3-dbg Priority: extra Section: debug Installed-Size: 2895 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgfortran3 (= 4.8.2-19ubuntu1), libgcc1-dbg (>= 1:4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libgfortran3-dbg_4.8.2-19ubuntu1_i386.deb Size: 507030 MD5sum: 8ce5e33553992d6eb916563a81cbe286 SHA1: 5de4e9f1e3ef8d414be6dffc867a6949a77d6feb SHA256: 804fe7852f132a40100495cfe286f1615f8d36b426dc9a1bc153498e46ed0909 Description: Runtime library for GNU Fortran applications (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 8e6e17da8d0b42fc976ade7330c11a20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgif-dev Priority: optional Section: libdevel Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Thibaut Gridel Architecture: i386 Source: giflib Version: 4.1.6-11 Depends: libgif4 (= 4.1.6-11) Filename: pool/main/g/giflib/libgif-dev_4.1.6-11_i386.deb Size: 19516 MD5sum: 4c1dd339da473c78430ad2bcaf87bdf1 SHA1: abb8398d8a35ee92b16f21509f8c311f2a1d6d15 SHA256: bbfcea6886c598f075f5025018f95dcfe6d4c0a1e7569a705bf6956bc0bcae96 Description: library for GIF images (development) Homepage: http://giflib.sourceforge.net/ Description-md5: 0bfe767ea8e86d9cab3f10708a06203a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgif4 Priority: optional Section: libs Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Thibaut Gridel Architecture: i386 Source: giflib Version: 4.1.6-11 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/g/giflib/libgif4_4.1.6-11_i386.deb Size: 28354 MD5sum: ec53f2c5abbc538fd4e456175e3b909f SHA1: 13692853dba9d02498a8912e19ce66fe3cd3b30c SHA256: 14edf92700ba019fe16e9a6014c84ba1def1f789590c19f8cae32882b5e4e1c7 Description: library for GIF images (library) Multi-Arch: same Homepage: http://giflib.sourceforge.net/ Description-md5: 6e1b50f7983687352e4b68758c6a50d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, edubuntu-usb, lubuntu-core, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: libgimp2.0 Priority: optional Section: libs Installed-Size: 2896 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: i386 Source: gimp Version: 2.8.10-0ubuntu1 Depends: libc6 (>= 2.15), libcairo2 (>= 1.10.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.10), libpango-1.0-0 (>= 1.29.4), libpangocairo-1.0-0 (>= 1.29.4) Recommends: gimp-data (>= 2.8.10), gimp-data (<= 2.8.10-z) Filename: pool/main/g/gimp/libgimp2.0_2.8.10-0ubuntu1_i386.deb Size: 474262 MD5sum: 9902e54c3863a8d5b3b6b792362075c3 SHA1: 351a53b021dc114c6c191f2ad4f5a6bcc6fc9de9 SHA256: 7f61a004901560454bcb65112b5bfa8e1b90e497eeb2a84156f7f2ea3e58c26f Description: Libraries for the GNU Image Manipulation Program Homepage: http://www.gimp.org/ Description-md5: 87c9f62281987fda19082f1b5cc2c95c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libgimp2.0-dev Priority: optional Section: libdevel Installed-Size: 1719 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: i386 Source: gimp Version: 2.8.10-0ubuntu1 Depends: libc6 (>= 2.4), libgimp2.0 (= 2.8.10-0ubuntu1), libglib2.0-0 (>= 2.30.2), libgtk2.0-dev (>= 2.12.5), pkg-config Suggests: libgimp2.0-doc Filename: pool/main/g/gimp/libgimp2.0-dev_2.8.10-0ubuntu1_i386.deb Size: 85698 MD5sum: f112fe206ac8ada967d6cfdcefdd810d SHA1: 387f4edb92f863bd4f140cbcbd04e967964a488f SHA256: 67bc1c6cc2ce0b965a7933b678a17c19f6ac937970e65e4b7db15da714aeddd3 Description: Headers and other files for compiling plugins for GIMP Homepage: http://www.gimp.org/ Description-md5: c7c7d24560c6f749d332154868167ed5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgimp2.0-doc Priority: optional Section: doc Installed-Size: 7283 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: gimp Version: 2.8.10-0ubuntu1 Depends: lynx | www-browser Filename: pool/main/g/gimp/libgimp2.0-doc_2.8.10-0ubuntu1_all.deb Size: 361452 MD5sum: def3def6322a5269ee0399566163b93b SHA1: d56cbdf26a6ca7b3b53e3564bc2a8d74e496dd70 SHA256: b3596036613f4d1ab6ceee5dec745f7b579c981bbe3f5c81c3dbe47d5e8b300b Description: Developers' Documentation for the GIMP library Homepage: http://www.gimp.org/ Description-md5: 8acaa3767b69bc8f021740c983e4e23a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgirepository-1.0-1 Priority: standard Section: libs Installed-Size: 271 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gobject-introspection Version: 1.40.0-1 Replaces: libgirepository1.0-1 Provides: libgirepository1.0-1 Depends: libc6 (>= 2.4), libffi6 (>= 3.0.4), libglib2.0-0 (>= 2.39.0) Conflicts: libgirepository1.0-1 Breaks: libgjs0c Filename: pool/main/g/gobject-introspection/libgirepository-1.0-1_1.40.0-1_i386.deb Size: 85824 MD5sum: 7bb852d55e46f305016d202872fda351 SHA1: a3ef5c70ef567c64aad02d9e805cbfd93d55e655 SHA256: f3c1d3430a305c0df0b682ebc843b0251a4a86cfd5190e3d65a8d68fbbe80c6d Description: Library for handling GObject introspection data (runtime library) Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: 44b96e4ecd5e1fbee0c83bdf6ed90274 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgirepository1.0-dev Priority: optional Section: libdevel Installed-Size: 7215 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gobject-introspection Version: 1.40.0-1 Replaces: gir-repository-dev, libgirepository-dev Depends: libgirepository-1.0-1 (= 1.40.0-1), gobject-introspection (= 1.40.0-1), gir1.2-glib-2.0 (= 1.40.0-1), gir1.2-freedesktop (= 1.40.0-1), libglib2.0-dev (>= 2.35.0), libffi-dev Suggests: libgirepository1.0-doc Conflicts: gobject-introspection-freedesktop, gobject-introspection-glib-2.0, libgirepository-dev Filename: pool/main/g/gobject-introspection/libgirepository1.0-dev_1.40.0-1_i386.deb Size: 632130 MD5sum: b7340e0a4e4dbff610982aaa3b85828c SHA1: 8ebd3ed192d1c4ccb4ada2dc284802e8461a8af2 SHA256: 623cf43ab601c9b3523aa42c5073db34658b2fdadb52aa748b227fa8456a57a9 Description: Library for handling GObject introspection data (development files) Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: a6c667390603ef838b5a07b03b5406c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgirepository1.0-doc Priority: optional Section: doc Installed-Size: 1114 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gobject-introspection Version: 1.40.0-1 Replaces: libgirepository1.0-dev (<< 0.6.14-2) Recommends: libglib2.0-doc Breaks: libgirepository1.0-dev (<< 0.6.14-2) Filename: pool/main/g/gobject-introspection/libgirepository1.0-doc_1.40.0-1_all.deb Size: 180778 MD5sum: 4a5d3e2997bba1839acf7473d9c75cd0 SHA1: 5c337d4d34674f026da3feed3a2709aebc66333c SHA256: 1971a940e2c289aa9e1239dfd6ca7a948d37a2c60580f8ca061f1499a7644fcb Description: Library for handling GObject introspection data (documentation) Homepage: https://wiki.gnome.org/GObjectIntrospection Description-md5: e9606a60123772534331de7277565f67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dev Priority: extra Section: libdevel Installed-Size: 92 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl-dev, libgl1-mesa-dri-dev Provides: libgl-dev, libgl1-mesa-dri-dev Depends: mesa-common-dev (= 10.1.0-4ubuntu5), libgl1-mesa-glx (= 10.1.0-4ubuntu5), libdrm-dev (>= 2.4.52), libx11-dev, libx11-xcb-dev, libxcb-dri3-dev, libxcb-present-dev, libxcb-sync-dev, libxshmfence-dev, libxcb-dri2-0-dev, libxcb-glx0-dev, libxdamage-dev, libxext-dev, libxfixes-dev, libxxf86vm-dev, x11proto-dri2-dev (>= 2.6), x11proto-gl-dev (>= 1.4.14) Conflicts: libgl-dev, libgl1-mesa-dri-dev Filename: pool/main/m/mesa/libgl1-mesa-dev_10.1.0-4ubuntu5_i386.deb Size: 5216 MD5sum: 2b160c40eb3cf2d208659e3eb2eed2bd SHA1: 5d6aeb694104d4b0d40afc9e52fff733588c6e6a SHA256: 73a05336c7541c68a5e9b11ac2f6f4effde602335a6d5d6727fe72a536a2cf77 Description: free implementation of the OpenGL API -- GLX development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: edeb377b6e64f69c00b2215e4025a28a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libgl1-mesa-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dev-lts-quantal_5_i386.deb Size: 1546 MD5sum: ff26bc3d319daca2603e279c3b911bef SHA1: 3f9adb9a8ba91d7434803eaabd6c5543acf44501 SHA256: 9d270b3692e63a438e4427ca76041adbd3f58f4b372763a7bc489131f6b662ea Description: Transitional package for libgl1-mesa-dev Multi-Arch: same Description-md5: a5b924af74c24a6321ba46ddecb7d82d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dev-lts-raring_5_i386.deb Size: 1546 MD5sum: 4f7737b1598d2038119f3060de1106e0 SHA1: a4d8e02300a19e07442ea3d3e6530ed934b3ea5f SHA256: 03c20e45c88748dac05df7a417d1256f106149ae7a5eb27d6407e6afba5ee98f Description: Transitional package for libgl1-mesa-dev Multi-Arch: same Description-md5: a5b924af74c24a6321ba46ddecb7d82d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dev-lts-saucy_5_i386.deb Size: 1542 MD5sum: 189e32a51af4ba36257e5722c89836c1 SHA1: 23100ab02bd40391e6a60a8a1fa4d1a3c46b2cb8 SHA256: a072b2b23bdf21a0fd75b6122e7b0cddc6dcdc4db8e693c3c3f0a0a392725dba Description: Transitional package for libgl1-mesa-dev Multi-Arch: same Description-md5: a5b924af74c24a6321ba46ddecb7d82d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri Priority: optional Section: libs Installed-Size: 32988 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1-mesa-dri-experimental (<< 7.11.1), xlibmesa-dri (<< 1:7.0.0) Depends: libc6 (>= 2.17), libdrm-intel1 (>= 2.4.48), libdrm-nouveau2 (>= 2.4.38), libdrm-radeon1 (>= 2.4.31), libdrm2 (>= 2.4.38), libelf1 (>= 0.142), libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libllvm3.4, libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Recommends: libtxc-dxtn-s2tc0 | libtxc-dxtn0 Suggests: libglide3 Conflicts: xlibmesa-dri (<< 1:7.0.0) Breaks: libgl1-mesa-dri-experimental (<< 7.11.1), libgl1-mesa-glx (<< 7.10.2-4), libgl1-mesa-glx-no-multiarch, xserver-xorg-core (<< 2:1.14.3-5), xserver-xorg-core-no-multiarch Filename: pool/main/m/mesa/libgl1-mesa-dri_10.1.0-4ubuntu5_i386.deb Size: 4986716 MD5sum: 8d8e53a082a7e460e660df8bf513781f SHA1: 3ca33cd21f492476650d72d4783edc16186e031c SHA256: 8d6be79e3abd27316575f9ba6fa05450dfdf25c4b47dc61eab508c9217ecdd26 Description: free implementation of the OpenGL API -- DRI modules Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: da6c27328d7c638224ef0acc251a333d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgl1-mesa-dri-dbg Priority: extra Section: libdevel Installed-Size: 171862 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1-mesa-dri-experimental-dbg (<< 7.11.1) Depends: libgl1-mesa-dri (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libgl1-mesa-dri-dbg_10.1.0-4ubuntu5_i386.deb Size: 35349738 MD5sum: 498477512b9bdbcbb6e9123ee706c810 SHA1: ae76428cbf6ec1f7db4517705386440a193561b0 SHA256: 4e176de78c795e943c385263d5e11222de5f68626cec4eec1df4ea680797c318 Description: Debugging symbols for the Mesa DRI modules Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: fb1e2b71da0f9ac97628cc83179582ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-quantal_5_i386.deb Size: 1546 MD5sum: 0080e160ec61278c7ca854a380acb065 SHA1: f9c15e74e5b50923237b3768b15e9176fb8e5263 SHA256: 8dec0b717a8a28cb50053c0ac7a5debaf38642c9d357f18ad263c59e6d726a0a Description: Transitional package for libgl1-mesa-dri Multi-Arch: same Description-md5: 9a7de445e8bac29ba462ed2ed1c389cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-quantal-dbg_5_i386.deb Size: 1552 MD5sum: d1876eb26176498ca9cbce25d7e7a2e9 SHA1: 38339e1fc9902268de9dde269272921b93d7dc95 SHA256: f50df81bb30191eae7e0d1da66736dd37ffaedb8a5dba6dee7c348db7fe92d49 Description: Transitional package for libgl1-mesa-dri-dbg Multi-Arch: same Description-md5: d72a23e5517e82e7f8ee69acfa3811a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-raring_5_i386.deb Size: 1548 MD5sum: b927a1c828d8e8ddfbf363d4eb8ffd8c SHA1: ae120e0c6e486d55986d0e52ca80139d9d0caa6a SHA256: c8afaa6cdc7c0433ae206b67ce2d2b8160cec8235c81b980eadda81de903b83a Description: Transitional package for libgl1-mesa-dri Multi-Arch: same Description-md5: 9a7de445e8bac29ba462ed2ed1c389cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-raring-dbg_5_i386.deb Size: 1548 MD5sum: 62e7b4b1c5af0cc79a2d174dc1cd229e SHA1: 1bb33cfb136100a187c362239ed26b34b7d24730 SHA256: 457eee7797faf50ee73f17e2073317ec12bbf0243dec22bd84ccd730f63d80df Description: Transitional package for libgl1-mesa-dri-dbg Multi-Arch: same Description-md5: d72a23e5517e82e7f8ee69acfa3811a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-saucy_5_i386.deb Size: 1540 MD5sum: 8f8e36e4729b4bdac0dc41134f832357 SHA1: 9fc7fbe029c9ad8d632913458cdfc52a97302b70 SHA256: 0ff579ddf7636e9627809369b8d7b5edaf68be369151df99c3e21eb2d6b8eeb2 Description: Transitional package for libgl1-mesa-dri Multi-Arch: same Description-md5: 9a7de445e8bac29ba462ed2ed1c389cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-dri-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-dri-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-dri-lts-saucy-dbg_5_i386.deb Size: 1548 MD5sum: 5f34ff0c975e29e1fa39ce506720ab8d SHA1: 9bf1879106b230287a40d91a57b27fec95ae042b SHA256: 57a1eebcd6f3efda0510b29db088af1e3670af4a522545788277d6e8e0c0462c Description: Transitional package for libgl1-mesa-dri-dbg Multi-Arch: same Description-md5: d72a23e5517e82e7f8ee69acfa3811a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx Priority: optional Section: libs Installed-Size: 484 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1, libgl1-mesa-dri (<< 6.4.0) Provides: libgl1 Depends: libc6 (>= 2.8), libdrm2 (>= 2.3.1), libglapi-mesa (= 10.1.0-4ubuntu5), libx11-6 (>= 2:1.4.99.1), libx11-xcb1, libxcb-dri2-0 (>= 1.8), libxcb-dri3-0, libxcb-glx0 (>= 1.8), libxcb-present0, libxcb-sync1, libxcb1 (>= 1.9.2), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxshmfence1, libxxf86vm1, libudev1 | libudev0 Pre-Depends: multiarch-support Recommends: libgl1-mesa-dri (>= 7.2) Conflicts: libgl1, libgl1-mesa-dri (<< 6.4.0) Breaks: fglrx-glx (<< 1:11-6-1), glx-diversions (<< 0.4), libgl1-nvidia-alternatives (<= 275.09.07-1) Filename: pool/main/m/mesa/libgl1-mesa-glx_10.1.0-4ubuntu5_i386.deb Size: 112042 MD5sum: 8c6fb8f2f0dc1b92ee9ce1881484402b SHA1: 313393ebbe0e3cf1318351a2d9721778bf18e59e SHA256: 8b8caa767d0f87baa0d62674885f28b99ff343ca1d0a7136b7565e0c4ad9d394 Description: free implementation of the OpenGL API -- GLX runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 55c9cfe284958a4586b3c6b8323ccf0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgl1-mesa-glx-dbg Priority: extra Section: libdevel Installed-Size: 1716 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgl1-mesa-glx (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libgl1-mesa-glx-dbg_10.1.0-4ubuntu5_i386.deb Size: 362262 MD5sum: 0e8ac217a3003e002d629ac1573da868 SHA1: 6d5ab0b3405de852a9a9f102a8e817107c9900a5 SHA256: d15a4c0e579c8c2b61de077a80aca2d543a53545a648af0a8dcc348bb07db442 Description: Debugging symbols for the Mesa GLX runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 164c9f30dd80a2fb1fdca740b3ebe620 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-quantal_5_i386.deb Size: 1546 MD5sum: 558e4c9839333b5a42017540dd14fefa SHA1: 9630fa55a9cd66887e7c2a361a63a717cbe51d88 SHA256: 6155bcbed0119d48198e27a8d5fe8f86eca6dde2ca4a81c6c7675e0b57b84051 Description: Transitional package for libgl1-mesa-glx Multi-Arch: same Description-md5: c69f8a316627c7b70013b3d025870bea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-quantal-dbg_5_i386.deb Size: 1556 MD5sum: 1a5762d40eb4774c6065223ba82414e7 SHA1: fc6ca62c5c986fd447314a4889bdf82ddae267e5 SHA256: 86ea0211abf40f5a367b7fdf29d60c07779c814f38e03bc31ee39de69172497b Description: Transitional package for libgl1-mesa-glx-dbg Multi-Arch: same Description-md5: dc372af57f5a0ca55ac96da97e4f10e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-raring_5_i386.deb Size: 1546 MD5sum: 645422193ef7c0ee395f4c3581335751 SHA1: a2ed49bc48c5582612110688c5da7f644359602e SHA256: 1c17c5a610eee8a2cf0145f25b51c0b5859cd6aab188d67a7c33bae29ac2e2a5 Description: Transitional package for libgl1-mesa-glx Multi-Arch: same Description-md5: c69f8a316627c7b70013b3d025870bea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-raring-dbg_5_i386.deb Size: 1550 MD5sum: 75cc17a64b72fc5bf5f3b40087fbf87f SHA1: 9dd292f55ef1ec7e102595bf328d7e70df0ef38d SHA256: 9875b779e9fe819ec4dd9c793def21d22cbedf1ed9b6ddcee980a4c0a4d9e370 Description: Transitional package for libgl1-mesa-glx-dbg Multi-Arch: same Description-md5: dc372af57f5a0ca55ac96da97e4f10e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-saucy_5_i386.deb Size: 1542 MD5sum: 7275164d60592bfc6667754addd607c0 SHA1: 6a2604e0420367436f7f5b92f36276841f8aaa08 SHA256: 4af080699ca89ad3526b97b409d672b47603ca8e11975390f39e7b838362143d Description: Transitional package for libgl1-mesa-glx Multi-Arch: same Description-md5: c69f8a316627c7b70013b3d025870bea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgl1-mesa-glx-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgl1-mesa-glx-dbg Filename: pool/main/x/xorg-lts-transitional/libgl1-mesa-glx-lts-saucy-dbg_5_i386.deb Size: 1546 MD5sum: a9a6f78b68e452f4b6cd6835b781f99f SHA1: 627e4fabba14d918d7b1a80f1f473bc5c4ca5d14 SHA256: 6496bc21cebbf672b420f7fb4c0839461e0d01a3ab8c0d8e9ab5250ca0162601 Description: Transitional package for libgl1-mesa-glx-dbg Multi-Arch: same Description-md5: dc372af57f5a0ca55ac96da97e4f10e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglade2-0 Priority: optional Section: libs Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Rottmann Architecture: i386 Source: libglade2 Version: 1:2.6.4-2 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.8.0), libpango-1.0-0 (>= 1.14.0), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/libg/libglade2/libglade2-0_2.6.4-2_i386.deb Size: 43712 MD5sum: fab2e40e1be830c41659f906f446567f SHA1: 6026523fcd3a9b6006074907a175156a1677122b SHA256: 03d6a38c8bf5d2e4a7fbb028a540e3b658d2d3034f464b92a8ab0ebf04b0476f Description: library to load .glade files at runtime Multi-Arch: same Description-md5: 6e56664fb6001810a1e64733986a86de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop Package: libglade2-dev Priority: optional Section: libdevel Installed-Size: 477 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Rottmann Architecture: i386 Source: libglade2 Version: 1:2.6.4-2 Replaces: libglade2-0 (<< 2.0.1-10) Depends: libglade2-0 (= 1:2.6.4-2), libgtk2.0-dev (>= 2.0.6), libxml2-dev, python:any (>= 2.0) Suggests: glade | glade-gnome Filename: pool/main/libg/libglade2/libglade2-dev_2.6.4-2_i386.deb Size: 70982 MD5sum: 8e46881abd2392fc4bb4a8bc8f658e8a SHA1: 2a5b3c4063988ad3f4d8eb25d0ffbb7f175f93c3 SHA256: 6b63d108928889521d7ec312c5e6fbb68dfc816522a5424c63535e0a7678136d Description: development files for libglade Multi-Arch: same Description-md5: 00fc238e403e022fdf1a77940c605775 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglade2.0-cil Priority: optional Section: libs Installed-Size: 242 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: i386 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: gtk-sharp2-gapi (<< 2.10.0-1) Depends: cli-common (>= 0.5.6), libglade2-0 (>= 1:2.6.1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1), libc6 (>= 2.1.3) Suggests: monodoc-gtk2.0-manual Filename: pool/main/g/gtk-sharp2/libglade2.0-cil_2.12.10-5_i386.deb Size: 20302 MD5sum: a496460823f944acc3d81631d3b04c3b SHA1: 7ed0654124fb38252c48f539290d89d0f5b8d186 SHA256: 24c433ab406ea795ae7a17691acba46b81916e2e43e8f3fd5a950978b6b26e02 Description: CLI binding for the Glade libraries 2.6 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 0faa79edc932878ece4f6691793afad3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libglade2.0-cil-dev Priority: optional Section: libs Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: i386 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: libglade2.0-cil (<< 2.12.9-2) Depends: libglade2.0-cil (= 2.12.10-5), libgtk2.0-cil-dev (= 2.12.10-5) Filename: pool/main/g/gtk-sharp2/libglade2.0-cil-dev_2.12.10-5_i386.deb Size: 4428 MD5sum: eab66eeba58043a888a5ac1286634491 SHA1: 84f8fa89f7b9d971b7c52fd11f635d8ea20c71ce SHA256: c09750acc275568b7010e9cca07484ca43d99e51fae15fe2f563698d00abba53 Description: CLI binding for the Glade libraries 2.6 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 6b4b0183170e2855e04ceccbdcec3491 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgladeui-2-6 Priority: optional Section: libs Installed-Size: 1922 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: glade Version: 3.16.1-0ubuntu2 Replaces: libgladeui-2-0, libgladeui-2-4 Depends: libc6 (>= 2.7), libcairo2 (>= 1.10.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.10), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libpython2.7 (>= 2.7), libxml2 (>= 2.7.4), libgladeui-common (= 3.16.1-0ubuntu2) Conflicts: libgladeui-2-0, libgladeui-2-4 Filename: pool/main/g/glade/libgladeui-2-6_3.16.1-0ubuntu2_i386.deb Size: 442880 MD5sum: 144a281b60e0f822332b6bc8ebe2583e SHA1: 7102f4e2a943f653a2e6b73e3c35bc4ca6a116e9 SHA256: 0c0ae39bcf46afe967f8d506281e5be4cde4ae45320adcbdc16e5dbffb6dbe0d Description: GTK+ User Interface Build core library Homepage: http://glade.gnome.org/ Description-md5: 715dec2c8acd12f4db222b35b00c8973 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgladeui-common Priority: optional Section: libs Installed-Size: 2076 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: glade Version: 3.16.1-0ubuntu2 Replaces: libgladeui-1-9 Filename: pool/main/g/glade/libgladeui-common_3.16.1-0ubuntu2_all.deb Size: 95688 MD5sum: e3fc780f3c24d3d5c7daeaa2e6284f3b SHA1: 4348ff60f1a61982d6c4ce5e7739edd0496fda64 SHA256: cbba5f04aa3e0d62172ac5983eb2cb2569aa3eaa8899d9b9e84197d8c790bd37 Description: GTK+ User Interface Build core library (common files) Homepage: http://glade.gnome.org/ Description-md5: 88409110f44042d9e0426a606647b036 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgladeui-dev Priority: optional Section: libdevel Installed-Size: 1467 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: glade Version: 3.16.1-0ubuntu2 Depends: libgladeui-2-6 (= 3.16.1-0ubuntu2), gir1.2-gladeui-2.0 (= 3.16.1-0ubuntu2), libgtk-3-dev (>= 3.10), libxml2-dev (>= 2.4.0) Suggests: libgladeui-doc Filename: pool/main/g/glade/libgladeui-dev_3.16.1-0ubuntu2_i386.deb Size: 74822 MD5sum: d46f66df0715ccde6ff3b237b023c971 SHA1: 1fd3e81f4752768a51dfe5578860c33b18af2d6e SHA256: 2730427a70df10ec83e678191e10f94d4fdc6b744f57a12e93fad8611c3553b4 Description: GTK+ User Interface Build core library (development files) Homepage: http://glade.gnome.org/ Description-md5: fb03358fc973ba5e6abda03b615d8640 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgladeui-doc Priority: optional Section: doc Installed-Size: 1690 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: glade Version: 3.16.1-0ubuntu2 Filename: pool/main/g/glade/libgladeui-doc_3.16.1-0ubuntu2_all.deb Size: 110938 MD5sum: ee5c89376069a1209047d6dda77d9824 SHA1: 0c469f67f1076e6e994e5f1b761ade65130c6041 SHA256: 9c8337fa99990d9f5fe2a817b6a41d75e10929012cd930ee939395210dbda0d9 Description: GTK+ User Interface Build core library (documentation) Homepage: http://glade.gnome.org/ Description-md5: c3b00de69ef3a31852a6b4b9622628b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglamor-dev Priority: optional Section: libdevel Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: glamor-egl Version: 0.6.0-0ubuntu4 Depends: libglamor0 (= 0.6.0-0ubuntu4) Filename: pool/main/g/glamor-egl/libglamor-dev_0.6.0-0ubuntu4_i386.deb Size: 6464 MD5sum: 330af87d6dd392d8acce995399faa4d7 SHA1: e36b76a522fc9cb7fc37aa89b896f1647f499bdb SHA256: 08081765e9d3f79aba742f52c5e9d5027cd94854b0f3440cf3a276cec50bbb29 Description: shared graphics acceleration library based on OpenGL -- development files Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/Glamor Description-md5: 93fd7b9cc39d2090caf46ed2cba776e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglamor-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libglamor-dev Filename: pool/main/x/xorg-lts-transitional/libglamor-dev-lts-saucy_5_i386.deb Size: 1524 MD5sum: de14d1454b726a1b70c94b36d697a346 SHA1: b362afb42ac9708ec6a5bf1217b46d003b75754b SHA256: 0ce73c27b89778c350c48a7c009830c847440cb26fd8462aa3ad903cbd6d1b3d Description: Transitional package for libglamor-dev Description-md5: 797405077fd2e85ec9c2a8f78323633b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglamor-ltss0 Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libglamor0 Filename: pool/main/x/xorg-lts-transitional/libglamor-ltss0_5_i386.deb Size: 1512 MD5sum: 19cf85836f50d32aa370c0cfa18a7209 SHA1: 0488492b9ae7b6de838cdd347073b2686a0fe6f2 SHA256: 18e19faa944f3e9d20d070d7488c0283af58afd0faf1f0afb80ff01d317612fa Description: Transitional package for libglamor0 Description-md5: 76a3aedff60474abfd73b3bdcebc50c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglamor0 Priority: optional Section: libs Installed-Size: 254 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: glamor-egl Version: 0.6.0-0ubuntu4 Depends: libc6 (>= 2.7), libgl1-mesa-glx | libgl1 Pre-Depends: multiarch-support Filename: pool/main/g/glamor-egl/libglamor0_0.6.0-0ubuntu4_i386.deb Size: 81462 MD5sum: 3d6d8ca120cce59f7a3b3362e3823762 SHA1: bb3fd88e20cade0b9e4813063f1097cdacf17cf1 SHA256: f9fff8dc07841f7a0a0dd689c5422efd8a181b7471e20d32cc4b5a442983cdf2 Description: shared graphics acceleration library based on OpenGL Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/Glamor Description-md5: 14a7b54bbef377c02b5f70bf4463697e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libglapi-mesa Priority: optional Section: libs Installed-Size: 178 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libc6 (>= 2.3.6-6~) Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libglapi-mesa_10.1.0-4ubuntu5_i386.deb Size: 21378 MD5sum: 9dadc1366561cf7a8e46fd9ae93f5f6a SHA1: 23c17369c10c4bd5827ecaa11d3c6cdc76f44860 SHA256: e3c1cc50d96bc8e7ac0cdb7271fa1571cb88505ddef2d9255c768124f06ae88d Description: free implementation of the GL API -- shared library Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 6da05dae0e50a214ae9b1d095f83c561 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libglapi-mesa-dbg Priority: extra Section: debug Installed-Size: 166 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libglapi-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libglapi-mesa-dbg_10.1.0-4ubuntu5_i386.deb Size: 19984 MD5sum: ea3c24c1bd3ff3cd15aa7196f89882f5 SHA1: 484bdb1ebb2ac4dcd6a438037050b310c4bef6e5 SHA256: b175469c65cc764254a90a821a8677daa1953e22350d471c653710f1f00fbef4 Description: free implementation of the GL API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 06022288c7b9a148961fac43facd60e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-quantal_5_i386.deb Size: 1540 MD5sum: d275e416ee81878be3bc805dde07dd15 SHA1: 2f990096b7a9501698ce2ccd50c1ba8ea9b01477 SHA256: 1346ba08da85daff363f2cfa93fcc7b8b568ee25b09e443c25efe328bcf6885a Description: Transitional package for libglapi-mesa Multi-Arch: same Description-md5: aa66a98097067f6c56807fdf09aa36d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-quantal-dbg_5_i386.deb Size: 1550 MD5sum: b7b138d831e8bc96990d449f9220e8b7 SHA1: a78eb80d9b4a6de95b610d061e55cf8d8b45d168 SHA256: 8a56821849323ae69fce5a43dff97d1cc0eddb4d3ec2ee48d720e02c53129232 Description: Transitional package for libglapi-mesa-dbg Multi-Arch: same Description-md5: 06c6856ae6502d3123d7e06c0e28f26b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-raring_5_i386.deb Size: 1540 MD5sum: 7d4309f2e4c2afa0b07dd145560621c0 SHA1: 6ed9428d31c985b44230fe814f7d30adb47a72f6 SHA256: 3883b3013ddfdde24cc6a7d1c7a6dd0e6d69a0fbb54d96d4eac5888ac27f524a Description: Transitional package for libglapi-mesa Multi-Arch: same Description-md5: aa66a98097067f6c56807fdf09aa36d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-raring-dbg_5_i386.deb Size: 1548 MD5sum: 876f1257390caa99b039719f68f15edc SHA1: 13ef994bffc0310f93a39c0fb8d2854375c820f9 SHA256: 783fbcb0043eab11fc1827479d80cb20505505771a6a5f489b5ccf593a2f4ff4 Description: Transitional package for libglapi-mesa-dbg Multi-Arch: same Description-md5: 06c6856ae6502d3123d7e06c0e28f26b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-saucy_5_i386.deb Size: 1538 MD5sum: f50a7c30ef1421b4424be626d54c7911 SHA1: 00f221d503f4b86ebe997fef14a15a24f9cbb808 SHA256: 1fc72be240094b8d1366a947cc584dc19201f390a401e7b86c9b976a7b12ce12 Description: Transitional package for libglapi-mesa Multi-Arch: same Description-md5: aa66a98097067f6c56807fdf09aa36d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglapi-mesa-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libglapi-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libglapi-mesa-lts-saucy-dbg_5_i386.deb Size: 1548 MD5sum: 28a8fad5ed0d3779d0e61defa357e9d3 SHA1: d98e0b53641addee25702bde053731aceac9df9f SHA256: 9d90b083381871b3b9c6056c6e7de33b42069a41a85e4b49dd48889740ac0cf5 Description: Transitional package for libglapi-mesa-dbg Multi-Arch: same Description-md5: 06c6856ae6502d3123d7e06c0e28f26b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgles1 Provides: libgles1 Depends: libglapi-mesa (= 10.1.0-4ubuntu5), libc6 (>= 2.3.6-6~) Pre-Depends: multiarch-support Conflicts: libgles1 Filename: pool/main/m/mesa/libgles1-mesa_10.1.0-4ubuntu5_i386.deb Size: 11276 MD5sum: eaf3118dd65628eca81f47f8e797bd58 SHA1: 6e0674024e85d07e19f0d4066f360ef7cf8457b9 SHA256: 28e00124fe43519904e3ce6a003f29e5f0036506d82b6a5b5d311e6fb74419aa Description: free implementation of the OpenGL|ES 1.x API -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 5d45602a19e7c4d5c096452a8c1b6ee3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-dbg Priority: extra Section: debug Installed-Size: 112 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgles1-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libgles1-mesa-dbg_10.1.0-4ubuntu5_i386.deb Size: 8756 MD5sum: a64dd18508dc36dccb4e1f9ae0140a4f SHA1: 70243d7912503afa77c74e6077473cbca431bb33 SHA256: 68e168fb551aff624088ba9e7adef770ebeeee2ac4f00afed821df49d35d5511 Description: free implementation of the OpenGL|ES 1.x API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 4fa9b5bb249bd2e4b78b460050218045 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-dev Priority: optional Section: libdevel Installed-Size: 197 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgles1-mesa (= 10.1.0-4ubuntu5), libegl1-mesa-dev Filename: pool/main/m/mesa/libgles1-mesa-dev_10.1.0-4ubuntu5_i386.deb Size: 17734 MD5sum: f209958c41df769bf66e1d73a5572a3a SHA1: d254cc5f6042b4eb9b3fb9957c4eca257cb44375 SHA256: 3763134243a47ad7293a06ba25031315e35f9e4d7d7626fd1beaee814818c296 Description: free implementation of the OpenGL|ES 1.x API -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 3fc8f0ee3bdb7f86c55dc67a5bbbf86f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-dev-lts-quantal_5_i386.deb Size: 1548 MD5sum: 5d1f6fbf770f20e829ecf30857e212e5 SHA1: 6df81d601f88f5bd2445bdecacebf8f0b9484831 SHA256: 83727754cec94c4fb77857c2b40e6002ea216b39b5c6fac86d1aad8de4df664b Description: Transitional package for libgles1-mesa-dev Multi-Arch: same Description-md5: f75f14079c14bb6ae344962b324edfa0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-dev-lts-raring_5_i386.deb Size: 1548 MD5sum: f490229c7bbcbc14f4b7661d21059675 SHA1: dfb39bcf07b06bfef619842b92fd77d2ded6be23 SHA256: 25857962c0069fcf586ae21aad45442cbc7313fdb85f1f8e6b32847989e52b97 Description: Transitional package for libgles1-mesa-dev Multi-Arch: same Description-md5: f75f14079c14bb6ae344962b324edfa0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-dev-lts-saucy_5_i386.deb Size: 1548 MD5sum: 48b4d5f349a0910eba53aa81a6693890 SHA1: 7d6461180e01e0657a9562a49eb4d6ac0274df6f SHA256: effcdd7c61c2a883659bca4901a7ee22c336d997801bc7f209d4a4138992325d Description: Transitional package for libgles1-mesa-dev Multi-Arch: same Description-md5: f75f14079c14bb6ae344962b324edfa0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-quantal_5_i386.deb Size: 1542 MD5sum: ff59ee94c248bb626728dc065d96f774 SHA1: 588835b0c72b1eca79ac466eb8f9015b2c9730d7 SHA256: 60e77e9aabe3b1f2c71b9936d3bf37f7ea202c457cc7b3a43efe5a8c01515b3d Description: Transitional package for libgles1-mesa Multi-Arch: same Description-md5: 52ab3f953888468c24626193efeb8d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-quantal-dbg_5_i386.deb Size: 1550 MD5sum: 2100c2c7e01ebcd783a43738a85fd715 SHA1: 1fef55ab93226a862b514f3787972618f42cf06a SHA256: 33c47684a7e6f0b8a86b7bb7bf1cea17e4455a32a47dcd3ca4c7ac442625b47f Description: Transitional package for libgles1-mesa-dbg Multi-Arch: same Description-md5: e22be8065b33b33fb58623694b2a9ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-raring_5_i386.deb Size: 1538 MD5sum: b21ca621466f515e2cb8ae94795bce2c SHA1: ff40ce1d729c00d1e00e297f2bcd124ee0071987 SHA256: ab50c9b4409c6bc85ad7c99396e250f292c6fe17502780266f7fce069a78d31e Description: Transitional package for libgles1-mesa Multi-Arch: same Description-md5: 52ab3f953888468c24626193efeb8d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-raring-dbg_5_i386.deb Size: 1548 MD5sum: 65191c4667ee43e5f9ba328a8aab8f37 SHA1: f2d4dd67beeaf07f362b168278c07fe780fb809a SHA256: cc0544eaa8352881092663072b41baa74087e8f4702b9b403b42577871819c28 Description: Transitional package for libgles1-mesa-dbg Multi-Arch: same Description-md5: e22be8065b33b33fb58623694b2a9ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-saucy_5_i386.deb Size: 1538 MD5sum: 0f29771f469bf2768ae171e39f7ac6b4 SHA1: 33e1393dde0d0d3dceae3177eb7f1f5f173b319f SHA256: 0f2bb8280a2eb64325e69f21ef33bf4bb517ed88f82236db16d62b9ac293db84 Description: Transitional package for libgles1-mesa Multi-Arch: same Description-md5: 52ab3f953888468c24626193efeb8d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles1-mesa-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles1-mesa-lts-saucy-dbg_5_i386.deb Size: 1548 MD5sum: e9c2350f3edaf189e6a47aea841ece18 SHA1: a569a48df306b2214d4bb78da1adc88926e00c44 SHA256: 48a94065ffca8e913d6171de2d605f3e8e29692c82ee5290827aa20aa7414bb0 Description: Transitional package for libgles1-mesa-dbg Multi-Arch: same Description-md5: e22be8065b33b33fb58623694b2a9ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa Priority: optional Section: libs Installed-Size: 125 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgles2 Provides: libgles2 Depends: libglapi-mesa (= 10.1.0-4ubuntu5), libc6 (>= 2.3.6-6~) Pre-Depends: multiarch-support Conflicts: libgles2 Filename: pool/main/m/mesa/libgles2-mesa_10.1.0-4ubuntu5_i386.deb Size: 12374 MD5sum: e0b0928acae13ac3c499acf6f1a734ae SHA1: 12067815d4b61c47ef29abd1f8571377b7d87f88 SHA256: 604fb003d2458c02fdff04d40aa17939ff0d3bdcdb8fa19e82a86a84bdf6b886 Description: free implementation of the OpenGL|ES 2.x API -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 385f5e9ca66553853ff0600865879832 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb Package: libgles2-mesa-dbg Priority: extra Section: debug Installed-Size: 114 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgles2-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libgles2-mesa-dbg_10.1.0-4ubuntu5_i386.deb Size: 9168 MD5sum: 19de6d82582a53c1b3d0bd6b54b546e2 SHA1: 7fc8dddd8e344cc7a3fd116714c35295ca799ee7 SHA256: a3fe91c7cea794f28f6f1a447e14b0460c27c0b3d46b40ffaf58bb8a76ca4204 Description: free implementation of the OpenGL|ES 2.x API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: b9ce4487980b8d0298c3fd42c2ad83a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-dev Priority: optional Section: libdevel Installed-Size: 280 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libgles2-mesa (= 10.1.0-4ubuntu5), libegl1-mesa-dev Filename: pool/main/m/mesa/libgles2-mesa-dev_10.1.0-4ubuntu5_i386.deb Size: 23542 MD5sum: 2cb28af2e57592246d653f830bb3053d SHA1: a374f3d6543e3a2722fecfdf9ea6dbeaa16a12e3 SHA256: 493c7f69002f2b234b0361d7dcdb827b0eaf09cd887ea0e4416decb256bbd98e Description: free implementation of the OpenGL|ES 2.x API -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 7598b085943a2f03c7a2a79086dffcee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-dev-lts-quantal_5_i386.deb Size: 1548 MD5sum: 77996823c69efe0249e5c34b04a26c05 SHA1: 939ea96f20d3647936caf7164538fde6d3b8943c SHA256: dabf8b14c119fed97c85716aa066de949a7b7a9bef2893c0d00bb2530af5c8a9 Description: Transitional package for libgles2-mesa-dev Multi-Arch: same Description-md5: 663e4338469bb8090710c9b14cfa1743 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-dev-lts-raring_5_i386.deb Size: 1550 MD5sum: 8bf56c43168a2b49af6358596dcd3b02 SHA1: 473716c03c4bedd9a1e5663cf13880b2001d4c40 SHA256: 391d1a36da3eaac73f284d0dd54704bb409a44a31557a43ea55ccb95613e9eaf Description: Transitional package for libgles2-mesa-dev Multi-Arch: same Description-md5: 663e4338469bb8090710c9b14cfa1743 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-dev-lts-saucy_5_i386.deb Size: 1548 MD5sum: 8f069c99ad968fea1e42746ceb3fdbfa SHA1: 9237d6b7b928fa1c79b317ed286f1951cf037deb SHA256: 49d0e3daa8e67d0aab43160eb3b6108cc35270664020d3d8bc0bfc2148358482 Description: Transitional package for libgles2-mesa-dev Multi-Arch: same Description-md5: 663e4338469bb8090710c9b14cfa1743 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-quantal_5_i386.deb Size: 1542 MD5sum: 457ef9c5b57ff88c125c660a6a61a7b5 SHA1: cb26074c3bd02e4d4b49a5e75f05a192934086e4 SHA256: 3bfd093fa95e26bfa51771673f198e27d697c731cbeb83cb5a291ef05633b34f Description: Transitional package for libgles2-mesa Multi-Arch: same Description-md5: 0bd6303519e75090503badf99b6db9fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-quantal-dbg_5_i386.deb Size: 1550 MD5sum: 5013acb8453b66f763added58337709f SHA1: 1814feef4ebc47f0238878ee0dc40ef0d23207b1 SHA256: 4fd5f730fa30bff1e5be2e09305728e816880a80b74dcb97b196015c57ee4767 Description: Transitional package for libgles2-mesa-dbg Multi-Arch: same Description-md5: b0c686a6bfb7b0a2517f21826b9df109 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-raring_5_i386.deb Size: 1540 MD5sum: d97f0cea9a7b829f97b2c9a0cb0b1bc7 SHA1: 675bb1b7afdfd54b42f3f4782a3eaf36f5017aa1 SHA256: 9aab411dc00395da8e19bfe39e5f8697545203fa4a3aef7b72ac4a9365c65bb2 Description: Transitional package for libgles2-mesa Multi-Arch: same Description-md5: 0bd6303519e75090503badf99b6db9fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-raring-dbg_5_i386.deb Size: 1548 MD5sum: c00698c0e56cdaa432bc5488973dda20 SHA1: a72ac70b9aa1046bacebbaae60877c469464c82f SHA256: 799170c10c79e77a60572096189f4f80a4e93ce6b2e66dbb7382ed845f6072fd Description: Transitional package for libgles2-mesa-dbg Multi-Arch: same Description-md5: b0c686a6bfb7b0a2517f21826b9df109 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-saucy_5_i386.deb Size: 1538 MD5sum: cf53f6aec0e788483270ced838b779dc SHA1: b66149f7e8dc1951b90b56734d711b83008a09c3 SHA256: d818c8a264faa9d4977766a74fe679ec3d5fe6cd741455149253c7ac823a7bfe Description: Transitional package for libgles2-mesa Multi-Arch: same Description-md5: 0bd6303519e75090503badf99b6db9fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgles2-mesa-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libgles2-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libgles2-mesa-lts-saucy-dbg_5_i386.deb Size: 1548 MD5sum: f324224cef57e52c2f0b27d242a16693 SHA1: 5d624cfd04cc1a06707982913cdcc1df91117686 SHA256: 729550f7638d99a34ac7daab0311f1bfae2dacba4b2cccf5d0bfbbb4989192d7 Description: Transitional package for libgles2-mesa-dbg Multi-Arch: same Description-md5: b0c686a6bfb7b0a2517f21826b9df109 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglew-dbg Priority: extra Section: debug Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: glew Version: 1.10.0-3 Depends: libglew1.10 (= 1.10.0-3) Filename: pool/main/g/glew/libglew-dbg_1.10.0-3_i386.deb Size: 29926 MD5sum: 6a1d9f508e2776f3a1e51f5ebc22fef8 SHA1: ce10f1c2f9ea529ba8492f2f6255098246bb0627 SHA256: 94740e56e007b211bec174614e23577b7576cd94b8a3fa95818580a7f1a6bb18 Description: OpenGL Extension Wrangler (debugging symbols) Homepage: http://glew.sourceforge.net Description-md5: 412d1a425b081ef439e5512c62496c47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglew-dev Priority: optional Section: libdevel Installed-Size: 1087 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: glew Version: 1.10.0-3 Provides: libglew1.5-dev, libglew1.6-dev Depends: libgl1-mesa-dev | libgl-dev, libglew1.10 (= 1.10.0-3), libglu1-mesa-dev | libglu-dev Conflicts: libglew1.6-dev Filename: pool/main/g/glew/libglew-dev_1.10.0-3_i386.deb Size: 109094 MD5sum: e283352fbf0ad51f5f98286ab3e00368 SHA1: 9ddae8c202d9c4a1f9d122b184ef07f54e07a39f SHA256: e907ea2d5780a42231719982e5afec37c4a2f580202cc205af45364dc9afa8dd Description: OpenGL Extension Wrangler - development environment Multi-Arch: same Homepage: http://glew.sourceforge.net Description-md5: 7427fd4ce3a98efd3c555bb26ce0059c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglew1.10 Priority: optional Section: libs Installed-Size: 583 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: glew Version: 1.10.0-3 Depends: libc6 (>= 2.1.3), libgl1-mesa-glx | libgl1 Pre-Depends: multiarch-support Suggests: glew-utils Conflicts: libglew1 Filename: pool/main/g/glew/libglew1.10_1.10.0-3_i386.deb Size: 120942 MD5sum: 6833595dfebcbf3736c33e3aae964cdf SHA1: f4cee678dd40e41a7d3118588576fdd9fd94bb95 SHA256: f365df49ddbe80e2d48d33bc879294dd07714f5d789c2085c3b6e2e91eedee9b Description: OpenGL Extension Wrangler - runtime environment Multi-Arch: same Homepage: http://glew.sourceforge.net Description-md5: 6745d43b8defe395b5a7da9eac9e1e7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libglewmx-dbg Priority: extra Section: debug Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: glew Version: 1.10.0-3 Depends: libglewmx1.10 (= 1.10.0-3) Filename: pool/main/g/glew/libglewmx-dbg_1.10.0-3_i386.deb Size: 22732 MD5sum: 13670927e31c90fe8fcab3f2efbff545 SHA1: 90c930e970465e42f5e35b9ce7f2c8d0b5d5b9b4 SHA256: 7135e61bf1d746524a2d0774dd903b1835b2ebc2cae7ca11cbc7c7c14f8b90d1 Description: OpenGL Extension Wrangler MX (debugging symbols) Homepage: http://glew.sourceforge.net Description-md5: c3bee54b07904264a64c192a7f06ac29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglewmx-dev Priority: optional Section: libdevel Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: glew Version: 1.10.0-3 Provides: libglewmx1.5-dev, libglewmx1.6-dev Depends: libglew-dev, libglewmx1.10 (= 1.10.0-3) Conflicts: libglewmx1.6-dev Filename: pool/main/g/glew/libglewmx-dev_1.10.0-3_i386.deb Size: 3482 MD5sum: 4970d89f1f71490aeae5e5acbea4ef1a SHA1: a3e6a7a8d75b7f7fb27d2366266c55c54d60ba24 SHA256: 445b8825b53c2c0f91a23b5686f29b2e04bc1f2af581e66d205fd83ee601a6c2 Description: OpenGL Extension Wrangler MX - development environment Multi-Arch: same Homepage: http://glew.sourceforge.net Description-md5: c95e54d7d437f73f192c317a764f9d0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglewmx1.10 Priority: optional Section: libs Installed-Size: 524 Maintainer: Ubuntu Developers Original-Maintainer: Matteo F. Vescovi Architecture: i386 Source: glew Version: 1.10.0-3 Depends: libc6 (>= 2.1.3), libgl1-mesa-glx | libgl1 Pre-Depends: multiarch-support Conflicts: libglew1 Filename: pool/main/g/glew/libglewmx1.10_1.10.0-3_i386.deb Size: 108534 MD5sum: 5b3af5466f08e7e020652941743fe75f SHA1: 5a0a1e63fdbf6067504aedcec79c6fa8207b7d15 SHA256: ff7760467a793b256c4d55aecba1604ef6489a1aa4c89154f2dcdb30ca7bb39a Description: OpenGL Extension Wrangler (Multiple Rendering Contexts) Multi-Arch: same Homepage: http://glew.sourceforge.net Description-md5: e0a1d2c5e61300cfeae79ea23128afb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libglib2.0-0 Priority: standard Section: libs Installed-Size: 4656 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: glib2.0 Version: 2.40.0-2 Replaces: libglib2.0-dev (<< 2.23.2-2) Depends: libc6 (>= 2.17), libffi6 (>= 3.0.4), libpcre3, libselinux1 (>= 1.32), zlib1g (>= 1:1.2.2) Pre-Depends: multiarch-support Recommends: libglib2.0-data, shared-mime-info Breaks: glib-networking (<< 2.33.12), gvfs (<< 1.8), libgnome-desktop-3-2 (<< 3.4.2-2), python-gi (<< 3.7.2) Filename: pool/main/g/glib2.0/libglib2.0-0_2.40.0-2_i386.deb Size: 1030908 MD5sum: a7546bf7a7ad0f3b2b3a01e594495252 SHA1: 799bf83d72cfaef07406f4be5ed5b1756ffd7ef1 SHA256: 05b54ded01daa3047dea64be60aef9b4b19ca7d093c9edfba78c862c99f3a39f Description: GLib library of C routines Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: f44de6293be1aa02cd13d73f591580a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libglib2.0-0-dbg Priority: extra Section: libdevel Installed-Size: 9356 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: glib2.0 Version: 2.40.0-2 Replaces: libglib2.0-dbg Depends: libglib2.0-0 (= 2.40.0-2) Conflicts: libglib2.0-dbg Filename: pool/main/g/glib2.0/libglib2.0-0-dbg_2.40.0-2_i386.deb Size: 5607986 MD5sum: 7651f1ec427fed11119fc1296aca392a SHA1: 3cc32c71c1dbf8724bf4d4cb4d7f2dfe1b0e7b8f SHA256: ff9f8c7b37f44340d3b78d967fa4f5cf632a88daf065bf97ce62db62f9308575 Description: Debugging symbols for the GLib libraries Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 5650e35d4052b9bd7fc47bcc10bd8f50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglib2.0-bin Priority: optional Section: misc Installed-Size: 1414 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: glib2.0 Version: 2.40.0-2 Replaces: libglib2.0-0 (<< 2.25.11-2), libglib2.0-dev (<< 2.25.11-2) Depends: libc6 (>= 2.2), libelfg0 (>= 0.8.12), libglib2.0-0 (= 2.40.0-2), libglib2.0-data Conflicts: libglib2.0-0 (<< 2.25.11-2) Filename: pool/main/g/glib2.0/libglib2.0-bin_2.40.0-2_i386.deb Size: 34424 MD5sum: a04daa6c317eda1707ae836ce44b43d2 SHA1: 58f0014aa4fd628706950f2b20a94afbf849d7a4 SHA256: e010e28e374dec72d46cc0e9392c019bffde1ce15e9c8a456db585d3de431f80 Description: Programs for the GLib library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: b999624c61f8058d0201077f097c87ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libglib2.0-cil Priority: optional Section: libs Installed-Size: 304 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: i386 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: gtk-sharp2-gapi (<< 2.10.0-1) Depends: cli-common (>= 0.5.6), libglib2.0-0 (>= 2.34.1), libmono-corlib4.0-cil (>= 2.10.1), libmono-system4.0-cil (>= 2.10.7), libc6 (>= 2.1.3) Suggests: monodoc-gtk2.0-manual Filename: pool/main/g/gtk-sharp2/libglib2.0-cil_2.12.10-5_i386.deb Size: 50350 MD5sum: 186d3325183e58f415cbc103711acfe8 SHA1: dab759c08e0fe1a6cc1a44ec5175bb85a4d1c5b0 SHA256: 757fae958954b7f6fd18042248efbff4d2deb799d99f4d0f8b3d08a4f3899f88 Description: CLI binding for the GLib utility library 2.12 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 3b6e979e1352e96a2f3eca3f708e29c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libglib2.0-cil-dev Priority: optional Section: libs Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: i386 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: libglib2.0-cil (<< 2.12.9-2) Depends: libglib2.0-cil (= 2.12.10-5) Filename: pool/main/g/gtk-sharp2/libglib2.0-cil-dev_2.12.10-5_i386.deb Size: 2406 MD5sum: d2cc57043276f9cfb425ed96dec5db1a SHA1: ef2428c3993f36cf2476527ce8e49a32aa229218 SHA256: f41ee1ef5f44fc4bfaa8b9dd88cc08e0ea505b8574fcaa5491366be74513905d Description: CLI binding for the GLib utility library 2.12 Homepage: http://www.mono-project.com/GtkSharp Description-md5: e7432bd7eb91c1c711c14150f81a3556 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglib2.0-data Priority: standard Section: misc Installed-Size: 1340 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: glib2.0 Version: 2.40.0-2 Filename: pool/main/g/glib2.0/libglib2.0-data_2.40.0-2_all.deb Size: 115598 MD5sum: c918281e0d1005cb2a74d9ced2a5ae45 SHA1: 3e9a998f3749fe855ba8beb70b7a2b3ea9ed5d41 SHA256: 64858f2aba356c45b5d7fc97f339f5bfe0e00a3db3736074fc9a0f2039dfb4fc Description: Common files for GLib library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: e30141317e2f372da30c78d06ac076ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libglib2.0-dev Priority: optional Section: libdevel Installed-Size: 8068 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: glib2.0 Version: 2.40.0-2 Depends: libc6 (>= 2.4), libglib2.0-0 (= 2.40.0-2), python:any (>= 2.7.1-0ubuntu2), libglib2.0-bin (= 2.40.0-2), libpcre3-dev (>= 1:8.31), pkg-config (>= 0.16.0), zlib1g-dev Suggests: libglib2.0-doc Filename: pool/main/g/glib2.0/libglib2.0-dev_2.40.0-2_i386.deb Size: 1285580 MD5sum: 24e5ccc34e41d825c79a7b367dc086d9 SHA1: c852d6157efc28f51c75f093308f4fae2c788f27 SHA256: 4e121384a667eccc166f4f31b0bbf189cd412590b7661a4d0270fbfde5b50667 Description: Development files for the GLib library Homepage: http://www.gtk.org/ Description-md5: f1a310bc28a3b8566d2f79a4116e8a0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglib2.0-doc Priority: optional Section: doc Installed-Size: 19660 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: glib2.0 Version: 2.40.0-2 Suggests: devhelp Filename: pool/main/g/glib2.0/libglib2.0-doc_2.40.0-2_all.deb Size: 1460876 MD5sum: d5d90fa45651bec7b8755cdb2a20a656 SHA1: 729fe6e15ab5a5003ec77be8d97fc53cc413609c SHA256: 043aeb20ae669d6fc1f91c0e1e9c22a78d9b21b2bd08946289281a7b0bc8b04d Description: Documentation files for the GLib library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: bdb9aa53f83dabd5dab7d58c0e8cd803 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libglibmm-2.4-1c2a Priority: optional Section: libs Installed-Size: 2095 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: i386 Source: glibmm2.4 Version: 2.39.93-0ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.39.90), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/g/glibmm2.4/libglibmm-2.4-1c2a_2.39.93-0ubuntu1_i386.deb Size: 433132 MD5sum: 38b44c4ec0f6c3e0ac7bf33242fdd281 SHA1: 9079fb2c7773a113a3f4810a7b32541bf74f6ba2 SHA256: fa5d97b7514574b87b2e0e3b2f8638a56d68a6f57fdc5128e33b7b018b4a12dd Description: C++ wrapper for the GLib toolkit (shared libraries) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 87d5a10c4444939b2982878ee5b90405 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libglibmm-2.4-dbg Priority: extra Section: libdevel Installed-Size: 10857 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: i386 Source: glibmm2.4 Version: 2.39.93-0ubuntu1 Depends: libglibmm-2.4-1c2a (= 2.39.93-0ubuntu1) Filename: pool/main/g/glibmm2.4/libglibmm-2.4-dbg_2.39.93-0ubuntu1_i386.deb Size: 2605548 MD5sum: 9fb35b2aaf03b1b2de7f42e6cad6e154 SHA1: e0b071b3696d39fa5d9d792a641fa1a79a88c585 SHA256: d717e90869f71c80e66f065b138636086a160c13b5cf9d5a134aa637d53af266 Description: C++ wrapper for the GLib toolkit (debug symbols) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 04d73beb338e22969273f09d2dc94f81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglibmm-2.4-dev Priority: optional Section: libdevel Installed-Size: 6140 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: i386 Source: glibmm2.4 Version: 2.39.93-0ubuntu1 Depends: libglibmm-2.4-1c2a (= 2.39.93-0ubuntu1), libglib2.0-dev (>= 2.39.4), libsigc++-2.0-dev (>= 2.2.10), pkg-config Suggests: libglibmm-2.4-doc, libgtkmm-3.0-dev Filename: pool/main/g/glibmm2.4/libglibmm-2.4-dev_2.39.93-0ubuntu1_i386.deb Size: 757482 MD5sum: 55809acf84d421b6c13b5200bf34ab2c SHA1: 62f800bfb7fad4a86f3ad5b53fc13537ee9cda32 SHA256: 15b2e43a3e004cc29d7e19829cb0a874eed29327ac3b009948c36c3fcf2f5373 Description: C++ wrapper for the GLib toolkit (development files) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: f2f4409738ae61132ca83383cf54bdfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglibmm-2.4-doc Priority: optional Section: doc Installed-Size: 32147 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: all Source: glibmm2.4 Version: 2.39.93-0ubuntu1 Depends: doc-base, lynx | www-browser Suggests: gtkmm-documentation Filename: pool/main/g/glibmm2.4/libglibmm-2.4-doc_2.39.93-0ubuntu1_all.deb Size: 4493154 MD5sum: 0a2bed3b6055fa1f9cd37ad502df75b7 SHA1: 1a43ef0dc6005961dcb46bc28522af2092907d35 SHA256: e310c5deab70c2f31b792c8a5bb04a392ec3247819de2232310e64cfb6380c81 Description: C++ wrapper for the GLib toolkit (documentation) Multi-Arch: foreign Homepage: http://www.gtkmm.org/ Description-md5: 514e1a665a2ffb9cbb3d6ff36c78ed8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglm-dev Priority: extra Section: libdevel Installed-Size: 1899 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: all Source: glm Version: 0.9.5.1-1 Filename: pool/main/g/glm/libglm-dev_0.9.5.1-1_all.deb Size: 144912 MD5sum: 02853842a922c1fb399d5cac20a47d31 SHA1: e6ca19bc535cc94224770cfb8febff48a65ff50e SHA256: 804d9755d32f82bae521080d0347b1709636ef30cc619568bc67be25e00a8a46 Description: C++ library for OpenGL GLSL type-based mathematics Multi-Arch: foreign Homepage: http://glm.g-truc.net/ Description-md5: 8481f3d0f0d4f49f42598ace739888b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglm-doc Priority: extra Section: doc Installed-Size: 9221 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: all Source: glm Version: 0.9.5.1-1 Filename: pool/main/g/glm/libglm-doc_0.9.5.1-1_all.deb Size: 1422636 MD5sum: a4d19fddb52186441dd904c55c449bc5 SHA1: 7b2b27e992d02f1b09af9f29223aee92103ab8c1 SHA256: d86edeb1d0ae05bd96b3f0b6e3147e467cf94902c969b04dd96d6508aa335e70 Description: documentation for the OpenGL Mathematics (GLM) library Homepage: http://glm.g-truc.net/ Description-md5: c61948db7a4e625b05ad24cc17500c9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libglu1-mesa Priority: extra Section: libs Installed-Size: 500 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libglu Version: 9.0.0-2 Replaces: libglu1 Provides: libglu1 Depends: libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Conflicts: libglu1, mesag3 (<< 5.0.0-1), xlibmesa3 Filename: pool/main/libg/libglu/libglu1-mesa_9.0.0-2_i386.deb Size: 195314 MD5sum: 64b493d861444c33364c45f93bfda3e6 SHA1: 5748dbc568ec4e71935cbfe91071605e574bd100 SHA256: f9112aad83f9355e3ef58e46bc262151fac0df4ac3b0e1cea079a03bb34735c8 Description: Mesa OpenGL utility library (GLU) Multi-Arch: same Description-md5: 2479dddf6e2110db8dadaf1c564ba1d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libglu1-mesa-dev Priority: optional Section: libdevel Installed-Size: 777 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libglu Version: 9.0.0-2 Replaces: libglu-dev Provides: libglu-dev, xlibmesa-glu-dev Depends: libglu1-mesa (= 9.0.0-2), libgl1-mesa-dev | libgl-dev Conflicts: mesa-glide2-dev (<< 5.0.0-1), mesag-dev (<< 5.0.0-1), mesag3+ggi-dev (<< 5.0.0-1), xlibmesa-dev Filename: pool/main/libg/libglu/libglu1-mesa-dev_9.0.0-2_i386.deb Size: 248490 MD5sum: b26fb37ac2d4b3960744a04d852a727a SHA1: 3433d5141cf058c097d180fc8817ad8396fb74fd SHA256: 9709d1a821d8f212300a0d52d9acf47cd90457154995306e01cc6351aedb80b2 Description: Mesa OpenGL utility library -- development files Description-md5: d97a0f3667fdda94fa2fd42dea41e5c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libgmime-2.6-0 Priority: optional Section: libs Installed-Size: 497 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: i386 Source: gmime Version: 2.6.20-0ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.31.8), libgpgme11 (>= 1.2.0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/g/gmime/libgmime-2.6-0_2.6.20-0ubuntu1_i386.deb Size: 144194 MD5sum: 2359a8b6fb85c24ab1ced94eda94e802 SHA1: 197146fb05464b80f90b6fbc9b6a6423f621608e SHA256: 807c9c7def11900cd8f0e456fc43186c5a33ade2685565e84a0fd9ba662ac0fa Description: MIME message parser and creator library - runtime Multi-Arch: same Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: e8d929444d5769f228cc01ac215a5e18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgmime-2.6-0-dbg Priority: extra Section: debug Installed-Size: 513 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: i386 Source: gmime Version: 2.6.20-0ubuntu1 Depends: libgmime-2.6-0 (= 2.6.20-0ubuntu1) Filename: pool/main/g/gmime/libgmime-2.6-0-dbg_2.6.20-0ubuntu1_i386.deb Size: 399012 MD5sum: 738d438bb83951717934c8f2cd633273 SHA1: e2ebb3b47be7b30095dafbdd3853772f716c78ea SHA256: f033799f4f4a0fb101ceb6ba1215708048bc6e11d214becbc7247f7ad454e8d5 Description: MIME message parser and creator library - debugging symbols Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: c41a9758f4812951cc08dfc261bbc7cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmime-2.6-dev Priority: optional Section: libdevel Installed-Size: 877 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: i386 Source: gmime Version: 2.6.20-0ubuntu1 Depends: libgmime-2.6-0 (= 2.6.20-0ubuntu1), libc6-dev, libglib2.0-dev Filename: pool/main/g/gmime/libgmime-2.6-dev_2.6.20-0ubuntu1_i386.deb Size: 182456 MD5sum: c30db5a52ec4511ce129b21018193220 SHA1: 38b328f3aac5266c9cb3b19a56b609c1e34ce4c5 SHA256: 2e1b84c8f977a65e156718007c323f460eca821459305a01e4ecd07f24c6eabc Description: MIME message parser and creator library - development files Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: 134b2f4140ea4e87aaf0baa3bfdba513 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmime-2.6-doc Priority: optional Section: doc Installed-Size: 1560 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: all Source: gmime Version: 2.6.20-0ubuntu1 Filename: pool/main/g/gmime/libgmime-2.6-doc_2.6.20-0ubuntu1_all.deb Size: 152160 MD5sum: a1a150cede1f3965d672b27902586cd0 SHA1: ee44c5e384167693683ee4efafb5e2d2d5da38c1 SHA256: 16f76c07a3acb1bd074b23478a1d9f0032ccf4474613f9f560f5e79d9a34e03b Description: MIME message parser and creator library - documentation Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: 22a37969f19bd66d18dc07c3c13a5719 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmime2.6-cil Priority: optional Section: cli-mono Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: all Source: gmime Version: 2.6.20-0ubuntu1 Depends: cli-common (>= 0.5.1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgmime-2.6-0 (>= 2.6.0), libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/g/gmime/libgmime2.6-cil_2.6.20-0ubuntu1_all.deb Size: 32462 MD5sum: 11b165756ae9c8412194ad3fbfb26caf SHA1: 187959e303f71abdbe21128d9f017f4788f533f0 SHA256: 6ad975b9c71b1b585fdb9895b676595c422788a5fbe840cff348e78fd452e1e8 Description: CLI binding for the GMime library Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: 46d117a645ac6c61fdfc10daa6ab7340 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libgmime2.6-cil-dev Priority: optional Section: cli-mono Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: Mirco Bauer Architecture: all Source: gmime Version: 2.6.20-0ubuntu1 Depends: libgmime2.6-cil (= 2.6.20-0ubuntu1) Filename: pool/main/g/gmime/libgmime2.6-cil-dev_2.6.20-0ubuntu1_all.deb Size: 2550 MD5sum: 78ce7e92551eb8bb1e5234afe7bca6f2 SHA1: e5cf2d938f736eb42d4baee3d3770da8c46b14ce SHA256: 9671a4d1835d0a142b6a96270bfff6e01db15c670c96d058faaae5a73a43e146 Description: CLI binding for the GMime library Homepage: http://spruce.sourceforge.net/gmime/ Description-md5: 39572f6ff523bc101a2b68250b253900 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmp-dev Priority: optional Section: libdevel Installed-Size: 1395 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: gmp Version: 2:5.1.3+dfsg-1ubuntu1 Replaces: libgmp10-dev, libgmp3-dev Provides: libgmp10-dev Depends: libgmp10 (= 2:5.1.3+dfsg-1ubuntu1), libgmpxx4ldbl (= 2:5.1.3+dfsg-1ubuntu1) Recommends: libstdc++-4.8-dev | libstdc++-dev Suggests: libgmp10-doc, libmpfr-dev Conflicts: libgmp10-dev, libgmp3-dev (<< 5.0.1) Breaks: guile-1.8-dev (<< 1.8.8+1-1), libcdd-dev (<< 094b.dfsg-4.2), libcln-dev (<< 1.3.2-1.1), libmpc-dev (<< 0.9-3), libmpfr-dev (<< 3.0.1-5), librep-dev (<< 0.90.2-1.3), regina-normal-dev (<< 4.6-3) Filename: pool/main/g/gmp/libgmp-dev_5.1.3+dfsg-1ubuntu1_i386.deb Size: 294138 MD5sum: 53c77e2b7e2828b03137ce14e30c32b9 SHA1: 863da08c9007e28b888ef5e786a9d86710336758 SHA256: 3112ed90f4d450a7a5612c9fb50c8633cf75c1a24a95b8781f82dc13d04703a6 Description: Multiprecision arithmetic library developers tools Multi-Arch: same Homepage: http://gmplib.org/ Description-md5: db56254d94fec9ce85e93ebf60b032a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmp10 Priority: optional Section: libs Installed-Size: 577 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: gmp Version: 2:5.1.3+dfsg-1ubuntu1 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/g/gmp/libgmp10_5.1.3+dfsg-1ubuntu1_i386.deb Size: 229610 MD5sum: 5dbed6625deaf85f5036305f9cdd9a23 SHA1: 7fa060f68a2fc2cddc4b569309f8aea25b074971 SHA256: 727438663d2ecb595157322e919cc31bf0a193d84cfac2cb128cd7ceada6121f Description: Multiprecision arithmetic library Multi-Arch: same Homepage: http://gmplib.org/ Description-md5: cf6b3a218331a8f680398794acac47a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgmp10-doc Priority: optional Section: doc Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: all Source: gmp Version: 2:5.1.3+dfsg-1ubuntu1 Filename: pool/main/g/gmp/libgmp10-doc_5.1.3+dfsg-1ubuntu1_all.deb Size: 161236 MD5sum: c4284ca8ecc291d97a59a49833d6b914 SHA1: 413ff2df5baca33745246240329f2654da548581 SHA256: ccc8b5286806a163232cb697dcce6de4c1c2fbff96978b9f902c66fe3d0c7224 Description: Multiprecision arithmetic library example code Homepage: http://gmplib.org/ Description-md5: 02df6801faa05ef8fa25146b14042cf3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmp3-dev Priority: optional Section: libdevel Installed-Size: 38 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: gmp Version: 2:5.1.3+dfsg-1ubuntu1 Replaces: libgmp10-dev Depends: libgmp-dev (= 2:5.1.3+dfsg-1ubuntu1) Conflicts: libgmp10-dev (<< 2:5.0.1+dfsg-7) Filename: pool/main/g/gmp/libgmp3-dev_5.1.3+dfsg-1ubuntu1_i386.deb Size: 1866 MD5sum: ced398e545d9d335866709789a053d09 SHA1: c9ed2dfe71a96d98165e9db83251573703400ad4 SHA256: a3cae80d3b610d3c7eccca830418dc1440e08517c37ec54d203ae2b358cd6999 Description: Multiprecision arithmetic library developers tools Homepage: http://gmplib.org/ Description-md5: 782dc7b458f3c5dbb9f4f83f367d6fef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgmpxx4ldbl Priority: optional Section: libs Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: gmp Version: 2:5.1.3+dfsg-1ubuntu1 Replaces: libgmp3 Depends: libc6 (>= 2.2), libgcc1 (>= 1:4.1.1), libgmp10, libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Conflicts: libgmp3, libgmpxx4 Filename: pool/main/g/gmp/libgmpxx4ldbl_5.1.3+dfsg-1ubuntu1_i386.deb Size: 8638 MD5sum: 8317254ec9b08a511f0b7992752295a7 SHA1: ee9fd6647590c27d54ff4b8916738ed5584f85a1 SHA256: 7ca708aec1c2329ac000cefc5f21c25592f98b6a1bab8df5473c29109c784627 Description: Multiprecision arithmetic library (C++ bindings) Multi-Arch: same Homepage: http://gmplib.org/ Description-md5: 0066a3c29cda07ddd72dc17f19d92017 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-bluetooth-dev Priority: extra Section: libdevel Installed-Size: 537 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-bluetooth Version: 3.8.2.1-0ubuntu4 Depends: libgnome-bluetooth11 (= 3.8.2.1-0ubuntu4), gir1.2-gnomebluetooth-1.0 (= 3.8.2.1-0ubuntu4), libgtk-3-dev, libglib2.0-dev Suggests: pkg-config Filename: pool/main/g/gnome-bluetooth/libgnome-bluetooth-dev_3.8.2.1-0ubuntu4_i386.deb Size: 28932 MD5sum: d3fb48845f8b477ed8223976c219cff6 SHA1: 2912f8d0d4763c971f4ebc755c1cc79b0d278f43 SHA256: 652c49cfcc9f8af515a2d9c97b6a0cc7e00780eaf88d4619dfb7c1f7ec78fccc Description: GNOME Bluetooth tools - support library development files Homepage: https://wiki.gnome.org/GnomeBluetooth Description-md5: d4a23fcbf8644791fc9f3efc1e86671d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-bluetooth11 Priority: optional Section: libs Installed-Size: 379 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-bluetooth Version: 3.8.2.1-0ubuntu4 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0) Filename: pool/main/g/gnome-bluetooth/libgnome-bluetooth11_3.8.2.1-0ubuntu4_i386.deb Size: 55960 MD5sum: 17e991b0ddf2f39af17ad32821374c6f SHA1: 56826128494074b99fd46c51ced5f998a5728d06 SHA256: 0cab4af613fc7532b313b842b19b9b2a7c63a314dae55ec59bc8c01f331ce994 Description: GNOME Bluetooth tools - support library Homepage: https://wiki.gnome.org/GnomeBluetooth Description-md5: db93bef1e8554f50b96803fc7eb52b75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgnome-control-center-dev Priority: optional Section: libdevel Installed-Size: 1536 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-control-center Version: 1:3.6.3-0ubuntu56 Depends: libgnome-control-center1 (= 1:3.6.3-0ubuntu56) Filename: pool/main/g/gnome-control-center/libgnome-control-center-dev_3.6.3-0ubuntu56_i386.deb Size: 4030 MD5sum: 4be0ffda3b7d02aaade5ff899c3e5bc2 SHA1: f004a8c73e4301dd5a19e2a2c01cb7e87196d07f SHA256: 26426b17cb80864cd6b353d9d04009b324dbe53125ceb75347c51fe20f8940f3 Description: utilities to configure the GNOME desktop Description-md5: d94b8cc23eade4594fdcf9cbed49b9fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-control-center1 Priority: optional Section: libs Installed-Size: 1532 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-control-center Version: 1:3.6.3-0ubuntu56 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.14), libpango-1.0-0 (>= 1.14.0) Filename: pool/main/g/gnome-control-center/libgnome-control-center1_3.6.3-0ubuntu56_i386.deb Size: 80516 MD5sum: 1d279239879bb0daa05342b2c73f2aac SHA1: e3e6035f1443b2f530322bd7aa423e6a0df7bf6f SHA256: 3ccd7fcc49a74b3b9fb2f8532325541c6faafe9b779d676176d2519e8366976a Description: utilities to configure the GNOME desktop Description-md5: d35b85c0b8b73f7bf4cf19c7aa215660 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgnome-desktop-3-7 Priority: optional Section: libs Installed-Size: 382 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-desktop3 Version: 3.8.4-0ubuntu3 Replaces: libgnome-desktop-3-2 (<< 3.5.2), libgnome-desktop-3-4 (<< 3.7.90) Depends: libc6 (>= 2.8), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.6), libx11-6, libxext6, libxkbfile1, libxrandr2 (>= 2:1.2.99.3), gsettings-desktop-schemas (>= 3.5.91), gnome-desktop3-data (>= 3.8.4-0ubuntu3) Recommends: hwdata (>= 0.227-1) Filename: pool/main/g/gnome-desktop3/libgnome-desktop-3-7_3.8.4-0ubuntu3_i386.deb Size: 103356 MD5sum: 10ddae29ba5f56908f5c7e35a952fed7 SHA1: 4603c06f3e0a9cd0d631440370ed5142dc330057 SHA256: e56bb635db782f860e973772689e8bfd76fa3c50b0f92df2af8e1b4f89ae05be Description: Utility library for loading .desktop files - runtime files Description-md5: 9612c39f0e5a5b66bbc4c91706766770 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgnome-desktop-3-dev Priority: optional Section: libdevel Installed-Size: 768 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-desktop3 Version: 3.8.4-0ubuntu3 Depends: libgnome-desktop-3-7 (= 3.8.4-0ubuntu3), gir1.2-gnomedesktop-3.0 (= 3.8.4-0ubuntu3), libgtk-3-dev (>= 3.3.6), gsettings-desktop-schemas-dev, libxkbfile-dev Filename: pool/main/g/gnome-desktop3/libgnome-desktop-3-dev_3.8.4-0ubuntu3_i386.deb Size: 46862 MD5sum: f3643eb9e0a6d6c45c76ca4f4100455b SHA1: 7670882a0bcaa7c8ad6bae2517e997146390bc21 SHA256: 3d2be96dc3db073571ea8df33ba59122cc0a83490fd11141f8b460a2850a5c82 Description: Utility library for loading .desktop files - development files Description-md5: 56a8ba33b1e9ed69ca462c02df34810e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-keyring-common Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnome-keyring Version: 3.8.0-2 Replaces: libgnome-keyring0 (<< 3.2.0-4) Breaks: libgnome-keyring0 (<< 3.2.0-4) Filename: pool/main/libg/libgnome-keyring/libgnome-keyring-common_3.8.0-2_all.deb Size: 5536 MD5sum: 5e903e2b2d427bb8c2e4794dc57b103e SHA1: 3bf462bb9204fd458b90486c639598d7e77a27fe SHA256: 30371612dfe17d9184c8b1b23deaee9cbbc298af120374b3df33e3205fcb8899 Description: GNOME keyring services library - data files Multi-Arch: foreign Homepage: http://live.gnome.org/GnomeKeyring Description-md5: a99a0b0c07fa51601e613d5f4c2ff6bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgnome-keyring-dev Priority: optional Section: libdevel Installed-Size: 884 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnome-keyring Version: 3.8.0-2 Depends: libgnome-keyring0 (= 3.8.0-2), gir1.2-gnomekeyring-1.0 (= 3.8.0-2), libglib2.0-dev (>= 2.16) Filename: pool/main/libg/libgnome-keyring/libgnome-keyring-dev_3.8.0-2_i386.deb Size: 45032 MD5sum: 35782c6403201da908d3fbb65bae9a8c SHA1: a4e3791a95f8d17171e9f915022e6ba52e21054c SHA256: 9341127cec59e55044c977498aab64ff05bb5622f96cccefa1441fad3ad6e79d Description: Development files for GNOME keyring service Homepage: http://live.gnome.org/GnomeKeyring Description-md5: 06811260d9185f752b2b103b554445c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-keyring0 Priority: optional Section: libs Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnome-keyring Version: 3.8.0-2 Depends: libc6 (>= 2.3.6-6~), libdbus-1-3 (>= 1.1.1), libgcrypt11 (>= 1.4.5), libglib2.0-0 (>= 2.31.8), libgnome-keyring-common (= 3.8.0-2) Pre-Depends: multiarch-support Suggests: gnome-keyring Breaks: gnome-keyring (<< 3.0) Filename: pool/main/libg/libgnome-keyring/libgnome-keyring0_3.8.0-2_i386.deb Size: 52828 MD5sum: ce2d12842804bad555bb5813bbf6820a SHA1: 0265a7aa0adce26d141502c4ef29f7dc1d969b11 SHA256: a025cf7cdf2a27ba48a7cee21097d75655a2865077986eb052d1ef7c4cc28313 Description: GNOME keyring services library Multi-Arch: same Homepage: http://live.gnome.org/GnomeKeyring Description-md5: f150a94bdcf9084181d7bf821cee44e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgnome-keyring0-dbg Priority: optional Section: debug Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnome-keyring Version: 3.8.0-2 Depends: libgnome-keyring0 (= 3.8.0-2) Filename: pool/main/libg/libgnome-keyring/libgnome-keyring0-dbg_3.8.0-2_i386.deb Size: 125526 MD5sum: 55951879af80061f63ff517aeca0459a SHA1: adcc8df97d713e4ad1dd3ae29c8fe5373b3eb496 SHA256: cca3f5f7fc8f4a72c63f69e49396243cc3286ef27c2a93e84667eda97fc28211 Description: GNOME keyring services library (debugging symbols) Multi-Arch: same Homepage: http://live.gnome.org/GnomeKeyring Description-md5: 9adb41e9aa1b463b9d6adb692fe855ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-menu-3-0 Priority: optional Section: gnome Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-menus Version: 3.10.1-0ubuntu2 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3) Filename: pool/main/g/gnome-menus/libgnome-menu-3-0_3.10.1-0ubuntu2_i386.deb Size: 54380 MD5sum: af2999018c633ea1c7f5d24115ce3b59 SHA1: 020f4e21f141d680a84fe870b44b9cd487c4e560 SHA256: c0343c32c7a17c0104c60a78f349e78b4c2ba3155e25f6b4269ff2c212727347 Description: GNOME implementation of the freedesktop menu specification Description-md5: c6885fb9ed6a22440597626b04ff66f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgnome-menu-3-0-dbg Priority: extra Section: debug Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-menus Version: 3.10.1-0ubuntu2 Depends: libgnome-menu-3-0 (= 3.10.1-0ubuntu2) Filename: pool/main/g/gnome-menus/libgnome-menu-3-0-dbg_3.10.1-0ubuntu2_i386.deb Size: 109670 MD5sum: 3ce35e03d61b85e0367c6ee72af08a54 SHA1: 7923d854c192897444167f8462b5c377bc22d3d7 SHA256: 0615ee12efb09d1167bea77db603a3f3f3e64181ff68a082a55e06526c4193e3 Description: GNOME implementation of the freedesktop menu specification Description-md5: e740dca2bd062f452e75ce5752f1637f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-menu-3-dev Priority: optional Section: libdevel Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-menus Version: 3.10.1-0ubuntu2 Replaces: gir-repository-dev (<< 0.6.5-6) Depends: libgnome-menu-3-0 (= 3.10.1-0ubuntu2), gir1.2-gmenu-3.0 (= 3.10.1-0ubuntu2), libglib2.0-dev (>= 2.30.0) Filename: pool/main/g/gnome-menus/libgnome-menu-3-dev_3.10.1-0ubuntu2_i386.deb Size: 48152 MD5sum: 65e341cd44b27779e2b2838a14776a4c SHA1: c9999cad6fef8d262a7ab06985eba0efb07d9b6c SHA256: 8512b692ffb4207484e4c74664b59e569b4dbbf8d930b2e5fd3e92d6d6592c32 Description: GNOME implementation of the freedesktop menu specification Description-md5: afd73c86a97aafa140ad96e55a77e8f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-vfs2.0-cil Priority: optional Section: libs Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: gtk-sharp2-gapi (<< 2.10.0-1), libgnome-vfs2.24-cil, libgnome2.0-cil (<< 2.16.0-4) Depends: cli-common (>= 0.5.1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgnomevfs2-0 (>= 1:2.17.90), libmono-corlib4.0-cil (>= 2.10.1) Suggests: monodoc-gtk2.0-manual Conflicts: libgnome-vfs2.24-cil Filename: pool/main/g/gnome-sharp2/libgnome-vfs2.0-cil_2.24.2-3_all.deb Size: 53594 MD5sum: 85f764dac180bec7314e973670bcce8f SHA1: b2f13c9ad375c219d97bb74752cb7e1b447f0707 SHA256: 8976d2d9664b86ec17d1d1e4bd9bdef4fdfeb85d1686f2a4982b9c6fb2de1203 Description: CLI binding for GnomeVFS 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 12c2df85a884a0b47b38950078f94601 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome-vfs2.0-cil-dev Priority: optional Section: libs Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: gnome-sharp2 Version: 2.24.2-3 Replaces: libgnome-vfs2.0-cil (<< 2.24.1-5), libgnome-vfs2.24-cil Depends: libgnome-vfs2.0-cil (= 2.24.2-3) Filename: pool/main/g/gnome-sharp2/libgnome-vfs2.0-cil-dev_2.24.2-3_all.deb Size: 17354 MD5sum: 252e086ed381d633bc35f7e09429f654 SHA1: 426177da21e16135957a0cd7e98a8373b85f9354 SHA256: 370aa8af5f3dcd16ed37a41f317ff4711c14400d3a8a7df9eb1c1cb0dd47ab78 Description: CLI binding for GnomeVFS 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: f4c6545bd564cea43ef56c0b7e0d36c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome2-0 Priority: optional Section: libs Installed-Size: 592 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: libgnome Version: 2.32.1-4ubuntu1 Depends: gconf-service, libbonobo2-0 (>= 2.32.1-0ubuntu1.1), libc6 (>= 2.4), libcanberra0 (>= 0.2), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.35.9), libgnomevfs2-0 (>= 1:2.17.90), liborbit-2-0 (>= 1:2.14.10), libpopt0 (>= 1.14), libgnome2-common (>= 2.32), libgnome2-common (<< 2.33), libgnome2-bin Pre-Depends: multiarch-support Recommends: gvfs Filename: pool/main/libg/libgnome/libgnome2-0_2.32.1-4ubuntu1_i386.deb Size: 41546 MD5sum: 3aeae26c63dc1b8429e4828fcaa8f240 SHA1: fa0089ec2dd404952f47ffc92abb8c9b3b28e6c7 SHA256: f8f7a1db096931d8cf06980c9de6b6e25f544c55fac61b696032010b52be84bb Description: The GNOME library - runtime files Multi-Arch: same Description-md5: 97cf103f7a4db485fa237d4d1267d5af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libgnome2-bin Priority: optional Section: libs Installed-Size: 461 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: libgnome Version: 2.32.1-4ubuntu1 Replaces: libgnome2-0 (<= 2.32.1-2ubuntu1) Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.18.0), libgnome2-0 (>= 2.17.3) Filename: pool/main/libg/libgnome/libgnome2-bin_2.32.1-4ubuntu1_i386.deb Size: 14934 MD5sum: d3a2bf3db6669ac449b8c021ae7ac342 SHA1: a2d1078751724eecc052a47d796835fcaef8f463 SHA256: 1da547ba271b3b2b2dbb0d53eeaa2575876b06054d447fc026e367ffb1a451df Description: The GNOME library - binary files Multi-Arch: foreign Description-md5: d5eb422e84c2d9adfc0eee3b383dee8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libgnome2-common Priority: optional Section: libs Installed-Size: 672 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: libgnome Version: 2.32.1-4ubuntu1 Depends: gconf2 (>= 2.28.1-2) Suggests: desktop-base (>= 0.3.16) Breaks: gnome-panel (<< 2.28) Filename: pool/main/libg/libgnome/libgnome2-common_2.32.1-4ubuntu1_all.deb Size: 33342 MD5sum: c7d1e13f3eb120ce33cb9345c2087fa6 SHA1: 4902b118f5ddb5977a281e1a90c1901d6dff505c SHA256: 06778bcc79f088482a8369ad27ad0c399140b6d900f834b42af4b61dd696e083 Description: The GNOME library - common files Multi-Arch: foreign Description-md5: ba1f1700e3ae67d6d4fcf81148b9503e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libgnome2-dbg Priority: extra Section: libdevel Installed-Size: 726 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: libgnome Version: 2.32.1-4ubuntu1 Depends: libgnome2-0 (= 2.32.1-4ubuntu1) Filename: pool/main/libg/libgnome/libgnome2-dbg_2.32.1-4ubuntu1_i386.deb Size: 89852 MD5sum: 268a63c0144bb056fe458c827c695d35 SHA1: ef61cb197fecaba234c105b5ea90285827d4fc45 SHA256: b6e583d292f7b3ecbada5a5d34344c38b35c26e8a1ca2aec7bc4721450b777bf Description: The GNOME library - debugging symbols Description-md5: 3b76765629e0dcb7d40522c9f6df0465 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome2-dev Priority: optional Section: libdevel Installed-Size: 623 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: libgnome Version: 2.32.1-4ubuntu1 Depends: libgnome2-0 (= 2.32.1-4ubuntu1), libglib2.0-dev, libbonobo2-dev, liborbit2-dev, libgconf2-dev, libgnomevfs2-dev, libcanberra-dev, libpopt-dev Suggests: libgnome2-doc Filename: pool/main/libg/libgnome/libgnome2-dev_2.32.1-4ubuntu1_i386.deb Size: 42842 MD5sum: 6d821103bcc2e3687d755dd582b895b4 SHA1: abd27f0809e8aa4ef41ed52378409a4a22b0ac69 SHA256: f1dd3af8ff8a9fa5490bac0f36f24cc47c419f04a696698314a9fa3e2b0ce677 Description: The GNOME library - development files Multi-Arch: same Description-md5: 4ae3cc6272ad8d25682d5eae91fd71ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome2-doc Priority: optional Section: doc Installed-Size: 873 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: libgnome Version: 2.32.1-4ubuntu1 Suggests: devhelp Filename: pool/main/libg/libgnome/libgnome2-doc_2.32.1-4ubuntu1_all.deb Size: 46400 MD5sum: 62ac395c36ec22dadd168a045efa6d8d SHA1: b69c69532d3e35b043033241558322b634c91538 SHA256: 44f748e3937f1d6e3c8992365cfd46a0af57037da3a8b0512e132f23b55db22d Description: The GNOME library - documentation files Description-md5: 3598ba27d8b1d9488e310498a70e31f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome2.0-cil-dev Priority: optional Section: libs Installed-Size: 279 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: i386 Source: gnome-sharp2 Version: 2.24.2-3 Replaces: libgnome2.0-cil, libgnome2.24-cil (<< 2.24.1-5) Depends: libart2.0-cil-dev (= 2.24.2-3), libgnome-vfs2.0-cil-dev (= 2.24.2-3), libgnome2.24-cil (= 2.24.2-3), libgtk2.0-cil-dev Filename: pool/main/g/gnome-sharp2/libgnome2.0-cil-dev_2.24.2-3_i386.deb Size: 26526 MD5sum: bc1750782bc219a0b7e6e8ced923db06 SHA1: 11eaa8d9cf0a0f5f3ec341ea7a4e69627e171d5b SHA256: 5d70ab3321f277e145ef030312bea0a3e399f443c994f94f3d051eec08835f0d Description: CLI binding for GNOME 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 5a50dbc1145299a604d294e871395cce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnome2.24-cil Priority: optional Section: libs Installed-Size: 332 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: i386 Source: gnome-sharp2 Version: 2.24.2-3 Replaces: gtk-sharp2-gapi (<< 2.10.0-1), libgconf2.0-cil (<< 2.16.1), libgnome2.0-cil Depends: libart2.0-cil (= 2.24.2-3), libgconf2.0-cil (= 2.24.2-3), libgnome-vfs2.0-cil (= 2.24.2-3), cli-common (>= 0.5.1), libglade2.0-cil (>= 2.12.10-1ubuntu1), libglib2.0-0 (>= 2.36.0), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgnome2-0 (>= 2.17.3), libgnomecanvas2-0 (>= 2.11.1), libgnomeui-0 (>= 2.22.0), libgtk2.0-0 (>= 2.24.0), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1), libc6 (>= 2.3.6-6~) Suggests: monodoc-gtk2.0-manual Filename: pool/main/g/gnome-sharp2/libgnome2.24-cil_2.24.2-3_i386.deb Size: 99736 MD5sum: ef1310f5a7bc8ad3209870fd4ec44a78 SHA1: 1d91ebeaacb0b08d77ff8c1ddc0ec8e324de0189 SHA256: 818ee38e24ff8899ac2abbe09f4e5bf5e4255e09796dc3f173c26b049eb0e6f9 Description: CLI binding for GNOME 2.24 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 2261446b092e871d9e6c2b254be790ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomecanvas2-0 Priority: optional Section: libs Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnomecanvas Version: 2.30.3-2 Depends: libart-2.0-2 (>= 2.3.19), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libgail18 (>= 1.18.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglade2-0 (>= 1:2.6.4-2~), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.8.17), libpango-1.0-0 (>= 1.14.0), libpangoft2-1.0-0 (>= 1.14.0), libgnomecanvas2-common (= 2.30.3-2) Pre-Depends: multiarch-support Filename: pool/main/libg/libgnomecanvas/libgnomecanvas2-0_2.30.3-2_i386.deb Size: 80878 MD5sum: 3a6ab02d0bca73d8a48c3b92107a0ac3 SHA1: d9442ad4c443ecaa14ffa2e6d1f635075f19a177 SHA256: 8235604a63a97e576f1cb4b5599bcfbd51e1973df98a43f13e9832cca96ca38c Description: powerful object-oriented display engine - runtime files Multi-Arch: same Description-md5: c2991c3ab3a90b3887e2afdd8cf49121 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography, ubuntustudio-audio Package: libgnomecanvas2-common Priority: optional Section: x11 Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnomecanvas Version: 2.30.3-2 Filename: pool/main/libg/libgnomecanvas/libgnomecanvas2-common_2.30.3-2_all.deb Size: 9080 MD5sum: 0ec4beacdf791d276bde42a52fe77674 SHA1: 5a8b7e5323a8976a62b2d24a3a11dc163dfc03ab SHA256: 393d90f4e26bff37f0ba3e9b3629f164da876731f61b0b6e61b7ea96e7201075 Description: powerful object-oriented display engine - common files Multi-Arch: foreign Description-md5: cccfbd722cc06a1517ee663b1c9e3c13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography, ubuntustudio-audio Package: libgnomecanvas2-dbg Priority: extra Section: debug Installed-Size: 776 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnomecanvas Version: 2.30.3-2 Depends: libgnomecanvas2-0 (= 2.30.3-2) Filename: pool/main/libg/libgnomecanvas/libgnomecanvas2-dbg_2.30.3-2_i386.deb Size: 204566 MD5sum: 24141b3bf8525b343ce37e342bb07bab SHA1: 6103ec1c5ea372e003c347a141c1833c027a9c81 SHA256: 228aee66c29f5dd77c8263f60e4eb7addf2f6e77500bdd2d9dc19a5e822fb9d1 Description: powerful object-oriented display engine - debugging symbols Description-md5: 9d15b98f1afeb86b49ebaabaea2d02af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomecanvas2-dev Priority: optional Section: libdevel Installed-Size: 452 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnomecanvas Version: 2.30.3-2 Depends: libgnomecanvas2-0 (= 2.30.3-2), libart-2.0-dev (>= 2.3.16), libgtk2.0-dev (>= 2.8.17), libgail-dev (>= 1.9.0) Suggests: libgnomecanvas2-doc Filename: pool/main/libg/libgnomecanvas/libgnomecanvas2-dev_2.30.3-2_i386.deb Size: 91650 MD5sum: 4c237289e442baf84e0ea055b1973c0d SHA1: 6dc442428200b6b3941623646e27deadc5d01907 SHA256: 1ed4236a12a40cf863166840de8ea4619c13381b896211cf840b526966e7b930 Description: powerful object-oriented display engine - development files Multi-Arch: same Description-md5: 882668dc99aed65213a3671b39452e66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomecanvas2-doc Priority: optional Section: doc Installed-Size: 501 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnomecanvas Version: 2.30.3-2 Filename: pool/main/libg/libgnomecanvas/libgnomecanvas2-doc_2.30.3-2_all.deb Size: 42946 MD5sum: fbd37daa0812d56e97fe01bd8157f60d SHA1: f62653b49f4cc982e20f8b4c79c487178f34393d SHA256: b8ade5efc02d2a7b9f670c6381825d5a6d46ccafcfcf4ea65ea370b0479b8ae3 Description: powerful object-oriented display engine - documentation files Description-md5: 83c9ac6e16e2d71b826d912f8a1aeddc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomekbd-common Priority: optional Section: libs Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnomekbd Version: 3.6.0-0ubuntu2 Replaces: gkbd-capplet (<= 2.91.2-1) Depends: dconf-gsettings-backend | gsettings-backend Breaks: gkbd-capplet (<= 2.91.2-1) Filename: pool/main/libg/libgnomekbd/libgnomekbd-common_3.6.0-0ubuntu2_all.deb Size: 8064 MD5sum: 4a2a50b09572a791734ce131d075d0dd SHA1: 3fe1340e95d87680a8a11c16f5119eeb57e2d84f SHA256: affa02dcf875caed8c6a9993af5bceba26fbbf7946bd91298c88e9d04522be44 Description: GNOME library to manage keyboard configuration - common files Description-md5: 5975fb27dd14bb43c79c9935c681f328 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgnomekbd-dev Priority: optional Section: libdevel Installed-Size: 279 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnomekbd Version: 3.6.0-0ubuntu2 Depends: libgnomekbd8 (= 3.6.0-0ubuntu2), gir1.2-gkbd-3.0 (= 3.6.0-0ubuntu2), libglib2.0-dev (>= 2.26), libgtk-3-dev (>= 3.0.0), libxklavier-dev (>= 5.2), libx11-dev Filename: pool/main/libg/libgnomekbd/libgnomekbd-dev_3.6.0-0ubuntu2_i386.deb Size: 46714 MD5sum: f0150554aa2ccb7f9ed14efa6d997903 SHA1: 2ae997ca6c508cceaf74d5f372190a0c54ed51b6 SHA256: 34fcd9c6f6497695d7004b027a82b37745b973f755a7ca61b85716de933f6bb5 Description: GNOME library to manage keyboard configuration - development files Description-md5: 353cd231a62082c6784b7cd9c5727a8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomekbd8 Priority: optional Section: libs Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnomekbd Version: 3.6.0-0ubuntu2 Depends: libc6 (>= 2.7), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.26.0), libgtk-3-0 (>= 3.0.0), libpango1.0-0 (>= 1.22.0), libx11-6, libxklavier16 (>= 5.0), libgnomekbd-common (>= 3.6.0-0ubuntu2), iso-codes Filename: pool/main/libg/libgnomekbd/libgnomekbd8_3.6.0-0ubuntu2_i386.deb Size: 44300 MD5sum: 9ff0c7518e725298d06617d4b20ff8db SHA1: c54a45dd6679e4f91afe8c8401f7558b4e8b59b6 SHA256: e0dcd75a501410e369be689aa6cf76ff08964af625714dfaed1e1aa9f66b732e Description: GNOME library to manage keyboard configuration - shared library Description-md5: af3a5d9e866a2d8042968d3f6510a8a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgnomeui-0 Priority: optional Section: libs Installed-Size: 799 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnomeui Version: 2.24.5-3 Depends: gconf-service, libart-2.0-2 (>= 2.3.17), libatk1.0-0 (>= 1.12.4), libbonoboui2-0 (>= 2.15.1), libc6 (>= 2.7), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglade2-0 (>= 1:2.6.4-2~), libglib2.0-0 (>= 2.37.3), libgnome-keyring0 (>= 2.20.3), libgnome2-0 (>= 2.17.3), libgnomecanvas2-0 (>= 2.11.1), libgnomevfs2-0 (>= 1:2.17.90), libgtk2.0-0 (>= 2.14), libice6 (>= 1:1.0.0), libpango-1.0-0 (>= 1.17.5), libsm6, libgnomeui-common (= 2.24.5-3) Pre-Depends: multiarch-support Suggests: gnome-icon-theme Filename: pool/main/libg/libgnomeui/libgnomeui-0_2.24.5-3_i386.deb Size: 197250 MD5sum: 6ed8d33b41bd6ee510bda15b90e33a52 SHA1: 4b7687b7ed66251c3ac00d6ac0b0437c9d3d9f73 SHA256: b284ce8b600c0e47c38ff98bac1a70bd00bd44edf8be9fe4684e837dc9236826 Description: GNOME user interface library - runtime files Multi-Arch: same Description-md5: cb811d94f3ad018439e5b2b11c176655 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: libgnomeui-0-dbg Priority: extra Section: libdevel Installed-Size: 1900 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnomeui Version: 2.24.5-3 Depends: libgnomeui-0 (= 2.24.5-3) Filename: pool/main/libg/libgnomeui/libgnomeui-0-dbg_2.24.5-3_i386.deb Size: 516886 MD5sum: a0c9e8684898010f78936535a113d1fa SHA1: 0a261240f37a245989ceee4815840db4df699113 SHA256: 74371f9ec3aa7c7a0d058e8d6dc46ffcae23113959ba9599caaf8ca4f36ed9d8 Description: GNOME user interface library - debugging symbols Description-md5: 7a2d66362f4935c495f930f8e2838deb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomeui-common Priority: optional Section: libs Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnomeui Version: 2.24.5-3 Filename: pool/main/libg/libgnomeui/libgnomeui-common_2.24.5-3_all.deb Size: 16520 MD5sum: 3c62276ad60956c52d77ddd817e605e4 SHA1: d1f1dcdcf653dd91dba392494ed4e64afa19d8cd SHA256: 35df7b09a81bda7413fce1d6b893c104c8038319e5ba33e4c9fc0c3fd4e8e955 Description: GNOME user interface library - common files Multi-Arch: foreign Description-md5: 1ceb3c761cd65eec041926edeb269d20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: libgnomeui-dev Priority: optional Section: libdevel Installed-Size: 1291 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgnomeui Version: 2.24.5-3 Depends: libgnomeui-0 (= 2.24.5-3), libgnome2-dev (>= 2.13.7), libgtk2.0-dev (>= 2.12.0), libgnomecanvas2-dev (>= 2.6.0), libgnome-keyring-dev (>= 0.4), libgconf2-dev (>= 2.6.0), libbonoboui2-dev (>= 2.13.1), libgnomevfs2-dev (>= 2.8.4-2), libsm-dev, libice-dev, libpango1.0-dev (>= 1.1.2), libglib2.0-dev (>= 2.16.0) Suggests: libgnomeui-doc Filename: pool/main/libg/libgnomeui/libgnomeui-dev_2.24.5-3_i386.deb Size: 239818 MD5sum: b59346b927c24486c17d80060d128036 SHA1: 686438a79db62abdb5e5d9ead8fed6a4c920857a SHA256: d2a3794a4485032cce16ac898ca0dbbc89279ac7fd8e0ecef52b3f2d58bc8dc1 Description: GNOME user interface library - development files Multi-Arch: same Description-md5: 9fa85ad2ad07b12c48c9678c64f3cd00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomeui-doc Priority: optional Section: doc Installed-Size: 2513 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgnomeui Version: 2.24.5-3 Filename: pool/main/libg/libgnomeui/libgnomeui-doc_2.24.5-3_all.deb Size: 204862 MD5sum: 83e31b7cd38e97e7982f8256ac781cd9 SHA1: e0a72738677c4ca755b8e5a17833b3213a98288d SHA256: 518c77ad2cd8355a31b846ed10304cf4859981327849ae4d89abb88202ad24a7 Description: GNOME user interface library - documentation files Description-md5: 656a2ead275e05111edae9a931de3276 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomevfs2-0 Priority: optional Section: libs Installed-Size: 990 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gnome-vfs Version: 1:2.24.4-1ubuntu6 Replaces: libgnomevfs2-common (<< 1:2.24.4-1) Depends: gconf-service, libacl1 (>= 2.2.51-8), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.15), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.35.9), libgnutls26 (>= 2.12.17-0), libselinux1 (>= 1.32), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4), dbus (>= 0.90), libgnomevfs2-common (>= 1:2.24), libgnomevfs2-common (<< 1:2.25) Pre-Depends: multiarch-support Recommends: dbus-x11 Suggests: libgnomevfs2-bin, libgnomevfs2-extra, gamin | fam Conflicts: libbonobo2-0 (<< 2.15.0) Breaks: libgnomevfs2-common (<< 1:2.24.4-1) Filename: pool/main/g/gnome-vfs/libgnomevfs2-0_2.24.4-1ubuntu6_i386.deb Size: 206792 MD5sum: 3525a7a134e56b3e6f664dfb49021536 SHA1: c7e29c8390958f8d6ddebfc0bf52324242215038 SHA256: 6d0a27d958224ef877a514ad8c44f3622b6800bc0ff6c9fdb630ae2a52729e4c Description: GNOME Virtual File System (runtime libraries) Multi-Arch: same Description-md5: fe613be0e6a5d18afcbb8b9e615566c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libgnomevfs2-0-dbg Priority: extra Section: libs Installed-Size: 2782 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gnome-vfs Version: 1:2.24.4-1ubuntu6 Depends: libgnomevfs2-0 (= 1:2.24.4-1ubuntu6) Filename: pool/main/g/gnome-vfs/libgnomevfs2-0-dbg_2.24.4-1ubuntu6_i386.deb Size: 770842 MD5sum: 0e44173b6afa02d594f6c96b911d28c0 SHA1: c41b9fd6941c869110319e5b0c5b79e490107e6d SHA256: 6077baac98cca5c5cfe37e894b1484e7e3d31a811607943fb768a624cde236ad Description: GNOME Virtual File System (debugging libraries) Description-md5: 33f7f857d4dff5f6f47d9e36d735a8a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomevfs2-common Priority: optional Section: devel Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gnome-vfs Version: 1:2.24.4-1ubuntu6 Depends: gconf2 (>= 2.28.1-2), shared-mime-info Suggests: gnome-mime-data Conflicts: gnome-panel (<< 2.10.0), libgnomevfs2-0 (<< 2.12.2-4), libgnomevfs2-extra (<< 1:2.16.3-6) Filename: pool/main/g/gnome-vfs/libgnomevfs2-common_2.24.4-1ubuntu6_i386.deb Size: 22748 MD5sum: fef8442e3af6e80f69acc658df2276a8 SHA1: d42c4b981fa7b82e728a2b70062a5ffaa16ff4cd SHA256: ad70beaf5f9afb0719eb057d18500ffc943f6cddb6e37c7920c24533e0049451 Description: GNOME Virtual File System (common files) Multi-Arch: foreign Description-md5: f5eddba2d9a18e1fb027a583e5aa5c69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libgnomevfs2-dev Priority: optional Section: libdevel Installed-Size: 3155 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gnome-vfs Version: 1:2.24.4-1ubuntu6 Depends: libgnomevfs2-0 (= 1:2.24.4-1ubuntu6), libgconf2-dev (>= 2.8.0-1), libgnutls-dev, libxml2-dev, libavahi-client-dev (>= 0.6), libavahi-glib-dev (>= 0.6), libdbus-1-dev, libselinux1-dev Filename: pool/main/g/gnome-vfs/libgnomevfs2-dev_2.24.4-1ubuntu6_i386.deb Size: 307052 MD5sum: 387adec8af7177af98db65468a3cad31 SHA1: fe7c744117b0aa6b9cc29fff28eed3b0e857edc3 SHA256: dbeefbcbf3ea401acd2ed13ffa00c0a1d731f96ea2f7ea5f6e27c8390f29ad59 Description: GNOME Virtual File System library (development files) Multi-Arch: same Description-md5: 98e964831c248a766a1a7af8d13d131a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnomevfs2-extra Priority: optional Section: libs Installed-Size: 553 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gnome-vfs Version: 1:2.24.4-1ubuntu6 Depends: gconf-service, libbz2-1.0, libc6 (>= 2.4), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.35.9), libgnomevfs2-0 (>= 1:2.17.90), libgssapi-krb5-2 (>= 1.10+dfsg~), libsmbclient (>= 3.0.24), libxml2 (>= 2.7.4), libgnomevfs2-common (>= 1:2.24), libgnomevfs2-common (<< 1:2.25) Conflicts: libgnomevfs2-0 (<< 1:2.16.0-1), libgnomevfs2-common (<< 2.12.2-7) Filename: pool/main/g/gnome-vfs/libgnomevfs2-extra_2.24.4-1ubuntu6_i386.deb Size: 76166 MD5sum: 712f58692d608468bddb368a1fbaec9b SHA1: a6956cac105f0f5b29db81b9e785e7087bc85a47 SHA256: 52ce0b681fd12530264a2f206c82ba5ea7a7b4c75a3ce67ea99a87c179400858 Description: GNOME Virtual File System (extra modules) Multi-Arch: same Description-md5: cd20afe8f22aedf41c6d52162891c7a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: libgnuinet-java Priority: optional Section: libs Installed-Size: 3067 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.2-2build1 Filename: pool/main/libg/libgnuinet-java/libgnuinet-java_1.1.2-2build1_all.deb Size: 406068 MD5sum: e6449aa4c87b2c47c74f1357048557aa SHA1: a750e5768177d48f69761c3b6fab8903ef8d1931 SHA256: c995f682d26324d038e60048ea68632cd5873300f95c50b9138194eaf1a92159 Description: extension library to provide extra network protocol support Homepage: http://savannah.gnu.org/projects/classpath Description-md5: 7723ac8ef97820b080e1df88310c3ebc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnumail-java Priority: optional Section: libs Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.2-9ubuntu3 Depends: libgnuinet-java Suggests: libgnumail-java-doc Filename: pool/main/libg/libgnumail-java/libgnumail-java_1.1.2-9ubuntu3_all.deb Size: 272684 MD5sum: adeca3a1946017b4f552b73018153182 SHA1: cbbf69168a630b7de09c8a6d4ceb98bb62cbfc73 SHA256: fb4a366ad1e67098b3d0f6183aadeec7ceb9f9f0b55c47d952f4ad35019a6c65 Description: free implementation of the javamail API Homepage: http://savannah.gnu.org/projects/classpathx Description-md5: 628efd4791d60c5ff5e5c721f8465df4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnumail-java-doc Priority: optional Section: doc Installed-Size: 5425 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libgnumail-java Version: 1.1.2-9ubuntu3 Recommends: default-jdk-doc, libgnuinet-java Suggests: libgnumail-java Filename: pool/main/libg/libgnumail-java/libgnumail-java-doc_1.1.2-9ubuntu3_all.deb Size: 199972 MD5sum: 2dfdd2797967d27717e11416cec4df27 SHA1: 9ce390ffb453e5d5de48360129120c9435075fdb SHA256: e5bb9c95808f25be5722829361bfbb4653ae5144752b4e78e78c602c249ca776 Description: free implementation of the javamail API (Javadocs) Homepage: http://savannah.gnu.org/projects/classpathx Description-md5: ff58e470c4b1c0fdbcb2043bf938cc05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnutls-dev Priority: optional Section: libdevel Installed-Size: 1905 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: gnutls26 Version: 2.12.23-12ubuntu2 Replaces: gnutls-dev Provides: gnutls-dev, libgnutls-openssl-dev Depends: libgnutls26 (= 2.12.23-12ubuntu2), libgnutlsxx27 (= 2.12.23-12ubuntu2), libgnutls-openssl27 (= 2.12.23-12ubuntu2), libgcrypt11-dev (>= 1.4.0), libc6-dev | libc-dev, zlib1g-dev, libtasn1-6-dev, libp11-kit-dev (>= 0.4) Suggests: gnutls26-doc, gnutls-bin Conflicts: gnutls-dev Filename: pool/main/g/gnutls26/libgnutls-dev_2.12.23-12ubuntu2_i386.deb Size: 368130 MD5sum: f1a4ad054c92127eeec054539f7c0788 SHA1: f41b54138d701d22261ad40e15fbc321dd49a129 SHA256: 03807a1cdceb8b8ac9d0bcf3117479e2fbedea63fc73abdabf8360f3f1b1406b Description: GNU TLS library - development files Homepage: http://www.gnutls.org/ Description-md5: e2a3e8bac6f6874ae5a4bc8e489881a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnutls-openssl27 Priority: important Section: libs Installed-Size: 275 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: gnutls26 Version: 2.12.23-12ubuntu2 Depends: libgnutls26 (= 2.12.23-12ubuntu2), libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/g/gnutls26/libgnutls-openssl27_2.12.23-12ubuntu2_i386.deb Size: 18344 MD5sum: 4d2b6fcaca7af1478e9353ae3a344a36 SHA1: 1a9fb17b696d1ce9ec95781182e187fe290bc82b SHA256: efbb5c780b23982d590cb1bead9dceb072a1e748283f8d04d070b18013de943d Description: GNU TLS library - OpenSSL wrapper Multi-Arch: same Homepage: http://www.gnutls.org/ Description-md5: ed7bc845df883f3776627eaef9179481 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libgnutls26 Priority: important Section: libs Installed-Size: 1100 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: gnutls26 Version: 2.12.23-12ubuntu2 Replaces: gnutls0, gnutls0.4, gnutls3 Depends: libc6 (>= 2.8), libgcrypt11 (>= 1.5.1), libp11-kit0 (>= 0.11), libtasn1-6 (>= 3.4-0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: gnutls-bin Conflicts: gnutls0, gnutls0.4 Breaks: ccbuild (<= 2.0.1-1), csync2 (<= 1.34-2.2), freewheeling (<= 0.6-1.1), gkrellm (<= 2.3.4-1), libsoup2.4-1 (= 2.31.2-1), libsoup2.4-1 (<= 2.30.1-1), macopix-gtk2 (<= 1.7.4-3), pokerth (<= 0.8.3-3+b1), pokerth-server (<= 0.8.3-3+b1), sipsak (<= 0.9.6-2.1), slrn (<= 1.0.0~pre18-1.1), slrnpull (<= 1.0.0~pre18-1.1), snowdrop (<= 0.02b-9), ssmtp (<= 2.64-4), tf5 (<= 5.0beta8-4), wput (<= 0.6.2-2), zoneminder (<= 1.24.4-1) Filename: pool/main/g/gnutls26/libgnutls26_2.12.23-12ubuntu2_i386.deb Size: 374070 MD5sum: 04c52af37ad85e0fb6b22253b8ef09d5 SHA1: 619aa830e04de6298a2d7c7214421bac7c17a3c1 SHA256: c8fd04ca932732e845ad9f77ee3be633396df591b01d4b28d37ed9b010c99a56 Description: GNU TLS library - runtime library Multi-Arch: same Homepage: http://www.gnutls.org/ Description-md5: 07e0914117156d2b3fcf0d63e9ef8ac2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libgnutls26-dbg Priority: extra Section: devel Installed-Size: 1750 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: gnutls26 Version: 2.12.23-12ubuntu2 Depends: libgnutls26 (= 2.12.23-12ubuntu2) Conflicts: libgnutls13-dbg, libgnutls28-dbg Filename: pool/main/g/gnutls26/libgnutls26-dbg_2.12.23-12ubuntu2_i386.deb Size: 1294586 MD5sum: 68cc301294962715bdd930bb0c550a44 SHA1: d8129502069e9b025c881006c7108ea4adc5c4a7 SHA256: 8ba81c22016a963ecd43438adac80bdfd873d28ad81279613651b0da25d2a212 Description: GNU TLS library - debugger symbols Multi-Arch: same Homepage: http://www.gnutls.org/ Description-md5: 49ef95a26f6727eeaa8d2c979d728b2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgnutlsxx27 Priority: extra Section: libs Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: gnutls26 Version: 2.12.23-12ubuntu2 Depends: libgnutls26 (= 2.12.23-12ubuntu2), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gnutls26/libgnutlsxx27_2.12.23-12ubuntu2_i386.deb Size: 17920 MD5sum: c9549711016c4baecf07b01dca1aab98 SHA1: 7da965783c930e2a2747c43223c35f5f32ddf05e SHA256: e806b3f8d3ff8ce1485bedecbda9d13c9193c91e366b7548599e8a72ec032e4c Description: GNU TLS library - C++ runtime library Multi-Arch: same Homepage: http://www.gnutls.org/ Description-md5: afe5e834531764319ee8050592126f1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgo4 Priority: optional Section: libs Installed-Size: 10278 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: libgo3 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.10), libgcc1 (>= 1:4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libgo4_4.8.2-19ubuntu1_i386.deb Size: 2125202 MD5sum: cb5424c043357fe2e69d968a5c092c6f SHA1: 53b6ec9d921be21649332c4af4204826da073b2c SHA256: 2222c227754c17e6be2bbd714190e68e455f1774010704cf4082a0456185d835 Description: Runtime library for GNU Go applications Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 9dac71a6885be90d89c8d4e0ae4b9f2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgo4-dbg Priority: extra Section: debug Installed-Size: 8418 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgo4 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libgo4-dbg_4.8.2-19ubuntu1_i386.deb Size: 2286478 MD5sum: 2484d7409c616a8196ce711f64da5eed SHA1: ca953321f7714ea3fbf019358b2a3f4a61110a35 SHA256: b38b226d7670a1d9b0b35e2a99ef64d2a3bf5017d1bc4fd013e7738baef3bc5f Description: Runtime library for GNU Go applications (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 8e5db8ab219adb4818e0e98ececdb3ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgo5 Priority: optional Section: libs Installed-Size: 11651 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Replaces: libgo3 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libc6 (>= 2.10), libgcc1 (>= 1:4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gccgo-4.9/libgo5_4.9-20140406-0ubuntu1_i386.deb Size: 2448302 MD5sum: 071f9166553790574578e059c3f0a1e8 SHA1: a237eb05cc4cf45f17b7c3867bbd51c856bbfc30 SHA256: e8eee271f310fd0af10ecc234dbb0a11f383fbcf96a99a3cd6b84afee3269f6f Description: Runtime library for GNU Go applications Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 9dac71a6885be90d89c8d4e0ae4b9f2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgo5-dbg Priority: extra Section: debug Installed-Size: 6948 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libgo5 (= 4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/libgo5-dbg_4.9-20140406-0ubuntu1_i386.deb Size: 1774838 MD5sum: d830a933d852a11332decfdbdfa16810 SHA1: 54e3f1044f56c8a092ba3c3bcaa42d05ecd90e73 SHA256: 29cead19bc5268ea92f08f9a7f20267664fbf75c9ec96c9713f4ce33f1fae8ee Description: Runtime library for GNU Go applications (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 8e5db8ab219adb4818e0e98ececdb3ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoa-1.0-0b Priority: optional Section: libs Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Replaces: libgoa-1.0-0 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.38), libgoa-1.0-common (= 3.10.3-0ubuntu1) Pre-Depends: multiarch-support Conflicts: libgoa-1.0-0 Filename: pool/main/g/gnome-online-accounts/libgoa-1.0-0b_3.10.3-0ubuntu1_i386.deb Size: 55952 MD5sum: d320f5db1406a98245312cf4169270da SHA1: 695bfe922acfa9ed1f4e5373656b772604071101 SHA256: 16fbd6846b00cfeb1072cdb7b60cf27c4b86e3aaf4f496c20792ea44b812d40a Description: library for GNOME Online Accounts Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 552490d3e14a107decec4ee36ed111f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgoa-1.0-common Priority: optional Section: libs Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Replaces: libgoa-1.0-0 (<< 3.8.2) Breaks: libgoa-1.0-0 (<< 3.8.2) Filename: pool/main/g/gnome-online-accounts/libgoa-1.0-common_3.10.3-0ubuntu1_all.deb Size: 11788 MD5sum: cb7eee1cd2e9c655c11dcafae3787352 SHA1: 8f3bd49aff1bbdf33cb50ff55d148c4832bcb5f3 SHA256: ca10114d497ae40b21dcac1ca02a2471e45e1efc6146e6408c14c2e0c6c0b831 Description: library for GNOME Online Accounts - common files Multi-Arch: foreign Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 2842d00135dfd07a49e67517e0da8c5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgoa-1.0-dev Priority: optional Section: libdevel Installed-Size: 773 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Depends: libgoa-1.0-0b (= 3.10.3-0ubuntu1), libgoa-backend-1.0-dev, libglib2.0-dev, libgtk-3-dev, librest-dev, gir1.2-goa-1.0 (= 3.10.3-0ubuntu1) Suggests: libgoa-1.0-doc Filename: pool/main/g/gnome-online-accounts/libgoa-1.0-dev_3.10.3-0ubuntu1_i386.deb Size: 29614 MD5sum: c597f6b5fd840cbb7a3632cc8d982a87 SHA1: f5a7e77bbd15ee952686264037aa3ef6da646afc SHA256: 5ff0c252c72dbc764c051b311fedd5c1f05c26b3f6ef73b7bf37f835726a4ec8 Description: library for GNOME Online Accounts - development files Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 9bea771687b36e66a35d8eb109b74a84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoa-1.0-doc Priority: optional Section: doc Installed-Size: 1983 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Recommends: libglib2.0-doc Suggests: devhelp Filename: pool/main/g/gnome-online-accounts/libgoa-1.0-doc_3.10.3-0ubuntu1_all.deb Size: 101656 MD5sum: 9047ac9a2077b949504bd58fcccb380f SHA1: 15b5e6b455da9f8f5ed685bba9441c143cf478a8 SHA256: 683469b569ac9146be9d43f391f4ba6100fd80983e06c3e5ae11c9205d06217e Description: library for GNOME Online Accounts - documentation files Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 6e6a90b593144637e1e2aadec6654557 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoa-backend-1.0-1 Priority: optional Section: libs Installed-Size: 722 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Depends: libc6 (>= 2.4), libgcr-base-3-1 (>= 3.8.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.38), libgoa-1.0-0b (>= 3.7.90), libgtk-3-0 (>= 3.5.1), libjson-glib-1.0-0 (>= 0.12.0), libpango-1.0-0 (>= 1.14.0), librest-0.7-0 (>= 0.7), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.41), libtelepathy-glib0 (>= 0.19.9), libwebkitgtk-3.0-0 (>= 2.1.90), libxml2 (>= 2.9.0), libgoa-1.0-common (= 3.10.3-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/g/gnome-online-accounts/libgoa-backend-1.0-1_3.10.3-0ubuntu1_i386.deb Size: 195664 MD5sum: 2b023d27b32a86f3755780ba7a4c61fc SHA1: 4231d6fad2137447f4156f39a90b75c39ae4d5b4 SHA256: c5817a1f2045aabbda240e20eb5c1efaf1db34aadab44baa2baf862076da7377 Description: backend library for GNOME Online Accounts Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: a213e85dc3ab27d93fbec976e186f091 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: libgoa-backend-1.0-dev Priority: optional Section: libdevel Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gnome-online-accounts Version: 3.10.3-0ubuntu1 Replaces: libgoa-1.0-dev (<< 3.10.0) Depends: libgoa-backend-1.0-1 (= 3.10.3-0ubuntu1), libglib2.0-dev, libgtk-3-dev, librest-dev, gir1.2-goa-1.0 (= 3.10.3-0ubuntu1) Suggests: libgoa-1.0-doc Conflicts: libgoa-1.0-dev (<< 3.10.0) Filename: pool/main/g/gnome-online-accounts/libgoa-backend-1.0-dev_3.10.3-0ubuntu1_i386.deb Size: 5364 MD5sum: f5613cff0314d6a6511fb7493806caca SHA1: b31c2f5cab726addfd1f7fb2e9df53c4f086207b SHA256: b61c78ae84fbca4d16ec0a42b49e8eaefb3e91c11c6fe48b1c81faa72f44fc4b Description: backend library for GNOME Online Accounts - development files Homepage: https://wiki.gnome.org/GnomeOnlineAccounts Description-md5: 97c3fcbfc559b12800632f5dcd6b8415 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgomp1 Priority: optional Section: libs Installed-Size: 96 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.17) Pre-Depends: multiarch-support Breaks: gcc-4.1, gcc-4.3 (<< 4.3.6-1), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2) Filename: pool/main/g/gcc-4.8/libgomp1_4.8.2-19ubuntu1_i386.deb Size: 24916 MD5sum: 2c6b3b03093a4bcaf3dcdba51e013b32 SHA1: 64325441e76a154aca1a9033e926bebf92b95781 SHA256: a10bdafe8ef874962c4239b2c71b37a20b459d34b6353c23acf5e589810bd283 Description: GCC OpenMP (GOMP) support library Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 9651123458dd1bf3c162dfb6a6292ff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgomp1-arm64-cross Priority: extra Section: devel Installed-Size: 79 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libc6-arm64-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-arm64-cross/libgomp1-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 18302 MD5sum: 6644c74cfe829895b8d15a65b8e5a7c0 SHA1: f00c2468ac8713ba04b330ffd961a2a5389559b1 SHA256: 1819f5c528fff2c34fead99995e2b1db03cb3da6ce8af795cca6bff50b361402 Description: GCC OpenMP (GOMP) support library Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 9651123458dd1bf3c162dfb6a6292ff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgomp1-armhf-cross Priority: extra Section: devel Installed-Size: 70 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libgomp1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 21570 MD5sum: 70ecb8e9cf0097288edffa571ad1f916 SHA1: 1f9ab75a5a3075c52ef45296b3179c480204d069 SHA256: 1e43e62fe9593a8adcc111fc4aeac499177552d5dd87304f295bdd7dbd473ece Description: GCC OpenMP (GOMP) support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 9651123458dd1bf3c162dfb6a6292ff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgomp1-dbg Priority: extra Section: debug Installed-Size: 236 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgomp1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libgomp1-dbg_4.8.2-19ubuntu1_i386.deb Size: 56460 MD5sum: 5d369a3f36044c6e474251928fee2b4b SHA1: d3c66a4e71e24af6044ba5fa6b850cabf9ace6bb SHA256: d87e5e8c63555f2965cdcd7280999cea8df039664721b87aa0a7eb57aff97786 Description: GCC OpenMP (GOMP) support library (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 7e2cdd49ce630cb7e2347d7fe5ca5677 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgomp1-powerpc-cross Priority: extra Section: devel Installed-Size: 98 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6-powerpc-cross (>= 2.18) Filename: pool/main/g/gcc-4.8-powerpc-cross/libgomp1-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 23194 MD5sum: dd57ab0c6827951ebef6cbcfd9a47099 SHA1: fd0615163fb6f17dc6554a1810d266d188cb1b93 SHA256: 27a75739f7308dc04e805075927af0095b8249d49adbe3325bb49008ebfc6cfe Description: GCC OpenMP (GOMP) support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 9651123458dd1bf3c162dfb6a6292ff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgomp1-ppc64el-cross Priority: extra Section: devel Installed-Size: 95 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6-ppc64el-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libgomp1-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 21324 MD5sum: 25a859ce47b704b2f5e9ad7eacb1cef9 SHA1: edca1bf27196a808667ffa828a14a57996bb9c09 SHA256: c4c80bd3028c2943a68fedccde85e8e2359740afdd780526cc4832805cc2edf9 Description: GCC OpenMP (GOMP) support library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 9651123458dd1bf3c162dfb6a6292ff4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoogle-glog-dev Priority: optional Section: libdevel Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: google-glog Version: 0.3.3-1 Depends: libgoogle-glog0 (= 0.3.3-1), libgflags-dev Filename: pool/main/g/google-glog/libgoogle-glog-dev_0.3.3-1_i386.deb Size: 100110 MD5sum: 55aca25664c1a0704624af6d904a7b31 SHA1: e2a788f131dbef9c520d3acde52b7a46ed35d6fa SHA256: 715082e5b23178d0c7fcf8fa572528ddf0725b78662dc337957139d24175bf0b Description: library that implements application-level logging. Homepage: http://code.google.com/p/google-glog/ Description-md5: b551db4318894659d49fe968ad2eb1f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoogle-glog-doc Priority: optional Section: doc Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: all Source: google-glog Version: 0.3.3-1 Filename: pool/main/g/google-glog/libgoogle-glog-doc_0.3.3-1_all.deb Size: 12782 MD5sum: 5d4914a4746274e5cd49c926dce72011 SHA1: 1c73754c3e92ea70eb43cc57d55cf18e8e034e80 SHA256: dd28ad3faccbbf9737882e8170c243a5364fbc1feee295587efb589909a51db1 Description: documentation of gloogle-glog Homepage: http://code.google.com/p/google-glog/ Description-md5: e3a25f367e3ae0367e8824c0fa6643d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoogle-glog0 Priority: optional Section: libs Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: google-glog Version: 0.3.3-1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgflags2, libstdc++6 (>= 4.1.1), libunwind8 Pre-Depends: multiarch-support Filename: pool/main/g/google-glog/libgoogle-glog0_0.3.3-1_i386.deb Size: 60428 MD5sum: 4aff964725257f428a986753b94255fc SHA1: b5d26d017c950aba93c7797dd65eb2e599908b5e SHA256: 33b5b1ea7f0c600e2004a89339d08ef4dac87f3b81185e7d15d6a44ba4c83ebb Description: library that implements application-level logging. Homepage: http://code.google.com/p/google-glog/ Description-md5: 829accffb10209e63959eb79e6ebd913 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoogle-perftools-dev Priority: optional Section: libdevel Installed-Size: 2866 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: google-perftools Version: 2.1-2ubuntu1 Depends: libgoogle-perftools4 (= 2.1-2ubuntu1), libtcmalloc-minimal4 (= 2.1-2ubuntu1) Filename: pool/main/g/google-perftools/libgoogle-perftools-dev_2.1-2ubuntu1_i386.deb Size: 409006 MD5sum: 320aadbadc364c81966f880a5ceb3857 SHA1: 9ed2c48009f5332c5d4a8d2abbccf019316207d0 SHA256: c03f05f3627ae923cfb0bbf0b57c86c14c1f9db778adb14a416139f089ada413 Description: libraries for CPU and heap analysis, plus an efficient thread-caching malloc Homepage: http://code.google.com/p/gperftools/ Description-md5: dbfe1cce18ce426a0a1a69ed420f918e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgoogle-perftools4 Priority: optional Section: libs Installed-Size: 1007 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: google-perftools Version: 2.1-2ubuntu1 Depends: libtcmalloc-minimal4 (= 2.1-2ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Conflicts: libgoogle-perftools0 Filename: pool/main/g/google-perftools/libgoogle-perftools4_2.1-2ubuntu1_i386.deb Size: 182918 MD5sum: d293fd265141e27035b5389f691c800e SHA1: 1152b3ebc4f587d3f00eb4784980a55d736791ff SHA256: 498099d714d42478cb3d4215f5990057ec240fd0dc43eee00fb9fa69c41c48b0 Description: libraries for CPU and heap analysis, plus an efficient thread-caching malloc Homepage: http://code.google.com/p/gperftools/ Description-md5: 9d3b2cf4c6afb08fb8e226be47a1fb1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgoogle-perftools4-dbg Priority: extra Section: debug Installed-Size: 2218 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: google-perftools Version: 2.1-2ubuntu1 Depends: libgoogle-perftools4 (= 2.1-2ubuntu1) Filename: pool/main/g/google-perftools/libgoogle-perftools4-dbg_2.1-2ubuntu1_i386.deb Size: 1982014 MD5sum: 5043611b7b26aa62935e978f76148340 SHA1: a5d22de1880be2dc0c060b26f5de15747697f9b4 SHA256: 7bbe3603b6fdfc03431a2fa79b2e7773b011d16751c42d99b5233001ac8f09a4 Description: libraries for CPU and heap analysis, plus an efficient thread-caching malloc Homepage: http://code.google.com/p/gperftools/ Description-md5: 382bc63473014f90a0a6213ed348c214 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpg-error-dev Priority: optional Section: libdevel Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: i386 Source: libgpg-error Version: 1.12-0.2ubuntu1 Depends: libgpg-error0 (= 1.12-0.2ubuntu1), libc6 (>= 2.3.4) Filename: pool/main/libg/libgpg-error/libgpg-error-dev_1.12-0.2ubuntu1_i386.deb Size: 19822 MD5sum: beda9956684140e7a65447eae6d73146 SHA1: 6d9903722400f988639b0791bb093edf72115891 SHA256: 104689b4f68c8f86650b2a77c99808365f88282338ba83eb3bd004fa96b8eeb3 Description: library for common error values and messages in GnuPG components (development) Homepage: http://www.gnupg.org/related_software/libgpg-error/ Description-md5: e9d7dd73a021cc106c5f4c856319e138 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpg-error0 Priority: important Section: libs Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: i386 Source: libgpg-error Version: 1.12-0.2ubuntu1 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/libg/libgpg-error/libgpg-error0_1.12-0.2ubuntu1_i386.deb Size: 10858 MD5sum: 212bbc46e324b7e002b6ca482fa130f8 SHA1: 10cbd918c26b2138016c81c08e017ac5228dba65 SHA256: d81138e77bca39d17c253a03b49b71cf503446b7e53d784d22f7b0cf65ed2a6d Description: library for common error values and messages in GnuPG components Multi-Arch: same Homepage: http://www.gnupg.org/related_software/libgpg-error/ Description-md5: 69f556e12b915238b7c815f26da80be5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libgpgme11 Priority: optional Section: libs Installed-Size: 488 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: i386 Source: gpgme1.0 Version: 1.4.3-0.1ubuntu5 Depends: gnupg (>= 1.4.6-2) | gnupg2 (>> 2.0.4), libassuan0 (>= 2.0.1), libc6 (>= 2.15), libgpg-error0 (>= 1.10) Pre-Depends: multiarch-support Suggests: gpgsm (>> 1.9.6) Filename: pool/main/g/gpgme1.0/libgpgme11_1.4.3-0.1ubuntu5_i386.deb Size: 93828 MD5sum: 383a18630c54cea5e00f801d4db06daa SHA1: 7fb750632b54f232ace46ec84e7407bcdd42eb76 SHA256: d041289e35e8e0e77b4a5bd647d5b74760b783f43eec5b7db3e82710680cf26b Description: GPGME - GnuPG Made Easy (library) Multi-Arch: same Homepage: http://www.gnupg.org/gpgme.html Description-md5: 7305da3bebc903cedb7fa94da8ad1fbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, mail-server, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgpgme11-dev Priority: optional Section: libdevel Installed-Size: 961 Maintainer: Ubuntu Developers Original-Maintainer: Jose Carlos Garcia Sogo Architecture: i386 Source: gpgme1.0 Version: 1.4.3-0.1ubuntu5 Depends: libassuan-dev, libc6-dev, libgpg-error-dev, libgpgme11 (= 1.4.3-0.1ubuntu5), libpth-dev Conflicts: libgpgme-dev, libgpgme10-dev Filename: pool/main/g/gpgme1.0/libgpgme11-dev_1.4.3-0.1ubuntu5_i386.deb Size: 219564 MD5sum: ee6241d902a3d9ed3baefcd5f8ff672a SHA1: 035bcd3da3d5c9ca55afab2d1b09ec3ca5f056e0 SHA256: 137686993af06dce11dd8a7b6e8eb4cac638171c8b4a7c5d6fd5e462091cec04 Description: GPGME - GnuPG Made Easy (development files) Homepage: http://www.gnupg.org/gpgme.html Description-md5: 025318585b10ac584c814b2079ede759 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgphoto2-2-dev Priority: extra Section: oldlibs Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: i386 Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Depends: libgphoto2-dev (= 2.5.3.1-1ubuntu2) Filename: pool/main/libg/libgphoto2/libgphoto2-2-dev_2.5.3.1-1ubuntu2_i386.deb Size: 7506 MD5sum: 88882ca6b3fade4c12c203d589f73c15 SHA1: d946a5b9c26e86c21c8e66f2555166133172de69 SHA256: 182953a48f1a6eeec5a72e724124c73cf48a860f7d200df443b399d6ddee9a28 Description: gphoto2 digital camera library (transitional package) Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: f6e2458481485a8200b061ef6bec5c1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgphoto2-6 Priority: optional Section: libs Installed-Size: 3160 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: i386 Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Depends: libc6 (>= 2.15), libexif12, libgd3 (>= 2.1.0~alpha~), libgphoto2-port10 (>= 2.5.2), libjpeg8 (>= 8c), libltdl7 (>= 2.4.2), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Recommends: udev (>= 201), libgphoto2-l10n (>= 2.5.3.1-1ubuntu2) Suggests: gphoto2 (>= 2.1.1) Breaks: gphoto2 (<= 2.1.1) Filename: pool/main/libg/libgphoto2/libgphoto2-6_2.5.3.1-1ubuntu2_i386.deb Size: 710440 MD5sum: 2fe58c12d390f25d6edcab95efbbfaba SHA1: 03eada67a4569285e072f10faf4471df07b16d88 SHA256: 9bad125f0227805526c25d7d38709479c7585e68f8891b4d6c812bc80e0308e2 Description: gphoto2 digital camera library Multi-Arch: same Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: 0667f79ceb3d5a999a0ff55ad225e156 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgphoto2-dev Priority: optional Section: libdevel Installed-Size: 7527 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: i386 Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Replaces: libgphoto2-2-dev (<< 2.5.2-1~) Depends: libgphoto2-6 (= 2.5.3.1-1ubuntu2), libexif-dev, pkg-config Breaks: libgphoto2-2-dev (<< 2.5.2-1~) Filename: pool/main/libg/libgphoto2/libgphoto2-dev_2.5.3.1-1ubuntu2_i386.deb Size: 1984120 MD5sum: ad65cf4c0079e0ed417fe18ee9bbf089 SHA1: caafe3fc426501823f7499053da1ecb5abac6389 SHA256: c115e038c97a11bd13827b645e736cd8a682a0a2287fae5049b239604232ba09 Description: gphoto2 digital camera library (development files) Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: 09f6d0ae3f118a398b90fb84845618e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgphoto2-dev-doc Priority: optional Section: doc Installed-Size: 6567 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: all Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Depends: libjs-jquery Filename: pool/main/libg/libgphoto2/libgphoto2-dev-doc_2.5.3.1-1ubuntu2_all.deb Size: 2575828 MD5sum: a53d4b1f66f43457e1395caeb6343efb SHA1: f3711cedaf7d9571dc4122739627b55001fe22bd SHA256: 6900694f10abc5c1633f5616edf1fc68b0a84cb9a7d5380ec48b75ff240cd000 Description: gphoto2 digital camera library (development documentation) Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: 80bdc5b1f735d5956b63d68eeabdaa75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgphoto2-l10n Priority: optional Section: localization Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: all Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Replaces: libgphoto2-2 (<= 2.4.10.1-4) Breaks: libgphoto2-2 (<= 2.4.10.1-4) Filename: pool/main/libg/libgphoto2/libgphoto2-l10n_2.5.3.1-1ubuntu2_all.deb Size: 7534 MD5sum: af74b060af172dd9bda6da62e8ea341e SHA1: 3e979afc3b9b0f5fe770b9454e55e8d18e56ac9b SHA256: 803d088708c666a058cd7395d0c09e167e37ca8768fdd6a29c25510e38f6a7b2 Description: gphoto2 digital camera library - localized messages Multi-Arch: foreign Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: ab44a2500d46c48e4f7f5c712df346d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgphoto2-port10 Priority: optional Section: libs Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: i386 Source: libgphoto2 Version: 2.5.3.1-1ubuntu2 Depends: libc6 (>= 2.15), libltdl7 (>= 2.4.2), libusb-1.0-0 (>= 2:1.0.8) Pre-Depends: multiarch-support Suggests: gphoto2 (>> 2.1.0), gtkam Breaks: gphoto2 (<= 2.1.1) Filename: pool/main/libg/libgphoto2/libgphoto2-port10_2.5.3.1-1ubuntu2_i386.deb Size: 39706 MD5sum: 76166e7656b963b7cb953e00f5b211f5 SHA1: 8773068e7ca0511f294a65a079a2c1412961e36f SHA256: 13e410c576192aeab1aea8a02a1da7d7f8cee15aea0ca1e20b75f3c5773e5dd4 Description: gphoto2 digital camera port library Multi-Arch: same Homepage: http://www.gphoto.org/proj/libgphoto2/ Description-md5: 6e52236fade1dd1f9b033de909479e66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgpm-dev Priority: optional Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Source: gpm Version: 1.20.4-6.1 Provides: libgpmg1-dev Depends: libgpm2 (= 1.20.4-6.1), libc6-dev | libc-dev Conflicts: libgpmg1-dev Filename: pool/main/g/gpm/libgpm-dev_1.20.4-6.1_i386.deb Size: 16104 MD5sum: 719a7679dd0767a0a7b6e381a82ef65b SHA1: a7ba15bd79470fe76823cbb6371053ea4a328a5a SHA256: ebec926437bfc9027a6bcc7712a43c7f64e888997eb951fdbf50d71ddcbf533d Description: General Purpose Mouse - development files Multi-Arch: same Homepage: http://www.nico.schottelius.org/software/gpm/ Description-md5: 9c6c4769bf624eea9163234b6f001a86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpm2 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Source: gpm Version: 1.20.4-6.1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Suggests: gpm Filename: pool/main/g/gpm/libgpm2_1.20.4-6.1_i386.deb Size: 15988 MD5sum: 409ee8b65eb23ddb91f9cea5b7877f9f SHA1: c9b5861af574f9dbb5d334a855f9b45888848484 SHA256: 8afb3a05e67396e23d249ed1baff4a839c2f65a857c63ef360aee95a4ccb51e0 Description: General Purpose Mouse - shared library Multi-Arch: same Homepage: http://www.nico.schottelius.org/software/gpm/ Description-md5: e77c023597910bf799fb8eb6602823ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgpod-cil Priority: optional Section: cli-mono Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libglib2.0-cil (>= 2.12.10-1ubuntu1), libgpod4 (>= 0.7.94), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.5-cil (>= 3.2.3), libmono-system-core4.0-cil (>= 3.2.1) Filename: pool/main/libg/libgpod/libgpod-cil_0.8.3-4ubuntu3_i386.deb Size: 17536 MD5sum: fb393e88bd2f04973942fc015a09f310 SHA1: ab93231ef5397dee9a901fc6d42c6448bc248ca2 SHA256: c36c59d9c3350f3e45e8d47c5a38707fe60d3275d76be33df3c3f75af20b7c54 Description: CLI bindings for libgpod Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 131f461c9278ab268320d20d8b94825b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpod-cil-dev Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libgpod-cil (= 0.8.3-4ubuntu3) Filename: pool/main/libg/libgpod/libgpod-cil-dev_0.8.3-4ubuntu3_i386.deb Size: 4226 MD5sum: cf4d79a5f8765c6982dfe7510a7a5289 SHA1: d60d7fc822ca6a70e68091f1a4ce68a1066e2835 SHA256: 47bad6304cc68ff76b6a61a94308e2fa0ab730ba229859d4440e5604af868be4 Description: CLI bindings for libgpod -- development files Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 7afe1fd9e9aa601e2f65edf80b266775 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpod-common Priority: optional Section: libs Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libgpod Version: 0.8.3-4ubuntu3 Replaces: libgpod0 (<< 0.3.0-4) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.31.18), libgpod4 (>= 0.7.90), libimobiledevice4 (>= 0.9.7), libplist1 (>= 0.16), libsgutils2-2 (>= 1.27), libusb-1.0-0 (>= 2:1.0.8), libxml2 (>= 2.7.4) Filename: pool/main/libg/libgpod/libgpod-common_0.8.3-4ubuntu3_i386.deb Size: 21682 MD5sum: 4f16f914879952de1abf46e8a89d0399 SHA1: f5b0aaeb6aaf991a1cd75f4c69cdc104bcd5473d SHA256: a72f4f874d8b1344d5db754e9317f1e1ef8429a0233aff4fceeb52883c9a9cc0 Description: common files for libgpod Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 0eae2c1963cba37ea794f90b5823ca74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgpod-dev Priority: optional Section: libdevel Installed-Size: 683 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libgpod4 (= 0.8.3-4ubuntu3), libgtk2.0-dev, libglib2.0-dev, libgdk-pixbuf2.0-dev, libimobiledevice-dev Suggests: libgpod-doc Conflicts: libgpod-nogtk-dev Filename: pool/main/libg/libgpod/libgpod-dev_0.8.3-4ubuntu3_i386.deb Size: 200136 MD5sum: 712cccd1af805a0ce496efef1561bfea SHA1: 427263a87f85a51f36c881f63916ba9bd8b96656 SHA256: 855fd47a10c5637dd8e0d9cd2eada9a3fcc38319b4c6423bb2b0fc6ad934c0cb Description: development files for libgpod Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 344168e89c989d05df365c2e722e3f86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpod-doc Priority: optional Section: doc Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: all Source: libgpod Version: 0.8.3-4ubuntu3 Replaces: libgpod-common (<< 0.6.0-6), libgpod0 (<< 0.3.0-4) Filename: pool/main/libg/libgpod/libgpod-doc_0.8.3-4ubuntu3_all.deb Size: 31120 MD5sum: ad36179fd58044419afb4927d6bc6871 SHA1: 1967b7a144d6589f0fbcfc5fd69993a9467eee03 SHA256: 388890b6f07722eb627e7768853cff35fae6c400fc9e310dbd242401fecda449 Description: documentation for libgpod Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: c1d9226f5190e2340cc4c43db6f32214 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpod-nogtk-dev Priority: optional Section: libdevel Installed-Size: 480 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libgpod4-nogtk (= 0.8.3-4ubuntu3), libglib2.0-dev, libimobiledevice-dev Suggests: libgpod-doc Conflicts: libgpod-dev Filename: pool/main/libg/libgpod/libgpod-nogtk-dev_0.8.3-4ubuntu3_i386.deb Size: 112900 MD5sum: 24eca3d0a64ea84d9284f6f6af860736 SHA1: f70a568e09462bdd6d23398f2b3acdbac25e1f1d SHA256: 46c82cba5fe222052f0bc0888c9f264245f0ac2d9caefba245d948b85b049b4b Description: development files for libgpod (version without artwork support) Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 8a148c015966976f4adc89561e46e439 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgpod4 Priority: optional Section: libs Installed-Size: 507 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.18), libimobiledevice4 (>= 0.9.7), libplist1 (>= 0.16), libsqlite3-0 (>= 3.5.9), libxml2 (>= 2.7.4), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Recommends: libgpod-common Conflicts: libgpod4-nogtk Filename: pool/main/libg/libgpod/libgpod4_0.8.3-4ubuntu3_i386.deb Size: 181090 MD5sum: 7bcebb92f8428a529bebfa6cadd17bd1 SHA1: 3ce93931a1a49003a461cb9d97822f370e6952d0 SHA256: 8ae8bad56110e8c730910d5a216d765d4dc12c8f2c745226f16917bfc71d6037 Description: library to read and write songs and artwork to an iPod Multi-Arch: same Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 89537791a1486eb992b2f5d253d0289c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: libgpod4-nogtk Priority: extra Section: libs Installed-Size: 327 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libgpod Version: 0.8.3-4ubuntu3 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.31.18), libimobiledevice4 (>= 0.9.7), libplist1 (>= 0.16), libsqlite3-0 (>= 3.5.9), libxml2 (>= 2.7.4), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Recommends: libgpod-common Conflicts: libgpod4 Filename: pool/main/libg/libgpod/libgpod4-nogtk_0.8.3-4ubuntu3_i386.deb Size: 96638 MD5sum: 365f7fe31f5455396ade487122ded27a SHA1: 5ac006042851ffda099485ca1f01f84cb1f65d43 SHA256: 31dcf5cfa9b9c87a8b04d314923f35550a615452feabc05aba7fd3b00b5d240b Description: library to read and write songs to an iPod Multi-Arch: same Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 25e878c1fe823f8e88a4637884a93ad3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgrail-dev Priority: optional Section: libdevel Installed-Size: 68 Maintainer: Ubuntu Developers Architecture: i386 Source: grail Version: 3.1.0daily13.06.05-0ubuntu1 Replaces: libutouch-grail-dev Depends: libframe-dev, libgrail6 (= 3.1.0daily13.06.05-0ubuntu1) Conflicts: libutouch-grail-dev Filename: pool/main/g/grail/libgrail-dev_3.1.0daily13.06.05-0ubuntu1_i386.deb Size: 6786 MD5sum: abfafcb6fab7ad10380fed36a03cf8f4 SHA1: 41519e6f4573a16d0c308f354185680482070f55 SHA256: 76becaead03991190392a1c18f857749fac134bf74c36c5e1a956cd26170d3cb Description: Gesture Recognition And Instantiation Library - dev files Homepage: https://launchpad.net/grail Description-md5: aaa7fea4cee4953a0ab1a52e4a02990c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgrail6 Priority: optional Section: libs Installed-Size: 175 Maintainer: Ubuntu Developers Architecture: i386 Source: grail Version: 3.1.0daily13.06.05-0ubuntu1 Depends: libc6 (>= 2.7), libframe6 (>= 2.5.0), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/g/grail/libgrail6_3.1.0daily13.06.05-0ubuntu1_i386.deb Size: 59678 MD5sum: d40d244efd4f881e1920e27462b68de8 SHA1: 40a7f4f6fcce7f03aef749e54de18364de0ec078 SHA256: fa18170fcef90b69ec26427b1876e7c5dbea9ef516dec638e080596c5378fb8b Description: Gesture Recognition And Instantiation Library Homepage: https://launchpad.net/grail Description-md5: 8a3d2f9d4700637341ac103638491767 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgrantlee-core0 Priority: extra Section: libs Installed-Size: 832 Maintainer: Kubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: grantlee Version: 0.4.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-script (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Filename: pool/main/g/grantlee/libgrantlee-core0_0.4.0-0ubuntu1_i386.deb Size: 220922 MD5sum: 5043b361fd09c4b15369e9c8571cab68 SHA1: 34fe14f93e45dae7f1b0b20d09351e4338594896 SHA256: cdf64fb8d6889dd0d1a29827e4b128a17c08ebc1087aa9a8b3905d711c722000 Description: Grantlee templating library for Qt - Core Homepage: http://www.grantlee.org/ Description-md5: 5b39a85487ef7217f6fcac0eec65abe5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libgrantlee-dev Priority: extra Section: libdevel Installed-Size: 219 Maintainer: Kubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: grantlee Version: 0.4.0-0ubuntu1 Depends: libgrantlee-core0 (= 0.4.0-0ubuntu1), libgrantlee-gui0 (= 0.4.0-0ubuntu1), libqt4-dev Filename: pool/main/g/grantlee/libgrantlee-dev_0.4.0-0ubuntu1_i386.deb Size: 33572 MD5sum: 387401135f522a849189da57ad5d5422 SHA1: 3101a5426a178adc268e83d587accbe3b966a3a1 SHA256: 98cf98d170a12d4337a716d6239c95bb9e81df98dfdf449a95710042809ec461 Description: Grantlee templating library development files Homepage: http://www.grantlee.org/ Description-md5: e07afc1e6e310f775ba8d324d30b04dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgrantlee-gui0 Priority: extra Section: libs Installed-Size: 155 Maintainer: Kubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: grantlee Version: 0.4.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Filename: pool/main/g/grantlee/libgrantlee-gui0_0.4.0-0ubuntu1_i386.deb Size: 38374 MD5sum: 2d469168bdbadbef038b44a59746747f SHA1: 3a482589ae2783d3205e19b5bb2a60188acb753e SHA256: 61e4818228e492baad4af64174b69a362a611a77aa82649db89ae1e5af206ca5 Description: Grantlee templating library for Qt - GUI Homepage: http://www.grantlee.org/ Description-md5: 303fffca2326cf0c9a45a6a6f415afb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: libgraphite2-3 Priority: optional Section: libs Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Team Architecture: i386 Source: graphite2 Version: 1.2.4-1ubuntu1 Replaces: libgraphite2-2.0.0 Provides: libgraphite2-2.0.0 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Breaks: libgraphite2-2.0.0 (<< 1.2.0) Filename: pool/main/g/graphite2/libgraphite2-3_1.2.4-1ubuntu1_i386.deb Size: 54404 MD5sum: 83b1e3216bd8dad7c4ae76e603e974ed SHA1: f1a75b05aafc763946577158831272a50587bd1c SHA256: 8c4439bfb103b7540039dca857f2bf4dddda2c9d06ba0c5364d5edabf24cfe2a Description: Font rendering engine for Complex Scripts -- library Multi-Arch: same Description-md5: 68d1591bf212ce8230272a42a5738b72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libgraphite2-3-dbg Priority: extra Section: debug Installed-Size: 546 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Team Architecture: i386 Source: graphite2 Version: 1.2.4-1ubuntu1 Depends: libgraphite2-3 (= 1.2.4-1ubuntu1) Filename: pool/main/g/graphite2/libgraphite2-3-dbg_1.2.4-1ubuntu1_i386.deb Size: 484018 MD5sum: 76db88265fccfe0852d67c6acdb91213 SHA1: ec3c3def7396e0988469492944246266d65a2984 SHA256: ce1f002f6b4e8e31763e34042efd037c6d4c92cfb8319bdaf5382bb2f5fdac0c Description: Debug symbols for libgraphite2 Description-md5: 014e4150f06b5c7cc832e2cdcce8f9c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgraphite2-dev Priority: optional Section: libdevel Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Team Architecture: i386 Source: graphite2 Version: 1.2.4-1ubuntu1 Depends: libgraphite2-3 (= 1.2.4-1ubuntu1) Filename: pool/main/g/graphite2/libgraphite2-dev_1.2.4-1ubuntu1_i386.deb Size: 14328 MD5sum: 25b8d122faa01944bf8871de82afffd0 SHA1: b0ecbd6e28640c28f045f28a661adc3ec50f7ac4 SHA256: c9abc12ac1a1621c85bd1570d8a4dae78ca15f6a8ce8a6d0dc45f04b7f844f79 Description: Development files for libgraphite2 Description-md5: 7f19707ec760b78fb24460b38ecf78bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgraphite2-doc Priority: optional Section: doc Installed-Size: 1367 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Team Architecture: all Source: graphite2 Version: 1.2.4-1ubuntu1 Filename: pool/main/g/graphite2/libgraphite2-doc_1.2.4-1ubuntu1_all.deb Size: 503778 MD5sum: 6fea0873b4be02ccd6be2a92ed4d5ddf SHA1: 2e3bd6a088f44a8ca62b7d4b45398dd2374640ce SHA256: 4cf257b9d5e4331864ed663390bb79d0408777509f427aabdf37d339e268d4c9 Description: Documentation for libgraphite2 Description-md5: b0b3ea4dd05ea53f9d34d1f006dde09b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgraphviz-dev Priority: optional Section: libdevel Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: i386 Source: graphviz Version: 2.36.0-0ubuntu3 Replaces: libgraphviz3-dev, libgraphviz4-dev (<< 2.16-3) Provides: graphviz-dev Depends: libcdt5 (= 2.36.0-0ubuntu3), libcgraph6 (= 2.36.0-0ubuntu3), libgvc6 (= 2.36.0-0ubuntu3), libgvpr2 (= 2.36.0-0ubuntu3), libpathplan4 (= 2.36.0-0ubuntu3), libxdot4 (= 2.36.0-0ubuntu3), libexpat1-dev, libltdl7-dev, zlib1g-dev Conflicts: graphviz-dev (<< 2.12-1), libgraphviz3-dev, libgraphviz4-dev (<< 2.16-3) Filename: pool/main/g/graphviz/libgraphviz-dev_2.36.0-0ubuntu3_i386.deb Size: 60830 MD5sum: c507a4a29bda3df69e405332402e9304 SHA1: 173337d627ddebb10919693ae857aa2bdc433c93 SHA256: 6fe55092047653f1bc013f5c98ef01e30dcda3e07a8566aae974093244be0b2b Description: graphviz libs and headers against which to build applications Homepage: http://www.graphviz.org/ Description-md5: c3a8010bf765807229fbc858755d3ad0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgrip-dev Priority: optional Section: libdevel Installed-Size: 230 Maintainer: Ubuntu Developers Architecture: i386 Source: libgrip Version: 0.3.7+14.04.20140303-0ubuntu1 Depends: libglib2.0-dev (>= 2.28.6), libgrip0 (= 0.3.7+14.04.20140303-0ubuntu1), libgtk-3-dev (>= 3.0.8), libgeis-dev, pkg-config Filename: pool/main/libg/libgrip/libgrip-dev_0.3.7+14.04.20140303-0ubuntu1_i386.deb Size: 20248 MD5sum: e19c61add3aee5a64b07f92aa4ed8d17 SHA1: a4e350f5e631eb25082dcfd8e2b0512f2748ecb8 SHA256: 2b2cd63d3e30673d7612980d8fead77e0d5e0c1e64d9fbdbd0e6ab26dcbb305c Description: multitouch gestures for GTK+ apps -- development files Homepage: https://launchpad.net/libgrip Description-md5: a3259508256ceae95b658a23ccbec265 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgrip0 Priority: optional Section: libs Installed-Size: 64 Maintainer: Ubuntu Developers Architecture: i386 Source: libgrip Version: 0.3.7+14.04.20140303-0ubuntu1 Depends: libc6 (>= 2.4), libgeis1 (>= 2.0.1), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.8-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/libg/libgrip/libgrip0_0.3.7+14.04.20140303-0ubuntu1_i386.deb Size: 13396 MD5sum: 5baf0cbcec4a72733177383b1b70a433 SHA1: 4269818958fb8cb9b4d70c46c91f2d7fe88d5344 SHA256: 5e990df3777806e25a3c72f129f82ed988d03f10f3e71c0b270546958f626ccd Description: multitouch gestures for GTK+ apps Homepage: https://launchpad.net/libgrip Description-md5: 636f53cde51d687a2c811daefc5138a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgs-dev Priority: optional Section: text Installed-Size: 13136 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Depends: libgs9 (= 9.10~dfsg-0ubuntu10), libc6-dev, libcups2-dev, libcupsimage2-dev, libfontconfig1-dev, libidn11-dev, libijs-dev, libjbig2dec0-dev, libjpeg-dev, libpaper-dev, libpng12-0-dev, libtiff5-dev, zlib1g-dev Filename: pool/main/g/ghostscript/libgs-dev_9.10~dfsg-0ubuntu10_i386.deb Size: 2168280 MD5sum: de01144bbf51b1f8482cb8c225804696 SHA1: 0f2813dac3a996370b5d93f2902157e9fe481beb SHA256: 58d63a964153b21cc2cd1983ade4f835f3eb9f704f49075a28cc407ba9a594ef Description: interpreter for the PostScript language and for PDF - Development Files Homepage: http://www.ghostscript.com/ Description-md5: f4c1713297a6c688a87d0b2876caf1fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgs9 Priority: optional Section: libs Installed-Size: 10823 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Depends: libc6 (>= 2.11), libcups2 (>= 1.4.0), libcupsimage2 (>= 1.4.0), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libidn11 (>= 1.13), libijs-0.35 (>= 0.35), libjbig2dec0 (>= 0.11), libjpeg8 (>= 8c), liblcms2-2 (>= 2.5), libpaper1, libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3), zlib1g (>= 1:1.1.4), poppler-data (>= 0.4.5-3~) | gs-cjk-resource, libgs9-common (>= 9.10~dfsg) Filename: pool/main/g/ghostscript/libgs9_9.10~dfsg-0ubuntu10_i386.deb Size: 1892374 MD5sum: ef9bc1eb41cc15895faff98c01f8e92b SHA1: 5c9b3d49c7acf3bc23dcde7184ce0ba9ebf29d61 SHA256: 8718fe31dc70555a518c1b2ddb5aa350bbae93e64a228b6cd23285b55eacb5f6 Description: interpreter for the PostScript language and for PDF - Library Homepage: http://www.ghostscript.com/ Description-md5: 77d0d233cd004663a71b1ef44e87d3f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgs9-common Priority: optional Section: libs Installed-Size: 4198 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: ghostscript Version: 9.10~dfsg-0ubuntu10 Suggests: fonts-droid Filename: pool/main/g/ghostscript/libgs9-common_9.10~dfsg-0ubuntu10_all.deb Size: 2067674 MD5sum: 09774b8af94a71a64d3bb6e9a43b4beb SHA1: 4c76eae6297cb614ac68d064fabe20cb913d3f9b SHA256: 5e83f5dafc82e546d5bedf3be4e18714d3f2dfce20480ce6818474fa5479cd08 Description: interpreter for the PostScript language and for PDF - common files Homepage: http://www.ghostscript.com/ Description-md5: f08f64f97de70ffa2ec3f07307565bf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgsettings-qt-dev Priority: extra Section: libdevel Installed-Size: 55 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: gsettings-qt Version: 0.1+14.04.20140408-0ubuntu1 Depends: libgsettings-qt1 (= 0.1+14.04.20140408-0ubuntu1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/g/gsettings-qt/libgsettings-qt-dev_0.1+14.04.20140408-0ubuntu1_i386.deb Size: 3132 MD5sum: 2df056df4e903369ebf242c4a2a756d4 SHA1: 2bd3b2192a7d74fe154284da21b0658929f8e7e1 SHA256: 48e7dd90582a3a43a0e05936c61b438f98b580f93b31124895194c35f11af6f5 Description: Library to access GSettings from Qt - devel Homepage: https://launchpad.net/gsettings-qt Description-md5: 29fccfd290f8e58d776ea7334c5a9685 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgsettings-qt1 Priority: extra Section: libs Installed-Size: 65 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: gsettings-qt Version: 0.1+14.04.20140408-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gsettings-qt/libgsettings-qt1_0.1+14.04.20140408-0ubuntu1_i386.deb Size: 13742 MD5sum: 7f642269f38212c112e44dc302e85bcb SHA1: de4b88a580def511f803ab4630400e2386537686 SHA256: 0ddfab9b57772f20561ae96dfe395f36d304d6f07b32895609a04228a7dfd778 Description: Library to access GSettings from Qt Multi-Arch: same Homepage: https://launchpad.net/gsettings-qt Description-md5: a693c4a56022026ccf2efeacdaa6887a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libgsf-1-114 Priority: optional Section: libs Installed-Size: 322 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Smirnov Architecture: i386 Source: libgsf Version: 1.14.27-2ubuntu2 Depends: libgsf-1-common (>= 1.14.27-2ubuntu2), libbz2-1.0, libc6 (>= 2.7), libglib2.0-0 (>= 2.31.8), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Filename: pool/main/libg/libgsf/libgsf-1-114_1.14.27-2ubuntu2_i386.deb Size: 97430 MD5sum: 07b8b0b6d54a0fdca6030827af2c2556 SHA1: 02030c4a120eb02bf38e285a51d5e5e1adf6acc3 SHA256: e460beb068855648561dc854d5e15aca655febbbf54984c7da37f5f303923276 Description: Structured File Library - runtime version Homepage: http://projects.gnome.org/libgsf/ Description-md5: 6f2a19cee2252e04518882eb04caab00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libgsf-1-114-dbg Priority: extra Section: debug Installed-Size: 408 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Smirnov Architecture: i386 Source: libgsf Version: 1.14.27-2ubuntu2 Depends: libgsf-1-114 (= 1.14.27-2ubuntu2) Filename: pool/main/libg/libgsf/libgsf-1-114-dbg_1.14.27-2ubuntu2_i386.deb Size: 311344 MD5sum: f22981947a1ee532bef49a8505e27c74 SHA1: 1d2eb5607714949df734937011dcedc5dc0cd3de SHA256: b6f91f9b58478fbe81416cde038e5d16b6956155583d5ab02c4be164828bbac6 Description: Structured File Library - debugging files (basic version) Homepage: http://projects.gnome.org/libgsf/ Description-md5: e3a7b6bf418c7b49e5144843c59fb2a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgsf-1-common Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Smirnov Architecture: all Source: libgsf Version: 1.14.27-2ubuntu2 Replaces: libgsf-1 (<= 1.12.3-4) Filename: pool/main/libg/libgsf/libgsf-1-common_1.14.27-2ubuntu2_all.deb Size: 11824 MD5sum: 3bdb90305d0227dcd7fdb0ff4355ebce SHA1: 681c6ecbb06833a1ab46d03b23a84f629e48ad2b SHA256: bc2ca400865b8d049cdfa8d4e7319a78c126748df20111804219a586fca6c955 Description: Structured File Library - common files Homepage: http://projects.gnome.org/libgsf/ Description-md5: 63c4e64ca9b6d79b4947e39b148fe3e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libgsf-1-dev Priority: optional Section: libdevel Installed-Size: 1562 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Smirnov Architecture: i386 Source: libgsf Version: 1.14.27-2ubuntu2 Replaces: gir1.2-libgsf-1, libgsf-1-114 (<< 1.14.25-2~), libgsf-gnome-1-dev (<= 1.14.8-1) Depends: libgsf-1-114 (= 1.14.27-2ubuntu2), gir1.2-gsf-1 (= 1.14.27-2ubuntu2), libbz2-dev, libglib2.0-dev, libxml2-dev Recommends: pkg-config Conflicts: gir1.2-libgsf-1 Breaks: libgsf-1-114 (<< 1.14.25-2~) Filename: pool/main/libg/libgsf/libgsf-1-dev_1.14.27-2ubuntu2_i386.deb Size: 191204 MD5sum: 9d3ccd6288b71945906fbc5c26e23fd4 SHA1: 6079372cf283d38a1e6bed560a8da79e3a63a309 SHA256: 24e59be82b7a89380d4d154ba56c91db536cbb80fe92294d7888b8b569fbde66 Description: Structured File Library - development files Homepage: http://projects.gnome.org/libgsf/ Description-md5: c26c685203445077273bff5424a425c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgsl0-dbg Priority: extra Section: libdevel Installed-Size: 6152 Maintainer: Ubuntu Developers Original-Maintainer: Dirk Eddelbuettel Architecture: i386 Source: gsl Version: 1.16+dfsg-1ubuntu1 Depends: libgsl0ldbl (= 1.16+dfsg-1ubuntu1) Filename: pool/main/g/gsl/libgsl0-dbg_1.16+dfsg-1ubuntu1_i386.deb Size: 1450222 MD5sum: 761b77532491ab614d74b4f28a063bf9 SHA1: 457bd005516ef7e7ddd4d710449e454dcdae323e SHA256: 4d72a4bea12e4d58f8eeee381486df359eb318346114d966d7d32cd9901b0442 Description: GNU Scientific Library (GSL) -- debug symbols package Homepage: http://www.gnu.org/software/gsl Description-md5: 5643f5b8950f7a867c6a8e769d83e918 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgsl0-dev Priority: optional Section: libdevel Installed-Size: 4920 Maintainer: Ubuntu Developers Original-Maintainer: Dirk Eddelbuettel Architecture: i386 Source: gsl Version: 1.16+dfsg-1ubuntu1 Replaces: gsl-dev, libgsl0 (<= 1.9-4) Depends: libgsl0ldbl (= 1.16+dfsg-1ubuntu1) Conflicts: gsl-dev Filename: pool/main/g/gsl/libgsl0-dev_1.16+dfsg-1ubuntu1_i386.deb Size: 882382 MD5sum: 18a6163d43b91cdb605cd55d26283574 SHA1: 1f7f2f796edbf6be6110e291bc5814d19bff11e3 SHA256: bb6a47909a474f7c9753495f75acc8f46e2c8c649f157113b617849f8b017523 Description: GNU Scientific Library (GSL) -- development package Homepage: http://www.gnu.org/software/gsl Description-md5: f82bf91c76eb8a810492207c71d95b23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgsl0ldbl Priority: optional Section: math Installed-Size: 2604 Maintainer: Ubuntu Developers Original-Maintainer: Dirk Eddelbuettel Architecture: i386 Source: gsl Version: 1.16+dfsg-1ubuntu1 Replaces: gsl, libgsl0 (<= 1.9-4) Depends: libc6 (>= 2.7) Suggests: gsl-ref-psdoc | gsl-doc-pdf | gsl-doc-info | gsl-ref-html Conflicts: gsl, libgsl0 Filename: pool/main/g/gsl/libgsl0ldbl_1.16+dfsg-1ubuntu1_i386.deb Size: 755898 MD5sum: 46b9067af245e61fcc05b609bb752dfb SHA1: 4bfa2df52a4d3c25c645bb01acb18024e3848054 SHA256: 08852c3b7a7c439c9d6917b566221bf4183e2630690e22bfb0c66384ccce9697 Description: GNU Scientific Library (GSL) -- library package Homepage: http://www.gnu.org/software/gsl Description-md5: c18364d1c52158ec186a19bfe690fbf6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: libgssapi-krb5-2 Priority: standard Section: libs Installed-Size: 395 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libcomerr2 (>= 1.34), libk5crypto3 (>= 1.8+dfsg), libkrb5-3 (= 1.12+dfsg-2ubuntu4), libkrb5support0 (>= 1.12~alpha1+dfsg) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Breaks: libgssglue1 (<< 0.2-2) Filename: pool/main/k/krb5/libgssapi-krb5-2_1.12+dfsg-2ubuntu4_i386.deb Size: 111180 MD5sum: c0661c9c358d42de36830fcd887ea76a SHA1: 6cd3118155ea0825534d126c065cc56421aa0e9f SHA256: f2ad1f110094e896e6345740c00193ae50d8659a604227bfd7b16fe7646125f4 Description: MIT Kerberos runtime libraries - krb5 GSS-API Mechanism Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 2dd7fe357b29d0ba6727171c01f0301c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgssapi-perl Priority: optional Section: perl Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.28-2build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3), libgssapi-krb5-2 (>= 1.10+dfsg~) Filename: pool/main/libg/libgssapi-perl/libgssapi-perl_0.28-2build1_i386.deb Size: 56856 MD5sum: 87fc627fabf0b06568e083e75e836e39 SHA1: b97e75140e39cb1ace44b071bed61e410b4ebc70 SHA256: d4bd3fdc9129c06844d73ac9950f1b478eb7361329980dc3b8a440cc0222a689 Description: Perl extension providing access to the GSSAPIv2 library Homepage: http://search.cpan.org/dist/GSSAPI/ Description-md5: ca68d5f988b8c3fc2ac22f49b2b065ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgssapi3-heimdal Priority: standard Section: libs Installed-Size: 311 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libasn1-8-heimdal (>= 1.4.0+git20110226), libc6 (>= 2.8), libcomerr2 (>= 1.01), libhcrypto4-heimdal (>= 1.4.0+git20110226), libheimntlm0-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.6~git20131117), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Conflicts: libgssapi3 Filename: pool/main/h/heimdal/libgssapi3-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 89546 MD5sum: 08159ae81e655c525e703ff3189a49ff SHA1: 28ba86edc2032da40c90f6a657aa5c04c90e429a SHA256: 58894d51acd98bc95ac54b5ce541e5c4c99ec5957c58c6af6b777f165683a7d1 Description: Heimdal Kerberos - GSSAPI support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: af366fc4a421c3a53900cab1af5922e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libgssdp-1.0-3 Priority: optional Section: libs Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: i386 Source: gssdp Version: 0.14.7-1ubuntu1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libsoup2.4-1 (>= 2.26.1) Filename: pool/main/g/gssdp/libgssdp-1.0-3_0.14.7-1ubuntu1_i386.deb Size: 25956 MD5sum: c921614c04904a37ac3cb25eaf95e94c SHA1: c367f87d92da29ec52c8806fd424a48bb620e4be SHA256: cf5eeb254da5f9938ec52a6a139a01a0b7eb78cf257a17d95a8ae219ee085c71 Description: GObject-based library for SSDP Homepage: http://www.gupnp.org Description-md5: 1f32e3405a87412ac4a2f1ab29fdc11e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libgssdp-1.0-dbg Priority: optional Section: libdevel Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: i386 Source: gssdp Version: 0.14.7-1ubuntu1 Depends: libgssdp-1.0-3 (= 0.14.7-1ubuntu1) Filename: pool/main/g/gssdp/libgssdp-1.0-dbg_0.14.7-1ubuntu1_i386.deb Size: 78840 MD5sum: 72e8427855a9a52d591bab07260562d7 SHA1: 5ed0968f12d36f565d2f9fca7a763305f136adfe SHA256: 16c91f23dc3aee6869300040d50bb9ea18153e8a5a744862620cddd559f3f78f Description: GObject-based library for SSDP (debug symbols) Homepage: http://www.gupnp.org Description-md5: bf28d5d39c668581bf6540b27ef584b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgssdp-1.0-dev Priority: optional Section: libdevel Installed-Size: 194 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: i386 Source: gssdp Version: 0.14.7-1ubuntu1 Replaces: gir-repository-dev (<= 0.6.5-5), gupnp-vala (<= 0.10.4) Depends: libgssdp-1.0-3 (= 0.14.7-1ubuntu1), gir1.2-gssdp-1.0 (= 0.14.7-1ubuntu1), libsoup2.4-dev Suggests: libgssdp-doc Breaks: gir-repository-dev (<= 0.6.5-5), gupnp-vala (<= 0.10.4) Filename: pool/main/g/gssdp/libgssdp-1.0-dev_0.14.7-1ubuntu1_i386.deb Size: 26564 MD5sum: 91dac3fb685511d19bd15c55896468fa SHA1: 72eb28318143cb483756a95e5ce5c2f2f64639b2 SHA256: 9d1ebd7b90a0e2a3414bb8ee2fb67bf28b60edab4941897c24a69d225b016154 Description: GObject-based library for SSDP (development files) Homepage: http://www.gupnp.org Description-md5: 24d125dcec038893face07f8c878be98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgssdp-doc Priority: optional Section: doc Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: all Source: gssdp Version: 0.14.7-1ubuntu1 Depends: lynx | www-browser Filename: pool/main/g/gssdp/libgssdp-doc_0.14.7-1ubuntu1_all.deb Size: 20782 MD5sum: f9c0650cba4abfc190d492c22f663ddb SHA1: e9db92c26f2cecdb68b55ea862b1a0fc92062847 SHA256: da1c6cb074223deb7f59694a3e055411a36465e70640aa1a7f570c248d7224e5 Description: GObject-based library for SSDP (documentation) Homepage: http://www.gupnp.org Description-md5: e8ae890da00b06f4d32e389d620a1a18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgssglue-dev Priority: optional Section: libdevel Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libgssglue Version: 0.4-2ubuntu1 Replaces: libgssapi-dev (<= 0.11-1) Depends: libgssglue1 (= 0.4-2ubuntu1) Conflicts: libgssapi-dev (<= 0.11-1) Filename: pool/main/libg/libgssglue/libgssglue-dev_0.4-2ubuntu1_i386.deb Size: 25388 MD5sum: 3db1fd4c3f95bd43bbd0cd389a1764a3 SHA1: 6e3c78d79e890c5f533ec3f8d62eed61a5acd7d7 SHA256: cf00a5eb43db5e93c2199d7893e27b31cf0ae33469f5333cac35b7c8e396f5cc Description: header files and docs for libgssglue Homepage: http://www.citi.umich.edu/projects/nfsv4/linux/ Description-md5: 35720ad4288bc22005305dbcc9ea02a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgssglue1 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libgssglue Version: 0.4-2ubuntu1 Replaces: libgssapi2 (<= 0.11-1) Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Conflicts: libgssapi2 (<= 0.11-1) Filename: pool/main/libg/libgssglue/libgssglue1_0.4-2ubuntu1_i386.deb Size: 19064 MD5sum: 4d95d1e70b9f43d8293385756966d9ba SHA1: 0ac2ad2af46d5cb4aa06fd74bba4968aae4f64f1 SHA256: e424e2c75fd444b5c20e5245081841f2a6d9997e9aaf067d8d3727dbfd8a54d1 Description: mechanism-switch gssapi library Multi-Arch: same Homepage: http://www.citi.umich.edu/projects/nfsv4/linux/ Description-md5: 33d237300a5fcf648297ee929270d1f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgssrpc4 Priority: optional Section: libs Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.15), libgssapi-krb5-2 (>= 1.10+dfsg~) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Conflicts: libkadm55 Filename: pool/main/k/krb5/libgssrpc4_1.12+dfsg-2ubuntu4_i386.deb Size: 52424 MD5sum: f84bc29784a5de0ba3b2e68a5ceb2044 SHA1: 1d42165987c567aa99e02dde33e42bb3103a6798 SHA256: 8761a3d2b32d4b93aa0db784b9d69e844799201b154d44d8ec295eeefbfab075 Description: MIT Kerberos runtime libraries - GSS enabled ONCRPC Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: f18b3ce27893cc2b96de6c617dc25d94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer-plugins-base0.10-0 Priority: optional Section: libs Installed-Size: 1448 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Replaces: gobject-introspection-repository (<< 0.6.5-2) Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libgstreamer0.10-0 (>= 0.10.36), liborc-0.4-0 (>= 1:0.4.18), zlib1g (>= 1:1.1.4), iso-codes Pre-Depends: multiarch-support Suggests: libvisual-0.4-plugins, gstreamer-codec-install | gnome-codec-install Conflicts: gstreamer0.10-pulseaudio (<< 0.10.16-4), totem-gstreamer (<= 2.17.92-0ubuntu1) Filename: pool/main/g/gst-plugins-base0.10/libgstreamer-plugins-base0.10-0_0.10.36-1.1ubuntu2_i386.deb Size: 419018 MD5sum: e70ef20458b0a295de6086507013148e SHA1: e3e9c49680c127ed4df215cf06e5e7a64dee81b0 SHA256: b95f623b0407a1d5740d979c3a758cac30bfa6941c9dee5791829ac123cf221f Description: GStreamer libraries from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: 1f83d48f1815b1413bf5322dc753ba59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgstreamer-plugins-base0.10-dev Priority: optional Section: libdevel Installed-Size: 2064 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base0.10 Version: 0.10.36-1.1ubuntu2 Replaces: gobject-introspection-repository (<< 0.6.5-2) Depends: libgstreamer-plugins-base0.10-0 (= 0.10.36-1.1ubuntu2), libc6-dev | libc-dev, pkg-config, libgstreamer0.10-dev (>= 0.10.36), libglib2.0-dev, libxml2-dev, gir1.2-gst-plugins-base-0.10 (= 0.10.36-1.1ubuntu2) Filename: pool/main/g/gst-plugins-base0.10/libgstreamer-plugins-base0.10-dev_0.10.36-1.1ubuntu2_i386.deb Size: 177434 MD5sum: 7b5cd71b559d39dd0f5599b5c86c1bdb SHA1: 3239db95d26a6ffafe22d54bf4394d0c7c8e7fa2 SHA256: a2aaa29421d534a1376bd0b8d3de7b5e154cb029c178e6c59cfbf15431709d75 Description: GStreamer development files for libraries from the "base" set Homepage: http://gstreamer.freedesktop.org Description-md5: 0acc042058e8c9e8d17fbca59836d2a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer-plugins-base1.0-0 Priority: optional Section: libs Installed-Size: 1620 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libgstreamer1.0-0 (>= 1.2.0), liborc-0.4-0 (>= 1:0.4.18), zlib1g (>= 1:1.1.4), iso-codes Pre-Depends: multiarch-support Suggests: libvisual-0.4-plugins, gstreamer-codec-install | gnome-codec-install Breaks: totem-gstreamer (<= 2.17.92-0ubuntu1) Filename: pool/main/g/gst-plugins-base1.0/libgstreamer-plugins-base1.0-0_1.2.3-1_i386.deb Size: 429608 MD5sum: f97c4faddae8a0a7e58c311cce42f80d SHA1: 024cc95c3c84c68bb73f49350eccfd074dbca7e1 SHA256: d6cfadda8b87d943bb9d79b479c06b4b3eb788b60f032108a538cfbf40dc3e4f Description: GStreamer libraries from the "base" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: 1f83d48f1815b1413bf5322dc753ba59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgstreamer-plugins-base1.0-dev Priority: optional Section: libdevel Installed-Size: 2275 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-base1.0 Version: 1.2.3-1 Depends: libgstreamer-plugins-base1.0-0 (= 1.2.3-1), libc6-dev | libc-dev, pkg-config, libgstreamer1.0-dev (>= 1.2.0), libglib2.0-dev, libxml2-dev, gir1.2-gst-plugins-base-1.0 (= 1.2.3-1) Filename: pool/main/g/gst-plugins-base1.0/libgstreamer-plugins-base1.0-dev_1.2.3-1_i386.deb Size: 196230 MD5sum: 329387461152a03d347d7f478d38071b SHA1: fb36ef12a94ef9f00ebb0bcf12820440e423f44a SHA256: 7027ce168cb2363a2227ffb605ef50b9b6d34646c73ca482812b7bef6d885e31 Description: GStreamer development files for libraries from the "base" set Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html Description-md5: 0acc042058e8c9e8d17fbca59836d2a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer-plugins-good1.0-0 Priority: extra Section: libs Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Replaces: gstreamer1.0-plugins-good (= 1.0.3-1ubuntu1), libgstreamer-plugins-bad1.0-0 (<< 1.0.3-1ubuntu1) Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0) Pre-Depends: multiarch-support Breaks: libgstreamer-plugins-bad1.0-0 (<< 1.0.3-1ubuntu1) Filename: pool/main/g/gst-plugins-good1.0/libgstreamer-plugins-good1.0-0_1.2.3-1ubuntu2_i386.deb Size: 30532 MD5sum: 90d71e054caa537d17d72d62c052981c SHA1: a4559d6c9b381713609e2ce0f3a88916161454f3 SHA256: 8090ece1ecae2ada646612ff3f6c81a4551ea37408e505fea21d9a630a965519 Description: GStreamer development files for libraries from the "good" set Multi-Arch: same Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Description-md5: 99c064697a600533c69cdc00ad0f48ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgstreamer-plugins-good1.0-dev Priority: extra Section: libdevel Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst-plugins-good1.0 Version: 1.2.3-1ubuntu2 Depends: libgstreamer-plugins-good1.0-0 (= 1.2.3-1ubuntu2), libgstreamer1.0-dev Filename: pool/main/g/gst-plugins-good1.0/libgstreamer-plugins-good1.0-dev_1.2.3-1ubuntu2_i386.deb Size: 16904 MD5sum: 984406ee4ae5d645725282dedf36a497 SHA1: 94fb45d1acbd1b1825f537d6704eb4b8973b0ac0 SHA256: 58e8f88f32885319ee091d175904bd5915061c40b51a4c6df71d620f3f7f21df Description: GStreamer development files for libraries from the "good" set Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-good.html Description-md5: d5b042b5551683fe8cf1d03a80a7c168 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer0.10-0 Priority: optional Section: libs Installed-Size: 2700 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Replaces: gobject-introspection-repository (<< 0.6.5-2) Depends: libc6 (>= 2.17), libglib2.0-0 (>= 2.37.3), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Suggests: gstreamer0.10-tools, gstreamer0.10-plugins-base Conflicts: gstreamer0.10-plugins-base (<< 0.10.25.2), libgstreamer-plugins-base0.10-0 (<< 0.10.11cvs20070110-0ubuntu5) Filename: pool/main/g/gstreamer0.10/libgstreamer0.10-0_0.10.36-1.2ubuntu3_i386.deb Size: 617084 MD5sum: 795a3ca3f2048c4dc32d25560e191c35 SHA1: e6543c6c2b2759526025242f093dea2f4a52ed20 SHA256: f76a01bffb3193410f7707d1ced2ee30a3c35df8ef3a0209fd5e2e8fed3b916b Description: Core GStreamer libraries and elements Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: f08b5d59945781d0a8d4897e45d5a847 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgstreamer0.10-0-dbg Priority: extra Section: libdevel Installed-Size: 2857 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Depends: libgstreamer0.10-0 (= 0.10.36-1.2ubuntu3) Filename: pool/main/g/gstreamer0.10/libgstreamer0.10-0-dbg_0.10.36-1.2ubuntu3_i386.deb Size: 1906474 MD5sum: dc0e5768fed34c697231b7163e60617f SHA1: 6326c797085a068fb73e0788203ea0b4cdfe75fb SHA256: ad9d1fafa03dbeed293d16c9221d2f65e389a39ac5df4b657d328b984e744414 Description: Core GStreamer libraries and elements Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: eca1cd2ce224cc45fde385a4110da4ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer0.10-dev Priority: optional Section: libdevel Installed-Size: 5905 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gstreamer0.10 Version: 0.10.36-1.2ubuntu3 Replaces: gobject-introspection-repository (<< 0.6.5-2), gstreamer-tools (<< 0.10.20-2) Depends: libgstreamer0.10-0 (= 0.10.36-1.2ubuntu3), libc6-dev | libc-dev, pkg-config, libglib2.0-dev, libxml2-dev, libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.24), gir1.2-gstreamer-0.10 (= 0.10.36-1.2ubuntu3) Recommends: debhelper Suggests: gstreamer0.10-doc Filename: pool/main/g/gstreamer0.10/libgstreamer0.10-dev_0.10.36-1.2ubuntu3_i386.deb Size: 822358 MD5sum: ac148b79cb6f880a1476fed6da94f1f7 SHA1: bf2766cff768ce5fc0eac8373ae07930e5de7310 SHA256: 43609fce32664282e227215b9ffb71452e9e77ac1f550730a97743c7053ed554 Description: GStreamer core development files Homepage: http://gstreamer.freedesktop.org Description-md5: de1692260510350a48f76ec91eae40a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer1.0-0 Priority: optional Section: libs Installed-Size: 2848 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gstreamer1.0 Version: 1.2.3-1 Depends: libc6 (>= 2.17), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Suggests: gstreamer1.0-tools, gstreamer1.0-plugins-base Filename: pool/main/g/gstreamer1.0/libgstreamer1.0-0_1.2.3-1_i386.deb Size: 585508 MD5sum: afcd58ac9b41541273415dac56c77994 SHA1: 94555b8965ec456d0c701f7af090a0a875c8bf20 SHA256: 1d81d59ac2f239e74a6e94d9684d73933771add1fa396523e8e1a0bfaaec168a Description: Core GStreamer libraries and elements Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: f08b5d59945781d0a8d4897e45d5a847 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgstreamer1.0-0-dbg Priority: extra Section: debug Installed-Size: 2864 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gstreamer1.0 Version: 1.2.3-1 Depends: libgstreamer1.0-0 (= 1.2.3-1) Filename: pool/main/g/gstreamer1.0/libgstreamer1.0-0-dbg_1.2.3-1_i386.deb Size: 1767840 MD5sum: a4c714ecfccf6dbb5fdb56d9e8338560 SHA1: 961d899a15d92e66c52323dbb70cbd3be3342c81 SHA256: 5805de84d48608b3e41d9a1e41a212f7534e245cd051431c507396e6083b2a33 Description: Core GStreamer libraries and elements Multi-Arch: same Homepage: http://gstreamer.freedesktop.org Description-md5: eca1cd2ce224cc45fde385a4110da4ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgstreamer1.0-dev Priority: optional Section: libdevel Installed-Size: 4073 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gstreamer1.0 Version: 1.2.3-1 Depends: libgstreamer1.0-0 (= 1.2.3-1), libc6-dev | libc-dev, pkg-config, libglib2.0-dev, libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.32), gir1.2-gstreamer-1.0 (= 1.2.3-1) Recommends: debhelper Suggests: gstreamer1.0-doc Filename: pool/main/g/gstreamer1.0/libgstreamer1.0-dev_1.2.3-1_i386.deb Size: 322692 MD5sum: c9a047ae14a6ddd6c64d1bfe8b63df3a SHA1: c2781e54a7a5611ad44724995096f1a4c50eb59a SHA256: 723bd954917667e57dbd9e2173dbd6e662c13579c7c94a83705066afe48aea54 Description: GStreamer core development files Homepage: http://gstreamer.freedesktop.org Description-md5: de1692260510350a48f76ec91eae40a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtest-dev Priority: optional Section: libdevel Installed-Size: 1302 Maintainer: Ubuntu Developers Original-Maintainer: Steve M. Robbins Architecture: all Source: gtest Version: 1.6.0-1ubuntu6 Filename: pool/main/g/gtest/libgtest-dev_1.6.0-1ubuntu6_all.deb Size: 262206 MD5sum: 3952cdc66cdead128769b18d13df4bd7 SHA1: d47ddbabd85abc4c6ba6ae4f54b7aefd3782f54e SHA256: 144e70bde71d5894da4cf8a4762a88cc5ca97df6b374828e59c83168151c7916 Description: Google's framework for writing C++ tests - header files Multi-Arch: foreign Homepage: http://code.google.com/p/googletest/ Description-md5: 91f80794a8414047791bb3f205c9aa39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-3-0 Priority: optional Section: libs Installed-Size: 6741 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Provides: gtk3-binver-3.0.0 Depends: libgtk-3-common (>= 3.10.8), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.7.5), libc6 (>= 2.9), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.13.0~20140204), libcolord1 (>= 0.1.10), libcups2 (>= 1.6.2), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.27.1), libglib2.0-0 (>= 2.39.4), libpango-1.0-0 (>= 1.32.4), libpangocairo-1.0-0 (>= 1.32.4), libpangoft2-1.0-0 (>= 1.32.4), libwayland-client0 (>= 1.3.92), libwayland-cursor0 (>= 1.2.0), libx11-6 (>= 2:1.4.99.1), libxcomposite1 (>= 1:0.3-1), libxcursor1 (>> 1.1.2), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxi6 (>= 2:1.2.99.4), libxinerama1, libxkbcommon0 (>= 0.2.0-0ubuntu3~), libxrandr2 (>= 2:1.2.99.3), shared-mime-info Pre-Depends: multiarch-support Recommends: hicolor-icon-theme, libgtk-3-bin Suggests: librsvg2-common, gvfs Breaks: gnome-themes-standard (<< 3.6), gtk3-engines-unico (<< 1.0.2-0ubuntu2), libvte-2.90-9 (<< 1:0.32), libwebkitgtk-3.0-0 (<< 1.8.0), murrine-themes (<= 0.98.2) Filename: pool/main/g/gtk+3.0/libgtk-3-0_3.10.8-0ubuntu1_i386.deb Size: 1919994 MD5sum: 00fa0c1b29304ff706a1db264b694ec1 SHA1: db2982042b279bf536ca7d15f0cb7b0d029a2de5 SHA256: 1790cf3391dfa9bdff0dfd564fe698ad914ba1597e1b3ee374814303d958773d Description: GTK+ graphical user interface library Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 2d73631a8c144c8ea021cee46ee049b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk-3-0-dbg Priority: extra Section: debug Installed-Size: 16810 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libgtk-3-0 (= 3.10.8-0ubuntu1), libgtk-3-common Filename: pool/main/g/gtk+3.0/libgtk-3-0-dbg_3.10.8-0ubuntu1_i386.deb Size: 4965410 MD5sum: 0139746c8bbbb5f0dd6be4c7d8f6bb7b SHA1: 38570ecc06fa5791293d938c6ee555ecfde1f0ef SHA256: 72c3bbcc012f0a750493b7d4781ab13c4322396a3e919fdb020bd0848fa99a38 Description: GTK+ libraries and debugging symbols Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: dc8b9ec0e4c1ec0225178df62ff88672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-3-bin Priority: optional Section: misc Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.5), libgtk-3-0 (>= 3.10.8-0ubuntu1), libgtk-3-common (>= 3.10.8) Filename: pool/main/g/gtk+3.0/libgtk-3-bin_3.10.8-0ubuntu1_i386.deb Size: 18096 MD5sum: 465f450e8097262d0aa26296a83a7ada SHA1: a767343a193318b6c109220d9c6ad161c022f7d5 SHA256: 4ab92a731abb13cd82ebd0d022e555d1dc3f6d2bfb56186b439c86885be430e7 Description: programs for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 35573b29e3a6877ccd55de7c6873d715 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk-3-common Priority: optional Section: misc Installed-Size: 352 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Replaces: libgtk-3-0 (<< 3.5.4) Depends: dconf-gsettings-backend | gsettings-backend Recommends: libgtk-3-0 Breaks: libgtk-3-0 (<< 3.5.4) Filename: pool/main/g/gtk+3.0/libgtk-3-common_3.10.8-0ubuntu1_all.deb Size: 167556 MD5sum: d4813d01e43889bf2b464e8f89dd919d SHA1: 1b838c0b33ac4e5ca9fefa420af40cecafc9fbfd SHA256: 53866d86711233389c48fb0c680c4c6d658e1517d8f24417ff5cbb0b75e220f8 Description: common files for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 3ebc2dc44381a6b09ce3f8e0696e2008 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk-3-dev Priority: optional Section: libdevel Installed-Size: 9627 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Depends: libgtk-3-0 (= 3.10.8-0ubuntu1), gir1.2-gtk-3.0 (= 3.10.8-0ubuntu1), libgtk-3-common, libglib2.0-dev (>= 2.37.5), libgdk-pixbuf2.0-dev (>= 2.27.1), libpango1.0-dev (>= 1.32.4), libatk1.0-dev (>= 2.7.5), libatk-bridge2.0-dev, libcairo2-dev (>= 1.13.0~20140204), libwayland-dev (>= 1.2.0), libx11-dev, libxkbcommon-dev, libxext-dev, libxinerama-dev, libxi-dev, libxrandr-dev, libxcursor-dev, libxfixes-dev, libxcomposite-dev, libxdamage-dev, pkg-config (>= 0.26-1) Suggests: libgtk-3-doc Filename: pool/main/g/gtk+3.0/libgtk-3-dev_3.10.8-0ubuntu1_i386.deb Size: 801308 MD5sum: 852c74ffa40eaa5ce420b1a32c2e301a SHA1: c65da78285a7a7e3ef6901f516b2b43af5d73ca8 SHA256: 92aba1a6867f85a514c8f85d21ef969f290ccffb20a9e76addb31a7ba8d477e4 Description: development files for the GTK+ library Homepage: http://www.gtk.org/ Description-md5: 5e247317651e3625eb226ee49f0cfec7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-3-doc Priority: optional Section: doc Installed-Size: 20091 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+3.0 Version: 3.10.8-0ubuntu1 Recommends: libglib2.0-doc, libatk1.0-doc, libpango1.0-doc Suggests: devhelp Filename: pool/main/g/gtk+3.0/libgtk-3-doc_3.10.8-0ubuntu1_all.deb Size: 2558832 MD5sum: 4cdbca2577504cb84afad4b5a9d3eb1a SHA1: 9e877807f67c0ce216c70764535073a9124323bb SHA256: d90f542e5cd1395593f4d4a58c9e6b1117e63b456df43fb3e7079fd668e5a55b Description: documentation for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 0daae17852bb4b449b026f369e26dde3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libgtk-vnc-1.0-0 Priority: optional Section: libs Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libc6 (>= 2.3.6-6~), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.22.0), libgvnc-1.0-0 (>= 0.5.1), libx11-6 Filename: pool/main/g/gtk-vnc/libgtk-vnc-1.0-0_0.5.3-0ubuntu2_i386.deb Size: 22642 MD5sum: 6c3ed6a1d1bd5a3623281ea4cec97faf SHA1: c24e56ed18d8efea7101c2b79d1aafa17b4cd3f0 SHA256: 2424debfe4c568c8b8bc7f6cccbcfdb7a03c8bc2ce79ac833958e3f839d99598 Description: VNC viewer widget for GTK+2 (runtime libraries) Description-md5: 001aae7cbcebe01925d88ddfb225fe00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libgtk-vnc-1.0-0-dbg Priority: extra Section: libs Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libgtk-vnc-1.0-0 (= 0.5.3-0ubuntu2) Filename: pool/main/g/gtk-vnc/libgtk-vnc-1.0-0-dbg_0.5.3-0ubuntu2_i386.deb Size: 57064 MD5sum: 8da655683ff77f00c24aa3b2fa1e0c62 SHA1: c4846b05ba0a12cd7395589c65d16f0e96acfbe1 SHA256: b74486d23ba5c713e305f835b44adad28906f0db6b6e7bfa5cf1c015c422f631 Description: VNC viewer widget for GTK+2 (debugging symbols) Description-md5: 189086149200162afe0125d2da22b952 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-vnc-1.0-dev Priority: optional Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libgtk-vnc-1.0-0 (= 0.5.3-0ubuntu2), libgvnc-1.0-dev (= 0.5.3-0ubuntu2), libgtk2.0-dev (>= 2.0), libgnutls-dev (>= 1.4.0), libcairo2-dev (>= 1.2.0) Filename: pool/main/g/gtk-vnc/libgtk-vnc-1.0-dev_0.5.3-0ubuntu2_i386.deb Size: 5032 MD5sum: 3f7a70376381f2055d8b14af5551389f SHA1: 62ead29e4604ac2c30159a99f0cff91e5d5e0036 SHA256: cbc505c13d67eb8cc5b6ac0f8e115603c823e75662d7dc405f5c04487466ed04 Description: VNC viewer widget for GTK+2 (development files) Description-md5: 53b35ac1e97a5884b2b4d9f64793eae1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-vnc-2.0-0 Priority: optional Section: libs Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libc6 (>= 2.3.6-6~), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libgvnc-1.0-0 (>= 0.5.1), libx11-6 Filename: pool/main/g/gtk-vnc/libgtk-vnc-2.0-0_0.5.3-0ubuntu2_i386.deb Size: 22030 MD5sum: ffbec470a4e2127408e4df6f0059b610 SHA1: b6fec0ec04c60c4b0f4af90e01dec3c3d27991ea SHA256: 2d347a84e75011196b90f2ed5dc071b45960d5a9741a0fbece3d533bc47bd20f Description: VNC viewer widget for GTK+3 (runtime libraries) Description-md5: fc348729f8e6c7823db7b251e45bac96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-desktop Package: libgtk-vnc-2.0-0-dbg Priority: extra Section: debug Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libgtk-vnc-2.0-0 (= 0.5.3-0ubuntu2) Filename: pool/main/g/gtk-vnc/libgtk-vnc-2.0-0-dbg_0.5.3-0ubuntu2_i386.deb Size: 52952 MD5sum: 197f5d969a070eee646e534570de4a75 SHA1: ba9e97bcdba3a0d2b560e7910ec2f914d1173f39 SHA256: 2148920369c8fd93def4cd71ff7981f83e9718d4aba3077a97c5e37f13aec5dc Description: VNC viewer widget for GTK+3 (debugging symbols) Description-md5: 2cac0edf07284a74e3223eda1e9cd0a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk-vnc-2.0-dev Priority: optional Section: libdevel Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libgvnc-1.0-dev (= 0.5.3-0ubuntu2), libgtk-vnc-2.0-0 (= 0.5.3-0ubuntu2), gir1.2-gtk-vnc-2.0 (= 0.5.3-0ubuntu2), libgtk-3-dev, libgnutls-dev (>= 1.4.0), libcairo2-dev (>= 1.2.0) Filename: pool/main/g/gtk-vnc/libgtk-vnc-2.0-dev_0.5.3-0ubuntu2_i386.deb Size: 9272 MD5sum: c70a1888c8fe0969d09e1a93bcc04770 SHA1: 4dadf1e47e036e25d4620198c07c8000a02404da SHA256: 384339a8181e345e3f9daa3afda22ff38c1c19c79dbba17b47a49fa7870c7694 Description: VNC viewer widget for GTK+3 (development files) Description-md5: 0daa1fb1862eab5c045613d5b035a5e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk2.0-0 Priority: optional Section: libs Installed-Size: 6286 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Provides: gtk2.0-binver-2.10.0 Depends: libgtk2.0-common, libatk1.0-0 (>= 1.32.0), libc6 (>= 2.4), libcairo2 (>= 1.6.4-6.1), libcups2 (>= 1.6.2), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.28.3), libpangocairo-1.0-0 (>= 1.28.3), libpangoft2-1.0-0 (>= 1.28.3), libx11-6 (>= 2:1.4.99.1), libxcomposite1 (>= 1:0.3-1), libxcursor1 (>> 1.1.2), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxi6, libxinerama1, libxrandr2 (>= 2:1.2.99.3), libxrender1, shared-mime-info Pre-Depends: multiarch-support Recommends: hicolor-icon-theme, libgtk2.0-bin Suggests: librsvg2-common, gvfs Filename: pool/main/g/gtk+2.0/libgtk2.0-0_2.24.23-0ubuntu1_i386.deb Size: 1694118 MD5sum: 3e23389cc87da2887301626fb7ad35af SHA1: 24a64b9d1453a4e1b0ba9133e592061ec67f3f28 SHA256: 9e82ac81c6f63f3952cdddf41e58902baf9fe780061c1a1d8aad0d799bcb26d7 Description: GTK+ graphical user interface library Multi-Arch: same Homepage: http://www.gtk.org/ Description-md5: 2d73631a8c144c8ea021cee46ee049b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk2.0-0-dbg Priority: extra Section: libdevel Installed-Size: 15537 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libgtk2.0-0 (= 2.24.23-0ubuntu1), libgtk2.0-common Filename: pool/main/g/gtk+2.0/libgtk2.0-0-dbg_2.24.23-0ubuntu1_i386.deb Size: 4407942 MD5sum: 791451dee4edf93d6578fe5076b6ee6a SHA1: ed5fc7a3d0c06e7d48e6db572fd4c485e1101892 SHA256: e6e57160458be6d692f35047def542ca64cc6b8390ac1799161ff5bd34ccd531 Description: GTK+ libraries and debugging symbols Homepage: http://www.gtk.org/ Description-md5: dc8b9ec0e4c1ec0225178df62ff88672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk2.0-bin Priority: optional Section: misc Installed-Size: 570 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Depends: libgtk2.0-0 (= 2.24.23-0ubuntu1), libgtk2.0-common Filename: pool/main/g/gtk+2.0/libgtk2.0-bin_2.24.23-0ubuntu1_i386.deb Size: 9762 MD5sum: 5b1c0743aecdb7de7429c40e5af6504d SHA1: 130c455a0d001cdf85d6023a9b5923fe367f8454 SHA256: a22e7b6466023cd1aeb661bc8f73884b5f01b593ca6bc605f975c282092261cc Description: programs for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 35573b29e3a6877ccd55de7c6873d715 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk2.0-cil Priority: optional Section: libs Installed-Size: 2315 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: i386 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: gtk-sharp2-gapi (<< 2.10.0-1) Depends: cli-common (>= 0.5.6), libatk1.0-0 (>= 2.6.0), libcairo2 (>= 1.12.0), libgdk-pixbuf2.0-0 (>= 2.26.4), libglib2.0-0 (>= 2.34.1), libglib2.0-cil (= 2.12.10-5), libgtk2.0-0 (>= 2.24.0), libmono-cairo4.0-cil (>= 2.10.1), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-drawing4.0-cil (>= 1.0), libpango1.0-0 (>= 1.29.4), libc6 (>= 2.1.3) Suggests: monodoc-gtk2.0-manual Filename: pool/main/g/gtk-sharp2/libgtk2.0-cil_2.12.10-5_i386.deb Size: 628258 MD5sum: c8f67428a74f402e1140a129b9a3ab79 SHA1: 584d38ab0c1b394039b3bc89c7e4d80e460b5340 SHA256: f7a2bfdd2a748fde616dec1d6027573d4c076d1f720abcf045a2ad34042fd2fb Description: CLI binding for the GTK+ toolkit 2.12 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 302b3671c7a7ae8862c5bf47e00cad6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libgtk2.0-cil-dev Priority: optional Section: libs Installed-Size: 1696 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: i386 Source: gtk-sharp2 Version: 2.12.10-5 Replaces: libgtk2.0-cil (<< 2.12.9-2) Depends: libglib2.0-cil-dev (= 2.12.10-5), libgtk2.0-cil (= 2.12.10-5) Filename: pool/main/g/gtk-sharp2/libgtk2.0-cil-dev_2.12.10-5_i386.deb Size: 155286 MD5sum: 8172c2d11be7d6ffca6f9c5e98b7c942 SHA1: 423b51dbdef67e459ffb1585ff10abe5c20c3a9d SHA256: 8a9829bfb7f602dc64a92a0e635d8657e3a54382f7667a931ee282bb6a30ffd2 Description: CLI binding for the GTK+ toolkit 2.12 Homepage: http://www.mono-project.com/GtkSharp Description-md5: 4ae2d98a41b4ac28fdcee18f721494a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk2.0-common Priority: optional Section: misc Installed-Size: 732 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Replaces: libgtk2.0-0 (<< 2.24.8-2) Recommends: libgtk2.0-0 Breaks: libgtk2.0-0 (<< 2.24.8-2) Filename: pool/main/g/gtk+2.0/libgtk2.0-common_2.24.23-0ubuntu1_all.deb Size: 120808 MD5sum: c64b2bb1846e583b318d07a8c043839f SHA1: 1365ea4c5a4e54c4643a0e0bd4af32224f85e2ab SHA256: 06677a831a9608d72bc3bcdb55a058dbcbc41162a5b7ad692522ef1f591c1842 Description: common files for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 3ebc2dc44381a6b09ce3f8e0696e2008 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtk2.0-dev Priority: optional Section: libdevel Installed-Size: 16930 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Replaces: gir-repository-dev Depends: libgtk2.0-0 (= 2.24.23-0ubuntu1), gir1.2-gtk-2.0 (= 2.24.23-0ubuntu1), libgtk2.0-common, libglib2.0-dev (>= 2.27.3), libgdk-pixbuf2.0-dev (>= 2.21.0), libpango1.0-dev (>= 1.20), libatk1.0-dev (>= 1.29.2), libcairo2-dev (>= 1.6.4-6.1), libx11-dev (>= 2:1.0.0-6), libxext-dev (>= 1:1.0.1-2), libxinerama-dev (>= 1:1.0.1-4.1), libxi-dev (>= 1:1.0.1-4), libxrandr-dev (>= 2:1.2.99), libxcursor-dev, libxfixes-dev (>= 1:3.0.0-3), libxcomposite-dev (>= 1:0.2.0-3), libxdamage-dev (>= 1:1.0.1-3), pkg-config (>= 0.26-1), libxml2-utils Recommends: python (>= 2.4), debhelper Suggests: libgtk2.0-doc Filename: pool/main/g/gtk+2.0/libgtk2.0-dev_2.24.23-0ubuntu1_i386.deb Size: 2499608 MD5sum: ec5c7937150211c903847f8ffa3c3e59 SHA1: 2c9889db13f80973deb4c3b7edb662f38cce7817 SHA256: 87af132f68cf1823231713fc7f23cc9d8dec4998980d44405c6f47566cd5fd0f Description: development files for the GTK+ library Homepage: http://www.gtk.org/ Description-md5: af1caa5ba73fd17300b1f1bca4680e0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtk2.0-doc Priority: optional Section: doc Installed-Size: 22858 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtk+2.0 Version: 2.24.23-0ubuntu1 Recommends: libglib2.0-doc, libatk1.0-doc, libpango1.0-doc Suggests: devhelp Filename: pool/main/g/gtk+2.0/libgtk2.0-doc_2.24.23-0ubuntu1_all.deb Size: 2306840 MD5sum: 317a3d8ead8994a975f9278fce496286 SHA1: 9762fcfe4d22b3e4f66bc412cb87ba0a2c105a0e SHA256: 8494572ba64106905a14f83a5381b8adf8208fef8b4f79cd6f71bbb74c413235 Description: documentation for the GTK+ graphical user interface library Multi-Arch: foreign Homepage: http://www.gtk.org/ Description-md5: 72db06b5e9e6765255aec71fbc48af5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkhtml-4.0-0 Priority: optional Section: libs Installed-Size: 905 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libgail-3-0 (>= 3.0.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.30.0), libgtk-3-0 (>= 3.0.2), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libgtkhtml-4.0-common (= 4.6.6-2ubuntu1) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-4.0-0_4.6.6-2ubuntu1_i386.deb Size: 295408 MD5sum: c956321c37ce45554663f080dca7e768 SHA1: 592defca0f836ad0deeb61b60e1bd4f7222d8b7d SHA256: d2a49d8e44ee011393eafb01aece46cc0299ce8f9148c96c8a5de79ec2547206 Description: HTML rendering/editing library - runtime files Homepage: http://www.gnome.org/projects/evolution/ Description-md5: 9cabb26478f8a12fecfd8e07ff59fc16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libgtkhtml-4.0-common Priority: optional Section: libs Installed-Size: 456 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: all Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: gnome-icon-theme (>= 2.22.0) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-4.0-common_4.6.6-2ubuntu1_all.deb Size: 72666 MD5sum: e654d176d3bf687b2716dbc03cd1e392 SHA1: 444e39e77dedccf76378bf8ac00bc1a8f64f15db SHA256: e54e67095eb5e403cfec1bbe7fb65cb35e942074e806888244549becbe9696b8 Description: HTML rendering/editing library - common data Homepage: http://www.gnome.org/projects/evolution/ Description-md5: f0166ef4eba4f8bf8d64fe29e5f22160 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libgtkhtml-4.0-dbg Priority: extra Section: debug Installed-Size: 1551 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: libgtkhtml-4.0-0 (= 4.6.6-2ubuntu1), libgtkhtml-editor-4.0-0 (= 4.6.6-2ubuntu1) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-4.0-dbg_4.6.6-2ubuntu1_i386.deb Size: 1279352 MD5sum: 652d828f3999a2287b61503d1f601ece SHA1: 3022907e31f45943ec130f08427d824a5af9934f SHA256: a88e505b3338958ab182f43482e983275f054aff42b184fa5cf019fac60988d1 Description: HTML rendering/editing library - debug files Homepage: http://www.gnome.org/projects/evolution/ Description-md5: a8f18136331960bb060ad924b6d25d0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkhtml-4.0-dev Priority: optional Section: libdevel Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: libgtkhtml-4.0-0 (= 4.6.6-2ubuntu1), gsettings-desktop-schemas-dev, iso-codes, libcairo2-dev (>= 1.10.0), libenchant-dev (>= 1.1.7), libgconf2-dev, libgtk-3-dev (>= 3.0.2) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-4.0-dev_4.6.6-2ubuntu1_i386.deb Size: 12116 MD5sum: 008a0342af489e9887141c831d8bac33 SHA1: d4d30220e1550820fead12074d2f70030c270015 SHA256: 1a219004cd21ed846b8bb329ef9c707cfa7a59809a569657590195b3c8166429 Description: HTML rendering/editing library - development files Homepage: http://www.gnome.org/projects/evolution/ Description-md5: a569918f85273db7998216472807e4ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkhtml-editor-4.0-0 Priority: optional Section: libs Installed-Size: 322 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: libc6 (>= 2.3.6-6~), libcairo2 (>= 1.10.0), libenchant1c2a (>= 1.6.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.2), libgtkhtml-4.0-0 (= 4.6.6-2ubuntu1), libgtkhtml-4.0-common (= 4.6.6-2ubuntu1) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-editor-4.0-0_4.6.6-2ubuntu1_i386.deb Size: 63096 MD5sum: 4aac13eb3318d375a2a9037fa0c5daef SHA1: 3c8c3a301c0def61eb805f0208cf2afd8d5f252f SHA256: 754a0aaf13dd9dec59acba8d332f25cc2262e013d4bab550124a92e7c6afe4a9 Description: HTML rendering/editing library - editor widget Homepage: http://www.gnome.org/projects/evolution/ Description-md5: 763620e467dcce962478a03f98b839ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libgtkhtml-editor-4.0-dev Priority: extra Section: libdevel Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Debian Evolution Maintainers Architecture: i386 Source: gtkhtml4.0 Version: 4.6.6-2ubuntu1 Depends: libgtkhtml-editor-4.0-0 (= 4.6.6-2ubuntu1), libgtkhtml-4.0-dev (= 4.6.6-2ubuntu1) Filename: pool/main/g/gtkhtml4.0/libgtkhtml-editor-4.0-dev_4.6.6-2ubuntu1_i386.deb Size: 6858 MD5sum: de2583d4a5bc114a1df7a22a4de1a259 SHA1: 9685cc8d18ac14cd22c31a322014ca2112b2a8f2 SHA256: 940e116caed4a338b72a352f6b76b03eec64b24585d2405a6494139cce422dbc Description: HTML rendering/editing library - editor widget development files Homepage: http://www.gnome.org/projects/evolution/ Description-md5: e231fd3ca061829155ca7ee4294ecab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-2.4-1c2a Priority: optional Section: libs Installed-Size: 3753 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: i386 Source: gtkmm2.4 Version: 1:2.24.4-1ubuntu1 Depends: libatkmm-1.6-1 (>= 2.22.1), libc6 (>= 2.4), libcairomm-1.0-1 (>= 1.6.4), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libglibmm-2.4-1c2a (>= 2.36.2), libgtk2.0-0 (>= 2.24.0), libpangomm-1.4-1 (>= 2.27.1), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/g/gtkmm2.4/libgtkmm-2.4-1c2a_2.24.4-1ubuntu1_i386.deb Size: 665420 MD5sum: 8875de974f9272edc5ff8de1eab6e945 SHA1: 589c9abdaa1fb5f7cdd85511bdbb185c35d9942f SHA256: e561c305c9d5dde4e73d4e44fd413c0a921c074667d639e4a7c9326a395d395e Description: C++ wrappers for GTK+ (shared libraries) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 4a2b51cf5fb6a6ce6ead2e4920180ec3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb, edubuntu-live, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-live, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-live Package: libgtkmm-2.4-dbg Priority: extra Section: libdevel Installed-Size: 7660 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: i386 Source: gtkmm2.4 Version: 1:2.24.4-1ubuntu1 Depends: libgtkmm-2.4-1c2a (= 1:2.24.4-1ubuntu1) Filename: pool/main/g/gtkmm2.4/libgtkmm-2.4-dbg_2.24.4-1ubuntu1_i386.deb Size: 6801898 MD5sum: 0b235e3abfff1e166d7c854bb6c6239f SHA1: ef1709cecf2ec89576e47a1fd90f50b4127903d5 SHA256: e510e6917d33a3fba2da2d1c627de36b41117211823e875bcbcee894f830a500 Description: C++ wrappers for GTK+ (debug symbols) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: e76dcadfb10d67c229191a66c3e42c42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-2.4-dev Priority: optional Section: libdevel Installed-Size: 3707 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: i386 Source: gtkmm2.4 Version: 1:2.24.4-1ubuntu1 Depends: libgtkmm-2.4-1c2a (= 1:2.24.4-1ubuntu1), libgtk2.0-dev (>= 2.24.0), libglibmm-2.4-dev (>= 2.27.93), libpangomm-1.4-dev (>= 2.27.1), libatkmm-1.6-dev (>= 2.22.2) Suggests: libgtkmm-2.4-doc Filename: pool/main/g/gtkmm2.4/libgtkmm-2.4-dev_2.24.4-1ubuntu1_i386.deb Size: 391246 MD5sum: 9e2101964a2dd61e8c3c751d31548fb8 SHA1: 91f9ecc1c5fda16d45ea2d361b0c40039a19619b SHA256: 82c890ec75449f76b4d0dcc9a70b21f61e150f87cb3d74288af1312bd865a585 Description: C++ wrappers for GTK+ (development files) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: e68a2abad5b07fd4f30810093eb12c3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-2.4-doc Priority: optional Section: doc Installed-Size: 48788 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: all Source: gtkmm2.4 Version: 1:2.24.4-1ubuntu1 Depends: lynx | www-browser, doc-base Recommends: gtkmm-documentation Filename: pool/main/g/gtkmm2.4/libgtkmm-2.4-doc_2.24.4-1ubuntu1_all.deb Size: 9009384 MD5sum: 61c27cae34712b5d9bf95b4d58b2304e SHA1: 8ca512a9e4bc5c456837fd27aded3644570f44dc SHA256: f049cae6a4fca2abba92f608b29e63cc85705f6603a3de8f4ef57aece1440143 Description: C++ wrappers for GTK+ (documentation) Multi-Arch: foreign Homepage: http://www.gtkmm.org/ Description-md5: d6c9e996ef21360e23ce9c23697f8561 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-3.0-1 Priority: optional Section: libs Installed-Size: 4226 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtkmm3.0 Version: 3.10.1-0ubuntu2 Depends: libatkmm-1.6-1 (>= 2.22.1), libc6 (>= 2.4), libcairomm-1.0-1 (>= 1.6.4), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.18.0), libglibmm-2.4-1c2a (>= 2.36.2), libgtk-3-0 (>= 3.10.0), libpangomm-1.4-1 (>= 2.27.1), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/g/gtkmm3.0/libgtkmm-3.0-1_3.10.1-0ubuntu2_i386.deb Size: 738570 MD5sum: 9e9014ec767925d91d86006b04a49b22 SHA1: 1f6a9173b000e6c8cea69089b02f8f2146b9814b SHA256: 02bf9e815a8b03fa5df78251ca0655adbeac8502a84f34ab0426f0617b2325c8 Description: C++ wrappers for GTK+ (shared libraries) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 9e871052eb8d513d5dd06b03c8db0f3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtkmm-3.0-dbg Priority: extra Section: debug Installed-Size: 17946 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtkmm3.0 Version: 3.10.1-0ubuntu2 Depends: libgtkmm-3.0-1 (= 3.10.1-0ubuntu2) Filename: pool/main/g/gtkmm3.0/libgtkmm-3.0-dbg_3.10.1-0ubuntu2_i386.deb Size: 4008386 MD5sum: 60c8700139f404c8e2b13719aa7919c6 SHA1: 675d2e2fcc4b5b000822f0a2c87244a150dbcb54 SHA256: 1c1bc90d2ddc4e55d53aaad0d8b32996472229f4de81bb7aff49a4997f8006e3 Description: C++ wrappers for GTK+ (debug symbols) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: a3b89ae4c7b8bd10be117b16a28882e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-3.0-dev Priority: optional Section: libdevel Installed-Size: 4390 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtkmm3.0 Version: 3.10.1-0ubuntu2 Depends: libgtkmm-3.0-1 (= 3.10.1-0ubuntu2), libgtk-3-dev (>= 3.10.0), libglibmm-2.4-dev (>= 2.38.0), libcairomm-1.0-dev (>= 1.9.2), libpangomm-1.4-dev (>= 2.27.1), libatkmm-1.6-dev (>= 2.22.2), libgdk-pixbuf2.0-dev (>= 2.22.1) Suggests: libgtkmm-3.0-doc Filename: pool/main/g/gtkmm3.0/libgtkmm-3.0-dev_3.10.1-0ubuntu2_i386.deb Size: 462002 MD5sum: a1fa4b929d0931655a9dfe3c500368be SHA1: 0fe4c2a362312b03f95df7dbf687b4b243306b4a SHA256: 31e1b6d7091f50a126158d64fd5e150e7fc4d4e76b778937253ceb47985ab2ba Description: C++ wrappers for GTK+ (development files) Multi-Arch: same Homepage: http://www.gtkmm.org/ Description-md5: 3ee9e8a54eda63f3e68a65b54efa009a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkmm-3.0-doc Priority: optional Section: doc Installed-Size: 112734 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtkmm3.0 Version: 3.10.1-0ubuntu2 Depends: lynx | www-browser, doc-base Recommends: gtkmm-documentation Filename: pool/main/g/gtkmm3.0/libgtkmm-3.0-doc_3.10.1-0ubuntu2_all.deb Size: 9025014 MD5sum: b4bc89477f1060a10adad194a6f04aa4 SHA1: 5bec9e6f5f022109aaed7e75be12769c0c3d692a SHA256: 49b3fc4f6a62681e4d7234b0e0e36d35116de6cab7b27d609ae48136cc1aaa75 Description: C++ wrappers for GTK+ (documentation) Multi-Arch: foreign Homepage: http://www.gtkmm.org/ Description-md5: 6074cd934d2d7a906fb053982152b389 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtksourceview-3.0-1 Priority: optional Section: libs Installed-Size: 714 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtksourceview3 Version: 3.10.2-0ubuntu1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.38.0), libgtk-3-0 (>= 3.10), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libxml2 (>= 2.7.4), libgtksourceview-3.0-common (>= 3.10.2-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/g/gtksourceview3/libgtksourceview-3.0-1_3.10.2-0ubuntu1_i386.deb Size: 166098 MD5sum: eae624a91d4d64f3103a3d3c7cac4e2a SHA1: 786c0bec58559315cbd18db71a30ea3818d45ee3 SHA256: 5cea4b947557a48b91e3036f1cf7ddc3f8d3c266f1472077debaf1d2a39d6705 Description: shared libraries for the GTK+ syntax highlighting widget Multi-Arch: same Homepage: http://projects.gnome.org/gtksourceview/ Description-md5: 86c0657d8cc2203a66f02fa09a5105a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtksourceview-3.0-common Priority: optional Section: libs Installed-Size: 1656 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtksourceview3 Version: 3.10.2-0ubuntu1 Replaces: libgtksourceview-3.0-0 Conflicts: libgtksourceview-3.0-0 Filename: pool/main/g/gtksourceview3/libgtksourceview-3.0-common_3.10.2-0ubuntu1_all.deb Size: 154540 MD5sum: 8a0886475055caab7201921575e2b518 SHA1: 1484a5b4822c9ccb46ac707d3e2738cb2b4f352c SHA256: e9b934e7858268f92b32bb756d377a24f401d9ca4f68cbffe90450b575447c6b Description: common files for the GTK+ syntax highlighting widget Multi-Arch: foreign Homepage: http://projects.gnome.org/gtksourceview/ Description-md5: 048429c0fa63ec73efc5c1e93957e6ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgtksourceview-3.0-dev Priority: optional Section: libdevel Installed-Size: 1580 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtksourceview3 Version: 3.10.2-0ubuntu1 Replaces: libgtksourceview-3.0-common (<< 3.2.3-2) Depends: libgtksourceview-3.0-1 (= 3.10.2-0ubuntu1), gir1.2-gtksource-3.0 (= 3.10.2-0ubuntu1), libgtk-3-dev (>= 3.10), libxml2-dev (>= 2.6.0) Suggests: libgtksourceview-3.0-doc Breaks: libgtksourceview-3.0-common (<< 3.2.3-2) Filename: pool/main/g/gtksourceview3/libgtksourceview-3.0-dev_3.10.2-0ubuntu1_i386.deb Size: 223354 MD5sum: 3608d55c1aadc3207a72ccab40eef38d SHA1: 8821ea9b4afbb5f2abfe48e6f761165cd90bb88b SHA256: 47f2055f1765abd57104fc4b4f4eda4d25ae3af2d332e611d62c01e1dd62fa47 Description: development files for the GTK+ syntax highlighting widget Homepage: http://projects.gnome.org/gtksourceview/ Description-md5: 63bb614e6573822ae0f4723474fb9ea4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtksourceview-3.0-doc Priority: optional Section: doc Installed-Size: 1655 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gtksourceview3 Version: 3.10.2-0ubuntu1 Suggests: devhelp Filename: pool/main/g/gtksourceview3/libgtksourceview-3.0-doc_3.10.2-0ubuntu1_all.deb Size: 99682 MD5sum: f51a4a979ef5d3a4dd316ce310c2545e SHA1: 84c4c66b529eb8a42e5d054429751adf6b9ef835 SHA256: 483b2e10e50e5e6d3d90f493ba6fca6aecb2524b66b8b7d62989823c221ce4f5 Description: documentation for the GTK+ syntax highlighting widget Homepage: http://projects.gnome.org/gtksourceview/ Description-md5: 7ee458d7d2be7ad3d17fbeefc5af1abf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkspell-dev Priority: optional Section: libdevel Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: i386 Source: gtkspell Version: 2.0.16-1ubuntu7 Depends: libenchant-dev, libgtk2.0-dev, libgtkspell0 (= 2.0.16-1ubuntu7) Filename: pool/main/g/gtkspell/libgtkspell-dev_2.0.16-1ubuntu7_i386.deb Size: 22564 MD5sum: 666f2db5ebde2caea25abc481e832210 SHA1: 7461961f2226272a399a1198b1c49d0b8e021f40 SHA256: 356e73fdafa455ef8ec671abd0833095cb13f35953350fd2721eccf6ea00e611 Description: Development files for GtkSpell Description-md5: 1e3b6ed0827fd853c17cd8f846d1a124 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkspell0 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: i386 Source: gtkspell Version: 2.0.16-1ubuntu7 Depends: libc6 (>= 2.3.6-6~), libenchant1c2a (>= 1.6.0), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.8.0) Filename: pool/main/g/gtkspell/libgtkspell0_2.0.16-1ubuntu7_i386.deb Size: 10920 MD5sum: 86c66fd44963df7eb5b8467e58db4da9 SHA1: 4ae9f7f1ce754a7b580574b50db6cf27ce0c3220 SHA256: 66d45822ca5c2029816b6ddd7d844a4db7713ff38ea274e46053f9b5d32d0a56 Description: a spell-checking addon for GTK's TextView widget Description-md5: 3b548eff3a5e85463c18931153926871 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics Package: libgtkspell3-3-0 Priority: optional Section: libs Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtkspell3 Version: 3.0.4-1 Replaces: libgtkspell-3-0 Depends: libc6 (>= 2.3.6-6~), libenchant1c2a (>= 1.6.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0) Conflicts: libgtkspell-3-0 Filename: pool/main/g/gtkspell3/libgtkspell3-3-0_3.0.4-1_i386.deb Size: 16852 MD5sum: 5527ad370f5e4b2cecd7474f1d87fcb3 SHA1: 9e35e3a28cb7284d71e366c06ab2774137b49ff4 SHA256: 3c92626f25c42346bf82a0e0897851e618071948d4033b6368445fcf01d7e379 Description: spell-checking addon for GTK+'s TextView widget Homepage: http://gtkspell.sourceforge.net/ Description-md5: d6bae8d16129c3922c33ea551554ecdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtkspell3-3-dev Priority: optional Section: libdevel Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gtkspell3 Version: 3.0.4-1 Replaces: libgtkspell-3-dev Depends: libenchant-dev, libgtk-3-dev, libgtkspell3-3-0 (= 3.0.4-1), gir1.2-gtkspell3-3.0 (= 3.0.4-1) Conflicts: libgtkspell-3-dev Filename: pool/main/g/gtkspell3/libgtkspell3-3-dev_3.0.4-1_i386.deb Size: 25308 MD5sum: e551b1a253b52a8d899675a53f7e54bf SHA1: 418a84e76c7d385689897abbe372e71905e0b8cc SHA256: 51d46f027d03b33926f9b58bf79ba46a952cbada45f9e8bd01bc7722b8712b07 Description: Development files for GtkSpell Homepage: http://gtkspell.sourceforge.net/ Description-md5: 1e3b6ed0827fd853c17cd8f846d1a124 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtop2-7 Priority: optional Section: libs Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgtop2 Version: 2.28.5-2 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.18.0), libxau6, libgtop2-common (>= 2.28.5-2) Filename: pool/main/libg/libgtop2/libgtop2-7_2.28.5-2_i386.deb Size: 34594 MD5sum: 1bfefcd1dec1e79f854363bd02812d06 SHA1: ed2402300cf18947d440eb5210432efcd6132e88 SHA256: a50595b42406e9599b2a0f84088b517a637569ac49773c9c5d1c8db367cdbb0d Description: gtop system monitoring library (shared) Description-md5: 44bda4ce7737c0e09f96b0c554b20c79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntu-gnome-desktop Package: libgtop2-common Priority: optional Section: libs Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgtop2 Version: 2.28.5-2 Filename: pool/main/libg/libgtop2/libgtop2-common_2.28.5-2_all.deb Size: 9626 MD5sum: f5eae565fe6b5667d0f8a17e05b33ae1 SHA1: 996bcd82ad76e6c4527f529949ae53c7c3d50f6e SHA256: daad5f6427d85f44f952a161763e5cc9d685ddaec08d5e0b792be02a9753486f Description: gtop system monitoring library (common) Description-md5: 69a00376b64bd3e535f709b92c3ed675 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntu-gnome-desktop Package: libgtop2-dev Priority: optional Section: libdevel Installed-Size: 497 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgtop2 Version: 2.28.5-2 Depends: libgtop2-7 (= 2.28.5-2), gir1.2-gtop-2.0 (= 2.28.5-2), libglib2.0-dev Filename: pool/main/libg/libgtop2/libgtop2-dev_2.28.5-2_i386.deb Size: 54706 MD5sum: b87a67402d44906ed2340232c1f83831 SHA1: 32fc977fefbc889ca159a970879bd387a1a0ec1f SHA256: 9edb7ea08d1607cdb28d6291b75640292d5bdcda0646882ddd339b38dd49f3d1 Description: gtop system monitoring library (devel) Description-md5: 874845d45287f157d1c203227529deef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgtop2-doc Priority: optional Section: doc Installed-Size: 637 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgtop2 Version: 2.28.5-2 Replaces: libgtop2-dev (<< 2.28.0-1) Filename: pool/main/libg/libgtop2/libgtop2-doc_2.28.5-2_all.deb Size: 66012 MD5sum: 334c7192e4eda894b683423c91b49474 SHA1: 1a15cd089cd58acda464a9fe046ace763f62b56e SHA256: e3e49910bb0bd80cf0b400bfbf878605216dd6e46f0ba82a9ccafbe51128933e Description: gtop system monitoring library (documentation) Description-md5: 51c61f2f38a5c86ee29ed756c1ec1d49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgucharmap-2-90-7 Priority: optional Section: libs Installed-Size: 4334 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gucharmap Version: 1:3.10.1-0ubuntu2 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.4.0), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0) Filename: pool/main/g/gucharmap/libgucharmap-2-90-7_3.10.1-0ubuntu2_i386.deb Size: 934062 MD5sum: be86982059515111916a84c1d50ee2a5 SHA1: 0d0cc99420d25df22b7a20486a064d4e35177d10 SHA256: a961e5e4a34dd17f67713455fd18c373f173328912f3e0ae3b2630abc44fe3e5 Description: Unicode browser widget library (shared library) Homepage: https://wiki.gnome.org/Gucharmap Description-md5: 23d03262b30ea8c75f637ac989fdc205 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgucharmap-2-90-dev Priority: optional Section: libdevel Installed-Size: 691 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: gucharmap Version: 1:3.10.1-0ubuntu2 Replaces: libgucharmap-dev Depends: libgucharmap-2-90-7 (= 1:3.10.1-0ubuntu2), gir1.2-gucharmap-2.90 (= 1:3.10.1-0ubuntu2), libgtk-3-dev, libglib2.0-dev Conflicts: libgucharmap-dev Filename: pool/main/g/gucharmap/libgucharmap-2-90-dev_3.10.1-0ubuntu2_i386.deb Size: 30624 MD5sum: e31aaf33e6d06d950f06c9ed38dc6223 SHA1: d26abf5749208bc10c7a4020830dd72601c599db SHA256: 112981ab1a77c7bad7ac30e3c6b1c9b77041f3d563c2a2e75ae5c27a02192e26 Description: Unicode browser widget library (development headers) Homepage: https://wiki.gnome.org/Gucharmap Description-md5: 3a5187f96ac5928425f930b46f048433 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgudev-1.0-0 Priority: optional Section: libs Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd (204-5ubuntu20) Version: 1:204-5ubuntu20 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libgudev-1.0-0_204-5ubuntu20_i386.deb Size: 13740 MD5sum: 9991f8a98e029098d07ce7dc4d3c08c6 SHA1: ed56a71bcf1569ca0f0c1718585109fb13d1a0ca SHA256: 73bef87ea0f42557f1ceb2d76cc03a65945ee922c98b3dcfc3474719287cfa85 Description: GObject-based wrapper library for libudev Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 69c67b853f66d1327190cab12680738c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgudev-1.0-dev Priority: optional Section: libdevel Installed-Size: 374 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd (204-5ubuntu20) Version: 1:204-5ubuntu20 Depends: libgudev-1.0-0 (= 1:204-5ubuntu20), gir1.2-gudev-1.0 (= 1:204-5ubuntu20), libglib2.0-dev, pkg-config Filename: pool/main/s/systemd/libgudev-1.0-dev_204-5ubuntu20_i386.deb Size: 25898 MD5sum: ea0342e96403e1220a67857a08a832b9 SHA1: 27f34a002beec54e29cd296d3e2fcd9c0ae84424 SHA256: 7f827344dbd85290eda0e546b4423385926de69e4389112c7cbfc31355f0380b Description: libgudev-1.0 development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 903f84519fd86bd5fb271a04acb09731 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-1.0-4 Priority: optional Section: libs Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: i386 Source: gupnp Version: 0.20.10-1ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgssdp-1.0-3 (>= 0.14.0), libsoup2.4-1 (>= 2.34.0-1~), libuuid1 (>= 2.16), libxml2 (>= 2.7.4), shared-mime-info Filename: pool/main/g/gupnp/libgupnp-1.0-4_0.20.10-1ubuntu1_i386.deb Size: 65862 MD5sum: 7641dda443a0168e0b09bccc99cbc9db SHA1: 746edc3add3ed78ed52049c39ae86618820897ad SHA256: 7d5856eb0de79fba5862af3196ba68a59ca0b8c2836407abffb77aaa72677405 Description: GObject-based library for UPnP Homepage: http://www.gupnp.org Description-md5: 0cf65a702f3453c4d3e7c4b3a7dc9341 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libgupnp-1.0-dbg Priority: optional Section: libdevel Installed-Size: 281 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: i386 Source: gupnp Version: 0.20.10-1ubuntu1 Depends: libgupnp-1.0-4 (= 0.20.10-1ubuntu1) Recommends: libgssdp-1.0-dbg, libglib2.0-0-dbg Filename: pool/main/g/gupnp/libgupnp-1.0-dbg_0.20.10-1ubuntu1_i386.deb Size: 197750 MD5sum: 8bc10c6bf0773ec79b900c6dcade9b58 SHA1: a11e01289d5eb14bea7d36baf7aa5cac8603d8e7 SHA256: a14677c4afecb7369c3082c226a04f1cfb5b54a5db4d73bbda79315c9e07593c Description: GObject-based library for UPnP (debug symbols) Homepage: http://www.gupnp.org Description-md5: 2696751c17a04f25b712cbedaee4b251 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-1.0-dev Priority: optional Section: libdevel Installed-Size: 666 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: i386 Source: gupnp Version: 0.20.10-1ubuntu1 Replaces: gir-repository-dev (<= 0.6.5-5), gupnp-vala (<< 0.10.5) Depends: libgupnp-1.0-4 (= 0.20.10-1ubuntu1), gir1.2-gupnp-1.0 (= 0.20.10-1ubuntu1), libgssdp-1.0-dev (>= 0.6.1), libsoup2.4-dev, libxml2-dev, uuid-dev Recommends: python Suggests: libgupnp-doc Breaks: gir-repository-dev (<= 0.6.5-5), gupnp-vala (<< 0.10.5) Filename: pool/main/g/gupnp/libgupnp-1.0-dev_0.20.10-1ubuntu1_i386.deb Size: 101590 MD5sum: e207e1c7d6f451a55ed9706ebe2c4724 SHA1: 8f856071152ef3f8151879abe6f7617e60b16fd2 SHA256: 33463a9f216ae553510eaeac7fa56ed3b172cc33721b72c09a4b90d9093fcc55 Description: GObject-based library for UPnP (development files) Homepage: http://www.gupnp.org Description-md5: 9c718c86c32a941db80bc691b1180e2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-doc Priority: optional Section: doc Installed-Size: 703 Maintainer: Ubuntu Developers Original-Maintainer: Ross Burton Architecture: all Source: gupnp Version: 0.20.10-1ubuntu1 Depends: lynx | www-browser Recommends: libgssdp-doc Filename: pool/main/g/gupnp/libgupnp-doc_0.20.10-1ubuntu1_all.deb Size: 65054 MD5sum: 92b0c1a03abb71edbc735f117daf1aa5 SHA1: bfbbc870e224e07e43c594f46ad058a7a468eda7 SHA256: 04548ec2536ec5ffaa19f774babe00f483f71cbc165e1f15c96ab79538a4ab7e Description: GObject-based library for UPnP (documentation) Homepage: http://www.gupnp.org Description-md5: c352873690528d2141eb638f296d4dbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-igd-1.0-4 Priority: optional Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: i386 Source: gupnp-igd Version: 0.2.2-1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgssdp-1.0-3 (>= 0.12.0), libgupnp-1.0-4 (>= 0.18.0) Pre-Depends: multiarch-support Filename: pool/main/g/gupnp-igd/libgupnp-igd-1.0-4_0.2.2-1_i386.deb Size: 16732 MD5sum: 70e9e555012b138cc477f9be1c0e77c2 SHA1: f9fb7c27e2794a941f5306f1a1cfcd7affed6dab SHA256: 9ba7ccfb9641dab7983ae3c1d04c1b65a04f9455228b6f420508970f4abe0de2 Description: library to handle UPnP IGD port mapping Multi-Arch: same Homepage: http://www.gupnp.org/ Description-md5: c628c9c0a458238bdbc398733578a849 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libgupnp-igd-1.0-dbg Priority: extra Section: debug Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: i386 Source: gupnp-igd Version: 0.2.2-1 Depends: libgupnp-igd-1.0-4 (= 0.2.2-1) Filename: pool/main/g/gupnp-igd/libgupnp-igd-1.0-dbg_0.2.2-1_i386.deb Size: 27908 MD5sum: f4a845703d52cd2112664ecb7b2954d4 SHA1: 65b5e096414028fbd0969226ac0340d00e3b4037 SHA256: 08b04a7c8953af6d4439a5865156a5f0ec37d9cd8721128938f900424cac7188 Description: library to handle UPnP IGD port mapping - debug symbols Multi-Arch: same Homepage: http://www.gupnp.org/ Description-md5: 666766e3f206c49360c20d95e03b9651 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-igd-1.0-dev Priority: optional Section: libdevel Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: i386 Source: gupnp-igd Version: 0.2.2-1 Depends: libgupnp-igd-1.0-4 (= 0.2.2-1), libgupnp-1.0-dev (>= 0.13.2), libglib2.0-dev (>= 2.14), gir1.2-gupnpigd-1.0 (= 0.2.2-1) Filename: pool/main/g/gupnp-igd/libgupnp-igd-1.0-dev_0.2.2-1_i386.deb Size: 17500 MD5sum: 1369cfef5eb43523fa3c9248c06e077e SHA1: 740821d746ee30da96f1b5e2313369d7633aaaf6 SHA256: 58786faf3befba037825c33e982af6a490a5b4a107e9e8afe0af7b5e6563c500 Description: library to handle UPnP IGD port mapping - development files Homepage: http://www.gupnp.org/ Description-md5: a68a1c5f88bcb2cb1fc2ec5a0e837f53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgupnp-igd-1.0-doc Priority: optional Section: doc Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: all Source: gupnp-igd Version: 0.2.2-1 Filename: pool/main/g/gupnp-igd/libgupnp-igd-1.0-doc_0.2.2-1_all.deb Size: 13732 MD5sum: 15e615a6dbcd3e0c81ceee087af5f5f9 SHA1: 73645dec13fbfb3e8b694d38cf8e87e953548384 SHA256: 1e0e54ae36e3c32b5f3ae5aacc2ee9b073ca75173a4d3ba517e1248640e27027 Description: library to handle UPnP IGD port mapping - documentation Homepage: http://www.gupnp.org/ Description-md5: 54d10de7ccabe3a650d383536ad1cc68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgusb-dev Priority: extra Section: libdevel Installed-Size: 194 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: libgusb Version: 0.1.6-5 Depends: libgusb2 (= 0.1.6-5), gir1.2-gusb-1.0, libgudev-1.0-dev, libusb-1.0-0-dev Filename: pool/main/libg/libgusb/libgusb-dev_0.1.6-5_i386.deb Size: 22792 MD5sum: 259e606ad369f91638008b52dd152903 SHA1: eff0d351e970d02b6653954090c4bdc134a4df48 SHA256: 0c84f3feac882d1e290bbfeab2636085adec1ecade5d9dbf561580645fddaa8e Description: GLib wrapper around libusb1 - development files Homepage: http://www.hughski.com/downloads.html Description-md5: f0874bcbf82c81298e2d8808e1d28383 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgusb-doc Priority: extra Section: doc Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: all Source: libgusb Version: 0.1.6-5 Depends: libgusb-dev Suggests: devhelp Filename: pool/main/libg/libgusb/libgusb-doc_0.1.6-5_all.deb Size: 16752 MD5sum: d59aea3a18c5d3955652097adf0df00c SHA1: b99d90a2435657f40c75b3025f4171ea947152ae SHA256: 2968d4db71b117de97630d1025bdc9db46f5563cebda95d8b8db68afab14ef33 Description: GLib wrapper around libusb1 - documentation Homepage: http://www.hughski.com/downloads.html Description-md5: 8d3c01c7e69846f36df8fc25f014c016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgusb2 Priority: extra Section: libs Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: libgusb Version: 0.1.6-5 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), libusb-1.0-0 (>= 2:1.0.8) Pre-Depends: multiarch-support Filename: pool/main/libg/libgusb/libgusb2_0.1.6-5_i386.deb Size: 15412 MD5sum: 508bd5d11a0dc4e8d02576af4ecd49e2 SHA1: 18fbaee4e34526580bfd6a105bf6ab8ffee4bcfa SHA256: 2b3fce99302bfdadffe35e8d8127c01a34796b4629ece31b3408d333f4313abe Description: GLib wrapper around libusb1 Multi-Arch: same Homepage: http://www.hughski.com/downloads.html Description-md5: 41f01b17b9ed8d44b92d29d701dc060f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgutenprint-dev Priority: optional Section: libdevel Installed-Size: 295 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: i386 Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Depends: libgutenprint2 (= 5.2.10~pre2-0ubuntu2), pkg-config Suggests: libgutenprint-doc (= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/libgutenprint-dev_5.2.10~pre2-0ubuntu2_i386.deb Size: 47734 MD5sum: 2b47d7e6fe32bc28732bd24e62245808 SHA1: c582d4b1fccacc77aa4d1d982be7d37be2d89811 SHA256: 2c0b0aba60999fa7bfe3b40390208948dbc383a0852200fcafd75c2eb318f594 Description: development files for the Gutenprint printer driver library Description-md5: ce31342ffc61e8c690a2982af80686e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgutenprint-doc Priority: optional Section: doc Installed-Size: 2569 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: all Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Suggests: libgutenprint-dev (= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/libgutenprint-doc_5.2.10~pre2-0ubuntu2_all.deb Size: 258750 MD5sum: a2690f368ed01ea0eb44dceec3918873 SHA1: 04545a2be83976da0e24c64e4baa824b1d06f2fb SHA256: ee9cc986952b31df78dda8f8d34eab49ccf6dd603a0045f6d550f6bca56cd809 Description: documentation for the Gutenprint printer driver library Description-md5: 70986316664191cadab04e9ef3c08713 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgutenprint2 Priority: optional Section: libs Installed-Size: 7260 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: i386 Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Suggests: gutenprint-locales (>= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/libgutenprint2_5.2.10~pre2-0ubuntu2_i386.deb Size: 915048 MD5sum: 3dc3acd7d3274bdaf7817a9fa65f9e22 SHA1: 528e4c82bcabc9d4750edd01fae4154d46f44b15 SHA256: 53b5ec49454d1dd22821d5fa82ae518bb8eae10471bfcba01d8f73ada1360c7a Description: runtime for the Gutenprint printer driver library Description-md5: 9bb6297d95041fddbc1b1fa8cd44d38a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libgutenprintui2-1 Priority: optional Section: libs Installed-Size: 297 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: i386 Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.35.9), libgtk2.0-0 (>= 2.8.0), libgutenprint2 (>= 5.2.10~pre2) Pre-Depends: multiarch-support Recommends: gutenprint-locales (>= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/libgutenprintui2-1_5.2.10~pre2-0ubuntu2_i386.deb Size: 75384 MD5sum: 37c8eb613b4239f4143fadb742fbc891 SHA1: 420a498c383df011863bf73140259edbbff4aa9c SHA256: 0d63d38ecacfe0244b08bcc3a76e876babdd4a3cd50826a7f82df0f9a15f970a Description: runtime for the Gutenprint printer driver user interface library Description-md5: ba313e3852dc3f46728491c0c7f0f255 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgutenprintui2-dev Priority: optional Section: devel Installed-Size: 103 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: i386 Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Depends: libgutenprintui2-1 (= 5.2.10~pre2-0ubuntu2), pkg-config Suggests: libgutenprint-doc (= 5.2.10~pre2-0ubuntu2) Filename: pool/main/g/gutenprint/libgutenprintui2-dev_5.2.10~pre2-0ubuntu2_i386.deb Size: 5788 MD5sum: 584e7bc150c4d0c5d1778b3ba3230630 SHA1: 9c1ae533cf7c658618148894393acae5826de53e SHA256: d3ec0f6d18824a5a9c925e19dceeedefdfae46e69908862457f1057d12b4388e Description: development files for the Gutenprint printer driver user interface library Description-md5: dbef2766277542e854cf1e1c772d7063 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgvc6 Priority: optional Section: libs Installed-Size: 1561 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: i386 Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.15), libcairo2 (>= 1.2.4), libcdt5, libcgraph6, libexpat1 (>= 2.0.1), libgd3 (>= 2.1.0~alpha~), libglib2.0-0 (>= 2.12.0), libltdl7 (>= 2.4.2), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), libpangoft2-1.0-0 (>= 1.14.0), libpathplan4, libx11-6, zlib1g (>= 1:1.1.4) Conflicts: libgraphviz4, libgvc5 Filename: pool/main/g/graphviz/libgvc6_2.36.0-0ubuntu3_i386.deb Size: 554456 MD5sum: 819b9ec8570457d4d91361a7a61fe4d8 SHA1: 185ab92d5c47d8feeb120142a4b15bc9e12263e7 SHA256: f3c5cf172459519daf7a6d7bae4bcc97d11804d699293ce0e9ea966b91689839 Description: rich set of graph drawing tools - gvc library Homepage: http://www.graphviz.org/ Description-md5: 87da8308b382f4072b1022b48b3d7368 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-audio Package: libgvnc-1.0-0 Priority: optional Section: libs Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Replaces: libgtk-vnc-1.0-0 (<= 0.4.3-1) Depends: libc6 (>= 2.7), libgcrypt11 (>= 1.5.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnutls26 (>= 2.12.17-0), libpulse0 (>= 1:0.99.1), libsasl2-2 (>= 2.1.24), zlib1g (>= 1:1.1.4) Filename: pool/main/g/gtk-vnc/libgvnc-1.0-0_0.5.3-0ubuntu2_i386.deb Size: 53476 MD5sum: 83b85b3b771bdd3ab21c776e72be738a SHA1: 78c2dbe494114fdcc71574ae1ec18257304e8ea5 SHA256: 9c7cd46d6df2f0e5b640d131b2c47a4cf95afb9fd6846fd03b7d494c4e0c0ec7 Description: VNC gobject wrapper (runtime libraries) Description-md5: 84d0ae4191f619608a11c91b14df37cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-desktop Package: libgvnc-1.0-0-dbg Priority: extra Section: debug Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Replaces: libgtk-vnc-1.0-0-dbg (<< 0.4.3-2) Depends: libgvnc-1.0-0 (= 0.5.3-0ubuntu2) Breaks: libgtk-vnc-1.0-0-dbg (<< 0.4.3-2) Filename: pool/main/g/gtk-vnc/libgvnc-1.0-0-dbg_0.5.3-0ubuntu2_i386.deb Size: 116878 MD5sum: dd995f947424d7b03aeebcbc2aa72d3d SHA1: b0421047c73327b5319ab8c47d80606dc68b0aa2 SHA256: ca5782846f50100b234a319978a845241e20507996d4a0071963cef4544c97c6 Description: VNC gobject wrapper (debugging symbols) Description-md5: fccd88e03062a39410397bbbc972d2ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgvnc-1.0-dev Priority: optional Section: libdevel Installed-Size: 227 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Replaces: libgtk-vnc-1.0-dev (<= 0.4.3-1) Depends: libgvnc-1.0-0 (= 0.5.3-0ubuntu2), libglib2.0-dev, libgnutls-dev (>= 1.4.0), libcairo2-dev (>= 1.2.0) Filename: pool/main/g/gtk-vnc/libgvnc-1.0-dev_0.5.3-0ubuntu2_i386.deb Size: 15472 MD5sum: 1fdde8c49f0eca43a4835bbc26c21dd7 SHA1: e3be488769a6946bd128d7b2cd6d3a1009d1f9fb SHA256: 56b55cd2105bced3a1d5d6b7ab6509e5355f199c16dcaf6af5bf165bd8dcc7e3 Description: VNC GObject wrapper (development files) Description-md5: 2e1bb3be6c87550ab514fcc576f62796 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgvpr2 Priority: optional Section: libs Installed-Size: 529 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: i386 Source: graphviz Version: 2.36.0-0ubuntu3 Replaces: libgvpr1 Depends: libc6 (>= 2.15), libcdt5, libcgraph6 Conflicts: libgraphviz4 Filename: pool/main/g/graphviz/libgvpr2_2.36.0-0ubuntu3_i386.deb Size: 169260 MD5sum: c9f5bb73c2e3fcc7e54fbd69764119a1 SHA1: 9c73ff739bcc8226e2c039300cd4bc3668dcbfbc SHA256: e955dc5863a78ef0fca5f07b0de34de34e47f12b8bff59f1ddf8096fdb5dc6df Description: rich set of graph drawing tools - gvpr library Homepage: http://www.graphviz.org/ Description-md5: e7dafa90950ab7d270f04d6a2f98fc48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libgweather-3-6 Priority: optional Section: libs Installed-Size: 175 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgweather Version: 3.10.2-0ubuntu1 Depends: libc6 (>= 2.7), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.6), libsoup2.4-1 (>= 2.34.0), libxml2 (>= 2.7.4), libgweather-common (>= 3.5.0) Filename: pool/main/libg/libgweather/libgweather-3-6_3.10.2-0ubuntu1_i386.deb Size: 55852 MD5sum: 192ef80affc35b17db4c8a1b57f0b54a SHA1: c67b86c476047e031787730fe63fa4eb83467ff9 SHA256: 175b6170839bc17a772a8a6370a1a0501f3dbc60b6098caf0e809ebc8d65df10 Description: GWeather shared library Description-md5: cb984482338858ae6dd68ad8bf4a2452 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgweather-3-dev Priority: optional Section: libdevel Installed-Size: 445 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libgweather Version: 3.10.2-0ubuntu1 Depends: libgweather-3-6 (= 3.10.2-0ubuntu1), gir1.2-gweather-3.0 (= 3.10.2-0ubuntu1), libxml2-dev (>= 2.6.0), libglib2.0-dev (>= 2.35.1), libgtk-3-dev (>= 3.0.0), libsoup2.4-dev (>= 2.34.0) Filename: pool/main/libg/libgweather/libgweather-3-dev_3.10.2-0ubuntu1_i386.deb Size: 71932 MD5sum: b75e8fb6a552bd36bcdb3b890e3d7299 SHA1: 72ed0391b971eeea51e2dba3c47242478e21e3bd SHA256: 573b928c6ae5864c4718a662352e69041fdb17a080af827598047f0c291eeaac Description: GWeather development files Description-md5: d777dd677d3f0773a7bcfa6faf15d7e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgweather-common Priority: extra Section: libs Installed-Size: 3672 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libgweather Version: 3.10.2-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend Conflicts: libgweather1 (<< 2.22.2-2) Filename: pool/main/libg/libgweather/libgweather-common_3.10.2-0ubuntu1_all.deb Size: 510606 MD5sum: ec2096f196273a49790430f50e1e6cc2 SHA1: 540a1829467ef48f9edaab647677ceaf8b96c5c5 SHA256: 6de80e96b4f97c0c712cf6ada96fbb3512d29931314096bf5f9dac12a3952277 Description: GWeather common files Description-md5: a5b4a811991e8c5840d2aedf792b5dcd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libgxps-dev Priority: optional Section: libdevel Installed-Size: 261 Maintainer: Ubuntu Developers Original-Maintainer: Savvas Radevic Architecture: i386 Source: libgxps Version: 0.2.2-2ubuntu2 Depends: gir1.2-gxps-0.1 (= 0.2.2-2ubuntu2), libgxps2 (= 0.2.2-2ubuntu2), libarchive-dev, libcairo2-dev, libglib2.0-dev Filename: pool/main/libg/libgxps/libgxps-dev_0.2.2-2ubuntu2_i386.deb Size: 49082 MD5sum: 31caab20451c60813a5952ec2efa8b99 SHA1: bfb96e609d924daeeb16d1e603f436e22ac12589 SHA256: 59a80c77434793ff18928ff63016477019ce48f1bde07b2eb3827c9de6e1e1d7 Description: handling and rendering XPS documents (development files) Homepage: https://live.gnome.org/libgxps Description-md5: 742d94cd3106e90eb08390e8ed93c98f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgxps-doc Priority: optional Section: doc Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Savvas Radevic Architecture: all Source: libgxps Version: 0.2.2-2ubuntu2 Suggests: devhelp Filename: pool/main/libg/libgxps/libgxps-doc_0.2.2-2ubuntu2_all.deb Size: 19726 MD5sum: c52cff35f1bb327926eb0491bde3a490 SHA1: a83eb184e34a270e69e700c220fbcc7b3316161d SHA256: bed0a38120f91fce9447031638cc446d91638ce54dfe46779189e99a4d31e21c Description: library for handling and rendering XPS documents (documentation) Homepage: https://live.gnome.org/libgxps Description-md5: 3a4829a5594c8a1aeab7ca00f14c516b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libgxps2 Priority: optional Section: libs Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Savvas Radevic Architecture: i386 Source: libgxps Version: 0.2.2-2ubuntu2 Depends: libarchive13, libc6 (>= 2.11), libcairo2 (>= 1.10.0), libfreetype6 (>= 2.2.1), libglib2.0-0 (>= 2.24.0), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libtiff5 (>> 4.0.0-1~) Pre-Depends: multiarch-support Filename: pool/main/libg/libgxps/libgxps2_0.2.2-2ubuntu2_i386.deb Size: 43070 MD5sum: 99e60fe44cb370116561951f759cd858 SHA1: 94c491580bbbd5759e7c8b365e47bb36a6f4bfe2 SHA256: ca4a6d8a48fa87e0be223bfeb56f13e372b74181bc360a2acc146517c1a9e322 Description: handling and rendering XPS documents (library) Multi-Arch: same Homepage: https://live.gnome.org/libgxps Description-md5: d880744c17aaed901bb26232e3fae10f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhamcrest-java Priority: optional Section: libs Installed-Size: 827 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.3-4 Filename: pool/main/libh/libhamcrest-java/libhamcrest-java_1.3-4_all.deb Size: 385090 MD5sum: 5909b6a5fe82ff811bc8a62b95ae56a9 SHA1: 9c81ed840c545f456af88f15ba1289cc609c9c5d SHA256: dfa52dbc59f102621c4cf684dd7031e4b42a1cef1283452287205cd9ec7e0bd8 Description: library of matchers for building test expressions Homepage: http://hamcrest.org Description-md5: e2634867fbacc3561cc2ca569f30a498 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhamcrest-java-doc Priority: optional Section: doc Installed-Size: 2978 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libhamcrest-java Version: 1.3-4 Recommends: default-jdk-doc, junit-doc, junit4-doc Suggests: libhamcrest-java Filename: pool/main/libh/libhamcrest-java/libhamcrest-java-doc_1.3-4_all.deb Size: 103724 MD5sum: d0b5473c512c461c5b421e4f389575f7 SHA1: 598648a14b946a2405311248f328d57b8b7eafde SHA256: cfcb9f92b2131717ecd08ef911509209c6b3d072b539b82488f1c0c56666b4f9 Description: library of matchers for building test expressions - documentation Homepage: http://hamcrest.org Description-md5: 9b389ccfeb28ae88c7ff56d8f59a9ca1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhangul-data Priority: optional Section: libs Installed-Size: 6364 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: all Source: libhangul Version: 0.1.0-3 Replaces: libhangul0-data Conflicts: libhangul0-data Filename: pool/main/libh/libhangul/libhangul-data_0.1.0-3_all.deb Size: 2417146 MD5sum: 9dcc207424bfe46200eb2513ba60d882 SHA1: ff41360208e51b2c2f704e6f658ba1d8a402cf2f SHA256: c4db7ccbe832c3025980bd30990d29e9f7957444ebd9258ae0d932a18c4e995b Description: Hangul keyboard input library - data Multi-Arch: foreign Homepage: http://kldp.net/projects/hangul Description-md5: 13ed650675a6d0c725667a21b090bb3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libhangul-dev Priority: optional Section: libdevel Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: i386 Source: libhangul Version: 0.1.0-3 Depends: libhangul1 (= 0.1.0-3) Filename: pool/main/libh/libhangul/libhangul-dev_0.1.0-3_i386.deb Size: 28534 MD5sum: 80a614c0606c888867f62421c1091191 SHA1: f6abeed1c426f2abc86a294fe6774cd149958063 SHA256: e1fa112d3b96f5e3c6e7d1f9cbc92b40d748c60bbf64aa58601ff98c39bceb6e Description: Hangul keyboard input library - development files Multi-Arch: same Homepage: http://kldp.net/projects/hangul Description-md5: 051eaf337815f4bbadf6f2037d167d4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhangul1 Priority: optional Section: libs Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: i386 Source: libhangul Version: 0.1.0-3 Depends: libhangul-data (>= 0.1.0-3), libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libh/libhangul/libhangul1_0.1.0-3_i386.deb Size: 28508 MD5sum: 64c5963d56c744ee9f6c0d999e6ab324 SHA1: a66b03907faff3613a9b1d101d2c3334ec79cb6d SHA256: 07b3a9366a846db3d2455cc391a5b108cd119d291f5b3b9ac8d5b575c39a525d Description: Hangul keyboard input library - runtime Multi-Arch: same Homepage: http://kldp.net/projects/hangul Description-md5: cd0ae445efbbc4bb7948a84e16892293 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libhangul1-dbg Priority: extra Section: debug Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: i386 Source: libhangul Version: 0.1.0-3 Depends: libhangul1 (= 0.1.0-3) Filename: pool/main/libh/libhangul/libhangul1-dbg_0.1.0-3_i386.deb Size: 42210 MD5sum: 65e2764fd4b3f7202e728eeeb617b5be SHA1: 98b843f821d2884178001e9c0b72cb6f7debd70a SHA256: 689a02c5271fabc2c7dcd66dcc87d5492fc3e693f578f8941e57d6b763bd6a15 Description: Hangul keyboard input library - debugging symbols Multi-Arch: same Homepage: http://kldp.net/projects/hangul Description-md5: 0bd3b70ed7c96fbf99dcb4fe82da47d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhardware-dev Priority: extra Section: libdevel Installed-Size: 54 Maintainer: Ubuntu Developers Architecture: i386 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Depends: libhardware2 (= 0.1.0+git20131207+e452e83-0ubuntu12), android-headers (>= 4.2.2) Breaks: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Filename: pool/main/libh/libhybris/libhardware-dev_0.1.0+git20131207+e452e83-0ubuntu12_i386.deb Size: 4738 MD5sum: 1eec1e6cc81bf518c624dbe14bfb0969 SHA1: 75903b79b730e6f00d6208e276036e28711d8862 SHA256: e66a1879724d2760474b8c11914dce8f49d4820bdb8071fa8ef3249dc572c23d Description: Development files for libhardware Description-md5: da5d7fa47a1b4b845a603aff96d464fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhardware2 Priority: extra Section: libs Installed-Size: 55 Maintainer: Ubuntu Developers Architecture: i386 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Depends: libc6 (>= 2.3.6-6~), libhybris-common1 Breaks: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Filename: pool/main/libh/libhybris/libhardware2_0.1.0+git20131207+e452e83-0ubuntu12_i386.deb Size: 6276 MD5sum: ade1e4eda8859de7cd42cf07dbde4519 SHA1: 8ccacf1f72fe8d8b7fd803eac60c6d2fc9c7531b SHA256: 331e0d2f9de6bd1cb948f38298667f73d50fd548c58f10cbacedc9b2bb4ccce6 Description: Library to provide access to the Android libhardware HAL Description-md5: ba38b180f137da752b2cf6f73e00b537 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libharfbuzz-dev Priority: optional Section: libdevel Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: i386 Source: harfbuzz Version: 0.9.27-1 Depends: libharfbuzz0b (= 0.9.27-1), libharfbuzz-icu0 (= 0.9.27-1), libharfbuzz-gobject0 (= 0.9.27-1) Filename: pool/main/h/harfbuzz/libharfbuzz-dev_0.9.27-1_i386.deb Size: 28970 MD5sum: 8890b63d2f84f02504f27a017d8114a4 SHA1: 039f84067f1f5047756ae262f30fe7404c603315 SHA256: 365e580f98310b3e01cef217946e5fb7b27835a523aeda2220a16d619dd1032c Description: Development files for OpenType text shaping engine Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: 8ebbfe4cc4bcec46b6548326bf0e4b9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libharfbuzz-doc Priority: optional Section: doc Installed-Size: 833 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: all Source: harfbuzz Version: 0.9.27-1 Filename: pool/main/h/harfbuzz/libharfbuzz-doc_0.9.27-1_all.deb Size: 46708 MD5sum: 7412faf0f9be3867b7d297c280a794d3 SHA1: 6d370c5c0b325d4cca4299926e39c9d68a6ef8d9 SHA256: b2cf92cfae05ad461a222d260cbba897faca5c7784383978677993ed9d9307c1 Description: Documentation files for the HarfBuzz library Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: 9b131c85bc0d15a8db3fabd1178cabda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libharfbuzz-gobject0 Priority: optional Section: libs Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: i386 Source: harfbuzz Version: 0.9.27-1 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.14.0), libharfbuzz0b (>= 0.9.9) Pre-Depends: multiarch-support Filename: pool/main/h/harfbuzz/libharfbuzz-gobject0_0.9.27-1_i386.deb Size: 9670 MD5sum: a42c9108b79d871689f36c4255d48f5c SHA1: b53ba739c06a936de0b8facfcaef13205e384a7e SHA256: 66380919b63daafdeff8c9a46bc570a7ce04d84f8cfdca87b2c3b1b6aea339bf Description: OpenType text shaping engine ICU backend (GObject library) Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: 602225f3070fe796ecfe3186301b5887 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libharfbuzz-icu0 Priority: optional Section: libs Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: i386 Source: harfbuzz Version: 0.9.27-1 Depends: libharfbuzz0b (>= 0.6.0), libicu52 (>= 52~m1-1~) Pre-Depends: multiarch-support Filename: pool/main/h/harfbuzz/libharfbuzz-icu0_0.9.27-1_i386.deb Size: 5118 MD5sum: 3827e84cca5e07b3ad8405f867d612a8 SHA1: 59b5bb51a9032579b1fb6c36634e9af63f058525 SHA256: e84c7e242b2efaefa308aa314ab5806a6ca11393c233a57eda8fe95e7c54ce84 Description: OpenType text shaping engine ICU backend Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: d96c32b3b2f8939f63da61e3c683d71f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libharfbuzz0b Priority: optional Section: libs Installed-Size: 389 Maintainer: Ubuntu Developers Original-Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) Architecture: i386 Source: harfbuzz Version: 0.9.27-1 Replaces: libharfbuzz0, libharfbuzz0a Depends: libc6 (>= 2.4), libfreetype6 (>= 2.3.9), libglib2.0-0 (>= 2.30.0), libgraphite2-3 (>= 1.2.2) Pre-Depends: multiarch-support Conflicts: libharfbuzz0, libharfbuzz0a Filename: pool/main/h/harfbuzz/libharfbuzz0b_0.9.27-1_i386.deb Size: 125456 MD5sum: e4503a4258df1c39e7d2fddfde987c61 SHA1: e0bd503ce7de5d975cc001932a3a6e284237fe11 SHA256: ddf5c94226ae72e7f51c45c437524f99a49ffd147110ec4c70be8c348966ba00 Description: OpenType text shaping engine (shared library) Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/HarfBuzz Description-md5: c01a2a5a6349f465ee349884ac4d8667 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libhashkit-dev Priority: optional Section: libdevel Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: i386 Source: libmemcached Version: 1.0.8-1ubuntu2 Replaces: libmemcached-dev (<< 1.0.3-1) Depends: libhashkit2 (= 1.0.8-1ubuntu2) Breaks: libmemcached-dev (<< 1.0.3-1) Filename: pool/main/libm/libmemcached/libhashkit-dev_1.0.8-1ubuntu2_i386.deb Size: 35516 MD5sum: 417738f338beec6b8ba31315b82ba3f3 SHA1: 629fc4c7d8468798fda1649c4a9d9cb997387930 SHA256: 9ebdf2ac4f8e0eb205f7b7394d9a294175eea8c6462d9b69a424340eb44f0412 Description: libmemcached hashing functions and algorithms (development files) Homepage: http://libmemcached.org/libMemcached.html Description-md5: ccf9a982bcb9b1a0d5c1b8b7ba470f26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libhashkit2 Priority: optional Section: libs Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: i386 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: libhashkit1 Filename: pool/main/libm/libmemcached/libhashkit2_1.0.8-1ubuntu2_i386.deb Size: 20424 MD5sum: 508415203b7e0dc8cc4515a202aa51fe SHA1: e9328532a519ef8203f19947a2af9530a6f86b84 SHA256: bc5cfbf10733ee818ade3854cb28adba8984c5afc47a69522fb176a7b38e9933 Description: libmemcached hashing functions and algorithms Multi-Arch: same Homepage: http://libmemcached.org/libMemcached.html Description-md5: e61170fc5139518ed53f802b59ce41cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libhcrypto4-heimdal Priority: standard Section: libs Installed-Size: 283 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libasn1-8-heimdal (>= 1.4.0+git20110226), libc6 (>= 2.7), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libhcrypto4-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 82330 MD5sum: 89f05ca0345a0f55959bce132ec83a7c SHA1: 6276457da3ccb24009fae1f3c3b9f71b364de705 SHA256: 6d3d516e73609835e2e998e6b86428d114bd0ec4059dc19123c45e99b756abe9 Description: Heimdal Kerberos - crypto library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 6492d04dab376288c3e43218cb4d78e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libhdate-dev Priority: optional Section: libdevel Installed-Size: 454 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: i386 Source: libhdate Version: 1.6-2ubuntu3 Depends: libhdate1 (= 1.6-2ubuntu3) Filename: pool/main/libh/libhdate/libhdate-dev_1.6-2ubuntu3_i386.deb Size: 334054 MD5sum: ede3874c6914480eba2e1db9859d870e SHA1: 75c26b8632a93ef42812b5d2ae4d0b016ec9d3cc SHA256: 86f5854e2494034e4e4ac5b822749343442d69bbf75647ed6cb989c16207bb5d Description: Provides a library that help use hebrew dates (development files) Multi-Arch: same Homepage: http://libhdate.sourceforge.net/ Description-md5: 5a62335224b360f9d5a386f8a3d7eead Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhdate1 Priority: optional Section: libs Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: i386 Source: libhdate Version: 1.6-2ubuntu3 Replaces: libhdate0 Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Conflicts: libhdate0 Filename: pool/main/libh/libhdate/libhdate1_1.6-2ubuntu3_i386.deb Size: 14394 MD5sum: 84ebb6ac4fabb8583ef31a0bbf7bcda3 SHA1: a861ddf9ce570ea3dadbdb822716c0103d81edca SHA256: 68590b9bfc6068ca77271118da35afca37e88292985a615c6d246b23815eeda5 Description: Provides a library that help use hebrew dates Multi-Arch: same Homepage: http://libhdate.sourceforge.net/ Description-md5: 0d005a41fc26bfcf767a9bf6c50c7d76 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhdb9-heimdal Priority: optional Section: libs Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Replaces: heimdal-lib (<< 0.3e-5) Provides: heimdal-hdb-api-8 Depends: libasn1-8-heimdal (>= 1.6~git20120311g), libc6 (>= 2.8), libcomerr2 (>= 1.01), libdb5.3, libkrb5-26-heimdal (>= 1.6~git20131117), libldap-2.4-2 (>= 2.4.7), libroken18-heimdal (>= 1.4.0+git20110226), libsqlite3-0 (>= 3.5.9) Pre-Depends: multiarch-support Conflicts: heimdal-libs (<< 0.3e-5) Filename: pool/main/h/heimdal/libhdb9-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 58988 MD5sum: 87bbc20aa6282db1bddecc8839bc7714 SHA1: f9e1db03a0451b088ff271957da107226f0a018a SHA256: 0e112143a071f10edf3af94d320dd908ddadf71bd44d76179ccf49b6c33eadf2 Description: Heimdal Kerberos - kadmin server library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: bc0ba4f7d9668b579f08d831a24307a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-audio Package: libheartbeat2 Priority: optional Section: libs Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: heartbeat Version: 1:3.0.5-3.2 Replaces: heartbeat (<= 2.99.2+sles11r7-0+1) Depends: libc6 (>= 2.15), libglib2.0-0 (>= 2.12.0), libplumb2 (>= 1.0.11+hg2754) Conflicts: heartbeat (<= 2.99.2+sles11r7-0+1) Filename: pool/main/h/heartbeat/libheartbeat2_3.0.5-3.2_i386.deb Size: 28676 MD5sum: 2711e7ae656aab6571170544af873aa7 SHA1: 50b2fa9a0c62d4162e122bf954ec2f7a70e4e79a SHA256: 8f346d57883476966df9d668c0b204d63fd34f0cfe5c5af0c658a8d0027d2863 Description: Subsystem for High-Availability Linux (libraries) Homepage: http://www.linux-ha.org/ Description-md5: d4f0fa776e9069054e6b632ec6f5a777 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libheartbeat2-dev Priority: optional Section: libdevel Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: heartbeat Version: 1:3.0.5-3.2 Replaces: heartbeat (<= 2.99.2+sles11r7-0+1) Depends: libheartbeat2 (= 1:3.0.5-3.2) Conflicts: heartbeat (<= 2.99.2+sles11r7-0+1) Filename: pool/main/h/heartbeat/libheartbeat2-dev_3.0.5-3.2_i386.deb Size: 48166 MD5sum: 98e5995bba38b069a749152d05dade55 SHA1: 90e9493aa99b0f1bc7c38426c5b526b440195012 SHA256: 41e174c2bc8088605c291fa8a8a85dca77937e66db31cc86176a72ea61c1752a Description: Subsystem for High-Availability Linux (development files) Homepage: http://www.linux-ha.org/ Description-md5: cd55666b03ed8197035d3b10d3f8b496 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libheimbase1-heimdal Priority: standard Section: libs Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libheimbase1-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 28894 MD5sum: 69f4b968914683da967703ff800a2010 SHA1: 7f2b0ef29f2f7626d88f28dd6d230b792d8ead4c SHA256: 15949be944d05aade02e9983a5450b67a472221093fa2dbd832faab2c767192f Description: Heimdal Kerberos - Base library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 5f80987f2f2b6c07e507ae48f47db52e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libheimntlm0-heimdal Priority: standard Section: libs Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.4), libhcrypto4-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libheimntlm0-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 15478 MD5sum: cd0305819c4129ebe8e6309f4a8fa71c SHA1: 44df93bf4af0ca0977f276b0e1ddddb882a77c94 SHA256: 2f2b3b9c0e53c3c96f7dbbbccd240dcdcd1d2c266ce187395ad3dfcda0388319 Description: Heimdal Kerberos - NTLM support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 71904fc86bf986fea9ffa7dd39261e6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libhesiod-dev Priority: extra Section: libdevel Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Karl Ramm Architecture: i386 Source: hesiod Version: 3.2.1-2 Depends: libhesiod0 (= 3.2.1-2) Filename: pool/main/h/hesiod/libhesiod-dev_3.2.1-2_i386.deb Size: 16616 MD5sum: e62ec3f2d3be805b332fd9f888e41ee3 SHA1: a1f97cae70051387cb0b345f072e521222bb0642 SHA256: e90dcf99f669b68b7bf7be81a5fd192324f41a7a5839be6e0239a989cc34a42f Description: Project Athena's DNS-based directory service - development files Multi-Arch: same Description-md5: 2a4c00e41fd0b17bd205e9c26fd8593d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhesiod0 Priority: extra Section: libs Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Karl Ramm Architecture: i386 Source: hesiod Version: 3.2.1-2 Depends: libc6 (>= 2.7), libidn11 (>= 1.13), debconf (>= 0.5) | debconf-2.0 Pre-Depends: multiarch-support Filename: pool/main/h/hesiod/libhesiod0_3.2.1-2_i386.deb Size: 24992 MD5sum: cb86cd2354d662814abb57e62868f759 SHA1: 44a487e30a5396ece8f26312345583d725505b71 SHA256: 778c57dbdc312557664c74e2d6c92885b08b732534d82cfcb4c54d93e5a3338b Description: Project Athena's DNS-based directory service - libraries Multi-Arch: same Description-md5: ea831c950063507e31bb33a46ae62f5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhfsp-dev Priority: optional Section: libdevel Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Aurélien GÉRÔME Architecture: i386 Source: hfsplus Version: 1.0.4-12.1 Depends: libhfsp0 (= 1.0.4-12.1), libc6-dev Filename: pool/main/h/hfsplus/libhfsp-dev_1.0.4-12.1_i386.deb Size: 39770 MD5sum: d9ddfd465593812170fac98097f0d021 SHA1: fbb53b1f6abbb6ccb4dd77283f2ba501aa93bb6f SHA256: 06eabe3c2da90ae9954fbaaabc857214c119411484ae5b36de65dd6cfaadb486 Description: Library to access HFS+ formatted volumes Description-md5: e11c049c3b4224354c6827f09df05cca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhfsp0 Priority: optional Section: libs Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Aurélien GÉRÔME Architecture: i386 Source: hfsplus Version: 1.0.4-12.1 Depends: libc6 (>= 2.7) Filename: pool/main/h/hfsplus/libhfsp0_1.0.4-12.1_i386.deb Size: 33678 MD5sum: 3a696d9a1fe5309034bb1350c6df46ce SHA1: 9b17677cdf78fbea1b548de8a2e03d989d4dd54e SHA256: a19dfdde549d83c8f91e8aa4a856c4a8ff09fea0e4adef8e24f808bb5c2a0ac9 Description: Shared library to access HFS+ formatted volumes Description-md5: 6b64bb3b9038f13398437d50b6d52563 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libhogweed2 Priority: optional Section: libs Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Magnus Holmgren Architecture: i386 Source: nettle Version: 2.7.1-1 Depends: libc6 (>= 2.4), libgmp10, libnettle4 Pre-Depends: multiarch-support Filename: pool/main/n/nettle/libhogweed2_2.7.1-1_i386.deb Size: 130944 MD5sum: 04b6412cbe4b823a62dfc59fb5227061 SHA1: 2c13d74f580db2eb1dde2a0fc22ffa1ca12375bd SHA256: cd1e0ddec066a59c1dd53f52788962dd9a46958f68137c84f274f3c68229a87b Description: low level cryptographic library (public-key cryptos) Multi-Arch: same Homepage: http://www.lysator.liu.se/~nisse/nettle/ Description-md5: 2a20554eaadbd355079396956d5d3edb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libhook-lexwrap-perl Priority: optional Section: perl Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.24-1 Depends: perl Filename: pool/main/libh/libhook-lexwrap-perl/libhook-lexwrap-perl_0.24-1_all.deb Size: 12962 MD5sum: 812d5eb9d22511e98fbe550c7181d27f SHA1: 9e65cfffe1be83bfb7ab5a59338360e0f0e5bcec SHA256: 7cd13dfc072deccded9ab6bb4fb9d6ef6f479b81db02a4359ca97cf91c251940 Description: lexically scoped subroutine wrappers Homepage: http://search.cpan.org/dist/Hook-LexWrap/ Description-md5: feb70df0de883e1f9d0c00f4ff81b6b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhpmud-dev Priority: optional Section: libdevel Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: i386 Source: hplip Version: 3.14.3-0ubuntu3 Depends: libhpmud0 (= 3.14.3-0ubuntu3) Filename: pool/main/h/hplip/libhpmud-dev_3.14.3-0ubuntu3_i386.deb Size: 7034 MD5sum: a127a36aafbdb145381db65e6af5edb9 SHA1: 5c5aad7ecd9b1046a38180eb16f305e90c38b518 SHA256: ef219759dc66b6d444c7cf57212c86a879bab4487ce74ce3267b3f0958ed408e Description: HP Multi-Point Transport Driver (hpmud) development libraries Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: c3037acc090b7dd9e9bb4af0e55b60d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhpmud0 Priority: optional Section: libs Installed-Size: 371 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: i386 Source: hplip Version: 3.14.3-0ubuntu3 Replaces: hplip (<< 3.10.6-3) Depends: libc6 (>= 2.15), libsnmp30 (>= 5.7.2~dfsg), libusb-1.0-0 (>= 2:1.0.8) Breaks: hplip (<< 3.10.6-3) Filename: pool/main/h/hplip/libhpmud0_3.14.3-0ubuntu3_i386.deb Size: 96076 MD5sum: 7191ee0e4f9f23859a25ada02d4fd1f5 SHA1: 9b7bb807b8e334cd09630291e938f280ff21f1dc SHA256: 64b4b217f8309e19a0dcd2562f878f32fe42f4b27c7ebbcccd17362d32ed5308 Description: HP Multi-Point Transport Driver (hpmud) run-time libraries Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 1edbc501bdc7dd319ba80065197918f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhsqldb1.8.0-java Priority: optional Section: java Installed-Size: 975 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: hsqldb1.8.0 Version: 1.8.0.10+dfsg-3ubuntu1 Depends: libservlet3.0-java Suggests: java-virtual-machine Conflicts: openoffice.org-base (<< 1:2.3.1~m8) Filename: pool/main/h/hsqldb1.8.0/libhsqldb1.8.0-java_1.8.0.10+dfsg-3ubuntu1_all.deb Size: 894698 MD5sum: 8ab8cccf8e79a27496df8f32b6d19dc7 SHA1: 6e6d9fd52169e9dcd0daac48dc00016bd134c16e SHA256: cfb3c068e17cd79e93bf1f892d1f71dd36e2c068b3480902ad5bd82c074d1e8e Description: Java SQL database engine Description-md5: 214a2c1ad31e54bb2dc0632a9a88f65a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libhtml-form-perl Priority: optional Section: perl Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.03-1 Replaces: libwww-perl (<< 6.00) Depends: perl, libhtml-parser-perl, libhttp-message-perl, liburi-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhtml-form-perl/libhtml-form-perl_6.03-1_all.deb Size: 23526 MD5sum: 17f4cd2bfc8ea3fc9e2643f4c92de476 SHA1: f571e9e7428ce8eba5fa385ec40f1eeb2f5919d7 SHA256: 13306f40931597da8017d151e5bb1d998da90ebb1bc854c4fee500a49f8c680d Description: module that represents an HTML form element Homepage: http://search.cpan.org/dist/HTML-Form/ Description-md5: a04624fcbae50d0127cb9f86c423b919 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhtml-format-perl Priority: optional Section: perl Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.11-1 Depends: perl, libfont-afm-perl, libhtml-tree-perl Filename: pool/main/libh/libhtml-format-perl/libhtml-format-perl_2.11-1_all.deb Size: 44666 MD5sum: 004bee852db8b3e931330a24c202bb1a SHA1: 527a99e342d92a9f49373b9cec7fca998420a70e SHA256: ecdc06a98957072f9099004819a6be0d44ba2bb14b3b842870a063b018385133 Description: module for transforming HTML into various formats Homepage: https://metacpan.org/release/HTML-Format/ Description-md5: 387a4855e4c1ae35928ce2610e151f0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhtml-parser-perl Priority: optional Section: perl Installed-Size: 246 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 3.71-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4), liburi-perl, libhtml-tagset-perl Suggests: libdata-dump-perl Filename: pool/main/libh/libhtml-parser-perl/libhtml-parser-perl_3.71-1build1_i386.deb Size: 97846 MD5sum: b5752596e1c3d439650143e9bd84d2f3 SHA1: e37e7dacfbcb0df7c348d88b8fa9e3f96169db74 SHA256: 014a02daf4ec2715f0473f74907e4275779c22d18f7aaaa92d21acf5ab658b48 Description: collection of modules that parse HTML text documents Enhances: libwww-perl Homepage: https://metacpan.org/release/HTML-Parser/ Description-md5: d44e271914b37571f965142b054023e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhtml-tagset-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 3.20-2 Depends: perl (>= 5.6.0-16) Filename: pool/main/libh/libhtml-tagset-perl/libhtml-tagset-perl_3.20-2_all.deb Size: 13536 MD5sum: 86862a4ac995db738fcfd012275fc3a7 SHA1: ade13078d38ffbcd3844cee51a315ef6b53bfdc1 SHA256: 9d3090fe343a2689704ff6110f61a23b8de9890619e5122199459a6a84b79d4a Description: Data tables pertaining to HTML Homepage: http://search.cpan.org/dist/HTML-Tagset/ Description-md5: dd404aa24bbca6a71cd27a9deaa487f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhtml-template-perl Priority: optional Section: perl Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.95-1 Depends: perl Suggests: libipc-sharedcache-perl Filename: pool/main/libh/libhtml-template-perl/libhtml-template-perl_2.95-1_all.deb Size: 65450 MD5sum: 4de2ed3b364502459d19e1f11fd62205 SHA1: d3dd8fe4d3b195625eb5e4b3da127fd7b733e66d SHA256: 1961b77dfb09c0bbbebc696d61b5819555b102b15f2b4eb6f7e1fb959cf78c85 Description: module for using HTML templates with Perl Homepage: https://metacpan.org/release/HTML-Template/ Description-md5: 4a80337cafeb53d1a2b4df50831a4cbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libhtml-tree-perl Priority: optional Section: perl Installed-Size: 506 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 5.03-1 Depends: perl, libhtml-parser-perl, libhtml-tagset-perl Recommends: libhtml-format-perl, libwww-perl Filename: pool/main/libh/libhtml-tree-perl/libhtml-tree-perl_5.03-1_all.deb Size: 214978 MD5sum: 729d76cfb610be4561b0b1d7e5062840 SHA1: b621f73b9fd365ad2e58c28ff01ca2a6207b4956 SHA256: 524c03ee960feebfb981f4d9ffe19c8b5e99ea453e72fae5c217d470a3c86a4f Description: Perl module to represent and create HTML syntax trees Homepage: https://metacpan.org/release/HTML-Tree/ Description-md5: 66049489ff5b549419062d4eb5d1dc6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhttp-cookies-perl Priority: optional Section: perl Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.00-2 Replaces: libwww-perl (<< 6.00) Depends: perl, libhttp-date-perl, libhttp-message-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhttp-cookies-perl/libhttp-cookies-perl_6.00-2_all.deb Size: 23324 MD5sum: 6bd4e1b4aee1b60fbf4008f79575defd SHA1: 7efdd2a8ec753b115eacb24c4900ac930524d7e4 SHA256: 527dee7a240ebbc428d79f942e1a0e53ff5fc2e72378ebde1a7d0912677c7839 Description: HTTP cookie jars Homepage: http://search.cpan.org/dist/HTTP-Cookies/ Description-md5: c1ce53c946fc7a4ab5d7dbd30e56cd38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhttp-daemon-perl Priority: optional Section: perl Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.01-1 Replaces: libwww-perl (<< 6.00) Depends: perl, libhttp-date-perl, libhttp-message-perl, liblwp-mediatypes-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhttp-daemon-perl/libhttp-daemon-perl_6.01-1_all.deb Size: 17020 MD5sum: 2377c14ea7e8e064db4720f0b1c1ca5b SHA1: a76523cb0e85d2e98c1210fcf516a08b11bd38e8 SHA256: 214779574f112310ede3e20973d6c105875e2f124d86b0dd7db3c725a5770398 Description: simple http server class Homepage: http://search.cpan.org/dist/HTTP-Daemon/ Description-md5: 86a26579760d05601c918d89642d3431 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhttp-date-perl Priority: optional Section: perl Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.02-1 Replaces: libwww-perl (<< 6.00) Depends: perl, libtimedate-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhttp-date-perl/libhttp-date-perl_6.02-1_all.deb Size: 10392 MD5sum: 3aee8ce5ae257f3dfea03d2127dfc845 SHA1: df37894b2fae1e1132a548cb2ef6a3f920927f9d SHA256: 57f84eccc965d2d48b561e049d0fe705e1c279857c69ad22f599c612d99f2fd9 Description: module of date conversion routines Homepage: http://search.cpan.org/dist/HTTP-Date/ Description-md5: 9785d548badb18b00824a00956a6e270 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhttp-message-perl Priority: optional Section: perl Installed-Size: 204 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.06-1 Replaces: libwww-perl (<< 6.00) Depends: perl, libencode-locale-perl, libhttp-date-perl, libio-html-perl, liblwp-mediatypes-perl, liburi-perl, perl (>= 5.11) | libio-compress-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhttp-message-perl/libhttp-message-perl_6.06-1_all.deb Size: 78694 MD5sum: 9ef47ed10b2bb198a2183ce7063629cd SHA1: ba2b0779020582ef87bda6fcd5770f623da11d0e SHA256: 60e9bad2e4d21ea2f5dbf31dc07f6a1d0b9bd1ef24e90c03d16bcec35fdabf98 Description: perl interface to HTTP style messages Homepage: https://metacpan.org/release/HTTP-Message/ Description-md5: 7702e0970d06885faa520063a14e79f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhttp-negotiate-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.00-2 Replaces: libwww-perl (<< 6.00) Depends: perl, libhttp-message-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libh/libhttp-negotiate-perl/libhttp-negotiate-perl_6.00-2_all.deb Size: 13372 MD5sum: 702cbbf6e3fea8eac863a0ffa34d4645 SHA1: 8ee10bd0f92aefe29ff6d9ab12d068cfa1050864 SHA256: 7819b0b190485629d325eceee5eb47f44a0b389cee34da166c5f0ebacf8d41e2 Description: implementation of content negotiation Homepage: http://search.cpan.org/dist/HTTP-Negotiate/ Description-md5: 8b19de39e2935c5828d5b32d39ba3df5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhud-client2 Priority: optional Section: libs Installed-Size: 188 Maintainer: Ubuntu Developers Architecture: i386 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libc6 (>= 2.1.3), libdee-1.0-4 (>= 0.5.2), libdee-qt5-3 (>= 3.3+14.04.20140317), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.37.3), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud-client2_13.10.1+14.04.20140402-0ubuntu1_i386.deb Size: 45688 MD5sum: 3bcc705cc6695012b0b5f7dd8b40d983 SHA1: 8d9e9d0c3f3f1f8d92437c12e91ceda0955e0bf5 SHA256: 75c0b590f409e1e5f248bc0c79368fe0b57c369ea8c85537bbbefa75d9cc4a19 Description: private library for implementing a HUD frontend Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: 2c7610c9e83ed3355a63288f0ec01a74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud-client2-dev Priority: optional Section: libdevel Installed-Size: 145 Maintainer: Ubuntu Developers Architecture: i386 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud-client2 (= 13.10.1+14.04.20140402-0ubuntu1), libglib2.0-dev Recommends: libhud-client2-doc Filename: pool/main/h/hud/libhud-client2-dev_13.10.1+14.04.20140402-0ubuntu1_i386.deb Size: 11850 MD5sum: e577952ecf28994be618d3959d07ef0a SHA1: 33a97171324c69e78974d9b34fa8d1eab9d0ca61 SHA256: f75a3ece3c068711ca64d81992df30d3cb10a694d89076c574cada39061029ce Description: private library for implementing a HUD frontend Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: c972b61dbcd93d1ee4ec32841380278a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud-client2-doc Priority: optional Section: doc Installed-Size: 212 Maintainer: Ubuntu Developers Architecture: all Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud-client2-dev (>= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud-client2-doc_13.10.1+14.04.20140402-0ubuntu1_all.deb Size: 17206 MD5sum: da4bf2483be3f18a0f071d745d0b9cb4 SHA1: 7a78acef5d2becfb04eecd29ee31f8931fa85e6e SHA256: d5d854ba5be80ff7897fa4bf77926dd5e9318c57b61b08e3f5062206b72167ba Description: private library for implementing a HUD frontend Homepage: http://launchpad.net/hud Description-md5: be36e1ce1035bc219738d87ad6e9c7ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud-gtk1 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Architecture: i386 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.4), libhud2 (>= 13.04.0-0ubuntu1~ppa2) Pre-Depends: multiarch-support Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud-gtk1_13.10.1+14.04.20140402-0ubuntu1_i386.deb Size: 4932 MD5sum: 42467a7337797da58b7279ddd2c99c12 SHA1: 7f02bfed2fd4b1c387cf03afcec64ec94cdcc3e4 SHA256: 44f2544bbd9888ba0d6e22f75d463f39adfc1398c5d25a3be0ebccce5d5f52c7 Description: GTK helpers for exporting items to the Unity HUD Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: 24e8d2c7323878f17d964317bcb09587 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud-gtk1-dev Priority: optional Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Architecture: i386 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud-gtk1 (= 13.10.1+14.04.20140402-0ubuntu1), libhud2-dev (= 13.10.1+14.04.20140402-0ubuntu1), libgtk-3-dev Filename: pool/main/h/hud/libhud-gtk1-dev_13.10.1+14.04.20140402-0ubuntu1_i386.deb Size: 3032 MD5sum: a0fb3ab339d3332707deab6cf390dc63 SHA1: 323cfec7a78af8fb3d7030d5253ff5f4651c6c97 SHA256: b402a5ddfc8a450f1e081dc1bec5cc2aa49893b914d4fc98c4abe5293bc80260 Description: GTK helpers for exporting items to the Unity HUD Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: 9c17652244df3cbbbc3a143ea9ba8cfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud-gtk1-doc Priority: optional Section: doc Installed-Size: 81 Maintainer: Ubuntu Developers Architecture: all Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud-gtk1-dev (>= 13.10.1+14.04.20140402-0ubuntu1), libhud2-doc (>= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud-gtk1-doc_13.10.1+14.04.20140402-0ubuntu1_all.deb Size: 9382 MD5sum: 4a9853763b90f6154261f8d161f7333c SHA1: 9f08150ac5475c955deb8deb96c2a96e49efd2ee SHA256: b0d00726c933ac82038536e95f5d7aea19b355f3d3badf37b2595dd78c43a30d Description: GTK helpers for exporting items to the Unity HUD Homepage: http://launchpad.net/hud Description-md5: 7e11e2cb6c06b23481c1a630bdec8d15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud2 Priority: optional Section: libs Installed-Size: 120 Maintainer: Ubuntu Developers Architecture: i386 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Recommends: hud (= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud2_13.10.1+14.04.20140402-0ubuntu1_i386.deb Size: 25806 MD5sum: 4c0516695b05ad435b25b07ebce6c9d0 SHA1: 7a8605aaba9b660412fe062131f4f191e1430e48 SHA256: e37bdab54c0cb4ddd20d06f4ceaa077aea7be2366e1eed51f12af330f42a3057 Description: library for exporting items to the Unity HUD Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: a7907b4514fa5355f84bc89a20c27aa4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libhud2-dev Priority: optional Section: libdevel Installed-Size: 112 Maintainer: Ubuntu Developers Architecture: i386 Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud2 (= 13.10.1+14.04.20140402-0ubuntu1), libglib2.0-dev Filename: pool/main/h/hud/libhud2-dev_13.10.1+14.04.20140402-0ubuntu1_i386.deb Size: 8514 MD5sum: 65e446e88d20e02c86f26c92ea93cce5 SHA1: c15cb6bbdb0d3187f8b4fa02637a274cd8da4a00 SHA256: 7f6ccd307b97c9798cfeea13d3238d1895e039c447b8b0af959a832dbdd7f0e3 Description: library for exporting items to the Unity HUD Multi-Arch: same Homepage: http://launchpad.net/hud Description-md5: 9cd92e06f6758a2a7b79099816edfc3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhud2-doc Priority: optional Section: doc Installed-Size: 161 Maintainer: Ubuntu Developers Architecture: all Source: hud Version: 13.10.1+14.04.20140402-0ubuntu1 Depends: libhud2-dev (>= 13.10.1+14.04.20140402-0ubuntu1) Filename: pool/main/h/hud/libhud2-doc_13.10.1+14.04.20140402-0ubuntu1_all.deb Size: 15260 MD5sum: 582807820d32c438f6a18a08df579a36 SHA1: 6e64198c368b02cadba248d3d1bdd3358f666727 SHA256: 8068d90b13bc5c91e2fc83291057c3b770a0950a4b0e0dd17212afe2fc7a8c6c Description: library for exporting items to the Unity HUD Homepage: http://launchpad.net/hud Description-md5: c29f9b6554b89d87d21bf40b550d0e8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhunspell-1.3-0 Priority: optional Section: libs Installed-Size: 433 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: hunspell Version: 1.3.2-6ubuntu2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Recommends: hunspell-en-us | hunspell-dictionary | myspell-dictionary Conflicts: openoffice.org-core (= 2.2.0~rc2-1) Filename: pool/main/h/hunspell/libhunspell-1.3-0_1.3.2-6ubuntu2_i386.deb Size: 106836 MD5sum: 96507e4a5f25e4818bbbfe7408bbbd60 SHA1: 67cd9ad5aac2d83ae82cd1a7430d32d1e3fca285 SHA256: 8bfb25426661216c58a662b15f618494ce24aed5670e1f4843be4bdeca20872d Description: spell checker and morphological analyzer (shared library) Multi-Arch: same Homepage: http://hunspell.sourceforge.net/ Description-md5: a97e9e4624b469f6e76fab734c70d0fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libhunspell-1.3-0-dbg Priority: extra Section: debug Installed-Size: 878 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: hunspell Version: 1.3.2-6ubuntu2 Recommends: hunspell-en-us | hunspell-dictionary | myspell-dictionary Conflicts: openoffice.org-core (= 2.2.0~rc2-1) Filename: pool/main/h/hunspell/libhunspell-1.3-0-dbg_1.3.2-6ubuntu2_i386.deb Size: 245808 MD5sum: 88b9f0679632e3598178d8a641c3fa5d SHA1: ecdeb4d6bbab4ba35d15b2adeba62418812dea02 SHA256: cdf3c67c4183ba03c9bd1075bb508a567ac3c9725dae50e730e37304f2b55530 Description: spell checker and morphological analyzer (debug symbols) Homepage: http://hunspell.sourceforge.net/ Description-md5: e2074ad75ca0f1a06eb267d984d6e117 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhunspell-dev Priority: optional Section: libdevel Installed-Size: 609 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: hunspell Version: 1.3.2-6ubuntu2 Replaces: hunspell (<< 1.2.7-2) Depends: libhunspell-1.3-0 (= 1.3.2-6ubuntu2) Filename: pool/main/h/hunspell/libhunspell-dev_1.3.2-6ubuntu2_i386.deb Size: 152568 MD5sum: 685ceb002fee7d54993ce3244b2ab161 SHA1: bdf4fd252ecdf7511548c428f2d5be21419bc58e SHA256: 370ef7f097192e8cd639862d408a4e504b92e15dba699bbf01fa095a1fd80bd7 Description: spell checker and morphological analyzer (development) Multi-Arch: same Homepage: http://hunspell.sourceforge.net/ Description-md5: 39d11eceaaaf558143dac83bc884bc9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhx-dev Priority: extra Section: libdevel Installed-Size: 263 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Kleineidam Architecture: i386 Source: libhx Version: 3.15-2ubuntu1 Depends: libhx28 (= 3.15-2ubuntu1), libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/libh/libhx/libhx-dev_3.15-2ubuntu1_i386.deb Size: 50708 MD5sum: a476bbffec06b24e9bb0cbbc6729ee58 SHA1: 667a0ac9bc5375a6f7b5cac326093a0eac68cc1f SHA256: dc700d99a4c35ee1a3ce1a4c73445ade2a4fb42122b54041f62400eaaa67f909 Description: Development files for libhx Homepage: http://libhx.sourceforge.net/ Description-md5: 455418371633e62ae226d9c8c2602905 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhx-doc Priority: extra Section: doc Installed-Size: 538 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Kleineidam Architecture: all Source: libhx Version: 3.15-2ubuntu1 Suggests: libhx-dev Filename: pool/main/libh/libhx/libhx-doc_3.15-2ubuntu1_all.deb Size: 519044 MD5sum: b4f1dbdb5104d61cd12f7d38839f2970 SHA1: 5060580c9d79a9ed4a55f50113e07ca3a1e6d974 SHA256: ea87b0a56f373fc176b6245971122d495e40e39f244f390a3a38a78d1e22d5ed Description: Documentation files for libhx Homepage: http://libhx.sourceforge.net/ Description-md5: 1532a4a4b10413aecf7037005cf3296e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhx28 Priority: extra Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Kleineidam Architecture: i386 Source: libhx Version: 3.15-2ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libh/libhx/libhx28_3.15-2ubuntu1_i386.deb Size: 30486 MD5sum: d2e770fd8df99e0e020acdf7c0125ada SHA1: bc9d2964be0a3ad4b42636d69739f171b3fd5abd SHA256: 0c116c7ecb30413e6751831bdf292d1215ec6475844cf2548f049abd97c775c2 Description: C library providing queue, tree, I/O and utility functions Multi-Arch: same Homepage: http://libhx.sourceforge.net/ Description-md5: 250f5abedae6b7911e18842967f70d98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libhx509-5-heimdal Priority: standard Section: libs Installed-Size: 357 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libasn1-8-heimdal (>= 1.4.0+git20110226), libc6 (>= 2.8), libcomerr2 (>= 1.34), libhcrypto4-heimdal (>= 1.4.0+git20110226), libheimbase1-heimdal (>= 1.6~git20131117), libroken18-heimdal (>= 1.4.0+git20110226), libwind0-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libhx509-5-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 103052 MD5sum: c22c5c292c536a4440e5e69026940ace SHA1: d757ce23fe66e2e62ed8325d82690f645de7d457 SHA256: d99ea155620676d0742cd5b2f62647150f59848709f2ee93efe4bbf8d05b32c3 Description: Heimdal Kerberos - X509 support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 272768f50d42b97d24ed462de2154649 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libhybris Priority: extra Section: libs Installed-Size: 256 Maintainer: Ubuntu Developers Architecture: i386 Version: 0.1.0+git20131207+e452e83-0ubuntu12 Depends: libandroid-properties1 (= 0.1.0+git20131207+e452e83-0ubuntu12), libhardware2, libmedia1, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libhybris-common1, libstdc++6 (>= 4.6), libwayland-client0 (>= 1.3.92), libwayland-server0 (>= 1.0.2) Filename: pool/main/libh/libhybris/libhybris_0.1.0+git20131207+e452e83-0ubuntu12_i386.deb Size: 47888 MD5sum: 16f4b4982598e988a282596fd3300960 SHA1: d0240d9203f25505f59390f6b402ca86739dfde5 SHA256: 35fef9a208a3e314c9fe7b675cca6d3705f486fa22f08abdd6d11ad8017d0749 Description: Allows to run bionic-based HW adaptations in glibc systems - libs Description-md5: d20384e11368d9f090577e52e675ed57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhybris-common-dev Priority: extra Section: libdevel Installed-Size: 50 Maintainer: Ubuntu Developers Architecture: i386 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Depends: libhybris-common1 (= 0.1.0+git20131207+e452e83-0ubuntu12) Breaks: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Filename: pool/main/libh/libhybris/libhybris-common-dev_0.1.0+git20131207+e452e83-0ubuntu12_i386.deb Size: 4508 MD5sum: 4f73b6b3e45d6b0dc158a9484ee2af91 SHA1: 292e22cd0be0b7c1357d855e8580e61fded18746 SHA256: c3e28f65de41b8c645733fff779ad051464346f9ad8ed385f10a00ffec964af3 Description: Development files for libhybris-common Description-md5: 27556b4ff08d6ee084db91ea770617de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhybris-common1 Priority: extra Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Architecture: i386 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Depends: libandroid-properties1, libc6 (>= 2.12) Breaks: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu13) Filename: pool/main/libh/libhybris/libhybris-common1_0.1.0+git20131207+e452e83-0ubuntu12_i386.deb Size: 27092 MD5sum: e3a848ea0b92ffd47eb455dc40b76d86 SHA1: a587ee17087315fa23aec7952b3069645bfa0778 SHA256: 944a2c773c759664fe5d8411fa6a63b135d7a9d212ca94648df435fee38b2be6 Description: Common library that contains the Android linker and custom hooks Description-md5: 618c5643ccb4d8d4d8db9e33d16f42e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhybris-dev Priority: extra Section: libdevel Installed-Size: 165 Maintainer: Ubuntu Developers Architecture: i386 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Depends: libhybris (= 0.1.0+git20131207+e452e83-0ubuntu12), android-headers (>= 4.2.2), libandroid-properties-dev (= 0.1.0+git20131207+e452e83-0ubuntu12), libhardware-dev (= 0.1.0+git20131207+e452e83-0ubuntu12), libmedia-dev (= 0.1.0+git20131207+e452e83-0ubuntu12), libhybris-common-dev (= 0.1.0+git20131207+e452e83-0ubuntu12), libgles2-mesa-dev Filename: pool/main/libh/libhybris/libhybris-dev_0.1.0+git20131207+e452e83-0ubuntu12_i386.deb Size: 19534 MD5sum: aa4b50097374ee3718ea117ce3e4c86e SHA1: 736ae4d5aa39dd063b4feee372e4b4d882ae2d85 SHA256: a23148850e7c6a8bb7c3f1013b1210af0ef032cd2bb09674f7473be84f223683 Description: Development headers and libraries for libhybris Description-md5: fcfe2cd71f2cfbabcbb6f94dda4cbe46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhyphen-dev Priority: optional Section: libdevel Installed-Size: 258 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: hyphen Version: 2.8.6-3ubuntu2 Replaces: libaltlinuxhyph-dev Provides: libaltlinuxhyph-dev Depends: libhyphen0 (= 2.8.6-3ubuntu2) Conflicts: libaltlinuxhyph-dev, libhnj-dev Filename: pool/main/h/hyphen/libhyphen-dev_2.8.6-3ubuntu2_i386.deb Size: 181976 MD5sum: e94803bff76c3ef87de141e58eebdec1 SHA1: fff814f9914bf53b4e9a00edcfe075de3697f299 SHA256: 6caaaef9656937a70d483715885e8210207c65ece5e2c13a158b5c4692f729bf Description: ALTLinux hyphenation library - development files Description-md5: 88c140d072c0564f1a4bb7f17583c86e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libhyphen0 Priority: optional Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: hyphen Version: 2.8.6-3ubuntu2 Depends: libc6 (>= 2.4) Filename: pool/main/h/hyphen/libhyphen0_2.8.6-3ubuntu2_i386.deb Size: 17810 MD5sum: a2e0a2f7467f74485f42ce524c1f94cf SHA1: e994e5ea01b372676b9cfe60e6a3bb7cf4fb5e3f SHA256: 70ed8abf8bc78ba1ad592ee68dc14eca4ee16b95606ab41ece8aa618ada9a2eb Description: ALTLinux hyphenation library - shared library Description-md5: bb218ffba1389cf37f660faeb909cdbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-publishing, ubuntu-gnome-desktop Package: libiberty-dev Priority: optional Section: libdevel Installed-Size: 529 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: libiberty Version: 20131116-1 Filename: pool/main/libi/libiberty/libiberty-dev_20131116-1_i386.deb Size: 134808 MD5sum: eb76b24714cac3157b5fdc7c088f70f1 SHA1: 2151eb0065ad595d1b9e2f536503219a67fbb807 SHA256: e0ee9a4dd1e41fa0d70e7f0bf7c3c4286ba88474f48edb986762217ee9db38b0 Description: library of utility functions used by GNU programs Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 48a3f9053763db76e6202bb3fd5cb5b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libibus-1.0-5 Priority: optional Section: libs Installed-Size: 434 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: ibus Version: 1.5.5-1ubuntu3 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/i/ibus/libibus-1.0-5_1.5.5-1ubuntu3_i386.deb Size: 108730 MD5sum: a726d73dc73f6895399f96275cc727aa SHA1: f435daf56e5b20b2c6f692300c37e59b9bf7ca02 SHA256: 7d9644711bfbcc92bd1ade07a2f8838e5b1493378831bfcfcc61f023feabd6df Description: Intelligent Input Bus - shared library Multi-Arch: same Homepage: http://code.google.com/p/ibus/ Description-md5: fb7cfdef40194dc7d14444000e952d91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: libibus-1.0-dev Priority: optional Section: libdevel Installed-Size: 2045 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: ibus Version: 1.5.5-1ubuntu3 Replaces: libibus-dev Depends: gir1.2-ibus-1.0 (= 1.5.5-1ubuntu3), libdbus-1-dev, libglib2.0-dev, libibus-1.0-5 (= 1.5.5-1ubuntu3) Filename: pool/main/i/ibus/libibus-1.0-dev_1.5.5-1ubuntu3_i386.deb Size: 139518 MD5sum: 645b90f55500eeae37015719a46a828a SHA1: 414d8bbdd9fe6d446098cf276acb337653d623bd SHA256: 185ee80615c6a4a34c260adcb20640a4a3615a5646d5c971855b9faf8a5e17fc Description: Intelligent Input Bus - development file Homepage: http://code.google.com/p/ibus/ Description-md5: 90767d47bc8a96a7e5f705c5b19a9d1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libibverbs-dev Priority: extra Section: libdevel Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: i386 Source: libibverbs Version: 1.1.7-1ubuntu1 Depends: libibverbs1 (= 1.1.7-1ubuntu1) Filename: pool/main/libi/libibverbs/libibverbs-dev_1.1.7-1ubuntu1_i386.deb Size: 67718 MD5sum: d480e1c586cbc6609f364aac265c7c35 SHA1: e739998531fc29cb8350047963db50fde2d3382f SHA256: 2566b9727b8530a2c904c6327d46fd44671847e496a3232c6aac8a8c34155067 Description: Development files for the libibverbs library Homepage: http://www.openfabrics.org/ Description-md5: a4ebfd5f539c2b84d8e9c6ec58b0258a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libibverbs1 Priority: extra Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: i386 Source: libibverbs Version: 1.1.7-1ubuntu1 Depends: libc6 (>= 2.4), adduser Filename: pool/main/libi/libibverbs/libibverbs1_1.1.7-1ubuntu1_i386.deb Size: 23740 MD5sum: 123397ffa043861695b7a43088071a93 SHA1: 9d51e69b7168f32904a75dcc08d1682e7e4233db SHA256: 6a7a61d6b71cf5716639e82db2ec461d3d691adf23654ef478d2e436d65262f9 Description: Library for direct userspace use of RDMA (InfiniBand/iWARP) Homepage: http://www.openfabrics.org/ Description-md5: 8cdb9c883867c94335417ed5085d7667 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libibverbs1-dbg Priority: extra Section: libdevel Installed-Size: 469 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: i386 Source: libibverbs Version: 1.1.7-1ubuntu1 Depends: libibverbs1 (= 1.1.7-1ubuntu1) Filename: pool/main/libi/libibverbs/libibverbs1-dbg_1.1.7-1ubuntu1_i386.deb Size: 101020 MD5sum: 341005bca43cd876e11e200aeb8d5b97 SHA1: 498778744254d1b78af4ba5edae258678eb11ea3 SHA256: 6e267520a2066d9cd19f0054aeae54a054e4c70f5154fa0da1788e5bb499dfa8 Description: Debugging symbols for the libibverbs library Homepage: http://www.openfabrics.org/ Description-md5: ae914075bdf85d942e88fae1c1cea1ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libical-dbg Priority: extra Section: debug Installed-Size: 465 Maintainer: Kubuntu Developers Original-Maintainer: Fathi Boudra Architecture: i386 Source: libical Version: 1.0-0ubuntu1 Depends: libical1 (= 1.0-0ubuntu1) Filename: pool/main/libi/libical/libical-dbg_1.0-0ubuntu1_i386.deb Size: 346586 MD5sum: a5cb50088097ec764232a0db899b15f0 SHA1: 0add69bbfdeba5d6326e0649e985445362668284 SHA256: 0a16bb67a2b3ee1ac460d3ba61e6cb6161820590d74789b40502e998509d21db Description: debugging symbols for libical Homepage: http://freeassociation.sourceforge.net Description-md5: 4f50f53449a859bfb0a7fd64932af73e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libical-dev Priority: optional Section: libdevel Installed-Size: 1028 Maintainer: Kubuntu Developers Original-Maintainer: Fathi Boudra Architecture: i386 Source: libical Version: 1.0-0ubuntu1 Depends: libical1 (= 1.0-0ubuntu1) Filename: pool/main/libi/libical/libical-dev_1.0-0ubuntu1_i386.deb Size: 269838 MD5sum: 79624fb345aea6034f82fbc122ac085d SHA1: 1bb6debe11e53b35ea311d45f24d36b284f0ac79 SHA256: 32a8bdb309b18d33d6b9532a2c54981d27c9ded29d0dd4b0ee7c7d2fb3f6f878 Description: iCalendar library implementation in C (development) Homepage: http://freeassociation.sourceforge.net Description-md5: b25d9407fdbd7cb4237ea4499d48f2fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libical1 Priority: optional Section: libs Installed-Size: 596 Maintainer: Kubuntu Developers Original-Maintainer: Fathi Boudra Architecture: i386 Source: libical Version: 1.0-0ubuntu1 Depends: libc6 (>= 2.7), tzdata Filename: pool/main/libi/libical/libical1_1.0-0ubuntu1_i386.deb Size: 209750 MD5sum: 91f7d015e743451633d81939f0383fc2 SHA1: fe6f7de71a17cdf9f4f781ef5c445dbb914cd3ca SHA256: 5ef4666c2f7c6380d949a264993189f5adce35bb697a3e0214dc44b76640379a Description: iCalendar library implementation in C (runtime) Homepage: http://freeassociation.sourceforge.net Description-md5: cbe24cb3191748512447a8a200ebcd03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libice-dev Priority: optional Section: libdevel Installed-Size: 222 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libice Version: 2:1.0.8-2 Depends: libice6 (= 2:1.0.8-2), x11proto-core-dev Suggests: libice-doc Filename: pool/main/libi/libice/libice-dev_1.0.8-2_i386.deb Size: 52262 MD5sum: 64d71278747038183ba5fd4b668cf2f1 SHA1: d508cbc81e45965e032fb508221a102e6dcc3782 SHA256: e77ac096e0ae84393f3b34e26c42f05ddf682e81be3bdcd6a244c9212b02f8ba Description: X11 Inter-Client Exchange library (development headers) Multi-Arch: same Description-md5: 9ef50bcec7f1e713478c714843229850 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libice-doc Priority: optional Section: doc Installed-Size: 412 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libice Version: 2:1.0.8-2 Replaces: libice-dev (<< 2:1.0.8) Breaks: libice-dev (<< 2:1.0.8) Filename: pool/main/libi/libice/libice-doc_1.0.8-2_all.deb Size: 131512 MD5sum: d328c241b61d1efcdfa7e541c87ead40 SHA1: 15ec930c95b158be509509bed2df886b08d43f4a SHA256: 8e5c108a48048b46a32c64928d87346aef9fc2d29019c7ff877c2dcd5e90cc63 Description: documentation for the X11 ICE protocol and library Multi-Arch: foreign Description-md5: 3c46cd45d241c709c95513f3fa032162 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libice6 Priority: optional Section: libs Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libice Version: 2:1.0.8-2 Depends: libc6 (>= 2.11), x11-common Pre-Depends: multiarch-support Filename: pool/main/libi/libice/libice6_1.0.8-2_i386.deb Size: 45932 MD5sum: 33c0e8fc872f8af793e4c9c1f4970ef6 SHA1: c94438d45178827f7fc13783a294ba26bc21336d SHA256: b32a63405d093e4664f46ed94c642c4b98893c298899eca3336ddbe863bf5289 Description: X11 Inter-Client Exchange library Multi-Arch: same Description-md5: ded12730167b4fabe6c8013534c7804a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libice6-dbg Priority: extra Section: libdevel Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libice Version: 2:1.0.8-2 Depends: libice6 (= 2:1.0.8-2) Filename: pool/main/libi/libice/libice6-dbg_1.0.8-2_i386.deb Size: 115878 MD5sum: 9b565e3e8bbbb6d45aa3f7cb9ff5fc00 SHA1: 9a5692dd5667b05308ca11e850e6470d08e069b8 SHA256: 39548c5e69a69d2229e1908321566f9b33beb45a250199656291e9d0f06ef135 Description: X11 Inter-Client Exchange library (debug package) Multi-Arch: same Description-md5: 6a9cec31d306fb92fa732f4fcd6abc9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libicu-dev Priority: optional Section: libdevel Installed-Size: 35061 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: icu Version: 52.1-3 Depends: libicu52 (= 52.1-3), icu-devtools (>= 52.1-3), libc6-dev | libc-dev Suggests: icu-doc Filename: pool/main/i/icu/libicu-dev_52.1-3_i386.deb Size: 7635542 MD5sum: 213e4e4b4214ce9aa797879cea2e82f1 SHA1: 3fecc6889c74d9aba2977c601a9f61c1146ef080 SHA256: c9e333d28c9b570631ac4ccf0a4a464bc2931bc7e4d33ecf91c69ad210de9458 Description: Development files for International Components for Unicode Multi-Arch: same Homepage: http://www.icu-project.org Description-md5: 6ba8fb49531a26733d27c3f9dbfe8ad6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libicu52 Priority: optional Section: libs Installed-Size: 27253 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: icu Version: 52.1-3 Depends: libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/i/icu/libicu52_52.1-3_i386.deb Size: 6794586 MD5sum: 0c236eb773d022c75361c8f40cfbf353 SHA1: 6a817337bf671984b7bc0fefe8a1914f4ff656d9 SHA256: 47477679652276a43615c77af2df447e28a1596dbbfcb27616b6120d04eec95d Description: International Components for Unicode Multi-Arch: same Homepage: http://www.icu-project.org Description-md5: ea5cc55770d8f276c67880d90115d206 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libicu52-dbg Priority: extra Section: debug Installed-Size: 6316 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: icu Version: 52.1-3 Depends: libicu52 (= 52.1-3) Filename: pool/main/i/icu/libicu52-dbg_52.1-3_i386.deb Size: 5551764 MD5sum: d2752cf6a089f33cec73961f7ad3a8ac SHA1: a0fcba0c39097b89a183d84dd58cf932cac46b7e SHA256: 7fb5a23e00f54e69ae618fd91fca9db31c1b473da06d2a6b4c069582ab197b46 Description: International Components for Unicode Homepage: http://www.icu-project.org Description-md5: cd531f650c894307a7f9e9bc71ee864b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libid3tag0 Priority: optional Section: libs Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Mad Maintainers Architecture: i386 Source: libid3tag Version: 0.15.1b-10ubuntu1 Depends: libc6 (>= 2.4), zlib1g (>= 1:1.1.4) Filename: pool/main/libi/libid3tag/libid3tag0_0.15.1b-10ubuntu1_i386.deb Size: 27480 MD5sum: 546c1cd79032e5743a4179f814ac1cea SHA1: 79c0061a25b1de3f34dbe20a7c592fbedc11de44 SHA256: 84f78bd36bab4112c4ca229c1490305b8a4775c026ba79c719cef820865fa5fd Description: ID3 tag reading library from the MAD project Description-md5: c87a939309703158d6f41ff4c79a51d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-core, ubuntustudio-video, ubuntustudio-audio Package: libid3tag0-dev Priority: optional Section: libdevel Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Mad Maintainers Architecture: i386 Source: libid3tag Version: 0.15.1b-10ubuntu1 Depends: libid3tag0 (= 0.15.1b-10ubuntu1), pkg-config, zlib1g-dev Filename: pool/main/libi/libid3tag/libid3tag0-dev_0.15.1b-10ubuntu1_i386.deb Size: 28594 MD5sum: 58f86b85dafa4fa665bdf15a9fadcb79 SHA1: e315380d37fa25e57aa4f16a0f971b6f3da76ed5 SHA256: 3187357b90f9ef46251456106fadd1d2b0711a6f34738cec7f214c0739ede661 Description: ID3 tag reading library from the MAD project Description-md5: 7bb1bb8529120c0a294e6171e5180274 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libident Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Paul Slootman Architecture: i386 Version: 0.22-3build4 Depends: libc6 (>= 2.15) Suggests: libident-dev Filename: pool/main/libi/libident/libident_0.22-3build4_i386.deb Size: 15034 MD5sum: 58114b438a45fe891fbec22c6150b637 SHA1: fdf6a84ea4b4b854e2b1da2dcca2e568ce8f2b2e SHA256: d6a80c7f88fe22b357abe11f479e7de1bc74a79e079e77a8528d895aff9f149a Description: simple RFC1413 client library - runtime Description-md5: 199960463ab87d482f67cffe21dd348d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libident-dev Priority: optional Section: libdevel Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Paul Slootman Architecture: i386 Source: libident Version: 0.22-3build4 Depends: libident (= 0.22-3build4), libc6 (>= 2.15) Filename: pool/main/libi/libident/libident-dev_0.22-3build4_i386.deb Size: 9416 MD5sum: 97c7a15ee1de8405c48108796a676c7d SHA1: fdb2ed52cd187feba1a6fd29de365c63d501acc7 SHA256: 355636152d7b744d4e6d0d0f490addc3451356ddd888ecef03c1202267cf444a Description: simple RFC1413 client library - development Description-md5: bd1f80eb38a9d9516738a18e1156d9fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libidl-common Priority: optional Section: libs Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: all Source: libidl Version: 0.8.14-0.2ubuntu4 Depends: cpp Filename: pool/main/libi/libidl/libidl-common_0.8.14-0.2ubuntu4_all.deb Size: 8196 MD5sum: d2009ec991c91cf27f31f72628567fb9 SHA1: fd996ad60707f04cfca34b988fa6fbcb8b47fa0f SHA256: 72038f8442f78fe6542969519a4eec295fd5da7dc94594e710cedfbabc38b05e Description: library for parsing CORBA IDL files (common files) Multi-Arch: foreign Description-md5: c494de1f12441e29670ec9ed2688b5b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libidl-dev Priority: optional Section: libdevel Installed-Size: 359 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: i386 Source: libidl Version: 0.8.14-0.2ubuntu4 Depends: libidl0 (= 0.8.14-0.2ubuntu4), libglib2.0-dev Filename: pool/main/libi/libidl/libidl-dev_0.8.14-0.2ubuntu4_i386.deb Size: 65834 MD5sum: 081f2b7aa2cd225a4e6aba6f5a7a965f SHA1: c1a71cfabb2a914e648809c245088bf70b2cd81a SHA256: 64703316a7075b0471b068d1b044b1e0637578c35b17b3732cb7195120651ff2 Description: development files for programs that use libIDL Multi-Arch: same Description-md5: 9ea0e29e59fa63fb0a3f93e4a701f74f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libidl0 Priority: optional Section: libs Installed-Size: 251 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: i386 Source: libidl Version: 0.8.14-0.2ubuntu4 Depends: libidl-common (>= 0.8.14-0.2ubuntu4), libidl-common (<< 0.8.14-0.2ubuntu4.1), libc6 (>= 2.7), libglib2.0-0 (>= 2.16.0) Pre-Depends: multiarch-support Filename: pool/main/libi/libidl/libidl0_0.8.14-0.2ubuntu4_i386.deb Size: 62314 MD5sum: fe206cdbc075a79dfc3edb37621a3825 SHA1: 9d03830a4754a78a73a7390683fdf60151c0828c SHA256: 3330b95cbd7355e815550a5261c42e648271566667e8cf858dcd054b78a7c6c8 Description: library for parsing CORBA IDL files Multi-Arch: same Description-md5: f1bf44153d3885cee26c18de834b40aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libidn11 Priority: standard Section: libs Installed-Size: 362 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libidn Team Architecture: i386 Source: libidn Version: 1.28-1ubuntu2 Replaces: libidn11-dev Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: libidn9-dev Filename: pool/main/libi/libidn/libidn11_1.28-1ubuntu2_i386.deb Size: 92318 MD5sum: 86ead2e7aaea2750ea6903d494c6503b SHA1: 6fe5fbd9718b572a34cd6b7cb9921b9fb2ce4674 SHA256: 323aa90af8a4ddef8d129d9412e911881bacd196f3ad0eb889ed548ace912f02 Description: GNU Libidn library, implementation of IETF IDN specifications Multi-Arch: same Homepage: https://www.gnu.org/software/libidn/ Description-md5: 8f2c3e3028043c62404c901cd7473dc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libidn11-dev Priority: optional Section: libdevel Installed-Size: 912 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libidn Team Architecture: i386 Source: libidn Version: 1.28-1ubuntu2 Depends: libidn11 (= 1.28-1ubuntu2), pkg-config Conflicts: libidn9-dev Filename: pool/main/libi/libidn/libidn11-dev_1.28-1ubuntu2_i386.deb Size: 517230 MD5sum: 0e2fda5a6a1efd8a57e5335f28c831ca SHA1: af8835ae202d5e751cbc5b4771b88ac8014c5df0 SHA256: 087526c5bf12f3ddd39e341910807df5c6bbdc956e4f356d3abfbc634fd41a14 Description: Development files for GNU Libidn, an IDN library Homepage: https://www.gnu.org/software/libidn/ Description-md5: 057f92c8d16485c6626798cd9f7f9f97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libido3-0.1-0 Priority: optional Section: libs Installed-Size: 185 Maintainer: Ubuntu Developers Architecture: i386 Source: ido Version: 13.10.0+14.04.20140407-0ubuntu1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.23.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.8.2-0ubuntu2), libpango-1.0-0 (>= 1.20.0), libpangocairo-1.0-0 (>= 1.14.0) Pre-Depends: multiarch-support Filename: pool/main/i/ido/libido3-0.1-0_13.10.0+14.04.20140407-0ubuntu1_i386.deb Size: 47444 MD5sum: d046966bf10bf836443ca638d1283339 SHA1: 9dba9e6fac0ac7913c979d2ef6d074f3779e25b2 SHA256: 8ac49a11e25370d1fef9534808ca196650c6f3b52b612313062353bd6475972f Description: Shared library providing extra gtk menu items for display in Multi-Arch: same Homepage: https://launchpad.net/ido Description-md5: ffd27a740620c8c7ab3fe86454936ec8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libido3-0.1-dev Priority: optional Section: libdevel Installed-Size: 164 Maintainer: Ubuntu Developers Architecture: i386 Source: ido Version: 13.10.0+14.04.20140407-0ubuntu1 Depends: gir1.2-ido3-0.1 (= 13.10.0+14.04.20140407-0ubuntu1), libido3-0.1-0 (= 13.10.0+14.04.20140407-0ubuntu1), pkg-config, libglib2.0-dev (>= 2.14.0), libgtk-3-dev (>= 3.8.2-0ubuntu2) Filename: pool/main/i/ido/libido3-0.1-dev_13.10.0+14.04.20140407-0ubuntu1_i386.deb Size: 11474 MD5sum: 1fe8cdfc6b3e1d852db6d981bff90b6e SHA1: 49ec9236b365981532b5b6190779155f0d3cbff9 SHA256: 1c3748353c9c5fb50039b4248c576b23cda4e9b0bbed1f9213fee29b39025431 Description: Shared library providing extra gtk menu items for display in Homepage: https://launchpad.net/ido Description-md5: 1b1506bfa4cd8d43ca0b6217616441be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libiec61883-0 Priority: optional Section: libs Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Marcio Roberto Teixeira Architecture: i386 Source: libiec61883 Version: 1.2.0-0.1ubuntu3 Depends: libc6 (>= 2.3.4), libraw1394-11 Pre-Depends: multiarch-support Filename: pool/main/libi/libiec61883/libiec61883-0_1.2.0-0.1ubuntu3_i386.deb Size: 24294 MD5sum: f271ed21d12da4ece622ba825c84b04a SHA1: 06f6c4e2b3b38b4498ef09f49c57d6da6e86b1ce SHA256: 38398be5a0f27fcfc0c1a8d6b90635c0f639ac5e725067d44763bbf45dc272a0 Description: an partial implementation of IEC 61883 Multi-Arch: same Description-md5: d95e7f2402ce60a8f77bf09c3802a2c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libiec61883-dev Priority: optional Section: libdevel Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Marcio Roberto Teixeira Architecture: i386 Source: libiec61883 Version: 1.2.0-0.1ubuntu3 Depends: libiec61883-0 (= 1.2.0-0.1ubuntu3), libraw1394-dev (>= 2.0.2), libc6 (>= 2.3.4), libraw1394-11 Filename: pool/main/libi/libiec61883/libiec61883-dev_1.2.0-0.1ubuntu3_i386.deb Size: 29752 MD5sum: 16ecec1d95b0efe5d747868e6465ab68 SHA1: 0dec8395a314ff70cc8cea049d0f8bcba3a8f2bb SHA256: 338d01a2d5b3ef514451072b2c1de2d7bf058e190cc070acb8dbb37f1ebab8b8 Description: an partial implementation of IEC 61883 Description-md5: 06d87cbb7cb41af435f0b0b284dace57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libieee1284-3 Priority: optional Section: libs Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: libieee1284 Version: 0.2.11-12 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/libi/libieee1284/libieee1284-3_0.2.11-12_i386.deb Size: 23652 MD5sum: 19bdfa87e906b416728beda8247e4ab2 SHA1: 868b788d50929547a8eb5a65cd0a5140ee5a009d SHA256: 3c215d4d11f2d000616537d9f23a4797edec7ac434ab1ae3ac06325178070406 Description: cross-platform library for parallel port access Multi-Arch: same Homepage: http://cyberelk.net/tim/software/libieee1284/ Description-md5: 202c3e4bf00feaaa4961826a6eff1bda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libieee1284-3-dev Priority: optional Section: libdevel Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: libieee1284 Version: 0.2.11-12 Depends: libieee1284-3 (= 0.2.11-12) Filename: pool/main/libi/libieee1284/libieee1284-3-dev_0.2.11-12_i386.deb Size: 49260 MD5sum: add5230cbcea6d92e59f13f6e64a1354 SHA1: 818f49b8a6925939687edab7ed0bea418c23ce8d SHA256: de6dcf345841db95ca05d395d1c04eacf4fc958e352d26b3f8ec6b93143847fa Description: cross-platform library for parallel port access [development files] Homepage: http://cyberelk.net/tim/software/libieee1284/ Description-md5: fa19691105e34a3cc3676a62a44f60c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libijs-0.35 Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: ijs Version: 0.35-8build1 Depends: libc6 (>= 2.4) Filename: pool/main/i/ijs/libijs-0.35_0.35-8build1_i386.deb Size: 17124 MD5sum: f13b8fa0d10527df1d0285b07384f7e5 SHA1: b10ccd032d1a7892c5f403f71964b3a2a0dcb3dc SHA256: 99b8139449770ca444c65dca8530c9a6267064330a59f0ebe31f4950284ceecc Description: IJS raster image transport protocol: shared library Homepage: http://www.linuxprinting.org/ijs/ Description-md5: b0a5e986b592d24551818af001ef8260 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libijs-dev Priority: optional Section: libdevel Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: ijs Version: 0.35-8build1 Depends: libc6-dev, libijs-0.35 (= 0.35-8build1) Filename: pool/main/i/ijs/libijs-dev_0.35-8build1_i386.deb Size: 111780 MD5sum: f8b095dddb6afca5b9c183aaf1fba8ed SHA1: 0e9cc515b06f38f0ed199a4d414522805ff5bbb6 SHA256: 97b83b13278286ae3e541a390d6d45bba5821b1c7e2966d7daf8cff7fdc58d32 Description: IJS raster image transport protocol: development files Homepage: http://www.linuxprinting.org/ijs/ Description-md5: 4c7cba0f16e4318b15b2b6b4fdf3780f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libilmbase-dev Priority: optional Section: libdevel Installed-Size: 994 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: i386 Source: ilmbase Version: 1.0.1-6ubuntu1 Replaces: libopenexr-dev (<< 1.6) Depends: libilmbase6 (= 1.0.1-6ubuntu1) Breaks: libopenexr-dev (<< 1.6) Filename: pool/main/i/ilmbase/libilmbase-dev_1.0.1-6ubuntu1_i386.deb Size: 99290 MD5sum: 01247d40f5f8efe9a53dc37581f7948d SHA1: 1577f47c7fb82728f19dcc3a314c4ef812e1a207 SHA256: 8130baa592d6accaeb218e51204a3b02c54321cceb027c8e0c8a26ed7fdf11f4 Description: development files for IlmBase Homepage: http://www.openexr.com Description-md5: 83bd077e774a67291ba33925255f0c55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libilmbase6 Priority: optional Section: libs Installed-Size: 446 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: i386 Source: ilmbase Version: 1.0.1-6ubuntu1 Depends: libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/i/ilmbase/libilmbase6_1.0.1-6ubuntu1_i386.deb Size: 63624 MD5sum: 98640e9a9560c4d13317fd8771c7c6c2 SHA1: c1ac07272a570444968b05a5e7e093a83fe620a6 SHA256: 0426a16db37a023b4c9a015dc674e92667f4bffa94ad66b1954cb99fca713762 Description: several utility libraries from ILM used by OpenEXR Multi-Arch: same Homepage: http://www.openexr.com Description-md5: a7cd0a047c4855d797cba2d4ba5c5284 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libimlib2 Priority: optional Section: libs Installed-Size: 574 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Source: imlib2 Version: 1.4.6-2 Depends: libbz2-1.0, libc6 (>= 2.11), libfreetype6 (>= 2.2.1), libgif4 (>= 4.1.4), libid3tag0 (>= 0.15.1b), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3), libx11-6, libxext6, zlib1g (>= 1:1.1.4) Filename: pool/main/i/imlib2/libimlib2_1.4.6-2_i386.deb Size: 162990 MD5sum: 04350872581a01865b37283f0f86cb38 SHA1: 6fd210bb256e44dfe74c63288e85997b00c12907 SHA256: 2e0edeeed7a6950c8deeacd4d0b1765a5f7249656de806620e007700c4ea2732 Description: image loading, rendering, saving library Description-md5: 01cf98f342e6a02d99a3dea6cb541439 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-core, ubuntustudio-video Package: libimlib2-dev Priority: optional Section: libdevel Installed-Size: 648 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Source: imlib2 Version: 1.4.6-2 Replaces: libimlib2 Depends: libimlib2 (= 1.4.6-2), libbz2-dev, libfreetype6-dev, libgif-dev, libid3tag0-dev, libjpeg-dev, libltdl3-dev, libpng-dev, libtiff-dev, libx11-dev, libxext-dev, zlib1g-dev Filename: pool/main/i/imlib2/libimlib2-dev_1.4.6-2_i386.deb Size: 156136 MD5sum: 9e595c1d48287e797ed82d8e8b353414 SHA1: 0be964db8022e9b2150aea2cd52fc57a2d75935b SHA256: 142a9720718583ae5f40e243a38dee0a4de1921029629f7ac9c0f3e23128c96d Description: image loading, rendering, saving library (development files) Description-md5: c8901effd8d1158399909e5f1ffb6f1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libimobiledevice-dev Priority: optional Section: libdevel Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libimobiledevice Version: 1.1.5+git20140313.bafe6a9e-0ubuntu1 Depends: libimobiledevice4 (= 1.1.5+git20140313.bafe6a9e-0ubuntu1), libglib2.0-dev, libplist-dev, libusbmuxd-dev, libgnutls-dev, libtasn1-3-dev Filename: pool/main/libi/libimobiledevice/libimobiledevice-dev_1.1.5+git20140313.bafe6a9e-0ubuntu1_i386.deb Size: 54344 MD5sum: e87f12e555cb7825bfe531baa3dc7302 SHA1: 233cd5ef325be08dda784771f3f2a1097ade3cd9 SHA256: 93bfef6352168480390fca1a3275e68948292c2dc9ffbd087810f4c0af98cd3d Description: Library for communicating with iPhone and iPod Touch devices Multi-Arch: foreign Homepage: http://libimobiledevice.org/ Description-md5: fd9a20c2b440f01ec4b9eb965aa42e9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libimobiledevice4 Priority: optional Section: libs Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libimobiledevice Version: 1.1.5+git20140313.bafe6a9e-0ubuntu1 Replaces: libimobiledevice0, libimobiledevice1, libiphone0 Depends: libc6 (>= 2.15), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libplist1 (>= 0.16), libtasn1-6 (>= 3.4-0), libusbmuxd2 (>= 1.0.8), usbmuxd Pre-Depends: multiarch-support Conflicts: libiphone0 Filename: pool/main/libi/libimobiledevice/libimobiledevice4_1.1.5+git20140313.bafe6a9e-0ubuntu1_i386.deb Size: 54158 MD5sum: 6738d77bc65bc91774a60c20f2a98220 SHA1: b5a6c70e8d6133c19edf61847d197bc1f05c19ca SHA256: 25240f6c9ee50cf86e638f49ddc9df138889df81aaebb23567d74f7610a58c5f Description: Library for communicating with the iPhone and iPod Touch Multi-Arch: same Homepage: http://libimobiledevice.org/ Description-md5: b63dfdd75baa933b181ba059d3cb96a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libimobiledevice4-dbg Priority: extra Section: debug Installed-Size: 965 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libimobiledevice Version: 1.1.5+git20140313.bafe6a9e-0ubuntu1 Replaces: libimobiledevice0-dbg, libimobiledevice1-dbg, libimobiledevice2-dbg, libimobiledevice3-dbg Depends: libimobiledevice4 (= 1.1.5+git20140313.bafe6a9e-0ubuntu1) Conflicts: libimobiledevice0-dbg, libimobiledevice1-dbg, libimobiledevice2-dbg, libimobiledevice3-dbg Filename: pool/main/libi/libimobiledevice/libimobiledevice4-dbg_1.1.5+git20140313.bafe6a9e-0ubuntu1_i386.deb Size: 698476 MD5sum: 6e3b62c7d51605a2da7cdc9ed275e1a2 SHA1: 95988c7b353235c95ad04b5fe6133755cd1cd018 SHA256: 2aff2db21e36a27faad285445f533cf6e61f9169f057c8b06f2673fbc3ba45bb Description: Library for communicating with iPhone and iPod Touch devices Multi-Arch: same Homepage: http://libimobiledevice.org/ Description-md5: d22def284c479ea2fe12faed1fe6c756 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libindicator-dev Priority: optional Section: libdevel Installed-Size: 152 Maintainer: Ubuntu Core Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libindicator Version: 12.10.2+14.04.20140402-0ubuntu1 Depends: libgtk2.0-dev (>= 2.12.0), libindicator7 (= 12.10.2+14.04.20140402-0ubuntu1) Filename: pool/main/libi/libindicator/libindicator-dev_12.10.2+14.04.20140402-0ubuntu1_i386.deb Size: 23922 MD5sum: 7fc146e0ea56cfdc27ee0b412e1c6ddd SHA1: 3a62afd91a62f6852e3e3a567aca1816fb13cf52 SHA256: 82b31eb53aabb696b12fca1cda570a5bca78f307c08d6cf8e5f9ce9cf683c44b Description: panel indicator applet - library development files Homepage: https://launchpad.net/libindicator Description-md5: 6547f70e5e653b96dedc74f65f22e75c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libindicator3-7 Priority: optional Section: libs Installed-Size: 108 Maintainer: Ubuntu Core Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libindicator Version: 12.10.2+14.04.20140402-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.18) Pre-Depends: multiarch-support Filename: pool/main/libi/libindicator/libindicator3-7_12.10.2+14.04.20140402-0ubuntu1_i386.deb Size: 24894 MD5sum: ed86126963c1dcd124e9ab661ac5220f SHA1: fce3dcfa0197a42d7bee3fbd8c860ece905c8c9b SHA256: 3bbcbc69d6c4a522a35e730e3f2909f0c33b2a12ce3c4875c9665aefc57d3b84 Description: panel indicator applet - shared library Homepage: https://launchpad.net/libindicator Description-md5: 646718eb8829a968151e4b7f5f1d7cf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libindicator3-dev Priority: optional Section: libdevel Installed-Size: 173 Maintainer: Ubuntu Core Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libindicator Version: 12.10.2+14.04.20140402-0ubuntu1 Depends: libgtk-3-dev (>= 2.91.3), libindicator3-7 (= 12.10.2+14.04.20140402-0ubuntu1), libindicator-dev (= 12.10.2+14.04.20140402-0ubuntu1) Filename: pool/main/libi/libindicator/libindicator3-dev_12.10.2+14.04.20140402-0ubuntu1_i386.deb Size: 28710 MD5sum: 9f89349af22777f790f59cf737518826 SHA1: 4067b74124c54eda005a9e7764d6ec88667aab38 SHA256: 47153a1c6e09ad841c50ccd81b661b6971d668e7a599c380cf59aaac0cdb6b69 Description: panel indicator applet - library development files Homepage: https://launchpad.net/libindicator Description-md5: 6547f70e5e653b96dedc74f65f22e75c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libindicator7 Priority: optional Section: libs Installed-Size: 96 Maintainer: Ubuntu Core Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: libindicator Version: 12.10.2+14.04.20140402-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.18) Filename: pool/main/libi/libindicator/libindicator7_12.10.2+14.04.20140402-0ubuntu1_i386.deb Size: 20888 MD5sum: 5dd0279901358d0369fae14a8fb42819 SHA1: ced1bb1fba7b7aff0ee7f884adfb54aa9b06db75 SHA256: e5d15c66140f570af3c9d2aac46f62fd4beeaa068379c6136d4420b6fb1b5359 Description: panel indicator applet - shared library Homepage: https://launchpad.net/libindicator Description-md5: 646718eb8829a968151e4b7f5f1d7cf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, lubuntu-desktop, ubuntustudio-video Package: libindirect-perl Priority: optional Section: perl Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.31-1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libi/libindirect-perl/libindirect-perl_0.31-1_i386.deb Size: 23006 MD5sum: 5f7fbf36c1d6addab35a2f6b97754509 SHA1: 1dbf7ad65e608d30ba89171ac6dd664744333361 SHA256: 52cc9935e963195c2f4f6c3bb103a4fb322ed4ad1781c2bf175d62bdad909cf6 Description: module warning about using the indirect object syntax Homepage: https://metacpan.org/release/indirect/ Description-md5: 3ffb604001d21c0133ff0194f9fa3c2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libini-config-dev Priority: extra Section: libdevel Installed-Size: 264 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Depends: libini-config3 (= 0.3.0.1-4), libcollection-dev (= 0.3.0.1-4), libbasicobjects-dev (= 0.3.0.1-4), libref-array-dev (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libini-config-dev_0.3.0.1-4_i386.deb Size: 40378 MD5sum: 11855955aa2a8efbed82f6045bc90319 SHA1: 361302ad6b3975f9cdb977bd1101dc66f536810d SHA256: f55dce3c8f8fb286859439e3db6cbcfa12763183f663778a54b95126a025e20f Description: Development files for libini_config Homepage: https://fedorahosted.org/sssd/ Description-md5: 5417a1b69e9f5ae8705862de07e9f19c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libini-config3 Priority: extra Section: libs Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Replaces: libini-config Provides: libini-config Depends: libbasicobjects0 (>= 0.3.0.1), libc6 (>= 2.4), libcollection2 (>= 0.3.0.1), libpath-utils1 (>= 0.3.0.1), libref-array1 (>= 0.3.0.1) Pre-Depends: multiarch-support Conflicts: libini-config Filename: pool/main/d/ding-libs/libini-config3_0.3.0.1-4_i386.deb Size: 28138 MD5sum: 05335211dcfd941422ccf2806697d531 SHA1: efea7f3f0bc7355a02b9a388236ce0ce970c0c88 SHA256: 4561768fa2e003ab7cd3505d85099b6736f3203a23ff0756478ee899bc0d84f0 Description: INI file parser for C Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 18e540ce8d252bd8878a6eac54a9f38d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libinline-files-perl Priority: optional Section: perl Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.68-1 Depends: perl Filename: pool/main/libi/libinline-files-perl/libinline-files-perl_0.68-1_all.deb Size: 23014 MD5sum: 54157ed63df4c4f745d7e67acef4486c SHA1: 588a815b6dcc8177a987f31b7d109e83a870bd5c SHA256: 066112e07bf0b6354a7dfaac4bb49f0d2b24231b7f0a4e6958783c5d3b556e47 Description: module to handle multiple virtual files at the end of your code Homepage: http://search.cpan.org/dist/Inline-Files/ Description-md5: 84a84ecc0100dbe4de69d27c1e49b74e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libinline-perl Priority: optional Section: perl Installed-Size: 432 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.53-1 Depends: perl, libparse-recdescent-perl Recommends: gcc | c-compiler, libinline-files-perl Filename: pool/main/libi/libinline-perl/libinline-perl_0.53-1_all.deb Size: 162130 MD5sum: 680fc48fe3cc046ca99fabec2ebb3af4 SHA1: f6ffa06094604fa2711cd8ca1d86b511a96fc716 SHA256: ad988895484f307d819f0028eeffe3287c4a04beb75707a899da2c3321a2554f Description: module for producing simple Foreign Function Interfaces Homepage: https://metacpan.org/release/Inline/ Description-md5: c7fb7501a65859f43766ff888076e086 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libintl-perl Priority: optional Section: perl Installed-Size: 4487 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: all Version: 1.23-1build1 Depends: perl Suggests: libintl-xs-perl Filename: pool/main/libi/libintl-perl/libintl-perl_1.23-1build1_all.deb Size: 1203758 MD5sum: ec45deba7513d6ad3f5bcce3d1a64c97 SHA1: d1142283de4fedd3ff51b24a22fdd99c44b82dab SHA256: 5031702250dc4df86898b5060abcfbda6e0e3bb4d428504fdee51dc9e82c57de Description: Uniforum message translations system compatible i18n library Homepage: http://search.cpan.org/dist/libintl-perl/ Description-md5: 094d9efec11965e17ecdcc0ba27ea83e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop Package: libio-dirent-perl Priority: optional Section: perl Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Drolez Architecture: i386 Version: 0.05-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.2) Filename: pool/main/libi/libio-dirent-perl/libio-dirent-perl_0.05-1build1_i386.deb Size: 11258 MD5sum: d0f6f1a8422e7c5f1cbd75a18db0e369 SHA1: 7e1bce220fb626ed5a9d99cdb6935d39187a4af7 SHA256: 0726b340174e69c12c81b3d7fef572f71768e9eddd26893399ce3ef11898e7b8 Description: Perl module for accessing dirent structs returned by readdir Enhances: backuppc Description-md5: 4426ede634bec83a78cc516e17baadca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libio-html-perl Priority: optional Section: perl Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.00-1 Depends: perl Filename: pool/main/libi/libio-html-perl/libio-html-perl_1.00-1_all.deb Size: 15696 MD5sum: 6bf2efdb0837c937e96fa84e6737904c SHA1: ddd152ed10c36849304c72761c1c969433c6c3b6 SHA256: cc2cab1a7266eaed0d1d14ab54b95a2a2d58139ebd93b70fc0c11b4fbb7e15f4 Description: open an HTML file with automatic charset detection Homepage: http://search.cpan.org/dist/IO-HTML/ Description-md5: 471f43a80fc73e4e1ce6eb0885b076de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libio-multiplex-perl Priority: optional Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.13-1 Depends: perl Filename: pool/main/libi/libio-multiplex-perl/libio-multiplex-perl_1.13-1_all.deb Size: 22176 MD5sum: 49897af14966bab89ee183226feb3366 SHA1: a86183d1a6c426f696ffa451a0649a0b368f47ca SHA256: 2757d67b69e0e36aa9bba2670084070d73f23ce3aa19260c3002a76f3482af68 Description: object-oriented interface to select() for Perl Homepage: http://search.cpan.org/dist/IO-Multiplex/ Description-md5: 100ce2443c93e34802825f549f8920db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libio-pty-perl Priority: optional Section: perl Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Jörgen Hägg Architecture: i386 Version: 1:1.08-1build4 Provides: libio-tty-perl Depends: libc6 (>= 2.4), perl (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libi/libio-pty-perl/libio-pty-perl_1.08-1build4_i386.deb Size: 36748 MD5sum: bcab4ea68a6e25b0a79fdc4a6f6a63fe SHA1: 2c94f90690ee9f4e210de692955a47a6e4175cc8 SHA256: bb952bc1fb77da18afa4f9d221932c610251f8ee20757d1938c6d561a1946b69 Description: Perl module for pseudo tty IO Description-md5: 67d23344fd6edf192b38c11f21096f12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libio-socket-inet6-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.71-1 Depends: perl, libsocket6-perl Filename: pool/main/libi/libio-socket-inet6-perl/libio-socket-inet6-perl_2.71-1_all.deb Size: 14564 MD5sum: 01296fc7286aaf5eabd694e605a24246 SHA1: 479f20b2d767dbb0e487f1dc870bce0a0524c770 SHA256: 3c9a6cca788037393b63adfa7cacb79a6ff88a4dc11c4710a66402c5d53448da Description: object interface for AF_INET6 domain sockets Homepage: https://metacpan.org/release/IO-Socket-INET6 Description-md5: 7a58ed8889dee3f56df8e181af173e25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libio-socket-ssl-perl Priority: optional Section: perl Installed-Size: 227 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.965-1ubuntu1 Depends: libnet-ssleay-perl (>= 1.46), netbase, perl Recommends: libio-socket-inet6-perl | libio-socket-ip-perl (>= 0.20), libnet-libidn-perl | liburi-perl, perl (>= 5.15.6) | libsocket-perl (>= 1.950) | libsocket6-perl Filename: pool/main/libi/libio-socket-ssl-perl/libio-socket-ssl-perl_1.965-1ubuntu1_all.deb Size: 73704 MD5sum: bb4b971bf399663961550f78200b1408 SHA1: a222edfb5361ce9269d2326aa1c38ee7a13bd447 SHA256: bd45ee3c816c2308bfac13cf142d7f44469e48a6bfa5eaeb8f88106e79304b8c Description: Perl module implementing object oriented interface to SSL sockets Homepage: https://metacpan.org/release/IO-Socket-SSL/ Description-md5: 94b103d5ed493e8750e3468ca2e11309 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libio-string-perl Priority: optional Section: perl Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.08-3 Depends: perl Filename: pool/main/libi/libio-string-perl/libio-string-perl_1.08-3_all.deb Size: 11124 MD5sum: 0ac0244ea24f2c5681005aa95e0c8318 SHA1: d9f851ceca82313a73815a0e820db7541ec9a9fc SHA256: 397c6dba8b3a51be53fd767892c93a9ec3335ce2844c235aae1519617c1d8cc5 Description: Emulate IO::File interface for in-core strings Homepage: https://metacpan.org/release/IO-String/ Description-md5: d0f30c36190caa285cda4e17606d2aa3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libio-stringy-perl Priority: optional Section: perl Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Bart Martens Architecture: all Source: io-stringy Version: 2.110-5 Depends: perl Filename: pool/main/i/io-stringy/libio-stringy-perl_2.110-5_all.deb Size: 93522 MD5sum: ef856eca5365345aabdaa3c203983f96 SHA1: b98da830a5817bc3a993e53378c7d3de219913d5 SHA256: 3cb54d9f8bc037225f6d93eb2daf11439cfe199a30427efa840f6a4bf0806514 Description: Perl modules for IO from scalars and arrays Homepage: http://search.cpan.org/dist/IO-stringy/ Description-md5: 2d3649a7290a98451a0d6f6971b53e03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libiodbc2 Priority: optional Section: libs Installed-Size: 486 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Version: 3.52.7-3.1 Depends: libc6 (>= 2.4) Suggests: iodbc (= 3.52.7-3.1) Filename: pool/main/libi/libiodbc2/libiodbc2_3.52.7-3.1_i386.deb Size: 129320 MD5sum: d479cb082c68b26117d3ef0c5066b7ae SHA1: ee3a829edb8e517f9635f40072deeca590b2534c SHA256: ace419d95b881386ba862201b74b6afa4745d31e4d926167abcf7b4bb9626bcd Description: iODBC Driver Manager Homepage: http://www.iodbc.org/ Description-md5: 28db562dffbe690878759315a006f3df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libiodbc2-dev Priority: optional Section: libdevel Installed-Size: 1542 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: libiodbc2 Version: 3.52.7-3.1 Depends: libiodbc2 (= 3.52.7-3.1) Conflicts: iodbc (<= 3.52.6-1), libiodbc2 (<= 3.52.6-1) Filename: pool/main/libi/libiodbc2/libiodbc2-dev_3.52.7-3.1_i386.deb Size: 250048 MD5sum: 5fb666f039c87057af5cb70eb62b7f23 SHA1: 103afd0b48cfa670d1f9c81b8dd14d7f19efe02c SHA256: 8ca4b43e873f6a24d977bbf50babf833c222d4f79460a4cc0a5a9a5b71cda1aa Description: iODBC Driver Manager (development files) Homepage: http://www.iodbc.org/ Description-md5: d130ba790976d31df335175ab1a2c1f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipa-hbac-dev Priority: extra Section: libdevel Installed-Size: 67 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libipa-hbac0 (= 1.11.5-1ubuntu3) Filename: pool/main/s/sssd/libipa-hbac-dev_1.11.5-1ubuntu3_i386.deb Size: 6282 MD5sum: 7dd5d00a406e4b8524e1d9b76f9aeaa1 SHA1: f116ee86fd01e3a7bdadca4a98b2ad806a67e168 SHA256: 1b469c13293043b693dc5f09e07149c7ba4740bf6299484e1297e88de72383b1 Description: FreeIPA HBAC Evaluator library Homepage: https://fedorahosted.org/sssd/ Description-md5: 6c1dbd1961a1dd6410e5f5b68ec9e8a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipa-hbac0 Priority: extra Section: libs Installed-Size: 61 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.12.0) Filename: pool/main/s/sssd/libipa-hbac0_1.11.5-1ubuntu3_i386.deb Size: 8640 MD5sum: b230f91e07d4a22b8886e415e1888c12 SHA1: 7c10340db9a00b3da2942369b4cbd59741eae6ac SHA256: 4d9d5f0e55813c29d95238d5dc51bb828f817ebd52d3850243db3b8c0402ac18 Description: FreeIPA HBAC Evaluator library Homepage: https://fedorahosted.org/sssd/ Description-md5: 03e6128075af8f51f143ba66443a79ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipc-run-perl Priority: optional Section: perl Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.92-1 Depends: perl, libio-pty-perl Filename: pool/main/libi/libipc-run-perl/libipc-run-perl_0.92-1_all.deb Size: 100580 MD5sum: 1f7b717b9ed398ff4965ddce80ea9d8f SHA1: 13789ac2c3a1bf2fed9df6b642e29c03e4549574 SHA256: 14329a9927390d822d8be044e9097bba3a25cb03e3b14821682f348d16d9eb50 Description: Perl module for running processes Homepage: http://search.cpan.org/dist/IPC-Run/ Description-md5: 7be22cc2721eed4c7b8e422ca5d87022 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libipc-run3-perl Priority: extra Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.046-1 Depends: perl Filename: pool/main/libi/libipc-run3-perl/libipc-run3-perl_0.046-1_all.deb Size: 36096 MD5sum: 6a180b4757d5a47a9b65de8183f63d1f SHA1: f745246f79987c531e3c80b156481adb8c5be06d SHA256: 48c7cfc0a0143c4c7fac086951c782f8d0b17b1e3b4de843dcf9f9793f34613f Description: run a subprocess with input/ouput redirection Homepage: https://metacpan.org/release/IPC-Run3/ Description-md5: 0722ca7dea3ff02ff67c47607f5d8569 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipc-sharedcache-perl Priority: optional Section: perl Installed-Size: 104 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.3-8 Depends: libipc-sharelite-perl, perl (>= 5.6.0-16) Filename: pool/main/libi/libipc-sharedcache-perl/libipc-sharedcache-perl_1.3-8_all.deb Size: 25288 MD5sum: 0f92d8d5bae252355b8ca9465ad1246c SHA1: daf1d15534b7af892b01d4ac45d180a35fdd019e SHA256: a13b8434a71a9cefb66870c9895c2f9d9ca93db846b625e2eae615f9c364188e Description: module to manage a cache in SysV IPC shared memory Homepage: http://search.cpan.org/dist/IPC-SharedCache/ Description-md5: e07dcfb09218eb11f0c3bb82576df5f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipc-sharelite-perl Priority: optional Section: perl Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.17-3build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4) Filename: pool/main/libi/libipc-sharelite-perl/libipc-sharelite-perl_0.17-3build1_i386.deb Size: 25104 MD5sum: c640b35a459fe6d2522ed1ad16983c1e SHA1: d71e4d4309b685a60737aca46f7ee2bf39105165 SHA256: a6e22ca533c9a1140873521bf2a6d43b9afae00804c3fcccc9ad34f91f31d785 Description: Perl module that provides a simple interface to shared memory Homepage: http://search.cpan.org/dist/IPC-ShareLite/ Description-md5: e0f47672ecd9c103037aadbb8a17d74f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipc-signal-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Roderick Schertler Architecture: all Version: 1.00-6 Depends: perl (>= 5.6.0-16) Filename: pool/main/libi/libipc-signal-perl/libipc-signal-perl_1.00-6_all.deb Size: 7016 MD5sum: f4055816f432f532b76d640d1ac8a0f8 SHA1: 3fc1dc6a6e5cfd069c50d4675f16a89af5be2012 SHA256: 06d5460c6cd6899c3d0b9b494fe2c811eb563a0ee9a197a18617e20800025cf5 Description: utility functions dealing with signals for Perl Description-md5: 4c67b23ecdfba7046bc13dbfaefbdc78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libipc-system-simple-perl Priority: optional Section: perl Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.25-2 Depends: perl Filename: pool/main/libi/libipc-system-simple-perl/libipc-system-simple-perl_1.25-2_all.deb Size: 24528 MD5sum: 702b8163699a7ce3f2b04ec9e89924c1 SHA1: c2d47b7cfff5f64441a0390dce5896b0563711ac SHA256: 82a378452cc186d33ffa211b2aa8ca826d9320975ca311a1aa5bf534f9050382 Description: Perl module to run commands simply, with detailed diagnostics Homepage: https://metacpan.org/release/IPC-System-Simple/ Description-md5: 60342b37a1e4a39a76ddcd5bdc51cc21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libipmiconsole-dev Priority: extra Section: libdevel Installed-Size: 576 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: i386 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libipmiconsole2 (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libipmiconsole-dev_1.1.5-3ubuntu3_i386.deb Size: 99514 MD5sum: 31d4878557994351f79c509a766187fa SHA1: 54af323c5939f0048784883d0690a95e715bc8d3 SHA256: 0c9beb87ccc617f5fe1e06249e6e41451e00fdee1a791ae4e06d91a184d7c982 Description: GNU IPMI - ipmiconsole development package Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: 165d37f1ff27840c811186d69e5990cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipmiconsole2 Priority: extra Section: libs Installed-Size: 427 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: i386 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libc6 (>= 2.15), libfreeipmi12 (>= 1.1.5) Filename: pool/main/f/freeipmi/libipmiconsole2_1.1.5-3ubuntu3_i386.deb Size: 78098 MD5sum: d8031f7287dbabcb3143d0cd1d4a268e SHA1: f6b9e7376609d2f59276e49d4ad60f52e5602709 SHA256: 65750c428c54dac622881fe98146b9739b568b6d27da527a495a982258475d5f Description: GNU IPMI - Serial-over-Lan library Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: d797fcb20a528d5be709254b16cbad80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libipmidetect-dev Priority: extra Section: libdevel Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: i386 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libipmidetect0 (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libipmidetect-dev_1.1.5-3ubuntu3_i386.deb Size: 33392 MD5sum: 00d702f185ea7b1d6b1d562c5486cc48 SHA1: 5991a8a5a224d8a187212e630f85513b420a9891 SHA256: 0fd3c244edee2fd972958405934b9a6d0dbfeb51db186c93576a2d91677f17e7 Description: GNU IPMI - ipmidetect development package Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: 656d83b3185878f4432cb27f725c60aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipmidetect0 Priority: extra Section: libs Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: i386 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libc6 (>= 2.15), freeipmi-common (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libipmidetect0_1.1.5-3ubuntu3_i386.deb Size: 27686 MD5sum: ba4aa533854ae4908ce79e6fbf0661be SHA1: 5171dca313c0443421a0add7b3f80ecc2f3d5e15 SHA256: fd33da3ac9607e60922a3359376db7d5cda86f29b70d0efccbb5e463cce2c37f Description: GNU IPMI - IPMI node detection library Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: ecbecbb0ee12c205e71a71410cd298b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libipmimonitoring-dev Priority: extra Section: libdevel Installed-Size: 464 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: i386 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libipmimonitoring5 (= 1.1.5-3ubuntu3) Filename: pool/main/f/freeipmi/libipmimonitoring-dev_1.1.5-3ubuntu3_i386.deb Size: 72554 MD5sum: 021190697ccd0b9068dfd12c3e04c0a8 SHA1: 99992ad9f8466798bf1667beb48cbb1448efe29d SHA256: bd1b8b86416557ff365cea276331fd32671b7bce475741685363c4553e535272 Description: GNU IPMI - ipmimonitoring development package Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: ef86e1418697f9920e03b6c081ea574c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libipmimonitoring5 Priority: extra Section: libs Installed-Size: 309 Maintainer: Ubuntu Developers Original-Maintainer: Yaroslav Halchenko Architecture: i386 Source: freeipmi Version: 1.1.5-3ubuntu3 Depends: libc6 (>= 2.4), libfreeipmi12 (>= 1.1.5) Filename: pool/main/f/freeipmi/libipmimonitoring5_1.1.5-3ubuntu3_i386.deb Size: 42436 MD5sum: e553d44dc0499b67b4127ca0d083c281 SHA1: 49c16658d908d8c322adf2d5566be9d0fd86690b SHA256: caf4cf9e0512ac2733b7b8d8a7e16658f6171e925fb5f1d123d6d7fe4d4b68cd Description: GNU IPMI - Sensor monitoring library Homepage: http://www.gnu.org/software/freeipmi/ Description-md5: 0a4db39f4e386980a01c401d301b0411 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libirman-dev Priority: optional Section: libdevel Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: lirc Maintainer Team Architecture: i386 Source: libirman Version: 0.4.4-2build3 Depends: libc6-dev Filename: pool/main/libi/libirman/libirman-dev_0.4.4-2build3_i386.deb Size: 36858 MD5sum: 4e7f732b4bf287b459643af4b2c250bc SHA1: 40249f0b6caa8e2ac2f4ebb2aa3cca9d34614c8a SHA256: 16c4595cbb087ca4233ef3088e261f37a2f18ed75beb0a85a14def5cf2187a3c Description: library for accessing the Irman Infra Red hardware Description-md5: d9890e509cbe93a3714d8bc7e9193e80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisc95 Priority: standard Section: libs Installed-Size: 451 Maintainer: LaMont Jones Architecture: i386 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.15), libxml2 (>= 2.7.4) Conflicts: libbind0, libbind9-41 Filename: pool/main/b/bind9/libisc95_9.9.5.dfsg-3_i386.deb Size: 143304 MD5sum: 7dd4baf90ebfb2dd68fbd3601de12469 SHA1: a8468b91a967191b5e17c0ca4fee72517c780294 SHA256: 4fa416d447bcf164431380f0fea9ba6abac898a14d610fe3b02e66c2e96c3062 Description: ISC Shared Library used by BIND Description-md5: 538f08c974b457d9907e201f70a51533 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libisccc90 Priority: standard Section: libs Installed-Size: 86 Maintainer: LaMont Jones Architecture: i386 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.4), libisc95 Conflicts: libbind0, libbind9-41 Filename: pool/main/b/bind9/libisccc90_9.9.5.dfsg-3_i386.deb Size: 15576 MD5sum: bf1180a24938501e566bef0394a1fa8f SHA1: e88496a6ca98c0e416495649a9ec0d62c6887a2a SHA256: 4b789b02730f97c7bf0ec3118767c4c1929107526af0df70a641094fb15e054b Description: Command Channel Library used by BIND Description-md5: c7785673bc5b2dfed3c5bcee1452c16c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libisccfg90 Priority: standard Section: libs Installed-Size: 149 Maintainer: LaMont Jones Architecture: i386 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.4), libdns100, libisc95, libisccc90 Conflicts: libbind0, libbind9-41 Filename: pool/main/b/bind9/libisccfg90_9.9.5.dfsg-3_i386.deb Size: 33742 MD5sum: 4275de6657f69636c3a4229988e7441b SHA1: 2f0051ff0ccb239a710b0a6c779fff802b5b5b77 SHA256: 65ed086b51e1c7eca8223c593a3d13a18d42377ff36b0c2b06da972eaa9c3d8b Description: Config File Handling Library used by BIND Description-md5: d214b6bf2b32d3830998548c9fa53da4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libisl-dbg Priority: extra Section: debug Installed-Size: 2543 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: isl Version: 0.12.2-1 Replaces: libisl-dev (<< 0.08) Depends: libisl10 (= 0.12.2-1) Filename: pool/main/i/isl/libisl-dbg_0.12.2-1_i386.deb Size: 823774 MD5sum: 66c6354fea16a7c05443307efe664b8b SHA1: f45b5b3fc3a074d8e9e8770cb310fad6fdfa438d SHA256: 2b70269d2482ad1edcc878620fa048a713d5c2754bb9fdf8c84021c0ce7badf4 Description: manipulating sets and relations of integer points bounded by linear constraints Multi-Arch: same Homepage: http://freecode.com/projects/isl Description-md5: eb308232fbc7715c4bcb245dd94db7e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisl-dev Priority: optional Section: libdevel Installed-Size: 1931 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: isl Version: 0.12.2-1 Depends: libisl10 (= 0.12.2-1) Filename: pool/main/i/isl/libisl-dev_0.12.2-1_i386.deb Size: 434570 MD5sum: 15e3951e980dff649714e07749d17466 SHA1: 6c9e7e95f81a3381495ace419336894532c3e8d4 SHA256: 11bbeb833488aead46d5c2d22c7f5bc8d15c56b0969005aaf79ef7b596284345 Description: manipulating sets and relations of integer points bounded by linear constraints Multi-Arch: same Homepage: http://freecode.com/projects/isl Description-md5: 9330fbca4463124a77a29e9568838474 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisl10 Priority: optional Section: libs Installed-Size: 1389 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: isl Version: 0.12.2-1 Depends: libc6 (>= 2.4), libgmp10 Pre-Depends: multiarch-support Breaks: libcloog-isl4 (<< 0.18.1) Filename: pool/main/i/isl/libisl10_0.12.2-1_i386.deb Size: 429576 MD5sum: e60e9ea5f457d3a0b965a545a97b191d SHA1: ef13131ea048eaec4b104e9d24b1530f40ada92e SHA256: 9bd34b51be1360525f5854f683ae8ae01e31159775c918a96d3eedf5aa9d66e9 Description: manipulating sets and relations of integer points bounded by linear constraints Multi-Arch: same Homepage: http://freecode.com/projects/isl Description-md5: b718cf54a9174f62d55d1d78f6212d22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libisoburn-dbg Priority: extra Section: libdevel Installed-Size: 1788 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: i386 Source: libisoburn Version: 1.3.2-1ubuntu1 Depends: libisoburn1 (= 1.3.2-1ubuntu1), libisofs-dbg, libburn-dbg Filename: pool/main/libi/libisoburn/libisoburn-dbg_1.3.2-1ubuntu1_i386.deb Size: 534944 MD5sum: 984b5c50a02e658697b9fa8c565434c3 SHA1: a2e9498574ddc504ebabcf4c00944b08e49e8f38 SHA256: d1ed306e3bbcb488fe0807a953220ffd7249a10d8a8851eedf60dc31fb181520 Description: debugging symbols for libisoburn and xorriso Homepage: http://libburnia-project.org Description-md5: 18c4f58ad14cf4b1bf235231ba53d486 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisoburn-dev Priority: optional Section: libdevel Installed-Size: 1369 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: i386 Source: libisoburn Version: 1.3.2-1ubuntu1 Depends: libisoburn1 (= 1.3.2-1ubuntu1), libisofs-dev, libburn-dev Suggests: libisoburn-doc (= 1.3.2-1ubuntu1) Filename: pool/main/libi/libisoburn/libisoburn-dev_1.3.2-1ubuntu1_i386.deb Size: 367888 MD5sum: 8a77438db6f15983c42957ccedf68d13 SHA1: 5dc3a0fc217b1e253beb64bcc2bcbc6cb775f02f SHA256: 54bcec0b62782227896739b6ffbfedc28c8217b89445a494c8e4b7ce0b66bd87 Description: development package for libisoburn Homepage: http://libburnia-project.org Description-md5: 5a17e6f2ad8113f8cb9e0a64b070b238 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisoburn-doc Priority: optional Section: doc Installed-Size: 936 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: all Source: libisoburn Version: 1.3.2-1ubuntu1 Filename: pool/main/libi/libisoburn/libisoburn-doc_1.3.2-1ubuntu1_all.deb Size: 91512 MD5sum: 17e612d27babdd352a17d898712045b5 SHA1: 32991316efbd887942fb72a22b01bbe65a28e9a6 SHA256: 6ce8405095d223d4b5fcca4bf1203c86466f80f8bd2c78f6386c9bb8cd456a87 Description: documentation package for libisoburn Homepage: http://libburnia-project.org Description-md5: 8d1fc29a0624bf904b0576512a169982 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisoburn1 Priority: optional Section: libs Installed-Size: 966 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: i386 Source: libisoburn Version: 1.3.2-1ubuntu1 Depends: libburn4 (>= 1.3.4), libc6 (>= 2.15), libisofs6 (>= 1.3.2), libjte1, libreadline6 (>= 6.0) Filename: pool/main/libi/libisoburn/libisoburn1_1.3.2-1ubuntu1_i386.deb Size: 324332 MD5sum: 21f9cd64f9c083265bd469b632424d68 SHA1: 308c47ba2afc7c1ace453097cc6c39a6fe1d5bfd SHA256: 04e7316059c38365c7ca1cbdf61b210e9a9f70fe5b30b4c833c997abd75ea9ab Description: library to handle creation and inspection of ISO-9660 file systems Homepage: http://libburnia-project.org Description-md5: 6a395ae19a1d23d67d1be2438b0799a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisofs-dbg Priority: extra Section: libdevel Installed-Size: 902 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: i386 Source: libisofs Version: 1.3.4-0ubuntu1 Depends: libisofs6 (= 1.3.4-0ubuntu1) Filename: pool/main/libi/libisofs/libisofs-dbg_1.3.4-0ubuntu1_i386.deb Size: 292944 MD5sum: 6ab6071929361a4a7b2b4ae5f68d5186 SHA1: 0722d75a0d50917a4d25418e37589f09435b63e0 SHA256: b53bd07aef9597ab9658c63cb9443d620b62c7ef5cbbaba1f51cac9f0362c7ef Description: debugging symbols for libisofs Homepage: http://libburnia-project.org Description-md5: 5278f31c587d84269fe4fc962d372db0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisofs-dev Priority: optional Section: libdevel Installed-Size: 770 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: i386 Source: libisofs Version: 1.3.4-0ubuntu1 Depends: libisofs6 (= 1.3.4-0ubuntu1), zlib1g-dev, libacl1-dev, libattr1-dev Suggests: libisofs-doc (= 1.3.4-0ubuntu1) Filename: pool/main/libi/libisofs/libisofs-dev_1.3.4-0ubuntu1_i386.deb Size: 207542 MD5sum: bff978faed9d371e99729c9f623847cc SHA1: d821da9ece3ed9f524fb10d1e01c481f5e867302 SHA256: f9b3144a8c8d9badddac4343382fa5b68aeb0ed98718730d1872565b02049c7c Description: development package for libisofs Homepage: http://libburnia-project.org Description-md5: 14fa421b05518b610da64050ce5cce57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisofs-doc Priority: optional Section: doc Installed-Size: 2872 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: all Source: libisofs Version: 1.3.4-0ubuntu1 Filename: pool/main/libi/libisofs/libisofs-doc_1.3.4-0ubuntu1_all.deb Size: 262688 MD5sum: 7a093de28a311ab61200a6c83274d07e SHA1: 879f56a8fff1add274db37635d7145db51f884eb SHA256: 2dac1ed09e02b0c0f93d2d6b05c89500a87767eeabe210c5a8d5ec9dad000b2f Description: API documentation for libisofs library Homepage: http://libburnia-project.org Description-md5: e7db716b9b8c55c3c15818dba25fee40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libisofs6 Priority: optional Section: libs Installed-Size: 411 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: i386 Source: libisofs Version: 1.3.4-0ubuntu1 Depends: libacl1 (>= 2.2.51-8), libc6 (>= 2.4), libjte1, zlib1g (>= 1:1.2.0) Filename: pool/main/libi/libisofs/libisofs6_1.3.4-0ubuntu1_i386.deb Size: 156042 MD5sum: 4faf63207ef8ec9bb3936af3d2bf07af SHA1: e3f717077275e813e653daf9979dbb4f1923c503 SHA256: c23371c9da771d848f02c22a4b7dabe8540c3dcdb454b19b3d8eebc671b3d7a4 Description: library to create ISO9660 images Homepage: http://libburnia-project.org Description-md5: a1e54b63fb915ff5f97ef43aae397797 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libitm1 Priority: optional Section: libs Installed-Size: 147 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.3.6-6~) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libitm1_4.8.2-19ubuntu1_i386.deb Size: 28502 MD5sum: 29bfce06b049c13266aecba7b0a1e1c9 SHA1: 18ebf6008ec50557a42c91beb2d96556b6eb780e SHA256: eb1bea8e673164e5f6f957271503d3d7f09f07677ab683a07916334150981345 Description: GNU Transactional Memory Library Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 353dc4001cbe783e9f0a27c29f5dc3b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libitm1-dbg Priority: extra Section: debug Installed-Size: 859 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libitm1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libitm1-dbg_4.8.2-19ubuntu1_i386.deb Size: 177880 MD5sum: 6c3415a659cf2d6d44c20d4c0fbccec7 SHA1: 3eaae68c2eb766fe4d9221e82acd6b25a008c269 SHA256: a66797a4172c348b1150e849fad4835062efaddc99c5b3150f88071a85e54dfa Description: GNU Transactional Memory Library (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 41462d1cfcabe3bd47bcd28353e14894 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libitm1-ppc64el-cross Priority: extra Section: devel Installed-Size: 187 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6-ppc64el-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libitm1-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 28348 MD5sum: 74f567628f270db13012b0bbf70d2eb5 SHA1: 714c1a9e8a72b746f932d59375f7c8c44313ae4e SHA256: 45007336112e448142f8ee71cc8c035e263c04f9a149842d64f4d74fb1ff76b5 Description: GNU Transactional Memory Library Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 353dc4001cbe783e9f0a27c29f5dc3b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libiw-dev Priority: extra Section: libdevel Installed-Size: 153 Maintainer: Ubuntu Core Developers Original-Maintainer: Guus Sliepen Architecture: i386 Source: wireless-tools Version: 30~pre9-8ubuntu1 Depends: libiw30 (= 30~pre9-8ubuntu1), libc6-dev Filename: pool/main/w/wireless-tools/libiw-dev_30~pre9-8ubuntu1_i386.deb Size: 38880 MD5sum: 4f2357721809ecd680a4c9609f250ed9 SHA1: 10aa62e228a43491a2b162218a6aa49fab7fd003 SHA256: 1fba3a0787d30bbbd1b2a40376f92ffb27f1733dc182c3a119321a4c7c28e273 Description: Wireless tools - development files Multi-Arch: same Homepage: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html Description-md5: d036482ad716eb508c40fc614600d60f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libiw30 Priority: extra Section: libs Installed-Size: 89 Maintainer: Ubuntu Core Developers Original-Maintainer: Guus Sliepen Architecture: i386 Source: wireless-tools Version: 30~pre9-8ubuntu1 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/w/wireless-tools/libiw30_30~pre9-8ubuntu1_i386.deb Size: 20248 MD5sum: 2cd4620611101dac20762cdbda5d1053 SHA1: c093168c447a16408ab80678d2dc4ce23194f2c5 SHA256: a7a87de29872efa5a23930a68861496c3754ab38b6c7bfc6e1667ce155fd63b2 Description: Wireless tools - library Multi-Arch: same Homepage: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html Description-md5: 5e48c037049910f72132dd4fdb9713a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjack-dev Priority: optional Section: libdevel Installed-Size: 1767 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: jack-audio-connection-kit Version: 1:0.121.3+20120418git75e3e20b-2.1ubuntu1 Provides: libjack-dev-session, libjack0.100.0-dev Depends: libjack0 (= 1:0.121.3+20120418git75e3e20b-2.1ubuntu1), pkg-config Filename: pool/main/j/jack-audio-connection-kit/libjack-dev_0.121.3+20120418git75e3e20b-2.1ubuntu1_i386.deb Size: 339286 MD5sum: 9192a0a5383350ca6fb61a446084409d SHA1: e1a1f4be46352a9a412a94e055a49c733d679911 SHA256: db2b0b2260560dbecee3624436c577d0516512f9cb82d25b8fb67c3e15996960 Description: JACK Audio Connection Kit (development files) Homepage: http://jackaudio.org/ Description-md5: 5769772c9db90298e719eeef115bed03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjack-jackd2-0 Priority: optional Section: libs Installed-Size: 558 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: jackd2 Version: 1.9.9.5+20130622git7de15e7a-1ubuntu1 Replaces: libjack-0.116 Provides: libjack-0.116 Depends: libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libsamplerate0 (>= 0.1.7), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Suggests: jackd2 (= 1.9.9.5+20130622git7de15e7a-1ubuntu1) Conflicts: jackd2 (>> 1.9.9.5+20130622git7de15e7a-1ubuntu1), jackd2 (<< 1.9.9.5+20130622git7de15e7a-1ubuntu1), libjack-0.116, libjack0 Filename: pool/main/j/jackd2/libjack-jackd2-0_1.9.9.5+20130622git7de15e7a-1ubuntu1_i386.deb Size: 180408 MD5sum: d0082b70d36dbd01c280c4fa92730e90 SHA1: 7e58079eca6e1e0d87db2e7d81cde20896def263 SHA256: 55808474b40ce51d9ce178b02f98050a48b12df3bf47a83fd889bd1babecab26 Description: JACK Audio Connection Kit (libraries) Multi-Arch: same Homepage: http://jackaudio.org/ Description-md5: f4743a9e2f04ed05673483cd1fe0eb38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libjack-jackd2-dev Priority: optional Section: libdevel Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: jackd2 Version: 1.9.9.5+20130622git7de15e7a-1ubuntu1 Replaces: libjack0.71.2-0 (<< 0.75.0-1) Provides: libjack-dev, libjack-dev-session, libjack0.100.0-dev Depends: libjack-jackd2-0 (= 1.9.9.5+20130622git7de15e7a-1ubuntu1), pkg-config, libdbus-1-dev Conflicts: libjack-dev, libjack0.100.0-dev (<< 0.102.20-2) Filename: pool/main/j/jackd2/libjack-jackd2-dev_1.9.9.5+20130622git7de15e7a-1ubuntu1_i386.deb Size: 45286 MD5sum: 36e87551e40d604723f7ffae19b8d128 SHA1: c5d9c74f257b131b3ede06d3f4e5f85f9cb98472 SHA256: 753086edc7c00b931ee5a9d9e092d3540951d754dff4a7496fbe3fdaa8ff10b1 Description: JACK Audio Connection Kit (development files) Multi-Arch: same Homepage: http://jackaudio.org/ Description-md5: 5769772c9db90298e719eeef115bed03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjack0 Priority: optional Section: libs Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: jack-audio-connection-kit Version: 1:0.121.3+20120418git75e3e20b-2.1ubuntu1 Replaces: libjack-0.116 Provides: libjack-0.116 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Suggests: jackd1 (= 1:0.121.3+20120418git75e3e20b-2.1ubuntu1) Conflicts: jackd1 (>> 1:0.121.3+20120418git75e3e20b-2.1ubuntu1), jackd1 (<< 1:0.121.3+20120418git75e3e20b-2.1ubuntu1), libjack-0.116 Filename: pool/main/j/jack-audio-connection-kit/libjack0_0.121.3+20120418git75e3e20b-2.1ubuntu1_i386.deb Size: 42052 MD5sum: 76b3466ac8094e98f0bf62d368c0ae3e SHA1: e58333ff8f167218909d928b3f79a0fa0b904abf SHA256: c2e1ba5cbfe2138d19d5be055f76e76a513e115bd3e0646b48c68a75c3c048d3 Description: JACK Audio Connection Kit (libraries) Multi-Arch: same Homepage: http://jackaudio.org/ Description-md5: f4743a9e2f04ed05673483cd1fe0eb38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjakarta-taglibs-standard-java Priority: optional Section: java Installed-Size: 359 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jakarta-taglibs-standard Version: 1.1.2-2ubuntu1 Depends: libxalan2-java Filename: pool/main/j/jakarta-taglibs-standard/libjakarta-taglibs-standard-java_1.1.2-2ubuntu1_all.deb Size: 275824 MD5sum: d8285e59e04df29b5413c1487c1dcf99 SHA1: c0e56663649206c7e4d4f9c209754c2a53fd80d7 SHA256: 96579ded1f6f7204e32b386d9631be1471e26c4a6a8785aeab864b54af0f6e63 Description: Implementation of JSP Standard Tag Library (JSTL) Homepage: http://tomcat.apache.org/taglibs/standard/ Description-md5: 13088629aac3e2957c5bf2f28b8174e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libjargs-java Priority: optional Section: libs Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jargs Version: 1.0.0-4 Suggests: libjargs-java-doc Filename: pool/main/j/jargs/libjargs-java_1.0.0-4_all.deb Size: 14272 MD5sum: bc2f36eb3c57d5dd1cf276c75502d7e7 SHA1: 9b086aad3ff30dacfd8062b778d766bd7b5f4ff5 SHA256: 99f70549c5d068003e09c3bd30af09812152250e3141fddede84c0695591fa0d Description: Command-line argument parsing for Java Homepage: http://jargs.sourceforge.net/ Description-md5: a630e71d4aaa46b69ac6d7342f6fd3c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjargs-java-doc Priority: optional Section: doc Installed-Size: 705 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jargs Version: 1.0.0-4 Recommends: default-jdk-doc Suggests: libjargs-java Filename: pool/main/j/jargs/libjargs-java-doc_1.0.0-4_all.deb Size: 41314 MD5sum: 8e4e7c14221606b1ce479d767eafdb6d SHA1: f373f28938a7ade352850d09da371aa267c4a3ad SHA256: 653ad5350b95b1415fbea7915ed2abe7ea44d5390f1e3952fdf626b4f467d9e3 Description: Command-line argument parsing for Java - documentation Homepage: http://jargs.sourceforge.net/ Description-md5: 8f880194de6fb14b8a5db9d7f13f00b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjarjar-java Priority: optional Section: libs Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jarjar Version: 1.4+svn142-3 Filename: pool/main/j/jarjar/libjarjar-java_1.4+svn142-3_all.deb Size: 119034 MD5sum: 18ebd10e1143ba54de1563a9d031d4a9 SHA1: 7eea7657590192fd9cd42bfbf881a87cb3545b30 SHA256: 45b5d65c013e90bf78d2122418a21052b1331b090af461bbc13723deb22bd194 Description: repackage third-party jars Homepage: http://code.google.com/p/jarjar/ Description-md5: 742dfa8deee489d10634651524a940b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjarjar-java-doc Priority: optional Section: doc Installed-Size: 697 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jarjar Version: 1.4+svn142-3 Suggests: libjarjar-java Filename: pool/main/j/jarjar/libjarjar-java-doc_1.4+svn142-3_all.deb Size: 58572 MD5sum: a9fc63e6e94397edff626f113274ae37 SHA1: 1c61301e65f3696e454aea870517689d1a07cbd7 SHA256: bf44dd00f546ab863841274ff64130f148ceae2c2c4c5ecb0c73f11d01dbaee4 Description: repackage third-party jars - documentation Homepage: http://code.google.com/p/jarjar/ Description-md5: 6694694da80d7f45738eda42d30b87b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjasper-dev Priority: optional Section: libdevel Installed-Size: 981 Maintainer: Ubuntu Developers Original-Maintainer: Roland Stigge Architecture: i386 Source: jasper Version: 1.900.1-14ubuntu3 Replaces: libjasper-1.700-2-dev Depends: libjasper1 (= 1.900.1-14ubuntu3) Conflicts: libjasper-1.700-2-dev Filename: pool/main/j/jasper/libjasper-dev_1.900.1-14ubuntu3_i386.deb Size: 516856 MD5sum: 012aa2fb7ea2119acd9162024f9a7497 SHA1: c2d757fbea2bc66e46ac076922416da7d5c09634 SHA256: 6d96e3fb10f8154c6a780ebd40b40f8c4f2a9334892fae4beb9e98f94c0ecff6 Description: Development files for the JasPer JPEG-2000 library Description-md5: cffe1269c80cd3e31782da0e12e80b0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjasper1 Priority: optional Section: libs Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Roland Stigge Architecture: i386 Source: jasper Version: 1.900.1-14ubuntu3 Replaces: libjasper-1.700-2 Depends: libc6 (>= 2.7), libjpeg8 (>= 8c) Pre-Depends: multiarch-support Suggests: libjasper-runtime Conflicts: libjasper-1.700-2 Filename: pool/main/j/jasper/libjasper1_1.900.1-14ubuntu3_i386.deb Size: 126196 MD5sum: e13cd636d5b275480492d76c3ae3ce25 SHA1: 3ce9e324353e9927d0227d8f4ba8c09ae1f14ac0 SHA256: ad0c8cbc9c04f7cf1f876f1e311cd69dc7fcb6bd3f9def0a2201581793fb57b2 Description: JasPer JPEG-2000 runtime library Multi-Arch: same Description-md5: ad351750d947ec6dd6e2443143ae9b0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjavascript-minifier-xs-perl Priority: optional Section: perl Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.09-2build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.3) Filename: pool/main/libj/libjavascript-minifier-xs-perl/libjavascript-minifier-xs-perl_0.09-2build1_i386.deb Size: 15140 MD5sum: ff7543c2772b7bd2ecd6941d786c3609 SHA1: 043f29bb7af0ad326eb1fe60b3eee6080d081820 SHA256: d74853308d74a84476d1cb4d8834d912aa24f488364ec21f67122b4d171e1070 Description: XS based JavaScript minifier Homepage: https://metacpan.org/release/JavaScript-Minifier-XS/ Description-md5: 67deb10ad1008e60a85325f6d3cdfd39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjavascriptcoregtk-1.0-0 Priority: optional Section: libs Installed-Size: 6727 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.36.0), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.8.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-1.0-0_2.4.0-1ubuntu2_i386.deb Size: 1801328 MD5sum: 4f6d6a045940933fe8041fa9b88306c3 SHA1: 4e7d7e7652fc24c70897641a52a752315bb47b5d SHA256: 15431390948cdaf70a4e3f40a1da34b43947981e8a4d4632ae762295a555c02c Description: JavaScript engine library from WebKitGTK+ Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: c8ca5f9911b19e560b648038b5d6c507 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-live, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libjavascriptcoregtk-1.0-0-dbg Priority: extra Section: debug Installed-Size: 310008 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libjavascriptcoregtk-1.0-0 (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-1.0-0-dbg_2.4.0-1ubuntu2_i386.deb Size: 77104396 MD5sum: dea25a9d62f6599213f12d51e5adb2ef SHA1: a7b61a4ae734c56b7ba1fa24f6a9d9e883270abd SHA256: 2f3eb10303d71f8e474ec68f34babeb5fd8e9080a2e24fe51cfebfff3f08775c Description: JavaScript engine library from WebKitGTK+ - debugging symbols Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: 7a20d831cf310d0d2163cc35a370be4c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjavascriptcoregtk-1.0-dev Priority: extra Section: libdevel Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: libwebkit-dev (<< 1.5.0), libwebkitgtk-dev (<< 1.5.0) Depends: libjavascriptcoregtk-1.0-0 (= 2.4.0-1ubuntu2), gir1.2-javascriptcoregtk-1.0 (= 2.4.0-1ubuntu2) Conflicts: libwebkit-dev (<< 1.5.0), libwebkitgtk-dev (<< 1.5.0) Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-1.0-dev_2.4.0-1ubuntu2_i386.deb Size: 21142 MD5sum: d80623fadf766f8f9d7d09fa1b7a54a2 SHA1: b1a4a7a50232a491c066b1fc7aac79587daf03a2 SHA256: 1a6454008a81e1f14410e701ea63704566db9b6d34011db1bd63dfbec0ad385f Description: JavaScript engine library from WebKitGTK+ - development files Homepage: http://webkitgtk.org/ Description-md5: 3a7f4f950f5c61c1ab7f3b84b008c035 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjavascriptcoregtk-3.0-0 Priority: optional Section: libs Installed-Size: 6727 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.36.0), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.8.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-3.0-0_2.4.0-1ubuntu2_i386.deb Size: 1801794 MD5sum: a99a8d4ab2a1856a1e20755786ddc4ea SHA1: 3f161bd23d3c2b18630defd72835554a3178b4da SHA256: 3ec7ff81a0c818c842ece5903aee1d6af558708926e9ae670f3c16cd857730d7 Description: JavaScript engine library from WebKitGTK+ Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: fa31d6ff17e7f898095d279640948eb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjavascriptcoregtk-3.0-0-dbg Priority: extra Section: debug Installed-Size: 310008 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libjavascriptcoregtk-3.0-0 (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-3.0-0-dbg_2.4.0-1ubuntu2_i386.deb Size: 77105618 MD5sum: 43fde6c2fa9f742f0885a37e4a57832f SHA1: 00c2dd2cdeee416b3c77906060629d41ea77acf8 SHA256: acfe1c0c9de0b1766a8843972e4cad51a195d5cff631c94bb1cfa98381b7dd57 Description: JavaScript engine library from WebKitGTK+ - debugging symbols Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: 20f18227b6e023567efd6f86ba09e975 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjavascriptcoregtk-3.0-dev Priority: extra Section: libdevel Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: libwebkitgtk-3.0-dev (<< 1.5.0) Depends: libjavascriptcoregtk-3.0-0 (= 2.4.0-1ubuntu2), gir1.2-javascriptcoregtk-3.0 (= 2.4.0-1ubuntu2) Conflicts: libwebkitgtk-3.0-dev (<< 1.5.0) Filename: pool/main/w/webkitgtk/libjavascriptcoregtk-3.0-dev_2.4.0-1ubuntu2_i386.deb Size: 21152 MD5sum: d5096a079f51fc349e616d8b2f61c11c SHA1: 468435d75e8bf4060d8bc45ee43c5f9c9c8fcb9a SHA256: 3d84f7ae60446a827b5518d404c664eb81dcb0ad1e3c539aa8025f85a1696d48 Description: JavaScript engine library from WebKitGTK+ - development files Homepage: http://webkitgtk.org/ Description-md5: 73b6f7b0b80cb239bcf5bac77df63fe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjaxen-java Priority: optional Section: libs Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.6-1ubuntu1 Replaces: libsaxpath-java Recommends: libdom4j-java, libjdom1-java, libxom-java Conflicts: libsaxpath-java Filename: pool/main/libj/libjaxen-java/libjaxen-java_1.1.6-1ubuntu1_all.deb Size: 206112 MD5sum: 7bfa1146e97b13bea54722c093765592 SHA1: fe6a38ce6380fb642f67dd44e77dc47f4dba02b6 SHA256: 7b8ff24fa7ea335549fccf08da9be5c1b1849eaae527b4937cc053ebbae9c933 Description: Java XPath engine Homepage: http://jaxen.codehaus.org Description-md5: 35de18aeaec18036c7ec8376a5879620 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjaxen-java-doc Priority: optional Section: doc Installed-Size: 6612 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libjaxen-java Version: 1.1.6-1ubuntu1 Filename: pool/main/libj/libjaxen-java/libjaxen-java-doc_1.1.6-1ubuntu1_all.deb Size: 466968 MD5sum: cd374b9da7034e712f42ed58ffbb70a7 SHA1: a89c1320e91158895820cb5fe1a277240abf9c0f SHA256: 2655900de23244ff46c4e0f17069a40bc44ea2f31505c9366a39035264217db3 Description: Java XPath engine - documentation Homepage: http://jaxen.codehaus.org Description-md5: 702be9394523b4d28ddacc03ea84bdde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjaxp1.3-java Priority: optional Section: libs Installed-Size: 661 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.3.05-2ubuntu3 Suggests: libjaxp1.3-java-gcj Conflicts: libxalan2-java (<= 2.7.1-3) Filename: pool/main/libj/libjaxp1.3-java/libjaxp1.3-java_1.3.05-2ubuntu3_all.deb Size: 450366 MD5sum: 7e9ae207d692076da2d000d27ccd3a2b SHA1: 86b0041b0e9af80f1abb90489456182fe313076a SHA256: 17aa9ed064d294508640561a303d530726fdb3f4f4f58c0b01cbca6676b8b07b Description: Java XML parser and transformer APIs (DOM, SAX, JAXP, TrAX) Homepage: http://java.sun.com/xml/jaxp/index.jsp Description-md5: 606ed4bef1a124acfddbe03c2158b1cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libjaxp1.3-java-gcj Priority: optional Section: libs Installed-Size: 780 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: i386 Source: libjaxp1.3-java Version: 1.3.05-2ubuntu3 Depends: libjaxp1.3-java (>= 1.3.05-2ubuntu3), libgcj-common (>> 1:4.1.1-13), libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.6.3-1~) Filename: pool/main/libj/libjaxp1.3-java/libjaxp1.3-java-gcj_1.3.05-2ubuntu3_i386.deb Size: 195560 MD5sum: cf3329717ead7eacd38f0fde29a2148a SHA1: ba2b9ed2055532d4579778185206fc8725c472af SHA256: 478e302e9268094e7f3bee2db9ed3a4b61d96d32e07349bcabffc1bf0dde0f0a Description: Java XML parser and transformer APIs (DOM, SAX, JAXP, TrAX) - GCJ Homepage: http://java.sun.com/xml/jaxp/index.jsp Description-md5: 622da09f293ce21342c267c275320622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjbig-dev Priority: extra Section: libdevel Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Michael van der Kolff Architecture: i386 Source: jbigkit Version: 2.0-2ubuntu4 Depends: libjbig0 (= 2.0-2ubuntu4) Pre-Depends: multiarch-support Filename: pool/main/j/jbigkit/libjbig-dev_2.0-2ubuntu4_i386.deb Size: 6318 MD5sum: e4f68f80733e84fbd230d37a785e000c SHA1: 775135b687edf3bcbaaaf64d075ed38a0bb029f2 SHA256: 129216b85321076106a187e3ff3e9157b61ddce1b6e4e589327499ecfd223e3a Description: JBIGkit development files Multi-Arch: same Homepage: http://www.cl.cam.ac.uk/~mgk25/jbigkit/ Description-md5: adb859ea7f3297c702ae65a62d5b099c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjbig0 Priority: extra Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Michael van der Kolff Architecture: i386 Source: jbigkit Version: 2.0-2ubuntu4 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/j/jbigkit/libjbig0_2.0-2ubuntu4_i386.deb Size: 24928 MD5sum: d4e1f959e38ef7776698f5e82a8bbb5a SHA1: e1baf77397bc9d0e1d72b6d4c8f4f50951e76d4b SHA256: db0583c0fdb018a27db9f39438fa35381b2e7a02f6b3b6648cb5a087d07c713c Description: JBIGkit libraries Multi-Arch: same Homepage: http://www.cl.cam.ac.uk/~mgk25/jbigkit/ Description-md5: dff3510ff69e0a9b07a69c345f0aedb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjbig2dec0 Priority: optional Section: libs Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Smedegaard Architecture: i386 Source: jbig2dec Version: 0.11+20120125-1ubuntu1 Depends: libc6 (>= 2.7) Filename: pool/main/j/jbig2dec/libjbig2dec0_0.11+20120125-1ubuntu1_i386.deb Size: 48104 MD5sum: 55ba0659d99fa13ad7e83296a236d823 SHA1: 52eee50e9eb705f79b740484b0febd3143191b74 SHA256: afe909f5a83dbc0731e79e170c4d57859b0509fc0069f02ce0a71ba2e9706479 Description: JBIG2 decoder library - shared libraries Homepage: http://jbig2dec.sourceforge.net/ Description-md5: 4fc692e269014b2801abb9d178e5f774 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjbig2dec0-dev Priority: optional Section: libdevel Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Smedegaard Architecture: i386 Source: jbig2dec Version: 0.11+20120125-1ubuntu1 Provides: libjbig2dec-dev Depends: libjbig2dec0 (= 0.11+20120125-1ubuntu1) Conflicts: libjbig2dec-dev Filename: pool/main/j/jbig2dec/libjbig2dec0-dev_0.11+20120125-1ubuntu1_i386.deb Size: 49690 MD5sum: 13ff86fb70048dda8f5efcb5d1561afc SHA1: d4061db6ee23b8b6adf09eb0f09d244777ad2ae3 SHA256: b546ad6f5324e92c66e1717140c8eaf65654bccef90e68cd318e8ef591316389 Description: JBIG2 decoder library - development files Homepage: http://jbig2dec.sourceforge.net/ Description-md5: e0964a7829aa44b212d608a06f2333c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjdepend-java Priority: optional Section: libs Installed-Size: 897 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.9.1-1 Filename: pool/main/libj/libjdepend-java/libjdepend-java_2.9.1-1_all.deb Size: 245772 MD5sum: ac3e4596d12c2fc372b6b44ce0ed9c35 SHA1: e96aa4f7bfdf18b175d4adef619441c0c3252718 SHA256: 5cdbb0b83ca48a2f3bd5a8699f570209d1f2dd29602c94afc6419f194452dbfd Description: tool to measure design quality of java class and source Homepage: http://www.clarkware.com/software/JDepend.html Description-md5: 478ec8d4bfd9fbf209498eb111b0990e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjdom1-java Priority: optional Section: libs Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.3-1 Depends: libjaxen-java Suggests: libjdom1-java-doc Filename: pool/main/libj/libjdom1-java/libjdom1-java_1.1.3-1_all.deb Size: 150448 MD5sum: d8960bb32a7c20bd4e641729167570cd SHA1: c0dc5a79e7f3e43cb5c55a87e58b68aa135ef2a7 SHA256: 656a8937d3c8b872d9c60540f4fcca700fe8e60a7474aadaf25e6dff9855efdb Description: lightweight and fast library using XML Homepage: http://jdom.org Description-md5: 5e7a375a0c2bfa5d54177b3ca4c1c713 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjdom1-java-doc Priority: optional Section: doc Installed-Size: 2581 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libjdom1-java Version: 1.1.3-1 Suggests: libjdom1-java Filename: pool/main/libj/libjdom1-java/libjdom1-java-doc_1.1.3-1_all.deb Size: 236334 MD5sum: be1028acc9a98f94fdb81365c73ce70b SHA1: e170a66c8c35a0e7e4ced65388527535bc0a4e7c SHA256: 92c49a1036962be0c4d480853b4ff04947f323929bc2e8608910a2e3e8e3a5df Description: lightweight and fast library using XML - documentation Homepage: http://jdom.org Description-md5: e771c2d094b8d21435d884b1bc7676a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjline-java Priority: optional Section: libs Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jline Version: 1.0-2 Suggests: libjline-java-doc Filename: pool/main/j/jline/libjline-java_1.0-2_all.deb Size: 69372 MD5sum: f4a54be4875239c80f4411f9cc45c0fd SHA1: 3522ca1fcba915d7c0fa0e305bb76ef3a6aae0c0 SHA256: 09f709b6257c7e75aead5348009d83e28c442e1c6cc8179ab69d030a5ffcc2ef Description: Java library for handling console input Homepage: http://jline.sourceforge.net/ Description-md5: 34d3ea50796aa57cc64f8964246c9cca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjline-java-doc Priority: optional Section: doc Installed-Size: 910 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jline Version: 1.0-2 Suggests: libjline-java, default-jdk-doc Filename: pool/main/j/jline/libjline-java-doc_1.0-2_all.deb Size: 222562 MD5sum: 1b1b677bd6de4f060866221a00b97f32 SHA1: 2cec2a737ed5771478f1123a1de2685971be95b8 SHA256: 0e1b783d95dde04b5fe891e969f45d11c8e65ff597f056da281f4ae9c4c94ba9 Description: Java library for handling console input - documentation Homepage: http://jline.sourceforge.net/ Description-md5: 38d89d769683a46981f3fb4b0799a946 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjmock-java Priority: optional Section: libs Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jmock Version: 1.2.0-2 Recommends: junit (>= 3.8.2) Suggests: libjmock-java-doc, libasm-java, libcglib-java Filename: pool/main/j/jmock/libjmock-java_1.2.0-2_all.deb Size: 87826 MD5sum: 89177afb4e0add2ce637d2e373664feb SHA1: a76890f29ffbe80261d4d9521ab4e76a40e73f8f SHA256: c7ca76ad847a61cb3e0fe6ee86b617cc8d4f9b228743b0f7943431621217d0a8 Description: Java library for testing code with mock objects Homepage: http://www.jmock.org Description-md5: c071f1edf59721273bfd24b2c3751e39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjmock-java-doc Priority: optional Section: libs Installed-Size: 1683 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jmock Version: 1.2.0-2 Suggests: default-jdk-doc Filename: pool/main/j/jmock/libjmock-java-doc_1.2.0-2_all.deb Size: 109144 MD5sum: 7dfb023edc951a0f1dce2021345f22ff SHA1: bb139e276c281d08aca5139fc987b7f9fd8ac35d SHA256: f2eba0dd76236961a333b703f5a52f9570394bbb6c7bb1917b11b4770bc6f03d Description: Java library for testing code with mock objects - documentation Homepage: http://www.jmock.org Description-md5: f8d075fa2038dc8143f89095a88e1513 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Architecture: i386 Source: libjpeg8-empty Version: 8c-2ubuntu8 Depends: libjpeg8-dev Filename: pool/main/libj/libjpeg8-empty/libjpeg-dev_8c-2ubuntu8_i386.deb Size: 1544 MD5sum: 252a68b821e4c1bf840277d5e0ec4616 SHA1: bf0212d41a28d2e129892e63d53a2a018d107a54 SHA256: 8d88da2d4dfec3fcbd8de6c3a4449691ad919ff7f45afb30fac426aac2134e73 Description: Independent JPEG Group's JPEG runtime library (dependency package) Multi-Arch: same Description-md5: aeb3b35af5377dc1c08b3d3f1dd1de36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg-turbo8 Priority: optional Section: libs Installed-Size: 350 Maintainer: Ubuntu Developers Architecture: i386 Source: libjpeg-turbo Version: 1.3.0-0ubuntu2 Replaces: libjpeg8 (<< 8c-2ubuntu5) Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Breaks: libjpeg8 (<< 8c-2ubuntu5) Filename: pool/main/libj/libjpeg-turbo/libjpeg-turbo8_1.3.0-0ubuntu2_i386.deb Size: 106868 MD5sum: 5192c90b7eec7184e24c00d8a1ffed7c SHA1: b35a886badd17db137a0237a640fa6e4f9ff996b SHA256: b263785cd4a5062774bc9079844c24ca10fddd409e5dfd0966941693a61e6ecc Description: IJG JPEG compliant runtime library. Multi-Arch: same Homepage: http://libjpeg-turbo.virtualgl.org/ Description-md5: e73784921dcb74ecc93efca2d0dbf06a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjpeg-turbo8-dbg Priority: extra Section: debug Installed-Size: 392 Maintainer: Ubuntu Developers Architecture: i386 Source: libjpeg-turbo Version: 1.3.0-0ubuntu2 Replaces: libjpeg-turbo-dbg (<< 1.1.90+svn722-1ubuntu6), libjpeg62-dbg, libjpeg7-dbg Depends: libjpeg-turbo8 (= 1.3.0-0ubuntu2) Filename: pool/main/libj/libjpeg-turbo/libjpeg-turbo8-dbg_1.3.0-0ubuntu2_i386.deb Size: 277258 MD5sum: 817d54b9cf82bc8dd1ac3390e73cde00 SHA1: 1a605cd496ec865720cab192d0991fcfbe384ebc SHA256: c2c2361a04cfe1eff5706fb508c7973994e31489c7f198d9f9b04a3c5b3ad378 Description: Debugging symbols for the libjpeg-turbo library Homepage: http://libjpeg-turbo.virtualgl.org/ Description-md5: 9642361e392f97fb16b31dfbf38ea4d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg-turbo8-dev Priority: optional Section: libdevel Installed-Size: 1205 Maintainer: Ubuntu Developers Architecture: i386 Source: libjpeg-turbo Version: 1.3.0-0ubuntu2 Replaces: libjpeg62-dev, libjpeg7-dev, libjpeg8-dev (<< 8c-2ubuntu5) Provides: libjpeg-dev Depends: libc-dev, libjpeg-turbo8 (= 1.3.0-0ubuntu2) Conflicts: libjpeg62-dev, libjpeg7-dev Filename: pool/main/libj/libjpeg-turbo/libjpeg-turbo8-dev_1.3.0-0ubuntu2_i386.deb Size: 246984 MD5sum: c9f70e065732c8da3d93be9fefe9fc4f SHA1: 48b294776094fd3994a2b06a694f80f5cd72fb5b SHA256: bbd13f0af71c2877a6fb15c4df5462f9f4f0b17264603c8c5d94875cc91460e2 Description: Development files for the IJG JPEG library Multi-Arch: same Homepage: http://libjpeg-turbo.virtualgl.org/ Description-md5: d25e4fedcfe5ade5e441d4bc95a4a0d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg62 Priority: optional Section: libs Installed-Size: 197 Maintainer: Ubuntu Developers Original-Maintainer: Bill Allombert Architecture: i386 Source: libjpeg6b Version: 6b1-4ubuntu1 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/libj/libjpeg6b/libjpeg62_6b1-4ubuntu1_i386.deb Size: 75824 MD5sum: fd93e44f884df54138e0986b13f924fa SHA1: b89803df912e1b1cdbd666fe4181138dc241dece SHA256: 286560a5cbda238bd9aeb1e2ca7ad8c96f950cea416f384ae3275b9a48406d88 Description: Independent JPEG Group's JPEG runtime library (version 6.2) Multi-Arch: same Description-md5: 53d80d990dac853780cc2c973a60e680 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libjpeg62-dbg Priority: extra Section: libdevel Installed-Size: 600 Maintainer: Ubuntu Developers Original-Maintainer: Bill Allombert Architecture: i386 Source: libjpeg6b Version: 6b1-4ubuntu1 Provides: libjpeg-dbg Depends: libjpeg62 (= 6b1-4ubuntu1) Filename: pool/main/libj/libjpeg6b/libjpeg62-dbg_6b1-4ubuntu1_i386.deb Size: 127938 MD5sum: 4396a94ecc8d07d098c9dae055263396 SHA1: a2a030fd5cb0ce8d6fc142a21798568850c7c489 SHA256: 7b40f0d813f8508c28818440ecf49d3e5c009db222184edf574ab62d22d6b8c8 Description: Development files for the IJG JPEG library (version 6.2) Description-md5: 3387562520832fd6b3c1640c9bdde454 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg62-dev Priority: optional Section: libdevel Installed-Size: 406 Maintainer: Ubuntu Developers Original-Maintainer: Bill Allombert Architecture: i386 Source: libjpeg6b Version: 6b1-4ubuntu1 Depends: libjpeg62 (= 6b1-4ubuntu1), libc-dev Filename: pool/main/libj/libjpeg6b/libjpeg62-dev_6b1-4ubuntu1_i386.deb Size: 168998 MD5sum: e7ea70c8750ae0f8e47f398f4a2c820e SHA1: 3ca3d229ad1b294fec010e65256ef59b80823bf2 SHA256: 9cc745b41c41e8359dd98c23cd0e3a455739dd739ab6dfc89c4f9d3eb5407377 Description: Development files for the IJG JPEG library (version 6.2) Multi-Arch: same Description-md5: 754ff6d7596fa7d0dad4124be6dd4ac1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg8 Priority: optional Section: libs Installed-Size: 26 Maintainer: Ubuntu Developers Architecture: i386 Source: libjpeg8-empty Version: 8c-2ubuntu8 Depends: libjpeg-turbo8 (>= 1.1.90+svn722-1ubuntu6) Filename: pool/main/libj/libjpeg8-empty/libjpeg8_8c-2ubuntu8_i386.deb Size: 2188 MD5sum: fabd39bf2821265a696997063673fcea SHA1: 03fc89ee811401581c5cf49912961d88c41a66b7 SHA256: cf2395d1fc1882f2b0afc7f20449712afc195f259288f5dba0489ddbcbe71f47 Description: Independent JPEG Group's JPEG runtime library (dependency package) Multi-Arch: same Description-md5: c291a11286499ba1bdfddf14d8af677b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjpeg8-dbg Priority: extra Section: debug Installed-Size: 26 Maintainer: Ubuntu Developers Architecture: i386 Source: libjpeg8-empty Version: 8c-2ubuntu8 Provides: libjpeg-dbg Depends: libjpeg-turbo8-dbg (>= 1.1.90+svn722-1ubuntu6), libjpeg8 (= 8c-2ubuntu8) Filename: pool/main/libj/libjpeg8-empty/libjpeg8-dbg_8c-2ubuntu8_i386.deb Size: 1542 MD5sum: 242e9dc32e4f64a38bdbaf41b5e996bd SHA1: 0b7b64b0d753cfa0928a07d70bbb8183805e4c3f SHA256: f8d3d04b840d2cedd6bf3d4f816ca2bcd3b19f057d9ef8428004af179e8c3880 Description: Independent JPEG Group's JPEG runtime library (dependency package) Description-md5: eae518d4a3f4b4d18474b1fea12b703d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjpeg8-dev Priority: optional Section: libdevel Installed-Size: 26 Maintainer: Ubuntu Developers Architecture: i386 Source: libjpeg8-empty Version: 8c-2ubuntu8 Depends: libjpeg-turbo8-dev (>= 1.1.90+svn722-1ubuntu6), libjpeg8 (= 8c-2ubuntu8) Filename: pool/main/libj/libjpeg8-empty/libjpeg8-dev_8c-2ubuntu8_i386.deb Size: 1546 MD5sum: c24aa60204448d6b9ab18092d9e12779 SHA1: cabb28579e293ddba8d3975cebc50c1333604da6 SHA256: c7385248d0e85a9869c651bd3a80bc3334f8d4b4fadb904347304a4b151deb03 Description: Independent JPEG Group's JPEG runtime library (dependency package) Multi-Arch: same Description-md5: 7be15a693abb714b10f0338826683c2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-jquery Priority: optional Section: web Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: jquery Version: 1.7.2+dfsg-2ubuntu1 Replaces: jquery Suggests: javascript-common Conflicts: jquery Breaks: movabletype-opensource (<< 5.1.4+dfsg-3~) Filename: pool/main/j/jquery/libjs-jquery_1.7.2+dfsg-2ubuntu1_all.deb Size: 78758 MD5sum: 08cb6ee293e5570df48cbff3b1316cb5 SHA1: 7ff557527ac4b97356d5dd1db1a73c4e5cd7362e SHA256: 8e681cff9929fee1d2e114efaa9b630e23f4cfdcd285e6ab11a5e791c8f36dd7 Description: JavaScript library for dynamic web applications Multi-Arch: foreign Homepage: http://jquery.com/ Description-md5: 7962611d0963445869229c974a815cea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, lubuntu-desktop, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics Package: libjs-jquery-hotkeys Priority: extra Section: web Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Version: 0~20130707+git2d51e3a9+dfsg-2ubuntu1 Depends: libjs-jquery Pre-Depends: dpkg (>= 1.15.6~) Recommends: javascript-common Filename: pool/main/libj/libjs-jquery-hotkeys/libjs-jquery-hotkeys_0~20130707+git2d51e3a9+dfsg-2ubuntu1_all.deb Size: 11362 MD5sum: 1dc73271d48aa240ed7ccb4cb7c2a96d SHA1: 8f7bbcdd7e7b86ddbd27201af2e2641c725d79d3 SHA256: d8d8a715d53f6641a4ee9e8d9df8e0d563a0efda3d637c7dc3f180ef8b923aa6 Description: easily add and remove handlers for keyboard events anywhere in your code Homepage: https://github.com/tzuryby/jquery.hotkeys Description-md5: 6ad49f724a34e8aa32e5f3b7dd38a9aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-jquery-isonscreen Priority: extra Section: web Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Version: 1.2.0-1 Depends: libjs-jquery Recommends: javascript-common Filename: pool/main/libj/libjs-jquery-isonscreen/libjs-jquery-isonscreen_1.2.0-1_all.deb Size: 3102 MD5sum: d9eab2c09fc65416b66a70a3e9f23b4e SHA1: e27bee8ea44f4f59bd39c630ca73a459b98719b9 SHA256: 0ef8ad229dcbbc7685d5da6379456b9f9a4d63294bb1b514eee4f3f240d6a4ae Description: detects if an element is visible within the users current view pane Homepage: http://archive.plugins.jquery.com/project/isOnScreen Description-md5: e3bf748b2b5748e1c93209bb32f35a4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-jquery-metadata Priority: optional Section: web Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: jquery-goodies Version: 8-2 Depends: libjs-jquery Recommends: javascript-common Filename: pool/main/j/jquery-goodies/libjs-jquery-metadata_8-2_all.deb Size: 6856 MD5sum: f577e88c99f650547730efe2091de99a SHA1: e83368825f4f3e655af1752f81e491b0ff64330a SHA256: 124e5b94ee9a3f689e7a6fc76aa1805ffe9f8807a62a7d3a14622d7566ec1f33 Description: jQuery plugin for parsing metadata from elements Description-md5: 82b6fad279b5aa5463b5e96d011768af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-jquery-resize-doc Priority: optional Section: doc Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: jquery-goodies Version: 8-2 Filename: pool/main/j/jquery-goodies/libjs-jquery-resize-doc_8-2_all.deb Size: 26786 MD5sum: 1c0afbefcace9bb87e93a6356198a4fd SHA1: afa0a7823f8afc9bc24ebe7c3e460de4ac6f1c0b SHA256: 13d687121c28a3f346fc3a4fcf90dc855290d1c079226fe6f14d81c4b1a046e8 Description: jQuery resize (doc) Homepage: http://benalman.com/projects/jquery-resize-plugin/ Description-md5: cdaa876b5dcff0c7e748388bbc245273 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-jquery-tablesorter Priority: optional Section: web Installed-Size: 444 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: jquery-goodies Version: 8-2 Depends: libjs-jquery (>= 1.2.3), libjs-jquery-metadata Recommends: javascript-common Filename: pool/main/j/jquery-goodies/libjs-jquery-tablesorter_8-2_all.deb Size: 63956 MD5sum: 51c79ab0847130decc052869cb9d25bb SHA1: 4b13d922ad4ff6ce2d5ceb698d2d1d3f91640318 SHA256: 8bc9804de5596e5534242e6e4fdb726fcd0c2d27ff7464ef9ddd77c0358266de Description: Flexible client-side table sorting Homepage: http://tablesorter.com Description-md5: 7d8ed1cbc5600d27e80c28053129afa3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-raphael Priority: optional Section: web Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Paolo Rotolo Architecture: all Source: raphael Version: 2.1.0-1ubuntu1 Suggests: javascript-common Filename: pool/main/r/raphael/libjs-raphael_2.1.0-1ubuntu1_all.deb Size: 81920 MD5sum: 03bb7f61b2df0f6e203070e50f2ad798 SHA1: ec76b53074d1d14322d1af004de98e72dd98c890 SHA256: c84bba0f327d650ecca062d169a576c75879cbf9624d4d8b17d8d75c626d342d Description: JavaScript library to work with vector graphics Homepage: http://raphaeljs.com/ Description-md5: 583beeaace242712869baf3f5b5b6755 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libjs-sphinxdoc Priority: optional Section: web Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sphinx Version: 1.2.2+dfsg-1ubuntu1 Depends: libjs-jquery (>= 1.4), libjs-underscore Filename: pool/main/s/sphinx/libjs-sphinxdoc_1.2.2+dfsg-1ubuntu1_all.deb Size: 41222 MD5sum: c8059b7c7583bd54baecf1319035fa67 SHA1: 65929e8c8028ce88e212677c5287a27dc88e43f5 SHA256: 2de9c27015282bde1608610883257c61f7f61e687ef50981f99a334e6d4c51eb Description: JavaScript support for Sphinx documentation Homepage: http://sphinx-doc.org/ Description-md5: 63a7d0de40a41c4829f00fcb9417cf9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libjs-underscore Priority: optional Section: web Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: underscore Version: 1.4.4-2ubuntu1 Recommends: libjs-jquery Suggests: javascript-common Filename: pool/main/u/underscore/libjs-underscore_1.4.4-2ubuntu1_all.deb Size: 45586 MD5sum: 305ad423ee8697a945c3610cf10a6bdf SHA1: 738d3a54ff39221c9f2679a36e709e0f49b29af9 SHA256: 1edba1642e4b71c723546e659f67e4330bdd914a0c44349f26ab592e6969c433 Description: JavaScript's functional programming helper library Homepage: http://underscorejs.org/ Description-md5: a77ac32abf4789aa283df7d50866a802 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libjs-yui3-common Priority: optional Section: web Installed-Size: 1621 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: yui3 Version: 3.5.1-1ubuntu3 Suggests: javascript-common Filename: pool/main/y/yui3/libjs-yui3-common_3.5.1-1ubuntu3_all.deb Size: 172314 MD5sum: 38baa3c7b4b77b84dcf6a7ec5ffa61ad SHA1: ba1f23924eae2748535aace892b04d122752c2f7 SHA256: 080a4861c0655b3901e98f831f771ab97f5bf3727b5e512a106e049198fc2a72 Description: Yahoo User Interface Library v3 (common files) Homepage: http://developer.yahoo.com/yui/3/ Description-md5: 4960080d6c1488b99441c073af33c061 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libjs-yui3-debug Priority: optional Section: web Installed-Size: 7139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: yui3 Version: 3.5.1-1ubuntu3 Depends: libjs-yui3-common Suggests: javascript-common Filename: pool/main/y/yui3/libjs-yui3-debug_3.5.1-1ubuntu3_all.deb Size: 1361912 MD5sum: 636041459f354763ee157101254c7fb0 SHA1: 416342402e33422793e794899fbb33accab15fde SHA256: 36f52f099ea7a02a246c1ed14938729f84d0f21f76d9479c46fa5a1a2e477b27 Description: Yahoo User Interface Library v3 (debug files) Homepage: http://developer.yahoo.com/yui/3/ Description-md5: 60306f68bb183d5fadfe4a5f85133b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-yui3-doc Priority: optional Section: doc Installed-Size: 134659 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: yui3 Version: 3.5.1-1ubuntu3 Depends: libjs-yui3-min (= 3.5.1-1ubuntu3) Filename: pool/main/y/yui3/libjs-yui3-doc_3.5.1-1ubuntu3_all.deb Size: 27925138 MD5sum: e2d37d8d1002eff131b98e294b19e3a1 SHA1: 687ef985ce71a5fcaf7b6778e7931451d2c87e1b SHA256: 7a8046fe7d5e47d280673072ba38aa320f04acf75c11bf01b5bfbfcc57d3ccaf Description: Documentation and examples for the Yahoo User Interface Library v3 Homepage: http://developer.yahoo.com/yui/3/ Description-md5: c4db61fe92d2d7566985ecc817f462bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjs-yui3-full Priority: optional Section: web Installed-Size: 7187 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: yui3 Version: 3.5.1-1ubuntu3 Depends: libjs-yui3-common Suggests: javascript-common Filename: pool/main/y/yui3/libjs-yui3-full_3.5.1-1ubuntu3_all.deb Size: 1364184 MD5sum: c84ced570eb398c9a4010661c15397b8 SHA1: 1b4942eb399e7db985a776d43027d3b011feb20f SHA256: 5e659196d050b6c575b3dd345e0e75ce8c754b4b2ff4f817dfbc478ce68585f8 Description: Yahoo User Interface Library v3 (full, uncompressed files) Homepage: http://developer.yahoo.com/yui/3/ Description-md5: 7eba1f5e96ed5bbbf9f2d95433616851 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libjs-yui3-min Priority: optional Section: web Installed-Size: 2684 Maintainer: Ubuntu Developers Original-Maintainer: Debian Javascript Maintainers Architecture: all Source: yui3 Version: 3.5.1-1ubuntu3 Depends: libjs-yui3-common Suggests: javascript-common Filename: pool/main/y/yui3/libjs-yui3-min_3.5.1-1ubuntu3_all.deb Size: 478712 MD5sum: ca1273a45df09ff171b3186d11045a29 SHA1: 28835f79389629cbd2eb632988ed178afe695b25 SHA256: 352bae085a2acf9a69f29f721a13f67470247fe3fe49e636840b46e330896b0c Description: Yahoo User Interface Library v3 (minified files) Homepage: http://developer.yahoo.com/yui/3/ Description-md5: e7decf9f0ec25aeda783e2498b7c73e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libjsch-java Priority: optional Section: devel Installed-Size: 2138 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jsch Version: 0.1.50-1ubuntu1 Filename: pool/main/j/jsch/libjsch-java_0.1.50-1ubuntu1_all.deb Size: 321256 MD5sum: ac424f8cbc50b9f88b7f834b270ee0e7 SHA1: 0506d4c5b4f787012c1fc7e94cc7ec9f89996d43 SHA256: b41c73147cb033e09d10179fba2ec540b42f7b2007a1ab5279692d3f3f0493d2 Description: Java implementation of the SSH2 protocol Homepage: http://www.jcraft.com/jsch/ Description-md5: 33dfa5404c0eb26cb5a3a4b05480dd10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjsch-java-doc Priority: optional Section: devel Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jsch Version: 0.1.50-1ubuntu1 Recommends: default-jdk-doc Filename: pool/main/j/jsch/libjsch-java-doc_0.1.50-1ubuntu1_all.deb Size: 51132 MD5sum: 9721b5b93c50131a95bb6e58f65fd67f SHA1: 5ee11548d79dbb644822a926e814b7de47a3bec1 SHA256: bb58ed0ee4a0d71eaf293d51b7740b07b838b7b0443009d7f27c6b89b89d01ad Description: Java implementation of the SSH2 protocol - documentation Homepage: http://www.jcraft.com/jsch/ Description-md5: 63b55112445f668c6e8800c4968c0088 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-c-dev Priority: extra Section: libdevel Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: i386 Source: json-c Version: 0.11-3ubuntu1 Depends: libjson-c2 (= 0.11-3ubuntu1) Filename: pool/main/j/json-c/libjson-c-dev_0.11-3ubuntu1_i386.deb Size: 32794 MD5sum: cae8ea3d6da77136a43441f5b2976a30 SHA1: 15e3fda9849619d86b401407d4d994a6f0f47222 SHA256: 16a66f722c40080478d17b12fc29d4b9d6c03b20280b15ed5df46de05d727af2 Description: JSON manipulation library - development files Multi-Arch: same Homepage: https://github.com/json-c/json-c/wiki Description-md5: 001edc84a96e6fae1bdabba649265f74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-c-doc Priority: extra Section: doc Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: all Source: json-c Version: 0.11-3ubuntu1 Depends: libjs-jquery Filename: pool/main/j/json-c/libjson-c-doc_0.11-3ubuntu1_all.deb Size: 15808 MD5sum: 373138ea1ee13db4eb3a4618e7d191ee SHA1: 66847deac88a8207bca77928d4d957e5e6a6fd43 SHA256: 4d5a8336aa1c87ac4897b33bdf7eaa269f8a297b8fc2fbf2f3b9f9a8ade84d68 Description: JSON manipulation library - documentation files Homepage: https://github.com/json-c/json-c/wiki Description-md5: f6161e4b0b31f974b052bc6d10f3eafc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-c2 Priority: required Section: libs Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: i386 Source: json-c Version: 0.11-3ubuntu1 Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Filename: pool/main/j/json-c/libjson-c2_0.11-3ubuntu1_i386.deb Size: 24282 MD5sum: 4f36eb64e46fd3fb2365b67bddf0f099 SHA1: 017e273654f03442d4ee7e3af0bef966fc723dc3 SHA256: bc9aeeb0073317427f57fb1d99493063bd2a73975720ba9484d283e94dc9d1ad Description: JSON manipulation library - shared library Multi-Arch: same Homepage: https://github.com/json-c/json-c/wiki Description-md5: ac049068ef755540cdb41614a65accbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libjson-c2-dbg Priority: extra Section: debug Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: i386 Source: json-c Version: 0.11-3ubuntu1 Depends: libjson-c2 (= 0.11-3ubuntu1) Filename: pool/main/j/json-c/libjson-c2-dbg_0.11-3ubuntu1_i386.deb Size: 31678 MD5sum: b0e957f553f7d174275ff2ce863914e6 SHA1: 5f1fdd8e11cbaf7147087fc4bcebe039fc77150b SHA256: b38b0c67879e1babcedd21a89a8cc374f462e68acffeef01df3e37e0d9dfdafa Description: JSON manipulation library - debug symbols Multi-Arch: same Homepage: https://github.com/json-c/json-c/wiki Description-md5: efd16657bfcef4fd441a5da76e0cee70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-glib-1.0-0 Priority: optional Section: libs Installed-Size: 271 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: json-glib Version: 0.16.2-1ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libjson-glib-1.0-common (>= 0.16.2-1ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/j/json-glib/libjson-glib-1.0-0_0.16.2-1ubuntu1_i386.deb Size: 53246 MD5sum: 68f58e77a0c4ffad09ff22fd383138d8 SHA1: b6f5f404cd47cba1c38c66769062ed83851d03e9 SHA256: b295afb18dd9f081c68a19ebc959bae889e71c87e95fe32d9925682671061db3 Description: GLib JSON manipulation library Multi-Arch: same Homepage: https://wiki.gnome.org/JsonGlib Description-md5: 53a96fd80b7925face0f32f0fe0f240f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-live, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjson-glib-1.0-0-dbg Priority: extra Section: libdevel Installed-Size: 457 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: json-glib Version: 0.16.2-1ubuntu1 Depends: libjson-glib-1.0-0 (= 0.16.2-1ubuntu1) Filename: pool/main/j/json-glib/libjson-glib-1.0-0-dbg_0.16.2-1ubuntu1_i386.deb Size: 109118 MD5sum: 2404f018dc5a2edb4a47d7ff7340a8d7 SHA1: 67c77cb097881f608e2b42efe7e3a0e71b7a1979 SHA256: 0f00744e27d587c1d8c2bbed04c5dbd6f8aab78f46bc9593263da55b265949bf Description: GLib JSON manipulation library (debug symbols) Multi-Arch: same Homepage: https://wiki.gnome.org/JsonGlib Description-md5: a827b0e992aeb23b3bf89fcf5311979b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-glib-1.0-common Priority: optional Section: libs Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: json-glib Version: 0.16.2-1ubuntu1 Filename: pool/main/j/json-glib/libjson-glib-1.0-common_0.16.2-1ubuntu1_all.deb Size: 5722 MD5sum: 8c86f913d71e880c03be1c26a9167738 SHA1: 07a4d90a798591becafbc49e285be9dfbd3376e6 SHA256: 14190b0f5b15d382d8dac401b8b03b8edecb3a6d66b8abd4362d5956e3724d6d Description: GLib JSON manipulation library (common files) Multi-Arch: foreign Homepage: https://wiki.gnome.org/JsonGlib Description-md5: 44fe0ba19b2f3c2be6cb8f7ad693642f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-live, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjson-glib-dev Priority: optional Section: libdevel Installed-Size: 402 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: json-glib Version: 0.16.2-1ubuntu1 Depends: libjson-glib-1.0-0 (= 0.16.2-1ubuntu1), pkg-config, libglib2.0-dev, gir1.2-json-1.0 (= 0.16.2-1ubuntu1) Suggests: libjson-glib-doc Filename: pool/main/j/json-glib/libjson-glib-dev_0.16.2-1ubuntu1_i386.deb Size: 23722 MD5sum: 6bb0a34390bf4be61ef32a39f526e8f0 SHA1: 11e84d1b2e7e38407a8cff05b8ce127514a68de8 SHA256: fa51fd91ed337dbdb1819dd10282c33e36dc63712c95517f4e3f80220e19a22f Description: GLib JSON manipulation library (development files) Homepage: https://wiki.gnome.org/JsonGlib Description-md5: c52c48b0cce50c9bd0620d26357460e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-glib-doc Priority: optional Section: doc Installed-Size: 820 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: json-glib Version: 0.16.2-1ubuntu1 Suggests: devhelp Filename: pool/main/j/json-glib/libjson-glib-doc_0.16.2-1ubuntu1_all.deb Size: 48808 MD5sum: 05d9ea743d41fbc4d06252671375658d SHA1: 9ad300347144dcf4d95a8b8944c475657e3eb014 SHA256: f6e08c9111943deffb36535c31643e15e064a89bf54330e75ae867475358037f Description: GLib JSON manipulation library (documentation) Homepage: https://wiki.gnome.org/JsonGlib Description-md5: 539f24e15c204394fc39f500e4e62a7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjson-perl Priority: optional Section: perl Installed-Size: 251 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.61-1 Depends: perl Recommends: libjson-xs-perl (>= 2.340) Suggests: perl (>= 5.13.9) | libjson-pp-perl Filename: pool/main/libj/libjson-perl/libjson-perl_2.61-1_all.deb Size: 94418 MD5sum: 9a2a374dbce9d264e24dd984c79a4af6 SHA1: 1371eff756cd84968158d0f703f05089eaffcaeb SHA256: 9dc5806ce49e27f1dfebd569c057a44d526a6c38882389dfa4068a6481344407 Description: module for manipulating JSON-formatted data Homepage: https://metacpan.org/release/JSON/ Description-md5: eb9867fc3fd81c9df2527bd3d80fcc49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libjson-xs-perl Priority: optional Section: perl Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 2.340-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4), libcommon-sense-perl Filename: pool/main/libj/libjson-xs-perl/libjson-xs-perl_2.340-1build1_i386.deb Size: 83282 MD5sum: 8acb6bab2ea272b1cb9272620306cfdc SHA1: 0783eea6bca773c1d4449f08c437b0ee63ba52da SHA256: 940b126b202c413d44bb5eb359f606e1ea4c050869be09d5aef58e2de5eb3c69 Description: module for manipulating JSON-formatted data (C/XS-accelerated) Homepage: https://metacpan.org/release/JSON-XS/ Description-md5: 86340713c4cc9ee648f8b8cd4a20ab7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libjson0 Priority: required Section: libs Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: i386 Source: json-c Version: 0.11-3ubuntu1 Depends: libjson-c2 Filename: pool/main/j/json-c/libjson0_0.11-3ubuntu1_i386.deb Size: 1010 MD5sum: 755fc2286070567870fefc4bd9deb7a8 SHA1: b9f9acf0cb3e93456dcf9ca84dbcfe150f0ee249 SHA256: 16bf593e9cd4968e362c4040d5704118e75652e03c7aa4ed147247bcc5c3023e Description: JSON manipulation library (transitional package) Multi-Arch: same Homepage: https://github.com/json-c/json-c/wiki Description-md5: 371ccf272cd2c882d38633a743e58c84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libjson0-dev Priority: extra Section: libdevel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: fabien boucher Architecture: i386 Source: json-c Version: 0.11-3ubuntu1 Depends: libjson-c-dev, libjson0 (= 0.11-3ubuntu1) Filename: pool/main/j/json-c/libjson0-dev_0.11-3ubuntu1_i386.deb Size: 1162 MD5sum: e379339f0cb3869151b5f93cdfffe87b SHA1: ff668c56ca0270c8dc30a5ccf39634bf31e7c3ed SHA256: 78748c6612a53434a091d1db6d6d5273ecc149f3ad74697339c21328986435a8 Description: JSON manipulation library (transitional package) Multi-Arch: same Homepage: https://github.com/json-c/json-c/wiki Description-md5: 371ccf272cd2c882d38633a743e58c84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjstl1.1-java Priority: optional Section: java Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: jakarta-taglibs-standard Version: 1.1.2-2ubuntu1 Depends: libxalan2-java Filename: pool/main/j/jakarta-taglibs-standard/libjstl1.1-java_1.1.2-2ubuntu1_all.deb Size: 16818 MD5sum: 3cf4d35bfd88dfb860bd47e90a9198c9 SHA1: 01e18aaf68ad1d30fe419615e08635eb0a222edf SHA256: 85147e23c407c093da1992b47626329c526c9614e1b93b2222eccff60a18fe86 Description: JSP Standard Tag Library API v1.1 Reference Implementation Homepage: http://tomcat.apache.org/taglibs/standard/ Description-md5: 7f861765814e2964aecf1342d5f5ba36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libjte-dev Priority: extra Section: libdevel Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: i386 Source: jigit Version: 1.19-2 Depends: zlib1g-dev, libbz2-dev, libjte1 (= 1.19-2) Filename: pool/main/j/jigit/libjte-dev_1.19-2_i386.deb Size: 27904 MD5sum: fb8fc216a4fcc76f8e9821b59d893bed SHA1: acc4e2875a9a7cc2eee43936dade06f477fb670b SHA256: e6623492c6f1d04c40cfff924650c1227b84eed59769cded3a48cba1fb797cd1 Description: Jigdo Template Export - development Homepage: http://www.einval.com/~steve/software/JTE/ Description-md5: a1c5c7fde938847b59806a67cd4ed454 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjte1 Priority: extra Section: libs Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: i386 Source: jigit Version: 1.19-2 Depends: libbz2-1.0, libc6 (>= 2.7), zlib1g (>= 1:1.1.4) Filename: pool/main/j/jigit/libjte1_1.19-2_i386.deb Size: 25726 MD5sum: 35c4671a193d8161158473d826e7ab0f SHA1: 289c494c03963a03e7610d6eba4a5aeda466e7de SHA256: 1d3a03f6130528a9ca9e373d9faf2f977d260f761cdc6b6ac4f51d0f9b764334 Description: Jigdo Template Export - runtime library Homepage: http://www.einval.com/~steve/software/JTE/ Description-md5: 2f1766f61e276fff22c3946ab550f0f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libjunitperf-java Priority: optional Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: junitperf Version: 1.9.1-8ubuntu1 Depends: default-jre-headless | java1-runtime-headless | java2-runtime-headless | java5-runtime-headless | java6-runtime-headless, junit Suggests: libjunitperf-java-doc Filename: pool/main/j/junitperf/libjunitperf-java_1.9.1-8ubuntu1_all.deb Size: 17456 MD5sum: 75672de63c2403e9fad7cdc80cdcd30b SHA1: 0b9f6856204b9bfd0cc6560af46be084124bcb5f SHA256: 586183cde4812f3123a1f1de89169cf2e53cf42f749aeefc1b2945d1d7075eb7 Description: JUnit extensions for performance and scalability testing Homepage: http://www.clarkware.com/software/JUnitPerf.html Description-md5: a912447dc7a23778173c56041c5a857a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libjunitperf-java-doc Priority: optional Section: libs Installed-Size: 322 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: junitperf Version: 1.9.1-8ubuntu1 Suggests: libjunitperf-java Filename: pool/main/j/junitperf/libjunitperf-java-doc_1.9.1-8ubuntu1_all.deb Size: 50960 MD5sum: 14b28a8023998f06a8cdc924446578f8 SHA1: 41e06ccfff65c6c5b2f77e5cb1c48a57672f3cfb SHA256: 2d6eaa8c2a591e5afb38337519dd6cc87777e4706ff5d0ad1aa14b43a19c56ea Description: Documentation for libjunitperf-java Homepage: http://www.clarkware.com/software/JUnitPerf.html Description-md5: 7120b3a8b27365a79742272ff71e66d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libk5crypto3 Priority: standard Section: libs Installed-Size: 305 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libkrb5support0 (>= 1.12~alpha1+dfsg) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Conflicts: libkrb53 Breaks: libgssapi-krb5-2 (<= 1.10+dfsg~alpha1), libkrb5-3 (<= 1.8~aa) Filename: pool/main/k/krb5/libk5crypto3_1.12+dfsg-2ubuntu4_i386.deb Size: 77614 MD5sum: 98cf6235296af6998f4c9a39fe3df373 SHA1: 3b5939bedc3b338540d4611b3b9192fddaaaa473 SHA256: df64deaa9aa6c95a0c40ca4dddc06a72fb97cbbea36a0b4ee6d9420152285bf0 Description: MIT Kerberos runtime libraries - Crypto Library Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 4b107bcb8481fee0b8b11744a386a6b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libkadm5clnt-mit9 Priority: optional Section: libs Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.7), libcomerr2 (>= 1.01), libgssapi-krb5-2 (>= 1.10+dfsg~), libgssrpc4 (>= 1.6.dfsg.2), libk5crypto3 (>= 1.6.dfsg.2), libkrb5-3 (>= 1.8+dfsg), libkrb5support0 (>= 1.12~alpha1+dfsg) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Filename: pool/main/k/krb5/libkadm5clnt-mit9_1.12+dfsg-2ubuntu4_i386.deb Size: 35342 MD5sum: f42fc8ec55fb47a591b9f0baaa89d2aa SHA1: 71a1f27f9a5f3e2999289238ecea3467251facda SHA256: 69f51e52ae7262aae67243a90f767e720b59bd26ad2819fcc71d2e6a8b01b0d6 Description: MIT Kerberos runtime libraries - Administration Clients Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 8b2bac04328bfaffc8a1b6b57144cc9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkadm5clnt7-heimdal Priority: optional Section: libs Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.8), libcomerr2 (>= 1.01), libkrb5-26-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libkadm5clnt7-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 18760 MD5sum: 1490a1eccb31e2a21fb013eaf035e06b SHA1: 85d81b70baf9970da6442f1e0ca08ab1277b2785 SHA256: 9b97779ba166def2e240df6e7953a0b1a72383f0cc3050ccdc759f7c016b08ce Description: Heimdal Kerberos - kadmin client library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 3c1990ad00253301ad106a775a259242 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkadm5srv-mit8 Priority: extra Section: oldlibs Installed-Size: 2646 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: all Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libkadm5srv-mit9 Filename: pool/main/k/krb5/libkadm5srv-mit8_1.12+dfsg-2ubuntu4_all.deb Size: 12136 MD5sum: 2f40fd79c87406ecb0a54ab395c892ad SHA1: 7986e86e94d6004e617c718f6ddfb253f7efb5a2 SHA256: 71a4fb102396e7f6421c0033566988909d9314e340ab011b45b4cc9b639e3e1e Description: transitional dummy package for libkadm5srv-mit9 Homepage: http://web.mit.edu/kerberos/ Description-md5: 186b2a1b5e18665ded21f4fa90d21876 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkadm5srv-mit9 Priority: optional Section: libs Installed-Size: 225 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.7), libcomerr2 (>= 1.01), libgssapi-krb5-2 (>= 1.6.dfsg.2), libgssrpc4 (>= 1.6.dfsg.2), libk5crypto3 (>= 1.6.dfsg.2), libkdb5-7, libkrb5-3 (>= 1.9+dfsg~beta1), libkrb5support0 (>= 1.12~alpha1+dfsg) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Filename: pool/main/k/krb5/libkadm5srv-mit9_1.12+dfsg-2ubuntu4_i386.deb Size: 49780 MD5sum: 08b120e50ccd880f2333471b873ade18 SHA1: ae5549bd9fbfffaa548dd9ee9cc7e5506b9d9534 SHA256: 68e8dfe4735d7f315bf9ab269c01fd4086c73ea2e4a17eefa27f062c9954f1db Description: MIT Kerberos runtime libraries - KDC and Admin Server Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 34bc9a3bc5f24d8493ce16a753dc317d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkadm5srv8-heimdal Priority: optional Section: libs Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.8), libcomerr2 (>= 1.01), libhdb9-heimdal (>= 1.6~git20120311), libkrb5-26-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.6~git20131117) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libkadm5srv8-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 28778 MD5sum: 8703a4ec7962cc56de435560085ea5c6 SHA1: 9ed32dcf6ad0fa04114c9125d69e91df5d4e6f67 SHA256: eafae7ed95c0c8ddaf3d1d1440a031fca2bd64367c925b05735f19f898562ffe Description: Libraries for Heimdal Kerberos Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 3cfc4abf46cb966d202e4c7e1c50b12f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkafs0-heimdal Priority: extra Section: libs Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.11), libkrb5-26-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libkafs0-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 15186 MD5sum: 0501e2ca49b9a45243472b98a5c41a19 SHA1: 0c8005647082379fcbf80ba1a20eb0ced6390098 SHA256: 0b92c87bfc0b0dd3d6896e002fd0a2de89f74b4a308c234fd5e5e94edcf35c32 Description: Heimdal Kerberos - KAFS support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 7fd30de3adb996e1ddb2c382f4ce4994 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkcmutils4 Priority: optional Section: libs Installed-Size: 439 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkcmutils4_4.13.0-0ubuntu1_i386.deb Size: 91828 MD5sum: 2169e972c6814e934ebb8643057a699e SHA1: 8d56312dea351cacec1cd71ecbdb439d15179674 SHA256: 61be86a2e9b0145996778d8b889781e1ecedb93a138b2ab6459d08de04aa74dc Description: utility classes for using KCM modules Homepage: http://www.kde.org/ Description-md5: 0664b9af20b96f1c42e9dc3e04e67da4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdb5-7 Priority: optional Section: libs Installed-Size: 181 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Replaces: libkadm5srv-mit8 (<< 1.11+dfsg~) Depends: libc6 (>= 2.4), libcomerr2 (>= 1.01), libgssrpc4 (>= 1.7dfsg~alpha1), libk5crypto3 (>= 1.7+dfsg), libkrb5-3 (>= 1.11+dfsg), libkrb5support0 (>= 1.12~alpha1+dfsg) Pre-Depends: multiarch-support Suggests: krb5-doc, krb5-user Breaks: libkadm5srv-mit8 (<< 1.11+dfsg~) Filename: pool/main/k/krb5/libkdb5-7_1.12+dfsg-2ubuntu4_i386.deb Size: 36010 MD5sum: 1beef8e8849c2269d96fec7559439c49 SHA1: 3bea8ff58b2a3cb39635dcdc13d94096079cd877 SHA256: 3e3bffe21099c928acbdc9a2b4e6f58a7b863f92f2f69c9e5b05a1901da6143d Description: MIT Kerberos runtime libraries - Kerberos database Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 339dba7d5a44f05699e73cc493c3def3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkdc2-heimdal Priority: extra Section: libs Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libasn1-8-heimdal (>= 1.6~git20120311g), libc6 (>= 2.8), libhcrypto4-heimdal (>= 1.4.0+git20110226), libhdb9-heimdal (>= 1.6~git20120311), libheimntlm0-heimdal (>= 1.4.0+git20110226), libhx509-5-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.6~git20131117), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libkdc2-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 51682 MD5sum: 9ce1226957d8be785f5c058f75c45771 SHA1: 68007e7a8e7e1254f879ecfd6223e67863d7c99e SHA256: 2c61a9a1f51c77cb59ec8c14a29dcb73fd39de8aeb58a4ae33e8bcd49ccb0d81 Description: Heimdal Kerberos - KDC support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 7c163bb7ff65758ba803f34784537f56 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-audio Package: libkde3support4 Priority: optional Section: libs Installed-Size: 1224 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.15), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libkpty4 (= 4:4.13.0-0ubuntu1), libqt4-qt3support (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.8.0), libstdc++6 (>= 4.4.0), libx11-6 Filename: pool/main/k/kde4libs/libkde3support4_4.13.0-0ubuntu1_i386.deb Size: 299138 MD5sum: d9bc521cd924ee1c90476a758148f9e7 SHA1: a6348e8d9b1abce0ab425b029e5e5a08d852d1df SHA256: d4b5e0062611f98636eab185085373f00b1625959d73254d7b8b10fb2cfc9b5d Description: KDE 3 Support Library for the KDE 4 Platform Homepage: http://www.kde.org/ Description-md5: 991cc7b40c4c49f2141dd24fe02e64be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdeclarative5 Priority: optional Section: libs Installed-Size: 256 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-declarative (>= 4:4.8.0), libqt4-script (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkdeclarative5_4.13.0-0ubuntu1_i386.deb Size: 38352 MD5sum: 80b445d19ff03178881d2a8edad516e6 SHA1: baf0e78b8285fad82d0316b62ef933b4a801553f SHA256: 84ad12ec4d89d96e90952926af85e7f47296f83696f18de243e2b3cb00af322b Description: declarative library for plasma Homepage: http://www.kde.org/ Description-md5: 68aa12fd756ea17a2040ffb30a42f8ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdecore5 Priority: optional Section: libs Installed-Size: 3274 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libbz2-1.0, libc6 (>= 2.15), libdlrestrictions1 (>= 0.14), libgcc1 (>= 1:4.1.1), liblzma5 (>= 5.1.1alpha+20120614), libqt4-dbus (>= 4:4.7.0), libqt4-network (>= 4:4.8.0), libqtcore4 (>= 4:4.8.0), libstdc++6 (>= 4.4.0), zlib1g (>= 1:1.1.4) Filename: pool/main/k/kde4libs/libkdecore5_4.13.0-0ubuntu1_i386.deb Size: 900838 MD5sum: 2a96e23fecde8d54e7d7833cf151ba2a SHA1: 2f8e913b9892b7216542ae113245233308e2def0 SHA256: 824d85c1833efbcd31f2f49fe9300354a14d49689da7f5c712f93248c730618e Description: KDE Platform Core Library Homepage: http://www.kde.org/ Description-md5: 63b72d99622f0f39483e2857c12b1ce7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdesu5 Priority: optional Section: libs Installed-Size: 306 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.15), libkdecore5 (= 4:4.13.0-0ubuntu1), libkpty4 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1), xauth Filename: pool/main/k/kde4libs/libkdesu5_4.13.0-0ubuntu1_i386.deb Size: 51076 MD5sum: da2ce89b84636b0a9d0f1fdfe5508dd1 SHA1: 820db57a3bd30056db2ce8460914d2a354fe8a5c SHA256: 76bfcab025538708c065a8f206533c6d80a581f84a3918423bea894ec3c11e59 Description: Console-mode Authentication Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: b0a8912323d2acc159aee09909172425 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdeui5 Priority: optional Section: libs Installed-Size: 4766 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libattica0.4 (>= 0.4.2), libc6 (>= 2.4), libdbusmenu-qt2, libgcc1 (>= 1:4.1.1), libice6 (>= 1:1.0.0), libkdecore5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqt4-network (>= 4:4.7.0), libqt4-svg (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.8.0), libsm6, libstdc++6 (>= 4.1.1), libx11-6, libxfixes3, libxrender1 Recommends: kdelibs5-data (>= 4:4.13.0-0ubuntu1) Suggests: hspell Filename: pool/main/k/kde4libs/libkdeui5_4.13.0-0ubuntu1_i386.deb Size: 1274352 MD5sum: f59ec42c1d84a338855c9df61a4ae425 SHA1: d67a4060720aa3615f3d8e8ed8867db44a1eb3b3 SHA256: e445363ad49946ad46ea99630be0d68bd7f374ca683ac718b1a7823b086c5c16 Description: KDE Platform User Interface Library Homepage: http://www.kde.org/ Description-md5: dd888935d1059e0ffd266016dcabd53c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdewebkit5 Priority: optional Section: libs Installed-Size: 331 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libqt4-network (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libqtwebkit4, libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkdewebkit5_4.13.0-0ubuntu1_i386.deb Size: 61332 MD5sum: 75a28e082d57c9665e49f15e4a69d9b2 SHA1: cc895bde5e770858d2b34118fc2180caa235007c SHA256: 2c81359155b1d2e9b4c44e7f67ab3c6edf9cb688bdcb4e1b49092ea53bba30da Description: KDE WebKit Library Homepage: http://www.kde.org/ Description-md5: 37f74b24ea041b93eceb237236a38db3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkdnssd4 Priority: optional Section: libs Installed-Size: 365 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqt4-network (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkdnssd4_4.13.0-0ubuntu1_i386.deb Size: 65478 MD5sum: 33fd10a350860e2741a0049cd992cf4f SHA1: 97776735098c870c02c9655ea8681efcb9277e44 SHA256: fa569125d2bbf6211d9cc18e5a261ea9bcf1f11b9681e8b176a8f624ac9e345f Description: DNS-SD Protocol Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: a67f398f302ac7c437c2db6660c0cb5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkemoticons4 Priority: optional Section: libs Installed-Size: 259 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkemoticons4_4.13.0-0ubuntu1_i386.deb Size: 41154 MD5sum: 3bcfc0f596b0cfa46097b97d249477b4 SHA1: 2bae71895b0c3e9d742f96d58796818726c0484f SHA256: 240b5cbf57167214f4cdf5abdf0ae30ed22ee999fe199650e588f9dcf05cbe2f Description: utility classes to deal with emoticon themes Homepage: http://www.kde.org/ Description-md5: cae26d9220ef55bb5d93e6e50aaabbeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkeyutils-dev Priority: optional Section: misc Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: i386 Source: keyutils Version: 1.5.6-1 Depends: libkeyutils1 (= 1.5.6-1) Filename: pool/main/k/keyutils/libkeyutils-dev_1.5.6-1_i386.deb Size: 29324 MD5sum: f4699995f2e9d5530ba13a8c3a60630a SHA1: 3a2af34b540985f7211b6a9b721c863bc70c2b15 SHA256: 4c6fa8162543b02897dae66d7e873ab1ab0807a16bc4726f9b7379541c1ed2dd Description: Linux Key Management Utilities (development) Homepage: http://people.redhat.com/~dhowells/keyutils/ Description-md5: 778cf76cde69933bd711c1050360f519 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkeyutils1 Priority: standard Section: misc Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: i386 Source: keyutils Version: 1.5.6-1 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/k/keyutils/libkeyutils1_1.5.6-1_i386.deb Size: 7266 MD5sum: 7854f1c6c74e72f523de38676fea38a4 SHA1: 9ec91bf3a05039a447f155a8dfe5eed35f839239 SHA256: b05d8229489d533bdb42a0d90132315cdcf03b32db9f18851f037542d4a74923 Description: Linux Key Management Utilities (library) Multi-Arch: same Homepage: http://people.redhat.com/~dhowells/keyutils/ Description-md5: 5c4d88a0a818e5ef897f2a9fa5c3ac2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libkfile4 Priority: optional Section: libs Installed-Size: 875 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2), libgcc1 (>= 1:4.1.1), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.8.0), libsolid4 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1), libxrender1 Filename: pool/main/k/kde4libs/libkfile4_4.13.0-0ubuntu1_i386.deb Size: 220542 MD5sum: af48413903f91c2fa8b5cb9129825176 SHA1: 6fb43364b733492ee731d284fecc0ec45377f36f SHA256: 2aa4675ae4d3adad7572c784815206e34ed128c238cebeb923e52023376f2246 Description: File Selection Dialog Library for KDE Platform Homepage: http://www.kde.org/ Description-md5: ca6120f48cf645c62bd18c493fa976ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkhtml5 Priority: optional Section: libs Installed-Size: 7279 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libgif4 (>= 4.1.4), libjpeg8 (>= 8c), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkjsapi4 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libktexteditor4 (= 4:4.13.0-0ubuntu1), libphonon4 (>= 4:4.6.0really4.4.3), libpng12-0 (>= 1.2.13-4), libqt4-dbus (>= 4:4.7.0), libqt4-network (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1), libx11-6, zlib1g (>= 1:1.1.4) Suggests: kdelibs5-plugins (= 4:4.13.0-0ubuntu1) Filename: pool/main/k/kde4libs/libkhtml5_4.13.0-0ubuntu1_i386.deb Size: 1886326 MD5sum: 2003ac0721f8a86433a2c2bd87f3d828 SHA1: 40b2bb313501b728313bc63e7bbbee2f805aa4f7 SHA256: 972623add97f4386f094cec8de1738c1b1a90e8d7df452c98972926a465528f8 Description: KHTML Web Content Rendering Engine Homepage: http://www.kde.org/ Description-md5: 6fdc11e326da0a1bd495dcdc96640c27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkidletime4 Priority: optional Section: libs Installed-Size: 252 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1), libx11-6, libxext6, libxss1 Filename: pool/main/k/kde4libs/libkidletime4_4.13.0-0ubuntu1_i386.deb Size: 37610 MD5sum: 42a53f9a7d13a7ebf1a7e5ee35a7f9fe SHA1: c11ca9271bb7601d8c2a753230fe2356cb419314 SHA256: 2077349ddaf5ae7f4cf982cef043ed985939e8afee4d406dfe9de9dd78e5b881 Description: library to provide information about idle time Homepage: http://www.kde.org/ Description-md5: 5eb21e2d5fd8b18292c2b04164cbd62f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkimproxy4 Priority: optional Section: libs Installed-Size: 280 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkimproxy4_4.13.0-0ubuntu1_i386.deb Size: 44182 MD5sum: 86a7a7be88fbbef5818ddf999904aa08 SHA1: c044e1615acef56e6d328f693012157e8fe51587 SHA256: 9a9abd1085e46916a761e2c821bebabedb6945284d3c4ebbbae6282b43c77f88 Description: Instant Messaging Interface Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: 68e45e2a7240f7aa539c55fa9670181b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkio5 Priority: optional Section: libs Installed-Size: 3075 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libacl1 (>= 2.2.51-8), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqt4-network (>= 4:4.8.0), libqt4-svg (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libsolid4 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1), libstreamanalyzer0 (>= 0.7.8), libx11-6, libxrender1 Suggests: kdelibs5-plugins (= 4:4.13.0-0ubuntu1) Filename: pool/main/k/kde4libs/libkio5_4.13.0-0ubuntu1_i386.deb Size: 835066 MD5sum: ceb3d3dfd0d6a7a847ad859255d4f59c SHA1: ec5cfbc5ddbadc9c970be9bdb3428744f55c8946 SHA256: a4cde538d82f1d1ff41280a3fb120c21eff919774ee74e90ad27949b9c94e62a Description: Network-enabled File Management Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: f9d64e3dda3bf4c061b02623b14ed159 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkjsapi4 Priority: optional Section: libs Installed-Size: 1014 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libkdecore5 (= 4:4.13.0-0ubuntu1), libpcre3, libqtcore4 (>= 4:4.7.0), libstdc++6 (>= 4.2.1) Filename: pool/main/k/kde4libs/libkjsapi4_4.13.0-0ubuntu1_i386.deb Size: 254436 MD5sum: f29f2b2693083894baf6658c3beb3697 SHA1: 7036fdf2b5e9b53c20529b351d11df10d07a383b SHA256: 7983707ba79a9654d780176a3b24cfaa4282be7d420972a9da5497c06d29e6bc Description: KJS API Library for the KDE Development Platform Homepage: http://www.kde.org/ Description-md5: ef5d36e5444d0736d01d3dc877117014 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkjsembed4 Priority: optional Section: libs Installed-Size: 1329 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libkdecore5 (= 4:4.13.0-0ubuntu1), libkjsapi4 (= 4:4.13.0-0ubuntu1), libqt4-svg (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkjsembed4_4.13.0-0ubuntu1_i386.deb Size: 297388 MD5sum: 9c9f69b5e98c4517a8a581b94f5a77bb SHA1: 7ee32e26be690a57bc606b381008cae382603002 SHA256: dc005c23733b4681df284b5ebcec459c51786e24b7cebdae180348efc53bcd51 Description: library for binding JavaScript objects to QObjects Homepage: http://www.kde.org/ Description-md5: 7d592f95900bcda9ed863557c464d5cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libklibc Priority: required Section: libs Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: maximilian attems Architecture: i386 Source: klibc Version: 2.0.3-0ubuntu1 Filename: pool/main/k/klibc/libklibc_2.0.3-0ubuntu1_i386.deb Size: 41154 MD5sum: fe0926306469d50458cef6f53311c9f1 SHA1: 4a056632a9da073a5ccb0c39013ebd5eada3dcd2 SHA256: 77a8a9b3d9a2a42d0245d1e57771b1a3e812d7eb7c7a7b57b61aaab52b247242 Description: minimal libc subset for use with initramfs Homepage: http://git.kernel.org/?p=libs/klibc/klibc.git;a=summary Description-md5: c02e596a4e5bef99d28f7ec64ab27758 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libklibc-dev Priority: optional Section: libdevel Installed-Size: 1456 Maintainer: Ubuntu Developers Original-Maintainer: maximilian attems Architecture: i386 Source: klibc Version: 2.0.3-0ubuntu1 Depends: libklibc (= 2.0.3-0ubuntu1), linux-libc-dev Filename: pool/main/k/klibc/libklibc-dev_2.0.3-0ubuntu1_i386.deb Size: 210840 MD5sum: f6fb0ea499dc2dbf32f1876d5b2b21a1 SHA1: 8d99e86609d2e1b0abd6b28e6d165ac9d9d7821f SHA256: bb09a16e92b4c54f63ac6b9cf9f94cbb12b2af73eb470b840aafe72f530cf0dd Description: kernel headers used during the build of klibc Homepage: http://git.kernel.org/?p=libs/klibc/klibc.git;a=summary Description-md5: 30c8838ae54b41f0da91eb0d0c35f700 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libklu1.2.1 Priority: optional Section: libs Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libamd2.3.1, libbtf1.2.0, libc6 (>= 2.1.3), libcolamd2.8.0 Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libklu1.2.1_4.2.1-3ubuntu1_i386.deb Size: 38260 MD5sum: f5703667948df4f694842abc3238bc4a SHA1: 574c0bc62efe8d5997966e94718a3a0c063de2f5 SHA256: f39df58cf3440fcb72444930ec300fbb10c627bb438c5ebcc69f44a14a23b4f2 Description: circuit simulation sparse LU factorization library Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 870630b1bc7130d951e1bb1f2f3281de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkmediaplayer4 Priority: optional Section: libs Installed-Size: 242 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libkdeui5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkmediaplayer4_4.13.0-0ubuntu1_i386.deb Size: 29474 MD5sum: 51baf9c66f27cbb58e0fd49bf32bf325 SHA1: bed25b7aadf348f5f8ec63fe207c83b946650216 SHA256: 6c85e5403467b84d58c1ab9ca4ea1f3ee1c5e98cd378f5cf2e40fe99978d1642 Description: KMediaPlayer Interface for the KDE Platform Homepage: http://www.kde.org/ Description-md5: 41939bc408f0c531de5f851dcf989514 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkmod-dev Priority: optional Section: libdevel Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: i386 Source: kmod Version: 15-0ubuntu6 Depends: libkmod2 (= 15-0ubuntu6) Filename: pool/main/k/kmod/libkmod-dev_15-0ubuntu6_i386.deb Size: 4114 MD5sum: 7fff3fc38606d6d44f69f9b41173c2fb SHA1: 396f287f03f030be1a0c403bcae9fee9cb64b519 SHA256: 9ac7a09a2e31f7dd47a3417a4e929753279ee9e41012230a63360664c29335a1 Description: libkmod development files Multi-Arch: same Description-md5: d05b96c5ea92d4587ad0abe33b518fb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkmod2 Priority: required Section: libs Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: i386 Source: kmod Version: 15-0ubuntu6 Depends: libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/k/kmod/libkmod2_15-0ubuntu6_i386.deb Size: 40452 MD5sum: 134c566ae973dbd05b950d7edd2d674c SHA1: 7115faf6982fc6ad417c958526000959c57b6602 SHA256: 3ce99b8002d7d5e22940dcd843774ec9f77281306cd02bbf06c407f0e2f78a42 Description: libkmod shared library Multi-Arch: same Description-md5: e60216aabe72168f06218f037958581e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libknewstuff2-4 Priority: optional Section: libs Installed-Size: 581 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.4), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqt4-network (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Recommends: kdelibs5-data (= 4:4.13.0-0ubuntu1), gnupg Filename: pool/main/k/kde4libs/libknewstuff2-4_4.13.0-0ubuntu1_i386.deb Size: 132758 MD5sum: 3aa066222a2d66b67f79a0e0497af835 SHA1: b691a973a8b48fc09d186c77a0c463ab5caa1778 SHA256: 79ac7dff5f4feaa813a8e185b249434ad239fa902de10cc49460e0c09a372419 Description: "Get Hot New Stuff" v2 Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: 3b60147847daf44fbccfb1a682258447 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libknewstuff3-4 Priority: optional Section: libs Installed-Size: 655 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libattica0.4 (>= 0.4.2), libc6 (>= 2.4), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Recommends: kdelibs5-data (= 4:4.13.0-0ubuntu1), gnupg Filename: pool/main/k/kde4libs/libknewstuff3-4_4.13.0-0ubuntu1_i386.deb Size: 153036 MD5sum: c94296d85df1359091657f13b7c35c5f SHA1: 120f0aac3eb2924ff2ff426fc9080fd36cbee7c9 SHA256: e9b40de549f0e69a4d31ef57b14b1b2b3617317ec16ad28f0ce71b3dabe60058 Description: "Get Hot New Stuff" v3 Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: f38a1ea642d10041b05d41abd81c1721 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libknotifyconfig4 Priority: optional Section: libs Installed-Size: 261 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libphonon4 (>= 4:4.6.0really4.3.80), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libknotifyconfig4_4.13.0-0ubuntu1_i386.deb Size: 39510 MD5sum: f78b7679a4384c467e93390861f3a304 SHA1: c61743456134172d3f026189eb8c0d36116a128d SHA256: 5efd973725c440ee07bf9b71a8a1cf133828b882b465db13b309ce66731124b9 Description: library for configuring KDE Notifications Homepage: http://www.kde.org/ Description-md5: 92a159564b8bead16419278ef73c0269 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkntlm4 Priority: optional Section: libs Installed-Size: 220 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.4), libkdecore5 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0) Filename: pool/main/k/kde4libs/libkntlm4_4.13.0-0ubuntu1_i386.deb Size: 28568 MD5sum: 16dabaa192e5f8ad5f7aac9686296b66 SHA1: 470544c73206b7b8beccff0b63cc4ca4dba0154d SHA256: 5211e5d20db379f54998a511395f6855dc6de9a167d8d0f4f07ede0699534c70 Description: NTLM Authentication Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: a4c2aefaa45147ea6933464366053951 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkparts4 Priority: optional Section: libs Installed-Size: 565 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.2), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libnepomukutils4 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkparts4_4.13.0-0ubuntu1_i386.deb Size: 119122 MD5sum: 393150ff4a27c9fac4929e955d318844 SHA1: bb78e42772fe6762b37736fd8f52e552731aa218 SHA256: 8a449a84b06c6a003fe30ac82462cfd755519fdb0d7db9b1fa21bc006b90e8bc Description: Framework for the KDE Platform Graphical Components Homepage: http://www.kde.org/ Description-md5: 98c676da683b1bb14ce3b6e59252a0bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkpathsea-dev Priority: optional Section: libdevel Installed-Size: 445 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: i386 Source: texlive-bin Version: 2013.20130729.30972-2build3 Depends: libkpathsea6 (= 2013.20130729.30972-2build3) Filename: pool/main/t/texlive-bin/libkpathsea-dev_2013.20130729.30972-2build3_i386.deb Size: 75130 MD5sum: a94afc047a3a9a14338f36d040ca94bd SHA1: 56a1cbd48928ace100b551e932a5ae3d924b98cb SHA256: 27ffbc4839630ba66f51fa003cb3b23ed4cf5bd8b2e9f3adb77ff1a5ed6dd324 Description: TeX Live: path search library for TeX (development part) Homepage: http://www.tug.org/texlive/ Description-md5: 1e9ba572a4c4eefc4119b22ef8941c6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkpathsea6 Priority: optional Section: libs Installed-Size: 255 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: i386 Source: texlive-bin Version: 2013.20130729.30972-2build3 Depends: libc6 (>= 2.4) Breaks: texlive-base (<< 2013), texlive-binaries (<< 2013) Filename: pool/main/t/texlive-bin/libkpathsea6_2013.20130729.30972-2build3_i386.deb Size: 63110 MD5sum: 467d046fb5aae4ac5127794a7b33b3b5 SHA1: b15ec1632256cf66ec79d627b15795265380b708 SHA256: 8733e1277a075919199963c2632cfb4d2ee426ec1a61bdfdab796eef66fd282d Description: TeX Live: path search library for TeX (runtime part) Homepage: http://www.tug.org/texlive/ Description-md5: fba2c2a902ad5d09ffef5a04264e4bab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: libkprintutils4 Priority: optional Section: libs Installed-Size: 220 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkprintutils4_4.13.0-0ubuntu1_i386.deb Size: 27996 MD5sum: 52555afd58f616f111ebbef62a28380e SHA1: f1e50c0a8d0d2e8ae74e24dba3b79a8923e5f62e SHA256: 0bff16f295885ae4aa3077cd3aab45777ef222072f4e2a4615de6cc38c376ee9 Description: utility classes to deal with printing Homepage: http://www.kde.org/ Description-md5: fd3d73f26788fb553bf5c5fc82981d77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libkpty4 Priority: optional Section: libs Installed-Size: 234 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.15), libkdecore5 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1), libutempter0 (>= 1.1.5) Filename: pool/main/k/kde4libs/libkpty4_4.13.0-0ubuntu1_i386.deb Size: 33166 MD5sum: fdf53749f454230540cedb4420c6d539 SHA1: 30631255fb8af8edba02f433eee453c393e7f39a SHA256: 9c197eb2235180b5a02342d758d9d5f633ab38064cbda34559436eedde2b8f71 Description: Pseudo Terminal Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: 88650c0f22bb7f0ec349c0b6cf39f941 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkrad-dev Priority: extra Section: libdevel Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Replaces: libkrb5-dev (<< 1.12+dfsg-2) Depends: libkrad0 (= 1.12+dfsg-2ubuntu4), comerr-dev, libverto-dev (>= 0.2.4) Suggests: libkrb5-dev Breaks: krb5-multidev (<< 1.12+dfsg-2), libkrb5-dev (<< 1.12+dfsg-2) Filename: pool/main/k/krb5/libkrad-dev_1.12+dfsg-2ubuntu4_i386.deb Size: 11882 MD5sum: 7eab60e2ee99e92c27164b69857411e5 SHA1: 445bc8c131b9d84aca3304c6ccd66615a02b2806 SHA256: 487554c2a261a9fea773f334a895dcface30ecf5b30706d8a5988c3ae9154a01 Description: MIT Kerberos RADIUS Library Development Homepage: http://web.mit.edu/kerberos/ Description-md5: f22135e65145d2c1d4adf7a6dc4266ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkrad0 Priority: optional Section: libs Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libk5crypto3 (>= 1.8+dfsg), libkrb5-3 (>= 1.6.dfsg.2), libverto1 (>= 0.2.4) Pre-Depends: multiarch-support Filename: pool/main/k/krb5/libkrad0_1.12+dfsg-2ubuntu4_i386.deb Size: 20860 MD5sum: 5cdee50f1a28f5b7537d2bd7572d09cc SHA1: 8393384e5a1f5cf549396fc68d3fb988ad2715f0 SHA256: 210fa39fe9a2c613fdcd4a9a9bbdf1637491ee764ac4ee948b86a529c91dc389 Description: MIT Kerberos runtime libraries - RADIUS library Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 2d2f7517dcfd02118262a7f5e45301dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkrb5-26-heimdal Priority: standard Section: libs Installed-Size: 639 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libasn1-8-heimdal (>= 1.6~git20131117), libc6 (>= 2.15), libcomerr2 (>= 1.41.11), libhcrypto4-heimdal (>= 1.4.0+git20110226), libheimbase1-heimdal (>= 1.6~git20131117), libhx509-5-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.6~git20131117), libsqlite3-0 (>= 3.5.9), libwind0-heimdal (>= 1.6~git20120311) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libkrb5-26-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 198120 MD5sum: c32440004f6b5da089f0e050996fa69c SHA1: d24175e1ef7ff5eb4a6b7eb965ef113164d8cec1 SHA256: 62431b6753761a34dbced5817d9b3876b523d6fefec447f83fca8bd3b2788d51 Description: Heimdal Kerberos - libraries Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: c0c6ca8d74b4d950b5eaf9fb966ab142 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libkrb5-3 Priority: standard Section: libs Installed-Size: 934 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.16), libcomerr2 (>= 1.34), libk5crypto3 (>= 1.9+dfsg~beta1), libkeyutils1, libkrb5support0 (= 1.12+dfsg-2ubuntu4) Pre-Depends: multiarch-support Recommends: krb5-locales Suggests: krb5-doc, krb5-user Conflicts: libkrb53 Breaks: libsmbclient (<= 2:3.6.1-2), sssd (<= 1.2.1-4.3) Filename: pool/main/k/krb5/libkrb5-3_1.12+dfsg-2ubuntu4_i386.deb Size: 260202 MD5sum: fa7786308779ff930f8d14172db3a156 SHA1: 30e77d1e369c472c2170dea30bc200c1bb84505b SHA256: 56158f3023f103e65a8b643da8bc38d273723018274234f656dd1d73e3cf59f2 Description: MIT Kerberos runtime libraries Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 07bb931a85fb24c6a0ef0f62a94bb26c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libkrb5-dbg Priority: extra Section: debug Installed-Size: 5453 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libkrb5-3 (= 1.12+dfsg-2ubuntu4) | libk5crypto3 (= 1.12+dfsg-2ubuntu4) | libkrb5support0 (= 1.12+dfsg-2ubuntu4) Filename: pool/main/k/krb5/libkrb5-dbg_1.12+dfsg-2ubuntu4_i386.deb Size: 1356336 MD5sum: 6ce3502695e7d80c33b6fb3a0fdeb3d2 SHA1: 0f5b5ce1022f7d9ab1a7c1adfe1aada186a6c54d SHA256: cc3d014e9eeb7ff00adabe32dbc26a20effac67d3936226b9abc0f79cd49b4fd Description: Debugging files for MIT Kerberos Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 5a4b785ef1af9c8f242b4f1a2d5710a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkrb5-dev Priority: extra Section: libdevel Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Replaces: krb5-multidev (<< 1.8+dfsg~alpha1-3) Depends: krb5-multidev (= 1.12+dfsg-2ubuntu4) Suggests: krb5-doc Conflicts: heimdal-dev Filename: pool/main/k/krb5/libkrb5-dev_1.12+dfsg-2ubuntu4_i386.deb Size: 14406 MD5sum: 575ac910aae622f75f24437dafa2ca90 SHA1: 06013e535fc7e3a562c1fd4f36d6c3644282a109 SHA256: ec5d148dfd9bd3261d974dddfe5f686a3f705b7e9245e5f08d8fc190c50914e7 Description: Headers and development libraries for MIT Kerberos Homepage: http://web.mit.edu/kerberos/ Description-md5: 2ab394392864dbbc72c409c7aec58377 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libkrb5support0 Priority: standard Section: libs Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: krb5 Version: 1.12+dfsg-2ubuntu4 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: libkrb53 Filename: pool/main/k/krb5/libkrb5support0_1.12+dfsg-2ubuntu4_i386.deb Size: 29840 MD5sum: e018b1f8b534bd6c037d996c146c99f5 SHA1: 1b3e18c8e768198238ae17e63c6a257cd2126759 SHA256: 9c05bc2ed5a2f5f85dd8ff150ec011bfbcf6baaaa404a4b02c6fe287d31b6f3c Description: MIT Kerberos runtime libraries - Support library Multi-Arch: same Homepage: http://web.mit.edu/kerberos/ Description-md5: 4f3abf66dd7bfd20406fc400a05b0693 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libkrosscore4 Priority: optional Section: libs Installed-Size: 319 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-script (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkrosscore4_4.13.0-0ubuntu1_i386.deb Size: 55910 MD5sum: 2ddc092df2f7f669a3339044247e39c2 SHA1: f24aa6a18aef647a384073f2514a3798e4d0d61c SHA256: f84a27269d9af534479be48327770fd3525a5cc7bdbd37f0a53bc7da488069a8 Description: Kross Core Library Homepage: http://kross.dipe.org Description-md5: 36901388f1fca67e2a2b0d8491d66b2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkrossui4 Priority: optional Section: libs Installed-Size: 313 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libkrosscore4 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libqtgui4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkrossui4_4.13.0-0ubuntu1_i386.deb Size: 51940 MD5sum: ca8bb1d112f88afbc579f873fa99c72f SHA1: 0215746951165fdb532b4ab78fede4b28f4b9158 SHA256: 4c4b0475113b8628c3327f8e49897647bb510c6329a2cc9437fdd5ee78e1c92b Description: Kross UI Library Homepage: http://kross.dipe.org Description-md5: 299663dd13172b62a97dba0a445d9342 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active, kubuntu-active-full, kubuntu-active, ubuntustudio-graphics Package: libksba-dev Priority: optional Section: libdevel Installed-Size: 401 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: libksba Version: 1.3.0-3 Replaces: libksba0 Depends: libksba8 (= 1.3.0-3) Filename: pool/main/libk/libksba/libksba-dev_1.3.0-3_i386.deb Size: 119566 MD5sum: 99232929fdafb7e56ccb2a870f102d25 SHA1: d776698deda6ef55a8ddd13862a73016053bc8e6 SHA256: 7c5bd96c51ad0bfb2da82c26abcadc23ce575037b8c1369316a1f9015f538d68 Description: X.509 and CMS support library - development files Homepage: http://www.gnupg.org/related_software/libksba/ Description-md5: 451e8740fcc6265626636e8c054309ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libksba8 Priority: optional Section: libs Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: libksba Version: 1.3.0-3 Depends: libc6 (>= 2.4), libgpg-error0 (>= 1.10) Pre-Depends: multiarch-support Filename: pool/main/libk/libksba/libksba8_1.3.0-3_i386.deb Size: 89382 MD5sum: 500406e1209e80362ffaa764ded1bec9 SHA1: 65d59e42824179d331b84ed7d1682530c3a05672 SHA256: bdda5951e0f8b930c57cab9494a447a1c0c857d108ce0622814008e4ac019aab Description: X.509 and CMS support library Multi-Arch: same Homepage: http://www.gnupg.org/related_software/libksba/ Description-md5: a4cabffec0ec5429f0f14bf49f0459c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libktexteditor4 Priority: optional Section: libs Installed-Size: 504 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.4), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkparts4 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libktexteditor4_4.13.0-0ubuntu1_i386.deb Size: 97428 MD5sum: 08d7f04d753b11f84460eb739a63cbe3 SHA1: 6161fa95332135726821184c7ed8f4e02502e3ef SHA256: d4892481d59243ad3299ee0a0884a45c53a95ae36ee82cb03aa800efb17089ae Description: KTextEditor interfaces for the KDE Platform Homepage: http://www.kde.org/ Description-md5: 2d8e60170c0b920dc40b14f799eaf14b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libkunitconversion4 Priority: optional Section: libs Installed-Size: 474 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.7.0), libsolid4 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkunitconversion4_4.13.0-0ubuntu1_i386.deb Size: 77458 MD5sum: 4aa341bb9320f719439cc94d490d5cbc SHA1: c71bb202f1135866e5431544be4bf67c1bfb7d62 SHA256: f8a144328d1a26d71d148566c40fecedeef366d0e944ed34a436341af482d0ae Description: Unit Conversion library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: b9918503d482d7d829ab3df3d0dfe2e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libkutils4 Priority: optional Section: libs Installed-Size: 203 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkcmutils4 (= 4:4.13.0-0ubuntu1), libkemoticons4 (= 4:4.13.0-0ubuntu1), libkidletime4 (= 4:4.13.0-0ubuntu1), libkprintutils4 (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libkutils4_4.13.0-0ubuntu1_i386.deb Size: 22428 MD5sum: 86a07af3a831ebf550ae0fe699e5ca7b SHA1: 4fd143d59321215c3534c1bc983934b54e29502f SHA256: ed900cf0101efc157704f5fa61aa6b1e5508eaf71a4f73a14640f6faa6617fd6 Description: dummy transitional library Homepage: http://www.kde.org/ Description-md5: 694b339a296f5f2257295f8914329086 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblangtag-common Priority: optional Section: libs Installed-Size: 1447 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: liblangtag Version: 0.5.1-2 Filename: pool/main/libl/liblangtag/liblangtag-common_0.5.1-2_all.deb Size: 134106 MD5sum: 8990f3fda7e21857b195b87b7147cef5 SHA1: 212c1f9bf9e043e2f2803fc2990e6e99d01c60d7 SHA256: 2130e63d69c251c93c23157e2e4a72377e5ef5b9d1e96ee5bf35fbe7b30a3b47 Description: library to access tags for identifying languages -- data Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: d284b0ecd26d3bedca03439178f37ff3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: liblangtag-dev Priority: optional Section: libdevel Installed-Size: 465 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: liblangtag Version: 0.5.1-2 Depends: liblangtag1 (= 0.5.1-2), liblangtag-gobject0 (= 0.5.1-2), libglib2.0-dev, gir1.2-langtag-0.5 (= 0.5.1-2) Suggests: liblangtag-doc Filename: pool/main/libl/liblangtag/liblangtag-dev_0.5.1-2_i386.deb Size: 87794 MD5sum: b110f506144e2eedeb746010fda95e91 SHA1: 77db5ba689a4c33b133b2d5e1e817bc2ddd406ae SHA256: 52bd764f031796664077e2357dfac5000f78864a0064c1ffee9f3aecd33c6866 Description: library to access tags for identifying languages -- development Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: 6ea154d96dc7457b0cd467f2e46a6a1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblangtag-doc Priority: optional Section: libs Installed-Size: 631 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: liblangtag Version: 0.5.1-2 Filename: pool/main/libl/liblangtag/liblangtag-doc_0.5.1-2_all.deb Size: 55836 MD5sum: 5ee221249add4d7f03974a7c85a68f8b SHA1: 09801e5bb9ccdbe0cf17821b91911e41b7aa7fd5 SHA256: fffc48dfc6d0ddfbe05d2803c5d0ca573e98926e3f10b185339742368a241f12 Description: library to access tags for identifying languages -- documentation Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: b2683493e772ed5e478914e6e9f480a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblangtag-gobject0 Priority: optional Section: libs Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: liblangtag Version: 0.5.1-2 Replaces: liblangtag0 (<< 0.4.0) Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.14.0), liblangtag1 (>= 0.5.0), liblangtag-common (= 0.5.1-2) Filename: pool/main/libl/liblangtag/liblangtag-gobject0_0.5.1-2_i386.deb Size: 5904 MD5sum: f02e81b16cfc85b23996d7c5efc8c2ef SHA1: 887a42ef9998be056c7fd21407fb22a380e4f51e SHA256: 6ac75b34a5b717497e8baa88718fe639df28e3fac7a6e42da308a0d6516fa4a4 Description: library to access tags for identifying languages Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: 363d6863355004f2e559029fcd7828e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblangtag1 Priority: optional Section: libs Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: liblangtag Version: 0.5.1-2 Depends: libc6 (>= 2.17), libxml2 (>= 2.7.4), liblangtag-common (= 0.5.1-2) Filename: pool/main/libl/liblangtag/liblangtag1_0.5.1-2_i386.deb Size: 53742 MD5sum: e5e4d5a153edf681f0704d1e98375214 SHA1: a344f1411696a032f83a1304c3484da2212e2469 SHA256: 0ea957ac421aa0a7be07660d840017aa784577d34fe9b9058bd80f273c910292 Description: library to access tags for identifying languages Homepage: http://tagoh.bitbucket.org/liblangtag/ Description-md5: 363d6863355004f2e559029fcd7828e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: liblapack-dev Priority: optional Section: devel Installed-Size: 8186 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: lapack Version: 3.5.0-2ubuntu1 Provides: liblapack.so Depends: liblapack3 (= 3.5.0-2ubuntu1), libblas-dev | libblas.so Filename: pool/main/l/lapack/liblapack-dev_3.5.0-2ubuntu1_i386.deb Size: 1506384 MD5sum: c6ffede17bff00ad448a70af976986e7 SHA1: 27a63f2171c14e16e2cfa4bc022819ba727bf404 SHA256: 103449d4ff11ef89b587ea0b5aa93b331e8fd005c0d254ee4a585c6e2d025c13 Description: Library of linear algebra routines 3 - static version Homepage: http://www.netlib.org/lapack/ Description-md5: 06d5e223d8871e3c280e43aebafd3bb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblapack-doc Priority: optional Section: doc Installed-Size: 821624 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: all Source: lapack Version: 3.5.0-2ubuntu1 Replaces: lapack-doc, lapack3-doc Conflicts: lapack-doc, lapack3-doc Filename: pool/main/l/lapack/liblapack-doc_3.5.0-2ubuntu1_all.deb Size: 44337874 MD5sum: 62d65f0a494148143b8ac21747f2df21 SHA1: 4b39f6404d28c5e840ccd5db20a16e4c820a74c0 SHA256: ffab8f691eed31eb5e3dbf80d31c502ed674fef0493cfe373b73e5de9f8c15fa Description: Library of linear algebra routines 3 - documentation Homepage: http://www.netlib.org/lapack/ Description-md5: b05d59494a79dab7b6037e4cf582291c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblapack3 Priority: optional Section: libs Installed-Size: 5589 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: lapack Version: 3.5.0-2ubuntu1 Replaces: libatlas3gf-base (<< 3.8.4-4), liblapack3gf (<< 3.4.1-1) Provides: liblapack.so.3, liblapack.so.3gf, liblapack3gf Depends: libblas3 | libblas.so.3, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgfortran3 (>= 4.6) Breaks: libatlas3gf-base (<< 3.8.4-4), liblapack3gf (<< 3.4.1-1) Filename: pool/main/l/lapack/liblapack3_3.5.0-2ubuntu1_i386.deb Size: 1496060 MD5sum: 27a9eaee18d66bb28950f7ec4ce60633 SHA1: e95ffa5bd4559cb896b418df1d02673cad22cec1 SHA256: 21a27b55efc811985be265bf7ce76fb4ed03adeb7b2403dcdaed07010ec6be66 Description: Library of linear algebra routines 3 - shared version Homepage: http://www.netlib.org/lapack/ Description-md5: 26eaee65bec96885b8ad95ea62fe6a31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: liblapacke Priority: optional Section: libs Installed-Size: 1946 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: lapack Version: 3.5.0-2ubuntu1 Provides: liblapacke.so.3 Depends: libblas3 | libblas.so.3, libc6 (>= 2.3.4), liblapack3 | liblapack.so.3 Filename: pool/main/l/lapack/liblapacke_3.5.0-2ubuntu1_i386.deb Size: 272754 MD5sum: eadbf63ee922ef66b9d770fd65e81625 SHA1: 7f3753f7376e509636f26b6620b1e7b18350d722 SHA256: 719bb4c3bab580c463d7a68f690a11944232bdb339701605e7f1de56a3fce923 Description: Library of linear algebra routines 3 - C lib shared version Homepage: http://www.netlib.org/lapack/ Description-md5: 7f2e7790d8a3b93e084fa76cd32e2fd0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblapacke-dev Priority: optional Section: libdevel Installed-Size: 6111 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: lapack Version: 3.5.0-2ubuntu1 Depends: liblapacke (= 3.5.0-2ubuntu1) Filename: pool/main/l/lapack/liblapacke-dev_3.5.0-2ubuntu1_i386.deb Size: 238030 MD5sum: 9632222201d67f77e58861f8190f85fb SHA1: 1ee2c3de6472a48ed6c14ce6e83975ddb0799545 SHA256: e39edc39253858fa30825ccdbdf0bd2a1fc48e76fbd1bb637c7726541cdc09f1 Description: Library of linear algebra routines 3 - Headers Homepage: http://www.netlib.org/lapack/ Description-md5: e0363472469ab8a216d170cc0d7bbfe8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblcms2-2 Priority: optional Section: libs Installed-Size: 387 Maintainer: Ubuntu Developers Original-Maintainer: Oleksandr Moskalenko Architecture: i386 Source: lcms2 Version: 2.5-0ubuntu4 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Suggests: liblcms2-utils Filename: pool/main/l/lcms2/liblcms2-2_2.5-0ubuntu4_i386.deb Size: 128800 MD5sum: ffae0966dfa22c45c8d3d7b473e2e56d SHA1: 49789fb0a5339defff4d7f79087002c53c4e7650 SHA256: 459204d9e4cddadd817b25eac06d915ebd15ee6b570c12f42b0c3508f278e4cb Description: Little CMS 2 color management library Multi-Arch: same Homepage: http://www.littlecms.com/ Description-md5: f2e97e265067bf340866f48be3f9cae5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, tomcat-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblcms2-dev Priority: optional Section: libdevel Installed-Size: 5161 Maintainer: Ubuntu Developers Original-Maintainer: Oleksandr Moskalenko Architecture: i386 Source: lcms2 Version: 2.5-0ubuntu4 Depends: liblcms2-2 (= 2.5-0ubuntu4) Filename: pool/main/l/lcms2/liblcms2-dev_2.5-0ubuntu4_i386.deb Size: 5097284 MD5sum: 3c0311106be348a2ff615b8a6cce7954 SHA1: 6af75c1e9b726e39ec03c43a06c9b1ae867c74d8 SHA256: 5ca3350c97e34dfdd3f7f5d016ef850515f6d690ca1dfe8ec551d04b86cf56f4 Description: Little CMS 2 color management library development headers Multi-Arch: same Homepage: http://www.littlecms.com/ Description-md5: 87ff14435a28f46ae1486d878912dfa7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldap-2.4-2 Priority: standard Section: libs Installed-Size: 509 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: i386 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Replaces: libldap-2.3-0, libldap2 Depends: libc6 (>= 2.12), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libgssapi3-heimdal (>= 1.4.0+git20110226), libsasl2-2 (>= 2.1.24) Pre-Depends: multiarch-support Conflicts: ldap-utils (<= 2.1.23-1) Filename: pool/main/o/openldap/libldap-2.4-2_2.4.31-1+nmu2ubuntu8_i386.deb Size: 150310 MD5sum: 93195cf0df48de7eb0103685017dad8f SHA1: 2c9e71e3afbfa3503242b2b0e23ae363a6a21896 SHA256: 79aadcf4e270fec42575dfff83c045a5f102191f7cc27343fcb459540b791b5f Description: OpenLDAP libraries Multi-Arch: same Homepage: http://www.openldap.org/ Description-md5: 198db781f85a21d6d3c302c304d6e0fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libldap-2.4-2-dbg Priority: extra Section: libdevel Installed-Size: 509 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: i386 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Depends: libldap-2.4-2 (= 2.4.31-1+nmu2ubuntu8) Filename: pool/main/o/openldap/libldap-2.4-2-dbg_2.4.31-1+nmu2ubuntu8_i386.deb Size: 357828 MD5sum: fd644b153583eb768fc443f88311d6b6 SHA1: 9e6ee4e47fb140e258cd30dc6da0b398b7a452e0 SHA256: 610890c3f533336440162c23e842cbaad165ead3e05709e70d54ce5066098c9a Description: Debugging information for OpenLDAP libraries Multi-Arch: same Homepage: http://www.openldap.org/ Description-md5: ccc0a2bad42dae2cfbcee6c60d947e72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldap2-dev Priority: extra Section: libdevel Installed-Size: 1230 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: i386 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Replaces: libopenldap-dev Provides: libldap-dev Depends: libldap-2.4-2 (= 2.4.31-1+nmu2ubuntu8) Conflicts: libldap-dev, libopenldap-dev Filename: pool/main/o/openldap/libldap2-dev_2.4.31-1+nmu2ubuntu8_i386.deb Size: 258530 MD5sum: e4348b404b17f4a0a172001134bd5ec0 SHA1: 33e57b810702b95465c8e5fe2637bc1e854d22c8 SHA256: b0882d54e8cac0fa00e3d298fdcc09b505a9a47be62d5cb572b8b46a6af5bf5a Description: OpenLDAP development libraries Multi-Arch: same Homepage: http://www.openldap.org/ Description-md5: 2359036e8e1bd2b4b5d49233c1509ecf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldb-dev Priority: optional Section: libs Installed-Size: 764 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: ldb Version: 1:1.1.16-1 Depends: libc6-dev, libldb1 (= 1:1.1.16-1), libtalloc-dev, libtdb-dev, pkg-config Filename: pool/main/l/ldb/libldb-dev_1.1.16-1_i386.deb Size: 289228 MD5sum: 069d3cb0e5bfc598d28c6cc8cf0fc611 SHA1: 3e14e07fb080b78f3eb6053987bd0698af5051bd SHA256: 110f04a33920082b3854adc397151b334b91bcd34a73dcdd36eacb89218fafe6 Description: LDAP-like embedded database - development files Homepage: http://ldb.samba.org/ Description-md5: 0f2998af1c1336788fd3d4e9eca9fd09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldb1 Priority: optional Section: libs Installed-Size: 381 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: ldb Version: 1:1.1.16-1 Replaces: libldb0 Depends: libc6 (>= 2.4), libldap-2.4-2 (>= 2.4.7), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9) Pre-Depends: multiarch-support Breaks: libldb0, libsamdb0 (<< 4.0.0~alpha17~git20110724.dfsg1-1) Filename: pool/main/l/ldb/libldb1_1.1.16-1_i386.deb Size: 131344 MD5sum: ff557276d6cf91f35429702d14da3701 SHA1: 6e8963beb112798093391fb3ffae4480502ccfe6 SHA256: d7e6c1dce762dad17661b0c54fb23eacc773370ca3b625384e90813e01f2f072 Description: LDAP-like embedded database - shared library Multi-Arch: same Homepage: http://ldb.samba.org/ Description-md5: afbf2b86552adbf8b69bb702e5773247 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libldb1-dbg Priority: extra Section: debug Installed-Size: 678 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: ldb Version: 1:1.1.16-1 Depends: libldb1 (= 1:1.1.16-1) Recommends: libc6-dbg Filename: pool/main/l/ldb/libldb1-dbg_1.1.16-1_i386.deb Size: 260232 MD5sum: ad840705fc8ff3440dc7b7356ae813a8 SHA1: d65ef7ecf6793980fbf9714ff454528759fdfdff SHA256: 06d9983ff29920dbaedb9500cf34c6d9381bcbf178a836513a927633bd840636 Description: LDAP-like embedded database - debug symbols Homepage: http://ldb.samba.org/ Description-md5: 4a185562d03a998a1f7987876756162a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldl2.1.0 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libldl2.1.0_4.2.1-3ubuntu1_i386.deb Size: 8758 MD5sum: f2eb12006ad23a264f4dbee5a66ca1a4 SHA1: 6e2744778a2ea4107cf98fe6c4e7417be7b7f005 SHA256: 49289b92dba0cf9b078617eed30780d4512ce80a663cc1bc3e8decadcf4142d8 Description: simple LDL' factorization library for sparse matrices Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: cc70c0f9279a045ec212e588648b5726 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldns-dev Priority: extra Section: libdevel Installed-Size: 1423 Maintainer: Ubuntu Developers Original-Maintainer: Ondřej Surý Architecture: i386 Source: ldns Version: 1.6.17-1 Replaces: ldnsutils (<< 1.6.13-3) Depends: libldns1 (= 1.6.17-1), libssl-dev Breaks: ldnsutils (<< 1.6.13-3) Filename: pool/main/l/ldns/libldns-dev_1.6.17-1_i386.deb Size: 305500 MD5sum: 2609c3b32e8e8294c200e249af831d8d SHA1: 046974ffadf23085fe55a7248644bdf607191815 SHA256: 34421cc312004dfd26e9479d9315525b94b284ea53a78aaf99f9a64a9b604245 Description: ldns library for DNS programming Description-md5: 9c5cede131109e169368cf05ff7fe275 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libldns1 Priority: extra Section: libs Installed-Size: 437 Maintainer: Ubuntu Developers Original-Maintainer: Ondřej Surý Architecture: i386 Source: ldns Version: 1.6.17-1 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Filename: pool/main/l/ldns/libldns1_1.6.17-1_i386.deb Size: 135158 MD5sum: 8ab597a4f0792c2df10d078cc024dd24 SHA1: fb34fce6442e30db29b29e7bce15094e43052d4e SHA256: db7806ff25cd871ef2d3f8b6652d13f6e36e7b1218e341d3d9646aa225c64f1a Description: ldns library for DNS programming Description-md5: 9b40654210a01ddf0000bb2d232d5a08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libldns1-dbg Priority: extra Section: debug Installed-Size: 822 Maintainer: Ubuntu Developers Original-Maintainer: Ondřej Surý Architecture: i386 Source: ldns Version: 1.6.17-1 Depends: libldns1 (= 1.6.17-1) Filename: pool/main/l/ldns/libldns1-dbg_1.6.17-1_i386.deb Size: 250816 MD5sum: a693abc9cfc3e04cdcaeb7b8c16fcc71 SHA1: e9517d5ef1cddabfadd2171d951e0175aa7feacb SHA256: d50c7c63dd288edbcf5712d6f6ce40572da0689148394309935b755ea136e181 Description: ldns library for DNS programming (debug symbols) Description-md5: 3f6d5bc2be617d6da12c6314a17c0d94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libledit-ocaml-dev Priority: optional Section: libdevel Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Source: ledit Version: 2.03-2build1 Provides: libledit-ocaml-dev-4blh9 Depends: camlp5-2by42, ocaml-nox-4.01.0, ocaml-findlib, camlp5 Filename: pool/main/l/ledit/libledit-ocaml-dev_2.03-2build1_i386.deb Size: 44578 MD5sum: cfbb869d87e430801454148e4c717ac2 SHA1: d760584b112f385855f1b9df38ef5176332c0893 SHA256: 429309a050d6a0208ee13971e45556879464168b6e6dbc66e23ccad550185b48 Description: OCaml line editor library Homepage: http://cristal.inria.fr/~ddr/ledit/ Description-md5: 44cf919b826bff2e61cf92762546b6ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libleveldb-dbg Priority: extra Section: debug Installed-Size: 1120 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: leveldb Version: 1.15.0-2 Depends: libleveldb1 (= 1.15.0-2) Filename: pool/main/l/leveldb/libleveldb-dbg_1.15.0-2_i386.deb Size: 1047930 MD5sum: 1098c0a1769f0de84ffa1c2356a8f923 SHA1: d1efeaa67c0101c67061ffe42ea43f26c041c559 SHA256: cfbf04da14bfec44f0f06f1156a66ad60717dea2335cefa0b9300701b864f76b Description: fast key-value storage library (debug symbols) Multi-Arch: same Homepage: http://code.google.com/p/leveldb/ Description-md5: 1687f8dd73a0b38cd1cc1e4d9c911f7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libleveldb-dev Priority: optional Section: libdevel Installed-Size: 640 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: leveldb Version: 1.15.0-2 Depends: libleveldb1 (= 1.15.0-2) Suggests: leveldb-doc Filename: pool/main/l/leveldb/libleveldb-dev_1.15.0-2_i386.deb Size: 153418 MD5sum: ae3531076ab91b9557a8ed490cca1df2 SHA1: db98a0fe3b49ae1d5046eb57107d6b28e3aa1e41 SHA256: 0f4b4f531bf89028707ed2ed9ad23eba49aaed5a30886aa8bf03cd39cb58424e Description: fast key-value storage library (development files) Multi-Arch: same Homepage: http://code.google.com/p/leveldb/ Description-md5: 65611e7de39f662c9fc62635dcbbb5bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libleveldb1 Priority: optional Section: libs Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: leveldb Version: 1.15.0-2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libsnappy1, libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/l/leveldb/libleveldb1_1.15.0-2_i386.deb Size: 123558 MD5sum: a94ca35eeaeefd9a751eaee8e8575bc0 SHA1: 42c57fa4e9b3559f89eb78e50e8fe04bb82e514a SHA256: 088ba18ce607fd85c25e9a822348665d749deeed5edb0b99590225edf7dd9dcf Description: fast key-value storage library Multi-Arch: same Homepage: http://code.google.com/p/leveldb/ Description-md5: bd6897f1fe381043261f24b099c42e73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblexical-sealrequirehints-perl Priority: optional Section: perl Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.007-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libl/liblexical-sealrequirehints-perl/liblexical-sealrequirehints-perl_0.007-1build1_i386.deb Size: 12980 MD5sum: 08df5cd8d0bda23446ff3aeed498822d SHA1: 97e1e0e9d34b2e1aa69da585d8512db6ce72ecf6 SHA256: c1d927679dbfa739fc4a62e9132778e0788339ceb855344713b50776ad330131 Description: Perl module to prevent the leakage of lexical hints Homepage: http://search.cpan.org/dist/Lexical-SealRequireHints/ Description-md5: b9c5697118d7348949143c754e242939 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblightdm-gobject-1-0 Priority: optional Section: x11 Installed-Size: 150 Maintainer: Robert Ancell Architecture: i386 Source: lightdm Version: 1.10.0-0ubuntu3 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libx11-6, libxklavier16 (>= 5.0) Recommends: accountsservice Suggests: lightdm Filename: pool/main/l/lightdm/liblightdm-gobject-1-0_1.10.0-0ubuntu3_i386.deb Size: 32302 MD5sum: f68f7d68bb231b7adcc5c711f328feae SHA1: 9a8ec34f72af459fb382887aa50bfc6e89a570bb SHA256: a9b929bad22bd77913a7117fca18bdfb11b5571135e2a1cbc27e8f27e68cd7a6 Description: LightDM GObject client library Homepage: https://launchpad.net/lightdm Description-md5: 6c3bad2fb3c13c192ee2080b06f2b9b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop Package: liblightdm-gobject-1-dev Priority: optional Section: libdevel Installed-Size: 176 Maintainer: Robert Ancell Architecture: i386 Source: lightdm Version: 1.10.0-0ubuntu3 Depends: liblightdm-gobject-1-0 (= 1.10.0-0ubuntu3), libglib2.0-dev, libdbus-glib-1-dev, libxklavier-dev Filename: pool/main/l/lightdm/liblightdm-gobject-1-dev_1.10.0-0ubuntu3_i386.deb Size: 10802 MD5sum: b7dba891533d42d85a96ba429f2c092c SHA1: ce8c0f49c24241bdf8dc1b8ac3a2355c22b9af4d SHA256: 0695f8b158a88121eaef221501fcb0f6fe8453dbbb12aeae6f9655331d9e4c75 Description: LightDM GObject client library (development files) Homepage: https://launchpad.net/lightdm Description-md5: 7b47429d527a03b25da17dce04d74b8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblightdm-gobject-1-doc Priority: optional Section: doc Installed-Size: 233 Maintainer: Robert Ancell Architecture: all Source: lightdm Version: 1.10.0-0ubuntu3 Filename: pool/main/l/lightdm/liblightdm-gobject-1-doc_1.10.0-0ubuntu3_all.deb Size: 18902 MD5sum: dc19ddfdb71027b0374531356c616d94 SHA1: 4688dd2f96db348a0d20925e54d792e1e9cdaa49 SHA256: 23f9f70359d8cc763aa2f9c555ec6f1a6db28d80cecfa7d2d0d53869466e7be0 Description: LightDM client library (documentation) Homepage: https://launchpad.net/lightdm Description-md5: ed7ca117d51a427f54238d598a2c843e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblightdm-qt-3-0 Priority: optional Section: x11 Installed-Size: 155 Maintainer: Robert Ancell Architecture: i386 Source: lightdm Version: 1.10.0-0ubuntu3 Replaces: liblightdm-qt-1-0 (>= 1.1.1) Depends: libgcc1 (>= 1:4.1.1), liblightdm-gobject-1-0 (>= 1.9.8), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Recommends: lightdm Conflicts: liblightdm-qt-1-0 (>= 1.1.1) Filename: pool/main/l/lightdm/liblightdm-qt-3-0_1.10.0-0ubuntu3_i386.deb Size: 28894 MD5sum: 547eda34fc681bdbd65842bc70ba3a15 SHA1: f8c9534f50fdc1c510031d149e75a78358184018 SHA256: cb4934cd9ecc4fb22012ecb9d8f26ddc0d3a9311c52e1b39e4933b251e6c8ac4 Description: LightDM Qt client library Homepage: https://launchpad.net/lightdm Description-md5: e4829922d725966a3547148f5055fe94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: liblightdm-qt-dev Priority: optional Section: libdevel Installed-Size: 76 Maintainer: Robert Ancell Architecture: i386 Source: lightdm Version: 1.10.0-0ubuntu3 Replaces: liblightdm-qt-1-dev (>= 1.1.1), liblightdm-qt-3-dev Depends: liblightdm-qt-3-0 (= 1.10.0-0ubuntu3), libqt4-dev Breaks: liblightdm-qt-1-dev (>= 1.1.1), liblightdm-qt-3-dev Filename: pool/main/l/lightdm/liblightdm-qt-dev_1.10.0-0ubuntu3_i386.deb Size: 4246 MD5sum: b4323d2e8cec3585eb4c6fc4a167dd13 SHA1: d434658ebd4b90c546216e09cd18646797c6433d SHA256: bcdabf9b3f50ffbecc77c94e9545b2d3f57d9a82a4555179df05701b57034fd0 Description: LightDM Qt client library (development files) Homepage: https://launchpad.net/lightdm Description-md5: ff0d940b50715c82bbf4f79a43e4beb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblightdm-qt5-3-0 Priority: optional Section: x11 Installed-Size: 167 Maintainer: Robert Ancell Architecture: i386 Source: lightdm Version: 1.10.0-0ubuntu3 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), liblightdm-gobject-1-0 (>= 1.9.8), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libstdc++6 (>= 4.1.1) Recommends: lightdm Filename: pool/main/l/lightdm/liblightdm-qt5-3-0_1.10.0-0ubuntu3_i386.deb Size: 30688 MD5sum: 6d9fe696d2134cf7902e3be977b1e57a SHA1: 07484dbf8ebec2013bbe531de7f4ef8a7956959a SHA256: ba43ffafc94b5e16fd82dd522760318f8bd18792756f360fc8a4497a82115481 Description: LightDM Qt 5 client library Homepage: https://launchpad.net/lightdm Description-md5: 14bad12e84d0c8c995dabc65095c9b02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblightdm-qt5-3-dev Priority: optional Section: libdevel Installed-Size: 76 Maintainer: Robert Ancell Architecture: i386 Source: lightdm Version: 1.10.0-0ubuntu3 Depends: liblightdm-qt5-3-0 (= 1.10.0-0ubuntu3), libqt4-dev Filename: pool/main/l/lightdm/liblightdm-qt5-3-dev_1.10.0-0ubuntu3_i386.deb Size: 4220 MD5sum: 353c8ea958eadc04a230a883943ea27f SHA1: d7df87bc1f7e32c165062837bc6ce8e5e901859d SHA256: 0dc489e956caedb0343bd95e2ce05e104e6ea85e842d1d8bbe420c03adb8891f Description: LightDM Qt 5 client library (development files) Homepage: https://launchpad.net/lightdm Description-md5: befe4f3f090b62ea12a3d96e66eeecbd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblinear-dbg Priority: extra Section: debug Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Christian Kastner Architecture: i386 Source: liblinear Version: 1.8+dfsg-1ubuntu1 Depends: liblinear1 (= 1.8+dfsg-1ubuntu1), liblinear-tools (= 1.8+dfsg-1ubuntu1) Filename: pool/main/libl/liblinear/liblinear-dbg_1.8+dfsg-1ubuntu1_i386.deb Size: 8248 MD5sum: a4c2604481936e0c04f920a059122a9d SHA1: 89cd5e0fe97b744881f542cf7fe1fb858777c685 SHA256: 32baa83a4f76da16f6583be6fd372a9d967629f779a90f4253669ceeb7dec839 Description: Debugging symbols for LIBLINEAR Homepage: http://www.csie.ntu.edu.tw/~cjlin/liblinear/ Description-md5: 5d16d2be927d784faffcf4cf1f3b6e77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblinear-dev Priority: optional Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Christian Kastner Architecture: i386 Source: liblinear Version: 1.8+dfsg-1ubuntu1 Depends: liblinear1 (= 1.8+dfsg-1ubuntu1), libblas-dev | libatlas-dev | libblas-3gf.so Filename: pool/main/libl/liblinear/liblinear-dev_1.8+dfsg-1ubuntu1_i386.deb Size: 23254 MD5sum: 4c8a093a918e17ecfe8ec8e028e50a36 SHA1: 8055655f3ebbb7b74073373599e31b41c2ac14cc SHA256: faa406f7b2e0182a63278da0b1b58f423037ddb45bc55d76d583f6e82279d27c Description: Development libraries and header files for LIBLINEAR Homepage: http://www.csie.ntu.edu.tw/~cjlin/liblinear/ Description-md5: 3220f8563b2ab0939512dfdf94c21574 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblinear-tools Priority: optional Section: science Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Christian Kastner Architecture: i386 Source: liblinear Version: 1.8+dfsg-1ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), liblinear1 (= 1.8+dfsg-1ubuntu1), libstdc++6 (>= 4.1.1) Suggests: libsvm-tools Filename: pool/main/libl/liblinear/liblinear-tools_1.8+dfsg-1ubuntu1_i386.deb Size: 18084 MD5sum: 32d595639b49498a37765c471a0942a2 SHA1: 89f9eaa37a6c61dae28205657b39cc8e7785ac1b SHA256: cc3e21428946c05abcacfc9288d4b85345f4bc96957df27c34b425f40c92fce4 Description: Standalone applications for LIBLINEAR Homepage: http://www.csie.ntu.edu.tw/~cjlin/liblinear/ Description-md5: 9f200c7831938a7e2fa45f605ff3452a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblinear1 Priority: optional Section: libs Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Christian Kastner Architecture: i386 Source: liblinear Version: 1.8+dfsg-1ubuntu1 Depends: libblas3 | libblas.so.3 | libatlas3-base, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Recommends: liblinear-tools (= 1.8+dfsg-1ubuntu1) Suggests: liblinear-dev (= 1.8+dfsg-1ubuntu1) Filename: pool/main/libl/liblinear/liblinear1_1.8+dfsg-1ubuntu1_i386.deb Size: 31966 MD5sum: fae841b4746042916f244f71055940ba SHA1: 3e917bacd986e6654fab06fe7db5a70be60843d4 SHA256: 1740f2a8a0287ad8b7fcf4b6a6982a91451ff29b03c03b6f7e5f8d6d4e9e14d7 Description: Library for Large Linear Classification Homepage: http://www.csie.ntu.edu.tw/~cjlin/liblinear/ Description-md5: 8be0b1ca2e45a87f4eaaf60dcb3c7370 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblingua-en-inflect-perl Priority: optional Section: perl Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.895-1 Depends: perl Filename: pool/main/libl/liblingua-en-inflect-perl/liblingua-en-inflect-perl_1.895-1_all.deb Size: 52534 MD5sum: 5669e3aaeecb46710ab88cd31799a7e0 SHA1: 2a8f41f3fb6ca98402c96dd1fa978e8297adba8d SHA256: b01d860b4eaadba7856b509c46edcaed5357d101e255f4286d2d5358edb785e0 Description: Perl module to pluralize English words Homepage: http://search.cpan.org/dist/Lingua-EN-Inflect/ Description-md5: 61155cde9d18a04a2b0a8902f3994062 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblircclient-dev Priority: extra Section: libdevel Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: lirc Maintainer Team Architecture: i386 Source: lirc Version: 0.9.0-0ubuntu5 Depends: liblircclient0 (= 0.9.0-0ubuntu5), libc6-dev Filename: pool/main/l/lirc/liblircclient-dev_0.9.0-0ubuntu5_i386.deb Size: 14376 MD5sum: 6ec4da62849058a36f45ad666db8109d SHA1: c7ce42039cff292c9324be69676f0ba971556b25 SHA256: 6608610778e788d6a7fc80b7560da6b82656f9ce09f3e51ad14d0dca4204fd67 Description: infra-red remote control support - client library development files Homepage: http://lirc.org Description-md5: 31f7c5479fd69da25ef36f26194c585d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblircclient0 Priority: extra Section: libs Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: lirc Maintainer Team Architecture: i386 Source: lirc Version: 0.9.0-0ubuntu5 Depends: libc6 (>= 2.15) Suggests: lirc Filename: pool/main/l/lirc/liblircclient0_0.9.0-0ubuntu5_i386.deb Size: 14432 MD5sum: 72a82a4bd5575f07466015d42522316f SHA1: 08c9e01035fe0620caf02039735dc637311c76c8 SHA256: 8de637c6a1955c72f1914616055d440f55f846d33286950706f1185d36e15fee Description: infra-red remote control support - client library Homepage: http://lirc.org Description-md5: 046c5b09edad2c5176e249c742771de0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblist-moreutils-perl Priority: optional Section: perl Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.33-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libl/liblist-moreutils-perl/liblist-moreutils-perl_0.33-1build3_i386.deb Size: 47828 MD5sum: c78a525eabfe2ca9e0346569a823dc29 SHA1: c2391a2a790f1f4eb1bcb7f8d3a18584672191bb SHA256: 20062902e994e86bee027be2a31f7afed6d06169afd65437c66167ff5dbdd64f Description: Perl module with additional list functions not found in List::Util Homepage: http://search.cpan.org/dist/List-MoreUtils/ Description-md5: db3a03427dc3f850ea1497c8b1cd8ec2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libllvm3.4 Priority: optional Section: libs Installed-Size: 26354 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: i386 Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Depends: libc6 (>= 2.15), libffi6 (>= 3.0.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libtinfo5 Pre-Depends: multiarch-support Filename: pool/main/l/llvm-toolchain-3.4/libllvm3.4_3.4-1ubuntu3_i386.deb Size: 6848794 MD5sum: 0af9bd0db2a24fc067ea05d4a3897c24 SHA1: a21689f69627c513287e898d8dc8f43256c6affd SHA256: 30bbafd8a67ea1b8f72f4c845995da3e23b976bd9abdbcf036edf86c879ad311 Description: Modular compiler and toolchain technologies, runtime library Multi-Arch: same Homepage: http://www.llvm.org/ Description-md5: a8854f4edf76a8c14ce34dc209bd1d11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libllvm3.4-dbg Priority: extra Section: debug Installed-Size: 129469 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: i386 Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Depends: libllvm3.4 Filename: pool/main/l/llvm-toolchain-3.4/libllvm3.4-dbg_3.4-1ubuntu3_i386.deb Size: 128956650 MD5sum: bedad233b64e0c454e64e9296e5c5a71 SHA1: 2a8318231091ed39d1f2e28c0d04bdc24a425754 SHA256: 167da0519e4154e440a8fdb0471f860d3be1a37b617ba3687bd6dcd6f88b0de4 Description: Modular compiler and toolchain technologies, debugging libraries Multi-Arch: same Homepage: http://www.llvm.org/ Description-md5: 37e694cf0eb28c359fc8d8347c3e07fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblocale-gettext-perl Priority: important Section: perl Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.05-7build3 Depends: libc6 (>= 2.2) Pre-Depends: perl-base (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libl/liblocale-gettext-perl/liblocale-gettext-perl_1.05-7build3_i386.deb Size: 19114 MD5sum: ffff289b08a008ca3af4c54d822e1a6a SHA1: 9ed5d23e7100f78da8c9c81cc7c788b6d22692aa SHA256: 15786c3516c8f0958b17d2740053d730d4445c5de20ef51f04f3fd15b9b61324 Description: module using libc functions for internationalization in Perl Homepage: http://search.cpan.org/dist/gettext/gettext.pm Description-md5: 01f5f87916c645596908203fd620ddfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: liblocale-us-perl Priority: optional Section: perl Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.112150-1 Depends: perl, libdata-section-simple-perl Filename: pool/main/libl/liblocale-us-perl/liblocale-us-perl_2.112150-1_all.deb Size: 8002 MD5sum: 89248592d469fa066160805b0bfee7b0 SHA1: d906a015d45b7f6893abda1c6ca9b731bc36cb6d SHA256: 3d3c30dd2bd95b7dae15999583c6d425bd0e4de72d52e3c7d152890b440b775e Description: module for United States state identification Homepage: http://search.cpan.org/dist/Locale-US/ Description-md5: f4dbac33171c20cb1698f06728d1d56f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblockfile-bin Priority: important Section: utils Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Miquel van Smoorenburg Architecture: i386 Source: liblockfile Version: 1.09-6ubuntu1 Replaces: liblockfile1 (<< 1.09-1) Depends: libc6 (>= 2.4) Breaks: liblockfile1 (<< 1.09-1) Filename: pool/main/libl/liblockfile/liblockfile-bin_1.09-6ubuntu1_i386.deb Size: 10728 MD5sum: 4e7668f3684335720e1205e5f6f991a9 SHA1: fe13235439029fedc6542cf3deec46ea785782a6 SHA256: ec8fcea9f719ac42cdf5e303ffdf827ceb85b654b3e4109cd86e2ec5652c3269 Description: support binaries for and cli utilities based on liblockfile Multi-Arch: foreign Description-md5: 5092b0e0777cd0836ff80770762ad2eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: liblockfile-dev Priority: optional Section: libdevel Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Miquel van Smoorenburg Architecture: i386 Source: liblockfile Version: 1.09-6ubuntu1 Depends: liblockfile1 (= 1.09-6ubuntu1) Filename: pool/main/libl/liblockfile/liblockfile-dev_1.09-6ubuntu1_i386.deb Size: 19670 MD5sum: 9c7f0b322ae2ef2d7aaa858faab1ae48 SHA1: 8fe7b72662ede638357a99df05224a9500b56487 SHA256: 32da7f75e25f7138dc845319ce2e22ec45055cf62e4045097f75412e9ef51b3f Description: Development library for liblockfile Description-md5: 9a33670df857a6d06f73115de1b4f4e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblockfile1 Priority: important Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Miquel van Smoorenburg Architecture: i386 Source: liblockfile Version: 1.09-6ubuntu1 Depends: libc6 (>= 2.4), liblockfile-bin (>= 1.09-6ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/libl/liblockfile/liblockfile1_1.09-6ubuntu1_i386.deb Size: 7926 MD5sum: 9b94eba677fef1f12081e0d3db2f976e SHA1: 7e7ac15e25f6386500545877418d7feebfbf42cc SHA256: 59d053d319512295ff4d5d1e099d5d75cba667afe5d9e2c0962cb2e07ceffc30 Description: NFS-safe locking library Multi-Arch: same Description-md5: ebb60445a5d00569c862ce1b525464b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: liblog-log4perl-perl Priority: optional Section: perl Installed-Size: 976 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: all Version: 1.41-1.1ubuntu1 Depends: perl Suggests: libdbd-csv-perl, libxml-dom-perl, liblog-dispatch-perl, libipc-shareable-perl Filename: pool/main/libl/liblog-log4perl-perl/liblog-log4perl-perl_1.41-1.1ubuntu1_all.deb Size: 444298 MD5sum: 2518afea66711e32aa536c0aa4f91e71 SHA1: 7132a002fc5e8efa737fed6a2bfa7b8c736462b5 SHA256: 82ea689cc0d53fa8714a91d5cb9330c7e0585c12f694b79a359ad3442c4f10d8 Description: Perl port of the widely popular log4j logging package Homepage: http://search.cpan.org/~mschilli/Log-Log4perl-1.41/lib/Log/Log4perl.pm Description-md5: 9e005eb1ccc61e884f2b61dc68741413 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblog-message-simple-perl Priority: important Section: perl Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.10-1 Depends: perl Filename: pool/main/libl/liblog-message-simple-perl/liblog-message-simple-perl_0.10-1_all.deb Size: 7656 MD5sum: c5d27a17c2342eaec7bce73d2959ebc2 SHA1: c0bce47d564f07ab2ce21bb8bb531231830b4ff9 SHA256: d85145512584debb1892d42944455fd2e0d5c12bbd751cfc5c10d9f4b3ad5ae4 Description: simplified interface to Log::Message Homepage: https://metacpan.org/release/Log-Message-Simple/ Description-md5: a2c3a8ce0f1403ea00fb8c093f3585bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: liblog4j1.2-java Priority: optional Section: libs Installed-Size: 471 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: apache-log4j1.2 Version: 1.2.17-4ubuntu3 Suggests: liblog4j1.2-java-doc, libgnumail-java Filename: pool/main/a/apache-log4j1.2/liblog4j1.2-java_1.2.17-4ubuntu3_all.deb Size: 382548 MD5sum: e42a1c68f176e5b4b12b850afae2ec8b SHA1: 8b66b8d9bc9a3d50d78b36a6497eb5fbef73b8b3 SHA256: 28fda4b513eea5588d61cd88a381a33338e2ec5964d4e00cf8db052df79b2f48 Description: Logging library for java Homepage: http://logging.apache.org/log4j/1.2/ Description-md5: 6852e874e3a0a408361775c4958b1233 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblog4j1.2-java-doc Priority: optional Section: doc Installed-Size: 5691 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: apache-log4j1.2 Version: 1.2.17-4ubuntu3 Depends: default-jdk-doc Filename: pool/main/a/apache-log4j1.2/liblog4j1.2-java-doc_1.2.17-4ubuntu3_all.deb Size: 255456 MD5sum: bb74ccaa866e67e73503d18727882b33 SHA1: 1092534e1e11a11fabf361b33eb7e6d3fbdf09ac SHA256: 1d5c29021e18784f26d62cc30de520f2a4b228ac7ee8b84778d93ed0e57f1719 Description: Documentation for liblog4j1.2-java Homepage: http://logging.apache.org/log4j/1.2/ Description-md5: 4de3d2b07bbd8d616f084238c912527a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblog4net-cil-dev Priority: optional Section: libs Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: log4net Version: 1.2.10+dfsg-6 Replaces: liblog4net-cil, liblog4net1.2-cil (<< 1.2.10+dfsg-4) Depends: liblog4net1.2-cil (= 1.2.10+dfsg-6) Filename: pool/main/l/log4net/liblog4net-cil-dev_1.2.10+dfsg-6_all.deb Size: 5676 MD5sum: 46356fb9b509d9db66dcef4a69292e2f SHA1: b6dbb29d8b1e430b4e0fd53f1430ecd5f2b8027d SHA256: 50c30ccb6de19042d85123ecf61ab3815884bfaa5b86de076be656c4d563326f Description: highly configurable logging API for the CLI Homepage: http://logging.apache.org/log4net/ Description-md5: cf21e8f012cbc72f9e8bf9c1f27640c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblog4net1.2-cil Priority: optional Section: libs Installed-Size: 309 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: log4net Version: 1.2.10+dfsg-6 Replaces: liblog4net-cil Depends: cli-common (>= 0.5.6), libc6 (>= 2.15) | libc6.1 (>= 2.15) | libc0.1 (>= 2.15), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-data4.0-cil (>= 2.10.1), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 1.0), libmono-system4.0-cil (>= 2.10.7) Filename: pool/main/l/log4net/liblog4net1.2-cil_1.2.10+dfsg-6_all.deb Size: 100872 MD5sum: 90cb0c14c17e8367b9e992845f5385be SHA1: dbac19b48f7b48723b4d637e6c4e1c7c239f3aff SHA256: 37597342260659a379fd66f630cf0288ffcde4237082503c38838c155748ab98 Description: highly configurable logging API for the CLI Homepage: http://logging.apache.org/log4net/ Description-md5: 18cf719b7f552ecdddb6bd473c10790f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblouis-data Priority: extra Section: text Installed-Size: 5815 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: liblouis Version: 2.5.3-2ubuntu1 Filename: pool/main/libl/liblouis/liblouis-data_2.5.3-2ubuntu1_all.deb Size: 1008552 MD5sum: 382a8b524eea68836874cf28b30e15f3 SHA1: 8ff3b34a4a36289079222958473bc44aba59078f SHA256: b7ef1d4bcf6a8ed0e16715869fdc28da255f47047df62a928317a2ca7b82c33e Description: Braille translation library - data Multi-Arch: foreign Homepage: http://code.google.com/p/liblouis/ Description-md5: 893cb8fa7f66f351dd0d6bbf87a94bab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblouis-dev Priority: extra Section: libdevel Installed-Size: 488 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: liblouis Version: 2.5.3-2ubuntu1 Depends: liblouis2 (= 2.5.3-2ubuntu1) Filename: pool/main/libl/liblouis/liblouis-dev_2.5.3-2ubuntu1_i386.deb Size: 163126 MD5sum: 9fbb773b15076bb35f2cfc86f0032869 SHA1: 222e766a398a241e09c7e5628114b95e56a33de6 SHA256: d823ddd8c1d8d90261f557214cffcf1442fd79df3f618aff8b43362033ebd79d Description: Braille translation library - static libs and headers Multi-Arch: same Homepage: http://code.google.com/p/liblouis/ Description-md5: 835f535ec527fdb854cd10e2ecbb2a63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblouis2 Priority: extra Section: libs Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: liblouis Version: 2.5.3-2ubuntu1 Depends: libc6 (>= 2.4), liblouis-data Pre-Depends: multiarch-support Filename: pool/main/libl/liblouis/liblouis2_2.5.3-2ubuntu1_i386.deb Size: 48108 MD5sum: 6f62f70df4a50f007d741bceac39e417 SHA1: 99c80b9d94ef2b445ae7da51b0fc5ecdfddde1ef SHA256: 7775b210805342504519ace776869658595c555f4ac820318787c897201d59ca Description: Braille translation library - shared libs Multi-Arch: same Homepage: http://code.google.com/p/liblouis/ Description-md5: 40448590cf7dc3c13633552fcd3ac521 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblpsolve55-dev Priority: optional Section: math Installed-Size: 1772 Maintainer: Ubuntu Developers Original-Maintainer: Juan Esteban Monsalve Tobon Architecture: i386 Source: lp-solve Version: 5.5.0.13-7build1 Depends: libsuitesparse-dev Filename: pool/main/l/lp-solve/liblpsolve55-dev_5.5.0.13-7build1_i386.deb Size: 473352 MD5sum: 929419f91aa85bdabe3177bfcbeac973 SHA1: c702899062f7ce7aa4809c5ad4855001fc7b984c SHA256: da48e4157d538a294abfab7003dfd98e424b1048bba54418806399ff27a857bc Description: Solve (mixed integer) linear programming problems - library Homepage: http://lpsolve.sourceforge.net Description-md5: ab4882ddda62b748bf8b44c8f0be3230 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblqr-1-0 Priority: optional Section: libs Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: i386 Source: liblqr Version: 0.4.1-2ubuntu1 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.24.0) Pre-Depends: multiarch-support Filename: pool/main/libl/liblqr/liblqr-1-0_0.4.1-2ubuntu1_i386.deb Size: 22688 MD5sum: 9f7b6f1c7245d284303ece8de24298fd SHA1: 64816de44d88033c0d1d23dcb521c4345a672016 SHA256: 661291328e7bc497d4e07cae804a59e3a6ab8bf495e5a1da989f78f4a0cb0114 Description: converts plain array images into multi-size representation Multi-Arch: same Homepage: http://liblqr.wikidot.com/ Description-md5: 95ac0eca95e73974478fdecc7717176c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: liblqr-1-0-dbg Priority: extra Section: libdevel Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: i386 Source: liblqr Version: 0.4.1-2ubuntu1 Depends: liblqr-1-0 (= 0.4.1-2ubuntu1) Filename: pool/main/libl/liblqr/liblqr-1-0-dbg_0.4.1-2ubuntu1_i386.deb Size: 5890 MD5sum: 9637b38ff9b6182845a3335c0f6cd068 SHA1: e207e34869943d62143059cc34dfc8aa82c70e83 SHA256: ba056c750a02af0764fb8f844f54bb72c54b72d8c64e5f97bcfd339bf1f85ee7 Description: converts plain array images into multi-size representation (debug package) Homepage: http://liblqr.wikidot.com/ Description-md5: 01810b5067619c4b49ed534b13fd4454 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblqr-1-0-dev Priority: optional Section: libdevel Installed-Size: 788 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: i386 Source: liblqr Version: 0.4.1-2ubuntu1 Provides: liblqr-dev Depends: liblqr-1-0 (= 0.4.1-2ubuntu1) Conflicts: liblqr-dev Filename: pool/main/libl/liblqr/liblqr-1-0-dev_0.4.1-2ubuntu1_i386.deb Size: 134026 MD5sum: a37101e5b1456eba724619756e4b9df2 SHA1: 77330171a0c194cf8b57fe5acc2d28fda87b9104 SHA256: 579e15a7d6c980dd82ddae0e4213d005145aa9cc2e1ccecb9f8ce9463af37313 Description: converts plain array images into multi-size representation (developments files) Homepage: http://liblqr.wikidot.com/ Description-md5: e20a0631003a2d0bd4e7db73d74e95e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblrm2 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue (<= 1.0.6-1) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.24.0), libplumb2 (>= 1.0.11+hg2754) Conflicts: libcluster-glue (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/liblrm2_1.0.11+hg2754-1.1build1_i386.deb Size: 13912 MD5sum: 8a7d911beb772106e2f919bae4b55184 SHA1: 4b6789b6946b2805e2a8c297ae71f4b3c29bcca9 SHA256: 9798162031ec92e29f6a17977d93713341c615de33214a47c00e3bb29c4f4ec6 Description: Reusable cluster libraries -- liblrm2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 000b7bd6663855f827735e673579b02c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblrm2-dev Priority: optional Section: libdevel Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1) Depends: liblrm2 (= 1.0.11+hg2754-1.1build1) Conflicts: libcluster-glue-dev (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/liblrm2-dev_1.0.11+hg2754-1.1build1_i386.deb Size: 22342 MD5sum: 9ba56fae15a902f95fbfdb47c12bee54 SHA1: 2e7dbc8c0350e6ede039cfdca5cf0cfded6ee513 SHA256: 29d422e4ebe602a31d7ef199b337915b9b3678f80deb30e179ef80002a14e589 Description: Reusable cluster development files -- liblrm Homepage: http://hg.linux-ha.org/glue/ Description-md5: 04a379345e7ea65d11b1ed792b7efe1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblrmd1 Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Depends: libc6 (>= 2.4), libcrmcommon3 (>= 1.1.10+git20130802), libcrmservice1 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libgnutls26 (>= 2.12.17-0), libqb0, libstonithd2 (>= 1.1.10+git20130802), libxml2 (>= 2.7.4) Filename: pool/main/p/pacemaker/liblrmd1_1.1.10+git20130802-1ubuntu2_i386.deb Size: 17872 MD5sum: a39766e0a53522c4086c050f4c65561e SHA1: 248b6dd7eaf7b9b0947aa09172a15215fa70ad5b SHA256: 72a31996cdefedc77d491a551583143d3205f576957e3c809c142fca9615a989 Description: Pacemaker libraries - lrmd Homepage: http://clusterlabs.org/ Description-md5: de6573b7d14f11e4d6b515edcc19cba2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblrmd1-dev Priority: optional Section: libdevel Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Depends: liblrmd1 (= 1.1.10+git20130802-1ubuntu2) Filename: pool/main/p/pacemaker/liblrmd1-dev_1.1.10+git20130802-1ubuntu2_i386.deb Size: 23112 MD5sum: b0cbd7bbdfcbe8716608cb7342396b57 SHA1: 805b0b1c4ad073ce319959da3761f8b6838c08ff SHA256: 86152f15a7145a5eb821af71fa26cf6911b01f41f24928e99beb2a4e9ba55417 Description: Development file for pacemaker's lrmd library Homepage: http://clusterlabs.org/ Description-md5: 863ba4bcb2d8fb0a246a702bdbb9631e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libltdl-dev Priority: optional Section: libdevel Installed-Size: 902 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: i386 Source: libtool Version: 2.4.2-1.7ubuntu1 Replaces: libltdl3-dev, libltdl7-dev, libtool (<< 1.5.20) Provides: libltdl3-dev, libltdl7-dev Depends: libltdl7 (= 2.4.2-1.7ubuntu1) Recommends: libtool Suggests: libtool-doc Conflicts: libltdl3-dev, libltdl7-dev, libtool (<< 1.5.20), libtool1.4 Filename: pool/main/libt/libtool/libltdl-dev_2.4.2-1.7ubuntu1_i386.deb Size: 156710 MD5sum: 84e1c3b432eca516234bc3a2affd2314 SHA1: 3458d350f4bf8893728e75e61e63caa842d9a47b SHA256: ba3e59c8895d5da4a4354abd83d5aa4702c336e878f82c78115519aa9662dd0a Description: A system independent dlopen wrapper for GNU libtool Multi-Arch: same Homepage: http://www.gnu.org/software/libtool/ Description-md5: 558216e7969b9db60e2f2709a38a748b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libltdl7 Priority: optional Section: libs Installed-Size: 396 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: i386 Source: libtool Version: 2.4.2-1.7ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libt/libtool/libltdl7_2.4.2-1.7ubuntu1_i386.deb Size: 35196 MD5sum: 030a85d619faa8d959052abb5362e973 SHA1: 1ec90ded668684dd6d0dd6bdd3f2d49e70c000cf SHA256: 8a28579b917ad61455080e0556a037941daac4f978ee0a055841ced38ef6ac34 Description: A system independent dlopen wrapper for GNU libtool Multi-Arch: same Homepage: http://www.gnu.org/software/libtool/ Description-md5: 29b165ca5a1c370af592e0476b6ae440 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblttng-ust-ctl2 Priority: extra Section: libs Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Jon Bernard Architecture: i386 Source: ust Version: 2.4.0-4ubuntu1 Replaces: liblttng-ust2 Depends: libc6 (>= 2.6), liburcu1 (>= 0.7.2) Pre-Depends: multiarch-support Conflicts: liblttng-ust2 Filename: pool/main/u/ust/liblttng-ust-ctl2_2.4.0-4ubuntu1_i386.deb Size: 62288 MD5sum: 61332cedd451b2fe32c31a38595b56cf SHA1: 06fe3bec4c14565034b122a9105b25e1a42be985 SHA256: 7618f447336f3ed26a96c8ee89e73e0e22e0db344e8aef18455dd056264eb1e6 Description: LTTng 2.0 Userspace Tracer (trace control library) Multi-Arch: same Homepage: http://lttng.org/ Description-md5: c0fd516a7850c0d213bf248282b965d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblttng-ust-dev Priority: extra Section: libdevel Installed-Size: 1061 Maintainer: Ubuntu Developers Original-Maintainer: Jon Bernard Architecture: i386 Source: ust Version: 2.4.0-4ubuntu1 Replaces: liblttng-ust2 Depends: liblttng-ust0 (= 2.4.0-4ubuntu1), liblttng-ust-ctl2 (= 2.4.0-4ubuntu1), liburcu-dev (>= 0.7.2), uuid-dev, systemtap-sdt-dev (>= 1.6) Recommends: python3 Conflicts: liblttng-ust2 Breaks: liblttng-ust0 (<< 2.3.0) Filename: pool/main/u/ust/liblttng-ust-dev_2.4.0-4ubuntu1_i386.deb Size: 157226 MD5sum: 584ebd8f44964b90b55fdec11e130116 SHA1: 99b78c945beccab1ec63014f3e31c61c58d40f0c SHA256: d3762f485b3feeae95a8d7d68ffcfd8bb2f7ee6a91ce17550700919474e52636 Description: LTTng 2.0 Userspace Tracer (development files) Multi-Arch: same Homepage: http://lttng.org/ Description-md5: 8c082ca31fd5ccc4637789709bb35acd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblttng-ust0 Priority: extra Section: libs Installed-Size: 459 Maintainer: Ubuntu Developers Original-Maintainer: Jon Bernard Architecture: i386 Source: ust Version: 2.4.0-4ubuntu1 Replaces: liblttng-ust2 Depends: libc6 (>= 2.6), liburcu1 (>= 0.7.2), liblttng-ust-ctl2 (= 2.4.0-4ubuntu1) Pre-Depends: multiarch-support Conflicts: liblttng-ust2 Filename: pool/main/u/ust/liblttng-ust0_2.4.0-4ubuntu1_i386.deb Size: 103800 MD5sum: b115b985684d4e8748f0d29b308476b3 SHA1: e1f1555f6893ed230005e9bb2aedefeb9f0dcb83 SHA256: 8f141871debf87026b190903ab61efd26d116ade8abd9c878a3261e30cd39fcf Description: LTTng 2.0 Userspace Tracer (tracing libraries) Multi-Arch: same Homepage: http://lttng.org/ Description-md5: df92ac20f115864b9c7d25996ddc4506 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.1-0 Priority: optional Section: libs Installed-Size: 396 Maintainer: Ubuntu Developers Original-Maintainer: John V. Belmonte Architecture: i386 Source: lua5.1 Version: 5.1.5-5 Depends: libc6 (>= 2.11), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/l/lua5.1/liblua5.1-0_5.1.5-5_i386.deb Size: 174660 MD5sum: 18247d89409098a49a0de5bc66e982f5 SHA1: 267a5104d81cd1980786d6a25497c0c06523c778 SHA256: cea4994828f8af05f054766da9b1989431163289b9d3fb83484eab2424fa719d Description: Shared library for the Lua interpreter version 5.1 Multi-Arch: same Homepage: http://www.lua.org Description-md5: bc352b5115dff05ff2aede2bb7cb6dbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-audio Package: liblua5.1-0-dbg Priority: optional Section: libs Installed-Size: 866 Maintainer: Ubuntu Developers Original-Maintainer: John V. Belmonte Architecture: i386 Source: lua5.1 Version: 5.1.5-5 Depends: liblua5.1-0 (= 5.1.5-5) Filename: pool/main/l/lua5.1/liblua5.1-0-dbg_5.1.5-5_i386.deb Size: 759454 MD5sum: 70633e2e4f54579f245973f4a16d122d SHA1: 3c2fbf413a8493099db699aef70a7b42b5e666a1 SHA256: a2627e5249d35b9bec7f4607e950bb45cfb0a82c6c24aff82bff27d36d9b2dea Description: Debug symbols for the Lua shared library interpreter Multi-Arch: same Homepage: http://www.lua.org Description-md5: 54e8189837a8abfaff0a371b2a10bb96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.1-0-dev Priority: optional Section: libdevel Installed-Size: 602 Maintainer: Ubuntu Developers Original-Maintainer: John V. Belmonte Architecture: i386 Source: lua5.1 Version: 5.1.5-5 Provides: liblua5.1-dev Depends: liblua5.1-0 (= 5.1.5-5), libc6-dev | libc-dev, libreadline-dev Recommends: pkg-config, libtool Conflicts: liblua5.1-dev Filename: pool/main/l/lua5.1/liblua5.1-0-dev_5.1.5-5_i386.deb Size: 208512 MD5sum: ced960b191c771eb3bb6c0982ec51f81 SHA1: bbd66b82129c7eeb760917c0654f8e20d7e987be SHA256: 54d568c6b082522f2c4c5f7326755aeb2b06b069209b89168911d3d89f75196e Description: Development files for the Lua language version 5.1 Multi-Arch: same Homepage: http://www.lua.org Description-md5: 883de8c555030d5626a244d06f1d320d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.2-0 Priority: optional Section: libs Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Tassi Architecture: i386 Source: lua5.2 Version: 5.2.3-1 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/l/lua5.2/liblua5.2-0_5.2.3-1_i386.deb Size: 81970 MD5sum: adb43923bd723361cf8a833d32a364c0 SHA1: c16ac8c2edb12af402a40fb409572cbb7d39dcce SHA256: 22647176828396d9be41090f71fdf080d5c22aee58bd41e58258f2c06943157a Description: Shared library for the Lua interpreter version 5.2 Multi-Arch: same Homepage: http://www.lua.org Description-md5: 0e94c74e97a48f7da19ae355a7044d10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-photography, ubuntu-gnome-desktop Package: liblua5.2-0-dbg Priority: extra Section: debug Installed-Size: 714 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Tassi Architecture: i386 Source: lua5.2 Version: 5.2.3-1 Depends: liblua5.2-0 (= 5.2.3-1) Filename: pool/main/l/lua5.2/liblua5.2-0-dbg_5.2.3-1_i386.deb Size: 619950 MD5sum: 955c1c55e0d3fb768deb8493b338855f SHA1: 539a9c695341b0a0396ce7ee5880a34a6996b2b9 SHA256: 76e105e850dc72f81738da83a8e7265f663a5ed5143a0fb86b4d2660d0c95867 Description: Debug symbols for the Lua shared library interpreter Multi-Arch: same Homepage: http://www.lua.org Description-md5: 3287de5f0e8eefdb47fc353923fb8d73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.2-dev Priority: optional Section: libdevel Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Tassi Architecture: i386 Source: lua5.2 Version: 5.2.3-1 Depends: liblua5.2-0 (= 5.2.3-1), libc6-dev | libc-dev, libreadline-dev Recommends: pkg-config, libtool Filename: pool/main/l/lua5.2/liblua5.2-dev_5.2.3-1_i386.deb Size: 98260 MD5sum: 5bc1f98bf472df29b25006ad85677a47 SHA1: 3ab01bf4f1a9908683a4b9114038819eafa693bb SHA256: 206a787c18842afa8184c37bc55f421a878024544f4df44444df8ca6b0c6e5e4 Description: Development files for the Lua language version 5.2 Multi-Arch: same Homepage: http://www.lua.org Description-md5: cb939e19e8470a092c76923ad164a65d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.2-rrd-dev Priority: optional Section: libdevel Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: i386 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: liblua5.2-rrd0 (= 1.4.7-2ubuntu5) Filename: pool/main/r/rrdtool/liblua5.2-rrd-dev_1.4.7-2ubuntu5_i386.deb Size: 14810 MD5sum: 8b977c23b38e025b464f9808c23128dd SHA1: e34971dab5266166c4519b2ed5431419dd67bedc SHA256: c00b02a341c0b383fb6162859c4278abae551c8e27fb878d720a865ec75d224a Description: time-series data storage and display system (Lua 5.2 development) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: 6b23a791c3d91be27374508c94dcffec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblua5.2-rrd0 Priority: optional Section: interpreters Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: i386 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: libc6 (>= 2.1.3), liblua5.2-0, librrd4 (>= 1.4~rc2) Filename: pool/main/r/rrdtool/liblua5.2-rrd0_1.4.7-2ubuntu5_i386.deb Size: 10010 MD5sum: 00a06ccbe6a5baef997923e1719624e9 SHA1: 5c9986e69c6b4f34b319a3b7974b312fccec6007 SHA256: 9fd6c38573cf9fc1f37b1c0ab4bf4ada89dbf42dfbaaf251942f1b25f6a16218 Description: time-series data storage and display system (Lua 5.2 interface) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: 3cb978d761714fe89b86ec1b5fccc5f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblvm2-dev Priority: optional Section: libdevel Installed-Size: 154 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: i386 Source: lvm2 Version: 2.02.98-6ubuntu2 Depends: liblvm2app2.2 (= 2.02.98-6ubuntu2), liblvm2cmd2.02 (= 2.02.98-6ubuntu2), libdevmapper-dev Filename: pool/main/l/lvm2/liblvm2-dev_2.02.98-6ubuntu2_i386.deb Size: 9988 MD5sum: 3f59977752364b407004d34095d79efd SHA1: 35080380fca1b2e7e2a218f78e9aacf4672b14d8 SHA256: c6518b87ac6f290c39ebc2580fedaa9fe91e3f811b3f8ab844590bb14dc8a1db Description: LVM2 libraries - development files Homepage: http://sources.redhat.com/lvm2/ Description-md5: 9355c51a0fa4f1589861097790213f32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblvm2app2.2 Priority: optional Section: libs Installed-Size: 809 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: i386 Source: lvm2 Version: 2.02.98-6ubuntu2 Depends: libc6 (>= 2.4), libdevmapper-event1.02.1 (>= 2:1.02.74), libdevmapper1.02.1 (>= 2:1.02.77), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/l/lvm2/liblvm2app2.2_2.02.98-6ubuntu2_i386.deb Size: 246826 MD5sum: 1f42a99374a1fead76f44b98fcf4208d SHA1: f9aed3a876487a044d36479d86685ff457aa05a0 SHA256: 8e00431f8b850ea5fc763da3bf757019ec0901ffec893eb55cc69df598281552 Description: LVM2 application library Multi-Arch: same Homepage: http://sources.redhat.com/lvm2/ Description-md5: 577f83d733f4a66a06fad9f3866d0316 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: kubuntu-active Package: liblvm2cmd2.02 Priority: optional Section: libs Installed-Size: 1100 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: i386 Source: lvm2 Version: 2.02.98-6ubuntu2 Depends: libc6 (>= 2.4), libdevmapper-event1.02.1 (>= 2:1.02.74), libdevmapper1.02.1 (>= 2:1.02.77), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/l/lvm2/liblvm2cmd2.02_2.02.98-6ubuntu2_i386.deb Size: 336616 MD5sum: fbbe58fac54012ffd2329626a3ead4de SHA1: 84f696cea9c9cad1cd4dc9ec7feda1c71472cad8 SHA256: 0f066d12d888acf29a2e958eda50aca2739e85e1246e3fb3d6dd8b7db2c67b6a Description: LVM2 command library Multi-Arch: same Homepage: http://sources.redhat.com/lvm2/ Description-md5: 8f4d76592086bd210b07fd8b6370be43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblwp-mediatypes-perl Priority: optional Section: perl Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.02-1 Replaces: libwww-perl (<< 6.00) Depends: perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libl/liblwp-mediatypes-perl/liblwp-mediatypes-perl_6.02-1_all.deb Size: 21690 MD5sum: 654e7f05d341f4a859799eec9538b2c0 SHA1: 55ae4ed3668dcbe02a918947bf75929040a6c5c0 SHA256: bfc80beb41aad1a1ea886ec3605cb692eff10d4451d902520b8db443ee66c96a Description: module to guess media type for a file or a URL Homepage: http://search.cpan.org/dist/LWP-MediaTypes/ Description-md5: 39f3a89fb73f99e7871809c2c0d8f938 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblwp-protocol-https-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.04-2 Replaces: libwww-perl (<< 6.02) Depends: perl, ca-certificates, libio-socket-ssl-perl (>= 1.54), libnet-http-perl, libwww-perl (>= 6.05-2) Suggests: libcrypt-ssleay-perl Breaks: libwww-perl (<< 6.02) Filename: pool/main/libl/liblwp-protocol-https-perl/liblwp-protocol-https-perl_6.04-2_all.deb Size: 7330 MD5sum: 98bc7db146229678cd593c94cbcbf876 SHA1: 28b8238f21bb8f29a4760fb4866ddf8acde270ba SHA256: bdc7dc9e6f2530d84997aa670ec7022f7eeb9a736dfcae7b92e1e8f8935e4a81 Description: HTTPS driver for LWP::UserAgent Homepage: https://metacpan.org/release/LWP-Protocol-https/ Description-md5: 535f9e50e5b283e9fd71fec3f0a43cd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liblwres90 Priority: standard Section: libs Installed-Size: 126 Maintainer: LaMont Jones Architecture: i386 Source: bind9 Version: 1:9.9.5.dfsg-3 Replaces: libbind0 Depends: libc6 (>= 2.15) Conflicts: libbind0 Filename: pool/main/b/bind9/liblwres90_9.9.5.dfsg-3_i386.deb Size: 32406 MD5sum: e699a2c476d30d4e82bfb5c105ff1b0c SHA1: 51ae04b3809d2b0644212b2135e963b174553b20 SHA256: ca8527aecb4557f67c534a56418775c4332e0a0d8baae474935e059d90a5fa34 Description: Lightweight Resolver Library used by BIND Description-md5: 6c5041f39bdcc8de6092f4354d6f893b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: liblxc1 Priority: optional Section: admin Installed-Size: 484 Maintainer: Ubuntu Developers Architecture: i386 Source: lxc Version: 1.0.3-0ubuntu3 Replaces: liblxc0, lxc (<< 0.9.0~alpha3-0ubuntu1~) Provides: liblxc0 Depends: cgmanager, rsync, libapparmor1 (>= 2.6~devel), libc6 (>= 2.17), libcap2 (>= 2.10), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libseccomp2 (>= 2.1.0), libselinux1 (>= 1.32) Pre-Depends: multiarch-support Recommends: uidmap Conflicts: liblxc0 Breaks: lxc (<< 0.9.0~alpha3-0ubuntu1~) Filename: pool/main/l/lxc/liblxc1_1.0.3-0ubuntu3_i386.deb Size: 147856 MD5sum: 026c1bdf955ea68e5d2a3e06b0d89036 SHA1: 188dd7733def057e2829c18bb5574847445ac954 SHA256: c48c8c034e1c867803dffd8074791983da6fc0b44473b42988519e9c1ceffa12 Description: Linux Containers userspace tools (library) Homepage: http://linuxcontainers.org Description-md5: d757397b1a93a5bea5c72032f3ef485d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: liblzma-dev Priority: extra Section: libdevel Installed-Size: 591 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan Nieder Architecture: i386 Source: xz-utils Version: 5.1.1alpha+20120614-2ubuntu2 Depends: liblzma5 (= 5.1.1alpha+20120614-2ubuntu2) Suggests: liblzma-doc Filename: pool/main/x/xz-utils/liblzma-dev_5.1.1alpha+20120614-2ubuntu2_i386.deb Size: 138798 MD5sum: fa9e4b1e19f9b7a60692d1e99818545f SHA1: b78e98fdf458846c3119b43ae752cd3d8528171f SHA256: 184571df22708e50320d642305283ac549c60bb1950cc234cd4c38b07abd1b8f Description: XZ-format compression library - development files Multi-Arch: same Homepage: http://tukaani.org/xz/ Description-md5: d19d3f899b3a1d8a68ae0473ad3f9283 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblzma-doc Priority: extra Section: doc Installed-Size: 3606 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan Nieder Architecture: all Source: xz-utils Version: 5.1.1alpha+20120614-2ubuntu2 Suggests: liblzma-dev Filename: pool/main/x/xz-utils/liblzma-doc_5.1.1alpha+20120614-2ubuntu2_all.deb Size: 229538 MD5sum: 1261e77153d8e954bff6efa2bad3db61 SHA1: 9e73e3d022d23fcd6914446309653dc04c7c0e17 SHA256: 2209c2dedc9cd63f342d8afb0244a7fc7766e82b219a955bc4cb9b742965d149 Description: XZ-format compression library - API documentation Homepage: http://tukaani.org/xz/ Description-md5: 69771d1d5fd604c471f896760682a908 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liblzma5 Priority: required Section: libs Installed-Size: 316 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan Nieder Architecture: i386 Source: xz-utils Version: 5.1.1alpha+20120614-2ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/x/xz-utils/liblzma5_5.1.1alpha+20120614-2ubuntu2_i386.deb Size: 84242 MD5sum: 63c5b9be069f7ed2ba6da668a6e9d8e5 SHA1: c33d5b93f813fdbd718116865c3a949691d64080 SHA256: ac8a5d30b2e0056ccb985e8d9c1b5c1c06159419fed09bf8841cc14cafea1a7a Description: XZ-format compression library Multi-Arch: same Homepage: http://tukaani.org/xz/ Description-md5: 0ceca09eb4ab99863be3578fa55e7d2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: liblzo2-2 Priority: optional Section: libs Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: i386 Source: lzo2 Version: 2.06-1.2ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/l/lzo2/liblzo2-2_2.06-1.2ubuntu1_i386.deb Size: 49342 MD5sum: 115d8d60325574f7fc255e0cbafab77c SHA1: a6f6a92c71e6f1a417e087064f9218d98388ac5e SHA256: 56410072baea848d6fb2744a4c6ae4a9090bbc7332687bf53824b9d08df10ba1 Description: data compression library Multi-Arch: same Homepage: http://www.oberhumer.com/opensource/lzo/ Description-md5: 6acbb2b98752f4160eba6ec78c11bb54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-live, ubuntu-usb, kubuntu-desktop, kubuntu-live, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-live, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-dvd-live, edubuntu-usb, xubuntu-desktop, xubuntu-live, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-dvd-live, ubuntu-gnome-desktop, ubuntu-gnome-live Package: liblzo2-dev Priority: optional Section: libdevel Installed-Size: 650 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: i386 Source: lzo2 Version: 2.06-1.2ubuntu1 Replaces: liblzo-dev Depends: liblzo2-2 (= 2.06-1.2ubuntu1), libc6-dev Filename: pool/main/l/lzo2/liblzo2-dev_2.06-1.2ubuntu1_i386.deb Size: 95382 MD5sum: 746c1c254fbcd19fb72f76c35938b897 SHA1: 9fef1f394ddcab10c3d25b7193e4083fedda3361 SHA256: 529758a1edd29f1b86cd521d5a41d9406cbc2a4c35a6c77c853b7a13e1750778 Description: data compression library (development files) Multi-Arch: same Homepage: http://www.oberhumer.com/opensource/lzo/ Description-md5: 33a9c8476074f27fdf0d1f013ef98be9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libm17n-0 Priority: optional Section: libs Installed-Size: 605 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: i386 Source: m17n-lib Version: 1.6.4-2ubuntu1 Depends: libc6 (>= 2.7), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libfribidi0 (>= 0.19.2), libgd3 (>= 2.1.0~alpha~), libotf0 (>= 0.9.11), libthai0 (>= 0.1.12), libx11-6, libxft2 (>> 2.1.1), libxml2 (>= 2.7.4), libxt6, m17n-db (>= 1.6.0), m17n-contrib Suggests: m17n-docs Filename: pool/main/m/m17n-lib/libm17n-0_1.6.4-2ubuntu1_i386.deb Size: 229734 MD5sum: db3b3229576f345c5e1fad5a8f6f2c9b SHA1: 4377145737959162965ac17d46fd1238fc9cf65b SHA256: 920925fc1d113fe3a8d688065de35a527e6aeb21fe4ee71a43e83f4de05c90ec Description: multilingual text processing library - runtime Homepage: http://www.nongnu.org/m17n/ Description-md5: 246a450e6bd01a098f1121b3d4600f87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libm17n-0-dbg Priority: extra Section: libdevel Installed-Size: 751 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: i386 Source: m17n-lib Version: 1.6.4-2ubuntu1 Depends: libm17n-0 (= 1.6.4-2ubuntu1) Suggests: m17n-docs Filename: pool/main/m/m17n-lib/libm17n-0-dbg_1.6.4-2ubuntu1_i386.deb Size: 575812 MD5sum: 30bfda246e7f4933d33b5717b9da125a SHA1: a878584eedca70a7765cdfd2b8c9b7ab9a2d7888 SHA256: f1ff6ece2738b9101bb13c89f64b87b768726f88af895ecda45bb9f696e7c170 Description: multilingual text processing library - debugging symbols Homepage: http://www.nongnu.org/m17n/ Description-md5: 82612e6cd77b53cad2ccaa199dfdaf85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libm17n-dev Priority: optional Section: libdevel Installed-Size: 751 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: i386 Source: m17n-lib Version: 1.6.4-2ubuntu1 Depends: libm17n-0 (= 1.6.4-2ubuntu1), libxml2-dev, libthai-dev Suggests: m17n-docs Filename: pool/main/m/m17n-lib/libm17n-dev_1.6.4-2ubuntu1_i386.deb Size: 226856 MD5sum: 2b4c01e029a98a19002f7c89cb7a8723 SHA1: 85c2a494bceecbd408c911df8db06aa740dfed16 SHA256: 8e628cd0fefa111f33239d888b0bab92350fe92d3e17b291bab5f0d01af9ffa5 Description: multilingual text processing library - development Homepage: http://www.nongnu.org/m17n/ Description-md5: 886fe20cf7523e0da0b6f84783a99692 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmaa-dev Priority: optional Section: libdevel Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: i386 Source: libmaa Version: 1.3.2-2 Depends: libmaa3 (= 1.3.2-2) Filename: pool/main/libm/libmaa/libmaa-dev_1.3.2-2_i386.deb Size: 116470 MD5sum: c4e32d2e5bf8defecc09b80a11d4557b SHA1: 9c4787f7b5d5f07f9affc587a9dcccb5c47e1e76 SHA256: a17e5fa624b61b38b4041431be8c5ccea426f80b63819ca4287774d478364ced Description: maa programming library, development files Multi-Arch: same Homepage: http://sourceforge.net/projects/dict/ Description-md5: bc0f465617b2db9625ae21943d837586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmaa3 Priority: optional Section: libs Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: i386 Source: libmaa Version: 1.3.2-2 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/libm/libmaa/libmaa3_1.3.2-2_i386.deb Size: 41710 MD5sum: c28d20576b404cdb74608763c47457da SHA1: a1d8c7d320761dcc45693040fa61b88d915b7157 SHA256: 87fa4887017ffd55fdf8e5f32d59c2521c77ba8f233265bc4e5cb886a2442c46 Description: maa programming library Multi-Arch: same Homepage: http://sourceforge.net/projects/dict/ Description-md5: 1121424a22e831818969fb6649ec3a98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmagic-dev Priority: optional Section: libdevel Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: i386 Source: file Version: 1:5.14-2ubuntu3 Depends: libmagic1 (= 1:5.14-2ubuntu3) Suggests: file Filename: pool/main/f/file/libmagic-dev_5.14-2ubuntu3_i386.deb Size: 59992 MD5sum: 970f43240ae55a86c2bc819e7642603d SHA1: 0c50dcfee50e4871f39180cb103266e95c1e1097 SHA256: 75eac67b2ec8fe6722051a87d0ac62564ad967ec6cd804d23b8fc6dfd80ded2e Description: File type determination library using "magic" numbers (development) Multi-Arch: same Homepage: http://www.darwinsys.com/file/ Description-md5: 8dfdad924ca9981a019ce4d5e66307e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmagic1 Priority: important Section: libs Installed-Size: 2764 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: i386 Source: file Version: 1:5.14-2ubuntu3 Depends: libc6 (>= 2.15), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: file Filename: pool/main/f/file/libmagic1_5.14-2ubuntu3_i386.deb Size: 184222 MD5sum: d5876411eecc490dc48ab11a85d39e2a SHA1: 1102ba6d6718f7a2bf4660bfb92140dec697048b SHA256: b38f5a494f50ca824592cba672d1ba59b4742a2eb9d144cf56433d54b3a9c3ec Description: File type determination library using "magic" numbers Multi-Arch: same Homepage: http://www.darwinsys.com/file/ Description-md5: 7bbc15df978ca5c0adea7312cbc02445 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libmagick++-dev Priority: optional Section: libdevel Installed-Size: 962 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: i386 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libmagick++5 (= 8:6.7.7.10-6ubuntu3), libmagickcore-dev (= 8:6.7.7.10-6ubuntu3), libmagickwand-dev (= 8:6.7.7.10-6ubuntu3), pkg-config Filename: pool/main/i/imagemagick/libmagick++-dev_6.7.7.10-6ubuntu3_i386.deb Size: 130036 MD5sum: 9e8aed1351a0ace18dbb8bb823d19b7b SHA1: 9043d377dbe7c0fea1b891e52ba09bba7b6974a7 SHA256: ae896bbabde664d75618310f6fcaa05dff9f6dd6deda3398f1897aa3f50a4890 Description: object-oriented C++ interface to ImageMagick - development files Homepage: http://www.imagemagick.org/ Description-md5: b938b7703abcd228af38c5cac9f8ae72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmagick++5 Priority: optional Section: libs Installed-Size: 496 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: i386 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libmagickcore5 (>= 8:6.7.7.10), libmagickwand5 (>= 8:6.7.7.10), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/i/imagemagick/libmagick++5_6.7.7.10-6ubuntu3_i386.deb Size: 107270 MD5sum: e0a0a621510e564dcfd90923a28cb628 SHA1: 8ab11c74259f1248b0851a9d2f31e64049eca373 SHA256: a21d10450595a8da2fac54f270860363534d915093230b5b1a37f5fdc434a578 Description: object-oriented C++ interface to ImageMagick Multi-Arch: same Homepage: http://www.imagemagick.org/ Description-md5: 8e8fbab9ccdf45928236b9f3c42ecd91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: libmagickcore-dev Priority: optional Section: libdevel Installed-Size: 3860 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: i386 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libmagickcore5 (= 8:6.7.7.10-6ubuntu3), libmagickcore5-extra (= 8:6.7.7.10-6ubuntu3), libbz2-dev, libdjvulibre-dev, libexif-dev, libfreetype6-dev, libgraphviz-dev, libjasper-dev, libjpeg-dev, liblcms2-dev, liblqr-1-0-dev, libltdl-dev, libopenexr-dev, libpng-dev, librsvg2-dev, libtiff5-dev, libwmf-dev, libx11-dev, libxext-dev, libxml2-dev, libxt-dev, zlib1g-dev, pkg-config Filename: pool/main/i/imagemagick/libmagickcore-dev_6.7.7.10-6ubuntu3_i386.deb Size: 870348 MD5sum: 87396e00f2349197f91c76aada327056 SHA1: c72b018ee8aeed58f17c8472827b52995130b0a1 SHA256: c3af155e721d81147b822f9266d342c8f9b5e2e6ad83eed406e380ae9965bd03 Description: low-level image manipulation library - development files Homepage: http://www.imagemagick.org/ Description-md5: aa88f5d5082ff9b7448857107c1318e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmagickcore5 Priority: optional Section: libs Installed-Size: 5666 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: i386 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libbz2-1.0, libc6 (>= 2.11), libfftw3-double3, libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgomp1 (>= 4.2.1), libjasper1, libjbig0 (>= 2.0), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), liblqr-1-0 (>= 0.1.0), libltdl7 (>= 2.4.2), liblzma5 (>= 5.1.1alpha+20120614), libpng12-0 (>= 1.2.13-4), libtiff5 (>= 4.0.3), libx11-6, libxext6, libxml2 (>= 2.7.4), zlib1g (>= 1:1.2.3.4), imagemagick-common Pre-Depends: multiarch-support Recommends: ghostscript, gsfonts Suggests: libmagickcore5-extra Filename: pool/main/i/imagemagick/libmagickcore5_6.7.7.10-6ubuntu3_i386.deb Size: 1387130 MD5sum: 48cba701a6bce6bb81ba901aac0b125e SHA1: 1e33db5d8e3157d4dfda8283454a1c2fd5140570 SHA256: d14929a1f4159634b58c1364dc314fa57f8cb288298cef3cb638a583d655e0db Description: low-level image manipulation library Multi-Arch: same Homepage: http://www.imagemagick.org/ Description-md5: 31a16c71aad370b017e54b54536e4503 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libmagickcore5-extra Priority: optional Section: libs Installed-Size: 264 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: i386 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Replaces: libmagickcore5 (<< 8:6.7.7.10-1) Provides: libmagickcore-extra Depends: libc6 (>= 2.4), libcairo2 (>= 1.6.0), libdjvulibre21 (>= 3.5.25.4), libglib2.0-0 (>= 2.12.0), libmagickcore5 (>= 8:6.7.7.10), libmagickwand5 (>= 8:6.7.7.10), libopenexr6 (>= 1.6.1), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), librsvg2-2 (>= 2.14.4), libwmf0.2-7 (>= 0.2.8.4), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Breaks: libmagickcore5 (<< 8:6.7.7.10-1) Filename: pool/main/i/imagemagick/libmagickcore5-extra_6.7.7.10-6ubuntu3_i386.deb Size: 55148 MD5sum: 49a2fd73f408b1d412e6c50213f42958 SHA1: 36bb4a9eed095f6ad7da5e29b3d7da0000666f74 SHA256: 387a983244d2d0a1a2d11fa9b6b7ea947a36ce10d2e9e79e459911621f315456 Description: low-level image manipulation library - extra codecs Enhances: libmagickcore5 Multi-Arch: same Homepage: http://www.imagemagick.org/ Description-md5: 74d032fafdeeca601f033c6cd8e31fae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libmagickwand-dev Priority: optional Section: libdevel Installed-Size: 1740 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: i386 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libmagickwand5 (= 8:6.7.7.10-6ubuntu3), libmagickcore5-extra (= 8:6.7.7.10-6ubuntu3), libmagickcore-dev (= 8:6.7.7.10-6ubuntu3), pkg-config Filename: pool/main/i/imagemagick/libmagickwand-dev_6.7.7.10-6ubuntu3_i386.deb Size: 261478 MD5sum: b4f15db843587d93e6a7467929147008 SHA1: 34429bd67a9a488619f4e339ad4675dc17dd5d34 SHA256: 4fcc395592ff43e4fbf924f1ff323316f4c713b9eb535ac3eae83ef9e7a28eb4 Description: image manipulation library - development files Homepage: http://www.imagemagick.org/ Description-md5: 431e989a3aae92a173c5b1cf4ffe85eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmagickwand5 Priority: optional Section: libs Installed-Size: 1198 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: i386 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Depends: libc6 (>= 2.4), libgomp1 (>= 4.2.1), libmagickcore5 (>= 8:6.7.7.10), libx11-6, imagemagick-common Pre-Depends: multiarch-support Filename: pool/main/i/imagemagick/libmagickwand5_6.7.7.10-6ubuntu3_i386.deb Size: 236378 MD5sum: 27a80e35dabe857316ec9fbd51f3dc2c SHA1: 69baa721dcd60a6c549410fe785dc7a0cd514c6f SHA256: a95b79a334ba685b70cf9e23e01325626eb8e5866f23c3c3eb5cb8d7fdb89ade Description: image manipulation library Multi-Arch: same Homepage: http://www.imagemagick.org/ Description-md5: 551ef05d728c4f543dc3afb54a3f6c73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libmail-dkim-perl Priority: optional Section: perl Installed-Size: 320 Maintainer: Ubuntu Developers Original-Maintainer: Magnus Holmgren Architecture: all Version: 0.40-1 Replaces: dkimproxy (<< 1.2-1) Depends: perl, liberror-perl, libdigest-sha-perl, libmailtools-perl, libnet-dns-perl, libcrypt-openssl-rsa-perl (>= 0.24) Breaks: dkimproxy (<< 1.2-1) Filename: pool/main/libm/libmail-dkim-perl/libmail-dkim-perl_0.40-1_all.deb Size: 117062 MD5sum: dfb495e1dbafd14c0babe198e070e6a0 SHA1: 7d68b7a65623b69951316db264771217328865ec SHA256: fc4b6ab5d99d37944cf8346d5d634eea2ca5c4e44d19aa481ae2663a213cbbd2 Description: cryptographically identify the sender of email - perl library Homepage: http://dkimproxy.sourceforge.net Description-md5: b5224c71b80164be0ca2a88e302ea1a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmail-sendmail-perl Priority: optional Section: perl Installed-Size: 100 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.79.16-1 Depends: perl (>= 5.6.0-16), libsys-hostname-long-perl Filename: pool/main/libm/libmail-sendmail-perl/libmail-sendmail-perl_0.79.16-1_all.deb Size: 26546 MD5sum: 773c8b4c576f4a7ccf0c220d067750ac SHA1: 35f4c0122ca7ebdd96d6670cb1f1504b99fcdcc0 SHA256: 0a672b0a6bfc55befb25bcd6a3cab8698d7c4d315cfc5054691bbde51c81c457 Description: Send email from a perl script Homepage: http://search.cpan.org/dist/Mail-Sendmail/ Description-md5: c99e9bea3b33d0df7b7642d28e799a07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmail-spf-perl Priority: optional Section: perl Installed-Size: 330 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Source: mail-spf-perl Version: 2.9.0-2 Depends: perl, liberror-perl, libnet-dns-perl, libnetaddr-ip-perl, liburi-perl Filename: pool/main/m/mail-spf-perl/libmail-spf-perl_2.9.0-2_all.deb Size: 125248 MD5sum: cbeafbf76decaf4cb2856e43595cfefb SHA1: a41d921b635f06cbbdd16effe43d28f06f6d5e7a SHA256: d391a8dfe85d557c42f087ba02cb4cb513b9d83755df602069c802c8b8c2646d Description: Perl implementation of Sender Policy Framework and Sender ID Homepage: https://metacpan.org/release/Mail-SPF/ Description-md5: 5a00e9c63268c570413928246a2be58c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libmailtools-perl Priority: optional Section: perl Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: all Version: 2.12-1 Replaces: mailtools (<= 1.15-1) Provides: libmail-perl, mailtools Depends: perl, libnet-perl, libtimedate-perl, libnet-smtp-ssl-perl Conflicts: mailtools (<= 1.15-1) Filename: pool/main/libm/libmailtools-perl/libmailtools-perl_2.12-1_all.deb Size: 84130 MD5sum: c4ae7cadbfedb24d516350ffb60373a9 SHA1: 2c64a0dea8fede90c57e064414dbb3e77cfc6acb SHA256: 5826e00b18f07332515299769639657f7b419b0c27176b7d71a98ea1f404577f Description: Manipulate email in perl programs Homepage: http://search.cpan.org/dist/MailTools/ Description-md5: c42aa1e49d681dcc200129315de37221 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmalaga-dev Priority: optional Section: libdevel Installed-Size: 245 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: i386 Source: malaga Version: 7.12-4.1ubuntu1 Depends: libmalaga7 (= 7.12-4.1ubuntu1), libglib2.0-dev Suggests: malaga-bin Conflicts: libmalaga1-dev, libmalaga2-dev Filename: pool/main/m/malaga/libmalaga-dev_7.12-4.1ubuntu1_i386.deb Size: 57668 MD5sum: 12523e1ac358dddf6f7a6af6608781ed SHA1: a88e6c8a6a9cc86039a461454bb1a79e7bdc3530 SHA256: ea6e3ddc2dc84500f69ffd589a1db7fe74266f24d93ca613724a46b0a18c7dfe Description: Developer's library for automatic language analysis Description-md5: 0f14c7e9301a57c28eb88f80566d75ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmalaga7 Priority: optional Section: libs Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: i386 Source: malaga Version: 7.12-4.1ubuntu1 Depends: libc6 (>= 2.11), libglib2.0-0 (>= 2.12.0) Conflicts: libmalaga1-dev, libmalaga2-dev Filename: pool/main/m/malaga/libmalaga7_7.12-4.1ubuntu1_i386.deb Size: 55488 MD5sum: 6ac560c6931671bd45143b0ea750f7f2 SHA1: e50717235909ee7297617453e916b31b33456d36 SHA256: b455f1dc2210d19b224530e7b2c4f27ffc7215a699de1fd493a72a7c20d7d160 Description: Automatic language analysis library Description-md5: 34bbd08fc78078f1acc2fcbdd38d471a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmbim-glib-dev Priority: optional Section: libdevel Installed-Size: 440 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Bechtold Architecture: i386 Source: libmbim Version: 1.6.0-2 Depends: libmbim-glib0 (= 1.6.0-2), libglib2.0-dev Suggests: libmbim-glib-doc Filename: pool/main/libm/libmbim/libmbim-glib-dev_1.6.0-2_i386.deb Size: 66482 MD5sum: 8713765abcc22f8751ad55f398322437 SHA1: 16289ca47b16190ecfebd950aa6d3c63f85e99dd SHA256: 13fc73b7a4f4ea4db36b4b803c4c715556c9a10fdb05c65ef3f7c11658d8605a Description: Header files for adding MBIM support to applications that use glib Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/libmbim/ Description-md5: a9f4b979e7f90fb1a34c15fa316ad3c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmbim-glib-doc Priority: optional Section: doc Installed-Size: 1324 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Bechtold Architecture: all Source: libmbim Version: 1.6.0-2 Suggests: devhelp Filename: pool/main/libm/libmbim/libmbim-glib-doc_1.6.0-2_all.deb Size: 65024 MD5sum: 3e534eb2c31487b062687df397d0a751 SHA1: c8f4a92718f7f2e78b29b0dc70aeea84d3449666 SHA256: a895252c7df8b2ffb0b81608ed7a9bd24adc05253a2ed1322339bd3443b0acf2 Description: API documentation for the MBIM protocol library Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/libmbim/ Description-md5: 0097ac93077e9d8330b5f2f644defb0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmbim-glib0 Priority: optional Section: libs Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Bechtold Architecture: i386 Source: libmbim Version: 1.6.0-2 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146) Pre-Depends: multiarch-support Filename: pool/main/libm/libmbim/libmbim-glib0_1.6.0-2_i386.deb Size: 47630 MD5sum: defad0f0a2982a4adcadb9a56f496131 SHA1: fdc1ff5c158b30c24770fa3fa5466ef408b6aa89 SHA256: 342a706de8672c770755bec1054c5a5c953af3edd3d92acb47f0bf8f69d40bcc Description: Support library to use the MBIM protocol Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/libmbim/ Description-md5: 34268237931c65f4ad4ec124116fec86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmdb2 Priority: optional Section: libs Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: i386 Source: mdbtools Version: 0.7.1-1ubuntu1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.12.0) Pre-Depends: multiarch-support Suggests: mdbtools-doc Filename: pool/main/m/mdbtools/libmdb2_0.7.1-1ubuntu1_i386.deb Size: 46054 MD5sum: 92f30170aaa29c4b1491cbfd31a7d8e8 SHA1: 8a7055321f4510bfac55f662cb38e4b4ee5b9d4d SHA256: c028f76a02e1ee9e7c76a6004022b9c5bef92002b7cb95473216391d218a4a42 Description: Core library for accessing JET / MS Access (MDB) files Multi-Arch: same Homepage: http://mdbtools.sourceforge.net/ Description-md5: 4662ebd8f8175e8d1b5b5b1a82a207cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmdbsql2 Priority: optional Section: libs Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: i386 Source: mdbtools Version: 0.7.1-1ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libmdb2 (>= 0.7~rc1) Pre-Depends: multiarch-support Suggests: mdbtools-doc Filename: pool/main/m/mdbtools/libmdbsql2_0.7.1-1ubuntu1_i386.deb Size: 21690 MD5sum: b0afde88eea0fbf5336503a3a8235d8e SHA1: d036514279a94480397cc2fa397de3ba7b8e53f4 SHA256: 0fbf394d3a04b30e2b6ebd7d843987df3f07ee02362b6088964ab97e06ffdb8f Description: mdbtools SQL library Multi-Arch: same Homepage: http://mdbtools.sourceforge.net/ Description-md5: 4631d1cf31db9c8b0dbb06584f110982 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmdds-dev Priority: optional Section: libdevel Installed-Size: 655 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: mdds Version: 0.10.2-1 Depends: libboost-dev (>= 1.39) Filename: pool/main/m/mdds/libmdds-dev_0.10.2-1_all.deb Size: 75750 MD5sum: 6342a5722bd35dba048bef2c10d440bf SHA1: 7a99d7362d60f44c93f61918e5977267b3cd7548 SHA256: b703b72164d86f052c00b118ee8450f33672661a3424980884c92483955e196f Description: Multi Dimension Data structure library -- headers Homepage: http://code.google.com/p/multidimalgorithm/ Description-md5: 25a247f8274e76d26ab3b83ab127592a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmeanwhile-dev Priority: optional Section: libdevel Installed-Size: 3364 Maintainer: Ubuntu Developers Original-Maintainer: Chris Vanden Berghe Architecture: i386 Source: meanwhile Version: 1.0.2-4.1ubuntu1 Depends: libmeanwhile1 (= 1.0.2-4.1ubuntu1), libglib2.0-dev Filename: pool/main/m/meanwhile/libmeanwhile-dev_1.0.2-4.1ubuntu1_i386.deb Size: 290170 MD5sum: 09bb934745201d4ac055caf98229c7fb SHA1: fab86058c67864f1d5faf69daf5d028df375e707 SHA256: e7001917c1ccec8e460868ba7c64f56bfda8868fb0d6fd6d86607a17942a5ca5 Description: development package for libmeanwhile1 Homepage: http://meanwhile.sourceforge.net/ Description-md5: 8fd2a69c10b4d3d15506fb7abd55ad82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmeanwhile1 Priority: optional Section: libs Installed-Size: 242 Maintainer: Ubuntu Developers Original-Maintainer: Chris Vanden Berghe Architecture: i386 Source: meanwhile Version: 1.0.2-4.1ubuntu1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.24.0) Filename: pool/main/m/meanwhile/libmeanwhile1_1.0.2-4.1ubuntu1_i386.deb Size: 71654 MD5sum: 932482da298605dc12e25725f588469d SHA1: d9dbf35df58dd063cbcff4dfcc1cfef3131f6ee2 SHA256: 467e8de54383496155ef13778795eaa3afd44e134fb31584c76cf36376ec27d6 Description: open implementation of the Lotus Sametime Community Client protocol Homepage: http://meanwhile.sourceforge.net/ Description-md5: 82e65bea7e1388bd4ffee62b6cc57363 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libmedia-dev Priority: extra Section: libdevel Installed-Size: 84 Maintainer: Ubuntu Developers Architecture: i386 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu24) Depends: libmedia1 (= 0.1.0+git20131207+e452e83-0ubuntu12), android-headers (>= 4.2.2) Breaks: libhybris-dev (<< 0.1.0+git20130606+c5d897a-0ubuntu24) Filename: pool/main/libh/libhybris/libmedia-dev_0.1.0+git20131207+e452e83-0ubuntu12_i386.deb Size: 7844 MD5sum: f376036d96bc3e4d7b946796d0c0c537 SHA1: dbcff08e2c92ab105cda02751a6115f34d1c9552 SHA256: cb48bfc290ae3f2c90ffdf0b89fd0c44c09834787077225fb3b5f89df34ea717 Description: Development files for libmedia Description-md5: 45c1b80daa4ded84393244ce3d2a9727 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmedia1 Priority: extra Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Architecture: i386 Source: libhybris Version: 0.1.0+git20131207+e452e83-0ubuntu12 Replaces: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu24) Depends: libc6 (>= 2.3.6-6~), libhybris-common1 Breaks: libhybris (<< 0.1.0+git20130606+c5d897a-0ubuntu24) Filename: pool/main/libh/libhybris/libmedia1_0.1.0+git20131207+e452e83-0ubuntu12_i386.deb Size: 10900 MD5sum: 830e4c3049fc9d829420dc4a3f829e34 SHA1: aebb6525adb9eb7cc822090524121cece12a802a SHA256: 2a1d040db70683323dae33ec17fab168da0fd32db9880242fb2d23156abdb5cb Description: Library to provide access to the Android Media HAL Description-md5: 968155d5552481900c9c19d78d6ac2e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmemcached-dbg Priority: extra Section: debug Installed-Size: 997 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: i386 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libhashkit2 (= 1.0.8-1ubuntu2), libmemcached10 (= 1.0.8-1ubuntu2), libmemcachedprotocol0 (= 1.0.8-1ubuntu2), libmemcachedutil2 (= 1.0.8-1ubuntu2) Filename: pool/main/libm/libmemcached/libmemcached-dbg_1.0.8-1ubuntu2_i386.deb Size: 741460 MD5sum: 34f1f251f729b17366ece9721d5be474 SHA1: dcab3b0818beb25ad16fc520181349fbb30703d5 SHA256: 7c43a891c1f65f42bf665915a7a9c09982ff74c4c3170c58af8f2e0c192ab9d2 Description: Debug Symbols for libmemcached Homepage: http://libmemcached.org/libMemcached.html Description-md5: ea156c0423f71127a41893b481e0c365 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmemcached-dev Priority: extra Section: libdevel Installed-Size: 857 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: i386 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libhashkit-dev (= 1.0.8-1ubuntu2), libmemcached10 (= 1.0.8-1ubuntu2), libmemcachedprotocol0 (= 1.0.8-1ubuntu2), libmemcachedutil2 (= 1.0.8-1ubuntu2), libsasl2-dev Filename: pool/main/libm/libmemcached/libmemcached-dev_1.0.8-1ubuntu2_i386.deb Size: 253948 MD5sum: 99b524b1044b0d301848cc76dbf24565 SHA1: 77e03dc2904f76a4bb5e861fc39f61947c5ca6c6 SHA256: 3059dbab42cd501bef50fbc32badf5f0179f2bfed0c89c4ff3c5d89f87b3d17a Description: C and C++ client library to the memcached server (development files) Homepage: http://libmemcached.org/libMemcached.html Description-md5: c6bfdfff5c9729d4f01c13bcee57b0f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmemcached-tools Priority: extra Section: libs Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: i386 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libc6 (>= 2.4), libmemcached10, libmemcachedutil2, libstdc++6 (>= 4.4.0) Filename: pool/main/libm/libmemcached/libmemcached-tools_1.0.8-1ubuntu2_i386.deb Size: 67822 MD5sum: 2529ccc2e2a924d7f829c565ae785bd8 SHA1: 2d7cb03267fe2c52cf0a5d0ad6b605c122c3ccbc SHA256: 7730f3fcb382cfcb8ef6b3b1c6fb06b9bc29ce8fcb147b55c65d0bfe4581f0a4 Description: Commandline tools for talking to memcached via libmemcached Homepage: http://libmemcached.org/libMemcached.html Description-md5: 452050d3ea8edcbdcb07d155e78d191b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmemcached10 Priority: optional Section: libs Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: i386 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libc6 (>= 2.16), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Conflicts: libmemcached2, libmemcached3, libmemcached6, libmemcached9 Filename: pool/main/libm/libmemcached/libmemcached10_1.0.8-1ubuntu2_i386.deb Size: 83566 MD5sum: 326d6ea1107e6cf181e3ba8f48cf4a72 SHA1: 913bbb46c5bf128ed23387f82a817ec94036b08c SHA256: 700bd00edf52da3857c842ef025bf793f8e42b182d02006b3002ddacc2b85100 Description: C and C++ client library to the memcached server Multi-Arch: same Homepage: http://libmemcached.org/libMemcached.html Description-md5: c520748ef0b458bdb796b190ce42a1b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmemcachedprotocol0 Priority: extra Section: libs Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: i386 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libm/libmemcached/libmemcachedprotocol0_1.0.8-1ubuntu2_i386.deb Size: 17218 MD5sum: f6b6722ff4af6231c0746846cabd4b7a SHA1: a1fb5100da9a577b38df9beee5672442392cea18 SHA256: 08fd6aa9a9cb72840e63088af8042f5349aef60ba1614c97e95163eaf4ca9b0e Description: library implementing the memcached protocol Multi-Arch: same Homepage: http://libmemcached.org/libMemcached.html Description-md5: 45aa031d095cb9d6252f2a53b89ec26d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmemcachedutil2 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: i386 Source: libmemcached Version: 1.0.8-1ubuntu2 Depends: libc6 (>= 2.3.4), libmemcached10, libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/libm/libmemcached/libmemcachedutil2_1.0.8-1ubuntu2_i386.deb Size: 9502 MD5sum: 35e9373c4551704ac4d09fb0a941ef64 SHA1: 3771ba966442aed3d9a7ba2c0f8a956d4b0adbc0 SHA256: 46fb3e0801c0730bee8e4f92aa737e0e47b9ea1fbfd315a6a114c01556740435 Description: library implementing connection pooling for libmemcached Multi-Arch: same Homepage: http://libmemcached.org/libMemcached.html Description-md5: 32cdf0c564bc73569ee13e19a7b567d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmessaging-menu-dev Priority: optional Section: libdevel Installed-Size: 308 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: indicator-messages Version: 13.10.1+14.04.20140410-0ubuntu1 Depends: gir1.2-messagingmenu-1.0 (= 13.10.1+14.04.20140410-0ubuntu1), libmessaging-menu0 (= 13.10.1+14.04.20140410-0ubuntu1), libglib2.0-dev Filename: pool/main/i/indicator-messages/libmessaging-menu-dev_13.10.1+14.04.20140410-0ubuntu1_i386.deb Size: 20430 MD5sum: 1a7d38932e96c6a0e0a76fceb54ac881 SHA1: 1dd9bb26435ff4727b1b5d500a85be998da13ea6 SHA256: 798d7587d224c88512d5f3bb3a4365f8b969d5db671fed5d245bbdf6032a95ed Description: Messaging Menu - library development files Homepage: https://launchpad.net/indicator-messages Description-md5: ce906b4d3b8508aa9afe60c759709b5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmessaging-menu0 Priority: optional Section: libs Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: The Ayatana Packagers Architecture: i386 Source: indicator-messages Version: 13.10.1+14.04.20140410-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3) Filename: pool/main/i/indicator-messages/libmessaging-menu0_13.10.1+14.04.20140410-0ubuntu1_i386.deb Size: 21392 MD5sum: 237a90c061b4a78c7b5b087e64d33197 SHA1: 220743e2cfb7e51c8dd5c4acd09645c7002787d1 SHA256: 4aac847fc574546ef278241a7ca1d7d212b572018ddfae4e44291f9b8081bd4e Description: Messaging Menu - shared library Homepage: https://launchpad.net/indicator-messages Description-md5: 364e71724412de3ba2d663ca34406232 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmetacity-dev Priority: optional Section: libdevel Installed-Size: 524 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: metacity Version: 1:2.34.13-0ubuntu4 Depends: libmetacity-private0a (= 1:2.34.13-0ubuntu4), libgtk2.0-dev Filename: pool/main/m/metacity/libmetacity-dev_2.34.13-0ubuntu4_i386.deb Size: 75060 MD5sum: ced6f9826813ec9653f0a1dfc5aef6b6 SHA1: c87cd41e3e00a1b0660a4d77ad0e97a797af8fc5 SHA256: e755d7774241c8b08c46ec8c2a61d94ca1f2cbdfd020e41be81364801c77bb1b Description: development files for the Metacity window manager Description-md5: 73dfc7ddc60f3c7fc625adfe06749201 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmetacity-private0a Priority: optional Section: libs Installed-Size: 396 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: metacity Version: 1:2.34.13-0ubuntu4 Replaces: libmetacity-private0 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), metacity-common (= 1:2.34.13-0ubuntu4) Breaks: libmetacity-private0 Filename: pool/main/m/metacity/libmetacity-private0a_2.34.13-0ubuntu4_i386.deb Size: 106032 MD5sum: 1ecce68485f0013ecd0a915115ccd382 SHA1: d4f28a33b42e581fd1ca53249b69e3f6d1c47525 SHA256: 637e0d75b4ef09ddeebbe179f5b7b09ec15cb23825b5619550ad4486b51f727c Description: library for the Metacity window manager Description-md5: ee7c90f337314f26935c451de494dba0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libmhash-dev Priority: optional Section: libdevel Installed-Size: 322 Maintainer: Ubuntu Developers Original-Maintainer: Chris Hanson Architecture: i386 Source: mhash Version: 0.9.9.9-4 Depends: libmhash2 (= 0.9.9.9-4), libc6-dev Filename: pool/main/m/mhash/libmhash-dev_0.9.9.9-4_i386.deb Size: 126954 MD5sum: 4c71a9ced19b06f0e9615ddedaf8361e SHA1: efb3825eb9aef656a8d0d1ace9459f37c10aa571 SHA256: db8451a211dc36b1a4f62c7295bc5f529f1859e79e78e3f79cf1b1bfd6d7bd46 Description: Library for cryptographic hashing and message authentication Homepage: http://mhash.sourceforge.net/ Description-md5: 76bc2c8552d8e642bc02127f01075ff5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmhash2 Priority: optional Section: libs Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Chris Hanson Architecture: i386 Source: mhash Version: 0.9.9.9-4 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/m/mhash/libmhash2_0.9.9.9-4_i386.deb Size: 110008 MD5sum: 743af38c87490e0e154c2ec8de8b003a SHA1: fd258df7f248c915413e20acdcb90ab92bc35e48 SHA256: 81a3130405f00339394d76c6d92008ec310f954ad0487353342f23f446fbee73 Description: Library for cryptographic hashing and message authentication Multi-Arch: same Homepage: http://mhash.sourceforge.net/ Description-md5: 9dc72d6d0af87ec3a9ba2e0c3ea2f30f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: libmilter-dev Priority: extra Section: libdevel Installed-Size: 630 Maintainer: Ubuntu Developers Original-Maintainer: Jakub Safarik Architecture: i386 Source: sendmail Version: 8.14.4-4.1ubuntu1 Depends: libmilter1.0.1 (= 8.14.4-4.1ubuntu1) Suggests: sendmail-doc Filename: pool/main/s/sendmail/libmilter-dev_8.14.4-4.1ubuntu1_i386.deb Size: 93230 MD5sum: efa35ca5c8ee22d4f84dbcd279be4b46 SHA1: 5be6ba31eb492ba1578d87bc19ebb81fba407d52 SHA256: 413ac4d50ea66bc4b8d7e4aff3ce1f7f9b0b5641c892f7fae3fef9fc2dec1635 Description: Sendmail Mail Filter API (Milter) Homepage: http://www.sendmail.org Description-md5: c3fb132e77439d35e15e1f829aa855de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmilter1.0.1 Priority: extra Section: libs Installed-Size: 316 Maintainer: Ubuntu Developers Original-Maintainer: Jakub Safarik Architecture: i386 Source: sendmail Version: 8.14.4-4.1ubuntu1 Depends: libc6 (>= 2.4) Filename: pool/main/s/sendmail/libmilter1.0.1_8.14.4-4.1ubuntu1_i386.deb Size: 36942 MD5sum: 1f78c4bd2f9f6300406db8b6b1d7c3a3 SHA1: a3ea345a3fb3afc3052d8c38d47f5033b61b0439 SHA256: b073e370e3bbff2ac8bb01b48a2d3a0fb93cc2f498733337f8ebcbc338c84b6a Description: Sendmail Mail Filter API (Milter) Homepage: http://www.sendmail.org Description-md5: 1ab872167c7f9ea0ae2341dd78f2e74a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmilter1.0.1-dbg Priority: extra Section: libs Installed-Size: 386 Maintainer: Ubuntu Developers Original-Maintainer: Jakub Safarik Architecture: i386 Source: sendmail Version: 8.14.4-4.1ubuntu1 Depends: libmilter1.0.1 (= 8.14.4-4.1ubuntu1) Filename: pool/main/s/sendmail/libmilter1.0.1-dbg_8.14.4-4.1ubuntu1_i386.deb Size: 50886 MD5sum: fb0f0e448018dee0e0d77d434237a027 SHA1: f397878986c12ea2e15b9f2cf3a3191bb592c329 SHA256: cb590071dc863771f7d964e118ab389ff71e3ef365fccd0a805bfc53f7416b71 Description: Sendmail Mail Filter API (Milter) Homepage: http://www.sendmail.org Description-md5: c94eeab74d99cf4d239d68889c4613c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmime-charset-perl Priority: optional Section: perl Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.011.1-1 Depends: perl Suggests: libencode-hanextra-perl Filename: pool/main/libm/libmime-charset-perl/libmime-charset-perl_1.011.1-1_all.deb Size: 31878 MD5sum: c0513c1797e4a5ca9e9284cced638b30 SHA1: 422b62154e8d5bb9aa8a3fdde543ce0bb4c9fbea SHA256: 3378b3be5d37d8765599014732003adf285a0ddfec1600bba94058e3e1c3d9b1 Description: module for MIME character set information Homepage: https://metacpan.org/release/MIME-Charset/ Description-md5: c18f33cdbc0746a4313e3e4add8bbe41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmime-tools-perl Priority: optional Section: perl Installed-Size: 501 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 5.505-1 Replaces: libmime-perl (<< 5.425-2) Provides: libmime-perl Depends: libconvert-binhex-perl, libmailtools-perl, perl Breaks: libmime-perl (<< 5.425-2) Filename: pool/main/libm/libmime-tools-perl/libmime-tools-perl_5.505-1_all.deb Size: 206270 MD5sum: a5ec8b322d5b9c85cdf23f82c568e1cb SHA1: 5059deb62c9b6c29011d7683d01a4a549c090379 SHA256: ddc2d4ed5d5b45b19d7e0d25347a79d2571258fc18f04573abe314e9fbe3b94e Description: Perl5 modules for MIME-compliant messages Homepage: https://metacpan.org/release/MIME-tools/ Description-md5: f87eb3d08cacb30d93af298f91117b0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libmime-types-perl Priority: optional Section: perl Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.04-1 Depends: perl Filename: pool/main/libm/libmime-types-perl/libmime-types-perl_2.04-1_all.deb Size: 47758 MD5sum: 7ad62f4e8979032c82e285341554c499 SHA1: ba9c01539d15fd48b6adcf4f7fd03018071277fa SHA256: a64448c250760c4a96e983663ac5fa5b70b327a0b5f7f54d077f707767997014 Description: Perl extension for determining MIME types and Transfer Encoding Homepage: http://perl.overmeer.net/mimetypes/ Description-md5: 6c98117d72d39563703824d7dd685d5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libminiupnpc-dev Priority: optional Section: libdevel Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Goirand Architecture: i386 Source: miniupnpc Version: 1.6-3ubuntu2 Replaces: libminiupnpc5, libminiupnpc8 (<= 1.6-1) Depends: libminiupnpc8 (= 1.6-3ubuntu2) Suggests: minissdpd Filename: pool/main/m/miniupnpc/libminiupnpc-dev_1.6-3ubuntu2_i386.deb Size: 29758 MD5sum: 7c7edb204e154fb946b10c1e2d40927d SHA1: 183b6e17d5034918624d47b86a196bb464e79671 SHA256: 08715be525e379ee9a8d16ca006e655e0f0f2421617c0435a4f967862a2478d6 Description: UPnP IGD client lightweight library development files Homepage: http://miniupnp.free.fr/ Description-md5: b76b4a36753fd30004f1cf8ca91a3318 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libminiupnpc8 Priority: optional Section: net Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Goirand Architecture: i386 Source: miniupnpc Version: 1.6-3ubuntu2 Depends: libc6 (>= 2.15) Suggests: minissdpd Filename: pool/main/m/miniupnpc/libminiupnpc8_1.6-3ubuntu2_i386.deb Size: 23490 MD5sum: 796f4e2804ae45e8f7c9eb2d9d72f85e SHA1: e53f3028b2b1509dfda7faa5ea196d2537e8d272 SHA256: ef21c20945dc4e7cee299c4d871c33d1592028bd1932cd1368cb2cbd8096be51 Description: UPnP IGD client lightweight library Homepage: http://miniupnp.free.fr/ Description-md5: 194defbf2e4c77dd9feae4a875fdd198 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmirclient-dev Priority: optional Section: libdevel Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libmirclient7 (= 0.1.8+14.04.20140411-0ubuntu1), libmirprotobuf-dev (= 0.1.8+14.04.20140411-0ubuntu1), mircommon-dev (= 0.1.8+14.04.20140411-0ubuntu1) Filename: pool/main/m/mir/libmirclient-dev_0.1.8+14.04.20140411-0ubuntu1_i386.deb Size: 7842 MD5sum: 8bd847b0878edd5e466b46ebc202f6c7 SHA1: 296f421cb9ab17d078251d6839de519b012fcf4d SHA256: 18c6080274689f6788e38c157db4a1e97fd997a490313d28834988ef31bf046b Description: Display server for Ubuntu - development headers Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: bad81f957875312d57ff2d16afca10de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirclient7 Priority: optional Section: libs Installed-Size: 563 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libboost-system1.54.0, libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libmirprotobuf0 (>= 0.1.8+14.04.20140411), libprotobuf8, libstdc++6 (>= 4.8.1), libxkbcommon0 (>= 0.2.0), libmirclientplatform-mesa (= 0.1.8+14.04.20140411-0ubuntu1) | libmirclientplatform-android (= 0.1.8+14.04.20140411-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirclient7_0.1.8+14.04.20140411-0ubuntu1_i386.deb Size: 147178 MD5sum: 8b2a18ced7668624eefe989b39ea8be6 SHA1: 405e9c88ef74c92b2cba50e30c23890d9f78cc5c SHA256: 3d1208f2a1a1c232350130940e1f1c0b1eaa4467d1063562e567a8db76882d7f Description: Display server for Ubuntu - client library Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: 833ddf930ef3c3df05aca4213ced851d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirclientplatform-mesa Priority: optional Section: libs Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Replaces: libmirclientplatform Depends: libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libmirclient7 (>= 0.1.8+14.04.20140411), libstdc++6 (>= 4.8) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirclientplatform-mesa_0.1.8+14.04.20140411-0ubuntu1_i386.deb Size: 23742 MD5sum: 63efbcb6d4b9cd3f946af09bb5d9f38b SHA1: e893c9995e0dbea0d2acfe0162fbbc11433423a1 SHA256: 4b933353ab35f2bf65fa2bf6d3803d6145aeebb44c7b285c0d2a336d05d82166 Description: Display server for Ubuntu - client platform library for Mesa Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: 7f708e9b58896cab3f8376eb75eb95dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirplatform Priority: optional Section: libs Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Replaces: libmirserver0 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.5), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirplatform_0.1.8+14.04.20140411-0ubuntu1_i386.deb Size: 24822 MD5sum: 3aed2b2ac6daddbdc36b92640881f219 SHA1: 903074442bd723105e2df7402674c0bb66363a57 SHA256: f5a5dc33d6159a5fc4ed9340338f2d3243931e645082761719bcd59696c13936 Description: Display server for Ubuntu - platform library Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: 5ca581b6c17780dd3707f6b3fff2597b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirplatformgraphics-mesa Priority: optional Section: libs Installed-Size: 498 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libboost-program-options1.54.0, libc6 (>= 2.15), libdrm2 (>= 2.4.38), libegl1-mesa (>= 7.8.1) | libegl1-x11, libgbm1 (>= 8.1~0), libgcc1 (>= 1:4.1.1), libgles2-mesa (>= 7.8.1) | libgles2, libstdc++6 (>= 4.8), libmirplatform (= 0.1.8+14.04.20140411-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirplatformgraphics-mesa_0.1.8+14.04.20140411-0ubuntu1_i386.deb Size: 114576 MD5sum: 63dfa1d7def02064c6f4752f8337b08a SHA1: 3e4cbeec149d2d207fac12152ac831b8c4676690 SHA256: 317849a00ac480ba9190f7614ca97a1a819cda24cede0a208c629c22232ad4c1 Description: Display server for Ubuntu - platform library for Mesa Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: a9ad8c2694250846336154db96327f86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirprotobuf-dev Priority: optional Section: libdevel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libmirprotobuf0 (= 0.1.8+14.04.20140411-0ubuntu1), libprotobuf-dev Filename: pool/main/m/mir/libmirprotobuf-dev_0.1.8+14.04.20140411-0ubuntu1_i386.deb Size: 4530 MD5sum: 3e79afa5aaf0d58e6e957506884706ce SHA1: 1449dcbd3582dbed47f816ad067b8e3744867b57 SHA256: 6e2c20e1d8956f0c82cce7c7b4a319f56ab6bcc11b5e4f6996ee201eae6ec18c Description: Display server for Ubuntu - protocol definition Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: dafcf3520428a348b335759e46da047f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirprotobuf0 Priority: optional Section: libs Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.3), libgcc1 (>= 1:4.1.1), libprotobuf8, libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirprotobuf0_0.1.8+14.04.20140411-0ubuntu1_i386.deb Size: 72564 MD5sum: aa912c76e73e238ec4b75e009ae12a03 SHA1: 760d7146d907819a9f6884c72005b54142a9d6bd SHA256: b22d675845b012440c60af7b6b6c9de7aba2b17bae9036427a8ae4a023a8502d Description: Display server for Ubuntu - protocol implementation Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: c619d91f67bba57f73bf198297f21d7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirserver-dev Priority: optional Section: libdevel Installed-Size: 350 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libmirserver18 (= 0.1.8+14.04.20140411-0ubuntu1), libmirprotobuf-dev (= 0.1.8+14.04.20140411-0ubuntu1), mircommon-dev (= 0.1.8+14.04.20140411-0ubuntu1), libglm-dev, libboost-program-options-dev Filename: pool/main/m/mir/libmirserver-dev_0.1.8+14.04.20140411-0ubuntu1_i386.deb Size: 32614 MD5sum: eff3a8be2aeba16d5416336c8abd2059 SHA1: 0661cbf788544eb578d18be8b2fc78add9f753bf SHA256: ad787d300c71b4d4ff41dee69764d11f2754317457362d6155feaed6f9f19f2e Description: Display server for Ubuntu - development headers Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: 98260f2d94306b61ba8e99360b379f43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmirserver18 Priority: optional Section: libs Installed-Size: 2086 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libboost-program-options1.54.0, libboost-system1.54.0, libc6 (>= 2.17), libegl1-mesa (>= 7.8.1) | libegl1-x11, libgcc1 (>= 1:4.1.1), libgflags2, libgles2-mesa (>= 7.8.1) | libgles2, libgoogle-glog0, libmirclient7 (>= 0.1.8+14.04.20140411), libmirprotobuf0 (>= 0.1.8+14.04.20140411), libprotobuf8, libstdc++6 (>= 4.8.1), libxkbcommon0 (>= 0.2.0), libmirplatform (= 0.1.8+14.04.20140411-0ubuntu1), libmirplatformgraphics-mesa (= 0.1.8+14.04.20140411-0ubuntu1) | libmirplatformgraphics-android (= 0.1.8+14.04.20140411-0ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/m/mir/libmirserver18_0.1.8+14.04.20140411-0ubuntu1_i386.deb Size: 512782 MD5sum: 2d8808bea8e5ff6adf314530b03cb9c0 SHA1: 2e4c2260c0906332e00f802424cc167c7114f576 SHA256: 8e56eefc0b309eade191db6a8b0d3a92c71a49c7d8e54a92be58476769191ecd Description: Display server for Ubuntu - server library Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: ec9e31363965aaba264f7029d7781e84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmission-control-plugins-dev Priority: extra Section: libdevel Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-mission-control-5 Version: 1:5.16.1-1ubuntu3 Depends: libmission-control-plugins0 (= 1:5.16.1-1ubuntu3) Suggests: libmission-control-plugins-doc Filename: pool/main/t/telepathy-mission-control-5/libmission-control-plugins-dev_5.16.1-1ubuntu3_i386.deb Size: 6876 MD5sum: c782f62263057369457a772b517b891c SHA1: 44488bac7e4c4b33d9efe61efe539bea783c39b5 SHA256: f07edb1f727a779671def90220ac868d926844f48682f4c13ff665a79bed7654 Description: management daemon for Telepathy (headers for plugins) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 0115beafbafd4cd8fe1e1d8f4a8a84b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmission-control-plugins-doc Priority: extra Section: doc Installed-Size: 339 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: telepathy-mission-control-5 Version: 1:5.16.1-1ubuntu3 Filename: pool/main/t/telepathy-mission-control-5/libmission-control-plugins-doc_5.16.1-1ubuntu3_all.deb Size: 31308 MD5sum: 35521bc5faab09b3faa3a32ce5416f3b SHA1: debf37875e8a433aae3c88fa97187c68656937a5 SHA256: f13be9dcdfcaf6eca9f4386fecb8cc0f1bf07114eecb658ea06925b6268a2a6a Description: management daemon for Telepathy (documentation for plugins) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: e1975b335d367bc7d6e7733a2fbafd49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmission-control-plugins0 Priority: optional Section: libs Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-mission-control-5 Version: 1:5.16.1-1ubuntu3 Depends: libc6 (>= 2.3.6-6~), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.32), libtelepathy-glib0 (>= 0.20) Recommends: telepathy-mission-control-5 (= 1:5.16.1-1ubuntu3) Filename: pool/main/t/telepathy-mission-control-5/libmission-control-plugins0_5.16.1-1ubuntu3_i386.deb Size: 16810 MD5sum: 0953dcafe0795c7269260c6ceb5b9546 SHA1: 0a3a3c81a4914bdf5abc580e9928148f25732a50 SHA256: 154f8ab86e91f935324dc55d8239fad682d0ca321752c1218197347b32d38add Description: management daemon for Telepathy (library for plugins) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: c170b6dd6040fbef530e3b58104d894e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libmm-glib-dev Priority: optional Section: libdevel Installed-Size: 326 Maintainer: Alexander Sack Architecture: i386 Source: modemmanager Version: 1.0.0-2ubuntu1 Depends: libmm-glib0 (= 1.0.0-2ubuntu1), modemmanager-dev Suggests: libmm-glib-doc Filename: pool/main/m/modemmanager/libmm-glib-dev_1.0.0-2ubuntu1_i386.deb Size: 24360 MD5sum: 90a101ad5834210f1aa51eb1161bd09b SHA1: 36bb8a2541a4a88feb9876c26bcbf7f3a112ced7 SHA256: b1418d25de9377d674b62253453bc2994dd8a807a70489d3cdaa073da7d90ea1 Description: D-Bus service for managing modems - library development files Description-md5: 6ae3bc1d8d927a7b5d623bcc9c1c1b19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmm-glib-doc Priority: optional Section: doc Installed-Size: 3774 Maintainer: Alexander Sack Architecture: all Source: modemmanager Version: 1.0.0-2ubuntu1 Suggests: devhelp Filename: pool/main/m/modemmanager/libmm-glib-doc_1.0.0-2ubuntu1_all.deb Size: 180386 MD5sum: 05d87c86771062e5ea909c35c5f58e9d SHA1: 338495e5aeecf8f7a3660a3ae788793b2277e557 SHA256: 4ddb86bff1226a280367fa21a64fb419446e718fe797922c2561e3204c9bc285 Description: D-Bus service for managing modems - library documentation Description-md5: 2b8e73d7f7246cbe1bc3f7f3e8259490 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmm-glib0 Priority: optional Section: libs Installed-Size: 669 Maintainer: Alexander Sack Architecture: i386 Source: modemmanager Version: 1.0.0-2ubuntu1 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Recommends: modemmanager (>= 1.0.0-2ubuntu1) Filename: pool/main/m/modemmanager/libmm-glib0_1.0.0-2ubuntu1_i386.deb Size: 127232 MD5sum: b8a9bbe44f61d254fed89c532ed72954 SHA1: 652ff88fb85d59c819d484696e0a0d9f2ef9f23a SHA256: bdc1879269ebda2bfc3f68164fbdab7f4b191597304cd33b33b3e11dca01d9c3 Description: D-Bus service for managing modems - shared libraries Multi-Arch: same Description-md5: caa3e3a8a443a0f0c22d3b0c5e287500 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmng-dev Priority: optional Section: libdevel Installed-Size: 894 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: i386 Source: libmng Version: 2.0.2-0ubuntu3 Replaces: libmng Depends: libmng2 (= 2.0.2-0ubuntu3), libjpeg-dev, liblcms2-dev, zlib1g-dev Filename: pool/main/libm/libmng/libmng-dev_2.0.2-0ubuntu3_i386.deb Size: 219096 MD5sum: 47881f23722b36dc7c67a8eb44881bd6 SHA1: df55fca805200d65854bc03099d8d0668d5e2d12 SHA256: 0e60925e4510a6e151c721d4d94e83c538a803debd5a8c8b64a8cf52d6468020 Description: M-N-G library (Development headers) Multi-Arch: same Homepage: http://www.libmng.com Description-md5: fdb8e2a268bfbd4c9984a39c4e1aa7eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmng2 Priority: optional Section: libs Installed-Size: 584 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: i386 Source: libmng Version: 2.0.2-0ubuntu3 Replaces: libmng, libmng-dev (<< 1.0.0-3) Depends: libc6 (>= 2.11), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/libm/libmng/libmng2_2.0.2-0ubuntu3_i386.deb Size: 165630 MD5sum: 4bb2c08cf1f1aaf650fc9e121755b492 SHA1: 3afd706a34a31495d51191fec6817fce6a91653d SHA256: 4c906f6ec0bd6b9a33194e3eb28437a6ad752d8aa3e13acf3061161c0201ce4d Description: Multiple-image Network Graphics library Multi-Arch: same Homepage: http://www.libmng.com Description-md5: 44b84456d07b211a83ed1660f6cea215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libmnl-dev Priority: extra Section: libdevel Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libmnl Version: 1.0.3-3ubuntu1 Depends: libmnl0 (= 1.0.3-3ubuntu1) Filename: pool/main/libm/libmnl/libmnl-dev_1.0.3-3ubuntu1_i386.deb Size: 11904 MD5sum: ea797d442de95b330d55b883e463130a SHA1: 71c091e612a90e0c74640419f4d85eb5b34c77a9 SHA256: 9a066187f9f39c29d37262e672108410e09142c4082caad30cf19dd427d20cc2 Description: minimalistic Netlink communication library (devel) Homepage: http://netfilter.org/projects/libmnl/ Description-md5: a98b989412e5ed2eb94b6c710889486b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmnl0 Priority: extra Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libmnl Version: 1.0.3-3ubuntu1 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/libm/libmnl/libmnl0_1.0.3-3ubuntu1_i386.deb Size: 11686 MD5sum: f1aa965f15168415ee9acc2aeb848124 SHA1: a66145047f0ab6cc648717d0fdd05f66ff21f246 SHA256: ebdc794e211944facd4302b525f73fc3526682e0cde807c32f901f912113fb75 Description: minimalistic Netlink communication library Multi-Arch: same Homepage: http://netfilter.org/projects/libmnl/ Description-md5: 6e8dc655315a40a8d6d0cab77a49b003 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmodule-build-perl Priority: optional Section: perl Installed-Size: 576 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.420400-1 Depends: perl, libmodule-metadata-perl, libperl-ostype-perl, perl (>= 5.11.2) | libextutils-cbuilder-perl, perl (>= 5.12) | libextutils-parsexs-perl, perl (>= 5.13.10) | libcpan-meta-perl (>= 2.110420), perl (>= 5.13.9) | libversion-perl (>= 1:0.8700) Recommends: libarchive-tar-perl, libmodule-signature-perl, libpod-readme-perl, libsoftware-license-perl Filename: pool/main/libm/libmodule-build-perl/libmodule-build-perl_0.420400-1_all.deb Size: 212678 MD5sum: b8c9d6b0b6ee742b33e7bc17e1c3328a SHA1: 4d6bb4b4e32e50f48142560258b438b918ae7a6c SHA256: 8e51d6e5d914de45b4d878816c7a29332fc98ff430489e0fc4a52c9f842746fe Description: framework for building and installing Perl modules Homepage: https://metacpan.org/release/Module-Build/ Description-md5: fa2ee309b6f2eec3e9cf7b941eb79c8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmodule-build-tiny-perl Priority: optional Section: perl Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.034-1 Depends: perl, libextutils-config-perl, libextutils-helpers-perl, libextutils-installpaths-perl, libtest-harness-perl (>= 3.29) | perl (>= 5.19.5), perl (>= 5.13.10) | libcpan-meta-perl, perl (>= 5.13.9) | libjson-pp-perl Breaks: liblocal-lib-perl (<< 1.006008~) Filename: pool/main/libm/libmodule-build-tiny-perl/libmodule-build-tiny-perl_0.034-1_all.deb Size: 9162 MD5sum: 11684bb98214618fa4bb31a9a4ce4ed6 SHA1: 58888673d477298f9632765fe79f30f257d99c64 SHA256: e8207683ff5ccf1b43eebf127a573ec471824cc3f72b2679a84e04a8d34367e1 Description: tiny replacement for Module::Build Homepage: https://metacpan.org/release/Module-Build-Tiny/ Description-md5: 1c8c004a8b88e4f7cc5ca7f268bdd7bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmodule-implementation-perl Priority: optional Section: perl Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.07-1 Depends: perl, libmodule-runtime-perl (>= 0.012), libtry-tiny-perl Filename: pool/main/libm/libmodule-implementation-perl/libmodule-implementation-perl_0.07-1_all.deb Size: 12808 MD5sum: b2afdc5fffa75d9d9bbe4606e89f4413 SHA1: bdaee9ffd73a9b5b460e1a069ba87105b2beff38 SHA256: 0abe45e9e24d5c59ac2e367f1418276ac44b73b2f7236a968bc996f9a8fb0fd8 Description: module for loading one of several alternate implementations of a module Homepage: https://metacpan.org/release/Module-Implementation/ Description-md5: 435fb0bcc3d1e6c76e042b4f76ff5fc4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libmodule-pluggable-perl Priority: important Section: perl Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 5.1-1 Depends: perl Filename: pool/main/libm/libmodule-pluggable-perl/libmodule-pluggable-perl_5.1-1_all.deb Size: 21246 MD5sum: b9d108898d78038e5cd879debe1d92ce SHA1: 7880880e300b0bcde7b0c8e1a8d47b259d39ea43 SHA256: 340d11b8d9ae403abc7d7f0a072ab4fdbf049938c72211b5619cb59b83ed888b Description: module for giving modules the ability to have plugins Homepage: https://metacpan.org/release/Module-Pluggable/ Description-md5: c7c2682ba1b76dc1b9bc7f5fdb566d38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libmodule-refresh-perl Priority: optional Section: perl Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.17-1 Depends: perl Filename: pool/main/libm/libmodule-refresh-perl/libmodule-refresh-perl_0.17-1_all.deb Size: 8364 MD5sum: 2fad758c4e10e9fc967fb12b3ce06e3d SHA1: 064f06b0d4ac5c2a0cfb27c2b2326fbe751d33b6 SHA256: f96574be42c846f2e28bbdd4c9be3d2bab6040fda9f4383cbcaea1cffaf723b3 Description: tool to refresh %INC files when updated on disk Homepage: http://search.cpan.org/dist/Module-Refresh/ Description-md5: 9642ecb5a41ac4e2b3eb5262b6338805 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmodule-runtime-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.013-1 Depends: perl, libparams-classify-perl, perl (>= 5.10.1) | libparent-perl Filename: pool/main/libm/libmodule-runtime-perl/libmodule-runtime-perl_0.013-1_all.deb Size: 15782 MD5sum: 319933956d32c182c9feec3fb2d38aba SHA1: e2441208c9eb74a2143900ff01c802a3e5482105 SHA256: 26000991d5c9b0ec3950d5c9073f1ce6c73c7937b5654aa6d8b3d5b4493e1e80 Description: Perl module for runtime module handling Homepage: http://search.cpan.org/dist/Module-Runtime/ Description-md5: 0addc2e07c40581d732353752eedc4cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libmodule-signature-perl Priority: optional Section: perl Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.73-1 Depends: perl Recommends: gnupg | gnupg2 Filename: pool/main/libm/libmodule-signature-perl/libmodule-signature-perl_0.73-1_all.deb Size: 25692 MD5sum: e53a2309407f32629ade24cb49f32e10 SHA1: 34cdb46c3fe0ba36cfb24db27d3cc1e9aea5b7a2 SHA256: 8e395a53ade7858fd04628a0c1f9b365c360ebe8c0d79dabcbc5bb303ab3a3f9 Description: module to manipulate CPAN SIGNATURE files Homepage: https://metacpan.org/release/Module-Signature/ Description-md5: 003b4a0e2accc05cf4a4ef88654a7733 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-2.0-1 Priority: optional Section: cli-mono Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-dev (<= 1.1.6-4) Depends: libmonoboehm-2.0-1 (= 3.2.8+dfsg-4ubuntu1) Conflicts: mono-utils (<< 1.2.3.1-4) Filename: pool/main/m/mono/libmono-2.0-1_3.2.8+dfsg-4ubuntu1_i386.deb Size: 10186 MD5sum: 50e5abbeb7042bf6ebb42bb3f2d35082 SHA1: 4f4b13f0783d6a1aacfb0ba759cbe222f978d369 SHA256: 40b2e2b1110a323e8294db496615273556d149c8c668fec47c030643822f3d2c Description: Mono JIT library (Default version) Homepage: http://www.mono-project.com/ Description-md5: ab1dbebe17d39cf9b85626eec8cc58c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-2.0-dev Priority: optional Section: cli-mono Installed-Size: 258 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmonoboehm-2.0-dev (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/libmono-2.0-dev_3.2.8+dfsg-4ubuntu1_i386.deb Size: 38222 MD5sum: c2b116b051169209fe7d6be9636d0643 SHA1: dfb2ed72faf691a5b7f1a336caa6cc29000e4a34 SHA256: c39577f24242b7b8358fe8b965886b10dfafc95831f1719b29ab7781f9d5a455 Description: Mono JIT library - Development files (Default version) Homepage: http://www.mono-project.com/ Description-md5: 40549c7fb70e8b2f699f56eecd2d5ef6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-accessibility2.0-cil Priority: optional Section: libs Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-accessibility2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13254 MD5sum: 3fd7be9c5d23916d73d4aff4c019e5cd SHA1: a3f095c109f304429f2faa02eed6fe32fea35baa SHA256: 2bfa7ca66d14dbe61be729e7f775888c9a39d721225733f020ab18c828b95052 Description: Mono Accessibility library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 7e7cd09cc80efb47e9ac57dda6bb9d25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-accessibility4.0-cil Priority: optional Section: cli-mono Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-accessibility4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13922 MD5sum: 64d41594b84c05e6f6bb25db0c5a919d SHA1: 93faaa431605efa4642896a29be3ba326177b003 SHA256: b1ed0874d09b9e529969db56e20fa9f9d43e94f7e3c5eb2ec9b1e77c75052d71 Description: Mono Accessibility library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 01e25690427b6fb0bf061c65ec1f199a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-c5-1.1-cil Priority: optional Section: cli-mono Installed-Size: 669 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-c5-1.0-cil, mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-c5-1.1-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 92084 MD5sum: 7ee6fba4886abcdd4b7b745ca8e650f4 SHA1: 12ebe15e77d2c3ce9b289e141b4b72e02b58ccf1 SHA256: 6bda794688514d597db88947ddf91dd179e31fdce5b02bfb95295fb9046fdaff Description: Mono C5 library Homepage: http://www.mono-project.com/ Description-md5: c6fa8c134a3b57ae944428eea822bf18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-cairo2.0-cil Priority: optional Section: libs Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-cairo1.0-cil (<< 2.4), mono-classlib-2.0 (<< 1.1.13.4-1), mono-classlib-2.0-dbg (<< 1.1.13.4-1) Depends: libcairo2 (>= 1.8.0-2), libmono-corlib2.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-cairo2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 28234 MD5sum: 2b46b65aa3f6ec700c57193134d5a6c4 SHA1: 59332650b6b3fe471b0a747a9fed8e75faeb18fb SHA256: b2d8ef7932d15928ca9387f6138f121e18c36acf9c68e9ce01baf474d7feb8bd Description: Mono Cairo library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: fd098ad789bd2566c7035a6ba5b8b199 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-cairo4.0-cil Priority: optional Section: cli-mono Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libcairo2 (>= 1.8.0-2), libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-cairo4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 30620 MD5sum: 2c5849de13967fbc9895814877cfeae1 SHA1: 3b792463eee8177e3ccc12e279f35b07d808b51f SHA256: 3ac9641ca4f7753f24b8f4ff35ebcd76c7c5111881996f8292711aa00e6c74ea Description: Mono Cairo library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 3cad538bdd5017f4146b38389cb19d3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-cecil-private-cil Priority: optional Section: cli-mono Installed-Size: 419 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono1.0-cil (<< 2.4) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-cecil-private-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 118148 MD5sum: d642e593f38a1bd1afd393881918b262 SHA1: 9e66cbacbfd6d4280b990fde3eabb8844f9d4f12 SHA256: 981eb4b2a87c67ac6d4d1e9c75ae44673d6c528e1fe582d63fdf5011454f37e2 Description: Mono.Cecil library Homepage: http://www.mono-project.com/ Description-md5: d564873520a1b5990e4c4443e97c1984 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-cil-dev Priority: optional Section: cli-mono Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-cairo2.0-cil (<< 2.4.3), libmono-cecil-private-cil (<< 2.4.3), libmono-dev (<< 2.10~), libmono-nunit2.2-cil (<< 2.4.3), libmono-nunit2.4-cil (<< 2.4.3), libmono-system-web2.0-cil (<< 2.4.3), libmono-wcf3.0-cil (<< 2.4.3), libmono2.0-cil (<< 2.4.3), mono-devel (<< 2.4.3) Depends: libmono2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-accessibility2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-accessibility4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-c5-1.1-cil (= 3.2.8+dfsg-4ubuntu1), libmono-cairo2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-cairo4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-cecil-private-cil (= 3.2.8+dfsg-4ubuntu1), libmono-codecontracts4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-compilerservices-symbolwriter4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-corlib2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-corlib4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-corlib4.5-cil (= 3.2.8+dfsg-4ubuntu1), libmono-cscompmgd8.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-csharp4.0c-cil (= 3.2.8+dfsg-4ubuntu1), libmono-custommarshalers4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-data-tds2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-data-tds4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-db2-1.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-debugger-soft2.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-debugger-soft4.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-entityframework6.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-entityframework-sqlserver6.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-http4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n4.0-all (= 3.2.8+dfsg-4ubuntu1), libmono-i18n-west2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-ldap2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-ldap4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-management2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-management4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-messaging2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-messaging4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-messaging-rabbitmq2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-messaging-rabbitmq4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft8.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build-engine4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build-framework4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build-tasks-v4.0-4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-build-utilities-v4.0-4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-csharp4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-visualc10.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-microsoft-web-infrastructure1.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-npgsql2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-npgsql4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-opensystem-c4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-oracle2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-oracle4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-parallel4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-peapi2.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-peapi4.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-posix2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-posix4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-rabbitmq2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-rabbitmq4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-relaxng2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-relaxng4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-security2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-security4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-sharpzip2.6-cil (= 3.2.8+dfsg-4ubuntu1), libmono-sharpzip2.84-cil (= 3.2.8+dfsg-4ubuntu1), libmono-sharpzip4.84-cil (= 3.2.8+dfsg-4ubuntu1), libmono-simd2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-simd4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-sqlite2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-sqlite4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-componentmodel-composition4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-componentmodel-dataannotations4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-configuration4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-configuration-install4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-core4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-datasetextensions4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-linq2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-linq4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-services2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-services4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-data-services-client4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-design4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-drawing4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-drawing-design4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-dynamic4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-enterpriseservices4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-identitymodel4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-identitymodel-selectors4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-io-compression4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-io-compression-filesystem4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-json2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-json4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-json-microsoft4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-ldap2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-ldap4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-ldap-protocols4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-management4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-messaging2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-messaging4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-net2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-net4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-net-http4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-net-http-formatting4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-net-http-webrequest4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-numerics4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-core2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-debugger2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-experimental2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-interfaces2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-linq2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-observable-aliases0.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-platformservices2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-providers2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-runtime-remoting2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-windows-forms2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-reactive-windows-threading2.2-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime-caching4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime-durableinstancing4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime-serialization4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-runtime-serialization-formatters-soap4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-security4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-servicemodel4.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-servicemodel-activation4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-servicemodel-discovery4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-servicemodel-routing4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-servicemodel-web4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-serviceprocess4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-threading-tasks-dataflow4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-transactions4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-abstractions4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-applicationservices4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-dynamicdata4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-extensions4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-extensions-design4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-http4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-http-selfhost4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-http-webhost4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-mvc1.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-mvc2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-mvc3.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-razor2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-routing4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-services4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-webpages2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-webpages-deployment2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-web-webpages-razor2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-windows4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-windows-forms4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-windows-forms-datavisualization4.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-xaml4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-xml4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-xml-linq4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-system-xml-serialization4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-tasklets2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-tasklets4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-wcf3.0a-cil (= 3.2.8+dfsg-4ubuntu1), libmono-web4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-webbrowser2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-webbrowser4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-webmatrix-data4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-windowsbase3.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-windowsbase4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-winforms2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-xbuild-tasks2.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-xbuild-tasks4.0-cil (= 3.2.8+dfsg-4ubuntu1), libnunit-cil-dev (>= 2.4) Conflicts: libmono-nunit2.2-cil, libmono-nunit2.4-cil Breaks: libmono-dev (<< 2.10~) Filename: pool/main/m/mono/libmono-cil-dev_3.2.8+dfsg-4ubuntu1_all.deb Size: 12926 MD5sum: 5a2a8e6a37105feaa23d80b2414fe357 SHA1: 4c2e076945092c214ac4bdd0947fec6062b679b2 SHA256: d750f1ccea0d293ecd3c5bf0b014af32af0ee1b5b3b31124f473236733f640fa Description: Mono Base Class Libraries (BCL) - Development files Homepage: http://www.mono-project.com/ Description-md5: b3ffc3f2c198d9bf41ba035ceb7c5c5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-codecontracts4.0-cil Priority: optional Section: cli-mono Installed-Size: 771 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-cecil-private-cil (>= 3.2.8), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-codecontracts4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 199446 MD5sum: cc6cdf930a7ff5bc41eaf3b30285d6ba SHA1: d4991d756d593fe1aef21808fdb8734bbd13b1aa SHA256: 3f926fefbc4116f57903b7078146d0cc7fab5da087bb666354d71ef761707006 Description: Mono.CodeContracts library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 0f9bf7bad06cfb237e0947b1bdc3bef7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-compilerservices-symbolwriter4.0-cil Priority: optional Section: cli-mono Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-compilerservices-symbolwriter4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 26546 MD5sum: 1a0caf3b25938eda909a13b2b03eaaf3 SHA1: d2baf8caad73f12ad4463e9af5533539f47804ad SHA256: 0fef351b284085f5a167738b171c85463c7abd134c4e11982e33c3689ae0a9dc Description: Mono.CompilerServices.SymbolWriter library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 18b1e3a7c7cc618f86b8abed7427378c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-corlib2.0-cil Priority: optional Section: libs Installed-Size: 2651 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Recommends: libmono-i18n-west2.0-cil Suggests: libmono-i18n2.0-cil Conflicts: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Filename: pool/main/m/mono/libmono-corlib2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 728738 MD5sum: 0c6483e9a56ddad0374c9a5cf92f9330 SHA1: 1ab206b93d33a52a7b5b52ef5b51f1a90e6e3bb2 SHA256: 6d55d1057bada06407c0dbf435e9ae1295fafc09fd025030c65ed843c43814ed Description: Mono core library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: d4b4c9221c5c9a62ff9a3418cdd71f24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-corlib4.0-cil Priority: optional Section: cli-mono Installed-Size: 2929 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Recommends: libmono-i18n-west4.0-cil Suggests: libmono-i18n4.0-all Filename: pool/main/m/mono/libmono-corlib4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 798854 MD5sum: 4a73abf5de1aae417ae772cd9de17383 SHA1: d8e07ad03044e7475524bd2ca6c6c911fc5c2f64 SHA256: a35933ecf0be6599f82c8dc0d331f14c9fe6d2d2850ca7d6941a38f3f0277f6e Description: Mono core library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 88a688be28fc79052e9093c5007f97ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-corlib4.5-cil Priority: optional Section: cli-mono Installed-Size: 3002 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Recommends: libmono-i18n-west4.0-cil Suggests: libmono-i18n4.0-all Filename: pool/main/m/mono/libmono-corlib4.5-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 816356 MD5sum: 080e5fd2ff93e3c6f669df1ce94b1cba SHA1: bfddad1ac6291e3c0c93e1e82c4ae49441e532bc SHA256: 9b3cadaaca6800d7a11835b18c28b37ce8494e39bd133b3da9c22844f8ed49ab Description: Mono core library (for CLI 4.5) Homepage: http://www.mono-project.com/ Description-md5: b9348047abaa2f15655ede6d853a4c94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-cscompmgd8.0-cil Priority: optional Section: libs Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-cscompmgd8.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 15946 MD5sum: 0a6118f9db9e895ab7e992ebcc7c4fa3 SHA1: 1a91a2637ed59e0f7bbd69234123bcb0bf8d5b29 SHA256: 41b558076f611fd61abf45604bed1f45c74416b0b502f54bd64328bb32469745 Description: Mono cscompmgd library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 58b6403f58f5d5905ea007f50ce99215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-csharp4.0c-cil Priority: optional Section: cli-mono Installed-Size: 2549 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-csharp4.0-cil (<< 3.2.1), libmono-csharp4.0a-cil (<< 3.2.3), libmono-csharp4.0b-cil (<< 3.2.8) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-csharp4.0-cil (<< 3.2.1), libmono-csharp4.0a-cil (<< 3.2.3), libmono-csharp4.0b-cil (<< 3.2.8) Filename: pool/main/m/mono/libmono-csharp4.0c-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 363380 MD5sum: 7c5068dedd386a0e513001d285f94b78 SHA1: aaa651766f1c1200ceccc30c914f277a905e6e9d SHA256: 91b35f7e3e94060ba01c0c206a2ee50d60a6ef39d4f05391e94764353b746e5a Description: Mono.CSharp library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: d674a3b6e4a7b4a83ff74b492cecb43c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-custommarshalers4.0-cil Priority: optional Section: cli-mono Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-custommarshalers4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14616 MD5sum: 26f159f6f12db82eae13f195c77a9625 SHA1: 67c48e03376c2b512c7701e36cc664dbc7682707 SHA256: c951e044890b7c97cb7cad22cb35b005b6c991a319b48b4cd1fdfd6877e1d767 Description: Mono CustomMarshalers library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 1ef3fc5c461965be6e44da8d40fcf3aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-data-tds2.0-cil Priority: optional Section: libs Installed-Size: 190 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-security2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-data-tds2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 41664 MD5sum: d0b94180be9e0f191a6d552b2b9b1b2d SHA1: 1ccf6d26fae5d055bcad43e701c9e47d4e10d5ca SHA256: da7a94e94f590d2897fb57c16b6f45165c0d0fccf25cf9d08c123529d043f021 Description: Mono Data Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: a0f593718cf5e087076914edffc7f1e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-data-tds4.0-cil Priority: optional Section: cli-mono Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-data-tds4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 43504 MD5sum: cd31b6c3e7eae9bcd084497f1b89721d SHA1: d65eab00e3dfaaf1b2ac51ac0da71831d364a235 SHA256: 689a93b28937a80ab3d27efdec3992ff7f034624e47d37fc7a3e93c470d943b9 Description: Mono Data Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 3692f0cb3febb7a4eaefe872d097f5b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-db2-1.0-cil Priority: optional Section: libs Installed-Size: 244 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-db2-1.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 35698 MD5sum: 3fffebb0f8dcb56fe2458e49da702925 SHA1: 089500aabd4afb15cb747103b8a449cc8c83fd80 SHA256: c412b70518b9bc920872cb30847d1934eaa507f292b651c0042667c84084569a Description: Mono DB2 library Homepage: http://www.mono-project.com/ Description-md5: 3c28ae2d2103f915d76e9bbe31dec2bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-debugger-soft2.0a-cil Priority: optional Section: cli-mono Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-debugger-soft0.0-cil, libmono-debugger-soft2.0-cil Depends: libmono-cecil-private-cil (>= 3.2.8), libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Conflicts: libmono-debugger-soft0.0-cil, libmono-debugger-soft2.0-cil Filename: pool/main/m/mono/libmono-debugger-soft2.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 56784 MD5sum: 37b00b1530f9a933f19e3541fe157b47 SHA1: dd5cb4db21d7ebfc2495aaa9f1d10e6dd213d670 SHA256: 4abbc02361b5d2ee4ef99fb29a77f72deb15e7e0d14e51f9822045f22a997da2 Description: Mono Soft Debugger library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 3ed46fafb741c5e55b8b863ade7c0377 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-debugger-soft4.0a-cil Priority: optional Section: cli-mono Installed-Size: 380 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-debugger-soft4.0-cil Depends: libmono-cecil-private-cil (>= 3.2.8), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Conflicts: libmono-debugger-soft4.0-cil Filename: pool/main/m/mono/libmono-debugger-soft4.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 70124 MD5sum: 27c9bd95414cffbfb9f6bbb944773325 SHA1: f1d93e44769ff32ff5c1f29ec704f20c246b7604 SHA256: 35358ccd81a7b68ec9c406110753d847ec44b082d886d07b0b538d357ebb7eeb Description: Mono Soft Debugger library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: b2b9fac809d6201b221707a5c359d5b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-entityframework-sqlserver6.0-cil Priority: optional Section: cli-mono Installed-Size: 597 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-entityframework6.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-entityframework-sqlserver6.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 87994 MD5sum: 0a558b15ff2aaee6734bd3b5ed5fa4ea SHA1: 501c8aa4f1bc4f641b055188dd085bd4de11e758 SHA256: e1fe71a1f0899644b07dee6c19ac2c2406831a5df1d9124a5b055a882bca7748 Description: EntityFramework.SqlServer library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: e661c9a149ccf32bb3556773ae5a960e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-entityframework6.0-cil Priority: optional Section: cli-mono Installed-Size: 4665 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-csharp4.0-cil (>= 1.0), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-transactions4.0-cil (>= 1.0), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-entityframework6.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 1101370 MD5sum: 7a830fa8346ff30156c40c9c51f47b3b SHA1: c0cb35b5a02a6fbbc35cedbf4bb0793db86fea9e SHA256: 2e3b2a1c804a478be50e2839688fac4ce44f92a4a7fad93c3790200faa5b787b Description: EntityFramework library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 52560171f5cc46ff1a7f20aabd818a89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-http4.0-cil Priority: optional Section: cli-mono Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-sharpzip4.84-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-http4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 21202 MD5sum: d283aac7720666f05c3c1a44812dea85 SHA1: e7b9796957d16c5d0cb59864651d8640b228c195 SHA256: d00d43ac75dd8bfee472e55e4ddde454d5a46caf75530ed837175cc1a7f7cbaa Description: Mono.Http library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 65a561fb620581a1190c638b7d41ec59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n-cjk4.0-cil Priority: optional Section: cli-mono Installed-Size: 1432 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-i18n4.0-cil (>= 3.0.6), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-i18n-cjk4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 238216 MD5sum: 3cbabc1af80bca8ef3f2060c3f341830 SHA1: 299eeda04e8f2c5b48d794205e9a902d2ae1c127 SHA256: 86877c86a7337b7b0fccb515dc901d27baf6b05232ef70eac27afe42db258732 Description: Mono I18N.CJK library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 8106d7f4f8f7ac7f375ae9a0d8510346 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n-mideast4.0-cil Priority: optional Section: cli-mono Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-i18n4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-i18n-mideast4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 18000 MD5sum: e7aa1772c4438e2ff6fa9962964924d9 SHA1: 5cb5bb4267c0ff138468a4b66f03ae36d8818e08 SHA256: f80b0566df632c9a38d96a829eeda888c560c56b18d915a5970fe0be1c962f8e Description: Mono I18N.MidEast library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: c04c9e411d7ece0c75314a03d75cf032 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n-other4.0-cil Priority: optional Section: cli-mono Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-i18n4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-i18n-other4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 19362 MD5sum: 6a9234bc5529f63e35bdd89a74268153 SHA1: 6b0a14d88444b1f3b97b669e15dbd37e6f83486d SHA256: 52340215ba687a5be166db6eb53a1691587d2967a3bc9a58264e2ff7be24b0d3 Description: Mono I18N.Other library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 8b53dbaa17e32844ec1ee3ceb9a6ffab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n-rare4.0-cil Priority: optional Section: cli-mono Installed-Size: 451 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-i18n4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-i18n-rare4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 34046 MD5sum: 26c2d505429db24a995ce86d5b1ee079 SHA1: 80e49280a447b4e93eaa8a3ed48eff73a2d3895f SHA256: e8153f76468d7064074909995e216653f77c9d4643f48d7cfbaaabb3bd5430f3 Description: Mono I18N.Rare library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 4e36031c4da3969fa20f779345da4700 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n-west2.0-cil Priority: optional Section: cli-mono Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-corlib2.0-cil (<< 1.2.6-1), libmono-i18n2.0-cil (<< 2.4) Depends: libmono-corlib2.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-i18n-west2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 30602 MD5sum: e09832815adc4d69bd7d843d016e6f8c SHA1: 83209149ef382e6bc399559ef81d6c89d49053a7 SHA256: 8e92e73c71f88e773ea5607d3450db59b07c0beb1cd18ffec94dcb0294f03328 Description: Mono I18N.West library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 1026a5f88ffdf3a7b72345328d99ddcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-i18n-west4.0-cil Priority: optional Section: cli-mono Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-i18n4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-i18n-west4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 23938 MD5sum: 871aac5bccdffb2495a540a7740b76ff SHA1: f117464c76a88525f85fd02e94fd343eb64d0c6d SHA256: 647d270b8a99ea6be7bd80a0aef72bac954200783a25e3074fecaf303ccdff76 Description: Mono I18N.West library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: bbb1f3ed6bdf1f7980de1f5d24143fb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-i18n2.0-cil Priority: optional Section: libs Installed-Size: 1023 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-corlib2.0-cil (<< 1.2.6-1) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-i18n-west2.0-cil (>= 3.0.6), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-i18n2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 266906 MD5sum: bcbc09d9c3a901da9fe5d14caf574d10 SHA1: f5b0116979fd458f692ede65a446c194421463fe SHA256: d034919d26b36c95cbb143c6f6896f0f2d542707f6efb12fd544c865792ce869 Description: Mono I18N libraries (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 15f95ff770270466300b9d802e67f063 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n4.0-all Priority: optional Section: cli-mono Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-i18n-cjk4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n-mideast4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n-other4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n-rare4.0-cil (= 3.2.8+dfsg-4ubuntu1), libmono-i18n-west4.0-cil (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/libmono-i18n4.0-all_3.2.8+dfsg-4ubuntu1_all.deb Size: 10120 MD5sum: bffb60e89fa3345dd8463f08fb50be52 SHA1: 3bb556a09ab50e28960064922226e7cca726bbb6 SHA256: 120afc394fc45498d4c66eb1bf89c1d6cbe3b53513478c83f18d256c6de755eb Description: Mono I18N libraries (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: fa7a32d460bf9bc781b07790ce48801b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-i18n4.0-cil Priority: optional Section: cli-mono Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-i18n4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20486 MD5sum: a8ca34e2339d5adbffe6d5967daf9eb0 SHA1: efbd4fccc04ad697b3d45633e0211003e4aa5284 SHA256: fb34161516d6b4fd6f23dd2b54711fdf44316ea897fc5e1fe74040811f68a6b1 Description: Mono I18N base library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 09cc8dcd1de793c67cfef1e6ef05d039 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-ldap2.0-cil Priority: optional Section: libs Installed-Size: 349 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-ldap2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 90028 MD5sum: 2990272d187db2869e33d674a36508a6 SHA1: 7585903708fb75c50689921a88502347bfde26fb SHA256: 0f80a7cdf38a1b23d921abc0902ab5175648c08cd9251990e485595bff0a2cbc Description: Mono LDAP library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 01b9f2a7ad8f76af538add1020840b13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-ldap4.0-cil Priority: optional Section: cli-mono Installed-Size: 611 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-ldap4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 93428 MD5sum: 5e5527938d2de6469a86ca048d6aaa82 SHA1: 8d4867e0becd8eca875da791addbdbbd91667219 SHA256: 5c36ca03a39fbce1f3de2bdf593de98b8e55675dc044740913d5b18d774edfd9 Description: Mono LDAP library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: d9a2c83fc9264bc3e18041fc5c146d92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-management2.0-cil Priority: optional Section: cli-mono Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-posix2.0-cil (>= 3.2.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-management2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14250 MD5sum: c221c9f3a9d06df9d3fbe596fafc1da3 SHA1: 8610a6083e462e7d6ee97de7f7cd8686dc528993 SHA256: 8e3c3165f30b14d7fb468d747b968a036e1c4ba5b64fd732ab3e0d2b44eee7cf Description: Mono Management library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 0bea95a6bf50b19daa0a2faf16218322 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-management4.0-cil Priority: optional Section: cli-mono Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-posix4.0-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-management4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14970 MD5sum: a10e29a83550689dd1946979208b37c9 SHA1: b1305b7bfc14c779baa00018bfa4145ed04a39a1 SHA256: 99d47e1ea7ced0667dd8f6ab6bf386b1e4746a44c3b9bd3f119b5b7231577aeb Description: Mono Management library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: caec665407fe914e55aec4c0bcb0e9de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-messaging-rabbitmq2.0-cil Priority: optional Section: cli-mono Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-messaging2.0-cil (>= 3.0.6), libmono-rabbitmq2.0-cil (>= 1.0), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-messaging-rabbitmq2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 21846 MD5sum: fe3e6406faf3dcea43401ec1bc832dd7 SHA1: a0944fc1995ba3a43f1d714a23c0fde4d055793e SHA256: 8ee88b6852fe40c0dd1b25d3156f8f504bf46f4dbdd3145961d3d264d3401b5b Description: Mono Messaging RabbitMQ library (for CLI 2.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: 18c21869bd5517aace439e972346aa11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-messaging-rabbitmq4.0-cil Priority: optional Section: cli-mono Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-messaging4.0-cil (>= 3.0.6), libmono-rabbitmq4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-messaging-rabbitmq4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 23002 MD5sum: 06f359b15f93dd048900c4ca91a8b7b9 SHA1: 4e3667f392dcba3748b480d29c95554d7a01ed1d SHA256: f787a60289ecc109c150d71e3710d238806055a15d72d0531c923540d372bbc5 Description: Mono Messaging RabbitMQ library (for CLI 4.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: 55621d64556c992fdb784d67d974b47b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-messaging2.0-cil Priority: optional Section: cli-mono Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-messaging2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20838 MD5sum: d195221c4c1569375e55c7431198e33c SHA1: 70312e91376555de6e7530a2a043a65d37f6d49d SHA256: 07fa265643ef6af3efc3bf3785df6c466c2365c1372a16014b59b95d03e4c2fc Description: Mono Messaging library (for CLI 2.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: 4b60c97c01f64a3a1e11b4232d4c3cc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-messaging4.0-cil Priority: optional Section: cli-mono Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-messaging4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 22150 MD5sum: b005657b35fd80a884e43d20b234b065 SHA1: 6df898978a88a3f5bcfb56f7484a990fead76984 SHA256: 70537bb7c8cd33d17ac0300a88e814ee06a984321ee59f9a6350ceaf005932f2 Description: Mono Messaging library (for CLI 4.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: cb7410fa63ae6b8cc40e13af2fb1daa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build-engine4.0-cil Priority: optional Section: cli-mono Installed-Size: 554 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-build-framework4.0-cil (>= 3.2.8), libmono-microsoft-build-utilities-v4.0-4.0-cil (>= 3.0.6), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-build-engine4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 87284 MD5sum: edac0589b44b9274e85482532349a4be SHA1: 50d02554744d2f61a693bc824e783fdfb13e6315 SHA256: ca46ade9a98e2231a18f8b357f95a9bbd2a438432294004b6d42b6bf4558b641 Description: Mono Microsoft.Build.Engine library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 1247f414de9e2e1efc48d56354c7a235 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build-framework4.0-cil Priority: optional Section: cli-mono Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-build-framework4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 22514 MD5sum: a1d5dfeea16ae1a101c7782b5208e27b SHA1: c646348b772903374104860bed8c0690e4aca186 SHA256: 0d2a9bfe4a28bbd9f96736b786b218d9b70f38d3b156ece0bdcc5cef7d3979ce Description: Mono Microsoft.Build.Framework library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 521ef46eb4fff058ea953411bf6e7834 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build-tasks-v4.0-4.0-cil Priority: optional Section: cli-mono Installed-Size: 428 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-build-engine4.0-cil (>= 3.2.1), libmono-microsoft-build-framework4.0-cil (>= 3.2.8), libmono-microsoft-build-utilities-v4.0-4.0-cil (>= 3.0.6), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono-xbuild-tasks4.0-cil (>= 1.0) Filename: pool/main/m/mono/libmono-microsoft-build-tasks-v4.0-4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 66864 MD5sum: c9a66c7c1c9520aec9b555f0b2230c62 SHA1: 217272f23903fd2b8cb7ef6baa42840de94338fc SHA256: f3e0e85a4578f065e4653e1d0bc88b8047b0179e871f14b1face6cd99ece51c7 Description: Mono Microsoft.Build.Tasks.v4.0 library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: d0c9af113a05fc7c9e5734e78dbd3aac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build-utilities-v4.0-4.0-cil Priority: optional Section: cli-mono Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-build-framework4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-build-utilities-v4.0-4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 31050 MD5sum: 8d5d7b296d5b54973af1ac33f400f62b SHA1: 2492882c999fc82498b02a71e53fa9e1542d2f0a SHA256: 43da12ac60dd16a5f8e586564d797e28d73184d8d7fe340ef9f0dab55cdef06a Description: Mono Microsoft.Build.Utilities.v4.0 library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: dc4ca24f26da919a9e39d2717b00115a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build2.0-cil Priority: optional Section: libs Installed-Size: 1053 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1), libmono-xbuild-tasks2.0-cil (>= 1.0) Filename: pool/main/m/mono/libmono-microsoft-build2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 178234 MD5sum: 2f20d6e23cf310d4ab7dc1ec6dc449a0 SHA1: 8349cd92e3be64008c96cc451607af26d8e289e7 SHA256: 064ed36d16e115f0445bbc64d4bf12bfb4fbe0fae3e46ca8d664583aef135370 Description: Mono Microsoft.Build libraries (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 42e72e59e252156d2246b7f7c15aa8ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-build4.0-cil Priority: optional Section: cli-mono Installed-Size: 625 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-build-framework4.0-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-build4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 128092 MD5sum: 23babce379e78ef8b67eb9b5429a4ffe SHA1: ec8a73b6c6f8ea699ad4b3e37c75339360d086bb SHA256: d357e75eefef5ba48e9b1a295128f4b46b75a3418acf1df0720bd267905ee59a Description: Mono Microsoft.Build library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 97b7e9a521375d342b1a2a4b98b88d05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-csharp4.0-cil Priority: optional Section: cli-mono Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-csharp4.0c-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-csharp4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 21684 MD5sum: 9f15a23b0fa823dc2e5024f9c8e306a4 SHA1: 9e456397c2f2a55e12ac34adc146ce522a504cd0 SHA256: ad8241e4bd24c0291ab88414aa54bc33ad4db20b869fc085c1e10f3f53b5b459 Description: Mono Microsoft.CSharp library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 3a6ea56d61d663ae9e9136d99bc86e03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-visualc10.0-cil Priority: optional Section: cli-mono Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-visualc10.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13296 MD5sum: 6d8bc919460aa3e10c63095fcffaea5a SHA1: a9b2683940a21c58b4ea38968a0c6af722060fa5 SHA256: 4f6f64ee05b9d5d4bf2bdbcc0aed6f21f302d52ace98af32bccca20ebddd4af7 Description: Mono Microsoft.VisualC library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 749143437420c731c2bca738530c7336 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft-web-infrastructure1.0-cil Priority: optional Section: cli-mono Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-web4.0-cil (>= 2.10.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft-web-infrastructure1.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 15968 MD5sum: 076a2297508f8358e787154cfec6a126 SHA1: 49c87a08fa04613417adca024ac5d7d1dd0b5bb7 SHA256: 1746c1d3e93018abcba6bba4179481c8a356521830311b2f008a69c5a170aa41 Description: Mono Microsoft.Web.Infrastructure library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: cb233cf50954f57990a6629556218df9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-microsoft8.0-cil Priority: optional Section: libs Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-microsoft8.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 12692 MD5sum: 0415f5807aff46556b9a2b26c05dbd86 SHA1: 0615f19f37ef4fe5273ebaa38d2aa7f15c83a4d5 SHA256: d66b66ef88bbcac630759f9eb33fd1d5d6f48cfe7a9f25c2610fa8251b06ff3d Description: Mono Microsoft libraries (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 747b89d6ea09827a5fe7a9c452c3208e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-npgsql2.0-cil Priority: optional Section: libs Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.4-1), mono-classlib-2.0-dbg (<< 1.1.13.4-1) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-security2.0-cil (>= 3.0.6), libmono-system-data2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-npgsql2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 65866 MD5sum: 337535080b26bbda2993e925ee6725d2 SHA1: 28e1c77674887df52b5ed545930cb04e0e3b8c8d SHA256: 614f803244a5eda57172a6dd98129667e2580daa7f8d93570e635648d26da43e Description: Mono Npgsql library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: c641f06a083ceab178878f5815896da7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-npgsql4.0-cil Priority: optional Section: cli-mono Installed-Size: 451 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system-data4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-npgsql4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 68316 MD5sum: 28365c59d2ce6b77a562cd14ac3b0224 SHA1: 80a06338bf631c87add9839efb76a912848334cc SHA256: 6725108d81743a9a532d87d75a38be1040ceea133ef98c97bee48bceb5990fc6 Description: Mono Npgsql library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: ef3888a9bae77519d311f917e0993086 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-opensystem-c4.0-cil Priority: optional Section: cli-mono Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-opensystem-c4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13242 MD5sum: 5c591bc9c8ca7fd0a19069fdac5f146d SHA1: b2c8eb533532a5198c0c9ad6c22e3760472224c4 SHA256: a93d709692171b2eeb18cbb127049268f831077a6f1472446aa3a4a49e40b12c Description: Mono OpenSystem.C library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: fc50d01933cd0918001e79232966a102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-oracle2.0-cil Priority: optional Section: libs Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-system-data2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-oracle2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 61892 MD5sum: 7300ee2c1dc58a3fd19c8ff6d6cfbbcc SHA1: e9a7ec9f8372aba4ebd3009f8edc67360566eca6 SHA256: 8f0354bd2177fe377fa6deaf8ad99ef8cc6c6c5a7d536ec1bb364f2d8dcf4f7c Description: Mono Oracle library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 03e2780105c26119eec631e2dcf75302 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-oracle4.0-cil Priority: optional Section: cli-mono Installed-Size: 444 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-enterpriseservices4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-oracle4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 64670 MD5sum: 10a055a525873036b354e2870e305ef2 SHA1: 49466054dedf6ca5820d40c0af7aaf3450b6f3bf SHA256: 52a5fcd6fd2053d8d7b718c8c264e2ff9390b54ab070d4c1edc9285e14c33ad9 Description: Mono Oracle library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 7a9aa9055753eb855953d2702e716ec1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-parallel4.0-cil Priority: optional Section: cli-mono Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-parallel4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 25074 MD5sum: 31240c8a1e5e816db3536d0fdafc6ec0 SHA1: a6bee3f4a3bb9ecc46452c2808decc33bb8bf595 SHA256: 03794252a66437be77db65b849367e5446e615416bfd894d84ca8bacbf8e0f77 Description: Mono.Parallel library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: ea043104b1d2835242422612c8f9888f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-peapi2.0a-cil Priority: optional Section: cli-mono Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-peapi2.0-cil Depends: libmono-corlib2.0-cil (>= 3.2.8) Conflicts: libmono-peapi2.0-cil Filename: pool/main/m/mono/libmono-peapi2.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 43914 MD5sum: 224009de23bd1e5ef0d2c3f3a7fb65b4 SHA1: abd2be3d6c642185f352b78e914d8e7d8aa96ebb SHA256: e9397d378e1486dc633b4052e892f9e68b0430115ef5fdf05e97d16c24afd494 Description: Mono PEAPI library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 6e670e1a26e354063cc1c0bf4227e3c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-peapi4.0a-cil Priority: optional Section: cli-mono Installed-Size: 298 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-peapi4.0-cil Depends: libmono-corlib4.5-cil (>= 3.2.8) Conflicts: libmono-peapi4.0-cil Filename: pool/main/m/mono/libmono-peapi4.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 46024 MD5sum: 5f1b856fe2287dfb305a112e31785485 SHA1: 4c9e8a25bbbb273fdd046166820e70528f47c0e2 SHA256: 7a8510b3e7ae5c8a4cb77d73873bd2a03d96f7cb699ca8590d7b4f692396f0c3 Description: Mono PEAPI library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f348871ae4d227e0fec02055a78f296d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-posix2.0-cil Priority: optional Section: libs Installed-Size: 282 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono2.0-cil (<< 2.0) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1), mono-runtime (>= 2.10.1) Filename: pool/main/m/mono/libmono-posix2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 70380 MD5sum: a79c3007234062ba7834900e64b52a75 SHA1: 71217e3b2b6dd8a7d2a07ee018ef937947e90175 SHA256: b3bd8046ba3252bf050958aebb52b08064b6c4a01a34e94c595336b30cea8788 Description: Mono.Posix library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 8a2d646b2ba45a05656da4b73eeabc2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-posix4.0-cil Priority: optional Section: cli-mono Installed-Size: 478 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8), mono-runtime (>= 2.10.1) Filename: pool/main/m/mono/libmono-posix4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 74450 MD5sum: f44f97a26d3fd4c6b8d78a825ef13e93 SHA1: 8ef2e355e0fb785c9ec4c445d067607619f11c77 SHA256: 94727a9abfb3a98a8eb894eea8688b2cec11643737a4e4ef66ce1b35a6a23aaa Description: Mono.Posix library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: ff788b5250a346c6b6a19c2694d5a435 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-rabbitmq2.0-cil Priority: optional Section: cli-mono Installed-Size: 552 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-rabbitmq2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 91574 MD5sum: 11d6f19e9d3cab77c2fc010ba78bf8b8 SHA1: 4a181e35f670c67d949c77ec671cd55f3bb349cb SHA256: 14c2e54a322d18b916eaf5de6ab48c1ef3936ce267c402edaaeb155922454471 Description: Mono RabbitMQ.Client library (for CLI 2.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: 9d4ddf6b12ef690504a6e50bfe611e32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-rabbitmq4.0-cil Priority: optional Section: cli-mono Installed-Size: 1024 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-rabbitmq4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 97348 MD5sum: 00ff6792b70aec595e6d4cf38ff72d41 SHA1: 7f412481fa9e906e2dd38e7445aa0383923a125f SHA256: b3b7692c14dc7201b66b4252999cda6502fd10602680ce22ddffbe965890bc9f Description: Mono RabbitMQ.Client library (for CLI 4.0) Homepage: http://mono-project.com/SystemMessaging Description-md5: 4053f71554e92f8366c253de467b6c7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-relaxng2.0-cil Priority: optional Section: libs Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-relaxng2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 77240 MD5sum: 876b6da30e49940c5a0dbd7e46741219 SHA1: 0b7c48fcfba07ce1a67d81c743902b7bdbdddbb3 SHA256: a73c3463eb35673d8c53668c515c03f1ad5261970acff86dd88e5cb2d1e7bd55 Description: Mono Relaxng library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: f646df9207af20b90f4fa0bc9fd1d414 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-relaxng4.0-cil Priority: optional Section: cli-mono Installed-Size: 570 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-relaxng4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 79942 MD5sum: 3a6db646717e493e08c16914b903b082 SHA1: 3f35cf1334a8efcd8896aed4a343acb91002fefc SHA256: 40ea24690d7cad4e78c34cf54f2c0ad30984f278bf455509c585407aefb20dbc Description: Mono Relaxng library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f797ef231e2a4b9169f8655dd37de4d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-security2.0-cil Priority: optional Section: libs Installed-Size: 383 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-security2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 106612 MD5sum: 09151b86e14f1d1f3c4b37ade990e3fb SHA1: cb1f8f5bacaa8f5f5fdd55d4662af7147fcc55f6 SHA256: 627388b7a2f286a43b3856ece048bdb2ed98d503f082654395dbaf021f57c62a Description: Mono Security library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 2d726a7f1d7bc6a74fcf40949f2be0c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-security4.0-cil Priority: optional Section: cli-mono Installed-Size: 680 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-security4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 110320 MD5sum: 427c3b8c7106213af75f0fb95e368a66 SHA1: c5b7a7e80147d57985a2989f967f84161d770826 SHA256: 9f8ecc005bd5d8e9bc4759298f6383ff36221d8502a25e228b45b783f511fd0a Description: Mono Security library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 1d62f62d6ff4829f9ec59087a3745678 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-sharpzip2.6-cil Priority: optional Section: libs Installed-Size: 197 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.4-1), mono-classlib-2.0-dbg (<< 1.1.13.4-1) Depends: libmono-corlib2.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-sharpzip2.6-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 49716 MD5sum: c89a5fc2743651f7f9ddb36b67e30b0e SHA1: 4eb2ce0dfee17ecd906c2a1d58a23e18e7b86cca SHA256: 9226c087c4207ef1bb5c5693a764a3c756478a3f30f04de02e9dd833fdaf8ccb Description: Mono SharpZipLib library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 5b5c1a8eda78a49c464a4e6d4d49fd57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-sharpzip2.84-cil Priority: optional Section: libs Installed-Size: 222 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.4-1), mono-classlib-2.0-dbg (<< 1.1.13.4-1) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-sharpzip2.84-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 57856 MD5sum: da6646c38850c8ce3db42b1cf315f7e8 SHA1: c5660133b35b5a6f569eca2d90fedbc20c2fce3b SHA256: 960dba070a419cb63840671a4c897f80f1770bee145f9a1f53b169720a814c2b Description: Mono SharpZipLib library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 69a9f694d1cd0af04d86dfc03da8b80e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-sharpzip4.84-cil Priority: optional Section: cli-mono Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-sharpzip4.84-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 58322 MD5sum: 43bf957fcb1aa7ed47396856ac5d55c7 SHA1: 69d494053924a9bf8105ff3d54e2748ff084ab29 SHA256: 8be9eb5d43855c3a5db79ee71dab1e1213a3182275ec0222c7e253361d1c3ee2 Description: Mono SharpZipLib library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: dda1f56260ba57d30ddbff3bd080700e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-simd2.0-cil Priority: optional Section: cli-mono Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-simd2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 24640 MD5sum: d4bded17134e42556bce4e823e8b5985 SHA1: 40e7a13e13a4025c7a5c45d9b4da98f30f67501c SHA256: 6ba7e2ddcfa46c3359b4be5b4a8df26b167cd8595f09ec10129c873f88b2d493 Description: Mono SIMD (for CLI 2.0) Homepage: http://go-mono.com/docs/index.aspx?tlink=0@N%3aMono.Simd Description-md5: 5c5a562bb3d3d89dc76f87565d1d7ee8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-simd4.0-cil Priority: optional Section: cli-mono Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-simd4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 26474 MD5sum: ff422a33279657d00c38e4acc0e66afb SHA1: 5a61eff31e3e4de3bce132cfc79f1dbdec585d9b SHA256: 0e17108144a9d36a7d11120a0fb7a25101f88c091b7c346d97bbf454e3ae7550 Description: Mono SIMD (for CLI 4.0) Homepage: http://go-mono.com/docs/index.aspx?tlink=0@N%3aMono.Simd Description-md5: 960d4c7486db3919eb931dc09c8515b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-sqlite2.0-cil Priority: optional Section: libs Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.4-1), mono-classlib-2.0-dbg (<< 1.1.13.4-1) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system-data2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1), libsqlite3-0 (>= 3.6.13) Filename: pool/main/m/mono/libmono-sqlite2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 55104 MD5sum: 4345d47189bd6282741d99055abdd323 SHA1: b414fc2f65dad2549c6a7d5dc0af83c77823ff56 SHA256: 0c096fef2fd1944c0005ab36ec5469933c7b94924c91af2b94c8c3927b8fca40 Description: Mono Sqlite library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 4096599dd5fa476e6c1ca5337b0433f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-sqlite4.0-cil Priority: optional Section: cli-mono Installed-Size: 433 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-transactions4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8), libsqlite3-0 (>= 3.6.13) Filename: pool/main/m/mono/libmono-sqlite4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 57388 MD5sum: 7543e8b15b88636e8eae31eaac1149c6 SHA1: bd466f481401ea3b8e2a314a7c49918d3753f9ea SHA256: 4526d4c7071bb41a432abf90258c138cfa40b32b0f95f72ae6c65ec206813cf6 Description: Mono Sqlite library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 63658f1705fd06d82fb68709d2f2f974 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-componentmodel-composition4.0-cil Priority: optional Section: cli-mono Installed-Size: 581 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-componentmodel-composition4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 143384 MD5sum: e6262732811b29c4c4d6e3a44b4b63a4 SHA1: 5e916abeff26ecb5ea67a812e087f74eee1ede87 SHA256: a871c6844aece4be520a84e60c72356fbbde3c9614b523a9ff93590aa71cf8f3 Description: Mono System.ComponentModel.Composition library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 89ec387d9cbb3fad6638bc0bdcfedad2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-componentmodel-dataannotations4.0-cil Priority: optional Section: cli-mono Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-componentmodel-dataannotations4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 36596 MD5sum: 2ddc24c406d8e210bc8e855d537ceeb1 SHA1: 5dbb41fae340a2276be3a805858625667716cecc SHA256: 1c92695e290ad8eb28ff99faf89d0cfdd7a9bee3b7da1b2f5bb7538bb249c1f9 Description: Mono System.ComponentModel.DataAnnotations library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 12aca1b12cfb475a38b10fcc73c5adc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-configuration-install4.0-cil Priority: optional Section: cli-mono Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-configuration-install4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 18248 MD5sum: 89a1c4b27ee579f42494a3d3d7d2c6be SHA1: 935f4ebaf720b15e011d2a7e5454278996852766 SHA256: 213459b568c8484d730477f3844483d063df1fb76d49c4fd007b0b07a96f12c2 Description: Mono System.Configuration.Install library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: e909f36aad931871f9ede259b3012902 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-configuration4.0-cil Priority: optional Section: cli-mono Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-security4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-system-configuration4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 54340 MD5sum: a37f0155245ef4fb187a44cdd940ebb9 SHA1: 48786c7469fcfcd847eae7cf641066ca5ae1d9a4 SHA256: 80262d70a94f422d3d7e2ba8c662a0c56c75ffb50ef69269742ff0926652fdfb Description: Mono System.Configuration library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 469753ae0d40212a01babae012f08e8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-system-core4.0-cil Priority: optional Section: cli-mono Installed-Size: 1536 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-posix4.0-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-core4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 252452 MD5sum: 4574c7d7606c7a509bf17318ec338b82 SHA1: 0324180b969ce3d3c191ed8efc774bc49f4a1a02 SHA256: 487b038128c16327434209ab59065c744e29ae887c94ace6f48b5ee4a49562b9 Description: Mono System.Core library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 079b833979f82b349b9c4a6442ee7ebe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-system-data-datasetextensions4.0-cil Priority: optional Section: cli-mono Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-system-data-datasetextensions4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20486 MD5sum: 680337b70ef21c2cf1869e3809775ba6 SHA1: feb0e20c6dd91409dcd8cedbcc612ec7de1f304a SHA256: bfbadffac64e806bddcb2276804ac815d8de88969d3d034ddb2bb88aaf38a012 Description: Mono System.Data.DataSetExtensions library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: fc5af1076aa2fee837e42300e2d524e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data-linq2.0-cil Priority: optional Section: cli-mono Installed-Size: 609 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-data2.0-cil (<< 2.6.7-4) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system-data2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1), libmono-wcf3.0a-cil (>= 3.2.3) Conflicts: libmono-system-data2.0-cil (<< 2.6.7-4) Filename: pool/main/m/mono/libmono-system-data-linq2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 149452 MD5sum: 012080f3e41ec363c0cc7d605587c468 SHA1: ea3b760f0c22587a0ad9cc3939cde535dd5f0922 SHA256: b85f810a48682db55ece176e50440ab3fcdb9505b0957559436d8ac0e40e42eb Description: Mono System.Data.Linq Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 896fd4497253810026fe33e552499f33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data-linq4.0-cil Priority: optional Section: cli-mono Installed-Size: 1134 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-data-linq4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 155928 MD5sum: a32da480d6bceafb3a88196aca61cf9a SHA1: f6b924be627db664bae9b73b171561bc9a32a9ba SHA256: 7ebe354dac41471928b975fd17f46eb69dd5af32c669b7c168c2f73b0f6d7f75 Description: Mono System.Data.Linq Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a9c4f8e6b007e9d4b0896bfd91bd1e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data-services-client4.0-cil Priority: optional Section: cli-mono Installed-Size: 990 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-data-services-client4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 141454 MD5sum: f709e71faf5e44487522a0bcad3fbb8b SHA1: e62df8102925908b092253bb766b4b6aaffd8502 SHA256: 18d7107a915626bce5e1035fafbcbc8b7e72c1b1209717308adfb25e988615de Description: Mono System.Data.Services.Client library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: 1d12433e18c72903465a2c6a5a3e8782 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data-services2.0-cil Priority: optional Section: cli-mono Installed-Size: 532 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1), libmono-windowsbase3.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-system-data-services2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 135566 MD5sum: 172c9924ecb0089b98eb289286f17a4a SHA1: c75d933f708a76a59a86f561b751eb7654b48c85 SHA256: b0d9c12d8d54d87cc126c38edf369c3ff464c9d917eebebeb6fab47c716ccbcb Description: Mono System.Data.Services library (for CLI 2.0) Homepage: http://mono-project.com/WCF Description-md5: 2e1affcde448d562220f23194180c399 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data-services4.0-cil Priority: optional Section: cli-mono Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-services-client4.0-cil (>= 1.0), libmono-system-servicemodel-activation4.0-cil (>= 1.0), libmono-system-servicemodel-web4.0-cil (>= 3.2.1), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-data-services4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 26734 MD5sum: 4ed130b58ba64d8da1c98d1e4928afa8 SHA1: 121e1c8759b76dbdfa9bf9d10ae8180081e69c66 SHA256: e3a0d27526b19a54a42acba891ccb1adf84eef2b24f12bf290379951f26ca3c3 Description: Mono System.Data.Services library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: bc60ed731c6627be2dd10e4c262623f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data2.0-cil Priority: optional Section: libs Installed-Size: 958 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-data-tds2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1) Suggests: libglib2.0-0 (>= 2.39.90) Filename: pool/main/m/mono/libmono-system-data2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 246646 MD5sum: eea2f3d04d7de91a2f57091b209233e2 SHA1: ecc8242def5cdf21396ed5dcdb17082a84de998c SHA256: 130b395acbdc9a34144f7c6b2fcebfc2875e7d50e5768119ebd6b56a2753016a Description: Mono System.Data Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 18023b3f120518ee14fa9e2669087840 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-data4.0-cil Priority: optional Section: cli-mono Installed-Size: 1767 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-data-tds4.0-cil (>= 3.0.6), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-enterpriseservices4.0-cil (>= 1.0), libmono-system-transactions4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Suggests: libglib2.0-0 (>= 2.39.90) Filename: pool/main/m/mono/libmono-system-data4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 299680 MD5sum: d96ff8b1359351492f47051e1d3acd1f SHA1: 188ad830f1044c0ccf3aa64e7f25fe568510a9f0 SHA256: d259f7a5dfe27e2604a88988fe383296c6d9583fe9946199aed2801e7a35ab75 Description: Mono System.Data library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: d275fa424da50595100b96e89c355f21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-design4.0-cil Priority: optional Section: cli-mono Installed-Size: 680 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-drawing-design4.0-cil (>= 1.0), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-windows-forms4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-design4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 107652 MD5sum: 923ad97ce72ff43fc49042590610958c SHA1: ff13780cb0ddc645798de64ebeaf9690e72d4493 SHA256: 1a8f2e5d6ecd1b18bc9473e348977ba95b31a1b7defebf7a4d05b044d0e54afc Description: Mono System.Design Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: e2b15383d3cc985f571f53e8f2f724d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-drawing-design4.0-cil Priority: optional Section: cli-mono Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-windows-forms4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-drawing-design4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20970 MD5sum: 6ff761a09598eb177a061ac55a80d54a SHA1: 642d4b467ed0b382b5ac158291f4605786237c3d SHA256: 0560fa38550b24e4739f12d846b2365d191457ed7ffe9973a4d22dd571ac33c9 Description: Mono System.Drawing.Design (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a242f727948c05a384613bcc38e40bf2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-drawing4.0-cil Priority: optional Section: cli-mono Installed-Size: 978 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libgdiplus (>= 2.6.7), libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8), libx11-6 (>= 2:1.6.0) Suggests: libcups2 (>= 1.3.8) Filename: pool/main/m/mono/libmono-system-drawing4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 143452 MD5sum: f3ddf53a968d6ea3eff5e63bd8aeec55 SHA1: da6011a0060f4d8d9a1e66589b95ffabb0caec1b SHA256: ede84bf5200f576134269222ec145462f835c709c72b0743427e802ed9417ba0 Description: Mono System.Drawing library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: de6103336ff20c3962301af20fd206d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-system-dynamic4.0-cil Priority: optional Section: cli-mono Installed-Size: 276 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-dynamic4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 44144 MD5sum: 9606ca6974d870ad9870131b742db9df SHA1: 309ffa59f6ab6862a6facd8401755535902e33d0 SHA256: f4a77f34459fb673fa99456aab60091ebb6e48bbb9c9f00b137dab85c2e17b11 Description: Mono System.Dynamic library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: bd26089fbb24907394dd3e69b4a7c33d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-enterpriseservices4.0-cil Priority: optional Section: cli-mono Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-transactions4.0-cil (>= 1.0) Filename: pool/main/m/mono/libmono-system-enterpriseservices4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 25972 MD5sum: d1aaf20a8f9fb928235a288a28e2a624 SHA1: 42f5fb9e2a75894933250033420bac0fcebaa0c5 SHA256: 74117327383b6d1e5ea84ea296d81228515c5eb1ae1b900d2f818a447212b1ee Description: Mono System.EnterpriseServices library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 8d77270a093b520449a4e678e4dad811 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-identitymodel-selectors4.0-cil Priority: optional Section: cli-mono Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-identitymodel4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-identitymodel-selectors4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 15446 MD5sum: 024f4baba75207ea39e64dcf831cec2e SHA1: d2026947ccb7dc51bef1c4bccb1b3c88dfe3a451 SHA256: ce4e278b9b4a112857660c46d1c47afc3f612be9a2cd4676d956ab1d6901993c Description: Mono System.IdentityModel.Selectors Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: e7d8a141889c50ec194d6e4a75fad38f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-identitymodel4.0-cil Priority: optional Section: cli-mono Installed-Size: 306 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-security4.0-cil (>= 1.0), libmono-system-web-applicationservices4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-identitymodel4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 42928 MD5sum: 6ded200c9945804b74f261855405cb8a SHA1: c2d9f1546af79c9b44e61b1e23bed1d692854033 SHA256: a46b2fce5091aaed8cbaa09962a5886a1876cd4a2c441ea185d9c102c18efbb1 Description: Mono System.IdentityModel Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: 41e795a45e724dc21c6594f7f8cc23d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-io-compression-filesystem4.0-cil Priority: optional Section: cli-mono Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-io-compression4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-io-compression-filesystem4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13370 MD5sum: 5ea8fb66d1a31155976a8f3c1e59cf69 SHA1: 2d3acfe2ec4c0aa347ced04512e10092da87db51 SHA256: d1c3d9366b7592c869a2c88067aa44b74138244190731b3fce7c6d242afc28ef Description: Mono System.IO.Compresion.FileSystem library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: bc9ea852026cc901e0e77185a03fae5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-io-compression4.0-cil Priority: optional Section: cli-mono Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-io-compression4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13682 MD5sum: 311ca3ad729de35f8e58f4b6890c58ac SHA1: 7fa624802c991d2f1eefea09f8c720e4fede612d SHA256: 0c79c59a444d36b0b21c8ff2afe28788470ef4767949ddcf2a9b71b0e9b5227b Description: Mono System.IO.Compression library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 182e1875730346e94596ec57aae6630b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-json-microsoft4.0-cil Priority: optional Section: cli-mono Installed-Size: 209 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-json-microsoft4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 30964 MD5sum: ef3b31392558dbf38bf11f38fcbc3683 SHA1: 00a3ab71851f7ac63d38b20a9ca8ce4d658a71ea SHA256: 1a56fd43bdf0e2ee0d0e7574c7e9eeebe7a5c01bb8930a38eba56a229819f96f Description: Mono System.Json.Microsoft library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: feeaf88c32dc05342abf4ff264bd28f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-json2.0-cil Priority: optional Section: cli-mono Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-json2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 19656 MD5sum: b2caf333c70e960894f3c475e3e12a67 SHA1: e2f3019bae227a8f37d5eca782b8727efc27f387 SHA256: 25296549c734cf62e80b55c3120df8bfc313e2d7b4acb4cef4c77ccf1f31b19e Description: Mono System.Json library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 8a0e66705b9980856bc1c418beb225f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-json4.0-cil Priority: optional Section: cli-mono Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-json4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20792 MD5sum: 8c9fc68dca287f5ba09a933ae19441d8 SHA1: 3a6ce686b5b4e51c1ba9a7c4017a2940d3910716 SHA256: d80fa4d3819b0c66e14e44b3a6d61e5515d6fbe269bd82f6bbf4930c141a874d Description: Mono System.Json library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 0b5914f5bf8c7889de43931b947c5fbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-ldap-protocols4.0-cil Priority: optional Section: cli-mono Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-ldap-protocols4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 29820 MD5sum: bbc6535065d109579c967645528d411e SHA1: 372ee5e2dcfced90e11885d9a98785c21f203aaa SHA256: 6a5c7a2250335df3e1e1c559001fdf80480082084e4c8ea74fa4a1be7fa6863c Description: Mono System.DirectoryServices.Protocols library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f22af9cbb6c8f1daa9eeeeba086a00df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-ldap2.0-cil Priority: optional Section: libs Installed-Size: 256 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-ldap2.0-cil (>= 3.2.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-ldap2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 54176 MD5sum: 5559476d680110840dfab4b9770c93d0 SHA1: 216887ce5855400158a90585012024e66b828fd2 SHA256: b039f22a665c159541b56c7bd57a89621cc4a3e047bd3cb66c2b61c8e6bc2069 Description: Mono System.DirectoryServices library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: f3ccdc6d384ddc3a9b1e9167f0fd8c0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-ldap4.0-cil Priority: optional Section: cli-mono Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-ldap4.0-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-ldap4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 41374 MD5sum: f40ec3f9e8f97629c399e58adb4d1750 SHA1: 33ccd63dcec9f16d1e4dfd0045b07ccd2192e621 SHA256: 59407e80c02d2f3da70106b59870d7ac6f182373a270b6c720e75482d1cd9085 Description: Mono System.DirectoryServices library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 89e35238b89ef34c4376190a265d1a7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-management4.0-cil Priority: optional Section: cli-mono Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration-install4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-management4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 25670 MD5sum: f8b1adcef5f3bac4b8f789380e2d6630 SHA1: 4140ca15ffecd3ef74082c340d24a4df7cb5a477 SHA256: ea914a81ca367f332524008d79db307441e74ba425fc2dd9e286d57a9e42543c Description: Mono System.Management library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: fb7779f23f7edc794220e3e3fb382d19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-messaging2.0-cil Priority: optional Section: libs Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-messaging2.0-cil (>= 3.0.6), libmono-system2.0-cil (>= 3.2.1) Suggests: libmono-winforms2.0-cil (>= 2.4) Filename: pool/main/m/mono/libmono-system-messaging2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 33012 MD5sum: daacc63851089b37e5112b2cab9068ae SHA1: 226df1fdc4008f3a0cc462796500715be5128690 SHA256: 4af4c4ffa78fcdd044ffa846711dc234cdf805e0ad7cf0529a8dbbd34b460b83 Description: Mono System.Messaging Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 826129ad595224f2cc91dd3e45744e62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-messaging4.0-cil Priority: optional Section: cli-mono Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-messaging4.0-cil (>= 3.0.6), libmono-system-configuration-install4.0-cil (>= 1.0), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-windows-forms4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-messaging4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 35228 MD5sum: 77b5c4d8e51398944ff1003d2c78f13e SHA1: 53b06eb19a74bcbd1d533f9516529eaff82e2b4e SHA256: c5d6716706cbce0e15c04ad87f2cb3ace8a5277a8b1c5a89c0af77c289a482be Description: Mono System.Messaging library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: c23fb451f91e0512b56ac658a4452eae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-net-http-formatting4.0-cil Priority: optional Section: cli-mono Installed-Size: 625 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-net-http4.0-cil (>= 1.0), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-net-http-formatting4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 170916 MD5sum: fba19214749572b077e0ef628119db93 SHA1: 0bbb158050df1d778380e7b537a3fa71fa6ebbb1 SHA256: 65db1c22c26e9619c5fd313023e7176915fac2a30870d858b73d04c0c6bfcd80 Description: Mono System.Net.Http.Formatting library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 6ff24db9913d8dbcd84bcb312a85c1fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-net-http-webrequest4.0-cil Priority: optional Section: cli-mono Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-net-http4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-net-http-webrequest4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14136 MD5sum: 054b5667a5665395ccc3f3e3a66c90d0 SHA1: ee5f91cf3938e89680424577b8ad0b63822208b1 SHA256: be50f5e8d034bcd09a37ad0f937f81be03bc3cdbee91692cad43a25c52e616d8 Description: Mono System.Net.Http.WebRequest library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: d23a5a969ad99f2528f6f20bf7af1d0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-net-http4.0-cil Priority: optional Section: cli-mono Installed-Size: 209 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-net-http4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 48314 MD5sum: b91d49824b248db302331a80a23be1e4 SHA1: e6477ce691fe754f42b748a9a3079f9bad6802e3 SHA256: 92d4d9bdf30f09a84c04549ed8f1cfd84caa66dc7bb6e9283e0698baf0bb1a8c Description: Mono System.Net.Http library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 3ec76f2b58b6261dcce4c1bbd3c6bec2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-net2.0-cil Priority: optional Section: cli-mono Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-net2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13078 MD5sum: 80ae4b8f175df23b5a766a6b9fc6f259 SHA1: d0c8fae31114ebfde333379af29b8a03c029b9bc SHA256: a259ed150e6da7978c3cd780a96052bd37993489bcb8d27f61b252f6fcb6cf64 Description: Mono System.Net library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 843931e60db24a52f84865c316f8ce49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-net4.0-cil Priority: optional Section: cli-mono Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-net4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14208 MD5sum: 8851d173ccce4b23e04b4a10267a319c SHA1: 5d685de2032d38e139f30d0c450871c57ca120bf SHA256: 7071871eef48a53e6bdfd4bc223b1fbd8cf084f075aad16d3ec0438afd9876cb Description: Mono System.Net library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a78b7887c44a2788b4f26e7209b77705 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-numerics4.0-cil Priority: optional Section: cli-mono Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-numerics4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 23468 MD5sum: 345b69b24420b65a25f47ea89a621d12 SHA1: 44f6bcf2fafa88143c6a34306ca20b7949286a3d SHA256: 1bb1fcf23cef4e101467b0de91a859f028a61a23bde82c25b049053913ac42e7 Description: Mono System.Numerics library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 79c7c0610ecb45e074d8f3a64d150aa8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-core2.2-cil Priority: optional Section: cli-mono Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-core2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-core2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-core2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 44164 MD5sum: 9ebfa8acdd0bf6ff47e9e58ad5d78a6d SHA1: 737fb11507155a52605f95893ac5f0587c3aa4a4 SHA256: e02ac2a242cff3b0434e90f8403dbb8fae878ac61f0fd5093c09c05acb1d9656 Description: Mono System.Reactive.Core Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: cfdd3305626b0c07410f79fc424185c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-debugger2.2-cil Priority: optional Section: cli-mono Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-debugger2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-reactive-linq2.2-cil (>= 1.0) Conflicts: libmono-system-reactive-debugger2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-debugger2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 12070 MD5sum: fe10db54e6d27ec460b221835b4393c9 SHA1: 274d69c97d0bb13db310d988e9768952eb746fc4 SHA256: 4b1fff8819fb7773d9a67f8708cf9f1e07634abd9d7754d6600deb2efaf70785 Description: Mono System.Reactive.Debugger Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: 3405fcae681eb7c28dff82ed09995ed1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-experimental2.2-cil Priority: optional Section: cli-mono Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-experimental2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system-reactive-linq2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-experimental2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-experimental2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 20282 MD5sum: f3340203e8e2d71f3bf9cb14f46aac73 SHA1: 2b968ed75ee85e97724a2c2e9240fee777ff3174 SHA256: 5485a9eefe6a2b1f6b4b2402d84a95a99c6c465c16d0892ed973107aef7cbc28 Description: Mono System.Reactive.Experimental Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: 1355db046b4e2167bac2002535b1eb4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-interfaces2.2-cil Priority: optional Section: cli-mono Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-interfaces2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-interfaces2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-interfaces2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13030 MD5sum: 926ade7e9fb2cce1e35055a0d3c49ce5 SHA1: d51502d2ab590a1bd54f47c861c6d7cc513cd24b SHA256: 8ca5715836b6b98a1a7980ab6b6831961966b257b255ac8de5c0e3d9af4d4f62 Description: Mono System.Reactive.Interfaces Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: a9fe74abf54ff2ae09917753c9061eb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-linq2.2-cil Priority: optional Section: cli-mono Installed-Size: 803 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-linq2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-linq2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-linq2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 156094 MD5sum: 3afa31d505e8fdfd51ba09419af58fb9 SHA1: c154e7466fb2b368d077f410ca6a44587f662c21 SHA256: 1d583af54a329f5cabc0114dcc14471b6fcd56321421a678e1a6a4c4e0ff5a65 Description: Mono System.Reactive.Linq Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: c40f458f1d727566957c5b8acde033a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-observable-aliases0.0-cil Priority: optional Section: cli-mono Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system-reactive-linq2.2-cil (>= 1.0), libmono-system-reactive-providers2.2-cil (>= 1.0) Filename: pool/main/m/mono/libmono-system-reactive-observable-aliases0.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13014 MD5sum: e3e4ec58cd7fa3b850ad3174a7d08731 SHA1: f60c51dadb3b6cd78149a620fa6a0e8b27489ed1 SHA256: caa08e61379d44c5a534a3fdc4868eabf0b7b862c73dc611ef9d0f9456268f9e Description: Mono System.Reactive.Linq Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: 49e508928c5e5aff7b9ac827fc0ca276 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-platformservices2.2-cil Priority: optional Section: cli-mono Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-platformservices2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system-reactive-linq2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-platformservices2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-platformservices2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 19542 MD5sum: 4684b843ebbd36e434d09af6953e5563 SHA1: b9b12d15f1d76c09b00668892a3f9ffbe100219e SHA256: e49349e6822839a35cc3b9a5badd5d4e21a5df0b3f923d7e2d4d9e4866b53ca2 Description: Mono System.Reactive.PlatformServices Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: 322009509c26a7c7b04c4e1ca2b82161 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-providers2.2-cil Priority: optional Section: cli-mono Installed-Size: 342 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-providers2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system-reactive-linq2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-reactive-providers2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-providers2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 48706 MD5sum: 992694144536e1784cbe72df8f632a9b SHA1: 811acbcb2e016f60414dc38d91840ac1eedf2799 SHA256: 7ee0d54606d0134f282ccf6fd37015c66f9ead4890f4fff3e486aab3fb6e24a3 Description: Mono System.Reactive.Providers Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: b0979f03c4c2ac7cc61b04ae225ba073 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-runtime-remoting2.2-cil Priority: optional Section: cli-mono Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-runtime-remoting2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0) Conflicts: libmono-system-reactive-runtime-remoting2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-runtime-remoting2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13880 MD5sum: 475e32ca8b7d3025bbeb7d0793e4e49d SHA1: 9a34a238ff6ceba93ba2bfc81fe8ab43535f1c40 SHA256: c95694c4d8fdad443b22cbbb4857fb377737f5a6657ff871fe7fc58b5492e481 Description: Mono System.Reactive.Runtime.Remoting Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: f6ef8872f8e0ec23a456b2815424f21c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-windows-forms2.2-cil Priority: optional Section: cli-mono Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-windows-forms2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system-windows-forms4.0-cil (>= 1.0) Conflicts: libmono-system-reactive-windows-forms2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-windows-forms2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13932 MD5sum: bf0c0611c0adda9ccec1417b03a228db SHA1: 1bb635938e99e2d6157086866f21d94c40278245 SHA256: 9dc7665e8db063c7335dc5f80a934b1c00ebe51789230fdf77a54ddccd6d3d28 Description: Mono System.Reactive.Windows.Forms Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: a523436653a4eaf34467f9f72ab11622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-reactive-windows-threading2.2-cil Priority: optional Section: cli-mono Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-reactive-windows-threading2.1-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-reactive-core2.2-cil (>= 1.0), libmono-system-reactive-interfaces2.2-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8), libmono-windowsbase4.0-cil (>= 3.0.6) Conflicts: libmono-system-reactive-windows-threading2.1-cil Filename: pool/main/m/mono/libmono-system-reactive-windows-threading2.2-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 15216 MD5sum: 8903f28490b7f41271aff4cbe4aa5f05 SHA1: a27755c3e066a96d2949a6b47636b83ed9e41ffb SHA256: a1a333f2a13a7f954ba3fa000924ddb4ef3e485ad0333bde81aff28ea3a2c250 Description: Mono System.Reactive.Windows.Threading Library (for CLI 4.5) Homepage: http://rx.codeplex.com Description-md5: e959458cba93d66d5184e4b8255ec83c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-runtime-caching4.0-cil Priority: optional Section: cli-mono Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-runtime-caching4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 30980 MD5sum: 759ac827da2bd5182c8b46f169ed5ceb SHA1: f620ace8a4e31eeea4a1bd286d8e120fe5f4d97c SHA256: a730a31637c5e476a3027b19fc2064b5eed8526848aaa378700b7a5364f676c0 Description: Mono System.Runtime.Caching Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: eea4d8a6ab7a06844e37e38e3afd3ac1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-runtime-durableinstancing4.0-cil Priority: optional Section: cli-mono Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml-linq4.0-cil (>= 3.0.6) Filename: pool/main/m/mono/libmono-system-runtime-durableinstancing4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 19254 MD5sum: f413ea03ca2704f08f1f8b1e40d599d1 SHA1: 3d368d37763d628bcf1f9bc92bc302d0bffcdb0c SHA256: 69b09c34ade3bbdf57e44b11f2d24ffe783119379ce7430cfc632c66653a9c86 Description: Mono System.Runtime.DurableInstancing Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 07668d407020d98267e6f13a0b6c03c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-runtime-serialization-formatters-soap4.0-cil Priority: optional Section: cli-mono Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-runtime-serialization-formatters-soap4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 25450 MD5sum: 7add4b0ff4fe6d0f3650b23d4cdc8197 SHA1: 19a51783ba1e74e18092b3b4f4830f85b320a9cd SHA256: 51bfb7db156891edec10e8c8e315c3fb4e12d498af73de97b1a86aeb3ef337b5 Description: Mono System.Runtime.Serialization.Formatters.Soap Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 8992cf5587ba2f42ce4741a889ca93f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-runtime-serialization4.0-cil Priority: optional Section: cli-mono Installed-Size: 565 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-runtime-serialization4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 117088 MD5sum: da3c945135c4f536141fac54c3efb6e0 SHA1: 99e97b1626f9f52446cac51047011427e7b5886d SHA256: dfbf881d71e522a794009e517e6e4d94d1479d9178ca50e3f0b9060910f3dfdf Description: Mono System.Runtime.Serialization Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: ffb5ddef8df6850900866c0298e34b9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-runtime2.0-cil Priority: optional Section: libs Installed-Size: 259 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-runtime2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 64370 MD5sum: d5b5996df10a5327fe32fee60f1c9b29 SHA1: 74eddfa974768ca181518ac7c398ab7b0ae9c244 SHA256: 097a82ace85052f1476025c79bb0dfc12c22adbc8ca36ebc34848470ca7593eb Description: Mono System.Runtime Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: ca048e0bb1e523cb50084a0cbf583ef1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-runtime4.0-cil Priority: optional Section: cli-mono Installed-Size: 341 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-runtime-serialization-formatters-soap4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-runtime4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 55420 MD5sum: 917bdcf678f80db9a5fe5822420198f8 SHA1: 4bfb89dd65fae95798e8da3f0122d0774053e986 SHA256: 29274a26b8ffc61648e54bf75ec306e4ef756d61a7d62f9a9c3d170cda09eca4 Description: Mono System.Runtime library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 20bd31e4da5dfefced9ed2aa90867b86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-security4.0-cil Priority: optional Section: cli-mono Installed-Size: 357 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-security4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 55262 MD5sum: 36991e6d47780e5b372248ca77d31af9 SHA1: 77208f0276fb775e828794c5c078902526e2e731 SHA256: e9c358ce010bc6b7d5aa58ef2e678625b745f80580557bb532ae120ef28a94f2 Description: Mono System.Security library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 0de0138f9e1f5850367960a1ea4fb89b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-system-servicemodel-activation4.0-cil Priority: optional Section: cli-mono Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-servicemodel-activation4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14296 MD5sum: 66e3aa31681bed06910918f64405ec54 SHA1: 802c3db661f3089e107101284e021d8baa635efe SHA256: 6b3493fd873a199cc2ebf537b8499d55b9f3854e64858d0bb55212a267ce08a7 Description: Mono System.ServiceModel.Activation Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: 369d0cfd7f336a6afd7e4153d24eb18b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-servicemodel-discovery4.0-cil Priority: optional Section: cli-mono Installed-Size: 383 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-servicemodel-discovery4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 51126 MD5sum: dc203cb1bf5f091524b57b911ac2b15b SHA1: 08c7fb8d3ba51d5ee1ab4c73e62db8e6e0c3b329 SHA256: 894d08fdaaf0296dad6cb93ffcbcd0bea473a0e2e9ddf5614cbf89ecdeaf4727 Description: Mono System.ServiceModel.Discovery Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: a59d32badd3d07b7cfc65f67a22d7687 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-servicemodel-routing4.0-cil Priority: optional Section: cli-mono Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-servicemodel-routing4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 22160 MD5sum: b9411704f81356ad0a284bc371620128 SHA1: eeeb95d1a39d840ca0175663d83aafa5837be04e SHA256: 9af1e189f30d66c81c57f882de0c89ecec5ac18d00af96b79fabd5e1c04899ed Description: Mono System.ServiceModel.Routing Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: f001ecc15f330dfbf75414ee56371bc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-servicemodel-web4.0-cil Priority: optional Section: cli-mono Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-servicemodel-activation4.0-cil (>= 1.0), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-web-extensions4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-servicemodel-web4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 41284 MD5sum: 205d1494f9776e37df2d8f79267f8c84 SHA1: 80a68c3c70f5a2c55efa91f74629296117cb2a16 SHA256: 319cecaeb67cf1f76e4067212bbb337c086621f58688116d9332732f222dd116 Description: Mono System.ServiceModel.Web Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: 3d8c5480adc3521d9376558cb9d706cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-servicemodel4.0a-cil Priority: optional Section: cli-mono Installed-Size: 3092 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-servicemodel4.0-cil (<< 3.2.3) Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-identitymodel-selectors4.0-cil (>= 1.0), libmono-system-identitymodel4.0-cil (>= 1.0), libmono-system-messaging4.0-cil (>= 2.10.1), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-security4.0-cil (>= 1.0), libmono-system-servicemodel-activation4.0-cil (>= 1.0), libmono-system-transactions4.0-cil (>= 1.0), libmono-system-web-applicationservices4.0-cil (>= 1.0), libmono-system-web-services4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-servicemodel4.0-cil (<< 3.2.3) Filename: pool/main/m/mono/libmono-system-servicemodel4.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 555654 MD5sum: 78b255b1cff684c2beefcc64b4384a3f SHA1: 38e09df62e159a02b37cb7d7e8034aba041ab647 SHA256: 70302f1df362c741ff543939295c158f6c350515557f4d4593f307b173c1a572 Description: Mono System.ServiceModel Library (for CLI 4.0) Homepage: http://mono-project.com/WCF Description-md5: 4d848dcddcd260ebf7a4f0c8a3f036b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-serviceprocess4.0-cil Priority: optional Section: cli-mono Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration-install4.0-cil (>= 1.0), libmono-system-windows-forms4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-serviceprocess4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 26220 MD5sum: 75384fc8ff2c0e8a49f29475b9c9f125 SHA1: 0a83a6856cd6d137474e544430478f4d8f0bbc5a SHA256: 45530ec0b312ff62e614b8f507aab3443432d34bf5d45dd5ade26c74fb49b1f0 Description: Mono System.ServiceProcess library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: c10a35882a03c1de2c9395594d40b772 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-threading-tasks-dataflow4.0-cil Priority: optional Section: cli-mono Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-threading-tasks-dataflow4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 38066 MD5sum: f03ff6ce5cd7fafcad7921d24d715f6e SHA1: cf05c14625bbf796fd8e5466ca749facc829b99c SHA256: e2bf436c283ea7ddfae012934bd0d4f0385735a532656c63d6c251d3ab21e799 Description: Mono System.Threading.Tasks.Dataflow library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: e77d1e3eee76cebf27811fa68012f5fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-transactions4.0-cil Priority: optional Section: cli-mono Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0) Filename: pool/main/m/mono/libmono-system-transactions4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 21726 MD5sum: 61a57856c7316a2c57b99327ce99366a SHA1: cd6368bc0f6092c63cfa51b1833af715653c8c09 SHA256: 042902143686a831ad1f2ca68ebd1a8e7d0112e42b1f4dfb2b9919114fbbe6ed Description: Mono System.Transactions library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f9364a553b7af50d6f9946805fa44814 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-web-abstractions4.0-cil Priority: optional Section: cli-mono Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-web4.0-cil (>= 2.10.3) Filename: pool/main/m/mono/libmono-system-web-abstractions4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13940 MD5sum: 311d836adf131c9a08bb4ce42364fbaa SHA1: 663a40486c03ce4963254d08ba1f546b986b839e SHA256: 6e325c76b2f0a40c7f1e9733dd9580b6b0184750c594d7d4e6db6c339f06ebc5 Description: Mono System.Web.Abstractions library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 03ec665c776331f5b37ab7eed6cecdd7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-applicationservices4.0-cil Priority: optional Section: cli-mono Installed-Size: 151 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-applicationservices4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 19990 MD5sum: 9732264ad0d914c7c77241e42b4a4485 SHA1: 20df849a71dc033c25ef7fc9809fba65010e6c1b SHA256: c6c2769da3cff8164106f0c058dec5e1400bf292e1a4fa9c020f3eb89f8ab922 Description: Mono System.Web.ApplicationServices library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f3a3b4b7d61cbd379992c7bf5986e7e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-web-dynamicdata4.0-cil Priority: optional Section: cli-mono Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-web-extensions4.0-cil (>= 2.10.3), libmono-system-web4.0-cil (>= 2.10.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-dynamicdata4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 36314 MD5sum: 02885d14d8d88eb7202415788dd3258c SHA1: 3bf65049127261050bd4fc52d62c2949e32eb1c3 SHA256: c166fe0387e557efc8a64a65f4975fc758802a5217a9717771b7631884cd7b3b Description: Mono System.Web.DynamicData library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a18483df70ea217bf245be8762fb9656 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-extensions-design4.0-cil Priority: optional Section: cli-mono Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-design4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-extensions-design4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 14798 MD5sum: c9973c50caa324a256b4ae549fd77f38 SHA1: 16e563ff21d7039b5c6a107129948bddcd710637 SHA256: 5821c4c8094a034aee96f3c7efa1ca3a324b083a1f009f3aafa1e93d979eccda Description: Mono System.Web.Extensions.Design library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 6b16bd81d976bf77288d30d485a7e675 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-extensions4.0-cil Priority: optional Section: cli-mono Installed-Size: 1597 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-web-applicationservices4.0-cil (>= 1.0), libmono-system-web-services4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-extensions4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 166000 MD5sum: 359c41fc466e7735cb6956f4cf6014e1 SHA1: 6c2e245c1142776f3630fcd99c91d3fbb616ddfd SHA256: 5201ce4adae39e77d346c14f5da1139d1442cb9164f94f77fc4dd8d339ea8189 Description: Mono System.Web.Extensions library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 1f3d7abee274af3e8853e3a0a75d9421 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-http-selfhost4.0-cil Priority: optional Section: cli-mono Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-identitymodel4.0-cil (>= 1.0), libmono-system-net-http-formatting4.0-cil (>= 1.0), libmono-system-net-http4.0-cil (>= 1.0), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-web-http4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-http-selfhost4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 40014 MD5sum: 31515571961fc41eb13c2c2ac4a5f4f2 SHA1: 1266885271a291905566d1de8e83bb93de831203 SHA256: 253d24fc8fdba18cf5114138a3df328c634ca964ffb89807854868d371d45278 Description: Mono System.Web.Http.SelfHost library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a53fb6bd27292ed1b82ef4586655c5b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-http-webhost4.0-cil Priority: optional Section: cli-mono Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-web-infrastructure1.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-net-http4.0-cil (>= 1.0), libmono-system-web-http4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-http-webhost4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 31772 MD5sum: 92f514606fd94535bf832f772d79a298 SHA1: d63098a08fcf140100323b59cb79217531e14d7f SHA256: 5be34a6a49643ebe597a991870ef816a11414fb4c1239abf54cc6ec6b2b8a8fe Description: Mono System.Web.Http.WebHost library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: ad32a533df16b24de07ccd7ea83e9138 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-http4.0-cil Priority: optional Section: cli-mono Installed-Size: 425 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-net-http-formatting4.0-cil (>= 1.0), libmono-system-net-http4.0-cil (>= 1.0), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-http4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 119690 MD5sum: aa39487028629deeb5869482f0ce992f SHA1: 133e6f762c5b08f81231723582dc1e297b1898b9 SHA256: 4aae588a894a405b669969dd8f97ec6d1e817200ef63a59409f10f40322d0868 Description: Mono System.Web.Http library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 9d6b570be220a57eb672343efb313c28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-mvc1.0-cil Priority: optional Section: cli-mono Installed-Size: 277 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-web-mvc1.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 71616 MD5sum: 8bc087820b18e78c9590a20f131f59d8 SHA1: ae1a5189ab941bbc0f2716b596f0755995c5a109 SHA256: 8153b913339428943a38abf0b610cbd26ea510b911491ab1bb4fdc36fcb766a1 Description: Mono ASP.NET MVC 1.0 Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: ac99a6997a70da27a5c9f35bd470d9e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-mvc2.0-cil Priority: optional Section: cli-mono Installed-Size: 463 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-web-mvc1.0-cil (<< 2.6.7) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system-data-linq2.0-cil (>= 1.0), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-web-mvc2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 123014 MD5sum: 6e2e05da26e1f94e061a7499876233b0 SHA1: f38072bac38c5874d0441bb0a9accb7822916da0 SHA256: 0cfc57ce14ba7a323ca46e2817042c92d1b3f68d6c950f223f6f846ee0210dc3 Description: Mono ASP.NET MVC 2.0 Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 563583d4e1a348d348a8f75ca9b6e7f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-mvc3.0-cil Priority: optional Section: cli-mono Installed-Size: 523 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-web-infrastructure1.0-cil (>= 1.0), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-runtime-caching4.0-cil (>= 1.0), libmono-system-web-extensions4.0-cil (>= 2.10.3), libmono-system-web-razor2.0-cil (>= 1.0), libmono-system-web-webpages-razor2.0-cil (>= 1.0), libmono-system-web-webpages2.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-mvc3.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 139638 MD5sum: 2eff85a2b3603e170d5e530b9c0a6eca SHA1: 2b39217edc4fdfc67f36b781ab158b83eed96f15 SHA256: a510ad4bdc5fb8e862cfa301e7330565e3745edb1b66818ee9c755d1b642968a Description: Mono ASP.NET MVC 3.0 Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: b0141d2156c9d6c4dcd2edc42fd87e19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-razor2.0-cil Priority: optional Section: cli-mono Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-razor2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 93142 MD5sum: ce9f6fe44756e1ec6ebad326ba77bee6 SHA1: d5aeaa51b2db2b2a3e0eb0a205e6956b8a0d9f85 SHA256: 3817cb689f9f4f2646243ad7e984fc94b94ee20a4794826141273621484edcb4 Description: Mono System.Web.Razor (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 6d05dbe7d05fdbbb92a3a1438614c77d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-routing4.0-cil Priority: optional Section: cli-mono Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-web4.0-cil (>= 2.10.3) Filename: pool/main/m/mono/libmono-system-web-routing4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13938 MD5sum: cf209e6c6b0fd3e3eb237488899f6d16 SHA1: afef67f4ccf723e100447d73c6b67fd77c83cc5a SHA256: 2e7ce3d3ac60ec3401cfab711f1cd90f69b8273cd94e68218676c95e044fa189 Description: Mono System.Web.Routing (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: f8c4cc1bef8f1d8f0bb6dcf58cc802ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-services4.0-cil Priority: optional Section: cli-mono Installed-Size: 782 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-enterpriseservices4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-services4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 112534 MD5sum: 678708d69dc853f6dc35896738153a9c SHA1: 1543f5e6b1748b790c6a2a502bb58f857a456f0f SHA256: cba3535e45d6ef5a34f049e2db6167d934288813e7dfa698f9310d13c6bab7a0 Description: Mono System.Web.Services (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 239a8493cd0df37ccec20bcc85176042 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-web-webpages-deployment2.0-cil Priority: optional Section: cli-mono Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-web-infrastructure1.0-cil (>= 1.0), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-web4.0-cil (>= 2.10.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-webpages-deployment2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 23984 MD5sum: 3c24fce32004ede7afcb8fdaf886f3f8 SHA1: b7583893ee0a31ae16117560d53b123b655f64f8 SHA256: 5d078317f3944b11e7bbacca874639678b33c12b377514ae53329da69792da58 Description: Mono System.Web.WebPages.Deployment (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: b72890be0369bb83b282dd379607b6cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-webpages-razor2.0-cil Priority: optional Section: cli-mono Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-web-razor2.0-cil (>= 1.0), libmono-system-web-webpages2.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-webpages-razor2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 23304 MD5sum: 9c9b73b9199bf424b4db88493294b00a SHA1: 0079e4c9700aa07173cdb27a14be291c6372cb4f SHA256: 810263e61d9e682a6f0b202af55f6705465ca57f25c88222649db48232c2ba0c Description: Mono System.Web.WebPages.Razor (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: b4c763bec5037099f14535cf16323480 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web-webpages2.0-cil Priority: optional Section: cli-mono Installed-Size: 293 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-csharp4.0-cil (>= 1.0), libmono-microsoft-web-infrastructure1.0-cil (>= 1.0), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-web-razor2.0-cil (>= 1.0), libmono-system-web-webpages-deployment2.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-web-webpages2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 76806 MD5sum: aec64cfaa7c4948dca5e2ae0da65e053 SHA1: d346687276016f11b369b8e6ce03cdf8975c62b1 SHA256: 5085c24e2767a245293db63618827151588c180f308bdbadbf593a3874749b6e Description: Mono System.Web.WebPages (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 26ec2648eaa6798ff8130422ed75eb4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web2.0-cil Priority: optional Section: libs Installed-Size: 4309 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-sqlite2.0-cil (>= 3.0.6), libmono-system-data-linq2.0-cil (>= 1.0), libmono-system-data2.0-cil (>= 3.0.6), libmono-system-runtime2.0-cil (>= 2.4), libmono-system2.0-cil (>= 3.2.1), libmono-wcf3.0a-cil (>= 3.2.3), libmono2.0-cil (>= 3.0.6), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9), libgdiplus Suggests: libmono-winforms2.0-cil (>= 2.4) Filename: pool/main/m/mono/libmono-system-web2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 938010 MD5sum: 950b480f830d221a6c9232836298c854 SHA1: 5407073993dee359ec2bf1a61f5dc6faf05e0e80 SHA256: b6dd2d04f2e8864f5deaa8071a1f22acd947187f7fe12a6c3cbdffe94683274e Description: Mono System.Web Library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 05ee9a06c4193ed9f0bc6d8661edbfdb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-web4.0-cil Priority: optional Section: cli-mono Installed-Size: 4887 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-sqlite4.0-cil (>= 3.0.6), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-enterpriseservices4.0-cil (>= 1.0), libmono-system-runtime-serialization-formatters-soap4.0-cil (>= 1.0), libmono-system-web-applicationservices4.0-cil (>= 1.0), libmono-system-web-services4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono-web4.0-cil (>= 1.0), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9), libgdiplus Filename: pool/main/m/mono/libmono-system-web4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 815414 MD5sum: 0f91ea4947a3bc2e1ae0ce21d0b6f322 SHA1: 06617acf79f6e05d0ee2728ccfa4bc7f384e63fb SHA256: 94dce879b053d8a84c5292852e9a577c0663a551f8117b6bcb3d3d0ea8524d2c Description: Mono System.Web library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: a1aee459b39706adf3d4f84b1da163ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-windows-forms-datavisualization4.0a-cil Priority: optional Section: cli-mono Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-system-windows-forms-datavisualization4.0-cil (<< 3.2.3) Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-windows-forms4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Conflicts: libmono-system-windows-forms-datavisualization4.0-cil (<< 3.2.3) Filename: pool/main/m/mono/libmono-system-windows-forms-datavisualization4.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 49696 MD5sum: 421b4d433d628bdd8edb613d28642e65 SHA1: f73a91580c7b269fcd21150496229ce390404495 SHA256: af167ed1adc18f0781d9fe20b8fa1eeb19b30b8530382e7d97d2e8ebef462c03 Description: Mono System.Windows.Forms.DataVisualization Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: b335c0060781bdf70cc2795a530eef51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-windows-forms4.0-cil Priority: optional Section: cli-mono Installed-Size: 6033 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-accessibility4.0-cil (>= 1.0), libmono-corlib4.5-cil (>= 3.2.8), libmono-posix4.0-cil (>= 3.2.3), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-drawing4.0-cil (>= 3.0.6), libmono-system-runtime-serialization-formatters-soap4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono-webbrowser4.0-cil (>= 1.0), libx11-6 (>= 2:1.6.0), libgdiplus, libmono-i18n-west4.0-cil Suggests: libglib2.0-0 (>= 2.39.90), libgnomeui-0 (>= 2.22.0), libgtk2.0-0 (>= 2.16.0), librsvg2-2 (>= 2.22.3), shared-mime-info Filename: pool/main/m/mono/libmono-system-windows-forms4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 861950 MD5sum: f2746f18ac3dd0a022d4a7c9d63530d6 SHA1: 836fe0e5d6c633f1f8d30e446404319db89e3fb9 SHA256: e21570ddc0e3a99fa975cd56dc93a65d1b156f15b7079fbaeb59a8371709158c Description: Mono System.Windows.Forms Library (for CLI 4.0) Homepage: http://www.mono-project.com/Winforms Description-md5: 27cd7a56d703e2aee53f71bcb7409782 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-windows4.0-cil Priority: optional Section: cli-mono Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-windows4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 12888 MD5sum: 820cce75816098df0ad1a23446d3c806 SHA1: 762b6fe0b1a40e1a277e31e228eae102cd31913d SHA256: a6b23292dfb778fafac38bf215b9077cb8ec037cb4d2d43777eae2e229287086 Description: Mono System.Windows library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 4c44d0cff2eebbef87b9c05254dd83f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-xaml4.0-cil Priority: optional Section: cli-mono Installed-Size: 486 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-xaml4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 82282 MD5sum: 87dc9f0924bd2bf1144fb73e69075eab SHA1: 9948eefe4aa97930fa83078d632930d1de44aca4 SHA256: 914955c2b7c5313e890568865f283017dafdc0703b0fe89d4d6ba497e8efec90 Description: Mono System.Xaml Library (for CLI 4.0) Homepage: http://www.mono-project.com/SystemXamlHacking Description-md5: 733cd5e627fabb4e931efc678dbca605 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-xml-linq4.0-cil Priority: optional Section: cli-mono Installed-Size: 317 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-xml-linq4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 44432 MD5sum: af64681ea87d0d61b901cf9205e982dc SHA1: 5aa8ddc983e573bfa7d3cc7056d73cacd3886c34 SHA256: 9eb70322299d326f60688cdcbcda808989535cdc6daf129ce66a296313346837 Description: Mono System.Xml.Linq library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 5c37690477ab5977633f2bdaa3984e88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system-xml-serialization4.0-cil Priority: optional Section: cli-mono Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-xml4.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-system-xml-serialization4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 12770 MD5sum: 536161350773e58104e7b36bcf0d52c5 SHA1: df68567537481bc801a7b4cb77f5f39f9368cf04 SHA256: 83184be612b4f6b6a686da5d9cbf55a0f4f7a9b78afdab797cc7d79c2e2b1ce9 Description: Mono System.Xml.Serialization library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 537790e9aaf2d5755bd7d9b76edf57ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-system-xml4.0-cil Priority: optional Section: cli-mono Installed-Size: 2635 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-system-xml4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 472382 MD5sum: 147953f411ae13bf5c576efb252dea0f SHA1: 97098ddb282dc788138ed3c165a3b5498f8188ab SHA256: 9f8bf2c46ecedbf8b0e92192db8185492de0b932118b6bb32a5888914d4a19fa Description: Mono System.Xml library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 7fff3f7341fbfda36ac6be079b1bd9e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-system2.0-cil Priority: optional Section: libs Installed-Size: 4329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-posix2.0-cil (>= 3.2.3), libmono-security2.0-cil (>= 3.0.6), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Suggests: libasound2 (>> 1.0.18), libcups2 (>= 1.3.8), libgamin0, libgdiplus (>= 2.6.7), libmono-winforms2.0-cil (>= 2.4), libx11-6 (>= 2:1.6.0) Filename: pool/main/m/mono/libmono-system2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 1171822 MD5sum: bd01d6adb0ada5f3a6bc7749b7648aa9 SHA1: a7a9f608157152e345da27f6802a34bd8de17a73 SHA256: 26b89a2d40ba836a95070f9925471a434e98188daa7ad90f216a36927497a2e9 Description: Mono System libraries (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: a29418215e6bbd26cb1594d471975f83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-system4.0-cil Priority: optional Section: cli-mono Installed-Size: 3471 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Suggests: libasound2 (>> 1.0.18), libgamin0 Filename: pool/main/m/mono/libmono-system4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 718476 MD5sum: 3a6f58c62b3c8bf06360e22f606be203 SHA1: 748c5134df68e092fbcc66b9ca429c7dc609a1c9 SHA256: 577b39751447be1a473ef37de4d503baaa565a915d1892594a5607421c6f0684 Description: Mono System libraries (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 7da73ba1f9a0504ce08abe86bdea9596 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: libmono-tasklets2.0-cil Priority: optional Section: cli-mono Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-tasklets2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 12944 MD5sum: 31717efdccd1b7013c15e6a298d9e440 SHA1: 8b452ccbbeb4d9a1f4cd4976fb9015686f298931 SHA256: 3cd6c2ed0c1ec1851bcd18305932d639935f5b725b991405101193cdf0854d23 Description: Mono Tasklets library (for CLI 2.0) Homepage: http://www.mono-project.com/Continuations Description-md5: e4661efce3e281b02e182a60665c66e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-tasklets4.0-cil Priority: optional Section: cli-mono Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), mono-runtime (>= 3.2.8), mono-runtime (<< 3.2.9) Filename: pool/main/m/mono/libmono-tasklets4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 13590 MD5sum: dc7d3fb6c885adf83e11d9e9d6686000 SHA1: c5784311b489433b35a7c2e9e8a7b716527d529b SHA256: b9351574a7cfda429206a6596fe277e67ef63b961dd611f7239e410dcbe14697 Description: Mono Tasklets library (for CLI 4.0) Homepage: http://www.mono-project.com/Continuations Description-md5: e68cdfd7ec973e65b9ad944c126520a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-wcf3.0a-cil Priority: optional Section: cli-mono Installed-Size: 2049 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-wcf3.0-cil (<< 3.2.3) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-security2.0-cil (>= 3.0.6), libmono-system-messaging2.0-cil (>= 2.6.3), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1) Conflicts: libmono-wcf3.0-cil (<< 3.2.3) Filename: pool/main/m/mono/libmono-wcf3.0a-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 510480 MD5sum: e4430544a72a0511947b925c3fa2b3f1 SHA1: c2026b7efec2adb16ece05a7d3b9efb490b1d029 SHA256: c638f391c7d4b1bac49229e3fae2bc02e17255687eac6b2844077790acd8095e Description: Mono WCF libraries (for CLI 2.0) Homepage: http://mono-project.com/WCF Description-md5: 3a12a988706630eaeab73fecf5d600ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-web4.0-cil Priority: optional Section: cli-mono Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-web4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 17870 MD5sum: ef42d04a1ce2b051641f2f5d0bec8b0e SHA1: e9216ff55f0e8da6c58fe8d750c190b36bd24118 SHA256: 828d8496eb21ea184d3a8716ba8b8f13403916581c0008cdfcdf0d2da66b30fe Description: Mono.Web library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 72709cc559e83c9cdb08a41f0550cebe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libmono-webbrowser2.0-cil Priority: optional Section: cli-mono Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-webbrowser0.5-cil Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Recommends: libgluezilla (>= 2.6) Conflicts: libmono-webbrowser0.5-cil Filename: pool/main/m/mono/libmono-webbrowser2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 55810 MD5sum: a65ea82c9db35856454f09776626534f SHA1: b7cc955b68e61fa300157c40295142c96fe5f846 SHA256: 74be6d7591384124c89d9c5b543a43d18242f5423ca74eef222925939fcce326 Description: Mono Web Browser library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: b17af19f79acbce1595b2242645a48c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-webbrowser4.0-cil Priority: optional Section: cli-mono Installed-Size: 444 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-webbrowser0.5-cil Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system4.0-cil (>= 3.2.8) Recommends: libgluezilla (>= 2.6) Conflicts: libmono-webbrowser0.5-cil Filename: pool/main/m/mono/libmono-webbrowser4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 62048 MD5sum: 7db3a5d723b8297942322bec708caef1 SHA1: 379f316ca4cce9577ee20e27b63a2ff029f882ef SHA256: 81e197678627d757ee598764a4de5dfaa221a7bee4ab5972f694cd955f2bad7d Description: Mono Web Browser library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 5883ca4f7938cdc54101d22c936fcc2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-webmatrix-data4.0-cil Priority: optional Section: cli-mono Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data4.0-cil (>= 3.0.6), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-webmatrix-data4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 16534 MD5sum: a68338c63d3e4157335b58915b665e71 SHA1: d3b3442819bb52cdd255d0db47f2fbecdaa90fa5 SHA256: 8284dd3221fa8b82908632edd198594729afc6a18ec0e25bef894a326259ec58 Description: Mono WebMatrix.Data Library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 452e9d33bddfb5d96638707da28b9cd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-windowsbase3.0-cil Priority: optional Section: cli-mono Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1), mono-runtime (>= 2.10.1) Filename: pool/main/m/mono/libmono-windowsbase3.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 64094 MD5sum: 561de0882d8a87a45ffc26351eae445c SHA1: b7db357aebe1cf9991fdc7130de20a23994ca4c4 SHA256: 8b517ab9b6316fe4483e017c24be25f26b6163dadd8ca713e12e275d1d9aa948 Description: Mono WindowsBase library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 2ead16a0a87cb0721855a2c839c23289 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-windowsbase4.0-cil Priority: optional Section: cli-mono Installed-Size: 417 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xaml4.0-cil (>= 1.0), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), mono-runtime (>= 2.10.1) Filename: pool/main/m/mono/libmono-windowsbase4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 62896 MD5sum: 88e6c765f5b1f8cb2e902f9d239fdad2 SHA1: 3c20367a2357537591bad5263e931d51206b306e SHA256: ca1f047229a7ec820a7b101a830d59ad4a3583d5da76b6b5ebbd0e236dc049ff Description: Mono WindowsBase library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: 89a28b534b3d998d48eeb1e5e2c8f31a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-winforms2.0-cil Priority: optional Section: libs Installed-Size: 3392 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-accessibility2.0-cil (>= 1.0), libmono-corlib2.0-cil (>= 3.2.8), libmono-posix2.0-cil (>= 3.2.3), libmono-system-data2.0-cil (>= 3.0.6), libmono-system-runtime2.0-cil (>= 2.4), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1), libmono-webbrowser2.0-cil (>= 1.0), libx11-6 (>= 2:1.6.0), libgdiplus, libmono-i18n-west2.0-cil Suggests: libglib2.0-0 (>= 2.39.90), libgnomeui-0 (>= 2.22.0), libgtk2.0-0 (>= 2.16.0), librsvg2-2 (>= 2.22.3), shared-mime-info Filename: pool/main/m/mono/libmono-winforms2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 889934 MD5sum: fad958e420e42298747773b0826c5eb5 SHA1: 4b90f46cb846125b6ef279f64bc33fb2795bef30 SHA256: e02f8d5ac544f83552e1c67f702550e6b75e108554860ad552c2323421414643 Description: Mono System.Windows.Forms library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: 41838464e4a25f022311bff010fa7030 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-xbuild-tasks2.0-cil Priority: optional Section: cli-mono Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono-xbuild-tasks2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 25836 MD5sum: 20db278a881cb446ca958f2c6efdb896 SHA1: 04d8363c756b9d4a1d62befc377585f44f614ee4 SHA256: d662a92b01ddb6ca47a55273348d61704d7ae9657b2b9cce1d9bc0c530851094 Description: Mono Mono.XBuild.Tasks library (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: c0c27664e54939d4e84bdb70950dfe63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono-xbuild-tasks4.0-cil Priority: optional Section: cli-mono Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/libmono-xbuild-tasks4.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 24662 MD5sum: 61c762247fc3801fdd405b2796128cea SHA1: 53a823c84ebf7c92d2695be4281df9c47d1dd8c5 SHA256: 235466810f1f804641a94eb06898d6aefab7e4009e2f3da03632c6c788411c1f Description: Mono Mono.XBuild.Tasks library (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: ebd43542948b924c755c3bdea7040be2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmono2.0-cil Priority: optional Section: libs Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-classlib-2.0 (<< 1.1.13.6), mono-classlib-2.0-dbg (<< 1.1.13.6) Depends: libmono-corlib2.0-cil (>= 3.2.8), libmono-security2.0-cil (>= 3.0.6), libmono-sharpzip2.84-cil (>= 1.0), libmono-system-web2.0-cil (>= 2.10.3), libmono-system2.0-cil (>= 3.2.1) Filename: pool/main/m/mono/libmono2.0-cil_3.2.8+dfsg-4ubuntu1_all.deb Size: 39124 MD5sum: cdb38f9d2f7d9aeaf37e88534459b460 SHA1: 2afa123957a189da65ca1ced5c46bfdb06e5c9b2 SHA256: d144eae652715498e2008e4b832d63d48fffdbee31b74e8e6389cd470925d321 Description: Mono libraries (for CLI 2.0) Homepage: http://www.mono-project.com/ Description-md5: c6ff32152dfcc2f8e2c180b9091406dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonoboehm-2.0-1 Priority: optional Section: cli-mono Installed-Size: 3713 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.15) Filename: pool/main/m/mono/libmonoboehm-2.0-1_3.2.8+dfsg-4ubuntu1_i386.deb Size: 1177056 MD5sum: 9367e5ed5e523d367134f30c0ca62024 SHA1: 9958151703115f6ef39a7e41ed65553553413f01 SHA256: 66aeeccac793144a5ca473f705354641a2dbc3988bef050572584d7f49cc7385 Description: Mono JIT library (Boehm GC) Homepage: http://www.mono-project.com/ Description-md5: ce0f2b97cfc799889408047098999cc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonoboehm-2.0-1-dbg Priority: extra Section: debug Installed-Size: 8875 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmonoboehm-2.0-1 (= 3.2.8+dfsg-4ubuntu1) Recommends: gdb Filename: pool/main/m/mono/libmonoboehm-2.0-1-dbg_3.2.8+dfsg-4ubuntu1_i386.deb Size: 2661060 MD5sum: e03c674696d49d5a9df9fd43d53a9c95 SHA1: 3eab76a4cad92761cb73cc463f91889625c255c4 SHA256: 3612c73b4908428c80a30b17966dfe49542bbce4750fc35df207a4c5a7ce0372 Description: Mono JIT library, debugging symbols (Boehm GC) Homepage: http://www.mono-project.com/ Description-md5: 2607171726a37a3c76b8d104a4bcedd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonoboehm-2.0-dev Priority: optional Section: cli-mono Installed-Size: 5513 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmonoboehm-2.0-1 (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/libmonoboehm-2.0-dev_3.2.8+dfsg-4ubuntu1_i386.deb Size: 1388672 MD5sum: 75de25706724487a3a9ff347e46fbe6b SHA1: 15e120bd606b0f3aee8b38f9cf562ae678585df0 SHA256: 27b2f3e51727a33b0b952166ea849fd0340f9647f06c81c1f28fa4e4d80922c5 Description: Mono JIT library - Development files (Boehm GC) Homepage: http://www.mono-project.com/ Description-md5: af43ee4a1b703efca9250c987d486381 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonosgen-2.0-1 Priority: optional Section: cli-mono Installed-Size: 3850 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.15) Filename: pool/main/m/mono/libmonosgen-2.0-1_3.2.8+dfsg-4ubuntu1_i386.deb Size: 1219622 MD5sum: d838dffae868f687f986f8a91443a273 SHA1: f472e2850b117fe20d6f39f0ba721ad1206e29fe SHA256: e1a9e36c64c4cecfff3467747239cf4fcf738e0eae8e8dc11b382f3e8d3d574f Description: Mono JIT library (SGen GC) Homepage: http://www.mono-project.com/ Description-md5: ca9b24575a07c5b8b0d40f68999605d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonosgen-2.0-1-dbg Priority: extra Section: debug Installed-Size: 9751 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmonosgen-2.0-1 (= 3.2.8+dfsg-4ubuntu1) Recommends: gdb Filename: pool/main/m/mono/libmonosgen-2.0-1-dbg_3.2.8+dfsg-4ubuntu1_i386.deb Size: 2866320 MD5sum: cadb446af629a86ed3a313d50505bf20 SHA1: f7596d51b05b627e593a7af62420e9656f52ef17 SHA256: 6c56a5dc82cc27608eaabc7ae1dc23d9eb9fdb53f8dfc75bbc14a49ab10993e8 Description: Mono JIT library, debugging symbols (SGen GC) Homepage: http://www.mono-project.com/ Description-md5: 68f58a69a75e6df10ffbba7e59366ce6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmonosgen-2.0-dev Priority: optional Section: cli-mono Installed-Size: 5730 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libmonosgen-2.0-1 (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/libmonosgen-2.0-dev_3.2.8+dfsg-4ubuntu1_i386.deb Size: 1441404 MD5sum: c996efb15e4813e16df70cba167e4d88 SHA1: 63b89068bf09af136048a227149b0414f7efcb87 SHA256: 61670fc95b45e1c735804f0709ed62b1716f8c6c35643a2fa4fa4001b36eeb75 Description: Mono JIT library - Development files (SGen GC) Homepage: http://www.mono-project.com/ Description-md5: 77a08e6c81926eb0fee724b67503f444 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmoose-perl Priority: optional Section: perl Installed-Size: 1950 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 2.1005-1 Replaces: libclass-mop-perl Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3), libclass-load-perl, libclass-load-xs-perl, libdata-optlist-perl (>= 0.107), libdevel-globaldestruction-perl, libeval-closure-perl, liblist-moreutils-perl (>= 0.28), libmro-compat-perl, libpackage-deprecationmanager-perl (>= 0.11), libpackage-stash-perl (>= 0.32), libpackage-stash-xs-perl, libparams-util-perl, libsub-exporter-perl, libsub-name-perl (>= 0.05), libtask-weaken-perl, libtry-tiny-perl Recommends: libdevel-partialdump-perl (>= 0.14) Breaks: libcatalyst-perl (<< 5.80028+), libclass-mop-perl, libdevel-repl-perl (<< 1.003008+), libfey-orm-perl (<< 0.42+), libfey-perl (<< 0.36+), libfile-changenotify-perl (<< 0.15+), libkiokudb-perl (<< 0.51+), libmarkdent-perl (<< 0.16+), libmason-perl (<< 2.18+), libmoosex-abc-perl (<< 0.05+), libmoosex-aliases-perl (<< 0.08+), libmoosex-alwayscoerce-perl (<< 0.13+), libmoosex-attribute-deflator-perl (<< 2.1.7+), libmoosex-attribute-dependent-perl (<< 1.1.0+), libmoosex-attribute-prototype-perl (<< 0.10+), libmoosex-attributehelpers-perl (<< 0.22+), libmoosex-attributeindexes-perl (<< 1.0.0+), libmoosex-attributeinflate-perl (<< 0.02+), libmoosex-cascadeclearing-perl (<< 0.03+), libmoosex-classattribute-perl (<< 0.25+), libmoosex-constructor-allerrors-perl (<< 0.012+), libmoosex-followpbp-perl (<< 0.02+), libmoosex-hasdefaults-perl (<< 0.02+), libmoosex-instancetracking-perl (<< 0.04+), libmoosex-lazyrequire-perl (<< 0.06+), libmoosex-meta-attribute-index-perl (<< 0.04+), libmoosex-meta-attribute-lvalue-perl (<< 0.05+), libmoosex-methodattributes-perl (<< 0.22+), libmoosex-nonmoose-perl (<< 0.17+), libmoosex-params-validate-perl (<< 0.05+), libmoosex-poe-perl (<< 0.214+), libmoosex-privatesetters-perl (<< 0.03+), libmoosex-role-cmd-perl (<< 0.06+), libmoosex-role-parameterized-perl (<< 0.23+), libmoosex-role-withoverloading-perl (<< 0.07+), libmoosex-scaffold-perl (<< 0.05+), libmoosex-semiaffordanceaccessor-perl (<< 0.05+), libmoosex-setonce-perl (<< 0.100473+), libmoosex-singleton-perl (<< 0.25+), libmoosex-slurpycontructor-perl (<< 1.1+), libmoosex-strictconstructor-perl (<< 0.12+), libmoosex-types-parameterizable-perl (<< 0.05+), libmoosex-types-perl (<< 0.19+), libmoosex-types-signal-perl (<< 1.101930+), libmoosex-undeftolerant-perl (<< 0.11+), libnamespace-autoclean-perl (<< 0.08+), libpod-elemental-perl (<< 0.093280+), libprang-perl (<< 0.14+), libreaction-perl (<< 0.002003+), libtest-able-perl (<< 0.10) Filename: pool/main/libm/libmoose-perl/libmoose-perl_2.1005-1_i386.deb Size: 848336 MD5sum: aebd84ac8e9e0a22aa9162d1689348d7 SHA1: 205a0b66fdbf68b279355c5a3b40f975b90a3c49 SHA256: 7723f6577576836e7d0130040a5b927a4c52d98da8725d9eb60d1846d0f847ed Description: modern Perl object system framework Homepage: https://metacpan.org/release/Moose/ Description-md5: cdb749f6802d04685cc71b5a7f9a5c87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmount-dev Priority: extra Section: libdevel Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: i386 Source: util-linux Version: 2.20.1-5.1ubuntu20 Depends: libc6-dev | libc-dev, libmount1 (= 2.20.1-5.1ubuntu20), uuid-dev Filename: pool/main/u/util-linux/libmount-dev_2.20.1-5.1ubuntu20_i386.deb Size: 68516 MD5sum: ab01912c0e46cb8b6c5ce5ca3874c244 SHA1: 9e966468854b185e5f1c2d2a01c747971ea811a8 SHA256: 68a141f5c518cce5fa895f169ea62141b49b0482ae08fdb1637615668e33db14 Description: block device id library - headers and static libraries Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: f6a39ea16f93f0b97bffc69c578232f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmount1 Priority: required Section: libs Installed-Size: 249 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: i386 Source: util-linux Version: 2.20.1-5.1ubuntu20 Depends: libblkid1 (>= 2.17.2), libc6 (>= 2.8), libselinux1 (>= 1.32) Pre-Depends: multiarch-support Filename: pool/main/u/util-linux/libmount1_2.20.1-5.1ubuntu20_i386.deb Size: 59682 MD5sum: 152cfab325a3b6dde6a74d958fe25450 SHA1: 7aad044099caa8a7b60ef70c0f83ed6e24d5e76e SHA256: 74edca1679d9deeaf2aefa9ffbbc34185b9592a73492b2199cdaf8b7f58518aa Description: block device id library Multi-Arch: same Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 8f605597a2fb2fd7bffd09db537dd040 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libmpc-dev Priority: extra Section: libdevel Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: i386 Source: mpclib3 Version: 1.0.1-1ubuntu1 Depends: libmpc3 (= 1.0.1-1ubuntu1), libmpfr-dev, libgmp-dev Filename: pool/main/m/mpclib3/libmpc-dev_1.0.1-1ubuntu1_i386.deb Size: 44416 MD5sum: e5fef7de6018b8a47b290af5cc6b0a50 SHA1: 8e30b9d4e76484d6c5a2da7e21e3ec0dbaef4765 SHA256: a944a54b2ce6bc39bd5aca26253bd2e7cea8ae5ca4b62cebf74009e180e3db37 Description: multiple precision complex floating-point library development package Multi-Arch: same Homepage: http://www.multiprecision.org/mpc/ Description-md5: 1a174fcc2ba7e9b9a95e9d28b6debe99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmpc3 Priority: extra Section: libs Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: i386 Source: mpclib3 Version: 1.0.1-1ubuntu1 Depends: libc6 (>= 2.3.4), libgmp10, libmpfr4 (>= 3.1.2) Pre-Depends: multiarch-support Filename: pool/main/m/mpclib3/libmpc3_1.0.1-1ubuntu1_i386.deb Size: 38002 MD5sum: 7cfd68086f4b02530ebaa4adf1f4a38e SHA1: c5cf16767fece416395bdd2e476a8919a1fdf774 SHA256: 7f6837a78ca557a8bebd6860576bfb6ef97e3f96b2597867700028fb60ba83f8 Description: multiple precision complex floating-point library Multi-Arch: same Homepage: http://www.multiprecision.org/mpc/ Description-md5: ce4238ae925ae6ad84bc52508aa5e8ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmpdec-dev Priority: optional Section: libdevel Installed-Size: 760 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: mpdecimal Version: 2.4.0-6 Depends: libmpdec2 (= 2.4.0-6), libjs-sphinxdoc (>= 1.0) Filename: pool/main/m/mpdecimal/libmpdec-dev_2.4.0-6_i386.deb Size: 122412 MD5sum: fec81d6690c226fddfba0cca26a43194 SHA1: 345dfd1ccbff9edab87163a54beacb48fb96fe61 SHA256: d30188707da896100db29a5ce4258aeaa946153fb2a3f97958e5535a4cfea976 Description: library for decimal floating point arithmetic (development files) Multi-Arch: same Homepage: http://www.bytereef.org/mpdecimal/index.html Description-md5: aaec92a2292a393a662516d21db6c572 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmpdec2 Priority: important Section: libs Installed-Size: 235 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: mpdecimal Version: 2.4.0-6 Replaces: libmpdec2.3 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Breaks: libmpdec2.3 Filename: pool/main/m/mpdecimal/libmpdec2_2.4.0-6_i386.deb Size: 73302 MD5sum: 510ff7066a149edf5080da4ae7a69590 SHA1: ca1977adf6ccbca70bea6f18700f18eaf304a0a8 SHA256: 2c38a2d64e0100111ed4df722e290b2455da5350be6f682c278571df5fb3b659 Description: library for decimal floating point arithmetic (runtime library) Multi-Arch: same Homepage: http://www.bytereef.org/mpdecimal/index.html Description-md5: 2f19ce990bf7966f694538878f26b3ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libmpfr-dev Priority: optional Section: libdevel Installed-Size: 1143 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: i386 Source: mpfr4 Version: 3.1.2-1 Replaces: libgmp3-dev (<< 4.1.4-3) Depends: libgmp-dev, libmpfr4 (= 3.1.2-1) Suggests: libmpfr-doc Conflicts: libgmp3-dev (<< 4.1.4-3) Filename: pool/main/m/mpfr4/libmpfr-dev_3.1.2-1_i386.deb Size: 234562 MD5sum: 6769c056e2a7318a951cd55bede6ea34 SHA1: efd36790b299f0c69e46a33b94a3fcadd6d61af0 SHA256: 78c446b1b7f9d98f2ea6488fec1457aed7b164a5de60ceb03b5e59faf872bc05 Description: multiple precision floating-point computation developers tools Multi-Arch: same Homepage: http://www.mpfr.org/ Description-md5: a2580b68a7c6f1fcadeefc6b17102b32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmpfr-doc Priority: optional Section: doc Installed-Size: 1363 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: all Source: mpfr4 Version: 3.1.2-1 Depends: dpkg (>= 1.15.4) | install-info Filename: pool/main/m/mpfr4/libmpfr-doc_3.1.2-1_all.deb Size: 590614 MD5sum: 80d79849eeda94723365cd2be3893d5a SHA1: 2672d07d9bfed7722458b34e237c0d663f377e34 SHA256: 2711d3a7ad4d3e15c9f03658eac0c8d2cfe0e4e681d0259656a80894311bd77b Description: multiple precision floating-point computation documentation Homepage: http://www.mpfr.org/ Description-md5: f055e9915a337223583fe5e3ec7c0b3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmpfr4 Priority: optional Section: libs Installed-Size: 763 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: i386 Source: mpfr4 Version: 3.1.2-1 Depends: libc6 (>= 2.4), libgmp10 Pre-Depends: multiarch-support Conflicts: libgmp3 (<< 4.1.4-3) Filename: pool/main/m/mpfr4/libmpfr4_3.1.2-1_i386.deb Size: 196906 MD5sum: 32157f54aee9107d19ed503e86bc0170 SHA1: 5db3a901e22b04364569b0dfc9ec6530099632b8 SHA256: 0dee3dc7b0500fd0d4db3d83d280cf3d99cc3cd86297f39bb6e4d039afd5d93e Description: multiple precision floating-point computation Multi-Arch: same Homepage: http://www.mpfr.org/ Description-md5: 97d2af3ed9ac83dc3fdaf77a6b27a294 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmpfr4-dbg Priority: extra Section: debug Installed-Size: 1498 Maintainer: Ubuntu Developers Original-Maintainer: Laurent Fousse Architecture: i386 Source: mpfr4 Version: 3.1.2-1 Depends: libmpfr4 (= 3.1.2-1) Filename: pool/main/m/mpfr4/libmpfr4-dbg_3.1.2-1_i386.deb Size: 350552 MD5sum: 5c749959c1fe88a1b85a94e38a7addc8 SHA1: ff6fd6557300a9d48fb84d87fbfc287d1e943382 SHA256: 9022db8d16c1c9ceaadbfa5f393dd63fa2446eb65ef6694575ab43fd4d551df4 Description: multiple precision floating-point computation (debug symbols) Homepage: http://www.mpfr.org/ Description-md5: e9bf4350e1b14ba8723e22bbca538dab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmro-compat-perl Priority: optional Section: perl Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.12-1 Depends: perl, libclass-c3-perl (>= 0.24) Recommends: libclass-c3-xs-perl Filename: pool/main/libm/libmro-compat-perl/libmro-compat-perl_0.12-1_all.deb Size: 12246 MD5sum: f03826205b0d43ab92dcece2406e787f SHA1: 6785f826093827d8257e54ced6f5df7fdee24598 SHA256: 0cea0eaa1313ae91589202ab6307130de9b704c6e7abc2071e2ec73e607f0ea4 Description: mro::* interface compatibility for Perls < 5.9.5 Homepage: http://search.cpan.org/dist/MRO-Compat/ Description-md5: 195130cee4f6bea2731a762f3f96eadc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmspub-0.0-0 Priority: optional Section: libs Installed-Size: 520 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libmspub Version: 0.0.6-1ubuntu2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.6), libwpd-0.9-9, zlib1g (>= 1:1.1.4) Filename: pool/main/libm/libmspub/libmspub-0.0-0_0.0.6-1ubuntu2_i386.deb Size: 152340 MD5sum: 3603483fcc1ee75b4e98e47606da164a SHA1: befb8140756774e09c447c785b9339288bb086cd SHA256: 9c76cb02448f371786fc83c71a097a35acbf0f9c4f1581137e3be4fcaf1fd539 Description: library for parsing the mspub file structure Homepage: http://www.freedesktop.org/wiki/Software/libmspub Description-md5: da595a9575906bd87eadf7a12128850c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libmspub-dev Priority: optional Section: libdevel Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libmspub Version: 0.0.6-1ubuntu2 Depends: libmspub-0.0-0 (= 0.0.6-1ubuntu2), libwpd-dev (>= 0.9.0), libwpg-dev (>= 0.2.0) Filename: pool/main/libm/libmspub/libmspub-dev_0.0.6-1ubuntu2_i386.deb Size: 2924 MD5sum: 1a71274ca8c622549b9c52f5d92eae33 SHA1: 9fa29d6b0557d55548ca2d14d786fb44c10a8ed8 SHA256: 25a183b4f6d434d2fdf780d957194feca5b57747c64c03af6e07952a91ccffe2 Description: library for parsing the mspub file structure -- development Homepage: http://www.freedesktop.org/wiki/Software/libmspub Description-md5: e312ec772862fe25d4ff89f4a163d2f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmspub-doc Priority: optional Section: doc Installed-Size: 6344 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libmspub Version: 0.0.6-1ubuntu2 Filename: pool/main/libm/libmspub/libmspub-doc_0.0.6-1ubuntu2_all.deb Size: 300238 MD5sum: 7eca95d52d2712bdd3c8f52de61c74d5 SHA1: 7aad96b50587ac8f9f9f30fd0b01ef0c6f4e232d SHA256: 38e05f67030a1bf991ae58ff680edc237ce126f13c0741b8f8869fb544aafdbd Description: library for parsing the mspub file structure -- documentatio Homepage: http://www.freedesktop.org/wiki/Software/libmspub Description-md5: 978543867dbe94a6343b54f9a91f832f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmtdev-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Nobuhiro Iwamatsu Architecture: i386 Source: mtdev Version: 1.1.4-1ubuntu1 Depends: libmtdev1 (= 1.1.4-1ubuntu1) Filename: pool/main/m/mtdev/libmtdev-dev_1.1.4-1ubuntu1_i386.deb Size: 5352 MD5sum: 1ec621d8fef69d3aa2b6f051173eb8c4 SHA1: 924051f07d882fad1c30becb6dd1161f5731b91b SHA256: 9cad128a121746c4447727be57bd240d3ea0d5519dc509e38f18d1d075992807 Description: Multitouch Protocol Translation Library - dev files Homepage: http://bitmath.org/code/mtdev/ Description-md5: c8725f087f1cafd8c9d016b4463a8273 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmtdev1 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Nobuhiro Iwamatsu Architecture: i386 Source: mtdev Version: 1.1.4-1ubuntu1 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/m/mtdev/libmtdev1_1.1.4-1ubuntu1_i386.deb Size: 15526 MD5sum: 94a296c82ab47e74ef0edab1818e7110 SHA1: f36d0ecce3fe60ed469c75c192a5797a8fce896e SHA256: 3f08177ac2a69bd0ae4655f512f2d4fe4ff00cbcbc94bcbdb7bf48eca55defa2 Description: Multitouch Protocol Translation Library - shared library Multi-Arch: same Homepage: http://bitmath.org/code/mtdev/ Description-md5: 07dd033e550dbc27f2e8fe7816e9f337 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmtp-common Priority: optional Section: libs Installed-Size: 1076 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: all Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Replaces: libmtp8 Breaks: libmtp8 (<= 1.0.6-6) Filename: pool/main/libm/libmtp/libmtp-common_1.1.6-20-g1b9f164-1ubuntu2_all.deb Size: 31530 MD5sum: 0151ea37485f873c8e3915e7c12a97a6 SHA1: b8bb107ae4f7750c036920c2a0732d81a9b3655c SHA256: 5bd8919545054ddeedaaba8f0680a03f3cbabe3d2eaf6a01d7830838b78c66a2 Description: Media Transfer Protocol (MTP) common files Multi-Arch: foreign Homepage: http://libmtp.sourceforge.net/ Description-md5: 407b0c4187c03c2acefd4239d1a421f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmtp-dbg Priority: extra Section: debug Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Depends: libmtp9 (= 1.1.6-20-g1b9f164-1ubuntu2) Filename: pool/main/libm/libmtp/libmtp-dbg_1.1.6-20-g1b9f164-1ubuntu2_i386.deb Size: 230014 MD5sum: d819a61a4fa9491d54ad6643e03a8cda SHA1: 4a90f327f9ad385dd3b3209234d50d9e79e0a7a8 SHA256: 57c7e8d4d7ea676acb2bee6d0e582d4dbfc9b6f77bc27d37c30078d3ec4d5d03 Description: Media Transfer Protocol (MTP) debugging symbols Multi-Arch: same Homepage: http://libmtp.sourceforge.net/ Description-md5: d46860617d76f5c1d5c931d5d8f3d172 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmtp-dev Priority: optional Section: libdevel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Depends: libmtp9 (= 1.1.6-20-g1b9f164-1ubuntu2), libusb-1.0-0-dev Filename: pool/main/libm/libmtp/libmtp-dev_1.1.6-20-g1b9f164-1ubuntu2_i386.deb Size: 10550 MD5sum: ac8fe1d762b2807b3b2f49c610912e27 SHA1: 54ca7dbe248951bdc4f1d11836c5feed8fcb4ad9 SHA256: 343632b4c5f60412808b1f8fbb42ab5be892ba6773e13034764ef288387edc13 Description: Media Transfer Protocol (MTP) development files Multi-Arch: same Homepage: http://libmtp.sourceforge.net/ Description-md5: 76d0f6320c50c3629a9f1d9cd6ba427a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmtp-doc Priority: optional Section: doc Installed-Size: 2802 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: all Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Filename: pool/main/libm/libmtp/libmtp-doc_1.1.6-20-g1b9f164-1ubuntu2_all.deb Size: 406458 MD5sum: ad1e989d13c9d77a45dac7c75729333b SHA1: 601bc213729c41fbfcaa26d21bd8d2da86e09de7 SHA256: e059ab1baa46e09d793c8e6f55e568f87d3b7b0f20c943dc916b6435918059c5 Description: Media Transfer Protocol (MTP) library documentation Homepage: http://libmtp.sourceforge.net/ Description-md5: 8470c9a7a773ebbc2c115e4582babdfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmtp-runtime Priority: optional Section: libs Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Replaces: libmtp8 (= 1.0.6-3) Depends: libmtp-common, libmtp9 (= 1.1.6-20-g1b9f164-1ubuntu2), libc6 (>= 2.4) Breaks: libmtp8 (= 1.0.6-3) Filename: pool/main/libm/libmtp/libmtp-runtime_1.1.6-20-g1b9f164-1ubuntu2_i386.deb Size: 6086 MD5sum: 09c44c55743ca386ea2256712a68a236 SHA1: b74836de107215332298e2260e380e389e57d1a1 SHA256: 8400aedb8a0b3125802c670099ae50d1c85aa384df1917e8f2f4bb80f6e9204f Description: Media Transfer Protocol (MTP) runtime tools Enhances: libmtp9 Homepage: http://libmtp.sourceforge.net/ Description-md5: 1a28431a709c624332928ccccfe38a89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmtp9 Priority: optional Section: libs Installed-Size: 397 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: libmtp Version: 1.1.6-20-g1b9f164-1ubuntu2 Depends: libmtp-common, libc6 (>= 2.7), libgcrypt11 (>= 1.4.5), libusb-1.0-0 (>= 2:1.0.8) Pre-Depends: dpkg (>= 1.15.7.2), multiarch-support Recommends: libmtp-runtime, udev Filename: pool/main/libm/libmtp/libmtp9_1.1.6-20-g1b9f164-1ubuntu2_i386.deb Size: 160964 MD5sum: e746ecdc2d3ad3459e9fa59e1a44143a SHA1: 99278014527b6fecc394403266807a66fe4ed1ff SHA256: 27eb420538ba73d232ade918c9e906a71e8cf3376e8f0fc8d8f75b50c15a0610 Description: Media Transfer Protocol (MTP) library Multi-Arch: same Homepage: http://libmtp.sourceforge.net/ Description-md5: ec2660c24145023b9998ae464417b767 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libmultidimensional-perl Priority: optional Section: perl Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.010-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3), libb-hooks-op-check-perl (>= 0.19), liblexical-sealrequirehints-perl Filename: pool/main/libm/libmultidimensional-perl/libmultidimensional-perl_0.010-1build1_i386.deb Size: 8156 MD5sum: 70b4cb9a6a769a92d46955a4fb54d854 SHA1: 9a9fada04b0db987c331c08c8b2f0c16c4e2fbca SHA256: d60a5d606def76475f3527c795c93bf7c9a225a8457499278adbf22834399500 Description: Perl pragma to disable multidimensional array emulation Homepage: http://search.cpan.org/dist/multidimensional/ Description-md5: 83f0430ca98b7ef9a58be037e63e76bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-1.0-2 Priority: optional Section: libs Installed-Size: 1008 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: mx Version: 1.4.7-0ubuntu3 Depends: libmx-common (= 1.4.7-0ubuntu3), libc6 (>= 2.7), libcairo2 (>= 1.2.4), libclutter-1.0-0 (>= 1.10.0), libcogl15 (>= 1.15.8), libdbus-glib-1-2 (>= 0.88), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.20.0), libpango-1.0-0 (>= 1.18.0), libstartup-notification0 (>= 0.2), libx11-6, libxrandr2 (>= 2:1.2.99.2) Pre-Depends: multiarch-support Recommends: libmx-bin Filename: pool/main/m/mx/libmx-1.0-2_1.4.7-0ubuntu3_i386.deb Size: 208374 MD5sum: 1fc6beafefc59ceea31bdfe511be458e SHA1: ac9e7cbe3bd8ee5752e25b15f9b62a4812fd90d7 SHA256: 13574bc5e88ef62d6d3442ef4c5f820c5aa53cd7d579bb16907d3aceaf7ccc98 Description: toolkit for the Moblin user experience Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: 6468871f1cffe433963138b15f272962 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-1.0-2-dbg Priority: extra Section: debug Installed-Size: 1257 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: mx Version: 1.4.7-0ubuntu3 Depends: libmx-1.0-2 (= 1.4.7-0ubuntu3) Filename: pool/main/m/mx/libmx-1.0-2-dbg_1.4.7-0ubuntu3_i386.deb Size: 784044 MD5sum: 4ad5bf5c2bbad317c6765039b99aed0c SHA1: 38a65165978fda636dedb3b7e8c4fc41f3504adb SHA256: d0d7883a5f579d33092ce17def04dfd55154e68ca2d391213d4e53bb9c6d1352 Description: toolkit for the Moblin user experience (debug symbols) Multi-Arch: same Homepage: http://www.clutter-project.org/ Description-md5: 113307ea424d127e4a01559a5c0eb615 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-bin Priority: optional Section: misc Installed-Size: 360 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: mx Version: 1.4.7-0ubuntu3 Replaces: libmx-1.0-2 (<< 1.4.3-1) Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.12.0) Breaks: libmx-1.0-2 (<< 1.4.3-1) Filename: pool/main/m/mx/libmx-bin_1.4.7-0ubuntu3_i386.deb Size: 19254 MD5sum: c22deb9c0d087d6e835a588146deac42 SHA1: e57d5e3b013bfc0a8ce1b5243020ec97f7abe7fe SHA256: d0e4414fa008c77e77e37e513dc4497ae2018850dcd61226fcbb3ddfe8473a6e Description: toolkit for the Moblin user experience (utilities) Multi-Arch: foreign Homepage: http://www.clutter-project.org/ Description-md5: d75c80c8b80295c91748c9e5f67ce422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-common Priority: optional Section: misc Installed-Size: 820 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: all Source: mx Version: 1.4.7-0ubuntu3 Replaces: libmx-1.0-2 (<< 1.4.3-1) Breaks: libmx-1.0-2 (<< 1.4.3-1) Filename: pool/main/m/mx/libmx-common_1.4.7-0ubuntu3_all.deb Size: 59090 MD5sum: 1b46a3ecaa2e18e73d82ce6f3b42198f SHA1: 8de2131332ca5c6c3a05f93cb0bb6f152cf4b5e6 SHA256: fb16fed815f30e70bd19729c0c7728c2126f2554c6188064550d9bfdc41e0a84 Description: toolkit for the Moblin user experience (common files) Multi-Arch: foreign Homepage: http://www.clutter-project.org/ Description-md5: 11645a13cccf8108ea0ecae7fd68f465 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-dev Priority: optional Section: libdevel Installed-Size: 1292 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: mx Version: 1.4.7-0ubuntu3 Depends: autotools-dev, gir1.2-mx-1.0 (= 1.4.7-0ubuntu3), libclutter-1.0-dev, libmx-1.0-2 (= 1.4.7-0ubuntu3) Suggests: libmx-doc Filename: pool/main/m/mx/libmx-dev_1.4.7-0ubuntu3_i386.deb Size: 67292 MD5sum: ee611a428120f4c060d5f871b8aaea2f SHA1: 1f0d740f358f6ef08da625b227595691c631ac6a SHA256: 771170c5efdafad3606cdabcc59abd8b8013e3f93f19adcc50a40ef1c050e9a6 Description: toolkit for the Moblin user experience (development files) Homepage: http://www.clutter-project.org/ Description-md5: 4c3b9745382d6623f48647ffd14f2554 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmx-doc Priority: optional Section: doc Installed-Size: 2214 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: all Source: mx Version: 1.4.7-0ubuntu3 Suggests: devhelp Filename: pool/main/m/mx/libmx-doc_1.4.7-0ubuntu3_all.deb Size: 185398 MD5sum: 00fe6a7661ef40909d1c78847450580a SHA1: 0e43984e8480b51e26a476e67a6f897c7e1d3862 SHA256: 7902acfe9eb654354850f69c9c99efda53eaf66ac43727e6a5d5635000a56c10 Description: toolkit for the Moblin user experience (documentation) Multi-Arch: foreign Homepage: http://www.clutter-project.org/ Description-md5: 2ac48cf155526719e20c97e306453ff1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmysqlclient-dev Priority: optional Section: libdevel Installed-Size: 5093 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: i386 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Replaces: libmysqlclient15-dev Provides: libmysqlclient15-dev Depends: libmysqlclient18 (= 5.5.35+dfsg-1ubuntu1), zlib1g-dev Conflicts: libmysqlclient10-dev, libmysqlclient12-dev, libmysqlclient14-dev, libmysqlclient15-dev Filename: pool/main/m/mysql-5.5/libmysqlclient-dev_5.5.35+dfsg-1ubuntu1_i386.deb Size: 870192 MD5sum: 77c6d50bc41e68279d76a5e897d130e9 SHA1: edfb5bdbc0ff3fdfbede09f5160e8c6e4447796c SHA256: 28a17fb35b4cbba458a43c3ecc3a2faaae803e451dc07429eb03bf8cf9db82bd Description: MySQL database development files Homepage: http://dev.mysql.com/ Description-md5: 716f7a81dc4e3e8899c7eaa66b24736d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmysqlclient18 Priority: optional Section: libs Installed-Size: 3337 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: i386 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Depends: mysql-common (>= 5.5.35+dfsg-1ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/m/mysql-5.5/libmysqlclient18_5.5.35+dfsg-1ubuntu1_i386.deb Size: 590006 MD5sum: ecf20269871c7fed137822c0c7eb5938 SHA1: c5c7db55f5f79bbc7fa8e58914a02d439c83ecd0 SHA256: ccaa97e552cde95b5bcf7909ca033752dc00d7b583a785905bb525525f640aba Description: MySQL database client library Multi-Arch: same Homepage: http://dev.mysql.com/ Description-md5: 49de807663510f5f2afd3e71efe199f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libmysqlcppconn-dev Priority: optional Section: libdevel Installed-Size: 2471 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: i386 Source: mysql-connector-c++ Version: 1.1.3-5 Depends: libboost-dev, libmysqlcppconn7 (= 1.1.3-5) Filename: pool/main/m/mysql-connector-c++/libmysqlcppconn-dev_1.1.3-5_i386.deb Size: 475206 MD5sum: 2932631e12124cad73a764b3ceff4a44 SHA1: bd6c602156899a6c702c0b28d147a54ad0eab035 SHA256: ce13e690f22f1079ad1c6385538bea79965a423a955c71d1d94c5306763d3a79 Description: MySQL Connector for C++ (development files) Description-md5: bb5699994096ff28d4eff6db5acd103e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmysqlcppconn7 Priority: optional Section: libs Installed-Size: 1018 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: i386 Source: mysql-connector-c++ Version: 1.1.3-5 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libmysqlclient18 (>= 5.5.13-1), libstdc++6 (>= 4.6) Filename: pool/main/m/mysql-connector-c++/libmysqlcppconn7_1.1.3-5_i386.deb Size: 289388 MD5sum: 8e3d2100ab9eaa754e0f03430156fe93 SHA1: 6adf17f307de0a475885cf6d95c4506a2c92c819 SHA256: a6166bbad38e167acec686cf047a923f1ccf02e5695026596b2fd092c1478a5c Description: MySQL Connector for C++ (library) Description-md5: 3e05a8a275438c98cfe5d5c6ef4a7d9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmysqld-dev Priority: optional Section: libdevel Installed-Size: 16076 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: i386 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Depends: libmysqlclient-dev (>= 5.5.35+dfsg-1ubuntu1) Filename: pool/main/m/mysql-5.5/libmysqld-dev_5.5.35+dfsg-1ubuntu1_i386.deb Size: 3081070 MD5sum: fb5ed654e6c22772634e415124ffa0da SHA1: 165f8a7cb9c75403563f101fd61ddd3d1d4e2920 SHA256: 1af17de9e4eafb079272ae0652a91e26b7366f8314c5e9d720cae5cbb266363e Description: MySQL embedded database development files Homepage: http://dev.mysql.com/ Description-md5: 2f06b7e1bfdb9f620d92f9696d24fabc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libmythes-1.2-0 Priority: optional Section: libs Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: i386 Source: mythes Version: 2:1.2.2-1ubuntu2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/m/mythes/libmythes-1.2-0_1.2.2-1ubuntu2_i386.deb Size: 8072 MD5sum: dfb79e6848ef864a178348b79280afa6 SHA1: e944e6d21f2e75ade5fd5fabccd26d45c0886ad7 SHA256: 4af8799c47b5f882976db05daa3022fd58aaf87c4b17391da8e06b39dfd27c23 Description: simple thesaurus library Description-md5: 16a9ee1d619f9c9c1ab20353031fb583 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libmythes-dev Priority: optional Section: libdevel Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: i386 Source: mythes Version: 2:1.2.2-1ubuntu2 Depends: libmythes-1.2-0 (= 2:1.2.2-1ubuntu2) Filename: pool/main/m/mythes/libmythes-dev_1.2.2-1ubuntu2_i386.deb Size: 11362 MD5sum: 075744ee6c6ac37c184ff8bcbfea0051 SHA1: 2993d85ec005767e9bea6cc7b9b98bc10f1eb447 SHA256: e747e0af3149fd36557a66d889c261708618dadd8db8a0a1f70a517fc3d6cf52 Description: simple thesaurus library (development files) Description-md5: ffd0c044918099c732e087109bf97839 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnamespace-autoclean-perl Priority: optional Section: perl Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.15-1 Depends: libb-hooks-endofscope-perl (>= 0.12), libmoose-perl (>= 2) | libclass-mop-perl, libnamespace-clean-perl (>= 0.20), perl Filename: pool/main/libn/libnamespace-autoclean-perl/libnamespace-autoclean-perl_0.15-1_all.deb Size: 10186 MD5sum: 300c561563f6ab584cecc6631cd14959 SHA1: 1a50f826bc23c9193a3d3878f5d6e8fba54b72cc SHA256: 4d60ad1d7f5ea3bffb31b7d2977e28c2db64950fb00a7c9d0c1d3aaa5119b133 Description: module to remove imported symbols after compilation Homepage: https://metacpan.org/release/namespace-autoclean/ Description-md5: cc577199398ebdf3000ada0b769aeb4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnamespace-clean-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.24-1 Depends: perl, libb-hooks-endofscope-perl (>= 0.12), libpackage-stash-perl (>= 0.23), libsub-identify-perl, libsub-name-perl Filename: pool/main/libn/libnamespace-clean-perl/libnamespace-clean-perl_0.24-1_all.deb Size: 12968 MD5sum: 313afe5c87ddc8e2ac14c46df4930988 SHA1: 06b3368e9e9de33223ef85dc752a625429935e95 SHA256: e1f271aba157d21dd193eb718c537a9e368e2e2278187e28294bbc3f2849f64a Description: module for keeping imports and functions out of the current namespace Homepage: https://metacpan.org/release/namespace-clean/ Description-md5: 61ad33ea0d732ead09b6626ff8d86485 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnatpmp-dev Priority: optional Section: libdevel Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Goirand Architecture: i386 Source: libnatpmp Version: 20110808-3ubuntu2 Depends: libnatpmp1 (= 20110808-3ubuntu2) Filename: pool/main/libn/libnatpmp/libnatpmp-dev_20110808-3ubuntu2_i386.deb Size: 7898 MD5sum: 1a6a25fcbb6c4ef8e2d3f7ea0c5085a0 SHA1: ddadba54fd3125d9eba64b93a2fa0e3e18269878 SHA256: c450804e3c8fe39bd76c97668b644cf389a7f01b8d0a952b9d06acaa4f45a9c2 Description: portable and fully compliant implementation of NAT-PMP (dev files) Homepage: http://miniupnp.free.fr/ Description-md5: 0f20003a1f9b143a44e615b71ab13bbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnatpmp1 Priority: optional Section: net Installed-Size: 42 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Goirand Architecture: i386 Source: libnatpmp Version: 20110808-3ubuntu2 Depends: libc6 (>= 2.7) Suggests: natpmp-utils, minissdpd Filename: pool/main/libn/libnatpmp/libnatpmp1_20110808-3ubuntu2_i386.deb Size: 8556 MD5sum: 6a52b77b21206f16b8ba39c3d4362968 SHA1: f98bf1c866bb19c05e292aa722fde2d564765bd3 SHA256: fe551464301a3e1d0fadf7afdbb4365e0d0b03745b69ef7720896088a11ad0f7 Description: portable and fully compliant implementation of NAT-PMP Homepage: http://miniupnp.free.fr/ Description-md5: a5437cbd6b788e523c98bff700c426c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnautilus-extension-dev Priority: optional Section: libdevel Installed-Size: 460 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: nautilus Version: 1:3.10.1-0ubuntu8 Depends: libnautilus-extension1a (= 1:3.10.1-0ubuntu8), gir1.2-nautilus-3.0 (= 1:3.10.1-0ubuntu8), libglib2.0-dev (>= 2.35.3), libgtk-3-dev (>= 3.7.7) Filename: pool/main/n/nautilus/libnautilus-extension-dev_3.10.1-0ubuntu8_i386.deb Size: 27870 MD5sum: 8abfcc7082c7b7f19b9a352fc02866f7 SHA1: 9d67ae4cf265b7efc532d026479d4fe9f4f50086 SHA256: e3d1607b656fb96f3e6e54294e0191aa0b8df4fa35f6bc46860c2630d6d222ff Description: libraries for nautilus components - development version Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: 6e87107b9ab479b5113b63b76bd07770 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnautilus-extension1a Priority: optional Section: libs Installed-Size: 136 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: nautilus Version: 1:3.10.1-0ubuntu8 Replaces: libnautilus-extension1 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0) Breaks: nautilus (<< 1:3.0) Filename: pool/main/n/nautilus/libnautilus-extension1a_3.10.1-0ubuntu8_i386.deb Size: 52266 MD5sum: b07bf8af3b4a69d822df9787a94e0265 SHA1: 9a3c03b1a8f107ab8048567e87f876ee9afa5aa2 SHA256: 396060a177ac6899d7f90bd80ce48e191f9a092a59b1695bce625a8a299c5221 Description: libraries for nautilus components - runtime version Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: 24d74241fbd9274f58339c68e65e6d46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libncurses5 Priority: required Section: libs Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15) Pre-Depends: multiarch-support, libtinfo5 (>= 5.9-3) Recommends: libgpm2 Filename: pool/main/n/ncurses/libncurses5_5.9+20140118-1ubuntu1_i386.deb Size: 93816 MD5sum: 9d5004301487bc640787bebf8a43249c SHA1: 4aee9baef0c46319c001e8a1895afdf37dbeff15 SHA256: 2d6c5580ecf1bbcddd4ee12b071ff63ec59c200648992d5b621a0f9fabad2c82 Description: shared libraries for terminal handling Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: 599cbbcff16d09b3b4643d84f37643fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libncurses5-dbg Priority: extra Section: libdevel Installed-Size: 11470 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libncurses5-dev (= 5.9+20140118-1ubuntu1), libtinfo5-dbg (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15), libncurses5 (>= 5.5-5~) Filename: pool/main/n/ncurses/libncurses5-dbg_5.9+20140118-1ubuntu1_i386.deb Size: 1983058 MD5sum: f17a7a40237bb9413a1378b09491fffa SHA1: 9b32f25c257da1b56f6628740fe76d3cb3c349e9 SHA256: f034cdd42b0744d694da84d16f18455caca108ba071f4edd28a6a01964c991e6 Description: debugging/profiling libraries for ncurses Homepage: http://invisible-island.net/ncurses/ Description-md5: 5b094421b6dbd5e535ef972eedbde981 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libncurses5-dev Priority: optional Section: libdevel Installed-Size: 854 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: libncurses-dev, ncurses-dev Provides: libncurses-dev, ncurses-dev Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libncurses5 (= 5.9+20140118-1ubuntu1), libtinfo-dev (= 5.9+20140118-1ubuntu1), ncurses-bin (= 5.9+20140118-1ubuntu1), libc6-dev | libc-dev Suggests: ncurses-doc Conflicts: libncurses-dev, ncurses-dev Filename: pool/main/n/ncurses/libncurses5-dev_5.9+20140118-1ubuntu1_i386.deb Size: 165614 MD5sum: d88025b86c6316901c660936e5cc4a67 SHA1: 9737f6566fee7d14029f06ab0d077eb8a7949e29 SHA256: 870424bfd7a77dc92b7552833b0aa8d5581aefb2d8eca319bf0bbdc530f7054a Description: developer's libraries for ncurses Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: 38da502b304ea3ed5ff1e12d072d14a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libncursesw5 Priority: required Section: libs Installed-Size: 378 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15) Pre-Depends: multiarch-support Recommends: libgpm2 Filename: pool/main/n/ncurses/libncursesw5_5.9+20140118-1ubuntu1_i386.deb Size: 122388 MD5sum: 2d8bfc19a6a8a3e97110d16a8f8d0d6d SHA1: 7fa5a20249bfa746612ba1c162dd79312f3d853a SHA256: 611ad72fcacfcbbce304e0b3d5d97f00b43670759c606e1c620d38122f521871 Description: shared libraries for terminal handling (wide character support) Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: 1a69a793355bf1fff9186f00b71dd14a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libncursesw5-dbg Priority: extra Section: libdevel Installed-Size: 6356 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libtinfo5-dbg (= 5.9+20140118-1ubuntu1), libncursesw5-dev (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15), libncursesw5 (>= 5.6+20071124) Filename: pool/main/n/ncurses/libncursesw5-dbg_5.9+20140118-1ubuntu1_i386.deb Size: 1068638 MD5sum: d5ed56e5d4b1e6ba8214f880676eb732 SHA1: 57d892933c9b68021fc6debde02824a0f5c73c19 SHA256: c9b02e8dbc5107290a60eabdf1c4181b0d0c904b671c5e9de809989322404a9b Description: debugging/profiling libraries for ncursesw Homepage: http://invisible-island.net/ncurses/ Description-md5: f1a8753e0e826eda9da45ea0701fb764 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libncursesw5-dev Priority: optional Section: libdevel Installed-Size: 985 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libncursesw5 (= 5.9+20140118-1ubuntu1), libtinfo-dev (= 5.9+20140118-1ubuntu1), ncurses-bin (= 5.9+20140118-1ubuntu1), libc6-dev | libc-dev Suggests: ncurses-doc Filename: pool/main/n/ncurses/libncursesw5-dev_5.9+20140118-1ubuntu1_i386.deb Size: 196722 MD5sum: c161d609c4841a5e362f9adc1843df1b SHA1: 34d43e07392deee188865b701dea8a421544a0c5 SHA256: bfdd163ddfe92dc0827c87aca9c00795c6c4ae67a8525d81ad82616831020c13 Description: developer's libraries for ncursesw Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: 7cb791804adf3d6ce56ac2845116e8fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libneon27 Priority: optional Section: libs Installed-Size: 286 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: neon27 Version: 0.30.0-1ubuntu1 Depends: libc6 (>= 2.4), libgssapi-krb5-2 (>= 1.10+dfsg~), libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Filename: pool/main/n/neon27/libneon27_0.30.0-1ubuntu1_i386.deb Size: 94224 MD5sum: bfdea114ca89b67d57c111e6a9dac3e1 SHA1: 8319ca9e7795a103fd7ec121b8d376661304f0eb SHA256: 18b90704a4f4091efca5ed1691c5e6a66532525e1425b67416ecb8a7861f70b6 Description: HTTP and WebDAV client library Homepage: http://www.webdav.org/neon/ Description-md5: 1a393f35895ce4fcb0fd461ebf9d809a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libneon27-dbg Priority: extra Section: libdevel Installed-Size: 494 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: neon27 Version: 0.30.0-1ubuntu1 Depends: libneon27 (= 0.30.0-1ubuntu1) Filename: pool/main/n/neon27/libneon27-dbg_0.30.0-1ubuntu1_i386.deb Size: 144684 MD5sum: d6a17e26a83b617d58106bb5e2e3f3b9 SHA1: e7f45ac9b51ac8ad84bd4b15583d0cd5de2f1aa0 SHA256: 67ba4401ff6d4b5b612b8e5703c83956eef9f5697d1f45a512c182a01de13077 Description: Detached symbols for libneon27 Homepage: http://www.webdav.org/neon/ Description-md5: c2040e90bbd35f5abb489d781dd8d90b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libneon27-dev Priority: optional Section: libdevel Installed-Size: 1096 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: neon27 Version: 0.30.0-1ubuntu1 Replaces: libneon-dev, libneon25-dev, libneon27-gnutls-dev Provides: libneon-dev Depends: libneon27 (= 0.30.0-1ubuntu1), libssl-dev, libxml2-dev, libkrb5-dev, pkg-config Conflicts: libneon-dev, libneon24-doc (<= 0.24.5-1), libneon25-dev (<< 0.28.2-5), libneon27-gnutls-dev Filename: pool/main/n/neon27/libneon27-dev_0.30.0-1ubuntu1_i386.deb Size: 336966 MD5sum: c383e87c3a5de9af0b0e37facc6250f1 SHA1: 0b9b32fa925f9b00fe18618d8de2dfeb7e1d16ed SHA256: b65e7dbd0bd47df54e97215352006e774ece5135309ad5bb1f88661eb0b64978 Description: Header and static library files for libneon27 Homepage: http://www.webdav.org/neon/ Description-md5: 99a5ffc065d5c4dcb72a47bcb8c89ef5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libneon27-gnutls Priority: optional Section: libs Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: neon27 Version: 0.30.0-1ubuntu1 Depends: libc6 (>= 2.4), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Recommends: ca-certificates Filename: pool/main/n/neon27/libneon27-gnutls_0.30.0-1ubuntu1_i386.deb Size: 65540 MD5sum: 130ce8dbb566f08c5640ca9ab8754113 SHA1: 8d60b3153b1916a3f8fd164257347f464da455e7 SHA256: eb6f850e245d28ca59d9af0efaa19ffeb2536ed3adc2d30668b7f16b733400a0 Description: HTTP and WebDAV client library (GnuTLS enabled) Homepage: http://www.webdav.org/neon/ Description-md5: c6fa90bf133b6a934d0ac7818b4724b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libneon27-gnutls-dbg Priority: extra Section: libdevel Installed-Size: 443 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: neon27 Version: 0.30.0-1ubuntu1 Depends: libneon27-gnutls (= 0.30.0-1ubuntu1) Filename: pool/main/n/neon27/libneon27-gnutls-dbg_0.30.0-1ubuntu1_i386.deb Size: 125624 MD5sum: 8f332eccd58880af193cd0db8bac5420 SHA1: 797dc462a1051d62b01bb00f5d50fc1cc350e871 SHA256: d86beeef373ece0c3dc6b9a9966adea1de282720ffbfdf6f208c74a8d9fb4f06 Description: Detached symbols for libneon27 (GnuTLS enabled) Homepage: http://www.webdav.org/neon/ Description-md5: f9d918f02190b524fd54e425084f724d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libneon27-gnutls-dev Priority: optional Section: libdevel Installed-Size: 1014 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: neon27 Version: 0.30.0-1ubuntu1 Replaces: libneon-dev, libneon25-dev, libneon27-dev Provides: libneon-dev Depends: libneon27-gnutls (= 0.30.0-1ubuntu1), libgnutls-dev, libxml2-dev, libkrb5-dev, pkg-config Conflicts: libneon-dev, libneon24-doc (<= 0.24.5-1), libneon25-dev (<< 0.28.2-5), libneon27-dev Filename: pool/main/n/neon27/libneon27-gnutls-dev_0.30.0-1ubuntu1_i386.deb Size: 310358 MD5sum: b21f1256332b2ad28214c7d31b269976 SHA1: 5823988c9d124ca4641403bff2bf75b1c8c78185 SHA256: 3fe13aaa41ddbb57ac0c1d96322de3508de1c91f1bfacf318066fbcc65647e7d Description: Header and static library files for libneon27 (GnuTLS enabled) Homepage: http://www.webdav.org/neon/ Description-md5: fa474ab65adbb46a27fc8c84102e2b8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnepomuk4 Priority: optional Section: libs Installed-Size: 1155 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.4), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.8.0), libsoprano4 (>= 2.7.56), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libnepomuk4_4.13.0-0ubuntu1_i386.deb Size: 213826 MD5sum: 4afda2ef7c771acef5cf83e8c12e0e23 SHA1: 9292b6dd19031fdf917c6524ed321999b4d42fe6 SHA256: 2459dd1845098e1376a2853a0e55a4bd14451b9b956c816858e67ff7094027ca Description: Nepomuk Meta Data Library Homepage: http://nepomuk.kde.org/ Description-md5: b19e398b2de1071ad89678968e230e2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libnepomukquery4a Priority: optional Section: libs Installed-Size: 499 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Replaces: kdebase-workspace-libs4+5, libnepomukquery4 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libqt4-dbus (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libsoprano4 (>= 2.7.56), libstdc++6 (>= 4.1.1) Breaks: kdebase-workspace-libs4+5, libnepomukquery4 Filename: pool/main/k/kde4libs/libnepomukquery4a_4.13.0-0ubuntu1_i386.deb Size: 108682 MD5sum: c40010ce3fc6a3dd7ad49a8c505cd6d5 SHA1: cd8ce937a8f1cf75d85ab31ddedf659eeb6ebe9a SHA256: 7b7fc8df6477791cf9311003575812c9b7431e58d2eb8ecae40c3e767fbccfc2 Description: Nepomuk Query Library for the KDE Platform Homepage: http://nepomuk.kde.org/ Description-md5: f817c9a2910650273d5905aa6b8bc8d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libnepomukutils4 Priority: optional Section: libs Installed-Size: 430 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libnepomuk4 (= 4:4.13.0-0ubuntu1), libnepomukquery4a (= 4:4.13.0-0ubuntu1), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.8.0), libsoprano4 (>= 2.7.56), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libnepomukutils4_4.13.0-0ubuntu1_i386.deb Size: 87538 MD5sum: ca9421357df56c56553a6ddecae5be53 SHA1: 292a6eafce5bf7a311f99a86d575107a83c80d9f SHA256: eec5f346b17c5d02d66e9051fd3e4fadf0ff9d1a4b0dceaa481b2493f798cc6d Description: Nepomuk Utility Library Homepage: http://nepomuk.kde.org/ Description-md5: 064394da7816fadaeba58ce100eb1836 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libnet-cidr-perl Priority: optional Section: perl Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Bart Martens Architecture: all Version: 0.17-1 Depends: perl Filename: pool/main/libn/libnet-cidr-perl/libnet-cidr-perl_0.17-1_all.deb Size: 14786 MD5sum: 0a2f10b28e90912277810e032887341e SHA1: 4d294df53c9253cfc751e5d51078382c2cac8364 SHA256: ec77bc6085fd83585ef44de5552976d09ef1e8c1e3143d9d1e63cf634ce44f8e Description: Manipulate IPv4/IPv6 netblocks in CIDR notation Homepage: http://search.cpan.org/dist/Net-CIDR/ Description-md5: 96a22fd88a0c4bef19b131a6c6c68cd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet-dns-perl Priority: optional Section: perl Installed-Size: 674 Maintainer: Ubuntu Developers Original-Maintainer: Florian Roscher Architecture: i386 Version: 0.68-1.2build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4), libdigest-hmac-perl (>= 1), libmime-base64-perl, libnet-ip-perl (>= 1.2), libio-socket-inet6-perl Filename: pool/main/libn/libnet-dns-perl/libnet-dns-perl_0.68-1.2build1_i386.deb Size: 294430 MD5sum: 047b6feb681057fc05104c2e05285768 SHA1: 06919804c7093c774eeb9f56087bfb4767fef6e3 SHA256: 4b92c55d5636e93569982de7551989466b2c1c9b8b7a91e3dab2bc3473290a85 Description: Perform DNS queries from a Perl script Homepage: http://www.net-dns.org/ Description-md5: 844c18f2647e1389fce352e0e6fb5455 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-dns-resolver-programmable-perl Priority: optional Section: perl Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.003-2 Depends: perl, libnet-dns-perl Filename: pool/main/libn/libnet-dns-resolver-programmable-perl/libnet-dns-resolver-programmable-perl_0.003-2_all.deb Size: 10154 MD5sum: 90f2fdc1670437b34e0ce8a3c049d782 SHA1: 8366d7e31ff80dc8e7bb0548fc784fb543e02182 SHA256: d934dfdaf835bf592c2b9842a49cd788d8e379aed7550e55ad32c1ceea9acc88 Description: programmable DNS resolver class for offline emulation of DNS Homepage: http://search.cpan.org/dist/Net-DNS-Resolver-Programmable/ Description-md5: 0af5d17ab98dea97840b15d23dbd17dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnet-domain-tld-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.70-1 Depends: perl Filename: pool/main/libn/libnet-domain-tld-perl/libnet-domain-tld-perl_1.70-1_all.deb Size: 12392 MD5sum: 3586edc3ce589a6e34c8a082465aa904 SHA1: 001ae2cdc7dffd22b2175e7e38ebc63c168fccfc SHA256: 1b3f4f0bbec3209ff2d5617d8b73f904d4654f4cb102a4ff2c3595550fbc7011 Description: list of currently available Top-level Domains (TLDs) Homepage: https://metacpan.org/release/Net-Domain-TLD/ Description-md5: cdb2673e7d06c281ae7ff48272081a8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-http-perl Priority: optional Section: perl Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.06-1 Replaces: libwww-perl (<< 6.00) Depends: perl Recommends: libio-socket-ssl-perl (>= 1.38) Breaks: libwww-perl (<< 6.00) Filename: pool/main/libn/libnet-http-perl/libnet-http-perl_6.06-1_all.deb Size: 24168 MD5sum: be81a58e1fa9b014923cc0ac8e992c59 SHA1: 1740c345333de820f50a681056dd66aa1e7912e1 SHA256: 2377f3ab0694f3e87863ef575938a85d5dff2224a442473a13a064633e3675ed Description: module providing low-level HTTP connection client Homepage: https://metacpan.org/release/Net-HTTP/ Description-md5: a321306aab43965de9df44af60cf6eb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-ip-perl Priority: optional Section: perl Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.26-1 Depends: perl Filename: pool/main/libn/libnet-ip-perl/libnet-ip-perl_1.26-1_all.deb Size: 31546 MD5sum: 110f45aa37095dc64192bf8e9032e655 SHA1: fe2e889c9f2f00d261962bec82986a351b65b903 SHA256: 63cc2947512efa2d745e70e92ec817c7af6c253b8239c5e754cbe79535f206a0 Description: Perl extension for manipulating IPv4/IPv6 addresses Homepage: http://search.cpan.org/dist/Net-IP/ Description-md5: 69f8a2fedc328fe80a5105353406d4f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-ldap-perl Priority: optional Section: perl Installed-Size: 871 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1:0.5800-1 Depends: perl, libconvert-asn1-perl Recommends: libgssapi-perl, libwww-perl Suggests: libauthen-sasl-perl, libdigest-hmac-perl, libio-socket-inet6-perl, libio-socket-ssl-perl, libjson-perl, liburi-perl, libxml-parser-perl, libxml-sax-perl Filename: pool/main/libn/libnet-ldap-perl/libnet-ldap-perl_0.5800-1_all.deb Size: 396300 MD5sum: c244cad9ccc65c65262fed52db6d8f1f SHA1: 10d24859dda67a344ba0e3305d67bd101435c6c7 SHA256: b579fb241c54033d07b233ad5457799007bfd71991bd70f1d8ecc21ac160633e Description: client interface to LDAP servers Homepage: http://ldap.perl.org/ Description-md5: 94d2f596d5f07ed133ccd4db463c5a70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet-libidn-perl Priority: optional Section: perl Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.12.ds-1build4 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3), libidn11 (>= 1.13) Filename: pool/main/libn/libnet-libidn-perl/libnet-libidn-perl_0.12.ds-1build4_i386.deb Size: 19692 MD5sum: 2c268dd62e5f202e9792674da66a8366 SHA1: 31ba1b2ac0823866498dec60e08780e02b39ae15 SHA256: 2476cb8c3d544e05ee95c7962cd2f39c34fe66ff69e75d7ea7f14d090a715e47 Description: Perl bindings for GNU Libidn Homepage: http://search.cpan.org/dist/Net-LibIDN/ Description-md5: 0a762048829fd446651dc9be4fb6ed71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-server-perl Priority: optional Section: perl Installed-Size: 512 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.007-3 Depends: perl, libio-multiplex-perl, libio-socket-inet6-perl, libnet-cidr-perl, libsocket6-perl Suggests: libio-socket-ssl-perl, liblog-log4perl-perl, libnet-ssleay-perl Filename: pool/main/libn/libnet-server-perl/libnet-server-perl_2.007-3_all.deb Size: 198202 MD5sum: 470aa9bac478219727b4beea8a106569 SHA1: e2d249ef0b5564def68996b7ebbb46988ae9c616 SHA256: 03e67bee7abd34b00f716de5d492523b3ba89242c176f8540e211a3da9f470ca Description: extensible, general perl server engine Homepage: https://metacpan.org/release/Net-Server/ Description-md5: 6ff0ba92822aa9a8aad96a4032254cb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet-smtp-ssl-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.01-3 Depends: perl, libio-socket-ssl-perl Recommends: libauthen-sasl-perl Filename: pool/main/libn/libnet-smtp-ssl-perl/libnet-smtp-ssl-perl_1.01-3_all.deb Size: 5948 MD5sum: 614bd815b2caa0c3643aa64043d2a038 SHA1: f8c34291c62e50ac40f4bf0601fcd9c68c19f51e SHA256: 6e8d0f8fa37584b6b07d3189e482ff084f3430d66042f4f5eba57f7b83e08487 Description: Perl module providing SSL support to Net::SMTP Homepage: http://search.cpan.org/dist/Net-SMTP-SSL/ Description-md5: 59963c2ed5b8d5e9aed2424aefac355e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-snmp-perl Priority: optional Section: perl Installed-Size: 453 Maintainer: Ubuntu Developers Original-Maintainer: Jochen Friedrich Architecture: all Version: 6.0.1-2 Depends: perl Suggests: libcrypt-des-perl, libdigest-hmac-perl, libio-socket-inet6-perl Filename: pool/main/libn/libnet-snmp-perl/libnet-snmp-perl_6.0.1-2_all.deb Size: 107418 MD5sum: 915e7b9ccf1bcae6ce728890d342837f SHA1: 42edba4f626a5cb154a9b238fdc61aeaddaf8660 SHA256: f3702731a96b67fc7a3508d0b40b2e67300dd15536eb9c7acdc95ffc8952128b Description: Script SNMP connections Description-md5: 822f8f6acfa7834deb310d8498b05082 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet-ssleay-perl Priority: optional Section: perl Installed-Size: 1028 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.58-1 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.4), libssl1.0.0 (>= 1.0.1) Suggests: libmime-base64-perl Filename: pool/main/libn/libnet-ssleay-perl/libnet-ssleay-perl_1.58-1_i386.deb Size: 241766 MD5sum: 9ebe66b49fabd358c8a6b161f5651d22 SHA1: 91708ea988c58e4dbbef84e33e4df37b8c8d9494 SHA256: 19f6d5523e2f824aab06aa2942b02396798e0ac5bbedd33eeb7bdedc3225be38 Description: Perl module for Secure Sockets Layer (SSL) Homepage: https://metacpan.org/release/Net-SSLeay/ Description-md5: ccc2258977dc0f512ba135bc3f4c6bca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnet-xwhois-perl Priority: optional Section: perl Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.90-4 Depends: perl Filename: pool/main/libn/libnet-xwhois-perl/libnet-xwhois-perl_0.90-4_all.deb Size: 20954 MD5sum: 88969ba8fd482ae4da90acc505ee01a4 SHA1: 640f90a688f21b139c16ddb8c98f92c219f04f93 SHA256: 57f0566dd07022e2d48426acd2108ed2a6d7ac91b9bed304fb81184aeae01102 Description: Whois Client Interface for Perl5 Homepage: https://metacpan.org/release/Net-XWhois Description-md5: f536bebc820e61324a72e5739e5b083f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet1 Priority: optional Section: libs Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Stefanos Harhalakis Architecture: i386 Source: libnet Version: 1.1.6+dfsg-2ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libn/libnet/libnet1_1.1.6+dfsg-2ubuntu1_i386.deb Size: 42698 MD5sum: b565b8c5db14a5ffa3daaa9de1eee600 SHA1: 4e691b61325e89ee61b5fac0713f5c94fdbc1c4a SHA256: aafc3a2398d3aeae0e12fe4eaa429542648a82de98ebb60b2cd932feff12ba05 Description: library for the construction and handling of network packets Multi-Arch: same Homepage: http://libnet-dev.sourceforge.net/ Description-md5: 6962156fdb23e2f413d3bdde50843766 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnet1-dbg Priority: extra Section: libs Installed-Size: 391 Maintainer: Ubuntu Developers Original-Maintainer: Stefanos Harhalakis Architecture: i386 Source: libnet Version: 1.1.6+dfsg-2ubuntu1 Depends: libnet1 (= 1.1.6+dfsg-2ubuntu1) Filename: pool/main/libn/libnet/libnet1-dbg_1.1.6+dfsg-2ubuntu1_i386.deb Size: 89118 MD5sum: c4c0bd1a0f109fede5be3b6d612064f0 SHA1: f9f91f7fa734837770a2871c72db1b2ba1f5091e SHA256: d10d5dd42e434ba3b4e21b25c87de84cd3a475bcb42aade4396ab193b4ca8ebb Description: debugging symbols for libnet Multi-Arch: same Homepage: http://libnet-dev.sourceforge.net/ Description-md5: c01fb359b5efe2491589541ef8fd4967 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnet1-dev Priority: optional Section: libdevel Installed-Size: 440 Maintainer: Ubuntu Developers Original-Maintainer: Stefanos Harhalakis Architecture: i386 Source: libnet Version: 1.1.6+dfsg-2ubuntu1 Provides: libnet-dev Depends: libc6-dev, libnet1 (= 1.1.6+dfsg-2ubuntu1) Conflicts: libnet-dev Filename: pool/main/libn/libnet/libnet1-dev_1.1.6+dfsg-2ubuntu1_i386.deb Size: 96284 MD5sum: beddd194ebb5f2defa4e3a787b8a1901 SHA1: 58f087fc14a503715485820be630763e5348da31 SHA256: e4df584794e97e65b1ff18f640c04351f43daa7c8bffc34b7db36a8815ba5f0b Description: development files for libnet Homepage: http://libnet-dev.sourceforge.net/ Description-md5: 00fc4a49605b484178c71aaf2dcff7e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnet1-doc Priority: optional Section: doc Installed-Size: 821 Maintainer: Ubuntu Developers Original-Maintainer: Stefanos Harhalakis Architecture: all Source: libnet Version: 1.1.6+dfsg-2ubuntu1 Suggests: libnet1-dev Filename: pool/main/libn/libnet/libnet1-doc_1.1.6+dfsg-2ubuntu1_all.deb Size: 191310 MD5sum: 8f2c4e8befad768508bcf60822cff36f SHA1: e4ff06c2b9e11a1aa2f2892365a1c61f9495ff07 SHA256: 6fa4ebc98a89874591069aa8ac4febf17b5120abed33519c715460a2749a1dbf Description: developers documentation files for libnet Homepage: http://libnet-dev.sourceforge.net/ Description-md5: 693a254aedc26c1893f4aa8b252700a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnetaddr-ip-perl Priority: optional Section: perl Installed-Size: 330 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 4.071+dfsg-1 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.4) Recommends: libsocket6-perl Filename: pool/main/libn/libnetaddr-ip-perl/libnetaddr-ip-perl_4.071+dfsg-1_i386.deb Size: 84636 MD5sum: c3d57d5b9deb1900420a495a8a8fb0cd SHA1: 37b2b1aa6d07b18f97c0d25a052cf8cbb5b72888 SHA256: f3db3dba900c5f33047a80dad3f8cc96b825e86ff117fb11819ed25640288568 Description: IP address manipulation module Homepage: https://metacpan.org/release/NetAddr-IP/ Description-md5: e872c8c680e660ec84770c1b960173c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libnetcf-dev Priority: extra Section: libdevel Installed-Size: 152 Maintainer: Serge Hallyn Architecture: i386 Source: netcf Version: 1:0.2.3-4ubuntu1 Depends: libnetcf1 (= 1:0.2.3-4ubuntu1) Filename: pool/main/n/netcf/libnetcf-dev_0.2.3-4ubuntu1_i386.deb Size: 32982 MD5sum: 120cdac965331e95185bba85cbd1d086 SHA1: 3b287fba7b9255b2065af29a7733c1eb6c25222b SHA256: d17418ad267296bbd0c650a89473ecc2ea53ac4ea6765d221a3381e0a68da00a Description: development library and headers for netcf Homepage: https://fedorahosted.org/netcf/ Description-md5: 817408fc4f8311a5d4236adf144dd58c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnetcf1 Priority: extra Section: libs Installed-Size: 206 Maintainer: Serge Hallyn Architecture: i386 Source: netcf Version: 1:0.2.3-4ubuntu1 Depends: libaugeas0 (>= 0.6.0), libc6 (>= 2.8), libnl-3-200 (>= 3.2.7), libnl-route-3-200 (>= 3.2.7), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), augeas-lenses Conflicts: libvirt0 (<= 0.10.1-2~) Filename: pool/main/n/netcf/libnetcf1_0.2.3-4ubuntu1_i386.deb Size: 44352 MD5sum: 514a1bfd51be25898b5d19e786b8c173 SHA1: a1c0d23cbcd37b8d73bf442b850c7f149fd32caa SHA256: 58264944f0bf08f1b3ed400f428295c0034aa8479aea69ac217326509b046f8e Description: cross-platform network configuration library Homepage: https://fedorahosted.org/netcf/ Description-md5: 19a455783c3b5cf4fabe5e9512048817 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libnetcf1-dbg Priority: extra Section: debug Installed-Size: 301 Maintainer: Serge Hallyn Architecture: i386 Source: netcf Version: 1:0.2.3-4ubuntu1 Depends: libnetcf1 (= 1:0.2.3-4ubuntu1) Filename: pool/main/n/netcf/libnetcf1-dbg_0.2.3-4ubuntu1_i386.deb Size: 89240 MD5sum: 80f1cebfa9a87f9d140ba2bf76802c9b SHA1: b3632c34766292e5d1c0816cccae64a34e8fc2d4 SHA256: b74c605c2c37d42ce36e174da092c1a01d5a0053c3c5a8028d675892a3776369 Description: cross-platform network configuration library Homepage: https://fedorahosted.org/netcf/ Description-md5: 150c34707b4e3258431ca1948ed982e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnetfilter-conntrack-dev Priority: optional Section: libdevel Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: i386 Source: libnetfilter-conntrack Version: 1.0.4-1 Depends: pkg-config, libnetfilter-conntrack3 (= 1.0.4-1), libnfnetlink-dev (>= 1.0.0) Filename: pool/main/libn/libnetfilter-conntrack/libnetfilter-conntrack-dev_1.0.4-1_i386.deb Size: 9004 MD5sum: 3bec1d2bef87d9dcf630d1ebfa1fc023 SHA1: 8691713ed4fee5f33f9301d4437e7223e2d2f0d2 SHA256: 1aaf6caa860225fdf66a5d42615c99db57e56fdd707c52f9788d97da8a3ef141 Description: Development files for libnetfilter-conntrack3 Homepage: http://www.netfilter.org/projects/libnetfilter_conntrack/ Description-md5: 56003153efb66d702a954e538a57f5fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnetfilter-conntrack3 Priority: extra Section: libs Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: i386 Source: libnetfilter-conntrack Version: 1.0.4-1 Depends: libc6 (>= 2.4), libmnl0, libnfnetlink0 Pre-Depends: multiarch-support Filename: pool/main/libn/libnetfilter-conntrack/libnetfilter-conntrack3_1.0.4-1_i386.deb Size: 46916 MD5sum: f1cb19986367e9cff4bbe79f0ca17a4f SHA1: 64551db82c60e9a975d6c591c8da6bf0176dd107 SHA256: 398e0286c7809ca30b15e135560a4364acaad22d9537b6e4ac504bcd79de76c1 Description: Netfilter netlink-conntrack library Multi-Arch: same Homepage: http://www.netfilter.org/projects/libnetfilter_conntrack/ Description-md5: f1067cc149ff552e440eda0b642c415a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnetfilter-conntrack3-dbg Priority: extra Section: debug Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: i386 Source: libnetfilter-conntrack Version: 1.0.4-1 Depends: libnetfilter-conntrack3 (= 1.0.4-1) Filename: pool/main/libn/libnetfilter-conntrack/libnetfilter-conntrack3-dbg_1.0.4-1_i386.deb Size: 141700 MD5sum: ac08e419d11985e73d7ca0c36799e0fc SHA1: a6094a070f4011f08da5e2ddbf6cc33d6b676b55 SHA256: b33e033ea7e43b5858d9c89e6cd6a0ba2a54a729eed792245c18103573112445 Description: Debugging symbols for libnetfilter-conntrack3 Homepage: http://www.netfilter.org/projects/libnetfilter_conntrack/ Description-md5: 6a57557901dc3e9fa98283de1c057376 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnetpbm10 Priority: optional Section: libs Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Barth Architecture: i386 Source: netpbm-free Version: 2:10.0-15ubuntu2 Depends: libc6 (>= 2.7) Filename: pool/main/n/netpbm-free/libnetpbm10_10.0-15ubuntu2_i386.deb Size: 65628 MD5sum: ec0f16ccb0e8797039db35d08c3df4a3 SHA1: 9c29a9143b8aac1812eeaf97c3ea0ecb14ecaf25 SHA256: fa1b4daaaa9204bd294b0abba07be22dfd355a6d2c38fc5ae4a47e09899b44c1 Description: Graphics conversion tools shared libraries Homepage: http://netpbm.alioth.debian.org Description-md5: 7469a853b7df47680b055dd8467b3162 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libnetpbm10-dev Priority: optional Section: libdevel Installed-Size: 302 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Barth Architecture: i386 Source: netpbm-free Version: 2:10.0-15ubuntu2 Replaces: netpbm-dev Provides: netpbm-dev Depends: libnetpbm10 (= 2:10.0-15ubuntu2) Conflicts: libnetpbm9-dev, netpbm-dev Filename: pool/main/n/netpbm-free/libnetpbm10-dev_10.0-15ubuntu2_i386.deb Size: 109882 MD5sum: 71be969918c8b6f86b41abdbda02c2f2 SHA1: 756794fb50db8461e0a3d50395a590e5211c50e2 SHA256: 62c867e8c4797e502b6772b3a678832dc58c4fc7f40f37522b3a7cda6defbe8d Description: Graphics conversion tools development libraries and header files Homepage: http://netpbm.alioth.debian.org Description-md5: 8624b9c657ac8380ac1cc36af98b59f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnettle4 Priority: optional Section: libs Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Magnus Holmgren Architecture: i386 Source: nettle Version: 2.7.1-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/n/nettle/libnettle4_2.7.1-1_i386.deb Size: 125100 MD5sum: 149f565531312a54c9340b6c6d8dd50c SHA1: 04e26c76d7b78a7887192f4a08bb21930ba50372 SHA256: 24e676e1405d36cf09e32a7270390780ffd2fb145e3903791ac4b2750e1d9fa4 Description: low level cryptographic library (symmetric and one-way cryptos) Multi-Arch: same Homepage: http://www.lysator.liu.se/~nisse/nettle/ Description-md5: 9dcb77a61a93b06eb5b005f9c8c509a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnewt-dev Priority: optional Section: libdevel Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: i386 Source: newt Version: 0.52.15-2ubuntu5 Depends: libslang2-dev (>= 2.0.2), libnewt0.52 (= 0.52.15-2ubuntu5) Filename: pool/main/n/newt/libnewt-dev_0.52.15-2ubuntu5_i386.deb Size: 66930 MD5sum: 9ba635d003c2a7df828d43a92940d9a6 SHA1: 762e7ca146eb0ef9a771f60d378cd2e301d75a82 SHA256: c46a9211b1ee262ab95f9caa01ea92ea54a07981109678a8446e0c5f453946e4 Description: Developer's toolkit for newt windowing library Multi-Arch: same Homepage: https://fedorahosted.org/newt/ Description-md5: 4444039a4a6e54b75dae85173c39b133 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnewt-pic Priority: extra Section: libdevel Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: i386 Source: newt Version: 0.52.15-2ubuntu5 Depends: libnewt-dev (= 0.52.15-2ubuntu5) Filename: pool/main/n/newt/libnewt-pic_0.52.15-2ubuntu5_i386.deb Size: 2634 MD5sum: c08b05b854b8603f274a63a5cdea8a1f SHA1: 5762e93c6e4bb2fd0a64457457a1ca54b5155a05 SHA256: 13c2bf0e5619214522a8e600686353ab0b4db3ca687186270ddaf247f25d7728 Description: Not Erik's Windowing Toolkit, shared library subset kit Multi-Arch: same Homepage: https://fedorahosted.org/newt/ Description-md5: 038737cb30e131e1b2b9cdbca20a39cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnewt0.52 Priority: important Section: libs Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: i386 Source: newt Version: 0.52.15-2ubuntu5 Depends: libc6 (>= 2.15), libslang2 (>= 2.2.4) Pre-Depends: multiarch-support Recommends: libfribidi0 Filename: pool/main/n/newt/libnewt0.52_0.52.15-2ubuntu5_i386.deb Size: 40770 MD5sum: f3b0a21f38dadade60199c0fc680f96d SHA1: 60d4465ee69132a2a2566519b5a12d0acdcbb380 SHA256: e4da4fa8c3fbcd3c49ae2705e7f52f178f2e1ab858302dab2f85a888b8c9fbcf Description: Not Erik's Windowing Toolkit - text mode windowing with slang Multi-Arch: same Homepage: https://fedorahosted.org/newt/ Description-md5: cfc4271054d35387b5e0576f9d7af19a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libnfnetlink-dev Priority: optional Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: i386 Source: libnfnetlink Version: 1.0.1-2 Depends: libnfnetlink0 (= 1.0.1-2), pkg-config Filename: pool/main/libn/libnfnetlink/libnfnetlink-dev_1.0.1-2_i386.deb Size: 6686 MD5sum: 70af266e247c1604ed60944641af72dd SHA1: 352558c2931a85e9c121fb93a43b4f5a03a2fc02 SHA256: 4a2f179fca6114ba0b478a45aa2c75954fed74819799e45734b1f88dd7d91f86 Description: Development files for libnfnetlink0 Description-md5: 1d63664ba1d482a715f14f78cdbca980 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnfnetlink0 Priority: standard Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: i386 Source: libnfnetlink Version: 1.0.1-2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libn/libnfnetlink/libnfnetlink0_1.0.1-2_i386.deb Size: 14964 MD5sum: 1d3e2ea47e8de0f7ba374f69ff87e198 SHA1: 2b0a4e025e661fd60f41c61f45d3c2d908ca9405 SHA256: be1d08e62c82adb22184bcbb69f7f23e6abf72ede6fe728eecad6740a50379b1 Description: Netfilter netlink library Multi-Arch: same Description-md5: 8b3f6ded46a99d0fbb1c1157f93b9512 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libnfnetlink0-dbg Priority: extra Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Alexander Wirt Architecture: i386 Source: libnfnetlink Version: 1.0.1-2 Depends: libnfnetlink0 (= 1.0.1-2) Filename: pool/main/libn/libnfnetlink/libnfnetlink0-dbg_1.0.1-2_i386.deb Size: 25538 MD5sum: 15342a69bed2cc4e4cc84726d6976854 SHA1: c7e8a6f82cdd914efe893d6819a2ace2af869122 SHA256: b3136de67cd2aab2c6f2ab943e81a553692a09576a0f3f2ead9c08e5d61c41a5 Description: Debugging symbols for libnfnetlink0 Description-md5: 744d0e293b47e85b0f8901afa401cb08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnfsidmap-dev Priority: optional Section: devel Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libnfsidmap Version: 0.25-5 Depends: libnfsidmap2 (= 0.25-5) Filename: pool/main/libn/libnfsidmap/libnfsidmap-dev_0.25-5_i386.deb Size: 18438 MD5sum: 9bff2519e36fc5163ca0ae644debf0ee SHA1: a214a64e4f29eae828f8f723fe5a3ecf4cc653ea SHA256: 220306ef3be89ea6612e7269b4f95e4d9f0b866ab8433700b180d89ff84f4499 Description: header files and docs for libnfsidmap Homepage: http://www.citi.umich.edu/projects/nfsv4/linux/ Description-md5: 4e6232ff1c9d5b12cd64b5e1989826e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnfsidmap2 Priority: optional Section: libs Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libnfsidmap Version: 0.25-5 Replaces: nfs-common (<< 1:1.2.2-1) Depends: libc6 (>= 2.7), libldap-2.4-2 (>= 2.4.7) Pre-Depends: multiarch-support Conflicts: libnfsidmap1 Breaks: nfs-common (<< 1:1.2.2-1) Filename: pool/main/libn/libnfsidmap/libnfsidmap2_0.25-5_i386.deb Size: 30616 MD5sum: 8e6fe83fa3c83fcdfcf1338d3b11e329 SHA1: b6fbd082ef4770859a750c270fe8152dea42ba92 SHA256: b4463fcfa337ca5439e537d7be0266fd09653a9957cf2547cf396db62f1e8382 Description: NFS idmapping library Multi-Arch: same Homepage: http://www.citi.umich.edu/projects/nfsv4/linux/ Description-md5: 856ba2c52c6a37e20e52ec3ea4b76269 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnice-dbg Priority: extra Section: debug Installed-Size: 540 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: libnice Version: 0.1.4-1 Depends: libnice10 (= 0.1.4-1) Filename: pool/main/libn/libnice/libnice-dbg_0.1.4-1_i386.deb Size: 220622 MD5sum: fde1e2eb5ac07dddaa6e21ef37642a9c SHA1: 4a182ed1c980d632283fc06051334fc0286bf54d SHA256: 3698b49854abc28bb1ee417a081ed4887c8124536c035c59f4c2bcd54858ad42 Description: ICE library (debugging symbols) Multi-Arch: same Homepage: http://nice.freedesktop.org/ Description-md5: 5f2b1767549c91633ab6c7086743b271 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnice-dev Priority: optional Section: libdevel Installed-Size: 554 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: libnice Version: 0.1.4-1 Depends: libnice10 (= 0.1.4-1), libglib2.0-dev (>= 2.10) Filename: pool/main/libn/libnice/libnice-dev_0.1.4-1_i386.deb Size: 158756 MD5sum: bb85f02e73c6e75ea01545513210b01e SHA1: 9ca11a8df2e71d99cc0cd6f67ae34d21b29724fe SHA256: 036d6956bca6edaaf23ada71fbb6149b3ab481268cbea2e3e271141856fd750c Description: ICE library (development files) Homepage: http://nice.freedesktop.org/ Description-md5: f6f55296bfc2891942fa1c06d3772058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnice-doc Priority: optional Section: doc Installed-Size: 758 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: libnice Version: 0.1.4-1 Filename: pool/main/libn/libnice/libnice-doc_0.1.4-1_all.deb Size: 90970 MD5sum: 7712fa4f9b53afc9229ed634995ede6e SHA1: e261919a77d2a66351f8f181a005bd8c3d67e015 SHA256: 6ace8c2f8fcb88746eeefcc1d9288e8cfaf2ea6123e0bc74eea63a51292c7b2c Description: ICE library (documentation) Homepage: http://nice.freedesktop.org/ Description-md5: 106ee7b86a0699c970a20a22b5e58c75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnice10 Priority: optional Section: libs Installed-Size: 264 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: libnice Version: 0.1.4-1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.31.8), libgupnp-igd-1.0-4 (>= 0.2.1) Pre-Depends: multiarch-support Filename: pool/main/libn/libnice/libnice10_0.1.4-1_i386.deb Size: 107640 MD5sum: 669dbdb973be4679331caf8f1b4b2acf SHA1: 5ed98779e525ae504aae678c100d1191331626fe SHA256: 17eaf5e587c5446b79d236dc8013fd277bee56963fdb7a37ab8fafbf9d800f90 Description: ICE library (shared library) Multi-Arch: same Homepage: http://nice.freedesktop.org/ Description-md5: 607bd90945ab95ad3b967004acbc27c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libnih-dbus-dev Priority: optional Section: libdevel Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Scott James Remnant Architecture: i386 Source: libnih Version: 1.0.3-4ubuntu25 Depends: libdbus-1-dev, libnih-dbus1 (= 1.0.3-4ubuntu25), libnih-dev (= 1.0.3-4ubuntu25), libnih1 Recommends: nih-dbus-tool (= 1.0.3-4ubuntu25) Filename: pool/main/libn/libnih/libnih-dbus-dev_1.0.3-4ubuntu25_i386.deb Size: 22212 MD5sum: 6f5fcf61f937e3b0c7796436105c0dc7 SHA1: da6d62189edc6bf4388478a228732e1ea9fe5cd1 SHA256: 3862eec1b5c366c1675a46ca72e539e3871f5b2388a0282294c0550a029e3ca7 Description: NIH D-Bus Bindings Library (development files) Multi-Arch: same Homepage: https://launchpad.net/libnih Description-md5: 24ea4dd029abfc14e5481bb99369ee59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnih-dbus1 Priority: required Section: libs Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Scott James Remnant Architecture: i386 Source: libnih Version: 1.0.3-4ubuntu25 Depends: libnih1 (= 1.0.3-4ubuntu25), libc6 (>= 2.3.4), libdbus-1-3 (>= 1.2.16) Pre-Depends: multiarch-support Filename: pool/main/libn/libnih/libnih-dbus1_1.0.3-4ubuntu25_i386.deb Size: 13642 MD5sum: 570d9760a0552cca08812395bb82cb66 SHA1: 315c8786528c20a887ae7ff7ecd705e64010f57b SHA256: 69a5a8c95d5afab6835b1254d8a573495fbe253cdee83e9faedd33e341ced4ee Description: NIH D-Bus Bindings Library Multi-Arch: same Homepage: https://launchpad.net/libnih Description-md5: f01452c73291e3ad9d2f133824043b65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libnih-dev Priority: optional Section: libdevel Installed-Size: 376 Maintainer: Ubuntu Developers Original-Maintainer: Scott James Remnant Architecture: i386 Source: libnih Version: 1.0.3-4ubuntu25 Depends: libnih1 (= 1.0.3-4ubuntu25) Filename: pool/main/libn/libnih/libnih-dev_1.0.3-4ubuntu25_i386.deb Size: 74524 MD5sum: ce42f920216672074347728ed455c0a2 SHA1: 42f66ffe83af83da8f7894cc9cad353e2e3d7862 SHA256: 0057e49ebd62fbb05e4694b23761cd881e0c55908f9cc29abe7af5b17ea93729 Description: NIH Utility Library (development files) Multi-Arch: same Homepage: https://launchpad.net/libnih Description-md5: 08c753953f8e5008d6ecdc93ef47aa72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnih1 Priority: required Section: libs Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Scott James Remnant Architecture: i386 Source: libnih Version: 1.0.3-4ubuntu25 Pre-Depends: multiarch-support, libc6 (>= 2.15~) Filename: pool/main/libn/libnih/libnih1_1.0.3-4ubuntu25_i386.deb Size: 46252 MD5sum: 2c7dd2d5ceded45754ef1c162bf24d0c SHA1: c2c0ff07e514419941d4cf75a4e98b57b4398b5e SHA256: a9fd8ab9f17ab69c1b773b58bf6d5c576ff58cd2a2f5541ce54cbf64b4004e7c Description: NIH Utility Library Multi-Arch: same Homepage: https://launchpad.net/libnih Description-md5: 92500fc26ab644cbeb0d43f75dce8ac8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libnl-3-200 Priority: optional Section: libs Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: i386 Source: libnl3 Version: 3.2.21-1 Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Filename: pool/main/libn/libnl3/libnl-3-200_3.2.21-1_i386.deb Size: 45070 MD5sum: fe568dac5b29b529e8677770770f3c09 SHA1: 64eb7fd8145039fe2f4231fdb5965ddc1ab46b54 SHA256: 791489ef14e3707e5a4a3c8967feb936cfd66ee720b69c2563ac81f2c7b8a98e Description: library for dealing with netlink sockets Multi-Arch: same Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: de8043b32007ad94dc3b94b81389b53d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnl-3-200-dbg Priority: extra Section: debug Installed-Size: 896 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: i386 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-200 (= 3.2.21-1) Filename: pool/main/libn/libnl3/libnl-3-200-dbg_3.2.21-1_i386.deb Size: 583326 MD5sum: df9d6dd62aa6d443b32c8ec00690b792 SHA1: ec7dee3f8f32c5ca3651499c141f5a080145bfd3 SHA256: b86af237d4bdd70f68ca4c141b23b30bf7cac068b28cdf769c8fc6ee6838ca4b Description: debug symbols for libnl3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: 72d1913cdbd3c1c3101202f7577d2655 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-3-dev Priority: optional Section: libdevel Installed-Size: 401 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: i386 Source: libnl3 Version: 3.2.21-1 Replaces: libnl3-dev Depends: libnl-3-200 (= 3.2.21-1) Conflicts: libnl-dev, libnl2-dev Breaks: libnl3-dev Filename: pool/main/libn/libnl3/libnl-3-dev_3.2.21-1_i386.deb Size: 67766 MD5sum: ef48d049174a2554ea66c9284a3b602b SHA1: 1a0ad86a35edb1cd9e46609943879867bdb24770 SHA256: cef303f8fe69972bf842ab0c0bcdfea452957fb163ff8182e027a3c3e4ad19fd Description: development library and headers for libnl-3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: 4f94e78ffa87939739aaeb004f6f7900 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-cli-3-200 Priority: optional Section: libs Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: i386 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-200 (= 3.2.21-1), libnl-genl-3-200 (= 3.2.21-1), libnl-nf-3-200 (= 3.2.21-1), libnl-route-3-200 (= 3.2.21-1), libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libn/libnl3/libnl-cli-3-200_3.2.21-1_i386.deb Size: 20292 MD5sum: 3888b913dd000b0ad808d1664ee02f91 SHA1: 1fda810d4d10f8965b04fff779de82462d019be4 SHA256: b257def1111b886411ff5ccc2f485eda3c6a5ffaf30dd3affe52798ff7276f3c Description: library for dealing with netlink sockets - cli helpers Multi-Arch: same Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: e48eb936cdcfd31a78c5e570e122e46e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-cli-3-dev Priority: optional Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: i386 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-dev (= 3.2.21-1), libnl-genl-3-dev (= 3.2.21-1), libnl-nf-3-dev (= 3.2.21-1), libnl-route-3-dev (= 3.2.21-1), libnl-cli-3-200 (= 3.2.21-1) Filename: pool/main/libn/libnl3/libnl-cli-3-dev_3.2.21-1_i386.deb Size: 11572 MD5sum: 293b719b82631a833a716b56db29c9e9 SHA1: 6bf687a4c67130a2d28d0f2869d0f68a9fd97127 SHA256: 77db066477a832967adb54ec0481bc27d24703a6fad6fbcf99d76886ad72771b Description: development library and headers for libnl-cli-3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: d0d6775d882d291771483625fac506d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-genl-3-200 Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: i386 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-200 (= 3.2.21-1), libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libn/libnl3/libnl-genl-3-200_3.2.21-1_i386.deb Size: 10298 MD5sum: 7f6e2cb1fe20c19ebb73e018da6ba7c5 SHA1: 939dd6198b1219eeb9da9d470084f9215152621e SHA256: 74a0007d01f6411a7d74ef4cf73e7b0a0b6fb00589f6ebfc64f497c9ddc13b15 Description: library for dealing with netlink sockets - generic netlink Multi-Arch: same Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: ff95f226ef9d6cbaad5efbee578c439f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnl-genl-3-dev Priority: optional Section: libdevel Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: i386 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-dev (= 3.2.21-1), libnl-genl-3-200 (= 3.2.21-1) Filename: pool/main/libn/libnl3/libnl-genl-3-dev_3.2.21-1_i386.deb Size: 9216 MD5sum: 39d9652792b189611a67b89cc4cf7478 SHA1: d71940835d785e096ce8496dc6cb6647074d4c6c SHA256: 82537c96cbf2df8565d0f32dd3436edb67b1deb0be09301371065b35d0f76e12 Description: development library and headers for libnl-genl-3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: 5e4cdba9a1839cea7d07684012851968 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-nf-3-200 Priority: optional Section: libs Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: i386 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-200 (= 3.2.21-1), libnl-route-3-200 (= 3.2.21-1), libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libn/libnl3/libnl-nf-3-200_3.2.21-1_i386.deb Size: 28124 MD5sum: 8e7c7926ef986395909c29efebbe8384 SHA1: 4de33605945638dcba1ea349dee9e7ad54061bfb SHA256: fd827e6e7cc7af3c6e882219039d317c02f3739ce6f8049bc5d394d8d462a37b Description: library for dealing with netlink sockets - netfilter interface Multi-Arch: same Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: bfbd30c6345caeecccdde40477bee940 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-nf-3-dev Priority: optional Section: libdevel Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: i386 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-dev (= 3.2.21-1), libnl-route-3-dev (= 3.2.21-1), libnl-nf-3-200 (= 3.2.21-1) Filename: pool/main/libn/libnl3/libnl-nf-3-dev_3.2.21-1_i386.deb Size: 26112 MD5sum: 1a2123eca892af6e1faeb1578f3dcec0 SHA1: 3fcef27299b24b2c0f0d0f3b368082d4e2de4f94 SHA256: 4918371df42cc8657dcdab72fd316ee4fb16a676c9215d6f70850c7d068d19fd Description: development library and headers for libnl-nf-3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: a7e09636b6e529c3aee67ded0cfed8e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnl-route-3-200 Priority: optional Section: libs Installed-Size: 351 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: i386 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-200 (= 3.2.21-1), libc6 (>= 2.8) Pre-Depends: multiarch-support Filename: pool/main/libn/libnl3/libnl-route-3-200_3.2.21-1_i386.deb Size: 96148 MD5sum: 649a63ff4d7b8a21ee2692b65d1d65c5 SHA1: 27b86e9c44ec636b8149aca2253fc7e2edeb19fc SHA256: c7cd28a3f81fcc3ec13479d5c2d78a860125247e8c6e77a4536ddea0fa3a6d90 Description: library for dealing with netlink sockets - route interface Multi-Arch: same Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: 00e1d8b59623c24502ade39580e576f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnl-route-3-dev Priority: optional Section: libdevel Installed-Size: 468 Maintainer: Ubuntu Developers Original-Maintainer: Heiko Stuebner Architecture: i386 Source: libnl3 Version: 3.2.21-1 Depends: libnl-3-dev (= 3.2.21-1), libnl-route-3-200 (= 3.2.21-1) Filename: pool/main/libn/libnl3/libnl-route-3-dev_3.2.21-1_i386.deb Size: 100996 MD5sum: c5e057c71400e4468bb62c5c2184f7e3 SHA1: ebf1e714f46bcd7a637f4c00f4d92e274aacb48c SHA256: ba5621262108c0852da168b1fb454973f45b5c36233c75fc898d96e88d29d7a3 Description: development library and headers for libnl-route-3 Homepage: http://people.suug.ch/~tgr/libnl/ Description-md5: 835852ab9ac4e7de6211826dd1b374b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnm-glib-dev Priority: optional Section: net Installed-Size: 1838 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libnm-glib4 (= 0.9.8.8-0ubuntu7), gir1.2-networkmanager-1.0 (= 0.9.8.8-0ubuntu7), libnm-util-dev, network-manager-dev, libglib2.0-dev, libdbus-glib-1-dev Filename: pool/main/n/network-manager/libnm-glib-dev_0.9.8.8-0ubuntu7_i386.deb Size: 160904 MD5sum: 88f1eebe6381532addde22461c9cd91e SHA1: c7cd6df47e071c312a026bb10bd4c68eef22e5fd SHA256: bbaea395d7e0dcbae0c82b808b7642f6466701bca43841ae24d729fedb267405 Description: network management framework (GLib interface) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 56d0a34d148547835775f648c283d58f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnm-glib-vpn-dev Priority: optional Section: libdevel Installed-Size: 130 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libnm-glib-vpn1 (= 0.9.8.8-0ubuntu7), libnm-glib-dev Filename: pool/main/n/network-manager/libnm-glib-vpn-dev_0.9.8.8-0ubuntu7_i386.deb Size: 5856 MD5sum: 082403b817d89d61f80a0b37ed6f82ca SHA1: 82c0befa6ad762df9015f417ad5ea30f1b618362 SHA256: 726d786eab5e1717de5b1469e53d2b37c10cd7260a793af73fddd0f476c04570 Description: network management framework (GLib interface) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: c78ac261b5f6cfbb4c74b78a708c90bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnm-glib-vpn1 Priority: optional Section: libs Installed-Size: 134 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libc6 (>= 2.3.6-6~), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.22), libnm-util2 (>= 0.7.0) Filename: pool/main/n/network-manager/libnm-glib-vpn1_0.9.8.8-0ubuntu7_i386.deb Size: 12900 MD5sum: d17a1f800aa2eb06bb2cf200e4758417 SHA1: 12ea48247effb536b53ccc81e394475f9bde24c6 SHA256: 28f634a3ae274fe013ad806cc88e87f4d004ac50d2689a658cbe7f49258a6efb Description: network management framework (GLib VPN shared library) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: a8d1fc7f276929433320d96cddd81b4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnm-glib4 Priority: optional Section: libs Installed-Size: 358 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.31.22), libgudev-1.0-0 (>= 146), libnm-util2 (>= 0.9.6.0+git201212071413.8a9759a) Filename: pool/main/n/network-manager/libnm-glib4_0.9.8.8-0ubuntu7_i386.deb Size: 71234 MD5sum: 3a9821c631944e7dd6152df9b9d4d6df SHA1: ed0eecf8aeeae4ecdcd8cb7a6e4f3e9bed12a8d2 SHA256: 7c93115398ae94f450561c0b4218694ca02d8ed99c4a8bc3a0485b4758cdf5c9 Description: network management framework (GLib shared library) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 217fbdca65cb15a2066a01b11aa4ed86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnm-gtk-common Priority: optional Section: gnome Installed-Size: 70 Maintainer: Ubuntu Core Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: network-manager-applet Version: 0.9.8.8-0ubuntu4 Filename: pool/main/n/network-manager-applet/libnm-gtk-common_0.9.8.8-0ubuntu4_all.deb Size: 5512 MD5sum: 28af5b0af5d7bee1fc7962e6dd178048 SHA1: 227887aabc07e5aa21870d3adbca44b762aec9c2 SHA256: 0972f741e58ea38838ad0a9733671a539b86d7d788dcff4145f8fc2f2afad6f7 Description: network management framework (common files for wifi and mobile) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: f5a1fa548a58dbb1709b64657de21f16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnm-gtk-dev Priority: optional Section: libdevel Installed-Size: 132 Maintainer: Ubuntu Core Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager-applet Version: 0.9.8.8-0ubuntu4 Depends: libnm-gtk0 (= 0.9.8.8-0ubuntu4), gir1.2-nmgtk-1.0 (= 0.9.8.8-0ubuntu4), network-manager-dev (>= 0.9), libnm-util-dev (>= 0.9), libnm-glib-dev (>= 0.9), libgtk-3-dev, libdbus-glib-1-dev Filename: pool/main/n/network-manager-applet/libnm-gtk-dev_0.9.8.8-0ubuntu4_i386.deb Size: 8622 MD5sum: 2112fa053b9242b08bc959b7127b6002 SHA1: 41df56c08b0d241b104c9421bf5994d3300919fd SHA256: d3d9bf377fbfc6d733e42566a41532a1fbf9c719717f3b9b92dcaa9bf61ce862 Description: network management framework (dialogs development libraries) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 88955533a0cb56b5f9da136d252557f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnm-gtk0 Priority: optional Section: libs Installed-Size: 242 Maintainer: Ubuntu Core Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager-applet Version: 0.9.8.8-0ubuntu4 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libgudev-1.0-0 (>= 146), libnm-glib4 (>= 0.8.9997), libnm-util2 (>= 0.9.6.0~git201207161259.00297f4), libnm-gtk-common (= 0.9.8.8-0ubuntu4) Filename: pool/main/n/network-manager-applet/libnm-gtk0_0.9.8.8-0ubuntu4_i386.deb Size: 60200 MD5sum: abd8eb12531543270fced470243d2b2a SHA1: cfa6b27549a6780cc89da46950947b3b73f7da5a SHA256: 0fc8167e7cc5dbd39cffc81cd6ecdc2da4f524be4abfc31ebccda9ec77048ec9 Description: network management framework (GNOME dialogs for wifi and mobile) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 9325f3ebd5f03d6e8ef59a98603e6a11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnm-util-dev Priority: optional Section: net Installed-Size: 3019 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libnm-util2 (= 0.9.8.8-0ubuntu7), gir1.2-networkmanager-1.0 (= 0.9.8.8-0ubuntu7), libglib2.0-dev, libdbus-glib-1-dev Filename: pool/main/n/network-manager/libnm-util-dev_0.9.8.8-0ubuntu7_i386.deb Size: 172676 MD5sum: 862c6a620e4986f530ad98ff81c7b6a9 SHA1: 1612f3fb99e44dc6c8aa4baa0f0ec693efd46bdb SHA256: 2dc1103b0ed60ee5c8e100c83016296c83a3225d9896f04576306104a4b17517 Description: network management framework (development files) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 386633658ef6f2e5bd09c1075e48d085 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnm-util2 Priority: optional Section: libs Installed-Size: 517 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: libc6 (>= 2.4), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.33.14), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libuuid1 (>= 2.16) Filename: pool/main/n/network-manager/libnm-util2_0.9.8.8-0ubuntu7_i386.deb Size: 111482 MD5sum: 0f8db40fbdb083f90cd4d0ff2a557f28 SHA1: af126291ddbecf28d8f23d0b62d2768174e7ac5d SHA256: 8b149b2052fe1e5d01efd9bc7ce02af8161a317899eb3b0667b67edb4960518e Description: network management framework (shared library) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 9206e0c0315bf3dee48dfe5ab4d4bd13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnotify-bin Priority: optional Section: utils Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libnotify Version: 0.7.6-1ubuntu3 Depends: libc6 (>= 2.3.4), libglib2.0-0 (>= 2.26), libnotify4 (>= 0.7.3) Filename: pool/main/libn/libnotify/libnotify-bin_0.7.6-1ubuntu3_i386.deb Size: 6370 MD5sum: c6153b91424528ef737169106ab2639f SHA1: 608a15451ee5707d05792a5175fbd59a28339fac SHA256: 11871d79c0e0513317a45f42a8e99762af4dd7b4df31d81e462fd50f589575b8 Description: sends desktop notifications to a notification daemon (Utilities) Description-md5: 78f71daa6123cb4aefd91bc017bb5d0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnotify-dev Priority: optional Section: libdevel Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libnotify Version: 0.7.6-1ubuntu3 Depends: libnotify4 (= 0.7.6-1ubuntu3), gir1.2-notify-0.7 (= 0.7.6-1ubuntu3), libglib2.0-dev (>= 2.26), libgdk-pixbuf2.0-dev Filename: pool/main/libn/libnotify/libnotify-dev_0.7.6-1ubuntu3_i386.deb Size: 16270 MD5sum: 7803ad26acc337b50eb5903929d591e3 SHA1: 5b2bd8b2dfc3b8c2417e16c1c965fdd5d869a7fe SHA256: 2134f968dddb6b5bcf40f25a0065c8c969f39d17b87ebc39822d9e1781fe33e6 Description: sends desktop notifications to a notification daemon (Development files) Description-md5: 9fed5d3edf50824cfc6d54e102ff155f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnotify-doc Priority: optional Section: utils Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libnotify Version: 0.7.6-1ubuntu3 Suggests: devhelp Filename: pool/main/libn/libnotify/libnotify-doc_0.7.6-1ubuntu3_all.deb Size: 19482 MD5sum: bffc2cf7e79eea12750802cfb67c4702 SHA1: 21926c2d8061ee5cbc65c8fca85e8b52dcdc4990 SHA256: 8c522ec95151756b4d9d2d2e4c34e228c95b3b33a3862769a2c8de1f85985852 Description: sends desktop notifications to a notification daemon (Documentation) Description-md5: 1ee3ad28079ed1fe5e17b0a918b7fe05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnotify4 Priority: optional Section: libs Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libnotify Version: 0.7.6-1ubuntu3 Depends: libc6 (>= 2.7), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Recommends: notification-daemon Filename: pool/main/libn/libnotify/libnotify4_0.7.6-1ubuntu3_i386.deb Size: 16396 MD5sum: 477df552d877527db5b44d1b1a2a265c SHA1: edebdd52823ac0c8ef5cc8b0673f662333afdc03 SHA256: c25583c84d52526d3b929ce3658e0ee5665ae2ebfc326e76d72586b4698abfd8 Description: sends desktop notifications to a notification daemon Multi-Arch: same Description-md5: 2bdd88c4ab7ca8b05f288531dbf75e24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnspr4 Priority: optional Section: libs Installed-Size: 343 Maintainer: Ubuntu Mozilla Team Original-Maintainer: Maintainers of Mozilla-related packages Architecture: i386 Source: nspr Version: 2:4.10.2-1ubuntu1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Conflicts: evolution-documentation-cs, evolution-documentation-de, evolution-documentation-el, evolution-documentation-en, evolution-documentation-es, evolution-documentation-fr, evolution-documentation-mk, evolution-documentation-oc, evolution-documentation-ru, evolution-documentation-sv, language-support-translations-cs, language-support-translations-de, language-support-translations-el, language-support-translations-en, language-support-translations-es, language-support-translations-fr, language-support-translations-mk, language-support-translations-oc, language-support-translations-ru, language-support-translations-sv, libnspr4-0d (<< 2:4.9-2~) Breaks: evolution-plugins (<< 3.2.0-0ubuntu2) Filename: pool/main/n/nspr/libnspr4_4.10.2-1ubuntu1_i386.deb Size: 110662 MD5sum: 36cfc2679640a8b521a6b54c358ef375 SHA1: a23a948b573cb3d675c5dc7589f6cd6f6a80ba2a SHA256: bb6426ddf867c13b1f7da3ce2ab3a5abdb154e79e27b6686937be6485c589c3f Description: NetScape Portable Runtime Library Multi-Arch: same Homepage: http://www.mozilla.org/projects/nspr/ Description-md5: 3e33845d0ce10a75ffbe5d271b638f2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnspr4-dbg Priority: extra Section: debug Installed-Size: 716 Maintainer: Ubuntu Mozilla Team Original-Maintainer: Maintainers of Mozilla-related packages Architecture: i386 Source: nspr Version: 2:4.10.2-1ubuntu1 Provides: libnspr4-0d-dbg Depends: libnspr4 (= 2:4.10.2-1ubuntu1) Filename: pool/main/n/nspr/libnspr4-dbg_4.10.2-1ubuntu1_i386.deb Size: 221286 MD5sum: 3b223177229d24bb3750f160323d58de SHA1: 08018a601b52cd29a5acd782cb14dcb21fef1aab SHA256: 312e76ce0e47a87584dcc913c6cab608bca3e5b73655066cd6e5790bbaae147c Description: Debugging symbols for the NetScape Portable Runtime library Multi-Arch: same Homepage: http://www.mozilla.org/projects/nspr/ Description-md5: f3cce748eb88ceeb1d878f7c8168ac85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnspr4-dev Priority: optional Section: libdevel Installed-Size: 1105 Maintainer: Ubuntu Mozilla Team Original-Maintainer: Maintainers of Mozilla-related packages Architecture: i386 Source: nspr Version: 2:4.10.2-1ubuntu1 Depends: libnspr4 (>= 2:4.10.2), libnspr4 (<= 2:4.10.2-1ubuntu1.1~) Filename: pool/main/n/nspr/libnspr4-dev_4.10.2-1ubuntu1_i386.deb Size: 211152 MD5sum: 18f8978eb64582d36828ba0c730da88e SHA1: f0762b3329ca526e1b95aaf009f7f88aed38b1d2 SHA256: 08d1d7340470a866921d6b88abdc63740686c63f40e627eb672fd688c69a4a0c Description: Development files for the NetScape Portable Runtime library Homepage: http://www.mozilla.org/projects/nspr/ Description-md5: 5fb64e5ffcd6242fc78f56e991c9d6df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnss-db Priority: optional Section: admin Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Version: 2.2.3pre1-5build3 Depends: make, libc6 (>> 2.19), libc6 (<< 2.20), libdb5.3, libselinux1 (>= 1.32) Filename: pool/main/libn/libnss-db/libnss-db_2.2.3pre1-5build3_i386.deb Size: 19706 MD5sum: 1d6f5a880e497aeef89e5765f27002ac SHA1: e843bcd564c19f4bd10ea4f0181a5e820c965ee6 SHA256: 043cd42a6878e7e190ece7d5bdbe5a32376fc76921efb9351e41c18f7a85fc2c Description: NSS module for using Berkeley Databases as a naming service Homepage: http://www.gnu.org/software/libc/ Description-md5: 86085c093ffb06245b4f694a84b2427a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnss-ldap Priority: extra Section: net Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Richard A Nelson (Rick) Architecture: i386 Version: 264-2.2ubuntu4 Depends: libc6 (>= 2.4), libgssapi-krb5-2 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7) Pre-Depends: multiarch-support Recommends: libpam-ldap, ldap-auth-config Suggests: nscd Filename: pool/main/libn/libnss-ldap/libnss-ldap_264-2.2ubuntu4_i386.deb Size: 65380 MD5sum: 270545dd5704068e38b55bba0e96562a SHA1: 1bac5cefe090fcdba19802814c4ce82cfe8642f9 SHA256: 1012ae0e653cbb4c39119ebd35ddd26bca5cd85d74114f275af14b6b9737c0b1 Description: NSS module for using LDAP as a naming service Multi-Arch: same Description-md5: 56ed54cdb5c4e9e7589f38a95f594518 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libnss-mdns Priority: optional Section: admin Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: nss-mdns Version: 0.10-6 Replaces: lib32nss-mdns (<< 0.10-6) Depends: libc6 (>= 2.4), base-files (>= 3.1.10), avahi-daemon (>= 0.6.16-1) Pre-Depends: multiarch-support Suggests: avahi-autoipd | zeroconf Breaks: lib32nss-mdns (<< 0.10-6) Filename: pool/main/n/nss-mdns/libnss-mdns_0.10-6_i386.deb Size: 21454 MD5sum: 38a3b5c9a50c5b1efa5f74bb21710f51 SHA1: 0cf69f2d9fbcd0357f8fc764b8ba23981e5236b0 SHA256: 2f3dc8786636a2d25162f69b1528b344bd4ad29c9ae93d3828929f287da01e49 Description: NSS module for Multicast DNS name resolution Multi-Arch: same Description-md5: 444ce9bf0bb23eb51ed79b00c0d6d796 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnss-mdns-i386 Priority: extra Section: oldlibs Installed-Size: 30 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: nss-mdns Version: 0.10-6 Depends: libnss-mdns (= 0.10-6) Filename: pool/main/n/nss-mdns/libnss-mdns-i386_0.10-6_i386.deb Size: 1692 MD5sum: 49b4970d0980ffd0d247dc4495951aa1 SHA1: 60a6f77fd3e7264ae8b2b5458cb36019583179a5 SHA256: 02dec11630b7378385706ed22e86926f7e5bd01552ea3cdbf22f21c7e157b03e Description: NSS module for mDNS name resolution (i386 transitional package) Multi-Arch: foreign Description-md5: e92e7b55434d1fb295f2f0355e085af8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnss-sss Priority: extra Section: utils Installed-Size: 91 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.12) Pre-Depends: multiarch-support Recommends: sssd Filename: pool/main/s/sssd/libnss-sss_1.11.5-1ubuntu3_i386.deb Size: 17944 MD5sum: d971fe4a845d01bee78520b0880aeb34 SHA1: d7067250315b002e24381b65ef2c800dcc2105a5 SHA256: c5cbc7e957c6465ee163d967550477598f2199ee1848168d7cc8ca065f62e876 Description: Nss library for the System Security Services Daemon Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 74bc44873ed990a3f08b6c810bd12c1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnss3 Priority: optional Section: libs Installed-Size: 3328 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: i386 Source: nss Version: 2:3.15.4-1ubuntu7 Depends: libc6 (>= 2.4), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 4.8.6), libsqlite3-0 (>= 3.5.9), zlib1g (>= 1:1.1.4), libnss3-nssdb Pre-Depends: multiarch-support Conflicts: libnss3-1d (<< 2:3.13.4-2) Filename: pool/main/n/nss/libnss3_3.15.4-1ubuntu7_i386.deb Size: 1046104 MD5sum: 16d2873f60cf8cc020597a05b03c05e8 SHA1: 040f824269737e79c4ac870568d7d79ad82a5b61 SHA256: 269b492e4a3de0289a402c5404664dad5418b5d1d703f7ec9abcc83386da9d07 Description: Network Security Service libraries Multi-Arch: same Homepage: http://www.mozilla.org/projects/security/pki/nss/ Description-md5: 8cae15b3c3c4e609abb7935ebf0d0f66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnss3-1d Priority: optional Section: libs Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: i386 Source: nss Version: 2:3.15.4-1ubuntu7 Depends: libnss3 (= 2:3.15.4-1ubuntu7) Filename: pool/main/n/nss/libnss3-1d_3.15.4-1ubuntu7_i386.deb Size: 9300 MD5sum: b82d7a8ddf9e6ce20590f1570862c796 SHA1: da25a7541302bd18f498591d234f17e41a4b73e7 SHA256: bb56a584fdd010880dab91d9e63de0304f741015d3173f133ff75e275bf85ef6 Description: Network Security Service libraries - transitional package Multi-Arch: same Homepage: http://www.mozilla.org/projects/security/pki/nss/ Description-md5: 063a04be3daa0aee83eb91fb2acc878e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-live, edubuntu-usb, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libnss3-dbg Priority: extra Section: debug Installed-Size: 8752 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: i386 Source: nss Version: 2:3.15.4-1ubuntu7 Provides: libnss3-1d-dbg Depends: libnss3 (= 2:3.15.4-1ubuntu7) | libnss3-tools (= 2:3.15.4-1ubuntu7) Conflicts: libnss3 (>> 2:3.15.4-1ubuntu7), libnss3 (<< 2:3.15.4-1ubuntu7), libnss3-tools (>> 2:3.15.4-1ubuntu7), libnss3-tools (<< 2:3.15.4-1ubuntu7) Filename: pool/main/n/nss/libnss3-dbg_3.15.4-1ubuntu7_i386.deb Size: 7377848 MD5sum: 48d1b3a1503635bd5f5a656f855889c9 SHA1: e2badec28adeeba79b1354cc9ac6ae93b05a4dd3 SHA256: 2bc4b98e43a7b833925c308805b4b7f041b60521a16f388b57bfce428155a5dc Description: Debugging symbols for the Network Security Service libraries Multi-Arch: same Homepage: http://www.mozilla.org/projects/security/pki/nss/ Description-md5: 2a6641a78d510ea21132933409ef387f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnss3-dev Priority: optional Section: libdevel Installed-Size: 1183 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: i386 Source: nss Version: 2:3.15.4-1ubuntu7 Depends: libnss3 (= 2:3.15.4-1ubuntu7), libnspr4-dev (>= 4.6.6-1) Filename: pool/main/n/nss/libnss3-dev_3.15.4-1ubuntu7_i386.deb Size: 210650 MD5sum: a2096589887b71c1547e128b7e3b8413 SHA1: cc70bcf603cfef1371cc123523ef3ece5210d2a0 SHA256: 66da8bed0feda51edc11f9962b85e9be0a6b3410a5a88cc4e0fda80dee69130e Description: Development files for the Network Security Service libraries Multi-Arch: same Homepage: http://www.mozilla.org/projects/security/pki/nss/ Description-md5: 04c0a8f989d299406710231d2a99043d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnss3-nssdb Priority: optional Section: admin Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: all Source: nss Version: 2:3.15.4-1ubuntu7 Depends: libnss3 (= 2:3.15.4-1ubuntu7) Filename: pool/main/n/nss/libnss3-nssdb_3.15.4-1ubuntu7_all.deb Size: 10576 MD5sum: 4347ea119adc15165237ccbaa7463160 SHA1: bd19103d647b00c88bf0202f405df2a77c54d5a4 SHA256: 1f2b619e59cc0f88f7c0427a5e54713539553dfe37590e895021961d7df7acc2 Description: Network Security Security libraries - shared databases Multi-Arch: foreign Homepage: http://www.mozilla.org/projects/security/pki/nss/ Description-md5: 609709585136b6a2edddf2dfd3382bfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libnss3-tools Priority: optional Section: admin Installed-Size: 3828 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Mozilla-related packages Architecture: i386 Source: nss Version: 2:3.15.4-1ubuntu7 Depends: libc6 (>= 2.4), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 4.7.0~1.9b1), libnss3 (>= 2:3.15.4), zlib1g (>= 1:1.1.4) Filename: pool/main/n/nss/libnss3-tools_3.15.4-1ubuntu7_i386.deb Size: 737596 MD5sum: a4900f4a9a2d7801c9424cb6f698bae6 SHA1: 3a523479bbf9644df8af9d86b22163375597fba7 SHA256: 8124a7dd4fc44bc8a852709470c800421ca9b4959e85248f6e0943b3a7f87bb8 Description: Network Security Service tools Homepage: http://www.mozilla.org/projects/security/pki/nss/tools/ Description-md5: 33cc2c7795e9ef6579f85eabb1dbee18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libntdb-dev Priority: optional Section: libdevel Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: ntdb Version: 1.0-2ubuntu1 Depends: libc6-dev, libntdb1 (= 1.0-2ubuntu1) Suggests: libtalloc-dev Filename: pool/main/n/ntdb/libntdb-dev_1.0-2ubuntu1_i386.deb Size: 157938 MD5sum: 64f8bc1cb268906cf8e1b64016f854ca SHA1: dd12602ad4d770a12361de31ed5dfa946077a75c SHA256: 660fae81d0db194dfbfc3723e28e3d32901a5bfeb0af1fbe2a87a963746ffab2 Description: New Trivial Database - development files Homepage: http://tdb.samba.org/ Description-md5: 776825cf4bee91643442cfc390b10971 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libntdb1 Priority: optional Section: libs Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: ntdb Version: 1.0-2ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/n/ntdb/libntdb1_1.0-2ubuntu1_i386.deb Size: 45906 MD5sum: 7bdd2c9f20c2b15aae63186d1b5cf03f SHA1: 93ae6cef2aec56dddcf79963b03ff9b644aa3258 SHA256: 65c96c981918fed7ec3fceff89f1593c3962b0b897039d57e4115acd415f0341 Description: New Trivial Database - shared library Multi-Arch: same Homepage: http://tdb.samba.org/ Description-md5: cfab295ffcc361dbad6c599dc433ab65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libntdb1-dbg Priority: extra Section: debug Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: ntdb Version: 1.0-2ubuntu1 Depends: libntdb1 (= 1.0-2ubuntu1) Recommends: libc6-dbg Filename: pool/main/n/ntdb/libntdb1-dbg_1.0-2ubuntu1_i386.deb Size: 104388 MD5sum: 9d210aab8ca86fef254b49ac80626b16 SHA1: c375eddfab16ef3cffc86ecde8f9c4d5b013cfd9 SHA256: fb3158e91270d4317ec39b8d263ffb799493b3386e2c022660318fc2c6d4f847 Description: New Trivial Database - debug symbols Homepage: http://tdb.samba.org/ Description-md5: 6ffff3c22a0e2ed95d9a6a3d70d87aa4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnuma-dbg Priority: extra Section: libdevel Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Ian Wienand Architecture: i386 Source: numactl Version: 2.0.9~rc5-1ubuntu2 Depends: libnuma1 (= 2.0.9~rc5-1ubuntu2), libc6-dev | libc-dev Filename: pool/main/n/numactl/libnuma-dbg_2.0.9~rc5-1ubuntu2_i386.deb Size: 93098 MD5sum: 2cd2896bf780f0fcb6e09e8f6f1253ad SHA1: 5d95a65354acdc452d9bb763f9444bcaee827efe SHA256: 849934a2fbc1a82cb412c0f4f041ddcb05738b0fce9d622ba0793976865a715b Description: Debug package for libnuma Multi-Arch: same Description-md5: b7a95253164c4764952d228f11e12b09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnuma-dev Priority: extra Section: libdevel Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Ian Wienand Architecture: i386 Source: numactl Version: 2.0.9~rc5-1ubuntu2 Depends: libnuma1 (= 2.0.9~rc5-1ubuntu2), libc6-dev | libc-dev Filename: pool/main/n/numactl/libnuma-dev_2.0.9~rc5-1ubuntu2_i386.deb Size: 31924 MD5sum: a75321854f2dc4c4c5f6fdbf6b85d031 SHA1: ece3cd76bb4c4fd85efe4b3617e530fbae33e44e SHA256: 694a7fe15c634fed7d73a26e9f5b6419cdcd71a2b269c41dc80bd13d8c72c306 Description: Development files for libnuma Multi-Arch: same Description-md5: f056555bfd4514d095e0caeb41abda90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnuma1 Priority: standard Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Ian Wienand Architecture: i386 Source: numactl Version: 2.0.9~rc5-1ubuntu2 Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Filename: pool/main/n/numactl/libnuma1_2.0.9~rc5-1ubuntu2_i386.deb Size: 20390 MD5sum: 193f4e262045ea2c8bd62012fc4a7894 SHA1: 7cb78a5b2499e72a98f57a57d5c60f03b44c17c9 SHA256: b58ff5c7206d19162196be0780a849ca1c910fb572c30b1d146785df3a167b99 Description: Libraries for controlling NUMA policy Multi-Arch: same Description-md5: 1c8f1cdf694caf8232aca544dd8b33ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: libnumber-compare-perl Priority: optional Section: perl Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.03-1 Depends: perl Filename: pool/main/libn/libnumber-compare-perl/libnumber-compare-perl_0.03-1_all.deb Size: 7318 MD5sum: 6d3432b2a41048cac5ea858d8be6dc47 SHA1: 6e48985092513297911c2f81178d06a9480510d7 SHA256: 2d6e54cee6c44e323eb3b4506643823b623de9c0343faa2bd9dd570644fe852a Description: module for performing numeric comparisons in Perl Homepage: http://search.cpan.org/dist/Number-Compare/ Description-md5: 1c3a46d132bbd84a9e833518d0342a3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnunit-cil-dev Priority: optional Section: devel Installed-Size: 37 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: nunit Version: 2.6.0.12051+dfsg-2 Replaces: libnunit-cil, libnunit2.2.6-cil, libnunit2.4-cil (<< 2.4.7+dfsg-5) Depends: libnunit2.6-cil (= 2.6.0.12051+dfsg-2) Filename: pool/main/n/nunit/libnunit-cil-dev_2.6.0.12051+dfsg-2_all.deb Size: 2074 MD5sum: e677368a27e64a22ba125b3acfd63c00 SHA1: f3622c705f2babd6449418632fc1a9da7b626ab3 SHA256: b314ac1e8cb08f34ad204b09133c605d79bf882fdd589aaf586a7277f11be65e Description: Unit test framework for CLI - Development files Homepage: http://www.nunit.org/ Description-md5: 8b713607a92635a15dbddc2daa19d485 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnunit-doc Priority: optional Section: devel Installed-Size: 2876 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: nunit Version: 2.6.0.12051+dfsg-2 Filename: pool/main/n/nunit/libnunit-doc_2.6.0.12051+dfsg-2_all.deb Size: 1743278 MD5sum: 4a3faf6b69ffe66bcd2e12d963258b2a SHA1: f3757412ce9b60ff33cccf8e6f965cb9cf9c2afe SHA256: 931eebb6159c0747d1ae4bbdac6c6a6d6997b1fd486890f440314333e9eaf367 Description: Unit test framework for CLI - Documentation Homepage: http://www.nunit.org/ Description-md5: fdf7244a91a49443b8b0613153c38fe2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnunit2.6-cil Priority: optional Section: cli-mono Installed-Size: 484 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: nunit Version: 2.6.0.12051+dfsg-2 Replaces: libnunit-cil, libnunit2.2.6-cil, libnunit2.4-cil Depends: cli-common (>= 0.5.1), libmono-corlib4.0-cil (>= 2.10.1), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-drawing4.0-cil (>= 1.0), libmono-system-runtime4.0-cil (>= 2.10.1), libmono-system-xml4.0-cil (>= 1.0), libmono-system4.0-cil (>= 2.10.7) Suggests: libnunit-doc, monodoc-nunit-manual Filename: pool/main/n/nunit/libnunit2.6-cil_2.6.0.12051+dfsg-2_all.deb Size: 178570 MD5sum: 422cde7c33ef3c6dc7643cf5dcc9b567 SHA1: 3bdb5b1894bb1b63afddaea96df78440929388d4 SHA256: ce30b4587f19de91046337701f374081754efd9d456aef6e443036e3010dc8d7 Description: Unit test framework for CLI - Assemblies Homepage: http://www.nunit.org/ Description-md5: da947574c0ea8c042f18f34435d108d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libnux-4.0-0 Priority: optional Section: libs Installed-Size: 2759 Maintainer: Didier Roche Architecture: i386 Source: nux Version: 4.0.6+14.04.20140409-0ubuntu1 Provides: libnux-abiversion-20140307.0 Depends: libnux-4.0-common (= 4.0.6+14.04.20140409-0ubuntu1), libc6 (>= 2.9), libcairo2 (>= 1.9.14), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgeis1 (>= 2.2.10), libgl1-mesa-glx | libgl1, libglew1.10 (>= 1.10.0), libglewmx1.10 (>= 1.10.0), libglib2.0-0 (>= 2.31.8), libglu1-mesa | libglu1, libibus-1.0-5 (>= 1.5.1), libpango-1.0-0 (>= 1.20.0), libpangocairo-1.0-0 (>= 1.14.0), libpcre3, libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.6), libx11-6, libxext6, libxinerama1, libxxf86vm1 Pre-Depends: multiarch-support Filename: pool/main/n/nux/libnux-4.0-0_4.0.6+14.04.20140409-0ubuntu1_i386.deb Size: 698306 MD5sum: ded2d83d613eab79a3eeaf754e137fa7 SHA1: 1a250591b852dc6a28babf29458447239bd90246 SHA256: 6c3006c0bd1003722313892068bb2c147a0219994b0d520076532a0668134896 Description: Visual rendering toolkit for real-time applications - shared lib Homepage: http://launchpad.net/nux Description-md5: 90d396a1d9bee5777dd30987b07c2d73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libnux-4.0-common Priority: optional Section: libs Installed-Size: 713 Maintainer: Didier Roche Architecture: i386 Source: nux Version: 4.0.6+14.04.20140409-0ubuntu1 Filename: pool/main/n/nux/libnux-4.0-common_4.0.6+14.04.20140409-0ubuntu1_i386.deb Size: 46100 MD5sum: 8b0f840569b5ac4b23e1a10647d85463 SHA1: 7103c780389b85c5d48e6091abf71557c4e52519 SHA256: 5e61a4c1c006d47822c8b6db234f26168d77151053f46d848ce85c70eb929542 Description: Visual rendering toolkit for real-time applications - common files Multi-Arch: foreign Homepage: http://launchpad.net/nux Description-md5: 4c25406b214daa0c0f7508e217b5c92b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libnux-4.0-dev Priority: optional Section: libdevel Installed-Size: 1755 Maintainer: Didier Roche Architecture: i386 Source: nux Version: 4.0.6+14.04.20140409-0ubuntu1 Depends: libnux-4.0-0 (= 4.0.6+14.04.20140409-0ubuntu1), libglib2.0-dev (>= 2.25.14), libgdk-pixbuf2.0-dev, libboost-dev, libcairo2-dev (>= 1.9.14), libpng12-dev (>= 1.2.44), libglew-dev, libglewmx-dev, libgl1-mesa-dev, libglu1-mesa-dev, libgeis-dev (>= 2.2.10), libsigc++-2.0-dev, libpcre3-dev, libx11-dev, libxext-dev, libxinerama-dev, libxxf86vm-dev Filename: pool/main/n/nux/libnux-4.0-dev_4.0.6+14.04.20140409-0ubuntu1_i386.deb Size: 222446 MD5sum: cba6a277111ed7b4cd7e15788684c760 SHA1: e198e4949ce71e211e39628abca0dd9a7dd95921 SHA256: ee8f860338553fc2e8b9198478d6fbe2c0aaeecc138b52391704501120335f2e Description: Visual rendering toolkit for real-time applications - dev files Homepage: http://launchpad.net/nux Description-md5: cb19142683fff19dae7d5f404499bcd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liboauth-dev Priority: optional Section: libdevel Installed-Size: 127 Maintainer: Bilal Akhtar Architecture: i386 Source: liboauth Version: 1.0.1-1 Depends: liboauth0 (= 1.0.1-1), libcurl4-gnutls-dev | libcurl4-dev, libnss3-dev Filename: pool/main/libo/liboauth/liboauth-dev_1.0.1-1_i386.deb Size: 33056 MD5sum: 1a287f21e448d363f7aca00de8a46743 SHA1: 1112059b650bfefbff41f1e3ed017778fb4a9f71 SHA256: 3d9ad39680f3e66ce43d8b92ef1c861b0281b8ca1c580b23f6b94b7a9c1b4e9a Description: C library for implementing OAuth 1.0 (development files) Homepage: http://liboauth.sourceforge.net/ Description-md5: 2bbd458acc8a7d9a1f7cb11ed89a7ef9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liboauth0 Priority: optional Section: libs Installed-Size: 67 Maintainer: Bilal Akhtar Architecture: i386 Source: liboauth Version: 1.0.1-1 Depends: libc6 (>= 2.4), libcurl3-gnutls (>= 7.16.2), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1) Pre-Depends: multiarch-support Filename: pool/main/libo/liboauth/liboauth0_1.0.1-1_i386.deb Size: 17276 MD5sum: ca04b2ccd1c1ed33431d95a8dcee58a9 SHA1: 75c26eeffbc613bec16317928c811bbd32c8c04a SHA256: 27151519d2b1ce97e9bfdfa3173cfe5bcbd30ce588d7054b076de9f5584b5d40 Description: C library for implementing OAuth 1.0 Multi-Arch: same Homepage: http://liboauth.sourceforge.net/ Description-md5: 9ba502181f630a009d02926f250960f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libobjc-4.7-dev Priority: optional Section: libdevel Installed-Size: 1728 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gobjc-4.7 (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libgcc-4.7-dev (= 4.7.3-12ubuntu1), libobjc4 (>= 4.7.3-12ubuntu1) Filename: pool/main/g/gcc-4.7/libobjc-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 354264 MD5sum: 5d029f9ce4e868a712b0b4499a2be298 SHA1: 100d1d4420d351e3a3153d90ffd0e6055f15ba0f SHA256: 8100a5bf6d451450080e3d46cabff717a07553e3addef9a55e2357df0eb429ae Description: Runtime library for GNU Objective-C applications (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 7ff3333ac4ef3f78ec469fae5e05bf5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libobjc-4.8-dev Priority: optional Section: libdevel Installed-Size: 1931 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcc-4.8-dev (= 4.8.2-19ubuntu1), libobjc4 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libobjc-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 360642 MD5sum: dbaef03a80e4a48e3207b9c86797dd2e SHA1: a4bfa99b15294826f98c3359244127f955449d99 SHA256: 9e665eb469a85496aa6777558535e671060c3ad493961c6d1f03fd2f1f6c372f Description: Runtime library for GNU Objective-C applications (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 7ff3333ac4ef3f78ec469fae5e05bf5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libobjc4 Priority: optional Section: libs Installed-Size: 414 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.11), libgcc1 (>= 1:4.1.1) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libobjc4_4.8.2-19ubuntu1_i386.deb Size: 108624 MD5sum: 446bfdfccedad752730a5219bda83a10 SHA1: 2f4325ceecacec6ab23d0ae0201ccbf5cb934667 SHA256: c721c02bcef64db174ed2d203efa35cd7c0edaf7bc599afa7d4a42ae87ecc224 Description: Runtime library for GNU Objective-C applications Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 30a0a695b3f5d643272b0bb547f0578c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libobjc4-dbg Priority: extra Section: debug Installed-Size: 808 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libobjc4 (= 4.8.2-19ubuntu1), libgcc1-dbg (>= 1:4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libobjc4-dbg_4.8.2-19ubuntu1_i386.deb Size: 204786 MD5sum: 38c11ff0183587aa29dec01bc7ca9cb6 SHA1: 8039cd363c056331483e1c360ef67d235d0b2cc5 SHA256: 6efddd3df6c1ea4b5a7f6231842d4e7609dda877d1813166e40ff96f15ca0785 Description: Runtime library for GNU Objective-C applications (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: b444a22ecf71ec41ec6388bbebb0e347 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libodbc1 Priority: optional Section: libs Installed-Size: 615 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: unixodbc Version: 2.2.14p2-5ubuntu5 Replaces: unixodbc (<< 2.2.14p2-3) Depends: libc6 (>= 2.7), libltdl7 (>= 2.4.2) Pre-Depends: multiarch-support Suggests: libmyodbc, odbc-postgresql, tdsodbc, unixodbc-bin Breaks: unixodbc (<< 2.2.14p2-3) Filename: pool/main/u/unixodbc/libodbc1_2.2.14p2-5ubuntu5_i386.deb Size: 172372 MD5sum: 987c84f387b35b2912493c53f50acbb3 SHA1: 0929527ef59e34cff0855daf1be8a8c8472f9a70 SHA256: 83de0bba4597fc9c17a5d13fe8cc27c2f8ca3ee76c825fa1fffc88b422a1a24b Description: ODBC library for Unix Multi-Arch: same Homepage: http://www.unixodbc.org/ Description-md5: 6dfec09e9b2b93be03da7503d10a1a4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-audio Package: libogg-dbg Priority: extra Section: debug Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: i386 Source: libogg Version: 1.3.1-1ubuntu1 Depends: libogg0 (= 1.3.1-1ubuntu1) Filename: pool/main/libo/libogg/libogg-dbg_1.3.1-1ubuntu1_i386.deb Size: 17800 MD5sum: 35fe4ff4d433eb8fcb056303026ff884 SHA1: b859fcc2009d4985969d8912a19a9a5ac86f9041 SHA256: de787dccc5cdc1da18479e1755909b2cdd8a727a8d5d9caaa3bb366c7e31ed82 Description: debugging symbols for libogg Multi-Arch: same Homepage: http://xiph.org/ogg/ Description-md5: c4ea2c4a14f35acdf8a6687df25bab39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libogg-dev Priority: optional Section: libdevel Installed-Size: 452 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: i386 Source: libogg Version: 1.3.1-1ubuntu1 Depends: libogg0 (= 1.3.1-1ubuntu1) Filename: pool/main/libo/libogg/libogg-dev_1.3.1-1ubuntu1_i386.deb Size: 154506 MD5sum: b3dfa49b1eea6343f642b55560e5bc61 SHA1: 7215e7aa54613204094a3c91298e4393bd0e86c3 SHA256: d8e0de1f9a52079a818a325dc5efeb78d8fb8090c8a7cf9905d73ca71698add7 Description: Ogg bitstream library development files Multi-Arch: same Homepage: http://xiph.org/ogg/ Description-md5: 0d0181672e2c3b8856aac1ff26063c44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libogg0 Priority: optional Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: i386 Source: libogg Version: 1.3.1-1ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libo/libogg/libogg0_1.3.1-1ubuntu1_i386.deb Size: 16070 MD5sum: 455eb44707d5f0d4f47a78a29ca6746f SHA1: 404662d95835ba534597864de49e9f550809e6e3 SHA256: 2c9de4d22e82a94b6718382024e4db547291781509c5d510bd5198c200942e60 Description: Ogg bitstream library Multi-Arch: same Homepage: http://xiph.org/ogg/ Description-md5: a71d36f8dd4fb5e3d1b8a32e6c18cf05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libopencc-dbg Priority: extra Section: debug Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: opencc Version: 0.4.3-2build1 Depends: libopencc1 (= 0.4.3-2build1) Filename: pool/main/o/opencc/libopencc-dbg_0.4.3-2build1_i386.deb Size: 29372 MD5sum: e67b572c67b7417596a414094d9c6a80 SHA1: 9598c397c7b41aee263deac8abc614423037c227 SHA256: d149d9c0b022b600e178d4eb9c931ed7f323ef264ac2bf38892a39db2e2bba36 Description: simplified-traditional chinese conversion library - debug Multi-Arch: same Homepage: http://code.google.com/p/opencc Description-md5: c0b3905e0ce8489b54e92098ed8a75be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopencc-dev Priority: optional Section: libdevel Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: opencc Version: 0.4.3-2build1 Depends: libopencc1 (= 0.4.3-2build1) Filename: pool/main/o/opencc/libopencc-dev_0.4.3-2build1_i386.deb Size: 18402 MD5sum: e1b57471b86ca9344e31aa6d53671a04 SHA1: 0e97caa7db18757e262f05afb0cdb36d3305629a SHA256: 3d265579900afe9797810d1e7dc5d808153779cd1177a56070aa29dc636a6057 Description: simplified-traditional chinese conversion library - development Multi-Arch: same Homepage: http://code.google.com/p/opencc Description-md5: 9690061c9838e6b1c366e5c2410cd674 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopencc1 Priority: optional Section: libs Installed-Size: 8832 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: opencc Version: 0.4.3-2build1 Replaces: libopencc0 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Conflicts: libopencc0 Filename: pool/main/o/opencc/libopencc1_0.4.3-2build1_i386.deb Size: 617334 MD5sum: b8665ccd61f1fb297741576f5d5aa3dc SHA1: 386577a69e27b0f51d35b9322a3332a37e4a7547 SHA256: e7bd24fee336830332f9bc131e0b9aaa43521c9ee2939b3e7abbe45fcdb6fa11 Description: simplified-traditional chinese conversion library - runtime Multi-Arch: same Homepage: http://code.google.com/p/opencc Description-md5: b063ae9a3504ce6f18feef3e84ede4f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libopencryptoki-dev Priority: optional Section: libdevel Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: opencryptoki Version: 2.3.1+dfsg-3ubuntu5 Depends: libopencryptoki0 (= 2.3.1+dfsg-3ubuntu5) Filename: pool/main/o/opencryptoki/libopencryptoki-dev_2.3.1+dfsg-3ubuntu5_i386.deb Size: 25784 MD5sum: 739a3f3c1f8ce1ea9f0b3f7195c082f6 SHA1: 9359cee33e8f644f5084ec2ceaab1b7eab591de6 SHA256: d91e3abbea91e22c3712ffeac5993334cc7cd6cb7b5f4ad2c5dc4e7399d81b0d Description: PKCS#11 implementation (development) Homepage: http://opencryptoki.sourceforge.net/ Description-md5: 5ccede4e52f23a23ec6f510afbb7738e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopencryptoki0 Priority: optional Section: libs Installed-Size: 725 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: opencryptoki Version: 2.3.1+dfsg-3ubuntu5 Depends: libc6 (>= 2.8), libssl1.0.0 (>= 1.0.0), libtspi1 (>= 0.3.1) Filename: pool/main/o/opencryptoki/libopencryptoki0_2.3.1+dfsg-3ubuntu5_i386.deb Size: 263210 MD5sum: 93473798a7695a141a4c8445baa1ac7a SHA1: cb6d5269619863d2521a88ec37e072a9d39cf050 SHA256: 694d7c3eb335d071e6875d3ee6163702279ab54c5c6bd99ed2de2cf4e5af9f5b Description: PKCS#11 implementation (library) Homepage: http://opencryptoki.sourceforge.net/ Description-md5: 8feafc6f1695544c5f562059012b0d01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenexr-dev Priority: optional Section: libdevel Installed-Size: 1633 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: i386 Source: openexr Version: 1.6.1-7ubuntu1 Depends: libopenexr6 (= 1.6.1-7ubuntu1), libilmbase-dev Filename: pool/main/o/openexr/libopenexr-dev_1.6.1-7ubuntu1_i386.deb Size: 229654 MD5sum: ac93ebf42882e6843923db294d2989b0 SHA1: 506a1ead2696a6af32c8d5281fb5e54b47ab92f2 SHA256: ebd098afb598693ba94b0c2a03f522560d8be33d6319221656c4185378e068c4 Description: development files for the OpenEXR image library Homepage: http://www.openexr.com Description-md5: 8e2ac9ae29f1c1eb2cc160c36be0dd18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenexr6 Priority: optional Section: libs Installed-Size: 748 Maintainer: Ubuntu Developers Original-Maintainer: Debian PhotoTools Maintainers Architecture: i386 Source: openexr Version: 1.6.1-7ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libilmbase6 (>= 1.0.1), libstdc++6 (>= 4.2.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/o/openexr/libopenexr6_1.6.1-7ubuntu1_i386.deb Size: 165686 MD5sum: f768669d9b2fd4da83355bfe4c34e278 SHA1: e8624486715a29185d1793cd7f47085fd7bb2de1 SHA256: 39ee51f9e6837a417457d19c9ae54af9203edd985d23f6c99fc03c2c513df3db Description: runtime files for the OpenEXR image library Multi-Arch: same Homepage: http://www.openexr.com Description-md5: fc6d21580bbce28c399667b4a248a460 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libopenhpi-dev Priority: optional Section: libdevel Installed-Size: 5217 Maintainer: Ubuntu Developers Original-Maintainer: Bryan Sutula Architecture: i386 Source: openhpi Version: 2.14.1-1.3ubuntu2 Depends: libopenhpi2 (= 2.14.1-1.3ubuntu2), libopenipmi0 (>= 2.0.7), openipmi (>= 2.0.7) Filename: pool/main/o/openhpi/libopenhpi-dev_2.14.1-1.3ubuntu2_i386.deb Size: 754442 MD5sum: 87db865aad8c68c908e44c80730a7773 SHA1: 92f614b89644cb0749615767a4f9fe01b4c636dc SHA256: d5de90a96e01b281ef6b0a5cd9f2045b248c48b2aefb936064e2eded5680deed Description: OpenHPI libraries (development files) Homepage: http://openhpi.org Description-md5: 375e5bb8c23075b2c97b42796c8b577c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenhpi2 Priority: optional Section: libs Installed-Size: 840 Maintainer: Ubuntu Developers Original-Maintainer: Bryan Sutula Architecture: i386 Source: openhpi Version: 2.14.1-1.3ubuntu2 Replaces: libopenhpi Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libssl1.0.0 (>= 1.0.0), libstdc++6 (>= 4.1.1), libuuid1 (>= 2.16) Recommends: openhpid (= 2.14.1-1.3ubuntu2) Conflicts: libopenhpi Filename: pool/main/o/openhpi/libopenhpi2_2.14.1-1.3ubuntu2_i386.deb Size: 156258 MD5sum: eb5f9ba6b4a91725ee243929dcc15fcb SHA1: 01aeeee9b2838b4535933a110854421c921c38a9 SHA256: f5894b237d026fefd5293846adfb30e5616cbd1f2f5b0bc6188b2949fed3f670 Description: OpenHPI libraries (runtime and support files) Homepage: http://openhpi.org Description-md5: 1da27024bde21d7fe1e9488d8c7d6e87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libopenipmi-dev Priority: optional Section: libdevel Installed-Size: 2508 Maintainer: Ubuntu Core Developers Original-Maintainer: Noèl Köthe Architecture: i386 Source: openipmi Version: 2.0.18-0ubuntu7 Depends: libopenipmi0 (= 2.0.18-0ubuntu7), libgdbm-dev Filename: pool/main/o/openipmi/libopenipmi-dev_2.0.18-0ubuntu7_i386.deb Size: 518814 MD5sum: c67cb25d0b39f287033d8512f11c4b1f SHA1: 1e4fec8dc3b6d6adf9d3563a163c90c231f724be SHA256: 57876776ab979cebfa11692beaa58913f6d8c3e7d08374fd7b7817bd743a6e6a Description: Intelligent Platform Management Interface - development Homepage: http://openipmi.sourceforge.net/ Description-md5: 21a89e65f5ef6a123d26a78577f68a86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenipmi0 Priority: optional Section: devel Installed-Size: 1583 Maintainer: Ubuntu Core Developers Original-Maintainer: Noèl Köthe Architecture: i386 Source: openipmi Version: 2.0.18-0ubuntu7 Depends: libc6 (>= 2.15) Filename: pool/main/o/openipmi/libopenipmi0_2.0.18-0ubuntu7_i386.deb Size: 426492 MD5sum: 07a87c0f2557f6a769873aa091f4c4f2 SHA1: 5768c4d0f62e7ccfc1d122e73fb1d3762c92f0f9 SHA256: f536f2b77548974ba712a34f2c16307fb7c6144947b06a380bc192fcb1b5d3ee Description: Intelligent Platform Management Interface - runtime Homepage: http://openipmi.sourceforge.net/ Description-md5: 88f1a1a59f14b572b981410392d3b8a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libopenobex1 Priority: optional Section: libs Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Hendrik Sattler Architecture: i386 Source: libopenobex Version: 1.5-2.1 Depends: libc6 (>= 2.15), libusb-0.1-4 (>= 2:0.1.12) Filename: pool/main/libo/libopenobex/libopenobex1_1.5-2.1_i386.deb Size: 23380 MD5sum: 35e28f4a8212473f7b8987a29b399ba8 SHA1: c5a3a1cf34b3d619fc2cc3e4a7134d28968b8ed1 SHA256: 81ba650845fa40f025e7babe3942834191e896a63eacc416593dfd2ee8fdcfbe Description: OBEX protocol library Homepage: http://www.openobex.org Description-md5: 729a552232c780f0321b79447d299d2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libopenobex1-dev Priority: extra Section: libdevel Installed-Size: 637 Maintainer: Ubuntu Developers Original-Maintainer: Hendrik Sattler Architecture: i386 Source: libopenobex Version: 1.5-2.1 Provides: libopenobex-dev Depends: libopenobex1 (= 1.5-2.1), libbluetooth-dev, libusb-dev (>= 2:0.1.11) Suggests: pkg-config Conflicts: libopenobex-dev Filename: pool/main/libo/libopenobex/libopenobex1-dev_1.5-2.1_i386.deb Size: 111642 MD5sum: 34c40c3ce9f6b886cdcd1a7fc6c729cc SHA1: 13a6159fd176fc911ff33c7c3ed4bdf0afb1d677 SHA256: 6439098d3f265075876377f7755465da75756d409d48096e71ae1f74d5120eaa Description: OBEX protocol library - development files Homepage: http://www.openobex.org Description-md5: 4d31e157f562dcd3c965f79792a8e0a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa Priority: optional Section: libs Installed-Size: 121 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libopenvg1 Provides: libopenvg1 Depends: libc6 (>= 2.3.6-6~) Pre-Depends: multiarch-support Conflicts: libopenvg1 Filename: pool/main/m/mesa/libopenvg1-mesa_10.1.0-4ubuntu5_i386.deb Size: 12992 MD5sum: 69b4e12af3798ee3b1c3025a2e60ed7d SHA1: ce693e2e33e59f8c351c644d5daf3e55d86a5d25 SHA256: 3603db7681c9cefd6129bb42d8c26f397b820324fd59044c97663a0560d8c7f5 Description: free implementation of the OpenVG API -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 23fad5a33ddc86c1ebd79b349b93c466 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libopenvg1-mesa-dbg Priority: extra Section: debug Installed-Size: 129 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libopenvg1-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libopenvg1-mesa-dbg_10.1.0-4ubuntu5_i386.deb Size: 15340 MD5sum: d3ddf60053a65efda8ffa0378c87cf50 SHA1: d8005f3671cc518167f0f18fc7181c842c7dc6eb SHA256: 062ae50b4c797335a9b91594c3d719fc1810bffd8436eadd7e58ad2eeb08ff81 Description: free implementation of the OpenVG API -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: e093793928f70f1daa03783f40a7298c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-dev Priority: optional Section: libdevel Installed-Size: 151 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libopenvg1-mesa (= 10.1.0-4ubuntu5), libegl1-mesa-dev Filename: pool/main/m/mesa/libopenvg1-mesa-dev_10.1.0-4ubuntu5_i386.deb Size: 11942 MD5sum: 99ae4a31435533b802f330ba65222ebc SHA1: 434ef4b98f5b84037e14e90141447339a0b538f5 SHA256: e9a2b1d8dc12812e5eb8bd4178b6e456b1197d177d4323d98f7c2bb30f5ce683 Description: free implementation of the OpenVG API -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 83d64f6fb398c328ebe1bcc729f426b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-dev-lts-quantal_5_i386.deb Size: 1554 MD5sum: 2209e27a3f2a8e90225e42bae856da23 SHA1: 51796f5a3d9b7e82b36efb1c4b427aeb16d3be90 SHA256: 93b5aeddf9f40011bcbc5b4fdb9919b3008cd7045bb48bb225ef6161346fb508 Description: Transitional package for libopenvg1-mesa-dev Multi-Arch: same Description-md5: e79b4de13a3ef933dbc903bc9103fab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-dev-lts-raring_5_i386.deb Size: 1550 MD5sum: 30a018bb89e46d4ac24f25df3aa63473 SHA1: a6360f837b11ec77b7574f441142f0a6bf7c3fb2 SHA256: 19a4c2ad2835608d4f2963f26b32c12bf504a0d25a9ecedadfe39a2a27caaa8d Description: Transitional package for libopenvg1-mesa-dev Multi-Arch: same Description-md5: e79b4de13a3ef933dbc903bc9103fab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dev Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-dev-lts-saucy_5_i386.deb Size: 1548 MD5sum: 3a8f8ea2168d567aa1a101d84f7c8621 SHA1: 5b7b49194313704973678903992656f451118329 SHA256: a7e222dff683e60ca50c7ac8f14d77eff5f52a98fe0ae0bbb3063bdb9a577093 Description: Transitional package for libopenvg1-mesa-dev Multi-Arch: same Description-md5: e79b4de13a3ef933dbc903bc9103fab7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-quantal_5_i386.deb Size: 1542 MD5sum: 7eb26986075ab1f35e6580ff18c37b82 SHA1: a2f72e75672071f262e0268ae3bf4e40e1f03dce SHA256: 91c27919fc3ffdda67f6f7c29902fd7e3de048003c7fa7ef45de591c75c29464 Description: Transitional package for libopenvg1-mesa Multi-Arch: same Description-md5: 61fd3bca38f9c57783b05e299bc4ce20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-quantal-dbg_5_i386.deb Size: 1554 MD5sum: 84114d0d7a6e82e5bf1d49b90576041c SHA1: 3f63d048193dc5fa3e95f1a79c73e64ed26de2c6 SHA256: a007ba3d18d375f5db667b71298bb170a282ab3793727d7fcb69e7b795def16c Description: Transitional package for libopenvg1-mesa-dbg Multi-Arch: same Description-md5: 16a1d0bd1d34106e1b676f4b378b87ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-raring_5_i386.deb Size: 1546 MD5sum: 1f3bcb7ed371b64f3bf90502a7459875 SHA1: 116361ca478ee4c75072cf17374e15f816d117b7 SHA256: db817891c8e7948301e37184ffb3baa8eaae5c161fc030273941b0cd4b25359e Description: Transitional package for libopenvg1-mesa Multi-Arch: same Description-md5: 61fd3bca38f9c57783b05e299bc4ce20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-raring-dbg_5_i386.deb Size: 1548 MD5sum: 5cda04620e2f9f9aaff8826f421c5933 SHA1: 21217899727053647bdccb80275cb1cabf50b6c0 SHA256: 8c35c106fd2403d50b9d200f099feb15ceda69ed1cdd9f57d977759cd2b5768e Description: Transitional package for libopenvg1-mesa-dbg Multi-Arch: same Description-md5: 16a1d0bd1d34106e1b676f4b378b87ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-saucy_5_i386.deb Size: 1540 MD5sum: b521958a9a3fcc68fa83c939eb186ce5 SHA1: 47eaa4edb0927006f31d2248a1b1ff8c6008479e SHA256: c5e477a4da12a15709fc546b31e3770584f2a4ea07171712cd1b1ccd7cac54d3 Description: Transitional package for libopenvg1-mesa Multi-Arch: same Description-md5: 61fd3bca38f9c57783b05e299bc4ce20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopenvg1-mesa-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libopenvg1-mesa-dbg Filename: pool/main/x/xorg-lts-transitional/libopenvg1-mesa-lts-saucy-dbg_5_i386.deb Size: 1548 MD5sum: a9fd343b145b91b97ccb6dbf3fc63bb0 SHA1: 3f9a7c519cb005cc688eec3504dd934bc6e411d8 SHA256: 49828e24c2cdac3d4eefc317134bc00673cba2edc76ecc5a44a2026eae9f6847 Description: Transitional package for libopenvg1-mesa-dbg Multi-Arch: same Description-md5: 16a1d0bd1d34106e1b676f4b378b87ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopts25 Priority: optional Section: libs Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Metzler Architecture: i386 Source: autogen Version: 1:5.18-2ubuntu2 Replaces: autogen Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/a/autogen/libopts25_5.18-2ubuntu2_i386.deb Size: 53860 MD5sum: ea5f0315a181315cb22a41711e96bf61 SHA1: e51e6aafd5ad8e026a8135ab58ff2305019fc29e SHA256: 3ee4872afa59371616ee49144139cb5c3cb85fb69dc462bd3b9e7e7fd890d659 Description: automated option processing library based on autogen Multi-Arch: same Homepage: http://www.gnu.org/software/autogen/ Description-md5: d48a8ad59e617622d38a7b59db3b01bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop Package: libopts25-dev Priority: optional Section: libdevel Installed-Size: 279 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Metzler Architecture: i386 Source: autogen Version: 1:5.18-2ubuntu2 Replaces: autogen, libopts9-dev Depends: libopts25 (= 1:5.18-2ubuntu2) Conflicts: libopts9-dev Filename: pool/main/a/autogen/libopts25-dev_5.18-2ubuntu2_i386.deb Size: 87792 MD5sum: e3d8c932f5109528e4b6e57bf1d03d00 SHA1: 997789cc3fd456563608220fee8cbc125390a5e7 SHA256: f62b74988c06e1f4bc78ec2060239ef02175fb0d216fa8b1255ce3ca1994f183 Description: automated option processing library based on autogen Homepage: http://www.gnu.org/software/autogen/ Description-md5: 2d896a368c6ce52025f25873536165ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopus-dbg Priority: extra Section: debug Installed-Size: 405 Maintainer: Scott Ritchie Original-Maintainer: Ron Lee Architecture: i386 Source: opus Version: 1.1-0ubuntu1 Depends: libopus0 (= 1.1-0ubuntu1) Filename: pool/main/o/opus/libopus-dbg_1.1-0ubuntu1_i386.deb Size: 346418 MD5sum: 49a4331c48bffe833759920830ce378b SHA1: 18e04bf9a6502201781a17c8f3545a902c43a5f1 SHA256: b6edc4392fbdfc1ff7a16e68151caa9327933dbcf942ee03dc3b3280b288cb37 Description: debugging symbols for libopus Homepage: http://www.opus-codec.org Description-md5: 91ab23bc2d5d216a36a080e03642e2c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopus-dev Priority: optional Section: libdevel Installed-Size: 598 Maintainer: Scott Ritchie Original-Maintainer: Ron Lee Architecture: i386 Source: opus Version: 1.1-0ubuntu1 Depends: libopus0 (= 1.1-0ubuntu1) Filename: pool/main/o/opus/libopus-dev_1.1-0ubuntu1_i386.deb Size: 175258 MD5sum: 794ab8b45213cae063434e612ec39a31 SHA1: 6d79b76cd530d123733c461dc86e0c306ec4bf15 SHA256: 9412cb2e58d38f2b89ff9a2f3ea43fedd8293f88bb2d1355be91396330c72efe Description: Opus codec library development files Homepage: http://www.opus-codec.org Description-md5: 3ab6e9f48e3d929fab46f16112007bbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopus-doc Priority: optional Section: doc Installed-Size: 1150 Maintainer: Scott Ritchie Original-Maintainer: Ron Lee Architecture: all Source: opus Version: 1.1-0ubuntu1 Filename: pool/main/o/opus/libopus-doc_1.1-0ubuntu1_all.deb Size: 115152 MD5sum: cf6af10e59b0df4e52885e972b3777d1 SHA1: e340d6872296a7118b15d5f9ff6e1ea9511bf0c2 SHA256: 56ee39e38c8b8b467e5f7f4d164a2a65322f3dafbf22e51c2fcebb3cee4e5756 Description: libopus API documentation Homepage: http://www.opus-codec.org Description-md5: e8454668869df187f002a25c8fcb9e59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libopus0 Priority: optional Section: libs Installed-Size: 316 Maintainer: Scott Ritchie Original-Maintainer: Ron Lee Architecture: i386 Source: opus Version: 1.1-0ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Suggests: opus-tools Filename: pool/main/o/opus/libopus0_1.1-0ubuntu1_i386.deb Size: 143332 MD5sum: d2529a6aeda7dff379c8359a3a104b2b SHA1: c69b6d027e4f723e85577c3482d4cc32e99cf4d7 SHA256: 419d51ff0bd751c29c74e35f8cdc7457b833b25df4f54153ebbe9abfd1481518 Description: Opus codec runtime library Homepage: http://www.opus-codec.org Description-md5: 1155b70f2f801c41248e2e9c555bc1df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active, kubuntu-active-full, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio Package: liborbit-2-0 Priority: optional Section: libs Installed-Size: 547 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: i386 Source: orbit2 Version: 1:2.14.19-0.3 Replaces: liborbit2 (<< 1:2.14.19-0.3) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.35.9) Pre-Depends: multiarch-support Breaks: liborbit2 (<< 1:2.14.19-0.3) Filename: pool/main/o/orbit2/liborbit-2-0_2.14.19-0.3_i386.deb Size: 131580 MD5sum: a102a21ab9f63f2c032d29c57030dd9c SHA1: 2e5b9c814a7791bb69dfbdc8012ec9312156afe0 SHA256: dd368595e65ee73ee4d69c78386e6e9857164c448635769b1d20db1f46f384dc Description: high-performance CORBA implementation - common libraries Multi-Arch: same Description-md5: 9a6fc5db86a0fb56fbbe6140c1539c33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: liborbit2 Priority: optional Section: libs Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: i386 Source: orbit2 Version: 1:2.14.19-0.3 Replaces: liborbit2-dev (<< 2.8.1-1) Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.16.0), libidl0, liborbit-2-0 (= 1:2.14.19-0.3) Pre-Depends: multiarch-support Conflicts: libbonobo-activation4 (<< 1:2.4.0), liblinc1 (<< 1.0.3-4), liborbit2-dev (<< 2.8.1-1) Filename: pool/main/o/orbit2/liborbit2_2.14.19-0.3_i386.deb Size: 14896 MD5sum: ac0e31dfc80980f24d37548b9ba631cf SHA1: 2d84eb7113bcfaab98c2de1226dad330ae3d552d SHA256: 69f702733815f5bba6e71ca797bad5eba6bb7a40603a56cf83db3ec929a43bae Description: high-performance CORBA implementation - extra libraries Multi-Arch: same Description-md5: 5f2520ef9826310d2c84dd8e57689759 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: liborbit2-dev Priority: optional Section: libdevel Installed-Size: 1969 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: i386 Source: orbit2 Version: 1:2.14.19-0.3 Depends: liborbit2 (= 1:2.14.19-0.3), libidl-dev (>= 0.8.6-1), libglib2.0-dev, pkg-config, orbit2 (= 1:2.14.19-0.3) Conflicts: liblinc-dev Filename: pool/main/o/orbit2/liborbit2-dev_2.14.19-0.3_i386.deb Size: 229224 MD5sum: 0faaa1f5155efe0c388a27e4d8bee754 SHA1: a020c136690b68f9d0873a45d0e008dc8122dd6a SHA256: d6bec7caf9e4c96ae82ed415de1258ced9e2d428e8dc99565e8dcf2bfec9ca47 Description: high-performance CORBA implementation - development Multi-Arch: foreign Description-md5: bc53741c8a3640c5e5982742e4ce0b12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liborc-0.4-0 Priority: optional Section: libs Installed-Size: 642 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: orc Version: 1:0.4.18-1ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/o/orc/liborc-0.4-0_0.4.18-1ubuntu1_i386.deb Size: 139408 MD5sum: bda5d172b6b6d357deb65121ea0dd5e1 SHA1: 7761b17ee8ec9e637c9148b169300fd4f5d4ff90 SHA256: 85009abd8eb82190b678fe1ff2d78d4016af8fe0657361cd200b60398ca66ec8 Description: Library of Optimized Inner Loops Runtime Compiler Multi-Arch: same Homepage: http://code.entropywave.com/projects/orc/ Description-md5: 9d0d502b84711965362c2261cc943821 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: liborc-0.4-0-dbg Priority: extra Section: debug Installed-Size: 523 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: orc Version: 1:0.4.18-1ubuntu1 Depends: liborc-0.4-0 (= 1:0.4.18-1ubuntu1) Filename: pool/main/o/orc/liborc-0.4-0-dbg_0.4.18-1ubuntu1_i386.deb Size: 392470 MD5sum: d35b873d711bea634b0c1491b5ec4c1a SHA1: b2e7195ff255c0f5747f7611fbe808cb717ae39c SHA256: 3fb2539614903a63d920414204640ffaf8b450e0eb1ac408764f50707d134cd9 Description: Library of Optimized Inner Loops Runtime Compiler (debug package) Multi-Arch: same Homepage: http://code.entropywave.com/projects/orc/ Description-md5: 6ecdc3fff5502428d7530435c2d3c764 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liborc-0.4-dev Priority: optional Section: libdevel Installed-Size: 1051 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: orc Version: 1:0.4.18-1ubuntu1 Provides: liborc-dev Depends: liborc-0.4-0 (= 1:0.4.18-1ubuntu1), libc6 (>= 2.7) Suggests: liborc-0.4-doc Filename: pool/main/o/orc/liborc-0.4-dev_0.4.18-1ubuntu1_i386.deb Size: 173710 MD5sum: b2ae1619f4d5d9f63fc0551731bd6cf4 SHA1: 11919c330110e0dcc6cadaeb071e5652611efa6d SHA256: e7a00391e98ccf58852e1448be7022707ff242ec0713106b2fa2a46475921247 Description: Library of Optimized Inner Loops Runtime Compiler (development headers) Homepage: http://code.entropywave.com/projects/orc/ Description-md5: 359bc0114b7b8eeaca86901dcbe1ca51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liborc-0.4-doc Priority: optional Section: doc Installed-Size: 545 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: all Source: orc Version: 1:0.4.18-1ubuntu1 Suggests: liborc-0.4-dev Filename: pool/main/o/orc/liborc-0.4-doc_0.4.18-1ubuntu1_all.deb Size: 58188 MD5sum: 4d471942cbe6ef7d73612bc6c8abe260 SHA1: 0a4065885311316f33dbdfeb79c5c0c364f153c5 SHA256: 92772f0231a539419db7a4a19f274cc543a73aaea46961dc7ab570f43100afa7 Description: Library of Optimized Inner Loops Runtime Compiler (documentation) Homepage: http://code.entropywave.com/projects/orc/ Description-md5: c53a5ca6930a6cff4d25eece0de8983d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liborcus-0.6-0 Priority: optional Section: libs Installed-Size: 649 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: liborcus Version: 0.5.1-7 Depends: libboost-system1.54.0, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), zlib1g (>= 1:1.1.4) Filename: pool/main/libo/liborcus/liborcus-0.6-0_0.5.1-7_i386.deb Size: 176260 MD5sum: 6fd04413c3ee3cac96cf82fe654ecdef SHA1: 8a3787d969371ff3edf134cfa367ebbfe1ed8783 SHA256: 1fe29bb10ac7bb0664b03dded2c205696847e9c7ceca6049b02977dba735d4f1 Description: library for processing spreadsheet documents Description-md5: 800af55a60213c5d36dbb1945e9972b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: liborcus-dev Priority: optional Section: libdevel Installed-Size: 1277 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: liborcus Version: 0.5.1-7 Depends: liborcus-0.6-0 (= 0.5.1-7), libzip-dev Filename: pool/main/libo/liborcus/liborcus-dev_0.5.1-7_i386.deb Size: 224756 MD5sum: a171ddec100d4c4c0b60fc6f667d915f SHA1: 4eeda015db7712013d874b00d1ced30e71ff72d2 SHA256: 16811ecd400618893c2c881929544f74b59c4f3f30917eb6c59381a51f547473 Description: library for processing spreadsheet documents -- development Description-md5: c226965aa79dfaa7fc46d2c6f9a9c6e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liboro-java Priority: optional Section: libs Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.0.8a-9 Filename: pool/main/libo/liboro-java/liboro-java_2.0.8a-9_all.deb Size: 65068 MD5sum: ebdf320152c3aeffddee7fd963144317 SHA1: 0b7bbb476437ff2c71b9225dd52145bb85aeaa6c SHA256: e56f011894ce7d235c141968a3c3de3a8bdaf64965009d54cb5a7b3c7ad51cbe Description: Regular expression library for Java Homepage: http://jakarta.apache.org/oro/ Description-md5: 13828b6fdf02cd24f01df6e9bf8c9f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liboro-java-doc Priority: optional Section: doc Installed-Size: 1297 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: liboro-java Version: 2.0.8a-9 Filename: pool/main/libo/liboro-java/liboro-java-doc_2.0.8a-9_all.deb Size: 149228 MD5sum: 3d34ff7f40045d192ae9eacfb937bb24 SHA1: a1a2c5b9ca22be305b885163c016f0d64f1f9576 SHA256: f81ca21b8fdcc1814e1f728c4da21f67ca2d631d108ffe69d9b27014c6c41b3a Description: Regular expression library for Java -- documentation Homepage: http://jakarta.apache.org/oro/ Description-md5: 3ec9395d21a0156e45b1b41488ece071 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libosmesa6 Priority: extra Section: libs Installed-Size: 3396 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1-mesa-swx11 (<< 6.5.2) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglapi-mesa (= 10.1.0-4ubuntu5), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libosmesa6_10.1.0-4ubuntu5_i386.deb Size: 964550 MD5sum: 895cc7619bf490b4a4be4326034baa44 SHA1: 5f2cb6a27c9ecef55509128b7197983f7acea3b0 SHA256: 42dbba124138b31b164562bc3ed5b2ad1964887e9e17db03ea6ef3485529992b Description: Mesa Off-screen rendering extension Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: e0dd0508dd95a809bb554369d28e278c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libosmesa6-dev Priority: extra Section: devel Installed-Size: 104 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1-mesa-swx11-dev (<< 6.5.2), libosmesa-dev, mesa-common-dev (<< 6.5.2), xlibosmesa-dev Provides: libosmesa-dev, xlibosmesa-dev Depends: libosmesa6 (= 10.1.0-4ubuntu5), mesa-common-dev (= 10.1.0-4ubuntu5) | libgl-dev Conflicts: libosmesa-dev, libosmesa4-dev, xlibosmesa-dev Filename: pool/main/m/mesa/libosmesa6-dev_10.1.0-4ubuntu5_i386.deb Size: 7434 MD5sum: 966c7370c5be9ed3c126f4893ccf301c SHA1: 50665eb2540982b9833e3d7a51c67b92db8b67c4 SHA256: a37e21c65dd6b5f749daebcff4c8e8fafd3a04ac590a48ef13f6d5a5fa4b363f Description: Mesa Off-screen rendering extension -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: 9b1d7a0b3e6a2ea021f4443f42dcff4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libosp-dev Priority: optional Section: libdevel Installed-Size: 4184 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: i386 Source: opensp Version: 1.5.2-10ubuntu3 Depends: opensp (= 1.5.2-10ubuntu3), libosp5 (= 1.5.2-10ubuntu3) Recommends: c++-compiler Filename: pool/main/o/opensp/libosp-dev_1.5.2-10ubuntu3_i386.deb Size: 722652 MD5sum: c02068dc700ead1bf97507008a6c0dea SHA1: 25b81e14bb8c1917b5f50121152848e5e5da3219 SHA256: 78ca4d4724cc91d0f78789727ebfe5948fb44d884e23b0755a942b1a92065917 Description: OpenJade group's SP suite, developer support Description-md5: c886d203f924f28f39a7c62f660e64f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libosp5 Priority: optional Section: libs Installed-Size: 1928 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: i386 Source: opensp Version: 1.5.2-10ubuntu3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/o/opensp/libosp5_1.5.2-10ubuntu3_i386.deb Size: 594250 MD5sum: ef5fa5785e6f92219cf528f4d5a05a4c SHA1: de1973d5ed1b35bf81fc0383f6fb3d4b9c07cffa SHA256: 67e361d73ea5dac63877ebfe96ab1c1e11d27420ecacf9096dc952140d54e22b Description: Runtime library for OpenJade group's SP suite Description-md5: 3ba5bab58b5ec24657f78e068cf12ad2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libossp-uuid-dev Priority: optional Section: libs Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Marco Nenciarini Architecture: i386 Source: ossp-uuid Version: 1.6.2-1.3ubuntu1 Depends: libossp-uuid16 (= 1.6.2-1.3ubuntu1) Filename: pool/main/o/ossp-uuid/libossp-uuid-dev_1.6.2-1.3ubuntu1_i386.deb Size: 42362 MD5sum: 9e27aa5ddb6ae68f0e7065171df66c68 SHA1: 70a3d5dda3a57ed02631ac1244fcd223d1207385 SHA256: dd733e62317a345840a7673dee05d13c76d74337bbde7978291b8d21f82dfeb6 Description: OSSP uuid ISO-C and C++ - headers and static libraries Homepage: http://www.ossp.org/pkg/lib/uuid/ Description-md5: 401a1d8f75ee057d66ef71b7471c6e22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libossp-uuid16 Priority: optional Section: libs Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Marco Nenciarini Architecture: i386 Source: ossp-uuid Version: 1.6.2-1.3ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Suggests: uuid Filename: pool/main/o/ossp-uuid/libossp-uuid16_1.6.2-1.3ubuntu1_i386.deb Size: 30336 MD5sum: 54344f6c882ef9b313d2257b4d38d8ba SHA1: 776e17f49df498f23f9782252a1d0fddc5d20618 SHA256: d198d865be4de640f3e033dc497309c6e0063d6e45a5254e6c62daed9fab7764 Description: OSSP uuid ISO-C and C++ - shared library Homepage: http://www.ossp.org/pkg/lib/uuid/ Description-md5: 4e2b73242022da7d4b05222407c9042f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libostyle-dev Priority: optional Section: libdevel Installed-Size: 4901 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: i386 Source: openjade Version: 1.4devel1-21 Depends: libostyle1c2 (= 1.4devel1-21) Conflicts: openjade (<< 1.4devel1-14) Filename: pool/main/o/openjade/libostyle-dev_1.4devel1-21_i386.deb Size: 988960 MD5sum: d587264aeb4c03793eae3d7615280383 SHA1: 1c7dd92aabed96c5bbbca0c65b080458f01a42f1 SHA256: 1a0cc75e13d70e48b83d8ea4e6223a0bcf2272f848633d77bb5e7fd47d71eecd Description: OpenJade libraries, developer support Homepage: http://openjade.sourceforge.net/ Description-md5: 916e65c0872facd3207bfd335df5203a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libostyle1c2 Priority: optional Section: libs Installed-Size: 2737 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: i386 Source: openjade Version: 1.4devel1-21 Replaces: libostyle1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: libostyle1 Filename: pool/main/o/openjade/libostyle1c2_1.4devel1-21_i386.deb Size: 806988 MD5sum: bea4b26ea3a282e0b5deff6857f1d5f5 SHA1: 45da25d918c5e9e6b2f9976e4aa549238b245a64 SHA256: 892f6e464d94e43f48e3c26e04ed79e3fc516d0c363fdf5d16d739dd9d495d00 Description: Runtime libraries for OpenJade Homepage: http://openjade.sourceforge.net/ Description-md5: 32031f3a284c6b91eaa28d9ed0cf34ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libotf-dev Priority: optional Section: libdevel Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: i386 Source: libotf Version: 0.9.13-1ubuntu1 Depends: libotf0 (= 0.9.13-1ubuntu1) Filename: pool/main/libo/libotf/libotf-dev_0.9.13-1ubuntu1_i386.deb Size: 45908 MD5sum: 1bfdfe898b1f60b2c891f7187fdf9906 SHA1: 87670bd520d28087d6a5032730ac381501d49097 SHA256: ccf326609eaf2170692f42109ac8cb02ff806dbfec54f74ae046b60ca00c35fe Description: Library for handling OpenType Font - development Multi-Arch: same Homepage: http://www.nongnu.org/m17n/ Description-md5: 0f85decd7c68cf90642a8dd8e5abf7ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libotf0 Priority: optional Section: libs Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: i386 Source: libotf Version: 0.9.13-1ubuntu1 Depends: libc6 (>= 2.4), libfreetype6 (>= 2.2.1) Pre-Depends: multiarch-support Filename: pool/main/libo/libotf/libotf0_0.9.13-1ubuntu1_i386.deb Size: 41212 MD5sum: a926e0ea811e1fdf24903c369ea040b7 SHA1: 8994c7935f758576e810d2b23940c9c40ca7a954 SHA256: 813dd439f4078c57be6c12cbcba72ca6f53536a240c4832ea5738c3e0a241867 Description: Library for handling OpenType Font - runtime Multi-Arch: same Homepage: http://www.nongnu.org/m17n/ Description-md5: 272167b6ea5a45fb1e0214abe379f63e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libotf0-dbg Priority: extra Section: libdevel Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: i386 Source: libotf Version: 0.9.13-1ubuntu1 Depends: libotf0 (= 0.9.13-1ubuntu1) Filename: pool/main/libo/libotf/libotf0-dbg_0.9.13-1ubuntu1_i386.deb Size: 181428 MD5sum: 98bde3f35b175a5f743ff896949f7b6d SHA1: cf794a0737720e47bd6bc0168101f3c3f90e14c4 SHA256: 88bad35f58de9f8077935a1566032886e609cfe3ef0e13528c9c488b791ae87e Description: libotf libraries and debugging symbols Homepage: http://www.nongnu.org/m17n/ Description-md5: 00aa9cee2361d6ae3b8d9d4768e1788f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libotp0-heimdal Priority: extra Section: libs Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.4), libdb5.3, libhcrypto4-heimdal (>= 1.4.0+git20110226), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Conflicts: libotp0-kerberos4kth Filename: pool/main/h/heimdal/libotp0-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 24864 MD5sum: 0a17f5acd493c89c70d77ceac1a48a46 SHA1: 239399bbab5eda790141eb0612a63cb108352e45 SHA256: 33ed226f974096fc8e356c1d3ce8bd77463cef474714748bce2224bfde5fac0a Description: Heimdal Kerberos - OTP support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 6390958186e4638a428e5ae7c9683f6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libow-util-ant-tasks-java Priority: optional Section: libdevel Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ow-util-ant-tasks Version: 1.3.2-4build1 Depends: ant (>= 1.7), default-jre-headless | java2-runtime-headless, libasm3-java, libxalan2-java Filename: pool/main/o/ow-util-ant-tasks/libow-util-ant-tasks-java_1.3.2-4build1_all.deb Size: 42990 MD5sum: 93000043fecc3b3d4e1add942d806dba SHA1: b3bf2fdcd6f20067c3d19b8d0dd2a1ddeae53170 SHA256: f55f3ae3fdd682b5f147a46f10b6d5aed47eb4abca9c46c400a52e276a00c66e Description: ObjectWeb utility Ant tasks library Homepage: http://forge.ow2.org/projects/monolog/ Description-md5: bafd7c93d32ad81a23e1246c393c405c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libow-util-ant-tasks-java-doc Priority: optional Section: doc Installed-Size: 522 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: ow-util-ant-tasks Version: 1.3.2-4build1 Replaces: libow-util-ant-tasks-java (<< 1.3.2-4) Recommends: default-jdk-doc, libxalan2-java-doc, libasm3-java-doc Filename: pool/main/o/ow-util-ant-tasks/libow-util-ant-tasks-java-doc_1.3.2-4build1_all.deb Size: 54838 MD5sum: de118ede3ebaab6ac9a4f019dada05cc SHA1: f5971d9d4732ade8d86fcf3f9c1e716849fb1214 SHA256: 625b056671508fbc9684d8b18643ea37e8242c393b96c69fa8bac1945cae3022 Description: ObjectWeb utility Ant tasks library (API docs) Homepage: http://forge.ow2.org/projects/monolog/ Description-md5: 40f722721858622a4f396c86a440f9ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liboxideqt-qmlplugin Priority: extra Section: libs Installed-Size: 1775 Maintainer: Chris Coulson Architecture: i386 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), liboxideqtcore0, libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.2.0~rc1) | libqt5quick5-gles (>= 5.2.0~rc1), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Filename: pool/main/o/oxide-qt/liboxideqt-qmlplugin_1.0.0~bzr501-0ubuntu1_i386.deb Size: 237558 MD5sum: bb33f5a2c906dbce1ff1541489b81cc2 SHA1: 112c400ebb11629e02d15bba968c8c64b0e20cc7 SHA256: 8a9551dc8702bf92464cea273a4f3514feb76bc826d2e500b403c8b7c282957f Description: Web browser engine library for Qt (QML plugin) Multi-Arch: same Homepage: https://launchpad.net/oxide Description-md5: 428c6d6988b1bfc62fe27a3d85613fc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: liboxideqtcore0 Priority: extra Section: libs Installed-Size: 72709 Maintainer: Chris Coulson Architecture: i386 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.15), libcairo2 (>= 1.6.0), libcap2 (>= 2.10), libdbus-1-3 (>= 1.2.14), libexpat1 (>= 2.0.1), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.9), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.35.9), libharfbuzz0b (>= 0.9.11), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.14.3), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libstdc++6 (>= 4.6), libudev1 (>= 183), libx11-6, libxcomposite1 (>= 1:0.3-1), oxideqt-codecs (= 1.0.0~bzr501-0ubuntu1) | oxideqt-codecs-extra (= 1.0.0~bzr501-0ubuntu1) Filename: pool/main/o/oxide-qt/liboxideqtcore0_1.0.0~bzr501-0ubuntu1_i386.deb Size: 20621516 MD5sum: db97befb4dfe2acf490167207c8b55b7 SHA1: fdcc308c0c6a69d3b8bce4a2addd09994c6df6d2 SHA256: 45323b8c922b59186c519efc405d49416116f44793c7ec2e87459350ab688c06 Description: Web browser engine library for Qt (core) Multi-Arch: same Homepage: https://launchpad.net/oxide Description-md5: f3e4b79e886c900a32a898ecb1b9a814 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libp11-2 Priority: optional Section: libs Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: libp11 Version: 0.2.8-3ubuntu1 Depends: libc6 (>= 2.4), libltdl7 (>= 2.4.2), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/libp/libp11/libp11-2_0.2.8-3ubuntu1_i386.deb Size: 16236 MD5sum: e83c3614a9c25bd6d8391db722774070 SHA1: b15e687bde37c8d341bb85d14f92f26cf7f8e1a4 SHA256: 16f205ece32f192f729d779cda9343df88175b49fbd5ccf45f603d5dda414990 Description: pkcs#11 convenience library Multi-Arch: same Homepage: http://www.opensc-project.org/libp11/ Description-md5: c1bc0ac5ee7b3b8ed3f9341c5678a0cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libp11-2-dbg Priority: extra Section: debug Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: libp11 Version: 0.2.8-3ubuntu1 Depends: libp11-2 (= 0.2.8-3ubuntu1) Filename: pool/main/libp/libp11/libp11-2-dbg_0.2.8-3ubuntu1_i386.deb Size: 55594 MD5sum: 9f1d62048c681d13e03557a33c6b1a2e SHA1: 25a9352a174689d3f174dbdc32da2c121e4e6968 SHA256: 47d1a829b220f57aac77669889eb39a5d4f8c142f0c57a43bda4ba13641ceb3b Description: pkcs#11 convenience library - debugging symbols Multi-Arch: same Homepage: http://www.opensc-project.org/libp11/ Description-md5: 8e004b22fdd8cef562b627b0bbb567a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libp11-dev Priority: optional Section: libdevel Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: libp11 Version: 0.2.8-3ubuntu1 Depends: libp11-2 (= 0.2.8-3ubuntu1), libssl-dev, pkg-config Filename: pool/main/libp/libp11/libp11-dev_0.2.8-3ubuntu1_i386.deb Size: 27692 MD5sum: 5184256dc20313b7ee59145a6263c48a SHA1: 9f96aae70465ee96609f1fcd1cefa994308e7960 SHA256: ab85b12c175a813e9f238b050e6f4044678e7e45d208a1f824bcd0bed327bc2c Description: pkcs#11 convenience library - development files Homepage: http://www.opensc-project.org/libp11/ Description-md5: d18268fbc218a173e85d9adefaf49159 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libp11-kit-dev Priority: extra Section: libdevel Installed-Size: 526 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: p11-kit Version: 0.20.2-2ubuntu2 Depends: libp11-kit0 (= 0.20.2-2ubuntu2) Filename: pool/main/p/p11-kit/libp11-kit-dev_0.20.2-2ubuntu2_i386.deb Size: 56468 MD5sum: 3db29fcbeafa5016ef5f843836a30d9f SHA1: fd1a3fc1a47e5edac4d79697dc74b015578290ad SHA256: 64fea4da30b9a53c7fc00b3a9874f259c134562362911ae3ebf55c29dd7b9ce1 Description: Library for loading and coordinating access to PKCS#11 modules - development Homepage: http://p11-glue.freedesktop.org/p11-kit.html Description-md5: d1b1bc0614079d89f3a4d535142f70c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libp11-kit-gnome-keyring Priority: optional Section: libs Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gnome-keyring Version: 3.10.1-1ubuntu4 Replaces: gnome-keyring (<< 3.6.2-0ubuntu2~) Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Breaks: gnome-keyring (<< 3.6.2-0ubuntu2~) Filename: pool/main/g/gnome-keyring/libp11-kit-gnome-keyring_3.10.1-1ubuntu4_i386.deb Size: 38610 MD5sum: 8488f4446ed0064a14d1f6b9b727a3b1 SHA1: 2bf550ad3df91c2432e6c0592da214b519581301 SHA256: bedaaaf97deef735bda8082b2562add5458ed8af000aa9f93fada80c6475006d Description: GNOME keyring module for the PKCS#11 module loading library Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 152920d93477b7997fe4b21917dba91f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libp11-kit0 Priority: important Section: libs Installed-Size: 291 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: p11-kit Version: 0.20.2-2ubuntu2 Depends: libc6 (>= 2.16), libffi6 (>= 3.0.4) Pre-Depends: multiarch-support Filename: pool/main/p/p11-kit/libp11-kit0_0.20.2-2ubuntu2_i386.deb Size: 71378 MD5sum: 3dfeef82cdd77dafd8140cc2c512f621 SHA1: e426cc92667d0cf9cb18d3e8b9c69397a5a8d1a4 SHA256: 9814ba7621a142365d6d53e1bd683d9c9c5e5d2bdc6b3e5ad80d9d405c1c3666 Description: Library for loading and coordinating access to PKCS#11 modules - runtime Multi-Arch: same Homepage: http://p11-glue.freedesktop.org/p11-kit.html Description-md5: e5ba1eaf33b44d391d1a681f2d347383 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libp11-kit0-dbg Priority: extra Section: debug Installed-Size: 605 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: p11-kit Version: 0.20.2-2ubuntu2 Depends: libp11-kit0 (= 0.20.2-2ubuntu2) Filename: pool/main/p/p11-kit/libp11-kit0-dbg_0.20.2-2ubuntu2_i386.deb Size: 486840 MD5sum: 8cd522c5eedcaaf28d6a3d5f79263ac8 SHA1: c7b7558d486a3601e3fb904d2da82c6bb7623cde SHA256: 1bc50a5ebf944b4bc838c2f5676630a14d47c0eba385eda6b9069a85c78e1c95 Description: load and coordinate access to PKCS#11 modules - debugging symbols Multi-Arch: same Homepage: http://p11-glue.freedesktop.org/p11-kit.html Description-md5: 8c2d8e80b7be2274cbbffe6448a9a0f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpackage-deprecationmanager-perl Priority: optional Section: perl Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.13-1 Depends: perl, liblist-moreutils-perl, libparams-util-perl, libsub-install-perl Filename: pool/main/libp/libpackage-deprecationmanager-perl/libpackage-deprecationmanager-perl_0.13-1_all.deb Size: 12924 MD5sum: 122d97896a3240ac1141ae855d2c6eac SHA1: 5fdabcf6791f1503dee7bb98cac9df9b034f24f2 SHA256: 797068161bf0f5eaa3c8f8ae0c897929e2b08f667c444cba30f1f324f9b4353f Description: module for managing deprecation warnings for Perl distributions Homepage: http://search.cpan.org/dist/Package-DeprecationManager/ Description-md5: ea82c9d8f8c547daf3b829e5d8f7b1fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpackage-stash-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.36-1 Depends: perl, libmodule-implementation-perl Recommends: libpackage-stash-xs-perl (>= 0.24) Breaks: libclass-mop-perl (<< 1.09~), libmoosex-method-signatures-perl (<< 0.37~), libmoosex-roles-withoverloading-perl (<< 0.09~), libnamespace-clean-perl (<< 0.19~) Filename: pool/main/libp/libpackage-stash-perl/libpackage-stash-perl_0.36-1_all.deb Size: 21698 MD5sum: 4435acf5f70443beb903bafdbfe38a61 SHA1: c465a3bcc86c825f4e13bf7a7d77eb65ee452acc SHA256: 472c2d82a1b43df7f800bb144e655af716345c006e26fe07f5c50acf22914956 Description: module providing routines for manipulating stashes Homepage: https://metacpan.org/release/Package-Stash/ Description-md5: 2cc7309d7c2c8bbf04d343339450b60d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libpackage-stash-xs-perl Priority: optional Section: perl Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.28-1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libp/libpackage-stash-xs-perl/libpackage-stash-xs-perl_0.28-1_i386.deb Size: 18508 MD5sum: 375549fd305e64e141d6740dab9698d1 SHA1: b3cddf9b6c38abe5a2c52b38abff14d1dfef74fc SHA256: e1d5b536e2ecd2d01d8a5fe61a2c363c0df39cf8b02870b122730afc5aa420a5 Description: Perl module providing routines for manipulating stashes (XS version) Enhances: libpackage-stash-perl Homepage: https://metacpan.org/release/Package-Stash-XS/ Description-md5: 3cc108ce648a0355160bf7aec509dfbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libpackagekit-glib2-16 Priority: optional Section: libs Installed-Size: 435 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: i386 Source: packagekit Version: 0.8.12-1ubuntu5 Depends: libarchive13, libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9) Pre-Depends: multiarch-support Recommends: python3-aptdaemon.pkcompat | packagekit-system-interface | packagekit (= 0.8.12-1ubuntu5) Filename: pool/main/p/packagekit/libpackagekit-glib2-16_0.8.12-1ubuntu5_i386.deb Size: 95046 MD5sum: 0d0c93a2ff91a46a5e866af9da5f48b6 SHA1: 759a444f519cf5e175582ee58f91f4669cba6e08 SHA256: 7bfe6e6d5fd531afb061e3535ab590a74e4863d77a39f81c761b55b65d254c08 Description: Library for accessing PackageKit using GLib Multi-Arch: same Homepage: http://www.packagekit.org Description-md5: 2f6bf343292f3cd8ceccbf83d3b1645c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpackagekit-glib2-dev Priority: extra Section: libdevel Installed-Size: 1116 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: i386 Source: packagekit Version: 0.8.12-1ubuntu5 Depends: libdbus-1-dev, libglib2.0-dev (>= 2.24), libpackagekit-glib2-16 (= 0.8.12-1ubuntu5), libsqlite3-dev Filename: pool/main/p/packagekit/libpackagekit-glib2-dev_0.8.12-1ubuntu5_i386.deb Size: 60054 MD5sum: eeac276d714a1cc98d7a069b87666206 SHA1: c7a47532b2b1ef95365a70a33e7a2d38d7931c2d SHA256: 532370a9731cffc5cfa6fa530d86f5582460a2dc4ef0c455af7fb49003bc1b64 Description: Library for accessing PackageKit using GLib (development files) Homepage: http://www.packagekit.org Description-md5: 4bb71e9f893e95e7a41aa3b2056457f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpadwalker-perl Priority: optional Section: perl Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.98-1 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libp/libpadwalker-perl/libpadwalker-perl_1.98-1_i386.deb Size: 16994 MD5sum: b121eafecc24f1dbf48467dbe1e136b9 SHA1: 14b865d3b024999d57bd74ff029d6e28bcf9b3ce SHA256: 46c2df986de4050099022246a998b49036818dddfe0378b745d012cf4333d2f1 Description: module to inspect and manipulate lexical variables Homepage: https://metacpan.org/release/PadWalker/ Description-md5: f686c2f2dfe85157f03c0ffade424501 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpam-apparmor Priority: extra Section: libs Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: libapparmor1 (>= 2.6~devel), libc6 (>= 2.2), libpam0g (>= 0.99.7.1) Filename: pool/main/a/apparmor/libpam-apparmor_2.8.95~2430-0ubuntu5_i386.deb Size: 7056 MD5sum: 7cd6bdd74a689cb3bec1d911ce768133 SHA1: b17eded33c4689bdb880afc21a131e347d7c77d2 SHA256: c019cb9670a00e1fe12cd1b72521053b14cc15001887f88f0e0eabcf8e923ca5 Description: changehat AppArmor library as a PAM module Homepage: http://apparmor.net/ Description-md5: e416b01d786a37c6ad586d6663ee5027 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpam-cap Priority: important Section: libs Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Werner Architecture: i386 Source: libcap2 Version: 1:2.24-0ubuntu2 Replaces: libcap2-bin (<< 1:2.22-1.1) Depends: libc6 (>= 2.4), libcap2 (>= 2.10), libpam0g (>= 0.99.7.1), libpam-runtime (>= 1.1.3-2~) Breaks: libcap2-bin (<< 1:2.22-1.1) Filename: pool/main/libc/libcap2/libpam-cap_2.24-0ubuntu2_i386.deb Size: 6936 MD5sum: 9e975994864a18a971e62be44dbfc0cb SHA1: 9404c2e6f011b737498c2e1ff4374f254a4f3d66 SHA256: db2f62bb340aaae80acbf19f2d7739c246f11ea263daebce0f0df111613c576b Description: PAM module for implementing capabilities Multi-Arch: same Homepage: http://sites.google.com/site/fullycapable/ Description-md5: 96b287a218b648ef7b2f0f3aa67ebf50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpam-ck-connector Priority: optional Section: admin Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: consolekit Version: 0.4.5-3.1ubuntu2 Depends: libc6 (>= 2.4), libck-connector0 (= 0.4.5-3.1ubuntu2), libdbus-1-3 (>= 1.0.2), libpam0g (>= 0.99.7.1), libpam-runtime (>= 1.0.1-6) Filename: pool/main/c/consolekit/libpam-ck-connector_0.4.5-3.1ubuntu2_i386.deb Size: 8176 MD5sum: cde5d484d9c465467e0e23a964092d7d SHA1: 4426b1937bcdc48b30688b51603a948e7f0f5b74 SHA256: ea38833cef15c7299a1e2e0f5722e72587c6aa7d309b314d53958cc6fc8d30cc Description: ConsoleKit PAM module Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/ConsoleKit Description-md5: ac8bf0bb4ffed67d7a5236a01dc77fa8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libpam-cracklib Priority: optional Section: admin Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: pam Version: 1.1.8-1ubuntu2 Replaces: libpam-modules (<< 1.1.0-3), libpam0g-cracklib Depends: libc6 (>= 2.3), libcrack2 (>= 2.8.12), libpam0g (>= 1.1.1), libpam-runtime (>= 1.0.1-6), cracklib-runtime, wamerican | wordlist Filename: pool/main/p/pam/libpam-cracklib_1.1.8-1ubuntu2_i386.deb Size: 13066 MD5sum: 6683dd7c758f074f52ce305d44cab83d SHA1: bc9ac0a30f78f17fb2f1332c0ef2b767561562b0 SHA256: 8a3eb9ce94aa78dab88f0266d14d6f6716ef3cbdc3ab4f0f5b7b6c7c11e158cd Description: PAM module to enable cracklib support Multi-Arch: same Homepage: http://pam.sourceforge.net/ Description-md5: 0f6f2fd98962cbee59aa831979aad971 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-doc Priority: optional Section: doc Installed-Size: 966 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: all Source: pam Version: 1.1.8-1ubuntu2 Provides: pam-doc Filename: pool/main/p/pam/libpam-doc_1.1.8-1ubuntu2_all.deb Size: 210800 MD5sum: b916de6a6ece9e66660c51b7f0368912 SHA1: 160c6ddb2188ab52d97e4c6020406e143619cd26 SHA256: a6b6bff5673b5355d9d5ccb92790427332df719cdbff7affc7fa2d3722cca951 Description: Documentation of PAM Homepage: http://pam.sourceforge.net/ Description-md5: 176a64d4b15e68f5628dec9ba5739e05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpam-gnome-keyring Priority: optional Section: admin Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: gnome-keyring Version: 3.10.1-1ubuntu4 Depends: libc6 (>= 2.4), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), libpam-runtime (>= 1.0.1-6) Pre-Depends: multiarch-support Recommends: gnome-keyring Filename: pool/main/g/gnome-keyring/libpam-gnome-keyring_3.10.1-1ubuntu4_i386.deb Size: 35946 MD5sum: 649a7c99ca7cddff19660e17b21f789e SHA1: 72b9371994833efc38c5fa3c11cd12c65107648a SHA256: d40a2e188a9d4c9db3eeadd289a570301e7caba042e6457499bb9869e06a35d7 Description: PAM module to unlock the GNOME keyring upon login Multi-Arch: same Homepage: https://wiki.gnome.org/GnomeKeyring Description-md5: 3673d193052d71d8a785db5f957ea3ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpam-krb5 Priority: optional Section: net Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Russ Allbery Architecture: i386 Version: 4.6-2 Depends: libc6 (>= 2.8), libkrb5-3 (>= 1.10+dfsg~alpha1), libpam0g (>= 1.1.3-2~), krb5-config, libpam-runtime (>= 1.0.1-6~) Pre-Depends: multiarch-support Conflicts: libpam-heimdal Filename: pool/main/libp/libpam-krb5/libpam-krb5_4.6-2_i386.deb Size: 64784 MD5sum: ff620413fb8694fd2f03da8e67101f57 SHA1: 32fb2f26741b7fc398d3108eac6ebdf55ef32606 SHA256: 7ff6ceb06f747b156226de961d58eb2cea39cdb6e633caaeaec6910835505214 Description: PAM module for MIT Kerberos Multi-Arch: same Homepage: http://www.eyrie.org/~eagle/software/pam-krb5/ Description-md5: 3a766fc1201c20fb86b96c96419f34d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-ldap Priority: extra Section: admin Installed-Size: 162 Maintainer: Ubuntu Core Developers Original-Maintainer: Richard A Nelson (Rick) Architecture: i386 Version: 184-8.5ubuntu3 Depends: libc6 (>= 2.4), libldap-2.4-2 (>= 2.4.7), libpam0g (>= 1.1.3-2), libpam-runtime (>= 1.0.1-6), ldap-auth-config (>= 0.5.2) Suggests: libnss-ldapd | libnss-ldap Filename: pool/main/libp/libpam-ldap/libpam-ldap_184-8.5ubuntu3_i386.deb Size: 44926 MD5sum: d8d3f0ff0b85a84526fb313f01879a7b SHA1: fbb0eb77eb767eddae9ce901abd10be5f9e28c9e SHA256: 0e6674e3237f4853b56da005f91b1aeb38fc66b4fb3c18a73192f39e0d09c235 Description: Pluggable Authentication Module for LDAP Multi-Arch: same Description-md5: 8658200211e507017f592c1760c69a3a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-modules Priority: required Section: admin Installed-Size: 764 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: pam Version: 1.1.8-1ubuntu2 Replaces: libpam-umask, libpam0g-util Provides: libpam-mkhomedir, libpam-motd, libpam-umask Pre-Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.15), libdb5.3, libpam0g (>= 1.1.3-2), libselinux1 (>= 2.1.9), debconf (>= 0.5) | debconf-2.0, libpam-modules-bin (= 1.1.8-1ubuntu2) Conflicts: libpam-mkhomedir, libpam-motd, libpam-umask Filename: pool/main/p/pam/libpam-modules_1.1.8-1ubuntu2_i386.deb Size: 231884 MD5sum: 9da750d64d13d91a8c1c61554a93b95f SHA1: 46a6f9e1ec23504851353e5ff57bcd74dc033d0f SHA256: 076dc00814af59284698c3681fdf4879825465266e1a63a4c2fe1931e35dec22 Description: Pluggable Authentication Modules for PAM Multi-Arch: same Homepage: http://pam.sourceforge.net/ Description-md5: 234b9429528430ead853cc8bbe97ffb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpam-modules-bin Priority: required Section: admin Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: pam Version: 1.1.8-1ubuntu2 Replaces: libpam-modules (<< 1.1.3-8) Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.4), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32) Filename: pool/main/p/pam/libpam-modules-bin_1.1.8-1ubuntu2_i386.deb Size: 30778 MD5sum: 1c2e990fed836453a559ad559c990013 SHA1: 02c03b023fbf6d8a031ee59edd44adef7e9aef62 SHA256: da0e174f3ee4aec24c724603bfc101da718868d4274b01922be543a585e8adf1 Description: Pluggable Authentication Modules for PAM - helper binaries Multi-Arch: foreign Homepage: http://pam.sourceforge.net/ Description-md5: 25d278fc7450d5202a9a137f71302e58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpam-mount Priority: extra Section: admin Installed-Size: 383 Maintainer: Ubuntu Developers Original-Maintainer: Bastian Kleineidam Architecture: i386 Version: 2.14-1 Depends: libc6 (>= 2.7), libcryptsetup4 (>= 2:1.4), libhx28, libmount1 (>= 2.19.1), libpam0g (>= 0.99.7.1), libpcre3 (>= 8.10), libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.7.4), mount (>= 2.12-3), libpam-runtime (>= 1.0.1-6), base-files (>= 6.4) Suggests: ncpfs, cifs-utils, openssl, fuse, davfs2, lsof, psmisc, xfsprogs, sshfs, tc-utils Conflicts: dmsetup (<< 2:1.02.48-1), libncp (<< 2.2.0.19.10) Filename: pool/main/libp/libpam-mount/libpam-mount_2.14-1_i386.deb Size: 87492 MD5sum: 7be5806e0e395f059c03da74f2c9ca1b SHA1: a06030b487cfabcf6cda9d5e1a0306d977511d8d SHA256: 42bc74d8317c4e7a5b1840edfffdd5b7185d41ec4c5229e682c7f1ce0121b70b Description: PAM module that can mount volumes for a user session Homepage: http://pam-mount.sourceforge.net/ Description-md5: 404681eed9f6e4181dcd6804fad3a303 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-p11 Priority: optional Section: admin Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: pam-p11 Version: 0.1.5-3ubuntu1 Replaces: libpam-opensc Provides: libpam-opensc Depends: libc6 (>= 2.4), libp11-2 (>= 0.2.8), libpam0g (>= 0.99.7.1), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Conflicts: libpam-opensc Filename: pool/main/p/pam-p11/libpam-p11_0.1.5-3ubuntu1_i386.deb Size: 18344 MD5sum: 7267821c015bf6c979b474d2810db260 SHA1: 34102223730ea3dc21a6d0a2f410e84e67351721 SHA256: d541c7745c6852434527e0ca3b653ad04e4d613c011191cb8bf12414a4de3eee Description: PAM module for using PKCS#11 smart cards Multi-Arch: same Homepage: http://www.opensc-project.org/pam_p11/ Description-md5: e786ad7783aa69643c0ff5dc4425cabb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-pwquality Priority: optional Section: admin Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libpwquality Version: 1.2.3-1ubuntu1 Depends: libc6 (>= 2.4), libpam0g (>= 1.1.1), libpwquality1 (>= 1.1.0), libpam-runtime Pre-Depends: multiarch-support Filename: pool/main/libp/libpwquality/libpam-pwquality_1.2.3-1ubuntu1_i386.deb Size: 9954 MD5sum: 784df771f1ebfbbaf0ea671dc55ecbb9 SHA1: 00d66eb8e47a97fdd40965ba3d2076118b81f93d SHA256: 60d6ddea78f8a53136c83a1a8927025e6a55325da07472df3708bd0b49646aac Description: PAM module to check password strength Multi-Arch: same Homepage: https://fedorahosted.org/libpwquality/ Description-md5: a0adf9a37eba9a9b210c968269f49c5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpam-radius-auth Priority: extra Section: libs Installed-Size: 98 Maintainer: Ubuntu Core Developers Original-Maintainer: Fabio M. Di Nitto Architecture: i386 Version: 1.3.17-0ubuntu4 Depends: libc6 (>= 2.15), libpam0g (>= 0.99.7.1), debconf | debconf-2.0 Suggests: radius-server Filename: pool/main/libp/libpam-radius-auth/libpam-radius-auth_1.3.17-0ubuntu4_i386.deb Size: 26456 MD5sum: 22ca58ae7150940c8dbc2ef5ebb567ac SHA1: fe60b57b086c98cb32d8d51fadd44f5334795f06 SHA256: 7987702e3d937aec992a1044214700ce854cda24735eb9eb2907ddc2b13cfd42 Description: The PAM RADIUS authentication module Description-md5: 5b2f48986f10af7fd49eae258ceb5b6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpam-runtime Priority: required Section: admin Installed-Size: 300 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: all Source: pam Version: 1.1.8-1ubuntu2 Replaces: libpam0g-dev, libpam0g-util Depends: debconf (>= 0.5) | debconf-2.0, debconf (>= 1.5.19) | cdebconf, libpam-modules (>= 1.0.1-6) Conflicts: libpam0g-util Filename: pool/main/p/pam/libpam-runtime_1.1.8-1ubuntu2_all.deb Size: 37720 MD5sum: 00bbabf3246623565cf6713e800cec3e SHA1: 7f2a48605c0cf9d1aeea8060a17a6e8bced7f60b SHA256: 865acf4e0a88bcecf246d5f2d4510a820fc32eec97dc673dbf320b1b3ee2c6dc Description: Runtime support for the PAM library Multi-Arch: foreign Homepage: http://pam.sourceforge.net/ Description-md5: bc15ddbf92ee7965a8588141c54bb5a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpam-smbpass Priority: extra Section: admin Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libpam-runtime (>= 1.0.1-6), samba-common (= 2:4.1.6+dfsg-1ubuntu2), libbsd0 (>= 0.0), libc6 (>= 2.8), libpam0g (>= 0.99.7.1), libtalloc2 (>= 2.0.4~git20101213), libwbclient0 (>= 2:4.0.3+dfsg1), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Suggests: samba Filename: pool/main/s/samba/libpam-smbpass_4.1.6+dfsg-1ubuntu2_i386.deb Size: 20658 MD5sum: a1789b9d13aa23ca52a2c3802d5c7c4f SHA1: 61ec2f4c6f176c9703c223fb86b1432b633b0af4 SHA256: 5f48ff9ba14e0032825ab12959503bb7143ebbfc8b27b25d35482bdceffc8c94 Description: pluggable authentication module for Samba Multi-Arch: same Homepage: http://www.samba.org Description-md5: 99a52e9b231c8359c64eb7bde1bc1cb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server Package: libpam-sss Priority: extra Section: utils Installed-Size: 100 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.12), libpam0g (>= 0.99.7.1), libpam-runtime (>= 1.0.1-6), libpam-pwquality (>= 1.2.2-1) Recommends: sssd Filename: pool/main/s/sssd/libpam-sss_1.11.5-1ubuntu3_i386.deb Size: 19762 MD5sum: 7609583576d29f829c0cf476d188e74a SHA1: b30e139fa05052a4f32945af9ad43d39f55336d2 SHA256: 5dc3233d075c69ef549eadac94be7990a769bba11664e836a0d40c699f5f53cc Description: Pam module for the System Security Services Daemon Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 917151896ca3a8e201cc53bf9cde21fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpam-systemd Priority: standard Section: admin Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Replaces: libpam-xdg-support, systemd-services (<< 198-0ubuntu7) Provides: libpam-xdg-support Depends: libc6 (>= 2.8), libcap2 (>= 2.10), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libpam0g (>= 0.99.7.1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), systemd-services (= 204-5ubuntu20), libpam-runtime (>= 1.0.1-6) Pre-Depends: multiarch-support Conflicts: libpam-xdg-support Breaks: systemd-services (<< 198-0ubuntu7) Filename: pool/main/s/systemd/libpam-systemd_204-5ubuntu20_i386.deb Size: 25246 MD5sum: 6e1775f52a134ffdf3b649d9fded4375 SHA1: 54c94e340679a31ab35170205ad23cf208bb9884 SHA256: 65792ba4d1880afc718dce94add9625557640179999dc31f9fe1e5a6249e4dd3 Description: system and service manager - PAM module Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: edcf62758ab0554992770cd6ee003898 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libpam0g Priority: required Section: libs Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: pam Version: 1.1.8-1ubuntu2 Replaces: libpam0g-util Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.8), debconf (>= 0.5) | debconf-2.0 Pre-Depends: multiarch-support Suggests: libpam-doc Filename: pool/main/p/pam/libpam0g_1.1.8-1ubuntu2_i386.deb Size: 55090 MD5sum: cecfdacc8771f1e1e8b2112ad5218293 SHA1: 48689790d8790b7157daf6badd3063d05b30f718 SHA256: e8ac8aaf23e839e15f8048267e4910dfde673d424a21aa2f44c13a30874f5254 Description: Pluggable Authentication Modules library Multi-Arch: same Homepage: http://pam.sourceforge.net/ Description-md5: af00a40029e1e1d2ad04c042c3b18095 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpam0g-dev Priority: optional Section: libdevel Installed-Size: 340 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: pam Version: 1.1.8-1ubuntu2 Provides: libpam-dev Depends: libpam0g (= 1.1.8-1ubuntu2), libc6-dev | libc-dev Filename: pool/main/p/pam/libpam0g-dev_1.1.8-1ubuntu2_i386.deb Size: 107662 MD5sum: a4345d6e675094623b2f902ba8883ca7 SHA1: b0e562ecc230ec3ab147dc7310321f175728dc1a SHA256: c0ad50e78027316a29d165c4e6a911fbed541512fda33912192b3246a2ffa47d Description: Development files for PAM Multi-Arch: same Homepage: http://pam.sourceforge.net/ Description-md5: 61cf45bcc7cd0edb21f16d49deed0ea2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpango-1.0-0 Priority: optional Section: libs Installed-Size: 525 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: libpango1.0-0 (<< 1.32.5-2) Provides: pango1.0-multiarch-modver-1.8.0 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libthai0 (>= 0.1.12), fontconfig (>= 2.1.91) Pre-Depends: multiarch-support Suggests: ttf-baekmuk, ttf-arphic-gbsn00lp, ttf-arphic-bsmi00lp, ttf-arphic-gkai00mp, ttf-arphic-bkai00mp Conflicts: plymouth (<< 0.8.8-0ubuntu7) Breaks: libpango1.0-0 (<< 1.32.5-2) Filename: pool/main/p/pango1.0/libpango-1.0-0_1.36.3-1ubuntu1_i386.deb Size: 147964 MD5sum: 0be05cdee0b9d32dc7003b9dbecbcfad SHA1: db056ed6281b322e08f85d34a41a2756f9ac15e2 SHA256: 3ea44114c153cc1806ebc1b5db2fcd056e7444bc6c404d7b253871ea707c3d12 Description: Layout and rendering of internationalized text Multi-Arch: same Description-md5: e707c4d451a8db4e75f943851824d37d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpango1.0-0 Priority: optional Section: libs Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pango1.0 Version: 1.36.3-1ubuntu1 Provides: pango1.0-multiarch-modver-1.8.0 Depends: libpango-1.0-0 (= 1.36.3-1ubuntu1), libpangocairo-1.0-0 (= 1.36.3-1ubuntu1), libpangoxft-1.0-0 (= 1.36.3-1ubuntu1), libpangoft2-1.0-0 (= 1.36.3-1ubuntu1), libpangox-1.0-0 (>= 0.0.2-2~) Filename: pool/main/p/pango1.0/libpango1.0-0_1.36.3-1ubuntu1_i386.deb Size: 3476 MD5sum: bb2f527709e9b9ce50d86546959bfa53 SHA1: c7b302b52e5383bc3045215af4960e63f008bf1b SHA256: 34fab1c16aa52750c2ab4f7ae8babea4110d55c6bb796b6760b5cc21364a089c Description: Layout and rendering of internationalized text Multi-Arch: same Description-md5: a6765f5737bf3e63f6396af5884ee72a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpango1.0-0-dbg Priority: extra Section: libdevel Installed-Size: 1544 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pango1.0 Version: 1.36.3-1ubuntu1 Depends: libpango-1.0-0 (= 1.36.3-1ubuntu1) | libpangocairo-1.0-0 (= 1.36.3-1ubuntu1) | libpangoft2-1.0-0 (= 1.36.3-1ubuntu1) | libpangoxft-1.0-0 (= 1.36.3-1ubuntu1) Filename: pool/main/p/pango1.0/libpango1.0-0-dbg_1.36.3-1ubuntu1_i386.deb Size: 432946 MD5sum: 0e77c73687dfff9121055c7c2d59513a SHA1: fe6d21c0e26c9967ae8b8306fa22b9dafa936c68 SHA256: ea9184073e22e5268aeff8a887e282922b827fc30f7ef783d427e87db9ee6bae Description: Pango library and debugging symbols Description-md5: 646a5e3f72c4eb7b31d348e627461278 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpango1.0-dev Priority: optional Section: libdevel Installed-Size: 1709 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: gir-repository-dev, gobject-introspection-repository Depends: libc6 (>= 2.7), libcairo2 (>= 1.12.10), libfontconfig1 (>= 2.9.0), libglib2.0-0 (>= 2.34.0), libpango-1.0-0 (= 1.36.3-1ubuntu1), libpangocairo-1.0-0 (= 1.36.3-1ubuntu1), libpangoft2-1.0-0 (= 1.36.3-1ubuntu1), libpangoxft-1.0-0 (= 1.36.3-1ubuntu1), libx11-6, libxft2 (>> 2.1.1), gir1.2-pango-1.0 (= 1.36.3-1ubuntu1), libglib2.0-dev (>= 2.34.0), libfreetype6-dev, libx11-dev, libxrender-dev, pkg-config, libxft-dev, libfontconfig1-dev (>= 2.10.91), libharfbuzz-dev (>= 0.9.9), libcairo2-dev (>= 1.12.10) Recommends: debhelper Suggests: libpango1.0-doc, imagemagick Filename: pool/main/p/pango1.0/libpango1.0-dev_1.36.3-1ubuntu1_i386.deb Size: 272760 MD5sum: 73baa4d9f37d06f0868420298e17da85 SHA1: dcb5a8769534aecc6cb361c1a3068643a4fc7df7 SHA256: 1d22becc36533be974813cb5f915bb36978ede386f4c8a5bbb51d0e2045bfaac Description: Development files for the Pango Description-md5: 0f883ef601a4a2795f29e08f094ec275 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpango1.0-doc Priority: optional Section: doc Installed-Size: 2440 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: pango1.0 Version: 1.36.3-1ubuntu1 Depends: lynx | www-browser Recommends: libglib2.0-doc Filename: pool/main/p/pango1.0/libpango1.0-doc_1.36.3-1ubuntu1_all.deb Size: 230490 MD5sum: 33aae3df993ea8ec32443457bec0fe46 SHA1: 3cfb4a19d337f39cd8b228ad85056bff31e547f2 SHA256: 30108b96361f68843e1edeb72616a44853dd7782ace8112a40cf042b4447cdf1 Description: Documentation files for the Pango Multi-Arch: foreign Description-md5: 129d8b92f126e87c9c5d056b414e9dc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libpangocairo-1.0-0 Priority: optional Section: libs Installed-Size: 254 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: libpango1.0-0 (<< 1.32.5-2) Depends: libc6 (>= 2.4), libcairo2 (>= 1.12.10), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.32.4), libpangoft2-1.0-0 (>= 1.28.1) Pre-Depends: multiarch-support Breaks: libpango1.0-0 (<< 1.32.5-2) Filename: pool/main/p/pango1.0/libpangocairo-1.0-0_1.36.3-1ubuntu1_i386.deb Size: 20022 MD5sum: a0447198e5de25a03fe9546605054741 SHA1: 7656b94cb3fb96ad52a4364f2b76a235736e79ca SHA256: a1f15ce6202beb8473ef983fe8c84c4daf18255d0a972451e37f6e406fc8f284 Description: Layout and rendering of internationalized text Multi-Arch: same Description-md5: e707c4d451a8db4e75f943851824d37d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpangoft2-1.0-0 Priority: optional Section: libs Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: libpango1.0-0 (<< 1.32.5-2) Depends: libc6 (>= 2.3.6-6~), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libglib2.0-0 (>= 2.37.3), libharfbuzz0b (>= 0.9.9), libpango-1.0-0 (>= 1.36.0) Pre-Depends: multiarch-support Breaks: libpango1.0-0 (<< 1.32.5-2) Filename: pool/main/p/pango1.0/libpangoft2-1.0-0_1.36.3-1ubuntu1_i386.deb Size: 32588 MD5sum: a915925cd885dbef3a492fd734d6a743 SHA1: a39a381d6c7c48a5fef144bcf05c1a68e8c2ca70 SHA256: 18755e378fc3b9f2f125e92e85c8f0c0cd0608b831b740cc6de88de806cd33cd Description: Layout and rendering of internationalized text Multi-Arch: same Description-md5: e707c4d451a8db4e75f943851824d37d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpangomm-1.4-1 Priority: optional Section: libs Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pangomm Version: 2.34.0-1ubuntu1 Depends: libc6 (>= 2.1.3), libcairomm-1.0-1 (>= 1.6.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libglibmm-2.4-1c2a (>= 2.36.2), libpango-1.0-0 (>= 1.23.0), libpangocairo-1.0-0 (>= 1.23.0), libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/pangomm/libpangomm-1.4-1_2.34.0-1ubuntu1_i386.deb Size: 44572 MD5sum: a8933862ea5b0ca581d1922c8f647a7a SHA1: 65cbe31e46cf4b53d542baa725d89f4d2943fc77 SHA256: 08276302f47079c9479e9e5f1b91118e08a9352ed566b8c822130dd2f4f7909e Description: C++ Wrapper for pango (shared libraries) Multi-Arch: same Homepage: http://gtkmm.org Description-md5: 1e9c4170688ecdff1ffca9576227fc09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpangomm-1.4-dbg Priority: extra Section: libdevel Installed-Size: 1137 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pangomm Version: 2.34.0-1ubuntu1 Depends: libpangomm-1.4-1 (= 2.34.0-1ubuntu1) Filename: pool/main/p/pangomm/libpangomm-1.4-dbg_2.34.0-1ubuntu1_i386.deb Size: 275378 MD5sum: 2f5992a2d6e18ce31c86b7b61aed80cf SHA1: a79cfb935f074c73bd5173fb1c1d2b3b091a0734 SHA256: f5d58088a17ddea61a9fc2aa5f5c3477a21c1848094b1142de075cd42dcd76b0 Description: C++ Wrapper for pango (debugging symbols) Multi-Arch: same Homepage: http://gtkmm.org Description-md5: e7e8b63840a3a14ade8ea4634eb3df26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpangomm-1.4-dev Priority: optional Section: libdevel Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pangomm Version: 2.34.0-1ubuntu1 Depends: libpangomm-1.4-1 (= 2.34.0-1ubuntu1), libcairomm-1.0-dev (>= 1.2.2), libglibmm-2.4-dev (>= 2.36.0), libpango1.0-dev (>= 1.23.0) Filename: pool/main/p/pangomm/libpangomm-1.4-dev_2.34.0-1ubuntu1_i386.deb Size: 43838 MD5sum: 378385d920165f528ee6553344e8796b SHA1: 3a90e8bf7714f1bfbb4c1c9ab29370babf4adbb0 SHA256: 97d3f9395c04dbe7dc77ee591801223c35367328e9a73c779a12fa581eef47c4 Description: C++ Wrapper for pango (development files) Multi-Arch: same Homepage: http://gtkmm.org Description-md5: 640344f02f0bb5f2df308dd78949912f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpangomm-1.4-doc Priority: optional Section: doc Installed-Size: 2760 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: pangomm Version: 2.34.0-1ubuntu1 Depends: lynx | www-browser, doc-base Suggests: gtkmm-documentation Filename: pool/main/p/pangomm/libpangomm-1.4-doc_2.34.0-1ubuntu1_all.deb Size: 190886 MD5sum: 22733be1debb1c52ea04d294708549bc SHA1: 5ea02e0556ca573ec75da5bad0912acd51fd31e8 SHA256: bdba0f41918b9c248788f11491072794e715ab0ce41f6210549b952abeaeb201 Description: C++ Wrapper for pango (documentation) Multi-Arch: foreign Homepage: http://gtkmm.org Description-md5: f2978a005406186a6db529e233b308be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpangox-1.0-0 Priority: extra Section: oldlibs Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pangox-compat Version: 0.0.2-4ubuntu1 Replaces: libpango1.0-0 (<< 1.32.5-2) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.34.0), libpango-1.0-0 (>= 1.32.5-3~), libx11-6 Pre-Depends: multiarch-support Breaks: libpango1.0-0 (<< 1.32.5-2) Filename: pool/main/p/pangox-compat/libpangox-1.0-0_0.0.2-4ubuntu1_i386.deb Size: 40768 MD5sum: bc8589942576792afd9574d215352cc6 SHA1: dfee8d355ae14bb86712afcdebbfed6bd9849e4d SHA256: 7384ea32716e9b14f632c5a241b22da0972cf641df2a0c55678a6cc2159be29c Description: pango library X backend Multi-Arch: same Description-md5: 553d64a8dceaf05144b88971e17a16b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpangox-1.0-dev Priority: extra Section: libdevel Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pangox-compat Version: 0.0.2-4ubuntu1 Replaces: libpango1.0-dev (<< 1.32.5-2) Depends: libpangox-1.0-0 (= 0.0.2-4ubuntu1), libglib2.0-dev (>= 2.34.0), libpango1.0-dev, libx11-dev, libxrender-dev, pkg-config Breaks: libpango1.0-dev (<< 1.32.5-2) Filename: pool/main/p/pangox-compat/libpangox-1.0-dev_0.0.2-4ubuntu1_i386.deb Size: 40334 MD5sum: dd3e923bfca03f95ba62761c210367f8 SHA1: 0162faf989fe7e4f9e64e858ea761e44275d2a19 SHA256: 2e04455ff0b045a3af41fd46090a236e90c3a047cc363c6307c30fd8fea192e4 Description: pango library X backend - development files Description-md5: 9f3fbaadca23a7621c45c18b9e239868 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpangoxft-1.0-0 Priority: optional Section: libs Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: pango1.0 Version: 1.36.3-1ubuntu1 Replaces: libpango1.0-0 (<< 1.32.5-2) Depends: libc6 (>= 2.4), libfontconfig1 (>= 2.9.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.22.0), libpangoft2-1.0-0 (>= 1.14.0), libx11-6, libxft2 (>> 2.1.1), libxrender1 Pre-Depends: multiarch-support Breaks: libpango1.0-0 (<< 1.32.5-2) Filename: pool/main/p/pango1.0/libpangoxft-1.0-0_1.36.3-1ubuntu1_i386.deb Size: 14856 MD5sum: 6d1e9f457146dd5539d231d14fc7732b SHA1: f6be2be0e982e169d94acf92cb33275fd7545aaa SHA256: a5a270bbb381c877c1393f61a41ad3e93732678ba6151f29ebb40800365c133b Description: Layout and rendering of internationalized text Multi-Arch: same Description-md5: e707c4d451a8db4e75f943851824d37d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpaper-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Sacco Architecture: i386 Source: libpaper Version: 1.1.24+nmu2ubuntu3 Replaces: libpaperg-dev (<< 1.1.9) Provides: libpaperg-dev Depends: libpaper1 (= 1.1.24+nmu2ubuntu3) Filename: pool/main/libp/libpaper/libpaper-dev_1.1.24+nmu2ubuntu3_i386.deb Size: 7472 MD5sum: 802a1ba21663993ea888833acdc5713b SHA1: d9566fcee39091e854a45d8820f64e73ff774776 SHA256: b925442cb56b43c5e25c2e17244e538ab32f017962546c0e1f1c07c4bda26eda Description: library for handling paper characteristics (development files) Multi-Arch: same Description-md5: 6c8179d39b674ad3187dd08617ac4aed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpaper-utils Priority: optional Section: utils Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Sacco Architecture: i386 Source: libpaper Version: 1.1.24+nmu2ubuntu3 Replaces: libpaper1 (<< 1.1.10), libpaperg (<< 1.1.9) Depends: libc6 (>= 2.4), libpaper1 Filename: pool/main/libp/libpaper/libpaper-utils_1.1.24+nmu2ubuntu3_i386.deb Size: 8096 MD5sum: 206d2d3554dbce0441f80befdfb295fd SHA1: de881fc948abc8be50051ff63c811a24f03808f2 SHA256: a63e0a0c33af4c9f4341da132f3bc364a06dc230e1a38cec4456c9e3edb006f7 Description: library for handling paper characteristics (utilities) Multi-Arch: foreign Description-md5: f001a626709825a07a2ba9c24bd625ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpaper1 Priority: optional Section: libs Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Sacco Architecture: i386 Source: libpaper Version: 1.1.24+nmu2ubuntu3 Replaces: libpaperg (<< 1.1.9) Provides: libpaperg Depends: libc6 (>= 2.3), debconf (>= 0.5) | debconf-2.0, ucf (>= 0.28) Pre-Depends: multiarch-support Recommends: libpaper-utils Filename: pool/main/libp/libpaper/libpaper1_1.1.24+nmu2ubuntu3_i386.deb Size: 13432 MD5sum: 4485f750fabf4094d59fb61c300f38f8 SHA1: 09fd40cad46384658cb80c09ebcb58ba31e9b6a8 SHA256: b77048c70be0ded425a09cc7718f4bd31d706aefb6bd71a93b118cc0ae427868 Description: library for handling paper characteristics Multi-Arch: same Description-md5: d6054385af0ea189dc57ebb5c50936f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpar-dist-perl Priority: optional Section: perl Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.49-2 Depends: perl Recommends: libarchive-zip-perl, libyaml-libyaml-perl | libyaml-perl | libyaml-tiny-perl | libyaml-syck-perl Filename: pool/main/libp/libpar-dist-perl/libpar-dist-perl_0.49-2_all.deb Size: 22352 MD5sum: e73b1e0346115d39e3ae65ab7964dd32 SHA1: e0337d150bb4489de437d5fdc6ec50175d87f820 SHA256: 03fd08446dbb383dc3f76c06a78f1c96e45f95cc39d0bab95f3c22fc402c5e9b Description: perl module to create and manipulate PAR distributions Homepage: https://metacpan.org/release/PAR-Dist/ Description-md5: 90e5bcc9819d97c47ac5d1d9a12bcbbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libparams-classify-perl Priority: optional Section: perl Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.013-4build2 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4) Suggests: libscalar-number-perl Filename: pool/main/libp/libparams-classify-perl/libparams-classify-perl_0.013-4build2_i386.deb Size: 22788 MD5sum: f5d4f8ae664680f9bd2b1034d7147f93 SHA1: 6fa85b77e23c38e380b67e3f32525aaf7ba3a3ff SHA256: 17bc9c588cb029dd13a806c309acab8ccc5f6aa05ce9dd17f742a8bbe972582e Description: Perl module for argument type classification Homepage: http://search.cpan.org/dist/Params-Classify/ Description-md5: 87d5673492184545f929dd5fec511f9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libparams-coerce-perl Priority: optional Section: perl Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.14-1 Depends: perl, libparams-util-perl Filename: pool/main/libp/libparams-coerce-perl/libparams-coerce-perl_0.14-1_all.deb Size: 12810 MD5sum: 3ff8d32702ad042fef4b2c2f2e078a11 SHA1: ca3380c94518cb01d69d9bbc42256f6f0b8289b5 SHA256: 408bc6e0c72a92e38411a34ff5f0b9a670f66f269c3df17f10e9244bc38fc735 Description: Perl module to permit parameter coercion for classes Homepage: http://search.cpan.org/dist/Params-Coerce/ Description-md5: 04abe85bb9a4e225bf3bf7f457960f94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libparams-util-perl Priority: optional Section: perl Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Genannt Architecture: i386 Version: 1.07-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libp/libparams-util-perl/libparams-util-perl_1.07-1build1_i386.deb Size: 22236 MD5sum: b0c024c03dc4a6298f8490e72986f69f SHA1: 19f6b27656fdcdd5ea259ea47ced7f6e0ade69ec SHA256: bf9989687f50748d230dbe32778c5df9977a1f45249d22b8804ba506d12ace04 Description: Perl extension for simple stand-alone param checking functions Homepage: http://search.cpan.org/dist/Params-Util/ Description-md5: f808a0c9ede46aa4646c215676f73346 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libparams-validate-perl Priority: optional Section: perl Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.08-1 Depends: perl (>= 5.18.1-4build1), perlapi-5.18.1, libc6 (>= 2.1.3), libmodule-implementation-perl Filename: pool/main/libp/libparams-validate-perl/libparams-validate-perl_1.08-1_i386.deb Size: 52860 MD5sum: 7ca24085551a98126220548281449513 SHA1: bcb54e0dbbefb02c8128eb75f7fc35322ada20b6 SHA256: 856dd9e7d1a97152d2a99a351c320c4c6084f1cf435f9a900c3bd054670fb9be Description: Perl module to validate parameters to Perl method/function calls Homepage: https://metacpan.org/release/Params-Validate/ Description-md5: 5e447d8721950161f2c85427a998a5ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libparse-debcontrol-perl Priority: optional Section: perl Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.005-4 Depends: perl, libio-stringy-perl, libwww-perl, liberror-perl, libexporter-lite-perl Recommends: libtie-ixhash-perl Filename: pool/main/libp/libparse-debcontrol-perl/libparse-debcontrol-perl_2.005-4_all.deb Size: 24248 MD5sum: 82bdc7c643fdfc27504bd43a4103372e SHA1: 90b6561037e7277269c06d51e9d0cc4dfc36fe36 SHA256: c0eb06f4e4585f03ceff24bec3144661070af4491eb2b26f659812c94c68b2bc Description: parser for debian control-like files Homepage: https://metacpan.org/release/Parse-DebControl/ Description-md5: 31fd75256aab72c27dfdb97f5e3f18e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libparse-debianchangelog-perl Priority: optional Section: perl Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Frank Lichtenheld Architecture: all Version: 1.2.0-1ubuntu1 Depends: perl, libtimedate-perl, libclass-accessor-perl, liblocale-gettext-perl, libio-string-perl Suggests: libhtml-parser-perl, libhtml-template-perl, libxml-simple-perl Filename: pool/main/libp/libparse-debianchangelog-perl/libparse-debianchangelog-perl_1.2.0-1ubuntu1_all.deb Size: 53988 MD5sum: 43a272971d31c5b4341358320f66d3f5 SHA1: 48229cc3883ee684cb348d0db8f34593b3862d78 SHA256: c22709a1db1c67ed2dc964c170f70d1636445ff5d091533ab0be7cafc0fe1a83 Description: parse Debian changelogs and output them in other formats Description-md5: 08c18222d22f14a66c281bc5e2f11aa7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libparse-pidl-perl Priority: optional Section: perl Installed-Size: 591 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libparse-yapp-perl, perl Recommends: samba-dev Suggests: libwireshark-dev Filename: pool/main/s/samba/libparse-pidl-perl_4.1.6+dfsg-1ubuntu2_i386.deb Size: 93988 MD5sum: 6162d6954bcbf0d9871d6a9f392879d3 SHA1: 694b0456661accc177b3eff4376ad999533b0817 SHA256: cfb0e393ce6e4db76de5dacf5d40c841b2d6bcd9e23c1bc2cc8504f237619ba3 Description: IDL compiler written in Perl Homepage: http://www.samba.org Description-md5: 34bf529609e38c1052ad365d4ebe9374 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libparse-recdescent-perl Priority: optional Section: perl Installed-Size: 399 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.967009+dfsg-1 Depends: perl Breaks: libcss-perl (<< 1.08-1+nmu2), libmail-imapclient-perl (<< 3.30-2) Filename: pool/main/libp/libparse-recdescent-perl/libparse-recdescent-perl_1.967009+dfsg-1_all.deb Size: 157548 MD5sum: 1d52a4d66a1f5c3d7dbbde3cf195954f SHA1: 6401d82c196c6a420b98d9a21c25d36477604047 SHA256: 442376e5e0ab65a5b0ca32efd9cd14882e5f7d564c5a5844423da19e696b87eb Description: Perl module to create and use recursive-descent parsers Homepage: http://search.cpan.org/dist/Parse-RecDescent/ Description-md5: 85557a0ccc0e903cc0864afc0029c180 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libparse-yapp-perl Priority: optional Section: perl Installed-Size: 200 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.05-12 Depends: perl Filename: pool/main/libp/libparse-yapp-perl/libparse-yapp-perl_1.05-12_all.deb Size: 51078 MD5sum: 2a2d2eb8a667f80479ddf5c45a6dd27b SHA1: a797bd7afbac653020bf6305cad36475a71fff91 SHA256: 1c185122ce52345e03ec2b72ed60b0f4aa7cfb26c4ec708eb169ad017359835c Description: Perl module for creating fully reentrant LALR parser OO Perl modules Homepage: http://search.cpan.org/dist/Parse-Yapp/ Description-md5: 20f57c0f17259125725a96b3e0bf60dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libparted0-dev Priority: optional Section: libdevel Installed-Size: 897 Maintainer: Ubuntu Developers Original-Maintainer: Parted Maintainer Team Architecture: i386 Source: parted Version: 2.3-19ubuntu1 Replaces: libparted-dev, libparted2-dev (<< 2.2) Provides: libparted-dev Depends: libc6-dev, libparted0debian1 (= 2.3-19ubuntu1), libdevmapper-dev (>= 1.02.33), uuid-dev, libblkid-dev Suggests: parted (= 2.3-19ubuntu1), parted-doc Conflicts: libparted-dev, parted (<< 1.2.11) Filename: pool/main/p/parted/libparted0-dev_2.3-19ubuntu1_i386.deb Size: 221148 MD5sum: 9da69f141146e65c5680f9e297632cc4 SHA1: 4a16bb13c8ab6ac7fe4f76f94b892cb04a87ae12 SHA256: fda1a1678c993e7c20b29ea2892152342e69e5c3617a2894d283717e6757b441 Description: disk partition manipulator - development files Homepage: http://www.gnu.org/software/parted Description-md5: d9820491205202cf089e9bf9709d4f3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libparted0debian1 Priority: standard Section: libs Installed-Size: 552 Maintainer: Ubuntu Developers Original-Maintainer: Parted Maintainer Team Architecture: i386 Source: parted Version: 2.3-19ubuntu1 Replaces: libparted0 (<< 2.2-4), libparted1 (<< 2.2), libparted1.4 (<< 1.4.24-2), libparted2 (<< 2.2) Provides: libparted Depends: libblkid1 (>= 2.17.2), libc6 (>= 2.8), libdevmapper1.02.1 (>= 2:1.02.36), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Suggests: parted | nparted, libparted0-dev, libparted0-i18n (= 2.3-19ubuntu1) Conflicts: libparted1 (<< 2.2), libparted2 (<< 2.2), parted (<< 1.4.13+14pre1) Breaks: python-parted (<< 3.6-5) Filename: pool/main/p/parted/libparted0debian1_2.3-19ubuntu1_i386.deb Size: 184674 MD5sum: 4f0557dc4e8d9c710d413f328fa13e23 SHA1: c24ab68e1fa5b71e58fb7d7a399acffb689bb496 SHA256: 723fc543f2f9e8e28694ecbb6052c8ab425330f685a49b8065b780d492c6f1d4 Description: disk partition manipulator - shared library Multi-Arch: same Homepage: http://www.gnu.org/software/parted Description-md5: 8351c24350acd1cda567a096a68bf6b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libparted0debian1-dbg Priority: extra Section: debug Installed-Size: 2300 Maintainer: Ubuntu Developers Original-Maintainer: Parted Maintainer Team Architecture: i386 Source: parted Version: 2.3-19ubuntu1 Replaces: libparted-dbg, libparted0-dbg (<< 2.2-4) Provides: libparted-dbg Depends: libparted0debian1 (= 2.3-19ubuntu1) Conflicts: libparted-dbg Filename: pool/main/p/parted/libparted0debian1-dbg_2.3-19ubuntu1_i386.deb Size: 661214 MD5sum: 3857cad6e0e82a1460b4d6eda7fc72dd SHA1: d1291c7169e102c987d0143b504b6229188037ee SHA256: 205cfbc5264ccd05c7e901a0be889cc7c2406b7ad8441f275353708209808a4c Description: disk partition manipulator - debugging symbols Homepage: http://www.gnu.org/software/parted Description-md5: 4562bda78b5f6c66ce5b4a8b3883fc78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-class-perl Priority: optional Section: perl Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.33-1 Depends: perl (>= 5.13.9) Filename: pool/main/libp/libpath-class-perl/libpath-class-perl_0.33-1_all.deb Size: 37242 MD5sum: fcae8260beb6ba394b1dac341a1b01d8 SHA1: d04bdbdf5607b2c6ef468696333e1c588499a1c8 SHA256: 1c506a2912dfbdb7c612ad58619c2a8f65f86353a72e0d3a333dbd825bc59e47 Description: module for cross-platform path specification manipulation Homepage: https://metacpan.org/release/Path-Class/ Description-md5: 25649d958f6aa1acb64975af942871a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-finddev-perl Priority: optional Section: perl Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.4.0-1 Depends: perl, libclass-tiny-perl, libpath-isdev-perl, libpath-tiny-perl (>= 0.038), libsub-exporter-perl Filename: pool/main/libp/libpath-finddev-perl/libpath-finddev-perl_0.4.0-1_all.deb Size: 12284 MD5sum: 2a98941d932a794d21970cb61f0e5f91 SHA1: 4ce1c55574fc41d14ea0ba512a722250733f0822 SHA256: 3b071347f76f7f2655cc59f567a2e53d5d99e290ce10a3868d20737a27f14bc4 Description: Perl module to find a development source tree somewhere in an upper hierarchy Homepage: https://metacpan.org/release/Path-FindDev Description-md5: 740233b696755cc39c08cb31b56e78d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-isdev-perl Priority: optional Section: perl Installed-Size: 241 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.000002-1 Depends: perl, libclass-tiny-perl, libfile-homedir-perl, libmodule-runtime-perl, libpath-tiny-perl, librole-tiny-perl, libsub-exporter-perl Filename: pool/main/libp/libpath-isdev-perl/libpath-isdev-perl_1.000002-1_all.deb Size: 78212 MD5sum: 0fa57bb1a9076e2fe3e7cb6f95c697bb SHA1: a8dd3b9348a036dfe3239a09416ced0542a79560 SHA256: 4fd9a54054a48a875c09104ed8d0460bf3684ce3df42ab3d2f6a1f097148a603 Description: Perl module to determine if a given Path resembles a development source tree Homepage: https://metacpan.org/release/Path-IsDev Description-md5: 5dfdaf6fe2b410c4d8da3612a663cd24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-tiny-perl Priority: optional Section: perl Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.052-1 Depends: perl (>= 5.17.8) | libfile-spec-perl (>= 3.4000), perl Recommends: libunicode-utf8-perl Filename: pool/main/libp/libpath-tiny-perl/libpath-tiny-perl_0.052-1_all.deb Size: 36894 MD5sum: eff6c25b48f5d0f3a7bdb297cd70f876 SHA1: 12423035e858fd62d819fcdfa17687a96b22070b SHA256: 62f65c90b562ffc9f3f29723e236a32d2b644040765535750b614ffc4f3eab34 Description: file path utility Homepage: https://metacpan.org/module/Path::Tiny Description-md5: 854030140749a1874a01d47751fbbf89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-utils-dev Priority: extra Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Depends: libpath-utils1 (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libpath-utils-dev_0.3.0.1-4_i386.deb Size: 10414 MD5sum: a3ae738737df9f683e99c98520705cb8 SHA1: 3177253fe269b4592aa2c857641ef85db4435178 SHA256: b4856eabbd2f3557a6ee196ade3ab7d1117132d1d5134e4689d29a9efeabde56 Description: Development files for libpath_utils Homepage: https://fedorahosted.org/sssd/ Description-md5: 54bf655c831be3d99a1fa0420b77d110 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpath-utils1 Priority: extra Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Replaces: libpath-utils Provides: libpath-utils Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: libpath-utils Filename: pool/main/d/ding-libs/libpath-utils1_0.3.0.1-4_i386.deb Size: 8518 MD5sum: fface69a1c25daec36183e9d850a5c51 SHA1: 9eddf790d144e881edc335b85b88813a9c171281 SHA256: 87650b9f526893a064033e809b0d6f2229e5b9ff49e19b99612f61da9045f7cf Description: Filesystem Path Utilities Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: c0ce74390abe0b217dcc2f63c13cbf46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpathplan4 Priority: optional Section: libs Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: i386 Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.11) Conflicts: libgraphviz4 Filename: pool/main/g/graphviz/libpathplan4_2.36.0-0ubuntu3_i386.deb Size: 25468 MD5sum: 09d558ab5ceaa895c5fd1b8808d92e62 SHA1: 8c6d85c8c657f32bc5034e7c6f6d60cd3c52f494 SHA256: 0b5e7ba9ec7d065170c1104f28148e6241992707f9263242749454cf5651b7f1 Description: rich set of graph drawing tools - pathplan library Homepage: http://www.graphviz.org/ Description-md5: 3b349696750e1cfac5e966e847c18e9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-audio Package: libpcap-dev Priority: optional Section: libdevel Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: all Source: libpcap Version: 1.5.3-2 Depends: libpcap0.8-dev Filename: pool/main/libp/libpcap/libpcap-dev_1.5.3-2_all.deb Size: 3390 MD5sum: ae4f8e54c80522f0d3139ec1b7f96896 SHA1: cbf03a352245cb7be02b4e18cc11b07bd2a1f2fb SHA256: ae35ccac2f8ae3df15a69845e95737f2340c86b609f988eb45b2827f46a4250f Description: development library for libpcap (transitional package) Homepage: http://www.tcpdump.org/ Description-md5: 10078daf2f68ccb78a8fc1970d8c94f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcap0.8 Priority: standard Section: libs Installed-Size: 308 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: i386 Source: libpcap Version: 1.5.3-2 Replaces: libpcap0.8-dev (<< 1.0.0-2) Depends: libc6 (>= 2.11) Pre-Depends: multiarch-support Filename: pool/main/libp/libpcap/libpcap0.8_1.5.3-2_i386.deb Size: 108114 MD5sum: e8c4c91f5a42bc0f0faddb37256bb988 SHA1: a198aa1c5051dbabed1ad15503349690396fe4e3 SHA256: dcd2dac76fa6d32767e131bc7d9402640a8d22367b4cda7b59e03951be0aba96 Description: system interface for user-level packet capture Multi-Arch: same Homepage: http://www.tcpdump.org/ Description-md5: fc353603d8470e05b8e9063ea61ff608 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libpcap0.8-dbg Priority: extra Section: libs Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: i386 Source: libpcap Version: 1.5.3-2 Depends: libpcap0.8 (= 1.5.3-2) Filename: pool/main/libp/libpcap/libpcap0.8-dbg_1.5.3-2_i386.deb Size: 201580 MD5sum: 0a8e3360115d1fda912ec049d607a96b SHA1: 6596d96d1e3bffe697219d113cbfa6343ac6e223 SHA256: 2acd65c39eaf3433e8647eabbee6ab4100569749d846a8f84a65671cc8c3465f Description: debugging symbols for libpcap0.8 Multi-Arch: same Homepage: http://www.tcpdump.org/ Description-md5: 701becc772f7894cd3102113c5f949bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcap0.8-dev Priority: optional Section: libdevel Installed-Size: 550 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: i386 Source: libpcap Version: 1.5.3-2 Depends: libpcap0.8 (= 1.5.3-2), libc6-dev Conflicts: libpcap-dev (<< 0.9), libpcap0.7-dev Filename: pool/main/libp/libpcap/libpcap0.8-dev_1.5.3-2_i386.deb Size: 200048 MD5sum: 1d414a881438860edfdd900ce0a10b12 SHA1: 7d0f86b7cbae278e329404f48a9d36aab1fa0e20 SHA256: 6332a2bf56763297ea6034d9b907d7318c7821fdb8ad3c514329e647b290efd5 Description: development library and header files for libpcap0.8 Homepage: http://www.tcpdump.org/ Description-md5: 847ec6013e502e2a10ed73e3627d72b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpci-dev Priority: optional Section: libdevel Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: pciutils Version: 1:3.2.1-1ubuntu5 Replaces: pciutils-dev Provides: pciutils-dev Depends: zlib1g-dev, libpci3 (= 1:3.2.1-1ubuntu5) Conflicts: pciutils-dev Filename: pool/main/p/pciutils/libpci-dev_3.2.1-1ubuntu5_i386.deb Size: 43748 MD5sum: bd46f415c08703c5d39f5eef050473ce SHA1: a66d7b0532766e8d509adcd0d449f5586e402e20 SHA256: 64dad0c0b555017769234cdd337a0015cd5a0856dd59de5aa92c62b2363ddd23 Description: Linux PCI Utilities (development files) Homepage: http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml Description-md5: fce92e421e497830481519e908a4e6a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpci3 Priority: standard Section: libs Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: pciutils Version: 1:3.2.1-1ubuntu5 Replaces: libpci2 Provides: libpci2 Depends: libc6 (>= 2.7), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Conflicts: libpci2 Filename: pool/main/p/pciutils/libpci3_3.2.1-1ubuntu5_i386.deb Size: 25524 MD5sum: 8f09d582e691e3dca79969c69e047f46 SHA1: 61be4f82db867f4062738fb5688967b83d857ef1 SHA256: 395bce70662309263c31bc9bcf58d1c7393fff23f89a92af06c714aa4f6b9e08 Description: Linux PCI Utilities (shared library) Multi-Arch: same Homepage: http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml Description-md5: 67ffa1d7d0b8a6cad1437318cee6c16e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libpciaccess-dev Priority: extra Section: libdevel Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libpciaccess Version: 0.13.2-1 Depends: libpciaccess0 (= 0.13.2-1) Filename: pool/main/libp/libpciaccess/libpciaccess-dev_0.13.2-1_i386.deb Size: 23024 MD5sum: bf7ff0db9bb2d56a46297fd51e4f41fe SHA1: e5d7a04c2be4b669884a2fb69a5384953df9776c SHA256: edc5129808b7abff530b5590404562882feada51a092f46e5898a212b25a2747 Description: Generic PCI access library for X - development files Multi-Arch: same Description-md5: 067fbd69053414843ebc52977e2799ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpciaccess0 Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libpciaccess Version: 0.13.2-1 Depends: libc6 (>= 2.7), zlib1g (>= 1:1.2.3.3) Pre-Depends: multiarch-support Suggests: pciutils Filename: pool/main/libp/libpciaccess/libpciaccess0_0.13.2-1_i386.deb Size: 21934 MD5sum: 9825d7eec10900a0616e6e3bb9ba6b13 SHA1: e29464162c337f1faf677f59f38031d7cda65582 SHA256: 798e53ef33a69a664a9d08f3cfcddc8885e2014935247d736e72999f6dc2e724 Description: Generic PCI access library for X Multi-Arch: same Description-md5: 6a3a8434290002dc03f21f8a07b9357c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpcre3 Priority: required Section: libs Installed-Size: 458 Maintainer: Ubuntu Developers Original-Maintainer: Mark Baker Architecture: i386 Source: pcre3 Version: 1:8.31-2ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: libpcre3-dev (<= 4.3-3) Breaks: approx (<< 4.4-1~), cduce (<< 0.5.3-2~), cmigrep (<< 1.5-7~), galax (<< 1.1-7~), libpcre-ocaml (<< 6.0.1~), liquidsoap (<< 0.9.2-3~), ocsigen (<< 1.3.3-1~) Filename: pool/main/p/pcre3/libpcre3_8.31-2ubuntu2_i386.deb Size: 139624 MD5sum: f3548664fd904ce390e32e73a64720c4 SHA1: dbff0e6903a8605d49a88c92719d2ebe7a1c155c SHA256: eac92bc73efc523ea1cdfaf178342ca5311b10714d3213d6ca62d712ec736160 Description: Perl 5 Compatible Regular Expression Library - runtime files Multi-Arch: same Description-md5: ab0ea99159dc866cd24051e8eda806df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpcre3-dbg Priority: optional Section: libdevel Installed-Size: 523 Maintainer: Ubuntu Developers Original-Maintainer: Mark Baker Architecture: i386 Source: pcre3 Version: 1:8.31-2ubuntu2 Depends: libpcre3 (= 1:8.31-2ubuntu2), libpcrecpp0 (= 1:8.31-2ubuntu2) Filename: pool/main/p/pcre3/libpcre3-dbg_8.31-2ubuntu2_i386.deb Size: 120220 MD5sum: a0f262397e8b52e8fdce009e50f3f5de SHA1: d7bce3ce8b64e4f8acbea1c2cc2feb4b86c0e536 SHA256: 5703d5d767bd306a10d5e72e010780846f9b25d279f0a693c06f7ef97184f9ff Description: Perl 5 Compatible Regular Expression Library - debug symbols Multi-Arch: same Description-md5: 90e6eddc5cb44959d66e3c4762ddd9ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcre3-dev Priority: optional Section: libdevel Installed-Size: 668 Maintainer: Ubuntu Developers Original-Maintainer: Mark Baker Architecture: i386 Source: pcre3 Version: 1:8.31-2ubuntu2 Depends: libc6-dev, libpcre3 (= 1:8.31-2ubuntu2), libpcrecpp0 (= 1:8.31-2ubuntu2) Conflicts: libpcre1-dev, libpcre2-dev Filename: pool/main/p/pcre3/libpcre3-dev_8.31-2ubuntu2_i386.deb Size: 232216 MD5sum: 9813dbc08348ed5593a6d4e37aecb90c SHA1: 99e934e1aa28972ba185d4dce287b4e3acf87410 SHA256: 38739e20810658e6e37c44871c71f520c1f5d225bf200c85faa1656410a7a09d Description: Perl 5 Compatible Regular Expression Library - development files Multi-Arch: same Description-md5: 3841aaec6be821ceb04646f8f92bb95c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcrecpp0 Priority: optional Section: libs Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Mark Baker Architecture: i386 Source: pcre3 Version: 1:8.31-2ubuntu2 Replaces: libpcre3 (<< 6.4-1.1) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libpcre3, libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Conflicts: libpcre3 (<< 6.4-1.1) Filename: pool/main/p/pcre3/libpcrecpp0_8.31-2ubuntu2_i386.deb Size: 14658 MD5sum: d37cc514501a00027c146168d84f1e16 SHA1: 64fef3a9178121f77005e4b282ba8431d2ebe99a SHA256: 2dd5fd18a3e13ad4d3dbeccd13af0e6c1211860dd77b02324fad9a23b72a550a Description: Perl 5 Compatible Regular Expression Library - C++ runtime files Multi-Arch: same Description-md5: 3b12455ea2b74183d9c72b5673d42d01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcsclite-dev Priority: extra Section: libdevel Installed-Size: 194 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: i386 Source: pcsc-lite Version: 1.8.10-1ubuntu1 Depends: libpcsclite1 (= 1.8.10-1ubuntu1), libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: python Filename: pool/main/p/pcsc-lite/libpcsclite-dev_1.8.10-1ubuntu1_i386.deb Size: 36432 MD5sum: 87b14b8eba7cc3b631267b537162199c SHA1: f8a3381edb25132dbed53cfe93ac41b2f561851a SHA256: c83fdefa65bd2ad2faf0bd2cd8f64a680e764e21c743c1f3cd48653f9ae55349 Description: Middleware to access a smart card using PC/SC (development files) Homepage: http://pcsclite.alioth.debian.org/ Description-md5: 79cb78e4120cf41d9b79039b6d0786e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpcsclite1 Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: i386 Source: pcsc-lite Version: 1.8.10-1ubuntu1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Suggests: pcscd (= 1.8.10-1ubuntu1) Breaks: libpcsclite-dev (<< 1.8.10-1ubuntu1), pcscd (<< 1.8.10-1ubuntu1) Filename: pool/main/p/pcsc-lite/libpcsclite1_1.8.10-1ubuntu1_i386.deb Size: 21004 MD5sum: a02daad75b2894f2cc1095373e7fdf79 SHA1: 7a9bce79012d88c0a4c2cc0c9848bc8ab7eb3a99 SHA256: 65def6dd92eb5331937fce5e7aa1257b04a4bf45b7c38a166bdd80c83fa8e4af Description: Middleware to access a smart card using PC/SC (library) Multi-Arch: same Homepage: http://pcsclite.alioth.debian.org/ Description-md5: 75c3114d0742624996e5bf79fc4618e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, tomcat-server, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpcsclite1-dbg Priority: extra Section: debug Installed-Size: 242 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: i386 Source: pcsc-lite Version: 1.8.10-1ubuntu1 Replaces: libpcsclite-dbg Depends: libpcsclite1 (= 1.8.10-1ubuntu1) Conflicts: libpcsclite-dbg Filename: pool/main/p/pcsc-lite/libpcsclite1-dbg_1.8.10-1ubuntu1_i386.deb Size: 155912 MD5sum: 2e6e7d42d5682e20b89455912297d8c7 SHA1: 785194068a2d312599142c24f5944298ae66fd4b SHA256: 5ce93c68ef31fd9a9687799dc6634eac589c125111080681e308f4d4af6de2e1 Description: Middleware to access a smart card using PC/SC (debugging symbols) Multi-Arch: same Homepage: http://pcsclite.alioth.debian.org/ Description-md5: 1b4115e6ab131cd3aae5a163c4442327 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpe-rules2 Priority: optional Section: libs Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpe-rules-2 (<= 1.0.10-1), pacemaker (<= 1.0.9.1+hg15626-2) Depends: libc6 (>= 2.4), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libqb0 Conflicts: libpe-rules-2 (<= 1.0.10-1), pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libpe-rules2_1.1.10+git20130802-1ubuntu2_i386.deb Size: 14710 MD5sum: 48b9f2ec54fb857af8dd4f313d5da691 SHA1: 55269789cf5415ccd4990c3e82f9fc7fc257f594 SHA256: 63d50187124a66aff0418dc9f44c5d29f631e54cb5d7ad677004c027347e25ff Description: Pacemaker libraries - rules for P-Engine Homepage: http://clusterlabs.org/ Description-md5: c9973e28b11e88b80273ac25fa092956 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpe-rules2-dev Priority: optional Section: libdevel Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpe-rules-2-dev (<= 1.0.10-1), pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libpe-rules2 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libpe-rules-2-dev (<= 1.0.10-1), pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libpe-rules2-dev_1.1.10+git20130802-1ubuntu2_i386.deb Size: 16006 MD5sum: 30ae1701c38f125ad09afd9acf0496cc SHA1: 16fbc2e177b0d9b7606594c4b69298dd5cf9f2bf SHA256: 7ca50253cfdae455e14b35e17e9a44d04014331fe79721eefdd324123e87af0d Description: Development file for pacemaker's rules library Homepage: http://clusterlabs.org/ Description-md5: 95030e3a0fd7d07823478ba562e19ce1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpe-status4 Priority: optional Section: libs Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpe-status-2 (<= 1.0.10-1), libpe-status3, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libc6 (>= 2.4), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libncurses5 (>= 5.5-5~), libqb0, libtinfo5, libxml2 (>= 2.7.4) Conflicts: libpe-status-2 (<= 1.0.10-1), libpe-status3, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libpe-status4_1.1.10+git20130802-1ubuntu2_i386.deb Size: 72416 MD5sum: 86413e504e2b21ea477398815e22cc4f SHA1: fcdc688061dc45506fe0385c41a2c23cca7b3080 SHA256: 860adfb1c6ed10f81aae38c504c372b42b5457e7f27949346524a2deda1b0e70 Description: Pacemaker libraries - status for P-Engine Homepage: http://clusterlabs.org/ Description-md5: f4372d525f4f0c133a0ffa27c2f67016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpe-status4-dev Priority: optional Section: libdevel Installed-Size: 382 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpe-status-2-dev (<= 1.0.10-1), libpe-status2-dev, libpe-status3-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libpe-status4 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libpe-status-2-dev (<= 1.0.10-1), libpe-status2-dev, libpe-status3-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libpe-status4-dev_1.1.10+git20130802-1ubuntu2_i386.deb Size: 89032 MD5sum: 48a6f1d2e110432f3f08cb8cdb454352 SHA1: 039013b13ecdc1e0218fe74f64182b38c523b338 SHA256: 2b7ab91f6a077bd8b49500db7f95e3536ea0747e4307ae36b6ccc8583d0bab85 Description: Development file for pacemaker's status library Homepage: http://clusterlabs.org/ Description-md5: 7922ec9a8a41c138ba00b6f2bbe39e60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpeas-1.0-0 Priority: extra Section: libs Installed-Size: 310 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libpeas Version: 1.8.1-2ubuntu2 Depends: libc6 (>= 2.4), libgirepository-1.0-1 (>= 0.9.2), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.0.0), libpython2.7 (>= 2.7), libpython3.4 (>= 3.4~b1), libpeas-common Filename: pool/main/libp/libpeas/libpeas-1.0-0_1.8.1-2ubuntu2_i386.deb Size: 51832 MD5sum: 2dd5576ec136f961f45550bcfa98bc65 SHA1: 8356a36c185aa7beb133e6cfbb8ca715f3efdc72 SHA256: 8b986c741089025e806b786f6d9bfb9f36cda2792bebab3318c723c12fb50c96 Description: Application plugin library Homepage: https://wiki.gnome.org/Libpeas Description-md5: 3f80da95d5376fd25d9270857554e87d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpeas-common Priority: extra Section: libs Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libpeas Version: 1.8.1-2ubuntu2 Replaces: libpeas-1.0-0 (<< 0.7.0-1) Filename: pool/main/libp/libpeas/libpeas-common_1.8.1-2ubuntu2_all.deb Size: 13102 MD5sum: 06032c2c39fcc28a41cd960242a1f51e SHA1: 08325ad6f485f4ad2c339a19bc3fe86bda00c117 SHA256: 47135f37184c00455c58c12466f0c4441e33eb629733d09e80a915b4bf106d7c Description: Application plugin library (common files) Homepage: https://wiki.gnome.org/Libpeas Description-md5: f57e59d56f6b30c3e45ea69ce400d9d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpeas-dev Priority: extra Section: libdevel Installed-Size: 312 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libpeas Version: 1.8.1-2ubuntu2 Depends: libpeas-1.0-0 (= 1.8.1-2ubuntu2), gir1.2-peas-1.0 (= 1.8.1-2ubuntu2), libglib2.0-dev (>= 2.31.2), libgirepository1.0-dev (>= 0.10.1), libgtk-3-dev (>= 2.90) Suggests: libpeas-doc Filename: pool/main/libp/libpeas/libpeas-dev_1.8.1-2ubuntu2_i386.deb Size: 17646 MD5sum: a65e503d83bc20c66f61835c75a22043 SHA1: 1f50388748b359a09c8468e02706788bb33847fd SHA256: 8fe29643d297848c48680e9572f81a33534e47d475a474e78d5ea843746c74fa Description: Application plugin library (development files) Homepage: https://wiki.gnome.org/Libpeas Description-md5: 24ebb31b049bc8580a6082cdf3af558f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpeas-doc Priority: extra Section: doc Installed-Size: 578 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libpeas Version: 1.8.1-2ubuntu2 Depends: libc6 (>= 2.3.6-6~), libgirepository-1.0-1 (>= 0.9.2), libglib2.0-0 (>= 2.31.2), libgtk-3-0 (>= 3.0.0), libpeas-1.0-0 (>= 1.1.0) Conflicts: libpeas-examples Filename: pool/main/libp/libpeas/libpeas-doc_1.8.1-2ubuntu2_i386.deb Size: 64736 MD5sum: 12926ecbbbb9ef0c73893e23fab1c03c SHA1: b275d4f1663a02e87a86e955ec55453c8171d476 SHA256: 428c96dea4dc2f93c377e107af34b6e7e8d3b7c9ca0daa7cbff5348bbf1781c7 Description: Application plugin library (documentation) Homepage: https://wiki.gnome.org/Libpeas Description-md5: 648a49618986d2488dba598ea56550b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpengine4 Priority: optional Section: libs Installed-Size: 403 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpengine3, pacemaker (<= 1.0.9.1+hg15626-2), pacemaker-dev (<< 1.1.8+git20121010-1) Depends: libc6 (>= 2.4), libcib3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libpe-status4 (>= 1.1.10+git20130802), libqb0, libxml2 (>= 2.7.4) Conflicts: libpengine3, pacemaker (<= 1.0.9.1+hg15626-2), pacemaker-dev (<< 1.1.8+git20121010-1) Filename: pool/main/p/pacemaker/libpengine4_1.1.10+git20130802-1ubuntu2_i386.deb Size: 107832 MD5sum: ad71dda84ded4edd5de62760b12116dc SHA1: 56992f436d4994b59858a63ab5107c61d80be28c SHA256: e2013356918a5c6952473bfa7563474c3789db47f637c8f96d964068746dc840 Description: Pacemaker libraries - P-Engine Homepage: http://clusterlabs.org/ Description-md5: f26b8e819a87fc3637afefe72e60d21c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpengine4-dev Priority: optional Section: libdevel Installed-Size: 628 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libpengine3-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libpengine4 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libpengine3-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libpengine4-dev_1.1.10+git20130802-1ubuntu2_i386.deb Size: 139790 MD5sum: 8c13855504201971228e756d3fadf262 SHA1: f69ca630e7c982dde9c559984d4b212c383e99c8 SHA256: 2cacc7de357e0ee09d053cce269661d16e157835082a66461193f993cbeefd03 Description: Development file for pacemaker's pengine library Homepage: http://clusterlabs.org/ Description-md5: a14b6499b011e9dad1273150f994aff0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libperl-critic-perl Priority: optional Section: perl Installed-Size: 2237 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.121-1 Depends: libb-keywords-perl, libconfig-tiny-perl, libemail-address-perl, libexception-class-perl, libfile-homedir-perl, libfile-which-perl, libio-string-perl, liblist-moreutils-perl, libmodule-pluggable-perl | perl (<< 5.17.0), libpod-spell-perl, libppi-perl (>= 1.215), libppix-regexp-perl (>= 0.027), libppix-utilities-perl, libreadonly-perl, libreadonly-xs-perl, libstring-format-perl, libtask-weaken-perl, perltidy, perl Filename: pool/main/libp/libperl-critic-perl/libperl-critic-perl_1.121-1_all.deb Size: 934932 MD5sum: f65f9eb39aa353ae406915b7fb553509 SHA1: 6953e07c875572c76b7f111a040047c89654d1a9 SHA256: 88ea2c120644888cccad68f93d9d105e3b585b10e106c38b26b905c1e5b44e9e Description: Perl module to critique code for best practices Homepage: https://metacpan.org/release/Perl-Critic/ Description-md5: 5c461a970fff1643c12b1a918d67e5fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libperl-dev Priority: optional Section: libdevel Installed-Size: 7493 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: i386 Source: perl Version: 5.18.2-2ubuntu1 Depends: perl (= 5.18.2-2ubuntu1), libperl5.18 (= 5.18.2-2ubuntu1), libc6-dev | libc-dev Filename: pool/main/p/perl/libperl-dev_5.18.2-2ubuntu1_i386.deb Size: 2116768 MD5sum: 5a6ad96030d789e0cd1df3ac4974bc87 SHA1: de845cfa31cd3b6551ad970e527bb2f5e2f06403 SHA256: 50529c5370c89c5988664ca551e7fb22d82ef1decf88d1b22430007e32294efd Description: Perl library: development files Homepage: http://dev.perl.org/perl5/ Description-md5: 493158c7ca91f27f024cd9c2d9d421aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libperl-minimumversion-perl Priority: optional Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.32-1 Depends: perl, libfile-find-rule-perl, libfile-find-rule-perl-perl, libparams-util-perl, libperl-critic-perl, libppi-perl (>= 1.215), libppix-regexp-perl (>= 0.029) Filename: pool/main/libp/libperl-minimumversion-perl/libperl-minimumversion-perl_1.32-1_all.deb Size: 24252 MD5sum: f088db57ca7ba2c181686c1f7ddd3400 SHA1: 429bd518700406fb1dce517749e09a4a3517428e SHA256: ff9226a7309adf66e5e6b630ad370b6d49ec6f02658500dd3bf1c0ceba16c425 Description: module to determine minimum required version of perl required Homepage: https://metacpan.org/release/Perl-MinimumVersion/ Description-md5: e80178659ae89e167b9b29c1a3673225 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libperl4-corelibs-perl Priority: optional Section: perl Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.003-1 Depends: perl Filename: pool/main/libp/libperl4-corelibs-perl/libperl4-corelibs-perl_0.003-1_all.deb Size: 43020 MD5sum: ac2480275620638ca49e6a20eedbfe7a SHA1: 604163c7678252683d3117d361e74a7e7dcec249 SHA256: 80561fbda924a12c2d5a261d98f9817e4cb5646577c815579b777e13424d22c1 Description: libraries historically supplied with Perl 4 Homepage: http://search.cpan.org/dist/Perl4-CoreLibs/ Description-md5: 5836e6555acbd562a5ae7d4a2cabb40c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-dvd-live, ubuntustudio-audio Package: libperl5.18 Priority: optional Section: libs Installed-Size: 1641 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: i386 Source: perl Version: 5.18.2-2ubuntu1 Replaces: perl-base (<= 5.8.7-4) Depends: libc6 (>= 2.11), perl-base (= 5.18.2-2ubuntu1) Filename: pool/main/p/perl/libperl5.18_5.18.2-2ubuntu1_i386.deb Size: 623612 MD5sum: 96b7968806f26c3ec2cf9b6b23d04ceb SHA1: e68689ed5259110988d289abf01e471bdbedd6c4 SHA256: 5e719c7868010b5203496a54ebd132e6eccf28cc3dfead4cea0a358bf7028625 Description: shared Perl library Homepage: http://dev.perl.org/perl5/ Description-md5: 201a341014bbc42f83ce4b74bbb7da77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libperlio-gzip-perl Priority: optional Section: perl Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.18-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4), zlib1g (>= 1:1.1.4) Filename: pool/main/libp/libperlio-gzip-perl/libperlio-gzip-perl_0.18-1build3_i386.deb Size: 15694 MD5sum: dde11d0d9d41538b8095bcb68128e84d SHA1: 32787af2ceee170327b890acc265c666364e298c SHA256: 8b15636026ee3cbd6cf571458f23bc0d0e0bedc7ac8f98bc28651028494b7aea Description: module providing a PerlIO layer to gzip/gunzip Homepage: http://search.cpan.org/dist/PerlIO-gzip/ Description-md5: 2130ed8bcc3cb383e4a602f4c49f191d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpgtypes3 Priority: optional Section: libs Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.4) Filename: pool/main/p/postgresql-9.3/libpgtypes3_9.3.4-1_i386.deb Size: 38818 MD5sum: a318efc8fbe0d4089b7d1935dd704574 SHA1: f1e7893cd1b6d207489c396b5aa424c887a1253b SHA256: 3624bd432c6e7c93d556ec58d0bd2308a9bb9b64f165b28d976f5ba06c70048d Description: shared library libpgtypes for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: b1075e2aafb9dc13e19627828de4889b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphobos-4.8-dev Priority: optional Section: libdevel Installed-Size: 42670 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: gdc-4.8 (<< 4.8.2-19) Provides: libphobos-dev Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), zlib1g-dev Filename: pool/main/g/gcc-4.8/libphobos-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 6156684 MD5sum: d7985c5be95ce5a1d22496bbbd3e891a SHA1: de369bc3440cba2ba2ca12c2b360fa4be783d861 SHA256: fe4e80e75ec5a1d8b34644dddbf3e1b3e1b76f541a0c660e8b2ecc8f744b6b98 Description: Phobos D standard library Homepage: http://gcc.gnu.org/ Description-md5: 319ab24aa69f1d17bbae7ba6a543ecfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon-dev Priority: optional Section: libdevel Installed-Size: 484 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libphonon4 (= 4:4.7.1-0ubuntu8), phonon-backend-null | phonon, libqt4-dev (>= 4:4.8.1), libc6 (>= 2.1.3), libqt4-designer (>= 4:4.8.1), libqtcore4 (>= 4:4.8.1), libqtgui4 (>= 4:4.8.1), libstdc++6 (>= 4.1.1) Filename: pool/main/p/phonon/libphonon-dev_4.7.1-0ubuntu8_i386.deb Size: 79578 MD5sum: 181bdc1e71e172f73a607ed4a5e6b41f SHA1: d873c07a9a5c23f197d66ac1e16582fb0b0061be SHA256: 6572eb42be41f4a2237ad21debf133d74e2a8339a081d6cb199840aba526877d Description: multimedia framework from KDE - development files Homepage: http://phonon.kde.org/ Description-md5: 13c3758ebe56ad03f8ddb9ad9bf5c92c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokephonon3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libphonon-perl_4.13.0-0ubuntu1_i386.deb Size: 9768 MD5sum: bc6348c11f752bdd325943a4e4e6e9e9 SHA1: 55bade8d90ad38a630d8ca0bdae522924943df86 SHA256: cd2de34b2028356f2d5a30e4c7619a5eb531961ad51ff7a3a24240f4fa8180ae Description: perl bindings for the Phonon library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: a6e360e2d9592dfe7af92e527ad04e51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon4 Priority: optional Section: libs Installed-Size: 572 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libc6 (>= 2.4), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), libqt4-dbus (>= 4:4.8.1), libqtcore4 (>= 4:4.8.1), libqtgui4 (>= 4:4.8.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: phonon-backend-xine (<< 4:4.6.0really4.3.80) Filename: pool/main/p/phonon/libphonon4_4.7.1-0ubuntu8_i386.deb Size: 146968 MD5sum: 98ff31fa6985172bdbee405cb1fb4cff SHA1: 440d490afe7ed460d95bd14c0890bbca38ec91af SHA256: dfe076353e193b81cf29a7b515b722d5137507e42f69a0d3d4a265743f35bd27 Description: multimedia framework from KDE - core library Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 4566feed5f0036ee4cfb4a0956976557 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libphonon4qt5-4 Priority: optional Section: libs Installed-Size: 536 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libc6 (>= 2.4), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/phonon/libphonon4qt5-4_4.7.1-0ubuntu8_i386.deb Size: 145254 MD5sum: 49f4aa93e1570c1295ca0ee2a16d11a0 SHA1: 7443b00c4899cef3d0e0bb0c9276e8ddd103f71a SHA256: fae4150059dd167a99620b3535c47534a07596e78ef53f8acae9279faa6d6982 Description: multimedia framework from KF5 - core library Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 39d7af9901309864a4dee04b829ce123 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon4qt5-dev Priority: optional Section: libdevel Installed-Size: 488 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libphonon4qt5-4 (= 4:4.7.1-0ubuntu8), phonon4qt5-backend-null | phonon4qt5, qtbase5-dev (>= 5.2.0), libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5designer5 (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/phonon/libphonon4qt5-dev_4.7.1-0ubuntu8_i386.deb Size: 79882 MD5sum: eef053786b8fd93e13ca95bfc6356040 SHA1: e35bac4175805c3a805e324618b9a062ab3255f9 SHA256: 91f8e7e7b805b5a0f318ebb3dad8213a2710043b5b89873cb913b004447d0425 Description: multimedia framework from KF5 - development files Homepage: http://phonon.kde.org/ Description-md5: ad2edf3f9c8d40333d21493f76a5db51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon4qt5experimental-dev Priority: optional Section: libdevel Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libphonon4qt5experimental4 (= 4:4.7.1-0ubuntu8), qtbase5-dev (>= 5.0.2) Filename: pool/main/p/phonon/libphonon4qt5experimental-dev_4.7.1-0ubuntu8_i386.deb Size: 14810 MD5sum: f0063ac989f6d31e6b7548163ed75052 SHA1: c53b2acfa3058c688ce7ebe3e165dcc447a5ca1b SHA256: e2c286e5ed4271947e7992a8cff29bc382f279f825bbacfee2cbaaa25d36f1e6 Description: multimedia framework from KF5 - experimental development files Homepage: http://phonon.kde.org/ Description-md5: 3c640ec9e481b3848865c1d482fac9cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphonon4qt5experimental4 Priority: optional Section: libs Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon Version: 4:4.7.1-0ubuntu8 Provides: phononexperimental-abi-qt5-1 Depends: libc6 (>= 2.1.3), libphonon4qt5-4 (= 4:4.7.1-0ubuntu8), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/phonon/libphonon4qt5experimental4_4.7.1-0ubuntu8_i386.deb Size: 28546 MD5sum: 1eead8fb338d6b068eb5d2a5e5a4e65a SHA1: 6fbc4750c485f559efd2e41e63fa8952fe45020b SHA256: b5e2233c8e83e031efc4cbcc390517e98be751a20d5f27aad34851a8d1d4e926 Description: multimedia framework from KF5 - experimental library (internal) Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 9bdb4dde33b6a84ce3ed759991fe7d2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphononexperimental-dev Priority: optional Section: libdevel Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon Version: 4:4.7.1-0ubuntu8 Replaces: libphonon-dev (<< 4:4.6.0really4.4.4) Depends: libphononexperimental4 (= 4:4.7.1-0ubuntu8), libqt4-dev (>= 4:4.8.1) Breaks: libphonon-dev (<< 4:4.6.0really4.4.4) Filename: pool/main/p/phonon/libphononexperimental-dev_4.7.1-0ubuntu8_i386.deb Size: 14804 MD5sum: 5d0c96c58fa5953bcd9a5b8a0f5cedee SHA1: d647b9baedf60f949c15bd76c3e531ae682b2468 SHA256: fa52139bd9dc1fd949b0cd1bd759048eaf859f9918cb90f279b4fd55d4584ca8 Description: multimedia framework from KDE - experimental development files Homepage: http://phonon.kde.org/ Description-md5: e2088c3cafe29cc243e751ddc05ccc4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libphononexperimental4 Priority: optional Section: libs Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon Version: 4:4.7.1-0ubuntu8 Replaces: libphonon4 (<< 4:4.6.0really4.3.80) Provides: phononexperimental-abi-1 Depends: libc6 (>= 2.1.3), libphonon4 (= 4:4.7.1-0ubuntu8), libqtcore4 (>= 4:4.8.1), libqtgui4 (>= 4:4.8.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: libphonon4 (<< 4:4.6.0really4.3.80) Filename: pool/main/p/phonon/libphononexperimental4_4.7.1-0ubuntu8_i386.deb Size: 29626 MD5sum: 304d217a399c290a1b58325cb51cb17e SHA1: 346fabd5ed4a5c64144354a7215294740f8aea66 SHA256: a2e5047156bdf17896537f3c29d5403ff79a44340ca93c8aea7b4fa0630ba0fc Description: multimedia framework from KDE - experimental library (internal) Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 1dfd329164c7f31b5cbf5be613cc5b6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active, kubuntu-active-full, kubuntu-active, ubuntustudio-graphics Package: libpils2 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue (<= 1.0.6-1) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.24.0), libltdl7 (>= 2.4.2) Conflicts: libcluster-glue (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libpils2_1.0.11+hg2754-1.1build1_i386.deb Size: 15560 MD5sum: b7083e5c9a99d78c2b051372879db984 SHA1: 12af94d390e01152d47cfa1218bf2b7415bfc726 SHA256: 601d5a169a4ec4cf69f83f1148c64b6da116af166b33d81c5a06615d3e63d09d Description: Reusable cluster libraries -- libpils2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 9634659bf0fcd8791865cd35d210ed0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpils2-dev Priority: optional Section: libdevel Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1) Depends: libpils2 (= 1.0.11+hg2754-1.1build1), libltdl-dev Conflicts: libcluster-glue-dev (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libpils2-dev_1.0.11+hg2754-1.1build1_i386.deb Size: 24326 MD5sum: 4b423f2c705b61e053b36131d3d2e693 SHA1: ca18d9614c2788226d1a3a1298c1d8676afe3635 SHA256: 3355c5150de39425e6d32a12a0981bbe8002e522a443ecdabc3119e8fef7a4c5 Description: Reusable cluster development files -- libpils2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: a6fead0cb94dfac7d660828b00b4a9ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpipeline-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Colin Watson Architecture: i386 Source: libpipeline Version: 1.3.0-1 Depends: libpipeline1 (= 1.3.0-1) Filename: pool/main/libp/libpipeline/libpipeline-dev_1.3.0-1_i386.deb Size: 14506 MD5sum: 2a616f81f97ef73650d3ee21610ba5a0 SHA1: 530c983927bdbea38badbb203b90d7b8d3415480 SHA256: 2228f6ccb3ba1f71f2f907fc3b1e0bc76bc9f11161410e1d4464eaa934987846 Description: pipeline manipulation library (development files) Multi-Arch: same Homepage: http://libpipeline.nongnu.org/ Description-md5: cac14a48e797ab84e068761f4d935145 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpipeline1 Priority: standard Section: libs Installed-Size: 88 Maintainer: Colin Watson Architecture: i386 Source: libpipeline Version: 1.3.0-1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/libp/libpipeline/libpipeline1_1.3.0-1_i386.deb Size: 23476 MD5sum: bdede8aca6e79a64299db353d623e9f0 SHA1: d2ef31c7ddaba9877c82fb1ea550407ad41c9aea SHA256: 4129b93b6b295cfd19a808e62bf99aa95dccac964edd30877b874c2f6706381d Description: pipeline manipulation library Multi-Arch: same Homepage: http://libpipeline.nongnu.org/ Description-md5: 9372d67b85177a0eb118d57b700e8a0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libpisock-dev Priority: extra Section: libdevel Installed-Size: 613 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: i386 Source: pilot-link Version: 0.12.5-6ubuntu2 Replaces: pilot-link (<= 0.11.3-4) Depends: libpisock9 (= 0.12.5-6ubuntu2), libpisync1 (= 0.12.5-6ubuntu2), libusb-dev, libbluetooth-dev Filename: pool/main/p/pilot-link/libpisock-dev_0.12.5-6ubuntu2_i386.deb Size: 137504 MD5sum: a4bdf1f5e7fe7c07c7721975b3a9b971 SHA1: ca591b70d596c411b609948a9d89e25f12b961b0 SHA256: 1409c880225bf082c0dfd4bab1ea2cd6c2f8b7f457c1597ff81429f02d86a922 Description: development files for communicating with a PalmOS PDA Homepage: http://www.pilot-link.org/ Description-md5: 37e1cb9ba655aa2cd6f0faf6b7dec1ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpisock9 Priority: optional Section: libs Installed-Size: 482 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: i386 Source: pilot-link Version: 0.12.5-6ubuntu2 Depends: libbluetooth3 (>= 4.91), libc6 (>= 2.15), libusb-0.1-4 (>= 2:0.1.12) Suggests: jpilot, pilot-link, kpilot, gnome-pilot, evolution, claws-mail, sylpheed Breaks: jpilot (<< 1.6.2.4-2), python-jppy (<= 0.0.47-1.1), udev (<< 0.136-1) Filename: pool/main/p/pilot-link/libpisock9_0.12.5-6ubuntu2_i386.deb Size: 122964 MD5sum: 15d1cdd011ae19189aaf0ba347a2dc8d SHA1: 0b0a8efa5d3ff26f0adf0fafb68674fa0da542c8 SHA256: 8cc850dd1ac5e7cf45fc2d635364b832aa2b3511d5f65682722dee43d6015f41 Description: library for communicating with a PalmOS PDA Homepage: http://www.pilot-link.org/ Description-md5: 82d57f8c4c87e149b1ef3c2847f51507 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-desktop Package: libpisync1 Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: i386 Source: pilot-link Version: 0.12.5-6ubuntu2 Depends: libc6 (>= 2.3.6-6~), libpisock9 Suggests: gnome-pilot, evolution Filename: pool/main/p/pilot-link/libpisync1_0.12.5-6ubuntu2_i386.deb Size: 7454 MD5sum: 19f7ff0c048c0947f42e925b2ec8f501 SHA1: 3032985eca2db177229e2c5ac4cbc0af1f4a363c SHA256: 458997e2e2fc64e6b9ce49cdb946df7fa1aa14fc72197deb7dc178824d008cbd Description: synchronization library for PalmOS devices Homepage: http://www.pilot-link.org/ Description-md5: ff1269d91f6a6e067af6e859a044356c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpixman-1-0 Priority: optional Section: libs Installed-Size: 731 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: pixman Version: 0.30.2-2ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/p/pixman/libpixman-1-0_0.30.2-2ubuntu1_i386.deb Size: 216218 MD5sum: 732697673c80891cce120e07c45eec84 SHA1: 323b735e69b2fc853b24e50eace335bfbf6ad8cd SHA256: 0a766141da95a02042a86a6a55b146be84052e9a97b9d3ea590ce91fab329718 Description: pixel-manipulation library for X and cairo Multi-Arch: same Description-md5: 7e3f88ca19f9f065eee2d857d76692bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpixman-1-0-dbg Priority: extra Section: libdevel Installed-Size: 3825 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: pixman Version: 0.30.2-2ubuntu1 Depends: libpixman-1-0 (= 0.30.2-2ubuntu1) Filename: pool/main/p/pixman/libpixman-1-0-dbg_0.30.2-2ubuntu1_i386.deb Size: 907870 MD5sum: 1ea6ba663e4befda795b3cf146a4dfa2 SHA1: e44e40571d5efea64b0a4ce45ee1ae009e4b4a92 SHA256: 5b5f049babfbea2ec257231c0a3924cb3bf574a574ffb4ed577060c7135801a5 Description: pixel-manipulation library for X and cairo (debugging symbols) Multi-Arch: same Description-md5: 06db9acce44cebdedaf9de80824c7318 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpixman-1-dev Priority: optional Section: libdevel Installed-Size: 872 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: pixman Version: 0.30.2-2ubuntu1 Depends: libpixman-1-0 (= 0.30.2-2ubuntu1) Filename: pool/main/p/pixman/libpixman-1-dev_0.30.2-2ubuntu1_i386.deb Size: 232930 MD5sum: f573982b04eb66e22ee7b8be3cac6cfe SHA1: a1932c27a2fd13ac5b666ad6bb1605ec34b5ef6b SHA256: bc41602bf220ac20f0ed5372011ec8d9b352d24538ade84636e845220e2c2b91 Description: pixel-manipulation library for X and cairo (development files) Description-md5: 2f64070b43fb7746f0a51fb4de195746 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpkcs11-helper1 Priority: optional Section: libs Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: pkcs11-helper Version: 1.11-1 Depends: libc6 (>= 2.7), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/p/pkcs11-helper/libpkcs11-helper1_1.11-1_i386.deb Size: 40994 MD5sum: 9ad4b04abeca7a8249653271f238029b SHA1: 5284dbd73f82c816125512cc8ff4da70c5fa7874 SHA256: 8dd662b24a8a84ead2e515deeea47190ba4c3188c44bb240acbdedd998f48861 Description: library that simplifies the interaction with PKCS#11 Multi-Arch: same Description-md5: 884da81648ff96b4214f90a93ca61a83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpkcs11-helper1-dbg Priority: optional Section: debug Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: pkcs11-helper Version: 1.11-1 Depends: libpkcs11-helper1 (= 1.11-1) Filename: pool/main/p/pkcs11-helper/libpkcs11-helper1-dbg_1.11-1_i386.deb Size: 90744 MD5sum: c133d433d080573a530df161fc5ebc27 SHA1: 7d2ed8b90e1c8a9343cf1e13ea356fb6c1b29974 SHA256: 86af29afd05eafab96274cd34e74407e4d9dddbcc3693fb5f767823e04ef2b79 Description: debugging symbols for libpkcs11-helper Multi-Arch: same Description-md5: 051652c03386a0027cd225f697dbfcf9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpkcs11-helper1-dev Priority: optional Section: libdevel Installed-Size: 1449 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: pkcs11-helper Version: 1.11-1 Provides: libpkcs11-helper-dev Depends: libpkcs11-helper1 (= 1.11-1), libssl-dev Conflicts: libpkcs11-helper-dev Filename: pool/main/p/pkcs11-helper/libpkcs11-helper1-dev_1.11-1_i386.deb Size: 125524 MD5sum: e762e4f56aa0c73f6a8cda782b7e6e64 SHA1: 5488a3a304688c06d702349ee501c498f43f5a45 SHA256: bfb6bc4c3f8a04369788a4ab98343e6cac3c28fa66cbabf5333bf2af6fbe1920 Description: library that simplifies the interaction with PKCS#11 Description-md5: 884da81648ff96b4214f90a93ca61a83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplasma3 Priority: optional Section: libs Installed-Size: 3374 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libkcmutils4 (= 4:4.13.0-0ubuntu1), libkdecore5 (= 4:4.13.0-0ubuntu1), libkdeui5 (= 4:4.13.0-0ubuntu1), libkdewebkit5 (= 4:4.13.0-0ubuntu1), libkdnssd4 (= 4:4.13.0-0ubuntu1), libkio5 (= 4:4.13.0-0ubuntu1), libknewstuff3-4 (= 4:4.13.0-0ubuntu1), libphonon4 (>= 4:4.6.0really4.3.80), libqca2 (>= 2.0.2), libqt4-declarative (>= 4:4.8.0), libqt4-network (>= 4:4.7.0), libqt4-opengl (>= 4:4.7.0), libqt4-script (>= 4:4.7.0), libqt4-sql (>= 4:4.7.0), libqt4-svg (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.8.0), libqtwebkit4, libsolid4 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1), libthreadweaver4 (= 4:4.13.0-0ubuntu1), libx11-6 Filename: pool/main/k/kde4libs/libplasma3_4.13.0-0ubuntu1_i386.deb Size: 894466 MD5sum: d03f44672263628376ac8fd7fc2910e7 SHA1: e8831c66d0ffebebe1f14524bf1d46e0657544d0 SHA256: 9565b239d43cf49685ee23235c097b076f844d8cd872a76482087fcb024fb9f2 Description: Plasma Library for the KDE Platform Homepage: http://plasma.kde.org/ Description-md5: 069ac695b489886696dab1b47f4363b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libplatform-api-headers Priority: optional Section: libdevel Installed-Size: 183 Maintainer: Ubuntu Developers Architecture: i386 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Filename: pool/main/p/platform-api/libplatform-api-headers_0.20+14.04.20140411-0ubuntu1_i386.deb Size: 16546 MD5sum: 2ccb82656a83298d5fc791333bfdf064 SHA1: 15603b48d7469eabffed4cd201f554de5870f210 SHA256: 890c737da0248f59ad0884d7a2a1343e62a6bf86a7359d4abb660ddb2de7bcaf Description: Platform API for system level capabilities (API headers) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 25a939647ddf8f9955955164e5bf326d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplatform-api1-dev Priority: optional Section: libdevel Installed-Size: 46 Maintainer: Ubuntu Developers Architecture: i386 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libgles2-mesa-dev, libplatform-api-headers (= 0.20+14.04.20140411-0ubuntu1), libubuntu-application-api1 | libplatform-api1, libubuntu-application-api-mirserver1 (= 0.20+14.04.20140411-0ubuntu1), libubuntu-application-api-mirclient1 (= 0.20+14.04.20140411-0ubuntu1) Suggests: libplatform-api1-doc Filename: pool/main/p/platform-api/libplatform-api1-dev_0.20+14.04.20140411-0ubuntu1_i386.deb Size: 1946 MD5sum: d80383e8d590c1d84709b8c314ff0b60 SHA1: 38955088150403c3a754d9efb000a57a1bba6bf1 SHA256: 36c405e6f1f8d6144190be2450df9713b384ed1c925ded5e5b433f3b344155d2 Description: Platform API for system level capabilities (development) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 3202ff5a28cf213561124d4022a95e03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplatform-api1-doc Priority: optional Section: doc Installed-Size: 4895 Maintainer: Ubuntu Developers Architecture: all Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libplatform-api1-dev Filename: pool/main/p/platform-api/libplatform-api1-doc_0.20+14.04.20140411-0ubuntu1_all.deb Size: 1568320 MD5sum: 87fd78974eaa0135e0f8d50d48cb1f36 SHA1: 4682a7725cb81e251cf34b763119cd5c14c43c67 SHA256: ce12ad96f7399127c6f5a98a73244cc4af6c4aa02c47410f8976fb517d90d62e Description: Platform API for system level capabilities (development) Homepage: https://launchpad.net/platform-api Description-md5: 91dba5b6aae30b22730a6ddbabdb540f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplatform-hardware-api-headers Priority: optional Section: libdevel Installed-Size: 58 Maintainer: Ubuntu Developers Architecture: i386 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libplatform-api-headers Filename: pool/main/p/platform-api/libplatform-hardware-api-headers_0.20+14.04.20140411-0ubuntu1_i386.deb Size: 5086 MD5sum: 315d42c69ced145d0c646e884efe8f5c SHA1: bf1767c6e02d816b8c42cfb74dd779c19b87f70c SHA256: bd784852ee1d4f0b576e3e80a3fd3a116118d012e62518c33e365e5cd6ae685d Description: Platform API for system level capabilities (API headers) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 23b96ac55caf7d67de1fc92dd6797a36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplatform-hardware-api1-dev Priority: optional Section: libdevel Installed-Size: 41 Maintainer: Ubuntu Developers Architecture: i386 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libgles2-mesa-dev, libplatform-hardware-api-headers (= 0.20+14.04.20140411-0ubuntu1), libubuntu-platform-hardware-api1 | libplatform-hardware-api1 Suggests: libplatform-api1-doc Filename: pool/main/p/platform-api/libplatform-hardware-api1-dev_0.20+14.04.20140411-0ubuntu1_i386.deb Size: 1696 MD5sum: d7e889296ce56a97123f5cd5cdc31339 SHA1: c596f6dc4d73c7a820edb6847f61e52cd1eb004c SHA256: 63c38a4345dddb9913459b1fc47171bed1628828419fe39a0573f2589b77dd6f Description: Platform API for system level capabilities (development) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 0aa12ab7a84a04b9fc839f7c620dfee2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist++-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libplist Version: 1.10-1 Replaces: libplist-dev (<= 0.13.2) Depends: libplist++1 (= 1.10-1), libxml2-dev Conflicts: libplist-dev (<= 0.13.2) Filename: pool/main/libp/libplist/libplist++-dev_1.10-1_i386.deb Size: 5340 MD5sum: 710b8e08e98dfd582962b4494d016183 SHA1: 03b9aee3e5b7862d740a6de61965499659adacfc SHA256: d603e11c8fde1e784c3903266f523ecff9e64d9cbda469920b60f93e5d8a1ee7 Description: Library for handling Apple binary and XML property lists Homepage: http://www.libimobiledevice.org/ Description-md5: f1088db5052569130b43f809f3b1975a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist++1 Priority: optional Section: libs Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libplist Version: 1.10-1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libplist1 (>= 1.10), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/libp/libplist/libplist++1_1.10-1_i386.deb Size: 24642 MD5sum: 92edfd7e122daead9507ae28ab63b1d5 SHA1: 7ec369d41593e650572e3f5fafc381805e7ade2c SHA256: 186c5a4228ec9a0903b95cde2dc6c78fbbe1564198864d26403948205fd2117f Description: Library for handling Apple binary and XML property lists Multi-Arch: same Homepage: http://www.libimobiledevice.org/ Description-md5: 5a7ac9d5c114b33899ffd81af3b81f44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist-dbg Priority: extra Section: debug Installed-Size: 377 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libplist Version: 1.10-1 Depends: libplist1 (= 1.10-1), libplist++1 (= 1.10-1) Filename: pool/main/libp/libplist/libplist-dbg_1.10-1_i386.deb Size: 290648 MD5sum: 8eb55bea23fe024c1e275301b29f764b SHA1: 636aa01178870cd4aa164802a3be77cb5dac938d SHA256: c64a998c96f32ad4efbd81167aa92bf2e7c674420dff8c6c17cb3afbe1062dd3 Description: Library for handling Apple binary and XML property lists Multi-Arch: same Homepage: http://www.libimobiledevice.org/ Description-md5: e392fc95bc2310a1aa84e417705528c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist-dev Priority: optional Section: libdevel Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libplist Version: 1.10-1 Depends: libplist1 (= 1.10-1), libxml2-dev Filename: pool/main/libp/libplist/libplist-dev_1.10-1_i386.deb Size: 6062 MD5sum: bfdfcbaa5cea7f497a0e2eb50eef9beb SHA1: 2fb4d8e6cfd99a8c2b817ea119143b1ec75ae76d SHA256: 6f16901c2fef9f63fa2666cafaf490a98fbf87d08f81c9e964a71e378042c8e3 Description: Library for handling Apple binary and XML property lists Homepage: http://www.libimobiledevice.org/ Description-md5: 197f408416eccbbab8e6561d3d7150fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist-doc Priority: optional Section: doc Installed-Size: 538 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: all Source: libplist Version: 1.10-1 Depends: libjs-jquery Filename: pool/main/libp/libplist/libplist-doc_1.10-1_all.deb Size: 76236 MD5sum: cc0f9e4b4650e265323272b2d62ac1e0 SHA1: 9bc596583ca94b35656356183338f9f732dc5006 SHA256: ff2d745753f3a3cc060afd373e7d62d948dab37c6f8e9bf688c0a23da9c09833 Description: Library for handling Apple binary and XML property lists - docs Homepage: http://www.libimobiledevice.org/ Description-md5: a269093cbce991e16ed56deffabfb62d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplist1 Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libplist Version: 1.10-1 Depends: libc6 (>= 2.7), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/libp/libplist/libplist1_1.10-1_i386.deb Size: 27044 MD5sum: 5089a197f5aa362012e271600ae5e041 SHA1: 30487b80f6dfb62bbc34ade5f6017b8536ede813 SHA256: 5b6d04fbcf244fd3f0987e60434a538ddd4f3ec60a79c860409e41b42fab2143 Description: Library for handling Apple binary and XML property lists Multi-Arch: same Homepage: http://www.libimobiledevice.org/ Description-md5: 025ff093cbf9bf08e17d0248380c6438 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libplumb2 Priority: optional Section: libs Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue (<= 1.0.6-1) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.24.0), libpils2 (>= 1.0.11+hg2754), libuuid1 (>= 2.16) Conflicts: libcluster-glue (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libplumb2_1.0.11+hg2754-1.1build1_i386.deb Size: 67814 MD5sum: 29e24eaac62fe62b7031b8b6128cb2ed SHA1: 2212a115bb0172e59a7e123f55d72c001ff37a74 SHA256: f18c842edb70eda5aa449e5faf2676631cdd331c9c3c01de8bccb73ae28a3aff Description: Reusable cluster libraries -- libplumb2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 5f9821063cd3937fbcc51fe1fd7453b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libplumb2-dev Priority: optional Section: libdevel Installed-Size: 444 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1) Depends: libplumb2 (= 1.0.11+hg2754-1.1build1) Conflicts: libcluster-glue-dev (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libplumb2-dev_1.0.11+hg2754-1.1build1_i386.deb Size: 96118 MD5sum: ed854b59ce0953f5301657623239e638 SHA1: 6af14b73732951c6a3acd7b8f996516be52a0217 SHA256: 10649639570e966f589211a5312e320eabdaaf576892e690ec304a5562d9b135 Description: Reusable cluster development files -- libplumb2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 77dfd5dfc0fca7eee81e43c082802c54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplumbgpl2 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue (<= 1.0.6-1) Depends: libc6 (>= 2.4) Conflicts: libcluster-glue (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libplumbgpl2_1.0.11+hg2754-1.1build1_i386.deb Size: 7168 MD5sum: 14e766c618a19c39803555b446c5f659 SHA1: f350c084b0250dd54df9be634703f11e23a54853 SHA256: d87add2c201429a236cfa8413f66d49ef5ff889286d315434e1a8bbb19e5c099 Description: Reusable cluster libraries -- libplumbgpl2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 2e939e448399e313664ec5d9e4498d57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libplumbgpl2-dev Priority: optional Section: libdevel Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1) Depends: libplumbgpl2 (= 1.0.11+hg2754-1.1build1) Conflicts: libcluster-glue-dev (<= 1.0.6-1) Filename: pool/main/c/cluster-glue/libplumbgpl2-dev_1.0.11+hg2754-1.1build1_i386.deb Size: 5712 MD5sum: 4e30f3dc6e92ef5c153e4f1e4a35397b SHA1: 0f264df2134f41aa626e223110107868c7ea60ab SHA256: b1ac2f8066bc3f4f41a6894d34163633d735b92a8a3e4157e4b4de4acfb9cea5 Description: Reusable cluster development files -- libplumbgpl2 Homepage: http://hg.linux-ha.org/glue/ Description-md5: d06c1abaf1a1f82884745d0f9c6cd882 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplymouth-dev Priority: optional Section: libdevel Installed-Size: 499 Maintainer: Ubuntu Developers Architecture: i386 Source: plymouth Version: 0.8.8-0ubuntu17 Replaces: plymouth (<< 0.7.0+git20090207-0ubuntu0.1~ppa4) Depends: libplymouth2 (= 0.8.8-0ubuntu17) Filename: pool/main/p/plymouth/libplymouth-dev_0.8.8-0ubuntu17_i386.deb Size: 85430 MD5sum: ed742b00480fd7773af94dd3ff16f951 SHA1: b43f80652ee358cc52057f6d758b58eb8debe3c7 SHA256: 9508b4de5d1a3e2f2766522d3c25fdb91e2ad5ce997d6798224af12bcf181b87 Description: graphical boot animation and logger - development files Multi-Arch: same Description-md5: 2788897f3e5c5b2f91c898358099697e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libplymouth2 Priority: required Section: libs Installed-Size: 298 Maintainer: Ubuntu Developers Architecture: i386 Source: plymouth Version: 0.8.8-0ubuntu17 Replaces: plymouth (<< 0.7.0+git20090207-0ubuntu0.1~ppa4) Depends: libc6 (>= 2.8), libpng12-0 (>= 1.2.13-4) Pre-Depends: multiarch-support Breaks: casper (= 1.227), mountall (<< 2.8) Filename: pool/main/p/plymouth/libplymouth2_0.8.8-0ubuntu17_i386.deb Size: 76768 MD5sum: d5a08d3cb0619d3506f2490bdc31f02e SHA1: e2837f272ef94995a9602c1c75fba060e43a7c65 SHA256: 408975fec2f6af1a4acae3c8d2194edc91542e578b782dc931965f58af05c42b Description: graphical boot animation and logger - shared libraries Multi-Arch: same Description-md5: 29e2ed45f3e127c38b58dae52061cc33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpng12-0 Priority: required Section: libs Installed-Size: 308 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libpng Version: 1.2.50-1ubuntu2 Replaces: libpng12-dev (<= 1.2.8rel-7) Depends: libc6 (>= 2.11), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Conflicts: libpng12-dev (<= 1.2.8rel-7), mzscheme (<= 1:209-5), pngcrush (<= 1.5.10-2), pngmeta (<= 1.11-3), povray-3.5 (<= 3.5.0c-10), qemacs (<= 0.3.1-5) Filename: pool/main/libp/libpng/libpng12-0_1.2.50-1ubuntu2_i386.deb Size: 118152 MD5sum: 98950ccc797a0d6ffb06a71bdc94ab3f SHA1: d27e6aad00d012e7cbc8175262149eaa47d3c401 SHA256: e36f12b88163567e323d36a98703ecb533e03a90f0f44315d7587c816ffc253d Description: PNG library - runtime Multi-Arch: same Homepage: http://libpng.org/pub/png/libpng.html Description-md5: f250be9224d67eae99b2f562b74a33bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpng12-dev Priority: optional Section: libdevel Installed-Size: 611 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libpng Version: 1.2.50-1ubuntu2 Replaces: libpng12-0-dev, libpng3-dev (<= 1.2.5) Provides: libpng-dev, libpng12-0-dev, libpng3-dev Depends: libpng12-0 (= 1.2.50-1ubuntu2), zlib1g-dev Conflicts: libpng-dev, libpng12-0-dev, libpng2 (<< 1.0.12-3), libpng2-dev Filename: pool/main/libp/libpng/libpng12-dev_1.2.50-1ubuntu2_i386.deb Size: 204326 MD5sum: 893707d02cf343ffdfe3afa36851d242 SHA1: eec783734e36711f8a54a50be73d0d00b22c353d SHA256: 98776850e3069c3dd692a5cd983319b698d66287b0817fafc552d5e2b93c7f64 Description: PNG library - development Homepage: http://libpng.org/pub/png/libpng.html Description-md5: 748198d86eeddc4aa1418e7d1311203c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpocketsphinx-dev Priority: optional Section: libdevel Installed-Size: 457 Maintainer: Ubuntu Developers Architecture: i386 Source: pocketsphinx Version: 0.8.0+real-0ubuntu6 Depends: libc6-dev, libpocketsphinx1 (= 0.8.0+real-0ubuntu6) Filename: pool/main/p/pocketsphinx/libpocketsphinx-dev_0.8.0+real-0ubuntu6_i386.deb Size: 123510 MD5sum: e7b188ebafaa5bae99d2fd4aebae02ca SHA1: 01a4d367dfebddb912e1ad4f5348ad4a9423f245 SHA256: 17775ff330e82d95d7345c8feb4cce99ff7a93c1f66d08375ef56171843b93b9 Description: lightweight speech recognition - development files Description-md5: 5adacc47461ccbe0edbfaadb2030c114 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpocketsphinx1 Priority: optional Section: libs Installed-Size: 296 Maintainer: Ubuntu Developers Architecture: i386 Source: pocketsphinx Version: 0.8.0+real-0ubuntu6 Depends: libc6 (>= 2.7), libsphinxbase1 (>= 0.8) Filename: pool/main/p/pocketsphinx/libpocketsphinx1_0.8.0+real-0ubuntu6_i386.deb Size: 110688 MD5sum: a30599662625f38bbc01237bbaa08940 SHA1: 5ec024816253aab58fb982eec521117e3e54950d SHA256: ed1514b5c8e92f80c4ddd235a61838cd734336a19920b815a3faa3ef9f9fb60c Description: lightweight speech recognition - library Description-md5: fdd4220a1e30ff1ef701856add3047c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libpod-coverage-perl Priority: optional Section: perl Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.23-1 Depends: perl, libdevel-symdump-perl Filename: pool/main/libp/libpod-coverage-perl/libpod-coverage-perl_0.23-1_all.deb Size: 22786 MD5sum: 7fc6d01c781f4745be4277d1da93bd1c SHA1: 307fe753343cb2e392fb9be4f996d71a76911557 SHA256: 71ebbcf5abf887dd7bff628d5f3d765f82b0c44b7440fcfdc181e4041ba548c2 Description: checker for comprehensiveness of perl module documentation Homepage: https://metacpan.org/release/Pod-Coverage/ Description-md5: e9fce37b1e0cde66dd70b4cc7ef1e2a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpod-latex-perl Priority: important Section: perl Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.61-1 Depends: perl Filename: pool/main/libp/libpod-latex-perl/libpod-latex-perl_0.61-1_all.deb Size: 32886 MD5sum: a3756c8cdd5f81a22d77d1e1250aec1d SHA1: 0e55b73c86d8fc9e0ffe878c354328284152d6bf SHA256: c60d9fed458d5fdaded1e7d1e18218b71308cb23a3b7f7043665ec9cb9560f0c Description: module to convert Pod data to formatted LaTeX Homepage: https://metacpan.org/release/Pod-LaTeX/ Description-md5: 10547a7da0ffed32c9f964b6846170f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpod-plainer-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.03-1 Depends: perl Filename: pool/main/libp/libpod-plainer-perl/libpod-plainer-perl_1.03-1_all.deb Size: 5950 MD5sum: 55b9e86099f72602d3096f424a09def8 SHA1: 205d871339310e5eb0c4bff9abfe7eb8cfc41073 SHA256: 0d351e9e5fabe9e4104cb43b3aca8caab9516de3a15eea8ecb3a5128274372f4 Description: Perl extension for converting Pod to old-style Pod. Homepage: http://search.cpan.org/dist/Pod-Plainer/ Description-md5: 90b9b5642aba47535f18defa69f3edde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpod-readme-perl Priority: optional Section: perl Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.11-1 Depends: perl, libregexp-common-perl Filename: pool/main/libp/libpod-readme-perl/libpod-readme-perl_0.11-1_all.deb Size: 14218 MD5sum: cf0c86346065ebd47f09308ad91ab47a SHA1: 5b0e0f61398e9f76eb88c3dc549728c09c91cfe8 SHA256: 1648e60a0f281028b40f8296a8fd7788e75f1e488ccbb68369153bec71b0f2ff Description: Perl module to convert POD to README file Homepage: http://search.cpan.org/dist/Pod-Readme/ Description-md5: 9a89e2eeb605c3559eff3dc62e701427 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpod-spell-perl Priority: optional Section: perl Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.12-1 Depends: perl, libclass-tiny-perl, libfile-sharedir-projectdistdir-perl, libfile-slurp-perl, liblingua-en-inflect-perl Filename: pool/main/libp/libpod-spell-perl/libpod-spell-perl_1.12-1_all.deb Size: 30220 MD5sum: 655f05060caa72b2eb1d7d92ed3f898a SHA1: 25d74bb8f5a13540d981e10c30331b4cba209553 SHA256: baaf064174d9093541895fe2e50ea81fe8bce5d267c90852c38d5a9c9c1b9323 Description: formatter to easily check the spelling of POD Homepage: https://metacpan.org/release/Pod-Spell/ Description-md5: eaff2f86c7bb837f181fc25ef0afe879 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpolkit-agent-1-0 Priority: optional Section: libs Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libpolkit-gobject-1-0 (>= 0.105) Pre-Depends: multiarch-support Filename: pool/main/p/policykit-1/libpolkit-agent-1-0_0.105-4ubuntu2_i386.deb Size: 14662 MD5sum: 64702b4e7f77b3551e5af681909124af SHA1: dbfb0888fb156f573c95fea30e329bfcc482e1ef SHA256: 5b7ad4854e4dbb9c86c5f162f96fecbd15b86864db84d085b7e68e0560a5334b Description: PolicyKit Authentication Agent API Multi-Arch: same Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 9a6eb26d9cf44b4d9acb5e041f4ddf18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpolkit-agent-1-dev Priority: optional Section: libdevel Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libpolkit-agent-1-0 (= 0.105-4ubuntu2), libpolkit-gobject-1-dev, gir1.2-polkit-1.0 (= 0.105-4ubuntu2) Filename: pool/main/p/policykit-1/libpolkit-agent-1-dev_0.105-4ubuntu2_i386.deb Size: 20164 MD5sum: 46920401cb7d2c1df468abc869a13c92 SHA1: c7a8b04af391593bfcdcd4bddb36b5563f0e6b97 SHA256: f66859a0d0d7806f7d7f7a0f93c26ae8a12003ad931cd07c5890577180238807 Description: PolicyKit Authentication Agent API - development files Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 7e82da0ca3c53b982d17cc8ea9690d79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpolkit-backend-1-0 Priority: optional Section: libs Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libc6 (>= 2.4), libexpat1 (>= 2.0.1), libglib2.0-0 (>= 2.37.3), libpolkit-gobject-1-0 (>= 0.104), libsystemd-login0 (>= 31) Pre-Depends: multiarch-support Breaks: policykit-1 (<< 0.99) Filename: pool/main/p/policykit-1/libpolkit-backend-1-0_0.105-4ubuntu2_i386.deb Size: 34712 MD5sum: 8af69499f4c3063d28c8de533905e858 SHA1: 837faf66e44baf1dad1c8b91b876d07e2aa8ccd5 SHA256: 87f82882e61f3448b2bc6c1190940865b09bdce60bd4b0cfe2dae7fe1971acf7 Description: PolicyKit backend API Multi-Arch: same Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 126d14cbabd9d5aaa5d367ec33dd192c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpolkit-backend-1-dev Priority: optional Section: libdevel Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libpolkit-backend-1-0 (= 0.105-4ubuntu2), libpolkit-gobject-1-dev Filename: pool/main/p/policykit-1/libpolkit-backend-1-dev_0.105-4ubuntu2_i386.deb Size: 37910 MD5sum: 054146912426ab67742d827f68a3aca6 SHA1: fea4264c8c9aefb5059e88bfa20b9f4dc09cd881 SHA256: 144ac0675a40338f38b2ec23173ff20ccf821233c6febf5831bbb6230cf2fffa Description: PolicyKit backend API - development files Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: d74e7c067ea756e053bc3aefbb7e04ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpolkit-gobject-1-0 Priority: standard Section: libs Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libsystemd-login0 (>= 31) Pre-Depends: multiarch-support Breaks: libpolkit-agent-1-0 (<< 0.99), libpolkit-backend-1-0 (<< 0.99), libpolkit-gtk-1-0 (<< 0.99), policykit-1 (<< 0.99) Filename: pool/main/p/policykit-1/libpolkit-gobject-1-0_0.105-4ubuntu2_i386.deb Size: 33590 MD5sum: e2bfb79f0acc9f939eeeb8d4a8e920e0 SHA1: c48772d18b13f7fe967ada6f95ffceedc58502eb SHA256: dc0cde6b6fcd59e7d4af05a83b84c7ab2ecf8816fc32848fd678bbbf5e6f5f61 Description: PolicyKit Authorization API Multi-Arch: same Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: c1a8724c66c4379fb4889482c08012fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libpolkit-gobject-1-dev Priority: optional Section: libdevel Installed-Size: 459 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: policykit-1 Version: 0.105-4ubuntu2 Depends: libpolkit-gobject-1-0 (= 0.105-4ubuntu2), libglib2.0-dev, gir1.2-polkit-1.0 (= 0.105-4ubuntu2) Filename: pool/main/p/policykit-1/libpolkit-gobject-1-dev_0.105-4ubuntu2_i386.deb Size: 50300 MD5sum: 4a7757fdde1b093f0127889c6262564a SHA1: cfcdb21fcaa6cc919aa91904b6bc34543237096c SHA256: 4cda39231a2ef608147f76197c4eb02cdc3421442f556734e28447c5bb2e6e2c Description: PolicyKit Authorization API - development files Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 087c4a65220a0fe10af5d323da0bd877 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpolkit-qt-1-1 Priority: extra Section: libs Installed-Size: 230 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: polkit-qt-1 Version: 0.103.0-1ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libpolkit-agent-1-0 (>= 0.99), libpolkit-gobject-1-0 (>= 0.99), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1), consolekit Filename: pool/main/p/polkit-qt-1/libpolkit-qt-1-1_0.103.0-1ubuntu1_i386.deb Size: 53414 MD5sum: b776ec069ebee1822ce237126d42e16a SHA1: 93215e6ec88bb5f88ae8201a7185edfb525a37bb SHA256: f93e104583668a8597bc595af5101303e0f3bdb59a947d3975469dad9feb57bf Description: PolicyKit-qt-1 library Description-md5: 7b673f8393da09809d9ec64e4790e7d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libpolkit-qt-1-dev Priority: extra Section: libdevel Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: polkit-qt-1 Version: 0.103.0-1ubuntu1 Depends: libpolkit-qt-1-1 (= 0.103.0-1ubuntu1), libqt4-dev Filename: pool/main/p/polkit-qt-1/libpolkit-qt-1-dev_0.103.0-1ubuntu1_i386.deb Size: 17692 MD5sum: c1592496d3ae28b6655a7af97dea2918 SHA1: 75712ce5565fd834bfd241b8b9f525f683fa6c9c SHA256: 56781060c58d8856180c07b2d621df527f5e94fc24dd3323c6f69c8d9974298b Description: PolicyKit-qt-1 development files Description-md5: b614da7af973669b067a12fbccd7447c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-cpp-dev Priority: optional Section: libdevel Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler-cpp0 (= 0.24.5-2ubuntu4), libpoppler-dev (= 0.24.5-2ubuntu4) Filename: pool/main/p/poppler/libpoppler-cpp-dev_0.24.5-2ubuntu4_i386.deb Size: 34452 MD5sum: 5f14450a2b5c73cc98edcb6ae1504b63 SHA1: 8dd0b20f3e8c97284a7264def5f489270efc1c70 SHA256: 9e0ad2cb98e9499d2751a2d6419092ccdc476c39a48c981283fccd800df27cfd Description: PDF rendering library -- development files (CPP interface) Homepage: http://poppler.freedesktop.org/ Description-md5: b8ccf7d2887aa9a8117d5795dcfa8442 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-cpp0 Priority: optional Section: libs Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libc6 (>= 2.4), libpoppler44 (>= 0.24.5), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/p/poppler/libpoppler-cpp0_0.24.5-2ubuntu4_i386.deb Size: 29322 MD5sum: 9afede135e537b5a2bb16d46b146cb42 SHA1: 1504f67657d49173e1f008c0b8df2e4c5992f7d9 SHA256: 546bfbf74541c875f1ab30a177217874e240a0250ece015bba989e49a57f30b8 Description: PDF rendering library (CPP shared library) Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: bd2c0f6fbd7019f0ce9ff23bdb5a718d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-dev Priority: optional Section: libdevel Installed-Size: 3120 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler44 (= 0.24.5-2ubuntu4), libpoppler-private-dev Filename: pool/main/p/poppler/libpoppler-dev_0.24.5-2ubuntu4_i386.deb Size: 694342 MD5sum: 96ff8f17c5af4c09a1c4f1ef53b5133e SHA1: 8fd8cf26c5bd38ad70383c2fbe4f0df79361d6ec SHA256: 75999920d2496afbc74b349e9c2baf950d231cf81f0363b3ba98ff493cfa1b17 Description: PDF rendering library -- development files Homepage: http://poppler.freedesktop.org/ Description-md5: 6d35e7b20480c00075b7865baad4287e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-glib-dev Priority: optional Section: libdevel Installed-Size: 782 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler-glib8 (= 0.24.5-2ubuntu4), libpoppler-dev (= 0.24.5-2ubuntu4), gir1.2-poppler-0.18 (= 0.24.5-2ubuntu4), libglib2.0-dev (>= 2.18), libcairo2-dev (>= 1.10.0) Suggests: libpoppler-glib-doc Filename: pool/main/p/poppler/libpoppler-glib-dev_0.24.5-2ubuntu4_i386.deb Size: 115694 MD5sum: 45ddb5eee5f0ad9d9d6ef159b2532b94 SHA1: 826aad70c1cdf0379c1247e40b8f27dcbc4d9719 SHA256: cec05a4563b511da2287818527db6a0683eda510c29e872061de27154a4a8d0b Description: PDF rendering library -- development files (GLib interface) Homepage: http://poppler.freedesktop.org/ Description-md5: 4483b544bc64264785fa77d6466a341f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-glib-doc Priority: optional Section: doc Installed-Size: 888 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: all Source: poppler Version: 0.24.5-2ubuntu4 Replaces: libpoppler-glib-dev (<< 0.24.4) Depends: libglib2.0-doc, libcairo2-doc Breaks: libpoppler-glib-dev (<< 0.24.4) Filename: pool/main/p/poppler/libpoppler-glib-doc_0.24.5-2ubuntu4_all.deb Size: 55314 MD5sum: 5b278e260a4e7d0903b5247a73ee1435 SHA1: cb406d94114be43847a5fb2c254a93bde652aab2 SHA256: e3ead5314fd6f725211f3070a02e06434344f00b36607a182d051a8497807e16 Description: PDF rendering library -- documentation for the GLib interface Homepage: http://poppler.freedesktop.org/ Description-md5: 57cf6faf4d2f4c9877d6db227de05dcd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-glib8 Priority: optional Section: libs Installed-Size: 335 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libc6 (>= 2.4), libcairo2 (>= 1.12.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.37.3), libpoppler44 (>= 0.24.5), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/poppler/libpoppler-glib8_0.24.5-2ubuntu4_i386.deb Size: 82666 MD5sum: b89b97574d971a327c9fd517caf5ae1d SHA1: aa2f5e5573ba2d31c90c9d642d7d36710765ecb5 SHA256: f039a0dbd6487d8ca31a5297670cb9588787591212523ebe35a6026ed41d100e Description: PDF rendering library (GLib-based shared library) Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: 3d73daa08a49dca5cd4c25e32862c41e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpoppler-private-dev Priority: optional Section: libdevel Installed-Size: 1161 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Replaces: libpoppler-dev (<< 0.20.2) Depends: libpoppler-dev (= 0.24.5-2ubuntu4) Suggests: libfreetype6-dev Breaks: libpoppler-dev (<< 0.20.2) Filename: pool/main/p/poppler/libpoppler-private-dev_0.24.5-2ubuntu4_i386.deb Size: 158522 MD5sum: 11b47d5adf053889fb4c9cd9f46c126e SHA1: 6338d42ea06094d7f4ec427e97355ddeed47ed65 SHA256: 0eee67c14778ceab0f5354e425532ad1c88b278c72e3b8db52120753806a30d4 Description: PDF rendering library -- private development files Homepage: http://poppler.freedesktop.org/ Description-md5: f047a262a6d3ff3cbd6650f1d55e93d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-qt4-4 Priority: optional Section: libs Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libc6 (>= 2.4), libpoppler44 (>= 0.24.5), libqt4-xml (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/poppler/libpoppler-qt4-4_0.24.5-2ubuntu4_i386.deb Size: 108710 MD5sum: 193bf3f280df5b85eeb60b7514d256b9 SHA1: f96e5d25acc424bc8627c9b3823c9ea49abe5e53 SHA256: a62fa3b1a62ddc7f3d84ced0b79b966b292e0774f762a28d2bcdcf93363e6b5f Description: PDF rendering library (Qt 4 based shared library) Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: 7aba3c6a3f8bfa6fa8e6d9ea66a1433d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libpoppler-qt4-dev Priority: optional Section: libdevel Installed-Size: 781 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler-qt4-4 (= 0.24.5-2ubuntu4), libpoppler-dev (= 0.24.5-2ubuntu4), libqt4-dev (>= 4.4.0) Filename: pool/main/p/poppler/libpoppler-qt4-dev_0.24.5-2ubuntu4_i386.deb Size: 141076 MD5sum: edd9dfaf31bfce5cc63dae2bcb06d1fd SHA1: 733fd40f45826f117aff01dee0ce1212b5f65d9a SHA256: c99925c36510b17ca8878e9c1f629ec4c968a04f3383e8c85ac78a18d85d8b34 Description: PDF rendering library -- development files (Qt 4 interface) Homepage: http://poppler.freedesktop.org/ Description-md5: 49af48187cf9e04b62ac9215438d6465 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-qt5-1 Priority: optional Section: libs Installed-Size: 431 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libc6 (>= 2.4), libpoppler44 (>= 0.24.5), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5xml5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/poppler/libpoppler-qt5-1_0.24.5-2ubuntu4_i386.deb Size: 112832 MD5sum: c77ecdecd35fe2a02db1fe6a9883f2ad SHA1: 5cb817ead0b739c08c04c2e2d05b8cd1f7c964ec SHA256: 09ffe9c0dd684718794facd1e7fbb32df76adfe96c31f7abe5e8e5282cf2ff74 Description: PDF rendering library (Qt 5 based shared library) Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: 0ac9bcecfcfad7f5e76c5f9836ae7168 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler-qt5-dev Priority: optional Section: libdevel Installed-Size: 799 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler-qt5-1 (= 0.24.5-2ubuntu4), libpoppler-dev (= 0.24.5-2ubuntu4), qtbase5-dev Filename: pool/main/p/poppler/libpoppler-qt5-dev_0.24.5-2ubuntu4_i386.deb Size: 146984 MD5sum: f5c625900dbe82e0093c85332acfded5 SHA1: 6d9d15243ca4d3b36d842e39efce207ac1cf051d SHA256: 8b283a709fae1eec716fa31634a5f8c2732207b8abbeb94aa75e77bf77fedd8d Description: PDF rendering library -- development files (Qt 5 interface) Homepage: http://poppler.freedesktop.org/ Description-md5: 23f42cab8509c36d744da26df5cb855a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpoppler44 Priority: optional Section: libs Installed-Size: 2215 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libc6 (>= 2.11), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libpng12-0 (>= 1.2.13-4), libstdc++6 (>= 4.1.1), libtiff5 (>= 4.0.3) Pre-Depends: multiarch-support Suggests: poppler-data Filename: pool/main/p/poppler/libpoppler44_0.24.5-2ubuntu4_i386.deb Size: 678176 MD5sum: 318c611d2baeeba61bbc11c2c4b85d7d SHA1: a39ad4c275e877a6a9ebfb4090f8daa01d807920 SHA256: af93ccb50d9e14c6192a4b32c18519f6aceb3b14453feb3712ad51db6a5a2e7c Description: PDF rendering library Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: 74b6b371a9886bca4fc2c2761b5a2fec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpopt-dev Priority: optional Section: libdevel Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Paul Martin Architecture: i386 Source: popt Version: 1.16-8ubuntu1 Replaces: popt Depends: libc6-dev | libc-dev, libpopt0 (= 1.16-8ubuntu1) Conflicts: popt Filename: pool/main/p/popt/libpopt-dev_1.16-8ubuntu1_i386.deb Size: 39308 MD5sum: 61fa31bc4da4ba534aacd2bad6123bc1 SHA1: ecaf2771bc38d813417b0b8e0a723f70a93c68ac SHA256: 041dfe395b812bbce5efe48af60382f636b97055fa4f496f3bc56e2f7f7a54ce Description: lib for parsing cmdline parameters - development files Multi-Arch: same Homepage: http://rpm5.org/ Description-md5: ace33b20a6121b7b5a6c26940bbab356 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpopt0 Priority: important Section: libs Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Paul Martin Architecture: i386 Source: popt Version: 1.16-8ubuntu1 Replaces: popt Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Conflicts: libpopt-dev (<= 1.4-1), popt, rpm (<= 4.0.2-3) Filename: pool/main/p/popt/libpopt0_1.16-8ubuntu1_i386.deb Size: 25750 MD5sum: 3e46102936c07779b0f2eff9f5851d41 SHA1: 8dbabe82471e5089675d1fde9b6e3f18ca0b0750 SHA256: 098851d8e08d0bfe02db5b4d9f6a0edfdc8abf088db0346b5ed59232ecdeb55a Description: lib for parsing cmdline parameters Multi-Arch: same Homepage: http://rpm5.org/ Description-md5: 1bc14780a06cc6b9a0c726cd091c6d96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libportaudio2 Priority: optional Section: libs Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Debian VoIP Team Architecture: i386 Source: portaudio19 Version: 19+svn20140130-1 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.15), libjack-jackd2-0 (>= 1.9.5~dfsg-14) | libjack-0.116 Pre-Depends: multiarch-support Filename: pool/main/p/portaudio19/libportaudio2_19+svn20140130-1_i386.deb Size: 60740 MD5sum: 36a0187b7a7d619b1f4415c943e867ae SHA1: 31701b695f2f25132f8946e7c92b7050cd1af256 SHA256: b47746782e234d28379b59038a5e84fa9a703d5cb99653d87e5c47b5a6822f24 Description: Portable audio I/O - shared library Multi-Arch: same Homepage: http://www.portaudio.com/ Description-md5: a71bbbd00a98fe093b85cc97ff79e9ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libportaudiocpp0 Priority: optional Section: libs Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian VoIP Team Architecture: i386 Source: portaudio19 Version: 19+svn20140130-1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libportaudio2 (>= 19+svn20101113), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/p/portaudio19/libportaudiocpp0_19+svn20140130-1_i386.deb Size: 15882 MD5sum: 1742e5df5de7460b87633bd3ec41305b SHA1: 12e75dca4b8eccb7fe9f8190d2466ac850b89e03 SHA256: 22916dfbcaf56ea5522b700254003be1e99441a2ebf62bd7df2e24fdb584beba Description: Portable audio I/O C++ bindings - shared library Multi-Arch: same Homepage: http://www.portaudio.com/ Description-md5: cad40baf68fba1028830450850d536d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppi-perl Priority: optional Section: perl Installed-Size: 1152 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.215-1 Depends: perl, libio-string-perl, libtask-weaken-perl, libclone-perl (>= 0.30), libparams-util-perl, liblist-moreutils-perl Filename: pool/main/libp/libppi-perl/libppi-perl_1.215-1_all.deb Size: 380598 MD5sum: 7a312985f3d6c184dd2223cc1c9294f8 SHA1: 000a3ecfa7d30147b5deca8cf5b48b5de191648c SHA256: e5ac31d49a7f1c036e84bf8f6faab3271c7176a0640588f4ae28f40696b42212 Description: module to parse, analyze and manipulate Perl code Homepage: http://search.cpan.org/dist/PPI/ Description-md5: 65e8ee936b1f6025105595702eb5063b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppix-regexp-perl Priority: optional Section: perl Installed-Size: 536 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.036-1 Depends: liblist-moreutils-perl, libppi-perl, libtask-weaken-perl, perl Filename: pool/main/libp/libppix-regexp-perl/libppix-regexp-perl_0.036-1_all.deb Size: 222562 MD5sum: 847ca5e81f67f76dabf522d840e23777 SHA1: 7c5a511a227b4547172593cb75087e30a18013d9 SHA256: 93032100b67ca70bd9d78ad6c340c73315e8eaf9358afa35fc63f476f7bd164e Description: module to parse regular expressions Homepage: https://metacpan.org/release/PPIx-Regexp/ Description-md5: affd490263909622de74933e9561bd66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppix-utilities-perl Priority: optional Section: perl Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.001000-1 Depends: perl, libexception-class-perl, libppi-perl (>= 1.208), libreadonly-perl, libtask-weaken-perl Filename: pool/main/libp/libppix-utilities-perl/libppix-utilities-perl_1.001000-1_all.deb Size: 17858 MD5sum: 137efc18b9992f3e7f32a9cdc5b46a12 SHA1: f3c010d659415a4db10bc2c814eec68f57cc4d81 SHA256: 0c242e77cb6091b0c72e8ec2586cc3a948270ae096613b438d6430c1f79f0210 Description: Perl module containing extensions to PPI Homepage: http://search.cpan.org/dist/PPIx-Utilities/ Description-md5: e922ae96d09b0f657c401d05c9b73c7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppl-c4 Priority: optional Section: libs Installed-Size: 4136 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: ppl Version: 1:1.1-1ubuntu1 Depends: libppl13 (= 1:1.1-1ubuntu1), libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libgmp10, libgmpxx4ldbl, libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/p/ppl/libppl-c4_1.1-1ubuntu1_i386.deb Size: 951672 MD5sum: b686876ce32583be91adf9f46a219fce SHA1: e14ebbc9210404cbdca4471d0579e44cd4e992fb SHA256: 6a7af265a5dd2b23ae230067f65277839c6b2c6f054fbfdd9acb9834a5277dc0 Description: Parma Polyhedra Library (C interface) Multi-Arch: same Homepage: http://www.cs.unipr.it/ppl/ Description-md5: 3c87365d9c2bd2105b6021fbbfa6cdf0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppl-dev Priority: optional Section: libdevel Installed-Size: 14226 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: ppl Version: 1:1.1-1ubuntu1 Replaces: libppl0.12-dev, libppl6, libppl7 (<< 0.10~pre27-4), libppl9 Provides: libppl-c-dev, libppl0.12-dev Depends: libppl13 (= 1:1.1-1ubuntu1), libppl-c4 (= 1:1.1-1ubuntu1) Recommends: libgmp3-dev (>= 4.1.3) Suggests: libppl-doc Conflicts: libppl0.10-dev, libppl0.11-dev Filename: pool/main/p/ppl/libppl-dev_1.1-1ubuntu1_i386.deb Size: 1797668 MD5sum: 3e7ffe98e98da4c9a8c4cc594cf9357c SHA1: 610a49aca59986e2a301e56f0336136f858ab030 SHA256: 83b280cff0eb8c9d6dd0e71afc39036fcba83469b7b430e1caea8a04dbde86b7 Description: Parma Polyhedra Library (development) Multi-Arch: same Homepage: http://www.cs.unipr.it/ppl/ Description-md5: 4fa45d1b24bb1abf6f705e66d3cc4f4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppl-doc Priority: optional Section: doc Installed-Size: 15597 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: ppl Version: 1:1.1-1ubuntu1 Depends: libjs-jquery Filename: pool/main/p/ppl/libppl-doc_1.1-1ubuntu1_all.deb Size: 6475154 MD5sum: 9eae967657092cc40472772371e54188 SHA1: 33c19188913e1e0f8ca82c7aa322afe08b375706 SHA256: 9d29a8d6428989bed36a4342efa55f5aa6a620ddb211d1c58f940c5478d75329 Description: Parma Polyhedra Library: Documentation Homepage: http://www.cs.unipr.it/ppl/ Description-md5: e029bc6a5a70f3c124b8771f1c1acfb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libppl13 Priority: optional Section: libs Installed-Size: 1456 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: ppl Version: 1:1.1-1ubuntu1 Depends: libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libgmp10, libgmpxx4ldbl, libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/p/ppl/libppl13_1.1-1ubuntu1_i386.deb Size: 438320 MD5sum: 214db9a19b199fcd23fefbd58fea51b1 SHA1: ba11d2329e1fc6b25ebb692d1b798812962bfda1 SHA256: 9a63f3cad3481c385ca03cab2d17cb2d6c052abff7814ead979ae0a56fe19340 Description: Parma Polyhedra Library (runtime library) Multi-Arch: same Homepage: http://www.cs.unipr.it/ppl/ Description-md5: 5bfdb37d7ebe77449accec15da9c6faa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpq-dev Priority: optional Section: libdevel Installed-Size: 640 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.4), libpq5 (= 9.3.4-1), libssl-dev, krb5-multidev, comerr-dev Suggests: postgresql-doc-9.3 Filename: pool/main/p/postgresql-9.3/libpq-dev_9.3.4-1_i386.deb Size: 139520 MD5sum: 84f722971d3a7c3ed0652eb68cc7fc16 SHA1: 4926968ef2f133e49864f3f5497d06376c5f5045 SHA256: b0bd8eb07d86b33c350e02e3250f688914f5853a54cfc14d5e17974aba1e186a Description: header files for libpq5 (PostgreSQL library) Homepage: http://www.postgresql.org/ Description-md5: 7f4362b106aae6b219ccc880faa1f04c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpq5 Priority: optional Section: libs Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.4), libcomerr2 (>= 1.01), libgssapi-krb5-2 (>= 1.10+dfsg~), libkrb5-3 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7), libssl1.0.0 (>= 1.0.0) Filename: pool/main/p/postgresql-9.3/libpq5_9.3.4-1_i386.deb Size: 78942 MD5sum: ae6d13382d7b9ffe7be05557504421fb SHA1: 52eaa872c6c21dc6826008d648bf67d2ad9319d0 SHA256: 0a2f431f4986a4a13cdbc9b5ac3241cd12ad9b483ab26cac9f84b857965fdb80 Description: PostgreSQL C client library Homepage: http://www.postgresql.org/ Description-md5: 4109d08c168c8058d09c0cc8bf8b18b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: libprelude-dev Priority: extra Section: libdevel Installed-Size: 362 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: i386 Source: libprelude Version: 1.0.0-11ubuntu4 Depends: libprelude2 (= 1.0.0-11ubuntu4), libgnutls-dev, libltdl3-dev Filename: pool/main/libp/libprelude/libprelude-dev_1.0.0-11ubuntu4_i386.deb Size: 39322 MD5sum: 0fff09a703b25fdd73c2b9cb28494644 SHA1: 787470985d77d03d8454f12a34a9f9155ac0ccc5 SHA256: 9819ae0659b8a1d5603eccc4901ac6353c02f02e1d0c98116d6e50a1b3f7682c Description: Security Information Management System [ Development files ] Description-md5: 138cca58ff9d9fd91ec449e73640bf26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprelude2 Priority: extra Section: libs Installed-Size: 4449 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: i386 Source: libprelude Version: 1.0.0-11ubuntu4 Depends: libc6 (>= 2.16), libgcc1 (>= 1:4.1.1), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libltdl7 (>= 2.4.2), libstdc++6 (>= 4.2.1) Pre-Depends: multiarch-support Filename: pool/main/libp/libprelude/libprelude2_1.0.0-11ubuntu4_i386.deb Size: 430490 MD5sum: a401c6969f4586b63ec9fed30c8a94bf SHA1: 2bc52ac27e24825fc6f25f7c24ca43f0d1231b46 SHA256: e84104a9a174675e10541a7c069cbaf43279f52c1fa3d7bc6647f8bdec40c2fe Description: Security Information Management System [ Base library ] Description-md5: 62d7e58647fcf77e9c8e77ffab7eb8bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprelude2-dbg Priority: extra Section: libdevel Installed-Size: 3267 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: i386 Source: libprelude Version: 1.0.0-11ubuntu4 Depends: libprelude2 (= 1.0.0-11ubuntu4) Filename: pool/main/libp/libprelude/libprelude2-dbg_1.0.0-11ubuntu4_i386.deb Size: 2694164 MD5sum: 15e2b529d8e9941c2138d57a5cb50724 SHA1: fed8f44d5f294bbd429f10b67b6ea4806247fac2 SHA256: a2f597197d6c97dc35914d657906ad076b3cf4d3380cd73f176b9fcf99250d6c Description: Security Information Management System [ Debug symbols ] Description-md5: ec7bb4fdbdc5f383b4e869af13f6d781 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprobe-perl-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.03-1 Depends: perl Filename: pool/main/libp/libprobe-perl-perl/libprobe-perl-perl_0.03-1_all.deb Size: 9484 MD5sum: 19558160cf9bd467e3ebb45ad317142c SHA1: 61953a2b7c2f9738a072e3f39b4a0925076d61a7 SHA256: beae4a1d3eb657b5c19151c75b4d49d751e6955e3615f2b0fc7b49cee0329829 Description: module to obtain information about the currently running Perl interpreter Homepage: https://metacpan.org/release/Probe-Perl/ Description-md5: 66746d1359f8984288612a9dc9fa8f25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproc-waitstat-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Roderick Schertler Architecture: all Version: 1.00-4 Depends: perl (>= 5.6.0-16), libipc-signal-perl Filename: pool/main/libp/libproc-waitstat-perl/libproc-waitstat-perl_1.00-4_all.deb Size: 7806 MD5sum: dfeba7d08b9e7de10c36450b293c05de SHA1: b230a5c2b73ac749f23bb4a1bbf1f419d25559c4 SHA256: 11bcf620dd2db4231d4fafe89318eb0b57dee9286449984961a5bbf405500dd3 Description: interpret and act on wait() status values Description-md5: ba774cbff5e3902aaee874b1aa3dad86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libprocess-cpp-dev Priority: optional Section: libdevel Installed-Size: 123 Maintainer: Ubuntu Developers Architecture: i386 Source: process-cpp Version: 1.0.0+14.04.20140328-0ubuntu1 Depends: libprocess-cpp1 (= 1.0.0+14.04.20140328-0ubuntu1), libproperties-cpp-dev Recommends: libprocess-cpp-doc Filename: pool/main/p/process-cpp/libprocess-cpp-dev_1.0.0+14.04.20140328-0ubuntu1_i386.deb Size: 12664 MD5sum: 75f1508144d8d158d151ddc29281242e SHA1: 3f90a44d941ac73afa90a30e1648dd76ad129893 SHA256: 2f9a35ade38d87f21b24f02e768820bc16d681dc5e7725c1f623874a262578f0 Description: C++11 library for handling processes - dev headers and libraries Multi-Arch: same Homepage: https://launchpad.net/process-cpp Description-md5: dcd76cecf0a246b42fd8588729884034 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprocess-cpp-doc Priority: optional Section: doc Installed-Size: 9472 Maintainer: Ubuntu Developers Architecture: all Source: process-cpp Version: 1.0.0+14.04.20140328-0ubuntu1 Suggests: libprocess-cpp-dev Filename: pool/main/p/process-cpp/libprocess-cpp-doc_1.0.0+14.04.20140328-0ubuntu1_all.deb Size: 5993656 MD5sum: 04ace237ff8978667fbab30f9988f79f SHA1: 36b7e459927fd74cd3ab7e35f84ca599bbd4856a SHA256: 050decf7400fd3f99bd0e1c9d1b9e6e3a26d435d93c15dfb66088b5bdfba3337 Description: Documentation files for libprocess-cpp-dev Homepage: https://launchpad.net/process-cpp Description-md5: b89b7ffbc6e88c4dcf4977b612c0bb09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprocess-cpp1 Priority: optional Section: libs Installed-Size: 176 Maintainer: Ubuntu Developers Architecture: i386 Source: process-cpp Version: 1.0.0+14.04.20140328-0ubuntu1 Depends: libboost-iostreams1.54.0, libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.8) Pre-Depends: multiarch-support Filename: pool/main/p/process-cpp/libprocess-cpp1_1.0.0+14.04.20140328-0ubuntu1_i386.deb Size: 45560 MD5sum: 4ce48c7a3aa0499ba230183d6a32eeb2 SHA1: 873db56ec1ab8ae82d9bebd739228e9fba74a294 SHA256: e4bbb29badb25692059f857d617c8d9475d107944b9f3b933de9b04c311a19e6 Description: C++11 library for handling processes - runtime library Multi-Arch: same Homepage: https://launchpad.net/process-cpp Description-md5: 6a2ab05d94dd1697f6eb96419a629505 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Package: libprocps3 Priority: required Section: libs Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: procps Version: 1:3.3.9-1ubuntu2 Replaces: procps (<< 1:3.3.2-1) Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/p/procps/libprocps3_3.3.9-1ubuntu2_i386.deb Size: 29966 MD5sum: 83969308f7a2221e2d02a360b8e478c1 SHA1: 4f3c065e67a95b59bade86715ab8ecab16e9bccc SHA256: 39879a44bd12bbf1f3c7b7f7c4b151e5ecbcfa4e180fa82f07b9773fdc870b96 Description: library for accessing process information from /proc Multi-Arch: same Homepage: http://gitorious.org/procps Description-md5: 195f4a1a493350f6f0732a65b3cda83f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libprocps3-dev Priority: optional Section: libdevel Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: procps Version: 1:3.3.9-1ubuntu2 Replaces: libproc-dev, libprocps0-dev, libprocps1-dev Provides: libprocps-dev Depends: libprocps3 (= 1:3.3.9-1ubuntu2), libc-dev Conflicts: libproc-dev, libprocps0-dev, libprocps1-dev Filename: pool/main/p/procps/libprocps3-dev_3.3.9-1ubuntu2_i386.deb Size: 38838 MD5sum: ab5f3d9eabbda30bec705ca394bfe872 SHA1: 3a33db7f4549d27dbbda98cd7b08242e9a813b4b SHA256: c1163438fd093f519977c9910a5c18c82975d5fe39612eaa8e1ea8ae62929852 Description: library for accessing process information from /proc Homepage: http://gitorious.org/procps Description-md5: c56d4abfd4ec994d5057fac741fac18b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproperties-cpp-dev Priority: optional Section: libdevel Installed-Size: 67 Maintainer: Ubuntu Developers Architecture: i386 Source: properties-cpp Version: 0.0.1+14.04.20140220-0ubuntu1 Recommends: libproperties-cpp-doc Filename: pool/main/p/properties-cpp/libproperties-cpp-dev_0.0.1+14.04.20140220-0ubuntu1_i386.deb Size: 6454 MD5sum: 53a98ea02eff840cec8ccd0b435d1523 SHA1: 72fd2fd9b70293a0b4cf8b5b363567f77590ae21 SHA256: 124b6116b95778c52ace96f60c326921b46b3bf36acde31f7be4c7ead60c12b0 Description: C++11 library providing properties/signals. - dev headers Multi-Arch: same Homepage: https://launchpad.net/properties-cpp Description-md5: d682fb796e380ab1e5ff0185b9458cd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproperties-cpp-doc Priority: optional Section: doc Installed-Size: 1693 Maintainer: Ubuntu Developers Architecture: all Source: properties-cpp Version: 0.0.1+14.04.20140220-0ubuntu1 Filename: pool/main/p/properties-cpp/libproperties-cpp-doc_0.0.1+14.04.20140220-0ubuntu1_all.deb Size: 372726 MD5sum: 2838899c9cb04cf7d04ec04f03609b6d SHA1: 8a25ca3c2352c6a4799156ed1981b82949c08e7a SHA256: 90f765df031ef32385b7c701e306513feddb99bec17610abef08b52ea9332ad1 Description: Documentation files for libproperties-cpp-dev Homepage: https://launchpad.net/properties-cpp Description-md5: 71a24a32219d670df4a478b0f74383ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprotobuf-dev Priority: extra Section: libdevel Installed-Size: 2664 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: protobuf Version: 2.5.0-9ubuntu1 Depends: zlib1g-dev, libprotobuf8 (= 2.5.0-9ubuntu1), libprotobuf-lite8 (= 2.5.0-9ubuntu1) Filename: pool/main/p/protobuf/libprotobuf-dev_2.5.0-9ubuntu1_i386.deb Size: 413128 MD5sum: 0e31b0a660e1fd4e79769fd5255a86d6 SHA1: 366f8805418d7c8f13c1ace13a8331aa677c8ff4 SHA256: 208607c75412368e083f84abafb3bbabb80d3b0780e749631d31b6408e8125f2 Description: protocol buffers C++ library (development files) Multi-Arch: same Homepage: https://code.google.com/p/protobuf/ Description-md5: 46508a20bc181591502383b4f00be1a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprotobuf-lite8 Priority: optional Section: libs Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: protobuf Version: 2.5.0-9ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.3) Filename: pool/main/p/protobuf/libprotobuf-lite8_2.5.0-9ubuntu1_i386.deb Size: 53530 MD5sum: 4353e5879e4250a9dfd66c9ac316a6ee SHA1: 1b406570adf081e4863083dfb1827e05c179fffe SHA256: 1ec0dfec3f368daf8bf1c22b60ac24aab27cf6311a3875786bffab230e1ad107 Description: protocol buffers C++ library (lite version) Multi-Arch: same Homepage: https://code.google.com/p/protobuf/ Description-md5: bef75569f3d092ed9b714a68e215c917 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprotobuf8 Priority: optional Section: libs Installed-Size: 1070 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: protobuf Version: 2.5.0-9ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.3), zlib1g (>= 1:1.1.4) Filename: pool/main/p/protobuf/libprotobuf8_2.5.0-9ubuntu1_i386.deb Size: 293734 MD5sum: a9a836d2cdefab9c1bdc8da5be3943da SHA1: 7a0fe23e2adf2eb3047b02f7413568515971650a SHA256: 39a64a5b98aa6701b431c53e60e71647dfeb8d290dbca8e71a0d1f82230ea82d Description: protocol buffers C++ library Multi-Arch: same Homepage: https://code.google.com/p/protobuf/ Description-md5: c69f5af146ab9bc64e44b912e5af457e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libprotoc-dev Priority: extra Section: libdevel Installed-Size: 1447 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: protobuf Version: 2.5.0-9ubuntu1 Replaces: libprotobuf-dev (<< 2.1.0) Depends: libprotoc8 (= 2.5.0-9ubuntu1), libprotobuf-dev (= 2.5.0-9ubuntu1) Breaks: libprotobuf-dev (<< 2.1.0) Filename: pool/main/p/protobuf/libprotoc-dev_2.5.0-9ubuntu1_i386.deb Size: 256238 MD5sum: 0490a9fd43f8fd0e19c503fe2c0cf955 SHA1: 9fbbaad521b5ad6b8508cfa1fc9f45ed95b86783 SHA256: c8cc407f26722f62ef7abcaab7dba66b407decc5a2fca067e7a3f970aefdb4f6 Description: protocol buffers compiler library (development files) Multi-Arch: same Homepage: https://code.google.com/p/protobuf/ Description-md5: 441ff9619f6d64f58de3a01f647b0edb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libprotoc8 Priority: optional Section: libs Installed-Size: 879 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: protobuf Version: 2.5.0-9ubuntu1 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libprotobuf8, libstdc++6 (>= 4.4.0) Filename: pool/main/p/protobuf/libprotoc8_2.5.0-9ubuntu1_i386.deb Size: 222182 MD5sum: d42e2a0ed2ae9281f103682ab840db8f SHA1: eaa0b22564d4f4b677914d063db7550ebc045c56 SHA256: 6843ce14191bac125fa6440256df523da85e71be37a7716454787a8bcae72ea0 Description: protocol buffers compiler library Multi-Arch: same Homepage: https://code.google.com/p/protobuf/ Description-md5: c53c70dca7ff74e285f88be70de72a0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproxy-cil-dev Priority: optional Section: cli-mono Installed-Size: 39 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: all Source: libproxy Version: 0.4.11-0ubuntu4 Depends: libproxy0.4-cil (= 0.4.11-0ubuntu4) Filename: pool/main/libp/libproxy/libproxy-cil-dev_0.4.11-0ubuntu4_all.deb Size: 2374 MD5sum: 63d9f98024d799779554590d7069251a SHA1: 511a54b077d0defd58900288f82ab23ce753d280 SHA256: f5a68780f9e6f7113987fa83a3b46f40cb2f5688e7163b491a5af5cabbfca4a5 Description: automatic proxy configuration management library (CLI devel) Homepage: http://code.google.com/p/libproxy/ Description-md5: f84b6b72fea878076ed72e52808dc0ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproxy-dev Priority: optional Section: libdevel Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: i386 Source: libproxy Version: 0.4.11-0ubuntu4 Depends: libproxy1 (= 0.4.11-0ubuntu4) Filename: pool/main/libp/libproxy/libproxy-dev_0.4.11-0ubuntu4_i386.deb Size: 4270 MD5sum: 3885a194543fe87db31dc0ced38f9634 SHA1: d1ef13f63047f43307fd88117d19b361759477ec SHA256: f02a8634d511dec017062aba884f25e3e140acaeb2f9194a17ae434e71e37643 Description: automatic proxy configuration management library (devel) Multi-Arch: same Homepage: http://code.google.com/p/libproxy/ Description-md5: 29be2cc9b16e55d72e96ae251f29ee6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproxy0.4-cil Priority: optional Section: cli-mono Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: all Source: libproxy Version: 0.4.11-0ubuntu4 Depends: cli-common (>= 0.5.1), libmono-corlib4.0-cil (>= 2.10.1), libproxy1 (>= 0.4.7) Filename: pool/main/libp/libproxy/libproxy0.4-cil_0.4.11-0ubuntu4_all.deb Size: 4870 MD5sum: 9b851d5eb65faaae010570c0c0eec868 SHA1: a98dda4062be219225788918567b14db7b13316b SHA256: 82b63009725d47297fe15d93102b82294f36b38ff32016cf4c1cc6efbea69449 Description: automatic proxy configuration management library (CLI) Homepage: http://code.google.com/p/libproxy/ Description-md5: 42776b22a3576eff412b0a43566c3c44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libproxy1 Priority: optional Section: libs Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: i386 Source: libproxy Version: 0.4.11-0ubuntu4 Depends: libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/libp/libproxy/libproxy1_0.4.11-0ubuntu4_i386.deb Size: 55324 MD5sum: b402e68144635630b4a9a83418f2db34 SHA1: 54716bfd582bd88a2ce72c3853cadaf81cc43d8c SHA256: df6bcf040f0d71334a862f5645968652a53fcd7daaee11d936beba591c1a6377 Description: automatic proxy configuration management library (shared) Multi-Arch: same Homepage: http://code.google.com/p/libproxy/ Description-md5: e83bd4fc73080685251129a6bdac7f50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libproxy1-plugin-gsettings Priority: optional Section: libs Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: i386 Source: libproxy Version: 0.4.11-0ubuntu4 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.26.0), libproxy1 (= 0.4.11-0ubuntu4), libstdc++6 (>= 4.1.1) Filename: pool/main/libp/libproxy/libproxy1-plugin-gsettings_0.4.11-0ubuntu4_i386.deb Size: 23706 MD5sum: c138e168af796642c2bb3484986934f5 SHA1: edd229fcb2b5c288f601140e640fcce9902469ce SHA256: ad91f2100865d7c83c5e7c04c3a74b3e82efe92960b6fb774ef76789302a5740 Description: automatic proxy configuration management library (GSettings plugin) Multi-Arch: same Homepage: http://code.google.com/p/libproxy/ Description-md5: 5d0ba9adbb7dcf6a885a32ef5fbfd48a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libproxy1-plugin-networkmanager Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Emilio Pozuelo Monfort Architecture: i386 Source: libproxy Version: 0.4.11-0ubuntu4 Depends: libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libproxy1 (= 0.4.11-0ubuntu4) Filename: pool/main/libp/libproxy/libproxy1-plugin-networkmanager_0.4.11-0ubuntu4_i386.deb Size: 6102 MD5sum: 7783c9e944a7aeda30d7c69813d1be0f SHA1: 60d3ec54970f92bb3ad4a14bc46d216980aa70eb SHA256: 888489a8ec51a904fdc10d9c01da4c91199a597d2b18a5e3e7afd824a00ad715 Description: automatic proxy configuration management library (Network Manager plugin) Multi-Arch: same Homepage: http://code.google.com/p/libproxy/ Description-md5: 3c77d58edf9693a82bb2bebb3f33e55a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libpspell-dev Priority: optional Section: libdevel Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Brian Nelson Architecture: i386 Source: aspell Version: 0.60.7~20110707-1ubuntu1 Replaces: aspell-bin (<< 0.50.3-3) Depends: libaspell15 (= 0.60.7~20110707-1ubuntu1), libaspell-dev Suggests: aspell-doc Filename: pool/main/a/aspell/libpspell-dev_0.60.7~20110707-1ubuntu1_i386.deb Size: 4368 MD5sum: 646b2e95a314b3d6a6b4945cf36a0cb5 SHA1: 01b5ae8b1662aa05decaf3c7f4c0fb5defcc6648 SHA256: b03efb4514ca1a34829929194d3b984cb2f67c9ad7474decacd9adfb41e3795c Description: Development files for applications with pspell support Homepage: http://aspell.net/ Description-md5: 9cc1424d13d0db47f71c3da300fe317b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpst-dev Priority: optional Section: libdevel Installed-Size: 1894 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: i386 Source: libpst Version: 0.6.59-1build1 Replaces: libpst4 (<= 0.6.54-3) Depends: libpst4 (= 0.6.59-1build1) Breaks: libpst4 (<= 0.6.54-3) Filename: pool/main/libp/libpst/libpst-dev_0.6.59-1build1_i386.deb Size: 610250 MD5sum: bed526f61659b629155271263b9f6766 SHA1: 9ea6759a9747dfdfefa05f2facc10124c5622cb0 SHA256: b7186083c30f8dce756a8d6720468ca6641e7ff0d25e6a30afb2366d79e7aec4 Description: library for reading Microsoft Outlook PST files (development files) Homepage: http://www.five-ten-sg.com/libpst/ Description-md5: 7eb19eba4055a0e647876436b9fc89a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpst4 Priority: optional Section: libs Installed-Size: 229 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: i386 Source: libpst Version: 0.6.59-1build1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libp/libpst/libpst4_0.6.59-1build1_i386.deb Size: 69416 MD5sum: d323938a4ab8724006586d5e2a51c552 SHA1: 8a1afce5df4cb77c5ba5bf4a9b4023679ff97fd9 SHA256: 08d2e8ab19f3639926753f0dffa3d1872e18acc8dd5e809adb25ac7f8cdb8635 Description: library for reading Microsoft Outlook PST files Multi-Arch: same Homepage: http://www.five-ten-sg.com/libpst/ Description-md5: ed5aeac90075d862254b95743fc72727 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libpst4-dbg Priority: extra Section: debug Installed-Size: 401 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: i386 Source: libpst Version: 0.6.59-1build1 Depends: libpst4 (= 0.6.59-1build1), pst-utils Filename: pool/main/libp/libpst/libpst4-dbg_0.6.59-1build1_i386.deb Size: 316302 MD5sum: 70ea658895cc1243e39cb8acb5d17594 SHA1: c862304a0dd8dff95be752bdffa10c4855e9dc2c SHA256: 7f63c2e360aa2e8a62d1b8fb583bfd6eca4a77ad3e7c8bd5973e37e3c69faa67 Description: debug symbols for libpst Multi-Arch: same Homepage: http://www.five-ten-sg.com/libpst/ Description-md5: b6a3c22159950ff03fbd40ca792a5ad6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libptexenc-dev Priority: optional Section: libdevel Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: i386 Source: texlive-bin Version: 2013.20130729.30972-2build3 Depends: libptexenc1 (= 2013.20130729.30972-2build3) Filename: pool/main/t/texlive-bin/libptexenc-dev_2013.20130729.30972-2build3_i386.deb Size: 32456 MD5sum: 8489d445993a79919dc102dfb5c83181 SHA1: 563ecc340377c02502462295334ceb83002c80b3 SHA256: 878477f39db827004fe73f07d57e8fdf826c16a1d6273ab736c79fac86ca8385 Description: TeX Live: ptex encoding library (development part) Homepage: http://www.tug.org/texlive/ Description-md5: 97f8c00c2afd15ca23c120745336c811 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libptexenc1 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: i386 Source: texlive-bin Version: 2013.20130729.30972-2build3 Depends: libc6 (>= 2.4), libkpathsea6 Filename: pool/main/t/texlive-bin/libptexenc1_2013.20130729.30972-2build3_i386.deb Size: 33788 MD5sum: fe3b3e61abc82689d383c246cb092377 SHA1: cc6e0aa48c0de2184f172b5a2baf3604984b681a SHA256: 5cb9e3fcb6c62c45a7eb4c0600e389de1c5ff054b594800cf600b6202d53b560 Description: TeX Live: pTeX encoding library Homepage: http://www.tug.org/texlive/ Description-md5: a5ab52d0e6ab6894ec8f152cb125bbc0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: libpth-dev Priority: optional Section: libdevel Installed-Size: 271 Maintainer: Ubuntu Developers Original-Maintainer: NIIBE Yutaka Architecture: i386 Source: pth Version: 2.0.7-19ubuntu1 Depends: libpth20 (= 2.0.7-19ubuntu1) Filename: pool/main/p/pth/libpth-dev_2.0.7-19ubuntu1_i386.deb Size: 86810 MD5sum: 23facc1bf4d6d911fe6c0d9840a3317f SHA1: 6aff34de5d158a8e69c26846324e84dacd634e23 SHA256: 75a5975e4f26a4f9e65add857c0069df32c9cd1219111a26c0abed992c979597 Description: GNU Portable Threads (development) Homepage: http://www.gnu.org/software/pth/ Description-md5: ad14fcee422f923d02639de74f138d92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpth20 Priority: optional Section: libs Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: NIIBE Yutaka Architecture: i386 Source: pth Version: 2.0.7-19ubuntu1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/p/pth/libpth20_2.0.7-19ubuntu1_i386.deb Size: 43204 MD5sum: 1c6bac8530980ee673d61774a72dfc5a SHA1: 76c1381db0b086388e9ce4e329fbf0109c52b637 SHA256: 73a468605fc02ed5dda250bbd7744694c8fde6083cd15893ed53141f5b057f55 Description: GNU Portable Threads Multi-Arch: same Homepage: http://www.gnu.org/software/pth/ Description-md5: c8182a448d26aa385dbac4690d17b2c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libpthread-stubs0-dev Priority: optional Section: libdevel Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: XCB Developers Architecture: i386 Source: libpthread-stubs Version: 0.3-4 Filename: pool/main/libp/libpthread-stubs/libpthread-stubs0-dev_0.3-4_i386.deb Size: 4054 MD5sum: 210821a0ad5021e59ba117320b66f789 SHA1: 142d2466c90c7190fe3a79e28202ef07cd663e15 SHA256: 22269ce41175ed925c4f78fc3b3d7d1cf049811e0a71dc91dea74153a67cec6e Description: pthread stubs not provided by native libc, development files Multi-Arch: same Description-md5: febf47fd836991c5b22ad0c176b41e1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpulse-dev Priority: optional Section: libdevel Installed-Size: 494 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libpulse0 (= 1:4.0-0ubuntu11), libpulse-mainloop-glib0 (= 1:4.0-0ubuntu11), libglib2.0-dev, libavahi-client-dev Filename: pool/main/p/pulseaudio/libpulse-dev_4.0-0ubuntu11_i386.deb Size: 67548 MD5sum: 936675f2c0764ce4bc1acf335df8e2d6 SHA1: ecce5c6dda4f42cf85a5a3c2da046aed399215d7 SHA256: 86ce3059863d2a355d70f1a7daa779db2c08a8ac104a33659cce9d5d353c7491 Description: PulseAudio client development headers and libraries Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: a36e2b24ab289ab86564c79e92c8e87f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpulse-mainloop-glib0 Priority: optional Section: sound Installed-Size: 121 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.16.0), libpulse0 (>= 1:0.99.1) Pre-Depends: multiarch-support Filename: pool/main/p/pulseaudio/libpulse-mainloop-glib0_4.0-0ubuntu11_i386.deb Size: 11470 MD5sum: 610d110c4338b505426ca704bfea5a86 SHA1: a07c2141a14a48b2e50b21c381ac2e4cba9eaeb1 SHA256: e0b464281c5ecc5ce1316c52194003ecb8ba7eaa46119011399f5451e3a317fd Description: PulseAudio client libraries (glib support) Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: 1a4eb06cccc1a1ac1118b667f0c37ed7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpulse-mainloop-glib0-dbg Priority: optional Section: sound Installed-Size: 144 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libpulse-mainloop-glib0 (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/libpulse-mainloop-glib0-dbg_4.0-0ubuntu11_i386.deb Size: 17086 MD5sum: 3166d88f6223475e38223aab327d712e SHA1: 19868ff1240fb85364b9a0d212b7e4b86aa7b01e SHA256: 18a08b6a3f9714fd225587156df6fa9f612a7aac9b1c1d7dd2e4d7f1a7fc7e8a Description: PulseAudio client libraries (glib support) (debugging symbols) Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: 55747036137610f392d3388fdb814cfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpulse0 Priority: optional Section: libs Installed-Size: 894 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libasyncns0 (>= 0.3), libc6 (>= 2.15), libdbus-1-3 (>= 1.1.1), libjson-c2 (>= 0.10), libsndfile1 (>= 1.0.20), libwrap0 (>= 7.6-4~), libxcb1 Pre-Depends: multiarch-support Suggests: pulseaudio Breaks: pavucontrol (<< 0.9.8) Filename: pool/main/p/pulseaudio/libpulse0_4.0-0ubuntu11_i386.deb Size: 210768 MD5sum: a7605e11269815fca8c0293f28e8f12e SHA1: 4a1b9ae5e03ca952fbad8ce7d2fa3d42765c73cd SHA256: cb4a0c69386dd58282f2ec159eaecb6ec856a76c5fd74826e1b5f859cbc27e1f Description: PulseAudio client libraries Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: 35e72b270b48ab0d62d3de88ca26f71b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libpulse0-dbg Priority: optional Section: libs Installed-Size: 1639 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libpulse0 (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/libpulse0-dbg_4.0-0ubuntu11_i386.deb Size: 429592 MD5sum: 2e5030d9705f378be21b64ecf097b4d1 SHA1: 653af37f6268113b039dc1ed194bae369f8d9fe1 SHA256: 57c5abaf9dd5e78d37da4f707fd1fffdc811ad09ab2d9fb863c4e90866aafb3d Description: PulseAudio client libraries (debugging symbols) Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: e1ebcecc2d1a76c8d35afdb41db289ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpulsedsp Priority: optional Section: sound Installed-Size: 156 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.4), libpulse0 (>= 1:0.99.1) Pre-Depends: multiarch-support Filename: pool/main/p/pulseaudio/libpulsedsp_4.0-0ubuntu11_i386.deb Size: 20632 MD5sum: a2f27087d104bea566b454fa45ef25fc SHA1: 7fac17ac3f5f4aadd6f939ec9b61e431d9bea574 SHA256: 93a02a0bc4a4d2ec49acb2097cdfae63c8341124e7ce87bd946483a0322f54be Description: PulseAudio OSS pre-load library Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: 4d14e4e65420d03adc0822289f18a007 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpulsedsp-dbg Priority: extra Section: debug Installed-Size: 192 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libpulsedsp (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/libpulsedsp-dbg_4.0-0ubuntu11_i386.deb Size: 34624 MD5sum: ff173b164918147f7d680a693b42a7a8 SHA1: e76e7063093d5a3f28d60d807f476fdaa622c052 SHA256: 8357841d198c85fdc6ce2d452e8908b966c5455fd57bb9b455466a020021c819 Description: PulseAudio OSS pre-load library (debugging symbols) Multi-Arch: same Homepage: http://www.pulseaudio.org Description-md5: 614762c6888cf44fba7adfedc787bb41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpurple-bin Priority: optional Section: net Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: python, python-dbus Filename: pool/main/p/pidgin/libpurple-bin_2.10.9-0ubuntu3_all.deb Size: 15062 MD5sum: b7635fb6b9babcd1b88e4fcb389ddddd SHA1: fd20c101135e51af8abb7b4e9493b76647d092e1 SHA256: dbf4289c73db21cd6e01acb69502229f632f1514723be948c45fd24060482f6f Description: multi-protocol instant messaging library - extra utilities Homepage: http://www.pidgin.im Description-md5: 0bb5fd55724d9d7cf0369b3935f345b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntu-gnome-desktop Package: libpurple-dev Priority: optional Section: libdevel Installed-Size: 1088 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: libpurple0 (>= 1:2.10.9), libpurple0 (<< 1:2.10.9+1~), pkg-config, libglib2.0-dev, libdbus-glib-1-dev Filename: pool/main/p/pidgin/libpurple-dev_2.10.9-0ubuntu3_all.deb Size: 147736 MD5sum: f2308f5ae4281e00599ed8805c99ed72 SHA1: d11c2d02b3024e72e30dcde5afca57c270c31f4a SHA256: 11d8932c0095bf59cdcbc0c891a3f361d22de083f8d52a1a72c1bd37caeb889e Description: multi-protocol instant messaging library - development files Homepage: http://www.pidgin.im Description-md5: b17a06afcbe53ddca5dc2a149cb2f24d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpurple0 Priority: optional Section: net Installed-Size: 4876 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: i386 Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.15), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libfarstream-0.1-0 (>= 0.1.1), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base0.10-0 (>= 0.10.0), libgstreamer0.10-0 (>= 0.10.20), libidn11 (>= 1.13), libmeanwhile1 (>= 1.0.2), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libperl5.18 (>= 5.18.2), libsasl2-2 (>= 2.1.24), libxml2 (>= 2.7.4), libzephyr4, perl-base (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libsasl2-modules Recommends: ca-certificates, libpurple-bin Suggests: libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Conflicts: network-manager (<< 0.9.0) Filename: pool/main/p/pidgin/libpurple0_2.10.9-0ubuntu3_i386.deb Size: 1245228 MD5sum: 1db96c33d494e0850663f86d491724cf SHA1: 534a2cc9d030d5081d6e70b1c41cd6b4cc5e14fc SHA256: 6af356e9012ba40e259f7c30952a5062fe59217bc8c6c65153bf9a241f450c52 Description: multi-protocol instant messaging library Homepage: http://www.pidgin.im Description-md5: b13d02b517b424bf47518267ff7ea6d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libpwquality-common Priority: optional Section: libs Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libpwquality Version: 1.2.3-1ubuntu1 Replaces: libpwquality1 (<< 1.2.1-1) Breaks: libpwquality1 (<< 1.2.1-1) Filename: pool/main/libp/libpwquality/libpwquality-common_1.2.3-1ubuntu1_all.deb Size: 5316 MD5sum: 9d8f88da443c00f43967eb85b90f7ed5 SHA1: 39a7f3bf32c5dfb3c6c8b52a04bf92cf1318fe5a SHA256: 6bf9137d28888ecf96527ffb7e436a0e178cacdc48a683db326e5d5a79af1914 Description: library for password quality checking and generation (data files) Multi-Arch: foreign Homepage: https://fedorahosted.org/libpwquality/ Description-md5: d37cfdd3767d216513b4314f28c1e005 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: libpwquality-dev Priority: optional Section: libdevel Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libpwquality Version: 1.2.3-1ubuntu1 Depends: libpwquality1 (= 1.2.3-1ubuntu1) Filename: pool/main/libp/libpwquality/libpwquality-dev_1.2.3-1ubuntu1_i386.deb Size: 11784 MD5sum: e15e9be52ebbb19afb1c06c224d54257 SHA1: 6b82ed4ae83e09b108e7ce141cd6e25fe030c039 SHA256: 42b9da239ca439a14763dc24cf70aa58cac3aaa10986164198cb1d83210ee7aa Description: Password quality checking and generation (development files) Homepage: https://fedorahosted.org/libpwquality/ Description-md5: e1ae040707372e3c48466d82429c05bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpwquality1 Priority: optional Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libpwquality Version: 1.2.3-1ubuntu1 Depends: libc6 (>= 2.4), libcrack2 (>= 2.8.12), libpwquality-common Pre-Depends: multiarch-support Filename: pool/main/libp/libpwquality/libpwquality1_1.2.3-1ubuntu1_i386.deb Size: 11790 MD5sum: 62d89561a6d01cb37552f4c87ad728c6 SHA1: 63f1bfac0d68845238abb79d4bda0be5b313242a SHA256: 94ed8422f9e636579be67da822ea5511a2ae165f1fc2866d39fe675921014f7e Description: library for password quality checking and generation Multi-Arch: same Homepage: https://fedorahosted.org/libpwquality/ Description-md5: 4bacb8fb9ef490cec9ba0d22197731b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntu-gnome-desktop Package: libpython-all-dbg Priority: extra Section: debug Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: libpython-dbg (= 2.7.5-5ubuntu3), libpython2.7-dbg Filename: pool/main/p/python-defaults/libpython-all-dbg_2.7.5-5ubuntu3_i386.deb Size: 1120 MD5sum: fe500d0583af909d58a4a93b90262739 SHA1: 4dbf4fc96b2bf793a040ca2778483c78eef54de0 SHA256: 6f745c450e62e78ed089942f767ba7ed9ffdc2c7e99b48525504d59289b5db87 Description: package depending on all supported Python debugging packages Multi-Arch: same Homepage: http://www.python.org/ Description-md5: a80e49c54585d3d5e53f35404f27903d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpython-all-dev Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: libpython-dev (= 2.7.5-5ubuntu3), libpython2.7-dev Filename: pool/main/p/python-defaults/libpython-all-dev_2.7.5-5ubuntu3_i386.deb Size: 998 MD5sum: 432986ca33bc61e93d049ac3747f8c67 SHA1: bf2a058e6ff55b32ca7b31f9d170c67ba4c37bda SHA256: 24a839db7417e9ade20b990c8d1de8bfa00959b7db6e2f8cc6d36a6294a4ca05 Description: package depending on all supported Python development packages Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 6bbe7c786e1d06c174e1fc08977371a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython-dbg Priority: extra Section: debug Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: libpython2.7-dbg (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/libpython-dbg_2.7.5-5ubuntu3_i386.deb Size: 7024 MD5sum: 429ada3121b4122735b7c884408da38b SHA1: 6f44ef8ce0691837a6aee99f3dcaba75721af059 SHA256: e88c0183255bf2fe939ed43ad5bb40a9bccde9d6282edc4eba69b6ad184bef73 Description: debug build of the Python Interpreter (version 2.7) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 696fb664fa21b46db6e95b27fdd02b49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpython-dev Priority: optional Section: python Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: libpython2.7-dev (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/libpython-dev_2.7.5-5ubuntu3_i386.deb Size: 7090 MD5sum: 225c6a2a91074ecca98977fe02d0aeb8 SHA1: 188095a841a8d6c1d002d0427d15a292dd2f8521 SHA256: e0241f8f09bd58082b4c6fa0eb55e1483d5e0c7ae38738aa85862a225dd27cd3 Description: header files and a static library for Python (default) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 93a1917c3f17606b40377d0b737c6c92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython-stdlib Priority: optional Section: python Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: libpython2.7-stdlib (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/libpython-stdlib_2.7.5-5ubuntu3_i386.deb Size: 7010 MD5sum: 454df977bbce1fca97e305ab5ab5ff98 SHA1: 9f2ba3c01fe67822f52baaf59912ba13eb5a7cdc SHA256: c317f068ede2709ced1311bdf8c970f10892b94cf9a88aed61a9d48ebb4b6298 Description: interactive high-level object-oriented language (default python version) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 6fbf042f6ad7705da06e08f12aba94f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpython2.7 Priority: optional Section: libs Installed-Size: 3292 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.6) Depends: libpython2.7-stdlib (= 2.7.6-8), libc6 (>= 2.15), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Filename: pool/main/p/python2.7/libpython2.7_2.7.6-8_i386.deb Size: 981198 MD5sum: 5bdcb537d88091c33df8e28a872a8fbf SHA1: e7885a61f4213061a40fabfb6436754a9272b5b7 SHA256: 89b8eada259449f5c9f130187a802940668eb38dd615375c3eb9922f37dd610e Description: Shared Python runtime library (version 2.7) Multi-Arch: same Description-md5: ca83a75c05dbdfe28eaeb1252ff614a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpython2.7-dbg Priority: extra Section: debug Installed-Size: 16965 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7-dbg (<< 2.7.3-10) Depends: libpython2.7-stdlib (= 2.7.6-8), libbz2-1.0, libc6 (>= 2.4), libdb5.3, libexpat1 (>= 2.1~beta3), libffi6 (>= 3.0.4), libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libsqlite3-0 (>= 3.5.9), libssl1.0.0 (>= 1.0.0), libtinfo5, zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Suggests: python2.7-gdbm-dbg, python2.7-tk-dbg Filename: pool/main/p/python2.7/libpython2.7-dbg_2.7.6-8_i386.deb Size: 3805148 MD5sum: 26ea6ec9682adbfc62b805e6b00b86b0 SHA1: 535553c04c9ac108836a57d7ea50ebc75a80559d SHA256: b88d0e8161d9cb8ec7797e59146325eb6090261c42b2a3787eb123c52cb9b167 Description: Debug Build of the Python Interpreter (version 2.7) Multi-Arch: same Description-md5: f2b41391895402a123a55c07a1d6812f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libpython2.7-dev Priority: optional Section: libdevel Installed-Size: 29969 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.7-3), python2.7-dev (<< 2.7.3-10), python2.7-minimal (<< 2.7.3-10) Depends: libpython2.7-stdlib (= 2.7.6-8), libpython2.7 (= 2.7.6-8), libexpat1-dev Pre-Depends: multiarch-support Recommends: libc6-dev | libc-dev Filename: pool/main/p/python2.7/libpython2.7-dev_2.7.6-8_i386.deb Size: 21797314 MD5sum: b198ef5968ef18257bf4e1638d86960f SHA1: 5f558cc2df95356791b37cdfc07bc909d38c68a5 SHA256: d417261a0eea783e4d1cbf3c9e21934cab5ecfbc25222ad3fb7b4f30e12789db Description: Header files and a static library for Python (v2.7) Multi-Arch: same Description-md5: 2ef5e0390998d9ab1872bc0f6b694ff7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython2.7-minimal Priority: optional Section: python Installed-Size: 2497 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python2.7 Version: 2.7.6-8 Replaces: libpython2.7-stdlib (<< 2.7.4-2), python2.7 (<< 2.7.4-2), python2.7-minimal (<< 2.7.3-10) Recommends: libpython2.7-stdlib Conflicts: binfmt-support (<< 1.1.2) Breaks: python2.7-minimal (<< 2.7.4~rc1-1~) Filename: pool/main/p/python2.7/libpython2.7-minimal_2.7.6-8_i386.deb Size: 305906 MD5sum: 3afc94e87b5518468d02b8ca9b4e8a64 SHA1: 74f301278e7408eb618be337d2eb6415cb91b445 SHA256: 64b263ffef7e13828945186af0d1cbef3e92479246abcf22d2523fd135bad6f1 Description: Minimal subset of the Python language (version 2.7) Multi-Arch: same Description-md5: 703efc0a29ea636b32f475404406f7cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpython2.7-stdlib Priority: optional Section: python Installed-Size: 8286 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.7.5-0~) Provides: python-argparse, python2.7-argparse, python2.7-celementtree, python2.7-cjkcodecs, python2.7-ctypes, python2.7-elementtree, python2.7-profiler, python2.7-wsgiref Depends: libpython2.7-minimal (= 2.7.6-8), mime-support, libbz2-1.0, libc6 (>= 2.15), libdb5.3, libexpat1 (>= 2.1~beta3), libffi6 (>= 3.0.4), libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libsqlite3-0 (>= 3.5.9), libssl1.0.0 (>= 1.0.0), libtinfo5 Filename: pool/main/p/python2.7/libpython2.7-stdlib_2.7.6-8_i386.deb Size: 1841906 MD5sum: c7a122ca26290f4bb689f6af7d803c40 SHA1: 02d9d6b3b49879e339e3ee63eeb6698e6917e7f5 SHA256: f45f72df5cc806e42fd2fb7de6545bdf6390225878809ea08c9bcf8cce2312d9 Description: Interactive high-level object-oriented language (standard library, version 2.7) Multi-Arch: same Description-md5: f4f7d2df11420ed1433b778b1a144502 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpython2.7-testsuite Priority: optional Section: libdevel Installed-Size: 13500 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python2.7 Version: 2.7.6-8 Depends: libpython2.7-stdlib (>= 2.7.6-8) Suggests: python-gdbm, python-tk Filename: pool/main/p/python2.7/libpython2.7-testsuite_2.7.6-8_all.deb Size: 2030610 MD5sum: b095f51574b606909db6f051d759274b SHA1: ca851aebb9ffc0a3335281324eec3197c781ec4b SHA256: 0ff3feebc5c6dedb13c329a803eddb71b70cde220289742cd1dabf96f417e876 Description: Testsuite for the Python standard library (v2.7) Description-md5: ca1ecfb5f297f44ae0729c2b3459e146 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3-all-dbg Priority: extra Section: debug Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: libpython3-dbg (= 3.4.0-0ubuntu2), libpython3.4-dbg Filename: pool/main/p/python3-defaults/libpython3-all-dbg_3.4.0-0ubuntu2_i386.deb Size: 1000 MD5sum: e70e257bac9768bfcdf58166ae188fbd SHA1: 7ebd222a2d4c99c8b23f4a4c2c32dfce4d124f75 SHA256: c418c3d3cd913797b407a7fc25494b124d19759eee84bdede2d10b019459c66c Description: package depending on all supported Python 3 debugging packages Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 5900edca900437987b398a1d31774a0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3-all-dev Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: libpython3-dev (= 3.4.0-0ubuntu2), libpython3.4-dev Filename: pool/main/p/python3-defaults/libpython3-all-dev_3.4.0-0ubuntu2_i386.deb Size: 1000 MD5sum: a3b247ad80c16925feac65ef2d2cb0e1 SHA1: c1956c75330192cbbf4e1f4700ed39218cdd2615 SHA256: 2a7ef5b412435a51b4305f1899dc91d418bd3f2b2d4474d33c7c209456a5e00d Description: package depending on all supported Python 3 development packages Multi-Arch: same Homepage: http://www.python.org/ Description-md5: a940db2e1a04041cdfb62d1222738b47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3-dbg Priority: extra Section: debug Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: libpython3.4-dbg (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/libpython3-dbg_3.4.0-0ubuntu2_i386.deb Size: 6998 MD5sum: 12f509c9e8bb886fd0599a7ac0fd52e7 SHA1: 8fd1914b93b122a722dce9902206285b795b75b3 SHA256: daca4ddf4b03fdec95e82cd2c1d9a5ec37ea5a3e1dc915b1465eafe84554947e Description: debug build of the Python 3 Interpreter (version 3.4) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 862a2f4f1470c550119e4f708dd18a88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3-dev Priority: optional Section: python Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: libpython3.4-dev (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/libpython3-dev_3.4.0-0ubuntu2_i386.deb Size: 7050 MD5sum: b5e20fbde2484e1aadd393a99b36d1ba SHA1: 8078764a19f907427cac7366ec2b9e74dc124956 SHA256: 3fd0c9892c70730d8bb1589ba48936582a397fa02faebfec5599715e6e42bc6e Description: header files and a static library for Python (default) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: 8d12a93994da0c57873ee46478ea0257 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3-stdlib Priority: important Section: python Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: libpython3.4-stdlib (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/libpython3-stdlib_3.4.0-0ubuntu2_i386.deb Size: 6928 MD5sum: 2ca2dd5b8fc160d10fb1710b65b354ac SHA1: e030d4866281bbbc09e829f2140bbc023038d071 SHA256: c52978c31e9bc602238adf13047b8ad86ce7206928111460068a8c9698118be2 Description: interactive high-level object-oriented language (default python3 version) Multi-Arch: same Homepage: http://www.python.org/ Description-md5: d2d5b9ee5047a791224f1b8f4bc73d3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpython3.4 Priority: optional Section: libs Installed-Size: 3972 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-stdlib (= 3.4.0-2ubuntu1), libc6 (>= 2.17), libexpat1 (>= 2.1~beta3), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Filename: pool/main/p/python3.4/libpython3.4_3.4.0-2ubuntu1_i386.deb Size: 1214964 MD5sum: 615a94bc67e763df14bf6e20f00844dd SHA1: 09635cfab48bea3a3efa99558b371e54bb919ae8 SHA256: fa817214c4a860241de2fd4655c18c351dea82563866334957d613a74ae1a458 Description: Shared Python runtime library (version 3.4) Multi-Arch: same Description-md5: faf28cda6555e796024ceccc49dad30d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libpython3.4-dbg Priority: extra Section: debug Installed-Size: 21240 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-stdlib (= 3.4.0-2ubuntu1), libbz2-1.0, libc6 (>= 2.13), libdb5.3, libexpat1 (>= 2.1~beta3), libffi6 (>= 3.0.4), liblzma5 (>= 5.1.1alpha+20120614), libmpdec2, libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libsqlite3-0 (>= 3.5.9), libssl1.0.0 (>= 1.0.1), libtinfo5, zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Filename: pool/main/p/python3.4/libpython3.4-dbg_3.4.0-2ubuntu1_i386.deb Size: 4676580 MD5sum: b8f7687f6895bda33b13a9265b4594db SHA1: 159b77cdabdc5bc27a0425acb44378ecb3571b36 SHA256: d39725c8dcff9380de012525ddf46a2f67d7023645a4b957bdd9406056f517d5 Description: Debug Build of the Python Interpreter (version 3.4) Multi-Arch: same Description-md5: c6fdd7d4eb18c794067e2deacbcc288f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3.4-dev Priority: optional Section: libdevel Installed-Size: 36600 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-stdlib (= 3.4.0-2ubuntu1), libpython3.4 (= 3.4.0-2ubuntu1), libexpat1-dev Pre-Depends: multiarch-support Recommends: libc6-dev | libc-dev Filename: pool/main/p/python3.4/libpython3.4-dev_3.4.0-2ubuntu1_i386.deb Size: 26640096 MD5sum: 573dcd82caa7ca5cbb2c98852073955e SHA1: 1e3cea176a12161f50fad76378bcda00877f6c47 SHA256: 236d0f448b84280d639f0defb63f6cfa343d6150a10b0488b68541510790e28c Description: Header files and a static library for Python (v3.4) Multi-Arch: same Description-md5: fe08e99110b046c6392d71b110a6ac2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpython3.4-minimal Priority: important Section: python Installed-Size: 3213 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3.4 Version: 3.4.0-2ubuntu1 Replaces: libpython3.4-stdlib (<< 3.4~b1-5) Depends: libc6 (>= 2.4), libssl1.0.0 (>= 1.0.1) Pre-Depends: multiarch-support Recommends: libpython3.4-stdlib Conflicts: binfmt-support (<< 1.1.2) Filename: pool/main/p/python3.4/libpython3.4-minimal_3.4.0-2ubuntu1_i386.deb Size: 443496 MD5sum: b5248e3857651b1a47b4a1780f7f32db SHA1: 813d0fe43a9c37ed1dc95cdfd26bd31f00fa9338 SHA256: 4b2b93e46abb234bdefbc8ae2c6cba7216219b148e0284b13d174b20960d7627 Description: Minimal subset of the Python language (version 3.4) Multi-Arch: same Description-md5: b1a507cdf5e3d845bacf2393790e9bb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpython3.4-stdlib Priority: important Section: python Installed-Size: 9104 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-minimal (= 3.4.0-2ubuntu1), mime-support, libbz2-1.0, libc6 (>= 2.15), libdb5.3, libffi6 (>= 3.0.4), liblzma5 (>= 5.1.1alpha+20120614), libmpdec2, libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libsqlite3-0 (>= 3.5.9), libtinfo5 Pre-Depends: multiarch-support Filename: pool/main/p/python3.4/libpython3.4-stdlib_3.4.0-2ubuntu1_i386.deb Size: 1985028 MD5sum: 100d32a13de2c5bc45984ed6c75641cc SHA1: 8700a58595538f8cebdaaa40caed56b05f08aa21 SHA256: bc4f72b7f7c6e8f3e499fb5048f0ea667fedc4456642af7924f546b63f46bec3 Description: Interactive high-level object-oriented language (standard library, version 3.4) Multi-Arch: same Description-md5: 5f5cf25e1bb759cba0ee83f7ab4b322f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libpython3.4-testsuite Priority: optional Section: libdevel Installed-Size: 17113 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-stdlib (>= 3.4.0-2ubuntu1), net-tools Suggests: python3-gdbm, python3-tk Filename: pool/main/p/python3.4/libpython3.4-testsuite_3.4.0-2ubuntu1_all.deb Size: 2389838 MD5sum: df26db403be2c3369b4a77ec478d24fa SHA1: 0469f76f7949dcaba12074149a28e15382f37cda SHA256: bea576c0f6c26e27f90190010610d97d926ec5c09a135657a88d6c50b0974b3e Description: Testsuite for the Python standard library (v3.4) Description-md5: 97b7ab7779be0cf84d6c1bfa36fdfc49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libpyzy-1.0-0 Priority: optional Section: libs Installed-Size: 60821 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: libpyzy Version: 1.0.1-4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libopencc1 (>= 0.1.0), libsqlite3-0 (>= 3.6.11), libstdc++6 (>= 4.4.0), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Filename: pool/main/libp/libpyzy/libpyzy-1.0-0_1.0.1-4_i386.deb Size: 14382366 MD5sum: 803a08d89881b35ed9f162e53c9eb11c SHA1: 8bb1cfa4eaac82cab9d15fe96a4fee09e07ffb93 SHA256: f431c601222abe7c7c1f4a664af8b4accdb9c89192d09d709234ea07fc99ea64 Description: Chinese PinYin and Bopomofo conversion library Homepage: https://github.com/hsumita/libpyzy Description-md5: 759302988bd5715f90ab45ee9e6d9859 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libpyzy-dev Priority: optional Section: libdevel Installed-Size: 387 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: libpyzy Version: 1.0.1-4 Depends: libpyzy-1.0-0 (= 1.0.1-4) Filename: pool/main/libp/libpyzy/libpyzy-dev_1.0.1-4_i386.deb Size: 61636 MD5sum: 874a7bf48c45461142fafc3f64763dd5 SHA1: ca1687522ded7517d1c227ead426ee982e210476 SHA256: 53c95146b29659e5f2775bae86ff487fc478a4111aa99882ea70b56c68d669c7 Description: Development files of libpyzy Homepage: https://github.com/hsumita/libpyzy Description-md5: 1f705aea93b67ce8a06486468af45582 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqb-dev Priority: extra Section: libdevel Installed-Size: 387 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: libqb Version: 0.16.0.real-1ubuntu3 Depends: libqb0 (= 0.16.0.real-1ubuntu3) Filename: pool/main/libq/libqb/libqb-dev_0.16.0.real-1ubuntu3_i386.deb Size: 107562 MD5sum: 7f4bfe5a6295ddf34781e342ef48099b SHA1: 53d2cd047c13e55890f06fe561c783655af37be3 SHA256: 97c53d60af3adfd402b1667cd104035f321b4efe59bdaa92a84491a1cfc48673 Description: high performance client server features library (devel files) Homepage: https://github.com/asalkeld/libqb/wiki Description-md5: b4fdbc0c498f625d95d8a07ec1f96ca0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqb0 Priority: extra Section: libs Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: libqb Version: 0.16.0.real-1ubuntu3 Depends: libc6 (>= 2.16) Filename: pool/main/libq/libqb/libqb0_0.16.0.real-1ubuntu3_i386.deb Size: 55750 MD5sum: 2752580e49b601fead3bd843e1256d05 SHA1: 76e83e4b2ee04539ba6edafc86d806c403e46f9a SHA256: d83d84ba6e74746e362b6afe89c94c899ef542a7be84a506402f6a2a8f07ce8e Description: high performance client server features library Homepage: https://github.com/asalkeld/libqb/wiki Description-md5: 2d7bbbeb262b9dc491bfe4c74e4d06e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libqca2 Priority: optional Section: libs Installed-Size: 1127 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qca2 Version: 2.0.3-5 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Recommends: ca-certificates Suggests: libqca2-plugin-cyrus-sasl, libqca2-plugin-gnupg, libqca2-plugin-ossl Filename: pool/main/q/qca2/libqca2_2.0.3-5_i386.deb Size: 309558 MD5sum: cbdb99fb0278db91f58a113e84df5bee SHA1: e9a18529b970e8391a4e6e82fd32ab3954ad28c8 SHA256: e24ff6c3c623a21da261ee5fb628dd43eebda2bd728bdd66f5ffe72b325984ae Description: libraries for the Qt Cryptographic Architecture Multi-Arch: same Homepage: http://delta.affinix.com/qca/ Description-md5: e6821571ac9f35265d4086f952b5ec4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libqca2-dbg Priority: extra Section: debug Installed-Size: 3171 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qca2 Version: 2.0.3-5 Depends: libqca2 (= 2.0.3-5) Recommends: libqt4-dbg Filename: pool/main/q/qca2/libqca2-dbg_2.0.3-5_i386.deb Size: 2970656 MD5sum: 042af9a586cf13861f7c21a074a925b5 SHA1: fb1ed483e33c5cefd8b2b6276d75ddf28f77db2f SHA256: d4cfa04a2aa5c5ad7de2d3d8bcb0462b09212bbf29ac09adc808d95752c803e0 Description: debug symbols for the Qt Cryptographic Architecture Multi-Arch: same Homepage: http://delta.affinix.com/qca/ Description-md5: 06022ce95ceac07fa4ef9298fd8640de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqca2-dev Priority: optional Section: libdevel Installed-Size: 465 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qca2 Version: 2.0.3-5 Depends: libqca2 (= 2.0.3-5), libqt4-dev (>= 4.4.0~) Suggests: libqca2-doc (= 2.0.3-5) Conflicts: qca-dev Filename: pool/main/q/qca2/libqca2-dev_2.0.3-5_i386.deb Size: 75268 MD5sum: 75ca4c02b011f802bd9a9cd52d34c13a SHA1: 6fade0550e38afd97f74f68876f350466364f0b0 SHA256: 369294a0ed38500e1113f51dd090e870fd06a32043b68d413a9ea32f82d97e77 Description: development files for the Qt Cryptographic Architecture Homepage: http://delta.affinix.com/qca/ Description-md5: e5f738a0e88b215b00c26ce7899aa25a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqca2-doc Priority: optional Section: doc Installed-Size: 8958 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qca2 Version: 2.0.3-5 Recommends: qt4-doc Suggests: libqca2-dev (>= 2.0.3-5) Filename: pool/main/q/qca2/libqca2-doc_2.0.3-5_all.deb Size: 3345078 MD5sum: bbe52fe55fd57d30dba533adbd889c19 SHA1: 7066b14e68b515d20767520e8b56bffb61b0f727 SHA256: 5934eb9e151df748b25105d9308efe6cff9ed85afec5aed236416c986967802a Description: API documentation for the Qt Cryptographic Architecture Homepage: http://delta.affinix.com/qca/ Description-md5: dd72ebca568996d714100bc0c6c8978a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqdox-java Priority: optional Section: libs Installed-Size: 243 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: qdox Version: 1.12-1build1 Suggests: libqdox-java-doc Filename: pool/main/q/qdox/libqdox-java_1.12-1build1_all.deb Size: 166806 MD5sum: 9e043ec24452bfac1074eeabbcbfdc41 SHA1: 50cd80fa9f70f27f6c582276dcdd5a961155b32e SHA256: 619c1d3573b3e2d8fce9d67007700597da08e41f7d0215b1422372ad9ea8f405 Description: Quickly parses declarations and Javadoc from Java source Homepage: http://qdox.codehaus.org/ Description-md5: e922f227dda69707530f2d1100182c21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqdox-java-doc Priority: optional Section: libs Installed-Size: 2900 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: qdox Version: 1.12-1build1 Recommends: default-jdk-doc Suggests: libqdox-java Filename: pool/main/q/qdox/libqdox-java-doc_1.12-1build1_all.deb Size: 498018 MD5sum: 9c57e6fbf0d7c182ba6cd17fdf6c3027 SHA1: fcb902f956d6d4ed567867eeaf9a4d8d6c862b74 SHA256: e6b2a67a9a930f08fb121715b4dfd955da106f13fe7b554d8d6171f17bc9426c Description: Documentation for qdox (javadoc) Homepage: http://qdox.codehaus.org/ Description-md5: e8e95b9c3669693544d9ffda441e77b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqgsttools-p1 Priority: extra Section: libs Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libasound2 (>= 1.0.16), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libgstreamer-plugins-base0.10-0 (>= 0.10.29), libgstreamer0.10-0 (>= 0.10.31), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5multimedia5 (>= 5.2.0), libqt5multimediawidgets5 (>= 5.0.2) | libqt5multimediawidgets5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/libqgsttools-p1_5.2.1-0ubuntu5_i386.deb Size: 57564 MD5sum: e0696ebb0e49758ac5f75a426f91257d SHA1: 86f066d60a98581f2880be74841da32d68d415a5 SHA256: ad78969d911154d8f50b3fd46b2284771f331258188b2eb442cf26454c4e5380 Description: GStreamer tools for Qt 5 Multimedia module Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 9a134dca24de2bf35c9ac74b753148dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqimageblitz-dbg Priority: extra Section: libdevel Installed-Size: 1098 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qimageblitz Version: 1:0.0.6-4build1 Depends: libqimageblitz4 (= 1:0.0.6-4build1) Filename: pool/main/q/qimageblitz/libqimageblitz-dbg_0.0.6-4build1_i386.deb Size: 289590 MD5sum: 71dbcf55641af9951eafb2a2f4fc33b5 SHA1: e7f79c0e25820eb0325f9dc83fe1c77940c93948 SHA256: dc5c23d4df0c1923af1f3e4d2a51dc079aaaae7bf62ff5dfa3fdc5c4c8edebd4 Description: debugging symbols for the QImageBlitz image effects library Homepage: http://www.kde.org/ Description-md5: 5b48a652765b3ad3da3a55f2cfaa901b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqimageblitz-dev Priority: optional Section: libdevel Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qimageblitz Version: 1:0.0.6-4build1 Depends: libc6 (>= 2.0), libqimageblitz4 (= 1:0.0.6-4build1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Filename: pool/main/q/qimageblitz/libqimageblitz-dev_0.0.6-4build1_i386.deb Size: 25216 MD5sum: 5fcb21bd81fc52a6c9c44ae72b08c301 SHA1: 03d374af82eb37dba62b8909398da198d942f53b SHA256: dbd5f83d790ac80e4330292f297564208f2252dd027edaa10b25c2b2ab46e527 Description: development files for the QImageBlitz image effects library Homepage: http://www.kde.org/ Description-md5: f673e737d1e06571d143a1e9cad6d83d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqimageblitz-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqimageblitz3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqimageblitz-perl_4.13.0-0ubuntu1_i386.deb Size: 9794 MD5sum: 4963e61f27c79e3a9ce88bdc58896847 SHA1: 09fec1b2cb2fc88bbf718ac471e4f105dc581077 SHA256: e8d796f57e3088b193de53ed4be70f16bcd21e422f03f181a948a48d3a6b6706 Description: perl bindings for the QImageBlitz library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 57481bb825c282c20b855faa63e82b32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqimageblitz4 Priority: optional Section: libs Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qimageblitz Version: 1:0.0.6-4build1 Depends: libc6 (>= 2.11), libqtcore4 (>= 4:4.6.1), libqtgui4 (>= 4:4.5.3), libstdc++6 (>= 4.1.1) Filename: pool/main/q/qimageblitz/libqimageblitz4_0.0.6-4build1_i386.deb Size: 53472 MD5sum: 1f72a79feda47d07aa19d337ce4274b1 SHA1: bcaf798bdc4d9b6f659c54acd4dc5da5b245ad7b SHA256: b5cee829cf85b45dd70ed1fda3700a8472941f3b1e35871e8206021e339e2f61 Description: QImageBlitz image effects library Homepage: http://www.kde.org/ Description-md5: ad225a1dd490b89caffce639650e1c32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libqjson-dbg Priority: extra Section: debug Installed-Size: 603 Maintainer: Ubuntu Developers Original-Maintainer: Lisandro Damián Nicanor Pérez Meyer Architecture: i386 Source: qjson Version: 0.8.1-3 Replaces: libqjson0-dbg (<< 0.7.1-1) Depends: libqjson0 (= 0.8.1-3) Recommends: libqt4-dbg Breaks: libqjson0-dbg (<< 0.7.1-1) Filename: pool/main/q/qjson/libqjson-dbg_0.8.1-3_i386.deb Size: 554404 MD5sum: 8cd0e7e0f47b3bd0fe8116d80a83d0a3 SHA1: cce55b9bdd52ffa5c38cca191d27f3ae3d039b70 SHA256: c01973a72d52bc8e470d575e7b37028ab43da87bc2118f14a44a8f2056abcab3 Description: Qt-based library that maps JSON data to QVariant objects, debug info Multi-Arch: same Homepage: http://qjson.sourceforge.net/ Description-md5: 9c9877993a4be9a23828d7e2d13a6619 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqjson-dev Priority: optional Section: libdevel Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Lisandro Damián Nicanor Pérez Meyer Architecture: i386 Source: qjson Version: 0.8.1-3 Depends: libqjson0 (= 0.8.1-3) Filename: pool/main/q/qjson/libqjson-dev_0.8.1-3_i386.deb Size: 8200 MD5sum: 3ac212e0964b1867cf4670eac6679eee SHA1: f13c00efd647f73221480ef520c3c92d6753b4aa SHA256: 2e188b5cfbeae95dfb1a873eba741147a8c7662eff53718a3bc83ea49e94354c Description: Qt-based library that maps JSON data to QVariant objects - development files Homepage: http://qjson.sourceforge.net/ Description-md5: 0269cb6bdbafd90c897ef35ae88db023 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqjson0 Priority: optional Section: libs Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Lisandro Damián Nicanor Pérez Meyer Architecture: i386 Source: qjson Version: 0.8.1-3 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/q/qjson/libqjson0_0.8.1-3_i386.deb Size: 65634 MD5sum: b0b04d26ca50d9655cdb8744e55afce6 SHA1: 9e80e61a15ca3ab2892839adc83e88c2199cb258 SHA256: 1c0a27767af52f91d19fbad667910b804f12840b64571b4e2439f7a8c545eb00 Description: Qt-based library that maps JSON data to QVariant objects Multi-Arch: same Homepage: http://qjson.sourceforge.net/ Description-md5: dc695edb04d44eb425bf12b42096e29d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libqjson0-dbg Priority: extra Section: debug Installed-Size: 30 Maintainer: Ubuntu Developers Original-Maintainer: Lisandro Damián Nicanor Pérez Meyer Architecture: all Source: qjson Version: 0.8.1-3 Depends: libqjson-dbg Filename: pool/main/q/qjson/libqjson0-dbg_0.8.1-3_all.deb Size: 2194 MD5sum: 248f146dd0fddac117e12be087d3dfb5 SHA1: b04d9cbe99d1303e06fd6738d85c16b4ef32af57 SHA256: 1804ec14125df8f8e1632a5d55e0e462207cbeb18db975b0c2549336d92c2726 Description: transitional dummy package for qjson's debugging symbols Homepage: http://qjson.sourceforge.net/ Description-md5: c98dc6e599f02fb5cffb3185867fc1f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqmi-glib-dev Priority: optional Section: libdevel Installed-Size: 2546 Maintainer: Ubuntu Developers Original-Maintainer: Marius B. Kotsbak Architecture: i386 Source: libqmi Version: 1.4.0-1 Depends: libqmi-glib0 (= 1.4.0-1) Suggests: libqmi-glib-doc Filename: pool/main/libq/libqmi/libqmi-glib-dev_1.4.0-1_i386.deb Size: 502528 MD5sum: 8f3ed39c89447357671e9e7934e5eb27 SHA1: aea87210dd613390f1ba90fb7877e3dec8ccf9d7 SHA256: 8ace5af3d35da646f0e53689a70d0a7ffdd0e2ccd4a160ea0e8991a839d7f54b Description: Header files for adding QMI support to applications that use glib Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/libqmi Description-md5: c44abffbfc596d254147b508f8e0374e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqmi-glib-doc Priority: optional Section: doc Installed-Size: 7327 Maintainer: Ubuntu Developers Original-Maintainer: Marius B. Kotsbak Architecture: all Source: libqmi Version: 1.4.0-1 Suggests: devhelp Filename: pool/main/libq/libqmi/libqmi-glib-doc_1.4.0-1_all.deb Size: 447096 MD5sum: 4cf935a929b0c91a61ea24e94af7129e SHA1: 55746eaa5a58f08d0fc6cd52231298b52c5219aa SHA256: a912f0fde3d4c3cb3b0e120a2ef82e7cf9fcba22abef66129d64a28d95ac40b8 Description: API documentation for libqmi-glib Homepage: http://www.freedesktop.org/wiki/Software/libqmi Description-md5: 3bcaba736bf4f2671c9b86184d60ff6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqmi-glib0 Priority: optional Section: libs Installed-Size: 1456 Maintainer: Ubuntu Developers Original-Maintainer: Marius B. Kotsbak Architecture: i386 Source: libqmi Version: 1.4.0-1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.32) Pre-Depends: multiarch-support Filename: pool/main/libq/libqmi/libqmi-glib0_1.4.0-1_i386.deb Size: 339492 MD5sum: a88f1141b3384fe9b85c761f4def0216 SHA1: f42c322b8167d92f7d765ca7917701ac49b2b3c0 SHA256: 6ad42b6623ac7226a13c096b0828d397fab5edc796d559e397fb453a428bfcb3 Description: Support library to use the Qualcomm MSM Interface (QMI) protocol Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/libqmi Description-md5: 6c72eafa1689addb16b819279e6f3080 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libqmi-glib0-dbg Priority: extra Section: debug Installed-Size: 1071 Maintainer: Ubuntu Developers Original-Maintainer: Marius B. Kotsbak Architecture: i386 Source: libqmi Version: 1.4.0-1 Depends: libqmi-glib0 (= 1.4.0-1) Filename: pool/main/libq/libqmi/libqmi-glib0-dbg_1.4.0-1_i386.deb Size: 820528 MD5sum: 1c6e9be5db10edc4990a47f6912006f4 SHA1: e975cb44c8a6d56fdca5017bf55e412eddc47c2d SHA256: 10e86a2b033ba763d478ac791b038d2d438f96c1c686b68b21331a86ef5d9156 Description: Support library to use the Qualcomm MSM Interface (QMI) protocol Homepage: http://www.freedesktop.org/wiki/Software/libqmi Description-md5: 1e664a8b4c093f7d990b9d00ed52c7da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqpdf-dev Priority: optional Section: libdevel Installed-Size: 1642 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: qpdf Version: 5.1.1-1 Depends: libqpdf13 (= 5.1.1-1), libpcre3-dev, zlib1g-dev Recommends: qpdf Filename: pool/main/q/qpdf/libqpdf-dev_5.1.1-1_i386.deb Size: 354554 MD5sum: 04ecb8d4b0026fbd0c14da22bd2b281b SHA1: 79deca563e7166d196d1e59936cc62743edbba47 SHA256: 42cdc28c66a3f19bc53632f532ba66e9334419b1ccc4c90fa5605f95458cd1bc Description: development files for PDF transformation/inspection library Multi-Arch: same Homepage: http://qpdf.sourceforge.net Description-md5: b119ceb85cee713b9af6ef357f66ae27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqpdf13 Priority: optional Section: libs Installed-Size: 882 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: qpdf Version: 5.1.1-1 Depends: libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libpcre3, libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: qpdf Filename: pool/main/q/qpdf/libqpdf13_5.1.1-1_i386.deb Size: 296040 MD5sum: efee095498893c4128036fd9da16f9cd SHA1: 48c0a9511f02a711c9b689878cf31c9bcf33f866 SHA256: a3db58340fc48b991d7f125e62c2679195f355151cc86238f2d1fee94c10c9ab Description: runtime library for PDF transformation/inspection software Multi-Arch: same Homepage: http://qpdf.sourceforge.net Description-md5: 19ff93a4265247cdbdd76561d4f4b3a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libqscintilla-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqsci3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqscintilla-perl_4.13.0-0ubuntu1_i386.deb Size: 9774 MD5sum: 9121b8cf5bf356acb0f9cb2f1d184ea5 SHA1: 2489ab29d266e7d910f72f8182bcfd1264c78c39 SHA256: 835d2659af2b18150a9416fd916d712011ffa62df60ece61fbd0451abb87b5ef Description: perl bindings for the QScintilla2 library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: a0a36f3f5798edf0407e47bf5fcb9cf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqscintilla2-11 Priority: optional Section: libs Installed-Size: 3108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: qscintilla2 Version: 2.8.1-2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0~), libqtgui4 (>= 4:4.8.0~), libstdc++6 (>= 4.1.1), libqscintilla2-l10n (>= 2.8.1) Filename: pool/main/q/qscintilla2/libqscintilla2-11_2.8.1-2_i386.deb Size: 878318 MD5sum: fb6f507fbd89895903dfc3f30690d019 SHA1: c8346ef54b9b1d7b9645651d4db2452bb172d4c2 SHA256: 701fce153fcb4ada93f129ccff75a01f36c0737370ed5d450e83bec5e6eb1ae5 Description: Qt4 port of the Scintilla source code editing widget Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: 00d5deee4952fcddcb5e856a0f16f69a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqscintilla2-dev Priority: extra Section: libdevel Installed-Size: 491 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: qscintilla2 Version: 2.8.1-2 Depends: libqscintilla2-11 (>= 2.8.1), libqscintilla2-11 (<< 2.8.1+1~), libqt4-dev Filename: pool/main/q/qscintilla2/libqscintilla2-dev_2.8.1-2_all.deb Size: 60886 MD5sum: dea5483f607c536ce36e9166600ba498 SHA1: 1337b7826479e5842eef1904edb85c754758f717 SHA256: 61357b40999fa474218deeed6fde3c311cad8d6f70328bf2f2a48f695256916a Description: Scintilla source code editing widget for Qt4, development files Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: b00baa53e3c0197937730759bc6c4e7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqscintilla2-doc Priority: extra Section: doc Installed-Size: 8091 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: qscintilla2 Version: 2.8.1-2 Depends: libjs-jquery Filename: pool/main/q/qscintilla2/libqscintilla2-doc_2.8.1-2_all.deb Size: 585668 MD5sum: b371f4e9561634a81fcd6b4931f9d5b6 SHA1: 460c64bb95507d7ff123bec2335ccfec102e5703 SHA256: d83a37ab81a2083d314805aa047361db59a269239cedaf5ad46b45353a850b8a Description: API documentation for QScintilla 2 Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: cecff3e06ea2cb9d61d146ea56a0403a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqscintilla2-l10n Priority: optional Section: libs Installed-Size: 355 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: qscintilla2 Version: 2.8.1-2 Replaces: libqscintilla2-5, libqscintilla2-6, libqscintilla2-8, libqscintilla2-translations Suggests: libqscintilla2-11 Breaks: libqscintilla2-5, libqscintilla2-6, libqscintilla2-8, libqscintilla2-translations Filename: pool/main/q/qscintilla2/libqscintilla2-l10n_2.8.1-2_all.deb Size: 44344 MD5sum: 00c9e157fe2137f6bd6bd0c67e01637f SHA1: dd67a85800f6f7a0e148dd46b8c4394aefdf2508 SHA256: 1fd8769d7c1d7b62a4cf4b220195ed789c45e8110ea2146050fa0123de091434 Description: Scintilla source code editing widget for Qt4, translation files Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: f968037c5ada9890276038e56800f6e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqt3support4-perl Priority: optional Section: perl Installed-Size: 74 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), libqtgui4-perl (= 4:4.13.0-0ubuntu1), libqtnetwork4-perl (= 4:4.13.0-0ubuntu1), libqtsql4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqt3support4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqt3support4-perl_4.13.0-0ubuntu1_i386.deb Size: 10262 MD5sum: 4277d7c74a13ce2b9c54128651a998e7 SHA1: 117b45702efdb7f169155d2c665e925f380c8754 SHA256: eb220065f077c98e6153e0f14d65e772b7b4c104f5f7354e96445c9c29975756 Description: perl bindings for the Qt 3 compatibility library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 0013fbab2a2000b2a1e780a793c4f953 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-dbg Priority: extra Section: libs Installed-Size: 122888 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Conflicts: qt-x11-free-dbg Filename: pool/main/q/qt4-x11/libqt4-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 120243994 MD5sum: 79cdd5fa9c850fca70da9bb8c156271e SHA1: b88d2e2521dbd3b8b04be5956de64366382fb03a SHA256: 76dfb3c0c4e36d987515705745141453f62e6108a8b6a65cac567986a2195f93 Description: Qt 4 library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: eb306b2c018309e76cbbf8fad24c95cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-dbus Priority: optional Section: libs Installed-Size: 130 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dev (<< 4:4.7.1) Depends: libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), qdbus (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Breaks: libqt4-dev (<< 4:4.7.1) Filename: pool/main/q/qt4-x11/libqt4-dbus_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 6432 MD5sum: d7ac49148d448ab1673311606e1056e9 SHA1: 57cbdd2e464d05ae5c464928d29e91cbd6f87140 SHA256: 8c6559dfd8ab57e4505302f9d8a3fabd2408dda199bfb1997460fd6f386db8fe Description: Qt 4 D-Bus module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d4138bc6e2864e684d9cd85db1fb1bb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-declarative Priority: optional Section: libs Installed-Size: 4078 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xmlpatterns (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Suggests: libqt4-declarative-folderlistmodel, libqt4-declarative-gestures, libqt4-declarative-particles, libqt4-declarative-shaders, qt4-qmlviewer Filename: pool/main/q/qt4-x11/libqt4-declarative_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 1081230 MD5sum: b80c4dfeedaaf77f01a8dcb2b269221f SHA1: 3b2adfae56b8a91e8be07ade82f6ab3222cd278f SHA256: 4ccd5343c76d76f720d2e3d9d1744334c9862f05e0d69531cb1b276ab7450331 Description: Qt 4 Declarative module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 8f87c0a6a249f5950c24e5114ebf3904 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-declarative-gestures Priority: optional Section: libs Installed-Size: 207 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-declarative-gestures_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 20468 MD5sum: 40d9fa6f2879822df9fa35b78915da7e SHA1: 0470296600d4638be9fdaf550522ac843e1c5bbb SHA256: 58b858eb8d3ea65c0aeba8a7070e9db48fd3e288b8f56e56bd1914701a6f8a23 Description: Qt 4 gestures QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d4b1230bf6f402b58b4dcdbf172dba13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active, kubuntu-active-full, kubuntu-active Package: libqt4-declarative-particles Priority: optional Section: libs Installed-Size: 227 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-declarative-particles_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 26578 MD5sum: 3ef93d395eee3f4a159169c303365b09 SHA1: 9e11ecc8c86c49660cb08b634b72d4983aa1e014 SHA256: 701ba55140ec9b13b8fe876a8cbbedb38782f28d3de74fdffee2638cd027cf6e Description: Qt 4 particles QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: fbedb803fb8b49dd173016b4ab50d074 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqt4-designer Priority: optional Section: libs Installed-Size: 8250 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-designer_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 3613366 MD5sum: 20f440032ef3bd6905dc052d2838f7ac SHA1: dd5d861f1f200f2527de207368ac7deee7c9ba31 SHA256: 3bbf19219c7dc14bd8dcec8244549472bf02ac67b07704603c78e58e911f64bf Description: Qt 4 designer module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2a24b6b1733f51c1c9363cfa0098fe5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-designer-dbg Priority: extra Section: debug Installed-Size: 42679 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbg (<< 4:4.7.3-3) Depends: libqt4-designer (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Breaks: libqt4-dbg (<< 4:4.7.3-3) Filename: pool/main/q/qt4-x11/libqt4-designer-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 41240948 MD5sum: d908e8357ec043fa3a77712f59cf70b0 SHA1: 857f8c8c394e4707b128ad2c429c7aebfa8bc1c5 SHA256: d55ef6751fc52bea08dbd42b99cc64e79852afe1a1ff2ad2ab22650fb7547bba Description: Qt 4 designer library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4491691a63e68e54f064a6e60370b3c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-dev Priority: optional Section: libdevel Installed-Size: 11721 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqt4-dbus (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-designer (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-dev-bin (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-help (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-qt3support (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-scripttools (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-svg (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-test (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xmlpatterns (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), qt4-linguist-tools (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), qt4-qmake (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), qtchooser Recommends: libqt4-opengl-dev (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtwebkit-dev (>= 2.0~) Suggests: firebird-dev, libmysqlclient-dev, libpq-dev, libsqlite0-dev, libsqlite3-dev, qt4-dev-tools, qt4-doc, unixodbc-dev Filename: pool/main/q/qt4-x11/libqt4-dev_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 873776 MD5sum: 3841f08be07b04f68853d64e6287c62f SHA1: 8035fda99ddfa5b1642391d692201ffaa6ec3910 SHA256: 586ba4342d81427a051ffa1867f67cf19d16fb7f97722ba16dc2cf065bb3f6b6 Description: Qt 4 development files Homepage: http://qt-project.org/ Description-md5: a972324e9d55eec79dbff3af47559638 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqt4-dev-bin Priority: optional Section: devel Installed-Size: 6421 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dev (<< 4:4.8.0-2) Depends: qtchooser, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt4-qt3support (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Breaks: libqt4-dev (<< 4:4.8.0-2) Filename: pool/main/q/qt4-x11/libqt4-dev-bin_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 1601940 MD5sum: df1cafb9f05073364eb598bc21ab0905 SHA1: af8c167fbb27fc715a184795afc0f0009ec0eb45 SHA256: 6325eb9558d273f50c10bfb98a8e83571d74d269fbe4c272a7411de892c78ac6 Description: Qt 4 development programs Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: c804803f66ed95e965d4d27c802d0735 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqt4-help Priority: optional Section: libs Installed-Size: 829 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-help_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 205194 MD5sum: 084c450113ca222ae0f2181b390a0414 SHA1: 3ab37dde133dc8c6c587f3404190107de0fb103f SHA256: 37a0ae4ca99582bf561449b6f11b2331c38021fc30acba9e7a53d3e25b8a9fdd Description: Qt 4 help module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4282552a186c836dfd31978fb2245adc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-audio Package: libqt4-network Priority: optional Section: libs Installed-Size: 2010 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: ca-certificates Filename: pool/main/q/qt4-x11/libqt4-network_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 550550 MD5sum: d29610f2f359e9e9fe39198d8249cc38 SHA1: 72349cda5694f91301777cfba89e994b20fe3e48 SHA256: c14b4fd6f90928b5059a1471e3d5a95554d8aeb6e8949193dd04aafa43b33d2a Description: Qt 4 network module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 98ebbd72cce02597330f65b7d5eba8db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-opengl Priority: optional Section: libs Installed-Size: 1220 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1), libx11-6, libxrender1 Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-opengl_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 300054 MD5sum: f8eb54d3ac02297931dbbeab656a2c28 SHA1: e68cf9e5135d3e91149f90907bb70c73a0e52ee5 SHA256: 6ab8c3455b5582afb10e67b4995b1ef84289ee36fd63276d82ed849733609bc1 Description: Qt 4 OpenGL module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: ec36226450f35960693e2afd046e0d48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-opengl-dev Priority: optional Section: libdevel Installed-Size: 413 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libgl1-mesa-dev, libglu1-mesa-dev, libqt4-dev (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-opengl (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Filename: pool/main/q/qt4-x11/libqt4-opengl-dev_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 22842 MD5sum: 924271c3b0204cff1f10977bb1d766a1 SHA1: 9bfe549b7b35e20e6ae7d6eef30ad699a73b1e51 SHA256: d0c17a415003e7e9755ab05100e0c11621035c1ec4d0b869f8d5364763b84457 Description: Qt 4 OpenGL library development files Homepage: http://qt-project.org/ Description-md5: 3a77d802eeaa1b2143dbee1ed81d6860 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqt4-private-dev Priority: optional Section: libdevel Installed-Size: 5006 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqt4-dev (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Filename: pool/main/q/qt4-x11/libqt4-private-dev_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 584442 MD5sum: 1fe0cb5a6c00af70801efc528a04b60c SHA1: 107e9b8453554add384f5b1a9420bd92c0d1f977 SHA256: 53b9720624321232d55b56ff125c2c2690f02a5116f6424a8d4ca1740dfb811a Description: Qt 4 private development files Homepage: http://qt-project.org/ Description-md5: 3b49216a54fd67f2d78d35f413e75487 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-qt3support Priority: optional Section: libs Installed-Size: 3563 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libqt4-designer (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-qt3support_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 1040006 MD5sum: b3b8e0029b8248252e20ef78097d7705 SHA1: 91453795754406b47b979ff0648051cd4a368317 SHA256: e5f3d60cf38d23dc1e0cd0a12fa5035474629e9bceaa0d26d6979befdae70e0f Description: Qt 3 compatibility library for Qt 4 Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f5f751633cc890280ad8ff0a1b4e8cb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libqt4-qt3support-dbg Priority: extra Section: debug Installed-Size: 14518 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbg (<< 4:4.7.3-3) Depends: libqt4-qt3support (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Breaks: libqt4-dbg (<< 4:4.7.3-3) Filename: pool/main/q/qt4-x11/libqt4-qt3support-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 14087298 MD5sum: a0c1566290c75cbea63791ecd5363a19 SHA1: c049489ab35fa536d4fb9325a1b7fcb6671bb375 SHA256: 0397b9a580b14efa1ed7d7e79e260576b413418c5cfcedb6ba31a258b30e9cef Description: Qt 3 compatibility library for Qt 4 debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 29e27abea5e7e9c89082297b36db40eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-script Priority: optional Section: libs Installed-Size: 2733 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-script_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 793202 MD5sum: a23a6b68ddc4709a242a43b055b5bbfc SHA1: c9d5dc79e2447a4321b7d3e62aacaa115ff8d591 SHA256: 6c8aa788a546166de0ed09742d412902c680ecb1bb54d890b1ba0cf6b888ce8a Description: Qt 4 script module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 21dde8fb68da1c89ce92b58c86699dbd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-script-dbg Priority: extra Section: debug Installed-Size: 18076 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbg (<< 4:4.7.3-3) Depends: libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Breaks: libqt4-dbg (<< 4:4.7.3-3) Filename: pool/main/q/qt4-x11/libqt4-script-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 17905932 MD5sum: f30a7e4a2ef65ee1e737b1d01fe62909 SHA1: 32756cf01fcee9d5118ab0ae5aeb3f92146a38b3 SHA256: 0b8e45a2a358c478bf9497c9209d5dc346d5efa87a38307fc333bcac6820d8fb Description: Qt 4 script library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4fe268671423816b84a8ae12bcc16c4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-scripttools Priority: optional Section: libs Installed-Size: 864 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-scripttools_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 224870 MD5sum: a15eceea0e92e42b0bb3bfa650652efa SHA1: 17b32c8b7868155aa916b75546f60150e2589ecf SHA256: e545a6c34ddae0a25541ac53615a5c5b699a6073e37f5dbb519521f6ea6d18d0 Description: Qt 4 script tools module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 1a073bf09594d891464d930a909dabb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-publishing, ubuntustudio-audio Package: libqt4-sql Priority: optional Section: libs Installed-Size: 415 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Recommends: libqt4-sql-mysql | libqt4-sql-odbc | libqt4-sql-psql | libqt4-sql-sqlite Suggests: libqt4-dev Filename: pool/main/q/qt4-x11/libqt4-sql_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 98532 MD5sum: 8f8874a41ae00dbcfad0f9960521afb2 SHA1: fc149031d47c028a8ef355d682e8f5f7621ab240 SHA256: 68059dceb3a6341e8ad1289141aee1d4b1e613d00874316e8a512b260d9b906f Description: Qt 4 SQL module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 033030271b2b4c189900e5d6d936a912 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-sql-mysql Priority: optional Section: libs Installed-Size: 216 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libmysqlclient18 (>= 5.5.24+dfsg-1), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Suggests: libqt4-dev Filename: pool/main/q/qt4-x11/libqt4-sql-mysql_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 30306 MD5sum: c138691b2782c7142934dc87e8ec0620 SHA1: 50f6575ffdb86f767b344da1421c5f7eb2ab0e81 SHA256: 4007c968fa7b10a0e41b28ec4bb921c282d504d035dcc487fcf7d00905c6ffc7 Description: Qt 4 MySQL database driver Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 58f1fcabfcd1ca19e285b19cd2b5fbda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-sql-sqlite Priority: optional Section: libs Installed-Size: 196 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Suggests: libqt4-dev Filename: pool/main/q/qt4-x11/libqt4-sql-sqlite_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 23674 MD5sum: 4955980c7fb5f61280b5431de88116ca SHA1: 4e24d6bb66590c89cf0093703230b6ea44dbdbab SHA256: c6f6a1a0e4d3c146f18f1bd40f5102d2e4f15f1874129146aa3a9082a73af979 Description: Qt 4 SQLite 3 database driver Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d5fe42c3dad79ce432f99e9fb7dc8784 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb Package: libqt4-svg Priority: optional Section: libs Installed-Size: 552 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-svg_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 137290 MD5sum: 619499fe5fb6d562c71684d06bd10182 SHA1: 33a489c9d3e4ad5369560e01f8dc1364f63af427 SHA256: e4685bce8336f7155883edf6e1eb38b0b27ec00e3ea68e0f15a9e1bfe939a81c Description: Qt 4 SVG module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f49f6fcd0ca383b8479379b260b0962f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-test Priority: optional Section: libs Installed-Size: 300 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-test_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 60516 MD5sum: 785661402da060681d3b6d7dc1609ec8 SHA1: c6b088597c45ce9fbd3aa95eaddd55ea51bc4270 SHA256: d13c8526fe8709b3114e31b9d1d3faec7a26008ff6a2e75bba86f33d1ce2340d Description: Qt 4 test module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f7a3b5b5082c11117b4d14ad7630bb01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-audio Package: libqt4-webkit-dbg Priority: extra Section: libs Installed-Size: 138 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqtwebkit4-dbg (>= 2.0~) Filename: pool/main/q/qt4-x11/libqt4-webkit-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 9216 MD5sum: 09f42fd5c5692e8e172519c50154dc87 SHA1: a01b85f54b2d4479e8e80538502a71fa2ad5d34c SHA256: 07e2efe1ab025a77580e85818388bf515a413239ce6e0eac9567fd59393f5e11 Description: transitional package for Qt 4 WebKit debugging symbols Homepage: http://qt-project.org/ Description-md5: eb6f0cce6774adbc05136f7b0ed3de8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt4-xml Priority: optional Section: libs Installed-Size: 436 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-xml_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 97076 MD5sum: b974a4dd624658b30f4c01f571c4cdf1 SHA1: 982b5f3da34387606404b228ed85496b627744f9 SHA256: 042907d29a85feb91606599d0850f339385395257159fb295558eebb4210e819 Description: Qt 4 XML module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: ca9976f27351a30ee73f9ce4324d257b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-xmlpatterns Priority: optional Section: libs Installed-Size: 4159 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt4-x11/libqt4-xmlpatterns_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 1022100 MD5sum: 26279d2edf3585572df54cde6a5fc692 SHA1: ab4057061c9dcd559f7aa577a395705ec5004245 SHA256: cacaa20d0d4779f24ab451f3179c2f5be95d948accad8c9b9b10da5dc193943e Description: Qt 4 XML patterns module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2cb542abf850564476c503d1b1dad985 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqt4-xmlpatterns-dbg Priority: extra Section: libs Installed-Size: 29576 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqt4-xmlpatterns (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Filename: pool/main/q/qt4-x11/libqt4-xmlpatterns-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 28436580 MD5sum: d1a43bb6c71139b67f84bd38ee6954bd SHA1: 563414d0c50cda68d099f42e069bee38c002b50b SHA256: a7b1700b098452d7949ecaf0a808560b2d91ab4d4afbd25308ec4751560f997e Description: Qt 4 XML patterns library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 5ff329580982f75247bbb5b0fd24d68b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt53d5 Priority: optional Section: libs Installed-Size: 3609 Maintainer: Ubuntu Developers Architecture: i386 Source: qt3d-opensource-src Version: 5.0~git20130731-0ubuntu5 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.2.0) | libqt5quick5-gles (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.6), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/q/qt3d-opensource-src/libqt53d5_5.0~git20130731-0ubuntu5_i386.deb Size: 1111374 MD5sum: f8df1f14fae0cdb5b7ad0391b5ac1fa0 SHA1: 60c32931ba59d16d13ef04f50a3d108aa9712a47 SHA256: ed804864138a36974f0d7df430e36f6e947f4486fa3ee6dae9579bc8f6c9f7fd Description: Qt 3D module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 43cde79bd1e2dc5b40c6a37389701014 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5clucene5 Priority: optional Section: libs Installed-Size: 1044 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/q/qttools-opensource-src/libqt5clucene5_5.2.1-8build1_i386.deb Size: 267870 MD5sum: 894819a5e4124052964c0b9ad383a3a0 SHA1: c0ccde40dad7a6fb24baf8205490024cc32d16cd SHA256: 3da1b87e50042cf723ff509e56080bacffd62a0a6a74ec89b3a296bcd1f91528 Description: Qt 5 CLucene module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e42e6837eb4c645c8452fe2c27b36a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5concurrent5 Priority: optional Section: libs Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.2), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5concurrent5_5.2.1+dfsg-1ubuntu14_i386.deb Size: 22242 MD5sum: 7af96f6ad6a076c21ac41baaf657c61e SHA1: 6cb25286658f36996f92725131fbd770602651a4 SHA256: 43a310b3e22f1969dde41f1bcc8097e6c2a5c7cf3fbe5b53ce3b37999f49b189 Description: Qt 5 concurrent module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e0df68f337531f2bfba6d9963eebfc16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5contacts5 Priority: optional Section: libs Installed-Size: 526 Maintainer: Ubuntu Developers Architecture: i386 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtpim-opensource-src/libqt5contacts5_5.0~git20140203~e0c5eebe-0ubuntu2_i386.deb Size: 131170 MD5sum: caf26c06181727abab9d31ed1e850b7d SHA1: 076ea647b28cc5f4b639051781a8031f2d690658 SHA256: ced4ae6130934ab731fddfb2d2c447d32be05e81863975c6d0b638a938c63d07 Description: Qt PIM module, Contacts library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2f48c07bace2d6691360fbae8783a306 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5core5a Priority: optional Section: libs Installed-Size: 5055 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Replaces: libqt5core5 (<< 5.2.0+dfsg~) Provides: qtbase-abi-5-2-1 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.22.0), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Suggests: libthai0 Breaks: libqt5core5 (<< 5.2.0+dfsg~) Filename: pool/main/q/qtbase-opensource-src/libqt5core5a_5.2.1+dfsg-1ubuntu14_i386.deb Size: 1702356 MD5sum: 2ab3523d47cc5e8cacae560aa1a85237 SHA1: 2161dc52c7b32713d5fa9b1adf4fbbb0954e2ff7 SHA256: 8fdbd325e4a6cb6f1cc0ed929aafc7753788087d10d2851623c619532e95e9a4 Description: Qt 5 core module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 75c9109eafc0c1da6d6b6ca7b292f133 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5dbus5 Priority: optional Section: libs Installed-Size: 630 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.3.1), libqt5core5a (>= 5.2.1), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5dbus5_5.2.1+dfsg-1ubuntu14_i386.deb Size: 174636 MD5sum: 38af8a0e2cdb71a0c8790e24a02f080e SHA1: 1aa69ba834ade20804bd0eaa22ee6862587f3ef8 SHA256: e831b2e7bd9653eea4d926c796bca79ec02b356ad9bce80fff955d4327123b5d Description: Qt 5 D-Bus module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 66ed2fe869611cd7a269446bd63f9400 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5designer5 Priority: optional Section: libs Installed-Size: 5315 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libqt5xml5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qttools-opensource-src/libqt5designer5_5.2.1-8build1_i386.deb Size: 2742034 MD5sum: f84f1c996efe4c0061c634e171b4b091 SHA1: d46f7fa7fc42388bb16c914f16e689b32f88da5f SHA256: 4753f5ace8c14025caffd3fc9fcf570cb3ceae3c6e3a83e07483f4bd5cc155ae Description: Qt 5 designer module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 7ffa0bb5842adb966c1c5b7e69997c4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5designercomponents5 Priority: optional Section: libs Installed-Size: 2429 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.2.0), libqt5designer5 (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libqt5xml5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qttools-opensource-src/libqt5designercomponents5_5.2.1-8build1_i386.deb Size: 689698 MD5sum: 9100223038ae6f16545d1a0fbbeb1b13 SHA1: 25817a878b2bc265751466fdf3f49d4601466360 SHA256: 74f6c38947837967298c24cea1a22f35cb832e6cfc3448ec22c37cf8a2b37c1d Description: Qt 5 Designer components module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 7de8dd34c7de96d3b41df25cec62de7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5feedback5 Priority: optional Section: libs Installed-Size: 123 Maintainer: Ubuntu Developers Architecture: i386 Source: qtfeedback-opensource-src Version: 5.0~git20130529-0ubuntu3 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5multimedia5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtfeedback-opensource-src/libqt5feedback5_5.0~git20130529-0ubuntu3_i386.deb Size: 25218 MD5sum: a2aa19c8ccacb9b97c04c1be3d18df03 SHA1: 01f75c722d9c232ffa42c613ae4a74d9e3f704d8 SHA256: a1c7f291213705f98801679e18fddacdf7697362fa9ed3ab662fe90a2be202f3 Description: Qt Feedback module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 7d98eb01d172caa82a3359049f18ad7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5gui5 Priority: optional Section: libs Installed-Size: 6995 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: fontconfig, libc6 (>= 2.11), libdrm2 (>= 2.4.17), libegl1-mesa (>= 7.8.1) | libegl1-x11, libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.5), libgbm1 (>= 8.1~0), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libgles2-mesa (>= 7.8.1) | libgles2, libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.24.0), libharfbuzz0b (>= 0.9.11), libice6 (>= 1:1.0.0), libjpeg8 (>= 8c), libpango-1.0-0 (>= 1.14.0), libpng12-0 (>= 1.2.13-4), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libsm6, libstdc++6 (>= 4.1.1), libudev1 (>= 183), libx11-6, libx11-xcb1, libxcb-glx0, libxcb-icccm4 (>= 0.4.1), libxcb-image0 (>= 0.3.9), libxcb-randr0 (>= 1.3), libxcb-render-util0 (>= 0.3.8), libxcb-render0, libxcb-shape0, libxcb-shm0, libxcb-sync1, libxcb-xfixes0, libxcb-xkb1, libxcb1, libxi6 (>= 2:1.2.99.4), libxkbcommon0 (>= 0.2.0), libxrender1, qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5gui5_5.2.1+dfsg-1ubuntu14_i386.deb Size: 1846412 MD5sum: 906572bde3d3b27fa9a296bd2e10f595 SHA1: c54711adaa2ee8957142c74b1a0b609ecaeda1cf SHA256: 3d0313d5c784f9f1536c2f7bd62f7aabde2a9ff2e05256644397c7d18a5cf9ae Description: Qt 5 GUI module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 9dadc5c1f0624a1be05b1ff4f1c6cd6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5help5 Priority: optional Section: libs Installed-Size: 614 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5clucene5 (>= 5.0.2), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5sql5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qttools-opensource-src/libqt5help5_5.2.1-8build1_i386.deb Size: 183816 MD5sum: ed20ff4c1e5cdce170e251e0249fa692 SHA1: c97b4677a7680ab62f24536df0ab4bfcb2f78662 SHA256: 026801219ea7c73bd68e250d45e5da49932e885086ae9a1f4b105912bfa94cef Description: Qt 5 help module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: dc0f2e17602f253ba78a2ab8bbb8d543 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5location5 Priority: optional Section: libs Installed-Size: 618 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Depends: libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt53d5 (>= 5.0~git20130731) | libqt53d5-gles (>= 5.0~git20130731), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5positioning5 (>= 5.2.1), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/q/qtlocation-opensource-src/libqt5location5_5.2.1-1ubuntu2_i386.deb Size: 152364 MD5sum: 82facd50d568a975319810e901c56b4f SHA1: ea84b9f61583af1c84fe83c35293937cc0b0e2b9 SHA256: d67eb55af014998f27b4556a9c8a0b9cb1045d1bd74f42b01cb81e1e30eaef01 Description: Qt Location module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: faf8936a8aaae73be369efa5286a805a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5location5-plugins Priority: optional Section: libs Installed-Size: 438 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Replaces: libqt5location5 (<= 5.0~git20130117-0ubuntu2) Depends: libqt5location5 (= 5.2.1-1ubuntu2), libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5positioning5 (>= 5.2.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtlocation-opensource-src/libqt5location5-plugins_5.2.1-1ubuntu2_i386.deb Size: 105708 MD5sum: 722518e3baae7ec7ac843328fffdb0c4 SHA1: 878227587b255561637d4755b16e4f7a693c4c9e SHA256: 13fb0f59792ca22c8730389733833e5b0a213421d56c780cd3e1d44a8c3c71d7 Description: Qt Location module - geolocation plugins Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 73a316abe88b38b912c271d4c529c3eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5multimedia5 Priority: extra Section: libs Installed-Size: 995 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libpulse0 (>= 1:0.99.1), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/libqt5multimedia5_5.2.1-0ubuntu5_i386.deb Size: 229050 MD5sum: 0ffc6bbb20194ece790225c9c668ce5d SHA1: 096039c8312cb8b1f99b8e2e0b01619449811a2e SHA256: 4eba373f9316124839b809bf5c6574c250324e375f97fd07dde6723d6c3ef548 Description: Qt 5 Multimedia module Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 0fd4e386c6bde062c12b013340fc2cae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5multimedia5-plugins Priority: extra Section: libs Installed-Size: 697 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libqt5multimedia5 (= 5.2.1-0ubuntu5), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.12.0), libgstreamer-plugins-base0.10-0 (>= 0.10.32), libgstreamer0.10-0 (>= 0.10.33), libpulse0 (>= 1:0.99.1), libqgsttools-p1 (>= 5.2.1-0ubuntu5), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/libqt5multimedia5-plugins_5.2.1-0ubuntu5_i386.deb Size: 166104 MD5sum: 061e9f463ff9177c95a74e59f06cbfdc SHA1: 3b6729e8ca0f81a497d79d426e2be39c660bb4d4 SHA256: 91a6083f8abbc115f024ae5dcb0f259def961fdb44c5d2ea720f16e032138251 Description: Qt 5 Multimedia module plugins Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 871e5673651571ab7438746185ff6654 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5multimediaquick-p5 Priority: extra Section: libs Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/libqt5multimediaquick-p5_5.2.1-0ubuntu5_i386.deb Size: 9500 MD5sum: 11f317baad3ff860ffb6ac56d3c3329a SHA1: f820229560dbf6404586b65b0800ad3f9e928194 SHA256: 9a1781976c600253fd106c931050bb3a81675e4919c33dbe3530b1df3a65eb90 Description: Qt 5 Multimedia Quick module Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 10cd066c6217162123930b6485245e89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5multimediawidgets5 Priority: extra Section: libs Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libc6 (>= 2.1.3), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5multimedia5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/libqt5multimediawidgets5_5.2.1-0ubuntu5_i386.deb Size: 36182 MD5sum: a2141a1ffff614b5df318d751410a477 SHA1: da98d8b5cc4eecf8ba8f69e9e48db194be740886 SHA256: eee79f616ad5bf22698b1128491b1b962b1e78d2e28059ab5c2e34fcee0ece4e Description: Qt 5 Multimedia Widgets module Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: a85511daf2fe288583ce79f752671d86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5network5 Priority: optional Section: libs Installed-Size: 1949 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5network5_5.2.1+dfsg-1ubuntu14_i386.deb Size: 507380 MD5sum: 08cc85a607b402a8ae9fa1d5618af50f SHA1: 3ab55fab688aaff6650ef0f2f72713963d9c9aa8 SHA256: 2cb6a31f4204b1c6c4b663adbf2c5720fbde2755a3bba29b09ec91ba0638ff0a Description: Qt 5 network module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 267676193dcb13e33a5c3f9c219b1838 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5opengl5 Priority: optional Section: libs Installed-Size: 521 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.4), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5opengl5_5.2.1+dfsg-1ubuntu14_i386.deb Size: 134120 MD5sum: 17f056b5910ca49a11f5beae4bca9ca9 SHA1: 79c98141d89e99d5e32e65663600282b0a4a7c9f SHA256: a0c4ebf583396f76b24df8bd571967a7d7c1ed937a27c25ab86cd122a882a710 Description: Qt 5 OpenGL module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 0966e72b3545e5c76ba7176064c64965 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5opengl5-dev Priority: optional Section: libdevel Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libqt5opengl5 (= 5.2.1+dfsg-1ubuntu14), qtbase5-dev (= 5.2.1+dfsg-1ubuntu14) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtbase-opensource-src/libqt5opengl5-dev_5.2.1+dfsg-1ubuntu14_i386.deb Size: 29208 MD5sum: a43de9bd466c1564e9483c32b8f9c7cb SHA1: fab19d23b0768ba72fabd3afed9b6fc27a136abf SHA256: 4ef377fee2484d35151005ffa57d1c6e265daeda83e78ab93cab7182db8505ba Description: Qt 5 OpenGL library development files Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 76f1fd5b0a241ef67384ff7dfbd93542 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5organizer5 Priority: optional Section: libs Installed-Size: 631 Maintainer: Ubuntu Developers Architecture: i386 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtpim-opensource-src/libqt5organizer5_5.0~git20140203~e0c5eebe-0ubuntu2_i386.deb Size: 144580 MD5sum: e95bbd02798097affa9713bd5a0652a5 SHA1: b6813faa1dabc59a5ffb58a85d33be8c3678ca5b SHA256: f21c30f97f919782aac016395f99f9906db199f7467bc96d0c0a46d52df2618c Description: Qt PIM module, Organizer library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: ed8d300fc6b3a1af43a5d3e844504189 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5positioning5 Priority: optional Section: libs Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtlocation-opensource-src/libqt5positioning5_5.2.1-1ubuntu2_i386.deb Size: 72936 MD5sum: 98bdefa54e77eabaa358ff460a3a41b8 SHA1: 9b78b15349fd6ea2d0400e80021e41dc1242cc5a SHA256: 45df37e41196810847b5ed1b6f74b1398b7c1f2323613c0c5cf8a21fb0d1d9dd Description: Qt Positioning module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e4fae679fe1460e90893909931d9dc74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5positioning5-plugins Priority: optional Section: libs Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Replaces: libqt5location5-plugins (<= 5.0~git20130805-0ubuntu4) Depends: libqt5positioning5 (= 5.2.1-1ubuntu2), libc6 (>= 2.1.3), libgeoclue0 (>= 0.11.1), libglib2.0-0 (>= 2.12.0), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtlocation-opensource-src/libqt5positioning5-plugins_5.2.1-1ubuntu2_i386.deb Size: 25394 MD5sum: 6433aa67573c209c619837e8afb87fbb SHA1: 5ab61b54a4354456ce24e51d23110e110de9a5f8 SHA256: feebe0a7ce663e0dacccd2478ad7058e3ebe425e6a4b118cbd7bb1e28eca0173 Description: Qt Positioning module - position plugins Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 8e8ffe67e4c7e99862ec2c75f7616f13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5printsupport5 Priority: optional Section: libs Installed-Size: 547 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Recommends: libcups2 Filename: pool/main/q/qtbase-opensource-src/libqt5printsupport5_5.2.1+dfsg-1ubuntu14_i386.deb Size: 152678 MD5sum: c3bcef20c426fc259eb4a98ac1743063 SHA1: b9e88d90bb465b3408e4df3dbc66911be5258980 SHA256: 33bfee9d7699f9071f42e7f8faf2316dac1c2cef333bf159caedfabbb7bb73ae Description: Qt 5 print support module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: ad2a0dcae2a6addab1c4c4b7c64b6a4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5qml-graphicaleffects Priority: optional Section: libs Installed-Size: 380 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtgraphicaleffects-opensource-src Version: 5.2.1-1 Depends: libqt5qml5 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtgraphicaleffects-opensource-src/libqt5qml-graphicaleffects_5.2.1-1_i386.deb Size: 29100 MD5sum: 3691ed11dac206c115d24c0048e79921 SHA1: 75dbc269bfc56926a329cea613b39a2ca99d732b SHA256: c026f26fdacb6d35b3f2e53e17576a7b03c625f1f535700c61f37d033348db19 Description: Qt 5 Graphical Effects module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: cb163b459a459bfd1e6a46aee931dc92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5qml5 Priority: optional Section: libs Installed-Size: 4254 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Provides: qtdeclarative-abi-5-2-1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5network5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/libqt5qml5_5.2.1-3ubuntu15_i386.deb Size: 1176980 MD5sum: f6a5b4eccb86191829fe7eb165b7677f SHA1: f0576b1fea8800a017baf9628993cddfa8a7e60f SHA256: 7e9701d79fbf56a9dfb2ce03ae4af6a9af64e3df955780e669fea5a75d7b149b Description: Qt 5 QML module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: a738ffdd7112e97f1f00381ee382723b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5quick5 Priority: optional Section: libs Installed-Size: 3842 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.2.0+gitcb78684a), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/libqt5quick5_5.2.1-3ubuntu15_i386.deb Size: 987966 MD5sum: ba6afd10ec64bddc598d505353d7980b SHA1: 2bc760aee7362b8439af320d7015b97f6c979276 SHA256: c7bd33eb6ec1fa5d1ac030b396e386affc8eb0afb17b2255913c3e438ebb5495 Description: Qt 5 Quick library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: b007eea137d3d44d7f8ffa1d25ab7526 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5quickparticles5 Priority: optional Section: libs Installed-Size: 627 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.4), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.2.0+gitcb78684a), libqt5quick5 (>= 5.2.0) | libqt5quick5-gles (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/libqt5quickparticles5_5.2.1-3ubuntu15_i386.deb Size: 162946 MD5sum: e20a8dc5902b24bac1a5cc9c71fe33f7 SHA1: 69a5312cbe3727d0b3d8632e943f7cdd0f7f06cb SHA256: 6600d16a9dc7e4f173f0980bf4b889feae216241314388ddaca807f554cafb86 Description: Qt 5 Quick particules module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 205fe56bfde1c3ae524951cb47acb63d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5quicktest5 Priority: optional Section: libs Installed-Size: 200 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.2.0~beta1), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5test5 (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/libqt5quicktest5_5.2.1-3ubuntu15_i386.deb Size: 49202 MD5sum: b64e6ca1c6fabfcca7b62b0146db3356 SHA1: 8cf6f5140507c66bdc656e7459a0c45a151713cc SHA256: 53bd564a763f0a7e62a2de6932f2a435ced3ef2ab1384d59c1f0474dd7840d06 Description: Qt 5 Quick Test library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 62d336fbf0430511d8db72f806e6fba5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5scintilla2-11 Priority: optional Section: libs Installed-Size: 3156 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: qscintilla2 Version: 2.8.1-2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5printsupport5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), libqt5scintilla2-l10n (>= 2.8.1) Filename: pool/main/q/qscintilla2/libqt5scintilla2-11_2.8.1-2_i386.deb Size: 886526 MD5sum: 8e980385ba9288342417948de201ff24 SHA1: 34c404c5f7db8e490baa612712c7b20012612cec SHA256: 6b2d1c875c155503d635aca72bad7254b01debac7282e101f8283c94777d41e3 Description: Qt5 port of the Scintilla source code editing widget Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: 199ccf9871a65668bcb592ca2fb35573 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5scintilla2-dev Priority: optional Section: libdevel Installed-Size: 491 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: qscintilla2 Version: 2.8.1-2 Depends: libqt5scintilla2-11 (>= 2.8.1), libqt5scintilla2-11 (<< 2.8.1+1~), qtbase5-dev Filename: pool/main/q/qscintilla2/libqt5scintilla2-dev_2.8.1-2_all.deb Size: 60886 MD5sum: 27a23b4d294e2278007d65bc06b2ef23 SHA1: faf6bda2d7cb15ef0e7ab3a559d60978b7653662 SHA256: 3195a172367854e01f29d2ae54195aa0deeb7f310e3b619eb883e7ac602c80a1 Description: Scintilla source code editing widget for Qt5, development files Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: 3e785852fd821419ef92e9455f1a224a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5scintilla2-l10n Priority: optional Section: libs Installed-Size: 355 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: qscintilla2 Version: 2.8.1-2 Suggests: libqscintilla2-qt5-11 Filename: pool/main/q/qscintilla2/libqt5scintilla2-l10n_2.8.1-2_all.deb Size: 44578 MD5sum: 61c35eec3cfe4c01e538f39e0ea95108 SHA1: 0b2e9d329e7df604b6dbc0120e491b1b8dd183cd SHA256: a934ccda246f75b657b178281c1c90d186093d36e138a34e60aa6bae71efa590 Description: Scintilla source code editing widget for Qt5, translation files Homepage: http://www.riverbankcomputing.co.uk/software/qscintilla Description-md5: 8999221ef928ab9036f5930207811428 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5script5 Priority: optional Section: libs Installed-Size: 2410 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Provides: qtscript-abi-5-2-0 Depends: libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtscript-opensource-src/libqt5script5_5.2.1+dfsg-1ubuntu1_i386.deb Size: 702010 MD5sum: c8d50954951041c3f6b3645348466b07 SHA1: 4318fc15f181e97bb76c089989fbd4896ba81698 SHA256: bd2a2f32a02814e9b7397d207f2f3aefe63ece2d13ba40a1bf6ca76331e77cac Description: Qt 5 script module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d3c4a0e8070a26c56f291248544e83a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5scripttools5 Priority: optional Section: libs Installed-Size: 772 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Depends: libc6 (>= 2.3.4), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2), libqt5script5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtscript-opensource-src/libqt5scripttools5_5.2.1+dfsg-1ubuntu1_i386.deb Size: 205910 MD5sum: 7183a2a1d4ea04f709b95243858e92af SHA1: 30d4d425c47dd147eca091185a3cb64b856f5820 SHA256: fb3165050b8a49a6253672574c92a97f8f57d48868e8fc2c83cf6f836785bfa7 Description: Qt 5 script tools module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 0514b920233acecc79cd86b47fb195a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5sensors5 Priority: optional Section: libs Installed-Size: 495 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Depends: libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtsensors-opensource-src/libqt5sensors5_5.2.1+dfsg-2ubuntu2_i386.deb Size: 104740 MD5sum: 4335f42b60cb921dfa61dad5c345a8a6 SHA1: 5ac9acab3cfdc25cb7b85c804b41267204e65cd2 SHA256: a4e88fdaa10466fbd9846e75ae91e76e533e38f11788ec38b371daa7e6e98e3c Description: Qt Sensors module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 41282d0d6f2d4c83b25b30273ba0058c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5sensors5-dev Priority: optional Section: libdevel Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Replaces: qtsensors5-dev (<< 5.1.1+dfsg-2~) Depends: libqt5sensors5 (= 5.2.1+dfsg-2ubuntu2), qtbase5-dev Breaks: qtsensors5-dev (<< 5.1.1+dfsg-2~) Filename: pool/main/q/qtsensors-opensource-src/libqt5sensors5-dev_5.2.1+dfsg-2ubuntu2_i386.deb Size: 16216 MD5sum: d80ee05b970c749cf5308403d8244dad SHA1: 2b1748adf0077c3c509d5398616d281bc251de10 SHA256: 8fa8c5297d243064bf1d71178a67cefc0f72c259500dfd0b1e92d66fa8864ec8 Description: Qt 5 Sensors development files Homepage: http://qt-project.org/ Description-md5: dd848e0ce5cb3cf7836fc859c55e581f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5serialport5 Priority: optional Section: libs Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtserialport-opensource-src Version: 5.2.1-1 Depends: libc6 (>= 2.15), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/q/qtserialport-opensource-src/libqt5serialport5_5.2.1-1_i386.deb Size: 35900 MD5sum: 2adfdb31ab42eb1a3a36047d1b5b0590 SHA1: cd653c2dda1ac243b518c597ba9bcb6055592c39 SHA256: 71b8125f0a85d25c9f65622bb8928796b3be93ab9394471e28155b631d684e4c Description: Qt 5 serial port support Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 495baaf3e432acf5b4e4136a5d0e645a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5serialport5-dev Priority: optional Section: libdevel Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtserialport-opensource-src Version: 5.2.1-1 Depends: libqt5serialport5 (= 5.2.1-1), qtbase5-dev Filename: pool/main/q/qtserialport-opensource-src/libqt5serialport5-dev_5.2.1-1_i386.deb Size: 9310 MD5sum: 5642096536a860c3ac755377c3d96e6e SHA1: 7e567f73ea2ab322c2c24c7d845c96b3155842ef SHA256: e24acfd2fb2089fb4c51fc37fdca8c67a769f89f92f262a07100e60d06f45a16 Description: Qt 5 serial port development files Homepage: http://qt-project.org/ Description-md5: ec6e5c3fc91d00795e2fd511b16872a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5sql5 Priority: optional Section: libs Installed-Size: 365 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Recommends: libqt5sql5-sqlite | libqt5sql5-mysql | libqt5sql5-odbc | libqt5sql5-psql Filename: pool/main/q/qtbase-opensource-src/libqt5sql5_5.2.1+dfsg-1ubuntu14_i386.deb Size: 100000 MD5sum: d1594245d139c238b35f881add0d3dfc SHA1: cbb83b14098f9618e270e822a2d35298eaee1987 SHA256: e47e3aec85dc79028dc5178eb6357ddff909b462547d2aa92b03d7e4647ddc3d Description: Qt 5 SQL module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 0713fa3e9592ca24526ad333118f8889 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5sql5-sqlite Priority: optional Section: libs Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5sql5 (>= 5.2.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5sql5-sqlite_5.2.1+dfsg-1ubuntu14_i386.deb Size: 30858 MD5sum: 779790d79bd3e55edae0cab984be03e0 SHA1: d09e72062c464c7d3bb0b61e532266a0f05d2d12 SHA256: 5f12c679223316cf614f2f857ad208630d900263124261accae555d7fe893a99 Description: Qt 5 SQLite 3 database driver Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f74ea3b242033484777e5a5e9fb468bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5svg5 Priority: optional Section: libs Installed-Size: 412 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtsvg-opensource-src Version: 5.2.1-1 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtsvg-opensource-src/libqt5svg5_5.2.1-1_i386.deb Size: 117556 MD5sum: 01f3e742852663226255d3644e27f63d SHA1: 7c40b7e5bcb4b43e2b65251af598268071827185 SHA256: c711c5bda414608dd8eca3d102ab4ad7b3826517bb368db5db2a54a608ec0f86 Description: Qt 5 SVG module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 0e98bb6ccd1201f38567cb67caec74ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5svg5-dev Priority: optional Section: libdevel Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtsvg-opensource-src Version: 5.2.1-1 Depends: libqt5svg5 (= 5.2.1-1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtsvg-opensource-src/libqt5svg5-dev_5.2.1-1_i386.deb Size: 9480 MD5sum: c2098f083f6a3bfc609c9e25e60dd86e SHA1: a6b6389a6a75a68fcf49ce1d97545f14ef905927 SHA256: 61c0c04c23e4c9a8b9182ffb07c09fe16ff15c650dc52386823c33502aa04aa5 Description: Qt 5 SVG module development files Homepage: http://qt-project.org/ Description-md5: aa60a505d0dba59e0a5d3f03ca43c3c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5svg5-private-dev Priority: optional Section: libdevel Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtsvg-opensource-src Version: 5.2.1-1 Depends: libqt5svg5-dev (= 5.2.1-1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtsvg-opensource-src/libqt5svg5-private-dev_5.2.1-1_i386.deb Size: 12794 MD5sum: 9b61fcdd6d52814ad890446ecfd40449 SHA1: 0e01265c3ee60d65fb293508fab37e9faf16e3ab SHA256: 6bee938259fa8dbbf59461c0847ee92022424d26529e1a9eacea1b876074e9a8 Description: Qt 5 SVG module private development files Homepage: http://qt-project.org/ Description-md5: d0c1dbdb2fb6a67e841d5d0ca4da0957 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5test5 Priority: optional Section: libs Installed-Size: 271 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5test5_5.2.1+dfsg-1ubuntu14_i386.deb Size: 73596 MD5sum: 287c76781a0383c3a5e40e68d7522117 SHA1: dfaaf6c4f4423787ea4f35898442cd78653fb2af SHA256: 4f85ca0e8d61b2d2920ffcc549efa92c471e4c7cc18a94de5db73be690ec3602 Description: Qt 5 test module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 439bbed1193cb169575d82d618b4c6c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5versit5 Priority: optional Section: libs Installed-Size: 429 Maintainer: Ubuntu Developers Architecture: i386 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libc6 (>= 2.4), libqt5contacts5, libqt5core5a (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtpim-opensource-src/libqt5versit5_5.0~git20140203~e0c5eebe-0ubuntu2_i386.deb Size: 112080 MD5sum: 0b13da982432c55d734762d89ffb53de SHA1: 03e575fea2d7f05d452889733002c1af78e77703 SHA256: f60b732e13f40790da7f4f4f20857780cccd7859c3b8870798aff9757fe4af68 Description: Qt PIM module, Versit library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d194430a054da7d8130a932e9b854f78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5versitorganizer5 Priority: optional Section: libs Installed-Size: 213 Maintainer: Ubuntu Developers Architecture: i386 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5organizer5, libqt5versit5, libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtpim-opensource-src/libqt5versitorganizer5_5.0~git20140203~e0c5eebe-0ubuntu2_i386.deb Size: 56456 MD5sum: baa24a0764875ae52b44bb14415edd0d SHA1: 4ff63204d10abd0eba2190b7897fc607f55a0bf2 SHA256: 2552b3af50ac8c325d968c5f9710973b4458dc8701cd86613f8c0dd34ed47f3f Description: Qt PIM module, Versit Organizer library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 39cdd38dea099ca0a10ccc81648a08ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5webkit5 Priority: optional Section: libs Installed-Size: 32959 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Depends: libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libicu52 (>= 52~m1-1~), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0), libqt5network5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2), libqt5positioning5, libqt5printsupport5 (>= 5.0.2), libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.2.0), libqt5sensors5 (>= 5.1.1), libqt5sql5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.6), libx11-6, libxcomposite1 (>= 1:0.3-1), libxml2 (>= 2.7.4), libxrender1, libxslt1.1 (>= 1.1.25), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1, zlib1g (>= 1:1.2.0) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtwebkit-opensource-src/libqt5webkit5_5.1.1-1ubuntu8_i386.deb Size: 8282634 MD5sum: 1f2dffdd03581b1389f0a7a13e63b860 SHA1: 92744582bd81fd1b2cdd6724dbf90ca8a857584d SHA256: f7c332d6de4e85259cdfb151180b692320182d426b36d4916201bce47dfe138d Description: Web content engine library for Qt Multi-Arch: same Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: b6887c4796db0313f1e533c538960454 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5webkit5-dbg Priority: extra Section: debug Installed-Size: 612830 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Depends: libqt5webkit5 (= 5.1.1-1ubuntu8) Filename: pool/main/q/qtwebkit-opensource-src/libqt5webkit5-dbg_5.1.1-1ubuntu8_i386.deb Size: 478097740 MD5sum: cb1078394e1240317f3138d416a8bf95 SHA1: c722b7cfe86ae706d3842fec3c23869afe7e55d2 SHA256: 6d055398be1e683d3b40f027fce3500ed53a0eeca6aa081e0cbdac6b4ea101d3 Description: Web content engine library for Qt - debugging symbols Multi-Arch: same Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: 2b35e7ad9905f44038a180fc098adcca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5webkit5-dev Priority: optional Section: libdevel Installed-Size: 798 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Depends: qtbase5-dev, libqt5webkit5 (= 5.1.1-1ubuntu8), libgl1-mesa-dev | libgl-dev, libgstreamer-plugins-base1.0-dev, libqt5opengl5-dev, libxslt1-dev, qtlocation5-dev, qtsensors5-dev Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtwebkit-opensource-src/libqt5webkit5-dev_5.1.1-1ubuntu8_i386.deb Size: 88694 MD5sum: 2cb534bccbe9d0cf70b332a97f44bbb9 SHA1: 8e77703fbf36319a121582a3dd639a8b258823a9 SHA256: 7613912822361778b5e29e71d7acb52aaac49b43fb0b7655c8c745ec0c46671e Description: Web content engine library for Qt - development files Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: 67401855782c9d9d20cf3924364c73f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5webkit5-qmlwebkitplugin Priority: optional Section: libs Installed-Size: 629 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.2.0), libqt5webkit5, libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtwebkit-opensource-src/libqt5webkit5-qmlwebkitplugin_5.1.1-1ubuntu8_i386.deb Size: 70854 MD5sum: baad8cf47365163d25d2aeb84544dbc7 SHA1: 73ef98ea1c62caba2022a5785b0a7074d536c63c SHA256: bfd39fd91ef12d41cc956fc017e48a48f8b0abb2ac64ae7f69c60e80032d1d39 Description: Qt WebKit QML plugin Multi-Arch: same Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: 1b40639a1b924fd7e156a8c37eae8dfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5widgets5 Priority: optional Section: libs Installed-Size: 7001 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.12.0), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libstdc++6 (>= 4.1.1), libx11-6, qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5widgets5_5.2.1+dfsg-1ubuntu14_i386.deb Size: 2266424 MD5sum: 334b05d21b932c20fca5d2dc5c674b95 SHA1: d47e420ff7775ab46e8d2aa37681c1f3d42cc54d SHA256: 9f9984534f49383c3acbd59cb1e791ae00994476134700b5e290424c39f8f8e5 Description: Qt 5 widgets module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d3e73eff3b63455d65d61db3b685f693 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5x11extras5 Priority: optional Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtx11extras-opensource-src Version: 5.2.1-1 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2) Pre-Depends: multiarch-support Filename: pool/main/q/qtx11extras-opensource-src/libqt5x11extras5_5.2.1-1_i386.deb Size: 7556 MD5sum: 6525a6247c020a761340436863b9948c SHA1: 58f2ecd7b8d67364cb926902e1c17ff0e27db230 SHA256: f22717036c08e17f0abaf4b4e5caf792752b5f5f8088b385efc4f9620f7d358e Description: Qt 5 X11 extras Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2574e8fb23c97454c12c4db6cefe9fa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5x11extras5-dev Priority: optional Section: libdevel Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtx11extras-opensource-src Version: 5.2.1-1 Replaces: libqt5x11extras-dev (<< 5.2.0-2~) Depends: libqt5x11extras5 (= 5.2.1-1), qtbase5-dev Breaks: libqt5x11extras-dev (<< 5.2.0-2~) Filename: pool/main/q/qtx11extras-opensource-src/libqt5x11extras5-dev_5.2.1-1_i386.deb Size: 6754 MD5sum: 85b3f91f83338e15372ae9e8ef6985d7 SHA1: 611ba06ba88ed696a288586fc9ed175748d1021a SHA256: 538aa7a830e495be3d0dd64aa773203436079a0d1166b1af8ffda85ea7ec039e Description: Qt 5 X11 extras development files Homepage: http://qt-project.org/ Description-md5: 983dd8be836bae64e10eefe9a7ac8668 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5xml5 Priority: optional Section: libs Installed-Size: 362 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtbase-opensource-src/libqt5xml5_5.2.1+dfsg-1ubuntu14_i386.deb Size: 92762 MD5sum: 65145d1b35dc5c3e8beb7d31e94409c9 SHA1: d9d4c55be1e7e0fd1a28cd8c079bcb0d27dc7f50 SHA256: fcce3db299ccb650d08d85551a5810c26dd55c4f017a1820227d6b57e94a0a8e Description: Qt 5 XML module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: c3b1596533c67529df54c353807c6cae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libqt5xmlpatterns5 Priority: optional Section: libs Installed-Size: 3821 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Provides: qtxmlpatterns-abi-5-2-0 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5network5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtxmlpatterns-opensource-src/libqt5xmlpatterns5_5.2.1-3_i386.deb Size: 934314 MD5sum: e061fb4a862e3c598a14b07d08153a11 SHA1: 9fe1a4482f7e76a332a881f6c049390d0e58b18d SHA256: 785384dfd699a92d5a6c79f8a6c7b4f0491d273c9a2d0f5cba75382f58a4c73a Description: Qt 5 XML patterns module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d15f85c7e8471f230227f226e1113d01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5xmlpatterns5-dev Priority: optional Section: libdevel Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Depends: libqt5xmlpatterns5 (= 5.2.1-3), qtbase5-dev Filename: pool/main/q/qtxmlpatterns-opensource-src/libqt5xmlpatterns5-dev_5.2.1-3_i386.deb Size: 14414 MD5sum: 172d5f32b5851b04f45897b81b68aab6 SHA1: bdb96bb11e6ab2fcef88d5ab502178fd9a1788bf SHA256: a5118e2c5010f059535d236de80a279176a33fabe9a1e8200907c1b3f1abef74 Description: Qt 5 XML patterns development files Homepage: http://qt-project.org/ Description-md5: 854381d5c52ed80e7e72ec7e04934402 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqt5xmlpatterns5-private-dev Priority: optional Section: libdevel Installed-Size: 2364 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Replaces: libqt5xmlpatterns5-dev (<< 5.2.0-2~) Depends: libqt5xmlpatterns5-dev (= 5.2.1-3) Breaks: libqt5xmlpatterns5-dev (<< 5.2.0-2~) Filename: pool/main/q/qtxmlpatterns-opensource-src/libqt5xmlpatterns5-private-dev_5.2.1-3_i386.deb Size: 214632 MD5sum: 712151a2bb529d66213163ad86a9ab7f SHA1: 65cb4b89931b072cee80cf68a85e0557a3459287 SHA256: a432c9b6664adbbc48ba624afbb159f057f36cc907a4a4ae3919f4fa57bb240c Description: Qt 5 XML patterns private development files Homepage: http://qt-project.org/ Description-md5: 9277ca180a63779236984a622adcf00e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtassistantclient-dev Priority: optional Section: libdevel Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt-assistant-compat Version: 4.6.3-6 Replaces: libqt4-dev (<< 4:4.7.0~), qt4-qmake (<< 4:4.7.0~) Depends: libqtassistantclient4 (= 4.6.3-6) Breaks: libqt4-dev (<< 4:4.7.0~), qt4-qmake (<< 4:4.7.0~) Filename: pool/main/q/qt-assistant-compat/libqtassistantclient-dev_4.6.3-6_i386.deb Size: 4616 MD5sum: df91c569597eca91f2ff77334439c8c4 SHA1: 6ee2aa2f4bc754a05d1d4bccf69fef1aa3c7965c SHA256: 805f6369c9e1b450ec8169df27c08049daf5c6de1ff00dfa99539b81dfdd3cb2 Description: Qt Assistant client library (development) Homepage: http://doc.qt.nokia.com/4.6/qassistantclient.html Description-md5: cff8c49338b078e7417128f79b17dc99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtassistantclient4 Priority: optional Section: libs Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt-assistant-compat Version: 4.6.3-6 Replaces: libqt4-assistant (<< 4:4.7.0~) Depends: libgcc1 (>= 1:4.1.1), libqt4-network (>= 4:4.8.1), libqtcore4 (>= 4:4.8.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: libqt4-assistant (<< 4:4.7.0~) Filename: pool/main/q/qt-assistant-compat/libqtassistantclient4_4.6.3-6_i386.deb Size: 14516 MD5sum: 6caa463a0f262f8794b8ab1fa122493a SHA1: b5c192370456a97e1b114f6127dc831a076969f5 SHA256: 7215568f308637d80559e8033843068cfdfca4b156741ad50bc753df92f2278e Description: Qt Assistant client library (runtime) Multi-Arch: same Homepage: http://doc.qt.nokia.com/4.6/qassistantclient.html Description-md5: 48f815b72fe6cea0b6771795bc0e2aaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-audio Package: libqtcore4 Priority: optional Section: libs Installed-Size: 4914 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: qtcore4-l10n, libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.22.0), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: libicu48, libthai0 Filename: pool/main/q/qt4-x11/libqtcore4_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 1557086 MD5sum: 6b3c51e50568a4b11467d8c3b9ed73f9 SHA1: 92c08e7cd7f7f9530ca90600a4df830177bbb564 SHA256: a21c9885556fba036b85c650da444b525ea1b59cf7a67b4caefc59e08a2e55c6 Description: Qt 4 core module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 7cee1ea8aba376d920c9f7e8e7021f9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqtcore4-perl Priority: optional Section: perl Installed-Size: 833 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqt4-network (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1), liblist-moreutils-perl Filename: pool/main/p/perlqt/libqtcore4-perl_4.13.0-0ubuntu1_i386.deb Size: 168336 MD5sum: 0bac786985125cfcfe474ac6e377f119 SHA1: a2bc7e8e77f85e9d6a6c71bbfa0e7cdadb16f332 SHA256: 247fa605b61684d2d50a468567f5c38609d7920d6aed4f0e0c88ce9fcb359f08 Description: perl bindings for the Qt Core library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: f1441ea58b8b7c3c62388bd9bce80aff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdbus4 Priority: optional Section: libs Installed-Size: 665 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbus (<< 4:4.8.5) Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.3.1), libgcc1 (>= 1:4.1.1), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: libqt4-dbus (<< 4:4.8.5) Filename: pool/main/q/qt4-x11/libqtdbus4_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 182048 MD5sum: a736c64a40a6ea1ff3955de0a1323274 SHA1: 8aac3da50ced9062c0486fdc4935613914665ab3 SHA256: 6eddbbe2f6a857a89ea61d5746dc069c187289e3bc27c5705ca188a6f0aa5b6f Description: Qt 4 D-Bus module library Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e24582bcf668b778454bd3186165edbb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqtdbus4-perl Priority: optional Section: perl Installed-Size: 97 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtdbus4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtdbus4-perl_4.13.0-0ubuntu1_i386.deb Size: 17042 MD5sum: 75c74f5aeda23aa1d82825d5201112e5 SHA1: d687148253ff885465140350aca825431c7ac078 SHA256: d45421beb4f6aa26d6bbc3b9754e8af80f1dded30eaa3739b6fb8429fe3c5f85 Description: perl bindings for the Qt Dbus library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 437c1e3a357e6ae8d092be4616c25826 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdbusmock1 Priority: optional Section: libs Installed-Size: 138 Maintainer: Ubuntu Developers Architecture: i386 Source: libqtdbusmock Version: 0.2+14.04.20140304-0ubuntu1 Depends: python3-dbusmock, libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqtdbustest1 (>= 0.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/libq/libqtdbusmock/libqtdbusmock1_0.2+14.04.20140304-0ubuntu1_i386.deb Size: 33130 MD5sum: a747cda204d1461326061b2b203cdbbc SHA1: fc9a3184ea08aa513f5f22411eb52a9c75797d76 SHA256: 40d203231416a9ee8477455e14d0939db4937104a8b18f118b27b1011946aaf8 Description: Library for mocking DBus interactions using Qt Multi-Arch: same Homepage: https://launchpad.net/libqtdbustest Description-md5: 767c2a8575360a80fc75df3eeb01f6e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdbusmock1-dev Priority: optional Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Architecture: i386 Source: libqtdbusmock Version: 0.2+14.04.20140304-0ubuntu1 Depends: libqtdbusmock1 (= 0.2+14.04.20140304-0ubuntu1) Filename: pool/main/libq/libqtdbusmock/libqtdbusmock1-dev_0.2+14.04.20140304-0ubuntu1_i386.deb Size: 4704 MD5sum: 24bf6c1cd224f4f2f2c099804d5b8664 SHA1: 6ec649b38298817e7e4bd9b06a28e5522c0a98ad SHA256: 0039235595726582d901ffcc7d242ace9482ed2cf490bae3cb4254a65aeb2d91 Description: Library for mocking DBus interactions using Qt Multi-Arch: same Homepage: https://launchpad.net/libqtdbustest Description-md5: 1c68be0d76530e391faa9524d9fd0f2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdbustest1 Priority: optional Section: libs Installed-Size: 103 Maintainer: Ubuntu Developers Architecture: i386 Source: libqtdbustest Version: 0.2+14.04.20140325-0ubuntu1 Depends: dbus, libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5test5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/libq/libqtdbustest/libqtdbustest1_0.2+14.04.20140325-0ubuntu1_i386.deb Size: 23078 MD5sum: af013015696238100666212e38b6ced0 SHA1: 499b2f92f49a0a7519a9e8e41ea705bb7c4c780a SHA256: 0b44eadb6d74bb66cf602d5552e12209f16984d78b835396e4c47e258e0c7169 Description: Library for testing DBus interactions using Qt Multi-Arch: same Homepage: https://launchpad.net/libqtdbustest Description-md5: 76fdbcd9f19b3ac1b9c9332890f80276 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdbustest1-dev Priority: optional Section: libdevel Installed-Size: 57 Maintainer: Ubuntu Developers Architecture: i386 Source: libqtdbustest Version: 0.2+14.04.20140325-0ubuntu1 Depends: libqtdbustest1 (= 0.2+14.04.20140325-0ubuntu1) Filename: pool/main/libq/libqtdbustest/libqtdbustest1-dev_0.2+14.04.20140325-0ubuntu1_i386.deb Size: 3096 MD5sum: 18fc4bc72de9b421d8c86f0415caf731 SHA1: c435ce4f0ada706a6ac5d080797afbc7e05bb6d1 SHA256: d0a071656c3df5a07f1f32f63cf67e9759301519951eb913638a21f0ffac88aa Description: Library for testing DBus interactions using Qt Multi-Arch: same Homepage: https://launchpad.net/libqtdbustest Description-md5: 066325c657d74b29dd64a4effd452fa0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtdeclarative4-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtdeclarative4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtdeclarative4-perl_4.13.0-0ubuntu1_i386.deb Size: 9776 MD5sum: 703d891a5e31452ec15c1c6d9384f2aa SHA1: c9a3e48885428248e6155f7f3da23a6c9e7bb41e SHA256: 7f299e6185d020511cfc70aba53ce2ec80849d10f74faca483a273e5fcd12299 Description: perl bindings for the Qt Declarative library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: e5838920703536e261244e5b605bb06b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtgui4 Priority: optional Section: libs Installed-Size: 12667 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: fontconfig, libaudio2, libc6 (>= 2.15), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.5), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.12.0), libice6 (>= 1:1.0.0), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libsm6, libstdc++6 (>= 4.1.1), libtiff5 (>= 4.0.3), libx11-6 (>= 2:1.2.99.901), libxext6, libxi6 (>= 2:1.2.99.4), libxrender1, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: libcups2 Suggests: qt4-qtconfig Filename: pool/main/q/qt4-x11/libqtgui4_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 4184990 MD5sum: 79ab35ed4d804ced4f9cb3f89c33bd70 SHA1: 0bbe7cbe489396cbb35b4b47fbe46f546a3cee2f SHA256: 361237596de2ee9c4bca0ee92de53afc73c34f1ba7c05c4e4e35dc46735d1956 Description: Qt 4 GUI module Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d6671d2f0c9c77c689ebd0483f37a882 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqtgui4-perl Priority: optional Section: perl Installed-Size: 847 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtgui4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtgui4-perl_4.13.0-0ubuntu1_i386.deb Size: 221130 MD5sum: 76e97ec51894ccd8b3cc2a1255f180b8 SHA1: 512fe24b130af4e8f19385d5e34625e882fefce2 SHA256: c4da5b5009ac66eda57a5f189ece112d6682d3bd4d0f3916bd89bab309c35d21 Description: perl bindings for the Qt Gui library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 7a75c5b832dbaf99f31d1df532390b9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqthelp4-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqthelp4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqthelp4-perl_4.13.0-0ubuntu1_i386.deb Size: 9770 MD5sum: ba21afd83f02368cdbae72492dd7af36 SHA1: 524ef874fa603d14469a779a0c31ade6c74c208a SHA256: 7713738e78f7694f86399fab6af30bcdbfb96b46c867da692bc64c387f036b8d Description: perl bindings for the Qt Help library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 8e010e186a1ba898213b8a5e6ec5ddca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtnetwork4-perl Priority: optional Section: perl Installed-Size: 95 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqt4-network (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtnetwork4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtnetwork4-perl_4.13.0-0ubuntu1_i386.deb Size: 15418 MD5sum: dd4cee9e9db3d4e16ad7c69573c1d62b SHA1: ec8483a3d71590b86086eccfaeb2b90af572269e SHA256: c265e722fcb98c585e24ce5f21f95eb899fed7d23da11111a4e41132f63665d0 Description: perl bindings for the Qt Network library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 8a62973f5943a5219d7d54efac2b14da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtopengl4-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtopengl4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtopengl4-perl_4.13.0-0ubuntu1_i386.deb Size: 9758 MD5sum: 136b9607e55a06a7876fe8f7bea68b82 SHA1: f687e50c081e4634d862bcdc3a2ab216c35513c4 SHA256: fb53f8066a67223326b467cebd475ff87e1b049493ff0bdd5e169dfb6ea82528 Description: perl bindings for the Qt OpenGL library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: da47ccab433dbf7b9d9a0a34e84c9dd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtscript4-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtscript4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtscript4-perl_4.13.0-0ubuntu1_i386.deb Size: 9768 MD5sum: 459b404d99c888af85b5f5470e0624fa SHA1: d6934da2ae46d5371e693a6982bbd5702a5663e4 SHA256: 6502d99af065413de136730b33fff7a41e3856237cd1801ce25270277afbae04 Description: perl bindings for the Qt Script bindings Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 3d9f867cada65b7735a2038b52beeca2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtsql4-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtsql4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtsql4-perl_4.13.0-0ubuntu1_i386.deb Size: 9780 MD5sum: a70fb234b4e8f81386ae51a190dc98a3 SHA1: 1c1c07acc014a6816702f37fbbb93288233885c6 SHA256: d1afe81eb90ec16f4742332a72d33aa4d1bcf7204b6e6ae022395a73977a5790 Description: perl bindings for the Qt Sql library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 2a3bb4f0ac5d6fa63646ecac5980d039 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtsvg4-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtsvg4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtsvg4-perl_4.13.0-0ubuntu1_i386.deb Size: 9750 MD5sum: 28d6fdfcc3f57b69db80be144d4c839d SHA1: 939800c02bebf406be92d60e97b2b77ea4ce26ae SHA256: 028f96998a5be2c3df15a9f8af0e9dd132cff2d0a04846069147dea5d0f43aa7 Description: perl bindings for the Qt Svg library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 2c83de22199337fa90916f46dd6869af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqttest4-perl Priority: optional Section: perl Installed-Size: 152 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqttest4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqttest4-perl_4.13.0-0ubuntu1_i386.deb Size: 30076 MD5sum: 6a3d978d1e11324da37418bcc122887f SHA1: 07d026567f38ecf4c43c1917c5dc00ded0ab89d6 SHA256: f92dac56055cf1dd6195cb8647e8ea9c16b55bc8457e8207f4246207b0e6622c Description: perl bindings for the Qt Test library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 42042a5809931dd9f72a279a21a384a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtuitools4-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtuitools4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtuitools4-perl_4.13.0-0ubuntu1_i386.deb Size: 9774 MD5sum: a2c3da94fd4cb247b5a90f758c909b3a SHA1: 06ff8cd5a4886fd0a623a4666f5a3003fb64e027 SHA256: e2539d982436c7c9f08582156af9e8b427184b3c256bc5e4d71f7d617356f061 Description: perl bindings for the Qt UiTools library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 3f7a9a7163ca0fb46302cba43c9cac7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtwebkit-dev Priority: optional Section: libdevel Installed-Size: 622 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtwebkit-source Version: 2.3.2-0ubuntu7 Replaces: libqt4-dev (<= 4:4.7.0~beta1) Depends: libqt4-dev (>= 4:4.8.0), libqtwebkit4 (= 2.3.2-0ubuntu7) Filename: pool/main/q/qtwebkit-source/libqtwebkit-dev_2.3.2-0ubuntu7_i386.deb Size: 70146 MD5sum: 781ed416b532fb0e9c1be0c26324220e SHA1: 36568c8ecc5b5fc8bc14f6481320626a22e1b16a SHA256: 9b24b4dc2e0703d90520cb5e76da813fc44fbf194dc7d1c00237e0df1923bc25 Description: Web content engine library for Qt - development files Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: ea94504f063af2a4c98e30f8cae2c4e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libqtwebkit4 Priority: optional Section: libs Installed-Size: 34250 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtwebkit-source Version: 2.3.2-0ubuntu7 Replaces: libqt4-webkit (<= 4:4.7.0~beta1) Depends: libc6 (>= 2.11), libfontconfig1 (>= 2.9.0), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libqt4-network (>= 4:4.7.0~beta1), libqt4-opengl (>= 4:4.5.3), libqtcore4 (>= 4:4.8.4), libqtgui4 (>= 4:4.8.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.6), libx11-6, libxml2 (>= 2.7.4), libxrender1, libxslt1.1 (>= 1.1.25), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Filename: pool/main/q/qtwebkit-source/libqtwebkit4_2.3.2-0ubuntu7_i386.deb Size: 8988544 MD5sum: 7b1fb2556a50d05d6e3318bc7020bd2c SHA1: 354f6191da84690b0a5e3497a53975d70b9f658f SHA256: 36232d606c08c93f3decd340bdb45b6e5a23917d406be94e5135a4fe195c8a60 Description: Web content engine library for Qt Multi-Arch: same Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: 1d29083ee8e5cd3e7083be93610c2ad1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: libqtwebkit4-dbg Priority: extra Section: debug Installed-Size: 26432 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtwebkit-source Version: 2.3.2-0ubuntu7 Replaces: libqt4-webkit-dbg (<= 4:4.7.0~beta1) Depends: libqtwebkit4 (= 2.3.2-0ubuntu7) Filename: pool/main/q/qtwebkit-source/libqtwebkit4-dbg_2.3.2-0ubuntu7_i386.deb Size: 2756660 MD5sum: af65f0a44a7f67b19b84b33523da7152 SHA1: 40bb762a5de383a1bb3ac19ba208f4fc04f4e918 SHA256: bd8ffe113431e6fb194c8af07389d07f87061107b0806e139612d64d57719a79 Description: Web content engine library for Qt - debugging symbols Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: 2b35e7ad9905f44038a180fc098adcca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtwebkit4-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtwebkit4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtwebkit4-perl_4.13.0-0ubuntu1_i386.deb Size: 9774 MD5sum: 48eed459b6fd8e09df1dc34750d35a38 SHA1: 382fd36eea05a6cc0884d51c2d2aebfce3b0b992 SHA256: b0b300389d4db24abad1f1ef3b4c34b3563206d0811b08451315806b01ff81ff Description: perl bindings for the Qt Webkit library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: d4641a7d20a8d99d355d9cce989ec73c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtxml4-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokeqtxml4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtxml4-perl_4.13.0-0ubuntu1_i386.deb Size: 9782 MD5sum: 7de416bd189b56397afe90783b1bf7ac SHA1: 950d7882c4f95fa6a03d5c2930361c0263e233a3 SHA256: 8fb08fbea1aed33cd798eb5841f7b9721d1b5abedc124c0c1c8d217bdabe774f Description: perl bindings for the Qt Xml library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: ab5f687bcc023a3273ac7a2027881c72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libqtxmlpatterns4-perl Priority: optional Section: perl Installed-Size: 103 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1), perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libperl5.18 (>= 5.18.2), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtxmlpatterns4-3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/libqtxmlpatterns4-perl_4.13.0-0ubuntu1_i386.deb Size: 19412 MD5sum: 883a1d54700bae82d44c1405299c6b5d SHA1: 9e1a88b29e977ea76fee1827f317b8578fe9a094 SHA256: 5f1ef2ba3cbc687018599703e82b14758494c4987f53632ad6bcd6d941e396a2 Description: perl bindings for the Qt XMLPatterns library Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 20918e4ccbaa70740619b3dc3cb361e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libquadmath0 Priority: optional Section: libs Installed-Size: 517 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.10) Pre-Depends: multiarch-support Filename: pool/main/g/gcc-4.8/libquadmath0_4.8.2-19ubuntu1_i386.deb Size: 186544 MD5sum: f3d2af513a6013e4ea2383a9f1333cc6 SHA1: b2350a1fb0993fba4d8f1cdcacfa9ab34cef2f20 SHA256: 2f6496be5d46a85c2a1c4972593eccd0736d27e387c4ec5b8027a111fd9be740 Description: GCC Quad-Precision Math Library Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: fb375c278b15a5774cef34cf9570ecc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libquadmath0-dbg Priority: extra Section: debug Installed-Size: 594 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libquadmath0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libquadmath0-dbg_4.8.2-19ubuntu1_i386.deb Size: 155166 MD5sum: fb7808e68ad11c07bc13bd885c74c193 SHA1: a19bd27ff85d27c50c94a0e1032a8d16d4b3837b SHA256: ee9e3d354e87e37de9e52939158afd915b6a1be7f20b22bd3b704b3846b1f272 Description: GCC Quad-Precision Math Library (debug symbols) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 51e0d32e2b63fbbb4bd76acf3872936c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libquorum-dev Priority: optional Section: libdevel Installed-Size: 292 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libquorum5 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libquorum-dev_2.3.3-1ubuntu1_i386.deb Size: 25178 MD5sum: 9630ac5d0f3a47949b3cb55c101d92cc SHA1: 70c32c1e151b7a1e031977435f85cf74cc3263b9 SHA256: fb827318abbabfbcbe220447c1d99f3efd55c8829dc5bc1101186168b766d31d Description: Standards-based cluster framework, Quorum devel files Description-md5: e0dd52c4ea971e49f43d9f2e4d5d1012 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libquorum5 Priority: optional Section: libs Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.4), libcorosync-common4 (>= 2.3.3), libqb0 Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libquorum5_2.3.3-1ubuntu1_i386.deb Size: 6562 MD5sum: 6ac7c92efd3361b1b68131fd37c38ef4 SHA1: 62ca7154b05d160b3b08081d4ae59c90f09a7a65 SHA256: 6eeace718f77b1a5740a89f18f1d8ab6937e3a1d20fe46c4e0c2afb6f91709b6 Description: Standards-based cluster framework, Quorum library Description-md5: 14651db8b8b8dd1ca0078ccb3f57d650 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librabbitmq-dbg Priority: extra Section: debug Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: i386 Source: librabbitmq Version: 0.4.1-1 Depends: librabbitmq1 (= 0.4.1-1) Filename: pool/main/libr/librabbitmq/librabbitmq-dbg_0.4.1-1_i386.deb Size: 182736 MD5sum: 2248dbbc364c6c9aa9ad7b051e879a93 SHA1: 0569a0e0fcbb7f2ed536d7664644d0e1cdcbd5c6 SHA256: 195453561a0b6328ebb9ca62a6931d6e0489eaae0f0004f996995cae1d99cfce Description: AMQP client library written in C - Debug Files Homepage: https://github.com/alanxz/rabbitmq-c Description-md5: c76092813f0fe2bb0c116439d063bad2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librabbitmq-dev Priority: optional Section: libdevel Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: i386 Source: librabbitmq Version: 0.4.1-1 Depends: librabbitmq1 (= 0.4.1-1) Filename: pool/main/libr/librabbitmq/librabbitmq-dev_0.4.1-1_i386.deb Size: 27126 MD5sum: 7542b202586f23ada27a0d1242fe70e7 SHA1: b500ec6cbc5c906f69b46ab3d57a1586bf8d3227 SHA256: 4ca7184c22dca7028d96e1c42e84b3e40732b3bcc9f1c5f6fc6a1e327781ccff Description: AMQP client library written in C - Dev Files Homepage: https://github.com/alanxz/rabbitmq-c Description-md5: 328f6d1c1ad91f4390a538abfb93a5cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librabbitmq1 Priority: optional Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Michael Fladischer Architecture: i386 Source: librabbitmq Version: 0.4.1-1 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/libr/librabbitmq/librabbitmq1_0.4.1-1_i386.deb Size: 36096 MD5sum: e69ff2f194475712dd4808ec97a8e97c SHA1: 5e707dc906b96717a41c9e7354ca1c6b52807de0 SHA256: e687a0a54bfce07b46d327e566204e28cd07dd94c1746ce1a45a3493ac61159e Description: AMQP client library written in C Homepage: https://github.com/alanxz/rabbitmq-c Description-md5: d813b0dbcf2f33c93fba8ae5959a1228 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librados-dev Priority: optional Section: libdevel Installed-Size: 11825 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Replaces: libcrush-dev, libcrush1-dev, librados1-dev, librados2-dev Depends: librados2 (= 0.79-0ubuntu1), libc6 (>= 2.16), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Conflicts: libcrush-dev, libcrush1-dev, librados1-dev, librados2-dev Filename: pool/main/c/ceph/librados-dev_0.79-0ubuntu1_i386.deb Size: 1742134 MD5sum: 771a4701727e220fc9c8d7de7d5835ad SHA1: 6360936e846b11439644d7d7a124245f863c959b SHA256: 1952681501188dced75005a15bdc6d8544e6e532ef4d109dbc2e98183caf5a99 Description: RADOS distributed object store client library (development files) Homepage: http://ceph.com/ Description-md5: 45a1795729f9041b2c4d34b965fbaee2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librados2 Priority: optional Section: libs Installed-Size: 5699 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Replaces: libcrush, libcrush1, librados, librados1 Depends: libboost-system1.54.0, libboost-thread1.54.0, libc6 (>= 2.9), libgcc1 (>= 1:4.1.1), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Conflicts: libcrush, libcrush1, librados, librados1 Filename: pool/main/c/ceph/librados2_0.79-0ubuntu1_i386.deb Size: 1422388 MD5sum: 54b65dbb9e0d840848cdda05c21acbe5 SHA1: 36d989f396012e289c5b7c432633e39f74f6836b SHA256: 1f648a5be9c81e886fa6c594f9d407968add51b56f5a4aa62b67925956f24d95 Description: RADOS distributed object store client library Homepage: http://ceph.com/ Description-md5: 42d0f393b45b7f226597be77c6f81917 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: librados2-dbg Priority: extra Section: debug Installed-Size: 21183 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Replaces: libcrush1-dbg, librados1-dbg Depends: librados2 (= 0.79-0ubuntu1) Conflicts: libcrush1-dbg, librados1-dbg Filename: pool/main/c/ceph/librados2-dbg_0.79-0ubuntu1_i386.deb Size: 21494670 MD5sum: 15178af37f342cbd77b2c340b1526474 SHA1: 1f19090fbe50fc9e0761af9f6a6c743461d93d97 SHA256: ab3d0829afeb807791cadde2c90861fa7f5efcf0a1e8075282df6624d9a01882 Description: debugging symbols for librados2 Homepage: http://ceph.com/ Description-md5: 5fed3bffffed20ba3eae296a5cd8e215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor1 Priority: optional Section: libs Installed-Size: 485 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: raptor Version: 1.4.21-10 Depends: libc6 (>= 2.11), libcurl3-gnutls (>= 7.16.2), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25) Pre-Depends: multiarch-support Filename: pool/main/r/raptor/libraptor1_1.4.21-10_i386.deb Size: 146864 MD5sum: a09f25f3229afc1d69c7ab061fb7e11c SHA1: d298693a4d9019da6d2641127d4043b27adfbb37 SHA256: 70db0f22435adb0c5b679b653cf99d1c106b0b6adf76349bff80bca7a69b2f2b Description: Raptor RDF parser and serializer library Multi-Arch: same Homepage: http://librdf.org/raptor/ Description-md5: 8fa11cd3aec897cd60238ef424626ea3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: libraptor1-dbg Priority: extra Section: debug Installed-Size: 1093 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: raptor Version: 1.4.21-10 Depends: libraptor1 (= 1.4.21-10) Filename: pool/main/r/raptor/libraptor1-dbg_1.4.21-10_i386.deb Size: 308730 MD5sum: ba8c4f03d94fa6d395a14971830189ab SHA1: 8c2801dc2d0744e09a7440bf18d0538889522d7d SHA256: cf66b6c51d5f521ddc48221f183a741892687bc439ffe1cf4d7e0fe3104c629b Description: Raptor RDF parser and serializer library - debugging symbols Homepage: http://librdf.org/raptor/ Description-md5: 94ab1e762a7deb1914d98b804f862510 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor1-dev Priority: optional Section: libdevel Installed-Size: 769 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: raptor Version: 1.4.21-10 Provides: libraptor-dev Depends: libraptor1 (= 1.4.21-10), libxml2-dev (>= 2.5.10), libcurl4-gnutls-dev, libxslt1-dev (>= 1.0.18), pkg-config Suggests: libraptor1-doc Conflicts: libraptor-dev, libraptor0 (<= 0.9.12-2), libraptor1 (<= 1.0.0-4) Filename: pool/main/r/raptor/libraptor1-dev_1.4.21-10_i386.deb Size: 180046 MD5sum: b4c2b6e886b2fd0854125f009829aca7 SHA1: 6a6440d1a6dc0e1dadc3b2e99e882018d450e73d SHA256: b53d05151c0d89b44ccf4ad6e0e228604f8bc288e7e54f33fb8594e5169e3506 Description: Raptor RDF parser and serializer development libraries and headers Homepage: http://librdf.org/raptor/ Description-md5: c6f8a34bba2df5b47b55c5df7f7caf5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor1-doc Priority: optional Section: doc Installed-Size: 1315 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: all Source: raptor Version: 1.4.21-10 Depends: lynx | www-browser Filename: pool/main/r/raptor/libraptor1-doc_1.4.21-10_all.deb Size: 98958 MD5sum: ebec4869b8f13d72559973ec8ff00895 SHA1: bae1a4d456a5bc0cee78e063a79ea22d306509f5 SHA256: dff9cafc79f8b318b6557ddf938147bfc49d8139aa25d83005ce648b9b2f5d7f Description: Documentation for the Raptor RDF parser and serializer library Homepage: http://librdf.org/raptor/ Description-md5: 84ed5b4636f549b86171efefa5a5ae95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor2-0 Priority: optional Section: libs Installed-Size: 438 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: raptor2 Version: 2.0.13-1 Depends: libc6 (>= 2.11), libcurl3-gnutls (>= 7.16.2), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), libyajl2 (>= 2.0.4) Pre-Depends: multiarch-support Suggests: raptor2-utils Breaks: libraptor1 (<< 1.4.21-3) Filename: pool/main/r/raptor2/libraptor2-0_2.0.13-1_i386.deb Size: 153152 MD5sum: 6cbfb6f773578e9cbddeef2b935d2e31 SHA1: f8195815b69629e31ee82d8204d82297bb74873d SHA256: 2f4bac493af3bfb2dc4760c95490256e332f80de07a7a88e873681eb7130a38a Description: Raptor 2 RDF syntax library Multi-Arch: same Homepage: http://librdf.org/raptor/ Description-md5: 773b7033cc26603ac6f60fb8d1885e8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: libraptor2-0-dbg Priority: extra Section: debug Installed-Size: 1208 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: raptor2 Version: 2.0.13-1 Depends: libraptor2-0 (= 2.0.13-1) Filename: pool/main/r/raptor2/libraptor2-0-dbg_2.0.13-1_i386.deb Size: 334332 MD5sum: 572187ce64818b6b8f4b4700bb716ba6 SHA1: 5ab96431eca5e564bf5125187ca3fe91ac4b7e88 SHA256: afc5cdeed9fb1c99f6c35f07e532c6d84acd36fed9030670df6817d2acd29dd0 Description: Raptor RDF parser and serializer library - debugging symbols Homepage: http://librdf.org/raptor/ Description-md5: 715c43016360819222c9514ff176fd74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor2-dev Priority: optional Section: libdevel Installed-Size: 734 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: raptor2 Version: 2.0.13-1 Depends: libraptor2-0 (= 2.0.13-1), libxml2-dev (>= 2.5.10), libcurl4-gnutls-dev, libxslt1-dev (>= 1.0.18), pkg-config, libyajl-dev Recommends: raptor2-utils Suggests: libraptor2-doc Filename: pool/main/r/raptor2/libraptor2-dev_2.0.13-1_i386.deb Size: 174334 MD5sum: ca87653a24618e5393e86e745d5a77c2 SHA1: 38506e2a749b97a519464e838ab0d8aaf206a8a9 SHA256: aaf116474d843bcc310578c46f58086f20c44d26cae42847804d03fa09891a39 Description: Raptor 2 RDF syntax library development libraries and headers Homepage: http://librdf.org/raptor/ Description-md5: 5f07c4036e593f4fdd3058cf465e8915 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraptor2-doc Priority: optional Section: doc Installed-Size: 1527 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: all Source: raptor2 Version: 2.0.13-1 Depends: lynx | www-browser Filename: pool/main/r/raptor2/libraptor2-doc_2.0.13-1_all.deb Size: 119650 MD5sum: 7b3534c4402cff8f6eb777a50421da32 SHA1: cbf81b312466d2596a70634751f9f5e1e45bb01f SHA256: 6a2e80d8059852c5a5068869e3d35cb4c4d9e392ee8f0a301165d818cf736d27 Description: Documentation for the Raptor 2 RDF syntax library Homepage: http://librdf.org/raptor/ Description-md5: a86c6d606fb8e8f9dd088c874013018f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librarian-dev Priority: extra Section: libdevel Installed-Size: 141 Maintainer: Ubuntu Developers Original-Maintainer: Frederic Peters Architecture: i386 Source: rarian Version: 0.8.1-5ubuntu1 Depends: librarian0 (= 0.8.1-5ubuntu1) Filename: pool/main/r/rarian/librarian-dev_0.8.1-5ubuntu1_i386.deb Size: 19226 MD5sum: ab6ad35828982bbd79b0cd8d6fe348e3 SHA1: cbce09dfda7625b00efb4ae62bf89d7ca926a532 SHA256: f44cf50e8ab6cc53cb4263fc7631f6b6c461468ac93e4d622c919e9d7f6676af Description: Documentation meta-data library (header files) Homepage: http://rarian.freedesktop.org/ Description-md5: 3526e3e7eb51494be35419fbaf086671 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librarian0 Priority: extra Section: libs Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: Frederic Peters Architecture: i386 Source: rarian Version: 0.8.1-5ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: yelp (<< 2.21) Filename: pool/main/r/rarian/librarian0_0.8.1-5ubuntu1_i386.deb Size: 49344 MD5sum: b44dc515dad42da086df6713b09759da SHA1: 1fdd91822cc1123316f50c745d2c7204c0457c4b SHA256: b4bb15be020b65829cd43bc21c1fc1c1c5d70c6e61e32676b3ab37505a2ea20e Description: Documentation meta-data library (library package) Homepage: http://rarian.freedesktop.org/ Description-md5: bfdcf27559b2270fafaac0133f94d717 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-desktop Package: librasqal3 Priority: optional Section: libs Installed-Size: 498 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: rasqal Version: 0.9.32-1 Depends: libc6 (>= 2.7), libgmp10, libmhash2, libpcre3, libraptor2-0 (>= 2.0.12), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Suggests: rasqal-utils Filename: pool/main/r/rasqal/librasqal3_0.9.32-1_i386.deb Size: 161230 MD5sum: 625c33bce1dc62ff9d731da30016b97e SHA1: eb41dcea684e51694b0dd9bbc61514b39fb60285 SHA256: 421d7421f80a6163dc6a9263f621bfc620bad0d34351e51ebc38879d03056a11 Description: Rasqal RDF query library Multi-Arch: same Homepage: http://librdf.org/rasqal/ Description-md5: 2bb81e38d7099ee8ca034f8f70fd1e01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: librasqal3-dbg Priority: extra Section: debug Installed-Size: 1411 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: rasqal Version: 0.9.32-1 Depends: librasqal3 (= 0.9.32-1) Filename: pool/main/r/rasqal/librasqal3-dbg_0.9.32-1_i386.deb Size: 333056 MD5sum: fac2196043b1f775a8bfe2f74be02ab7 SHA1: 959d852bdeadaa4fa2a49d20dabc4c24c395650e SHA256: b744371e8886df98baee9391f336b393de2f5528907f4bfc86e95704c18083c2 Description: Rasqal RDF Query Library - debugging symbols Homepage: http://librdf.org/rasqal/ Description-md5: e3b184be9480f7d44abc56c675983769 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librasqal3-dev Priority: optional Section: libdevel Installed-Size: 824 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: rasqal Version: 0.9.32-1 Replaces: librasqal2-dev Provides: librasqal-dev Depends: librasqal3 (= 0.9.32-1), libraptor2-dev (>= 2.0.12-2), libgmp-dev Recommends: rasqal-utils Suggests: librasqal3-doc Conflicts: librasqal-dev, librasqal2-dev Filename: pool/main/r/rasqal/librasqal3-dev_0.9.32-1_i386.deb Size: 179580 MD5sum: 1096cdab9e619247d12730a8fb37cd47 SHA1: 1d1a8f8615409115b63cc0f6a0ac408a9d93aeec SHA256: 15cab45e5a4444f3b3da31f81243dd33f0c5e7d89de0c9e7fdc1f213c7cfe368 Description: Rasqal RDF query library development libraries and headers Homepage: http://librdf.org/rasqal/ Description-md5: 00b2e549a7168d4a2cb0d66e0e1d8187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librasqal3-doc Priority: optional Section: doc Installed-Size: 1106 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: all Source: rasqal Version: 0.9.32-1 Depends: lynx | www-browser Filename: pool/main/r/rasqal/librasqal3-doc_0.9.32-1_all.deb Size: 82104 MD5sum: 6130146f89422e5f946d79e8fd291e0c SHA1: 1a5e4cf15f3e76f20ca85dac53e284f902e7148d SHA256: 1ac7fbd1baeb2353672d1eb68f607ed5626fa56d24a561bf7e62f9ae3c2a993e Description: Documentation for the Rasqal RDF Query library Homepage: http://librdf.org/rasqal/ Description-md5: eaab49237db5c73348211dec9b769d1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw-dev Priority: extra Section: libdevel Installed-Size: 1369 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: i386 Source: libraw Version: 0.15.4-1 Depends: libraw9 (= 0.15.4-1), liblcms2-dev Filename: pool/main/libr/libraw/libraw-dev_0.15.4-1_i386.deb Size: 360982 MD5sum: a02d41744849a2a1afa9b3675d3b73d3 SHA1: 3446a145897d5844ee3c2191c3d8a2f051fdfa66 SHA256: 15e20ca3159ba8766a24d77d9bf81125c6fd9ef55fcc3925b240de40a4ebf022 Description: raw image decoder library (development files) Multi-Arch: same Homepage: http://www.libraw.org/ Description-md5: c5d75da67a9fd77fe2f4c9ff9bcc51c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw-doc Priority: optional Section: doc Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: all Source: libraw Version: 0.15.4-1 Filename: pool/main/libr/libraw/libraw-doc_0.15.4-1_all.deb Size: 98502 MD5sum: 00e3005cd29668e6bb524aa317f6e763 SHA1: 99fe8cacd93eb41dfb0b96f804f1f01c42e9196c SHA256: 5249f22230e3aefc610cff8ea1921a7391b62845fc0a6d39df70a3044c98368c Description: raw image decoder library (documentation) Multi-Arch: foreign Homepage: http://www.libraw.org/ Description-md5: 40ee49077e6079579c20f569ac791566 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw1394-11 Priority: optional Section: libs Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: i386 Source: libraw1394 Version: 2.1.0-1ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Suggests: libraw1394-doc Filename: pool/main/libr/libraw1394/libraw1394-11_2.1.0-1ubuntu1_i386.deb Size: 32354 MD5sum: d5a744202ba0fd8e4fea14b3e63048ca SHA1: 34dcfd608adbc7e1ff46ff4cf9a23c8d46d3802c SHA256: 18450dbf57e8017c6b06a132cb6939599fcd01f8a624de0f4159a72da2691a26 Description: library for direct access to IEEE 1394 bus (aka FireWire) Multi-Arch: same Homepage: https://ieee1394.wiki.kernel.org/ Description-md5: 949bee021305068625569148281aa75b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libraw1394-11-dbg Priority: extra Section: debug Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: i386 Source: libraw1394 Version: 2.1.0-1ubuntu1 Depends: libraw1394-11 (= 2.1.0-1ubuntu1) Suggests: libraw1394-doc Filename: pool/main/libr/libraw1394/libraw1394-11-dbg_2.1.0-1ubuntu1_i386.deb Size: 81060 MD5sum: 7e0314f552c0be3f19710088aa0719f3 SHA1: 1e9841060de49a2585d0b7603cde3929979a6671 SHA256: 666aab19f0489a3dc98e4cbeff78135653f4c3eb2aa12c175117ff185bae597c Description: debugging symbols for libraw1394-11 Multi-Arch: same Homepage: https://ieee1394.wiki.kernel.org/ Description-md5: 05044fa2f3a168d45b7c5600766070ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw1394-dev Priority: optional Section: libdevel Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: i386 Source: libraw1394 Version: 2.1.0-1ubuntu1 Depends: libraw1394-11 (= 2.1.0-1ubuntu1) Recommends: libraw1394-tools Suggests: libraw1394-doc Filename: pool/main/libr/libraw1394/libraw1394-dev_2.1.0-1ubuntu1_i386.deb Size: 35772 MD5sum: 6cc60b37bfaec17c82c03b9b7f4cbdfa SHA1: 8efe300947f39545efdf1a519e409324da090ff0 SHA256: 18a3230cf79da814ea2a4f0cad02b5b4c7c1fa31c3f24cd5d3004561adc4e1cb Description: library for direct access to IEEE 1394 bus - development files Multi-Arch: same Homepage: https://ieee1394.wiki.kernel.org/ Description-md5: f6a919599bffb3e787a1082f7b77d318 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw1394-doc Priority: optional Section: doc Installed-Size: 626 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: all Source: libraw1394 Version: 2.1.0-1ubuntu1 Filename: pool/main/libr/libraw1394/libraw1394-doc_2.1.0-1ubuntu1_all.deb Size: 319750 MD5sum: 128fb66fae8a20752bda256c7c4d872b SHA1: 7d573396844c43b194211e8110354523e1263c1d SHA256: 8ce808e5e88420b7022d1fd3ddf251cb0e878a5f8afc37bcfd1145b38a584031 Description: Reference manual and documentation about libraw1394 Homepage: https://ieee1394.wiki.kernel.org/ Description-md5: a23c950d3d34a5728ec5ad9d8d2433d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw1394-tools Priority: optional Section: utils Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Guus Sliepen Architecture: i386 Source: libraw1394 Version: 2.1.0-1ubuntu1 Replaces: libraw1394-dev (<= 2.0.7-1ubuntu1) Depends: libraw1394-11 (= 2.1.0-1ubuntu1), libc6 (>= 2.4) Suggests: libraw1394-doc Breaks: libraw1394-dev (<= 2.0.7-1ubuntu1) Filename: pool/main/libr/libraw1394/libraw1394-tools_2.1.0-1ubuntu1_i386.deb Size: 15874 MD5sum: e00249c1e45e2a895bca3c0393c8950c SHA1: 10b39e6d3e5bb1bf664bccbef7177f140311a8fe SHA256: 7bb21d702c6bbd0e005291d3891de2fff09ff2d53e48145354fcd6c7f9280da3 Description: library for direct access to IEEE 1394 bus (aka FireWire) Multi-Arch: foreign Homepage: https://ieee1394.wiki.kernel.org/ Description-md5: 37acd10ddc8cc0179de11218ed797e1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libraw9 Priority: optional Section: libs Installed-Size: 1231 Maintainer: Ubuntu Developers Original-Maintainer: Debian Shotwell Maintainers Architecture: i386 Source: libraw Version: 0.15.4-1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgomp1 (>= 4.2.1), libjasper1, libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libstdc++6 (>= 4.4.0) Pre-Depends: multiarch-support Filename: pool/main/libr/libraw/libraw9_0.15.4-1_i386.deb Size: 340788 MD5sum: fc515f18c24bc4abe0fa491891e24d2e SHA1: fba216fea651bf27d476b4a4f24e66efe63db18d SHA256: d3bc559ab05ab25aff75fdef3aca9277095d0bc6ec4cb490dda9cda6121410de Description: raw image decoder library Multi-Arch: same Homepage: http://www.libraw.org/ Description-md5: 436cf471e5e66b160c9d836328eeba54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: librbd-dev Priority: optional Section: libdevel Installed-Size: 39322 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Replaces: librbd1-dev Depends: librados-dev, librbd1 (= 0.79-0ubuntu1) Conflicts: librbd1-dev Filename: pool/main/c/ceph/librbd-dev_0.79-0ubuntu1_i386.deb Size: 6387352 MD5sum: a765eab57921717ce8bb2206f0b4a5f5 SHA1: e9151967ca1dad997abdf200a552d44966c918f6 SHA256: f1924b9759a052960f634a801c392af9b30e24c6a6330d18a95ffec24da937d5 Description: RADOS block device client library (development files) Homepage: http://ceph.com/ Description-md5: 5a3f9d05f90eae572a3f0c323daf1cab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librbd1 Priority: optional Section: libs Installed-Size: 1083 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Depends: librados2 (= 0.79-0ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Filename: pool/main/c/ceph/librbd1_0.79-0ubuntu1_i386.deb Size: 329456 MD5sum: d3338f8f09496be5a78129804f14ed41 SHA1: 48e6f03dbec8be0bf491cefb54b63cdb46a273cb SHA256: bdb869f1bd79b6a779c0e2918678059d0d053ff7f51cdd3e7708a60dd88330df Description: RADOS block device client library Homepage: http://ceph.com/ Description-md5: 3b39955e1c12f7ad8d4c44efcc8ec188 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: librbd1-dbg Priority: extra Section: debug Installed-Size: 6272 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Depends: librbd1 (= 0.79-0ubuntu1) Filename: pool/main/c/ceph/librbd1-dbg_0.79-0ubuntu1_i386.deb Size: 6303522 MD5sum: 24599792d2e1d5ba47783e29e2851733 SHA1: 14a7200a47e7604de2704666a9b85beabcd095bb SHA256: 321f9bf024f1eca827b7591686a92bb87049ac6355ef7c5d9dc0817efdcab1d7 Description: debugging symbols for librbd1 Homepage: http://ceph.com/ Description-md5: 0479c6b8befcd3b46093c4fdfaef7ca4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librdf0 Priority: optional Section: libs Installed-Size: 309 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: redland Version: 1.0.17-1 Depends: libc6 (>= 2.4), libdb5.3, libltdl7 (>= 2.4.2), libraptor2-0 (>= 2.0.12), librasqal3 (>= 0.9.31) Pre-Depends: multiarch-support Suggests: librdf-storage-postgresql, librdf-storage-mysql, librdf-storage-sqlite, librdf-storage-virtuoso, redland-utils Filename: pool/main/r/redland/librdf0_1.0.17-1_i386.deb Size: 94914 MD5sum: 150436d6d4d09c1216e1513954365ba9 SHA1: f4f08b5baa84300d8ff9e7873370eb04298ffe51 SHA256: 4bb9b2b2d333511db3f20b8ae5f47732e46401b5f16f9ae387ca91151a823164 Description: Redland Resource Description Framework (RDF) library Multi-Arch: same Homepage: http://librdf.org/ Description-md5: 8df36c881ba51cb293c533fb7cfa9486 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: librdf0-dev Priority: optional Section: libdevel Installed-Size: 2031 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: redland Version: 1.0.17-1 Provides: librdf-dev Depends: librdf0 (= 1.0.17-1), libraptor2-dev (>= 2.0.10), librasqal3-dev (>= 0.9.30) Recommends: redland-utils Suggests: librdf-perl, python-librdf, librdf-ruby Conflicts: librdf-dev Filename: pool/main/r/redland/librdf0-dev_1.0.17-1_i386.deb Size: 211394 MD5sum: 0caa2afe329cebfeae2cbc69917a6ef1 SHA1: e8ffc63e15bc18df05e4d8bb1f0f6448b45aa25b SHA256: 928b59b50c2c28b4f4cb19e77aae327a321a538ffcf9da28526d169a8831c127 Description: Redland RDF library development libraries and headers Homepage: http://librdf.org/ Description-md5: 14505384499a79491ef37cbc367fe9a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librdmacm-dev Priority: extra Section: libdevel Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: i386 Source: librdmacm Version: 1.0.16-1 Depends: librdmacm1 (= 1.0.16-1) Filename: pool/main/libr/librdmacm/librdmacm-dev_1.0.16-1_i386.deb Size: 84838 MD5sum: efe8dcf390f8bb96b456f4236e8e4172 SHA1: 73610d7db7c1cb76e64221153b94cd50d2a5a2ad SHA256: 3c7dec9f37e5f2bfcd4a39857dc050bbe35a657560f8ec0ff1b8ecba10d520cd Description: Development files for the librdmacm library Homepage: http://www.openfabrics.org/ Description-md5: 5e352046b21eae95a9649ec4cb92a54e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librdmacm1 Priority: extra Section: libs Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: i386 Source: librdmacm Version: 1.0.16-1 Depends: libc6 (>= 2.15), libibverbs1 (>= 1.1.2) Pre-Depends: multiarch-support Filename: pool/main/libr/librdmacm/librdmacm1_1.0.16-1_i386.deb Size: 37830 MD5sum: 3db0715c4740ea6ed2653b35d6134fca SHA1: 58a92eb56c13b9c20407e2598aae01af276a8dbe SHA256: 361844fdb82d70be8a9955a21ecc758a717ff94e5fd1a99fce946db4f1a6edcf Description: Library for managing RDMA connections Homepage: http://www.openfabrics.org/ Description-md5: dc9d0886ecf59fc604b978f8125cf804 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librdmacm1-dbg Priority: extra Section: libdevel Installed-Size: 393 Maintainer: Ubuntu Developers Original-Maintainer: Roland Dreier Architecture: i386 Source: librdmacm Version: 1.0.16-1 Depends: librdmacm1 (= 1.0.16-1) Filename: pool/main/libr/librdmacm/librdmacm1-dbg_1.0.16-1_i386.deb Size: 261506 MD5sum: b77d1ebb835dc3be452dadf06ce0401e SHA1: 39fb14fa89fa3a6d17b7334880fd0b9c969d60c5 SHA256: 1662f05ad92b2231ac17b020f0aa437005b7ad1ac3c13b3cc3f9e530ecfc2497 Description: Debugging symbols for the librdmacm library Homepage: http://www.openfabrics.org/ Description-md5: 9ee13bd3b19544b139d1acbdbc88798e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadline-dev Priority: optional Section: libdevel Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: readline6 Version: 6.3-4ubuntu2 Depends: libreadline6-dev (= 6.3-4ubuntu2) Conflicts: libreadline-gplv2-dev Filename: pool/main/r/readline6/libreadline-dev_6.3-4ubuntu2_i386.deb Size: 988 MD5sum: f23ea22201c5e72d9b51424b6cb08f56 SHA1: dc18edf109af9128fd9b145174cf811c825fca19 SHA256: 1680c4e8f213b126d1c93fea3f09915866b18121620243e58d4ec978d02efaca Description: GNU readline and history libraries, development files Multi-Arch: same Description-md5: 3502d626cf8e22133354357eb1e0631f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadline-gplv2-dev Priority: extra Section: libdevel Installed-Size: 504 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: readline5 Version: 5.2+dfsg-2 Replaces: libreadline5-dev Depends: libreadline5 (= 5.2+dfsg-2), libtinfo-dev, dpkg (>= 1.15.4) | install-info Conflicts: libreadline-dev, libreadline5-dev, libreadline6-dev Filename: pool/main/r/readline5/libreadline-gplv2-dev_5.2+dfsg-2_i386.deb Size: 164888 MD5sum: d3a4660ea00afec0f6d46f892aa0f337 SHA1: 1456826cede7e0a07905157f8e803b65756555a8 SHA256: c42829b701e5a829fd6cedce7fc25c2bd6dc912ea9d18b55d838af4966ccfa5a Description: GNU readline and history libraries, development files Multi-Arch: same Description-md5: 786f654ffd88ea529a702d7fd1429e0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadline5 Priority: optional Section: libs Installed-Size: 323 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: readline5 Version: 5.2+dfsg-2 Depends: readline-common, libc6 (>= 2.15), libtinfo5 Pre-Depends: multiarch-support Filename: pool/main/r/readline5/libreadline5_5.2+dfsg-2_i386.deb Size: 124178 MD5sum: 62a10c3468b70729dd67345467b5da67 SHA1: 4abd318863a03ef1f7d84b178bb98e9c3cb15e91 SHA256: e1c49abece9e26f331984325fb4010fa2857808d82e3f7b190c395a716deb437 Description: GNU readline and history libraries, run-time libraries Multi-Arch: same Description-md5: 02109af5819248ca867891090079f329 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-live, ubuntu-usb, server, kubuntu-desktop, kubuntu-live, kubuntu-active, kubuntu-active-desktop, kubuntu-active-live, kubuntu-active, edubuntu-desktop, edubuntu-dvd-live, edubuntu-usb, xubuntu-desktop, xubuntu-live, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntustudio-dvd-live, ubuntu-gnome-desktop, ubuntu-gnome-live Package: libreadline5-dbg Priority: extra Section: libdevel Installed-Size: 738 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: readline5 Version: 5.2+dfsg-2 Provides: libreadline-dbg Depends: libreadline5 (= 5.2+dfsg-2), libc6 (>= 2.15), libtinfo5 Suggests: libreadline-gplv2-dev Conflicts: libreadline-dbg Filename: pool/main/r/readline5/libreadline5-dbg_5.2+dfsg-2_i386.deb Size: 316618 MD5sum: 786f75dd91641e138eb75316288d0c70 SHA1: 13397debf2214e81b65331ddc8aa84186204bd4d SHA256: 9498e378d2e18a0400671adf30e1355aa52ddb2f0eadf95d137e5c6832931b2a Description: GNU readline and history libraries, debugging libraries Description-md5: f10032a711167543f997c2cb1de91ac4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadline6 Priority: important Section: libs Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: readline6 Version: 6.3-4ubuntu2 Depends: readline-common, libc6 (>= 2.15), libtinfo5 Pre-Depends: multiarch-support Filename: pool/main/r/readline6/libreadline6_6.3-4ubuntu2_i386.deb Size: 110582 MD5sum: 05323357aed0b565b28ffb93e4aaaed5 SHA1: fca688ff01f181c6b13beabd8470819704b1e20a SHA256: 85603c15e71ab74f8367cb1bc0dd0d19b82e0454eea128c225b8d1c4dafa9db7 Description: GNU readline and history libraries, run-time libraries Multi-Arch: same Description-md5: 02109af5819248ca867891090079f329 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: libreadline6-dbg Priority: extra Section: libdevel Installed-Size: 2627 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: readline6 Version: 6.3-4ubuntu2 Provides: libreadline-dbg Depends: libreadline6 (= 6.3-4ubuntu2), libc6 (>= 2.15), libtinfo5 Suggests: libreadline6-dev Conflicts: libreadline-dbg Filename: pool/main/r/readline6/libreadline6-dbg_6.3-4ubuntu2_i386.deb Size: 545656 MD5sum: 22724892ebf92f0aeaf7aecd3f30b6a1 SHA1: aaa0531d8cd7f4ef0769a5538ee166105539d3b3 SHA256: 9152e909a6100ec123c277e7157d4fdf8cbc5b3a2ffac121a2813b8ba088a894 Description: GNU readline and history libraries, debugging libraries Description-md5: f10032a711167543f997c2cb1de91ac4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadline6-dev Priority: optional Section: libdevel Installed-Size: 643 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: readline6 Version: 6.3-4ubuntu2 Depends: libreadline6 (= 6.3-4ubuntu2), libtinfo-dev, dpkg (>= 1.15.4) | install-info Conflicts: libreadline-gplv2-dev, libreadline5-dev Filename: pool/main/r/readline6/libreadline6-dev_6.3-4ubuntu2_i386.deb Size: 207260 MD5sum: ee809ad4fd55d18a249ce81c21e9f10b SHA1: 920debca9f417174b8808ade5201f1f71a6fb1e0 SHA256: efe7df67619e0624c79466d289b02e6a4054b9571dcf7888cf15be41a0fbe494 Description: GNU readline and history libraries, development files Multi-Arch: same Description-md5: 729d7fc5adc58ece21627d452b1c63fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadonly-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.04-1 Depends: perl Recommends: libreadonly-xs-perl (>= 1.05) Filename: pool/main/libr/libreadonly-perl/libreadonly-perl_1.04-1_all.deb Size: 16642 MD5sum: 5fe1cd6ad8a1de527a5f65c5f83fc31e SHA1: bcbd3ee86df1104095ea278ba0b8c7673b66b340 SHA256: 5649fbcb888bbee1d38b4c52e955aaa05a4366e7157630519ebdc616ab9c6c29 Description: facility for creating read-only scalars, arrays and hashes Homepage: https://metacpan.org/release/Readonly/ Description-md5: b7b346189e6c11c18015c43e895af85e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreadonly-xs-perl Priority: optional Section: perl Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.05-1 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.1.3) Recommends: libreadonly-perl Filename: pool/main/libr/libreadonly-xs-perl/libreadonly-xs-perl_1.05-1_i386.deb Size: 9854 MD5sum: 7a7c3938876057484c8dca8c74c44102 SHA1: 4a711469413b450eb6f2081049f95c75f39feb1f SHA256: d860973f53ce38d5c973c65ffd8d9b624736b5f5ad9e0b88a01de88dd2d97c46 Description: faster Readonly implementation Homepage: https://metacpan.org/release/Readonly-XS/ Description-md5: a248387b6edf9b1e3294d8e2e3f43945 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librecode-dev Priority: optional Section: libdevel Installed-Size: 1484 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Source: recode Version: 3.6-21 Depends: librecode0 (= 3.6-21) Filename: pool/main/r/recode/librecode-dev_3.6-21_i386.deb Size: 753122 MD5sum: 2a0ceee1b12fdaee95723c3007a4a734 SHA1: 7f642a6cf99fd69ccec9c0e17268a77b49cf5a76 SHA256: 6734bc9d3d73127871995e95559d948a7a1844a4b35bb6f4697d7ec74f1a5d83 Description: Development package for librecode0 Description-md5: 0bb977648f71d2bfc680b9a744c51f58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librecode0 Priority: optional Section: libs Installed-Size: 1315 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Source: recode Version: 3.6-21 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/r/recode/librecode0_3.6-21_i386.deb Size: 705278 MD5sum: 4adb4ad2f5895e7cb755f2b84c9af095 SHA1: 84e8f6fdaa8a26f95d20af14818fd189fb8515de SHA256: 04441d0106f32c762c973c72a4eb4e9df83fba6e6bed4fe44f209ee24e74e6b0 Description: Shared library on which recode is based Multi-Arch: same Description-md5: ab6feef275a02f91ce5607b3b2d9d7e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libref-array-dev Priority: extra Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Depends: libref-array1 (= 0.3.0.1-4) Filename: pool/main/d/ding-libs/libref-array-dev_0.3.0.1-4_i386.deb Size: 7272 MD5sum: c73c41245045bc2d975464ccf2587ba6 SHA1: 303eb6ff97d8ea6a3af9e30f29d2b4bbd58ed45e SHA256: 1c7198aec1b90b45ca44f4ca576d07a3199250d5d13fc318d735dea7b5cb41e6 Description: Development files for refcounted array for C Homepage: https://fedorahosted.org/sssd/ Description-md5: fcdbe3361423448079893230e54b561d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libref-array1 Priority: extra Section: libs Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: ding-libs Version: 0.3.0.1-4 Replaces: libref-array Provides: libref-array Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Conflicts: libref-array Filename: pool/main/d/ding-libs/libref-array1_0.3.0.1-4_i386.deb Size: 7044 MD5sum: 8f933f7558d114ed4391bf07aaa1fb73 SHA1: b1cac68711b6dfb4206831c2de3df7855b335c96 SHA256: e660448b85f2cc599398f47174846d87ef4f82c5f194b306eebbb47a6778ac9b Description: refcounted array for C Multi-Arch: same Homepage: https://fedorahosted.org/sssd/ Description-md5: 3fbe4c38877a2ec50e3e6b1b5cc1678a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libregexp-common-perl Priority: optional Section: perl Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2013031301-1 Depends: perl Filename: pool/main/libr/libregexp-common-perl/libregexp-common-perl_2013031301-1_all.deb Size: 167072 MD5sum: 1dc6444748e8a74b89a59f0c42318bc3 SHA1: 17034d13556d1592ec5f71f96c3f31d66074e105 SHA256: f4c30e9b054f7723fe2f5618c0dc606c54995514ac5adc73d42316b45d8207cf Description: module with common regular expressions Homepage: https://metacpan.org/release/Regexp-Common/ Description-md5: 3db997253657fa3b02465e8a8eb32b43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libregexp-java Priority: optional Section: libs Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.5-3build1 Filename: pool/main/libr/libregexp-java/libregexp-java_1.5-3build1_all.deb Size: 35146 MD5sum: 393a81fad9431954e49ba2e2af242038 SHA1: 7df117328d90194e4b3f02a6e1ad9084eab619ea SHA256: 3fcc9d2914efd5b63d3564b2673bfd3974d71afb974e559b6b6ab42c2d5e00d5 Description: Regular expression library for Java Homepage: http://jakarta.apache.org/regexp/ Description-md5: b1141233204ba0843794bf8c71c5504d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libregexp-java-doc Priority: optional Section: java Installed-Size: 687 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libregexp-java Version: 1.5-3build1 Filename: pool/main/libr/libregexp-java/libregexp-java-doc_1.5-3build1_all.deb Size: 75608 MD5sum: 013341ed29bfe406aa3a786c5b2ac37a SHA1: da1f2ef428ca6e8d33f525525412b55d74f91312 SHA256: a9fe6f1ad5311ce378cee7954e90a34f6745d947e6d3b155bdcade186eed8d34 Description: Documentation for the Regular expression library Homepage: http://jakarta.apache.org/regexp/ Description-md5: 9139de802e5cd5b0dd71ef1b82eff7ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreiser4-dev Priority: optional Section: libdevel Installed-Size: 911 Maintainer: Ubuntu Developers Original-Maintainer: Felix Zielcke Architecture: i386 Source: reiser4progs Version: 1.0.7-6.3fakesync2 Depends: libc6-dev | libc-dev, libaal-dev (>= 1.0.4-1), uuid-dev, libreadline-gplv2-dev, libncurses5-dev Filename: pool/main/r/reiser4progs/libreiser4-dev_1.0.7-6.3fakesync2_i386.deb Size: 278408 MD5sum: 65b592018fe98a95265bd7531a68207f SHA1: 485b5bb0f60d9f4f1a7c2b75f966c7ae764084ef SHA256: 2611dcb46f4bfa26c1e3c531e5fe55153d7d111b662806de2fa4f26f282e69ed Description: Reiser4's filesystem access and manipulation library Description-md5: 93fbf18208c9735e13c1454ac47cdba1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librelp-dev Priority: optional Section: libdevel Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: i386 Source: librelp Version: 1.2.2-2ubuntu1 Depends: librelp0 (= 1.2.2-2ubuntu1) Filename: pool/main/libr/librelp/librelp-dev_1.2.2-2ubuntu1_i386.deb Size: 36880 MD5sum: 2db4a3f8214e59e71cffb91785da1257 SHA1: 06cb2812a9352b43d22a2b02fbfc8a952270f7bf SHA256: 5058f9010c918095d37c73f35e5f3d5614a1170ad1524a33b6b38d5ecbc1102b Description: Reliable Event Logging Protocol (RELP) library - development files Multi-Arch: same Homepage: http://www.librelp.com/ Description-md5: 42c1d0b6aeb68e5586482de4937a9e25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librelp0 Priority: optional Section: libs Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: i386 Source: librelp Version: 1.2.2-2ubuntu1 Depends: libc6 (>= 2.17), libgnutls26 (>= 2.12.17-0) Pre-Depends: multiarch-support Filename: pool/main/libr/librelp/librelp0_1.2.2-2ubuntu1_i386.deb Size: 29170 MD5sum: 59aa1dd5baf283fc4114a16d98b9406e SHA1: a9f3deccf0dcbb885e32273f51bcb724da597432 SHA256: de559b10691a1293ecb99e07c84bd7ade55777e300bcd3d18534f69641a9e65d Description: Reliable Event Logging Protocol (RELP) library Multi-Arch: same Homepage: http://www.librelp.com/ Description-md5: e173389330cd3d94c1a9439e2181decf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-avmedia-backend-gstreamer Priority: optional Section: misc Installed-Size: 222 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-core (<< 1:4.2~) Provides: libreoffice-avmedia-backend Depends: libreoffice-core, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.15.0), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libstdc++6 (>= 4.1.1), uno-libs3 (>= 4.0.0~alpha), ure Filename: pool/main/libr/libreoffice/libreoffice-avmedia-backend-gstreamer_4.2.3~rc3-0ubuntu2_i386.deb Size: 36298 MD5sum: 1eeb17983653707e344989a28cbfe60c SHA1: eb3ec2335a5b6b4ee3826a98670836f9e9cd74ba SHA256: e827c4949b7b73b6cd9993bb1a4d0ccfc9c7af3f2bbe4d976167e6e2f3e38f01 Description: GStreamer backend for LibreOffice Homepage: http://www.libreoffice.org Description-md5: 00acf24d5e6556c99a72938a8431d5d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-base Priority: optional Section: database Installed-Size: 5192 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-base-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-base-drivers (= 1:4.2.3~rc3-0ubuntu2), libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure Recommends: libreoffice-writer, libreoffice-java-common (>= 1:4.2.3~rc3~), default-jre | gcj-jre | openjdk-7-jre | openjdk-6-jre | sun-java5-jre | sun-java6-jre | java5-runtime | jre Suggests: libreoffice-gcj, libreoffice-report-builder, unixodbc Filename: pool/main/libr/libreoffice/libreoffice-base_4.2.3~rc3-0ubuntu2_i386.deb Size: 1400274 MD5sum: 78db3d92c9b2712a61bc3f9316463fc8 SHA1: ed6580930a6b94398ebc4e347dcbb5d4158acf93 SHA256: ba93219e9c2a60c42f2de0cb2f14f8de91e2c532cd95a306e7156a77d3a57cea Description: office productivity suite -- database Homepage: http://www.libreoffice.org Description-md5: 5529fff5c628ca6b70284749063daea4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libreoffice-base-core Priority: optional Section: editors Installed-Size: 2680 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-base (<< 1:3.5.3~rc2-1) Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure Suggests: libreoffice-base Filename: pool/main/libr/libreoffice/libreoffice-base-core_4.2.3~rc3-0ubuntu2_i386.deb Size: 698876 MD5sum: 95a68b054f08d10e1e1ea1ac035fbebd SHA1: 8e28a7bedfcbd7aba51c52864e3aa73f38740099 SHA256: 12060bfbccb0a1391235dbe9d7685feeaf0f68e002bdfe81c60874ae617fd96e Description: office productivity suite -- shared library Homepage: http://www.libreoffice.org Description-md5: bdc77adc4efdbfc7ebc7ed765e9d40cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-base-drivers Priority: optional Section: database Installed-Size: 2417 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-base (<< 1:4.2~), libreoffice-core (<< 1:4.2~) Depends: libreoffice-core, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure Recommends: libreoffice-sdbc-firebird, libreoffice-sdbc-hsqldb Suggests: libjtds-java, libreoffice-mysql-connector | libmyodbc | libmysql-java, libreoffice-sdbc-postgresql | odbc-postgresql | libpg-java, libsqliteodbc | tdsodbc | mdbtools Filename: pool/main/libr/libreoffice/libreoffice-base-drivers_4.2.3~rc3-0ubuntu2_i386.deb Size: 508498 MD5sum: a1a7bcb084b14124347ead6581faecee SHA1: fbf411a8c0d34fc5a4e576cab34e06aedb59a551 SHA256: ecf2c7910568976fc40291903a4ad1f34dda2196b9f02931b3f2dd42a056a2a0 Description: Database connectvity drivers for LibreOffice Homepage: http://www.libreoffice.org Description-md5: eb144ed96acddec2ee979a372e584563 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libreoffice-calc Priority: optional Section: editors Installed-Size: 20623 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-base-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), liborcus-0.6-0, libstdc++6 (>= 4.6), libxml2 (>= 2.7.4), uno-libs3 (>= 4.2.0~rc1), ure Suggests: libopencl1 Filename: pool/main/libr/libreoffice/libreoffice-calc_4.2.3~rc3-0ubuntu2_i386.deb Size: 5785306 MD5sum: 533d8e4ffcbe7d26157447b3d1cc4d2a SHA1: a490e633b3453c0d0850204bf9d8864affa8493b SHA256: e0728f7cf8fbd430bde2b9375c790b2bbdf1a068fc571381533565d6a202e63d Description: office productivity suite -- spreadsheet Homepage: http://www.libreoffice.org Description-md5: e809bbd7f91acfd0d9ad0f8fd5ed86a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-common Priority: optional Section: editors Installed-Size: 74016 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-emailmerge (<< 1:4.0.2~rc1), openoffice.org-common (<< 1:3.3.0~) Provides: libreoffice-l10n-en-us Depends: libreoffice-style-default | libreoffice-style, ure Pre-Depends: dpkg (>= 1.15.7.2~) Recommends: xfonts-mathml, python3-uno (>= 4.0~), libexttextcat-data Suggests: libreoffice-style-crystal, libreoffice-style-hicontrast, libreoffice-style-human, libreoffice-style-oxygen, libreoffice-style-sifr, libreoffice-style-tango Conflicts: broffice, libreoffice-filter-mobiledev, libreoffice-l10n-3.5, libreoffice-l10n-3.6 Breaks: libreoffice-core (>= 1:4.3~), libreoffice-core (<< 1:4.2~), libreoffice-emailmerge (<< 1:4.0.2~rc1), libreoffice-mysql-connector (<< 1.0.1+LibO3.6.5-1), libreoffice-pdfimport (<< 1.0.6), libreoffice-presentation-minimizer (<< 1.0.4), libreoffice-presenter-console (<< 1.1.1), libreoffice-report-builder (<< 1.2.3), libreoffice-script-provider-bsh (<< 1:3.6~), libreoffice-script-provider-js (<< 1:3.6~), libreoffice-script-provider-python (<< 1:3.6~), libreoffice-style-andromeda (<< 1:4.2~), libreoffice-style-crystal (>= 1:4.3~), libreoffice-style-crystal (<< 1:4.2~), libreoffice-style-galaxy (>= 1:4.3~), libreoffice-style-galaxy (<< 1:4.2~), libreoffice-style-hicontrast (>= 1:4.3~), libreoffice-style-hicontrast (<< 1:4.2~), libreoffice-style-human (>= 1:4.3~), libreoffice-style-human (<< 1:4.2~), libreoffice-style-oxygen (>= 1:4.3~), libreoffice-style-oxygen (<< 1:4.2~), libreoffice-style-tango (>= 1:4.3~), libreoffice-style-tango (<< 1:4.2~), libreoffice-wiki-publisher (<< 1.1.2), libreoffice-writer2latex (<< 1.0.2-9), libreoffice-writer2xhtml (<< 1.0.2-9), libtextcat-data (<< 2.2-8), openoffice.org-common (<< 1:3.3.0~), zotero-libreoffice-integration (<= 3.0.11.1-26-g08fb709-1) Filename: pool/main/libr/libreoffice/libreoffice-common_4.2.3~rc3-0ubuntu2_all.deb Size: 19683192 MD5sum: a2a0c5682afae2f30736f025a290f995 SHA1: 85fbdb92c3c282e07170478e6014b30004caf027 SHA256: 021935ccaa6a1e742acdc06ed566db147a0513bc15315ca27f7b5e58e5534bb5 Description: office productivity suite -- arch-independent files Homepage: http://www.libreoffice.org Description-md5: 304f06193ef91a740410572ff1db7174 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-core Priority: optional Section: editors Installed-Size: 103828 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-calc (<< 1:3.3.2-5), libreoffice-common (<= 1:4.0.0~beta2-1), uno-libs3 (<< 1:3.6.1-2), ure (<< 1:3.6.1-2) Provides: libreoffice-bundled Depends: fontconfig, fonts-opensymbol, libreoffice-common (>> 1:4.2.3~rc3), ure (>= 4.2~), lp-solve (>= 5.5.0.13-5+b1), gconf-service, libatk1.0-0 (>= 1.12.4), libboost-date-time1.54.0, libc6 (>= 2.16), libcairo2 (>= 1.2.4), libclucene-contribs1 (>= 2.3.3.4), libclucene-core1 (>= 2.3.3.4), libcmis-0.4-4 (>= 0.4.0), libcups2 (>= 1.4.0), libcurl3-gnutls (>= 7.16.2), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libexpat1 (>= 2.0.1), libexttextcat-2.0-0 (>= 2.2-8), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.5), libgcc1 (>= 1:4.1.1), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.15.0), libglu1-mesa | libglu1, libgraphite2-3 (>= 1.2.2), libgtk2.0-0 (>= 2.24.0), libharfbuzz-icu0 (>= 0.9.18), libharfbuzz0b (>= 0.9.18), libhunspell-1.3-0, libhyphen0 (>= 2.7.1), libice6 (>= 1:1.0.0), libicu52 (>= 52~m1-1~), libjpeg8 (>= 8c), liblangtag1 (>= 0.4.0), liblcms2-2 (>= 2.2+git20110628), libldap-2.4-2 (>= 2.4.7), libmythes-1.2-0, libneon27-gnutls, libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpangoft2-1.0-0 (>= 1.14.0), libpng12-0 (>= 1.2.13-4), libsm6, libstdc++6 (>= 4.6), libx11-6, libxext6, libxinerama1, libxml2 (>= 2.7.4), libxrandr2, libxrender1, libxslt1.1 (>= 1.1.25), libxt6, uno-libs3 (>= 4.2.0~rc1), zlib1g (>= 1:1.1.4), librdf0 (>= 1.0.17) Conflicts: cacao-oj6-jre, libreoffice-filter-binfilter, libreoffice-unbundled Breaks: cli-uno-bridge (<< 1:3.0.0~dev300m22), hunspell-ar (<< 0.0.0+20080110-1.1), hunspell-da (<< 1:3.1.0-3), hunspell-de-at (<< 20071211-2), hunspell-de-ch (<< 20071211-2), hunspell-de-de (<< 20071211-2), hunspell-de-med (<< 20090825-1), hunspell-en-ca (<< 1:3.1.0-3), hunspell-en-us (<< 20070829-3), hunspell-fr (<< 1:3.1.0-3), hunspell-gl-es (<< 2.2a-6), hunspell-hu (<< 1:3.1.0-3), hunspell-ko (<< 0.3.3-1), hunspell-ne (<< 1:3.1.0-3), hunspell-se (<< 1.0~beta6.20081222-1.1), hunspell-sh (<< 1:3.1.0-3), hunspell-sr (<< 1:3.1.0-3), hunspell-uz (<< 0.6-3.1), hunspell-vi (<< 1:3.1.0-3), libcairo2 (= 1.4.8-1), libicu38 (= 3.8~d01-1), libreoffice-base (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-calc (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-common (<< 1:3.6.1~rc1), libreoffice-dev (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-draw (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-evolution (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-gnome (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-gtk (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-impress (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-kab (<< 1:3.4.1~), libreoffice-kde (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-officebean (<< 1:4.2.3~rc3-0ubuntu2), libreoffice-presentation-minimizer (<< 1:4.2~), libreoffice-sdbc-postgresql (<< 0.8.1~), libreoffice-style-andromeda (<< 1:3.3.0-1), libreoffice-style-crystal (<< 1:3.3.0-1), libreoffice-style-galaxy (<< 1:3.3.0-1), libreoffice-style-hicontrast (<< 1:3.3.0-1), libreoffice-style-oxygen (<< 1:3.3.0-1), libreoffice-style-tango (<< 1:3.3.0-1), libreoffice-writer (<< 1:4.2.3~rc3-0ubuntu2), mozilla-libreoffice (<< 1:3.5.0~beta~), mozilla-plugin-vlc (<< 1.0), myspell-af (<< 1:3.1.0-3), myspell-ca (<< 0.6-8), myspell-cs-cz (<< 20040229-4.1), myspell-da (<< 1.6.18-1.1), myspell-de-at (<< 20071211-2), myspell-de-ch (<< 20071211-2), myspell-de-de (<< 20071211-2), myspell-de-de-oldspell (<< 1:2-25.1), myspell-el-gr (<< 0.3-1.1), myspell-en-au (<< 2.1-5), myspell-en-gb (<< 1:3.1.0-3), myspell-en-us (<< 1:3.1.0-3), myspell-en-za (<< 1:3.1.0-3), myspell-eo (<< 2.1.2000.02.25-41), myspell-es (<< 1.10-7), myspell-et (<< 1:20030606-12.1), myspell-fa (<< 0.20070816-2), myspell-fi (<< 0.7-17.2), myspell-fo (<< 0.2.36-3), myspell-fr (<< 1.4-25), myspell-fr-gut (<< 1:1.0-26.1), myspell-ga (<< 2.0-19), myspell-gd (<< 0.50-7), myspell-gv (<< 0.50-8), myspell-hr (<< 20060617-2), myspell-hu (<< 0.99.4-1.2), myspell-hy (<< 0.10.1-1.1), myspell-it (<< 1:3.1.0-3), myspell-ku (<< 0.20.0-1.1), myspell-lv (<< 0.7.3-3.1), myspell-nb (<< 2.0.10-3.1), myspell-ne (<< 1.0-4.1), myspell-nl (<< 1:1.10-3), myspell-nn (<< 2.0.10-3.1), myspell-pl (<< 20090830-1), myspell-pt-br (<< 2009.03.30-1.1), myspell-pt-pt (<< 20090309-1.1), myspell-ru (<< 0.99g5-8.1), myspell-sk (<< 0.5.5a-2.1), myspell-sv-se (<< 1.3.8-6-2.2), myspell-sw (<< 1:3.1.0-3), myspell-th (<< 1:3.1.0-3), myspell-tl (<< 0.4-0-5) Filename: pool/main/libr/libreoffice/libreoffice-core_4.2.3~rc3-0ubuntu2_i386.deb Size: 26675170 MD5sum: 3cd0fc79b903d3260c606c013957a339 SHA1: 81c6da25974543ff46405b014cc0c9a2a399b7e7 SHA256: f9c0c30399e4777be3bd14da5d472ec7677eb2229f7bf3835ff9de9910ae6e26 Description: office productivity suite -- arch-dependent files Homepage: http://www.libreoffice.org Description-md5: 5464d9229de42a41fda16d9993e11570 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-dbg Priority: extra Section: debug Installed-Size: 3453081 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-dev (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-gnome (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-kde (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-calc (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-base-core (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-base (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-impress (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-draw (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-writer (= 1:4.2.3~rc3-0ubuntu2) | python3-uno (= 1:4.2.3~rc3-0ubuntu2) | browser-plugin-libreoffice (= 1:4.2.3~rc3-0ubuntu2) | libreoffice-ogltrans (= 1:4.2.3~rc3-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6) Recommends: ure-dbg Suggests: libxslt1-dbg, libssl1.0.0-dbg, libc6-dbg, libatk1.0-dbg, libglib2.0-0-dbg, libgnomevfs2-0-dbg, libstdc++6-4.8-dbg, libx11-6-dbg, libxext6-dbg, libxaw7-dbg, libxml2-dbg, libgtk2.0-0-dbg, libxau6-dbg, libice6-dbg, libsm6-dbg, libxinerama1-dbg, libfontconfig1-dbg, libhunspell-1.3-0-dbg, libcurl4-dbg, python3-dbg, libnss3-1d-dbg, kdelibs5-dbg, libqt4-dbg, libsuitesparse-dbg, libgstreamer1.0-0-dbg, libneon27-gnutls-dbg Filename: pool/main/libr/libreoffice/libreoffice-dbg_4.2.3~rc3-0ubuntu2_i386.deb Size: 857575186 MD5sum: 30e960554434fd557b3b51c805dde65d SHA1: c0aef816e1176dfec8cdec251a5a7b61775fc4b4 SHA256: 2ac520f7a9f8ef008c3b739557643abd897eeecc78b78f9a7eb99474c863e662 Description: office productivity suite -- debug symbols Homepage: http://www.libreoffice.org Description-md5: ed5c60a9a4c74bcd668cf6fd30dfb595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-dev Priority: optional Section: devel Installed-Size: 15801 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-common (<< 1:4.1.0~beta1), libreoffice-core (<< 1:4.1.0~beta1) Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), uno-libs3 (>= 4.1.0~alpha), cpp-4.7, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), ure Recommends: g++, libreoffice-java-common (>= 1:4.2.3~rc3~), default-jre | gcj-jre | openjdk-7-jre | openjdk-6-jre | sun-java5-jre | sun-java6-jre | java5-runtime | jre Suggests: libmythes-dev, libreoffice-dev-doc Filename: pool/main/libr/libreoffice/libreoffice-dev_4.2.3~rc3-0ubuntu2_i386.deb Size: 1896530 MD5sum: def21c1d2c51b289ea2c9823c1a7715a SHA1: cfd985ca25a2c886c71b01ae593487321c7d3ad8 SHA256: 75447915aee135fb9d6d26e29a4b64ae041144a5934523c736fcfe9a014a496d Description: office productivity suite -- SDK Homepage: http://www.libreoffice.org Description-md5: 874c9d19105e4bbaac7d8229ccc0ce98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-dev-doc Priority: optional Section: doc Installed-Size: 357071 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Recommends: libreoffice-dev (= 1:4.2.3~rc3-0ubuntu2), www-browser Suggests: libreoffice-dtd-officedocument1.0 Conflicts: openoffice.org-dev-doc Filename: pool/main/libr/libreoffice/libreoffice-dev-doc_4.2.3~rc3-0ubuntu2_all.deb Size: 19987948 MD5sum: f217c227b2c814a8ddb36142838ba567 SHA1: 5660953d61bfdb7d82716e3c167e1647b05c84a9 SHA256: da2d9acdc0ce90e2bff2032b020ecd8a761be59c8f907c21968c2fa914d61263 Description: office productivity suite -- SDK documentation Homepage: http://www.libreoffice.org Description-md5: 10cfe2d6a33f985db93750ebec7e5ea5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-draw Priority: optional Section: editors Installed-Size: 8720 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.4), libcdr-0.0-0, libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.15.0), libmspub-0.0-0, libstdc++6 (>= 4.6), libvisio-0.0-0 (>= 0.0.18), libwpd-0.9-9, libwpg-0.2-2, uno-libs3 (>= 4.1.0~alpha), ure, zlib1g (>= 1:1.1.4) Recommends: libreoffice-pdfimport Filename: pool/main/libr/libreoffice/libreoffice-draw_4.2.3~rc3-0ubuntu2_i386.deb Size: 2370398 MD5sum: 94db9ab93316bd04d4571134a384bc2d SHA1: 168e8e5eb2c8c8181c3ad9b3807bf3d2167d7bb3 SHA256: 907ce47dfa74406a05138e71438b2d367ae92b3b3d225b69a8eb536661c9316c Description: office productivity suite -- drawing Homepage: http://www.libreoffice.org Description-md5: 48e37fe8495cb12961b923bb0b0f970f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-gnome Priority: optional Section: gnome Installed-Size: 427 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-core (<< 1:3.9999) Provides: libreoffice-gtk-gnome Depends: gconf2, libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-gtk, gconf-service, libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.37.3), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure Suggests: libreoffice-evolution Conflicts: libreoffice-core (<< 1:3.9999) Filename: pool/main/libr/libreoffice/libreoffice-gnome_4.2.3~rc3-0ubuntu2_i386.deb Size: 87384 MD5sum: a608298ae534eb3eb07a378d51bff24a SHA1: 2105a8d76c819577db60c6ede577c778ff0fb775 SHA256: cef8944f054e99a763b1386fb2f60a8834bbfad70df6483b1294bc0f133607b0 Description: office productivity suite -- GNOME integration Enhances: libreoffice Homepage: http://www.libreoffice.org Description-md5: 1fa5593ecfa3f68a3f69bae7e3ab2ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-gtk Priority: optional Section: gnome Installed-Size: 803 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: lo-menubar Provides: lo-menubar Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libdbus-glib-1-2 (>= 0.78), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.14.0), libstdc++6 (>= 4.6), libx11-6, uno-libs3 (>= 4.1.0~alpha), ure Recommends: libreoffice-style-human | libreoffice-style-tango Conflicts: lo-menubar Filename: pool/main/libr/libreoffice/libreoffice-gtk_4.2.3~rc3-0ubuntu2_i386.deb Size: 216896 MD5sum: 8c25a4828de03cac8af54bd5dd86abae SHA1: a978316020f6890786f53d3245faabcf5c338054 SHA256: 783a8f2055f300673b5934b60e3d443cdc9ddd06dd836fbca1965bf188ed2008 Description: office productivity suite -- GTK+ integration Enhances: libreoffice Homepage: http://www.libreoffice.org Description-md5: 4df1d08b80206db36d74b0f06ad96b28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-help-ca Priority: optional Section: doc Installed-Size: 54612 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-ca, libreoffice-writer | language-support-translations-ca Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ca Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-ca_4.2.3~rc3-0ubuntu1_all.deb Size: 5355728 MD5sum: 93798661da44061507321544e00dad07 SHA1: 6b8eead989473f3d453b1cd240f5eaacd2cbbf76 SHA256: ce2a0b2d81d6d59171023d079bfdf5733f408dc6b660a9eec3e4e87617a18dfd Description: office productivity suite -- Catalan help Homepage: http://www.libreoffice.org Description-md5: d6b57c84305eb2009f0f7cca49b022f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-cs Priority: optional Section: doc Installed-Size: 26153 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-cs, libreoffice-writer | language-support-translations-cs Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-cs Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-cs_4.2.3~rc3-0ubuntu1_all.deb Size: 2882410 MD5sum: 44a1c708885a174ee4cbb5a0f62df23d SHA1: bb64c14bf3b5ec27afd6d5d5609198317adcd39a SHA256: 1e4ed841507ae93c0266081907fef506b498a9c1d2cbe3f9009713801097e4e6 Description: office productivity suite -- Czech help Homepage: http://www.libreoffice.org Description-md5: ac7fea7c0a197c7b356a8223d94347ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-da Priority: optional Section: doc Installed-Size: 26332 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-da, libreoffice-writer | language-support-translations-da Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-da Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-da_4.2.3~rc3-0ubuntu1_all.deb Size: 2883162 MD5sum: dfc14ff40896fa5a3103cf9d5fab3923 SHA1: 578ffb9ed38760af5bcc8bbe764d7155cf6167d9 SHA256: 532ebd85f01222b9cd1afc30f2cba7a95197b8aa3a192b697718481a5077682a Description: office productivity suite -- Danish help Homepage: http://www.libreoffice.org Description-md5: 2eeb5c9d61409db9416d1bf688280d6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-de Priority: optional Section: doc Installed-Size: 27820 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-de, libreoffice-writer | language-support-translations-de Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-de Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-de_4.2.3~rc3-0ubuntu1_all.deb Size: 3057970 MD5sum: 98be67616321ebfff951642e121999f5 SHA1: 6c1508e78685be763b4ed35e25f7db3d51f2bd10 SHA256: 8e3ec1bad06ce99b0e891e4819d6a0c30bd1147703c80b2929281c59a24cfa17 Description: office productivity suite -- German help Homepage: http://www.libreoffice.org Description-md5: 446e337ad4cf957e780c2996c41e0163 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-dz Priority: optional Section: doc Installed-Size: 44136 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-dz, libreoffice-writer | language-support-translations-dz Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-dz Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-dz_4.2.3~rc3-0ubuntu1_all.deb Size: 4879600 MD5sum: f677d01d9c908f0d8b12a592bdbf522d SHA1: c30ca12840a9a32a89862b66ea3a646090d1f245 SHA256: f3e04ac688855a908535e06a8098545f06831d67600e31ad446f6260b8cee623 Description: office productivity suite -- Dzongkha help Homepage: http://www.libreoffice.org Description-md5: 831cde2511d5df0e50fca4f9545adb3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-el Priority: optional Section: doc Installed-Size: 35412 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-el, libreoffice-writer | language-support-translations-el Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-el Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-el_4.2.3~rc3-0ubuntu1_all.deb Size: 3385854 MD5sum: e2a23e1feaf93be098a2ec8e2393af34 SHA1: a6287e381b8e3ed902eaf6a264d51f1b80c4b4c3 SHA256: ae8719cf3fa668913cfaafe1a98365069c007511ed30415233f9e5edc99ad61a Description: office productivity suite -- Greek help Homepage: http://www.libreoffice.org Description-md5: 27db60f82a9a1414b51ea5e553a7b9e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-en-gb Priority: optional Section: doc Installed-Size: 24632 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-en-gb, libreoffice-writer | language-support-translations-en Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-en Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-en-gb_4.2.3~rc3-0ubuntu1_all.deb Size: 2416056 MD5sum: a8c080aa23b9753c965f2f7cfff55087 SHA1: 4137ec8fc140cef2cf173d8287a6dddc3c795836 SHA256: 29a469056ee8c43b494092c7cf3ceaa94ed5f88a99b043502d39356a669150f7 Description: office productivity suite -- English_british help Homepage: http://www.libreoffice.org Description-md5: 6843fecfa30da7d8c3e384c4f92747ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-help-en-us Priority: optional Section: doc Installed-Size: 24648 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-en-us, libreoffice-writer | language-support-translations-en Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-en Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-en-us_4.2.3~rc3-0ubuntu1_all.deb Size: 2446448 MD5sum: 7eb9fa90070403d2d40528954c5c714f SHA1: cf102f263f6be546069e4e6c1f8db86f557d2913 SHA256: 8e1b8b0b847d4284296d1244d5686aa078c9613ad747e158b736a39c66f72df2 Description: office productivity suite -- English_american help Homepage: http://www.libreoffice.org Description-md5: 887d1c3089d4c0e44d0b26ed6ffd9193 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, edubuntu-live, ubuntu-gnome-live Package: libreoffice-help-es Priority: optional Section: doc Installed-Size: 27521 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-es, libreoffice-writer | language-support-translations-es Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-es Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-es_4.2.3~rc3-0ubuntu1_all.deb Size: 2985468 MD5sum: 5f05f28a1daca6434eab280d4dc7d623 SHA1: 8dc9ee4bfc4409e8fdebe9b9845565d9ded22ca7 SHA256: a3bab901d532e002f0ad1a6a6331f8f84bb174f3575ded505f10633c60a2a682 Description: office productivity suite -- Spanish help Homepage: http://www.libreoffice.org Description-md5: 3b17681533c31b51304225ad41bc4cc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-et Priority: optional Section: doc Installed-Size: 25977 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-et, libreoffice-writer | language-support-translations-et Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-et Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-et_4.2.3~rc3-0ubuntu1_all.deb Size: 2948872 MD5sum: 890568f3fb7f4409bc5133a62dc2ca59 SHA1: ddd30c10e7b3d5b7d646ba56931a99cccfe9abd1 SHA256: 74af552a6b12caf6eb4a52283984998b5064de2b1cfd8b893ec5122db97ac177 Description: office productivity suite -- Estonian help Homepage: http://www.libreoffice.org Description-md5: ee9a1b4e728ba5dd900173bfee1a731c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-eu Priority: optional Section: doc Installed-Size: 26563 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-eu, libreoffice-writer | language-support-translations-eu Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-eu Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-eu_4.2.3~rc3-0ubuntu1_all.deb Size: 2944442 MD5sum: b6eda8943cab2ad2a5c495dd31060c36 SHA1: 5b7003b1ae1c2ed04a6bbb8a607e4171631eff7b SHA256: aca80fe0aee1d1f49a0ba481a2f78e013a3ee0dd51df25283553accc134143b9 Description: office productivity suite -- Basque help Homepage: http://www.libreoffice.org Description-md5: 173b0972f7f0a78d8c52cb5f5045e57e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-fi Priority: optional Section: doc Installed-Size: 26994 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-fi, libreoffice-writer | language-support-translations-fi Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-fi Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-fi_4.2.3~rc3-0ubuntu1_all.deb Size: 3066192 MD5sum: ff490844d373c6f8446e8766a896af9f SHA1: 9f81f20f36a155fe3ff9cb53f98a0bb3332e8bb7 SHA256: 0ec66e4e150c2825470af885fa1d58e1fbcc847480353811a2bce363cbfc421e Description: office productivity suite -- Finnish help Homepage: http://www.libreoffice.org Description-md5: 07a9aa483488050f6541179d8987d975 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-fr Priority: optional Section: doc Installed-Size: 28140 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-fr, libreoffice-writer | language-support-translations-fr Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-fr Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-fr_4.2.3~rc3-0ubuntu1_all.deb Size: 3003514 MD5sum: f93a33071809beb2108c004bcb871ddb SHA1: 5eaee5fe93758af439561bceaf10a6dae94d1403 SHA256: 44a1bb3ab3d88fe48954f1b76aec1d1f69e87a9f3575322c93e3945d5b5d6c54 Description: office productivity suite -- French help Homepage: http://www.libreoffice.org Description-md5: 3f39cd0f487b1234b3b028700174aea6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-gl Priority: optional Section: doc Installed-Size: 26276 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-gl, libreoffice-writer | language-support-translations-gl Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-gl Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-gl_4.2.3~rc3-0ubuntu1_all.deb Size: 2850244 MD5sum: b50c384879f01334186b535219adfd7d SHA1: e0a2c9ca278b35163fe4ef920859272cfce5cec9 SHA256: 051d0403bacd371052b9c842b5f8cd6bf7a0dd0b2f1388f29d99bb7b3faf8b32 Description: office productivity suite -- Galician help Homepage: http://www.libreoffice.org Description-md5: 373bae22071a7f0286ed9ec163a95c9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-hi Priority: optional Section: doc Installed-Size: 27013 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-hi, libreoffice-writer | language-support-translations-hi Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-hi Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-hi_4.2.3~rc3-0ubuntu1_all.deb Size: 2734400 MD5sum: 41d0e3c50fdb75d8851ce4fd4af0e036 SHA1: 9231835e99a5ae7edc6139ece2fdacac9b8f6a3e SHA256: 2195f071a86a228c362afa00feb1e5ec31c30cccbdd601a499243aded082f332 Description: office productivity suite -- Hindi help Homepage: http://www.libreoffice.org Description-md5: 2086330d67240d859330eccd8a050d0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-hu Priority: optional Section: doc Installed-Size: 27851 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-hu, libreoffice-writer | language-support-translations-hu Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-hu Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-hu_4.2.3~rc3-0ubuntu1_all.deb Size: 3090542 MD5sum: cd6d2b3ecde43cb856cad6b98da0f2ce SHA1: c2d0ccf0bb4ef57f6796d84db5b2d2689bfc9410 SHA256: 13c2b1dc0773e85dfc022c2bf1b33e548a90e15d87dca2a4eb9bee66191a55e4 Description: office productivity suite -- Hungarian help Homepage: http://www.libreoffice.org Description-md5: 61ae09c1e4ead0c3a139c61b39f763a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-it Priority: optional Section: doc Installed-Size: 27513 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-it, libreoffice-writer | language-support-translations-it Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-it Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-it_4.2.3~rc3-0ubuntu1_all.deb Size: 2943092 MD5sum: 5ec15450134328e3e2bccc9c4c977099 SHA1: 33a2f651644d8a923f37fae79b9205b6bbbea47d SHA256: ca674b07d124c4b249f309c6e9e66ab36bfcadac520259b194f587950754781b Description: office productivity suite -- Italian help Homepage: http://www.libreoffice.org Description-md5: 68017996bf772a95a5138d70db294b80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-ja Priority: optional Section: doc Installed-Size: 35849 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-ja, libreoffice-writer | language-support-translations-ja Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ja Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-ja_4.2.3~rc3-0ubuntu1_all.deb Size: 5147484 MD5sum: 6ce5a9a47ad4e65785b3f18073734d1b SHA1: a109fdd666c5255674b6429e3c2c20659f93fbff SHA256: 2ace133a392bc7fe0db4e1748a54558d0b2b44c014ed48b95f11a43095254d16 Description: office productivity suite -- Japanese help Homepage: http://www.libreoffice.org Description-md5: 202a13f334a5b4d912a0c725a68309d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-km Priority: optional Section: doc Installed-Size: 43228 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-km, libreoffice-writer | language-support-translations-km Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-km Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-km_4.2.3~rc3-0ubuntu1_all.deb Size: 4242586 MD5sum: e7fbdcce4b4c5ed17257a029c2fc3ef3 SHA1: b877d458fe013e9acbc5c2d94b3feabb8efca805 SHA256: 497f63333b44697121c50e260b71470808402f78deb7b9a670c507691e7fe3a3 Description: office productivity suite -- Khmer help Homepage: http://www.libreoffice.org Description-md5: 85075447fb80af12955c4e01c4a316c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-ko Priority: optional Section: doc Installed-Size: 29069 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-ko, libreoffice-writer | language-support-translations-ko Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ko Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-ko_4.2.3~rc3-0ubuntu1_all.deb Size: 3450002 MD5sum: 9171002b0fa2d1a43713fa12f942c635 SHA1: e74852862561971c5cfe9e7fb9d030adf4b36a12 SHA256: 18d0aca9e7fa28b3c8e737bece7629caae4347acb5965df6d968c57f78b9e26c Description: office productivity suite -- Korean help Homepage: http://www.libreoffice.org Description-md5: d879d29f7f222fa7b6ad3b86112dcbec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-nl Priority: optional Section: doc Installed-Size: 27049 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-nl, libreoffice-writer | language-support-translations-nl Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nl Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-nl_4.2.3~rc3-0ubuntu1_all.deb Size: 2897304 MD5sum: 1b9f68cb88c639b4f3ccb4b90c3c034f SHA1: 246a6a3a7ec25c05be07c34f1858b81d98c732a7 SHA256: 3331fae11d19e9877597a552537aa6b01aa6574e43f105345d4163786a6889b0 Description: office productivity suite -- Dutch help Homepage: http://www.libreoffice.org Description-md5: 39207c43a1ac830972c4637d2d15402a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-om Priority: optional Section: doc Installed-Size: 26916 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-om, libreoffice-writer | language-support-translations-om Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-om Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-om_4.2.3~rc3-0ubuntu1_all.deb Size: 3233788 MD5sum: 8b185b7386b18ca6ae09b3dafb60b65e SHA1: 512c31f5a2565e617f80dd421c436dfe10179f1d SHA256: e248b69f0afb3dbdd23dcd1fdb869e2b81cfa2c8c1066b9aaef900cdb8125acf Description: office productivity suite -- Oromo help Homepage: http://www.libreoffice.org Description-md5: 71d9bb0e518d702c88916fc4bcbd3fcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-pl Priority: optional Section: doc Installed-Size: 27093 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-pl, libreoffice-writer | language-support-translations-pl Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pl Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-pl_4.2.3~rc3-0ubuntu1_all.deb Size: 3040826 MD5sum: 977a35b0a35b4c44e677577008647156 SHA1: ec71bcbb796a42ef0b9061b2ffbe8122cbb5c4c9 SHA256: f228c39760eb9efadb349d3c440b22463edda0dd4107c33f250b80320e4854d7 Description: office productivity suite -- Polish help Homepage: http://www.libreoffice.org Description-md5: 1ecec6865a123ab7b50509708fbd986b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-pt Priority: optional Section: doc Installed-Size: 27123 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-pt, libreoffice-writer | language-support-translations-pt Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pt Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-pt_4.2.3~rc3-0ubuntu1_all.deb Size: 2834688 MD5sum: 56e42ba6c6a650f9ce9a88cee61d9dc4 SHA1: 8780b91effb69c3318b4e3797755eff5bd6967a7 SHA256: 67b1b1076336880a5ce8b30b9fe2f8ae749f1f7a963b91ac5e4956f2921385a1 Description: office productivity suite -- Portuguese help Homepage: http://www.libreoffice.org Description-md5: a995efbac2b786bee5de0e56d3a97215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-pt-br Priority: optional Section: doc Installed-Size: 27043 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-pt-br, libreoffice-writer | language-support-translations-pt Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pt Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-pt-br_4.2.3~rc3-0ubuntu1_all.deb Size: 2867292 MD5sum: 3bf92d8ee604daf6102286596a184591 SHA1: 08e71c8301c085668bcbd6883cc6be223799a764 SHA256: 97a177696a0efdce0f9ce0ff6d5d98f922a3d4ba0224a2584703727b0cb9b6eb Description: office productivity suite -- Portuguese_brazilian help Homepage: http://www.libreoffice.org Description-md5: ef429612095b5aa3dc738547af704ccb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-ru Priority: optional Section: doc Installed-Size: 32864 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-ru, libreoffice-writer | language-support-translations-ru Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ru Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-ru_4.2.3~rc3-0ubuntu1_all.deb Size: 3192040 MD5sum: 09a7825078847f5e6c6ab57190fc764e SHA1: 685065ff6b146462b9bb59839983a989462c86f5 SHA256: 210c06929c682c8c3dda7ef795328109d5a8297ed1a186b5e77b9cc9c3445f06 Description: office productivity suite -- Russian help Homepage: http://www.libreoffice.org Description-md5: 26ff97e5963f7a1cdb5ca84a587aad70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-sk Priority: optional Section: doc Installed-Size: 26001 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-sk, libreoffice-writer | language-support-translations-sk Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sk Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-sk_4.2.3~rc3-0ubuntu1_all.deb Size: 2935838 MD5sum: 6f39ff7cb1a4efd1fa7f3dc3b6cb6762 SHA1: 84aaae523268b0f48ea9241fcdfc7bc892c999dc SHA256: 15c339fac9e5da9ed5cd3ed8750edc5020104f0b7be2cc9a1f0f9b71e9539536 Description: office productivity suite -- Slovak help Homepage: http://www.libreoffice.org Description-md5: d26e95b5d6c285b41315b083c88099d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-sl Priority: optional Section: doc Installed-Size: 26350 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-sl, libreoffice-writer | language-support-translations-sl Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sl Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-sl_4.2.3~rc3-0ubuntu1_all.deb Size: 2969550 MD5sum: 0079690c0ef3996ec2615572c0376733 SHA1: 7a26975bc412f76ed4e1a8a5bd88acb91e8424d5 SHA256: edc03321ac812ce3ca3ce5af608e3fa4829dfb5eb3e58e445ed8da150a16d826 Description: office productivity suite -- Slovenian help Homepage: http://www.libreoffice.org Description-md5: 0b685103983bbccf5f421b1c697576d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-sv Priority: optional Section: doc Installed-Size: 26412 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-sv, libreoffice-writer | language-support-translations-sv Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sv Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-sv_4.2.3~rc3-0ubuntu1_all.deb Size: 2902170 MD5sum: 4ab86c38667d3d796b98c63549b18f88 SHA1: bef828198aa9eff76c09592c95dbdb2b028949b2 SHA256: a0958209b0904a0abc12cd466ebfb5a42b8c22ddefef14541fcc2955060ede6c Description: office productivity suite -- Swedish help Homepage: http://www.libreoffice.org Description-md5: 0f3bdd564c5f61573a0a4a42f4b54fbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-tr Priority: optional Section: doc Installed-Size: 27239 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-tr, libreoffice-writer | language-support-translations-tr Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-tr Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-tr_4.2.3~rc3-0ubuntu1_all.deb Size: 3131526 MD5sum: 443fd28af854650fa1b41f86018db22c SHA1: fe122588dab6e73960df797dfa117ce8716eafc1 SHA256: 2d5a978a08002a9e162f8e79c7a5238bbc5c2c12d66663c41990a484e0cc0d8a Description: office productivity suite -- Turkish help Homepage: http://www.libreoffice.org Description-md5: 0e69dac1381ab919682ec9c47de5194e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-help-vi Priority: optional Section: doc Installed-Size: 28211 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-vi, libreoffice-writer | language-support-translations-vi Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-vi Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-vi_4.2.3~rc3-0ubuntu1_all.deb Size: 2926952 MD5sum: c9b79df9e09e24a64561be1fb9787eb7 SHA1: 31dbeeb14bdd46ea5ee63b4ac8addff2a4c4865a SHA256: 7256479bde0dd190decf8c7e15d2a24464604a8d05612831e9d5c8d448259304 Description: office productivity suite -- Vietnamese help Homepage: http://www.libreoffice.org Description-md5: e38510b2855a269b0484915b84687e41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-help-zh-cn Priority: optional Section: doc Installed-Size: 29647 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-zh-cn, libreoffice-writer | language-support-translations-zh Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-zh Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-zh-cn_4.2.3~rc3-0ubuntu1_all.deb Size: 4374300 MD5sum: 1ba1b59e9621f2fdc868af9b3b17f6c7 SHA1: 9062f46af6eb590ec08f44b6679f10b4fe5ab200 SHA256: 632bd01ad2d3c4d90088aa51c6b60639ff4df5f198066653a4f057c1d70d0990 Description: office productivity suite -- Chinese_simplified help Homepage: http://www.libreoffice.org Description-md5: 2aa55f3147e53b54fe485b32ed13386f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-help-zh-tw Priority: optional Section: doc Installed-Size: 29869 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-help-4.1 Depends: libreoffice-l10n-zh-tw, libreoffice-writer | language-support-translations-zh Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-zh Filename: pool/main/libr/libreoffice-l10n/libreoffice-help-zh-tw_4.2.3~rc3-0ubuntu1_all.deb Size: 4402412 MD5sum: 7c425048290c310c2b9e1f942052695f SHA1: 48a74fde457c2431c69feebf717efd3e163a0d8e SHA256: 2a0c1d4a50260ebcc72cd394e8ac2b5a06624c89063d22b73589841ee73681f4 Description: office productivity suite -- Chinese_traditional help Homepage: http://www.libreoffice.org Description-md5: ee9697d616e7c4173187caaaecafb1b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-impress Priority: optional Section: editors Installed-Size: 5049 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-draw (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libwpd-0.9-9, libxml2 (>= 2.7.4), uno-libs3 (>= 4.1.0~alpha), ure, zlib1g (>= 1:1.1.4) Recommends: libreoffice-avmedia-backend-gstreamer Suggests: bluez Filename: pool/main/libr/libreoffice/libreoffice-impress_4.2.3~rc3-0ubuntu2_i386.deb Size: 1184240 MD5sum: ecaed653907dec1aa8ea69335ba62cad SHA1: da1e891fb0edb26c52ea3693f6b88e0af14f05ff SHA256: e890de8c997f53cb4d07fd5d2846483b757dc2d14817efa7733ff443a99a5540 Description: office productivity suite -- presentation Homepage: http://www.libreoffice.org Description-md5: 472668fa8a618a3bed701d2301185f86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-java-common Priority: optional Section: editors Installed-Size: 4399 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-common Breaks: libjaxe-java (<= 3.5-2) Filename: pool/main/libr/libreoffice/libreoffice-java-common_4.2.3~rc3-0ubuntu2_all.deb Size: 2009910 MD5sum: 66481c680abdb6ef0c79d6eee2b7e598 SHA1: 52940fbbee7f84b4ee38f9ae1a51eef0021154f3 SHA256: b1d96ecdb86d09e9b217cc1d2683c17a32f787657167caa46bcf01479088534b Description: office productivity suite -- arch-independent Java support files Homepage: http://www.libreoffice.org Description-md5: 9b905cfcc13278c04580172f90e74120 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: libreoffice-l10n-af Priority: optional Section: localization Installed-Size: 2730 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-af Suggests: hunspell-dictionary-af | myspell-dictionary-af, hyphen-af, libreoffice-grammarcheck-af, libreoffice-help-af, mythes-af Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-af_4.2.3~rc3-0ubuntu1_all.deb Size: 390838 MD5sum: ad045419cc0680fa087d834c0d2f9c4b SHA1: b97030245d3aed0d47134eefb8e17e02fb40c770 SHA256: ac4c4889ee299e5cf93e63971a124b199758765159974b921ceacbd3c8687682 Description: office productivity suite -- Afrikaans language package Homepage: http://www.libreoffice.org Description-md5: 25408426f5cceacb5ad931a04f17c27e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-ar Priority: optional Section: localization Installed-Size: 2994 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ar, font-arabeyes Suggests: hunspell-dictionary-ar | myspell-dictionary-ar, hyphen-ar, libreoffice-grammarcheck-ar, libreoffice-help-ar, mythes-ar Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ar_4.2.3~rc3-0ubuntu1_all.deb Size: 399410 MD5sum: 70c85666036de4b10ad920b044f02bb5 SHA1: 6e0020026622d8fd8787a6f5096b76a54ec0eaec SHA256: ce3ef476b44e7b52fac24bc3e6afa036e677530992413c50a8d90b55069f486c Description: office productivity suite -- Arabic language package Homepage: http://www.libreoffice.org Description-md5: 587caaeee146ae2e8c3996cb98f27e14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-as Priority: optional Section: localization Installed-Size: 3509 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.6.ds1-1) | locales-all (>= 2.3.6.ds1-1) Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-as Suggests: hunspell-dictionary-as | myspell-dictionary-as, hyphen-as, libreoffice-grammarcheck-as, libreoffice-help-as, mythes-as Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-as_4.2.3~rc3-0ubuntu1_all.deb Size: 419446 MD5sum: ad65b90ac146ded2ec63171da61e5815 SHA1: acaf2ea524d56b9b2f7ef1f1bf83bbc507d90f0e SHA256: dfceb3de33ce318cfe71f76f4d0e517d6ec8cd7cb7dec7f7004cbfcf1ea56b32 Description: office productivity suite -- Assamese language package Homepage: http://www.libreoffice.org Description-md5: 4ac2e69fa5a27abf0c1dea94b43a4a7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-ast Priority: optional Section: localization Installed-Size: 2806 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ast Suggests: hunspell-dictionary-ast | myspell-dictionary-ast, hyphen-ast, libreoffice-grammarcheck-ast, libreoffice-help-ast, mythes-ast Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ast_4.2.3~rc3-0ubuntu1_all.deb Size: 399624 MD5sum: e96219a157607baffa823757596dd458 SHA1: 3183db853b25d721156a0b57a8dcc86e18b88ea3 SHA256: f0802a9536ea89901457cbfb3fc9719bbd0e66f3ab22d05accb9d75e3d2317de Description: office productivity suite -- Asturian language package Homepage: http://www.libreoffice.org Description-md5: e881b8766739626fc2bfe3be78a504b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-be Priority: optional Section: localization Installed-Size: 3016 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-be Suggests: hunspell-dictionary-be | myspell-dictionary-be, hyphen-be, libreoffice-grammarcheck-be, libreoffice-help-be, mythes-be Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-be_4.2.3~rc3-0ubuntu1_all.deb Size: 409908 MD5sum: 312d12c8bc265d7ac764b5dd6083d947 SHA1: 9d3233ce9d30d0334fbea5be08593c827a9f2945 SHA256: b98101e10ae37c3e81d2f702bec5b9da28066c912ce0536020adaad49a09bc53 Description: office productivity suite -- Belarussian language package Homepage: http://www.libreoffice.org Description-md5: e407bd35090f19d5e099214658a77d9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-l10n-bg Priority: optional Section: localization Installed-Size: 3440 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-bg Suggests: hunspell-dictionary-bg | myspell-dictionary-bg, hyphen-bg, libreoffice-grammarcheck-bg, libreoffice-help-bg, mythes-bg Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-bg_4.2.3~rc3-0ubuntu1_all.deb Size: 506160 MD5sum: 9223554810c5548e9f227e0116563203 SHA1: 928f424e122e704974831afa7a1df2a58353e568 SHA256: 3e2aad7f87411e79d8cb9d351a9d227effe624c500abeaaa9ff5092207e6b589 Description: office productivity suite -- Bulgarian language package Homepage: http://www.libreoffice.org Description-md5: 1e2ff5cea5d0d31b2fadc412f6046e12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-bn Priority: optional Section: localization Installed-Size: 3351 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-bn, ttf-bengali-fonts Suggests: hunspell-dictionary-bn | myspell-dictionary-bn, hyphen-bn, libreoffice-grammarcheck-bn, libreoffice-help-bn, mythes-bn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-bn_4.2.3~rc3-0ubuntu1_all.deb Size: 412542 MD5sum: dfe6165593b3d1b9173a8c2852fae9ca SHA1: 6f98cad24214ebed2069d3aa4021780a26a5c651 SHA256: 757c8b24737b804236b8292bb850ffb2ef0d1e617569a4168afeb311b866448e Description: office productivity suite -- Bengali language package Homepage: http://www.libreoffice.org Description-md5: 00d1921e153b39622cb04e7f66795716 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-br Priority: optional Section: localization Installed-Size: 2812 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-br Suggests: hunspell-dictionary-br | myspell-dictionary-br, hyphen-br, libreoffice-grammarcheck-br, libreoffice-help-br, mythes-br Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-br_4.2.3~rc3-0ubuntu1_all.deb Size: 396072 MD5sum: 2c73d6ce0163338dc7edbed82fb51546 SHA1: c21073426e338d9fdb415c4f6258d47bb876ce22 SHA256: e3badec35dbe2ef6efc87a66b3c66df3c932ab4af1ecfc3a0ab2763d02b824e7 Description: office productivity suite -- Breton language package Homepage: http://www.libreoffice.org Description-md5: d16cf29a1d2c4c4ed7016afa029144be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-bs Priority: optional Section: localization Installed-Size: 2751 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-bs Suggests: hunspell-dictionary-bs | myspell-dictionary-bs, hyphen-bs, libreoffice-grammarcheck-bs, libreoffice-help-bs, mythes-bs Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-bs_4.2.3~rc3-0ubuntu1_all.deb Size: 396860 MD5sum: 8f26706ae24ea274745004a83a295dec SHA1: 2eab4dc52cdfcb75360168ef1b0d332b68a97212 SHA256: 142d78f202de2979a2f7763f3f7f3d786eb7fbf7c52859d9e58f97c79f7e1fc1 Description: office productivity suite -- Bosnian language package Homepage: http://www.libreoffice.org Description-md5: 7fc91db4c49442d4457804a807e892f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ca Priority: optional Section: localization Installed-Size: 5236 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ca Suggests: hunspell-dictionary-ca | myspell-dictionary-ca, hyphen-ca, libreoffice-grammarcheck-ca, libreoffice-help-ca, mythes-ca Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ca_4.2.3~rc3-0ubuntu1_all.deb Size: 448668 MD5sum: 095ca9523e6d5ae52ca5110fe96def71 SHA1: 8551e654514e2ee02dcab577b36760b0a28fc1e0 SHA256: 49b01dcd2e6d1983a47f2b91444134ebcaa5426a5d3d401162165ea1722c4703 Description: office productivity suite -- Catalan language package Homepage: http://www.libreoffice.org Description-md5: a91b06d5c0057582f16109658e9ac2f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-cs Priority: optional Section: localization Installed-Size: 2997 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-cs Suggests: hunspell-dictionary-cs | myspell-dictionary-cs, hyphen-cs, libreoffice-grammarcheck-cs, libreoffice-help-cs, mythes-cs Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-cs_4.2.3~rc3-0ubuntu1_all.deb Size: 489674 MD5sum: 1b6b1ff844261add51b774bf873d27e5 SHA1: 8921bc2500ac6b7581fd88f73d79ffde9e0cd3ba SHA256: 6aea9a314912eff4caac5d401d15b606416a6f5db94a2ef278928b99abbe29f2 Description: office productivity suite -- Czech language package Homepage: http://www.libreoffice.org Description-md5: afead2a0313d84ddc897a8641a06a05e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-cy Priority: optional Section: localization Installed-Size: 2725 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-cy Suggests: hunspell-dictionary-cy | myspell-dictionary-cy, hyphen-cy, libreoffice-grammarcheck-cy, libreoffice-help-cy, mythes-cy Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-cy_4.2.3~rc3-0ubuntu1_all.deb Size: 385172 MD5sum: beffdf58d5c10248a03bd2b9029ac544 SHA1: 04152b6a9b0cb95e87d5330e101952e700363f8b SHA256: 0ad9fc7e68756f0f8f2f03b133b0904641728f7f70336a981c9402bf1123430f Description: office productivity suite -- Welsh language package Homepage: http://www.libreoffice.org Description-md5: 05accff0a8db25ee2b5bbfa42b627da5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-da Priority: optional Section: localization Installed-Size: 2883 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-da Suggests: hunspell-dictionary-da | myspell-dictionary-da, hyphen-da, libreoffice-grammarcheck-da, libreoffice-help-da, mythes-da Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-da_4.2.3~rc3-0ubuntu1_all.deb Size: 461886 MD5sum: bbb7b3962ae2e5e39369cacb15acbe68 SHA1: 05ff82ae52a551c840b71968fceae23d057fc224 SHA256: de62b81b1d19949c60fbc0e5ad427cd5ea8fa763d37e39d8bf5cda1e282692e2 Description: office productivity suite -- Danish language package Homepage: http://www.libreoffice.org Description-md5: 3baa4ced7ad5463e2aeedc011515df6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-de Priority: optional Section: localization Installed-Size: 2932 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-de Suggests: hunspell-dictionary-de | myspell-dictionary-de, hyphen-de, libreoffice-grammarcheck-de, libreoffice-help-de, mythes-de Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-de_4.2.3~rc3-0ubuntu1_all.deb Size: 465146 MD5sum: 54c05961529d0669bafa1eca0d7058c6 SHA1: e8684527ede800dc49319759f614df5f868d4757 SHA256: 24da066221b1f13df18312aa6609cb226037d1cee155e7de7b10d647d42c8925 Description: office productivity suite -- German language package Homepage: http://www.libreoffice.org Description-md5: 9100dc24d96f8d761ed9e9a72aaae56d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-dz Priority: optional Section: localization Installed-Size: 3623 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-dz, font-dzongkha Suggests: hunspell-dictionary-dz | myspell-dictionary-dz, hyphen-dz, libreoffice-grammarcheck-dz, libreoffice-help-dz, mythes-dz Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-dz_4.2.3~rc3-0ubuntu1_all.deb Size: 426374 MD5sum: a45feb2f71d1f89e5f2bfa3a9681d720 SHA1: eb82f331384a6799c8678007f730ac9332c75273 SHA256: f37863ee14061f0df812a83f29b940c25a98aa8691d2c61f4be567a85eb22a16 Description: office productivity suite -- Dzongkha language package Homepage: http://www.libreoffice.org Description-md5: ea22c1cbc51379d92908e5e9e9fd316d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-el Priority: optional Section: localization Installed-Size: 3350 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-el Suggests: hunspell-dictionary-el | myspell-dictionary-el, hyphen-el, libreoffice-grammarcheck-el, libreoffice-help-el, mythes-el Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-el_4.2.3~rc3-0ubuntu1_all.deb Size: 416842 MD5sum: a6c4e5a5c0c145c3a97d3914d9556e44 SHA1: e763f08fb57e0c314ee2ecddb4ce7cd66d8a1b13 SHA256: 04803777d21638fd617fe902b23fd58225c25c8ebc837816abc47bc7192ca188 Description: office productivity suite -- Greek language package Homepage: http://www.libreoffice.org Description-md5: 4f78a8507785668c597339f89484e181 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-en-gb Priority: optional Section: localization Installed-Size: 2888 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-en Suggests: hunspell-dictionary-en-gb | myspell-dictionary-en-gb, hyphen-en-gb, libreoffice-grammarcheck-en-gb, libreoffice-help-en-gb, mythes-en-gb Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-en-gb_4.2.3~rc3-0ubuntu1_all.deb Size: 460716 MD5sum: 93710bb43fa692b119123e243c3cdeef SHA1: c0aeffe3d7cb7c03a0fbde9207c73a69f0d32bc6 SHA256: 5c360aef41cb7fdfcb15eea7f013923fbc2907c0dc580212cf374ecb1a09d22c Description: office productivity suite -- English_british language package Homepage: http://www.libreoffice.org Description-md5: 2175d49557a4317b25abdfef0508de34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-en-za Priority: optional Section: localization Installed-Size: 2726 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-en Suggests: hunspell-dictionary-en-za | myspell-dictionary-en-za, hyphen-en-za, libreoffice-grammarcheck-en-za, libreoffice-help-en-za, mythes-en-za Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-en-za_4.2.3~rc3-0ubuntu1_all.deb Size: 375318 MD5sum: c6a04fdbae2e754581dfc58e602c7e74 SHA1: 982b289b71271ef2a314616b4e85f389ce9acc0e SHA256: bd271bab70e6df2c4c3d91b6dddf1e233105cf95c9ebd4ba00ba55d5c81b39c4 Description: office productivity suite -- English_southafrican language package Homepage: http://www.libreoffice.org Description-md5: c94234e62f754742485de331d5cce167 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-eo Priority: optional Section: localization Installed-Size: 2736 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-eo Suggests: hunspell-dictionary-eo | myspell-dictionary-eo, hyphen-eo, libreoffice-grammarcheck-eo, libreoffice-help-eo, mythes-eo Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-eo_4.2.3~rc3-0ubuntu1_all.deb Size: 383482 MD5sum: a3f2dd12a54d560cdc70dd8f456b039e SHA1: 04502afa9366b6e790b138f83d804b76ca514a1b SHA256: 24bd63e7ffc3875f108e92b4ddcfc329f4357f70b2453efd1e3d987dda54e6d3 Description: office productivity suite -- Esperanto language package Homepage: http://www.libreoffice.org Description-md5: ceec53900ab8424d55b41ca9805f4477 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-es Priority: optional Section: localization Installed-Size: 2956 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-es Suggests: hunspell-dictionary-es | myspell-dictionary-es, hyphen-es, libreoffice-grammarcheck-es, libreoffice-help-es, mythes-es Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-es_4.2.3~rc3-0ubuntu1_all.deb Size: 469152 MD5sum: 723459618c4af58a56a95805ba248600 SHA1: a1b9920675c96ae1e274ccc3bae3348ceeb727eb SHA256: e05a01f70525e8f6e72d7ca0caf213dc8a166e4b2321b1cadc8514b61e90ec46 Description: office productivity suite -- Spanish language package Homepage: http://www.libreoffice.org Description-md5: 9ca224f2e6cdf51887ac42db8c56be1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-et Priority: optional Section: localization Installed-Size: 2727 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-et Suggests: hunspell-dictionary-et | myspell-dictionary-et, hyphen-et, libreoffice-grammarcheck-et, libreoffice-help-et, mythes-et Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-et_4.2.3~rc3-0ubuntu1_all.deb Size: 381378 MD5sum: 436b7bc7916d42e820c64bfb095a4292 SHA1: 19dd7963c133c96149e2c889a65b7972bd4184f2 SHA256: 756df2a7b3cb8e96daf16d61e7690ab93348ea45053d69dd207a76a4414f5f75 Description: office productivity suite -- Estonian language package Homepage: http://www.libreoffice.org Description-md5: 48b61d8af6c926ad0fc569a88eff07f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-eu Priority: optional Section: localization Installed-Size: 2783 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-eu Suggests: hunspell-dictionary-eu | myspell-dictionary-eu, hyphen-eu, libreoffice-grammarcheck-eu, libreoffice-help-eu, mythes-eu Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-eu_4.2.3~rc3-0ubuntu1_all.deb Size: 385238 MD5sum: 8484c4b721823e97dadd5b7fc3524776 SHA1: bbbbda47ac7568346cab479b8ab3da04b3a1f64d SHA256: aeda33b11f36c2a0cd440235080155a90d794b6c76a8e3882c299f43fce2488d Description: office productivity suite -- Basque language package Homepage: http://www.libreoffice.org Description-md5: a9ce34217df35bf42f382c34b328939c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-fa Priority: optional Section: localization Installed-Size: 2889 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-fa, font-farsiweb Suggests: hunspell-dictionary-fa | myspell-dictionary-fa, hyphen-fa, libreoffice-grammarcheck-fa, libreoffice-help-fa, mythes-fa Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-fa_4.2.3~rc3-0ubuntu1_all.deb Size: 400560 MD5sum: 2311df28a9ac6fbcd1aa8056d0468be6 SHA1: 7701b2a59b3356edbe2cc09277f77274b96e9776 SHA256: 4c6ac0698ec401d8f1d5fbe93b97550adeae8d8f0a90a52d507d4e8051951199 Description: office productivity suite -- Farsi language package Homepage: http://www.libreoffice.org Description-md5: 6fb22f6ccd00a52dcb073d05bdb131d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-fi Priority: optional Section: localization Installed-Size: 2765 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-fi Suggests: hunspell-dictionary-fi | myspell-dictionary-fi, hyphen-fi, libreoffice-grammarcheck-fi, libreoffice-help-fi, mythes-fi Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-fi_4.2.3~rc3-0ubuntu1_all.deb Size: 388576 MD5sum: af8230d39b5de1f0e82b5b8332c06740 SHA1: 64980d36cbe0aa5bdc844d0efe84773b7cf61171 SHA256: a3ff6ef878fbfef18b134e5d5a937b08bde4ca870469f3bca45ed5037b8f7c84 Description: office productivity suite -- Finnish language package Homepage: http://www.libreoffice.org Description-md5: 3706653bf050d85e2b88029ab6b8043d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-fr Priority: optional Section: localization Installed-Size: 2977 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-fr Suggests: hunspell-dictionary-fr | myspell-dictionary-fr, hyphen-fr, libreoffice-grammarcheck-fr, libreoffice-help-fr, mythes-fr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-fr_4.2.3~rc3-0ubuntu1_all.deb Size: 467198 MD5sum: e585d3039398579fae3182363e3ce60a SHA1: 7a5550e803994d23f2552005a0a7dc4fdd3a24a7 SHA256: 6b4b602bd8b82d65bd4f9c9c426da1e863083abb8e4ff0ad2e5865a99e687c40 Description: office productivity suite -- French language package Homepage: http://www.libreoffice.org Description-md5: be373ab6133f4822f55949baa3af6fb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ga Priority: optional Section: localization Installed-Size: 2802 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ga Suggests: hunspell-dictionary-ga | myspell-dictionary-ga, hyphen-ga, libreoffice-grammarcheck-ga, libreoffice-help-ga, mythes-ga Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ga_4.2.3~rc3-0ubuntu1_all.deb Size: 399196 MD5sum: 9b43444de0d54ce3c3f8531c93d13317 SHA1: 9fcdda055c2a647e4a37fe97e65845741bba8299 SHA256: b641f7011a9d4722d8a03dd1e17a6ecfa4be516cf24d992a5db1eaf4940b5a8a Description: office productivity suite -- Gaelic language package Homepage: http://www.libreoffice.org Description-md5: 45ee5e619b80d12047c3db358a95ece6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-gd Priority: optional Section: localization Installed-Size: 2881 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-gd Suggests: hunspell-dictionary-gd | myspell-dictionary-gd, hyphen-gd, libreoffice-grammarcheck-gd, libreoffice-help-gd, mythes-gd Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-gd_4.2.3~rc3-0ubuntu1_all.deb Size: 397816 MD5sum: 7f5950c8b679ac368bac59f9d0db0ce7 SHA1: 640af2a868bdfed843f3d23a9bb8bad2ea922692 SHA256: 95d5eca2c1c727dbe1be153919d69f3e85cd76d4546d5e915402b098a02308ae Description: office productivity suite -- Scottish_gaelic language package Homepage: http://www.libreoffice.org Description-md5: 18113968ce7e8c22cc31b05613ac922a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-l10n-gl Priority: optional Section: localization Installed-Size: 2804 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-gl Suggests: hunspell-dictionary-gl | myspell-dictionary-gl, hyphen-gl, libreoffice-grammarcheck-gl, libreoffice-help-gl, mythes-gl Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-gl_4.2.3~rc3-0ubuntu1_all.deb Size: 391950 MD5sum: f56225ce18db9a60c3cfd5753a211d38 SHA1: a98ce753b9223b14171703dbddf9b57407b89261 SHA256: 4038b78ca13995a11cbc69fd7f708219c6f82b957d699376165e7df4e6ec987e Description: office productivity suite -- Galician language package Homepage: http://www.libreoffice.org Description-md5: 91aaf32f09c1b953e8cf6a0878954eea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-gu Priority: optional Section: localization Installed-Size: 3421 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-gu, ttf-gujarati-fonts Suggests: hunspell-dictionary-gu | myspell-dictionary-gu, hyphen-gu, libreoffice-grammarcheck-gu, libreoffice-help-gu, mythes-gu Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-gu_4.2.3~rc3-0ubuntu1_all.deb Size: 419216 MD5sum: 73d186ac1fc036b615c8a92ab819a011 SHA1: 9bc3c78115e068f5001af06b917d12f8f1290c1c SHA256: f14af1b0d6d0cc5a7139594c1513d654c709d673f62cead374981808d4bed0dc Description: office productivity suite -- Gujarati language package Homepage: http://www.libreoffice.org Description-md5: d33d0bf909d9ce8566c829e9e8c7958d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-he Priority: optional Section: localization Installed-Size: 2940 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-he, culmus Suggests: hunspell-dictionary-he | myspell-dictionary-he, hyphen-he, libreoffice-grammarcheck-he, libreoffice-help-he, mythes-he Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-he_4.2.3~rc3-0ubuntu1_all.deb Size: 395370 MD5sum: 3f76d0752e25abe425b0911d529d68ff SHA1: 43b9ad18c72276f2348dd76db94ee9079c0ed7c9 SHA256: bf650f9346b9f6c98fc5db5d8afdc5574be613417386d14642fa1e8915d45b24 Description: office productivity suite -- Hebrew language package Homepage: http://www.libreoffice.org Description-md5: 162257c4fc07447259f3f6ba8311eab8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-hi Priority: optional Section: localization Installed-Size: 3400 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-hi Suggests: hunspell-dictionary-hi | myspell-dictionary-hi, hyphen-hi, libreoffice-grammarcheck-hi, libreoffice-help-hi, mythes-hi Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-hi_4.2.3~rc3-0ubuntu1_all.deb Size: 411260 MD5sum: 8ad919f36686e3e47ee8721b9d86d7c6 SHA1: 753453e671e131842b4a898958b097cb37e3cc0e SHA256: 9423def01dabd9f66e5b2e8f2011f8f32cc1be7f6bb64d34b885336177da8990 Description: office productivity suite -- Hindi language package Homepage: http://www.libreoffice.org Description-md5: c0f9f00435657eaf48161db67ec8e03d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-hr Priority: optional Section: localization Installed-Size: 2761 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-hr Suggests: hunspell-dictionary-hr | myspell-dictionary-hr, hyphen-hr, libreoffice-grammarcheck-hr, libreoffice-help-hr, mythes-hr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-hr_4.2.3~rc3-0ubuntu1_all.deb Size: 395748 MD5sum: f79d914ae670d652589418b5e3c2cca7 SHA1: 0ef026615c33473d25339f9ec46fae4c808f448a SHA256: af2a18db1ec56bca8c1c52668aa024e202bf66959c433b3ee259e81aad180e53 Description: office productivity suite -- Croatian language package Homepage: http://www.libreoffice.org Description-md5: c1f7ed74f344f50c39b1b97d22d34b76 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-hu Priority: optional Section: localization Installed-Size: 2994 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-hu Suggests: hunspell-dictionary-hu | myspell-dictionary-hu, hyphen-hu, libreoffice-grammarcheck-hu, libreoffice-help-hu, mythes-hu Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-hu_4.2.3~rc3-0ubuntu1_all.deb Size: 479092 MD5sum: 9d9a7e8b4de5b33f3f98ec81b648fe80 SHA1: e4571244dcb6572bd7ebfd851d321eeb829f047c SHA256: 71e9ea2de18ec0c1827465d85ba30427fdfc9f4d87d61ecde476145ce0124fef Description: office productivity suite -- Hungarian language package Homepage: http://www.libreoffice.org Description-md5: 03faefa7ee83b9dbc4ee7a082d63744e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-id Priority: optional Section: localization Installed-Size: 2729 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-id Suggests: hunspell-dictionary-id | myspell-dictionary-id, hyphen-id, libreoffice-grammarcheck-id, libreoffice-help-id, mythes-id Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-id_4.2.3~rc3-0ubuntu1_all.deb Size: 383576 MD5sum: 9cbd1c8ca6e977607b40179b27f126d8 SHA1: 712a7a3136636e12994376976feb020900a79c8b SHA256: d003ad69a77e18f386a5c81f32f5daef8dae87c9bfce676dd30c38786716f11c Description: office productivity suite -- Indonesian language package Homepage: http://www.libreoffice.org Description-md5: 831b063ee510059ca4447efa18a337a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-in Priority: optional Section: localization Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-l10n-as, libreoffice-l10n-bn, libreoffice-l10n-gu, libreoffice-l10n-hi, libreoffice-l10n-ml, libreoffice-l10n-mr, libreoffice-l10n-or, libreoffice-l10n-pa-in, libreoffice-l10n-ta, libreoffice-l10n-te Recommends: ttf-indic-fonts Filename: pool/main/libr/libreoffice/libreoffice-l10n-in_4.2.3~rc3-0ubuntu2_all.deb Size: 28516 MD5sum: bdc007e6d2dcf3f22b4375e930d0147d SHA1: 742d70ea9fa842ab6638982daa0e7868d9981c4d SHA256: 6c9bdc28cb7f1eefb0b16b495bd6ed293efd1059c93bf6bde9871fbd108537f5 Description: office productivity suite -- Indic language packages Homepage: http://www.libreoffice.org Description-md5: 36e2a96a1e51778367a7324914492a84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-is Priority: optional Section: localization Installed-Size: 2763 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-is Suggests: hunspell-dictionary-is | myspell-dictionary-is, hyphen-is, libreoffice-grammarcheck-is, libreoffice-help-is, mythes-is Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-is_4.2.3~rc3-0ubuntu1_all.deb Size: 397274 MD5sum: dc4614d92a1e8dbb909bc1e72ce3d324 SHA1: 91593063506a97d5957ef68eea7830afab1751e8 SHA256: 4da222ce18a4a9e37e2dc25d683890594ccc55c10f86743e1d15060280129581 Description: office productivity suite -- Icelandic language package Homepage: http://www.libreoffice.org Description-md5: 867a82757a25dc87440a74fb74e46369 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-it Priority: optional Section: localization Installed-Size: 2936 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-it Suggests: hunspell-dictionary-it | myspell-dictionary-it, hyphen-it, libreoffice-grammarcheck-it, libreoffice-help-it, mythes-it Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-it_4.2.3~rc3-0ubuntu1_all.deb Size: 463896 MD5sum: 83fd17b040112b90a0d92a31e19ecc9d SHA1: 2cefe8c79918b8d26f7a35474d911f77e396f7b7 SHA256: 564e58aee6987ed4639a1d45d519daa8208eb25c12437a98cc6373bccee6d7c7 Description: office productivity suite -- Italian language package Homepage: http://www.libreoffice.org Description-md5: e9939e05ca7fe3ecb840f7f3d6192e35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ja Priority: optional Section: localization Installed-Size: 3021 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ja Suggests: hunspell-dictionary-ja | myspell-dictionary-ja, hyphen-ja, libreoffice-grammarcheck-ja, libreoffice-help-ja, mythes-ja Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ja_4.2.3~rc3-0ubuntu1_all.deb Size: 450040 MD5sum: 5af6146e681ef90abfaed9f264f42cd5 SHA1: e5cfe1920caf9896e149833c186af418d185c98d SHA256: c6aed6e957da5b36fb0cb1441807003362dbc7add9bf49f52c83630a23b0bbfb Description: office productivity suite -- Japanese language package Homepage: http://www.libreoffice.org Description-md5: 711d02c365f10214733d3d63a55bf474 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ka Priority: optional Section: localization Installed-Size: 3306 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ka Suggests: hunspell-dictionary-ka | myspell-dictionary-ka, hyphen-ka, libreoffice-grammarcheck-ka, libreoffice-help-ka, mythes-ka Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ka_4.2.3~rc3-0ubuntu1_all.deb Size: 410398 MD5sum: 5e04e43b8ab751b91e65be3129f4b816 SHA1: 51dcf9615deae621fe4c9afef00544d15dc6fe2a SHA256: 1e9e12fbd12459c187d828c095f34101b257785c7a5e6d2b5a752884a6b1872d Description: office productivity suite -- Georgian language package Homepage: http://www.libreoffice.org Description-md5: 1efb8e2732132342f73ee09022329760 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-kk Priority: optional Section: localization Installed-Size: 3222 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-kk Suggests: hunspell-dictionary-kk | myspell-dictionary-kk, hyphen-kk, libreoffice-grammarcheck-kk, libreoffice-help-kk, mythes-kk Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-kk_4.2.3~rc3-0ubuntu1_all.deb Size: 402096 MD5sum: b210f05109ce6c4007cdfd52e4af1bbf SHA1: 00dd45cd76465e2ea7649f8b7c9b9e62202a3f30 SHA256: 28a3e7cd7b227ff856bdf1ed78e2e05377195e8c1be6ba084b592fe37d9a5629 Description: office productivity suite -- Kazakh language package Homepage: http://www.libreoffice.org Description-md5: 0f55a645c29d349c14ae394b15a44300 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libreoffice-l10n-km Priority: optional Section: localization Installed-Size: 3924 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.5-12) | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-km, font-khmeros Suggests: hunspell-dictionary-km | myspell-dictionary-km, hyphen-km, libreoffice-grammarcheck-km, libreoffice-help-km, mythes-km Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-km_4.2.3~rc3-0ubuntu1_all.deb Size: 493850 MD5sum: e91b57c1206b511c4ab023672a177b60 SHA1: d4d57b6c4f1645605b8c11936a02ae4cbe4cb3fa SHA256: 3ca08d5aba2c7bb6fede78c5df4745057b6940f45359a95f43a9ca39c47390af Description: office productivity suite -- Khmer language package Homepage: http://www.libreoffice.org Description-md5: 8bbe73d4befdfd439c3cbc8ee6b1fcb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-kmr-latn Priority: optional Section: localization Installed-Size: 2792 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-kmr Suggests: hunspell-dictionary-kmr-latn | myspell-dictionary-kmr-latn, hyphen-kmr-latn, libreoffice-grammarcheck-kmr-latn, libreoffice-help-kmr-latn, mythes-kmr-latn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-kmr-latn_4.2.3~rc3-0ubuntu1_all.deb Size: 404028 MD5sum: ada02e0317c039ee92bcda30e7f58a48 SHA1: aa5581ed5683d8ee6457f0a02523e55ec1bdc531 SHA256: 49f86f194ee1af6f00d230b1d69911be41663c9a7806394d1425bbe1a85688dd Description: office productivity suite -- Kurdish language package Homepage: http://www.libreoffice.org Description-md5: 2197d3f86ef82ce48921d3367f6111f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ko Priority: optional Section: localization Installed-Size: 2918 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ko Suggests: hunspell-dictionary-ko | myspell-dictionary-ko, hyphen-ko, libreoffice-grammarcheck-ko, libreoffice-help-ko, mythes-ko Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ko_4.2.3~rc3-0ubuntu1_all.deb Size: 457490 MD5sum: 6e87ba66ffdaa10460068fa17fae1944 SHA1: ca378affb4ffa44268021d6cbd98f246e790e981 SHA256: c5145c29cc221df648b083a5227a1317d55615cd404c8eee3d053aac5f5648ab Description: office productivity suite -- Korean language package Homepage: http://www.libreoffice.org Description-md5: 959045aad72889d15ef474977f2b76c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ku Priority: optional Section: localization Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-l10n-kmr-latn Filename: pool/main/libr/libreoffice/libreoffice-l10n-ku_4.2.3~rc3-0ubuntu2_all.deb Size: 28468 MD5sum: 9a8532725c4ada935a6c0b3dc8c94efe SHA1: 62434deccec5d0a1cf998e39629b1c4c74bd945d SHA256: c60d00ac2a0d75afd629674a127d86ba0dc6d9d87b8f07e6fd9c10f05166cc37 Description: transitional package for LibreOffice Kurdish l10n Homepage: http://www.libreoffice.org Description-md5: 27c92d54642fffc5563357ff22e7cb47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-lt Priority: optional Section: localization Installed-Size: 2795 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-lt Suggests: hunspell-dictionary-lt | myspell-dictionary-lt, hyphen-lt, libreoffice-grammarcheck-lt, libreoffice-help-lt, mythes-lt Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-lt_4.2.3~rc3-0ubuntu1_all.deb Size: 392902 MD5sum: 532f8933cdb7d09dbead82e2019e69ed SHA1: 36bb69a591a553460ebd30ea5909f9dd6e269920 SHA256: db0b689bd27c34d8f3c86b57693c61172c3e4f9899d8fe68dff32208c65ac364 Description: office productivity suite -- Lithuanian language package Homepage: http://www.libreoffice.org Description-md5: 034b11c582987c822f6f0f155d0a2dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-lv Priority: optional Section: localization Installed-Size: 2786 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-lv Suggests: hunspell-dictionary-lv | myspell-dictionary-lv, hyphen-lv, libreoffice-grammarcheck-lv, libreoffice-help-lv, mythes-lv Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-lv_4.2.3~rc3-0ubuntu1_all.deb Size: 393310 MD5sum: d716c2a4ccbecd433fddf3c1366f1e95 SHA1: 5e2c47316c17583adae1595325b5bd1eec876a64 SHA256: 053af004f8b3bdf1fdc1a85d71f3237ddd140c78491d2d0a90f68cb4144d401e Description: office productivity suite -- Latvian language package Homepage: http://www.libreoffice.org Description-md5: 5590d50c683679292cf935268a635351 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-mk Priority: optional Section: localization Installed-Size: 3068 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-mk Suggests: hunspell-dictionary-mk | myspell-dictionary-mk, hyphen-mk, libreoffice-grammarcheck-mk, libreoffice-help-mk, mythes-mk Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-mk_4.2.3~rc3-0ubuntu1_all.deb Size: 409532 MD5sum: 2bfc25629388b05c7d448eb80ea82032 SHA1: f7363d43429347259b662dea803c6b599395b27d SHA256: 3aee4f0af77a44bafc91123844a308f0b91cdc24d450c831a984e1e08435242f Description: office productivity suite -- Macedonian language package Homepage: http://www.libreoffice.org Description-md5: 14c69c972f6eb55814e005281db272c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ml Priority: optional Section: localization Installed-Size: 3752 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ml, ttf-malayalam-fonts Suggests: hunspell-dictionary-ml | myspell-dictionary-ml, hyphen-ml, libreoffice-grammarcheck-ml, libreoffice-help-ml, mythes-ml Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ml_4.2.3~rc3-0ubuntu1_all.deb Size: 427144 MD5sum: 193075b57413210c6ac4c4512bbe59f6 SHA1: a245d49903236a6783d5562851c36dda7595af7b SHA256: 7bae228b4026ce77a341da18b9720d44cecb3fe5a842ca4073eee74414b620c4 Description: office productivity suite -- Malayalam language package Homepage: http://www.libreoffice.org Description-md5: 60f657487ccd35990900a2b5e69a0ece Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-mn Priority: optional Section: localization Installed-Size: 3146 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-mn Suggests: hunspell-dictionary-mn | myspell-dictionary-mn, hyphen-mn, libreoffice-grammarcheck-mn, libreoffice-help-mn, mythes-mn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-mn_4.2.3~rc3-0ubuntu1_all.deb Size: 497186 MD5sum: 17e05e894bf710ce4f28381849716493 SHA1: 7f5e5a03dda7c5bc8cf067d6f7397ffc12fa2cfa SHA256: e6a817c3628f76dd2fd9ab4131f74addcc6d774a6fd1bcfefc7bdbec9448e860 Description: office productivity suite -- Mongolian language package Homepage: http://www.libreoffice.org Description-md5: 4025564fcb7aef1ac127f7d38a7d89a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-mr Priority: optional Section: localization Installed-Size: 3455 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-mr, ttf-devanagari-fonts Suggests: hunspell-dictionary-mr | myspell-dictionary-mr, hyphen-mr, libreoffice-grammarcheck-mr, libreoffice-help-mr, mythes-mr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-mr_4.2.3~rc3-0ubuntu1_all.deb Size: 421420 MD5sum: c042562ed23caae44242a6494849a666 SHA1: 56962a5d51aed3ea70f8e983dbce6f9bb50988d2 SHA256: 5a925735bf54f48b72c878973785ae8026d109c201b0b8bd53073e1659cfe33e Description: office productivity suite -- Marathi language package Homepage: http://www.libreoffice.org Description-md5: 8222f55840ec7b6dfe5f1d5507393b3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-nb Priority: optional Section: localization Installed-Size: 2733 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nb Suggests: hunspell-dictionary-nb | myspell-dictionary-nb, hyphen-nb, libreoffice-grammarcheck-nb, libreoffice-help-nb, mythes-nb Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-nb_4.2.3~rc3-0ubuntu1_all.deb Size: 385746 MD5sum: 032090321a602550819431d557d36bef SHA1: 744228fe9b009fae961436a41efcc39774db91a7 SHA256: 2a05351f55882bd61cee2255b6124b932be3f9fc232bc110da162ccdd8bc4d17 Description: office productivity suite -- Norwegian language package Homepage: http://www.libreoffice.org Description-md5: 0fabf8e37a5701350d1b10c4e7e6afed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ne Priority: optional Section: localization Installed-Size: 3405 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ne, ttf-devanagari-fonts Suggests: hunspell-dictionary-ne | myspell-dictionary-ne, hyphen-ne, libreoffice-grammarcheck-ne, libreoffice-help-ne, mythes-ne Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ne_4.2.3~rc3-0ubuntu1_all.deb Size: 408328 MD5sum: de56a5a2c972c002b394d4644e0ac8ae SHA1: eeac1d7f92cfe151145560c09b613fcfad26ee87 SHA256: 79e2cf361e655eba15350e08859b3d942ef2b296acafb45d48d83e094e04246e Description: office productivity suite -- Nepali language package Homepage: http://www.libreoffice.org Description-md5: dab12a810614b4666c8b321d5a209818 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-nl Priority: optional Section: localization Installed-Size: 2906 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nl Suggests: hunspell-dictionary-nl | myspell-dictionary-nl, hyphen-nl, libreoffice-grammarcheck-nl, libreoffice-help-nl, mythes-nl Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-nl_4.2.3~rc3-0ubuntu1_all.deb Size: 473772 MD5sum: 3cc442dc11cd9cbfb01b8f76d7b2c842 SHA1: 76e63d754c12e16ae51f84a2a339457fbb061fee SHA256: 781f90f7a94ac952ae8d4c4c3df70032e69f1e746b29ea456d3ccca4d46d39cd Description: office productivity suite -- Dutch language package Homepage: http://www.libreoffice.org Description-md5: 070320c4fffa196cb47074884ecf5d04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-nn Priority: optional Section: localization Installed-Size: 2730 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nn Suggests: hunspell-dictionary-nn | myspell-dictionary-nn, hyphen-nn, libreoffice-grammarcheck-nn, libreoffice-help-nn, mythes-nn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-nn_4.2.3~rc3-0ubuntu1_all.deb Size: 385002 MD5sum: 3908898005b9ca6fe8f260e3b8b31645 SHA1: 30b7aa27c06b493465d6330491d1b0ac24a09988 SHA256: b3781b348673400be099e17ea12fcaad29442d028bb6e33ca987dc1294f9f2bd Description: office productivity suite -- Norwegian_nynorsk language package Homepage: http://www.libreoffice.org Description-md5: bbdb9d7bd3b045feb8b26450f0b1e84d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-nr Priority: optional Section: localization Installed-Size: 2772 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.6.ds1-1) | locales-all (>= 2.3.6.ds1-1) Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nr Suggests: hunspell-dictionary-nr | myspell-dictionary-nr, hyphen-nr, libreoffice-grammarcheck-nr, libreoffice-help-nr, mythes-nr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-nr_4.2.3~rc3-0ubuntu1_all.deb Size: 403590 MD5sum: 2277c86da4e343b5440df8f926c6ccdd SHA1: fa7c21acfe801b0d3b850812ad0600b50054da46 SHA256: a3b8b9ba0618e8d769e27e2a25ed50585cd036234ec5cb2f1847f4b35e45b8e4 Description: office productivity suite -- Ndebele language package Homepage: http://www.libreoffice.org Description-md5: 43bc32c188cfe5924ea7f2995a36995d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-nso Priority: optional Section: localization Installed-Size: 2805 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-nso Suggests: hunspell-dictionary-nso | myspell-dictionary-nso, hyphen-nso, libreoffice-grammarcheck-nso, libreoffice-help-nso, mythes-nso Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-nso_4.2.3~rc3-0ubuntu1_all.deb Size: 398252 MD5sum: 5dd6ac9032a25b8c43ced8fd8040c04e SHA1: c27d62081c977fc451e6c7e13044b7a14bab0587 SHA256: dce8ac125ab39642f1f8b79ec43c34ecde02a3d44e716013dfc456517739e4a1 Description: office productivity suite -- Northern_sotho language package Homepage: http://www.libreoffice.org Description-md5: 12301064896f2feae77bfb9b19df2b41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-oc Priority: optional Section: localization Installed-Size: 2815 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-oc Suggests: hunspell-dictionary-oc | myspell-dictionary-oc, hyphen-oc, libreoffice-grammarcheck-oc, libreoffice-help-oc, mythes-oc Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-oc_4.2.3~rc3-0ubuntu1_all.deb Size: 398750 MD5sum: 70cbac36202a706547794e929a3e46e3 SHA1: b835b4e2a8ccd7f8d006f31e44d28c39a278a572 SHA256: fb33c5ad60ce8c9446085b5b0b1f563277d4bd7adee4f5d6aec3d36ef19ea7ba Description: office productivity suite -- Occitan language package Homepage: http://www.libreoffice.org Description-md5: 33ddfe08a196f8f66e1a8e27f2d010cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-om Priority: optional Section: localization Installed-Size: 2751 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-om Suggests: hunspell-dictionary-om | myspell-dictionary-om, hyphen-om, libreoffice-grammarcheck-om, libreoffice-help-om, mythes-om Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-om_4.2.3~rc3-0ubuntu1_all.deb Size: 394836 MD5sum: 4ae10841e9a7d62439c8eea1c18595aa SHA1: 9e44bd5bc6d97b1fe529a4fe75acb309d6d77f6f SHA256: d2b72203d09062ada3e38c08e000db70a68d5f722a9728e71278c0f5ffdbfa4f Description: office productivity suite -- Oromo language package Homepage: http://www.libreoffice.org Description-md5: b0d2c1a766f405e3832badc1c8a5b242 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-or Priority: optional Section: localization Installed-Size: 3525 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.6.ds1-1) | locales-all (>= 2.3.6.ds1-1) Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-or, ttf-oriya-fonts Suggests: hunspell-dictionary-or | myspell-dictionary-or, hyphen-or, libreoffice-grammarcheck-or, libreoffice-help-or, mythes-or Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-or_4.2.3~rc3-0ubuntu1_all.deb Size: 418074 MD5sum: bf3610869090e6665713aa6131121792 SHA1: 953e5cca4ceb13660c5ddeb0c2817d8ae8ffbb1c SHA256: 754ae4400c116a53973232879370f3739d1d68030a242494c8491a278be52352 Description: office productivity suite -- Oriya language package Homepage: http://www.libreoffice.org Description-md5: 68c4bed662edc9ba26df9975db9b5cc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-pa-in Priority: optional Section: localization Installed-Size: 3245 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pa, ttf-punjabi-fonts Suggests: hunspell-dictionary-pa-in | myspell-dictionary-pa-in, hyphen-pa-in, libreoffice-grammarcheck-pa-in, libreoffice-help-pa-in, mythes-pa-in Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-pa-in_4.2.3~rc3-0ubuntu1_all.deb Size: 408572 MD5sum: ca7a2a9515b2033ba5c30b8004636fb6 SHA1: 8459340d3de54a9a60810c4e96b2c531cd55185c SHA256: 95e1d82f3b63e467330b08b0084ecca89ef076312855e0de3626791b8e7daa6f Description: office productivity suite -- Punjabi language package Homepage: http://www.libreoffice.org Description-md5: 257cf2122f7b0d44fd1c044bf69204bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-pl Priority: optional Section: localization Installed-Size: 2864 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pl Suggests: hunspell-dictionary-pl | myspell-dictionary-pl, hyphen-pl, libreoffice-grammarcheck-pl, libreoffice-help-pl, mythes-pl Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-pl_4.2.3~rc3-0ubuntu1_all.deb Size: 441806 MD5sum: 36efa3d391ad5e6d778e9fc619a631b1 SHA1: 0194110018d63b375f7f2e63b51a82d75a0e9878 SHA256: bddedbb553d1d9649947c4633ea9515e37cd9b16edf709778ed69540b8639fa5 Description: office productivity suite -- Polish language package Homepage: http://www.libreoffice.org Description-md5: af3855564491f6adf7a5d23e57e3d07f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-pt Priority: optional Section: localization Installed-Size: 2943 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pt Suggests: hunspell-dictionary-pt | myspell-dictionary-pt, hyphen-pt, libreoffice-grammarcheck-pt, libreoffice-help-pt, mythes-pt Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-pt_4.2.3~rc3-0ubuntu1_all.deb Size: 453282 MD5sum: 0063a2bef75fcd88da1c787e3f406986 SHA1: 6374a723223ecb8eaf17caa76d9a010a4107cd4c SHA256: 3183866d309f111395940941354da1e94098f767c9777c607ce4b455f71b94b2 Description: office productivity suite -- Portuguese language package Homepage: http://www.libreoffice.org Description-md5: 3ebb2c295967229068d690bf4004b6e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-pt-br Priority: optional Section: localization Installed-Size: 2929 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-pt Suggests: hunspell-dictionary-pt-br | myspell-dictionary-pt-br, hyphen-pt-br, libreoffice-grammarcheck-pt-br, libreoffice-help-pt-br, mythes-pt-br Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-pt-br_4.2.3~rc3-0ubuntu1_all.deb Size: 456872 MD5sum: cfaaa34606c390fc13e2032339a68fed SHA1: 7e8599a089262d1537ca5c4840b9ae41683bac2b SHA256: f1b3ea5d494ce6c67dc8c498f7a0a3c167bacd4398e75f56b3f57b2f39ad4d38 Description: office productivity suite -- Portuguese_brazilian language package Homepage: http://www.libreoffice.org Description-md5: bca2f0a66f444a733b61ca3bb45846ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ro Priority: optional Section: localization Installed-Size: 2803 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ro Suggests: hunspell-dictionary-ro | myspell-dictionary-ro, hyphen-ro, libreoffice-grammarcheck-ro, libreoffice-help-ro, mythes-ro Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ro_4.2.3~rc3-0ubuntu1_all.deb Size: 397140 MD5sum: 0fd0a7fe49ad49aa4a394142fa1cfea3 SHA1: 60df1aa9485ca317e29448cc021c2d437c25d56e SHA256: 27c1fd0fcb2f1a44b96b4903a1798969082ba422c5ad79d061a5392a3b3adcd8 Description: office productivity suite -- Romanian language package Homepage: http://www.libreoffice.org Description-md5: e4018d28105361bb391246001caccf0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ru Priority: optional Section: localization Installed-Size: 3387 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ru Suggests: hunspell-dictionary-ru | myspell-dictionary-ru, hyphen-ru, libreoffice-grammarcheck-ru, libreoffice-help-ru, mythes-ru Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ru_4.2.3~rc3-0ubuntu1_all.deb Size: 480094 MD5sum: 617ad167f0df48cd3274090a92c953ce SHA1: 4e6d8140f9172429bbbe6d903de3298528071a2b SHA256: 5dbaeb7be3f62ea7a7c8c897392cdb6392f28424f23dabc618142b65e6628033 Description: office productivity suite -- Russian language package Homepage: http://www.libreoffice.org Description-md5: 58787e12e170fc436c645c007bfdc3a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-rw Priority: optional Section: localization Installed-Size: 2776 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.6) | belocs-locales-data | locales-all (>= 2.3.6) Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-rw Suggests: hunspell-dictionary-rw | myspell-dictionary-rw, hyphen-rw, libreoffice-grammarcheck-rw, libreoffice-help-rw, mythes-rw Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-rw_4.2.3~rc3-0ubuntu1_all.deb Size: 395710 MD5sum: 5ae636bb3dcbb0f5b3c6145c392c3e52 SHA1: 2d83ac68aabcfc63410f6d4fcb8d4ea21a61ff1e SHA256: 99970ef77a828757e10f28f75b9a13646634f4b4f880281bea2215d884a44bc3 Description: office productivity suite -- Kinarwanda language package Homepage: http://www.libreoffice.org Description-md5: 567e17f0373585af19cb698b7c5680e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-si Priority: optional Section: localization Installed-Size: 3348 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-si Suggests: hunspell-dictionary-si | myspell-dictionary-si, hyphen-si, libreoffice-grammarcheck-si, libreoffice-help-si, mythes-si Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-si_4.2.3~rc3-0ubuntu1_all.deb Size: 414690 MD5sum: 0c177b40916dbfd6370d99f785af642a SHA1: 91e8081a189a109c9dd2c32501cd0222f025fa55 SHA256: 9b4f47d4883040ac648181ae19227d30d18204a81ea6a3766ec248dad83a96de Description: office productivity suite -- Sinhala language package Homepage: http://www.libreoffice.org Description-md5: 1f61af11cbbfd06c45ff93fd66708f91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-sk Priority: optional Section: localization Installed-Size: 3006 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sk Suggests: hunspell-dictionary-sk | myspell-dictionary-sk, hyphen-sk, libreoffice-grammarcheck-sk, libreoffice-help-sk, mythes-sk Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-sk_4.2.3~rc3-0ubuntu1_all.deb Size: 500514 MD5sum: c42c46ad1a80445306b4f3901a5b9bc2 SHA1: 08054c0e78f8e711f4ea685c893e61cc930cdd67 SHA256: 39e84bc7566ae34b010f74268b19df54615cf382543d2fd6476fdf09f6f7744a Description: office productivity suite -- Slovak language package Homepage: http://www.libreoffice.org Description-md5: 1769b72d83c3ab6d8bc16b3fda5f0a67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-sl Priority: optional Section: localization Installed-Size: 2947 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sl Suggests: hunspell-dictionary-sl | myspell-dictionary-sl, hyphen-sl, libreoffice-grammarcheck-sl, libreoffice-help-sl, mythes-sl Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-sl_4.2.3~rc3-0ubuntu1_all.deb Size: 490378 MD5sum: e1d8a207389b359b95ac042f9d3b6a26 SHA1: 196a61aa58e9f9a6d4123ccde9e517b6c0b82e3e SHA256: c172c8c3860e01c3626ae47e8c574ad3a77000a0c709a85643f5c5dc14ef9700 Description: office productivity suite -- Slovenian language package Homepage: http://www.libreoffice.org Description-md5: cb73e143fff5a545b5d0d0878593a2f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-sr Priority: optional Section: localization Installed-Size: 3010 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.6.ds1-5) | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sr Suggests: hunspell-dictionary-sr | myspell-dictionary-sr, hyphen-sr, libreoffice-grammarcheck-sr, libreoffice-help-sr, mythes-sr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-sr_4.2.3~rc3-0ubuntu1_all.deb Size: 413632 MD5sum: 888d2c24de2859b37f35b0d7692ccad6 SHA1: 77fa56dd5faf123c545ed7b7a924459136aab55f SHA256: 9a04d5fe448b996c49d027279ce846ea9b3bea82de1f69270224f42e4469f931 Description: office productivity suite -- Serbian language package Homepage: http://www.libreoffice.org Description-md5: a5246257fe1a7bc6da50c1903b447187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ss Priority: optional Section: localization Installed-Size: 2754 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.5-12) | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ss Suggests: hunspell-dictionary-ss | myspell-dictionary-ss, hyphen-ss, libreoffice-grammarcheck-ss, libreoffice-help-ss, mythes-ss Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ss_4.2.3~rc3-0ubuntu1_all.deb Size: 401100 MD5sum: 1e48954750a0ad1de741ca564f754e3b SHA1: 18778c9fa4e98b07ead4419cec7e9d33467c4af2 SHA256: 27f3f8c330eb2ba99054a313fd47d8037c454e29ff861f4347ea583535e5f23d Description: office productivity suite -- Swazi language package Homepage: http://www.libreoffice.org Description-md5: b3cd9971feec09abdc68c846c96340a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-st Priority: optional Section: localization Installed-Size: 2774 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-st Suggests: hunspell-dictionary-st | myspell-dictionary-st, hyphen-st, libreoffice-grammarcheck-st, libreoffice-help-st, mythes-st Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-st_4.2.3~rc3-0ubuntu1_all.deb Size: 400474 MD5sum: 537a603bd062c2ed459ce52c772d7844 SHA1: 713684e5ae5bb78bf1bf36b90707766f9c3b427d SHA256: a91a3b4f371c799bc7390b6355e9918004b8733630a62cee5a3acfe8c95a0eb6 Description: office productivity suite -- Southern_sotho language package Homepage: http://www.libreoffice.org Description-md5: 3eddf8b8a781fcc8d00658fd683751c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-sv Priority: optional Section: localization Installed-Size: 2873 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-sv Suggests: hunspell-dictionary-sv | myspell-dictionary-sv, hyphen-sv, libreoffice-grammarcheck-sv, libreoffice-help-sv, mythes-sv Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-sv_4.2.3~rc3-0ubuntu1_all.deb Size: 457906 MD5sum: cc26db3cce32cfe447ea231766c37cb2 SHA1: b9beb9c0bd2bb90d5eeaf1f8ed4935f9c4943bf8 SHA256: b8fdba8cdf97a8cd739f7ffcaeb8e95f026854fd8b242e80b89bd6c1d49185ea Description: office productivity suite -- Swedish language package Homepage: http://www.libreoffice.org Description-md5: 94e08d9ebf4885b6a199a8604f8e4623 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ta Priority: optional Section: localization Installed-Size: 3620 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ta, ttf-tamil-fonts Suggests: hunspell-dictionary-ta | myspell-dictionary-ta, hyphen-ta, libreoffice-grammarcheck-ta, libreoffice-help-ta, mythes-ta Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ta_4.2.3~rc3-0ubuntu1_all.deb Size: 425112 MD5sum: a50fc5745be2f66195ecfa07e12dbd46 SHA1: b67974b43ced71d7e7df2899f616ca1ac5dc2808 SHA256: 1febef183ede841ce89e80004ea8d391b87535ca88b410068c221e05a8e49ce4 Description: office productivity suite -- Tamil language package Homepage: http://www.libreoffice.org Description-md5: f1a39c06a2dd67a9a2480ae41bbfcff0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-te Priority: optional Section: localization Installed-Size: 3536 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-te, ttf-telugu-fonts Suggests: hunspell-dictionary-te | myspell-dictionary-te, hyphen-te, libreoffice-grammarcheck-te, libreoffice-help-te, mythes-te Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-te_4.2.3~rc3-0ubuntu1_all.deb Size: 430026 MD5sum: 585c4c13a7b3affc22aaa7ad817cd6f5 SHA1: 4d1115fe70e742bc036a9026563c477fb466f5ee SHA256: 7666511611ac207affa994a9cefcb74afa055f540269ee8184daf58d2322ddfe Description: office productivity suite -- Telugu language package Homepage: http://www.libreoffice.org Description-md5: 61e424cfb84420f8dc211c66f1b3a533 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-tg Priority: optional Section: localization Installed-Size: 2983 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-tg Suggests: hunspell-dictionary-tg | myspell-dictionary-tg, hyphen-tg, libreoffice-grammarcheck-tg, libreoffice-help-tg, mythes-tg Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-tg_4.2.3~rc3-0ubuntu1_all.deb Size: 400812 MD5sum: 4c3df734ee5e3188622e128f41fefc82 SHA1: e95c5d6aa2ef9158cc840d531323161366efb5a4 SHA256: deea0bf32e026cae7d2dce1c6c76c6007c7d293afd97f65ed3584d2ce2f43482 Description: office productivity suite -- Tajik language package Homepage: http://www.libreoffice.org Description-md5: 20867b7b1d2eafbaca5ff6af5b2d57c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-th Priority: optional Section: localization Installed-Size: 3302 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-th, font-thai-tlwg Suggests: hunspell-dictionary-th | myspell-dictionary-th, hyphen-th, libreoffice-grammarcheck-th, libreoffice-help-th, mythes-th Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-th_4.2.3~rc3-0ubuntu1_all.deb Size: 407642 MD5sum: ff437441e1e3954f8564846f913e1b8c SHA1: 77df20885420ebd4d6f1e5e5d5ce4c65e5e6c860 SHA256: a8a264efc7f7e5f7782c3896e70d30262c78011a176984521e8690c2358f5270 Description: office productivity suite -- Thai language package Homepage: http://www.libreoffice.org Description-md5: 94a998c14aeff6049d9b90810598f1dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-tn Priority: optional Section: localization Installed-Size: 2731 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.5-12) | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-tn Suggests: hunspell-dictionary-tn | myspell-dictionary-tn, hyphen-tn, libreoffice-grammarcheck-tn, libreoffice-help-tn, mythes-tn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-tn_4.2.3~rc3-0ubuntu1_all.deb Size: 393156 MD5sum: 6340b9637f65837530bfdd4b9dbd7584 SHA1: afefbcc4955788d0bd2fdac904ed84fd4a2c499b SHA256: ccbc544264f6aa5cad43dbff8a55447e4fb31345cbc67aabf3eab16138936ee6 Description: office productivity suite -- Tswana language package Homepage: http://www.libreoffice.org Description-md5: 7da81d27f41218d11fbd8aabceec792c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-tr Priority: optional Section: localization Installed-Size: 2803 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-tr Suggests: hunspell-dictionary-tr | myspell-dictionary-tr, hyphen-tr, libreoffice-grammarcheck-tr, libreoffice-help-tr, mythes-tr Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-tr_4.2.3~rc3-0ubuntu1_all.deb Size: 419270 MD5sum: 73636c37ffdcbe3c21716abfe092ca9b SHA1: 0e979319013e1ec5f9c9176b7c50f0f437b501a8 SHA256: 0f845be4fd62bc6fbf1580142b152f625c063491565df100ba0ebfed857ee419 Description: office productivity suite -- Turkish language package Homepage: http://www.libreoffice.org Description-md5: df7d8cde01531055398d2aa9010f77bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ts Priority: optional Section: localization Installed-Size: 2788 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales (>= 2.3.5-12) | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ts Suggests: hunspell-dictionary-ts | myspell-dictionary-ts, hyphen-ts, libreoffice-grammarcheck-ts, libreoffice-help-ts, mythes-ts Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ts_4.2.3~rc3-0ubuntu1_all.deb Size: 400076 MD5sum: 4989f19f51204fa19603230cbc5c95ab SHA1: 5002144d3b6e26397ad2e5a378e0e774fb77d8e5 SHA256: 8ab6069fb045a604c2f7bed857b2f784360c5f18f146af4f9bd5447904f2e296 Description: office productivity suite -- Tsonga language package Homepage: http://www.libreoffice.org Description-md5: 29ca3694d6ba2d256e546fdcdc5b65bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-ug Priority: optional Section: localization Installed-Size: 3176 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ug Suggests: hunspell-dictionary-ug | myspell-dictionary-ug, hyphen-ug, libreoffice-grammarcheck-ug, libreoffice-help-ug, mythes-ug Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ug_4.2.3~rc3-0ubuntu1_all.deb Size: 398158 MD5sum: 24b5a45f89e1b492c7381115b904882f SHA1: 5dc791179e966cd5e3a4ca03396da77a11848b34 SHA256: 54163df943affc734160224bc906c7b8bb45c5c21a0c7704a83f504cd079ead4 Description: office productivity suite -- Uighur language package Homepage: http://www.libreoffice.org Description-md5: ca1d8cb61ea8620dc7ff4ea41c7dfe12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-uk Priority: optional Section: localization Installed-Size: 3209 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-uk Suggests: hunspell-dictionary-uk | myspell-dictionary-uk, hyphen-uk, libreoffice-grammarcheck-uk, libreoffice-help-uk, mythes-uk Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-uk_4.2.3~rc3-0ubuntu1_all.deb Size: 407992 MD5sum: 1d994546d94f1ad3780d6b5c0fc41177 SHA1: 72ebbb7570df852e8e5821d2aeb9a6de764d78e5 SHA256: 094013ec71996e61e14fe0876f2815fb8908f3afca4bdace9a029c05a6ae6d65 Description: office productivity suite -- Ukrainian language package Homepage: http://www.libreoffice.org Description-md5: 6f386a310674737ccb0fc8c3aaefc90e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-uz Priority: optional Section: localization Installed-Size: 2753 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-uz Suggests: hunspell-dictionary-uz | myspell-dictionary-uz, hyphen-uz, libreoffice-grammarcheck-uz, libreoffice-help-uz, mythes-uz Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-uz_4.2.3~rc3-0ubuntu1_all.deb Size: 389152 MD5sum: afb0f82172c513cd5587e6074b15025a SHA1: de78744ce7c663b21a4eff7b4abac0a1f4f30131 SHA256: c4ab9f2880cba1c2f28bc1ca3e3674edfaada61c9109f04f211dd128dc0038a3 Description: office productivity suite -- Uzbek language package Homepage: http://www.libreoffice.org Description-md5: a7da1f6ae1fcdfa64f696aed12dc759d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-ve Priority: optional Section: localization Installed-Size: 2789 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-ve Suggests: hunspell-dictionary-ve | myspell-dictionary-ve, hyphen-ve, libreoffice-grammarcheck-ve, libreoffice-help-ve, mythes-ve Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-ve_4.2.3~rc3-0ubuntu1_all.deb Size: 401926 MD5sum: b9a6d8411ec2f6d74b4e646cee81b5fd SHA1: 8cb7d3e029631f0ac0d3e280b4bb13fa952bdae7 SHA256: 22a067cc91c064192cb2f75e5821e24232714d9d50298e10cce89c38a449c987 Description: office productivity suite -- Venda language package Homepage: http://www.libreoffice.org Description-md5: 7bb286307dfd6105c62d2c54772e83fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-vi Priority: optional Section: localization Installed-Size: 2833 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-vi Suggests: hunspell-dictionary-vi | myspell-dictionary-vi, hyphen-vi, libreoffice-grammarcheck-vi, libreoffice-help-vi, mythes-vi Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-vi_4.2.3~rc3-0ubuntu1_all.deb Size: 395548 MD5sum: b28993b5d26c760ef08327bf61297a6b SHA1: 9cec7e7ec0e823a01322730fda6ce36996b71ea8 SHA256: 99e7bd00bedaf11d038f170fdaaf0efaf509386c86489de78f2a516fc7f6fe65 Description: office productivity suite -- Vietnamese language package Homepage: http://www.libreoffice.org Description-md5: baa160c324599bd2156dca97789a430a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-xh Priority: optional Section: localization Installed-Size: 2801 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-xh Suggests: hunspell-dictionary-xh | myspell-dictionary-xh, hyphen-xh, libreoffice-grammarcheck-xh, libreoffice-help-xh, mythes-xh Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-xh_4.2.3~rc3-0ubuntu1_all.deb Size: 406482 MD5sum: 02b2dadcb42cd2de90c1675ee7ea8995 SHA1: adb8cab3b5bb66edfe310ed003f45ab34e8a4cad SHA256: 79a3f806b2793fc2a9faaf2b6a759207602d5aa31d4455e9b777839b01878b8c Description: office productivity suite -- Xhosa language package Homepage: http://www.libreoffice.org Description-md5: 6124cc72bfc02b25a2a78aaa09e77b01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-za Priority: optional Section: localization Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-l10n-af, libreoffice-l10n-en-za, libreoffice-l10n-nr, libreoffice-l10n-nso, libreoffice-l10n-ss, libreoffice-l10n-st, libreoffice-l10n-tn, libreoffice-l10n-ts, libreoffice-l10n-ve, libreoffice-l10n-xh, libreoffice-l10n-zu Filename: pool/main/libr/libreoffice/libreoffice-l10n-za_4.2.3~rc3-0ubuntu2_all.deb Size: 28494 MD5sum: 263e949dbaa20d098914759ac4258b5f SHA1: 56f3a9ea471e1c8c0f65a5eb47df8524152a49fe SHA256: 876b620d4587441f4258ab26f5076bcdb1f87fd890eff571aab20d2711f94475 Description: office productivity suite -- South African language packages Homepage: http://www.libreoffice.org Description-md5: 88b25d0aaf8864e6f6b3862a477db0fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-l10n-zh-cn Priority: optional Section: localization Installed-Size: 2818 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-zh Suggests: hunspell-dictionary-zh-cn | myspell-dictionary-zh-cn, hyphen-zh-cn, libreoffice-grammarcheck-zh-cn, libreoffice-help-zh-cn, mythes-zh-cn Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-zh-cn_4.2.3~rc3-0ubuntu1_all.deb Size: 444802 MD5sum: 299b5413e87344fbb1b216e0c678397d SHA1: e5833c7eda9284eb8e443f86cd95ce6924639104 SHA256: e18cae6407296130e98dde159e86bd3651c48c9b614005bbce919add52e760e8 Description: office productivity suite -- Chinese_simplified language package Homepage: http://www.libreoffice.org Description-md5: b8e748f9a21ee8996147f93a46daa148 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-zh-tw Priority: optional Section: localization Installed-Size: 2820 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-zh Suggests: hunspell-dictionary-zh-tw | myspell-dictionary-zh-tw, hyphen-zh-tw, libreoffice-grammarcheck-zh-tw, libreoffice-help-zh-tw, mythes-zh-tw Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-zh-tw_4.2.3~rc3-0ubuntu1_all.deb Size: 441658 MD5sum: eff4e19f79a2a4f0da2af67c45335aa8 SHA1: f53485def33001c69c7a8767d8617f9fd94a723e SHA256: 7cdfc2bf5bc9d79d72c36db847be43540c7e214c7267f56ec00c5cedbaa51a8a Description: office productivity suite -- Chinese_traditional language package Homepage: http://www.libreoffice.org Description-md5: 166e08e5f36a4b8b8968bda48d5eb24e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-l10n-zu Priority: optional Section: localization Installed-Size: 2778 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice-l10n Version: 1:4.2.3~rc3-0ubuntu1 Provides: libreoffice-l10n-4.1 Depends: libreoffice-common, locales | belocs-locales-data | locales-all Recommends: libreoffice-core (>> 1:4.2.3~rc3) | language-support-translations-zu Suggests: hunspell-dictionary-zu | myspell-dictionary-zu, hyphen-zu, libreoffice-grammarcheck-zu, libreoffice-help-zu, mythes-zu Filename: pool/main/libr/libreoffice-l10n/libreoffice-l10n-zu_4.2.3~rc3-0ubuntu1_all.deb Size: 404800 MD5sum: e1621870b1387f3996c08a9cc8adae46 SHA1: e270d3f20b67a8af91b5fedbe177ce2f79acc66b SHA256: b384d627aa1091eaf833253b32ea6e4d9c2cf109e5ddd50e2ae95a8f79298eab Description: office productivity suite -- Zulu language package Homepage: http://www.libreoffice.org Description-md5: 1826bfebd2ace6bb52d52081479ab115 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-math Priority: optional Section: editors Installed-Size: 1327 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: fonts-opensymbol, libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure Filename: pool/main/libr/libreoffice/libreoffice-math_4.2.3~rc3-0ubuntu2_i386.deb Size: 353002 MD5sum: 4eb69aef4fee8ebaa418e8de3c0d31b2 SHA1: e3b27c81dfd621411cbf01f44785a0f9596d7d79 SHA256: 5776be55a0554784ced3e86b4621abb46fbb7c0e32e80689d211f9514792a01c Description: office productivity suite -- equation editor Homepage: http://www.libreoffice.org Description-md5: 66f3b39e514cc02ac689ec67f6ed274a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-nlpsolver Priority: extra Section: math Installed-Size: 261 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: nlpsolver Version: 0.9~beta1-9ubuntu1 Depends: libreoffice-calc (>= 1:3.0~), libreoffice-core (>= 1:3.3~), default-jre-headless | java5-runtime | java6-runtime Filename: pool/main/n/nlpsolver/libreoffice-nlpsolver_0.9~beta1-9ubuntu1_all.deb Size: 79598 MD5sum: 9f9832d11518c8adf7818208b71884b5 SHA1: 378dc781fd8f72a1f1678827309db2092a45844c SHA256: 98a8c7c0d54442356f408e72378fe489165768373a9d53491d83c30931e207d0 Description: "Solver for Nonlinear Programming" extension for LibreOffice Description-md5: fae46d5df372eb372a1c97e3831f88bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-officebean Priority: optional Section: java Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-java-common (>= 1:4.2.3~rc3~), default-jre | gcj-jre | openjdk-7-jre | openjdk-6-jre | sun-java5-jre | sun-java6-jre | java5-runtime | jre, ure, libc6 (>= 2.1.3) Filename: pool/main/libr/libreoffice/libreoffice-officebean_4.2.3~rc3-0ubuntu2_i386.deb Size: 69242 MD5sum: eb43e65f2273ed2a686652acfa390ccf SHA1: 510e2d7dc85cb6b373763e02193594215ce76710 SHA256: e4468d88fed24f8a075bf7d4195331041a112a5e135ad2bd4931ac8577190321 Description: office productivity suite -- Java bean Homepage: http://www.libreoffice.org Description-md5: 75283d81d9fbc2478568186149138f66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: libreoffice-ogltrans Priority: extra Section: graphics Installed-Size: 387 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-common, libreoffice-core, libreoffice-impress, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libglu1-mesa | libglu1, libstdc++6 (>= 4.1.1), libx11-6, uno-libs3 (>= 4.1.0~alpha), ure Breaks: ure (<< 1.5.1+OOo3.1.1-15) Filename: pool/main/libr/libreoffice/libreoffice-ogltrans_4.2.3~rc3-0ubuntu2_i386.deb Size: 74394 MD5sum: 3607da0e08d8e97f49d8fd0223392f7a SHA1: a2776f6aadb74097cab60ef2157b7d7022d67cce SHA256: 58fee18911c3dfd04491d981f4db7abf8e8bae52493edd1701c996b9a431d78c Description: LibreOffice Impress extension for transitions using OpenGL Enhances: libreoffice-impress Homepage: http://www.libreoffice.org Description-md5: dfaf53d76ded8d3e2af3ae1257649704 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-pdfimport Priority: extra Section: misc Installed-Size: 760 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libpoppler44 (>= 0.24.5), libstdc++6 (>= 4.6), uno-libs3 (>= 4.1.0~alpha), ure, zlib1g (>= 1:1.1.4) Breaks: libreoffice-common (<< 1:3.5~), libreoffice-core (<< 1:3.5~) Filename: pool/main/libr/libreoffice/libreoffice-pdfimport_4.2.3~rc3-0ubuntu2_i386.deb Size: 218328 MD5sum: c2824f9c0da1d65b904d9c0e90402949 SHA1: fe0797b3ae2415411e8f76bc3ffa823e29333dea SHA256: 74f45bd49a525739a22e36477dc64a0c51b6aa877e169a3cb6f1e9e7f8f2f13c Description: PDF Import component for LibreOffice Homepage: http://www.libreoffice.org Description-md5: 7069a2bfbe2c169ff2e9e9fddbca6bca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-presentation-minimizer Priority: optional Section: misc Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-impress (>= 1:4.2.0~) Filename: pool/main/libr/libreoffice/libreoffice-presentation-minimizer_4.2.3~rc3-0ubuntu2_all.deb Size: 26546 MD5sum: 8065af449ad28ed37264867f89fd856a SHA1: 3ce09d4264eceb51aa4d6dd29adf3fa9e447d7b4 SHA256: af1c0141ec5f2446540c6654de7a17a82b2aaf6a3069bbf27e37225a1ccceacd Description: transitional package for the LibreOffice presentation minimizer Homepage: http://www.libreoffice.org Description-md5: 5380696ac4df557aef6595509ad8c35d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-sdbc-firebird Priority: optional Section: database Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Depends: libreoffice-core Filename: pool/main/libr/libreoffice/libreoffice-sdbc-firebird_4.2.3~rc3-0ubuntu2_i386.deb Size: 20864 MD5sum: 6ff473ed22ae5cda2031b4abb860b79f SHA1: 5cc0a8bcc3e7e7e5451e6114650f874425b14c46 SHA256: 1e0eee0c81501264d22a4f12f6f4cff438857fa92f38e0c9360691fb68b4b136 Description: Firebird SDBC driver for LibreOffice Enhances: libreoffice-base-drivers Homepage: http://www.libreoffice.org Description-md5: 4ad372e2554b0f42b39c7e1325d5e6d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libreoffice-sdbc-hsqldb Priority: optional Section: database Installed-Size: 523 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-base (<< 1:4.2~) Depends: libreoffice-core, libreoffice-java-common (>= 1:4.2.3~rc3~), libhsqldb1.8.0-java Filename: pool/main/libr/libreoffice/libreoffice-sdbc-hsqldb_4.2.3~rc3-0ubuntu2_i386.deb Size: 124058 MD5sum: 363c1c7fef2eb9c08250fe5b48813c9c SHA1: 4cbc53cb8b8aec7de367af5ee7a7c5951d64e415 SHA256: 3565b1639df8b1e2b9512a5064a86c0d5581f06deb85afedb7f7e87355e8d921 Description: HSQLDB SDBC driver for LibreOffice Enhances: libreoffice-base-drivers Homepage: http://www.libreoffice.org Description-md5: 54ed9715a25b1dae2ad2d3a9b6838a65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libreoffice-style-human Priority: optional Section: editors Installed-Size: 3117 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Provides: libreoffice-style, libreoffice-style-default Recommends: libreoffice-core Suggests: crystalcursors, kde-icons-crystal Filename: pool/main/libr/libreoffice/libreoffice-style-human_4.2.3~rc3-0ubuntu2_all.deb Size: 1740472 MD5sum: b4f18b17d1987069be032c545533a595 SHA1: 91fbc71519588ad50bf4b32ad3de318d14ca34a0 SHA256: f6f5b2d2dd439f3652feb1fd968df58f117da1ab403ec373e4b52ed403d74316 Description: office productivity suite -- Human symbol style Homepage: http://www.libreoffice.org Description-md5: 69f18f7852988e1365a9a97ee69965b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libreoffice-style-tango Priority: optional Section: editors Installed-Size: 2802 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: all Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-common (<< 1:3.3.0~rc4-2) Provides: libreoffice-style Recommends: libreoffice-core Suggests: tango-icon-theme Filename: pool/main/libr/libreoffice/libreoffice-style-tango_4.2.3~rc3-0ubuntu2_all.deb Size: 1622268 MD5sum: c724612c897e0bc207fa4749e6eb9bb4 SHA1: 652321ec795e7a3575ef3bc2ba9b8469904e288f SHA256: bd9bf35cfff4bd60e6fd2d0a5867b3b7aa661b78fa041fee8b9d78afcf1afc84 Description: office productivity suite -- Tango symbol style Homepage: http://www.libreoffice.org Description-md5: ec575ae6d1025f570b9471aee7e05d3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb, ubuntu-gnome-desktop Package: libreoffice-voikko Priority: optional Section: text Installed-Size: 257 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: i386 Version: 4.0-1 Provides: libreoffice-hyphenation-fi, libreoffice-spellcheck-fi Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libvoikko1, uno-libs3 (>= 4.0.0~beta), ure, voikko-fi, libreoffice-core Recommends: libreoffice | libreoffice-writer | libreoffice-calc | libreoffice-impress | libreoffice-draw Filename: pool/main/libr/libreoffice-voikko/libreoffice-voikko_4.0-1_i386.deb Size: 61302 MD5sum: 9884251b561abaa669c23198feecf928 SHA1: 993f20772d46c34d4e355c7d26cfb7485447dfd6 SHA256: 6340eed840d07bd0561a37b84aed429ef64ad58340e997f17d74c11a1fa7ffc8 Description: Spellchecker, grammar checker and hyphenator for LibreOffice Enhances: libreoffice Homepage: http://voikko.sourceforge.net/ Description-md5: 35322c6ea2a519660d5284a6e2a4e188 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libreoffice-writer Priority: optional Section: editors Installed-Size: 35402 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: libreoffice-core (<< 1:3.3.2-5) Depends: libreoffice-base-core (= 1:4.2.3~rc3-0ubuntu2), libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.6), libwpd-0.9-9, libwpg-0.2-2, libwps-0.2-2, libxml2 (>= 2.7.4), uno-libs3 (>= 4.2.0~rc1), ure, zlib1g (>= 1:1.1.4) Recommends: libreoffice-math Suggests: libreoffice-base, libreoffice-gcj, libreoffice-java-common (>= 1:4.2.3~rc3~), default-jre | gcj-jre | openjdk-7-jre | openjdk-6-jre | sun-java5-jre | sun-java6-jre | java5-runtime | jre Filename: pool/main/libr/libreoffice/libreoffice-writer_4.2.3~rc3-0ubuntu2_i386.deb Size: 9390380 MD5sum: 1f3428bf6e36c068832db750f4d87ef2 SHA1: 7d97648441c44575c0f9b47aeef8e592b23ae54e SHA256: c020c77629a9df021718974765d60fd9a8aa15f70bd6b746927c39db63643931 Description: office productivity suite -- word processor Homepage: http://www.libreoffice.org Description-md5: 7ddf1a7be67dc22b315f212f564325e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: librest-0.7-0 Priority: optional Section: libs Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: librest Version: 0.7.90-0ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.28.0), libsoup-gnome2.4-1 (>= 2.27.4), libsoup2.4-1 (>= 2.30), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/libr/librest/librest-0.7-0_0.7.90-0ubuntu1_i386.deb Size: 36784 MD5sum: b32a5d568d60c10b4987c0465e97d43b SHA1: 4d3cce69e42f0c845eab54acf6665e45dac1110b SHA256: 6f806a69a2eaea5df1cf48aabdb0acd2d3c070cba5a835c75d67ab25136637f5 Description: REST service access library Multi-Arch: same Homepage: http://www.gnome.org/ Description-md5: b9596f15c90979058521292c03c3efb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: librest-0.7-0-dbg Priority: extra Section: debug Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: librest Version: 0.7.90-0ubuntu1 Depends: librest-0.7-0 (= 0.7.90-0ubuntu1) Filename: pool/main/libr/librest/librest-0.7-0-dbg_0.7.90-0ubuntu1_i386.deb Size: 119032 MD5sum: e500f00496beeace8cfff0e792afd43e SHA1: 8bd8d5703f93863d1f668ab33732bfd63fd4666a SHA256: d98d811de9218f7fb5974c0130414ffb3de2000562e28453c14333503dd0bffa Description: REST service access library (Debug files) Homepage: http://www.gnome.org/ Description-md5: b9afcc320a7161336322966274d3f093 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librest-dev Priority: optional Section: libdevel Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: librest Version: 0.7.90-0ubuntu1 Depends: gir1.2-rest-0.7 (= 0.7.90-0ubuntu1), librest-0.7-0 (= 0.7.90-0ubuntu1), libsoup2.4-dev, libxml2-dev Filename: pool/main/libr/librest/librest-dev_0.7.90-0ubuntu1_i386.deb Size: 30538 MD5sum: 6fad06fc2e6d4df7b12aed3899d58160 SHA1: 0ba3a30733db21ff00a06e889e67a6721337ea29 SHA256: 89380b1b4f4277d0099675d394e38118feb3256e5b2012d17eafc9e57421fe54 Description: REST service access library (development headers) Homepage: http://www.gnome.org/ Description-md5: 094d9a02839014f2dcb9afb78eb411e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librest-doc Priority: optional Section: doc Installed-Size: 346 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: all Source: librest Version: 0.7.90-0ubuntu1 Suggests: librest-dev Filename: pool/main/libr/librest/librest-doc_0.7.90-0ubuntu1_all.deb Size: 38264 MD5sum: 3cacdcfc4ae97724e626d521cbf7c57b SHA1: a7cc44137b9ef24888bf9b6520f41d914c7b3e34 SHA256: 90cf64072c1cc1fb229c5c56b0d0df33628e283bc792cda6e5eb742f3632c939 Description: REST service access library (documentation) Homepage: http://www.gnome.org/ Description-md5: 5418f69c43d240c1cca3c94bb7c61be5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librest-extras-0.7-0 Priority: optional Section: libs Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: librest Version: 0.7.90-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.27), librest-0.7-0 (>= 0.7.8), libsoup2.4-1 (>= 2.30) Pre-Depends: multiarch-support Filename: pool/main/libr/librest/librest-extras-0.7-0_0.7.90-0ubuntu1_i386.deb Size: 14852 MD5sum: 575acd6bba9a15fb502e40a9e6b7498b SHA1: 504fe8f9fa3a87b27ed622d10708dcec1379a16e SHA256: 80f9fa7aac14974510e2953ddfd7502a80994aa8b6a5fb828aba002b2388db09 Description: REST service access library extra components Multi-Arch: same Homepage: http://www.gnome.org/ Description-md5: bccf414e2c1699613c362f86b7c5326e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librest-extras-dev Priority: optional Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Ying-Chun Liu (PaulLiu) Architecture: i386 Source: librest Version: 0.7.90-0ubuntu1 Depends: gir1.2-rest-extras-0.7 (= 0.7.90-0ubuntu1), librest-dev, librest-extras-0.7-0 (= 0.7.90-0ubuntu1) Filename: pool/main/libr/librest/librest-extras-dev_0.7.90-0ubuntu1_i386.deb Size: 7674 MD5sum: 5a6d4891a24f89534d5da44f0c4167ea SHA1: a7366d4b9f5cf1be066f2c1404ffa6ade1efb3cb SHA256: bfdadafeeab3acb8d70da9136814b52d74f55c7c169c112ce014a6dcd458b603 Description: REST service access library extra components (development headers) Homepage: http://www.gnome.org/ Description-md5: 0352efef165d7b2c319eba2686dc11cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librhino-java Priority: optional Section: java Installed-Size: 1202 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: rhino Version: 1.7R4-2 Replaces: rhino (<< 1.7R3~pre-2) Suggests: rhino Conflicts: rhino (<< 1.7R3~pre-2) Filename: pool/main/r/rhino/librhino-java_1.7R4-2_all.deb Size: 1095944 MD5sum: b5c2f318cc2a424ef4675660628837d0 SHA1: 131f1b03f91e3a82f722825a7388295a664bb679 SHA256: 15c6e798282ded5bc5ce6e62481858c066af7e9a3b39027650c59d82e1d2e880 Description: Libraries for rhino Java Script Engine Homepage: http://www.mozilla.org/rhino/ Description-md5: 56304b110a7e11df7b042a8bec6b6f22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librhino-java-doc Priority: optional Section: doc Installed-Size: 8292 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: rhino Version: 1.7R4-2 Replaces: rhino-doc (<< 1.7R3~pre-2) Suggests: rhino Conflicts: rhino-doc (<< 1.7R3~pre-2) Filename: pool/main/r/rhino/librhino-java-doc_1.7R4-2_all.deb Size: 810228 MD5sum: f0988e7b1cfd43dd904e679a0da005fe SHA1: 74c78f14480d99cbd039935c70dac21fd95c1e1b SHA256: 8e0dae3d457d7a2013333430e37be03a54b5f7e7379b701b5fd8f74ee2966c73 Description: Documentation for rhino Java Script Engine Homepage: http://www.mozilla.org/rhino/ Description-md5: 8acc09ff13d5854b58d6cf75b621356e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librhythmbox-core8 Priority: optional Section: libs Installed-Size: 1784 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: rhythmbox Version: 3.0.2-0ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libgirepository-1.0-1 (>= 0.9.3), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.6.0), libgudev-1.0-0 (>= 146), libjson-glib-1.0-0 (>= 0.12.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpeas-1.0-0 (>= 1.0.0), libsoup2.4-1 (>= 2.33.92), libtdb1 (>= 1.2.7+git20101214), libtotem-plparser18 (>= 3.10.0), libwebkitgtk-3.0-0 (>= 1.3.10), libxml2 (>= 2.7.4) Filename: pool/main/r/rhythmbox/librhythmbox-core8_3.0.2-0ubuntu1_i386.deb Size: 465028 MD5sum: 84d2111b9234021abb46e66aba6f959b SHA1: 43741d5ed89f74e9ee4e7bd5396cc116bd6b9d08 SHA256: 2d6a917bb0a7a79b9d5994091b53530e4c69366c0bbced1952950cf23a3b619e Description: support library for the rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: c3a718f17d4a5d6b021901c3db955972 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libroken18-heimdal Priority: standard Section: libs Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libroken18-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 40868 MD5sum: d59e0409b4819b0044cce790a6e5ce2e SHA1: 1907c1bd2bb1e93271f93d0ac46b3c04b9b60b4f SHA256: a8ff0f9b752707bf10b598b6747f04f82e37112a3bdf3a20610bafe17d396cb3 Description: Heimdal Kerberos - roken support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 09767e23fe6e020c9a8665bbe1cfa203 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: librole-tiny-perl Priority: optional Section: perl Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.003002-1 Depends: perl, libclass-method-modifiers-perl Breaks: libmoo-perl (<< 0.009014) Filename: pool/main/libr/librole-tiny-perl/librole-tiny-perl_1.003002-1_all.deb Size: 17790 MD5sum: 5a835caa68f3ef840907b72432119f46 SHA1: 0faa6464737ff3d51e9da1f6867afa137170c7af SHA256: a79245c92a23b6d0b348b6d42ce661a98ef61a41145deb37bd539d1fa5961f57 Description: Perl module for minimalist role composition Homepage: https://metacpan.org/release/Role-Tiny/ Description-md5: fe9c69a8e958a2d37cc15895cfa1bc6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libroman-perl Priority: optional Section: perl Installed-Size: 56 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.23-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/libr/libroman-perl/libroman-perl_1.23-1_all.deb Size: 8746 MD5sum: 2f51a5d93a3d5268a7677ec5813aefab SHA1: 9dd820c207799d0b8e270b21da4f5c264190104c SHA256: d178562a6b7ea6a5d0d37a7fe2b1d60ac5a0e3d4a999203c425a127a486ed74a Description: Perl module for converting between Roman and Arabic numerals Homepage: http://search.cpan.org/dist/Roman/ Description-md5: 969e5775386cf882386fabcb305ebacc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librpm-dbg Priority: extra Section: debug Installed-Size: 1442 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: rpm Version: 4.11.1-3 Provides: rpm-dbg Depends: librpm3 (= 4.11.1-3) Filename: pool/main/r/rpm/librpm-dbg_4.11.1-3_i386.deb Size: 1180028 MD5sum: d91c849ec310907edf5e5813ae891a07 SHA1: b24bc16f6bff82f4f385f81ca8e97a730d71c148 SHA256: 7a20c10f75be997199ed5e798e5c051c39bdee7491c49676061e0c4c3999d0c8 Description: debugging symbols for RPM Homepage: http://rpm.org/ Description-md5: b940250aa3e76b7ce785711342eb904c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librpm-dev Priority: extra Section: libdevel Installed-Size: 306 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: rpm Version: 4.11.1-3 Replaces: librpm0-dev, librpm1-dev (<< 4.0), librpm4.4, rpm (<< 2.5) Provides: librpm0-dev Depends: librpm3 (= 4.11.1-3), librpmio3 (= 4.11.1-3), librpmbuild3 (= 4.11.1-3), librpmsign1 (= 4.11.1-3), libc6-dev, libpopt-dev (>= 1.6.4), libdb-dev, libbz2-dev, libz-dev, libxml2-dev, libreadline-dev, libselinux1-dev, libsqlite3-dev Conflicts: librpm0-dev, librpm4.4 Breaks: librpm1-dev (<< 4.0) Filename: pool/main/r/rpm/librpm-dev_4.11.1-3_i386.deb Size: 63114 MD5sum: 73ac30319babced9ffbb4ea265b0695c SHA1: ee1a77413cef0c692c794b78e67f56fac5a7fc20 SHA256: b3562e46b1b3ff95858415bf81f81a521b9f507b4085d37b37214d27a6b67c9c Description: RPM shared library, development kit Homepage: http://rpm.org/ Description-md5: b61ce5bb0129a6b93ca353a53ac9c1e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librpm3 Priority: optional Section: libs Installed-Size: 457 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: rpm Version: 4.11.1-3 Depends: libc6 (>= 2.17), libcap2 (>= 2.10), libdb5.3, liblua5.2-0, libpopt0 (>= 1.14), librpmio3 (>= 4.11.0.1) Recommends: rpm-common (= 4.11.1-3) Filename: pool/main/r/rpm/librpm3_4.11.1-3_i386.deb Size: 183708 MD5sum: d66fc365c32b2306b86525bcccf40280 SHA1: 6813ceba667a270ff07bd4478ab63bc2135541ea SHA256: 5e27b9423652054e6c974b12f234aefc80b6cd3c7c5c9fadc7d222032cc35045 Description: RPM shared library Homepage: http://rpm.org/ Description-md5: 43dcb3c7127ac155f80bce6eb02448dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librpmbuild3 Priority: optional Section: libs Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: rpm Version: 4.11.1-3 Depends: libc6 (>= 2.17), libmagic1, libpopt0 (>= 1.14), librpm3 (>= 4.11.1), librpmio3 (>= 4.11.0.1) Filename: pool/main/r/rpm/librpmbuild3_4.11.1-3_i386.deb Size: 64264 MD5sum: c2269f554dde8d72909b9645178083e0 SHA1: ae508b9892a90164700a057d00632457231f6d98 SHA256: fc58628b38e36a5da6ba0275aa5bd462f9b3e99d6c1e9985d587e893fd586c50 Description: RPM build shared library Homepage: http://rpm.org/ Description-md5: 6c8fdac9007ad1483cb5ded0c7a78d4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librpmio3 Priority: optional Section: libs Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: rpm Version: 4.11.1-3 Depends: libbz2-1.0, libc6 (>= 2.17), libelf1 (>= 0.131), liblua5.2-0, liblzma5 (>= 5.1.1alpha+20120614), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.5), libpopt0 (>= 1.14), zlib1g (>= 1:1.2.3.4) Filename: pool/main/r/rpm/librpmio3_4.11.1-3_i386.deb Size: 79844 MD5sum: 9bdcd8703d05a28356829a7bf5f03cd6 SHA1: 33a8962dd5764e797b891efff6d9ed3dec14072d SHA256: e7d7a586f3c5e42b03200c20238332e5f8b4128b38e24023c32064312229a3b3 Description: RPM IO shared library Homepage: http://rpm.org/ Description-md5: b102b4700b4f67e72b6c457300d1dee3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librpmsign1 Priority: optional Section: libs Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: rpm Version: 4.11.1-3 Depends: libc6 (>= 2.4), libpopt0 (>= 1.14), librpm3 (>= 4.10.0), librpmio3 (>= 4.10.0) Filename: pool/main/r/rpm/librpmsign1_4.11.1-3_i386.deb Size: 8934 MD5sum: ad5fb92babfb9344f90c9610f135ddba SHA1: eddcfba555e4d80ad10b35eb0d86ce024386856a SHA256: 68767daea18f1f531fc7cebe91216ab546d906a70820ac4143657ed68ca07990 Description: RPM signing shared library Homepage: http://rpm.org/ Description-md5: c2958f0a844ec375af9b40fae17c7280 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librrd-dev Priority: optional Section: libdevel Installed-Size: 911 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: i386 Source: rrdtool Version: 1.4.7-2ubuntu5 Replaces: librrd2-dev Provides: librrd2-dev Depends: libc6-dev | libc-dev, librrd4 (= 1.4.7-2ubuntu5), libpng12-dev, zlib1g-dev, libcairo2-dev, libpango1.0-dev, libfreetype6-dev, libxml2-dev Conflicts: librrd2-dev Filename: pool/main/r/rrdtool/librrd-dev_1.4.7-2ubuntu5_i386.deb Size: 125124 MD5sum: 0841b1db5fdc48041f5d84910631914b SHA1: 597fc0f053a32f67a593dd310d90fba0b1676a0c SHA256: 58f370de2cb8505fb0704fed380027ccf3b166ae641aa1407aaacdb7835fbd0e Description: time-series data storage and display system (development) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: f4bfb8003b3ec54ff47424f81d29f24f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librrd-ruby1.9.1 Priority: optional Section: ruby Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: i386 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: libc6 (>= 2.4), librrd4 (>= 1.4~rc2), libruby1.9.1 (>= 1.9.2.0) Filename: pool/main/r/rrdtool/librrd-ruby1.9.1_1.4.7-2ubuntu5_i386.deb Size: 10870 MD5sum: 960cbac0ecb785fe3470fe79865cabe8 SHA1: a41519f069ae81faf55fbd95184efcdb53172e5d SHA256: 44e0f94f7826c8c66fcf7febe2609d016de98a5974ac9f90ec79d332c7b3cebd Description: time-series data storage and display system (Ruby 1.9.1 interface) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: a9ec11657f8a42d378197e5464a5153a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librrd4 Priority: optional Section: libs Installed-Size: 623 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: i386 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: libc6 (>= 2.8), libcairo2 (>= 1.2.4), libdbi1 (>= 0.8.4), libglib2.0-0 (>= 2.12.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpng12-0 (>= 1.2.13-4), libxml2 (>= 2.7.4) Recommends: ttf-dejavu | ttf-bitstream-vera Filename: pool/main/r/rrdtool/librrd4_1.4.7-2ubuntu5_i386.deb Size: 128166 MD5sum: d6fedf13f4d3ef5f466bf4320ae48de9 SHA1: 2627d5382d3264536ce176d471a90cb44faaf8e8 SHA256: 655169df3325cc6c7c001afcb9497695452756dfa22b4707c14d049006685ea9 Description: time-series data storage and display system (runtime library) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: d5b7c32e4795a0b81d59077ab31ec1fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librrds-perl Priority: extra Section: perl Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: i386 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.1.3), librrd4 (>= 1.4~rc2) Filename: pool/main/r/rrdtool/librrds-perl_1.4.7-2ubuntu5_i386.deb Size: 19150 MD5sum: 4d5a60ad29bd408845a387c8b653fa5e SHA1: 92343a6ba99433bfb9ef4dc796feeed459eb7de0 SHA256: 4ca820c2e783835a019650fd533fe52d8100521f63d13f55431fe7981ef78dc5 Description: time-series data storage and display system (Perl interface, shared) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: a2d67b95f110e653c5279d1c9b8d0802 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: librsvg2-2 Priority: optional Section: libs Installed-Size: 414 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: librsvg Version: 2.40.2-1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libcroco3 (>= 0.6.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libpango-1.0-0 (>= 1.36.0), libpangocairo-1.0-0 (>= 1.36.0), libxml2 (>= 2.8.0) Pre-Depends: multiarch-support Recommends: librsvg2-common Suggests: librsvg2-bin Filename: pool/main/libr/librsvg/librsvg2-2_2.40.2-1_i386.deb Size: 90004 MD5sum: f21343d67d36719432a9c0ce44e49d84 SHA1: e120d88ca2914be7137ee8240f7b7af61d33d93f SHA256: c695a341b46f9195c746a403558ef77dedc3b2902ea88eab3c42f18a50e413a3 Description: SAX-based renderer library for SVG files (runtime) Multi-Arch: same Homepage: http://live.gnome.org/LibRsvg Description-md5: 5955c666a37a7cde845fec0579db4217 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: librsvg2-bin Priority: optional Section: graphics Installed-Size: 235 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: librsvg Version: 2.40.2-1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.6.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.2.0), librsvg2-2 (>= 2.40.2-1) Filename: pool/main/libr/librsvg/librsvg2-bin_2.40.2-1_i386.deb Size: 15490 MD5sum: dc0e3f6c071a239c9ed39fd334d95131 SHA1: 200ab26b9f27e8fffe29fbb4c9bb498a2e7ffac1 SHA256: 306b9d7d8941df2df73c29014c16a7f20bc5e64beb44bff4ed93459d30fb690a Description: command-line and graphical viewers for SVG files Multi-Arch: foreign Homepage: http://live.gnome.org/LibRsvg Description-md5: 5b2874a6506a4f661cb57262a5690742 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing, ubuntustudio-graphics Package: librsvg2-common Priority: optional Section: libs Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: librsvg Version: 2.40.2-1 Depends: libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), librsvg2-2 (= 2.40.2-1) Breaks: libgdk-pixbuf2.0-0 (<< 2.23.5-2), libgtk2.0-0 (<< 2.24.5-4) Filename: pool/main/libr/librsvg/librsvg2-common_2.40.2-1_i386.deb Size: 4962 MD5sum: f715a233631894132a10e107a32f3b4c SHA1: 69c9cb17c2d5dfcfa19757539ccbb670a062ec15 SHA256: ea250279f06b5dcb203286c01b1f0b51454fa1f9ee1abc7eafc2bda5bb717e6a Description: SAX-based renderer library for SVG files (extra runtime) Multi-Arch: same Homepage: http://live.gnome.org/LibRsvg Description-md5: ea3b9a976900e5b502f7a5919085cda4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: librsvg2-dbg Priority: extra Section: libdevel Installed-Size: 1116 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: librsvg Version: 2.40.2-1 Depends: librsvg2-2 (= 2.40.2-1) Filename: pool/main/libr/librsvg/librsvg2-dbg_2.40.2-1_i386.deb Size: 274344 MD5sum: e24450f9920af3653bfaddd24de562c6 SHA1: 68c18b0e7cb64289dde68b6f8a0ef379e4aeb0ff SHA256: 59d3e5340441781082f47225805a426433dc9097f7e9d5bdcd50a268e5f9fc2a Description: SAX-based renderer library for SVG files (debug) Homepage: http://live.gnome.org/LibRsvg Description-md5: 70e2b7a9cbb50f16c24118d4e3592ac7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librsvg2-dev Priority: optional Section: libdevel Installed-Size: 575 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: librsvg Version: 2.40.2-1 Depends: librsvg2-2 (= 2.40.2-1), librsvg2-common (= 2.40.2-1), gir1.2-rsvg-2.0 (= 2.40.2-1), libglib2.0-dev (>= 2.24.0), libgdk-pixbuf2.0-dev (>= 2.23.5-2), libcairo2-dev (>= 1.2.0) Suggests: librsvg2-doc Filename: pool/main/libr/librsvg/librsvg2-dev_2.40.2-1_i386.deb Size: 94660 MD5sum: 95609ea55fa53dbe1bb6bf902a052ccc SHA1: d69d74f3c75531efcb2cfc045eb367995f2d212c SHA256: 0d89fb51c927ac2d771c7b218cf1e912b05cacfc165b770138626aab796f2925 Description: SAX-based renderer library for SVG files (development) Homepage: http://live.gnome.org/LibRsvg Description-md5: 88fdcac4e12a294b5c6a4086d6f525b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librsvg2-doc Priority: optional Section: doc Installed-Size: 408 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: librsvg Version: 2.40.2-1 Replaces: librsvg2-dev (<< 2.34.2-2) Suggests: devhelp Breaks: librsvg2-dev (<< 2.34.2-2) Filename: pool/main/libr/librsvg/librsvg2-doc_2.40.2-1_all.deb Size: 28818 MD5sum: 5fe3906a203beefc0ece2ec80ab5c95c SHA1: 65be20f06adce0629ae14d8d4112a05105c92775 SHA256: f6151683ee0cbd3c09c84e7d18e20d83ad523a930d78503690dee049b0cb002d Description: SAX-based renderer library for SVG files (documentation) Homepage: http://live.gnome.org/LibRsvg Description-md5: 6df5f01db90053b5cc6ab1c054d5a182 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librsync-dbg Priority: extra Section: devel Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Andrey Rahmatullin Architecture: i386 Source: librsync Version: 0.9.7-10 Depends: librsync1 (= 0.9.7-10) Filename: pool/main/libr/librsync/librsync-dbg_0.9.7-10_i386.deb Size: 56848 MD5sum: 0e92843d515cc34e2be486719019cb34 SHA1: e8e42401e3dd9a177c2dfd85c99be3e0f12111cf SHA256: 48c5a9dcf0674a3024bf4a8b5553aa13fe69bac97f672685399533317749f752 Description: rsync remote-delta algorithm library (debug) Multi-Arch: same Homepage: http://librsync.sourceforge.net/ Description-md5: c878f4d081b7905f8b664534bc83b250 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librsync-dev Priority: optional Section: libdevel Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Andrey Rahmatullin Architecture: i386 Source: librsync Version: 0.9.7-10 Depends: librsync1 (= 0.9.7-10), libbz2-dev, libpopt-dev, zlib1g-dev Filename: pool/main/libr/librsync/librsync-dev_0.9.7-10_i386.deb Size: 6384 MD5sum: dbd78a302e5a3d6d57fae6047c9163f8 SHA1: 44dd169cecf3805446ccee5bb2a980e8eb5e66e6 SHA256: f80ede0bd749c14df4f9866a44b4ec2237ef8fae1888fdf6afac05aa7516a654 Description: rsync remote-delta algorithm library (development) Homepage: http://librsync.sourceforge.net/ Description-md5: ea307aaa7473a706ad1a66d631ffce5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librsync1 Priority: optional Section: libs Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Andrey Rahmatullin Architecture: i386 Source: librsync Version: 0.9.7-10 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libr/librsync/librsync1_0.9.7-10_i386.deb Size: 38952 MD5sum: 3242dbc0ddf75cb4ce4fe2e09a31e7c4 SHA1: b2589f7b1a81a47bb28f415ab837b599323aa22b SHA256: 9e3c6b7d97a8e92ee3c9510fd00fc91087893af6f16427e4366098a952149511 Description: rsync remote-delta algorithm library Multi-Arch: same Homepage: http://librsync.sourceforge.net/ Description-md5: 452126c42dad55ba12f1708398255636 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: librtmp-dev Priority: extra Section: libdevel Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: rtmpdump Version: 2.4+20121230.gitdf6c518-1 Depends: libgnutls-dev, librtmp0 (= 2.4+20121230.gitdf6c518-1) Filename: pool/main/r/rtmpdump/librtmp-dev_2.4+20121230.gitdf6c518-1_i386.deb Size: 66094 MD5sum: d16915b4123f639a6794ac9cb933699f SHA1: e5de27bbdf48c3bc9aaa4bea5b8909233859079c SHA256: eae99342cde8a4a2437d5e4ed48d6d7ecf74967a5cb5cd0e8ae3f468eac58f74 Description: toolkit for RTMP streams (development files) Homepage: http://rtmpdump.mplayerhq.hu/ Description-md5: 79d07fae9b1baefee35311b645a2b85f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: librtmp0 Priority: standard Section: libs Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: rtmpdump Version: 2.4+20121230.gitdf6c518-1 Depends: libc6 (>= 2.7), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/r/rtmpdump/librtmp0_2.4+20121230.gitdf6c518-1_i386.deb Size: 57218 MD5sum: d9cda506fce26d6c8b878f959d9f81a4 SHA1: 6241cd07c45383b05e326992e6aebbe327b7554f SHA256: c76d56a45675ff9e30645f4d024b99465a8b245f116d147bdd466f1461f941c3 Description: toolkit for RTMP streams (shared library) Multi-Arch: same Homepage: http://rtmpdump.mplayerhq.hu/ Description-md5: 2b2db094819fcb2c640b40d2367fbd10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libruby1.9.1 Priority: optional Section: libs Installed-Size: 12602 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: i386 Source: ruby1.9.1 Version: 1.9.3.484-2ubuntu1 Replaces: irb1.8, libdbm-ruby1.9.1, libgdbm-ruby1.9.1, libopenssl-ruby1.9.1, libreadline-ruby1.9.1, rdoc1.8 Provides: libdbm-ruby1.9.1, libgdbm-ruby1.9.1, libopenssl-ruby1.9.1, libreadline-ruby1.9.1 Depends: ruby1.9.1 (= 1.9.3.484-2ubuntu1), ca-certificates, libc6 (>= 2.11), libffi6 (>= 3.0.4), libgdbm3 (>= 1.8.3), libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libssl1.0.0 (>= 1.0.0), libtinfo5, libyaml-0-2, zlib1g (>= 1:1.2.3.3) Conflicts: irb1.8 (<< 1.9.1.378-2~), libdbm-ruby1.9.1, libgdbm-ruby1.9.1, libopenssl-ruby1.9.1, libreadline-ruby1.9.1, rdoc1.8 (<< 1.9.1.378-2~) Filename: pool/main/r/ruby1.9.1/libruby1.9.1_1.9.3.484-2ubuntu1_i386.deb Size: 2677746 MD5sum: 6ba0a6a7bd183514e6062a4e3fd2cea7 SHA1: 191ad45d647b359c80250531e2830f5d149c2b64 SHA256: 74615eaa010bf9ef9bc2c7abeb3ce40adac37e5ffdb158b186a451816e2c3c3f Description: Libraries necessary to run Ruby 1.9.1 Homepage: http://www.ruby-lang.org/ Description-md5: 311ad9570aaaa1e7d8a40da9af0fd26d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-font-meta Package: libruby1.9.1-dbg Priority: extra Section: debug Installed-Size: 5712 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: i386 Source: ruby1.9.1 Version: 1.9.3.484-2ubuntu1 Depends: libruby1.9.1 (= 1.9.3.484-2ubuntu1) Filename: pool/main/r/ruby1.9.1/libruby1.9.1-dbg_1.9.3.484-2ubuntu1_i386.deb Size: 4280898 MD5sum: cb824c03f7c7a6ed3a47a45dcbd20bc2 SHA1: d58f7973e8e0a7171bc29ff228546a2cae8cba02 SHA256: 0aec5990102fc248f79ab1fbd930d111664fe0361f1b8d63c868d6df15ca5515 Description: Debugging symbols for Ruby 1.9.1 Homepage: http://www.ruby-lang.org/ Description-md5: 51575fc8b43a3947fe9f91f839afdfca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libruby2.0 Priority: extra Section: libs Installed-Size: 13505 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: i386 Source: ruby2.0 Version: 2.0.0.484-1ubuntu2 Depends: libc6 (>= 2.11), libffi6 (>= 3.0.4), libgdbm3 (>= 1.8.3), libncursesw5 (>= 5.6+20070908), libreadline6 (>= 6.0), libssl1.0.0 (>= 1.0.1), libtinfo5, libyaml-0-2, zlib1g (>= 1:1.2.3.3), ruby2.0 (= 2.0.0.484-1ubuntu2), libjs-jquery Filename: pool/main/r/ruby2.0/libruby2.0_2.0.0.484-1ubuntu2_i386.deb Size: 2817900 MD5sum: d4b55bd941531f419520bb4abe5f2e86 SHA1: 5d391ae5a022bc657e493aaf811f37d2dbe863ba SHA256: 3a3613c2ddbcaab7f48f36630a609d281b568eb9aa06f589c8e74cb145c4772f Description: Libraries necessary to run Ruby 2.0 Multi-Arch: same Homepage: http://www.ruby-lang.org/ Description-md5: 2c1d3c8033e2e096c734aa0a471afced Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libs3-2 Priority: extra Section: net Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: libs3 Version: 2.0-2 Depends: libc6 (>= 2.7), libcurl3-gnutls (>= 7.16.2), libxml2 (>= 2.7.4) Filename: pool/main/libs/libs3/libs3-2_2.0-2_i386.deb Size: 53112 MD5sum: 01ec25fb59ae3d9d89568166e37bb844 SHA1: 40d685ceb567b9be1deb16122a2cdb580d16025d SHA256: 963d791d06678c72b7e03a39012d5f00937a62e02f0c5ca7ecbcea908a1f7ec5 Description: C Library and Tools for Amazon S3 Access Homepage: http://libs3.ischo.com/index.html Description-md5: eb85f7da5574dc8195aa83358c98e894 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libs3-dev Priority: extra Section: libdevel Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: libs3 Version: 2.0-2 Depends: libs3-2 (= 2.0-2) Filename: pool/main/libs/libs3/libs3-dev_2.0-2_i386.deb Size: 53894 MD5sum: b3841dc12c11448de761b7bce4726940 SHA1: 70b37ecdf6f0f78d7d3f0dea995cf41f2b22105b SHA256: 06f98e9ebc48f2663d0612dee09a7813968e71b7fe10989e2055e35f33a35358 Description: C Development Library for Amazon S3 Access Homepage: http://libs3.ischo.com/index.html Description-md5: e05795dcf95b10c133f29bd0403dc3c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsam-dev Priority: optional Section: libdevel Installed-Size: 337 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libsam4 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libsam-dev_2.3.3-1ubuntu1_i386.deb Size: 40540 MD5sum: e398f39537a8967e9b97e279dcb176da SHA1: d67ad68b2d70fc59d772596136d9e9d53971b301 SHA256: 1f9e9e8c9e1afaca7e8ea6a7ce2582fab33df92edb63c76b0f9ae8a9cc81c596 Description: Standards-based cluster framework, Sam devel files Description-md5: 9c6178809ce7e8ec665882456002cb5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsam4 Priority: optional Section: libs Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.16), libcmap4 (>= 2.3.3), libquorum5 (>= 2.3.3) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libsam4_2.3.3-1ubuntu1_i386.deb Size: 10796 MD5sum: cc36cf305c35f07e198146a287b06037 SHA1: 75698fcba1821de57728a66665bae7bf2e7dff81 SHA256: 5b334b8613276d1ae01f627a0d071bb862b9c29d0015a8a2e1cc953f04e64353 Description: Standards-based cluster framework, Sam library Description-md5: 018ac580935845d9472b83e0f158f58a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsamplerate0 Priority: optional Section: libs Installed-Size: 1495 Maintainer: Ubuntu Developers Original-Maintainer: Erik de Castro Lopo Architecture: i386 Source: libsamplerate Version: 0.1.8-7 Replaces: samplerate-programs (<< 0.1.8-3) Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/libs/libsamplerate/libsamplerate0_0.1.8-7_i386.deb Size: 938142 MD5sum: 231ac9def13161f8b726a149797b7efe SHA1: 993ff63eb25f4feef823d8320a80024de5b6b4e1 SHA256: 72001cadaa797d35a1b32616b8fb690fd3acc94ac1f8df2a882ff1c47ed63271 Description: Audio sample rate conversion library Multi-Arch: same Homepage: http://www.mega-nerd.com/SRC/ Description-md5: 1cbecccffb58dab56ae610f3dcd51386 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsamplerate0-dev Priority: optional Section: libdevel Installed-Size: 1629 Maintainer: Ubuntu Developers Original-Maintainer: Erik de Castro Lopo Architecture: i386 Source: libsamplerate Version: 0.1.8-7 Provides: libsamplerate-dev Depends: libsamplerate0 (= 0.1.8-7), pkg-config Conflicts: libsamplerate-dev Filename: pool/main/libs/libsamplerate/libsamplerate0-dev_0.1.8-7_i386.deb Size: 992782 MD5sum: 6a44ec67d158f6142ab3119e92cfc292 SHA1: 2b7bccf87c96ede9f752b2e1850aa11283afe28c SHA256: e824e1ecf9b5a6072284f29ddab6813fc88d22b3c3650ce5ffe2a0e312d7eddc Description: Development files for audio sample rate conversion Multi-Arch: same Homepage: http://www.mega-nerd.com/SRC/ Description-md5: fb8d920f7c94f9c8678b701dd5236969 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsane Priority: optional Section: libs Installed-Size: 8774 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: sane-backends Version: 1.0.23-3ubuntu3 Replaces: libsane-extras (<< 1.0.18.14) Depends: acl, adduser, libsane-common (= 1.0.23-3ubuntu3), udev | makedev, libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.15), libgphoto2-6 (>= 2.5.2), libgphoto2-port10 (>= 2.5.2), libieee1284-3, libjpeg8 (>= 8c), libtiff5 (>= 4.0.3), libusb-1.0-0 (>= 2:1.0.8), libv4l-0 (>= 0.5.0) Pre-Depends: multiarch-support Suggests: avahi-daemon, hplip, hpoj, libsane-extras, sane-utils (>= 1.0.23-3ubuntu3) Filename: pool/main/s/sane-backends/libsane_1.0.23-3ubuntu3_i386.deb Size: 1857520 MD5sum: 3d6b4c10bb9984aff533ebbde1c58976 SHA1: daa4e2a48823616f0eec47a772ce35fe65842797 SHA256: 4a497b1ec44a1044386776a85139a65d8d1ca4a21600699ff2a251f44a66abad Description: API library for scanners Multi-Arch: same Homepage: http://www.sane-project.org Description-md5: 2e25d5fd377d34639732efd0cee2566b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsane-common Priority: optional Section: libs Installed-Size: 3100 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: sane-backends Version: 1.0.23-3ubuntu3 Replaces: libsane (<< 1.0.22-4~) Filename: pool/main/s/sane-backends/libsane-common_1.0.23-3ubuntu3_i386.deb Size: 449620 MD5sum: 20acae82943b96d642bef51e331cd13e SHA1: b07b7eb5e3bce85c8bf7bab1be7be8fbb2c1bfbf SHA256: 7053895a88e6cb1e45cdb349d3098cab11495e81a6c59e0ad104ad2365a335e9 Description: API library for scanners -- documentation and support files Multi-Arch: foreign Homepage: http://www.sane-project.org Description-md5: 31f95687fe5e5d491a4cdaa5bfc6e2b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsane-dbg Priority: extra Section: libdevel Installed-Size: 7521 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: sane-backends Version: 1.0.23-3ubuntu3 Replaces: libsane-extras-dbg (<< 1.0.18.14) Depends: libsane (= 1.0.23-3ubuntu3) Suggests: libsane-extras-dbg Filename: pool/main/s/sane-backends/libsane-dbg_1.0.23-3ubuntu3_i386.deb Size: 6203170 MD5sum: c60afe17290251ef84220635ffa2b4d0 SHA1: 49b12e82c10f4ef1747943e14b31a36363f7f9fa SHA256: 6a5ac61b05235b1878b5b8c325788988ca848fd74b6eafe8507af81ac7b9b943 Description: API development library for scanners [debug symbols] Homepage: http://www.sane-project.org Description-md5: c47f04070c62e8ea2cfd6befb9133492 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsane-dev Priority: optional Section: libdevel Installed-Size: 12466 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: sane-backends Version: 1.0.23-3ubuntu3 Replaces: libsane-extras-dev (<< 1.0.18.14) Depends: libavahi-client-dev, libgphoto2-dev, libieee1284-3-dev, libjpeg-dev, libsane (= 1.0.23-3ubuntu3), libtiff5-dev, libusb-1.0-0-dev, libv4l-dev, pkg-config Suggests: libsane-extras-dev Filename: pool/main/s/sane-backends/libsane-dev_1.0.23-3ubuntu3_i386.deb Size: 2085426 MD5sum: a096cdc918b1b2a52aa2889ed747ddbb SHA1: bb9eddc6227625ef7762b9d0a87198c327b05a7d SHA256: 36a64f33f42c3491d6ad90a1eff87c870f3ecf425d38e74ccfbfba1cd8e046b8 Description: API development library for scanners [development files] Homepage: http://www.sane-project.org Description-md5: e6830c8c64fd71c7d57f14514612572c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsane-hpaio Priority: optional Section: libs Installed-Size: 1281 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: i386 Source: hplip Version: 3.14.3-0ubuntu3 Replaces: hplip (<< 3.10.6-3), hplip-data (<< 3.10.5-4ubuntu1) Depends: libc6 (>= 2.7), libcups2 (>= 1.6.0), libdbus-1-3 (>= 1.0.2), libhpmud0 Recommends: sane-utils, hplip (= 3.14.3-0ubuntu3) Breaks: hplip (<< 3.10.6-3), hplip-data (<< 3.10.5-4ubuntu1) Filename: pool/main/h/hplip/libsane-hpaio_3.14.3-0ubuntu3_i386.deb Size: 104604 MD5sum: 76f02e30426217e71d8b9eba45a840d9 SHA1: ebb2b20620365ff867a63fe6484b289ec1258924 SHA256: 873f7f5a33e7de411b645ca81f320ba12d102d48f76400478d4af3e3fead621d Description: HP SANE backend for multi-function peripherals Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 208dafbff3569d9b6dbc7f0b94df7754 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsasl2-2 Priority: standard Section: libs Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: i386 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Replaces: libsasl2 Depends: libc6 (>= 2.15), libsasl2-modules-db (>= 2.1.25.dfsg1-17build1) Pre-Depends: multiarch-support Recommends: libsasl2-modules (>= 2.1.25.dfsg1-17build1) Breaks: postfix (<= 2.8.3-1), slapd (<= 2.4.25-3) Filename: pool/main/c/cyrus-sasl2/libsasl2-2_2.1.25.dfsg1-17build1_i386.deb Size: 54960 MD5sum: 17c57577504e5653e13d23a68f813685 SHA1: 21dc7d81636da655658520b6a1644f03df24232c SHA256: ef3c3c1604a812c9440989266e6a4698d62d0b6e870dbf3bb22fc5c6aba9deb2 Description: Cyrus SASL - authentication abstraction library Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: 3c521c98e6199cc3a38294bbf7517d23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libsasl2-dev Priority: optional Section: libdevel Installed-Size: 693 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: i386 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libsasl2-2 (= 2.1.25.dfsg1-17build1), libc6-dev Filename: pool/main/c/cyrus-sasl2/libsasl2-dev_2.1.25.dfsg1-17build1_i386.deb Size: 299654 MD5sum: 3d0bb489762c8373e065af9989d41a6a SHA1: 456ad093b2ce799394266faf46652803cee1ced3 SHA256: becb0718ced653744ae940f90d26d738f8addc1e24802b8d09f00824b99cb79c Description: Cyrus SASL - development files for authentication abstraction library Homepage: http://www.cyrusimap.org/ Description-md5: d7f32bc5a3915152e13a4ce1d8983dbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsasl2-modules Priority: standard Section: devel Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: i386 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0) Suggests: libsasl2-modules-otp, libsasl2-modules-ldap, libsasl2-modules-sql, libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal Filename: pool/main/c/cyrus-sasl2/libsasl2-modules_2.1.25.dfsg1-17build1_i386.deb Size: 59288 MD5sum: 3434293db9b651b154fd8dd627bf904d SHA1: 6da9a72bcad14a77e8be1da1302983b9163249c5 SHA256: 958e8753cf5995268604db9685fe0538fc966831a2b5beec16d463e3ff01d4b5 Description: Cyrus SASL - pluggable authentication modules Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: da76219b54f65f70b0087c7723cb0ad6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libsasl2-modules-db Priority: standard Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: i386 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Replaces: libsasl2-2 (<< 2.1.25.dfsg1-9~), libsasl2-3 (<< 2.1.26.dfsg1-2~), libsasl2-modules (<< 2.1.26.dfsg1-6~) Depends: libc6 (>= 2.4), libdb5.3 Breaks: libsasl2-2 (<< 2.1.25.dfsg1-9~), libsasl2-3 (<< 2.1.26.dfsg1-2~) Filename: pool/main/c/cyrus-sasl2/libsasl2-modules-db_2.1.25.dfsg1-17build1_i386.deb Size: 14674 MD5sum: 9d37cfb215846e377877145746fb09fa SHA1: fe108a55a90befee57bb52857676bbe1369376c4 SHA256: 8e66663b80cb27334c26130f94df52d997963aff19d4766e363f087b4c7dd963 Description: Cyrus SASL - pluggable authentication modules (DB) Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: c4f2723280fa2cd92e5cd59c13f3ab2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libsasl2-modules-gssapi-heimdal Priority: extra Section: libs Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: i386 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libsasl2-modules (= 2.1.25.dfsg1-17build1), libc6 (>= 2.4), libgssapi3-heimdal (>= 1.4.0+git20110226) Conflicts: libsasl2-modules-gssapi-mit Filename: pool/main/c/cyrus-sasl2/libsasl2-modules-gssapi-heimdal_2.1.25.dfsg1-17build1_i386.deb Size: 16642 MD5sum: 2ca44dca8f3793ca1d086ea1f423e8e0 SHA1: e74484ba2305f41cded7de29971ff7ed617d1d57 SHA256: 9a0db0d5d2737b1fd908194463ecab58a9be0bb8a8a0e6596a6e2966d1600dba Description: Pluggable Authentication Modules for SASL (GSSAPI) Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: 0897adbbfbdac08aea71f426460e48d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsasl2-modules-gssapi-mit Priority: optional Section: libs Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: i386 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libsasl2-modules (= 2.1.25.dfsg1-17build1), libc6 (>= 2.4), libgssapi-krb5-2 (>= 1.10+dfsg~), libssl1.0.0 (>= 1.0.0) Conflicts: libsasl2-modules-gssapi-heimdal Filename: pool/main/c/cyrus-sasl2/libsasl2-modules-gssapi-mit_2.1.25.dfsg1-17build1_i386.deb Size: 42394 MD5sum: 0347fb3295332e93b7359a0ff0879237 SHA1: 4140663c1322fbd33792e0c4d7f63f3bbc7697e4 SHA256: 3678c7a86dd99f6fe39bcae3f11757e0ca3c773ee3fffe28382a3f78f39d70ff Description: Cyrus SASL - pluggable authentication modules (GSSAPI) Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: b1eb80e47fbc2a5ec747847f924fba48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsasl2-modules-sql Priority: optional Section: libs Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: i386 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Depends: libsasl2-modules (= 2.1.25.dfsg1-17build1), libc6 (>= 2.4), libmysqlclient18 (>= 5.5.13-1), libpq5, libsqlite3-0 (>= 3.5.9) Filename: pool/main/c/cyrus-sasl2/libsasl2-modules-sql_2.1.25.dfsg1-17build1_i386.deb Size: 15462 MD5sum: 791cd51e9cc42a7f91f7e9fdeb1dd171 SHA1: 4b502e89f636c2ae682815633ad631b65b454dcf SHA256: a5324fed629f90c67d855fd2d3cb1d46dd8be2199188777ef4adf03e383c2a78 Description: Cyrus SASL - pluggable authentication modules (SQL) Multi-Arch: same Homepage: http://www.cyrusimap.org/ Description-md5: 1d3931918dd7a4d68b405fdd4c3c75e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsaxon-java Priority: optional Section: libs Installed-Size: 1196 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1:6.5.5-10 Suggests: libjdom1-java, libsaxon-java-doc Filename: pool/main/libs/libsaxon-java/libsaxon-java_6.5.5-10_all.deb Size: 1075230 MD5sum: c5f290f5f90640c027bb16b5a0f93f00 SHA1: 0d42032d0ce0f6778e311027bd41874c5f105ef1 SHA256: f41e42cc1007af1cbf6b77b261828d4d7bc6d1ad703e307a8025d215a050d2d1 Description: Saxon XSLT Processor Homepage: http://saxon.sourceforge.net/ Description-md5: 8d3cd12834374c9d7a9d689e73416698 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsaxon-java-doc Priority: optional Section: doc Installed-Size: 12723 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libsaxon-java Version: 1:6.5.5-10 Recommends: default-jdk-doc Filename: pool/main/libs/libsaxon-java/libsaxon-java-doc_6.5.5-10_all.deb Size: 1319632 MD5sum: bfa78509cbb15070823ac08190d4e9af SHA1: 66df8b4f9b2e5960cea7490f6811472989d2831a SHA256: 84fffec03c66a007d0d6dbaa910071ae7ddbe3fc6d0bccfe32d9020b405d628b Description: Saxon XSLT Processor's documentation and javadoc Homepage: http://saxon.sourceforge.net/ Description-md5: d675ec7ecdce1eca6749f3588243bc56 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsaxon-java-gcj Priority: optional Section: libs Installed-Size: 1964 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: i386 Source: libsaxon-java Version: 1:6.5.5-10 Depends: libsaxon-java (>= 1:6.5.5-10), libgcj-common (>> 1:4.1.1-13), libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.6.4-1~) Filename: pool/main/libs/libsaxon-java/libsaxon-java-gcj_6.5.5-10_i386.deb Size: 607028 MD5sum: 1df6be02c82c2100a99b43aa6f8b37bc SHA1: 76be743ae9f44e9d26d50b8f89a772ee9b75907c SHA256: b420c2bf98e37f03ae732d7243f5083dbb053f848e779da7f8574b35ec4ad00b Description: Saxon XSLT Processor (native code) Homepage: http://saxon.sourceforge.net/ Description-md5: a239eec9ea8235cd3a4a53f207543924 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsaxonb-java Priority: optional Section: libs Installed-Size: 4239 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: saxonb Version: 9.1.0.8+dfsg-1 Depends: libdom4j-java, libjdom1-java, libxom-java Suggests: libsaxonb-java-doc Filename: pool/main/s/saxonb/libsaxonb-java_9.1.0.8+dfsg-1_all.deb Size: 3817978 MD5sum: bfe4e7fdd3b53fa6d343a9a58e4144ff SHA1: ffffd58f767c31adac8c8c96f9338e57b8eb9aca SHA256: 1811a60f230a1e6c7afa69f7639d87db9fa26e087cc42860161cbf6f8d916630 Description: Saxon-B XSLT Processor Homepage: http://saxon.sourceforge.net/ Description-md5: 23e56ce47df259bf67e4f57d29b26a29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsaxonb-java-doc Priority: optional Section: doc Installed-Size: 37292 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: saxonb Version: 9.1.0.8+dfsg-1 Filename: pool/main/s/saxonb/libsaxonb-java-doc_9.1.0.8+dfsg-1_all.deb Size: 3884598 MD5sum: 81b97ec539b88e2d5232b3e5db94ea6f SHA1: 3052a207d2bcba00b774aebf1f8b4ebb6555f66d SHA256: f4426aa5766d13c116f9ef32ec0e102a2ebb38e34028a2143da4076cf293df97 Description: Saxon-B XSLT Processor's documentation and javadoc Homepage: http://saxon.sourceforge.net/ Description-md5: 33024b6813f6f90a9f5f78f6e4a4aa65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsbc-dev Priority: extra Section: libdevel Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: i386 Source: sbc Version: 1.1-2ubuntu2 Depends: libsbc1 (= 1.1-2ubuntu2) Filename: pool/main/s/sbc/libsbc-dev_1.1-2ubuntu2_i386.deb Size: 28176 MD5sum: 84b2105f59b098a105294007752e22b2 SHA1: 1010a6c51a4e9e82777fb29f5da18d6a89fb8098 SHA256: 6408136bf3386e5bc4eb8aa3c6c0201ac4a124369d66db8f8657c92e54716384 Description: Sub Band CODEC library - development Multi-Arch: same Homepage: http://www.bluez.org/ Description-md5: 38e061ec79fb63c55d91edf9eb66a3c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsbc1 Priority: extra Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: i386 Source: sbc Version: 1.1-2ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/s/sbc/libsbc1_1.1-2ubuntu2_i386.deb Size: 28044 MD5sum: 2869efffef6bcf2565aa7237d79011f4 SHA1: 3de31a2edd904a921171d23644b3ca83e614718b SHA256: 64172ec4b1a6cf4c1f267addf51a814e669b99d4d01c1548dc48e9be95545ebd Description: Sub Band CODEC library - runtime Multi-Arch: same Homepage: http://www.bluez.org/ Description-md5: 14dc0951495c0a2137e6d52233bd34d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libsbuild-dev Priority: optional Section: admin Installed-Size: 8344 Maintainer: Ubuntu Developers Original-Maintainer: Debian buildd-tools Developers Architecture: i386 Source: schroot Version: 1.6.8-1ubuntu1 Depends: pkg-config (>= 0.14.0) Suggests: schroot-dbg, libsbuild-doc Filename: pool/main/s/schroot/libsbuild-dev_1.6.8-1ubuntu1_i386.deb Size: 664240 MD5sum: 593453b3ebf225fd90db39179ef408c6 SHA1: 470a5de487742810c04528bc11cd77c08a8494de SHA256: f675bc40032ccdc231b8804b796fb67f01e44f1e55948789dea9c21cd4ae8ef3 Description: development files for the Debian source builder Description-md5: 1370c5693ddfe4de869fc74af6d3bbbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsbuild-doc Priority: optional Section: devel Installed-Size: 15031 Maintainer: Ubuntu Developers Original-Maintainer: Debian buildd-tools Developers Architecture: all Source: schroot Version: 1.6.8-1ubuntu1 Suggests: libsbuild-dev Filename: pool/main/s/schroot/libsbuild-doc_1.6.8-1ubuntu1_all.deb Size: 7213402 MD5sum: 17f093bc11fdbec53bf35748bd6eafdd SHA1: 90364e566520659e45dcd3d5f6d0fe511a8d55c7 SHA256: 21c56f651da92430cd98d7d21ec497543fe550557db256fa948e1f851121f987 Description: development documentation for the Debian source builder Description-md5: cabf2c030142282f4c6b7e468db3f67d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsctp-dev Priority: optional Section: libdevel Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: i386 Source: lksctp-tools Version: 1.0.15+dfsg-1 Depends: libsctp1 (= 1.0.15+dfsg-1), libc6-dev | libc-dev Filename: pool/main/l/lksctp-tools/libsctp-dev_1.0.15+dfsg-1_i386.deb Size: 66146 MD5sum: 758917426eef1deeda656cc206906d76 SHA1: f729a78f781d47fa5711ce0955b8bc0957b78657 SHA256: 9ed77ded2a1d26faf3648246b1992f5bcaa254a5e45b0fea85f9d96b166e8202 Description: user-space access to Linux Kernel SCTP - development files Homepage: http://lksctp.sf.net/ Description-md5: ede636dd4b26a5e235ca2b4c203d4fb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsctp1 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: i386 Source: lksctp-tools Version: 1.0.15+dfsg-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: lksctp-tools Filename: pool/main/l/lksctp-tools/libsctp1_1.0.15+dfsg-1_i386.deb Size: 9358 MD5sum: 25218ac66996536e4c5ed58a29138408 SHA1: dbfd12c0a0a3e988cb018dfd91bf17824e9b069d SHA256: 17db11d3386e123e32fb9d41d027ffd162d60439bed31f4bb43d874233962da5 Description: user-space access to Linux Kernel SCTP - shared library Multi-Arch: same Homepage: http://lksctp.sf.net/ Description-md5: 266860b8675a1f8fa6416cfbfb88804e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsdl1.2-dbg Priority: extra Section: debug Installed-Size: 742 Maintainer: Ubuntu Developers Original-Maintainer: Debian SDL packages maintainers Architecture: i386 Source: libsdl1.2 Version: 1.2.15-8ubuntu1 Depends: libsdl1.2debian (= 1.2.15-8ubuntu1) Filename: pool/main/libs/libsdl1.2/libsdl1.2-dbg_1.2.15-8ubuntu1_i386.deb Size: 633794 MD5sum: 26fb0c178daf796fc57aca04534d64c2 SHA1: 9fcb01cf9f7082b0e10897817f709f6f9715c1e2 SHA256: 8ca4c8fe64424c717a4ea2644dafff15be94d1682dbd2ed61645f59960ca56cd Description: Simple DirectMedia Layer debug files Multi-Arch: same Homepage: http://www.libsdl.org/ Description-md5: 784ef1eacd353c10222d88e70e5ce69a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsdl1.2-dev Priority: optional Section: libdevel Installed-Size: 2452 Maintainer: Ubuntu Developers Original-Maintainer: Debian SDL packages maintainers Architecture: i386 Source: libsdl1.2 Version: 1.2.15-8ubuntu1 Replaces: libsdl-dev Provides: libsdl-dev Depends: libsdl1.2debian (= 1.2.15-8ubuntu1), libasound2-dev, libcaca-dev, libglu1-mesa-dev | libglu-dev, libpulse-dev, libx11-dev, libxext-dev Conflicts: libsdl-dev Filename: pool/main/libs/libsdl1.2/libsdl1.2-dev_1.2.15-8ubuntu1_i386.deb Size: 698706 MD5sum: 50a3bf7f114c04613a29eeb7be80c2c3 SHA1: 448fc3e04068a6db348be67d42117c7a890d5093 SHA256: 692b081142ddc0de86c7dfc81693594b61d46ea7d41267df50a493f47625a47f Description: Simple DirectMedia Layer development files Homepage: http://www.libsdl.org/ Description-md5: 9a82f59c5790721baad7ffc5f181d3d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsdl1.2debian Priority: optional Section: libs Installed-Size: 502 Maintainer: Ubuntu Developers Original-Maintainer: Debian SDL packages maintainers Architecture: i386 Source: libsdl1.2 Version: 1.2.15-8ubuntu1 Replaces: libsdl1.2debian-all, libsdl1.2debian-alsa, libsdl1.2debian-esd, libsdl1.2debian-nas, libsdl1.2debian-oss, libsdl1.2debian-pulseaudio Depends: libasound2 (>= 1.0.16), libc6 (>= 2.15), libcaca0 (>= 0.99.beta17-1), libpulse0 (>= 1:0.99.1), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Conflicts: libsdl1.2, libsdl1.2-all, libsdl1.2-esd, libsdl1.2-nas, libsdl1.2-oss, libsdl1.2debian-all, libsdl1.2debian-alsa, libsdl1.2debian-esd, libsdl1.2debian-nas, libsdl1.2debian-oss, libsdl1.2debian-pulseaudio Filename: pool/main/libs/libsdl1.2/libsdl1.2debian_1.2.15-8ubuntu1_i386.deb Size: 165816 MD5sum: 8e7c5c4f8850bab57807140a7ef5ce31 SHA1: 1eb9a39c5487073a6376958ea7dfb90a6987bae5 SHA256: ffba000481b25757599fe0c89e3d87cef5d6edbab68083db55b6798bcbf1c50f Description: Simple DirectMedia Layer Multi-Arch: same Homepage: http://www.libsdl.org/ Description-md5: 6c0109f858252f338d03e8eed3ed575a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop Package: libsearchclient-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libsearchclient0 (= 0.7.8-1ubuntu2), libstreamanalyzer-dev (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/libsearchclient-dev_0.7.8-1ubuntu2_i386.deb Size: 4914 MD5sum: 1c1bc6fc79cb1981fd56f0022b7cdeba SHA1: 2e4ad3bdb74536efc818211476376cd6f4c4327f SHA256: 13f0586f07dbe4dcb42476285b4517690751f0543102ad5984ce27fcafb21953 Description: development files for libsearchclient Homepage: http://strigi.sourceforge.net Description-md5: a0d8b45d519d86d69061aa992ac827e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsearchclient0 Priority: optional Section: libs Installed-Size: 104 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: strigi Version: 0.7.8-1ubuntu2 Replaces: strigi-daemon (<< 0.3.11-1) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Filename: pool/main/s/strigi/libsearchclient0_0.7.8-1ubuntu2_i386.deb Size: 28416 MD5sum: d4fc824976e2ea21ed4d835746e9d04d SHA1: 4c9a015f56f7288a9b1f227d4007853481f6deca SHA256: 83ae4cfd44b365168306579fe09e399199da1a3647ceb64d1d6c3bd130f6a6ab Description: searchclient library for Strigi Desktop Search Homepage: http://strigi.sourceforge.net Description-md5: 53a1e7815d9bb7f9356a6a3c52d599c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libseccomp-dev Priority: optional Section: libdevel Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Source: libseccomp Version: 2.1.0+dfsg-1 Depends: libseccomp2 (= 2.1.0+dfsg-1) Suggests: seccomp Filename: pool/main/libs/libseccomp/libseccomp-dev_2.1.0+dfsg-1_i386.deb Size: 23256 MD5sum: d60927cd0c1c4f54dfece64e3599e717 SHA1: de038c6f8adb6e3c40039317fa0b11935ef8d459 SHA256: 9152dfc82593ea65af4a547d0b5340ba7ffb0e58ab2cd85b9bf08e49c8c161a5 Description: high level interface to Linux seccomp filter (development files) Multi-Arch: same Homepage: https://sourceforge.net/projects/libseccomp/ Description-md5: e5fdb6fdd319bc8b5c43a1e29c7d62d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libseccomp2 Priority: optional Section: libs Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Source: libseccomp Version: 2.1.0+dfsg-1 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/libs/libseccomp/libseccomp2_2.1.0+dfsg-1_i386.deb Size: 32150 MD5sum: b30547071f3bf0da7c1f5f4ad40b999a SHA1: b62fda730e1f5f87e26c1f4d8aada852147cae47 SHA256: b091ea1c8282519938b369b9ed7ba84ab0923be329f816c6acc93979d2672b00 Description: high level interface to Linux seccomp filter Multi-Arch: same Homepage: https://sourceforge.net/projects/libseccomp/ Description-md5: 7ee97a8161e83bfebc75870eb92bde51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libsecret-1-0 Priority: optional Section: libs Installed-Size: 349 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libsecret Version: 0.16-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libgcrypt11 (>= 1.5.1), libglib2.0-0 (>= 2.37.3), libsecret-common Pre-Depends: multiarch-support Filename: pool/main/libs/libsecret/libsecret-1-0_0.16-0ubuntu1_i386.deb Size: 86906 MD5sum: a99e076132f61fb3ac411b6bc2da5d8a SHA1: f1347a510b586a82ddad47859cd16150be3ebb72 SHA256: dbc2a62539b4d85d3e8a3c78ca2cef60b90bf281a00f1db8fc0fe492b5bc5d62 Description: Secret store Multi-Arch: same Homepage: https://live.gnome.org/Libsecret Description-md5: 0896289b56498e648332c5193d208d4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsecret-1-dev Priority: optional Section: libdevel Installed-Size: 2031 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libsecret Version: 0.16-0ubuntu1 Depends: libsecret-1-0 (= 0.16-0ubuntu1), gir1.2-secret-1 (= 0.16-0ubuntu1), libglib2.0-dev Filename: pool/main/libs/libsecret/libsecret-1-dev_0.16-0ubuntu1_i386.deb Size: 168008 MD5sum: 4b631f289eed5a824aa552392e1db6ab SHA1: 9257f2b95c9e07281719d3e7d620a5773bcca62d SHA256: 4efff2bf680c94a86830cdc4c0f354144b6498ecc0900bdbae4f5c9a58e39a53 Description: Secret store (development files) Homepage: https://live.gnome.org/Libsecret Description-md5: f5f75bda0b2ffe1fa8b2776e2fe6dba2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsecret-common Priority: optional Section: libs Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libsecret Version: 0.16-0ubuntu1 Filename: pool/main/libs/libsecret/libsecret-common_0.16-0ubuntu1_all.deb Size: 4166 MD5sum: c092937ee0456b075cbe376df968aece SHA1: 6fffab957bb905e0468588ecc908afeb808dc7fb SHA256: 7354e83efe3e97d06ae4b5bd9c820314a47f8f23ad00247cef28bb19146236a9 Description: Secret store (common files) Multi-Arch: foreign Homepage: https://live.gnome.org/Libsecret Description-md5: 2575f6062ae195676927b0e3721dc11d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libselinux1 Priority: required Section: libs Installed-Size: 190 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: i386 Source: libselinux Version: 2.2.2-1 Depends: libc6 (>= 2.8), libpcre3 Pre-Depends: multiarch-support Filename: pool/main/libs/libselinux/libselinux1_2.2.2-1_i386.deb Size: 56594 MD5sum: ec5f6f57166f089b5e484fb2416725b2 SHA1: c24eb5e6d4c8f69df331f57cc166263bd82ba07e SHA256: cf964b87dd37d51b368dc7ebaa1c774811202bb190cbf4f6dca9def7035767d3 Description: SELinux runtime shared libraries Multi-Arch: same Homepage: http://userspace.selinuxproject.org/ Description-md5: 90f6e1cb06c527bc3fc11ec6f969c59c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libselinux1-dev Priority: optional Section: libs Installed-Size: 470 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: i386 Source: libselinux Version: 2.2.2-1 Provides: libselinux-dev Depends: libselinux1 (= 2.2.2-1), libsepol1-dev (>= 2.2), libpcre3-dev Conflicts: libselinux-dev Filename: pool/main/libs/libselinux/libselinux1-dev_2.2.2-1_i386.deb Size: 120980 MD5sum: f882bdff29050992209e9c0e854e9409 SHA1: 0ce3ee44ae1cf01beea4d4c3ca390eaa6c364cd2 SHA256: de6d22052c744c0734488678da021d1748aa7f78ea2936d52e4e2a28ad42ff9b Description: SELinux development headers Multi-Arch: same Homepage: http://userspace.selinuxproject.org/ Description-md5: ca6eeba78d95ecb95827216f2b16ab42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsemanage-common Priority: required Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: all Source: libsemanage Version: 2.2-1 Replaces: libsemanage1 (<= 2.0.41-1), libsemanage1-dev (<< 2.1.6-3~) Breaks: libsemanage1 (<= 2.0.41-1), libsemanage1-dev (<< 2.1.6-3~) Filename: pool/main/libs/libsemanage/libsemanage-common_2.2-1_all.deb Size: 6488 MD5sum: 39f4bef23b2f24415e6d6460bc87b518 SHA1: cc1165aec411c062166398a50618799b61f87b00 SHA256: dd4880d8275104496f6f8e836be119d5621242a66525424f596b641e4ef57e71 Description: Common files for SELinux policy management libraries Multi-Arch: foreign Homepage: http://userspace.selinuxproject.org/ Description-md5: c7a0a093650c85e838f42492add9b46b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libsemanage1 Priority: required Section: libs Installed-Size: 261 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: i386 Source: libsemanage Version: 2.2-1 Depends: libsemanage-common (= 2.2-1), libaudit1 (>= 1:2.2.1), libbz2-1.0, libc6 (>= 2.8), libselinux1 (>= 2.1.12), libsepol1 (>= 2.1.4), libustr-1.0-1 (>= 1.0.4) Pre-Depends: multiarch-support Filename: pool/main/libs/libsemanage/libsemanage1_2.2-1_i386.deb Size: 84172 MD5sum: 0ff2a7cdaea7a6c269c30d5faca4d2b8 SHA1: c9daca2551c7fdaad3f8b3812fd917d5024b5bf9 SHA256: 3e30dbf668857402d1837a6ad2660a4018e6323359115b89a9e7f883f50fd96d Description: SELinux policy management library Multi-Arch: same Homepage: http://userspace.selinuxproject.org/ Description-md5: 8998b538051f37f69c5f1bf9a005fa56 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libsemanage1-dev Priority: optional Section: libdevel Installed-Size: 453 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: i386 Source: libsemanage Version: 2.2-1 Provides: libsemanage-dev Depends: libbz2-dev, libselinux1-dev (>= 2.2), libsemanage1 (= 2.2-1), libsepol1-dev (>= 2.2), libustr-dev Conflicts: libsemanage-dev Filename: pool/main/libs/libsemanage/libsemanage1-dev_2.2-1_i386.deb Size: 121086 MD5sum: a1467cd067e131d553a7d5f27fdab330 SHA1: 7a840cbc2584fcf4ac9e9f713a8e6d36154a0e09 SHA256: a1d616c237269604ef91e185f8d18c4a25ffcf1e307a0eeb15a363164f944e28 Description: Header files and libraries for SELinux policy manipulation Homepage: http://userspace.selinuxproject.org/ Description-md5: 303bd4372e6052211e2f9b4e60af2b0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsensors4 Priority: optional Section: libs Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: lm-sensors Version: 1:3.3.4-2ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Suggests: lm-sensors Filename: pool/main/l/lm-sensors/libsensors4_3.3.4-2ubuntu1_i386.deb Size: 26084 MD5sum: 3a4d22223b8d74bc3bd871763ccf2dad SHA1: e334dce5457269cfe78f4c237e3952d4232edeea SHA256: 036cdd359a4b24e48b70630fd4dac8611c54b1aa2a0ac3c8e1190acdaf46b6a8 Description: library to read temperature/voltage/fan sensors Multi-Arch: same Homepage: http://www.lm-sensors.org Description-md5: 25f0ebc4e1333cbfb3f357cbcc863500 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsensors4-dev Priority: extra Section: libdevel Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: lm-sensors Version: 1:3.3.4-2ubuntu1 Depends: libsensors4 (= 1:3.3.4-2ubuntu1) Conflicts: libsensors-dev, lm-sensors (<< 1:3.1.1-6) Filename: pool/main/l/lm-sensors/libsensors4-dev_3.3.4-2ubuntu1_i386.deb Size: 31540 MD5sum: a456e08fbdf663a61c0874a58c0031b8 SHA1: c90077d26b1172ccf6d1cd4789160a18df61f426 SHA256: 49bbd61698e5734974063a79c783b6c14ff902f69f5cee6e888a9cc1dbc7e3f1 Description: lm-sensors development kit Homepage: http://www.lm-sensors.org Description-md5: a7b36e26f606231275ab8e94321a588d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsepol1 Priority: required Section: libs Installed-Size: 322 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: i386 Source: libsepol Version: 2.2-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libs/libsepol/libsepol1_2.2-1_i386.deb Size: 118498 MD5sum: 2bfdfe55cb3a3e615d18a4ff4654fbad SHA1: 073aaa013860df990805d5473c446c57752ac364 SHA256: 386be5292009850413640bf556d92ae1d73aa90aaf1d04de01137ea923193c92 Description: SELinux library for manipulating binary security policies Multi-Arch: same Homepage: http://userspace.selinuxproject.org/ Description-md5: d569fae7efa3328b3d40879b104d9a63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libsepol1-dev Priority: optional Section: libdevel Installed-Size: 602 Maintainer: Ubuntu Developers Original-Maintainer: Debian SELinux maintainers Architecture: i386 Source: libsepol Version: 2.2-1 Provides: libsepol-dev Depends: libsepol1 (= 2.2-1) Conflicts: libsepol-dev Filename: pool/main/libs/libsepol/libsepol1-dev_2.2-1_i386.deb Size: 182968 MD5sum: 20aa1e7d34b2215163f87a0993ad6a87 SHA1: 79861262c302d8d6edd2439b5638e2ed6471a71b SHA256: beee2f2207bb13f6972ffaf0cd606fcb2d770ab403a1239e1098e693c2ab462b Description: SELinux binary policy manipulation library and development files Homepage: http://userspace.selinuxproject.org/ Description-md5: df6f84858afaf99b7b289c39fa4b8376 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libserf-1-1 Priority: optional Section: libs Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Source: serf Version: 1.3.3-1 Depends: libapr1 (>= 1.4.8-2~), libaprutil1 (>= 1.2.7+dfsg), libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/s/serf/libserf-1-1_1.3.3-1_i386.deb Size: 42050 MD5sum: d23a60497621d933ae12f46f550e7f57 SHA1: 59e3e60b84243f644c1feff99b0aa1dc9e3d9f96 SHA256: a16e5e99b33eaab1e704445913462369afa713920c67c53dfc1703890043376f Description: high-performance asynchronous HTTP client library Multi-Arch: same Homepage: http://code.google.com/p/serf/ Description-md5: 0ddd0a211e1720f4d5dc567d33bbeb7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libserf-dev Priority: optional Section: libdevel Installed-Size: 283 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Source: serf Version: 1.3.3-1 Depends: libserf-1-1 (= 1.3.3-1), libapr1-dev, libaprutil1-dev Filename: pool/main/s/serf/libserf-dev_1.3.3-1_i386.deb Size: 76834 MD5sum: 770cd0302ead3ef23b1cb38164d10065 SHA1: 47e5d3e1537937b94d8f1cf9433a40081cb7f94f SHA256: 9be49e5f75e32339437db73c9e1bec5495a13eb06e96dff18f63940e11dd772d Description: high-performance asynchronous HTTP client library headers Homepage: http://code.google.com/p/serf/ Description-md5: 1d5e42006c42271fcb2927cdcd32b348 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libserf1-dbg Priority: extra Section: debug Installed-Size: 332 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Source: serf Version: 1.3.3-1 Provides: libserf-dbg Depends: libserf-1-1 (= 1.3.3-1) Filename: pool/main/s/serf/libserf1-dbg_1.3.3-1_i386.deb Size: 94494 MD5sum: d304cd698de495d2b3ef533050642702 SHA1: 767a7b4ac5cf31b61cf9b736269b3227a3213ace SHA256: 9640a224766a4cdc59746113f8371c3211f7a297345854da0d30b4a9480007c2 Description: high-performance asynchronous HTTP client library debugging symbols Multi-Arch: same Homepage: http://code.google.com/p/serf/ Description-md5: 0a1eb608f55c38507d3fe817f7ab1a0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libservlet3.0-java Priority: optional Section: java Installed-Size: 481 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Filename: pool/main/t/tomcat7/libservlet3.0-java_7.0.52-1_all.deb Size: 292818 MD5sum: 042d1cad0985e2b98b6521995a619970 SHA1: d32ba0013d8064bd134db7df17ecf0e395f75787 SHA256: 697177f2a0aa3676600f0d8f69454010dd13d0fcb04de4b8bd83375c03fd2d27 Description: Servlet 3.0 and JSP 2.2 Java API classes Homepage: http://tomcat.apache.org Description-md5: 53f7075916141a8eb225df97286c9451 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: libservlet3.0-java-doc Priority: optional Section: doc Installed-Size: 2942 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Suggests: libservlet3.0-java (>= 7.0.52-1) Filename: pool/main/t/tomcat7/libservlet3.0-java-doc_7.0.52-1_all.deb Size: 192124 MD5sum: ad92662c5d1515182d63e96e29cb01a3 SHA1: e829f7f6884b45d99d38bbb48f6bdaebd4b2fdbc SHA256: 68087ef752eeaca6d541e89a74416441331c5fd639e599990e97170486530d62 Description: Servlet 3.0 and JSP 2.2 Java API documentation Homepage: http://tomcat.apache.org Description-md5: 105d3349377c356c2f157766657d4639 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsexy-dev Priority: optional Section: libdevel Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Riccardo Setti Architecture: i386 Source: libsexy Version: 0.1.11-2ubuntu1 Depends: libsexy2 (= 0.1.11-2ubuntu1), libgtk2.0-dev, libcairo2-dev, libatk1.0-dev, libfreetype6-dev, libglib2.0-dev, libpango1.0-dev, libxcursor-dev, libxml2-dev, libxrender-dev Filename: pool/main/libs/libsexy/libsexy-dev_0.1.11-2ubuntu1_i386.deb Size: 27166 MD5sum: 9edd96e73c19cf4933a56febfc0d25ba SHA1: e41148901d1859f6de2064ece180f5a72bb58747 SHA256: edc102497ac58beaea972192454c8f4fbbc0a3e7583982c9abd8e963cba9a100 Description: collection of additional GTK+ widgets - header files Description-md5: d8f100d3b0e0edb712e97efea92f164b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsexy-doc Priority: optional Section: doc Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Riccardo Setti Architecture: all Source: libsexy Version: 0.1.11-2ubuntu1 Suggests: devhelp | www-browser Filename: pool/main/libs/libsexy/libsexy-doc_0.1.11-2ubuntu1_all.deb Size: 15962 MD5sum: 05ce564dd529a58ca233260074935bc2 SHA1: b3af5bb600f5e3a589d0655ec572cef80fda202f SHA256: 15a7c43bace068847ca9f22ce8c8fc0ce3862c014bc735153fa82e76841a9032 Description: Collection of additional GTK+ widgets - documentation files Description-md5: 7bf7cd528e0e10a6911c520b336f9343 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsexy2 Priority: optional Section: libs Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Riccardo Setti Architecture: i386 Source: libsexy Version: 0.1.11-2ubuntu1 Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.8.0), libpango-1.0-0 (>= 1.14.0), libxml2 (>= 2.7.4), libenchant1c2a Filename: pool/main/libs/libsexy/libsexy2_0.1.11-2ubuntu1_i386.deb Size: 28276 MD5sum: 441d6329d9ec2890917e2b3493ddb298 SHA1: a2a0f78c744a338579a8edab1441276ce39226ec SHA256: bd7c802435e2d5f9bd1076ba0d0cfbfe05561d70cc6f9d18e6c311af5cae8399 Description: collection of additional GTK+ widgets - library Description-md5: 3b0862475b52beca344ce33758afdb6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, ubuntustudio-desktop Package: libsfasan0-armhf-cross Priority: extra Section: devel Installed-Size: 147 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armel-armhf-cross (>= 2.11) | libc6-armel-armhf-cross, libc6-armhf-cross (>= 2.19), libsfgcc1-armhf-cross Filename: pool/main/g/gcc-4.8-armhf-cross/libsfasan0-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 55974 MD5sum: 6d5a6c50ca0bd266c1697edff19b15d4 SHA1: 9e112075a6a31c8a399e13265443c8785a8f17c7 SHA256: 24e57c2c1eee7e35ae344e9af95209f2649ebeddc72305d6789e03ebbb7473df Description: AddressSanitizer -- a fast memory error detector (soft float ABI) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 77c217b098bf047a48eb517165c699da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfatomic1-armhf-cross Priority: extra Section: devel Installed-Size: 42 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armel-armhf-cross (>= 2.11) | libc6-armel-armhf-cross, libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libsfatomic1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 5768 MD5sum: 13dbb7951f55d9136661ddd3c765c8ec SHA1: 7dda0839473c2eeb850883c82b15cba518c3a6db SHA256: e432fb18933ef27b8fe84f40283d82e041c894412c12b48ee284ee7f8d78223d Description: support library providing __atomic built-in functions (soft float ABI) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 5c3acc5a21acb172bca714a7ede8c293 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfgcc-4.8-dev-armhf-cross Priority: optional Section: libdevel Installed-Size: 2117 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libsfgcc1-armhf-cross (>= 1:4.8.2-16ubuntu4cross0.11) | libsfgcc1-armhf-cross, libsfgomp1-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) | libsfgomp1-armhf-cross, libsfatomic1-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) | libsfatomic1-armhf-cross, libsfasan0-armhf-cross (>= 4.8.2-16ubuntu4cross0.11) | libsfasan0-armhf-cross Recommends: libc6-dev-armhf-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-armhf-cross/libsfgcc-4.8-dev-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 171766 MD5sum: 5e9dca6915166bb115c4dd7c19a41a75 SHA1: 12e8471ca1792272351873ceb3b5a05ac5cc4746 SHA256: 82475b7680e9c1b6d1c33c98e7da0ba0ab74583e7e416b4212736a5c7c53e0e7 Description: GCC support library (soft float ABI development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 0a946370cc1bda3e49c72e1e875c6da8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfgcc1-armhf-cross Priority: extra Section: devel Installed-Size: 134 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 1:4.8.2-16ubuntu4cross0.11 Provides: libsfgcc1-armhf-dcv1 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armel-armhf-cross (>= 2.11) | libc6-armel-armhf-cross Filename: pool/main/g/gcc-4.8-armhf-cross/libsfgcc1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 38108 MD5sum: e3525f9edb3a06c8f8400415b5cf2144 SHA1: 28d07dfd28597f797ff1587ebf769ede0bc0ca1c SHA256: 0cb14863cbba079783871207051bcd80f4861148a25a231c309e00d325464dc9 Description: GCC support library (soft float ABI) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: b110e5feff2c72a13ffa6c69b3c65964 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfgomp1-armhf-cross Priority: extra Section: devel Installed-Size: 74 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6-armel-armhf-cross (>= 2.11) | libc6-armel-armhf-cross, libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libsfgomp1-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 23042 MD5sum: af6ae65e929f1503fb34aa00e0efd721 SHA1: 6405e548236c2e0bda30ecf5053f2b32d1cdb375 SHA256: 3040a1bb78127c2452c27080b113f4863ad2ea45134a06eee2b4981e53215904 Description: GCC OpenMP (GOMP) support library (soft float ABI) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 86f6cc73df5b807fdb91c11e7ccae5e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfstdc++-4.8-dev-armhf-cross Priority: extra Section: devel Installed-Size: 5617 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libsfgcc-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11), libsfstdc++6-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libstdc++-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11) Filename: pool/main/g/gcc-4.8-armhf-cross/libsfstdc++-4.8-dev-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 331456 MD5sum: fc6ff57a62d2c04bb457ddd3f5d4578e SHA1: ac22c6385209b9a19149882667b877c699ef4e19 SHA256: 16332e4c68d870fc3f8f2695ad18aca37ebf64115321f12a223080a98994172d Description: GNU Standard C++ Library v3 (development files) (armhf) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 5c94411e364c10e6c08261a0a964d7c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsfstdc++6-armhf-cross Priority: extra Section: devel Installed-Size: 655 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Provides: libsfstdc++6-armhf-dcv1 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libsfgcc1-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libc6-armhf-cross (>= 2.19) Filename: pool/main/g/gcc-4.8-armhf-cross/libsfstdc++6-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 201588 MD5sum: f2aa3a8829705754b7f3fdc8a2fe3ab7 SHA1: 0ba3261031d1d97e9d74945bcdfad977eb3dfcfd SHA256: 7c68f48c3be30dc110e7336b0fbd859b1ba23f45299556d1c238c9b455a85e55 Description: GNU Standard C++ Library v3 (soft float ABI) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 9f5d26c89656d7eaf9c9f1b60ac3ec3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsgmls-perl Priority: optional Section: perl Installed-Size: 128 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 1.03ii-32 Replaces: sgmlspm Depends: perl (>= 5.6.0-16) Recommends: sp Suggests: sgmls-doc, sgmlspl Conflicts: sgmlspm Filename: pool/main/libs/libsgmls-perl/libsgmls-perl_1.03ii-32_all.deb Size: 29374 MD5sum: 31873a359f3aff56575cfd5f2a78657b SHA1: 04d6d64c3d39ae6c81027fba91c25324c5bdc1ee SHA256: b8260b2eefe87165231d355487c99496f07ba855b151e7b586aaa8d69030f473 Description: Perl modules for processing SGML parser output Description-md5: e63c2ae966d8f0774ffdb6044c2f8a57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsgutils2-2 Priority: optional Section: libs Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: i386 Source: sg3-utils Version: 1.36-1ubuntu1 Replaces: libsgutils2 Depends: libc6 (>= 2.7) Suggests: sg3-utils Conflicts: libsgutils2 Filename: pool/main/s/sg3-utils/libsgutils2-2_1.36-1ubuntu1_i386.deb Size: 50150 MD5sum: ef3a3e4d245d74161d2a2ce9c5035f9e SHA1: 2258d6a3045536f0c07af1faeb98e989b1795c58 SHA256: 163606f29a59011a2530108c7306c2feecfd388208a4a8f0caf4ef0eb0144c00 Description: utilities for devices using the SCSI command set (shared libraries) Homepage: http://sg.danny.cz/sg/ Description-md5: 19a4d1a8d1a08f4c55a55c351a158287 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libsgutils2-dev Priority: optional Section: libdevel Installed-Size: 300 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: i386 Source: sg3-utils Version: 1.36-1ubuntu1 Depends: libsgutils2-2 (= 1.36-1ubuntu1) Suggests: sg3-utils Conflicts: libsgutils1-dev Filename: pool/main/s/sg3-utils/libsgutils2-dev_1.36-1ubuntu1_i386.deb Size: 65566 MD5sum: ab83f741e31ea303bc1a6da19a9b512e SHA1: 28028ec8e152e2a5a1db62424264809a55f78a25 SHA256: 443b8a76aca2d0cf8932dc40edb0f4f20e7d1b14194454b286eb992052c43d65 Description: utilities for devices using the SCSI command set (developer files) Homepage: http://sg.danny.cz/sg/ Description-md5: bed92454079f936ca63f681d822db471 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libshout3 Priority: optional Section: libs Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: libshout Version: 2.3.1-3 Depends: libc6 (>= 2.15), libogg0 (>= 1.0rc3), libspeex1 (>= 1.2~beta3-1), libtheora0 (>= 0.0.0.alpha7.dfsg), libvorbis0a (>= 1.1.2) Pre-Depends: multiarch-support Filename: pool/main/libs/libshout/libshout3_2.3.1-3_i386.deb Size: 39638 MD5sum: d7216fdd6685a0b0c2bc5d5413063890 SHA1: 3a969d2d716a2045f108a6fa9316d05e01c3bc7b SHA256: ca823220d662ec4e2bd83875903a31710552dfaf6797aed1016d01de08fd6046 Description: MP3/Ogg Vorbis broadcast streaming library Multi-Arch: same Homepage: http://www.icecast.org/ Description-md5: 11376f8d2238a196b9a58295f5c2d756 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libshout3-dev Priority: optional Section: libdevel Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: libshout Version: 2.3.1-3 Provides: libshout-dev Depends: libshout3 (= 2.3.1-3), libogg-dev, libspeex-dev, libtheora-dev, libvorbis-dev, pkg-config Conflicts: libshout-dev Filename: pool/main/libs/libshout/libshout3-dev_2.3.1-3_i386.deb Size: 40486 MD5sum: e10fef6ad83f2d3edf19bb420135d663 SHA1: 184f505e1d5c34ac965ca97b99cf4f63d2cf654e SHA256: 06dc2b5e6536d07e06e3cbc0ce33a7acfa91975fcdcfa926700248f3ced474b2 Description: MP3/Ogg Vorbis broadcast streaming library (development) Multi-Arch: same Homepage: http://www.icecast.org/ Description-md5: fc281a7137ac6e777c64b71d63f5b598 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsigc++-2.0-0c2a Priority: optional Section: libs Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: i386 Source: libsigc++-2.0 Version: 2.2.10-0.2ubuntu2 Replaces: libsigc++-1.9-0, libsigc++-2.0-0, libsigc++-2.0-0c2 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Conflicts: libsigc++-1.9-0, libsigc++-2.0-0, libsigc++-2.0-0c2 Filename: pool/main/libs/libsigc++-2.0/libsigc++-2.0-0c2a_2.2.10-0.2ubuntu2_i386.deb Size: 9612 MD5sum: de39a3bf87e5cd576bd374738a65bd0b SHA1: 33da2424684983ac6d91dc5af8c6785b48eb32e5 SHA256: eb0265e63b9ac0296ce697e94f32a11f7567bede55bb4d423aee86d1468d77e4 Description: type-safe Signal Framework for C++ - runtime Multi-Arch: same Description-md5: 0f629177a6b7e6200b446de8a0a45992 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsigc++-2.0-dev Priority: optional Section: libdevel Installed-Size: 1270 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: i386 Source: libsigc++-2.0 Version: 2.2.10-0.2ubuntu2 Replaces: libsigc++-1.9-dev Depends: libsigc++-2.0-0c2a (= 2.2.10-0.2ubuntu2), pkg-config Suggests: libsigc++-2.0-doc Conflicts: libsigc++-1.9-dev Filename: pool/main/libs/libsigc++-2.0/libsigc++-2.0-dev_2.2.10-0.2ubuntu2_i386.deb Size: 62474 MD5sum: 4b81cf2231174885bfd4871d688e19f5 SHA1: cb683eee196778011df6710075a18e7a23613d1b SHA256: 5c0c553d29f54081ac092815e232a87180cde5c690be6bf4638c7720fa7d83ca Description: type-safe Signal Framework for C++ - development files Multi-Arch: same Description-md5: 2fc5e630cb35c41ccaccff38822cd939 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsigc++-2.0-doc Priority: optional Section: doc Installed-Size: 7708 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Burrows Architecture: all Source: libsigc++-2.0 Version: 2.2.10-0.2ubuntu2 Recommends: libsigc++-2.0-dev Filename: pool/main/libs/libsigc++-2.0/libsigc++-2.0-doc_2.2.10-0.2ubuntu2_all.deb Size: 2606386 MD5sum: 253d1141a19686c86778811ad28c778e SHA1: 1d1b7aa7ce2980b14e013df31dd8d0b7048210ac SHA256: 19b02bd3ab01742bc663e5c8732babcf5dfbd20f552fb3cb97a9026e1bf46517 Description: type-safe Signal Framework for C++ - reference documentation Description-md5: 66182e93dcf0771a483485fd7d8542bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-extension1 Priority: optional Section: libs Installed-Size: 100 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libc6 (>= 2.3.6-6~), libqt5core5a (>= 5.0.2), libqt5dbus5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon/libsignon-extension1_8.56+14.04.20140307-0ubuntu2_i386.deb Size: 22938 MD5sum: 4e5d24b19f94a15c265a9abc0320f68f SHA1: 43bb7d8ded5d17db2dcbc31ce0a3c73dd7c78615 SHA256: fd2c2520ec25e317d16f450f315cc8a57bdf514c53dcb08da04d7b5fad05c173 Description: Single Sign On framework Homepage: http://code.google.com/p/accounts-sso/ Description-md5: e82cc644df18f6d1c382ada5d5c88928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libsignon-glib-dev Priority: optional Section: libdevel Installed-Size: 167 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libsignon-glib Version: 1.10daily13.06.25-0ubuntu2 Depends: libsignon-glib1 (= 1.10daily13.06.25-0ubuntu2), libdbus-glib-1-dev, libglib2.0-dev, gir1.2-signon-1.0, signond-dev Filename: pool/main/libs/libsignon-glib/libsignon-glib-dev_1.10daily13.06.25-0ubuntu2_i386.deb Size: 13552 MD5sum: 022d4e20684b4c8a3a623fba202debce SHA1: 42bfd0b3e26806be89d31aeebd87b5cb68e9b8fd SHA256: ad2f9efc66e70cb73178bfab156161e4ecf5fdfaf94da6abd454eec926eb7fd0 Description: library for signond - development files Homepage: http://code.google.com/p/accounts-sso/ Description-md5: d051d5324a6de8be6c752aa209067db3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-glib-doc Priority: optional Section: doc Installed-Size: 329 Maintainer: Ubuntu Desktop Team Architecture: all Source: libsignon-glib Version: 1.10daily13.06.25-0ubuntu2 Filename: pool/main/libs/libsignon-glib/libsignon-glib-doc_1.10daily13.06.25-0ubuntu2_all.deb Size: 26778 MD5sum: 2a0b3e1926ef8a6e2ecb0b08eb7f0e54 SHA1: aade4746b142539fdd5575f12a6817f4b44737ea SHA256: 93ab55e383022c0231d9eb61416a3e20a06038c5401ea2149b8267d61642da41 Description: library for signond - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: ca77b69406cc209b10e4bd1e83ef1619 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-glib1 Priority: optional Section: libs Installed-Size: 151 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libsignon-glib Version: 1.10daily13.06.25-0ubuntu2 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/libs/libsignon-glib/libsignon-glib1_1.10daily13.06.25-0ubuntu2_i386.deb Size: 32000 MD5sum: bd34c4e296325ad4e4f094efa653f171 SHA1: 02bbb783fdc4d61d69932ee1a8ff62d9073f0106 SHA256: 252c04de5b18a0e860472d8c7b3fbe66073c5156943c37c15aae09125db3673b Description: library for signond Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 516378637027ec145f398aaba1c06c74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsignon-plugins-common1 Priority: optional Section: libs Installed-Size: 64 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5dbus5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon/libsignon-plugins-common1_8.56+14.04.20140307-0ubuntu2_i386.deb Size: 14632 MD5sum: 006859edb80cdc76768f9f090ba6551e SHA1: a9c9e402f4baa87bd0472c39d91b8979d382781e SHA256: 2e9706cb46d774289a478dbe36813e62013b15ac4449c607d081f0498150b2fe Description: Single Sign On framework Homepage: http://code.google.com/p/accounts-sso/ Description-md5: e82cc644df18f6d1c382ada5d5c88928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libsignon-plugins-doc Priority: optional Section: doc Installed-Size: 586 Maintainer: Ubuntu Desktop Team Architecture: all Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Filename: pool/main/s/signon/libsignon-plugins-doc_8.56+14.04.20140307-0ubuntu2_all.deb Size: 139336 MD5sum: 0a058863a98cbcc8f6d22df9aef7f74e SHA1: e56c9450eaef9f39ef5e2abf3b6d159ed632cde0 SHA256: 1becb833d4d370796f28643871dc2c32e2ab7ec555072318276ac27d975f5846 Description: Single Sign On framework plugins - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 261b6b2151c83e14b3f866d069eecffa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-qt-dev Priority: optional Section: libdevel Installed-Size: 118 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libsignon-qt1 (= 8.56+14.04.20140307-0ubuntu2), libqt4-dev (>= 4.5) Filename: pool/main/s/signon/libsignon-qt-dev_8.56+14.04.20140307-0ubuntu2_i386.deb Size: 13422 MD5sum: 16b8382f791a259f95db276fe0cdf937 SHA1: 2677393a240844a999debadaaf507105d14f1e44 SHA256: db3fda83601307b685365f7f0b985e677e2765a0e30d190aad88778f398a6e07 Description: Development files for libsignon-qt Homepage: http://code.google.com/p/accounts-sso/ Description-md5: cf54ad814c7c7abcf70c32b44f66c2bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-qt-doc Priority: optional Section: doc Installed-Size: 1349 Maintainer: Ubuntu Desktop Team Architecture: all Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Filename: pool/main/s/signon/libsignon-qt-doc_8.56+14.04.20140307-0ubuntu2_all.deb Size: 209624 MD5sum: 92fbc028414bca57f005d47b6a7f34da SHA1: 4a875bc48070aa87a035f3bf75545d17066c86b6 SHA256: d788cdb66e0cc6e74afce9d286f928e3cca09a519ec17ad5bdaaf6369e54c42f Description: QT bindings for single signon - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 97bab6ea9929a3023462acc349535d16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsignon-qt1 Priority: optional Section: libs Installed-Size: 200 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libc6 (>= 2.1.3), libqt4-dbus (>= 4:4.8.0), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon/libsignon-qt1_8.56+14.04.20140307-0ubuntu2_i386.deb Size: 52206 MD5sum: 6ca9a918e16277a2e77fe1b707adde3d SHA1: 6e27f0c147de9ae1f5e9c6907ac8bcd06b5ddaef SHA256: 2624f573906c455161ed634d4a1c118b7c0c7dd6aab97443e810be2177cba47d Description: Single Sign On framework Homepage: http://code.google.com/p/accounts-sso/ Description-md5: e82cc644df18f6d1c382ada5d5c88928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome Package: libsignon-qt5-1 Priority: optional Section: libs Installed-Size: 248 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon/libsignon-qt5-1_8.56+14.04.20140307-0ubuntu2_i386.deb Size: 64710 MD5sum: c9927e72b5aad49a4f901511d78126d6 SHA1: 046a77497b6af40bd0be1f9781a50503fc9ece07 SHA256: fc55328c7cadd2f5ac1d1ef3e3bea9ae833a0c4b559d72fad604f71b9c5e32aa Description: Single Sign On framework Homepage: http://code.google.com/p/accounts-sso/ Description-md5: e82cc644df18f6d1c382ada5d5c88928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libsignon-qt5-dev Priority: optional Section: libdevel Installed-Size: 118 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libsignon-qt5-1 (= 8.56+14.04.20140307-0ubuntu2), qtbase5-dev Filename: pool/main/s/signon/libsignon-qt5-dev_8.56+14.04.20140307-0ubuntu2_i386.deb Size: 13406 MD5sum: 9527856768a0de4b5d75e9c575015f34 SHA1: 3c63b61f37c974af3c71af6d6a5197a5d09b8e25 SHA256: 7496c48b7a421247c7bafb7c283f541de7d10e23719bc9b1497502a415b6fbd7 Description: Development files for libsignon-qt Homepage: http://code.google.com/p/accounts-sso/ Description-md5: cf54ad814c7c7abcf70c32b44f66c2bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsigsegv-dev Priority: optional Section: libdevel Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Common Lisp Team Architecture: i386 Source: libsigsegv Version: 2.10-2 Depends: libsigsegv2 (= 2.10-2) Filename: pool/main/libs/libsigsegv/libsigsegv-dev_2.10-2_i386.deb Size: 8540 MD5sum: b067409a5daf16ffe14c238ff7862993 SHA1: 638cf78101f31916041da6f395f95374788eb850 SHA256: 3197354aba62e2f528e83df70086956abcdb7d395b1fa69f68eb7c7d4316987e Description: Library for handling page faults in a portable way development package Multi-Arch: same Homepage: http://libsigsegv.sourceforge.net/ Description-md5: a7c5d1a301a69ae1ac1dca070c063968 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsigsegv2 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Common Lisp Team Architecture: i386 Source: libsigsegv Version: 2.10-2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libs/libsigsegv/libsigsegv2_2.10-2_i386.deb Size: 14842 MD5sum: 22d62b0cfc53f11f9217d9eddc773df0 SHA1: 8ef9ffe195455a39bb6343c802fbf565dee3f7b0 SHA256: c81cfc41a9ae222d789b5eecb4885850f9d203938175c72947eeceea87231164 Description: Library for handling page faults in a portable way Multi-Arch: same Homepage: http://libsigsegv.sourceforge.net/ Description-md5: a81513d919fc703846690a764e3b9b21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-usb, cloud-image, server, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: libsl0-heimdal Priority: extra Section: libs Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.11), libedit2 (>= 2.11-20080614) Pre-Depends: multiarch-support Conflicts: libsl0-kerberos4kth Filename: pool/main/h/heimdal/libsl0-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 13752 MD5sum: cb309b673a6730c8a3e425b44524196d SHA1: 55c458b00edaecd81d454ad883698fa00c8752be SHA256: 38e7494aa3241e2dbd0bb02b89c22772d008f12e0c80e4656cf56fc862f32221 Description: Heimdal Kerberos - SL support library Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: 8ffc54745b78f52228abc0c4b0ada710 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libslang2 Priority: required Section: libs Installed-Size: 1239 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: i386 Source: slang2 Version: 2.2.4-15ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: libpng12-0 Filename: pool/main/s/slang2/libslang2_2.2.4-15ubuntu1_i386.deb Size: 460154 MD5sum: a3aed157712ab3b279bb19eab9c7ba05 SHA1: f9782fd8dee2b086ae81178d88287d773f854b7e SHA256: 8e7a806e249942637c250db4c3e31a2baa066c223aaee9e3fb286ed4433b3678 Description: S-Lang programming library - runtime version Multi-Arch: same Homepage: http://www.jedsoft.org/slang/ Description-md5: 63cf6009be68fe5fb7a6729e8527359d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libslang2-dev Priority: optional Section: devel Installed-Size: 1563 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: i386 Source: slang2 Version: 2.2.4-15ubuntu1 Depends: libslang2 (= 2.2.4-15ubuntu1), libc6-dev | libc-dev, libpng-dev Conflicts: slang-dev6, slang1-utf8-dev Filename: pool/main/s/slang2/libslang2-dev_2.2.4-15ubuntu1_i386.deb Size: 476692 MD5sum: 53573d2636a9a7517669e628483e0c39 SHA1: 5ff3f308dae9d90ffe9f8fe0a6ddca9f88bb1bfa SHA256: c7b2aed58b992c171a71216fc4240dcc8721e2e02eb3004778cdbd74a8f21026 Description: S-Lang programming library, development version Multi-Arch: same Homepage: http://www.jedsoft.org/slang/ Description-md5: 9978b57decbe8c7b64fa0e4fd3c9cf8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libslang2-pic Priority: optional Section: libdevel Installed-Size: 1500 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: i386 Source: slang2 Version: 2.2.4-15ubuntu1 Depends: libslang2-dev (= 2.2.4-15ubuntu1) Conflicts: libslang1-pic, slang-pic, slang1-utf8-pic Filename: pool/main/s/slang2/libslang2-pic_2.2.4-15ubuntu1_i386.deb Size: 425046 MD5sum: 9f97018df7a4194acb653526f2384ceb SHA1: 3fb9d48d0fba32102b25a97691d5b63dc63b7d7c SHA256: 12a45b293197c778c2d1b02d61576ea9cc378d584448ffbeaef219a4e050b50e Description: S-Lang programming library, shared library subset kit Homepage: http://www.jedsoft.org/slang/ Description-md5: 6ac39ebfc9448c20f9f8c02ffb8e243b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libslp-dev Priority: extra Section: libdevel Installed-Size: 234 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: openslp-dfsg Version: 1.2.1-9 Depends: libslp1 (= 1.2.1-9), libc6-dev Suggests: openslp-doc (= 1.2.1-9) Conflicts: libxdelta3-dev Filename: pool/main/o/openslp-dfsg/libslp-dev_1.2.1-9_i386.deb Size: 56850 MD5sum: 2c40f1c3ccb3ec762784627ee234b6bd SHA1: f34b1d4f3a59fad839b58b274ed511037d4e5345 SHA256: 5de323ae8d7f0901c7f749c551dd4661daafdb546ca3a585ac34808d776c9c65 Description: OpenSLP development libraries Homepage: http://www.openslp.org/ Description-md5: e576d5cc2cf3d18eed8ffc6845c4ef8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libslp1 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: openslp-dfsg Version: 1.2.1-9 Depends: libc6 (>= 2.15), debconf | debconf-2.0 Suggests: slpd (= 1.2.1-9), openslp-doc (= 1.2.1-9) Filename: pool/main/o/openslp-dfsg/libslp1_1.2.1-9_i386.deb Size: 45092 MD5sum: 1a0e63fc9c1058a3f5fb9d115ddebb46 SHA1: 8e929dd51a4a80931d2da61360208aa4ff81d1f7 SHA256: 0701ec9860fee89afcc0a9d9726d77a7c037a3e700926672c28f8a6de212000c Description: OpenSLP libraries Homepage: http://www.openslp.org/ Description-md5: d86e7e071b274afec565db9c2175a43d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsm-dev Priority: optional Section: libdevel Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libsm Version: 2:1.2.1-2 Depends: libsm6 (= 2:1.2.1-2), x11proto-core-dev, libice-dev (>= 1:1.0.0-1) Suggests: libsm-doc Filename: pool/main/libs/libsm/libsm-dev_1.2.1-2_i386.deb Size: 17636 MD5sum: 7d28da91cb2608d5c68c87359763f3b1 SHA1: 8b25b39205957fb553d1a0a8ec2d02bc38dfd84b SHA256: 8e2ab7ad46db20910489acc33f123a821a36c255cad1ce4e363495b97747766d Description: X11 Session Management library (development headers) Multi-Arch: same Description-md5: aabe94b2c3c6005a8f2ef7690a66644f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsm-doc Priority: optional Section: doc Installed-Size: 390 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libsm Version: 2:1.2.1-2 Replaces: libsm-dev (<< 2:1.2.1) Breaks: libsm-dev (<< 2:1.2.1) Filename: pool/main/libs/libsm/libsm-doc_1.2.1-2_all.deb Size: 122000 MD5sum: 09ebf4410719e6b7285000085fbaa3d4 SHA1: fd99b30a1be806e4ec0f1a2bfb72de47efa780e8 SHA256: 5c65dc0d5a6a48dc43fa86a80ff3e1bbecdb4e9109402ce8e3eff11e72fa90c9 Description: documentation for the X Session Management protocol and library Multi-Arch: foreign Description-md5: 05d06f5a16de90aa35a42158cbde503c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsm6 Priority: optional Section: libs Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libsm Version: 2:1.2.1-2 Depends: libc6 (>= 2.4), libice6 (>= 1:1.0.0), libuuid1 (>= 2.16) Pre-Depends: multiarch-support Filename: pool/main/libs/libsm/libsm6_1.2.1-2_i386.deb Size: 17270 MD5sum: 07d4ddd8a7c9fdabb04de7c9a0e3df84 SHA1: fa1ae670c130573ba79b0efb4fa3a88143e64dda SHA256: 06ea52a9c303d6615c41f3857935ee2cd418d58bf6f2ee0779c8c1540b87d927 Description: X11 Session Management library Multi-Arch: same Description-md5: c37ad7a98c70010172a0350742036878 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsm6-dbg Priority: extra Section: libdevel Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libsm Version: 2:1.2.1-2 Depends: libsm6 (= 2:1.2.1-2) Filename: pool/main/libs/libsm/libsm6-dbg_1.2.1-2_i386.deb Size: 36764 MD5sum: bc50555ccddbd92c0a7af3e6d44b3d70 SHA1: 9625a257160f753993c2c49ab5740cb60570783d SHA256: 77f61353c1eee7eefd7155ff6fbb61b683e28c19fb553b83bbc2932b01eefaf6 Description: X11 Session Management library (debug package) Multi-Arch: same Description-md5: 073ef1b2d38f154572930a125bf8d806 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmbclient Priority: extra Section: libs Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: samba-doc (<< 2:4.0.5~) Depends: libbsd0 (>= 0.0), libc6 (>= 2.8), libtalloc2 (>= 2.0.4~git20101213), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Conflicts: samba-doc (<< 2:4.0.5~) Filename: pool/main/s/samba/libsmbclient_4.1.6+dfsg-1ubuntu2_i386.deb Size: 49938 MD5sum: 4adee5c02fdc3ee346ef6d63cd79d5a3 SHA1: 01ea79a78a62fddf74cb7a3a5a22f0be5588b954 SHA256: 4a804fc96c9f7598736c84d149b861a515a6559de2128800b12a0743733268f1 Description: shared library for communication with SMB/CIFS servers Multi-Arch: same Homepage: http://www.samba.org Description-md5: 483547748179a567c24665e99ab5439e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsmbclient-dev Priority: extra Section: libdevel Installed-Size: 301 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libsmbclient (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/samba/libsmbclient-dev_4.1.6+dfsg-1ubuntu2_i386.deb Size: 39754 MD5sum: d03f42cc3e3998bb5b9657e06b77c762 SHA1: 90b03f6cbf015f80d9b1ea47825ea4401afdcb53 SHA256: 759eadd47c2cc9de80131133a1a4977f684bc6465dc6736edef00d11f9879226 Description: development files for libsmbclient Multi-Arch: same Homepage: http://www.samba.org Description-md5: d6338d0aed68408023b999dd547aaecf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmbsharemodes-dev Priority: extra Section: libdevel Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libsmbsharemodes0 (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/samba/libsmbsharemodes-dev_4.1.6+dfsg-1ubuntu2_i386.deb Size: 7076 MD5sum: 1602b20e94a75294872f04ed7a20757d SHA1: 70fc229983f7aded5dc754a71c1633857a1b652b SHA256: 53aed3230ec8c6208b719ed743c57d53a0312a54d61335faa7ea4a85e3ecfd3d Description: development files for libsmbsharemodes Multi-Arch: same Homepage: http://www.samba.org Description-md5: 51ee1cdcad14f46b5afe65f8865ad461 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmbsharemodes0 Priority: optional Section: libs Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libc6 (>= 2.3.6-6~), libtdb1 (>= 1.2.7+git20101214) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/s/samba/libsmbsharemodes0_4.1.6+dfsg-1ubuntu2_i386.deb Size: 14352 MD5sum: acc29e74e94f32abc2fa3d20a6e995e7 SHA1: de9a7182563d610684184e73651e8ad7804f87b1 SHA256: e7cec138b7d1c25f605143928b8de425f22c3a04dc3d629855c878a2f0a1a0cf Description: shared library for non-samba access to the samba 'share modes' database Multi-Arch: same Homepage: http://www.samba.org Description-md5: 70ad341e0946fb9ff69e916c1c35916f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokebase3 Priority: optional Section: libs Installed-Size: 46 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokegen Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokegen/libsmokebase3_4.13.0-0ubuntu1_i386.deb Size: 6796 MD5sum: 2e27f233df13cc5a9d3971310e236bff SHA1: 126fd7f8bc688425c356f05d94b22819590184e1 SHA256: b1e75e2f31e1bad81480046d918f2b380db5f32e37bb0abf8b4dee097134e743 Description: SMOKE base library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokegen Description-md5: 3abf79834be5642bddc4ac3096bfdb53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokephonon3 Priority: optional Section: libs Installed-Size: 319 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libphonon4 (>= 4:4.7.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1), phonon Filename: pool/main/s/smokeqt/libsmokephonon3_4.13.0-0ubuntu1_i386.deb Size: 61442 MD5sum: 9ba9a87079cc64ff3550ab8a8869fb8d SHA1: e3e55d3e87803a86faa2042dbdaa5b1e35b49c40 SHA256: a201e484a23ee0c7a3bda93aafec00b61d7868a1621ebc17a92c80dfb0928921 Description: Qt Phonon SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: eb2f0857065cb760a96a68af869f93c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqimageblitz3 Priority: optional Section: libs Installed-Size: 72 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqimageblitz4 (>= 1:0.0.4), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqimageblitz3_4.13.0-0ubuntu1_i386.deb Size: 14114 MD5sum: 17933acf2d1ca4e6ee782eda3ee5e5e8 SHA1: 2ec034678558d0a23c99be28b957fd5b69ae66df SHA256: 2541be275e91d7ebb370b1e68fe7779eded3ffd568a1e17599a4c92f257ea904 Description: QImageBlitz SMOKE libraries Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: ac6ef85d9f4d4e7b6facd2f76b45dfe3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqsci3 Priority: optional Section: libs Installed-Size: 939 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqscintilla2-11, libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqsci3_4.13.0-0ubuntu1_i386.deb Size: 154376 MD5sum: 22474d521882911fc8474321ba80ce14 SHA1: c3a4fd27e1e862186d4544d08a9cc6fb976e6ac6 SHA256: 22891a524f727b6ad5f601ef113b2be297c58a012e890c31d2a15f20e4c8b333 Description: QScintilla2 SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 8cab4142db0e08cd7a3d11af17829b29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqt3support4-3 Priority: optional Section: libs Installed-Size: 2598 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-network (>= 4:4.5.3), libqt4-qt3support (>= 4:4.6.1), libqt4-sql (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtnetwork4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtsql4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtxml4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqt3support4-3_4.13.0-0ubuntu1_i386.deb Size: 442870 MD5sum: b1674647c8ae5c633d93c10999693696 SHA1: 41a4099dd2b6bf018556152260a96c2029035e9e SHA256: 4156900441a4d8a35a62cbc47d0e0c1aad536658878d98a421ff3458b2bdca6c Description: Qt3 Support SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 3a7fcbc9d994b313a292e83b7f10911f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqt4-dbg Priority: extra Section: debug Installed-Size: 23622 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Replaces: kdebindings-dbg Depends: libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1) Recommends: libqt4-dbg Breaks: kdebindings-dbg Filename: pool/main/s/smokeqt/libsmokeqt4-dbg_4.13.0-0ubuntu1_i386.deb Size: 20589056 MD5sum: 06b45d28898e85a580f50729860aa8f2 SHA1: 7f63711355206bce47ab3466b3b844a432b780a2 SHA256: 4ab4f36977e92ad0b70f052a0ca93768356f9234e4b247336e68dce0abd110e3 Description: Qt SMOKE libraries debug symbols Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: f14a30c2f960a3357f092cea8c0494b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqt4-dev Priority: optional Section: libdevel Installed-Size: 1054 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libsmokephonon3 (= 4:4.13.0-0ubuntu1), libsmokeqimageblitz3 (= 4:4.13.0-0ubuntu1), libsmokeqsci3 (= 4:4.13.0-0ubuntu1), libsmokeqt3support4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtdbus4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtdeclarative4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libsmokeqthelp4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtnetwork4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtopengl4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtscript4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtsql4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtsvg4-3 (= 4:4.13.0-0ubuntu1), libsmokeqttest4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtuitools4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtwebkit4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtxml4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtxmlpatterns4-3 (= 4:4.13.0-0ubuntu1), smoke-dev-tools (>> 4:4.10) Filename: pool/main/s/smokeqt/libsmokeqt4-dev_4.13.0-0ubuntu1_i386.deb Size: 135920 MD5sum: 280b119af47c17b45d550034bc4c6acc SHA1: 2e0ad113d6c773a9228ecfa41ceb3fc084cda5bd SHA256: d75bca08d14029ffc680ac29231889032df8ebb7e7cf880858cbd582729aef2c Description: Development files for Qt SMOKE libraries Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: f9737cad4fa9888e6f2bcaab3ad7a273 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtcore4-3 Priority: optional Section: libs Installed-Size: 1314 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0), libsmokebase3 (>= 4:4.12.97), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtcore4-3_4.13.0-0ubuntu1_i386.deb Size: 285258 MD5sum: 122b5ccc9a76ced9a06c0399224a9463 SHA1: bb476ff5e8efe7e222005f26cbb5af6734b4e413 SHA256: 8fb8aceb5b564db4a907dfaac3251b04ff4d67ea8000a3c99af8ad10c957c865 Description: Qt Core SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: c0b2cf44d57ec5b106fe7490edcac20d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtdbus4-3 Priority: optional Section: libs Installed-Size: 203 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8.0), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtdbus4-3_4.13.0-0ubuntu1_i386.deb Size: 43386 MD5sum: 8e8eb67206cf5a3defa2b6173be00f76 SHA1: c0dcc162826f935eec5f32de40286fc959f304e1 SHA256: 98ffc29bcdd3e7ae6d93b4be951835f9f1ac66a193bf9cd55b47ed6b3297a824 Description: Qt D-Bus SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 47e8dfce47ac3b7d7682a276b7848d09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtdeclarative4-3 Priority: optional Section: libs Installed-Size: 259 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-declarative (>= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-network (>= 4:4.5.3), libqt4-script (>= 4:4.6.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtdeclarative4-3_4.13.0-0ubuntu1_i386.deb Size: 50248 MD5sum: ebfc95e0e21dae648eb98363e3f25dce SHA1: 9313e78fc8c2c293402469737ca0b8a1cb8fba72 SHA256: 029ebaead9d1021a18954edc9a8b82d52c2c478d8bd0a5e290f26a709b2be617 Description: Qt Declarative SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 0bd1bd7a5fdb8e324060267945b79188 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtgui4-3 Priority: optional Section: libs Installed-Size: 5328 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtgui4-3_4.13.0-0ubuntu1_i386.deb Size: 958314 MD5sum: 1539ee658dbd071f177c1d617fa4c8f5 SHA1: d4e99193427bccd5fab7779cba8611b7974f7015 SHA256: d2e4f8684ed6a7276758d465a8eaf0d9859d86cd8e4528dfc639eae344f8ef3c Description: Qt Gui SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: cc1b6a1daacccde2778e10a1ac9a3425 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqthelp4-3 Priority: optional Section: libs Installed-Size: 144 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-help (>= 4:4.8.0), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtsql4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqthelp4-3_4.13.0-0ubuntu1_i386.deb Size: 27656 MD5sum: 219f855d58eaf49dd0444be809eaa77c SHA1: cb1bb5730a4e89cb60469556ed91cc5efcd35f93 SHA256: ac8388e0970b7a53ae9d926b5ff03b738107f4f4a92ea2bfbcade56e4cab2baa Description: Qt Help SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 21d2afb0ae257b240020f0b7723ee844 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtnetwork4-3 Priority: optional Section: libs Installed-Size: 463 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt4-network (>= 4:4.8.0), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtnetwork4-3_4.13.0-0ubuntu1_i386.deb Size: 95178 MD5sum: 81b0a5b95eaaf781e4f748e75f473abb SHA1: 493f0d805c29dafcb47e4b41667b33675a8194b8 SHA256: 36a91b5546f78787d71676034286dc88d0acf9f2ec6b6f4d214eecc3efabf931 Description: Qt Network SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 4c1ff5f70822f656270449dfa191d51f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtopengl4-3 Priority: optional Section: libs Installed-Size: 200 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-opengl (>= 4:4.8.0), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtopengl4-3_4.13.0-0ubuntu1_i386.deb Size: 38446 MD5sum: 63b3e8ba3a3e4e0d3b0cfee406870267 SHA1: 168b5e0510061e6f334ddc30aaf2140052bc077c SHA256: d16963c82747f1b43f0a4fa25faf67764373db2fb7f25f7f2522159cf22613bd Description: Qt OpenGL SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 749841fec9b25349bf97062eaeca3a58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtscript4-3 Priority: optional Section: libs Installed-Size: 159 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-script (>= 4:4.7.0~beta1), libqtcore4 (>= 4:4.7.0~beta1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtscript4-3_4.13.0-0ubuntu1_i386.deb Size: 33434 MD5sum: 1d7f44d98cc3cc847883057233b2ed22 SHA1: a76119755956a4a4bd94ae07f49eb721eb6e3be9 SHA256: a10cc10e44cd543e9955202085ba2d8f385b5b696992f05a71e2b73beb6b30f0 Description: Qt Script SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 5b4be4f98c69725bf529922e613a6019 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtsql4-3 Priority: optional Section: libs Installed-Size: 273 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-sql (>= 4:4.8.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtsql4-3_4.13.0-0ubuntu1_i386.deb Size: 57828 MD5sum: 630f89d220e5fb53b0d36bcc8a25e31f SHA1: f3df307ee215cc608a9aab697369122d5464795e SHA256: 6d3f33ef1bfb27bb6ea7c0773ffb8b52faa4c12af22d97b29ebc94aa6e9afbd0 Description: Qt Sql SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: a90352d8103d21587377c1ff591a6a0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtsvg4-3 Priority: optional Section: libs Installed-Size: 139 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-svg (>= 4:4.5.3), libqtcore4 (>= 4:4.5.3), libqtgui4 (>= 4:4.6.1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtsvg4-3_4.13.0-0ubuntu1_i386.deb Size: 24318 MD5sum: 0d84ef119b15e28c982ebaabe62235a1 SHA1: 0d5c56e696a3d3200e4e9bfc55df6e2aab6033bd SHA256: 91c740d7b300fdd3b8fdb94b61d261ff9d7b2739b0947c50f2a1fdcbb1a33f07 Description: Qt Svg SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 6867661d0e21c252afb6a0dd65069dcf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqttest4-3 Priority: optional Section: libs Installed-Size: 139 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-test (>= 4:4.8.5+git192), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqttest4-3_4.13.0-0ubuntu1_i386.deb Size: 33106 MD5sum: b8080082075a215830f440e3f5cd3210 SHA1: 7f4a95b07a15dd553005c4db8dec133ae6060565 SHA256: d0cd76ab46d2b22f67a21e41731abf8e56bc84101e795a034f42a048743aa7f8 Description: Qt Test SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: dec3e6b1c3745e02991bb183e1db5926 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtuitools4-3 Priority: optional Section: libs Installed-Size: 751 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.6.1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtuitools4-3_4.13.0-0ubuntu1_i386.deb Size: 191600 MD5sum: 67fc9a8a0a7f2aea2c4059673110458d SHA1: e22438f566ed3438227485087ca5fca932464d01 SHA256: d2cb73b5e6c909c43215fab6999091373c1026ae5f6bec2a97177396537c6087 Description: Qt Ui Tools SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 92b3b63f76e846f0aba03966ca2b60d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtwebkit4-3 Priority: optional Section: libs Installed-Size: 265 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.7.0~beta1), libqtgui4 (>= 4:4.5.3), libqtwebkit4, libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libsmokeqtgui4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtwebkit4-3_4.13.0-0ubuntu1_i386.deb Size: 55330 MD5sum: ce81b34736d87e2ac6de105e55105033 SHA1: 635aee29ef71e7dbb8829b9ccaecd62e1b2dac2d SHA256: 09067fdf6f594b54bd7486de4cba351505e1c75513cca8cfe61c4a7095e6f13a Description: Qt WebKit SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: ff49b8f18f1f0b9907067ffe0e596058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtxml4-3 Priority: optional Section: libs Installed-Size: 220 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-xml (>= 4:4.6.1), libqtcore4 (>= 4:4.8.0), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtxml4-3_4.13.0-0ubuntu1_i386.deb Size: 44722 MD5sum: 280bd4f22dd89f249ee571c69f755557 SHA1: 7c342833add14f2e793e100729f78c4d3e8099d9 SHA256: be96d3651212d34b9e16bc88509b55a7b9792c3bdafb0df0d2fd9b120f26e927 Description: Qt Xml SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 0e43211c2787ac5edd9cbcf901a3be6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsmokeqtxmlpatterns4-3 Priority: optional Section: libs Installed-Size: 170 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokeqt Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-network (>= 4:4.5.3), libqt4-xmlpatterns (>= 4:4.6.1), libqtcore4 (>= 4:4.6.1), libsmokebase3 (>= 4:4.12.97), libsmokeqtcore4-3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/smokeqt/libsmokeqtxmlpatterns4-3_4.13.0-0ubuntu1_i386.deb Size: 35040 MD5sum: a5cfbeae8a73b492b9cfcd6dafde06d3 SHA1: 250a98fd553421c4ac2e80fd24d76dbf1dd2770e SHA256: 78e928ad6fbf979f94382b029f39908c25784eae53fcb377d576ca1ffa61a614 Description: Qt XmlPatterns SMOKE library Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokeqt Description-md5: 2bcb0ba441574644689d6014f04d2668 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsnappy-dev Priority: extra Section: libdevel Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Steinar H. Gunderson Architecture: i386 Source: snappy Version: 1.1.0-1ubuntu1 Depends: libsnappy1 (= 1.1.0-1ubuntu1) Filename: pool/main/s/snappy/libsnappy-dev_1.1.0-1ubuntu1_i386.deb Size: 18042 MD5sum: dbd46d543a1e23aa50d9c84d389b853e SHA1: c2d91de295365b4c5c998b94946b46ed0ef61fa7 SHA256: 642ceaf6db5d8ab58d870e4f03969e23c12357417aa6bb2026233400d774be52 Description: fast compression/decompression library (development files) Homepage: http://code.google.com/p/snappy/ Description-md5: b499df87b72e11eeccdad0dfd3c2149b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsnappy1 Priority: extra Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Steinar H. Gunderson Architecture: i386 Source: snappy Version: 1.1.0-1ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/snappy/libsnappy1_1.1.0-1ubuntu1_i386.deb Size: 11352 MD5sum: f8d31b4c5fb653f72a8c73f4650ab50d SHA1: aadc5426da8106af251540c0aaf0e6a7edd71ceb SHA256: c5e7cd1c4b01bbd8add8b340f79647ee6e69cdf8d68b035a6e878018ad027ffa Description: fast compression/decompression library Homepage: http://code.google.com/p/snappy/ Description-md5: 87a4defa5f66a7f4af2eb47bb53fe942 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsndfile1 Priority: optional Section: libs Installed-Size: 548 Maintainer: Ubuntu Developers Original-Maintainer: Erik de Castro Lopo Architecture: i386 Source: libsndfile Version: 1.0.25-7ubuntu2 Depends: libc6 (>= 2.7), libflac8 (>= 1.3.0), libogg0 (>= 1.0rc3), libvorbis0a (>= 1.2.3), libvorbisenc2 (>= 1.1.2) Pre-Depends: multiarch-support Filename: pool/main/libs/libsndfile/libsndfile1_1.0.25-7ubuntu2_i386.deb Size: 143420 MD5sum: 81f203aa2d3ac9c8e7c0ff4c183a5b04 SHA1: 917ec405a42322f73fad32246993bdce1b3346bc SHA256: c55010d76be25461efe6efb6b15543c7e27e971efea3980fd20d6fee9b6336e6 Description: Library for reading/writing audio files Multi-Arch: same Homepage: http://www.mega-nerd.com/libsndfile/ Description-md5: 67b723b50c9aa944fba48e79d51e9d5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libsndfile1-dbg Priority: extra Section: debug Installed-Size: 1225 Maintainer: Ubuntu Developers Original-Maintainer: Erik de Castro Lopo Architecture: i386 Source: libsndfile Version: 1.0.25-7ubuntu2 Depends: libsndfile1 (= 1.0.25-7ubuntu2) Filename: pool/main/libs/libsndfile/libsndfile1-dbg_1.0.25-7ubuntu2_i386.deb Size: 285468 MD5sum: 7599f23321df6397eb3bcca03fd95b56 SHA1: a4cc1d67be32c2a164f88412ce84cf5d9e9745bd SHA256: c041f0a05d80e17306e69e4dd5a76a9570d132d18bb1f206473a7213db800ea5 Description: debugging symbols for libsndfile Homepage: http://www.mega-nerd.com/libsndfile/ Description-md5: fdb6a698edab0dbdce8de0878d0dc15d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsndfile1-dev Priority: optional Section: libdevel Installed-Size: 2798 Maintainer: Ubuntu Developers Original-Maintainer: Erik de Castro Lopo Architecture: i386 Source: libsndfile Version: 1.0.25-7ubuntu2 Replaces: libsndfile-dev Provides: libsndfile-dev Depends: libsndfile1 (= 1.0.25-7ubuntu2), pkg-config, libvorbis-dev (>= 1.2.3), libflac-dev (>= 1.1.4-3) Conflicts: libsndfile-dev, libsndfile0-dev Filename: pool/main/libs/libsndfile/libsndfile1-dev_1.0.25-7ubuntu2_i386.deb Size: 644398 MD5sum: d98160abdfdefac337735860c89e1d35 SHA1: 59cd269757bff66e4dfccacc35f2bd13ae603d26 SHA256: 307129c033c224926e8680e8a764f4e020adf3c79e3218b92ab37c12afff4384 Description: Development files for libsndfile; a library for reading/writing audio files Homepage: http://www.mega-nerd.com/libsndfile/ Description-md5: 7ff7eba6e64514219e2a1e52dcdffde5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsnmp-base Priority: optional Section: libs Installed-Size: 692 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: all Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Replaces: libsnmp-dev (<< 5.4~dfsg), libsnmp15 (<< 5.7.2~dfsg-5), libsnmp9-dev (<< 5.4~dfsg) Suggests: snmp-mibs-downloader Conflicts: libsnmp-dev (<< 5.4~dfsg), libsnmp30 (<< 5.7.2~dfsg-5), libsnmp9-dev (<< 5.4~dfsg) Breaks: libsnmp15 (<< 5.7.2~dfsg-5) Filename: pool/main/n/net-snmp/libsnmp-base_5.7.2~dfsg-8.1ubuntu3_all.deb Size: 202948 MD5sum: bf7e5ff1d27d12703fb37b82f2e13bac SHA1: fd18020d601a00b52457f8b684a069aac5906fe0 SHA256: 221e3733212d71a3a5db10527b83b7559c64b0ffee5c64a196cd948f9c8bf406 Description: SNMP configuration script, MIBs and documentation Multi-Arch: foreign Homepage: http://net-snmp.sourceforge.net/ Description-md5: 88f58315170b08fa3d81c17150b8a008 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsnmp-dev Priority: optional Section: libdevel Installed-Size: 5881 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: i386 Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Replaces: libsnmp-base (<< 5.7.2~dfsg-8.1~), libsnmp15-dev, libsnmp9-dev, snmp (<< 5.4~dfsg) Provides: libsnmp9-dev Depends: libc6-dev, libsnmp30 (= 5.7.2~dfsg-8.1ubuntu3), libwrap0-dev, libssl-dev, procps, libsensors4-dev Conflicts: libsnmp15-dev, libsnmp9-dev, snmp (<< 5.4~dfsg) Breaks: libsnmp-base (<< 5.7.2~dfsg-8.1~) Filename: pool/main/n/net-snmp/libsnmp-dev_5.7.2~dfsg-8.1ubuntu3_i386.deb Size: 1000162 MD5sum: 149632afd20cca6061e9c659505fa592 SHA1: ab75c6a3dd88bd3d35b8918a316bd1555e6e0f66 SHA256: 2c4f7664fb9bbf86508c76d4d5c776bb4167bbdcdb98ade345acd410fd0658b1 Description: SNMP (Simple Network Management Protocol) development files Homepage: http://net-snmp.sourceforge.net/ Description-md5: ebbe562b6f877c886859d7d65518292b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsnmp30 Priority: optional Section: libs Installed-Size: 3290 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: i386 Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Replaces: libsnmp-base (<< 5.4.2.1~dfsg-4), libsnmp15, snmp (<< 5.4.3~dfsg-1) Depends: libc6 (>= 2.17), libperl5.18 (>= 5.18.2), libsensors4 (>= 1:3.0.0), libssl1.0.0 (>= 1.0.0), libwrap0 (>= 7.6-4~), libsnmp-base Pre-Depends: multiarch-support Breaks: libsnmp15 Filename: pool/main/n/net-snmp/libsnmp30_5.7.2~dfsg-8.1ubuntu3_i386.deb Size: 735376 MD5sum: e985f9511d3706a06dac3b0bf0c5a190 SHA1: ca12191f4387f2ed46c828c845085fed2b92e5ed SHA256: b95dad96f060be3ccb5f739c766158e3995d639d2d87586dab51d465f29af614 Description: SNMP (Simple Network Management Protocol) library Multi-Arch: same Homepage: http://net-snmp.sourceforge.net/ Description-md5: 6e9915ae8820960c2c2746a9ba442686 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsnmp30-dbg Priority: extra Section: debug Installed-Size: 2726 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: i386 Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Depends: libsnmp30 (= 5.7.2~dfsg-8.1ubuntu3) Filename: pool/main/n/net-snmp/libsnmp30-dbg_5.7.2~dfsg-8.1ubuntu3_i386.deb Size: 1886622 MD5sum: d72aa953ea6231821fb6950ea7b2c052 SHA1: 3cfc6c87a3da0939701a47ba45ce3051e0fdf271 SHA256: 2bd914d40c9b7a00334bf15e09dea3cc9d5e0b6f2de7940b5c3833790e6c59c7 Description: SNMP (Simple Network Management Protocol) library debug Homepage: http://net-snmp.sourceforge.net/ Description-md5: 7f74eff910ad4ad61ba8299c0f44666a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsocket6-perl Priority: optional Section: perl Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.25-1 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.4) Filename: pool/main/libs/libsocket6-perl/libsocket6-perl_0.25-1_i386.deb Size: 23614 MD5sum: 72e9eb5be54c3521791b8efa3972d835 SHA1: c8643ff0462500aebda8c591f9fe63d89a33db3b SHA256: fd6032a834c0eb4992f0be777f454e59fe9617caaa548e5263cc0d13c5f0ce40 Description: Perl extensions for IPv6 Homepage: https://metacpan.org/release/Socket6 Description-md5: c2a83f9e6e10a4e09e3a82921d3af478 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsoftware-license-perl Priority: optional Section: perl Installed-Size: 482 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.103008-1 Depends: libdata-section-perl, libsub-install-perl, libtext-template-perl, perl Filename: pool/main/libs/libsoftware-license-perl/libsoftware-license-perl_0.103008-1_all.deb Size: 117870 MD5sum: 699ac21d0225d9e3bb70bafb4c675ae8 SHA1: 298e24dff9459562fd912878e2baea7a248b655d SHA256: 22d8bca354df4da049392710b1c7ef19311a858f3dd772fe24b6219f65c5e778 Description: module providing templated software licenses Homepage: https://metacpan.org/release/Software-License/ Description-md5: 7af28028a9c9fd87287fc512280a2cea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsolid4 Priority: optional Section: libs Installed-Size: 1150 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.7.0), libqt4-xml (>= 4:4.7.0), libqtcore4 (>= 4:4.8.0), libqtgui4 (>= 4:4.7.0), libstdc++6 (>= 4.1.1), libudev1 (>= 183), udev Recommends: udisks2, upower Suggests: media-player-info Breaks: kde-config-tablet (<< 1.2.5) Filename: pool/main/k/kde4libs/libsolid4_4.13.0-0ubuntu1_i386.deb Size: 257218 MD5sum: c67579fb03bbe621aadc1350adec0f4a SHA1: d68139de6e3cd1df2f8ad87e0fa5de008768c8bf SHA256: cf37fd62d2bb5ad959904bd5e51ed39a58438fa98e7f392ec61c102672a2c19d Description: Solid Library for KDE Platform Homepage: http://solid.kde.org/ Description-md5: 8c2c3226e5dda352478cce6495d83808 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libsombok-dev Priority: optional Section: libdevel Installed-Size: 673 Maintainer: Ubuntu Developers Original-Maintainer: Emmanuel Bouthenot Architecture: i386 Source: sombok Version: 2.3.1-2 Depends: libc6-dev, libsombok3 (= 2.3.1-2), libjs-jquery Filename: pool/main/s/sombok/libsombok-dev_2.3.1-2_i386.deb Size: 107302 MD5sum: 30ae2bbf9dca2b748d32fcac4244baf2 SHA1: ee1bdc357ed88e9827a8eed6ff6d76c25b0d0a55 SHA256: 047b04c33f8b1fcde7700c0c1ed514bb5a116a208e59ab4d9a2c7274655c2fac Description: Unicode Text Segmentation library (development files) Homepage: http://sourceforge.net/projects/linefold/ Description-md5: 52846f6cd13fba1ac5d444a677039181 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsombok3 Priority: optional Section: libs Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Emmanuel Bouthenot Architecture: i386 Source: sombok Version: 2.3.1-2 Depends: libthai0 (>= 0.1.12), libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/s/sombok/libsombok3_2.3.1-2_i386.deb Size: 29424 MD5sum: 643ab520ffe7510aabc76d3402ecede4 SHA1: 825fb03f60b8200bcefd93a26a9f37111d2747a4 SHA256: 46765cd4886e43ff406b7b454d1737544ffb611b260a5007e38ae8546d3d4df1 Description: Unicode Text Segmentation library Multi-Arch: same Homepage: http://sourceforge.net/projects/linefold/ Description-md5: d47198dbbd36aed7c8bd57135d739f6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsonic-dev Priority: extra Section: libdevel Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Bill Cox Architecture: i386 Source: sonic Version: 0.1.18-0ubuntu1 Depends: libsonic0 (= 0.1.18-0ubuntu1) Suggests: sonic Filename: pool/main/s/sonic/libsonic-dev_0.1.18-0ubuntu1_i386.deb Size: 12900 MD5sum: 55a6f66b8c294692b033b7b3f88df673 SHA1: 9a1d8338201b18bf007edd79c90915ecae3cfca3 SHA256: a5a0eb96e9169c2cb7aa080eda6b147a41714104ec26d6eedcce0ddecc67299f Description: Header file for linking to libsonic Multi-Arch: same Homepage: http://dev.vinux-project.org/sonic Description-md5: 0e916a9b43c67667817107a3c5dcc611 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsonic0 Priority: extra Section: libs Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Bill Cox Architecture: i386 Source: sonic Version: 0.1.18-0ubuntu1 Depends: libc6 (>= 2.3.6-6~) Pre-Depends: multiarch-support Filename: pool/main/s/sonic/libsonic0_0.1.18-0ubuntu1_i386.deb Size: 11806 MD5sum: 7e29802b94b3636930f66f788957ca25 SHA1: 1bac2d67f74294fead3a8870330e5e5a308236e6 SHA256: 02fcc0e47f8b17742ee14e8681b3ee257c97e4b252e1d5e47a9cc47630ea526b Description: Simple library to speed up or slow down speech Multi-Arch: same Homepage: http://dev.vinux-project.org/sonic Description-md5: 0391a6870696f0881e1433b185dd1562 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsoprano-dbg Priority: extra Section: libdevel Installed-Size: 8607 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: soprano Version: 2.9.4+dfsg1-0ubuntu2 Depends: libsoprano4 (= 2.9.4+dfsg1-0ubuntu2) Filename: pool/main/s/soprano/libsoprano-dbg_2.9.4+dfsg1-0ubuntu2_i386.deb Size: 8273070 MD5sum: 49f38f6aa8525e1eeb4c3b287b2850e9 SHA1: 53cc4c8818b8ac0dcde672bc68e8aa7e1e04b8b8 SHA256: 0872eafcfa45739d68cbcbcfeb323f88cfbba72e126ac5a021c27fb99ded7333 Description: debugging symbols for the Soprano RDF framework Homepage: http://soprano.sourceforge.net Description-md5: 019dcb92e7cdfd74fcf72aefdc27d39e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoprano-dev Priority: extra Section: libs Installed-Size: 588 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: soprano Version: 2.9.4+dfsg1-0ubuntu2 Replaces: libsoprano4 (<< 2.1.64+svn897713), soprano-daemon (<< 2.4.0.1+dfsg.1) Depends: libsoprano4 (= 2.9.4+dfsg1-0ubuntu2) Suggests: libsoprano-doc (= 2.9.4+dfsg1-0ubuntu2) Breaks: libsoprano4 (<< 2.1.64+svn897713), soprano-daemon (<< 2.4.0.1+dfsg.1) Filename: pool/main/s/soprano/libsoprano-dev_2.9.4+dfsg1-0ubuntu2_i386.deb Size: 67112 MD5sum: 3736090aa8a2f0023fe0ae17e19a441d SHA1: 13decefbac68f60ef036e181ed57c4cbf7432bba SHA256: 48e6a6ec640c4e21c00379d3ea1c7a425b94e5ddd49dbae8c9e3c3f41f6b8524 Description: development files for the Soprano RDF framework Homepage: http://soprano.sourceforge.net Description-md5: 995f28f001ec22457a9e4ee1f53e84b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoprano-doc Priority: extra Section: doc Installed-Size: 16319 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: soprano Version: 2.9.4+dfsg1-0ubuntu2 Replaces: libsoprano-dev (<< 2.6.0+dfsg.1-1) Recommends: qt4-doc Breaks: libsoprano-dev (<< 2.6.0+dfsg.1-1) Filename: pool/main/s/soprano/libsoprano-doc_2.9.4+dfsg1-0ubuntu2_all.deb Size: 7278682 MD5sum: 3dce538e99419c477d57dac851994e00 SHA1: b42b2da7e7ab3770dac98f999203a4f90607b21f SHA256: ad38ebc98c518a7d87f805972c9accc0f6bae7567d78b14531eac301b791a842 Description: developer documentation for the Soprano RDF framework Homepage: http://soprano.sourceforge.net Description-md5: f25b1635362c554d978106c6adf8a13a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoprano4 Priority: extra Section: libs Installed-Size: 1589 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: soprano Version: 2.9.4+dfsg1-0ubuntu2 Replaces: libsoprano3 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.6.1), libqt4-network (>= 4:4.5.3), libqt4-xml (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1), soprano-daemon (= 2.9.4+dfsg1-0ubuntu2) Conflicts: libsoprano3 Filename: pool/main/s/soprano/libsoprano4_2.9.4+dfsg1-0ubuntu2_i386.deb Size: 375804 MD5sum: 950d10c63f5c3050820811f8f97c448f SHA1: 1e57b47fae3136cef172627ed2bb2b2c9547c92e SHA256: 103ecb88e0a825a9a44f6fc622e366dee44e9c4024261db4fe35c7851ad7e1fb Description: libraries for the Soprano RDF framework Homepage: http://soprano.sourceforge.net Description-md5: 888966d00f058e9aa7cbaa8d5a1f0872 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libsoup-gnome2.4-1 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.37.3), libsoup2.4-1 (>= 2.41.90) Pre-Depends: multiarch-support Filename: pool/main/libs/libsoup2.4/libsoup-gnome2.4-1_2.44.2-1ubuntu2_i386.deb Size: 4972 MD5sum: 38a090efb420abec58e5960c41129883 SHA1: c5c70efa14ab3a689fc01b539fc4b64e94afa6b6 SHA256: 50142e4f168c8c436ecf26c99cc4ed69498eed12b42432576ba511e8b7540138 Description: HTTP library implementation in C -- GNOME support library Multi-Arch: same Description-md5: b515da5159368013f8217bb971076081 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsoup-gnome2.4-dev Priority: optional Section: libdevel Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Replaces: gir-repository-dev (<< 0.6.5-7) Depends: libsoup-gnome2.4-1 (= 2.44.2-1ubuntu2), libsoup2.4-dev (= 2.44.2-1ubuntu2) Suggests: libsoup2.4-doc Filename: pool/main/libs/libsoup2.4/libsoup-gnome2.4-dev_2.44.2-1ubuntu2_i386.deb Size: 6022 MD5sum: 970e46f757f465dd031dc92cd3be5171 SHA1: 093358110e778ccc4413286654a090f4be4aef17 SHA256: b54ae50e2b30d349d7d761f623af3d80bfdddd24a0aa914946944ef898c9e96d Description: HTTP library implementation in C -- GNOME support development files Description-md5: 8bbcc9878a5acbda1edbf6af2b9cfb54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoup2.4-1 Priority: optional Section: libs Installed-Size: 720 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9), libxml2 (>= 2.7.4), glib-networking (>= 2.32.0) Pre-Depends: multiarch-support Filename: pool/main/libs/libsoup2.4/libsoup2.4-1_2.44.2-1ubuntu2_i386.deb Size: 225588 MD5sum: 3fadebf9f8a7987241565ee4bda57b93 SHA1: d93c1119d31b9558357f60038b4e8690b2ed7a34 SHA256: 807f63ec894dafe46e0d5e7b079ebcd7dea1d2a28ecb1f43c4b6612de0b6a85a Description: HTTP library implementation in C -- Shared library Multi-Arch: same Description-md5: 2c47e713d56f9e3d99aa5439f3a11d86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsoup2.4-dbg Priority: extra Section: debug Installed-Size: 678 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Depends: libsoup2.4-1 (= 2.44.2-1ubuntu2) Filename: pool/main/libs/libsoup2.4/libsoup2.4-dbg_2.44.2-1ubuntu2_i386.deb Size: 513710 MD5sum: 8603d256b84f6d4885fb2cbdef6f55d8 SHA1: c6e31ce5694b9fa087a5937cf91ec95376ae87a8 SHA256: d417768660ffb797e9fb0a00d6144b39d6dd9c3b5fac8bbb6d98562cc75ab198 Description: HTTP library implementation in C -- debugging symbols Description-md5: 103c669c5e7b5256f86ab6471d4c4bee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoup2.4-dev Priority: optional Section: libdevel Installed-Size: 1908 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Replaces: gir-repository-dev Depends: libsoup2.4-1 (= 2.44.2-1ubuntu2), gir1.2-soup-2.4 (= 2.44.2-1ubuntu2), libglib2.0-dev (>= 2.35.0), libxml2-dev Suggests: libsoup2.4-doc Filename: pool/main/libs/libsoup2.4/libsoup2.4-dev_2.44.2-1ubuntu2_i386.deb Size: 292788 MD5sum: ccd0f7acff272d83255c921b939a390e SHA1: fd1d7700babcc2b0a973ae74998ba513e6863196 SHA256: 5d47d40f40e144f31e068c7f1cd4d5a919e5a1f16976690f9bd974aa9c90a6e8 Description: HTTP library implementation in C -- Development files Description-md5: 389065cef85cb190f877ff06e29ac787 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsoup2.4-doc Priority: optional Section: doc Installed-Size: 2041 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libsoup2.4 Version: 2.44.2-1ubuntu2 Suggests: libsoup2.4-dev Filename: pool/main/libs/libsoup2.4/libsoup2.4-doc_2.44.2-1ubuntu2_all.deb Size: 199102 MD5sum: 3506598e7fa09878fec33b86ea56f5bd SHA1: 350515e2cda634adca536f5329c8b0a23385b575 SHA256: b47353b4be56966bb35a28b97ef0cc0e7746697e7ea1e32b7fb156c37c37d37c Description: HTTP library implementation in C -- API Reference Description-md5: 30d16c4ef5565770edbdc3a8882b7f92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsp1-dev Priority: optional Section: libdevel Installed-Size: 7603 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: i386 Source: jade (1.2.1-47.3ubuntu1) Version: 1.3.4-1.2.1-47.3ubuntu1 Replaces: sp-dev Depends: libsp1c2 (= 1.3.4-1.2.1-47.3ubuntu1) Recommends: c++-compiler Conflicts: sp-dev Filename: pool/main/j/jade/libsp1-dev_1.3.4-1.2.1-47.3ubuntu1_i386.deb Size: 1113454 MD5sum: 6033153e943d5de0ab33deede1c6292b SHA1: 0befa39b797c05a675105bb38a91a192ed235f8a SHA256: 809c60a9f4188c1ff3c04e4c24d66e73cdd316b2ffbd8d131f1bd12e718645b5 Description: James Clark's SP suite, developer support Description-md5: f155b20d2640996751a3638350e98613 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsp1c2 Priority: optional Section: libs Installed-Size: 3991 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: i386 Source: jade (1.2.1-47.3ubuntu1) Version: 1.3.4-1.2.1-47.3ubuntu1 Replaces: libsp1 (<= 1.3.4-1.2.1-43) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Conflicts: jade (<< 1.2.1-43), libsp1 (<= 1.3.4-1.2.1-43) Filename: pool/main/j/jade/libsp1c2_1.3.4-1.2.1-47.3ubuntu1_i386.deb Size: 1044878 MD5sum: a45b0b9501b2d1bc608c296c30b8721d SHA1: fb411cdfc7234176826e4f8d6f6f9889a783fac6 SHA256: 252332850388646a044b3cc6a0a2314f53e30f867abfb0718493780195a87bd6 Description: Runtime library for James Clark's SP suite Description-md5: 58caf34eec9288af7b072aa4318bb242 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libsparsehash-dev Priority: optional Section: libdevel Installed-Size: 519 Maintainer: Ubuntu Developers Original-Maintainer: Athena Capital Research Architecture: all Source: sparsehash Version: 1.10-1ubuntu1 Replaces: sparsehash (<< 1.5.2) Recommends: c++-compiler Filename: pool/main/s/sparsehash/libsparsehash-dev_1.10-1ubuntu1_all.deb Size: 111016 MD5sum: f0d953c38cdd479cabfb192b5ce49f5d SHA1: 4e0a2b9c1a72fdff2642630788d9f83601b8f49d SHA256: 02042c6c6b651ebe6aa5625eacb5007a3bf3cd735e71fc85666fd198b585411a Description: Google's extremely memory-efficient C++ hash_map implementation Homepage: http://code.google.com/p/google-sparsehash Description-md5: f1892d074626ffc8f45c25a12319e388 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspe2-doc Priority: extra Section: doc Installed-Size: 4973 Maintainer: Ubuntu Developers Original-Maintainer: Arthur Loiret Architecture: i386 Source: libspe2 Version: 2.2.80-95-3.1ubuntu7 Filename: pool/main/libs/libspe2/libspe2-doc_2.2.80-95-3.1ubuntu7_i386.deb Size: 2769310 MD5sum: a0cbfc4636759f9b6ef98d685eb78128 SHA1: 0bedb36885895ada509739b8bdfb36a8f0ccabcb SHA256: f19efbf4e1f240f923fbd8d431ffe92e5e57e5c379677d33169a81f679dc8a79 Description: SPE Runtime Management Library (documentation) Homepage: http://sourceforge.net/projects/libspe Description-md5: b991b45065089a7cd66834a7cf506f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspectre-dev Priority: optional Section: libdevel Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: libspectre Version: 0.2.7-2ubuntu1 Depends: libspectre1 (= 0.2.7-2ubuntu1) Filename: pool/main/libs/libspectre/libspectre-dev_0.2.7-2ubuntu1_i386.deb Size: 28184 MD5sum: 65cf6f2ca503fbb67674d29aebb3c213 SHA1: 94457e79547219152e1eea226edb2716eec11f69 SHA256: ec572635a9f64c1c83a6f03155b536a3ec7904a6d50bbd4686ad747afa74f9c2 Description: Library for rendering PostScript documents - development files Homepage: http://libspectre.freedesktop.org Description-md5: c12c43ec185711ba54ce7cb86ba2b46c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspectre1 Priority: optional Section: libs Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: libspectre Version: 0.2.7-2ubuntu1 Depends: libc6 (>= 2.8), libgs9 (>= 8.61.dfsg.1) Pre-Depends: multiarch-support Suggests: libspectre1-dbg (= 0.2.7-2ubuntu1) Filename: pool/main/libs/libspectre/libspectre1_0.2.7-2ubuntu1_i386.deb Size: 28748 MD5sum: 3355808bf1316c0c681321703874fe59 SHA1: 728b33de8eb9a8c71857dfd75c04dd14b46c74ff SHA256: 3afc470b6f70e961f9feac4772579e42477af1d486018a4ff1a8bccdb6e3b7d9 Description: Library for rendering PostScript documents Multi-Arch: same Homepage: http://libspectre.freedesktop.org Description-md5: 091e69508e14132d0196030c81945bac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libspectre1-dbg Priority: extra Section: libdevel Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: libspectre Version: 0.2.7-2ubuntu1 Depends: libspectre1 (= 0.2.7-2ubuntu1) Filename: pool/main/libs/libspectre/libspectre1-dbg_0.2.7-2ubuntu1_i386.deb Size: 48500 MD5sum: 43abdf6aee3ff9c506c309027054b0a2 SHA1: 00fa8f0a68934ce9dc5f6435e6e72c7680a65dd5 SHA256: 48f1bb7dcf927f314cfa6a99fbc32145e41f53fe60bea1d5462c41c0bcf3fd17 Description: Debugging symbols for libspectre Homepage: http://libspectre.freedesktop.org Description-md5: 116d06f6bf0ce5d14dec03403966548e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspeechd-dev Priority: extra Section: libdevel Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Debian TTS Team Architecture: i386 Source: speech-dispatcher Version: 0.8-5ubuntu1 Depends: libspeechd2 (= 0.8-5ubuntu1) Suggests: speech-dispatcher Filename: pool/main/s/speech-dispatcher/libspeechd-dev_0.8-5ubuntu1_i386.deb Size: 16088 MD5sum: c0204481e322f62ae155f7ec9bd58def SHA1: a9c3bca2a6816d635f05b8be9e0565028769bffe SHA256: 3e04a469b2777efd0ab00aef215199f24f5d4fa6a5f83c92507c2c8a051926d2 Description: Speech Dispatcher: Development libraries and header files Homepage: http://devel.freebsoft.org/speechd Description-md5: b0cbd061ec5ff46814f8d8ed60212ce0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspeechd2 Priority: extra Section: libs Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Debian TTS Team Architecture: i386 Source: speech-dispatcher Version: 0.8-5ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.28.0) Pre-Depends: multiarch-support Filename: pool/main/s/speech-dispatcher/libspeechd2_0.8-5ubuntu1_i386.deb Size: 18498 MD5sum: 8b5e0c313fa4116838d54d01cf38a49e SHA1: a7f971a4700ce5d26b4f3b2ea0ebb399f0ea2c56 SHA256: b17a710d628f80ff0c24e18e78cc03acec24cf6163b5d3dfd8f8d9be79140fac Description: Speech Dispatcher: Shared libraries Multi-Arch: same Homepage: http://devel.freebsoft.org/speechd Description-md5: 86fcde9fb71606efb4e51038d49469ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libspeex-dbg Priority: extra Section: debug Installed-Size: 946 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: i386 Source: speex Version: 1.2~rc1.1-1ubuntu1 Depends: libspeex1 (= 1.2~rc1.1-1ubuntu1), libspeexdsp1 (= 1.2~rc1.1-1ubuntu1) Filename: pool/main/s/speex/libspeex-dbg_1.2~rc1.1-1ubuntu1_i386.deb Size: 260456 MD5sum: 3e0ccc6217714d4bf8fe67353250723f SHA1: 8c6c49df11d90f87a086b577d7b53ba5532f522f SHA256: 9d232d009a80a727547c31a846aa9f280a9b8aa0addd982ef3c3c28fec3dc8e3 Description: debugging symbols for libspeex and libspeexdsp Homepage: http://www.speex.org/ Description-md5: cc4ccd0e1dedf1c24e2ecff117d76238 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspeex-dev Priority: optional Section: libdevel Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: i386 Source: speex Version: 1.2~rc1.1-1ubuntu1 Depends: libspeex1 (= 1.2~rc1.1-1ubuntu1) Suggests: pkg-config Filename: pool/main/s/speex/libspeex-dev_1.2~rc1.1-1ubuntu1_i386.deb Size: 56256 MD5sum: 25efee51e62de27d4f0b335f168f0860 SHA1: 302c0309cf110f894a905c0a9385c5f9f92afee4 SHA256: 06aa4964b5a48381d126620437a05c014aff0d9282bdd2d5f57963004dc8af3a Description: The Speex codec library development files Multi-Arch: same Homepage: http://www.speex.org/ Description-md5: 062117b1b3154a3cf97900898baf7934 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspeex1 Priority: optional Section: libs Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: i386 Source: speex Version: 1.2~rc1.1-1ubuntu1 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Suggests: speex Conflicts: asterisk (<= 1:1.4.18.1~dfsg-1), libiaxclient1 (<= 2.0.2-1), libmediastreamer0 (<= 2.1.0-1), libopal-2.2 (<= 2.2.11~dfsg1-3), libopal-2.2-develop (<= 2.2.11~dfsg1-3), libopal-2.2-ptrace (<= 2.2.11~dfsg1-3), libopal-2.2.0 Filename: pool/main/s/speex/libspeex1_1.2~rc1.1-1ubuntu1_i386.deb Size: 87376 MD5sum: 72aff81739ea2d92c99f8c67720b5dca SHA1: 70785bfd4e639f4614abb61e16b39d6d8b8fdd0c SHA256: a5b564a9fc72780f44147f869632cd412f8a89b69dd096a02db9707acf2af0fc Description: The Speex codec runtime library Multi-Arch: same Homepage: http://www.speex.org/ Description-md5: f9da73880f1174ecd33b8c03b963867b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libspeexdsp-dev Priority: optional Section: libdevel Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: i386 Source: speex Version: 1.2~rc1.1-1ubuntu1 Depends: libspeexdsp1 (= 1.2~rc1.1-1ubuntu1), libspeex-dev (= 1.2~rc1.1-1ubuntu1) Suggests: pkg-config Filename: pool/main/s/speex/libspeexdsp-dev_1.2~rc1.1-1ubuntu1_i386.deb Size: 42104 MD5sum: 72d8359557297f792939e0f8e40c46b3 SHA1: 79eb0c8933b5b3fd3e01a723da6d7c435ec8030a SHA256: d278175a37e6a8a95c906fc29e91856a2683d3a70d4a7c456072d7ae996ee0aa Description: The Speex extended library development files Multi-Arch: same Homepage: http://www.speex.org/ Description-md5: 2f940d6d7f0aec76a3ea6b9d7f54e7fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspeexdsp1 Priority: optional Section: libs Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: i386 Source: speex Version: 1.2~rc1.1-1ubuntu1 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/s/speex/libspeexdsp1_1.2~rc1.1-1ubuntu1_i386.deb Size: 69176 MD5sum: f9fcbab80bc2f678a176903d7bfa26e0 SHA1: abddc59db7595e48668a62f77070d708d2ff1238 SHA256: f23961fdf4f972cc45daf2ef76068c9c14b01193226971e7bca2ec663cae1040 Description: The Speex extended runtime library Multi-Arch: same Homepage: http://www.speex.org/ Description-md5: da1c671ebad8956544b864bd28b091c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsphinxbase-dev Priority: optional Section: libdevel Installed-Size: 770 Maintainer: Ubuntu Developers Original-Maintainer: David Huggins-Daines Architecture: i386 Source: sphinxbase Version: 0.8-0ubuntu10 Depends: libsphinxbase1 (= 0.8-0ubuntu10), libasound2-dev, libpulse-dev Filename: pool/main/s/sphinxbase/libsphinxbase-dev_0.8-0ubuntu10_i386.deb Size: 178606 MD5sum: de886104a3ca85024e9fb5be78b18a57 SHA1: a845540a1e9a93843b3395e49941908bb1fa2f9a SHA256: b1862c89ba848b5e6cf00a82a4f9c900f35099149412bacedfdc9a53176d25da Description: Sphinx base libraries - development files Description-md5: 827df4ba157e1e7bafca7f918cbca3bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsphinxbase1 Priority: optional Section: libs Installed-Size: 331 Maintainer: Ubuntu Developers Original-Maintainer: David Huggins-Daines Architecture: i386 Source: sphinxbase Version: 0.8-0ubuntu10 Depends: libc6 (>= 2.11), libpulse0 (>= 1:0.99.1) Filename: pool/main/s/sphinxbase/libsphinxbase1_0.8-0ubuntu10_i386.deb Size: 117086 MD5sum: 5c38e24c3439da2eb6fe27c464b9a565 SHA1: d381cc96dd8045f2dbb881ff011bb5efd415a400 SHA256: 74caac53986d4a1018abbab80580bf3bed0faf501e5e398a2e26cafb80ce83c6 Description: Sphinx base libraries Description-md5: 0e2dc49a1d041cd88019e250ded953aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libspice-protocol-dev Priority: extra Section: libdevel Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: all Source: spice-protocol Version: 0.12.6-1 Filename: pool/main/s/spice-protocol/libspice-protocol-dev_0.12.6-1_all.deb Size: 22440 MD5sum: 8867a195bb30bf5fcbd264fdd2eb002b SHA1: 3fcd24b1b086d64139cdd7b00962e4f7e0b11308 SHA256: bdf031dabdfd215a5cd08843c6099178d8197b53b36274482e6e61ba17bcbcaa Description: SPICE protocol headers Homepage: http://www.spice-space.org/ Description-md5: 59c305c9662f2ba206e5b14277cce622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspice-server-dev Priority: optional Section: libdevel Installed-Size: 1692 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: i386 Source: spice Version: 0.12.4-0nocelt2 Depends: libspice-server1 (= 0.12.4-0nocelt2), libglib2.0-dev (>= 2.22~), libpixman-1-dev (>= 0.17.7~), libssl-dev, libxinerama-dev, libspice-protocol-dev (>= 0.12.0~) Suggests: pkg-config Filename: pool/main/s/spice/libspice-server-dev_0.12.4-0nocelt2_i386.deb Size: 486846 MD5sum: 3bb1141ef657d026e7770964059d2315 SHA1: fc0d119da01f87b73796363f48788818c7fa4291 SHA256: 9576686af4d4fbfde1c4e0705cf0f7da2bf8625474296c308963e4f7b8ef3412 Description: Header files and development documentation for spice-server Homepage: http://spice-space.org/ Description-md5: 5e092f34420da92b68b6d09d2757607f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspice-server1 Priority: optional Section: libs Installed-Size: 1232 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: i386 Source: spice Version: 0.12.4-0nocelt2 Depends: libc6 (>= 2.11), libglib2.0-0 (>= 2.22~), libjpeg8 (>= 8c), libpixman-1-0 (>= 0.30.0), libsasl2-2 (>= 2.1.24), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Breaks: libspice-client-glib-2.0-1 (<= 0.12-2), libspice-client-gtk-2.0-1 (<= 0.12-2), libspice-client-gtk-3.0-1 (<= 0.12-2), python-spice-client-gtk (<= 0.12-2), spice-client-gtk (<= 0.12-2) Filename: pool/main/s/spice/libspice-server1_0.12.4-0nocelt2_i386.deb Size: 404476 MD5sum: 83955b71709d77768804dc8e0f684c26 SHA1: e34c46fae36afb529e82204db955a81e77a7c311 SHA256: 1e8b11e05577a762e99754db7a47a362b7da90779e6cbdf4e34438a554892f9c Description: Implements the server side of the SPICE protocol Multi-Arch: same Homepage: http://spice-space.org/ Description-md5: 80c6d1860bed6d617aab193890ec9057 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libspiro-dev Priority: optional Section: libdevel Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: i386 Source: libspiro Version: 20071029-8ubuntu1 Depends: libspiro0 (= 20071029-8ubuntu1) Filename: pool/main/libs/libspiro/libspiro-dev_20071029-8ubuntu1_i386.deb Size: 2840 MD5sum: 3f638a574a7022610feb7e88a7eaba7d SHA1: 30f25254ea1ae472d5a16fc6f3955f4b508c7178 SHA256: 27a2fe8c075404898a911c9169a33e1fd8b6ed9df595f20e60cabc385642b397 Description: library for curve design - development files Homepage: http://sourceforge.net/projects/libspiro/ Description-md5: db8e99c31d35d3fb5c587e2b2bd86550 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspiro0 Priority: optional Section: libs Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: i386 Source: libspiro Version: 20071029-8ubuntu1 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/libs/libspiro/libspiro0_20071029-8ubuntu1_i386.deb Size: 12704 MD5sum: b1bf067df480bdb49d1a52fd977648c7 SHA1: af1afd84267ef7e081fc9c94563ddafbbcd4bb07 SHA256: 54d2eba03f53c10a7a5f99207234dfac86229f07726895fa5298ecb8ad9a060c Description: library for curve design Multi-Arch: same Homepage: http://sourceforge.net/projects/libspiro/ Description-md5: a7edff0618138d488d9920a2328b7169 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: libspiro0-dbg Priority: extra Section: libdevel Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: i386 Source: libspiro Version: 20071029-8ubuntu1 Depends: libspiro0 (= 20071029-8ubuntu1) Pre-Depends: multiarch-support Filename: pool/main/libs/libspiro/libspiro0-dbg_20071029-8ubuntu1_i386.deb Size: 14744 MD5sum: 73cd0ec57f29475288830efffc2604f6 SHA1: e513de91c0cffbc4bd96d0d34b41b880524b103d SHA256: f5b9630f983cb581eba34d84e3e43147caa9415a83b2a13e5487b4dea983ed33 Description: library for curve design - debugging symbols Multi-Arch: same Homepage: http://sourceforge.net/projects/libspiro/ Description-md5: 95d96a2c04e7c479ad1143ddb4cb71e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libspqr1.3.1 Priority: optional Section: libs Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libblas3 | libblas.so.3, libc6 (>= 2.1.3), libcholmod2.1.2, liblapack3 | liblapack.so.3 Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libspqr1.3.1_4.2.1-3ubuntu1_i386.deb Size: 59726 MD5sum: 814f954cb86402838a72ef0968c37825 SHA1: 935460ba046027ba39467e319d6be8bd4e5b475f SHA256: 25c3dfaa9f7a2a5c002f8df8abe388225ef4c00dc6e403a21c5b80df1ba39a6d Description: sparse QR factorization library Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: c5ef39f6884e5bacb6b738f4f122f2d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsqlite3-0 Priority: important Section: libs Installed-Size: 850 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: sqlite3 Version: 3.8.2-1ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/s/sqlite3/libsqlite3-0_3.8.2-1ubuntu2_i386.deb Size: 343850 MD5sum: 6f60e09d1accc6cf98fbcacb39f68bb7 SHA1: 45883077a329c62248a8921f87ab5caad7668027 SHA256: 4d0daa33faa753c4c49fe954e5d27168c6122ad5a89f5b1f12c0cdf2e89b3201 Description: SQLite 3 shared library Multi-Arch: same Homepage: http://www.sqlite.org/ Description-md5: 701b171ca60f3c96227ee4783a35419c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libsqlite3-0-dbg Priority: extra Section: libdevel Installed-Size: 1171 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: sqlite3 Version: 3.8.2-1ubuntu2 Depends: libsqlite3-0 (= 3.8.2-1ubuntu2) Filename: pool/main/s/sqlite3/libsqlite3-0-dbg_3.8.2-1ubuntu2_i386.deb Size: 1014694 MD5sum: 97cbf5c0c57ce70dc693264ff23bf809 SHA1: 18ac8a27b0de6a720758d54d03e70ec642036f6b SHA256: d204a040926e9fdcbdcd48a0adde36e8b619991d97be97597d19d1280634c871 Description: SQLite 3 debugging symbols Multi-Arch: foreign Homepage: http://www.sqlite.org/ Description-md5: 3e3950e32a67b67d9003158e5172bc1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsqlite3-dev Priority: optional Section: libdevel Installed-Size: 1365 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: sqlite3 Version: 3.8.2-1ubuntu2 Depends: libsqlite3-0 (= 3.8.2-1ubuntu2), libc6-dev Suggests: sqlite3-doc Filename: pool/main/s/sqlite3/libsqlite3-dev_3.8.2-1ubuntu2_i386.deb Size: 442288 MD5sum: e690d32cef1df5e59d82ff569d6a63ad SHA1: 49f5b6eb265ee0ee31b016ab1e5c2b857ec776ec SHA256: 19df98b629803eb755577da9ec1f0376aa653778651e842b69eb8fd7c7cfb84c Description: SQLite 3 development files Multi-Arch: same Homepage: http://www.sqlite.org/ Description-md5: 6387c6fc4f6fed646a1e0a793253786e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libss2 Priority: required Section: libs Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Replaces: e2fsprogs (<< 1.34-1) Depends: libcomerr2, libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/e/e2fsprogs/libss2_1.42.9-3ubuntu1_i386.deb Size: 66622 MD5sum: c8b2533adceb2d7dac202fdf95d313c2 SHA1: bc05ad2caab6d6548e5656ae4d0383800d543ad6 SHA256: 2f63088eb8aac076d9eb7dc69c391eb34897b89c548446d1cebfa53a8417f8fd Description: command-line interface parsing library Multi-Arch: same Homepage: http://e2fsprogs.sourceforge.net Description-md5: d3d9f89af5755a413e24d2dc0cb7df81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libss2-dbg Priority: extra Section: libdevel Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Source: e2fsprogs Version: 1.42.9-3ubuntu1 Depends: libss2 (= 1.42.9-3ubuntu1) Filename: pool/main/e/e2fsprogs/libss2-dbg_1.42.9-3ubuntu1_i386.deb Size: 76170 MD5sum: 657841a6e371ac264ccf91bfc64f30c1 SHA1: bec63815c5d88131726364fa5f06dd3499ab586a SHA256: 8e605c6a66e3bd02327411d70c5fd720b5b3bad4c27ced3d10fe8ad3466b8510 Description: debugging information for libss2 Homepage: http://e2fsprogs.sourceforge.net Description-md5: e22979de62189e1a28b592416655760a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssh-4 Priority: optional Section: libs Installed-Size: 365 Maintainer: Kubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: i386 Source: libssh Version: 0.6.1-0ubuntu3 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/libs/libssh/libssh-4_0.6.1-0ubuntu3_i386.deb Size: 114930 MD5sum: 3259587b497ce9edb6bcac4ad6bb72d6 SHA1: 3c3e2e76f11eaa8914ffd7c94fca1767f352b2f2 SHA256: 1a52151cca90cdbc25dbeee55f89075bb7d88ecd262079ded7af7690964e4b30 Description: tiny C SSH library Multi-Arch: same Homepage: http://www.libssh.org/ Description-md5: e75c6010850438f6a7ee5716913b7f6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: libssh-dbg Priority: extra Section: debug Installed-Size: 879 Maintainer: Kubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: i386 Source: libssh Version: 0.6.1-0ubuntu3 Depends: libssh-4 (= 0.6.1-0ubuntu3) Filename: pool/main/libs/libssh/libssh-dbg_0.6.1-0ubuntu3_i386.deb Size: 266240 MD5sum: 9ebe6ca17c7caaa6c15d6771ccf55927 SHA1: 8aaf77b8268aaeac1f93f64c3cd60c21759b0344 SHA256: f91e5b6658ef44c1975d2a7e82c03972712b85adad5c9180e925d8bf46bf3cae Description: tiny C SSH library. Debug symbols Multi-Arch: same Homepage: http://www.libssh.org/ Description-md5: 38dd1a1e23b0ea53ef008402fb1f5495 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssh-dev Priority: optional Section: libdevel Installed-Size: 664 Maintainer: Kubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: i386 Source: libssh Version: 0.6.1-0ubuntu3 Replaces: libssh-2-dev Depends: libssh-4 (= 0.6.1-0ubuntu3), libssl-dev, zlib1g-dev Suggests: libssh-doc Conflicts: libssh-2-dev Filename: pool/main/libs/libssh/libssh-dev_0.6.1-0ubuntu3_i386.deb Size: 145878 MD5sum: 91d825790e1646ec2a4ab551c63a89c4 SHA1: 92620bac8180d3ab741843a68c3be84fe9c11cf5 SHA256: c6561e7f85b51339eeb5d19f68453931cb6d9cd5acb47c29ef27d9b92712c023 Description: tiny C SSH library. Development files Homepage: http://www.libssh.org/ Description-md5: 07a1d6731cb7c1af3313a9c8a8c5fdca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssh-doc Priority: optional Section: doc Installed-Size: 2285 Maintainer: Kubuntu Developers Original-Maintainer: Laurent Bigonville Architecture: all Source: libssh Version: 0.6.1-0ubuntu3 Replaces: libssh-2-doc Suggests: doc-base Conflicts: libssh-2-doc Filename: pool/main/libs/libssh/libssh-doc_0.6.1-0ubuntu3_all.deb Size: 194452 MD5sum: 8ed79cdf98400c5d0f8d0e02c368e7c6 SHA1: 3cdbc8b785f9b4fe5f58cfdc62860d17724e7abe SHA256: 2c0ed097ba0ee250c986c612ee9890fcf65f7171b6275e5baaaa43202dc5804d Description: tiny C SSH library. Documentation files Homepage: http://www.libssh.org/ Description-md5: b3627dc92997800f5a0d9a1f4141b79a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssl-dev Priority: optional Section: libdevel Installed-Size: 4836 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSL Team Architecture: i386 Source: openssl Version: 1.0.1f-1ubuntu2 Depends: libssl1.0.0 (= 1.0.1f-1ubuntu2), zlib1g-dev Recommends: libssl-doc Filename: pool/main/o/openssl/libssl-dev_1.0.1f-1ubuntu2_i386.deb Size: 989748 MD5sum: 32036270208c8940ba49915450195f4b SHA1: 4163ea7e2962d0a642f4468868aee85c3eda5ec2 SHA256: cd063e3f53c426815ff312f69172f20c88eb9eac71790900969ace288b11d532 Description: Secure Sockets Layer toolkit - development files Multi-Arch: same Description-md5: 27044468897c45b271f879c7c6e135fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssl-doc Priority: optional Section: doc Installed-Size: 1456 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSL Team Architecture: all Source: openssl Version: 1.0.1f-1ubuntu2 Replaces: libssl-dev (<< 1.0.0) Breaks: libssl-dev (<< 1.0.0) Filename: pool/main/o/openssl/libssl-doc_1.0.1f-1ubuntu2_all.deb Size: 964874 MD5sum: 1d9007496cedf8f597176779cede4ca8 SHA1: f8d666394ee1d042121127c23475667f8ff812cf SHA256: b70b3da96d92b7891c74dc02f4b2c681d7f87f9617c2dae4b88e11140b59b865 Description: Secure Sockets Layer toolkit - development documentation Description-md5: 863c8f0d45ab34415ebc295c04753c98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libssl1.0.0 Priority: important Section: libs Installed-Size: 2700 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSL Team Architecture: i386 Source: openssl Version: 1.0.1f-1ubuntu2 Depends: libc6 (>= 2.7), debconf (>= 0.5) | debconf-2.0 Pre-Depends: multiarch-support Filename: pool/main/o/openssl/libssl1.0.0_1.0.1f-1ubuntu2_i386.deb Size: 778274 MD5sum: 3b33ed521d06686dffa6d4dd6078e336 SHA1: 73cce424dbfc06a8d049204363defb46fb4661c7 SHA256: 0b55823b000f7a886a4d1faf2bb178f7864f505297adaa45724fe4e017df8385 Description: Secure Sockets Layer toolkit - shared libraries Multi-Arch: same Description-md5: 88547c6206c7fbc4fcc7d09ce100d210 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libssl1.0.0-dbg Priority: extra Section: debug Installed-Size: 2885 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSL Team Architecture: i386 Source: openssl Version: 1.0.1f-1ubuntu2 Depends: libssl1.0.0 (= 1.0.1f-1ubuntu2) Filename: pool/main/o/openssl/libssl1.0.0-dbg_1.0.1f-1ubuntu2_i386.deb Size: 2344296 MD5sum: d5f28f1cf7279d9abcaf13a676e76b25 SHA1: ffe4538aabf4d618f82176745a364a2bacd06d61 SHA256: b9c6f4702dd3168b2bd98cff1dff36bee6d503cc6a3fef353ac7188e445a2970 Description: Secure Sockets Layer toolkit - debug information Multi-Arch: same Description-md5: b44e703aa71494076bf676aad96d1f64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsss-idmap-dev Priority: extra Section: libdevel Installed-Size: 93 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libsss-idmap0 (= 1.11.5-1ubuntu3) Filename: pool/main/s/sssd/libsss-idmap-dev_1.11.5-1ubuntu3_i386.deb Size: 8064 MD5sum: 63c3c75d8f097177a8ad61db27e76455 SHA1: 84a3f1b38934c94557adecdeb6c977a6b79416ae SHA256: 6b6f6295c77c9ea09942498945667ced8ed07e7aac16ff0ccd1b6cfb229f07bf Description: ID mapping library for SSSD -- development files Homepage: https://fedorahosted.org/sssd/ Description-md5: 380345e6a57d9c89908944a161167eb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsss-idmap0 Priority: extra Section: libs Installed-Size: 73 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.3.4) Filename: pool/main/s/sssd/libsss-idmap0_1.11.5-1ubuntu3_i386.deb Size: 13064 MD5sum: 84553615dff1d006668446d3ead76141 SHA1: 2b81b638206f75c30fcc6bb4789ed672a9af092f SHA256: 3bf2066835009df814fc5edcfc02dda55cb37e2418b6c25bf36a709d2d4a3674 Description: ID mapping library for SSSD Homepage: https://fedorahosted.org/sssd/ Description-md5: a1574397ba6fa04c415566b95932ee13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsss-nss-idmap-dev Priority: extra Section: libdevel Installed-Size: 62 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libsss-nss-idmap0 (= 1.11.5-1ubuntu3) Filename: pool/main/s/sssd/libsss-nss-idmap-dev_1.11.5-1ubuntu3_i386.deb Size: 5062 MD5sum: 3c71824ef1f9966204b1237187267405 SHA1: ccc8c2b8b95473459fcf0fbca8b4138eba27fd90 SHA256: 32866dfa4a48cc7e5ce2a3b2019214bd06e49fbf5f050df1cf6f8f1633c9ee44 Description: SID based lookups library for SSSD -- development files Homepage: https://fedorahosted.org/sssd/ Description-md5: ad1d64a48dd2cfb3d4bea2944dc871e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsss-nss-idmap0 Priority: extra Section: libs Installed-Size: 69 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.12) Filename: pool/main/s/sssd/libsss-nss-idmap0_1.11.5-1ubuntu3_i386.deb Size: 11976 MD5sum: 72e6b97f116f648955e51746d9618817 SHA1: 01a197c4bbfa40e5ed11d11bc6b4d23c680297d5 SHA256: 562c744a1f6774d43ce5d7c07373e300483627765f1cf5e7a143a49da1d50fa0 Description: SID based lookups library for SSSD Homepage: https://fedorahosted.org/sssd/ Description-md5: 0287e1121017ca777e10c336257c487a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsss-sudo Priority: extra Section: libs Installed-Size: 79 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: libsss-sudo-dev (<= 1.9.3) Depends: libc6 (>= 2.12) Filename: pool/main/s/sssd/libsss-sudo_1.11.5-1ubuntu3_i386.deb Size: 13096 MD5sum: 2bd1e23baf25d75e7bb824947381e738 SHA1: 7f27c4db4e3e2ab4c132b378645467cc1e5a8554 SHA256: d939df0eef3f4f7197ec61f696f42fb20d1398ef7a966c84046915f70b53e109 Description: Communicator library for sudo Homepage: https://fedorahosted.org/sssd/ Description-md5: 43cb83a7573af74214858e973f744090 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstartup-notification0 Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: startup-notification Version: 0.12-3ubuntu1 Depends: libc6 (>= 2.4), libx11-xcb1, libxcb-util0 (>= 0.3.8), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/s/startup-notification/libstartup-notification0_0.12-3ubuntu1_i386.deb Size: 19068 MD5sum: 34e3367c69ce19595e89d729351e15d4 SHA1: d73dc59f599596fd2206e9037570b4dcace63a75 SHA256: 5673e7d58f51c366ec21c8cd08ea00db9d1cb476814eb88ba17d3bcff18ad892 Description: library for program launch feedback (shared library) Multi-Arch: same Description-md5: 1b656853c1ea1a80bff6a2dbc9507928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libstartup-notification0-dev Priority: optional Section: libdevel Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: startup-notification Version: 0.12-3ubuntu1 Depends: libstartup-notification0 (= 0.12-3ubuntu1), libx11-dev, pkg-config Filename: pool/main/s/startup-notification/libstartup-notification0-dev_0.12-3ubuntu1_i386.deb Size: 17350 MD5sum: b14307e841b3644e5e725636ed8b9f2c SHA1: fe4d40de7e95525c19f83c845db8e3414190550b SHA256: 4dae1b4fdfeeb0b90bcc7d6c9c43142f0965b88f527429cd9a1393fb2f2cb6d5 Description: library for program launch feedback (development headers) Multi-Arch: same Description-md5: e74dde96ef3038679bea5ec038312e1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstatgrab-dev Priority: optional Section: libdevel Installed-Size: 422 Maintainer: Ubuntu Developers Original-Maintainer: Bartosz Fenski Architecture: i386 Source: libstatgrab Version: 0.90-1.1ubuntu1 Depends: libstatgrab9 (= 0.90-1.1ubuntu1) Conflicts: libstatgrab-dev (<< 0.12-1) Filename: pool/main/libs/libstatgrab/libstatgrab-dev_0.90-1.1ubuntu1_i386.deb Size: 84438 MD5sum: b05cd04de9794de543d77fee3813094d SHA1: 10ee375906a3fb8ee0a5293fcd6ddc802688b3aa SHA256: 254f7c53e84d0be6e9f66ee5db2c654c317cdc11c30f730eb9c7838c9372b831 Description: development files of library for system statistics Homepage: http://www.i-scream.org/libstatgrab/ Description-md5: dc536af0fcf406efe11b76a7c18a6312 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstatgrab9 Priority: optional Section: libs Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Bartosz Fenski Architecture: i386 Source: libstatgrab Version: 0.90-1.1ubuntu1 Depends: libc6 (>= 2.8) Filename: pool/main/libs/libstatgrab/libstatgrab9_0.90-1.1ubuntu1_i386.deb Size: 33950 MD5sum: f6f43d41f5b9f2d8520a019610216e6d SHA1: 8a8436f5b6ab36e26d6bbdfc74843b7872d88179 SHA256: 59d2a5dc34bf4f044e012075ebf3c31dc31c4565ed2c7417f227abca359f8125 Description: library being useful interface to system statistics Homepage: http://www.i-scream.org/libstatgrab/ Description-md5: b46351fc11cf534ea0393ae01e6f4dba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstax-java Priority: optional Section: java Installed-Size: 270 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.2.0-3build1 Depends: libjaxp1.3-java Suggests: libstax-java-doc Filename: pool/main/libs/libstax-java/libstax-java_1.2.0-3build1_all.deb Size: 193344 MD5sum: f2be70178bea48ffea33632f4569c90e SHA1: c7082625d190a7d38bab9208de5d89127e9ca74c SHA256: b8ec2b7563331c032daf0f99b8328f8e6dd3df3e2ab2af09196497c206c0a4e9 Description: StAX Reference Implementation (RI) Homepage: http://stax.codehaus.org/ Description-md5: b5d713edc04b0457f337dcf9252d0927 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstax-java-doc Priority: optional Section: doc Installed-Size: 1880 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libstax-java Version: 1.2.0-3build1 Suggests: libstax-java Filename: pool/main/libs/libstax-java/libstax-java-doc_1.2.0-3build1_all.deb Size: 164554 MD5sum: 280a4c05c369acab91d328278f9e4c9b SHA1: 14a7c4d7ba0b816af68b43788a7c90ba7bb25912 SHA256: 331ca81c9192b465c306bf197c7774ba8f134da9fbe4e66fbfde6e34ac178a52 Description: Javadoc API for libstax-java Homepage: http://stax.codehaus.org/ Description-md5: 64b9f537cecefed241b1c6273f727a1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-dev Priority: optional Section: libdevel Installed-Size: 10503 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Provides: libstdc++-dev Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libgcc-4.8-dev (= 4.8.2-19ubuntu1), libstdc++6 (>= 4.8.2-19ubuntu1), libc6-dev (>= 2.13-0ubuntu6) Suggests: libstdc++-4.8-doc Conflicts: libg++2.8-dev, libg++27-dev, libg++272-dev (<< 2.7.2.8-1), libstdc++2.10-dev (<< 1:2.95.3-2), libstdc++2.8-dev, libstdc++2.9-dev, libstdc++2.9-glibc2.1-dev, libstdc++3.0-dev Filename: pool/main/g/gcc-4.8/libstdc++-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 1058034 MD5sum: 8b2b92d26be88e3d227f167f4877dd87 SHA1: 7252de9f0da4c7640ff012784506a4c25fe5503e SHA256: 72d205a24ae400ee187551cabceeee97516e82c4780cb30308dc2006fcf34783 Description: GNU Standard C++ Library v3 (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Package: libstdc++-4.8-dev-arm64-cross Priority: extra Section: devel Installed-Size: 10999 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Provides: libstdc++-dev-arm64-cross, libstdc++-dev-arm64-dcv1 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libgcc-4.8-dev-arm64-cross (= 4.8.2-13ubuntu1cross0.11), libstdc++6-arm64-cross (>= 4.8.2-13ubuntu1cross0.11), libc6-dev-arm64-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-arm64-cross/libstdc++-4.8-dev-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 1044040 MD5sum: 02e129b609a2f3a6ac97f268d1859077 SHA1: 970676358ddada623f1db3ede64f8dd9699f76c6 SHA256: 76e415f6bae64ced3abc03889d25baa8856488c66f75f02ebdefc26772f57590 Description: GNU Standard C++ Library v3 (development files) Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 2c7e3503793ee58c31e3f3fdda6ca624 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-dev-armhf-cross Priority: extra Section: devel Installed-Size: 10801 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Provides: libstdc++-dev-armhf-cross, libstdc++-dev-armhf-dcv1 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libgcc-4.8-dev-armhf-cross (= 4.8.2-16ubuntu4cross0.11), libstdc++6-armhf-cross (>= 4.8.2-16ubuntu4cross0.11), libc6-dev-armhf-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-armhf-cross/libstdc++-4.8-dev-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 1092868 MD5sum: 793b1eb0c087ec67c26055159f614abd SHA1: 77c2f7d3c64dda238e1ceb631fe667aa4e28ad02 SHA256: 4f5cd3b85fc0d0055f98b2e162bf76d5972434dd0d3ad6945fbd63cc07ca2bfc Description: GNU Standard C++ Library v3 (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 918ad95d39a63b9b7c5e2d45f913e11c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-dev-powerpc-cross Priority: extra Section: devel Installed-Size: 10850 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Provides: libstdc++-dev-powerpc-cross, libstdc++-dev-powerpc-dcv1 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libgcc-4.8-dev-powerpc-cross (= 4.8.2-16ubuntu3cross0.11), libstdc++6-powerpc-cross (>= 4.8.2-16ubuntu3cross0.11), libc6-dev-powerpc-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-powerpc-cross/libstdc++-4.8-dev-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 1065990 MD5sum: fcacea1a7de7341a5d9d5296e469a180 SHA1: 7453c659ecc53e6bee41926fa6c3d3b8146f6105 SHA256: 97a5a5a0c47d1c88fb809bdad9ed137a2e4c1a07f8d7c9c1ff872677042085a3 Description: GNU Standard C++ Library v3 (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 2a2aa127ed9c499d57417a7065fccc24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-dev-ppc64el-cross Priority: extra Section: devel Installed-Size: 11677 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Provides: libstdc++-dev-ppc64el-cross, libstdc++-dev-ppc64el-dcv1 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libgcc-4.8-dev-ppc64el-cross (= 4.8.2-16ubuntu4cross0.4), libstdc++6-ppc64el-cross (>= 4.8.2-16ubuntu4cross0.4), libc6-dev-ppc64el-cross (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libstdc++-4.8-dev-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 1086796 MD5sum: 05cc3d09e0d0d7ac0ace252e9287f270 SHA1: fc0ace131afd0d9c55d2ca652c2c5b6d8d6ee1ea SHA256: 5cb01ad14e27ba03568672e29cc30c70e444e9449d5f972cccb356f294aa1231 Description: GNU Standard C++ Library v3 (development files) Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: 4169349002915f58859aff33a61f1cdb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-doc Priority: optional Section: doc Installed-Size: 98628 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (>= 4.8), libjs-jquery Conflicts: libstdc++5-3.3-doc, libstdc++5-doc, libstdc++6-4.0-doc, libstdc++6-4.1-doc, libstdc++6-4.2-doc, libstdc++6-4.3-doc, libstdc++6-4.4-doc, libstdc++6-4.5-doc, libstdc++6-4.6-doc, libstdc++6-4.7-doc, libstdc++6-doc Filename: pool/main/g/gcc-4.8/libstdc++-4.8-doc_4.8.2-19ubuntu1_all.deb Size: 9891184 MD5sum: 67616bb241151bf04cb42ab90bcbbb53 SHA1: 127657fb992604d375437fb6763d8d0d931bc1cb SHA256: fb02fc42323ef13cec8288476dfb125c3857d5be347512e5a166bb7c924af067 Description: GNU Standard C++ Library v3 (documentation files) Homepage: http://gcc.gnu.org/ Description-md5: 1a4b88b8d9f96dfb2ac2be1049b4db01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++-4.8-pic Priority: extra Section: libdevel Installed-Size: 2326 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libstdc++6 (>= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libstdc++-4.8-pic_4.8.2-19ubuntu1_i386.deb Size: 300874 MD5sum: b6d74e58b59572ce915227e55fbc32ff SHA1: 3c71fb0dd8476d1d7c99a12528d77fefc8e98b2b SHA256: 6057d72c5c06d4ff8e654f2c0bd61f22012395d44f5e9fd63b496dbd0fe65278 Description: GNU Standard C++ Library v3 (shared library subset kit) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 1b398e74a3b20401a8669d8c6472c7cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libstdc++6 Priority: important Section: libs Installed-Size: 1153 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6 (>= 2.17), libgcc1 (>= 1:4.1.1) Pre-Depends: multiarch-support Conflicts: scim (<< 1.4.2-1) Breaks: gcc-4.1, gcc-4.3 (<< 4.3.6-1), gcc-4.4 (<< 4.4.6-4), gcc-4.5 (<< 4.5.3-2) Filename: pool/main/g/gcc-4.8/libstdc++6_4.8.2-19ubuntu1_i386.deb Size: 261596 MD5sum: def353d01b0fd96927371635a876acfa SHA1: 89e3dac13368fe8d4fa25b0aa631ed513ee378d3 SHA256: 0adf4abc79879c2201b2818290b79f64df4f743561676e5891f9983a5883d5cc Description: GNU Standard C++ Library v3 Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 724ab84919e0e220afb960e36463914d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: libstdc++6-4.7-dbg Priority: extra Section: debug Installed-Size: 16712 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libstdc++6 (>= 4.7.3-12ubuntu1), libgcc1-dbg (>= 1:4.7.3-12ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1) Recommends: libstdc++6-4.7-dev (= 4.7.3-12ubuntu1) Conflicts: libstdc++5-3.3-dbg, libstdc++5-dbg, libstdc++6-4.0-dbg, libstdc++6-4.1-dbg, libstdc++6-4.2-dbg, libstdc++6-4.3-dbg, libstdc++6-4.4-dbg, libstdc++6-4.5-dbg, libstdc++6-4.6-dbg, libstdc++6-dbg Filename: pool/main/g/gcc-4.7/libstdc++6-4.7-dbg_4.7.3-12ubuntu1_i386.deb Size: 2545822 MD5sum: 4026664140a6aa4fff6b37c0bc8382eb SHA1: 9fadbbeb666bdc51dab220d9b96fb08dbd3def16 SHA256: 4313e77569135d1c54d71655dc02f3cb36ecfb3bca5576525da55b61a37bd9f6 Description: GNU Standard C++ Library v3 (debugging files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-4.7-dev Priority: optional Section: libdevel Installed-Size: 9893 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: g++-4.7 (<< 4.7.2-10) Provides: libstdc++-dev Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libgcc-4.7-dev (= 4.7.3-12ubuntu1), libstdc++6 (>= 4.7.3-12ubuntu1), libc6-dev (>= 2.13-0ubuntu6) Suggests: libstdc++6-4.7-doc Conflicts: libg++2.8-dev, libg++27-dev, libg++272-dev (<< 2.7.2.8-1), libstdc++2.10-dev (<< 1:2.95.3-2), libstdc++2.8-dev, libstdc++2.9-dev, libstdc++2.9-glibc2.1-dev, libstdc++3.0-dev Filename: pool/main/g/gcc-4.7/libstdc++6-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 1014692 MD5sum: 5b70b1f46c065b3ad674ef0ef9dedcb3 SHA1: 4d682120bd43baf28191dabb62d7078864b5744e SHA256: b3e7237dc5583c4eee0c0cb705a24352e3d3be722f9c509bc287f819702ce17b Description: GNU Standard C++ Library v3 (development files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-4.7-doc Priority: optional Section: doc Installed-Size: 105622 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (>= 4.7.2-16) Conflicts: libstdc++5-3.3-doc, libstdc++5-doc, libstdc++6-4.0-doc, libstdc++6-4.1-doc, libstdc++6-4.2-doc, libstdc++6-4.3-doc, libstdc++6-4.4-doc, libstdc++6-4.5-doc, libstdc++6-4.6-doc, libstdc++6-doc Filename: pool/main/g/gcc-4.7/libstdc++6-4.7-doc_4.7.3-12ubuntu1_all.deb Size: 20530576 MD5sum: 9e7370691b3ace7be49bfa84f788fe10 SHA1: 7628352e969e232ee7752e365936128ffd9f4aef SHA256: d54b0fe509fbf867203bc4382d22693c605d4c2b95ea2141c3d80a03ebba56fb Description: GNU Standard C++ Library v3 (documentation files) Homepage: http://gcc.gnu.org/ Description-md5: 1a4b88b8d9f96dfb2ac2be1049b4db01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-4.8-dbg Priority: extra Section: debug Installed-Size: 11064 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libstdc++6 (>= 4.8.2-19ubuntu1), libgcc1-dbg (>= 1:4.8.2-19ubuntu1), libc6 (>= 2.17), libgcc1 (>= 1:4.1.1) Recommends: libstdc++-4.8-dev (= 4.8.2-19ubuntu1) Conflicts: libstdc++5-3.3-dbg, libstdc++5-dbg, libstdc++6-4.0-dbg, libstdc++6-4.1-dbg, libstdc++6-4.2-dbg, libstdc++6-4.3-dbg, libstdc++6-4.4-dbg, libstdc++6-4.5-dbg, libstdc++6-4.6-dbg, libstdc++6-4.7-dbg, libstdc++6-dbg Filename: pool/main/g/gcc-4.8/libstdc++6-4.8-dbg_4.8.2-19ubuntu1_i386.deb Size: 2177754 MD5sum: 487d268d690338d09d1d3bc97e8e2862 SHA1: 23354773fcc02331081e455247f60fe111999e61 SHA256: bce04164f7b45670ab0fa63e2f26cef37aa45c54646e799061bd43ac758e0d9e Description: GNU Standard C++ Library v3 (debugging files) Multi-Arch: same Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-arm64-cross Priority: extra Section: devel Installed-Size: 985 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-arm64-cross (0.11) Version: 4.8.2-13ubuntu1cross0.11 Provides: libstdc++6-arm64-dcv1 Depends: gcc-4.8-aarch64-linux-gnu-base (= 4.8.2-13ubuntu1cross0.11), libc6 (>= 2.11), libc6-arm64-cross (>= 2.18), libgcc1-arm64-cross Conflicts: scim (<< 1.4.2-1) Filename: pool/main/g/gcc-4.8-arm64-cross/libstdc++6-arm64-cross_4.8.2-13ubuntu1cross0.11_all.deb Size: 209044 MD5sum: 3f329df7cc92b32db38f001e9d73f43a SHA1: d6ec10f947ace963a6a8aac6473b85884786cc93 SHA256: fdd123a7e9d6a6feaf028313196fc4516f3649565f06bae9ccafb8de10bb4513 Description: GNU Standard C++ Library v3 Built-Using: gcc-4.8 (= 4.8.2-13ubuntu1cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 0c25a015211275a093e04233455e1035 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-armhf-cross Priority: extra Section: devel Installed-Size: 655 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-armhf-cross (0.11) Version: 4.8.2-16ubuntu4cross0.11 Provides: libstdc++6-armhf-dcv1 Depends: gcc-4.8-arm-linux-gnueabihf-base (= 4.8.2-16ubuntu4cross0.11), libc6 (>= 2.11), libc6-armhf-cross (>= 2.19), libgcc1-armhf-cross Conflicts: scim (<< 1.4.2-1) Filename: pool/main/g/gcc-4.8-armhf-cross/libstdc++6-armhf-cross_4.8.2-16ubuntu4cross0.11_all.deb Size: 202056 MD5sum: 152d3e8b858b5e0b5290fcdc3303156a SHA1: a4711c7440f0b17fad0b27cfbfd17fe823903a46 SHA256: 3e8307f783eff176c483a3a3850b6957776c81dcfcb9ac5b55a9455553eb9b09 Description: GNU Standard C++ Library v3 Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: a6076004a43826befbd21b6d04f91793 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-powerpc-cross Priority: extra Section: devel Installed-Size: 1224 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-powerpc-cross (0.11) Version: 4.8.2-16ubuntu3cross0.11 Provides: libstdc++6-powerpc-dcv1 Depends: gcc-4.8-powerpc-linux-gnu-base (= 4.8.2-16ubuntu3cross0.11), libc6 (>= 2.11), libc6-powerpc-cross (>= 2.18), libgcc1-powerpc-cross Conflicts: scim (<< 1.4.2-1) Filename: pool/main/g/gcc-4.8-powerpc-cross/libstdc++6-powerpc-cross_4.8.2-16ubuntu3cross0.11_all.deb Size: 243240 MD5sum: c80fb893554461e7cc7eada5ccea9175 SHA1: 98a2cd2f87605394c4edddafe5949c5eeac3a48f SHA256: aeb03a13f82529d104c3dc3898dfde864c8fcdd1ebfac2e77b9c720413b2ff16 Description: GNU Standard C++ Library v3 Built-Using: gcc-4.8 (= 4.8.2-16ubuntu3cross0.11) Homepage: http://gcc.gnu.org/ Description-md5: 5b6cb0c64b5367524b4de00d0620ac84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstdc++6-ppc64el-cross Priority: extra Section: devel Installed-Size: 1337 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: all Source: gcc-4.8-ppc64el-cross (0.4) Version: 4.8.2-16ubuntu4cross0.4 Provides: libstdc++6-ppc64el-dcv1 Depends: gcc-4.8-powerpc64le-linux-gnu-base (= 4.8.2-16ubuntu4cross0.4), libc6 (>= 2.11), libc6-ppc64el-cross (>= 2.19), libgcc1-ppc64el-cross Conflicts: scim (<< 1.4.2-1) Filename: pool/main/g/gcc-4.8-ppc64el-cross/libstdc++6-ppc64el-cross_4.8.2-16ubuntu4cross0.4_all.deb Size: 248662 MD5sum: 9d9b2e407d9d2423dda0a57745c99228 SHA1: 76f0ef9a03d98b59d98a47fe60dd84471483a71f SHA256: 4763006426681a676c817141e5456366718707391f050cdc868959bbaf2bd3bc Description: GNU Standard C++ Library v3 Built-Using: gcc-4.8 (= 4.8.2-16ubuntu4cross0.4) Homepage: http://gcc.gnu.org/ Description-md5: ecc844af6f1539e4f72e5ee8a11fce91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstonith1 Priority: optional Section: libs Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue (<= 1.0.6-1), libstonith0 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libpils2 (>= 1.0.11+hg2754) Conflicts: libcluster-glue (<= 1.0.6-1), libstonith0 Filename: pool/main/c/cluster-glue/libstonith1_1.0.11+hg2754-1.1build1_i386.deb Size: 11636 MD5sum: 156f841cbdaf2235e20af44538701285 SHA1: 33fa67e337f30c62c39022812939a98d03316f48 SHA256: fe8cfc565ec088290ae388ef7747b1ca656c061bf0a4f46e526aec4c58e357f0 Description: Reusable cluster libraries -- libstonith1 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 1532ce4f90f77e4dd7c13b915c5fe298 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libstonith1-dev Priority: optional Section: libdevel Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: cluster-glue Version: 1.0.11+hg2754-1.1build1 Replaces: libcluster-glue-dev (<= 1.0.6-1), libstonith0-dev Depends: libstonith1 (= 1.0.11+hg2754-1.1build1) Conflicts: libcluster-glue-dev (<= 1.0.6-1), libstonith0-dev Filename: pool/main/c/cluster-glue/libstonith1-dev_1.0.11+hg2754-1.1build1_i386.deb Size: 18432 MD5sum: e72562ac7fb89bb4cc40a13352d08753 SHA1: 734dccee78998c64e43281ec7426c5d86bbdebbd SHA256: fe11a4d2440486e29a690df9d88512716caaa80782017978cd456f48a6502df6 Description: Reusable cluster development files -- libstonith1 Homepage: http://hg.linux-ha.org/glue/ Description-md5: 927336436b47fff1f7672a1b9994c7be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstonithd2 Priority: optional Section: libs Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libstonithd0, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libc6 (>= 2.4), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libpils2 (>= 1.0.11+hg2754), libqb0, libxml2 (>= 2.7.4) Conflicts: libstonithd0, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libstonithd2_1.1.10+git20130802-1ubuntu2_i386.deb Size: 23240 MD5sum: d9376cc2417241b0d9a44a1b9dd49b86 SHA1: 1fd99dbe9c7e263f5cb9fb147d53d49cd4e7ccca SHA256: 965d42505cead5b1d9c77d1774eea3511da0aa9bbf184ffe645d2c2a81076ee3 Description: Pacemaker libraries - stonith Homepage: http://clusterlabs.org/ Description-md5: 67bb1316543aa3beed4e79f9d581cd18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libstonithd2-dev Priority: optional Section: libdevel Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libstonithd0-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libstonithd2 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libstonithd0-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libstonithd2-dev_1.1.10+git20130802-1ubuntu2_i386.deb Size: 25874 MD5sum: fbce99f79c1123f7cf4db35f8510d9de SHA1: a1c3f74d5cae30a0f53a2f7e93fbe552ca1476e8 SHA256: 66b7af73271c32a064f0ac4bf925be11d88796e360e6e7279cf7a94004198b8f Description: Development file for pacemaker's stonith library Homepage: http://clusterlabs.org/ Description-md5: 866bcacda5049a039e49a6b60e6e38f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstreamanalyzer-dev Priority: optional Section: libdevel Installed-Size: 162 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: strigi Version: 0.7.8-1ubuntu2 Replaces: libcluceneindex-dev (<< 0.5.6-1), libstreamindexer-dev (<< 0.5.1-1) Depends: libstreamanalyzer0 (= 0.7.8-1ubuntu2), libstreams-dev (= 0.7.8-1ubuntu2) Breaks: libcluceneindex-dev (<< 0.5.6-1), libstreamindexer-dev (<< 0.5.1-1) Filename: pool/main/s/strigi/libstreamanalyzer-dev_0.7.8-1ubuntu2_i386.deb Size: 21024 MD5sum: 3a7306d371017b9b043ed3b615297a4d SHA1: df36d4612cb5a07c6cf37c9fbf0726d7805902b6 SHA256: 61fb404f344ac511a2a8f1e1151343ff62a39e290cd088e9100ec2022ef2addd Description: development files for libstreamanalyzer Homepage: http://strigi.sourceforge.net Description-md5: ae2b314826856bd46062ce85a299bbdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstreamanalyzer0 Priority: optional Section: libs Installed-Size: 1338 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: strigi Version: 0.7.8-1ubuntu2 Replaces: kdegraphics-strigi-plugins (<< 4:4.0.0-2), libcluceneindex0 (<< 0.5.6-1), libstreamindexer0 (<< 0.5.1-1), strigi-daemon (<< 0.3.11-1) Depends: libc6 (>= 2.7), libclucene-core1 (>= 2.3.3.4), libexiv2-12, libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libstreams0 (= 0.7.8-1ubuntu2), libxml2 (>= 2.7.4) Breaks: libcluceneindex0 (<< 0.5.6-1), libstreamindexer0 (<< 0.5.1-1) Filename: pool/main/s/strigi/libstreamanalyzer0_0.7.8-1ubuntu2_i386.deb Size: 273816 MD5sum: ff3e247ce7197daf08a3a6221be5a4fa SHA1: 252a45bfb56e19f12e6a948672f76de0f37b8c37 SHA256: c7338f165992d1289e61758f8ef24e9e9bbaeccda38ce940b5ae8cf370666aad Description: streamanalyzer library for Strigi Desktop Search Homepage: http://strigi.sourceforge.net Description-md5: 15968183a68ec6cdc932daffbc5d3b11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libstreams-dev Priority: optional Section: libdevel Installed-Size: 166 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libstreams0 (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/libstreams-dev_0.7.8-1ubuntu2_i386.deb Size: 21676 MD5sum: 95331a3a60f15f64defcc9de6a956188 SHA1: 1c8c3ca72f0cdb45e35ba0d1c246e2942c9f4509 SHA256: 7d82700b9a00a8876891af32eb16bbe399c1e07449849d78a0466a49de5b2fc2 Description: development files for libstreams Homepage: http://strigi.sourceforge.net Description-md5: 0a04a72faf4b8e6df75fa1f9f6794137 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstreams0 Priority: optional Section: libs Installed-Size: 252 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: strigi Version: 0.7.8-1ubuntu2 Replaces: strigi-daemon (<< 0.3.11-1) Depends: libbz2-1.0, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Filename: pool/main/s/strigi/libstreams0_0.7.8-1ubuntu2_i386.deb Size: 81242 MD5sum: a84ade81d924242d2beb1b385a76f91a SHA1: 1c9313c8eb96a41d80146fc14fe91dead46c3f7d SHA256: fb1c0a2769dee2c4f61311999144595b3b0108c42c62301b3f68361b09b66817 Description: streams library for Strigi Desktop Search Homepage: http://strigi.sourceforge.net Description-md5: 7a071e763d952398ed9633caa3e98eb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libstrictures-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.005002-1 Depends: perl Recommends: libbareword-filehandles-perl, libindirect-perl, libmultidimensional-perl Filename: pool/main/libs/libstrictures-perl/libstrictures-perl_1.005002-1_all.deb Size: 12326 MD5sum: 008ced8525e342992b68042ed67299ae SHA1: 9faec39b99b1cc388ff68dad9b29cc556d47ae24 SHA256: 5aae4c7ba69e5b78a32fbaa0b4d4b97878c32ec98dc0b3f3a032adfc7fdd8e84 Description: Perl module to turn on strict and make all warnings fatal Homepage: https://metacpan.org/release/strictures/ Description-md5: bf754ce3adf22d310c87e22afdd59df9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstrigihtmlgui-dev Priority: optional Section: libdevel Installed-Size: 50 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libsearchclient-dev (= 0.7.8-1ubuntu2), libstrigihtmlgui0 (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/libstrigihtmlgui-dev_0.7.8-1ubuntu2_i386.deb Size: 3362 MD5sum: 83bacbae93972e224561b80f1f0f4840 SHA1: 83a3f914653fc60bdcb57773312176248a3ed933 SHA256: 158c56cf1cf8d34d48c194554af0ac43a271bb531e943ec57a634850a8cc26ea Description: development files for libstrigihtmlgui Homepage: http://strigi.sourceforge.net Description-md5: a83a1bca32d3beb0b69ab13945ae0d15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstrigihtmlgui0 Priority: optional Section: libs Installed-Size: 104 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libsearchclient0 (= 0.7.8-1ubuntu2), libstdc++6 (>= 4.4.0), libstreamanalyzer0 (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/libstrigihtmlgui0_0.7.8-1ubuntu2_i386.deb Size: 25604 MD5sum: 9e5763693dac9313282f34fc12d7eea3 SHA1: d2ba39b600e82b35c192e1dd3c68ed6b72019550 SHA256: 77d6c608aea50bbda494b979b98c116c8eff79e113f0048b11a5170246214ece Description: library for writing html clients for Strigi Desktop Search Homepage: http://strigi.sourceforge.net Description-md5: d566419581f8467b8c26748c2c218e1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstrigiqtdbusclient-dev Priority: optional Section: libdevel Installed-Size: 63 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libqt4-dev (>= 4.4.0~), libstreams-dev (= 0.7.8-1ubuntu2), libstrigiqtdbusclient0 (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/libstrigiqtdbusclient-dev_0.7.8-1ubuntu2_i386.deb Size: 4854 MD5sum: e26ab66b85b8b963d4a9a712b0bf9907 SHA1: 880ab959c782e93be25dc1a0263c24e35868cc45 SHA256: 23a13fee2392a0a19bb07936ba6c61561d924ff10777a0fb8f54f623236122aa Description: development files for libstrigiqtdbusclient Homepage: http://strigi.sourceforge.net Description-md5: e7e06398fb48a5a6ddab08d0d05c74fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstrigiqtdbusclient0 Priority: optional Section: libs Installed-Size: 164 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.7.0~beta1), libstdc++6 (>= 4.1.1) Filename: pool/main/s/strigi/libstrigiqtdbusclient0_0.7.8-1ubuntu2_i386.deb Size: 42754 MD5sum: 1a1bd44e22261f0af4e00c4b68df3876 SHA1: b35c0e9f1319d462f0173be7b9d5eeee6c2b5948 SHA256: 97c76836e028865eab20ae5f44d98d4bb54f038978d0c92afdb675426b46c5c5 Description: library for writing D-Bus clients for Strigi Desktop Search Homepage: http://strigi.sourceforge.net Description-md5: 2703de9b0e91707ca30a717d14c9dca5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstring-format-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.17-1 Depends: perl Filename: pool/main/libs/libstring-format-perl/libstring-format-perl_1.17-1_all.deb Size: 9876 MD5sum: 96cddaf6fe09888b52b9420d766e5f3a SHA1: 6525fd98dfbecf216ff50a4fb50eb6006f5a5c38 SHA256: 807c7fc032439509efcef7820391af228d87d8af8d63094445189267189f100d Description: module for flexible printf-like string formatting Homepage: https://metacpan.org/release/String-Format/ Description-md5: f381fc125420ef37876cbbf45161db1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libstrongswan Priority: optional Section: net Installed-Size: 5202 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ikev2 (<< 4.6.4) Depends: libc6 (>= 2.17), libcap2 (>= 2.10), openssl Suggests: strongswan-tnc-imcvs Conflicts: strongswan (<< 4.2.12-1) Breaks: strongswan-ikev2 (<< 4.6.4) Filename: pool/main/s/strongswan/libstrongswan_5.1.2-0ubuntu2_i386.deb Size: 1391542 MD5sum: 16ad8e4754cc480aa671d0f8713a5229 SHA1: efc4a8a8be691e740be4a4d5fe2f4138ebfc5a42 SHA256: 1b180d176f8baade27772c15574a1dde624a8d36155c0298eeb53e9c4a9e41a4 Description: strongSwan utility and crypto library Homepage: http://www.strongswan.org Description-md5: 37d3dfdd9c510e7c27d10c2dd7ddba19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libstylebook-java Priority: optional Section: libs Installed-Size: 655 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: stylebook Version: 1.0~b3~svn20061109-6 Depends: libxerces2-java Filename: pool/main/s/stylebook/libstylebook-java_1.0~b3~svn20061109-6_all.deb Size: 226692 MD5sum: 2d91be70042b12d9db5079599d23e3bb SHA1: 687da69c1629385c9d36f66d48965be49e86d582 SHA256: 652f12dc02a26b37260cf63949a47797b577f433bf7f04d143b8e9ef09e6dbbf Description: XML application for authoring web site content Description-md5: 5dd02f512ac13e913b6fa52879cb6fd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsub-exporter-perl Priority: optional Section: perl Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.986-1 Depends: perl, libdata-optlist-perl, libsub-install-perl Filename: pool/main/libs/libsub-exporter-perl/libsub-exporter-perl_0.986-1_all.deb Size: 50594 MD5sum: e2066c0b5200146fd00cba58a50bf81e SHA1: cbd20daca39e01de38f2f6c5aa416a7acb9ea40a SHA256: 62e37a588124f5f0a013eabdafc75002d9d7e8ec9d399fc9cfc7a42c459c5bfb Description: sophisticated exporter for custom-built routines Homepage: https://metacpan.org/release/Sub-Exporter/ Description-md5: 831312c784e01c10890ab7865252448f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsub-exporter-progressive-perl Priority: optional Section: perl Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.001011-1 Depends: perl Filename: pool/main/libs/libsub-exporter-progressive-perl/libsub-exporter-progressive-perl_0.001011-1_all.deb Size: 7064 MD5sum: e27bb836d76a2748312c5f69854036b8 SHA1: 513e693b0648f563885cffbd20ef3a1266d56cdc SHA256: 45c1f902f201b204a881b61770240d56118748046303ba4bc44ad89b292cb728 Description: module for using Sub::Exporter only if needed Homepage: https://metacpan.org/release/Sub-Exporter-Progressive/ Description-md5: 854d6f3825a72a536574faf14f5c2cdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsub-identify-perl Priority: optional Section: perl Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.04-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libs/libsub-identify-perl/libsub-identify-perl_0.04-1build3_i386.deb Size: 9192 MD5sum: 7172382b07e03688b862449704bdd275 SHA1: 026e879e197a9da8bb3cb9f839a4a6ac3ed3fb55 SHA256: d9005036eb4c57c7fbf62448dedce5dc503991b2edfbce9bef85a60c3edb5254 Description: Retrieve names of code references Homepage: http://search.cpan.org/dist/Sub-Identify/ Description-md5: 2a26630b12f2def4d2231528d5f895f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsub-install-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.927-1 Depends: perl Filename: pool/main/libs/libsub-install-perl/libsub-install-perl_0.927-1_all.deb Size: 10584 MD5sum: dbca89fbd0bb0a394f602cd9eb776931 SHA1: 765439a2dd550d70dbbeff3780940a2df9414608 SHA256: 18767dc2fdaa8471ab635de18fdba2b467925cf4629f4fcbbc71fc5bd8d31364 Description: module for installing subroutines into packages easily Homepage: https://github.com/rjbs/Sub-Install Description-md5: f75be2b1996502fcef46043ccd6316a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libsub-name-perl Priority: optional Section: perl Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.05-1build4 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libs/libsub-name-perl/libsub-name-perl_0.05-1build4_i386.deb Size: 9690 MD5sum: 90b044f4aa64f09c08764d104c6c3c16 SHA1: 86ab3efe5f580748f602b23e70156d15e79979d1 SHA256: 7160b4876d4009dd528a59c820f54cb045d5e5d5468cc4b1bd1b2ec021d8d5d7 Description: module for assigning a new name to referenced sub Homepage: http://search.cpan.org/dist/Sub-Name/ Description-md5: 4d3c396cd9ef5cce3647113eb96c42e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libsub-uplevel-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.2400-1 Depends: perl Filename: pool/main/libs/libsub-uplevel-perl/libsub-uplevel-perl_0.2400-1_all.deb Size: 13812 MD5sum: a675610ffd040ee8106138b48f655c46 SHA1: 393b4634102686df3338f146cf9397575c97d80a SHA256: 3b64bce2cf9dbf376c30c190de5e94f4abc7ad3bb30fb78dc55fb4cdc89ad756 Description: module to spoof the Perl call stack Homepage: http://search.cpan.org/dist/Sub-Uplevel/ Description-md5: c17fcb34119603f2d9fa587afe3444b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsubunit-dev Priority: optional Section: libdevel Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: subunit Version: 0.0.18-0ubuntu7 Depends: libsubunit0 (= 0.0.18-0ubuntu7) Filename: pool/main/s/subunit/libsubunit-dev_0.0.18-0ubuntu7_i386.deb Size: 5806 MD5sum: e9f127a60c5c23b95b9068234da0c501 SHA1: b28ada82df0de09e7dbcfb26d1a95b1a5c3d8136 SHA256: adb7ad9c16408c5c21c2b7e7fafc936f6335c24ffe99e1c1f9332be5aadb34a2 Description: Unit testing protocol - Development headers and static library for libsubunit Homepage: http://code.launchpad.net/subunit Description-md5: 59f2b9e5c4fd3f1b384f397b663b2422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsubunit-perl Priority: optional Section: perl Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: all Source: subunit Version: 0.0.18-0ubuntu7 Provides: libsubunit-diff-perl Depends: perl Filename: pool/main/s/subunit/libsubunit-perl_0.0.18-0ubuntu7_all.deb Size: 5684 MD5sum: 5251d411f51b7d9202e355d37de20480 SHA1: a6b22271a4c18e50898839e2e9bf705e61517040 SHA256: 23865fcb5410ee35c94716cdc66abdaba4031b6666c5a96367932866c7ca482b Description: perl parser and diff for Subunit streams Homepage: http://code.launchpad.net/subunit Description-md5: 032829985123975208b9829a6660c274 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsubunit0 Priority: optional Section: devel Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: subunit Version: 0.0.18-0ubuntu7 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/s/subunit/libsubunit0_0.0.18-0ubuntu7_i386.deb Size: 6276 MD5sum: 87bf7e1130f0d1064b367543ef343cb3 SHA1: c788c8dec8bff58409e2061db7d430d752582702 SHA256: 1b7fd431da4248daf6385bbd77fa4ff923b2a9a6597c0e0fb24defd668df98bc Description: Unit testing protocol - C/C++ shared library Multi-Arch: same Homepage: http://code.launchpad.net/subunit Description-md5: 5666feecff2c3a72a59413c9acaa579c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsuitesparse-dbg Priority: extra Section: libdevel Installed-Size: 2045 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Replaces: libufsparse-dbg Depends: libamd2.3.1 (= 1:4.2.1-3ubuntu1), libcamd2.3.1 (= 1:4.2.1-3ubuntu1), libbtf1.2.0 (= 1:4.2.1-3ubuntu1), libcolamd2.8.0 (= 1:4.2.1-3ubuntu1), libccolamd2.8.0 (= 1:4.2.1-3ubuntu1), libcholmod2.1.2 (= 1:4.2.1-3ubuntu1), libcsparse3.1.2 (= 1:4.2.1-3ubuntu1), libcxsparse3.1.2 (= 1:4.2.1-3ubuntu1), libklu1.2.1 (= 1:4.2.1-3ubuntu1), libldl2.1.0 (= 1:4.2.1-3ubuntu1), libumfpack5.6.2 (= 1:4.2.1-3ubuntu1), libspqr1.3.1 (= 1:4.2.1-3ubuntu1), libblas-dev | libblas.so, liblapack-dev | liblapack.so Conflicts: libufsparse-dbg Filename: pool/main/s/suitesparse/libsuitesparse-dbg_4.2.1-3ubuntu1_i386.deb Size: 1864796 MD5sum: 1352da4203f69953784d03d5d3c2d163 SHA1: 16b2c445980f60304d57db7ad5f6eeadda3a3fa5 SHA256: 875e314e2ce20c8edd53f4a9d93a328f176891c3fb3b30b828d902a819f64869 Description: libraries for sparse matrices computations (debugging symbols) Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 3a4955c06bd363f9fe9a205e12a753da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsuitesparse-dev Priority: optional Section: libdevel Installed-Size: 3851 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Replaces: libsuitesparse-metis-dev, libufsparse-dev, libumfpack4-dev Provides: libufsparse-dev, libumfpack4-dev Depends: libamd2.3.1 (= 1:4.2.1-3ubuntu1), libcamd2.3.1 (= 1:4.2.1-3ubuntu1), libbtf1.2.0 (= 1:4.2.1-3ubuntu1), libcolamd2.8.0 (= 1:4.2.1-3ubuntu1), libccolamd2.8.0 (= 1:4.2.1-3ubuntu1), libcholmod2.1.2 (= 1:4.2.1-3ubuntu1), libcsparse3.1.2 (= 1:4.2.1-3ubuntu1), libcxsparse3.1.2 (= 1:4.2.1-3ubuntu1), libklu1.2.1 (= 1:4.2.1-3ubuntu1), libldl2.1.0 (= 1:4.2.1-3ubuntu1), libumfpack5.6.2 (= 1:4.2.1-3ubuntu1), libspqr1.3.1 (= 1:4.2.1-3ubuntu1), libblas-dev | libblas.so, liblapack-dev | liblapack.so Conflicts: libsuitesparse-metis-dev, libufsparse-dev, libumfpack4-dev Filename: pool/main/s/suitesparse/libsuitesparse-dev_4.2.1-3ubuntu1_i386.deb Size: 599870 MD5sum: b159fce02abbbd0b8cc0edaba049d25e SHA1: abdb144a6b39690e3a46f9d6d470af70c7c2563e SHA256: af231ac9bf721d74642f36f40fbe472d5c96f94341a6d979c68600706f0ad9e9 Description: libraries for sparse matrices computations (development files) Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 7bd01d705987cfee5928585e97b11e11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsuitesparse-doc Priority: optional Section: doc Installed-Size: 2500 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: all Source: suitesparse Version: 1:4.2.1-3ubuntu1 Replaces: libufsparse-doc, libumfpack4-doc Recommends: libblas-doc Suggests: libatlas-doc Conflicts: libufsparse-doc, libumfpack4-doc Filename: pool/main/s/suitesparse/libsuitesparse-doc_4.2.1-3ubuntu1_all.deb Size: 2138764 MD5sum: 509983918e86f9ae608650f8c997820c SHA1: 993a8db8263310e7dfc4986b7ad52aab77cdde8a SHA256: 5b480c77c708b079c8bffffb3af33cecd9c3170af257717e5951060ca3debfe2 Description: libraries for sparse matrices computations (documentation) Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: f15349737b83c1a4657a0bcdb2f64fa7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsunpinyin-dev Priority: optional Section: libdevel Installed-Size: 319 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: sunpinyin Version: 2.0.3+git20130507-1ubuntu1 Depends: libsunpinyin3 (= 2.0.3+git20130507-1ubuntu1), libsqlite3-dev Filename: pool/main/s/sunpinyin/libsunpinyin-dev_2.0.3+git20130507-1ubuntu1_i386.deb Size: 42546 MD5sum: 416fd849f8c7a2d18a90fd5abf667e9e SHA1: 429f9c8db4eea2512b6e6c9a9a38050b30600577 SHA256: 57e84fb5da25f48c965a3feb17d17a6571b6eae0bfaf1419d43a8f6b1364945b Description: Simplified Chinese Input Method from SUN (development) Multi-Arch: same Homepage: http://code.google.com/p/sunpinyin Description-md5: ee0ab4995e882afbb25b83272650b453 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsunpinyin3 Priority: optional Section: libs Installed-Size: 396 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: sunpinyin Version: 2.0.3+git20130507-1ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libsqlite3-0 (>= 3.6.11), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Recommends: sunpinyin-data Filename: pool/main/s/sunpinyin/libsunpinyin3_2.0.3+git20130507-1ubuntu1_i386.deb Size: 130904 MD5sum: 7ab1f9e47c3ad0dd1916dc9ebbcc4b4c SHA1: d1616b4a3a29d1a0cb9289e606c5812bbf51d1ff SHA256: 2b36ecd652d59e8600c893c5c1608b98d5758518a9cc96e71358553e4221f1f1 Description: Simplified Chinese Input Method from SUN (runtime) Multi-Arch: same Homepage: http://code.google.com/p/sunpinyin Description-md5: 2097d4efba2fbcf7f271d3f42eb068be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsunpinyin3-dbg Priority: extra Section: debug Installed-Size: 1534 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: sunpinyin Version: 2.0.3+git20130507-1ubuntu1 Depends: libsunpinyin3 (= 2.0.3+git20130507-1ubuntu1) Filename: pool/main/s/sunpinyin/libsunpinyin3-dbg_2.0.3+git20130507-1ubuntu1_i386.deb Size: 1470998 MD5sum: 14f605caf1e4707afaff9d8d20bd2999 SHA1: 9a211d87c2c230ebac690ab57a4f6a2f7270f8c7 SHA256: 3f82160406fddc138803bb37e4f4de8b5d841e677736ea3f7fa7c56faca82321 Description: Simplified Chinese Input Method from SUN (debug) Multi-Arch: same Homepage: http://code.google.com/p/sunpinyin Description-md5: f264d6a7d462389fbd1e24fd2c66471a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsuper-perl Priority: optional Section: perl Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.20120705-1 Depends: perl, libsub-identify-perl Filename: pool/main/libs/libsuper-perl/libsuper-perl_1.20120705-1_all.deb Size: 9754 MD5sum: 0bcff60ea6f80732c21fe17b41bc0e7d SHA1: eff6c39b0aa185984eaa697ba27939372de9c46c SHA256: 946b2af1a38f161c7160442c4e83f2d09efa9fecc7e94079df4ea3f5de0ea4a4 Description: control superclass method dispatch Homepage: http://search.cpan.org/dist/SUPER/ Description-md5: 4350c1d37109bacfad54b0ea2671637b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsvn-dev Priority: extra Section: libdevel Installed-Size: 5098 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Source: subversion Version: 1.8.8-1ubuntu3 Depends: libsvn1 (= 1.8.8-1ubuntu3), libapr1-dev, libaprutil1-dev Suggests: libsvn-doc, zlib1g-dev, libserf-dev Filename: pool/main/s/subversion/libsvn-dev_1.8.8-1ubuntu3_i386.deb Size: 1137646 MD5sum: ddd901293e91d5b92db20e1fecf5a5a0 SHA1: 53eb1a1783426efc9b970ca64d9510d2efb25f20 SHA256: 8794feda237e0a9929e61a9dbed0c2fe23fb17a1edf20893691bdad1aa0b5303 Description: Development files for Apache Subversion libraries Homepage: http://subversion.apache.org/ Description-md5: d7ba285f3a44ff8995f08ac293b28fe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsvn-doc Priority: extra Section: doc Installed-Size: 22090 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: all Source: subversion Version: 1.8.8-1ubuntu3 Suggests: libsvn-dev Filename: pool/main/s/subversion/libsvn-doc_1.8.8-1ubuntu3_all.deb Size: 1280906 MD5sum: a6b7fc8c4d588eaf1a3165d425e23c47 SHA1: 6656823380046fee1b6b5726be3ef2004167d757 SHA256: acde74e7c1aeb5d6d7e58d405d277bf12e819a25cf4e1acdd1ead89eeacf02cc Description: Developer documentation for libsvn Homepage: http://subversion.apache.org/ Description-md5: 8d748bf81b749540b1f83fe4f991a0e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsvn-perl Priority: optional Section: perl Installed-Size: 4468 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Source: subversion Version: 1.8.8-1ubuntu3 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libapr1 (>= 1.2.7), libc6 (>= 2.4), libsvn1 (>= 1.8) Pre-Depends: multiarch-support Filename: pool/main/s/subversion/libsvn-perl_1.8.8-1ubuntu3_i386.deb Size: 700234 MD5sum: 518b13544df43693185c506a890f9f97 SHA1: 8d37b169855082e1030cabc9340f8c8a54a7d7bf SHA256: c73d150e527b26d9b792028ee77aa84b927beb7d7627b191c2079b4503cd0708 Description: Perl bindings for Apache Subversion Homepage: http://subversion.apache.org/ Description-md5: aa3fb72865b42c59ad1e6eae171929c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsvn1 Priority: optional Section: libs Installed-Size: 3076 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Source: subversion Version: 1.8.8-1ubuntu3 Depends: libsqlite3-0 (>= 3.7.12), libapr1 (>= 1.4.8-2~), libaprutil1 (>= 1.4.0), libc6 (>= 2.4), libdb5.3, libexpat1 (>= 2.0.1), libsasl2-2 (>= 2.1.24), libserf-1-1 (>= 1.2), zlib1g (>= 1:1.2.0) Pre-Depends: multiarch-support Filename: pool/main/s/subversion/libsvn1_1.8.8-1ubuntu3_i386.deb Size: 905910 MD5sum: ad50f330bc2ca1321e591ff2fd513d9d SHA1: 1919ec917e2863e9f7bd7de04ad9a31f9d0c549a SHA256: bb8934dc715af72a77f0813670c7e5e0c2794bb3cae7a5c7720af812c2cfe337 Description: Shared libraries used by Apache Subversion Multi-Arch: same Homepage: http://subversion.apache.org/ Description-md5: e815569b5d20540901c51f341d283767 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libsybdb5 Priority: optional Section: libs Installed-Size: 456 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: freetds Version: 0.91-5 Depends: libc6 (>= 2.17), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), freetds-common Pre-Depends: multiarch-support Filename: pool/main/f/freetds/libsybdb5_0.91-5_i386.deb Size: 186526 MD5sum: c81733c7202f8ac0f35c94b36c8c65d0 SHA1: c5da8c5d1e18be8dcb06d0479f217c9039332b5b SHA256: d8b1b28ec83190ced5e8002861e98b5b0851bc9d3e525a103fcf238fa0597aeb Description: libraries for connecting to MS SQL and Sybase SQL servers Multi-Arch: same Homepage: http://www.freetds.org/ Description-md5: 29f178ab4ec52996d65073243a0058bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsys-hostname-long-perl Priority: optional Section: perl Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.4-3 Depends: perl Filename: pool/main/libs/libsys-hostname-long-perl/libsys-hostname-long-perl_1.4-3_all.deb Size: 11288 MD5sum: b9ea42fa48a38f9a1a38c50fa15182c8 SHA1: 3cbe94bafd33bae56e5c224fc088cf94c6e54e93 SHA256: 5da17f75165e1bdb50cc3b310f33d025d3fac7794deb737928f4162db0579bfe Description: Figure out the long (fully-qualified) hostname Homepage: https://metacpan.org/release/Sys-Hostname-Long Description-md5: d1aab2fe16f112cfe5293e933da478c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libsysfs-dev Priority: extra Section: libdevel Installed-Size: 155 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: sysfsutils Version: 2.1.0+repack-3ubuntu1 Depends: libsysfs2 (= 2.1.0+repack-3ubuntu1) Filename: pool/main/s/sysfsutils/libsysfs-dev_2.1.0+repack-3ubuntu1_i386.deb Size: 31600 MD5sum: c62aac0254ef16450c9edb0d42d3c857 SHA1: d56c75005d7792139e09391062e0b0da895fc236 SHA256: a1ce003b2bb0fa56c65a8aad3ae59e86b59658c47e63735db4c4f02c12b3d289 Description: interface library to sysfs - development files Multi-Arch: same Description-md5: 48efb28cae29a6158cfd77dbcbf6161f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsysfs2 Priority: optional Section: libs Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: sysfsutils Version: 2.1.0+repack-3ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/s/sysfsutils/libsysfs2_2.1.0+repack-3ubuntu1_i386.deb Size: 19998 MD5sum: a4f0cea1cbe3d3476888c8bcdc1eda2c SHA1: db476a18e474d391506c47db65d99fcf2484914d SHA256: e7f53b9fa6a27c3cb85db2b1562646a092a3fc1841090c5528c2db9559fe6486 Description: interface library to sysfs Multi-Arch: same Description-md5: beea9a89080e1a346e148d9e6bdc4fa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-daemon-dev Priority: extra Section: libdevel Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Depends: libsystemd-daemon0 (= 204-5ubuntu20) Filename: pool/main/s/systemd/libsystemd-daemon-dev_204-5ubuntu20_i386.deb Size: 7314 MD5sum: 24769fe492db83454b309b241377e343 SHA1: 33190b4891ced3d3f4ed15db2353430469fe4ae5 SHA256: c4654c94b77b9a19bd833e3c197fd03ea2ddd8d596d293f85a2bcb0cd613927a Description: systemd utility library - development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 15fdb9eeef9f47e6b4ff92785bbb9d88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-daemon0 Priority: standard Section: libs Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Depends: libc6 (>= 2.8) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libsystemd-daemon0_204-5ubuntu20_i386.deb Size: 9898 MD5sum: 082ada3e772705dca051e7ba13b2625b SHA1: 5e975a8383630888038fe3dd5b2ab4796095377e SHA256: ff025e6677ba9704a12a264ba449f59ddb1decf96e29bf4920ce49988ac3f6a2 Description: systemd utility library Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 56515555df42a10999b8edaaa40373ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libsystemd-id128-0 Priority: extra Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Depends: libc6 (>= 2.7), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libsystemd-id128-0_204-5ubuntu20_i386.deb Size: 14050 MD5sum: fba9ddff46b674f53bccdb62219cd8f3 SHA1: 6fb460891dec911dfe3a9f2c69ad6afde1a92c97 SHA256: 724710ea76962bf9032f7e297e336adc5d4a51793d470bc1603f8033972f56e3 Description: systemd 128 bit ID utility library Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: f1e829bb4ba3cea00c4172d21882434f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-id128-dev Priority: extra Section: libdevel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Depends: libsystemd-id128-0 (= 204-5ubuntu20) Filename: pool/main/s/systemd/libsystemd-id128-dev_204-5ubuntu20_i386.deb Size: 5084 MD5sum: 25cd9390d19494dee11edf49dde31f28 SHA1: ab8db296fc1e05d3a1bf62a5c5840928f6419a85 SHA256: e0062de1f150fed56a7dc27089eddaa6a19fcac65d97b9ebe55a4acac49cf97e Description: systemd 128 bit ID utility library - development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: a0489c042528c7c04fd2a6520c578975 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-journal-dev Priority: extra Section: libdevel Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Depends: libsystemd-journal0 (= 204-5ubuntu20), libsystemd-id128-dev (= 204-5ubuntu20) Filename: pool/main/s/systemd/libsystemd-journal-dev_204-5ubuntu20_i386.deb Size: 6752 MD5sum: 9c03178ca55db7d0f5395bfd630c952b SHA1: f4214c9aece54913a3884f1b4f7e8b2682b48e29 SHA256: 06b03de3ce3d23791ee83dd7c347fd06021caf95433583bcfe426e1130796a9c Description: systemd journal utility library - development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: e80c34da97e3cfda38731839be115201 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-journal0 Priority: extra Section: libs Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Depends: libc6 (>= 2.9), libcgmanager0, libdbus-1-3 (>= 1.0.2), libgcrypt11 (>= 1.5.1), liblzma5 (>= 5.1.1alpha+20120614), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libselinux1 (>= 1.32) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libsystemd-journal0_204-5ubuntu20_i386.deb Size: 54126 MD5sum: eefceb4c83373860476a625d9275f823 SHA1: 36e811b5a698dbb3119ab6e9bf457ed69eabed23 SHA256: 94cb6d9c2007e327fded636f03a8697dcf38b15aec940e167f25dfc711861fdc Description: systemd journal utility library Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 954612493a4438c396bb24b45a566df6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libsystemd-login-dev Priority: extra Section: libdevel Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Depends: libsystemd-login0 (= 204-5ubuntu20) Filename: pool/main/s/systemd/libsystemd-login-dev_204-5ubuntu20_i386.deb Size: 5970 MD5sum: 88a1fcee24c5562e54e025506a5c8fb8 SHA1: 9b3ec25202919080ef6530fe8a775930d1a56933 SHA256: 72fd5cfd494d03ffcfec6955dcbc3b7d45df1cae21d5af93689e5711c72ddb4b Description: systemd login utility library - development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 134f5d47241710892d4b4dbcc9f39609 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libsystemd-login0 Priority: standard Section: libs Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Depends: libc6 (>= 2.14), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libsystemd-login0_204-5ubuntu20_i386.deb Size: 27250 MD5sum: 5186bc5d54213099dcd753663ee206c4 SHA1: 5543208b1f3b6f1d68692c5458f5c785014e2301 SHA256: 7e36ae13187adc9f9286c20804df2b4f6a455369f3c1959f0d908f233426bc1b Description: systemd login utility library Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 2a0d17f149cad5d96dc1de7cde14133b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libt1-5 Priority: optional Section: libs Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: i386 Source: t1lib Version: 5.1.2-3.6ubuntu1 Depends: libc6 (>= 2.11), libx11-6 Filename: pool/main/t/t1lib/libt1-5_5.1.2-3.6ubuntu1_i386.deb Size: 124042 MD5sum: 4ba38dba33c413dc4575816ce09615ff SHA1: efc2a961f214872cb39114cff26ebc78806ccc1f SHA256: a022aa39c4c53043dd807f46982dceb13fb60dc269dcc6c584f4caf62a486cf7 Description: Type 1 font rasterizer library - runtime Homepage: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/ Description-md5: 6054872dd8ea2995d1fb43e82bc5f11c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libt1-5-dbg Priority: extra Section: libdevel Installed-Size: 720 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: i386 Source: t1lib Version: 5.1.2-3.6ubuntu1 Depends: libt1-5 (= 5.1.2-3.6ubuntu1) Filename: pool/main/t/t1lib/libt1-5-dbg_5.1.2-3.6ubuntu1_i386.deb Size: 221182 MD5sum: 40a044b8a83f927cffef54ad4c79458c SHA1: 3353a5cb98456b0ed535cb372014de17bf7e92b6 SHA256: 3d6ef5281356a906575f29dcf7dae9e14c81177a789a1285aeb20cd2c275b6ae Description: Type 1 font rasterizer library - debugging runtime Homepage: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/ Description-md5: 91d6e0d47644b5830b80355301f88ab6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libt1-dev Priority: optional Section: libdevel Installed-Size: 458 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: i386 Source: t1lib Version: 5.1.2-3.6ubuntu1 Depends: libt1-5 (= 5.1.2-3.6ubuntu1), libice-dev, libsm-dev, libx11-dev, libxext-dev, libxaw7-dev Recommends: libt1-doc Conflicts: t1lib-dev, t1lib1-dev Filename: pool/main/t/t1lib/libt1-dev_5.1.2-3.6ubuntu1_i386.deb Size: 129296 MD5sum: 1cc32e50e1d0002591f571b7003992e7 SHA1: acaf1549674e67bbd4c132591d02953541be9a80 SHA256: e29e4f41fdb7ce8c2ab860f1bb8841aafc60f98c6f18f382383c4725d02a5982 Description: Type 1 font rasterizer library - development Homepage: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/ Description-md5: d31783ce92d7638c4b0e560caa634570 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libt1-doc Priority: optional Section: doc Installed-Size: 627 Maintainer: Ubuntu Developers Original-Maintainer: Ruben Molina Architecture: all Source: t1lib Version: 5.1.2-3.6ubuntu1 Filename: pool/main/t/t1lib/libt1-doc_5.1.2-3.6ubuntu1_all.deb Size: 596544 MD5sum: 59b121c6b41fdf82104c74eda9e7d5f9 SHA1: bbb9ebc331bdaf8dd29ff9bbe089c2e8fc129369 SHA256: 39a3d5c1c212d1e4c8f479aa57e23d33bfee08577b7df44a6a03c58cc018c40e Description: Type 1 font rasterizer library - developers documentation Homepage: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/ Description-md5: f17cb6a5d2cb89c14d634a7f513fb812 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtag1-dev Priority: optional Section: libdevel Installed-Size: 666 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: i386 Source: taglib Version: 1.9.1-2 Depends: libtag1c2a (= 1.9.1-2) Filename: pool/main/t/taglib/libtag1-dev_1.9.1-2_i386.deb Size: 108538 MD5sum: 93689839fce305831bdb46c65d880ecb SHA1: 62386f1cbaf801a2da7a4a7c17b149591d3b0aba SHA256: 7776d73a94285928ef741ba17f43ff820734cbcac25b366d7ce04b279457f61d Description: audio meta-data library - development files Homepage: http://taglib.github.io/ Description-md5: 888301518d75bc0f4763bd782d79488d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtag1-doc Priority: optional Section: doc Installed-Size: 18199 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: all Source: taglib Version: 1.9.1-2 Suggests: libtag1-dev Filename: pool/main/t/taglib/libtag1-doc_1.9.1-2_all.deb Size: 10345364 MD5sum: fdf067dbbab04d3e1520120a958fb1d4 SHA1: 88c51dd65b37dcf4a156791f14adde2efc8c4a9a SHA256: 703919aab6d6a47f4a7e396314b03d127e2deaa1fb2fe2df8f0a68282dd21f1c Description: audio meta-data library - API documentation Homepage: http://taglib.github.io/ Description-md5: a45842d55346277537d04149faf76dc5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtag1-vanilla Priority: optional Section: libs Installed-Size: 1040 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: i386 Source: taglib Version: 1.9.1-2 Replaces: libtag1c2a (<< 1.5-5) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Conflicts: libtag-extras0, libtag1-rusxmms Breaks: libtag1c2a (<< 1.5-5) Filename: pool/main/t/taglib/libtag1-vanilla_1.9.1-2_i386.deb Size: 350236 MD5sum: 623ee2f19eb1e38f7d73e0648f1af4bf SHA1: 1aba4ac85bbaf3066483ba09a4240a89efc62d29 SHA256: ec3f24230e3fecfecb3bd4922ff0b820ffff8459d15a611edcc416c3aac30b73 Description: audio meta-data library - vanilla flavour Multi-Arch: same Homepage: http://taglib.github.io/ Description-md5: 4cac4306ea9b6bab8a13ffcfdc43f65b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtag1c2a Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: i386 Source: taglib Version: 1.9.1-2 Depends: libtag1-vanilla (= 1.9.1-2) Conflicts: libtag-extras0 Filename: pool/main/t/taglib/libtag1c2a_1.9.1-2_i386.deb Size: 11292 MD5sum: 6955ecb86d83feea2abefdd7bed4df8f SHA1: 64219b17d3cbfc6b0c3cdfe6b5acb4bd7eacd1a4 SHA256: 154299d47928e9ed7a9c70bd4acecb7512303780eb2c2e96bbc6a56953f32ac5 Description: audio meta-data library Multi-Arch: same Homepage: http://taglib.github.io/ Description-md5: 9e8abedb5ef9077269b0efcfa0f6b56e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtagc0 Priority: optional Section: libs Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: i386 Source: taglib Version: 1.9.1-2 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libtag1c2a (>= 1.6-2~) Pre-Depends: multiarch-support Filename: pool/main/t/taglib/libtagc0_1.9.1-2_i386.deb Size: 17628 MD5sum: ec916d88e2dbe78c485c3a75f58cd51b SHA1: 9712a7b0a544d2f9f6ab329b01ea28f9085d17dd SHA256: 11c89e9c56347805e98dfd3f7a21ca7cca8063427553a62ffa62c79e553d9686 Description: audio meta-data library - C bindings Multi-Arch: same Homepage: http://taglib.github.io/ Description-md5: b062c82335f422c90bf8a4aca5ebe973 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, ubuntustudio-desktop Package: libtagc0-dev Priority: optional Section: libdevel Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Modestas Vainius Architecture: i386 Source: taglib Version: 1.9.1-2 Depends: libtagc0 (= 1.9.1-2), libtag1-dev (= 1.9.1-2) Filename: pool/main/t/taglib/libtagc0-dev_1.9.1-2_i386.deb Size: 14248 MD5sum: 3465f601f6231b841a89d549be054013 SHA1: c5377e0df89243e19ea109d69c073a34552d0167 SHA256: 599f2d71d5090dc03c8db20412d43ae92e56f8cb14116f6fb73f85b5a2b16244 Description: audio meta-data library - development files for C bindings Homepage: http://taglib.github.io/ Description-md5: 622b9fbae757efd9e71c6d783eb91edc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtagcoll2-dev Priority: optional Section: libdevel Installed-Size: 584 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: i386 Source: tagcoll2 Version: 2.0.14-1 Depends: zlib1g-dev, libwibble-dev (>= 1.0), libwibble-dev (<< 2.0) Recommends: pkg-config Filename: pool/main/t/tagcoll2/libtagcoll2-dev_2.0.14-1_i386.deb Size: 136126 MD5sum: f5d3dfbeb62db1c69abcaa3de700ef2d SHA1: d33483fa5d0ae07352a111a236ab4ef151ac1fc6 SHA256: 054926b0d76bfaaa4d7a91d53c20397dbc144c28025e826079b92540cfb2a1d1 Description: Functions used to manipulate tagged collections (development version) Homepage: http://debtags.alioth.debian.org Description-md5: 4f0bb748070edb127d52d61cbbb2702d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtalloc-dev Priority: optional Section: libdevel Installed-Size: 374 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: talloc Version: 2.1.0-1 Depends: libtalloc2 (= 2.1.0-1), pkg-config Filename: pool/main/t/talloc/libtalloc-dev_2.1.0-1_i386.deb Size: 108830 MD5sum: 1a0f3c0057dba2c4a7b3db5f35eb38da SHA1: 33afcbd861429d619a0b66b8fe7d3d69b2bda33e SHA256: 680dd952f13bbe05d7ae5f15429c41e679090bf7b19684a7526f94ecb66c29f0 Description: hierarchical pool based memory allocator - development files Homepage: http://talloc.samba.org/ Description-md5: 41677e6816a10958e5b86e549c6ecf01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtalloc2 Priority: optional Section: libs Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: talloc Version: 2.1.0-1 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/t/talloc/libtalloc2_2.1.0-1_i386.deb Size: 23926 MD5sum: 9c2fd113cd6647252b271b4de3732aeb SHA1: 7b7ddcc84c8107c65e0efe96c993fdc06d3c04de SHA256: 0ced9a180871d56459bd33d0d8e1944b3fa808c002462c486bddb70af30df7a2 Description: hierarchical pool based memory allocator Multi-Arch: same Homepage: http://talloc.samba.org/ Description-md5: 23f3872767580f46840e3abd41107394 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtalloc2-dbg Priority: extra Section: debug Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: talloc Version: 2.1.0-1 Depends: libtalloc2 (= 2.1.0-1) Pre-Depends: multiarch-support Recommends: libc6-dbg Filename: pool/main/t/talloc/libtalloc2-dbg_2.1.0-1_i386.deb Size: 50306 MD5sum: 79fa6df4795c4e9ef196436a32dad855 SHA1: 43f18f1ba741cf18274875b18081daf095abe304 SHA256: 822822e8d1cb739cd6d4ac45798b7669ba8fdb3c90c0e18b727b7b3d74998ebb Description: hierarchical pool based memory allocator - debug symbols Homepage: http://talloc.samba.org/ Description-md5: 807bdd376662c5eef0feac49164723cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtask-weaken-perl Priority: optional Section: perl Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.04-1 Depends: perl Filename: pool/main/libt/libtask-weaken-perl/libtask-weaken-perl_1.04-1_all.deb Size: 7628 MD5sum: 63a4c1fc864ce4c40baeecd41b9f3687 SHA1: 6eb57cc48468d7717ac2446d38fcb481a2c3b9cf SHA256: 9bcb5173323e91f6eb2f8e2c4ba9c46cd7901b1839313715f6409d0cf6954ce3 Description: module for ensuring that a platform has weaken support Homepage: https://metacpan.org/release/Task-Weaken/ Description-md5: fb54943f95a181df94f31285215fbe20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libtasn1-3-bin Priority: optional Section: libs Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: all Source: libtasn1-6 Version: 3.4-3 Depends: libtasn1-bin (>= 3.4-3) Filename: pool/main/libt/libtasn1-6/libtasn1-3-bin_3.4-3_all.deb Size: 10934 MD5sum: 2f58f1b455da0425cfeef3b6ec5084aa SHA1: 729deba8d5aaa1a5ffaf7a58775eacd035948cfa SHA256: a24772bcb9a5259c581852359f863cf110d72c28aee9380850916f892cc14488 Description: transitional libtasn1-3-bin package Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: 9b8edec27d06e44855d970a28ccda9e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtasn1-3-dev Priority: optional Section: libdevel Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: all Source: libtasn1-6 Version: 3.4-3 Depends: libtasn1-6-dev (>= 3.4-3) Filename: pool/main/libt/libtasn1-6/libtasn1-3-dev_3.4-3_all.deb Size: 10944 MD5sum: e9d2b2cb24b3425d5a96f8933cfe636c SHA1: 912a63fcfa53fffd0dc541e52ed2205c9049523d SHA256: a845fe62f8e6a796ab86fd0be160e4065e83610a313085e4e8603a547fa807e1 Description: transitional libtasn1-3-dev package Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: 03ff2e7a2940858ca918043dc06ec083 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtasn1-6 Priority: important Section: libs Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Version: 3.4-3 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libt/libtasn1-6/libtasn1-6_3.4-3_i386.deb Size: 42496 MD5sum: c0b1e7ab5ae53aa1202ea09304fae874 SHA1: 8d63099305c4f1bac5ef315e14c75d8cd8dbc73b SHA256: be6dc48a4d064509445564ce3ccbaa6e91aa545860ae603365c8066e3a45499d Description: Manage ASN.1 structures (runtime) Multi-Arch: same Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: 535058cbce5722d1c5d399c0854dd71f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtasn1-6-dbg Priority: extra Section: debug Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: libtasn1-6 Version: 3.4-3 Replaces: libtasn1-3-dbg Depends: libtasn1-6 (= 3.4-3) Breaks: libtasn1-3-dbg Filename: pool/main/libt/libtasn1-6/libtasn1-6-dbg_3.4-3_i386.deb Size: 98484 MD5sum: 4e695df4510219b4767fc08a2d729725 SHA1: 5c80c5862a63c9939f4be7345cbd5577b034473e SHA256: 52a57a70d770678d954cf7754fbc730ce83cfc06571fe0abe570d80574defccb Description: Manage ASN.1 structures (debugging symbols) Multi-Arch: same Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: 67fb96d4e0d5f10a38b9e0c4455c5c29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtasn1-6-dev Priority: optional Section: libdevel Installed-Size: 744 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: libtasn1-6 Version: 3.4-3 Provides: libtasn1-dev Depends: libtasn1-6 (= 3.4-3) Conflicts: libtasn1-dev Filename: pool/main/libt/libtasn1-6/libtasn1-6-dev_3.4-3_i386.deb Size: 381746 MD5sum: a87ad12d6301a090dce5d1d4457b7c1e SHA1: 35733c0154f7c51a8af7b30a80fe6496d4c7078f SHA256: f7b5d56169e287d76a8223b3f1397c095edc63296133a5e6d938e0dbba61997b Description: Manage ASN.1 structures (development) Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: b706df99ecc890cee403a672ad9b84df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtasn1-bin Priority: extra Section: devel Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: libtasn1-6 Version: 3.4-3 Replaces: libtasn1-3-bin Depends: libc6 (>= 2.17), libtasn1-6 (>= 3.4-0) Breaks: libtasn1-3-bin (<< 3) Filename: pool/main/libt/libtasn1-6/libtasn1-bin_3.4-3_i386.deb Size: 14848 MD5sum: 46f287f321a8f93d7ee7b81ade3c2555 SHA1: 7d3017435d23874eac38b85782f4cbddfc48cbc4 SHA256: 13ffb43ae0ccdb7fb4526393f5bc0c06f01cb2e58d9ec3b6206ade53dbda52ca Description: Manage ASN.1 structures (binaries) Multi-Arch: foreign Homepage: http://www.gnu.org/software/libtasn1/ Description-md5: 732971f746a6a2ec0311889ae799da20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtcl8.5 Priority: optional Section: libs Installed-Size: 3207 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: i386 Source: tcl8.5 Version: 8.5.15-2ubuntu1 Replaces: tcl8.5 (<< 8.5.14-3), tcl8.5-lib (<< 8.5.14-3) Provides: libtcl Depends: tzdata, libc6 (>= 2.15) Pre-Depends: multiarch-support Suggests: tcl8.5 Conflicts: tcl74 (<= 7.4p3-2), tcl8.5 (<< 8.5.14-3), tcl8.5-lib (<< 8.5.14-3) Filename: pool/main/t/tcl8.5/libtcl8.5_8.5.15-2ubuntu1_i386.deb Size: 678442 MD5sum: bfaa5d745d7be8c1a4b629e8816bb87d SHA1: 77e53158a8a89faab300a5bfebb242806136b18c SHA256: 2c9eb6b15447d3bad87b50b21f965ef16f149d2b514b6fcfa7090c3054db1f1a Description: Tcl (the Tool Command Language) v8.5 - run-time library files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 260caa7ab61a859c3c9d8ad96fc97d41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, ubuntustudio-desktop Package: libtcl8.5-dbg Priority: extra Section: debug Installed-Size: 1765 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: i386 Source: tcl8.5 Version: 8.5.15-2ubuntu1 Depends: libtcl8.5 (= 8.5.15-2ubuntu1) Filename: pool/main/t/tcl8.5/libtcl8.5-dbg_8.5.15-2ubuntu1_i386.deb Size: 1679216 MD5sum: 707af3b4660c8f83a1678e477c97e5aa SHA1: 29890137ef80bfdaea025e84610bc3d115005d32 SHA256: b40a2c914407b3d74fcd17a3a102a0f1a2db0ba50450e85540f7550d56cb5882 Description: Symbol files for libtcl8.5 Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: ef2147b05825feee9140ec7ad3a93443 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtcl8.6 Priority: optional Section: libs Installed-Size: 3677 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Source: tcl8.6 Version: 8.6.1-4ubuntu1 Replaces: tcl8.6 (<< 8.6.0-2), tcl8.6-lib (<< 8.6.0-2) Provides: libtcl Depends: tzdata, libc6 (>= 2.15), zlib1g (>= 1:1.2.2) Pre-Depends: multiarch-support Suggests: tcl8.6 Conflicts: tcl74 (<= 7.4p3-2), tcl8.6 (<< 8.6.0-2), tcl8.6-lib (<< 8.6.0-2) Filename: pool/main/t/tcl8.6/libtcl8.6_8.6.1-4ubuntu1_i386.deb Size: 827298 MD5sum: 96e81f5488f622388cbfe86a4955585f SHA1: 0e4b31c0fc2c69ff4f75fb193b09cdcd903c5c60 SHA256: 6994e22751522b4bfeb33eeeced8de18ea49e0b3981fc0b71a46d2bf0c337d12 Description: Tcl (the Tool Command Language) v8.6 - run-time library files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 0900ad020fbf5b0aca4aa49a8044d863 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtcl8.6-dbg Priority: extra Section: debug Installed-Size: 2725 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Source: tcl8.6 Version: 8.6.1-4ubuntu1 Depends: libtcl8.6 (= 8.6.1-4ubuntu1) Filename: pool/main/t/tcl8.6/libtcl8.6-dbg_8.6.1-4ubuntu1_i386.deb Size: 2632152 MD5sum: 6c6d555dd59da20fa60cc15355ed9cf8 SHA1: 239abf7bdf81b335be12fc16bfb16eaf703a463a SHA256: e1a9b176373f365d35a8c2f384c17bf96b4aa98a55a5c0678634b603ff429945 Description: Symbol files for libtcl8.6 Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: ccc9af2ab91f309e5fc456d6cd0695c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtcmalloc-minimal4 Priority: optional Section: libs Installed-Size: 402 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: google-perftools Version: 2.1-2ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/g/google-perftools/libtcmalloc-minimal4_2.1-2ubuntu1_i386.deb Size: 102152 MD5sum: 491def221e2123146ba53e2ec072a119 SHA1: 01e2a3220a939ac6097cf1a3f48112cbc2232f34 SHA256: a5c44a0074cab4b1ecca6cbe01ea76b6df4c3047c68eaef21b9b6f2368e51582 Description: efficient thread-caching malloc Homepage: http://code.google.com/p/gperftools/ Description-md5: 08055bb6b0955f242fbf2149e901979d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtcmalloc-minimal4-dbg Priority: extra Section: debug Installed-Size: 787 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: google-perftools Version: 2.1-2ubuntu1 Depends: libtcmalloc-minimal4 (= 2.1-2ubuntu1) Filename: pool/main/g/google-perftools/libtcmalloc-minimal4-dbg_2.1-2ubuntu1_i386.deb Size: 661228 MD5sum: 1c9cde407cf4574b4e4cb20053acceb2 SHA1: bb8a43adbf39e72151c951e25d25b5cd84406197 SHA256: acc1f4ac58548723877b46bca977c652723d2de11d491b0656739da9f14b0c28 Description: efficient thread-caching malloc Homepage: http://code.google.com/p/gperftools/ Description-md5: c2fafc6e901cbe7fc4d3527149a354eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtdb-dev Priority: optional Section: libdevel Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: tdb Version: 1.2.12-1 Replaces: tdb-dev (<< 1.2.0-1) Provides: tdb-dev Depends: libc6-dev, libtdb1 (= 1.2.12-1) Conflicts: tdb-dev (<< 1.2.0-1) Filename: pool/main/t/tdb/libtdb-dev_1.2.12-1_i386.deb Size: 21988 MD5sum: b044e60c6912cb53b81254a43b8b1bc4 SHA1: fb34afe8e6de1afa62b993fa95a3b2f0e0db86b3 SHA256: 1de800e713df1727c9d067feac86918cb663842b46f2b88e52f049d5d6d30df1 Description: Trivial Database - development files Homepage: http://tdb.samba.org/ Description-md5: 2db2deda00827a5a869d0647c19be720 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtdb1 Priority: optional Section: libs Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: tdb Version: 1.2.12-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/t/tdb/libtdb1_1.2.12-1_i386.deb Size: 38580 MD5sum: 4a3bb3eebaf8858d63bdfd3709c4dcab SHA1: d02ab63cbf9e3a49aefc17dc4353ff1e1ad4c975 SHA256: 8bb25d54a2d0418bcf6a4d0fcc8c0610fb7d7f81a20cf53f91885ec78e9e59b3 Description: Trivial Database - shared library Multi-Arch: same Homepage: http://tdb.samba.org/ Description-md5: 0f3fcc8a1c8e6b3b4c956fdf394636a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtdb1-dbg Priority: extra Section: debug Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: tdb Version: 1.2.12-1 Depends: libtdb1 (= 1.2.12-1) Recommends: libc6-dbg Filename: pool/main/t/tdb/libtdb1-dbg_1.2.12-1_i386.deb Size: 70158 MD5sum: ec389ae2c28b50dd5b906dd8fb531ed5 SHA1: b08c842ccb9391510b7ecb352f094ccc401b75d6 SHA256: affdac5b997fbc0aa0070048c736fee900a0ff87e682d8d44dfdc03f3762efee Description: Trivial Database - debug symbols Homepage: http://tdb.samba.org/ Description-md5: d4b3d4aac20f22e37a8477db996c7bb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-farstream-dev Priority: optional Section: libdevel Installed-Size: 399 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-farstream Version: 0.6.1-0ubuntu1 Depends: libtelepathy-farstream3 (= 0.6.1-0ubuntu1), libglib2.0-dev (>= 2.16), libdbus-glib-1-dev (>= 0.60), libfarstream-0.2-dev (>= 0.1.1), libtelepathy-glib-dev (>= 0.13.4), libgstreamer1.0-dev Filename: pool/main/t/telepathy-farstream/libtelepathy-farstream-dev_0.6.1-0ubuntu1_i386.deb Size: 56920 MD5sum: c84376f328eaf9f515df7526fed0b3c4 SHA1: 77e19d1a4f9dfa6ee58abc41a453c661dd7306dc SHA256: 758fcdce464a43d09a43cf94e1cb26e5f10a4442f80923286fe8dc15aea3c96b Description: Glue library between telepathy and farstream (development files) Homepage: http://telepathy.freedesktop.org/ Description-md5: 7059845522da2433f9e336314529f605 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-farstream-doc Priority: optional Section: doc Installed-Size: 255 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: telepathy-farstream Version: 0.6.1-0ubuntu1 Depends: lynx | www-browser Suggests: devhelp Filename: pool/main/t/telepathy-farstream/libtelepathy-farstream-doc_0.6.1-0ubuntu1_all.deb Size: 16830 MD5sum: 92fa674a4b75b4ed2950bff4443cbf55 SHA1: a9291c758ade8a06f2028284233fbbe10c18d570 SHA256: 711ceb93292f72b588c2dea9d69a3b6e33a4080fd7235845be1f3992cb42ac8c Description: Glue library between telepathy and farstream (documentation) Homepage: http://telepathy.freedesktop.org/ Description-md5: 0ad7276522e83b70c5bb63c4dd3ba6f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-farstream3 Priority: optional Section: libs Installed-Size: 328 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-farstream Version: 0.6.1-0ubuntu1 Depends: libc6 (>= 2.1.3), libdbus-glib-1-2 (>= 0.78), libfarstream-0.2-2 (>= 0.1.91), libglib2.0-0 (>= 2.31.8), libgstreamer1.0-0 (>= 1.0.0), libtelepathy-glib0 (>= 0.19.0) Pre-Depends: multiarch-support Filename: pool/main/t/telepathy-farstream/libtelepathy-farstream3_0.6.1-0ubuntu1_i386.deb Size: 56358 MD5sum: 7036a037ab7d41bbdb9f662194ebd4ef SHA1: 6c43666c879f132f639a10b8ffa867c91abae1d4 SHA256: ab989aa8fe57a0492bc91dc9b101347a39e46ea8e9a829a2bccb540f9de0fd2d Description: Glue library between telepathy and farstream Multi-Arch: same Homepage: http://telepathy.freedesktop.org/ Description-md5: 1487c1b6d888d475ae70862d26313c1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libtelepathy-farstream3-dbg Priority: extra Section: debug Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-farstream Version: 0.6.1-0ubuntu1 Depends: libtelepathy-farstream3 (= 0.6.1-0ubuntu1) Filename: pool/main/t/telepathy-farstream/libtelepathy-farstream3-dbg_0.6.1-0ubuntu1_i386.deb Size: 157216 MD5sum: e704d1258d85c2b3f923d4c2d5e59ceb SHA1: 4e011d88f2c225ff5633b024e336ea8ea4d82348 SHA256: e810ccc75ed4a472022539716420ece2a4a20ea3ed2d1ebcdbf05581629bb153 Description: Glue library between telepathy and farstream (debug symbols) Multi-Arch: same Homepage: http://telepathy.freedesktop.org/ Description-md5: c5e1ddfe74dd7235319cd0e5accd797c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-glib-dev Priority: optional Section: libdevel Installed-Size: 7189 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-glib Version: 0.22.1-1ubuntu2 Depends: libtelepathy-glib0 (= 0.22.1-1ubuntu2), gir1.2-telepathyglib-0.12 (= 0.22.1-1ubuntu2), libglib2.0-dev (>= 2.32), libdbus-1-dev (>= 0.95), libdbus-glib-1-dev (>= 0.90), pkg-config Suggests: libtelepathy-glib-doc Filename: pool/main/t/telepathy-glib/libtelepathy-glib-dev_0.22.1-1ubuntu2_i386.deb Size: 890404 MD5sum: ca2ae6566bdc65a1b6ab3e838deea843 SHA1: 8ffac71ea284582f06c3c52b2f21c066c6759fa4 SHA256: 1327c2dac9f273b8f6639b6a296636d7776230d97fe566682d2976f1b7a2eaa9 Description: GLib Telepathy connection manager library (headers) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: cecc48489d9277257f3e75f69d84e5a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-glib-doc Priority: optional Section: doc Installed-Size: 14853 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: telepathy-glib Version: 0.22.1-1ubuntu2 Suggests: devhelp Filename: pool/main/t/telepathy-glib/libtelepathy-glib-doc_0.22.1-1ubuntu2_all.deb Size: 904314 MD5sum: 8ac91e3fffca12df62ae510c073082ce SHA1: 5151d73c169de2d0768e7c48b08ee6293c3a772e SHA256: d2357b7dd44e440d6fb1e1ec94d9cb38dd3ca338c9c02cbc4dce2910b24357e3 Description: GLib Telepathy library (documentation) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 4a02941f4dc85c9b62b0b5e012eeb814 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-glib0 Priority: optional Section: libs Installed-Size: 2490 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-glib Version: 0.22.1-1ubuntu2 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.92), libglib2.0-0 (>= 2.32) Pre-Depends: multiarch-support Filename: pool/main/t/telepathy-glib/libtelepathy-glib0_0.22.1-1ubuntu2_i386.deb Size: 559908 MD5sum: bd7e702d23939efb9ed74f80e632b214 SHA1: 0a3bae2b802294226f5e0fc46ceaf6207324a947 SHA256: df1fc8a746ffa554d5a8a90b6dac16e5b422ded9d15b6a9b008bf403ac61c2fc Description: Telepathy framework - GLib library Multi-Arch: same Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: bbae6d3ff9e905985fa54ab934ff329f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtelepathy-glib0-dbg Priority: extra Section: libdevel Installed-Size: 2131 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-glib Version: 0.22.1-1ubuntu2 Depends: libtelepathy-glib0 (= 0.22.1-1ubuntu2) Filename: pool/main/t/telepathy-glib/libtelepathy-glib0-dbg_0.22.1-1ubuntu2_i386.deb Size: 1728304 MD5sum: c2e145149c151e2501a231f461b3e5f1 SHA1: 75c39186e9e36da74b9c5e4aab273ed69cbb45af SHA256: 77f2d1f46fff1ae4339d30218b5dd6a1f9616311a703b3086db77398f8ee5ae3 Description: GLib Telepathy library (debug symbols) Multi-Arch: same Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 0cfc4d9765b9f67c68f2d8cb09d8c803 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-logger-dev Priority: optional Section: libdevel Installed-Size: 431 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-logger Version: 0.8.0-3 Depends: libtelepathy-logger3 (= 0.8.0-3), gir1.2-telepathylogger-0.2 (= 0.8.0-3), libglib2.0-dev (>= 2.22), libdbus-glib-1-dev (>= 0.11.5), pkg-config (>= 0.21) Suggests: libtelepathy-logger-doc Filename: pool/main/t/telepathy-logger/libtelepathy-logger-dev_0.8.0-3_i386.deb Size: 76380 MD5sum: 99328c02bb375aab37bc14d7c21c58f8 SHA1: b39e7893c3ee1533cd6bb08288e91795d1e29403 SHA256: 2366716367972dad373512c2ea41092d32bd710038a8e4785048c974edcaf2ea Description: Telepathy logger service -- utility library (headers) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 7423195bf5dc867605a3c6aa1b016cad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-logger-doc Priority: optional Section: doc Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: all Source: telepathy-logger Version: 0.8.0-3 Suggests: devhelp Filename: pool/main/t/telepathy-logger/libtelepathy-logger-doc_0.8.0-3_all.deb Size: 20222 MD5sum: 90fd4897c9958f7a08b540587d4be3b5 SHA1: 174f35ddf107db7d16c2e42f1d9270f941884a00 SHA256: 07bb54ed63d67f1228aea86ed55e192e38db13cdfa11c3f808d0553ea6583fb1 Description: Telepathy logger service -- documentation Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: f4e7b201a3b235288c458398442ffb10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtelepathy-logger3 Priority: optional Section: libs Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-logger Version: 0.8.0-3 Replaces: libtelepathy-logger2 (= 0.6.0-1) Depends: libc6 (>= 2.7), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9), libtelepathy-glib0 (>= 0.19.2), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Breaks: libtelepathy-logger2 (= 0.6.0-1) Filename: pool/main/t/telepathy-logger/libtelepathy-logger3_0.8.0-3_i386.deb Size: 63672 MD5sum: f37edc1d6274323a3d58c5a6105ea33b SHA1: e4ff455fa5872470aedb2953347902b00ba30de0 SHA256: 6a78a3e6131e4c764a59e845be6556dbaea8fdcee1705ff71fffc8cdd4f13bd9 Description: Telepathy logger service - utility library Multi-Arch: same Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 2cfae4fc7dd895b9280f68c4b8dd2025 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libtelepathy-logger3-dbg Priority: extra Section: debug Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-logger Version: 0.8.0-3 Replaces: libtelepathy-logger1-dbg, libtelepathy-logger2-dbg (= 0.6.0-1) Depends: libtelepathy-logger3 (= 0.8.0-3) Breaks: libtelepathy-logger2-dbg (= 0.6.0-1) Filename: pool/main/t/telepathy-logger/libtelepathy-logger3-dbg_0.8.0-3_i386.deb Size: 214188 MD5sum: 05fa979e48acc2bd87f79569d1639270 SHA1: 1a3d80a525fff8061551de34e75b0d73a1c52f1a SHA256: 9db2c485d4aa9b3a752d0deb215550ffc814e81a5beddf5ea801cef079ec54a4 Description: Telepathy logger service -- debug symbols Multi-Arch: same Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 7a74f634d7008640b32af72d23d34000 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtemplate-perl Priority: optional Section: perl Installed-Size: 1503 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Mako Hill Architecture: i386 Version: 2.24-1.1 Provides: templatetoolkit-perl Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4), libappconfig-perl (>= 1.56) Suggests: libtemplate-perl-doc, libtemplate-plugin-gd-perl, libtemplate-plugin-xml-perl Filename: pool/main/libt/libtemplate-perl/libtemplate-perl_2.24-1.1_i386.deb Size: 624034 MD5sum: ed1863a7cdc814dcf38252abb7eb16e4 SHA1: 1e79486c7ad45eef32361338dc82e5ff8bdd4f5a SHA256: c9483f4bc9e3e7b75b9f2c636f2dbec5a77e47303f93716233f723e27081ba9a Description: the "Template Toolkit" template processing system in perl Homepage: http://search.cpan.org/~abw/Template-Toolkit/ Description-md5: 667adb8a5246151994c9d7e9e7dfd49e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtemplate-perl-doc Priority: optional Section: perl Installed-Size: 4985 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Mako Hill Architecture: all Source: libtemplate-perl Version: 2.24-1.1 Filename: pool/main/libt/libtemplate-perl/libtemplate-perl-doc_2.24-1.1_all.deb Size: 1134240 MD5sum: 0b4ef1e15ecbf7eb7e9cce9a0b5a9ec7 SHA1: 71bc7f062c0b3dab7d87d2c9e04aee224f75e68c SHA256: bb19a04ef9a42098517001830b3fe427e58bb13f6d788d08cfee57fe99d98342 Description: documentation for libtemplate-perl (template toolkit) Enhances: libtemplate-perl Homepage: http://search.cpan.org/~abw/Template-Toolkit/ Description-md5: 7977c1281809ab6e6dd2028f8addabe9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libterm-readkey-perl Priority: optional Section: perl Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 2.31-1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.15) Filename: pool/main/libt/libterm-readkey-perl/libterm-readkey-perl_2.31-1_i386.deb Size: 27200 MD5sum: 004f13fdb4316d6e38e08bd9b8b4b95b SHA1: fb1a2f6d9c2abac3771bf6c353c26af3dec7747e SHA256: cba88c5e5cd64e0a8ce2d37d31a383fc03e28b73dc9d9b04f5968e2299e0fee8 Description: perl module for simple terminal control Homepage: https://metacpan.org/release/TermReadKey/ Description-md5: 6180fb9eb6d5cbd38176d9b822391b98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libterm-size-perl Priority: optional Section: perl Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.207-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libt/libterm-size-perl/libterm-size-perl_0.207-1build1_i386.deb Size: 10942 MD5sum: 50355eef138c4d466240df581e514cb6 SHA1: b8433a789b6bcf9e6b05850a27a2a85acebdaff7 SHA256: 639f12121561d8a82552dba50e579020365cf8e282f75a7eb456bc6d89713d1c Description: Perl extension for retrieving terminal size Homepage: http://search.cpan.org/dist/Term-Size/ Description-md5: cacecec0c2115a65ee6450a58a1be0d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libterm-ui-perl Priority: important Section: perl Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.42-1 Depends: perl, liblog-message-simple-perl | perl (<< 5.17) Filename: pool/main/libt/libterm-ui-perl/libterm-ui-perl_0.42-1_all.deb Size: 18272 MD5sum: 10524c827464c5b829e32a37df4fb99c SHA1: f2c5975077afee4c7aef4ed668722aa9d1f1cfcd SHA256: b539958015d8cdc29b124d8073dcb450fc7fa99436b69038b480a5547a75755a Description: Term::ReadLine UI made easy Homepage: https://metacpan.org/release/Term-UI/ Description-md5: a1604b835be35aeb53e69ee2a1104119 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtest-checkdeps-perl Priority: optional Section: perl Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.010-1 Depends: perl (>= 5.14) | libcpan-meta-perl (>= 2.120920), libcpan-meta-check-perl (>= 0.007), perl (>= 5.14) | libmodule-metatadata-perl, perl Filename: pool/main/libt/libtest-checkdeps-perl/libtest-checkdeps-perl_0.010-1_all.deb Size: 7516 MD5sum: ad99c7090071387d7e04f6f919a1ec42 SHA1: a7cc4e8779739245642ac7e48f46b36449405157 SHA256: e270cbdf928cbb9f35395bce96159cafd84f644825000281c80849653a0dd9dd Description: check for presence of dependencies Homepage: http://search.cpan.org/dist/Test-CheckDeps/ Description-md5: b92a93274e18a02855fd7f1b1339769b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-cpan-meta-perl Priority: optional Section: perl Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.23-1 Depends: perl Filename: pool/main/libt/libtest-cpan-meta-perl/libtest-cpan-meta-perl_0.23-1_all.deb Size: 22368 MD5sum: de83413f7a7f022ff65fd931be942cf3 SHA1: 222e4c9e3fe0aef2b51ae371ac70a9e1bd07d79c SHA256: bb5d7e73bb7b154c8098f50754b15128b1361375ca9a6f72a44dfe3387406bf0 Description: test module to validate package metadata for CPAN Homepage: https://metacpan.org/release/Test-CPAN-Meta/ Description-md5: b468749c53ffff0e94ee29a24ce69923 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-deep-perl Priority: optional Section: perl Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.112-1 Depends: perl Filename: pool/main/libt/libtest-deep-perl/libtest-deep-perl_0.112-1_all.deb Size: 39232 MD5sum: 177fdc1bd1ff1f159bddd8292e8a1625 SHA1: e7e74adc004e5a43c533db0628baab15a37cbb02 SHA256: 5924ea36739bc61ac64f42e25f7b737aa18828f3cbcfed6d584fb0c1b8e1a2b0 Description: Perl module for extremely flexible deep comparisons Homepage: https://metacpan.org/release/Test-Deep/ Description-md5: 73cd5da785d054447b6e60a9c9aa4413 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-differences-perl Priority: optional Section: perl Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.61-1 Depends: perl (>= 5.13.0), libtext-diff-perl Filename: pool/main/libt/libtest-differences-perl/libtest-differences-perl_0.61-1_all.deb Size: 17234 MD5sum: c760f5c70d305269b27160e95b6d7550 SHA1: feaa1856e796b316c762565e12ae5867d612882d SHA256: 4a52d3d719d041f1bd75e293e01867099d6d24760691c58f454cff811e7fb738 Description: Perl module to test string and data structure differences Homepage: http://search.cpan.org/dist/Test-Differences/ Description-md5: a8c6988b57ccec8ea3e432b94e0d4ffa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-exception-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.32-1 Depends: perl, libsub-uplevel-perl Filename: pool/main/libt/libtest-exception-perl/libtest-exception-perl_0.32-1_all.deb Size: 15976 MD5sum: 21b28e2bd046fd0189715bdb99a911fa SHA1: 4b4689c45a8cf314a90beead1a650778814d936f SHA256: 0079144ed8294f36748e4ebc1d238b3e4b4a0c09f98304efb65a640335549db0 Description: module for testing exception-based code Homepage: https://metacpan.org/release/Test-Exception/ Description-md5: 86b2fffa95f12ffe1616dcc8453427d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-failwarnings-perl Priority: optional Section: perl Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.7-1 Depends: perl Filename: pool/main/libt/libtest-failwarnings-perl/libtest-failwarnings-perl_0.7-1_all.deb Size: 8476 MD5sum: 1c30d92149b2ac28d2236c422bde224b SHA1: 2e2d442a868f749a2e08112e3ef9d7dc083c9b48 SHA256: 18b505dc78af9242fc4f25af4cfc9654119eac08cd7c06eb9cfb710de3b1b29b Description: module for adding test failures if warnings are caught Homepage: https://metacpan.org/release/Test-FailWarnings/ Description-md5: 77cd849f7a135f071326c16cd46989d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-fatal-perl Priority: optional Section: perl Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.012-1 Depends: perl, libtry-tiny-perl (>= 0.07) Filename: pool/main/libt/libtest-fatal-perl/libtest-fatal-perl_0.012-1_all.deb Size: 10250 MD5sum: 4bec224517bf424273353526b198b348 SHA1: fc5b27ae33e3be56a45d3424b9cad0fbb796d31e SHA256: 8abe5f276f272832d2446ba4a382e03931cbcb8080011b9bffb93ab838057e6f Description: module for testing code with exceptions Homepage: https://metacpan.org/release/Test-Fatal/ Description-md5: 663dcee23cc06f40e2690e989196ad5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-harness-perl Priority: optional Section: perl Installed-Size: 657 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 3.30-1 Depends: perl Filename: pool/main/libt/libtest-harness-perl/libtest-harness-perl_3.30-1_all.deb Size: 258450 MD5sum: d61fe04cb8a53cd9b6b904399e3bb6f1 SHA1: 88117a02d6801c11dd70234fc352581e4484a07a SHA256: d6b56bcd2fd5c41c3d27845337a52c0b37fbb6875ff7fa59566a7c5e0bfb0399 Description: module to run standard Perl test scripts with statistics Homepage: https://metacpan.org/release/Test-Harness/ Description-md5: 19d0b5f443f263f69b1183a94037b80f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-inter-perl Priority: optional Section: perl Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.05-1 Depends: perl Filename: pool/main/libt/libtest-inter-perl/libtest-inter-perl_1.05-1_all.deb Size: 38972 MD5sum: 35d31fd89f4bc8ddce8d261d9c8ecfee SHA1: fea364402bdef5b90cf64744f9e036f454d6ba19 SHA256: e492a65e144555143e62a2b8b14b5f91ce7a4ea40e5001d5b2672b582ff4f96c Description: framework for more readable interactive test scripts Homepage: https://metacpan.org/release/Test-Inter/ Description-md5: 8740cc6c23ab4b1a4d64796399480d0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-leaktrace-perl Priority: optional Section: perl Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.14-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.11) Filename: pool/main/libt/libtest-leaktrace-perl/libtest-leaktrace-perl_0.14-1build3_i386.deb Size: 22238 MD5sum: 3ff67ad3030e8e5097ddbff7bbecf406 SHA1: 02d7474b4b6d18b8276e2404ec3f4347faec1fda SHA256: 7971ae8f5b7c395ad9938e46629f166b71e806d03530ae0d9959a2f041935458 Description: Perl test module for tracing memory leaks Homepage: http://search.cpan.org/dist/Test-LeakTrace/ Description-md5: 44f7d84b31d908d4dea79804cb924f77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-memory-cycle-perl Priority: optional Section: perl Installed-Size: 68 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.04-1 Depends: perl (>= 5.6.0-16), libpadwalker-perl, libdevel-cycle-perl (>= 1.07) Filename: pool/main/libt/libtest-memory-cycle-perl/libtest-memory-cycle-perl_1.04-1_all.deb Size: 8072 MD5sum: d82500b2919c26e08ec9b998848c5ff0 SHA1: c2158c88c41bc3dc238766df034b7ed80296e816 SHA256: 68f0b46e569dee068835fbfb74c406a194fc4cda11e79c00bea60f6d80f7fc7a Description: Perl module that verifies code hasn't left circular references Homepage: http://search.cpan.org/dist/Test-Memory-Cycle/ Description-md5: bd48d7e7c3d475b47b6b0c0a042e08bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-minimumversion-perl Priority: optional Section: perl Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.101081-1 Depends: perl, libfile-find-rule-perl, libfile-find-rule-perl-perl, libperl-minimumversion-perl (>= 1.32), perl (>= 5.13.10) | libcpan-meta-perl Filename: pool/main/libt/libtest-minimumversion-perl/libtest-minimumversion-perl_0.101081-1_all.deb Size: 8440 MD5sum: 350add113903eb0d0e7ca05bf4e47d4b SHA1: f22e42db86bbb268d29e77a5ef2c69745b1b92e8 SHA256: 0e7327311c95c22757e5c49c49e13453d6eb89a71481bb826a8e54e4bbb33e30 Description: Perl test module to check the version of perl required Homepage: https://metacpan.org/release/Test-MinimumVersion/ Description-md5: ba9a973e639952fee904f13b188ef7c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-most-perl Priority: optional Section: perl Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.33-1 Depends: perl, libexception-class-perl, libtest-deep-perl, libtest-differences-perl (>= 0.61), libtest-exception-perl (>= 0.31), perl (>= 5.13.3) | libtest-harness-perl, libtest-warn-perl (>= 0.23) Filename: pool/main/libt/libtest-most-perl/libtest-most-perl_0.33-1_all.deb Size: 22876 MD5sum: 6e91b6354ac35c075644c5184ae435f4 SHA1: 3fc65aca1608df2510bb2b3aa5f0032f04f14057 SHA256: 6e99ad842d75554cb143f91c5870092605dae8e6e8df06d7425d83ec70f485a7 Description: Perl module with the most commonly needed test functions and features Homepage: https://metacpan.org/release/Test-Most/ Description-md5: 40af6726afd38f6494807dbcbfbaa73f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-nowarnings-perl Priority: optional Section: perl Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.04-1 Depends: perl (>= 5.10.1) Filename: pool/main/libt/libtest-nowarnings-perl/libtest-nowarnings-perl_1.04-1_all.deb Size: 11462 MD5sum: ffa26c3024c55f481f1e73e2008a2fbd SHA1: 770eca66e462dbd9ddc5e848e2b22b62725a39be SHA256: 68a7dcb7cfc7d614e654ac6163584e89d353a3779a55c681e27811e097d8c022 Description: module to make sure you didn't emit any warnings while testing Homepage: http://search.cpan.org/dist/Test-NoWarnings/ Description-md5: 73c551c227fb4e5ef1a4323629a4478e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-object-perl Priority: optional Section: perl Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.07-2 Depends: perl Filename: pool/main/libt/libtest-object-perl/libtest-object-perl_0.07-2_all.deb Size: 7842 MD5sum: 766568b334c2649001385ca67222644c SHA1: a1a49b43c665e9ca51c530f8698f94be88c7302b SHA256: 7c7d83b73e37889a505f0cc18620cb98f31b6748685341a6ccccdb7cedfb441f Description: Thoroughly testing objects via registered handlers Homepage: https://metacpan.org/release/Test-Object Description-md5: f13d616f0a99c00232a395ca01658573 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-output-perl Priority: optional Section: perl Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.02-1 Depends: perl, libcapture-tiny-perl (>= 0.17), libsub-exporter-perl Filename: pool/main/libt/libtest-output-perl/libtest-output-perl_1.02-1_all.deb Size: 13076 MD5sum: 79d7bb2ae5de02182604a1ed4d11416b SHA1: 9e985749e402e698a54026d864a974670596083b SHA256: bc5112f9180f6da1e500141ce090739f6afb8d936cfdbd2ad485644d4186979c Description: perl module to test stdout and stderr messages Homepage: https://metacpan.org/release/Test-Output/ Description-md5: 4b3c10fa26276e237a9ae5dcd1ecad22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-perl-critic-perl Priority: optional Section: perl Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.02-1 Depends: perl, libperl-critic-perl (>= 1.105) Filename: pool/main/libt/libtest-perl-critic-perl/libtest-perl-critic-perl_1.02-1_all.deb Size: 16628 MD5sum: 4aed440dbeb7e65409f6d3b8428981e5 SHA1: 13458f4849840344d086c0d9fb4fdbde3a7b6dc6 SHA256: c36e7d7d4d6c8792c20d695927d7356a01c57b7d428dbecfdff9367d386d998f Description: module to use Perl::Critic in test scripts Homepage: http://search.cpan.org/dist/Test-Perl-Critic/ Description-md5: f44c26cf50e4e4748610b16550770dd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-pod-coverage-perl Priority: optional Section: perl Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.08-4 Depends: perl, libpod-coverage-perl Recommends: libtest-pod-perl Filename: pool/main/libt/libtest-pod-coverage-perl/libtest-pod-coverage-perl_1.08-4_all.deb Size: 10530 MD5sum: 7def784250c64425e3a3d297dbeffc05 SHA1: 5424e17120c3061e52110fafb2c67ab78999f31f SHA256: 3433873401b3e25b8990f7074654b9407a7c6f15e8361f58fc27fe7c9c896224 Description: Check for pod coverage in your distribution Homepage: https://metacpan.org/release/Test-Pod-Coverage/ Description-md5: db1ff4d31ce64c8535371572bdb66428 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-pod-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.48-1 Depends: perl, libio-stringy-perl Filename: pool/main/libt/libtest-pod-perl/libtest-pod-perl_1.48-1_all.deb Size: 10724 MD5sum: 7d520b537026398a284e84125a37f668 SHA1: 08df3a2e3eccf188f50b78ddf23c62bca49e2bce SHA256: fa856ab9a61bbfe9c0f3e0257ee97d6b54f751e699d094197b96c1b661d9afe9 Description: module to test for POD errors Homepage: https://metacpan.org/release/Test-Pod/ Description-md5: 6c5d646eddb2779b4d2bc7a579d696d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-requires-perl Priority: optional Section: perl Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.07-1 Depends: perl Filename: pool/main/libt/libtest-requires-perl/libtest-requires-perl_0.07-1_all.deb Size: 6940 MD5sum: 9d0bebea7682b15d51b95a27c919b56f SHA1: aee379f45bb15ed10f5e9d875860811067766d05 SHA256: 6fc487550b6b2480ea7967302a8e1eceb50bdd350884723f0384e00e245674fa Description: utility module for tests to check whether modules are available Homepage: https://metacpan.org/release/Test-Requires/ Description-md5: 56c1024014b7e7a023b627711a2815bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-script-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.07-2 Depends: perl, libipc-run3-perl, libprobe-perl-perl Filename: pool/main/libt/libtest-script-perl/libtest-script-perl_1.07-2_all.deb Size: 8122 MD5sum: 47c52ebadb49f70f57ea90ce877b6c3f SHA1: 67c5efb4ca4656cdb3cb07984c0ccaf3bc5c1251 SHA256: fcaa5662635daa1a43b2b3d2f90b28dc643c4d089ae83f609ffdb6816ff0cbfe Description: Perl test module for scripts Homepage: http://search.cpan.org/dist/Test-Script/ Description-md5: bbdb25e7172043f1175ad3d8a9aeea86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-simple-perl Priority: optional Section: perl Installed-Size: 283 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.001002-1 Depends: perl Filename: pool/main/libt/libtest-simple-perl/libtest-simple-perl_1.001002-1_all.deb Size: 106672 MD5sum: 16801e868e17a01c3f02079cc5a5ce2d SHA1: 4e1519f58666d2a042c45705363c5205a326ec8e SHA256: 17ef847629e5889bcbce2260e58f88b20b9453949f56d7d99d1a769a9b328dfa Description: set of basic utilities for writing tests in Perl Homepage: http://github.com/schwern/test-more/ Description-md5: f67a3b225962298190eef6e2bef186a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-spelling-perl Priority: optional Section: perl Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.19-2 Depends: perl, libipc-run3-perl (>= 0.044), libpod-spell-perl Recommends: spell | aspell | ispell | hunspell Filename: pool/main/libt/libtest-spelling-perl/libtest-spelling-perl_0.19-2_all.deb Size: 13242 MD5sum: 99ed63e9c9308e904345804137a62f9d SHA1: 31a64fa196695ccbc06b88e6bc437a5047ed24c9 SHA256: d721083e5fab9fd6c6381ac457ca28b79b397b040e0c441a75d85786018c8ffd Description: Perl module for spellchecking pod formatted text Homepage: https://metacpan.org/release/Test-Spelling/ Description-md5: 377937f9cfa3207a1cede619d04f9764 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-strict-perl Priority: optional Section: perl Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.22-1 Depends: perl, libdevel-cover-perl Filename: pool/main/libt/libtest-strict-perl/libtest-strict-perl_0.22-1_all.deb Size: 13382 MD5sum: 98cb46ade1921793657a06b08cdde3b0 SHA1: 3b200e0540f0b6c00a75d929403c886fdba8f437 SHA256: 4632d2b6ea33ed0dcec88755e32e8cc96067a19b80325ac7ea5ed4240a67e509 Description: test module for checking the syntax of use strict and test coverage Homepage: https://metacpan.org/release/Test-Strict/ Description-md5: 6be5adbf6c1ac10eff20dd7f0d8527a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-subcalls-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.09-2 Depends: perl, libhook-lexwrap-perl (>= 0.20) Filename: pool/main/libt/libtest-subcalls-perl/libtest-subcalls-perl_1.09-2_all.deb Size: 7764 MD5sum: fc04add26c8b64f6036ff56785be1481 SHA1: bd2791269db002dc648d93777116393a6d4a4f41 SHA256: f76601b6ca0bb2d2b9170a33fc25722e044e4e14393f794239080c4214d7a851 Description: Perl module to count subroutine calls Homepage: http://search.cpan.org/dist/Test-SubCalls/ Description-md5: e584d7fa203d5cb7a11171f5dd68dd14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-synopsis-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.06+ds-1 Depends: perl Filename: pool/main/libt/libtest-synopsis-perl/libtest-synopsis-perl_0.06+ds-1_all.deb Size: 7838 MD5sum: d46b2d13f93f87e2ae59ba1e634d9984 SHA1: 935a73150db24128e6cdccad38882aaf555f8dde SHA256: 13f7811763fa8ea50a062bbecd160bc4ab37edcbbdf3b500829068978e5fa1b9 Description: Perl module to test SYNOPSIS code in PODs Homepage: http://search.cpan.org/dist/Test-Synopsis/ Description-md5: c012198048183ab89ee79b78a9e690e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-taint-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.06-1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libt/libtest-taint-perl/libtest-taint-perl_1.06-1_i386.deb Size: 12112 MD5sum: 970608a71e2d004b90fc104058f1182c SHA1: 529a7f40144f5699ceab3f7b1ea454da6b1730bb SHA256: 5da74e4c9d43c7b2b8c3777d848fd71de6ca4f412bef725f757eee880ca57b6e Description: Module to test taintedness Homepage: https://metacpan.org/release/Test-Taint/ Description-md5: 0e2bb932059cfe03c64c2916c6d37a98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-tester-perl Priority: optional Section: perl Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.109-1 Depends: perl Filename: pool/main/libt/libtest-tester-perl/libtest-tester-perl_0.109-1_all.deb Size: 23606 MD5sum: 9be6f9c4287d4314c52866fcc384d8ab SHA1: 68e4bdd0c605295f477a499d7758d1fea256325f SHA256: ab62dc875bc803406f690e116339548ee9e5a36fa1d4e9dd1cf381ff10afad4d Description: module for testing test Perl modules built with Test::Builder Homepage: https://metacpan.org/release/Test-Tester/ Description-md5: b9a4f9560a3c9c804b5b34e028b74a4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-use-ok-perl Priority: optional Section: perl Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.11-1 Depends: perl Filename: pool/main/libt/libtest-use-ok-perl/libtest-use-ok-perl_0.11-1_all.deb Size: 9956 MD5sum: 05f52684bab25b5a399555192bc3c5b8 SHA1: 929597406cbc3bed4a14001342b3d7db526fcadc SHA256: d043785565b7e6cf0e74386f18f54d554faa634c0125ad44fafb6e7c48e65f01 Description: Module to test if a Perl module loads ok Homepage: https://metacpan.org/release/Test-use-ok/ Description-md5: 8b9263e159f52df7fd94a990c48f2a5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-warn-perl Priority: optional Section: perl Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.24-1 Depends: perl, libsub-uplevel-perl, libtree-dagnode-perl Filename: pool/main/libt/libtest-warn-perl/libtest-warn-perl_0.24-1_all.deb Size: 14836 MD5sum: 8c1c80b128abbe4857ec2f9f7d2d64ee SHA1: 45ff070799d9cee1bf95e4c0872af15790c67fce SHA256: 5d2e53ebdd8f6dcca197ee89fa70be529ad10dd895f22f0c5b697ee0c0cd0659 Description: test module for checking which warnings are generated Homepage: https://metacpan.org/release/Test-Warn/ Description-md5: cf13ca83a228cf486174fbf64d8b020c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtest-without-module-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.17-1 Depends: perl (>= 5.6.0-16) Filename: pool/main/libt/libtest-without-module-perl/libtest-without-module-perl_0.17-1_all.deb Size: 8482 MD5sum: cae4e1a0468d758d0278613b863da117 SHA1: 408770ef204f8c860840e25637e4f4fff98fa5dc SHA256: 27b9ef5e5f48d6fe92687ad811cf49fdde52e4c342957f9859a93c66b24e9840 Description: test fallback behaviour in absence of modules Homepage: http://search.cpan.org/dist/Test-Without-Module/ Description-md5: 27f9905e0030ba6c7a0ac02fdd3410c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtevent-dev Priority: optional Section: libdevel Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: tevent Version: 0.9.19-1 Depends: libc6-dev, libtalloc-dev, libtevent0 (= 0.9.19-1) Filename: pool/main/t/tevent/libtevent-dev_0.9.19-1_i386.deb Size: 48130 MD5sum: fde217070d51854bc812972149c36afe SHA1: 13fca2a65c94f09f6529462042fb2e6160450d90 SHA256: f3474af3e7b73ee6076b703c3b7a0247ec88976932e0b3a1b9b13414993c346b Description: talloc-based event loop library - development files Homepage: http://tevent.samba.org/ Description-md5: f6d45fd59d78e80f8d7aebde68faf048 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtevent0 Priority: optional Section: libs Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: tevent Version: 0.9.19-1 Depends: libc6 (>= 2.15), libtalloc2 (>= 2.0.4~git20101213) Pre-Depends: multiarch-support Filename: pool/main/t/tevent/libtevent0_0.9.19-1_i386.deb Size: 28632 MD5sum: 90be9e4e6d9b8ea21f21fc10f7d1baad SHA1: 6816f70178c49320d02a8d2e1ecc85688fb9d4fe SHA256: 63f601d38eece0e24d12eca99a04879c0b7f2d33067ba8efb83a3eec581e5e2d Description: talloc-based event loop library - shared library Multi-Arch: same Homepage: http://tevent.samba.org/ Description-md5: 3fbaa50e60efe0bf58f77af5c4759188 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtevent0-dbg Priority: extra Section: debug Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: tevent Version: 0.9.19-1 Depends: libtevent0 (= 0.9.19-1) Recommends: libc6-dbg, libtalloc2-dbg Filename: pool/main/t/tevent/libtevent0-dbg_0.9.19-1_i386.deb Size: 53422 MD5sum: 97999b7bcf92dbd198205f52f9c4f884 SHA1: 3d8f6c6dbdd6f1505b36321789f696c83a44e5fa SHA256: 7c0ac4ceb0375f89047c46d4e33a395b8041c4d68ffe219962a5cd7cc8f9069b Description: talloc-based event loop library - debug symbols Homepage: http://tevent.samba.org/ Description-md5: a92084ad490660f18e530e12b648b779 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-charwidth-perl Priority: important Section: perl Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 0.04-7build3 Depends: libc6 (>= 2.1.3), perl-base (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libt/libtext-charwidth-perl/libtext-charwidth-perl_0.04-7build3_i386.deb Size: 10850 MD5sum: 7d2b14153f9e40c519bb04607ee84f01 SHA1: 153249e83964056f857de7c4bc364e8a91485b66 SHA256: 28d2f01a85ef7c6d56ac20d2d96e4fed06b4d0fe526f6e061d91392a9255e50e Description: get display widths of characters on the terminal Homepage: http://search.cpan.org/search?module=Text::CharWidth Description-md5: 155ed3cc0b2affad276a4e9bc4bfcabc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtext-csv-perl Priority: optional Section: perl Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.32-1 Depends: perl Recommends: libtext-csv-xs-perl (>= 0.99) Filename: pool/main/libt/libtext-csv-perl/libtext-csv-perl_1.32-1_all.deb Size: 56520 MD5sum: 15b2d5361cb63c9bffa6679874cd40aa SHA1: 65a7a3293408a02e61e581cc3dda74c908ece10c SHA256: 54e82ab957bb9dfc657e78be0c782170b5426b2f84fbffdc06ad9d299685a45f Description: comma-separated values manipulator (using XS or PurePerl) Homepage: https://metacpan.org/release/Text-CSV/ Description-md5: da7d2d784c53107ba92fe5224c10af56 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-csv-xs-perl Priority: optional Section: perl Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.02-1 Depends: libc6 (>= 2.4), perl (>= 5.18.1-5), perlapi-5.18.1 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/libt/libtext-csv-xs-perl/libtext-csv-xs-perl_1.02-1_i386.deb Size: 62542 MD5sum: 0df24f5dc33a288c5668947c28e9ce22 SHA1: 23e36f65c9ec11873006bad7984dd9ac27c01036 SHA256: 7c0137fcbb60968a26e35f98a0fbdcfe19fd682922ca52740cccd165f32ce2e7 Description: Perl C/XS module to process Comma-Separated Value files Enhances: libtext-csv-perl Homepage: https://metacpan.org/release/Text-CSV_XS/ Description-md5: d1ac3f3bfe33a139a37c7882eb4bf589 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-diff-perl Priority: optional Section: perl Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.41-1 Depends: perl, libalgorithm-diff-perl Filename: pool/main/libt/libtext-diff-perl/libtext-diff-perl_1.41-1_all.deb Size: 28264 MD5sum: 88bc36040e3f2f649f6b02bfa15f2e98 SHA1: a3f7124ba56ce9041dd299f2b245c1ec4a61a32b SHA256: 8c44e7cd5d8efb1e2ab59dd384fafa894dcd14d4aed57d35f483656ee068366b Description: Perl module to find differences in files and record sets Homepage: http://search.cpan.org/dist/Text-Diff/ Description-md5: 44a9cd0fd2893b3b20bd59305db8110c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-format-perl Priority: optional Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.59-1 Depends: perl Filename: pool/main/libt/libtext-format-perl/libtext-format-perl_0.59-1_all.deb Size: 16332 MD5sum: aabef281d9a99d595122acffdb84b933 SHA1: 0dcbfe0bd0a5a27bb06d16b9ec95a811a5e14249 SHA256: 26732c42a893cecceaa8780f0e352a7b23186ea1f969a5dbcb07c00e30b29c72 Description: module for formatting plain text Homepage: https://metacpan.org/release/Text-Format/ Description-md5: e93811b1edfc9e00dfb2c6343395eeb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-glob-perl Priority: optional Section: perl Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.09-1 Depends: perl Filename: pool/main/libt/libtext-glob-perl/libtext-glob-perl_0.09-1_all.deb Size: 7880 MD5sum: eb496f1bf9cb229376b7d07836262b14 SHA1: 6389b51423524a24101d29ca0efe47fe773c78e4 SHA256: f14b31d436c4be2ed361e0deec8eacc919fc724db3ce4309c0570e1efaeba7f8 Description: Perl module for matching globbing patterns against text Homepage: http://search.cpan.org/dist/Text-Glob/ Description-md5: b5f7820a20a5f1206b686dbe29f43f1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-iconv-perl Priority: important Section: perl Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 1.7-5build2 Depends: libc6 (>= 2.1.3), perl-base (>= 5.18.1-4), perlapi-5.18.1 Filename: pool/main/libt/libtext-iconv-perl/libtext-iconv-perl_1.7-5build2_i386.deb Size: 15208 MD5sum: f87d364d36ed7d5f93dc731a9039da67 SHA1: a89db8ae7c5c13504c2ea9297138abbb773a9be3 SHA256: 40b269bf3654ef09ce8680e7b84e226229e9c1587c61901f17755ba524c7260a Description: converts between character sets in Perl Homepage: http://search.cpan.org/search?module=Text::Iconv Description-md5: 5fbfac193b3adb16387cc839187b5622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtext-levenshtein-perl Priority: optional Section: perl Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.06~01-2 Depends: perl Filename: pool/main/libt/libtext-levenshtein-perl/libtext-levenshtein-perl_0.06~01-2_all.deb Size: 6476 MD5sum: 3979511d841849f69d1edec3d195d4b4 SHA1: ba74183431ba7594f31cc4a96f6941fc9ae1f048 SHA256: 7f6b054de422b6682ec9e295ffcd1c4c28d2a80f36089e66e37014cfdc60d045 Description: implementation of the Levenshtein edit distance Homepage: http://search.cpan.org/dist/Text-Levenshtein/ Description-md5: 417f17e6b82d2e5dac726ad03bf9628d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtext-soundex-perl Priority: important Section: perl Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 3.4-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.3) Filename: pool/main/libt/libtext-soundex-perl/libtext-soundex-perl_3.4-1build1_i386.deb Size: 13360 MD5sum: 80c82f3fca57a06c975e3ce147dd6172 SHA1: 8d133487c6e0fefaf13440ea2fbfa3639167397f SHA256: 299d23cffd2049c7c4f33dabf15efbd26c853f502f1b7e414967a9b58bcfb82b Description: implementation of the soundex algorithm Homepage: https://metacpan.org/release/Text-Soundex/ Description-md5: 23561c30dfaab3a80255c9a772086ebf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtext-template-perl Priority: extra Section: perl Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.46-1 Depends: perl Filename: pool/main/libt/libtext-template-perl/libtext-template-perl_1.46-1_all.deb Size: 51522 MD5sum: 2962ec3396ff82cb85af9e4ed5ab66ae SHA1: b68e66eb872e205f80531e9a27c8ff562c490b2a SHA256: ff03e891b40736bfb3f21ffaddfba9dacfd686835ab29f2fe3f53a5b8f6a0dc2 Description: perl module to process text templates Homepage: https://metacpan.org/release/Text-Template/ Description-md5: b3ca341547c5c5849fe2759629341bfc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-unidecode-perl Priority: optional Section: perl Installed-Size: 808 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Dominic Hargreaves Architecture: all Version: 0.04-2 Depends: perl (>= 5.6.0-16) Filename: pool/main/libt/libtext-unidecode-perl/libtext-unidecode-perl_0.04-2_all.deb Size: 115168 MD5sum: 1be68182123836037b57a666b7f813e5 SHA1: ab882f1b194a286800a0da6cc70428eb79ec3f36 SHA256: 5f6285b1ece3da72e6d64cfbd0cd7b9ea28e243c1a2149a6d364949b053e18fe Description: Text::Unidecode -- US-ASCII transliterations of Unicode text Homepage: http://search.cpan.org/dist/Text-Unidecode/ Description-md5: ebd84afefc973c032d303a02e6e5b156 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtext-wrapi18n-perl Priority: important Section: perl Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: all Version: 0.06-7 Depends: libtext-charwidth-perl Filename: pool/main/libt/libtext-wrapi18n-perl/libtext-wrapi18n-perl_0.06-7_all.deb Size: 9010 MD5sum: f0a64e9a72da5e0199c725df9bc3673d SHA1: 8dceb8836b87eaa6d4c89bf8f50a8b95f59738bb SHA256: d57a4cb602c011ffa5fabbcdfd84e3a922654780e0fdee21735ad2aaf09edb0e Description: internationalized substitute of Text::Wrap Homepage: http://search.cpan.org/search?module=Text::WrapI18N Description-md5: 7cfec94f97ab774b331a41f9dbcb99e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtextwrap-dev Priority: optional Section: libdevel Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libtextwrap Version: 0.1-14 Replaces: libtextwrap1 (<< 0.1-2) Depends: libc6 (>= 2.3.4), libtextwrap1 (= 0.1-14) Filename: pool/main/libt/libtextwrap/libtextwrap-dev_0.1-14_i386.deb Size: 14942 MD5sum: 91862e54a63605b4b9d58ae4b2d9dc44 SHA1: 2c702aa439d4ba6bfe20be9173e93905f86d5d39 SHA256: 59d1bcf1e044bd1174dec0deee04ee26f87408b3d4f6ef1a54eae6df5e36a9e3 Description: text-wrapping library with i18n - development files Homepage: http://libtextwrap.sourceforge.net/ Description-md5: c51099bbc17a2a3b0334e07f4cd5e364 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtextwrap1 Priority: optional Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libtextwrap Version: 0.1-14 Depends: libc6 (>= 2.3) Pre-Depends: multiarch-support Filename: pool/main/libt/libtextwrap/libtextwrap1_0.1-14_i386.deb Size: 10134 MD5sum: 47bda30fe8bed0105e94629679705bb7 SHA1: 83895eba30bf4449075474081d63ecc2e18ad601 SHA256: 3f741f7f1d1a6644dce980cff5c8588e89f05a533e2d23821f51258c67b0a4dc Description: text-wrapping library with i18n - runtime Multi-Arch: same Homepage: http://libtextwrap.sourceforge.net/ Description-md5: 89e2d4016bf3c5a25b2992b7772fafc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libthai-data Priority: optional Section: libs Installed-Size: 607 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: libthai Version: 0.1.20-3 Breaks: libthai0 (<< 0.1.10) Filename: pool/main/libt/libthai/libthai-data_0.1.20-3_all.deb Size: 130120 MD5sum: 0b3dbe2bb0d89c13a9ad4410d0d896b9 SHA1: 28a5dced8df5a5709fd7ccec15857d030288247b SHA256: b9127319997761ff01f5cd052f3bd7b8eb8f83be1107044ca79a03b8f90fe07d Description: Data files for Thai language support library Multi-Arch: foreign Homepage: http://linux.thai.net/projects/libthai Description-md5: ece902c7963bad7a30e6f74590b9065a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libthai-dev Priority: optional Section: devel Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: i386 Source: libthai Version: 0.1.20-3 Depends: libdatrie-dev, libthai0 (= 0.1.20-3) Suggests: libthai-doc Filename: pool/main/libt/libthai/libthai-dev_0.1.20-3_i386.deb Size: 26964 MD5sum: 5ab7ce415226fbc3754859dc83369b1a SHA1: 25a4eb6a7ee48b90a64abdb2ebe7bc45766f009c SHA256: 06d0ae49bbaced0c1c01a27d6ef94e9e32c0c2cc8d736782fb0f9710d3ec297f Description: Development files for Thai language support library Enhances: libkhtml5 Multi-Arch: same Homepage: http://linux.thai.net/projects/libthai Description-md5: be71b69519a6b40480d0c4a1bf3861a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libthai-doc Priority: optional Section: doc Installed-Size: 419 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: all Source: libthai Version: 0.1.20-3 Depends: lynx | www-browser Filename: pool/main/libt/libthai/libthai-doc_0.1.20-3_all.deb Size: 46972 MD5sum: 6af6d3ed1a5cdea98446baf6df4815e7 SHA1: 3e4c31b98e98469b0597d6e68865f2a79eae7a85 SHA256: 57c6cf5e9e02838ddafbf6aebc34693e835a8d45729d9226d984b8205115766e Description: Documentation files for Thai language support library Multi-Arch: foreign Homepage: http://linux.thai.net/projects/libthai Description-md5: bb7fdb15bf2c7041724766d093eda978 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libthai0 Priority: optional Section: libs Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Theppitak Karoonboonyanan Architecture: i386 Source: libthai Version: 0.1.20-3 Depends: libthai-data (>= 0.1.10), libc6 (>= 2.4), libdatrie1 (>= 0.2.0) Pre-Depends: multiarch-support Filename: pool/main/libt/libthai/libthai0_0.1.20-3_i386.deb Size: 17056 MD5sum: 7379f8b34b141ad2d91463e5bfd088a4 SHA1: fd644c029a5249975e62c80f24a7bf11bfbcd98a SHA256: c44f22332946c9b3c22a27d6e50eecd68ea081f612d0b81d90506eb535165e8b Description: Thai language support library Enhances: libqtcore4, libqtgui4 Multi-Arch: same Homepage: http://linux.thai.net/projects/libthai Description-md5: 437ad20dc3747118df4e5d831f1aba2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtheora-dbg Priority: extra Section: debug Installed-Size: 697 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: i386 Source: libtheora Version: 1.1.1+dfsg.1-3.2 Depends: libtheora0 (= 1.1.1+dfsg.1-3.2) Filename: pool/main/libt/libtheora/libtheora-dbg_1.1.1+dfsg.1-3.2_i386.deb Size: 580362 MD5sum: a330d80211d05f826cb71d8111c6c443 SHA1: 4b2f8df90e1a721651a0d1a645fd0a4f663e61e8 SHA256: e3e1e29437e96b36d10118163f65e496c56784903436d8358de9b554d0f29917 Description: Theora Video Compression Codec (debug) Multi-Arch: same Homepage: http://www.theora.org/ Description-md5: 7530b2806368af08da9f95c6c0379639 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtheora-dev Priority: optional Section: libdevel Installed-Size: 952 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: i386 Source: libtheora Version: 1.1.1+dfsg.1-3.2 Depends: libtheora0 (= 1.1.1+dfsg.1-3.2), libogg-dev Filename: pool/main/libt/libtheora/libtheora-dev_1.1.1+dfsg.1-3.2_i386.deb Size: 167810 MD5sum: 8110643da1789732997b05d8316cf01b SHA1: 63cb94dd2c235c72195b98edc34524d347dcad2f SHA256: cb170ab1856cd481c0e703cd0c5e7b8a0644a595547c1ef1d2e8b721a94795bd Description: Theora Video Compression Codec (development files) Multi-Arch: same Homepage: http://www.theora.org/ Description-md5: 833bd65af09fc429c70d46075084dea8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtheora-doc Priority: optional Section: doc Installed-Size: 1655 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: all Source: libtheora Version: 1.1.1+dfsg.1-3.2 Suggests: libtheora-dev Filename: pool/main/libt/libtheora/libtheora-doc_1.1.1+dfsg.1-3.2_all.deb Size: 878392 MD5sum: fb7fa4b5e979da375f6c74c0c501e862 SHA1: 3f7e33a00d0196ae2c5a4b778a12b765cb1fc25f SHA256: 2a9d5cf8346cd27c02c89579d2313f37af040ace5b2e430608bdb1bbe47b7d8e Description: Theora Video Compression Codec (documentation) Homepage: http://www.theora.org/ Description-md5: 9252368c5e6e1994b54787cdef1f34b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtheora0 Priority: optional Section: libs Installed-Size: 741 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: i386 Source: libtheora Version: 1.1.1+dfsg.1-3.2 Depends: libc6 (>= 2.4), libogg0 (>= 1.1.0) Pre-Depends: multiarch-support Filename: pool/main/libt/libtheora/libtheora0_1.1.1+dfsg.1-3.2_i386.deb Size: 156438 MD5sum: e2e852db9beac2e8c1e88d5c6a2a9f38 SHA1: 7f3cf6e6364c7d3cea1c5962334a97aaa0f56d45 SHA256: 413a25560ed4a3fd68a08a9b696c0cbfe9d968887607f42429c378c495d5168d Description: Theora Video Compression Codec Multi-Arch: same Homepage: http://www.theora.org/ Description-md5: 5374f3d8c17121bef7e1fc09bfee6646 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libthreadweaver4 Priority: optional Section: libs Installed-Size: 291 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: kde4libs Version: 4:4.13.0-0ubuntu1 Depends: libc6 (>= 2.1.3), libqtcore4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1) Filename: pool/main/k/kde4libs/libthreadweaver4_4.13.0-0ubuntu1_i386.deb Size: 46920 MD5sum: 0f1d083ef2cb44bb8c25571a457db766 SHA1: e45c45436b1b237cfe3e61dc826c04741f5271dd SHA256: ea2d4f6ea186aa4f4422e55c8379ef5b0c29b036e487f2b66d86bf4f71199c70 Description: ThreadWeaver Library for the KDE Platform Homepage: http://www.kde.org/ Description-md5: e0f3ffffa7401f49a422fac613b125fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libthumbnailer-dev Priority: optional Section: libdevel Installed-Size: 45 Maintainer: Ubuntu Core Developers Architecture: i386 Source: thumbnailer Version: 1.1+14.04.20140401.1-0ubuntu1 Depends: gstreamer1.0-plugins-base, gstreamer1.0-plugins-good, libthumbnailer0 (= 1.1+14.04.20140401.1-0ubuntu1) Filename: pool/main/t/thumbnailer/libthumbnailer-dev_1.1+14.04.20140401.1-0ubuntu1_i386.deb Size: 2696 MD5sum: a81067301949b250e1d255ae7b357aa0 SHA1: df7ac647fbabc6c56b84ee5d9afc3afbafa91866 SHA256: df437ebeae88661576f35a56993e03757953fe5431bf8fbd0bc587bbe25ba644 Description: development files for thumbnailer Multi-Arch: same Homepage: https://launchpad.net/thumbnailer Description-md5: 2198aaf3c8c01522809753597b0abaa8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libthumbnailer0 Priority: optional Section: libdevel Installed-Size: 107 Maintainer: Ubuntu Core Developers Architecture: i386 Source: thumbnailer Version: 1.1+14.04.20140401.1-0ubuntu1 Depends: libc6 (>= 2.4), libexif12, libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.16.0), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libsoup2.4-1 (>= 2.4.0), libstdc++6 (>= 4.8), libxml2 (>= 2.7.4) Pre-Depends: multiarch-support Filename: pool/main/t/thumbnailer/libthumbnailer0_1.1+14.04.20140401.1-0ubuntu1_i386.deb Size: 28442 MD5sum: f7bc46d17bd3d8e170e7b83f16805af4 SHA1: 6c9eb22f8054719a247b7bf1e334cdafbace6e4d SHA256: 08ae7eeccfe61ba9978384a5c38a8184390a9756fce84a2ef804dfd10b8c7dd0 Description: generate thumbnails from files Multi-Arch: same Homepage: https://launchpad.net/thumbnailer Description-md5: a79d83b026b23257f4e39877906e2a61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libtidy-0.99-0 Priority: optional Section: libs Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Jason Thomas Architecture: i386 Source: tidy Version: 20091223cvs-1.2ubuntu1 Depends: libc6 (>= 2.7) Conflicts: libtidy0 Filename: pool/main/t/tidy/libtidy-0.99-0_20091223cvs-1.2ubuntu1_i386.deb Size: 117254 MD5sum: df3db8060fd05e54cca7ab7e427d3d3c SHA1: dbc4c5156604fdcc3c5e59df25f6049f5802b6ec SHA256: fa8be381f8ab6975977f66c7c91622a6e190a6edbff4f0ee305a6333ffde79cf Description: HTML syntax checker and reformatter - library Homepage: http://tidy.sourceforge.net/ Description-md5: 208f4f5c33e9c2624a2fbeadc62e795d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, xubuntu-desktop, lubuntu-desktop Package: libtidy-dev Priority: optional Section: libdevel Installed-Size: 529 Maintainer: Ubuntu Developers Original-Maintainer: Jason Thomas Architecture: i386 Source: tidy Version: 20091223cvs-1.2ubuntu1 Depends: libtidy-0.99-0 (= 20091223cvs-1.2ubuntu1) Filename: pool/main/t/tidy/libtidy-dev_20091223cvs-1.2ubuntu1_i386.deb Size: 134082 MD5sum: 0175c5a46cd6b7bf6112016844e0a60c SHA1: e7e72d0bee96c40d8e03fb0967491e6d1861d530 SHA256: 4486721d043a23edcea103297216bf420c3c9a2c26a297636ec96377fa9d5633 Description: HTML syntax checker and reformatter - development Homepage: http://tidy.sourceforge.net/ Description-md5: 46ac8dcd2a7d0011df3e6e8d9d15a652 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtie-ixhash-perl Priority: optional Section: perl Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.23-1 Depends: perl Filename: pool/main/libt/libtie-ixhash-perl/libtie-ixhash-perl_1.23-1_all.deb Size: 11700 MD5sum: dec16ddaa9778d4ef29dff635e346d60 SHA1: da1f9d14e974a37658725c4b3161f5974199fa6e SHA256: a6f56523cf7ad252c705c9d14c36f4c3757c5be5837789e973b89fc4050c1dcd Description: Perl module to order associative arrays Homepage: https://metacpan.org/release/Tie-IxHash/ Description-md5: fc5e9c2c4a5cddbda8cc2ac7152aca9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop Package: libtiff-doc Priority: optional Section: doc Installed-Size: 1130 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: all Source: tiff Version: 4.0.3-7 Filename: pool/main/t/tiff/libtiff-doc_4.0.3-7_all.deb Size: 297176 MD5sum: 4b7912d58d8de47a7195d7eedc46b62d SHA1: 2708665450f8df4383dbb5a738e3bc21ad8fb87b SHA256: fa25c4c917ac2a7387d12fb830c23aedfac240b2fa36cc093e22251cdc5d2a5a Description: TIFF manipulation and conversion documentation Homepage: http://libtiff.maptools.org Description-md5: 418b6b38755ca1f970cc3282a8afc939 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtiff-tools Priority: optional Section: graphics Installed-Size: 697 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: tiff Version: 4.0.3-7 Depends: libc6 (>= 2.7), libtiff5 (>= 4.0.3) Suggests: libtiff-opengl Filename: pool/main/t/tiff/libtiff-tools_4.0.3-7_i386.deb Size: 210640 MD5sum: d8da9ccc865a1db7ae85fcff115fd81b SHA1: 40994520354c9292d6d451c5c74eb4356d2208af SHA256: 82eec138d9b59f4d56d592efdfdf7445b208f73bd201521b05b2898f9751141c Description: TIFF manipulation and conversion tools Homepage: http://libtiff.maptools.org Description-md5: f333fccce3ca049190b80f117d3faa92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libtiff4-dev Priority: optional Section: libdevel Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: tiff Version: 4.0.3-7 Depends: libtiff5-dev (>> 4.0.3-6~) Filename: pool/main/t/tiff/libtiff4-dev_4.0.3-7_i386.deb Size: 2352 MD5sum: 7bdb5054ebcb317b9c9683553fac10c7 SHA1: 4c0568dec52b4c7a4981685bfc0c473304145794 SHA256: 00c8edb8369832b4c678ac094db828345acee25815a165b9a1e55c822fb5e500 Description: Tag Image File Format library (TIFF), transitional package Multi-Arch: same Homepage: http://libtiff.maptools.org Description-md5: 4e51ec89f226c5f04e74375fad277103 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtiff5 Priority: optional Section: libs Installed-Size: 578 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: tiff Version: 4.0.3-7 Depends: libc6 (>= 2.11), libjbig0 (>= 2.0), libjpeg8 (>= 8c), liblzma5 (>= 5.1.1alpha+20120614), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/t/tiff/libtiff5_4.0.3-7_i386.deb Size: 143198 MD5sum: b0144f04e57ba7c5a71b1375517367d6 SHA1: bba5dbbc85b24057fae5d229595a8478a14f7ffa SHA256: c16723a8f326330982b81a7d96bfa187a335d4af2bce39ed5a545afd7e0d5ee7 Description: Tag Image File Format (TIFF) library Multi-Arch: same Homepage: http://libtiff.maptools.org Description-md5: bdf182da5cc17db1c9eb4ccb03647efc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtiff5-alt-dev Priority: optional Section: libdevel Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: tiff Version: 4.0.3-7 Depends: libtiff5-dev (>> 4.0.3-6~) Filename: pool/main/t/tiff/libtiff5-alt-dev_4.0.3-7_i386.deb Size: 2356 MD5sum: 31c65b9dc9fb4f55cbfe68771c4f89e5 SHA1: cd90efab27fe74c7e87287795048b13fcc57a575 SHA256: 3410bb026ce2b4e1bbc5e62579b91f642196aef010f712c26ad840ba86950664 Description: Tag Image File Format library (TIFF), transitional package Multi-Arch: same Homepage: http://libtiff.maptools.org Description-md5: 4c4118bc686a56fc86e445039f92abe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtiff5-dev Priority: optional Section: libdevel Installed-Size: 907 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: tiff Version: 4.0.3-7 Replaces: libtiff4-dev (<< 4.0.3-6~), libtiff5-alt-dev (<< 4.0.3-6~) Provides: libtiff-dev Depends: libtiff5 (= 4.0.3-7), libtiffxx5 (= 4.0.3-7), libc6-dev | libc-dev, zlib1g-dev, libjpeg-dev, libjbig-dev, liblzma-dev Conflicts: libtiff4-dev (<< 4.0.3-6~), libtiff5-alt-dev (<< 4.0.3-6~) Filename: pool/main/t/tiff/libtiff5-dev_4.0.3-7_i386.deb Size: 267928 MD5sum: 23b3cda57a849a77fdad4b493a607d62 SHA1: c03aafba014edb169bdc73998f16d04baeb97df3 SHA256: c878842eabce280462328faedba454f3f950351a8d9ad15030f7525210503a34 Description: Tag Image File Format library (TIFF), development files Multi-Arch: same Homepage: http://libtiff.maptools.org Description-md5: 9da8bcdaa4c04ca6ee4ae233236c1927 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtiffxx5 Priority: optional Section: libs Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Source: tiff Version: 4.0.3-7 Depends: libc6 (>= 2.4), libstdc++6 (>= 4.2.1), libtiff5 (>= 4.0.3) Pre-Depends: multiarch-support Filename: pool/main/t/tiff/libtiffxx5_4.0.3-7_i386.deb Size: 6116 MD5sum: ae47ca46bc2a8ff092c0a2dbfc3e2fc4 SHA1: 012d3cf8462da2e3b2f5ad5304848f9640f2ba22 SHA256: cb5ae51b9f8cfd4ee09ce5dd6d7247e3b2b1a4390834fd1ccaf3d6524abd581e Description: Tag Image File Format (TIFF) library -- C++ interface Multi-Arch: same Homepage: http://libtiff.maptools.org Description-md5: 3947dc613cbd7efbe601b6c89e20c44f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtime-modules-perl Priority: optional Section: perl Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2011.0517-1 Depends: perl Filename: pool/main/libt/libtime-modules-perl/libtime-modules-perl_2011.0517-1_all.deb Size: 34654 MD5sum: 471a121af5c182b1105975fb8bd9146f SHA1: 0101223173b2faffe7c4794e2fe37eaa56cb2bd8 SHA256: b502a4864f089c760d8a8ced0aa4cbde85046e23e7bdd3c70e4b0563d2046807 Description: collection of Perl modules for time/date manipulation Homepage: http://search.cpan.org/dist/Time-modules/ Description-md5: e682e41be7b8a3b478a378e0adcce4e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtimedate-perl Priority: optional Section: perl Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.3000-1 Replaces: timedate Provides: timedate Depends: perl Breaks: timedate Filename: pool/main/libt/libtimedate-perl/libtimedate-perl_2.3000-1_all.deb Size: 37174 MD5sum: fb818d635c2029ebabe4336b1350f283 SHA1: b8f7fd27f3fa74b61e0ca2b3441618bc94bc8975 SHA256: 153481e7fb5e46873fa1d22f0f9cdbf92ccdab0fbc980ceaa373a784d592b12a Description: collection of modules to manipulate date/time information Homepage: https://metacpan.org/release/TimeDate/ Description-md5: e4e687bd12e2ca4a437edd010bfd8633 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtimezonemap1 Priority: optional Section: libs Installed-Size: 4240 Maintainer: Ubuntu Developers Architecture: i386 Source: libtimezonemap Version: 0.4.1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.10), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.1.4), libjson-glib-1.0-0 (>= 0.12.0) Filename: pool/main/libt/libtimezonemap/libtimezonemap1_0.4.1_i386.deb Size: 1524050 MD5sum: b0bab2be17c2c4e0ceb04d0bca197752 SHA1: ab5a94a42df97537d252ef8a5fec3ffddef0110a SHA256: 23597b67e5781a8713ca4fcff8ce62a0ceaa56b8183edaaf4b60fd735a73940b Description: GTK+3 timezone map widget Description-md5: 68bf660fca1f57fed3f2f66e19a091a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: libtimezonemap1-dev Priority: optional Section: libdevel Installed-Size: 71 Maintainer: Ubuntu Developers Architecture: i386 Source: libtimezonemap Version: 0.4.1 Replaces: gir1.2-timezonemap-1.0 (<< 0.3) Depends: libtimezonemap1 (= 0.4.1), libglib2.0-dev (>= 2.25.0), libgtk-3-dev (>= 3.1.4), libjson-glib-dev Breaks: gir1.2-timezonemap-1.0 (<< 0.3) Filename: pool/main/libt/libtimezonemap/libtimezonemap1-dev_0.4.1_i386.deb Size: 5114 MD5sum: 19d827888dca1ae0599174af909a9468 SHA1: 12eb501d2f84f0ab96ed5bdb962a8bfaa9977ba3 SHA256: 3f1cd3469d001a6bb47dcfb38d968cfec0543cca24923433e9681dd256ab38f8 Description: GTK+3 timezone map widget - development files Description-md5: e9452a2add044380ccdd472c39751e74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtinfo-dev Priority: optional Section: libdevel Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: libncurses5-dev (<< 5.9-3) Depends: libtinfo5 (= 5.9+20140118-1ubuntu1) Breaks: binutils-gold (<< 2.21.53.20110910) Filename: pool/main/n/ncurses/libtinfo-dev_5.9+20140118-1ubuntu1_i386.deb Size: 71212 MD5sum: e187774cd1899585c825925e49b109c8 SHA1: eb5aff599dd626bede668a04bc8192951cb23775 SHA256: 81a5cb968353992c349c9d9f09bca34f3fc272b5dffdd49e06592f9b9da3044f Description: developer's library for the low-level terminfo library Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: 9b28f3e754af5528e34809ef3110fdc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtinfo5 Priority: required Section: libs Installed-Size: 433 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: libncurses5 (<< 5.9-3) Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Breaks: dialog (<< 1.2-20130523) Filename: pool/main/n/ncurses/libtinfo5_5.9+20140118-1ubuntu1_i386.deb Size: 70814 MD5sum: c387fe9567cbbbc1c1dc62f8b78c2492 SHA1: 990527cadc232851079829bce40ac07529c87148 SHA256: fb24f24df3078c5122dd9717895b8facdb827afa07282a2c13e120ba85f60dad Description: shared low-level terminfo library for terminal handling Multi-Arch: same Homepage: http://invisible-island.net/ncurses/ Description-md5: f681846d99e5156a0882bb53c35d3244 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libtinfo5-dbg Priority: extra Section: debug Installed-Size: 2370 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: libncurses5-dbg (<< 5.9+20130608) Depends: libtinfo5 (= 5.9+20140118-1ubuntu1), libtinfo-dev (= 5.9+20140118-1ubuntu1), libc6 (>= 2.15) Breaks: libncurses5-dbg (<< 5.9-3) Filename: pool/main/n/ncurses/libtinfo5-dbg_5.9+20140118-1ubuntu1_i386.deb Size: 466212 MD5sum: fe4a6ee2f324a5b31eefa44f66ad4180 SHA1: 739f2148932fb66e2b29eea0254fd7ba732299b2 SHA256: e6c91e920d05e8e02abfb1ac48d52c2a0ceef37d89789d7026df1a6604e317e9 Description: debugging/profiling library for the low-level terminfo library Homepage: http://invisible-island.net/ncurses/ Description-md5: cca02aa911a3b2e5b29be04f528843e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtirpc-dev Priority: extra Section: libdevel Installed-Size: 539 Maintainer: Ubuntu Developers Original-Maintainer: Steinar H. Gunderson Architecture: i386 Source: libtirpc Version: 0.2.2-5ubuntu2 Depends: libtirpc1 (= 0.2.2-5ubuntu2) Filename: pool/main/libt/libtirpc/libtirpc-dev_0.2.2-5ubuntu2_i386.deb Size: 141550 MD5sum: 83539ed1b37716ac59d4d60485c6b9e3 SHA1: cf104a73e502b545c2744be3e9ad175266ba3d3e SHA256: da4c0d21a2091ed28d06f39e38cef33556594138ffd532ba3d91719582d47691 Description: transport-independent RPC library - development files Description-md5: 1e138bf6ab465b80331064d038e39cf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtirpc1 Priority: extra Section: libs Installed-Size: 234 Maintainer: Ubuntu Developers Original-Maintainer: Steinar H. Gunderson Architecture: i386 Source: libtirpc Version: 0.2.2-5ubuntu2 Depends: libc6 (>= 2.16), libgssglue1 Pre-Depends: multiarch-support Filename: pool/main/libt/libtirpc/libtirpc1_0.2.2-5ubuntu2_i386.deb Size: 70374 MD5sum: b49ed43c864f17300f57d703e31d01c1 SHA1: 70ca9e91614b1ab97afc56e347f356461b453fe5 SHA256: c441f976c88d6bde5bcba01ee78a095f2d36579e12badb3fdb566dd908869852 Description: transport-independent RPC library Multi-Arch: same Description-md5: 604bfb6c9b5f2aed27c76dfa111bffcf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtk8.5 Priority: optional Section: libs Installed-Size: 2044 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: i386 Source: tk8.5 Version: 8.5.15-2ubuntu3 Replaces: tk8.5 (<< 8.5.14-3), tk8.5-lib Provides: libtk Depends: libtcl8.5 (>= 8.5.14-3), libc6 (>= 2.7), libfontconfig1 (>= 2.9.0), libx11-6, libxft2 (>> 2.1.1), libxss1 Pre-Depends: multiarch-support Suggests: tk8.5 Conflicts: libtk-img (<< 1.2.5), tk40 (<= 4.0p3-2), tk8.5 (<< 8.5.14-3), tk8.5-lib Filename: pool/main/t/tk8.5/libtk8.5_8.5.15-2ubuntu3_i386.deb Size: 623134 MD5sum: 6555b3faead4e75327d95ae2da320e36 SHA1: 9ef11c4e83adae3bc38cf360bf2a778ac6e52c95 SHA256: d452308882c855134dc7312d1c4fdaf565fc2e30c073a62eed47bbedfe3d1226 Description: Tk toolkit for Tcl and X11 v8.5 - run-time files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: a9421646cf9100a89ac25f54621b5915 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-audio Package: libtk8.5-dbg Priority: extra Section: debug Installed-Size: 3113 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: i386 Source: tk8.5 Version: 8.5.15-2ubuntu3 Depends: libtk8.5 (= 8.5.15-2ubuntu3) Filename: pool/main/t/tk8.5/libtk8.5-dbg_8.5.15-2ubuntu3_i386.deb Size: 2994364 MD5sum: 64971f62a2c9b4b0eb4232db5f5c171d SHA1: 944489f3aff5b932a0c1f035a8bbe40ce912d476 SHA256: 753c58088ecf4af5b594672e49126056506bd1e84715ab6fb3afe63338a7e4ad Description: Symbol files for libtk8.5 Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 6d1dc795d17368fde0ea1ef9ec1a8407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtk8.6 Priority: optional Section: libs Installed-Size: 2168 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Source: tk8.6 Version: 8.6.1-3ubuntu2 Replaces: tk8.6 (<< 8.6.0-2), tk8.6-lib (<< 8.6.0-2) Provides: libtk Depends: libtcl8.6 (>= 8.6.0-2), libc6 (>= 2.7), libfontconfig1 (>= 2.9.0), libx11-6, libxft2 (>> 2.1.1), libxss1 Pre-Depends: multiarch-support Suggests: tk8.6 Conflicts: libtk-img (<< 1.2.5), tk40 (<= 4.0p3-2), tk8.6 (<< 8.6.0-2), tk8.6-lib (<< 8.6.0-2) Filename: pool/main/t/tk8.6/libtk8.6_8.6.1-3ubuntu2_i386.deb Size: 670372 MD5sum: a3b45179219d4b03d76309ca8cfd460a SHA1: 823b6a18bdf77dc51e9706892151f45079563fd8 SHA256: 618d9ffbeecd52d0b56bc22723cb9221d8ec63c4d97dcd4c8289a8d528213b0a Description: Tk toolkit for Tcl and X11 v8.6 - run-time files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 01d90661559e5ce16fbf055f91aff291 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtk8.6-dbg Priority: extra Section: debug Installed-Size: 3233 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Source: tk8.6 Version: 8.6.1-3ubuntu2 Depends: libtk8.6 (= 8.6.1-3ubuntu2) Filename: pool/main/t/tk8.6/libtk8.6-dbg_8.6.1-3ubuntu2_i386.deb Size: 3133220 MD5sum: 1c04a77410e6db33971b93595db7e4e7 SHA1: 9a87f13fa7f6f07a88b0050532dfc036a2ee758b SHA256: fffabaaf188a420a1e2f31e0cfea35487d18902f336248fa4c1230be9e9726b6 Description: Symbol files for libtk8.6 Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: bed156af677ca855056197f2d86e1e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtokyocabinet-dbg Priority: extra Section: libs Installed-Size: 1391 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Frost Architecture: i386 Source: tokyocabinet Version: 1.4.48-2 Depends: libtokyocabinet9 (= 1.4.48-2) Filename: pool/main/t/tokyocabinet/libtokyocabinet-dbg_1.4.48-2_i386.deb Size: 1153178 MD5sum: af0a5d6b34c0d543ab1ad71225402802 SHA1: 3da6aeec00a526c2db3505b9b42c5ec2aa9e48d3 SHA256: f1ab13ac5cacb52ddab4699469b077d1382e4a0892a3168bf0240230defe6461 Description: Tokyo Cabinet Database Libraries [debug] Multi-Arch: same Homepage: http://fallabs.com/tokyocabinet/ Description-md5: 7b84e32e82b01845c0944122405579c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtokyocabinet-dev Priority: extra Section: libdevel Installed-Size: 1384 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Frost Architecture: i386 Source: tokyocabinet Version: 1.4.48-2 Depends: libtokyocabinet9 (= 1.4.48-2) Filename: pool/main/t/tokyocabinet/libtokyocabinet-dev_1.4.48-2_i386.deb Size: 432826 MD5sum: 05c8621b2bd05f2e6e7ccb4a3efa5b41 SHA1: dbd565c9e43c8ec39ca7e1b64bccda78d1233ab0 SHA256: 33f8ebb740f059d6217eefc007e06b3c7a1493a5fd04cb32c92e025a0606542b Description: Tokyo Cabinet Database Libraries [development] Homepage: http://fallabs.com/tokyocabinet/ Description-md5: 6d8c45df4abc2e249faf0e6e1731897c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtokyocabinet9 Priority: optional Section: libs Installed-Size: 675 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Frost Architecture: i386 Source: tokyocabinet Version: 1.4.48-2 Depends: libbz2-1.0, libc6 (>= 2.4), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/t/tokyocabinet/libtokyocabinet9_1.4.48-2_i386.deb Size: 275160 MD5sum: 8c17cf2938daf2dfeb6e118f35a905e3 SHA1: 7d1c3add3d7e1929a440a87dd9919114e1996f18 SHA256: 722142cf908bd3d7fa41b8385654a65f449293f04f99c2ac3d4bb3b1dfc2f48d Description: Tokyo Cabinet Database Libraries [runtime] Multi-Arch: same Homepage: http://fallabs.com/tokyocabinet/ Description-md5: d03fbff99533a07c1e71b74aee3e94ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: libtomcat7-java Priority: optional Section: java Installed-Size: 4166 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Depends: libecj-java, libcommons-pool-java, libcommons-dbcp-java, libservlet3.0-java (>= 7.0.52-1) Suggests: tomcat7 (>= 7.0.52-1) Conflicts: libtomcat6-java Filename: pool/main/t/tomcat7/libtomcat7-java_7.0.52-1_all.deb Size: 3646996 MD5sum: 3dc8ea0fd8474fa91fbab9ab6972cd26 SHA1: 7203cfe4d584a11fb372d3a260defb198c0ea4d5 SHA256: b66e13c3499833ef3034b7f747fa72b1f5a88eaa2b2dc488b0cbeef964effac5 Description: Servlet and JSP engine -- core libraries Homepage: http://tomcat.apache.org Description-md5: 7a2563c1a7c79379004bc6464d285af0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libtommath-dev Priority: extra Section: libdevel Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Joe Nahmias Architecture: i386 Source: libtommath Version: 0.42.0-1build1 Depends: libtommath0 (= 0.42.0-1build1) Recommends: libtommath-docs Filename: pool/main/libt/libtommath/libtommath-dev_0.42.0-1build1_i386.deb Size: 63484 MD5sum: c1467a04571e760d3fa49eb05e6fac14 SHA1: 7d2f0c1137b135b12790b54c49a5b257f947ecf1 SHA256: f808b73ff6e6a10fa171e21ff6598f1b473f6251b7930444bd44fbe5f440c311 Description: multiple-precision integer library [development files] Homepage: http://libtom.org/?page=features&whatfile=ltm Description-md5: 0fd88de1437119c6fd98ada3631675d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtommath-docs Priority: extra Section: doc Installed-Size: 1440 Maintainer: Ubuntu Developers Original-Maintainer: Joe Nahmias Architecture: all Source: libtommath Version: 0.42.0-1build1 Filename: pool/main/libt/libtommath/libtommath-docs_0.42.0-1build1_all.deb Size: 1437510 MD5sum: 97cb27cd96bc5f20aa392274b1afe023 SHA1: 45a92a4e8a62b97eced6fa774658c19f818fdd61 SHA256: c5bb96d171ab371af9aa79dcdc43615051195c66326aa41be15382a28f5b309d Description: multiple-precision integer library [documentation] Homepage: http://libtom.org/?page=features&whatfile=ltm Description-md5: 5066189ad5d6a5276aaadc5d513e4420 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtommath0 Priority: extra Section: libs Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Joe Nahmias Architecture: i386 Source: libtommath Version: 0.42.0-1build1 Depends: libc6 (>= 2.3) Filename: pool/main/libt/libtommath/libtommath0_0.42.0-1build1_i386.deb Size: 47564 MD5sum: e6bd3ed655f8b26c3b4b633018656102 SHA1: 7402f17174a93f325e40758fa4f36d63c25354a2 SHA256: ccdd2e14ff7a3e5fdd1db3011ea0858af22573ff375c659ecec68264b57205d8 Description: multiple-precision integer library [runtime] Homepage: http://libtom.org/?page=features&whatfile=ltm Description-md5: 3cf62afb483238029a5473509dc51cb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtool Priority: optional Section: devel Installed-Size: 1426 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: i386 Version: 2.4.2-1.7ubuntu1 Replaces: libtool-bin Depends: gcc | c-compiler, cpp, libc6-dev | libc-dev, file, autotools-dev Recommends: libltdl-dev Suggests: libtool-doc, autoconf (>> 2.50), automaken, gfortran | fortran95-compiler, gcj-jdk Conflicts: autoconf (<= 2.12), automake (<= 1.3), libtool-bin, libtool1.4 Filename: pool/main/libt/libtool/libtool_2.4.2-1.7ubuntu1_i386.deb Size: 188142 MD5sum: acfa18777e0eeb297a56109d208e1d41 SHA1: 78ca3061d510382d18d58dbd6a91332ba1b73f1a SHA256: 9e8ded0b15b4403676c0a818623c9a602dde1ae6d5d3fd2240574b233c6ad24f Description: Generic library support script Multi-Arch: foreign Homepage: http://www.gnu.org/software/libtool/ Description-md5: 40ea3da4a4ea75419ad95742898b3e52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtool-doc Priority: optional Section: doc Installed-Size: 1151 Maintainer: Ubuntu Developers Original-Maintainer: Kurt Roeckx Architecture: all Source: libtool Version: 2.4.2-1.7ubuntu1 Conflicts: libtool1.4-doc Filename: pool/main/libt/libtool/libtool-doc_2.4.2-1.7ubuntu1_all.deb Size: 264542 MD5sum: e518d379473ca75e64020286b82f1bae SHA1: 88e7e0025fb9e6f20a7d6e4ef774717899046d99 SHA256: 88265135645068ece502c9837a6c19b81c6ba29459d773312204512c5afd796a Description: Generic library support script Homepage: http://www.gnu.org/software/libtool/ Description-md5: 3d6c94ca27d83d22b2895343c3261363 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtotem-dev Priority: optional Section: libdevel Installed-Size: 422 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: totem Version: 3.10.1-1ubuntu4 Replaces: totem (<< 3.0.1-2) Depends: libtotem0 (= 3.10.1-1ubuntu4), gir1.2-totem-1.0 (= 3.10.1-1ubuntu4), libglib2.0-dev, libgtk-3-dev, libtotem-plparser-dev Breaks: totem (<< 3.0.1-2) Filename: pool/main/t/totem/libtotem-dev_3.10.1-1ubuntu4_i386.deb Size: 13878 MD5sum: cfa9d3879bab4474565ce6ee13539aec SHA1: fa4d7c12e6833080f8cd0bdbe7a6777296d8103b SHA256: 9cf010763cc91ff4846373c055751debcfc2a512a5f2e568bb0fbe3d566056ed Description: Main library for the Totem media player - development files Homepage: http://www.gnome.org/projects/totem/ Description-md5: cbd1630a5c624a696bd62e8f0b2a7532 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtotem-pg-dev Priority: optional Section: libdevel Installed-Size: 434 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libtotem-pg5 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libtotem-pg-dev_2.3.3-1ubuntu1_i386.deb Size: 64564 MD5sum: d0e59790a21d1c122e0ed2cda0923cdf SHA1: 708c6ef218d436d4bb187bdf8874efc0877da73b SHA256: 30fd67bfcb40e7e464ce9f058143d54d74eaf1273751df9d78408c3f6417bdbb Description: Standards-based cluster framework, Totem devel files Description-md5: 303ee8a5d1a40db305e6def922eb8f3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtotem-pg5 Priority: optional Section: libs Installed-Size: 352 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Depends: libc6 (>= 2.4), libibverbs1 (>= 1.1.2), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libqb0, librdmacm1 (>= 1.0.16) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1) Filename: pool/main/c/corosync/libtotem-pg5_2.3.3-1ubuntu1_i386.deb Size: 58298 MD5sum: 2e15285b7188a3a3f3e0549fd080a5e9 SHA1: 029719223d97600512516da31804ac514220d88c SHA256: d05ef7facf00ed650615fda83cdfb202b36131476edf2dd8261ead2ef1c7441a Description: Standards-based cluster framework, Totem library Description-md5: 164ea2308745ca8156991d1e7b39c4bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtotem-plparser-dbg Priority: extra Section: libdevel Installed-Size: 404 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: totem-pl-parser Version: 3.10.2-0ubuntu1 Depends: libtotem-plparser18 (= 3.10.2-0ubuntu1) Filename: pool/main/t/totem-pl-parser/libtotem-plparser-dbg_3.10.2-0ubuntu1_i386.deb Size: 105446 MD5sum: a3b1d2e850db94a5e227f90f098e48e5 SHA1: 903fbb8fba81cb0da8f5cd2b5ed8e5381e48ccf3 SHA256: 319839746d8f9310a88327efeb62d44534b9328b17ac6220a0b14e3e61045871 Description: Totem Playlist Parser library - debugging symbols Description-md5: eddae4a89a8c6c09b73249625c695040 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtotem-plparser-dev Priority: optional Section: libdevel Installed-Size: 597 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: totem-pl-parser Version: 3.10.2-0ubuntu1 Replaces: libtotem-plparser10 Depends: libtotem-plparser18 (= 3.10.2-0ubuntu1), gir1.2-totem-plparser-1.0 (= 3.10.2-0ubuntu1), libglib2.0-dev, libxml2-dev, libgmime-2.6-dev, libarchive-dev Filename: pool/main/t/totem-pl-parser/libtotem-plparser-dev_3.10.2-0ubuntu1_i386.deb Size: 75578 MD5sum: e1d04e68432a54353607f70ef411ed04 SHA1: a7db31e367b212518d0307a7191b17b1ee78adc2 SHA256: a30f35d9c6f43e7b930d5af24502a2f56572db5aabea91c3505c0a6b81fe2fb4 Description: Totem Playlist Parser library - development files Description-md5: e297d53f3653c396ebb78c4a437482a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtotem-plparser18 Priority: optional Section: libs Installed-Size: 256 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: totem-pl-parser Version: 3.10.2-0ubuntu1 Replaces: libtotem-plparser10, libtotem-plparser12, libtotem-plparser17 Depends: libarchive13, libc6 (>= 2.8), libglib2.0-0 (>= 2.37.3), libgmime-2.6-0 (>= 2.6.4), libsoup2.4-1 (>= 2.30.0), libxml2 (>= 2.7.4) Filename: pool/main/t/totem-pl-parser/libtotem-plparser18_3.10.2-0ubuntu1_i386.deb Size: 51788 MD5sum: 57213a1fc109b9dce087793617f7f0d7 SHA1: b083a64bb472d692be1ba7cdd3bc4389813acccc SHA256: 3fa82f1ff305fe8ba99f30fae788650ff923e07066fe55199df76541ca1a676b Description: Totem Playlist Parser library - runtime files Description-md5: a254878bc64375f8733040011cc7dc29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtotem0 Priority: optional Section: video Installed-Size: 723 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: totem Version: 3.10.1-1ubuntu4 Replaces: totem (<< 3.0.1-1) Depends: libatk1.0-0 (>= 1.29.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libclutter-1.0-0 (>= 1.11.10), libclutter-gst-2.0-0 (>= 0.10.0), libclutter-gtk-1.0-0 (>= 0.91.8), libcogl15 (>= 1.15.8), libgdk-pixbuf2.0-0 (>= 2.22.0), libgirepository-1.0-1 (>= 0.9.2), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.5.2), libice6 (>= 1:1.0.0), libpeas-1.0-0 (>= 1.0.0), libsm6, libtotem-plparser18 (>= 3.10.0), libx11-6 Filename: pool/main/t/totem/libtotem0_3.10.1-1ubuntu4_i386.deb Size: 167268 MD5sum: 77f89917912743aad92ab619e07cee0e SHA1: 3faee0e706882417dd7fb521e2e69987fdd89e54 SHA256: 0cea522f90a28e586f7801237ed091bd4bc4daa05ba9f1ca65e6e1a004cf730c Description: Main library for the Totem media player Homepage: http://www.gnome.org/projects/totem/ Description-md5: 7d2aeb5ec1c18da8164341eae2c62153 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libtransitioner2 Priority: optional Section: libs Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libtransitioner1, pacemaker (<= 1.0.9.1+hg15626-2) Depends: libc6 (>= 2.4), libcrmcommon3 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.16.0), libqb0 Conflicts: libtransitioner1, pacemaker (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libtransitioner2_1.1.10+git20130802-1ubuntu2_i386.deb Size: 13240 MD5sum: 659a249b89627db94743c9a08c80b8bc SHA1: 25ce42b1874074557286a7e169ba601c8edb1cb1 SHA256: dce025b8204eb97c43c4e62e59b170b5a9f91aed969fb84b46a6d6345b21ea30 Description: Pacemaker libraries - transitioner Homepage: http://clusterlabs.org/ Description-md5: a43b49090be76a0116065825ae14238a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtransitioner2-dev Priority: optional Section: libdevel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: libtransitioner1-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Depends: libtransitioner2 (= 1.1.10+git20130802-1ubuntu2) Conflicts: libtransitioner1-dev, pacemaker-dev (<= 1.0.9.1+hg15626-2) Filename: pool/main/p/pacemaker/libtransitioner2-dev_1.1.10+git20130802-1ubuntu2_i386.deb Size: 15368 MD5sum: fe750e354a37df4ec248608c855d76a6 SHA1: ffa3ba65f4a9ee9dc24400e5308ef35df974d3ea SHA256: 754d43c73346088f0268e973d4878263c753bd23a797a633bd1d1fa8ff811244 Description: Development file for pacemaker's transitioner library Homepage: http://clusterlabs.org/ Description-md5: 10d7a2c733c5b75c4ca941b7388adbbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtree-dagnode-perl Priority: optional Section: perl Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.17-1 Depends: perl, libfile-slurp-perl Filename: pool/main/libt/libtree-dagnode-perl/libtree-dagnode-perl_1.17-1_all.deb Size: 59612 MD5sum: 077ee3783f248f947bcd18cf58a39333 SHA1: e7803e84a63222893f9b3691d776c76cb1e7c167 SHA256: aee764d2b9b517687f8f3b5a16f38d7130100070692495965098a9565ef59824 Description: Perl (super)class for representing nodes in a tree Homepage: https://metacpan.org/release/Tree-DAG_Node/ Description-md5: ad34734ff2b960a0ef7c58c459cee35c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtry-tiny-perl Priority: optional Section: perl Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.19-1 Depends: perl Suggests: libsub-name-perl Filename: pool/main/libt/libtry-tiny-perl/libtry-tiny-perl_0.19-1_all.deb Size: 17618 MD5sum: e9e7443508b9abffc244c876c7baeb7f SHA1: c4a2819450c90179d574b15ad0a537dd30ec24da SHA256: 99a091c016f5c499a20b8d8ebb808d136e70262971f2a33ffafdaf3c2c44aec3 Description: module providing minimalistic try/catch Homepage: https://metacpan.org/release/Try-Tiny/ Description-md5: 9b29ef7a1f5585b00820bb4442c41971 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libtspi-dev Priority: optional Section: libdevel Installed-Size: 925 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: i386 Source: trousers Version: 0.3.11.2-1 Depends: libtspi1 (= 0.3.11.2-1), libssl-dev Filename: pool/main/t/trousers/libtspi-dev_0.3.11.2-1_i386.deb Size: 624940 MD5sum: 91b697e85bed899cfdc773a20b6f52f8 SHA1: 1ccd131a8290a8778ee655b61134995a02f9a5a6 SHA256: 97f3299927132a8661c6a6da2122d8860d49806e79ca37a6e121f0645e424179 Description: open-source TCG Software Stack (development) Homepage: http://trousers.sourceforge.net/ Description-md5: 7151dc43aab94706e767892365045c17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtspi1 Priority: optional Section: libs Installed-Size: 525 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: i386 Source: trousers Version: 0.3.11.2-1 Depends: libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/t/trousers/libtspi1_0.3.11.2-1_i386.deb Size: 179438 MD5sum: ab579ea6ae0aa24b45c6be652d7eea9c SHA1: 207d459a8b813abff82deb8ff72adbab4c596181 SHA256: be8317dd57aaf172587e24922c90170e3893be4fa50e3aab30a757926d428732 Description: open-source TCG Software Stack (library) Homepage: http://trousers.sourceforge.net/ Description-md5: b46c696c49355b278d5160ca11e77907 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libtxc-dxtn-s2tc-dev Priority: extra Section: libdevel Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Lennart Weller Architecture: i386 Source: s2tc Version: 0~git20131104-1.1 Provides: libtxc-dxtn-dev Depends: libtxc-dxtn-s2tc0 (= 0~git20131104-1.1) Conflicts: libtxc-dxtn-dev Filename: pool/main/s/s2tc/libtxc-dxtn-s2tc-dev_0~git20131104-1.1_i386.deb Size: 2618 MD5sum: 5e1f4d156d3e0f3172a23f347780d04c SHA1: d94b1d4b7858c954a06a67650f757c88c3b1a750 SHA256: b8d7b300b5618a09e640635bce4671a6b2d8df5791b87b770cc0a01192496d09 Description: Development files for the S2TC library Homepage: https://github.com/divVerent/s2tc Description-md5: 2f127ebc896fee1a08e14088ae0ce711 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libtxc-dxtn-s2tc0 Priority: extra Section: libs Installed-Size: 251 Maintainer: Ubuntu Developers Original-Maintainer: Lennart Weller Architecture: i386 Source: s2tc Version: 0~git20131104-1.1 Provides: libtxc-dxtn0 Depends: libc6 (>= 2.3.4), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Conflicts: libtxc-dxtn0 Filename: pool/main/s/s2tc/libtxc-dxtn-s2tc0_0~git20131104-1.1_i386.deb Size: 48146 MD5sum: 579be59ec235043a17fd7fe05712d95b SHA1: 5df0fc4d8ff661063eef7a3157cab8cd56424ef2 SHA256: 19a7ab46c15a50bbe5c6a4a40cb745d8f5c344618d15304fefcc5119c9375522 Description: Texture compression library for Mesa Multi-Arch: same Homepage: https://github.com/divVerent/s2tc Description-md5: 2f0fc78281cee90a4c5d960db96ed02a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libubuntu-application-api-mirclient1 Priority: optional Section: libs Installed-Size: 163 Maintainer: Ubuntu Developers Architecture: i386 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.17), libdbus-cpp2 (>= 2.0.0+14.04.20140310), libgcc1 (>= 1:4.1.1), libhybris-common1, libmirclient7 (>= 0.1.8+14.04.20140408.1), libprotobuf8, libstdc++6 (>= 4.5), libubuntu-location-service0, liburl-dispatcher1 (>= 0.1) Pre-Depends: multiarch-support Filename: pool/main/p/platform-api/libubuntu-application-api-mirclient1_0.20+14.04.20140411-0ubuntu1_i386.deb Size: 33072 MD5sum: 284ec92d9ed383db644e0cf99efe0c50 SHA1: e3a0c785a1bcc6553638d452bac3ed6c9a5704c3 SHA256: bfa2fccfc95ca6d9c003c9feda43ee761ea9ad297f83b2ee82ad582327fe09a8 Description: Implementation of the Platform API for a Mir client Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 41ce2fde8cfd2f72dcc39fdc151f0c18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-application-api-mirserver1 Priority: optional Section: libs Installed-Size: 151 Maintainer: Ubuntu Developers Architecture: i386 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.17), libdbus-cpp2 (>= 2.0.0+14.04.20140310), libgcc1 (>= 1:4.1.1), libhybris-common1, libmirserver18 (>= 0.1.8+14.04.20140408.1), libstdc++6 (>= 4.5), libubuntu-location-service0, liburl-dispatcher1 (>= 0.1) Pre-Depends: multiarch-support Filename: pool/main/p/platform-api/libubuntu-application-api-mirserver1_0.20+14.04.20140411-0ubuntu1_i386.deb Size: 28782 MD5sum: bcce14512c05f8faba50cf5863d75b03 SHA1: efa62ef5294437249058257788e5a621c076d3bb SHA256: fa70d86fdb744ff6a0bcf1909d5409c0952a993a4a1017668910a895fc97f9bb Description: Implementation of the Platform API for a Mir server Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: 81fd6f1651d2a9e246d7a752cb2278e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-application-api1 Priority: optional Section: libs Installed-Size: 146 Maintainer: Ubuntu Developers Architecture: i386 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Replaces: libplatform-api1-hybris (<< 0.18.3) Depends: libc6 (>= 2.17), libdbus-cpp2 (>= 2.0.0+14.04.20140310), libgcc1 (>= 1:4.1.1), libhybris-common1, libstdc++6 (>= 4.4.0), libubuntu-location-service0, liburl-dispatcher1 (>= 0.1) Pre-Depends: multiarch-support Breaks: libplatform-api1-hybris (<< 0.18.3) Filename: pool/main/p/platform-api/libubuntu-application-api1_0.20+14.04.20140411-0ubuntu1_i386.deb Size: 20668 MD5sum: 326b606731cc762f32cf5b33416356d1 SHA1: e14de939df2ca44f6c332c8b5483a7e3b8eec77c SHA256: af6119d0ed8d24acdc9efd14bbc4416ce44135c1fde57044786c66fac886352a Description: Hybris implementation of the Platform API (runtime) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: a4eee79a5b79818edbf7e0bf487d4c22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-location-service-dev Priority: optional Section: libdevel Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: location-service Version: 0.0.2+14.04.20140307-0ubuntu1 Depends: libubuntu-location-service0 (= 0.0.2+14.04.20140307-0ubuntu1) Recommends: ubuntu-location-service-doc Filename: pool/main/l/location-service/libubuntu-location-service-dev_0.0.2+14.04.20140307-0ubuntu1_i386.deb Size: 12340 MD5sum: 18e87d048816ac283e33b7fd7c0bc1d2 SHA1: 3d2f935690bd77e57200326336a266f4588092ea SHA256: 0bfb4350d889b34ae3b0c1224d175da88d103f7b8a0895cee5e503f7a925e51b Description: location service aggregating position/velocity/heading Multi-Arch: foreign Homepage: http://launchpad.net/location-service Description-md5: 0b424fe8d3b65270820c90515e192539 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-location-service0 Priority: optional Section: libs Installed-Size: 1210 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: location-service Version: 0.0.2+14.04.20140307-0ubuntu1 Depends: libc6 (>= 2.4), libdbus-cpp2 (>= 2.0.0+14.04.20140307), libgcc1 (>= 1:4.1.1), libgflags2, libgoogle-glog0, libstdc++6 (>= 4.6), libubuntu-platform-hardware-api1 (>= 0.18.2+13.10.20130709) Pre-Depends: multiarch-support Filename: pool/main/l/location-service/libubuntu-location-service0_0.0.2+14.04.20140307-0ubuntu1_i386.deb Size: 183194 MD5sum: 6b77ff73af21e23a4d0c52520b2c2810 SHA1: ca3fb963bb2e80df7eaf15e35de711afaf2c1ff2 SHA256: ccfd473b5a1d3bb39960f194866549cb5b795a49b23e81846fb093af8e12d04f Description: location service aggregating position/velocity/heading Multi-Arch: same Homepage: http://launchpad.net/location-service Description-md5: 9fa3adcb7ee9b6d3feb6d2c594f79cf6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-platform-api1-dev Priority: optional Section: oldlibs Installed-Size: 33 Maintainer: Ubuntu Developers Architecture: all Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Depends: libplatform-api1-dev (= 0.20+14.04.20140411-0ubuntu1) Filename: pool/main/p/platform-api/libubuntu-platform-api1-dev_0.20+14.04.20140411-0ubuntu1_all.deb Size: 1534 MD5sum: 980b827c649b56037b4f3cb39c43ee2a SHA1: fbd842d3b47cd7b1600cb16ab6f587e55433552f SHA256: 490d4585f91c243ac54394697ec0ed089ef596ec66a3459f5aac68c5c51aea0c Description: dummy transitional package for libplatform-api1-dev Homepage: https://launchpad.net/platform-api Description-md5: de56e227a9689823f5b844fcd76d0d40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libubuntu-platform-hardware-api1 Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Developers Architecture: i386 Source: platform-api Version: 0.20+14.04.20140411-0ubuntu1 Replaces: libplatform-hardware-api1-hybris (<< 0.18.3) Depends: libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libhybris-common1, libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Breaks: libplatform-hardware-api1-hybris (<< 0.18.3) Filename: pool/main/p/platform-api/libubuntu-platform-hardware-api1_0.20+14.04.20140411-0ubuntu1_i386.deb Size: 6480 MD5sum: 55214cb7ea4341faa7d2f542d048761a SHA1: 51449c01bc69e7bd63981348803c6f9a221ab9b8 SHA256: ada501a5787fa5430ebadf2b08d5ba98e1f182709e714512659ae79252beca3b Description: Hybris implementation of the hw-access parts of the Platform API (runtime) Multi-Arch: same Homepage: https://launchpad.net/platform-api Description-md5: d9c7c5dff3893ffc9571a67f240b3e83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libudev-dev Priority: optional Section: admin Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Depends: libudev1 (= 204-5ubuntu20) Filename: pool/main/s/systemd/libudev-dev_204-5ubuntu20_i386.deb Size: 25270 MD5sum: 527ca1fe3a9d4089b255bda86a841036 SHA1: d64423a5c32c0ff2d04fc21dd865805c21a83b0a SHA256: 9705637f7fe75a70c4aafb0eb058b7fb2f18f6b7867cab3bc69b7e7daaa52bee Description: libudev development files Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 4085049214953c1e2cf5d9aee1c32173 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libudev1 Priority: required Section: libs Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Depends: libc6 (>= 2.17), libcgmanager0, libdbus-1-3 (>= 1.0.2), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/s/systemd/libudev1_204-5ubuntu20_i386.deb Size: 34348 MD5sum: 7cd7ce9c5b0c1e5b643c3c55bd19c02d SHA1: eaf0539072d2a9b74ea4baf57c15c3113ae63990 SHA256: 801c5ae94a3030c80f8b602b1ba7a44e15c15a2a6df97e2d6fb189663dbe3b9c Description: libudev shared library Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: ace5b83d7b48187416c90173a93255b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libudf-dev Priority: optional Section: libdevel Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: i386 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libudf0 (= 0.83-4.1ubuntu1), libcdio-dev (>= 0.78.2-1), libc6-dev | libc-dev Filename: pool/main/libc/libcdio/libudf-dev_0.83-4.1ubuntu1_i386.deb Size: 17812 MD5sum: a966aea8a402036b7002e8fe8325a5bb SHA1: ee6e1d8038bc17e83b5779bb9a5ac0b8f110202b SHA256: d3f251bb007e7e88909d318a175f1a7f36319afd080fa80a4f532b8167c10de5 Description: library to work with UDF filesystems (development files) Homepage: http://www.gnu.org/software/libcdio/ Description-md5: eba99eb045f51267e42cf3d0a668a96c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libudf0 Priority: optional Section: libs Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas Boullis Architecture: i386 Source: libcdio Version: 0.83-4.1ubuntu1 Depends: libc6 (>= 2.4), libcdio13 (>= 0.83) Filename: pool/main/libc/libcdio/libudf0_0.83-4.1ubuntu1_i386.deb Size: 10088 MD5sum: 25a0b7dba6ae194bb9902b6b88de154f SHA1: 4d65bc6464cef265871f0054c4e361b6d8bfe44a SHA256: 3e3187ba5c2867df2dc76bdbdff7fb89c9984c3dcda85b797fabc650df5f0f02 Description: library to work with UDF filesystems Homepage: http://www.gnu.org/software/libcdio/ Description-md5: 01adae615002a974b055f09ce3aca55c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libudisks2-0 Priority: optional Section: libs Installed-Size: 467 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: udisks2 Version: 2.1.3-1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/u/udisks2/libudisks2-0_2.1.3-1_i386.deb Size: 89282 MD5sum: c7378def23f3028885cf5a1eb05b1879 SHA1: 64c984a2dd3cd132a341190a81ba530dac83811a SHA256: d0d5d14eabaeb680ffc2f31fe3ec17292e7ceb956811ca3956d3d73c764c478d Description: GObject based library to access udisks2 Multi-Arch: same Homepage: http://www.freedesktop.org/wiki/Software/udisks Description-md5: a4d304d9db0e1fd78836f4986f49ca67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libudisks2-dev Priority: optional Section: libdevel Installed-Size: 2313 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: udisks2 Version: 2.1.3-1 Depends: gir1.2-udisks-2.0 (= 2.1.3-1), libudisks2-0 (= 2.1.3-1) Filename: pool/main/u/udisks2/libudisks2-dev_2.1.3-1_i386.deb Size: 138218 MD5sum: 7afafc1b40ebefabdb48cfd34fb9c90c SHA1: 7542b9b8795a6c700f86de5309ed0ee37f237fc4 SHA256: 5b84a29b71c464ca42dfd96c25a837c8f43f3adac210c93eece7f931712dbd67 Description: GObject based library to access udisks2 - development files Homepage: http://www.freedesktop.org/wiki/Software/udisks Description-md5: f34ab90bbc4fc7d3f5f06a71b6d4c7d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libufe-xidgetter0 Priority: optional Section: libs Installed-Size: 42 Maintainer: Ubuntu Developers Architecture: i386 Source: unity-firefox-extension Version: 3.0.0+14.04.20140416-0ubuntu1 Depends: libgtk2.0-0 (>= 2.24.0) Pre-Depends: multiarch-support Filename: pool/main/u/unity-firefox-extension/libufe-xidgetter0_3.0.0+14.04.20140416-0ubuntu1_i386.deb Size: 4302 MD5sum: 687c89b3f2aead9fb6eb7e95e7f296ce SHA1: 133aad500c241bd6b6c681d33a6d333e6efcd74b SHA256: 367b95a0ec2fc7a2dc49f2875fe8f5053f7a7134e308b4d8a366a46ff2a80ea7 Description: Firefox extension: Unity Integration Homepage: https://launchpad.net/unity-firefox-extension Description-md5: e4b53d72615feaed2201e5bdbe48e5b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libumfpack5.6.2 Priority: optional Section: libs Installed-Size: 699 Maintainer: Ubuntu Developers Original-Maintainer: Debian Science Team Architecture: i386 Source: suitesparse Version: 1:4.2.1-3ubuntu1 Depends: libamd2.3.1, libblas3 | libblas.so.3, libc6 (>= 2.1.3), libcholmod2.1.2 Pre-Depends: multiarch-support Filename: pool/main/s/suitesparse/libumfpack5.6.2_4.2.1-3ubuntu1_i386.deb Size: 118904 MD5sum: 4519b937e78941d8f00450625bd0c604 SHA1: f3ea385564554e6f8011c3f0a4fc3e6e363681fc SHA256: cbeb47c5878b1a5c5e1e6ab5d4d1f850153b599bcbc63ddc3c66170faaeb097c Description: sparse LU factorization library Multi-Arch: same Homepage: http://www.cise.ufl.edu/research/sparse/SuiteSparse/ Description-md5: 6b5cd8bc82b6a25890f5ace9d9937b82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libumockdev-dev Priority: optional Section: libdevel Installed-Size: 215 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: i386 Source: umockdev Version: 0.8.1-1 Depends: libumockdev0 (= 0.8.1-1), libglib2.0-dev, gir1.2-umockdev-1.0 Filename: pool/main/u/umockdev/libumockdev-dev_0.8.1-1_i386.deb Size: 20442 MD5sum: 62521e085318e0a92a54306fe7dcee62 SHA1: 7d595927a0dbc54e9fbce073f515966db945052a SHA256: fec4b16c1891a44af755a598b54c1fe052cef6e3d0a1fe1ecca13d17e8950dba Description: development files and documentation for libumockdev Homepage: https://github.com/martinpitt/umockdev/ Description-md5: e20e1fd5f7c452d037e06ca09da31d81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libumockdev0 Priority: optional Section: libs Installed-Size: 114 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: i386 Source: umockdev Version: 0.8.1-1 Depends: libc6 (>= 2.15), libglib2.0-0 (>= 2.32.0), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/u/umockdev/libumockdev0_0.8.1-1_i386.deb Size: 29988 MD5sum: 96d7b73592f4adeaa2143ec5f9b3be40 SHA1: a839328e2feff7f8d39e144f703aff7f34e60a16 SHA256: baf6a1a7b5de3132e0981c271ba91bc088b5e213a223bed28ff55f38347ae39f Description: hardware mocking testbed for bug reports and regression tests Multi-Arch: same Homepage: https://github.com/martinpitt/umockdev/ Description-md5: ebb621f9941ee1cde03190e72e506f3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunbound-dev Priority: optional Section: net Installed-Size: 4411 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: unbound Version: 1.4.22-1ubuntu4 Depends: libunbound2 (= 1.4.22-1ubuntu4) Filename: pool/main/u/unbound/libunbound-dev_1.4.22-1ubuntu4_i386.deb Size: 3392982 MD5sum: 919239c3d8d0e40a15ee831660bef506 SHA1: e71b6c0e16a18b5b60d1e82b5c153ca25b0944c9 SHA256: 5c48e318343e53fa5803addffefe6cf78b30fae294617630c609d7023efacf55 Description: static library, header files, and docs for libunbound Multi-Arch: same Homepage: https://www.unbound.net/ Description-md5: ed3009c5a462f3287f75c961064034a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunbound2 Priority: optional Section: net Installed-Size: 601 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: unbound Version: 1.4.22-1ubuntu4 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/u/unbound/libunbound2_1.4.22-1ubuntu4_i386.deb Size: 218100 MD5sum: 56e14223411273350a700745e182c945 SHA1: 1d70ef42b60109806ba80f92933de7f23a6d2f84 SHA256: 3e5dd7b607af24611bb95c07e4c6558b57f0547c3c28964c26bbad075b84ccc3 Description: library implementing DNS resolution and validation Multi-Arch: same Homepage: https://www.unbound.net/ Description-md5: 2be0d2578ccb5656d253e8013682ad4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libunicode-linebreak-perl Priority: optional Section: perl Installed-Size: 322 Maintainer: Ubuntu Developers Original-Maintainer: Emmanuel Bouthenot Architecture: i386 Version: 0.0.20131101-1 Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.4), libsombok3 (>= 2.3.1-1~), libmime-charset-perl (>= 1.006.2) Filename: pool/main/libu/libunicode-linebreak-perl/libunicode-linebreak-perl_0.0.20131101-1_i386.deb Size: 92484 MD5sum: fd56a7e2321147c6597cf03832556934 SHA1: df2c60abf38892367b1f8ff66de0e03ca63b0ca2 SHA256: d959a5b54fe9c9a5ffd200b6f0b4a279257e8eca4c7d7b8001237620c65c8c63 Description: UAX #14 Unicode Line Breaking Algorithm Homepage: http://search.cpan.org/dist/Unicode-LineBreak/ Description-md5: 064e5d14c788a9625ef41965b9c36e7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunicode-utf8-perl Priority: optional Section: perl Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.59-1build1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4) Filename: pool/main/libu/libunicode-utf8-perl/libunicode-utf8-perl_0.59-1build1_i386.deb Size: 19496 MD5sum: 2602103a1243571458615b45a3776943 SHA1: a99337aa1ce6aaa25e68ca6d5ab30bc778fc6532 SHA256: c31205a7549f803b47155f5dbad24b1e11269a6c66f3b2c2478600d9b8a0d538 Description: encoding and decoding of UTF-8 encoding form Homepage: http://search.cpan.org/dist/Unicode-UTF8/ Description-md5: adcd36ea0db6701aaae183b6732e41b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libuniconf4.6 Priority: optional Section: libs Installed-Size: 429 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: wvstreams Version: 4.6.1-7 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libwvstreams4.6-base, libwvstreams4.6-extras Filename: pool/main/w/wvstreams/libuniconf4.6_4.6.1-7_i386.deb Size: 132800 MD5sum: 148d51c67e34fed21c8060ca376771ca SHA1: 54f95dcddaffdd8803987c7388a93a38b25e009f SHA256: f7f13b9e15ebed26bb1d1973e26e5ba8e6f44048c840145aeb7c43f43652bc88 Description: C++ network libraries for rapid application development Description-md5: 8e55435d89b943e72ed8aaab443a407e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-desktop Package: libuninameslist-dev Priority: optional Section: libdevel Installed-Size: 1509 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: i386 Source: libuninameslist Version: 0.3.20130501-3 Depends: libuninameslist0 (= 0.3.20130501-3) Filename: pool/main/libu/libuninameslist/libuninameslist-dev_0.3.20130501-3_i386.deb Size: 325454 MD5sum: 301fc6735a0086f295ec734676ac663a SHA1: 8211dc43dadb4d2e2a464da663fe3295a3601f31 SHA256: a92fd1731125fa14abe19901d764de64b1b24beda179df242796cb9778a5922a Description: library of Unicode annotation data (development files) Homepage: https://github.com/fontforge/libuninameslist Description-md5: cced08fee8b0cff895c14321280db1a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libuninameslist0 Priority: optional Section: libs Installed-Size: 1493 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: i386 Source: libuninameslist Version: 0.3.20130501-3 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/libu/libuninameslist/libuninameslist0_0.3.20130501-3_i386.deb Size: 318198 MD5sum: ba9b9275def049c38ff48805c5fda616 SHA1: d3a97350f490cdc5928531576ca19c578b94b9be SHA256: b2c2677c9d7e07e87b36d3b66f3e0ccd53ddbd6c8e12c8a27f83b0679387d5c9 Description: library of Unicode annotation data Homepage: https://github.com/fontforge/libuninameslist Description-md5: 7a72092a2f6b5a9c8f83138a239c1f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-publishing Package: libunique-1.0-0 Priority: optional Section: libs Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libunique Version: 1.1.6-4ubuntu2 Depends: libc6 (>= 2.4), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libx11-6, dbus, dbus-x11 Filename: pool/main/libu/libunique/libunique-1.0-0_1.1.6-4ubuntu2_i386.deb Size: 20996 MD5sum: 195c3c129e8c650820ec04f7d31c2b00 SHA1: ee80bf15afafb3bcb28c6cae3f711472c453c99c SHA256: 243d7d27fa838c0269c819e7af470d07bc0a5d3f78a209604926727225aa1643 Description: Library for writing single instance applications - shared libraries Homepage: http://live.gnome.org/LibUnique Description-md5: c9a904ea2ae3ba5f0fdfe69ab466dfaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, ubuntustudio-desktop Package: libunique-dev Priority: optional Section: libdevel Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libunique Version: 1.1.6-4ubuntu2 Replaces: gir-repository-dev (<= 0.6.5-2) Depends: libunique-1.0-0 (= 1.1.6-4ubuntu2), libglib2.0-dev (>= 2.12.0), libgtk2.0-dev (>= 2.11.0) Suggests: libunique-doc Filename: pool/main/libu/libunique/libunique-dev_1.1.6-4ubuntu2_i386.deb Size: 22508 MD5sum: b3f86198ab183a27a307c26d735c428a SHA1: ccd6372a847a6b834c769a337b18abaa5f25cffd SHA256: 6a938451ddcedd9e7b37172b4d9b06f2cb4a7356bba2f4d173de1a281a677082 Description: Library for writing single instance applications - development files Homepage: http://live.gnome.org/LibUnique Description-md5: 51e77def53a11cb57b60fdf525eea7ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunique-doc Priority: optional Section: doc Installed-Size: 200 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: libunique Version: 1.1.6-4ubuntu2 Recommends: libunique-1.0-0 Suggests: devhelp Filename: pool/main/libu/libunique/libunique-doc_1.1.6-4ubuntu2_all.deb Size: 20400 MD5sum: 233a6995d897655ce871b942ab218876 SHA1: b95464041cdcde0fe72302ca70627e532304e5e9 SHA256: aa4319935e0a650a775ef9a211ba310cc611111092eb0cfe47b066bb3bd2d86a Description: Library for writing single instance applications - documentation Homepage: http://live.gnome.org/LibUnique Description-md5: da1ffbd76a5852b1fcc66ca3013bac5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunistring-dev Priority: optional Section: libdevel Installed-Size: 2333 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Rottmann Architecture: i386 Source: libunistring Version: 0.9.3-5ubuntu3 Depends: libunistring0 (= 0.9.3-5ubuntu3) Filename: pool/main/libu/libunistring/libunistring-dev_0.9.3-5ubuntu3_i386.deb Size: 411460 MD5sum: 4f8bc99c7482265da0ed61542348d089 SHA1: eb41a18f39bbc4d090358fc5acbfb3d49b7b5944 SHA256: 86e224b1b17651529965fc121f532fa6d14b24f812ac1ffb3de7bd43b5c655f2 Description: Unicode string library for C - development files Multi-Arch: same Homepage: http://www.gnu.org/software/libunistring/ Description-md5: 4cb6f307da8ff81023eda5dc8286af44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunistring0 Priority: optional Section: libs Installed-Size: 1134 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Rottmann Architecture: i386 Source: libunistring Version: 0.9.3-5ubuntu3 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libu/libunistring/libunistring0_0.9.3-5ubuntu3_i386.deb Size: 272256 MD5sum: f2fc47983129f62473d81a0fe2522fea SHA1: dc09e65d5477cb1e06010a36c1ee086a5ec89c6f SHA256: 1198578d451fa51a7a3cc86789d4029cfb75004c542ac249955e233c357a57d5 Description: Unicode string library for C Multi-Arch: same Homepage: http://www.gnu.org/software/libunistring/ Description-md5: b202dbec3da512fe5ff554ac46cd2451 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libunity-2d-private-dev Priority: optional Section: libdevel Installed-Size: 123 Maintainer: Ubuntu Developers Architecture: all Source: unity Version: 7.2.0+14.04.20140416-0ubuntu1 Depends: unity Filename: pool/main/u/unity/libunity-2d-private-dev_7.2.0+14.04.20140416-0ubuntu1_all.deb Size: 4984 MD5sum: f272ed3e635626b1d89383d09563d643 SHA1: b031ac1f8e7a40e1be7b5befb5f3e5ad5f6f29e4 SHA256: bc242cac5922ea11125b2d30e4940707c8400d32c4d67b93a498b1119e57a26e Description: transitional dummy package Homepage: https://launchpad.net/unity Description-md5: a06d380855fbe7cc75a9788e2760f757 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-action-qt1 Priority: optional Section: libs Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Antti Kaijanmäki Architecture: i386 Source: unity-action-api Version: 1.1.0+14.04.20140304-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libhud2 (>= 13.10.0), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/u/unity-action-api/libunity-action-qt1_1.1.0+14.04.20140304-0ubuntu1_i386.deb Size: 45086 MD5sum: db1f83790c392e7055f58c4ce954f541 SHA1: 57eeb3ce245337180814d58ee94c075df6faef5b SHA256: 10c9824b1ce8a56d3480489b220849df69a15b005b72a0390858ee342ff9fa5c Description: Unity Action Qt API Multi-Arch: same Homepage: https://launchpad.net/unity-action-api Description-md5: 8ca604cfa3cd5f02a146393a0b681dbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity-action-qt1-dev Priority: optional Section: libdevel Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Antti Kaijanmäki Architecture: i386 Source: unity-action-api Version: 1.1.0+14.04.20140304-0ubuntu1 Depends: libunity-action-qt1 (= 1.1.0+14.04.20140304-0ubuntu1), qtbase5-dev, libhud2-dev Suggests: unity-action-doc Filename: pool/main/u/unity-action-api/libunity-action-qt1-dev_1.1.0+14.04.20140304-0ubuntu1_i386.deb Size: 4228 MD5sum: 94e1a9d1590320c69fa8e9e5067e78b3 SHA1: 5807a7cd9f03af99b684d3b4e42a0c344c408a44 SHA256: 109a1a94742dc5acf0fbe648fa749f5be3fad184d27a8459b8906b4ccd422fcc Description: Unity Action Qt API - development files Multi-Arch: same Homepage: https://launchpad.net/unity-action-api Description-md5: fe16746b5d5ef60555a35050f3de769e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-control-center-dev Priority: optional Section: libdevel Installed-Size: 132 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: unity-control-center Version: 14.04.3+14.04.20140410-0ubuntu1 Depends: libunity-control-center1 (= 14.04.3+14.04.20140410-0ubuntu1) Filename: pool/main/u/unity-control-center/libunity-control-center-dev_14.04.3+14.04.20140410-0ubuntu1_i386.deb Size: 4094 MD5sum: c3b780e7c5cd8967e19784df934f9430 SHA1: e2c6a7126bf5f57021a78a604b7395e3ff3403d4 SHA256: 65b2278a12ac377bf40e3ae9083d6d70a548b5a1ba9cd5f9c330324bb5d6a15a Description: utilities to configure the GNOME desktop Description-md5: d94b8cc23eade4594fdcf9cbed49b9fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-control-center1 Priority: optional Section: libs Installed-Size: 133 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: unity-control-center Version: 14.04.3+14.04.20140410-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.14), libpango-1.0-0 (>= 1.14.0) Filename: pool/main/u/unity-control-center/libunity-control-center1_14.04.3+14.04.20140410-0ubuntu1_i386.deb Size: 81004 MD5sum: e8d05c64fdc818eb876ac5b480f3d40c SHA1: f38defc2569d60c31937bbe79ab0ed2e87e55d73 SHA256: 2ae0e8277e8b8ec1f5661f5dd84d4d872402bd785c1d8eb10fd46334c12701eb Description: utilities to configure the GNOME desktop Description-md5: d35b85c0b8b73f7bf4cf19c7aa215660 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libunity-core-6.0-9 Priority: optional Section: libs Installed-Size: 1958 Maintainer: Ubuntu Developers Architecture: i386 Source: unity Version: 7.2.0+14.04.20140416-0ubuntu1 Replaces: libunity-core-6.0-6, libunity-core-6.0-7, libunity-core-6.0-8, unity-common Provides: unity-common, unity-common-7.0 Depends: libc6 (>= 2.4), libdee-1.0-4 (>= 0.5.16), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.39.4), libnux-4.0-0, libsigc++-2.0-0c2a (>= 2.0.2), libstdc++6 (>= 4.8), libunity-protocol-private0 (>= 7.1.4+14.04.20140210), dconf-gsettings-backend | gsettings-backend, unity-services (= 7.2.0+14.04.20140416-0ubuntu1) Conflicts: libunity-core-6.0-6, libunity-core-6.0-7, libunity-core-6.0-8, unity-common Filename: pool/main/u/unity/libunity-core-6.0-9_7.2.0+14.04.20140416-0ubuntu1_i386.deb Size: 452164 MD5sum: a7d2be005f06bf0b812317e7672033fb SHA1: 9ed5011d1f46e3b9bb034cda1718eaf0563106d2 SHA256: 5f4a53820984d1e3b67ad9e377e9b1c3befa36eaddca9c3fd0c4ea34dfe2900a Description: core library for the Unity interface Homepage: https://launchpad.net/unity Description-md5: 2ee857fee5d2f8dbac3e4840d118df06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity-core-6.0-dev Priority: optional Section: libdevel Installed-Size: 271 Maintainer: Ubuntu Developers Architecture: i386 Source: unity Version: 7.2.0+14.04.20140416-0ubuntu1 Depends: libunity-core-6.0-9 (= 7.2.0+14.04.20140416-0ubuntu1), libglib2.0-dev, libsigc++-2.0-dev, libnux-4.0-dev (>= 4.0.5), libunity-dev (>= 7.1.0~), libdee-dev Filename: pool/main/u/unity/libunity-core-6.0-dev_7.2.0+14.04.20140416-0ubuntu1_i386.deb Size: 22644 MD5sum: 3350a74bd9eb81a45322fc39bb850dab SHA1: e88b0d280e55cb2837aa156f6ecc19295e401785 SHA256: eea5daecf86ebc0c89283a48c744333d79fafa5e8a3a216feac04807bc6ffe1f Description: Core library for the Unity interface - development files Homepage: https://launchpad.net/unity Description-md5: 9d4511f2e1fa9f78a3708127328fd86b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-dev Priority: optional Section: libdevel Installed-Size: 532 Maintainer: Ubuntu Core Developers Architecture: i386 Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Replaces: libunity9 (<< 5.90) Depends: gir1.2-unity-5.0 (= 7.1.4+14.04.20140210-0ubuntu1), libunity9 (= 7.1.4+14.04.20140210-0ubuntu1), libunity-protocol-private0 (= 7.1.4+14.04.20140210-0ubuntu1), libglib2.0-dev, libdee-dev, libdbusmenu-glib-dev Filename: pool/main/libu/libunity/libunity-dev_7.1.4+14.04.20140210-0ubuntu1_i386.deb Size: 40628 MD5sum: 69b71b0719311c037ef92e48d9e5039a SHA1: 5db4ee315d60b575d367fa88ccc82d810ca4df84 SHA256: 6748d64753ac677170f5bde1e815e636508373d0a4baab0f895bb41bebde6c76 Description: binding to get places into the launcher - development files Homepage: https://launchpad.net/libunity Description-md5: 940646542d41ed6501a55676f7cc379f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-gtk-parser-dev-common Priority: optional Section: libdevel Installed-Size: 106 Maintainer: Ubuntu Desktop Team Architecture: all Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Filename: pool/main/u/unity-gtk-module/libunity-gtk-parser-dev-common_0.0.0+14.04.20140403-0ubuntu1_all.deb Size: 12756 MD5sum: 377c7151e0bfe637936690c736fa1e6f SHA1: 76f92343660c0b16b7ddde238fb06fc671c5e063 SHA256: 739aad379910943ea742f9c5819db14a31b89507a2befeb957c188401d448163 Description: Common files for GtkMenuShell to GMenuModel parser Multi-Arch: foreign Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 626a0a177d2b39396e5bbe48d64c4064 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-gtk2-parser-dev Priority: optional Section: libdevel Installed-Size: 131 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Depends: libgtk2.0-dev (>= 2.24.0), libunity-gtk-parser-dev-common (>= 0.0.0+14.04.20140403-0ubuntu1), libunity-gtk2-parser0 (= 0.0.0+14.04.20140403-0ubuntu1) Filename: pool/main/u/unity-gtk-module/libunity-gtk2-parser-dev_0.0.0+14.04.20140403-0ubuntu1_i386.deb Size: 23758 MD5sum: cb9a63f8fb710ab17d0aa742b41e8a07 SHA1: 41057e14a1feadee24f19faf5f2635292022be57 SHA256: 1c4cee0dcd0ef45d849a4487eb4f90f11ffcf27dc19a19f9cfe3b0ce3c047c00 Description: GtkMenuShell to GMenuModel parser Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 0e6949492c772089528476a1a8243018 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-gtk2-parser0 Priority: optional Section: libs Installed-Size: 103 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.39.4), libgtk2.0-0 (>= 2.24.0) Pre-Depends: multiarch-support, dpkg (>= 1.15.7.2) Filename: pool/main/u/unity-gtk-module/libunity-gtk2-parser0_0.0.0+14.04.20140403-0ubuntu1_i386.deb Size: 24006 MD5sum: caf9142192a6d939ee219c6ac03bea67 SHA1: 94935fb2a4eca6ad7db3bf432056a0e7c92c74dc SHA256: d4002e9e0e706cc3781d645646ee9fc78db5b5383b94f70312d48941e6d78965 Description: GtkMenuShell to GMenuModel parser Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 204500b413c2c01152d690e2dffea312 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity-gtk3-parser-dev Priority: optional Section: libdevel Installed-Size: 130 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Depends: libgtk-3-dev (>= 3.2.0), libunity-gtk-parser-dev-common (>= 0.0.0+14.04.20140403-0ubuntu1), libunity-gtk3-parser0 (= 0.0.0+14.04.20140403-0ubuntu1) Filename: pool/main/u/unity-gtk-module/libunity-gtk3-parser-dev_0.0.0+14.04.20140403-0ubuntu1_i386.deb Size: 23300 MD5sum: a70f41b216fc2a06dbf284cd9a07ba46 SHA1: 5223826a69416ac74d1924fa4328fc5f1d2d05b1 SHA256: bdf40d3fac7c5e25fecea7e2d6ede08b7d97d7146b0d55ddd479780c14a7922e Description: GtkMenuShell to GMenuModel parser Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 0e6949492c772089528476a1a8243018 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-gtk3-parser0 Priority: optional Section: libs Installed-Size: 99 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.2.0) Pre-Depends: multiarch-support, dpkg (>= 1.15.7.2) Filename: pool/main/u/unity-gtk-module/libunity-gtk3-parser0_0.0.0+14.04.20140403-0ubuntu1_i386.deb Size: 23588 MD5sum: dabcdbaac7bc64b3496064ac01995966 SHA1: e05d1c068bc7032a62e1412d60af076a15803b34 SHA256: 01305179a2bec84cb3a708ab2720e90c97a9d553e35dcb83763ba237d40da5f6 Description: GtkMenuShell to GMenuModel parser Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 204500b413c2c01152d690e2dffea312 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity-misc-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Ubuntu Developers Architecture: i386 Source: libunity-misc Version: 4.0.5+14.04.20140115-0ubuntu1 Depends: libunity-misc4 (= 4.0.5+14.04.20140115-0ubuntu1), libglib2.0-dev (>= 2.22.0), libgtk-3-dev (>= 3.0) Filename: pool/main/libu/libunity-misc/libunity-misc-dev_4.0.5+14.04.20140115-0ubuntu1_i386.deb Size: 4776 MD5sum: 7dbf707c31771bb54e4e28b4385e894e SHA1: 268bd1362ff0fc9ff2b1b85c3874a51d987b925b SHA256: acab6dde1db8f6dffe4242b050c20ee240de59aaf9bbe0022ba2bbebeebee072 Description: Miscellaneous functions for Unity - development files Homepage: https://launchpad.net/libunity-misc Description-md5: be205441b197c106735472a240f3781f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-misc-doc Priority: optional Section: doc Installed-Size: 58 Maintainer: Ubuntu Developers Architecture: all Source: libunity-misc Version: 4.0.5+14.04.20140115-0ubuntu1 Suggests: devhelp Filename: pool/main/libu/libunity-misc/libunity-misc-doc_4.0.5+14.04.20140115-0ubuntu1_all.deb Size: 7812 MD5sum: c4c9be59ca84756666bbc6e039b9ba4c SHA1: ed62426e6a7f44604be4a26e5255dd6f7108372b SHA256: 6cb317f483cfe76ea4d45dc4c0bb2138233727e54a4cd85b3e28074630d5bf47 Description: Miscellaneous functions for Unity - documentation Homepage: https://launchpad.net/libunity-misc Description-md5: 7c6b11eb68d32f1b14e41a9bb4ed9262 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-misc4 Priority: optional Section: libs Installed-Size: 89 Maintainer: Ubuntu Developers Architecture: i386 Source: libunity-misc Version: 4.0.5+14.04.20140115-0ubuntu1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libx11-6 Pre-Depends: multiarch-support Filename: pool/main/libu/libunity-misc/libunity-misc4_4.0.5+14.04.20140115-0ubuntu1_i386.deb Size: 21062 MD5sum: f5fe0e98effb3001c6f16f4968a85877 SHA1: dde5d7e705da0b327fd94e1041bafae3a374db28 SHA256: c9c183784329d01497c7d453091d729b7c729a8c86ea58364f1a2bc1ef3d68b8 Description: Miscellaneous functions for Unity - shared library Homepage: https://launchpad.net/libunity-misc Description-md5: bb4bad60843732bf6465ea6c2b39f009 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity-protocol-private0 Priority: optional Section: libs Installed-Size: 349 Maintainer: Ubuntu Core Developers Architecture: i386 Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libdee-1.0-4 (>= 1.0.0), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Breaks: libunity9 (<< 7.1.1) Filename: pool/main/libu/libunity/libunity-protocol-private0_7.1.4+14.04.20140210-0ubuntu1_i386.deb Size: 75488 MD5sum: 94b724f5bb7a12535db9b3ac16c34a0b SHA1: 39838a04ebaffdfc0a9eafa78cb041eab88fcd15 SHA256: c22b5e3803f8085639390533f89de3a5b2ce0205afd8e20f4f81c447602e9674 Description: binding to get places into the launcher - private library Multi-Arch: same Homepage: https://launchpad.net/libunity Description-md5: de4784aed16d63b7fb02d506575d1fe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libunity-scopes-json-def-desktop Priority: optional Section: gnome Installed-Size: 52 Maintainer: Ubuntu Core Developers Architecture: all Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Replaces: libunity-common (<< 7.0.7) Provides: libunity-common, unity-scopes-json-def Conflicts: libunity-common (<< 7.0.7), unity-scopes-json-def Filename: pool/main/libu/libunity/libunity-scopes-json-def-desktop_7.1.4+14.04.20140210-0ubuntu1_all.deb Size: 3696 MD5sum: 59d3c739a011c79ceead205d586e3072 SHA1: 90d22d1e85e4f845e910df6c0e2faa36f386c869 SHA256: b8a5fb8770756da79d6ac98265ac7449f488a54c61dfdf070fabc40b976146e9 Description: binding to get places into the launcher - desktop def file Multi-Arch: foreign Homepage: https://launchpad.net/libunity Description-md5: c272d9c9f1482ba09fbb8b8fdb9cc568 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libunity-webapps-dev Priority: optional Section: libdevel Installed-Size: 344 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libunity-webapps Version: 2.5.0~+14.04.20140409-0ubuntu1 Depends: gir1.2-unity-webapps-0.2, libunity-webapps0 (= 2.5.0~+14.04.20140409-0ubuntu1) Filename: pool/main/libu/libunity-webapps/libunity-webapps-dev_2.5.0~+14.04.20140409-0ubuntu1_i386.deb Size: 21086 MD5sum: 5717266da907564a76d118b36514e01d SHA1: fd07811724f8a27415d68f406f926772bca01c40 SHA256: d01c7428d8703e8a6c41cd0b501d00bd83d8ff40f051288f25b90d98cfeb032e Description: Web Apps integration with Unity - development files Homepage: https://launchpad.net/libunity-webapps Description-md5: 39f603f3793361a1aa23a6efaeb59e61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-webapps-doc Priority: optional Section: doc Installed-Size: 286 Maintainer: Ubuntu Desktop Team Architecture: all Source: libunity-webapps Version: 2.5.0~+14.04.20140409-0ubuntu1 Filename: pool/main/libu/libunity-webapps/libunity-webapps-doc_2.5.0~+14.04.20140409-0ubuntu1_all.deb Size: 19874 MD5sum: 639013cfb46f67f7c42aaeb1388dcd0e SHA1: 8c77d03d9bc0946fd436f819734896ed1564ad7a SHA256: e34a0512c15b36d4033c1d705ade39cebe6aa9bb346ae65e5f193585947d2ce5 Description: Web Apps integration with Unity - documentation Homepage: https://launchpad.net/libunity-webapps Description-md5: 9691a395a77926383f936f9555572791 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunity-webapps0 Priority: optional Section: libs Installed-Size: 289 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libunity-webapps Version: 2.5.0~+14.04.20140409-0ubuntu1 Depends: unity-webapps-service, libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libjson-glib-1.0-0 (>= 0.12.0), libpackagekit-glib2-16 (>= 0.8.10), libpolkit-gobject-1-0 (>= 0.99), libsqlite3-0 (>= 3.5.9) Breaks: bamfdaemon (<= 0.3.0-0ubuntu1), xul-ext-unity (<= 2.3-0quantal1), xul-ext-websites-integration (<= 2.3-0quantal1) Filename: pool/main/libu/libunity-webapps/libunity-webapps0_2.5.0~+14.04.20140409-0ubuntu1_i386.deb Size: 58050 MD5sum: 17dfb53c994e1a8576c8f2640183e817 SHA1: 6354b1382c4da7253e4913a67be2ccce540c2f90 SHA256: be977e2db36b18bd7ec1d9f71fa87aadbde9cc7503699c92b85698040e877130 Description: Web Apps integration with the Unity desktop Homepage: https://launchpad.net/libunity-webapps Description-md5: a167400b2b59382dd0211fa9b603d334 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunity9 Priority: optional Section: libs Installed-Size: 836 Maintainer: Ubuntu Core Developers Architecture: i386 Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libdbusmenu-glib4 (>= 0.4.2), libdee-1.0-4 (>= 1.2.3~daily13.02.26), libglib2.0-0 (>= 2.37.3), libunity-protocol-private0 (= 7.1.4+14.04.20140210-0ubuntu1), dconf-gsettings-backend | gsettings-backend, libunity-scopes-json-def-desktop (>= 7.1.4+14.04.20140210-0ubuntu1) | unity-scopes-json-def Pre-Depends: multiarch-support Suggests: unity-common (>= 7.1.2) Breaks: unity-common (<< 7.1.2) Filename: pool/main/libu/libunity/libunity9_7.1.4+14.04.20140210-0ubuntu1_i386.deb Size: 193818 MD5sum: 0a20a56461de8e9f8d2b51db05b2350a SHA1: c2b5eb436716e0dd2940f25db0c346c420c6f6be SHA256: a68178ff3b39235efcc363b8475b57eba1ca6263910e569dae02757a61d85237 Description: binding to get places into the launcher - shared library Multi-Arch: same Homepage: https://launchpad.net/libunity Description-md5: 0bdcbe46903d5a11a88d8cfa7be5f803 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libunityvoice1 Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Pete Woods Architecture: i386 Source: unity-voice Version: 0.1+14.04.20140304-0ubuntu1 Depends: unity-voice-service (= 0.1+14.04.20140304-0ubuntu1), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/u/unity-voice/libunityvoice1_0.1+14.04.20140304-0ubuntu1_i386.deb Size: 11606 MD5sum: e375b4d3ae78d0d7d6bd2b05a93be28e SHA1: 4aaf21ce1f76adfbc536790f61d02368ccb9b45f SHA256: 255b5fcf48372bf07d7f37c0d0b3e833fccff60682892899601dc2a2bbbcc510 Description: client library for Unity voice service Multi-Arch: same Homepage: https://launchpad.net/unity-voice Description-md5: 4986f86a063f011fc4875acdc81cb751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libunityvoice1-dev Priority: optional Section: libdevel Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Pete Woods Architecture: i386 Source: unity-voice Version: 0.1+14.04.20140304-0ubuntu1 Depends: libunityvoice1 (= 0.1+14.04.20140304-0ubuntu1), qtbase5-dev Filename: pool/main/u/unity-voice/libunityvoice1-dev_0.1+14.04.20140304-0ubuntu1_i386.deb Size: 3074 MD5sum: 4aef557c0f1be5b03717820101006d25 SHA1: c5e2956a9d51322a61b40464dbac9057ea228540 SHA256: a41321c26e1358e175bee7e6fb1b3186eb871a7663c5a00d115b69840c85739b Description: client library for Unity voice service Multi-Arch: same Homepage: https://launchpad.net/unity-voice Description-md5: dad0b7724dfbd7b38094f3db44e70248 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunix-syslog-perl Priority: optional Section: perl Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.1-2build5 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4) Filename: pool/main/libu/libunix-syslog-perl/libunix-syslog-perl_1.1-2build5_i386.deb Size: 25562 MD5sum: 969edda03b343d27d4a1c85182f5a80d SHA1: 4c16cef9c1d384b6e8041792b936d23bde5b6afe SHA256: c8f15ffcd0b3fe5770a64ed7ed7e1da5c95c2ec376b8e507504a1c447be4c6c7 Description: Perl interface to the UNIX syslog(3) calls Homepage: http://search.cpan.org/dist/Unix-Syslog/ Description-md5: 71aaa5c50a04924ce8afffe6bfef1267 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libunwind-setjmp0 Priority: optional Section: libs Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: libunwind Version: 1.1-2.2ubuntu3 Depends: libc6 (>= 2.0), libunwind8 Pre-Depends: multiarch-support Filename: pool/main/libu/libunwind/libunwind-setjmp0_1.1-2.2ubuntu3_i386.deb Size: 5580 MD5sum: 292829cc22bf61d3a1b11b0b3b635476 SHA1: d57510b5977eb4b4715349aec811cd6f1095c518 SHA256: 9285c345542708a7ba7cebce2d17637500f92611c01df3a6f6682a741e15d872 Description: libunwind-based non local goto - runtime Homepage: http://www.nongnu.org/libunwind Description-md5: a2ad087672aa604c7e2e5e0dee1676a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunwind-setjmp0-dbg Priority: extra Section: debug Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: libunwind Version: 1.1-2.2ubuntu3 Depends: libunwind-setjmp0 (= 1.1-2.2ubuntu3) Filename: pool/main/libu/libunwind/libunwind-setjmp0-dbg_1.1-2.2ubuntu3_i386.deb Size: 12460 MD5sum: b04bb6a145e639b06c742e7bdac4ec69 SHA1: ba510c7518dd21ce023ddf48a037d41dd262d969 SHA256: d91e8945743d30dd8608fa03768943fb7b99c51b90ef296d0144508fa3777539 Description: libunwind-based non local goto - runtime Homepage: http://www.nongnu.org/libunwind Description-md5: cf23db6dc3fda03286356b5dcd73dc7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunwind-setjmp0-dev Priority: optional Section: libdevel Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: libunwind Version: 1.1-2.2ubuntu3 Depends: libunwind8-dev (= 1.1-2.2ubuntu3), libunwind-setjmp0 (= 1.1-2.2ubuntu3) Filename: pool/main/libu/libunwind/libunwind-setjmp0-dev_1.1-2.2ubuntu3_i386.deb Size: 14064 MD5sum: 11f9d26e6d5a880a95887cabb9012aca SHA1: a19c6021463f0d6d0aef8342ffb9a3d0d464e1bd SHA256: 64f88c2fd4e6d5e5689737423a143fe85af8939c14a87e7a933d0f95cbee27df Description: libunwind-based non local goto - development Homepage: http://www.nongnu.org/libunwind Description-md5: 099a990a984e4f0a5487014e58a269b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunwind8 Priority: optional Section: libs Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: libunwind Version: 1.1-2.2ubuntu3 Replaces: libgcc1 (<< 1:4.0.0-2) Depends: libc6 (>= 2.4), liblzma5 (>= 5.1.1alpha+20110809) Pre-Depends: multiarch-support Conflicts: libunwind1-dev Filename: pool/main/libu/libunwind/libunwind8_1.1-2.2ubuntu3_i386.deb Size: 44558 MD5sum: d97ea595ca2c4c299fc06a56daec3b77 SHA1: 7954585de8248250c8a457e90a12c2325dd9ea9d SHA256: 4a80230eba5c82ced41d76f3c6718257cb5fdd7f379cdfb939186e905c213a37 Description: library to determine the call-chain of a program - runtime Homepage: http://www.nongnu.org/libunwind Description-md5: 7095fd22983044140f5faf099162a263 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunwind8-dbg Priority: extra Section: debug Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: libunwind Version: 1.1-2.2ubuntu3 Depends: libunwind8 (= 1.1-2.2ubuntu3) Filename: pool/main/libu/libunwind/libunwind8-dbg_1.1-2.2ubuntu3_i386.deb Size: 282264 MD5sum: b676362a66a11ef8afa446d34df44dcf SHA1: 2a2248bc80ac33a1f90831c922745e78cc8252de SHA256: 8b4c24c0ffe9b71e248c7de194ed37f84cf5eeb7556c68616b8464a2a74cd15e Description: library to determine the call-chain of a program - runtime Homepage: http://www.nongnu.org/libunwind Description-md5: 1aaea2ab3392bcfdf7a686bc495adf82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libunwind8-dev Priority: optional Section: libdevel Installed-Size: 1791 Maintainer: Ubuntu Developers Original-Maintainer: Daigo Moriwaki Architecture: i386 Source: libunwind Version: 1.1-2.2ubuntu3 Replaces: libunwind7-dev Depends: libunwind8 (= 1.1-2.2ubuntu3) Conflicts: libunwind1-dev, libunwind7-dev Filename: pool/main/libu/libunwind/libunwind8-dev_1.1-2.2ubuntu3_i386.deb Size: 351514 MD5sum: 2d17bea83c27e10a6cda06a79ffdf901 SHA1: 6da33c5823800cd456b5cf0adf5ef510304b1818 SHA256: 2a6bd15f8f9f31a8a023af26e6c27ca1e1043c68f9d4863ce5f90524f0854655 Description: library to determine the call-chain of a program - development Homepage: http://www.nongnu.org/libunwind Description-md5: 968fa5fbcdf32543dedc4d9d40405c26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupower-glib-dev Priority: optional Section: libdevel Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: upower Version: 0.9.23-2ubuntu1 Depends: libglib2.0-dev, libdbus-glib-1-dev (>= 0.76), libupower-glib1 (= 0.9.23-2ubuntu1), gir1.2-upowerglib-1.0 (= 0.9.23-2ubuntu1) Filename: pool/main/u/upower/libupower-glib-dev_0.9.23-2ubuntu1_i386.deb Size: 32324 MD5sum: d85b87ab200acf9d8edf5b378c57bab7 SHA1: e76e25e29e275fbee6b451c12baa63f0acd6f909 SHA256: a3091b78ab494ec9a3d2322a4e1c92d19441b4fdbb2bf960f44364edb3e84d7d Description: abstraction for power management - development files Homepage: http://upower.freedesktop.org/ Description-md5: e299324721dc2f58c6699cd68634ba38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupower-glib1 Priority: optional Section: libs Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: upower Version: 0.9.23-2ubuntu1 Depends: libc6 (>= 2.4), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Filename: pool/main/u/upower/libupower-glib1_0.9.23-2ubuntu1_i386.deb Size: 23260 MD5sum: d885480c589df42e31cc387383cc1455 SHA1: f1507ff308245d72054e3090113db955ceaf7cf0 SHA256: cc6b3cca6621ad427bde0696a76281e7bdb0e7ac0bb5927f11fa40afb3c83622 Description: abstraction for power management - shared library Multi-Arch: same Homepage: http://upower.freedesktop.org/ Description-md5: 11709d9e0d03275e3ab6991c83469900 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libupsclient-dev Priority: optional Section: libdevel Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: i386 Source: nut Version: 2.7.1-1ubuntu1 Replaces: libupsclient1-dev Depends: libupsclient3 (= 2.7.1-1ubuntu1) Conflicts: libupsclient1-dev Filename: pool/main/n/nut/libupsclient-dev_2.7.1-1ubuntu1_i386.deb Size: 60226 MD5sum: dd465025d501c591eb028bff18150a14 SHA1: 741489d4c080e0d00f694d473e35097247dda8cc SHA256: 264e2fcd80cde51df57ab05146ec03a7b9d20132c8aa4de3d6f22ab65635a476 Description: network UPS tools - development files Homepage: http://www.networkupstools.org/ Description-md5: 250337065f929786472de73f6a87196b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupsclient3 Priority: optional Section: libs Installed-Size: 203 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: i386 Source: nut Version: 2.7.1-1ubuntu1 Depends: libc6 (>= 2.15), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1) Pre-Depends: multiarch-support Filename: pool/main/n/nut/libupsclient3_2.7.1-1ubuntu1_i386.deb Size: 59804 MD5sum: e30ffff7eb40472ffd304b1ae2d94d7a SHA1: b7db96fae116d400db9b9181c0cc79c7aa49c735 SHA256: 17ad25b01ab6aa48d8a12ab09e1d92d33faf384cb02d30aa471abc7f329d3cc6 Description: network UPS tools - client library Multi-Arch: same Homepage: http://www.networkupstools.org/ Description-md5: 114740a1a3e95f3f3ca2a9ad68b740a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libupstart-app-launch2 Priority: optional Section: libs Installed-Size: 126 Maintainer: Ted Gould Architecture: i386 Source: upstart-app-launch Version: 0.3+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.4), libclick-0.4-0 (>= 0.4.18), libglib2.0-0 (>= 2.37.0), libjson-glib-1.0-0 (>= 0.12.0), liblttng-ust0 Pre-Depends: multiarch-support Filename: pool/main/u/upstart-app-launch/libupstart-app-launch2_0.3+14.04.20140411-0ubuntu1_i386.deb Size: 22500 MD5sum: ac955a2f75ce6a0b67368670b37f862b SHA1: 3c86a2aaa04f4aff6ffb38d50223a05b6a046dfb SHA256: ed98a9cd840fb37c0e6a382b67c75092d82d9eea2b52d836ee71d59d31355907 Description: library for sending requests to the upstart app launch Multi-Arch: same Homepage: http://launchpad.net/upstart-app-launch Description-md5: 97e29038665ea38c4f171b9828258fff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupstart-app-launch2-dev Priority: optional Section: libdevel Installed-Size: 111 Maintainer: Ted Gould Architecture: i386 Source: upstart-app-launch Version: 0.3+14.04.20140411-0ubuntu1 Replaces: libupstart-app-launch1-dev Depends: libglib2.0-dev, libupstart-app-launch2 (= 0.3+14.04.20140411-0ubuntu1) Conflicts: libupstart-app-launch1-dev Filename: pool/main/u/upstart-app-launch/libupstart-app-launch2-dev_0.3+14.04.20140411-0ubuntu1_i386.deb Size: 6974 MD5sum: a01b1643d71c0c3c8dc91475ff72976a SHA1: 1a47acf5965cb9d8c4cbe29a11c6c81e056cd434 SHA256: 504516bfb8948d2d7bd54b80d1bed33dd4d28bce0fe4265ce36d7af90b99580c Description: library for sending requests to the upstart app launch Multi-Arch: same Homepage: http://launchpad.net/upstart-app-launch Description-md5: 80827a9ab90d4c9235e2efbdfbd6b1f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupstart-dev Priority: optional Section: libdevel Installed-Size: 322 Maintainer: James Hunt Architecture: i386 Source: upstart Version: 1.12.1-0ubuntu4 Depends: libupstart1 (= 1.12.1-0ubuntu4) Filename: pool/main/u/upstart/libupstart-dev_1.12.1-0ubuntu4_i386.deb Size: 40822 MD5sum: aa23c219c2e5790d3517ffccf29010c3 SHA1: 59ca2404df0352b6f5890d67e8f8e35239020d23 SHA256: 172cb977ae73606b4d4334a2b0aad1b04f8ebf6258c80bd691e4d0bba74d3790 Description: Upstart Client Library (development files) Multi-Arch: same Homepage: http://upstart.ubuntu.com/ Orig-Maintainer: Steve Langasek Description-md5: ec96d63e3af639995a442cd6b0733410 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libupstart1 Priority: optional Section: admin Installed-Size: 209 Maintainer: James Hunt Architecture: i386 Source: upstart Version: 1.12.1-0ubuntu4 Depends: libc6 (>= 2.1.3), libdbus-1-3 (>= 1.2.16), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0) Pre-Depends: multiarch-support Filename: pool/main/u/upstart/libupstart1_1.12.1-0ubuntu4_i386.deb Size: 38488 MD5sum: 8b3cba0fb62a0be8160db09dc7aafa2f SHA1: d50389ef68a329e2a6d36935f5a6dd0eef644171 SHA256: 594b8f4ca4b8039decded613c63d283057bdd79519b35ec4943d9ad27ff9cc47 Description: Upstart Client Library Multi-Arch: same Homepage: http://upstart.ubuntu.com/ Orig-Maintainer: Steve Langasek Description-md5: 6c0f4f2b94a39a98cf6d9e420c504939 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: liburcu-dev Priority: extra Section: libdevel Installed-Size: 380 Maintainer: Ubuntu Developers Original-Maintainer: Jon Bernard Architecture: i386 Source: liburcu Version: 0.7.12-0ubuntu2 Depends: liburcu1 (= 0.7.12-0ubuntu2) Filename: pool/main/libu/liburcu/liburcu-dev_0.7.12-0ubuntu2_i386.deb Size: 61964 MD5sum: 1e9dfc400fa2dcebd81491e52cccd6f0 SHA1: 8b323bc58d9e0acbac99d4ef9f3a40e9abe34e55 SHA256: f6f6151fc385a36f838443c9ff967b9296aea17e3ae2c78f616f2229b3d95029 Description: userspace RCU (read-copy-update) library - development files Homepage: http://lttng.org/urcu Description-md5: 09835132a9a5c6007a4ef9e450ff9e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liburcu1 Priority: extra Section: libs Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Jon Bernard Architecture: i386 Source: liburcu Version: 0.7.12-0ubuntu2 Depends: libc6 (>= 2.6) Filename: pool/main/libu/liburcu/liburcu1_0.7.12-0ubuntu2_i386.deb Size: 33398 MD5sum: 34c637c790e23857097d24c793785232 SHA1: ac344e57f21c43b4670a2c9a5a04a85611c44c15 SHA256: 5fc7ba8148ed569343be5fee30849ff5faefc86565722fa1882271b7cb14dcfb Description: userspace RCU (read-copy-update) library Homepage: http://lttng.org/urcu Description-md5: de6f9b7147c6779e01a989b75c54e08b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: liburi-perl Priority: optional Section: perl Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.60-1 Depends: perl, libmime-base64-perl, libnet-perl Suggests: libwww-perl Filename: pool/main/libu/liburi-perl/liburi-perl_1.60-1_all.deb Size: 89648 MD5sum: 70db2c9058d77f825487105eda74af32 SHA1: e5ed6feb9fc063126e8f3213468e0c6793600f83 SHA256: 2819215d501387bfb334a0ed9770bb65c1fd940978a52c4395056eedef08095c Description: module to manipulate and access URI strings Homepage: http://search.cpan.org/dist/URI/ Description-md5: 8af2948497c501a41ac31e21cb3641dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: liburl-dispatcher1 Priority: optional Section: libs Installed-Size: 53 Maintainer: Ubuntu Developers Architecture: i386 Source: url-dispatcher Version: 0.1+14.04.20140403-0ubuntu1 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.37.3) Pre-Depends: multiarch-support Suggests: url-dispatcher (= 0.1+14.04.20140403-0ubuntu1) Filename: pool/main/u/url-dispatcher/liburl-dispatcher1_0.1+14.04.20140403-0ubuntu1_i386.deb Size: 9596 MD5sum: 8e873db34eff5b758b077f2479df039a SHA1: 23a510d62c406392013919c9ecda8bb8eb17ef7b SHA256: 8f00d8d1887e793cc83be4f20c224328668a6a88e2c795ee606aa1306cf4133f Description: library for sending requests to the url dispatcher Multi-Arch: same Homepage: http://launchpad.net/url-dispatcher Description-md5: 85121071bb37a2b7f8b23299a0b2c9c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: liburl-dispatcher1-dev Priority: optional Section: libdevel Installed-Size: 48 Maintainer: Ubuntu Developers Architecture: i386 Source: url-dispatcher Version: 0.1+14.04.20140403-0ubuntu1 Depends: libglib2.0-dev, liburl-dispatcher1 (= 0.1+14.04.20140403-0ubuntu1) Filename: pool/main/u/url-dispatcher/liburl-dispatcher1-dev_0.1+14.04.20140403-0ubuntu1_i386.deb Size: 2360 MD5sum: e7569ea9bfbacd208124aacddb2351c5 SHA1: 69b16e417426f87a451500994f9c1c029e0b1420 SHA256: 52ecea2a33e90aecc4e9d33d936cf1aaa64e981f63b7e93e715e793a56392ed0 Description: developer files for sending requests to the url dispatcher Multi-Arch: same Homepage: http://launchpad.net/url-dispatcher Description-md5: c478d05ebab987d1d5bc551ecb674f92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb++-0.1-4c2 Priority: optional Section: libs Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libusb Version: 2:0.1.12-23.3ubuntu1 Replaces: libusb++-0.1-4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libusb-0.1-4 (>= 2:0.1.12) Pre-Depends: multiarch-support Suggests: hotplug Conflicts: libusb++-0.1-4 Filename: pool/main/libu/libusb/libusb++-0.1-4c2_0.1.12-23.3ubuntu1_i386.deb Size: 8956 MD5sum: f7a7d895db13748619ceb8c8cdf9cc22 SHA1: 8c6afca7c89c1a061879848a654125c9a43dfc78 SHA256: 3f55f4699560a6f9b3be1b9e2416ff271806163fb837cad1839a9659cb47e76b Description: userspace C++ USB programming library Multi-Arch: same Homepage: http://www.linux-usb.org/ Description-md5: 44674ccce2eee0070286abdd31c4b3e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb++-dev Priority: optional Section: libdevel Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libusb Version: 2:0.1.12-23.3ubuntu1 Depends: libusb++-0.1-4c2 (= 2:0.1.12-23.3ubuntu1), libusb-dev (= 2:0.1.12-23.3ubuntu1), libstdc++6-4.4-dev | libstdc++-dev Filename: pool/main/libu/libusb/libusb++-dev_0.1.12-23.3ubuntu1_i386.deb Size: 12318 MD5sum: 66cc788e4689470b2d614406e02992a9 SHA1: a2207b9314a88a51b7cb3e3cb49e036538088bb7 SHA256: 266b82b9e787ebdaa47b01798afba215cdd305e3ff78632c580efff00d169825 Description: userspace C++ USB programming library development files Homepage: http://www.linux-usb.org/ Description-md5: f343c7e02c19529ec1dc21b87440eb58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb-0.1-4 Priority: important Section: libs Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libusb Version: 2:0.1.12-23.3ubuntu1 Replaces: libusb0 Depends: libc6 (>= 2.15) Pre-Depends: multiarch-support Conflicts: libccid (<< 0.9.2-3), libusb0 Filename: pool/main/libu/libusb/libusb-0.1-4_0.1.12-23.3ubuntu1_i386.deb Size: 15228 MD5sum: 1db214c9beade85daa27afb81e68ec7c SHA1: 0fa34e2a7a4134cd4a5aeb66137a4fbd43d74ddd SHA256: 4476849de11009a1c8e1f660373b74011d3438d5dcf11ccd4f04892cd7d15810 Description: userspace USB programming library Multi-Arch: same Homepage: http://www.linux-usb.org/ Description-md5: df65c70347ceff88b808787853da75d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: libusb-1.0-0 Priority: standard Section: libs Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libusbx Version: 2:1.0.17-1ubuntu2 Depends: libc6 (>= 2.17), libudev1 (>= 183) Pre-Depends: multiarch-support Filename: pool/main/libu/libusbx/libusb-1.0-0_1.0.17-1ubuntu2_i386.deb Size: 39296 MD5sum: bc07fd0e159cf33358c3c38981caad65 SHA1: b80b210daad150c4f65ff7f11ede6bbdaa753e0c SHA256: c9994bd996605e8d7e165d31f6a5e391d969ce2fe10fe7c4a9433291f672327e Description: userspace USB programming library Multi-Arch: same Homepage: http://www.linux-usb.org/ Description-md5: 2dcfdc1b1a0fdb8e8f86496cec6f9062 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libusb-1.0-0-dbg Priority: extra Section: debug Installed-Size: 238 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libusbx Version: 2:1.0.17-1ubuntu2 Depends: libusb-1.0-0 (= 2:1.0.17-1ubuntu2) Filename: pool/main/libu/libusbx/libusb-1.0-0-dbg_1.0.17-1ubuntu2_i386.deb Size: 71634 MD5sum: 5c8e6383dadf41e5b124e1d8994420bb SHA1: c45bd8d74e819b5b6a4e18f4de5922999c5cb016 SHA256: 334e8e6409425eab75bd7e94aab64ddf42dfd7a838404323d46e93f3a8665157 Description: userspace USB programming library development files Multi-Arch: same Homepage: http://www.linux-usb.org/ Description-md5: 1d6bc14fd61385ccf3174d1f90de0a8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb-1.0-0-dev Priority: optional Section: libdevel Installed-Size: 238 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libusbx Version: 2:1.0.17-1ubuntu2 Depends: libusb-1.0-0 (= 2:1.0.17-1ubuntu2) Recommends: libusb-1.0-doc Filename: pool/main/libu/libusbx/libusb-1.0-0-dev_1.0.17-1ubuntu2_i386.deb Size: 52732 MD5sum: 9194b56deaab858400413a83b827edbe SHA1: aea528631c222a31da2cefb368b93a7ac9fd685d SHA256: 645841dd190f14d32bdb70a9e20d957210637bca0d41138318771dbb22fa3e9e Description: userspace USB programming library development files Multi-Arch: same Homepage: http://www.linux-usb.org/ Description-md5: 07c28a16589d7bc7f4eda04968bb1f5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb-1.0-doc Priority: optional Section: doc Installed-Size: 1172 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: all Source: libusbx Version: 2:1.0.17-1ubuntu2 Replaces: libusb-1.0-0-dev (<< 1.0.16) Conflicts: libusb-1.0-0-dev (<< 1.0.16) Filename: pool/main/libu/libusbx/libusb-1.0-doc_1.0.17-1ubuntu2_all.deb Size: 114778 MD5sum: f4749eedcccea00e1c4dbb8802716267 SHA1: a89a33788af7246963f9838d93de01d9121a8158 SHA256: d80e92958bf49664b45931be2cd554d64f2d33a3a244a541e5368333e2f073a7 Description: documentation for userspace USB programming Homepage: http://www.linux-usb.org/ Description-md5: 82949d8bf4827404203382fc14d3c4b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusb-dev Priority: optional Section: libdevel Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Source: libusb Version: 2:0.1.12-23.3ubuntu1 Replaces: libusb0 (<< 1:0.1.5-1) Depends: libusb-0.1-4 (= 2:0.1.12-23.3ubuntu1), libc6-dev | libc-dev Filename: pool/main/libu/libusb/libusb-dev_0.1.12-23.3ubuntu1_i386.deb Size: 28256 MD5sum: a59739cd846b624fe09a6d76ca6b3f3a SHA1: f69bcbeabcfa58d7e0b507faa652598b322a10d8 SHA256: a3c373422286151c488589d60f2e4f03cebf645def2f2257bc1c69e2280880fe Description: userspace USB programming library development files Homepage: http://www.linux-usb.org/ Description-md5: 81ea89c5f13755e20b5bd0e8c61db27b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbmuxd-dev Priority: optional Section: libdevel Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: usbmuxd Version: 1.0.8-2ubuntu1 Depends: libusbmuxd2 (= 1.0.8-2ubuntu1) Filename: pool/main/u/usbmuxd/libusbmuxd-dev_1.0.8-2ubuntu1_i386.deb Size: 4348 MD5sum: 1a43ceeb6d82bb5d6cd1203a1c3639e2 SHA1: 0858539ee6143408cf01a231048649daa9d533bd SHA256: 5ab69438096e67a337544b227efc062d1fb44d4f5b44185accf096a6b0849012 Description: USB multiplexor daemon for iPhone and iPod Touch devices - devel Homepage: http://marcansoft.com/blog/iphonelinux/usbmuxd/ Description-md5: 9f61258d5ec2de1b9f68ed3c9cc3de94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbmuxd2 Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: usbmuxd Version: 1.0.8-2ubuntu1 Depends: libc6 (>= 2.15), libplist1 (>= 0.16) Filename: pool/main/u/usbmuxd/libusbmuxd2_1.0.8-2ubuntu1_i386.deb Size: 15114 MD5sum: 31b6e7042b8eaa61d5bafb84eb836017 SHA1: 612cf60a037da9c3a4db69c8c4c9b1b07f1dc48d SHA256: 3688b1a24b93baebcc81c7c955294f30f8a772bbcd651b73c6794ef9f2925d31 Description: USB multiplexor daemon for iPhone and iPod Touch devices - library Homepage: http://marcansoft.com/blog/iphonelinux/usbmuxd/ Description-md5: a758250e6a9071eca15221f3c421e4fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libusbmuxd2-dbg Priority: extra Section: debug Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: usbmuxd Version: 1.0.8-2ubuntu1 Depends: libusbmuxd2 (= 1.0.8-2ubuntu1) Filename: pool/main/u/usbmuxd/libusbmuxd2-dbg_1.0.8-2ubuntu1_i386.deb Size: 75712 MD5sum: 401e830c8dcb05c02f3acd8609d4aaa2 SHA1: f0ac0c085e26e840b5a26818ff80d3b5eaaf5265 SHA256: e4f205083d55f2de546193d38f4229579341a218dd658742a94c38c5e4dde445 Description: USB multiplexor daemon for iPhone and iPod Touch devices - debug Homepage: http://marcansoft.com/blog/iphonelinux/usbmuxd/ Description-md5: e7266aa13497f0f4c4061a6ece8d7209 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbredirhost-dev Priority: optional Section: libdevel Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: i386 Source: usbredir Version: 0.6-2ubuntu1 Depends: libusbredirhost1 (= 0.6-2ubuntu1), libusbredirparser-dev Filename: pool/main/u/usbredir/libusbredirhost-dev_0.6-2ubuntu1_i386.deb Size: 13792 MD5sum: 77b9e36a16c7d0a0924b8e6577f553ea SHA1: 93f637eff33790c2c77df548f94c858a7d47830a SHA256: 8907e13c0c6e94c026845b7921db58eebb82ba8335c97766d42550c053a44382 Description: implementing the usb-host (*) side of a usbredir connection (development) Multi-Arch: same Homepage: http://www.spice-space.org/ Description-md5: a2e217f6ed91a9148a403133592de821 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbredirhost1 Priority: optional Section: libs Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: i386 Source: usbredir Version: 0.6-2ubuntu1 Depends: libc6 (>= 2.4), libusb-1.0-0 (>= 2:1.0.9~), libusbredirparser1 (>= 0.6) Pre-Depends: multiarch-support Filename: pool/main/u/usbredir/libusbredirhost1_0.6-2ubuntu1_i386.deb Size: 16788 MD5sum: 62d92c0bbce2a56c288ee7236388ee3b SHA1: 183233cd95d16bdca774df1e26ae6d0b601f8d9f SHA256: 6071473edc5f2f4b2b65357c2bb324368bf3de775a8f5e9221a7c148f8d3cf80 Description: Implementing the usb-host (*) side of a usbredir connection (runtime) Multi-Arch: same Homepage: http://www.spice-space.org/ Description-md5: 0eabe470b8cb492275afe337726e1574 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbredirparser-dev Priority: optional Section: libdevel Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: i386 Source: usbredir Version: 0.6-2ubuntu1 Depends: libusbredirparser1 (= 0.6-2ubuntu1) Filename: pool/main/u/usbredir/libusbredirparser-dev_0.6-2ubuntu1_i386.deb Size: 7936 MD5sum: dfe7072807f26b3a6fbad8d3cb286ee7 SHA1: f673b3ff839bc6916b158577fef1fa9dbfb07881 SHA256: 69cd9ad85930f014a0908630328a9648855ec9d56610b24859445257692e2eba Description: Parser for the usbredir protocol (development) Multi-Arch: same Homepage: http://www.spice-space.org/ Description-md5: c3450ffda7083b08a8d41723338729e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libusbredirparser1 Priority: optional Section: libs Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Liang Guo Architecture: i386 Source: usbredir Version: 0.6-2ubuntu1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/u/usbredir/libusbredirparser1_0.6-2ubuntu1_i386.deb Size: 13298 MD5sum: 98f544921a8f41ca45c3a749c58ecc32 SHA1: 4e98f5fac0fdf0c8914353c6ae6dac0a4bc41f7e SHA256: a649cc099d5b6ae6f776ed07b447fc58b6cd2d656e0ef8216809bc5db8fe92cd Description: Parser for the usbredir protocol (runtime) Multi-Arch: same Homepage: http://www.spice-space.org/ Description-md5: 4c9c38be0a503f1e82cac3fb3e5c3c46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libustr-1.0-1 Priority: required Section: libs Installed-Size: 261 Maintainer: Ubuntu Developers Original-Maintainer: Vaclav Ovsik Architecture: i386 Source: ustr Version: 1.0.4-3ubuntu2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/u/ustr/libustr-1.0-1_1.0.4-3ubuntu2_i386.deb Size: 60654 MD5sum: f2ac832943709139d7a3abf894967776 SHA1: 9b0edd82e0b764f375edacab71ffe2699f2cbb89 SHA256: 6439168fa96cc53810497c2d1bdf0361db3614b3fcc3deab5f46333b4c14357f Description: Micro string library: shared library Multi-Arch: same Homepage: http://www.and.org/ustr/ Description-md5: 3b313e492269d05b2f9ba5d0aa1bd7a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libustr-1.0-1-dbg Priority: extra Section: libs Installed-Size: 611 Maintainer: Ubuntu Developers Original-Maintainer: Vaclav Ovsik Architecture: i386 Source: ustr Version: 1.0.4-3ubuntu2 Depends: libustr-1.0-1 (= 1.0.4-3ubuntu2) Filename: pool/main/u/ustr/libustr-1.0-1-dbg_1.0.4-3ubuntu2_i386.deb Size: 148696 MD5sum: ae1ea5ba2be53b91ceccf3141a87c7c9 SHA1: 0f869071dbaedfd506d5612931c2559bb9502b4b SHA256: e866f5643a0709a4254ec3284d68ca6519f4a3c8a744c45ca7574e60488031eb Description: Micro string library: debugging symbols Multi-Arch: same Homepage: http://www.and.org/ustr/ Description-md5: 22ff399eb4320a3487e0cced031de434 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libustr-dev Priority: optional Section: libdevel Installed-Size: 1090 Maintainer: Ubuntu Developers Original-Maintainer: Vaclav Ovsik Architecture: i386 Source: ustr Version: 1.0.4-3ubuntu2 Depends: libustr-1.0-1 (= 1.0.4-3ubuntu2), libc6-dev Filename: pool/main/u/ustr/libustr-dev_1.0.4-3ubuntu2_i386.deb Size: 186322 MD5sum: 5cefd8378825de82379daef66372c3c8 SHA1: 5713c8f23b1c6ac2581d0636b4126763fb08ffc0 SHA256: 15db5e92336d02270248ab7dbdd0ccd63ed5c0a6d6cc8b0d06d9e82b9303b896 Description: Micro string library: development stuff Homepage: http://www.and.org/ustr/ Description-md5: 541340efa7ca3abda263451b0910c6d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libustr-doc Priority: optional Section: doc Installed-Size: 524 Maintainer: Ubuntu Developers Original-Maintainer: Vaclav Ovsik Architecture: all Source: ustr Version: 1.0.4-3ubuntu2 Suggests: libustr-dev Filename: pool/main/u/ustr/libustr-doc_1.0.4-3ubuntu2_all.deb Size: 84790 MD5sum: ca8eddab59ae8df46916d2efe46050a9 SHA1: d6bb0e8ef37dedc98233a2cc54fac6f34ce380c1 SHA256: 272beb42e6e9e0486ee102f5ee45da58639d744315a1d2e79a641083faaabed8 Description: Micro string library: documentation Homepage: http://www.and.org/ustr/ Description-md5: 1e9d520b88a4a487f055a5a2fae44165 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libutempter-dev Priority: optional Section: libdevel Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: libutempter Version: 1.1.5-4build1 Depends: libutempter0 (= 1.1.5-4build1) Filename: pool/main/libu/libutempter/libutempter-dev_1.1.5-4build1_i386.deb Size: 3998 MD5sum: b1a7ebc29391d48b36f46d10e82fd1b3 SHA1: 53205efcd043c2f5a17e068847dfb706fdb93eab SHA256: 990cc5761673b750d71d5245e448cce42c8113315c7330426cd11e43c6990ba6 Description: A privileged helper for utmp/wtmp updates (development) Homepage: http://freshmeat.net/projects/libutempter Description-md5: 43b68f72bef1bc02cc7b02db6473a7ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libutempter0 Priority: optional Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: i386 Source: libutempter Version: 1.1.5-4build1 Depends: libc6 (>= 2.4), adduser Filename: pool/main/libu/libutempter/libutempter0_1.1.5-4build1_i386.deb Size: 8286 MD5sum: c8d920beb2cfa805836f69dba1649f73 SHA1: 0822c0741bba116390d822503fc0565b11e4a79c SHA256: 2c61e8edcb14ccf6f06530a2e0873034f63a1138d6954e57a0b540c37c55440e Description: A privileged helper for utmp/wtmp updates (runtime) Homepage: http://freshmeat.net/projects/libutempter Description-md5: b081753f0ead8baa651aa69cdcf0807a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libuuid-perl Priority: optional Section: perl Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.05-1 Depends: perl-base (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.4), libuuid1 (>= 2.16) Conflicts: doc-base (<< 0.10.3) Filename: pool/main/libu/libuuid-perl/libuuid-perl_0.05-1_i386.deb Size: 10494 MD5sum: dc2b78323193070cb675407a7a889196 SHA1: 95845a7412c8565b18cff9734a31ac9a0634b941 SHA256: 3c8c95a60fd06bb514491077e1d855742d39c6bce2df3c7e81e4abe0598fe83f Description: Perl extension for using UUID interfaces as defined in e2fsprogs Homepage: https://metacpan.org/release/UUID/ Description-md5: 6da18fe44fde90df04520cf56e86e758 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: libuuid1 Priority: required Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: i386 Source: util-linux Version: 2.20.1-5.1ubuntu20 Replaces: e2fsprogs (<< 1.34-1) Depends: passwd, libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: uuid-runtime Filename: pool/main/u/util-linux/libuuid1_2.20.1-5.1ubuntu20_i386.deb Size: 11650 MD5sum: 2b809f42511734e411d794f8b174d7ba SHA1: 4890d384fd865d9eb075c6212b3009ff905ec999 SHA256: ce930890e48c5edf46bfcac3c1aec81ef2a8960c88c62cb5573154286fb9136a Description: Universally Unique ID library Multi-Arch: same Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: cdcb90f3bb78d05cd58baab4e78716b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: libv4l-0 Priority: optional Section: libs Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Gregor Jasny Architecture: i386 Source: v4l-utils Version: 1.0.1-1 Depends: libv4lconvert0 (= 1.0.1-1), libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/v/v4l-utils/libv4l-0_1.0.1-1_i386.deb Size: 36492 MD5sum: 3d721b9728d09313bca46253baed4f33 SHA1: bdd17664f2ef2ce2c7e21157e5ded2b21a926a7f SHA256: e62d2bc19cb6dfdae87fce1e3d92c4357e32d132165fe10a1cf869ab5d148aca Description: Collection of video4linux support libraries Multi-Arch: same Homepage: http://linuxtv.org/downloads/v4l-utils/ Description-md5: 51ed604a5803d8a2ecaa5742927e357e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libv4l-dev Priority: optional Section: libdevel Installed-Size: 359 Maintainer: Ubuntu Developers Original-Maintainer: Gregor Jasny Architecture: i386 Source: v4l-utils Version: 1.0.1-1 Depends: libv4l-0 (= 1.0.1-1), libv4lconvert0 (= 1.0.1-1), libv4l2rds0 (= 1.0.1-1) Suggests: pkg-config (>= 0.18) Filename: pool/main/v/v4l-utils/libv4l-dev_1.0.1-1_i386.deb Size: 97802 MD5sum: 23d547e46638dda8a99df61eb84b9d07 SHA1: edc35c8c338f6881637ca55549861564ebbefc9e SHA256: ae2343a7ed7b8e913d2f3846a0995e56e33555366b0050960d1bb618302e9efd Description: Collection of video4linux support libraries (development files) Multi-Arch: same Homepage: http://linuxtv.org/downloads/v4l-utils/ Description-md5: f55e727a780c8a0816ceba845026f592 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libv4l2rds0 Priority: optional Section: libs Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Gregor Jasny Architecture: i386 Source: v4l-utils Version: 1.0.1-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/v/v4l-utils/libv4l2rds0_1.0.1-1_i386.deb Size: 15696 MD5sum: 1d3a8d81428d86fdf49e01c507d65b1f SHA1: a6c8f3cf2938373cc108028a6bc366b068a49fc4 SHA256: bcd9857602078338ccb4ab48d222e1255e39cff9a90de52179e0966540941bc0 Description: Video4Linux Radio Data System (RDS) decoding library Multi-Arch: same Homepage: http://linuxtv.org/downloads/v4l-utils/ Description-md5: 74ec40f7e17d3b15fb7326c3157e4460 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libv4lconvert0 Priority: optional Section: libs Installed-Size: 260 Maintainer: Ubuntu Developers Original-Maintainer: Gregor Jasny Architecture: i386 Source: v4l-utils Version: 1.0.1-1 Replaces: libv4l-0 (<< 0.8.5-4) Depends: libc6 (>= 2.11), libjpeg8 (>= 8c) Pre-Depends: multiarch-support Breaks: libv4l-0 (<< 0.8.5-4) Filename: pool/main/v/v4l-utils/libv4lconvert0_1.0.1-1_i386.deb Size: 72966 MD5sum: 696dc3711b8af503bc8625ea74b77d0e SHA1: 33321afb086e7934cd90c5d44a3517cbb54b1e57 SHA256: 3d1d16a3ad2bc8aeea522658493fcac91bcbf609bde88838ed7e4248766e96cd Description: Video4linux frame format conversion library Multi-Arch: same Homepage: http://linuxtv.org/downloads/v4l-utils/ Description-md5: 613f4d61c68c40d61eea4e310f26e2c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvala-0.18-0 Priority: optional Section: libs Installed-Size: 2907 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: vala-0.18 Version: 0.18.1-0ubuntu11 Depends: libc6 (>= 2.3.4), libglib2.0-0 (>= 2.26) Pre-Depends: multiarch-support Filename: pool/main/v/vala-0.18/libvala-0.18-0_0.18.1-0ubuntu11_i386.deb Size: 751774 MD5sum: 7f20fbeaf1fb7d777c66f1455c8ae500 SHA1: a816c16ddde758d6550eb952832beb0d4e3fd22e SHA256: 482f7ab132f213cd1f1db6a92262722d4ca10b6a6625cad0e163250ebf758223 Description: C# like language for the GObject system - library Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 8e6c5c5f694deba240aa5a0dbccd9a44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvala-0.18-0-dbg Priority: extra Section: debug Installed-Size: 12180 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: vala-0.18 Version: 0.18.1-0ubuntu11 Depends: libvala-0.18-0 (= 0.18.1-0ubuntu11) Filename: pool/main/v/vala-0.18/libvala-0.18-0-dbg_0.18.1-0ubuntu11_i386.deb Size: 3299040 MD5sum: d24fa5495841ddf4d2e8eae3b6656d18 SHA1: d26d0e0f8f4d9209c9688fb71a35a0696862f3e1 SHA256: 531681cf9b9686b525f0c10a50bce9f1e4261bc93c57c0becc8c9cc3fdb42dcd Description: C# like language for the GObject system - library symbols Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 795bdfffc586d39f523ce637c166a800 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvala-0.18-dev Priority: optional Section: libdevel Installed-Size: 653 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: vala-0.18 Version: 0.18.1-0ubuntu11 Replaces: libvala-0.10-dev, libvala-0.12-dev Provides: libvala-dev Depends: libvala-0.18-0 (= 0.18.1-0ubuntu11), libglib2.0-dev (>= 2.26) Filename: pool/main/v/vala-0.18/libvala-0.18-dev_0.18.1-0ubuntu11_i386.deb Size: 48016 MD5sum: 5e73556bc2ac5c315bb0ebb77d90c22c SHA1: 4209c87e475258af25f2f2c56896bea335992e7f SHA256: 2842264344bfadbff1b3874948b2cd5083865c2fb4a4fc4379f3c63def6ff2e9 Description: C# like language for the GObject system - development headers Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 9b64d2066da66406573be47d933fd9db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvala-0.22-0 Priority: optional Section: libs Installed-Size: 2955 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: vala-0.22 Version: 0.22.1-0ubuntu1 Depends: libc6 (>= 2.3.4), libglib2.0-0 (>= 2.26) Pre-Depends: multiarch-support Filename: pool/main/v/vala-0.22/libvala-0.22-0_0.22.1-0ubuntu1_i386.deb Size: 764792 MD5sum: 605e273dd1a5a996ae2e9a39d27c36b2 SHA1: ebd341a58f58df6d66f3f9a03f9fbc49a0da7e48 SHA256: a62c375e12cb184bdba986934e10c2ca5308f55e79bebddae575a7549253af53 Description: C# like language for the GObject system - library Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 8e6c5c5f694deba240aa5a0dbccd9a44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvala-0.22-0-dbg Priority: extra Section: debug Installed-Size: 13623 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: vala-0.22 Version: 0.22.1-0ubuntu1 Depends: libvala-0.22-0 (= 0.22.1-0ubuntu1) Filename: pool/main/v/vala-0.22/libvala-0.22-0-dbg_0.22.1-0ubuntu1_i386.deb Size: 3439356 MD5sum: fc8aebff2dcf5615ee8d0f4e673c9a14 SHA1: b9af8841fe70aa026cc89e962d959a30c80dc354 SHA256: 29321ec9079da54dd6bf34a1215857864e72c5597ff7ddc42075321784844757 Description: C# like language for the GObject system - library symbols Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 795bdfffc586d39f523ce637c166a800 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvala-0.22-dev Priority: optional Section: libdevel Installed-Size: 663 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: vala-0.22 Version: 0.22.1-0ubuntu1 Replaces: libvala-0.10-dev, libvala-0.12-dev Provides: libvala-dev Depends: libvala-0.22-0 (= 0.22.1-0ubuntu1), libglib2.0-dev (>= 2.26) Filename: pool/main/v/vala-0.22/libvala-0.22-dev_0.22.1-0ubuntu1_i386.deb Size: 48450 MD5sum: 4ad1e910aeacd81629e3bdb167949d24 SHA1: f585863bb58bb8fc3b84b6fe98bd0dd2f1fc1cf5 SHA256: afd324f884bfc170487e52150483b18e4b99efd595b87990568778cc2c395686 Description: C# like language for the GObject system - development headers Multi-Arch: same Homepage: http://live.gnome.org/Vala/ Description-md5: 9b64d2066da66406573be47d933fd9db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvariable-magic-perl Priority: optional Section: perl Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.53-1 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, libc6 (>= 2.1.3) Filename: pool/main/libv/libvariable-magic-perl/libvariable-magic-perl_0.53-1_i386.deb Size: 36324 MD5sum: e91d3c3cf750d6788fdfe55eaf250c40 SHA1: d82f11aff66278d93b5fe2c7d4e5bffcfb6fd661 SHA256: 3865fc283b29aa15ade09c743087807ae643eb72cf3c02c813acefbbb021e259 Description: module to associate user-defined magic to variables from Perl Homepage: https://metacpan.org/release/Variable-Magic/ Description-md5: 8047890d2dabed3dfb811264b14163b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvdpau-dev Priority: optional Section: libdevel Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: libvdpau Version: 0.7-1 Depends: libvdpau1 (= 0.7-1), libx11-dev Suggests: libvdpau-doc Filename: pool/main/libv/libvdpau/libvdpau-dev_0.7-1_i386.deb Size: 37724 MD5sum: cc0ee5fcead3e768609301775142d0b0 SHA1: 4b43d451ae88d8d8622dba7b00f03b4d6be7f34f SHA256: 275c7b623c365da4ef66dbc2cdf8b3dbf56a41801e6e57ecb3e8f9a39b3c1c57 Description: Video Decode and Presentation API for Unix (development files) Multi-Arch: same Homepage: http://cgit.freedesktop.org/~aplattner/libvdpau Description-md5: f8e43b3dc3e8300c9319b4c1cbee57f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvdpau-doc Priority: optional Section: doc Installed-Size: 1642 Maintainer: Ubuntu Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: all Source: libvdpau Version: 0.7-1 Filename: pool/main/libv/libvdpau/libvdpau-doc_0.7-1_all.deb Size: 469746 MD5sum: 710424281c9bec10dcc871a09b7ea571 SHA1: 07e9e670202285039425d85fa919d935cf21d023 SHA256: 08e340296b1cf471e34a27bcef119885326ee6d190d825950dbec56e271e4025 Description: Video Decode and Presentation API for Unix (documentation) Homepage: http://cgit.freedesktop.org/~aplattner/libvdpau Description-md5: 34a9d3089124a5203de333d7a3f6aa9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvdpau1 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: libvdpau Version: 0.7-1 Replaces: lib32vdpau1 Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Suggests: nvidia-vdpau-driver | vdpau-driver Conflicts: lib32vdpau1 Filename: pool/main/libv/libvdpau/libvdpau1_0.7-1_i386.deb Size: 26452 MD5sum: bdce71f1dc3691f39eaffa9c0069b38f SHA1: 169a6dfdc084aa325921755b60a39412b0001a68 SHA256: 50501ec9b83db665afcb3a31815f863cfeaa1a077433743407e89dfbdaf86f74 Description: Video Decode and Presentation API for Unix (libraries) Multi-Arch: same Homepage: http://cgit.freedesktop.org/~aplattner/libvdpau Description-md5: 4db054f80a1c742472d24fb11ef7f221 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: libverto-dev Priority: optional Section: libdevel Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: libverto Version: 0.2.4-1ubuntu2 Depends: libverto1 (= 0.2.4-1ubuntu2), libverto-glib1 (= 0.2.4-1ubuntu2), libverto-libevent1 (= 0.2.4-1ubuntu2) Filename: pool/main/libv/libverto/libverto-dev_0.2.4-1ubuntu2_i386.deb Size: 16806 MD5sum: 7228de9c6b4190271db0df088ca0cd82 SHA1: 0210754967d538caf8b80be577696365685c38b5 SHA256: 817257378212b77835d9b56b079f89e71d68e023a7c7ce98326f14277b5ee47e Description: Event loop abstraction for Libraries - Development Homepage: http://fedorahosted.net/libverto Description-md5: c360d826201d8c62e0f4ab70dc3a5009 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libverto-glib1 Priority: optional Section: libs Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: libverto Version: 0.2.4-1ubuntu2 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.16.0), libverto1 (>= 0.2.4) Pre-Depends: multiarch-support Filename: pool/main/libv/libverto/libverto-glib1_0.2.4-1ubuntu2_i386.deb Size: 5522 MD5sum: 4006697d950280ca2773b926ff2db61c SHA1: e4e1a5b9ba2c6054493196c496dcad07f4194ef6 SHA256: 888e934f1693c2427eb95f62681d7d2b304f17a71b70143935ac70a02a717060 Description: Event loop abstraction for Libraries - glib Multi-Arch: same Homepage: http://fedorahosted.net/libverto Description-md5: fbe13a94e4036f644c18a392ac828ff5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libverto-libevent1 Priority: optional Section: libs Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: libverto Version: 0.2.4-1ubuntu2 Depends: libc6 (>= 2.3.6-6~), libevent-2.0-5 (>= 2.0.10-stable), libverto1 (>= 0.2.4) Pre-Depends: multiarch-support Filename: pool/main/libv/libverto/libverto-libevent1_0.2.4-1ubuntu2_i386.deb Size: 5370 MD5sum: 72f7f61c503a33bb2d5d465baaa5b7fc SHA1: 9ac7c88403af64702995b3f80e77d86f2e15c293 SHA256: 8284922a5934ffef37111411a097b269cd32cba4bb0353acb0fcf37ac0986098 Description: Event loop abstraction for Libraries - libev Multi-Arch: same Homepage: http://fedorahosted.net/libverto Description-md5: 9f44a155ad7509a18a6a0864fa556169 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libverto1 Priority: optional Section: libs Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hartman Architecture: i386 Source: libverto Version: 0.2.4-1ubuntu2 Depends: libc6 (>= 2.3.6-6~), libverto-libevent1 | libverto-libev1 | libverto-glib1 Pre-Depends: multiarch-support Filename: pool/main/libv/libverto/libverto1_0.2.4-1ubuntu2_i386.deb Size: 8942 MD5sum: 923315cd06b2d48034f7d45599b94dd3 SHA1: 40966f2e231569ae8e1e977b8b5c596fe3bf95f0 SHA256: b7dfb7cd0e7770f5e97cd426dd66960dc53397a957bb623475f71a21bfd6d26a Description: Event loop abstraction for Libraries - Runtime Multi-Arch: same Homepage: http://fedorahosted.net/libverto Description-md5: 141da444b764f3506e854e43a81454ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvformat-dev Priority: optional Section: libdevel Installed-Size: 161 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Preud'homme Architecture: i386 Source: libvformat Version: 1.13-10 Depends: libvformat0 (= 1.13-10), dpkg (>= 1.15.4) | install-info Filename: pool/main/libv/libvformat/libvformat-dev_1.13-10_i386.deb Size: 57322 MD5sum: 2874410d9ba49ad835e44d6255d1ca97 SHA1: 204b69128fe1878c63fcfa2892190aafdfbb728d SHA256: 8e116ed820a0709ec141a002a3552bbf84d3346ac61eab202bb32a1ab9597f50 Description: library to read and write vcard files (development files) Homepage: http://sourceforge.net/projects/vformat/ Description-md5: 7e54a80f8c3a5c26b11c98dae08699d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvformat0 Priority: optional Section: libs Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Preud'homme Architecture: i386 Source: libvformat Version: 1.13-10 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/libv/libvformat/libvformat0_1.13-10_i386.deb Size: 18432 MD5sum: 04ba1ac4b8c2c6e1157187b89f54f6d3 SHA1: c71639ddc2ee4c114d9483f1fad146f183e22da5 SHA256: 4cf6426697eeb8afbcdec86dbadbcaf95cfb9e82724321e66c730e7d3a8ea350 Description: library to read and write vcard files Multi-Arch: same Homepage: http://sourceforge.net/projects/vformat/ Description-md5: 7398badefeade388797e0914e152f878 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libvigraimpex-dev Priority: optional Section: libdevel Installed-Size: 6828 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: libvigraimpex Version: 1.10.0+dfsg-3ubuntu2 Depends: python:any, libvigraimpex5 (= 1.10.0+dfsg-3ubuntu2), libfftw3-dev, libpng12-dev, libjpeg-dev, libtiff5-dev Suggests: libvigraimpex-doc Filename: pool/main/libv/libvigraimpex/libvigraimpex-dev_1.10.0+dfsg-3ubuntu2_i386.deb Size: 1867634 MD5sum: d4b4d845636a4653d2e0706c230739c1 SHA1: 19e60b4478bce800cf53a209461c9da9b59663db SHA256: 3993373bc9b140481b6e214754105c0ed9bac744c8da18e9f77b5807ea0b3556 Description: development files for the C++ computer vision library Homepage: http://hci.iwr.uni-heidelberg.de/vigra/ Description-md5: 06bc1a091777909e5e2ab17ebcd92db0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvigraimpex-doc Priority: optional Section: doc Installed-Size: 40637 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Source: libvigraimpex Version: 1.10.0+dfsg-3ubuntu2 Suggests: libvigraimpex-dev, python-vigra-doc Filename: pool/main/libv/libvigraimpex/libvigraimpex-doc_1.10.0+dfsg-3ubuntu2_all.deb Size: 3419880 MD5sum: efdeb41ff9cc298b4776d3961e67b728 SHA1: 89de5eaa57cad3a248038f1b6e7f202323879523 SHA256: abfedd6dbf35253f7412e3783004c99f1fd9a6febe0088b8c715e7c1bdf3c1e0 Description: Documentation for the C++ computer vision library Homepage: http://hci.iwr.uni-heidelberg.de/vigra/ Description-md5: 68e91538adca7e7262cb997daf253940 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvigraimpex5 Priority: optional Section: libs Installed-Size: 463 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: libvigraimpex Version: 1.10.0+dfsg-3ubuntu2 Depends: libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libilmbase6 (>= 1.0.1), libjpeg8 (>= 8c), libopenexr6 (>= 1.6.1), libpng12-0 (>= 1.2.13-4), libstdc++6 (>= 4.4.0), libtiff5 (>= 4.0.3) Filename: pool/main/libv/libvigraimpex/libvigraimpex5_1.10.0+dfsg-3ubuntu2_i386.deb Size: 131496 MD5sum: 9d122e13ddbf8a7a9f037b4db61e72c7 SHA1: 9345fb0b7965f540405d21d7102cbe762cc7ab19 SHA256: 203e881a6019c951dec3896dedd8d7e7c315b6328441104ac926de8d478de5ae Description: C++ computer vision library Homepage: http://hci.iwr.uni-heidelberg.de/vigra/ Description-md5: 4e10b79b88242227a01907ad6c456723 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvirt-bin Priority: optional Section: devel Installed-Size: 11689 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: libvirt Version: 1.2.2-0ubuntu13 Depends: libapparmor1 (>= 2.6~devel), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libblkid1 (>= 2.17.2), libc6 (>= 2.17), libcap-ng0, libdbus-1-3 (>= 1.1.1), libdevmapper1.02.1 (>= 2:1.02.20), libgnutls26 (>= 2.12.17-0), libnetcf1 (>= 1:0.2.2), libnl-3-200 (>= 3.2.7), libnuma1, libparted0debian1 (>= 2.2-1), libpcap0.8 (>= 1.0.0), libpciaccess0, librados2, librbd1, libreadline6 (>= 6.0), libsasl2-2 (>= 2.1.24), libudev1 (>= 183), libvirt0 (= 1.2.2-0ubuntu13), libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), libxml2 (>= 2.7.4), libyajl2 (>= 2.0.4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), adduser, apparmor (>= 2.8.95~2430-0ubuntu4), bridge-utils, cgroup-lite | cgroup-bin, dnsmasq-base (>= 2.46-1), dbus, gettext-base, iptables (>= 1.4.10), logrotate, netcat-openbsd Recommends: libxml2-utils, gawk, ebtables, dmidecode, iproute, parted, pm-utils Suggests: policykit-1 (>= 0.105-3ubuntu3), qemu-kvm | qemu (>= 0.9.1), radvd Breaks: xen-utils-4.1, xen-utils-4.3 Filename: pool/main/libv/libvirt/libvirt-bin_1.2.2-0ubuntu13_i386.deb Size: 2001276 MD5sum: 941cca3778575336155f7b53fc2e5d36 SHA1: 244f9fc86ad22c949535b33b4eb7f5ee10259c16 SHA256: 56b96aa92f7e2c1065ac3f36e5c3ec75da3bdbf43f3d8e903351c1c6aa725d84 Description: programs for the libvirt library Enhances: qemu, qemu-kvm, xen Homepage: http://libvirt.org Description-md5: e153091b05eb8ed8041905513d4d18ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libvirt-dev Priority: optional Section: devel Installed-Size: 2673 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: libvirt Version: 1.2.2-0ubuntu13 Replaces: libvirt-bin (<< 1.2.0~) Depends: libvirt0 (= 1.2.2-0ubuntu13), libxen-dev Recommends: pkg-config Filename: pool/main/libv/libvirt/libvirt-dev_1.2.2-0ubuntu13_i386.deb Size: 101780 MD5sum: 255c6151261e9a7ff47bb3055390b931 SHA1: 26735dd25ef09f15fe586a06f6b88dd21200c428 SHA256: 95d57681d698d3f992bed1f0b0d8b89e4fc2deed10e5cb5bf11453e326d934f1 Description: development files for the libvirt library Homepage: http://libvirt.org Description-md5: 7e0bab852c890b732dbbdd941dc00165 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvirt-doc Priority: optional Section: devel Installed-Size: 7471 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: all Source: libvirt Version: 1.2.2-0ubuntu13 Suggests: devhelp Filename: pool/main/libv/libvirt/libvirt-doc_1.2.2-0ubuntu13_all.deb Size: 1058132 MD5sum: a36ed6dcb58a5ab842d861296253c6f0 SHA1: ede862afe6c8efcbb8e5db503c9e3c0ae105e7de SHA256: bb02f2bac7a5f22ed8cf3e970c6792ca5042bb75a3e8ededa25e9208f94b6f98 Description: documentation for the libvirt library Homepage: http://libvirt.org Description-md5: 6a786cd039fea1d6785874bfff0aac5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvirt0 Priority: optional Section: devel Installed-Size: 4729 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: libvirt Version: 1.2.2-0ubuntu13 Depends: libapparmor1 (>= 2.6~devel), libaudit1 (>= 1:2.2.1), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.17), libcap-ng0, libdbus-1-3 (>= 1.1.1), libdevmapper1.02.1 (>= 2:1.02.20), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libnl-3-200 (>= 3.2.7), libnuma1, libsasl2-2 (>= 2.1.24), libxml2 (>= 2.7.4), libyajl2 (>= 2.0.4) Suggests: lvm2 Filename: pool/main/libv/libvirt/libvirt0_1.2.2-0ubuntu13_i386.deb Size: 792458 MD5sum: bebf15f25ea6efa6a6772d6d34d4be17 SHA1: d0e6c147a6b21062b4d66885f76fab5ff9190341 SHA256: b97acf0c49018e3fa76bbb2eff1cfb704f713efe71de035565b4cfd3df176cce Description: library for interfacing with different virtualization systems Homepage: http://libvirt.org Description-md5: 048e37ae97123b1566015795d54596dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libvirt0-dbg Priority: optional Section: libs Installed-Size: 28709 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: libvirt Version: 1.2.2-0ubuntu13 Depends: libvirt0 (= 1.2.2-0ubuntu13) Filename: pool/main/libv/libvirt/libvirt0-dbg_1.2.2-0ubuntu13_i386.deb Size: 5901942 MD5sum: ac4f7d21ab60b71e77c1f7bc21c8c0f6 SHA1: 11b682a4b6662f82b13a6081b60979a1d5bf6bee SHA256: 53823c6ee51d584043f068ec241f525703677a756503cacfc1bd8616c42d0a8e Description: library for interfacing with different virtualization systems Homepage: http://libvirt.org Description-md5: 5f02416fd3220b9d10c0d33b4cab8a63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvirtodbc0 Priority: optional Section: database Installed-Size: 2287 Maintainer: Ubuntu Developers Original-Maintainer: José Manuel Santamaría Lema Architecture: i386 Source: virtuoso-opensource Version: 6.1.6+repack-0ubuntu3 Depends: virtuoso-opensource-6.1-common (= 6.1.6+repack-0ubuntu3), odbcinst, libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/v/virtuoso-opensource/libvirtodbc0_6.1.6+repack-0ubuntu3_i386.deb Size: 750548 MD5sum: 32c41119194154282733cca3f23f5fb0 SHA1: 5d8c407a2ecf21f6e9ffe02d12856622f86a7838 SHA256: 60d8282bcfab85090dd6b1cc53d5f7a073eec3137e2cca0588940288725f276e Description: high-performance database - ODBC libraries Homepage: http://virtuoso.openlinksw.com/wiki/main/Main/ Description-md5: c2d290dc0583240b820f00e5be7c1182 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libvisio-0.0-0 Priority: optional Section: libs Installed-Size: 701 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libvisio Version: 0.0.31-1ubuntu2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.6), libwpd-0.9-9, libxml2 (>= 2.7.4), zlib1g (>= 1:1.1.4) Breaks: libvisio-tools (<< 0.0.15~) Filename: pool/main/libv/libvisio/libvisio-0.0-0_0.0.31-1ubuntu2_i386.deb Size: 202878 MD5sum: 3cd727b815ebc4fffa7f8720e5aee5cb SHA1: 852600aa49e480c017d8bad9cceb95b8b116b4b5 SHA256: 1d026aeceba3b7248d4981ed1abe2fe96407b2cd5d8beacc81b744875b375bbd Description: library for parsing the visio file structure Homepage: http://freedesktop.org/wiki/Software/libvisio Description-md5: 3700ded3e846875ca946cbdbd9dceb3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libvisio-dev Priority: optional Section: libdevel Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libvisio Version: 0.0.31-1ubuntu2 Depends: libvisio-0.0-0 (= 0.0.31-1ubuntu2), libwpd-dev (>= 0.9.0), libwpg-dev (>= 0.2.0) Filename: pool/main/libv/libvisio/libvisio-dev_0.0.31-1ubuntu2_i386.deb Size: 2942 MD5sum: b1c3f37e5843211dfc706e9cbe5c259d SHA1: f388f3c24c70c501f2dbfb5c88d6f01dfa302002 SHA256: 9fa3aa54c7fb4db856dbab492a71668f6915a7e134a3e50d18fd17078e728c6a Description: library for parsing the visio file structure -- development Homepage: http://freedesktop.org/wiki/Software/libvisio Description-md5: 45cda1383405664b300506a39d9c1894 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvisio-doc Priority: optional Section: doc Installed-Size: 7001 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libvisio Version: 0.0.31-1ubuntu2 Filename: pool/main/libv/libvisio/libvisio-doc_0.0.31-1ubuntu2_all.deb Size: 357354 MD5sum: 41061ecc0a044cb58f4719667b4eb79f SHA1: 7e472435e1fbb2646d19eb1bb50d88c681216b92 SHA256: 67936eac1f0d12d8930e975a35a7b7a136823ad4d685c25f202936b8c7404274 Description: library for parsing the visio file structure -- documentatio Homepage: http://freedesktop.org/wiki/Software/libvisio Description-md5: 4da0b0dcd8d0a48b32ae67ff56d45a72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvisual-0.4-0 Priority: optional Section: libs Installed-Size: 332 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: libvisual Version: 0.4.0-5 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Recommends: libvisual-0.4-plugins Breaks: libvisual-0.4-plugins (<< 0.4.0.dfsg.1-5) Filename: pool/main/libv/libvisual/libvisual-0.4-0_0.4.0-5_i386.deb Size: 109754 MD5sum: fac4ee20fc075146074bf40ef5d83570 SHA1: 9a3d3700ff7ea4abe5056625967a221c2b003d0f SHA256: 8ba860a487971f9712170be651a8d75c3efb8a628043d1004c5d3f9122e3d336 Description: Audio visualization framework Multi-Arch: same Homepage: http://sourceforge.net/projects/libvisual/ Description-md5: 5688c5d7e0141f6a94a930bb97367833 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvisual-0.4-dev Priority: optional Section: libdevel Installed-Size: 658 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: libvisual Version: 0.4.0-5 Replaces: libvisual0.2-dev Depends: libvisual-0.4-0 (= 0.4.0-5), pkg-config, libc6-dev | libc-dev Filename: pool/main/libv/libvisual/libvisual-0.4-dev_0.4.0-5_i386.deb Size: 169190 MD5sum: 9aa75d8980074c1766b212b1baf36749 SHA1: 21da9cbb0cbdbcb02eb109dd279771e8512c8515 SHA256: 8d0635b7afc2488841908d6e03446c802afa1260a8fb1b17c4b4a56e10b0561d Description: Audio visualization framework (development package) Homepage: http://sourceforge.net/projects/libvisual/ Description-md5: cf5726093c72479e9ba38eb6efbd76af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvisual-0.4-plugins Priority: optional Section: sound Installed-Size: 512 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: libvisual-plugins Version: 0.4.0.dfsg.1-7build1 Replaces: libvisual0.4-plugins Depends: libasound2 (>= 1.0.16), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libglu1-mesa | libglu1, libstdc++6 (>= 4.1.1), libvisual-0.4-0 (>= 0.4.0-4) Conflicts: libvisual0.4-plugins Filename: pool/main/libv/libvisual-plugins/libvisual-0.4-plugins_0.4.0.dfsg.1-7build1_i386.deb Size: 126268 MD5sum: 27024096839dfa7e3db3da8d429c6b44 SHA1: 1a58793eb564f5fd71adfc1f0c658fc36dc6f2f9 SHA256: 6a438282d24a76d37769ccc1e5e88bf835386440035cfd485e6d8d7a81d5e1dc Description: Audio visualization framework plugins Multi-Arch: same Description-md5: a4f9fac9fc7a81e2f0e649f9c307934c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvncserver-config Priority: optional Section: libdevel Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: i386 Source: libvncserver Version: 0.9.9+dfsg-1ubuntu1 Replaces: libvncserver-dev (<< 0.9.9) Depends: libvncserver0 (= 0.9.9+dfsg-1ubuntu1) Breaks: libvncserver-dev (<< 0.9.9) Filename: pool/main/libv/libvncserver/libvncserver-config_0.9.9+dfsg-1ubuntu1_i386.deb Size: 5188 MD5sum: 22ac04c9c162976496e769f219cec3c2 SHA1: 38ce1e0bc3dd44d23235554a420cb173c76e9999 SHA256: 9927fc73d6b162353bc02791d028edb082ded498352806d221f3ec2823a26dbf Description: API to write one's own vnc server - library utility Multi-Arch: foreign Homepage: http://libvncserver.sourceforge.net Description-md5: 3ed83f92d890152c3bb4e698120160b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvncserver-dev Priority: optional Section: x11 Installed-Size: 748 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: i386 Source: libvncserver Version: 0.9.9+dfsg-1ubuntu1 Depends: libvncserver0 (= 0.9.9+dfsg-1ubuntu1), libgnutls-dev, libjpeg-dev, zlib1g-dev, libvncserver-config Filename: pool/main/libv/libvncserver/libvncserver-dev_0.9.9+dfsg-1ubuntu1_i386.deb Size: 192118 MD5sum: 545818d423a9f7337ffa3225794eed2b SHA1: aff506f48a0bb55a9fbf2b3753e4e5a4b68591d6 SHA256: 2d0eff9bfc8b866d156f5ac3c9e5b349dc71c34f26f134039941a472c5a418e0 Description: API to write one's own vnc server - development files Multi-Arch: same Homepage: http://libvncserver.sourceforge.net Description-md5: bcc0abadd91abbb78a47d71e59feba5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvncserver0 Priority: optional Section: libs Installed-Size: 469 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: i386 Source: libvncserver Version: 0.9.9+dfsg-1ubuntu1 Depends: libc6 (>= 2.15), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), libjpeg8 (>= 8c), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Suggests: libvncserver0-dbg (= 0.9.9+dfsg-1ubuntu1) Filename: pool/main/libv/libvncserver/libvncserver0_0.9.9+dfsg-1ubuntu1_i386.deb Size: 164006 MD5sum: fa5b325dde8d68a10cea1f28a9187090 SHA1: e509610a6c38d8bb4ac0111cba5fdffc6780372a SHA256: 66735ed22e299957d35513e406eb23fac58f71c93971e5d75fff71e7e9193c18 Description: API to write one's own vnc server Multi-Arch: same Homepage: http://libvncserver.sourceforge.net Description-md5: 6bd9f2d870ec44b35d09bc72b386e7f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb Package: libvncserver0-dbg Priority: optional Section: libdevel Installed-Size: 552 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: i386 Source: libvncserver Version: 0.9.9+dfsg-1ubuntu1 Depends: libvncserver0 (= 0.9.9+dfsg-1ubuntu1) Filename: pool/main/libv/libvncserver/libvncserver0-dbg_0.9.9+dfsg-1ubuntu1_i386.deb Size: 458976 MD5sum: 25bdeef493f6a3fa108ccac9c522d81f SHA1: 2dec7c983d9286d548fffd7d318d58201e01e7f0 SHA256: 6736311ad77f0c28dbb93337502e7f23a4f78bd01a2360267398c5a4e5d15a05 Description: debugging symbols for libvncserver Multi-Arch: same Homepage: http://libvncserver.sourceforge.net Description-md5: ef17283c2d5c13223e281d0500b90179 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvoikko-dev Priority: optional Section: libdevel Installed-Size: 911 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: i386 Source: libvoikko Version: 3.7-2ubuntu2 Depends: libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), libvoikko1 (= 3.7-2ubuntu2) Filename: pool/main/libv/libvoikko/libvoikko-dev_3.7-2ubuntu2_i386.deb Size: 152370 MD5sum: 047d82ffcebcd8776298bf6e560763ad SHA1: ebf6e4f00f9e5976b32eea4191f4d0a52e0ba4b7 SHA256: d55badbb10b80788c659d0bf357d32b2bbd03cda9ec0afddac34ac6f4e0e72be Description: Development files for libvoikko Multi-Arch: foreign Homepage: http://voikko.puimula.org/ Description-md5: 796da2e8d2fad015742b56c77797d845 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvoikko1 Priority: optional Section: libs Installed-Size: 323 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: i386 Source: libvoikko Version: 3.7-2ubuntu2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Suggests: voikko-fi Breaks: voikko-fi (<< 1.4-1) Filename: pool/main/libv/libvoikko/libvoikko1_3.7-2ubuntu2_i386.deb Size: 94586 MD5sum: 744a0925444ce041078d65d12cbec4e5 SHA1: 327c575055b6a9d203c8c7c8f3315161ba1b335b SHA256: c16bf043ea7c786462d68982ca9da7bdad6a4996c3cdce000796477c9a0bd721 Description: Library of free natural language processing tools Multi-Arch: same Homepage: http://voikko.puimula.org/ Description-md5: 26999e76e10b7ce0f7ddc8469d4cbece Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libvorbis-dbg Priority: extra Section: debug Installed-Size: 360 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: i386 Source: libvorbis Version: 1.3.2-1.3ubuntu1 Depends: libvorbis0a (= 1.3.2-1.3ubuntu1), libvorbisenc2 (= 1.3.2-1.3ubuntu1), libvorbisfile3 (= 1.3.2-1.3ubuntu1) Filename: pool/main/libv/libvorbis/libvorbis-dbg_1.3.2-1.3ubuntu1_i386.deb Size: 214796 MD5sum: 9742f49a7c72a15f310793222beba5c8 SHA1: f7898fe3db590d59a889100dd4f61f07b53f3f2f SHA256: d1c48aa41002cd0fa3e6e22bea6778e38ee51e59085cf04d076799386eb9dd15 Description: The Vorbis General Audio Compression Codec (debug files) Multi-Arch: same Description-md5: f55111bc0079c5fbc34b4ff2065ef3e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvorbis-dev Priority: optional Section: libdevel Installed-Size: 2444 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: i386 Source: libvorbis Version: 1.3.2-1.3ubuntu1 Depends: libogg-dev, libvorbis0a (= 1.3.2-1.3ubuntu1), libvorbisenc2 (= 1.3.2-1.3ubuntu1), libvorbisfile3 (= 1.3.2-1.3ubuntu1) Filename: pool/main/libv/libvorbis/libvorbis-dev_1.3.2-1.3ubuntu1_i386.deb Size: 335590 MD5sum: f2ef057e2610cb46a13675166991600b SHA1: 7440f3a465baa9d36a4fe6047e1ed5db6d5453ed SHA256: d62b8d60f1668695d653e2b29eeb479dd2565abe3e704d13e3681922fd6bc250 Description: The Vorbis General Audio Compression Codec (development files) Multi-Arch: same Description-md5: 1e5436498bf30a5ecdc4b8b06ee9e234 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvorbis0a Priority: optional Section: libs Installed-Size: 222 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: i386 Source: libvorbis Version: 1.3.2-1.3ubuntu1 Replaces: libvorbis0 Depends: libc6 (>= 2.15), libogg0 (>= 1.1.0) Pre-Depends: multiarch-support Conflicts: libvorbis0 Filename: pool/main/libv/libvorbis/libvorbis0a_1.3.2-1.3ubuntu1_i386.deb Size: 83068 MD5sum: f07c4da310af535a5c5a8c0a85bc42cd SHA1: 882dac45808e41d3b3a06fc9c586ed80baaad010 SHA256: 5c75d04c66f9c90c4f8acf213dd984a3c800b519ce5c3b52abfd91c85c3d95f8 Description: The Vorbis General Audio Compression Codec (Decoder library) Multi-Arch: same Description-md5: 6654693e7c0426a429fc7b087078be25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libvorbisenc2 Priority: optional Section: libs Installed-Size: 1537 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: i386 Source: libvorbis Version: 1.3.2-1.3ubuntu1 Replaces: libvorbis0 (<< 1.0.0) Depends: libc6 (>= 2.1.3), libvorbis0a (= 1.3.2-1.3ubuntu1) Pre-Depends: multiarch-support Conflicts: libvorbis0 (<< 1.0.0) Filename: pool/main/libv/libvorbis/libvorbisenc2_1.3.2-1.3ubuntu1_i386.deb Size: 66914 MD5sum: bdce4a658d5bc80a9415c20706a26a90 SHA1: 019a5d816a9cd60c643da482dbb548d232aebcb0 SHA256: 21bd8197d46f4477184d6e35f6432e77b39455b584c1af214c377bb0d998a197 Description: The Vorbis General Audio Compression Codec (Encoder library) Multi-Arch: same Description-md5: 1a89bc346659676d4031bed67567e740 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-video, ubuntustudio-audio, ubuntu-gnome-desktop Package: libvorbisfile3 Priority: optional Section: libs Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: i386 Source: libvorbis Version: 1.3.2-1.3ubuntu1 Replaces: libvorbis0 (<< 1.0.0) Depends: libc6 (>= 2.4), libogg0 (>= 1.1.0), libvorbis0a (= 1.3.2-1.3ubuntu1) Pre-Depends: multiarch-support Conflicts: libvorbis0 (<< 1.0.0) Filename: pool/main/libv/libvorbis/libvorbisfile3_1.3.2-1.3ubuntu1_i386.deb Size: 17498 MD5sum: d67c8d6757b933a794a4eeb1816b6437 SHA1: a5f2199b0d0c9660cb7265d8b4685a0ade53f7ff SHA256: b58eaafdbd01e432144a859b52d867f49a34347bc4ad3b9cb1489239235799e1 Description: The Vorbis General Audio Compression Codec (High Level API) Multi-Arch: same Description-md5: d512c46682a0895a2f669a6caaec3bbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvotequorum-dev Priority: optional Section: libdevel Installed-Size: 357 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Depends: libvotequorum6 (= 2.3.3-1ubuntu1) Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync-dev (<= 1.4.2-1) Filename: pool/main/c/corosync/libvotequorum-dev_2.3.3-1ubuntu1_i386.deb Size: 45660 MD5sum: 37f79350723d0275e717b729416576af SHA1: 67b503a0e7a0e370a5c36a45a99520f363510341 SHA256: 7634e806457c6ef35507348ff0bafdac82e0f40b61bc05485f3f1d20a07e524b Description: Standards-based cluster framework, VoteQuorum devel files Description-md5: 655dd47a75c0132274ee08450ae0223c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvotequorum6 Priority: optional Section: libs Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: corosync Version: 2.3.3-1ubuntu1 Replaces: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1), libvotequorum5 Depends: libc6 (>= 2.4), libcorosync-common4 (>= 2.3.3), libqb0 Conflicts: corosync (<< 1.99.9-1), corosync-dev (<< 1.99.9-1), libcorosync4 (<= 1.4.2-1), libvotequorum5 Filename: pool/main/c/corosync/libvotequorum6_2.3.3-1ubuntu1_i386.deb Size: 7692 MD5sum: ed9d8a7c3217d8ccd1edd588a9808cc3 SHA1: afda0a421f19ad918e4c551bfba7cd24edb014d2 SHA256: 2cbbb3aaa237a7ae97cecb4e755abd928f4edcd5e4d0d5531c918a6fc03a4768 Description: Standards-based cluster framework, Votequorum library Description-md5: f874501f774adb114ef9f6f908c91fb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libvpx-dev Priority: optional Section: libdevel Installed-Size: 2359 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: i386 Source: libvpx Version: 1.3.0-2 Depends: libvpx1 (= 1.3.0-2) Filename: pool/main/libv/libvpx/libvpx-dev_1.3.0-2_i386.deb Size: 606526 MD5sum: a0d53ec98a4139d9ce2a5f0cff310a29 SHA1: a579f004b6dd61182faa4a2df361909ca89e1363 SHA256: 85d2e868107f9cc8f37566eefbb9d18e11c9374457895849fc5544a03aed6a60 Description: VP8 video codec (development files) Multi-Arch: same Homepage: http://www.webmproject.org Description-md5: af31d9d4be1e5af2d6a6fa1e4570c8f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvpx-doc Priority: optional Section: doc Installed-Size: 2532 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: all Source: libvpx Version: 1.3.0-2 Recommends: lynx | www-browser Filename: pool/main/libv/libvpx/libvpx-doc_1.3.0-2_all.deb Size: 173684 MD5sum: f2e40e3910e31551e8e2693500f39745 SHA1: 4eacc1dfdb810e9cdd9cad7a75ac2d40f219a9ac SHA256: e9818c26f483c82dd589921d27592e86045e5d8f8a2882614f4b1f53f18fdc21 Description: VP8 video codec (API documentation) Homepage: http://www.webmproject.org Description-md5: cf052a38d5488e3ec5f2ac972023595e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvpx1 Priority: optional Section: libs Installed-Size: 1651 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: i386 Source: libvpx Version: 1.3.0-2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libv/libvpx/libvpx1_1.3.0-2_i386.deb Size: 517606 MD5sum: 50cab1d7775cf43b96316c820f835888 SHA1: 529b4c2a57c48cd11e174d95c89e13b21e7e0cf7 SHA256: d662656550232a77a0f6ec528c075e52de641643c1af4ca67c7795c74094c762 Description: VP8 video codec (shared library) Multi-Arch: same Homepage: http://www.webmproject.org Description-md5: acfa0dac3544e3c99895d8e3d593e4a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvpx1-dbg Priority: extra Section: debug Installed-Size: 5379 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: i386 Source: libvpx Version: 1.3.0-2 Depends: libvpx1 (= 1.3.0-2) Filename: pool/main/libv/libvpx/libvpx1-dbg_1.3.0-2_i386.deb Size: 1408188 MD5sum: 593f04345395dd0a8db72855b9122321 SHA1: e0a102d691554a39503718687fe2dae99b4ed910 SHA256: 6b7bbf5aaf3d7a97098ac1c02b3b378d860d74e2d4db4f1abd6e981bfedabf76 Description: VP8 video codec (debugging symbols) Homepage: http://www.webmproject.org Description-md5: af60ebe3820acadb0b3967f573dc9e41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvte-2.90-9 Priority: optional Section: libs Installed-Size: 1076 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: vte3 Version: 1:0.34.9-1ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.1.9), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.22.0), libtinfo5, libx11-6, libvte-2.90-common (= 1:0.34.9-1ubuntu1) Filename: pool/main/v/vte3/libvte-2.90-9_0.34.9-1ubuntu1_i386.deb Size: 263800 MD5sum: 16170b5b027be2a8b7366da1142cdba2 SHA1: a435e23d913c59a152ca97c0e0fcfeb94d00c14e SHA256: 4c850b4f4a906703c748d3945ad9bf62f96f806eca0c8d7f0dda425318b81b3f Description: Terminal emulator widget for GTK+ 3.0 - runtime files Description-md5: 37146e51633ed1d1b52a3fe36e5f1847 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvte-2.90-common Priority: optional Section: libs Installed-Size: 464 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: vte3 Version: 1:0.34.9-1ubuntu1 Replaces: libvte-common (<< 1:0.28.2-2) Breaks: libvte-common (<< 1:0.28.2-2), libvte9 (<< 1:0.28) Filename: pool/main/v/vte3/libvte-2.90-common_0.34.9-1ubuntu1_all.deb Size: 24030 MD5sum: 20599b3cd3e3085d1f84fdc81982d7ac SHA1: 8c1638154bef1d09955e401a485efbe79b63f735 SHA256: 758797e295da3b2c066353741c2678720e81d4ce4b1710392c4d041492f7e0ca Description: Terminal emulator widget for GTK+ 3.0 - common files Description-md5: e46736e97ac160c1b4a611fa65b46391 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libvte-2.90-dev Priority: optional Section: libdevel Installed-Size: 1407 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: vte3 Version: 1:0.34.9-1ubuntu1 Replaces: libvte-2.90-common (<< 1:0.30.1-4) Depends: libvte-2.90-9 (= 1:0.34.9-1ubuntu1), gir1.2-vte-2.90 (= 1:0.34.9-1ubuntu1), libcairo2-dev, libx11-dev, libgtk-3-dev (>= 3.0.0), libpango1.0-dev (>= 1.22.0), libglib2.0-dev (>= 2.22.0), libvte-2.90-common Recommends: libvte-2.90-doc Breaks: libvte-2.90-common (<< 1:0.30.1-4) Filename: pool/main/v/vte3/libvte-2.90-dev_0.34.9-1ubuntu1_i386.deb Size: 265082 MD5sum: 561618e0158cc1d69146391d47a8fb46 SHA1: 89b6cf05a86616b8507ac23b5c41e48f673f6974 SHA256: 9ca529fb38d9a188066ea5b6a16f00d252499a36ba95947122937548cf7edb51 Description: Terminal emulator widget for GTK+ 3.0 - development files Description-md5: c01f512a615de9ecef77cc50f3e492b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvte-2.90-doc Priority: optional Section: doc Installed-Size: 1010 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: vte3 Version: 1:0.34.9-1ubuntu1 Replaces: libvte-doc (<< 1:0.28.2-2) Breaks: libvte-doc (<< 1:0.28.2-2) Filename: pool/main/v/vte3/libvte-2.90-doc_0.34.9-1ubuntu1_all.deb Size: 60004 MD5sum: 51dabd44f747b20d2fcef53ac9c7eabf SHA1: 670e8f03ddd8ea63798aef81183ac5b41c920cb6 SHA256: cc8f25f4d6619ab2b2725861faae9011307849ff4fee88e64366e2cca10b8d1a Description: Terminal emulator widget for GTK+ 3.0 - documentation Description-md5: 367ace14cac02a91e563df79ebe34e7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvte-common Priority: optional Section: libs Installed-Size: 432 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: vte Version: 1:0.28.2-5ubuntu1 Breaks: libvte9 (<< 1:0.28) Filename: pool/main/v/vte/libvte-common_0.28.2-5ubuntu1_all.deb Size: 22802 MD5sum: 3a520ed4b321451eee82c79eb7610073 SHA1: e9aed60e973e9b9591fe30d80de4372198c4f33f SHA256: 5d1176e676a58007a4a1d5b23d01d69c378779bd3f86b7422ea6c67ba969e8d6 Description: Terminal emulator widget for GTK+ 2.x - common files Description-md5: 6aed355fd259c53d48d4fb26cb875757 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop Package: libvte-dev Priority: optional Section: libdevel Installed-Size: 1198 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: vte Version: 1:0.28.2-5ubuntu1 Provides: python-vte-dev Depends: libvte9 (= 1:0.28.2-5ubuntu1), libcairo2-dev, libx11-dev, libgtk2.0-dev (>= 2.20.0), libpango1.0-dev (>= 1.22.0), libglib2.0-dev (>= 2.26.0), libvte-common Recommends: libvte-doc Filename: pool/main/v/vte/libvte-dev_0.28.2-5ubuntu1_i386.deb Size: 376526 MD5sum: 69d1c02869de2f2574ec4039e771f14e SHA1: 05b97b88e1c96ee158bc99486053b5b6d6be5435 SHA256: eddb4b7a478a42dc4de0f1dbd8b9719da39426f3a5c8e78c1426a3d4269a9f76 Description: Terminal emulator widget for GTK+ 2.0 - development files Description-md5: 3ac01fe797ba9bcce5eff4b4f02669c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvte-doc Priority: optional Section: doc Installed-Size: 986 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: vte Version: 1:0.28.2-5ubuntu1 Filename: pool/main/v/vte/libvte-doc_0.28.2-5ubuntu1_all.deb Size: 80206 MD5sum: fcb560978ccf8ded8b9a9cbf4ab75882 SHA1: 782ab65ac076bfa635d5e0de96f230f4f6aea123 SHA256: dc39b0746cdf50a0bdc5e96b59f167c9adaebbea6a034eb9b30c9983dabe5859 Description: Terminal emulator widget for GTK+ 2.x - documentation Description-md5: f9d1581751cce77a967de63964312153 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libvte9 Priority: optional Section: libs Installed-Size: 1043 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: vte Version: 1:0.28.2-5ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.8), libgtk2.0-0 (>= 2.24.0), libpango1.0-0 (>= 1.22.0), libtinfo5, libx11-6, libvte-common (= 1:0.28.2-5ubuntu1) Filename: pool/main/v/vte/libvte9_0.28.2-5ubuntu1_i386.deb Size: 372232 MD5sum: 81a652de646a095622cf17cdc7dcc9d1 SHA1: 3b2db8a529b6f552997b5c5ed6676cca951e4763 SHA256: 11a531a051a6170ad57a588c05df574897d84a3406d5e9a64813403eaea6e649 Description: Terminal emulator widget for GTK+ 2.0 - runtime files Description-md5: a66b0bf9cd96b4ebd5d15c2b64460cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop Package: libwacom-common Priority: optional Section: libs Installed-Size: 237 Maintainer: Timo Aaltonen Architecture: all Source: libwacom Version: 0.8-1 Replaces: libwacom0 (<= 0.2-1) Filename: pool/main/libw/libwacom/libwacom-common_0.8-1_all.deb Size: 26474 MD5sum: f115d9ccfb977f82424d94aa15dc6b32 SHA1: f71db67df81443cc18f2932a2d4353d0b32babb9 SHA256: 18d7c0f750bbf6f31676db9dab6ba7a84efdd850f8b3eec70adf8f788d8ea5ba Description: Wacom model feature query library (common files) Multi-Arch: foreign Description-md5: 8d2491c268d1d8dd27f6b2869929bbc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libwacom-dev Priority: optional Section: libdevel Installed-Size: 188 Maintainer: Timo Aaltonen Architecture: i386 Source: libwacom Version: 0.8-1 Depends: libwacom2 (= 0.8-1), libglib2.0-dev Recommends: pkg-config Filename: pool/main/libw/libwacom/libwacom-dev_0.8-1_i386.deb Size: 56438 MD5sum: 6f645de3ecdb73a5d761e78ad1c06b51 SHA1: bf2c3c3b79f9b7c61598ede0c41131f55a2bde7d SHA256: 1f4c5a5d2d3727878ad5190f418135fd0888a2928b7cad676fe7f22e3f446d46 Description: Wacom model feature query library (development files) Description-md5: f985aecfd750b7a49c77435947873b61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwacom2 Priority: optional Section: libs Installed-Size: 71 Maintainer: Timo Aaltonen Architecture: i386 Source: libwacom Version: 0.8-1 Depends: libc6 (>= 2.8), libglib2.0-0 (>= 2.24.0), libgudev-1.0-0 (>= 146), libwacom-common (= 0.8-1) Pre-Depends: multiarch-support Filename: pool/main/libw/libwacom/libwacom2_0.8-1_i386.deb Size: 18090 MD5sum: a1bee13b15c96e1d3ddefce88866a6db SHA1: b39672dbf7bc76d03e8c124d69f767a0aeecac70 SHA256: a7a21f472ef5f654ff259cddfde61c4f95b7933f4beb3ef4a661805be091cb8c Description: Wacom model feature query library Multi-Arch: same Description-md5: 0c6f32ac5eff730b48890972fd898ae5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libwacom2-dbg Priority: extra Section: debug Installed-Size: 78 Maintainer: Timo Aaltonen Architecture: i386 Source: libwacom Version: 0.8-1 Depends: libwacom2 (= 0.8-1) Filename: pool/main/libw/libwacom/libwacom2-dbg_0.8-1_i386.deb Size: 32610 MD5sum: ce1f902f9cea27f2d89d4a6b3ec2763f SHA1: 181cbd9449cb9d46f76126624fc481ca44108748 SHA256: a369d805f89764cd9c91c48687e98ba1d3df62a115460bc0d8f8f4142d0296fd Description: Wacom model feature query library (debug files) Multi-Arch: same Description-md5: 0a719820cf688cbe19b3d111c9db990a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwavpack-dev Priority: optional Section: libdevel Installed-Size: 251 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: wavpack Version: 4.70.0-1 Depends: libwavpack1 (= 4.70.0-1) Filename: pool/main/w/wavpack/libwavpack-dev_4.70.0-1_i386.deb Size: 93212 MD5sum: 5719420e3688dd1e28a899de39c3f263 SHA1: 80f63b557c1f935c202cf6d486f661b7d7e71690 SHA256: ffba27a5218914e5a2d9b3679622bd778275101c91acecbd578804c494380aea Description: audio codec (lossy and lossless) - development files Multi-Arch: same Homepage: http://www.wavpack.com Description-md5: 8a3391abdd6b78ba409f73dfafadd6b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwavpack1 Priority: optional Section: libs Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Source: wavpack Version: 4.70.0-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/w/wavpack/libwavpack1_4.70.0-1_i386.deb Size: 84400 MD5sum: a5adb1cb39b2361dec3856b546c42ce3 SHA1: 7580bd543ddc98708ff086ae38cb4c2b446f6d9a SHA256: 6b2d62dbddba5749422deece34d6e8983f398c75d510afbbbf60d9ddd3af0d25 Description: audio codec (lossy and lossless) - library Multi-Arch: same Homepage: http://www.wavpack.com Description-md5: b32145b84a96076395ce910d6a667a64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwayland-client0 Priority: optional Section: libs Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: wayland Version: 1.4.0-1ubuntu1 Replaces: libwayland0 (<< 1.1.0-1) Depends: libc6 (>= 2.10), libffi6 (>= 3.0.4) Pre-Depends: multiarch-support Conflicts: libwayland0 (<< 1.1.0-1) Filename: pool/main/w/wayland/libwayland-client0_1.4.0-1ubuntu1_i386.deb Size: 20884 MD5sum: f80efbdc3d0f41613c16e8fe8953cb63 SHA1: ffc34219973deb786862785adf3aca897d09093d SHA256: 2929f4434eddce5f811c4c7331ebd594c3bb334ce54799e45370c8ce60031486 Description: wayland compositor infrastructure - client library Multi-Arch: same Homepage: http://wayland.freedesktop.org/ Description-md5: 3ba4c2bc4efd026f8d9a8404817c3664 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwayland-client0-dbg Priority: extra Section: debug Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: wayland Version: 1.4.0-1ubuntu1 Depends: libwayland-client0 (= 1.4.0-1ubuntu1) Filename: pool/main/w/wayland/libwayland-client0-dbg_1.4.0-1ubuntu1_i386.deb Size: 40232 MD5sum: 42e0b993a65e5cccf1cc7f9449cadd18 SHA1: ab2ca59c36d313e4075329053fc45ca0bd1913f3 SHA256: 5cef8935f60e147535263e77f7c635ccdc47945b50a0367ec8c39bddeb2ab5bf Description: wayland compositor infrastructure - client library (debug) Homepage: http://wayland.freedesktop.org/ Description-md5: 4cdbc35dd6676e658cb7b6f5b2701619 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-cursor0 Priority: optional Section: libs Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: wayland Version: 1.4.0-1ubuntu1 Replaces: libwayland0 (<< 1.1.0-1) Depends: libc6 (>= 2.7), libwayland-client0 (>= 1.3.92) Pre-Depends: multiarch-support Conflicts: libwayland0 (<< 1.1.0-1) Filename: pool/main/w/wayland/libwayland-cursor0_1.4.0-1ubuntu1_i386.deb Size: 9812 MD5sum: 116509d4428393f7d51786b778d106aa SHA1: fa758034d9b730a75a0854ffcb78902fe4f67560 SHA256: 93b00294d9acc101e8ac4fb7a6d32b3576a4d241182a2f702883da58ca6bc48f Description: wayland compositor infrastructure - cursor library Multi-Arch: same Homepage: http://wayland.freedesktop.org/ Description-md5: 5e6c3503f9ce1b6eeb852b17a3957f79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwayland-cursor0-dbg Priority: extra Section: debug Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: wayland Version: 1.4.0-1ubuntu1 Depends: libwayland-cursor0 (= 1.4.0-1ubuntu1) Filename: pool/main/w/wayland/libwayland-cursor0-dbg_1.4.0-1ubuntu1_i386.deb Size: 21190 MD5sum: 1169b31e07efad1f2a75df9033a8a1d7 SHA1: 10571f42511b3b69ece6050d63fc3f4b4eca090d SHA256: d60932847818b988b4b8ae187979f0ff416daf2fff957df1399034edb4bd3ac8 Description: wayland compositor infrastructure - cursor library (debug) Homepage: http://wayland.freedesktop.org/ Description-md5: 4145ef9671f63a48f112fe4eb6113b5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-dev Priority: extra Section: libdevel Installed-Size: 532 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: wayland Version: 1.4.0-1ubuntu1 Depends: libwayland-client0 (= 1.4.0-1ubuntu1), libwayland-server0 (= 1.4.0-1ubuntu1), libwayland-cursor0 (= 1.4.0-1ubuntu1), libc6 (>= 2.4), libexpat1 (>= 2.0.1) Filename: pool/main/w/wayland/libwayland-dev_1.4.0-1ubuntu1_i386.deb Size: 101994 MD5sum: dc5818071db8f7e744d9c01bdcd11b12 SHA1: b9fc9fe2b90998504dc2a5a238d1815ae99fc65a SHA256: 161f29739ad2d656938b1932e6a0db2d8a8601aa89c4e33b423a56cd9a835edf Description: wayland compositor infrastructure - development files Homepage: http://wayland.freedesktop.org/ Description-md5: b6a54f87f98181416660d9c2f8532325 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libwayland-dev Filename: pool/main/x/xorg-lts-transitional/libwayland-dev-lts-quantal_5_i386.deb Size: 1546 MD5sum: a089f5942f783253949843cef37f00b3 SHA1: 9f6d8c52205fa1582054ed13394937edf5fc504e SHA256: 7e287008019019dca914a237d911ca46205835c8e39005baccfe0133c62804af Description: Transitional package for libwayland-dev Multi-Arch: same Description-md5: 03bac47292950f283d07aa396201656a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libwayland-dev Filename: pool/main/x/xorg-lts-transitional/libwayland-dev-lts-raring_5_i386.deb Size: 1540 MD5sum: 22b9aee1238b53209cec822f978e8742 SHA1: b49b144de694e43be8813e174c0da76b24e9be34 SHA256: 39e84da67227c3a42e6b68bb4f8ac810a40fc2daea8e644ea453a6040cb1624e Description: Transitional package for libwayland-dev Multi-Arch: same Description-md5: 03bac47292950f283d07aa396201656a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libwayland-dev Filename: pool/main/x/xorg-lts-transitional/libwayland-dev-lts-saucy_5_i386.deb Size: 1540 MD5sum: d06b1c07175b8435127b1defed1f5b71 SHA1: 46d94a2397dde0baddb451e17a33343d89501568 SHA256: cdf7ae52cfda6437cf8d3109cd7fd9fe18ab6397c2efbbd31bf77a11452cbf78 Description: Transitional package for libwayland-dev Multi-Arch: same Description-md5: 03bac47292950f283d07aa396201656a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-egl1-mesa Priority: optional Section: libs Installed-Size: 89 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libegl1-mesa-drivers (<< 10.1.0-2), libwayland-egl1 Provides: libwayland-egl1 Depends: libc6 (>= 2.1.3), libegl1-mesa (= 10.1.0-4ubuntu5) Pre-Depends: multiarch-support Recommends: libegl1-mesa-drivers Conflicts: libwayland-egl1 Breaks: libegl1-mesa-drivers (<< 10.1.0-2) Filename: pool/main/m/mesa/libwayland-egl1-mesa_10.1.0-4ubuntu5_i386.deb Size: 6502 MD5sum: b109ce297a910fc08c15d60533d8362a SHA1: 914757bd6558d5b507511ee1b79ae08be18b4d88 SHA256: 4d46b8e01e6037ee08638250b8c052b493a2ac12b3f02662ee02bb3dbb12a725 Description: implementation of the Wayland EGL platform -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 2aac0a30c09ae3fa55df222fecf9d1cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwayland-egl1-mesa-dbg Priority: extra Section: debug Installed-Size: 102 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libwayland-egl1-mesa (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libwayland-egl1-mesa-dbg_10.1.0-4ubuntu5_i386.deb Size: 6950 MD5sum: fbbb6a36c7499e79ba701f61b459aedd SHA1: fffa12d10d250838c5862abfe69ee60613c273b0 SHA256: c9688e52a1a34898685b7c1ff8a6449f728ebf596fd240c990d9d7321b952a01 Description: implementation of the Wayland EGL platform -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 3248903aa57a9e154e8eee50cccc8b85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland-server0 Priority: optional Section: libs Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: wayland Version: 1.4.0-1ubuntu1 Replaces: libwayland0 (<< 1.1.0-1) Depends: libc6 (>= 2.10), libffi6 (>= 3.0.4) Pre-Depends: multiarch-support Conflicts: libwayland0 (<< 1.1.0-1) Breaks: weston (<< 1.2.0) Filename: pool/main/w/wayland/libwayland-server0_1.4.0-1ubuntu1_i386.deb Size: 25862 MD5sum: 0185bb5ad643eddf432b5c9c96cf2c11 SHA1: bc5910ae521b90f8651bfc849a6559d5daa99a4b SHA256: 9542945d09689d91cb9da532f7018de430f27f6192fb2f32479996c26894bc63 Description: wayland compositor infrastructure - server library Multi-Arch: same Homepage: http://wayland.freedesktop.org/ Description-md5: d12a42711d448b23b1fb5d101345af87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwayland-server0-dbg Priority: extra Section: debug Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: wayland Version: 1.4.0-1ubuntu1 Depends: libwayland-server0 (= 1.4.0-1ubuntu1) Filename: pool/main/w/wayland/libwayland-server0-dbg_1.4.0-1ubuntu1_i386.deb Size: 53340 MD5sum: 5835559c44d763d7afdf92889690a010 SHA1: f80ee0fd244276ad4d1a92f199bd68870ff58677 SHA256: 0ef2a1ab0a21c5e542d5aad6c8b580cc1e85dc63e934f73a01d1bec60a39e0bf Description: wayland compositor infrastructure - server library (debug) Homepage: http://wayland.freedesktop.org/ Description-md5: 86ee0539a5b4e50196097470aaadfc2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwayland0 Priority: extra Section: oldlibs Installed-Size: 28 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: wayland Version: 1.4.0-1ubuntu1 Depends: libwayland-client0, libwayland-server0 Filename: pool/main/w/wayland/libwayland0_1.4.0-1ubuntu1_all.deb Size: 1872 MD5sum: 21f2d4fef6ab7018752261645b023488 SHA1: 59aec8db2d89519d6566e1d4b674e297d01791a8 SHA256: 13621162efeec6385130076bf5563107f3eb1fbe8097757d3d92ee0e5ac15d3b Description: transitional dummy package Homepage: http://wayland.freedesktop.org/ Description-md5: 6a750ea90f7da4e8cb1e7e4b134380d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwbclient-dev Priority: optional Section: libdevel Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: libwbclient0 (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/samba/libwbclient-dev_4.1.6+dfsg-1ubuntu2_i386.deb Size: 13710 MD5sum: 7b08495282c8ea3161ccbcc5292a45da SHA1: 7a48f190014f349072bfaea517bd2aa6093b2079 SHA256: 75e9f851ce10e1f9db29b49e4bd8fe7195efee211c0a2a4346b0c9e25a8bca08 Description: Samba winbind client library - development files Multi-Arch: same Homepage: http://www.samba.org Description-md5: 2fd42f0ef62fe1cc8cfee6fb03d4b884 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwbclient0 Priority: optional Section: libs Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: likewise-open (<< 4.1.0.2956) Depends: libbsd0 (>= 0.0), libc6 (>= 2.8) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Conflicts: likewise-open (<< 4.1.0.2956) Breaks: libpam-smbpass (<< 2:3.4.1), libsmbclient (<< 2:3.4.1), samba (<< 2:3.4.1), samba-common (<< 2:3.4.1), samba-tools (<< 2:3.4.1), smbclient (<< 2:3.4.1), smbfs (<< 2:3.4.1), swat (<< 2:3.4.1), winbind (<< 2:3.4.1) Filename: pool/main/s/samba/libwbclient0_4.1.6+dfsg-1ubuntu2_i386.deb Size: 28102 MD5sum: d5b8d3bbaabca0e64102976b919115d9 SHA1: 5238777508dda142e72624b1ec22272788354470 SHA256: 1cf7dd29e41e9c9d8d77116421042c15666c8d9fc68c516ece71eab65ec4baec Description: Samba winbind client library Multi-Arch: same Homepage: http://www.samba.org Description-md5: 16c935b1d482f634b3879c2495e04db8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwebkit-cil-dev Priority: optional Section: libdevel Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: webkit-sharp Version: 0.3-6 Replaces: libwebkit1.0-cil (<< 0.3) Depends: libwebkit1.1-cil (= 0.3-6) Filename: pool/main/w/webkit-sharp/libwebkit-cil-dev_0.3-6_all.deb Size: 2292 MD5sum: 47dfd9fa841bf5cea6780afe56b15ddd SHA1: 264c4186ff6786cb8bff683b6ab35107b60770ba SHA256: 1593839aebcfbb51897c95b108f0ab1bf5c5da036a66a496c6c4e09276373c15 Description: CLI binding for the WebKit library - development package Homepage: http://www.webkit.org/ Description-md5: 89897ffa8c6284edaa9175cca49af1a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkit-dev Priority: extra Section: libdevel Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkitgtk-dev (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libwebkit-dev_2.4.0-1ubuntu2_i386.deb Size: 9938 MD5sum: 7acd52ead0e2a8e875c5921488b48aa6 SHA1: a6ca095727afb5ae635f9d675ecfb8724483a307 SHA256: 2ff3795b7da0c7d101312a842e62e9eadb5e2a2176fa9a07c28cada0c5305b79 Description: Transitional package for the development files of WebKitGTK+ Homepage: http://webkitgtk.org/ Description-md5: 23881ffbc18605756fed37cbebe5d8cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkit1.1-cil Priority: optional Section: cli-mono Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: webkit-sharp Version: 0.3-6 Depends: cli-common (>= 0.5.1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.0-cil (>= 2.10.1), libwebkitgtk-1.0-0 (>= 1.7.5) Suggests: monodoc-webkit-manual Filename: pool/main/w/webkit-sharp/libwebkit1.1-cil_0.3-6_all.deb Size: 23338 MD5sum: aea7b5f5f7e6c13837357b3bbbd518d1 SHA1: e6ca1844cbb2670948635f6a68432385f27f4f35 SHA256: 38fcc7e8661b2a8523330c54b1858d16a2d736f22a68e4b09a54092230a52b04 Description: CLI binding for the WebKit library Homepage: http://www.webkit.org/ Description-md5: 6259df8e502106deb4df4021cd75b142 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libwebkit2gtk-3.0-25 Priority: optional Section: libs Installed-Size: 60151 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: libwebkit2gtk-3.0-0 Depends: libjavascriptcoregtk-3.0-0 (= 2.4.0-1ubuntu2), libatk1.0-0 (>= 2.7.91), libc6 (>= 2.11), libcairo2 (>= 1.10.0), libenchant1c2a (>= 1.6.0), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgeoclue0 (>= 0.11.1+git20091217), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.2.0), libgstreamer1.0-0 (>= 1.2.0), libgtk-3-0 (>= 3.10.0), libgtk2.0-0 (>= 2.24.10), libharfbuzz-icu0 (>= 0.9.18), libharfbuzz0b (>= 0.9.18), libicu52 (>= 52~m1-1~), libjpeg8 (>= 8c), libpango-1.0-0 (>= 1.30.0), libpng12-0 (>= 1.2.13-4), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.44.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.8.1), libwebp5, libx11-6, libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxml2 (>= 2.7.4), libxrender1, libxslt1.1 (>= 1.1.25), libxt6, zlib1g (>= 1:1.2.0), libwebkitgtk-3.0-common (>= 2.4.0) Pre-Depends: multiarch-support Recommends: gstreamer1.0-plugins-base, gstreamer1.0-plugins-good Breaks: libwebkit2gtk-3.0-0 Filename: pool/main/w/webkitgtk/libwebkit2gtk-3.0-25_2.4.0-1ubuntu2_i386.deb Size: 13419368 MD5sum: 97318bc7d7d879169585712b75573252 SHA1: af94ff440c96ff0eeaa58ea643fa25d63f6b2ef0 SHA256: e442477c118417314a4e35073e38e300666c49d5b63201a5cee8f4b2cefaf1d9 Description: WebKit2 API layer for WebKitGTK+ Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: d95acf6886a7042fe68df1d57a7c2527 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkit2gtk-3.0-25-dbg Priority: extra Section: debug Installed-Size: 2599326 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: libwebkit2gtk-3.0-0-dbg Depends: libwebkit2gtk-3.0-25 (= 2.4.0-1ubuntu2), libjavascriptcoregtk-3.0-0-dbg (= 2.4.0-1ubuntu2) Breaks: libwebkit2gtk-3.0-0-dbg Filename: pool/main/w/webkitgtk/libwebkit2gtk-3.0-25-dbg_2.4.0-1ubuntu2_i386.deb Size: 619108602 MD5sum: 15093bd028b6bb182d2eef9770790754 SHA1: d64977a9f6564ce185b520a712ed7c99140f3a5d SHA256: 3c8524c8d77779cf6eb37e41f47ee1644d32b617cfba6dcf4972fe03c02f0479 Description: WebKit2 API layer for WebKitGTK+ - debugging symbols Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: d898dac5e0920494165ba62890c4edfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkit2gtk-3.0-dev Priority: extra Section: libdevel Installed-Size: 2583 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkit2gtk-3.0-25 (= 2.4.0-1ubuntu2), gir1.2-webkit2-3.0 (= 2.4.0-1ubuntu2), libwebkitgtk-common-dev (= 2.4.0-1ubuntu2), libgtk-3-dev, libsoup2.4-dev (>= 2.40), libjavascriptcoregtk-3.0-dev (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libwebkit2gtk-3.0-dev_2.4.0-1ubuntu2_i386.deb Size: 169944 MD5sum: a71e46c6014569b730defb7646ccafee SHA1: d378cf2155939a2d1217f4971585ddf3252d40af SHA256: 7c5cf232dfe04426c51d8adf51c7bd4327d6a206be111d4a37453c87f374f363 Description: WebKit2 API layer for WebKitGTK+ - development files Homepage: http://webkitgtk.org/ Description-md5: 5405a285197f55f99ffd7245049c664e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkitgtk-1.0-0 Priority: optional Section: libs Installed-Size: 29920 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libjavascriptcoregtk-1.0-0 (= 2.4.0-1ubuntu2), libatk1.0-0 (>= 2.7.91), libc6 (>= 2.11), libcairo2 (>= 1.10.0), libenchant1c2a (>= 1.6.0), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgeoclue0 (>= 0.11.1+git20091217), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.2.0), libgstreamer1.0-0 (>= 1.2.0), libgtk2.0-0 (>= 2.24.10), libharfbuzz-icu0 (>= 0.9.18), libharfbuzz0b (>= 0.9.18), libicu52 (>= 52~m1-1~), libjpeg8 (>= 8c), libpango-1.0-0 (>= 1.30.0), libpng12-0 (>= 1.2.13-4), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.44.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.8.1), libwebp5, libx11-6, libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxml2 (>= 2.7.4), libxrender1, libxslt1.1 (>= 1.1.25), libxt6, zlib1g (>= 1:1.2.0), libwebkitgtk-1.0-common (>= 2.4.0) Pre-Depends: multiarch-support Recommends: gstreamer1.0-plugins-base (>= 1.0.3), gstreamer1.0-plugins-good Breaks: claws-mail-fancy-plugin (<< 3.7.10-3), midori (<< 0.4.1-2) Filename: pool/main/w/webkitgtk/libwebkitgtk-1.0-0_2.4.0-1ubuntu2_i386.deb Size: 6360364 MD5sum: fef24b9e0595ec0454b2e9acd04db96d SHA1: c130a06475b380fb87682e4e2f45f5cb77e7f8d9 SHA256: 76881c08b583c04bc01c4030b909f75a20a760be866f32247a8e01c3f4a094d7 Description: Web content engine library for GTK+ Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: de0c9c33889d1ad763c994909aff70cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-live, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libwebkitgtk-1.0-0-dbg Priority: extra Section: debug Installed-Size: 1316537 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkitgtk-1.0-0 (= 2.4.0-1ubuntu2), libjavascriptcoregtk-1.0-0-dbg (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libwebkitgtk-1.0-0-dbg_2.4.0-1ubuntu2_i386.deb Size: 309247696 MD5sum: f83b121e60bdda94dd9a32f0b7fd7f27 SHA1: 78e013d9a4ff5b2b339d65b3841034f74aba08f9 SHA256: fbf3fa6f3bb5d9299371fe5f422258bbad87337009a8eb94f73e74a1f8c3991f Description: Web content engine library for GTK+ - debugging symbols Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: 8706274e20e263bb46419b6acea8b9b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkitgtk-1.0-common Priority: optional Section: libs Installed-Size: 384 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: all Source: webkitgtk Version: 2.4.0-1ubuntu2 Filename: pool/main/w/webkitgtk/libwebkitgtk-1.0-common_2.4.0-1ubuntu2_all.deb Size: 107038 MD5sum: ad2bdb1b0f793bd7ef78c14a0da96c81 SHA1: aed3b3aa0c69e282f63a205710c12ca25e48705e SHA256: c901b7656f08c447b539776ed09c0fdbf5bb3b1e7d022b9ca2393e2d19f695e4 Description: Web content engine library for GTK+ - data files Multi-Arch: foreign Homepage: http://webkitgtk.org/ Description-md5: 389906e285476ae56822f240054b51df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-live, edubuntu-desktop-gnome, edubuntu-usb, xubuntu-desktop, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libwebkitgtk-3.0-0 Priority: optional Section: libs Installed-Size: 29916 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libjavascriptcoregtk-3.0-0 (= 2.4.0-1ubuntu2), libatk1.0-0 (>= 2.7.91), libc6 (>= 2.11), libcairo2 (>= 1.10.0), libenchant1c2a (>= 1.6.0), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgeoclue0 (>= 0.11.1+git20091217), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.2.0), libgstreamer1.0-0 (>= 1.2.0), libgtk-3-0 (>= 3.10.0), libharfbuzz-icu0 (>= 0.9.18), libharfbuzz0b (>= 0.9.18), libicu52 (>= 52~m1-1~), libjpeg8 (>= 8c), libpango-1.0-0 (>= 1.30.0), libpng12-0 (>= 1.2.13-4), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.44.0), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.8.1), libwebp5, libx11-6, libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxml2 (>= 2.7.4), libxrender1, libxslt1.1 (>= 1.1.25), libxt6, zlib1g (>= 1:1.2.0), libwebkitgtk-3.0-common (>= 2.4.0) Pre-Depends: multiarch-support Recommends: gstreamer1.0-plugins-base, gstreamer1.0-plugins-good Filename: pool/main/w/webkitgtk/libwebkitgtk-3.0-0_2.4.0-1ubuntu2_i386.deb Size: 6348896 MD5sum: 10631e16371562316fc4e6aa36f950ce SHA1: 64aab31bc529017344f7fb2cd6989e579a60d5d5 SHA256: 7ccb2cf72f424e5aec449e507038087b557d987766b424cadc98c27be40fb977 Description: Web content engine library for GTK+ Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: e28c3fff1dc9f82f12da82b85adef90f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwebkitgtk-3.0-0-dbg Priority: extra Section: debug Installed-Size: 1316173 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkitgtk-3.0-0 (= 2.4.0-1ubuntu2), libjavascriptcoregtk-3.0-0-dbg (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libwebkitgtk-3.0-0-dbg_2.4.0-1ubuntu2_i386.deb Size: 309258500 MD5sum: bb8582bc31b9be7c053a951644294db2 SHA1: d1f5d2fa91d4b018f975ddb35784dcab36c5b670 SHA256: 3eb3de4f86555a3846f1a88ad59e7cd6a4eafa34cb03ed6918bd8d3c72aae888 Description: Web content engine library for GTK+ - debugging symbols Multi-Arch: same Homepage: http://webkitgtk.org/ Description-md5: d17349c4a4e8cd5c3cbb96d0d114a624 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkitgtk-3.0-common Priority: optional Section: libs Installed-Size: 384 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: all Source: webkitgtk Version: 2.4.0-1ubuntu2 Filename: pool/main/w/webkitgtk/libwebkitgtk-3.0-common_2.4.0-1ubuntu2_all.deb Size: 106726 MD5sum: 44f17627608eedcf6ec28f91d166d9c3 SHA1: 0790ca22705612b6ee7d868175c1dca3d54776a0 SHA256: ac3cbef60077ddd9f4e631e7afa8ad17e8c4cc299f5d8a873144f2e27c9bc3d5 Description: Web content engine library for GTK+ - data files Multi-Arch: foreign Homepage: http://webkitgtk.org/ Description-md5: 51a77acc4da979202b6cf1182a10b802 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwebkitgtk-3.0-dev Priority: extra Section: libdevel Installed-Size: 3548 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkitgtk-3.0-0 (= 2.4.0-1ubuntu2), gir1.2-webkit-3.0 (= 2.4.0-1ubuntu2), libwebkitgtk-common-dev (= 2.4.0-1ubuntu2), libgtk-3-dev, libsoup2.4-dev (>= 2.40), libjavascriptcoregtk-3.0-dev (= 2.4.0-1ubuntu2) Filename: pool/main/w/webkitgtk/libwebkitgtk-3.0-dev_2.4.0-1ubuntu2_i386.deb Size: 190456 MD5sum: f852194e9cca0a64f475b56700bdb776 SHA1: 277f4ac46d5a0833e9b16636d3008a2242aaf30f SHA256: 03d0e036d9ad4c232f825512db8e68cd49284f067455ccc92e6f2acf77682fa6 Description: Web content engine library for GTK+ - development files Homepage: http://webkitgtk.org/ Description-md5: 360be96bc502ec2be370af076d0bccd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkitgtk-common-dev Priority: extra Section: libdevel Installed-Size: 890 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Replaces: libwebkitgtk-3.0-dev (<< 2.1.4-3) Breaks: libwebkitgtk-3.0-dev (<< 2.1.4-3) Filename: pool/main/w/webkitgtk/libwebkitgtk-common-dev_2.4.0-1ubuntu2_i386.deb Size: 61676 MD5sum: 1519eb5c5680871b4ae80b55bb42da8c SHA1: 2a194b5dda3944ec7437c469b9e3eb82a896d33a SHA256: 700b9c3addcdd84be61209ce5f21022606534576dfafda17bc86358936cb3b15 Description: Web content engine library for GTK+ - common development files Homepage: http://webkitgtk.org/ Description-md5: fad1167cc95b2f31100d1d327d6b7bab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebkitgtk-dev Priority: extra Section: libdevel Installed-Size: 4346 Maintainer: Ubuntu Developers Original-Maintainer: Debian WebKit Maintainers Architecture: i386 Source: webkitgtk Version: 2.4.0-1ubuntu2 Depends: libwebkitgtk-1.0-0 (= 2.4.0-1ubuntu2), gir1.2-webkit-1.0 (= 2.4.0-1ubuntu2), libgtk2.0-dev (>= 2.24.10), libsoup2.4-dev (>= 2.42), libjavascriptcoregtk-1.0-dev (= 2.4.0-1ubuntu2) Conflicts: libwebkit-dev (<< 1.3.0) Filename: pool/main/w/webkitgtk/libwebkitgtk-dev_2.4.0-1ubuntu2_i386.deb Size: 237662 MD5sum: bcf01d11f340d99f21a181bd81e68ee6 SHA1: f5197b734eac4d4785da046e37df4485157733a2 SHA256: aa540bd3867eae9f138670f10f194b3d81b612cccace8eb7091d665a8d939340 Description: Web content engine library for GTK+ - development files Homepage: http://webkitgtk.org/ Description-md5: 370110c6dff41a51821759fd07339bbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebp-dev Priority: extra Section: libdevel Installed-Size: 619 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Breidenbach Architecture: i386 Source: libwebp Version: 0.4.0-4 Depends: libwebp5 (= 0.4.0-4), libwebpmux1 (= 0.4.0-4), libwebpdemux1 (= 0.4.0-4) Filename: pool/main/libw/libwebp/libwebp-dev_0.4.0-4_i386.deb Size: 190196 MD5sum: 02470e2b6ebd2ce98f93e31766c1e34d SHA1: 1d626f589de9183e9218a26655ecd2f19fd87948 SHA256: 87799434b04172dba1c37bef3a993da8ad9abf0b5f1d44cb2f7212da68e2e67b Description: Lossy compression of digital photographic images. Multi-Arch: same Homepage: http://webp.googlecode.com Description-md5: 3c2179355195b8d229435797374b0a61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebp5 Priority: extra Section: libs Installed-Size: 341 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Breidenbach Architecture: i386 Source: libwebp Version: 0.4.0-4 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libw/libwebp/libwebp5_0.4.0-4_i386.deb Size: 132606 MD5sum: 5b00e4def16dd05a1a88fd4e2b89ee7c SHA1: 22f7cd2d6bb7c9db02dc12a87a94cfbe9b794221 SHA256: e93f70282b7043af894abe05d072d87d06cdcc77d538b442d16ce57febe2704a Description: Lossy compression of digital photographic images. Multi-Arch: same Homepage: http://webp.googlecode.com Description-md5: 3c2179355195b8d229435797374b0a61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwebpdemux1 Priority: extra Section: libs Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Breidenbach Architecture: i386 Source: libwebp Version: 0.4.0-4 Depends: libc6 (>= 2.3.6-6~), libwebp5 Pre-Depends: multiarch-support Filename: pool/main/libw/libwebp/libwebpdemux1_0.4.0-4_i386.deb Size: 7732 MD5sum: cb0190f927ff04c2d9519f6dd8aa20dd SHA1: 33d1b892ed252893c015cdf0830f5a26caadb0eb SHA256: accf7fb00c5fa5adc359951ed150f44b92aa2e368e310da6fcc3d9a103831717 Description: Lossy compression of digital photographic images. Multi-Arch: same Homepage: http://webp.googlecode.com Description-md5: 3c2179355195b8d229435797374b0a61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwebpmux1 Priority: extra Section: libs Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Jeff Breidenbach Architecture: i386 Source: libwebp Version: 0.4.0-4 Depends: libc6 (>= 2.4), libwebp5 Pre-Depends: multiarch-support Filename: pool/main/libw/libwebp/libwebpmux1_0.4.0-4_i386.deb Size: 13628 MD5sum: 1a20599e17e9ebc3703d0738166bd8a2 SHA1: 471a206eb12ff3ea33618de9170d7c6bc56c91bd SHA256: 9d667a1d63d01e78caa158f10558c67340b076f3b551b4371c3fbad533b5c113 Description: Lossy compression of digital photographic images. Multi-Arch: same Homepage: http://webp.googlecode.com Description-md5: 3c2179355195b8d229435797374b0a61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwhoopsie-dev Priority: optional Section: libdevel Installed-Size: 50 Maintainer: Evan Dandrea Architecture: i386 Source: whoopsie Version: 0.2.24.5 Depends: libwhoopsie0 (= 0.2.24.5) Filename: pool/main/w/whoopsie/libwhoopsie-dev_0.2.24.5_i386.deb Size: 2270 MD5sum: dec73dadc06103c53e184e3d5451fc29 SHA1: 92c345b7b9b876dc5d65a6cf174dc140a9238574 SHA256: b93ba8f5cbe289e94a4e84fb74429b5d6fadac972ac354af173e5470532f88fc Description: Ubuntu error tracker submission - library development files Homepage: http://wiki.ubuntu.com/ErrorTracker Description-md5: d0cf33cd90c3c6a94ee823de0a47e4ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwhoopsie-preferences-dev Priority: optional Section: libdevel Installed-Size: 55 Maintainer: Evan Dandrea Architecture: i386 Source: whoopsie-preferences Version: 0.12 Replaces: libwhoopsie-preferences0 (<< 0.7) Depends: libwhoopsie-preferences0 (= 0.12) Filename: pool/main/w/whoopsie-preferences/libwhoopsie-preferences-dev_0.12_i386.deb Size: 3052 MD5sum: 612d5aadff4d8d6070121cccdcd92b73 SHA1: f3bd73586a0651cfc623b50c69879379bd130556 SHA256: d8eb299396bc632b49f19b2c9497297df08115f901a4348cdfb26f5017eaf889 Description: Ubuntu error tracker submission settings - library development files Homepage: http://launchpad.net/whoopsie-preferences Description-md5: daf93599b31d8e0c72e0acfd16da8b01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwhoopsie-preferences0 Priority: optional Section: libs Installed-Size: 70 Maintainer: Evan Dandrea Architecture: i386 Source: whoopsie-preferences Version: 0.12 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3) Filename: pool/main/w/whoopsie-preferences/libwhoopsie-preferences0_0.12_i386.deb Size: 12950 MD5sum: 8009da0850494f8dbf70af8421013c09 SHA1: 1ac3c8ffb7138998fef6a55ff2c76f573f42e92d SHA256: 018ed8b43f552cc0ef455296dacd4319c344ec0170e7683e69ccef214f812434 Description: Ubuntu error tracker submission settings - shared library Homepage: http://launchpad.net/whoopsie-preferences Description-md5: 1569a6017d19753fce769a2118756c02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb Package: libwhoopsie0 Priority: optional Section: libs Installed-Size: 47 Maintainer: Evan Dandrea Architecture: i386 Source: whoopsie Version: 0.2.24.5 Depends: libc6 (>= 2.4), libgcrypt11 (>= 1.5.1), libglib2.0-0 (>= 2.31.6) Filename: pool/main/w/whoopsie/libwhoopsie0_0.2.24.5_i386.deb Size: 6376 MD5sum: ecf7438e891c369a12265a7185f72191 SHA1: 3f1a4b7713c2948104b4cdc5f1bae4abc9bdffcc SHA256: c6ca8823c703e5ff2dd994a1ae027bb709492189245d55da66d2dc67f220f397 Description: Ubuntu error tracker submission - shared library Homepage: http://wiki.ubuntu.com/ErrorTracker Description-md5: 63cc1807f3740284873e13ddff74db44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libwibble-dev Priority: optional Section: libdevel Installed-Size: 13198 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: i386 Source: libwibble Version: 1.1-1 Recommends: pkg-config Filename: pool/main/libw/libwibble/libwibble-dev_1.1-1_i386.deb Size: 1916806 MD5sum: 3434a8d6bad5ab229ae1577515b82412 SHA1: dd9e7582682cf3d9eb5ae818805d702aae3218b7 SHA256: 607668456b498ae1448e65cd3fd73f95203405d11835d076be60ade0a697f74f Description: Library of various useful C++ code Homepage: http://web.mornfall.net/libwibble.html Description-md5: 1d0e11a615c68d5df696b9445ef69af3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwind0-heimdal Priority: standard Section: libs Installed-Size: 229 Maintainer: Ubuntu Developers Original-Maintainer: Brian May Architecture: i386 Source: heimdal Version: 1.6~git20131207+dfsg-1ubuntu1 Depends: libc6 (>= 2.3.6-6~), libcomerr2 (>= 1.01), libroken18-heimdal (>= 1.4.0+git20110226) Pre-Depends: multiarch-support Filename: pool/main/h/heimdal/libwind0-heimdal_1.6~git20131207+dfsg-1ubuntu1_i386.deb Size: 48242 MD5sum: 5552e6208bb0198f6a099569ec4c434b SHA1: d03c62ff9764bb0bd2b7a402f79d47945479dcbd SHA256: 22019b6a4b722aaa90d29a54bf8da7c1310f52fb2a401bb425f851d073b123d6 Description: Heimdal Kerberos - stringprep implementation Multi-Arch: same Homepage: http://www.h5l.org/ Description-md5: c1440da5ed207fb354250542178272a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libwmf-bin Priority: optional Section: graphics Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Loïc Minier Architecture: i386 Source: libwmf Version: 0.2.8.4-10.3ubuntu1 Depends: libc6 (>= 2.7), libwmf0.2-7 (>= 0.2.8.4), libx11-6, zlib1g (>= 1:1.1.4) Recommends: gsfonts Filename: pool/main/libw/libwmf/libwmf-bin_0.2.8.4-10.3ubuntu1_i386.deb Size: 20342 MD5sum: c6392e1ccf6a05f9d17d3262d0367017 SHA1: e78df1bdaf9dd9c1c9665cdcc38ceec06089bcff SHA256: 16a09f78bd6accfa879095b8c6607349728c355d9f4f9ef79d1c1672acd28620 Description: Windows metafile conversion tools Multi-Arch: foreign Description-md5: d9cc79d027920bad7d0c9dc15b79c060 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: libwmf-dev Priority: optional Section: libdevel Installed-Size: 706 Maintainer: Ubuntu Developers Original-Maintainer: Loïc Minier Architecture: i386 Source: libwmf Version: 0.2.8.4-10.3ubuntu1 Depends: libwmf0.2-7 (= 0.2.8.4-10.3ubuntu1), libfreetype6-dev, x11proto-core-dev, libx11-dev, zlib1g-dev Suggests: libwmf-doc Filename: pool/main/libw/libwmf/libwmf-dev_0.2.8.4-10.3ubuntu1_i386.deb Size: 206826 MD5sum: 2484c20d001b5c5b15402474d4fddca5 SHA1: 6f29545d0655bba0a15a4babafb994eda590b226 SHA256: 334500418c7975d1fce597970d3958848ee2c269430cd3ad154a6561dd2ae76d Description: Windows metafile conversion development Description-md5: 3003c1f061ef044f651bdb47d77c9780 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwmf-doc Priority: optional Section: doc Installed-Size: 2175 Maintainer: Ubuntu Developers Original-Maintainer: Loïc Minier Architecture: all Source: libwmf Version: 0.2.8.4-10.3ubuntu1 Recommends: libwmf0.2-7 Suggests: libwmf-dev Filename: pool/main/libw/libwmf/libwmf-doc_0.2.8.4-10.3ubuntu1_all.deb Size: 290942 MD5sum: cdf8643834ae9427890ab9ead94e0111 SHA1: 2e7d5900999f4316cf6668b4d636313acc6aac72 SHA256: c84f4a1eed468adffbcf285f422152f41876c17c6a8dc0d2f669d0313474ce44 Description: Windows metafile documentation Description-md5: 3976ad5925a16bfd96089e12c732cc89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwmf0.2-7 Priority: optional Section: libs Installed-Size: 505 Maintainer: Ubuntu Developers Original-Maintainer: Loïc Minier Architecture: i386 Source: libwmf Version: 0.2.8.4-10.3ubuntu1 Depends: libc6 (>= 2.11), libexpat1 (>= 2.0.1), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libx11-6, zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: gsfonts Suggests: libwmf0.2-7-gtk Filename: pool/main/libw/libwmf/libwmf0.2-7_0.2.8.4-10.3ubuntu1_i386.deb Size: 172902 MD5sum: 3948863cb3e6ecf667e257a4dfe99541 SHA1: 72ef5ab90e5e5126ec775a5f38e4ac94ee048d96 SHA256: d9c405ccf39bf97597773d2d10075de6257b582927ee5e99d4affafa7406533b Description: Windows metafile conversion library Multi-Arch: same Description-md5: d4d0facf23388b3fde4e4fc7dcb4d9de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: libwmf0.2-7-gtk Priority: optional Section: libs Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Loïc Minier Architecture: i386 Source: libwmf Version: 0.2.8.4-10.3ubuntu1 Depends: libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.12.0), libwmf0.2-7 (= 0.2.8.4-10.3ubuntu1) Filename: pool/main/libw/libwmf/libwmf0.2-7-gtk_0.2.8.4-10.3ubuntu1_i386.deb Size: 6640 MD5sum: be828454878b898cfced3df2f3498220 SHA1: 8a58d31531a49be9982ab8d3bd303fa2f9632973 SHA256: 4bf26981333acc10d852f87d711a4f858d8ebbe7c85cd8218f354577a43b8742 Description: Windows metafile conversion library Description-md5: 6fbf2a15aa9e59937ed5083852b59256 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libwnck-3-0 Priority: optional Section: libs Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: libwnck3 Version: 3.4.7-0ubuntu3 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.4), libpango-1.0-0 (>= 1.14.0), libstartup-notification0 (>= 0.4), libx11-6, libxres1, libwnck-3-common Pre-Depends: multiarch-support Filename: pool/main/libw/libwnck3/libwnck-3-0_3.4.7-0ubuntu3_i386.deb Size: 100664 MD5sum: 94ac5e2b949963c64bf38ffef672eab6 SHA1: 2b3f87030402bc657ddd71a098eef11f2b695c29 SHA256: 963dc1dd746cca91b55d46a094f61f1358eabcb5c03d2c141a1262d397532ca9 Description: Window Navigator Construction Kit - runtime files Multi-Arch: same Description-md5: dcba93a4b4b0d605d4c6197b75671b43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwnck-3-common Priority: optional Section: libs Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: libwnck3 Version: 3.4.7-0ubuntu3 Filename: pool/main/libw/libwnck3/libwnck-3-common_3.4.7-0ubuntu3_all.deb Size: 18728 MD5sum: 06767e82e33deefe9727bbf4f32c8f51 SHA1: 62816f11f096f5cd868d83ffd16dc99ff3c35ba0 SHA256: f74e309778f575cb23925c41cfc0250a5fbc2de6d6ffc014e2a9ed7529f3f752 Description: Window Navigator Construction Kit - common files Multi-Arch: foreign Description-md5: bdd169827af904bf2e501e31f632435a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwnck-3-dev Priority: optional Section: libdevel Installed-Size: 1114 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: libwnck3 Version: 3.4.7-0ubuntu3 Replaces: gir-repository-dev (<< 0.6.5-7) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.4), libwnck-3-0 (= 3.4.7-0ubuntu3), libx11-6, gir1.2-wnck-3.0 (= 3.4.7-0ubuntu3), libglib2.0-dev (>= 2.32), libpango1.0-dev, libx11-dev, libgtk-3-dev (>= 3.4), libstartup-notification0-dev (>= 0.7), libcairo2-dev, libxres-dev Conflicts: libwnck-dev (<< 2.30.7-1) Filename: pool/main/libw/libwnck3/libwnck-3-dev_3.4.7-0ubuntu3_i386.deb Size: 83006 MD5sum: 649289cba0941d1b0147c7a1f2682dac SHA1: 0965ce5a0dd0c1495b0616498276396943442608 SHA256: 8a593b2ca2901c09a70c09093113781c79ee1682bbaf2827b36acc6aaa369a95 Description: Window Navigator Construction Kit - development files Description-md5: cb65185699281ddbfd4a226066442426 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwnck-common Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: libwnck Version: 1:2.30.7-0ubuntu4 Filename: pool/main/libw/libwnck/libwnck-common_2.30.7-0ubuntu4_all.deb Size: 16378 MD5sum: 72a23a7438a0ea06c863d7c34881e974 SHA1: 45b310897b2f773cfcda053cd678d17229c67751 SHA256: 828fd94580274e461bcb0c10d887951071b9e1da751939052951ac384e2cdc02 Description: Window Navigator Construction Kit - common files Description-md5: bdd169827af904bf2e501e31f632435a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop Package: libwnck-dev Priority: optional Section: libdevel Installed-Size: 1320 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: libwnck Version: 1:2.30.7-0ubuntu4 Replaces: gir-repository-dev (<< 0.6.5-7) Depends: libwnck22 (= 1:2.30.7-0ubuntu4), libglib2.0-dev (>= 2.13.0), libpango1.0-dev, libx11-dev, libgtk2.0-dev (>= 2.19.7), libstartup-notification0-dev (>= 0.7-1), libcairo2-dev, libxres-dev Filename: pool/main/libw/libwnck/libwnck-dev_2.30.7-0ubuntu4_i386.deb Size: 154218 MD5sum: dc5e024af17266cf1ea341e5cbf8cec9 SHA1: 6c2a91dc1caa96a0e4d5476639f73da69d807876 SHA256: 1700de57474f15d7c22b1143f659bf28aaa53f234e768719b3865df7d8280877 Description: Window Navigator Construction Kit - development files Description-md5: cb65185699281ddbfd4a226066442426 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwnck22 Priority: optional Section: libs Installed-Size: 315 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: libwnck Version: 1:2.30.7-0ubuntu4 Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.22.0), libpango-1.0-0 (>= 1.14.0), libstartup-notification0 (>= 0.4), libx11-6, libxres1, libwnck-common Filename: pool/main/libw/libwnck/libwnck22_2.30.7-0ubuntu4_i386.deb Size: 97298 MD5sum: c16155963bca7bedd79914f01c69a3cf SHA1: 7d9c63e372c4ac28618074613da114f3681d8dc9 SHA256: ad4884ab5d6ad83b5860894b3a4573f162300a893efe1401ab67609d5f98acbe Description: Window Navigator Construction Kit - runtime files Description-md5: dcba93a4b4b0d605d4c6197b75671b43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop Package: libwpd-0.9-9 Priority: optional Section: libs Installed-Size: 932 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libwpd Version: 0.9.9-1 Replaces: libwpd0, libwpd2, libwpd3, libwpd4, libwpd5, libwpd6, libwpd8 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), zlib1g (>= 1:1.1.4) Conflicts: libwpd0, libwpd2, libwpd3, libwpd4, libwpd5, libwpd6, libwpd8 Filename: pool/main/libw/libwpd/libwpd-0.9-9_0.9.9-1_i386.deb Size: 320798 MD5sum: 2f641a94fcf1ec62245d2004359f04c1 SHA1: 5feef23321ee7e471fc3d4dd16863c9334782a67 SHA256: 3a391c677ad735c83acb826012439498586eea2dc960d4c0b13c5ef5a914cbea Description: Library for handling WordPerfect documents (shared library) Description-md5: bf448ed5c2edad9a49b78d12811df68b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libwpd-dev Priority: optional Section: libdevel Installed-Size: 2013 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libwpd Version: 0.9.9-1 Depends: libwpd-0.9-9 (= 0.9.9-1) Filename: pool/main/libw/libwpd/libwpd-dev_0.9.9-1_i386.deb Size: 487532 MD5sum: d4000740a1960d34323dd7073f1e2dd7 SHA1: 883e293c713df32d2572306e2209e0fbafd32388 SHA256: 8b9a6ef65e8b9892c637b275415e4ef664a309a62992cea51b3e711463c3bb37 Description: Library for handling WordPerfect documents (development) Description-md5: 78b231bce8a2d90ae963f8181c5ed7e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwpd-doc Priority: optional Section: doc Installed-Size: 14443 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libwpd Version: 0.9.9-1 Recommends: www-browser Filename: pool/main/libw/libwpd/libwpd-doc_0.9.9-1_all.deb Size: 2029140 MD5sum: 45eae7ffc12fcb92c10e6c722fe2df98 SHA1: 12f3247674664a1c64a9698d1b9973f0a5e2cbee SHA256: 43bef111ab2e15e6e57fc34358728f61797536be009e9b7476dc1ac8b69fcbb0 Description: Library for handling WordPerfect documents (documentation) Description-md5: 891c7038afdcc84fa6e5e183022a9769 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwpg-0.2-2 Priority: optional Section: libs Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libwpg Version: 0.2.2-1ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), libwpd-0.9-9 Filename: pool/main/libw/libwpg/libwpg-0.2-2_0.2.2-1ubuntu1_i386.deb Size: 61174 MD5sum: c1f1338fb563750b43dba212f965329c SHA1: ae4e70b8796c5a751d509ef91bb641f2fff32e32 SHA256: 41505bc3eaaec7449c1b6ec8ddd6dd287d2c5b29e015446123a522514cae8c4d Description: WordPerfect graphics import/convert library (shared library) Description-md5: dc6f7cab183ff3fc138fbccbd64a1e4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libwpg-dev Priority: extra Section: libdevel Installed-Size: 321 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libwpg Version: 0.2.2-1ubuntu1 Depends: libwpg-0.2-2 (= 0.2.2-1ubuntu1), libwpd-dev Filename: pool/main/libw/libwpg/libwpg-dev_0.2.2-1ubuntu1_i386.deb Size: 63764 MD5sum: 3ce90563ef488aee478bf32e4f1757cb SHA1: 03e9e4033713e08b12dcf5f1d647308ae99b0161 SHA256: 3ca01e28cf20e7b8ed04cdb078960086049a995cca058d6d53f83d29cfac18d9 Description: WordPerfect graphics import/convert library (development) Description-md5: e7a5d5cfc34ef03fe96b1fa752947f72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwpg-doc Priority: extra Section: doc Installed-Size: 1596 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libwpg Version: 0.2.2-1ubuntu1 Filename: pool/main/libw/libwpg/libwpg-doc_0.2.2-1ubuntu1_all.deb Size: 97130 MD5sum: 4e1ea8d62762b48567548ef641e6051f SHA1: 576e175b1882ad448bae25d55f1134b926e46478 SHA256: 77c233e7875c26d681e9a59c3b82c9effd19ca887bd7c6d9b5ee2d4012eb3dc1 Description: WordPerfect graphics import/convert library (documentation) Description-md5: a0ad96ed9410c79e433574e799f6a621 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwps-0.2-2 Priority: optional Section: libs Installed-Size: 745 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libwps Version: 0.2.9-2ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libwpd-0.9-9 Filename: pool/main/libw/libwps/libwps-0.2-2_0.2.9-2ubuntu1_i386.deb Size: 235356 MD5sum: 6587926ee8b80bc4f5fc8e18f7dfacbf SHA1: 29cfb1714d9844b3eafd242018834d5795b6e0d6 SHA256: 4ffc331408539e2e327d4b61dd9ed6b1835148a24667885b8a8e443085791760 Description: Works text file format import filter library (shared library) Description-md5: 9fd8eeeb0a21a535283abbb4019b13b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libwps-dev Priority: optional Section: libdevel Installed-Size: 1254 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: i386 Source: libwps Version: 0.2.9-2ubuntu1 Depends: libwps-0.2-2 (= 0.2.9-2ubuntu1), libwpd-dev Filename: pool/main/libw/libwps/libwps-dev_0.2.9-2ubuntu1_i386.deb Size: 255624 MD5sum: 2846c9d34cdadaa04c5b3c41b417ea7a SHA1: 9a81df4644a92100d4cc5fa784bfec99729ff030 SHA256: f0e7ab1edf602bb8fd0a2e3ee05dd30b963f8f8ba97d5e32bc531a158c526749 Description: Works text file format import filter library (development) Description-md5: 8839efbab4f8104c27efde97cd242e2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwps-doc Priority: optional Section: doc Installed-Size: 5586 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: libwps Version: 0.2.9-2ubuntu1 Filename: pool/main/libw/libwps/libwps-doc_0.2.9-2ubuntu1_all.deb Size: 312408 MD5sum: b765f841fb5ae29ec98ccb44ee2e6c95 SHA1: 6a208954c9d2166313e36885f0f96965222bbff2 SHA256: 28404d1682179260eea445d25d7e7f4aeadf96583a1087b0e1791a45bee44f31 Description: Works text file format import filter library (documentation) Description-md5: c5684ba17506cb29b62fac571ccaa40b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwrap0 Priority: optional Section: libs Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: i386 Source: tcp-wrappers Version: 7.6.q-25 Replaces: tcpd (<< 7.6.q-20) Depends: libc6 (>= 2.11) Pre-Depends: multiarch-support Recommends: tcpd Breaks: tcpd (<< 7.6.q-20) Filename: pool/main/t/tcp-wrappers/libwrap0_7.6.q-25_i386.deb Size: 45762 MD5sum: 59b7c5119fdb1ef337c010813713e01d SHA1: 43411fbf50e35dad4c84190e72eb4e17d2085b0c SHA256: 2c369f25a30d1696a89b828dc73fef716e28d947764f39adb504ff83a0d26a90 Description: Wietse Venema's TCP wrappers library Multi-Arch: same Description-md5: 398b420d625f5f15bad603d35ce5acb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, cloud-image, openssh-server, lamp-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwrap0-dev Priority: optional Section: libdevel Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: i386 Source: tcp-wrappers Version: 7.6.q-25 Depends: libwrap0 (= 7.6.q-25) Filename: pool/main/t/tcp-wrappers/libwrap0-dev_7.6.q-25_i386.deb Size: 20116 MD5sum: e6e90b42e545ff4e66de09443b56f3e7 SHA1: ee83b42f9992b6898d49ea2ecf2b4dd7268438d7 SHA256: e8974b5cd174528c45dedc2b5ced01d81a166cb347c3a6be0b334ab7aabd5ca9 Description: Wietse Venema's TCP wrappers library, development files Multi-Arch: same Description-md5: f53a3d19bcd15b4fdd53b720ab2cb8b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwvstreams-dev Priority: optional Section: libdevel Installed-Size: 5609 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: wvstreams Version: 4.6.1-7 Provides: libwvstreams4.6-dev Depends: libwvstreams4.6-base (= 4.6.1-7), libwvstreams4.6-extras (= 4.6.1-7), libuniconf4.6 (= 4.6.1-7), libxplc0.3.13-dev Suggests: tk8.5 | wish Filename: pool/main/w/wvstreams/libwvstreams-dev_4.6.1-7_i386.deb Size: 1524274 MD5sum: 24a34b1d5341a36932a4def2affdb335 SHA1: 082693028c404043483722c2a16277d55063ef44 SHA256: db1571f7c07068471086b5a14bed15cc3dfba2a38dbbcbe78fbb43efb9124ecc Description: Development libraries and header files for libwvstreams4.6 Description-md5: f53c7d0d4d2882cf24702de20d911415 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwvstreams4.6-base Priority: optional Section: libs Installed-Size: 585 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: wvstreams Version: 4.6.1-7 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/w/wvstreams/libwvstreams4.6-base_4.6.1-7_i386.deb Size: 203844 MD5sum: 503c12013e4ea05b704f86dd6acf66f3 SHA1: 3ab111dc969f1c0513ce4d4a1bb5bc1be2009f52 SHA256: 4b06e15cb4fda9c11954a2863fd0ac113c48358203e69573ddedccaeaa41d6ee Description: C++ network libraries for rapid application development Description-md5: 97ed1e5a42601ef768f8d0fd8c832a3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-desktop Package: libwvstreams4.6-doc Priority: optional Section: doc Installed-Size: 49002 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Source: wvstreams Version: 4.6.1-7 Suggests: libwvstreams-dev (= 4.6.1-7) Filename: pool/main/w/wvstreams/libwvstreams4.6-doc_4.6.1-7_all.deb Size: 12640956 MD5sum: 78fec4ab8da3462b385f458f46279bcd SHA1: 0f20e387398ae0f44e2cd28547b8bd94b3069f89 SHA256: 58777b8115d3a2e83564ff2f9481f8d13b229bf2203d7e0b6a4ca9962ee69e5f Description: Documentation for WvStreams Description-md5: e7183a424bd0d0e61a806b5bba46c90a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libwvstreams4.6-extras Priority: optional Section: libs Installed-Size: 1223 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: wvstreams Version: 4.6.1-7 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.2.14), libgcc1 (>= 1:4.1.1), libpam0g (>= 0.99.7.1), libssl1.0.0 (>= 1.0.0), libstdc++6 (>= 4.1.1), libwvstreams4.6-base, zlib1g (>= 1:1.1.4) Filename: pool/main/w/wvstreams/libwvstreams4.6-extras_4.6.1-7_i386.deb Size: 447512 MD5sum: eff4bea8a1d26962b66bccf7b95ee734 SHA1: 5d88a6ccbb8ea678b48edebfe1cb026648170c0a SHA256: 5b44197330f8ffe82216adabf0bddf33da3afe56f5b20a860b35a056de183a4d Description: C++ network libraries for rapid application development Description-md5: 4a7a7e63117ad4a89ff5ef5cc9dd9560 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-desktop Package: libwww-perl Priority: optional Section: perl Installed-Size: 375 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.05-2 Depends: perl, ca-certificates, libencode-locale-perl, libfile-listing-perl, libhtml-parser-perl, libhtml-tagset-perl, libhtml-tree-perl, libhttp-cookies-perl, libhttp-date-perl, libhttp-message-perl, libhttp-negotiate-perl, liblwp-mediatypes-perl, liblwp-protocol-https-perl, libnet-http-perl (>= 6.04), liburi-perl, libwww-robotrules-perl, netbase Recommends: libhtml-form-perl, libhtml-format-perl, libhttp-daemon-perl, libmailtools-perl Suggests: libauthen-ntlm-perl Breaks: fusioninventory-agent (<< 2.1.8-2), gsutil (<< 3.1-1), libfrontier-rpc-perl (<< 0.07b4-6), libhttp-daemon-ssl-perl (<< 1.04-3), libhttp-proxy-perl (<< 0.24-2), libhttp-request-ascgi-perl (<< 1.2-2), libhttp-request-params-perl (<< 1.01-6), libjson-rpc-perl (<< 0.96-3), libpoe-perl (<< 2:1.2990-2), librpc-xml-perl (<< 0.74-2), libsoap-lite-perl (<< 0.7.12-3), libwww-mechanize-formfiller-perl (<< 0.10-2), libwww-mechanize-perl (<< 1.66-2), satutils (<= 0.6), tidy-proxy (<< 0.97-4) Filename: pool/main/libw/libwww-perl/libwww-perl_6.05-2_all.deb Size: 146212 MD5sum: 9b4afd35256fad3c9d8a11f5aa2253a3 SHA1: 66507129af9b54dc5d3296df57d7fb1a2d5b6812 SHA256: df42a55adeb2cabf87416675dbee61c1ac946b67bda8bde10c8cee7310e7aadd Description: simple and consistent interface to the world-wide web Homepage: https://metacpan.org/release/libwww-perl/ Description-md5: 313b4d890db3570fc5f14a335ceff587 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libwww-robotrules-perl Priority: optional Section: perl Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 6.01-1 Replaces: libwww-perl (<< 6.00) Depends: perl, liburi-perl Breaks: libwww-perl (<< 6.00) Filename: pool/main/libw/libwww-robotrules-perl/libwww-robotrules-perl_6.01-1_all.deb Size: 14074 MD5sum: 95112b59013c9e643ada5ddddb62d9b8 SHA1: 39693be3d45fcfd0852e2de9070abc36cb7242a5 SHA256: 5516cd8881af8032ccbeb1fb678c51d2f4b4f98128eccbb126fc0e07571ed830 Description: database of robots.txt-derived permissions Homepage: http://search.cpan.org/dist/WWW-RobotRules/ Description-md5: c1793eba30f9ab7256b5a25ded8e1664 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libx11-6 Priority: standard Section: libs Installed-Size: 1502 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libc6 (>= 2.15), libxcb1 (>= 1.2), libx11-data Pre-Depends: multiarch-support Filename: pool/main/libx/libx11/libx11-6_1.6.2-1ubuntu2_i386.deb Size: 556718 MD5sum: 834878393c0c7f484c5a889f36c1a4f2 SHA1: d5f7b292132b60834c0a2245d64c35bb8c9fece6 SHA256: c6b0a87e3d19a5bb269e3f13541db377622155bdec51916586dce0000fea78bc Description: X11 client-side library Multi-Arch: same Description-md5: d75c895abf6eca234f7480813aaa95ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libx11-6-dbg Priority: extra Section: libdevel Installed-Size: 10221 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libx11-6 (= 2:1.6.2-1ubuntu2) Filename: pool/main/libx/libx11/libx11-6-dbg_1.6.2-1ubuntu2_i386.deb Size: 917538 MD5sum: 3b528e0d06f2c71f560ffc811960bac5 SHA1: 19f4e4dbf5408cab97a3bc59bf0e711fc2a738b8 SHA256: 770caa0236ff939a03b2aab1a5767f0681aa6ede3f8823fabca67983972ab53e Description: X11 client-side library (debug package) Multi-Arch: same Description-md5: aba9421d3cbaf726029435b7f064a21f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx11-data Priority: standard Section: x11 Installed-Size: 1581 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libx11 Version: 2:1.6.2-1ubuntu2 Breaks: libx11-6 (<< 2:1.4.1) Filename: pool/main/libx/libx11/libx11-data_1.6.2-1ubuntu2_all.deb Size: 111380 MD5sum: 003252d2b4043b0ba1163b861653d589 SHA1: fcb2fa6d592f76cb653c2a40fe210867d9610bf6 SHA256: 9ee55771e7ef079fa1ebc0897e3bf7c6ac616b978eb228711d56132b8aa5cfd3 Description: X11 client-side library Multi-Arch: foreign Description-md5: 6c325636dc71729675cb0107afb6ecf0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libx11-dev Priority: optional Section: libdevel Installed-Size: 2296 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libx11-6 (= 2:1.6.2-1ubuntu2), libxau-dev (>= 1:1.0.0-1), libxdmcp-dev (>= 1:1.0.0-1), x11proto-core-dev (>= 7.0.17), x11proto-input-dev, x11proto-kb-dev, xtrans-dev, libxcb1-dev Recommends: libx11-doc Filename: pool/main/libx/libx11/libx11-dev_1.6.2-1ubuntu2_i386.deb Size: 627346 MD5sum: 234096eee38a126b9cfe39ae9d595b1d SHA1: 20f7a16e08b571cae6ffd5fc5f804edbaaabb83b SHA256: 8f3ea227bc8925f4050afa4ec130928258fa5b72172ea18fd935489cf77615e7 Description: X11 client-side library (development headers) Multi-Arch: same Description-md5: d15ee011f0b76dcc1f36f3a309df4a93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx11-doc Priority: optional Section: libdevel Installed-Size: 8836 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libx11 Version: 2:1.6.2-1ubuntu2 Replaces: libx11-dev (<< 2:1.4.4-3) Breaks: libx11-dev (<< 2:1.4.4-3) Filename: pool/main/libx/libx11/libx11-doc_1.6.2-1ubuntu2_all.deb Size: 1447816 MD5sum: 4246dd16262c75b81db618288ab19038 SHA1: 2e96a4bbd90c3fdfa85e2af05330b3f264d5f638 SHA256: 3cb96a01e95f5eb27db60ee94f4c6b29aee716a5d3f1d11d5686af5585031355 Description: X11 client-side library (development documentation) Multi-Arch: foreign Description-md5: b3f98cb9df5727061e55dc69bf459fb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx11-xcb-dev Priority: optional Section: libdevel Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libx11-xcb1 (= 2:1.6.2-1ubuntu2), libxcb1-dev (>= 0.9.92), libx11-dev Filename: pool/main/libx/libx11/libx11-xcb-dev_1.6.2-1ubuntu2_i386.deb Size: 9734 MD5sum: 4c231d9818a17447e7e76db887f5041f SHA1: ff24b8cb9b4e527729f871c13b1bbd70c4450a55 SHA256: 63fc8329b357f278107edb92d4bd138adc3b8fbd90ee4a9441a4fa67812ed5ba Description: Xlib/XCB interface library (development headers) Multi-Arch: same Description-md5: ee46e7a5a5a4162c9e382ed7112759eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libx11-xcb1 Priority: optional Section: libs Installed-Size: 234 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libc6 (>= 2.1.3) Pre-Depends: multiarch-support Filename: pool/main/libx/libx11/libx11-xcb1_1.6.2-1ubuntu2_i386.deb Size: 9396 MD5sum: 0ae1d45048ece87b87fd6a030288c7b7 SHA1: e7efb742ada2764fe98e71503de3983940ec3f60 SHA256: 5e5fc06545396993b620e49b49caa55bd0674859e28ff682a9d57285cb0b0279 Description: Xlib/XCB interface library Multi-Arch: same Description-md5: 8904e1c2cc3cadffdce355234a23f6c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libx11-xcb1-dbg Priority: extra Section: libdevel Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libx11 Version: 2:1.6.2-1ubuntu2 Depends: libx11-xcb1 (= 2:1.6.2-1ubuntu2) Filename: pool/main/libx/libx11/libx11-xcb1-dbg_1.6.2-1ubuntu2_i386.deb Size: 18532 MD5sum: cb165fde53a53df85a6887bdb9a92aef SHA1: 9e4daf4667e5d394e25801cbf63417135b676a3d SHA256: 55ea284c48ac1d2ce4b78be0c895d11a590557f4b17ea3f53b490b21f82277b6 Description: Xlib/XCB interface library (debug package) Multi-Arch: same Description-md5: e1bdd7a7a9d36bb39443201e274af2ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32asan0 Priority: extra Section: libs Installed-Size: 193 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16), libx32gcc1 Filename: pool/main/g/gcc-4.8/libx32asan0_4.8.2-19ubuntu1_i386.deb Size: 63034 MD5sum: 660daa2c47d2fa3ed3109bb8a096d0db SHA1: dab48aa04eab02538ee74b86226162554f565227 SHA256: b3c363916d08c41efefb3cd666547f170c31d8a88861140e6939584a599a47c1 Description: AddressSanitizer -- a fast memory error detector (x32) Homepage: http://gcc.gnu.org/ Description-md5: 51a639c3760e456ac48834fb47045c42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32asan0-dbg Priority: extra Section: debug Installed-Size: 806 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32asan0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32asan0-dbg_4.8.2-19ubuntu1_i386.deb Size: 223458 MD5sum: 33e5591b47ca6bbf70ab8b9e3a0e9250 SHA1: 832d64ed3b42013ec458a35fa70373eee0105aa7 SHA256: 41c4a28614fb53cdef12ce65543f1cecfa4ff3741c1f7bdf5b2fad902e6804d0 Description: AddressSanitizer -- a fast memory error detector (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: b66995cafb0cff1e16849ce190628573 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32atomic1 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16) Filename: pool/main/g/gcc-4.8/libx32atomic1_4.8.2-19ubuntu1_i386.deb Size: 8590 MD5sum: 9af965dc2ada225387f1406430e5744b SHA1: 5d02d47c9c6d41f0e5e307592ba5690b1ea22aa4 SHA256: 88c0f350660bcc68a76cfad1267ef933b1cea9b75caafa163206c22d937775a9 Description: support library providing __atomic built-in functions (x32) Homepage: http://gcc.gnu.org/ Description-md5: 17429d2d39217f0a95507decf171c10f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32atomic1-dbg Priority: extra Section: debug Installed-Size: 123 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32atomic1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32atomic1-dbg_4.8.2-19ubuntu1_i386.deb Size: 16096 MD5sum: f27ceabf1069e1eb1077b1e0440b1c9e SHA1: 8c7b1a9acae605b3f97162bc45f4c1eed21e5cd8 SHA256: 2256578342ec49d0d86c7f548424b844540099504346eb5c42db27b46a9092ff Description: support library providing __atomic built-in functions (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: a1d046f7c7bf1745f37238262b4d1081 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32gcc-4.7-dev Priority: optional Section: libdevel Installed-Size: 3621 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gcc-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), lib64gcc1 (>= 1:4.7.3-12ubuntu1), libx32gcc1 (>= 1:4.7.3-12ubuntu1), lib64gomp1 (>= 4.7.3-12ubuntu1), libx32gomp1 (>= 4.7.3-12ubuntu1), lib64itm1 (>= 4.7.3-12ubuntu1), libx32itm1 (>= 4.7.3-12ubuntu1), lib64quadmath0 (>= 4.7.3-12ubuntu1), libx32quadmath0 (>= 4.7.3-12ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.7/libx32gcc-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 1443574 MD5sum: 9cfad3d15d7e53f33679dfdc0fd5713e SHA1: 1b6ec0004a20d564bfa0437a034548f07ca64a76 SHA256: 24e2c54cdcce16b7089826071b187e393ec9cc0778aa64e78bc454835eadbb12 Description: GCC support library (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: df49fd36cacd441ececa361c98eaaa4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32gcc-4.8-dev Priority: optional Section: libdevel Installed-Size: 4130 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64gcc1 (>= 1:4.8.2-19ubuntu1), libx32gcc1 (>= 1:4.8.2-19ubuntu1), lib64gomp1 (>= 4.8.2-19ubuntu1), libx32gomp1 (>= 4.8.2-19ubuntu1), lib64itm1 (>= 4.8.2-19ubuntu1), libx32itm1 (>= 4.8.2-19ubuntu1), lib64atomic1 (>= 4.8.2-19ubuntu1), libx32atomic1 (>= 4.8.2-19ubuntu1), lib64asan0 (>= 4.8.2-19ubuntu1), libx32asan0 (>= 4.8.2-19ubuntu1), lib64quadmath0 (>= 4.8.2-19ubuntu1), libx32quadmath0 (>= 4.8.2-19ubuntu1) Recommends: libc6-dev (>= 2.13-0ubuntu6) Filename: pool/main/g/gcc-4.8/libx32gcc-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 1559220 MD5sum: dc7a9624d73f3d7d03f23cd3237ea34b SHA1: 3e7070fa6b4006ec78545ceb4b9a739a504ac4f2 SHA256: 03486d913341d5ea42144134bf1727d2023c3395177e234e6ca2148b57cd4577 Description: GCC support library (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: df49fd36cacd441ececa361c98eaaa4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32gcc1 Priority: optional Section: libs Installed-Size: 111 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libc6-x32 (>= 2.16) Filename: pool/main/g/gccgo-4.9/libx32gcc1_4.9-20140406-0ubuntu1_i386.deb Size: 38586 MD5sum: 5fe1b4948b8727631e1321f462952644 SHA1: 74395c88277d033ab5dd8d57913a155e11a80a86 SHA256: 181278923c2c5e65a99c58a2f2a3a9036e03693a3ad79f680399b027f5b95d88 Description: GCC support library (x32) Homepage: http://gcc.gnu.org/ Description-md5: 23c4abc6ef9d972b6f047316897bf30d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32gcc1-dbg Priority: extra Section: debug Installed-Size: 392 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 (4.9-20140406-0ubuntu1) Version: 1:4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libx32gcc1 (= 1:4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/libx32gcc1-dbg_4.9-20140406-0ubuntu1_i386.deb Size: 83240 MD5sum: 8d300b0871cba1020ac02de9ec1bbcdc SHA1: 926b215033ddc9ca37200a33046fb819fe59b6c9 SHA256: 508ea7b75de4281bd46563122dd5ce6da6836eddda426e6ee361399d5a39aea1 Description: GCC support library (debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: d2281f8d5a2b7dae7c362df43affcb03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32gfortran-4.7-dev Priority: optional Section: libdevel Installed-Size: 2170 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gfortran-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libx32gfortran3 (>= 4.7.3-12ubuntu1) Breaks: gfortran-4.7-multilib (<< 4.7.2-10) Filename: pool/main/g/gcc-4.7/libx32gfortran-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 266840 MD5sum: aaebfaf6da82bf7504a21f205f1bcf8e SHA1: a92cda48fdd650d38ea0edde507ef017c8461324 SHA256: 7af447af0d8430581dd8df185365f07b8e07d6a7446ed6723a099e2d07604b17 Description: Runtime library for GNU Fortran applications (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: aae616b6d05c4081844ad0d321e187db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32gfortran-4.8-dev Priority: optional Section: libdevel Installed-Size: 2173 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gcc-4.8-dev (= 4.8.2-19ubuntu1), libx32gfortran3 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32gfortran-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 267838 MD5sum: 086fcf3ca72af77453249774de5e07d4 SHA1: 373eeffee6b95e6df6a333dd532be6652c54167c SHA256: 906bb7b96164e4f1cc207fc7dc5ea85cf980289d77b3a4a3167e3c8965ee3eb8 Description: Runtime library for GNU Fortran applications (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: aae616b6d05c4081844ad0d321e187db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32gfortran3 Priority: optional Section: libs Installed-Size: 1110 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), lib64quadmath0 (>= 4.6), libc6-x32 (>= 2.17), libx32gcc1 Filename: pool/main/g/gcc-4.8/libx32gfortran3_4.8.2-19ubuntu1_i386.deb Size: 247162 MD5sum: f7fa09dde1ae731cde5c9819cbca5bdf SHA1: 828200fa95a61fb78447cfdaafbaf45d120c56a1 SHA256: e0a6f330643b966eba5a33b983b4907bea459a5fb801ef175a98f39dec4b71f7 Description: Runtime library for GNU Fortran applications (x32) Homepage: http://gcc.gnu.org/ Description-md5: 3c011e928f9c344ce5ade56af0ec77b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32gfortran3-dbg Priority: extra Section: debug Installed-Size: 3218 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gfortran3 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32gfortran3-dbg_4.8.2-19ubuntu1_i386.deb Size: 570906 MD5sum: f74ecba4a2e93b0166bda9ac680e5e3e SHA1: d4b1aa7400b495e82757743c6720596f4acab337 SHA256: d2ea52920e5d25b30068312145288c97e00df7c264d1f1d913eca60000dd2b78 Description: Runtime library for GNU Fortran applications (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 10f29f1b5242ebba520971f18415252b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32go4 Priority: optional Section: libs Installed-Size: 10526 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Replaces: libx32go3 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16), libx32gcc1 Filename: pool/main/g/gcc-4.8/libx32go4_4.8.2-19ubuntu1_i386.deb Size: 2172614 MD5sum: 921953f7df78e86d90a7951b039893c7 SHA1: bf260c964fb115bc6cd2090b1f6c2fd410deb09e SHA256: ca4790cd384a14dfff6e4b7cc7e07ae281138c79be3e3d91233df8fe5c164ae5 Description: Runtime library for GNU Go applications (x32) Homepage: http://gcc.gnu.org/ Description-md5: 274d67a4807b2168ae6370f3e1f6a565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32go4-dbg Priority: extra Section: debug Installed-Size: 9920 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32go4 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32go4-dbg_4.8.2-19ubuntu1_i386.deb Size: 2657842 MD5sum: 4931c4de84881519b069aaec5ef997bd SHA1: 66e78b39530c59100cfd362270088d027b9fefcf SHA256: 319b6386b35d52cd93b6a81b641454864ec3848c9dcd32a5c949b4fce13b7907 Description: Runtime library for GNU Go applications (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: b33948c5b9b0f100214d8270ff91f5b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32go5 Priority: optional Section: libs Installed-Size: 11454 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Replaces: libx32go3 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), lib64gcc1 (>= 1:4.1.1), libc6-x32 (>= 2.16) Filename: pool/main/g/gccgo-4.9/libx32go5_4.9-20140406-0ubuntu1_i386.deb Size: 2401754 MD5sum: e4934ddd09fc2410435c159e7852a91c SHA1: 776eeb63831ae87fdd0b7b9de2647657e1ad2b29 SHA256: 31dc53beaa5e16a34a542b302a47a142a5cb143c2c929876b8987085ecebb2da Description: Runtime library for GNU Go applications (x32) Homepage: http://gcc.gnu.org/ Description-md5: 274d67a4807b2168ae6370f3e1f6a565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32go5-dbg Priority: extra Section: debug Installed-Size: 10574 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gccgo-4.9 Version: 4.9-20140406-0ubuntu1 Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1), libx32go5 (= 4.9-20140406-0ubuntu1) Filename: pool/main/g/gccgo-4.9/libx32go5-dbg_4.9-20140406-0ubuntu1_i386.deb Size: 2847836 MD5sum: b35abc9bb9fed5bee10429b1afdb85ad SHA1: e06c3180f730f0cff3ee7a9881bf9591bb2ff535 SHA256: b533c4990bf7fa718440ab0a92bd409685fe430a11b9900a41b8ed1ca2396f62 Description: Runtime library for GNU Go applications (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: b33948c5b9b0f100214d8270ff91f5b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32gomp1 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.17) Filename: pool/main/g/gcc-4.8/libx32gomp1_4.8.2-19ubuntu1_i386.deb Size: 22482 MD5sum: 59fc3ed463b0599b130f3200f31e5ff0 SHA1: 35a2c842895923d401dbdb3f88753ae8415b468d SHA256: c79d9fc5f12878e39c9b4e919e3282e2692875f5daa7237a50ea061cc854a9cf Description: GCC OpenMP (GOMP) support library (x32) Homepage: http://gcc.gnu.org/ Description-md5: 1388436f97e9425feb598766343a05b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32gomp1-dbg Priority: extra Section: debug Installed-Size: 228 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gomp1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32gomp1-dbg_4.8.2-19ubuntu1_i386.deb Size: 54574 MD5sum: b03d98ff14ebf022ad79e20db0535263 SHA1: e609a036a745f684c2826b65932b0e1a8a3b7e14 SHA256: c813c9e8aae52331f0075e605a238a6dd17298fdb8acd86891ced8fa6a27247f Description: GCC OpenMP (GOMP) support library (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 7f819ff9ae10ec2d6646003e0204dc5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32itm1 Priority: optional Section: libs Installed-Size: 138 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16) Filename: pool/main/g/gcc-4.8/libx32itm1_4.8.2-19ubuntu1_i386.deb Size: 28342 MD5sum: d3236e6936cc45ab23a3b7a380aa8466 SHA1: 747bb1045850c983041d30523985041cf36e21d9 SHA256: c44f1fad5084a376de5e0e30d33c73fa4889fe0b451642a586713f9f66732b93 Description: GNU Transactional Memory Library (x32) Homepage: http://gcc.gnu.org/ Description-md5: 60c3549c857ee22163b3a82b265880de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32itm1-dbg Priority: extra Section: debug Installed-Size: 837 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32itm1 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32itm1-dbg_4.8.2-19ubuntu1_i386.deb Size: 173432 MD5sum: 9223b414a47be6e9cc604a82a6701942 SHA1: 952dfdee9f3f44e4597040bcda5a2174a6ae7c4c SHA256: 47f13dce773603fc9a18396423d235fe409c5f0a2f67ceb53f9162d9e6284e04 Description: GNU Transactional Memory Library (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 139a395a1e47ba8b13f22f43588f31ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32ncurses5 Priority: optional Section: libs Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libx32tinfo5 (= 5.9+20140118-1ubuntu1), libc6-x32 (>= 2.16), libtinfo5 Filename: pool/main/n/ncurses/libx32ncurses5_5.9+20140118-1ubuntu1_i386.deb Size: 92380 MD5sum: 0257f07c34bfa7bc6b31354aeed870a6 SHA1: a79aef1c5d3212a8088bfc4b15fb702d91f35c12 SHA256: 035105aec2b8472c8c1f2636b82b55534ee41bbb3871af45779b89145f7713d7 Description: shared libraries for terminal handling (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: fceb9a289e870db9f0ebc092d5b96499 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32ncurses5-dev Priority: optional Section: libdevel Installed-Size: 555 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libx32tinfo5 (= 5.9+20140118-1ubuntu1), libx32ncurses5 (= 5.9+20140118-1ubuntu1), libx32tinfo-dev (= 5.9+20140118-1ubuntu1), libncurses5-dev (= 5.9+20140118-1ubuntu1), libc6-dev-x32, libtinfo5 Suggests: ncurses-doc Filename: pool/main/n/ncurses/libx32ncurses5-dev_5.9+20140118-1ubuntu1_i386.deb Size: 117378 MD5sum: 270ef25516c85e88a0e1a7766a69fd80 SHA1: d59c79d04958715cce42b735f7e11a41a541b369 SHA256: 3e4fb40f669ea3dd3b192956d5f0f3d1fc4e9ab6d34f5daee8e98e265229b78a Description: developer's libraries for ncurses (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: b4a970837706b4434dc3c622b9db96a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32ncursesw5 Priority: optional Section: libs Installed-Size: 347 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libx32tinfo5 (= 5.9+20140118-1ubuntu1), libc6-x32 (>= 2.16), libtinfo5 Filename: pool/main/n/ncurses/libx32ncursesw5_5.9+20140118-1ubuntu1_i386.deb Size: 118866 MD5sum: a626380a82dae7af1557c8f1ff2e203b SHA1: 4fd27262b6a0e30756da0bb7a783e6d5bcd663f0 SHA256: 7dcaeca8312c9a2698bb6846de2805e9e48dac34a759ba0468b385e1b921ef1b Description: shared libraries for terminal handling (wide character support) (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: ded417186d6fc291b9168dbf45fc2904 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32ncursesw5-dev Priority: optional Section: libdevel Installed-Size: 664 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libx32tinfo5 (= 5.9+20140118-1ubuntu1), libx32ncursesw5 (= 5.9+20140118-1ubuntu1), libx32tinfo-dev (= 5.9+20140118-1ubuntu1), libncursesw5-dev (= 5.9+20140118-1ubuntu1), libc6-dev-x32, libtinfo5 Suggests: ncurses-doc Filename: pool/main/n/ncurses/libx32ncursesw5-dev_5.9+20140118-1ubuntu1_i386.deb Size: 145018 MD5sum: dbfd01e2e8bcaf0de071609e96791aa1 SHA1: 450840bf2c8a4831dfb93cc414a26455038bcb3e SHA256: aec2b934a0e8a8938b08679075ae285c37140a3dba598e8987ac8bf3847ed3f7 Description: developer's libraries for ncursesw (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: e08e46c6b2e6a096698ef5796a340bcd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32objc-4.7-dev Priority: optional Section: libdevel Installed-Size: 1790 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: gobjc-4.7-multilib (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libx32gcc-4.7-dev (= 4.7.3-12ubuntu1), libx32objc4 (>= 4.7.3-12ubuntu1) Filename: pool/main/g/gcc-4.7/libx32objc-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 341054 MD5sum: b515037f39a8493d8c75dcd3d1bb8aa2 SHA1: d8c2d834bec0675bc8214485b75cad9e4acf9888 SHA256: b6ad5fe4b5326c4505e20b2da13521be34063c9d05dd9965ade9528abecc9287 Description: Runtime library for GNU Objective-C applications (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: f7dcb47d6608005e0ecbde60e08685b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32objc-4.8-dev Priority: optional Section: libdevel Installed-Size: 2048 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gcc-4.8-dev (= 4.8.2-19ubuntu1), libx32objc4 (>= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32objc-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 347012 MD5sum: a28313c365a0ae9301886388d9695021 SHA1: 06e633c870b8390c05b37682469ba656cb5acbf9 SHA256: 78fcc0096885acd224ed64ce3d53321a4b1fc000ec4c0597c37ff065ffd0acec Description: Runtime library for GNU Objective-C applications (x32 development files) Homepage: http://gcc.gnu.org/ Description-md5: f7dcb47d6608005e0ecbde60e08685b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32objc4 Priority: optional Section: libs Installed-Size: 364 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16), libx32gcc1 Filename: pool/main/g/gcc-4.8/libx32objc4_4.8.2-19ubuntu1_i386.deb Size: 105144 MD5sum: 55b2635bbc3a2871f5f40b9e6d75a3ba SHA1: 10755b6ac81ef46f9d1c88bdf9a1591654331d17 SHA256: 9fa25c949ca328ea326134fa0a82f92354bc251621749f9da152165b6b6eaff7 Description: Runtime library for GNU Objective-C applications (x32) Homepage: http://gcc.gnu.org/ Description-md5: e253306fc795d9cc9e7c2acac0d2ad1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32objc4-dbg Priority: extra Section: debug Installed-Size: 799 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32objc4 (= 4.8.2-19ubuntu1), libx32gcc1-dbg (>= 1:4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32objc4-dbg_4.8.2-19ubuntu1_i386.deb Size: 203472 MD5sum: 2c17156105faf69f5e7ef693b63030e6 SHA1: 692ebfec507415dd0ca3df789dfa67d24db89524 SHA256: a6f4d5b07eade5e6083792b697f226bbc7d998ab60b7557729ed1b954f590f61 Description: Runtime library for GNU Objective-C applications (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: 15ac2bbe50562f8e9e528e6d5f6f1024 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32quadmath0 Priority: optional Section: libs Installed-Size: 267 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libc6-x32 (>= 2.16) Filename: pool/main/g/gcc-4.8/libx32quadmath0_4.8.2-19ubuntu1_i386.deb Size: 127632 MD5sum: 728f7842f61f7111c1cb062566f0fc6e SHA1: 2b6c56d6c18afe15154fd232989b4de716b5a022 SHA256: 6e08459a0e7a9e006e484b699933fbbeb8058e0d580c94d0a7e00f9a4e2dacc1 Description: GCC Quad-Precision Math Library (x32) Homepage: http://gcc.gnu.org/ Description-md5: 514c6a5cffd4febce8121f2d08419504 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libx32quadmath0-dbg Priority: extra Section: debug Installed-Size: 549 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32quadmath0 (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32quadmath0-dbg_4.8.2-19ubuntu1_i386.deb Size: 143470 MD5sum: 9be1f104aea4b3b912c462d30e9cca89 SHA1: 5690921ea7c93a4b630dc277df3dbdb1889cc4ec SHA256: 4025749815fc20f9124a7f89da83d35bf0e9a3faa7080f0b7a0a4266b0b0252b Description: GCC Quad-Precision Math Library (x32 debug symbols) Homepage: http://gcc.gnu.org/ Description-md5: d1cced9ca62d9dde3650384b57532901 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32readline6 Priority: optional Section: libs Installed-Size: 348 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: readline6 Version: 6.3-4ubuntu2 Depends: readline-common, libc6-x32 (>= 2.16), libx32tinfo5 Filename: pool/main/r/readline6/libx32readline6_6.3-4ubuntu2_i386.deb Size: 114380 MD5sum: 88a98a23bb550163d9dbc4cbe095deb6 SHA1: 4c60ad7f2fbf8d62f60073bd66b41f245c348382 SHA256: 5f6f57179cb31f6061d6668be70d361f97b0365f3b59abfb0a46c194ce66538f Description: GNU readline and history libraries, run-time libraries (x32) Description-md5: a24bad6e943ee70c4af3f3d151862999 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32readline6-dev Priority: optional Section: libdevel Installed-Size: 455 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: readline6 Version: 6.3-4ubuntu2 Provides: libx32readline-dev Depends: libx32readline6 (= 6.3-4ubuntu2), libx32tinfo-dev, libc6-dev-x32 Conflicts: libx32readline-dev, libx32readline-gplv2-dev Filename: pool/main/r/readline6/libx32readline6-dev_6.3-4ubuntu2_i386.deb Size: 107790 MD5sum: 57c078c0fe33322704355ca9b5c5a75f SHA1: ce88b871fb2eb7475fb893925285abcf62a55daf SHA256: 6ec0d17c58b5669ebd91961eade8b0698498d280070cd4be6e7735119c2da8c7 Description: GNU readline and history libraries, development files (x32) Description-md5: f6c0478c47e41ba607cdd59b43b7e16e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32stdc++-4.8-dev Priority: optional Section: libdevel Installed-Size: 4892 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gcc-4.8-dev (= 4.8.2-19ubuntu1), libx32stdc++6 (>= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1) Filename: pool/main/g/gcc-4.8/libx32stdc++-4.8-dev_4.8.2-19ubuntu1_i386.deb Size: 315496 MD5sum: f107a09927f8f66fffbde0d518ce86ee SHA1: 8b56ac14b5cdc88267c7d082ed97d6fc55f646f8 SHA256: 5386c090c28ef9f40514aecdb1df0c3b1eb7a7785aaa559015eb20a01652bd82 Description: GNU Standard C++ Library v3 (development files) Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32stdc++6 Priority: optional Section: libs Installed-Size: 884 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32gcc1 (>= 4.8.2-19ubuntu1), libc6-x32 (>= 2.17) Filename: pool/main/g/gcc-4.8/libx32stdc++6_4.8.2-19ubuntu1_i386.deb Size: 234756 MD5sum: 1e9c39c276961fd1b6859ca0f3e498e8 SHA1: f72314c66e081a95caab877cec3de6bcee34ec9c SHA256: f0591412f3d8a512e441d75f8e77ab80867950b5efbf8be51370ce2dc9c86603 Description: GNU Standard C++ Library v3 (x32) Homepage: http://gcc.gnu.org/ Description-md5: f336833aedca4cda1d9923ce79172164 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32stdc++6-4.7-dbg Priority: extra Section: debug Installed-Size: 17788 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libx32stdc++6 (>= 4.7.3-12ubuntu1), libstdc++6-4.7-dev (= 4.7.3-12ubuntu1), libx32gcc1-dbg (>= 1:4.7.3-12ubuntu1), libc6-x32 (>= 2.16), libx32gcc1 Conflicts: libx32stdc++6-4.0-dbg, libx32stdc++6-4.1-dbg, libx32stdc++6-4.2-dbg, libx32stdc++6-4.3-dbg, libx32stdc++6-4.4-dbg, libx32stdc++6-4.5-dbg, libx32stdc++6-4.6-dbg, libx32stdc++6-dbg Filename: pool/main/g/gcc-4.7/libx32stdc++6-4.7-dbg_4.7.3-12ubuntu1_i386.deb Size: 2621222 MD5sum: 24ccdae4953a2574b16d169a00dff428 SHA1: 86ac1e0314f63bb6c3df8bbe017307d2a166e3a8 SHA256: 115ae29ff8b88f659f455ec6b142d9f8a7c518e73524fe9d07a091d961bc8007 Description: GNU Standard C++ Library v3 (debugging files) Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32stdc++6-4.7-dev Priority: optional Section: libdevel Installed-Size: 4797 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.7 Version: 4.7.3-12ubuntu1 Replaces: g++-4.7-multilib (<< 4.7.2-10), libstdc++6-4.7-dev (<< 4.7.2-10) Depends: gcc-4.7-base (= 4.7.3-12ubuntu1), libx32gcc-4.7-dev (= 4.7.3-12ubuntu1), libx32stdc++6 (>= 4.7.3-12ubuntu1), libstdc++6-4.7-dev (= 4.7.3-12ubuntu1) Breaks: g++-4.7-multilib (<< 4.7.2-10), libstdc++6-4.7-dev (<< 4.7.2-10) Filename: pool/main/g/gcc-4.7/libx32stdc++6-4.7-dev_4.7.3-12ubuntu1_i386.deb Size: 304220 MD5sum: 7af3e190c0bfd67ab44270ca6da393dd SHA1: 087a2a0d0303a38ace6aeb940b7937c14eb8dfec SHA256: f5996cb6ffe2bf7e27d1a075b00d8e3c7c294dc605b026eb07fed46a7b49e993 Description: GNU Standard C++ Library v3 (development files) Homepage: http://gcc.gnu.org/ Description-md5: a197f2aec835e5fc6f8f76039d8a7c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32stdc++6-4.8-dbg Priority: extra Section: debug Installed-Size: 21737 Maintainer: Ubuntu Core developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: gcc-4.8 Version: 4.8.2-19ubuntu1 Depends: gcc-4.8-base (= 4.8.2-19ubuntu1), libx32stdc++6 (>= 4.8.2-19ubuntu1), libstdc++-4.8-dev (= 4.8.2-19ubuntu1), libx32gcc1-dbg (>= 1:4.8.2-19ubuntu1), libc6-x32 (>= 2.17), libx32gcc1 Conflicts: libx32stdc++6-4.6-dbg, libx32stdc++6-4.7-dbg, libx32stdc++6-dbg Filename: pool/main/g/gcc-4.8/libx32stdc++6-4.8-dbg_4.8.2-19ubuntu1_i386.deb Size: 3548998 MD5sum: 3df39618f852fcaa01f3b29f5f30ca2a SHA1: 79f5bf47ca2e2ae8770e6b448fb727043347a2ce SHA256: a37ef79f0b6babdfe0334829f4150911256ff7f0af5bf459d9b84dd9cf288733 Description: GNU Standard C++ Library v3 (debugging files) Homepage: http://gcc.gnu.org/ Description-md5: 6d699ea4429a346bc58e56d70e561407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32tinfo-dev Priority: optional Section: libdevel Installed-Size: 299 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libx32tinfo5 (= 5.9+20140118-1ubuntu1), libc6-dev-x32, libtinfo5 Filename: pool/main/n/ncurses/libx32tinfo-dev_5.9+20140118-1ubuntu1_i386.deb Size: 73818 MD5sum: 88da7ab3d8307b535a793dc75da4a7a2 SHA1: 7f060e655bab902521fff38116a63c14684f93df SHA256: 18c8c99f750026049347486505b8012bca370786bb2923dbd7d106be524ea51b Description: developer's library for the low-level terminfo library (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: 07504aca713c2109065ae32313771856 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32tinfo5 Priority: optional Section: libs Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libc6-x32 (>= 2.16), libtinfo5 Filename: pool/main/n/ncurses/libx32tinfo5_5.9+20140118-1ubuntu1_i386.deb Size: 70508 MD5sum: 0a63aab07714e9ad9168be95c8707820 SHA1: c5919911f3312250cb64968c32ff8e364b4e8918 SHA256: 351d8174f1edb258833d786bbbf1eb14fc4e90e4b8c386da6f81b9b5c0d17116 Description: shared low-level terminfo library for terminal handling (x32) Homepage: http://invisible-island.net/ncurses/ Description-md5: aaad1594952fc8f070fce7c9f0e240c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32z1 Priority: optional Section: libs Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: i386 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Depends: libc6-x32 (>= 2.16) Filename: pool/main/z/zlib/libx32z1_1.2.8.dfsg-1ubuntu1_i386.deb Size: 57026 MD5sum: d5fb29ce7780afc7f9dc7c22642b58b1 SHA1: ba9db85e5cddd70d2081fd9ea71cd586f782df37 SHA256: 84688a6c6c4cb145b383e61b27b0e7e90e65ffffba3c9e0ff3abc73fc96c14c6 Description: compression library - x32 runtime Homepage: http://zlib.net/ Description-md5: 43b890ebbaaf716c8be463b3eb420ee1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx32z1-dev Priority: optional Section: libdevel Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: i386 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Provides: libx32z-dev Depends: libx32z1 (= 1:1.2.8.dfsg-1ubuntu1), zlib1g-dev (= 1:1.2.8.dfsg-1ubuntu1), libc6-dev-x32 Filename: pool/main/z/zlib/libx32z1-dev_1.2.8.dfsg-1ubuntu1_i386.deb Size: 59832 MD5sum: 2abf7c434780c634aae2e08b07f971f4 SHA1: 1c5c5176681dd7f8691a041800eab687f7317c8c SHA256: 8b9fa8ea9b8a424b4d0ed38c5c0e65bdbe011b8b7d8fc71ab2dcb58f4af18f9a Description: compression library - x32 development Homepage: http://zlib.net/ Description-md5: 82315c3eb71ce061dcb8ee0ecbad5d8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx86-1 Priority: optional Section: libs Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libx86 Version: 1.1+ds1-10 Depends: libc6 (>= 2.7) Pre-Depends: multiarch-support Filename: pool/main/libx/libx86/libx86-1_1.1+ds1-10_i386.deb Size: 81734 MD5sum: c3ba8da89328045a393897e1193591d3 SHA1: 76edabb5ffaacec1d7a6f3ca7cc839b58cd00488 SHA256: a763638766857dfffaf6580012b8ab4969cb730b930d04de73f7de2143e1c354 Description: x86 real-mode library Multi-Arch: same Homepage: http://www.codon.org.uk/~mjg59/libx86/ Description-md5: 1f1d01fce5eb3b4aedab0103a3f4bcdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-photography, ubuntustudio-graphics Package: libx86-dbg Priority: extra Section: libs Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libx86 Version: 1.1+ds1-10 Depends: libx86-1 (= 1.1+ds1-10) Filename: pool/main/libx/libx86/libx86-dbg_1.1+ds1-10_i386.deb Size: 152184 MD5sum: 1a1c16b8ec7835bf2741f93fd623a1c2 SHA1: d74249065d631c817488c6f75ed5c1704eb52cdb SHA256: aff69da3d3ce14e3b5dc9e57d4d32c3f5ac8bb8afc7a12babb29f001189f6431 Description: x86 real-mode library - debugging symbols Multi-Arch: same Homepage: http://www.codon.org.uk/~mjg59/libx86/ Description-md5: 1e41a84650f6fcdcec72f2ffa11236db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libx86-dev Priority: optional Section: libdevel Installed-Size: 360 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Source: libx86 Version: 1.1+ds1-10 Depends: libx86-1 (= 1.1+ds1-10) Filename: pool/main/libx/libx86/libx86-dev_1.1+ds1-10_i386.deb Size: 94230 MD5sum: 75830cbc487e9d858ddc50d69f49d694 SHA1: 04751ea367d5b1856aa2227e17914c95261a7798 SHA256: abff6e857c642dc8c02a1ca306c7f692d1b28092bede9f757d087e4ea6fda520 Description: x86 real-mode library - development files Homepage: http://www.codon.org.uk/~mjg59/libx86/ Description-md5: 5a03e1cc60bcf7a789f71348ff2b423f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxalan2-java Priority: optional Section: libs Installed-Size: 3456 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.7.1-9 Depends: libjaxp1.3-java, libxerces2-java (>= 2.8.0) Suggests: libxalan2-java-doc, libbsf-java, libxsltc-java Filename: pool/main/libx/libxalan2-java/libxalan2-java_2.7.1-9_all.deb Size: 3166282 MD5sum: 2a297e71c37131444018c3f8da7ddacf SHA1: 56043a6a68b7a4c85c3ef0597f0b76bfded3923f SHA256: 0e69e37cf704c1b684b2a159443c50d8ba381c3d7c7e29723b2f114147ae6bf3 Description: XSL Transformations (XSLT) processor in Java Homepage: http://xalan.apache.org/xalan-j/ Description-md5: 3986b31a891090feaaaccd6e47cab52a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libxalan2-java-doc Priority: optional Section: doc Installed-Size: 48642 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libxalan2-java Version: 2.7.1-9 Filename: pool/main/libx/libxalan2-java/libxalan2-java-doc_2.7.1-9_all.deb Size: 2540370 MD5sum: 36cc77f65889eb222f7017ee107c65cb SHA1: be240f75116980b6299cf97d25593be0383cb006 SHA256: 24253555cd43d40411fb2baf0b8e735c7bcc882d14411b21c2ad321511aafc0a Description: Documentation and examples for the Xalan-Java XSLT processor Homepage: http://xalan.apache.org/xalan-j/ Description-md5: 366dcca312dfffbb40422250be7acdaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxapian-dev Priority: optional Section: libdevel Installed-Size: 5029 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: i386 Source: xapian-core Version: 1.2.16-2ubuntu1 Depends: libxapian22 (= 1.2.16-2ubuntu1), libc6-dev | libc-dev Suggests: xapian-doc (= 1.2.16-2ubuntu1), xapian-examples (= 1.2.16-2ubuntu1) Filename: pool/main/x/xapian-core/libxapian-dev_1.2.16-2ubuntu1_i386.deb Size: 754596 MD5sum: ea6dd31b06a202a71fc449c5b71ec52d SHA1: fb45974bddd3e697c743b9c56f12f80367bd16b2 SHA256: 438c7654a1cf46011c9ad79e6d0a1a8733241f20d115fa4f27df946fcea46590 Description: Development files for Xapian search engine library Homepage: http://xapian.org/ Description-md5: be6758fb868bceeed72f590afe9bb6b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxapian22 Priority: optional Section: libs Installed-Size: 4403 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: i386 Source: xapian-core Version: 1.2.16-2ubuntu1 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4) Suggests: xapian-tools Filename: pool/main/x/xapian-core/libxapian22_1.2.16-2ubuntu1_i386.deb Size: 736460 MD5sum: e68782afaf796d6a6715e52e629c0e77 SHA1: eb9b5c12c19c8bc3bcfd3f54ecc30b2e6cbb897b SHA256: d3869c8a165d9769f2a85793357e96fa290ff78d16811c891c93ca03de8e032b Description: Search engine library Homepage: http://xapian.org/ Description-md5: fe05dace1ac9262883532dcc501c8507 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxapian22-dbg Priority: extra Section: debug Installed-Size: 40471 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: i386 Source: xapian-core Version: 1.2.16-2ubuntu1 Depends: libxapian22 (= 1.2.16-2ubuntu1) Suggests: libc6-dbg, libgcc1-dbg, zlib1g-dbg, libstdc++6-4.6-dbg Filename: pool/main/x/xapian-core/libxapian22-dbg_1.2.16-2ubuntu1_i386.deb Size: 9523376 MD5sum: 1202bdac2d8dc2d790ed50a4843776b2 SHA1: 267af0a43753273cfeec0459375c3c7520cea2f9 SHA256: f7a2321228815c976fbe467862328aa6a245a290da9c5542e637cd721a9df830 Description: Debugging symbols for the Xapian Search engine library Homepage: http://xapian.org/ Description-md5: f48a1ddae06cd33aee00b8547bf878c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker-dev Priority: optional Section: libdevel Installed-Size: 105 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libxatracker2 (= 10.1.0-4ubuntu5) Filename: pool/main/m/mesa/libxatracker-dev_10.1.0-4ubuntu5_i386.deb Size: 7616 MD5sum: 7519be3260de100309b832fe5d9db969 SHA1: 08c996c492c9fa75bfd324e4a59a931d6a6f7243 SHA256: 2395f67feba14fc37ec741ffc1cc30a3bde508abf2f345978e08cea5a3609050 Description: X acceleration library -- development files Homepage: http://mesa3d.sourceforge.net/ Description-md5: acb2dd21dbe796c5f50a1f153cef93e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker-dev Filename: pool/main/x/xorg-lts-transitional/libxatracker-dev-lts-quantal_5_i386.deb Size: 1546 MD5sum: d607ec4ed7cc7b30f83321c4684a113b SHA1: 6a7c22ce1aa080be45625852dbba558064052418 SHA256: e2cf5022d36c4c0b6995cbe22e9645e1be11be9a28d1159365bf867cd6e50988 Description: Transitional package for libxatracker-dev Multi-Arch: same Description-md5: ed2599ab017b0917434cd8765ae1b5cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker-dev Filename: pool/main/x/xorg-lts-transitional/libxatracker-dev-lts-raring_5_i386.deb Size: 1546 MD5sum: ccb8ab08d837084858469c9ff5197fc0 SHA1: 450bba62f5405af01e6009132293803eb7e4b498 SHA256: fd4aa49b2b829b04151aaf9231a8e6aa7c5137eb72d301425fe0cda1050575da Description: Transitional package for libxatracker-dev Multi-Arch: same Description-md5: ed2599ab017b0917434cd8765ae1b5cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker-dev Filename: pool/main/x/xorg-lts-transitional/libxatracker-dev-lts-saucy_5_i386.deb Size: 1546 MD5sum: a4e05699c0efd5eb88827a27d574c06f SHA1: 6121c0acbb496eb83eb9344f89b80bde6946d297 SHA256: 641785d1cc7816be14e8669e8323836dc10fd84a7ab124445017a7effd04eebb Description: Transitional package for libxatracker-dev Multi-Arch: same Description-md5: ed2599ab017b0917434cd8765ae1b5cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2 Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-quantal_5_i386.deb Size: 1540 MD5sum: e4baeaa1c1fa031d9a2521f1eaaab253 SHA1: 3c515a0d01b72a354fe14814764a7dcf467b59cd SHA256: f735bd67606046e5b211696d214a20c744c31f7a71b99cb753dbd9bc01893212 Description: Transitional package for libxatracker2 Multi-Arch: same Description-md5: d791b1c60917d0805f9e5b9e9c90a314 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2-dbg Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-quantal-dbg_5_i386.deb Size: 1550 MD5sum: 27029734eecf556688ff9a5d55d83bc4 SHA1: a14759d0c1f0c611fd6bd26b1e66cbb67debcd24 SHA256: 06262be4b75a01ed5dffec1923dec7a8076608b25f13738e0e9b284a89e41473 Description: Transitional package for libxatracker2-dbg Multi-Arch: same Description-md5: 6c7a2c8806e776e2838c31ce519ee8e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2 Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-raring_5_i386.deb Size: 1540 MD5sum: aa0269033c9991846f7b4b1479717f4a SHA1: ea2e050ce3ff71cd52eb83a36361656de23ceaea SHA256: ded2dfaa3cdc40991d2a195cdec3d37982c5dac1f181b995a7705ce053eb6404 Description: Transitional package for libxatracker2 Multi-Arch: same Description-md5: d791b1c60917d0805f9e5b9e9c90a314 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2-dbg Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-raring-dbg_5_i386.deb Size: 1548 MD5sum: 193c4a7b2c35af85941eac9c6154d822 SHA1: e68a1903b314952698da72af10fb887d7b1b5b2c SHA256: a97e2c2a50354f51ec510b6d07fb007478bef42e65d752aa54fcee3212089af6 Description: Transitional package for libxatracker2-dbg Multi-Arch: same Description-md5: 6c7a2c8806e776e2838c31ce519ee8e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2 Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-saucy_5_i386.deb Size: 1538 MD5sum: 06265eb9a7633ed0bfc1cc8fb30e6cca SHA1: 7ccd83d465a8dacf048595db8fb63623f361b1f4 SHA256: d7ea529f8279bf7c4558df4785a2bff38a2e31f3ef84cb70eb2cd1950a8bf44f Description: Transitional package for libxatracker2 Multi-Arch: same Description-md5: d791b1c60917d0805f9e5b9e9c90a314 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker1-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxatracker2-dbg Filename: pool/main/x/xorg-lts-transitional/libxatracker1-lts-saucy-dbg_5_i386.deb Size: 1548 MD5sum: 659a8cfd4421d58a45451508762e0431 SHA1: 8b9a457761ffdc8acfabcbc3bb373920e86cfea1 SHA256: 87d24a9469f992da1fb329dae8f722f46a5f638f1e46e5e04b1b016127d07f47 Description: Transitional package for libxatracker2-dbg Multi-Arch: same Description-md5: 6c7a2c8806e776e2838c31ce519ee8e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxatracker2 Priority: optional Section: libs Installed-Size: 557 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-dri Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libxatracker2_10.1.0-4ubuntu5_i386.deb Size: 163936 MD5sum: d6ab2c1420f0ab260ad4cc9e8af82071 SHA1: 94a8e1a985f06be66d60f8c0c446b4a159bf98b7 SHA256: a63135819ec6b7158ff0dd60fb6d5df6742100a78fe96e51000d935b2a21ca97 Description: X acceleration library -- runtime Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 016e30e30b0b6c5bb9448c735436c520 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxatracker2-dbg Priority: extra Section: debug Installed-Size: 2313 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Depends: libxatracker2 (= 10.1.0-4ubuntu5) Pre-Depends: multiarch-support Filename: pool/main/m/mesa/libxatracker2-dbg_10.1.0-4ubuntu5_i386.deb Size: 545478 MD5sum: c376c55cf8e83de980e2f102dbf2673e SHA1: 8fd837246b54cd91283d7460c0fc60eea18b5380 SHA256: 68ddb3bb7449b26576858bcf1c77a0aeeb694966a84f70686cc52d7095da0386 Description: X acceleration library -- debugging symbols Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: fe0902eeca3a0d7aa29c9e1bb6de29c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxau-dev Priority: optional Section: libdevel Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxau Version: 1:1.0.8-1 Depends: libxau6 (= 1:1.0.8-1), x11proto-core-dev Filename: pool/main/libx/libxau/libxau-dev_1.0.8-1_i386.deb Size: 10198 MD5sum: 553ed6c1d680cf04f686c4365d8789ca SHA1: 30b9cd12190fbd0cb5d98632410bfdce43e4a4b5 SHA256: 11445c59f6aeb29d44388df88b4036824010123331e317fcaf1e26ffc34db6c8 Description: X11 authorisation library (development headers) Multi-Arch: same Description-md5: 04276f062fd9ff5b762f3c05def85957 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxau6 Priority: standard Section: libs Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxau Version: 1:1.0.8-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libx/libxau/libxau6_1.0.8-1_i386.deb Size: 8352 MD5sum: 62e3f75a55e8639912296273a65d048a SHA1: 17a9f71ca9b7b18c740325c6f8ae9e29c28b7112 SHA256: 96b552504165c79599462b5e9a1a8c18ba14c816add6df38ad4138b77a83ea5c Description: X11 authorisation library Multi-Arch: same Description-md5: 5d4196d3a9c1e5b2896d2005497ee01a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxau6-dbg Priority: extra Section: libdevel Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxau Version: 1:1.0.8-1 Depends: libxau6 (= 1:1.0.8-1) Filename: pool/main/libx/libxau/libxau6-dbg_1.0.8-1_i386.deb Size: 12738 MD5sum: a941bfee254330e0534ae1e0bfb7dd5a SHA1: 15fe569d4b4b3c910235beef234ad91039d3b4d0 SHA256: dd640478f06e56a846a0e1f46b0c3ee9d91b74b1ff0ab47f4145a9e0a9cf8955 Description: X11 authorisation library (debug package) Multi-Arch: same Description-md5: 275206dd5253001a6f95eafe6ef40cbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxaw-doc Priority: optional Section: doc Installed-Size: 1327 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libxaw Version: 2:1.0.12-1 Replaces: libxaw7-dev (<< 2:1.0.10) Breaks: libxaw7-dev (<< 2:1.0.10) Filename: pool/main/libx/libxaw/libxaw-doc_1.0.12-1_all.deb Size: 194106 MD5sum: fd7eb6e036a3e085b346c5091d2c03fe SHA1: 009d82391d72508f1011f47b843a698532be513d SHA256: fa11efe6c9eb491822519c844429059353a42962f46729d79070067fecaed236 Description: X11 Athena Widget library (documentation) Multi-Arch: foreign Description-md5: 1e257105c9d4344bb869f2dda8a6550e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxaw7 Priority: optional Section: libs Installed-Size: 455 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxaw Version: 2:1.0.12-1 Depends: libc6 (>= 2.15), libx11-6, libxext6, libxmu6, libxpm4, libxt6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxaw/libxaw7_1.0.12-1_i386.deb Size: 163826 MD5sum: 85b0faa78525a8b007e5128258521280 SHA1: a853e02607f6570f93611decbcc04d94f3ec093f SHA256: de4ad4f2fbd191a7e0808ee687dc8f1f5d3a4a3fc34f29bc55af0252723eef2f Description: X11 Athena Widget library Multi-Arch: same Description-md5: 8c7fe237917a85b52d396794ed51e5f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxaw7-dbg Priority: extra Section: libdevel Installed-Size: 1270 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxaw Version: 2:1.0.12-1 Depends: libxaw7 (= 2:1.0.12-1) Filename: pool/main/libx/libxaw/libxaw7-dbg_1.0.12-1_i386.deb Size: 363960 MD5sum: 83f071c1a71c775537fe202492e5e1a2 SHA1: 3da4f97c161a42aeacef70873503affcc0a5b523 SHA256: a56c351283f87eba2983d123017424674aa8958cb37e79bfb3890785eea37214 Description: X11 Athena Widget library (debug package) Multi-Arch: same Description-md5: 61bd325ef785214f5a20031ff38f4af5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxaw7-dev Priority: optional Section: libdevel Installed-Size: 890 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxaw Version: 2:1.0.12-1 Depends: libxaw7 (= 2:1.0.12-1), libx11-dev, libxmu-dev, libxpm-dev, x11proto-core-dev Suggests: libxaw-doc Filename: pool/main/libx/libxaw/libxaw7-dev_1.0.12-1_i386.deb Size: 215694 MD5sum: b3b6e45cf2456efab60c773c527b07c7 SHA1: 53641bc9faa81961d774206ef2638c9d8e230f00 SHA256: 78b60bea3057bb8629002f288458b0e22a5b4b99d03b0726b973bcf9512835c1 Description: X11 Athena Widget library (development headers) Multi-Arch: same Description-md5: da51500940506b127a5474310e6aeb10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-composite0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-composite0_1.10-2ubuntu1_i386.deb Size: 5140 MD5sum: 5a1917daae36aef99bf0be319d4d9d46 SHA1: 3f16f32f4be4bc709459c8533cc7987e26521479 SHA256: 7e2bfb52584f0b4b7d372fc8572a3d4ecf902528da1f2a4749e7cc6aedbe9ce3 Description: X C Binding, composite extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: ca6c0d9f4192a4dde52dc2f30e6369fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxcb-composite0-dbg Priority: extra Section: libdevel Installed-Size: 57 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-composite0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-composite0-dbg_1.10-2ubuntu1_i386.deb Size: 8340 MD5sum: dd35c1033985237a34acdff0256bce34 SHA1: 20d0a404ee76e75a52d836ed0d894e272fce4a02 SHA256: 421d16795cc544e600bad929b4021cdce591d533c280c2ce3dc4b52d854e0cb6 Description: X C Binding, composite extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: b359eaaff5811752227860a01a0eff11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-composite0-dev Priority: optional Section: libdevel Installed-Size: 82 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-composite0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-xfixes0-dev Filename: pool/main/libx/libxcb/libxcb-composite0-dev_1.10-2ubuntu1_i386.deb Size: 5800 MD5sum: 791c5d8242f6307dbebe5d8d865ff092 SHA1: 9fea3d9f91a1cd30df9e0e55e6c91793b55d07d0 SHA256: 8f13740a8788e0ec0e91d100ae91a4c75345c63f7cc0ea41a6071a6f9836f4a8 Description: X C Binding, composite extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 00cb00ef9dc567135da248f123b87ed8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-damage0 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-damage0_1.10-2ubuntu1_i386.deb Size: 4844 MD5sum: d1ea335f44c07bb96336a48a833accce SHA1: 81bac01318a908cbfcd1040e46123872032ecb22 SHA256: 34ebb71a07c95f78224e591493190f6b59f1f33fd5a34dd359a040d87619dd4d Description: X C Binding, damage extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: f28e63129125663e1b4c5ea313ae297c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active Package: libxcb-damage0-dbg Priority: extra Section: libdevel Installed-Size: 56 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-damage0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-damage0-dbg_1.10-2ubuntu1_i386.deb Size: 7320 MD5sum: bf7f9cd9ca0ecd58c3cbc43db2f295e3 SHA1: fc2d0d95ceb9915e9285c30de7b70c5273dce923 SHA256: 46be6ceca0d44d8c17c7b59466a81eb0ccdbe5e504061e750eebdc850d8aba1b Description: X C Binding, damage extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 705ae1cbc549f61356c7018105aa2aa3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-damage0-dev Priority: optional Section: libdevel Installed-Size: 71 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-damage0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-xfixes0-dev Filename: pool/main/libx/libxcb/libxcb-damage0-dev_1.10-2ubuntu1_i386.deb Size: 5662 MD5sum: 230bce4a95506cf78c838ec26ea9649a SHA1: 1a1c3c49a6c2529d88aba86ab2312521d4d53cc2 SHA256: 811589ca383966bf30d477c9c7bc8ddc9e8943a4b990dc0e8c2ac31f660d92e1 Description: X C Binding, damage extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 5f289d21c087ffdfbbb63eb2f6d88403 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-doc Priority: optional Section: doc Installed-Size: 36431 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: all Source: libxcb Version: 1.10-2ubuntu1 Filename: pool/main/libx/libxcb/libxcb-doc_1.10-2ubuntu1_all.deb Size: 4618140 MD5sum: baf2b5b4ab740cb3584ff07ce58e4914 SHA1: 459882a9ecb42406b2305cbfb386a0dd71e506b0 SHA256: 1b56fa370a7540f9fb549520fad3c9deff87a76816f571f5ef387e43a864bd38 Description: X C Binding, development documentation Multi-Arch: foreign Homepage: http://xcb.freedesktop.org Description-md5: b97e9d64bda009574d40e0d8fa415c72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dpms0 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-dpms0_1.10-2ubuntu1_i386.deb Size: 5096 MD5sum: 2af7884a663a959ad3b6ace540f160e8 SHA1: 2f2d994cc042b0dd27fe216e9a4763377aed2b69 SHA256: 20b674779ce3fa8977284bd11c16622d1838f6e19479054ffdb740b29c1f8692 Description: X C Binding, dpms extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 4fde6e6df699f9548c8b8e6d5aa613f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dpms0-dbg Priority: extra Section: libdevel Installed-Size: 56 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dpms0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-dpms0-dbg_1.10-2ubuntu1_i386.deb Size: 7568 MD5sum: 901c77fb223336df54e4dbfaf7c1dc77 SHA1: acbff622f5648152048f0bbc54c17ddc9e0a6845 SHA256: 7ef6157a524419380b60643bcf8550bc1e86ed8b18c6a86f39778d69fdf39f8c Description: X C Binding, dpms extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: a092e8c293c685f76014821df4efe0cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dpms0-dev Priority: optional Section: libdevel Installed-Size: 78 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dpms0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-dpms0-dev_1.10-2ubuntu1_i386.deb Size: 5640 MD5sum: 482f4c064378f02ddab341f1868abf02 SHA1: 385b053a392924fc7ca49e177e1307bbd19cd3d5 SHA256: 6d479af826d5188b49203336eca8d6b2932a75de7a3353fcefe9ae8a661ccc3d Description: X C Binding, dpms extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 35fb1c0c538b8e0d45ff1eac3ff582b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dri2-0 Priority: optional Section: libs Installed-Size: 60 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-dri2-0_1.10-2ubuntu1_i386.deb Size: 7150 MD5sum: bd6aeccfba6e38d3dffe31acd700bd46 SHA1: 3021622af00a273a33baa2b40988f767d9468192 SHA256: e654429e5d0b5ff0f8a7b192059511e8de568f60be36614f80cdd86d3c1561cc Description: X C Binding, dri2 extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 7b21058ae591306ca66f2da8f8c45aab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-dri2-0-dbg Priority: extra Section: debug Installed-Size: 63 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dri2-0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-dri2-0-dbg_1.10-2ubuntu1_i386.deb Size: 12194 MD5sum: 96e056851af26e2b59c39152ab858138 SHA1: a8aab790fc813683315e5469e15ffeeb156625d9 SHA256: 1b5ea58ecb3ce3ea448e34446b4efef3a021029feb06b835c02eba7713e3bd34 Description: X C Binding, dri2 extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 2a7c3d4f8fdd6b9967d633b8bf31bd1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dri2-0-dev Priority: optional Section: libdevel Installed-Size: 126 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dri2-0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-dri2-0-dev_1.10-2ubuntu1_i386.deb Size: 9060 MD5sum: ba783009cb6cc91f187e0041b67f2830 SHA1: f787492dcf24b89b613b352d06d1dc1b27d414ef SHA256: 08e68d01091b05b7e4c8f10b93c3c560a52975fb4fb9590d6a169bcc64599088 Description: X C Binding, dri2 extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: aa14a85bcea2f923ff44e959546b453b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-dri3-0 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 (>= 1.9.2) Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-dri3-0_1.10-2ubuntu1_i386.deb Size: 5292 MD5sum: 8bc31b11aad3af31766e2143599946f1 SHA1: ebdf663f558049c36eddff72bf598155b0993482 SHA256: 67fc28a90cc9df43dd851ccc6de06dcb626245c833f7a80e62d3ff8a52beb668 Description: X C Binding, dri3 extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 4b1f92c077a799ce104181ba731ec6fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-dri3-0-dbg Priority: extra Section: debug Installed-Size: 57 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dri3-0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-dri3-0-dbg_1.10-2ubuntu1_i386.deb Size: 8086 MD5sum: c5577b250e53bf535188e9fa80215d1d SHA1: fe32625484d6461c3544bc5a39f70341c742a862 SHA256: 9e26498a4f7f6dca97e61dedb7e210435d633d8b59afb8ffe0d3572a2a7542e4 Description: X C Binding, dri3 extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 9be6b78a5fb4187b0f71fd8089781852 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-dri3-dev Priority: optional Section: libdevel Installed-Size: 81 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-dri3-0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-dri3-dev_1.10-2ubuntu1_i386.deb Size: 6034 MD5sum: 25fc93cfb7259350140b2f321f6eb6bc SHA1: cec7269e48ca7ab508d0f80977382dc23b22cd32 SHA256: ccab010cb4aa265720242f43d74a950860efb0f6a9b31f30282c05823945f83c Description: X C Binding, dri3 extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 33ae3689c9b1906b35ea79665207c886 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-ewmh-dev Priority: extra Section: libdevel Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util-wm Version: 0.4.1-1ubuntu1 Replaces: libxcb-ewmh1-dev Depends: libxcb-ewmh2 (= 0.4.1-1ubuntu1), libxcb1-dev Conflicts: libxcb-ewmh1-dev Filename: pool/main/x/xcb-util-wm/libxcb-ewmh-dev_0.4.1-1ubuntu1_i386.deb Size: 20638 MD5sum: 32f974f075f74a94e39d1359376cf79f SHA1: 6c21d632dfb076dbc2ed4cf2e4189d66f53af674 SHA256: b7a80ec60554a6b489254cd2a51eab5d0f8c378f8a38b9674dea78a46eed0386 Description: utility libraries for X C Binding -- ewmh, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 8fdca50e86377a52b3ab8c1d3339445a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-ewmh2 Priority: extra Section: libs Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util-wm Version: 0.4.1-1ubuntu1 Depends: libc6 (>= 2.4), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util-wm/libxcb-ewmh2_0.4.1-1ubuntu1_i386.deb Size: 17794 MD5sum: 0f932107306e1ba3ab15514b917a090b SHA1: a0680c34b20ffd98403750a78fd6e376cbfae349 SHA256: 8c2c2f6b66b33d7a26355aa236153fb414371a97134f1b433cd8092aadf35bdd Description: utility libraries for X C Binding -- ewmh Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 4341a0d1216922b8d548887a23bc1862 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-glx0 Priority: optional Section: libs Installed-Size: 154 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-glx0_1.10-2ubuntu1_i386.deb Size: 21550 MD5sum: bdffb3169305410b9f42e9dcc4c0d084 SHA1: b6352e964aa1e572a2224f5e4db367161df2689a SHA256: cd60d2a83f5cbefe8b51b32f53eee363f46707a2a8b003e8157f69fd9c98dea1 Description: X C Binding, glx extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 3169b2c3295bfe9c0729ea9f922b2d4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-glx0-dbg Priority: extra Section: libdevel Installed-Size: 122 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-glx0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-glx0-dbg_1.10-2ubuntu1_i386.deb Size: 50380 MD5sum: d8f66355825701119b4f2c5add5ba10c SHA1: 5dd6813dafd3a5d564caeadcc9f008aa6b60ea98 SHA256: 32107d53ebf999191181f0b5aaf21c4a75a0ba6f2cfa0a38bfd510c149c6d8bb Description: X C Binding, glx extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 88e14ab54c8833ae93ed358036e6ce2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-glx0-dev Priority: optional Section: libdevel Installed-Size: 587 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-glx0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-glx0-dev_1.10-2ubuntu1_i386.deb Size: 31502 MD5sum: 194346bc0812ecd7a335397fa1dd6ec7 SHA1: d8f68de4ebabe761a0758f91bcc381192798790b SHA256: b7d73728619481006d499db17032cabe3d1db531e529cd157e865ee170b32f3c Description: X C Binding, glx extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 8975e77fba16c6ff127815b1b670a06e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-icccm4 Priority: extra Section: libs Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util-wm Version: 0.4.1-1ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util-wm/libxcb-icccm4_0.4.1-1ubuntu1_i386.deb Size: 10846 MD5sum: 57700a845bd550a924df6883c22ad11b SHA1: 5d51e7f7ff3167a3a0aaa42bc8a7ab42fae97fd0 SHA256: 05dc922520cd189f9af72c8fca47c6362de9b7a62884a50bdbfcaa3ca3713669 Description: utility libraries for X C Binding -- icccm Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 250dc4e8740787d8010e1a0d78c55114 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libxcb-icccm4-dev Priority: extra Section: libdevel Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util-wm Version: 0.4.1-1ubuntu1 Replaces: libxcb-icccm1-dev Depends: libxcb-icccm4 (= 0.4.1-1ubuntu1), libxcb1-dev Conflicts: libxcb-icccm1-dev Filename: pool/main/x/xcb-util-wm/libxcb-icccm4-dev_0.4.1-1ubuntu1_i386.deb Size: 10432 MD5sum: e9da9cefc18c219fead6f5b596406dea SHA1: d55891753aa1cd3097050c4f727a24619e1ad6b5 SHA256: 8224b83d625e468849a21c36b57807ae4de761794edb5fbda5d381c86097713f Description: utility libraries for X C Binding -- icccm, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: b700b76accd3450e24a40baa71cc5ab2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-image0 Priority: extra Section: libdevel Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util-image Version: 0.3.9-1ubuntu2 Depends: libc6 (>= 2.3.4), libxcb-shm0, libxcb-util0 (>= 0.3.8), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util-image/libxcb-image0_0.3.9-1ubuntu2_i386.deb Size: 11698 MD5sum: 9b33684a5ae82b8df349d60ef6dea573 SHA1: 9401ae2f7201046d094ce4fd7612e9f5707634db SHA256: 5bef74eef75cc4f4eb4b1f2ddcbc7f6b7817a181dd57f13c7224562b961dfb39 Description: utility libraries for X C Binding -- image Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: a044f5d11519e42d4dc9c647e530afeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libxcb-image0-dev Priority: extra Section: libdevel Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util-image Version: 0.3.9-1ubuntu2 Depends: libxcb-image0 (= 0.3.9-1ubuntu2), libxcb1-dev, libxcb-shm0-dev Filename: pool/main/x/xcb-util-image/libxcb-image0-dev_0.3.9-1ubuntu2_i386.deb Size: 14906 MD5sum: 3421431b559a5f4142aab2446bb8fc26 SHA1: 3d23e9de458d6efa67701a7e176979361f96c85a SHA256: 9bfbf61cba4ec4420c80a461d67d5f81616fa3dde96af653218f9a7cb5af7197 Description: utility libraries for X C Binding -- image, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 49a87b55df5c3171489d616e6f49848c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-keysyms1 Priority: extra Section: libs Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util-keysyms Version: 0.3.9-1ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util-keysyms/libxcb-keysyms1_0.3.9-1ubuntu1_i386.deb Size: 8086 MD5sum: 894736994bf871dc37a81856afb31a72 SHA1: da7b39816157f9c2896fac041a12ea2f2d791cfd SHA256: affc73429a7c6bf5cd10188d25bcc78aa210393a1200ba36e4586f1677ad6b64 Description: utility libraries for X C Binding -- keysyms Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: b13c6d7cacf99604cfb3199b3b3098d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-gnome-desktop Package: libxcb-keysyms1-dev Priority: extra Section: libdevel Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util-keysyms Version: 0.3.9-1ubuntu1 Depends: libxcb-keysyms1 (= 0.3.9-1ubuntu1), libxcb1-dev Filename: pool/main/x/xcb-util-keysyms/libxcb-keysyms1-dev_0.3.9-1ubuntu1_i386.deb Size: 5906 MD5sum: 5e818581d3301203b682b83150c64366 SHA1: 4ae79d2822ef2632d21d39ebd5bed4d2925f91d0 SHA256: 6dafc68970f19d590ce694715b99b242c66b0fe2a68559b9715a6a467bb8daec Description: utility libraries for X C Binding -- keysyms, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 20b52420f85db118fb3a95ad039b16b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-present-dev Priority: optional Section: libdevel Installed-Size: 86 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-present0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-randr0-dev, libxcb-xfixes0-dev, libxcb-sync-dev Filename: pool/main/libx/libxcb/libxcb-present-dev_1.10-2ubuntu1_i386.deb Size: 6994 MD5sum: 9b33c70e75c39ccfb5031e7d5d568512 SHA1: a2a4d6dc4126a2b10539515350bf8a7ed03b46dc SHA256: 08faef7553a2db9cf67a6c5202251d00ed23e37e27034ebe9a6ec624c7ce374c Description: X C Binding, present extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 55dfd51e536b0ce79a88fefa0b7a9b6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-present0 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.4), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-present0_1.10-2ubuntu1_i386.deb Size: 5412 MD5sum: 789127a8a04b4404dfe720eeb51b0a6b SHA1: b99fe4a4031106edf996ba90dcd3429610f7ee5b SHA256: 77f90303021b9c32968d32de515603ce803068d31652184aa87ff6c5db527371 Description: X C Binding, present extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 334193719fba9c74610c458784b19b1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-present0-dbg Priority: extra Section: debug Installed-Size: 57 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-present0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-present0-dbg_1.10-2ubuntu1_i386.deb Size: 8702 MD5sum: c40538ec04b38fc75daa8d0bde05818b SHA1: 5114851df4439196aab674e68341c3b15797bc63 SHA256: 50a233a7f2914dcc3eaf0faba51cbcc68669fa2a676b254e21866ef060ce7068 Description: X C Binding, present extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 9d139767ebb845c184e3eb0090c80c19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-randr0 Priority: optional Section: libs Installed-Size: 106 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-randr0_1.10-2ubuntu1_i386.deb Size: 15172 MD5sum: da0c72bec0114823013ca958f384ad85 SHA1: c208e8e7634dc3814a7339a98432532e75507d20 SHA256: aa1458b2b2e58acc7ff1f1b0f0d4574fda99b1e26601319d6d1b298ac4907f05 Description: X C Binding, randr extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: adb389382ef0d8f0e2a3de70afef6284 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxcb-randr0-dbg Priority: extra Section: libdevel Installed-Size: 92 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-randr0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-randr0-dbg_1.10-2ubuntu1_i386.deb Size: 32010 MD5sum: 3f48acf430343b21bb9fc04cc7bcbf99 SHA1: 7681d04def51a552b87458dd09c1602cc116bbcf SHA256: 04551021b9e0116df227c34804305fea3a708a6b8f0dae4527a49dcc7256ff99 Description: X C Binding, randr extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: cc73bcf99f8b39c789a7fdb6110dba3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-randr0-dev Priority: optional Section: libdevel Installed-Size: 326 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-randr0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-render0-dev Filename: pool/main/libx/libxcb/libxcb-randr0-dev_1.10-2ubuntu1_i386.deb Size: 21142 MD5sum: 4bb49ecd954f0c440a0a98c9fc2b5428 SHA1: b209eb1b2351d808814b9d131a89f01742129f15 SHA256: de11927440419c8a451a8190227c3977644c2bb683d0da36e8055855ae245635 Description: X C Binding, randr extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 735c3a5ffbdf9ace5c373fa9bf38ed5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-record0 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-record0_1.10-2ubuntu1_i386.deb Size: 6598 MD5sum: 3a5dc21b6c3d222d35370709a7afa251 SHA1: e414cdf915f1fde302c0913da35ebf6e7ba43bbb SHA256: bae8fd6dcb7fb548ce839c9534f895546977f10ff367bc03c8a25dd1cefefb22 Description: X C Binding, record extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: e5ccbdc38847f1aebd02f7d94bbbc0e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: libxcb-record0-dbg Priority: extra Section: libdevel Installed-Size: 61 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-record0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-record0-dbg_1.10-2ubuntu1_i386.deb Size: 11128 MD5sum: cef4b88ae4ca19c4ae1e6740f9f0b8d4 SHA1: c116f75b74dbdc3b96a181e238e9dee4fa7871d8 SHA256: 9cb90d39748adeb81ad2c39542dd07dea2641e8fcb58c0e1507d72d8836c0191 Description: X C Binding, record extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 771b9085fed968a2de06a8a11926b1d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-record0-dev Priority: optional Section: libdevel Installed-Size: 106 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-record0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-record0-dev_1.10-2ubuntu1_i386.deb Size: 8010 MD5sum: ff053a3fb1987171ecb853d93653de11 SHA1: c5a1b4ed025ef253dda2933db2e28779ada5ca8c SHA256: bd73f733ce52beb0b8089a1cc2081ce680d2a003d29bc007186442a036278143 Description: X C Binding, record extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: d338f3303260833eb2daa5c12752e042 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-render-util0 Priority: extra Section: libs Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util-renderutil Version: 0.3.8-1.1ubuntu1 Depends: libc6 (>= 2.1.3), libxcb-render0, libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util-renderutil/libxcb-render-util0_0.3.8-1.1ubuntu1_i386.deb Size: 8814 MD5sum: e5c7b1c4ba4e436067a2323646dbe2a4 SHA1: 3b063cd189fee2ca8a9921edccf5713a29363b7f SHA256: 92608780fd23f7313cd18c11b6584171138c2b2fd3b8cd79c62f7358a961632e Description: utility libraries for X C Binding -- render-util Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 63d61510faea6f0a8654420ce1402aca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libxcb-render-util0-dev Priority: extra Section: libdevel Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util-renderutil Version: 0.3.8-1.1ubuntu1 Depends: libxcb-render-util0 (= 0.3.8-1.1ubuntu1), libxcb1-dev, libxcb-render0-dev Filename: pool/main/x/xcb-util-renderutil/libxcb-render-util0-dev_0.3.8-1.1ubuntu1_i386.deb Size: 6996 MD5sum: 461b78514bd0e02c0a2ec0245bb33528 SHA1: 58db54660abddd082bbb42a450d209281bc86529 SHA256: f54490c2c26007d09bd504e0153c5293198ea76500cffd32200d9b62537deee3 Description: utility libraries for X C Binding -- render-util Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: cf83cc2bb685dc757edc5b23360106c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-render0 Priority: optional Section: libs Installed-Size: 84 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 (>= 1.8) Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-render0_1.10-2ubuntu1_i386.deb Size: 11858 MD5sum: a8584edfbf601220a992502ddb47d24d SHA1: 5b32b128acd5341970324b30bd4804134d7110b4 SHA256: 92d55e843ec250a06bfca0f2838540fadf9352d2834b721b634739d89550a234 Description: X C Binding, render extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: c5db612729adbe8a95b5f304a1c0e60b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-render0-dbg Priority: extra Section: libdevel Installed-Size: 79 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-render0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-render0-dbg_1.10-2ubuntu1_i386.deb Size: 25008 MD5sum: 345d36cb8bb3acd01026c3a1942e2df1 SHA1: 4dddbe56cd7b0670a9cffe4db5ab27ae152aeba0 SHA256: ef308c330b6216456d9ecd8681ecf0e7fa90cde995512a1198d4eaabbf8fe5e7 Description: X C Binding, render extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 36ebeac45e89811d06e7f24d44f6be59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-render0-dev Priority: optional Section: libdevel Installed-Size: 237 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-render0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-render0-dev_1.10-2ubuntu1_i386.deb Size: 16944 MD5sum: 8d239e93ff0ec9935d0c3b0fb4e4934c SHA1: 508ac5e0d5ba81740ebe78a80f18f1a4f6283ee1 SHA256: dcf8ae812ea27d61abf13dd3f3d7d50e0cec74570437a72638f5d8c9a6ef5c26 Description: X C Binding, render extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 350c71a11fce197bfdd81f2173c8c47b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-res0 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-res0_1.10-2ubuntu1_i386.deb Size: 6510 MD5sum: 0b008454ba16b8b3f9dd140f14363c4d SHA1: e4b9970d59adf269456c1d78382664d14c8bf6af SHA256: 4cde74c38abb1af45a033a2bb8b1846c2625929dea83630cc677ca0320df1bd5 Description: X C Binding, res extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: c2c5e369cff7cefe91babaa7de5630ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-res0-dbg Priority: extra Section: libdevel Installed-Size: 60 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-res0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-res0-dbg_1.10-2ubuntu1_i386.deb Size: 10442 MD5sum: 9753f33ff5c8326f4c40e7db86c14af9 SHA1: 08fcd8ab8f45a811cb2d9076774c71e006c9c42c SHA256: a6b6bf123ace90463bfd34a0f80e27c388196867442a099fdc1c0becdf91cdd2 Description: X C Binding, res extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 0eed2d7633f52fda6c2e75ca7242f6cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-res0-dev Priority: optional Section: libdevel Installed-Size: 105 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-res0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-res0-dev_1.10-2ubuntu1_i386.deb Size: 7840 MD5sum: 71c4652fbc477c79a7bfac1eac973e48 SHA1: 7d3e8599b08937280dd617b579e1d6930c35c5da SHA256: cfa271706e5d558978198e3b52a33fdd464647414a99355d24d9abb4ed9e8e03 Description: X C Binding, res extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: b8990ae7ad0bbd27401ec98cc1c75776 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-screensaver0 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-screensaver0_1.10-2ubuntu1_i386.deb Size: 5086 MD5sum: e923e407688d7a3a76e47eb3f8da7e41 SHA1: 55587defacd3e55f7afc151091ba660c1a865786 SHA256: cd6890a5a50a9649bdf613c6be1bfadbbdd600882e8c4f2b162dc9515d4924ba Description: X C Binding, screensaver extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: d620ae3f5335aff882ca4074641853c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-screensaver0-dbg Priority: extra Section: libdevel Installed-Size: 57 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-screensaver0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-screensaver0-dbg_1.10-2ubuntu1_i386.deb Size: 8120 MD5sum: 85741d1b713b5921f1f43edf477c1fc1 SHA1: ffc8099aec85f92c35432a3e2113b4aa6804418b SHA256: a7e7e71c1914e11347317c32652267795820d384bb5c8584b1d3123a0bb7a91f Description: X C Binding, screensaver extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 921ca4039529ea1d97b45ce8f6cc4df7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-screensaver0-dev Priority: optional Section: libdevel Installed-Size: 77 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-screensaver0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-screensaver0-dev_1.10-2ubuntu1_i386.deb Size: 5906 MD5sum: 7e5ee37114c7ee7e9fbfc6ab9f12fa5e SHA1: 6d02d616ad4c3dd8388e5b266dffc112cc78346f SHA256: 7b8049fa1e05b8e963140e8a12b1d498df7f3f6e56523e42a071857a197bdbcd Description: X C Binding, screensaver extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 83a3b0eb371cf2409490ba29edcb3eaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-shape0 Priority: optional Section: libs Installed-Size: 55 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-shape0_1.10-2ubuntu1_i386.deb Size: 5864 MD5sum: 54a6400864ca5b8c76a2bbc629dd4c3b SHA1: 4822a1fb467109e7618a3a35926880756ed5adad SHA256: 0d7f766f2bb9e6c2c6dfd7720d8d4630561edfe8780110cf3b5f999b2cbe1989 Description: X C Binding, shape extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 4f8fcf227f71242b2923bb3614ad97a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-shape0-dbg Priority: extra Section: libdevel Installed-Size: 59 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-shape0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-shape0-dbg_1.10-2ubuntu1_i386.deb Size: 10164 MD5sum: bf2b942eaf4bb6643337065f5a02c79d SHA1: a8a857db400409b6247cf5dfd9287b127e209fd6 SHA256: 0a414dbd56b8f8e82e53a279209781944034383e8595cf1513b04bf1c193fbe3 Description: X C Binding, shape extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 2bbaba9c3928285e392ca9a954dc56d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-shape0-dev Priority: optional Section: libdevel Installed-Size: 94 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-shape0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-shape0-dev_1.10-2ubuntu1_i386.deb Size: 7278 MD5sum: d09c374346c70763ab757b2f16d1f4a5 SHA1: 683cd0896343fe3f56f66c9980d7214dfe166ce0 SHA256: 3dc5b3b6da747c2ec5a6eb91a9b98d2a757abf48525ce4b11ecf8bca178bc356 Description: X C Binding, shape extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: b59fd5bacbd9b3280320ec83bb3f452c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-shm0 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 (>= 1.9.2) Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-shm0_1.10-2ubuntu1_i386.deb Size: 5622 MD5sum: b5aff4c113531324acc03e64ff78560b SHA1: 9de08ac8ce73635500ef461aef0d8c3685b4199c SHA256: 6bf34047a43b4588dfd0575cb9a71d977fcb59e35cc03ab11d5d563a19d8e6ba Description: X C Binding, shm extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: efe15210cc4fe778d9092348500e1a77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-shm0-dbg Priority: extra Section: libdevel Installed-Size: 58 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-shm0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-shm0-dbg_1.10-2ubuntu1_i386.deb Size: 9610 MD5sum: 46052e6c362e69783c543df9ed535809 SHA1: 59fa2f07ae4532e2660432760a7645ae57fa2e02 SHA256: 1ef2e1ceb0a72d2b346eb44cdee0f02fd36fb07dd22e0b88548183f0788a5dfd Description: X C Binding, shm extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: f71bc8576f45cd770b02ab53a847a6a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-shm0-dev Priority: optional Section: libdevel Installed-Size: 88 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-shm0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-shm0-dev_1.10-2ubuntu1_i386.deb Size: 6952 MD5sum: 2abf85978c1b2e540a14c3fc20d157f5 SHA1: 06f875733630d63b1826f0afacc4cce5a1dece6e SHA256: 0a932c483b88e6664c07e24d0b0922e0a81b961d14c55c080fbc96ed0f19c5e5 Description: X C Binding, shm extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 6f179a331f00f73798b8c2cabed1a88f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-sync-dev Priority: optional Section: libdevel Installed-Size: 142 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Replaces: libxcb-sync0-dev Provides: libxcb-sync0-dev Depends: libxcb-sync1 (= 1.10-2ubuntu1), libxcb1-dev Conflicts: libxcb-sync0-dev Filename: pool/main/libx/libxcb/libxcb-sync-dev_1.10-2ubuntu1_i386.deb Size: 10724 MD5sum: a8a6f8334371c914eb4cb73dbc9644a5 SHA1: b9ec327606c18b93e0a1cc84735d35e1b91caeae SHA256: aa5ad64c56ccb838af13c2726b8d90e5e49b7d4dd263c9c62413608f1fa595a5 Description: X C Binding, sync extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 1e0ff61d663c39e76f3de4c84c3f7899 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-sync1 Priority: optional Section: libs Installed-Size: 65 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-sync1_1.10-2ubuntu1_i386.deb Size: 8418 MD5sum: 340be43132ec7872852a00632ee7ea99 SHA1: c8adc5363ce31ad11c292243f2ffad0f815f8223 SHA256: 5e48ecd5ebeaba9436798bdcdffe24e79bf2f323b6beb1616e9e93072c79468a Description: X C Binding, sync extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: d5360e0f01127bfda17c79337e504a3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-sync1-dbg Priority: extra Section: debug Installed-Size: 67 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-sync1 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-sync1-dbg_1.10-2ubuntu1_i386.deb Size: 15684 MD5sum: 9248bb05b9ae6b0959df170d3e1b6655 SHA1: d4dd0ab546856669650ade42cdc44e89b2d0fd23 SHA256: 338dbada09e9232088e4c513faee857986ce16cc4b20115c1e08adde9cf8c4f4 Description: X C Binding, sync extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: fc218a63827502a91fa643f91882ade2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-util0 Priority: extra Section: libs Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util Version: 0.3.8-2ubuntu1 Depends: libc6 (>= 2.8), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/x/xcb-util/libxcb-util0_0.3.8-2ubuntu1_i386.deb Size: 11310 MD5sum: b21bd084feee077f6646a7f3c45d3a36 SHA1: 7dbf2d84726b80c6841861c16e8eb4d153253cd2 SHA256: cc064a16c6bbb21ca3d557e207bea501af86bd1eb318ae8814a1645713e00a64 Description: utility libraries for X C Binding -- atom, aux and event Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: c4e9b5a7227fc66a9d8bef500363e8a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-util0-dev Priority: extra Section: libdevel Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xcb-util Version: 0.3.8-2ubuntu1 Replaces: libxcb-atom1-dev, libxcb-aux0-dev, libxcb-event1-dev, libxcb-property1-dev, libxcb-reply1-dev Depends: libxcb-util0 (= 0.3.8-2ubuntu1), libxcb1-dev Conflicts: libxcb-atom1-dev, libxcb-aux0-dev, libxcb-event1-dev, libxcb-property1-dev, libxcb-reply1-dev Filename: pool/main/x/xcb-util/libxcb-util0-dev_0.3.8-2ubuntu1_i386.deb Size: 12106 MD5sum: 64c48bd8cffebd519a4394fd2b9a947e SHA1: 24924c9c874fefc6c1d22def004c39fca488f23c SHA256: 0e6d95a9339d840ebd7ec2ff538e54d9ccf48fbc0e47a47ba7c7317e798ebc59 Description: utility libraries for X C Binding -- atom, aux and event Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: a308699121fcd55e41ed04caba796f61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xevie0 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.4), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xevie0_1.10-2ubuntu1_i386.deb Size: 5154 MD5sum: ffc139449fe613161a83ab7eea231e65 SHA1: 4c0e90d67e266bb3ad06cd31555021a4c970eba6 SHA256: 593e3cf9b3dc35b508a96c9a412755d55ebcc069fbbecbc906de658624c0338f Description: X C Binding, xevie extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 469dcd0e1fb7dbda702236d0b097391c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xevie0-dbg Priority: extra Section: libdevel Installed-Size: 56 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xevie0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xevie0-dbg_1.10-2ubuntu1_i386.deb Size: 7784 MD5sum: 7914f0eb93a19c3b50895a39ca7ce82b SHA1: c10a8a260e9c62791954ade728dfb4f06fb55d5c SHA256: 3136c0391f5800f5a690a4182d880c0bba7396f5adf7b521297d1ba32b59e8ab Description: X C Binding, xevie extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 47d3dad21e9d2a7f4af4d6a52c5954fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xevie0-dev Priority: optional Section: libdevel Installed-Size: 76 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xevie0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xevie0-dev_1.10-2ubuntu1_i386.deb Size: 5892 MD5sum: e25a519ce1516d949209908888d80d10 SHA1: f4645b6a441897d2a06b0b3d09bb9034cb158cb3 SHA256: e2acca9d5f86efbc400d8f21da8e2fd0f2e00e738721e5190bb5b13f27378595 Description: X C Binding, xevie extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 3275fd3f69f389bdaca0d960d049bc81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xf86dri0 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xf86dri0_1.10-2ubuntu1_i386.deb Size: 6770 MD5sum: 9fd27ce0b9a57b9b4600212d6befd449 SHA1: 0d79e5819ce9f43a52c939b9a4e9ca12aaf8839a SHA256: 01c0a9fe5a0f7c0ec2c4cc0929e52a1ab388634a369d15a58812c6778162ebde Description: X C Binding, xf86dri extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: f6b61b1dd5cbcdd3b35b95162a6d84e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: libxcb-xf86dri0-dbg Priority: extra Section: libdevel Installed-Size: 62 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xf86dri0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xf86dri0-dbg_1.10-2ubuntu1_i386.deb Size: 11144 MD5sum: 572f91e842873351022a4d9c00cd6936 SHA1: f1638094995ee8abd152cdeec85cae608951e93a SHA256: f2109e3a662d16ea205429efed4ab191826ceec67ea36e831ce320e00a14df8a Description: X C Binding, xf86dri extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 00fc41c278b355ffea2a57869210ff97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xf86dri0-dev Priority: optional Section: libdevel Installed-Size: 113 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xf86dri0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xf86dri0-dev_1.10-2ubuntu1_i386.deb Size: 8038 MD5sum: 7d5d0515811eb3027ca1e94dd0679882 SHA1: 2aa0461efa26afab3ff272292a415d4f45c63d89 SHA256: 0b1ef8d112b17a4926f4ffde28d725b13d651c1f80235075fca4ba00e763702f Description: X C Binding, xf86dri extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 2d530540e9eef50abce24dce665eaee7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xfixes0 Priority: optional Section: libs Installed-Size: 70 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xfixes0_1.10-2ubuntu1_i386.deb Size: 9064 MD5sum: fe3c80397e1ec15a2e990f1c0e998899 SHA1: a7d8fdf869653bfd23e3323b52949a00b30e704b SHA256: fcfb696bf64f964d34b249ad28429a12623fbd5dd1fec75cb98661a89a8b0cf6 Description: X C Binding, xfixes extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 94f24b982ab532c251f90293506a8fed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcb-xfixes0-dbg Priority: extra Section: libdevel Installed-Size: 71 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xfixes0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xfixes0-dbg_1.10-2ubuntu1_i386.deb Size: 17504 MD5sum: f1ace7fee8319283064f5cb30e6c9fe3 SHA1: 66cb4909dea6e63a8718125863f310b640776594 SHA256: dddf2ce3a17da2867f569243aeb77dd83030a8e8df10f05ba8a71e5c1c71b847 Description: X C Binding, xfixes extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 1c610e48b2246c8698142637e645e127 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xfixes0-dev Priority: optional Section: libdevel Installed-Size: 173 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xfixes0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-render0-dev, libxcb-shape0-dev Filename: pool/main/libx/libxcb/libxcb-xfixes0-dev_1.10-2ubuntu1_i386.deb Size: 12108 MD5sum: 39691aee1fac70a1798addb169a399d4 SHA1: 8500a2bf781a21261cfc3ef6c9ae1d3a91113469 SHA256: a840b75cc88b3a630c14b16927a610307e0817c4e9457ee33a226d57f67c18ee Description: X C Binding, xfixes extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 18efd390c63351b408b2ffb0163f2cf5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxcb-xinerama0 Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xinerama0_1.10-2ubuntu1_i386.deb Size: 5316 MD5sum: 35e986796687fdd5d2d5555126dea859 SHA1: f0b5f44b81aff3e9a9a707196046f0c3904bbae5 SHA256: aa16c237c26c69cbe469e635c53ce5bd21ac0a7cb66a1ce31b42eccba722c2a0 Description: X C Binding, xinerama extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: f2a52133eab163b52a83f8199011810e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xinerama0-dbg Priority: extra Section: libdevel Installed-Size: 57 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xinerama0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xinerama0-dbg_1.10-2ubuntu1_i386.deb Size: 8056 MD5sum: c79d0709d25f150b8e836df89faaef4a SHA1: 609d74551db834094d54c8022bded59196cffd3f SHA256: a6a8f0d29becc88d07f209f9e77aa7c72ef4bf37fcf27be66ffc883fac0194bc Description: X C Binding, xinerama extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 40b566f7166a53475bf725a0e667e31d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xinerama0-dev Priority: optional Section: libdevel Installed-Size: 83 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xinerama0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xinerama0-dev_1.10-2ubuntu1_i386.deb Size: 6162 MD5sum: 18e835eb161f5248af53b662027a2e3a SHA1: 4d44aea467063b1ad97c5f920ea625465b199afb SHA256: fc2d1b45b7882a07cf3a66a576c0935af43095a67ae50664eb3a57a7e02872c7 Description: X C Binding, xinerama extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: a48583621fb78aeb3c0f4cc202892fd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xkb-dev Priority: optional Section: libdevel Installed-Size: 589 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xkb1 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xkb-dev_1.10-2ubuntu1_i386.deb Size: 44162 MD5sum: 7bf7cd044bdee56251e19d54d54d2f0f SHA1: 27c2e947f2f837be98aea8aae3e216f698d4d4b8 SHA256: 7611a48aff1b71a7a0ead67b15413080e67da947fc1d8a2304a667588e516092 Description: X C Binding, XKEYBOARD extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: db3d11c316407d51ed8e7ccbc9b0e2ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xkb1 Priority: optional Section: libs Installed-Size: 163 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.4), libxcb1 (>= 1.8) Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xkb1_1.10-2ubuntu1_i386.deb Size: 29060 MD5sum: a24800cdd67f0979331a4a1803a6ae2a SHA1: 6bd9ebd116449a158a4c71b284c66334bc68b1f0 SHA256: c2189bbdb67559843b02e58b5f1caf18fd0ef46443ac41a6f6ed9c8487169db5 Description: X C Binding, XKEYBOARD extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 265aa28a89cf5ce7330ef13f8d25ed2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: libxcb-xkb1-dbg Priority: extra Section: debug Installed-Size: 138 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xkb1 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xkb1-dbg_1.10-2ubuntu1_i386.deb Size: 68986 MD5sum: 4ff70c359e4ec5653522cdd3b406c529 SHA1: 37f3d28d8d2191aa876c2c50aed4d04aa90c7800 SHA256: b1177147cbf3e5610e697a39770874ef655127ea30c20034d72da411eecaf9b8 Description: X C Binding, XKEYBOARD extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 6cb6385c88eb1dd73260c56e58bc44a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xprint0 Priority: optional Section: libs Installed-Size: 71 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xprint0_1.10-2ubuntu1_i386.deb Size: 10380 MD5sum: f6b4906d3be5a22ef37712ada221eceb SHA1: abc775df78f72555f5b28de2974afe5cd9e6767c SHA256: 1309d0aed9d07ce89789a2be1e1701ce262198520d69dd917e2eed4b0d90ffcc Description: X C Binding, xprint extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 3d3667ae9be36e5e1ff00f8d7eedfc8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xprint0-dbg Priority: extra Section: libdevel Installed-Size: 73 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xprint0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xprint0-dbg_1.10-2ubuntu1_i386.deb Size: 19524 MD5sum: 20cbee56448cbe951fc89895408926f6 SHA1: 702b819664c386963ec7ea49192ff6e414f5673b SHA256: 0dd78c037ac841e69b0a2aaad65706c1e740cb4039acf7698efdbb953aa48712 Description: X C Binding, xprint extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 5b3e86d4365fc6a0fcb170c2273bd805 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xprint0-dev Priority: optional Section: libdevel Installed-Size: 174 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xprint0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xprint0-dev_1.10-2ubuntu1_i386.deb Size: 13028 MD5sum: b6a3b3b45a8fcbbbdf0b66a882ab42bc SHA1: c774c6d9ab789511de12c18fde4b232c1b23e8e8 SHA256: 0b03f310c7c8266941e1f1ea52f4f9c4d1ed4f3a728a0ab41b0758ed25d536aa Description: X C Binding, xprint extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 78fb126b7a450751661627dc2abd8f05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xtest0 Priority: optional Section: libs Installed-Size: 50 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.4), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xtest0_1.10-2ubuntu1_i386.deb Size: 4882 MD5sum: a1c4911066410a9cc8e792b07da503c6 SHA1: 8fcbe0da29df263b201b020edd1f8838a092e4da SHA256: c6ac2cdc08ad1e2fdce183a3064433b8e461d5028c954f6c5990227f7447bbd8 Description: X C Binding, xtest extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 12d78ef68913f742e8054ee9ba8eceac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active Package: libxcb-xtest0-dbg Priority: extra Section: libdevel Installed-Size: 56 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xtest0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xtest0-dbg_1.10-2ubuntu1_i386.deb Size: 7402 MD5sum: 2a1a01a74e056bfe53e7ccd97d968808 SHA1: d568336776f779b9db51fa270a03da906ff6c0bc SHA256: bf1b2e0a7d756c7bbf2d7f25765cba878d4042e5aaeedca9276c65d462f4f74c Description: X C Binding, xtest extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 06ee13aa6daacecf5f215330abfe610c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xtest0-dev Priority: optional Section: libdevel Installed-Size: 69 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xtest0 (= 1.10-2ubuntu1), libxcb1-dev Filename: pool/main/libx/libxcb/libxcb-xtest0-dev_1.10-2ubuntu1_i386.deb Size: 5320 MD5sum: ae131668b15183c0e9dc08cfcca45d9b SHA1: 6110beac084f9f52591552fd9dd858a811338f0a SHA256: 8fb9b5da2a2f08e05d301442b09e0b6ac3ac8e9b4a76436a2c4c5e7944ec2d12 Description: X C Binding, xtest extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: fb44118f335dc050b5f88616743eda8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xv0 Priority: optional Section: libs Installed-Size: 70 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xv0_1.10-2ubuntu1_i386.deb Size: 9374 MD5sum: ba55f98a17febd06ddfbf0decb1e8940 SHA1: e70a96405f9aaa51bdc25f4f567be0aeebdfb790 SHA256: fafed4f75d205a089bd239f6f673a262f678a55025fc5f4272cfd3b10d888c8a Description: X C Binding, xv extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: ed2134a19c1b37c3eec9621d2c3f1395 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-video, ubuntu-gnome-desktop Package: libxcb-xv0-dbg Priority: extra Section: libdevel Installed-Size: 71 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xv0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xv0-dbg_1.10-2ubuntu1_i386.deb Size: 18690 MD5sum: 2b89220cac184de1ed2bc5810a9b437a SHA1: df9879fe14361f18a5bb0057bf04e81c2b49e17e SHA256: 49b363464c1848933dca681c1393cc6d4e05aab35c059d7795a7b5f2f662aa32 Description: X C Binding, xv extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: c0933dcbfe80d301178a504629ad544f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xv0-dev Priority: optional Section: libdevel Installed-Size: 177 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xv0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-shm0-dev Filename: pool/main/libx/libxcb/libxcb-xv0-dev_1.10-2ubuntu1_i386.deb Size: 12526 MD5sum: 7a97834bc285e2ea238d31a1f790f027 SHA1: 38b1c50261b7b1f13718eb15c8d474423609faf6 SHA256: 0d09b4020d46a591be9031eea2660effef5c52cf94a113e72b7ddd1550f8f5e3 Description: X C Binding, xv extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: c45791601a14485adf21a51b301cc152 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xvmc0 Priority: optional Section: libs Installed-Size: 56 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.1.3), libxcb1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcb/libxcb-xvmc0_1.10-2ubuntu1_i386.deb Size: 6384 MD5sum: 3754c3ceebccfda67a0fd1ec11d79de5 SHA1: 9d29968f6e9ef6499c2824cd3b7153fcc1ba599b SHA256: 6bd0e1bcc8e88dcd97db1bd8b0cfb65240fa4d3b6f23e30e98b45e39123cf779 Description: X C Binding, xvmc extension Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 722aaaca48e4d073cb75a56a36af7a4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xvmc0-dbg Priority: extra Section: libdevel Installed-Size: 61 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xvmc0 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb-xvmc0-dbg_1.10-2ubuntu1_i386.deb Size: 10850 MD5sum: 5e161731a240b4d74a41d6822b51635c SHA1: cf505997ad894643d597f7e9c24f1342c0f01592 SHA256: 7a66f0d002c2cdba2d2cdc330bceb2c7f143f713b515d72576bb7fd190b1bfa3 Description: X C Binding, xvmc extension, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 574e88e7599eb6bb278ae2615e40981b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb-xvmc0-dev Priority: optional Section: libdevel Installed-Size: 106 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb-xvmc0 (= 1.10-2ubuntu1), libxcb1-dev, libxcb-xv0-dev Filename: pool/main/libx/libxcb/libxcb-xvmc0-dev_1.10-2ubuntu1_i386.deb Size: 7782 MD5sum: ef3aa4502104bb60caa71ef6cad778cc SHA1: db9448d187ead53e9a841c41a51c8d57a8b29768 SHA256: 0fb388c02227ea8bb113214d5878ec8313fd26668c31811dbd0dc04f5c2d19ab Description: X C Binding, xvmc extension, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: e12e77e95ad1c28e751ed3b79abe2c81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb1 Priority: standard Section: libs Installed-Size: 188 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libc6 (>= 2.4), libxau6, libxdmcp6 Pre-Depends: multiarch-support Breaks: alsa-utils (<< 1.0.24.2-5), libxcb-xlib0 Filename: pool/main/libx/libxcb/libxcb1_1.10-2ubuntu1_i386.deb Size: 40598 MD5sum: 7356b0a854e08bd4ed474658bf1b39e1 SHA1: f852e790b19718834bbd4092407bb589c47b8ae0 SHA256: 8bb729c04dc48fe7e845af8abbed34d412992f8746a0bc947f7e611a4c5f9e61 Description: X C Binding Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 93568dcb3007e5182147ac40c36650aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxcb1-dbg Priority: extra Section: libdevel Installed-Size: 179 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Depends: libxcb1 (= 1.10-2ubuntu1) Filename: pool/main/libx/libxcb/libxcb1-dbg_1.10-2ubuntu1_i386.deb Size: 108188 MD5sum: 23ac11026e6b34a0dd0403f1739812ee SHA1: 419f50dffcda4b5b5cd80a58e4afade211ab0575 SHA256: 3ed8d345342abf8a34df72f75849c57a2fe09e9c01ac81886773dd5ada9eefcb Description: X C Binding, debugging symbols Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: 2867bc02a870fc2e2c3454cb501b813a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcb1-dev Priority: optional Section: libdevel Installed-Size: 777 Maintainer: Ubuntu X-SWAT Original-Maintainer: XCB Developers Architecture: i386 Source: libxcb Version: 1.10-2ubuntu1 Replaces: libxcb0-dev Depends: libxcb1 (= 1.10-2ubuntu1), libpthread-stubs0-dev, libxau-dev (>= 1:1.0.0-1), libxdmcp-dev (>= 1:1.0.0-1) Suggests: libxcb-doc Conflicts: libxcb0-dev Filename: pool/main/libx/libxcb/libxcb1-dev_1.10-2ubuntu1_i386.deb Size: 76592 MD5sum: e621e1bf7d830138c7e44feaf046beec SHA1: b861c60129275941c5786a33518d5805c790aff0 SHA256: 87505d0a57677db41fa16120d77cb7c49ddaf95056491a9f3ea1860ce063f35c Description: X C Binding, development files Multi-Arch: same Homepage: http://xcb.freedesktop.org Description-md5: d028a849d89f18ec7440c6d77483cbe1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxcomposite-dev Priority: optional Section: libdevel Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxcomposite Version: 1:0.4.4-1 Depends: libxcomposite1 (= 1:0.4.4-1), libx11-dev, libxfixes-dev, x11proto-composite-dev (>= 1:0.4), x11proto-core-dev, libxext-dev Filename: pool/main/libx/libxcomposite/libxcomposite-dev_0.4.4-1_i386.deb Size: 9864 MD5sum: fca0727f3781e8cb250a4148e1fd8718 SHA1: 958db48a9b325aeec171a15ca9b81a84da06332c SHA256: 90403da18bc9e7d3e909ee5f169f9fe2445ded738fbf8dc58ce732e684e56fd2 Description: X11 Composite extension library (development headers) Description-md5: 6c12b730c4bb5b17bd24b60d9a59a12d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcomposite1 Priority: optional Section: libs Installed-Size: 47 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxcomposite Version: 1:0.4.4-1 Depends: libc6 (>= 2.1.3), libx11-6 (>= 2:1.4.99.1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxcomposite/libxcomposite1_0.4.4-1_i386.deb Size: 7594 MD5sum: ef6c3e2f636f73701928c0f34417e61d SHA1: 13716f30258937d19bee279958be78746f27fdec SHA256: dc2ef710423bd9c24dbbafc783b1f6c90ccd2dcc6b91d49fae30583ee50f5257 Description: X11 Composite extension library Multi-Arch: same Description-md5: 49720e84dd5a26f4429db537758dcedc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcomposite1-dbg Priority: extra Section: libdevel Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxcomposite Version: 1:0.4.4-1 Depends: libxcomposite1 (= 1:0.4.4-1) Filename: pool/main/libx/libxcomposite/libxcomposite1-dbg_0.4.4-1_i386.deb Size: 21084 MD5sum: a664fefa2d68228c1f95c43ad08c6b60 SHA1: 6212186bd768ae932eddb9f85e62e09c7547d0f5 SHA256: d7fece284da508a98b4650ee0da5be2e8b7f11dde7b9792f2754e1af3beac67d Description: X11 Composite extension library (debug package) Multi-Arch: same Description-md5: 346deefe74d809a3e6b860b8fd8386b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcursor-dev Priority: optional Section: libdevel Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxcursor Version: 1:1.1.14-1 Depends: libxcursor1 (= 1:1.1.14-1), x11proto-core-dev, libx11-dev, libxrender-dev, libxfixes-dev Filename: pool/main/libx/libxcursor/libxcursor-dev_1.1.14-1_i386.deb Size: 28184 MD5sum: 5d1f57c270504b8cbcfc8f8095ad1c7d SHA1: 0df4b9c315f115519f3460eac405e7e5380fed5a SHA256: 9ef36ae1685eb185e120c0d26f4bc0c0a00091c4fb88240e60b541432fda1831 Description: X cursor management library (development files) Multi-Arch: same Description-md5: 6d945f0733e812c326a50fb6989e8cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxcursor1 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxcursor Version: 1:1.1.14-1 Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.4.99.1), libxfixes3, libxrender1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxcursor/libxcursor1_1.1.14-1_i386.deb Size: 22824 MD5sum: 69e9f0161bd7ed82fb93a7bc8a624008 SHA1: 5a2a5769155979fc2042dfa060004b64ac6a1967 SHA256: 0717a1526b8ef3c9dcba3e12f1d84800cfad984f040b46ecca22f900f05c4418 Description: X cursor management library Multi-Arch: same Description-md5: 7c341e5f21e9bb3cee6338076e0f3458 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxcursor1-dbg Priority: extra Section: libdevel Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxcursor Version: 1:1.1.14-1 Depends: libxcursor1 (= 1:1.1.14-1) Filename: pool/main/libx/libxcursor/libxcursor1-dbg_1.1.14-1_i386.deb Size: 69076 MD5sum: 74889fcaca5b98768ec2761f05ed4a01 SHA1: ae9e14131b4b38d25ecc82354c8c2d21ad5a8fea SHA256: 4ac44f4f89254c44b56bc53d7ebb4cf0fc5b62ca2fe761d523b2cc6584086026 Description: X cursor management library (unstripped) Multi-Arch: same Description-md5: 0a2e02d2365b4344848180495e4e79b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxdamage-dev Priority: optional Section: libdevel Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxdamage Version: 1:1.1.4-1ubuntu1 Depends: libxdamage1 (= 1:1.1.4-1ubuntu1), libx11-dev, libxfixes-dev, x11proto-damage-dev (>= 1.1) Filename: pool/main/libx/libxdamage/libxdamage-dev_1.1.4-1ubuntu1_i386.deb Size: 5242 MD5sum: 7a5dd5681f32417e057d3a936b35e9e9 SHA1: 4577095890d415b66ac1a54686be3733a7af4e45 SHA256: 992b34637f5ca148db2a52471e0936ffb50c9cb615273c3e87db58d93faad632 Description: X11 damaged region extension library (development headers) Multi-Arch: same Description-md5: f6757e2a643233758976bf0152b926d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxdamage1 Priority: optional Section: libs Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxdamage Version: 1:1.1.4-1ubuntu1 Depends: libc6 (>= 2.1.3), libx11-6 (>= 2:1.4.99.1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxdamage/libxdamage1_1.1.4-1ubuntu1_i386.deb Size: 7406 MD5sum: a7298a45920a4e8f9a534bf8f4125068 SHA1: 702ad0b713988fac63a8ef453eac4b930aaf10ad SHA256: bca28593e127f92f9737487419b0b5e007357e307a63e738ef3305c19968ada0 Description: X11 damaged region extension library Multi-Arch: same Description-md5: 98dd17ab9089c578805725bd9bce8f95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxdamage1-dbg Priority: extra Section: libdevel Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxdamage Version: 1:1.1.4-1ubuntu1 Depends: libxdamage1 (= 1:1.1.4-1ubuntu1) Filename: pool/main/libx/libxdamage/libxdamage1-dbg_1.1.4-1ubuntu1_i386.deb Size: 20616 MD5sum: 51aa0150f1b586bb9c36ba7df24e7fcf SHA1: 4e3b5a2310d11360359f549fd3b5e272c1aac4ae SHA256: 244c2dff92838145368fc2f60abbf07718520b5b657d631bf57a5b26257f4ff6 Description: X11 damaged region extension library (debug package) Multi-Arch: same Description-md5: c2941782652b4d70eedf42a7fd0206ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxdmcp-dev Priority: optional Section: libdevel Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxdmcp Version: 1:1.1.1-1 Depends: libxdmcp6 (= 1:1.1.1-1), x11proto-core-dev Filename: pool/main/libx/libxdmcp/libxdmcp-dev_1.1.1-1_i386.deb Size: 26750 MD5sum: e346be0207c4c441ff052aa8a463b189 SHA1: a2362fd2c988bf54ac134c807e7c0ff12d203189 SHA256: 343ed4048d1505ba38af3cccdcaf3829112dfc56b5c00cd844112ba017b2eb24 Description: X11 authorisation library (development headers) Multi-Arch: same Description-md5: 13e87615e8ea7f62524dd6a205d82e68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxdmcp6 Priority: standard Section: libs Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxdmcp Version: 1:1.1.1-1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libx/libxdmcp/libxdmcp6_1.1.1-1_i386.deb Size: 13122 MD5sum: ba7ef6265e8f92b34d9b0404e85a72b1 SHA1: 50c31da7451c286ea12c8fc4777db0c3ef52580e SHA256: a4b91c5c767c957d32111e807e792d7e73c6bcd48d15acec708323f48d24e58c Description: X11 Display Manager Control Protocol library Multi-Arch: same Description-md5: 79e282811de3a2440672d104fd07bead Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxdmcp6-dbg Priority: extra Section: libdevel Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxdmcp Version: 1:1.1.1-1 Depends: libxdmcp6 (= 1:1.1.1-1) Filename: pool/main/libx/libxdmcp/libxdmcp6-dbg_1.1.1-1_i386.deb Size: 14994 MD5sum: 887b0bedd0c57be660a32735c6bcd970 SHA1: 44a0e38003d2efe0bc8ac54ee46578a676281fa7 SHA256: ed86030bb3499191f7bb744fe1fd9ac826c5ea55203078e044de3d677da474fc Description: X11 authorisation library (debug package) Multi-Arch: same Description-md5: cea8ee1de40a7ba778f5152a991680b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxdot4 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: David Claughton Architecture: i386 Source: graphviz Version: 2.36.0-0ubuntu3 Depends: libc6 (>= 2.4) Conflicts: libgraphviz4 Filename: pool/main/g/graphviz/libxdot4_2.36.0-0ubuntu3_i386.deb Size: 19340 MD5sum: 265f3dc5df73795603ef56460ad55b24 SHA1: 247cc36f077dddd86c71a2e4fa4b33fe40216054 SHA256: a63a996bc29fb9ff05052ebb1798451a5ceab3577c55d91c9550b1ad92940b2b Description: rich set of graph drawing tools - xdot library Homepage: http://www.graphviz.org/ Description-md5: 5bb95dff142ccbf7ab2946dc3a7a4dc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxen-4.4 Priority: optional Section: libs Installed-Size: 877 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xen Team Architecture: i386 Source: xen Version: 4.4.0-0ubuntu5 Depends: libc6 (>= 2.15), liblzma5 (>= 5.1.1alpha+20120614), libuuid1 (>= 2.16), libxenstore3.0 (>= 4.2~), libyajl2 (>= 2.0.4), zlib1g (>= 1:1.1.4) Filename: pool/main/x/xen/libxen-4.4_4.4.0-0ubuntu5_i386.deb Size: 276238 MD5sum: 12c1cd5a029abccf32e6163853cdfa72 SHA1: 6917c8a216e2dce0a3b04490a8825e79530c0b70 SHA256: aba81b1e26f390ddbd537cd47d7223182d69d25c17fce38bfe4dc5e427482cc7 Description: Public libs for Xen Description-md5: cd7ad869e7a3a001fd3c7b337111e06f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libxen-dev Priority: optional Section: libdevel Installed-Size: 2019 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xen Team Architecture: i386 Source: xen Version: 4.4.0-0ubuntu5 Depends: libxen-4.4 (= 4.4.0-0ubuntu5), libxenstore3.0 (= 4.4.0-0ubuntu5) Filename: pool/main/x/xen/libxen-dev_4.4.0-0ubuntu5_i386.deb Size: 454130 MD5sum: f2187228079fa49d060eb126a072ab90 SHA1: 1492f44a25409e2b7d11a88fa390896f496992f6 SHA256: 96f1816956f618617117b0533a296a681e6264cdf6e2bc140af683ed81007296 Description: Public headers and libs for Xen Description-md5: 16aef021d38a9f4fed58c122c9b3e1cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxen-ocaml Priority: optional Section: ocaml Installed-Size: 352 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xen Team Architecture: i386 Source: xen Version: 4.4.0-0ubuntu5 Provides: libxen-ocaml-lcvi9 Depends: libc6 (>= 2.8), libxen-4.4 (>= 4.4.0), ocaml-base-nox-4.01.0 Filename: pool/main/x/xen/libxen-ocaml_4.4.0-0ubuntu5_i386.deb Size: 74036 MD5sum: 2bb7361ab5130991913d45b13fd8229c SHA1: 6153ef139930ccf11ddd9c05cad8663d24dc2ca4 SHA256: 250070006449d90c518cd62cf437e42daaaf889513c2046c8f555449ce7efef7 Description: OCaml libraries for controlling Xen Description-md5: c9c37edde6c8bfae0ec1ac70e828dbac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxen-ocaml-dev Priority: optional Section: ocaml Installed-Size: 489 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xen Team Architecture: i386 Source: xen Version: 4.4.0-0ubuntu5 Provides: libxen-ocaml-dev-lcvi9 Depends: libxen-ocaml (= 4.4.0-0ubuntu5), libxen-dev (= 4.4.0-0ubuntu5), ocaml-nox-4.01.0 Filename: pool/main/x/xen/libxen-ocaml-dev_4.4.0-0ubuntu5_i386.deb Size: 94034 MD5sum: 2644040fcf0b3b9f4abf8f143ee370e5 SHA1: bb0eefe7f1a43fb8bbdfdf4bab6e344372153bb9 SHA256: 54758bd5519416b44cadee20e4ade937c9e4cdbc7d9dfe2c137653d099b6bab3 Description: OCaml libraries for controlling Xen (devel package) Description-md5: 9c87ca7440bf9a1fcef15be5c5ae0a2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxenstore3.0 Priority: optional Section: libs Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xen Team Architecture: i386 Source: xen Version: 4.4.0-0ubuntu5 Depends: libc6 (>= 2.7) Filename: pool/main/x/xen/libxenstore3.0_4.4.0-0ubuntu5_i386.deb Size: 18678 MD5sum: 6b8a28f663d4817d8bf8dfdb326eb3a8 SHA1: b399a7b6c65dd7ba1bf0d3811e2a2284e48987ac SHA256: 10ace6ad450327ef29bcdbe58ddf29d846c0080cafea9a2016017f4128d26625 Description: Xenstore communications library for Xen Description-md5: c2462dfd8088a311ca74072df39a0705 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: libxerces2-java Priority: optional Section: libs Installed-Size: 1562 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.11.0-7 Depends: libxml-commons-resolver1.1-java, libxml-commons-external-java (>= 1.4.01-2) Suggests: libxerces2-java-doc, libxerces2-java-gcj Filename: pool/main/libx/libxerces2-java/libxerces2-java_2.11.0-7_all.deb Size: 1362252 MD5sum: fa8bcb033daef7c85f4636435ea2747b SHA1: b100cfdbea68c8cad980bbacfc6400471ee9c51a SHA256: 9205c4c93d26872f9f5fdc7a998340e633f6e87a553999759cf92b60388bd348 Description: Validating XML parser for Java with DOM level 3 support Homepage: http://xerces.apache.org/xerces2-j/ Description-md5: 70fc56311b7780cb8c2a99efdde064c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libxerces2-java-doc Priority: optional Section: doc Installed-Size: 22789 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libxerces2-java Version: 2.11.0-7 Suggests: libxerces2-java, doc-html-w3 Filename: pool/main/libx/libxerces2-java/libxerces2-java-doc_2.11.0-7_all.deb Size: 2257196 MD5sum: e9c3ca7d2bed68ce17b1d1fb07067300 SHA1: 1f8efd9d9a2d4bff4bea191d0383de7a751f9ae7 SHA256: 611e9b83bb376faad8c4eece6ef7f6b13844b03ff8e8480246d1a2353a163b8c Description: Validating XML parser for Java -- Documentation and examples Homepage: http://xerces.apache.org/xerces2-j/ Description-md5: d4775a592fb8e72827658cfc1b26bc40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxerces2-java-gcj Priority: optional Section: libs Installed-Size: 6204 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: i386 Source: libxerces2-java Version: 2.11.0-7 Depends: libxerces2-java (>= 2.11.0-7), libgcj-common (>> 1:4.1.1-13), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.8.1-1~) Filename: pool/main/libx/libxerces2-java/libxerces2-java-gcj_2.11.0-7_i386.deb Size: 1920822 MD5sum: 6592e66ee54c47191e82c28a6b63c732 SHA1: 21694fa3eaf797d590cc97e0e6c8c196c9cec494 SHA256: 92e81934f258d2204a1dee7c6afa913a476087d5d8f482e899731eba921f28ba Description: Validating XML parser for Java with DOM level 3 support (native code) Homepage: http://xerces.apache.org/xerces2-j/ Description-md5: 14359243a78f44538002efc4d041c90a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxext-dev Priority: optional Section: libdevel Installed-Size: 258 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxext Version: 2:1.3.2-1 Depends: libxext6 (= 2:1.3.2-1), x11proto-core-dev, x11proto-xext-dev (>= 7.0.99.2), libx11-dev Suggests: libxext-doc Filename: pool/main/libx/libxext/libxext-dev_1.3.2-1_i386.deb Size: 89868 MD5sum: 6ad4c24612b69366f1f24a7edf323fa1 SHA1: 000402792574b695efaa8a96501c55b2dafad45c SHA256: af45aadf25a6ac81c325e08a0c3ea4fd72c3c98a744eb346f0de18e387a4bf4f Description: X11 miscellaneous extensions library (development headers) Multi-Arch: same Description-md5: 9d497aabe7a8734879a278b8413e69c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxext-doc Priority: optional Section: doc Installed-Size: 238 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libxext Version: 2:1.3.2-1 Replaces: libxext-dev (<< 2:1.3.1-2) Breaks: libxext-dev (<< 2:1.3.1-2) Filename: pool/main/libx/libxext/libxext-doc_1.3.2-1_all.deb Size: 73448 MD5sum: 52fd75b7954b186d0a17d4d27f0ebd64 SHA1: e9b718bcd3ecebb45f246b662030ba94f70e2f47 SHA256: b3df6f9363079dd5a81d902b9f9f6f1c545fbe886b089c03b69613b274dd31ab Description: X11 miscellaneous extensions library (documentation) Multi-Arch: foreign Description-md5: 0600a78601f1d6561cda356efeda64d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxext6 Priority: standard Section: libs Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxext Version: 2:1.3.2-1 Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.4.99.1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxext/libxext6_1.3.2-1_i386.deb Size: 33896 MD5sum: 6f4b3a6046c516cf02c7f39679f09949 SHA1: e2809c000b69cd9b293a2180bc6e2a8d118bb5bb SHA256: 6d8a54f6acdbe9336ee1a5cfa4abe30d0dc65051ce3fe12f2fbea5ca39fc8e69 Description: X11 miscellaneous extension library Multi-Arch: same Description-md5: 5c72cf7a13b0990666898813406a2a89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxext6-dbg Priority: extra Section: libdevel Installed-Size: 526 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxext Version: 2:1.3.2-1 Depends: libxext6 (= 2:1.3.2-1) Filename: pool/main/libx/libxext/libxext6-dbg_1.3.2-1_i386.deb Size: 202930 MD5sum: b8645ee0ae7980be069d8fc133e75a05 SHA1: c19c1b429e23fde2d840ff413c51d7dc9c3f53e6 SHA256: fc08e423cb44035ec6abc690c07b832057752739eaa02799ba86d109ea8a0f24 Description: X11 miscellaneous extensions library (debug package) Multi-Arch: same Description-md5: a9d12f89d8fa4962191a46fc5214d873 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxfixes-dev Priority: optional Section: libdevel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxfixes Version: 1:5.0.1-1ubuntu1 Depends: libxfixes3 (= 1:5.0.1-1ubuntu1), libx11-dev, x11proto-fixes-dev (>= 1:5.0-1) Filename: pool/main/libx/libxfixes/libxfixes-dev_5.0.1-1ubuntu1_i386.deb Size: 12414 MD5sum: ec76e8b65f7f76a26790f847fe2b6acd SHA1: 34329df9a9d23dc513e0f0b698f1252c0400dd65 SHA256: fa57346510e6a3dc6ea9729fd635562bed05aa2bda7f787a52f76c8dfcaf9a88 Description: X11 miscellaneous 'fixes' extension library (development headers) Multi-Arch: same Description-md5: 534fb9330ebefdcdd616826883b3e8d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxfixes3 Priority: optional Section: libs Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxfixes Version: 1:5.0.1-1ubuntu1 Depends: libc6 (>= 2.1.3), libx11-6 (>= 2:1.4.99.1) Pre-Depends: multiarch-support Breaks: unity (<< 7.0.2), xserver-xorg-core (<< 2:1.14) Filename: pool/main/libx/libxfixes/libxfixes3_5.0.1-1ubuntu1_i386.deb Size: 11482 MD5sum: 9a649322617f83f6dee533153a3144d2 SHA1: 50af9188edefdc1f31b6701ea30453ca7e2bff24 SHA256: eb1e16e234b9ce56f9ae4575a960735def79aef81f9a781550a7ce06a6ae356a Description: X11 miscellaneous 'fixes' extension library Multi-Arch: same Description-md5: 0fa5919ef08f61382fb2c6bf965194ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxfixes3-dbg Priority: extra Section: libdevel Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxfixes Version: 1:5.0.1-1ubuntu1 Depends: libxfixes3 (= 1:5.0.1-1ubuntu1) Filename: pool/main/libx/libxfixes/libxfixes3-dbg_5.0.1-1ubuntu1_i386.deb Size: 42202 MD5sum: be59d43325913641cbd9e42b8a578c9e SHA1: 945b40ed91528b5805f11c9c0cd4eff0f22776c3 SHA256: 64af59b47dc56fc87cc0cd9d225222f45250b94616fb00f862b0355a7257820f Description: X11 miscellaneous 'fixes' extension library (debug package) Multi-Arch: same Description-md5: c012f9063b8e9d1a8dfa269f154dec48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxfont-dev Priority: optional Section: libdevel Installed-Size: 444 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxfont Version: 1:1.4.7-1 Depends: libxfont1 (= 1:1.4.7-1), libx11-dev, x11proto-core-dev, x11proto-fonts-dev, libfreetype6-dev, libfontenc-dev (>= 1:1.0.1-1) Filename: pool/main/libx/libxfont/libxfont-dev_1.4.7-1_i386.deb Size: 124774 MD5sum: cfed82d41ce087f8eb972fb96ace7f70 SHA1: 9d20ef3e1ad5b68814b9e9d08039d952331b1544 SHA256: 58c93876f3b7c1dddaba88c463d33f13d7e34582a32f53e30f35f3a0fd3b06b3 Description: X11 font rasterisation library (development headers) Description-md5: db66cbe62abb9446c54b7226358abd1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxfont1 Priority: optional Section: libs Installed-Size: 238 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxfont Version: 1:1.4.7-1 Depends: libbz2-1.0, libc6 (>= 2.4), libfontenc1, libfreetype6 (>= 2.2.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Conflicts: xprint (<< 2:1.6.0-1) Filename: pool/main/libx/libxfont/libxfont1_1.4.7-1_i386.deb Size: 92306 MD5sum: 147001d5c47fa96e5d441620d58752c5 SHA1: 95fd386200ebb5452e046e7565c59807a0bc0fbf SHA256: 6328302302681620a0e26fbb38081fcb4ce968c7c91ad96cb043c911165cbc92 Description: X11 font rasterisation library Multi-Arch: same Description-md5: ca038f18775c3087691897eb5fffb072 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxfont1-dbg Priority: extra Section: libdevel Installed-Size: 573 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxfont Version: 1:1.4.7-1 Depends: libxfont1 (= 1:1.4.7-1) Filename: pool/main/libx/libxfont/libxfont1-dbg_1.4.7-1_i386.deb Size: 164700 MD5sum: b5c52f6e7517fb637e1a77218d933f72 SHA1: 6ba09b7f66d6026f197e7a89d51e1a71a22d30d0 SHA256: 8bfebfa77e210b52796155c8e18f25f1e61df4ca1f3de569094296772b900a77 Description: X11 font rasterisation library (debug package) Multi-Arch: same Description-md5: 34df9ccab12e020cc409b387bcf4d60a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxft-dev Priority: optional Section: libdevel Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xft Version: 2.3.1-2 Provides: libxft2-dev Depends: libxft2 (= 2.3.1-2), libc6-dev | libc-dev, libfontconfig1-dev, libfreetype6-dev, libx11-dev (>= 2:1.0.0), libxrender-dev, zlib1g-dev | libz-dev Filename: pool/main/x/xft/libxft-dev_2.3.1-2_i386.deb Size: 43564 MD5sum: aae2e090727d2a5456820f119a97f176 SHA1: ef331bfbf229f7a87132b35c7602a2f8e9778c21 SHA256: d9b4fcf7a8dd6323f2ad3963f698a3e1238a0811d0e96ba41ac5c1e6236cbdca Description: FreeType-based font drawing library for X (development files) Description-md5: 361e21531f0392d4741d24575db55848 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxft2 Priority: optional Section: libs Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xft Version: 2.3.1-2 Depends: libc6 (>= 2.4), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.5), libx11-6, libxrender1 Pre-Depends: multiarch-support Filename: pool/main/x/xft/libxft2_2.3.1-2_i386.deb Size: 35582 MD5sum: 2a3849c03589504a381c8d3006d01f33 SHA1: f2d9fe461e4de36068ee3a688d3c3a80c32579c3 SHA256: 6768f439c9eab307f636d807bbcc8dd179c3f20f399e5857879fb29aa9045763 Description: FreeType-based font drawing library for X Multi-Arch: same Description-md5: 9f19660eee6522753a05ff6cf228ec1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxft2-dbg Priority: extra Section: libdevel Installed-Size: 508 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xft Version: 2.3.1-2 Depends: libxft2 (= 2.3.1-2) Filename: pool/main/x/xft/libxft2-dbg_2.3.1-2_i386.deb Size: 105514 MD5sum: e258f6a14e9117fa4f76271bc80a0bf3 SHA1: 3105f9f27d62ef792856dc9df6c88ca44d1c6184 SHA256: 4cabd5a92230cbb7d8e0c3a5dd662827abb99837c9c2d70e134b259d59054687 Description: FreeType-based font drawing library for X (unstripped) Multi-Arch: same Description-md5: 5fb7546efa0cbe8fd5660a0978307b57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxi-dev Priority: optional Section: libdevel Installed-Size: 623 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxi Version: 2:1.7.1.901-1ubuntu1 Replaces: x11proto-input-dev (<< 1.9.99) Depends: libxi6 (= 2:1.7.1.901-1ubuntu1), libx11-dev, libxext-dev, libxfixes-dev, x11proto-input-dev (>= 2.1.99.6), xorg-sgml-doctools (>= 1:1.5) Filename: pool/main/libx/libxi/libxi-dev_1.7.1.901-1ubuntu1_i386.deb Size: 203608 MD5sum: cc51d2d923f64dc4dae3cd2f6e1353d9 SHA1: 0397d41821220fbcbb25339de3e9ead3d89f3960 SHA256: 3f0fd1113cef44b69dbbad840599a6b14849b8a74a1e0b053e80464254d38558 Description: X11 Input extension library (development headers) Description-md5: 39bbbc7e9f5655daca53080ffdf25bc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxi6 Priority: optional Section: libs Installed-Size: 106 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxi Version: 2:1.7.1.901-1ubuntu1 Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Breaks: unity (<< 7.0.2), xserver-xorg-core (<< 2:1.14) Filename: pool/main/libx/libxi/libxi6_1.7.1.901-1ubuntu1_i386.deb Size: 32030 MD5sum: e89ef223ec4e9e4c08c911ef54d03134 SHA1: 2130b48b86b5888f2b8240fa4f38289a68782148 SHA256: e6946121e7145532db945b3580221e04c81fb36b8515ff4449662c6e574ae55e Description: X11 Input extension library Multi-Arch: same Description-md5: ba006f0e6e88bcc1dded33a4ac1bacfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxi6-dbg Priority: extra Section: libdevel Installed-Size: 1392 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxi Version: 2:1.7.1.901-1ubuntu1 Depends: libxi6 (= 2:1.7.1.901-1ubuntu1) Filename: pool/main/libx/libxi/libxi6-dbg_1.7.1.901-1ubuntu1_i386.deb Size: 451498 MD5sum: eee92d6c85094447ee6f8af5deba3cd5 SHA1: 775b22804e0ed636ebb3c175314d6110f6c969e8 SHA256: 5dbb351dadaeb96d17cb7d8400824bbb12b47791df5917032f8876afa6577628 Description: X11 Input extension library (debug package) Multi-Arch: same Description-md5: 857507268b7762f8b0c6a0614de2dde3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxinerama-dev Priority: optional Section: libdevel Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxinerama Version: 2:1.1.3-1 Replaces: x11proto-xinerama-dev (<< 1.2) Depends: libxinerama1 (= 2:1.1.3-1), libx11-dev, libxext-dev, x11proto-xinerama-dev (>= 1.2) Filename: pool/main/libx/libxinerama/libxinerama-dev_1.1.3-1_i386.deb Size: 8268 MD5sum: 3b7233591c8931d90f744ddd304d2a18 SHA1: 948baece46e2570e3a5e3be2b2b249b1592a9bfd SHA256: 43eb9974b4d5d99bd0aea53162109a3ce7e70e45369ad0ebc5f63d0c610c83c8 Description: X11 Xinerama extension library (development headers) Multi-Arch: same Description-md5: 2efd4db97130bfd4a9ddc036f4e668d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxinerama1 Priority: optional Section: libs Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxinerama Version: 2:1.1.3-1 Depends: libc6 (>= 2.1.3), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxinerama/libxinerama1_1.1.3-1_i386.deb Size: 7900 MD5sum: e590212314255945274190f669efc2f5 SHA1: fa51e783ab62ab7fe08da0e0a6dc4fccea49e3d7 SHA256: acbc483ce97574da5c224f9f9d54fc933edc15e68a0867de8712b0686caf6d9e Description: X11 Xinerama extension library Multi-Arch: same Description-md5: 8af4527c5c1d4c9cfadc619f456cc56d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxinerama1-dbg Priority: extra Section: libdevel Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxinerama Version: 2:1.1.3-1 Depends: libxinerama1 (= 2:1.1.3-1) Filename: pool/main/libx/libxinerama/libxinerama1-dbg_1.1.3-1_i386.deb Size: 20360 MD5sum: 7ee94f080ebfe0f488c0c1edb2631841 SHA1: f8a43ed505165c29fbaadc16dd1f6354b36e2dc6 SHA256: df2e301f88316f27a0e3c8391935113331039343bbaa0cbb0a06af6ade2daf70 Description: X11 Xinerama extension library (debug package) Multi-Arch: same Description-md5: 3efda02ddc20dc08432699587550c3db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxkbcommon-dev Priority: optional Section: libdevel Installed-Size: 611 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxkbcommon Version: 0.4.1-0ubuntu1 Depends: libxkbcommon0 (= 0.4.1-0ubuntu1) Filename: pool/main/libx/libxkbcommon/libxkbcommon-dev_0.4.1-0ubuntu1_i386.deb Size: 128826 MD5sum: b00282829e401b5d2ed1aff37c80ba91 SHA1: 03472690a685f80d405b592c779a143cb027fb3b SHA256: e69f38bdd6b926c73d578a9547cc6072c64107140a90eb7dd09f4bb5aed6b240 Description: library interface to the XKB compiler - development files Homepage: http://www.xkbcommon.org/ Description-md5: 37abc1bc57b20a1af92e4ac032e4dc49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxkbcommon-x11-0 Priority: optional Section: libs Installed-Size: 68 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxkbcommon Version: 0.4.1-0ubuntu1 Depends: libc6 (>= 2.17), libxcb-xkb1, libxcb1 (>= 1.6), libxkbcommon0 (>= 0.2.0) Pre-Depends: multiarch-support Filename: pool/main/libx/libxkbcommon/libxkbcommon-x11-0_0.4.1-0ubuntu1_i386.deb Size: 13644 MD5sum: ea2143762ed8f85af35de2cd53ca285e SHA1: 4494ac3ef7f6ee629ce12717e7db2f02899d2665 SHA256: 9578f064ed98c093fdbebe1fa4c47b85319fd170bbf5cf0d7e088b442baa6467 Description: library to create keymaps with the XKB X11 protocol Multi-Arch: same Homepage: http://www.xkbcommon.org/ Description-md5: 5ace56ad73d8c4d2404479302422a64c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxkbcommon-x11-dev Priority: extra Section: libdevel Installed-Size: 87 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxkbcommon Version: 0.4.1-0ubuntu1 Depends: libxkbcommon-x11-0 (= 0.4.1-0ubuntu1) Filename: pool/main/libx/libxkbcommon/libxkbcommon-x11-dev_0.4.1-0ubuntu1_i386.deb Size: 14820 MD5sum: d1c4f2c0c2bd9565c29f8bf9c3187cc0 SHA1: e6adebf041dc1156b59429bd2c4404a1e45404ed SHA256: 1f72481c26c306e46f45284ea55bdcf2f041d26645a435fee89cfe964f12cadd Description: library to create keymaps with the XKB X11 protocol - development files Homepage: http://www.xkbcommon.org/ Description-md5: f75e9d091cfe08a8075f60cdc7469b94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxkbcommon0 Priority: optional Section: libs Installed-Size: 275 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxkbcommon Version: 0.4.1-0ubuntu1 Depends: xkb-data, libc6 (>= 2.17) Pre-Depends: multiarch-support Filename: pool/main/libx/libxkbcommon/libxkbcommon0_0.4.1-0ubuntu1_i386.deb Size: 88692 MD5sum: 5c7c5532671a9b4f95c6e2c407575a40 SHA1: a2ae62b4199ebafc3761d3ba631f8ce4d47c3f15 SHA256: 61edcb784e9ecf12668ce6b86e10eb53419d95a0ce803355451ad7fd176515de Description: library interface to the XKB compiler - shared library Multi-Arch: same Homepage: http://www.xkbcommon.org/ Description-md5: 6af15d73a304f17fe923dd6d3ac18c17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxkbfile-dev Priority: optional Section: libdevel Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxkbfile Version: 1:1.0.8-1 Depends: libxkbfile1 (= 1:1.0.8-1), libx11-dev, x11proto-core-dev, x11proto-kb-dev Filename: pool/main/libx/libxkbfile/libxkbfile-dev_1.0.8-1_i386.deb Size: 82194 MD5sum: 14adaa7891e7ac6ceb3be4cb19541aef SHA1: b41c929b167f753f188e136b38a62d1e5c3fbf3c SHA256: e1544efe7392f40079e4d7bafe5199ceb10b67ab71324cd2e29a932053ff3233 Description: X11 keyboard file manipulation library (development headers) Multi-Arch: same Description-md5: ad5f62c86814066bcc2cca88f1feb02d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxkbfile1 Priority: optional Section: libs Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxkbfile Version: 1:1.0.8-1 Depends: libc6 (>= 2.7), libx11-6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxkbfile/libxkbfile1_1.0.8-1_i386.deb Size: 74410 MD5sum: f14e3b54bfb0be19ce6d94d67c1e8ed7 SHA1: a81394f7565b9161892c57893a40e64cc116d65d SHA256: 741367ff6ae096dd7e3df6579ed6f47ccf368cedf5a1fb737423de10255a83ab Description: X11 keyboard file manipulation library Multi-Arch: same Description-md5: e5bd1e08d32d2a15bb15debcd9ebca0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxkbfile1-dbg Priority: extra Section: libdevel Installed-Size: 456 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxkbfile Version: 1:1.0.8-1 Depends: libxkbfile1 (= 1:1.0.8-1) Filename: pool/main/libx/libxkbfile/libxkbfile1-dbg_1.0.8-1_i386.deb Size: 164894 MD5sum: 42af96dcc201582e3a4209a6afea908a SHA1: 699d24e75c2f401083775634b2aff92f0fe77540 SHA256: e33200841f24bdfbd67838b2f1baf7065a21c93afff8740cb189c45bfd11f487 Description: X11 keyboard file manipulation library (debug package) Multi-Arch: same Description-md5: 7bed775e20505db4d272ed92954d082c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxklavier-dev Priority: optional Section: libdevel Installed-Size: 429 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libxklavier Version: 5.4-0ubuntu1 Depends: libxklavier16 (= 5.4-0ubuntu1), libglib2.0-dev (>= 2.16.0), libxml2-dev (>= 2.0.0), libx11-dev, gir1.2-xkl-1.0 (= 5.4-0ubuntu1) Filename: pool/main/libx/libxklavier/libxklavier-dev_5.4-0ubuntu1_i386.deb Size: 63510 MD5sum: 549d3bdf12b5e11ff6a45c49264419ff SHA1: bfd064e4701e43ed827f7e0e054cdd32a8bdd22c SHA256: 95320a2be47877061acd4c5c8352a71be01b724c4439a3b14595142e0c82ce5c Description: Development files for libxklavier Homepage: http://www.freedesktop.org/wiki/Software/LibXklavier Description-md5: b597dcd5eda75cde0b43256434dc609f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxklavier16 Priority: optional Section: libs Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: libxklavier Version: 5.4-0ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libx11-6, libxi6 (>= 2:1.1.2), libxkbfile1, libxml2 (>= 2.7.4), xkb-data (>= 0.8), x11-xkb-utils Suggests: iso-codes Filename: pool/main/libx/libxklavier/libxklavier16_5.4-0ubuntu1_i386.deb Size: 41854 MD5sum: 9a2d6a9a38cfa8d6f92ad68a8215f9d9 SHA1: 92422488e1e2c03dffb8f2f270ee25fd0b38e656 SHA256: bf8f167da3dcef31551c72dd2ab4fb8183c8c754e5727fd7707b43176e87fafa Description: X Keyboard Extension high-level API Homepage: http://www.freedesktop.org/wiki/Software/LibXklavier Description-md5: 1cd9d83d8439126ed00f6818cfce823d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxml++2.6-2 Priority: optional Section: libs Installed-Size: 238 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: i386 Source: libxml++2.6 Version: 2.36.0-2ubuntu1 Replaces: libxml++2.6c2a Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglibmm-2.4-1c2a (>= 2.36.2), libstdc++6 (>= 4.6), libxml2 (>= 2.7.4) Breaks: gnote (<< 0.4) Filename: pool/main/libx/libxml++2.6/libxml++2.6-2_2.36.0-2ubuntu1_i386.deb Size: 63722 MD5sum: 7fedc4b1a36446f6ba9f7f11321a0742 SHA1: 09d453886e39889f05780e7f129089d12cacbcaf SHA256: 6e6f55675350a133dead3015cdb3bdec6138e1760f6ef528e1772e1ca39ed077 Description: C++ interface to the GNOME XML library (libxml2) Homepage: http://libxmlplusplus.sourceforge.net/ Description-md5: 5000d474cafbf7c5dd4265d7b92c45a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: libxml++2.6-dbg Priority: extra Section: libdevel Installed-Size: 1257 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: i386 Source: libxml++2.6 Version: 2.36.0-2ubuntu1 Depends: libxml++2.6-2 (= 2.36.0-2ubuntu1) Filename: pool/main/libx/libxml++2.6/libxml++2.6-dbg_2.36.0-2ubuntu1_i386.deb Size: 265774 MD5sum: c4fdcdfdd096491f0e0fbdec1aa7ad43 SHA1: 52c7e28624eff38ce503b93caa294c691b7fccb3 SHA256: d698e0281710c70f327cead2076a3e0886ac4b2f209053c62eb786ce27ef10a7 Description: C++ interface to the GNOME XML library (debug symbols) Homepage: http://libxmlplusplus.sourceforge.net/ Description-md5: 1371a4f099f93f9bc292a84ed5d8dd4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml++2.6-dev Priority: optional Section: libdevel Installed-Size: 493 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: i386 Source: libxml++2.6 Version: 2.36.0-2ubuntu1 Depends: libxml++2.6-2 (= 2.36.0-2ubuntu1), libxml2-dev (>= 2.7.3), libglibmm-2.4-dev (>= 2.32.0) Suggests: libxml++2.6-doc, pkg-config Filename: pool/main/libx/libxml++2.6/libxml++2.6-dev_2.36.0-2ubuntu1_i386.deb Size: 72862 MD5sum: 57d3ffa6f3c443d1ebe546ad5264aa5f SHA1: ab0e8de40f4bd4b4bd160560f5afe5b98abec3f5 SHA256: 45a8442856a909116b45e60c2e21e24bbadfb542ab3c31cc4f7f206354558b00 Description: C++ interface to the GNOME XML library (libxml2) Homepage: http://libxmlplusplus.sourceforge.net/ Description-md5: 9cfa81a79419cccc6d88cb79db42ec7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml++2.6-doc Priority: optional Section: doc Installed-Size: 2830 Maintainer: Ubuntu Developers Original-Maintainer: Deng Xiyue Architecture: all Source: libxml++2.6 Version: 2.36.0-2ubuntu1 Depends: doc-base, lynx | www-browser Suggests: libxml++2.6-dev Filename: pool/main/libx/libxml++2.6/libxml++2.6-doc_2.36.0-2ubuntu1_all.deb Size: 608290 MD5sum: 2f66f00c8eb2a8c4b8b267b0758520df SHA1: 1eea56361ede46199e33693c23d348a61957df73 SHA256: 0aaede33db863bb9ab3858bb218c0e4aeb0dfc012c102e9a608b5fc5303fcfbc Description: HTML interface documentation and examples for libxml++ Homepage: http://libxmlplusplus.sourceforge.net/ Description-md5: 09427d4c7495a883c720f9cce9f4b33c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-commons-external-java Priority: optional Section: libs Installed-Size: 384 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xml-commons-external Version: 1.4.01-2build1 Filename: pool/main/x/xml-commons-external/libxml-commons-external-java_1.4.01-2build1_all.deb Size: 245248 MD5sum: a3ba72113c451b98099d582afa64112c SHA1: bd7d1f2d0bd166b9866e9ec3a6e33ead50cf8823 SHA256: 973f5e9d660768159e4b5fbe0c920692be1f0c5ef5e991ae1e4e258c869c7061 Description: XML Commons external code - DOM, SAX, and JAXP, etc Homepage: http://xml.apache.org/commons/ Description-md5: 4e1b50a9891dd28c555faf706a632ecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libxml-commons-external-java-doc Priority: optional Section: doc Installed-Size: 1546 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xml-commons-external Version: 1.4.01-2build1 Filename: pool/main/x/xml-commons-external/libxml-commons-external-java-doc_1.4.01-2build1_all.deb Size: 168958 MD5sum: 74530ae90b3a92fa6e3bd1853cc8287d SHA1: 56507b148e9430ac03153c45b9dca68ece849d50 SHA256: a332ca12dcacf4174a6c3f14fb53abf8bed2a507359fc916e46284777b9cdb89 Description: Documentation of XML Commons external API Homepage: http://xml.apache.org/commons/ Description-md5: ff04559719db4b7095c9032af8c070d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-commons-resolver1.1-java Priority: optional Section: libs Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.2-7build1 Suggests: libxml-commons-resolver1.1-java-doc Filename: pool/main/libx/libxml-commons-resolver1.1-java/libxml-commons-resolver1.1-java_1.2-7build1_all.deb Size: 91600 MD5sum: b90c2054a7e0fed8ee79b582952b310b SHA1: f67c82c92b56986181aae200d5916c913dfdf77c SHA256: 39dc0c3162d2a957d9d5e13065d6b23d223489aa8341b09af35d59d52f1f731c Description: XML entity and URI resolver library Homepage: http://xml.apache.org/commons/ Description-md5: b02dd46b0597bad6766a676bf9a4f539 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: libxml-commons-resolver1.1-java-doc Priority: optional Section: doc Installed-Size: 1254 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: libxml-commons-resolver1.1-java Version: 1.2-7build1 Suggests: libxml-commons-resolver1.1-java Filename: pool/main/libx/libxml-commons-resolver1.1-java/libxml-commons-resolver1.1-java-doc_1.2-7build1_all.deb Size: 110976 MD5sum: b27320b86f5908f2ebf8d891e6b8dd0c SHA1: 21f19d4e9503cf1d46b11bb2ffb8fd3999434688 SHA256: 5790ee82cb67953361cc652af694d28d460c238acef4b9b3433779068940b293 Description: XML entity and URI resolver library -- documentation Homepage: http://xml.apache.org/commons/ Description-md5: f3d0f98e5c6424bca86cbbd706dbe09f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-commons-resolver1.1-java-gcj Priority: optional Section: libs Installed-Size: 324 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: i386 Source: libxml-commons-resolver1.1-java Version: 1.2-7build1 Depends: libxml-commons-resolver1.1-java (= 1.2-7build1), libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libgcj-bc (>= 4.6.3-1~), libgcj-common (>> 1:4.1.1-13) Filename: pool/main/libx/libxml-commons-resolver1.1-java/libxml-commons-resolver1.1-java-gcj_1.2-7build1_i386.deb Size: 93244 MD5sum: ac925849d624b4a7d23bc3a829dbb3f1 SHA1: bba25e623a0f5dd9bf6f0664b3b5babf5700068f SHA256: c1c1a9948d584d8e447e51cda93b6a06d32fa6d9396813cd7f6b62b590e70bb7 Description: XML entity and URI resolver library -- native library Homepage: http://xml.apache.org/commons/ Description-md5: cedd8cf091ffb8b185aaf2a25777d6d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-dom-perl Priority: optional Section: perl Installed-Size: 496 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.44-1 Depends: libwww-perl, libxml-parser-perl (>= 2.34), libxml-perl, libxml-regexp-perl, perl (>= 5.6.0-16) Filename: pool/main/libx/libxml-dom-perl/libxml-dom-perl_1.44-1_all.deb Size: 185016 MD5sum: a83e4cb071b125dcadf46f767db756f7 SHA1: 372b88182d2a958e89ad2045c13db06f34bb2898 SHA256: b6c584338a862985b9f6b640aa964a33fe436220549c18e4b180a20a5cc71406 Description: Perl module for building DOM Level 1 compliant doc structures Homepage: http://search.cpan.org/dist/XML-DOM/ Description-md5: b7fb8c0f04b00667305bf4db9a3d2328 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-filter-buffertext-perl Priority: optional Section: perl Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.01-5 Depends: perl, libxml-sax-perl (>= 0.10) Filename: pool/main/libx/libxml-filter-buffertext-perl/libxml-filter-buffertext-perl_1.01-5_all.deb Size: 7374 MD5sum: 622b8eccf365dd522e6603bdfef1e36c SHA1: 1dcf8f4b3cbef00382b22c8b1771488b6b3fce52 SHA256: b8083c956185fe03bb51a27e5c17cc25b78bd9c037d7b8fce7905da935253871 Description: Perl module for putting all characters into a single event Homepage: http://search.cpan.org/dist/XML-Filter-BufferText/ Description-md5: 2501c67234a8c077d0e624479011af75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-libxml-perl Priority: optional Section: perl Installed-Size: 1021 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 2.0108+dfsg-1 Depends: libc6 (>= 2.4), libxml2 (>= 2.7.4), perl (>= 5.18.1-5), perlapi-5.18.1, libxml-namespacesupport-perl, libxml-sax-perl Filename: pool/main/libx/libxml-libxml-perl/libxml-libxml-perl_2.0108+dfsg-1_i386.deb Size: 336362 MD5sum: de0a321a69c1e0d8089fe23968ed760d SHA1: 42cc8de2c76a3210ceac8216da9fdb5fc958b6ed SHA256: 24bc144a8207890ab38c2ed34494c23a632279b7b0305a2aed91e2bd8d34c586 Description: Perl interface to the libxml2 library Homepage: https://metacpan.org/release/XML-LibXML/ Description-md5: d585b9f49fd3c911baab5d83bfe8dae5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-libxslt-perl Priority: optional Section: perl Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 1.84-1 Depends: libxml-libxml-perl, perl (>= 5.18.1-5), perlapi-5.18.1, libc6 (>= 2.4), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25) Filename: pool/main/libx/libxml-libxslt-perl/libxml-libxslt-perl_1.84-1_i386.deb Size: 42406 MD5sum: dfa124674495c6a917b6b0130383d1cc SHA1: dc718127ae95555447ee464288cfbbb6695bf2e0 SHA256: cd6d99ccbf9db66bde4aced6b09fbe36a8ee0edba8ae90ceedc8bf3948d80e8c Description: Perl interface to the GNOME libxslt library Homepage: https://metacpan.org/release/XML-LibXSLT/ Description-md5: 5a4ed3da894c2605abd86c174ea7495c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-namespacesupport-perl Priority: optional Section: perl Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.11-1 Depends: perl Filename: pool/main/libx/libxml-namespacesupport-perl/libxml-namespacesupport-perl_1.11-1_all.deb Size: 13230 MD5sum: a32900884789112a7be6bcc2ed7dabae SHA1: 986bc727e39b78707d6eda704c98f5b5ee6ac71e SHA256: 94785caafac35ee223d4f265a2b3c997d15ef25cbe887ab68b94a53dc5f9ca3d Description: Perl module for supporting simple generic namespaces Homepage: https://metacpan.org/release/XML-NamespaceSupport/ Description-md5: bb879c06ad33a8cd6d85483505387a81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-parser-perl Priority: optional Section: perl Installed-Size: 585 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 2.41-1build3 Depends: perl (>= 5.18.1-4), perlapi-5.18.1, liburi-perl, libwww-perl, libc6 (>= 2.4), libexpat1 (>= 2.0.1) Filename: pool/main/libx/libxml-parser-perl/libxml-parser-perl_2.41-1build3_i386.deb Size: 298964 MD5sum: c1e1547e4cce1a40736e1c01494ec43d SHA1: 797ecaf82cd7f29fb52a7f91f65283dc6be63144 SHA256: 6ec59082474167fb2f55e4bb5fccc616ce025d90a55ec35e3ed397e4f3ae7ba2 Description: Perl module for parsing XML files Homepage: http://www.libexpat.org/ Description-md5: f3f996bbf5ff035cbc02bffeda96694b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop Package: libxml-perl Priority: optional Section: perl Installed-Size: 400 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.08-2 Depends: perl, libxml-parser-perl Filename: pool/main/libx/libxml-perl/libxml-perl_0.08-2_all.deb Size: 112910 MD5sum: 557941d947399af6ec19cfae8d718561 SHA1: 5fd0f0d20a7702b1809cc865b8730a17d55607c6 SHA256: 9ad1d2b789e6abc6ecada9e8c13b43c45a74208dbe40aebfdc454beb815bfbe3 Description: Perl modules for working with XML Homepage: http://search.cpan.org/dist/libxml-perl/ Description-md5: 090e132f6119a4673ee8d32d2fc6ac2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-regexp-perl Priority: optional Section: perl Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.04-1 Depends: perl Filename: pool/main/libx/libxml-regexp-perl/libxml-regexp-perl_0.04-1_all.deb Size: 8072 MD5sum: 159a38d22f584ececb34debfd761b046 SHA1: d5f9c2d3397eca66b51ad45ca8c5129715162a33 SHA256: e0db16fea81a66ec8ba5d53735ffb50fcef4d1977a50b6cf0d3a5447160976d9 Description: Perl module for regular expressions for XML tokens Homepage: http://search.cpan.org/dist/XML-RegExp/ Description-md5: 10fc2bc96be2a78c9326442a7aad7058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-sax-base-perl Priority: optional Section: perl Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.07-1 Replaces: libxml-sax-perl (<< 0.99+dfsg-1) Depends: perl Breaks: libxml-sax-perl (<< 0.99+dfsg-1) Filename: pool/main/libx/libxml-sax-base-perl/libxml-sax-base-perl_1.07-1_all.deb Size: 21514 MD5sum: 53a17589e07c67dfe52bfeab616f4040 SHA1: f1b73b0958d16a73f475b6715cdb4913ce46cf87 SHA256: c814249304dad3112ce5b9d0f17135f899ed4a046bcb420e0fefe96f2ef90593 Description: base class for SAX drivers and filters Homepage: http://search.cpan.org/dist/XML-SAX-Base/ Description-md5: d2b9fd04fe2bfb32b35febb80f2cfc34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-sax-expat-perl Priority: optional Section: perl Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.40-2 Depends: perl, libxml-namespacesupport-perl (>= 0.03), libxml-parser-perl (>= 2.27), libxml-sax-perl (>= 0.03) Filename: pool/main/libx/libxml-sax-expat-perl/libxml-sax-expat-perl_0.40-2_all.deb Size: 11516 MD5sum: 097ab7a9cab881e1d7df553f7f29bb9f SHA1: ca7e14a5cfe91b252a6617c2023dcafe269bc965 SHA256: 90d67eb99244f1bb4b48f15208c4765d387f6d5d71c189edce60af0296e4b066 Description: Perl module for a SAX2 driver for Expat (XML::Parser) Homepage: http://search.cpan.org/dist/XML-SAX-Expat/ Description-md5: b242c9d25492331b246160ca4a019e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-sax-perl Priority: optional Section: perl Installed-Size: 225 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.99+dfsg-2ubuntu1 Depends: perl, libxml-namespacesupport-perl, libxml-sax-base-perl, ucf (>= 0.28) Recommends: libxml-sax-expat-perl Filename: pool/main/libx/libxml-sax-perl/libxml-sax-perl_0.99+dfsg-2ubuntu1_all.deb Size: 64596 MD5sum: 8f4bba98ec71cb3f4efbf5164ca1c6d4 SHA1: 66ef8ccb06756da79542bb14d4b478580414d0af SHA256: 8d502edffe2b4843f2541b8cdf308b587331c76efb1e3343fabe36826c714e10 Description: Perl module for using and building Perl SAX2 XML processors Homepage: http://search.cpan.org/dist/XML-SAX/ Description-md5: 85b6ca7554a3537b49500d73d818d9b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml-sax-writer-perl Priority: optional Section: perl Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.53-1 Depends: perl, libxml-filter-buffertext-perl, libxml-namespacesupport-perl, libxml-sax-perl Filename: pool/main/libx/libxml-sax-writer-perl/libxml-sax-writer-perl_0.53-1_all.deb Size: 22336 MD5sum: 9bf60c55d89895e015dca9a780dfb9cf SHA1: f586f8776167088dc94fb0871f515c9e3193e306 SHA256: 4bb44d6501ff4ba4a135d4fa9aebad5c74207a5f59ff22751af518f95901f158 Description: Perl module for a SAX2 XML writer Homepage: http://search.cpan.org/dist/XML-SAX-Writer/ Description-md5: 9162abd02009c1134cce2671337f9586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml-simple-perl Priority: optional Section: perl Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 2.20-1 Depends: perl, libxml-namespacesupport-perl (>= 1.04), libxml-sax-perl, libxml-libxml-perl | libxml-sax-expat-perl Filename: pool/main/libx/libxml-simple-perl/libxml-simple-perl_2.20-1_all.deb Size: 68312 MD5sum: 67605b87526fe4e90a21a85a972c4fe2 SHA1: ac6945c0a99924e6522f7b324d51c9f4be2200ce SHA256: e2293680ca919c8d1c9c3bf75ea36b3ac130add180ffa927d2c3cee09530f5e3 Description: Perl module for reading and writing XML Homepage: http://search.cpan.org/dist/XML-Simple/ Description-md5: 9205d4b838f0b9ba0b4731da4e97a76d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxml2 Priority: standard Section: libs Installed-Size: 1749 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Version: 2.9.1+dfsg1-3ubuntu4 Depends: libc6 (>= 2.15), liblzma5 (>= 5.1.1alpha+20120614), zlib1g (>= 1:1.2.3.3) Pre-Depends: multiarch-support Recommends: xml-core Filename: pool/main/libx/libxml2/libxml2_2.9.1+dfsg1-3ubuntu4_i386.deb Size: 555038 MD5sum: c25718110e376e1c55f31b5eedea346e SHA1: 4501a442de48a66ba7854523b37b3631229448d0 SHA256: e352e069891fb5c120ade3d2b3a1909a27b09fe300fb1e26a7f3fab031b59457 Description: GNOME XML library Multi-Arch: same Homepage: http://xmlsoft.org/ Description-md5: 6771e66f557fa0f71e6955303e1d8f8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxml2-dbg Priority: extra Section: libdevel Installed-Size: 1466 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Depends: libxml2 (= 2.9.1+dfsg1-3ubuntu4) Filename: pool/main/libx/libxml2/libxml2-dbg_2.9.1+dfsg1-3ubuntu4_i386.deb Size: 1196266 MD5sum: 325a907537c81ce8d809160456947d0e SHA1: 2a825b04f622430c81e6cdd032318e55d41d2fd6 SHA256: 9ede419ccef4ecaa5074b131d8f1cfdc8093cf092238a36017d3f6899133f229 Description: Debugging symbols for the GNOME XML library Multi-Arch: same Homepage: http://xmlsoft.org/ Description-md5: 9ec720505d02de944686c1135841e078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml2-dev Priority: optional Section: libdevel Installed-Size: 2429 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Depends: libxml2 (= 2.9.1+dfsg1-3ubuntu4) Suggests: pkg-config Filename: pool/main/libx/libxml2/libxml2-dev_2.9.1+dfsg1-3ubuntu4_i386.deb Size: 627248 MD5sum: 592ff913a769792868d07ac13c028395 SHA1: 3f50f827c888546a81a05f6067b4a3d997aa8294 SHA256: 9b42d3f5d613bb6905d95f8db57dcc608aea1b482e707cc6d0b5a337424dc590 Description: Development files for the GNOME XML library Multi-Arch: same Homepage: http://xmlsoft.org/ Description-md5: 3fc5da551079ce5d27e8aae047e7a888 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml2-doc Priority: optional Section: doc Installed-Size: 8511 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Suggests: devhelp Filename: pool/main/libx/libxml2/libxml2-doc_2.9.1+dfsg1-3ubuntu4_all.deb Size: 801722 MD5sum: 15ad8ffe54c741f8a173b748606e8815 SHA1: 3a9f2f9dea30f734347f5f33da96b944b999e308 SHA256: af6744fff2ac496a3673a1040427352584fb54a0aca2f41560c80a850c7808bf Description: Documentation for the GNOME XML library Multi-Arch: foreign Homepage: http://xmlsoft.org/ Description-md5: 5a090ab419791c5777762dc26465ac3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxml2-utils Priority: optional Section: text Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Depends: libc6 (>= 2.7), libreadline6 (>= 6.0), libxml2 (>= 2.9.0) Filename: pool/main/libx/libxml2/libxml2-utils_2.9.1+dfsg1-3ubuntu4_i386.deb Size: 33394 MD5sum: 68f60551f0a02df63a972b52804d36c2 SHA1: 3df8f5c3807049b2b514149e4026f7d2988c0960 SHA256: 05e5763f1ba9bc6fb445fce95d36355f4b26f8a3847ef41e520acbccd5fe3405 Description: XML utilities Multi-Arch: foreign Homepage: http://xmlsoft.org/ Description-md5: eb24a32e7f02ae9cc4d9ada525dc1964 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics, ubuntu-gnome-desktop Package: libxml2-utils-dbg Priority: extra Section: debug Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Depends: libxml2-utils (= 2.9.1+dfsg1-3ubuntu4) Filename: pool/main/libx/libxml2/libxml2-utils-dbg_2.9.1+dfsg1-3ubuntu4_i386.deb Size: 65844 MD5sum: 69001fd60045c81192c28c8e833f5c65 SHA1: 08e18b13e218103edc69ca021813dee6271ac17b SHA256: e41c425a6e2afab6deb84a6eaf8040fdea53ae6503d1e6e1424bc3bc40dd5e8e Description: XML utilities (debug extension) Homepage: http://xmlsoft.org/ Description-md5: 54315da2c98caf530cdead72cdb9a09b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmlbeans-java Priority: optional Section: libs Installed-Size: 2784 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xmlbeans Version: 2.5.0-4build1 Depends: libxml-commons-resolver1.1-java Filename: pool/main/x/xmlbeans/libxmlbeans-java_2.5.0-4build1_all.deb Size: 2332964 MD5sum: 3dcc46b12845adf356d92a3943c91edc SHA1: bc1d07d3f335682c1786959e6f287e64513677aa SHA256: 58c039331d72801d582f7ebaca06514ebb3009a2ee3863f0a2c91f9cbab06eea Description: Java library for accessing XML by binding it to Java types Homepage: http://xmlbeans.apache.org/ Description-md5: e2e8a3e123e327293ed0fb099aace377 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmlgraphics-commons-java Priority: optional Section: libs Installed-Size: 656 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xmlgraphics-commons Version: 1.5-4ubuntu1 Depends: libcommons-io-java, libcommons-logging-java Suggests: libxmlgraphics-commons-java-doc Filename: pool/main/x/xmlgraphics-commons/libxmlgraphics-commons-java_1.5-4ubuntu1_all.deb Size: 548366 MD5sum: 66310ef0f8aa9a58c8ecec365596a162 SHA1: bcc5ebfeab5e1c204c53123681424c73b16cfec5 SHA256: c2874a0c6200d86a5fd655279295a87346278fa14a32ad870056c71146709b67 Description: Reusable components used by Batik and FOP Homepage: http://xmlgraphics.apache.org/commons/ Description-md5: 70f3977c38c425fc4b7d846f700b68bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmlgraphics-commons-java-doc Priority: optional Section: doc Installed-Size: 10564 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xmlgraphics-commons Version: 1.5-4ubuntu1 Suggests: libxmlgraphics-commons-java Filename: pool/main/x/xmlgraphics-commons/libxmlgraphics-commons-java-doc_1.5-4ubuntu1_all.deb Size: 411048 MD5sum: 01220cfc480ec1528926ff01dad562d6 SHA1: 9a6ebed5827f110ab953cbda145e94d9ef3c69cf SHA256: 799f53691d9af8f34ff5dbc91d11f76e4986b7f92a7f59a091b53efd5256d9aa Description: Reusable components used by Batik and FOP (documentation) Homepage: http://xmlgraphics.apache.org/commons/ Description-md5: b0068e0c04986cd51ea594e707592bfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmltok1 Priority: optional Section: libs Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxmltok Version: 1.2-3build3 Depends: libc6 (>= 2.4) Filename: pool/main/libx/libxmltok/libxmltok1_1.2-3build3_i386.deb Size: 53796 MD5sum: 1404c6a92bbd7b0ab26391820f87bca1 SHA1: cd042855d5e4692161fa3f1b06f66c1f625cee7b SHA256: 2feffea33255005af79aa9b0139e2fef5a1f06655a9231ddc1c6faf329941488 Description: XML Parser Toolkit, runtime libraries Homepage: http://www.jclark.com/xml/expat.html Description-md5: 69ef786d49a46efbd1c98830282da30e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmltok1-dev Priority: optional Section: libdevel Installed-Size: 266 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxmltok Version: 1.2-3build3 Depends: libxmltok1 (= 1.2-3build3), libc6-dev | libc-dev Filename: pool/main/libx/libxmltok/libxmltok1-dev_1.2-3build3_i386.deb Size: 73464 MD5sum: f5797ced3b02ebe032a19cdbadd770a0 SHA1: 0338d82e1af4bb49e4a89ac6db11eb6726496fd6 SHA256: 4f23918f78f9948cb96c352fb30c28d659fedfa589bcffb6d2515b16aac85942 Description: XML Parser Toolkit, developer libraries Homepage: http://www.jclark.com/xml/expat.html Description-md5: 4bde7e069f9e49e0a64c14812747c6dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmlunit-java Priority: optional Section: java Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xmlunit Version: 1.5-1 Depends: junit, libjaxp1.3-java Filename: pool/main/x/xmlunit/libxmlunit-java_1.5-1_all.deb Size: 93240 MD5sum: 3f16f311341bb54582364dcacef1bacc SHA1: 38ab169c8c3e5ab9747c2c2e43db9bb665397209 SHA256: 4fa6d3e357fd461a4a63510a72e87fec1f089e713c8b35641a745b1baeb8f055 Description: Unit testing for XML documents Homepage: http://xmlunit.sourceforge.net/ Description-md5: ae4748d49ea277f240a27b67e8e8022f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmlunit-java-doc Priority: optional Section: doc Installed-Size: 2298 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xmlunit Version: 1.5-1 Depends: default-jdk-doc Filename: pool/main/x/xmlunit/libxmlunit-java-doc_1.5-1_all.deb Size: 514782 MD5sum: 89de456f7e3e83ed4db6665cc1a2b6c8 SHA1: a2d3b2f700ab32fbfb1d5967472066f5f03638ad SHA256: b769b8b79edaa0e86f5c0b6f83506492b2977a8d1794bcd2782e645cfc055b4c Description: Documentation for XMLUnit Homepage: http://xmlunit.sourceforge.net/ Description-md5: a47a149fedb5998aac8eee5719112090 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmu-dev Priority: optional Section: libdevel Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxmu Version: 2:1.1.1-1 Depends: libxext-dev, libxt-dev, libxmu6 (= 2:1.1.1-1), libxmu-headers (= 2:1.1.1-1) Filename: pool/main/libx/libxmu/libxmu-dev_1.1.1-1_i386.deb Size: 55480 MD5sum: c3c7ee82935ff2bb4b849bf81370b4a3 SHA1: fa38d0b3d042291e30bacc98f033f08e2f7dd062 SHA256: bdbbbd0d2115b5c3c2f1e3d4fce91cedbe08ce0d4306d0f66c94782d770c8833 Description: X11 miscellaneous utility library (development headers) Multi-Arch: same Description-md5: 1535c013b63a4134a8f998fbc83b84eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmu-headers Priority: optional Section: x11 Installed-Size: 324 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libxmu Version: 2:1.1.1-1 Depends: libx11-dev, x11proto-core-dev Filename: pool/main/libx/libxmu/libxmu-headers_1.1.1-1_all.deb Size: 61988 MD5sum: d91c33d72887b74c3997b69a69a0a53d SHA1: 3b482ebc3197354aed3e55e5d3162273b81cf67c SHA256: 567228753242f44b2cd2bd931fcc2a3ff5d61f2b8cc08253730bc31b028cad0a Description: X11 miscellaneous utility library headers Multi-Arch: foreign Description-md5: a50fe5fa06a21984619f3b9e9d32391a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmu6 Priority: optional Section: libs Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxmu Version: 2:1.1.1-1 Depends: libc6 (>= 2.7), libx11-6, libxext6, libxt6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxmu/libxmu6_1.1.1-1_i386.deb Size: 52880 MD5sum: c9695fc4453826f5a0689c7250fa4951 SHA1: 8a80cb67ecba6002cfa734028229682349928b1b SHA256: 5b81fd65e345f8185272d30ce55b481e742c0ad8abf6c72b9ff25803786fe19e Description: X11 miscellaneous utility library Multi-Arch: same Description-md5: 5399b16d918a060136eb6d6a5cfda654 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxmu6-dbg Priority: extra Section: libdevel Installed-Size: 486 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxmu Version: 2:1.1.1-1 Depends: libxmu6 (= 2:1.1.1-1) Filename: pool/main/libx/libxmu/libxmu6-dbg_1.1.1-1_i386.deb Size: 177020 MD5sum: eff937c8501573ea9a80669065bf744d SHA1: 20099ac38269314e7202c9b5234614586530e17e SHA256: b2db584a00f9c546b49d3f115a4cb8925c4d53b5d278f616211a7f279919e1b7 Description: X11 miscellaneous utility library (debug package) Multi-Arch: same Description-md5: 74842649756d66458d661751633517ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmuu-dev Priority: optional Section: libdevel Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxmu Version: 2:1.1.1-1 Depends: libxmuu1 (= 2:1.1.1-1), libxmu-headers (= 2:1.1.1-1) Filename: pool/main/libx/libxmu/libxmuu-dev_1.1.1-1_i386.deb Size: 7868 MD5sum: 2b39288803ed7482982ed797c43015e8 SHA1: 8d8ea2adc7587a4324c4aee9e1682a1651311681 SHA256: ead5a610049cc61f1a250365dab10673de795cf573dd3164977d79ece00dd2fb Description: X11 miscellaneous micro-utility library (development headers) Multi-Arch: same Description-md5: 82e532669f63dcf82d16c33a3969f937 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxmuu1 Priority: standard Section: libs Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxmu Version: 2:1.1.1-1 Depends: libc6 (>= 2.4), libx11-6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxmu/libxmuu1_1.1.1-1_i386.deb Size: 11062 MD5sum: 9296269fa8c6a7845da7d3ea188c2fe2 SHA1: aa51765c89bdb42935f155f7df455a0f413cc73e SHA256: c06f70f0fc77f814f6b4c38ce618b5629eb4d8fdb9e33747e7ad779696b320ca Description: X11 miscellaneous micro-utility library Multi-Arch: same Description-md5: 9bbd97bf046baafb7d73b980536d719d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: libxmuu1-dbg Priority: extra Section: libdevel Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxmu Version: 2:1.1.1-1 Depends: libxmuu1 (= 2:1.1.1-1) Filename: pool/main/libx/libxmu/libxmuu1-dbg_1.1.1-1_i386.deb Size: 23770 MD5sum: dcf3a853963fa004690297a5bf4ee816 SHA1: f58dba25a3a7546f46a0f4d7306c5533924c4eb1 SHA256: 87abd52b9a3d64921dddd583d2cefc4a51356075601ed8c3cfd7b1204e7d0c98 Description: X11 miscellaneous micro-utility library (debug package) Multi-Arch: same Description-md5: e4dcd200da39b15800208107b9ab2361 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxom-java Priority: optional Section: libs Installed-Size: 234 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xom Version: 1.2.10-1 Depends: libjaxen-java (>= 1.1~beta8), libxerces2-java Suggests: libxom-java-doc Filename: pool/main/x/xom/libxom-java_1.2.10-1_all.deb Size: 169580 MD5sum: d55451959df7cecea94ecb8996838d72 SHA1: 1acc73f05b45d71df393990075e7df7f8d5c84eb SHA256: 036da9af4cfe68878701c2881aee938dd16a4b951d9cddefb541789e2f92b4bf Description: New XML object model for Java Homepage: http://www.xom.nu Description-md5: a8d1a9a18a1e7ad5b84a130a26b5a216 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxom-java-doc Priority: optional Section: doc Installed-Size: 2099 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xom Version: 1.2.10-1 Suggests: libxom-java Filename: pool/main/x/xom/libxom-java-doc_1.2.10-1_all.deb Size: 321420 MD5sum: 12f80cf597faadeccbb50123fbb173fc SHA1: dcd198bc8796495451459da102b1234f261e3f9d SHA256: 7b403c1818511bcb9d5fcdde3c9a740eb8a67d5f2e193e68f9c483258fdbc851 Description: Documentation for the libxom-java package Homepage: http://www.xom.nu Description-md5: 48c08460dd7d1351556c19a551e7dd9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxorg-gtest-data Priority: extra Section: devel Installed-Size: 45 Maintainer: Ubuntu X-SWAT Original-Maintainer: Daniel d'Andrada Architecture: all Source: xorg-gtest Version: 0.7.1-0ubuntu1 Filename: pool/main/x/xorg-gtest/libxorg-gtest-data_0.7.1-0ubuntu1_all.deb Size: 4454 MD5sum: c6c8fed6b5c7bb4d4e2aff0a6efc559a SHA1: 3415ff7291fb7727ca4e1581419803b701425af6 SHA256: e6e69753b8db43f6291caa3ede4ac8de81837a0bee6c5f8152f9b660300bc4a9 Description: X.Org dummy testing environment for Google Test - data Description-md5: 08ecf793ed69edad10e3d0e5409d9bd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxorg-gtest-dev Priority: extra Section: libdevel Installed-Size: 494 Maintainer: Ubuntu X-SWAT Original-Maintainer: Daniel d'Andrada Architecture: all Source: xorg-gtest Version: 0.7.1-0ubuntu1 Depends: libgtest-dev, libxorg-gtest-data (= 0.7.1-0ubuntu1), xserver-xorg-video-dummy, xutils-dev (>= 1:7.7~1) Filename: pool/main/x/xorg-gtest/libxorg-gtest-dev_0.7.1-0ubuntu1_all.deb Size: 109890 MD5sum: 292ac0619cfc10c47c0adbea21041327 SHA1: 769fac83acf17b3f068af9b8ff5c76f38590cda2 SHA256: cd06481c7f0f273a498401e61e43b1c3cc2c17ee01945630a381db42fed90015 Description: X.Org dummy testing environment for Google Test - headers Description-md5: 6b6abcca5b485476fcdb131ad5ed9b78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxorg-gtest-doc Priority: extra Section: doc Installed-Size: 658 Maintainer: Ubuntu X-SWAT Original-Maintainer: Daniel d'Andrada Architecture: all Source: xorg-gtest Version: 0.7.1-0ubuntu1 Filename: pool/main/x/xorg-gtest/libxorg-gtest-doc_0.7.1-0ubuntu1_all.deb Size: 108064 MD5sum: ee5150148ca5d931b5ba0e67376034de SHA1: 8be6e675f3988252bb0bd723a1c35170ff5d357b SHA256: bff9d1f0ef4f545981605b2775ea8a24f0d697d4fbbe168a03e3ed9513bc021a Description: X.org dummy testing environment for Google Test - documentation Description-md5: 4f53e8779760dec3c4f1de6fe7160b62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxp-dev Priority: optional Section: x11 Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxp Version: 1:1.0.2-1ubuntu1 Depends: libxp6 (= 1:1.0.2-1ubuntu1), libx11-dev (>= 2:1.0.0), x11proto-print-dev, libxext-dev, libxau-dev Filename: pool/main/libx/libxp/libxp-dev_1.0.2-1ubuntu1_i386.deb Size: 78162 MD5sum: 72d174a5609052a644144ea2f86c81b1 SHA1: 04fae3afcfa6bcbcee8cfdb723dce2d9a9202b1a SHA256: 9bd3a0164c7e668b4a92d77ccea87b2ad83bc8c70532eccf86654d183d26cb63 Description: X Printing Extension (Xprint) client library (development files) Multi-Arch: same Description-md5: 7b946dfa99967f31503fdf6163d82429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxp6 Priority: optional Section: x11 Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxp Version: 1:1.0.2-1ubuntu1 Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.6.0), libxau6, libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxp/libxp6_1.0.2-1ubuntu1_i386.deb Size: 15460 MD5sum: a9a572c8a07f340efe1f68976d682862 SHA1: c241b4723b6a7630512d372b11df64aed0a044d2 SHA256: 972b6d5d8453364b81e78a097b5df4a56f13d9e9d5f010f4282bb0a9a09480ea Description: X Printing Extension (Xprint) client library Multi-Arch: same Description-md5: 606ddf2ba3808cac5f4c9f729b530e3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxp6-dbg Priority: extra Section: x11 Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxp Version: 1:1.0.2-1ubuntu1 Depends: libxp6 (= 1:1.0.2-1ubuntu1) Filename: pool/main/libx/libxp/libxp6-dbg_1.0.2-1ubuntu1_i386.deb Size: 96832 MD5sum: 2c9ece844ba620d191c388e1dcf0829d SHA1: a1bf51923c035c36a4009cff675df49d738852a2 SHA256: ccbbbc24a9fea420a13c7775bd7e28d5c91347c6618116a778a32a5b3dbc99a1 Description: X Printing Extension (Xprint) client library (unstripped) Multi-Arch: same Description-md5: ce28d085688ab1f89e9fa011f8e022fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpathselect-dev Priority: extra Section: libdevel Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Thomi Richards Architecture: i386 Source: xpathselect Version: 1.4+14.04.20140303-0ubuntu1 Depends: libxpathselect1.4 (= 1.4+14.04.20140303-0ubuntu1) Filename: pool/main/x/xpathselect/libxpathselect-dev_1.4+14.04.20140303-0ubuntu1_i386.deb Size: 2582 MD5sum: bceed9e945492d5838b1c8e35802b521 SHA1: b888a1de2681e2c16e2e270502190627d2e989a5 SHA256: 47802e9b80eecd9ef6c7254ffca1ee0ecc9d18d9d9ce4322f2e3c69434d5adfa Description: Select objects in an object tree using XPath queries - development files Homepage: https://launchpad.net/xpathselect Description-md5: 815e92f3646fa2766193ad18e552cb92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpathselect1.4 Priority: extra Section: libs Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Thomi Richards Architecture: i386 Source: xpathselect Version: 1.4+14.04.20140303-0ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Pre-Depends: multiarch-support Filename: pool/main/x/xpathselect/libxpathselect1.4_1.4+14.04.20140303-0ubuntu1_i386.deb Size: 39134 MD5sum: 72766653c536afd11bbe4dfe8389ec49 SHA1: 818827dbbf4ca30034bd428a97bc74a8e53b18ad SHA256: 07990cbd2ffaefa151278ad0d21d12171b33b3d17d1f773e332bd7128610645f Description: Select objects in an object tree using XPath queries. Multi-Arch: same Homepage: https://launchpad.net/xpathselect Description-md5: 36ed9422fa4d13560562462392df1033 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxplc0.3.13 Priority: optional Section: libs Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: xplc Version: 0.3.13-4 Depends: libc6 (>= 2.3.4), libstdc++6 (>= 4.1.1) Filename: pool/main/x/xplc/libxplc0.3.13_0.3.13-4_i386.deb Size: 19068 MD5sum: 3f2aca33bd23b5c6c757d5f838361402 SHA1: 6bc547b4d6d4e7f075f051b051c8bf81b51b57c6 SHA256: 177e813a30add1e72be2d28265b181be4d3bb0bed65b8ce1acce15ea5edc8f4b Description: Light weight component system Homepage: http://xplc.sourceforge.net/ Description-md5: 2f5572bbaa2108ce1214171d6bd7384c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxplc0.3.13-dev Priority: optional Section: libdevel Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: xplc Version: 0.3.13-4 Depends: libxplc0.3.13 (= 0.3.13-4), uuidcdef Filename: pool/main/x/xplc/libxplc0.3.13-dev_0.3.13-4_i386.deb Size: 42048 MD5sum: f1f55a9fb62c5be3c6d34a64ec8a74d2 SHA1: 8f96dbb5267fbd4d14f0c15130e64cbd9c3768c8 SHA256: c6aec15bc5e63e61ee48a603dfb997568e5a51dfcfd84a07d34ed0ea809b8763 Description: Light weight component system (Development libraries and headers) Homepage: http://xplc.sourceforge.net/ Description-md5: 94124a60d1a69e9f53d0e1eb08b4dc3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpm-dev Priority: optional Section: libdevel Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxpm Version: 1:3.5.10-1 Depends: libxpm4 (= 1:3.5.10-1), libx11-dev, x11proto-core-dev Filename: pool/main/libx/libxpm/libxpm-dev_3.5.10-1_i386.deb Size: 90976 MD5sum: e1fd57a787d93f3a822e92610135e205 SHA1: 9eb09f4b3f360bc53564fd7042e2836543e7fdcd SHA256: 670e1afc24f5f6423c57b0888e05e84c033709a134f51d678e669319ca9233c5 Description: X11 pixmap library (development headers) Multi-Arch: same Description-md5: b312c51f80d757ef3149df231391ed7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpm4 Priority: optional Section: libs Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxpm Version: 1:3.5.10-1 Depends: libc6 (>= 2.7), libx11-6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxpm/libxpm4_3.5.10-1_i386.deb Size: 38180 MD5sum: 71b9e63c318f634ecb210148821f5df9 SHA1: ac48c9e870f12e0e0565bc66cb4a33d43646ad27 SHA256: 01b383bb15f5ba8303c5c4b6a380320e761e2789d211aa9da5a738ea63504f32 Description: X11 pixmap library Multi-Arch: same Description-md5: 377e5bcce9d3e1f0d1534f5327b6bfee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxpm4-dbg Priority: extra Section: libdevel Installed-Size: 290 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxpm Version: 1:3.5.10-1 Depends: libxpm4 (= 1:3.5.10-1) Filename: pool/main/libx/libxpm/libxpm4-dbg_3.5.10-1_i386.deb Size: 83420 MD5sum: cfa7d341cac5cd132a747bd13a9fe427 SHA1: 3d14c8fac5aaedac822c2cc69bb65cf41a45f921 SHA256: cec8c8b97bfec5a588a7f25a9c3ba780cf7aab442d67f2d24acf848a16a7f5b4 Description: X11 pixmap library (debug package) Multi-Arch: same Description-md5: 74dfef3a403f1b24e18887954f8667fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpp2-java Priority: optional Section: libs Installed-Size: 665 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.1.10-7build1 Filename: pool/main/libx/libxpp2-java/libxpp2-java_2.1.10-7build1_all.deb Size: 162472 MD5sum: 8ef9a8948dcd03c88e54f749556c5481 SHA1: 94280624578c97c7088b481041276a5ee50ef9f2 SHA256: 0abf4cb3115eae77f8b3e954858c442d4131817cba448437a86175a6fa168caf Description: XML pull parser library for java V2 Homepage: http://www.extreme.indiana.edu/xgws/xsoap/xpp/xpp2/ Description-md5: 2e14601e7182b06d12172f0fa1c8fc30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxpp3-java Priority: optional Section: libs Installed-Size: 765 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.1.4c-2build1 Filename: pool/main/libx/libxpp3-java/libxpp3-java_1.1.4c-2build1_all.deb Size: 363764 MD5sum: 101920d82e72eb3ef0af371aaa8b8695 SHA1: 4c5f4e1fc4f67ec385efd667a615190385982af4 SHA256: fd4805d3546817ebcacae4860f796964a6354faf889109d8315d1b4314003045 Description: XML pull parser library for java Homepage: http://www.extreme.indiana.edu/xgws/xsoap/xpp Description-md5: 801562e3f23d0c7dbf59addfcf3880a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrandr-dev Priority: optional Section: libdevel Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxrandr Version: 2:1.4.2-1 Depends: libxrandr2 (= 2:1.4.2-1), libx11-dev, libxext-dev, x11proto-randr-dev (>= 1.4), libxrender-dev Filename: pool/main/libx/libxrandr/libxrandr-dev_1.4.2-1_i386.deb Size: 21678 MD5sum: 81f1297f9905f810650f91f10ddb9bb3 SHA1: 028c9876b19421647bcb08ed6b2be572168d5070 SHA256: 40fec61e73dc5a63c13e8832d792f6e7142708e2e61e055bd0c3e4ae6b72bccd Description: X11 RandR extension library (development headers) Multi-Arch: same Description-md5: 444725c9e942434744988c5291f2f2f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrandr-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxrandr-dev Filename: pool/main/x/xorg-lts-transitional/libxrandr-dev-lts-quantal_5_i386.deb Size: 1540 MD5sum: a07204f9d3c99775ad38b40ed68028e1 SHA1: 055255a9cf4476ea238ecd3f9422f0cf4fff25ba SHA256: f8f958101c8021b43eebc9459a5b80dc7a82f761190fa5ad4725be2bee7d09ba Description: Transitional package for libxrandr-dev Multi-Arch: same Description-md5: ac32569dec6686dfd236cb973866ed4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrandr-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxrandr-dev Filename: pool/main/x/xorg-lts-transitional/libxrandr-dev-lts-raring_5_i386.deb Size: 1538 MD5sum: e5e2d09488138fd7741506aa1e7dbc65 SHA1: 6cc419939cf6bf24466cdf4e9aa26de935e4a4a8 SHA256: 2a8adaaad6c8c6e25cd4f02cc62e1dcb4dc52289d85a5a0cab060b2ad749785b Description: Transitional package for libxrandr-dev Multi-Arch: same Description-md5: ac32569dec6686dfd236cb973866ed4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrandr-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: libxrandr-dev Filename: pool/main/x/xorg-lts-transitional/libxrandr-dev-lts-saucy_5_i386.deb Size: 1538 MD5sum: c927cf48bbfc12a862ac697f2d3339d4 SHA1: 71f6c57e5519c89bb9deae36ed44968c2fba7cbd SHA256: 9fc2a766c36026fc5d82a2154a31ed8e3ed1e15d3f64a9017dddb2f311aa66be Description: Transitional package for libxrandr-dev Multi-Arch: same Description-md5: ac32569dec6686dfd236cb973866ed4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrandr2 Priority: optional Section: libs Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxrandr Version: 2:1.4.2-1 Depends: libc6 (>= 2.1.3), libx11-6 (>= 2:1.6.0), libxext6, libxrender1 Pre-Depends: multiarch-support Filename: pool/main/libx/libxrandr/libxrandr2_1.4.2-1_i386.deb Size: 16084 MD5sum: 3afe2e1c4b42eec8d57916b9f284f0dd SHA1: e70cd0802449d4a5b5b8c21a249c4ccf1b7eb72d SHA256: 75f6800189bc4a373f670e7625f0e38810fa059ad493a58946cf3667963ff0b1 Description: X11 RandR extension library Multi-Arch: same Description-md5: 4f5e90c11ffce760113c5e601f3f4449 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxrandr2-dbg Priority: extra Section: libdevel Installed-Size: 326 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxrandr Version: 2:1.4.2-1 Depends: libxrandr2 (= 2:1.4.2-1) Filename: pool/main/libx/libxrandr/libxrandr2-dbg_1.4.2-1_i386.deb Size: 44066 MD5sum: bd5b78431d837c15096cc684e9384cae SHA1: 7d58fcd27681680b6425783b9e2aa3ad94c0386d SHA256: 54a4f3baa7e442f3658c12554769bde05c9c56f4c8391b87e15e42ccc0e9f802 Description: X11 RandR extension library (debug package) Multi-Arch: same Description-md5: e0f7c9763ea9b670967b0e6ed35acd8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxrender-dev Priority: optional Section: libdevel Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxrender Version: 1:0.9.8-1 Depends: libxrender1 (= 1:0.9.8-1), libx11-dev (>= 2:1.0.0), x11proto-render-dev, x11proto-core-dev Filename: pool/main/libx/libxrender/libxrender-dev_0.9.8-1_i386.deb Size: 26566 MD5sum: 7f6c2134b1576a124c24a313c9365d3e SHA1: 6683a4445e3a91cd7cae25704976f30346d76b1f SHA256: f6d7db36fdcac7461797c07acaeeb56472d7c76490edb379e2a5d6ad96882429 Description: X Rendering Extension client library (development files) Multi-Arch: same Description-md5: 90cef1620b30f07a5c21955d91855734 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxrender1 Priority: optional Section: libs Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxrender Version: 1:0.9.8-1 Depends: libc6 (>= 2.1.3), libx11-6 (>= 2:1.4.99.1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxrender/libxrender1_0.9.8-1_i386.deb Size: 20306 MD5sum: a823acc98c1f7844586d25c2d6e340ea SHA1: 1b83e1bce28e785832514ee964f5e0bdd825b32b SHA256: 9d5c666abfc910f431c13b74e2cf0d18aecb5061e1a5f2aa945b667132902f2f Description: X Rendering Extension client library Multi-Arch: same Description-md5: 1529276fe319e97fa1c4f85128ed50b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxrender1-dbg Priority: extra Section: libdevel Installed-Size: 410 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxrender Version: 1:0.9.8-1 Depends: libxrender1 (= 1:0.9.8-1) Filename: pool/main/libx/libxrender/libxrender1-dbg_0.9.8-1_i386.deb Size: 128956 MD5sum: ef809aa6c9c49ee06ca959712cec556c SHA1: 59116d6395b5287063148b76608293d849b01853 SHA256: b8ba334deb350d8142e30a5f41f7273427b11daa093e16d3ac654bf47e06c787 Description: X Rendering Extension client library (unstripped) Multi-Arch: same Description-md5: 826b72926150a03d65486e6527811ff8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxres-dev Priority: optional Section: libdevel Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxres Version: 2:1.0.7-1 Depends: libxres1 (= 2:1.0.7-1), libx11-dev, libxext-dev, x11proto-resource-dev Conflicts: x11proto-resource-dev (<< 1.0+cvs.20050712-1) Filename: pool/main/libx/libxres/libxres-dev_1.0.7-1_i386.deb Size: 6898 MD5sum: c2b2d5e91fd7f4ea677e6df41a1311cf SHA1: 7d342d43f805006dbe6923421d08734b4419f987 SHA256: a4d0b6463b60e135ed76a48786e38fcc391562e5e7b0b2954c9db4f743ba916b Description: X11 Resource extension library (development headers) Description-md5: 70ec3c2d202b5b75e237d25e6d833401 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxres1 Priority: optional Section: libs Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxres Version: 2:1.0.7-1 Depends: libc6 (>= 2.1.3), libx11-6 (>= 2:1.6.0), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxres/libxres1_1.0.7-1_i386.deb Size: 7062 MD5sum: 42196f27879946ff44396fe03e4881e6 SHA1: a58215eb2b9ec82cbacd1770739f6d663a362974 SHA256: 1ccf287ae7baebe50ee2f9f303cc88aabcc9de6522f21e918382fcf474a35f7e Description: X11 Resource extension library Multi-Arch: same Description-md5: d9399de89592de94c1d00cfcb2c850b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxres1-dbg Priority: extra Section: libdevel Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxres Version: 2:1.0.7-1 Depends: libxres1 (= 2:1.0.7-1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxres/libxres1-dbg_1.0.7-1_i386.deb Size: 18944 MD5sum: bf4115a8818c09d56df7b5d451af93ce SHA1: 3f15553ab5553ce952fe649acfff33624b9ad631 SHA256: d97546df577577522c0d0c28e33fddaf3d09a5c06a7ac5cede34c71aaabc29ce Description: X11 Resource extension library (debug package) Multi-Arch: same Description-md5: 65dd45290b60147f90a3ada760535036 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxshmfence-dev Priority: optional Section: libdevel Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxshmfence Version: 1.1-2 Depends: libxshmfence1 (= 1.1-2) Filename: pool/main/libx/libxshmfence/libxshmfence-dev_1.1-2_i386.deb Size: 3500 MD5sum: 5fd2efce4dbee8c757bddf7c187cc437 SHA1: 8dbf7459e0014e1d79702cba5a30e86ee514cf16 SHA256: b825411684c9f23ae679e5636198fb3597fee7b73340bb2f15bbb0e060b147c1 Description: X shared memory fences - development files Multi-Arch: same Description-md5: 5dc82f788312a94baef43ea5bb08e086 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxshmfence1 Priority: optional Section: libs Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxshmfence Version: 1.1-2 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/libx/libxshmfence/libxshmfence1_1.1-2_i386.deb Size: 4700 MD5sum: 4c652ddcb323be44e32bb18b614ea6d5 SHA1: a1989284222da35ecbe74c80a4e11894a30a7ffb SHA256: b36a1c537b1e764cf69b9d8f211b61a22cfc267b9e1d3ecf012cfcd82ca04114 Description: X shared memory fences - shared library Multi-Arch: same Description-md5: 07283b1747ebbc3d201e91620e3eaf51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxslt1-dbg Priority: extra Section: libdevel Installed-Size: 553 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxslt Version: 1.1.28-2build1 Depends: libxslt1.1 (= 1.1.28-2build1) Filename: pool/main/libx/libxslt/libxslt1-dbg_1.1.28-2build1_i386.deb Size: 358912 MD5sum: 9d8748b922fef9a527922e48d164fa8a SHA1: dd2f64105a8c280223aefd53dafcefe3d952c5bc SHA256: 09ed0d7e4948491fd345b9eb05a74bceda275139bef6d4655c0b8a994c20b0aa Description: XSLT 1.0 processing library - debugging symbols Multi-Arch: same Homepage: http://xmlsoft.org/xslt/ Description-md5: 07d298272e95c3b2975184f478cc6006 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxslt1-dev Priority: optional Section: libdevel Installed-Size: 2273 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxslt Version: 1.1.28-2build1 Provides: libxslt-dev Depends: libxslt1.1 (= 1.1.28-2build1), libxml2-dev (>= 2.6.26) Filename: pool/main/libx/libxslt/libxslt1-dev_1.1.28-2build1_i386.deb Size: 405398 MD5sum: d11e20f0011669c9c8404cca05470f53 SHA1: 5c179b54225871b18d60f70a0906d3a158f5fa57 SHA256: c440e9fc5b8cf9a1ceeb65fab79d9fe4c1ff70fca99d8266e0ccc5fbe4ee7a83 Description: XSLT 1.0 processing library - development kit Multi-Arch: same Homepage: http://xmlsoft.org/xslt/ Description-md5: f51e27fa123abbb4132b189b0ee706c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxslt1.1 Priority: optional Section: libs Installed-Size: 484 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxslt Version: 1.1.28-2build1 Depends: libc6 (>= 2.17), libgcrypt11 (>= 1.4.5), libxml2 (>= 2.9.0) Pre-Depends: multiarch-support Filename: pool/main/libx/libxslt/libxslt1.1_1.1.28-2build1_i386.deb Size: 140376 MD5sum: ff7c397fd94924dac4eebb213656fadd SHA1: 9a5eb6a2acc4200085ca1575c3af2da99b43cb3f SHA256: f6c48135ebdeefd8fb51c29fbe31e9b6a2264fd21b36b161783289f95b6ad786 Description: XSLT 1.0 processing library - runtime library Multi-Arch: same Homepage: http://xmlsoft.org/xslt/ Description-md5: a00a78b7d528f023d0297a93b37a3a68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, postgresql-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxss-dev Priority: optional Section: libdevel Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxss Version: 1:1.2.2-1 Replaces: x11proto-scrnsaver-dev (<< 1.2.0) Depends: libxss1 (= 1:1.2.2-1), libx11-dev, libxext-dev, x11proto-scrnsaver-dev (>= 1.2.0) Filename: pool/main/libx/libxss/libxss-dev_1.2.2-1_i386.deb Size: 12682 MD5sum: 4140709049d6b8e14cf1f94a71e9dc3b SHA1: 86fb1a2d336c8246b6508c00aca8ffc1ec83c3dd SHA256: 5d0220766db40e547479be1bdfd3840a98af1c4f4750d9df137fa6451f1b45d1 Description: X11 Screen Saver extension library (development headers) Multi-Arch: same Description-md5: b80df2fec1242730f837d3f0bf416da8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxss1 Priority: optional Section: libs Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxss Version: 1:1.2.2-1 Depends: libc6 (>= 2.1.3), libx11-6 (>= 2:1.4.99.1), libxext6, x11-common Pre-Depends: multiarch-support Filename: pool/main/libx/libxss/libxss1_1.2.2-1_i386.deb Size: 8566 MD5sum: ec22f44623165a7b48c6fc33829d5587 SHA1: da537bfe707b060ab451bcb90506aaa10e01fc9d SHA256: d06058461e03ebdfe778babbbffdc36240d55bfad6ac7358d5736a357e4595dd Description: X11 Screen Saver extension library Multi-Arch: same Description-md5: b522226f612dbdd9af03e04a51353525 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxss1-dbg Priority: extra Section: libdevel Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxss Version: 1:1.2.2-1 Depends: x11-common, libxss1 (= 1:1.2.2-1) Filename: pool/main/libx/libxss/libxss1-dbg_1.2.2-1_i386.deb Size: 22624 MD5sum: 8615fdd9f461e6ec5e44677a599475c6 SHA1: 6f3fa550111e25982d5e2fbbc82cc14095310d2f SHA256: a55bec4101804568b0663d1a1ce85a15feec4e02b822eea30fb78f721c4e6545 Description: X11 Screen Saver extension library (debug package) Multi-Arch: same Description-md5: 70a855cf07e6a6c08067f1bc670258d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxt-dev Priority: optional Section: libdevel Installed-Size: 995 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxt Version: 1:1.1.4-1 Depends: libxt6 (= 1:1.1.4-1), libx11-dev, x11proto-core-dev, libsm-dev Suggests: libxt-doc Filename: pool/main/libx/libxt/libxt-dev_1.1.4-1_i386.deb Size: 434700 MD5sum: cbf6226b09705f5172455255065a32e5 SHA1: 21ca15836a4ed367e43fc9f8e557349d3e2a6cb2 SHA256: e801238b6002228a178b25f8fe238fb5639d543ae5db08cb43b2a5a7ca63c6ee Description: X11 toolkit intrinsics library (development headers) Multi-Arch: same Description-md5: 4672adcea184032fd66fe6c6e5ca9f00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: libxt-doc Priority: optional Section: doc Installed-Size: 1726 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libxt Version: 1:1.1.4-1 Filename: pool/main/libx/libxt/libxt-doc_1.1.4-1_all.deb Size: 458660 MD5sum: 519b6fc025813a6bce133d41226a544c SHA1: 42b4321641affe6f359032b8681baa869e0f46ba SHA256: 660165e675c940e9186359dc2a5968f81782a72100f0ab957f1b980827f76952 Description: X11 toolkit intrinsics library (documentation) Multi-Arch: foreign Description-md5: 2c883d3c620cda68cbaae054db634f97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxt6 Priority: optional Section: libs Installed-Size: 422 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxt Version: 1:1.1.4-1 Depends: libc6 (>= 2.7), libice6 (>= 1:1.0.0), libsm6, libx11-6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxt/libxt6_1.1.4-1_i386.deb Size: 175526 MD5sum: 54818de8509ad54210ae05ee67038045 SHA1: 5f0d969a788f050ac6d94bc49e51473223403700 SHA256: babad9cb6ad2f587e84fc05e7a720c10e5e56c60b9bc38ad6cbb4c53c474ab70 Description: X11 toolkit intrinsics library Multi-Arch: same Description-md5: c3abc4b8f3ebe1d7b7494d4013fd7976 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxt6-dbg Priority: extra Section: libdevel Installed-Size: 626 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxt Version: 1:1.1.4-1 Depends: libxt6 (= 1:1.1.4-1) Filename: pool/main/libx/libxt/libxt6-dbg_1.1.4-1_i386.deb Size: 548156 MD5sum: b51d4d9abc419453f208c7dc3d31a7ae SHA1: 46d00ecc9cb60a3a3353491b75b8144e448ca500 SHA256: 718f6a82deedfa50b0931670d774007b1d1fc1c4356fa33c53ab03d65c2c897b Description: X11 toolkit intrinsics library (debug package) Multi-Arch: same Description-md5: 6f1684f08fb3fbea27569764cab49561 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxtables10 Priority: standard Section: net Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Laurence J. Lane Architecture: i386 Source: iptables Version: 1.4.21-1ubuntu1 Replaces: iptables (<< 1.4.16.3-3) Depends: libc6 (>= 2.7) Breaks: iptables (<< 1.4.16.3-3) Filename: pool/main/i/iptables/libxtables10_1.4.21-1ubuntu1_i386.deb Size: 25960 MD5sum: b4ab39619970ca11d579b13b6c505e8a SHA1: 6ded7e12fd1bfd2281a2d21aeaf8f54c9f32d8e8 SHA256: fded64ed0233efe3f9e041d152bd4e73b187b5c8fba57d9cb0f29b9a8f5d787d Description: netfilter xtables library Homepage: http://www.netfilter.org/ Description-md5: a294431fa8c70074f80f44b808832e00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: libxtst-dev Priority: optional Section: libdevel Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxtst Version: 2:1.2.2-1 Replaces: x11proto-record-dev (<< 1.13.99.1), x11proto-xext-dev (<< 7.0.99.3) Depends: libxtst6 (= 2:1.2.2-1), libx11-dev, libxext-dev, libxi-dev, x11proto-xext-dev (>= 7.0.99.3), x11proto-record-dev (>= 1.13.99.1) Filename: pool/main/libx/libxtst/libxtst-dev_1.2.2-1_i386.deb Size: 16310 MD5sum: dbe78a71cc92997bf8e9cea08ffd767b SHA1: 3214f1f26069ac9c2ed48ab058544e066e0eabad SHA256: b7e428111a01bfad3d3f343b87e026a76b8f6e6e625477ee4d05fb8c8aaf4241 Description: X11 Record extension library (development headers) Multi-Arch: same Description-md5: ae1bea16337ee830ba8837b716b07dc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxtst-doc Priority: optional Section: doc Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: libxtst Version: 2:1.2.2-1 Replaces: libxtst-dev (<< 2:1.2.1) Breaks: libxtst-dev (<< 2:1.2.1) Filename: pool/main/libx/libxtst/libxtst-doc_1.2.2-1_all.deb Size: 57770 MD5sum: a39d3af4511c10818aa605e749c47094 SHA1: 6b2ff74d30617c125cd992f70c9a17479f24b4a2 SHA256: d3c59e58e4c15f299aed5d25a21524fde868a617624d984d4cd49ccc71bea9c8 Description: X11 Record extension library (documentation) Multi-Arch: foreign Description-md5: b97f1bef51c3722fd297b447a2775ae6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxtst6 Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxtst Version: 2:1.2.2-1 Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.4.99.1), libxext6, x11-common Pre-Depends: multiarch-support Filename: pool/main/libx/libxtst/libxtst6_1.2.2-1_i386.deb Size: 13836 MD5sum: bd0d0988b4ae313eda210940315ac65a SHA1: 5b4df39eadaadd113d91d90963aec6abb5951e35 SHA256: f72cd50d13f22d3acd3b5aae1da77b5ade139c31da28b85162621c9a21d21573 Description: X11 Testing -- Record extension library Multi-Arch: same Description-md5: a21047d5f3eab970798b4c22c0163132 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxtst6-dbg Priority: extra Section: libdevel Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxtst Version: 2:1.2.2-1 Depends: x11-common, libxtst6 (= 2:1.2.2-1) Filename: pool/main/libx/libxtst/libxtst6-dbg_1.2.2-1_i386.deb Size: 42566 MD5sum: 6bba9c5cd98ed42ba1cf4b36991d43b2 SHA1: 9a810a02b0d9c82804305a8acfde66365e6d57f1 SHA256: 20b57abbd09a2367d3a19e93266fcfbf514a6118d9c4c8da035e8edcdee32fbd Description: X11 Record extension library (debug package) Multi-Arch: same Description-md5: a94f094d9401e079de1a5be3957d9f64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxv-dev Priority: optional Section: libdevel Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxv Version: 2:1.0.10-1 Replaces: x11proto-video-dev (<< 2.2+cvs.20050712-1) Depends: libxv1 (= 2:1.0.10-1), libx11-dev, libxext-dev, x11proto-video-dev Conflicts: x11proto-video-dev (<< 2.2+cvs.20050712-1) Filename: pool/main/libx/libxv/libxv-dev_1.0.10-1_i386.deb Size: 32064 MD5sum: 6d5d499289fb82a6172eb659a496174a SHA1: e008bd0a06f9b6dde3ea55a084101a47b638d970 SHA256: 9550d2f2ac3f5e96938cf9bde83406df6e2d6bbdfdf81413e9044bbae6b3ec36 Description: X11 Video extension library (development headers) Multi-Arch: same Description-md5: 4a8b09db5604319bdef123b54c9be53f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxv1 Priority: optional Section: libs Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxv Version: 2:1.0.10-1 Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.6.0), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxv/libxv1_1.0.10-1_i386.deb Size: 10168 MD5sum: 81f23655c2e72dbb0ca41956bc74f6ba SHA1: 51765f861bc858ea3c3e9d2190896c30d05e9013 SHA256: ae0bba344c7d888e1a29ea86433b8368dafa9c31161c58541a587eb7bb7c3fab Description: X11 Video extension library Multi-Arch: same Description-md5: cbda0d10d66b049955c1a3034acbf025 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxv1-dbg Priority: extra Section: libdevel Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxv Version: 2:1.0.10-1 Depends: libxv1 (= 2:1.0.10-1) Filename: pool/main/libx/libxv/libxv1-dbg_1.0.10-1_i386.deb Size: 24654 MD5sum: 70dba6be2e2288027be0b15580b39e3c SHA1: 353bd81d56f44ea559b0971238ac84e00d5c4ca5 SHA256: 355fd6257052554314398a17c55811b85d4fa255376cd9292145dd7c78395fa1 Description: X11 Video extension library (debug package) Multi-Arch: same Description-md5: 8922040df70061a4d2161ad4dfa8c8e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxvmc-dev Priority: optional Section: libdevel Installed-Size: 92 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxvmc Version: 2:1.0.8-1ubuntu1 Replaces: x11proto-video-dev (<< 2.2+cvs.20050712-1) Depends: libxvmc1 (= 2:1.0.8-1ubuntu1), libx11-dev (>= 2:1.0.0-1), libxext-dev (>= 1:1.0.0-2), x11proto-video-dev, libxv-dev Conflicts: x11proto-video-dev (<< 2.2+cvs.20050712-1) Filename: pool/main/libx/libxvmc/libxvmc-dev_1.0.8-1ubuntu1_i386.deb Size: 23358 MD5sum: ef25017123ac10676e43074df6f4eb24 SHA1: e70153e78d70c5104a50d7c648ac5165536a19f4 SHA256: 91756beba108cbb6a028ff1abfbde9c485f89fc7afb51005c57014d3d7b3988b Description: X11 Video extension library (development headers) Multi-Arch: same Description-md5: d277adb1bcda026e26e3a11d72c9245d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxvmc1 Priority: optional Section: libs Installed-Size: 72 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxvmc Version: 2:1.0.8-1ubuntu1 Depends: libc6 (>= 2.4), libx11-6 (>= 2:1.6.0), libxext6, x11-common Pre-Depends: multiarch-support Filename: pool/main/libx/libxvmc/libxvmc1_1.0.8-1ubuntu1_i386.deb Size: 15304 MD5sum: d1da55bcc49be5f68519da11cdfc30e5 SHA1: f20b8d0bd4f580bfbce887b861cfcaf20d79e570 SHA256: 50c6b8179412f4969e271bf8f2261ea8a5ecdc326dfb68bcc3ee806db3fc2b37 Description: X11 Video extension library Multi-Arch: same Description-md5: 7746d5687dd79b2189f90e7206d6db90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxvmc1-dbg Priority: extra Section: libdevel Installed-Size: 128 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxvmc Version: 2:1.0.8-1ubuntu1 Depends: x11-common, libxvmc1 (= 2:1.0.8-1ubuntu1) Filename: pool/main/libx/libxvmc/libxvmc1-dbg_1.0.8-1ubuntu1_i386.deb Size: 38436 MD5sum: a6241b564ab0a513683f0c455bb0ee24 SHA1: c746e7a1c8ebbbda8cd70b7120a2331eb9cd97c3 SHA256: 033f14e0e29b1545c3991092f2d96633e15db9597998f1951a45f8cccd0cf31e Description: X11 Video extension library (debug package) Description-md5: a144654b529015153d66ee0bc51fe57f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxxf86dga-dev Priority: optional Section: libdevel Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxxf86dga Version: 2:1.1.4-1 Replaces: x11proto-xf86dga-dev (<< 2.0.99.1) Depends: libxxf86dga1 (= 2:1.1.4-1), libx11-dev, x11proto-xf86dga-dev (>= 2.0.99.1) Filename: pool/main/libx/libxxf86dga/libxxf86dga-dev_1.1.4-1_i386.deb Size: 16892 MD5sum: 9438d2a385dd157eb33f9d372124315a SHA1: 0e9e9b4d218a57926d70b4369465b908c2a00ced SHA256: e9df14ce6fb6628aa28aab439c34b6d55bfb32d8f2bb97dc82bc0c2c8e9849e7 Description: X11 Direct Graphics Access extension library (development headers) Multi-Arch: same Description-md5: e02dc131e7ff39b6aafdad14aa6d7780 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxxf86dga1 Priority: optional Section: libs Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxxf86dga Version: 2:1.1.4-1 Depends: libc6 (>= 2.3.4), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxxf86dga/libxxf86dga1_1.1.4-1_i386.deb Size: 13318 MD5sum: b4da91e6ede4aee8292aad7993c1a390 SHA1: b0348765a4900193f623184a90e16e4021cd933f SHA256: aff3948fa226395e6d1fd2fc02665607326c76b062a0b4d5adfcc4c032ee80a0 Description: X11 Direct Graphics Access extension library Multi-Arch: same Description-md5: 3b4c06b89aa50ec8ff9dfdeca065cd4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxxf86dga1-dbg Priority: extra Section: libdevel Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxxf86dga Version: 2:1.1.4-1 Depends: libxxf86dga1 (= 2:1.1.4-1) Pre-Depends: multiarch-support Filename: pool/main/libx/libxxf86dga/libxxf86dga1-dbg_1.1.4-1_i386.deb Size: 43490 MD5sum: 0b0539f0e5f7614c9c1e92b1cdafc9ae SHA1: 4db4cfc219352c3b601c20b6e30d36d34c61c720 SHA256: 149217e6c0f107ebe7289fcb1bff2c87d175bbd277c5c2b7f3a7e989c0232de0 Description: X11 Direct Graphics Access extension library (debug package) Multi-Arch: same Description-md5: c3ae464978269f65057391632499fe73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxxf86vm-dev Priority: optional Section: libdevel Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxxf86vm Version: 1:1.1.3-1 Replaces: x11proto-xf86vidmode-dev (<< 2.2.99.1) Depends: libxxf86vm1 (= 1:1.1.3-1), libx11-dev, x11proto-xf86vidmode-dev (>= 2.2.99.1) Filename: pool/main/libx/libxxf86vm/libxxf86vm-dev_1.1.3-1_i386.deb Size: 14326 MD5sum: fde422052882dcbf1ddd526718bb9e54 SHA1: 3a6a96ee08c2f52a0b02f22185bb991fed80ec0e SHA256: 1064adbeab2f1479c663f0aa820525095422911a08b2661330fd6b8e1e3e2d3b Description: X11 XFree86 video mode extension library (development headers) Multi-Arch: same Description-md5: f248dc7c5a7842ef87d8528ab4f9bb7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: libxxf86vm1 Priority: optional Section: libs Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxxf86vm Version: 1:1.1.3-1 Depends: libc6 (>= 2.1.3), libx11-6 (>= 2:1.4.99.1), libxext6 Pre-Depends: multiarch-support Filename: pool/main/libx/libxxf86vm/libxxf86vm1_1.1.3-1_i386.deb Size: 11810 MD5sum: 6d029b4bb2f8b6a54f30a04bd2d5e45c SHA1: 98712cd15110fa7c4fbc27c0ee8d6715566c42bf SHA256: 582657d02a8af5e44f5b85422c7ccc1407d74e6c67e7a765c9df4185b09b47ce Description: X11 XFree86 video mode extension library Multi-Arch: same Description-md5: b174fdb3bc0f1361c3d5865a48ffdd70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libxxf86vm1-dbg Priority: extra Section: libdevel Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: libxxf86vm Version: 1:1.1.3-1 Depends: libxxf86vm1 (= 1:1.1.3-1) Filename: pool/main/libx/libxxf86vm/libxxf86vm1-dbg_1.1.3-1_i386.deb Size: 28076 MD5sum: 9dfd7b899897cd96e8cbd9ca77b12555 SHA1: f95e734570e25727a4c72b4bb0236a9b3c3425ac SHA256: ad1e3a8b736ef6601557035888bc3d601e9e5778779ece3ee9345117b3775738 Description: X11 XFree86 video mode extension library (debug package) Multi-Arch: same Description-md5: c96802621cfbd8042ea5b726670991cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxz-java Priority: optional Section: java Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xz-java Version: 1.4-1 Filename: pool/main/x/xz-java/libxz-java_1.4-1_all.deb Size: 123748 MD5sum: f6174f4590f99c097d15084b5b9f04bc SHA1: 36dd995105f9f37f7f44ed875ed9c83a0f6ebc5e SHA256: aab069ecf7532a2945e1e095dd66065585ad2e5e914cdce3cfa57813a99d6999 Description: Java library with a complete implementation of XZ data compression Homepage: http://tukaani.org/xz/java.html Description-md5: ede81e573606bf52e463a7f6631c6909 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libxz-java-doc Priority: optional Section: doc Installed-Size: 828 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: xz-java Version: 1.4-1 Suggests: default-jdk-doc Filename: pool/main/x/xz-java/libxz-java-doc_1.4-1_all.deb Size: 85768 MD5sum: b42cd0c51293ae9e295b5b2ca3398695 SHA1: 0337a8afc1f51c252e608e5be1b99a17b8acfd98 SHA256: 6d9544bcc2befed3710fdc29a93d09fe5199c12a451dc13c8cb790114307a33e Description: Documentation for libxz-java Homepage: http://tukaani.org/xz/java.html Description-md5: 35f44d443155aa546065cccedb197eca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyajl-dev Priority: extra Section: libdevel Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: John Stamp Architecture: i386 Source: yajl Version: 2.0.4-4 Depends: libyajl2 (= 2.0.4-4) Filename: pool/main/y/yajl/libyajl-dev_2.0.4-4_i386.deb Size: 25604 MD5sum: de85379422c6d78b96c8214816910cd5 SHA1: 0fcb87683335a3d095f563e5c52dcdeb30e0ab58 SHA256: efbd472a8423cb96c1d9166095ccda48b20301bdc59e28951b93d51b82891468 Description: Yet Another JSON Library - development files Homepage: http://lloyd.github.com/yajl/ Description-md5: 2cfee6b229bf6903e3924aa0d5cbc263 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyajl-doc Priority: extra Section: doc Installed-Size: 413 Maintainer: Ubuntu Developers Original-Maintainer: John Stamp Architecture: all Source: yajl Version: 2.0.4-4 Filename: pool/main/y/yajl/libyajl-doc_2.0.4-4_all.deb Size: 72314 MD5sum: a11d4270d075e98725e7572f76513960 SHA1: 068d7b24a25a123993c398088e444fff82a7275f SHA256: 4344afa255f601a1ab5f3fec62b73b286a26969f3f1250020524cf763ff99a2e Description: Yet Another JSON Library - library documentation Homepage: http://lloyd.github.com/yajl/ Description-md5: d8f6d590b0bed9fd2a2b91f8f93166d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyajl2 Priority: extra Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: John Stamp Architecture: i386 Source: yajl Version: 2.0.4-4 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Filename: pool/main/y/yajl/libyajl2_2.0.4-4_i386.deb Size: 20400 MD5sum: abc7862c0f290616b693df1102114c0a SHA1: 27a57a7ee53a6e0661151a02d37dc219cfcbfb11 SHA256: f6569b9eebdc2688d72da383187797da352bae527e79e0d5973de095a707d85c Description: Yet Another JSON Library Multi-Arch: same Homepage: http://lloyd.github.com/yajl/ Description-md5: d040c8eddc66c15eddb5e7a364fc9e23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio, ubuntu-gnome-desktop Package: libyajl2-dbg Priority: extra Section: debug Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: John Stamp Architecture: i386 Source: yajl Version: 2.0.4-4 Depends: libyajl2 (= 2.0.4-4) Filename: pool/main/y/yajl/libyajl2-dbg_2.0.4-4_i386.deb Size: 30932 MD5sum: aca8bc0fbb5584245b4278fa0e4b76a9 SHA1: 1baca77261368d3bb6b7152cff2cf9f7a1ee9dab SHA256: 1b52f87de2484837464b2db0c0453a2f00120280d4b6d214729cfcf8f946d74b Description: Yet Another JSON Library - debugging symbols Multi-Arch: same Homepage: http://lloyd.github.com/yajl/ Description-md5: bb537ee146af334919797768cbfd877e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyaml-0-2 Priority: optional Section: libs Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Anders Kaseorg Architecture: i386 Source: libyaml Version: 0.1.4-3ubuntu3 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/liby/libyaml/libyaml-0-2_0.1.4-3ubuntu3_i386.deb Size: 46430 MD5sum: ccbafde2ddd91e3d66837f64e565ffc3 SHA1: 199e2c70fc00a0e654a66b7410fb3f297599df42 SHA256: 9fb80e1d3b27517685223ac4d34d89c2dac87e212ef19629ae13ab17870f6ce9 Description: Fast YAML 1.1 parser and emitter library Multi-Arch: same Homepage: http://pyyaml.org/wiki/LibYAML Description-md5: dc7536751a3eb6ce248dda2ad4cfcca2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-font-meta Package: libyaml-0-2-dbg Priority: extra Section: debug Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Anders Kaseorg Architecture: i386 Source: libyaml Version: 0.1.4-3ubuntu3 Depends: libyaml-0-2 (= 0.1.4-3ubuntu3) Filename: pool/main/liby/libyaml/libyaml-0-2-dbg_0.1.4-3ubuntu3_i386.deb Size: 87580 MD5sum: 353879fab9b5c9def812d95fadd4192c SHA1: d575adaf574667f24ef6ececaf88b694ccc4edd5 SHA256: af7e807dde1b354474654a2adec992b9a86a1fb4af7da12dc21948870c9fdb1d Description: Fast YAML 1.1 parser and emitter library (debugging symbols) Multi-Arch: same Homepage: http://pyyaml.org/wiki/LibYAML Description-md5: 767682fbb1951cdeb7f4c5cb551964c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyaml-dev Priority: extra Section: libdevel Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Anders Kaseorg Architecture: i386 Source: libyaml Version: 0.1.4-3ubuntu3 Depends: libyaml-0-2 (= 0.1.4-3ubuntu3) Filename: pool/main/liby/libyaml/libyaml-dev_0.1.4-3ubuntu3_i386.deb Size: 53226 MD5sum: 0f64f4fbe7790325b2228903abf31951 SHA1: 8ef23b7d74bdbcec1c8d8d8495c0bcd24e23da12 SHA256: 44fbd537ca2f5d87abb4072bcaeda7c78787828f8db3293d74b5f7d5a75ccf86 Description: Fast YAML 1.1 parser and emitter library (development) Multi-Arch: same Homepage: http://pyyaml.org/wiki/LibYAML Description-md5: 6a835b3e1ea55d4191038017f1855f58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyaml-libyaml-perl Priority: optional Section: perl Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: i386 Version: 0.41-5 Depends: perl (>= 5.18.2-2ubuntu1), perlapi-5.18.2, libc6 (>= 2.3.4) Filename: pool/main/liby/libyaml-libyaml-perl/libyaml-libyaml-perl_0.41-5_i386.deb Size: 62360 MD5sum: ea653294b6effa29d7327a61fc368606 SHA1: 6dab1393c82858699f9a0317b09d414bb6e7cf22 SHA256: 5daad011a228786bc045c768712e636952b3835f993dbda53540a6121aab33a3 Description: Perl interface to libyaml, a YAML implementation Homepage: https://metacpan.org/release/YAML-LibYAML Description-md5: 8fa3125a297cb8c4eb3becc6b15ffd1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyaml-perl Priority: optional Section: perl Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 0.84-1 Depends: perl Recommends: libyaml-libyaml-perl | libyaml-syck-perl Suggests: libyaml-shell-perl Filename: pool/main/liby/libyaml-perl/libyaml-perl_0.84-1_all.deb Size: 68298 MD5sum: 999c731de0525b7c9edd8b5c9d0e2465 SHA1: 17a64a49de84206be5d5612c0193ded7999c39b0 SHA256: bc57182b11e8ce9538687bbeddb6f721ff2ed44ba11252693df7580203ffa3dd Description: YAML Ain't Markup Language Homepage: http://search.cpan.org/dist/YAML/ Description-md5: 207c6e42686e3356a6c6e3a975e92075 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyaml-tiny-perl Priority: optional Section: perl Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Debian Perl Group Architecture: all Version: 1.56-1 Depends: perl Filename: pool/main/liby/libyaml-tiny-perl/libyaml-tiny-perl_1.56-1_all.deb Size: 22958 MD5sum: 7dc8b7129caa87755e5e65c09c91259c SHA1: 6d7234411aa12f3fa47b4f1c813bd104e6bd5f31 SHA256: e3fe2f15738f376e7942f50a4f4098b526d1244eb75034610be9b881265ed11a Description: Perl module for reading and writing YAML files Homepage: https://metacpan.org/release/YAML-Tiny/ Description-md5: b00dcfa8db032a784560bd00a60df627 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: libyelp-dev Priority: optional Section: libdevel Installed-Size: 410 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: yelp Version: 3.10.2-0ubuntu1 Depends: libyelp0 (= 3.10.2-0ubuntu1), libgtk-3-dev, libwebkitgtk-3.0-dev, libxml2-dev (>= 2.6.5), libxslt1-dev (>= 1.1.4) Filename: pool/main/y/yelp/libyelp-dev_3.10.2-0ubuntu1_i386.deb Size: 25754 MD5sum: 5cba1c80d5df7de5b1d65f261ed339aa SHA1: 462dbc5998d557c9ddf997e08922aed56fa1775f SHA256: 89995b45dd00c5136ffdfa5ff2f5419768d848086b35b070da3c6dec6c5f9b91 Description: Library for the GNOME help browser (development) Homepage: https://wiki.gnome.org/Yelp Description-md5: 16dfe7c9b07fae30c7c33c3655d53161 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libyelp0 Priority: optional Section: libs Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: yelp Version: 3.10.2-0ubuntu1 Depends: libbz2-1.0, libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), liblzma5 (>= 5.1.1alpha+20120614), libsqlite3-0 (>= 3.5.9), libwebkitgtk-3.0-0 (>= 1.3.10), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25) Breaks: yelp (<< 3.2.0) Filename: pool/main/y/yelp/libyelp0_3.10.2-0ubuntu1_i386.deb Size: 109294 MD5sum: cd42f83d33fa6a0fdcb936faecb066c5 SHA1: f14bd04274349543fe0deb5329d1591238d9ccec SHA256: bddc648ad6f736b179b9139b5e024f27f0ea66a4fd3f131789f3d0a276d438d1 Description: Library for the GNOME help browser Homepage: https://wiki.gnome.org/Yelp Description-md5: f5adafee47b3d10b994668590a31200f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libytnef0 Priority: extra Section: libs Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: libytnef Version: 1.5-6 Depends: libc6 (>= 2.3.4) Pre-Depends: multiarch-support Filename: pool/main/liby/libytnef/libytnef0_1.5-6_i386.deb Size: 18784 MD5sum: ab2862fac1aeee599516644fa50dbba3 SHA1: d47fdf23758493f796393bbc7c66ea0a7416fdca SHA256: 92056341bd473b829474dd522bb3fcb8854e31c590bf556db88651e37e0cafa6 Description: improved decoder for application/ms-tnef attachments Multi-Arch: same Homepage: http://sourceforge.net/projects/ytnef/ Description-md5: b0ad32a835b6d42cbad3e981be3d3de1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: libytnef0-dev Priority: extra Section: libdevel Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: libytnef Version: 1.5-6 Provides: libytnef-dev Depends: libytnef0 (= 1.5-6) Filename: pool/main/liby/libytnef/libytnef0-dev_1.5-6_i386.deb Size: 21938 MD5sum: 3634966347cd4d1fbafec1b10f0ce6ee SHA1: 386b9fc551d4099162ac1efeb7807806c2029ace SHA256: 70598be69958d271d5ef8ea8e6bf6d2875ae1217e8f0a0920b4a8f911664a0d7 Description: improved decoder for application/ms-tnef attachments Multi-Arch: same Homepage: http://sourceforge.net/projects/ytnef/ Description-md5: f90407c5eeae45c324c4529495392e13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-1.0-1 Priority: optional Section: libs Installed-Size: 177 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: i386 Source: libzeitgeist Version: 0.3.18-1ubuntu2 Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.37.3) Recommends: zeitgeist | zeitgeist-core Filename: pool/main/libz/libzeitgeist/libzeitgeist-1.0-1_0.3.18-1ubuntu2_i386.deb Size: 35470 MD5sum: 11b3306f4d11112dca7b56ae0e6bcdd9 SHA1: 79829a2745d5883da3034854181e4c82eeb32e89 SHA256: d5a549b99084ef9f055830dbfaf952acdb8df53094f129c3b5cb94048e1826b1 Description: library to access Zeitgeist - shared library Homepage: https://launchpad.net/libzeitgeist Description-md5: 5f36f890b2fde009f3c657c743aacc4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: libzeitgeist-1.0-1-dbg Priority: extra Section: debug Installed-Size: 70 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: i386 Source: libzeitgeist Version: 0.3.18-1ubuntu2 Depends: libzeitgeist-1.0-1 (= 0.3.18-1ubuntu2) Filename: pool/main/libz/libzeitgeist/libzeitgeist-1.0-1-dbg_0.3.18-1ubuntu2_i386.deb Size: 8460 MD5sum: 2b4edd9c13473733fc10849bd3a38dbc SHA1: 38c847979ba5d01097b87b30c31e7ed2803c76e7 SHA256: 3715d4c0fe2dfda4bd8f96b63b96bde6ed2517d51a06bd29140ea590b1626016 Description: library to access Zeitgeist - debugging symbols Homepage: https://launchpad.net/libzeitgeist Description-md5: fe23cb66d3ff2d9bf1f3dd68bab85e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-2.0-0 Priority: optional Section: utils Installed-Size: 440 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: i386 Source: zeitgeist Version: 0.9.14-0ubuntu4 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9) Recommends: zeitgeist | zeitgeist-core Filename: pool/main/z/zeitgeist/libzeitgeist-2.0-0_0.9.14-0ubuntu4_i386.deb Size: 112334 MD5sum: 8bfad603c434863ac45dac91ce8ef730 SHA1: 05ccaccdc93f9efab03827b1a84d924ae7a68bc6 SHA256: d9c51e6122c61b98e8993ab2cb5a7ac968526c9c655d3c30f408053225c143f0 Description: library to access Zeitgeist - shared library Multi-Arch: same Homepage: http://zeitgeist-project.com/ Description-md5: 5f36f890b2fde009f3c657c743aacc4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: libzeitgeist-2.0-0-dbg Priority: extra Section: debug Installed-Size: 519 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: i386 Source: zeitgeist Version: 0.9.14-0ubuntu4 Depends: libzeitgeist-2.0-0 (= 0.9.14-0ubuntu4) Filename: pool/main/z/zeitgeist/libzeitgeist-2.0-0-dbg_0.9.14-0ubuntu4_i386.deb Size: 409214 MD5sum: 05b22e950a997dc69be5011314fb7110 SHA1: c00fa082d409c092aac9277378efe292e5e731cf SHA256: 526ff6f27891c3907e8af27f2bf97843671ed929497832cccc6b87ca8c70435c Description: library to access Zeitgeist - debugging symbols Multi-Arch: same Homepage: http://zeitgeist-project.com/ Description-md5: fe23cb66d3ff2d9bf1f3dd68bab85e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-2.0-dev Priority: optional Section: libdevel Installed-Size: 363 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: i386 Source: zeitgeist Version: 0.9.14-0ubuntu4 Depends: gir1.2-zeitgeist-2.0 (= 0.9.14-0ubuntu4), libglib2.0-dev (>= 2.26.0), libzeitgeist-2.0-0 (= 0.9.14-0ubuntu4) Suggests: libzeitgeist-doc Filename: pool/main/z/zeitgeist/libzeitgeist-2.0-dev_0.9.14-0ubuntu4_i386.deb Size: 23366 MD5sum: 7a9e4692832c06ef25b5a8097bcb1500 SHA1: f831064444cd0330d94f9aad475fc2b2b108758b SHA256: 5b9e82746fb3536c3dc420845d142d7f2b98d69105e33cbb29b5980656230a66 Description: library to access Zeitgeist - development files Homepage: http://zeitgeist-project.com/ Description-md5: fd5d7b8d40b9c9f711482b8a95928b06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-2.0-doc Priority: optional Section: doc Installed-Size: 1004 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: all Source: zeitgeist Version: 0.9.14-0ubuntu4 Suggests: devhelp Filename: pool/main/z/zeitgeist/libzeitgeist-2.0-doc_0.9.14-0ubuntu4_all.deb Size: 60090 MD5sum: c18372cb418780a0f4e5e46f153dff32 SHA1: 84f0f146b58ffb58cade055d92f158e0526ae702 SHA256: 3a3673ed2691d70fc0e19767e791100ef1f069003d43b86d6a4e4feac46acbdc Description: library to access Zeitgeist - documentation Homepage: http://zeitgeist-project.com/ Description-md5: 6c5611aea56bd3880c45d1ce5940048a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-dev Priority: optional Section: libdevel Installed-Size: 184 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: i386 Source: libzeitgeist Version: 0.3.18-1ubuntu2 Depends: libzeitgeist-1.0-1 (= 0.3.18-1ubuntu2), libglib2.0-dev (>= 2.24.0) Suggests: libzeitgeist-doc Filename: pool/main/libz/libzeitgeist/libzeitgeist-dev_0.3.18-1ubuntu2_i386.deb Size: 17892 MD5sum: 84fd21a00b89e5fbabb44442f813789e SHA1: 4b131394cafc2bd98fa387af5962dc94255775ee SHA256: f420fe4266d0e1e08dab15ea1fa4583aa4cb69a94af5897da72716737aec1580 Description: library to access Zeitgeist - development files Homepage: https://launchpad.net/libzeitgeist Description-md5: fd5d7b8d40b9c9f711482b8a95928b06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzeitgeist-doc Priority: optional Section: doc Installed-Size: 680 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: all Source: libzeitgeist Version: 0.3.18-1ubuntu2 Suggests: devhelp Filename: pool/main/libz/libzeitgeist/libzeitgeist-doc_0.3.18-1ubuntu2_all.deb Size: 48898 MD5sum: af414ecb9a692db94fe3e17073f156bb SHA1: 6fdb81eca371b3ca769a843d757cb3c9c96bcd1f SHA256: 09b7b1f79fff459509d6f5b8b6da23700c8bed13c05dbd50fb8288e893bfdab2 Description: library to access Zeitgeist - documentation Homepage: https://launchpad.net/libzeitgeist Description-md5: 6c5611aea56bd3880c45d1ce5940048a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzephyr-dev Priority: optional Section: libdevel Installed-Size: 181 Maintainer: Ubuntu Developers Original-Maintainer: Karl Ramm Architecture: i386 Source: zephyr Version: 3.1.2-1 Depends: libzephyr4 (= 3.1.2-1) | libzephyr4-krb (= 3.1.2-1) | libzephyr4-krb5 (= 3.1.2-1) | libzephyr4-krb45 (= 3.1.2-1), libc6-dev Filename: pool/main/z/zephyr/libzephyr-dev_3.1.2-1_i386.deb Size: 39132 MD5sum: c34aba7465b703796cd0938857b4e804 SHA1: 5401719702ee17f5ed0d85e7c20399ccc690b5ab SHA256: c73c1621d2cf77b40583d268fa07365399fe886c01803558b36aaf6433f4082f Description: Project Athena's notification service - development files Description-md5: f44dfde5a594186c509feb71aa97758a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzephyr4 Priority: optional Section: libs Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Karl Ramm Architecture: i386 Source: zephyr Version: 3.1.2-1 Depends: libc6 (>= 2.15), libcomerr2 (>= 1.01) Pre-Depends: multiarch-support Conflicts: libzephyr4-krb, libzephyr4-krb45, libzephyr4-krb5 Filename: pool/main/z/zephyr/libzephyr4_3.1.2-1_i386.deb Size: 31574 MD5sum: d2bb77f6bb249b211d6e966720befd7f SHA1: b9b0d109663335d8266ea453b3df63dc04e0a61c SHA256: 47b6ba3e1f3ab27087710168071fe965c519a41a09fca9a9c440ce38f4018a98 Description: Project Athena's notification service - non-Kerberos libraries Multi-Arch: same Description-md5: 27bb0be9ade76da1a83e09f9867be0a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: libzip-dev Priority: optional Section: libdevel Installed-Size: 255 Maintainer: Ubuntu Developers Original-Maintainer: Fathi Boudra Architecture: i386 Source: libzip Version: 0.10.1-1.2 Depends: libzip2 (= 0.10.1-1.2), zlib1g-dev Filename: pool/main/libz/libzip/libzip-dev_0.10.1-1.2_i386.deb Size: 110090 MD5sum: 01194a05d20d433ce99fb290fa92cd76 SHA1: 18dad980799b6dc8b5f4a194249c4e89b0aea013 SHA256: bafc7765aaa48f5d168d08f3d30856ca10462138c062c3aef957e3d79669c1bb Description: library for reading, creating, and modifying zip archives (development) Homepage: http://www.nih.at/libzip/ Description-md5: e4cfaaaa641934e570f957640c60c8a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzip2 Priority: optional Section: libs Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Fathi Boudra Architecture: i386 Source: libzip Version: 0.10.1-1.2 Depends: libc6 (>= 2.7), zlib1g (>= 1:1.1.4) Filename: pool/main/libz/libzip/libzip2_0.10.1-1.2_i386.deb Size: 30500 MD5sum: c5196e3d39608bd654e0138a5bf3a765 SHA1: 00c54ff49eb5099e185dfc1d07c6dc3f0bc06372 SHA256: 95a063ee9c4d2021f7c4e24dd6cf456e7f943d074fe75d1946f5e377dc7afbde Description: library for reading, creating, and modifying zip archives (runtime) Homepage: http://www.nih.at/libzip/ Description-md5: d9af13380c4a431ca858b410fc8c55c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: libzzip-0-13 Priority: optional Section: libs Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Scott Howard Architecture: i386 Source: zziplib Version: 0.13.62-2 Depends: libc6 (>= 2.7), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Filename: pool/main/z/zziplib/libzzip-0-13_0.13.62-2_i386.deb Size: 25964 MD5sum: 6bf8a572f49a267016f20e211ad145e5 SHA1: 5708b692fa773edea3c098b8a7d449acf1d00f38 SHA256: 4216b4a71784fa8db064905811291c0f17efef7055f07b6540d3f04209aee708 Description: library providing read access on ZIP-archives - library Multi-Arch: same Homepage: http://zziplib.sourceforge.net Description-md5: af2b6923fb71473fe9795bf123474a93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: libzzip-dev Priority: optional Section: libdevel Installed-Size: 258 Maintainer: Ubuntu Developers Original-Maintainer: Scott Howard Architecture: i386 Source: zziplib Version: 0.13.62-2 Depends: libzzip-0-13 (= 0.13.62-2) Filename: pool/main/z/zziplib/libzzip-dev_0.13.62-2_i386.deb Size: 79816 MD5sum: 49824b80d7468e9be221956eafd0eeba SHA1: 7915d97d9b3f0440029ffc49cef57dde42ccb906 SHA256: b07724bebd86880d9c2cafa1ff04f267cc5a648749e45771a74056939d1ee7cc Description: library providing read access on ZIP-archives - development Homepage: http://zziplib.sourceforge.net Description-md5: 9b4d9c54c5e7e6fd09cecb072283372f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: light-themes Priority: optional Section: gnome Installed-Size: 1377 Maintainer: Ubuntu Artwork Team Architecture: all Source: ubuntu-themes Version: 14.04+14.04.20140410-0ubuntu1 Depends: gtk2-engines-murrine (>= 0.90.3+git20100810), gtk3-engines-unico (>= 1.0.1-0ubuntu2), humanity-icon-theme, ubuntu-mono Filename: pool/main/u/ubuntu-themes/light-themes_14.04+14.04.20140410-0ubuntu1_all.deb Size: 155530 MD5sum: faa804d3fe38c76d9294ff8dfabb8e42 SHA1: e4b5aefd22b27b61bab86bd6284bf012e8e02cfa SHA256: 5d2ad8b86c1c52c0376b68a7829e28b1d80aec7c694bf1cf653a3b7389230e8d Description: Light Themes (Ambiance and Radiance) Homepage: https://launchpad.net/ubuntu-themes Description-md5: 66093fe5a19671849351e8d6fad66909 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: lightdm Priority: optional Section: x11 Installed-Size: 540 Maintainer: Robert Ancell Architecture: i386 Version: 1.10.0-0ubuntu3 Provides: x-display-manager Depends: debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.4), libgcrypt11 (>= 1.4.5), libglib2.0-0 (>= 2.37.3), libpam0g (>= 0.99.7.1), libxcb1, libxdmcp6, libpam-runtime (>= 0.76-14), libpam-modules, adduser, libglib2.0-bin, dbus, plymouth (>= 0.8.8-0ubuntu6.1) Pre-Depends: dpkg (>= 1.15.7.2) Recommends: xserver-xorg, unity-greeter | lightdm-greeter | lightdm-kde-greeter Conflicts: liblightdm-gobject-0-0, liblightdm-qt-0-0 Filename: pool/main/l/lightdm/lightdm_1.10.0-0ubuntu3_i386.deb Size: 98650 MD5sum: 6990b84106d808b99d4e663fe2742594 SHA1: 30477a3d316111f8f71debe3acf6badd6291b31b SHA256: 7298c014c07e217f709af241ae0864253bde99e06b7c357f1909cf73b16f6b7e Description: Display Manager Homepage: https://launchpad.net/lightdm Description-md5: a04ec89b09d7becf8ba288295841fad0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop Package: lilo Priority: optional Section: admin Installed-Size: 668 Maintainer: Ubuntu Developers Original-Maintainer: Joachim Wiedorn Architecture: i386 Version: 1:24.0-2 Depends: perl, libc6 (>= 2.7), libdevmapper1.02.1 (>= 2:1.02.20), debconf (>= 0.5) | debconf-2.0 Pre-Depends: dpkg (>= 1.15.7.2) Filename: pool/main/l/lilo/lilo_24.0-2_i386.deb Size: 275670 MD5sum: a24f9440ea3541bdc4bb1c9efd748d69 SHA1: 38af397fe8ece9e2e95c32976e316f44b2ab5049 SHA256: 9d23cf54cb690745b79ce54aa5b7e387531918c6146a21e6e1b91c74e0e73e9d Description: LInux LOader - the classic OS boot loader Homepage: http://lilo.alioth.debian.org/ Description-md5: f9d0ed2f370af215f0878b80d72d6394 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lilo-doc Priority: optional Section: doc Installed-Size: 573 Maintainer: Ubuntu Developers Original-Maintainer: Joachim Wiedorn Architecture: all Source: lilo Version: 1:24.0-2 Filename: pool/main/l/lilo/lilo-doc_24.0-2_all.deb Size: 264212 MD5sum: 3cdcb0cfb5892a8842ab464f9bc611c0 SHA1: c36056d58b14a8ee5533c19e6cb6f68fc18b7cf3 SHA256: 04e5fc5ac8c9c1140d6f0f8e76d1eb96e9811df53190eb7369c85eb2ac05c5e0 Description: LInux LOader - Documentation for the classic OS boot loader Homepage: http://lilo.alioth.debian.org/ Description-md5: caba27144f57ac86112861e9ba583e36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lintian Priority: optional Section: devel Installed-Size: 3198 Maintainer: Ubuntu Developers Original-Maintainer: Debian Lintian Maintainers Architecture: all Version: 2.5.22ubuntu1 Depends: binutils, bzip2, diffstat, file, gettext, hardening-includes, intltool-debian, libapt-pkg-perl, libarchive-zip-perl, libclass-accessor-perl, libclone-perl, libdigest-sha-perl, libdpkg-perl, libemail-valid-perl, libfile-basedir-perl, libipc-run-perl, liblist-moreutils-perl, libparse-debianchangelog-perl, libtext-levenshtein-perl, libtimedate-perl, liburi-perl, man-db, patchutils, perl, t1utils Recommends: libautodie-perl (>= 2.18), libperlio-gzip-perl Suggests: binutils-multiarch, dpkg-dev, libhtml-parser-perl, libtext-template-perl, libyaml-perl, xz-utils Filename: pool/main/l/lintian/lintian_2.5.22ubuntu1_all.deb Size: 552684 MD5sum: 72d50d0bb0c4cc1cc000ffd7bf65f3be SHA1: a8b288954334df3a812e88c28f2bcc21b4f59516 SHA256: 5c900502a15bf8bdd3c9512cb9ee9faae39aba694153b576583aa5858794b2b9 Description: Debian package checker Multi-Arch: foreign Description-md5: 4a295ed43917ad13b4ca23bd39814dba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: linux-base Priority: optional Section: kernel Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian Kernel Team Architecture: all Version: 3.5ubuntu4 Depends: libuuid-perl, debconf (>= 0.5) | debconf-2.0, util-linux (>= 2.16-1) | udev (<< 146-1) Filename: pool/main/l/linux-base/linux-base_3.5ubuntu4_all.deb Size: 21276 MD5sum: dcec2f52157302f0f21d33978c2100d5 SHA1: 848b048bcafd30bd1d51fa6624b0215470698704 SHA256: 4bfee84c6402dfc00874f626259e8fb894e36d6322072a72949034fe92beb948 Description: Linux image base package Multi-Arch: foreign Description-md5: 441643227abc8006d7ae05aa2312ff51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-cloud-tools-common Priority: optional Section: kernel Installed-Size: 168 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux Version: 3.13.0-24.46 Replaces: hv-kvp-daemon-init (<< 3.13), linux-tools-common (<< 3.13.0-8.28) Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Breaks: hv-kvp-daemon-init (<< 3.13), linux-tools-common (<< 3.13.0-8.28) Filename: pool/main/l/linux/linux-cloud-tools-common_3.13.0-24.46_all.deb Size: 26128 MD5sum: 76cbb2728c50ff534867c17a46e01eec SHA1: e275f5296a62e9fca38d689c998085fdcac82738 SHA256: cbec6aba2f18acbdd3a8bdefe5654f1ac2803bbd93f745e13329d025afeca6ef Description: Linux kernel version specific cloud tools for version 3.13.0 Multi-Arch: foreign Description-md5: 6ef597ed465f54308bcf7a3fe290492e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-crashdump Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: kdump-tools, grub-pc (>= 1.96+20090611-1ubuntu2) | grub-efi-ia32 | grub-efi-amd64 | grub (>= 0.97-29ubuntu24) Recommends: apport Suggests: crash Filename: pool/main/l/linux-meta/linux-crashdump_3.13.0.24.28_i386.deb Size: 2578 MD5sum: a55bec2ff7bead918ea8615a5ef82860 SHA1: f2387339c37b08908b4763cf17ee3fc32b81577c SHA256: f07cdc001fa6ee235b0f76779e121735fd1b8515a830886af4998b718649f01b Description: Linux kernel crashdump setup for the latest generic kernel Description-md5: 786b3d1e77e0097cb2c8f2ab16f83875 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-doc Priority: optional Section: doc Installed-Size: 29456 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux Version: 3.13.0-24.46 Replaces: linux-doc-3 Conflicts: linux-doc-3 Filename: pool/main/l/linux/linux-doc_3.13.0-24.46_all.deb Size: 7972144 MD5sum: e7632ba6473e4eaf9673f8b92294c4db SHA1: cdae85db68db5613cf7da3092d5e3744ba66aeed SHA256: 6cb77d5edd5ae8545101d803b741c85fa5f98cf8d0ce9be2e0e4a5d1f2bf8ad1 Description: Linux kernel specific documentation for version 3.13.0 Description-md5: 676d31818175c460b934e0c660fc0057 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-firmware Priority: optional Section: misc Installed-Size: 58462 Maintainer: Ubuntu Kernel Team Architecture: all Version: 1.127 Replaces: amd64-microcode, atmel-firmware, linux-restricted-common Provides: amd64-microcode, atmel-firmware Conflicts: amd64-microcode, atmel-firmware Filename: pool/main/l/linux-firmware/linux-firmware_1.127_all.deb Size: 18932968 MD5sum: 109e4167e660e3dbd2d8992e76160a02 SHA1: b81aee73808987d731a27a475bfca2b32be165f8 SHA256: 1e2a02324fc7e7c6fe59fcb47a946d718042367832e83aa0c81e76a3bdc0ed7a Description: Firmware for Linux kernel drivers Multi-Arch: foreign Description-md5: 7a047bff9e44dce458a300976c12f9da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic (= 3.13.0.24.28), linux-headers-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-generic_3.13.0.24.28_i386.deb Size: 1784 MD5sum: b036d8922f555d1fd961d6e8d77ad9f3 SHA1: b67958ae6da5ac2d5c1039d7c45455dea746dfc1 SHA256: 0ded4ee67d1322aba44d5241077234cdebdb9193ca3c22a32303cae95309cac1 Description: Complete Generic Linux kernel and headers Description-md5: 000d0a6187a93215f75bba542cc6df27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic-lts-quantal Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-quantal_3.13.0.24.28_i386.deb Size: 1784 MD5sum: 740114bee990655789eb0efad814e326 SHA1: 679afcabf0eb3942bfc23a3f4f262bf640fd8e16 SHA256: 1b24f1b595e19703704ae0e7f90f1a67fca96e62731a47cdef683241ebf0c21b Description: Generic Linux kernel image and headers Description-md5: 38dcc9cd4d253b4b6704bb693aaa54ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic-lts-raring Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-raring_3.13.0.24.28_i386.deb Size: 1784 MD5sum: 4e8ff4cfbe62213b4e2c47f15f4d405b SHA1: 9e2649b311c415efade650eb41fae004776cefbb SHA256: b746957210655707c480512eabc4191aa8d08422c3c53309afb939f9fdd106a1 Description: Generic Linux kernel image and headers Description-md5: 38dcc9cd4d253b4b6704bb693aaa54ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic-lts-saucy Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-saucy_3.13.0.24.28_i386.deb Size: 1782 MD5sum: 41205a6f0404483c30eef9f794ee6e5e SHA1: a49b34fab0d6455c608d4b0da1befe7c1a40ad2d SHA256: 1f30f0e23cd5310a334264cd128126508471697dcc1010ccfd66181b677447cf Description: Generic Linux kernel image and headers Description-md5: 38dcc9cd4d253b4b6704bb693aaa54ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic-lts-saucy-eol-upgrade Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-saucy-eol-upgrade_3.13.0.24.28_i386.deb Size: 1800 MD5sum: a477ee7726141b3302f01bfd1622e2ed SHA1: 8aaed4608d4e76ba22abb55515ef66c5c1d3c03f SHA256: 1adfb6e2b72a40b3160e71c0a469ae3d386b834cb99a3cd8b17d51fdab041ec2 Description: Complete Generic Linux kernel and headers Description-md5: a980efdf6824d4ab19a2a106c7355027 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic-lts-trusty Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic Filename: pool/main/l/linux-meta/linux-generic-lts-trusty_3.13.0.24.28_i386.deb Size: 1784 MD5sum: a5a84a00aa0ec9cf90ba71f3beb26161 SHA1: f3b5e73a09e0a579925d5c089f8fa7fc7b6ca89c SHA256: 83cdfae7a48fcdf23c213553156ec6f964bedeff68a20b1cd264a4a98abcac87 Description: Generic Linux kernel image and headers Description-md5: 38dcc9cd4d253b4b6704bb693aaa54ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-generic-pae Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-generic-pae_3.13.0.24.28_i386.deb Size: 1748 MD5sum: 18e60a5c9757fe2f607d1d974fd5f2d6 SHA1: 0826e884068d39aefe3a6bff37e6c6096d235817 SHA256: e66ee76ac5b7c00a27309730cf198e6019b7eec2782ef41ea11277304d4b95a9 Description: Transitional package. Description-md5: b239583bb598a7b339303e3f0513dc63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-3.13.0-24 Priority: optional Section: devel Installed-Size: 61736 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux Version: 3.13.0-24.46 Depends: coreutils | fileutils (>= 4.0) Filename: pool/main/l/linux/linux-headers-3.13.0-24_3.13.0-24.46_all.deb Size: 8868990 MD5sum: b8af2ca7f4b95d760797fefedd403692 SHA1: f316d9e82666543f952c8db0905388c0da3f58cb SHA256: 62776baf9ce5aa280fee2c73671bc000a3725562680359598c44bc01a89630bc Description: Header files related to Linux kernel version 3.13.0 Multi-Arch: foreign Description-md5: c73d1c4a8c4ee13851ac3fce53274021 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-3.13.0-24-generic Priority: optional Section: devel Installed-Size: 12656 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux Version: 3.13.0-24.46 Provides: linux-headers, linux-headers-3.0 Depends: linux-headers-3.13.0-24, libc6 (>= 2.11) Filename: pool/main/l/linux/linux-headers-3.13.0-24-generic_3.13.0-24.46_i386.deb Size: 697220 MD5sum: 8d5e6c173b8d962084ac9f060d3d96bf SHA1: 0270161d07ccf8746785129292e8a661f7ee498a SHA256: ccc5e98a5698b07e479d396e7b8eada3f27920931e7933b716c61d74a0c5ccbe Description: Linux kernel headers for version 3.13.0 on 32 bit x86 SMP Description-md5: 77227aa924d25e8d4ca4f8adbcf22f41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-3.13.0-24-lowlatency Priority: optional Section: devel Installed-Size: 12636 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux Version: 3.13.0-24.46 Provides: linux-headers, linux-headers-3.0 Depends: linux-headers-3.13.0-24, libc6 (>= 2.11) Filename: pool/main/l/linux/linux-headers-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb Size: 697048 MD5sum: dc7d45fd05dffa98e4515f436a4101d5 SHA1: 4a0e0f1872f9646f269ce6007cdb9036f87f574d SHA256: 4d362a44e884a10b1f961f7e9857927bbe58f043df39120e1292c1d3e86ae955 Description: Linux kernel headers for version 3.13.0 on 32 bit x86 SMP Description-md5: 77227aa924d25e8d4ca4f8adbcf22f41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-generic Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-3.13.0-24-generic Filename: pool/main/l/linux-meta/linux-headers-generic_3.13.0.24.28_i386.deb Size: 2322 MD5sum: 15a3610555cb3e747432ad64ed57cfee SHA1: 3010b9a3867ca836e4170118d356f4f72d5103fb SHA256: 56f70aa2ec54922e1698d23f844db1aa9e8d63947bfbd7163603e8e0e7556d44 Description: Generic Linux kernel headers Description-md5: 9c9742ab9c289b1e900fab477bc0070d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-generic-lts-quantal Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers Filename: pool/main/l/linux-meta/linux-headers-generic-lts-quantal_3.13.0.24.28_i386.deb Size: 2352 MD5sum: aee370d6366f896616726550161950fb SHA1: 4defa242c6a54e20311b9fb02256fdcee6dc2539 SHA256: 3e665da1b8063c46897ee34c018b71fd7c6e215e0d654d8f75fca408cb4f6f05 Description: Generic Linux kernel headers Description-md5: 4e4842e97bf4c02f3d044a917c1c7cd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-generic-lts-raring Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-generic Filename: pool/main/l/linux-meta/linux-headers-generic-lts-raring_3.13.0.24.28_i386.deb Size: 1786 MD5sum: 947f53f760961e1bbae07b726f5c2991 SHA1: b38159b70a989463334ec6f5c9abce56438b71be SHA256: 3541a3aecc69caaa9c59fcf9aba169ed44bbc576d4dddec81a0f29a5edab36ae Description: Generic Linux kernel headers Description-md5: 4e4842e97bf4c02f3d044a917c1c7cd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-generic-lts-saucy Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-generic Filename: pool/main/l/linux-meta/linux-headers-generic-lts-saucy_3.13.0.24.28_i386.deb Size: 1786 MD5sum: 8dbebefcf960ee8e3138cb5b0c81fa39 SHA1: 6bcf8bb17ea48efe483fdbb3b5de3830ea2a18ba SHA256: 948d928933876f9f013d2b89726fcba035e460c43552125bbae94dffb157933f Description: Generic Linux kernel headers Description-md5: 4e4842e97bf4c02f3d044a917c1c7cd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-generic-lts-trusty Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-generic Filename: pool/main/l/linux-meta/linux-headers-generic-lts-trusty_3.13.0.24.28_i386.deb Size: 1784 MD5sum: 47bb44988f15e935cd5253b24787a034 SHA1: a43cc387f0bf7e29240f5f2f826719c7a14050d7 SHA256: db6dcbbffb940fc5a80e6ddaeedd2af87ce1f5d96771dc19b0404ed93c93cd36 Description: Generic Linux kernel headers Description-md5: 4e4842e97bf4c02f3d044a917c1c7cd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-generic-pae Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-headers-generic-pae_3.13.0.24.28_i386.deb Size: 1752 MD5sum: 01d3ecda9fe1910da3f8ef2ea7587c4c SHA1: a4c1ec5b6dcd8bbec61a1cf8a9f08b4e23694355 SHA256: ccd92f023f8f1448c0863d9c6ec4f0b4be220ddce14ba276acc3accd91e5a0f0 Description: Transitional package Description-md5: 5c7f6be957037e92276272bae1692599 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-lowlatency Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-3.13.0-24-lowlatency Filename: pool/main/l/linux-meta/linux-headers-lowlatency_3.13.0.24.28_i386.deb Size: 2326 MD5sum: fa364db4fab44bdc00f3b506e919054a SHA1: 4188d9394a1ee6ad325ad97f9f99f43fedd46a40 SHA256: 64b8af42ad126dd181beb6fd84d73e9612b04b7e20a16688c93c9ceff57d770b Description: lowlatency Linux kernel headers Description-md5: b28bf5c7c758bfbbbd15e31ed4c78ed6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-lowlatency-pae Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-lowlatency Filename: pool/main/l/linux-meta/linux-headers-lowlatency-pae_3.13.0.24.28_i386.deb Size: 1746 MD5sum: 99b8dc3681045b26e6e419f069015de2 SHA1: 8e4d4355e04a1a445e2f755fb06fd39e48760acf SHA256: d647998a314fd7fa953a08c009314702776336982f9c78ff97d2d2c10f998ed2 Description: Transitional package Description-md5: 6af73404b873a966ac6255b05036407d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-server Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-headers-server_3.13.0.24.28_i386.deb Size: 1762 MD5sum: b6fc4608895e3d710b18f0ba361fa0b0 SHA1: 6282504d5fa8e603dd9e54ae00def7addb2a9951 SHA256: 048bd877c46f962b51e102cf4152234e383177694f32182d84eed03f9517ac55 Description: Transitional package. Description-md5: 9f8e13d3c6398c379efb34108d986a01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-headers-virtual Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-headers-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-headers-virtual_3.13.0.24.28_i386.deb Size: 1756 MD5sum: 25774991b00a7c65af4b7b1f90d641b9 SHA1: f419ec71210463bbda319ec448f13b3b83aaa93d SHA256: da6dd04fcff975651d3a64a6ba1a3f7c314dab4b97a083ad7ff7354c8d0847c5 Description: Transitional package. Description-md5: 9f8e13d3c6398c379efb34108d986a01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-3.13.0-24-generic Priority: optional Section: kernel Installed-Size: 31561 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux Version: 3.13.0-24.46 Provides: fuse-module, ivtv-modules, kvm-api-4, linux-image, linux-image-3.0, redhat-cluster-modules Depends: initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3) Pre-Depends: dpkg (>= 1.10.24) Recommends: grub-pc | grub-efi-ia32 | grub | lilo (>= 19.1) Suggests: fdutils, linux-doc-3.13.0 | linux-source-3.13.0, linux-tools, linux-headers-3.13.0-24-generic Conflicts: hotplug (<< 0.0.20040105-1) Filename: pool/main/l/linux/linux-image-3.13.0-24-generic_3.13.0-24.46_i386.deb Size: 14564928 MD5sum: 8f54ea20727e1d9ec4f398e36506c5bb SHA1: 6893043a53312abbf8c1bd5a2a8562f2939b43e8 SHA256: 8ef3fc97ffca528b655693160492db24ec9dad914624535da69e6ff1d5a4f12b Description: Linux kernel image for version 3.13.0 on 32 bit x86 SMP Description-md5: 0bbcc82b16ba6f0f5ba74a7f4e44756a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-3.13.0-24-lowlatency Priority: optional Section: kernel Installed-Size: 141217 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux Version: 3.13.0-24.46 Provides: fuse-module, ivtv-modules, kvm-api-4, linux-image, linux-image-3.0, redhat-cluster-modules Depends: initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3) Pre-Depends: dpkg (>= 1.10.24) Recommends: grub-pc | grub-efi-ia32 | grub | lilo (>= 19.1) Suggests: fdutils, linux-doc-3.13.0 | linux-source-3.13.0, linux-tools, linux-headers-3.13.0-24-lowlatency Conflicts: hotplug (<< 0.0.20040105-1) Filename: pool/main/l/linux/linux-image-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb Size: 51428704 MD5sum: 1f72ac5b925e63baa6f7d2648bd620f1 SHA1: 17439d556b443b3f1a81cbd7cad28e1584e5d14e SHA256: 0b7b05c2cbae646494beeac28f87420de3d26dbcdf25e4ddb0eb692fa0ea59ee Description: Linux kernel image for version 3.13.0 on 32 bit x86 SMP Description-md5: bd0fd555621e91ceb843a7a52aafcd8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-extra-3.13.0-24-generic Priority: optional Section: kernel Installed-Size: 110356 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux Version: 3.13.0-24.46 Depends: linux-image-3.13.0-24-generic, crda (>= 1.1.1-1ubuntu2) | wireless-crda Filename: pool/main/l/linux/linux-image-extra-3.13.0-24-generic_3.13.0-24.46_i386.deb Size: 36982404 MD5sum: 1538f41b7b157f014b168818fc4e9aec SHA1: 8c789bb5a7493554946b187b75b4f8a88fc30a93 SHA256: 70fabb27cc2694bec8599f807d95db87f7671c5de24fc257078bf4b1c9da9877 Description: Linux kernel extra modules for version 3.13.0 on 32 bit x86 SMP Description-md5: 4d6c8e3fa282a92f5c42fd384c908e74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-extra-virtual Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-image-extra-virtual_3.13.0.24.28_i386.deb Size: 1768 MD5sum: 9b94beb2b4f18e5abbf6cc006ef1e4cd SHA1: b4f3e41fa2fc4fa48e735d9f64ecafd0e837cb22 SHA256: d5d8c1ed3a1e8ada087f77158ef86169f0847795760818b835a82d48801aa69a Description: Transitional package. Description-md5: eb988093c0758268582edcd962efe052 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-generic Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-3.13.0-24-generic, linux-image-extra-3.13.0-24-generic, linux-firmware Filename: pool/main/l/linux-meta/linux-image-generic_3.13.0.24.28_i386.deb Size: 2336 MD5sum: 9d5487319fdf16599caa9f7eb84d7792 SHA1: 36c9f0f25626176f2dd5f7fcb16475d0a0846c83 SHA256: 5a48dcacd419a10b31f6d29d9a1ee7bf74f102da12e3f0b7e2bffb9dae4c5963 Description: Generic Linux kernel image Description-md5: 6d632579c673704f44b290b16e7dbfd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-generic-lts-quantal Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic Filename: pool/main/l/linux-meta/linux-image-generic-lts-quantal_3.13.0.24.28_i386.deb Size: 1784 MD5sum: 1721eede59889da99a365e2c1a9e82a8 SHA1: 7e39918cff7f52956c2b164a67694e5b99a14f78 SHA256: 63cf73120011cf35deb9e5e5aa1def96d1ac52755fc5b01a74e98f9cdc3c7f40 Description: Generic Linux kernel image Description-md5: 8a39d8556ef2a2dfbe5697d557d7c36a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-generic-lts-raring Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic Filename: pool/main/l/linux-meta/linux-image-generic-lts-raring_3.13.0.24.28_i386.deb Size: 1788 MD5sum: 9b2a73e9eadc2800245f73bed596efa3 SHA1: 987d4f17d2911d18c4e96db24bbd34ac2906363b SHA256: ecb84e6b59b79ed406f380e176fc4cefce7745724981a5ad8bf8d46bf0bfb42e Description: Generic Linux kernel image Description-md5: 8a39d8556ef2a2dfbe5697d557d7c36a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-generic-lts-saucy Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic Filename: pool/main/l/linux-meta/linux-image-generic-lts-saucy_3.13.0.24.28_i386.deb Size: 1782 MD5sum: 7775bc0dfff4d25486fcc43ad20480d0 SHA1: b148b7dbdf4bdebeb6874fe6663109302f6d4f4d SHA256: bdb3e6d2f04778ce220cd2dafeafd955b68cce500f37b31a2260b470fd510119 Description: Generic Linux kernel image Description-md5: 8a39d8556ef2a2dfbe5697d557d7c36a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-generic-lts-trusty Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic Filename: pool/main/l/linux-meta/linux-image-generic-lts-trusty_3.13.0.24.28_i386.deb Size: 1782 MD5sum: 587354c7e7c708689c945c1825b039cc SHA1: 16e0683994ed20c39ba121e334bde81b85c520b5 SHA256: fc611ba1103c6a0cca8a509273d6e8c298d0e6f43a25310c7db8ad44c59135f7 Description: Generic Linux kernel image Description-md5: 8a39d8556ef2a2dfbe5697d557d7c36a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-generic-pae Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-image-generic-pae_3.13.0.24.28_i386.deb Size: 1750 MD5sum: 1e919d84f23ce70b7e7936cb0d8e9584 SHA1: 5a2c702f1953fe34bf3349669be4f8d1eaee1668 SHA256: c59d21900037efc858e1bceb1669d02672075553af2b7d5250806b4d1c23176c Description: Transitional package Description-md5: 32bf4fe4306e30c77d0bee2716487539 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-lowlatency Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-3.13.0-24-lowlatency, linux-firmware Filename: pool/main/l/linux-meta/linux-image-lowlatency_3.13.0.24.28_i386.deb Size: 2334 MD5sum: b5895a6675b15a59de5558a3a680b294 SHA1: ac3f6db4e5609fb62e2a9d160dedff2de28be69b SHA256: 99519d1544edc209559d53fca695403518c380bcaafbde3aace54865c12ad61b Description: lowlatency Linux kernel image Description-md5: 81c6fc6425f7566aa856ff1be6d8b320 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-lowlatency-pae Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-lowlatency Filename: pool/main/l/linux-meta/linux-image-lowlatency-pae_3.13.0.24.28_i386.deb Size: 1742 MD5sum: 641ff9a41779e7a06dc8bebd60a2d1d2 SHA1: 6c83c1f33157e03aed3a1fbe620c548e7f0c40d7 SHA256: ab40148ebca1e1714f11c1886bcd853affaeb0db2b20166a211c47ff0155cab3 Description: Transitional package Description-md5: 6843cc37a69c40820f7d377dff479023 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-image-server Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-image-server_3.13.0.24.28_i386.deb Size: 1754 MD5sum: 3d795cb783887df33889d082331cada8 SHA1: d77bb5ad95249bfcc25b90050195e5d4be7080e5 SHA256: 8451fbccfb9885b9a83b3f0e636b105c69565b0197605bb8682e04ae303e62ca Description: Transitional package. Description-md5: eb988093c0758268582edcd962efe052 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-image-virtual Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-3.13.0-24-generic Filename: pool/main/l/linux-meta/linux-image-virtual_3.13.0.24.28_i386.deb Size: 2334 MD5sum: 6748f3d3f1f0ca1d8d986fb318c3271f SHA1: 667da1c2b3d973ddc827ee13963acdd5e0dbdd4e SHA256: e5d5d030c634ed95dc513731f2f719f58a0bd57217b845a643f237f969529304 Description: This package will always depend on the latest minimal generic kernel image. Description-md5: 4860895cdea7f2369c76625e9dd2dd4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-libc-dev Priority: optional Section: devel Installed-Size: 3696 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux Version: 3.13.0-24.46 Replaces: dvb-dev (<< 1.0.1-6), libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), libdrm-dev, linux-kernel-headers Provides: linux-kernel-headers Conflicts: amd64-libs-dev (<= 1.1), dvb-dev (<< 1.0.1-6), libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), linux-kernel-headers Filename: pool/main/l/linux/linux-libc-dev_3.13.0-24.46_i386.deb Size: 781228 MD5sum: 90664bb788446071a061edd0a7dd6bba SHA1: 680463511356e0c0c8c425d3bfd67d3af0dbeb01 SHA256: 6a249e1af852ada6276269a69c99db57cf76a9615ed635f22a0faecf0491fed2 Description: Linux Kernel Headers for development Multi-Arch: same Description-md5: d5d143e6dffc891f04a85464446f9451 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: linux-libc-dev-arm64-cross Priority: extra Section: devel Maintainer: Ubuntu Kernel Team Architecture: all Source: arm64-cross-toolchain-base (0.10) Version: 3.13.0-12.32cross0.10 Replaces: dvb-dev-arm64-cross (<< 1.0.1-6), libc6-dev-arm64-cross (<< 2.3.2.ds1-6), libc6.1-dev-arm64-cross (<< 2.3.2.ds1-6), libdrm-dev-arm64-cross, linux-kernel-headers-arm64-cross Provides: linux-kernel-headers-arm64-cross, linux-libc-dev-arm64-dcv1 Conflicts: amd64-libs-dev-arm64-cross (<= 1.1), dvb-dev-arm64-cross (<< 1.0.1-6), libc6-dev-arm64-cross (<< 2.3.2.ds1-6), libc6.1-dev-arm64-cross (<< 2.3.2.ds1-6), linux-kernel-headers-arm64-cross Filename: pool/main/a/arm64-cross-toolchain-base/linux-libc-dev-arm64-cross_3.13.0-12.32cross0.10_all.deb Size: 754242 MD5sum: 7eb65651cea656bd7d15b808d3a7083e SHA1: c85bf6a8f7ea4dd8613e1a253a41d38fd82ddf4d SHA256: 3d26bdc4ff0de9c4451d8e782768a5688c3dbac7676318467f78f2a1e701afb3 Description: Linux Kernel Headers for development (for cross-compiling) Description-md5: 9d79b1e7a2c6d8a0875bde4a09a1cc28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-libc-dev-armel-cross Priority: extra Section: devel Maintainer: Ubuntu Kernel Team Architecture: all Source: armel-cross-toolchain-base (1.104) Version: 3.13.0-12.32cross1.104 Replaces: dvb-dev-armel-cross (<< 1.0.1-6), libc6-dev-armel-cross (<< 2.3.2.ds1-6), libc6.1-dev-armel-cross (<< 2.3.2.ds1-6), libdrm-dev-armel-cross, linux-kernel-headers-armel-cross Provides: linux-kernel-headers-armel-cross, linux-libc-dev-armel-dcv1 Conflicts: amd64-libs-dev-armel-cross (<= 1.1), dvb-dev-armel-cross (<< 1.0.1-6), libc6-dev-armel-cross (<< 2.3.2.ds1-6), libc6.1-dev-armel-cross (<< 2.3.2.ds1-6), linux-kernel-headers-armel-cross Filename: pool/main/a/armel-cross-toolchain-base/linux-libc-dev-armel-cross_3.13.0-12.32cross1.104_all.deb Size: 760392 MD5sum: 07c23d35bc7ab6cd61c5db4ab895fd9f SHA1: 118d630e89bd633c539b724f97221506c96cf8be SHA256: 26bc3c1bfcaa158bed2e044eb90c1aa3d608129ce3c610cfa90202adc1b17732 Description: Linux Kernel Headers for development (for cross-compiling) Description-md5: 9d79b1e7a2c6d8a0875bde4a09a1cc28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-libc-dev-armhf-cross Priority: extra Section: devel Maintainer: Ubuntu Kernel Team Architecture: all Source: armhf-cross-toolchain-base (1.104) Version: 3.13.0-12.32cross1.104 Replaces: dvb-dev-armhf-cross (<< 1.0.1-6), libc6-dev-armhf-cross (<< 2.3.2.ds1-6), libc6.1-dev-armhf-cross (<< 2.3.2.ds1-6), libdrm-dev-armhf-cross, linux-kernel-headers-armhf-cross Provides: linux-kernel-headers-armhf-cross, linux-libc-dev-armhf-dcv1 Conflicts: amd64-libs-dev-armhf-cross (<= 1.1), dvb-dev-armhf-cross (<< 1.0.1-6), libc6-dev-armhf-cross (<< 2.3.2.ds1-6), libc6.1-dev-armhf-cross (<< 2.3.2.ds1-6), linux-kernel-headers-armhf-cross Filename: pool/main/a/armhf-cross-toolchain-base/linux-libc-dev-armhf-cross_3.13.0-12.32cross1.104_all.deb Size: 760850 MD5sum: 64de4e6404e1d0d1af24a75bed89edf8 SHA1: 178bd72b1663b25c3446a97d2f745d0c0d10af90 SHA256: 327cfa8923b3a65988a1628d9dc620ed440d3fb89212a4a8a33ff7777d9cf4aa Description: Linux Kernel Headers for development (for cross-compiling) Description-md5: 9d79b1e7a2c6d8a0875bde4a09a1cc28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-libc-dev-powerpc-cross Priority: extra Section: devel Maintainer: Ubuntu Kernel Team Architecture: all Source: powerpc-cross-toolchain-base (1.1) Version: 3.13.0-13.33cross1.1 Replaces: dvb-dev-powerpc-cross (<< 1.0.1-6), libc6-dev-powerpc-cross (<< 2.3.2.ds1-6), libc6.1-dev-powerpc-cross (<< 2.3.2.ds1-6), libdrm-dev-powerpc-cross, linux-kernel-headers-powerpc-cross Provides: linux-kernel-headers-powerpc-cross, linux-libc-dev-powerpc-dcv1 Conflicts: amd64-libs-dev-powerpc-cross (<= 1.1), dvb-dev-powerpc-cross (<< 1.0.1-6), libc6-dev-powerpc-cross (<< 2.3.2.ds1-6), libc6.1-dev-powerpc-cross (<< 2.3.2.ds1-6), linux-kernel-headers-powerpc-cross Filename: pool/main/p/powerpc-cross-toolchain-base/linux-libc-dev-powerpc-cross_3.13.0-13.33cross1.1_all.deb Size: 771800 MD5sum: b705b578f61e6955e504d98d2cd73f73 SHA1: 4288fd0b4a82d9d08fa4768e598245811d478d7d SHA256: a7398f6fa748b26cdf2d8324325d59b0dcb359366a88e405d6f56531118bdfbd Description: Linux Kernel Headers for development (for cross-compiling) Description-md5: 9d79b1e7a2c6d8a0875bde4a09a1cc28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-libc-dev-ppc64el-cross Priority: extra Section: devel Maintainer: Ubuntu Kernel Team Architecture: all Source: ppc64el-cross-toolchain-base (0.2) Version: 3.13.0-13.33cross0.2 Replaces: dvb-dev-ppc64el-cross (<< 1.0.1-6), libc6-dev-ppc64el-cross (<< 2.3.2.ds1-6), libc6.1-dev-ppc64el-cross (<< 2.3.2.ds1-6), libdrm-dev-ppc64el-cross, linux-kernel-headers-ppc64el-cross Provides: linux-kernel-headers-ppc64el-cross, linux-libc-dev-ppc64el-dcv1 Conflicts: amd64-libs-dev-ppc64el-cross (<= 1.1), dvb-dev-ppc64el-cross (<< 1.0.1-6), libc6-dev-ppc64el-cross (<< 2.3.2.ds1-6), libc6.1-dev-ppc64el-cross (<< 2.3.2.ds1-6), linux-kernel-headers-ppc64el-cross Filename: pool/main/p/ppc64el-cross-toolchain-base/linux-libc-dev-ppc64el-cross_3.13.0-13.33cross0.2_all.deb Size: 770620 MD5sum: de8a04a0324efbbabbad2df3ca846a59 SHA1: ce3f6a7f819777f7d2e96ea31de4d6729856ee39 SHA256: 8ecc86631736a1a62ecd564d08b11408bcbd25480a3a906bde537b66e602dd94 Description: Linux Kernel Headers for development (for cross-compiling) Description-md5: 9d79b1e7a2c6d8a0875bde4a09a1cc28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linux-lowlatency Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-lowlatency (= 3.13.0.24.28), linux-headers-lowlatency (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-lowlatency_3.13.0.24.28_i386.deb Size: 1786 MD5sum: 7b816537f793d68a1e922ac7cf7d9f02 SHA1: f013baed750736710cb6ccbba4646914dfe0b981 SHA256: 494d496b4eb8124d614792afe281648051f02d3d8d248f33991888bda7ef2003 Description: Complete lowlatency Linux kernel Description-md5: b52e19b8044c25aff9dce108f24e2ee9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-lowlatency-pae Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-lowlatency Filename: pool/main/l/linux-meta/linux-lowlatency-pae_3.13.0.24.28_i386.deb Size: 1744 MD5sum: 14992d6a38d44f73e4cadd600e72784d SHA1: 3e554401b402cbf03f51fbe55912bf3679f3cd3d SHA256: 3f658fe3b1c07d20a552bf83b3ef5d733a12cf13a41062d2425806f37662f742 Description: Transitional package Description-md5: 0aa935414a87ff9b660c4f39bab85ed9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-server Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-generic (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-server_3.13.0.24.28_i386.deb Size: 1748 MD5sum: 1b4d996115407916b09b7fb03f1ff4e7 SHA1: 960f73d902a8725e3d3a3ae58c46d90d3589bfa8 SHA256: 33835b12ea22aa02ce84fc63bb2618c92fb653b59df63d4caca583f3ab166405 Description: Transitional package. Description-md5: b239583bb598a7b339303e3f0513dc63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-sound-base Priority: optional Section: sound Installed-Size: 96 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian ALSA Maintainers Architecture: all Source: alsa-driver Version: 1.0.25+dfsg-0ubuntu4 Depends: debconf (>= 0.5) | debconf-2.0, module-init-tools (>= 3.2.1) Suggests: alsa-base (>= 1.0.18-1) Filename: pool/main/a/alsa-driver/linux-sound-base_1.0.25+dfsg-0ubuntu4_all.deb Size: 14494 MD5sum: 8597097951846a38a0a641c1b18ff21d SHA1: 0a9c61f7f5ab445f7a8614f8e1619c28d291443c SHA256: 00cd64e404bb7c9c823aba1825472cbb2b6be59d4bad1b766d626ccb96f9e056 Description: base package for ALSA and OSS sound systems Homepage: http://www.alsa-project.org/ Description-md5: 345b7b0786beff04084b70dad9f3313a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: linux-source Priority: optional Section: devel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux-meta Version: 3.13.0.24.28 Depends: linux-source-3.13.0 Filename: pool/main/l/linux-meta/linux-source_3.13.0.24.28_all.deb Size: 2322 MD5sum: 4aa58682b05f7112cb395ee91b04979f SHA1: 79d60ab1d6ee902b62e9ee6a56a9ec8eb41be14d SHA256: d608715b6afcb64366c71d62e23466b1a9963bfd9633fc6f44cc95554ced7f58 Description: Linux kernel source with Ubuntu patches Description-md5: 1cac084d2ae18dfd06b96585b4be564d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-source-3.13.0 Priority: optional Section: devel Installed-Size: 109868 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux Version: 3.13.0-24.46 Provides: linux-source, linux-source-3 Depends: binutils, bzip2, coreutils | fileutils (>= 4.0) Recommends: libc-dev, gcc, make Suggests: libncurses-dev | ncurses-dev, kernel-package, libqt3-dev Filename: pool/main/l/linux/linux-source-3.13.0_3.13.0-24.46_all.deb Size: 97702702 MD5sum: 7d612b7285afe809bb96f73e0e09404b SHA1: 014fc9cef6241b2723037bb558d1788d688b78a2 SHA256: 49b501a6bb245248028bbfb6efd6a4fb4c44bc44bddabf93d300d483cafc80e8 Description: Linux kernel source for version 3.13.0 with Ubuntu patches Description-md5: 51a9ca1b331239a745b564f7d3a2f985 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-3.13.0-24 Priority: optional Section: devel Installed-Size: 1387 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux Version: 3.13.0-24.46 Depends: libaudit1 (>= 1:2.2.1), libc6 (>= 2.8), libdw1 (>= 0.143), libelf1 (>= 0.144), libpci3 (>= 1:3.2.1-1), libslang2 (>= 2.2.4), linux-tools-common Filename: pool/main/l/linux/linux-tools-3.13.0-24_3.13.0-24.46_i386.deb Size: 472126 MD5sum: ef7842652d7f6a3fea1f6fff56c4cf3e SHA1: 29efede547366a30d316b9dbbe4bb4ed01dba5c3 SHA256: d616552579579813b7ba14993d2770ffbb4b183bd8ef8ea249d4645c6abe23a9 Description: Linux kernel version specific tools for version 3.13.0-24 Description-md5: a72da3acdf9e797a8a75d89979340ed7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-3.13.0-24-generic Priority: optional Section: devel Installed-Size: 143 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux Version: 3.13.0-24.46 Depends: linux-tools-3.13.0-24 Filename: pool/main/l/linux/linux-tools-3.13.0-24-generic_3.13.0-24.46_i386.deb Size: 1824 MD5sum: 02584f47ebb1642545a7d423e5a674cc SHA1: 7e0e008f098221ac34f32943377c729b36df027a SHA256: 067399d8cb0d0491ff4bcd3fc5b45ea555d4f6d49513916cae31b16c31a12169 Description: Linux kernel version specific tools for version 3.13.0-24 Description-md5: fe94260e87bcecca83ac2ef89734b1ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-3.13.0-24-lowlatency Priority: optional Section: devel Installed-Size: 143 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux Version: 3.13.0-24.46 Depends: linux-tools-3.13.0-24 Filename: pool/main/l/linux/linux-tools-3.13.0-24-lowlatency_3.13.0-24.46_i386.deb Size: 1832 MD5sum: dc57a9314220a8d27d4854f7f997e627 SHA1: 31e39eb41c5c96dfdff439268109fa84c7e83c19 SHA256: 5cb34cfe1dceb80762ed51b08af807d8c76f4d05fba45aef0669b9a81f3fc3b4 Description: Linux kernel version specific tools for version 3.13.0-24 Description-md5: fe94260e87bcecca83ac2ef89734b1ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-common Priority: optional Section: kernel Installed-Size: 222 Maintainer: Ubuntu Kernel Team Architecture: all Source: linux Version: 3.13.0-24.46 Replaces: linux-tools (<= 2.6.32-16.25) Filename: pool/main/l/linux/linux-tools-common_3.13.0-24.46_all.deb Size: 94404 MD5sum: c579383b93d08406c3e12c024cf5c1b7 SHA1: 739f756fcea7c67bf799f4bbc55bfc22dec07561 SHA256: 5e5d5ab9e553e3d198388e3f3602131d06ee2b4935682c7d2b3c93c968bf3c61 Description: Linux kernel version specific tools for version 3.13.0 Multi-Arch: foreign Description-md5: 11ddcad592693d75f552399012d33646 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-generic Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-tools Depends: linux-tools-3.13.0-24-generic Filename: pool/main/l/linux-meta/linux-tools-generic_3.13.0.24.28_i386.deb Size: 2324 MD5sum: 75041112efcb8731b0b0edb8aea5b6d5 SHA1: 52562282182c05840452cf340848170b0dead4c5 SHA256: 109734e4e15059d4e6cdfe65557be8627d437c4a4dbfd14484bba1973c8157c4 Description: Generic Linux kernel tools Description-md5: 64a22a7a6c16a9e754ca8416e318c089 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-generic-lts-saucy Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-tools Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-generic-lts-saucy_3.13.0.24.28_i386.deb Size: 1790 MD5sum: 5ad8b4fa1130a27be18f95384980bcdf SHA1: 1afde45bec8a3eaa2235394e174656ea48650dc3 SHA256: 2dc85f4e72dd4ea30dda902488a2ef062c2e3aa95264aaa1b2cfca8f6cf8741d Description: Generic Linux kernel tools Description-md5: fa3fabb29b200f2f5b98196fde1d63ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-generic-lts-trusty Priority: optional Section: metapackages Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-tools Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-generic-lts-trusty_3.13.0.24.28_i386.deb Size: 1790 MD5sum: e0671a320e7c2e044cd7d3b29926a7ea SHA1: f6d20304a435dbbfdc09f8bea196feae3797a972 SHA256: 954bd917079782059f3ddc6bb1fd5948c24d034b511f56bf08f541981e661f3e Description: Generic Linux kernel tools Description-md5: fa3fabb29b200f2f5b98196fde1d63ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-lowlatency Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-tools Depends: linux-tools-3.13.0-24-lowlatency Filename: pool/main/l/linux-meta/linux-tools-lowlatency_3.13.0.24.28_i386.deb Size: 2330 MD5sum: f4d5f08abbf191c6cd6da3d9e818166b SHA1: d0a7f15322d9ef893c2bfea4f43ff3bc82b440a7 SHA256: c4b95e7b898748aa8336db3d90154f8cc0d680cf930f882be29e4e062ab065ef Description: lowlatency Linux kernel tools Description-md5: e3526bccc03154dd5bfd31ac11ba341e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-lts-quantal Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-lts-quantal_3.13.0.24.28_i386.deb Size: 1784 MD5sum: 995c30931cf70f69c49d7ff5c948e3d2 SHA1: cb0d616e910e85d45374823358f2435908807ec9 SHA256: 9cb741ad1fea906223f3af59fae010ebeffd6939b4eae4d663616d92e17174a1 Description: Linux kernel versioned Tools Description-md5: 0bd0ec9426b0595c871a446a4e3e8575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-lts-raring Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-lts-raring_3.13.0.24.28_i386.deb Size: 1780 MD5sum: 2ef740f2579f72b46ac57643b03555f5 SHA1: 447c2cb050982f3f82c57b33cea25f3ff256796e SHA256: e9eb80990b5e41af04f79de6d5748fa0d4a023ad3f17d1130e212c8a21041acd Description: Linux kernel versioned Tools Description-md5: 0bd0ec9426b0595c871a446a4e3e8575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-lts-saucy Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-lts-saucy_3.13.0.24.28_i386.deb Size: 1782 MD5sum: 24f00b6239c54bceef0c7111f5890e84 SHA1: 72e2fae1305cef1ec48c8fdd462730c11eec9b5a SHA256: a56b138a92d77fdae9e41882befa41626314330c752a729e8af2f7836534ec0b Description: Linux kernel versioned Tools Description-md5: 0bd0ec9426b0595c871a446a4e3e8575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-lts-trusty Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-tools-generic Filename: pool/main/l/linux-meta/linux-tools-lts-trusty_3.13.0.24.28_i386.deb Size: 1782 MD5sum: 6e5c8d697f645a988acdeb347f34e2ab SHA1: 7cbf42e95f0ae91aca7713c9790c5935f8ec5e02 SHA256: cd232f3befb7740e999ecb794547089a2243d9eb34d8bfae733b2a9941634928 Description: Linux kernel versioned Tools Description-md5: 0bd0ec9426b0595c871a446a4e3e8575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-tools-virtual Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Provides: linux-tools Depends: linux-tools-3.13.0-24-generic Filename: pool/main/l/linux-meta/linux-tools-virtual_3.13.0.24.28_i386.deb Size: 2342 MD5sum: f03759a65b6bb8d0dbae5547c467fd9a SHA1: c0d9fff5f89aa5ef470f1312aa484c0f3fee09bc SHA256: d897b8f74d1009ef199ba647ed107f8f6798ee30134851f53c217c259eb515f6 Description: This package will always depend on the latest minimal generic kernel tools. Description-md5: 3f581644eab1dc2432155dbf206ad217 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linux-virtual Priority: optional Section: kernel Installed-Size: 27 Maintainer: Ubuntu Kernel Team Architecture: i386 Source: linux-meta Version: 3.13.0.24.28 Depends: linux-image-virtual (= 3.13.0.24.28), linux-headers-virtual (= 3.13.0.24.28) Filename: pool/main/l/linux-meta/linux-virtual_3.13.0.24.28_i386.deb Size: 1778 MD5sum: 5c7913cfba4074a15976c5fec57fa7aa SHA1: fdf7d3b9518baa0375b2cd03b3d57cb2eb9afd33 SHA256: cbb35175d6dace9c2e89d6a682f699e92515f3caaf7544c5ee1d908a582bdf29 Description: Minimal Generic Linux kernel and headers Description-md5: 71a1a38f6977c1a1bbc8a7634f51401c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: linuxdoc-tools Priority: optional Section: text Installed-Size: 1063 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Version: 0.9.69-2 Replaces: linuxdoc-sgml, linuxdoc-tools-info (<< 0.9.20), linuxdoc-tools-latex (<< 0.9.20), linuxdoc-tools-text (<< 0.9.20), sgml-tools Provides: linuxdoc-sgml Depends: libc6 (>= 2.7), dpkg (>= 1.15.4) | install-info, sgml-base (>= 1.26+nmu2), perl, sp | opensp, sgml-data, gawk | mawk Suggests: texinfo, info-browser, groff, texlive-latex-base, texlive-base-bin, texlive-latex-recommended, linuxdoc-tools-text, linuxdoc-tools-latex, linuxdoc-tools-info Breaks: linuxdoc-sgml, sgml-tools (<= 1.0.9-90) Filename: pool/main/l/linuxdoc-tools/linuxdoc-tools_0.9.69-2_i386.deb Size: 537350 MD5sum: dac5189945a832d80511f6a67c6385b1 SHA1: 48e86a8c7edfdcef0cefa264c20351053491c6dc SHA256: caf944d84ccd195a7ad8bffd4e33917d7d6f375d94985e0fd445485d0e877850 Description: convert LinuxDoc SGML source into other formats Multi-Arch: foreign Description-md5: fc0527f5bddaeae78d21fdee93a5f435 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linuxdoc-tools-latex Priority: optional Section: text Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: linuxdoc-tools Version: 0.9.69-2 Depends: linuxdoc-tools, texlive-latex-base, texlive-base-bin, texlive-latex-recommended Conflicts: linuxdoc-tools (<< 0.9.20) Filename: pool/main/l/linuxdoc-tools/linuxdoc-tools-latex_0.9.69-2_all.deb Size: 4378 MD5sum: 6232ffbb3f6f2846a259916fd58f5b53 SHA1: 57f7bf51b100979868d4bf8df74bdb8b21195bf3 SHA256: 1668d69cc0f6c9f860247818125f6a070c0b8d5a78139325e91f6d336225bba9 Description: LaTeX/PS/PDF output facility of LinuxDoc-Tools Multi-Arch: foreign Description-md5: 2ffa104c88bc0f3d96f645d602bce058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: linuxdoc-tools-text Priority: optional Section: text Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: linuxdoc-tools Version: 0.9.69-2 Depends: linuxdoc-tools, groff Breaks: linuxdoc-tools (<< 0.9.20) Filename: pool/main/l/linuxdoc-tools/linuxdoc-tools-text_0.9.69-2_all.deb Size: 4334 MD5sum: 365541502a32ee18b66e3e061a25dfdc SHA1: c9578d849e5139ec3f5134cab672b7babec4840a SHA256: 10048c9e7155684f0cb20d116ffdc87898b6b8aad9bd13964972b85e628e0104 Description: Text output facility of LinuxDoc-Tools Multi-Arch: foreign Description-md5: 7026616b4e2ed3486e9955245937f28d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: live-build Priority: optional Section: misc Installed-Size: 808 Maintainer: Ubuntu Developers Original-Maintainer: Debian Live Project Architecture: all Version: 3.0~a57-1ubuntu11 Depends: debootstrap | cdebootstrap | cdebootstrap-static Recommends: cpio Suggests: dosfstools, genisoimage, git, memtest86+ | memtest86, mtools, parted, squashfs-tools | mtd-tools, sudo | fakeroot, syslinux | grub, uuid-runtime, win32-loader, gnu-fdisk Breaks: livecd-rootfs (<< 2.75) Filename: pool/main/l/live-build/live-build_3.0~a57-1ubuntu11_all.deb Size: 131630 MD5sum: 2e44c21309cd3475869d465cc360ca0b SHA1: 18e59d0260d0fc6001e801589c3ba2ffa34228c7 SHA256: ef01cc80510c13de5218129d4d57922f45f73648ec7cd82a4b03e7083a30159e Description: Debian Live - System build scripts Homepage: http://live.debian.net/devel/live-build/ Description-md5: 5e001429458ae01c34528832e328ea58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: livecd-rootfs Priority: optional Section: devel Installed-Size: 135 Maintainer: Ubuntu Developers Architecture: i386 Version: 2.208 Depends: debootstrap, rsync, python-minimal | python, procps, squashfs-tools (>= 1:3.3-1), grep-dctrl, fdupes, lsb-release, lzma, e2fsprogs, germinate (>= 1.25.1), apt-utils, gnupg, live-build (>= 3.0~a55-1) Suggests: partimage Breaks: ubuntu-defaults-builder (<< 0.32) Filename: pool/main/l/livecd-rootfs/livecd-rootfs_2.208_i386.deb Size: 16952 MD5sum: 7d7dfd8d09dfe4a504cb3fe1aed66f48 SHA1: aa330e9bfb0f53f875586446ef391925d27a053c SHA256: e6e64d37b08396c173b8e1a9a264a41b0ebccb844c0c393a2d7c7f0c068aa6ab Description: construction script for the livecd rootfs Description-md5: 7b59fd93401bd0efd37505de924d874f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lksctp-tools Priority: optional Section: net Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: i386 Version: 1.0.15+dfsg-1 Depends: libc6 (>= 2.16), libsctp1 (>= 1.0.12+dfsg) Filename: pool/main/l/lksctp-tools/lksctp-tools_1.0.15+dfsg-1_i386.deb Size: 49912 MD5sum: 408f81307e2984b772145a932e0a95e1 SHA1: 7db77d257f229a355d1335cbf6bcc517084f08f6 SHA256: 002e6072a6136b0caa5ae355efa2e57da2352803b7faeeb71ebe0e0ac6340cc4 Description: user-space access to Linux Kernel SCTP - commandline tools Homepage: http://lksctp.sf.net/ Description-md5: 2626efe93b0b3cfcdd97b321e6e46128 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: llvm-3.4 Priority: optional Section: devel Installed-Size: 3679 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: i386 Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Replaces: llvm (<< 2.7-1) Depends: llvm-3.4-runtime (= 1:3.4-1ubuntu3), libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libllvm3.4, libstdc++6 (>= 4.2.1), libtinfo5 Recommends: llvm-3.4-dev Suggests: llvm-3.4-doc Conflicts: llvm (<< 2.7-1) Filename: pool/main/l/llvm-toolchain-3.4/llvm-3.4_3.4-1ubuntu3_i386.deb Size: 1115770 MD5sum: aa6626ee129321c72a688e6cb1102b3c SHA1: 0dd6872a0872838c40d31361c5fec8497dac3b84 SHA256: 5650db9dfedfb576963c8dfe96e9446e08d638ff50fa345884ec73a524f35e40 Description: Modular compiler and toolchain technologies Homepage: http://www.llvm.org/ Description-md5: 9e5c5554d1a5882101129d5527e3e617 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: llvm-3.4-dev Priority: optional Section: devel Installed-Size: 56714 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: i386 Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Replaces: llvm (<< 2.2-3) Depends: libc6 (>= 2.4), libcloog-isl4 (>= 0.17), libgmp10, libisl10 (>= 0.12.1), libllvm3.4, libstdc++6 (>= 4.6), libffi-dev (>= 3.0.9), llvm-3.4 (= 1:3.4-1ubuntu3), libtinfo-dev Filename: pool/main/l/llvm-toolchain-3.4/llvm-3.4-dev_3.4-1ubuntu3_i386.deb Size: 10126974 MD5sum: 1ea5b6f16bfd715b4558a8884ddf6a78 SHA1: b18b07f6ca3476d12492acb81d337c5c7dab13c8 SHA256: 946632e98cc8f24c8b0ccfb78a082be82e6ecb116f4d799d49cdadce80cd0d94 Description: Modular compiler and toolchain technologies, libraries and headers Homepage: http://www.llvm.org/ Description-md5: 29f654aa391c01f742a2023c872d7a49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: llvm-3.4-doc Priority: optional Section: doc Installed-Size: 8247 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: all Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Depends: libjs-jquery, libjs-underscore Filename: pool/main/l/llvm-toolchain-3.4/llvm-3.4-doc_3.4-1ubuntu3_all.deb Size: 1184424 MD5sum: a1fd8f839242a851175c8f1c3a3c041d SHA1: 1c0c3ff2d1be0234b13d1f7cfe983d780457c397 SHA256: 838bdc029d8fdcc336025d163cbca143ac837a783db5b2c8a16224aadcd6503d Description: Modular compiler and toolchain technologies, documentation Homepage: http://www.llvm.org/ Description-md5: 19896d0a63f9911e3a7a7b85ecfac407 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: llvm-3.4-examples Priority: optional Section: doc Installed-Size: 390 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: all Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Depends: llvm-3.4-dev (>= 1:3.4-1ubuntu3), llvm-3.4-dev (<< 1:3.4-1ubuntu3+c~) Filename: pool/main/l/llvm-toolchain-3.4/llvm-3.4-examples_3.4-1ubuntu3_all.deb Size: 168374 MD5sum: 7c1369d61caa5c6b88c7cbdb6d00ddf5 SHA1: 02d5cfa38da0b0b60bd7630c35ae4fef91a83803 SHA256: d8dc0d8c6c3f54f71292366729e7fcbcce8dc11ee8555e47ab28eaf06c1f7956 Description: Modular compiler and toolchain technologies, examples Homepage: http://www.llvm.org/ Description-md5: 61fee537b751bf39ce1ac5bf27ca3806 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: llvm-3.4-runtime Priority: optional Section: devel Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: LLVM Packaging Team Architecture: i386 Source: llvm-toolchain-3.4 Version: 1:3.4-1ubuntu3 Replaces: llvm (<< 2.7-1) Depends: binfmt-support, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libllvm3.4, libstdc++6 (>= 4.1.1) Conflicts: llvm (<< 2.7-1) Filename: pool/main/l/llvm-toolchain-3.4/llvm-3.4-runtime_3.4-1ubuntu3_i386.deb Size: 36362 MD5sum: 6a2a636664325a72a2cc6513702fbc14 SHA1: 284bc7c311d4f82d701e74652418cd512cff8b5e SHA256: 03fac754781fe5d1830053b2e6ee07329d8b69507fd95b698042a361eeb757aa Description: Modular compiler and toolchain technologies, IR interpreter Homepage: http://www.llvm.org/ Description-md5: a2e425ebfc2fcd56b539f44a28559b4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lmodern Priority: optional Section: tex Installed-Size: 32873 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Version: 2.004.4-3 Replaces: lm, lmodern-x11 Depends: tex-common (>= 3), fonts-lmodern (= 2.004.4-3) Pre-Depends: dpkg (>= 1.15.7.2) Conflicts: context (<= 2008.10.31-1), lm, lmodern-x11 Filename: pool/main/l/lmodern/lmodern_2.004.4-3_all.deb Size: 12388436 MD5sum: 9e8b1b320a94f26279316ece5ac62520 SHA1: e07aefbb3c7ca5dfce313207bd97dd745733ade7 SHA256: 9a0ccc987c579ae652fee287383c82c7ae07e8d941d1d1c1394923629e6cc079 Description: scalable PostScript and OpenType fonts based on Computer Modern Homepage: http://www.gust.org.pl/projects/e-foundry/latin-modern/ Description-md5: ec713c966ceae093764ea52f6cc1a541 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: localechooser-data Priority: optional Section: devel Installed-Size: 62 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: localechooser Version: 2.49ubuntu5 Depends: iso-codes Breaks: system-config-kickstart (<< 2.5.20-0ubuntu17) Filename: pool/main/l/localechooser/localechooser-data_2.49ubuntu5_all.deb Size: 6378 MD5sum: 3b52b9d0041b52d0519cdc27c063c326 SHA1: 24418ce31382ff7bf7bfd6c27856ec68794aa129 SHA256: 5c969e0401475a12ba4111ff17e0d6d5aeb6ba0f9c220f49e150abd1fc3038ba Description: Lists of locales supported by the installer Description-md5: 784619ad1af4a25c5b4fbee6739c3344 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-live Package: locales Priority: required Section: libs Installed-Size: 9012 Maintainer: Martin Pitt Architecture: all Source: langpack-locales Version: 2.13+git20120306-12 Replaces: base-config, belocs-locale-data, belocs-locales-bin, libc6 (<< 2.3.6-0ubuntu6), libc6.1 (<< 2.3.6-0ubuntu6) Depends: libc6 (>= 2.9-0ubuntu10) | libc6.1 (>= 2.9-0ubuntu10) Conflicts: base-config, belocs-locale-data Filename: pool/main/l/langpack-locales/locales_2.13+git20120306-12_all.deb Size: 2700796 MD5sum: 862dc267afef88937b391659ae68db64 SHA1: 79362490ec24320a285c0ac6e4494ae411dcd278 SHA256: d78a27a94732ed1109754b72c4f1aa0d6fa81e595a18d62ef64fb7c6939f0871 Description: common files for locale support Description-md5: cd9b6b54ca8243d6f6ef9d4c4870927f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: lockfile-progs Priority: important Section: misc Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Rob Browning Architecture: i386 Version: 0.1.17 Depends: libc6 (>= 2.8), liblockfile1 (>= 1.0) Filename: pool/main/l/lockfile-progs/lockfile-progs_0.1.17_i386.deb Size: 10200 MD5sum: db1a57138a0bf345ae9e8e26bf94c18f SHA1: 271ac24069d1a11d70be45a81a50f79ad14f13ca SHA256: e6b9d3b3dd9e945f0338efc36fcfe503f4d3549464c844bfcea90e19d16bce9b Description: Programs for locking and unlocking files and mailboxes Description-md5: 1734d26cc52e1c7ee271af4a4589f25f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: logcheck Priority: optional Section: admin Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Debian logcheck Team Architecture: all Version: 1.3.16 Depends: adduser, default-mta | mail-transport-agent, cron, rsyslog | system-log-daemon, mime-construct, logtail (>= 1.2.59), lockfile-progs Recommends: logcheck-database (>= 1.3.16) Suggests: syslog-summary Filename: pool/main/l/logcheck/logcheck_1.3.16_all.deb Size: 23556 MD5sum: 88795185a97fcd2fdf49eb09e83f4cb5 SHA1: 95330c3ba8f5665a46496c812398a66611c1f660 SHA256: 593d075e75aa4729caf4af33b2c90088a163dec1cd99668e7b8315214d62f1f0 Description: mails anomalies in the system logfiles to the administrator Homepage: http://www.logcheck.org/ Description-md5: 204144e4246b58634f497c2685d94433 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: logcheck-database Priority: optional Section: admin Installed-Size: 393 Maintainer: Ubuntu Developers Original-Maintainer: Debian logcheck Team Architecture: all Source: logcheck Version: 1.3.16 Replaces: amavisd-new (<= 2:2.6.4-1), logcheck (<= 1.1.1-9) Filename: pool/main/l/logcheck/logcheck-database_1.3.16_all.deb Size: 65538 MD5sum: 3daefcb1e3aa15f58965ea76061e4d74 SHA1: a3e0e0a14bdfbd727d56c0768a0f8d876362e74c SHA256: 9ad3afe229d86d55f3a883d47ccbe51631d0b4caf886404335551f3084605fb6 Description: database of system log rules for the use of log checkers Homepage: http://www.logcheck.org/ Description-md5: ba9dad019b4bc2992a1c7036b6ab49e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: login Essential: yes Priority: required Section: admin Installed-Size: 1168 Maintainer: Ubuntu Developers Original-Maintainer: Shadow package maintainers Architecture: i386 Source: shadow Version: 1:4.1.5.1-1ubuntu9 Replaces: manpages-de (<< 0.5-3), manpages-tr (<< 1.0.5), manpages-zh (<< 1.5.1-1) Pre-Depends: libc6 (>= 2.7), libpam0g (>= 0.99.7.1), libpam-runtime, libpam-modules 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) Filename: pool/main/s/shadow/login_4.1.5.1-1ubuntu9_i386.deb Size: 300594 MD5sum: 81917d447c8833dc6f1d3a942ada744b SHA1: 2153bc37782b8b5911da2dc008229f116f2fb54f SHA256: 43b912526e0526922d00716094fcea50849a93d69a94e3d69a40eb1710017877 Description: system login tools Homepage: http://pkg-shadow.alioth.debian.org/ Description-md5: a9c42fe48288d1e8b7d3d34463d0f485 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: logrotate Priority: important Section: admin Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Paul Martin Architecture: i386 Version: 3.8.7-1ubuntu1 Depends: libacl1 (>= 2.2.51-8), libc6 (>= 2.8), libpopt0 (>= 1.14), libselinux1 (>= 1.32), cron | anacron | cron-daemon, base-passwd (>= 2.0.3.4) Suggests: mailx Breaks: postgresql-common (<= 126) Filename: pool/main/l/logrotate/logrotate_3.8.7-1ubuntu1_i386.deb Size: 37026 MD5sum: 7974096193e86faab13ca4be08d8b619 SHA1: 208b1784a9327091b2a5eb66a8b55c8a6577ed67 SHA256: 35913b4611eb43bf284155b3802de69ba1138b9ba634c89667f0570e7f5fa7d0 Description: Log rotation utility Homepage: https://fedorahosted.org/logrotate/ Description-md5: bb73169bb75b2b8a2fda1453d214416d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: logtail Priority: optional Section: admin Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian logcheck Team Architecture: all Source: logcheck Version: 1.3.16 Replaces: logcheck (<= 1.1.1-9) Depends: perl (>= 5.8.0) Filename: pool/main/l/logcheck/logtail_1.3.16_all.deb Size: 15418 MD5sum: bbb6b611618982645973f150b65dc989 SHA1: 50e55a78b7f77d870924cfd5a81ad3b3e45d66c2 SHA256: 6ba2354c555ef14a95779442a6f090cc4a1a871f5d0061dad63b7547af820aaf Description: Print log file lines that have not been read (deprecated) Homepage: http://www.logcheck.org/ Description-md5: a844125a20d0a40064a9bb3cc49d8c48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: logwatch Priority: optional Section: admin Installed-Size: 2088 Maintainer: Ubuntu Developers Original-Maintainer: Willi Mann Architecture: all Version: 7.4.0+svn20130529rev144-1ubuntu1 Depends: perl, postfix | mail-transport-agent Recommends: libdate-manip-perl Suggests: fortune-mod Filename: pool/main/l/logwatch/logwatch_7.4.0+svn20130529rev144-1ubuntu1_all.deb Size: 468166 MD5sum: 99f0d28a2a9994b46eee26ddaeeb756b SHA1: afb9c9986dde7359555f07a99c311822d61427e2 SHA256: 82a9af13a77eccd285e16bd68ec11d7cf89f62ace4ee75ed3057f6d69e338ed8 Description: log analyser with nice output written in Perl Homepage: http://www.logwatch.org/ Description-md5: ece539a8a87c5f861d7f0b865e42a03c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lp-solve Priority: optional Section: math Installed-Size: 677 Maintainer: Ubuntu Developers Original-Maintainer: Juan Esteban Monsalve Tobon Architecture: i386 Version: 5.5.0.13-7build1 Depends: libc6 (>= 2.11), libcolamd2.8.0 Filename: pool/main/l/lp-solve/lp-solve_5.5.0.13-7build1_i386.deb Size: 265242 MD5sum: 462e66d2483a5a30d0bc6233b41f6ea1 SHA1: 4152341fef8d35ed773bd542a7842538ff308120 SHA256: 38856ac52a61f587df1be5ab733819138a5a76cf7027da37fc2c094d9d688147 Description: Solve (mixed integer) linear programming problems Homepage: http://lpsolve.sourceforge.net Description-md5: bc9fbd53b2b145f26b30729410336710 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntu-gnome-desktop Package: lp-solve-doc Priority: optional Section: doc Installed-Size: 1985 Maintainer: Ubuntu Developers Original-Maintainer: Juan Esteban Monsalve Tobon Architecture: all Source: lp-solve Version: 5.5.0.13-7build1 Recommends: www-browser Filename: pool/main/l/lp-solve/lp-solve-doc_5.5.0.13-7build1_all.deb Size: 223230 MD5sum: efa0f44e92dc79e34adf6c0bcaca9154 SHA1: aa88a1f79b3b7e6a00a4d554efc182d2264458c9 SHA256: fb7a6d27c7c3dfd2f0d6430136320171c1b0cff82eb9cb5c53c1e53a790555ea Description: Solve (mixed integer) linear programming problems - documentation Homepage: http://lpsolve.sourceforge.net Description-md5: 1671ede7b2bbfb59f742e21455517124 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lsb Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: all Version: 4.1+Debian11ubuntu6 Depends: lsb-core (>= 4.1+Debian11ubuntu6), lsb-graphics (>= 4.1+Debian11ubuntu6), lsb-cxx (>= 4.1+Debian11ubuntu6), lsb-desktop (>= 4.1+Debian11ubuntu6), lsb-printing (>= 4.1+Debian11ubuntu6), lsb-languages (>= 4.1+Debian11ubuntu6) Filename: pool/main/l/lsb/lsb_4.1+Debian11ubuntu6_all.deb Size: 2798 MD5sum: 8431c10bc15de5f9b63a7327003e440d SHA1: 26b89fb54d4ae5b879ff062839c8e54ae48f5b61 SHA256: 005b8a7566297e018cd421fe889f2498312dcd8fcec46b8eeb357b4f7f67fd97 Description: Linux Standard Base 4.1 support package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 2d741321255c783f018fabc70b9cada9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-base Priority: required Section: misc Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: all Source: lsb Version: 4.1+Debian11ubuntu6 Filename: pool/main/l/lsb/lsb-base_4.1+Debian11ubuntu6_all.deb Size: 12474 MD5sum: fe7b4d46b4b3b9ffdfbf30dee01c0f48 SHA1: 198aa1a373ef740c1932e13eb7e83981aa34fbaa SHA256: 635264a0aa64fbb3ab8c7369f9e6f84888edaa9b2341a0ccccf45ce023c9323e Description: Linux Standard Base 4.1 init script functionality Multi-Arch: foreign Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 4ebb3d88f9f483751e70c55779c52d01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: lsb-core Priority: extra Section: misc Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: i386 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-core-ia32, lsb-core-noarch Depends: lsb-release (>= 4.1+Debian11ubuntu6), libc6 (>> 2.3.5), libz1, libncurses5, libpam0g, lsb-invalid-mta (>= 4.1+Debian11ubuntu6) | mail-transport-agent, at, bc, binutils, bsdmainutils, bsdutils, cpio, cron | cron-daemon, ed, file, libc6-dev | libc-dev, locales, cups-bsd | lpr, lprng | cups-client, m4, mailx | mailutils, make, man-db, mawk | gawk, ncurses-term, passwd, patch, pax, procps, psmisc, rsync, alien (>= 8.36), python3, debconf (>= 0.5) | debconf-2.0, lsb-base (>= 4.1+Debian11ubuntu6), lsb-security (>= 4.1+Debian11ubuntu6), time Filename: pool/main/l/lsb/lsb-core_4.1+Debian11ubuntu6_i386.deb Size: 26260 MD5sum: 6849e31d289e6c227fd4f27ba02a5114 SHA1: c31cb7063d3e30cd4ea7227e5b2638fcda0d5621 SHA256: f80a18f60cf4b7bc9de9479768f8cec7554d5a86a8a821a835efd1e107b1cf60 Description: Linux Standard Base 4.1 core support package Multi-Arch: foreign Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 0ca1434442640c4286051139fba3ca97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-cxx Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: i386 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-cxx-ia32, lsb-cxx-noarch Depends: lsb-core (>= 4.1+Debian11ubuntu6), libstdc++6 Filename: pool/main/l/lsb/lsb-cxx_4.1+Debian11ubuntu6_i386.deb Size: 2812 MD5sum: b50f698a767f66e55f2a9d2bff037f8e SHA1: c9030f01ad5b39a9b40002c56e83a139f03695fa SHA256: e241842b16b597ee04f8e85db81ed752c0f699d90b2b541315ebdde38d3b9fdb Description: Linux Standard Base 4.1 C++ support package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 21e560a494c5b941fceb1817bb03016e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-desktop Priority: extra Section: misc Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: i386 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-desktop-ia32, lsb-desktop-noarch, lsb-qt4, lsb-qt4-ia32, lsb-qt4-noarch Depends: lsb-graphics (>= 4.1+Debian11ubuntu6), lsb-multimedia (>= 4.1+Debian11ubuntu6), fontconfig (>= 2.6.0), libfontconfig1 (>= 2.6.0), libpng12-0, libjpeg62, libglib2.0-0 (>= 2.12.13), libatk1.0-0 (>= 1.10.3), libpango1.0-0 (>= 1.10.4), libgtk2.0-0 (>= 2.10.14), libcairo2 (>= 1.2.0), libqtcore4, libqtgui4, libqt4-xml, libqt4-opengl, libqt4-sql, libqt4-svg, libqt4-network, libqt4-sql-sqlite, libxml2, libfreetype6, libxrender1, libxtst6, libxft2, xdg-utils, libnss3 Recommends: libqt3-mt (>= 3:3.3.6) Filename: pool/main/l/lsb/lsb-desktop_4.1+Debian11ubuntu6_i386.deb Size: 3952 MD5sum: a317d9dff867ccf07d933b74417a6015 SHA1: 7e247eb3167361a1531d6354cf2380522931f17c SHA256: 76fbc1e065e9c74c69ae087fb35cbb42250a93ad4dae3955983c977074d8fa92 Description: Linux Standard Base 4.1 Desktop support package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: a4a23adc078b3a89d519fea8b4992f57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-graphics Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: i386 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-graphics-ia32, lsb-graphics-noarch Depends: lsb-core (>= 4.1+Debian11ubuntu6), libgl1-mesa-glx | libgl1, libglu1-mesa | libglu1, libx11-6 | xlibs Filename: pool/main/l/lsb/lsb-graphics_4.1+Debian11ubuntu6_i386.deb Size: 2832 MD5sum: 74b823f2e8a9aab201a37eeba08a1f37 SHA1: b68ec756aa1dc8e4c653931bc1b93178992987c4 SHA256: 356edf580ea13059073b456d07fb7323bbfbb1027e5e5bd8dd7dbe9e9d7daca9 Description: Linux Standard Base 4.1 graphics support package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: c99be14e0609819f14571d6536c483c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-invalid-mta Priority: extra Section: misc Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: all Source: lsb Version: 4.1+Debian11ubuntu6 Provides: mail-transport-agent Suggests: lsb Conflicts: mail-transport-agent Filename: pool/main/l/lsb/lsb-invalid-mta_4.1+Debian11ubuntu6_all.deb Size: 5106 MD5sum: baa86567f64aed9518b3f6256c12df84 SHA1: b130e541d9e758814df1160c97ec5b29e6a0ea24 SHA256: e0ccdbd34ab6a5e57e038b38cb15cfb96b6c89ba7e82b71cd9bb7c75b5bc5899 Description: Linux Standard Base sendmail dummy Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 33de1113b88f03d989868cbc67ba462c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-languages Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: i386 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-languages-ia32, lsb-languages-noarch Depends: lsb-core (>= 4.1+Debian11ubuntu6), python (>= 2.4), perl (>= 5.8.8), perl (<< 6), libpod-plainer-perl Filename: pool/main/l/lsb/lsb-languages_4.1+Debian11ubuntu6_i386.deb Size: 2840 MD5sum: 85b9a0b7a1239aad346abff1159c4972 SHA1: 80fcb7d6ecdf6e445f87ca8419bd4a600d40f425 SHA256: 96296efbf70f7c21ac2713493ebf38cd5942f116d1adc06038f6cc5515027e90 Description: Linux Standard Base 4.1 Runtime Languages package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 044651bb4028f994ed0ce8271f3507f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-multimedia Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: i386 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-multimedia-ia32, lsb-multimedia-noarch Depends: lsb-core (>= 4.1+Debian11ubuntu6), libasound2 Filename: pool/main/l/lsb/lsb-multimedia_4.1+Debian11ubuntu6_i386.deb Size: 2812 MD5sum: 333b01d6a5396e6d9dd186f7f740d0f7 SHA1: c9431fc3f62d627e37e4845054929ea595d20689 SHA256: 17bfbe0c7b8abd2f9e5099e3b3a595394120dbdaeeca37c4caa2703b81f5c68b Description: Linux Standard Base 4.1 Multimedia package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 113d28be1f55f13e02991990aaeb2c55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-printing Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: i386 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-printing-ia32, lsb-printing-noarch Depends: lsb-core (>= 4.1+Debian11ubuntu6), libcups2, libcupsimage2, foomatic-filters, ghostscript, cups-filters (>= 1.0.36) | ghostscript-cups Filename: pool/main/l/lsb/lsb-printing_4.1+Debian11ubuntu6_i386.deb Size: 2844 MD5sum: 8ab5203d9093a48d2bc93bfbe635f2c0 SHA1: 66ae7ff487157e28daa0cbef74304e633051dc32 SHA256: 8ef745d12d2d6552c1f4547622b50e5bde083af9959f8baf329889a3dfaa2106 Description: Linux Standard Base 4.1 Printing package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: f754b65e189013cff8916aed10432001 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lsb-release Priority: important Section: misc Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: all Source: lsb Version: 4.1+Debian11ubuntu6 Depends: python3, python3:any (>= 3.3.2-2~) Recommends: apt Suggests: lsb Filename: pool/main/l/lsb/lsb-release_4.1+Debian11ubuntu6_all.deb Size: 11410 MD5sum: e73c2ed0114136235576863345d9eb9e SHA1: dbacfa7d6aa386f17c66a823d4b4c5f00e1ff599 SHA256: d01171ab22e659be45cfa078d130c02cf7157b0a1e47fb2570507e7de630594c Description: Linux Standard Base version reporting utility Multi-Arch: foreign Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: 65ec3e346c054b77b914b6a1d4e5fb15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: lsb-security Priority: extra Section: misc Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian LSB Team Architecture: i386 Source: lsb Version: 4.1+Debian11ubuntu6 Provides: lsb-security-ia32, lsb-security-noarch Depends: libnss3, libnspr4 Recommends: lsb-core (>= 4.1+Debian11ubuntu6) Filename: pool/main/l/lsb/lsb-security_4.1+Debian11ubuntu6_i386.deb Size: 4752 MD5sum: caa5996dbc103d4ae74169f254845305 SHA1: 0d0f31a52656d72f6ea04a18ceb4f0d9e9750cc2 SHA256: fd2163c6ce07d21f58033ec7b102de7dab4aba210b68f92aadf3ffbe1d583863 Description: Linux Standard Base 4.1 Security package Homepage: http://www.linuxfoundation.org/collaborate/workgroups/lsb Description-md5: eddd2601035e68421572ea29929958fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lshw Priority: standard Section: utils Installed-Size: 794 Maintainer: Ubuntu Developers Original-Maintainer: Ghe Rivero Architecture: i386 Version: 02.16-2ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Recommends: pciutils, usbutils Filename: pool/main/l/lshw/lshw_02.16-2ubuntu1_i386.deb Size: 244772 MD5sum: b92bcbaf1daecb6f8f15a65227e0c04c SHA1: f5e0f0461dd67508a6b616f19a5bdb45bf6b3dc8 SHA256: fc63e3a5dbba67506eee7b2a166c1f212daf4aef2cb552695eeba3f84fda2e7a Description: information about hardware configuration Description-md5: 5bbbb48f52cc6707ed44dbb6942d387b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: lsof Priority: standard Section: utils Installed-Size: 455 Maintainer: Ubuntu Developers Original-Maintainer: Norbert Tretkowski Architecture: i386 Version: 4.86+dfsg-1ubuntu2 Depends: libc6 (>= 2.11) Filename: pool/main/l/lsof/lsof_4.86+dfsg-1ubuntu2_i386.deb Size: 249936 MD5sum: 06a9bf7f9d2505004a795b6356258111 SHA1: 6a5c70e05d1b4f8295e997ef4b78624a910e3fb1 SHA256: 4413847eef33999e0dbe9e57674f0a84f177a001213d6b34e00cdc8352d58154 Description: Utility to list open files Homepage: http://people.freebsd.org/~abe/ Description-md5: 260a171702acdb4e7341e348f1538be4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: lsscsi Priority: optional Section: admin Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Matt Taggart Architecture: i386 Version: 0.27-2 Depends: libc6 (>= 2.4) Filename: pool/main/l/lsscsi/lsscsi_0.27-2_i386.deb Size: 35524 MD5sum: 41d92ce135d26cdbb598068e42981b67 SHA1: dc60d8c4da002456dc7e95dd1fe10544619a15f7 SHA256: 7ec357021c1d1aa110bd9cc0a3fb42b1f229559237d15b42ff7c5e98862aa7ff Description: list all SCSI devices (or hosts) currently on system Homepage: http://sg.danny.cz/scsi/lsscsi.html Description-md5: bd9af78e01cda1b77847bb06d8309439 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltrace Priority: standard Section: utils Installed-Size: 350 Maintainer: Ubuntu Developers Original-Maintainer: Juan Cespedes Architecture: i386 Version: 0.7.3-4ubuntu5 Depends: libc6 (>= 2.7), libelf1 (>= 0.131), libselinux1 (>= 1.32) Filename: pool/main/l/ltrace/ltrace_0.7.3-4ubuntu5_i386.deb Size: 117848 MD5sum: c755483edb6a06f95aa88094cb256b5a SHA1: b4b721f147025cef4786842ebdd0fccb41e029b0 SHA256: 8f5b0917a4a3d9386d70311016087e6bfca282d87ce427a9872078cdd3bc77ba Description: Tracks runtime library calls in dynamically linked programs Description-md5: ff2cc28bbc4f3ce119d059af641ea073 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: ltsp-client Priority: optional Section: misc Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: i386 Source: ltsp Version: 5.5.1-1ubuntu2 Depends: dbus, dmz-cursor-theme, language-pack-en, libgl1-mesa-dri, plymouth-theme-ubuntu-logo, plymouth-theme-ubuntu-text, wget, alsa-utils, cron, cups-bsd, freerdp-x11 | rdesktop, inputattach | joystick (<< 20051019-6), ldm, libasound2-plugins, ltsp-client-core, ltspfsd (>= 1.1), netcat-traditional | netcat, ntpdate, numlockx, pulseaudio, python-serial, rsyslog | system-log-daemon, sane-utils, sshfs, x11-xserver-utils, xorg Recommends: fonts-dejavu-core | ttf-dejavu-core, fonts-freefont-ttf | ttf-freefont, fonts-kacst-one, fonts-khmeros-core, fonts-lao, fonts-liberation, fonts-nanum, fonts-takao-pgothic, fonts-thai-tlwg | ttf-thai-tlwg, ttf-indic-fonts-core, ttf-punjabi-fonts, ttf-ubuntu-font-family, ttf-wqy-microhei Suggests: zram-config Filename: pool/main/l/ltsp/ltsp-client_5.5.1-1ubuntu2_i386.deb Size: 2532 MD5sum: cf54eadb9abb017839d6899ec08b8f1f SHA1: 510ab67ae2c1abec401f08da8288709f4181a4a8 SHA256: 4e7d3dd0ecdaf3d38338b25a01a2a42cd6138e9058034c66c55e2a3ca2b4ad8f Description: complete LTSP client environment Homepage: http://ltsp.org Description-md5: 0797c03a2accc355031276c10753cce0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltsp-client-core Priority: extra Section: misc Installed-Size: 513 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: i386 Source: ltsp Version: 5.5.1-1ubuntu2 Replaces: ltsp-server (<< 5.3.7) Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.7), libpopt0 (>= 1.14), busybox-static, udhcpc, usbutils, console-setup, initramfs-tools (>= 0.99), iproute, kbd | console-tools, lsb-base, lsb-release, nbd-client (>= 1:2.9.25-2), python, syslinux, tftp-hpa Recommends: procps, pciutils, dnsutils | knot-dnsutils Suggests: alsa-utils, cron, cryptsetup, cups-bsd, freerdp-x11 | rdesktop, inputattach | joystick (<< 20051019-6), ldm, libasound2-plugins, ltspfsd (>= 1.1), netcat-traditional | netcat, ntpdate, numlockx, pulseaudio, python-serial, rsyslog | system-log-daemon, sane-utils, sdm-terminal | x-display-manager, sshfs, x11-xserver-utils Breaks: ltsp-server (<< 5.3.7) Filename: pool/main/l/ltsp/ltsp-client-core_5.5.1-1ubuntu2_i386.deb Size: 83930 MD5sum: 98c860fee8792f3349697bfb536c5b5d SHA1: 2e83d1cdc916ce9c620c8ebb13590686f5f93275 SHA256: fe90b9e2ee88ef77e14abb649229ece716731250fcb013cc0bb55d172245dea6 Description: basic LTSP client environment Homepage: http://ltsp.org Description-md5: 21cd4e1b3dd672b557aaf4b926808f1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltsp-docs Priority: extra Section: doc Installed-Size: 790 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian/Ubuntu Maintainers Architecture: all Version: 1.1-1 Suggests: ltsp-server, ltsp-client Filename: pool/main/l/ltsp-docs/ltsp-docs_1.1-1_all.deb Size: 401262 MD5sum: b7e657c36565f828336ceedc15a89bd7 SHA1: 1783d4125a499a3ccfc890d5195937a3b66b99bf SHA256: dc381e9957174e55caadbf24569235155ff2bf895499e1f21630698d59394824 Description: LTSP Documentation Homepage: http://ltsp.org Description-md5: 06daf8e1e17016b8a8b7b2f23d20a678 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltsp-server Priority: optional Section: misc Installed-Size: 1200 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: all Source: ltsp Version: 5.5.1-1ubuntu2 Replaces: ltsp-utils Depends: debconf (>= 0.5) | debconf-2.0, debconf-utils, debootstrap (>= 1.0.30), gettext-base, iproute | freebsd-net-tools, lsb-release, openssh-client, python (>= 2.4), tcpd Recommends: nbd-server (>= 1:2.9.25-2), openbsd-inetd | inet-superserver, openssh-server, squashfs-tools, tftpd-hpa | atftpd | dnsmasq (>= 2.41) Suggests: audiooss, gnome-session | x-session-manager | x-window-manager, isc-dhcp-server | dhcp3-server | dnsmasq, ldm-server, libasound2-plugins, ltsp-docs, ltspfs, pulseaudio, qemu-user-static, sdm, x11-utils, xauth Conflicts: ltsp-utils Filename: pool/main/l/ltsp/ltsp-server_5.5.1-1ubuntu2_all.deb Size: 76166 MD5sum: 2c576672919270363ffcc233ec0ab2c6 SHA1: 90b3c05f11ebb14d513f67d1f122ba3bd060aeb3 SHA256: 6d1b1858a93b1a46cfa74f6242e1f735b7f910e57d5e15b93ab6f53c827bb2d4 Description: basic LTSP server environment Homepage: http://ltsp.org Description-md5: 8aa681f078049435e41b11312b34ff78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltsp-server-standalone Priority: optional Section: misc Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: LTSP Debian Maintainers Architecture: all Source: ltsp Version: 5.5.1-1ubuntu2 Depends: gnome-session | x-session-manager | x-window-manager, isc-dhcp-server | dhcp3-server | dnsmasq, ldm-server, libasound2-plugins, ltspfs, ltsp-server, nbd-server (>= 1:2.9.25-2), openbsd-inetd | inet-superserver, openssh-server, squashfs-tools, tftpd-hpa | atftpd | dnsmasq (>= 2.41), x11-utils, xauth Recommends: ltsp-docs Filename: pool/main/l/ltsp/ltsp-server-standalone_5.5.1-1ubuntu2_all.deb Size: 2640 MD5sum: f050eb9c3cbb5ffa16cc9d42e094f790 SHA1: 9e64dfcd8ff5d07f9a24674856a1e51e347a6b76 SHA256: fc318a494c25da669bc92f9b90eb276d365b0389ed72c87e99649830eec744d3 Description: complete LTSP server environment Homepage: http://ltsp.org Description-md5: f17be0df737761189d469491fbbdd9dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltspfs Priority: optional Section: misc Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian LTSP Maintainers Architecture: i386 Version: 1.3-1 Depends: libc6 (>= 2.15), libfuse2 (>= 2.8.1), libx11-6, python (>= 2.4), fuse Filename: pool/main/l/ltspfs/ltspfs_1.3-1_i386.deb Size: 17472 MD5sum: 6fd0dfd33d9dc92825b0452bb3b7a48d SHA1: d71c4076eaf8bcd6b5e75911d40cce6782bca8bb SHA256: bc330916ba49bfeb097a813f0d9af5a8aab5c467df6643e6dc4b9fc16d848fb6 Description: Fuse based remote filesystem for LTSP thin clients Description-md5: eb1db72c35a45038c0099ccae6f1a89d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltspfsd Priority: optional Section: misc Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian LTSP Maintainers Architecture: all Source: ltspfs Version: 1.3-1 Replaces: ldm (<= 2:0.1~bzr20071217-1) Depends: python (>= 2.4), ltspfsd-core Recommends: ldm Breaks: ldm (<= 2:0.1~bzr20071217-1), ltsp-client (<< 5.3) Filename: pool/main/l/ltspfs/ltspfsd_1.3-1_all.deb Size: 3610 MD5sum: 7fa7d9869114609968cac903521e27a5 SHA1: 2a513e175934b2f10a998382f3b81def79e3f82d SHA256: dde1234865d77a04751796577c899522271e86a1af0aa990704a4cfd1bc0209b Description: Fuse based remote filesystem hooks for LTSP thin clients Description-md5: 576700e58a1376fcc5f55306e06f103b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ltspfsd-core Priority: optional Section: net Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian LTSP Maintainers Architecture: i386 Source: ltspfs Version: 1.3-1 Replaces: ltspfsd (<= 0.5.11-1) Depends: libc6 (>= 2.15), python (>= 2.4), lsof, procps Breaks: ltspfsd (<= 0.5.11-1) Filename: pool/main/l/ltspfs/ltspfsd-core_1.3-1_i386.deb Size: 16500 MD5sum: bf9185889ebafdf06eb7ec41478cf1eb SHA1: f4056747ab0ff72ebb8607a9e1cf029501b19bb2 SHA256: 2989c3a42ad1f87aeb6a717b483e6f140c20a0f1cf3edbb639edc59ebb971703 Description: Fuse based remote filesystem daemon for LTSP thin clients Description-md5: dd834a9677cca07bbebb76b7c8037baf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lua5.1-doc Priority: optional Section: doc Installed-Size: 390 Maintainer: Ubuntu Developers Original-Maintainer: John V. Belmonte Architecture: all Source: lua5.1 Version: 5.1.5-5 Filename: pool/main/l/lua5.1/lua5.1-doc_5.1.5-5_all.deb Size: 100490 MD5sum: 5bee5395dcd3124e3fa33f1fe33f51f9 SHA1: 41a6ffd04bff64df1c4a4b0a03d4306859fb75b0 SHA256: ff5838cacd9dd1979abce59de77e573fc519b4955c64dadfcadb00176a81cc17 Description: Documentation for the Lua language version 5.1 Homepage: http://www.lua.org Description-md5: b77cd91c50d3e390c2f3bf168f592cab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lua5.2 Priority: optional Section: interpreters Installed-Size: 349 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Tassi Architecture: i386 Version: 5.2.3-1 Provides: lua Depends: libc6 (>= 2.7), libreadline6 (>= 6.0) Filename: pool/main/l/lua5.2/lua5.2_5.2.3-1_i386.deb Size: 94018 MD5sum: 50e4d4ba5be6c8d9adf15041bfb8f937 SHA1: 346cde660ae0c0684d1b0b9aa44ee0911100826c SHA256: da95858e1942d40f6e634fe6202988ff991990f63842e59b7d25f8951cbbf06b Description: Simple, extensible, embeddable programming language Multi-Arch: foreign Homepage: http://www.lua.org Description-md5: 130003bb49100d21ad1dd4ef09dee02f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lua5.2-doc Priority: optional Section: doc Installed-Size: 373 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Tassi Architecture: all Source: lua5.2 Version: 5.2.3-1 Filename: pool/main/l/lua5.2/lua5.2-doc_5.2.3-1_all.deb Size: 80150 MD5sum: 34571e8a0028a3b8e3b4a34036a3c7ca SHA1: 677a68d3adb9ad3f672686456c3a2d829bce838b SHA256: 826b718138931e676829f27897a198b53f01ae23890a5c35008272f78375102c Description: Documentation for the Lua language version 5.2 Homepage: http://www.lua.org Description-md5: bd6938b8d0d3131c26dfff9ef799d221 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: luatex Priority: optional Section: tex Installed-Size: 9171 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: i386 Version: 0.76.0-3ubuntu1 Replaces: luatex-snapshot Depends: tex-common (>= 4.03), libc6 (>= 2.7), libcairo2 (>= 1.12), libgcc1 (>= 1:4.1.1), libkpathsea6, libpng12-0 (>= 1.2.13-4), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Recommends: texlive-luatex Conflicts: luatex-snapshot, texlive-base-bin (<< 2008) Breaks: context (<< 2013) Filename: pool/main/l/luatex/luatex_0.76.0-3ubuntu1_i386.deb Size: 2645634 MD5sum: 90bebb0e2b5e35e90a46cfeeca1606ed SHA1: 5a17e0fc9d60085e82c383aa1d954af7c5de7208 SHA256: 3f2cded57ac190e29e907fdac4d19eaa164f50d2ab4e1632559077cfe4548b34 Description: next generation TeX engine Homepage: http://www.luatex.org Description-md5: c3439e4db43969ae3fdf48e4ac0a8f00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: lupin-casper Priority: extra Section: misc Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Agostino Russo Architecture: all Source: lupin Version: 0.55 Depends: initramfs-tools (>= 0.40ubuntu11), casper (>= 0.98) Filename: pool/main/l/lupin/lupin-casper_0.55_all.deb Size: 5876 MD5sum: 23ff46ba33315a2e5d4d8fca360e78e3 SHA1: 35bdd1026856acf47e56de81dbd942cd153ce3f5 SHA256: b2f56379ed9c4d7d68311ae7255dcfa020e51d63388763449c8c4a9545f81cf7 Description: Add support for loop-mount installations to casper Description-md5: 788e4fe72890ead4f26e1e29cce0021d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lupin-support Priority: extra Section: misc Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Agostino Russo Architecture: i386 Source: lupin Version: 0.55 Depends: libc6 (>= 2.4), procps, lsb-base (>= 3.0-6), user-setup, grub-common (>= 2.00-5) Breaks: grub-pc (<< 1.99~20101122-1) Filename: pool/main/l/lupin/lupin-support_0.55_i386.deb Size: 13910 MD5sum: 5ee7bc3ef1ebe335f538dc15c255f885 SHA1: 6a45f75384aea2f5652deb343ae8b89876a2ca45 SHA256: 8c36b9b30f982d8fe358ba931e926c99084ec7e0b2374c45db534d27a82d621a Description: Support files for loop-mount installations Description-md5: c45752cdd48323ac6e75a77024671003 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lvm2 Priority: optional Section: admin Installed-Size: 1337 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian LVM Team Architecture: i386 Version: 2.02.98-6ubuntu2 Depends: libc6 (>= 2.4), libdevmapper-event1.02.1 (>= 2:1.02.74), libdevmapper1.02.1 (>= 2:1.02.77), libreadline5 (>= 5.2), libudev1 (>= 183), lsb-base, dmsetup (>> 2:1.02.47), initscripts (>= 2.88dsf-13.3), watershed (>= 2) Suggests: thin-provisioning-tools Breaks: initramfs-tools (<< 0.99) Filename: pool/main/l/lvm2/lvm2_2.02.98-6ubuntu2_i386.deb Size: 471968 MD5sum: cd72accb717e77def321800716f79562 SHA1: 2d50253642091005a5cc20ec359b14526f99bffc SHA256: 54d20d12fae6a50264d04e0cd7fb54a7cb3d742e5e2e352ae86a22cd03d2318d Description: Linux Logical Volume Manager Multi-Arch: foreign Homepage: http://sources.redhat.com/lvm2/ Description-md5: 9df95d102d2b0aad5aff13603ef0cb3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: lxc Priority: optional Section: admin Installed-Size: 683 Maintainer: Ubuntu Developers Architecture: i386 Version: 1.0.3-0ubuntu3 Depends: adduser, apparmor (>= 2.8.95~2430-0ubuntu4), bridge-utils, dnsmasq-base, iptables, liblxc1 (= 1.0.3-0ubuntu3), python3, python3-lxc, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.15) Recommends: lxc-templates (>= 0.8.0~rc1-4ubuntu43) Suggests: btrfs-tools, lvm2, lxctl Filename: pool/main/l/lxc/lxc_1.0.3-0ubuntu3_i386.deb Size: 191286 MD5sum: c895a4c9ea0934ee051550b325a27d35 SHA1: b03278c99c8ac29c35d2be78585fe8b3fc033ba6 SHA256: e14ed000c6c757d532f7b5a47ec8f91cf4c62ae9b191bc3a8db5d55642fd30d5 Description: Linux Containers userspace tools Homepage: http://linuxcontainers.org Description-md5: 4ece0dffd153c29e95ffdb89f8238dfc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lxc-dbg Priority: extra Section: debug Installed-Size: 1179 Maintainer: Ubuntu Developers Architecture: i386 Source: lxc Version: 1.0.3-0ubuntu3 Depends: lxc (= 1.0.3-0ubuntu3), lxc-dev (= 1.0.3-0ubuntu3) Filename: pool/main/l/lxc/lxc-dbg_1.0.3-0ubuntu3_i386.deb Size: 734570 MD5sum: 198d147f7d3e56d67c0f09e73f82e3fd SHA1: 64d50392342bcd3f6b39614de849a917c4a448c6 SHA256: 76fcb18ebaa4d14cccd22b78e393858e1da8ac0ce9f8ac55b366bad8d8d2e257 Description: Linux Containers userspace tools (debug) Homepage: http://linuxcontainers.org Description-md5: 9ec9c23e26368a478bce79545cfbb782 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lxc-dev Priority: optional Section: libdevel Installed-Size: 118 Maintainer: Ubuntu Developers Architecture: i386 Source: lxc Version: 1.0.3-0ubuntu3 Depends: lxc (= 1.0.3-0ubuntu3) Filename: pool/main/l/lxc/lxc-dev_1.0.3-0ubuntu3_i386.deb Size: 10224 MD5sum: ec2926bb4a20726892f9a69d68a9526b SHA1: 654a41107b05f7d9f9e86e0a26a2b8ddd093c6c3 SHA256: 1b78edb6749cf9433a29d33d685c57701cfffd1ca14ef496dcc1df7b2bc7c768 Description: Linux Containers userspace tools (development) Homepage: http://linuxcontainers.org Description-md5: c719178b7e79ce1ed39519707c589961 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lxc-templates Priority: optional Section: admin Installed-Size: 371 Maintainer: Ubuntu Developers Architecture: i386 Source: lxc Version: 1.0.3-0ubuntu3 Replaces: lxc (<< 0.8.0~rc1-4ubuntu43) Depends: lxc (>= 0.8.0~rc1-4ubuntu43) Recommends: busybox-static, cloud-image-utils | cloud-utils, debootstrap | cdebootstrap, openssl, rsync, uuid-runtime, xz-utils Suggests: qemu-user-static Breaks: lxc (<< 0.8.0~rc1-4ubuntu43) Filename: pool/main/l/lxc/lxc-templates_1.0.3-0ubuntu3_i386.deb Size: 61176 MD5sum: f3197ee6950a094a838e3fb94dec7e20 SHA1: 6fabbbce6f9d1f8dcefadeeea16dc85d841fa8b4 SHA256: a906623c2b6a46921d73b88beaf641af76547558fe0a3fa80771a389fae63ff8 Description: Linux Containers userspace tools (templates) Homepage: http://linuxcontainers.org Description-md5: 9a526ab1c6ccc435c574f17de9485e7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lxc-tests Priority: optional Section: admin Installed-Size: 262 Maintainer: Ubuntu Developers Architecture: i386 Source: lxc Version: 1.0.3-0ubuntu3 Depends: liblxc1 (= 1.0.3-0ubuntu3), libc6 (>= 2.7) Recommends: lxc, lxc-templates Filename: pool/main/l/lxc/lxc-tests_1.0.3-0ubuntu3_i386.deb Size: 34356 MD5sum: d1d2a92f14b7a29c2c2c12b74e33bd13 SHA1: c29897cb88c2b905eea469f56ffb628fb0630489 SHA256: 7857c374c00a662ada3fc8e5d4fb4b94bc7ce3e55453b76ceb9a958512076f79 Description: Linux Containers userspace tools (test binaries) Homepage: http://linuxcontainers.org Description-md5: e4d2ce5721db0a82880b66fbd90c06d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lynx Priority: extra Section: web Installed-Size: 42 Maintainer: Ubuntu Developers Original-Maintainer: Atsuhito KOHDA Architecture: all Source: lynx-cur Version: 2.8.8pre4-1 Depends: lynx-cur (>= 2.8.8pre4-1) Filename: pool/main/l/lynx-cur/lynx_2.8.8pre4-1_all.deb Size: 4184 MD5sum: 4a6f06434ecc9ae8d2545447b44d749e SHA1: 6c880a88bdb14cb73c8542121d18f4987af59833 SHA256: e2b1581ddfdc22667651520622bc3d7adf0c90f71557703db161b63773f186c0 Description: Text-mode WWW Browser (transitional package) Multi-Arch: foreign Homepage: http://lynx.isc.org/ Description-md5: 97e502859f1b830fc1dd337e582aed20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lynx-cur Priority: extra Section: web Installed-Size: 2388 Maintainer: Ubuntu Developers Original-Maintainer: Atsuhito KOHDA Architecture: i386 Version: 2.8.8pre4-1 Provides: news-reader, www-browser Depends: libbsd0 (>= 0.0), libbz2-1.0, libc6 (>= 2.15), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), libidn11 (>= 1.13), libncursesw5 (>= 5.6+20070908), libtinfo5, zlib1g (>= 1:1.2.3.3) Recommends: mime-support Conflicts: lynx (<< 2.8.7dev9-1.1), lynx-cur-wrapper (<< 2.8.8dev.8-2), lynx-ssl Filename: pool/main/l/lynx-cur/lynx-cur_2.8.8pre4-1_i386.deb Size: 923254 MD5sum: 384980fe998b96c4871a0f52d0f36c59 SHA1: 4cb20e04a598d9059061dfeedd0daea0415e857f SHA256: c89a3fba1b9606ff88716103dc87c0739ac1ca7269e8dd6d8c4372c220e12356 Description: Text-mode WWW Browser with NLS support (development version) Multi-Arch: foreign Homepage: http://lynx.isc.org/ Description-md5: 81ee4f1d0736a86ce9280e724bd4a457 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: lzma Priority: optional Section: utils Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Mohammed Adnène Trojette Architecture: i386 Version: 9.22-2ubuntu2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Conflicts: xz-lzma (<< 5.1.1alpha+20110809-2) Filename: pool/main/l/lzma/lzma_9.22-2ubuntu2_i386.deb Size: 53624 MD5sum: baf176492611f7554e4ba132824ebfed SHA1: 70092a1a43f86e0d646f2da19ea0bb2c10fb864f SHA256: 8d6d571ffafa6f0b9ac19f68eba9191ecdbb0ab233928e78d14c13fa3832358f Description: Compression and decompression in the LZMA format - command line utility Homepage: http://www.7-zip.org/sdk.html Description-md5: 58408f7f3feb10af77dc1ba3f87866f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: lzma-dev Priority: optional Section: utils Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Mohammed Adnène Trojette Architecture: all Source: lzma Version: 9.22-2ubuntu2 Depends: zlib1g-dev Filename: pool/main/l/lzma/lzma-dev_9.22-2ubuntu2_all.deb Size: 45812 MD5sum: df94e4225e8e842f0339c2d2129f80c1 SHA1: ab491523469c2dbaa443c281fb63404d5685220e SHA256: 6b87fd988afe62878b870c890ebc27bda6ea34baf668f0c06da0fe01ab452d2e Description: Compression and decompression in the LZMA format - development files Homepage: http://www.7-zip.org/sdk.html Description-md5: 0cacacbe0a6e0e30dbb94b19810be100 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: m17n-contrib Priority: optional Section: text Installed-Size: 1460 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: all Version: 1.1.14-1 Depends: m17n-db (>= 1.6.3) Recommends: libm17n-0 (>= 1.6.3) Suggests: gawk Filename: pool/main/m/m17n-contrib/m17n-contrib_1.1.14-1_all.deb Size: 517040 MD5sum: f0fc871bf1f1221ff13948062b1d1848 SHA1: 10f722acc07e5f2adfa30136e3340230a3bb48f0 SHA256: 592fbbbe0912905c54fd587c7cb04a042e2bb4e0220989c171143835323376e5 Description: multilingual text processing library - contributed database Homepage: http://www.nongnu.org/m17n/ Description-md5: ae92fba819182986a351b0a69190b6c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: m17n-db Priority: optional Section: text Installed-Size: 6196 Maintainer: Ubuntu Developers Original-Maintainer: Harshula Jayasuriya Architecture: all Version: 1.6.4-1 Recommends: libm17n-0 (>= 1.6.0) Suggests: m17n-docs Filename: pool/main/m/m17n-db/m17n-db_1.6.4-1_all.deb Size: 1806636 MD5sum: b288b642cb5b1df087e3703913985f2e SHA1: 573164b4f65e5a66bf56ac565fb389fcaf4cae2f SHA256: 0021b86fd15837d48659cfec3eadb18af9f22ff66b70f0d9e2deb5c80d7d93b0 Description: multilingual text processing library - database Homepage: http://www.nongnu.org/m17n/ Description-md5: b17731f750110c56be8309f883c73a01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: m4 Priority: optional Section: interpreters Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 1.4.17-2ubuntu1 Depends: libc6 (>= 2.17), libsigsegv2 (>= 2.9) Filename: pool/main/m/m4/m4_1.4.17-2ubuntu1_i386.deb Size: 190962 MD5sum: 1be702cc65664909b28abd6f22312d46 SHA1: bdc5cc34adec7c708ddfd1d2554fa91123c649bb SHA256: 6e63677fa032516e70514600ee8a1a967a6e7a8850017d01efd9d4791416f328 Description: a macro processing language Multi-Arch: foreign Homepage: http://www.gnu.org/software/m4/ Description-md5: c53f50cd9103ee8dc56a20d11403d2e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: m4-doc Priority: optional Section: doc Installed-Size: 889 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: m4 Version: 1.4.17-2ubuntu1 Filename: pool/main/m/m4/m4-doc_1.4.17-2ubuntu1_all.deb Size: 114408 MD5sum: b6164127ac4b31700810e06a7d5f4b74 SHA1: b8260b806c93709bf8c91098baee6d073a133aa3 SHA256: 83650432218db01a62b32e8ca5638bdfa6055a3b116ef90f3184326dd8e32c0e Description: Documentation for GNU m4 Homepage: http://www.gnu.org/software/m4/ Description-md5: c65b9e60b484fec633829ba1356453bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: maas Priority: optional Section: net Installed-Size: 39 Maintainer: Ubuntu Developers Architecture: all Version: 1.5+bzr2252-0ubuntu1 Depends: maas-cluster-controller, maas-region-controller, python-django-maas Filename: pool/main/m/maas/maas_1.5+bzr2252-0ubuntu1_all.deb Size: 2066 MD5sum: a90645ba3387ef299785ab83e124ba6f SHA1: 69d9c01a057b74e4f5a00331b90d23f19ec05908 SHA256: a51309f63768622d6e4672db58d2b5cf40c008449fcd9db10a55dc9c7cf2671e Description: MAAS server all-in-one metapackage Homepage: https://launchpad.net/maas Description-md5: 1922f0f9d84c3e0bab6f546b4f725d83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-cli Priority: optional Section: net Installed-Size: 103 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas-region-controller-min (<= 1.5+bzr1909-0ubuntu1) Depends: python-bzrlib, python-httplib2, python-maas-client (= 1.5+bzr2252-0ubuntu1), python-oauth, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Conflicts: maas-region-controller-min (<= 1.5+bzr1909-0ubuntu1) Filename: pool/main/m/maas/maas-cli_1.5+bzr2252-0ubuntu1_all.deb Size: 12742 MD5sum: 253b0a4c3c4844ee93f7fd47312c0e17 SHA1: 93bc6ec2c1eb0e6d285d4edde3ba906904b174d6 SHA256: 08c0a83387a53b7a6e1904b09970aff0e09df9472f96935debc807996b4366b5 Description: MAAS command line API tool Homepage: https://launchpad.net/maas Description-md5: ebc1160ae41a1453afa9908053862569 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-cluster-controller Priority: optional Section: net Installed-Size: 193 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas (<= 0.1+bzr1048+dfsg-0ubuntu1), maas-region-controller (<= 0.1+bzr1314+dfsg-0ubuntu1) Depends: apache2, authbind, bind9utils, distro-info, freeipmi-tools, maas-cli (= 1.5+bzr2252-0ubuntu1), maas-common (= 1.5+bzr2252-0ubuntu1), maas-dhcp (= 1.5+bzr2252-0ubuntu1), python-amqp, python-celery, python-httplib2, python-lockfile, python-maas-provisioningserver (= 1.5+bzr2252-0ubuntu1), python-netaddr, python-oauth, python-seamicroclient, python-tempita, python-twisted, python-zope.interface, rsyslog, syslinux-common, tgt, ubuntu-cloudimage-keyring, uuid-runtime, wget, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any Suggests: ipmitool, libvirt-bin, amtterm Conflicts: python-librabbitmq, tftpd-hpa Breaks: maas (<= 0.1+bzr1048+dfsg-0ubuntu1), maas-region-controller (<= 0.1+bzr1314+dfsg-0ubuntu1) Filename: pool/main/m/maas/maas-cluster-controller_1.5+bzr2252-0ubuntu1_all.deb Size: 15810 MD5sum: fc9d271538a141f5932b207d5883a29d SHA1: 4f2ad896bc7a6c0c69578e905568eab416915c1d SHA256: e1ec242d291e15cc5cde05ef15686b2f0e33634de8db79f1005d389bec94ea2f Description: MAAS server cluster controller Homepage: https://launchpad.net/maas Description-md5: 60eb924ed1db3312321742ae345a643d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-common Priority: optional Section: net Installed-Size: 45 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas (<= 0.1+bzr1048+dfsg-0ubuntu1) Breaks: maas (<= 0.1+bzr1048+dfsg-0ubuntu1) Filename: pool/main/m/maas/maas-common_1.5+bzr2252-0ubuntu1_all.deb Size: 5816 MD5sum: 6056a015890f9ea392d3feeeb284fa2d SHA1: 82cc22e3024406a546d0f508028776e9b225b26e SHA256: b1b7d65b3a789bb48acde5e94980e8fa44e7b4939d19ea0bedd225686fa4ed01 Description: MAAS server common files Homepage: https://launchpad.net/maas Description-md5: 4c4e26c4508be50f6c8f178d13db015c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-dhcp Priority: optional Section: net Installed-Size: 58 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas-dhcp (<= 0.1+bzr777+dfsg-0ubuntu1) Depends: isc-dhcp-server (>= 4.2.4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Breaks: maas-dhcp (<= 0.1+bzr777+dfsg-0ubuntu1) Filename: pool/main/m/maas/maas-dhcp_1.5+bzr2252-0ubuntu1_all.deb Size: 6074 MD5sum: e651d7069328dd2deca1d6e4ed7cdb22 SHA1: 7cc4b5349f5482744faca434e268d9b62be1e015 SHA256: a95fb892ef34e513f8333c9fdfce7c8a5b54b917aca263101aa1e8c087d1d6e5 Description: MAAS DHCP server Homepage: https://launchpad.net/maas Description-md5: 6803b126a1d51010036936c6202bbee6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-dns Priority: optional Section: net Installed-Size: 52 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas-dhcp (<= 0.1+bzr777+dfsg-0ubuntu1) Depends: bind9, maas-region-controller-min (= 1.5+bzr2252-0ubuntu1), python-iscpy Conflicts: dnsmasq Breaks: maas-dhcp (<= 0.1+bzr777+dfsg-0ubuntu1) Filename: pool/main/m/maas/maas-dns_1.5+bzr2252-0ubuntu1_all.deb Size: 2280 MD5sum: 94275f620a9a01bbfa5e759fe88b6a4b SHA1: d5af1a9838d0e6d68b75f431a18631b28cfb2621 SHA256: 6bc27a117279833abd3d1007a8e234403b0e5fff1b8739c1be081e65d470b37e Description: MAAS DNS server Homepage: https://launchpad.net/maas Description-md5: 6a07a239b106d73492d29ace75e11dd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-enlist Priority: extra Section: admin Installed-Size: 55 Maintainer: Andres Rodriguez Architecture: i386 Version: 0.4+bzr38-0ubuntu1 Depends: libavahi-common3 (>= 0.6.16), libavahi-core7 (>= 0.6.24), libc6 (>= 2.0), libdebian-installer4 (>= 0.88ubuntu3), curl, archdetect-deb Filename: pool/main/m/maas-enlist/maas-enlist_0.4+bzr38-0ubuntu1_i386.deb Size: 8542 MD5sum: fac0c2e8b91d5a2dd336928893503fd5 SHA1: c20a3d3cc5113fa3b67d51004de287c85b78a68a SHA256: a8d7b7fe92e405b9b131e255ef42c3ba95c509a5c27ea8f3c0b7b4c026765593 Description: MAAS enlistment tool Homepage: http://ubuntu.com Description-md5: 35ef48de687642aef498e7ed6ce4ec72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-region-controller Priority: optional Section: net Installed-Size: 50 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Depends: maas-region-controller-min (= 1.5+bzr2252-0ubuntu1), postgresql (>= 9.1), rabbitmq-server, debconf (>= 0.5) | debconf-2.0 Recommends: openssh-server, maas-dns (= 1.5+bzr2252-0ubuntu1) Filename: pool/main/m/maas/maas-region-controller_1.5+bzr2252-0ubuntu1_all.deb Size: 4678 MD5sum: 070b0b04d6bfcbbd6831a5d19bb04300 SHA1: e847acf38da27addb9c6bc15eded634c39d8ac65 SHA256: cf44ef82aff0e66c954614952b2f3566e74d59ff53a718eb3600ec59f3b75c13 Description: MAAS server complete region controller Homepage: https://launchpad.net/maas Description-md5: c82c1ae1bf8b0eaa2cfa459425a65ede Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: maas-region-controller-min Priority: optional Section: net Installed-Size: 485 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas-region-controller (<= 1.4+bzr1693+dfsg-0ubuntu3) Depends: apache2, bind9utils, dbconfig-common, iproute, libapache2-mod-wsgi, libjs-raphael, libjs-yui3-full, libjs-yui3-min, maas-common (= 1.5+bzr2252-0ubuntu1), pwgen, python-django (>= 1.4), python-django-maas (= 1.5+bzr2252-0ubuntu1), python-django-piston, python-django-south, python-maas-provisioningserver (= 1.5+bzr2252-0ubuntu1), python-djorm-ext-pgarray, rsyslog, squid-deb-proxy, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: maas-region-controller (<= 1.4+bzr1693+dfsg-0ubuntu3) Filename: pool/main/m/maas/maas-region-controller-min_1.5+bzr2252-0ubuntu1_all.deb Size: 89790 MD5sum: 5eb84158b97cbf2cd75c676af2feca0e SHA1: 577930c4b4ecf0c39a722efe79eb571feaa39118 SHA256: c7c38f2b7d60865cdf46d01952883164cad98d81815ecbff185f2866ad34a0f4 Description: MAAS Server minimum region controller Homepage: https://launchpad.net/maas Description-md5: c3a055d47143d461098224bdfc876977 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mahjongg Priority: optional Section: games Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: gnome-mahjongg Version: 1:3.10.2-0ubuntu1 Depends: gnome-mahjongg Filename: pool/main/g/gnome-mahjongg/mahjongg_3.10.2-0ubuntu1_all.deb Size: 13618 MD5sum: 28b32d6553ece09e2a25d677a80822fb SHA1: 200ae08b17d1f472aefe7df8fff312bd87c867ee SHA256: ba7a78035fb0235bd03973e2d6dacfdca2d9ce8717b3674fa126d76f173844f5 Description: classic Eastern tile game for GNOME (transitional package) Homepage: https://live.gnome.org/Mahjongg Description-md5: cecedaefb36d5f7ce0cd9fb4619f0c44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mail-stack-delivery Priority: optional Section: mail Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Dovecot Maintainers Architecture: all Source: dovecot Version: 1:2.2.9-1ubuntu2 Replaces: dovecot-postfix (<< 1:1.2.12-0ubuntu1~) Depends: dovecot-core, dovecot-imapd, dovecot-pop3d, dovecot-managesieved, postfix Filename: pool/main/d/dovecot/mail-stack-delivery_2.2.9-1ubuntu2_all.deb Size: 9556 MD5sum: 6e18c7663dec61210e39bbf2d1f70370 SHA1: 8169b37bbf33eb209a471e3338a2dd3426f9f4a4 SHA256: c8e439405131707ed621d37d40fa9b86a9299dc70384d54326c49d5c3b7f1b37 Description: mail server delivery agent stack provided by Ubuntu server team Homepage: http://dovecot.org/ Description-md5: 66dc59ce6cc06ae2193237ef1f865a88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mailman Priority: optional Section: mail Installed-Size: 35254 Maintainer: Ubuntu Developers Original-Maintainer: Mailman for Debian Architecture: i386 Version: 1:2.1.16-2 Depends: libc6 (>= 2.4), python:any (>= 2.7.1-0ubuntu2), debconf (>= 0.5) | debconf-2.0, logrotate (>= 3.8.0), cron, ucf, lsb-base, apache2 | httpd Pre-Depends: debconf | debconf-2.0 Recommends: default-mta | mail-transport-agent Suggests: spamassassin, lynx, listadmin Filename: pool/main/m/mailman/mailman_2.1.16-2_i386.deb Size: 4277242 MD5sum: df7e526c7d6efb9a7281225cec32a6a2 SHA1: 5523b11281e5f20b900f86498f626cc409d6336e SHA256: f184a24981158dd2a6d2fdb7776850f9c6d284509879e34080c36f77d3afe2a3 Description: Powerful, web-based mailing list manager Homepage: http://www.list.org/ Description-md5: 8d16d632c49d70e6617b41c558e71966 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: make Priority: optional Section: devel Installed-Size: 308 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: i386 Source: make-dfsg Version: 3.81-8.2ubuntu3 Depends: libc6 (>= 2.17) Suggests: make-doc Filename: pool/main/m/make-dfsg/make_3.81-8.2ubuntu3_i386.deb Size: 114706 MD5sum: 4af75eda500caf1f5228399e9951d2c2 SHA1: 0678dd8c946061e6786ea796d9b00a3603af5142 SHA256: 081cf1568ab0a1de9116e2c846f7405f0d678ed5f239451d0eb1025ce06a1ebb Description: An utility for Directing compilation. Multi-Arch: foreign Homepage: http://www.gnu.org/software/make/ Description-md5: d401a320ce4c83de2826e48f1b47679c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: make-doc Priority: optional Section: doc Installed-Size: 1925 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: all Source: make-doc-non-dfsg Version: 3.81-5.1 Replaces: make (<< 3.80+3.81.rc2-1) Depends: dpkg (>= 1.15.4) | install-info Suggests: make Filename: pool/main/m/make-doc-non-dfsg/make-doc_3.81-5.1_all.deb Size: 914406 MD5sum: ede8369abca2b56d7f23bedeacef42bc SHA1: bd5b4e7f20b1ea8ca081b2a40006f00a09f5fe1f SHA256: 91a8911683435f7c7dad4b6d2c7ccd86cfe47b0079ac3cd9c5e71626575d21b2 Description: Documentation for the GNU version of the "make" utility. Enhances: make Description-md5: 6ec17c3075d72b902597318d8f1e82c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: makedev Priority: required Section: admin Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 2.3.1-93ubuntu1 Depends: base-passwd (>= 3.0.4) Conflicts: udev (<= 0.024-7) Filename: pool/main/m/makedev/makedev_2.3.1-93ubuntu1_all.deb Size: 26666 MD5sum: 979d22fe4dece008741c019c2c4784ea SHA1: 1bd76ac552f7572b9ff945e17b06dcb8fc293172 SHA256: b8120a3442ee14db32a4d33a2d0c370809bbf9ee6f2164dd08bc19feddec1293 Description: creates device files in /dev Multi-Arch: foreign Description-md5: 0d90ffc36746b1d25c5b125ef2221357 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: makedumpfile Priority: optional Section: devel Installed-Size: 374 Maintainer: Ubuntu Developers Original-Maintainer: John Wright Architecture: i386 Version: 1.5.5-2ubuntu1 Replaces: kdump-tools (<< 1.3.4-1~) Depends: libc6 (>= 2.7), libdw1 (>= 0.143), libelf1 (>= 0.142), zlib1g (>= 1:1.2.0), perl Recommends: crash, kexec-tools Filename: pool/main/m/makedumpfile/makedumpfile_1.5.5-2ubuntu1_i386.deb Size: 117766 MD5sum: 3b968f0110b5fd551c8284c6c18d239c SHA1: 6a4ec6ecc21f3cee664b900248ecebd6bc44712f SHA256: e7b702a5128595ff9ebea16c13d9d378aea51e54bab9525d2e11abe43fc44997 Description: VMcore extraction tool Description-md5: 63f8d9a2e0d40374bffffdb63689a386 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: malaga-bin Priority: optional Section: misc Installed-Size: 386 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: i386 Source: malaga Version: 7.12-4.1ubuntu1 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.8.0), libmalaga7, libpango-1.0-0 (>= 1.14.0), libreadline6 (>= 6.0) Recommends: malaga-doc, info | info-browser Suggests: malaga-mode Filename: pool/main/m/malaga/malaga-bin_7.12-4.1ubuntu1_i386.deb Size: 141716 MD5sum: c2f7719a55292158c4c057506264fcb2 SHA1: 7d51c42ebd1e84aa9823bfc5d8e11482549cbb21 SHA256: 853bdb66d618435e06a4332ab97e571b2630216d937243559f67055ce2832d32 Description: System for automatic language analysis Description-md5: bb7e4b48fb06c00b7e3e3eee66d269fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: malaga-doc Priority: optional Section: doc Installed-Size: 817 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: all Source: malaga Version: 7.12-4.1ubuntu1 Suggests: malaga-bin, doc-base Filename: pool/main/m/malaga/malaga-doc_7.12-4.1ubuntu1_all.deb Size: 574558 MD5sum: 804af3bf39c2894117c25351eedad160 SHA1: ee716f1f0323f2fa8f10b37afc407834b4989256 SHA256: acdc24f400e227b09ac6483d5b73638bbf21ca036d06f97952b42a06a6279b31 Description: Documentation for an automatic language analysis system Description-md5: 2cba8d0e6bde2b512cf46967189c0d64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: man-db Priority: standard Section: doc Installed-Size: 2020 Maintainer: Colin Watson Architecture: i386 Version: 2.6.7.1-1 Replaces: man, manpages-de (<< 0.5-4), manpages-zh (<< 1.5.2-1.1), nlsutils Provides: man, man-browser Depends: groff-base (>= 1.18.1.1-15), bsdmainutils, debconf (>= 1.2.0) | debconf-2.0, libc6 (>= 2.11), libgdbm3 (>= 1.8.3), libpipeline1 (>= 1.3.0), zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.16.1~) Suggests: groff, less, www-browser Conflicts: man, suidmanager (<< 0.50) Breaks: manpages-zh (<< 1.5.2-1.1) Filename: pool/main/m/man-db/man-db_2.6.7.1-1_i386.deb Size: 850690 MD5sum: 5ca3b7f78465321596168c771fe5c85b SHA1: fe9293372c8fbf51efd770ffb390314f11d93dec SHA256: 04455898937288d9871ea60bd0f13152f9b5c2b8aca8ff09b508595c83f477d0 Description: on-line manual pager Multi-Arch: foreign Homepage: http://man-db.nongnu.org/ Description-md5: 1784ddc55da0897a54ad44c7e0a7f547 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: manpages Priority: standard Section: doc Installed-Size: 909 Maintainer: Ubuntu Developers Original-Maintainer: Martin Schulze Architecture: all Version: 3.54-1ubuntu1 Replaces: bind, libc-bin (<< 2.17-91), rsh-server (<< 0.10-7) Suggests: man-browser Filename: pool/main/m/manpages/manpages_3.54-1ubuntu1_all.deb Size: 627456 MD5sum: 876f55711d7d6425b5c45e8c793c3f00 SHA1: 206705940b67962001eabc2b07fe1d91f3bf6978 SHA256: 661b91b55583401aeb64bf930caac8d170b84bc27c1ecc9e364faadfb1135998 Description: Manual pages about using a GNU/Linux system Homepage: http://www.kernel.org/doc/man-pages/ Description-md5: 3cdba21ee451777db03e5edc1ef4caa3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: manpages-dev Priority: optional Section: doc Installed-Size: 1834 Maintainer: Ubuntu Developers Original-Maintainer: Martin Schulze Architecture: all Source: manpages Version: 3.54-1ubuntu1 Replaces: glibc-doc (<< 2.11.2-3), libaio-dev Depends: manpages Suggests: man-browser Filename: pool/main/m/manpages/manpages-dev_3.54-1ubuntu1_all.deb Size: 1819920 MD5sum: 8b108211126e2798112fbd55292e5690 SHA1: 27a5b7fdccd9dea3af1a7b89c28c5e3e46e1ca5e SHA256: bec2865ffad27b657dccea6dbf65d2950f9149290c77f8fffb86a4af54d935c1 Description: Manual pages about using GNU/Linux for development Homepage: http://www.kernel.org/doc/man-pages/ Description-md5: 8a10ff7bcfd700d46fc7906a26abf372 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: mauve Priority: extra Section: devel Installed-Size: 2775 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 20120103-1 Depends: default-jdk | java-sdk Recommends: libecj-java Filename: pool/main/m/mauve/mauve_20120103-1_all.deb Size: 2663636 MD5sum: 17a3ad17f5a0c8db9c3a9dc811640f71 SHA1: 43c6324c85fe4d8439f10fa4feaaaa9608f87207 SHA256: 56672cfd6e39091bf0473f350c932e822886ac0c193aff078802fd9d79d5e44f Description: free test suite for the Java Class libraries Homepage: http://sourceware.org/mauve/ Description-md5: 94932e83e85845e914d9ff6942f2fa7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: maven-ant-helper Priority: extra Section: devel Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 7.10 Depends: ant, ant-contrib, ant-optional, maven-repo-helper (>= 1.4) Suggests: default-jdk-doc, libmaven-plugin-tools-java, libmaven2-core-java, libmodello-java (>= 1.0), libplexus-component-metadata-java Filename: pool/main/m/maven-ant-helper/maven-ant-helper_7.10_all.deb Size: 13628 MD5sum: 7f7c64d13a32d9f6fc09c369ba114862 SHA1: ecb48a328fa1c50bb4a81b9546a9a35f0e9f8f97 SHA256: a52643d1e0b201bf98e953d2ab76119fde9ff23c24f4f50952c4d0154cb42e52 Description: helper scripts for building Maven components with ant Homepage: http://svn.debian.org/wsvn/pkg-java/trunk/maven-ant-helper Description-md5: f2c490cf8d85b5e86cb5ef4121bb7088 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: maven-repo-helper Priority: optional Section: java Installed-Size: 368 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.8.5 Depends: default-jre-headless | java2-runtime-headless, libstax-java Recommends: debhelper Suggests: maven-debian-helper Breaks: maven-debian-helper (<= 1.6.5) Filename: pool/main/m/maven-repo-helper/maven-repo-helper_1.8.5_all.deb Size: 128068 MD5sum: 921dc6c60605b960400c8fffca7a3c20 SHA1: 8c912b9cc1eb4998d20f200e46a0e180b4f8c5f8 SHA256: 6224e5e9071ed99e42508a1a817a7a57fadf41e462d58bc15bb33fb64c2cd77b Description: Helper tools for including Maven metadata in Debian packages Homepage: http://wiki.debian.org/Java/MavenRepoSpec Description-md5: eb08bec908759f1bd4f918393d802196 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mawk Priority: required Section: utils Installed-Size: 190 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Version: 1.3.3-17ubuntu2 Provides: awk Pre-Depends: libc6 (>= 2.11) Filename: pool/main/m/mawk/mawk_1.3.3-17ubuntu2_i386.deb Size: 75608 MD5sum: e51ad26210fdea717eb83321d87289d0 SHA1: 399d90315cddbf2ac649a6e5b3130f824e02406e SHA256: 00d10a0c13e4a9cf6632df4a394d0326dd5f88e756ca7da374eea29fc849fd26 Description: a pattern scanning and text processing language Multi-Arch: foreign Description-md5: e02f3de1fa8a56e3f324f082c0c2e41f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: mcp-account-manager-uoa Priority: optional Section: gnome Installed-Size: 1013 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: account-plugin-empathy Depends: empathy (= 3.8.6-0ubuntu9), libaccount-plugin-1.0-0 (>= 0.0.2), libaccounts-glib0 (>= 1.4), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.34), libgtk-3-0 (>= 3.0.0), libmission-control-plugins0 (>= 1:5.13.1~), libtelepathy-glib0 (>= 0.19.9), signon-plugin-password, telepathy-mission-control-5 (>= 1:5.13.0-0ubuntu3) Recommends: ubuntu-control-center-signon, account-plugin-aim, account-plugin-jabber, account-plugin-google, account-plugin-facebook, account-plugin-windows-live, account-plugin-yahoo, account-plugin-salut Suggests: account-plugin-gadugadu, account-plugin-groupwise, account-plugin-icq, account-plugin-irc, account-plugin-mxit, account-plugin-myspace, account-plugin-sametime, account-plugin-sip, account-plugin-yahoojp, account-plugin-zephyr Breaks: account-plugin-empathy Filename: pool/main/e/empathy/mcp-account-manager-uoa_3.8.6-0ubuntu9_i386.deb Size: 24606 MD5sum: 951077e05b14f279387f8ab27d9def2d SHA1: d7b50f4fba4259bb3902d46924b3357da5e00dae SHA256: 9973a695bd46788b9df6188613bc7500ad8e2dd6a6c639a7931aaacb816b8e34 Description: GNOME multi-protocol chat and call client (UOA plugin) Homepage: http://wiki.gnome.org/Empathy Description-md5: efd4bd83763226d5b1a23043496faa7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: mdadm Priority: optional Section: admin Installed-Size: 1193 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian mdadm maintainers Architecture: i386 Version: 3.2.5-5ubuntu4 Replaces: mdctl Depends: libc6 (>= 2.15), debconf (>= 1.4.72), lsb-base (>= 3.1-6), udev (>= 136-1), initramfs-tools (>= 0.85eubuntu24), util-linux (>= 2.15-1), initscripts (>= 2.88dsf-13.3) Recommends: default-mta | mail-transport-agent, module-init-tools Breaks: dmraid (<= 1.0.0.rc16-4.2ubuntu1), mdctl (<< 0.7.2), raidtools2 (<< 1.00.3-12.1), udev (<< 136-1) Filename: pool/main/m/mdadm/mdadm_3.2.5-5ubuntu4_i386.deb Size: 361796 MD5sum: 76ca34594bf22e67e1e8fc00ab3d18fc SHA1: af3ea36f62adbf3c335ede337916a5b3f5edc24a SHA256: 8a8e92f08a78b585a96553b4de67eb1cfec618f8a6629e54fd1b9ecfc4b00f47 Description: tool to administer Linux MD arrays (software RAID) Homepage: http://neil.brown.name/blog/mdadm Description-md5: 03a3779a0d242295f3d59f2b8278ca94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mdbtools Priority: optional Section: utils Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: i386 Version: 0.7.1-1ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libmdb2 (>= 0.7~rc1), libmdbsql2 (>= 0.5.99.0.6pre1.0.20051109), libreadline6 (>= 6.0) Suggests: bash-completion, mdbtools-doc Filename: pool/main/m/mdbtools/mdbtools_0.7.1-1ubuntu1_i386.deb Size: 37408 MD5sum: 8fd57c0e0d2cdb97f95c88bbaf4c87d5 SHA1: 4f6fb8fb260229ecffe3c20d8e48166439ddf198 SHA256: 616ae861a521cb62e8146122939df6f510aa465174f7677b6c3611fac5209ba2 Description: JET / MS Access database (MDB) tools Multi-Arch: foreign Homepage: http://mdbtools.sourceforge.net/ Description-md5: 394b15518fd4ecc4667f403c8cd8e38d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mdbtools-dbg Priority: extra Section: debug Installed-Size: 583 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: i386 Source: mdbtools Version: 0.7.1-1ubuntu1 Depends: libmdb2 (= 0.7.1-1ubuntu1), libmdbsql2 (= 0.7.1-1ubuntu1), mdbtools (= 0.7.1-1ubuntu1), mdbtools-gmdb (= 0.7.1-1ubuntu1), odbc-mdbtools (= 0.7.1-1ubuntu1) Filename: pool/main/m/mdbtools/mdbtools-dbg_0.7.1-1ubuntu1_i386.deb Size: 388100 MD5sum: 2859571abcd2de90451f36e6295ba1c1 SHA1: 635495edfec06b6fee7145b80bd165e30c8c6390 SHA256: 30bce2e5899c49d897e9be2f8010aaef8c30e2c994eccb15fd1c739e21638270 Description: Debug symbols for MDB Tools Multi-Arch: same Homepage: http://mdbtools.sourceforge.net/ Description-md5: 6d7127d710018efb1b0f439eb3c55ad4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mdbtools-dev Priority: optional Section: devel Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: i386 Source: mdbtools Version: 0.7.1-1ubuntu1 Depends: libglib2.0-dev, libmdb2 (= 0.7.1-1ubuntu1), libmdbsql2 (= 0.7.1-1ubuntu1), odbc-mdbtools (= 0.7.1-1ubuntu1) Suggests: mdbtools-doc Filename: pool/main/m/mdbtools/mdbtools-dev_0.7.1-1ubuntu1_i386.deb Size: 59420 MD5sum: c5166e0312c129a0f51afd315f0c83fb SHA1: 943cd206424cf26b069f9355f2cbbd9e607187ac SHA256: e7b8b96c80762314943ae1b349da983a4881ec80d5764914863269acaff7cbb2 Description: mdbtools development files Multi-Arch: same Homepage: http://mdbtools.sourceforge.net/ Description-md5: 7c77c836252f81a62b229ae2db41a06c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mdbtools-doc Priority: optional Section: doc Installed-Size: 196 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: all Source: mdbtools Version: 0.7.1-1ubuntu1 Filename: pool/main/m/mdbtools/mdbtools-doc_0.7.1-1ubuntu1_all.deb Size: 52996 MD5sum: 68109ab97e0b7b40fc0b1a721cd6cb1b SHA1: 32b69d4e7e3a2e9a3cd6d3fe58879d944b26fd5d SHA256: 42afa14f9785c6d85bb30d4b5bce2d7c9eb5691823edda5465e12a0fd6ee6a70 Description: Documentation for MDB tools Homepage: http://mdbtools.sourceforge.net/ Description-md5: cb08c33f01d292b43d5c41399d15144e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mdbtools-gmdb Priority: optional Section: gnome Installed-Size: 445 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: i386 Source: mdbtools Version: 0.7.1-1ubuntu1 Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglade2-0 (>= 1:2.6.1), libglib2.0-0 (>= 2.12.0), libgnome2-0 (>= 2.17.3), libgnomeui-0 (>= 2.22.0), libgtk2.0-0 (>= 2.8.0), libmdb2 (>= 0.7.1), libmdbsql2 (>= 0.5.99.0.6pre1.0.20051109), libpango-1.0-0 (>= 1.14.0) Suggests: bash-completion, mdbtools-doc Filename: pool/main/m/mdbtools/mdbtools-gmdb_0.7.1-1ubuntu1_i386.deb Size: 100050 MD5sum: ea8bed44a9270701af9b3504494fd20d SHA1: 3116cdad68048268db16a5461e966fcf5bf76297 SHA256: f8e4310cd2358499a61c39cee4d30f2019bd5b329104c3317d60ecc87ef33cf8 Description: JET / MS Access database (MDB) file viewer Multi-Arch: foreign Homepage: http://mdbtools.sourceforge.net/ Description-md5: dae71ac208fb76a68ff4a37ce1f8fe39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mdetect Priority: optional Section: utils Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: LIU Qi Architecture: i386 Version: 0.5.2.3build2 Depends: libc6 (>= 2.15) Filename: pool/main/m/mdetect/mdetect_0.5.2.3build2_i386.deb Size: 17972 MD5sum: cc293bb1736a55a75a35bcb8e098e922 SHA1: b7ba77801d3941abc8841103b5c8de43b61515a2 SHA256: 0f14eb059dd961a85ac3cdaaaba9c7af2ed7d0091ca36cb4a5a1c91437427a7b Description: mouse device autodetection tool Description-md5: afc175d11efde40a5bc0f530a6de68ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: media-player-info Priority: optional Section: admin Installed-Size: 186 Maintainer: Kubuntu Developers Original-Maintainer: Martin Pitt Architecture: all Version: 21-0ubuntu1 Depends: udev Filename: pool/main/m/media-player-info/media-player-info_21-0ubuntu1_all.deb Size: 31094 MD5sum: 0a0e00df0cc30dc8077420d69cdf7a04 SHA1: 62af0e6ba6dd3a7165cc17bdf6a409dedd321ea0 SHA256: d5997160d907c8aba22650ec7eac4cea6bde5340a21214298b8bcc415cb803c6 Description: Media player identification files Bugs: https://bugs.launchpad.net/ubuntu/+filebug Homepage: http://www.freedesktop.org/software/media-player-info/ Description-md5: 127b94da56c51ffd39740e52530e0db6 Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: memcached Priority: optional Section: web Installed-Size: 227 Maintainer: Ubuntu Developers Original-Maintainer: David Martínez Moreno Architecture: i386 Version: 1.4.14-0ubuntu9 Depends: libc6 (>= 2.17), libevent-2.0-5 (>= 2.0.10-stable), libsasl2-2 (>= 2.1.24), perl, lsb-base (>= 3.2-13), adduser Suggests: libcache-memcached-perl, libmemcached Filename: pool/main/m/memcached/memcached_1.4.14-0ubuntu9_i386.deb Size: 65568 MD5sum: 27216efa4d85f1208367d8d886ed7ecd SHA1: c3a5d8f16d3cea52bec45e304ea789e8c24598c5 SHA256: 7d08f28d4e0f25223495fac89c86ba04e9a4353d64454a8148f64f6b3a5c047f Description: A high-performance memory object caching system Homepage: http://www.danga.com/memcached/ Description-md5: c96e946324d6d6114d0daad2388780d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: memtest86+ Priority: standard Section: misc Installed-Size: 2468 Maintainer: Ubuntu Developers Original-Maintainer: Yann Dirson Architecture: i386 Version: 4.20-1.1ubuntu8 Depends: debconf (>= 0.5) | debconf-2.0 Suggests: hwtools, memtester, kernel-patch-badram, memtest86, grub-pc | grub-legacy, mtools Filename: pool/main/m/memtest86+/memtest86+_4.20-1.1ubuntu8_i386.deb Size: 69994 MD5sum: 55c33be8de7d72c4a9f3994a23d0a8e0 SHA1: c57815c8c1ab97b66ff6fc6dc8db61489647269a SHA256: 5d94e44a25f3c7c2c4614c4ab9c98ebfc0343a3ae831010babcad4679c1dc178 Description: thorough real-mode memory tester Homepage: http://www.memtest.org/ Description-md5: aa685f84801773ef97fdaba8eb26436a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: mesa-common-dev Priority: optional Section: devel Installed-Size: 1750 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libgl1-mesa-dev (<< 7.5~rc4-2), libgl1-mesa-swx11-dev (<< 6.5.2), xlibmesa-gl-dev (<< 1:7), xlibosmesa-dev Depends: libx11-dev, libdrm-dev (>= 2.4.52) Filename: pool/main/m/mesa/mesa-common-dev_10.1.0-4ubuntu5_i386.deb Size: 257368 MD5sum: 668ffae6aa3e264c95f2eb31dd596ed1 SHA1: d7621fa6219c4b3c108426f59d68eaa3891bfac4 SHA256: 583a6ef697ca503f112fb58143f1b31d4dde436b0ad781c096f5844c2fb58de6 Description: Developer documentation for Mesa Homepage: http://mesa3d.sourceforge.net/ Description-md5: 0d9d46ba6861a0a8c404cf51db1e980d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: mesa-common-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: mesa-common-dev Filename: pool/main/x/xorg-lts-transitional/mesa-common-dev-lts-quantal_5_i386.deb Size: 1548 MD5sum: 1007e0a7a0eb0ade1a4de274046025fd SHA1: 46f75ce2685296e218f26a657e339b56cfe3aa94 SHA256: ccdf97886f40b62c52f19ca8c732c4a6bdaeb48083052409c721ae5171561d2f Description: Transitional package for mesa-common-dev Multi-Arch: same Description-md5: 6921b61ca0bc3d186b3e4d035cc29bee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mesa-common-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: mesa-common-dev Filename: pool/main/x/xorg-lts-transitional/mesa-common-dev-lts-raring_5_i386.deb Size: 1544 MD5sum: 2ddca39df64d16bccdacaf7f18ea3a9c SHA1: ef9be44dfbc8c67ec73e44659de15ade340a3a1e SHA256: 34a9cd70efc0546a6e94ec1c160a8cbf469b93ebea39b7d99e5913632ef97671 Description: Transitional package for mesa-common-dev Multi-Arch: same Description-md5: 6921b61ca0bc3d186b3e4d035cc29bee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mesa-common-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: mesa-common-dev Filename: pool/main/x/xorg-lts-transitional/mesa-common-dev-lts-saucy_5_i386.deb Size: 1542 MD5sum: cd75fb0794635204bcabebf970acc989 SHA1: e79bfb5414ef0e61b50f365fdc222b4c30da4968 SHA256: e83136d3ba0ba4df1d071c21be138b5203de34749c8e130e576dff877f4f3100 Description: Transitional package for mesa-common-dev Multi-Arch: same Description-md5: 6921b61ca0bc3d186b3e4d035cc29bee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mesa-vdpau-drivers Priority: optional Section: libs Installed-Size: 2534 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libvdpau1-drivers-mesa Provides: vdpau-driver Depends: libvdpau1, libc6 (>= 2.4), libdrm-nouveau2 (>= 2.4.38), libdrm-radeon1 (>= 2.4.31), libdrm2 (>= 2.4.38), libelf1 (>= 0.142), libgcc1 (>= 1:4.1.1), libgl1-mesa-dri, libllvm3.4, libstdc++6 (>= 4.6), libx11-xcb1, libxcb-dri2-0 (>= 1.8), libxcb1 Pre-Depends: multiarch-support Breaks: libvdpau1-drivers-mesa Filename: pool/main/m/mesa/mesa-vdpau-drivers_10.1.0-4ubuntu5_i386.deb Size: 717042 MD5sum: 64daf11e2bf1142ea5cd8a391d371170 SHA1: b4577967a5b59f6ec0825c3b95b396e0ba53560e SHA256: 86fe1dd4e1904229f1d31cf7f38f67bbf8e8cc429100a3219c254acce5ddacb2 Description: Mesa VDPAU video acceleration drivers Enhances: libvdpau1 Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 19cfba61e1be17ccf30d9c5bb9ec109a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mesa-vdpau-drivers-dbg Priority: extra Section: debug Installed-Size: 15397 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: mesa Version: 10.1.0-4ubuntu5 Replaces: libvdpau1-drivers-mesa-dbg Depends: mesa-vdpau-drivers (= 10.1.0-4ubuntu5) Pre-Depends: multiarch-support Breaks: libvdpau1-drivers-mesa-dbg Filename: pool/main/m/mesa/mesa-vdpau-drivers-dbg_10.1.0-4ubuntu5_i386.deb Size: 3754958 MD5sum: 479aaeebfbbb3719f64a852b5e271953 SHA1: 2000810c749c64eb36e6fd7881aa96de9a19faf1 SHA256: 8bd5cfeb1534545c639972a530e0e19b84390330fc85a0f9cb9f19347550ee0a Description: Debugging symbols for the Mesa VDPAU video acceleration drivers Multi-Arch: same Homepage: http://mesa3d.sourceforge.net/ Description-md5: 22710253a59dea3f45953a46464f9573 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: metacity Priority: optional Section: x11 Installed-Size: 839 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 1:2.34.13-0ubuntu4 Provides: x-window-manager Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libcanberra-gtk0 (>= 0.2), libcanberra0 (>= 0.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libice6 (>= 1:1.0.0), libmetacity-private0a (= 1:2.34.13-0ubuntu4), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libsm6, libstartup-notification0 (>= 0.7), libx11-6 (>= 2:1.4.99.1), libxcomposite1 (>= 1:0.3-1), libxcursor1 (>> 1.1.2), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxinerama1, libxrandr2, libxrender1, metacity-common (= 1:2.34.13-0ubuntu4), gsettings-desktop-schemas (>= 3.3.0), zenity, gnome-icon-theme Recommends: gnome-session | x-session-manager Suggests: gnome-control-center (>= 1:3.4.0), gnome-themes-standard, xdg-user-dirs Filename: pool/main/m/metacity/metacity_2.34.13-0ubuntu4_i386.deb Size: 220490 MD5sum: 3eb8445a20b9e2a10975639f809a4bb2 SHA1: 8dceaf3849fd4c2466ccfaab58b0a3006051f10c SHA256: b504cb1541f4f6fad6cb142b30f6b962aa1f9a54d48a554134e041830f79277d Description: lightweight GTK+ window manager Description-md5: 06e64374861a42f6f96cc5a654ad56b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-desktop-gnome, edubuntu-usb-live Package: metacity-common Priority: optional Section: misc Installed-Size: 1064 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: metacity Version: 1:2.34.13-0ubuntu4 Depends: dconf-gsettings-backend | gsettings-backend, sgml-base (>= 1.26+nmu2) Filename: pool/main/m/metacity/metacity-common_2.34.13-0ubuntu4_all.deb Size: 97294 MD5sum: 9687570633b1ab8fd3aad7fc463332f4 SHA1: 06484e2795c85c8a51762f77a17904b9aa4553ca SHA256: b00874390cc6508d0b14e834c366525a87e0170c16b428fddf932be2d306530c Description: shared files for the Metacity window manager Description-md5: 386fc245b801260f4b7c75b1915cb1ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: mime-construct Priority: optional Section: mail Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Roderick Schertler Architecture: all Version: 1.11 Depends: perl, libmime-base64-perl, libmime-types-perl, libproc-waitstat-perl Filename: pool/main/m/mime-construct/mime-construct_1.11_all.deb Size: 19738 MD5sum: d2c118888eca876d947561763c46fb35 SHA1: c6ad8cf71514c7904887e9574b3fab5e526222f1 SHA256: 5a55c5a7f9eac1cc3acffda97a784261c8488af9510ccc917e4c0244e5c45bc2 Description: construct/send MIME messages from the command line Description-md5: e07442bc1343c7ea762a25120a1d5920 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mime-support Priority: important Section: net Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Mime-Support Maintainers Architecture: all Version: 3.54ubuntu1 Recommends: file Filename: pool/main/m/mime-support/mime-support_3.54ubuntu1_all.deb Size: 31656 MD5sum: d7c05a64b14e7cce0b1e1e420122a4d0 SHA1: ab4e1d606026fdc2f14650a2483afbfbbe24d712 SHA256: de742c5ef09696726016954d72c946f1138d065e2d5209144670ac8ba606edd8 Description: MIME files 'mime.types' & 'mailcap', and support programs Multi-Arch: foreign Description-md5: 6a960d88790635886bd17b629c708b8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: mir-doc Priority: optional Section: doc Installed-Size: 98503 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: all Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Depends: libmirclient-dev, libmirserver-dev Filename: pool/main/m/mir/mir-doc_0.1.8+14.04.20140411-0ubuntu1_all.deb Size: 51113652 MD5sum: 5e01e53e27a2a8d16a86284bb071c0e7 SHA1: e5bdc4433c7ca9a00a66c37b8299b6129cbdc81f SHA256: ae1c284b32c650676d17d814dc6159b63eb33c741df6fc6aa89e57db6aa65989 Description: API documentation for mir Homepage: https://launchpad.net/mir Description-md5: 628500f58a32ea2c0fc1cb782e6f260f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mircommon-dev Priority: optional Section: libdevel Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: mir Version: 0.1.8+14.04.20140411-0ubuntu1 Filename: pool/main/m/mir/mircommon-dev_0.1.8+14.04.20140411-0ubuntu1_i386.deb Size: 25172 MD5sum: 81fd52b886223f2bfd3f62f91cc8d7c1 SHA1: 494d43c4a6c920b23d0bbc4f5420ed5af9657310 SHA256: e5a68f5f09d01a08da60c1fdaf8fb76b6a5a49ed11f5eb9f659739cdb5ea9e49 Description: Display server for Ubuntu - development headers Multi-Arch: same Homepage: https://launchpad.net/mir Description-md5: afceda22de73c8f8ef2fe0642ae4e906 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: miscfiles Priority: optional Section: text Installed-Size: 3047 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Bushnell, BSG Architecture: all Version: 1.4.2.dfsg.1-9.1 Provides: wordlist Depends: debconf | debconf-2.0, dictionaries-common (>= 0.20) Filename: pool/main/m/miscfiles/miscfiles_1.4.2.dfsg.1-9.1_all.deb Size: 1317130 MD5sum: 3aad1cebe12dbc32ba77380d81ecc601 SHA1: a8b7c9248d8a5711e223c693e2a67624764dfc55 SHA256: 94d21f922ce4e5592424afd058c9b091627eee1864d40daf9001712a91ac1814 Description: Dictionaries and other interesting files Description-md5: c14499491490d96255ece227b5e4fb33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop Package: mklibs Priority: optional Section: devel Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: all Version: 0.1.39 Depends: python (>= 2.4), binutils, gcc, dpkg-dev, mklibs-copy (>= 0.1.39) Recommends: libc6-pic | libc6.1-pic | libc0.1-pic | libc0.3-pic Filename: pool/main/m/mklibs/mklibs_0.1.39_all.deb Size: 8996 MD5sum: 412788a550e5b662531b07ac8561bea9 SHA1: 11f09081df771a35b86a3ff61bab9bab0cb3cfb0 SHA256: c6bb19feeca497fea47b4d167438d74da3f99bda2b51d1803eb365464512faa8 Description: Shared library reduction script Description-md5: 566a24327f5b3aff340afc352308942e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mklibs-copy Priority: optional Section: devel Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: i386 Source: mklibs Version: 0.1.39 Depends: python (>= 2.4), dpkg-dev, python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.2.1) Filename: pool/main/m/mklibs/mklibs-copy_0.1.39_i386.deb Size: 33894 MD5sum: b3e07e82268d4390bf091aa48d378534 SHA1: 260ff735ca9c146ba73ddcbb2a209b108a890a8c SHA256: 83ead1558edb68210a2250fa8fa9fc24bc199ab29821b78778f9ad92fbb45b08 Description: Shared library reduction script Description-md5: 27bc2ab99a6d95d524085d903621e749 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mknbi Priority: optional Section: admin Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Version: 1.4.4-10 Depends: perl Filename: pool/main/m/mknbi/mknbi_1.4.4-10_i386.deb Size: 73260 MD5sum: f1c53c76ab6d71e53c8f90ee29328596 SHA1: 2c036bf1b9ed0ade742ef84de8e77403571f9748 SHA256: a0ae102636567cf66101ffa820f07a6bfd871a6a1a1b923c5d60cb604c4d49f8 Description: Create tagged images for Etherboot or Netboot Homepage: http://www.etherboot.org/ Description-md5: 2327c8ec8727ad94627d94e5a8700aa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mksh Priority: optional Section: shells Installed-Size: 796 Maintainer: Ubuntu Developers Original-Maintainer: Thorsten Glaser Architecture: i386 Version: 46-2ubuntu3 Depends: libc6 (>= 2.15) Suggests: ed Filename: pool/main/m/mksh/mksh_46-2ubuntu3_i386.deb Size: 364414 MD5sum: 3892a643de851620fa31f0a07ce6b0b1 SHA1: 828c8b45ae62c23c88e3cc1cb464def4f567794b SHA256: 425aeaab10445b05321b4f9fbe57f7eb979d48c4fd94e22aacd30612f473af84 Description: MirBSD Korn Shell Built-Using: gcc-4.8 (= 4.8.2-10ubuntu2), klibc (= 2.0.3-0ubuntu1), linux (= 3.12.0-7.15) Multi-Arch: foreign Homepage: http://mirbsd.de/mksh Description-md5: dbb9cd4655763bf0804c90898b9feac0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mlocate Priority: standard Section: utils Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: i386 Version: 0.26-1ubuntu1 Depends: libc6 (>= 2.4), adduser Conflicts: findutils (<= 4.2.31-1), slocate (<= 3.1-1.1) Filename: pool/main/m/mlocate/mlocate_0.26-1ubuntu1_i386.deb Size: 51830 MD5sum: 480120d1919558c3e92c5722c45fe267 SHA1: d683cc823ab74bd63eb2e4186285ba840e17db23 SHA256: 2d3af506fca3d8552ef679104ce2ccffc29ed515ddf0ec4fa11d670853997f94 Description: quickly find files on the filesystem based on their name Homepage: http://carolina.mff.cuni.cz/~trmac/blog/mlocate Description-md5: 34e9c00f37885dbcdfb61296f24c84df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: mm-common Priority: optional Section: devel Installed-Size: 7672 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.9.6-1 Depends: automake (>= 1.9) | automaken, libtool (>= 1.5), pkg-config (>= 0.20) Recommends: g++ | c++-compiler, doxygen, graphviz, xsltproc Suggests: libglibmm-2.4-dev, libsigc++-2.0-doc, libglibmm-2.4-doc Filename: pool/main/m/mm-common/mm-common_0.9.6-1_all.deb Size: 516518 MD5sum: d053298823922cb349bfff8a82df3bf0 SHA1: 1243097ab4f24dc35c42f47a2cf793b07f369a74 SHA256: e65cea417a376811e9280ca399c178b14c20e90ee27761a8ddd3728c8dcab1c1 Description: Common build files of the GNOME C++ bindings Homepage: http://www.gtkmm.org/ Description-md5: d346825f7d0b94a5feb3b3cceb14012a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mobile-broadband-provider-info Priority: extra Section: admin Installed-Size: 367 Maintainer: Bhavani Shankar Architecture: all Version: 20140317-1 Filename: pool/main/m/mobile-broadband-provider-info/mobile-broadband-provider-info_20140317-1_all.deb Size: 46130 MD5sum: 78115a60aa276fe10e06b9faa0d87e7e SHA1: 8b5f3306396d54160317cb30eab6ca57a8dc6780 SHA256: 7503522305c14cf5c657d65385e23c38b960dfd913049bde5d2b221146afdffb Description: database of mobile broadband service providers Homepage: https://wiki.gnome.org/Projects/NetworkManager/MobileBroadband/ServiceProviders Description-md5: 54ff38377fdb6d2b2ad180a0c0c510bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: modemmanager Priority: optional Section: net Installed-Size: 2072 Maintainer: Alexander Sack Architecture: i386 Version: 1.0.0-2ubuntu1 Depends: libc6 (>= 2.8), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), libmbim-glib0 (>= 1.4.0), libmm-glib0 (>= 1.0.0), libqmi-glib0 (>= 1.0), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Recommends: usb-modeswitch Breaks: network-manager (<< 0.9.8.2-1) Filename: pool/main/m/modemmanager/modemmanager_1.0.0-2ubuntu1_i386.deb Size: 459296 MD5sum: 771fe83a3747d25a0ea4f9e0d2bdc753 SHA1: be072ce4ad1cc12ff943da270d5b7c2c7e6f840b SHA256: bfb0d798cd63083e97a3704ca1274942d909e0224c51532c9ce1ce2ac28da540 Description: D-Bus service for managing modems Description-md5: a5650d0723072b90ad274aa0bca40c87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: modemmanager-dbg Priority: extra Section: debug Installed-Size: 2696 Maintainer: Alexander Sack Architecture: i386 Source: modemmanager Version: 1.0.0-2ubuntu1 Depends: modemmanager (= 1.0.0-2ubuntu1) Filename: pool/main/m/modemmanager/modemmanager-dbg_1.0.0-2ubuntu1_i386.deb Size: 2058294 MD5sum: aebf0bea2e99299d116d1186711622f1 SHA1: 19083dea208eb8cd7d710cdf339825f85081c70b SHA256: ea71b05bc75363f9004110b109edd9daf4dc02034cda0ae8be6333f080b73f5f Description: D-Bus service for managing modems - debugging symbols Description-md5: c4e62b545c7eb9572a5a02bfad49f260 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: modemmanager-dev Priority: optional Section: libdevel Installed-Size: 126 Maintainer: Alexander Sack Architecture: i386 Source: modemmanager Version: 1.0.0-2ubuntu1 Replaces: modemmanager (<< 0.7.990) Suggests: modemmanager-doc Breaks: modemmanager (<< 0.7.990) Filename: pool/main/m/modemmanager/modemmanager-dev_1.0.0-2ubuntu1_i386.deb Size: 17776 MD5sum: 8a7bc59327e543ac377c8de0c3b9d3c8 SHA1: ded72ad7fe30618f8c52d0a43daf57897f32380e SHA256: b14a3ba4feff6987dd643ec1b8037e5f0c93f1c1ffbfdee6cf553c0604c80da8 Description: D-Bus service for managing modems - development files Description-md5: 9ebdc1d329b316d8802a2efa63cc55c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: modemmanager-doc Priority: optional Section: doc Installed-Size: 725 Maintainer: Alexander Sack Architecture: all Source: modemmanager Version: 1.0.0-2ubuntu1 Suggests: devhelp Filename: pool/main/m/modemmanager/modemmanager-doc_1.0.0-2ubuntu1_all.deb Size: 177936 MD5sum: 9a52c1f2b20072d0a124f07520ef1d15 SHA1: a2d0aae4f3573092c272d51421f49c385e423c8a SHA256: fb37bf94efab011ee6d0f92b713d9f972d3f6fb8c70f9c061b382d8894b50800 Description: D-Bus service for managing modems - documentation files Description-md5: 081efa7f4655df81548fa6ec2addd3e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: module-init-tools Priority: required Section: admin Installed-Size: 31 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: all Source: kmod Version: 15-0ubuntu6 Depends: libkmod2, kmod Pre-Depends: dpkg (>= 1.15.7.2) Filename: pool/main/k/kmod/module-init-tools_15-0ubuntu6_all.deb Size: 1938 MD5sum: d9749724e8c6e659df6d7785247451a5 SHA1: 91fe365ed4b3ad45b3342d5185110e461f8e32bf SHA256: c0bc525d5a6055baac467f3bed4c9405e31361e751014e53844e24b8aa6b181c Description: transitional dummy package (module-init-tools to kmod) Multi-Arch: foreign Description-md5: 1b0992eebd45ca5ceadc775532a4f6a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: mono-4.0-gac Priority: optional Section: cli-mono Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-gac (<< 2.0) Depends: libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-security4.0-cil (>= 3.0.6) Recommends: cli-common (>= 0.4.0) Filename: pool/main/m/mono/mono-4.0-gac_3.2.8+dfsg-4ubuntu1_all.deb Size: 20002 MD5sum: fb2ecfc94b84cff59771e4b2e9b1eb89 SHA1: 8481e56566a923e6529325bda619c5b780f7fbe1 SHA256: 86ad3c049e4e7dae9d0c221b2239da0e4ff57ab530580bc6fd9edbb58700b62b Description: Mono GAC tool (for CLI 4.0) Homepage: http://www.mono-project.com/ Description-md5: c6f7de15f8bc49ae076247d65db4e420 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: mono-csharp-shell Priority: optional Section: shells Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-runtime (>= 2.10.1), libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-csharp4.0c-cil (>= 3.2.8), libmono-management4.0-cil (>= 1.0), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/mono-csharp-shell_3.2.8+dfsg-4ubuntu1_all.deb Size: 30798 MD5sum: 28e1472566a68763c629f0f09dcfcfba SHA1: 99e82c3d7a47c0820dcc29be6d7fae1dc85e9bc0 SHA256: d9145b6370979c6c05d4b1ec500e7ecd9a9c70b0c377d1c085bdc29400d4a1b1 Description: interactive C# shell Homepage: http://www.mono-project.com/CsharpRepl Description-md5: 18c4878a8af999586fc3a3eec3c35ba1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-devel Priority: optional Section: devel Installed-Size: 9152 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono-dev (<< 2.4), libmono-facades-system-collections-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-collections-concurrent-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-annotations-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-eventbasedasync-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-contracts-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-debug-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-tools-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-dynamic-runtime-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-globalization-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-io-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-expressions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-parallel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-queryable-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-networkinformation-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-requests-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-objectmodel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-resources-resourcemanager-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-interopservices-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-numerics-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-json-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-xml-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-security-principal-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-servicemodel-http-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-servicemodel-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-encoding-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-encoding-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-regularexpressions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-tasks-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-tasks-parallel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-readerwriter-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-xdocument-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-xmlserializer-cil (<< 3.2.3+dfsg-5~), mono-1.0-devel (<< 2.0), mono-2.0-devel (<< 2.10), mono-gmcs (<< 2.0), mono-mcs (<< 2.0) Provides: assembly-linker, c-sharp-2.0-compiler, c-sharp-3.0-compiler, c-sharp-4.0-compiler, c-sharp-4.5-compiler, c-sharp-compiler, resource-file-generator, strong-name-tool Depends: mono-runtime (>= 2.10.1), libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libglib2.0-0 (>= 2.39.90), libmono-cecil-private-cil (>= 3.2.8), libmono-codecontracts4.0-cil (>= 1.0), libmono-compilerservices-symbolwriter4.0-cil (>= 3.0.6), libmono-corlib2.0-cil (>= 3.2.8), libmono-corlib4.5-cil (>= 3.2.8), libmono-peapi2.0a-cil (>= 3.2.8), libmono-peapi4.0a-cil (>= 3.2.8), libmono-relaxng4.0-cil (>= 2.10.1), libmono-security2.0-cil (>= 3.0.6), libmono-security4.0-cil (>= 3.0.6), libmono-system-componentmodel-composition4.0-cil (>= 3.0.6), libmono-system-componentmodel-dataannotations4.0-cil (>= 3.2.3), libmono-system-configuration-install4.0-cil (>= 1.0), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-data-linq4.0-cil (>= 1.0), libmono-system-data2.0-cil (>= 3.0.6), libmono-system-data4.0-cil (>= 3.0.6), libmono-system-numerics4.0-cil (>= 1.0), libmono-system-runtime-serialization4.0-cil (>= 1.0), libmono-system-runtime4.0-cil (>= 2.10.1), libmono-system-servicemodel4.0a-cil (>= 3.2.3), libmono-system-web-services4.0-cil (>= 1.0), libmono-system-web2.0-cil (>= 2.10.3), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system2.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono2.0-cil (>= 3.0.6), mono-mcs (= 3.2.8+dfsg-4ubuntu1), mono-gac (= 3.2.8+dfsg-4ubuntu1), mono-xbuild (= 3.2.8+dfsg-4ubuntu1), libmono-cil-dev (= 3.2.8+dfsg-4ubuntu1), libmono-2.0-dev (>= 3.2.8+dfsg-4ubuntu1), libmono-2.0-dev (<< 3.2.8+dfsg-4ubuntu1.1~), pkg-config Recommends: mono-csharp-shell Breaks: libmono-facades-system-collections-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-collections-concurrent-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-annotations-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-componentmodel-eventbasedasync-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-contracts-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-debug-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-diagnostics-tools-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-dynamic-runtime-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-globalization-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-io-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-expressions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-parallel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-linq-queryable-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-networkinformation-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-net-requests-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-objectmodel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-reflection-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-resources-resourcemanager-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-interopservices-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-numerics-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-json-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-runtime-serialization-xml-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-security-principal-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-servicemodel-http-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-servicemodel-primitives-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-encoding-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-encoding-extensions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-text-regularexpressions-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-tasks-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-threading-tasks-parallel-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-readerwriter-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-xdocument-cil (<< 3.2.3+dfsg-5~), libmono-facades-system-xml-xmlserializer-cil (<< 3.2.3+dfsg-5~) Filename: pool/main/m/mono/mono-devel_3.2.8+dfsg-4ubuntu1_all.deb Size: 1646544 MD5sum: 1f5c2e2687d2cc6204ddf8cdd678f251 SHA1: 83956e90e8755bbeec5dafbfc68e164bbbf446c5 SHA256: d6ef1c2f52e797db1f7af07aab3c7b530f14a69284c1faa72c5825bca889c157 Description: Mono development tools Homepage: http://www.mono-project.com/ Description-md5: 629b185238e84b344f23bbe244129c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-dmcs Priority: optional Section: cli-mono Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-mcs (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-dmcs_3.2.8+dfsg-4ubuntu1_all.deb Size: 10168 MD5sum: ed8ce7b7d8e2956ae3d94b4eefd10245 SHA1: 0753bdc122ac4b9b90448197711dbbb4fd6c4995 SHA256: e6c7684160f345cef31cf503ae4cd07fbb7390b5432ddb22280483ee6e224822 Description: Mono C# 4.0 compiler for CLI 4.0 (transitional package) Homepage: http://www.mono-project.com/ Description-md5: 5a0af28422409d6d9ac8a99a958b1b15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-gac Priority: optional Section: devel Installed-Size: 106 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Provides: global-assembly-cache-tool Depends: mono-4.0-gac (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-gac_3.2.8+dfsg-4ubuntu1_all.deb Size: 15442 MD5sum: 5a49a3f493127e37d89479dc9d39ed32 SHA1: 1530b932652f9a4956d1ac768d47b9dfee427a95 SHA256: 2f82d246689b886311e94b8de44054f013fb306bae135a7a0b220c3da5b29f26 Description: Mono GAC tool Homepage: http://www.mono-project.com/ Description-md5: c2a755c0e15dc47388d889b42eb894b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: mono-gmcs Priority: optional Section: devel Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-mcs (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-gmcs_3.2.8+dfsg-4ubuntu1_all.deb Size: 10162 MD5sum: e0db540882131029c3f328f70db5a1e4 SHA1: f1b2f1e7462ac200a0183ea1b280ba3dfa4e6156 SHA256: e48fb3ab10ac5d370a6af2b1b0c3617a283a434d877b62ef0a2ba2bec53bfa67 Description: Mono C# 2.0 and C# 3.0 compiler for CLI 2.0 (transitional package) Homepage: http://www.mono-project.com/ Description-md5: e91b284ad1c027652db16ccf4b670e47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-mcs Priority: optional Section: devel Installed-Size: 1807 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-devel (<< 2.4.2.3), mono-dmcs (<< 3.0~), mono-gmcs (<< 3.0~) Depends: mono-runtime (>= 2.10.1), libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono-corlib4.5-cil (<< 3.2.9), libmono-microsoft-csharp4.0-cil Recommends: pkg-config Breaks: mono-dmcs (<< 3.0~), mono-gmcs (<< 3.0~) Filename: pool/main/m/mono/mono-mcs_3.2.8+dfsg-4ubuntu1_all.deb Size: 490020 MD5sum: 4e5cbc615e48c47d63c0f58e8b08c8c5 SHA1: 38ee82ba7ced96c07b8f21ee9a1d3e5b3b59a76b SHA256: 327d55a8e6983c589a63bca563fc34370b24b047e56254be29675ace03cd89bd Description: Mono C# 2.0 / 3.0 / 4.0 / 5.0 compiler for CLI 2.0 / 4.0 / 4.5 Homepage: http://www.mono-project.com/ Description-md5: 3f1aba4e9956099bfa702d53c275ffad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-runtime Priority: optional Section: interpreters Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.1), mono-runtime-sgen (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-runtime_3.2.8+dfsg-4ubuntu1_i386.deb Size: 12294 MD5sum: 9d8feea3ad52c4c57235c819cf800506 SHA1: 215055908776217bfca0b627a5097e212e910514 SHA256: cbc47d253c824fbbad41f764d5bab3e0a83b93c38e4ed4cee0a85fdf0508f836 Description: Mono runtime - default version Homepage: http://www.mono-project.com/ Description-md5: 0ef9550e0b708629302fd4b5f9bdeb39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: mono-runtime-boehm Priority: optional Section: cli-mono Installed-Size: 3498 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.15), mono-runtime-common (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-runtime-boehm_3.2.8+dfsg-4ubuntu1_i386.deb Size: 1121530 MD5sum: 057f80914556613c37f6aa511e864a3e SHA1: cd83e30a79368e42ccaed7e35ee71a6759f23cfd SHA256: 76affc8de3e67d34860cdc01273c6a9a5f8728936b8de8f8d98f63dcbf101e74 Description: Mono runtime - Boehm Homepage: http://www.mono-project.com/ Description-md5: 74feada03d34e3c54c7fc03b376a7cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-runtime-common Priority: optional Section: cli-mono Installed-Size: 1301 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: libmono0 (<< 2.4), mono-common (<< 2.4), mono-jit (<< 2.4), mono-runtime (<< 3.2.1) Provides: cli-runtime, cli-virtual-machine Depends: libc6 (>= 2.16), zlib1g (>= 1:1.1.4), mono-gac (= 3.2.8+dfsg-4ubuntu1) Recommends: binfmt-support (>= 1.1.2) Suggests: xdg-utils | libgnome2-0 | konqueror Conflicts: mono-1.0-runtime (<< 2.4), mono-2.0-runtime (<< 2.4), mono-common (<< 2.4), mono-jit (<< 2.4), mono-runtime (<< 3.2.1) Filename: pool/main/m/mono/mono-runtime-common_3.2.8+dfsg-4ubuntu1_i386.deb Size: 210956 MD5sum: 467638d7dd1200edc6d20153096ed0f0 SHA1: 63afa023a7d8afbad2bf3ff48754bc3b155af74d SHA256: 46c2d5bd577e14ab6862da78334e093ee1547915a5b8d9b0bc86322c060b5004 Description: Mono runtime - common files Homepage: http://www.mono-project.com/ Description-md5: 0048a533f5c0a7f5ad413ee658ccd4d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: mono-runtime-dbg Priority: extra Section: debug Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-jit-dbg (<< 2.4) Depends: mono-runtime-sgen (= 3.2.8+dfsg-4ubuntu1), mono-runtime-boehm (= 3.2.8+dfsg-4ubuntu1) Recommends: gdb Conflicts: mono-jit-dbg (<< 2.4) Filename: pool/main/m/mono/mono-runtime-dbg_3.2.8+dfsg-4ubuntu1_i386.deb Size: 10112 MD5sum: 319b6ac372b99c2154e9b1444f136b67 SHA1: 4d1c920555fa55eae4073b752c6b47299adb28ae SHA256: 452efaf58e1fb962faf616d7aa0edaee9282c3ecbecfc09062571328a46605c3 Description: Mono runtime, debugging symbols Homepage: http://www.mono-project.com/ Description-md5: 0f5b756bd9c313fa705058f5c7b6d0a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-runtime-sgen Priority: optional Section: cli-mono Installed-Size: 13368 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: libc6 (>= 2.15), mono-runtime-common (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-runtime-sgen_3.2.8+dfsg-4ubuntu1_i386.deb Size: 4003142 MD5sum: d892727eec6790496c598506c47a2094 SHA1: 9f329fc707392e31f196133ca50b6cdf50152660 SHA256: 83cf05969703feb4675642b1d518a92d9d7d2dcc5dd29f20d043d5f104dced01 Description: Mono runtime - SGen Homepage: http://www.mono-project.com/Compacting_GC Description-md5: 5235eb83a7b861ac1e2aadac6b0f72f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: mono-utils Priority: optional Section: devel Installed-Size: 2725 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: i386 Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-mcs (<= 1.1.6-4) Provides: cil-disassembler Depends: libc6 (>= 2.15), libmonosgen-2.0-1 (>= 3.2.3+dfsg), zlib1g (>= 1:1.2.3.4), libmonoboehm-2.0-1 (= 3.2.8+dfsg-4ubuntu1), libmono-corlib4.5-cil (= 3.2.8+dfsg-4ubuntu1) | libmono-corlib2.0-cil (= 3.2.8+dfsg-4ubuntu1) Filename: pool/main/m/mono/mono-utils_3.2.8+dfsg-4ubuntu1_i386.deb Size: 811542 MD5sum: c433ebafd406f53ab7d4d29f605cc089 SHA1: 00366cd32a1d0e848575a984e85cf8ec3bb876f4 SHA256: d165a989002410ddab727d66a84d12ac9e76692b31a20bcabed3c39e7b876b54 Description: Mono utilities Homepage: http://www.mono-project.com/ Description-md5: 18083e2952c8dd8c2682acaf34203df1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mono-xbuild Priority: optional Section: devel Installed-Size: 1923 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Replaces: mono-gmcs (<< 1.2.6-1) Depends: mono-runtime (>= 2.10.1), libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-corlib2.0-cil (>= 3.2.8), libmono-corlib4.5-cil (>= 3.2.8), libmono-microsoft-build-engine4.0-cil (>= 3.2.1), libmono-microsoft-build-framework4.0-cil (>= 3.2.8), libmono-microsoft-build-utilities-v4.0-4.0-cil (>= 3.0.6), libmono-microsoft-build2.0-cil (>= 3.2.8), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system2.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libmono-xbuild-tasks4.0-cil (>= 1.0) Filename: pool/main/m/mono/mono-xbuild_3.2.8+dfsg-4ubuntu1_all.deb Size: 268860 MD5sum: 0e28b90b28e25c650ef762da008120aa SHA1: 135657fa47639c2ca5a77daccd233eeea98ba97b SHA256: 5a7ae285eee8be8c33f9ec64b92e52b8f0852d9233ec08cccf03531eb5dde418 Description: MSBuild-compatible build system for Mono Homepage: http://www.mono-project.com/ Description-md5: 1a8d1c1ca7c8807496789b97878cf6c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: monodoc-base Priority: optional Section: devel Installed-Size: 1601 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: mono-runtime (>= 2.10.1), libc6 (>= 2.19) | libc6.1 (>= 2.19) | libc0.1 (>= 2.19), libmono-cecil-private-cil (>= 3.2.8), libmono-corlib4.5-cil (>= 3.2.8), libmono-sharpzip4.84-cil (>= 1.0), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-core4.0-cil (>= 3.2.8), libmono-system-xml-linq4.0-cil (>= 3.0.6), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8) Filename: pool/main/m/mono/monodoc-base_3.2.8+dfsg-4ubuntu1_all.deb Size: 447932 MD5sum: 991e658763b8c59a9e2fa23cbffcfe87 SHA1: be9cec0f399cc386c876497bd9e4ca72c07ae15c SHA256: f35a59d2c8b0cb8f0fc6f73bc83e6efadc21fa2028f306098444bf9c76363365 Description: shared MonoDoc binaries Homepage: http://www.mono-project.com/ Description-md5: 538bae4502d2e025e6e74644ab0b3e8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: monodoc-browser Priority: optional Section: devel Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono-tools Version: 2.11+git20131009.5b1ef35-1build1 Replaces: monodoc-base (<< 2.10.8.1-3) Provides: monodoc-viewer Depends: mono-runtime (>= 3.0~), libglade2.0-cil (>= 2.12.10-1ubuntu1), libglib2.0-cil (>= 2.12.10-1ubuntu1), libgtk2.0-cil (>= 2.12.10-1ubuntu1), libmono-corlib4.5-cil (>= 3.2.8), libmono-system-web-services4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 3.2.1), libmono-system4.0-cil (>= 3.2.8), libwebkit1.1-cil (>= 0.3), monodoc-base (>= 3.2.1), monodoc-manual Breaks: monodoc-base (<< 2.10.8.1-3) Filename: pool/main/m/mono-tools/monodoc-browser_2.11+git20131009.5b1ef35-1build1_all.deb Size: 64336 MD5sum: 8d08a6345c8582b667c0ca2b15a5633d SHA1: c5f6b216c8236d1c8009a3722016e121d750c4e3 SHA256: 1150a6496254359b730115cd9c79b3e2d55aa93f47b370fbb45186065dcd71fb Description: MonoDoc GTK+ based viewer Description-md5: 20d768c4249af085ed376883907d1f15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: monodoc-manual Priority: optional Section: devel Installed-Size: 10534 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mono Group Architecture: all Source: mono Version: 3.2.8+dfsg-4ubuntu1 Depends: monodoc-browser | monodoc-http | monodoc-viewer Suggests: monodoc-gtk-manual, monodoc-gecko-manual, monodoc-nunit-manual Filename: pool/main/m/mono/monodoc-manual_3.2.8+dfsg-4ubuntu1_all.deb Size: 7971590 MD5sum: 8079f4098066543be5e1bf8ba7874d14 SHA1: bb7ee7b02c9f20c4a559e894b562f0da307d4fce SHA256: af18f7065e2376e39b8082c04c1681a06b3862611ca1ec7144aadfb840a3d7a9 Description: compiled XML documentation from the Mono project Homepage: http://www.mono-project.com/ Description-md5: 89fc8e2379a34f68629a43eb55f18ca3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: monodoc-webkit-manual Priority: optional Section: doc Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Libraries Team Architecture: all Source: webkit-sharp Version: 0.3-6 Depends: monodoc-manual Filename: pool/main/w/webkit-sharp/monodoc-webkit-manual_0.3-6_all.deb Size: 11590 MD5sum: cbb158e6edda944fbced71bcb6aa30b3 SHA1: a8de9496ca25ab1729d4fa03626329e66b23f0f4 SHA256: e44cda0708c279128852e5297061c288a7c8cf1d8148dc1d42b6576f0345ed03 Description: compiled XML documentation for webkit-sharp Homepage: http://www.webkit.org/ Description-md5: 622ce2bd5f7490c3c336337f917e2cbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mount Essential: yes Priority: required Section: admin Installed-Size: 410 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: i386 Source: util-linux Version: 2.20.1-5.1ubuntu20 Pre-Depends: libblkid1 (>= 2.20.1), libc6 (>= 2.8), libmount1 (>= 2.20.1), libselinux1 (>= 2.0.15) Suggests: nfs-common (>= 1:1.1.0-13) Filename: pool/main/u/util-linux/mount_2.20.1-5.1ubuntu20_i386.deb Size: 111918 MD5sum: 3adf7b9a5da66af79ee211ad4760e7b2 SHA1: c3f0e5decf0fab643d33bbf107d0e3946202c054 SHA256: dab4468024153ee041a74546dbea61ab7d9b9e82632bfe17f3849c0d0bec296f Description: Tools for mounting and manipulating filesystems Multi-Arch: foreign Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 46eb8e09a600d5eb98b6b40428349102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: mountall Priority: required Section: admin Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Version: 2.53 Replaces: upstart (<< 0.6.3-2) Depends: makedev, udev, plymouth, coreutils (>= 7.1), libc6 (>= 2.9), libdbus-1-3 (>= 1.2.16), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libplymouth2 (>= 0.8.1-3), libudev1 (>= 183) Pre-Depends: dpkg (>= 1.15.7.2) Breaks: initscripts (<< 2.88dsf-24), policycoreutils (<< 2.0.69-2ubuntu4), usplash (<< 0.5.47) Filename: pool/main/m/mountall/mountall_2.53_i386.deb Size: 54234 MD5sum: a305bd26f0e1ee9b078207dc7eef9f70 SHA1: 921a649a68ba0d316ffd76bb60e4c4e1b6acf82f SHA256: de2a48d593a4011d436f9659f79c69a07c1f8466b03111884a92948cef995c92 Description: filesystem mounting tool Multi-Arch: foreign Description-md5: b5b5a27fc0e8063ef1226a39fb8ecf70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: mouseemu Priority: optional Section: utils Installed-Size: 92 Maintainer: Colin Watson Original-Maintainer: Gaudenz Steinlin Architecture: i386 Version: 0.16-0ubuntu9 Depends: libc6 (>= 2.15), procps, dmidecode Breaks: udev (<< 136-1) Filename: pool/main/m/mouseemu/mouseemu_0.16-0ubuntu9_i386.deb Size: 17464 MD5sum: e51db67ac2ab9641763cc8f7123b201a SHA1: 4b41b7952401cb154db78a1919ee90f9d1148c3d SHA256: eca818629c4df0f420cad95a3c1db4129d0224d40fe57606f61b87a26a6b9179 Description: Emulate mouse buttons and mouse wheel Description-md5: abfc7368f5d823e7b6915cc7d1da3d91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mousetweaks Priority: optional Section: gnome Installed-Size: 288 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Version: 3.8.0-2 Depends: libc6 (>= 2.4), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libpango-1.0-0 (>= 1.14.0), libx11-6, libxcursor1 (>> 1.1.2), libxfixes3, libxtst6, dconf-gsettings-backend | gsettings-backend, gsettings-desktop-schemas (>= 0.1.0) Suggests: gnome-control-center Filename: pool/main/m/mousetweaks/mousetweaks_3.8.0-2_i386.deb Size: 35808 MD5sum: a471a1786ba85c1027a6a286ae73fc8b SHA1: a357ed844abf4fff2e734b371f3e338320070a7b SHA256: 998bbaab0646116afa96be832bab261e95455ee7d9f7b8ee15165f904825df3a Description: mouse accessibility enhancements for the GNOME desktop Homepage: https://wiki.gnome.org/Mousetweaks/Home Description-md5: bf106bf9a496b3c2b24861987fa521ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: mozilla-devscripts Priority: optional Section: devel Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Debian Mozilla Extension Maintainers Architecture: all Version: 0.36 Depends: python-librdf, unzip, zip, perl, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/m/mozilla-devscripts/mozilla-devscripts_0.36_all.deb Size: 26542 MD5sum: df2e7ed3ecd0fedb85767e7edbdc9b82 SHA1: 69187a2ecd9af226e46bf3f88ab58343dde2069d SHA256: b237d586ef5fa2fb454e27c45e336878f954f02c44177919154bc0bf46bd5b37 Description: Development scripts used by Mozilla's addons packages Description-md5: 365d99b4affcffc90de7cb10b730c4b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: mozvoikko Priority: optional Section: web Installed-Size: 29 Maintainer: Ubuntu Core Developers Original-Maintainer: Heikki Mäntysaari Architecture: all Version: 2.0.1-0ubuntu1 Depends: xul-ext-mozvoikko Filename: pool/main/m/mozvoikko/mozvoikko_2.0.1-0ubuntu1_all.deb Size: 1720 MD5sum: a8e163025c58e6157b2b10b819a3421e SHA1: e44450eb100ec2bf71b27c22e6aeff1f2bb0d2ed SHA256: 834da9999be04a6abda903b48ff8c449f771e8f0353a4d08cdd85a91e7d44065 Description: Finnish spell-checker extension for Firefox (transitional package) Description-md5: 731a4c7c2214b726fdc5f3bad16a8c90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mscompress Priority: extra Section: otherosfs Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Michael Stapelberg Architecture: i386 Version: 0.4-3 Depends: libc6 (>= 2.4) Filename: pool/main/m/mscompress/mscompress_0.4-3_i386.deb Size: 9470 MD5sum: c9ba9372a453a4bd19a58ce1f87b55c2 SHA1: 71922d1613885b4b85b9b2de175a2f936f4e9dba SHA256: 661eaad57c9b8a49a14928de597abe57259c72576eb94be5dcd31cd98dca370f Description: Microsoft "compress.exe/expand.exe" compatible (de)compressor Homepage: http://code.stapelberg.de/git/mscompress/ Description-md5: b4f9fff832e68d790b9a7feeefbb8eb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: msr-tools Priority: optional Section: admin Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Andres Salomon Architecture: i386 Version: 1.3-2 Depends: libc6 (>= 2.4) Filename: pool/main/m/msr-tools/msr-tools_1.3-2_i386.deb Size: 10198 MD5sum: b4d06050d79c23c6b8e5c0c15a59df86 SHA1: 40d8ce034683bde246ab882c33c1771215f2951b SHA256: b8cfa8183b6cd2a579db703a7d1b814674112c49a04d87f089a31ec3b9f09445 Description: Utilities for modifying MSRs from userspace Description-md5: 95866ee428947792b0bd008175c572ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: mtools Priority: optional Section: otherosfs Installed-Size: 339 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 4.0.18-1ubuntu1 Depends: libc6 (>= 2.7) Suggests: floppyd Filename: pool/main/m/mtools/mtools_4.0.18-1ubuntu1_i386.deb Size: 190350 MD5sum: ef66a031aaa900be929a3b8b90b236ed SHA1: 4895abe211196c8487e25d2a3e794bcee257c30a SHA256: b83fa7a3d0b29e9f909f3f6261f24325d18256fa46303420a1b63626a22b460b Description: Tools for manipulating MSDOS files Homepage: http://www.gnu.org/software/mtools/ Description-md5: b3b35cc7d4e80f29d3aa9d91bdf899da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: mtr-tiny Priority: standard Section: net Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: Robert Woodcock Architecture: i386 Source: mtr Version: 0.85-2 Replaces: mtr Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libtinfo5 Conflicts: mtr, suidmanager (<< 0.50) Filename: pool/main/m/mtr/mtr-tiny_0.85-2_i386.deb Size: 39730 MD5sum: b89a34ab74f0b4b9e1b4a15a4b1a5beb SHA1: 8263dba06de6967aded80cde6b9450cd457b40b5 SHA256: f553fdfdf79e876de1aa008c7b28675f286175f3c6d62ae97ad8427c6d10bde6 Description: Full screen ncurses traceroute tool Homepage: http://www.bitwizard.nl/mtr/ Description-md5: 60a83ae2ec5f39fba9d1aecb545c9060 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: mtx Priority: extra Section: admin Installed-Size: 310 Maintainer: Ubuntu Developers Original-Maintainer: Ivo De Decker Architecture: i386 Version: 1.3.12-8 Depends: libc6 (>= 2.4) Filename: pool/main/m/mtx/mtx_1.3.12-8_i386.deb Size: 144136 MD5sum: 36899dd9e3597253ac6aed77b54974de SHA1: dc3a7914b6d2d9553d1d3cbc172fe650df676a4b SHA256: 0ec149749377f7b7f043186b6bc326b6e5b7b78ed063baa249a996015d0b799f Description: controls tape autochangers Homepage: http://sourceforge.net/projects/mtx/ Description-md5: d04c49e586690550faf07d7124752c26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: multiarch-support Priority: required Section: libs Installed-Size: 201 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: i386 Source: eglibc Version: 2.19-0ubuntu6 Depends: libc6 (>= 2.13-5) Filename: pool/main/e/eglibc/multiarch-support_2.19-0ubuntu6_i386.deb Size: 4482 MD5sum: 19e5fcebb28b3fa7bde16ffbe3711a00 SHA1: c38fda8c7b0b29ee47779c2bd25376771e03af4e SHA256: 9174a39124a09e457ad780ee7f9b6582f9b7931c52b307f3019f10afbb7c23ec Description: Transitional package to ensure multiarch compatibility Multi-Arch: foreign Homepage: http://www.eglibc.org Description-md5: f70fd4ad370040691119c10d77aec677 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: multiboot-doc Priority: optional Section: doc Installed-Size: 183 Maintainer: Ubuntu Kernel Team Original-Maintainer: Grub Maintainers Architecture: all Source: grub Version: 0.97-29ubuntu66 Replaces: grub-doc Suggests: doc-base Filename: pool/main/g/grub/multiboot-doc_0.97-29ubuntu66_all.deb Size: 23128 MD5sum: 1b8adb8306ea5ac967e70378257e7fb1 SHA1: bacfc85f5fd341a79b80dba6acf54952bffa2ac8 SHA256: 0f52d4d339b26e06463be5c7dcdfd071af1538246e2c414685352aa5b1284bc3 Description: The Multiboot specification Description-md5: 4ed1a4a612ebf454599286f7b201501f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: multipath-tools Priority: extra Section: admin Installed-Size: 563 Maintainer: Ubuntu Developers Original-Maintainer: Debian LVM Team Architecture: i386 Version: 0.4.9-3ubuntu7 Depends: libaio1 (>= 0.3.106-8), libc6 (>= 2.7), libdevmapper1.02.1 (>= 2:1.02.36), libreadline6 (>= 6.0), udev (>> 136-1), initscripts (>= 2.85-16), kpartx (>= 0.4.9-3ubuntu7), lsb-base (>= 3) Suggests: multipath-tools-boot Conflicts: multipath-tools-boot (<= 0.4.8+git0.761c66f-2~), multipath-tools-initramfs (<= 1.0.1) Filename: pool/main/m/multipath-tools/multipath-tools_0.4.9-3ubuntu7_i386.deb Size: 159824 MD5sum: 995743f10e408026320b0918870ec6c1 SHA1: e857090fa875806cd4b4b04cf268060e648e4892 SHA256: 8809701fcdafbf6f778495304cfbfde22f84b322f472332399e67801ccede527 Description: maintain multipath block device access Homepage: http://christophe.varoqui.free.fr/ Description-md5: d2b50f6d45021a3e6697180f992bb365 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: multipath-tools-boot Priority: extra Section: admin Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian LVM Team Architecture: all Source: multipath-tools Version: 0.4.9-3ubuntu7 Replaces: multipath-tools-initramfs (<< 1.0.1+nmu1) Depends: debconf (>= 0.5) | debconf-2.0, initramfs-tools, multipath-tools (>= 0.4.9-3ubuntu7), multipath-tools (<< 0.4.9-3ubuntu7.1~), kpartx-boot (= 0.4.9-3ubuntu7) Conflicts: multipath-tools-initramfs (<< 1.0.1+nmu1) Filename: pool/main/m/multipath-tools/multipath-tools-boot_0.4.9-3ubuntu7_all.deb Size: 6092 MD5sum: 888e60efcd3486030139b843a938c2be SHA1: faaa283a04d89c8d24f3bb8ee6f2007b63b36ebb SHA256: 38490544ec8076697e894a17885d88e716bd7fb85534f14ed18df665d3f19160 Description: Support booting from multipath devices Homepage: http://christophe.varoqui.free.fr/ Description-md5: 24b848655cff6a3dd257c2afda6cf91f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: multipath-tools-dbg Priority: extra Section: debug Installed-Size: 605 Maintainer: Ubuntu Developers Original-Maintainer: Debian LVM Team Architecture: i386 Source: multipath-tools Version: 0.4.9-3ubuntu7 Depends: multipath-tools (= 0.4.9-3ubuntu7), kpartx (= 0.4.9-3ubuntu7) Filename: pool/main/m/multipath-tools/multipath-tools-dbg_0.4.9-3ubuntu7_i386.deb Size: 206070 MD5sum: 07919da29f762bdc280ac8e6f6783959 SHA1: 660bea76379092c57ab0fa597cb519aa9be16caf SHA256: 001be48d0da794d4257b155637fa60b811d34c7f3ff637b5775c340c2345c0fe Description: maintain multipath block device access - debugging symbols Homepage: http://christophe.varoqui.free.fr/ Description-md5: 734365732126c3c2cd4a7d36a903a6cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: munin Priority: optional Section: net Installed-Size: 649 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Version: 2.0.19-3 Depends: perl, perl-modules | libparse-recdescent-perl, librrds-perl, libhtml-template-perl, libdigest-md5-perl, libtime-hires-perl, libstorable-perl, rrdtool, adduser, liblog-log4perl-perl, ttf-dejavu, munin-common (>= 2.0.19-3), cron, libdate-manip-perl, libfile-copy-recursive-perl, liburi-perl, libio-socket-inet6-perl Recommends: munin-node, munin-doc Suggests: www-browser, httpd, libnet-ssleay-perl, libapache2-mod-fcgid | libcgi-fast-perl Filename: pool/main/m/munin/munin_2.0.19-3_all.deb Size: 106184 MD5sum: 39ef989fa98ae7cd180bb48e3fb5a408 SHA1: 1b72ba02171f864f26bbe6cc70e623be39df01fa SHA256: 14e07ecbb71df1b4960aaf7a49c77c872f99f3fa59b57a71c599af40004a120a Description: network-wide graphing framework (grapher/gatherer) Homepage: http://munin-monitoring.org Description-md5: 397739392252923095c5812dbaad0fdf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: munin-common Priority: optional Section: net Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Source: munin Version: 2.0.19-3 Depends: perl, perl-modules | libparse-recdescent-perl, liblist-moreutils-perl Filename: pool/main/m/munin/munin-common_2.0.19-3_all.deb Size: 20742 MD5sum: dcdc5fafad325549d4ebad9449ce5b53 SHA1: 3891aa55cf9b7bd8e75f77c7f8f1e8a0e814729d SHA256: e46a3add961e74d7b60fea07e1a9ee399c08e420df7a1c95921676ed24e4213f Description: network-wide graphing framework (common) Homepage: http://munin-monitoring.org Description-md5: 4501696e1323d02bbf33751c99858ea9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: munin-doc Priority: optional Section: doc Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Source: munin Version: 2.0.19-3 Replaces: munin-common (<< 2) Breaks: munin-common (<< 2) Filename: pool/main/m/munin/munin-doc_2.0.19-3_all.deb Size: 144128 MD5sum: a56b10697b87bd855375d9bda5e84fce SHA1: cc7a0fef9e677521e29bccab663738e8db46d8ae SHA256: af3b6677556c932e65925ced02e0e39805d3292388c74d2a49b922688dad8229 Description: network-wide graphing framework (documentation) Homepage: http://munin-monitoring.org Description-md5: a4995b39fb5c585937bfa04039cfed02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: munin-node Priority: optional Section: net Installed-Size: 305 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Source: munin Version: 2.0.19-3 Depends: perl, init-system-helpers (>= 1.13~), libnet-server-perl, procps, adduser, lsb-base (>= 3.2-4), gawk, munin-common (>= 2.0.19-3), munin-plugins-core Recommends: libnet-snmp-perl, munin-plugins-extra Suggests: munin, munin-plugins-java, libwww-perl, liblwp-useragent-determined-perl, libnet-irc-perl, mysql-client, smartmontools (>= 5.37-6~bpo40+1), acpi | lm-sensors, python, ruby, ethtool, libdbd-pg-perl, libdbd-mysql-perl, libcache-cache-perl, net-tools, hdparm, libcrypt-ssleay-perl, libtext-csv-xs-perl, libxml-simple-perl, logtail Filename: pool/main/m/munin/munin-node_2.0.19-3_all.deb Size: 47516 MD5sum: 9103853cf2c83e37fcb2a6a67cf0d307 SHA1: c52bc07f33c69ce7ab1c3b0756a6d1ee339c94cc SHA256: 3b43a388f43105ddae5cd17df2d61537ec6c3e3e1d52cb2c1db1ae1a3b9776fc Description: network-wide graphing framework (node) Homepage: http://munin-monitoring.org Description-md5: 7d6f3b57350a521bda7e61d4aa53a911 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: munin-plugins-core Priority: optional Section: net Installed-Size: 905 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Source: munin Version: 2.0.19-3 Replaces: munin-node (<< 1.999.4548-3~), munin-plugins (<< 1.999.4548-3~), munin-plugins-extra (<< 2.0.13-1) Provides: munin-plugins Depends: perl, munin-common (>= 2.0.19-3) Recommends: libnet-snmp-perl Suggests: libnet-netmask-perl, python, libnet-telnet-perl, ruby | ruby-interpreter, libxml-parser-perl, conntrack Breaks: munin-node (<< 1.999.4548-3~), munin-plugins (<< 1.999.4548-3~), munin-plugins-extra (<< 2.0.13-1) Filename: pool/main/m/munin/munin-plugins-core_2.0.19-3_all.deb Size: 157900 MD5sum: f7bca67f6a6b1adc8de8156fbddc90ee SHA1: 1217fc87d1b07320f730c432c4b0496d7143fdab SHA256: 9a8040d8416dec8982c8a8c48425c71ada543ba535b031b8cd90947c50f526e4 Description: network-wide graphing framework (plugins for node) Homepage: http://munin-monitoring.org Description-md5: 54f782cba4c609cd5afb2583f47afa8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: munin-plugins-extra Priority: optional Section: net Installed-Size: 383 Maintainer: Ubuntu Developers Original-Maintainer: Munin Debian Maintainers Architecture: all Source: munin Version: 2.0.19-3 Provides: munin-plugins Depends: perl, munin-common (>= 2.0.19-3) Suggests: libnet-netmask-perl, python, libnet-telnet-perl Filename: pool/main/m/munin/munin-plugins-extra_2.0.19-3_all.deb Size: 63850 MD5sum: 3c224282e044c5328a0eda8e1fd277c2 SHA1: ab602f5eb1755226b895ca5488dea8e3b1e2e94d SHA256: a30d981b542d91ad76a5143cbe623e6e28f20829b3ff586cc87be1c89ad2f14d Description: network-wide graphing framework (user contributed plugins for node) Homepage: http://munin-monitoring.org Description-md5: eb78ec531b14cee1d0003a07603bedc8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mutt Priority: optional Section: mail Installed-Size: 3480 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Radici Architecture: i386 Version: 1.5.21-6.4ubuntu2 Replaces: mutt-utf8 Provides: imap-client, mail-reader Depends: libc6 (>= 2.15), libgnutls26 (>= 2.12.17-0), libgpg-error0 (>= 1.10), libgpgme11 (>= 1.2.0), libgssapi-krb5-2 (>= 1.10+dfsg~), libidn11 (>= 1.13), libncursesw5 (>= 5.6+20070908), libsasl2-2 (>= 2.1.24), libtinfo5, libtokyocabinet9 (>= 1.4.47) Recommends: default-mta | mail-transport-agent, locales, mime-support, libsasl2-modules Suggests: urlview, aspell | ispell, gnupg, mixmaster, openssl, ca-certificates Conflicts: mutt-utf8 Filename: pool/main/m/mutt/mutt_1.5.21-6.4ubuntu2_i386.deb Size: 808136 MD5sum: c6d5cb220efe6df01d643eb5d1c5f1c2 SHA1: 6f37fbd57fda84af0b79a0ad9d6db451b1b652f4 SHA256: c7373994021795fb74013ecc121606290921590d8297b4145530a5615b1776c2 Description: text-based mailreader supporting MIME, GPG, PGP and threading Homepage: http://www.mutt.org/ Description-md5: a2a425952f4b623e21ee73d317640a85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: mutt-dbg Priority: extra Section: mail Installed-Size: 4810 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Radici Architecture: i386 Source: mutt Version: 1.5.21-6.4ubuntu2 Depends: mutt (= 1.5.21-6.4ubuntu2) Filename: pool/main/m/mutt/mutt-dbg_1.5.21-6.4ubuntu2_i386.deb Size: 1068342 MD5sum: aa81e22bf97c6dbf938aac059cc52b07 SHA1: 087154dbb1d036d79ffa3a4784bcefbe35789e20 SHA256: 67f55cbf7538f5770cc531f1d0fb71336b7c2b839d7188e9163239cdf44c442b Description: debugging symbols for mutt Homepage: http://www.mutt.org/ Description-md5: 84ae750c0a18926ab30eccaa18b243a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: myspell-af Priority: optional Section: text Installed-Size: 1528 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-af Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/libr/libreoffice-dictionaries/myspell-af_4.2.1-0ubuntu1_all.deb Size: 494800 MD5sum: 4faab855de7b5f3eea1cabb795fd5d65 SHA1: 0004f4053b8061070016a786f317742352d87bc6 SHA256: 8bde2d3fa4d82ca53a941eb48f0fbdc9a1508e7dff21ca3692b40f1d05999625 Description: Afrikaans dictionary for myspell Description-md5: dff25a110b79c9a27d60c36b639b7dd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-bg Priority: optional Section: text Installed-Size: 1632 Maintainer: Ubuntu Developers Original-Maintainer: Damyan Ivanov Architecture: all Source: bgoffice Version: 4.1-3ubuntu1 Provides: myspell-dictionary, myspell-dictionary-bg Depends: dictionaries-common Suggests: openoffice.org Filename: pool/main/b/bgoffice/myspell-bg_4.1-3ubuntu1_all.deb Size: 305828 MD5sum: b06db8b98a21239c93c9181e753e33ff SHA1: 9b75419addc2375520d88de68b6452104c32ac0e SHA256: 29895cc347dd5e8fc16894239b92933b1d257ad0b35a46014caa6abe4e4a807b Description: Bulgarian dictionary for myspell Homepage: http://bgoffice.sourceforge.net/ Description-md5: 92826c51e9411544ec343d6176e62ebb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ca Priority: extra Section: text Installed-Size: 5066 Maintainer: Ubuntu Developers Original-Maintainer: Jordi Mallach Architecture: all Source: softcatala-spell Version: 0.20111230b-4 Provides: myspell-dictionary, myspell-dictionary-ca, openoffice.org-spellcheck-ca Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: hunspell-ca Filename: pool/main/s/softcatala-spell/myspell-ca_0.20111230b-4_all.deb Size: 1345714 MD5sum: 01c7b913d9c79664204385cb30e4d923 SHA1: 7eb89979f2ed8d82ebbb45869851c4f3a478a0cc SHA256: aea09e12e76f165ebf7f80e4f2ecef32985907daee8563ce7a8a858453f83785 Description: Catalan dictionary for myspell Homepage: http://www.softcatala.org/wiki/Corrector_ortogr%C3%A0fic Description-md5: a5f36e01a63c3393173197068a570164 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-cs Priority: optional Section: text Installed-Size: 3815 Maintainer: Ubuntu Developers Original-Maintainer: Petr Čech Architecture: all Source: ispell-czech Version: 20040229-5.1 Replaces: myspell-cs-cz Provides: myspell-cs-cz, myspell-dictionary, myspell-dictionary-cs Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: myspell-cs-cz, openoffice.org (<= 1.0.3-2) Filename: pool/main/i/ispell-czech/myspell-cs_20040229-5.1_all.deb Size: 994030 MD5sum: 74b83cb495d08986397f2c67e345c3da SHA1: 8d4863f4e0ddaece003ce0f77a6bb1f4c2e321be SHA256: 8fd885efb1b5c92ef258524b196915ca06444116d59158a61fa7723b320b37d1 Description: Czech dictionary for myspell Description-md5: c031759b3234764e9db6056495829384 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-el-gr Priority: optional Section: text Installed-Size: 6927 Maintainer: Ubuntu Developers Original-Maintainer: Nick Andrik Architecture: all Version: 0.8-2 Provides: myspell-dictionary-el Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: openoffice.org (>= 1.0.3-3) Breaks: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-el-gr/myspell-el-gr_0.8-2_all.deb Size: 1547622 MD5sum: deb67fdad224c5f8b2e9651edf3a8ef6 SHA1: 7f19c0d31be174981e084b9fa292b0b698e3771a SHA256: 370989e7019a4177c8de26654e433fe380764c186402e02ad1c26bb6af832d75 Description: Greek (el_GR) dictionary for myspell Homepage: http://elspell.math.upatras.gr/?section=oofficespell Description-md5: 3e60ad7a0abf018faf01b83d726435ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-en-au Priority: optional Section: text Installed-Size: 622 Maintainer: Ubuntu Developers Original-Maintainer: John Steele Scott Architecture: all Source: openoffice.org-en-au Version: 2.1-5.4 Provides: myspell-dictionary, myspell-dictionary-en Depends: dictionaries-common (>= 1.0) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/o/openoffice.org-en-au/myspell-en-au_2.1-5.4_all.deb Size: 244154 MD5sum: 8d5df7986d2354b66cfe7870d1552d88 SHA1: 74a8380f0f157ec427a47873beff53e02faa95ad SHA256: 67a8da24a0709f829853fd0e5ec90bbf79e9ed8ad1aff341599ef5b25bcbe8e5 Description: English_australian dictionary for myspell Description-md5: 727c1a6eef26da76541812e0a442e2ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-en-gb Priority: optional Section: text Installed-Size: 804 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-en Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/libr/libreoffice-dictionaries/myspell-en-gb_4.2.1-0ubuntu1_all.deb Size: 210292 MD5sum: 8bb37632ce6e8c43ecc581cb0538ce4a SHA1: 9ef71e3c5c2f48c26a230f4d382b4daf96a10894 SHA256: 4d315bcb4383700660c4550de3ac75272d361791a1584b7bf8a8ed4ffedb4ede Description: English_british dictionary for myspell Description-md5: 4cd67d31e23eceb33e58a659c075d541 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-en-us Priority: optional Section: text Installed-Size: 735 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-en Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/libr/libreoffice-dictionaries/myspell-en-us_4.2.1-0ubuntu1_all.deb Size: 195026 MD5sum: 3415c38d7e0b4a844745423de1f99664 SHA1: c530a597ce25010b9865ef1e51b9d3277f041ace SHA256: b5cfcab2f49d0bb8677979e761b90f8d4e6efd3ee8d5da6ebb1b2c18a26eb1ee Description: English_american dictionary for myspell Description-md5: d4566f2c99b42dc29231f9b492f5c5d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Package: myspell-en-za Priority: optional Section: text Installed-Size: 663 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-en Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/libr/libreoffice-dictionaries/myspell-en-za_4.2.1-0ubuntu1_all.deb Size: 233200 MD5sum: 67d468897e2595ddfee4df99925f0d7a SHA1: 1bfab3245ee69ac1fc7559096f7b3b8f01f2eefa SHA256: 7a3d643a4f55ad5ae0e06350f503259a1050c8080abe9ac6d362e2b8f43bc433 Description: English_southafrican dictionary for myspell Description-md5: f5139e72fe6ca063f524c96600736b46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-eo Priority: optional Section: text Installed-Size: 321 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: eo-spell Version: 2.1.2000.02.25-45 Replaces: openoffice.org-spellcheck-eo Provides: myspell-dictionary, myspell-dictionary-eo, openoffice.org-spellcheck-eo Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: openoffice.org (<= 1.0.3-2), openoffice.org-spellcheck-eo Filename: pool/main/e/eo-spell/myspell-eo_2.1.2000.02.25-45_all.deb Size: 99234 MD5sum: db33ca6f4a4a74dace7f72ddc50ceff7 SHA1: 56b06b816043e2408ad4d7236d3aca8883c5907f SHA256: 5a6ec02bd048a36c94afcc0bfd43ee46b2b4ae6f8a8c43bc7f75ef3b10ecc45c Description: Esperanto dictionary for myspell Description-md5: efb06099d38aa921d0d62eb891445f30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-es Priority: optional Section: text Installed-Size: 966 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: espa-nol Version: 1.11-4 Replaces: openoffice.org-spellcheck-es Provides: myspell-dictionary, myspell-dictionary-es, openoffice.org-spellcheck-es Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: openoffice.org (<= 1.0.3-2), openoffice.org-spellcheck-es Filename: pool/main/e/espa-nol/myspell-es_1.11-4_all.deb Size: 245542 MD5sum: 22d3c07990be05c09504b49f2cb45fbc SHA1: 18c11733eb1e49b1531e7ffcf9d660ecbc3a0620 SHA256: 0f1eade205fb870cf522f925b8df6c9a10d25203de9fe7a9d1fd7a32df5ce7d5 Description: Spanish dictionary for myspell Homepage: http://www.datsi.fi.upm.es/~coes Description-md5: 6eb6c0f4d9c2f3dfa5e0b7f9e120aabe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-et Priority: optional Section: text Installed-Size: 4589 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: ispell-et Version: 1:20030606-20 Provides: hunspell-dictionary, hunspell-dictionary-et, hunspell-et, hyphen-et, hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-et, myspell-dictionary, myspell-dictionary-et Depends: dictionaries-common (>= 0.49.2) Breaks: openoffice.org (<= 1.0.3-2) Filename: pool/main/i/ispell-et/myspell-et_20030606-20_all.deb Size: 881768 MD5sum: 265a19684281faea35efc1d77f306eff SHA1: 863885718510829a9662884e812256e019f79640 SHA256: dd60e13cff3a7e73ab025d4fbdd4d55cd0ffbb6eb138c223f72fe10181603477 Description: Estonian dictionary for MySpell Homepage: http://www.meso.ee/~jjpp/speller/ Description-md5: 73bc3a5d26efc85296706cbd418a6d49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-fa Priority: optional Section: text Installed-Size: 6940 Maintainer: Ubuntu Developers Original-Maintainer: Debian Arabic Packaging Team Architecture: all Version: 0.20070816-3 Provides: myspell-dictionary, myspell-dictionary-fa Depends: dictionaries-common Filename: pool/main/m/myspell-fa/myspell-fa_0.20070816-3_all.deb Size: 921408 MD5sum: 5d986f7d29ae057131cc1c3fd2022ca0 SHA1: f9245b74d11c55f54d0540b38d1347ebd00905eb SHA256: 51aef09579559a51ec7f5e1bb84531aee0951fc8a8882cfd3195f847e539809e Description: Persian (Farsi) dictionary for myspell Homepage: http://wiki.services.openoffice.org/wiki/Dictionaries Description-md5: 86964fd6e44c69b05780ce29e42f8eba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-fo Priority: optional Section: text Installed-Size: 4719 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: ispell-fo Version: 0.4.2-1 Replaces: myspell-fo-fo, openoffice.org-spellcheck-fo Provides: myspell-dictionary, myspell-dictionary-fo, myspell-fo-fo, openoffice.org-spellcheck-fo Depends: dictionaries-common (>= 1.1) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: myspell-fo-fo, openoffice.org (<= 1.0.3-2), openoffice.org-spellcheck-fo Filename: pool/main/i/ispell-fo/myspell-fo_0.4.2-1_all.deb Size: 1119292 MD5sum: 357e25b4e3f5e6e8b44cbab24faabdb1 SHA1: 6e874ef724402080d240c55af72f800e3eff3b62 SHA256: 0e9eebb9cd83d3b04f4010a4d0c73261903db6fff1cbbcc2be88d002da5e0aae Description: Faroese dictionary for myspell Homepage: http://fo.speling.org Description-md5: 922911029b535b9d5d9837e530ea175a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ga Priority: optional Section: text Installed-Size: 869 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Source: iirish Version: 2.0-22 Provides: myspell-dictionary, myspell-dictionary-ga Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: openoffice.org (>= 1.0.3-3) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/i/iirish/myspell-ga_2.0-22_all.deb Size: 172770 MD5sum: 6fdadb0c003efe1b482b76a62de8be2a SHA1: 09a023f8256216208d6f17a1cf232fbed10ffaf6 SHA256: dd9caa64f7d04ff7b3ebdf57429a3cf406ca950a5dd2aef3485126f0c28f9d23 Description: Irish (Gaeilge) dictionary for OpenOffice and Mozilla Description-md5: 44ea8e22894d28769e679eb95f3e6927 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-gd Priority: optional Section: text Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Source: igaelic Version: 0.50-10 Provides: myspell-dictionary, myspell-dictionary-gd Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/i/igaelic/myspell-gd_0.50-10_all.deb Size: 40064 MD5sum: bf00485b143d3ed28803bb32c42f254b SHA1: 45d7a1c4a0d3bbdaeca44343c1b1b3e8bf5cc692 SHA256: 56796f9fb1225fe631d8469e4a3e55a9057fddbae6d76f7f56318bf62714eed0 Description: Scots Gaelic dictionary for myspell Description-md5: 0031262f4ca42b127b6b61bfa0c22e19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-gv Priority: optional Section: text Installed-Size: 351 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Source: imanx Version: 0.50-11 Provides: myspell-dictionary, myspell-dictionary-gv Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/i/imanx/myspell-gv_0.50-11_all.deb Size: 85770 MD5sum: a3572568257bb616eef5d3c9ed4f3b6e SHA1: fd3e76dce8a4ce8c8fdc9020f84d396bca8ed009 SHA256: 6624204ce7a65f8ff07517c22c8dd1cc6151b21adfea2c6ed164e7e52f6a4e8f Description: Manx Gaelic dictionary for myspell Description-md5: b1e9228b41761899716090a7095c09b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-he Priority: extra Section: text Installed-Size: 7649 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: all Source: hspell Version: 1.2-2 Provides: myspell-dictionary, myspell-dictionary-he Depends: dictionaries-common Filename: pool/main/h/hspell/myspell-he_1.2-2_all.deb Size: 1235132 MD5sum: 42ca4c218f84791be77af0ab53e9a2a3 SHA1: 007a431dcf89cca1acb9ee82a35236e44c929427 SHA256: 71d9b962af54514182f6d8f42c6dd353016f0ec74bd421cba73a944b55ebf62a Description: Hebrew dictionary for myspell Homepage: http://hspell.ivrix.org.il/ Description-md5: 590ec6d507a0c39ecd5f0e6bbd408231 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-hr Priority: optional Section: text Installed-Size: 2330 Maintainer: Ubuntu Developers Original-Maintainer: Vedran Furač Architecture: all Version: 20060617-2.4 Provides: myspell-dictionary, myspell-dictionary-hr Depends: dictionaries-common (>= 0.10) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-hr/myspell-hr_20060617-2.4_all.deb Size: 747340 MD5sum: ab314b64fb9e76dcd2de95e5d0873e8a SHA1: 6401a3ce6d91018568722db5e2d05a09512beb6e SHA256: 4f10d2b454711b88c023ae9319c7eff61cd9a525fb5eef9c4c517a1e26870881 Description: Croatian dictionary for myspell Description-md5: f05f816ad9654805cd9218058f0b0b41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-hy Priority: optional Section: text Installed-Size: 2112 Maintainer: Ubuntu Developers Original-Maintainer: Alan Baghumian Architecture: all Version: 0.20.0-2 Provides: myspell-dictionary, myspell-dictionary-hy Depends: dictionaries-common Suggests: openoffice.org, iceweasel, icedove Filename: pool/main/m/myspell-hy/myspell-hy_0.20.0-2_all.deb Size: 285030 MD5sum: ecabfacd5123b6e40d804d5034532190 SHA1: 13d79e7f1c39966504b1dd238db9e2fa1b2053aa SHA256: 9b09729e06c383f6970f68cb50e96da72b9f1dbf04daa1d1aff6992060348656 Description: Armenian dictionary for myspell Homepage: http://sf.net/projects/armspell Description-md5: 3bea11748af06d8105fef83ff6bed015 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-it Priority: optional Section: text Installed-Size: 1385 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-it Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/libr/libreoffice-dictionaries/myspell-it_4.2.1-0ubuntu1_all.deb Size: 298850 MD5sum: dd106f21b4f2642bf3a23506d97fc7bf SHA1: f52730dcb22fafc0501ea9b719e2bf616614f405 SHA256: d669977fcfc5ef9482404f17951035304dd6f96dfd4d0a130e550c5d8f408459 Description: Italian dictionary for myspell Description-md5: 681c98510c7466533b1e2da26dd5037d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ku Priority: optional Section: text Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian Arabic Packaging Team Architecture: all Version: 0.20.0-2build1 Provides: myspell-dictionary, myspell-dictionary-ku Depends: dictionaries-common Filename: pool/main/m/myspell-ku/myspell-ku_0.20.0-2build1_all.deb Size: 29710 MD5sum: 62d28943afd7b9a6ba9a09714409f1ba SHA1: 1a3cc466d08d4f4c971053cd7664df720ff03b74 SHA256: 91a459e54df5a061da22f29d40a09b7a34c7fa62058791a2fd9b515c06967db2 Description: Kurdish (Kurmanji) dictionary for myspell Homepage: http://sourceforge.net/projects/myspellkurdish/ Description-md5: 78ef101ba2a80dce52c8924e1d72c2e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-lt Priority: optional Section: text Installed-Size: 1401 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Source: ispell-lt Version: 1.2.1-4 Provides: myspell-dictionary, myspell-dictionary-lt Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/i/ispell-lt/myspell-lt_1.2.1-4_all.deb Size: 365286 MD5sum: d4b8f6cdc185d5deebc9fdfbb3b9e70a SHA1: 0401f26eb09f3aadb77aea53d03130cf62e75ec5 SHA256: 9998a1e857ace076d119a25df186ce68b1cf9266be5d92337bb7af7d00a84f90 Description: myspell dictionary for Lithuanian (LT) Description-md5: 346973dc2246f468f7fa08afec8f19c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-lv Priority: optional Section: text Installed-Size: 2400 Maintainer: Ubuntu Developers Original-Maintainer: Aigars Mahinovs Architecture: all Version: 0.9.6-1 Provides: hunspell-dictionary, hunspell-dictionary-lv, hunspell-lv, hyphen-hyphenation-patterns, hyphen-hyphenation-patterns-lv, hyphen-lv, myspell-dictionary, myspell-dictionary-lv Depends: dictionaries-common (>= 0.49.2) Breaks: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-lv/myspell-lv_0.9.6-1_all.deb Size: 749040 MD5sum: 395c0239bd28d566d4f2b53507b87397 SHA1: 9f7ec5225c850bd927689903dce515fc5f95e9ea SHA256: 088205c86442c2e63d99e5892bc334f25d991f38c21d9a78641bcca5df4031af Description: Latvian dictionary for Myspell Homepage: http://dict.dv.lv/ Description-md5: fe0abc7670e3a3b8363d6202e10f75c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-nb Priority: optional Section: text Installed-Size: 5342 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: all Source: norwegian Version: 2.0.10-5.1 Provides: myspell-dictionary, myspell-dictionary-nb, openoffice.org-spellcheck-nb Depends: dictionaries-common (>> 0.10) | openoffice.org-updatedicts Filename: pool/main/n/norwegian/myspell-nb_2.0.10-5.1_all.deb Size: 1181208 MD5sum: 72f4da403e53b268d6db12b77870004f SHA1: 160ce4c12b3ad60867fc9e4c718fbb23378d2539 SHA256: 222c1475c9cc7bb97cb571ad7379488d469d45e6126e3609344772f933fcf5e7 Description: Norwegian Bokmål dictionary for myspell Description-md5: 2cfe903e2ee87a09a490bd46c3b711d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-nl Priority: optional Section: text Installed-Size: 2447 Maintainer: Ubuntu Developers Original-Maintainer: Thijs Kinkhorst Architecture: all Source: dutch Version: 1:2.10-1 Provides: myspell-dictionary, myspell-dictionary-nl Depends: dictionaries-common | openoffice.org-updatedicts Breaks: hunspell (<< 1.2.8), libhunspell-1.2-0 (<< 1.2.8) Filename: pool/main/d/dutch/myspell-nl_2.10-1_all.deb Size: 813434 MD5sum: 11e89b81c0c58068b16e81e6f740bc2c SHA1: a6f106fc1084e784ab6d3f5579497b5a2424ffa6 SHA256: 89066ff5d813364988bf7374193c2df8952b9785637268599c5b10db6f31748f Description: Dutch dictionary for Hunspell Homepage: http://www.opentaal.org/ Description-md5: 822d3b8e7e01c818cca9d154a8dddc8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-nn Priority: optional Section: text Installed-Size: 2717 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: all Source: norwegian Version: 2.0.10-5.1 Provides: myspell-dictionary, myspell-dictionary-nn, openoffice.org-spellcheck-nn Depends: dictionaries-common (>> 0.10) | openoffice.org-updatedicts Filename: pool/main/n/norwegian/myspell-nn_2.0.10-5.1_all.deb Size: 670708 MD5sum: e26945717be2cd607e99e0792ea404bb SHA1: d1afe4221dc67d9c9f9127a33ba43fde23580c55 SHA256: 0ad40d926f15a97e223335681e2c1af60d87f23081f548fd4133db7d1566af1f Description: Norwegian Nynorsk dictionary for myspell Description-md5: 7183af419c88fa2510f65f3f461d6bfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-nr Priority: optional Section: text Installed-Size: 171 Maintainer: Matthias Klose Architecture: all Source: dict-nr Version: 20070206-4ubuntu1 Provides: openoffice.org-spellcheck-nr Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-nr/myspell-nr_20070206-4ubuntu1_all.deb Size: 57580 MD5sum: 69ff57ee91f064e36d40ba3b19ce5587 SHA1: 09b42665244614ff0d8b9ef62a81a5e13b6a91cf SHA256: f311b58528a5beffccb3ca0494f86125af0e565ec0bfd3978d7cdab6533583eb Description: The Ndebele dictionary for myspell Description-md5: a484ea59fb8beecf65a3c0f417ac84d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ns Priority: optional Section: text Installed-Size: 96 Maintainer: Matthias Klose Architecture: all Source: dict-ns Version: 20070206-4ubuntu1 Provides: openoffice.org-spellcheck-ns Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-ns/myspell-ns_20070206-4ubuntu1_all.deb Size: 29576 MD5sum: 4098eaee3d451498802447b4aa3766a4 SHA1: ee15eec51d4115106da55dc5e92d46382d355fa0 SHA256: 99c63a1c7c75e44b1a4ff9de82fa8bc0495beb6efdc5632a1263d096e1a8160f Description: Northern Sotho dictionary for myspell Description-md5: 87abad7416b9ac8e9870f668bc517892 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: myspell-pl Priority: optional Section: text Installed-Size: 4593 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: all Source: ipolish Version: 20130519-1 Provides: hunspell-dictionary, hunspell-dictionary-pl, myspell-dictionary, myspell-dictionary-pl Depends: dictionaries-common (>= 1.10) Suggests: libreoffice Filename: pool/main/i/ipolish/myspell-pl_20130519-1_all.deb Size: 1093342 MD5sum: eb8f822ada09175dbc782ecee5cd5830 SHA1: c31668eb3307fc941c21d637d310da327267b26f SHA256: d9120da21b93215fee9482ced1a31b852192938bf0aadcdcc7b0066761d84b4d Description: Polish dictionary for myspell Homepage: http://www.sjp.pl/ Description-md5: 7071c132c3552c83f99ff7c2dab98f11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-pt Priority: optional Section: text Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: myspell.pt Version: 20091013-4 Depends: myspell-pt-pt, myspell-pt-br Filename: pool/main/m/myspell.pt/myspell-pt_20091013-4_all.deb Size: 1254 MD5sum: 7ce2771254b325ff479423c8d6583530 SHA1: 432de52a750d9d9d3c548f5dc85e17efe67afd5b SHA256: e7e43466206841eec277556298c766b13aaf12cd8b899a4d46ce6ca394c580d6 Description: Portuguese dictionaries for myspell Homepage: http://natura.di.uminho.pt/wiki/index.cgi?Myspell Description-md5: 203de3857e5a644e4f8fc8649f08d25d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-pt-br Priority: optional Section: text Installed-Size: 5568 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Version: 20131030-1 Provides: myspell-dictionary, myspell-dictionary-pt, myspell-dictionary-pt-br Depends: dictionaries-common (>= 0.20) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Breaks: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-pt-br/myspell-pt-br_20131030-1_all.deb Size: 1132430 MD5sum: c338df4783f48150d70fecfa850dc79c SHA1: 6ec46537d8758fad98bcc4a67ef606287082d96a SHA256: 80230f6098ee11d062c7b9b682f6dbdc577d8f78b970c9784704d99cafede295 Description: Brazilian Portuguese dictionary for myspell Homepage: http://pt-br.libreoffice.org/projetos/projeto-vero-verificador-ortografico Description-md5: 0752063363586b7b996cadbe1945006b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-pt-pt Priority: optional Section: text Installed-Size: 532 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: myspell.pt Version: 20091013-4 Provides: myspell-dictionary, myspell-dictionary-pt, myspell-dictionary-pt-pt Depends: dictionaries-common (>= 0.20) Suggests: hunspell, libreoffice-core | openoffice.org-hunspell | openoffice.org-core (>= 2.0.2), iceape-browser | iceweasel | icedove Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell.pt/myspell-pt-pt_20091013-4_all.deb Size: 159352 MD5sum: b55890ea22f852d48e1a554ce57dc691 SHA1: 4e47b16625df166c62e49a62502be5ac5caba430 SHA256: ab49bdf04005cb350ba709e7454b29a98543c6a81fa6e843239a72ca1863d3c9 Description: European Portuguese dictionary for myspell Homepage: http://natura.di.uminho.pt/wiki/index.cgi?Myspell Description-md5: decc49d6c901c6ff91999e9db541bd66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-sk Priority: optional Section: text Installed-Size: 2053 Maintainer: Ubuntu Developers Original-Maintainer: Miroslav Kure Architecture: all Version: 0.5.5a-2.3fakesync1 Provides: myspell-dictionary, myspell-dictionary-sk Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: openoffice.org (>= 1.0.3-3) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-sk/myspell-sk_0.5.5a-2.3fakesync1_all.deb Size: 614610 MD5sum: 3ed44629af9d5bbfa8e231140327b7f5 SHA1: bea4c21afe491532c0bcb8ddfe13eadecb43aaa7 SHA256: b1f3445589d388de472ffb99c577dd31d9704cd0949e602e9baa145aaae9a469 Description: Slovak dictionary for myspell Description-md5: b74df9e6a0dbfe44ba4bbbf091bb6061 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-sl Priority: optional Section: text Installed-Size: 2943 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 1.0-5 Provides: myspell-dictionary Depends: dictionaries-common (>= 0.10) Conflicts: openoffice.org (<= 1.0.3-2) Filename: pool/main/m/myspell-sl/myspell-sl_1.0-5_all.deb Size: 1181052 MD5sum: b97733b22b099680852d700f0be775e8 SHA1: 83766b2e6fa4c4e10bae9fa4ff59b16b842c957e SHA256: 2fa6bd02da0a70c9db41f9ab244c5389a893a3ac8c568e41939e9dde6dfddcc5 Description: Slovenian dictionary for myspell Description-md5: 6f07430fa03c3e09b5d2926575681510 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ss Priority: optional Section: text Installed-Size: 442 Maintainer: Matthias Klose Architecture: all Source: dict-ss Version: 20070206-4ubuntu1 Provides: openoffice.org-spellcheck-ss Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-ss/myspell-ss_20070206-4ubuntu1_all.deb Size: 162044 MD5sum: bd31eb1edbbeb055a7dafaba5a860195 SHA1: e040fec2cb5db1f752f9bf6cdccf2bb61affcd7d SHA256: 8bd127653121823b0672798af6f9001166b12cdb300e67e4f84473236f719c25 Description: The Swazi dictionary for myspell Description-md5: b9f925b560a07d00bac50534914c1d49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-st Priority: optional Section: text Installed-Size: 200 Maintainer: Matthias Klose Architecture: all Source: dict-st Version: 20070206-4 Provides: openoffice.org-spellcheck-st Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-st/myspell-st_20070206-4_all.deb Size: 55990 MD5sum: 1855c0bf4aaf8429720cc7b9b436cfed SHA1: 88200562d931bc81d49598d5f1e9946530bc11f8 SHA256: 7628be170f80e381ee9f738c184dfa55aa3e2556b8a088681c05716a30bfdbab Description: The Southern Sotho dictionary for myspell Description-md5: 1c5dd68ad10d1e279187aa8cd65b0b8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-sv-se Priority: optional Section: text Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: Jon Lachmann (JoTaB) Architecture: all Source: hunspell-sv Version: 1.51-1 Depends: hunspell-sv-se Filename: pool/main/h/hunspell-sv/myspell-sv-se_1.51-1_all.deb Size: 2020 MD5sum: 2ff6623474f96758cd72c72e91ef92ee SHA1: 94fe8421019eccf27fbfdc5dc116b0722228937e SHA256: 9e14de9fdf4dc294af51aebe72098aac3c1421dbe36dccab4d971e3e88345514 Description: transitional dummy package Homepage: http://dsso.se Description-md5: a2813983ea56c0aaa10047150775e45c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-sw Priority: optional Section: text Installed-Size: 663 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-sw Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: openoffice.org Filename: pool/main/libr/libreoffice-dictionaries/myspell-sw_4.2.1-0ubuntu1_all.deb Size: 192236 MD5sum: 312dbe8d18eeb3c8914a96c660a99182 SHA1: dce9a629ff987ad1fc5ac1dc0275dda3f60255c3 SHA256: 28dbb1e0fd5f48434cc97921d03017c9b0bc6e2f69a8e5f6a630e25ae81f5047 Description: Swahili dictionary for myspell Description-md5: 7cfa125ed64e072fdf8f93eb29192e59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-th Priority: optional Section: text Installed-Size: 387 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Provides: myspell-dictionary, myspell-dictionary-th Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Suggests: openoffice.org (>= 1.9.126) Filename: pool/main/libr/libreoffice-dictionaries/myspell-th_4.2.1-0ubuntu1_all.deb Size: 132152 MD5sum: 03205e5ecb443e2f0929c9e7cd613bcf SHA1: 433e5a2fbd3513567dfb41c005e29a4c978ca35b SHA256: a002fd0e51dc07fa304434a6f2a1359e367e308f1666209314b25ab9eb361301 Description: Thai dictionary for myspell Description-md5: c7e16f1b6196e56bdaab339c05869ffc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-tn Priority: optional Section: text Installed-Size: 133 Maintainer: Matthias Klose Architecture: all Source: dict-tn Version: 20070206-4ubuntu1 Provides: openoffice.org-spellcheck-tn Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-tn/myspell-tn_20070206-4ubuntu1_all.deb Size: 44028 MD5sum: e01d72e4f31520dac1dfcc00f5f19348 SHA1: 1fe08e5a5a94248a2a3d2107759cc7dc0d9db7f7 SHA256: 1dac75150dd378b1329ea097966c50eb4b33ad399643ade46980cf9676889b63 Description: The Tswana dictionary for myspell Description-md5: 086296a3f03eba1657a4382f4df289d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ts Priority: optional Section: text Installed-Size: 289 Maintainer: Matthias Klose Architecture: all Source: dict-ts Version: 20070207-4ubuntu1 Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-ts/myspell-ts_20070207-4ubuntu1_all.deb Size: 107004 MD5sum: 89495af0c494bd80bffa2acb088d09a0 SHA1: d43d52bbbe72f547406c1e38121e15e82586ba4a SHA256: 1692639b491ff5fa775720ac322bd598c5255c0604bc8352e42158e8e0a652bb Description: The Tsonga dictionary for myspell Description-md5: 70f91e0597bfcc51299322e33720b2c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-uk Priority: optional Section: text Installed-Size: 2819 Maintainer: Ubuntu Developers Original-Maintainer: Євгеній Мещеряков Architecture: all Source: ispell-uk Version: 1.6.5-2 Provides: myspell-dictionary, myspell-dictionary-uk Depends: dictionaries-common (>= 1.11.2~) Suggests: libreoffice Filename: pool/main/i/ispell-uk/myspell-uk_1.6.5-2_all.deb Size: 522488 MD5sum: 887fb5472b5330e9232d9d54dde728a3 SHA1: 1b3797ec2f0d10aa23f8ce27d361538363d7bacb SHA256: 2e4998ab75bb1eaf81eb98c59b9c326af554a8f12304b831c79f2d62f993962d Description: Ukrainian dictionary for myspell Homepage: http://ispell-uk.sourceforge.net Description-md5: 055184e8f2d270d0d114ef6eaa8eae5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-ve Priority: optional Section: text Installed-Size: 124 Maintainer: Matthias Klose Architecture: all Source: dict-ve Version: 20070206-3ubuntu1 Provides: openoffice.org-spellcheck-ve Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-ve/myspell-ve_20070206-3ubuntu1_all.deb Size: 41876 MD5sum: eae269101a2db73a7a323cfb046193ac SHA1: d0df806a41626d23fdbce4cab8d889eb30364e34 SHA256: e38d49e1418193c338c6070c1be3689c7ea6bd6ddc5f1ec9287351464e3d1ca5 Description: The Venda dictionary for myspell Description-md5: 1c99a5bb09cc127617b6d7c5f3ba51ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-xh Priority: optional Section: text Installed-Size: 219 Maintainer: Matthias Klose Architecture: all Source: dict-xh Version: 20070206-4ubuntu1 Provides: openoffice.org-spellcheck-xh Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-xh/myspell-xh_20070206-4ubuntu1_all.deb Size: 75560 MD5sum: 1224cff448a4a9d49502604983bc19f4 SHA1: 11be63f836d09214cd63442654635b4e4aff286b SHA256: fc737750aad9444508f30ff00fb7b9c0910ed9e74d41053712811eb3d5e9a4a9 Description: The Xhosa dictionary for myspell Description-md5: 71f00c9442522710736b50a543a81268 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: myspell-zu Priority: optional Section: text Installed-Size: 1216 Maintainer: Matthias Klose Architecture: all Source: dict-zu Version: 20070207-5ubuntu1 Provides: openoffice.org-spellcheck-zu Depends: dictionaries-common (>= 0.49.2) Filename: pool/main/d/dict-zu/myspell-zu_20070207-5ubuntu1_all.deb Size: 290232 MD5sum: e412ed67dfa8b0c1fbc725e31a43e026 SHA1: e8abd1e0fd3fc366eb1aa58346bdc572f8299378 SHA256: e9f7732fd520cb3c6671a6e822f03ac79c3c837a1b99d3cde6e7b006db6920d0 Description: The Zulu dictionary for myspell Description-md5: 9be93170f8a951272976dcb43fe5b36a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mysql-client Priority: optional Section: database Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: all Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Depends: mysql-client-5.5 Filename: pool/main/m/mysql-5.5/mysql-client_5.5.35+dfsg-1ubuntu1_all.deb Size: 12336 MD5sum: 821c824560e0a641181f7fd3e1b6ecd3 SHA1: b893aa7d0989c8a750e13143cde6f7ebf67248be SHA256: 1107d27d6e3c8c7652ae2d245995b6b9c2c89f2ae79f48c12cea2ea68b5147f2 Description: MySQL database client (metapackage depending on the latest version) Homepage: http://dev.mysql.com/ Description-md5: 14f0974c23b8a9eb6d18e6372c961e4c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master Package: mysql-client-5.5 Priority: optional Section: database Installed-Size: 29024 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: i386 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Replaces: mysql-client (<< 5.5.35+dfsg-1ubuntu1), mysql-client-5.0, mysql-client-5.1 Provides: mysql-client, virtual-mysql-client Depends: debianutils (>= 1.6), libdbd-mysql-perl (>= 1.2202), libdbi-perl, libterm-readkey-perl, mysql-client-core-5.5, mysql-common (>= 5.5.35+dfsg-1ubuntu1), perl, libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), zlib1g (>= 1:1.1.4) Breaks: mysql-client (<< 5.5.35+dfsg-1ubuntu1), mysql-client-5.0, mysql-client-5.1 Filename: pool/main/m/mysql-5.5/mysql-client-5.5_5.5.35+dfsg-1ubuntu1_i386.deb Size: 1428766 MD5sum: 2f4d74ddbc3e03e38f8b97acb5c3bcf0 SHA1: 473a1731871a5cf59ca09f26b597f27d7b7aa8fc SHA256: ef3dcd3eb67faafd4a0a0d2137ffd72360376b93422e85e4d40f3db936a12c87 Description: MySQL database client binaries Homepage: http://dev.mysql.com/ Description-md5: 70aef1a292fc318f9af72aa188c17716 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: mysql-client-core-5.5 Priority: optional Section: database Installed-Size: 6635 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: i386 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Replaces: mysql-client (<< 5.5.35+dfsg-1ubuntu1), mysql-client-5.0, mysql-client-core-5.1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libreadline6 (>= 6.0), zlib1g (>= 1:1.1.4) Breaks: mysql-client (<< 5.5.35+dfsg-1ubuntu1), mysql-client-5.0, mysql-client-core-5.1 Filename: pool/main/m/mysql-5.5/mysql-client-core-5.5_5.5.35+dfsg-1ubuntu1_i386.deb Size: 700586 MD5sum: ccee828da3d9a70bcb9df13f06801c96 SHA1: 14527c9b924850e684acffd97a05dcf139b4f8d9 SHA256: e6c8ab5d280346dee5fed5b32713ca0100bd7d61e8bd7f192587110ff5a97229 Description: MySQL database core client binaries Homepage: http://dev.mysql.com/ Description-md5: 94a7aede8ba9259b1382d4dfca4cdde0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: mysql-common Priority: optional Section: database Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: all Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Breaks: amarok (<< 2.5.0-2), mysql-client-5.1 (<< 5.5), mysql-server-5.1 (<< 5.5), mysql-server-core-5.1 (<< 5.5) Filename: pool/main/m/mysql-5.5/mysql-common_5.5.35+dfsg-1ubuntu1_all.deb Size: 14114 MD5sum: 073fc2420db6acb4ec3b00264d84d03a SHA1: 67500c77128ed67af0b494a3e007710a8bd24225 SHA256: 4c9bc08aaf235fb503ed20f3619a7d59ee341027cf42631e6ebf059a51061668 Description: MySQL database common files, e.g. /etc/mysql/my.cnf Multi-Arch: foreign Homepage: http://dev.mysql.com/ Description-md5: 562d254c602f89e4390e28f6362283c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: mysql-server Priority: optional Section: database Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: all Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Depends: mysql-server-5.5 Filename: pool/main/m/mysql-5.5/mysql-server_5.5.35+dfsg-1ubuntu1_all.deb Size: 12460 MD5sum: d16af3d1cdb56d9c901566a0f9a47a0a SHA1: cc2ca722277fa1b00a32000985cffb6e188a798b SHA256: 37dba3b3f7094813f557c3852d0891fef7959e3d10134fae2627aaa270c92ab2 Description: MySQL database server (metapackage depending on the latest version) Homepage: http://dev.mysql.com/ Description-md5: e519a9c4f87658afbd1d077af63f9269 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: mysql-server-5.5 Priority: optional Section: database Installed-Size: 31154 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: i386 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Replaces: libmysqlclient-dev (<< 5.5.17~), mysql-client-5.1, mysql-server (<< 5.5.35+dfsg-1ubuntu1), mysql-server-5.0, mysql-server-5.1 Provides: virtual-mysql-server Depends: initscripts (>= 2.88dsf-13.3), libdbi-perl, lsb-base (>= 3.0-10), mysql-client-5.5 (>= 5.5.35+dfsg-1ubuntu1), mysql-server-core-5.5 (>= 5.5.35+dfsg-1ubuntu1), passwd, perl (>= 5.6), psmisc, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: adduser (>= 3.40), debconf, mysql-common (>= 5.5.35+dfsg-1ubuntu1) Recommends: libhtml-template-perl Suggests: tinyca, mailx Breaks: libmysqlclient-dev (<< 5.5.17~), mysql-client-5.1, mysql-server (<< 5.5.35+dfsg-1ubuntu1), mysql-server-5.1 Filename: pool/main/m/mysql-5.5/mysql-server-5.5_5.5.35+dfsg-1ubuntu1_i386.deb Size: 2080154 MD5sum: 3c188a6085690b6c2263c143a6cb518a SHA1: 013092f2eb5639c38282162f805fde8c40b0b133 SHA256: f3fc2d0c6d90a67c54ae23e02779aeb00d0b00f41ff2302d638895cab109c1c8 Description: MySQL database server binaries and system database setup Homepage: http://dev.mysql.com/ Description-md5: 3ae11e16f793b3ee84f73a5fa268ad9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: mysql-server-core-5.5 Priority: optional Section: database Installed-Size: 18189 Maintainer: Ubuntu Developers Original-Maintainer: Debian MySQL Maintainers Architecture: i386 Source: mysql-5.5 Version: 5.5.35+dfsg-1ubuntu1 Replaces: mysql-client-5.1, mysql-server-5.0, mysql-server-5.1, mysql-server-core-5.0, mysql-server-core-5.1 Provides: mysql-server-core Depends: libaio1 (>= 0.3.93), libc6 (>= 2.17), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libwrap0 (>= 7.6-4~), zlib1g (>= 1:1.2.0) Breaks: mysql-client-5.1, mysql-server-5.0, mysql-server-5.1, mysql-server-core-5.1 Filename: pool/main/m/mysql-5.5/mysql-server-core-5.5_5.5.35+dfsg-1ubuntu1_i386.deb Size: 3129234 MD5sum: b37b13e1f9729316c8e366eb6b228f28 SHA1: 5d06d5c4d1e8182e7847ff0ad51a303ebce41542 SHA256: 1d0efe221cfc31882dd02b2cf26e0f7d46d896ae80b5616176ed9553023a2448 Description: MySQL database server binaries Homepage: http://dev.mysql.com/ Description-md5: a54aa75db64667c487b6c9d3800b8153 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: mythes-ca Priority: optional Section: text Installed-Size: 777 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-ca (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-ca, openoffice.org-thesaurus-ca Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-ca, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-ca (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-ca_4.2.1-0ubuntu1_all.deb Size: 159918 MD5sum: def0c65a32f4f8ea952d31f7028fa7df SHA1: 21e3050664c309be420457d4a909666e044b500e SHA256: 8185ec31b5e6613853ad0e6b00bac3585b1e8aab698c3f311564eade49fb2d74 Description: Catalan Thesaurus for LibreOffice Description-md5: a5520349a1af07a300d567ceebfb888b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-cs Priority: optional Section: text Installed-Size: 1987 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-cs (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-cs, openoffice.org-thesaurus-cs Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-cs, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-cs (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-cs_4.2.1-0ubuntu1_all.deb Size: 606278 MD5sum: 74d94520d7b7726591e0a0321a532e9b SHA1: df46de201da4bd474167f18418a1d79c93af94ab SHA256: 788ff6806df3546a12bffc71ed4e4bb3ea7fbddc6570e5d610bb543ce6e9b981 Description: Czech Thesaurus for LibreOffice Description-md5: 59792b0e17ac5510d94b0f5858c79d82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-de Priority: optional Section: text Installed-Size: 14161 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: openthesaurus Version: 20120516-2 Replaces: openoffice.org-thesaurus-de Provides: mythes-thesaurus, mythes-thesaurus-de, openoffice.org-thesaurus-de Depends: libreoffice-core | openoffice.org-core (>= 3.0~), dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9) Filename: pool/main/o/openthesaurus/mythes-de_20120516-2_all.deb Size: 3735270 MD5sum: e08bbb7ef75f6e39997f0dd718dfc3ad SHA1: 94df9063c1991e7ff634c18feb2f39dbeb1ae443 SHA256: 07c7353d7f4b6c9a4d0cc34062131184b704971d267e278dd65b0ded8ebad11f Description: German Thesaurus for OpenOffice.org/LibreOffice Description-md5: 88cf8278e5f5920a7c8e5accb28b2b74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-de-ch Priority: optional Section: text Installed-Size: 14161 Maintainer: Ubuntu Developers Original-Maintainer: Rene Engelhard Architecture: all Source: openthesaurus Version: 20120516-2 Replaces: openoffice.org-thesaurus-de-ch Provides: mythes-thesaurus, mythes-thesaurus-de, openoffice.org-thesaurus-de-ch Depends: libreoffice-core | openoffice.org-core (>= 3.0~), dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9) Filename: pool/main/o/openthesaurus/mythes-de-ch_20120516-2_all.deb Size: 3731064 MD5sum: 7dc8526dd92ea9f3e844c55a189410ba SHA1: 826b749ec5f7383ea54a2817f1ab5007e456de17 SHA256: fbd9d443c2755492a355e40a0856e643c8f7f0b7e77da0efd91c5b6486bf3a6c Description: German Thesaurus for OpenOffice.org/LibreOffice (Swiss Version) Description-md5: 9e53a4ac5ea2768b8c794f40b66774c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-en-au Priority: optional Section: text Installed-Size: 21114 Maintainer: Ubuntu Developers Original-Maintainer: John Steele Scott Architecture: all Source: openoffice.org-en-au Version: 2.1-5.4 Replaces: openoffice.org-thesaurus-en-au (<< 2.1-5.2~) Provides: openoffice.org-thesaurus-en-au, openoffice.org2-thesaurus Depends: dictionaries-common (>= 0.10) Recommends: libreoffice-writer Conflicts: openoffice.org (<< 1.9) Breaks: openoffice.org-thesaurus-en-au (<< 2.1-5.2~) Filename: pool/main/o/openoffice.org-en-au/mythes-en-au_2.1-5.4_all.deb Size: 5136826 MD5sum: fdf8ae25d2e0859a76d3f86332f9f05a SHA1: 8adc10d58d19b371916dc7933d42b1dcb5d1e887 SHA256: 5e1b2970175ef27891284c74a80b36bf39fd793442035b93bc60f42bfbc4cb2a Description: Australian English Thesaurus for OpenOffice.org Description-md5: 7ba8c201fd7908b37ed84e4a8b468dd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-en-us Priority: optional Section: text Installed-Size: 21181 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-en-us (<< 1:3.3.0-7) Provides: mythes-en-gb, mythes-thesaurus, mythes-thesaurus-en, openoffice.org-thesaurus-en-us Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-en, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-en-us (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-en-us_4.2.1-0ubuntu1_all.deb Size: 3016760 MD5sum: 99138c61347e919b573ee58991d4f5a5 SHA1: 7f782ef837f3baf1d5e7d7ffeae21dbc66fca428 SHA256: 7a3e226c119cabe0ee8ae4464bebe7d742404dfdbc6b5c7d9a2b67d56f9b6fbe Description: English Thesaurus for LibreOffice Description-md5: 9ecae14261c114cdf661401d6e90c37c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-fr Priority: optional Section: text Installed-Size: 5236 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-fr (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-fr, openoffice.org-thesaurus-fr Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-fr, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-fr (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-fr_4.2.1-0ubuntu1_all.deb Size: 956310 MD5sum: d4f25d364701cef077238c704981ac25 SHA1: f3b75d0636c3cc8549d9199ee15d127cd5943f2b SHA256: ba7f739d1fedd5cb6c8a8b6c52861342032b98428f8d328500faa80f91dae6e7 Description: French Thesaurus for LibreOffice Description-md5: 0a6ca572c4d95d722e03f2a14e3a112a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-hu Priority: optional Section: text Installed-Size: 2518 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-hu (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-hu, openoffice.org-thesaurus-hu Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-hu, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-hu (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-hu_4.2.1-0ubuntu1_all.deb Size: 432512 MD5sum: 07576d418f7cd0817ee56b1298697d98 SHA1: 624f44dd2a180aa56d0e3b464601c18a993b9bca SHA256: 3c299c16a41e19a5b601e972ebb296195c02948b180a70cf15757d30fe5f6fbd Description: Hungarian Thesaurus for LibreOffice Description-md5: 306bdb4aa6662f0c08ecc7d7e5bd112a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-it Priority: optional Section: text Installed-Size: 2672 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: all Version: 2.0.7.gh.deb1-4.1 Replaces: openoffice.org-thesaurus-it (<< 1:0) Provides: mythes-thesaurus, mythes-thesaurus-it Depends: openoffice.org-core (>= 1.9) | libreoffice-core Conflicts: openoffice.org (<< 1.9) Breaks: openoffice.org-thesaurus-it (<< 1:0) Filename: pool/main/m/mythes-it/mythes-it_2.0.7.gh.deb1-4.1_all.deb Size: 956464 MD5sum: 95b5fc2baa5aa37672d13c1fc20667e1 SHA1: 94db38c09527ff2b04b55e0452a27f9f8db37f74 SHA256: 97beafe5984f93d14cc5de5ec9a4d77191b5a82bd2e672a5bdba356724553e74 Description: Italian Thesaurus for OpenOffice.org 2 Homepage: http://linguistico.sourceforge.net/wiki/doku.php?id=thesaurus_italiano Description-md5: 100224c3b1e33fe13e5397cc011ad694 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-ne Priority: optional Section: text Installed-Size: 1013 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-ne (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-ne, openoffice.org-thesaurus-ne Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-ne, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-ne (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-ne_4.2.1-0ubuntu1_all.deb Size: 163838 MD5sum: eeb1a5eabf159b722442da13a87ca49a SHA1: 9d65cbc1fb76b92493dd7f1057c0a23294bb8a18 SHA256: 868dcb7e3ee619d20f9123dbf343c857bd7a2d8383db2bdcee8fa7bb9aff37cb Description: Nepali Thesaurus for LibreOffice Description-md5: fd81de6c5ee6f0a54fa644869c64b816 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-pl Priority: optional Section: text Installed-Size: 5804 Maintainer: Ubuntu Developers Original-Maintainer: Mateusz Skowronski Architecture: all Source: openoffice.org-thesaurus-pl Version: 1.5-4ubuntu1 Replaces: openoffice.org-thesaurus-pl Provides: mythes-thesaurus, mythes-thesaurus-pl, openoffice.org-thesaurus-pl Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-pl, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9) Filename: pool/main/o/openoffice.org-thesaurus-pl/mythes-pl_1.5-4ubuntu1_all.deb Size: 1569580 MD5sum: 7b6c8bf442b715a6755eeeb75dc30d47 SHA1: 235b97b12e91e68716929ca86cb2f3fa535ae131 SHA256: e31df7fead45fbcee45e35d8124c81d656e33de9839d46df1b8e611ba0b3eea3 Description: Polish thesaurus for LibreOffice/OpenOffice.org Homepage: http://synonimy.ux.pl/ Description-md5: 3a107343aebe7b885d6bcbd43aff3668 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-ro Priority: optional Section: text Installed-Size: 3692 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-ro (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-ro, openoffice.org-thesaurus-ro Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-ro, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-ro (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-ro_4.2.1-0ubuntu1_all.deb Size: 835058 MD5sum: f331c050824650799c5df9bfcf75ded8 SHA1: 2faa29939130d031ffe5b8b3ab7976f511985c95 SHA256: 0d37ea1971e766c569debdb127f2a9f6714201c4b387d3b0545e81c8ded97d76 Description: Romanian Thesaurus for LibreOffice Description-md5: affdc7b81b5598e64d33563c43b99908 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-ru Priority: optional Section: text Installed-Size: 2187 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-ru (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-ru, openoffice.org-thesaurus-ru Depends: libreoffice-core | openoffice.org-core (>= 1.9) | language-support-writing-ru, dictionaries-common (>= 0.10) | openoffice.org-updatedicts Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-ru (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-ru_4.2.1-0ubuntu1_all.deb Size: 189052 MD5sum: 464e100fdbbe93511279f1a937a0d487 SHA1: c258e5492d36eb7c8f0845cb61a04289f33a7f8b SHA256: a8ee725bab26f08e7859aab59e7a9335da1be6d4975a2fc285cc4475013da2c7 Description: Russian Thesaurus for LibreOffice Description-md5: 936dd7d5b43c79b0b7d87ad14182c922 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-sk Priority: optional Section: text Installed-Size: 973 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenOffice Team Architecture: all Source: libreoffice-dictionaries Version: 1:4.2.1-0ubuntu1 Replaces: openoffice.org-thesaurus-sk (<< 1:3.3.0-7) Provides: mythes-thesaurus, mythes-thesaurus-sk, openoffice.org-thesaurus-sk Depends: dictionaries-common (>= 0.10) | openoffice.org Conflicts: openoffice.org (<< 1.9), openoffice.org-thesaurus-sk (<< 1:3.3.0-7) Filename: pool/main/libr/libreoffice-dictionaries/mythes-sk_4.2.1-0ubuntu1_all.deb Size: 217876 MD5sum: d4e3b9f8e1f3d7b6d5cfb4a0de140fa2 SHA1: 6cd876838cfe9df52eb94b056e8a0d5aab831420 SHA256: 091c89652364b49b7e1092fb2d45720d81685693e823d8527e4c17d513d8fe2e Description: Slovak Thesaurus for LibreOffice/OpenOffice.org Description-md5: 534dbd6d87bb681c2dc714e90aebc136 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: mythes-sv Priority: optional Section: text Installed-Size: 768 Maintainer: Gunnar Hjalmarsson Architecture: all Version: 1.3.1-2 Depends: libreoffice-core | openoffice.org-core (>= 3.0~), dictionaries-common (>= 0.10) | openoffice.org-updatedicts Filename: pool/main/m/mythes-sv/mythes-sv_1.3.1-2_all.deb Size: 232680 MD5sum: b04656c8b02059af9c343d214c7d7da8 SHA1: 9cd876fb20b254a7918b7ce6cbd37e0a24c9596c SHA256: 41083b7e2587e32bb8089c1c4c75a73f5fb39f5e57632554696f86e2a5256288 Description: Swedish thesaurus for LibreOffice/OpenOffice.org Homepage: http://extensions.libreoffice.org/extension-center/swedish-thesaurus-based-on-synlex Description-md5: a23b79e092ddb49c8842e66c3f605ecb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nabi Priority: optional Section: x11 Installed-Size: 1276 Maintainer: Ubuntu Developers Original-Maintainer: Debian Korean L10N Architecture: i386 Version: 1.0.0-1 Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.24.0), libhangul1 (>= 0.1.0), libice6 (>= 1:1.0.0), libpango1.0-0 (>= 1.14.0), libsm6, libx11-6 Suggests: imhangul-gtk2 | imhangul-gtk3 Filename: pool/main/n/nabi/nabi_1.0.0-1_i386.deb Size: 514880 MD5sum: 6fe7e27af1345909fd59e6241951fa92 SHA1: e20f75bce1e20a8b34157244062e0ee475636516 SHA256: 88f2eceed629f579b384c54aef0d01066aac1651237ec534c731c3618f1b2fb5 Description: Korean X input method server plus imhangul status monitor Homepage: http://code.google.com/p/nabi/ Description-md5: 91480a8a9fbfd2c9c4bd2c95ebecf4f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: nagios-images Priority: optional Section: net Installed-Size: 5870 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: all Version: 0.8 Filename: pool/main/n/nagios-images/nagios-images_0.8_all.deb Size: 2589042 MD5sum: 26ca1d2240ca174f0201efdc13445f62 SHA1: 33b4db87c2640596e0520215de1ac6b75e330640 SHA256: 61746f83afc75edc634f854c35a286bad4763389ba68c7d1388b9420d6be758b Description: Collection of images and icons for the nagios system Description-md5: 80ce9c4ac2a60b71709fec29eadc38ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-nrpe-plugin Priority: optional Section: net Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: i386 Source: nagios-nrpe Version: 2.15-0ubuntu1 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Recommends: nagios3 | icinga Conflicts: nagios-nrpe-doc Filename: pool/main/n/nagios-nrpe/nagios-nrpe-plugin_2.15-0ubuntu1_i386.deb Size: 12134 MD5sum: aae46f8434b99f1a0f0bc95d46dd02f3 SHA1: 5b9a462703f9a0b7d363cb5baae4f026e4edea98 SHA256: ca01ddccf3ab1cc6e0c2948afc186ee81304a319fbe3e4ae314070a3b21a4b78 Description: Nagios Remote Plugin Executor Plugin Description-md5: c19ebd7d65521f48328173d45f828471 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-nrpe-server Priority: optional Section: net Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: i386 Source: nagios-nrpe Version: 2.15-0ubuntu1 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0), libwrap0 (>= 7.6-4~), lsb-base (>= 3.0-3) Pre-Depends: adduser Recommends: nagios-plugins | nagios-plugins-basic Conflicts: nagios-nrpe-doc Filename: pool/main/n/nagios-nrpe/nagios-nrpe-server_2.15-0ubuntu1_i386.deb Size: 32658 MD5sum: 6de0e4f5dfdee4af5e0bdc1a16ee113e SHA1: 6eac0c1d282151a765215ab064aff781b07c8941 SHA256: 992c5bd15e016784350077a4a6718ce088c981a75476fee3f5510e93c08ab877 Description: Nagios Remote Plugin Executor Server Description-md5: a71d7976e91380d8197e4fb0bcdc04a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-plugins Priority: extra Section: net Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: all Version: 1.5-3ubuntu1 Depends: nagios-plugins-basic, nagios-plugins-standard Suggests: nagios3 | icinga, nagios-plugins-contrib Filename: pool/main/n/nagios-plugins/nagios-plugins_1.5-3ubuntu1_all.deb Size: 7726 MD5sum: ae0883f1ee0ffc58138d914babd2938b SHA1: a1b723e387186e82c83edd682ba949a7b05ce407 SHA256: f63fab04473068ff075d0ac0dd85f1c7f9d86a03b31b37955f50945a33b1c81b Description: Plugins for nagios compatible monitoring systems (metapackage) Homepage: https://www.monitoring-plugins.org Description-md5: 6b4ad5841fa7884cc6f9a6067bf53c15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-plugins-basic Priority: extra Section: net Installed-Size: 1716 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: i386 Source: nagios-plugins Version: 1.5-3ubuntu1 Replaces: nagios-plugins, nagios-plugins-extra (<= 1.3.1.0), nagios-plugins-standard Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0), procps, iputils-ping, ucf Pre-Depends: nagios-plugins-common (>= 1.4.15-6) Suggests: nagios3 | icinga Conflicts: nagios-plugins (<= 1.4.2-3), nagios-plugins-extra (<= 1.3.1.0) Filename: pool/main/n/nagios-plugins/nagios-plugins-basic_1.5-3ubuntu1_i386.deb Size: 231416 MD5sum: 4bb3765b0b83e2b918e8e7e47a2e0c9e SHA1: 0ad871650707628240b434b7d923acce1327bac6 SHA256: d031e2342c1d1a7f0c1a9720d7e5f8c05fae48694ac46bee63706d0672c49409 Description: Plugins for nagios compatible monitoring systems Homepage: https://www.monitoring-plugins.org Description-md5: 522e84046b5a90590a34390555a1052e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-plugins-common Priority: extra Section: net Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: i386 Source: nagios-plugins Version: 1.5-3ubuntu1 Replaces: nagios-plugins-basic (<< 1.4.16-1ubuntu1) Depends: libc6 (>= 2.8), ucf Suggests: nagios3 | icinga Filename: pool/main/n/nagios-plugins/nagios-plugins-common_1.5-3ubuntu1_i386.deb Size: 45468 MD5sum: 7c85b75ba67e0c4cd78658655ba8d703 SHA1: f163ce7f846339f598a5ade6e4e5fbf46c74f531 SHA256: 11e6cc66f54872fca786884ad1c517b946d836a14b39e3f5ee113a1ce9208df7 Description: Common files for plugins for nagios compatible monitoring Homepage: https://www.monitoring-plugins.org Description-md5: 5b61b696dd72392211b1fade5f876052 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios-plugins-standard Priority: extra Section: net Installed-Size: 647 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: i386 Source: nagios-plugins Version: 1.5-3ubuntu1 Replaces: nagios-plugins Depends: libc6 (>= 2.15), ucf, nagios-plugins-basic (>= 1.4.5-2) Recommends: libdbi1 (>= 0.8.4), libldap-2.4-2 (>= 2.4.7), libmysqlclient18 (>= 5.5.24+dfsg-1), libpq5, snmp, libnet-snmp-perl, dnsutils, bind9-host | host, smbclient, whois, rpcbind Suggests: nagios3 | icinga, postfix | sendmail-bin | exim4-daemon-heavy | exim4-daemon-light Conflicts: nagios-plugins (<= 1.4.2-3) Filename: pool/main/n/nagios-plugins/nagios-plugins-standard_1.5-3ubuntu1_i386.deb Size: 107436 MD5sum: dd524d62eb06c4996d783060099fca32 SHA1: 2da10d68e88eccd4de81806184767ef217f42c8d SHA256: b00a028e2cf0181208cc923ce658a4bf6a4e15fb60d3a128c43f57723af2c2cd Description: Plugins for nagios compatible monitoring systems Homepage: https://www.monitoring-plugins.org Description-md5: eae03bcd7203fd7747ae52ea0f54ffdd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios3 Priority: optional Section: net Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: i386 Version: 3.5.1-1ubuntu1 Depends: nagios3-cgi (= 3.5.1-1ubuntu1), nagios3-core (= 3.5.1-1ubuntu1) Suggests: nagios-nrpe-plugin Filename: pool/main/n/nagios3/nagios3_3.5.1-1ubuntu1_i386.deb Size: 1526 MD5sum: f71577ed85965cb37374056f0f0dcc74 SHA1: bb9f0f69d2a126f30587e25f97978a82ef793887 SHA256: db78f8712904a1dbf0f74764000cabcc4efa724c4ac9caf7cb5e538f09fd045f Description: host/service/network monitoring and management system Homepage: http://www.nagios.org/ Description-md5: 78bdbf6266ea3d4a5a2582c32c587c82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios3-cgi Priority: optional Section: net Installed-Size: 4961 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: i386 Source: nagios3 Version: 3.5.1-1ubuntu1 Replaces: nagios3 (<< 3.2.0), nagios3-common (<< 3.2.0), nagios3-doc (<< 3.2.0) Depends: adduser, apache2-utils, coreutils (>= 4.5.3), libapache2-mod-php5 | php5 | php5-cgi, nagios3-common (= 3.5.1-1ubuntu1), ucf (>= 0.28), debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.8), libgd3 (>= 2.1.0~alpha~) Recommends: apache2 | httpd, nagios-images (>> 0.1) Breaks: nagios3 (<< 3.2.0), nagios3-common (<< 3.2.0), nagios3-doc (<< 3.2.0) Filename: pool/main/n/nagios3/nagios3-cgi_3.5.1-1ubuntu1_i386.deb Size: 784488 MD5sum: 00fcee3babaefe25c87e9c99084139be SHA1: 390002afed53677c4cd0110ab0d3b972e98c2f23 SHA256: 26e38a8b5470176474360baca564a7f9e6898422506481c3e43fb03e5135caac Description: cgi files for nagios3 Homepage: http://www.nagios.org/ Description-md5: 005f01277f183ec1f2e424a027ce79bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios3-common Priority: optional Section: net Installed-Size: 267 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: all Source: nagios3 Version: 3.5.1-1ubuntu1 Depends: adduser, bsd-mailx | mailx, coreutils (>= 4.5.3), lsb-base (>= 3.0-6), nagios-plugins-basic, ucf (>= 0.28), libjs-jquery Recommends: nagios-plugins Filename: pool/main/n/nagios3/nagios3-common_3.5.1-1ubuntu1_all.deb Size: 53748 MD5sum: 47c1f62687969306a29fdf971a8bc5d6 SHA1: 3168eacb2585d56cad1fe37bf9acc697dd1a9ac4 SHA256: 0c406dd2b2a2db5d92356e02d26a2c0393e123cb20cff1287d0aee51b01b24bf Description: support files for nagios3 Homepage: http://www.nagios.org/ Description-md5: 9d8e7c7f672f17ee67cfb4190f2bbfe5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios3-core Priority: optional Section: net Installed-Size: 801 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: i386 Source: nagios3 Version: 3.5.1-1ubuntu1 Replaces: nagios3 Depends: nagios3-common (= 3.5.1-1ubuntu1), perl, libc6 (>= 2.15), libperl5.18 (>= 5.18.1) Suggests: nagios-nrpe-plugin Filename: pool/main/n/nagios3/nagios3-core_3.5.1-1ubuntu1_i386.deb Size: 222654 MD5sum: 63e3cdde284a5fe18166d43ec71ea906 SHA1: 58fac72372fe12b4d297b915c91a6002dd739c7e SHA256: d4990d99abffb4719bd9f0cd070f0cd46afe10f9279fd58be92b1f8ea77c4e39 Description: host/service/network monitoring and management system core files Homepage: http://www.nagios.org/ Description-md5: 4c01313c0dc2acc89022e41118dc0d44 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nagios3-dbg Priority: extra Section: net Installed-Size: 10738 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: i386 Source: nagios3 Version: 3.5.1-1ubuntu1 Depends: nagios3-core (= 3.5.1-1ubuntu1), libc6 (>= 2.3.4), libperl5.18 (>= 5.18.1) Conflicts: icinga-dbg (<= 1.0.1-2) Filename: pool/main/n/nagios3/nagios3-dbg_3.5.1-1ubuntu1_i386.deb Size: 1494906 MD5sum: d4953df3c45a47f33642a4ba11cab7b0 SHA1: 9a52ca1677630eddc9492eee4fed30d28e2c1a5f SHA256: 83e32920a3f6c59dd68418414bcc4641a67fa1a8bde2f7d11cd404812ad0f792 Description: debugging symbols and debug stuff for nagios3 Homepage: http://www.nagios.org/ Description-md5: 14ccd1c8a83c1a5c423dfd791e8c3a64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nagios3-doc Priority: optional Section: doc Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Nagios Maintainer Group Architecture: all Source: nagios3 Version: 3.5.1-1ubuntu1 Filename: pool/main/n/nagios3/nagios3-doc_3.5.1-1ubuntu1_all.deb Size: 4714 MD5sum: dcf3affcf483a60d7d36c848a7387990 SHA1: 36a2060acb9fb9f999d8485f2f78bd0cda5b573f SHA256: d943ee4c0daf2f5b045a38c81d1285e457483c733ad3e3d26524799a1e84bcc3 Description: documentation for nagios3 Homepage: http://www.nagios.org/ Description-md5: 81c0e42a9b16a6bc9e4472d6604edf05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nano Priority: standard Section: editors Installed-Size: 600 Maintainer: Ubuntu Developers Original-Maintainer: Jordi Mallach Architecture: i386 Version: 2.2.6-1ubuntu1 Replaces: pico Provides: editor Depends: libc6 (>= 2.11), libncursesw5 (>= 5.6+20070908), libtinfo5, dpkg (>= 1.15.4) | install-info Suggests: spell Conflicts: pico Breaks: alpine-pico (<= 2.00+dfsg-5) Filename: pool/main/n/nano/nano_2.2.6-1ubuntu1_i386.deb Size: 187010 MD5sum: 8367f576ca5821e7dc430b59c7b96d45 SHA1: ea9ca54310795b74a5db291a9296cab1641c1a22 SHA256: c3e864dca86fda13346e1147cdf6c579c72e57a6da9c657fae25eeb24fc84c30 Description: small, friendly text editor inspired by Pico Homepage: http://www.nano-editor.org/ Description-md5: b7e1d8c3d831118724cfe8ea3996b595 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: nant Priority: optional Section: devel Installed-Size: 4674 Maintainer: Ubuntu Developers Original-Maintainer: Debian CLI Applications Team Architecture: all Version: 0.92~rc1+dfsg-3 Depends: mono-devel (>= 2.0.1), pkg-config, mono-runtime (>= 2.10.1), liblog4net1.2-cil (>= 1.2.10), libmono-corlib4.0-cil (>= 2.10.1), libmono-sharpzip4.84-cil (>= 1.0), libmono-system-configuration4.0-cil (>= 1.0), libmono-system-web4.0-cil (>= 2.10.3), libmono-system-xml4.0-cil (>= 1.0), libmono-system4.0-cil (>= 2.10.7), libnunit2.6-cil Filename: pool/main/n/nant/nant_0.92~rc1+dfsg-3_all.deb Size: 748004 MD5sum: 210e6d5d47401258fc00fc1c3545d77b SHA1: 6eaa6923a453e044f27bf5271610adb1d5cb063a SHA256: 74dd9cba9776c81ad621bfe3155722ac553bbf656b60d46a72f31e715461f65a Description: build tool similar to Ant Homepage: http://nant.sourceforge.net/ Description-md5: 093122e48342c3dd573cdc2d3aba32ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nas-doc Priority: extra Section: doc Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: all Source: nas Version: 1.9.4-1 Filename: pool/main/n/nas/nas-doc_1.9.4-1_all.deb Size: 131498 MD5sum: d384b6a2e22c63a573df9e9d86b62955 SHA1: 1934cdadd291f64b600b6280c83bec0201e4689e SHA256: 51ec879d1dd19330c06d494bc9edb46b192473c297eee89366da3a93c65bd003 Description: Network Audio System - extra documentation Description-md5: 5035a42cdf8861c8e7a34271ccc1d608 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nasm Priority: optional Section: devel Installed-Size: 3076 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 2.10.09-1 Depends: libc6 (>= 2.7), dpkg (>= 1.15.4) | install-info Filename: pool/main/n/nasm/nasm_2.10.09-1_i386.deb Size: 1496256 MD5sum: 3e258341f1d1294d702cfbd8288f70ef SHA1: dd2cf5611c7e9cba12c804e544e85aca7fe64514 SHA256: 6fc58d9e668609916cdc88ae1555ca027941114589f5708255d5bd195a155d5a Description: General-purpose x86 assembler Homepage: http://nasm.sourceforge.net/ Description-md5: bc3dcab1162eb9b0f97c24bb0f3a90d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: naturaldocs Priority: extra Section: devel Installed-Size: 1640 Maintainer: Ubuntu Developers Original-Maintainer: Federico Di Gregorio Architecture: all Version: 1:1.5.1-0ubuntu1 Depends: perl Filename: pool/main/n/naturaldocs/naturaldocs_1.5.1-0ubuntu1_all.deb Size: 300356 MD5sum: 141c414e67ce1c5d157a5fc03e0ee6e5 SHA1: a9c3bda7c90087a82e456f6c0bb649b716694757 SHA256: deddfcaab15b6d1d992c5992556a3ebed9d44fec47dc3b025c4e11d650c97d27 Description: an extensible, multi-language documentation generator Description-md5: 3364558963832789d4258540ef67f71a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nautilus Priority: optional Section: gnome Installed-Size: 1685 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Version: 1:3.10.1-0ubuntu8 Replaces: nautilus-data (<< 1:3.2.1-2ubuntu1), nautilus-sendto Depends: libatk1.0-0 (>= 1.32.0), libc6 (>= 2.7), libcairo-gobject2 (>= 1.10.0), libcairo2 (>= 1.10.0), libdbusmenu-glib4 (>= 0.4.2), libexempi3 (>= 2.2.0), libexif12, libgail-3-0 (>= 3.0.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.2.0), libgtk-3-0 (>= 3.9.12), libnautilus-extension1a (>= 1:2.91), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.20.0), libpangocairo-1.0-0 (>= 1.14.0), libunity9 (>= 3.8.4), libx11-6, libxml2 (>= 2.7.4), libzeitgeist-1.0-1 (>= 0.3.14), session-migration, nautilus-data (>= 1:3.10), nautilus-data (<< 1:3.11), shared-mime-info (>= 0.50), desktop-file-utils (>= 0.7), gvfs (>= 1.3.2), libglib2.0-data, gsettings-desktop-schemas Recommends: eject, brasero (>= 2.26), librsvg2-common, gvfs-backends Suggests: eog, evince | pdf-viewer, totem | mp3-decoder, xdg-user-dirs, gnome-sushi Breaks: gnome-bluetooth (<< 3.0), gnome-session (<< 2.28), gnome-volume-manager (<< 2.24), nautilus-sendto-empathy (<< 3.0), rhythmbox (<< 0.12) Filename: pool/main/n/nautilus/nautilus_3.10.1-0ubuntu8_i386.deb Size: 483722 MD5sum: e5a994d7bbb217df8072bb4d7b74975c SHA1: 747e88953544b46339c43e9087a4d8ec1058c70b SHA256: 1dde6cdd9feda6817b2691340ee6410366231853b2d01015c5fd3aef0c9d7e8f Description: file manager and graphical shell for GNOME Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: 007268d365c98355ef914766c16ee43f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: nautilus-data Priority: optional Section: gnome Installed-Size: 220 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: all Source: nautilus Version: 1:3.10.1-0ubuntu8 Depends: dconf-gsettings-backend | gsettings-backend Suggests: nautilus Filename: pool/main/n/nautilus/nautilus-data_3.10.1-0ubuntu8_all.deb Size: 50862 MD5sum: e556bc3656a69dcdbf6cd39276941ff1 SHA1: efe42ec1817856610a0f8a8d2a072e58576402d0 SHA256: 49774821b8570cbb0936bd685f104e192ab27f4ab16fbeddd708280925e92178 Description: data files for nautilus Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: d164dca99682ab7c25a900f1754f8f13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: nautilus-dbg Priority: extra Section: gnome Installed-Size: 4486 Maintainer: Ubuntu Desktop Team Original-Maintainer: Josselin Mouette Architecture: i386 Source: nautilus Version: 1:3.10.1-0ubuntu8 Replaces: libnautilus-extension1-dbg Depends: nautilus (= 1:3.10.1-0ubuntu8) Filename: pool/main/n/nautilus/nautilus-dbg_3.10.1-0ubuntu8_i386.deb Size: 1376428 MD5sum: 69297fc494a97b9e456f245582168cfa SHA1: 1ab48fc73594c961ae992d2202527057478f72ba SHA256: 3a938d0dcdf810dcdb23fc6b7d293e7b95521132a34aa5c4e35a6f1a0bad9f9b Description: file manager and graphical shell for GNOME - debugging version Homepage: http://www.gnome.org/projects/nautilus/ Description-md5: 048b5b537db99ce7b3a383a98be1fa23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nautilus-sendto Priority: optional Section: gnome Installed-Size: 396 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.6.1-2ubuntu1 Depends: libc6 (>= 2.3.6-6~), libdbus-glib-1-2 (>= 0.78), libebook-1.2-14 (>= 3.5.91), libebook-contacts-1.2-0 (>= 3.7.90), libedataserver-1.2-18 (>= 3.5.91), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgssdp-1.0-3 (>= 0.12.0), libgtk-3-0 (>= 3.0.0), libgupnp-1.0-4 (>= 0.18.0), libpango-1.0-0 (>= 1.14.0), dconf-gsettings-backend | gsettings-backend, nautilus (>= 1:2.91) Suggests: evolution (>= 2.28) | thunderbird | claws-mail, pidgin (>= 2.0.0) | gajim, python-dbus Breaks: gnome-bluetooth (<< 3.0), nautilus-sendto-empathy (<< 3.0) Filename: pool/main/n/nautilus-sendto/nautilus-sendto_3.6.1-2ubuntu1_i386.deb Size: 48490 MD5sum: d11256f25f5cdc78a67d3d6bacfc4e10 SHA1: c919abe0b185a63bd5dd1b3fcbc7cc70befefdfc SHA256: fb1411533e84886b926ae6128594761326e13f161fec161cc0751847fdacaedf Description: integrates Evolution and Pidgin into the Nautilus file manager Description-md5: d0bf387d001230fa2809e50851a3bd10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: nautilus-sendto-empathy Priority: optional Section: gnome Installed-Size: 949 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: empathy Version: 3.8.6-0ubuntu9 Replaces: nautilus-sendto (<< 2.28.2-2) Depends: empathy (= 3.8.6-0ubuntu9), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.34), libgtk-3-0 (>= 3.0.0), empathy-common (= 3.8.6-0ubuntu9) Recommends: nautilus-sendto (>= 3.0) Breaks: nautilus-sendto (<< 3.0), telepathy-rakia (<< 0.7.4), telepathy-sofiasip (<< 0.7.4) Filename: pool/main/e/empathy/nautilus-sendto-empathy_3.8.6-0ubuntu9_i386.deb Size: 11846 MD5sum: f8a500683c971cc27206e999db84f51a SHA1: 47207831b6ebb402173fade77de40a79b514fa9f SHA256: 05e6b8a30aff3e50d5575bf507d0d46b201c5321f845ad3a5afcfe76357c5427 Description: GNOME multi-protocol chat and call client (nautilus-sendto plugin) Homepage: http://wiki.gnome.org/Empathy Description-md5: 1d67fd3eb1d5829e4ec78e32a0badf51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: nautilus-share Priority: optional Section: gnome Installed-Size: 128 Maintainer: Chow Loong Jin Architecture: i386 Version: 0.7.3-1ubuntu5 Depends: nautilus (>= 2.10), samba-common (>= 3.0.27a), samba-common-bin | samba-common (<< 2:3.4.0~pre2-1~0), gnome-session-bin, apturl, libc6 (>= 2.7), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.0.0), libnautilus-extension1a (>= 1:2.91) Suggests: samba (>= 3.0.27a) Filename: pool/main/n/nautilus-share/nautilus-share_0.7.3-1ubuntu5_i386.deb Size: 22686 MD5sum: a70eb2b88cedd923ea68cea1a81199fb SHA1: 1a96ba3df6900d54237a78ecaffc79fbd86d0f23 SHA256: f56f085c2ba1d9ee5dade79195d83c66fd42809bfa4cdbb600b9bae7498b5de8 Description: Nautilus extension to share folder using Samba Enhances: nautilus Homepage: http://gentoo.ovibes.net/nautilus-share/ Description-md5: 12abf75bd52cbea4113eeeaace72c2db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: nbd-client Priority: optional Section: admin Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Wouter Verhelst Architecture: i386 Source: nbd Version: 1:3.7-1 Depends: libc6 (>= 2.4), debconf (>= 0.5) | debconf-2.0, initscripts (>= 2.88dsf-13.3) Filename: pool/main/n/nbd/nbd-client_3.7-1_i386.deb Size: 44642 MD5sum: 72568a885981ea96276f2375bd10b58f SHA1: 958d6998df951a3473a9a143369284d9de76e5e2 SHA256: c618f68421ee49a22c1d8f0a167b8ef286d4e0b5545b924d5d10ea736a8d8c75 Description: Network Block Device protocol - client Homepage: http://nbd.sourceforge.net/ Description-md5: 50b5081db709f9bc399b8b74366d1d8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nbd-server Priority: optional Section: admin Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Wouter Verhelst Architecture: i386 Source: nbd Version: 1:3.7-1 Depends: libc6 (>= 2.15), libglib2.0-0 (>= 2.26.0), debconf (>= 1.2.9) | debconf-2.0, ucf, adduser Filename: pool/main/n/nbd/nbd-server_3.7-1_i386.deb Size: 58352 MD5sum: cffcff0fe2ef2d22b55c2f37a711bbcb SHA1: 45be7647600d46252e584c16c8f7d77f8db6a302 SHA256: 9029c0686c82f0302ce214e5b0a83480d9c554b43a79a5677ff65b9bade56c2c Description: Network Block Device protocol - server Homepage: http://nbd.sourceforge.net/ Description-md5: e277eb8c796be1246a3bdf1f441257b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ncurses-base Essential: yes Priority: required Section: utils Installed-Size: 367 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: all Source: ncurses Version: 5.9+20140118-1ubuntu1 Provides: ncurses-runtime Conflicts: ncurses, ncurses-runtime Breaks: ncurses-term (<< 5.7+20100313-3) Filename: pool/main/n/ncurses/ncurses-base_5.9+20140118-1ubuntu1_all.deb Size: 16584 MD5sum: d5e37a007a4935a7fc461ce1d32855d7 SHA1: f158726f092eec90907ffe7719e52a07d4135d73 SHA256: fa0efce6fdc6262a49fbd73ea08669bbcda92abda0f12507d947c353e3196637 Description: basic terminal type definitions Multi-Arch: foreign Homepage: http://invisible-island.net/ncurses/ Description-md5: 2cbef17322c0de7f007682de54ca0d4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: ncurses-bin Essential: yes Priority: required Section: utils Installed-Size: 508 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Pre-Depends: libc6 (>= 2.4), libtinfo5 (>= 5.9+20130119) Filename: pool/main/n/ncurses/ncurses-bin_5.9+20140118-1ubuntu1_i386.deb Size: 135162 MD5sum: b962b2c5424d6cd6ca604b50f1aface9 SHA1: 5a4a37e14d24723e806954da5a7a7e456ddbe02a SHA256: c4ebd25c3dae01fb518fe460b260abb77030f730108f8522f95182ba5064cfa9 Description: terminal-related programs and man pages Multi-Arch: foreign Homepage: http://invisible-island.net/ncurses/ Description-md5: 682ee2624c08c54a53ecaefd778a4d86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: ncurses-doc Priority: optional Section: doc Installed-Size: 4376 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: all Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: libncurses5-dev (<< 5.7+20101128) Filename: pool/main/n/ncurses/ncurses-doc_5.9+20140118-1ubuntu1_all.deb Size: 684466 MD5sum: 8e0ca3326d701dc4bf2fdac876c5927d SHA1: 0209ea6696e1d64e66736710aaefb8f804354694 SHA256: 4aa41b78d887b40f9cd89dbf69d41082d1ef95cf04c67764d408e73ca23d9523 Description: developer's guide and documentation for ncurses Homepage: http://invisible-island.net/ncurses/ Description-md5: 4967594fdf42e5e326a6d1be21322eb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ncurses-examples Priority: optional Section: misc Installed-Size: 1007 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Source: ncurses Version: 5.9+20140118-1ubuntu1 Depends: libc6 (>= 2.4), libncursesw5 (>= 5.9+20131221), libtinfo5 (>= 5.9+20130119) Filename: pool/main/n/ncurses/ncurses-examples_5.9+20140118-1ubuntu1_i386.deb Size: 165802 MD5sum: 73b0ba2c566c7752ab3bf92764744264 SHA1: 17244c44d79466dda7b23521e0d53750075bb3d7 SHA256: 3063633cafac8885b6b9e7ec936f5d19e356165c27c8ec4ba9df5e3c4b0321d2 Description: test programs and examples for ncurses Homepage: http://invisible-island.net/ncurses/ Description-md5: 9636435dbca7946bfd1b9d0a5f71adc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ncurses-term Priority: optional Section: admin Installed-Size: 2154 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: all Source: ncurses Version: 5.9+20140118-1ubuntu1 Replaces: bogl-bterm (<< 0.1.18-7), mlterm-common (<< 3.0.2-1), ncurses-base (<< 5.7+20100313-1) Breaks: bogl-bterm (<< 0.1.18-7), mlterm-common (<< 3.0.2-1) Filename: pool/main/n/ncurses/ncurses-term_5.9+20140118-1ubuntu1_all.deb Size: 242540 MD5sum: b23e6a13dd7be4758dc1529b914a9a5c SHA1: 21716fe448a46086359f8b88e0ac96499b57d6aa SHA256: 00c8f0c1189c94dc81a904b3a4b02c7ba6b35a79adca2e2bc29081c567419052 Description: additional terminal type definitions Multi-Arch: foreign Homepage: http://invisible-island.net/ncurses/ Description-md5: 4b4085015cb669f69f4316436f2a2f6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: net-tools Priority: important Section: net Installed-Size: 656 Maintainer: Ubuntu Developers Original-Maintainer: net-tools Team Architecture: i386 Version: 1.60-25ubuntu2 Replaces: ja-trans (<= 0.8-2), netbase (<< 4.00) Depends: libc6 (>= 2.4) Conflicts: ja-trans (<= 0.8-2) Filename: pool/main/n/net-tools/net-tools_1.60-25ubuntu2_i386.deb Size: 170322 MD5sum: cb634a8f877da24772d8567051391ccd SHA1: 3516a7305a8a89f7841ea64b436c6a40b73d6dd3 SHA256: f4ae7ee2fee8b2b7b007790d836114fd1df247aed56cf524a7afca560150cb26 Description: The NET-3 networking toolkit Multi-Arch: foreign Homepage: http://net-tools.berlios.de/ Description-md5: 003fb6a11fdb767fff574478588a3ca8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: netbase Priority: important Section: admin Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: all Version: 5.2 Depends: lsb-base (>= 3.0-6) Recommends: ifupdown Conflicts: inetutils-inetd (<< 2:1.4.3+20060719-3), openbsd-inetd (<< 0.20050402-3) Breaks: ifupdown (<< 0.7) Filename: pool/main/n/netbase/netbase_5.2_all.deb Size: 12860 MD5sum: 6201c7666f13f087e75e34dba4c878a4 SHA1: e3635fd103dde6d8674040e2e468282fe0075bad SHA256: ca6cb202c674c6b8615b6560dc9c6cd87530e8862ccc9aa79c888de6b2154377 Description: Basic TCP/IP networking system Multi-Arch: foreign Description-md5: 90e64df001afc51592384425bd1cc431 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: netcat-openbsd Priority: important Section: net Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Aron Xu Architecture: i386 Version: 1.105-7ubuntu1 Replaces: netcat (<< 1.10-35) Provides: netcat Depends: libbsd0 (>= 0.2.0), libc6 (>= 2.16) Breaks: netcat (<< 1.10-35) Filename: pool/main/n/netcat-openbsd/netcat-openbsd_1.105-7ubuntu1_i386.deb Size: 39052 MD5sum: 4b1651d136a6a8399eee5a62201b61ca SHA1: 44426abde6c24451e45979e671d53d7abd74f7ac SHA256: 6626c7bf9d49b9911536e83c8b0e4680b15493ed3848c578ce48dbdeb15c43fa Description: TCP/IP swiss army knife Description-md5: a496fe77780d0b39750c43d6b6259b00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: netpbm Priority: optional Section: graphics Installed-Size: 3380 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Barth Architecture: i386 Source: netpbm-free Version: 2:10.0-15ubuntu2 Replaces: netpbm-dev, netpbm-nonfree, pbmwbmp, pnmtopng Provides: pbmwbmp, pnmtopng Depends: libnetpbm10 (= 2:10.0-15ubuntu2), libc6 (>= 2.11), libjpeg8 (>= 8c), libpng12-0 (>= 1.2.13-4), libtiff5 (>> 4.0.0-1~), zlib1g (>= 1:1.1.4) Recommends: ghostscript Conflicts: netpbm-dev (<= 2:9.10), netpbm-nonfree (<= 1:19940301.1-3), pbmwbmp, pnmtopng, ucbmpeg (<= 1r2-6) Filename: pool/main/n/netpbm-free/netpbm_10.0-15ubuntu2_i386.deb Size: 1219750 MD5sum: ec78103c16827b5e134736454290e473 SHA1: 5f34450f0419611fe124853b511ac8c5b3af9133 SHA256: d3e6aa60a427e0e4516ef91cbc29412420741001a3ff56b01d7614c9029b6065 Description: Graphics conversion tools between image formats Multi-Arch: foreign Homepage: http://netpbm.alioth.debian.org Description-md5: 4d025b52e6499467b1af0bf4e4a44e07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-photography, ubuntustudio-graphics, ubuntustudio-audio Package: nettle-dbg Priority: extra Section: debug Installed-Size: 1392 Maintainer: Ubuntu Developers Original-Maintainer: Magnus Holmgren Architecture: i386 Source: nettle Version: 2.7.1-1 Depends: libnettle4 (= 2.7.1-1) | libhogweed2 (= 2.7.1-1) | nettle-bin (= 2.7.1-1) Filename: pool/main/n/nettle/nettle-dbg_2.7.1-1_i386.deb Size: 397934 MD5sum: 9ee938dfc404f66a224a0c0f8e0e82b8 SHA1: 08eb4c9b5b2802d88fe64fc90aecc203cb302e0b SHA256: d9a134ac905b21dc9a2f53600cc83339cc5b8fb4fffa441a58e4a853e546b335 Description: low level cryptographic library (debugging symbols) Homepage: http://www.lysator.liu.se/~nisse/nettle/ Description-md5: 9eb062c2583fbfed19a561e4c512df81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nettle-dev Priority: optional Section: libdevel Installed-Size: 1770 Maintainer: Ubuntu Developers Original-Maintainer: Magnus Holmgren Architecture: i386 Source: nettle Version: 2.7.1-1 Replaces: libnettle-dev Depends: libnettle4 (= 2.7.1-1), libhogweed2 (= 2.7.1-1), libgmp10-dev, dpkg (>= 1.15.4) | install-info Conflicts: libnettle-dev Filename: pool/main/n/nettle/nettle-dev_2.7.1-1_i386.deb Size: 825776 MD5sum: 1007ced7e4ce1bbc7d08e3b9adeb7360 SHA1: 2963e2de927f5d33cf2ce4de99c54fd82cb068ac SHA256: af3b37d61252417929c5fb48011022f97b49a2915736c3ae4ad5a971506ff4fa Description: low level cryptographic library (development files) Homepage: http://www.lysator.liu.se/~nisse/nettle/ Description-md5: 71d39c111aac4d3815d7606eac8b4fe3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: network-manager Priority: optional Section: net Installed-Size: 1988 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: i386 Version: 0.9.8.8-0ubuntu7 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.31.8), libgudev-1.0-0 (>= 146), libmm-glib0 (>= 0.7.991), libnl-3-200 (>= 3.2.7), libnl-genl-3-200 (>= 3.2.7), libnl-route-3-200 (>= 3.2.7), libnm-glib4 (>= 0.9.8.0), libnm-util2 (>= 0.9.6.0+git201212071413.8a9759a), libpolkit-gobject-1-0 (>= 0.99), libsoup2.4-1 (>= 2.26.1), libsystemd-login0 (>= 31), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.2-14), wpasupplicant (>= 0.7.3-1), dbus (>= 1.1.2), udev, isc-dhcp-client (>= 4.1.1-P1-4), iproute2, dnsmasq-base, policykit-1, iputils-arping Pre-Depends: multiarch-support Recommends: network-manager-pptp, network-manager-gnome | plasma-widget-networkmanagement | plasma-nm, ppp (>= 2.4.5), iptables, modemmanager, systemd-services, crda Suggests: avahi-autoipd, python Conflicts: connman Breaks: network-manager-gnome (<< 0.9), network-manager-kde (<< 1:0.9), network-manager-openconnect (<< 0.9), network-manager-openvpn (<< 0.9), network-manager-pptp (<< 0.9), network-manager-vpnc (<< 0.9), plasma-widget-networkmanagement (<< 0.9~), ppp (<< 2.4.5) Filename: pool/main/n/network-manager/network-manager_0.9.8.8-0ubuntu7_i386.deb Size: 493080 MD5sum: dcb839f77afd9cd5fd91e6effa169460 SHA1: 0f27fa5358f62b0e977818a9b00d7b2de63eb040 SHA256: 947bc168c780cbb4b026b6faa12a68e065b85d32b02bd29c833ad02b860bf8fe Description: network management framework (daemon and userspace tools) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 8f6f8b56b77097ec1e2134d2c9189882 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: network-manager-dbg Priority: extra Section: debug Installed-Size: 2383 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager Version: 0.9.8.8-0ubuntu7 Depends: network-manager (= 0.9.8.8-0ubuntu7) | libnm-util2 (= 0.9.8.8-0ubuntu7) | libnm-glib4 (= 0.9.8.8-0ubuntu7) | libnm-glib-vpn1 (= 0.9.8.8-0ubuntu7) Filename: pool/main/n/network-manager/network-manager-dbg_0.9.8.8-0ubuntu7_i386.deb Size: 1940442 MD5sum: f5950ad7d98a2f35c62c2e4903246feb SHA1: 72e7a06bd0d647744e36d45848b9c2d5ceb41c0e SHA256: 95466873e57c79113d3d5f6af49fb2a8ec9eb0f0fcb8d1ea2014d6ddebfecb03 Description: network management framework (debugging symbols) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: fab22ebf7107cdfdeb29ff226f6cf920 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: network-manager-dev Priority: optional Section: net Installed-Size: 436 Maintainer: Ubuntu Core Dev Team Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager Version: 0.9.8.8-0ubuntu7 Filename: pool/main/n/network-manager/network-manager-dev_0.9.8.8-0ubuntu7_i386.deb Size: 56162 MD5sum: 9f777a798cf767718040cdab1d53a1cf SHA1: f10265514df3bdb436fde0bd2e20d6cffede947b SHA256: 9bb21151a788eedd94eebe45e32de9cfcf3c652d76f300df52e895c0357fba5a Description: network management framework (development files) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 7c80f295a14f6455ffe1509a646e6b4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: network-manager-gnome Priority: optional Section: net Installed-Size: 1984 Maintainer: Ubuntu Core Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager-applet Version: 0.9.8.8-0ubuntu4 Depends: gconf-service, libappindicator3-1 (>= 0.4.90), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-bluetooth11 (>= 2.91.2), libgnome-keyring0 (>= 3.2.2-2~), libgtk-3-0 (>= 3.0.0), libmm-glib0 (>= 0.7.991), libnm-glib-vpn1 (>= 0.7.999), libnm-glib4 (>= 0.9.1.90+git.20111206t233146.dff0d2a), libnm-gtk0 (= 0.9.8.8-0ubuntu4), libnm-util2 (>= 0.9.6.0+git201212071413.8a9759a), libnotify4 (>= 0.7.0), libsecret-1-0 (>= 0.7), dconf-gsettings-backend | gsettings-backend, network-manager (>= 0.9.8), policykit-1-gnome, gnome-icon-theme, dbus-x11 Recommends: notification-daemon, gnome-keyring, mobile-broadband-provider-info, iso-codes Suggests: gnome-bluetooth, network-manager-openconnect-gnome, network-manager-openvpn-gnome, network-manager-vpnc-gnome, network-manager-pptp-gnome Breaks: gnome-bluetooth (<< 3.0) Filename: pool/main/n/network-manager-applet/network-manager-gnome_0.9.8.8-0ubuntu4_i386.deb Size: 309274 MD5sum: 332bf1e263781e0bddb24d0bb89daf31 SHA1: d085c2abdf066f9a1f06eba4f885aef9b96244bb SHA256: e2380263de58505cbbbbe01c4701e97aa16a9b2ec48c6c9c6044884ac01bc234 Description: network management framework (GNOME frontend) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: bdee3234d21720f04895a1051744f5d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: network-manager-pptp Priority: optional Section: net Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Version: 0.9.8.2-1ubuntu2 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libnm-glib-vpn1 (>= 0.7.999), libnm-util2 (>= 0.8.998), pptp-linux, ppp (>= 2.4.5), ppp (<< 2.4.6) Recommends: network-manager-pptp-gnome | plasma-nm Filename: pool/main/n/network-manager-pptp/network-manager-pptp_0.9.8.2-1ubuntu2_i386.deb Size: 22398 MD5sum: 2e42cebfeebdd88cc7bd9df2c063d6c1 SHA1: 3da8b946b70881810d2c2b63c733b263eff038b6 SHA256: e72bfdd65bb156d3f3fdccb5e114c947e9c94491508881fe6db2e703292b311f Description: network management framework (PPTP plugin core) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 133a651f45b862d95351d23a9d8e6fed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: network-manager-pptp-gnome Priority: optional Section: net Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: network-manager-pptp Version: 0.9.8.2-1ubuntu2 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libgnome-keyring0 (>= 2.20.3), libgtk-3-0 (>= 3.0.0), libnm-glib-vpn1 (>= 0.8.998), libnm-util2 (>= 0.8.998), network-manager-pptp (= 0.9.8.2-1ubuntu2) Filename: pool/main/n/network-manager-pptp/network-manager-pptp-gnome_0.9.8.2-1ubuntu2_i386.deb Size: 27944 MD5sum: 9221df5a338c2943a90fb66e6bb09b02 SHA1: 277427c4ad125151683e65c1ca8b226f07f89f27 SHA256: 22327482eb7e49d5f11484b6ea0cf6476dd7f94aa59276d75df4e32d769e436f Description: network management framework (PPTP plugin GNOME GUI) Homepage: http://www.gnome.org/projects/NetworkManager/ Description-md5: 7849b68a0488cd9b93d68da1212634cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: neutron-common Priority: optional Section: net Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: neutron-l3-agent (<< 1:2014.1~rc2-0ubuntu3~), neutron-vpn-agent (<< 1:2014.1~rc2-0ubuntu3~), quantum-common (<< 1:2013.2~b2-0ubuntu1~) Depends: adduser, python-neutron (= 1:2014.1-0ubuntu1), python:any Breaks: neutron-l3-agent (<< 1:2014.1~rc2-0ubuntu3~), neutron-vpn-agent (<< 1:2014.1~rc2-0ubuntu3~), quantum-common (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-common_2014.1-0ubuntu1_all.deb Size: 13618 MD5sum: 6c96c898fae0ff8850d26a89e4f5b681 SHA1: fed7730b536f656b1eeedb74c138e4a1deb399ff SHA256: 06487cb66f6ed512f141ebd69fd342010c9cb5f2138d24556741bffaab44ff9b Description: Neutron is a virtual network service for Openstack - common Description-md5: ab28986d7d849a4c4d59da3e76788645 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-dhcp-agent Priority: optional Section: net Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-dhcp-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: dnsmasq-base, dnsmasq-utils, neutron-common (= 1:2014.1-0ubuntu1), neutron-metadata-agent (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-dhcp-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-dhcp-agent_2014.1-0ubuntu1_all.deb Size: 5342 MD5sum: 5f284b6bf29d4835864046a3809837e1 SHA1: abe440e7266f860677ba7e1a84ae356c04e002b6 SHA256: 5c3cd7ec7aa1ace6ea1d2fe7736422aa9dfa14d793950ae6205f8f84db38fc46 Description: Neutron is a virtual network service for Openstack - DHCP agent Description-md5: 572c3866ff7d431ed7a69af059be88b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-l3-agent Priority: optional Section: net Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-l3-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: iputils-arping, neutron-common (= 1:2014.1-0ubuntu1), neutron-metadata-agent (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-l3-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-l3-agent_2014.1-0ubuntu1_all.deb Size: 3116 MD5sum: 275a822d95a174a4e84be1f8a5984c22 SHA1: 9ac72a90481136cde143e195ec6fe99941437d9c SHA256: cce2d140a2f52e71c89e7fdbbd25f1d535728e4eba8187c717e0910d10a99395 Description: Neutron is a virtual network service for Openstack - l3 agent Description-md5: 7dc64a3d701aa413a40358ba3069904a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-lbaas-agent Priority: optional Section: net Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-lbass-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: haproxy, neutron-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-lbaas-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-lbaas-agent_2014.1-0ubuntu1_all.deb Size: 4158 MD5sum: cb1a2797af06e3b69c8e8a80b075131b SHA1: d23733c44372d238fbc82eb8204026611a47be66 SHA256: ea70d5f298d5fd02d91b1f60ff2cea3bdb0eb2408e5fe5be35b27e22ab58e1de Description: Neutron is a virtual network service for Openstack - LBaaS agent Description-md5: d83e4461d001c52fe3847b97d170869c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-metadata-agent Priority: optional Section: net Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-metadata-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: neutron-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-metadata-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-metadata-agent_2014.1-0ubuntu1_all.deb Size: 3726 MD5sum: 15b7ae93907dbdbd8161f2aa09befca9 SHA1: 389571487bd09ca6de39fbd7a5684f1cbc9735d8 SHA256: e846b9ed07d713998d25f4318b8437396cd69ad5140d9720d0bcec12a6dbf576 Description: Neutron is a virtual network service for Openstack - metadata agent Description-md5: 7f661aa618ba5bb4655c68b01afa2e23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-cisco Priority: optional Section: net Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-cisco (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-cisco (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-cisco_2014.1-0ubuntu1_all.deb Size: 3950 MD5sum: c92f1de75fce5166b0406062b6c042be SHA1: 5b2fed849d44c2803229c9dfdba98db5866a69d6 SHA256: 86d68e04fd8ed221b6bceed17c4c9748125e83da8a001c66aba627f800693b56 Description: Neutron is a virtual network service for Openstack - Cisco plugin Description-md5: 810ab0477ad7e271b158b82400fad3d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-linuxbridge Priority: optional Section: net Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-linuxbridge (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-linuxbridge (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-linuxbridge_2014.1-0ubuntu1_all.deb Size: 3360 MD5sum: 1c990607ac02b224b3bd4ff6e7fd6420 SHA1: 8caa787645c02796f04a9c808904cbf5448ed516 SHA256: c8854fc3a48a9c2e3ddec97459199b31d3b3002c824cc24443664786bbda5ea3 Description: Neutron is a virtual network service for Openstack - linuxbridge plugin Description-md5: d39abc40d5041118f3e04179c9961117 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-linuxbridge-agent Priority: optional Section: net Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-linuxbridge-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: bridge-utils, neutron-plugin-linuxbridge (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-plugin-linuxbirdge-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-linuxbridge-agent_2014.1-0ubuntu1_all.deb Size: 3624 MD5sum: 10b46a33bdaf6d21abff0845f63ebb19 SHA1: 2ef4b4d7071f69a145e7e68d7252abdc3bd57298 SHA256: 2ffa65916fd1159b5b7f4ece0342e098d5d50153747737ca9e199a74614412dc Description: Neutron is a virtual network service for Openstack - linuxbridge plugin agent Description-md5: 954a060c661df8e8272f394f152b1457 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-metaplugin Priority: optional Section: net Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-metaplugin (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-metaplugin (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-metaplugin_2014.1-0ubuntu1_all.deb Size: 2438 MD5sum: 0e0ad363c9cc1c580c739061865cf6c6 SHA1: 475737d0d5771e4e3e80bb72c3b275ee39a6e46b SHA256: c4aadb4436606bcd33be7bd47f26893a0025ae76af44a062900d5e2d57b874a4 Description: Neutron is a virtual network service for Openstack - Metaplugin plugin Description-md5: f715311c2870b755d570e906eacdda25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-midonet Priority: optional Section: net Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-midonet (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-midonet (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-midonet_2014.1-0ubuntu1_all.deb Size: 2316 MD5sum: 423401e41b287fcef99dfd24acce4079 SHA1: 041e2acd57ae2e63b7a08252552a8e62c1d2f966 SHA256: 9077c98e273c9e233cf43641f527c9fc0946b896d80516faeb3c4675393269ae Description: Neutron is a virtual network service for Openstack - Midonet plugin Description-md5: 8c0d47b7abaab3927d126fd9999b8001 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-ml2 Priority: optional Section: net Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Filename: pool/main/n/neutron/neutron-plugin-ml2_2014.1-0ubuntu1_all.deb Size: 4804 MD5sum: 9a8f6e22d75237e31bf25e8cd376a36e SHA1: 9cb8cccaec75745090ce92cd35146242cf61efbe SHA256: d7c5ab46f148f448b3a29f88982221ecb10da6db38b0cb8079caefba1771398b Description: Neutron is a virtual network service for Openstack - ML2 plugin Description-md5: 04c3b1da612333dffe94afb38e17f6ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-nec Priority: optional Section: net Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-nec (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-nec (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-nec_2014.1-0ubuntu1_all.deb Size: 2934 MD5sum: 003dbeb4ecd547bcd5734493d2934d29 SHA1: e57f30d7fecb83fc5c73ae32ccf7a6dc04c2f0ee SHA256: ca047a8ea726d896d2f06a47093837e437c4f70a0606bcfd4b26f0c8652b46f7 Description: Neutron is a virtual network service for Openstack - NEC plugin Description-md5: 6d6eb20270ec73f719d84e9651e48a67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-nicira Priority: optional Section: net Installed-Size: 35 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-nicira (<< 1:2013.2~b2-0ubuntu1~) Depends: neutron-plugin-vmware Breaks: quantum-plugin-nicira (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-nicira_2014.1-0ubuntu1_all.deb Size: 1748 MD5sum: 9bece81b2f91c36076eb893941a80eac SHA1: 615526a1e9e9142b5d287155320634c03ccb4bad SHA256: b84834b771606fec99db1e99f945e08d2922fe50c29e96214a40606f60ae9166 Description: transitional dummy package Description-md5: 1f317b04f78374dba7d1e14def0b7f80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-openvswitch Priority: optional Section: net Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-openvswitch (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-openvswitch (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-openvswitch_2014.1-0ubuntu1_all.deb Size: 4246 MD5sum: 0d18a3ab32ad7256a167654e20df417e SHA1: 94661095721eef5d5e6b9e065e3b739d377ec04e SHA256: c319fae7463877d6af5462ce0db089a73c6f8d8d73019fa30fb770c528a23495 Description: Neutron is a virtual network service for Openstack - Open vSwitch plugin Description-md5: ea6e653f58f6ca6af645de5e8de0410b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-openvswitch-agent Priority: optional Section: net Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-openvswitch-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: neutron-plugin-ml2 (= 1:2014.1-0ubuntu1), openvswitch-switch, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-plugin-openvswitch-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-openvswitch-agent_2014.1-0ubuntu1_all.deb Size: 3858 MD5sum: 52f1dc5e7d22c5098d58f3880ca21bd8 SHA1: 5decef99d7640f83b6bb8344a8f1f259539f10b0 SHA256: bd49905e982ed63436dffdea82ef8c7b4142ab2e26b782919ec867ef83153516 Description: Neutron is a virtual network service for Openstack - Open vSwitch plugin agent Description-md5: e9697f8391ec5ff56d028b4049eb9f25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-ryu Priority: optional Section: net Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-ryu (<< 1:2013.2~b2-0ubuntu1~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1) Breaks: quantum-plugin-ryu (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-ryu_2014.1-0ubuntu1_all.deb Size: 2714 MD5sum: 157a118b0108ea9f3d282d7236bed695 SHA1: 30191dc7a59f9fc9067b15f20b0a06d71d7a5c5a SHA256: e2b1bbf049a9ec90b352cfd59ea3bd0d8c87d5fd33c05dba57a1756f04a48fd9 Description: Neutron is a virtual network service for Openstack - RYU plugin Description-md5: 90383a20bbdf9b71c4cab189a18193b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-ryu-agent Priority: optional Section: net Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-plugin-ryu-agent (<< 1:2013.2~b2-0ubuntu1~) Depends: neutron-plugin-ryu (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: quantum-plugin-ryu-agent (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-plugin-ryu-agent_2014.1-0ubuntu1_all.deb Size: 3612 MD5sum: 037a3d1f4c00c96ed1a6acfd30ef2a45 SHA1: 0bd8cfd41d024eb6ea0346751126ba442fa51302 SHA256: 49da38b6a6ce41f668c13bd6924f3b359b4a15aa6d0f3ccce11f2c79c0a0d680 Description: Neutron is a virtual network service for Openstack - RYU plugin agent Description-md5: b210cd3ceed8f1ba200f8c787fb6036a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-plugin-vmware Priority: optional Section: net Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: neutron-plugin-nicira (<< 1:2014.1~b2-0ubuntu7~) Provides: neutron-plugin Depends: neutron-common (= 1:2014.1-0ubuntu1), python:any Breaks: neutron-plugin-nicira (<< 1:2014.1~b2-0ubuntu7~) Filename: pool/main/n/neutron/neutron-plugin-vmware_2014.1-0ubuntu1_all.deb Size: 5576 MD5sum: e79dfd5f25286b6e271b9f065bef720b SHA1: 59696e154dbff253932cbef6b36b409bd655d342 SHA256: a725b6dad3ec8f716492cc17ae681d15688e86b58522a8a0f39afc156b232160 Description: Neutron is a virtual network service for Openstack - VMware plugin Description-md5: 46a4ef55fc0177300b42c977bbef82fc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: neutron-server Priority: optional Section: net Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: quantum-server (<< 1:2013.2~b2-0ubuntu1~) Depends: adduser, neutron-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Recommends: neutron-plugin-ml2 Breaks: quantum-server (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/neutron-server_2014.1-0ubuntu1_all.deb Size: 3596 MD5sum: b855821e3e985ad789ef4865ddea0f3a SHA1: 9b0ce7aabde501aa4199bf6ffe9af931cf78e383 SHA256: cef254455d4a1fe5ec371d89caea14e09112e2ca85c8f68c5308cfceca125349 Description: Neutron is a virtual network service for Openstack - server Description-md5: 1b00fccfd02ac8a9014e7ee4bfb0ddd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nfs-common Priority: optional Section: net Installed-Size: 683 Maintainer: Ubuntu Developers Original-Maintainer: Debian kernel team Architecture: i386 Source: nfs-utils Version: 1:1.2.8-6ubuntu1 Replaces: mount (<< 2.13~), nfs-client, nfs-kernel-server (<< 1:1.2.8-6~) Provides: nfs-client Depends: libc6 (>= 2.15), libcap2 (>= 2.10), libcomerr2 (>= 1.01), libdevmapper1.02.1 (>= 2:1.02.20), libevent-2.0-5 (>= 2.0.10-stable), libgssglue1, libkeyutils1, libkrb5-3 (>= 1.6.dfsg.2), libmount1 (>= 2.19.1), libnfsidmap2, libtirpc1, libwrap0 (>= 7.6-4~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), rpcbind (>= 0.2.0-6ubuntu1), adduser, ucf, lsb-base (>= 1.3-9ubuntu3), initscripts (>= 2.88dsf-13.10ubuntu1), mountall (>= 2.41) Recommends: python Suggests: open-iscsi, watchdog Conflicts: nfs-client Breaks: nfs-kernel-server (<< 1:1.2.8-6~) Filename: pool/main/n/nfs-utils/nfs-common_1.2.8-6ubuntu1_i386.deb Size: 177870 MD5sum: 3e42f060bf55ee5f651e0c383a34047f SHA1: 7ea2d9c6e7695fb69ef5439545ba4c9f2bf4e40b SHA256: 39130c29bc9c2555f2550feb861bb397ec3ff83b7fd89348fe40db2d3550c112 Description: NFS support files common to client and server Homepage: http://nfs.sourceforge.net/ Description-md5: c2f5fd5a7d525f1cc35fbb49cc8628fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nfs-kernel-server Priority: optional Section: net Installed-Size: 503 Maintainer: Ubuntu Developers Original-Maintainer: Debian kernel team Architecture: i386 Source: nfs-utils Version: 1:1.2.8-6ubuntu1 Replaces: knfs, nfs-server Provides: knfs, nfs-server Depends: libblkid1 (>= 2.16), libc6 (>= 2.15), libcap2 (>= 2.10), libsqlite3-0 (>= 3.5.9), libtirpc1, libwrap0 (>= 7.6-4~), nfs-common (= 1:1.2.8-6ubuntu1), ucf, lsb-base (>= 1.3-9ubuntu3) Conflicts: knfs, nfs-server Filename: pool/main/n/nfs-utils/nfs-kernel-server_1.2.8-6ubuntu1_i386.deb Size: 83852 MD5sum: 9c346de60ad954daca36153e9db39477 SHA1: 5c152c9da116f2cdb7307e25667e046a5f5f7ba3 SHA256: 68414f7a5cc1506c2307b12621a5b3a3e3561da7482b0672bb6070d7021c488d Description: support for NFS kernel server Homepage: http://nfs.sourceforge.net/ Description-md5: 899bf536fe9edad1d8a30a8fada5180d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nginx Priority: optional Section: web Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: all Version: 1.4.6-1ubuntu3 Depends: nginx-core (>= 1.4.6-1ubuntu3) | nginx-full (>= 1.4.6-1ubuntu3) | nginx-light (>= 1.4.6-1ubuntu3) | nginx-extras (>= 1.4.6-1ubuntu3) | nginx-naxsi (>= 1.4.6-1ubuntu3), nginx-core (<< 1.4.6-1ubuntu3.1~) | nginx-full (<< 1.4.6-1ubuntu3.1~) | nginx-light (<< 1.4.6-1ubuntu3.1~) | nginx-extras (<< 1.4.6-1ubuntu3.1~) | nginx-naxsi (<< 1.4.6-1ubuntu3.1~) Filename: pool/main/n/nginx/nginx_1.4.6-1ubuntu3_all.deb Size: 5586 MD5sum: 672b99fe883e1ec98f754f2a853da5b7 SHA1: f6fb0c2b10c77f3665ad50279409e43c835aee0e SHA256: c8e84beea1206e8e584327069d91d3c1756b7ecb32c99e7faa88a741efc9eaa8 Description: small, powerful, scalable web/proxy server Homepage: http://nginx.net Description-md5: bd4376da2b5b4ce623fe3c85203333ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nginx-common Priority: optional Section: httpd Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: all Source: nginx Version: 1.4.6-1ubuntu3 Replaces: nginx (<< 0.8.54-4), nginx-extras (<< 0.8.54-4), nginx-full (<< 0.8.54-4), nginx-light (<< 0.8.54-4) Depends: lsb-base (>= 3.2-14), init-system-helpers (>= 1.13~) Suggests: fcgiwrap, nginx-doc Breaks: nginx (<< 0.8.54-4), nginx-extras (<< 0.8.54-4), nginx-full (<< 0.8.54-4), nginx-light (<< 0.8.54-4) Filename: pool/main/n/nginx/nginx-common_1.4.6-1ubuntu3_all.deb Size: 18122 MD5sum: eda8082911f5f1d27c3b6234c2c5b11b SHA1: 6e92b73b299b45a8adbe603c90d3a4b2c59921ed SHA256: 0c97304eb6faa42f284f80a46fc7257bccc5ad4d4244504862134c90a866174c Description: small, powerful, scalable web/proxy server - common files Homepage: http://nginx.net Description-md5: 9e23931d84d07adbee5412aefdad8a90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nginx-core Priority: optional Section: httpd Installed-Size: 920 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: i386 Source: nginx Version: 1.4.6-1ubuntu3 Provides: httpd, httpd-cgi, nginx Depends: nginx-common (= 1.4.6-1ubuntu3), libc6 (>= 2.10), libgd3 (>= 2.1.0~alpha~), libgeoip1, libpcre3, libssl1.0.0 (>= 1.0.1), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), zlib1g (>= 1:1.2.0) Suggests: nginx-doc (= 1.4.6-1ubuntu3) Conflicts: nginx-extras, nginx-full, nginx-light, nginx-naxsi Breaks: nginx (<< 1.4.5-1) Filename: pool/main/n/nginx/nginx-core_1.4.6-1ubuntu3_i386.deb Size: 322050 MD5sum: 97284cff48575114ab97628f79825191 SHA1: 98030a2a676e02e852670489c364d3239594d023 SHA256: 9171239f92e4c962fd4c838ed48a748979f1bfaec2203c8b02493f9d1d077fc3 Description: nginx web/proxy server (core version) Homepage: http://nginx.net Description-md5: 95171bf38df6e32108381da4d4095a2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nginx-core-dbg Priority: extra Section: debug Installed-Size: 2813 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: i386 Source: nginx Version: 1.4.6-1ubuntu3 Depends: nginx-core (= 1.4.6-1ubuntu3) Conflicts: nginx-extras-dbg, nginx-full-dbg, nginx-light-dbg, nginx-naxsi-dbg Filename: pool/main/n/nginx/nginx-core-dbg_1.4.6-1ubuntu3_i386.deb Size: 2612262 MD5sum: 07ce95541c1c2122d7769e9d525c2b50 SHA1: 0b4e96c2ffcc09e4d51ab8d763a808d5cc9ae85c SHA256: ccd0e6cd644be61e8457b6bfc9aa7ef7c6a36939acb965771e8cfaae97f9198d Description: nginx web/proxy server (core version) - debugging symbols Homepage: http://nginx.net Description-md5: 585306ee79603eddeea2257bc315e8f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nginx-doc Priority: optional Section: doc Installed-Size: 115 Maintainer: Ubuntu Developers Original-Maintainer: Kartik Mistry Architecture: all Source: nginx Version: 1.4.6-1ubuntu3 Depends: lsb-base (>= 3.2-14) Filename: pool/main/n/nginx/nginx-doc_1.4.6-1ubuntu3_all.deb Size: 16836 MD5sum: 0fbc1c50921b6081ba1c5f7e649d6e2e SHA1: 691c0f258243fddbddb216cc4cbaee931430d62c SHA256: 9423a0be7a263f1dcfe6165a5c7e07c4f9b6b8f13ccb7c1f5d4e486d4c8c349f Description: small, powerful, scalable web/proxy server - documentation Homepage: http://nginx.net Description-md5: fd841a2b53e39ae89ec191f0e1278a05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nih-dbus-tool Priority: optional Section: devel Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Scott James Remnant Architecture: i386 Source: libnih Version: 1.0.3-4ubuntu25 Depends: libnih1 (>= 1.0.0), libc6 (>= 2.3.4), libdbus-1-3 (>= 1.0.2), libexpat1 (>= 2.0.1) Recommends: libnih-dbus-dev (= 1.0.3-4ubuntu25) Filename: pool/main/libn/libnih/nih-dbus-tool_1.0.3-4ubuntu25_i386.deb Size: 53836 MD5sum: 02c1f1a73aca49dd7fafc41a1b18a219 SHA1: 8c7976719ac2b3ebba3de202df41f6399696851d SHA256: 5b2031020ad38237905a99f483b283eec851ee8e55f098f71e7a0f0779c0772a Description: NIH D-Bus Binding Tool Multi-Arch: foreign Homepage: https://launchpad.net/libnih Description-md5: c309612fda0b1e2fe481e61ec84c37d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nmap Priority: extra Section: net Installed-Size: 17113 Maintainer: LaMont Jones Architecture: i386 Version: 6.40-0.2ubuntu1 Replaces: ndiff Provides: ndiff Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), liblinear1 (>= 1.6), liblua5.2-0, libpcap0.8 (>= 0.9.8), libpcre3, libssl1.0.0 (>= 1.0.0), libstdc++6 (>= 4.6), python:any Conflicts: ndiff Filename: pool/main/n/nmap/nmap_6.40-0.2ubuntu1_i386.deb Size: 3869464 MD5sum: 71bb60c026de2f5bb5de08cad8ccde56 SHA1: f8a08772da8702404e6a13383454dba448a2ec31 SHA256: 7c4bc6deced16f74afa5f2e0ec2f86ae2d3c5f03437c94cac2c95cc50d702959 Description: The Network Mapper Description-md5: bc417f4c1fdba7d8d9b0ca8a2a90b7a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: notification-daemon Priority: optional Section: x11 Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 0.7.6-1 Replaces: notify-daemon Depends: libatk1.0-0 (>= 1.12.4), libc6 (>= 2.0), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.27.0), libgtk-3-0 (>= 3.0.0), libx11-6 Conflicts: notify-daemon Filename: pool/main/n/notification-daemon/notification-daemon_0.7.6-1_i386.deb Size: 30576 MD5sum: 6455a52ffd0ec82195a4c339ff7a7728 SHA1: d5e7019bc7465ee65b3f74612306cb03d8b4ab87 SHA256: 1a5855cad995f7b53ab03923405b5d3f45081c670d42cb11cf3fb572c626c80a Description: daemon for displaying passive pop-up notifications Homepage: http://www.galago-project.org/specs/notification/index.php Description-md5: 7b6bf4bfa132950715240823bbaf9ae8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-gnome-desktop Package: notify-osd Priority: optional Section: x11 Installed-Size: 787 Maintainer: DX Team Architecture: i386 Version: 0.9.35+14.04.20140213-0ubuntu1 Replaces: notification-daemon Provides: notification-daemon Depends: gsettings-desktop-schemas, dconf-gsettings-backend | gsettings-backend, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.16), libpango-1.0-0 (>= 1.20.0), libpangocairo-1.0-0 (>= 1.14.0), libpixman-1-0 (>= 0.30.0), libwnck-3-0 (>= 3.4.0), libx11-6 Recommends: notify-osd-icons Filename: pool/main/n/notify-osd/notify-osd_0.9.35+14.04.20140213-0ubuntu1_i386.deb Size: 102536 MD5sum: f1e9f5defc4e4bd2be46c86a174f9c68 SHA1: 61dbcb89ec9e2051c64541e2c3d5b0fc16f6af66 SHA256: 7bd68943f4be0924f8bf40739247056b6ea8391561ded70887703a56d028bcc2 Description: daemon that displays passive pop-up notifications Homepage: https://launchpad.net/notify-osd Description-md5: 959180eeab8ef45dfa865fe315287601 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: notify-osd-icons Priority: optional Section: x11 Installed-Size: 1197 Maintainer: Ubuntu Desktop Team Architecture: all Version: 0.8+14.04.20131204-0ubuntu1 Filename: pool/main/n/notify-osd-icons/notify-osd-icons_0.8+14.04.20131204-0ubuntu1_all.deb Size: 63746 MD5sum: 04ee6b5f03eee9150ce3d96228630328 SHA1: 37ab8a3415c6d7fb34029f896ed063bf5c387bfa SHA256: 5ce76bed5368dedb433ca6c051db9d43efd815186b01b971db2938b935c499c6 Description: Notify-OSD icons Homepage: https://launchpad.net/notify-osd-icons Description-md5: 96b60ffeac8bf14889f8441214669378 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: nova-api Priority: extra Section: net Installed-Size: 393 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: iptables, nova-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/n/nova/nova-api_2014.1-0ubuntu1_all.deb Size: 4712 MD5sum: 1141f487f9faef59f46a25bacd96f8b4 SHA1: 5a5c1d013c9d48e3ed9b2658dcbad7c1c918367d SHA256: 871d06945e52a06fff7eac9be4ffbe2b7e6a7c030ffeee8be23ec6807a552b0b Description: OpenStack Compute - API frontend Homepage: http://launchpad.net/nova Description-md5: 93751a4c42a717b98a076fc37e614e1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-cert Priority: extra Section: net Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: nova-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/n/nova/nova-cert_2014.1-0ubuntu1_all.deb Size: 4384 MD5sum: c7c9eab32678ee2ffdf94166f532b6fe SHA1: a5d9f6040079eb7bdc030a2c21f6c563a0357a18 SHA256: 133d85bbe2ba7cc67ab0b04a3d8ace4f3180c53bac6f805b58883e87db666c00 Description: OpenStack Compute - certificate management Homepage: http://launchpad.net/nova Description-md5: 171b61c56d67b812f80c5642bfa0d1d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-common Priority: extra Section: net Installed-Size: 482 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: adduser, python-nova (= 1:2014.1-0ubuntu1), python:any Recommends: python-glanceclient, python-keystone Filename: pool/main/n/nova/nova-common_2014.1-0ubuntu1_all.deb Size: 11140 MD5sum: 1c3ef152b692a11d7822b5657d64fe92 SHA1: 59c68ca9b6cfe1e2a8c7fabd8d40b92765d6e317 SHA256: 2bd094ef8f835fe03999c97e3dcfceb7ccf13f7e1d165d2fee5914c11ffef3c6 Description: OpenStack Compute - common files Homepage: http://launchpad.net/nova Description-md5: ca300a4c4a13a67629e52754451325a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-compute Priority: extra Section: net Installed-Size: 402 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: nova-common (= 1:2014.1-0ubuntu1), nova-compute-kvm | nova-compute-hypervisor, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/n/nova/nova-compute_2014.1-0ubuntu1_all.deb Size: 6686 MD5sum: f0c9026a52a0b3cce2e82c54dee5f7e9 SHA1: 32945cb0ef9526ec3e80bc1c32c8c53babaf9469 SHA256: 25830f9941d5d17b94fdf2fa205e92ddf9712c1c81d79d71294a364f43716595 Description: OpenStack Compute - compute node base Homepage: http://launchpad.net/nova Description-md5: 3ba5242ed5b20ea217068529d959352e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-compute-kvm Priority: extra Section: net Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Provides: nova-compute-hypervisor Depends: nova-compute-libvirt (= 1:2014.1-0ubuntu1), qemu-system (>= 1.3.0) | kvm Conflicts: nova-compute-hypervisor Filename: pool/main/n/nova/nova-compute-kvm_2014.1-0ubuntu1_all.deb Size: 2826 MD5sum: eb61aa3b6d4db9bf669378b7d8010299 SHA1: f337ac270c132a363ace63ec0320b02b1709dc82 SHA256: 2458a8ba860276c4384a9d4b9b1b622dff0b43187f058a478d0542534a4be516 Description: OpenStack Compute - compute node (KVM) Homepage: http://launchpad.net/nova Description-md5: 3a3f4fc6eb0e0d1a1a52636f4a84daa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-compute-libvirt Priority: extra Section: net Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: adduser, ebtables, genisoimage, iptables, kpartx, libvirt-bin, nova-compute (= 1:2014.1-0ubuntu1), open-iscsi, parted, python-libvirt, qemu-utils, vlan Suggests: guestmount, multipath-tools, sg3-utils, sysfsutils Filename: pool/main/n/nova/nova-compute-libvirt_2014.1-0ubuntu1_all.deb Size: 2802 MD5sum: 246fe0b8ab1c07762d0828b5fe192a52 SHA1: ccaa3afe4968c4ba72d52a43c2eaf32b4e2fe593 SHA256: 0818d359fe678b1fabb6f70665cfdd6ab0141f175a17f624f2596f14fd142eff Description: OpenStack Compute - compute node libvirt support Homepage: http://launchpad.net/nova Description-md5: cb504411d66a5643ec6b6555c1b9da4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-compute-lxc Priority: extra Section: net Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Provides: nova-compute-hypervisor Depends: nova-compute-libvirt (= 1:2014.1-0ubuntu1) Conflicts: nova-compute-hypervisor Filename: pool/main/n/nova/nova-compute-lxc_2014.1-0ubuntu1_all.deb Size: 2802 MD5sum: 45dfe8b6bb47b3501172fd7e38725e19 SHA1: 7113d57d7b7e9683333acdbf36d6cc443c24625c SHA256: 81049708ad45e89026d11e41016697c17130edce3ce4ee7553b5db33a0b6a2ca Description: OpenStack Compute - compute node (LXC) Homepage: http://launchpad.net/nova Description-md5: 8c74b0f3d56b3da8c70cf752f98f7869 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-doc Priority: extra Section: doc Installed-Size: 3454 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Recommends: libjs-jquery Filename: pool/main/n/nova/nova-doc_2014.1-0ubuntu1_all.deb Size: 1979428 MD5sum: 21cad888e3250b486a7a525df1935638 SHA1: 6ca51f7406e59e55e5cb3d93148d908d2e479ff1 SHA256: a4660f136ae2eac1334b54f349ee29ec32793130cb7482a00f25d65070407c2a Description: OpenStack Compute - documentation Homepage: http://launchpad.net/nova Description-md5: 1c367fcc5afa32969a8f351c6365dd1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-network Priority: extra Section: net Installed-Size: 398 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: bridge-utils, dnsmasq-base, dnsmasq-utils, ebtables, iptables, iputils-arping, netcat, nova-common (= 1:2014.1-0ubuntu1), vlan, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Suggests: radvd Filename: pool/main/n/nova/nova-network_2014.1-0ubuntu1_all.deb Size: 6460 MD5sum: cc363a712e375838ea626381f84c0fbf SHA1: c610f9bddd8e3fb5d7e4fd22b8de6042945ed10a SHA256: 8b7ad5f403325eabb9c738b6bfb78a697be7aedcf0255524affca624b2fc4c17 Description: OpenStack Compute - Network manager Homepage: http://launchpad.net/nova Description-md5: ce3e77d724d3353406c26c4d4af8c565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-objectstore Priority: extra Section: net Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: nova-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/n/nova/nova-objectstore_2014.1-0ubuntu1_all.deb Size: 4596 MD5sum: c1b1bec33f72d52cf6371bb075bd6b0a SHA1: d02d612582c72e4ad1b033cdd7992362a3effa38 SHA256: 7b73161bacb0024e92f427080c964a4189c21cf7a976203ca964646ad250ca0e Description: OpenStack Compute - object store Homepage: http://launchpad.net/nova Description-md5: 25cb037ff1b6bb2f705647605954cac3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-scheduler Priority: extra Section: net Installed-Size: 385 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: nova-common (= 1:2014.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Filename: pool/main/n/nova/nova-scheduler_2014.1-0ubuntu1_all.deb Size: 4402 MD5sum: 535e3d15daf0651f8f8eaaf158456e41 SHA1: 172523b91e545e804d864885b04c348d3f81635c SHA256: 8896af1f774acf954e45538fac820bbe53858e84a40a5b4857f04da767774d26 Description: OpenStack Compute - virtual machine scheduler Homepage: http://launchpad.net/nova Description-md5: 8edec11a409c894d59bffef4d16d21b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nova-volume Priority: extra Section: net Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Depends: cinder-api, cinder-scheduler, cinder-volume Filename: pool/main/n/nova/nova-volume_2014.1-0ubuntu1_all.deb Size: 4680 MD5sum: 701d5f33dcbb12036a6de2d7cb6dc6e0 SHA1: 79e20b9b20a9a2c8a525e199c0285022be75243c SHA256: 6aa4ca50f87cd3232d226f499de443e69fabb992b1c7d1bb35854b8fbd9eb9f6 Description: OpenStack Compute - storage Homepage: http://launchpad.net/nova Description-md5: f85e1ba6a9aabcaf096890562606c8de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ntfs-3g Priority: standard Section: otherosfs Installed-Size: 1521 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Version: 1:2013.1.13AR.1-2ubuntu2 Provides: libntfs-3g841 Depends: debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.17), libfuse2 (>= 2.8.1), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0) Pre-Depends: multiarch-support, fuse Filename: pool/main/n/ntfs-3g/ntfs-3g_2013.1.13AR.1-2ubuntu2_i386.deb Size: 442120 MD5sum: 33fb920453ad529c594a4bf03eed16f0 SHA1: e20bdca40c944f794001ea7c1622e2992a42b91d SHA256: 0db9f8047b702995b8b410fee29171cc4a798b08588e0b9d0e3af8fcb2179707 Description: read/write NTFS driver for FUSE Homepage: http://www.tuxera.com/community/ntfs-3g-advanced/ Description-md5: d38b96403238266210560bdd2ee0d28c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: ntfs-3g-dbg Priority: extra Section: debug Installed-Size: 1552 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Source: ntfs-3g Version: 1:2013.1.13AR.1-2ubuntu2 Depends: ntfs-3g (= 1:2013.1.13AR.1-2ubuntu2), ntfs-3g-dev (= 1:2013.1.13AR.1-2ubuntu2) Filename: pool/main/n/ntfs-3g/ntfs-3g-dbg_2013.1.13AR.1-2ubuntu2_i386.deb Size: 1230066 MD5sum: 34250606ac094459f39b06a1f2b59dcd SHA1: 02b5fa5e9909d697b3ff7fed064661f5ad9fc2fe SHA256: 417e9ab12c933e7cb6b55cc47599cca14a6ab2db0e4fadbe87b5d264ba984860 Description: read/write NTFS driver for FUSE (debug) Homepage: http://www.tuxera.com/community/ntfs-3g-advanced/ Description-md5: 4d27c9bf99072e55f4dbb4647c384b5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ntfs-3g-dev Priority: optional Section: libdevel Installed-Size: 773 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Source: ntfs-3g Version: 1:2013.1.13AR.1-2ubuntu2 Depends: ntfs-3g (= 1:2013.1.13AR.1-2ubuntu2) Filename: pool/main/n/ntfs-3g/ntfs-3g-dev_2013.1.13AR.1-2ubuntu2_i386.deb Size: 216134 MD5sum: d94fe22d3fc09f92ac091b459c06e67a SHA1: 8493c8a1c763133983efc64c41daae59f5c7dd9a SHA256: 3bdd7cd3e71cbd35f373508400bd7def3e6f4333134a032f04d8584c38f30992 Description: read/write NTFS driver for FUSE (development) Homepage: http://www.tuxera.com/community/ntfs-3g-advanced/ Description-md5: f17752933720148edc7d3f25b03e9fee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ntp Priority: optional Section: net Installed-Size: 1397 Maintainer: Ubuntu Developers Original-Maintainer: Debian NTP Team Architecture: i386 Version: 1:4.2.6.p5+dfsg-3ubuntu2 Replaces: apparmor (<< 2.3.1+1403-0ubuntu10), apparmor-profiles (<< 2.3.1+1403-0ubuntu10) Depends: adduser, lsb-base (>= 3.2-13), netbase, libc6 (>= 2.17), libcap2 (>= 2.10), libedit2 (>= 2.11-20080614), libopts25 (>= 1:5.18), libssl1.0.0 (>= 1.0.0) Pre-Depends: dpkg (>= 1.15.7.2) Recommends: perl Suggests: ntp-doc, apparmor (>= 2.1+1075-0ubuntu6) Conflicts: apparmor (<< 2.3.1+1403-0ubuntu10), apparmor-profiles (<< 2.3.1+1403-0ubuntu10) Breaks: dhcp3-client (<< 4.1.0-1) Filename: pool/main/n/ntp/ntp_4.2.6.p5+dfsg-3ubuntu2_i386.deb Size: 585132 MD5sum: d24d19d68e8a40988c71f8344549e61c SHA1: 02a2c107cf504a0b2ff45292e9860c0de039fa6e SHA256: 112b451e942448e8c4784a90336dc14e32e9036370d6c47dc5838f8b193e0fc8 Description: Network Time Protocol daemon and utility programs Homepage: http://support.ntp.org/ Description-md5: 220487bd9eceed70fec6b929cb922fd3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop Package: ntp-doc Priority: optional Section: doc Installed-Size: 1814 Maintainer: Ubuntu Developers Original-Maintainer: Debian NTP Team Architecture: all Source: ntp Version: 1:4.2.6.p5+dfsg-3ubuntu2 Filename: pool/main/n/ntp/ntp-doc_4.2.6.p5+dfsg-3ubuntu2_all.deb Size: 1122918 MD5sum: dcc3e28f7b85ba50068153f2dc8054e3 SHA1: 6b09f17741f3347427fa34d3b0e6ace132ea470d SHA256: 63afeba6d81c24add98b6119231269eef226726aedfedd334b70a5ce446fd2fa Description: Network Time Protocol documentation Homepage: http://support.ntp.org/ Description-md5: f5c14d8cbc640d49a5c8a0eeaadac851 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ntpdate Priority: important Section: net Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Debian NTP Team Architecture: i386 Source: ntp Version: 1:4.2.6.p5+dfsg-3ubuntu2 Depends: netbase, libc6 (>= 2.17), libssl1.0.0 (>= 1.0.0) Pre-Depends: dpkg (>= 1.15.7.2) Recommends: lockfile-progs Breaks: dhcp3-client (<< 4.1.0-1) Filename: pool/main/n/ntp/ntpdate_4.2.6.p5+dfsg-3ubuntu2_i386.deb Size: 63756 MD5sum: b43dd869190d63fe8ac869b1c4e65a4f SHA1: a49b06d7a31cc369839b4223cf4c08996c604cba SHA256: 90cf7b13d5ed1a81d14b9c3b01c1be71de3f125900dbf7e2df4f56d7e4208bda Description: client for setting system time from NTP servers Homepage: http://support.ntp.org/ Description-md5: bab945a5e62017056d52dca74ed20cda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: numlockx Priority: optional Section: x11 Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Version: 1.2-5 Depends: libc6 (>= 2.3.4), libx11-6, libxtst6 Suggests: x-display-manager Filename: pool/main/n/numlockx/numlockx_1.2-5_i386.deb Size: 8462 MD5sum: 04bf3ed10c452640d6094200cf033da9 SHA1: dbb2be7c874ccb224c60dbc2d9acdd674348649f SHA256: 03087a8e5c7babc6a0645851382125730dcad1bd4b8e1078c8ced418d0cc2c88 Description: enable NumLock in X11 sessions Enhances: gdm, kdm, wdm, xdm Homepage: http://home.kde.org/~seli/numlockx/ Description-md5: 443457451ab961060ec30ab3c8455978 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nut Priority: optional Section: admin Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: all Version: 2.7.1-1ubuntu1 Depends: nut-server, nut-client Filename: pool/main/n/nut/nut_2.7.1-1ubuntu1_all.deb Size: 119600 MD5sum: 2b16585e6c2ec30d542bcadb7474f94c SHA1: fb17220b9f88047164301caeb4ff9ad8309901a0 SHA256: b7c76a16a77149c5e1cda9e388c8d2f55585036a44d20f43e296709a20811890 Description: network UPS tools - metapackage Homepage: http://www.networkupstools.org/ Description-md5: ac00395fb1ff129232ba0df5e10c0949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nut-cgi Priority: optional Section: admin Installed-Size: 318 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: i386 Source: nut Version: 2.7.1-1ubuntu1 Depends: libc6 (>= 2.15), libgd3 (>= 2.1.0~alpha~), libupsclient3 (>= 2.7.1), adduser Recommends: apache2 | httpd-cgi Suggests: nut Filename: pool/main/n/nut/nut-cgi_2.7.1-1ubuntu1_i386.deb Size: 46222 MD5sum: 09a5e947de264b63ab8a4d474de1819e SHA1: 1f3e2ba3cacfd9e3c33ed76f99148e3772a7aed1 SHA256: e58e58f2b943ea199cc948d556698301da00fa67720722d6284e623537ed38b1 Description: network UPS tools - web interface Homepage: http://www.networkupstools.org/ Description-md5: 16fe1723aea6d72223068ec8c97046eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nut-client Priority: optional Section: admin Installed-Size: 493 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: i386 Source: nut Version: 2.7.1-1ubuntu1 Replaces: nut (<< 2.6.1-2~), nut-server (<< 2.6.3-1~), ups-monitor Provides: ups-monitor Depends: libc6 (>= 2.15), libupsclient3 (>= 2.7.1), init-system-helpers (>= 1.13~), adduser, lsb-base (>= 3.0-6) Recommends: bash-completion Suggests: nut-monitor Conflicts: ups-monitor Breaks: nut (<< 2.6.1-2~), nut-server (<< 2.6.3-1~) Filename: pool/main/n/nut/nut-client_2.7.1-1ubuntu1_i386.deb Size: 86656 MD5sum: 06ab2bf3571dcfda8dc811a0ba9f3030 SHA1: 6185f2562f1eb1ab0f21ccd64eab044fd21eb1a4 SHA256: f05085ae3cbae0f99e726ce3506ce4463bcf546261ecdc8cbb13ac726f5f4dc0 Description: network UPS tools - clients Homepage: http://www.networkupstools.org/ Description-md5: 30f1061db3258a7a5c46e18466afa6c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nut-doc Priority: optional Section: doc Installed-Size: 2911 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: all Source: nut Version: 2.7.1-1ubuntu1 Suggests: doc-base Filename: pool/main/n/nut/nut-doc_2.7.1-1ubuntu1_all.deb Size: 1824030 MD5sum: 9580813fb91bd486d224abe4b09bf88a SHA1: 7d632f84a1ca71691e7f174310497fc66e5eef0f SHA256: 7261a0d0f591a68f0566885b2dcbbd5bf4ed673b706d316aac08ceeb1124eeb3 Description: network UPS tools - documentation Homepage: http://www.networkupstools.org/ Description-md5: 4cffa515519a2e34b3b662460af77a9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: nut-server Priority: optional Section: admin Installed-Size: 4075 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: i386 Source: nut Version: 2.7.1-1ubuntu1 Replaces: nut (<< 2.6.1-2~) Depends: libc6 (>= 2.15), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libupsclient3 (>= 2.7.1), libusb-0.1-4 (>= 2:0.1.12), libwrap0 (>= 7.6-4~), init-system-helpers (>= 1.13~), adduser, lsb-base (>= 3.0-6), udev (>= 136-1), nut-client (= 2.7.1-1ubuntu1) Suggests: nut-cgi, nut-snmp, nut-ipmi, nut-xml Conflicts: nut-hal-drivers Breaks: nut (<< 2.6.1-2~) Filename: pool/main/n/nut/nut-server_2.7.1-1ubuntu1_i386.deb Size: 603336 MD5sum: f7d252958bea1947fc3b96bf6e7d4089 SHA1: 8e65476b925d055af033dd7f6420d904bf66be25 SHA256: 36cfdb1bb0e650ee99893f01dcea22810ba1ccd834d63ac987245bf1b7de7ff7 Description: network UPS tools - core system Homepage: http://www.networkupstools.org/ Description-md5: cf50e3b4416f9edcc4a33c7f641661ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nut-snmp Priority: optional Section: admin Installed-Size: 280 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Quette Architecture: i386 Source: nut Version: 2.7.1-1ubuntu1 Depends: libc6 (>= 2.15), libsnmp30 (>= 5.7.2~dfsg), nut (>= 1.4.1-pre1) Filename: pool/main/n/nut/nut-snmp_2.7.1-1ubuntu1_i386.deb Size: 78240 MD5sum: a7b0b5354a5c40698fe87450dbd925a1 SHA1: e32d350e19c017310037f8e12524a87bfb7bb59e SHA256: e8798f1f36b813ed2bd59f21c6596df5e281e44f772fffc4576b83bdf4a27e61 Description: network UPS tools - SNMP driver Homepage: http://www.networkupstools.org/ Description-md5: 9982af957abdb380c9a8847a365d37a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nux-tools Priority: optional Section: x11 Installed-Size: 82 Maintainer: Didier Roche Architecture: i386 Source: nux Version: 4.0.6+14.04.20140409-0ubuntu1 Depends: libc6 (>= 2.4), libgl1-mesa-glx | libgl1, libpci3 (>= 1:3.2.1-1), libx11-6, libxcomposite1 (>= 1:0.3-1), libxdamage1 (>= 1:1.1), libxfixes3 Filename: pool/main/n/nux/nux-tools_4.0.6+14.04.20140409-0ubuntu1_i386.deb Size: 10478 MD5sum: 39410f92d4c89ea1896ce751e0839665 SHA1: 02b7d2455f3b8c88db40ff030548b4ee7739bd8d SHA256: aa9b7269f67aa131bd683e6b072ad5136f1da6446afc3568087f16b15d1bb05f Description: Visual rendering toolkit for real-time applications - tools Multi-Arch: foreign Homepage: http://launchpad.net/nux Description-md5: b3c6b45df6daa78bd162d755577c83d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: nvidia-prime Priority: optional Section: admin Installed-Size: 86 Maintainer: Alberto Milone Architecture: i386 Version: 0.6.2 Replaces: hybrid-graphics Provides: hybrid-graphics Depends: lightdm (>= 1.9.1) | gdm | kdm, upstart, bbswitch-dkms, pciutils, lsb-release, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Conflicts: hybrid-graphics Breaks: ubuntu-drivers-common (<< 1:0.2.89) Filename: pool/main/n/nvidia-prime/nvidia-prime_0.6.2_i386.deb Size: 11162 MD5sum: 66ae3b665649896cec94dd09e0b18e63 SHA1: 789e880650ab2daa474314977eab09f9cf6d19e8 SHA256: b6bdeaeeee5578ae8fe81db6fa426ad183813f40da8c3d8ae0043bb45f75f367 Description: Tools to enable NVIDIA's Prime Description-md5: 398e4a566cef42e9b12f88c78ffad0c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings Priority: optional Section: x11 Installed-Size: 2336 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Version: 331.20-0ubuntu8 Replaces: libxnvctrl-dev, nvidia-settings-binary Provides: nvidia-settings-binary Depends: pkg-config, screen-resolution-extra (>= 0.12), libvdpau1, libc6 (>= 2.7), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.8.0), libpango-1.0-0 (>= 1.14.0), libx11-6 (>= 2:1.4.99.1), libxext6, libxxf86vm1 Conflicts: libxnvctrl-dev, nvidia-settings-binary Filename: pool/main/n/nvidia-settings/nvidia-settings_331.20-0ubuntu8_i386.deb Size: 767236 MD5sum: 2bb22560518e84520e93b9ab7f13439b SHA1: 5931d39dad5054e69cdf2fcf7270bf83256dbf9d SHA256: 3903c9a93ba8b2e9fb3bd0158f2f88966958b2e222a48c5d649cca86ee6ac777 Description: Tool for configuring the NVIDIA graphics driver Description-md5: 9bb7c34dc84550e6fff415c0eb0eda37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-304 Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-304_331.20-0ubuntu8_i386.deb Size: 2966 MD5sum: 6a5bf9f6f464ca521c821c0e6f9838d9 SHA1: 17713d76f8f73268db946a1859de224a9338834e SHA256: cf0fee343a92a67609678d1949a8c6ceb5552fba5a8d9192d0584ecf1e9aed7c Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-304-updates Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-304-updates_331.20-0ubuntu8_i386.deb Size: 2976 MD5sum: 66d39e20016118fa9b0a935d013d3023 SHA1: b0ffaa330cacd165d254c98609c5b1e0ecc2ff63 SHA256: d35e563e2e19a39fd3c349574c140fb1ea204a1aa1be59adcd4f3d1f835f1ee6 Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-310 Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-310_331.20-0ubuntu8_i386.deb Size: 2966 MD5sum: 928ddcd9306c278e0991374ab3d0e78a SHA1: 3992062cff42c8a4a95c30d7fbc0673f733cec4c SHA256: 2d7b5e495717d66c84f116aae15811c752f0d28d5f0829ea3a0934d6663ac7ef Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-310-updates Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-310-updates_331.20-0ubuntu8_i386.deb Size: 2976 MD5sum: 7f11e2db5377a4d9f7ee901e0ec7052c SHA1: d2a57fa044ece835ec1d91ce63ea688937775e55 SHA256: 098b1f0529bded830fc4c33f84ac9cbc27fe14bd963de6a8d7f568fa1f319186 Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-313-updates Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-313-updates_331.20-0ubuntu8_i386.deb Size: 2976 MD5sum: 7c1056814bd1af6b7ca7ef5a805b23ab SHA1: 1e39fc8fad8a23233293c949ea5908465c9d8694 SHA256: 0b96f00455979a7226cba06bc9b2d911e5950a37fa21ee2fadba2862baa957c7 Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-319 Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-319_331.20-0ubuntu8_i386.deb Size: 2968 MD5sum: 9453e2136197a1b91d4db1d80657ded2 SHA1: 06f603667cb87369a80b7f6fa77fde4039ba0173 SHA256: f191492e54837f73b114b3bde643a80f53fd9e524e585825ad96c187fb31e3aa Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-319-updates Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-319-updates_331.20-0ubuntu8_i386.deb Size: 2976 MD5sum: 6032bde5327df22d860a19ce90573854 SHA1: ed479f1fe9087d3e21663dc934eda4c3b629a64d SHA256: c4325e5af9335a17b73f034c15b305cc3e3c7524ee7bc7c6dcd9d422ccf97df7 Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-experimental-304 Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-experimental-304_331.20-0ubuntu8_i386.deb Size: 2986 MD5sum: c8263973fecc89ba9aef6b87f645f4ee SHA1: c9b0aeb9cd2015f19f5e82f834ec28a723af6ac3 SHA256: 858fff5af66515ad856de0e1a230571447e23e9072669a4279c547c9e82ebedd Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: nvidia-settings-updates Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Debian NVIDIA Maintainers Architecture: i386 Source: nvidia-settings Version: 331.20-0ubuntu8 Depends: nvidia-settings Filename: pool/main/n/nvidia-settings/nvidia-settings-updates_331.20-0ubuntu8_i386.deb Size: 2970 MD5sum: d2c38e69ff1d112f5b597c4aeafe1a97 SHA1: 3713a12af6cba11bf4141c62fd6c58d3b4daa791 SHA256: a21d0597a9fbe03867703b2379934f81de64fa4b083fccae68a64af80cf5a58e Description: Transitional package for nvidia-settings Description-md5: f47870c991815da78dfe4f93b1c51422 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: obex-data-server Priority: optional Section: admin Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Filippo Giunchedi Architecture: i386 Version: 0.4.6-0ubuntu2 Depends: libbluetooth3 (>= 4.91), libc6 (>= 2.7), libdbus-glib-1-2 (>= 0.88), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.31.8), libopenobex1, libusb-0.1-4 (>= 2:0.1.12) Recommends: python, python-dbus, python-gobject Filename: pool/main/o/obex-data-server/obex-data-server_0.4.6-0ubuntu2_i386.deb Size: 83834 MD5sum: 8dbd37e5d1f89a02d9c105341f68f9eb SHA1: da6f1fa38df92fc0f4c8b90a3d0e93a26a192c83 SHA256: 3534dd1cc341c457aa944ccae0082f4cd6457107cdeabe6ff42d88b8147c074b Description: D-Bus service for OBEX client and server side functionality Homepage: http://wiki.muiline.com/obex-data-server Description-md5: bcc795da48f30325384f4d64eaf288c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: obexd-client Priority: optional Section: admin Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bluetooth Maintainers Architecture: i386 Source: obexd Version: 0.46-1ubuntu7 Depends: libbluetooth3 (>= 4.91), libc6 (>= 2.7), libdbus-1-3 (>= 1.1.1), libglib2.0-0 (>= 2.28.0) Filename: pool/main/o/obexd/obexd-client_0.46-1ubuntu7_i386.deb Size: 59470 MD5sum: aff2084f25bf41153d9b9c9360c4e3a2 SHA1: 7ddae7a96e0a9a014b08130da15d848cc05b096a SHA256: 27042ea9cb037b3808ed2c6878c5f23f1d47d328026e9c4d1df8c8c4dd7942ea Description: D-Bus OBEX client Homepage: http://www.bluez.org Description-md5: 0774592751f2557a77c4b9658927512e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ocaml Priority: optional Section: devel Installed-Size: 8745 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Version: 4.01.0-3ubuntu3 Replaces: ocaml-nox (<< 3.11.0-2) Provides: ocaml-4.01.0 Depends: ocaml-base-nox, ocaml-base-4.01.0, ocaml-nox-4.01.0, libx11-dev Suggests: tcl-dev, tk-dev Filename: pool/main/o/ocaml/ocaml_4.01.0-3ubuntu3_i386.deb Size: 1250102 MD5sum: 6a7ab0cd6b417ee6f4fc0a813b3d5cf6 SHA1: f5e989dd312789c994cd5667c24d2350866f898b SHA256: 63bd0785d00a6edcc344b455b72446273f252ffeae2c678ebc6a3f8be7383f01 Description: ML language implementation with a class-based object system Homepage: http://caml.inria.fr/ Description-md5: 04cda173a24e7986d3433da3f1594787 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-base Priority: optional Section: devel Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Source: ocaml Version: 4.01.0-3ubuntu3 Provides: ocaml-base-4.01.0 Depends: ocaml-base-nox, libc6 (>= 2.15), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0), libx11-6, ocaml-base-nox-4.01.0 Filename: pool/main/o/ocaml/ocaml-base_4.01.0-3ubuntu3_i386.deb Size: 48326 MD5sum: 5825cda95f8d957c62482cc6bcae5099 SHA1: c00141a3f393a4dc62937d0e7f7e22ba11d23b24 SHA256: 2ba82c060cd090ad963be8ea66e316fdefa4d9dbc15c53f3d0ec07dd2cbb612f Description: Runtime system for OCaml bytecode executables Homepage: http://caml.inria.fr/ Description-md5: 84e550243216cdd5a47f4a5444f96a15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-base-nox Priority: optional Section: devel Installed-Size: 1582 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Source: ocaml Version: 4.01.0-3ubuntu3 Replaces: ocaml-interp (<< 3.11.1-3) Provides: ocaml-base-nox-4.01.0 Depends: libc6 (>= 2.15), libtinfo5 Breaks: ocaml-interp (<< 3.11.1-3) Filename: pool/main/o/ocaml/ocaml-base-nox_4.01.0-3ubuntu3_i386.deb Size: 436742 MD5sum: f62b6025fd6d719937e80a008ce2cf27 SHA1: 18e09fcc476400f795808526140ccd60f3caab4b SHA256: 79b42be523d6640bbd4bdee3d135eb92ae40975c3dd23dd5734d7c257abb09fe Description: Runtime system for OCaml bytecode executables (no X) Homepage: http://caml.inria.fr/ Description-md5: bb24dbfee7bb8f2ca497066cab6a4f5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-compiler-libs Priority: optional Section: devel Installed-Size: 7495 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Source: ocaml Version: 4.01.0-3ubuntu3 Replaces: ocaml-base-nox (<< 4) Provides: ocaml-compiler-libs-4.01.0 Depends: ocaml-nox-4.01.0 Breaks: ocaml-base-nox (<< 4) Filename: pool/main/o/ocaml/ocaml-compiler-libs_4.01.0-3ubuntu3_i386.deb Size: 1308428 MD5sum: 5f423cc5efa8f5c095c4bbe4b05fabef SHA1: b395b09e99b3ad81de1af05a29cedcd698c0568f SHA256: ed0b16d3fb4e500413f59de7fb09ef3351b186c3fb5fd69cd080e0e3cc8eaeac Description: OCaml interpreter and standard libraries Homepage: http://caml.inria.fr/ Description-md5: a765ce776aca74df74b073777915c3f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-findlib Priority: optional Section: devel Installed-Size: 664 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Source: findlib Version: 1.4-2 Depends: libfindlib-ocaml, libc6 (>= 2.15) Recommends: libfindlib-ocaml-dev Suggests: camlp4, ocaml-findlib-wizard Filename: pool/main/f/findlib/ocaml-findlib_1.4-2_i386.deb Size: 211704 MD5sum: 945e97aef7ccfc6a0bd5edc48dbef565 SHA1: 95a31e404631c0c9a0346ca75c0999ae840229d6 SHA256: 65a5af94a4a87017f8a8b06ee200d6bee40bc3f74d564bfc601fb07032f742cf Description: management tool for OCaml libraries Homepage: http://projects.camlcity.org/projects/findlib.html Description-md5: 5266af2e3694f3972f6e03f40368c083 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-interp Priority: optional Section: devel Installed-Size: 1568 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Source: ocaml Version: 4.01.0-3ubuntu3 Provides: ocaml-interp-4.01.0 Depends: ocaml-compiler-libs (= 4.01.0-3ubuntu3), ocaml-base-nox-4.01.0 Recommends: ledit | readline-editor Filename: pool/main/o/ocaml/ocaml-interp_4.01.0-3ubuntu3_i386.deb Size: 226518 MD5sum: e70b03dddf52615a20f12234f813e4b3 SHA1: dcc14925878ef7a08d82b4d98a4cc3a0e680c310 SHA256: 7ca9417d7f8306a76b6216eeec3209ad3eeab6af5b379b040c218c8310b572be Description: OCaml interactive interpreter and standard libraries Homepage: http://caml.inria.fr/ Description-md5: 8eec5a948780aa1b1aac7a63aefff1cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocaml-nox Priority: optional Section: devel Installed-Size: 23044 Maintainer: Ubuntu Developers Original-Maintainer: Debian OCaml Maintainers Architecture: i386 Source: ocaml Version: 4.01.0-3ubuntu3 Replaces: ocaml-interp (<< 3.11.1-3) Provides: libnums-ocaml-dev, ocaml-nox-4.01.0 Depends: ocaml-base-nox, libc6 (>= 2.15), libtinfo5, zlib1g (>= 1:1.2.0), ocaml-base-nox-4.01.0, libncurses5-dev, ocaml-interp (= 4.01.0-3ubuntu3), gcc, binutils Recommends: camlp4, file Suggests: ocaml-doc, tuareg-mode | ocaml-mode Breaks: camlidl (<< 1.04), camlp4 (<< 3.10.0), dh-ocaml (<< 1.0.0), ocaml-interp (<< 3.11.1-3) Filename: pool/main/o/ocaml/ocaml-nox_4.01.0-3ubuntu3_i386.deb Size: 3824126 MD5sum: 9f86bfbd7343e794d90a58a239c1b286 SHA1: cf274fc8102b88c09fc9e07d1a1769516f81b32a SHA256: e096d35baed1882aaa55ea0d865f6ce91d33d1493ab4f9185987490769426406 Description: ML implementation with a class-based object system (no X) Homepage: http://caml.inria.fr/ Description-md5: 29aa9bd04748d97897bee886074681aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocfs2-tools Priority: optional Section: admin Installed-Size: 2363 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy Lainé Architecture: i386 Version: 1.6.4-3ubuntu1 Depends: libc6 (>= 2.7), libcomerr2 (>= 1.01), libglib2.0-0 (>= 2.24.0), libreadline6 (>= 6.0), libuuid1 (>= 2.16), debconf (>= 0.5) | debconf-2.0, psmisc Suggests: ocfs2console Filename: pool/main/o/ocfs2-tools/ocfs2-tools_1.6.4-3ubuntu1_i386.deb Size: 436982 MD5sum: 741b6bc3c9c0746c893d59233ae224f7 SHA1: 199d82fc530082c70cb46e022cf45a8d9537481a SHA256: 2b7fd91c503853344898cec590fc9978fb71b1f5b371929c51d5abea3ed4be65 Description: tools for managing OCFS2 cluster filesystems Homepage: http://oss.oracle.com/projects/ocfs2-tools/ Description-md5: 35dcd82fb739cced2d7441e218050187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ocfs2-tools-dev Priority: optional Section: devel Installed-Size: 603 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy Lainé Architecture: i386 Source: ocfs2-tools Version: 1.6.4-3ubuntu1 Depends: ocfs2-tools (= 1.6.4-3ubuntu1) Filename: pool/main/o/ocfs2-tools/ocfs2-tools-dev_1.6.4-3ubuntu1_i386.deb Size: 149016 MD5sum: 2d878ed1398114c85e55cb80a029ed57 SHA1: de291c7bddaa52d9875211af9f6f3f4d5cf65885 SHA256: c3eb0c49d9ad0e5e2e67f618e87aa40130f2677672d2d25cee562e43dbec1d01 Description: tools for managing OCFS2 cluster filesystems - development files Homepage: http://oss.oracle.com/projects/ocfs2-tools/ Description-md5: c83e087ed43fbcb16a766887bb9e850a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ocfs2console Priority: optional Section: admin Installed-Size: 435 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy Lainé Architecture: i386 Source: ocfs2-tools Version: 1.6.4-3ubuntu1 Depends: libblkid1 (>= 2.16), libc6 (>= 2.7), libcomerr2 (>= 1.01), libglib2.0-0 (>= 2.12.0), libuuid1 (>= 2.16), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), ocfs2-tools (= 1.6.4-3ubuntu1), python-gtk2 Filename: pool/main/o/ocfs2-tools/ocfs2console_1.6.4-3ubuntu1_i386.deb Size: 125782 MD5sum: db9702286fbe0df89a026a1353a118a8 SHA1: 578e4277840aea6b23a8b17c474ecb9520e7300c SHA256: bc5f984847f2a03b4e890646d79a9d32480e482921f3f7baf7b200cacddf7b85 Description: tools for managing OCFS2 cluster filesystems - graphical interface Homepage: http://oss.oracle.com/projects/ocfs2-tools/ Description-md5: 2ebccbcd5437a0267ea7af244d081c49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: odbc-mdbtools Priority: optional Section: libs Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Jean-Michel Vourgère Architecture: i386 Source: mdbtools Version: 0.7.1-1ubuntu1 Replaces: libmdbodbc1 (<< 0.7.1-1~) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libmdb2 (>= 0.7~rc1), libmdbsql2 (>= 0.5.99.0.6pre1.0.20051109), odbcinst1debian2 (>= 2.2.11-3) Pre-Depends: multiarch-support Recommends: libodbc1 Suggests: mdbtools-doc Breaks: libiodbc2 (<< 3.52.7-2+deb7u1), libmdbodbc1 (<< 0.7.1-1~), odbcinst1debian2 (<< 2.2.14p2-3), unixodbc (<< 2.2.14p2-3) Filename: pool/main/m/mdbtools/odbc-mdbtools_0.7.1-1ubuntu1_i386.deb Size: 25970 MD5sum: 7834910b9f87fe5688d3a96bc8157c75 SHA1: 95d617951e8f62971f602e609a2dbbecb15bd085 SHA256: 930faf623175a08b0536273ce78239c14ded8d30a40764d29f8044f7f22c154c Description: MDB tools ODBC driver Multi-Arch: same Homepage: http://mdbtools.sourceforge.net/ Description-md5: adbbf5e7276666b028b26a318ba16b8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: odbcinst Priority: optional Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: unixodbc Version: 2.2.14p2-5ubuntu5 Replaces: odbcinst1, odbcinst1debian1 (<< 2.2.11-20), unixodbc (<< 2.1.1-2) Depends: libc6 (>= 2.4), odbcinst1debian2 (>= 2.2.14p2) Conflicts: odbcinst1 Filename: pool/main/u/unixodbc/odbcinst_2.2.14p2-5ubuntu5_i386.deb Size: 12392 MD5sum: 2a85682846e286d2d37c84f86c32b5cc SHA1: 3704f0c403ea60e1b821763d9d508b9d995f7e99 SHA256: 9d2acfe71d55158cb9872d4e031bfa81dfd80ae875b479ce24614aad76ee61f1 Description: Helper program for accessing odbc ini files Multi-Arch: foreign Homepage: http://www.unixodbc.org/ Description-md5: 94a30ab8c0d53da82db9d3503fec9c1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: odbcinst1debian2 Priority: optional Section: libs Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: unixodbc Version: 2.2.14p2-5ubuntu5 Replaces: unixodbc (<< 2.1.1-2) Depends: libc6 (>= 2.4), libltdl7 (>= 2.4.2), odbcinst Pre-Depends: multiarch-support Conflicts: odbcinst1, odbcinst1debian1 Breaks: libiodbc2, libmyodbc (<< 5.1.6-2), odbc-postgresql (<< 1:09.00.0310-1.1), tdsodbc (<< 0.82-8) Filename: pool/main/u/unixodbc/odbcinst1debian2_2.2.14p2-5ubuntu5_i386.deb Size: 39564 MD5sum: 90f9b406775ddf0b2512e4a13e3353e3 SHA1: 1a2eb2385b5ae00efbfdf357e746a509c90014bb SHA256: 299d66c936b88be3637553524f945c98e9af8307114f0d9b1e03f1419eaab95c Description: Support library for accessing odbc ini files Multi-Arch: same Homepage: http://www.unixodbc.org/ Description-md5: b24fb287c5629b7e3832794ea97e5473 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: oem-config Priority: extra Section: admin Installed-Size: 269 Maintainer: Ubuntu Installer Team Architecture: all Source: ubiquity Version: 2.18.7 Replaces: oem-config-gtk (<< 1.54.13), oem-config-kde (<< 1.54.13), oem-config-keyboard, oem-config-locale, oem-config-timezone Depends: debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), ubiquity (= 2.18.7), oem-config-frontend-2.18.7, procps Conflicts: oem-config-keyboard, oem-config-locale, oem-config-timezone Filename: pool/main/u/ubiquity/oem-config_2.18.7_all.deb Size: 12720 MD5sum: 03bcb1fc6458577cc8c241f0c7d3333f SHA1: 0e2c34ba579a4d6d8ab28e9846540a729045f02e SHA256: 9d0a95ee740b11979e970deb185cfca372e3890f90ab14760ec12cabd9aff1e7 Description: Perform end-user configuration after initial OEM installation Description-md5: 9380d07ec19991f384138c016b142ce0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: oem-config-debconf Priority: extra Section: admin Installed-Size: 189 Maintainer: Ubuntu Installer Team Architecture: all Source: ubiquity Version: 2.18.7 Provides: oem-config-frontend-2.18.7 Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), oem-config (= 2.18.7), ubiquity-frontend-debconf (= 2.18.7) Filename: pool/main/u/ubiquity/oem-config-debconf_2.18.7_all.deb Size: 2956 MD5sum: 124f07e7b15a698f20c78ce3b7d29f58 SHA1: d209133838edd3222f218a7cbcaeeffb10c38f21 SHA256: 8429460356cdb8255f57e740b41b62dbf7a19fc73d1e0763df729a40fe70898e Description: debconf frontend for end-user post-OEM-install configuration Description-md5: 0b339016cd37fb3df25a4085c60673e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: oem-config-gtk Priority: extra Section: admin Installed-Size: 200 Maintainer: Ubuntu Installer Team Architecture: all Source: ubiquity Version: 2.18.7 Replaces: oem-config (<< 1.0) Provides: oem-config-frontend-2.18.7 Depends: oem-config (= 2.18.7), ubiquity-frontend-gtk (= 2.18.7), python3-aptdaemon.gtk3widgets, aptdaemon Filename: pool/main/u/ubiquity/oem-config-gtk_2.18.7_all.deb Size: 4164 MD5sum: e6051051660d45c87e040f4bf3ecd997 SHA1: 3b0658144d68850dad0ce673900b5511605aafe7 SHA256: 994188fca5a2f5d581cf07276e4b8bd1fbdc15014e9e547c192764a0f5c720e2 Description: GTK+ frontend for end-user post-OEM-install configuration Description-md5: 8709c78036a09529b74b507a6299fd60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: oem-config-slideshow-ubuntu Priority: optional Section: x11 Installed-Size: 1626 Maintainer: Ubuntu Developers Original-Maintainer: Ubiquity Slideshow Team Architecture: all Source: ubiquity-slideshow-ubuntu Version: 83 Replaces: oem-config-slideshow Provides: oem-config-slideshow Conflicts: oem-config-slideshow Filename: pool/main/u/ubiquity-slideshow-ubuntu/oem-config-slideshow-ubuntu_83_all.deb Size: 541616 MD5sum: 340ad8481023b4530dc7cce08accf50c SHA1: c5e19fb92dae32dd21f005163100f2be1fb7e8fe SHA256: 0c5d9f9b43987863480333f12a4dffa1cc80d4ffaee24bb749269c3518fea4c7 Description: OEM slideshow for Ubuntu Homepage: https://launchpad.net/ubiquity-slideshow-ubuntu Description-md5: c119bbb321f2195ca171453933a83059 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: onboard Priority: optional Section: gnome Installed-Size: 3064 Maintainer: Ubuntu Developers Original-Maintainer: https://launchpad.net/~onboard/+contactuser Architecture: i386 Version: 1.0.0-0ubuntu4 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libcanberra0 (>= 0.2), libdconf1 (>= 0.14.0), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.0.0), libhunspell-1.3-0, libstdc++6 (>= 4.1.1), libx11-6, libxi6 (>= 2:1.2.99.4), libxkbfile1, libxtst6, dconf-gsettings-backend | gsettings-backend, python3-cairo, python3-gi-cairo, python3-dbus, gir1.2-gtk-3.0, gir1.2-pango-1.0 (>= 1.29.3), gir1.2-glib-2.0, gir1.2-gdkpixbuf-2.0, librsvg2-common, iso-codes Recommends: gir1.2-appindicator3-0.1, gir1.2-atspi-2.0, onboard-data (>= 0.99.0~alpha1~tr1531) Suggests: mousetweaks (>= 3.3.90) Filename: pool/main/o/onboard/onboard_1.0.0-0ubuntu4_i386.deb Size: 569164 MD5sum: 0c2c71dd9aa7683f926a59b692020fc9 SHA1: 9772aa41b83c7f6d206cb27d7ef7344af658dffa SHA256: 32c2ff9b0e8ff3c82908e8d072a1702f84f9811961bb99350c31b0ccdca46076 Description: Simple On-screen Keyboard Homepage: https://launchpad.net/onboard Description-md5: eb9f6a3a613f7e33ed5ad60de6a693f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: onboard-data Priority: optional Section: gnome Installed-Size: 18174 Maintainer: Ubuntu Developers Original-Maintainer: https://launchpad.net/~onboard/+contactuser Architecture: all Source: onboard Version: 1.0.0-0ubuntu4 Replaces: onboard-prediction-data (<< 0.99.0~alpha1~tr1531) Depends: onboard (>= 0.99.0~alpha1~tr1507) Breaks: onboard-prediction-data (<< 0.99.0~alpha1~tr1531) Filename: pool/main/o/onboard/onboard-data_1.0.0-0ubuntu4_all.deb Size: 3428314 MD5sum: 7fd4042d2b5d16b3d3bb904a4e845cb8 SHA1: 4e11707d335d3fb7e4573d2cc3894faa4302d369 SHA256: 0becb27fb91070e19bfd89614ba270aab5c292b1f2b606aa3b10317d711120e7 Description: Language model files for the word suggestion feature of Onboard Homepage: https://launchpad.net/onboard Description-md5: 28c16e57c573e26ac20cd4bcaa2af192 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: oneconf Priority: extra Section: python Installed-Size: 65 Maintainer: Didier Roche Architecture: all Version: 0.3.7 Depends: oneconf-common, python3-oneconf, ubuntu-sso-client Recommends: software-center (>= 4.1.21), update-notifier (>= 0.103) Filename: pool/main/o/oneconf/oneconf_0.3.7_all.deb Size: 5456 MD5sum: 133d6cd37834563ca11781c824c8f72c SHA1: 71fed3ece9cae24895714e1f585f8f095af0efd2 SHA256: 227dc8983cd018d148fd2f0e704108a9aea0bac01bd621e505cdd7a0cbe3e74e Description: synchronize your configuration data over the network Description-md5: ded1a62b7ac7e22a6b199ab2ee0402e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: oneconf-common Priority: extra Section: python Installed-Size: 64 Maintainer: Didier Roche Architecture: all Source: oneconf Version: 0.3.7 Replaces: oneconf (<< 0.3) Depends: python-dbus, python-oauthlib, python-gi, python-apt, python-piston-mini-client, python-httplib2, python-xdg Filename: pool/main/o/oneconf/oneconf-common_0.3.7_all.deb Size: 6014 MD5sum: b7a80e1b520a62f506be118ee4f71ca6 SHA1: ff493b7922c4accd193a8b6ddfa67ba334ecb85b SHA256: bf8a0bd448527ca6973a99949feab0fafaa5cc0f0451cd7ccb5c1e2419bf6db5 Description: synchronize your configuration data over the network Description-md5: be27004afc69c24c77c56ffb565e7bec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: open-iscsi Priority: optional Section: net Installed-Size: 1782 Maintainer: Ubuntu Developers Original-Maintainer: Debian iSCSI Maintainers Architecture: i386 Version: 2.0.873-3ubuntu9 Replaces: open-iscsi-utils Depends: libc6 (>= 2.4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), udev Conflicts: open-iscsi-utils (<< 2.0.873-3ubuntu1~) Filename: pool/main/o/open-iscsi/open-iscsi_2.0.873-3ubuntu9_i386.deb Size: 255226 MD5sum: 65aa6154672a76e27018bfa429bc3869 SHA1: 86d51a78c9e5c66f804a0d8059dca9501608edb0 SHA256: a2948dde07033625d33a24503f4f4967fa64eb8771d39a4d25304bc1fbda4c08 Description: High performance, transport independent iSCSI implementation Homepage: http://www.open-iscsi.org/ Description-md5: 33466b3fae706f36e3b3609fa29a5250 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: open-iscsi-utils Priority: optional Section: net Installed-Size: 34 Maintainer: Ubuntu Developers Original-Maintainer: Debian iSCSI Maintainers Architecture: all Source: open-iscsi Version: 2.0.873-3ubuntu9 Depends: open-iscsi Filename: pool/main/o/open-iscsi/open-iscsi-utils_2.0.873-3ubuntu9_all.deb Size: 1792 MD5sum: 31a5ad39b6a3cbf1082c2d95c29a22b7 SHA1: a51e4b1fd36043cc90a8a700a42bd94a89d65bf6 SHA256: fe4baaac12f34fcfeb0513802994e36f91e72629e74b239d97e60e51c3b6321c Description: transitional dummy package Homepage: http://www.open-iscsi.org/ Description-md5: bf60ce7d8cb73c593352de5d3e2628d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: open-vm-tools Priority: extra Section: admin Installed-Size: 2289 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: i386 Version: 2:9.4.0-1280544-5ubuntu6 Replaces: open-vm-dkms, open-vm-toolbox (<= 2:9.4.0-1280544-5), open-vm-tools-dkms Depends: libc6 (>= 2.17), libdumbnet1 (>= 1.8), libfuse2 (>= 2.8.1), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libicu52 (>= 52~m1-1~) Recommends: ethtool, zerofree Suggests: open-vm-tools-desktop Conflicts: open-vm-dkms (<< 2:9.4.0-1280544-5ubuntu3), open-vm-tools-dkms (<< 2:9.4.0-1280544-5ubuntu3) Breaks: open-vm-toolbox (<= 2:9.4.0-1280544-5) Filename: pool/main/o/open-vm-tools/open-vm-tools_9.4.0-1280544-5ubuntu6_i386.deb Size: 460350 MD5sum: 89ca06460ad6a5d257ef32a75185ac7f SHA1: eef81f851ce4f4e8a0f5f3921b12af1a5c7e7bab SHA256: 92ef1655ad94820c1d1d6b80c15c17468ea6e34f2d660ad00e837e35092358e4 Description: Open VMware Tools for virtual machines hosted on VMware (CLI) Homepage: http://open-vm-tools.sourceforge.net/ Description-md5: a6ea22fad449711c4296720ce1ebe6b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: open-vm-tools-dbg Priority: extra Section: devel Installed-Size: 2656 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: i386 Source: open-vm-tools Version: 2:9.4.0-1280544-5ubuntu6 Depends: open-vm-tools (= 2:9.4.0-1280544-5ubuntu6), open-vm-tools-desktop (= 2:9.4.0-1280544-5ubuntu6) Filename: pool/main/o/open-vm-tools/open-vm-tools-dbg_9.4.0-1280544-5ubuntu6_i386.deb Size: 2314642 MD5sum: e99e836859205a516aa2fd4ff462f318 SHA1: 70bae7b7bc776526adfc6439867df947ff9f421c SHA256: aa7aa4f8aeaed2f97cfc70dfa5396c5b8caf91f458321eff722e7aa2fc341242 Description: Open VMware Tools for virtual machines hosted on VMware (debug) Homepage: http://open-vm-tools.sourceforge.net/ Description-md5: 9f6f731e6bd8c2a182befca81d2509b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: open-vm-tools-desktop Priority: extra Section: admin Installed-Size: 436 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: i386 Source: open-vm-tools Version: 2:9.4.0-1280544-5ubuntu6 Replaces: open-vm-toolbox Depends: libatkmm-1.6-1 (>= 2.22.1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libglibmm-2.4-1c2a (>= 2.36.2), libgtk2.0-0 (>= 2.24.0), libgtkmm-2.4-1c2a (>= 1:2.24.0), libice6 (>= 1:1.0.0), libsigc++-2.0-0c2a (>= 2.0.2), libsm6, libstdc++6 (>= 4.6), libx11-6 (>= 2:1.4.99.1), libxext6, libxi6, libxinerama1, libxrandr2 (>= 2:1.2.0), libxtst6, open-vm-tools (= 2:9.4.0-1280544-5ubuntu6) Recommends: xauth, xserver-xorg-input-vmmouse, xserver-xorg-video-vmware Suggests: xdg-utils Conflicts: open-vm-toolbox (<< 2:9.2.3-1031360-2~) Filename: pool/main/o/open-vm-tools/open-vm-tools-desktop_9.4.0-1280544-5ubuntu6_i386.deb Size: 120240 MD5sum: 7cf323b9423699a69b79108bd814f9a7 SHA1: 91834d32cc2678247e59f3f17f96f605920a1950 SHA256: 415b728588b221bc6e603adcd2010c0588798af5c7849beb229be0c50e8ae631 Description: Open VMware Tools for virtual machines hosted on VMware (GUI) Homepage: http://open-vm-tools.sourceforge.net/ Description-md5: 0a75baf603aed1d261cb9d62936d3c0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: open-vm-tools-dev Priority: extra Section: devel Installed-Size: 900 Maintainer: Ubuntu Developers Original-Maintainer: Bernd Zeimetz Architecture: all Source: open-vm-tools Version: 2:9.4.0-1280544-5ubuntu6 Filename: pool/main/o/open-vm-tools/open-vm-tools-dev_9.4.0-1280544-5ubuntu6_all.deb Size: 87700 MD5sum: 829ff9ec1b562244ae06b5757b371823 SHA1: 016c6c5bba4d88ec7f49b4afe17fe75b2b453d94 SHA256: ba80291d1639217d0778cdc17a4072c7535cde7f3eecfd1773b5c3df8ed7d826 Description: Open VMware Tools for virtual machines hosted on VMware (development) Homepage: http://open-vm-tools.sourceforge.net/ Description-md5: 4aa45696c5c5c28398c17ba27233e67d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openbsd-inetd Priority: extra Section: net Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: i386 Version: 0.20091229-2ubuntu3 Provides: inet-superserver Depends: libc6 (>= 2.15), libwrap0 (>= 7.6-4~), lsb-base (>= 3.2-13), update-inetd, tcpd Filename: pool/main/o/openbsd-inetd/openbsd-inetd_0.20091229-2ubuntu3_i386.deb Size: 30408 MD5sum: 9582660a47a7f8b5678047e7fbf5eb49 SHA1: fc478e250f744053b33fbef4ddd659f702366a1c SHA256: e537d9a0056d2aa8e116239af96acf602a5e5299a4df4405f30f856af3ba21cd Description: OpenBSD Internet Superserver Multi-Arch: foreign Description-md5: b20479fa95f74ec492f9a2481993d90f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: opencryptoki Priority: optional Section: utils Installed-Size: 259 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Version: 2.3.1+dfsg-3ubuntu5 Depends: libc6 (>= 2.4), libopencryptoki0 (= 2.3.1+dfsg-3ubuntu5), adduser Filename: pool/main/o/opencryptoki/opencryptoki_2.3.1+dfsg-3ubuntu5_i386.deb Size: 48858 MD5sum: e8bad6a8825238bda0a8ac88909e8026 SHA1: 26bd584dec5071ec91c285f702a6dc7ea8c08a5a SHA256: fe93b1118e399850c7b4de7a4eed1ac9a473874c0a0b9cbed5fb2825fffeefa3 Description: PKCS#11 implementation (daemon) Homepage: http://opencryptoki.sourceforge.net/ Description-md5: 56b253ffe8e457a6f3acbdd3c6a66a12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: opencryptoki-dbg Priority: extra Section: libdevel Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: opencryptoki Version: 2.3.1+dfsg-3ubuntu5 Depends: opencryptoki (= 2.3.1+dfsg-3ubuntu5), libopencryptoki0 (= 2.3.1+dfsg-3ubuntu5), libopencryptoki-dev (= 2.3.1+dfsg-3ubuntu5) Filename: pool/main/o/opencryptoki/opencryptoki-dbg_2.3.1+dfsg-3ubuntu5_i386.deb Size: 40414 MD5sum: 29b1fd6d5e411922c92c70ce665ec6d8 SHA1: 3dc748d25a55d15a88e2a27a72950aba9ff8beb1 SHA256: ce979eab16709c1267d4669846556773e75f7903a00ab89ceb0ae972517d8548 Description: PKCS#11 implementation (debug) Homepage: http://opencryptoki.sourceforge.net/ Description-md5: d1c9f42ddd28719ade9d506fb879953d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openhpid Priority: optional Section: admin Installed-Size: 448 Maintainer: Ubuntu Developers Original-Maintainer: Bryan Sutula Architecture: i386 Source: openhpi Version: 2.14.1-1.3ubuntu2 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.31.8), libltdl7 (>= 2.4.2), libopenhpi2 (= 2.14.1-1.3ubuntu2), libstdc++6 (>= 4.1.1), lsb-base Filename: pool/main/o/openhpi/openhpid_2.14.1-1.3ubuntu2_i386.deb Size: 91310 MD5sum: fa8241be6768a5a76a44e65f528d7490 SHA1: c17a39a99b3fbf33ad467556cd167cc0b03350ee SHA256: a577ce4670afb121621ba54799a1c7f4a055b24136c35f15adbe8ac336a86de2 Description: OpenHPI daemon, supports gathering of manageability information Homepage: http://openhpi.org Description-md5: 40ec44bc3a2cd4bfe11968aed94e9ace Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openipmi Priority: optional Section: admin Installed-Size: 392 Maintainer: Ubuntu Core Developers Original-Maintainer: Noèl Köthe Architecture: i386 Version: 2.0.18-0ubuntu7 Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libopenipmi0, libpopt0 (>= 1.14), libsnmp30 (>= 5.7.2~dfsg), libtinfo5 Filename: pool/main/o/openipmi/openipmi_2.0.18-0ubuntu7_i386.deb Size: 120656 MD5sum: 9101d225840caa87c11334dd8eda13ed SHA1: 7a4754b6c96750fc381b763e5a04138e52b49ac3 SHA256: 8df7e2c06ce9a601945ceba47819f506660db99e82a32e61e697029af9da1471 Description: Intelligent Platform Management Interface (for servers) Homepage: http://openipmi.sourceforge.net/ Description-md5: 9b1b5291e9ca77ee91bd3c03cdad0f3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openjade Priority: optional Section: text Installed-Size: 1076 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: i386 Version: 1.4devel1-21 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libosp5 (>= 1.5.2-1), libostyle1c2, libstdc++6 (>= 4.1.1), sgml-base (>= 1.26+nmu2) Suggests: doc-base, sgml-data Conflicts: libostyle-dev (<< 1.4devel1-14) Filename: pool/main/o/openjade/openjade_1.4devel1-21_i386.deb Size: 302218 MD5sum: d5b5b3b21469b7b390fc07d349394a82 SHA1: e3c48eb64123526730ce905ac4518af54abb81cc SHA256: 57f0b05f738ebf65a7de7aa712bc0c6c47323036c6be64ec1a237de43d98a344 Description: Implementation of the DSSSL language Homepage: http://openjade.sourceforge.net/ Description-md5: b35e1d7af5f6e1c8a8527523612f49d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openjdk-7-dbg Priority: extra Section: debug Installed-Size: 554634 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: i386 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Depends: openjdk-7-jre-headless (= 7u51-2.4.6-1ubuntu4) Recommends: openjdk-7-jre (= 7u51-2.4.6-1ubuntu4) Suggests: openjdk-7-jdk (= 7u51-2.4.6-1ubuntu4) Filename: pool/main/o/openjdk-7/openjdk-7-dbg_7u51-2.4.6-1ubuntu4_i386.deb Size: 105845104 MD5sum: d1338d134e722eb96aec577614af1e70 SHA1: a2d785dc1612411194753fef5a55cd7eb819cacb SHA256: 76df3f89d0cade18e35ce836c8d9c7a9e32e525961630f7551092c2b1d85d33f Description: Java runtime based on OpenJDK (debugging symbols) Multi-Arch: same Homepage: http://openjdk.java.net/ Description-md5: 62cbbd2d3e6bc94279f18db4f735142b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openjdk-7-demo Priority: extra Section: java Installed-Size: 4274 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: i386 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Depends: openjdk-7-jre (= 7u51-2.4.6-1ubuntu4), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/o/openjdk-7/openjdk-7-demo_7u51-2.4.6-1ubuntu4_i386.deb Size: 1883518 MD5sum: b26203d4f8575f7ac66eafb5cb900f0d SHA1: 7662a2d147b73dec7c2487ae82eed08eaca9aae4 SHA256: 169f63041b0b7a6a2f97f420d4514b1d0dfc5143461ef545014d99f55e7a3900 Description: Java runtime based on OpenJDK (demos and examples) Homepage: http://openjdk.java.net/ Description-md5: c2a5624aa60e4de3025a249886fa82d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openjdk-7-doc Priority: extra Section: doc Installed-Size: 240319 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: all Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Suggests: openjdk-7-jdk Filename: pool/main/o/openjdk-7/openjdk-7-doc_7u51-2.4.6-1ubuntu4_all.deb Size: 10889304 MD5sum: 2793f41319986eb05cebbdc5c6daa45d SHA1: 575a2f629a6ef492e1af19963318fe9777d4ce6b SHA256: 54a3153222cc4817dfbbec4fd37a2d49a53fc46e4bff4bf35680695db857e0fd Description: OpenJDK Development Kit (JDK) documentation Homepage: http://openjdk.java.net/ Description-md5: c1aebd5e8058a6cce0d5690571eddb7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openjdk-7-jdk Priority: optional Section: java Installed-Size: 20034 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: i386 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Provides: java-compiler, java-sdk, java2-sdk, java5-sdk, java6-sdk, java7-jdk Depends: openjdk-7-jre (= 7u51-2.4.6-1ubuntu4), libc6 (>= 2.0) Recommends: libxt-dev Suggests: openjdk-7-demo, openjdk-7-source, visualvm Filename: pool/main/o/openjdk-7/openjdk-7-jdk_7u51-2.4.6-1ubuntu4_i386.deb Size: 15981382 MD5sum: f78808b19fc395fad60a0c4c89afab34 SHA1: 22176453076cf2e8dc2bd5272cc85b591e26672b SHA256: 4d1fed61747000052f17adaba997b679e32267c810d09ed34e0b26ab58d9d30e Description: OpenJDK Development Kit (JDK) Multi-Arch: same Homepage: http://openjdk.java.net/ Description-md5: eaff50443f15582a8beb0901034b62cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openjdk-7-jre Priority: optional Section: java Installed-Size: 674 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: i386 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Provides: java-runtime, java2-runtime, java5-runtime, java6-runtime, java7-runtime Depends: openjdk-7-jre-headless (= 7u51-2.4.6-1ubuntu4), libasound2 (>= 1.0.16), libc6 (>= 2.11), libcups2 (>= 1.4.0), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libgif4 (>= 4.1.4), libglib2.0-0 (>= 2.16.0), libgtk2.0-0 (>= 2.8.0), libjpeg8 (>= 8c), libpango-1.0-0 (>= 1.14.0), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), libx11-6, libxext6, libxi6, libxrender1, libxtst6, libxrandr2, libxinerama1, libgl1-mesa-glx | libgl1, libatk-wrapper-java-jni (>= 0.30.4-0ubuntu2) Recommends: libgnome2-0, libgnomevfs2-0, libgconf2-4, fonts-dejavu-extra Suggests: icedtea-7-plugin Conflicts: icedtea-gcjwebplugin (<< 1.0-1ubuntu4) Filename: pool/main/o/openjdk-7/openjdk-7-jre_7u51-2.4.6-1ubuntu4_i386.deb Size: 177866 MD5sum: 809f40545b6df2bcbd7091776e6eb59b SHA1: 941fb2c5d7ad3b4b80c515014561f6550780e5ef SHA256: d03e8b8cfa50ba54bfd290be14b509eb6275f0ac4fc7453189961893ded4f5c1 Description: OpenJDK Java runtime, using Hotspot JIT Multi-Arch: same Homepage: http://openjdk.java.net/ Description-md5: 7a98f537dea51754a1519bfa756c13cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: openjdk-7-jre-headless Priority: optional Section: java Installed-Size: 61647 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: i386 Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Replaces: openjdk-7-jre-lib (<< 7u45-2.4.3-1) Provides: java-runtime-headless, java2-runtime-headless, java5-runtime-headless, java6-runtime-headless, java7-runtime-headless Depends: ca-certificates-java, tzdata-java, java-common (>= 0.28), libcups2 (>= 1.4.0), liblcms2-2 (>= 2.2+git20110628), libjpeg8 (>= 8c), libnss3-1d (>= 3.12.9+ckbi-1.82-0ubuntu4), libpcsclite1, libc6 (>= 2.11), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.26.0), libkrb5-3 (>= 1.6.dfsg.2), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Recommends: icedtea-7-jre-jamvm (= 7u51-2.4.6-1ubuntu4) Suggests: libnss-mdns, sun-java6-fonts, fonts-dejavu-extra, fonts-ipafont-gothic, fonts-ipafont-mincho, ttf-wqy-microhei | ttf-wqy-zenhei, ttf-indic-fonts-core, ttf-telugu-fonts, ttf-oriya-fonts, ttf-kannada-fonts, ttf-bengali-fonts Conflicts: icedtea-netx (<< 1.1.1-2~) Breaks: icedtea-netx (<< 1.4-2) Filename: pool/main/o/openjdk-7/openjdk-7-jre-headless_7u51-2.4.6-1ubuntu4_i386.deb Size: 41028528 MD5sum: b1454c4ba9b55f3ee3b167a61dbbabff SHA1: e13035955ad0a125fa908258448a76936f851317 SHA256: bd93c6c94e84f752bb79262b5d329515bd3abe5a17780be813b5dd9118d6f5b4 Description: OpenJDK Java runtime, using Hotspot JIT (headless) Built-Using: rhino (= 1.7R4-2) Multi-Arch: same Homepage: http://openjdk.java.net/ Description-md5: 3d9d94ef25391132f9ce1ce1a36a703d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: openjdk-7-source Priority: extra Section: java Installed-Size: 43696 Maintainer: Ubuntu Developers Original-Maintainer: OpenJDK Team Architecture: all Source: openjdk-7 Version: 7u51-2.4.6-1ubuntu4 Depends: openjdk-7-jre (>= 7u51-2.4.6-1ubuntu4), openjdk-7-jdk (>= 7u51-2.4.6-1ubuntu4) Filename: pool/main/o/openjdk-7/openjdk-7-source_7u51-2.4.6-1ubuntu4_all.deb Size: 39912188 MD5sum: 57ff6bca02618a9b443f91a6493ced8b SHA1: dfc4358813abce9d7fea3c64b0b6e9eebabafc72 SHA256: 2357545490103cd47f58fdb7d573c1b86e46cceae5f0115b9d6478a6dd13bff5 Description: OpenJDK Development Kit (JDK) source files Homepage: http://openjdk.java.net/ Description-md5: 328263bb6fbf81f04f5d459d67244ea0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openobex-apps Priority: optional Section: comm Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Hendrik Sattler Architecture: i386 Source: libopenobex Version: 1.5-2.1 Replaces: ircp Depends: libbluetooth3 (>= 4.91), libc6 (>= 2.15), libopenobex1 Conflicts: ircp Filename: pool/main/libo/libopenobex/openobex-apps_1.5-2.1_i386.deb Size: 34690 MD5sum: 6c80ea788ca90f1c468f24c6e8053b21 SHA1: 6f7afb634adaae96dc749a56140201ff35421ef9 SHA256: 673f9fe97ea3526bf721a1d638b7ac031f68e8a3c89856bac8d1d568be31b74f Description: Applications for OpenOBEX Homepage: http://www.openobex.org Description-md5: dc42583e385f661f32c27e5c8755f7c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openoffice.org-hyphenation Priority: optional Section: text Installed-Size: 617 Maintainer: Ubuntu Developers Architecture: all Version: 0.7 Provides: openoffice.org-hyphenation-cs, openoffice.org-hyphenation-da, openoffice.org-hyphenation-el, openoffice.org-hyphenation-en, openoffice.org-hyphenation-es, openoffice.org-hyphenation-fi, openoffice.org-hyphenation-fr, openoffice.org-hyphenation-ga, openoffice.org-hyphenation-id, openoffice.org-hyphenation-is, openoffice.org-hyphenation-nl, openoffice.org-hyphenation-pt, openoffice.org-hyphenation-sk, openoffice.org-hyphenation-sv, openoffice.org-hyphenation-uk Depends: dictionaries-common (>= 0.10) | openoffice.org-updatedicts Filename: pool/main/o/openoffice.org-hyphenation/openoffice.org-hyphenation_0.7_all.deb Size: 294750 MD5sum: e831a4c6bc470dbe209c2907d485a5d6 SHA1: eea9e96591a5385d9a1e08781e0ae2545e914d77 SHA256: 949b967aa59b391098534ef72f0c5155967f3524ec22594891040e4bfd52b6de Description: Hyphenation patterns for OpenOffice.org Description-md5: f37c59c329e1d884b78b2e7091c27aba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live Package: openprinting-ppds Priority: optional Section: text Installed-Size: 3959 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Group Architecture: all Source: foomatic-db Version: 20140410-0ubuntu1 Depends: python3, xz-utils Recommends: cups-filters (>= 1.0.42) | foomatic-filters, cups, cups-client Suggests: hpijs-ppds Breaks: cups (<< 1.5.0-3~) Filename: pool/main/f/foomatic-db/openprinting-ppds_20140410-0ubuntu1_all.deb Size: 3055650 MD5sum: 5cb9d4644437e14c2ddc9005a40f3687 SHA1: 8f2540ddc8a5187f50fc025eab25eec9f23c84c2 SHA256: f1e3ba53fa0462f6e658ab174cd1d427c3072e26d35d4e1eb0532f010fcc53c5 Description: OpenPrinting printer support - PostScript PPD files Homepage: http://www.openprinting.org/ Description-md5: 5f4d24bd02d698551c18a407d5e83c3a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: openslp-doc Priority: extra Section: doc Installed-Size: 315 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Source: openslp-dfsg Version: 1.2.1-9 Filename: pool/main/o/openslp-dfsg/openslp-doc_1.2.1-9_all.deb Size: 88580 MD5sum: 5f6d23f6d5fdfe178c89729dc3042c33 SHA1: d5e462731e4094a99b679b89866139c6060c0a44 SHA256: bfba171483227dddd96f3b0e2e3db95c7178385eeb17cec36d860130a9892bc9 Description: OpenSLP documentation Homepage: http://www.openslp.org/ Description-md5: 553c70af1a4b44de038c2acac6852471 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: opensp Priority: optional Section: text Installed-Size: 631 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: i386 Version: 1.5.2-10ubuntu3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libosp5 (>= 1.5.2-1), libstdc++6 (>= 4.1.1), sgml-base Suggests: doc-base, sgml-data Filename: pool/main/o/opensp/opensp_1.5.2-10ubuntu3_i386.deb Size: 144404 MD5sum: 2550070a89515f035a8aeefc57a42acd SHA1: 2b8a191e87081812364e5483f3d25ce3fe9c966e SHA256: 5af85432c4c8fda080253df5aafa9a8c671b0ee34146a6cb431ae2172f7bea43 Description: OpenJade group's SGML parsing tools Description-md5: fabc6e3cb88f70debefafddb3ad99079 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openssh-blacklist Priority: optional Section: net Installed-Size: 4064 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Version: 0.4.1+nmu1 Pre-Depends: dpkg (>= 1.10.24) Recommends: openssh-client Filename: pool/main/o/openssh-blacklist/openssh-blacklist_0.4.1+nmu1_all.deb Size: 1836348 MD5sum: 7d13f9803e793df0b298f0672e08922e SHA1: 984539b82d4385124c6295a560994bab15e153cf SHA256: 3799298e06a2b9b97352cafc5673b2fc786772e384c22365c66e96420e415b12 Description: list of default blacklisted OpenSSH RSA and DSA keys Description-md5: 5b07992e67aa4270cae012a0dd2be36e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openssh-blacklist-extra Priority: optional Section: net Installed-Size: 4070 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: all Source: openssh-blacklist Version: 0.4.1+nmu1 Pre-Depends: dpkg (>= 1.10.24) Recommends: openssh-blacklist Filename: pool/main/o/openssh-blacklist/openssh-blacklist-extra_0.4.1+nmu1_all.deb Size: 1835868 MD5sum: ea9ee8368cb6c71cddc79b73f3db20db SHA1: 72ab3357dece85f6f15efd3920aa07e57e1a624f SHA256: 8fd005bd2bc5a8d90977e55e3baabefa48172518a7554d94985a25a5f824858a Description: list of non-default blacklisted OpenSSH RSA and DSA keys Description-md5: 8995e4237e9220abbc5c82216dad10af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openssh-client Priority: standard Section: net Installed-Size: 3772 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSH Maintainers Architecture: i386 Source: openssh Version: 1:6.6p1-2ubuntu1 Replaces: ssh, ssh-krb5 Provides: rsh-client, ssh-client Depends: libc6 (>= 2.17), libedit2 (>= 2.11-20080614), libgssapi-krb5-2 (>= 1.10+dfsg~), libselinux1 (>= 1.32), libssl1.0.0 (>= 1.0.1), zlib1g (>= 1:1.1.4), adduser (>= 3.10), dpkg (>= 1.7.0), passwd Recommends: xauth Suggests: ssh-askpass, libpam-ssh, keychain, monkeysphere Conflicts: sftp Filename: pool/main/o/openssh/openssh-client_6.6p1-2ubuntu1_i386.deb Size: 576850 MD5sum: 1d40331f8f4fc324e29ec23a172869b0 SHA1: af2325bfcd0afcb4606c320b9ec228ebe4414fdc SHA256: 703c2b40ffe0245de4f40c0b0c5ae5ad08e909d9098aead20b2716fee0870b79 Description: secure shell (SSH) client, for secure access to remote machines Multi-Arch: foreign Homepage: http://www.openssh.org/ Description-md5: 8cde3280ebad71c16b3e8c661dae6c6d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: openssh-server Priority: optional Section: net Installed-Size: 991 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSH Maintainers Architecture: i386 Source: openssh Version: 1:6.6p1-2ubuntu1 Replaces: ssh, ssh-krb5 Provides: ssh-server Depends: libc6 (>= 2.17), libck-connector0 (>= 0.2.1), libcomerr2 (>= 1.01), libdbus-1-3 (>= 1.0.2), libgssapi-krb5-2 (>= 1.10+dfsg~), libkrb5-3 (>= 1.6.dfsg.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), libssl1.0.0 (>= 1.0.1), libwrap0 (>= 7.6-4~), zlib1g (>= 1:1.1.4), debconf (>= 0.5) | debconf-2.0, init-system-helpers (>= 1.13~), openssh-client (= 1:6.6p1-2ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libpam-runtime (>= 0.76-14), libpam-modules (>= 0.72-9), adduser (>= 3.9), dpkg (>= 1.9.0), lsb-base (>= 4.1+Debian3), procps, openssh-sftp-server Recommends: xauth, ncurses-term, ssh-import-id Suggests: ssh-askpass, rssh, molly-guard, ufw, monkeysphere Conflicts: sftp, ssh-socks, ssh2 Filename: pool/main/o/openssh/openssh-server_6.6p1-2ubuntu1_i386.deb Size: 323680 MD5sum: edcc3150184e5b08adf4a22fa23209b1 SHA1: cfa8fffad32307e0e76292c3b39d94a098d5b0a1 SHA256: f4b9df0c19d47e2e81df2ccd37624500ade471c22d84ee0ab339273f78e31eb9 Description: secure shell (SSH) server, for secure access from remote machines Multi-Arch: foreign Homepage: http://www.openssh.org/ Description-md5: 842cc998cae371b9d8106c1696373919 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: openssh-sftp-server Priority: optional Section: net Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSH Maintainers Architecture: i386 Source: openssh Version: 1:6.6p1-2ubuntu1 Replaces: openssh-server (<< 1:6.5p1-5) Depends: libc6 (>= 2.17), openssh-client Recommends: openssh-server | ssh-server Breaks: openssh-server (<< 1:6.5p1-5) Filename: pool/main/o/openssh/openssh-sftp-server_6.6p1-2ubuntu1_i386.deb Size: 35530 MD5sum: 88fc33ec3394e9af221d7c2dc7aba375 SHA1: 469d340382dc56a97e5803afa82c035f6d9d3ca5 SHA256: 08cb09544cda1a5dbf5ebbbced6c76af4b3524cf24edcecafc4e27dcc9e373c6 Description: secure shell (SSH) sftp server module, for SFTP access from remote machines Enhances: openssh-server, ssh-server Homepage: http://www.openssh.org/ Description-md5: f09bfa88fff14741d53cf2a60b5b401a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: openssl Priority: standard Section: utils Installed-Size: 899 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSL Team Architecture: i386 Version: 1.0.1f-1ubuntu2 Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.1) Suggests: ca-certificates Filename: pool/main/o/openssl/openssl_1.0.1f-1ubuntu2_i386.deb Size: 479328 MD5sum: f099f1b2658701f0a8d3369e96c5458d SHA1: 8cd6d8cbce96484973f25a5cce4152691a40a1b7 SHA256: 424044abb944f001fcc0da7288036e503f414f56315e95422364357dc1f63b28 Description: Secure Sockets Layer toolkit - cryptographic utility Description-md5: 9b6de2bb6e1d9016aeb0f00bcf6617bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: openstack-dashboard Priority: extra Section: net Installed-Size: 13377 Maintainer: Chuck Short Architecture: all Source: horizon Version: 1:2014.1-0ubuntu1 Depends: adduser, apache2 | httpd, libapache2-mod-wsgi (>= 2.3), python-django-horizon (= 1:2014.1-0ubuntu1), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.7.2) Recommends: openstack-dashboard-ubuntu-theme Filename: pool/main/h/horizon/openstack-dashboard_2014.1-0ubuntu1_all.deb Size: 1286744 MD5sum: 0ed0e391c1b2b8769ec9238cfd1561b3 SHA1: 8f7e29bce86670f11b97e0be05bca5366837212e SHA256: fa011b14b72ace0dd4f9d5f3376adb4e2eacc758365738b0f85c625b3c1d43a3 Description: django web interface to Openstack Homepage: http://launchpad.net/horizon Description-md5: cfa8179aec54fb294480d24dfa12c4c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openstack-dashboard-ubuntu-theme Priority: extra Section: net Installed-Size: 243 Maintainer: Chuck Short Architecture: all Source: horizon Version: 1:2014.1-0ubuntu1 Depends: openstack-dashboard (= 1:2014.1-0ubuntu1) Filename: pool/main/h/horizon/openstack-dashboard-ubuntu-theme_2014.1-0ubuntu1_all.deb Size: 30432 MD5sum: 5a1b3ce523b03894312d839e96355f4d SHA1: 3b7996fd65ec2c1ddf43bcb1615fabdfa5e56a39 SHA256: 543d1056e22a1f00643d031048de8b1392947b7983f109cee7bc53dbf07570fb Description: Ubuntu theme for the Openstack dashboard Homepage: http://launchpad.net/horizon Description-md5: e49ce566cdb2a03745470f21d945576d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openstack-pkg-tools Priority: extra Section: devel Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 8 Filename: pool/main/o/openstack-pkg-tools/openstack-pkg-tools_8_all.deb Size: 11136 MD5sum: 13a5862949d2884be2b30dc95b6a0eba SHA1: f3d3e6ab6d0d44dc16dc1a53d6dc5cbee9ccf1ab SHA256: 62f6929827da8080d091f01ca9b46a3ac5d34996361827b8e45ef98692c401df Description: Tools and scripts for building Openstack packages in Debian Description-md5: 948c5e97d12e3443df22e4b04944aaf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openvpn Priority: optional Section: net Installed-Size: 1001 Maintainer: Ubuntu Developers Original-Maintainer: Alberto Gonzalez Iniesta Architecture: i386 Version: 2.3.2-7ubuntu3 Depends: debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.15), liblzo2-2, libpam0g (>= 0.99.7.1), libpkcs11-helper1 (>= 1.05), libssl1.0.0 (>= 1.0.0), initscripts (>= 2.88dsf-13.3), iproute2 Suggests: openssl, resolvconf, easy-rsa Filename: pool/main/o/openvpn/openvpn_2.3.2-7ubuntu3_i386.deb Size: 381648 MD5sum: efd2a851351c3e8c832e6188e636fd72 SHA1: 4ea3fa693cfe8a91fed201268c428fb1260c37bc SHA256: 6bd1630bac626021500398c00805c2dc59639a4714a18dbc8ed83ec78e63bd3c Description: virtual private network daemon Homepage: http://www.openvpn.net/ Description-md5: 2ebe91e411d46309a61861db507e5c2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openvswitch-common Priority: extra Section: net Installed-Size: 1648 Maintainer: Ubuntu Developers Original-Maintainer: Open vSwitch developers Architecture: i386 Source: openvswitch Version: 2.0.1+git20140120-0ubuntu2 Depends: libc6 (>= 2.16), libssl1.0.0 (>= 1.0.0), openssl, python, python (>= 2.7) | python-argparse Suggests: ethtool Filename: pool/main/o/openvswitch/openvswitch-common_2.0.1+git20140120-0ubuntu2_i386.deb Size: 447020 MD5sum: 90814e84aa5d2c8fbcb5058db02097ce SHA1: 6e8e10210310b040494b44160d70da41b94afaf0 SHA256: a9d238e8bc897fe2103622a63a2083527aec7d4bffbc1e51639daf92bdaa7c1e Description: Open vSwitch common components Homepage: http://openvswitch.org/ Description-md5: 54698a0e13765878d342b83d498c31d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: openvswitch-controller Priority: extra Section: net Installed-Size: 837 Maintainer: Ubuntu Developers Original-Maintainer: Open vSwitch developers Architecture: i386 Source: openvswitch Version: 2.0.1+git20140120-0ubuntu2 Depends: libc6 (>= 2.12), libssl1.0.0 (>= 1.0.0), openvswitch-common (= 2.0.1+git20140120-0ubuntu2), openvswitch-pki (= 2.0.1+git20140120-0ubuntu2) Filename: pool/main/o/openvswitch/openvswitch-controller_2.0.1+git20140120-0ubuntu2_i386.deb Size: 271268 MD5sum: 9819a9722eccfe25bdc91502917ed480 SHA1: 5a1d8317968de0c5953e6559a1b4babe0f99176a SHA256: cdeec277e9fb13b5061048a0d63945b5b2ce1097a90ad11396a0ab14643ef99f Description: Open vSwitch controller implementation Homepage: http://openvswitch.org/ Description-md5: 3ba63807fddd7d31858fd543fd10cfd2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openvswitch-dbg Priority: extra Section: debug Installed-Size: 18567 Maintainer: Ubuntu Developers Original-Maintainer: Open vSwitch developers Architecture: i386 Source: openvswitch Version: 2.0.1+git20140120-0ubuntu2 Depends: openvswitch-common (= 2.0.1+git20140120-0ubuntu2), openvswitch-controller (= 2.0.1+git20140120-0ubuntu2), openvswitch-switch (= 2.0.1+git20140120-0ubuntu2) Filename: pool/main/o/openvswitch/openvswitch-dbg_2.0.1+git20140120-0ubuntu2_i386.deb Size: 3199472 MD5sum: 76c143a0c52b473c5ef8a922fa29b50a SHA1: 1d53990c3728b7cc9a63f213c760d62311405191 SHA256: 95aeecf082bbe6262492606d39317dd44cf3e560204c515d1a00fdab95320cd5 Description: Debug symbols for Open vSwitch packages Homepage: http://openvswitch.org/ Description-md5: 963111b391333c82170e6233714ee2c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openvswitch-pki Priority: extra Section: net Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Open vSwitch developers Architecture: all Source: openvswitch Version: 2.0.1+git20140120-0ubuntu2 Depends: openvswitch-common (>= 2.0.1+git20140120-0ubuntu2), openvswitch-common (<< 2.0.1+git20140120-0ubuntu2.1~) Filename: pool/main/o/openvswitch/openvswitch-pki_2.0.1+git20140120-0ubuntu2_all.deb Size: 14742 MD5sum: 5138444e5943534471e3dee58d0042e8 SHA1: b6b2caead06a50c504d098c30a155d94861ac3f6 SHA256: 213ac77f49247419efb9103b23e6ab2708c851b4b810403c0920e39f23d995e0 Description: Open vSwitch public key infrastructure dependency package Homepage: http://openvswitch.org/ Description-md5: 7bc9647531060a37f72077a192bd67e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: openvswitch-switch Priority: extra Section: net Installed-Size: 4427 Maintainer: Ubuntu Developers Original-Maintainer: Open vSwitch developers Architecture: i386 Source: openvswitch Version: 2.0.1+git20140120-0ubuntu2 Depends: libc6 (>= 2.12), libssl1.0.0 (>= 1.0.0), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any, openvswitch-common (= 2.0.1+git20140120-0ubuntu2), module-init-tools, procps, uuid-runtime, netbase, python-argparse Suggests: openvswitch-datapath-module Filename: pool/main/o/openvswitch/openvswitch-switch_2.0.1+git20140120-0ubuntu2_i386.deb Size: 865636 MD5sum: ac65490d381a50d0af5a05b39176594d SHA1: 2028afeadde64787fab1b8af2516b9668067a03e SHA256: 8bffc116a242a677dddf7a044ded2d49505d103ec78f0a4ad42757d58f1102fc Description: Open vSwitch switch implementations Homepage: http://openvswitch.org/ Description-md5: ff569939b14d8f902d88039019fdf3ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: optipng Priority: optional Section: graphics Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Nelson A. de Oliveira Architecture: i386 Version: 0.6.4-1build1 Depends: libc6 (>= 2.11), libpng12-0 (>= 1.2.13-4), zlib1g (>= 1:1.1.4) Filename: pool/main/o/optipng/optipng_0.6.4-1build1_i386.deb Size: 87622 MD5sum: f90b209e8a56ad335de8d2c8c771e627 SHA1: 08961bfd5999f8924d5a999c06155fcded987d59 SHA256: cdaa89501ed8790e6ee48481f1fc0f48b480b55208642f18b14e64bd6e9108c7 Description: advanced PNG (Portable Network Graphics) optimizer Homepage: http://optipng.sourceforge.net/ Description-md5: 5e7a553e9d19800926e7d1d2e6a7ff8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: orbit2 Priority: optional Section: devel Installed-Size: 281 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Rittau Architecture: i386 Version: 1:2.14.19-0.3 Replaces: liborbit2-dev (<< 1:2.14.19-0.3) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.16.0), libidl0, liborbit-2-0 (>= 1:2.14.10) Breaks: liborbit2-dev (<< 1:2.14.19-0.3) Filename: pool/main/o/orbit2/orbit2_2.14.19-0.3_i386.deb Size: 47890 MD5sum: 348834d2d2f635ce3e2d866ae7a57336 SHA1: 53dd03d8738e9df1be11cfd17a77dd505991a120 SHA256: b40802ae273a7df617426506a43a3a0c295c8e89ad1f1472b85ee67245e8bcfa Description: high-performance CORBA implementation - Object Request Broker Multi-Arch: foreign Description-md5: 5e8cd93722ca0d2f235b46ef9bb8779f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: os-prober Priority: optional Section: utils Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: i386 Version: 1.63ubuntu1 Depends: libc6 (>= 2.4) Filename: pool/main/o/os-prober/os-prober_1.63ubuntu1_i386.deb Size: 18076 MD5sum: 86bf6dda55039787b2e6645e6a316a17 SHA1: a5b7092fbb2ef24f4dfbd6a67c3a0f665bf7dfe8 SHA256: 7c088f68aab992a36178947f048388e695618570d331725f7e07269a5efebabd Description: utility to detect other OSes on a set of drives Description-md5: fdd4c0b3d1ed11dca7af85ad71167f5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: otf2bdf Priority: extra Section: utils Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Miriam Ruiz Architecture: i386 Version: 3.1-3 Depends: libc6 (>= 2.4), libfreetype6 (>= 2.2.1) Filename: pool/main/o/otf2bdf/otf2bdf_3.1-3_i386.deb Size: 29916 MD5sum: 269a7b895e1244652182ea3addf65b50 SHA1: c1393e3ff06a4d8c99801400bc30ef0ecfc4ec0f SHA256: 5eaf300135212ed9d5a85b0548031890362e4cca5ad9e29b2d902475e963077e Description: generate BDF bitmap fonts from OpenType outline fonts Homepage: http://www.math.nmsu.edu/~mleisher/Software/otf2bdf/ Description-md5: 78a18ff9e4e0d117cd863efd39b157ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: overlay-scrollbar Priority: optional Section: libs Installed-Size: 52 Maintainer: Ubuntu Desktop Team Architecture: all Version: 0.2.16+r359+14.04.20131129-0ubuntu1 Depends: overlay-scrollbar-gtk2, overlay-scrollbar-gtk3, dconf-gsettings-backend | gsettings-backend Filename: pool/main/o/overlay-scrollbar/overlay-scrollbar_0.2.16+r359+14.04.20131129-0ubuntu1_all.deb Size: 2116 MD5sum: 885144c707227a50679efd4f73ebde22 SHA1: 2e850c682b2bae16263896723dc3f80c1a3fd2d0 SHA256: d2583f2b511f6324d033f77028fb564f27f0174488c391e57967babe2b92a6d8 Description: Scrollbar overlay Homepage: http://launchpad.net/ayatana-scrollbar Description-md5: e1abc3be32d21f181effe2ab01d43076 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: overlay-scrollbar-gtk2 Priority: optional Section: libs Installed-Size: 118 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: overlay-scrollbar Version: 0.2.16+r359+14.04.20131129-0ubuntu1 Replaces: liboverlay-scrollbar-0.2-0 (<< 0.2.16+r348), liboverlay-scrollbar-0.2-dev (<< 0.2.16+r348) Depends: overlay-scrollbar, libc6 (>= 2.4), libcairo2 (>= 1.10.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.6-0ubuntu4) Conflicts: liboverlay-scrollbar-0.2-0 (<< 0.2.16+r348), liboverlay-scrollbar-0.2-dev (<< 0.2.16+r348) Filename: pool/main/o/overlay-scrollbar/overlay-scrollbar-gtk2_0.2.16+r359+14.04.20131129-0ubuntu1_i386.deb Size: 29286 MD5sum: 261bcaed3e0a73ebab73c25514dfdab5 SHA1: eec7a0e958ce41a441883ce305de2fc8ff4e8aac SHA256: 4f18ad70e6ce0fbb59e79d2ca8fc43ffafd13011dc3db0dcd65bffeddf23379b Description: GTK 2 module for overlay scrollbars Multi-Arch: same Homepage: http://launchpad.net/ayatana-scrollbar Description-md5: 1d3f21e2d8af7452b22c5b3bf608dfba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: overlay-scrollbar-gtk3 Priority: optional Section: libs Installed-Size: 122 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: overlay-scrollbar Version: 0.2.16+r359+14.04.20131129-0ubuntu1 Replaces: liboverlay-scrollbar3-0.2-0 (<< 0.2.16+r348), liboverlay-scrollbar3-0.2-dev (<< 0.2.16+r348) Depends: overlay-scrollbar, libc6 (>= 2.4), libcairo2 (>= 1.10.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.7.10) Conflicts: liboverlay-scrollbar3-0.2-0 (<< 0.2.16+r348), liboverlay-scrollbar3-0.2-dev (<< 0.2.16+r348) Filename: pool/main/o/overlay-scrollbar/overlay-scrollbar-gtk3_0.2.16+r359+14.04.20131129-0ubuntu1_i386.deb Size: 30902 MD5sum: 51b896ad0c4c39f62061cd3b8588ae25 SHA1: 8cf80ad6503c6204ab946000188e13807fcd7c89 SHA256: 631f817d042cf757cff0c5cac98d00d8272f707520a0f768080bd0403009c5e9 Description: GTK 3 module for overlay scrollbars Multi-Arch: same Homepage: http://launchpad.net/ayatana-scrollbar Description-md5: c27dd21fae509f36ba27ac9261f3eb62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: overlayroot Priority: extra Section: admin Installed-Size: 101 Maintainer: Scott Moser Architecture: all Source: cloud-initramfs-tools Version: 0.25ubuntu1 Depends: cryptsetup, cryptsetup-bin, initramfs-tools Suggests: haveged Filename: pool/main/c/cloud-initramfs-tools/overlayroot_0.25ubuntu1_all.deb Size: 14416 MD5sum: 625179f1a8cac7d24126d25cf532649e SHA1: e3413327cf1655c7061688e6cf4cffe0411f9345 SHA256: a296adb97d180966d254534b8d2bd225242fc179def38a7e5157bc00a959ecd5 Description: use an overlayfs on top of a read-only root filesystem Homepage: http://launchpad.net/cloud-initramfs-tools Description-md5: 994a1e190cc10da9cb6f340384617d3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: cloud-image Package: oxideqt-codecs Priority: extra Section: libs Installed-Size: 2323 Maintainer: Chris Coulson Architecture: i386 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Replaces: liboxideqtcore0 (<< 1.0.0~bzr488), oxideqt-codecs-extra Depends: libc6 (>= 2.7), libgcc1 (>= 1:4.1.1) Conflicts: oxideqt-codecs-extra Breaks: liboxideqtcore0 (<< 1.0.0~bzr488) Filename: pool/main/o/oxide-qt/oxideqt-codecs_1.0.0~bzr501-0ubuntu1_i386.deb Size: 506090 MD5sum: d36b6517c348260b2459510341e67654 SHA1: fab3aff532fa1b014d922cc1789c7873334fd260 SHA256: 6e87fbfb17d2b7ba72783c63144b513775670b7ee8062c12d10906cc3620bcc4 Description: Web browser engine library for Qt (codecs) Multi-Arch: same Homepage: https://launchpad.net/oxide Description-md5: d4fcb02affb6a1a5bf176aaea3d3ddae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: oxideqt-codecs-dbg Priority: extra Section: debug Installed-Size: 4204 Maintainer: Chris Coulson Architecture: i386 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Replaces: oxideqt-codecs-extra-dbg, oxideqt-dbg (<< 1.0.0~bzr488) Depends: oxideqt-codecs (= 1.0.0~bzr501-0ubuntu1) Conflicts: oxideqt-codecs-extra-dbg Breaks: oxideqt-dbg (<< 1.0.0~bzr488) Filename: pool/main/o/oxide-qt/oxideqt-codecs-dbg_1.0.0~bzr501-0ubuntu1_i386.deb Size: 827282 MD5sum: 5b8d0ecb6e2a6c60886d2f420df351a4 SHA1: adafb0503560c56195bbd3451a1eb90153470177 SHA256: 3da68fe15323286993441a609c90a929afebde2121a374812a602653bc196f2d Description: Web browser engine library for Qt (Debug symbols) Homepage: https://launchpad.net/oxide Description-md5: 7bdca490a17577bc97500e2cdb847ebb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: oxideqt-codecs-extra Priority: extra Section: libs Installed-Size: 3688 Maintainer: Chris Coulson Architecture: i386 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Replaces: liboxideqtcore0 (<< 1.0.0~bzr488), oxideqt-codecs Depends: libc6 (>= 2.7), libgcc1 (>= 1:4.1.1) Conflicts: oxideqt-codecs Breaks: liboxideqtcore0 (<< 1.0.0~bzr488) Filename: pool/main/o/oxide-qt/oxideqt-codecs-extra_1.0.0~bzr501-0ubuntu1_i386.deb Size: 867930 MD5sum: ccaa9f3f2efbabd0c3b0e60939594ac9 SHA1: d4e60b039303b1c922262946c13ad8c190208719 SHA256: 21d62fd08abbde982b947790475ee6ed45f72dee24e33f92416c75f06d3321ec Description: Web browser engine library for Qt (codecs) Multi-Arch: same Homepage: https://launchpad.net/oxide Description-md5: dc0eb985cf2dad082e83581dbf61fcf6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: oxideqt-codecs-extra-dbg Priority: extra Section: debug Installed-Size: 8114 Maintainer: Chris Coulson Architecture: i386 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Replaces: oxideqt-codecs-dbg, oxideqt-dbg (<< 1.0.0~bzr488) Depends: oxideqt-codecs-extra (= 1.0.0~bzr501-0ubuntu1) Conflicts: oxideqt-codecs-dbg Breaks: oxideqt-dbg (<< 1.0.0~bzr488) Filename: pool/main/o/oxide-qt/oxideqt-codecs-extra-dbg_1.0.0~bzr501-0ubuntu1_i386.deb Size: 1727484 MD5sum: f13218f1298e9e21645059706a483624 SHA1: 6d758894bfd880e36c7b40d64b0ba3a25aa0d542 SHA256: 90234bcce20d294583bf39d7df944c266ab080ac3d3fdd574deb27549ba2a83e Description: Web browser engine library for Qt (Debug symbols) Homepage: https://launchpad.net/oxide Description-md5: 7bdca490a17577bc97500e2cdb847ebb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: oxideqt-dbg Priority: extra Section: debug Installed-Size: 1543671 Maintainer: Chris Coulson Architecture: i386 Source: oxide-qt Version: 1.0.0~bzr501-0ubuntu1 Depends: liboxideqtcore0 (= 1.0.0~bzr501-0ubuntu1), liboxideqt-qmlplugin (= 1.0.0~bzr501-0ubuntu1) Filename: pool/main/o/oxide-qt/oxideqt-dbg_1.0.0~bzr501-0ubuntu1_i386.deb Size: 399446310 MD5sum: 6dd8cc8db720aff3a806a02536b7fecf SHA1: 3e392e83a9cb9094b6381930c7fd5c9683da9175 SHA256: dae8817e0185a80b15e4b083770fdceb94b5371dedd3e3cc1756d24fc855219b Description: Web browser engine library for Qt (Debug symbols) Homepage: https://launchpad.net/oxide Description-md5: 7bdca490a17577bc97500e2cdb847ebb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: p11-kit Priority: extra Section: misc Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Version: 0.20.2-2ubuntu2 Depends: libc6 (>= 2.16), libp11-kit0 (>= 0.20.0), libtasn1-6 (>= 3.4-0), p11-kit-modules (>= 0.20.2-2ubuntu2) Filename: pool/main/p/p11-kit/p11-kit_0.20.2-2ubuntu2_i386.deb Size: 64244 MD5sum: e24f6d6d9bc8b0bbb83b3d82f9bea4ae SHA1: d7a5ac194e3d099ce9dfc814d7bb5962749ad4a0 SHA256: 18cf7f5114dd7613c5afc726fa0bd53c9f63ff1ffd0d5f3f8f7b0b26846eebb3 Description: p11-glue utilities Homepage: http://p11-glue.freedesktop.org/p11-kit.html Description-md5: fe6cbfa4ac74d6c7e8e5eb2361174b36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: p11-kit-modules Priority: extra Section: misc Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Debian GnuTLS Maintainers Architecture: i386 Source: p11-kit Version: 0.20.2-2ubuntu2 Replaces: p11-kit (<< 0.20.2-2) Depends: libc6 (>= 2.16), libtasn1-6 (>= 3.4-0), libp11-kit0 (= 0.20.2-2ubuntu2) Breaks: p11-kit (<< 0.20.2-2) Filename: pool/main/p/p11-kit/p11-kit-modules_0.20.2-2ubuntu2_i386.deb Size: 66130 MD5sum: 11050b66340292bd1b9155b745cb4cba SHA1: db2d8cee63e07db74c2121c2de4e0a3c1840fd11 SHA256: 7f08c0e69144dd083fd3616fd93d7a37a9c80b0a710015ceb931699e11c3d8cc Description: p11-glue proxy and trust modules Multi-Arch: same Homepage: http://p11-glue.freedesktop.org/p11-kit.html Description-md5: 43267efbdfb71218a82e5231a4e91b55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pacemaker Priority: optional Section: admin Installed-Size: 1509 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Version: 1.1.10+git20130802-1ubuntu2 Replaces: pacemaker-heartbeat, pacemaker-openais Depends: libc6 (>= 2.4), libcfg6 (>= 2.3.0), libcib3 (>= 1.1.10+git20130802), libcmap4 (>= 2.3.0), libcorosync-common4 (>= 2.3.0), libcrmcluster4 (>= 1.1.10+git20130802), libcrmcommon3 (>= 1.1.10+git20130802), libcrmservice1 (>= 1.1.10+git20130802), libglib2.0-0 (>= 2.28.0), libgnutls26 (>= 2.12.17-0), liblrmd1 (>= 1.1.10+git20130802), libpam0g (>= 0.99.7.1), libpe-rules2 (>= 1.1.10+git20130802), libpe-status4 (>= 1.1.10+git20130802), libpengine4 (>= 1.1.10+git20130802), libplumb2 (>= 1.0.11+hg2754), libqb0, libstonithd2 (>= 1.1.10+git20130802), libtransitioner2 (>= 1.1.10+git20130802), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libheartbeat2, resource-agents, adduser, corosync (>= 1.4.4-1) | heartbeat (>= 3.0), crmsh, pacemaker-cli-utils Conflicts: pacemaker-heartbeat, pacemaker-openais Filename: pool/main/p/pacemaker/pacemaker_1.1.10+git20130802-1ubuntu2_i386.deb Size: 344082 MD5sum: 3b2b103e8d28a57f4dd1eaf270b33413 SHA1: d987423325966d06c3884eddfd6763a6914affe7 SHA256: 664142b8b73f9aa64df28db2167e9a8f7dc721f1e59920e216cb44fb018d4d4b Description: HA cluster resource manager Homepage: http://clusterlabs.org/ Description-md5: eccce3a1485fdccecf06cfd5b57852c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pacemaker-cli-utils Priority: optional Section: admin Installed-Size: 446 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: pacemaker (<< 1.1.9+git20130321-1) Depends: libc6 (>= 2.15), libcib3 (>= 1.1.10+git20130802), libcpg4 (>= 2.3.0), libcrmcluster4 (>= 1.1.10+git20130802), libcrmcommon3 (>= 1.1.10+git20130802), libcrmservice1 (>= 1.1.10+git20130802), libesmtp6, libglib2.0-0 (>= 2.16.0), liblrmd1 (>= 1.1.10+git20130802), libncurses5 (>= 5.5-5~), libpe-rules2 (>= 1.1.10+git20130802), libpe-status4 (>= 1.1.10+git20130802), libpengine4 (>= 1.1.10+git20130802), libplumb2 (>= 1.0.11+hg2754), libqb0, libquorum5 (>= 2.3.0), libsnmp30 (>= 5.7.2~dfsg), libstonithd2 (>= 1.1.10+git20130802), libtinfo5, libtransitioner2 (>= 1.1.10+git20130802), libxml2 (>= 2.7.4) Conflicts: pacemaker (<< 1.1.9+git20130321-1) Filename: pool/main/p/pacemaker/pacemaker-cli-utils_1.1.10+git20130802-1ubuntu2_i386.deb Size: 121660 MD5sum: 41e8ef7931e2d9e8c0fd5775fce9c153 SHA1: a644eab7d81539698a1652b459068d4b2454e63a SHA256: 374dad7fd898b5f3962c11d0c7bcb9bca9d6fbd8b3c28399f329aeb0fa65583f Description: Command line interface utilities for Pacemaker Homepage: http://clusterlabs.org/ Description-md5: 3c7c85297daa7a355331d5519e1b5e8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pacemaker-dbg Priority: extra Section: debug Installed-Size: 4764 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Depends: pacemaker (= 1.1.10+git20130802-1ubuntu2) Filename: pool/main/p/pacemaker/pacemaker-dbg_1.1.10+git20130802-1ubuntu2_i386.deb Size: 1406688 MD5sum: 6774231b01dbf4479e6a2e12bc311b39 SHA1: e6a12e53286957060efd9677d68c172f2ff3bf6f SHA256: 25cbc4c3daf23ee9953ba1267caa4e651a3e9872447193885ede19734dcb89f0 Description: Debugging symbols for Pacemaker Homepage: http://clusterlabs.org/ Description-md5: a0adfd9dbf36649ed6a4ed5fbabecd35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pacemaker-dev Priority: optional Section: devel Installed-Size: 18007 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: pacemaker Version: 1.1.10+git20130802-1ubuntu2 Replaces: pacemaker-heartbeat-dev, pacemaker-openais-dev Depends: pacemaker (>= 1.1.10+git20130802-1ubuntu2), python, libcorosync-dev (>= 1.4.4-1), libheartbeat2-dev (>= 3.0), libglib2.0-dev, libxml2-dev, libcluster-glue-dev (>= 1.0.11+hg2754), libcib3-dev (>= 1.1.10+git20130802-1ubuntu2), libcrmcluster4-dev (>= 1.1.10+git20130802-1ubuntu2), libcrmcommon3-dev (>= 1.1.10+git20130802-1ubuntu2), libpe-rules2-dev (>= 1.1.10+git20130802-1ubuntu2), libpe-status4-dev (>= 1.1.10+git20130802-1ubuntu2), libpengine4-dev (>= 1.1.10+git20130802-1ubuntu2), libstonithd2-dev (>= 1.1.10+git20130802-1ubuntu2), libtransitioner2-dev (>= 1.1.10+git20130802-1ubuntu2), liblrmd1-dev (>= 1.1.10+git20130802-1ubuntu2), libcrmservice1-dev (>= 1.1.10+git20130802-1ubuntu2) Conflicts: pacemaker-heartbeat-dev, pacemaker-openais-dev Filename: pool/main/p/pacemaker/pacemaker-dev_1.1.10+git20130802-1ubuntu2_i386.deb Size: 769230 MD5sum: 9e3f3fc5a29b8c9fc754339b2bfb7938 SHA1: 2b562abc215f97967baf3ba848d6b3423d544fb4 SHA256: 8824481fa33fb57cffafc406777578c50f6650c5f3d09c29b0d0572373d75b5c Description: HA cluster resource manager (development files) Homepage: http://clusterlabs.org/ Description-md5: 84975a748b75e47909c7bb0cfd965795 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: packagekit Priority: extra Section: admin Installed-Size: 1164 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: i386 Version: 0.8.12-1ubuntu5 Provides: packagekit-system-interface Depends: libglib2.0-bin, libpackagekit-glib2-16 (= 0.8.12-1ubuntu5), packagekit-backend-aptcc (= 0.8.12-1ubuntu5), policykit-1, libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3), libpolkit-gobject-1-0 (>= 0.99), libsqlite3-0 (>= 3.5.9), libsystemd-login0 (>= 31) Recommends: packagekit-tools Suggests: packagekit-backend-smart Breaks: libpackagekit-glib2-14 (<= 0.7.6-4), libpackagekit-qt2-2 (<= 0.7.6-4), packagekit-backend-apt (<< 0.8.12-1ubuntu5), packagekit-backend-aptcc (<< 0.8.12-1ubuntu5), packagekit-backend-smart (<< 0.8.12-1ubuntu5), packagekit-offline-update (<< 0.8.12-1ubuntu5), packagekit-plugin-click (<= 0.3.1) Filename: pool/main/p/packagekit/packagekit_0.8.12-1ubuntu5_i386.deb Size: 263358 MD5sum: e4dce9b783d307fb742b49824b57cdf5 SHA1: 53d4ec6a530c94c675f8a2a32a95f692d85ba88a SHA256: f41c78a5dd1e9731478d750ad202235257b0cfc00fa360a796c5700f0d35e44b Description: Provides a package management service Multi-Arch: foreign Homepage: http://www.packagekit.org Description-md5: 2a370c6f43c72ec3adb4412d3b3bdca0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-desktop Package: packagekit-backend-aptcc Priority: extra Section: admin Installed-Size: 319 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: i386 Source: packagekit Version: 0.8.12-1ubuntu5 Depends: gdebi-core (>= 0.8.2), python3, python3-packagekit (= 0.8.12-1ubuntu5), libapt-inst1.5 (>= 0.8.14), libapt-pkg4.12 (>= 0.9.11), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgstreamer1.0-0 (>= 1.0.0), libstdc++6 (>= 4.6) Recommends: packagekit (= 0.8.12-1ubuntu5) Suggests: apt-xapian-index Filename: pool/main/p/packagekit/packagekit-backend-aptcc_0.8.12-1ubuntu5_i386.deb Size: 96834 MD5sum: dab5b66ee48227d8251f1cfc88dfddf7 SHA1: d4df320d22abcb128d7b80fd9574598c95a60c18 SHA256: d88cc9eb785239a6f4ff11f69dd3bfcb7c8fc07fdd257dc7df8690ec4e150b4d Description: APT backend for PackageKit Homepage: http://www.packagekit.org Description-md5: d47c143c2e7f18ccc2b62c16780cc70d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-desktop Package: packagekit-docs Priority: optional Section: doc Installed-Size: 2546 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: all Source: packagekit Version: 0.8.12-1ubuntu5 Filename: pool/main/p/packagekit/packagekit-docs_0.8.12-1ubuntu5_all.deb Size: 319120 MD5sum: 239584b0c790c9b59d22ff00c6b78e4c SHA1: 43687c67807d7a5f6efb9734035dba020b3ca6ec SHA256: 6d0762e98d50a7097c7e75c0b955bce113c15eb48648ec1db47499da22118d2f Description: Documentation for PackageKit Homepage: http://www.packagekit.org Description-md5: f43626bcae09213d8ed071770d06d57a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: packagekit-tools Priority: optional Section: libs Installed-Size: 213 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: i386 Source: packagekit Version: 0.8.12-1ubuntu5 Depends: python3-aptdaemon.pkcompat | packagekit-system-interface | packagekit (= 0.8.12-1ubuntu5), libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libpackagekit-glib2-16 (>= 0.8.10) Filename: pool/main/p/packagekit/packagekit-tools_0.8.12-1ubuntu5_i386.deb Size: 45356 MD5sum: 33fe35274667b3546b4abc25ea21a154 SHA1: 2c1b022bd784f5a3a413af533b52e3ca55849a02 SHA256: c7d5299262123d5c536cb4aa69ae62d79fd289cdc213eeb742ebbc18d34eacc2 Description: Provides PackageKit command-line tools Multi-Arch: foreign Homepage: http://www.packagekit.org Description-md5: 8ba205caa823fb175b63d5c17f441a15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: paramiko-doc Priority: optional Section: doc Installed-Size: 6975 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy T. Bouse Architecture: all Source: paramiko Version: 1.10.1-1git1build1 Filename: pool/main/p/paramiko/paramiko-doc_1.10.1-1git1build1_all.deb Size: 360326 MD5sum: 2de0805c875a08d8ed1fbc308c5011e7 SHA1: 597400c18c0dadbfdf686699e452970bc72cf082 SHA256: 98b4c1920de8e37c3e651caade5ce5da2e2e282f26dc0911fb9f9fe4a2d80e4f Description: Make ssh v2 connections with Python (Documentation) Homepage: https://github.com/paramiko/paramiko/ Description-md5: 64abd13842f9844afdfb841ebdde4eac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: parted Priority: standard Section: admin Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Parted Maintainer Team Architecture: i386 Version: 2.3-19ubuntu1 Replaces: fsresize, parted1.6 Depends: libc6 (>= 2.11), libparted0debian1 (>= 2.2-1), libreadline6 (>= 6.0), libtinfo5 Suggests: parted-doc Conflicts: fsresize, parted1.6 Filename: pool/main/p/parted/parted_2.3-19ubuntu1_i386.deb Size: 44548 MD5sum: e512f26b6c9cb8ffc8e30451cf23c885 SHA1: 07c38146961d37afc9e7f73fa349100c09ef76a3 SHA256: 3aa0af7933b30545ed427d5b8f821f49d5dce6253126ff113cd49997f88d0423 Description: disk partition manipulator Homepage: http://www.gnu.org/software/parted Description-md5: 0672c048225946ff0705e0cecd54cf5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: parted-doc Priority: optional Section: doc Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Parted Maintainer Team Architecture: all Source: parted Version: 2.3-19ubuntu1 Replaces: parted1.6-doc Depends: install-info Suggests: parted | libparted0-dev Conflicts: parted1.6-doc Filename: pool/main/p/parted/parted-doc_2.3-19ubuntu1_all.deb Size: 82920 MD5sum: f5f477bc19cc66cbf92699d03c18bcc6 SHA1: 20bf12d05316f47d88262d73b71ebe39687d468a SHA256: 72148fd6fb728e0c4ffb4cf64f89892a491d4ae4d9c1bbd3ac44a185808078fd Description: disk partition manipulator - documentation Homepage: http://www.gnu.org/software/parted Description-md5: ac1df9e91cfcaaa28de0866f6029d294 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: passwd Priority: required Section: admin Installed-Size: 2250 Maintainer: Ubuntu Developers Original-Maintainer: Shadow package maintainers Architecture: i386 Source: shadow Version: 1:4.1.5.1-1ubuntu9 Replaces: manpages-tr (<< 1.0.5), manpages-zh (<< 1.5.1-1) Depends: libc6 (>= 2.8), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), libsemanage1 (>= 2.0.3), libpam-modules, debianutils (>= 2.15.2) Filename: pool/main/s/shadow/passwd_4.1.5.1-1ubuntu9_i386.deb Size: 744694 MD5sum: f57a933bd41ef70ffffbbca35fc7be0b SHA1: 15101b0857d4c8627c75922b36f08c5357a568b9 SHA256: 8426a2c56fa0c2644a30a44d7d377848ca99e6c3f6d8bfdf746681d3c3f88009 Description: change and administer password and group data Multi-Arch: foreign Homepage: http://pkg-shadow.alioth.debian.org/ Description-md5: 5bbd70e421ed3367a8299e53bd7afed4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: pastebinit Priority: optional Section: misc Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: Rolf Leggewie Architecture: all Version: 1.4-3 Replaces: bikeshed (<< 1.21) Depends: python3 Recommends: lsb-release Breaks: bikeshed (<< 1.21) Filename: pool/main/p/pastebinit/pastebinit_1.4-3_all.deb Size: 14868 MD5sum: d45fb18a32934c39d20a690b84fdf739 SHA1: b9a4a2494c10a33cc890b323102948f74480cb93 SHA256: b2eb03f0208648c43a5adf82fdc58e25c402656bdc2ddc27f893863f091136a1 Description: command-line pastebin client Homepage: http://launchpad.net/pastebinit/ Description-md5: 087aee8d4c5cc5f9dc54f3bdcd92d9f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, xubuntu-desktop Package: patch Priority: optional Section: utils Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Version: 2.7.1-4 Depends: libc6 (>= 2.17) Suggests: ed, diffutils-doc Filename: pool/main/p/patch/patch_2.7.1-4_i386.deb Size: 99176 MD5sum: 0369a32d1c5dc54e95e708e2366a8fd8 SHA1: c0b8395bbd8cb329bb7aa42c1decd7ccd2be03b5 SHA256: 9f0ea7d9e2d1b4931127125c6412d3297fc43e5c67ea32abdaff09d4dfeac780 Description: Apply a diff file to an original Multi-Arch: foreign Description-md5: d56076980d5ce0f54f9dd685e6ca0ce7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: patchutils Priority: optional Section: text Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Version: 0.3.2-3 Depends: libc6 (>= 2.7), perl, patch, debianutils (>= 1.16) Filename: pool/main/p/patchutils/patchutils_0.3.2-3_i386.deb Size: 88232 MD5sum: 45cf879e050926f7367d335697ad2d53 SHA1: 68db80f5d5656ff3eeaff4b22de7f9f803349c8c SHA256: 5dc84f6642f0e412b5e60625ec52d3854093980e827da5ecff0eb8e493fbac79 Description: Utilities to work with patches Multi-Arch: foreign Homepage: http://cyberelk.net/tim/patchutils/index.html Description-md5: 442c0d104c6f6b7262f5dcab972c3391 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pax Priority: optional Section: utils Installed-Size: 180 Maintainer: Thorsten Glaser Architecture: i386 Version: 1:20120606-2+deb7u1 Depends: libc6 (>= 2.8) Filename: pool/main/p/pax/pax_20120606-2+deb7u1_i386.deb Size: 84150 MD5sum: a529aee72616834fa2fcb49591b08d83 SHA1: 96a2f1fbf59fa5c9e9d11dba60a73e6162a2abe9 SHA256: f0c8cf18487908ae0000c8218427374a4a0a2a1a5445ad8cc893bee6b92815f3 Description: Portable Archive Interchange (cpio, pax, tar) Multi-Arch: foreign Description-md5: 7f236f6351e1536c2153e84c93563932 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pbuilder Priority: extra Section: devel Installed-Size: 992 Maintainer: Ubuntu Developers Original-Maintainer: Debian pbuilder maintenance team Architecture: all Version: 0.215ubuntu7 Depends: coreutils (>= 4.5.8-1), debootstrap | cdebootstrap, dpkg-dev, debianutils (>= 1.13.1), wget, debconf (>= 0.5) | debconf-2.0 Recommends: fakeroot, sudo, devscripts, aptitude Suggests: pbuilder-uml, gdebi-core, cowdancer Filename: pool/main/p/pbuilder/pbuilder_0.215ubuntu7_all.deb Size: 307414 MD5sum: 40567bb9ef12bb88b1e7900fae2fe703 SHA1: c8cf69a9c3d3cecbdb3cf31189089690262507c5 SHA256: f5c9e9263b8bbef5a14a1db070dcc2dc27bc0cc81552d5f9d684d26e82f80a2b Description: personal package builder for Debian packages Homepage: http://pbuilder.alioth.debian.org Description-md5: a8198b8566f5ca30b1c95b4df04af8ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pciutils Priority: standard Section: admin Installed-Size: 1075 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 1:3.2.1-1ubuntu5 Depends: libc6 (>= 2.7), libpci3 (= 1:3.2.1-1ubuntu5) Suggests: bzip2, wget | curl | lynx-cur Filename: pool/main/p/pciutils/pciutils_3.2.1-1ubuntu5_i386.deb Size: 264094 MD5sum: c6889c15f0cb6deced874aa4f51ea89d SHA1: 45b75941fca2adabc63a8089595d2b9c273a004f SHA256: 4f54e1dd48e87bd20ed11cda340c410d2497a8f7710496c1165ce7a3f95abbf7 Description: Linux PCI Utilities Multi-Arch: foreign Homepage: http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml Description-md5: 4f7355c69571e79c2e4a6b4c231912e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: pcmciautils Priority: optional Section: admin Installed-Size: 115 Maintainer: Colin Watson Architecture: i386 Version: 018-8 Depends: libc6 (>= 2.4) Pre-Depends: dpkg (>= 1.15.7.2) Recommends: udev Suggests: wireless-tools Filename: pool/main/p/pcmciautils/pcmciautils_018-8_i386.deb Size: 28830 MD5sum: a4bc36fbe951958c5ec68e62c367db52 SHA1: 8d733a9c66cfb361a54938e201c729670affb026 SHA256: 69fd300a18a8200b22ef12d94677b6867891719ff01da47a91eee332a5edc124 Description: PCMCIA utilities for Linux 2.6 Homepage: http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html Description-md5: d01e24437b6f27ffd8779126e3ecaeec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pdksh Priority: optional Section: shells Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Thorsten Glaser Architecture: all Source: mksh Version: 46-2ubuntu3 Depends: mksh (>= 40.9.20120630) Filename: pool/main/m/mksh/pdksh_46-2ubuntu3_all.deb Size: 2914 MD5sum: 2cf972a3bcef4ab0feb3531b0359e15d SHA1: e6c47f5f54fff339c8ee6eecb88a0b50e8def871 SHA256: cc921793f5e3e5570d61ab8c4ea4a4857f157d4304fab6c0024fe0335169993e Description: transitional dummy package to migrate from pdksh to mksh Multi-Arch: foreign Homepage: http://mirbsd.de/mksh Description-md5: a2a32660fef49ec89ed9052e6465fbd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pep8 Priority: optional Section: python Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: David Watson Architecture: all Version: 1.4.6-1.1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any, python-setuptools Filename: pool/main/p/pep8/pep8_1.4.6-1.1build1_all.deb Size: 27400 MD5sum: bcb256952a154a7d02d55bc68c775980 SHA1: fd09e6504072f3e0ba6eda66050742be49b7b265 SHA256: 7f55fd17c9c045b822cbdabc8d160dddab2984f96777e490cb592cbf9fff0182 Description: Python PEP 8 code style checker - python2 Homepage: http://pypi.python.org/pypi/pep8 Description-md5: 4fa5e7cc321d43aa1bd5646a1cfd1fc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: perl Priority: important Section: perl Installed-Size: 11509 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: i386 Version: 5.18.2-2ubuntu1 Replaces: libarchive-tar-perl (<= 1.38-2), libcompress-raw-bzip2-perl, libcompress-raw-zlib-perl, libcompress-zlib-perl, libdigest-md5-perl, libdigest-sha-perl, libencode-perl, libio-compress-base-perl, libio-compress-bzip2-perl, libio-compress-perl, libio-compress-zlib-perl, libmime-base64-perl, libmodule-corelist-perl (<< 2.14-2), libstorable-perl, libsys-syslog-perl, libthreads-perl, libthreads-shared-perl, libtime-hires-perl, libtime-piece-perl, perl-base (<< 5.10.1-12), perl-doc (<< 5.8.0-1), perl-modules (<< 5.8.1-1) Provides: data-dumper, libcompress-raw-bzip2-perl, libcompress-raw-zlib-perl, libcompress-zlib-perl, libdigest-md5-perl, libdigest-sha-perl, libencode-perl, libio-compress-base-perl, libio-compress-bzip2-perl, libio-compress-perl, libio-compress-zlib-perl, libmime-base64-perl, libstorable-perl, libsys-syslog-perl, libthreads-perl, libthreads-shared-perl, libtime-hires-perl, libtime-piece-perl, perl5 Depends: perl-base (= 5.18.2-2ubuntu1), perl-modules (>= 5.18.2-2ubuntu1), libbz2-1.0, libc6 (>= 2.11), libdb5.3, libgdbm3 (>= 1.8.3), zlib1g (>= 1:1.2.2.3) Recommends: netbase Suggests: perl-doc, libterm-readline-gnu-perl | libterm-readline-perl-perl, make Conflicts: libjson-pp-perl (<< 2.27200-2) Breaks: dh-make-perl (<< 0.73-1), ftpmirror (<< 1.96+dfsg-13), libcompress-raw-bzip2-perl (<< 2.060), libcompress-raw-zlib-perl (<< 2.060), libcompress-zlib-perl (<< 2.060), libdigest-md5-perl (<< 2.52), libdigest-sha-perl (<< 5.84.01), libencode-perl (<< 2.49), libhtml-template-compiled-perl (<< 0.95-1), libio-compress-base-perl (<< 2.060), libio-compress-bzip2-perl (<< 2.060), libio-compress-perl (<< 2.060), libio-compress-zlib-perl (<< 2.060), libload-perl (<< 0.20-1), libmime-base64-perl (<< 3.13), libnet-jifty-perl (<< 0.14-1), libperl-apireference-perl (<< 0.09-1), libregexp-optimizer-perl (<< 0.15-3), libsoap-lite-perl (<< 0.712-4), libstorable-perl (<< 2.41), libsys-syslog-perl (<< 0.32), libthreads-perl (<< 1.86), libthreads-shared-perl (<< 1.43), libtime-hires-perl (<< 1.9725), libtime-piece-perl (<< 1.20.01), libxml-parser-lite-tree-perl (<< 0.14-1), libyaml-perl (<< 0.73-1), mrtg (<< 2.16.3-3.1), perl-doc (<< 5.18.2-1) Filename: pool/main/p/perl/perl_5.18.2-2ubuntu1_i386.deb Size: 2173210 MD5sum: 9aa4131757fc25086130770e18f8f532 SHA1: 68e6ab8306477fe6962c0441f6f2eae81d886896 SHA256: 4b6de84029895f5ac23507e9c6398be53d1eed432505b2f85f63f2c45fa18ee3 Description: Larry Wall's Practical Extraction and Report Language Homepage: http://dev.perl.org/perl5/ Description-md5: 603cb1e5fe66da8106c364f4e9b84082 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: perl-base Essential: yes Priority: required Section: perl Installed-Size: 4780 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: i386 Source: perl Version: 5.18.2-2ubuntu1 Replaces: libperl5.8 (<< 5.8.0-20), libscalar-list-utils-perl, libsocket-perl, libxsloader-perl, perl (<< 5.10.1-12), perl-modules (<< 5.10.1-1) Provides: libscalar-list-utils-perl, libsocket-perl, libxsloader-perl, perl5-base, perlapi-5.18.1, perlapi-5.18.2 Pre-Depends: libc6 (>= 2.11), dpkg (>= 1.14.20) Suggests: perl Conflicts: defoma (<< 0.11.12), doc-base (<< 0.10.3), libscalar-list-utils-perl, mono-gac (<< 2.10.8.1-3), safe-rm (<< 0.8), update-inetd (<< 4.41) Breaks: autoconf2.13 (<< 2.13-45), libcommon-sense-perl (<< 3.72-2~), libfile-spec-perl (<< 3.4000), libmarc-charset-perl (<< 1.2), libsocket-perl (<< 2.009), libxsloader-perl (<< 0.16) Filename: pool/main/p/perl/perl-base_5.18.2-2ubuntu1_i386.deb Size: 1132838 MD5sum: 82e647ef2af3d2b8ebdf45fb0211ca4d SHA1: 80d0a62d0ac14a1104e34a67387e17efe02c7246 SHA256: a9458d95314ed5741f4214382c9ebaac6c741550975b4c3f0ac1c622bc15161e Description: minimal Perl system Homepage: http://dev.perl.org/perl5/ Description-md5: 7c818331fe8bc53134bb22330b07f5ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: perl-debug Priority: optional Section: perl Installed-Size: 21311 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: i386 Source: perl Version: 5.18.2-2ubuntu1 Depends: perl (= 5.18.2-2ubuntu1), libc6 (>= 2.11) Filename: pool/main/p/perl/perl-debug_5.18.2-2ubuntu1_i386.deb Size: 5803002 MD5sum: 918f176992728827c8afa9b580552d5b SHA1: c6ee2d3693acc1357e984afdb6f36a67a31edfbb SHA256: 3eea5fc99d2142ea9775dd209ecfd5abf1a3407cec3113ed4004d7ab5db6d387 Description: debug-enabled Perl interpreter Homepage: http://dev.perl.org/perl5/ Description-md5: d74923b33864cae938866649204c3496 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: perl-doc Priority: optional Section: doc Installed-Size: 12799 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: all Source: perl Version: 5.18.2-2ubuntu1 Depends: perl (>= 5.18.2-1) Suggests: man-browser, groff Filename: pool/main/p/perl/perl-doc_5.18.2-2ubuntu1_all.deb Size: 7265680 MD5sum: 8a22b6cac8c96eaeed08ebb7d833cd1e SHA1: f0b78b38582b005da4661241a1154a66fb30668a SHA256: fd0665fb7a4028d34f1ab674a7ff79240675c9a1733b93f96179be7d0383220e Description: Perl documentation Homepage: http://dev.perl.org/perl5/ Description-md5: 6cd25412f32c953589ef8fcaf1f5f46d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: perl-modules Priority: important Section: perl Installed-Size: 16133 Maintainer: Ubuntu Developers Original-Maintainer: Niko Tyni Architecture: all Source: perl Version: 5.18.2-2ubuntu1 Replaces: libansicolor-perl, libarchive-extract-perl, libarchive-tar-perl, libattribute-handlers-perl, libautodie-perl, libb-lint-perl, libcgi-pm-perl, libcpan-meta-perl, libcpan-meta-requirements-perl, libcpan-meta-yaml-perl, libcpanplus-dist-build-perl, libcpanplus-perl, libdigest-perl, libextutils-cbuilder-perl, libextutils-command-perl, libextutils-install-perl, libextutils-parsexs-perl, libfile-checktree-perl, libfile-path-perl, libfile-spec-perl, libfile-temp-perl, libhttp-tiny-perl, libi18n-langtags-perl, libio-zlib-perl, libjson-pp-perl, liblocale-codes-perl, liblocale-maketext-perl, liblocale-maketext-simple-perl, liblog-message-perl, liblog-message-simple-perl, libmath-bigint-perl, libmath-complex-perl, libmodule-build-perl, libmodule-corelist-perl, libmodule-load-conditional-perl, libmodule-load-perl, libmodule-metadata-perl, libmodule-pluggable-perl, libnet-perl, libnet-ping-perl, libobject-accessor-perl, libparams-check-perl, libparent-perl, libparse-cpan-meta-perl, libperl-ostype-perl, libpod-escapes-perl, libpod-latex-perl, libpod-parser-perl, libpod-simple-perl, libterm-ui-perl, libtest-harness-perl, libtest-simple-perl, libtext-soundex-perl, libthread-queue-perl, libtime-local-perl, libunicode-collate-perl, libversion-perl, libversion-requirements-perl, podlators-perl Provides: libansicolor-perl, libarchive-tar-perl, libattribute-handlers-perl, libautodie-perl, libcgi-pm-perl, libcpan-meta-perl, libcpan-meta-requirements-perl, libcpan-meta-yaml-perl, libdigest-perl, libextutils-cbuilder-perl, libextutils-command-perl, libextutils-install-perl, libextutils-parsexs-perl, libfile-path-perl, libfile-spec-perl, libfile-temp-perl, libhttp-tiny-perl, libi18n-langtags-perl, libio-zlib-perl, libjson-pp-perl, liblocale-codes-perl, liblocale-maketext-perl, liblocale-maketext-simple-perl, libmath-bigint-perl, libmath-complex-perl, libmodule-build-perl, libmodule-corelist-perl, libmodule-load-conditional-perl, libmodule-load-perl, libmodule-metadata-perl, libnet-perl, libnet-ping-perl, libparams-check-perl, libparent-perl, libparse-cpan-meta-perl, libperl-ostype-perl, libpod-escapes-perl, libpod-parser-perl, libpod-simple-perl, libtest-harness-perl, libtest-simple-perl, libthread-queue-perl, libtime-local-perl, libunicode-collate-perl, libversion-perl, libversion-requirements-perl, podlators-perl Depends: perl (>= 5.18.2-1) Recommends: libarchive-extract-perl, libmodule-pluggable-perl, libpod-latex-perl, libterm-ui-perl, libtext-soundex-perl Suggests: libb-lint-perl, libcpanplus-dist-build-perl, libcpanplus-perl, libfile-checktree-perl, liblog-message-simple-perl, liblog-message-perl, libobject-accessor-perl Conflicts: defoma (<< 0.11.12), mono-gac (<< 2.10.8.1-3) Breaks: libansicolor-perl (<< 4.02), libarchive-extract-perl (<< 0.68), libarchive-tar-perl (<< 1.90), libattribute-handlers-perl (<< 0.94), libautodie-perl (<< 2.13), libb-lint-perl (<< 1.17), libcgi-pm-perl (<< 3.63), libcpan-meta-perl (<< 2.120921), libcpan-meta-requirements-perl (<< 2.122), libcpan-meta-yaml-perl (<< 0.008), libcpanplus-dist-build-perl (<< 0.70), libcpanplus-perl (<< 0.9135), libdigest-perl (<< 1.17), libextutils-cbuilder-perl (<< 0.280210), libextutils-command-perl (<< 1.17), libextutils-install-perl (<< 1.59), libextutils-parsexs-perl (<< 3.180000), libfile-checktree-perl (<< 4.42), libfile-path-perl (<< 2.09), libfile-spec-perl (<< 3.4000), libfile-temp-perl (<< 0.23), libhttp-tiny-perl (<< 0.025), libi18n-langtags-perl (<< 0.39), libio-zlib-perl (<< 1.10), libjson-pp-perl (<< 2.27202), liblocale-codes-perl (<< 3.25), liblocale-maketext-perl (<< 1.23), liblocale-maketext-simple-perl (<< 0.21), liblog-message-perl (<< 0.06), liblog-message-simple-perl (<< 0.10), libmath-bigint-perl (<< 1.9991), libmath-complex-perl (<< 1.59), libmodule-build-perl (<< 0.400300), libmodule-corelist-perl (<< 3.03), libmodule-load-conditional-perl (<< 0.54), libmodule-load-perl (<< 0.24), libmodule-metadata-perl (<< 1.000011), libmodule-pluggable-perl (<< 4.7), libnet-perl (<= 1:1.22), libnet-ping-perl (<< 2.41), libobject-accessor-perl (<< 0.46), libparams-check-perl (<< 0.36), libparent-perl (<< 0.225), libparse-cpan-meta-perl (<< 1.4404), libperl-ostype-perl (<< 1.003), libpod-escapes-perl (<< 1.04), libpod-latex-perl (<< 0.61), libpod-parser-perl (<< 1.60), libpod-simple-perl (<< 3.28), libterm-ui-perl (<< 0.34), libtest-harness-perl (<< 3.26), libtest-simple-perl (<< 0.98), libtext-soundex-perl (<< 3.04), libthread-queue-perl (<< 3.02), libtime-local-perl (<< 1.2300), libunicode-collate-perl (<< 0.97), libversion-perl (<< 1:0.9902), libversion-requirements-perl (<< 0.101022), podlators-perl (<< 2.3.1) Filename: pool/main/p/perl/perl-modules_5.18.2-2ubuntu1_all.deb Size: 2695888 MD5sum: 0e62d5ee60b61a35f54bc13d3643754b SHA1: 77500983a5214c80050ea0ee075ffb6c1f42ae8a SHA256: 4e50d0d99f67d7c8653c50245fa2298a7c4b4aacb79e1ea6e2e125c36f695b68 Description: Core Perl modules Homepage: http://dev.perl.org/perl5/ Description-md5: c6e30002bf62266bdbe810bfbeaf9586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: perlmagick Priority: optional Section: perl Installed-Size: 496 Maintainer: Ubuntu Developers Original-Maintainer: ImageMagick Packaging Team Architecture: i386 Source: imagemagick Version: 8:6.7.7.10-6ubuntu3 Provides: libimage-magick-perl Depends: perl (>= 5.18.2-2), perlapi-5.18.2, libc6 (>= 2.4), libmagickcore5 (>= 8:6.7.7.10), libperl5.18 (>= 5.18.2) Suggests: imagemagick-doc Filename: pool/main/i/imagemagick/perlmagick_6.7.7.10-6ubuntu3_i386.deb Size: 130550 MD5sum: 8733988b9551ddbfbe643706db1b8f92 SHA1: 73d091fbaedd6367a93b409f338c826a37bb2046 SHA256: 22ecfe8af4e4cad8dfc429687894a253c2f5096643289e1ce3d7f8dd9a1a1092 Description: Perl interface to the ImageMagick graphics routines Multi-Arch: allowed Homepage: http://www.imagemagick.org/ Description-md5: 09a1c38959e1dfda7d721a6f035bc283 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: perlqt-dbg Priority: extra Section: debug Installed-Size: 7311 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libqtcore4-perl (= 4:4.13.0-0ubuntu1) Recommends: libsmokeqt4-dbg Suggests: libphonon-perl (= 4:4.13.0-0ubuntu1), libqimageblitz-perl (= 4:4.13.0-0ubuntu1), libqscintilla-perl (= 4:4.13.0-0ubuntu1), libqt3support4-perl (= 4:4.13.0-0ubuntu1), libqtdbus4-perl (= 4:4.13.0-0ubuntu1), libqtdeclarative4-perl (= 4:4.13.0-0ubuntu1), libqtgui4-perl (= 4:4.13.0-0ubuntu1), libqthelp4-perl (= 4:4.13.0-0ubuntu1), libqtnetwork4-perl (= 4:4.13.0-0ubuntu1), libqtopengl4-perl (= 4:4.13.0-0ubuntu1), libqtscript4-perl (= 4:4.13.0-0ubuntu1), libqtsql4-perl (= 4:4.13.0-0ubuntu1), libqtsvg4-perl (= 4:4.13.0-0ubuntu1), libqttest4-perl (= 4:4.13.0-0ubuntu1), libqtuitools4-perl (= 4:4.13.0-0ubuntu1), libqtwebkit4-perl (= 4:4.13.0-0ubuntu1), libqtxml4-perl (= 4:4.13.0-0ubuntu1), libqtxmlpatterns4-perl (= 4:4.13.0-0ubuntu1) Filename: pool/main/p/perlqt/perlqt-dbg_4.13.0-0ubuntu1_i386.deb Size: 1633526 MD5sum: 52c7ad16bff1f6eff198547a55d5949d SHA1: 6eaa41f3b2158f99ad491b62a5af880a8886b40d SHA256: 237e8f8b9fff704aeff228bc6d30bbd99896a5aede2d93bd50654f1b5e7cc2ea Description: debugging symbols for the perl Qt4 bindings. Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: 4d96c996f17d573ebba693136e9049ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: perlqt-dev Priority: optional Section: perl Installed-Size: 397 Maintainer: Kubuntu Developers Original-Maintainer: Sune Vuorela Architecture: i386 Source: perlqt Version: 4:4.13.0-0ubuntu1 Depends: libphonon-perl (= 4:4.13.0-0ubuntu1), libqimageblitz-perl (= 4:4.13.0-0ubuntu1), libqscintilla-perl (= 4:4.13.0-0ubuntu1), libqt3support4-perl (= 4:4.13.0-0ubuntu1), libqtcore4-perl (= 4:4.13.0-0ubuntu1), libqtdbus4-perl (= 4:4.13.0-0ubuntu1), libqtdeclarative4-perl (= 4:4.13.0-0ubuntu1), libqtgui4-perl (= 4:4.13.0-0ubuntu1), libqthelp4-perl (= 4:4.13.0-0ubuntu1), libqtnetwork4-perl (= 4:4.13.0-0ubuntu1), libqtopengl4-perl (= 4:4.13.0-0ubuntu1), libqtscript4-perl (= 4:4.13.0-0ubuntu1), libqtsql4-perl (= 4:4.13.0-0ubuntu1), libqtsvg4-perl (= 4:4.13.0-0ubuntu1), libqttest4-perl (= 4:4.13.0-0ubuntu1), libqtuitools4-perl (= 4:4.13.0-0ubuntu1), libqtwebkit4-perl (= 4:4.13.0-0ubuntu1), libqtxml4-perl (= 4:4.13.0-0ubuntu1), libqtxmlpatterns4-perl (= 4:4.13.0-0ubuntu1), libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.5.3), libqt4-xml (>= 4:4.5.3), libqtcore4 (>= 4:4.8.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/perlqt/perlqt-dev_4.13.0-0ubuntu1_i386.deb Size: 93756 MD5sum: d1dba452fe42246e93f86ac75829f877 SHA1: 6d55c9acfa2ea54fd366197046efb36d12edda1f SHA256: 8fd96631470adaf7a1b8431d43f02c54baf5a1db87319c7c06e52e3f05b1b7ea Description: Development files for PerlQt4 Homepage: https://projects.kde.org/projects/kde/kdebindings/perl/perlqt Description-md5: ccf3a7f11765808b17a25b8c18f61b63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: perltidy Priority: optional Section: devel Installed-Size: 1292 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Version: 20120701-1 Depends: perl Filename: pool/main/p/perltidy/perltidy_20120701-1_all.deb Size: 351174 MD5sum: a03075272994cf71935b643c13fabd09 SHA1: 3a246c03298cf85e9ef57a1e079aa6f6cab4054e SHA256: d04f1deefdcff0738db800eb4d938970d5f627309b1c946c3c564695c78f1c24 Description: Perl script indenter and reformatter Homepage: http://perltidy.sourceforge.net/ Description-md5: ac1c04dd6c5ca63f121d18e84c2466d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pgf Priority: optional Section: tex Installed-Size: 8748 Maintainer: Ubuntu Developers Original-Maintainer: OHURA Makoto Architecture: all Version: 2.10-1 Depends: dpkg (>= 1.14.18), tex-common (>= 2.00), texlive-latex-recommended, latex-xcolor (>= 2.00-1) Filename: pool/main/p/pgf/pgf_2.10-1_all.deb Size: 5667818 MD5sum: a06b50b588bfd71902bb2cb0b46b3802 SHA1: 42381d2d878df517cf0bb16e72d569c873ec478e SHA256: ac13433583afcb9a0d3bf30605aabef2cf4f171afd374cabfdf6efed0343bb41 Description: TeX Portable Graphic Format Description-md5: 48c701142da1c34201288ab86638b382 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: phonon Priority: optional Section: sound Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Version: 4:4.7.1-0ubuntu8 Depends: libphonon4 (>= 4:4.7.1-0ubuntu8), debconf (>= 0.5) | debconf-2.0, phonon-backend-gstreamer1.0 | phonon-backend Suggests: phonon-backend-vlc, phonon-backend-gstreamer1.0 Breaks: phonon-backend-xine (<< 4:4.6.0.0) Filename: pool/main/p/phonon/phonon_4.7.1-0ubuntu8_i386.deb Size: 8860 MD5sum: 383cd12ae176e299de577d98df98feaa SHA1: e25fdba2d46da99b0e5ad1909141f257b37f0a35 SHA256: 2eb64dcec607af06ca6bebb2bb161fabbb7ca0de911d280508bd9d739e790b95 Description: multimedia framework from KDE - metapackage Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: d6f8b1bb883e46112dcd9e83da047503 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: phonon-backend-gstreamer Priority: optional Section: sound Installed-Size: 391 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Version: 4:4.7.1+git20140403-0ubuntu1 Replaces: phonon-backend-gstreamer1.0 (<< 4.7.1+git20140324-0ubuntu1) Provides: phonon-backend Depends: phonon-backend-gstreamer-common (= 4:4.7.1+git20140403-0ubuntu1), gstreamer-1.0-pulseaudio | gstreamer1.0-alsa | gstreamer1.0-audiosink, gstreamer1.0-plugins-base, libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.16.0), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libphonon4 (>= 4:4.7.0.0), libqt4-opengl (>= 4:4.8.1), libqtcore4 (>= 4:4.8.1), libqtgui4 (>= 4:4.8.1), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Recommends: gstreamer1.0-plugins-good Suggests: gstreamer1.0-plugins-ugly Breaks: phonon-backend-gstreamer1.0 (<< 4.7.1+git20140324-0ubuntu1) Filename: pool/main/p/phonon-backend-gstreamer/phonon-backend-gstreamer_4.7.1+git20140403-0ubuntu1_i386.deb Size: 103844 MD5sum: a05fb46c49cfd787da06f0a68d57ac42 SHA1: 649d3da8676ba02daa030fbf844921f0649859c7 SHA256: c0c2f7ac1a08e39f479b436029c7145519e9b5e09f1b1a04efcdb36212b334db Description: Phonon GStreamer 1.0.x backend Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 0fd558495f404f21ed6479dca9391b21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: phonon-backend-gstreamer-common Priority: optional Section: sound Installed-Size: 95 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon-backend-gstreamer Version: 4:4.7.1+git20140403-0ubuntu1 Replaces: phonon-backend-gstreamer (<< 4:4.7.1-0ubuntu1) Suggests: phonon-backend-gstreamer, phonon4qt5-backend-gstreamer Breaks: phonon-backend-gstreamer (<< 4:4.7.1-0ubuntu1) Filename: pool/main/p/phonon-backend-gstreamer/phonon-backend-gstreamer-common_4.7.1+git20140403-0ubuntu1_i386.deb Size: 10666 MD5sum: ded63df1238270a218ad0065b95faf0e SHA1: 6618ce91f70ef9ba9bb670ba7e8bce0a94523cf7 SHA256: 86b3230768a6d2318b484ebc1298e6df285b6828e0bcb62b36c29b1ed79ea7f3 Description: Phonon GStreamer 1.0.x backend icons Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: c808c90a526e327c013885603fb0224c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: phonon-backend-gstreamer-dbg Priority: extra Section: debug Installed-Size: 1841 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon-backend-gstreamer Version: 4:4.7.1+git20140403-0ubuntu1 Replaces: phonon-backend-gstreamer1.0 (<< 4.7.1+git20140324-0ubuntu1), phonon-dbg (<< 4:4.6.0really4.4.4) Depends: phonon-backend-gstreamer (= 4:4.7.1+git20140403-0ubuntu1) Breaks: phonon-backend-gstreamer1.0 (<< 4.7.1+git20140324-0ubuntu1), phonon-dbg (<< 4:4.6.0really4.4.4) Filename: pool/main/p/phonon-backend-gstreamer/phonon-backend-gstreamer-dbg_4.7.1+git20140403-0ubuntu1_i386.deb Size: 1748346 MD5sum: dcd1e04adb7f8984d5fa8511daf30ebf SHA1: 54b754f6b0ef021fc5ba1e03272311788092d8de SHA256: 6cba8d4a289e9f7449b37abb3ce73de27ea602b62adfc174a04b6338c70fe8d9 Description: debugging symbols for the Phonon GStreamer 1.0.x backend Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: e0ca63dee3d3712986032bc1b99efe23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: phonon-backend-gstreamer1.0 Priority: optional Section: sound Installed-Size: 31 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: phonon-backend-gstreamer Version: 4:4.7.1+git20140403-0ubuntu1 Depends: phonon-backend-gstreamer Filename: pool/main/p/phonon-backend-gstreamer/phonon-backend-gstreamer1.0_4.7.1+git20140403-0ubuntu1_all.deb Size: 2428 MD5sum: 6ded5f51d5e14bb04ba13badb14dfdfc SHA1: 692422083171d526f3f0ff78195c75fb9f72a5fe SHA256: 845d4249fa22afc603607dff72f0f58f39790e300e86ebf7bccd631208d47426 Description: transitional package Homepage: http://phonon.kde.org/ Description-md5: db884766fbb0af653ae84909ccef976a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: phonon-backend-gstreamer1.0-dbg Priority: extra Section: debug Installed-Size: 31 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: phonon-backend-gstreamer Version: 4:4.7.1+git20140403-0ubuntu1 Depends: phonon-backend-gstreamer-dbg Filename: pool/main/p/phonon-backend-gstreamer/phonon-backend-gstreamer1.0-dbg_4.7.1+git20140403-0ubuntu1_all.deb Size: 2436 MD5sum: 326a25a03a9dbe46ce0d2d7ce564ab63 SHA1: 38f97e7202c77237c9f451f5336ca32f4a61232a SHA256: 42f9d9fcd2c6ae65d2f4de1ec8f0fda7494623931739dbfbf6bb6b44e5c63731 Description: transitional package Homepage: http://phonon.kde.org/ Description-md5: db884766fbb0af653ae84909ccef976a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: phonon-backend-null Priority: optional Section: sound Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon Version: 4:4.7.1-0ubuntu8 Provides: phonon-backend Depends: libphonon4, debconf (>= 0.5) | debconf-2.0 Conflicts: phonon-backend Filename: pool/main/p/phonon/phonon-backend-null_4.7.1-0ubuntu8_i386.deb Size: 9460 MD5sum: 851ae7e6d8da2c84fdc27ed674c1456e SHA1: c565137267752f1d66ca5c48580d4ff4540e8973 SHA256: 3f7cafe96973f5a07d665eec5ef18734d16907eae9a76f6abac94c9679adabbc Description: multimedia framework from KDE - null back-end (no real back-end) Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: b98d0d9696e3350cabdd00605934fc22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: phonon-dbg Priority: extra Section: sound Installed-Size: 18916 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon Version: 4:4.7.1-0ubuntu8 Depends: libphonon4 (= 4:4.7.1-0ubuntu8) Suggests: libphononexperimental4 (= 4:4.7.1-0ubuntu8), libphonon4qt5-4 (= 4:4.7.1-0ubuntu8), libphonon4qt5experimental4 (= 4:4.7.1-0ubuntu8) Filename: pool/main/p/phonon/phonon-dbg_4.7.1-0ubuntu8_i386.deb Size: 4176384 MD5sum: da8d224a8cacfb27937773b72e8fad2c SHA1: 51ca22f60ab6b5a81d5e957b5664c9389c3aa6f5 SHA256: 47fedb1fed6641dd99ca41ae1001970a7f8b181d9141efb28fc3c4eca65719c5 Description: multimedia framework from KDE - debugging symbols Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: 0e0880a727b0b765c9335d2c157ead91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: phonon4qt5-backend-null Priority: optional Section: sound Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: phonon Version: 4:4.7.1-0ubuntu8 Provides: phonon4qt5-backend Depends: libphonon4qt5-4, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/p/phonon/phonon4qt5-backend-null_4.7.1-0ubuntu8_i386.deb Size: 5960 MD5sum: ed76368472be351812c6cfb9091b62a5 SHA1: ff0f94524dcb85f4a7d1d03d59b33bee85698243 SHA256: 36489e566c496b1ca6a2516478de6c95e35483a18ca8da04a48ff5d126a957b3 Description: multimedia framework from KF5 - null back-end (no real back-end) Multi-Arch: same Homepage: http://phonon.kde.org/ Description-md5: eb8bbd051802ea640014bdfd833cad83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: php-pear Priority: optional Section: php Installed-Size: 2233 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: all Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Replaces: php-xml-util, php4-pear (<< 4:4.4.0-0) Provides: php-xml-util Depends: php5-common (>= 5.5.9+dfsg-1ubuntu4), php5-cli Recommends: gnupg Suggests: php5-dev Conflicts: php-xml-util Filename: pool/main/p/php5/php-pear_5.5.9+dfsg-1ubuntu4_all.deb Size: 266940 MD5sum: cb245c31586ba382a87881f3b9a4bde4 SHA1: b7aa84a7739bc2dbef1c38c8d60422bdb1bc844a SHA256: ee6157875210b4e8fa0a1e1476059b8056a1559a8249f8868c0c9c774b9c516a Description: PEAR - PHP Extension and Application Repository Homepage: http://www.php.net/ Description-md5: fb29e10c43affc8e5f5fa8be5cd7a87b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5 Priority: optional Section: php Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: all Version: 5.5.9+dfsg-1ubuntu4 Depends: libapache2-mod-php5 (>= 5.5.9+dfsg-1ubuntu4) | libapache2-mod-php5filter (>= 5.5.9+dfsg-1ubuntu4) | php5-cgi (>= 5.5.9+dfsg-1ubuntu4) | php5-fpm (>= 5.5.9+dfsg-1ubuntu4), php5-common (>= 5.5.9+dfsg-1ubuntu4) Filename: pool/main/p/php5/php5_5.5.9+dfsg-1ubuntu4_all.deb Size: 1302 MD5sum: 0f902283d943afc32d87f77b965d2eb8 SHA1: f3e5bbfe4b42bebc251060ffebd99d504830e941 SHA256: e044516c0c879c8f51358704e5dd66044b133fb9e57d413c138a52e38753d10f Description: server-side, HTML-embedded scripting language (metapackage) Homepage: http://www.php.net/ Description-md5: 2af39c852a986c9d371da68ad88cdc6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-cgi Priority: optional Section: php Installed-Size: 17512 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libbz2-1.0, libc6 (>= 2.15), libdb5.3, libpcre3, libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.9.0), zlib1g (>= 1:1.2.3.4), mime-support, php5-common (= 5.5.9+dfsg-1ubuntu4), libmagic1, ucf, tzdata Suggests: php-pear Filename: pool/main/p/php5/php5-cgi_5.5.9+dfsg-1ubuntu4_i386.deb Size: 4261022 MD5sum: 499b5af829113ee0ab25087b69614cc4 SHA1: 0acd48e5cd3e5bd8ee69942f7889c120a2d1a6fa SHA256: 9045704f7c15c14d8216bd28850ea3971cc35df8ceb733c18d8896994fcd180a Description: server-side, HTML-embedded scripting language (CGI binary) Homepage: http://www.php.net/ Description-md5: 13d0c5e41630e5f041f0813f50d5d06f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-cli Priority: optional Section: php Installed-Size: 8813 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libbz2-1.0, libc6 (>= 2.15), libdb5.3, libpcre3, libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.9.0), zlib1g (>= 1:1.2.3.4), mime-support, php5-common (= 5.5.9+dfsg-1ubuntu4), libmagic1, ucf, tzdata, libedit2 (>= 2.11-20080614-4) Recommends: php5-readline Suggests: php-pear Filename: pool/main/p/php5/php5-cli_5.5.9+dfsg-1ubuntu4_i386.deb Size: 2156254 MD5sum: 2391404593ef7b3ebd198a12a0749e7a SHA1: 5f99e6a73e670e173619c6dd025fd5b303d1bdee SHA256: 257ea32391b1c0ec11d525d2f1e0a0a09770c680fa418826d91fe0468347db38 Description: command-line interpreter for the php5 scripting language Homepage: http://www.php.net/ Description-md5: f8450d3b28653dcf1a4615f3b1d4e347 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-common Priority: optional Section: php Installed-Size: 1103 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Provides: php5-mhash, phpapi-20121212+lfs Depends: libc6 (>= 2.4), sed (>= 4.1.1-1), psmisc (>= 22.15-1~), lsof, ucf, php5-json Suggests: php5-user-cache Conflicts: php5-mhash Breaks: php-apc (<< 4.0.0), php-crypt-gpg (<< 1.3.2), php5-json (<< 1.3.1-1~), php5-suhosin (<< 0.9.34), php5-xcache (<< 3.1~), php5-xdebug (<< 2.2.2) Filename: pool/main/p/php5/php5-common_5.5.9+dfsg-1ubuntu4_i386.deb Size: 439970 MD5sum: 7b06967bd1c0ba56f0824a944a9469b3 SHA1: a12f3504a5eb745cd4e4a87f8b9520278f27e298 SHA256: f09150ec327b606afd3992973fcce7669586e8c11e2da51b9cb182c6703906ef Description: Common files for packages built from the php5 source Homepage: http://www.php.net/ Description-md5: 949c39604ee9b19ceaf6491574a70811 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-curl Priority: optional Section: php Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libcurl3 (>= 7.18.0), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-curl_5.5.9+dfsg-1ubuntu4_i386.deb Size: 26654 MD5sum: 57707c462b7fe2e213439018bb4249cc SHA1: 30183b91c829dc15774a624af577493e02993a86 SHA256: f380e12428a054878351e24ba5beb13a4d9ce6bb72ac241455e3b00ec67c16db Description: CURL module for php5 Homepage: http://www.php.net/ Description-md5: b9650938a7c70d884c950952073ec28e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-dbg Priority: extra Section: debug Installed-Size: 116380 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: php5-common (= 5.5.9+dfsg-1ubuntu4), libapache2-mod-php5 (= 5.5.9+dfsg-1ubuntu4) | libapache2-mod-php5filter (= 5.5.9+dfsg-1ubuntu4) | php5-cgi (= 5.5.9+dfsg-1ubuntu4) | php5-cli (= 5.5.9+dfsg-1ubuntu4) | php5-fpm (= 5.5.9+dfsg-1ubuntu4) | php5-curl (= 5.5.9+dfsg-1ubuntu4) | php5-enchant (= 5.5.9+dfsg-1ubuntu4) | php5-gd (= 5.5.9+dfsg-1ubuntu4) | php5-gmp (= 5.5.9+dfsg-1ubuntu4) | php5-intl (= 5.5.9+dfsg-1ubuntu4) | php5-ldap (= 5.5.9+dfsg-1ubuntu4) | php5-mysql (= 5.5.9+dfsg-1ubuntu4) | php5-odbc (= 5.5.9+dfsg-1ubuntu4) | php5-pgsql (= 5.5.9+dfsg-1ubuntu4) | php5-pspell (= 5.5.9+dfsg-1ubuntu4) | php5-readline (= 5.5.9+dfsg-1ubuntu4) | php5-recode (= 5.5.9+dfsg-1ubuntu4) | php5-snmp (= 5.5.9+dfsg-1ubuntu4) | php5-sqlite (= 5.5.9+dfsg-1ubuntu4) | php5-sybase (= 5.5.9+dfsg-1ubuntu4) | php5-tidy (= 5.5.9+dfsg-1ubuntu4) | php5-xmlrpc (= 5.5.9+dfsg-1ubuntu4) | php5-xsl (= 5.5.9+dfsg-1ubuntu4) Recommends: gdb Filename: pool/main/p/php5/php5-dbg_5.5.9+dfsg-1ubuntu4_i386.deb Size: 29224324 MD5sum: eb769a107987d1faef3a4dcdf7b3a3c0 SHA1: ba25d1d45b288a165d54c7def4a36100808ca533 SHA256: 3fcc56cf6ef76020d0daaf05584ae835787bf97cf10c368f70ff3b97599f20ae Description: Debug symbols for PHP5 Homepage: http://www.php.net/ Description-md5: 9c846a487d56db69555b9a0b6f23316b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: php5-dev Priority: optional Section: php Installed-Size: 3655 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Provides: dh-php5 Depends: autoconf (>= 2.63), automake (>= 1.11), libssl-dev, libtool (>= 2.2), shtool, php5-common (>= 5.5.9+dfsg-1ubuntu4), perl Recommends: pkg-php-tools Conflicts: libtool (<< 2.2) Filename: pool/main/p/php5/php5-dev_5.5.9+dfsg-1ubuntu4_i386.deb Size: 357080 MD5sum: 2b8665b3848e6dbfbf7f60f9b15a338b SHA1: 3adc577d83c40279f1a0e3b943d5707f2c5ae6d3 SHA256: 29470affc246f247e94523cd779f5778ab05b78067a3c9ec8382c570f6e67ff6 Description: Files for PHP5 module development Homepage: http://www.php.net/ Description-md5: f679c9165e9f710f208143f95427a8c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: php5-gd Priority: optional Section: php Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libgd3 (>= 2.1.0~alpha~), libxpm4, phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-gd_5.5.9+dfsg-1ubuntu4_i386.deb Size: 26210 MD5sum: 9ca7ca592b5fae5acaaaeb70081cbf90 SHA1: 249d20e55d9c6da108a0f882be362e4d6093bd6a SHA256: dd9ef2cd3fcfa0c06050320dd19a81b5de646ccddadf616503a89594e8c52584 Description: GD module for php5 Homepage: http://www.php.net/ Description-md5: 8589696941eddf5936d927aa77051a52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-gmp Priority: optional Section: php Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.1.3), libgmp10, phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-gmp_5.5.9+dfsg-1ubuntu4_i386.deb Size: 13934 MD5sum: 298720185c47dc53100da5b6bbe89bf2 SHA1: ae92ea9cce45716942d1cb1d8f668a5bdf3ec18b SHA256: 76900a6d6e8588ebabed218ec954b9a28e62b1c1a049ea49feb1f786af672620 Description: GMP module for php5 Homepage: http://www.php.net/ Description-md5: 098c157a536726435e541b2e7e6b4842 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-json Priority: optional Section: php Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php-json Version: 1.3.2-2build1 Replaces: php5-dev (<< 5.5.0~rc1+dfsg-1~) Depends: libc6 (>= 2.8), phpapi-20121212+lfs, ucf, libjson-c2 (>= 0.11-3~) Breaks: php5-common (<< 5.5.0~rc1+dfsg-1~), php5-dev (<< 5.5.0~rc1+dfsg-1~) Filename: pool/main/p/php-json/php5-json_1.3.2-2build1_i386.deb Size: 34222 MD5sum: b8471ded86cd8ba56a4e653553ccbbec SHA1: e8387d9f880f65bb459ad38962807a3419cade6a SHA256: f66c2fc8dec9210f0908a4082338080bfa45652e3cca11aafcdce4be30255b7d Description: JSON module for php5 Homepage: http://pecl.php.net/package/jsonc Description-md5: 97f1a74de9875aa65435fb0690a811f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-ldap Priority: optional Section: php Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libldap-2.4-2 (>= 2.4.7), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-ldap_5.5.9+dfsg-1ubuntu4_i386.deb Size: 18058 MD5sum: e9e1a7bfbb32542f5364a8c1de751e2e SHA1: 2007e4622430f0efd0f58659c18327a81b88f2f4 SHA256: a23c59edc1398011d7b33bb013dd98bdbe5025972d5b58432453ef42ec859f96 Description: LDAP module for php5 Homepage: http://www.php.net/ Description-md5: 7a129352cbfe9a2162ee43d4c9040421 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-mysql Priority: optional Section: php Installed-Size: 258 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Replaces: php5-mysqli, php5-mysqlnd Depends: libc6 (>= 2.4), libmysqlclient18 (>= 5.5.24+dfsg-1), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Conflicts: php5-mysqli, php5-mysqlnd Filename: pool/main/p/php5/php5-mysql_5.5.9+dfsg-1ubuntu4_i386.deb Size: 59496 MD5sum: e903db36f1b865684c444a863dc39640 SHA1: 6858d280376947a37f94f31a7f59190bf14aa4e8 SHA256: 57e5ffd61e37d0287203307ed13c42f067c6359e7dd5a0f451c9db8b7db2c2fb Description: MySQL module for php5 Homepage: http://www.php.net/ Description-md5: afca88d575e544314d64eead5093c24f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-odbc Priority: optional Section: php Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libodbc1 (>= 2.2.11) | unixodbc (>= 2.2.11), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-odbc_5.5.9+dfsg-1ubuntu4_i386.deb Size: 29128 MD5sum: 78db5a22a37639e26f8a4ed3044fd4be SHA1: 961aeb74d8d8bfdde0bb00a20f445041bd0b0068 SHA256: 1d4cf10c98aed6b8dc5905d7dfaccbded73b6e06c87f8289294ab21a771824c7 Description: ODBC module for php5 Homepage: http://www.php.net/ Description-md5: bc0c148ebd27735418306b0207388a32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-pgsql Priority: optional Section: php Installed-Size: 204 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libpq5 (>= 9.0~), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-pgsql_5.5.9+dfsg-1ubuntu4_i386.deb Size: 48866 MD5sum: c0e4ecd4233dcfdc1492b3c7a983db3c SHA1: 20213eb25570ba8b8d64507016dbcf8f152c6db7 SHA256: 381cc232243e53088fd10b40bbd8f4dff7a7c5e8ae9d1036e743b82f0c656de7 Description: PostgreSQL module for php5 Homepage: http://www.php.net/ Description-md5: 25edec9b992444a2c1634b9545b31326 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-pspell Priority: optional Section: php Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libaspell15 (>= 0.60.7~20110707), libc6 (>= 2.4), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-pspell_5.5.9+dfsg-1ubuntu4_i386.deb Size: 7814 MD5sum: db2496d5da0ccbe7d70f3497503bf326 SHA1: 0464b205ae6d53176d944c9f91a0a0512ac8cf66 SHA256: 4fbc5e064bb4df9a39de10f059c64f57aff7a8ad13c1344acc88e1beea44a549 Description: pspell module for php5 Homepage: http://www.php.net/ Description-md5: 920445b3fae73cbd3fc8bdca6c8a5b57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-readline Priority: optional Section: php Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.1.3), libedit2 (>= 3.1-20130611), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), php5-cli (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-readline_5.5.9+dfsg-1ubuntu4_i386.deb Size: 11748 MD5sum: efaecf76b83d656d27620ea267ebb337 SHA1: ea1c8998acada81c989c7e73de4f368d64a4d45f SHA256: cbb1d7f06cab61d4b0fa1ca713a231a381aa348e677503ebef643192652f32e3 Description: Readline module for php5 Homepage: http://www.php.net/ Description-md5: 0b368ab71f01352c054255e56f42256b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lamp-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: php5-recode Priority: optional Section: php Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.1.3), librecode0 (>= 3.6), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-recode_5.5.9+dfsg-1ubuntu4_i386.deb Size: 5396 MD5sum: 4747fe73727828622d0d3293d5845aae SHA1: c53622b4ccfe00d46e82154af008d3a15ee82abc SHA256: b656275aee9eb68a22022be2c85f684ade7a67be6610969fa9ab289978fa9f2c Description: recode module for php5 Homepage: http://www.php.net/ Description-md5: 3c620a285d39cb761f43554f09fe43bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-snmp Priority: optional Section: php Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libsnmp30 (>= 5.7.2~dfsg), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-snmp_5.5.9+dfsg-1ubuntu4_i386.deb Size: 18278 MD5sum: 6088bdf07615ed9ac326219fb5d743ff SHA1: f639eee3f81655232280e5231dd785817e4f5478 SHA256: aaf2fd1439d1e0a0e96b18d3c5fa6beee60754eba5c661418567b757f19ce824 Description: SNMP module for php5 Homepage: http://www.php.net/ Description-md5: a6138315953520c05a90dc9ae2b17cd6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-sqlite Priority: optional Section: php Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libsqlite3-0 (>= 3.7.4), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Breaks: roundcube-sqlite (<< 0.7.1-2) Filename: pool/main/p/php5/php5-sqlite_5.5.9+dfsg-1ubuntu4_i386.deb Size: 23246 MD5sum: f645932f14a0f908588013f55d44bf62 SHA1: 1c978cba6c0e54382b3b12ed9c71437ae6b819ee SHA256: d1219c6449b2e14faec5cda8b8a9876c2d935f880d506832dc43b7469dbd234b Description: SQLite module for php5 Homepage: http://www.php.net/ Description-md5: 9f069c06a620edaef808bb366117fc0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-tidy Priority: optional Section: php Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.1.3), libtidy-0.99-0, phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-tidy_5.5.9+dfsg-1ubuntu4_i386.deb Size: 15598 MD5sum: 4acfb12f3bc54d7f772139e671601475 SHA1: 9f0736fae9570965b46f2a4277de77627f792553 SHA256: 7bab6f9fd8276b77ed28bec8bad9b8ec6913b49320700b1907b82907e9f46233 Description: tidy module for php5 Homepage: http://www.php.net/ Description-md5: f8668317f13f19a2ba384b4467355b14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-xmlrpc Priority: optional Section: php Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-xmlrpc_5.5.9+dfsg-1ubuntu4_i386.deb Size: 34654 MD5sum: d526104706cd6d1781c600b3d4fb976e SHA1: 078456976467f3f1b7331dd4afb6b2c50d33f98a SHA256: 92b82063a96bb1b0e0b9e64d12fbdf673968dd455483368b4d70e74f171c86dd Description: XML-RPC module for php5 Homepage: http://www.php.net/ Description-md5: 680850cbfd91309fdc1f668d316688fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: php5-xsl Priority: optional Section: php Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP Maintainers Architecture: i386 Source: php5 Version: 5.5.9+dfsg-1ubuntu4 Depends: libc6 (>= 2.4), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), phpapi-20121212+lfs, php5-common (= 5.5.9+dfsg-1ubuntu4), ucf Pre-Depends: dpkg (>= 1.15.7.2~) Filename: pool/main/p/php5/php5-xsl_5.5.9+dfsg-1ubuntu4_i386.deb Size: 13518 MD5sum: b3fcfa071a07cd5676dcb935a2ae521b SHA1: 4aeb7d13f333c7b7a61e3537d08ed39b8b47e1e8 SHA256: bb4aef1e4cc1c329daeb498edcbc797eeade8fba4babc51bd17458b3cc55c232 Description: XSL module for php5 Homepage: http://www.php.net/ Description-md5: c1111ccc98d65b3dc65dd1e88f4b7d9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pidgin Priority: optional Section: net Installed-Size: 2178 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: i386 Version: 1:2.10.9-0ubuntu3 Depends: pidgin-data (>= 1:2.10.9), pidgin-data (<< 1:2.10.9-z), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libcairo2 (>= 1.2.4), libdbus-1-3 (>= 1.0.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.35.9), libgstreamer0.10-0 (>= 0.10.0), libgtk2.0-0 (>= 2.24.0), libgtkspell0 (>= 2.0.10), libice6 (>= 1:1.0.0), libpango-1.0-0 (>= 1.18.0), libpurple0 (>= 1:2.8.0), libsm6, libx11-6, libxss1, gconf2 (>= 2.28.1-2), perl-base (>= 5.18.2-2ubuntu1), perlapi-5.18.2 Recommends: gstreamer0.10-plugins-base, gstreamer0.10-plugins-good, pidgin-libnotify Suggests: gnome-panel (>= 2.1) | kdebase-workspace-bin | docker, evolution-data-server (>= 1.10.0), libsqlite3-0 (>= 3.5.9) Filename: pool/main/p/pidgin/pidgin_2.10.9-0ubuntu3_i386.deb Size: 483838 MD5sum: 3fbeacd421fce04c0aef7f5c7a6ed02f SHA1: 3a9578953196223f16ed896b8810216959e66ddf SHA256: c6662bf2309da9e5328857162701e053cf8405f993dadf9f331aabea1cebd762 Description: graphical multi-protocol instant messaging client for X Homepage: http://www.pidgin.im Description-md5: d64460fa2943420736453e70937bbf30 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, lubuntu-desktop Package: pidgin-data Priority: optional Section: net Installed-Size: 3532 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: pidgin Version: 1:2.10.9-0ubuntu3 Replaces: pidgin-facebookchat (<< 1.69-2) Breaks: pidgin-facebookchat (<< 1.69-2) Filename: pool/main/p/pidgin/pidgin-data_2.10.9-0ubuntu3_all.deb Size: 1000366 MD5sum: 22c45f5ba399927b22e35ce5125ba34a SHA1: 3ff6dccd941d50fb385daa03d7cf85bde5eb652a SHA256: d9cdd1bf36b2210d16d2b2e29b1e17600961217b6b250178f16539815f4e01d0 Description: multi-protocol instant messaging client - data files Enhances: finch, libpurple0, pidgin Homepage: http://www.pidgin.im Description-md5: b04891790b198f3fe5e5df56c5acb3ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, lubuntu-desktop Package: pidgin-dbg Priority: extra Section: net Installed-Size: 17461 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: i386 Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: pidgin (= 1:2.10.9-0ubuntu3) | finch (= 1:2.10.9-0ubuntu3) | libpurple0 (= 1:2.10.9-0ubuntu3), pidgin-data (= 1:2.10.9-0ubuntu3) Filename: pool/main/p/pidgin/pidgin-dbg_2.10.9-0ubuntu3_i386.deb Size: 4847692 MD5sum: 28d30bf3fd1235fdcae163dc4b7d3d81 SHA1: e7f51fbaefffa4b20a8b9c70b9222beca2106fe7 SHA256: d5c460040d08ddb218d4a0343d52feb6b148012cdc2186f5bc53d155f4add999 Description: Debugging symbols for Pidgin Homepage: http://www.pidgin.im Description-md5: 15d3420aeefc0ac3b2345f312c94f6c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pidgin-dev Priority: optional Section: devel Installed-Size: 15485 Maintainer: Ubuntu Developers Original-Maintainer: Ari Pollak Architecture: all Source: pidgin Version: 1:2.10.9-0ubuntu3 Depends: pidgin (>= 1:2.10.9), pidgin (<< 1:2.10.9+1~), pkg-config, libpurple-dev, libgtk2.0-dev Suggests: doc-base Filename: pool/main/p/pidgin/pidgin-dev_2.10.9-0ubuntu3_all.deb Size: 1033360 MD5sum: 6dbb9768f97d48161be27edb534555d5 SHA1: a1ec3ff77b2c20a44331158f57be4ec9bf1a679c SHA256: e918178ef6c154d263841011c13404b5a82641bfa3c7cd341424bfec96a774fa Description: multi-protocol instant messaging client - development files Homepage: http://www.pidgin.im Description-md5: af83e0e901b4b7dc8524c8bb96a1c5d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pidgin-libnotify Priority: optional Section: net Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Varun Hiremath Architecture: i386 Version: 0.14-9ubuntu2 Depends: libc6 (>= 2.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.28.0), libgtk2.0-0 (>= 2.8.0), libmessaging-menu0 (>= 12.10.0), libnotify4 (>= 0.7.0), pidgin (<< 1:3.0), pidgin (>= 1:2.10) Filename: pool/main/p/pidgin-libnotify/pidgin-libnotify_0.14-9ubuntu2_i386.deb Size: 17142 MD5sum: d02684275eb57639600d816fb2ee0ead SHA1: f41fc608695d293194c2fa0eb9065ce4a2b6e82c SHA256: 6800ab5f59b36c59001a1c473673767ffd13b6760c27d504f96f2c91339f014e Description: display notification bubbles in pidgin Homepage: http://gaim-libnotify.sourceforge.net Description-md5: e0fba338759555ace16f4878daf83796 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop Package: pinentry-doc Priority: optional Section: utils Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: all Source: pinentry Version: 0.8.3-1ubuntu1 Suggests: pinentry-curses, pinentry-gtk2, pinentry-qt4 Filename: pool/main/p/pinentry/pinentry-doc_0.8.3-1ubuntu1_all.deb Size: 16510 MD5sum: 5cb40a485f1700e1235c5d37af0d5638 SHA1: ae7902c60e9616784d8b15486a762cd71d62a629 SHA256: db5ca229caf3a2a02deb1520681d88268cbf3917d6032b765bd96ccc8ad893e1 Description: documentation for pinentry packages Homepage: http://www.gnupg.org/aegypten/ Description-md5: 0434c9b9c7b30b4ad8103242894faa4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pinentry-gtk2 Priority: optional Section: utils Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Peter Eisentraut Architecture: i386 Source: pinentry Version: 0.8.3-1ubuntu1 Provides: pinentry, pinentry-x11 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.16.0), libgtk2.0-0 (>= 2.10.0), libncurses5 (>= 5.5-5~), libpango-1.0-0 (>= 1.14.0), libtinfo5 Suggests: pinentry-doc Filename: pool/main/p/pinentry/pinentry-gtk2_0.8.3-1ubuntu1_i386.deb Size: 43690 MD5sum: 71ff58d19bd651aa8bc6c248f8b32103 SHA1: c6bdba494077fca12da68a78717e6a2895c6bc43 SHA256: c281dc4cfb83387209e6d1deafdf71ac465eda6b061181c1c14898dd09018db5 Description: GTK+-2-based PIN or pass-phrase entry dialog for GnuPG Enhances: gnupg-agent Homepage: http://www.gnupg.org/aegypten/ Description-md5: bcccd74b65983a22e87d3cf912f42450 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pkg-config Priority: optional Section: devel Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: i386 Version: 0.26-1ubuntu4 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.16.0), libpopt0 (>= 1.14) Filename: pool/main/p/pkg-config/pkg-config_0.26-1ubuntu4_i386.deb Size: 40486 MD5sum: 2db11e083f75f725a9ae7820b73817c0 SHA1: 39f755c9369aefa9c40bdecf6b3fb2f9d438f0ff SHA256: e148188b95e188718d6ff53c2c2110ec8333a4b7f1eb36984822986d533f8b00 Description: manage compile and link flags for libraries Multi-Arch: foreign Homepage: http://pkg-config.freedesktop.org Description-md5: 5622d544b680cd37e49d3435959207a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: pkg-config-aarch64-linux-gnu Priority: optional Section: devel Installed-Size: 17 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-arm64-cross (0.4) Version: 4:4.8.2-1 Depends: pkg-config (>= 0.25-1.1ubuntu2) Filename: pool/main/g/gcc-defaults-arm64-cross/pkg-config-aarch64-linux-gnu_4.8.2-1_i386.deb Size: 1034 MD5sum: 06389437530740b2422788ea115ee6b4 SHA1: d83a158cdeaebcdf7e02eb5b1f3e0875eb95da82 SHA256: 12a0b4c3c613506fb2f9fc96e291d72a44b9aca795af2bac3b49d7b0fb854b7a Description: manage compile and link flags for libraries for arm64 architecture Description-md5: 9ecb9d50ad023710b605df2c531efeb5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pkg-config-arm-linux-gnueabihf Priority: optional Section: devel Installed-Size: 17 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-armhf-cross (1.16) Version: 4:4.8.2-1 Depends: pkg-config (>= 0.25-1.1ubuntu2) Filename: pool/main/g/gcc-defaults-armhf-cross/pkg-config-arm-linux-gnueabihf_4.8.2-1_i386.deb Size: 1038 MD5sum: 6e280e448df1472a8775ece36f8a988c SHA1: b64b88fde63aaa99190bdaf5a8a2cde7ea6315fc SHA256: 66d059533a68499e8932ad2cfac5e1cc003796554d004ea148e38ca8b75f06ba Description: manage compile and link flags for libraries for armhf architecture Description-md5: b6862e5f57b7572bcaeeedccbc245cca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pkg-config-powerpc-linux-gnu Priority: optional Section: devel Installed-Size: 17 Maintainer: Ubuntu Developers Architecture: i386 Source: gcc-defaults-powerpc-cross (0.7) Version: 4:4.8.2-1 Depends: pkg-config (>= 0.25-1.1ubuntu2) Filename: pool/main/g/gcc-defaults-powerpc-cross/pkg-config-powerpc-linux-gnu_4.8.2-1_i386.deb Size: 998 MD5sum: e06a2f965fba7fb0a2a6d8048a012cec SHA1: 9545a8dcbdfb96d87824122a0bee35d030fa07b4 SHA256: 596854d1a8b50b1f1503fbd95648caf66cf3a50ee78b9b23a735feee92823db1 Description: manage compile and link flags for libraries for powerpc architecture Description-md5: 64005097e24ff53b6118ae16e358913c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pkg-config-powerpc64le-linux-gnu Priority: optional Section: devel Installed-Size: 17 Maintainer: Ubuntu Developers Original-Maintainer: Marcin Juszkiewicz Architecture: i386 Source: gcc-defaults-ppc64el-cross (0.2) Version: 4:4.8.2-1 Depends: pkg-config (>= 0.25-1.1ubuntu2) Filename: pool/main/g/gcc-defaults-ppc64el-cross/pkg-config-powerpc64le-linux-gnu_4.8.2-1_i386.deb Size: 1044 MD5sum: 7c3fd948a29932fe17cfd90dd2a8e845 SHA1: 0c6a85cb3a0fd29aa0c2e000090beee3b7882971 SHA256: 88b26b8a9cd2ce53ed476897c5e8effa1e866750e36737e5879063cad4c64422 Description: manage compile and link flags for libraries for ppc64el architecture Description-md5: 0637e8bad43ba9b118ab6c60f1963eeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pkg-create-dbgsym Priority: extra Section: devel Installed-Size: 60 Maintainer: Martin Pitt Architecture: all Version: 0.64 Filename: pool/main/p/pkg-create-dbgsym/pkg-create-dbgsym_0.64_all.deb Size: 7564 MD5sum: 830b1382bff6c92e229604945b14dc9d SHA1: 72435802e5e48816b7c948102ad56b54772abd60 SHA256: f99b8df6cceae1bceeea30de277dfc557adecc2b08fec8c24d49e8ae4adadacc Description: automatically build debug symbol ddeb packages Description-md5: af25019d5bc35773bc00f6ee233cea54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pkg-kde-tools Priority: extra Section: devel Installed-Size: 496 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Version: 0.15.12ubuntu1 Depends: perl, libdpkg-perl (>= 1.15.6~), python, docbook-to-man Recommends: dpkg-dev (>= 1.15.6~), libwww-perl, lintian Suggests: debhelper (>= 7.3.16), cdbs Breaks: dpkg-dev (<< 1.15.6~), kdelibs5-dev (<< 4:4.2.2) Filename: pool/main/p/pkg-kde-tools/pkg-kde-tools_0.15.12ubuntu1_all.deb Size: 96454 MD5sum: 72178f8ed836dac5f09dea7ac5fbbc8f SHA1: cddc566ba977a7668b1ae5ea7c7313b9ed413fb7 SHA256: 627de6239243fc458f254af324336633aeebd1f3ce3996e8864dc889e23c4a0a Description: various packaging tools and scripts for KDE Applications Multi-Arch: foreign Description-md5: 44a8f370c27342159273ca4a80210c3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: pkg-php-tools Priority: extra Section: php Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Debian PHP PEAR Maintainers Architecture: all Version: 1.11 Depends: php5-cli, php5-json, php-pear, debhelper Suggests: dh-make Filename: pool/main/p/pkg-php-tools/pkg-php-tools_1.11_all.deb Size: 21624 MD5sum: b13a025d0943a7bb3c48c29a6b2ef42c SHA1: e14b1679f931ffa5fcaa49d5092ddc44e8f513d4 SHA256: 98d0157e9f312cf5be854b215324d6dba0ce77d61124c8129fe9918ddda47b31 Description: various packaging tools and scripts for PHP packages Description-md5: 52934f8d5207e7453d19358ace64689e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pkgbinarymangler Priority: extra Section: devel Installed-Size: 103 Maintainer: Ubuntu Developers Architecture: all Version: 121 Depends: lockfile-progs, advancecomp, optipng Filename: pool/main/p/pkgbinarymangler/pkgbinarymangler_121_all.deb Size: 28390 MD5sum: 3f3c9fa347efc61562bf6f0234c91940 SHA1: 392eb6af237a83ed672efcc5999376c676ea73c9 SHA256: c4cabe4dd061acbaa4cba14894a55fcf78460edcc87d36912f5e2b626e68427e Description: strips translations and alters maintainers during build Description-md5: 160cf93e8071fea98eda367aac3b734d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: plainbox-provider-checkbox Priority: optional Section: utils Installed-Size: 2094 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: i386 Version: 0.4-1 Depends: libc6 (>= 2.17), plainbox-provider-resource-generic (>= 0.3), python (>= 2.7), python2.7, python3 Recommends: gir1.2-gst-plugins-base-1.0, gir1.2-gstreamer-1.0, gstreamer1.0-plugins-good, gstreamer1.0-pulseaudio, libgstreamer1.0-0, pm-utils, python3-apt, python3-dbus, python3-gi Suggests: bonnie++, bootchart, curl, ethtool, fwts, git-core, glmark2, glmark2-es2, hdparm, lshw, mesa-utils, nmap, obexd-client, obexftp, render-bench, smartmontools, sox, stress, sysstat, wmctrl Filename: pool/main/p/plainbox-provider-checkbox/plainbox-provider-checkbox_0.4-1_i386.deb Size: 1071574 MD5sum: d455e6a459de56444b2c3ff5ea8b60f5 SHA1: 0e854f55108e4d8330bf1b618049c566a324e762 SHA256: e51f6cd5e8292bd22fb23f491800aa2cd8d9660fc3b5bac12d512fd39d8891aa Description: CheckBox provider for PlainBox Homepage: http://launchpad.net/checkbox Description-md5: 41158e93beaa99db739ad8ce3590f2da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: plainbox-provider-resource-generic Priority: optional Section: utils Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: i386 Version: 0.3-1 Depends: libc6 (>= 2.3.4), libnl-3-200 (>= 3.2.7), libnl-genl-3-200 (>= 3.2.7), python3 (>= 3.2), python3-checkbox-support (>= 0.2) Recommends: dmidecode, dpkg (>= 1.13), lsb-release, wodim Filename: pool/main/p/plainbox-provider-resource-generic/plainbox-provider-resource-generic_0.3-1_i386.deb Size: 16792 MD5sum: 9ef4efae44c65f5714f6a2a1fa63791a SHA1: 4a297749adc56181e49e7033397f2fe9792d2e41 SHA256: 917f0da9d245d92258136d6b407944a1bfe37a3b0145864a556ef507fc65fbcd Description: CheckBox generic resource jobs provider Homepage: http://launchpad.net/checkbox Description-md5: 60ab19eb35a243b63835cb05edfb4b05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: plainbox-secure-policy Priority: optional Section: utils Installed-Size: 43 Maintainer: Zygmunt Krynicki Architecture: all Source: plainbox Version: 0.5.3-2 Replaces: plainbox-insecure-policy Conflicts: plainbox-insecure-policy Filename: pool/main/p/plainbox/plainbox-secure-policy_0.5.3-2_all.deb Size: 6846 MD5sum: 4904866d93cc5ad3aac14cbb278c5d41 SHA1: b097d68852eb590e70e3f8b996b4a1b28c2adea6 SHA256: c061ba61ff40e539153db2a4e1593db37025e3cd4ed598c680957541173544d2 Description: policykit policy required to use plainbox (secure version) Homepage: http://launchpad.net/checkbox Description-md5: 2095659d86953fc3b64eebbc928f176d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: plymouth Priority: required Section: x11 Installed-Size: 441 Maintainer: Ubuntu Developers Architecture: i386 Version: 0.8.8-0ubuntu17 Depends: initramfs-tools, libplymouth2 (= 0.8.8-0ubuntu17), mountall (>= 2.0), upstart (>= 1.11-0ubuntu3), udev (>= 166-0ubuntu4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.8), libdbus-1-3 (>= 1.1.1), libdrm2 (>= 2.4.25), libtinfo5 Recommends: plymouth-theme-ubuntu-text | plymouth-theme Conflicts: usplash Breaks: gdm (<< 3.0.4-0ubuntu11), kdm (<< 4:4.7.1-0ubuntu3), lightdm (<< 0.9.7-0ubuntu2), lubuntu-plymouth-theme (<= 0.4), lxdm (<< 0.4.1-0ubuntu2), ubuntustudio-plymouth-theme (<= 0.38), xubuntu-plymouth-theme (<< 10.04.4) Filename: pool/main/p/plymouth/plymouth_0.8.8-0ubuntu17_i386.deb Size: 98890 MD5sum: 2c1867ba46612b09a59d90b2d12e7f9b SHA1: 17c84a5b05d83751c498922644c8ec4e63752e2a SHA256: 00bd4aba88c15c101dcb653f59c6848db90c08bfb64d62afda38d8a126d55f40 Description: graphical boot animation and logger - main package Description-md5: 36dd6c0b2d2e2968eb795981d2b48521 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: plymouth-label Priority: optional Section: x11 Installed-Size: 65 Maintainer: Ubuntu Developers Architecture: i386 Source: plymouth Version: 0.8.8-0ubuntu17 Replaces: plymouth (<< 0.8.1-4) Depends: libplymouth2 (= 0.8.8-0ubuntu17), plymouth (= 0.8.8-0ubuntu17), fonts-dejavu-core, libc6 (>= 2.3.6-6~), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.12.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0) Filename: pool/main/p/plymouth/plymouth-label_0.8.8-0ubuntu17_i386.deb Size: 5176 MD5sum: e00cbcfb2efece8052659b6ac16e6c62 SHA1: ee4e57e8c083fa6f80088458ef9a441d6d221149 SHA256: 9f6ce2087958e2075a3d379657b0f7c2f98be52f84d4b9ef9855b21711ac5691 Description: graphical boot animation and logger - label control Description-md5: 5811f727790d0292c01a69a6fb2044fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: plymouth-theme-ubuntu-logo Priority: optional Section: x11 Installed-Size: 148 Maintainer: Ubuntu Developers Architecture: i386 Source: plymouth Version: 0.8.8-0ubuntu17 Replaces: plymouth (<< 0.8.1-1~) Provides: plymouth-theme Depends: plymouth, plymouth-label, ttf-ubuntu-font-family Filename: pool/main/p/plymouth/plymouth-theme-ubuntu-logo_0.8.8-0ubuntu17_i386.deb Size: 21284 MD5sum: bfa0d3c5a683666b0410905438abab1c SHA1: 2c4218b2f9e47887a0962351596b43e6a481def4 SHA256: 5cbc7b97613d9412e6b9085ab6b274ce69bfc08ac7f463ea5c93e33d8ec2b97c Description: graphical boot animation and logger - ubuntu-logo theme Description-md5: 8d874d448c1e27d2eef5a053231911ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: plymouth-theme-ubuntu-text Priority: standard Section: x11 Installed-Size: 83 Maintainer: Ubuntu Developers Architecture: i386 Source: plymouth Version: 0.8.8-0ubuntu17 Replaces: plymouth (<< 0.8.1-1~) Provides: plymouth-theme Depends: plymouth, libc6 (>= 2.1.3), libplymouth2 (>= 0.8.0~-13~ppa1) Filename: pool/main/p/plymouth/plymouth-theme-ubuntu-text_0.8.8-0ubuntu17_i386.deb Size: 7898 MD5sum: 0e792e002d36bf643c00cf2a906b47c4 SHA1: 724895e6ef535f52a1d673892278bac6465481a9 SHA256: 5149306420fd1a92cdaeabe5051e6bdaf215a4d42231b82622213bc37f59efd4 Description: graphical boot animation and logger - ubuntu-logo theme Description-md5: e64a5fbd685fee7e5864ea3986a54164 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: pm-utils Priority: optional Section: admin Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Tim Dijkstra Architecture: all Version: 1.4.1-13 Depends: powermgmt-base Recommends: vbetool, procps, hdparm, ethtool, kbd | console-tools Suggests: cpufrequtils, wireless-tools, radeontool Filename: pool/main/p/pm-utils/pm-utils_1.4.1-13_all.deb Size: 56736 MD5sum: 4e9a62b42106faad79ce67c526f14729 SHA1: b67c6a7f80bc04f7703347c843b6eb628f0f9ff2 SHA256: f38f6ab3bdf1b0ed060d2b4489f263606a5a5965398c350c4b6bc8903dd1cdc4 Description: utilities and scripts for power management Homepage: http://pm-utils.freedesktop.org/ Description-md5: 42424316f88158958d485e1987f2dff0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop Package: po-debconf Priority: optional Section: devel Installed-Size: 443 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas FRANCOIS (Nekral) Architecture: all Version: 1.0.16+nmu2ubuntu1 Depends: perl, gettext (>= 0.16), intltool-debian (>= 0.34.2+20060512) Recommends: libmail-sendmail-perl, libcompress-zlib-perl Suggests: libmail-box-perl Filename: pool/main/p/po-debconf/po-debconf_1.0.16+nmu2ubuntu1_all.deb Size: 210056 MD5sum: a5082456ae633b9efb4bc0f483039fad SHA1: 38187dae1b610b103274cf907ee63bfa75fd664b SHA256: c356db3623d76b472bcc268051abc4c491bb6f0eb6fe2e8c400a696678448e9b Description: tool for managing templates file translations with gettext Multi-Arch: foreign Description-md5: 9b8d8c3d86385b50bed63dfff0c588b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: po4a Priority: optional Section: text Installed-Size: 2680 Maintainer: Ubuntu Developers Original-Maintainer: Nicolas FRANCOIS (Nekral) Architecture: all Version: 0.45-1 Depends: perl, gettext, perl-modules, libsgmls-perl, sp Recommends: libtext-wrapi18n-perl, libterm-readkey-perl, liblocale-gettext-perl, libunicode-linebreak-perl Filename: pool/main/p/po4a/po4a_0.45-1_all.deb Size: 1293774 MD5sum: ab4921df2fee5616ad1654687ddc7f22 SHA1: 1c8fc8b14cc9bcfff40b1f17972f65a9d5a7e6d1 SHA256: 80c50b52dfcbd6dafcb287c44eb5d5da79c4f7e68583047ad780436941f576cc Description: tools for helping translation of documentation Multi-Arch: foreign Homepage: http://po4a.alioth.debian.org/ Description-md5: 18cf64e9c64d03d1bf574903bfa9ca89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: policykit-1 Priority: optional Section: admin Installed-Size: 384 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Version: 0.105-4ubuntu2 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libpam0g (>= 0.99.7.1), libpolkit-agent-1-0 (>= 0.105), libpolkit-backend-1-0 (>= 0.99), libpolkit-gobject-1-0 (>= 0.101), libpam-systemd, dbus Filename: pool/main/p/policykit-1/policykit-1_0.105-4ubuntu2_i386.deb Size: 50292 MD5sum: 5f14511438c9b4cff7670161e8907f42 SHA1: 222023c2d8ffcfd010b907b8b0cce8d972c65e56 SHA256: 7859768acb38f49fd364338bb8114012624950ee788e2af597815e5bf9f1c386 Description: framework for managing administrative policies and privileges Multi-Arch: foreign Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 233f6ea057dc90084c0e92b57d21a7a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: policykit-1-doc Priority: optional Section: doc Installed-Size: 1121 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: policykit-1 Version: 0.105-4ubuntu2 Suggests: devhelp Filename: pool/main/p/policykit-1/policykit-1-doc_0.105-4ubuntu2_all.deb Size: 254186 MD5sum: 1be85c3abd0af2141921cdb39e58a5af SHA1: 0aefdb412161783042d1aad81b4463d1806a8138 SHA256: 72a0bae8854e502a3e746496d8b041e35b6a5b4c3e0f3fa335537316b55f7b5e Description: documentation for PolicyKit-1 Homepage: http://hal.freedesktop.org/docs/PolicyKit/ Description-md5: 4f476c937cdfc4c2d7a4b81404d7a637 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: policykit-1-gnome Priority: optional Section: gnome Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Version: 0.105-1ubuntu4 Depends: libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.26.0), libgtk-3-0 (>= 3.0.0), libpolkit-agent-1-0 (>= 0.99), libpolkit-gobject-1-0 (>= 0.99), policykit-1 Filename: pool/main/p/policykit-1-gnome/policykit-1-gnome_0.105-1ubuntu4_i386.deb Size: 27448 MD5sum: 86cb56045a3b928d478f121b97fcca93 SHA1: cb2655f566722a6c779eb9b54d395c4fd3cb3884 SHA256: 8fbcf0cff212c654fa45bc883ed248c5919edf669b0711362c9d3925c455276c Description: GNOME authentication agent for PolicyKit-1 Homepage: http://hal.freedesktop.org/docs/PolicyKit-gnome/ Description-md5: bd3cad3c0320140c209bcfd25249cf38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: policykit-desktop-privileges Priority: optional Section: admin Installed-Size: 48 Maintainer: Ubuntu Core Developers Architecture: all Version: 0.17 Recommends: policykit-1 Breaks: gnome-settings-daemon (<< 3.6.4-0ubuntu8) Filename: pool/main/p/policykit-desktop-privileges/policykit-desktop-privileges_0.17_all.deb Size: 3608 MD5sum: 41392d7fd812b9349ebdcf4b93f09286 SHA1: a13fbc6ab4e1245b39a51a6177447ee2ed62733d SHA256: e1aaa56e77314ca2d6299300209d292b47492ec3e424adbbe2b5d69aadf02c67 Description: run common desktop actions without password Description-md5: 6e3460016ae1ccb86bf669462d180f6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: policyrcd-script-zg2 Priority: extra Section: admin Installed-Size: 64 Maintainer: Marc Haber Architecture: all Version: 0.1-2 Filename: pool/main/p/policyrcd-script-zg2/policyrcd-script-zg2_0.1-2_all.deb Size: 5204 MD5sum: 513d6d9ccb58c81f44c317ab226f0bd5 SHA1: 969acfe094955178d046b731fa71c4bfb4dad635 SHA256: 4cfd7c995defc04251206b0d9d4a358d9afcadb391f21ec53f2c7ac6d1270277 Description: policy-compliant interface from invoke-rc.d to local config files Description-md5: b8bbba679a71741ca48177c13074bc32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pollinate Priority: optional Section: admin Installed-Size: 78 Maintainer: Dustin Kirkland Architecture: all Version: 4.7-0ubuntu1 Replaces: anerd (<< 3.0), anerd-client (<< 3.0) Provides: anerd, anerd-client Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), run-one, curl, adduser Breaks: anerd (<< 3.0), anerd-client (<< 3.0) Filename: pool/main/p/pollinate/pollinate_4.7-0ubuntu1_all.deb Size: 12088 MD5sum: 65a2d6cfb01c714edd0d09c3f81e053b SHA1: f88eb4d54dbbf7e3873e109114abd39fa50b2cf0 SHA256: c94a69f05498e2c326a42feda00618ad2f7e2db1218692b456b20577bd386017 Description: seed the pseudo random number generator in virtual machines Homepage: http://launchpad.net/pollinate Description-md5: 619fe025a36281447928274161eebc64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Task: cloud-image Package: poppler-data Priority: optional Section: misc Installed-Size: 11849 Maintainer: Ubuntu Developers Original-Maintainer: Hideki Yamane Architecture: all Version: 0.4.6-4 Replaces: cmap-adobe-cns1 (<= 0+20090930-2), cmap-adobe-gb1 (<= 0+20090930-2), cmap-adobe-japan1 (<= 0+20090930-2), cmap-adobe-japan2 (<= 0+20090930-2), cmap-adobe-korea1 (<= 1.20100103-3), gs-cjk-resource (<= 1.20100103-3) Provides: cmap-adobe-cns1, cmap-adobe-gb1, cmap-adobe-japan1, cmap-adobe-japan2, cmap-adobe-korea1, gs-cjk-resource Pre-Depends: dpkg (>= 1.15.6~) Suggests: poppler-utils, ghostscript, fonts-japanese-mincho | fonts-ipafont-mincho, fonts-japanese-gothic | fonts-ipafont-gothic, fonts-arphic-ukai, fonts-arphic-uming, fonts-unfonts-core Breaks: cmap-adobe-cns1 (<= 0+20090930-2), cmap-adobe-gb1 (<= 0+20090930-2), cmap-adobe-japan1 (<= 0+20090930-2), cmap-adobe-japan2 (<= 0+20090930-2), cmap-adobe-korea1 (<= 1.20100103-3), gs-aladdin (<= 6.50-5), gs-cjk-resource (<= 1.20100103-3) Filename: pool/main/p/poppler-data/poppler-data_0.4.6-4_all.deb Size: 1478566 MD5sum: 644278ef2ae747ab61420c71a3319dc7 SHA1: 800a7497f99d5844f7576d761aa799a4de5f217b SHA256: 27ff3d8ec10e0f4cbe2c647df96e84f35b8e425e5359c1b2bc916ab51871d0b7 Description: encoding data for the poppler PDF rendering library Enhances: ghostscript Homepage: http://poppler.freedesktop.org/ Description-md5: c0468b9f159bd70603616f54d37b1bf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: poppler-dbg Priority: extra Section: debug Installed-Size: 7630 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Depends: libpoppler44 (= 0.24.5-2ubuntu4) Filename: pool/main/p/poppler/poppler-dbg_0.24.5-2ubuntu4_i386.deb Size: 7101622 MD5sum: d6a6fc44cc2da702b212c6c7587fbf53 SHA1: 18fc0c0d59e95f2066fbe5db1d0b270ae59ff32a SHA256: bedd6d2723956d7f9ccc47806fce3bfad7652ba430e4e663c9844b5c9e0f1879 Description: PDF rendering library -- debugging symbols Multi-Arch: same Homepage: http://poppler.freedesktop.org/ Description-md5: ab22a1743f8f5dc1f00b9db139334fe2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: poppler-utils Priority: optional Section: utils Installed-Size: 432 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: poppler Version: 0.24.5-2ubuntu4 Replaces: pdftohtml, xpdf-reader, xpdf-utils (<< 3.02-2~) Provides: pdftohtml, xpdf-utils Depends: libc6 (>= 2.4), libcairo2 (>= 1.12.0), libfreetype6 (>= 2.2.1), libgcc1 (>= 1:4.1.1), liblcms2-2 (>= 2.2+git20110628), libpoppler44 (>= 0.24.5), libstdc++6 (>= 4.1.1) Conflicts: pdftohtml Breaks: xpdf-utils (<< 3.02-2~) Filename: pool/main/p/poppler/poppler-utils_0.24.5-2ubuntu4_i386.deb Size: 114094 MD5sum: bc4b705f1df7fb49ebdc11f808d265af SHA1: fafc327a75b0c7a7b6ce56740baeb3348ee64120 SHA256: 1d46ca88f4253d2ac67cf9738ea02b1b3e309fecb0fc046406faa8350384a986 Description: PDF utilities (based on Poppler) Multi-Arch: foreign Homepage: http://poppler.freedesktop.org/ Description-md5: 5fb5e8ca35857f2fe9d6a276fa940e24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: popularity-contest Priority: standard Section: misc Installed-Size: 130 Maintainer: Ubuntu Developers Original-Maintainer: Popularity Contest Developers Architecture: all Version: 1.57ubuntu1 Provides: popcon Depends: debconf (>= 0.5) | debconf-2.0, dpkg (>= 1.10) Pre-Depends: debconf (>= 1.5.34) | cdebconf (>= 0.106) Recommends: cron | fcron Suggests: anacron Filename: pool/main/p/popularity-contest/popularity-contest_1.57ubuntu1_all.deb Size: 31514 MD5sum: defbfa7b6c0e8cb560bac0bf5640ad45 SHA1: 3729f60fa04b7b3b7104471e50522a626e48fa26 SHA256: 0d125cffe459ad4962aee0bd1a90e22f75baf7a5286d1a17bae391a3e86e4aae Description: Vote for your favourite packages automatically Homepage: http://popcon.debian.org/ Description-md5: eb9d38f93e5a2c4d39973b8d4a8110dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: portaudio19-dev Priority: optional Section: devel Installed-Size: 486 Maintainer: Ubuntu Developers Original-Maintainer: Debian VoIP Team Architecture: i386 Source: portaudio19 Version: 19+svn20140130-1 Replaces: libportaudio-19-dev, libportaudio19-dev Depends: libasound2-dev, libjack-dev, libportaudio2 (= 19+svn20140130-1), libportaudiocpp0 (= 19+svn20140130-1) Suggests: portaudio19-doc Conflicts: libportaudio-19-dev, libportaudio-dev, libportaudio19-dev Filename: pool/main/p/portaudio19/portaudio19-dev_19+svn20140130-1_i386.deb Size: 97274 MD5sum: ff195f687c0810ecbbebf78932c84310 SHA1: d20ce09bcf10ea1ae7fe8f5f3e1ca5712f04af81 SHA256: adb74129052ddf22178b94d47dc838bb9235e739e984a1511421aad212877638 Description: Portable audio I/O - development files Homepage: http://www.portaudio.com/ Description-md5: 040df2bde13015a2b8b419ac2975c974 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: portaudio19-doc Priority: optional Section: doc Installed-Size: 2690 Maintainer: Ubuntu Developers Original-Maintainer: Debian VoIP Team Architecture: all Source: portaudio19 Version: 19+svn20140130-1 Filename: pool/main/p/portaudio19/portaudio19-doc_19+svn20140130-1_all.deb Size: 211234 MD5sum: e13161a477e4b03445d4ebca195bbea4 SHA1: 6017e83d8fbe52e5609a037b4e1b15874bcaf7f2 SHA256: f37ac480db26e44332466d3fa5277b085a835a23ea537cea18fe381b145f44e2 Description: Portable audio I/O - documentation Homepage: http://www.portaudio.com/ Description-md5: 75f3491c545fe83bd2d291a84a8851e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postfix Priority: optional Section: mail Installed-Size: 3282 Maintainer: LaMont Jones Architecture: i386 Version: 2.11.0-1 Replaces: mail-transport-agent Provides: default-mta, mail-transport-agent Depends: libc6 (>= 2.11), libdb5.3, libsasl2-2 (>= 2.1.24), libsqlite3-0 (>= 3.5.9), libssl1.0.0 (>= 1.0.0), debconf (>= 0.5) | debconf-2.0, netbase, adduser (>= 3.48), dpkg (>= 1.8.3), lsb-base (>= 3.0-6), ssl-cert, cpio Recommends: python Suggests: procmail, postfix-mysql, postfix-pgsql, postfix-ldap, postfix-pcre, sasl2-bin, libsasl2-modules, dovecot-common, resolvconf, postfix-cdb, mail-reader, ufw, postfix-doc Conflicts: libnss-db (<< 2.2-3), mail-transport-agent, smail Filename: pool/main/p/postfix/postfix_2.11.0-1_i386.deb Size: 1046748 MD5sum: 2cfbe427509a26cb891c8d3bc64c5452 SHA1: 30f637ffb5e6d4e5c39d23a3514e63dfc3ce3799 SHA256: 82de74795a6d9e3a7c3c5bbf635e66b4fa89ad2c28e423c57b6d435672b7f8fb Description: High-performance mail transport agent Homepage: http://www.postfix.org Description-md5: 98656fbf1bb45b53edd367037a2e5a90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: postfix-cdb Priority: extra Section: mail Installed-Size: 95 Maintainer: LaMont Jones Architecture: i386 Source: postfix Version: 2.11.0-1 Depends: libc6 (>= 2.1.3), libcdb1, postfix (= 2.11.0-1) Filename: pool/main/p/postfix/postfix-cdb_2.11.0-1_i386.deb Size: 11186 MD5sum: 2fd4003406d644066f988cccbff0ddf3 SHA1: 72e621b783c1ebb07199afb83c5835476325c687 SHA256: 4b4f53c7972186f4cf595570a2dde4382a823e6b46c3ebc0003ff8c9f6153f28 Description: CDB map support for Postfix Homepage: http://www.postfix.org Description-md5: e2d7cf0a3c214f6a9735e5ad7671b55e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postfix-dev Priority: optional Section: devel Installed-Size: 594 Maintainer: LaMont Jones Architecture: all Source: postfix Version: 2.11.0-1 Depends: postfix (>= 2.11.0-0), postfix (<< 2.11.0.0-0) Filename: pool/main/p/postfix/postfix-dev_2.11.0-1_all.deb Size: 108308 MD5sum: d80490b47381c704d698505fde410fca SHA1: 28f9eb5b4e89babb7678c4a01d7a1fda12518618 SHA256: 899f9968a4909b75733420eabac25909088a4ced0da50ca9e5bd8e1abf10d294 Description: Loadable modules development environment for Postfix Homepage: http://www.postfix.org Description-md5: 3ce15e768569a4a3db928967e04ab817 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postfix-doc Priority: optional Section: doc Installed-Size: 3470 Maintainer: LaMont Jones Architecture: all Source: postfix Version: 2.11.0-1 Suggests: postfix Filename: pool/main/p/postfix/postfix-doc_2.11.0-1_all.deb Size: 817666 MD5sum: 83552d4282292afdf25248eff22fd5cb SHA1: 67da55735cff042335073ee4feed2ebab80a51b9 SHA256: b8bce787083ddd9676e0bf6f62463111355c25889f5277020fe3d68b46589e54 Description: Documentation for Postfix Homepage: http://www.postfix.org Description-md5: b22cfd4a338576617daa68c3d8c6c80a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postfix-ldap Priority: optional Section: mail Installed-Size: 115 Maintainer: LaMont Jones Architecture: i386 Source: postfix Version: 2.11.0-1 Depends: libc6 (>= 2.11), libldap-2.4-2 (>= 2.4.7), postfix (= 2.11.0-1) Filename: pool/main/p/postfix/postfix-ldap_2.11.0-1_i386.deb Size: 17890 MD5sum: 7fa9ae5c567b1775b66aee48fbc1a805 SHA1: e5293f6ab7b8dcba64a6b5acb216d8c8759d47cc SHA256: 1749215fa781f824f50dab00296be16edeb33d4c4eabfc61b40806da8f210478 Description: LDAP map support for Postfix Homepage: http://www.postfix.org Description-md5: 6275ddb745f2250c57cc85063f27fcc4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postfix-mysql Priority: optional Section: mail Installed-Size: 98 Maintainer: LaMont Jones Architecture: i386 Source: postfix Version: 2.11.0-1 Depends: libc6 (>= 2.1.3), libmysqlclient18 (>= 5.5.13-1), postfix (= 2.11.0-1) Filename: pool/main/p/postfix/postfix-mysql_2.11.0-1_i386.deb Size: 12988 MD5sum: 8c9455bf09bd3937df2c4169f5de2a80 SHA1: 96911de3fda64544ef42215c5b9fb4ebb12c0579 SHA256: ee4d90a3cb1f8afec3abf630c4f02ee05b3f107b18e79fba9b63ce6b73028a31 Description: MySQL map support for Postfix Homepage: http://www.postfix.org Description-md5: 28696ca88c5183ab5144174d86f2c973 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postfix-pcre Priority: optional Section: mail Installed-Size: 98 Maintainer: LaMont Jones Architecture: i386 Source: postfix Version: 2.11.0-1 Depends: libc6 (>= 2.3), libpcre3, postfix (= 2.11.0-1) Filename: pool/main/p/postfix/postfix-pcre_2.11.0-1_i386.deb Size: 12856 MD5sum: 6d86a2e172e7e595b6ae303705e4760c SHA1: 2017ad998049444876856b67e9fc2b75feac0205 SHA256: affa556d9775d40776c0cd37862ea0ec4921ed67030e99e773ee84626fcb1e94 Description: PCRE map support for Postfix Homepage: http://www.postfix.org Description-md5: 303555b1e86bf9cee974968dfd625a29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postfix-pgsql Priority: optional Section: mail Installed-Size: 98 Maintainer: LaMont Jones Architecture: i386 Source: postfix Version: 2.11.0-1 Depends: libc6 (>= 2.1.3), libpq5, postfix (= 2.11.0-1) Filename: pool/main/p/postfix/postfix-pgsql_2.11.0-1_i386.deb Size: 12812 MD5sum: 6607605bce31572971e6db3f33e2a1cc SHA1: 04d10d6a52bcb55049e3e3b93f85d8fde671c7de SHA256: efd6a260c1ce1f5a25f6f7949ed63036f0827f2873655ad370f4fcb6b4a7a130 Description: PostgreSQL map support for Postfix Homepage: http://www.postfix.org Description-md5: 546205f4e5c0c34da8348a5a0f8dfa40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: postgresql Priority: optional Section: database Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-common (154) Version: 9.3+154 Depends: postgresql-9.3 Filename: pool/main/p/postgresql-common/postgresql_9.3+154_all.deb Size: 5088 MD5sum: 029b8a2af293670f1fa7ce10443b6f37 SHA1: cfe4345b4c1babf8f892bba02311520586f13fad SHA256: 6186663b8118cb3ada88a421654091f8c5813317545005e2066068b9eb98806c Description: object-relational SQL database (supported version) Description-md5: bdff2d6e5b2a1dd00e72b3ed8729d9ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-9.3 Priority: optional Section: database Installed-Size: 11304 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Version: 9.3.4-1 Depends: libc6 (>= 2.16), libcomerr2 (>= 1.01), libgssapi-krb5-2 (>= 1.8+dfsg), libkrb5-3 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7), libpam0g (>= 0.99.7.1), libpq5 (>= 9.1~), libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.7.4), postgresql-client-9.3, postgresql-common (>= 142~), tzdata, ssl-cert, locales Suggests: oidentd | ident-server, locales-all Filename: pool/main/p/postgresql-9.3/postgresql-9.3_9.3.4-1_i386.deb Size: 2589944 MD5sum: ba82d3874c0c45d3aeeae764dc8697a8 SHA1: 196857f4cd4de05cc036713971c30cbb8c443d36 SHA256: fbdc4bd5706e8139edc962213e7435d5b1fa1ca166da736e126a0e3ea7cf74d3 Description: object-relational SQL database, version 9.3 server Homepage: http://www.postgresql.org/ Description-md5: deabe9d549f40ded88f4bd0d96713011 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-9.3-dbg Priority: extra Section: debug Installed-Size: 25969 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Replaces: postgresql-9.1-dbg Provides: postgresql-dbg Depends: postgresql-9.3 (= 9.3.4-1) Conflicts: postgresql-9.1-dbg, postgresql-dbg Filename: pool/main/p/postgresql-9.3/postgresql-9.3-dbg_9.3.4-1_i386.deb Size: 6842166 MD5sum: 82d430edb6834ab8696666ecb446d0e8 SHA1: d4c286fdecadb4178725c64ad4514c7b71ba61f8 SHA256: 5427cd31cc2b317de2f003692f0c8e6e94a8c97837fc279e16b4c70516c9f5b1 Description: debug symbols for postgresql-9.3 Homepage: http://www.postgresql.org/ Description-md5: c7ffcf2834092439d79521518e56b8d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postgresql-client Priority: optional Section: database Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-common (154) Version: 9.3+154 Depends: postgresql-client-9.3 Filename: pool/main/p/postgresql-common/postgresql-client_9.3+154_all.deb Size: 5098 MD5sum: 81d6b9a83e8ec62842c63b1815fa3d07 SHA1: 6fc9aa35628caec24f71699f42e8397f7c0f9b2f SHA256: 3d84cbd194211f440a719e9c90e7e1124a42d2e131ed3d6651a363dadc716959 Description: front-end programs for PostgreSQL (supported version) Description-md5: d46431edbfde0d6360f2c20aed4a288c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-client-9.3 Priority: optional Section: database Installed-Size: 2632 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Provides: postgresql-client Depends: libc6 (>= 2.15), libedit2 (>= 2.11-20080614), libpq5 (>= 9.3.4), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.2.3.3), postgresql-client-common (>= 142~) Suggests: postgresql-9.3, postgresql-doc-9.3 Filename: pool/main/p/postgresql-9.3/postgresql-client-9.3_9.3.4-1_i386.deb Size: 761528 MD5sum: 7c4a0d6e50e6e78f5c964496aa9ac4a0 SHA1: 3eb8f1069a008644958a42767ea6d028cb202eda SHA256: 966cea86da4a3810a3f9c01ee232459afadd189967415615a69b718cf192083e Description: front-end programs for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: 357e9ca1f432bb1f1b37a82d8c02a64f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-client-common Priority: optional Section: misc Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-common Version: 154 Depends: netbase Recommends: lsb-release, libreadline6 Filename: pool/main/p/postgresql-common/postgresql-client-common_154_all.deb Size: 25422 MD5sum: 7d5470895bb2c848d08e540fb350e5a7 SHA1: 33f6b984a63681d30d358fcb3055a49f78477aa7 SHA256: 84963e9e2d9a7a38a23741dac9f65200c7a85b1d47c782fb3d2765549c6a115d Description: manager for multiple PostgreSQL client versions Description-md5: d5f4a87e9a06590d824a9f706fa1a755 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-common Priority: optional Section: misc Installed-Size: 501 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Version: 154 Depends: postgresql-client-common (>= 154), procps, adduser, debconf (>= 0.5.00) | debconf-2.0, lsb-base (>= 3.0-3), ssl-cert (>= 1.0.11), ucf Recommends: logrotate Conflicts: postgresql-7.4, postgresql-8.0 Breaks: postgresql-9.1 (<< 9.1.1-3~) Filename: pool/main/p/postgresql-common/postgresql-common_154_all.deb Size: 102998 MD5sum: fbd90eb111566da6db61c4d765f2cb69 SHA1: 12b53993404cbf34bc94d5214c3801133194d032 SHA256: 09eebc757a2408b687111a485cac6dcd4032e54f339d1c2226d404fbc3614a92 Description: PostgreSQL database-cluster manager Description-md5: 2ff706688fd9595185205e23f67362dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-contrib Priority: optional Section: database Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-common (154) Version: 9.3+154 Depends: postgresql-contrib-9.3 Filename: pool/main/p/postgresql-common/postgresql-contrib_9.3+154_all.deb Size: 5106 MD5sum: 0a593f6fb47684244a4f9b8f57762e9e SHA1: db7ce7ebc038f9285900d3d839eb9c13f2df1159 SHA256: 1a225b08195d5cddd6251ac6d1797c13ebffcbf534efa8443e79d5e87afb1057 Description: additional facilities for PostgreSQL (supported version) Description-md5: 1548dd7748148521c6b13b8290f451b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-contrib-9.3 Priority: optional Section: database Installed-Size: 1669 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Depends: postgresql-9.3 (= 9.3.4-1), libc6 (>= 2.15), libossp-uuid16, libpq5 (>= 9.2~beta3), libssl1.0.0 (>= 1.0.0), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), zlib1g (>= 1:1.1.4) Suggests: libdbd-pg-perl Filename: pool/main/p/postgresql-9.3/postgresql-contrib-9.3_9.3.4-1_i386.deb Size: 391620 MD5sum: 4cf5c95d9f7e91779af292fbf453563e SHA1: 50f94fff08293a232ea1c76c604c9cc1b61add3b SHA256: 2a5243468647e728154cd06c860ee3385d6760f552dda35ee4fbaecf5fe7c93d Description: additional facilities for PostgreSQL Homepage: http://www.postgresql.org/ Description-md5: d1debd6819af16af99667f0a2422063b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-doc Priority: optional Section: doc Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-common (154) Version: 9.3+154 Depends: postgresql-doc-9.3 Filename: pool/main/p/postgresql-common/postgresql-doc_9.3+154_all.deb Size: 5094 MD5sum: 0552e3ebe7a2a8b10b795fd5cff9b37d SHA1: aa6dd0499523817a105112f02010c33eda17a961 SHA256: f840f3953d448c1ebbf4144c841743ff452e653a69aea6fbcca358997e865859 Description: documentation for the PostgreSQL database management system Description-md5: 065f6c25df2011c353e26faea6c8ad7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-doc-9.3 Priority: optional Section: doc Installed-Size: 12822 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: all Source: postgresql-9.3 Version: 9.3.4-1 Filename: pool/main/p/postgresql-9.3/postgresql-doc-9.3_9.3.4-1_all.deb Size: 1743866 MD5sum: 871f6d11672f93bb400952b9a8222c73 SHA1: 0d6f80de8fb8c1042a20d6672288ffa361d8a2ff SHA256: 9fc5f718d1976ebcb1893488dd08e4bc33714bc84ebe924338dd739c2b643ea2 Description: documentation for the PostgreSQL database management system Homepage: http://www.postgresql.org/ Description-md5: 3b65aa40e5bc5c0818c5083f824d87a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: postgresql-server Package: postgresql-plperl-9.3 Priority: optional Section: database Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Provides: postgresql-plperl Depends: libc6 (>= 2.4), libperl5.18 (>= 5.18.2), postgresql-9.3 (= 9.3.4-1), perl Filename: pool/main/p/postgresql-9.3/postgresql-plperl-9.3_9.3.4-1_i386.deb Size: 36606 MD5sum: f87fcd18726a0c65d6f6a1f070e3b74a SHA1: 3759985d312b0e93bdff4dba372e26af0d5f13f3 SHA256: 6a8e5f93a076a3cd70b442ce6415ef7fc9ff2b0acdc444023a09dfa7af680e77 Description: PL/Perl procedural language for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: 89920a39bb2853f036a843b65578f187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postgresql-plpython-9.3 Priority: optional Section: database Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Provides: postgresql-plpython Depends: libc6 (>= 2.4), libpython2.7 (>= 2.7), postgresql-9.3 (= 9.3.4-1) Filename: pool/main/p/postgresql-9.3/postgresql-plpython-9.3_9.3.4-1_i386.deb Size: 36660 MD5sum: a8f16a8dae7c487b6d3ccef039f8951c SHA1: d9841fe1185119e461285f03b60ccdd7e11c57ac SHA256: 6e1b3e5375d8db1ed65d268d2b42d9ab7efeda14054d10d13f89726ff3324c68 Description: PL/Python procedural language for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: 6c30e5745966ed6016f738bc3f720e21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postgresql-plpython3-9.3 Priority: optional Section: database Installed-Size: 166 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Replaces: postgresql-plpython-9.3 (<< 9.3.4-1) Provides: postgresql-plpython3 Depends: libc6 (>= 2.4), libpython3.4 (>= 3.4~b1), postgresql-9.3 (= 9.3.4-1) Breaks: postgresql-plpython-9.3 (<< 9.3.4-1) Filename: pool/main/p/postgresql-9.3/postgresql-plpython3-9.3_9.3.4-1_i386.deb Size: 36274 MD5sum: 8ae1921c5f67e000a7ca144a7a9c55ac SHA1: 0d5494d1d00d25959a37686f9f4c60dfc0aa6334 SHA256: e6130fd8484d41f1a2571ace7bb2e27ba7c3cb38a189eda337c58aaea0f17922 Description: PL/Python 3 procedural language for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: f858aa365d8a4f77744520970cee2fed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postgresql-pltcl-9.3 Priority: optional Section: database Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Provides: postgresql-pltcl Depends: libc6 (>= 2.4), libtcl8.6 (>= 8.6.0), postgresql-9.3 (= 9.3.4-1) Filename: pool/main/p/postgresql-9.3/postgresql-pltcl-9.3_9.3.4-1_i386.deb Size: 20954 MD5sum: 5730d122cec7aa581607a9b50b325c9f SHA1: a1ee9bfaf0fff903a3862b0e336574f0d104863e SHA256: 46c87e9c7f1675d79e095fc71ca94e1d00060683fed3f16ffe0eab7820cdb207 Description: PL/Tcl procedural language for PostgreSQL 9.3 Homepage: http://www.postgresql.org/ Description-md5: d84ed439f907d790c156a9bb98622b61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: postgresql-server-dev-9.3 Priority: optional Section: libdevel Installed-Size: 3255 Maintainer: Ubuntu Developers Original-Maintainer: Debian PostgreSQL Maintainers Architecture: i386 Source: postgresql-9.3 Version: 9.3.4-1 Depends: libc6 (>= 2.4), libpq-dev (>= 9.3~), postgresql-common (>= 142~) Filename: pool/main/p/postgresql-9.3/postgresql-server-dev-9.3_9.3.4-1_i386.deb Size: 596388 MD5sum: c77ee06fbf7f9fef820c9bbf10ebedd1 SHA1: d3d286697016ef7e3447e17cdcf0aecaf0c0b522 SHA256: e6d960d1d2fd216d1eabffd83150f16097e00774a6739752a86b168cbcd93f29 Description: development files for PostgreSQL 9.3 server-side programming Homepage: http://www.postgresql.org/ Description-md5: 897794bc08c41a167dd39986ed5e38e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: powermgmt-base Priority: standard Section: utils Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Chris Hanson Architecture: i386 Version: 1.31build1 Replaces: apmd (<= 3.0.2-1.17) Depends: udev | makedev, libc6 (>= 2.3.4), module-init-tools Filename: pool/main/p/powermgmt-base/powermgmt-base_1.31build1_i386.deb Size: 9662 MD5sum: 193b0e49f67e1c1517c808272b03c48d SHA1: 9f598d354dc241a1105dfd44e98e0c9015854677 SHA256: 1b37c219028684e6fddd80c1731e6bda2c8a73d5bdc6e78ae89ca391180a4c46 Description: Common utils and configs for power management Description-md5: 87cc730523622998eb207301a047fc86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: powernap Priority: optional Section: admin Installed-Size: 139 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Version: 2.18-0ubuntu2 Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any, debconf (>= 0.5) | debconf-2.0, pm-utils, powernap-common (= 2.18-0ubuntu2) Recommends: ethtool Filename: pool/main/p/powernap/powernap_2.18-0ubuntu2_all.deb Size: 18234 MD5sum: b41d40d11aa25d2c30adc89578ba8a2b SHA1: 35bf2ff3fdc2371f1c57f5fb6b2b0f3af3691f83 SHA256: f7da1c74f0f5414dc117898fe360611474af1252a470de3e3dbee7a34ad6e375 Description: reduce the power consumption of a system when inactive Enhances: powerwake Homepage: http://launchpad.net/powernap Description-md5: ba417044633f8e9a064bd246de1d1ba9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powernap-common Priority: optional Section: admin Installed-Size: 143 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Source: powernap Version: 2.18-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), debconf (>= 0.5) | debconf-2.0, anacron Filename: pool/main/p/powernap/powernap-common_2.18-0ubuntu2_all.deb Size: 14008 MD5sum: 8894866822ca04542088b759c6c48a18 SHA1: aa042cf3987b0e636f55ca2db96cbfaabc212677 SHA256: 1ddc39f826436331546e7b0d97f7e7e19acc5beca200d97e7199b57f28186660 Description: common library files required by powernap Homepage: http://launchpad.net/powernap Description-md5: 30c183a05dc65517d55b193a08e0e5dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powernap-server Priority: optional Section: admin Installed-Size: 32 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Source: powernap Version: 2.18-0ubuntu2 Depends: powerwaked, powerwake Filename: pool/main/p/powernap/powernap-server_2.18-0ubuntu2_all.deb Size: 1646 MD5sum: 93ca3c9ca4e8d64b996a05eb06df960a SHA1: 28f95c38590e98aced84f7381b93ea3631aa7576 SHA256: c87b0466f803156be75865448ae37316c33dae15f725ce7e005d840dc9163a99 Description: PowerNap Power Services suite Homepage: http://launchpad.net/powernap Description-md5: 7111d4de4d475f6a34b4eb09ac99e9d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powertop Priority: extra Section: utils Installed-Size: 480 Maintainer: Ubuntu Developers Original-Maintainer: Jose Luis Rivas Architecture: i386 Version: 2.5-1ubuntu1 Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libncursesw5 (>= 5.6+20070908), libnl-3-200 (>= 3.2.16), libnl-genl-3-200 (>= 3.2.16), libpci3 (>= 1:3.1.9-2), libstdc++6 (>= 4.4.0), libtinfo5 Suggests: cpufrequtils, laptop-mode-tools Filename: pool/main/p/powertop/powertop_2.5-1ubuntu1_i386.deb Size: 140986 MD5sum: 58949012ef6c8f35b83be1c37aa75a1a SHA1: 3524a40038409912f4c8b51f6a378a141825a53c SHA256: 525ca6c97598a78f98b42f0ac5776a9b2ab9c1429ea8462aa0d0909629ef7e9c Description: diagnose issues with power consumption and management Homepage: https://01.org/powertop/ Description-md5: c3d78e3af7f012dfbca99d03c1d5651c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powertop-dbg Priority: extra Section: debug Installed-Size: 1514 Maintainer: Ubuntu Developers Original-Maintainer: Jose Luis Rivas Architecture: i386 Source: powertop Version: 2.5-1ubuntu1 Depends: powertop (= 2.5-1ubuntu1) Filename: pool/main/p/powertop/powertop-dbg_2.5-1ubuntu1_i386.deb Size: 1441408 MD5sum: 18cd3ab3875f53601b98f0d1867958fd SHA1: e987a8307e42284db08b03f2f7a0578769b776a9 SHA256: 797479909703582d07f790b33f863fb03aaa55c900075222e23f8029b28db522 Description: debugging symbols for powertop Homepage: https://01.org/powertop/ Description-md5: dbabe6539aef2478324da085541f8b98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: powerwake Priority: optional Section: admin Installed-Size: 73 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Source: powernap Version: 2.18-0ubuntu2 Depends: python:any, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/p/powernap/powerwake_2.18-0ubuntu2_all.deb Size: 7924 MD5sum: 92fb83516ebcad06045dbd0920bf6d3a SHA1: f6319f5b53850d62acbec8f61ad697b2bdad891c SHA256: 10923cdad8afddf699d2546e0756dcdadb012997926cc829d88f8e64c94e7cfe Description: remotely wake a napping system Enhances: powernap Homepage: http://launchpad.net/powernap Description-md5: d91ea8499351657f8944ffdc79ca651c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powerwake-common Priority: optional Section: admin Installed-Size: 74 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Source: powernap Version: 2.18-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), debconf (>= 0.5) | debconf-2.0 Suggests: python-scapy Filename: pool/main/p/powernap/powerwake-common_2.18-0ubuntu2_all.deb Size: 6486 MD5sum: c6083d124376d0825bdd78d74d87dcd7 SHA1: 7daded85c3a2d3929879923c722095f560dfcc51 SHA256: e361cfe4c5a88a6b73c1e96f5962d8782f6f1aeb27ad696886fd13e767626508 Description: common library files required by powerwake Homepage: http://launchpad.net/powernap Description-md5: c2e9387de5be23b85193ce3ca71110ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: powerwaked Priority: optional Section: admin Installed-Size: 66 Maintainer: Andres Rodriguez Original-Maintainer: Dustin Kirkland Architecture: all Source: powernap Version: 2.18-0ubuntu2 Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any, debconf (>= 0.5) | debconf-2.0, powerwake-common (= 2.18-0ubuntu2) Filename: pool/main/p/powernap/powerwaked_2.18-0ubuntu2_all.deb Size: 5790 MD5sum: 243061d10f6e15b9a8ed3480eef80ab9 SHA1: b5d0fc4e077a91044757cf3dd54f86edd396bf55 SHA256: 7e59d239e68f4ea98e94c66b989459294a6437bcf441cfd53d8877bdb71b8ed0 Description: remotely wake a napping system - Server Daemon Enhances: powerwake Homepage: http://launchpad.net/powernap Description-md5: f4cdb501bb283c1f478c8420faa53bad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ppl-dev Priority: optional Section: devel Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: Debian GCC Maintainers Architecture: i386 Source: ppl Version: 1:1.1-1ubuntu1 Replaces: libppl0.11-dev Depends: libppl-dev (= 1:1.1-1ubuntu1), libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libgmp10, libppl13, libstdc++6 (>= 4.4.0) Filename: pool/main/p/ppl/ppl-dev_1.1-1ubuntu1_i386.deb Size: 32938 MD5sum: 54a19aa36ae0abba0ef298dd61d16fd9 SHA1: facf1c73d797d0a88163513fd5187c2e81a21daf SHA256: 6dba38b6f14eaf82e2c561e571a758735da0a5609b998a80a224521867610994 Description: Parma Polyhedra Library (development binaries) Homepage: http://www.cs.unipr.it/ppl/ Description-md5: c3e473b9c4ef451e4f19dc97f6d27453 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ppp Priority: standard Section: admin Installed-Size: 871 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: i386 Version: 2.4.5-5.1ubuntu2 Depends: libc6 (>= 2.15), libpam0g (>= 0.99.7.1), libpcap0.8 (>= 0.9.8), libssl1.0.0 (>= 1.0.0), libpam-modules, libpam-runtime, procps Breaks: network-manager (<= 0.8.0.999-1), network-manager-pptp (<= 0.8.0.999-1), pppdcapiplugin (<= 1:3.9.20060704+dfsg.1-1) Filename: pool/main/p/ppp/ppp_2.4.5-5.1ubuntu2_i386.deb Size: 362496 MD5sum: 173cd5d65d9dc6f6eefbef791fba3957 SHA1: 2258b2c0f946f5376a91de71832f0c6c978e1de9 SHA256: 584d896b735b7c856e1a288ddf2ecd2f6da16592374780cce21816090a09f058 Description: Point-to-Point Protocol (PPP) - daemon Description-md5: 30c8068bb5c8dc59b8b1cfb452d03c8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: ppp-dev Priority: extra Section: devel Installed-Size: 187 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: all Source: ppp Version: 2.4.5-5.1ubuntu2 Filename: pool/main/p/ppp/ppp-dev_2.4.5-5.1ubuntu2_all.deb Size: 36942 MD5sum: 3c94f6a8407ab027222a0b68c069ae1d SHA1: e6652f7f0892b0bee39a73544b4f3bcd2b35626e SHA256: 5f92599c1edf5443561d2ac7d4a4df91f10bafe51f1350f992784800ad622092 Description: Point-to-Point Protocol (PPP) - development files Description-md5: 3d0de5ac1d756728fffd7f9a37363c84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pppconfig Priority: standard Section: admin Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: John Hasler Architecture: all Version: 2.3.19ubuntu1 Replaces: manpages-fr (<< 2.39.1-5) Depends: ppp (>= 2.3.7), whiptail | dialog, lsb-base (>= 1.3-9ubuntu3) Suggests: resolvconf Conflicts: nscd (<< 2.3.2.ds1-14) Filename: pool/main/p/pppconfig/pppconfig_2.3.19ubuntu1_all.deb Size: 34504 MD5sum: 9db88b2815bdfed775af4a3f021df881 SHA1: 88d2c3fe0c46e5c53bbd9502143677a77f1f10ea SHA256: 48869becff286b3c3191c0ac2b606846089e04b73798c4abda5db790d57171aa Description: A text menu based utility for configuring ppp Description-md5: 4cbdc0cb1a6549c394d48facd70dd1cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: pppoeconf Priority: standard Section: net Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Gregory Colpart Architecture: all Version: 1.20ubuntu1 Depends: whiptail-provider | whiptail, ppp (>= 2.4.2+20040428-2) | pppoe (>= 3.0), ppp (>= 2.4.1.uus2-4), gettext-base (>= 0.13), sed (>= 3.95) Recommends: locales Suggests: xdialog Filename: pool/main/p/pppoeconf/pppoeconf_1.20ubuntu1_all.deb Size: 17052 MD5sum: c5f750ea0db097f7d9d7c48f17a8959e SHA1: 707bfbfa318863d7f6a51e0d592d6a06c8ed04d5 SHA256: 57079e840f05bcc2c7643b9c603dd35ab6bdc52fb41e7f401471bf819c58588e Description: configures PPPoE/ADSL connections Description-md5: b2f6333ac88113a7e9b6a150f4f3dc49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: pptp-linux Priority: optional Section: net Installed-Size: 143 Maintainer: Ubuntu Developers Original-Maintainer: Ola Lundqvist Architecture: i386 Version: 1.7.2-7 Depends: libc6 (>= 2.4), ppp (>= 2.4.2), binutils Filename: pool/main/p/pptp-linux/pptp-linux_1.7.2-7_i386.deb Size: 47304 MD5sum: a9379f21d6be56461cdfd3647725e3fa SHA1: a891f6ea57f4ef852ecee65e0190328ead14b5b5 SHA256: eb6b92778c2c989c1f17fa983da2d6a41040d118d2d8d6c9e5630ee275be7eb2 Description: Point-to-Point Tunneling Protocol (PPTP) Client Description-md5: 65124004c20e4d3ee6eb25d92503d302 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pptpd Priority: optional Section: net Installed-Size: 277 Maintainer: Ubuntu Developers Original-Maintainer: Christoph Biedl Architecture: i386 Version: 1.3.4+27+gddb30f8-1ubuntu1 Depends: libc6 (>= 2.15), libwrap0 (>= 7.6-4~), bcrelay, netbase, ppp Filename: pool/main/p/pptpd/pptpd_1.3.4+27+gddb30f8-1ubuntu1_i386.deb Size: 86994 MD5sum: a23fca6b39cec34a6ea4edced6a9214b SHA1: c71d998ec9dc42f0dc292637f23f3885e8a41221 SHA256: 5b01a9663cdff3e8d75d6d295525b96fe84b73859dba5f0926f978ae9a147710 Description: PoPToP Point to Point Tunneling Server Homepage: http://poptop.sourceforge.net/dox/ Description-md5: cba9f912bc69b66a516ded3191884bdb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: preview-latex-style Priority: optional Section: tex Installed-Size: 291 Maintainer: Ubuntu Developers Original-Maintainer: Davide G. M. Salvetti Architecture: all Source: auctex Version: 11.87-1ubuntu2 Depends: dpkg (>= 1.14.18), tex-common (>= 3) Breaks: preview-latex (<= 0.7.3-2) Filename: pool/main/a/auctex/preview-latex-style_11.87-1ubuntu2_all.deb Size: 186854 MD5sum: 8a32b535baae5499b008036788d89505 SHA1: 91880eff0014a5a901b7749e5446a59d6757276f SHA256: 13f772b19c52e3b632fddf0761dfd6e54b8912f9ea88190d5593230a174b863e Description: extraction of elements from LaTeX documents as graphics Homepage: http://www.gnu.org/software/auctex/preview-latex.html Description-md5: 8bd8f57146b8d6a222aa6fa0bdddcde3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: printer-driver-c2esp Priority: optional Section: text Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: c2esp Version: 27~rc1-1 Replaces: c2esp (<< 19-2~) Depends: libc6 (>= 2.4), libcups2 (>= 1.4.0), libcupsfilters1 (>= 1.0~b1), libcupsimage2 (>= 1.4.0), libjbig0 (>= 2.0), zlib1g (>= 1:1.1.4) Recommends: cups-ppdc Suggests: psutils Breaks: c2esp (<< 19-2~), cups (<< 1.5.0-2~) Filename: pool/main/c/c2esp/printer-driver-c2esp_27~rc1-1_i386.deb Size: 31590 MD5sum: 7c666ed7577ff2caf0c8b24dc2645450 SHA1: 20bb2050881af6e3c4c0e996c89cf4317679410c SHA256: 2380ef592853fc430f9fa84a971bf4d6a60cd7ca36a89ce2719f5c09c8b948fc Description: printer driver for Kodak ESP AiO color inkjet Series Homepage: http://cupsdriverkodak.sf.net/ Description-md5: 8672a19e84a700433951fae551d56708 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-foo2zjs Priority: optional Section: text Installed-Size: 761 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: foo2zjs Version: 20140209dfsg0-1ubuntu1 Replaces: foo2zjs (<< 20111023dfsg0-1~) Depends: libc6 (>= 2.7), libcups2 (>= 1.4.0), libjbig0 (>= 2.0), mscompress, foomatic-filters, dc, printer-driver-foo2zjs-common (>= 20140209dfsg0-1ubuntu1) Recommends: wget, unzip, cups, cups-client Suggests: psutils, hannah-foo2zjs Breaks: cups (<< 1.5.0-3~), foo2zjs (<< 20111023dfsg0-1~), udev (<< 136-1) Filename: pool/main/f/foo2zjs/printer-driver-foo2zjs_20140209dfsg0-1ubuntu1_i386.deb Size: 182732 MD5sum: 2a00c314d6bff57e6d524d1198d8c8e1 SHA1: c49f469748681cb54782654b78b59d0762870abe SHA256: e3ab49fd4d2529a8d33c3615f14bcf2ea7b817c720f46913fcdfc2f00c301eab Description: printer driver for ZjStream-based printers Homepage: http://foo2zjs.rkkda.com/ Description-md5: 46dde92d651ea7e8f08d5611cf1b2363 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-foo2zjs-common Priority: optional Section: text Installed-Size: 2459 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: foo2zjs Version: 20140209dfsg0-1ubuntu1 Replaces: foo2zjs (<< 20111023dfsg0-1~), printer-driver-foo2zjs (<< 20131225dfsg0-5~) Depends: python3, xz-utils Recommends: tk, printer-driver-foo2zjs (>= 20140209dfsg0-1ubuntu1) Suggests: tix Breaks: cups (<< 1.5.0-3~), foo2zjs (<< 20111023dfsg0-1~), printer-driver-foo2zjs (<< 20131225dfsg0-5~), udev (<< 136-1) Filename: pool/main/f/foo2zjs/printer-driver-foo2zjs-common_20140209dfsg0-1ubuntu1_all.deb Size: 515496 MD5sum: 038c826e7953a5ebdb8922a8be89e0d5 SHA1: 29fd58d67a5132e0e82ccfb6bf961b0524e0ecbe SHA256: 0f8e34e5a66e16f8328867627c512fe03a7c2b1bd7fe4fbf844ad2431a299bd9 Description: printer driver for ZjStream-based printers - common files Enhances: printer-driver-foo2zjs (>= 20140209dfsg0-1ubuntu1) Homepage: http://foo2zjs.rkkda.com/ Description-md5: e621bf30a07e3113278d9cc013b9dc37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-gutenprint Priority: optional Section: graphics Installed-Size: 733 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian Printing Group Architecture: i386 Source: gutenprint Version: 5.2.10~pre2-0ubuntu2 Replaces: cups-driver-gutenprint (<< 5.2.7-3) Provides: cups-driver-gutenprint Depends: libc6 (>= 2.7), libcups2 (>= 1.4.0), libcupsimage2 (>= 1.4.0), libgutenprint2 (>= 5.2.10~pre2), libusb-1.0-0 (>= 2:1.0.9), cups (>= 1.3.0), cups-client (>= 1.3.0), cups-filters (>= 1.0.36) | ghostscript-cups Suggests: gutenprint-doc (>= 5.2.10~pre2-0ubuntu2), gutenprint-locales (>= 5.2.10~pre2-0ubuntu2) Conflicts: cups-driver-gutenprint (<< 5.2.7-3) Filename: pool/main/g/gutenprint/printer-driver-gutenprint_5.2.10~pre2-0ubuntu2_i386.deb Size: 354700 MD5sum: 9bdb02ff6137ecf5101321c2154eb94f SHA1: cf9e38ca643041a31f8c9d817c3fe77ff8d2b4e8 SHA256: d9849c5eeab2eba4ab11bb7d677b7bc0f0e975167c40aea985ccb8b3f4a78705 Description: printer drivers for CUPS Description-md5: 5f4c29079db880e202fde946549381ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-hpcups Priority: optional Section: text Installed-Size: 1717 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: i386 Source: hplip Version: 3.14.3-0ubuntu3 Replaces: hplip-cups (<< 3.11.10-1ubuntu2) Depends: libc6 (>= 2.15), libcups2 (>= 1.4.0), libcupsimage2 (>= 1.4.0), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libhpmud0, libjpeg8 (>= 8c), libstdc++6 (>= 4.1.1), cups-filters (>= 1.0.36) | ghostscript-cups, cups (>= 1.4.0) | cupsddk, cups Suggests: hplip-doc, hplip (= 3.14.3-0ubuntu3) Breaks: hplip-cups (<< 3.11.10-1ubuntu2) Filename: pool/main/h/hplip/printer-driver-hpcups_3.14.3-0ubuntu3_i386.deb Size: 235096 MD5sum: 97b3fbfe455253261511d480081c1f7e SHA1: 126f3fdc1fa86281b927e478a95f617245246946 SHA256: 447e9684e6f2b0dad46db6ea9cdde09942398c887180434b71646bbc7dffbf0d Description: HP Linux Printing and Imaging - CUPS Raster driver (hpcups) Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: f0d901d77cf3b6cbd910072d6a2c9cd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-hpijs Priority: optional Section: text Installed-Size: 1854 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: i386 Source: hplip Version: 3.14.3-0ubuntu3 Replaces: hpijs (<< 3.11.10-1ubuntu2) Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libhpmud0 (= 3.14.3-0ubuntu3), libjpeg8 (>= 8c), libstdc++6 (>= 4.1.1) Recommends: ghostscript, cups (>= 1.4.0) | cupsddk | hpijs-ppds, cups-filters (>= 1.0.42) | foomatic-filters Suggests: hplip, hpijs-ppds, hplip-doc Breaks: hpijs (<< 3.11.10-1ubuntu2) Filename: pool/main/h/hplip/printer-driver-hpijs_3.14.3-0ubuntu3_i386.deb Size: 261150 MD5sum: 5e9de04ff866b9adaea5a6a96fdacb0d SHA1: 8cbef754fcbc1a2c59f3d038285d9d704057edd5 SHA256: 192bb72998079cb8f7d1ed70c4c3bf005155f49ff1ead6cd232b337a2b22af49 Description: HP Linux Printing and Imaging - printer driver (hpijs) Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: a4e5debc05f7a32d2cd372505ee6118a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: print-server Package: printer-driver-m2300w Priority: optional Section: text Installed-Size: 1499 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: m2300w Version: 0.51-11 Replaces: m2300w (<< 0.51-5~), m2300w-ppds Depends: python3, xz-utils, libc6 (>= 2.4), cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0.0~bzr156) Recommends: cups-ppdc Suggests: psutils Breaks: m2300w (<< 0.51-5~), m2300w-ppds Filename: pool/main/m/m2300w/printer-driver-m2300w_0.51-11_i386.deb Size: 262440 MD5sum: ab2fd7c4973469afad837b5f5fcd3724 SHA1: 7e68c2dbda020e246d3033a6fc973ef1b14fa620 SHA256: d7115b77e130c811916d6dc8d87754f308232b442ae5b855eb4d29d95aad6d2b Description: printer driver for Minolta magicolor 2300W/2400W color laser printers Homepage: http://m2300w.sf.net/ Description-md5: 3a71d776a8067cf9d8871b64860b850c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: printer-driver-min12xxw Priority: optional Section: text Installed-Size: 115 Maintainer: Stefan Potyra Architecture: i386 Source: min12xxw Version: 0.0.9-8ubuntu1 Replaces: min12xxw (<< 0.0.9-6~) Depends: libc6 (>= 2.4) Recommends: cups, ghostscript, foomatic-db-compressed-ppds | foomatic-db Breaks: min12xxw (<< 0.0.9-6~) Filename: pool/main/m/min12xxw/printer-driver-min12xxw_0.0.9-8ubuntu1_i386.deb Size: 44956 MD5sum: e1936932770e53fadbf38fa7e2e73a7c SHA1: 633d6da1992a8fe569c73b60eb9e3e6bacbbbfe4 SHA256: 8fb3c04b58af1c5d9364bfd9be720ef560db47acdfd161ddc4af16089533aaa7 Description: printer driver for KonicaMinolta PagePro 1[234]xxW Homepage: http://www.hinterbergen.de/mala/min12xxw/ Description-md5: 5ec688dce306d6ec828b6ad200918b13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-pnm2ppa Priority: optional Section: text Installed-Size: 742 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: pnm2ppa Version: 1.13+nondbs-0ubuntu4 Replaces: pnm2ppa (<< 1.13-3~) Depends: libc6 (>= 2.7), debconf (>= 0.5) | debconf-2.0, ghostscript Suggests: magicfilter | apsfilter Conflicts: pbm2ppa Breaks: pnm2ppa (<< 1.13-3~) Filename: pool/main/p/pnm2ppa/printer-driver-pnm2ppa_1.13+nondbs-0ubuntu4_i386.deb Size: 174542 MD5sum: a95f123c4827f1a3c79cc1e8777d0b86 SHA1: 5b717cb150233d5879abf8e32c3fe9806d9971d6 SHA256: d804fb3341c38250da6f476c4eb6dd715b751fe8e8f56bd6e2c01256e0a71ac5 Description: printer driver for HP-GDI printers Homepage: http://pnm2ppa.sf.net/ Description-md5: 849382da46e29649d87fee9f5fd75baf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-postscript-hp Priority: optional Section: utils Installed-Size: 1036 Maintainer: Ubuntu Developers Original-Maintainer: Debian HPIJS and HPLIP maintainers Architecture: all Source: hplip Version: 3.14.3-0ubuntu3 Replaces: hplip (<< 3.11.10-1ubuntu2), hplip-data (<< 3.11.10-1ubuntu2) Depends: python3, xz-utils, hplip (>= 3.14.3-0ubuntu3) Breaks: cups (<< 1.5.0-11~), hplip (<< 3.11.10-1ubuntu2), hplip-data (<< 3.11.10-1ubuntu2) Filename: pool/main/h/hplip/printer-driver-postscript-hp_3.14.3-0ubuntu3_all.deb Size: 722756 MD5sum: 96a724d39f3f6e11862a3d1256edba95 SHA1: a36d43469d9332b4be53908b5e43f29117562015 SHA256: dd1624b7590e732a6aaf5eb0bf8d2bd834c53184050e42ea84a5e5d2ca41c18b Description: HP Printers PostScript Descriptions Homepage: http://hplipopensource.com/hplip-web/index.html Description-md5: 33ca72b4a7d8d06f5c3a8785de40d15d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-ptouch Priority: optional Section: text Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: ptouch-driver Version: 1.3-8 Replaces: ptouch-driver (<< 1.3-2~) Depends: libc6 (>= 2.4), libcups2 (>= 1.4.0), libcupsimage2 (>= 1.4.0), python3, xz-utils, ghostscript Breaks: ptouch-driver (<< 1.3-2~) Filename: pool/main/p/ptouch-driver/printer-driver-ptouch_1.3-8_i386.deb Size: 24370 MD5sum: 6f8d4d3353d7426fcac7cc5de030db48 SHA1: bed6d1969936bd8445950ce74ecb1b74d4f0a890 SHA256: 97376f45b3cf9bdb9a2c42bd6a8fbdc5a979a082ec32503a899d64f39eb05daa Description: printer driver Brother P-touch label printers Homepage: http://www.diku.dk/hjemmesider/ansatte/panic/P-touch/ Description-md5: 8ace29fc51cc26f5b17212bea077277c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-pxljr Priority: optional Section: text Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: pxljr Version: 1.4+repack0-3 Replaces: pxljr (<< 1.3+repack0-2~) Depends: libc6 (>= 2.4), libijs-0.35 (>= 0.35), libjpeg8 (>= 8c), python3, xz-utils, cups-filters (>= 1.0.42) | foomatic-filters (>= 4.0.0~bzr156) Breaks: pxljr (<< 1.3+repack0-2~) Filename: pool/main/p/pxljr/printer-driver-pxljr_1.4+repack0-3_i386.deb Size: 26674 MD5sum: 52c2407bd05f377f40ceb4ad13d96487 SHA1: ab378a869443bdcfb9bd9c4506b972a65daf5577 SHA256: ce07a7123441533a05ff90d9c72b64cb6ecb22e5d6e6ad649b0fa7d84304713a Description: printer driver for HP Color LaserJet 35xx/36xx Homepage: http://sourceforge.net/projects/hp-pxl-jetready/ Description-md5: 47e43f276ab9296a8104d3f136ac5d1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-sag-gdi Priority: optional Section: text Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: all Source: rastertosag-gdi Version: 0.1-3 Replaces: rastertosag-gdi (<< 0.1-3) Depends: python, ghostscript Recommends: cups | foomatic-filters Breaks: cups (<< 1.5.0-3), rastertosag-gdi (<< 0.1-3) Filename: pool/main/r/rastertosag-gdi/printer-driver-sag-gdi_0.1-3_all.deb Size: 9112 MD5sum: ce4c6709c0212622d839c78db98ad161 SHA1: d048c6b42ae037ef6f67728acd4e748e3e8a9465 SHA256: 637701feb2e291b55343c2978c1afd1a82e79e370500ec3d944c2839f3a1b7c1 Description: printer driver for Ricoh Aficio SP 1000s/SP 1100s Homepage: http://www.openprinting.org/driver/rastertosag-gdi/ Description-md5: f01e9d3286bd9e5e45b9c6fe167edeb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: printer-driver-splix Priority: optional Section: text Installed-Size: 194 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Team Architecture: i386 Source: splix Version: 2.0.0+svn315-2fakesync1 Replaces: splix (<< 2.0.0+svn299-1) Depends: libc6 (>= 2.4), libcups2 (>= 1.4.0), libcupsimage2 (>= 1.4.0), libgcc1 (>= 1:4.1.1), libjbig0 (>= 2.0), libstdc++6 (>= 4.1.1), cups (>= 1.5.0-3~), cups-client, ghostscript-cups Breaks: splix (<< 2.0.0+svn299-1) Filename: pool/main/s/splix/printer-driver-splix_2.0.0+svn315-2fakesync1_i386.deb Size: 35338 MD5sum: bed70b1d69c881892e41100b913db591 SHA1: 6d071be82ccc5fcde2c7ce8dd2b11fde6c40d62a SHA256: 1a18e0ee985c82e0c2a67b25e6ec488252075b10d45bf1b292251d32f72a87c1 Description: Driver for Samsung and Xerox SPL2 and SPLc laser printers Homepage: http://splix.ap2c.org/ Description-md5: bf769a48f0ca1c009ba9795570744dc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: procmail Priority: optional Section: mail Installed-Size: 303 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 3.22-21 Depends: libc6 (>= 2.4) Recommends: default-mta | mail-transport-agent | fetchmail Filename: pool/main/p/procmail/procmail_3.22-21_i386.deb Size: 147230 MD5sum: b82b2a03405b9581c9f048313ce4adcf SHA1: 48956fc0a27be77251f66ff35b9e89ceeac5410b SHA256: de1759edb720dedb98576e78a76266665269bbfa42610a7d91e4ecc6955fc96d Description: Versatile e-mail processor Homepage: http://www.procmail.org/ Description-md5: 5fe1752f436b234d8c33cb0e7484299f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mail-server Package: procps Priority: required Section: admin Installed-Size: 637 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Version: 1:3.3.9-1ubuntu2 Provides: watch Depends: libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libncursesw5 (>= 5.6+20070908), libprocps3, libtinfo5, lsb-base (>= 3.0-10), initscripts Recommends: psmisc Conflicts: pgrep (<< 3.3-5), w-bassman (<< 1.0-3) Breaks: guymager (<= 0.5.9-1), open-vm-tools (<= 2011.12.20-562307-1), xmem (<= 1.20-27.1) Filename: pool/main/p/procps/procps_3.3.9-1ubuntu2_i386.deb Size: 203280 MD5sum: bf3052e8079bb7efe59cd3cb9314e889 SHA1: 75e26436b7539b2dca72e02a8074e061f8c8f88d SHA256: 3b75e8f2aeb4155404969db240acd5ccbbe2677fce819853c9b956dd714c3e1e Description: /proc file system utilities Multi-Arch: foreign Homepage: http://gitorious.org/procps Description-md5: 943f3288c1aaa379fca73a3ff1a35278 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: prosper Priority: optional Section: tex Installed-Size: 1004 Maintainer: Ubuntu Core Developers Original-Maintainer: Masayuki Hatta (mhatta) Architecture: all Version: 1.00.4+cvs.2007.05.01-4 Depends: texlive-latex-base, texlive-pstricks, texlive-latex-recommended, ghostscript, tex-common (>= 1.10) Suggests: pdf-viewer, postscript-viewer Filename: pool/main/p/prosper/prosper_1.00.4+cvs.2007.05.01-4_all.deb Size: 448654 MD5sum: ea3087b30c1b701d4c3992c8c0356676 SHA1: 543945116023ee28992cb16bf03c919111b61e9b SHA256: 13a38c6765bf76b32296d959e50a52e0884cc355d5076f03f22395c018c71e6f Description: LaTeX class for writing transparencies Description-md5: 457824b5bd874fe651e5ba2efc02e000 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: protobuf-compiler Priority: extra Section: devel Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: protobuf Version: 2.5.0-9ubuntu1 Depends: libc6 (>= 2.0), libgcc1 (>= 1:4.1.1), libprotoc8 (= 2.5.0-9ubuntu1), libstdc++6 (>= 4.1.1) Filename: pool/main/p/protobuf/protobuf-compiler_2.5.0-9ubuntu1_i386.deb Size: 19718 MD5sum: a8b7c0d1e3b53c8672096e6200f40af7 SHA1: 8b8cc881b6eed1c0e640013fd954fab803e7d800 SHA256: 5173e837f025ea251272800d6832f9169b1bad0d85524a69ed7da1566267fd22 Description: compiler for protocol buffer definition files Multi-Arch: foreign Homepage: https://code.google.com/p/protobuf/ Description-md5: 1054ab94728e41bc0d59a82d40d1611e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ps2eps Priority: optional Section: text Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Matteo Cypriani Architecture: i386 Version: 1.68-1build1 Depends: libc6 (>= 2.7), perl, ghostscript Filename: pool/main/p/ps2eps/ps2eps_1.68-1build1_i386.deb Size: 33726 MD5sum: 38dfbfa66bdc0ea0768317be3b765c1e SHA1: 5217bb34f6b56872876ff176bd7c59fd882a22b3 SHA256: 762880ada787d8213bdf023e986c873d49faf9cf50218d57889b93f28aafb086 Description: convert PostScript to EPS (Encapsulated PostScript) files Homepage: http://tm.uka.de/~bless/ps2eps Description-md5: c14405c1cb36d8c16618b31cb19280a5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: psmisc Priority: standard Section: admin Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Craig Small Architecture: i386 Version: 22.20-1ubuntu2 Replaces: procps (<< 1:1.2) Depends: libc6 (>= 2.8), libtinfo5 Filename: pool/main/p/psmisc/psmisc_22.20-1ubuntu2_i386.deb Size: 52044 MD5sum: 443acbf9670d0304e8191e95a29c740a SHA1: 7b2b8e00a17b22e0e8bd01454a1fc4c04a4c7bbf SHA256: 2911cff85a8ed9269a34d63448c1346756cf83369291a07be460dc648a4fbb89 Description: utilities that use the proc file system Homepage: http://psmisc.sf.net/ Description-md5: f223601d881677b6b3cc176c4915b053 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: pst-utils Priority: optional Section: utils Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: i386 Source: libpst Version: 0.6.59-1build1 Replaces: readpst (<= 0.5.3-1) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgd3 (>= 2.1.0~alpha~), libglib2.0-0 (>= 2.12.0), libgsf-1-114 (>= 1.14.8), libpst4 (>= 0.6.54), libstdc++6 (>= 4.6) Breaks: readpst (<= 0.5.3-1) Filename: pool/main/libp/libpst/pst-utils_0.6.59-1build1_i386.deb Size: 59764 MD5sum: 6496ba02a86bd7b51543c52f5183a108 SHA1: b38717c032f10503f071d7df28dc84675403bcf9 SHA256: 9f9ab247266ad846acdf23ff569b2b2e5fb9173a3c79d0ec072139884a201e18 Description: tools for reading Microsoft Outlook PST files Multi-Arch: foreign Homepage: http://www.five-ten-sg.com/libpst/ Description-md5: a5b7eea58aeff9732f2cfda76e293617 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: psutils Priority: optional Section: text Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Version: 1.17.dfsg-1 Depends: libc6 (>= 2.7), libpaper1 Recommends: ghostscript Filename: pool/main/p/psutils/psutils_1.17.dfsg-1_i386.deb Size: 80184 MD5sum: e5c8d91fc89c00c8dfa5ec5ebf215421 SHA1: 67f480ee31ec1d5ec7e9fd2c96e51880fc34f6aa SHA256: 874ff224a31208be301d5c85dae8c6f0d73245a6738634bfac3df8251ba43d74 Description: PostScript document handling utilities Multi-Arch: foreign Homepage: http://www.tardis.ed.ac.uk/~ajcd/psutils/ Description-md5: d3e83aa8e0c39f8e84452a2efc781c5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pth-dbg Priority: extra Section: libdevel Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: NIIBE Yutaka Architecture: i386 Source: pth Version: 2.0.7-19ubuntu1 Depends: libpth20 (= 2.0.7-19ubuntu1) Filename: pool/main/p/pth/pth-dbg_2.0.7-19ubuntu1_i386.deb Size: 70446 MD5sum: 293a9d4a3a0ed2dae243a49dae697e27 SHA1: 0d1690994486fad1a98e268befb3b59b5ffe02fd SHA256: 6bbe5ba2950d6a85ae974c814fc45c63fa87943f82ffcd519e0cb7751e4dfe1b Description: GNU Portable Threads (debug) Multi-Arch: same Homepage: http://www.gnu.org/software/pth/ Description-md5: c490e0230cdde8968e71183b8e08a764 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio Priority: optional Section: sound Installed-Size: 3380 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Version: 1:4.0-0ubuntu11 Provides: pulseaudio-module-hal, pulseaudio-module-rygel-media-server, pulseaudio-module-udev Depends: libasound2 (>= 1.0.24.1), libc6 (>= 2.15), libcap2 (>= 2.10), libdbus-1-3 (>= 1.1.1), libfftw3-single3, libltdl7 (>= 2.4.2), liborc-0.4-0 (>= 1:0.4.18), libpulse0 (= 1:4.0-0ubuntu11), libsamplerate0 (>= 0.1.7), libsndfile1 (>= 1.0.20), libspeexdsp1 (>= 1.2~beta3.2-1), libsystemd-login0 (>= 31), libtdb1 (>= 1.2.7+git20101214), libudev1 (>= 183), libx11-6, libx11-xcb1, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), adduser, lsb-base (>= 3.2-13), libpam-systemd, udev (>= 143), libasound2-plugins Recommends: pulseaudio-module-x11, gstreamer0.10-pulseaudio, rtkit, pulseaudio-utils Suggests: pavumeter, paman, pavucontrol, paprefs, pulseaudio-module-raop, pulseaudio-esound-compat Conflicts: libltdl3 (<< 1.5.24-1) Filename: pool/main/p/pulseaudio/pulseaudio_4.0-0ubuntu11_i386.deb Size: 644854 MD5sum: 1dac56e2db2f4dd21f37323c08fe589f SHA1: ea29a500b3f956caa767b2fbbaee27f45e9a7498 SHA256: 3fc81bbcbf79a515d22441691ed8fda4f6c3a810fc9af70729f5c01513aa9f6f Description: PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: 15c158aa11824c8a768e4d670919d02d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pulseaudio-dbg Priority: optional Section: sound Installed-Size: 6485 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-dbg_4.0-0ubuntu11_i386.deb Size: 1637306 MD5sum: 8a47092d257080c2b1b5ba91f753602b SHA1: e3b1a0b138ba7bf45f09fc65d996c4b0bfa0a59a SHA256: 945558abfda94cbc7dcd0e9ee35a6fd777f79e8d2f7e679c1e683da1d60d2383 Description: PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 6515020922a7cd6552f8c5b6bfc6a4cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-esound-compat Priority: optional Section: sound Installed-Size: 202 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Replaces: esound Provides: esound Depends: libc6 (>= 2.4), libpulse0, pulseaudio Conflicts: esound, pulseaudio (<< 0.9.7) Filename: pool/main/p/pulseaudio/pulseaudio-esound-compat_4.0-0ubuntu11_i386.deb Size: 27870 MD5sum: 88c1653e33bdc062012858b48f6a7a60 SHA1: 60942469d1031e8a89c0f36897f1061b083b5e81 SHA256: 4a3a39e1da396bd3239efc76398e631c12292f49c0defbe011420690a86ceb49 Description: PulseAudio ESD compatibility layer Homepage: http://www.pulseaudio.org Description-md5: c4bef34c6a4dad881a8090fdc8386ec8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-esound-compat-dbg Priority: optional Section: sound Installed-Size: 353 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-esound-compat (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-esound-compat-dbg_4.0-0ubuntu11_i386.deb Size: 68786 MD5sum: 717d1a7fc89616bb936265f2204e981f SHA1: ddb5602c255c30694eb253b7d60d6e0a49136c35 SHA256: 992e245e80abf0c9b71787b1bdb06b74234ebd6788be8e06bec490684fddea1f Description: PulseAudio ESD compatibility layer (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 621532e19d5d462616e8fde9df46059f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-bluetooth Priority: extra Section: sound Installed-Size: 272 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libbluetooth3 (>= 4.91), libc6 (>= 2.15), libcap2 (>= 2.10), libdbus-1-3 (>= 1.0.2), libpulse0, libsbc1, pulseaudio Conflicts: pulseaudio (<< 0.9.14-2) Filename: pool/main/p/pulseaudio/pulseaudio-module-bluetooth_4.0-0ubuntu11_i386.deb Size: 49692 MD5sum: fcd05743fa1f77c84990be112ee8dd0a SHA1: 635170ce7abe4155f09ff5fd6e61b5dec00f23d9 SHA256: fdfb7ebb957244eabe18ac5efda340f8446b1c1ceafcc07b4e91db9d25c5ba42 Description: Bluetooth module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: 76e05b466d11ac60deff61d94d607904 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: pulseaudio-module-bluetooth-dbg Priority: extra Section: debug Installed-Size: 471 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-bluetooth (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-bluetooth-dbg_4.0-0ubuntu11_i386.deb Size: 111344 MD5sum: 1800892a2497b368f0e69dd25cdacbf0 SHA1: cacad39792cebd78ec731508f09a54ce0ca4406f SHA256: 5981ae809819e57f2e402d6f81d291e0de12c8586ab8979cb8ac6c0c6cf21455 Description: Bluetooth module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 2b8edffb30aa137382c0522aeb8d7705 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-gconf Priority: optional Section: sound Installed-Size: 133 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: gconf-service, libc6 (>= 2.4), libcap2 (>= 2.10), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.16.0), libpulse0 (>= 1:0.99.1), pulseaudio Filename: pool/main/p/pulseaudio/pulseaudio-module-gconf_4.0-0ubuntu11_i386.deb Size: 12108 MD5sum: d5fc8f47b6f94f6dda64fe5234612967 SHA1: 9456efe3725f6dabb04e2ad0b30f03ffaf57b200 SHA256: f80c70e227cebe5e9bad8e1b12ba0046d086045640a41ec4f05b311700265bb0 Description: GConf module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: c3adf0ed8c67f1355a3e02e8fd0d85c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-desktop Package: pulseaudio-module-gconf-dbg Priority: optional Section: sound Installed-Size: 179 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-gconf (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-gconf-dbg_4.0-0ubuntu11_i386.deb Size: 26288 MD5sum: 1d96c9c07f2305f7e29a54781543e928 SHA1: d758ae0413fa7f9542c30546c0a8771537069165 SHA256: 2a71c5b3aa8c8151c0a14fbaaab5f735db75c91946c24588ca8b768fd099ce05 Description: GConf module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: ce11f6aa6253e7cd2e697e57cc8fb842 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-jack Priority: optional Section: sound Installed-Size: 159 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.3.6-6~), libdbus-1-3 (>= 1.0.2), libjack-jackd2-0 (>= 1.9.5~dfsg-14) | libjack-0.116, libpulse0, pulseaudio Filename: pool/main/p/pulseaudio/pulseaudio-module-jack_4.0-0ubuntu11_i386.deb Size: 18200 MD5sum: 12fe7b1932d6ac8100d65259df00e9dd SHA1: ffedd6424d98e6267d8790409df97fd5830448d5 SHA256: 08b1fc6a6555642119ff9372914634e01832e4fd7345251cf708601606ffd55b Description: jackd modules for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: a45f4943771fb4ccf89a76a36f7f6f13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: pulseaudio-module-jack-dbg Priority: extra Section: debug Installed-Size: 259 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-jack (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-jack-dbg_4.0-0ubuntu11_i386.deb Size: 46820 MD5sum: 60444218c1e7e30442edf27cad13c7b0 SHA1: 05da3b5f6f10b9870b76ecc1daf8f7f7886305c5 SHA256: 135f09897bd677d8d0cc9ae650e18233d51c0b26df68a690f86b0de6363e402c Description: jackd modules for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: f6d44444a47d21760ed54faff6808e42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-lirc Priority: optional Section: sound Installed-Size: 116 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.3.6-6~), liblircclient0, libpulse0, pulseaudio Filename: pool/main/p/pulseaudio/pulseaudio-module-lirc_4.0-0ubuntu11_i386.deb Size: 9396 MD5sum: 0ce66d801cd4b29e305a0d8ec0b05d53 SHA1: 25c599682b6f429d857e2ebb9f1001973f7e2750 SHA256: 87022cd365937d601344ffcdab37117894f30a4a5da00a6039fea30658bc14b4 Description: lirc module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: 476ebc36bd51c387e0a12a54352ae162 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-lirc-dbg Priority: optional Section: sound Installed-Size: 155 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-lirc (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-lirc-dbg_4.0-0ubuntu11_i386.deb Size: 19936 MD5sum: 258e90e6f266b6544fe789fb2a4c11d2 SHA1: 1a7090bf55ea0dea7f0e42addcc50299e9491c87 SHA256: b22dcfc79c6b5f9d5810f71607f47813c5b0a03da00d28bf9cb5361896ab023c Description: lirc module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: bb6c6bf3bb0d94413297d07debc8ad2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-raop Priority: optional Section: sound Installed-Size: 159 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.4), libpulse0, libssl1.0.0 (>= 1.0.0), pulseaudio, pulseaudio-module-zeroconf Filename: pool/main/p/pulseaudio/pulseaudio-module-raop_4.0-0ubuntu11_i386.deb Size: 21822 MD5sum: 8389a8e7baa43ed35045eaf5485c50d3 SHA1: 14fb73649be96915646f8f76bbcf4d6a14c9d7fc SHA256: 6fcc83320bf716e60bda68c584462d66912ca915a1786ff57a47221389e6b934 Description: RAOP module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: f443b32abfa3073d1874fa9b76cf88b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-raop-dbg Priority: extra Section: debug Installed-Size: 267 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-raop (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-raop-dbg_4.0-0ubuntu11_i386.deb Size: 55652 MD5sum: 9078ca62b0d0b17340440a1149693dc3 SHA1: 3fcb34681522d951eac7042f92e3db99a886208b SHA256: 1d262865c71207e318ecb40a6786a2b399ceb3683711d9fee38329e59d856050 Description: RAOP module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 237b0832d40dda438225fb99516390ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-x11 Priority: optional Section: sound Installed-Size: 157 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.4), libice6 (>= 1:1.0.0), libpulse0, libsm6, libx11-6, libxcb1, libxtst6, pulseaudio, pulseaudio-utils Filename: pool/main/p/pulseaudio/pulseaudio-module-x11_4.0-0ubuntu11_i386.deb Size: 15554 MD5sum: 52c890bbca5a72c62b30e9a1b555bf1c SHA1: 3863306e69c6cb90f75da4f5ed41bc6dd83408de SHA256: eaedf4eb3bbde7c17fee7d9fdc6435e4ba815eede557f24eaadb853a6a515544 Description: X11 module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: 062fab2dbfcfeea7d9fa7b6dd9d093f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pulseaudio-module-x11-dbg Priority: optional Section: sound Installed-Size: 287 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-x11 (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-x11-dbg_4.0-0ubuntu11_i386.deb Size: 52562 MD5sum: e97368cd6a0a60f81a352d8fd044f47b SHA1: b6a4025de658f9859dbd5d0c326d7c100dc79219 SHA256: 5f63a052c4bae6bc4e0047efca5cd94bbb55bb1ac7c42662f30c327fb7ab1c3b Description: X11 module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 9fd62ba08b980e048eea094c765b1e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-zeroconf Priority: optional Section: sound Installed-Size: 151 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.4), libpulse0, pulseaudio, avahi-daemon Filename: pool/main/p/pulseaudio/pulseaudio-module-zeroconf_4.0-0ubuntu11_i386.deb Size: 18164 MD5sum: 84326fba2dc1705719a3dcd769817588 SHA1: 14503d0d4edce16d269d10e83ae976ebc4d19005 SHA256: 89c129ab6f882e5d38b653096cddb7ea526ce831a3c6b67bef01bef4c97daad8 Description: Zeroconf module for PulseAudio sound server Homepage: http://www.pulseaudio.org Description-md5: bccd0c2eacb18c71f7d829db12f93aae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-module-zeroconf-dbg Priority: optional Section: sound Installed-Size: 242 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-module-zeroconf (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-module-zeroconf-dbg_4.0-0ubuntu11_i386.deb Size: 44958 MD5sum: 8173e12039e0e4d2ace453366d9ec0aa SHA1: 947dae5e439f7f2d4318ff9c8283adfa7807e4e3 SHA256: 3b2aca8f477f5fcbeca9d1e425d01aef891d7d88acab59fcc9171d53333b3d3d Description: Zeroconf module for PulseAudio sound server (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 77f25d7054496b1bcb1709ebe63fb092 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pulseaudio-utils Priority: optional Section: sound Installed-Size: 272 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: libc6 (>= 2.16), libcap2 (>= 2.10), libice6 (>= 1:1.0.0), libpulse0 (>= 1:3.0), libsm6, libsndfile1 (>= 1.0.20), libx11-6, libx11-xcb1, libxcb1, libxtst6, libpulsedsp Suggests: avahi-daemon Filename: pool/main/p/pulseaudio/pulseaudio-utils_4.0-0ubuntu11_i386.deb Size: 51242 MD5sum: 619c1e6a5b9d639f9e4a3c6e91dfe90e SHA1: 11c22182049b792d571fb86e7d576eb7ea7baba8 SHA256: fd95feae18e1f054d6be4c3cf118d42f113e7b33a4ea70116b7d68716c1045a1 Description: Command line tools for the PulseAudio sound server Multi-Arch: foreign Homepage: http://www.pulseaudio.org Description-md5: d8d6ff926bb9214bc0212fd3318ba0e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: pulseaudio-utils-dbg Priority: optional Section: sound Installed-Size: 329 Maintainer: Ubuntu Core Developers Original-Maintainer: Pulseaudio maintenance team Architecture: i386 Source: pulseaudio Version: 1:4.0-0ubuntu11 Depends: pulseaudio-utils (= 1:4.0-0ubuntu11) Filename: pool/main/p/pulseaudio/pulseaudio-utils-dbg_4.0-0ubuntu11_i386.deb Size: 71990 MD5sum: 6990ab776e5e9609b9f82bbf1ae98696 SHA1: 37942d321dab4a8b155395de09d1025378d176b0 SHA256: 17c8493a8114ec6fefccd5b1aeeaf734caa2f5ecdc6cd08b7eba022bd20e5dee Description: PulseAudio command line tools (debugging symbols) Homepage: http://www.pulseaudio.org Description-md5: 0e61af00680b09723f21829a67509778 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: puppet Priority: optional Section: admin Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Puppet Package Maintainers Architecture: all Version: 3.4.3-1 Depends: init-system-helpers (>= 1.13~), puppet-common (= 3.4.3-1), ruby | ruby-interpreter Suggests: puppet-el, vim-puppet, etckeeper Filename: pool/main/p/puppet/puppet_3.4.3-1_all.deb Size: 12352 MD5sum: 4877c041e24b01839c9ca25c26b8b338 SHA1: af11e5388acaa20e85ffc56f97f84be8d0a5880c SHA256: 89a5bf44f9f8e6acbf5459c07ef27e032723bcbb9357b15e5736081b301d1593 Description: Centralized configuration management - agent startup and compatibility scripts Homepage: http://projects.puppetlabs.com/projects/puppet Description-md5: 1dc71ec043c0ade030b8a9e18410f9ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: puppet-common Priority: optional Section: admin Installed-Size: 4303 Maintainer: Ubuntu Developers Original-Maintainer: Puppet Package Maintainers Architecture: all Source: puppet Version: 3.4.3-1 Replaces: puppet (<< 2.7.5-3), puppetmaster (<< 0.25.4-1), ruby-hiera-puppet Depends: adduser, facter, ruby-augeas, ruby-hiera, lsb-base, ruby | ruby-interpreter, ruby-safe-yaml, ruby-shadow, sysv-rc | file-rc Recommends: debconf-utils, lsb-release, ruby-rgen Suggests: ruby-selinux, ruby-rrd | librrd-ruby Breaks: puppet (<< 2.7.5-3), puppetmaster (<< 0.25.4-1), ruby-hiera-puppet Filename: pool/main/p/puppet/puppet-common_3.4.3-1_all.deb Size: 830508 MD5sum: 3e4b9e50ea8fd76de12ed9d83a0b93bf SHA1: 56bcc4ba747139ec1550df40989e1adab4ae193d SHA256: b58702947f1a224402db94afb1193c7a937c9f1a2dde71b404a3e09e1836f6cd Description: Centralized configuration management Homepage: http://projects.puppetlabs.com/projects/puppet Description-md5: 8da729eb017e286e5d58a9b725d6d6e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: puppetmaster Priority: optional Section: admin Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Puppet Package Maintainers Architecture: all Source: puppet Version: 3.4.3-1 Replaces: puppet (<< 0.24.7-1) Depends: init-system-helpers (>= 1.13~), puppetmaster-common (= 3.4.3-1), ruby | ruby-interpreter Breaks: puppet (<< 0.24.7-1) Filename: pool/main/p/puppet/puppetmaster_3.4.3-1_all.deb Size: 11148 MD5sum: faf76123a5cdc31e66f74d9e610fa4a1 SHA1: db5b8898eca15ef0b9997171e02fc1e4c81925ed SHA256: 41c8528f62d95c5c1e1773f140be54cbd471830c4ce436992a633d2df77620fa Description: Centralized configuration management - master startup and compatibility scripts Homepage: http://projects.puppetlabs.com/projects/puppet Description-md5: ec2957c54d173b1e55135df9e2c43a3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: puppetmaster-common Priority: optional Section: admin Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Puppet Package Maintainers Architecture: all Source: puppet Version: 3.4.3-1 Replaces: puppet (<< 0.24.7-1), puppetmaster (<< 2.7.6-1~) Depends: lsb-base, puppet-common (= 3.4.3-1), ruby | ruby-interpreter Suggests: apache2 | nginx, puppet-el, ruby-ldap, ruby-stomp, stompserver, vim-puppet Breaks: puppet (<< 0.24.7-1), puppetmaster (<< 2.7.6-1~) Filename: pool/main/p/puppet/puppetmaster-common_3.4.3-1_all.deb Size: 11936 MD5sum: 8f17ebc4ba808c179cbc59c5d6890c41 SHA1: 418787926379ecdae2a6ed01b01cf544ba511e46 SHA256: 478100f33f2f4bce3a8be3c6655a80613a3e27b28f717292356f6ad9e596ba38 Description: Puppet master common scripts Homepage: http://projects.puppetlabs.com/projects/puppet Description-md5: 8e697b41d71ef7baffdb79e12a12ce20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: pwgen Priority: optional Section: admin Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Version: 2.06-1ubuntu4 Depends: libc6 (>= 2.4) Filename: pool/main/p/pwgen/pwgen_2.06-1ubuntu4_i386.deb Size: 14348 MD5sum: 3764bd8c2c76d65fadb43aa5e8aa31ce SHA1: 34900dbc287412194c7d468e985cb736d1f82205 SHA256: 9241f2e4a40ee1283f83031625b84450bc74e0fcf8f98e92101eeaa27ab508ba Description: Automatic Password generation Multi-Arch: foreign Description-md5: 859691de567bea29cc54bd9e7c291b67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: pyflakes Priority: optional Section: interpreters Installed-Size: 355 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: all Version: 0.8.1-1 Depends: python-pkg-resources, python3-pkg-resources, python:any (<< 2.8), python:any (>= 2.7.5-5~), python2.7, python3, python3:any (>= 3.3.2-2~) Filename: pool/main/p/pyflakes/pyflakes_0.8.1-1_all.deb Size: 31182 MD5sum: 1e2c9fc899d2af03575911b6ffbf0ab1 SHA1: 25626d01e90c58b35ab908556c8a30006fe95a02 SHA256: cfb1c9fdc6af0cbd3b35d367b523fd0e81ba68b692b686219341ee5047d016d9 Description: passive checker of Python 2 and 3 programs Homepage: https://launchpad.net/pyflakes Description-md5: 9309f69116d91e476e6b157dd0529f79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pylint Priority: optional Section: python Installed-Size: 576 Maintainer: Ubuntu Developers Original-Maintainer: Python Applications Packaging Team Architecture: all Version: 1.1.0-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-logilab-common (>= 0.53.0), python-astroid Recommends: python-tk Filename: pool/main/p/pylint/pylint_1.1.0-1_all.deb Size: 105570 MD5sum: e00e43475509d6e0be14a8a842e0820b SHA1: c917f306ae52fec915677b4aafafd9174aa90629 SHA256: d1c66c187f8a4807b524fa6d59e8e790a7a2fc5dad48998573eef19043a108f0 Description: python code static checker and UML diagram generator Homepage: http://www.pylint.org/ Description-md5: ac852fa6a8087434eff7b3e8cbe70dea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pyppd Priority: extra Section: python Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian Printing Group Architecture: all Version: 1.0.2-1 Depends: python3, python3:any (>= 3.3.2-2~), perl, xz-utils Filename: pool/main/p/pyppd/pyppd_1.0.2-1_all.deb Size: 15024 MD5sum: edaf6dee44f5bb919f81b1239f21c7c8 SHA1: c5c051292962a5fafd98df0d44d2f9ce40408689 SHA256: 147b7e86647a0c77545c74fb2cd33b583d107c0ddd7dde33d7fefa0c08369616 Description: CUPS PostScript Printer Driver's compressor and generator Homepage: http://pypi.python.org/pypi/pyppd Description-md5: 430c15cefec8779b4e345c966d8bf857 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pyqt4-dev-tools Priority: optional Section: python Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python, python-qt4 (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt4-xml (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/pyqt4-dev-tools_4.10.4+dfsg-1ubuntu1_i386.deb Size: 101716 MD5sum: 2c937453ac7e37bf7ae70bba7a762b0e SHA1: f21f5f1b46d5538d04ab0ff92b37a7f4e0ab21fa SHA256: c69c8f429ec2b7f2d79a440208602aef42893c81437a6715633e7220dbcf30b5 Description: Development tools for PyQt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: bc75f36d68f1c5b0a35d9d37acb84260 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: pyqt5-dev Priority: optional Section: python Installed-Size: 2543 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-sip-dev Filename: pool/main/p/pyqt5/pyqt5-dev_5.2.1+dfsg-1ubuntu1_all.deb Size: 258576 MD5sum: a07bc1215322ba3d0f1a76a8cb455c75 SHA1: 314f4dfc4e5012c04522d0259dcbcd3d460c5272 SHA256: e662b0963d1212fcf0c0c2b168638d606ed503f9d669833518b24f2368178396 Description: Development files for PyQt5 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: f8cbcee0368d34a312a8917b96b1992d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pyqt5-doc Priority: optional Section: doc Installed-Size: 5268 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Suggests: pyqt5-examples Filename: pool/main/p/pyqt5/pyqt5-doc_5.2.1+dfsg-1ubuntu1_all.deb Size: 319068 MD5sum: 7e6045375087aebf7b1dd996f7941880 SHA1: 0f924c8e3ff17a7c3a02ed26a981063337c388d3 SHA256: 99c37486e8802082a599bd341b50c986aec291489b68d73ecd1498f4065f7fc7 Description: Documentation for PyQt5 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 017d46c293cc5562ac94a12bef5ef3c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: pyqt5-examples Priority: optional Section: python Installed-Size: 7711 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5, libjs-jquery Suggests: qt5-doc Filename: pool/main/p/pyqt5/pyqt5-examples_5.2.1+dfsg-1ubuntu1_all.deb Size: 1819510 MD5sum: b33155217fe3923181f162be6072a7e1 SHA1: 7e805a787de5ed34dc2d20601b9dbf1abcc80c36 SHA256: d8254842e8c64fba3e395da1480e1ac44c60d032d842925a3bcc94d6dfea63bd Description: Examples and demos for PyQt5 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: d62c291d8eb4fd9f644fa9a6b27c31ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python Priority: optional Section: python Installed-Size: 671 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Replaces: python-dev (<< 2.6.5-2) Provides: python-ctypes, python-email, python-importlib, python-profiler, python-wsgiref Depends: python2.7 (>= 2.7.5-1~), python-minimal (= 2.7.5-5ubuntu3), libpython-stdlib (= 2.7.5-5ubuntu3) Suggests: python-doc (= 2.7.5-5ubuntu3), python-tk (>= 2.7.5-1~) Conflicts: python-central (<< 0.5.5) Breaks: python-bz2 (<< 1.1-8), python-csv (<< 1.0-4), python-email (<< 2.5.5-3), update-manager-core (<< 0.200.5-2) Filename: pool/main/p/python-defaults/python_2.7.5-5ubuntu3_i386.deb Size: 133348 MD5sum: bedbbc84b96695743c69f0c9b8e4f25c SHA1: 3e7c2df98521533d9440b844233a5a96df2ad349 SHA256: 48b313948ea098f805ec3a13b19a6a2023bcc7209ddefec0f86ff917d9b8923b Description: interactive high-level object-oriented language (default version) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: d1ea97f755d8153fe116080f2352859b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-adns Priority: optional Section: python Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Version: 1.2.1-5build3 Replaces: python2.3-adns (<< 1.0.0-6.2), python2.4-adns (<< 1.0.0-6.2) Provides: python2.7-adns Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libadns1 (>= 1.4), libc6 (>= 2.4) Conflicts: python2.3-adns (<< 1.0.0-6.2), python2.4-adns (<< 1.0.0-6.2) Filename: pool/main/p/python-adns/python-adns_1.2.1-5build3_i386.deb Size: 14346 MD5sum: 8729ca9b4dc133b2593c3bd57122f461 SHA1: 6af4e4ed6a385f55f3c4811d7a1d3efbf09c06a5 SHA256: b452183571c218269105925c89914db40bf45de9b346935ce7a6385b0342a5e8 Description: Python bindings to the asynchronous DNS resolver library Homepage: http://code.google.com/p/adns-python/ Description-md5: 4efefc58d175ecdcc6723ddf24be0db6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-all Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (= 2.7.5-5ubuntu3), python2.7 (>= 2.7.2-3) Filename: pool/main/p/python-defaults/python-all_2.7.5-5ubuntu3_i386.deb Size: 984 MD5sum: 8588addb8aed1b5f49643592ad7c8342 SHA1: 4ef3f51b5fbcad706107c390fa3dd292d109fec3 SHA256: f43e9dff7838aff7c78688ae73e7f36a2ac0a9ce68401e2b8f3fef0ead42d527 Description: package depending on all supported Python runtime versions Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 14c468e5025a2ad18b8e7e342d6f5a99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-all-dbg Priority: extra Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (= 2.7.5-5ubuntu3), python-all (= 2.7.5-5ubuntu3), libpython-all-dbg (= 2.7.5-5ubuntu3), python-dbg (= 2.7.5-5ubuntu3), python2.7-dbg (>= 2.7-7) Filename: pool/main/p/python-defaults/python-all-dbg_2.7.5-5ubuntu3_i386.deb Size: 1006 MD5sum: 3d4a8f9d8a75c059188ac1275e3eb2d0 SHA1: cbfc7a54dd432e8c8db28f33165254173db15424 SHA256: aa5b1c6600bfca7f1eac02e24e11489edc3b7edda4c2180fff602a0507071a05 Description: package depending on all supported Python debugging packages Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 4de13b4c938793e128652b43e60966fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-all-dev Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (= 2.7.5-5ubuntu3), python-all (= 2.7.5-5ubuntu3), libpython-all-dev (= 2.7.5-5ubuntu3), python-dev (= 2.7.5-5ubuntu3), python2.7-dev (>= 2.7-7) Filename: pool/main/p/python-defaults/python-all-dev_2.7.5-5ubuntu3_i386.deb Size: 1006 MD5sum: 260a6db8ff42e546b388402752250265 SHA1: 96d9c36b5b0d6cc70540bf38631827773e1a3ddd SHA256: 2c5ef2b8ff7e6dfb4bb68ea545e47b4dcdba0e59f70ed8f178835991c579838f Description: package depending on all supported Python development packages Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 36aea35250eb42eb8dfe870c124f95c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-amqp Priority: optional Section: python Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.3.3-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-amqp-doc Filename: pool/main/p/python-amqp/python-amqp_1.3.3-1ubuntu1_all.deb Size: 35178 MD5sum: ed5b257f56c4c06b2cfb1681c46162fd SHA1: adf87dd896ffd2a52f06665c8fe47fdfb660e697 SHA256: 60f317014b4d958ce6663b356bb502c7ce2b12f3fccdab07c60c8c00e66dc3ed Description: Low-level AMQP client Homepage: https://github.com/celery/py-amqp Description-md5: 384d5af6fca84b4dc192fb6ba5e17385 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-amqp-doc Priority: extra Section: doc Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-amqp Version: 1.3.3-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-amqp/python-amqp-doc_1.3.3-1ubuntu1_all.deb Size: 46140 MD5sum: ff653ef0ae6b883f10cf7bdd0addbbd7 SHA1: 7975a6555f9eaf8b7080a845989785994572eaed SHA256: 3b5baa85199d00047041d14448a4f104dfda19f811a542296de9560516a50f53 Description: Low-level AMQP client (Documentation) Homepage: https://github.com/celery/py-amqp Description-md5: d21bba7f367ea48b74253f5ba32ad571 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-amqplib Priority: optional Section: python Installed-Size: 199 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Version: 1.0.2-1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Suggests: python-amqplib-doc Filename: pool/main/p/python-amqplib/python-amqplib_1.0.2-1_all.deb Size: 34926 MD5sum: c5fbd5a52f7b755bc35866748d34a327 SHA1: 38734b46b3f5c74064e806e8e50585e7b07f8702 SHA256: e609ca152940daad8093ec28696746048ac4965199fa0821daa83158810418e2 Description: simple non-threaded Python AMQP client library Homepage: http://barryp.org/software/py-amqplib/ Description-md5: 86e5c838fa177a4f25a8f9a91377c826 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-amqplib-doc Priority: optional Section: doc Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Source: python-amqplib Version: 1.0.2-1 Filename: pool/main/p/python-amqplib/python-amqplib-doc_1.0.2-1_all.deb Size: 22610 MD5sum: b4daeadd6fc56ac7200e9d45906b5552 SHA1: 1bbd86e088d5980e9a1766198cf2ff05ddc99e7f SHA256: f22612cfa18f623b5d390ef24e0c121f1f9f43021a1abcb1c784ee082649717f Description: simple non-threaded Python AMQP client library (Documentation) Homepage: http://barryp.org/software/py-amqplib/ Description-md5: ab48c00eb1de2601274d9385fe6f1ac3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-anyjson Priority: optional Section: python Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.3.3-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-anyjson/python-anyjson_0.3.3-1build1_all.deb Size: 7096 MD5sum: 12fd230b8619d75b80d63b154b2b94d0 SHA1: c73b0f0c914be26d985b12aa4c0486191496a186 SHA256: 2931d5d57d2e2f31e538302e096fc910d661b19341133415f4937981c12cc48c Description: Common interface for the best available JSON implementation Homepage: http://bitbucket.org/runeh/anyjson/ Description-md5: 78d841d977be8e73745023d4460d2ab5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-appconf Priority: extra Section: python Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-django-appconf Version: 0.5-2build1 Provides: python2.7-appconf Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-django (>= 1.1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-django-appconf/python-appconf_0.5-2build1_all.deb Size: 7696 MD5sum: 8733edb63cd4c860b360735aa5677f2b SHA1: 716fff073da1712a11722432f70559999a135ce7 SHA256: 1f2396e019cebf95a4da44e2c0cda0289a38f39b59d2d70d99d2a5bbc7d9bb4a Description: helper class for handling configuration defaults of packaged apps gracefully Homepage: http://pypi.python.org/pypi/django-appconf/ Description-md5: 416d06d01e1a1d6de3912ba759a24f25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-appindicator Priority: optional Section: python Installed-Size: 82 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libappindicator Version: 12.10.1+13.10.20130920-0ubuntu4 Provides: python2.7-appindicator Depends: libappindicator1 (= 12.10.1+13.10.20130920-0ubuntu4), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.35.4), libgtk2.0-0 (>= 2.12.0), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-gobject Filename: pool/main/liba/libappindicator/python-appindicator_12.10.1+13.10.20130920-0ubuntu4_i386.deb Size: 7454 MD5sum: 3f2cddcc3a5c71f7d3ba1896126ee6a9 SHA1: 53d52f5936528e1ad9acd84d513d0951d42e7033 SHA256: 829bcc77728617917f22d16332a04956523ec26365de3c47540876e417730541 Description: Python bindings for libappindicator Homepage: https://launchpad.net/libappindicator Python-Version: 2.7 Description-md5: ddae6e8519270caee1fddd3ab07dcfe5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-video Package: python-apport Priority: optional Section: python Installed-Size: 522 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-apt (>= 0.7.9), python-problem-report (>= 0.94), lsb-release, python-launchpadlib (>= 1.5.7) Recommends: apport Filename: pool/main/a/apport/python-apport_2.14.1-0ubuntu3_all.deb Size: 74900 MD5sum: 56b9c609c21a18a40f63d1b17a51abbd SHA1: d934525128d11af8684bc0b9ab64c5bb6f654508 SHA256: b21302587ad87383786314de96ddfa8e5e4a4ccaaa11394a7ff9b6d417bd2181 Description: Python library for Apport crash report handling Homepage: https://wiki.ubuntu.com/Apport Description-md5: 23518535b15759d78d26010a6b43517a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-apt Priority: optional Section: python Installed-Size: 600 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: i386 Version: 0.9.3.5 Provides: python2.7-apt Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libapt-inst1.5 (>= 0.8.11), libapt-pkg4.12 (>= 0.9.11), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), python-apt-common Recommends: lsb-release, iso-codes, xz-utils Suggests: python-apt-dbg, python-gtk2, python-vte, python-apt-doc Breaks: apt-forktracer (<< 0.3), apt-listchanges (<< 2.85), apt-p2p (<< 0.1.6), apt-xapian-index (<< 0.25), aptdaemon (<< 0.11+bzr343-1~), aptoncd (<< 0.1.98+bzr117), bcfg2 (<< 1.0.1), bzr-builddeb (<< 2.4), computer-janitor (<< 1.14.1-1+), debdelta (<< 0.41+), debpartial-mirror (<< 0.2.98), debsecan (<< 0.4.15), gdebi (<< 0.6.1), germinate (<< 1.21), gnome-codec-install (<< 0.4.5), mini-dinstall (<< 0.6.28), packagekit-backend-apt (<= 0.4.8-0ubuntu4), python-cdd (<< 0.0.10), python-dogtail (<< 0.6.1-3.1+), python-software-properties (<< 0.70.debian-1+), rebuildd (<< 0.3.9), software-center (<< 1.1.21debian2), tla-buildpackage (<< 0.9.14), ubuntu-dev-tools (<< 0.93debian1), unattended-upgrades (<< 0.42debian2), update-manager (<< 0.200.2-1), update-notifier (<< 0.99.3debian9), wajig (<< 2.0.46) Filename: pool/main/p/python-apt/python-apt_0.9.3.5_i386.deb Size: 137266 MD5sum: e6341b3296856c2b74e607d5443dbcb8 SHA1: 928c85a9e9bf61d313a88960f8fac05556ae35e3 SHA256: a71f9f387fd773ec065b3a8b1d53aad5a2310b3a4edba4e1abdd0f90523e3476 Description: Python interface to libapt-pkg Multi-Arch: allowed Description-md5: 2b295efc7c4e39a13486f5a6990ce22b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-apt-common Priority: standard Section: python Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: all Source: python-apt Version: 0.9.3.5 Replaces: python-apt (<< 0.7.98+nmu1) Depends: python | python3 Breaks: python-apt (<< 0.7.98+nmu1) Filename: pool/main/p/python-apt/python-apt-common_0.9.3.5_all.deb Size: 17290 MD5sum: 7a0b4faf10099baafe694a3a6dd11f4f SHA1: 1d33af54fc2b0dffcacb6991284b1fa92103a74f SHA256: 5e41b5943204dbdd993c0b523738c5f95212b84176d2e19d9f2555185776e0b1 Description: Python interface to libapt-pkg (locales) Enhances: python-apt, python3-apt Description-md5: 9486cdd426b423b724eaae43fef5dcd7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python-apt-dbg Priority: extra Section: python Installed-Size: 5097 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: i386 Source: python-apt Version: 0.9.3.5 Depends: python-dbg, python-apt (= 0.9.3.5), libapt-inst1.5 (>= 0.8.11), libapt-pkg4.12 (>= 0.9.11), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Filename: pool/main/p/python-apt/python-apt-dbg_0.9.3.5_i386.deb Size: 2258684 MD5sum: f9f18f691a1a59525188b58a2ca7f517 SHA1: 3cf04f52ff877cc165077753246c47b2ba289269 SHA256: 24036387ae4ac4a755262a42a3c2c80202e2ab065ab1b690e9e62c5c7404a7e2 Description: Python interface to libapt-pkg (debug extension) Multi-Arch: allowed Description-md5: c794a1d7769c7ce363f782474b040101 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-apt-dev Priority: optional Section: python Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: all Source: python-apt Version: 0.9.3.5 Depends: python-apt (>= 0.9.3.5), libapt-pkg-dev (>= 0.7.10) Recommends: python-dev Filename: pool/main/p/python-apt/python-apt-dev_0.9.3.5_all.deb Size: 7440 MD5sum: d6569cd088d7a046af8f14e5d810a49c SHA1: b35bda0babcc929d974e9b02444b716182a59cfe SHA256: 405a1f5e55b92c482b30b21f71fea2e299e2e59907bce641a9b243fd3743fd4d Description: Python interface to libapt-pkg (development files) Description-md5: 57c4bd1cc13f9b16f01048f636ef0d16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-apt-doc Priority: optional Section: doc Installed-Size: 1297 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: all Source: python-apt Version: 0.9.3.5 Replaces: python-apt (<< 0.7.94) Depends: libjs-jquery, libjs-underscore, python-apt, libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-apt/python-apt-doc_0.9.3.5_all.deb Size: 152324 MD5sum: 2821b5b858770c2ed0c4fff5795f01f9 SHA1: cd273fdbd10255892f45323fb4e94964eb7d6455 SHA256: 9b3ccc422fab9d8791db025dc0ce1c15fd67a75a8938c73d0d293d436abc7e9b Description: Python interface to libapt-pkg (API documentation) Enhances: python-apt Description-md5: 7a48d828395ece3f06a390d4c68abdd0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-aptdaemon Priority: extra Section: python Installed-Size: 448 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-apt (>= 0.8.5~ubuntu1), python-debian, python-defer, python-dbus, python-gi, gir1.2-glib-2.0, python-pkg-resources, iso-codes Recommends: aptdaemon Filename: pool/main/a/aptdaemon/python-aptdaemon_1.1.1-1ubuntu5_all.deb Size: 65938 MD5sum: 4f9606ac7bd64fd3afdb3ce0c15997d6 SHA1: 45fed39b8d2da1f78cacee7b2c50c4a6d2ec2fcc SHA256: aed6c071a3d5fa7a87c203b13c177c49cf23f8092ead132a5d0784299f2d72f8 Description: Python 2 module for the server and client of aptdaemon Homepage: https://launchpad.net/aptdaemon Description-md5: af231c48c418c5a683cb32aca40f79a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-aptdaemon.gtk3widgets Priority: extra Section: python Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Replaces: python-aptdaemon-gtk (<< 0.41+bzr582-0ubuntu1) Depends: python-aptdaemon (= 1.1.1-1ubuntu5), python-gi, gir1.2-gtk-3.0, gir1.2-vte-2.90, aptdaemon-data Conflicts: python-aptdaemon-gtk (<< 0.41+bzr582-0ubuntu1) Filename: pool/main/a/aptdaemon/python-aptdaemon.gtk3widgets_1.1.1-1ubuntu5_all.deb Size: 13684 MD5sum: d2e654fcddff8239de7618c3a398ccd8 SHA1: e32766a6412105352c053e17d5fde6a6e2efee73 SHA256: 45ca3f5a9ba70b920ceedb699f43c0630ea84936a34b3fc58b132239b1023570 Description: Python 2 GTK+ 3 widgets to run an aptdaemon client Homepage: https://launchpad.net/aptdaemon Description-md5: ee3f4b4132c327a33f42e41d36afbbb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-astroid Priority: optional Section: python Installed-Size: 298 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: astroid Version: 1.0.1-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-logilab-common (>= 0.60.0) Filename: pool/main/a/astroid/python-astroid_1.0.1-1_all.deb Size: 48508 MD5sum: 9a46fd0e227ab5f3a2e21f83903215d0 SHA1: 53cd3d745f9a854b49450572a29a2cf8030550aa SHA256: 9f7dd5767aa91c5b11b50e877dc78fc3129d51dbc2baeaf663bdcef6580903c2 Description: rebuild a new abstract syntax tree from Python's AST Homepage: http://www.astroid.org/ Description-md5: e39bd027177663ac42fd9d41d2b6154b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-avahi Priority: optional Section: python Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: avahi Version: 0.6.31-4ubuntu1 Provides: python2.7-avahi Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-gdbm (>= 2.4.3-1), libavahi-common-data (>= 0.6.22), python-dbus Filename: pool/main/a/avahi/python-avahi_0.6.31-4ubuntu1_i386.deb Size: 8166 MD5sum: 049254749fcd8b4798c6b0fd76ad413c SHA1: 8ca7d462a370e6715fe33325f3c305058e1684fb SHA256: b24c24136cdf0b857d18c2ac6b48a3e3048dcf8d79926ca91e563f18cfd36e52 Description: Python utility package for Avahi Homepage: http://avahi.org/ Description-md5: 093e21cc6d98e14410050c8edd9d6fe2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-babel Priority: optional Section: python Installed-Size: 395 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.3+dfsg.1-2ubuntu1 Depends: python-babel-localedata (= 1.3+dfsg.1-2ubuntu1), python-pkg-resources, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any, python-tz Filename: pool/main/p/python-babel/python-babel_1.3+dfsg.1-2ubuntu1_all.deb Size: 68964 MD5sum: 116fb963a65da253773cb3be6ca287d6 SHA1: 63644122e32533a9a99e9f23e0b9aa852ffb351e SHA256: 5491c34d3885a4f09cb51990115a34c23c155326e5c3de4ae9555dcddcf13324 Description: tools for internationalizing Python applications - Python 2.x Homepage: http://babel.pocoo.org/ Description-md5: 5e6a3ac9eaed3843484d2718c2f9d35d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-babel-doc Priority: optional Section: doc Installed-Size: 774 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-babel Version: 1.3+dfsg.1-2ubuntu1 Replaces: python-babel (<< 1.3-1) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-babel (<< 1.3-1) Filename: pool/main/p/python-babel/python-babel-doc_1.3+dfsg.1-2ubuntu1_all.deb Size: 150924 MD5sum: 56521a38c173bd383ff44f4c4a2265ce SHA1: 64646cd4245791365212d08a4cf36fbf63bc50ef SHA256: 71578ed25d1d368119edd76754a3a48019e2943a5c8195874e10fd4e04a73c28 Description: tools for internationalizing Python applications - documentation Homepage: http://babel.pocoo.org/ Description-md5: 4f74ab1584e691c235ee789840cca103 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-babel-localedata Priority: optional Section: python Installed-Size: 8541 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-babel Version: 1.3+dfsg.1-2ubuntu1 Filename: pool/main/p/python-babel/python-babel-localedata_1.3+dfsg.1-2ubuntu1_all.deb Size: 1927990 MD5sum: d674d916062362f39ebfd777115ae6bf SHA1: 114c92180a70adcaed783c67edf6ef435234037d SHA256: e5f3e3ca7a9127a90663eb34c2c3548e04194f8443ce968479e5c9e4670af9f2 Description: tools for internationalizing Python applications - locale data files Homepage: http://babel.pocoo.org/ Description-md5: ebab9984b05e3d588082935526c691e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-beanstalkc Priority: optional Section: python Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: beanstalkc Version: 0.3.0-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-yaml Suggests: beanstalkd Filename: pool/main/b/beanstalkc/python-beanstalkc_0.3.0-2build1_all.deb Size: 10808 MD5sum: b177ff60f3fc9ae584e409e53019e0cc SHA1: 275675a0424b067ab394030d1a1402d3094b345c SHA256: e84991392878b2bb6e2145961ce3ff40928d8d4ecf8244516fb9a4a1e9447341 Description: simple beanstalkd client library for Python Homepage: https://github.com/earl/beanstalkc Description-md5: 550d37d546ba115ecf6ebb52607af71f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-billiard Priority: optional Section: python Installed-Size: 357 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: billiard Version: 3.3.0.15-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.15) Suggests: python-billiard-doc Filename: pool/main/b/billiard/python-billiard_3.3.0.15-1ubuntu1_i386.deb Size: 69860 MD5sum: 803611e5285bf5fc078709459cff41d1 SHA1: 8a0b5f5cf3204c4128b6e8e639eb16e2481828b9 SHA256: 3657c94842c08ea0b68a71f2d2b604b3cf9e7f5484cec313ff3fcccc55bfd9d2 Description: Multiprocessing Pool Extensions for Python Homepage: https://github.com/celery/billiard Description-md5: cc54d1dc3b39cfbcd0f242977fa3a1d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-billiard-doc Priority: optional Section: doc Installed-Size: 597 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: billiard Version: 3.3.0.15-1ubuntu1 Depends: libjs-jquery, libjs-sphinxdoc (>= 1.0) Filename: pool/main/b/billiard/python-billiard-doc_3.3.0.15-1ubuntu1_all.deb Size: 71900 MD5sum: d28712d927b4f443ae6ef2e8593e4729 SHA1: 1785df7f70f2fd7c70f5ae6f317520f9e4645b2e SHA256: 7693354b2f32e336f336540d96601272a51d0c1fca592726098d50f8d8b47097 Description: Multiprocessing Pool Extensions for Python (Documentation) Homepage: https://github.com/celery/billiard Description-md5: b0aba88f799c7680898d639f8974020c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-blinker Priority: optional Section: python Installed-Size: 200 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: blinker Version: 1.3.dfsg1-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/b/blinker/python-blinker_1.3.dfsg1-1ubuntu2_all.deb Size: 29772 MD5sum: 1084d75f917fed1cd00fe11edd5695e6 SHA1: 3d4c2d320fd699cfb89125545906cf8e703c055b SHA256: bdb906d432712d3299619ca1ebd438e2a5015fbc69564782887094492d953a5b Description: Fast, simple object-to-object and broadcast signaling library Homepage: http://pythonhosted.org/blinker/ Description-md5: 8356f57b8812ba9febee8d4bff066108 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-boto Priority: optional Section: python Installed-Size: 3989 Maintainer: Ubuntu Developers Original-Maintainer: Eric Evans Architecture: all Version: 2.20.1-2ubuntu2 Provides: python2.7-boto Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-requests Filename: pool/main/p/python-boto/python-boto_2.20.1-2ubuntu2_all.deb Size: 617926 MD5sum: dea56cd0b6d15986d8d950c12a711cb7 SHA1: b3eaee294ddc972964a27cb659a90d0595b0115f SHA256: f5e5d6487aef905cfe727c4cb21bccad3140c746a6b08eaa784269a9439c6718 Description: Python interface to Amazon's Web Services Homepage: https://github.com/boto/boto Description-md5: ff8d0e24eb690ec98d55cc9351614981 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: python-bs4 Priority: optional Section: python Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: beautifulsoup4 Version: 4.2.1-1ubuntu2 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~) Recommends: python-chardet, python-lxml | python-html5lib Filename: pool/main/b/beautifulsoup4/python-bs4_4.2.1-1ubuntu2_all.deb Size: 58000 MD5sum: 88cdf603cfadcea1434107d4ffe454bd SHA1: d5fce2624778fc10a2671abc4bbd1ce23d274307 SHA256: 5e08a8fd2ba2134fd364f71e4c7f686e2f4ced42135d68d9f4327127651b2596 Description: error-tolerant HTML parser for Python Homepage: http://www.crummy.com/software/BeautifulSoup Description-md5: 09324a3331a4b1802471f3e7988a88cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-bs4-doc Priority: optional Section: doc Installed-Size: 493 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: beautifulsoup4 Version: 4.2.1-1ubuntu2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/b/beautifulsoup4/python-bs4-doc_4.2.1-1ubuntu2_all.deb Size: 86848 MD5sum: f4a1ab59f73b0494cad1da8fdcf3e1e2 SHA1: 3cb2a75301ade5a1c488b9cf72e61fd538976477 SHA256: 30175c6447422be826b90137a53ca86e21f18890a2090ef19fe4790d57ea3c9f Description: error-tolerant HTML parser for Python - documentation Homepage: http://www.crummy.com/software/BeautifulSoup Description-md5: 5fc5e5fb9c30054fd6d7ffda012debab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-bsddb3 Priority: optional Section: python Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Version: 6.0.1-1build1 Provides: python2.7-bsddb3 Depends: libc6 (>= 2.4), libdb5.3, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-bsddb3-dbg Filename: pool/main/p/python-bsddb3/python-bsddb3_6.0.1-1build1_i386.deb Size: 68298 MD5sum: 3135af177ce92511d017844c2a766b26 SHA1: 5c06e5d7a6b23fe4f8f9f96adb27c3fa0156605f SHA256: 8ee9a0e83a725cc58b3ae9d80123e43b28ff8969ba21c2409acd3ce5a753f675 Description: Python interface for Berkeley DB Homepage: http://pypi.python.org/pypi/bsddb3/ Description-md5: f7139ce9fe8bab9314dd91598a006c62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-bsddb3-dbg Priority: extra Section: python Installed-Size: 691 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-bsddb3 Version: 6.0.1-1build1 Provides: python2.7-bsddb3-dbg Depends: python-bsddb3 (= 6.0.1-1build1), python-dbg, libc6 (>= 2.4), libdb5.3 Filename: pool/main/p/python-bsddb3/python-bsddb3-dbg_6.0.1-1build1_i386.deb Size: 168314 MD5sum: 5337b340c8cd60fde04f859d26b004cd SHA1: 6427cb2ee8543c06463d8b0eee9abb3caffaabd5 SHA256: 1f053cf535805167ca53fbcdd453556b1b9dbde87413b4c25a9e616423ab007a Description: Python interface for Berkeley DB (debug extension) Homepage: http://pypi.python.org/pypi/bsddb3/ Description-md5: 3277e73ecffb5de543afbcdebd68ee15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-bsddb3-doc Priority: optional Section: doc Installed-Size: 446 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-bsddb3 Version: 6.0.1-1build1 Depends: libjs-jquery Suggests: python-bsddb3 | python3-bsddb Filename: pool/main/p/python-bsddb3/python-bsddb3-doc_6.0.1-1build1_all.deb Size: 76778 MD5sum: f32a3c95c4d432a5d3135cf87fddb9b2 SHA1: 882919c677297a27a10702bea6a57d8154d07628 SHA256: f39e6fdcd8db4dec2e157fead2f2acafed8675a72e52adb66823ae5765d28a0e Description: Documentation for the python Berkeley DB interface module Homepage: http://pypi.python.org/pypi/bsddb3/ Description-md5: f39a0315de65c5dc31ac83012068abe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-bson Priority: optional Section: python Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: i386 Source: pymongo Version: 2.6.3-1build1 Provides: python2.7-bson Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-bson-ext Filename: pool/main/p/pymongo/python-bson_2.6.3-1build1_i386.deb Size: 18392 MD5sum: fe9744bba70d10b403311bd0ae683add SHA1: 62a16c74a38920366b4601c98272dba6d26151f6 SHA256: 0962a163c04d6c0d9c55e6443e07f5aba0dfc10bcb0891af3b5cec2a03300f08 Description: Python implementation of BSON for MongoDB Homepage: http://api.mongodb.org/python/ Description-md5: 24c9d1f8de40c146a0ea5c924447b746 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-bson-ext Priority: optional Section: python Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: i386 Source: pymongo Version: 2.6.3-1build1 Provides: python2.7-bson-ext Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.4), python-bson (= 2.6.3-1build1) Filename: pool/main/p/pymongo/python-bson-ext_2.6.3-1build1_i386.deb Size: 18098 MD5sum: e154e5e37ef822159acb967c60a3e930 SHA1: cf14496b96c7c9a7c94562b696390c70c4996827 SHA256: a2424f5052eb33b5efe13ed08ba3aa858119f26648e3f3f98eb1a2690d19f3e1 Description: C-coded extension to the python-bson package Homepage: http://api.mongodb.org/python/ Description-md5: 24b483279d6d0f416623936f52653bcc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-bzrlib Priority: optional Section: python Installed-Size: 8004 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: i386 Source: bzr Version: 2.6.0+bzr6593-1ubuntu1 Replaces: bzr (<< 2.3.0-2), bzr-grep Provides: bzr-grep, python2.7-bzrlib Depends: python-configobj, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4) Recommends: ca-certificates, python-launchpadlib, python-paramiko Suggests: python-bzrlib-dbg, python-bzrlib.tests, python-gpgme, python-kerberos (>= 1.0+svn2455-1), python-pycurl, xdg-utils Breaks: bzr (<< 2.3.0-2), bzr-grep Filename: pool/main/b/bzr/python-bzrlib_2.6.0+bzr6593-1ubuntu1_i386.deb Size: 1322368 MD5sum: 11fb95e21153668dd2da25b06b0b6222 SHA1: 8903b66c132c0b5877112cefd139f1eb278659d5 SHA256: bb893b7f7907553f9785dd505348cf462e261dcda666fd20e3efed2bc91d2229 Description: distributed version control system - python library Homepage: http://bazaar-vcs.org Description-md5: 3d08f93122d35b20ee3a263e2354a06f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-bzrlib-dbg Priority: extra Section: debug Installed-Size: 4604 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: i386 Source: bzr Version: 2.6.0+bzr6593-1ubuntu1 Provides: python2.7-bzrlib-dbg Depends: python-bzrlib (= 2.6.0+bzr6593-1ubuntu1), python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.4) Suggests: python-gpgme-dbg, python-lzma-dbg, python-meliae-dbg Filename: pool/main/b/bzr/python-bzrlib-dbg_2.6.0+bzr6593-1ubuntu1_i386.deb Size: 1803704 MD5sum: 85f60c863ca189ed0cafa18e3134796f SHA1: f66e7286415f8e8474b621c14c2040b454c4377e SHA256: 514628099220376ad1e8c272b915104e6a2733f80a65453e7ba9eac74e8aee44 Description: distributed version control system - debug extension Homepage: http://bazaar-vcs.org Description-md5: 1674dbc86c155feffa7c032457b9315d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-bzrlib.tests Priority: optional Section: python Installed-Size: 8003 Maintainer: Ubuntu Developers Original-Maintainer: Debian Bazaar Maintainers Architecture: all Source: bzr Version: 2.6.0+bzr6593-1ubuntu1 Replaces: python-bzrlib (<< 2.4.0~beta1-2) Provides: python2.7-bzrlib.tests Depends: python-bzrlib (<= 2.6.0+bzr6593-1ubuntu1.1~), python-bzrlib (>= 2.6.0+bzr6593-1ubuntu1), python-testtools (>= 0.9.5~), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-subunit Breaks: python-bzrlib (<< 2.4.0~beta1-2) Filename: pool/main/b/bzr/python-bzrlib.tests_2.6.0+bzr6593-1ubuntu1_all.deb Size: 1009964 MD5sum: c8b0c20997c5255b5e4f126d4129dc0c SHA1: e336031232e5cc574eaec16d45d778df4b7489d9 SHA256: 449e323449e07861d6f551ab44111a9b54b359370027c05b6f81c34e03bb2eb3 Description: distributed version control system - testsuite Homepage: http://bazaar-vcs.org Description-md5: 6a061202c9118fa07cacafd938b725f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-cairo Priority: optional Section: python Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pycairo Version: 1.8.8-1ubuntu5 Provides: python2.7-cairo Depends: libc6 (>= 2.4), libcairo2 (>= 1.8.6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/pycairo/python-cairo_1.8.8-1ubuntu5_i386.deb Size: 39650 MD5sum: 1946fd18eaf6262c3166e490b2237294 SHA1: 1d0c902aa57c73175481bc14eaf846315788f961 SHA256: 70d813d0f187c1257a8e6877ce526d625e1e98324ca16e9e7c1288cd0c34e280 Description: Python bindings for the Cairo vector graphics library Homepage: http://cairographics.org/pycairo/ Description-md5: 00cd97c8f1191cab146612a823238c72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-cairo-dbg Priority: extra Section: python Installed-Size: 453 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pycairo Version: 1.8.8-1ubuntu5 Provides: python2.7-cairo-dbg Depends: python-cairo (= 1.8.8-1ubuntu5), python-dbg, libc6 (>= 2.4), libcairo2 (>= 1.8.6) Filename: pool/main/p/pycairo/python-cairo-dbg_1.8.8-1ubuntu5_i386.deb Size: 89614 MD5sum: 4921c496a3ccdc40970a3f4826e29fc0 SHA1: 83d73bf1385e55a2c119dc66ddaf41d2ced8a446 SHA256: 6312630e1daaba393a7d23a7528aeeab7f167cfd6c24a27d21126670b7c5bb55 Description: Python bindings for the Cairo vector graphics library (debug extension) Homepage: http://cairographics.org/pycairo/ Description-md5: 55ab0a294ecf91d25bb46fefb66a38ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-cairo-dev Priority: optional Section: python Installed-Size: 1150 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pycairo Version: 1.8.8-1ubuntu5 Depends: python-cairo (>= 1.8.8-1ubuntu5), libjs-jquery Filename: pool/main/p/pycairo/python-cairo-dev_1.8.8-1ubuntu5_all.deb Size: 432478 MD5sum: add6846d640032e33e0c134defab324b SHA1: 6a55ffa7eb842352f171e50fda3821b3812264eb SHA256: add5c553f706e4d3b49ef50f22bbfb5bafa42667dd58022bd508fe37c36a195e Description: Python cairo bindings: development files Homepage: http://cairographics.org/pycairo/ Description-md5: 9b9930dd3b007476c2d691b435f4e76a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-cddb Priority: optional Section: python Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Michael Banck Architecture: i386 Version: 1.4-5.1ubuntu2 Provides: python2.7-cddb Depends: libc6 (>= 2.7), python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/p/python-cddb/python-cddb_1.4-5.1ubuntu2_i386.deb Size: 14388 MD5sum: e03013c4b3cb2e3b7f47c6aa59656697 SHA1: 8f305ac41164d7e3b3197fe42b32caf4ceb51fc5 SHA256: 79ead082cc9e9ed280a96384abd7f9c9d98e51088a4146c838c3c1c53d972f1f Description: Python interface to CD-IDs and FreeDB Description-md5: 838c414ea893d464539e5e25ed077d79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ceilometer Priority: optional Section: python Installed-Size: 7295 Maintainer: Chuck Short Architecture: all Source: ceilometer Version: 2014.1-0ubuntu1 Depends: alembic (>= 0.6.0), python-msgpack, python-anyjson (>= 0.3.3), python-ceilometerclient (>= 1.0.6), python-eventlet (>= 0.13.0), python-flask (>= 0.10), python-glanceclient (>= 1:0.9.3), python-happybase (>= 0.4), python-iso8601 (>= 0.1.8), python-keystoneclient (>= 1:0.4.1), python-kombu (>= 2.4.8), python-lxml (>= 2.3), python-lockfile (>= 0.8), python-migrate, python-netaddr, python-novaclient (>= 1:2.15.0), python-oslo.config (>= 1:1.2.0), python-pecan (>= 0.2.0), python-pymongo (>= 2.6), python-six (>= 1.4.1), python-yaml (>= 3.1.0), python-requests (>= 1.1), python-sqlalchemy (>= 0.8.2), python-stevedore (>= 0.12), python-swiftclient (>= 1.5), python-webob (>= 1.2.3), python-wsme (>= 0.5b6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-croniter, python-jsonpath-rw, python-jsonschema, python-oslo.vmware, python-pbr, python-tz, python-sqlalchemy (<< 0.9) Suggests: python-pysnmp4 Filename: pool/main/c/ceilometer/python-ceilometer_2014.1-0ubuntu1_all.deb Size: 518776 MD5sum: 911f9a8528874c23d350a7592cfe556a SHA1: 67600e1c67dcf651aab6b8902ad5a118e0d1bdc5 SHA256: 985b4584db41361198c7a806722b7b3ac8cbae1527040619a0ed6ceb4fe20065 Description: ceilometer python libraries Description-md5: 69980abacf26c316054912129c1d53ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ceilometerclient Priority: extra Section: python Installed-Size: 348 Maintainer: Chuck Short Architecture: all Version: 1.0.8-0ubuntu1 Depends: python-prettytable (>= 0.6), python-keystoneclient (>= 0.3.2), python-httplib2, python-iso8601, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-six Filename: pool/main/p/python-ceilometerclient/python-ceilometerclient_1.0.8-0ubuntu1_all.deb Size: 47986 MD5sum: 3b2691f75c2dac864d2114f5207a9fac SHA1: 089a9d652e1f334e2228bdd02fa07dd31125af29 SHA256: 23d982d6ce805048651eac4a2b9dc7608d89adac2c5ce59335e2497caf8d39f3 Description: Client library for Openstack ceilometer server. Homepage: http://launchpad.net/ceilometer Description-md5: 8360711c53b0232a05d62ddd46e3d049 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-celery Priority: optional Section: python Installed-Size: 1886 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: celery Version: 3.1.6-1ubuntu1 Depends: python-billiard (>= 3.3.0.13), python-cl, python-dateutil (>= 1.5), python-kombu (>= 3.0.7), python-mailer, python-memcache, python-pkg-resources, python-pyparsing, python-tz, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-gevent, python-pytyrant, python-redis, python-sqlalchemy, python-celery-doc Filename: pool/main/c/celery/python-celery_3.1.6-1ubuntu1_all.deb Size: 330590 MD5sum: f625499c40a8b9c8988c3a8b9502822e SHA1: 2c2db53c55581f2593749bf74c665bdb49f75d8d SHA256: f7071f0c89b0f77b3eace53fdef6573fa8f3c4badeb976756e209f64bb44fdf4 Description: async task/job queue based on message passing Homepage: http://www.celeryproject.org/ Description-md5: 2a87703913499114efcab0bb9254c601 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-celery-doc Priority: optional Section: doc Installed-Size: 10228 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: celery Version: 3.1.6-1ubuntu1 Depends: libjs-jquery, libjs-sphinxdoc (>= 1.0) Filename: pool/main/c/celery/python-celery-doc_3.1.6-1ubuntu1_all.deb Size: 1285684 MD5sum: 75291d431ffdbe829c2ced01184e461d SHA1: 1e1647fba0618a6b2931ee50a2384845607cc348 SHA256: 8a79d11ee0de7ab55d268c4b3cdb93651d88e83a5d89d73fd2d87f715916e5a7 Description: async task/job queue based on message passing (Documentation) Homepage: http://www.celeryproject.org/ Description-md5: 95fc6dff7380be4c62fe3af0892bcc80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ceph Priority: optional Section: python Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Provides: python2.7-ceph Depends: libcephfs1 (= 0.79-0ubuntu1), librados2 (= 0.79-0ubuntu1), librbd1 (= 0.79-0ubuntu1), python-flask, python-requests, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/c/ceph/python-ceph_0.79-0ubuntu1_i386.deb Size: 35040 MD5sum: b31642a9c06146f93c3087dc06698f27 SHA1: 1043df63667b04f57f844d3e5ce7a37f9e05f409 SHA256: dbd2282c3e3670021d7936906576bafcb867c9db61bce2a2ac9e0ae9d8ec4550 Description: Python libraries for the Ceph distributed filesystem Homepage: http://ceph.com/ Description-md5: 0a80206bd610ad5550e3d80267effede Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-chardet Priority: optional Section: python Installed-Size: 569 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: chardet Version: 2.0.1-2build2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/c/chardet/python-chardet_2.0.1-2build2_all.deb Size: 106256 MD5sum: a4e008069af3cb800d58c7f13cb3c7ed SHA1: 3b8d252416dbe56bfab86d380085d657803f396f SHA256: 067e220937204942b45607097559d0c34fd703f6cdd7810a3eba6579ad1efff5 Description: universal character encoding detector Homepage: http://chardet.feedparser.org/ Description-md5: bebcbed8458764811c9f4b4c12489fdd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-cheetah Priority: optional Section: text Installed-Size: 770 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Fontaine Architecture: i386 Source: cheetah Version: 2.4.4-3.fakesyncbuild1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any, libc6 (>= 2.3.6-6~) Suggests: python-markdown (>= 2.0.1), python-pygments, python-memcache Filename: pool/main/c/cheetah/python-cheetah_2.4.4-3.fakesyncbuild1_i386.deb Size: 144020 MD5sum: 1a344eb9befec84d9cd410f4a6519c34 SHA1: 29ad0bd273c36268adee539276467cd838396c90 SHA256: 7b9e7d09740b9a8c14e5efa87707ab70d7d668742007f62d9737a785c8fef1b3 Description: text-based template engine and Python code generator Homepage: http://www.cheetahtemplate.org/ Description-md5: 7ea556f71dbb09af303eee70f24822f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-cherrypy3 Priority: optional Section: python Installed-Size: 21428 Maintainer: Ubuntu Developers Original-Maintainer: Gustavo Noronha Silva Architecture: all Source: cherrypy3 Version: 3.2.2-4ubuntu5 Depends: python-routes Conflicts: python-cherrypy Filename: pool/main/c/cherrypy3/python-cherrypy3_3.2.2-4ubuntu5_all.deb Size: 1209482 MD5sum: 0808cc717dbdcb232130c0232c919766 SHA1: c5482c306cf90fee12ecee8a3d5a34b6d7103930 SHA256: 38f6c0abf4ae5242955259178dd14b18cfdeb6ae1420ba7440d289177701d6e0 Description: Python web development framework - version 3 Homepage: http://www.cherrypy.org/ Description-md5: 10d84de63e31c2843a033a057faf9d79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-cinder Priority: extra Section: net Installed-Size: 26864 Maintainer: Chuck Short Architecture: all Source: cinder Version: 1:2014.1-0ubuntu1 Depends: python-amqplib (>= 0.6.1), python-anyjson (>= 0.3.3), python-babel, python-eventlet (>= 0.13.0), python-glanceclient (>= 1:0.9.0), python-greenlet (>= 0.3.2), python-iso8601, python-keystoneclient (>= 1:0.3.0), python-kombu (>= 2.5.12), python-lockfile, python-lxml (>= 2.3), python-migrate, python-netaddr, python-novaclient (>= 1:2.12.0), python-oslo.config (>= 1:1.1.0), python-oslo.messaging, python-paramiko (>= 1.8), python-paste, python-pastedeploy, python-routes, python-six (>= 1.4.1), python-sqlalchemy (>= 0.8.2), python-stevedore (>= 0.10), python-suds, python-swiftclient (>= 1:1.5), python-taskflow, python-webob (>= 1.2.3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-oslo.rootwrap, python-requests, python-sqlalchemy (<< 0.9) Suggests: python-ceph, python-hp3parclient Filename: pool/main/c/cinder/python-cinder_2014.1-0ubuntu1_all.deb Size: 843672 MD5sum: a71cf7ac0e23207502c6f29d620b0427 SHA1: c9370622ce2bc1f24ff401cd15e62c0ac4c669ab SHA256: 9605fca89ecab78bc61b0e43302dc78fb923e39f311faa834f767feb6cdce838 Description: Cinder Python libraries Homepage: http://launchpad.net/cinder Description-md5: 306e549f267870a6b2c0790521663c58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cinderclient Priority: optional Section: python Installed-Size: 685 Maintainer: Chuck Short Architecture: all Version: 1:1.0.8-0ubuntu1 Depends: python-prettytable (>= 0.6), python-requests (>= 1.1), python-simplejson (>= 2.0.9), python-babel, python-six, python-pkg-resources, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr Filename: pool/main/p/python-cinderclient/python-cinderclient_1.0.8-0ubuntu1_all.deb Size: 72240 MD5sum: e59e5205ebe2f6e32059cf05c7fc171a SHA1: 887e2a9e960e54e632f0ec19daf32150371d6dee SHA256: b3ef236a9545b2f698b833d8e35f7b125fc8c75faf7cea0e11e76a8b251a462b Description: python bindings to the OpenStack Volume API Description-md5: 879903d266dc4aabcfb1035f48ee9af2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cl Priority: optional Section: python Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.0.3-1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8), python-kombu Filename: pool/main/p/python-cl/python-cl_0.0.3-1_all.deb Size: 16058 MD5sum: 203c46f26b9baaf3bc8cef76a89e6f80 SHA1: 48632d9a1310cba14c3fa8ba2854f14053cdc3c6 SHA256: 7bcd3e85587374076677421ea6763b258a922dd2cd9d2988057d44caca2a5905 Description: Actor framework for Kombu Homepage: https://github.com/ask/cl Description-md5: ff9e9e5435578e1afb0791288197dc89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cliff Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.4.5-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-prettytable, python-pyparsing, python-cmd2 Recommends: python-cliff-doc (= 1.4.5-1ubuntu2) Filename: pool/main/p/python-cliff/python-cliff_1.4.5-1ubuntu2_all.deb Size: 16676 MD5sum: 77efcbc29f0887ee643ffff5aae1e7ca SHA1: 950a69c7d7a0c474b1d686e9351e453469478cae SHA256: 7406d215193443f30941311beb10ef82df9eebd090c2ba05a1d65dce465888b7 Description: command line interface formulation framework - Python 2.x Homepage: https://github.com/dreamhost/cliff Description-md5: 223752b60fcc9abd3243eec33e1472f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cliff-doc Priority: extra Section: doc Installed-Size: 261 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-cliff Version: 1.4.5-1ubuntu2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-cliff/python-cliff-doc_1.4.5-1ubuntu2_all.deb Size: 40776 MD5sum: 2db34045cf9a8edf0eec7dc00197ebdd SHA1: 856a18aa7f1f23e6b0b37302a8fed049bdb65cde SHA256: cd9874a6a495a521670a799a5475124dc2edfae79968a3a146f94c2df1a264f3 Description: command line interface formulation framework documentation Homepage: https://github.com/dreamhost/cliff Description-md5: 910a23f547d040b0d490f6fb1f1ccd5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cloudfiles Priority: extra Section: python Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.7.11-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-cloudfiles/python-cloudfiles_1.7.11-2build1_all.deb Size: 19720 MD5sum: 28af17a762e395d355a37c31de614bc5 SHA1: 533adfdc4fecc8a4b063ace8989b27e862d34d44 SHA256: 38f239bb802b4b634ccc4578582d207750685645593c17f956d95ee72f02183b Description: Python language bindings for Cloud Files API Homepage: https://github.com/rackerlabs/python-cloudfiles Description-md5: a4b587d9831cd6010420ba97b0346294 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: python-cmd2 Priority: optional Section: python Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: all Source: cmd2 Version: 0.6.7-2fakesync1build1 Provides: python2.7-cmd2 Depends: python-pyparsing (>= 2.0.1), python-setuptools (>= 0.6.14), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/c/cmd2/python-cmd2_0.6.7-2fakesync1build1_all.deb Size: 22214 MD5sum: 9b2fea5232b418bee0ae8144aee42e6b SHA1: 94856d40aabd4354934f474b786abe668e0b9755 SHA256: b7306f69233c7587e5fd4520144d340a73f58bb569aaf54d7b9c541cb3e5f3a2 Description: enhanced Python cmd module - Python 2.x Homepage: https://bitbucket.org/catherinedevlin/cmd2 Description-md5: 3388e979ddd67bb68046600a4f3eaa4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-commandnotfound Priority: optional Section: python Installed-Size: 61 Maintainer: Michael Vogt Original-Maintainer: Zygmunt Krynicki Architecture: all Source: command-not-found Version: 0.3ubuntu12 Replaces: command-not-found (<< 0.3ubuntu7) Depends: command-not-found-data, lsb-release, python-apt, python-gdbm, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: command-not-found (<< 0.3ubuntu7) Filename: pool/main/c/command-not-found/python-commandnotfound_0.3ubuntu12_all.deb Size: 5680 MD5sum: eba2dfacbc5a76f1d73c98dbe11ce728 SHA1: 755e943452d0acfacf4f573200fa2e38ebc81cb2 SHA256: 96c625105f0e9bb71b596a0d3b7de1ae9dec015e62c4a50dadf0e45252530f63 Description: Python 2 bindings for command-not-found. Description-md5: d96337be6b5fd670c35436523ffa3712 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-compressor Priority: optional Section: python Installed-Size: 375 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-django-compressor Version: 1.3-1ubuntu3 Provides: python2.7-compressor Depends: python-appconf, python-django (>= 1.1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-django-compressor/python-compressor_1.3-1ubuntu3_all.deb Size: 54990 MD5sum: 20f4b4477a68e5e6c78598a2338cf2c1 SHA1: 327e62f735da6e41310e3ed1fe47af8ad31bda5a SHA256: 71225ed162465a88f28e0c671ee7376d5a9cd1b608af33413e8a5342963cea0a Description: Compresses linked and inline JavaScript or CSS into single cached files Homepage: http://pypi.python.org/pypi/django_compressor/ Description-md5: 8909097d9aa253021150275739bfd61b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-concurrent.futures Priority: optional Section: python Installed-Size: 226 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 2.1.6-3 Provides: python-futures Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-concurrent.futures/python-concurrent.futures_2.1.6-3_all.deb Size: 32848 MD5sum: be8dfea9cff116aafc7c25491d304ead SHA1: 11a052bfed42339bc2a6fc4019dc415dc0e62bb0 SHA256: 9925b6d390af90b4f252ed02a9e07d3e706eb6769a4dc6abdb0fb4e9b83084f8 Description: backport of concurrent.futures package from Python 3.2 Homepage: http://code.google.com/p/pythonfutures/ Description-md5: cb9ad20cdd73d1557a337a8086cff30f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-configobj Priority: optional Section: python Installed-Size: 1523 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: configobj Version: 4.7.2+ds-5build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/c/configobj/python-configobj_4.7.2+ds-5build1_all.deb Size: 174154 MD5sum: e22c1f8dfb0ca0d36441c3166639beaa SHA1: 296ef10b82655acacb77e0368c64c32edaa342bc SHA256: 31b8bfa74c27605427f801aac708ce1fcf0cc5a6231939cb66263def2b336c35 Description: simple but powerful config file reader and writer for Python Homepage: http://www.voidspace.org.uk/python/configobj.html Description-md5: 6a7071a9d2e152114e27b4b5022af030 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server Package: python-convoy Priority: extra Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Architecture: all Source: convoy Version: 0.2.1+bzr20-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-paste Filename: pool/main/c/convoy/python-convoy_0.2.1+bzr20-0ubuntu2_all.deb Size: 8630 MD5sum: 1cdf0e70719a7d2cff02c429827e19c6 SHA1: dd8ed1d324b8899bf730453e806709a2da03b885 SHA256: 9777dbd9c1ae61be2512ccdb47b911ae13ab9aaae6b6c72ec525dfb793e834db Description: WSGI app for loading multiple files in the same request Homepage: https://launchpad.net/convoy Description-md5: 3e8535360f7cd75b601103f8952b4815 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-coverage Priority: optional Section: python Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: Ben Finney Architecture: i386 Version: 3.7.1+dfsg.1-1ubuntu2 Depends: python-pkg-resources, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3.6-6~) Recommends: libjs-jquery-hotkeys, libjs-jquery-isonscreen, libjs-jquery-tablesorter, libjs-jquery Filename: pool/main/p/python-coverage/python-coverage_3.7.1+dfsg.1-1ubuntu2_i386.deb Size: 69172 MD5sum: 84a63675d60c6495a1e4751b599f8978 SHA1: 59bd73bee8ebeaf88a3711e3039baeb955a9a547 SHA256: 34f1bd1e96f9eedb2a0b9cb3ec365326ea650d577443a77b78c686ed2e836442 Description: code coverage tool for Python 2 Homepage: http://nedbatchelder.com/code/coverage/ Description-md5: 14c3b431e2a6ada3274ee91e18a0b49c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-coverage-dbg Priority: extra Section: debug Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Ben Finney Architecture: i386 Source: python-coverage Version: 3.7.1+dfsg.1-1ubuntu2 Depends: python-coverage (= 3.7.1+dfsg.1-1ubuntu2), libc6 (>= 2.3.6-6~) Recommends: python-dbg Filename: pool/main/p/python-coverage/python-coverage-dbg_3.7.1+dfsg.1-1ubuntu2_i386.deb Size: 22860 MD5sum: 0852564a97facbce6170ab8319d072de SHA1: bfa26e633f30150926576e988f993079eef22a58 SHA256: ffc08aa26472d9d29e1e8d835c24f684f31670db9457a19066407818e1440a72 Description: code coverage tool for Python 2 – debug library Homepage: http://nedbatchelder.com/code/coverage/ Description-md5: b112f3389d0e2fb9ef3c7a3cc0c80ae9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-crochet Priority: optional Section: python Installed-Size: 120 Maintainer: Ubuntu Developers Original-Maintainer: MAAS Maintainers Architecture: all Source: crochet Version: 1.0.0-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-twisted Filename: pool/main/c/crochet/python-crochet_1.0.0-0ubuntu2_all.deb Size: 17486 MD5sum: 1b8db5e5f63bd924b9c06015cbc63667 SHA1: 40e3f86750675b1a1cb8243fd408f92f661aa47e SHA256: 0c61883b2410e78985c8a0f382148a6c7165b2591c6ae8f5dd37bf36722fc041 Description: Use Twisted Anywhere! Homepage: https://pypi.python.org/pypi/crochet Description-md5: b43a03a359a1ed6465a807e681fad4c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-croniter Priority: optional Section: python Installed-Size: 91 Maintainer: Chuck Short Architecture: all Version: 0.3.4-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-dateutil, python-pkg-resources Filename: pool/main/p/python-croniter/python-croniter_0.3.4-0ubuntu1_all.deb Size: 9666 MD5sum: cad5235306fd0714cc630eef59836bba SHA1: 3e10e8793b5bbcf416fa0ce8d5fb3e93d834734b SHA256: fd4bba2e460790c8c2d019fa2e94dfcc555259b28ae90c1a6f8fde1720538bcd Description: datetime iteration with cron format Description-md5: 340fc86fefe94ddd97f93a564f402e7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-crypto Priority: optional Section: python Installed-Size: 1345 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Ramacher Architecture: i386 Version: 2.6.1-4build1 Provides: python2.7-crypto Depends: python:any (>= 2.7.5-5~), python (>= 2.7~), python (<< 2.8), libc6 (>= 2.4), libgmp10 Suggests: python-crypto-dbg, python-crypto-doc Breaks: python-keyring (<= 0.7.1-1) Filename: pool/main/p/python-crypto/python-crypto_2.6.1-4build1_i386.deb Size: 233918 MD5sum: 80666bbabc83e72c405a0c6f3a01cc82 SHA1: a09a402dd62c47652518ac28f4a78c66e8e33146 SHA256: 80fce677e7d9ed60338ce577c5faf5244094644b68a60a568ce590cb3992fc28 Description: cryptographic algorithms and protocols for Python Homepage: http://www.pycrypto.org/ Description-md5: 896a9e15c57abdd08c19b8ce3f8ed940 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-crypto-dbg Priority: extra Section: python Installed-Size: 1221 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Ramacher Architecture: i386 Source: python-crypto Version: 2.6.1-4build1 Provides: python2.7-crypto-dbg Depends: python-crypto (= 2.6.1-4build1), libc6 (>= 2.4), libgmp10, python-dbg (>= 2.7~), python-dbg (<< 2.8) Filename: pool/main/p/python-crypto/python-crypto-dbg_2.6.1-4build1_i386.deb Size: 538784 MD5sum: d5f17e793783306f69f531ceb7eb2bb9 SHA1: 9731ddbdbcd5d5b3e41decd41e6d4a9ffc6f0c5a SHA256: 315960b0381e76d5f5e2a9e287c134a7d8f85e72552b19c1a12667f82e40e4ef Description: cryptographic algorithms and protocols for Python (debug extension) Homepage: http://www.pycrypto.org/ Description-md5: 2419ac9f0b85ada57da4be325fb7b4e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-crypto-doc Priority: optional Section: doc Installed-Size: 1566 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Ramacher Architecture: all Source: python-crypto Version: 2.6.1-4build1 Replaces: python-crypto (<< 2.3) Breaks: python-crypto (<< 2.3) Filename: pool/main/p/python-crypto/python-crypto-doc_2.6.1-4build1_all.deb Size: 73002 MD5sum: 500f7a09bedab8748bb9a44cfb7872a9 SHA1: 4afcbac6306087d4681e5d0058a11261b8e353ae SHA256: b7971168fadad14858d320045952f85723a887b72036bbaad9dea9b41a8875be Description: cryptographic algorithms and protocols for Python (documentation) Homepage: http://www.pycrypto.org/ Description-md5: fdb89b208649321be5347608baf761b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-cups Priority: optional Section: python Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: Otavio Salvador Architecture: i386 Version: 1.9.66-0ubuntu2 Provides: python2.7-cups Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.4), libcups2 (>= 1.6.0) Filename: pool/main/p/python-cups/python-cups_1.9.66-0ubuntu2_i386.deb Size: 52166 MD5sum: 1c3fc767fbd8b04e59b6e1bc184f3ab9 SHA1: 71e1f413fec5d73cfbd6999153e09bfc6e35c597 SHA256: 9b5ad45da1509d1945ab886141aadfb8eaa197e3a07b1981e1a1ec53374c1a59 Description: Python bindings for CUPS Description-md5: af3a80785033dbfaa0c6564ce547d8c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-cupshelpers Priority: optional Section: python Installed-Size: 222 Maintainer: Ubuntu Core Developers Original-Maintainer: Otavio Salvador Architecture: all Source: system-config-printer Version: 1.4.3+20140219-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pycurl Filename: pool/main/s/system-config-printer/python-cupshelpers_1.4.3+20140219-0ubuntu2_all.deb Size: 31984 MD5sum: 1c69fe36d9ff393eeeb057c4ba9fb56d SHA1: 820c1c800ed03ac953d17ab4eb0dfbc87be06b1d SHA256: 112b4e8888767b6964ac1d5fe9c66cec97bf281fa784817bdd6892f90424160d Description: Python modules for printer configuration with CUPS Description-md5: b3b2fc5788d1ff2c6780c013d733f898 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-curtin Priority: extra Section: python Installed-Size: 133 Maintainer: Ubuntu Developers Architecture: all Source: curtin Version: 0.1.0~bzr126-0ubuntu1 Depends: curl | wget, curtin-common (= 0.1.0~bzr126-0ubuntu1), util-linux (>= 2.20.1-1ubuntu3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/c/curtin/python-curtin_0.1.0~bzr126-0ubuntu1_all.deb Size: 20000 MD5sum: 1980660420dd1543304971de6a235802 SHA1: e28bd6dbca5fcdf59a5af82f82f1bc8b147aeb4d SHA256: 3adf2b8b0e0bf05876a0c489036fc79deed84de93fb4e3b6d81b8ffb33f7784d Description: Library and tools for curtin installer Homepage: http://launchpad.net/curtin Description-md5: 31e48f4bf426e243b1a4f94280ebcafb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-cxx-dev Priority: optional Section: python Installed-Size: 768 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pycxx Version: 6.2.5-1ubuntu2 Depends: python-dev, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: pkg-config Filename: pool/main/p/pycxx/python-cxx-dev_6.2.5-1ubuntu2_all.deb Size: 58584 MD5sum: 05762fd7913b0045d71a5ab129d4715b SHA1: 3d057490f6a585436ddc35eee3fec7461d5d5df9 SHA256: 50ca6000db5d0fd376cb45af193a2c38b93104613dcacccc7457753ba772fae2 Description: Set of facilities to extend Python with C++ Homepage: http://cxx.sourceforge.net Description-md5: 9132187ccf36068fd8445a06e281a6d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-d2to1 Priority: optional Section: python Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: d2to1 Version: 0.2.11-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources Filename: pool/main/d/d2to1/python-d2to1_0.2.11-1build1_all.deb Size: 19552 MD5sum: 21f044e6e201290ff4b579b18723f151 SHA1: 4520b2580dfdc1ccafcd02834a6c81ec8ba56468 SHA256: f0317b7b3c8a872c363256faf003a3cb0423701730bd12982bcf7b38063e66f7 Description: Python support for distutils2-like setup.cfg files as package metadata Homepage: http://pypi.python.org/pypi/d2to1 Description-md5: 21d606984098ddfc7f3784cb8cf2accb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-dateutil Priority: optional Section: python Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Guido Günther Architecture: all Version: 1.5+dfsg-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), tzdata Filename: pool/main/p/python-dateutil/python-dateutil_1.5+dfsg-1ubuntu1_all.deb Size: 48930 MD5sum: c2660e35f490a79c779f952cb2089339 SHA1: 74ffb46645bd116d07d8294aa2983665c31f344a SHA256: 5b50466d71701d0c437bfcf79c5bb832132fee0531583eb21a7fc0e0b1a06965 Description: powerful extensions to the standard datetime module Description-md5: d3486e9464ae6c15178963781d792d8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video Package: python-dbg Priority: extra Section: python Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (= 2.7.5-5ubuntu3), libpython-dbg (= 2.7.5-5ubuntu3), python2.7-dbg (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/python-dbg_2.7.5-5ubuntu3_i386.deb Size: 1248 MD5sum: 41bbe617fc6f737c00034d1cbea6d92c SHA1: 53fb4c919ec0b7f25da670b53c6b24806ec03c80 SHA256: 33664ed825ecabc8388fa0f5613b9b4e737b29910c0d161647758c08dbac8333 Description: debug build of the Python Interpreter (version 2.7) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: e3b066fc7e7e35acf0b9835629f67146 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-dbus Priority: optional Section: python Installed-Size: 380 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: dbus-python Version: 1.2.0-2build2 Replaces: python2.4-dbus Provides: python2.7-dbus Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libdbus-1-3 (>= 1.5.12), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.12.0), python-dbus-dev Recommends: python-gi | python-gobject-2 | python-qt4-dbus Suggests: python-dbus-doc, python-dbus-dbg Conflicts: python2.4-dbus Breaks: gajim (<< 0.11.1), gnome-osd (<< 0.12.0), python-qt4-dbus (<< 4.8.3-3) Filename: pool/main/d/dbus-python/python-dbus_1.2.0-2build2_i386.deb Size: 81226 MD5sum: 409a74e5c3aebf0ed80e8332d527061d SHA1: 8529230eecf322a6d4111d37e3cc2c802f34b01b SHA256: b5e34a661cb8ad8341cbc3561d36cd7e6a1b886580f2a253d9f54a1109b91092 Description: simple interprocess messaging system (Python interface) Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: 53b9ddf61580a04978ee4e167d46abbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-dbus-dbg Priority: extra Section: devel Installed-Size: 503 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: dbus-python Version: 1.2.0-2build2 Depends: python-dbg (>= 2.7), python-dbus (= 1.2.0-2build2), libc6 (>= 2.4), libdbus-1-3 (>= 1.5.12), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.12.0), python-dbg (<< 2.8) Filename: pool/main/d/dbus-python/python-dbus-dbg_1.2.0-2build2_i386.deb Size: 267856 MD5sum: a917282cbd846f53768ae16c33b90bff SHA1: 8bac427e76ae81b08cd7b1e7d502dadfa58af7c4 SHA256: 7ac1e7cf08234566c668991b9a264887ecc0ff61504cf3359a823ee04e4219a9 Description: debug build of the D-Bus Python 2 interface Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: 9d35fb4c4d665748b8e7363bb72b7fd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-dbus-dev Priority: optional Section: python Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: dbus-python Version: 1.2.0-2build2 Replaces: python-dbus (<< 1.0), python-dbus-common (<< 1.0) Breaks: python-dbus (<< 1.0), python-dbus-common (<< 1.0) Filename: pool/main/d/dbus-python/python-dbus-dev_1.2.0-2build2_all.deb Size: 5088 MD5sum: 85d5d7dde8f70301fab9c9722d5dcbce SHA1: bf543e34823ee5ee9d953be9cbc02717936193c3 SHA256: 65714ca92171b934b13fb79bdfadb292312cb0d49fd822294abd9f6cdb77be4d Description: main loop integration development files for python-dbus Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: deaabcfd5a33ab36c8726731b0709d9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-dbus-doc Priority: optional Section: doc Installed-Size: 2746 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: dbus-python Version: 1.2.0-2build2 Suggests: python-dbus | python3-dbus Filename: pool/main/d/dbus-python/python-dbus-doc_1.2.0-2build2_all.deb Size: 187288 MD5sum: 398d51659ae177c79f919c4f4d43ef9e SHA1: 2bae7d7cf4a5f70822718ff2728d671fac82fc81 SHA256: e5bbd84fab8857bb568ada26fcd530d9e05289aab0e2dfe38194773e95c34c1d Description: Documentation for the D-Bus Python interface Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: 878039eb5709b5bd87814481c7c849d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-debian Priority: optional Section: devel Installed-Size: 255 Maintainer: Ubuntu Developers Original-Maintainer: Debian python-debian Maintainers Architecture: all Version: 0.1.21+nmu2ubuntu2 Replaces: python-deb822 Provides: python-deb822 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-six, python-chardet Recommends: python-apt Suggests: gpgv Conflicts: python-deb822 Filename: pool/main/p/python-debian/python-debian_0.1.21+nmu2ubuntu2_all.deb Size: 49716 MD5sum: e10388ca452e95a567ca2097fa03797d SHA1: 16732e25057c89142895d42f8494b0713a021296 SHA256: f8b2399ef3de7d5a8f8f87e260e05da9c0d2427d52eb4ef80d1eedc8b130a329 Description: Python modules to work with Debian-related data formats Description-md5: 5be73b50401686d419b7e34949840340 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-debtagshw Priority: optional Section: python Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Enrico Zini Architecture: all Source: debtags Version: 1.12ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: gir1.2-gudev-1.0, laptop-detect, sane-utils, python-cups Filename: pool/main/d/debtags/python-debtagshw_1.12ubuntu2_all.deb Size: 9142 MD5sum: 895748bbb525ebfbbe75da44329eceed SHA1: b73815a45c680fcf2887a966ce87134c7ecefff3 SHA256: 0e6badb3c634fd30947bf6968675b53c3a1139e5e2cd34cf2cb6d8bc41609dbf Description: Match debtags hardware:: tags against the actual hardware Homepage: http://wiki.debian.org/Debtags Description-md5: f6dcb9759f69feb4ff0d4005e18e1368 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-decorator Priority: optional Section: python Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 3.4.0-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-decorator/python-decorator_3.4.0-2build1_all.deb Size: 19250 MD5sum: 14b3d2529bbf2ba7ea46553586ce24ed SHA1: 40a3ee011953c5948143c9f50c9210da782f679a SHA256: 022e136117c4f001d4a3ff8a6d9ad1687987f230f790cc39c40c5f65039412f3 Description: simplify usage of Python decorators by programmers Enhances: python-pylons Homepage: http://pypi.python.org/pypi/decorator Description-md5: 09bcb708a2302a7d9046e3a7b8bdcbef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-defer Priority: extra Section: python Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Heinlein (devel) Architecture: all Version: 1.0.6-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-dbus Filename: pool/main/p/python-defer/python-defer_1.0.6-2build1_all.deb Size: 10730 MD5sum: e15c0f851319d164024115bda6c4ccb7 SHA1: e50f98cbd61bc1b85978a308cedfe7c7b6783f54 SHA256: ab58824f35de9827f390d23399c313e97147d2b4b0f216ca69d9aac236f77e67 Description: Small framework for asynchronous programming (Python 2) Homepage: https://launchpad.net/python-defer Description-md5: 5374ea6dd17f3c3b5eed87b708848a5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-dev Priority: optional Section: python Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (= 2.7.5-5ubuntu3), libpython-dev (= 2.7.5-5ubuntu3), python2.7-dev (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/python-dev_2.7.5-5ubuntu3_i386.deb Size: 1176 MD5sum: 7a251b4c93da2835ac40446e38b649e2 SHA1: 3767d85019ec77b344a6997543e0f8870a6a2aea SHA256: 2dc3055c732939dab29b67537561fb6c87a36b9dddad9f1b26bbc73921c0b14f Description: header files and a static library for Python (default) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 93a1917c3f17606b40377d0b737c6c92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dictclient Priority: optional Section: interpreters Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: John Goerzen Architecture: all Source: dictclient Version: 1.0.3.1+nmu1build1 Provides: python2.7-dictclient Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: dictd Filename: pool/main/d/dictclient/python-dictclient_1.0.3.1+nmu1build1_all.deb Size: 11954 MD5sum: 3eb9b5b3f0e453ada60dbccd24303cbf SHA1: 161491bb69f881baa25eaac62fa91d53283a6d6d SHA256: e5a2ad70d918408edee3a17f5ff99c01ef4e4aff41f6f550dbbd26691f3091de Description: Python client library for DICT (RFC2229) protocol Description-md5: 0b723faf82aec6a575081838e29681c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dictdlib Priority: optional Section: interpreters Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: John Goerzen Architecture: all Source: dictdlib Version: 2.0.4.1+nmu1build1 Provides: python2.7-dictdlib Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: dictd Filename: pool/main/d/dictdlib/python-dictdlib_2.0.4.1+nmu1build1_all.deb Size: 13062 MD5sum: 49226a9b6bdaa6194ad78e038fb48021 SHA1: 878c46e18c376214479828a5d868f32ff84700b1 SHA256: 7a40fd9e0900216eaea970ad42047c85cecbb03ffcd5c4f73b2ed2a59ac1fae7 Description: Python library for generating dictd dictionaries Description-md5: 42c84cad9346056c6a7a9e4b886281a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-dirspec Priority: extra Section: python Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Micah Anderson Architecture: all Source: dirspec Version: 13.10-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/d/dirspec/python-dirspec_13.10-0ubuntu2_all.deb Size: 6300 MD5sum: e4361fd15dfd3423b70947b440ca665b SHA1: 2512f878be6760943c4a8efc036239841a443658 SHA256: c9ed3cab547ab2418f43b27ca00842b9c4e01433d175a8abe95ed977afdf454c Description: Python User Folders Specification Library Description-md5: 8d454d3d159ffa075ccfa0c11320987b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-distro-info Priority: optional Section: python Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Drung Architecture: all Source: distro-info Version: 0.12 Replaces: distro-info (<< 0.3~) Depends: distro-info-data, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: distro-info (<< 0.3~) Filename: pool/main/d/distro-info/python-distro-info_0.12_all.deb Size: 8082 MD5sum: 2cd49d3a5b11d44dfe84ac2fa383e8b5 SHA1: 60970a9095f9b1c44bd68c9800b930b5e547ecf7 SHA256: 089fccc01d329336caeb451c77a47f09a6c73d4be2dbc8b18e35260ca3059f0b Description: information about distributions' releases (Python module) Description-md5: d6f02716543992714864a0bcca58d98c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-distutils-extra Priority: optional Section: python Installed-Size: 132 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: all Version: 2.38-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), intltool Suggests: devscripts Filename: pool/main/p/python-distutils-extra/python-distutils-extra_2.38-1build1_all.deb Size: 21084 MD5sum: f82d8d27c41d74b255b5119b0b125468 SHA1: d253acab65c115ca2eb21136ef9690df8611b983 SHA256: c6c05ed90cdb5fd5ca45c15ee50314c00b9407ee451fb5822d7c096b0d127c1e Description: enhancements to the Python build system Python-Version: 2.7 Description-md5: cd0bab3114e0d4fcaed1d2a8bac3b411 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-django Priority: optional Section: python Installed-Size: 26788 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.6.1-2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: libjs-jquery Suggests: python-psycopg2, python-psycopg, python-mysqldb, python-flup, python-sqlite, python-yaml, geoip-database-contrib, gettext, python-django-doc, ipython, bpython, libgdal1 Filename: pool/main/p/python-django/python-django_1.6.1-2_all.deb Size: 2209896 MD5sum: 9ca403adee93d5ca2d36f47eb3348908 SHA1: da2f9347245a6c6a344869b147791192e31f4f92 SHA256: a40f2f1d5c5cb2c5d0ff6b5735ebcd8859fc6668850712fe2f201fb7180441d7 Description: High-level Python web development framework Homepage: http://www.djangoproject.com/ Description-md5: efe2f6ec2ae89851c710c280956fa785 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-django-doc Priority: optional Section: doc Installed-Size: 12822 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-django Version: 1.6.1-2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-django/python-django-doc_1.6.1-2_all.deb Size: 1733154 MD5sum: 6af8e9a083241075c5de496876e84b27 SHA1: 94592f5e731337ea98a6c952a69371800050faac SHA256: fa9b91d5245e5c42bfb3bc8139903b8b795c514420dfc2b2249a062e20c4eb88 Description: High-level Python web development framework (documentation) Homepage: http://www.djangoproject.com/ Description-md5: 257e8ca2132ad054b44d0dd521e727f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-django-horizon Priority: extra Section: net Installed-Size: 3515 Maintainer: Chuck Short Architecture: all Source: horizon Version: 1:2014.1-0ubuntu1 Depends: python-ceilometerclient, python-cinderclient, python-cloudfiles, python-compressor (>= 1.2), python-django (>= 1.4), python-glanceclient, python-heatclient, python-keystoneclient, python-lockfile, python-memcache, python-netaddr, python-neutronclient, python-novaclient, python-openstack-auth (>= 1.1.1), python-swiftclient, python-troveclient, python-tz, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: memcached Suggests: python-lesscpy Filename: pool/main/h/horizon/python-django-horizon_2014.1-0ubuntu1_all.deb Size: 575724 MD5sum: fe8eb6677c24021acc35eb1c6d5f2582 SHA1: ac779edb347f9c80458fa16184474ccd9c035078 SHA256: 3c548efcea1cb26af5f3a63abe5323fab54dca2777be6c6fdb3659cec803c8a7 Description: Django module providing web based interaction with OpenStack Homepage: http://launchpad.net/horizon Description-md5: e01c22c2a2b4bac5ec92884004d96488 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-django-maas Priority: optional Section: net Installed-Size: 2175 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Depends: python-amqp, python-celery, python-convoy, python-crochet, python-curtin, python-lockfile, python-lxml, python-maas-client (= 1.5+bzr2252-0ubuntu1), python-netaddr, python-oops, python-oops-amqp, python-oops-datedir-repo, python-oops-twisted, python-oops-wsgi, python-psycopg2, python-sphinx, python-tempita, python-twisted, python-txamqp, python-txlongpoll, python-zope.interface, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Conflicts: python-librabbitmq Filename: pool/main/m/maas/python-django-maas_1.5+bzr2252-0ubuntu1_all.deb Size: 188292 MD5sum: e74ce2d86a63955b911fb1a2ecf69d15 SHA1: c4a092f426bb1c5611ae195affd78938690ce505 SHA256: afdc0883852919f76927e9c5da9b35b59a25412cb5a8590e84382836ddb3df0c Description: MAAS server Django web framework Homepage: https://launchpad.net/maas Description-md5: 6a237d041e3acca832eb77e852460b95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-django-nose Priority: optional Section: python Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: django-nose Version: 1.2-1 Depends: python-django, python-nose, python:any (<< 2.8), python:any (>= 2.7.5-5~) Filename: pool/main/d/django-nose/python-django-nose_1.2-1_all.deb Size: 28058 MD5sum: 97de06f88a8bfdd2566a48fbd8a55b77 SHA1: d04fc3cb4829b94d0a985aa6bc1423dfa8102461 SHA256: bb35167d22f3664aaf38761189654cc00d587d5379dce7289cca0daddebf6d2a Description: Django test runner that uses python-nose Homepage: http://pypi.python.org/pypi/django-nose/ Description-md5: 25d07195787658768c03ed1c7c3e163f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-django-openstack Priority: extra Section: net Installed-Size: 33 Maintainer: Chuck Short Architecture: all Source: horizon Version: 1:2014.1-0ubuntu1 Depends: python-django-horizon (= 1:2014.1-0ubuntu1) Filename: pool/main/h/horizon/python-django-openstack_2014.1-0ubuntu1_all.deb Size: 1820 MD5sum: dfacd2879ef45dbda23aa02c84535f1c SHA1: 63f4ef263ac2a6380194ed7cb332da0bfebe32c9 SHA256: 445af8310af86ef27457eb12f3c8b6a3883c51dca5b3f041cbbbf0ea467124a6 Description: dummy transitonal package Homepage: http://launchpad.net/horizon Description-md5: bc3506c858027316e7f269ef93233538 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-django-piston Priority: optional Section: python Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.2.3-1ubuntu5 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-django (>= 1.1), python-oauth (>= 1.0.1), python-decorator Suggests: python-yaml Filename: pool/main/p/python-django-piston/python-django-piston_0.2.3-1ubuntu5_all.deb Size: 29760 MD5sum: ee827ff08ee1cbb5d67bdd9a9a6d4757 SHA1: 35c1bcdb70a7504743fcc924b4f8ea7a151ad6d3 SHA256: 294a2f8ca46e8606c0807f963f665aed93920edbfed6f614e85c78e3363d06c6 Description: Django mini-framework creating RESTful APIs Homepage: http://bitbucket.org/jespern/django-piston/wiki/ Description-md5: 19dbbc3e271c47f79ccf167028be72f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-django-south Priority: optional Section: python Installed-Size: 563 Maintainer: Ubuntu Developers Original-Maintainer: David Watson Architecture: all Version: 0.7.5-1.1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-django (>= 1.0.2) Filename: pool/main/p/python-django-south/python-django-south_0.7.5-1.1build1_all.deb Size: 78560 MD5sum: e919d09a375cb6baa93424ab3d2bee4b SHA1: 4d27db8523970cb6d947a0868e780744e8d43cbf SHA256: 533abcd65f393e7b90e9febf4e581a28821b8750b72bd73233a10e1768632028 Description: Intelligent schema migrations for django apps Homepage: http://south.aeracode.org/ Description-md5: 2f2e3e36d0209deb2bf452266bea1969 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-djorm-ext-pgarray Priority: optional Section: python Installed-Size: 47 Maintainer: Ubuntu Developers Architecture: all Source: djorm-ext-pgarray Version: 0.8-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/d/djorm-ext-pgarray/python-djorm-ext-pgarray_0.8-0ubuntu2_all.deb Size: 4064 MD5sum: 091a2207258a55a9f8fd986fad5814f0 SHA1: c92390f4f85f3db1852ed7cdde3e114fb8fd43eb SHA256: 3590fd0ca1de8fc701754d32dd65533ac355ed1f11b958c2b44bb31a80181c6b Description: PostgreSQL native array fields extension for Django Homepage: https://github.com/niwibe/djorm-ext-pgarray Description-md5: 2a34643747ab0d77d42de76fdec35061 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dns Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Scott Kitterman Architecture: all Version: 2.3.6-3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-dns/python-dns_2.3.6-3_all.deb Size: 25956 MD5sum: 34c7f050754596bd1bf406934623f6ff SHA1: 2785141aa83ad08a817b238b7c4bf7394a3d4ab3 SHA256: 2f3d808501a352e1dccc76d231f8dd1cb52d54b56bda917b723c719b11980378 Description: DNS client module for Python Homepage: http://sourceforge.net/projects/pydns/ Description-md5: a0c5946b1da52e2c5c0e7c1757ee1810 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dnspython Priority: optional Section: python Installed-Size: 532 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: dnspython Version: 1.11.1-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/d/dnspython/python-dnspython_1.11.1-1build1_all.deb Size: 83068 MD5sum: 35db39a27828f6a73a5015704615fc5b SHA1: a65b5aebf1533eef49d99dfdbd35cbf213a2c967 SHA256: 6a8c4bc2f2e3eac1c2aaba9b5ee229af7cbc7f32a5e38af9764b1bc35135ad1d Description: DNS toolkit for Python Homepage: http://www.dnspython.org Description-md5: 5c7ff37ec0055b47241c383f2c0e3c03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-audio Package: python-doc Priority: optional Section: doc Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-defaults Version: 2.7.5-5ubuntu3 Replaces: python (<< 2.3.5) Depends: python2.7-doc (>= 2.7.5-1~) Suggests: python-examples, python (= 2.7.5-5ubuntu3) Breaks: python (<< 2.3.5) Filename: pool/main/p/python-defaults/python-doc_2.7.5-5ubuntu3_all.deb Size: 10548 MD5sum: b54d85b3a1e84f3521b72b535d462606 SHA1: 469ba47cedfd2716f339cb3e9b28679a518d6f96 SHA256: aa99587c8210d3a0118427f6fbae3575641fd45435b7d7e7b497c6d885db9494 Description: documentation for the high-level object-oriented language Python Homepage: http://www.python.org/ Description-md5: 038f73a9465ce29a000fe288e7816805 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-docutils Priority: optional Section: python Installed-Size: 1687 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.11-3 Replaces: docutils-writer-odt, python-odtwriter Provides: docutils Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-roman, docutils-common (= 0.11-3) Recommends: python-pil, python-pygments, libpaper-utils, docutils-doc (= 0.11-3) Suggests: texlive-latex-recommended, texlive-latex-base, texlive-lang-french, fonts-linuxlibertine | ttf-linux-libertine Conflicts: docutils-writer-odt, python-odtwriter Breaks: python-epydoc (<< 3.0.1-4~), python-sphinx (<< 1.1.3+dfsg-7~) Filename: pool/main/p/python-docutils/python-docutils_0.11-3_all.deb Size: 348372 MD5sum: 7cf66803c3d8edaf1b491b84c56c80b4 SHA1: 2d243d41b9038cd8f0c0a22769b6489cdb15235f SHA256: dfafd6071c4292d85f251aec222d9b964dc49254cecc8ea52a5e6b853ca21299 Description: text processing system for reStructuredText (implemented in Python 2) Homepage: http://docutils.sourceforge.net/ Description-md5: 7cda5b7ae916f50f0ce0455dd4abdc2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dogpile.cache Priority: optional Section: python Installed-Size: 168 Maintainer: Chuck Short Architecture: all Version: 0.5.1-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-dogpile.core Filename: pool/main/p/python-dogpile.cache/python-dogpile.cache_0.5.1-0ubuntu2_all.deb Size: 25990 MD5sum: 785a7e6c8bf1ba2e36eb1eae179b4c61 SHA1: a1842afe7124c3d2f11915241de301a35d02d204 SHA256: a7e88e6a92b9b24c1eedfd9084cb89cc0a9e9a9284b2d40d6527bd766e0e10f0 Description: caching API built around the concept of a "dogpile lock" Description-md5: f149b3c4b1d45730c102ddf2f01de167 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-dogpile.core Priority: optional Section: python Installed-Size: 85 Maintainer: Chuck Short Architecture: all Version: 0.4.1-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-dogpile.core/python-dogpile.core_0.4.1-0ubuntu3_all.deb Size: 9680 MD5sum: a6f53b4683fc2963e3320ac6145d8892 SHA1: ed17ccedaca0e1c53250492f7b088f3ac3435e92 SHA256: cb072c8422afd88a9bd67e257bc95bb9b1b50a10bc6ca18ae2225b1caa965d5b Description: ´dogpile´ lock, part of a typically larger caching solution. Description-md5: f6f2f0546c4579a719d946163ab19fb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mx-base-dbg Priority: extra Section: python Installed-Size: 1737 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: i386 Source: egenix-mx-base Version: 3.2.7-1build1 Provides: python-egenix-mxbeebase-dbg, python-egenix-mxdatetime-dbg, python-egenix-mxproxy-dbg, python-egenix-mxqueue-dbg, python-egenix-mxstack-dbg, python-egenix-mxtexttools-dbg, python-egenix-mxtools-dbg, python-egenix-mxuid-dbg, python-egenix-mxurl-dbg Depends: python-egenix-mxbeebase (= 3.2.7-1build1), python-egenix-mxdatetime (= 3.2.7-1build1), python-egenix-mxproxy (= 3.2.7-1build1), python-egenix-mxqueue (= 3.2.7-1build1), python-egenix-mxstack (= 3.2.7-1build1), python-egenix-mxtexttools (= 3.2.7-1build1), python-egenix-mxtools (= 3.2.7-1build1), python-egenix-mxuid (= 3.2.7-1build1), python-egenix-mxurl (= 3.2.7-1build1), python-egenix-mx-base-dev (= 3.2.7-1build1), python-dbg, libc6 (>= 2.4) Filename: pool/main/e/egenix-mx-base/python-egenix-mx-base-dbg_3.2.7-1build1_i386.deb Size: 425736 MD5sum: 58ead4a372e9582c7df4da2bf9fdd10f SHA1: 05ebaa7053af30b466bbfe74c4d84bcbb23c96f3 SHA256: a71e1e22331d47f98d9d2cdbbd783736dfd59de9c4af40ed81dbe2d7ffc68413 Description: extension files for the egenix-mx-base distribution (debug build) Description-md5: d1fdafe1e00c6012624d6cef7869d6b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mx-base-dev Priority: extra Section: python Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Filename: pool/main/e/egenix-mx-base/python-egenix-mx-base-dev_3.2.7-1build1_all.deb Size: 16528 MD5sum: e5d1182b47df2d5d8eeb1a9e87904cac SHA1: f0116c250062922b86e354c38801285f1819b823 SHA256: 5bc24c5539cf0d7448ee83a32dcab8fd3c7881fc4d573faa8371cdc66f6c1a93 Description: development files for the egenix-mx-base distribution Description-md5: 7fd284b9aa8c631bc687985ed2ffffc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxbeebase Priority: optional Section: python Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: i386 Source: egenix-mx-base Version: 3.2.7-1build1 Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxbeebase-dbg, python-egenix-mxbeebase-doc Filename: pool/main/e/egenix-mx-base/python-egenix-mxbeebase_3.2.7-1build1_i386.deb Size: 42874 MD5sum: ad6e19abee8e877e9ce24707f6229f2c SHA1: 22c249c17a4e9724ec707a6bea0bedee537508e9 SHA256: 24b900b2648b888cd039f15c1f021bfb9e0becf7a0bd1d6ce95d388237b0feb6 Description: on-disk B+Tree based database kit for Python Description-md5: 7c0e11fbdcb4e3eb86924f38517ea695 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxbeebase-doc Priority: optional Section: doc Installed-Size: 461 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxbeebase (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxbeebase-doc_3.2.7-1build1_all.deb Size: 438380 MD5sum: 31f7bc5899e32aed4f7139ab92b5a7d0 SHA1: 5a6ad27d419c6df6b6ac741c8dedbba6c2b2b61f SHA256: 70c88b175d00f65525f894b8afeda8eb2bd984ed8cb1519d9d02787d47eb5d99 Description: on-disk B+Tree based database kit for Python (documentation) Description-md5: 09af6f6801c57569970cd50fce28adfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxdatetime Priority: optional Section: python Installed-Size: 317 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: i386 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxdatetime, python2.4-egenix-mxdatetime Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxdatetime-dbg, python-egenix-mxdatetime-doc Conflicts: python2.3-egenix-mxdatetime, python2.4-egenix-mxdatetime Filename: pool/main/e/egenix-mx-base/python-egenix-mxdatetime_3.2.7-1build1_i386.deb Size: 65944 MD5sum: 977dc9b177139436ef9ded31d6c8f480 SHA1: 514ebf3089b71b656a2790e0f767fcb18efdf84b SHA256: 52134b3cb585f1cf02e60b298515982cecaba66ba69bf4eb5ec1cd0ee9655cff Description: date and time handling routines for Python Description-md5: e3102cb577c19b97097313b6b22ad8ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mxdatetime-doc Priority: optional Section: doc Installed-Size: 668 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxdatetime (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxdatetime-doc_3.2.7-1build1_all.deb Size: 643914 MD5sum: 55c0ba0891876d08bb012df3b9b7bde3 SHA1: ac7e33130c6eb4d0746e722b51f89df805b26a56 SHA256: 211b21a7b16a28248abc7f6436f56b29add544b7f4f871b407c11242f25b2523 Description: date and time handling routines for Python (documentation) Description-md5: 839b3e571f11c1629378e4fd423df45b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxproxy Priority: optional Section: python Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: i386 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxproxy, python2.4-egenix-mxproxy Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxproxy-dbg, python-egenix-mxproxy-doc Conflicts: python2.3-egenix-mxproxy, python2.4-egenix-mxproxy Filename: pool/main/e/egenix-mx-base/python-egenix-mxproxy_3.2.7-1build1_i386.deb Size: 15662 MD5sum: 59e86fcc0ac6911021aa37bfec822998 SHA1: 879cbd67a5a159b17a1eafec2d0b8c617499b765 SHA256: 981330a8d2b5ce84af39e85b9a7edae037059c7aced8151f9d64c7e3dabcf2e1 Description: generic proxy wrapper type for Python Description-md5: de7a4eef8e3e43ad321eba059c48841c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mxproxy-doc Priority: optional Section: doc Installed-Size: 425 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxproxy (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxproxy-doc_3.2.7-1build1_all.deb Size: 401784 MD5sum: de92eae35ae9be5ffe963e0ca7c88009 SHA1: 75086ec7d7e577dab2092cb54a945a86e8d7a77e SHA256: 315c153bb0335c2a2b4a89782fdd15154037f5c3eacf9e23ae3c9cfdc55f92f2 Description: generic proxy wrapper type for Python (documentation) Description-md5: 4d5df1e6dbe3297c0b60855853ddfb77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxqueue Priority: optional Section: python Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: i386 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxqueue, python2.4-egenix-mxqueue Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxqueue-dbg, python-egenix-mxqueue-doc Conflicts: python2.3-egenix-mxqueue, python2.4-egenix-mxqueue Filename: pool/main/e/egenix-mx-base/python-egenix-mxqueue_3.2.7-1build1_i386.deb Size: 10304 MD5sum: 5365febc66edcff60a6748c2401b63aa SHA1: 9a0dc720005529b13f2d9f5b0892fc2c347242be SHA256: 1494e9127212b00bc0eeb5cf626d76f397689da298322b9d088e84a5723a96f4 Description: fast and memory-efficient queue for Python Description-md5: 204041424313b03af6c8f680bdb669a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxqueue-doc Priority: optional Section: doc Installed-Size: 400 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxqueue (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxqueue-doc_3.2.7-1build1_all.deb Size: 375680 MD5sum: 4e00b842e7c8647866bab7d07906880a SHA1: 7ecb5e17606d76e66c1d2ccd8828ef530a6a7e0c SHA256: 1f84f59f5fde46bb9e8688774dc7ae2f9f0d96c3b5aa9398e8345726588858f2 Description: fast and memory-efficient queue for Python (documentation) Description-md5: 994c0d0198be57949d0a61539e589c52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxstack Priority: optional Section: python Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: i386 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxstack, python2.4-egenix-mxstack Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxstack-dbg, python-egenix-mxstack-doc Conflicts: python2.3-egenix-mxstack, python2.4-egenix-mxstack Filename: pool/main/e/egenix-mx-base/python-egenix-mxstack_3.2.7-1build1_i386.deb Size: 11478 MD5sum: 77d61fb5f3f158f9e2295db1db19e31c SHA1: c3f5139c35de91a6028bcff95b90d86bf60c2985 SHA256: 6a5a8a1ee3e1fa773d77a03c1511734a90ac979b7212db58384ad57ece66f7d5 Description: fast and memory-efficient stack for Python Description-md5: 43cf298770079e6a1075eccf9190d48d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mxstack-doc Priority: optional Section: doc Installed-Size: 404 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxstack (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxstack-doc_3.2.7-1build1_all.deb Size: 380604 MD5sum: 113f1ace3b16919c4be9005f3bbfbda0 SHA1: 422799774ec0df2d8f76e06b5202940c4dcaf2f4 SHA256: 931c25d13e7586ceaa1bb80d5ef61259e9ff2cc05b700c1486656b0eac4b03c2 Description: fast and memory-efficient stack for Python (documentation) Description-md5: c40770f3e0cb10c29c7684b08d77d3ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxtexttools Priority: optional Section: python Installed-Size: 204 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: i386 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxtexttools, python2.4-egenix-mxtexttools Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools Suggests: python-egenix-mxtexttools-dbg, python-egenix-mxtexttools-doc Conflicts: python2.3-egenix-mxtexttools, python2.4-egenix-mxtexttools Filename: pool/main/e/egenix-mx-base/python-egenix-mxtexttools_3.2.7-1build1_i386.deb Size: 44986 MD5sum: 6cab03641d3bd574e7cbf0dcf6e8c420 SHA1: d7c80baf36f45b1136be59f4012ef672baf47039 SHA256: 9b3414cf3bcb90121d4260180f3bfa3fc43796c85ba946199645b74c1137ab57 Description: fast text processing tools for Python Description-md5: 394b2ad20297934e19ae2fe745dbcf42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mxtexttools-doc Priority: optional Section: doc Installed-Size: 567 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxtexttools (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxtexttools-doc_3.2.7-1build1_all.deb Size: 531800 MD5sum: e64392b94349540e62d148a25feea231 SHA1: bde2d0adf8044d270e486745ea82b1a4924ba281 SHA256: dff86f44862a37948c0ad5aab5a5a9fcadf6bea86209441016b29495ec3bcd88 Description: fast text processing tools for Python (documentation) Description-md5: 84cba115538b2812fcf2db800aa51c8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxtools Priority: optional Section: python Installed-Size: 369 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: i386 Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python2.3-egenix-mxtools, python2.4-egenix-mxtools Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-egenix-mxtools-dbg, python-egenix-mxtools-doc Conflicts: python2.3-egenix-mxtools, python2.4-egenix-mxtools Filename: pool/main/e/egenix-mx-base/python-egenix-mxtools_3.2.7-1build1_i386.deb Size: 74290 MD5sum: 02977bc0d760598055ace2ad10d0612c SHA1: 9f6d28894730739f9a101b7f9a0b83d5980f11bc SHA256: 55cf0d3293fb9dcab997ccf2f59463aafeef28e6572b0c5f114c8a794fa9298f Description: collection of additional builtins for Python Description-md5: b397d6d1d27bb66a1d2094f1aae9db91 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-egenix-mxtools-doc Priority: optional Section: doc Installed-Size: 458 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxtools (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxtools-doc_3.2.7-1build1_all.deb Size: 429632 MD5sum: 85124513a5e99a1c76a1996e5666072c SHA1: d02dbc3e302ce22d942dcadebb6cfd42b19779ff SHA256: 43ae0f00493ec6f94d2e57a40ab3aeee3efc175d1d1e708f63ff253b6bd3e5f5 Description: collection of additional builtins for Python (documentation) Description-md5: 025c0564a3dd027f0a29e4ea8b228e02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxuid Priority: optional Section: python Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: i386 Source: egenix-mx-base Version: 3.2.7-1build1 Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools, python-egenix-mxdatetime Suggests: python-egenix-mxuid-dbg, python-egenix-mxuid-doc Filename: pool/main/e/egenix-mx-base/python-egenix-mxuid_3.2.7-1build1_i386.deb Size: 11496 MD5sum: 22f03dca7e55fa094bac8afed7b25f93 SHA1: 70af5c3664126d54a00bda4119467eb543d92d07 SHA256: cfe5af0057cdfb1f878db9be9e5900dfbb64629a8153cdeb6c81f27f03734338 Description: unique identifiers for Python Description-md5: c3fbcf07f93e0d80ca516ea1b6d3aea6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxuid-doc Priority: optional Section: doc Installed-Size: 391 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxuid (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxuid-doc_3.2.7-1build1_all.deb Size: 367008 MD5sum: 29fc08b13e06a0a517c448d7b7e0986f SHA1: 45f48f998220e27526c52f6844d81129760b975b SHA256: 965cc92d70cb54fc962158cd69b62d4557b585ddb1b1bec9e749e834e39be372 Description: unique identifiers for Python (documentation) Description-md5: 0023ef27b5b96c8b8304ee8c37d982f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxurl Priority: optional Section: python Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: i386 Source: egenix-mx-base Version: 3.2.7-1build1 Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxtools, python-egenix-mxtexttools Suggests: python-egenix-mxurl-dbg, python-egenix-mxurl-doc Filename: pool/main/e/egenix-mx-base/python-egenix-mxurl_3.2.7-1build1_i386.deb Size: 23860 MD5sum: 08d091005309a3b6fa863f86d1e6ba8a SHA1: b546d243ab8356063960ad7cc8a35197ec44d4b7 SHA256: 72a745f4cd32078326abc9f505620fd940675d58fa714d0e6b6195b1da968d90 Description: flexible URL datatype for Python Description-md5: fee071966c6c5bb6fafefa75e35060e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-egenix-mxurl-doc Priority: optional Section: doc Installed-Size: 443 Maintainer: Ubuntu Developers Original-Maintainer: Joel Rosdahl Architecture: all Source: egenix-mx-base Version: 3.2.7-1build1 Replaces: python-egenix-mxurl (<< 3.1.3-3) Filename: pool/main/e/egenix-mx-base/python-egenix-mxurl-doc_3.2.7-1build1_all.deb Size: 419422 MD5sum: f5cd7733f9677d892e1c6bf5a5e6607d SHA1: 47bd037053fbcba7cbf0872d4074e3ff0ef72946 SHA256: d16c6878522e0a437908c163906d1ac42011c6718c11202ae52b6994b8668e14 Description: flexible URL datatype for Python (documentation) Description-md5: f0984d91dcf296bccdbeb9bc60d6de79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-epydoc Priority: optional Section: python Installed-Size: 1108 Maintainer: Ubuntu Developers Original-Maintainer: Kenneth J. Pronovici Architecture: all Source: epydoc Version: 3.0.1+dfsg-4 Replaces: python2.1-epydoc (<< 2.0-2), python2.2-epydoc (<< 2.0-2), python2.3-epydoc (<< 2.0-2) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: ghostscript, python-tk, python-docutils, texlive-latex-base, texlive-latex-extra, texlive-latex-recommended, texlive-fonts-recommended, graphviz Suggests: epydoc-doc, python-profiler Conflicts: python2.1-epydoc, python2.2-epydoc, python2.3-epydoc Filename: pool/main/e/epydoc/python-epydoc_3.0.1+dfsg-4_all.deb Size: 213668 MD5sum: fd4c83b7e89b079613a23b87710dc025 SHA1: 658b3ca176ea377065ddbd5c56ea70cd06d7f8ac SHA256: f74d701465a4d2e1fe53c5342add3156a6035ad7a2c45ce979f4be30b1771fa3 Description: tool for documenting Python modules Homepage: http://epydoc.sourceforge.net/ Description-md5: 3d05d20ae78ead066402c29500ad7ca4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-eventlet Priority: optional Section: python Installed-Size: 1192 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.13.0-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-greenlet, libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-eventlet/python-eventlet_0.13.0-1ubuntu2_all.deb Size: 202460 MD5sum: 953e55d17b12dbaf560b77811e255b82 SHA1: 96d10e9a17feb1e61b1db26ff99602d33cab1dd6 SHA256: 48452c39dbd32fea3ebc23ebd4294c729bd7582197620ee69e73de9ec6716564 Description: concurrent networking library for Python Homepage: http://eventlet.net Description-md5: 020b099048ca74c3042fc10d2247fcdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-examples Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-defaults Version: 2.7.5-5ubuntu3 Depends: python (>= 2.7.5-5ubuntu3), python2.7-examples (>= 2.7.5-1~) Filename: pool/main/p/python-defaults/python-examples_2.7.5-5ubuntu3_all.deb Size: 946 MD5sum: 643b74c3c529b2f5f578dbf72955038d SHA1: 2d6c0b5c508de2e27981e3d5438fd5ae45272bd2 SHA256: 85e78deec93d3fc7c1f5f1e546f17bf74ea28596617ca8f9068e2c27ff41a1ef Description: examples for the Python language (default version) Homepage: http://www.python.org/ Description-md5: 1ff3c3d821cef8881eb0f7e4a3164350 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-extras Priority: optional Section: python Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.0.3-2ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-testtools Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-extras/python-extras_0.0.3-2ubuntu1_all.deb Size: 6614 MD5sum: a0f3242f6ef4e8143fa584e0aa887efe SHA1: 44c311b58bb5e2bb6a5eb74561df55d1816fe82d SHA256: 71b52006573fb69ed28ff779b851535a778aa4705d545139d3a548b799e5109d Description: extensions to the Python standard library (Python 2.x) Homepage: http://pypi.python.org/pypi/extras Description-md5: 41bd5ed0df0106b08b04728f29fdb83d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-feedparser Priority: optional Section: python Installed-Size: 356 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: feedparser Version: 5.1.3-2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-chardet, python-libxml2, python-utidylib Filename: pool/main/f/feedparser/python-feedparser_5.1.3-2_all.deb Size: 52454 MD5sum: 86b5a874f8e1054d2e2d68949bc57d01 SHA1: e83ec138129450816306255d5feebd7b5ca4c681 SHA256: 8b2d26aba8cdecc7820141def435c901554754f2171a68eef15d098852a910b3 Description: Universal Feed Parser for Python Homepage: https://code.google.com/p/feedparser/ Description-md5: 59c5b7eade148fbec09113e829fdeda1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-fixtures Priority: optional Section: python Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Version: 0.3.14-1ubuntu2 Depends: python-testtools (>= 0.9.11), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-fixtures/python-fixtures_0.3.14-1ubuntu2_all.deb Size: 25888 MD5sum: 929f7eb4b764dbc2f6657a4044c1b92c SHA1: 5c80307a13c99b44b680eeac13d3f07992832559 SHA256: 7785a756635c9bc1d263f1fe5d02508c26a2fd3599a3b150eaafd71dfb30deac Description: PyUnit extension for defining test fixtures outside of test cases - Python 2.x Homepage: http://pypi.python.org/pypi/fixtures Description-md5: f8f393535056d501957eb0a49943cf8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-flask Priority: optional Section: python Installed-Size: 271 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: flask Version: 0.10.1-2build1 Depends: python-werkzeug (>= 0.8), python:any (<< 2.8), python:any (>= 2.7.5-5~), python-jinja2 (>= 2.4), python-itsdangerous Recommends: python-pkg-resources, python-simplejson | python (>= 2.6), python-blinker Suggests: python-flask-doc Filename: pool/main/f/flask/python-flask_0.10.1-2build1_all.deb Size: 51728 MD5sum: ddee0a62d486a6cc2f86028f08369505 SHA1: 73db69c1b4dad8681433c94cfedebcd312736a3c SHA256: d50b47ffc842ad02fc577a57a10694a552d10fc0f1cbd298987a222a0e9baa66 Description: micro web framework based on Werkzeug, Jinja2 and good intentions Homepage: http://flask.pocoo.org/ Description-md5: af80b4121514ac9080cae2382910000f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-flask-doc Priority: extra Section: doc Installed-Size: 2483 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: flask Version: 0.10.1-2build1 Depends: libjs-sphinxdoc (>= 1.0) Recommends: python-flask Filename: pool/main/f/flask/python-flask-doc_0.10.1-2build1_all.deb Size: 458130 MD5sum: b58ac6dffb188ef2be041c15ea317e30 SHA1: 14cee19890c797602b1cb82c3ebab2a1960462cd SHA256: 90276f5dedfe60fb78de46f6f97dd06d489db12d02069703101fa0f8bcf90bb8 Description: documentation for Flask micro web framework Homepage: http://flask.pocoo.org/ Description-md5: cb4090517ac62460c76f8a14e598fe8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-formencode Priority: optional Section: python Installed-Size: 500 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: all Version: 1.2.6-1ubuntu1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python-dns, python-pkg-resources, python (>= 2.5) | python-elementtree Suggests: python-egenix-mxdatetime Filename: pool/main/p/python-formencode/python-formencode_1.2.6-1ubuntu1_all.deb Size: 75144 MD5sum: d33916fa01b79f40d3f7956cb0b84875 SHA1: 4808af5c7fc2ea7180463669d06825c8bf3c2afe SHA256: 459dc1677c6d4b55b559d242424c944bc6c966e4baa9962899772bd544526aa4 Description: validation and form generation Python package Homepage: http://formencode.org Description-md5: 58a7c12fe25e73647a1aabca6235ae27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gconf Priority: optional Section: python Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: i386 Source: gnome-python Version: 2.28.1+dfsg-1ubuntu2 Replaces: python-gnome2 (<< 2.22.3-3) Depends: python (>= 2.7), python (<< 2.8), gconf-service, libc6 (>= 2.3.6-6~), libgconf-2-4 (>= 2.31.1), libglib2.0-0 (>= 2.24.0), libpython2.7 (>= 2.7), python-gobject-2 (>= 2.17.0) Suggests: python-gnome2-doc Breaks: python-gnome2 (<< 2.22.3-3) Filename: pool/main/g/gnome-python/python-gconf_2.28.1+dfsg-1ubuntu2_i386.deb Size: 20388 MD5sum: dc6e61bd7c9934d1c88da3508174fe14 SHA1: ae05e7865769e3cef51eab961d91e78478c37612 SHA256: d6b4f458050373ac20062b2b49624fb32dce2479e502178dc71acce7bc32f0c4 Description: Python bindings for the GConf configuration database system Homepage: http://www.pygtk.org/ Description-md5: 9bd5f3c6eef5fbe0f49c2a0405b96731 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: python-gd Priority: extra Section: python Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Version: 0.56+dfsg-4build1 Depends: ttf-freefont, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3.6-6~), libgd3 (>= 2.1.0~alpha~) Suggests: python-gd-dbg Filename: pool/main/p/python-gd/python-gd_0.56+dfsg-4build1_i386.deb Size: 29062 MD5sum: 4ba1cbfd1ba5a6266163c94c2c07c8f4 SHA1: 720f45f4a7fc1337fefcb3d9d5a9a15693e599a9 SHA256: 56cc8d221c8c8803b1082c1281bc7cf0942194453dfae44bdee3f041c11b42dc Description: Python module wrapper for libgd Homepage: http://newcenturycomputers.net/projects/gdmodule.html Description-md5: 9ab06ea795223a3f0a04afacf41c8885 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gd-dbg Priority: extra Section: python Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-gd Version: 0.56+dfsg-4build1 Depends: python-gd (= 0.56+dfsg-4build1), python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.3.6-6~), libgd3 (>= 2.1.0~alpha~) Filename: pool/main/p/python-gd/python-gd-dbg_0.56+dfsg-4build1_i386.deb Size: 67744 MD5sum: d0af7b9e62b116bf8fd0d7a7d37067f9 SHA1: 6dad07b1f6672e66f36f214a10e6628b4e2d6ebf SHA256: c8a9e045751fbb79ad9be7aad706ef0140f7fd1382640c1fa93ea1e7bead5d97 Description: Python module wrapper for libgd (debug extension) Homepage: http://newcenturycomputers.net/projects/gdmodule.html Description-md5: eb3f9b89eae5f2055c9b1d5943a0d56a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gdbm Priority: optional Section: python Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-stdlib-extensions Version: 2.7.5-1ubuntu1 Replaces: python2.3-gdbm, python2.4-gdbm, python2.6 (<< 2.6.1-0ubuntu6) Provides: python2.7-gdbm Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.4), libgdbm3 (>= 1.8.3) Suggests: python-gdbm-dbg Conflicts: python2.3-gdbm, python2.4-gdbm Filename: pool/main/p/python-stdlib-extensions/python-gdbm_2.7.5-1ubuntu1_i386.deb Size: 11838 MD5sum: b53841f4ec34a911fba394cf079f962d SHA1: caa56bb3cec3601bcd6bc02bfaf49bbb202a14bf SHA256: 9fd2892bf312214f090045b0e2c6ac7700ce44736ac804e0679b9d0a13bf34fd Description: GNU dbm database support for Python Description-md5: 626a11c8ba4a5b0566e9b2a4b6c730f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gdbm-dbg Priority: extra Section: python Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-stdlib-extensions Version: 2.7.5-1ubuntu1 Depends: python-dbg (>= 2.7), python-dbg (<< 2.8), python-gdbm (= 2.7.5-1ubuntu1), libc6 (>= 2.4), libgdbm3 (>= 1.8.3) Filename: pool/main/p/python-stdlib-extensions/python-gdbm-dbg_2.7.5-1ubuntu1_i386.deb Size: 18424 MD5sum: 5fbb12d34c6d4cc518505b60ae9a6790 SHA1: 23267fed7a031d79394dea78a218438c4fd4c810 SHA256: 1a7f71d3275e00b51517c9296afa164e3796df9b7a63edfe2c3b5695440f40d4 Description: GNU dbm database support for Python (debug extension) Description-md5: d045f957b611c1ede74ab12f22503bc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-genetic Priority: optional Section: python Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Angel Ramos Architecture: all Source: genetic Version: 0.1.1b-11build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/g/genetic/python-genetic_0.1.1b-11build1_all.deb Size: 19896 MD5sum: 7fe5c7e5d7a0bf593bce619b6931894d SHA1: 5f747398916a8d2256098c833a86b5c3a6e698a9 SHA256: fbee8edf8093f0b3f3f9471cd47444ced3a10c4b7444491478e97dd2c5987ce3 Description: genetic algorithms in Python Homepage: http://home.gna.org/oomadness/en/genetic/ Description-md5: 7ef5afdf1db101c47fdf9be4a51d5476 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-genshi Priority: optional Section: python Installed-Size: 918 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: genshi Version: 0.7-3 Depends: python (>= 2.7~), python (<< 2.8), python:any (>= 2.7.5-5~), libc6 (>= 2.3.6-6~) Suggests: doc-base, python-genshi-doc, python-pkg-resources Filename: pool/main/g/genshi/python-genshi_0.7-3_i386.deb Size: 124958 MD5sum: ee4e07fd8015778992a243f65507483a SHA1: e321b554d9224acef784f5f40d49618d55c043b4 SHA256: eee824c8afd33af09a5b602d3378524b0eadc06b83535c99e9deb08713545601 Description: Python XML-based template engine - Python 2.x Homepage: http://genshi.edgewall.org/ Description-md5: 75400fac3911110cc5c147797412a313 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-genshi-doc Priority: optional Section: doc Installed-Size: 2758 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: genshi Version: 0.7-3 Depends: libjs-jquery Filename: pool/main/g/genshi/python-genshi-doc_0.7-3_all.deb Size: 237004 MD5sum: ce71975f2d9a35d2dd71d7f46078ed3f SHA1: 0a0a9db0ae638b6abd299c8f7699aa774c9945e4 SHA256: e4e8e695ba347ec21f56fa114b640f76c236b566de9e22f26f76a49d27ecb7d4 Description: Python XML-based template engine (documentation and examples) Homepage: http://genshi.edgewall.org/ Description-md5: 63d2bc7a6004ea20d074a0b67a953554 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-geoip Priority: optional Section: python Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Version: 1.2.4-2ubuntu5 Provides: python2.7-geoip Depends: libc6 (>= 2.3.6-6~), libgeoip1, python (>= 2.7), python (<< 2.8), geoip-database Filename: pool/main/p/python-geoip/python-geoip_1.2.4-2ubuntu5_i386.deb Size: 9058 MD5sum: 339fd951fc535776e67c701c951b57a2 SHA1: 2480352be54337246b28301af27c63b5d5e497bc SHA256: 9794685cd3fb4dc2cc2bc7679ac54febfef48c42a4e685250ce8393757d4213a Description: Python bindings for the GeoIP IP-to-country resolver library Description-md5: 7728feb20ccb4df284edbff75a08cb2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-geoip-dbg Priority: extra Section: python Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: python-geoip Version: 1.2.4-2ubuntu5 Depends: python-geoip (= 1.2.4-2ubuntu5), python-dbg, libc6 (>= 2.3.6-6~), libgeoip1 Filename: pool/main/p/python-geoip/python-geoip-dbg_1.2.4-2ubuntu5_i386.deb Size: 18496 MD5sum: bd85a66b3b3e6fb17ee9022089cb2cab SHA1: 909d75b4709806f396151247df583a3f603e1785 SHA256: c46799bb0c6655c1e39eb5f3952901957a7a2916812abf197bcaeb5354754ab4 Description: Python bindings for the GeoIP IP-to-country resolver library (debug extension) Description-md5: d5987705c19b4254a652b1dcbcf49ab2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gevent Priority: extra Section: python Installed-Size: 823 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Version: 1.0-1ubuntu1 Depends: libc6 (>= 2.17), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-greenlet | python-codespeak-lib (<< 1.0) Suggests: python-gevent-doc, python-gevent-dbg, python-openssl Filename: pool/main/p/python-gevent/python-gevent_1.0-1ubuntu1_i386.deb Size: 203590 MD5sum: fef56761b1e980fc37795db570474ef9 SHA1: 5ab9fd78dcc342a3a2abb75b6d4c9134dd460f1a SHA256: 6ffba858cc89dd506ce1ae864658ff7769ce0338b6faeac26a589cec698e4dfe Description: gevent is a coroutine-based Python networking library Homepage: http://www.gevent.org/ Description-md5: bbee70605383e4a4707e6eaa92881059 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-gevent-dbg Priority: extra Section: debug Installed-Size: 2800 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: python-gevent Version: 1.0-1ubuntu1 Depends: python-gevent (= 1.0-1ubuntu1), libc6 (>= 2.17), python-dbg (>= 2.7), python-dbg (<< 2.8), python-greenlet-dbg Filename: pool/main/p/python-gevent/python-gevent-dbg_1.0-1ubuntu1_i386.deb Size: 1132436 MD5sum: 55d80363f88d4e959fa699e45ebc361e SHA1: cfffce40726befd0ee0856aa0988284eb199f7f3 SHA256: 49c63b331151bdb9aff45fe53fbdc1caba32318d08c6e50774328ace3fce924e Description: gevent is a coroutine-based Python networking library - debugging symbols Homepage: http://www.gevent.org/ Description-md5: 9561d9b2a48b61f8d58fb39f994123c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gevent-doc Priority: optional Section: doc Installed-Size: 791 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: all Source: python-gevent Version: 1.0-1ubuntu1 Depends: libjs-jquery, libjs-underscore Filename: pool/main/p/python-gevent/python-gevent-doc_1.0-1ubuntu1_all.deb Size: 95678 MD5sum: a8c97d693596d00d627299baa68ad333 SHA1: a59af14d8c8d73ee04dce5e3c7f31f8523938c2a SHA256: ec90130a61d8f644200ffedbaefb37fa849f4bb3d80476cb0e7a9b04104ab22f Description: gevent is a coroutine-based Python networking library - documentation Homepage: http://www.gevent.org/ Description-md5: 2f6fe5f40177f771d33e8780ad6dd898 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gi Priority: optional Section: python Installed-Size: 684 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: pygobject Version: 3.12.0-1 Replaces: python-gobject (<< 3.0.2-4) Provides: python2.7-gi Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libgirepository-1.0-1 (>= 1.33.10), libglib2.0-0 (>= 2.38.0), gir1.2-glib-2.0 (>= 1.35.9) Suggests: python-gi-cairo Breaks: python-aptdaemon (<< 1.0), python-gobject (<< 3.0.2-4), python-nautilus (<= 1.1-1), software-center (<= 5.6.0-0ubuntu2) Filename: pool/main/p/pygobject/python-gi_3.12.0-1_i386.deb Size: 190122 MD5sum: 855fe269590962a973978035ec613ead SHA1: a47c861e834d9b1e626f4b2243b2e1b7ec96414b SHA256: cf1b372f4275f15b943a3439e639c6d3da34604d6b93397127ff6c915197aee3 Description: Python 2.x bindings for gobject-introspection libraries Homepage: https://wiki.gnome.org/PyGObject Description-md5: 8d2225b2f817f42645ac3c6bd82fee0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gi-cairo Priority: optional Section: python Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: pygobject Version: 3.12.0-1 Replaces: python-gobject-cairo Provides: python-gobject-cairo Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.3.6-6~), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.38.0), python-gi (= 3.12.0-1), python-cairo Conflicts: python-gobject-cairo Filename: pool/main/p/pygobject/python-gi-cairo_3.12.0-1_i386.deb Size: 5224 MD5sum: 3359bc0bfcb14a54790a170672458b6a SHA1: 18344697e30af0708cb8ccca82b484edffad297c SHA256: 2bec01efe6c8b3ac2bc09ff6f028a044a1df929752bf9aaa3aec08d272a3c068 Description: Python Cairo bindings for the GObject library Homepage: https://wiki.gnome.org/PyGObject Description-md5: e531132cde7475ea3077c4d44b37a39d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gi-dbg Priority: extra Section: debug Installed-Size: 814 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: pygobject Version: 3.12.0-1 Replaces: python-gobject-dbg (<< 3.0.2-4) Depends: python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgirepository-1.0-1 (>= 1.33.10), libglib2.0-0 (>= 2.38.0), python-gi (= 3.12.0-1) Breaks: python-gobject-dbg (<< 3.0.2-4) Filename: pool/main/p/pygobject/python-gi-dbg_3.12.0-1_i386.deb Size: 462538 MD5sum: c6fc6107be3dd23c44cb524429da6717 SHA1: a6de81e58fc8c7147cdcbb0caad00c3392398ba5 SHA256: 2f4339ff02f625bec82cc9a0a86594b06375f3e4fac4cdb12304788f4bad69e2 Description: Python bindings for the GObject library (debug extension) Homepage: https://wiki.gnome.org/PyGObject Description-md5: cc6cbe7a432fd5c4af8daff83f2f824f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gi-dev Priority: optional Section: python Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: pygobject Version: 3.12.0-1 Replaces: python-gobject-dev (<< 3.0.2-4) Depends: python-gi (= 3.12.0-1), python3-gi (= 3.12.0-1), libglib2.0-dev (>= 2.35.9), libffi-dev (>= 3.0.5) Breaks: python-gobject-dev (<< 3.0.2-4) Filename: pool/main/p/pygobject/python-gi-dev_3.12.0-1_i386.deb Size: 8406 MD5sum: d6ea6263a23b52ddb9d79ee33abee2e8 SHA1: 35c2477b97ac1c3b2838d81dfa7bd6fd72d6065c SHA256: 53f81a6722d218d85f4dab8a6cf7fe3a20dab6d97fc92bb73dd98d12b6526b60 Description: development headers for GObject Python bindings Homepage: https://wiki.gnome.org/PyGObject Description-md5: f5f0bb4fb02f0013d4124b7ce2dabd49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-glade2 Priority: optional Section: python Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: i386 Source: pygtk Version: 2.24.0-3ubuntu3 Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.3.6-6~), libglade2-0 (>= 1:2.6.4-2~), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.18.0), python-gtk2 (= 2.24.0-3ubuntu3) Suggests: python-gtk2-doc Filename: pool/main/p/pygtk/python-glade2_2.24.0-3ubuntu3_i386.deb Size: 8328 MD5sum: 6f6a7526f09760414773ddea28585b62 SHA1: 866614690a553fcfa37da1bd012585d471a10eb3 SHA256: 01928a24f57f5f46ff164edb78c57f41fdc08bdf159c6a5aa3dde520b6777c11 Description: GTK+ bindings: Glade support Homepage: http://www.pygtk.org/ Description-md5: 8d0420f510379430466a97e1eaf2d4b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-video, ubuntustudio-photography, ubuntustudio-audio Package: python-glance Priority: extra Section: python Installed-Size: 10509 Maintainer: Ubuntu OpenStack Architecture: all Source: glance Version: 1:2014.1-0ubuntu1 Provides: python2.7-glance Depends: python-anyjson (>= 0.3.3), python-boto (>= 2.4.0), python-cinderclient (>= 1:1.0.4), python-crypto (>= 2.6), python-eventlet (>= 0.13.0), python-greenlet (>= 0.3.2), python-httplib2, python-iso8601, python-jsonschema (>= 1.3.0), python-keystoneclient (>= 1:0.3.0), python-kombu (>= 2.4.8), python-lxml (>= 2.3), python-migrate, python-openssl, python-oslo.config (>= 1:1.2.0a3), python-passlib, python-paste, python-pastedeploy, python-routes, python-six, python-sqlalchemy-ext | python-sqlalchemy (>= 0.8.2), python-swiftclient (>= 1:1.2), python-webob (>= 1.2.3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-sqlalchemy (>= 0.8~), python-sqlalchemy (<< 0.9), python-stevedore, python-oslo.vmware, python-oslo.messaging Filename: pool/main/g/glance/python-glance_2014.1-0ubuntu1_all.deb Size: 407062 MD5sum: 840315dafd2c207922647b19402db78b SHA1: 8d93e98167ed8a254867171417125fec28e8d87a SHA256: f55cb8cf72b18efefa0801e47001c501448d01d3a68174bb19932171c1ce9c3e Description: OpenStack Image Registry and Delivery Service - Python library Homepage: http://launchpad.net/glance Python-Version: 2.7 Description-md5: ec0b5e83302f9dde6c1f98f25a8f33c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-glance-doc Priority: extra Section: doc Installed-Size: 1148 Maintainer: Ubuntu OpenStack Architecture: all Source: glance Version: 1:2014.1-0ubuntu1 Depends: libjs-jquery Filename: pool/main/g/glance/python-glance-doc_2014.1-0ubuntu1_all.deb Size: 526964 MD5sum: 460bf50f3ae56d79834b11c83e9b67b4 SHA1: 31cb667d0ae93e9f9c12afe96e17da2f27609d6f SHA256: 1a2e419fb6e2093f48231898c857554385ce150cdb1c2fd9b0f468493055d381 Description: OpenStack Image Registry and Delivery Service - Documentation Homepage: http://launchpad.net/glance Description-md5: bad2142db8d3e8aad00122582264f750 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-glanceclient Priority: extra Section: python Installed-Size: 264 Maintainer: Chuck Short Architecture: all Version: 1:0.12.0-0ubuntu1 Replaces: glance-client Depends: python-httplib2, python-keystoneclient, python-openssl, python-prettytable (>= 0.6), python-setuptools, python-warlock, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr Breaks: glance-client Filename: pool/main/p/python-glanceclient/python-glanceclient_0.12.0-0ubuntu1_all.deb Size: 34064 MD5sum: d793546f19f0ac97c830baed42bc85cd SHA1: 7590bf7cf61f3a4625718ea8dc7826e81d4a751e SHA256: d29ef0f769fb68bc5846ef2d227427579297b86eb748da59a111f46f507806d2 Description: Client library for Openstack glance server. Homepage: http://launchpad.net/glance Description-md5: 6524fca402a7c8e87541a5b1ca477e17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gnome2 Priority: optional Section: python Installed-Size: 656 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: i386 Source: gnome-python Version: 2.28.1+dfsg-1ubuntu2 Replaces: python-gnomecanvas Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libbonobo2-0 (>= 2.15.0), libbonoboui2-0 (>= 2.15.1), libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgnome2-0 (>= 2.17.3), libgnomecanvas2-0 (>= 2.11.1), libgnomeui-0 (>= 2.22.0), libgnomevfs2-0 (>= 1:2.17.90), libgtk2.0-0 (>= 2.8.0), liborbit-2-0 (>= 1:2.14.10), libpopt0 (>= 1.14), libpython2.7 (>= 2.7), python-gconf (= 2.28.1+dfsg-1ubuntu2), python-gtk2 (>= 2.10.3), python-pyorbit (>= 2.0.1-4), python-gobject-2 (>= 2.17.0) Suggests: python-gnome2-doc Conflicts: python-gnomecanvas Filename: pool/main/g/gnome-python/python-gnome2_2.28.1+dfsg-1ubuntu2_i386.deb Size: 122642 MD5sum: 1474443ea8ae437777e4661e70280ea9 SHA1: 7435b919e5c7b8bddc06776a37e19c7dc3034d58 SHA256: ecfa034d5ca5fd4dcd2a7910c4f0b66a6e1bff79e1fb0c97b6ee6798692f6f92 Description: Python bindings for the GNOME desktop environment Homepage: http://www.pygtk.org/ Description-md5: f093594ad0b25220fe9460c0b170ed36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: python-gnome2-desktop-dev Priority: optional Section: python Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: all Source: gnome-python-desktop Version: 2.32.0+dfsg-3 Replaces: python-gnome2-dev (<< 2.9.0) Depends: python-gnomekeyring (>= 2.32.0+dfsg-3), python-rsvg (>= 2.32.0+dfsg-3), python-wnck (>= 2.32.0+dfsg-3), python-gnome2-dev, python-gtk2-dev Filename: pool/main/g/gnome-python-desktop/python-gnome2-desktop-dev_2.32.0+dfsg-3_all.deb Size: 15352 MD5sum: 5dab91095c7c856c837d417b95baac75 SHA1: 10be6ac4006a7ddde199d21d0f6efd243db10e2b SHA256: da02c9e3f444fc3b13144b54612bdaabb8d5a9037219295464851808b4617412 Description: Python bindings for the GNOME desktop environment Description-md5: ba0f1c3faca39522509e1395de843f02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gnome2-dev Priority: optional Section: python Installed-Size: 417 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: all Source: gnome-python Version: 2.28.1+dfsg-1ubuntu2 Depends: python:any (>= 2.7.1-0ubuntu2), python-gnome2 (>= 2.28.1+dfsg-1ubuntu2), python-gobject-2-dev (>= 2.17.0), python-gtk2-dev (>= 2.10.3), python-pyorbit-dev (>= 2.0.1-4) Recommends: python-gnome2-doc Filename: pool/main/g/gnome-python/python-gnome2-dev_2.28.1+dfsg-1ubuntu2_all.deb Size: 33342 MD5sum: fd05246a9b961209edeb827ddb5f60e0 SHA1: 51cb644adaed8d4846d7b7042fcfd539a7b42821 SHA256: 4fb170c5a43c738734cf542e28382c7ef02b83e726fda095120897be810e4f63 Description: Python bindings for the GNOME desktop environment - development files Homepage: http://www.pygtk.org/ Description-md5: 85637c02f8df71d37effed6806977408 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gnome2-doc Priority: optional Section: doc Installed-Size: 293 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: all Source: gnome-python Version: 2.28.1+dfsg-1ubuntu2 Recommends: python-gnome2 Suggests: devhelp Filename: pool/main/g/gnome-python/python-gnome2-doc_2.28.1+dfsg-1ubuntu2_all.deb Size: 34572 MD5sum: a30b01ae94698f8ce1b4ded9155eaf53 SHA1: 9e631f3bb7b4d08d425f8a5af84ef3f0a1398331 SHA256: 723ba8aead7bad3ecf4b4bedaa85757579e6fee6fd5be302495e7bde93722d32 Description: Python bindings for the GNOME desktop environment Homepage: http://www.pygtk.org/ Description-md5: 16e574fcd22a60b616981d9892df970c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gnomekeyring Priority: optional Section: python Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: gnome-python-desktop Version: 2.32.0+dfsg-3 Replaces: python-gnome2-desktop (<< 2.24.0-2) Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libgnome-keyring0 (>= 3.2.2-2~), python (>= 2.7), python (<< 2.8), python-gtk2 Suggests: gnome-keyring Filename: pool/main/g/gnome-python-desktop/python-gnomekeyring_2.32.0+dfsg-3_i386.deb Size: 21612 MD5sum: a52dcbfa64f3b5e8db055535867d0613 SHA1: 55286d6390c5b5ca9830070fc07e43e886478627 SHA256: 5da0420e8b0552ff5ee739bdc9adda9b3ee7a72bbcb10997eb009221e1881ddb Description: Python bindings for the GNOME keyring library Description-md5: 1e62b15f68ecf53fb6fc8decb37819af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gobject Priority: optional Section: python Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: pygobject Version: 3.12.0-1 Depends: python-gi (>= 3.12.0-1), python-gobject-2 Filename: pool/main/p/pygobject/python-gobject_3.12.0-1_all.deb Size: 2536 MD5sum: 6182c817087ea1f27479c9a14f8dd789 SHA1: 728ee5638a03059ba5ab97fc03905148d077b69d SHA256: 6cd9410c9aad2a160c82e380427041c7de13886649cf608a28eeb00e557cc061 Description: Python 2.x bindings for GObject - transitional package Homepage: https://wiki.gnome.org/PyGObject Description-md5: 0972cedec40e0869495e1025aa320af1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gobject-2 Priority: optional Section: oldlibs Installed-Size: 813 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: pygobject-2 Version: 2.28.6-12build1 Replaces: python-gobject (<< 2.90) Provides: python2.7-gobject, python2.7-gobject-2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libffi6 (>= 3.0.4), libglib2.0-0 (>= 2.26.0) Suggests: python-gobject-2-dbg Breaks: python-gobject (<< 2.90) Filename: pool/main/p/pygobject-2/python-gobject-2_2.28.6-12build1_i386.deb Size: 166100 MD5sum: 2142a3d073902897e47cad0643d67bae SHA1: 305cd9ec2c73ac100afffb71f9592b4f0358ba1e SHA256: 31212f1cfbe915703d09eaed4853064adff308131b68616ccb5ad3f2b4be3394 Description: deprecated static Python bindings for the GObject library Description-md5: a8aab9350d9d42a2df907a51577f79b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gobject-2-dbg Priority: extra Section: debug Installed-Size: 2210 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: pygobject-2 Version: 2.28.6-12build1 Replaces: python-gobject-dbg (<< 2.90) Depends: python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.4), libffi6 (>= 3.0.4), libglib2.0-0 (>= 2.26.0), python-gobject-2 (= 2.28.6-12build1) Breaks: python-gobject-dbg (<< 2.90) Filename: pool/main/p/pygobject-2/python-gobject-2-dbg_2.28.6-12build1_i386.deb Size: 504130 MD5sum: 49000a9b60c8cb479f45226081255d69 SHA1: 3f4e8d0019ebf123606e221651a6f8e987692ab3 SHA256: 729de021e4bc9d333626d6f718cfd35b986b7862ffb495b9258e112d59e714a7 Description: deprecated static Python bindings for the GObject library (debug extension) Description-md5: e6a1625df110dc5a28fdb8c1b535ef9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gobject-2-dev Priority: optional Section: oldlibs Installed-Size: 2312 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: pygobject-2 Version: 2.28.6-12build1 Replaces: python-gobject-dev (<< 2.90) Depends: python:any (>= 2.7.1-0ubuntu2), python-gobject-2 (>= 2.28.6-12build1), python-dev, libglib2.0-dev (>= 2.24.0), libffi-dev (>= 3.0.5) Recommends: docbook-xsl Breaks: python-gobject-dev (<< 2.90) Filename: pool/main/p/pygobject-2/python-gobject-2-dev_2.28.6-12build1_all.deb Size: 194492 MD5sum: 99c650a62f19d120f849d16ba7f21085 SHA1: 88ae4264c2203b0c5fceefa158f40a173049dc01 SHA256: 403c4b74e1fa03e7e2af8e76e8d67f15b85bf33ac4f9a18206a229740fb3fc65 Description: development headers for the static GObject Python bindings Description-md5: bd6c4629323bb04c275d7585c2c46bbf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gobject-dbg Priority: extra Section: python Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: pygobject Version: 3.12.0-1 Depends: python-gi-dbg (>= 3.12.0-1), python-gobject-2-dbg Filename: pool/main/p/pygobject/python-gobject-dbg_3.12.0-1_all.deb Size: 2674 MD5sum: 8b0cc374851687377da2cf19ec27dea0 SHA1: d201bc55b785cb1e8e113938363d3fd577bd49a7 SHA256: 896082891b91bdd85543e9f3768f9061d5fa4c09f806d97706dd1132af4f98fe Description: Python 2.x debugging modules for GObject - transitional package Homepage: https://wiki.gnome.org/PyGObject Description-md5: 954e52c58f6a715d93f0bb39d354dcd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gobject-dev Priority: optional Section: python Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: all Source: pygobject Version: 3.12.0-1 Depends: python-gi-dev (>= 3.12.0-1), python-gi-dev (<< 3.12.0-1.1~), python-gobject-2-dev Filename: pool/main/p/pygobject/python-gobject-dev_3.12.0-1_all.deb Size: 2560 MD5sum: 93f2e30f31ccce3858974876782a6f1c SHA1: 55a0389d0abe935afb75f96e3c9920a21f0446eb SHA256: a114dfb4e06bb6bda111a3ff4926e042b0a625b0f8284abbb096d3f75dc794ec Description: Python 2.x development headers for GObject - transitional package Homepage: https://wiki.gnome.org/PyGObject Description-md5: 5e92564f564cce4acd6aa4f0e7329881 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gpgme Priority: optional Section: python Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Miguel Di Ciurcio Filho Architecture: i386 Source: pygpgme Version: 0.3-0ubuntu3 Provides: python2.7-gpgme Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libgpgme11 (>= 1.2.0) Filename: pool/main/p/pygpgme/python-gpgme_0.3-0ubuntu3_i386.deb Size: 23262 MD5sum: a755c87a1fbd8023da4f5d4b36548e1c SHA1: 2a5eb8fa425472cd56331926cf52b7030aa389da SHA256: cc5061d63f78d3824e54cc54b0022cb7189f9e71284f97b52213a9b26ad2d31d Description: python wrapper for the GPGME library (Python 2) Homepage: https://launchpad.net/products/pygpgme Description-md5: 77ab7b55532014436484f9b7471f0a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gpgme-dbg Priority: extra Section: debug Installed-Size: 347 Maintainer: Ubuntu Developers Original-Maintainer: Miguel Di Ciurcio Filho Architecture: i386 Source: pygpgme Version: 0.3-0ubuntu3 Provides: python2.7-gpgme-dbg Depends: python-gpgme (= 0.3-0ubuntu3), libc6 (>= 2.4), libgpgme11 (>= 1.2.0) Recommends: python-dbg Filename: pool/main/p/pygpgme/python-gpgme-dbg_0.3-0ubuntu3_i386.deb Size: 110798 MD5sum: 872504c916f0ab94d46b801980e43c20 SHA1: 2f0da3956a861bc1586837c6062500208208485c SHA256: e475a518c3d0a3b40ee335c5c16589092b3acf8093d2ac5406ff52f58b24e4be Description: python wrapper for the GPGME library (debug extension) (Python 2) Homepage: https://launchpad.net/products/pygpgme Description-md5: 2ce536753702412c35f7fb028cd95038 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gpod Priority: optional Section: python Installed-Size: 717 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libgpod Version: 0.8.3-4ubuntu3 Replaces: python2.3-gpod (<< 0.3.2-1.1) Provides: python2.7-gpod Depends: libgpod4 (= 0.8.3-4ubuntu3), libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.16), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-mutagen, python-gobject Conflicts: python2.3-gpod (<< 0.3.2-1.1) Filename: pool/main/libg/libgpod/python-gpod_0.8.3-4ubuntu3_i386.deb Size: 97740 MD5sum: c1e4ed4757f5d74d6444a1992513e184 SHA1: d8ed7b8acf6d4d0262dbbe0c6e198e504a3ef5cb SHA256: 3471a7315d69470f67a8c07686e6fe3740605e2793b935249345e094466764f9 Description: Python bindings for libgpod Homepage: http://www.gtkpod.org/wiki/Libgpod Description-md5: 671aa8389c6301ee4ec3e82de5457525 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-greenlet Priority: extra Section: python Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Version: 0.4.2-1build1 Depends: libc6 (>= 2.3.6-6~), python (>= 2.7), python (<< 2.8) Suggests: python-greenlet-doc, python-greenlet-dev, python-greenlet-dbg Conflicts: python-codespeak-lib (<< 1.0) Filename: pool/main/p/python-greenlet/python-greenlet_0.4.2-1build1_i386.deb Size: 16322 MD5sum: 61206bc5077bc3040f21f438a9cc32fb SHA1: d144065d55465070c7ffd35deedcb7b9f7c0832d SHA256: cc2f552097aa54b93bdc208992601c09599a2c35fd5f12ca5855db11481c64ca Description: Lightweight in-process concurrent programming Homepage: http://pypi.python.org/pypi/greenlet Description-md5: b225620244dd2583ddd491a478322fb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-greenlet-dbg Priority: extra Section: debug Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: python-greenlet Version: 0.4.2-1build1 Depends: libc6 (>= 2.3.6-6~), python-greenlet (= 0.4.2-1build1) Recommends: python-dbg Filename: pool/main/p/python-greenlet/python-greenlet-dbg_0.4.2-1build1_i386.deb Size: 12334 MD5sum: ee20605a3dec4eaaee9a8b1024efd652 SHA1: 5ee43fe9bc69e0fc20c271bda5ebdf1738243c9c SHA256: 65f2c2f28ead8d4c9d19bb21c3e4ade792e5f568762d6ab414747bb42507ed78 Description: Lightweight in-process concurrent programming - debugging symbols Homepage: http://pypi.python.org/pypi/greenlet Description-md5: 61fac8d92d90d8b78c7a0d99db0dc978 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-greenlet-dev Priority: extra Section: python Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Source: python-greenlet Version: 0.4.2-1build1 Depends: python-greenlet, python-greenlet (= 0.4.2-1build1) | python3-greenlet (= 0.4.2-1build1) Filename: pool/main/p/python-greenlet/python-greenlet-dev_0.4.2-1build1_i386.deb Size: 2540 MD5sum: db3bf7b4deaa2bb5acf53267a087fafc SHA1: 390cd9dcfb57ce9743f9f006efcf603d1ff54788 SHA256: e3a6d6ed2033fb96814251e4c81264be00263d2198697369a5567c3657431875 Description: Lightweight in-process concurrent programming - development files Homepage: http://pypi.python.org/pypi/greenlet Description-md5: 732237700918b05962305d8ea440ee79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-greenlet-doc Priority: extra Section: doc Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: all Source: python-greenlet Version: 0.4.2-1build1 Depends: libjs-jquery, libjs-underscore Suggests: python-greenlet, python-greenlet-dev Filename: pool/main/p/python-greenlet/python-greenlet-doc_0.4.2-1build1_all.deb Size: 41114 MD5sum: 3ae455c65724199c17e5280e405c35da SHA1: c7b296c8726253340663ed03f6a01934635ae68f SHA256: 2d2679906987bc2de9674df5abed13841d51bcf8d7c977409ec15edbc2ed2c88 Description: Lightweight in-process concurrent programming - documentation Homepage: http://pypi.python.org/pypi/greenlet Description-md5: 38b38ebd2f1d82dff433fbfa8e243dc0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gridfs Priority: optional Section: python Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: all Source: pymongo Version: 2.6.3-1build1 Provides: python2.7-gridfs Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pymongo Filename: pool/main/p/pymongo/python-gridfs_2.6.3-1build1_all.deb Size: 10246 MD5sum: 5bda8eff55d7a642fa348163ddc239fc SHA1: bee00c86823c63f179b7c1a2057992a6d7ab95ea SHA256: 9a1a8be9d200ba0c6a643212ae8710c900befa8dcde81811f24549aea2c9c80f Description: Python implementation of GridFS for MongoDB Homepage: http://api.mongodb.org/python/ Description-md5: 9f81017354ca04e7ee67c50fa96675e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gst0.10 Priority: optional Section: python Installed-Size: 983 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst0.10-python Version: 0.10.22-3ubuntu2 Replaces: python2.3-gst0.10, python2.4-gst0.10 Provides: python2.7-gst0.10 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.35.9), libgstreamer-plugins-base0.10-0 (>= 0.10.32), libgstreamer0.10-0 (>= 0.10.36), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-gobject (>= 2.11.2), python-libxml2 Suggests: python-gst0.10-dev, python-gst0.10-dbg Conflicts: python2.3-gst0.10, python2.4-gst0.10 Filename: pool/main/g/gst0.10-python/python-gst0.10_0.10.22-3ubuntu2_i386.deb Size: 185382 MD5sum: 1a3063e5dca329a9302631e365161fb2 SHA1: 571059661a5fb974b77992928f747e22305487f7 SHA256: cab24ca8c3a5478ddeac3aeb41f15eb663961bab4a177b5e995aa653de44f510 Description: generic media-playing framework (Python bindings) Homepage: http://gstreamer.freedesktop.org Description-md5: 1748db52e021ae1ff627750c13e5a80f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gst0.10-dbg Priority: extra Section: python Installed-Size: 3209 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst0.10-python Version: 0.10.22-3ubuntu2 Depends: python-gst0.10 (= 0.10.22-3ubuntu2), python-dbg, python-gobject-dbg, libc6 (>= 2.4), libglib2.0-0 (>= 2.35.9), libgstreamer-plugins-base0.10-0 (>= 0.10.32), libgstreamer0.10-0 (>= 0.10.36) Filename: pool/main/g/gst0.10-python/python-gst0.10-dbg_0.10.22-3ubuntu2_i386.deb Size: 684286 MD5sum: 1a85a9948a49df31787afb2a1ea2c26a SHA1: 3d948c87a06c3ccef84a3d7da3fddd8c101c8ce9 SHA256: f38f8237e0adeda5e771b0abfd8de8dd277863bb0208dbe04c31913d637411ca Description: generic media-playing framework (Python debug bindings) Homepage: http://gstreamer.freedesktop.org Description-md5: 986562fcdee9a8f777e15cfbeb1d9d89 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gst0.10-dev Priority: optional Section: python Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of GStreamer packages Architecture: i386 Source: gst0.10-python Version: 0.10.22-3ubuntu2 Replaces: python-gst0.10 (<< 0.10.15) Depends: python-gobject-dev (>= 2.11.2), libgstreamer0.10-dev (>= 0.10.32), libgstreamer-plugins-base0.10-dev (>= 0.10.32), python-gst0.10 (= 0.10.22-3ubuntu2), python-libxml2 Suggests: python-gst0.10-dbg Filename: pool/main/g/gst0.10-python/python-gst0.10-dev_0.10.22-3ubuntu2_i386.deb Size: 38874 MD5sum: a6fc35b60b339ba5b6c5b4b0da8e2fb2 SHA1: ebe3ec628fb38dd9ab81dd5961fe6b2781910e8b SHA256: b321c73915dbc7381ec9e9c49927b824a4dc7b61e5a17a478198bc73f1d29427 Description: generic media-playing framework (Python bindings) Homepage: http://gstreamer.freedesktop.org Description-md5: c8398a28bc4e7f43279fae0b60dcbaa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gtk-vnc Priority: optional Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: i386 Source: gtk-vnc Version: 0.5.3-0ubuntu2 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.24.0), libgtk-vnc-1.0-0 (>= 0.5.1), libgtk2.0-0 (>= 2.8.0), python (>= 2.7), python (<< 2.8), python-gtk2 (>= 2.0) Filename: pool/main/g/gtk-vnc/python-gtk-vnc_0.5.3-0ubuntu2_i386.deb Size: 8482 MD5sum: 3cc5d44e81e010525623ba5e217619d0 SHA1: c168db041b935e132962c1433626b7de16c045a8 SHA256: 8fcc8072c3d568a66c17950cc5fc7fafa6c9a692dcea6a79273fba598bd8a0a6 Description: VNC viewer widget for GTK+2 (Python binding) Description-md5: 197bfc980162f35153746006f1e766d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-gtk2 Priority: optional Section: python Installed-Size: 2956 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: i386 Source: pygtk Version: 2.24.0-3ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.21.4), python-cairo (>= 1.0.2-1.1), python-gobject-2 (>= 2.21.3) Suggests: python-gtk2-doc Breaks: python-gtkglext1 (<< 1.1.0-7~) Filename: pool/main/p/pygtk/python-gtk2_2.24.0-3ubuntu3_i386.deb Size: 548550 MD5sum: 27bc4b660a5e452693d7841a6f3a327a SHA1: e2ed017716165e389dd5c6da0fba144ab792a764 SHA256: fe3073405b8da5d74426e0ae46b506d073758a0965bacd7bb35c0702366f9a38 Description: Python bindings for the GTK+ widget set Homepage: http://www.pygtk.org/ Description-md5: 5035418ed759bba8e07e525854b1624f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-gtk2-dbg Priority: extra Section: python Installed-Size: 10030 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: i386 Source: pygtk Version: 2.24.0-3ubuntu3 Depends: python-gtk2 (= 2.24.0-3ubuntu3), python-glade2 (= 2.24.0-3ubuntu3), python-numpy-dbg, python-cairo-dbg, python-gobject-2-dbg, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglade2-0 (>= 1:2.6.4-2~), libglib2.0-0 (>= 2.24.0), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.21.4), python-dbg (>= 2.7), python-dbg (<< 2.8) Filename: pool/main/p/pygtk/python-gtk2-dbg_2.24.0-3ubuntu3_i386.deb Size: 2035298 MD5sum: 5f36a0c3408eaeaddd2c9ae95047d174 SHA1: a30d2aeab9537f63cd8ff9675e77a912ceab5cf7 SHA256: e331ec1d10fb51d9e8ab60283d7d24925b1d4882ab9423471a6eaa6e0c0c49ac Description: Python bindings for the GTK+ widget set (debug extension) Homepage: http://www.pygtk.org/ Description-md5: 23ccbe30e7daaa08e6ffd95ccdc56fed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gtk2-dev Priority: optional Section: python Installed-Size: 1286 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: all Source: pygtk Version: 2.24.0-3ubuntu3 Depends: python-gtk2 (>= 2.24.0-3ubuntu3), python-gtk2 (<< 2.24.0-3ubuntu3.1~), libglib2.0-dev (>= 2.8), libgtk2.0-dev (>= 2.18.0), python-dev, python-gobject-2-dev (>= 2.21.3) Recommends: python-gtk2-doc Filename: pool/main/p/pygtk/python-gtk2-dev_2.24.0-3ubuntu3_all.deb Size: 112316 MD5sum: df31d1d625f5a2af8bb424f38e6fdb75 SHA1: 312824eaec1def0ef68e78f0297914f4dd8c5f7a SHA256: c5838527d84b4c30df7848396bc583bca6c3897074ca9fbd9a57452473fd66f7 Description: GTK+ bindings: devel files Homepage: http://www.pygtk.org/ Description-md5: 5bb91e01a3f586df7b6f9ae3e658331b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-gtk2-doc Priority: optional Section: doc Installed-Size: 11701 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: all Source: pygtk Version: 2.24.0-3ubuntu3 Depends: python:any (>= 2.7.1-0ubuntu2), python-gtk2 Recommends: python-gobject-2, python-cairo, python-glade2 Suggests: devhelp Filename: pool/main/p/pygtk/python-gtk2-doc_2.24.0-3ubuntu3_all.deb Size: 1006574 MD5sum: 63172d13cbccaa5629d50aa05133d40f SHA1: e873c1e56150c716975262691ef2dd7164e322bb SHA256: 0fa21e7465efb56812bf3804e854f827466e4f7cfe90a6b0dd26896dcec53841 Description: Python bindings for the GTK+ widget set - documentation Homepage: http://www.pygtk.org/ Description-md5: 1fdbe1b697073e637b100524bebc4435 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-happybase Priority: optional Section: python Installed-Size: 460 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.7-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-thrift Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-happybase/python-happybase_0.7-1build1_all.deb Size: 30490 MD5sum: 6eb936b2419cfbc03c22347f4a5dff49 SHA1: bf617b64daf62741d9a6bda251a5e01f3cd83cc6 SHA256: 0946b56471cc7e5601c2ce1e2c3442a10c7788e3f409c7a7337a400a53b53992 Description: developer-friendly Python library to interact with Apache HBase Homepage: https://github.com/wbolster/happybase Description-md5: d25769aa31f6644c5c5e38407aedf7c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-hdate Priority: optional Section: python Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian Hebrew Packaging Team Architecture: i386 Source: libhdate Version: 1.6-2ubuntu3 Provides: python2.7-hdate Depends: libhdate1 (= 1.6-2ubuntu3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/libh/libhdate/python-hdate_1.6-2ubuntu3_i386.deb Size: 16802 MD5sum: 637d22056013f183fae84e9a10fa645d SHA1: f2b7c9b62d53b97448e229d4b8f7dc6ec48a8d61 SHA256: 31cfc2fa26f82a64aff7de4c878db519cd1b42e0925d4e5b7b178f6de1e98df9 Description: Provides a library that help use hebrew dates (python bindings) Multi-Arch: foreign Homepage: http://libhdate.sourceforge.net/ Description-md5: efabe79e2bb30bfdfa484557fe89a79a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-heat Priority: optional Section: python Installed-Size: 4062 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: heat Version: 2014.1-0ubuntu1 Depends: python-argparse, python-boto (>= 2.4), python-cinderclient, python-crypto (>= 2.6), python-eventlet (>= 0.12.0), python-extras, python-glanceclient, python-greenlet (>= 0.3.2), python-httplib2, python-iso8601, python-keystoneclient (>= 1:0.2.3), python-kombu, python-lxml (>= 2.3), python-memcache, python-migrate, python-mysqldb, python-neutronclient (>= 1:2.2.0), python-novaclient, python-oslo.config, python-paste, python-pastedeploy, python-routes, python-setuptools, python-six, python-sqlalchemy (>= 0.8~), python-swiftclient, python-webob (>= 1.2.3), python-yaml, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-netaddr, python-requests, python-sqlalchemy (<< 0.9), python-heatclient, python-ceilometerclient, python-troveclient, python-paramiko, python-babel Filename: pool/main/h/heat/python-heat_2014.1-0ubuntu1_all.deb Size: 460202 MD5sum: e869ec63d3315c0d6921e4b838ab982e SHA1: 02b7fb8dce86d3ebb9d145f17895ac565c6b63f5 SHA256: e83b50f791c3a9da0ce8c395eef854a4d614b733a6f60d1f1fea9aef3d54b0c4 Description: OpenStack orchestration service - Python files Homepage: http://wiki.openstack.org/Heat Description-md5: e4d5556b61c4fca7372aee160ff69300 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-heatclient Priority: optional Section: python Installed-Size: 378 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.2.8-0ubuntu1 Depends: python (>= 2.7), python-httplib2, python-iso8601, python-keystoneclient (>= 1:0.2), python-pkg-resources, python-prettytable (<< 0.8), python-prettytable (>= 0.5), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-yaml, python-six, python-requests Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-heatclient/python-heatclient_0.2.8-0ubuntu1_all.deb Size: 50204 MD5sum: 211400536d827693652dcad106c97ff4 SHA1: 1669e4417cf3103994ec218effc75f6c137250e3 SHA256: 9157adfa70a3b853c5311bb171488af73ec8ad38fd58e26d7947036b4405e310 Description: client library and CLI for OpenStack Heat Description-md5: adf6c99fbaff393a2677237eeb42ef1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-hp3parclient Priority: optional Section: python Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 3.0.0-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-httplib2 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-hp3parclient/python-hp3parclient_3.0.0-0ubuntu1_all.deb Size: 21338 MD5sum: cdae2cb734907b2424b9e2b2ae1d181d SHA1: b9cefa1a08673c4446bc224f509d20d274972c02 SHA256: e6fbc6c6800f8dea55fffc57d341a8427a4b74170718fe04bb76330bdd0ed164 Description: client library that can talk to the HP 3PAR Storage array Homepage: http://packages.python.org/hp3parclient Description-md5: 916bcfcb8c0cdf7fd11c8d27f0b7f289 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-hplefthandclient Priority: optional Section: python Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.0.1-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-httplib2 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-hplefthandclient/python-hplefthandclient_1.0.1-1ubuntu1_all.deb Size: 9792 MD5sum: e69e4560a008a7937bcda80d3d88b877 SHA1: cc9e987b33fea86946d2e1ab02bd21f4a03e1868 SHA256: 112711c232c4ab93de6e4e56b439cdf43ed0ea17313e471beab7994998e40f81 Description: HP LeftHand/StoreVirtual HTTP REST Client - Python 2.x Homepage: http://packages.python.org/hplefthandclient Description-md5: 9b2eb493b113402e15084ae334fa8551 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-hplefthandclient-doc Priority: optional Section: doc Installed-Size: 484 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-hplefthandclient Version: 1.0.1-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-hplefthandclient/python-hplefthandclient-doc_1.0.1-1ubuntu1_all.deb Size: 41404 MD5sum: e3d995a6e270c267fa09daab7594fcea SHA1: 730497f238b501a7f8cea056f5bcfb12abf1f5c8 SHA256: 8a5d92371676c70e1d46a9ffc86cb764ea991154e81d7635f70a2a5c48b74dfd Description: HP LeftHand/StoreVirtual HTTP REST Client - doc Homepage: http://packages.python.org/hplefthandclient Description-md5: 43107e28e7b7aadd805851f45b3b0e1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-html5lib Priority: optional Section: python Installed-Size: 539 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: html5lib Version: 0.999-2 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~), python-six Suggests: python-lxml, python-genshi, python-chardet Filename: pool/main/h/html5lib/python-html5lib_0.999-2_all.deb Size: 83158 MD5sum: 385953c57264e9e0b8a8ba30f727dae0 SHA1: 184a21c50d8abfd5ceabc33ba53698d93edf7d14 SHA256: d885589969c39bac25cef9955bfc4c0fb7934602e29da040f34e22d46ebbcad3 Description: HTML parser/tokenizer based on the WHATWG HTML5 specification (Python 2) Homepage: https://github.com/html5lib/html5lib-python Description-md5: aea1c0cc9bf8f95826e63085ada1532c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-htmlgen Priority: optional Section: python Installed-Size: 1236 Maintainer: Ubuntu MOTU Developers Original-Maintainer: Kevin Coyner Architecture: all Source: htmlgen Version: 2.2.2-12.1ubuntu1 Replaces: htmlgen (<< 2.2.2-8.2), python2.3-htmlgen (<< 2.2.2-11), python2.4-htmlgen (<< 2.2.2-11) Provides: python2.7-htmlgen Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-imaging Conflicts: htmlgen (<< 2.2.2-8.2), python2.3-htmlgen (<< 2.2.2-11), python2.4-htmlgen (<< 2.2.2-11) Filename: pool/main/h/htmlgen/python-htmlgen_2.2.2-12.1ubuntu1_all.deb Size: 248592 MD5sum: 3b496f40b19134c89b2e451d80a8bcf5 SHA1: 56a2dfcd1a09543e011d1ad918791416875e45b4 SHA256: 40d586bbd6663ae310cc6fe019383ec42dab7375a9b57889a130c09447566123 Description: Python library for the generation of HTML Description-md5: 4a8ee938aba79cbd46c738877f614c96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-httplib2 Priority: optional Section: libs Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: all Version: 0.8-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), ca-certificates Filename: pool/main/p/python-httplib2/python-httplib2_0.8-2build1_all.deb Size: 35364 MD5sum: f89336424e43d4c425427218fe78ca7f SHA1: 2c13203a6900f79a39f6cd2ba7adb50b3aef03e0 SHA256: 1f477dc82b23e0f6cf42f604e71f12b5ff54a2365407b14e609584bbf2c46d01 Description: comprehensive HTTP client library written for Python Homepage: http://code.google.com/p/httplib2/ Description-md5: 098dea719923e25f61c28f474109dc1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-httpretty Priority: optional Section: python Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.8.0-0ubuntu3 Depends: python-urllib3, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-httpretty/python-httpretty_0.8.0-0ubuntu3_all.deb Size: 13590 MD5sum: 1433146beca10c2c19400fc8a2896d50 SHA1: cec05f1ad7b503623426d57f5c0ac83bd39da279 SHA256: e49a9fc96ca0feae112dfd82a5181b7b21a9d8cdb58bdb7d9a0a25d5d3589bb4 Description: HTTP client mock for Python Homepage: http://github.com/gabrielfalcao/httpretty Description-md5: b33ba1c1f43ccd1ae9a73884f46120d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ibus Priority: optional Section: python Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: all Source: ibus Version: 1.5.5-1ubuntu3 Depends: iso-codes, python-dbus (>= 0.83.0), python-gtk2, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/i/ibus/python-ibus_1.5.5-1ubuntu3_all.deb Size: 30654 MD5sum: 30876820030c05cd4614851baa04088a SHA1: e47498195a5453f034dd34ee2fb760ee1232ff8a SHA256: e541a9aef0cf391322566e2dcf51dd64bda61eb7c4da5a8c0ed14ee37c76c595 Description: Intelligent Input Bus - Python support Homepage: http://code.google.com/p/ibus/ Description-md5: a700abef97697e7294f7362fecc2514b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: python-imaging Priority: optional Section: python Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-compat (<< 1.1.7+2.0.0-1.1) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pil Conflicts: python-imaging-compat (<< 1.1.7+2.0.0-1.1) Breaks: python-imaging-compat (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-imaging_2.3.0-1ubuntu3_all.deb Size: 4348 MD5sum: f392ada4280ba8e0958e659b9c66a5e3 SHA1: cfccbaae6cf30bf2c5aecb3ffc442249711b80bb SHA256: 2bc7f390388c4cb79525240fa6cc12a8f3ebe01d9b0b02bec97c9d0fa5b3cdb4 Description: Python Imaging Library compatibility layer Description-md5: b38818fda61e148f59f5054daee87aef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-imaging-dbg Priority: extra Section: python Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python-pil-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python-imaging-dbg_2.3.0-1ubuntu3_all.deb Size: 2722 MD5sum: 9baf51c2b3d33b37c102085f68c0c6c3 SHA1: aaaa3cf9569ebe34754e8210747b06cf508ed93d SHA256: a736efacbd35850fb9f7b7a479fec3e0b8b2804c232a82c70b36f9c1680d1035 Description: Dummy transitional package Description-md5: 4da76f95ff710632847251ecb54943a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-imaging-doc Priority: optional Section: doc Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python-pil-doc (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python-imaging-doc_2.3.0-1ubuntu3_all.deb Size: 1852 MD5sum: f23a2c134239cbb87a4924a1c8ca67c4 SHA1: 3c5390d76760f292c175909969cbb17c1f400143 SHA256: 31b409a5779a5ef5f17f827e2f8ca86d9998863704f7e71fc926510c6eab1bc5 Description: Dummy transitional package Description-md5: b45f15422be0ad72a0153de08c132344 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-imaging-sane-dbg Priority: extra Section: python Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python-sane-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python-imaging-sane-dbg_2.3.0-1ubuntu3_all.deb Size: 2734 MD5sum: 6a199900d9d80f6fed09165b43379e00 SHA1: cf96241e340d22c3e1793ec0b38780ff3850d713 SHA256: 14d240597cfbbdeb15f5c9a76a660f31ccf46f6aae38f404df5355613e638056 Description: Dummy transitional package Description-md5: 5ccbb9dfb0dd3c2e318c54171830715d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-imaging-tk-dbg Priority: extra Section: python Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python-pil.imagetk-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python-imaging-tk-dbg_2.3.0-1ubuntu3_all.deb Size: 2732 MD5sum: 0d24fb035ee847a5b5d0bc4b3b94e406 SHA1: 8f47b4ea589892e0d5ca4c221c50559c6714690b SHA256: 78abf9404da74870bbb9426392aabf2ba66be5a31cb9539c49e76635cdc20af1 Description: Dummy transitional package Description-md5: 7a2bf8ec7f72c8f5453e49bd56071101 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ipaddr Priority: optional Section: python Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Scott Kitterman Architecture: all Version: 2.1.10-1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/p/python-ipaddr/python-ipaddr_2.1.10-1_all.deb Size: 16468 MD5sum: dd68b2b72af833f9d6ae8c783bddec96 SHA1: 3ad5cddea3d21f5620e6dc7a8155f66d3dae1820 SHA256: 7526736bd6320a7d8ffa224d76f2786db80e948287ad5241a253bb5c8c3e55fa Description: Python module for working with IP addresses, both IPv4 and IPv6 Homepage: http://code.google.com/p/ipaddr-py/ Description-md5: 5a0e8d51445e1bf25545a192107d31ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-iscpy Priority: optional Section: python Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: MAAS Maintainers Architecture: all Source: iscpy Version: 1.05-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/i/iscpy/python-iscpy_1.05-0ubuntu2_all.deb Size: 6872 MD5sum: 77223a163f1cdb46cd68fa66fe10ba52 SHA1: e11522479150680fbb50a856dfc9a74b02ca9fa9 SHA256: afb4f2158e5d1bf1a219124efabc733282ba923de1bd39a6cd60424f70f1785f Description: Python library to parse ISC style config files Homepage: https://pypi.python.org/pypi/iscpy Description-md5: 17679b4047d6aac8e658d05dd783eb45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-iso8601 Priority: extra Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Mako Hill Architecture: all Version: 0.1.10-0ubuntu1 Provides: python2.7-iso8601 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-iso8601/python-iso8601_0.1.10-0ubuntu1_all.deb Size: 11748 MD5sum: cf96e81ac68c98ba7dccab09b29e7a1b SHA1: adebc66a6e98d1c567372db6ebfc55f277697dcb SHA256: e5cf1abe2ccb1906190394478b835a9e123e09c9d154cd3a031d1bc5de4c735d Description: python module to parse ISO 8601 dates (python2) Homepage: https://code.google.com/p/pyiso8601 Description-md5: 27205f3dd6e0761206338373b79eb73e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-itsdangerous Priority: optional Section: python Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.22+dfsg1-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-itsdangerous/python-itsdangerous_0.22+dfsg1-1build1_all.deb Size: 11546 MD5sum: 41f85eb2b23f50761d2914f34e28fd52 SHA1: 1cb686225d50727fc066943a07761c7d5fad4ba9 SHA256: 22c4bff19ea911e0920fb082a6e5964b299c1e753db9f2ffe4e349f736eea15b Description: Various helpers to pass trusted data to untrusted environment - python 2.x Homepage: http://pythonhosted.org/itsdangerous/ Description-md5: fe549ed18254fa8bde517ebc80ffb554 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-jabber Priority: optional Section: python Installed-Size: 440 Maintainer: Ubuntu Developers Original-Maintainer: Cosimo Alfarano Architecture: all Source: jabber.py Version: 0.5.0-1.5ubuntu1 Replaces: python2.3-jabber (<< 0.5.0-1.2), python2.4-jabber (<< 0.5.0-1.2) Provides: python2.7-jabber Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python2.3-xml Conflicts: python2.3-jabber (<< 0.5.0-1.2), python2.4-jabber (<< 0.5.0-1.2) Filename: pool/main/j/jabber.py/python-jabber_0.5.0-1.5ubuntu1_all.deb Size: 72358 MD5sum: 941186a5976ffd99a5c6a52233903f4f SHA1: af6af83e152b38951474de5e31fc6187aadd2db9 SHA256: 6b95ac653934ecbafbc0220498678c3467d5ebdeebd19631ed616c4310a3ce52 Description: Python module for the Jabber instant messaging platform Description-md5: c30b34baf002574e6a4fc965ca499dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-jinja2 Priority: optional Section: python Installed-Size: 985 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: jinja2 Version: 2.7.2-2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-markupsafe Recommends: python-pkg-resources Suggests: python-jinja2-doc Filename: pool/main/j/jinja2/python-jinja2_2.7.2-2_all.deb Size: 160620 MD5sum: 9cd2578120e51095678dce07fe22a7ad SHA1: 833733bf8fd25c66ad83d8fd49160adac60ab63f SHA256: f9a7c7b9724a4e9930cb27ddb63722b707b165d995b9e79c1678335c83c1c954 Description: small but fast and easy to use stand-alone template engine Enhances: python-pybabel Homepage: http://jinja.pocoo.org/2/ Description-md5: 946c5e58f8736a9521b16a6d4c1157e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-jinja2-doc Priority: extra Section: doc Installed-Size: 921 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: jinja2 Version: 2.7.2-2 Depends: libjs-sphinxdoc (>= 1.0) Recommends: python-jinja2 Filename: pool/main/j/jinja2/python-jinja2-doc_2.7.2-2_all.deb Size: 135470 MD5sum: 0505708e4462e65c51330178571bc4ca SHA1: e5634f6b1d55e1d4d0ff542c110e916b230f7c02 SHA256: 00c127e1f99dff456e942e9b06845fa5ce6955b7d538be44a22219b2ce8b6ea2 Description: documentation for the Jinja2 Python library Homepage: http://jinja.pocoo.org/2/ Description-md5: e5fe357cd6b91f10c8ecccac668a8672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-json-patch Priority: optional Section: python Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.3-4 Depends: python-jsonpatch Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-json-patch/python-json-patch_1.3-4_all.deb Size: 2312 MD5sum: 5b8a855cfd49edad79d3432f227d42c0 SHA1: df1d746c9f2801c87acac2a113738ce64df6a716 SHA256: a77fb96284b022c043567c3d7235a8a82858c128ca9f0c7489a9c2ddf8e33415 Description: library to apply JSON patches - python 2.x transitional package Homepage: https://github.com/stefankoegl/python-json-patch Description-md5: d0e7d571c67a784957598d04d047af7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-json-pointer Priority: optional Section: python Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.0-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-json-pointer/python-json-pointer_1.0-2build1_all.deb Size: 5158 MD5sum: b0762e2a2192458adcbf70e6be02172d SHA1: 148200d3f577c5b2f26fdbd20ea2b387488c590c SHA256: 0825c4ffcb444fd564721afb5b6e627251a83392373aa329a64eda7863eaee11 Description: resolve JSON pointers - python 2.x Homepage: https://github.com/stefankoegl/python-json-pointer Description-md5: 88ebc1646dbd25b8c4e5cd265730c872 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-jsonpatch Priority: optional Section: python Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-json-patch Version: 1.3-4 Replaces: python-json-patch (<< 1.3-3~) Depends: python-json-pointer, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Breaks: python-json-patch (<< 1.3-3~) Filename: pool/main/p/python-json-patch/python-jsonpatch_1.3-4_all.deb Size: 9088 MD5sum: d1521e9621c4c751d164a6d979705a12 SHA1: 6c2bd789e34de4ba21d1a47ebd11b2cc460eff51 SHA256: 8a3f30fbdb45f7b220aa5297428fe0f84761b4cc2f95e0424ae418f6ff350859 Description: library to apply JSON patches - python 2.x Homepage: https://github.com/stefankoegl/python-json-patch Description-md5: dfb83c7e2938da703b78efb58a27f76a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-jsonpath-rw Priority: optional Section: python Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.2.0-1build1 Depends: python-six, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-ply, python-decorator Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-jsonpath-rw/python-jsonpath-rw_1.2.0-1build1_all.deb Size: 12926 MD5sum: 7e40b1562d3f18032e6236b1ada10cb6 SHA1: 73d606c2d0e7dc1149287f4294bf7130b2351360 SHA256: 6544b698a0b9fc0cabcf9dbc32750f14010c6c8d1e8bfaded37f629d87ef00e5 Description: extended implementation of JSONPath for Python 2.x Homepage: https://github.com/kennknowles/python-jsonpath-rw Description-md5: 8c3c26a7ca91a4c152b759e0cd5c4b87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-jsonrpclib Priority: optional Section: python Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.1.3-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-simplejson Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-jsonrpclib/python-jsonrpclib_0.1.3-1build1_all.deb Size: 14076 MD5sum: 0277bea4326378576c341221acc648c2 SHA1: 07f9223440833bebcbe61c9713a3c6c6694546a1 SHA256: 821dfb72d88edf8e67c3fe09dee79ef8f7829c5261b73c0b84e1fc76c4ab6ff5 Description: implementation of the JSON-RPC v2.0 specification Homepage: https://pypi.python.org/pypi/jsonrpclib Description-md5: df1059d39ea649b629d8d90d579fb364 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-jsonschema Priority: optional Section: python Installed-Size: 164 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 2.3.0-1build1 Depends: python-mock, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-jsonschema/python-jsonschema_2.3.0-1build1_all.deb Size: 27152 MD5sum: f24f78b639a2aed323e456bd8df4b099 SHA1: 9980305c18add8aa5fb90c6b4a061c6d702e39e7 SHA256: 17227c0ac21b885118845b712559139859094e9572252ca5ced6d4b8ab23605f Description: An(other) implementation of JSON Schema (Draft 3) for Python Homepage: https://github.com/Julian/jsonschema Description-md5: 707bb548845ed0a05e5c71bc7ad24fa9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-junitxml Priority: optional Section: python Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Source: pyjunitxml Version: 0.6-1.1build1 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~) Filename: pool/main/p/pyjunitxml/python-junitxml_0.6-1.1build1_all.deb Size: 8940 MD5sum: 3892633415944f93e8849819ca65683e SHA1: bb192f93ed8f6f1aa2fbcd2f3eac115d91c3828a SHA256: 40f73c2a18a85d7e877c77819364abffb713cac72c17f178fa5f04efada0eb6f Description: PyUnit extension for reporting in JUnit compatible XML Description-md5: 2fe874e2f284247bf4fc36d37c2cb1e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-kajiki Priority: extra Section: python Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.4.4-1ubuntu1 Provides: python2.7-kajiki Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-nine, python-babel Filename: pool/main/p/python-kajiki/python-kajiki_0.4.4-1ubuntu1_all.deb Size: 43952 MD5sum: d13c08198cdf6ec38d029a680592f5e1 SHA1: addf369c05dad1fece3af1bb4f2621c2a2773f78 SHA256: 55b6fa7a9dfabdef69cb021516a83a0b4371fb1c53eb17b8a06c58435c2f692e Description: Really fast well-formed xml templates Homepage: http://sourceforge.net/p/kajiki/home/ Description-md5: fc21b83b7f10c9bf588bcc270a1de7bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-keyring Priority: optional Section: python Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Carl Chenet Architecture: all Version: 3.5-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-secretstorage, python-crypto Suggests: python-gi, gir1.2-gnomekeyring-1.0, python-gdata, python-keyczar, python-kde4 Breaks: kupfer (<< 0+v208-2.1), python-mini-buildd (<< 1.0.0~gamma.3) Filename: pool/main/p/python-keyring/python-keyring_3.5-1_all.deb Size: 51756 MD5sum: 33e304163689ded4658db93ffe62be55 SHA1: ae2622259f0da383fc224b6f34ac766bc346a64c SHA256: 3d3af807258d73c0a011db3dc3a4a296120248eb3d3b69aa88f0c22b72e1d598 Description: store and access your passwords safely Homepage: https://bitbucket.org/kang/python-keyring-lib Description-md5: 3dc4fbfcf3523901bf87a7ee24f11b6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-keystone Priority: extra Section: python Installed-Size: 6916 Maintainer: Ubuntu Developers Original-Maintainer: Monty Taylor Architecture: all Source: keystone Version: 1:2014.1-0ubuntu1 Provides: python2.7-keystone Depends: python-babel, python-dogpile.cache (>= 0.5.0), python-eventlet, python-greenlet, python-iso8601, python-keystoneclient (>= 1:0.3.0), python-kombu (>= 2.4.8), python-lockfile, python-lxml, python-migrate, python-netaddr, python-oslo.config (>= 1:1.2.0a3), python-pam (>= 0.1.4), python-passlib, python-paste, python-pastedeploy, python-routes, python-sqlalchemy (>= 0.8.2), python-webob (>= 1.0.8), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-six, python-sqlalchemy (<< 0.9), python-oslo.messaging, python-oauthlib, python-jsonschema, python-pycadf Suggests: python-memcache Filename: pool/main/k/keystone/python-keystone_2014.1-0ubuntu1_all.deb Size: 412660 MD5sum: f68437b1d5e3cacc4111c1b8c30da0ad SHA1: 329cf0233bb47b6e41266d57cee0c5e6db5ad632 SHA256: 6611a9b3ba8a06ab214d3f707f19dd8807b972daedabf942e027369c1ead0d0d Description: OpenStack identity service - Python library Homepage: http://launchpad.net/keystone Python-Version: 2.7 Description-md5: 164bf6a04887bccf5d178b0e54933ecb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-keystoneclient Priority: extra Section: python Installed-Size: 1068 Maintainer: Chuck Short Architecture: all Version: 1:0.7.1-ubuntu1 Depends: python-iso8601, python-pkg-resources, python-requests (>= 1.1.0), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-babel, python-netaddr, python-oslo.config, python-pbr, python-prettytable, python-six Filename: pool/main/p/python-keystoneclient/python-keystoneclient_0.7.1-ubuntu1_all.deb Size: 138674 MD5sum: 397c055bd4c8580c5e8940a27313779a SHA1: 7a996353bbcb1d3801c73703810dc044bd790d11 SHA256: 4a2434615467c2b7028594d644acb732c1c7430d38f553b0d2c91119820dbc75 Description: Client library for OpenStack Identity API Description-md5: fc8c4ddbda8382e94bee34832a059345 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-kombu Priority: optional Section: python Installed-Size: 788 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: kombu Version: 3.0.7-1ubuntu1 Depends: python-librabbitmq | python-amqp (>= 1.3.3), python-anyjson (>= 0.3.3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-amqp Recommends: python-yaml Suggests: python-boto, python-beanstalkc, python-django, python-kombu-doc, python-pika, python-pymongo, python-sqlalchemy Breaks: python-cjson (<= 1.0.5-4+b1) Filename: pool/main/k/kombu/python-kombu_3.0.7-1ubuntu1_all.deb Size: 133258 MD5sum: be47130b5d6eaa5e5e889e86d68dbbd7 SHA1: a7b57bf3fcb9a80fc900b0131e6e03e15577c4db SHA256: 53ed03fdf1d31a3a0f2c0f413a0f4c12a300a23bb354a9de4f1565934dc2e92e Description: AMQP Messaging Framework for Python Homepage: http://github.com/ask/kombu/ Description-md5: 848b8b50da6eb9f6ea81881d26c16e05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-kombu-doc Priority: optional Section: doc Installed-Size: 1928 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: kombu Version: 3.0.7-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/k/kombu/python-kombu-doc_3.0.7-1ubuntu1_all.deb Size: 160460 MD5sum: b9d64f07c6545cf81219c9f219bb0226 SHA1: 6ac31e5000204f9ad6b6a5eae4a71fc37a6d376b SHA256: 42222f47a1b20f76b59f9b0dabdb0608f5696c92177b09bde876313e08668556 Description: AMQP Messaging Framework for Python (Documentation) Homepage: http://github.com/ask/kombu/ Description-md5: 511f8b350dc2d923b621c5c43a375a87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-launchpadlib Priority: optional Section: python Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Stefano Rivera Architecture: all Version: 1.10.2+ds-2 Depends: python-httplib2 (>= 0.4.0), python-keyring (>= 0.5), python-lazr.restfulclient (>= 0.11.2), python-lazr.uri (>= 1.0.2-4~), python-oauth, python-simplejson, python-wadllib, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-pkg-resources, python-testresources Filename: pool/main/p/python-launchpadlib/python-launchpadlib_1.10.2+ds-2_all.deb Size: 45128 MD5sum: 9a5709dec63fee72a08fc0071776a280 SHA1: a1395c142968a7fd7175a8b9de02769ca7beaa14 SHA256: ca94770c1402c1b2638914e087c8c968725e40a5b1e49edbc1d91dfe09b8be8a Description: Launchpad web services client library Homepage: https://launchpad.net/launchpadlib Description-md5: a750e50e8b37547aff54df37eaf126d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-lazr.restfulclient Priority: optional Section: python Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Stefano Rivera Architecture: all Source: lazr.restfulclient Version: 0.13.3-1build1 Depends: python-httplib2, python-lazr.uri, python-pkg-resources, python-simplejson, python-wadllib (>= 1.1.4), python-zope.interface, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-oauth Filename: pool/main/l/lazr.restfulclient/python-lazr.restfulclient_0.13.3-1build1_all.deb Size: 50502 MD5sum: 3df6c737d6f180e29ecbcf7c1d3a2427 SHA1: c4aef5de3662bda2535eb3257e380fa00c67a145 SHA256: 57518832ef937957d9de259b9721d5815342b4432019d45a8fa229b5c25e17bf Description: client for lazr.restful-based web services Homepage: https://launchpad.net/lazr.restfulclient Description-md5: 4bfcfc7863641f40799005d6ab78bd42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-lazr.uri Priority: optional Section: python Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Stefano Rivera Architecture: all Source: lazr.uri Version: 1.0.3-1build1 Depends: python-pkg-resources, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/l/lazr.uri/python-lazr.uri_1.0.3-1build1_all.deb Size: 13402 MD5sum: bcd78aa8023871245d769b5aa4dd99de SHA1: 2b3bec584696e0de083a0b4da8321615bffe130c SHA256: 8bc2889dbc08aa81ec703436d3c233868a6c02f9b35fc614e128d04e7b68306d Description: library for parsing, manipulating, and generating URIs Homepage: https://launchpad.net/lazr.uri Description-md5: 336760955befd26bd1fd61220f0d7fb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ldap Priority: optional Section: python Installed-Size: 307 Maintainer: Ubuntu Developers Original-Maintainer: Matej Vela Architecture: i386 Version: 2.4.10-1build1 Replaces: python2.3-ldap (<< 2.2.0-1.1), python2.3-ldap-tls, python2.4-ldap (<< 2.2.0-1.1) Provides: python2.7-ldap Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libldap-2.4-2 (>= 2.4.7) Suggests: python-ldap-doc, python-pyasn1 Conflicts: python2.3-ldap (<< 2.2.0-1.1), python2.3-ldap-tls, python2.4-ldap (<< 2.2.0-1.1) Filename: pool/main/p/python-ldap/python-ldap_2.4.10-1build1_i386.deb Size: 63414 MD5sum: afc5bfa695ee40f4648e63f780e9df7b SHA1: c5a1ec856433864037c8f07f5442c0cd5b26a341 SHA256: 6395a1dfb07057bdad942651f2f3494a0e61a7e10d8945e5245938c849ebe809 Description: LDAP interface module for Python Homepage: http://www.python-ldap.org/ Description-md5: 340c950d0ab5fb5e410e151b69a822f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ldap-dbg Priority: extra Section: debug Installed-Size: 415 Maintainer: Ubuntu Developers Original-Maintainer: Matej Vela Architecture: i386 Source: python-ldap Version: 2.4.10-1build1 Provides: python2.7-ldap-dbg Depends: python-ldap (= 2.4.10-1build1), python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.4), libldap-2.4-2 (>= 2.4.7) Filename: pool/main/p/python-ldap/python-ldap-dbg_2.4.10-1build1_i386.deb Size: 80444 MD5sum: f4535cd3d2b639dff3debc1acb400061 SHA1: c5adc1e11506c366ad4fa0e36eee53f02067df87 SHA256: ad1e0628e592d0d5465399f4a972c99c32e7a7ed50ce646da4d5f4904e12b261 Description: LDAP interface module for Python (debug extension) Homepage: http://www.python-ldap.org/ Description-md5: 81f0f76d881af13f2b29b77c16469bc1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ldb Priority: optional Section: python Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: ldb Version: 1:1.1.16-1 Provides: python2.7-ldb Depends: libldb1 (= 1:1.1.16-1), python (>= 2.7), python (<< 2.8), libc6 (>= 2.1.3), libpython2.7 (>= 2.7), libtalloc2 (>= 2.0.4~git20101213) Pre-Depends: multiarch-support Filename: pool/main/l/ldb/python-ldb_1.1.16-1_i386.deb Size: 32128 MD5sum: b65554fe04afcf9a1bd30604b172b95f SHA1: 1f7afcc3b2b8a7217ca1816e68128fa6d95f8f20 SHA256: f4baf9c86d27afd08f1fee3be70d090c5fd0e350ed564f8f5333866f26e875b4 Description: Python bindings for LDB Homepage: http://ldb.samba.org/ Description-md5: 63f13a66f76e51d06d257d079ab32624 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-ldb-dbg Priority: extra Section: debug Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: ldb Version: 1:1.1.16-1 Depends: python-ldb (= 1:1.1.16-1) Recommends: python-dbg, python-talloc-dbg, python-tdb-dbg Filename: pool/main/l/ldb/python-ldb-dbg_1.1.16-1_i386.deb Size: 50642 MD5sum: 4f916f461ff2c6566ea30b2073fd51d5 SHA1: 6df618ef81894d840b08e8676dd7a48bf17ac712 SHA256: b65efbce84b38e074d2c78dd270cb2ceb85166366f9618dc1916f4354ff8f9e7 Description: Python bindings for LDB - debug extension Homepage: http://ldb.samba.org/ Description-md5: efe3bdc3c95ebfecee4fc7ee26332d66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ldb-dev Priority: optional Section: libdevel Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: ldb Version: 1:1.1.16-1 Depends: libc6-dev, libldb-dev, pkg-config, python-ldb (= 1:1.1.16-1) Filename: pool/main/l/ldb/python-ldb-dev_1.1.16-1_i386.deb Size: 5004 MD5sum: 3eab4f5ca4e20c48de88ed2933c03e61 SHA1: e9b15cd64111aa13f9d930497c706ac13efcc8bc SHA256: e39937ad95d6d6de366ca88312f4e2536c5016a941e3dc29ec888b2464864d4b Description: LDB python bindings - development files Homepage: http://ldb.samba.org/ Description-md5: 20110197e6669ff2f77cc4018a09abe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-libapparmor Priority: extra Section: python Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libapparmor1 (>= 2.8.94-0ubuntu1), libc6 (>= 2.4) Filename: pool/main/a/apparmor/python-libapparmor_2.8.95~2430-0ubuntu5_i386.deb Size: 22524 MD5sum: 8a53661de637f94efc99b5c21d12425f SHA1: 9ce0b9319a71a2ba456033e4b2afd2fc2f30d9bb SHA256: a1c62595f564b832ea58b258babca55935a42fc791ea53031370d173640e7bff Description: AppArmor library Python bindings Homepage: http://apparmor.net/ Description-md5: 36d3d516db38bd0cbb93cfa172912961 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-librabbitmq Priority: optional Section: python Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Version: 1.0.3-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.15), librabbitmq1 (>= 0.3.0) Filename: pool/main/p/python-librabbitmq/python-librabbitmq_1.0.3-0ubuntu1_i386.deb Size: 26398 MD5sum: 31b6005ab43ff3145a125e1d69e55280 SHA1: 26a1bac77e0de5ca90f69c56791f257a8d573e8d SHA256: 6673bb9edb2e455a4bea1917e47e043f95a00a99610d1b389dcfdfbbc9f80977 Description: AMQP Client using the rabbitmq-c library Homepage: https://github.com/celery/librabbitmq Description-md5: a1e91db16c2dbcf509ac9252b51653f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-librdf Priority: optional Section: python Installed-Size: 321 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: redland-bindings Version: 1.0.16.1-1.1ubuntu1 Provides: python2.7-librdf Depends: libc6 (>= 2.4), libraptor2-0 (>= 2.0.12), librasqal3 (>= 0.9.31), librdf0 (>= 1.0.17), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/r/redland-bindings/python-librdf_1.0.16.1-1.1ubuntu1_i386.deb Size: 56376 MD5sum: a1809e9c8082c2108104456410535cd4 SHA1: 23fc7e541d10d86551caed2b352ea298acb2de9a SHA256: 8cddc3627b5acc2ea252aaa33a65ca06b3f2a429c7e17562ee50e7368eceebbf Description: Python language bindings for the Redland RDF library Homepage: http://librdf.org/docs/python.html Description-md5: 8451327c9e6bf7796ce5f7549f1cfd37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-libvirt Priority: optional Section: devel Installed-Size: 547 Maintainer: Ubuntu Developers Original-Maintainer: Guido Günther Architecture: i386 Source: libvirt-python Version: 1.2.2-0ubuntu1 Depends: libc6 (>= 2.4), libvirt0 (>= 1.2.1-0ubuntu10), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: libvirt-bin Filename: pool/main/libv/libvirt-python/python-libvirt_1.2.2-0ubuntu1_i386.deb Size: 95312 MD5sum: 49ab17377d641ee45632ea43d4447cd9 SHA1: 6987b4efd2f4b890da2704bd1b883356ac1ecc3b SHA256: c31dab801aad2c6af554cabf07edc6fc1a5a719d66175bd4f8aa120aec2ae90b Description: libvirt Python bindings Homepage: http://libvirt.org Python-Version: 2.7 Description-md5: 1ea09e4ec81e360f28623d96cfd449ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-libxml2 Priority: optional Section: python Installed-Size: 869 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Provides: python2.7-libxml2 Depends: libc6 (>= 2.4), libpython2.7 (>= 2.7), libxml2 (>= 2.9.1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/libx/libxml2/python-libxml2_2.9.1+dfsg1-3ubuntu4_i386.deb Size: 136006 MD5sum: 92a1b12a389bb637e30d6e1c4f8fc68a SHA1: cbcd85a9abaf34b29a2e112470b16fc1753247d6 SHA256: cedcb62c3494127fce174cb2f0d0134d2ea5e45e85655f7ed593dbc33356de4f Description: Python bindings for the GNOME XML library Homepage: http://xmlsoft.org/ Description-md5: e4228b117ba4c3ff09fba829bd0ef07d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-libxml2-dbg Priority: extra Section: python Installed-Size: 707 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxml2 Version: 2.9.1+dfsg1-3ubuntu4 Provides: python2.7-libxml2-dbg Depends: python-dbg, python-libxml2 (= 2.9.1+dfsg1-3ubuntu4), libc6 (>= 2.4), libpython2.7-dbg (>= 2.7), libxml2 (>= 2.9.1) Filename: pool/main/libx/libxml2/python-libxml2-dbg_2.9.1+dfsg1-3ubuntu4_i386.deb Size: 222922 MD5sum: ac601f497e17c3c583bea093561219c4 SHA1: 698872c4188b9ed23a3ee6d806d68cabce36660d SHA256: 299b1222f06c6e59de06ab1f2c18b8f3b4c21fc1857b4175eab3b1292030f1d2 Description: Python bindings for the GNOME XML library (debug extension) Homepage: http://xmlsoft.org/ Description-md5: 5d69439c02c8c4c06241f93466f5a75a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-libxslt1 Priority: optional Section: python Installed-Size: 281 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxslt Version: 1.1.28-2build1 Provides: python2.7-libxslt1 Depends: libc6 (>= 2.3.4), libpython2.7 (>= 2.7), libxslt1.1 (>= 1.1.27), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-libxml2 Filename: pool/main/libx/libxslt/python-libxslt1_1.1.28-2build1_i386.deb Size: 32494 MD5sum: 4b0e906413a7bbbedd7f9e6bdaf0fefb SHA1: 4cddda411ada7dc6db338df88285a341f7762126 SHA256: 79aa19060df1c37b14fd5fb5b56a4debfffb019b258091f687db3b79e36669ae Description: Python bindings for libxslt1 Homepage: http://xmlsoft.org/xslt/ Description-md5: e2cc4c037db99774d273c35b21c8c8b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-libxslt1-dbg Priority: extra Section: python Installed-Size: 429 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxslt Version: 1.1.28-2build1 Provides: python2.7-libxslt1-dbg Depends: python-dbg, python-libxslt1 (= 1.1.28-2build1), libc6 (>= 2.1.3), libpython2.7 (>= 2.7), libxslt1.1 (>= 1.1.27), python-libxml2-dbg Filename: pool/main/libx/libxslt/python-libxslt1-dbg_1.1.28-2build1_i386.deb Size: 107784 MD5sum: b3286138dc855e9cfc725b06aa4ea4e0 SHA1: 6ef36b6b8b248e57d03a030896976deedac4f7d3 SHA256: b22ebacd7280943ed3aed48b3950d71b3188637ddf191247dbd29929de2aff02 Description: Python bindings for libxslt1 (debug extension) Homepage: http://xmlsoft.org/xslt/ Description-md5: dd55b04fde37de4e907cfd65cd22e216 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-lockfile Priority: extra Section: python Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Ben Finney Architecture: all Version: 1:0.8-2ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-lockfile/python-lockfile_0.8-2ubuntu2_all.deb Size: 8090 MD5sum: 0b3a1c9d495cacbc645ee45ec84e2ff5 SHA1: 90d54c6a697dcd4163de0df20d02083fd7c04641 SHA256: 772ce95fa518c0b4337d3590820f9856bcab407e6b6c9e992a3b6528533f4165 Description: file locking library for Python Homepage: http://pypi.python.org/pypi/lockfile Description-md5: 0f145e0ad6738c6842e0b4486c66fd1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: python-logilab-common Priority: optional Section: python Installed-Size: 6754 Maintainer: Ubuntu Developers Original-Maintainer: Sandro Tosi Architecture: all Source: logilab-common Version: 0.61.0-1 Provides: python2.7-logilab-common Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python Recommends: python-egenix-mxdatetime Suggests: pyro, python-unittest2 Filename: pool/main/l/logilab-common/python-logilab-common_0.61.0-1_all.deb Size: 410780 MD5sum: 5369924ad5a97dc6d6cb978cbd8bc09e SHA1: 68384d16b0db1cabc31a1288ac0671df1561be00 SHA256: 669b4cac724e35ac8802dc4398165bb5e317062d0876daeaab11fd13b0f7c64f Description: useful miscellaneous modules used by Logilab projects Homepage: http://www.logilab.org/project/logilab-common Description-md5: b540c3571f583f11122d82e1ed581604 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-lxml Priority: optional Section: python Installed-Size: 2345 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: lxml Version: 3.3.3-1 Provides: python2.7-lxml Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libxml2 (>= 2.9.0), libxslt1.1 (>= 1.1.26) Suggests: python-lxml-dbg Filename: pool/main/l/lxml/python-lxml_3.3.3-1_i386.deb Size: 584874 MD5sum: 1e6f793283c1a403fa9e2ecfc3c8defe SHA1: 962e1c0e6d4c231eaffe1346e512a4d7dfd4065e SHA256: ba958137d603d63b5fcd251a99fce63ba9a2fb06a1a5f8e6052db19130937978 Description: pythonic binding for the libxml2 and libxslt libraries Homepage: http://lxml.de/ Description-md5: e8e2f787207511401ce91418255455e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-lxml-dbg Priority: extra Section: python Installed-Size: 8981 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: lxml Version: 3.3.3-1 Depends: python-lxml (= 3.3.3-1), python-dbg, libc6 (>= 2.4), libxml2 (>= 2.9.0), libxslt1.1 (>= 1.1.26) Filename: pool/main/l/lxml/python-lxml-dbg_3.3.3-1_i386.deb Size: 2077388 MD5sum: faec75eb2670f2ab3916d50e6a1f94bb SHA1: 8b920ee412b0c6c23066862b4949f27e3f50160d SHA256: 46b5e1e21ea61ad54cbb2dec848c03e1a74734e9c4e84f461da03b8a4240cd2d Description: pythonic binding for the libxml2 and libxslt libraries (debug extension) Homepage: http://lxml.de/ Description-md5: 1a963cdd371bc69a71681e560c497634 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-lxml-doc Priority: extra Section: doc Installed-Size: 21372 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: lxml Version: 3.3.3-1 Recommends: python-lxml Filename: pool/main/l/lxml/python-lxml-doc_3.3.3-1_all.deb Size: 1008252 MD5sum: 78e4e87db070463cb2008ffaf516e54b SHA1: f2cb9c5e453f6521517b547c3bfce035ad8b66f4 SHA256: 81cf19457f0b5021732053de5d47c0a9e8346d3a56defaaae2dc4f9405c18977 Description: pythonic binding for the libxml2 and libxslt libraries (documentation) Homepage: http://lxml.de/ Description-md5: 86c3002728b00f49dc1d8a0e4e843699 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-m2crypto Priority: optional Section: libs Installed-Size: 779 Maintainer: Ubuntu Developers Original-Maintainer: Dima Barsky Architecture: i386 Source: m2crypto Version: 0.21.1-3ubuntu5 Provides: m2crypto, python2.7-m2crypto Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0) Pre-Depends: dpkg (>= 1.15.6) Filename: pool/main/m/m2crypto/python-m2crypto_0.21.1-3ubuntu5_i386.deb Size: 152514 MD5sum: 7920e22b1bb07df11e0f373cbc168701 SHA1: f9e5f44ab400b26eef4c122027636cf765a5b1da SHA256: d11c6912d0864cccc7829424eb7a66ea2648eea760b241a6011046f020a19b39 Description: a crypto and SSL toolkit for Python Homepage: http://chandlerproject.org/Projects/MeTooCrypto Description-md5: b54d1b882769b6db2f78c4d46dd9ebb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-maas-client Priority: optional Section: net Installed-Size: 72 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas (<= 0.1+bzr971+dfsg-0ubuntu2) Depends: python-oauth, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: maas (<= 0.1+bzr971+dfsg-0ubuntu2) Filename: pool/main/m/maas/python-maas-client_1.5+bzr2252-0ubuntu1_all.deb Size: 10294 MD5sum: 022d6e8b85ffeaeadb229d0aa7436366 SHA1: 8ee4397e24843700facd0594d67f0a7534063301 SHA256: 7656c5984433a8fa9e6aa88037321c9e7e5c6c8209b12b2e82567f218a3de92d Description: MAAS python API client Homepage: https://launchpad.net/maas Description-md5: 05f87dc1e9852e522dbf7dd04ef6bd0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-maas-provisioningserver Priority: optional Section: net Installed-Size: 419 Maintainer: Ubuntu Developers Architecture: all Source: maas Version: 1.5+bzr2252-0ubuntu1 Replaces: maas-cluster-controller (<= 0.1+bzr1243+dfsg-0ubuntu3), maas-dhcp (<= 1.4+bzr1817+dfsg-0ubuntu1), python-django-maas (<= 0.1+bzr1048+dfsg-0ubuntu1) Depends: python-amqp, python-celery, python-distro-info, python-formencode, python-jsonschema, python-lockfile, python-lxml, python-maas-client, python-netifaces, python-oops, python-oops-amqp, python-oops-datedir-repo, python-oops-twisted, python-pyparsing, python-simplestreams, python-tempita, python-twisted-core, python-twisted-web, python-txamqp, python-txtftp, python-yaml, python-zope.interface, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Conflicts: python-librabbitmq Breaks: maas-cluster-controller (<= 0.1+bzr1243+dfsg-0ubuntu3), maas-dhcp (<= 1.4+bzr1817+dfsg-0ubuntu1), python-django-maas (<= 0.1+bzr1048+dfsg-0ubuntu1) Filename: pool/main/m/maas/python-maas-provisioningserver_1.5+bzr2252-0ubuntu1_all.deb Size: 75846 MD5sum: b1e2f86256984b01b34535f83fd80654 SHA1: 13f1a7fad99051df8a58b1e111643d2701d7d946 SHA256: dbd18af2a6f47bbfaf3e3c8a4a30a1c1b3b69aee5f7a8d30e6b8577c4fda82eb Description: MAAS server provisioning libraries Homepage: https://launchpad.net/maas Description-md5: 1ed0a93c850b34b72dc7969a00f1aa33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mailer Priority: extra Section: python Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: David Watson Architecture: all Version: 0.7-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-setuptools Filename: pool/main/p/python-mailer/python-mailer_0.7-1ubuntu2_all.deb Size: 6148 MD5sum: 56decef79de1185606ad6bac2842c42b SHA1: 4fbd00a659cc3dfc05f2fd93d36cc19f4f00c4fb SHA256: 94cd7129789ae4975784b439418f69065a074e044b6978a231a37e03ed11256a Description: Python module that simplifies sending email Homepage: http://pypi.python.org/pypi/mailer Description-md5: faf1484e2a140dcdf20d68d710622bb3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mako Priority: optional Section: python Installed-Size: 351 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: mako Version: 0.9.1-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-markupsafe Suggests: python-beaker (>= 1.1), python-mako-doc Filename: pool/main/m/mako/python-mako_0.9.1-1_all.deb Size: 59620 MD5sum: 78c42602a68f81f6e49034fbeea117a5 SHA1: 5cfc293c82b10024c855c58cd9df4c7fbe40eada SHA256: 73ee3830ccff8933f9447254e854e7d5e2219b06c29f564aa740cf31fc993bb8 Description: fast and lightweight templating for the Python platform Enhances: python-pygments, python-pylons, python-turbogears Homepage: http://www.makotemplates.org/ Description-md5: b107d73601aca3945d777218802bd901 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mako-doc Priority: extra Section: doc Installed-Size: 902 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: mako Version: 0.9.1-1 Replaces: python-mako (<< 0.3.6-1) Depends: libjs-jquery, libjs-underscore Suggests: python-mako, python3-mako Breaks: python-mako (<< 0.3.6-1) Filename: pool/main/m/mako/python-mako-doc_0.9.1-1_all.deb Size: 132942 MD5sum: f5b824fe4dadb3e554ec4c4dde27c747 SHA1: 2dc54eca315fe9755432af348e81ac7d107e009c SHA256: d78c2a5bc0bdd099815ce6b7f4f41a6c5233e0d3275b3a4db790f87fc22f4978 Description: documentation for the Mako Python library Homepage: http://www.makotemplates.org/ Description-md5: c5fcefc28d6700bb949d948275ad5777 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-markdown Priority: optional Section: python Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 2.4-1 Depends: python:any (>= 2.7.5-5~), python, python:any (<< 2.8) Recommends: python-pygments Suggests: python-markdown-doc Filename: pool/main/p/python-markdown/python-markdown_2.4-1_all.deb Size: 53766 MD5sum: 88bab32fcdc312af1dfeb609ac91a6f4 SHA1: d2fe12a559c2a0952667adbb4287748d5b148cdc SHA256: 12db0b68b6e6f8f57a7b259e1ec5923380e73d35a0bac70158cea9ab46db7cc3 Description: text-to-HTML conversion library/tool (implemented in Python 2) Homepage: https://github.com/waylan/Python-Markdown Description-md5: e1a19386a3c4509e7261f83dc5260238 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-markdown-doc Priority: optional Section: doc Installed-Size: 465 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-markdown Version: 2.4-1 Filename: pool/main/p/python-markdown/python-markdown-doc_2.4-1_all.deb Size: 69592 MD5sum: 535b1718bcec98af2a743ee3d1453a36 SHA1: 01d0ab00d1311cfe76c5f5a4f758697881dd60b6 SHA256: b646f1d6388fe8144f220d12bef65a37b627aee1ba3f8a0b08c2e3f89e614159 Description: text-to-HTML conversion library/tool (documentation) Homepage: https://github.com/waylan/Python-Markdown Description-md5: 4adb2c8eac8dc457ac72e239e7d30ae0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-markupsafe Priority: optional Section: python Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: i386 Source: markupsafe Version: 0.18-1build2 Provides: python2.7-markupsafe Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3.6-6~) Filename: pool/main/m/markupsafe/python-markupsafe_0.18-1build2_i386.deb Size: 14262 MD5sum: 350cc24923d8194f33e084a67bb3fc54 SHA1: f54ba4acfbd5c1ab43b8e3ab920215f9eb6b66c6 SHA256: c593ab57c085ddb9fa48227477e54726d5a7c616816b33254a17c2d754205e6f Description: HTML/XHTML/XML string library for Python Homepage: http://pypi.python.org/pypi/MarkupSafe Description-md5: 7244ad38edd185b1d33807088293138c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-markupsafe-dbg Priority: extra Section: debug Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: i386 Source: markupsafe Version: 0.18-1build2 Depends: python-markupsafe (= 0.18-1build2), libc6 (>= 2.3.6-6~), python-dbg (>= 2.7), python-dbg (<< 2.8) Filename: pool/main/m/markupsafe/python-markupsafe-dbg_0.18-1build2_i386.deb Size: 20956 MD5sum: 75c12c6457944e9bea893403ccc67fd3 SHA1: 32bc96fa9151d55a81072488b23fd4a474d51dc0 SHA256: a2cc5bf8229927a05f135765e98a6d05adc90f0ce47383e6d7d8b1187b160c8a Description: HTML/XHTML/XML string library for Python - debug version Homepage: http://pypi.python.org/pypi/MarkupSafe Description-md5: f00e70e66a61918b0a7bb5ee71d2ddc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-memcache Priority: optional Section: python Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.53-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: memcached Filename: pool/main/p/python-memcache/python-memcache_1.53-1build1_all.deb Size: 16898 MD5sum: f571071e73b7d12586bba80a5fb77d9c SHA1: e81b2cf8c96d94452f1589d1ec48e60894fe845b SHA256: 6f2eb3a8b5dceca4a79c645ddc8bf153853c606f569934ccff18cbfcbe15195f Description: pure python memcached client Homepage: http://www.tummy.com/Community/software/python-memcached/ Description-md5: c4b602772c7500097ce3ac44c2626baa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-migrate Priority: optional Section: python Installed-Size: 945 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: migrate Version: 0.8.2-3ubuntu1 Depends: libjs-sphinxdoc (>= 1.0), python-decorator, python-pbr, python-pkg-resources, python-sqlalchemy (>= 0.8), python-tempita (>= 0.4), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-sqlalchemy (<< 0.9) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/m/migrate/python-migrate_0.8.2-3ubuntu1_all.deb Size: 121672 MD5sum: f2ddc47fbfff721635f49fe20dd81359 SHA1: 33e62f6f137aa2bd4dceabf0cf10e8794b33dd36 SHA256: 56156e63418914fc0c4d2d8d3c8c7a035b69916a4232cd309a3dc9882a46169b Description: Database schema migration for SQLAlchemy Homepage: https://github.com/stackforge/sqlalchemy-migrate Description-md5: 45c37ff5dd0dd2ea0a51c4d3066df46d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mimeparse Priority: optional Section: python Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Mathias Ertl Architecture: all Version: 0.1.4-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-mimeparse/python-mimeparse_0.1.4-1build1_all.deb Size: 5916 MD5sum: 35001c4d6be265d6040285d96bb04fa5 SHA1: 6bf9dd7da671f3b1a5633cb11da69683ff6513ab SHA256: ab97b69e364b3e7aa40d4a33603e0e7dedcb475e1eb6d4817a2b64a4ee7d9595 Description: Parse mime-types and quality parameters - python 2.x Homepage: https://pypi.python.org/pypi/python-mimeparse Description-md5: bda30c608204a7bd0c92f74b602eb4b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-minimal Priority: optional Section: python Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-defaults Version: 2.7.5-5ubuntu3 Replaces: python (<= 2.7.3-1~) Depends: python2.7-minimal (>= 2.7.5-1~), dpkg (>= 1.13.20) Recommends: python Conflicts: python-central (<< 0.5.5) Breaks: idle (<< 2.6), python (<= 2.7.3-1~), python-all (<< 2.6), python-all-dbg (<< 2.6), python-all-dev (<< 2.6), python-dbg (<< 2.6), python-dev (<< 2.6), python-examples (<< 2.6), python-support (<< 1.0.10ubuntu2), python2.5-minimal (<< 2.5.5-7), python2.6-minimal (<< 2.6.5~rc2-2), python3.1-minimal (<< 3.1.2~rc1-2) Filename: pool/main/p/python-defaults/python-minimal_2.7.5-5ubuntu3_i386.deb Size: 27508 MD5sum: 8be8f1de5b4e6905687208f1d092f245 SHA1: 4979909e82a74d26ef6af0609ac23b049e1771d6 SHA256: a9f55d869f9c5642b195a1487e60265ff6360303558a65b7bdeefed8895d74a3 Description: minimal subset of the Python language (default version) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 200bc6d6d83361369f54f0e99818ec74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-mock Priority: extra Section: python Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.0.1-3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-mock-doc Filename: pool/main/p/python-mock/python-mock_1.0.1-3_all.deb Size: 23792 MD5sum: 322bef0632cb2bfa8dc51844703a46a5 SHA1: 482fa984825c79da671ae563c12a624bce85c8f4 SHA256: a4a2ec9239f4b669138121ca3e54fc8e000b95869c88eaf09f06e4ebf622234e Description: Mocking and Testing Library Homepage: http://www.voidspace.org.uk/python/mock/ Description-md5: 574e60a9a54d2e566a980b7be2daf1a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mock-doc Priority: extra Section: doc Installed-Size: 871 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-mock Version: 1.0.1-3 Replaces: python-mock (<< 0.7.2) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-mock (<< 0.7.2) Filename: pool/main/p/python-mock/python-mock-doc_1.0.1-3_all.deb Size: 94290 MD5sum: 31d0feaaf60b19ef071cef12610d6175 SHA1: c2599889a725045c9113429be5fe7ece71d022d9 SHA256: 13cd40a2126d47e402aa35a6d7515634f5b45455a5e975b74d3afd8e5573ffae Description: Mocking and Testing Library (Documentation) Homepage: http://www.voidspace.org.uk/python/mock/ Description-md5: ce49c633ce1424a156e31d54d2c8050a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-mocker Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: mocker Version: 1.0-2 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/m/mocker/python-mocker_1.0-2_all.deb Size: 22774 MD5sum: 1927f3abfaa050559063059eb3ceb17b SHA1: 075c4e726fe8695c177d61d3ba7cf9e53867ef5f SHA256: 8910ecee20b08e5d09daf6a15590072706c3045364947e1217e33e378d0ff85c Description: Mocker object mocking framework Homepage: http://labix.org/mocker Description-md5: b79f56672317b43fc987e587f54a368f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-moinmoin Priority: optional Section: python Installed-Size: 28107 Maintainer: Ubuntu Developers Original-Maintainer: Steve McIntyre <93sam@debian.org> Architecture: all Source: moin Version: 1.9.7-1ubuntu2 Provides: python2.6-moinmoin, python2.7-moinmoin Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-werkzeug, python-pygments, python-parsedatetime, python-recaptcha, python-passlib Recommends: default-mta | mail-transport-agent, python-xapian, python-xappy, libapache2-mod-wsgi | httpd-cgi Suggests: python-flup, python-4suite-xml, python-gdchart, python-docutils, python-pyxmpp, python-openid, python-tz, python-ldap, python-mysqldb, miscfiles | wordlist, antiword, catdoc, cifs-utils, poppler-utils | xpdf-utils, docbook-dsssl, fckeditor Filename: pool/main/m/moin/python-moinmoin_1.9.7-1ubuntu2_all.deb Size: 7358792 MD5sum: 437c574213e3aa8e0da34c38165a8739 SHA1: e204223187305cf650eebabd93e8fc0290373f46 SHA256: 6b8e45144849d9feda2fc44b5ac18ccc8d51d223e17102e17cf6863bc2a4e360 Description: Python clone of WikiWiki - library Homepage: http://moinmo.in/ Description-md5: e7e9edb49f7b3a85509d1a40cac0d731 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mox Priority: extra Section: python Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: all Version: 0.5.3-3build1 Provides: python2.7-mox Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-mox/python-mox_0.5.3-3build1_all.deb Size: 17212 MD5sum: 70651101813047034fc3c77ee8d75e10 SHA1: 9c8f0ab436fda107edbf1f0e02a09eaf0d016408 SHA256: 7bfeb4720ae18f84a43b11d0b9a9f5062bd13cd4ee61d77140fed51bc6ba9c64 Description: mock object framework for Python Homepage: http://code.google.com/p/pymox/ Description-md5: 4b70bf813a72e521746dbce7624f63ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-mox3 Priority: optional Section: python Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.7.0-1build1 Depends: python-fixtures (>= 0.3.12), python-pbr (>= 0.5.21), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-mox3/python-mox3_0.7.0-1build1_all.deb Size: 31824 MD5sum: f8115ca7b189c885f84480a47ba858b1 SHA1: 3d5d1126f6033b67b61cc347fec1fe6a20ea6a4d SHA256: ee3450e217857784074f2e783c5bc202609c0301039855d7a346b6f139b476ec Description: Mock object framework - Python 2.x Homepage: https://pypi.python.org/pypi/mox3 Description-md5: fe6fbebd533926f597891a9c85da1d74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-msgpack Priority: optional Section: python Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: msgpack-python Version: 0.3.0-1ubuntu3 Replaces: msgpack-python (<< 0.3.0-1) Provides: msgpack-python Depends: libc6 (>= 2.4), python:any (>= 2.7.5-5~), python (>= 2.7~), python (<< 2.8) Conflicts: msgpack-python (<< 0.3.0-1) Filename: pool/main/m/msgpack-python/python-msgpack_0.3.0-1ubuntu3_i386.deb Size: 41932 MD5sum: 4af9b6265a6f499d8ae7ce5b0873a0ec SHA1: 0d1f533b8b1147e4053b90e2514faf0efb22285d SHA256: b3df47e2e69c2c8a537b108569f15233fe8ebdfca33d666c89818f716853b91f Description: Python implementation of MessagePack format Homepage: http://pypi.python.org/pypi/msgpack-python/ Description-md5: ed3266dfffb208c8edaaf1a7148c5c6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-mutagen Priority: optional Section: python Installed-Size: 406 Maintainer: Ubuntu Developers Original-Maintainer: Tristan Seligmann Architecture: all Source: mutagen Version: 1.22-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-mutagen-doc Filename: pool/main/m/mutagen/python-mutagen_1.22-1ubuntu2_all.deb Size: 76644 MD5sum: b13068e3117d9578f24a678d9aed9473 SHA1: c84e0db957e8a759ff425393fac689b62fd8002a SHA256: cd36158aa99b6628c0fdd7a10dd6bd58649d97ab0cc924822968d012955bdffc Description: audio metadata editing library Homepage: http://code.google.com/p/mutagen/ Description-md5: 1b86a06e0b7bd4c27967043c83601d66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: python-mutagen-doc Priority: optional Section: doc Installed-Size: 545 Maintainer: Ubuntu Developers Original-Maintainer: Tristan Seligmann Architecture: all Source: mutagen Version: 1.22-1ubuntu2 Depends: libjs-sphinxdoc (>= 1.0) Recommends: python-mutagen Filename: pool/main/m/mutagen/python-mutagen-doc_1.22-1ubuntu2_all.deb Size: 68896 MD5sum: db16722b555fbcd9b8a3886f4658cc04 SHA1: 07a8bfc92a505d0544e0b25667d01aa5205ffd65 SHA256: afd7da5ccd2135fed43bc643850a8425af6546d7290510a36cd9adbc3d8bce3a Description: audio metadata editing library - documentation Homepage: http://code.google.com/p/mutagen/ Description-md5: a1e23b059f18d3397a3df8555644807b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-mysqldb Priority: optional Section: python Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Version: 1.2.3-2ubuntu1 Replaces: python2.3-mysqldb, python2.4-mysqldb Provides: python2.7-mysqldb Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libmysqlclient18 (>= 5.5.13-1) Suggests: python-egenix-mxdatetime, mysql-server-5.1 | mysql-server, python-mysqldb-dbg Conflicts: python2.3-mysqldb, python2.4-mysqldb Filename: pool/main/p/python-mysqldb/python-mysqldb_1.2.3-2ubuntu1_i386.deb Size: 54600 MD5sum: eaf56947de03644b274044159c69769c SHA1: 57f59b9510eace4e7d19b743528a1a3d9967a4e9 SHA256: eb9be0f6bf4b474d59f0eff01ee6ed07d9432792c6142a489520712605249097 Description: Python interface to MySQL Homepage: http://mysql-python.sourceforge.net/ Python-Version: 2.7 Description-md5: aedcc69848aa784241ee4321e0bdea79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python-mysqldb-dbg Priority: extra Section: python Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-mysqldb Version: 1.2.3-2ubuntu1 Depends: python-mysqldb (= 1.2.3-2ubuntu1), python-dbg, libc6 (>= 2.4), libmysqlclient18 (>= 5.5.13-1) Suggests: python-egenix-mxdatetime-dbg Filename: pool/main/p/python-mysqldb/python-mysqldb-dbg_1.2.3-2ubuntu1_i386.deb Size: 54396 MD5sum: 496293a77b49dc63fe250ad4f575c42a SHA1: 61a89cd6f41328e2f0014b2a53af96977ea46b30 SHA256: d08548ac70f2abba3311a3c93359471e943f4c2b1e90b0e2c8bc0e32a1f08100 Description: Python interface to MySQL (debug extension) Homepage: http://mysql-python.sourceforge.net/ Description-md5: 20af5dc562902823ee301a1e4b9e2edf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-netaddr Priority: optional Section: python Installed-Size: 4117 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Bernat Architecture: all Version: 0.7.10-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: ipython, python-netaddr-docs Filename: pool/main/p/python-netaddr/python-netaddr_0.7.10-1build1_all.deb Size: 851078 MD5sum: 6e241fe9287b9ca2b86c20b91360622c SHA1: f51c06b543de27cf66aee21ec2e21e5920a775e4 SHA256: e4cc3465e15ce5a74d86d79bc19db993a09428e7941a9ee028060e3ce107f30d Description: manipulation of various common network address notations (Python 2) Homepage: https://github.com/drkjam/netaddr/ Description-md5: c2e3a8f75f8d079610b276c5a9b9da87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-netaddr-docs Priority: optional Section: doc Installed-Size: 596 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Bernat Architecture: all Source: python-netaddr Version: 0.7.10-1build1 Replaces: python-netaddr (<< 0.7.7-1) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-netaddr (<< 0.7.7-1) Filename: pool/main/p/python-netaddr/python-netaddr-docs_0.7.10-1build1_all.deb Size: 72724 MD5sum: 8a43d8feaaaff11466811f183ed6ff00 SHA1: 1335acafb158595b4c432dabfd938865d33a65bc SHA256: d4c27c43c347227860741764e1b7e6bf5cde33d94adbbaf501229828a8999887 Description: manipulation of various common network address notations (documentation) Homepage: https://github.com/drkjam/netaddr/ Description-md5: 7001ba79e39848790f692fc4611d6c18 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-netifaces Priority: optional Section: python Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Mario Izquierdo (mariodebian) Architecture: i386 Source: netifaces Version: 0.8-3build1 Provides: python2.7-netifaces Depends: libc6 (>= 2.4), python (>= 2.7), python (<< 2.8) Filename: pool/main/n/netifaces/python-netifaces_0.8-3build1_i386.deb Size: 11222 MD5sum: 1a00d8188b80fcfdc785668547db480d SHA1: ccf187bb82c10cd01a3db90f37e4a56690c4fafa SHA256: a933e5c73692b17eadbf9e881184ecbb3db9423c8c8f0bb9a4fb50122c14a3d7 Description: portable network interface information for Python Homepage: http://alastairs-place.net/projects/netifaces/ Python-Version: 2.7 Description-md5: b814657d7bd3e18fb3c75eb6f0ceb94f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-netifaces-dbg Priority: extra Section: python Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Mario Izquierdo (mariodebian) Architecture: i386 Source: netifaces Version: 0.8-3build1 Depends: libc6 (>= 2.4), python-netifaces (= 0.8-3build1), python-dbg Filename: pool/main/n/netifaces/python-netifaces-dbg_0.8-3build1_i386.deb Size: 26146 MD5sum: c2f131e09d1172d6c9f9645f3752692e SHA1: 82e5bd98c3e40148fa800999215c23980c0d55a2 SHA256: a5f6b9a62f852ac127863c38f5b407748c41fddfe98ea08225fe3e663a30d1ab Description: portable network interface information for Python (debug extension) Homepage: http://alastairs-place.net/projects/netifaces/ Python-Version: 2.7 Description-md5: c5e3da2b4d1de428fbea1729c7781672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-networkx Priority: optional Section: graphics Installed-Size: 2790 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.8.1-0ubuntu3 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~) Suggests: python-numpy, python-scipy, python-pydot, python-pkg-resources, python-yaml Filename: pool/main/p/python-networkx/python-networkx_1.8.1-0ubuntu3_all.deb Size: 505942 MD5sum: e56789bcfefec7b730a35c983670346b SHA1: 87e894a957be6facb81b8c71c703b914f5192136 SHA256: 31e3fb697c06ab9d21aeb8784ce485898ac367a83b3250795912b3b30ea89830 Description: tool to create, manipulate and study complex networks Homepage: http://networkx.lanl.gov/ Description-md5: cb7ca204568a0b47336b9713c709df11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-networkx-doc Priority: optional Section: doc Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-networkx Version: 1.8.1-0ubuntu3 Filename: pool/main/p/python-networkx/python-networkx-doc_1.8.1-0ubuntu3_all.deb Size: 4790 MD5sum: d4d36767ebe2e11512c990fd3cf21847 SHA1: 5e9478d71f453d831258798bc94b9b88d7b44397 SHA256: 291714f0a17c27410e8f99646afd9982175e845f550f4bc0d161bd7f54b57cd8 Description: tool to create, manipulate and study complex networks - documentation Homepage: http://networkx.lanl.gov/ Description-md5: c4f7e41e61a676b7552dbdb3c02be4fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-neutron Priority: optional Section: python Installed-Size: 38933 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: neutron Version: 1:2014.1-0ubuntu1 Replaces: python-quantum (<< 1:2013.2~b2-0ubuntu1~) Provides: python2.7-neutron Depends: alembic (>= 0.6.0), python-amqplib (>= 0.6.1), python-anyjson (>= 0.3.3), python-babel, python-eventlet (>= 0.13.0), python-greenlet (>= 0.3.12), python-httplib2, python-iso8601, python-jinja2, python-keystoneclient (>= 1:0.3.0), python-kombu (>= 2.5.12), python-netaddr, python-neutronclient (>= 1:2.2.3), python-oslo.config (>= 1:1.2.0a3), python-paste, python-pastedeploy, python-psutil (>= 0.6.1), python-requests (>= 1.1), python-routes, python-six, python-sqlalchemy (>= 0.8.2), python-stevedore (>= 0.10), python-webob, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-jsonrpclib, python-sqlalchemy (<< 0.9), python-oslo.rootwrap, python-novaclient Breaks: python-quantum (<< 1:2013.2~b2-0ubuntu1~) Filename: pool/main/n/neutron/python-neutron_2014.1-0ubuntu1_all.deb Size: 1143176 MD5sum: 1eebfc38eb7b2e113a39019376aa20f2 SHA1: 7245aae1b42976433b9485bd121b6e45df6a6aaa SHA256: bb2b396697cf148b88652b03fc4523315ba5bffbfcaf0f9acb8a0900ae55a1f4 Description: Neutron is a virutal network service for Openstack - Python library Python-Version: 2.7 Description-md5: 696162f82e78115f82ea6203be5b7e92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-neutronclient Priority: extra Section: python Installed-Size: 732 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Version: 1:2.3.4-0ubuntu1 Replaces: python-quantumclient (<< 1:2.2.4-0ubuntu1~) Depends: python-cliff (>= 1.3.2), python-httplib2, python-prettytable, python-pyparsing (>= 1.5.6), python-simplejson, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-iso8601, python-six, python-babel Breaks: python-quantumclient (<< 1:2.2.4-0ubuntu1~) Filename: pool/main/p/python-neutronclient/python-neutronclient_2.3.4-0ubuntu1_all.deb Size: 81436 MD5sum: 1f5c1f12611bcbee2f81752c3c04db4d SHA1: 84a9643c120b0e678e16f74f668cb785a1156ef0 SHA256: 6baa404e627cb8919c572af9e85f126b4fbe9f9c570272eb52baba7752fd5f3d Description: client - Neutron is a virtual network service for Openstack Homepage: http://launchpad.net/python-quantumclient Description-md5: 9075959c377cb65187ab8a1e4ca574cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-newt Priority: optional Section: python Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: i386 Source: newt Version: 0.52.15-2ubuntu5 Provides: python2.7-newt Depends: libnewt0.52 (= 0.52.15-2ubuntu5), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4) Filename: pool/main/n/newt/python-newt_0.52.15-2ubuntu5_i386.deb Size: 17792 MD5sum: b678f9958f0084bee8d88ba2e7d4013b SHA1: 505eaf24031dbc680b5f7d8a6542ce939a8ca34e SHA256: e641639db2ed3e97ab7545e31570c009baac8979b0c7c06cc74cbeff793f5a0d Description: NEWT module for Python Homepage: https://fedorahosted.org/newt/ Description-md5: e4fbb4792c8b9ef38f4c58fdfbf703db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-newt-dbg Priority: extra Section: python Installed-Size: 160 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: i386 Source: newt Version: 0.52.15-2ubuntu5 Depends: libnewt0.52 (= 0.52.15-2ubuntu5), python-newt (= 0.52.15-2ubuntu5), python-dbg, libc6 (>= 2.1.3) Filename: pool/main/n/newt/python-newt-dbg_0.52.15-2ubuntu5_i386.deb Size: 40940 MD5sum: 87a5765a722ec587e9dcfb42cc79de00 SHA1: abaa4311d65c0ede9cbf7e7db3ebba8efc6b4b58 SHA256: 401fbb8a293f6c57bdd503fc51cacc912f36cba585b946fc5d60ca5b450c41c6 Description: NEWT module for Python (debug extension) Homepage: https://fedorahosted.org/newt/ Description-md5: ebfe1a4f6036e99af788f0948b6bd864 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-nine Priority: extra Section: python Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.3.3-2 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8) Filename: pool/main/p/python-nine/python-nine_0.3.3-2_all.deb Size: 7922 MD5sum: c2eb45135d12e36deacd7e1911ed5287 SHA1: 267ab81ac7af30f444b2af154626b5cf26e00cf6 SHA256: 0f8459f1f41caf11cdc87884e4edd884380eb0fd4ee252712f6ddcb9b756667d Description: Python 2 / 3 compatibility, like six, but favouring Python 3 Homepage: https://pypi.python.org/pypi/nine Description-md5: bf6095d52a50b2ad70c8d7cbbf33290c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-nose Priority: optional Section: python Installed-Size: 578 Maintainer: Ubuntu Developers Original-Maintainer: Gustavo Noronha Silva Architecture: all Source: nose Version: 1.3.1-2 Depends: python-pkg-resources, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any Suggests: python-coverage, python-nose-doc Filename: pool/main/n/nose/python-nose_1.3.1-2_all.deb Size: 118756 MD5sum: bf85d4306cccc7e9639b5f687e9ba659 SHA1: 1364256f549593d6fd77af31e12d982d3c74a11d SHA256: e10266476cd3c320fc94289b9b1e68bf14f8afbae8c15173d9c95a4f747739e6 Description: test discovery and running of Python's unittest Homepage: https://nose.readthedocs.org/en/latest/ Description-md5: 7f9a2e744ba481e6a80b9e2e17fc8016 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-nose-doc Priority: optional Section: doc Installed-Size: 1472 Maintainer: Ubuntu Developers Original-Maintainer: Gustavo Noronha Silva Architecture: all Source: nose Version: 1.3.1-2 Replaces: python-nose (<< 1.1.2) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-nose (<< 1.1.2) Filename: pool/main/n/nose/python-nose-doc_1.3.1-2_all.deb Size: 165400 MD5sum: ce17a2502b9d27ccae43f56d11ec38de SHA1: 3555f1f727b061b671b363d4293f6984c82d7785 SHA256: 25f4d5877096af7cb8adca4428d789b70bf3f1feb317d615d555915889313d82 Description: documentation for discovery and running for Python's unittest Homepage: https://nose.readthedocs.org/en/latest/ Description-md5: 18461fe506b28c51828bc5e18adcc1ce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-nose-testconfig Priority: optional Section: python Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.9-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-nose-testconfig/python-nose-testconfig_0.9-1_all.deb Size: 8044 MD5sum: 8bbcdc1e69a670dcc3c1663f8f1a00ee SHA1: e852a87e47e2976d5b3b3e94d9004748542deaab SHA256: 3e6bfe065ff6fabff0d811cd15b1bf32551b1a77d6846a12271f1d04ab455f90 Description: test configuration plugin for nosetests Homepage: https://pypi.python.org/pypi/nose-testconfig Description-md5: 1526eed90e3889a3f1335159ac0f3a8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-notify Priority: optional Section: python Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Gustavo Franco Architecture: i386 Source: notify-python Version: 0.1.1-3ubuntu2 Provides: python2.7-notify Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.1.3), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.12.0), libnotify4 (>= 0.7.0), python-gtk2 (>= 2.10) Filename: pool/main/n/notify-python/python-notify_0.1.1-3ubuntu2_i386.deb Size: 15166 MD5sum: 918937dc946e9bb3690c21b583049b8f SHA1: f877ca08e112de8375e951385c31d96371c3db31 SHA256: 0c601f44009a8af5c800f1c24a1dcaef592a336c5e71c4aab429af7bd537c51a Description: Python bindings for libnotify Homepage: http://www.galago-project.org Description-md5: 3392c017056c640af7d7190a16884e85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-nova Priority: extra Section: python Installed-Size: 38067 Maintainer: Ubuntu Developers Original-Maintainer: Openstack Maintainers Architecture: all Source: nova Version: 1:2014.1-0ubuntu1 Provides: python2.7-nova Depends: openssh-client, openssl, python-amqplib (>= 0.6.1), python-anyjson (>= 0.3.3), python-babel, python-boto (>= 2.4.0), python-cinderclient (>= 1:1.0.5), python-eventlet (>= 0.13.0), python-glanceclient (>= 1:0.9.0), python-greenlet (>= 0.3.2), python-iso8601, python-jinja2, python-jsonschema (>= 1.3.0), python-keystoneclient (>= 1:0.3.2), python-kombu (>= 2.5.12), python-lxml (>= 2.3), python-m2crypto, python-migrate, python-netaddr (>= 0.7.6), python-neutronclient (>= 1:2.3.0), python-oslo.config (>= 1:1.2.0), python-paramiko (>= 1.8.0), python-paste, python-pastedeploy (>= 1.5.0), python-pyasn1, python-pycadf (>= 0.1.9), python-routes, python-simplejson, python-six, python-sqlalchemy-ext (>= 0.7.8-1~) | python-sqlalchemy (<< 0.6.3-2), python-stevedore (>= 0.12), python-suds, python-webob (>= 1.2.3), sudo, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-sqlalchemy (>= 0.8~), python-sqlalchemy (<< 0.9), python-oslo.rootwrap, python-oslo.messaging Recommends: python-mysqldb Suggests: python-ldap Conflicts: python-cjson Filename: pool/main/n/nova/python-nova_2014.1-0ubuntu1_all.deb Size: 1860870 MD5sum: d657976e6271a561bebc8a164d8bd9dc SHA1: 6d33d9af62238bd0d0e8f85e454105d7c06d8144 SHA256: 4577b603087ab329b343715db27990f60b71e7efdf6c1817a8f2558f2ea91d82 Description: OpenStack Compute Python libraries Homepage: http://launchpad.net/nova Python-Version: 2.7 Description-md5: 9e7471c108af7843da4a920afe750d19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-novaclient Priority: optional Section: python Installed-Size: 1173 Maintainer: Ubuntu Developers Architecture: all Version: 1:2.17.0-0ubuntu1 Depends: python-iso8601, python-pkg-resources, python-prettytable (>= 0.6), python-requests (>= 1.1), python-simplejson (>= 2.0.9), python-six, python-babel (>= 0.9.6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr Filename: pool/main/p/python-novaclient/python-novaclient_2.17.0-0ubuntu1_all.deb Size: 139308 MD5sum: a089d1398ea30d9e06767bae9bfebadf SHA1: b0a0d30192ff2eb5f5d801409155ae36a2f4323f SHA256: 3802f2b241d4b5f1553fb8a97dba24de4e62479c77480e99388b67a2a184f720 Description: client library for OpenStack Compute API Python-Version: 2.7 Description-md5: 83b75cda9e6e0d6b6042159ed9ee5a2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ntdb Priority: optional Section: python Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: ntdb Version: 1.0-2ubuntu1 Provides: python2.7-ntdb Depends: libntdb1 (= 1.0-2ubuntu1), python (>= 2.7), python (<< 2.8), libc6 (>= 2.3.6-6~), libpython2.7 (>= 2.7) Filename: pool/main/n/ntdb/python-ntdb_1.0-2ubuntu1_i386.deb Size: 8674 MD5sum: 420169255798ad8a0d2fe07936f93a47 SHA1: d0c6dec4770cf5be407c15fd84135573184b568c SHA256: b8c7240ebcd6ab58c4fbe044753071513b23cf729a3537cc77ff87ad10684959 Description: Python bindings for NTDB Homepage: http://tdb.samba.org/ Description-md5: acaae22f7c5258840117ab9e5f34f626 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-ntdb-dbg Priority: extra Section: debug Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: ntdb Version: 1.0-2ubuntu1 Depends: python-ntdb (= 1.0-2ubuntu1) Recommends: python-dbg, libntdb1-dbg Filename: pool/main/n/ntdb/python-ntdb-dbg_1.0-2ubuntu1_i386.deb Size: 16870 MD5sum: ec058934422a2f2d2a6284f5879f812e SHA1: e307158f3a70dfa96a7b1794c006b81ec0e20e95 SHA256: 3924fcfbcb517aca0f25030bd730cde2ef8a8a95fafe43365bda8d81c6ca0d44 Description: Python bindings for NTDB - debug extension Homepage: http://tdb.samba.org/ Description-md5: 20178affed6b2437b28c7e87cb5e85d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-numpy Priority: optional Section: python Installed-Size: 8539 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Version: 1:1.8.1-1ubuntu1 Provides: python-f2py, python-numpy-abi9, python-numpy-api9, python-numpy-dev, python2.7-numpy Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any, libblas3 | libblas.so.3, libc6 (>= 2.11), liblapack3 | liblapack.so.3 Suggests: gcc (>= 4:4.6.1-5), gfortran, python-dev, python-nose (>= 0.10.1), python-numpy-dbg, python-numpy-doc Filename: pool/main/p/python-numpy/python-numpy_1.8.1-1ubuntu1_i386.deb Size: 1585826 MD5sum: 66c5ee259c6186a6d1d557b43bef39a8 SHA1: 38a6409ac79d4ce4fa1b216d964e49d43091384d SHA256: a8e1dfb2a950623b74ca3452fd165f6ef9ffcf84996d2c176b2eb7235d26ff19 Description: Numerical Python adds a fast array facility to the Python language Homepage: http://www.numpy.org/ Description-md5: 7f7fe2d2ed613d0e3a7ffabfd3df14fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: python-numpy-dbg Priority: extra Section: python Installed-Size: 12939 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-numpy Version: 1:1.8.1-1ubuntu1 Replaces: python-numpy (<< 1:1.7.1-1) Depends: python-dbg, python-numpy (= 1:1.8.1-1ubuntu1), libblas3 | libblas.so.3, libc6 (>= 2.7), liblapack3 | liblapack.so.3 Breaks: python-numpy (<< 1:1.7.1-1) Filename: pool/main/p/python-numpy/python-numpy-dbg_1.8.1-1ubuntu1_i386.deb Size: 2755732 MD5sum: e53d2b70d4821d79adf73cecf33d2b4f SHA1: 44e74497658aadbc18251880b624a54b64cf6367 SHA256: 75671f9516ce5f2e0db8b8e6b1dc5819e09f41eba75a55120ca83724aefd0dd0 Description: Fast array facility to the Python language (debug extension) Homepage: http://www.numpy.org/ Description-md5: 3f4626d6863b3a1bde4b43fb67bedf96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-numpy-doc Priority: optional Section: doc Installed-Size: 21618 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-numpy Version: 1:1.8.1-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-numpy/python-numpy-doc_1.8.1-1ubuntu1_all.deb Size: 1944928 MD5sum: 7af71c00320a7da65e1818a7a16db4c1 SHA1: 8fa698d8c59238adb2fc532d035992daac123e39 SHA256: b2000d90fbf5a5c80a5cf6aa9bf7898c849e2724cf451d7334844e0d312df859 Description: NumPy documentation Homepage: http://www.numpy.org/ Description-md5: a147fd7724d6f967382caa8c0f0af4ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-oauth Priority: optional Section: python Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.0.1-3build2 Provides: python2.7-oauth Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-oauth/python-oauth_1.0.1-3build2_all.deb Size: 12830 MD5sum: e2c16c59e6242e3abb211a3e64297615 SHA1: 2168098733f13c07f2251e39c258f0cda047e1b5 SHA256: 1b8277d2f26400c603c38712428afd551aa12556f8cfc2ae507a0a3abc76f34a Description: Python library implementing of the OAuth protocol Homepage: http://code.google.com/p/oauth Description-md5: 28c98bf4852ce37e6f12e5f37f561868 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-oauthlib Priority: optional Section: python Installed-Size: 406 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.6.1-1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python-crypto Filename: pool/main/p/python-oauthlib/python-oauthlib_0.6.1-1_all.deb Size: 59380 MD5sum: c9d6b2599b97bf3a4b95339b441da10d SHA1: 71ef127df4150963a076ea7b945cb29ef03338f9 SHA256: 01caec4eab8b52917c642378b96ca37d232c55e7ff036137478b8f9c68d861bf Description: generic, spec-compliant implementation of OAuth for Python Homepage: https://github.com/idan/oauthlib Description-md5: 49d64d451a046c8953d676ab47bd0ff8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-ogg Priority: optional Section: python Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyogg Version: 1.3+repack-5ubuntu2 Replaces: python-pyogg (<< 1.3+repack-1) Provides: python2.7-ogg Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8), libc6 (>= 2.4), libogg0 (>= 1.0rc3) Suggests: python-ogg-dbg Conflicts: python-pyogg (<< 1.3+repack-1) Filename: pool/main/p/pyogg/python-ogg_1.3+repack-5ubuntu2_i386.deb Size: 17044 MD5sum: cad26580726c17add3da25f3b0389c47 SHA1: 2304de9d86408740f715602b9e7fc8327b022725 SHA256: 7a4c718ce1174c84e5c8ca90f321521f3df887c78ac692d43b7552c690915ea9 Description: Python interface to the Ogg library Homepage: http://ekyo.nerim.net/software/pyogg/index.html Python-Version: 2.7 Description-md5: 65ebc4a4cdbb8f5231a4a39031d759bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ogg-dbg Priority: extra Section: python Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyogg Version: 1.3+repack-5ubuntu2 Replaces: python-pyogg-dbg (<< 1.3+repack-1) Depends: python-ogg (= 1.3+repack-5ubuntu2), python-dbg, libc6 (>= 2.4), libogg0 (>= 1.0rc3) Conflicts: python-pyogg-dbg (<< 1.3+repack-1) Filename: pool/main/p/pyogg/python-ogg-dbg_1.3+repack-5ubuntu2_i386.deb Size: 57540 MD5sum: 5f43adbec4274f5e02a9379ad8982f52 SHA1: 54a51bc5080b89d8857d76b48e13311685b0b3a3 SHA256: ff4e8919f7fc1fdff152dc47b11430bb00c10e5d03694da677fe4eb89c56ae8e Description: Python interface to the Ogg library (debug extension) Homepage: http://ekyo.nerim.net/software/pyogg/index.html Description-md5: 1ba07dd44bff3caa46b569f6c49c606f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-oneconf Priority: extra Section: python Installed-Size: 143 Maintainer: Didier Roche Architecture: all Source: oneconf Version: 0.3.7 Replaces: oneconf (<< 0.3) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), oneconf-common, python-dbus, python-oauthlib, python-gi, python-apt, python-piston-mini-client, python-httplib2, python-xdg Filename: pool/main/o/oneconf/python-oneconf_0.3.7_all.deb Size: 19568 MD5sum: 03ec29e7ffa2680a0891bbca10d99442 SHA1: c651e2ae0a5d142e9c600e63eaaa8a881f604a83 SHA256: 0840c8c9acc8fdddd857dad8a0f604d9ca63e4363cb8e733d87c60347dcbbce9 Description: synchronize your configuration data over the network (Python 2) Description-md5: a3e0bc1087a2070ca2fbe2ee526f3627 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-oops Priority: optional Section: python Installed-Size: 65 Maintainer: Andres Rodriguez Architecture: all Source: oops Version: 0.0.10-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-iso8601, python-tz Filename: pool/main/o/oops/python-oops_0.0.10-0ubuntu2_all.deb Size: 10872 MD5sum: 29e6b2cd2c143a8e82d1bd7cce32911d SHA1: a7cc44d56b6c3cd377e209b5d58ec18001e63418 SHA256: ec1a04abc7f922adba23b6d1d36caa288b18bf57b6dd60e5a3776c6079beacfe Description: Serialization, deserialization and allocation of OOPS reports Homepage: http://pypi.python.org/pypi/oops Description-md5: c6775cf93e327926a0b57be0060eab2f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oops-amqp Priority: optional Section: python Installed-Size: 70 Maintainer: Andres Rodriguez Architecture: all Source: oops-amqp Version: 0.0.7-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-bson, python-oops, python-amqplib Filename: pool/main/o/oops-amqp/python-oops-amqp_0.0.7-0ubuntu2_all.deb Size: 10822 MD5sum: b390365d5dfa0f18755dffef24ffb8ea SHA1: a18c3d7c2b1924008b9e56e071399f12af64b642 SHA256: a33a70fb28a5acc45b98d0d32223298ca4be77fa87f984929a5611cdb2ad570a Description: AMQP OOPS publisher Homepage: http://pypi.python.org/pypi/oops_amqp Description-md5: 58628fad260a7b0b7f1248a4d31a5e37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oops-datedir-repo Priority: optional Section: python Installed-Size: 93 Maintainer: Andres Rodriguez Architecture: all Source: oops-datedir-repo Version: 0.0.17-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-oops, python-bson, python-iso8601, python-launchpadlib, python-tz Filename: pool/main/o/oops-datedir-repo/python-oops-datedir-repo_0.0.17-0ubuntu2_all.deb Size: 14960 MD5sum: 045eb6814bbf94c1e05e6a7f0b6d8466 SHA1: c279796b5640fb90ec3f464ad684a2944c7b59da SHA256: bdfe568f9e7ab3a9f318f3ddc484b533d1ed9bc622df96221bd3d4c6c2b3898f Description: Disk storage, management, and a serialisation format for OOPSes Homepage: http://pypi.python.org/pypi/oops_datedir_repo Description-md5: 1728590dc20a3414a7f873973be66b24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oops-twisted Priority: optional Section: python Installed-Size: 69 Maintainer: Andres Rodriguez Architecture: all Source: oops-twisted Version: 0.0.6-0ubuntu4 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-oops, python-oops-wsgi, python-twisted, python-tz Filename: pool/main/o/oops-twisted/python-oops-twisted_0.0.6-0ubuntu4_all.deb Size: 10470 MD5sum: ab4065138576783dd54d7fe8bb3c0a49 SHA1: 67208f91eac643a1f2a321a9c0f23728252692a8 SHA256: ba299949a5b0e74b3d8242b04148eb40afb2772357a6a3f4252e0127ddda16b3 Description: Integration between Twisted and oops error reporting system Homepage: http://pypi.python.org/pypi/oops_twisted Description-md5: 1b41196815c2418f05824b18853359d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oops-wsgi Priority: optional Section: python Installed-Size: 71 Maintainer: Andres Rodriguez Architecture: all Source: oops-wsgi Version: 0.0.10-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-oops, python-paste Filename: pool/main/o/oops-wsgi/python-oops-wsgi_0.0.10-0ubuntu2_all.deb Size: 11272 MD5sum: 2fc79a768c5d5103e291f99f68e01ed3 SHA1: aeefef5bf9d2d42930ce6fa90bc972f1e0416294 SHA256: c1c986ef22b487ba9f97c4e498cf06041a4a68b4fe9667bf1ddbdc62c94c38eb Description: Integration of wsgi web servers and oops error reporting system Homepage: http://pypi.python.org/pypi/oops_wsgi Description-md5: f8fa18e290aaa99086e30cabe6576c8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-openid Priority: optional Section: python Installed-Size: 518 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Version: 2.2.5-3ubuntu1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/p/python-openid/python-openid_2.2.5-3ubuntu1_all.deb Size: 118048 MD5sum: 18f10f480ec0e16fab9c27e361148ade SHA1: 118e206cb732aedc9fff026b8ff9e846f48094b6 SHA256: b403b1584fcfca0c3759a43bc0b933b353a9fabe16d74af7fc360ce82b29d967 Description: OpenID support for servers and consumers Homepage: http://github.com/openid/python-openid Description-md5: 06a516ba29d93ae87624ee796303adaf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-openid-doc Priority: optional Section: doc Installed-Size: 16684 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Source: python-openid Version: 2.2.5-3ubuntu1 Recommends: python-openid Filename: pool/main/p/python-openid/python-openid-doc_2.2.5-3ubuntu1_all.deb Size: 1340850 MD5sum: 3831f5a0df5be90d3711e5bc035b02c8 SHA1: 47748cfef5b03e40ae2307782a7cda147479cc3b SHA256: af5c656e728d9f1a350cd9e96dedec364d00a311ef9db7b1c3c8a681b23c5247 Description: OpenID support for servers and consumers -- documentation Homepage: http://github.com/openid/python-openid Description-md5: 81adf2f19d7a75e4c6b7dd13ac0842eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-openssl Priority: optional Section: python Installed-Size: 392 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyopenssl Version: 0.13-2ubuntu6 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0) Suggests: python-openssl-doc, python-openssl-dbg Filename: pool/main/p/pyopenssl/python-openssl_0.13-2ubuntu6_i386.deb Size: 79568 MD5sum: 7665651fd3ab9e4231c072fcaeaf8ceb SHA1: 3220afcac7c299952a239cf9fb644c8ec34e0cd4 SHA256: e0f7885929cc245ab9d35e57eb0a7c7bedbefeb1599aea5b4000ba2e9df46e0b Description: Python 2 wrapper around the OpenSSL library Homepage: http://launchpad.net/pyopenssl Description-md5: 34bf94e85b02caf329c537f92208752f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-openssl-dbg Priority: extra Section: python Installed-Size: 943 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyopenssl Version: 0.13-2ubuntu6 Depends: python-openssl (= 0.13-2ubuntu6), python-dbg, libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0) Filename: pool/main/p/pyopenssl/python-openssl-dbg_0.13-2ubuntu6_i386.deb Size: 197868 MD5sum: 4c60e4882cf629b0f455916e9f08bae5 SHA1: e79fc4036a1ec2907bfb42888b9a15f49c0dc30e SHA256: 207b55205d70cfa386a5d8474192e6bae76d36502a4144c60dde27315ae59074 Description: Python 2 wrapper around the OpenSSL library (debug extension) Homepage: http://launchpad.net/pyopenssl Description-md5: 42b65693799877c98e71e8195faa5e96 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-openssl-doc Priority: optional Section: doc Installed-Size: 338 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyopenssl Version: 0.13-2ubuntu6 Suggests: python-openssl, python3-openssl Filename: pool/main/p/pyopenssl/python-openssl-doc_0.13-2ubuntu6_all.deb Size: 131452 MD5sum: 3c2d23f602fb940d03776091e4e5efd7 SHA1: 1c7e0bbd9928306013213ca5d39f555aeb32a2e5 SHA256: cf3c2695f53eb4660e6c565cd035ab32a34f53d61580ef09fc59677df750241f Description: Python wrapper around the OpenSSL library (documentation package) Homepage: http://launchpad.net/pyopenssl Description-md5: ac670bb910ef23fb997f7e3c57ca5305 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-openstack-auth Priority: optional Section: python Installed-Size: 363 Maintainer: Ubuntu Developers Architecture: all Source: python-django-openstack-auth Version: 1.1.3-0ubuntu3 Replaces: python-django-openstack-auth (<< 1.0.1-0ubuntu4~) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-django, python-keystoneclient Conflicts: python-django-openstack-auth (<< 1.0.1-0ubuntu4~) Filename: pool/main/p/python-django-openstack-auth/python-openstack-auth_1.1.3-0ubuntu3_all.deb Size: 27360 MD5sum: 732f14445a966edb76f1271d1cb4d04f SHA1: 44f28ebfcc7490d7908739cd23928ba0bb73e1c9 SHA256: ea250cd3732228fbbae362e9ac1fbf3d3c7767d50547b68a6e66226fc76f91f8 Description: A django authentication backend for Openstack Homepage: http://pypi.python.org/pypi/django_openstack_auth Description-md5: 0b7156f426888e3b832107c8e3ab9212 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslo.config Priority: optional Section: python Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: oslo-config Version: 1:1.2.1-0ubuntu2 Provides: python-oslo-config Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-six, python-argparse Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/o/oslo-config/python-oslo.config_1.2.1-0ubuntu2_all.deb Size: 21608 MD5sum: c095bf60547f412523e9548dbe9c5ac5 SHA1: 08676cec7bb1fbedcfa9126a83815c5a11ebc6b8 SHA256: 441e6c850ba54c2aa0c3dc976e112d3321cbb2caca42a53d49e75141d6cbe62e Description: Common code for Openstack Projects (configuration API) Homepage: https://github.com/openstack/oslo-incubator Description-md5: c0fb860c9aa4302896ca1fcd64aaaded Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslo.messaging Priority: optional Section: python Installed-Size: 402 Maintainer: Chuck Short Architecture: all Source: oslo.messaging Version: 1.3.0-0ubuntu1 Depends: python-babel, python-eventlet, python-iso8601, python-oslo.config, python-six, python-stevedore, python-yaml, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-kombu Filename: pool/main/o/oslo.messaging/python-oslo.messaging_1.3.0-0ubuntu1_all.deb Size: 63256 MD5sum: dbdfbbdab74a16a3a49e876102318ab5 SHA1: bed6d5ef1b9df53c6f784aff453d84aac92b71f0 SHA256: a38a2cd52059df935ce1e4a685bef5c5bb99427f9fe2aed7f2f849bf4c9e6fef Description: oslo messaging library Description-md5: 872693084388794bf5657d0fce94e530 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslo.rootwrap Priority: optional Section: python Installed-Size: 102 Maintainer: Chuck Short Architecture: all Source: oslo.rootwrap Version: 1.2.0-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-six Suggests: sudo Filename: pool/main/o/oslo.rootwrap/python-oslo.rootwrap_1.2.0-0ubuntu1_all.deb Size: 15884 MD5sum: d6f5d2b159c33e858538a84ff30c6181 SHA1: 5491b724446a6da8e2fb4b9c7b9dfa75a6ef2647 SHA256: de64855e7e3b6f882166017f825c9f4d6e1052039d0e914293a26df1a0f2bea1 Description: Fine filtering of shell commands as 'root' Description-md5: be6e10d45360727a7ed8a2c91e6658da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslo.sphinx Priority: optional Section: python Installed-Size: 27 Maintainer: Chuck Short Architecture: all Source: oslo-sphinx Version: 2.0-0ubuntu2 Depends: python-oslosphinx Filename: pool/main/o/oslo-sphinx/python-oslo.sphinx_2.0-0ubuntu2_all.deb Size: 1532 MD5sum: 1a97e22ee233361e88c2a9b3e901f5d7 SHA1: 377992bf851fd611dbc7cac11e9541c49b04c10a SHA256: 828d14e04dc8c7189b99eb455c403b49a7be91643bb6f081e5739a5123902eef Description: oslo.sphinx transitional dummy package Description-md5: 9fe6b2298800d9f9788d9a2772d3e089 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslo.vmware Priority: optional Section: python Installed-Size: 211 Maintainer: Chuck Short Architecture: all Version: 0.2-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-stevedore, python-netaddr, python-iso8601, python-six, python-babel, python-yaml, python-suds, python-eventlet Filename: pool/main/p/python-oslo.vmware/python-oslo.vmware_0.2-0ubuntu1_all.deb Size: 30518 MD5sum: 0e9d8156b4860f34759834c62a93583b SHA1: 0b2abfe926e6466ecd5aae1fa8516335ea41a10f SHA256: d62bee85e47fc7a496e71975655501665aaa7961a2b8e7da9fc4e0850a836bed Description: oslo vmware library Description-md5: c5ae9222c573adfbef86f077b9b59b06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslosphinx Priority: optional Section: python Installed-Size: 92 Maintainer: Chuck Short Architecture: all Source: oslo-sphinx Version: 2.0-0ubuntu2 Replaces: python-oslo.sphinx (<< 1.1~) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: python-oslo.sphinx (<< 1.1~) Filename: pool/main/o/oslo-sphinx/python-oslosphinx_2.0-0ubuntu2_all.deb Size: 14834 MD5sum: 3bf7ca0a37ad3795a85b57f2a55b57de SHA1: d14075b766c8482504790aea59d1f7ef9346a23a SHA256: 3d2c5b7a4cb2c122d7ad28590081419660b41060a11404a990c204501ffd8740 Description: theme and extension support for openstack Description-md5: feffad7fc18a5f59378a2b72954c3e19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-oslotest Priority: optional Section: python Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.1-1ubuntu3 Depends: python-fixtures (>= 0.3.14), python-mock (>= 1.0), python-mox (>= 0.5.3), python-testtools (>= 0.9.34), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-oslotest/python-oslotest_0.1-1ubuntu3_all.deb Size: 4786 MD5sum: e1f4084e417256e08d78c3c0d29d6904 SHA1: ce64d36c058fa68b1fc87404003c259d723ee24e SHA256: f39b95f72666ad3a58c7a7419c57984c007888d6328a51f332d08a6146451ed6 Description: OpenStack test framework - Python 2.x Homepage: http://launchpad.net/oslo Description-md5: 914a6313818aae977fb69b4473c6b724 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-oslotest-doc Priority: optional Section: doc Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-oslotest Version: 0.1-1ubuntu3 Depends: libjs-sphinxdoc (>= 1.0) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-oslotest/python-oslotest-doc_0.1-1ubuntu3_all.deb Size: 24512 MD5sum: a4020eec27f1835b0aba6389f3406eaa SHA1: 3e7d82d91f4813307c51f9cc4f8b2b58e97f1b1c SHA256: 445ba506ef5526a7ea7da70e38a0619203a364e7ea3b73ae8b1161e462937eca Description: OpenStack test framework - doc Homepage: http://launchpad.net/oslo Description-md5: 09fb07b0a25e402e50b28933036b65e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pam Priority: optional Section: python Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Dima Barsky Architecture: i386 Version: 0.4.2-13.1ubuntu3 Depends: python (<< 2.8), python (>= 2.7~), libc6 (>= 2.4), libpam0g (>= 0.99.7.1) Suggests: python-pam-dbg Filename: pool/main/p/python-pam/python-pam_0.4.2-13.1ubuntu3_i386.deb Size: 9822 MD5sum: 996e241e46a71857021070a182cd8329 SHA1: 9fd66b3d04ef0329b52a60e422c3b4448c8fe0aa SHA256: 58e6b94fcb2f4a8a61dd8256a43865d188050805b273e6504501ad48aeea51dd Description: Python interface to the PAM library Description-md5: 71f7dad76c5454c2aa39a348625096fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-pam-dbg Priority: extra Section: python Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Dima Barsky Architecture: i386 Source: python-pam Version: 0.4.2-13.1ubuntu3 Depends: python-pam (= 0.4.2-13.1ubuntu3), python-dbg (>= 2.7~), python-dbg (<< 2.8), libc6 (>= 2.4), libpam0g (>= 0.99.7.1) Filename: pool/main/p/python-pam/python-pam-dbg_0.4.2-13.1ubuntu3_i386.deb Size: 6654 MD5sum: cdb2daa309f0d74216233dca54f43221 SHA1: 91cddf3068f41b88456a51d3871055aaf8b26ae9 SHA256: 07e4f6e1f2475977292230e39ffc1a25b5ee3ff00ab7d63d6e8719d5c0097a54 Description: Python interface to the PAM library (debug extension) Description-md5: c7bbb903a62ceb9eb88f88a9d51fe391 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-paramiko Priority: optional Section: python Installed-Size: 541 Maintainer: Ubuntu Developers Original-Maintainer: Jeremy T. Bouse Architecture: all Source: paramiko Version: 1.10.1-1git1build1 Provides: python2.7-paramiko Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-crypto (>= 2.1.0-2) Filename: pool/main/p/paramiko/python-paramiko_1.10.1-1git1build1_all.deb Size: 105776 MD5sum: e728ed22af7bead915a5e509140971bb SHA1: 92f20ae140eeceb36d456bb696b4a5e5c7f36585 SHA256: b665fdc994b7d1944bc54aab781f9110d2e1e6e4d33257151bf6d2f8a2f56a7c Description: Make ssh v2 connections with Python (Python 2) Homepage: https://github.com/paramiko/paramiko/ Description-md5: ef19708cf575fb15646b6a0f32043a47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-parsedatetime Priority: optional Section: python Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: parsedatetime Version: 1.1.2-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), base-files (>= 4.0.4) Recommends: python-pyicu Filename: pool/main/p/parsedatetime/python-parsedatetime_1.1.2-0ubuntu1_all.deb Size: 20452 MD5sum: 01a7d4a299b904698f2935402abd018e SHA1: e7edc5e7d93356498899766427b345d1e6e2c6ba SHA256: 6842fc43b630e27d1c17a6f0ddfe057965a98c91aa836972a68c14eead8551f6 Description: Python module to parse human-readable date/time expressions Homepage: https://pypi.python.org/pypi/parsedatetime/ Description-md5: e09fdbe405ace759c61c71c6a03c761a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-passlib Priority: extra Section: python Installed-Size: 709 Maintainer: Ubuntu Developers Original-Maintainer: Monty Taylor Architecture: all Source: passlib Version: 1.5.3-0ubuntu3 Provides: python2.7-passlib Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/passlib/python-passlib_1.5.3-0ubuntu3_all.deb Size: 122642 MD5sum: 148af17ab6f32a5dc65e7c1a5829ec92 SHA1: bacacc1ace829c4d252750723ba6f80677cfcb95 SHA256: 773404bed3b1b5fcbf236f3a0350e54ccc12e69201679945314bd08516bc67e1 Description: comprehensive password hashing framework Homepage: http://pypi.python.org/pypi/passlib Description-md5: f760ce62d4b27f801820a175facd19ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-paste Priority: optional Section: python Installed-Size: 2189 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: paste Version: 1.7.5.1-6ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources, python-formencode (>= 0.5.1-1), python-tempita Recommends: python-ctypes, python-openid, python-openssl, python-scgi Suggests: python-pastedeploy, python-pastescript, python-pastewebkit, libjs-mochikit, libapache2-mod-wsgi, libapache2-mod-python (>= 3.2.8-3), libapache2-mod-scgi, python-pgsql (>= 2.5.1-1), libjs-sphinxdoc (>= 1.0) Breaks: python-pastescript (<< 1.7.3-7~1) Filename: pool/main/p/paste/python-paste_1.7.5.1-6ubuntu3_all.deb Size: 366738 MD5sum: 087a0e6d604920077dba2eb699fee451 SHA1: 4f080c3cd87c67c188bf701458c59ff55321129f SHA256: f9a8a73b028450a3f3b97f2dceb9270cd92225730e2376e910c23b1af228d142 Description: tools for using a Web Server Gateway Interface stack Homepage: http://pythonpaste.org/ Description-md5: 3ddc7c0d3c16fc3b170f50f4fde9d0d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pastedeploy Priority: optional Section: python Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pastedeploy Version: 1.5.2-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pastedeploy-tpl (= 1.5.2-1), python-paste, python-pkg-resources Recommends: python-pastescript (>= 1.7.3-6~) Filename: pool/main/p/pastedeploy/python-pastedeploy_1.5.2-1_all.deb Size: 25514 MD5sum: 3c0587c8218a420b1718ab9b5f01b42f SHA1: f73fe8a7782cadc1c57130b50f7bb4ebe6065df3 SHA256: 4df4a7dfed631eeea8bb0463866348f0474570ec87fbc1c9443aad0f6216a6a8 Description: load, configure, and compose WSGI applications and servers Enhances: python-paste Homepage: http://pythonpaste.org/deploy/ Description-md5: afbb73c46ccd2497967e15984a3955d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pastedeploy-tpl Priority: optional Section: python Installed-Size: 46 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pastedeploy Version: 1.5.2-1 Replaces: python-pastedeploy (<< 1.5.0-4) Breaks: python-pastedeploy (<< 1.5.0-4) Filename: pool/main/p/pastedeploy/python-pastedeploy-tpl_1.5.2-1_all.deb Size: 4518 MD5sum: 026875f9ea63f46eb1c7271f48563ce4 SHA1: 83b6ef3b2c6be442774143fb106d6ef3ddb7888f SHA256: 7557e2061bfa7faeb2413b113bbb8732a4277e749a8e1506573146b00136e858 Description: load, configure, and compose WSGI applications and servers - templates Homepage: http://pythonpaste.org/deploy/ Description-md5: 48210110930eb45679dddab1e36fbd39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pastescript Priority: optional Section: python Installed-Size: 686 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pastescript Version: 1.7.5-3build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python2.7:any, python-paste (>= 1.7.5.1-2~), python-pastedeploy (>= 1.5.0-1~), python-setuptools | python-distribute Suggests: python-flup (>= 0.5-1), python-cherrypy, python-cheetah (>= 1.0-1.1), libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/pastescript/python-pastescript_1.7.5-3build1_all.deb Size: 117134 MD5sum: efbe8811182fd40546ff68cd99ab0df7 SHA1: 3c4320f242fb5348ca032e9dd4d8765baf051117 SHA256: a4c02b110aacbb12d5d0b595447eb468a67358ef4f402b15c42f69d4bf1b221a Description: serving web applications, creating file layouts for Python packages Homepage: http://pythonpaste.org/script/ Description-md5: b1b528a08e1a6cbae1e0b6d68bb16aa9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pbr Priority: extra Section: python Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.7.0-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-pbr/python-pbr_0.7.0-0ubuntu2_all.deb Size: 36150 MD5sum: a289b28e339bf153a43a6b06933e192d SHA1: dea0803f95e06c829cb4acec7d530d0d1c9fd3d3 SHA256: 08ecd841c3a59276229f39e1b3d4a1a6015aa8bbfcd634be7e9fddc97f0d0aeb Description: inject useful and sensible default behaviors into setuptools - Python 2.x Homepage: http://pypi.python.org/pypi/pbr Description-md5: 2b43552f188c95fde6c276335374d852 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pecan Priority: optional Section: python Installed-Size: 559 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.3.0-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-webob, python-simplegeneric, python-mako (>= 0.4.0), python-webtest, python-six, python-markupsafe Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-pecan/python-pecan_0.3.0-1ubuntu2_all.deb Size: 103540 MD5sum: d3c5facd87da4ebe43d3521500e5e157 SHA1: acbd22e02d4f10d070da79269c677c9502c80d7c SHA256: 818b650dce0bb1c96d2104ec814b438aa836003f87f950beecb2ab3eaa2853fd Description: WSGI object-dispatching web framework Homepage: http://pypi.python.org/pypi/pecan Description-md5: 49073070e46c2a82b1d72868c32d47e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pexpect Priority: optional Section: python Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Ganesan Rajagopal Architecture: all Source: pexpect Version: 3.1-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-pexpect-doc Filename: pool/main/p/pexpect/python-pexpect_3.1-1_all.deb Size: 37760 MD5sum: 475f6879ccfe93511c64a3502ac9183f SHA1: 2934371db42bedb290543f71ce124cd9c93c8162 SHA256: 83c6a993bf50ab249809d0cdd7031efc79730f5fb855b5e708cc76546ac089d8 Description: Python module for automating interactive applications Homepage: http://www.noah.org/wiki/Pexpect Description-md5: d65bfec864ae3e7ccf016394e866e099 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-pexpect-doc Priority: optional Section: doc Installed-Size: 901 Maintainer: Ubuntu Developers Original-Maintainer: Ganesan Rajagopal Architecture: all Source: pexpect Version: 3.1-1 Replaces: python-pexpect (<< 3) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-pexpect (<< 3) Filename: pool/main/p/pexpect/python-pexpect-doc_3.1-1_all.deb Size: 122952 MD5sum: 1e5dcdd2b5fb146c0a02df57f1e5c7bd SHA1: 1177302e1808cee611c67e2c7e5b7647dcfda44d SHA256: e4d9c3b5b7613e3ba6e039a10d24d1e03df6bf524e41343e40627211f3955426 Description: Python module for automating interactive applications (documentation) Homepage: http://www.noah.org/wiki/Pexpect Description-md5: a24c0229c9a7a675e2f190e43f543e7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pika Priority: optional Section: python Installed-Size: 513 Maintainer: Ubuntu Developers Original-Maintainer: Jan Dittberner Architecture: all Version: 0.9.13-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-pika/python-pika_0.9.13-1build1_all.deb Size: 94606 MD5sum: 4039ca3679995203f5d11ea6d90a8915 SHA1: b750f5f0f7076537d38897f104bcb503b32aad4c SHA256: 3ebb0716886ac0e5b263e048d3d797c35661e3bbbeabd7438e25d868e3ca0716 Description: AMQP client library Homepage: http://pika.github.com/ Description-md5: c40f9706e6bb3416c56518f7abcf849f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pil Priority: optional Section: python Installed-Size: 1100 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging (<< 1.1.7+2.0.0-1.1) Provides: python-pillow, python2.7-pil Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), mime-support | python-pil.imagetk, libc6 (>= 2.11), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libtiff5 (>= 4.0.3), libwebp5, libwebpmux1, zlib1g (>= 1:1.1.4) Suggests: python-pil-doc, python-pil-dbg Breaks: python-imaging (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-pil_2.3.0-1ubuntu3_i386.deb Size: 277090 MD5sum: 06ca15e3d4bb91f8758e7b9c963ac4d3 SHA1: 43458ffe1bdcd16de84061f3ad169ac990868fdd SHA256: 5b9e3615bacfac303e33a1fb1e7eb880dfa51e07a065809da74c97dbf0722679 Description: Python Imaging Library (Pillow fork) Description-md5: 7fb415befc961c94ce8c999eb6902e95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-pil-dbg Priority: extra Section: debug Installed-Size: 1528 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-dbg (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-dbg Depends: python-pil (= 2.3.0-1ubuntu3), python-dbg, libc6 (>= 2.4), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), libtiff5 (>= 4.0.3), libwebp5, libwebpmux1, zlib1g (>= 1:1.1.4) Breaks: python-imaging-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-pil-dbg_2.3.0-1ubuntu3_i386.deb Size: 388224 MD5sum: a0e54d875c2149947d069bf9fb92c634 SHA1: cd1efe1041f41c2268be22ee329758de05aac339 SHA256: 2b03791f57ed69929ba1bf1700add76ce0e3b87c06f90c50d13852fd134a61fa Description: Python Imaging Library (debug extension) Description-md5: d6a7480c57ccf294697d16f2577b0491 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pil-doc Priority: optional Section: doc Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-doc (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-doc Suggests: python-pil-doc-html, python-pil-doc-pdf, python-doc, python3-pil | python-pil, python3-pil.imagetk | python-pil.imagetk Breaks: python-imaging-doc (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-pil-doc_2.3.0-1ubuntu3_all.deb Size: 13738 MD5sum: 2ed299eef68307b2bbfca2816c439f64 SHA1: f08cd2e24ea39b3b88a8eae6664610f1710bc92a SHA256: 670e06f633b512d5b09583b23d22ae1984cf5cb4d51b6354e35109451c90121f Description: Examples for the Python Imaging Library Description-md5: 0cf86354863d856ed40290c421b7d497 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pil.imagetk Priority: optional Section: python Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-tk (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-tk, python2.7-pil.imagetk Depends: python-pil (= 2.3.0-1ubuntu3), python-tk (>= 2.5.2-1.1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3.6-6~), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Suggests: python-pil-doc, python-pil.imagetk-dbg Breaks: python-imaging-tk (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-pil.imagetk_2.3.0-1ubuntu3_i386.deb Size: 7320 MD5sum: 75d7bafd82ae7fbd258174fb4f9e1d7c SHA1: e7a0ebb797ecd4810eea1380e0f3fd811986f36f SHA256: 1ca62831f3f28a35bf76261f2f444bb7e04b3d7eee42d006f61075aff6c07a8d Description: Python Imaging Library - ImageTk Module (Pillow fork) Description-md5: d7c38cb1538a3b67445e030c1ee4dcff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pil.imagetk-dbg Priority: extra Section: debug Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-tk-dbg (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-tk-dbg Depends: python-pil.imagetk (= 2.3.0-1ubuntu3), python-pil-dbg (= 2.3.0-1ubuntu3), python-dbg, libc6 (>= 2.3.6-6~), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Breaks: python-imaging-tk-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-pil.imagetk-dbg_2.3.0-1ubuntu3_i386.deb Size: 12868 MD5sum: 0c44ac49713564b4a2a4a84c66286a44 SHA1: 22cb1b585b780f17b83a81c89df2faca6a6bed1f SHA256: 2515fd3fca44d4a0602ea81571b25d7efc2585113d835a40e6eda8b28dc5b4e0 Description: Python Imaging Library - ImageTk Module (debug extension) Description-md5: 6e66fe1fd66cbdce6623bfe718d8bb25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pisock Priority: extra Section: python Installed-Size: 267 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: i386 Source: pilot-link Version: 0.12.5-6ubuntu2 Replaces: pilot-link (<< 0.9.3-1), pilot-link-python Provides: python2.7-pisock Depends: libc6 (>= 2.4), libpisock9, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-pisock-dbg Conflicts: pilot-link-python Filename: pool/main/p/pilot-link/python-pisock_0.12.5-6ubuntu2_i386.deb Size: 47286 MD5sum: ea1da0b373f3025ac9d1018ed90eaf4c SHA1: f8d515361745a0f1234300c0cef2f5333ffae23c SHA256: ad52092426e4be65a0a5d9136ff5a76f62bbb3ee8213c2597fcf4561a79b0883 Description: Python module to communicate with PalmOS PDA Homepage: http://www.pilot-link.org/ Python-Version: 2.7 Description-md5: 362187f75271df4d9ddc5a7e1605ff85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pisock-dbg Priority: extra Section: python Installed-Size: 588 Maintainer: Ubuntu Developers Original-Maintainer: Ludovic Rousseau Architecture: i386 Source: pilot-link Version: 0.12.5-6ubuntu2 Depends: python-pisock (= 0.12.5-6ubuntu2), python-dbg, libc6 (>= 2.4), libpisock9 Filename: pool/main/p/pilot-link/python-pisock-dbg_0.12.5-6ubuntu2_i386.deb Size: 271892 MD5sum: f538e9555aa116c5c058bdacf740bf3b SHA1: 190fb885fce4fbca989d1e655124bf4d461392ef SHA256: b9cb96cf51074f4f15896db50ef18a926d0488ef814c9636a91bafe2305bd241 Description: Python module to communicate with PalmOS PDA (debug extension) Homepage: http://www.pilot-link.org/ Description-md5: d834190fbb67772bbb1d7ac37421b1a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-piston-mini-client Priority: extra Section: python Installed-Size: 115 Maintainer: Michael Vogt Architecture: all Source: piston-mini-client Version: 0.7.5-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-oauthlib, python-httplib2 Filename: pool/main/p/piston-mini-client/python-piston-mini-client_0.7.5-0ubuntu2_all.deb Size: 18572 MD5sum: aae43cc4c7d4fe0a639f1d7ce6f6f1bd SHA1: c45a15bf701b062dcf13c8f8331cfe456791528a SHA256: 201f91d34b93dd369678adaa6fe80ed5106b5e10329eca3ecca5279ff41c0616 Description: library for writing clients for Django's Piston REST APIs Homepage: https://launchpad.net/piston-mini-client Description-md5: 85967fffc8dbca36ac23a6ee0b868976 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-pkg-resources Priority: optional Section: python Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-setuptools Version: 3.3-1ubuntu1 Provides: python2.7-setuptools Depends: python:any (>= 2.7), python:any (<< 2.8) Suggests: python-distribute, python-distribute-doc Conflicts: python-setuptools (<< 0.6c8-3) Filename: pool/main/p/python-setuptools/python-pkg-resources_3.3-1ubuntu1_all.deb Size: 61858 MD5sum: 405401d8abf835f703bd6499a5f9788a SHA1: 6c8968564791369dfc236a3f6f00459a212da53d SHA256: cf6e8f4484035468eae046e10476f0b24b1fc7c9958410a322e958947c6d0441 Description: Package Discovery and Resource Access using pkg_resources Homepage: https://pypi.python.org/pypi/setuptools Python-Version: 2.7 Description-md5: 455aab7092c23bbca0a002df43ba97e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-plist Priority: optional Section: python Installed-Size: 186 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Source: libplist Version: 1.10-1 Depends: libc6 (>= 2.4), libplist1 (>= 1.10), libpython2.7 (>= 2.7), python (>= 2.7), python (<< 2.8) Filename: pool/main/libp/libplist/python-plist_1.10-1_i386.deb Size: 47506 MD5sum: 0200993492e08d07cce2c6abdc9fce04 SHA1: 9786059db953a704507f4215a2af32fd950824c6 SHA256: 34b4c6537af9da01fdd8b4c3dec67e2f3f86ccc1cf89e841e026dadebd442c0a Description: Library for handling Apple binary and XML property lists Homepage: http://www.libimobiledevice.org/ Description-md5: bef13a9e9dc74918b23aab45bad28c87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ply Priority: optional Section: python Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Fontaine Architecture: all Source: ply Version: 3.4-3ubuntu2 Provides: python-ply-lex-3.2, python-ply-yacc-3.2, python2.7-ply Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-ply-doc, python-pkg-resources Filename: pool/main/p/ply/python-ply_3.4-3ubuntu2_all.deb Size: 48148 MD5sum: 780d4d20630869b23007bd41bd5dc98e SHA1: 295448d67fcef338d95eb947158eaf82e49c7c30 SHA256: 5f15bb5e2a8115a31e708a30435f485f544d098e08a14e070ccb98fba9f362f9 Description: Lex and Yacc implementation for Python2 Homepage: http://www.dabeaz.com/ply/ Description-md5: ddbdacd0971bf7aaecde3faf56c83ece Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-ply-doc Priority: optional Section: doc Installed-Size: 341 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Fontaine Architecture: all Source: ply Version: 3.4-3ubuntu2 Filename: pool/main/p/ply/python-ply-doc_3.4-3ubuntu2_all.deb Size: 64398 MD5sum: 193c920a6ca7768a0940412a46891a5d SHA1: ecae76d201f384c0ef5fd039649ee7f13bb8e35d SHA256: 11f0c2b2112786d9ac383e0dac0accb939220519c3d5502688f7ed73d2ec9ff1 Description: Lex and Yacc implementation for Python (documentation) Homepage: http://www.dabeaz.com/ply/ Description-md5: 6dc842e888d420c8213e50ee22191125 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pocketsphinx Priority: optional Section: python Installed-Size: 126 Maintainer: Ubuntu Developers Architecture: i386 Source: pocketsphinx Version: 0.8.0+real-0ubuntu6 Provides: python2.7-pocketsphinx Depends: python-sphinxbase, python (>= 2.7), python (<< 2.8), libc6 (>= 2.3.6-6~), libpocketsphinx1, libsphinxbase1 (>= 0.4.1) Filename: pool/main/p/pocketsphinx/python-pocketsphinx_0.8.0+real-0ubuntu6_i386.deb Size: 25636 MD5sum: 8b71f55c8cfde1df36b46765772757aa SHA1: 27e6ddd16c966873ee51b4a0223ad4a615f5e241 SHA256: a1fb8e33d0bcc5b971d41f52feb56e14ff6075a463208ca60a5bb903a3a7b45b Description: lightweight speech recognition - Python module Python-Version: 2.7 Description-md5: 6d5af34738e0908ed2edba3c7472e77c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pocketsphinx-dbg Priority: extra Section: debug Installed-Size: 243 Maintainer: Ubuntu Developers Architecture: i386 Source: pocketsphinx Version: 0.8.0+real-0ubuntu6 Provides: python2.7-pocketsphinx-dbg Depends: python-dbg (>= 2.7), python-pocketsphinx, python-dbg (<< 2.8), libc6 (>= 2.4), libpocketsphinx1, libsphinxbase1 (>= 0.4.1) Filename: pool/main/p/pocketsphinx/python-pocketsphinx-dbg_0.8.0+real-0ubuntu6_i386.deb Size: 49060 MD5sum: c3a950144872c3112038994b6d8536db SHA1: 33d2276d8c6e90c2bec7d814e45b6825b6e9d4f1 SHA256: 65319ed8aba8958bfa660609486cf7b7fdc87f36c5aa2f549299d039f4dd674d Description: lightweight speech recognition - Python module (debug version) Python-Version: 2.7 Description-md5: e079a60df3891b65840de73025dea7ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-polib-doc Priority: optional Section: doc Installed-Size: 420 Maintainer: Ubuntu Developers Original-Maintainer: Angel Abad Architecture: all Source: polib Version: 1.0.4-1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/polib/python-polib-doc_1.0.4-1_all.deb Size: 43964 MD5sum: fca5ca9765392ba3b108ecbb8318a69c SHA1: 6dd1c7edbd1da0f6bc3f105da571e5f6e878e5b9 SHA256: 9b28ac785761d1eada1e4a71dd110af1a3b970af9872ff990e5d1afaa9a5cac1 Description: Python library to parse and manage gettext catalogs (documentation) Homepage: http://bitbucket.org/izi/polib/src/ Description-md5: de1ed6c67676ca73bdb6f0cc354c086a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-prettytable Priority: optional Section: python Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: prettytable Version: 0.7.2-2ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/prettytable/python-prettytable_0.7.2-2ubuntu2_all.deb Size: 19966 MD5sum: 1532d286ecad16204509eca1e97b8c37 SHA1: 33cc54e8d0af75473307170e038f5ca250e86fef SHA256: 36292c9775ef4bb1a292655d73f2a3eb1fc7a83b874598b4b084cb22c1eef9ba Description: library to represent tabular data in visually appealing ASCII tables Homepage: http://code.google.com/p/prettytable/ Description-md5: 80eced35bbdabf308b1931a4b9c16184 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-problem-report Priority: optional Section: python Installed-Size: 173 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/a/apport/python-problem-report_2.14.1-0ubuntu3_all.deb Size: 9010 MD5sum: 8fa45abc4d528073ac85e6e7fab85797 SHA1: 1cb4cc228282cdef8a1c171e4c817d1de0714041 SHA256: 5d55bafd0a7c3f71916551abe80b82788a68cc07bc4e6323f1bdd970c01192bb Description: Python library to handle problem reports Homepage: https://wiki.ubuntu.com/Apport Description-md5: 06dbdefca60b63fb6c44c8daf9a9cc5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-psutil Priority: optional Section: python Installed-Size: 287 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Version: 1.2.1-1ubuntu2 Depends: libc6 (>= 2.13), python (<< 2.8), python (>= 2.7~), python:any (>= 2.7.5-5~) Filename: pool/main/p/python-psutil/python-psutil_1.2.1-1ubuntu2_i386.deb Size: 50190 MD5sum: a04337ef4ce85cbf37441e2e3fbc625b SHA1: e14cb5db1f3f64dc2b6f5fe8b3a0aa908a563cc6 SHA256: 47566897a12d3ab5382439b857ff0b0a897fb9b0616072a4c4d501ee0061ca8b Description: module providing convenience functions for managing processes Homepage: http://code.google.com/p/psutil/ Description-md5: 005481275c8fc26b0d2a10ba28345971 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, lubuntu-desktop Package: python-psycopg2 Priority: optional Section: python Installed-Size: 584 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: i386 Source: psycopg2 Version: 2.4.5-1build5 Provides: python2.7-psycopg2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libpq5 (>= 8.3~) Recommends: python-egenix-mxdatetime Suggests: python-psycopg2-doc Filename: pool/main/p/psycopg2/python-psycopg2_2.4.5-1build5_i386.deb Size: 123370 MD5sum: 06ba6bc6fb306843858b6e97d582122f SHA1: 8d14a9d14a8716dab46b4fa1e380d33357c8c3dc SHA256: 42be0059bbf5373ae0240b39e27fbacc50b8362e5595d1c28716b886523446a8 Description: Python module for PostgreSQL Homepage: http://initd.org/projects/psycopg Description-md5: 650e03ba7ee7667206bfd25f2bcc4ca1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-psycopg2-dbg Priority: extra Section: python Installed-Size: 928 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: i386 Source: psycopg2 Version: 2.4.5-1build5 Depends: python-psycopg2 (= 2.4.5-1build5), python-dbg, libc6 (>= 2.4), libpq5 (>= 8.3~) Filename: pool/main/p/psycopg2/python-psycopg2-dbg_2.4.5-1build5_i386.deb Size: 207102 MD5sum: 870876ea0c71a33932b148e7677f932d SHA1: e765322bd3c441fa318dd5e40d29cc2e4a1f9f6e SHA256: 3e75926547412b898abca92b56a670d813e1ed0556f8f7c7385249d68b582e5a Description: Python module for PostgreSQL (debug extension) Homepage: http://initd.org/projects/psycopg Description-md5: 037c0e31fdde99d342525f6508caa218 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-psycopg2-doc Priority: optional Section: doc Installed-Size: 871 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: all Source: psycopg2 Version: 2.4.5-1build5 Replaces: python-psycopg2-docs Depends: libjs-sphinxdoc (>= 1.0) Suggests: python-psycopg2 | python3-psycopg2 Breaks: python-psycopg2-docs Filename: pool/main/p/psycopg2/python-psycopg2-doc_2.4.5-1build5_all.deb Size: 174390 MD5sum: aefa7689d1d60fcebf64feb5629113ad SHA1: 07f47f4bda3475d400eebff74e25dc50cafcd6dd SHA256: 81c562660071eabd567ad718b01897b8df55fed20f09cdf09865ee4ed2428d19 Description: Python module for PostgreSQL (documentation package) Homepage: http://initd.org/projects/psycopg Description-md5: 75a33aa58c41b3f3843830b2298edba0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-py Priority: optional Section: python Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: codespeak-lib Version: 1.4.20-1 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~), python-pkg-resources Suggests: subversion, python-pytest, python-pytest-xdist Filename: pool/main/c/codespeak-lib/python-py_1.4.20-1_all.deb Size: 62396 MD5sum: 4d5e6663953cb28ddb6b7a2e4f44f93f SHA1: 9b27f0f64bf4114f03b862e9e21a02907c52d689 SHA256: 8e52c8e7b266fcc2d7f866fe6a6c52f3038fb21fddd15018567c9d3d6697c555 Description: Advanced Python development support library (Python 2) Homepage: https://bitbucket.org/hpk42/py Description-md5: 23ae525bcd8a7343e68f18cd0b6565ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyao Priority: optional Section: python Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: pyao Version: 0.82-5build1 Provides: python2.7-pyao Depends: python2.7, python (>= 2.7), python (<< 2.8), libao4 (>= 1.1.0), libc6 (>= 2.3.6-6~) Filename: pool/main/p/pyao/python-pyao_0.82-5build1_i386.deb Size: 9304 MD5sum: b65849a77b9e1e040cc6824bf14e8c92 SHA1: 1c0cecd3d7b942a4193340defa9d4138b11732d0 SHA256: 2a1ba7c18cba532825a1b0de55d48c656024537f007685e38f0c2ea5c2c538d4 Description: Python interface to the Audio Output library Description-md5: 475304eb3a482ea291ecd03b5b46bc61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyao-dbg Priority: extra Section: python Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: pyao Version: 0.82-5build1 Depends: python2.7-dbg, python-dbg (>= 2.7), python-dbg (<< 2.8), libao4 (>= 1.1.0), libc6 (>= 2.3.6-6~), python-pyao (= 0.82-5build1) Filename: pool/main/p/pyao/python-pyao-dbg_0.82-5build1_i386.deb Size: 22794 MD5sum: abc63ebf7e71a727993ebb97470ecb36 SHA1: fb98501769efa11e1a82c8cfab09265ac4fe25ac SHA256: b6919ab9a650ba5b29264d8d3e8258ae3aa3fb4a73f209c2eaa22c28c34ff2b9 Description: Python interface to the Audio Output library - debug symbols Description-md5: c05afb7caffff4b5385332ae2c2365f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyasn1 Priority: optional Section: python Installed-Size: 349 Maintainer: Ubuntu Developers Original-Maintainer: Jan Lübbe Architecture: all Source: pyasn1 Version: 0.1.7-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: doc-base Filename: pool/main/p/pyasn1/python-pyasn1_0.1.7-1ubuntu2_all.deb Size: 44250 MD5sum: 34840f47ca2ea766262d8759cfa54d79 SHA1: dc11ab9094dcb9315214c9df78500275dd33464b SHA256: 8f37a8a1259eec7e6a16126a1ccb2379bbed6e3447ead62bd94355435b12e107 Description: ASN.1 library for Python (Python 2 module) Homepage: http://pyasn1.sourceforge.net/ Description-md5: 2f29894451af55e9caa9faee8c6cb009 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pycadf Priority: optional Section: python Installed-Size: 291 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.4.1-0ubuntu1 Depends: python-babel, python-iso8601, python-netaddr, python-oslo.config, python-oslo.messaging, python-six, python-tz, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-webob Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-pycadf/python-pycadf_0.4.1-0ubuntu1_all.deb Size: 43246 MD5sum: 70617d61b55011010aabdfe2fdbc1278 SHA1: 52825d6885888da221df92599d86c0ec02c5d3f6 SHA256: 22150f9211afc23c1532cae0e297aac3c9a0d6961049b0f58d4c4236ded6baa7 Description: implementation of DMTF Cloud Audit (CADF) data model Homepage: https://launchpad.net/pycadf Description-md5: 92001637ac744808ab7410408a4b1682 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pycountry Priority: extra Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: David Paleino Architecture: all Source: pycountry Version: 0.14.1+ds1-3build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), iso-codes, python-lxml Filename: pool/main/p/pycountry/python-pycountry_0.14.1+ds1-3build1_all.deb Size: 10130 MD5sum: 3aef67e2c6aac653ece3e6762fbe9ce3 SHA1: 5da560aa3b92176b288abd21343ac1d64de05572 SHA256: 19dd0f8fc008f1b58d8de5fc9ab681510aaa645cd63f22937c6277ba930f2ebe Description: ISO databases accessible from Python Homepage: http://pypi.python.org/pypi/pycountry/ Description-md5: d365c23ab98012ebedbd865a166d9ea1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pycurl Priority: extra Section: python Installed-Size: 209 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pycurl Version: 7.19.3-0ubuntu3 Depends: libc6 (>= 2.15), libcurl3-gnutls (>= 7.35.0), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: libcurl4-gnutls-dev, python-pycurl-dbg Filename: pool/main/p/pycurl/python-pycurl_7.19.3-0ubuntu3_i386.deb Size: 46944 MD5sum: 349b801250c47dc793e83111d239b8aa SHA1: a4fcdb966c9b85b8111e20ac6a2e654a76edefa3 SHA256: 53d2d3e0d147172042efc84d9213d6b59eee3df650bec308dd2e9e3c7a459614 Description: Python bindings to libcurl Homepage: http://pycurl.sourceforge.net Description-md5: f822d5d106abe9d060d264b7845d00d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-pycurl-dbg Priority: extra Section: python Installed-Size: 335 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pycurl Version: 7.19.3-0ubuntu3 Depends: libc6 (>= 2.3.6-6~), libcurl3-gnutls (>= 7.35.0), python-dbg, python-pycurl (= 7.19.3-0ubuntu3) Filename: pool/main/p/pycurl/python-pycurl-dbg_7.19.3-0ubuntu3_i386.deb Size: 86184 MD5sum: 50e845468b0e1e57e6608afd0456257f SHA1: 3fefc02c958959c47a6b868075eca6ce8fa63c6d SHA256: 844db8a23bc9f1607d1f6c4a1d5e3396f9456a8bec1314feaafa8f7c948ea064 Description: Python bindings to libcurl (debug extension) Homepage: http://pycurl.sourceforge.net Description-md5: b536823e8923968d76ec7bcb5185a285 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pygments Priority: optional Section: python Installed-Size: 2800 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pygments Version: 1.6+dfsg-1ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-chardet, python-pkg-resources Suggests: ttf-bitstream-vera Filename: pool/main/p/pygments/python-pygments_1.6+dfsg-1ubuntu1_all.deb Size: 519292 MD5sum: 30fe5926501152cd9f334676175e701e SHA1: 632b427d6c7543c0833c99947aa10fc04f9d9708 SHA256: a71b4c72f2733f4bb34f9a4607553590ae8cb993c91098704c837f8ff8bad994 Description: syntax highlighting package written in Python Homepage: http://pygments.org/ Description-md5: f1bca78dffbd44d76ff7ad2062c8e190 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-pygresql Priority: optional Section: python Installed-Size: 354 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: pygresql Version: 1:4.0-3build3 Replaces: python2.3-pygresql, python2.4-pygresql Provides: python-pg, python2.7-pygresql Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-egenix-mxdatetime, libc6 (>= 2.4), libpq5 Suggests: python-pygresql-dbg Conflicts: python2.3-pygresql, python2.4-pygresql Filename: pool/main/p/pygresql/python-pygresql_4.0-3build3_i386.deb Size: 73798 MD5sum: 6603651ba2da3e6bd4896ebb35d75ca5 SHA1: 0cc926e6f33bfac6713f4283a3392911f83519c3 SHA256: 2020c6b76f20c3cabf688c9e0a8dc60e44bc6cb48af73264d736b6223af29654 Description: PostgreSQL module for Python Python-Version: 2.7 Description-md5: c31d3a6c55e6c4d42f9bbe13fadc0781 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pygresql-dbg Priority: extra Section: python Installed-Size: 256 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: pygresql Version: 1:4.0-3build3 Provides: python-pg Depends: python-pygresql (= 1:4.0-3build3), python-dbg, libc6 (>= 2.4), libpq5, python-egenix-mxdatetime-dbg Filename: pool/main/p/pygresql/python-pygresql-dbg_4.0-3build3_i386.deb Size: 62624 MD5sum: f7fcf4aa08d15053be373fd4ba73694e SHA1: 6f930f9b8e36ae0858d1ec04e62d73ce14817c8d SHA256: 0f2a2f2800eb0d42bb7d13772cd2acfbd25383ff984d3e81c74aace1d9d35bd5 Description: PostgreSQL module for Python (debug extension) Description-md5: 746e1addc644e26cdf9991f57c5aec07 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyicu Priority: optional Section: python Installed-Size: 597 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyicu Version: 1.5-2ubuntu4 Provides: python2.7-pyicu Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/pyicu/python-pyicu_1.5-2ubuntu4_i386.deb Size: 145524 MD5sum: a7405a6286aa58247c4f914404a8b7c7 SHA1: f9f36b3bcecf5eda61f2c3e71777842ff185be78 SHA256: 37e7046c49923e43448cc39b9bc48591266d9f4227cde4b1fc68fc054f7a2916 Description: Python extension wrapping the ICU C++ API Homepage: http://pyicu.osafoundation.org/ Description-md5: d77c11be7925395ec589e0dd37d0dfca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-pyicu-dbg Priority: extra Section: python Installed-Size: 2392 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyicu Version: 1.5-2ubuntu4 Provides: python2.7-pyicu-dbg Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1), python-dbg (>= 2.7), python-dbg (<< 2.8), python-pyicu (= 1.5-2ubuntu4) Filename: pool/main/p/pyicu/python-pyicu-dbg_1.5-2ubuntu4_i386.deb Size: 561250 MD5sum: 4d1dbee3d07ae7a3e16f89b096d25c71 SHA1: e5c835624d6f808ebac0401998b1d3dedeee9dce SHA256: b3e4125b8b6bf420aa89054fa7da50b2b6e3e389d2712551ed7f4e3c97536e01 Description: Python extension wrapping the ICU C++ API (debug extension) Homepage: http://pyicu.osafoundation.org/ Description-md5: 6e867ee6d24f8a0027bd9ebb793971c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyinotify Priority: optional Section: python Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Source: pyinotify Version: 0.9.4-1build1 Provides: python2.7-pyinotify Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-pyinotify-doc Filename: pool/main/p/pyinotify/python-pyinotify_0.9.4-1build1_all.deb Size: 24500 MD5sum: e8769aea55a94fe0562f7c5fc160f883 SHA1: a4e05b5fbec8bacc70c855724d9e642b732ae1d8 SHA256: c1377cdaa7eafde4b1af10efb794d99606dd9b0a416285be29a4fc088fa1eb48 Description: simple Linux inotify Python bindings Homepage: https://github.com/seb-m/pyinotify Description-md5: c2b7fd3e6aeb95e26caf9093a06d13a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyinotify-doc Priority: optional Section: python Installed-Size: 1285 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Source: pyinotify Version: 0.9.4-1build1 Recommends: python-pyinotify, python3-pyinotify Filename: pool/main/p/pyinotify/python-pyinotify-doc_0.9.4-1build1_all.deb Size: 89444 MD5sum: 87bcfb6f983c0a0aabbed3395423506f SHA1: 24b0179a899c2ecc6e2ba863665a23f4ab11fd94 SHA256: 486d584c63791cecb8465546b18e6c287007bc4f6e52bb58600419bf49ca7427 Description: simple Linux inotify Python bindings -- documentation Homepage: https://github.com/seb-m/pyinotify Description-md5: 3b057e8d096b104d6d585cbb9e9bb391 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pylibacl Priority: optional Section: python Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: i386 Version: 0.5.1-1.1build4 Provides: python2.7-pylibacl Depends: python (>= 2.7), python (<< 2.8), libacl1 (>= 2.2.51-8), libc6 (>= 2.3.6-6~), libjs-sphinxdoc (>= 1.0) Suggests: python-pylibacl-dbg Filename: pool/main/p/python-pylibacl/python-pylibacl_0.5.1-1.1build4_i386.deb Size: 35864 MD5sum: 0a916d34d236e21372320216bacfed45 SHA1: df3f74e75cb6e6822ccbccb31e1290ee7be9343b SHA256: 1f5d302bd0beeae2e1a014ce1416e58af50144692d628f08d37bcc841f3bcdbe Description: module for manipulating POSIX.1e ACLs Homepage: http://pylibacl.k1024.org/ Description-md5: 83c7591d8120b30015bfa4151169a6e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pylibacl-dbg Priority: extra Section: python Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: i386 Source: python-pylibacl Version: 0.5.1-1.1build4 Depends: python-pylibacl (= 0.5.1-1.1build4), python-dbg, libacl1 (>= 2.2.51-8), libc6 (>= 2.3.6-6~) Filename: pool/main/p/python-pylibacl/python-pylibacl-dbg_0.5.1-1.1build4_i386.deb Size: 30640 MD5sum: 2e46e9ead0ef3fd82a316b3565c96144 SHA1: c93b6cd16ce3172d71af2bef89c9347452b07c62 SHA256: 2e1e61a7a1a4a1cb2cdd22b777c392ce300afe9492fc03028675997db4fe1098 Description: module for manipulating POSIX.1e ACLs (debug extension) Homepage: http://pylibacl.k1024.org/ Description-md5: f0922d048a66c0da034ef438b0a6620c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pymongo Priority: optional Section: python Installed-Size: 466 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: i386 Source: pymongo Version: 2.6.3-1build1 Provides: python2.7-pymongo Depends: python-bson (= 2.6.3-1build1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-gridfs (>= 2.6.3-1build1), python-pymongo-ext Filename: pool/main/p/pymongo/python-pymongo_2.6.3-1build1_i386.deb Size: 73630 MD5sum: 4f18c8da0f0682f41ff725add5863d7d SHA1: 0058e2acd2e3f6cf4006dbd7746b7ac4bac1e751 SHA256: 2f35fdccececea0a25d5a0de6379ff3c76100826a94628b35dc47d312b40e682 Description: Python interface to the MongoDB document-oriented database Homepage: http://api.mongodb.org/python/ Description-md5: 0b1ed7838a37434fed39e622e41112f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pymongo-doc Priority: optional Section: doc Installed-Size: 2516 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: all Source: pymongo Version: 2.6.3-1build1 Depends: libjs-jquery, libjs-underscore Filename: pool/main/p/pymongo/python-pymongo-doc_2.6.3-1build1_all.deb Size: 915050 MD5sum: 73f83d9a0dc9404eb99e76f9fec40710 SHA1: bd6e8d11fc4aafb784f1a99158844bbed0725db7 SHA256: 096c23bb49d0f82a4fc1225ab0856dad9461adb74068bfcb029c137e7f1386a8 Description: Python interface to the MongoDB document-oriented database (documentation) Homepage: http://api.mongodb.org/python/ Description-md5: fbd62f485ddf85b5deaef066e9d02ec6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pymongo-ext Priority: optional Section: python Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: i386 Source: pymongo Version: 2.6.3-1build1 Provides: python2.7-pymongo-ext Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.3.6-6~), python-bson (= 2.6.3-1build1), python-pymongo (= 2.6.3-1build1) Recommends: python-gridfs (>= 2.6.3-1build1) Filename: pool/main/p/pymongo/python-pymongo-ext_2.6.3-1build1_i386.deb Size: 8584 MD5sum: ca69cac146569ca2cdc3b74070f720fb SHA1: a7f123a50473aa46caa284bf492b3f62503ca62c SHA256: 75e81615249f623fca5c8744a49c9a46d78c3c84bb3546e419eb91755e6acf55 Description: C-coded extension to the python-pymongo package Homepage: http://api.mongodb.org/python/ Description-md5: 136aead8416b732e3ca0303bea791e72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyorbit Priority: optional Section: python Installed-Size: 171 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: i386 Source: pyorbit Version: 2.24.0-6ubuntu4 Replaces: python2.3-pyorbit, python2.4-pyorbit Provides: python2.7-pyorbit Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.24.0), liborbit-2-0 (>= 1:2.14.10), liborbit2 (>= 1:2.14.10) Suggests: python-pyorbit-dbg Conflicts: python2.3-pyorbit, python2.4-pyorbit Filename: pool/main/p/pyorbit/python-pyorbit_2.24.0-6ubuntu4_i386.deb Size: 55886 MD5sum: c673c3bd6c47606795aea48e2560b395 SHA1: afd5b1d17bac4c9fface89d6efae26163e20378a SHA256: 955090536842f81881ff47a853765f649d9bedf1b445eecd23e8ed2d6da94f80 Description: A Python language binding for the ORBit2 CORBA implementation Python-Version: 2.7 Description-md5: d5c249f8c652963e79fbe1fcc9af2905 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-photography Package: python-pyorbit-dbg Priority: extra Section: python Installed-Size: 597 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: i386 Source: pyorbit Version: 2.24.0-6ubuntu4 Depends: python-pyorbit (= 2.24.0-6ubuntu4), python-dbg, libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.24.0), liborbit-2-0 (>= 1:2.14.10), liborbit2 (>= 1:2.14.10) Filename: pool/main/p/pyorbit/python-pyorbit-dbg_2.24.0-6ubuntu4_i386.deb Size: 123388 MD5sum: 73354e2d660b8967f002b053d078a948 SHA1: 306c02ee4e1fe5928ddf6b317a3e5779a0906b66 SHA256: 64514f6b02bde52cd0b55a157d055c2f758d8588b46de8efc5d0f6a8f495347a Description: Python bindings for ORBit2 CORBA (debug extension) Description-md5: edcf2016073adb3f8ebc84b94e9dedfd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyorbit-dev Priority: optional Section: python Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Sebastien Bacher Architecture: all Source: pyorbit Version: 2.24.0-6ubuntu4 Depends: python-pyorbit (>= 2.24.0-6ubuntu4), liborbit2-dev (>= 1:2.12) Filename: pool/main/p/pyorbit/python-pyorbit-dev_2.24.0-6ubuntu4_all.deb Size: 4258 MD5sum: 1bd94480a3004c9cab2061081cdcec9b SHA1: 99c39576bd2e227b6e0781eb2eb9624ed26426ea SHA256: 3afd1b79077cbb7c8e64f06684fd5d32844d1ae54455ae178361729fe0ad5ded Description: PyORBit: development files Description-md5: 04a3d0273a274ebfe125a0d4b5dfb438 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyparsing Priority: optional Section: python Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Kevin Coyner Architecture: all Source: pyparsing Version: 2.0.1+dfsg1-1build1 Provides: python2.7-pyparsing Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/pyparsing/python-pyparsing_2.0.1+dfsg1-1build1_all.deb Size: 34316 MD5sum: 33831b0b33cd23bd2266f6f19dac2817 SHA1: 3116eacb714e9a3befabadb280734e5061a5f15a SHA256: f3e8afff2b645bb07274c10a4ee36dbaefde9be22696b888b3dbafcd3c45774b Description: Python parsing module Homepage: http://pyparsing.wikispaces.com/ Description-md5: b2c4beff5c2bd4cd6e8adac270b245cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video Package: python-pyparsing-doc Priority: optional Section: doc Installed-Size: 993 Maintainer: Ubuntu Developers Original-Maintainer: Kevin Coyner Architecture: all Source: pyparsing Version: 2.0.1+dfsg1-1build1 Filename: pool/main/p/pyparsing/python-pyparsing-doc_2.0.1+dfsg1-1build1_all.deb Size: 420598 MD5sum: 613cda74f3af2cbd5275f7a9fca56440 SHA1: 0f7602e65a486b610007dd60f0928debfa1eebef SHA256: 286da84b930b78ad25dc7839cb5b20e989269458a358a3ea6cf12264b0cde76c Description: Python parsing module, documentation package Homepage: http://pyparsing.wikispaces.com/ Description-md5: 1b796850388b572dc1f26dce91d07102 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyrex Priority: optional Section: python Installed-Size: 973 Maintainer: Ubuntu Developers Original-Maintainer: Paul Brossier Architecture: all Source: pyrex Version: 0.9.8.5-2ubuntu3 Provides: python2.7-pyrex Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-dev Recommends: python-all-dev Filename: pool/main/p/pyrex/python-pyrex_0.9.8.5-2ubuntu3_all.deb Size: 180782 MD5sum: 305c9d16cb5a37e8a7ebcc23655f51b7 SHA1: 7f30baf5fd4693bf48d2b59e924285105d9c72bc SHA256: c09360b8176c48d23acb4395cd6e20d6ce74c2293075507e625189a1486e7ae3 Description: compile native-code modules for Python from Python-like syntax Homepage: http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/ Python-Version: all Description-md5: f30a366ffc9290ab0cfbeb95f04e9a31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyruntest Priority: optional Section: python Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Martin Mrazik Architecture: all Source: pyruntest Version: 0.1+13.10.20130702-0ubuntu3 Depends: python-testtools, python (>= 2.7), python (<< 2.8) Filename: pool/main/p/pyruntest/python-pyruntest_0.1+13.10.20130702-0ubuntu3_all.deb Size: 6042 MD5sum: 73a109aac32ba14e492f3e8d5c3f5a57 SHA1: dbeb381e6f5d4cc5d7f7fb39ef49b488d881daf3 SHA256: fa054be6861dab0e0061c548c21ccec423cb635e88370ca823516a5f99ab4900 Description: Simple python test-runner Homepage: https://launchpad.net Description-md5: 0fc9f678382a67aacde93c19228dbe53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pytest Priority: optional Section: python Installed-Size: 471 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pytest Version: 2.5.1-1 Replaces: python-py (<< 1.4) Depends: python-pkg-resources, python-py (>= 1.4.19), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-mock (>= 1.0.1) Breaks: python-py (<< 1.4) Filename: pool/main/p/pytest/python-pytest_2.5.1-1_all.deb Size: 94230 MD5sum: 1abcaa7beb3fa4659398333dd4439195 SHA1: 50403039053594c546d1744f85e5fc1467bf042d SHA256: 87a2386658b9c84fef4aa38a5557cd7496b3c66f09973566000d371dcde04c00 Description: Simple, powerful testing in Python Homepage: http://pytest.org/ Description-md5: 914ea2542a4efad13187a05480185e62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pytest-doc Priority: optional Section: doc Installed-Size: 2528 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pytest Version: 2.5.1-1 Depends: libjs-sphinxdoc (>= 1.0) Recommends: python-pytest | python3-pytest Filename: pool/main/p/pytest/python-pytest-doc_2.5.1-1_all.deb Size: 349754 MD5sum: 04fef3f3ec3a43805612e3657dcb5691 SHA1: 02c2117ca7f62bddf059d28aad87584a819adcd2 SHA256: dd21c230147a4d6e34a5c2e102453dce6816cd04bdca4230d3ce1bcae0288583 Description: Simple, powerful testing in Python - Documentation Homepage: http://pytest.org/ Description-md5: 97b336e965878efc4451d01f87777140 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pytyrant Priority: optional Section: python Installed-Size: 54 Maintainer: Ubuntu Developers Original-Maintainer: David Watson Architecture: i386 Version: 1.1.17-1ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-pytyrant/python-pytyrant_1.1.17-1ubuntu2_i386.deb Size: 6532 MD5sum: 125e3d667f31feee297bfc506d79bb1c SHA1: 8c9dc75f397aeda1f00548d3129c070e7b44be79 SHA256: b2840783040c90ffdb93645d5e8514d1ad2031496f79c2e07572b7ef8e6fd71a Description: Pure Python client implementation of the Tokyo Tyrant protocol Homepage: http://code.google.com/p/pytyrant/ Description-md5: 0ca6f6b5f0b549d5a574a6c9e5e90478 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyudev Priority: optional Section: python Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyudev Version: 0.16.1-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libudev1 Suggests: python-gobject, python-qt4, python-pyside.qtcore Filename: pool/main/p/pyudev/python-pyudev_0.16.1-2build1_all.deb Size: 29310 MD5sum: aced3d41b8f67254be2681d31d4a4ca3 SHA1: 59aa5e1b848dd729f128568776d988ef76ed2f3d SHA256: 2b4284306873a87ed50156a66c74e37525bf6bbd491c40fd50ab27949957e214 Description: Python bindings for libudev Homepage: http://pyudev.readthedocs.org/ Description-md5: d5320fab83c623af64edac1e1ea66c82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyvorbis Priority: optional Section: python Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyvorbis Version: 1.5-2ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python-ogg, libc6 (>= 2.4), libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libvorbisfile3 (>= 1.1.2) Suggests: python-pyvorbis-dbg Filename: pool/main/p/pyvorbis/python-pyvorbis_1.5-2ubuntu2_i386.deb Size: 26376 MD5sum: c2e3f99af83c9431f572f47529c00a50 SHA1: 3ba3430d3b55591446c8aceb3c37ef25af8a82a3 SHA256: d18039de371580ba849851d77f06618826017def1d951b30b1f90236777f0d9c Description: Python interface to the Ogg Vorbis library Homepage: http://ekyo.nerim.net/software/pyogg/index.html Description-md5: 0b06c60a01ec044ef12ec30a6e5144f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyvorbis-dbg Priority: extra Section: python Installed-Size: 285 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyvorbis Version: 1.5-2ubuntu2 Depends: python-pyvorbis (= 1.5-2ubuntu2), python-dbg, python-ogg-dbg, libc6 (>= 2.4), libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libvorbisfile3 (>= 1.1.2) Filename: pool/main/p/pyvorbis/python-pyvorbis-dbg_1.5-2ubuntu2_i386.deb Size: 69386 MD5sum: 190c35e643760881425be64af1634da5 SHA1: 953ff5e68105bd9f5b1c9dce07aa81b37923de55 SHA256: 1497f364ce99d13a043ce600b054330cb3cbc33f56a2743e024c63d6056d6404 Description: Python interface to the Ogg Vorbis library (debug extension) Homepage: http://ekyo.nerim.net/software/pyogg/index.html Description-md5: ddb8386e441af0000f62801f3398efed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-pyxattr Priority: optional Section: python Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: i386 Version: 0.5.1-1.1build4 Provides: python2.7-pyxattr Depends: python (>= 2.7), python (<< 2.8), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.3.6-6~), libjs-sphinxdoc (>= 1.0) Suggests: python-pyxattr-dbg Filename: pool/main/p/python-pyxattr/python-pyxattr_0.5.1-1.1build4_i386.deb Size: 28478 MD5sum: 1cbf4dd91ffe95a4727da7d775b4ae01 SHA1: 19f5f2c02d3e7bbe74f604a6b69460d708a076a7 SHA256: 03a4dc92e75fd4a1e5d01d1d338aaea078c0a4d43604edb6491a8c5223d2f3c5 Description: module for manipulating filesystem extended attributes Homepage: http://pyxattr.k1024.org/ Description-md5: 74af652e9ebba1a51cd95e4367b32290 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-pyxattr-dbg Priority: extra Section: python Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: i386 Source: python-pyxattr Version: 0.5.1-1.1build4 Provides: python2.7-pyxattr-dbg Depends: python-pyxattr (= 0.5.1-1.1build4), python-dbg (>= 2.7), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.3.6-6~), python-dbg (<< 2.8) Filename: pool/main/p/python-pyxattr/python-pyxattr-dbg_0.5.1-1.1build4_i386.deb Size: 24478 MD5sum: e480c01d65adf3cc499f1dc1c3818a0b SHA1: f70b01034debfea4356a465d8922c568c860de20 SHA256: c6fcc6505d8fc267d20080a495fada0f72f7071436a3c88c578b491d9e8851e9 Description: module for manipulating filesystem extended attributes (debug extension) Homepage: http://pyxattr.k1024.org/ Description-md5: 7815d2a01ac5d6bbfb80d681c0a67325 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4 Priority: optional Section: python Installed-Size: 12726 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Version: 4.10.4+dfsg-1ubuntu1 Replaces: python-qt4-dev (<< 4.4.4-3~) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3), libgcc1 (>= 1:4.1.1), libpython2.7 (>= 2.7), libqt4-dbus (>= 4:4.8.0-1~), libqt4-declarative (>= 4:4.8.0-1~), libqt4-designer (>= 4:4.8.0-1~), libqt4-help (>= 4:4.8.0-1~), libqt4-network (>= 4:4.8.0-1~), libqt4-script (>= 4:4.8.0-1~), libqt4-scripttools (>= 4:4.8.0-1~), libqt4-svg (>= 4:4.8.0-1~), libqt4-test (>= 4:4.8.0-1~), libqt4-xml (>= 4:4.8.0-1~), libqt4-xmlpatterns (>= 4:4.8.0-1~), libqtassistantclient4 (>= 4.6.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libqtwebkit4, libstdc++6 (>= 4.1.1), sip-api-11.0 Suggests: python-qt4-dbg Breaks: python-kde4 (<= 4:4.6.80-3+b1), python-qscintilla2 (<= 2.5.1-1), python-qt4-dbg (<< 4.8.3-3), python-qt4-gl (<< 4.8.3-3), python-qt4-gl-dbg (<< 4.8.3-3), python-qt4-phonon (<< 4.8.3-3), python-qt4-phonon-dbg (<< 4.8.3-3), python-qt4-sql (<< 4.8.3-3), python-qt4-sql-dbg (<< 4.8.3-3), python-qwt3d-qt4 (<< 0.1.7~cvs20090625-7), python-qwt5-qt4 (<= 5.2.1~cvs20091107+dfsg-6), python-sip4 (<< 4.13.1~) Filename: pool/main/p/python-qt4/python-qt4_4.10.4+dfsg-1ubuntu1_i386.deb Size: 2782198 MD5sum: 74d104f9cb8c73f46b752a83679aee6b SHA1: 3f8630b8943c7401ffe383727fe8cc45b1eceebb SHA256: dfc72f376ffdb80843fa973cd5db9857df15f3fe8ef25f82b75aef551816f9af Description: Python bindings for Qt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 671df1a7daf3241a9aeec23c8cd8df00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-audio Package: python-qt4-dbg Priority: extra Section: python Installed-Size: 95176 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-dbg, python-qt4 (= 4.10.4+dfsg-1ubuntu1), python-sip-dbg, libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8.0-1~), libqt4-declarative (>= 4:4.8.0-1~), libqt4-designer (>= 4:4.8.0-1~), libqt4-help (>= 4:4.8.0-1~), libqt4-network (>= 4:4.8.0-1~), libqt4-script (>= 4:4.8.0-1~), libqt4-scripttools (>= 4:4.8.0-1~), libqt4-svg (>= 4:4.8.0-1~), libqt4-test (>= 4:4.8.0-1~), libqt4-xml (>= 4:4.8.0-1~), libqt4-xmlpatterns (>= 4:4.8.0-1~), libqtassistantclient4 (>= 4.6.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libqtwebkit4, libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python-qt4-dbg_4.10.4+dfsg-1ubuntu1_i386.deb Size: 34377470 MD5sum: ee566a73ef9b01857e139e978a86a476 SHA1: b3e68cbdeea26b83df0e12479f71bc09a6dc4898 SHA256: e5d2c170883d97f17881848a0ec9c8cd090618dd578f0163c0b3c19970e0d42a Description: Python bindings for Qt4 (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 1a449f7aa20b32c9759aad5ae4f95a31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-dbus Priority: optional Section: python Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-dbus (>= 0.84.0-2~), python (>= 2.7), python (<< 2.8), libc6 (>= 2.1.3), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python-qt4-dbus_4.10.4+dfsg-1ubuntu1_i386.deb Size: 16252 MD5sum: c664d8ef546503548ea95595b2679312 SHA1: 6dd98a3cff20670ade7db22f7534b5f75a7fc1e9 SHA256: 2189563fe260137b333c0e251553e7f1dff45a3cca4f4655509b90e16b86a644 Description: D-Bus Support for PyQt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: c00e98235f2f3f966d6c514fa47a57a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntustudio-audio Package: python-qt4-dbus-dbg Priority: extra Section: python Installed-Size: 587 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-dbg, python-dbus-dbg, python-qt4-dbus (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.1.3), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python-qt4-dbus-dbg_4.10.4+dfsg-1ubuntu1_i386.deb Size: 175416 MD5sum: cab2a0ded3947d62c911461113f13ada SHA1: 75d991837a4fe3da6b9827b68aedc5ece6adfe53 SHA256: 351ca5cc2c7f64dd9a3c45ef662dd2093cec8bade7f518a06fe19d39b3c68a82 Description: D-Bus Support for PyQt4 (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 4fb4bda37c87433a33762e7999ca5235 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-dev Priority: optional Section: python Installed-Size: 2599 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-sip-dev Filename: pool/main/p/python-qt4/python-qt4-dev_4.10.4+dfsg-1ubuntu1_all.deb Size: 259482 MD5sum: 544cae8fe2d81572ad920f007169a9f9 SHA1: c189eab1eaa4e242648f3c8ff960ae90d60caaec SHA256: 2bee7dfed2b854d00bdae268ef31c269730c1b8e0a38c5a09f59db8b93351529 Description: Development files for PyQt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 6f107e5ef432c4e6a88c534b4cb50262 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-doc Priority: optional Section: doc Installed-Size: 29737 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Suggests: qt4-doc Filename: pool/main/p/python-qt4/python-qt4-doc_4.10.4+dfsg-1ubuntu1_all.deb Size: 8776982 MD5sum: 10ef6dca1e515a3a7af3822280df70cb SHA1: e5a7ab398cbc1c5952e91fc581f9849ebfea045a SHA256: a0b094489e5a17fff38d4e15e5496f746965465ffa235eb93c302e0dde63935f Description: Documentation and examples for PyQt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: a681d18ec7e241f57a35445765dfd4e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-phonon Priority: optional Section: python Installed-Size: 420 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-qt4 (= 4.10.4+dfsg-1ubuntu1), python (>= 2.7), python (<< 2.8), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libphonon4 (>= 4:4.6.0really4.4.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1), phonon Filename: pool/main/p/python-qt4/python-qt4-phonon_4.10.4+dfsg-1ubuntu1_i386.deb Size: 89840 MD5sum: 34ac48c95b2db877ce3b65b67940a849 SHA1: bf8bb370db1ef60f88c060e6937ebfce55904284 SHA256: c07396aba5dd1682d6669b496457ede294a29eaf59d8b55bc79bc14686c6f8cc Description: Python bindings for Phonon Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: e8fb21a39d897294832e29111ca6493f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-phonon-dbg Priority: extra Section: python Installed-Size: 5093 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-dbg, python-qt4-dbg (= 4.10.4+dfsg-1ubuntu1), python-qt4-phonon (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libphonon4 (>= 4:4.6.0really4.4.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1), phonon Filename: pool/main/p/python-qt4/python-qt4-phonon-dbg_4.10.4+dfsg-1ubuntu1_i386.deb Size: 1896860 MD5sum: 837aef5306b66ca8612c4fc63fa62bec SHA1: 96872e61164d5112863b856b2c1075aa726b8171 SHA256: 45476ec05936a5780ef0ec30a67a6171ab655515b82203bd6321d1650e1f3278 Description: Python bindings for Phonon (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 64e4caa1683be61a0031951b869a5b9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-qt4-sql Priority: optional Section: python Installed-Size: 365 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-qt4 (= 4.10.4+dfsg-1ubuntu1), python (>= 2.7), python (<< 2.8), libgcc1 (>= 1:4.1.1), libqt4-sql (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python-qt4-sql_4.10.4+dfsg-1ubuntu1_i386.deb Size: 81790 MD5sum: 629e9f204565361fc58f37428f1978bf SHA1: 17d9d35373acb3cfb3229cc02e8525d6fb357055 SHA256: 6d510fe609e6d1305d8171fafab3ba49f5400ebeecacfbfbc7e7c79338ee3f6e Description: Python bindings for PyQt4's SQL module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 57a5a11a071cfb552dfae3d56f2460d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: python-qt4-sql-dbg Priority: extra Section: python Installed-Size: 3682 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python-dbg, python-qt4-dbg (= 4.10.4+dfsg-1ubuntu1), python-qt4-sql (= 4.10.4+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt4-sql (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python-qt4-sql-dbg_4.10.4+dfsg-1ubuntu1_i386.deb Size: 1394256 MD5sum: d5c3b79ea863ba277311b30e699899bb SHA1: 389cdeee9067d75a81b436e8ae39dbfecf02707b SHA256: 61833848d7d166f9c4d9555cce14fde8d979de3b21cd3e7ac3f698a5a40dbd99 Description: Python bindings for PyQt4's SQL module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 15f219ff4fcaf2e79c7e45adbe60f19a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-quantumclient Priority: extra Section: python Installed-Size: 28 Maintainer: Ubuntu Developers Original-Maintainer: Chuck Short Architecture: all Source: python-neutronclient Version: 1:2.3.4-0ubuntu1 Depends: python-neutronclient Filename: pool/main/p/python-neutronclient/python-quantumclient_2.3.4-0ubuntu1_all.deb Size: 1890 MD5sum: 338aaf3710f6beaf664b7982f0d753bd SHA1: 1ce31c972fe1bc55d09eb4d08a08d9cb114709a8 SHA256: a0aa38c51522f97fd8d3460f40f250db13858d2a138a34e7a3112e8845631d8d Description: transitional dummy package Homepage: http://launchpad.net/python-quantumclient Description-md5: 1f317b04f78374dba7d1e14def0b7f80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-rdflib Priority: optional Section: python Installed-Size: 1160 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: rdflib Version: 2.4.2-3build1 Provides: python2.7-rdflib Depends: libc6 (>= 2.3.6-6~), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources Filename: pool/main/r/rdflib/python-rdflib_2.4.2-3build1_i386.deb Size: 189996 MD5sum: 8984aa275ce8e79ad7302a8dd41ef157 SHA1: 9bbe7b788502f27767a5f15ca97de0c5d5707ba3 SHA256: f656186e1b5cbad04f8f019a5cefdbb6277801c10c8c176d36fddbe62e9e3e52 Description: RDF library containing an RDF triple store and RDF/XML parser/serializer Homepage: http://rdflib.net/ Description-md5: 29636d2a255f4b77d00a17d77e68c68f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-recaptcha Priority: optional Section: python Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Vincent Bernat Architecture: all Version: 1.0.6-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-crypto Filename: pool/main/p/python-recaptcha/python-recaptcha_1.0.6-1build1_all.deb Size: 6516 MD5sum: 2a2d5d19deb58cddf8286ab9403657d8 SHA1: 31f9ef3fbb2019e1b222c47521121a07f2d8488e SHA256: b945bfad2c376abb411aa7bbd32e8d65763cae0b6844e59f6c989c326a02c5b2 Description: client library for reCAPTCHA and Mailhide Homepage: http://pypi.python.org/pypi/recaptcha-client Description-md5: 35847511a50728c263cafd429bf16c74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-redis Priority: optional Section: python Installed-Size: 149 Maintainer: Ubuntu Developers Original-Maintainer: Chris Lamb Architecture: all Version: 2.7.2-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-redis/python-redis_2.7.2-1build1_all.deb Size: 26436 MD5sum: b8d3fa1b8dbd6bcf21280b9ef5c5cdc6 SHA1: 3a94e08d2e3cd3cad841d3bf92c4e680c87597b1 SHA256: 713c53c909e75aab3005951acb4466ef263dbe8515123b0400178542263c96a7 Description: Persistent key-value database with network interface (Python library) Homepage: http://github.com/andymccurdy/redis-py/ Description-md5: 36af2573ced324890f46c8ff3b4a841c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-renderpm Priority: optional Section: python Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-reportlab Version: 3.0-1build1 Provides: python2.7-renderpm Depends: python (>= 2.7), python (<< 2.8), libart-2.0-2 (>= 2.3.17), libc6 (>= 2.4), libfreetype6 (>= 2.2.1) Suggests: python-renderpm-dbg Filename: pool/main/p/python-reportlab/python-renderpm_3.0-1build1_i386.deb Size: 31872 MD5sum: 7b6b0e3a5df2986953e85d4ad5ddd1d6 SHA1: 18f17db71adabe3aa921d65f1ca7b0deda20b6ad SHA256: 6c38ab92886ff24f046dddd5a991f45cee28e4af554846da4d855e7e8f6dbbbc Description: python low level render interface Python-Version: 2.7 Description-md5: f69778da55c6c96c3d31560659245a79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-reportlab Priority: optional Section: python Installed-Size: 2325 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Version: 3.0-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-reportlab-accel (>= 3.0-1build1) Recommends: python-renderpm, python-pil Suggests: pdf-viewer, python-egenix-mxtexttools (>= 2.0.6-3.1), python-reportlab-doc Filename: pool/main/p/python-reportlab/python-reportlab_3.0-1build1_all.deb Size: 449026 MD5sum: fd371c301ae7a2a5743371d82e394b0b SHA1: e7cd95440b0e6f0c9b80ecf32e367d12eab23b74 SHA256: 0eca25c7b2bf44a5a2325e7692720016cc1c4bb139b14e49971404392fa7aa2e Description: ReportLab library to create PDF documents using Python Python-Version: 2.7 Description-md5: 873a1862f0132d9ec6634cf606e556ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-reportlab-accel Priority: optional Section: python Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-reportlab Version: 3.0-1build1 Provides: python2.7-reportlab-accel Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.4) Filename: pool/main/p/python-reportlab/python-reportlab-accel_3.0-1build1_i386.deb Size: 21886 MD5sum: aa069f40e98543ec40af59c62e1a04b4 SHA1: 29acc1979ac9e091c7a30f830c0a88d4049ebea1 SHA256: cea68b74a7f36a10b2269ee7195ebebf204b5a788c9d43973ed8fee68c06b557 Description: C coded extension accelerator for the ReportLab Toolkit Python-Version: 2.7 Description-md5: 3a2f3d264cea475a3a1ee612a69fb526 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-reportlab-doc Priority: optional Section: doc Installed-Size: 1029 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-reportlab Version: 3.0-1build1 Depends: libjs-sphinxdoc (>= 1.0) Suggests: python-reportlab Filename: pool/main/p/python-reportlab/python-reportlab-doc_3.0-1build1_all.deb Size: 600024 MD5sum: e0a14bdc01e92bd51ec90bb6ac04f294 SHA1: 957ab37106eb6688c4463284f711749c94b2fe8f SHA256: a4711a642ff7ad25d2c6e1280f9a81c27c59f2b3e0e200a01553bbe45bcdcf45 Description: Documentation for the ReportLab Python library (PDF format) Description-md5: a28fbc5b165c18d2b3a2fa8b8da01533 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-repoze.lru Priority: extra Section: python Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.6-4 Provides: python2.7-repoze.lru Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-repoze.lru/python-repoze.lru_0.6-4_all.deb Size: 11268 MD5sum: ec42d32ed67499bf97f2843b4b667b7e SHA1: 15a5c7a2e9d9a22badca837eb6901065763ac860 SHA256: 0b3d62c77f8b352e20186aa666ad6c83bdf097fc54ddf09f46b78d63176a5260 Description: tiny LRU cache implementation and decorator Homepage: http://www.repoze.org/ Description-md5: bd0f6bd06160290543180e3ecc9bcec8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-requestbuilder Priority: optional Section: python Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.1.0~beta2-1build1 Depends: python-requests, python-six, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-requestbuilder/python-requestbuilder_0.1.0~beta2-1build1_all.deb Size: 25394 MD5sum: 4f995a3bea20ed1fc3d71ba56be31773 SHA1: b0ceed7e898eaf20827c215fa77482c0d992d62b SHA256: 0449f708f1651625696c7891138aec7ef03aa4eaaa00106b7d9e92399cd8ba6b Description: command line-driven HTTP request builder Homepage: https://pypi.python.org/pypi/requestbuilder Description-md5: 0d1879769310e338b6054c2352d7b7d2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-requests Priority: optional Section: python Installed-Size: 207 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: requests Version: 2.2.1-1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), ca-certificates, python-chardet, python-urllib3 (>= 1.7.1) Filename: pool/main/r/requests/python-requests_2.2.1-1_all.deb Size: 42450 MD5sum: 2bc58cb556ca29a12b14af4e16607b91 SHA1: 60a83cc18f7b6ebb3e841de9917d847ee9676868 SHA256: 9f648e541ec2602988c5aeaea94afd761b3f2fc378130e35ef68cccb478e00f7 Description: elegant and simple HTTP library for Python, built for human beings Homepage: http://python-requests.org Description-md5: f6eaa344f8d0e79d3f0df5efe34a37bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-gnome-desktop Package: python-roman Priority: optional Section: python Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Andrea Colangelo Architecture: all Version: 2.0.0-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-roman/python-roman_2.0.0-1_all.deb Size: 7758 MD5sum: 42ddb3020c581af10d1d608d66d4c3e6 SHA1: dad676608f15643aad10b162c2affc1ba1b8f0bf SHA256: e74d0322cd4dde3d3f02454bc77b2d776ef15c1b1af3a39b2ddad43e91e32afd Description: module for generating/analyzing Roman numerals for Python 2 Homepage: http://pypi.python.org/pypi/roman/ Description-md5: 0c888324b96636a57132cb7e90495993 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-routes Priority: optional Section: python Installed-Size: 506 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: routes Version: 2.0-1build1 Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~), python-repoze.lru, libjs-sphinxdoc (>= 1.0), python-pkg-resources Recommends: python-webob Suggests: python-paste Filename: pool/main/r/routes/python-routes_2.0-1build1_all.deb Size: 76580 MD5sum: 93a7d9dd3af53796899a461c4cb2261e SHA1: 5aa0c7c07cca5eeac5620b572b4180b164959292 SHA256: 609e8d083a63b79e3f4fcfcf3e502cbb05aa079b532f0c518609480128bb5a26 Description: Routing Recognition and Generation Tools Homepage: http://routes.groovie.org/ Description-md5: 45abc514e189963c194e67064297bc3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-rrdtool Priority: optional Section: python Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: i386 Source: rrdtool Version: 1.4.7-2ubuntu5 Replaces: python-rrd (<< 1.2.26), python2.3-rrd, python2.4-rrd Provides: python-rrd, python2.7-rrdtool Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.3.6-6~), librrd4 (>= 1.4~rc2) Conflicts: python-rrd (<< 1.2.26), python2.3-rrd, python2.4-rrd Filename: pool/main/r/rrdtool/python-rrdtool_1.4.7-2ubuntu5_i386.deb Size: 11574 MD5sum: 354fa517a0cb8861d861399825eee868 SHA1: dbc6b2fc6e5179c21cf5cedad2b3e10e608d21d3 SHA256: da124147680f7eb01cc5e98904d94bc25c05a4e61c975f013eb57b132c0e44d2 Description: time-series data storage and display system (Python interface) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: aecf78342ca0b88d5c1c141fd6c15cee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-rsvg Priority: optional Section: python Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: gnome-python-desktop Version: 2.32.0+dfsg-3 Replaces: python-gnome2-desktop (<< 2.24.0-2) Depends: libc6 (>= 2.1.3), libglib2.0-0 (>= 2.12.0), librsvg2-2 (>= 2.14.4), python (>= 2.7), python (<< 2.8), librsvg2-common, python-gtk2 Filename: pool/main/g/gnome-python-desktop/python-rsvg_2.32.0+dfsg-3_i386.deb Size: 13724 MD5sum: 945c9ebf71260dd68a24a49ed0973df4 SHA1: fec6b53f63937b57d8b58a9e4cc6b46f5525821d SHA256: 60b3f07e44310f884a23751a2880bba08976d7f429ef7fc7e7eab4e79c4def1d Description: Python bindings for the RSVG library Description-md5: dd16e74b34161e51756e3374aa6aa834 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-samba Priority: optional Section: python Installed-Size: 6111 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Provides: python2.7-samba Depends: python-ldb (>= 1.1.2~), python-tdb, python-ntdb, python-crypto, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libattr1 (>= 1:2.4.46-8), libbsd0 (>= 0.0), libc6 (>= 2.8), libldb1 (>= 0.9.21), libpython2.7 (>= 2.7), libtalloc2 (>= 2.0.4~git20101213), libtevent0 (>= 0.9.16), python-talloc (>= 2.0.6), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Filename: pool/main/s/samba/python-samba_4.1.6+dfsg-1ubuntu2_i386.deb Size: 831526 MD5sum: a350a10e21bd752a4289e6a17106af78 SHA1: 388b72d30ce7eb4879483425b103f6b3fca9258b SHA256: 0f6f8009cbfe4b7c5c6fec3b7a8020e945cc02f499f1b05e6cf5b168a0a35d2d Description: Python bindings for Samba Homepage: http://www.samba.org Description-md5: 9c51d571670972e097fd3f060aa1902b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-sane Priority: optional Section: python Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-sane (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-sane, python2.7-sane Depends: python-pil (= 2.3.0-1ubuntu3), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libsane (>= 1.0.11-3) Recommends: python-tk (>= 2.5.2-1.1) Suggests: python-pil-doc, python-sane-dbg Breaks: python-imaging-sane (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-sane_2.3.0-1ubuntu3_i386.deb Size: 18040 MD5sum: 260a2753af0b2da71e57a733ac99dfdc SHA1: c20358ad4e4ea4c2c2186cf306dab0be0a2d66ea SHA256: 192c6ab313923d5be7362d9dd32f5f0bb2e94be1f1141b4b8e62e422456a05ec Description: Python Imaging Library - SANE interface (Pillow fork) Description-md5: fbcc8db3171f2e013add0fe42dbd0c29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sane-dbg Priority: extra Section: debug Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python-imaging-sane-dbg (<< 1.1.7+2.0.0-1.1) Provides: python-imaging-sane-dbg Depends: python-sane (= 2.3.0-1ubuntu3), python-pil-dbg (= 2.3.0-1ubuntu3), python-dbg, libc6 (>= 2.4), libsane (>= 1.0.11-3) Breaks: python-imaging-sane-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python-sane-dbg_2.3.0-1ubuntu3_i386.deb Size: 28038 MD5sum: eccda2df8cf3f88512e734c30109bf09 SHA1: 3dfa05784c90b03a54651ccaafa97ff8f9d680ae SHA256: 9df9cebd730a81de17e46596bce704fd665328d0c50cfbb002a8c123c73dc466 Description: Python Imaging Library - SANE interface (debug extension) Description-md5: a9b08fb48accde55c0a7db31d33c5b9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-scgi Priority: optional Section: web Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Neil Schemenauer Architecture: i386 Source: scgi Version: 1.13-1.1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4) Filename: pool/main/s/scgi/python-scgi_1.13-1.1build1_i386.deb Size: 18502 MD5sum: a51c2fc3293781a2ac3e4aeeb7627fe9 SHA1: 74ef19821412cad7d81dd5a84f2bb8ac0def1d46 SHA256: 5f8c6e933a849038020dcf740b298d1fc4dae7616d75a0036a4201fdb185abb8 Description: Server-side implementation of the SCGI protocol Homepage: http://python.ca/scgi/ Description-md5: f9262ffaf98f5a73ab962ebe4ceb2440 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-scour Priority: optional Section: python Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: all Source: scour Version: 0.26-3build1 Depends: python (>= 2.6), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-rsvg, python-cairo Filename: pool/main/s/scour/python-scour_0.26-3build1_all.deb Size: 40512 MD5sum: 92ba87009348de2e2953dd75dccc67ee SHA1: f42d993f04450a278d9b98cde1caf575cc164907 SHA256: 05a3b06e103214890230ac343551f978675f7efd9258ab591068e2d6e886702c Description: SVG scrubber and optimizer Homepage: http://codedread.com/scour/ Description-md5: 054ddc9b48c7ae0399c1ae1fcbad37cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-scripttest Priority: optional Section: python Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.2-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-scripttest/python-scripttest_1.2-1build1_all.deb Size: 8880 MD5sum: bdf8dbc43e9237d2d8158676c1b81b33 SHA1: 20693bfd3c62449ae8382cd1545e1f738f1bcf9b SHA256: e4a2a500daada38ce51c52bdd454c45a53e64fa4e9af9ef276b2758b3ff8989b Description: Helper to test command-line scripts - python 2.x Homepage: http://pythonpaste.org/scripttest/ Description-md5: 546718ccb0f158580733e39b5a76caf9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-seamicroclient Priority: optional Section: python Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.2.0-0ubuntu1 Depends: python-babel (>= 1.3), python-iso8601 (>= 0.1.8), python-pbr (>= 0.5.21), python-prettytable, python-requests (>= 1.1), python-simplejson, python-six (>= 1.4.1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-seamicroclient/python-seamicroclient_0.2.0-0ubuntu1_all.deb Size: 27194 MD5sum: cd27fb4005eb5925c94dfe6f850b08b6 SHA1: 609377128b7b4656badd093e645aa19d97d09401 SHA256: 9a90547c1808bb21ce406b92a541cfb201c2a62f86eb844a886519935901c8f7 Description: Client library for Seamicro chassis API - Python 2.x Homepage: https://github.com/seamicro/python-seamicroclient Description-md5: ab50595b275e131577b730399acf0fba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-secretstorage Priority: optional Section: python Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Shachnev Architecture: all Version: 2.0.0-1ubuntu1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python-crypto, python-dbus, dbus Recommends: python-gi Suggests: gnome-keyring (>= 2.30), python-secretstorage-doc Filename: pool/main/p/python-secretstorage/python-secretstorage_2.0.0-1ubuntu1_all.deb Size: 11536 MD5sum: ba9dd22a6201e3ee393a68a380d5da90 SHA1: d11b5f30a22f481400d9423fc4ee9ea69e7e946b SHA256: d7c86d2382b65ad6f1095d6c1530309b34905a0a75312561cede546d510c0043 Description: Python module for storing secrets - Python 2.x version Homepage: https://github.com/mitya57/secretstorage Description-md5: 4b6fe9cb2bafc2b3c1224945493800bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-secretstorage-doc Priority: optional Section: doc Installed-Size: 284 Maintainer: Ubuntu Developers Original-Maintainer: Dmitry Shachnev Architecture: all Source: python-secretstorage Version: 2.0.0-1ubuntu1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/python-secretstorage/python-secretstorage-doc_2.0.0-1ubuntu1_all.deb Size: 32934 MD5sum: 02b0e9f7e6e620226a53d583955935c2 SHA1: 4f0250bf48f7c8bdb647af8ccac31e95fdc37fbe SHA256: 1839e7d75e9d17181e05a307f22f2ab83b042ee7393f9f55c1cd0706a3402dd2 Description: Python module for storing secrets - documentation Homepage: https://github.com/mitya57/secretstorage Description-md5: b6692af773c10403d434b0690fcba0ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-serial Priority: optional Section: python Installed-Size: 403 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pyserial Version: 2.6-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-wxgtk2.8 | python-wxgtk Filename: pool/main/p/pyserial/python-serial_2.6-1build1_all.deb Size: 60088 MD5sum: 815adaf14f9c402d2d0507b1d99e7d71 SHA1: 3a50e7684599ebec9a9fb0f43401de1854cae012 SHA256: 1e59105706561e82493d4032761e9c83ec650cbfb80223266ec44cc42d88ec7e Description: pyserial - module encapsulating access for the serial port Homepage: http://pyserial.sourceforge.net/ Python-Version: 2.7 Description-md5: 4dab91c4e71dab549f66bda57e2ecc69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-setuptools Priority: optional Section: python Installed-Size: 811 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Version: 3.3-1ubuntu1 Replaces: python-distribute (<< 0.6.6) Provides: python-distribute, python2.7-setuptools Depends: python:any (>= 2.7), python:any (<< 2.8), python-pkg-resources (= 3.3-1ubuntu1) Conflicts: python-distribute (<< 0.7) Filename: pool/main/p/python-setuptools/python-setuptools_3.3-1ubuntu1_all.deb Size: 230110 MD5sum: 96cc818890d36f1eddc7be31009eaeb9 SHA1: 88915fa79f8acf3d14613639d1d256e6ddb2b2fe SHA256: ec474f0b8578ce3105f508969118ef1caedf18072ea1d0c892915fe6af6bbb52 Description: Python Distutils Enhancements (setuptools compatibility) Homepage: https://pypi.python.org/pypi/setuptools Python-Version: 2.7 Description-md5: 10593235b859c0d693cf7c942ee945db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-setuptools-doc Priority: optional Section: doc Installed-Size: 1117 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-setuptools Version: 3.3-1ubuntu1 Replaces: python-distribute-doc Depends: libjs-jquery Conflicts: python-distribute-doc Filename: pool/main/p/python-setuptools/python-setuptools-doc_3.3-1ubuntu1_all.deb Size: 174116 MD5sum: a7f590d2393260b9e965d4dccf55efde SHA1: 76e39b0f6751f11854a4a9dfa360b209a59b8657 SHA256: 0d2f31d788a9e4ddab18af351e3819724a2aab2b6f01fb8909b71701c6ceeb88 Description: Python Distutils Enhancements (based on distribute), documentation Homepage: https://pypi.python.org/pypi/setuptools Description-md5: a1319b71c3413070a24296f7458b8aac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-setuptools-git Priority: optional Section: python Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: all Version: 1.0b1-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-setuptools, git Filename: pool/main/p/python-setuptools-git/python-setuptools-git_1.0b1-0ubuntu3_all.deb Size: 10302 MD5sum: 265ac64522246d769ba84ac8fdb3fdc5 SHA1: c0804212a2acfe83c180408a4cf73fc41cf344e8 SHA256: f88e7f7c92692df9e78bd7559d584bcb3ea08eb9d81456ba35ad681409e59c84 Description: plugin for setuptools that enables git integration Description-md5: be7c25037bf7f507986f0cc3efab7095 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-simplegeneric Priority: extra Section: python Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: simplegeneric Version: 0.8.1-1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/s/simplegeneric/python-simplegeneric_0.8.1-1_all.deb Size: 11506 MD5sum: fc5b6db5f33a90082b89507dab83dd20 SHA1: 1f16987458f3dae01bfc0845796004bf81b83038 SHA256: afd060abedd3660bc3c6c3adf10d73572ba7803797f084b39747b7b9c8c48cf1 Description: simple generic functions for Python Homepage: http://pypi.python.org/pypi/simplegeneric Description-md5: 7c11e5fff1d97237836650aae1493ff0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-simplejson Priority: optional Section: python Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: simplejson Version: 3.3.1-1ubuntu6 Provides: python2.7-simplejson Depends: python (<< 2.8), python (>= 2.7~), python:any (>= 2.7.5-5~), libc6 (>= 2.3.6-6~) Recommends: libjs-jquery Filename: pool/main/s/simplejson/python-simplejson_3.3.1-1ubuntu6_i386.deb Size: 53790 MD5sum: 1d59a148f8de573dfe198626601925c6 SHA1: 5179beebad57c4feacf6c06f0c32da62671d8480 SHA256: 1d36028dc5a4a6a8a47033f135e29898b70f1486ad1a700edeb7e31d379a1f5a Description: simple, fast, extensible JSON encoder/decoder for Python Homepage: http://undefined.org/python/#simplejson Description-md5: ef92533371a7980efc9c1bcc6e19bbe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-simplejson-dbg Priority: extra Section: debug Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: simplejson Version: 3.3.1-1ubuntu6 Depends: python-simplejson (= 3.3.1-1ubuntu6), libc6 (>= 2.3.6-6~), python-dbg (>= 2.7~), python-dbg (<< 2.8) Filename: pool/main/s/simplejson/python-simplejson-dbg_3.3.1-1ubuntu6_i386.deb Size: 20488 MD5sum: 3b12cbc17268500205326d7ff7963f03 SHA1: 9392f3249d7732b888193fbcf23b3c8cf7d9f91c SHA256: 629d74f15dc035149c8fb87f18a7036754457c9b6d6930f6873e9f35e6c61e8b Description: JSON encoder and decoder for python-dbg Homepage: http://undefined.org/python/#simplejson Description-md5: d9d5bb7a545b1bd3d86fcaa714ad2f53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-simplejson-doc Priority: optional Section: python Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: simplejson Version: 3.3.1-1ubuntu6 Depends: libjs-sphinxdoc (>= 1.0) Recommends: python-simplejson Conflicts: python-simplejson (<= 3) Filename: pool/main/s/simplejson/python-simplejson-doc_3.3.1-1ubuntu6_all.deb Size: 31324 MD5sum: 2377ced60d49abaae07623fa6d65007d SHA1: 12d1b35c93d3baf24ed88f21058baf412a45dbfc SHA256: a2f95bf3cdba4cd41a5f5591585303855dab77ba46895d83afe8b164313c3b72 Description: documentation for the simplejson Python library Homepage: http://undefined.org/python/#simplejson Description-md5: c353ba4b41aaf1141a9cf0e33eba0dd9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-simplestreams Priority: extra Section: python Installed-Size: 143 Maintainer: Ubuntu Developers Architecture: all Source: simplestreams Version: 0.1.0~bzr341-0ubuntu1 Depends: gnupg, python-boto, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-requests (>= 1.1) Filename: pool/main/s/simplestreams/python-simplestreams_0.1.0~bzr341-0ubuntu1_all.deb Size: 22534 MD5sum: 777b5d63314c15e377f604d1414cb6ef SHA1: a91bb175220b6b0661af209fd279fb25dcf9ca5e SHA256: 6fa16e66607d9ccd3b2662a388770da61cad7451e1d4a849fe22c736992200c3 Description: Library and tools for using Simple Streams data Homepage: http://launchpad.net/simplestreams Description-md5: de3939aceef20133cbe2ba7bbb1b7f43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-simpletal Priority: optional Section: python Installed-Size: 247 Maintainer: Ubuntu Developers Original-Maintainer: Igor Stroh Architecture: all Source: simpletal Version: 4.1-7ubuntu1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/s/simpletal/python-simpletal_4.1-7ubuntu1_all.deb Size: 42810 MD5sum: b8e882e03be7ae512abc073f84fcfc60 SHA1: 3fed9018da3e8c09b0d27f4934b58f43aa96a3ad SHA256: fc2fc39141f21318fbc7b2f2d3d49b88ade73dbd68cbe91ea0331fdd02292b18 Description: Simple TAL, TALES and METAL implementation Homepage: http://www.owlfish.com/software/simpleTAL/ Description-md5: 76747e3c32d8b0cc39105034e0522635 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sip Priority: optional Section: python Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: sip4 Version: 4.15.5-1build1 Provides: sip-api-11.0 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4) Breaks: python-qscintilla (<< 2.7.2), python-qt4 (<< 4.10.2~), python-qwt3d-qt4 (<< 0.1.7~cvs20090625-12~), python-qwt5-qt4 (<< 5.2.1~cvs20091107+dfsg-7~) Filename: pool/main/s/sip4/python-sip_4.15.5-1build1_i386.deb Size: 66766 MD5sum: cc9f3d09bbcf41f40eef2b3d16362682 SHA1: d31f88c0b6f26ee7823c6f9b76f6aee9ed0cf7d6 SHA256: 284265faacd3188da1eabd9b5804605ce5c3f4cd807495423509d74f13f424fd Description: Python/C++ bindings generator runtime library Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: 27c97dead959a9d9b24bd99cbbda9e50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntustudio-audio Package: python-sip-dbg Priority: extra Section: debug Installed-Size: 877 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: sip4 Version: 4.15.5-1build1 Depends: python-sip (= 4.15.5-1build1), python-dbg, libc6 (>= 2.4) Filename: pool/main/s/sip4/python-sip-dbg_4.15.5-1build1_i386.deb Size: 236170 MD5sum: 3eb8dbca5d42bfc7b64f2b50eb42dd0c SHA1: d5ebea30e491b0ec1eb5179fec6e297524562745 SHA256: 58afcdbbbf292dd301296c2d313fe1044f1a1de9bf7bc71a0c1ee0ff8924f8af Description: Python/C++ bindings generator runtime library (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: 25b5c3d39bf289fb92d5e1c0c508c6d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-sip-dev Priority: optional Section: python Installed-Size: 144 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: sip4 Version: 4.15.5-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-sip (= 4.15.5-1build1), sip-dev (= 4.15.5-1build1), python-dev Suggests: python-sip-doc Filename: pool/main/s/sip4/python-sip-dev_4.15.5-1build1_i386.deb Size: 19904 MD5sum: 68fa5c47ae65ba7cf976cb792568cd25 SHA1: 640577c42ba880de1a7061227c37c84b429a0f95 SHA256: 93103ae07578a28f9487ff333b64bcba17218a36b8ec8c9c86f9f918eed2a572 Description: Python/C++ bindings generator development files Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: 43365f4a9613791779e7463d65e464df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-sip-doc Priority: optional Section: doc Installed-Size: 1257 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sip4 Version: 4.15.5-1build1 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/s/sip4/python-sip-doc_4.15.5-1build1_all.deb Size: 147924 MD5sum: e34fa4fbf12f281f58720669c20a193d SHA1: 41f92668caa338711f660ceb5129e7b65489d521 SHA256: b882e1585027b1a3b16784931b8732c1e96ee148ba5b9657cf9e209eb7e0ad8c Description: Python/C++ bindings generator documentation Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: cf27fa6d76cc619a2338fabefb854578 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-six Priority: optional Section: python Installed-Size: 62 Maintainer: Colin Watson Architecture: all Source: six Version: 1.5.2-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/s/six/python-six_1.5.2-1_all.deb Size: 8060 MD5sum: 6e35ef4b997fe89bd1f3870925cafb33 SHA1: 17615bb3e0f53326413b9a8693b3694006d2142c SHA256: a165010694d6c2abfc7550771a7dcd22119f28834093692ce8f6e9037480bfad Description: Python 2 and 3 compatibility library (Python 2 interface) Homepage: http://pythonhosted.org/six/ Description-md5: cfd46d2babaaa95d96b4e170cd5bf348 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-smbc Priority: optional Section: python Installed-Size: 86 Maintainer: Ubuntu Core Developers Architecture: i386 Version: 1.0.14.1-0ubuntu2 Provides: python2.7-smbc Depends: libc6 (>= 2.4), libsmbclient (>= 2:4.0.3+dfsg1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-smbc/python-smbc_1.0.14.1-0ubuntu2_i386.deb Size: 15780 MD5sum: 07a5f996f0abf1254785a6112f34a08a SHA1: 2ac0010010d6d1750d75a8364e8e527de3e4f430 SHA256: 9adac9933b96ae96bc95f4c50a381445b9525dacd24ab958bf68254909af5864 Description: Python bindings for Samba clients (libsmbclient) Homepage: http://cyberelk.net/tim/software/pysmbc/ Description-md5: 9875640aeb83dc17e4618fcadf016ead Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-sphinx Priority: optional Section: python Installed-Size: 1344 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sphinx Version: 1.2.2+dfsg-1ubuntu1 Depends: python:any (<< 2.8), python-pygments (>= 1.2), python:any (>= 2.7.5-5~), python-docutils (>= 0.7), python-jinja2 (>= 2.3), sphinx-common (= 1.2.2+dfsg-1ubuntu1) Recommends: python (>= 2.6) | python-simplejson, python-pil, sphinx-doc Suggests: jsmath, libjs-mathjax, dvipng, texlive-latex-recommended, texlive-latex-extra, texlive-fonts-recommended Filename: pool/main/s/sphinx/python-sphinx_1.2.2+dfsg-1ubuntu1_all.deb Size: 270468 MD5sum: 6403549f8e7660ec1f90785adfb9a82f SHA1: 75e85de1ba0b9dbe3d1224aaa3643f44db67e399 SHA256: e05935524a6b9843fb82894bfb95cdc139e3e04b228108e705d2fad1a126523c Description: documentation generator for Python projects (implemented in Python 2) Homepage: http://sphinx-doc.org/ Description-md5: 28479ed629f0c4f952b4456ae932970e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sphinxbase Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: David Huggins-Daines Architecture: i386 Source: sphinxbase Version: 0.8-0ubuntu10 Provides: python2.7-sphinxbase Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.3.6-6~), libsphinxbase1 (>= 0.8) Filename: pool/main/s/sphinxbase/python-sphinxbase_0.8-0ubuntu10_i386.deb Size: 28630 MD5sum: 87498036812dcd3444afccb093db5088 SHA1: f22aa889ef3f8cfc2b24f46f2e87cca8ab6035d2 SHA256: ba55b90eaffe6eaceec1fabd57f6e3fc81016f95b301341b75af2876146d10c8 Description: Sphinx base libraries - Python module Python-Version: 2.7 Description-md5: 680d9b809f523ad77df5c5b99b814b7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-sphinxbase-dbg Priority: extra Section: debug Installed-Size: 222 Maintainer: Ubuntu Developers Original-Maintainer: David Huggins-Daines Architecture: i386 Source: sphinxbase Version: 0.8-0ubuntu10 Provides: python2.7-sphinxbase-dbg Depends: python-dbg (>= 2.7), python-dbg (<< 2.8), libc6 (>= 2.3.6-6~), libsphinxbase1 (>= 0.8), python-sphinxbase Filename: pool/main/s/sphinxbase/python-sphinxbase-dbg_0.8-0ubuntu10_i386.deb Size: 45818 MD5sum: 03cb66b97de6a08f3ef2d6f4bafb7c5d SHA1: ae44f93f748c1f14f11a2643817fcee34b770cf6 SHA256: 37ceafbafcb7285641e477ce0dc2d6975fd4b7d2c42bd87d17f8a00fa77ed9cb Description: Sphinx base libraries - Python module (debug version) Python-Version: 2.7 Description-md5: 38b488010658a2ef4eb95bf1b50bc1ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-sqlalchemy Priority: optional Section: python Installed-Size: 3136 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: sqlalchemy Version: 0.8.4-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-sqlalchemy-ext Suggests: python-sqlalchemy-doc, python-psycopg2, python-mysqldb (>= 1.2.1-p2-2), python-kinterbasdb (>= 3.1.2-0.3), python-pymssql Filename: pool/main/s/sqlalchemy/python-sqlalchemy_0.8.4-1build1_all.deb Size: 531876 MD5sum: 43e22de1ecdbcc2d4d40b4ab80c07cff SHA1: 9bbc3cdfc4acb248893b36b9f8b3e735b346f565 SHA256: e67916fc7dbb6390b3de0ec2d98507e4f3ce797e8df7a5b91660c914a6c764c0 Description: SQL toolkit and Object Relational Mapper for Python Homepage: http://www.sqlalchemy.org/ Description-md5: 304b4f5d471b523d00f34c7c91faec22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sqlalchemy-doc Priority: optional Section: doc Installed-Size: 10561 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: sqlalchemy Version: 0.8.4-1build1 Depends: libjs-jquery, libjs-underscore Recommends: python-sqlalchemy Conflicts: python-sqlalchemy (<= 0.3.0-1) Filename: pool/main/s/sqlalchemy/python-sqlalchemy-doc_0.8.4-1build1_all.deb Size: 1194026 MD5sum: ccfb5d0898fc52cda1983a276c83d08c SHA1: b7333f01654201a59d1159284d4d732aa02162e7 SHA256: fa893acc59fdc453a6370f8399d8dd8e7079560024f74389e849349a0feebe34 Description: documentation for the SQLAlchemy Python library Homepage: http://www.sqlalchemy.org/ Description-md5: f88c4f903abe01d59444b0fe1adf5a09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-sqlalchemy-ext Priority: optional Section: python Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: i386 Source: sqlalchemy Version: 0.8.4-1build1 Provides: python2.7-sqlalchemy-ext Depends: python-sqlalchemy (= 0.8.4-1build1), python (>= 2.7), python (<< 2.8), libc6 (>= 2.3.6-6~) Filename: pool/main/s/sqlalchemy/python-sqlalchemy-ext_0.8.4-1build1_i386.deb Size: 13032 MD5sum: db00e58d27b644ee39fdb808b7a083d2 SHA1: 27164fbcdaf6ee621a0c6cfd3ca0d7b416996884 SHA256: 9b159d43b10f265ed1c0eaf9245eea04d5f98e86aac3a9097b6a5a3a9c605129 Description: SQL toolkit and Object Relational Mapper for Python - C extension Homepage: http://www.sqlalchemy.org/ Description-md5: 240e00b2e216ae7b235442cc9257db10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sss Priority: extra Section: utils Installed-Size: 275 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Provides: python2.7-sss Depends: libc6 (>= 2.8), libldb1 (>= 0.9.21), libpopt0 (>= 1.14), libpython2.7 (>= 2.7), libselinux1 (>= 1.32), libsemanage1 (>= 2.0.3), libtalloc2 (>= 2.0.4~git20101213), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: sssd Filename: pool/main/s/sssd/python-sss_1.11.5-1ubuntu3_i386.deb Size: 54924 MD5sum: e35015aea5fadc7413c3f56fd1269b8c SHA1: a213c69ce986365dbd3599677d9c6c5adf37dbbb SHA256: 7da8cd0164eadc4288dda671b47ded1ae0f4690ba0bffedae46186ee2f4c6a7c Description: Python module for the System Security Services Daemon Homepage: https://fedorahosted.org/sssd/ Description-md5: ef7b7961a927eb18fec93114606263ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-stevedore Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Julien Danjou Architecture: all Source: stevedore Version: 0.14.1-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/stevedore/python-stevedore_0.14.1-1_all.deb Size: 15088 MD5sum: 2ac09bf53686cf27beca74739d4bd143 SHA1: cb55473398bd4215ad762433d890bf59136a03e3 SHA256: af67f51cc99180ff8c2c23338a6083702aa561dfca7d4b3d35166528475b0568 Description: manage dynamic plugins for Python applications - python2 Homepage: https://github.com/openstack/stevedore Description-md5: 95bd329cc2650f260ea9fb1375525ec5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-stevedore-doc Priority: extra Section: doc Installed-Size: 667 Maintainer: Ubuntu Developers Original-Maintainer: Julien Danjou Architecture: all Source: stevedore Version: 0.14.1-1 Depends: libjs-sphinxdoc (>= 1.0) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/stevedore/python-stevedore-doc_0.14.1-1_all.deb Size: 282372 MD5sum: 91fa05c25b5ed2a7c24bb6f1ef59dc3b SHA1: 366878164ab4c888350d673fcdb65dd3155d8c7d SHA256: b907fe89a208475b92135ca17f7076b3842282ab23005ab1966a3db6bb051e1e Description: manage dynamic plugins for Python applications - doc Homepage: https://github.com/openstack/stevedore Description-md5: 444c57c52cc2da122888805b43a54b1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-subunit Priority: optional Section: python Installed-Size: 381 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: all Source: subunit Version: 0.0.18-0ubuntu7 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-extras, python-testscenarios, python-testtools (>= 0.9.4) Filename: pool/main/s/subunit/python-subunit_0.0.18-0ubuntu7_all.deb Size: 59112 MD5sum: 5df460c79a8c60df252db77a23abd8db SHA1: 68ba2db9e730ff5fbfe04684b92c9d80037ceb0e SHA256: 0e6e7d090995bb55e8c695083fa98700ba0617514e0fb27de6fd2cc78ecd5131 Description: unit testing protocol - Python bindings to generate and consume streams Homepage: http://code.launchpad.net/subunit Description-md5: 067bae5a5ad0a21051df0b8a1696e12e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-subversion Priority: optional Section: python Installed-Size: 3880 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Source: subversion Version: 1.8.8-1ubuntu3 Provides: python2.7-subversion Depends: libapr1 (>= 1.2.7), libc6 (>= 2.4), libsvn1 (>= 1.8), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: multiarch-support Suggests: python-subversion-dbg Breaks: svnmailer (<< 1.0.9) Filename: pool/main/s/subversion/python-subversion_1.8.8-1ubuntu3_i386.deb Size: 461350 MD5sum: ba19e606ceeb5f09f6f54c191ce6a2f2 SHA1: 3e1f6f4e002b7afdcc85b35fe65bee3480731c5a SHA256: e1579854da36d41702f8feef326944e1a3a3f4aec3fa35d908fb194f17f2cca2 Description: Python bindings for Apache Subversion Homepage: http://subversion.apache.org/ Description-md5: 30d5802891a40f1c510adc5fe5a34238 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-subversion-dbg Priority: extra Section: python Installed-Size: 7563 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Source: subversion Version: 1.8.8-1ubuntu3 Provides: python2.7-subversion-dbg Depends: python-subversion (= 1.8.8-1ubuntu3), python-dbg (>= 2.7), libapr1 (>= 1.2.7), libc6 (>= 2.4), libsvn1 (>= 1.8), python-dbg (<< 2.8) Pre-Depends: multiarch-support Filename: pool/main/s/subversion/python-subversion-dbg_1.8.8-1ubuntu3_i386.deb Size: 1560944 MD5sum: d469ea563029c4fd2bf835380ca20f95 SHA1: de02b8879ece9ac2c471bee2fd541c5dba55ff99 SHA256: dd1b1e144afd7f00174b08d6fc7c4ecce934af08be27dc25ff96487691da7068 Description: Python bindings for Subversion (debug extension) Homepage: http://subversion.apache.org/ Description-md5: f20ef14947423d47b5d91de9d62bf3a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-suds Priority: optional Section: python Installed-Size: 530 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tryton Maintainers Architecture: all Source: suds Version: 0.4.1-11build1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python-pkg-resources Filename: pool/main/s/suds/python-suds_0.4.1-11build1_all.deb Size: 91726 MD5sum: 831aa3fe7b9775cc09cb3af84078bf9e SHA1: cca580355ef06994dcc0b47d9c4d37a4385cd09c SHA256: 66cde751259ab18edb784ffd7799ab53f4ece39bc61ed60a7efe7458059ffd73 Description: Lightweight SOAP client for Python Homepage: http://www.fedorahosted.org/suds/ Description-md5: e1ac45cd8cf31cf7b34831e1d71530be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-sure Priority: optional Section: python Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.2.2-2build1 Depends: python-nose, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-sure/python-sure_1.2.2-2build1_all.deb Size: 17380 MD5sum: 0d28cef2d9292fd104b698a0d0a6bc23 SHA1: 02f7592f3f3979189c8c5d51cf777f1840b78512 SHA256: 7f4c0135895353e731e1d8d89379d6980e643f6d40dfa13ea25cc9eb4c016c0d Description: utility belt for automated testing for Python Homepage: http://github.com/gabrielfalcao/sure Description-md5: 41ab761c9cbdb08e602819a362983bc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-svn Priority: optional Section: python Installed-Size: 2125 Maintainer: Ubuntu Developers Original-Maintainer: Henry Velez Architecture: i386 Source: pysvn Version: 1.7.8-0.2 Replaces: python2.3-svn, python2.4-svn Provides: python-pysvn, python2.7-svn Depends: libapr1 (>= 1.2.7), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libsvn1 (>= 1.7), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Suggests: python-svn-dbg Conflicts: python2.3-svn, python2.4-svn Filename: pool/main/p/pysvn/python-svn_1.7.8-0.2_i386.deb Size: 377952 MD5sum: b63e404cddbb2fcd67f84b3cd29009ef SHA1: 3eb4940545dffab873449f3d252bda9ed7255653 SHA256: e0dda702825d9f12ee71e3d166453031656e07f2dd09950cbf4161650ef19c81 Description: A(nother) Python interface to Subversion Homepage: http://pysvn.tigris.org/ Python-Version: 2.7 Description-md5: 68e6338441729beae45452e9f94a2f32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-svn-dbg Priority: extra Section: python Installed-Size: 779 Maintainer: Ubuntu Developers Original-Maintainer: Henry Velez Architecture: i386 Source: pysvn Version: 1.7.8-0.2 Provides: python-pysvn Depends: python-svn (= 1.7.8-0.2), python-dbg Filename: pool/main/p/pysvn/python-svn-dbg_1.7.8-0.2_i386.deb Size: 93462 MD5sum: 7fb4c22e153cd1292a9494482128e375 SHA1: d40d26636b336a031c8c0844b7a1604e3441ecc3 SHA256: 11e39b5924f4bf7a9702441af3e1ef260ec88a43ed37bd84eac5d1c3f58eee9a Description: A(nother) Python interface to Subversion (debug extension) Homepage: http://pysvn.tigris.org/ Description-md5: d398769dfb76cc2e484403b6e982916a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-swift Priority: optional Section: python Installed-Size: 1400 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Replaces: swift (<< 1.13.1~rc1-0ubuntu1~) Provides: python2.7-swift Depends: adduser, python-dnspython (>= 1.10.0), python-eventlet (>= 0.9.8), python-greenlet (>= 0.3.1), python-netifaces, python-openssl, python-paste, python-pastedeploy, python-setuptools, python-simplejson, python-xattr, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: swift (<< 1.13.1~rc1-0ubuntu1~) Filename: pool/main/s/swift/python-swift_1.13.1-0ubuntu1_all.deb Size: 231058 MD5sum: 40d37b2098e251cd4377c6b9dde943d0 SHA1: 3813adbd0e80919bf66e145986633f989cbbfeef SHA256: a909d3172153ef414a0898579a653ee49b91da678174fecb82a3438033f6f24a Description: distributed virtual object store - Python libraries Homepage: http://launchpad.net/swift Description-md5: de070055ceecd087c69ec8d278884c43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-swiftclient Priority: extra Section: python Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Adam Gandelman Architecture: all Version: 1:2.0.3-0ubuntu1 Replaces: swift (<< 1.7.4-0ubuntu2) Depends: python-eventlet, python-httplib2, python-keystoneclient, python-setuptools, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-requests, python-simplejson Breaks: swift (<< 1.7.4-0ubuntu2) Filename: pool/main/p/python-swiftclient/python-swiftclient_2.0.3-0ubuntu1_all.deb Size: 31326 MD5sum: 4cfe680aff292f69baac0c0b54952b3b SHA1: a348ada288ec723e9158659afb9f82e4d5bbca2e SHA256: 57ecb407a696cb6c31f92d439a4f3dd6c10d06e0f5603f14ee049a9c546143ba Description: Client library for Openstack Swift API. Description-md5: 3cc3f677cff7556abc65b72cc87defc4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-tablib Priority: optional Section: python Installed-Size: 1573 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.9.11-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-tablib/python-tablib_0.9.11-2build1_all.deb Size: 253088 MD5sum: 7e7d805942a32175fe2b8b3d0fd5054e SHA1: fced066c11094b902e9fb29498d36a6f308fca9a SHA256: 68b92225082406f7c2a4328ca589964890a8c4adddaced8c53601280593645d1 Description: format agnostic tabular dataset library Homepage: http://docs.python-tablib.org/en/latest/index.html Description-md5: 4127f701a75d33a86b7a685315280931 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-talloc Priority: optional Section: python Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: talloc Version: 2.1.0-1 Provides: python2.7-talloc Depends: libc6 (>= 2.1.3), libpython2.7 (>= 2.7), libtalloc2 (>= 2.0.4~git20101213), python (>= 2.7), python (<< 2.8) Pre-Depends: multiarch-support Filename: pool/main/t/talloc/python-talloc_2.1.0-1_i386.deb Size: 8514 MD5sum: ba2c79bb3e6b3db50dea0971371df4ca SHA1: 4f466735de8292120821ca7a79d1eed044f9fe0f SHA256: 3b53e50ba10b1cd743cca3863c7dfbba80b9a211faaf15f17d8e17af1bbc6661 Description: hierarchical pool based memory allocator - Python bindings Homepage: http://talloc.samba.org/ Description-md5: f45a9667d467e79db9c4c96ffc13e2eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-talloc-dbg Priority: extra Section: debug Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: talloc Version: 2.1.0-1 Depends: python-talloc (= 2.1.0-1) Pre-Depends: multiarch-support Recommends: python-dbg, libtalloc2-dbg Filename: pool/main/t/talloc/python-talloc-dbg_2.1.0-1_i386.deb Size: 13422 MD5sum: ab7ae2513aaf3e89b74c3584299dade4 SHA1: 135a05dfea9bfa0338f7b644fcc26ef0eb2c430a SHA256: d1012980425ea9cb23a5a8dc7cbd246f270453f7c95ee4e5d51cbd7c96686b7c Description: hierarchical pool based memory allocator - Python debug extension Homepage: http://talloc.samba.org/ Description-md5: c7b083e347d9a8e0dc1d2f6dadd23ef7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-talloc-dev Priority: optional Section: libdevel Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: talloc Version: 2.1.0-1 Depends: python-talloc (= 2.1.0-1), pkg-config Filename: pool/main/t/talloc/python-talloc-dev_2.1.0-1_i386.deb Size: 4174 MD5sum: 78bb9fb5792a52b8518a1dcad6977f57 SHA1: ca6596788b8cdf3d78e45db8bcbc6ed6634df636 SHA256: 01be423efec4ca66ff48d16fe0d17c539eb290c4e6fb062870799ae8a8ccd3f6 Description: talloc Python bindings - development files Homepage: http://talloc.samba.org/ Description-md5: 18066c5366d859cfc76e6151aecc9a7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-taskflow Priority: optional Section: python Installed-Size: 724 Maintainer: Chuck Short Architecture: all Version: 0.1.3-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-anyjson, python-iso8601, python-six, python-networkx, python-babel, python-stevedore, python-concurrent.futures, python-sqlalchemy, alembic, python-eventlet Filename: pool/main/p/python-taskflow/python-taskflow_0.1.3-0ubuntu3_all.deb Size: 104896 MD5sum: cd42bfcb1b588b79dd34f9ea518cebd1 SHA1: b2108668785356acbab25a1067bf87aa6a777416 SHA256: ea39f00f1d6cf33cd0b09fdb39cceaa0a7d15884c8e8cfbf4926a1c719e9cd19 Description: Taskflow structured state management library. Description-md5: d577399c997a41c1945f795df781caf0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-tdb Priority: optional Section: python Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: tdb Version: 1.2.12-1 Provides: python2.7-tdb Depends: libtdb1 (= 1.2.12-1), python (>= 2.7), python (<< 2.8), libc6 (>= 2.1.3), libpython2.7 (>= 2.7) Filename: pool/main/t/tdb/python-tdb_1.2.12-1_i386.deb Size: 11044 MD5sum: 8b4ef7f36523836daff5cb67c524a5d7 SHA1: c68cd62b695a4d537d68dce292c67749673a7ea8 SHA256: 9e53ab390546b99fd49402106dded201aa29c3c523e3efb8906719c87edc01f1 Description: Python bindings for TDB Homepage: http://tdb.samba.org/ Description-md5: a793bf0d4a95bb761ab855a652f8d3ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-tdb-dbg Priority: extra Section: debug Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: tdb Version: 1.2.12-1 Depends: python-tdb (= 1.2.12-1) Recommends: python-dbg, libtdb1-dbg Filename: pool/main/t/tdb/python-tdb-dbg_1.2.12-1_i386.deb Size: 17620 MD5sum: 9ebdb92b16e7357101cbd1f569c36780 SHA1: 1a6821f9bd75a5b795ab8dd7a4108980218437ce SHA256: 1165b95227e3e884ee24ff1f13a3c608637b0b37da11d8527f2b902d19b3d2d7 Description: Python bindings for TDB - debug extension Homepage: http://tdb.samba.org/ Description-md5: ca3891ec8769c2be4d8db30808f54f93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-tempita Priority: extra Section: python Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.5.2-1build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-tempita/python-tempita_0.5.2-1build1_all.deb Size: 13776 MD5sum: fa4fd67b02d761715923b71375fd6f08 SHA1: f6f7534427fe6ee584df0967341084e51e786475 SHA256: c72346e777a5b42dc7084cf5c1339cd461dda120544a4c753904e1cf75591c40 Description: very small text templating language Description-md5: 70161c2bb4512e28c7153543a4cc4979 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-testrepository Priority: optional Section: python Installed-Size: 410 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: testrepository Version: 0.0.18-1ubuntu1 Provides: python2.7-testrepository Depends: python-subunit, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-fixtures, python-testtools Filename: pool/main/t/testrepository/python-testrepository_0.0.18-1ubuntu1_all.deb Size: 57084 MD5sum: fccdb4e8bbd29cbe37f977c5548e0a3d SHA1: c90b6ad595dde24ceab3a23d376395c218960c1c SHA256: 98c6524e5d769c09ad030bd89a62944eee36043f7069be8f68a0614c84b14e96 Description: Database of test results - python library (python2) Homepage: https://pypi.python.org/pypi/testrepository Python-Version: 2.7 Description-md5: b4eabcb734a37dc1547c452e95d63d24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-testresources Priority: optional Section: devel Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Source: testresources Version: 0.2.7-1ubuntu2 Replaces: python2.4-testresources Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Conflicts: python2.4-testresources Filename: pool/main/t/testresources/python-testresources_0.2.7-1ubuntu2_all.deb Size: 24822 MD5sum: a4f093d3064d8839cc930af365c60547 SHA1: f19355f6a36562c0817bb5d6e6d94dd470cf9bbe SHA256: f410ada596a5fd21db876be4d0d8e32e55795b836663dfed1c4413dbf730d218 Description: PyUnit extension for managing expensive test fixtures (python2) Description-md5: c250c304f0e780cb9dba46c87613e19a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-testscenarios Priority: optional Section: python Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.4-2ubuntu2 Provides: python2.7-testscenarios Depends: python-testtools, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-testscenarios/python-testscenarios_0.4-2ubuntu2_all.deb Size: 13220 MD5sum: e6686084709fc63c00943d1f343c6541 SHA1: 1bb787eed9e3e37c43cc00abd75363de617667a9 SHA256: e8ae1dd1f9ec59aa9a35866e44ad3f79fbdedab619bff5f8ffabaef5d1a8ed8c Description: Dependency injection for Python unittest tests (python2) Homepage: https://launchpad.net/testscenarios Description-md5: 20d6d9271049d481c28403e25000671a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-testtools Priority: optional Section: python Installed-Size: 1207 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.9.35-0ubuntu1 Provides: python2.7-testtools Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-extras, python-mimeparse, python-pkg-resources Recommends: python-fixtures, libjs-jquery, libjs-underscore Suggests: python-twisted Breaks: python-subunit (<< 0.0.6) Filename: pool/main/p/python-testtools/python-testtools_0.9.35-0ubuntu1_all.deb Size: 192662 MD5sum: 02712b24a895979d852fa23df1940d82 SHA1: e51e1f6c874b503b27f53c0cf5840c41759703ba SHA256: fd6bc0bc674fa60f32c4e9eff7b23e1e60b3689227a707f8b80fda417e7e2ff6 Description: Extensions to the Python unittest library (Python 2.x) Homepage: http://pypi.python.org/pypi/testtools Description-md5: 9f9838e8a4f2d434bf1de805c734385d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-thrift Priority: extra Section: python Installed-Size: 176 Maintainer: Ubuntu Developers Original-Maintainer: Eric Evans Architecture: i386 Version: 0.9.0-1build1 Provides: python2.7-thrift Depends: libc6 (>= 2.3.6-6~), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-thrift/python-thrift_0.9.0-1build1_i386.deb Size: 30690 MD5sum: 004246927ce74309c5f1c6cd30bde8dd SHA1: aeaecc18834a27f1f74344142151fd71159756e9 SHA256: db89b2f518a6d6b18530e597c0e7bd6472f9424fdfb384b083c7e471d576f394 Description: Python library for Thrift Homepage: http://thrift.apache.org Description-md5: 319d1fee8e45df34eece42c9e52552fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-tickcount Priority: optional Section: python Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: i386 Source: tickcount Version: 0.1-0ubuntu17 Depends: libc6 (>= 2.3.6-6~), python (>= 2.7), python (<< 2.8) Filename: pool/main/t/tickcount/python-tickcount_0.1-0ubuntu17_i386.deb Size: 4854 MD5sum: ffd699086c18db64eda2c3db5908c9ab SHA1: 4ea213793dc0b612e5557c2355e55eda4af08929 SHA256: 054a4e332b4e420363687bb8f297a2a78099020096be5dd8e80d86775afaab5f Description: Python module to access the Python interpreter tickcount Homepage: https://launchpad.net/tickcount Description-md5: 45eeee0227d5c29311ceb96a060c13f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-tidylib Priority: optional Section: python Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Janos Guljas Architecture: all Version: 0.2.1~dfsg-2ubuntu3 Provides: python2.7-tidylib Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libtidy-0.99-0, libjs-jquery, libjs-underscore Filename: pool/main/p/python-tidylib/python-tidylib_0.2.1~dfsg-2ubuntu3_all.deb Size: 135564 MD5sum: dd3b3911a5f98befd73a86de81ac7686 SHA1: 0ff4c1c24366d69aa328659ba487032ece65a2ea SHA256: 3fc61ee6e08e3951d09b6c025ee21ac633fd05de4728c9d4e6b14a82b751d7fb Description: Python wrapper for HTML Tidy (tidylib) Homepage: http://countergram.com/open-source/pytidylib/ Description-md5: f20fcc647be16665132c17f2eac0c5c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-tk Priority: optional Section: python Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-stdlib-extensions Version: 2.7.5-1ubuntu1 Replaces: python2.3-tk, python2.4-tk Provides: python2.7-tk Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.4), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Suggests: tix, python-tk-dbg Conflicts: python2.3-tk, python2.4-tk Filename: pool/main/p/python-stdlib-extensions/python-tk_2.7.5-1ubuntu1_i386.deb Size: 22902 MD5sum: ef1b287af1d9dbcd3a3016722e450ad3 SHA1: 6a1195028f73ef701440e2049045dd45b9027ca3 SHA256: 08a4f4d93269840b11a852015df62d46897fa2d67f4549d292e1cd61a01fe0f7 Description: Tkinter - Writing Tk applications with Python Description-md5: ade58d77904b3fac3495009bcd8b0115 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-publishing Package: python-tk-dbg Priority: extra Section: python Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-stdlib-extensions Version: 2.7.5-1ubuntu1 Depends: python-dbg (>= 2.7), python-dbg (<< 2.8), python-tk (= 2.7.5-1ubuntu1), libc6 (>= 2.4), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Filename: pool/main/p/python-stdlib-extensions/python-tk-dbg_2.7.5-1ubuntu1_i386.deb Size: 59878 MD5sum: fac717eb9c353b44c6efc536c6d469f8 SHA1: 57fe33495c5516b078e12f72930dcb4175274e66 SHA256: bf838b38cc6297cadadc1c933511e5a294f6748617491a28fb1600f4306ccd3b Description: Tkinter - Writing Tk applications with Python (debug extension) Description-md5: 087294519fcd42cc82c70013179536d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-tornado Priority: optional Section: python Installed-Size: 1247 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 3.1.1-1ubuntu2 Depends: ca-certificates, python (>= 2.7), python-pycurl, python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-mysqldb Filename: pool/main/p/python-tornado/python-tornado_3.1.1-1ubuntu2_all.deb Size: 214520 MD5sum: 5c589767af20f9a130942b9add5b85e2 SHA1: 83c2f44c29eae1efb08c32e39b7eed569af66b99 SHA256: 1ba3fe7ce8bb777f2c6511501d8f91666a67d26125e59a947abdc0e554f607b2 Description: scalable, non-blocking web server and tools Homepage: http://www.tornadoweb.org/ Description-md5: 334f29c239009363c41bf9736d065ebc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-troveclient Priority: extra Section: python Installed-Size: 473 Maintainer: Ubuntu Developers Original-Maintainer: Adam Gandelman Architecture: all Version: 1:1.0.3-0ubuntu3 Depends: python-httplib2, python-lxml, python-setuptools, python-prettytable (>= 0.6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pbr, python-requests, python-simplejson, python-babel, python-six Filename: pool/main/p/python-troveclient/python-troveclient_1.0.3-0ubuntu3_all.deb Size: 67612 MD5sum: cf06c287a83da8c96df0c3929e16ba9b SHA1: 5dda88b4bb8d3361082d7e3e7c07927f9dc2a465 SHA256: 28a77a6b3bdc9851d39a8eead4a54ce6d0edfa1a8d67e808fc66f5aa187e1b9f Description: Client library for Openstack Trove API. Description-md5: 10b7bd2503403090081a0c7e691ca34d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted Priority: extra Section: python Installed-Size: 53 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Provides: python2.7-twisted Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python-twisted-conch (>= 1:13.2.0-1ubuntu1), python-twisted-mail (>= 13.2.0-1ubuntu1), python-twisted-lore (>= 13.2.0-1ubuntu1), python-twisted-names (>= 13.2.0-1ubuntu1), python-twisted-news (>= 13.2.0-1ubuntu1), python-twisted-runner (>= 13.2.0-1ubuntu1), python-twisted-web (>= 13.2.0-1ubuntu1), python-twisted-words (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8) Filename: pool/main/t/twisted/python-twisted_13.2.0-1ubuntu1_all.deb Size: 3970 MD5sum: 95d58118ed009eb63f45615787cb8375 SHA1: dfe885beb9b3f3f94c866c5bddb961f6420b2c2f SHA256: 13f66988111d02a4ab3a9ada2f9b2c9adc91dee1abf9be2d044ba5a76fad2f01 Description: Event-based framework for internet applications (dependency package) Description-md5: 626c5f6e29c3177f91462f5f00604df0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-bin Priority: optional Section: python Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: twisted Version: 13.2.0-1ubuntu1 Provides: python2.7-twisted-bin Depends: python (>= 2.7), python (<< 2.8), libc6 (>= 2.4) Suggests: python-twisted-bin-dbg Filename: pool/main/t/twisted/python-twisted-bin_13.2.0-1ubuntu1_i386.deb Size: 11122 MD5sum: 2d8b7c50af96d90027294244f77a7a22 SHA1: 3a479c3950f981b43db56afd28f8f658d67348c1 SHA256: 7f8797c54a0a3349c2bfe3ca25edf20182a3d3035766602c2c6f3c66e8c3fd74 Description: Event-based framework for internet applications Description-md5: b043b8fbcb0f933afbb8bed2bd47d163 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-twisted-bin-dbg Priority: extra Section: python Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-bin (= 13.2.0-1ubuntu1), python-zope.interface-dbg, python-dbg, libc6 (>= 2.4) Filename: pool/main/t/twisted/python-twisted-bin-dbg_13.2.0-1ubuntu1_i386.deb Size: 32174 MD5sum: f6ae0e6cf8ec00c73c7ffc3491e3d30c SHA1: 0cbf31154513db5f4448279e84d19bad2b7c90bc SHA256: 7fcf45fb3ac6cff1e80be3c498176227267ce1d1de0471438a80c8b8a261b6fe Description: Event-based framework for internet applications (debug extension) Description-md5: 915a24ecf9bae898dc98ac75c0555942 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-twisted-conch Priority: extra Section: python Installed-Size: 1402 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted (13.2.0-1ubuntu1) Version: 1:13.2.0-1ubuntu1 Provides: conch, python2.7-twisted-conch Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python-crypto (>= 2.0.1+dfsg1-1.1), python-pyasn1, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-conch_13.2.0-1ubuntu1_all.deb Size: 241772 MD5sum: b56ec1fca44c035778c468c934dad468 SHA1: a456cf56db726e43fb745f9e88ce66f20719f571 SHA256: 3e09ea9060355864f9c65380a0f099c84c933351501fe8cbdfa2482d45a17fdc Description: Twisted SSH Implementation Description-md5: 0c60ef99e953fe6f7932b157c545d30f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-core Priority: optional Section: python Installed-Size: 5921 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Provides: python2.7-twisted-core Depends: python-twisted-bin (>= 13.2.0-1ubuntu1), python-zope.interface (>= 3.6), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-openssl, python-pam, python-serial Suggests: python-tk, python-gtk2, python-glade2, python-qt3, python-wxgtk2.8 Filename: pool/main/t/twisted/python-twisted-core_13.2.0-1ubuntu1_all.deb Size: 983742 MD5sum: 9131bf286ce0473f29cfa8f3ccbaaf4e SHA1: e271af8aa70124ce206a00e110591366f5d83dca SHA256: 3fe1f24b38b46f579672e11a20e87f914d5c7962f0c88b290157301871307738 Description: Event-based framework for internet applications Description-md5: b043b8fbcb0f933afbb8bed2bd47d163 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-twisted-lore Priority: optional Section: python Installed-Size: 409 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-web (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-lore_13.2.0-1ubuntu1_all.deb Size: 65820 MD5sum: fe1fb2faf26113f56cfe3f08c1409d24 SHA1: 5d53848689838a4c1b4eeb57f22b0d6a7005c392 SHA256: 92dfe16df3f54e71f5d99cf8e5ffb2bd653e9d09c4bd2975f868733b3f0cdccf Description: Documentation generator with HTML and LaTeX support Description-md5: 7ce69113380cdb08d6c748d7123ceeb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-mail Priority: optional Section: python Installed-Size: 998 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python-openssl, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-twisted-names Filename: pool/main/t/twisted/python-twisted-mail_13.2.0-1ubuntu1_all.deb Size: 168022 MD5sum: 418831134dcef7e7cc5eb89a8e6072c3 SHA1: 7d852e37ee2fb94286a819e318c8ab10a80a40d5 SHA256: ab7edcd1d59b2b4d17a41c7db0a6296fd2805005863acca2f0a22d6af765cec0 Description: SMTP, IMAP and POP protocol implementation Description-md5: 1d6d474c19b78b13b160750ae7fb2c9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-names Priority: optional Section: python Installed-Size: 476 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-names_13.2.0-1ubuntu1_all.deb Size: 78414 MD5sum: e90b94dc1d359145a935fc5185e6a927 SHA1: 7cecd89e5ddd7475e9c5d742689e3ab724468ccd SHA256: 0b56d428072fac9a43408ab75f5c6306efb049c44eb1cf86e4c08e074a3135cd Description: DNS protocol implementation with client and server Description-md5: 4054994bb44b518a6505fec31751834a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-twisted-news Priority: optional Section: python Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-news_13.2.0-1ubuntu1_all.deb Size: 22522 MD5sum: f902221c471866d3b669fdfc7003e8e3 SHA1: 600dfda8e5f2a6c01dcade0c2a13753339e020a1 SHA256: 29056a0448bef65222ffca23677ff4967759d58bbeecdaadba94facd26bde12a Description: NNTP protocol implementation with client and server Description-md5: 26ac27e8723a8f9579ab5620f1f2cbb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-runner Priority: optional Section: python Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: twisted Version: 13.2.0-1ubuntu1 Provides: python2.7-twisted-runner Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3.6-6~) Suggests: python-twisted-runner-dbg Filename: pool/main/t/twisted/python-twisted-runner_13.2.0-1ubuntu1_i386.deb Size: 18322 MD5sum: dd48ed870c1a41fca5d976fef5429acd SHA1: acdd93c717636d7647292d2bc3b4006ebb7c9472 SHA256: e6b89358f755a7cdda27bdce46c6c59d02759c254d9727061e23a71c6708edc6 Description: Process management, including an inetd server Description-md5: c581a6339222e991eec9760b4d1d1fc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-twisted-runner-dbg Priority: extra Section: python Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-runner (= 13.2.0-1ubuntu1), python-dbg, libc6 (>= 2.3.6-6~) Filename: pool/main/t/twisted/python-twisted-runner-dbg_13.2.0-1ubuntu1_i386.deb Size: 9260 MD5sum: 01e16e2b7d73504b3bae8444a9316487 SHA1: 2f3b0fa0bcbc752d8476edf336ba06bdb388fdb5 SHA256: 776e604c7b7db01be48235d411f8c16a0b52f3db0aadbce3f95b960291063622 Description: Process management, including an inetd server (debug extension) Description-md5: 04fc283395808a7b5d806d24f3251d51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-twisted-web Priority: optional Section: python Installed-Size: 1764 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-web_13.2.0-1ubuntu1_all.deb Size: 291552 MD5sum: 5143e752b56f1e0d31a4d544506af263 SHA1: 55a4ff4ac8ba156da4d41cf916dec78bd51e60fb SHA256: b7dcef6d5b7631744e3cdb1f5749de4b379628cece080096f3937d29fcfa3be9 Description: HTTP protocol implementation together with clients and servers Description-md5: 31f20180fa1515c728c648bbebf7afdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-twisted-words Priority: optional Section: python Installed-Size: 1058 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Depends: python-twisted-core (>= 13.2.0-1ubuntu1), python-openssl, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/t/twisted/python-twisted-words_13.2.0-1ubuntu1_all.deb Size: 181626 MD5sum: 63af9f9ccdbcce16975d9704a89d9746 SHA1: a14fe6905ae8f965bc1f5a951f3eab96d4837d71 SHA256: 1667b7cdb9b040e8dcd847fed6e84d2bab0f45cdd566334ccfc98034fa88769d Description: Chat and Instant Messaging Description-md5: 0be0a1f1b7fa047655140359568cc996 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-txamqp Priority: optional Section: python Installed-Size: 116 Maintainer: Andres Rodriguez Architecture: all Source: txamqp Version: 0.6.1-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-twisted Filename: pool/main/t/txamqp/python-txamqp_0.6.1-0ubuntu2_all.deb Size: 18020 MD5sum: b6a1fe2910e865933a76b238157d1984 SHA1: 782b2f4d1ad53028903d5485dd25b16c400922a6 SHA256: bbc555e7929eb72b8e89a6c5ca81c9bc0ecf1fac1aa36f4a5f498d56b733ce30 Description: AMPQ client library using Twisted Homepage: http://pypi.python.org/pypi/txAMQP Description-md5: e9ae34ab13b003462b7b31f5fb5b4df5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-txlongpoll Priority: optional Section: python Installed-Size: 150 Maintainer: Ubuntu Developers Architecture: all Source: txlongpoll Version: 0.3.1+bzr86-0ubuntu3 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-formencode, python-oops-amqp, python-oops-datedir-repo (>= 0.0.13), python-oops-twisted (>= 0.0.3), python-yaml, python-twisted, python-txamqp (>= 0.5), python-zope.interface Filename: pool/main/t/txlongpoll/python-txlongpoll_0.3.1+bzr86-0ubuntu3_all.deb Size: 17534 MD5sum: 5b4c6b7981daf7a059a7150162b7d458 SHA1: 07cd0b80a4b3958158f4d2aeb4bf5a8990904fd4 SHA256: b1cb325f32a125cbe1d6719cd973ba3510b0817131034932ee0458e6e86ea149 Description: Long polling HTTP frontend for AMQP Homepage: https://launchpad.net/txlongpoll Description-md5: 68a80f3225bdf78bea26ce03cbaa1168 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-txtftp Priority: optional Section: python Installed-Size: 209 Maintainer: Ubuntu Developers Architecture: all Source: python-tx-tftp Version: 0.1~bzr38-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-twisted, python-zope.interface Filename: pool/main/p/python-tx-tftp/python-txtftp_0.1~bzr38-0ubuntu2_all.deb Size: 24492 MD5sum: 748c21a04f5d60251a15658c866fd90e SHA1: eae54ea810d594f695c6a281054e5bacaa58deea SHA256: 0df27c91d49bdedd7901c3d4ef9f844b83bd0a8fa5079995290b6a468f3302fd Description: Twisted-based TFTP implementation Homepage: https://github.com/shylent/python-tx-tftp Description-md5: f0dc78275d86a53f832a97c938ec022b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-tz Priority: extra Section: python Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: all Version: 2012c-1build1 Depends: tzdata, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/python-tz/python-tz_2012c-1build1_all.deb Size: 31990 MD5sum: 9c2a526307d2e15cf23d8b72a87b6158 SHA1: c5240f8b8a5e9bac0f7d9aa9589f03910ee44a8e SHA256: b12385a2b72b22384fe0795a1e2e12c86bf714e6c9feee6915a3a3ed253ca84d Description: Python version of the Olson timezone database Homepage: http://pypi.python.org/pypi/pytz/ Description-md5: a494a4b54ac250236f51356b49003c79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-video Package: python-ubuntu-sso-client Priority: extra Section: python Installed-Size: 361 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-sso-client Version: 13.10-0ubuntu6 Replaces: python-ubuntuone-storageprotocol (<< 13.05), ubuntu-sso-client (<< 2.99.4) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), gir1.2-soup-2.4, gnome-keyring, libglib2.0-bin, python-dbus, python-dirspec, python-httplib2 (>= 0.7.2), python-oauthlib (>= 0.3.5), python-openssl, python-twisted-core, python-twisted-web, python-zope.interface Breaks: python-ubuntuone-storageprotocol (<< 13.05), ubuntu-sso-client (<< 2.99.4) Filename: pool/main/u/ubuntu-sso-client/python-ubuntu-sso-client_13.10-0ubuntu6_all.deb Size: 49858 MD5sum: 2541ca475874b347232c224140497b6c SHA1: 63c58939ce91643da16ddd509453bef77ca50238 SHA256: 44a377a360a81909463b0cb97ccf15ef5ebc1087fdfcec43c021411a5d3dc215 Description: Ubuntu Single Sign-On client - Python library Description-md5: 9fe03228f7dd735be1bd9c858dd2005e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-ubuntuone-devtools Priority: optional Section: python Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Rodney Dawes Architecture: all Source: ubuntuone-dev-tools Version: 13.10-0ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), dbus, python-dbus, python-dirspec (>= 2.99.0) Filename: pool/main/u/ubuntuone-dev-tools/python-ubuntuone-devtools_13.10-0ubuntu2_all.deb Size: 21528 MD5sum: cae10bc5c967b73ba300ee3a94c6d3aa SHA1: 7f84265015b365e5b17c4c7e46d9787b92ebdffc SHA256: 6810392c3906c303740d8f1afeac00e0d7effd1b112ee5ceb4eb0960acad23f0 Description: Ubuntu One development tools - Python modules Homepage: http://launchpad.net/ubuntuone-dev-tools Description-md5: 531088a9f3ac53859d52834b4a961f1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-ufw Priority: optional Section: python Installed-Size: 253 Maintainer: Jamie Strandboge Architecture: all Source: ufw Version: 0.34~rc-0ubuntu2 Replaces: ufw (<< 0.32-0ubuntu1) Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: ufw (<< 0.32-0ubuntu1) Filename: pool/main/u/ufw/python-ufw_0.34~rc-0ubuntu2_all.deb Size: 41204 MD5sum: 36751d86c7a03d2efe71ea21e9e48a1c SHA1: de1bf2b8b495a769fa4f8d6c740b824cbbfd3843 SHA256: 78f5e3404e708e9d934d234a2abaaca81fd13f97e0569992c622b6c47d35b22e Description: Uncomplicated FireWall Python modules Homepage: https://launchpad.net/ufw Python-Version: 2.7 Description-md5: 11dfd1523d9c3257254c0e8246d196d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-unit Priority: optional Section: python Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Alexandre Fayolle Architecture: all Version: 1.4.1-16.1 Depends: python, python-tk Filename: pool/main/p/python-unit/python-unit_1.4.1-16.1_all.deb Size: 30338 MD5sum: 1252e0f8d9c29da4a617025c2b49a998 SHA1: 379d830dfe3acdb1891b989aa47c5c57d6cb0ad7 SHA256: 1cbeb69544fee49b7ac7091c65a664df0f1c4ee8c3a9b34b6f0e9883d937adff Description: unit test framework for Python Description-md5: 58cc4ca88f71f8bf41dca4fb2d90dfc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-unittest2 Priority: optional Section: python Installed-Size: 372 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: unittest2 Version: 0.5.1-1ubuntu1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/u/unittest2/python-unittest2_0.5.1-1ubuntu1_all.deb Size: 65536 MD5sum: 8e0082e1081f01a7b797d5bdabea3f25 SHA1: d9da5630bfa043a23820dcd75fd6d854ec2d734f SHA256: 59c85b4110e11b3e8cda02991491c76225943196f43f15472434626d6f30eb9a Description: backport of the enhanced unittest testing framework in Python 2.7 Homepage: http://pypi.python.org/pypi/unittest2 Description-md5: 025e3b1c5f74cca0836409ddddebed9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-urlgrabber Priority: optional Section: python Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Kevin Coyner Architecture: all Source: urlgrabber Version: 3.9.1-4ubuntu3 Provides: python2.7-urlgrabber Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pycurl Filename: pool/main/u/urlgrabber/python-urlgrabber_3.9.1-4ubuntu3_all.deb Size: 42254 MD5sum: 6c86a4c6bc6da645634444971dd3b92c SHA1: 8d8c3de13f48296d41546e72d7329a30d00f3e03 SHA256: 72f27d32e7b1229582339f1a335cf3756744f180d22f20fdef4f9e926dfb3f7b Description: A high-level cross-protocol url-grabber Homepage: http://urlgrabber.baseurl.org/ Description-md5: a79dafd1b77e40ffbff78d8074bc2a27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python-urllib3 Priority: optional Section: python Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.7.1-1build1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), python-six Recommends: ca-certificates Filename: pool/main/p/python-urllib3/python-urllib3_1.7.1-1build1_all.deb Size: 38858 MD5sum: 23af9e091554d9fac8f3f6d150d34457 SHA1: 5ee32e595786fd80427b8885b27bbaae35aee642 SHA256: e14d5b4dc17b4a0d90912e9e5a24670aec90acbf4627755a285a031f7ec1d5b4 Description: HTTP library with thread-safe connection pooling for Python Homepage: http://urllib3.readthedocs.org Description-md5: 5bc537398a5d9a54ae5112ec386ef12b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntu-gnome-desktop Package: python-utidylib Priority: optional Section: web Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: utidylib Version: 0.2-9build1 Provides: python2.7-utidylib Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libtidy-0.99-0 (>= 20051018) Filename: pool/main/u/utidylib/python-utidylib_0.2-9build1_all.deb Size: 8754 MD5sum: ed4b7700e775f619d1dc2598c03c7d0a SHA1: b00e0b8adb0ff5c62a5ec91b0a9abd7497657e99 SHA256: c56a0be1be52d005c6feb3b554d651e576286f57a380e83702dd4fdae25a4074 Description: Python wrapper for TidyLib Homepage: http://utidylib.berlios.de/ Description-md5: e1fa5e32f4f40b339aaf299f0b2ff899 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, edubuntu-desktop-gnome Package: python-vte Priority: optional Section: python Installed-Size: 475 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: vte Version: 1:0.28.2-5ubuntu1 Depends: libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.26.0), libgtk2.0-0 (>= 2.20.0), libpango1.0-0 (>= 1.22.0), libvte9 (>= 1:0.28.0-1ubuntu1~), python2.7, python (>= 2.7), python (<< 2.8), python-gtk2, libvte-common (= 1:0.28.2-5ubuntu1) Breaks: gdebi (<< 0.6.1), python-apt (<< 0.8.0~exp2) Filename: pool/main/v/vte/python-vte_0.28.2-5ubuntu1_i386.deb Size: 20138 MD5sum: 1f4d5b1df54a4a825816a85fa292b37f SHA1: 1c16ee7d0312612115a06b91da201285575772e6 SHA256: 4b22e8fe19509ca74b2e8bb351e2fa814068395a4d5453fb9e414294dd771652 Description: Python bindings for the VTE widget set Description-md5: 34624e87ab07023c8425f489e6c5ea51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-wadllib Priority: optional Section: python Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Stefano Rivera Architecture: all Version: 1.3.2-2build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources, python-lazr.uri Filename: pool/main/p/python-wadllib/python-wadllib_1.3.2-2build1_all.deb Size: 28306 MD5sum: 39492d11a083524a8940ea2229631233 SHA1: 702d2fcb4693111f30e171bfacb8aa86ee1a94c1 SHA256: 57f087d25047e6c1d06fdfea12e9a82bb7eb0890cb392e5b9b1963431da12c93 Description: Python library for navigating WADL files Homepage: https://launchpad.net/wadllib Description-md5: 94acc6bc8eabbfa98c553d39aa770f65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-waitress Priority: optional Section: python Installed-Size: 350 Maintainer: Ubuntu Developers Original-Maintainer: Andrew Shadura Architecture: all Source: waitress Version: 0.8.8-1ubuntu3 Provides: python2.7-waitress Depends: python:any (<< 2.8), python:any (>= 2.7.5-5~), python-pkg-resources, python Suggests: python-waitress-doc Filename: pool/main/w/waitress/python-waitress_0.8.8-1ubuntu3_all.deb Size: 52298 MD5sum: 684a0b7c8d8fa234c4fc289afc8914f6 SHA1: 004060dfb2f4324177cfdd168f8fe7067abdff02 SHA256: 81ad6af11fc84949f0204674d327430c01be357c6f5d46a0f4071855bef1e34f Description: production-quality pure-Python WSGI server Homepage: http://github.com/Pylons/waitress Description-md5: 0b46c172c754b08d0f702b816ebc5022 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-waitress-doc Priority: optional Section: doc Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Andrew Shadura Architecture: all Source: waitress Version: 0.8.8-1ubuntu3 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/w/waitress/python-waitress-doc_0.8.8-1ubuntu3_all.deb Size: 41354 MD5sum: 1e4228bccb36f023615121847e12c7b8 SHA1: ba051f15066606663a01e5ce3f270271f5998c1a SHA256: 6969d3ac3f485a7a2f79d22d056eb045b8156a0ecb00fa9529ed185fc9edd66f Description: production-quality pure-Python WSGI server (documentation) Homepage: http://github.com/Pylons/waitress Description-md5: 908cd9218dae333abc8140078e186e70 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-warlock Priority: optional Section: python Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 1.1.0-0ubuntu2 Depends: python-json-patch (>= 0.10), python-jsonschema (>= 0.7), python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-jsonpatch, python-six Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-warlock/python-warlock_1.1.0-0ubuntu2_all.deb Size: 5278 MD5sum: b21f1f41e9e0ff96112656890c98f314 SHA1: 01216af7d95158e188a09c63b5746686a9478091 SHA256: 5b6c5484d9a75cf6a8e98c1ebb265e43ce5fb498f6f91f3989a72f771afcde0b Description: object model built on top of JSON schema - python 2.x Homepage: http://pypi.python.org/pypi/warlock Description-md5: 1f382ac26809f3bcecf157d0686d6a25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-webob Priority: extra Section: python Installed-Size: 323 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 1.3.1-1 Depends: python, python:any (>= 2.7.5-5~), python:any (<< 2.8) Suggests: python-webob-doc Breaks: python-pylons (<< 1.0.1) Filename: pool/main/p/python-webob/python-webob_1.3.1-1_all.deb Size: 57868 MD5sum: 703bfe383914afa08877b2a861b15508 SHA1: 5733b44d78f21ae774fd984ae54e9afa90c80d2d SHA256: 9887a0535d2c944e1468d290fcd0cde276815c842d835e2e989ae5a092e39c1e Description: Python module providing WSGI request and response objects (Python 2) Homepage: http://webob.org/ Description-md5: 9562ee6d8258fe717c5757a7a6b296e3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: python-webob-doc Priority: optional Section: doc Installed-Size: 1260 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-webob Version: 1.3.1-1 Depends: libjs-sphinxdoc (>= 1.0) Suggests: libjs-jquery Filename: pool/main/p/python-webob/python-webob-doc_1.3.1-1_all.deb Size: 155118 MD5sum: b98399b50d8c09d63f0a784b70a1d5f5 SHA1: 6daea5b6e2fbee66372f97b26297e8fc9bc95f81 SHA256: 842bd18008a998ff545f49e3a44c3ccb198e75beec28a6492875cf738e90f196 Description: Python module providing WSGI request and response objects (documentation) Homepage: http://webob.org/ Description-md5: f7d9b0aca34b886cd0c10efb295d179b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-webtest Priority: optional Section: python Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: webtest Version: 2.0.14-1ubuntu1 Depends: python-six, python:any (>= 2.7.5-5~), python:any (<< 2.8), python-waitress (>= 0.8.5), python-bs4, python-webob (>= 1.2), python-paste (>= 1.7.1), python-pastedeploy Suggests: python-webtest-doc, python-pyquery, python-lxml Filename: pool/main/w/webtest/python-webtest_2.0.14-1ubuntu1_all.deb Size: 26010 MD5sum: 4291bf89503e270abfed8a8850a8210f SHA1: 9ef335bf094bec95bbd20ce4f11618c52f37dbca SHA256: 246a95a3472a58ee592a64301611b3c1dafbecf6b248d36c6ea9dc356f95dd6b Description: wraps any WSGI application and makes it easy to test Homepage: http://pythonpaste.org/webtest/ Description-md5: 748305ea714e102034d24647b4dcc088 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-webtest-doc Priority: optional Section: doc Installed-Size: 749 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: webtest Version: 2.0.14-1ubuntu1 Replaces: python-webtest (<< 2.0.10-2) Depends: libjs-sphinxdoc (>= 1.0) Breaks: python-webtest (<< 2.0.10-2) Filename: pool/main/w/webtest/python-webtest-doc_2.0.14-1ubuntu1_all.deb Size: 71632 MD5sum: c1b2f00413a1dc22b91ab485c3e227f2 SHA1: 85e197cd49c62f3fd6c0d57477fbb9a15b578384 SHA256: d1f0b86251c02fe9365cebf2e1edd864bfb735e4db79c886a967a8d24fff322e Description: wraps any WSGI application and makes it easy to test Homepage: http://pythonpaste.org/webtest/ Description-md5: 748305ea714e102034d24647b4dcc088 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-werkzeug Priority: optional Section: python Installed-Size: 1178 Maintainer: Ubuntu Developers Original-Maintainer: Noah Slater Architecture: all Version: 0.9.4+dfsg-1.1ubuntu1 Depends: python:any (>= 2.7.5-5~), python:any (<< 2.8), libjs-jquery Recommends: python-simplejson | python (>= 2.6), python-openssl, python-pyinotify Suggests: ipython, python-genshi, python-pkg-resources, python-lxml, python-greenlet, python-redis, python-pylibmc | python-memcache, python-werkzeug-doc Filename: pool/main/p/python-werkzeug/python-werkzeug_0.9.4+dfsg-1.1ubuntu1_all.deb Size: 236038 MD5sum: 49c946f895a2378e5a45bb922627568f SHA1: 84a65ef447e419c895b984d301deddfaea777788 SHA256: 5879960deb27ee98c3a1296585e088bb19febf52534d22c6f831491b3c472100 Description: collection of utilities for WSGI applications Homepage: http://werkzeug.pocoo.org/ Description-md5: bc8efbff7e3db3c63971edb088df7f93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-werkzeug-doc Priority: extra Section: doc Installed-Size: 2645 Maintainer: Ubuntu Developers Original-Maintainer: Noah Slater Architecture: all Source: python-werkzeug Version: 0.9.4+dfsg-1.1ubuntu1 Replaces: python-werkzeug (<< 0.9.3+dfsg-2) Depends: libjs-sphinxdoc (>= 1.0) Conflicts: python-werkzeug (<< 0.9.3+dfsg-2) Filename: pool/main/p/python-werkzeug/python-werkzeug-doc_0.9.4+dfsg-1.1ubuntu1_all.deb Size: 869082 MD5sum: f34cf53157d99bc43b6ce8ea5c7961a9 SHA1: 2d57f7de47f1f52dfcea00a2a37454c0dc281e77 SHA256: e962efb740b0faabbeeb774e87189d9a95484f484c71c48e361878b166aaa3a0 Description: documentation for the werkzeug Python library Homepage: http://werkzeug.pocoo.org/ Description-md5: 7a4c0d9403c12b1d867782c7500e2fb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-wnck Priority: optional Section: python Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Loic Minier Architecture: i386 Source: gnome-python-desktop Version: 2.32.0+dfsg-3 Replaces: python-gnome2-desktop (<< 2.24.0-2) Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.8.0), libwnck22 (>= 1:2.22), python (>= 2.7), python (<< 2.8), python-gtk2 Filename: pool/main/g/gnome-python-desktop/python-wnck_2.32.0+dfsg-3_i386.deb Size: 22074 MD5sum: 9b07138f53c63c82c79411444a185920 SHA1: 68ae0db983e939b1e9332beef98b743e53c02178 SHA256: c0d0596853e3efa9fefc97e7fb8f0f0debceeb7094a9161123778684f0443685 Description: Python bindings for the WNCK library Description-md5: 58e159b90a099ee004bf6cf1d9c51633 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-wsme Priority: optional Section: python Installed-Size: 367 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Version: 0.6-0ubuntu1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-six, python-simplegeneric, python-webob, python-ipaddr Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-wsme/python-wsme_0.6-0ubuntu1_all.deb Size: 56894 MD5sum: 400b5bf513f6c7754e56fad1ec833b4b SHA1: 53d1fa8cda29884945b17c34ed29c67cfeb92414 SHA256: e032625308cb02c48367092b4786925a01aba4178c7e7a6bf987a525cd9d4d3d Description: Web Services Made Easy makes it easy to implement multi-protocol webservices Homepage: http://pythonhosted.org/WSME/ Description-md5: 23b6c3f9854b18ce1020aeb352a37fff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-xapian Priority: optional Section: python Installed-Size: 1273 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: i386 Source: xapian-bindings Version: 1.2.16-2ubuntu1 Provides: python2.7-xapian Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1), libxapian22 (>= 1.2.16) Suggests: xapian-doc Filename: pool/main/x/xapian-bindings/python-xapian_1.2.16-2ubuntu1_i386.deb Size: 198104 MD5sum: 654a51e5d98e4c020112cb9f67bd4db0 SHA1: ca8abf6bcb8a567e0b2e54895502ea817234a831 SHA256: 183c97a3859316841d7d965faa313c0e0500d849d5161a5932e659f299c0a1b5 Description: Xapian search engine interface for Python Homepage: http://xapian.org/ Description-md5: e2495f28fd3fba43201c82e444852920 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-xappy Priority: optional Section: python Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Smedegaard Architecture: all Source: xappy Version: 0.5-5 Provides: python2.7-xappy Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8), python-xapian Filename: pool/main/x/xappy/python-xappy_0.5-5_all.deb Size: 47920 MD5sum: 4fd1bc79a2982e78ab9a0fcc8ef86011 SHA1: 0ea87328fa2a4b35844fc34b69718397cd83ec2c SHA256: 48abba3d33055fbcefdce7879563526654dd4c168f707c98fe81ff4455794cbd Description: easy-to-use interface to the Xapian search engine Homepage: http://xappy.org/ Description-md5: acf756054f2b1e49abc021b3c84fe7ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-xattr Priority: optional Section: python Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: i386 Version: 0.6.4-2build1 Provides: python-pyxattr, python2.7-xattr Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.3.6-6~), python-pkg-resources Conflicts: python-pyxattr Filename: pool/main/p/python-xattr/python-xattr_0.6.4-2build1_i386.deb Size: 12466 MD5sum: 7b1abf5cbf34631f3fc8cd9734de6ca6 SHA1: 9d9d8ba433d3cd47973e50b3ef6ad603353e957e SHA256: 1fe97d96b83606b106c48fbe8c121e133703453f7909351b632f3f4c9368bc2b Description: module for manipulating filesystem extended attributes Homepage: http://www.undefined.org/python/ Description-md5: b5897b5090f44c236c7474c32b1eb2b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-xcbgen Priority: optional Section: python Installed-Size: 83 Maintainer: Ubuntu Developers Original-Maintainer: XCB Developers Architecture: all Source: xcb-proto Version: 1.10-1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/x/xcb-proto/python-xcbgen_1.10-1_all.deb Size: 11100 MD5sum: 2245f0e2a19fe35731ae38f9111af529 SHA1: ea9d6ce38d5cfbdb0ce3ca76fab2dd6704764769 SHA256: 885b9be7ffe7464046c22ab36c0e7246d8eaebc348899f233939c4975c5b0d31 Description: X C Binding - protocol binding generator Multi-Arch: foreign Homepage: http://xcb.freedesktop.org Description-md5: f8f8e1ca395f0429f7a796d43e99ab7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-xdg Priority: optional Section: python Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyxdg Version: 0.25-4 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Filename: pool/main/p/pyxdg/python-xdg_0.25-4_all.deb Size: 31398 MD5sum: ae7887be1f333533ad1fc7830b1ac24b SHA1: 794c54832a8a0a86c06646acb5e5b26f36cebbe3 SHA256: cd6bb3ff772353dbc2f2b0e6d00b331a3c2779ae6b525f13ed3f0245a8ce48d9 Description: Python 2 library to access freedesktop.org standards Homepage: http://www.freedesktop.org/wiki/Software/pyxdg Description-md5: 207fa0b47cf9e6e4652f4db6ceb58ee7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-xmpp Priority: optional Section: python Installed-Size: 4487 Maintainer: Ubuntu Developers Original-Maintainer: Alexey Nezhdanov Architecture: all Version: 0.4.1-cvs20080505.3build1 Replaces: python2.3-xmpp, python2.4-xmpp Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Recommends: python-dnspython | python-dnspython Conflicts: jabber-irc (<< 0.2), python2.3-xmpp, python2.4-xmpp Filename: pool/main/p/python-xmpp/python-xmpp_0.4.1-cvs20080505.3build1_all.deb Size: 251424 MD5sum: e2a242caf1987a811d1832a07d2d7229 SHA1: 3679d43af5a5fdfa3c386aae60ce37268cf025f8 SHA256: 318f6b07c23a933f05a7a70335c0009e49979fd7ce4e420ce07dc97e1ea464c1 Description: Python library for communication with XMPP (Jabber) servers Description-md5: e3950480fe48cbeb66024e9275785e7f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python-yaml Priority: optional Section: python Installed-Size: 452 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyyaml Version: 3.10-4build4 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), libc6 (>= 2.4), libyaml-0-2 Filename: pool/main/p/pyyaml/python-yaml_3.10-4build4_i386.deb Size: 96750 MD5sum: 3dd67e0edc800c094da078e5cd184784 SHA1: 7d842bda5391005051416b52a2c0808d0d26b331 SHA256: 3fa77d17cb5bad3637d4614ebeefdf7abba6f7d13e42ce9184c50a9f44da9be2 Description: YAML parser and emitter for Python Homepage: http://pyyaml.org/ Description-md5: 82d5290a45a0b6b13c828ddb2dd65a9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: python-yaml-dbg Priority: extra Section: python Installed-Size: 253 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyyaml Version: 3.10-4build4 Depends: python-yaml (= 3.10-4build4), python-dbg, libc6 (>= 2.4), libyaml-0-2 Filename: pool/main/p/pyyaml/python-yaml-dbg_3.10-4build4_i386.deb Size: 69530 MD5sum: 298a7e2d96d61b14569d05932cfab9fe SHA1: 69c46abae0ceec7fc156966960f17c8eb4c91b89 SHA256: 54f525b67df32c4343c1d791dfbd10d735a92c7ab3fe912a92c3c62c578856e6 Description: YAML parser and emitter for Python (debug build) Homepage: http://pyyaml.org/ Description-md5: 5843f2b294ec30ef86a6df5e97ab9970 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python-zeitgeist Priority: optional Section: python Installed-Size: 173 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: all Source: zeitgeist Version: 0.9.14-0ubuntu4 Replaces: zeitgeist-core (<< 0.8.99~alpha1) Depends: python-dbus, python-gobject (>= 2.16.0), python-xdg, python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2) Breaks: zeitgeist-core (<< 0.8.99~alpha1) Filename: pool/main/z/zeitgeist/python-zeitgeist_0.9.14-0ubuntu4_all.deb Size: 30890 MD5sum: dae06ab9b30885d4e78431e63f687c98 SHA1: 874d216b86764d6c17d1944b9f2bcd1795ed8604 SHA256: 4e3d2c9c72041464e172273b598d1a5c5caa65e214bc2b1c3e1414bfb15e38f8 Description: event logging framework - Python bindings Homepage: http://zeitgeist-project.com/ Description-md5: a8bbce9f47542f7c0e66ec0932d99fef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-zope.interface Priority: extra Section: python Installed-Size: 640 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: i386 Source: zope.interface Version: 4.0.5-1ubuntu4 Replaces: python-zope, python-zopeinterface Provides: python-zope, python-zopeinterface, python2.7-zope.interface Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-pkg-resources, libc6 (>= 2.3.6-6~) Conflicts: python-zope, python-zopeinterface, zope3 Filename: pool/main/z/zope.interface/python-zope.interface_4.0.5-1ubuntu4_i386.deb Size: 79370 MD5sum: 1d12531d49a339e7ed44a4002e78e8d0 SHA1: dbe285219467dfc5105350fce46a95a4a5107484 SHA256: 6841a85a18410eea01793a007c8267c92fa39a0d2ab55e40760e77f3d5ff779c Description: Interfaces for Python Homepage: http://pypi.python.org/pypi/zope.interface Description-md5: 805f005a76a0fe3fbb6fb54d05dea254 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python-zope.interface-dbg Priority: extra Section: debug Installed-Size: 158 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: i386 Source: zope.interface Version: 4.0.5-1ubuntu4 Replaces: python-zopeinterface-dbg Provides: python-zopeinterface-dbg Depends: python-zope.interface (= 4.0.5-1ubuntu4), python-dbg, libc6 (>= 2.3.6-6~) Conflicts: python-zopeinterface-dbg Filename: pool/main/z/zope.interface/python-zope.interface-dbg_4.0.5-1ubuntu4_i386.deb Size: 27212 MD5sum: da276f32df0584a52a6dc9aea72750c3 SHA1: 8d5897952b2144f8cfd14a62b8f2884ebde67a05 SHA256: bdbd7330eb5db5eebc93d0d2b428e47bb8282aa6e00df0acc339c54369dc4ae8 Description: Interfaces for Python (debug extension) Homepage: http://pypi.python.org/pypi/zope.interface Description-md5: d25d319ea745ca9c4742a684c2c321f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python2.7 Priority: optional Section: python Installed-Size: 347 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Version: 2.7.6-8 Replaces: python-profiler (<= 2.7.1-2), python2.7-minimal (<< 2.7.3-7~) Depends: python2.7-minimal (= 2.7.6-8), libpython2.7-stdlib (= 2.7.6-8), mime-support Suggests: python2.7-doc, binutils Conflicts: python-profiler (<= 2.7.1-2) Breaks: python-virtualenv (<< 1.7.1.2-2~), vim-athena (<< 2:7.3.547-4), vim-gnome (<< 2:7.3.547-4), vim-gtk (<< 2:7.3.547-4), vim-nox (<< 2:7.3.547-4) Filename: pool/main/p/python2.7/python2.7_2.7.6-8_i386.deb Size: 196718 MD5sum: b4a127560b67b5d45a74f918664bb767 SHA1: 08d49dd52bdb008a3f599ef52f5872f8b5246652 SHA256: 144db2ffb7f48c86d63e693d9156233e1356ee7c364f2d03450d6563077b3342 Description: Interactive high-level object-oriented language (version 2.7) Multi-Arch: allowed Description-md5: 28620f1beffd6b598125304a83bfcb87 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python2.7-dbg Priority: extra Section: debug Installed-Size: 20698 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python2.7 Version: 2.7.6-8 Depends: python2.7 (= 2.7.6-8), libpython2.7-dbg (= 2.7.6-8), libc6 (>= 2.4), zlib1g (>= 1:1.2.0) Suggests: python-gdbm-dbg, python-tk-dbg Filename: pool/main/p/python2.7/python2.7-dbg_2.7.6-8_i386.deb Size: 6036510 MD5sum: 0f690678288337f51ecec699a1fdf0d6 SHA1: 92e53f4b9e2cc7fdc80d1f86520d43e25be21865 SHA256: b326d162bf82ba55188dac6ce22a6826c9b67c3f5f0dd53747146dee33f482b0 Description: Debug Build of the Python Interpreter (version 2.7) Multi-Arch: allowed Description-md5: 3220dd61a40cd6c408ecc3fbbcb8ef1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python2.7-dev Priority: optional Section: python Installed-Size: 303 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.7-3) Depends: python2.7 (= 2.7.6-8), libpython2.7-dev (= 2.7.6-8), libpython2.7 (= 2.7.6-8), libexpat1-dev Recommends: libc6-dev | libc-dev Filename: pool/main/p/python2.7/python2.7-dev_2.7.6-8_i386.deb Size: 269086 MD5sum: 86aa6f3543db887534446ca7f013d2b0 SHA1: 564e9345e3972a2ffc20a6ebdcca9c96654caa7e SHA256: bf6e3df7bbc1ff0c2a5eec1e6a4f6fa70925b8fbaa36202caefc8bd7b7967730 Description: Header files and a static library for Python (v2.7) Multi-Arch: allowed Description-md5: 0f13a410a5bbc68affef1492eee5d8e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python2.7-doc Priority: optional Section: doc Installed-Size: 31023 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python2.7 Version: 2.7.6-8 Depends: libjs-jquery Suggests: python2.7 Filename: pool/main/p/python2.7/python2.7-doc_2.7.6-8_all.deb Size: 3860600 MD5sum: 76f955ab5567d2c4cd73fcc3cbf7845a SHA1: b45cbc99a076c7bc3da198bf77ba06a4593d7704 SHA256: 633633f1a70581b8daf0c2c8210c4ecaae388b60c399ce482cbd4540f45d7371 Description: Documentation for the high-level object-oriented language Python (v2.7) Description-md5: 427bb0bb2c7ff8d97e3a833c92820507 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python2.7-examples Priority: optional Section: python Installed-Size: 2693 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python2.7 Version: 2.7.6-8 Depends: python2.7 (>= 2.7.6-8) Filename: pool/main/p/python2.7/python2.7-examples_2.7.6-8_all.deb Size: 549054 MD5sum: 94a57e79cf7589e06a079ff3a9f2bfef SHA1: 66e16a66f67bf4451476bfb69fe2870484569f38 SHA256: 9fe550c64693992ab9acdc29ea1b8c1d5096ca2bc684c947e8d9370a3dfd4fee Description: Examples for the Python language (v2.7) Description-md5: 4f24bb2b1825659042443224cf985199 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python2.7-minimal Priority: optional Section: python Installed-Size: 3232 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python2.7 Version: 2.7.6-8 Replaces: python2.7 (<< 2.7.1~rc1-2~) Depends: libpython2.7-minimal (= 2.7.6-8), zlib1g (>= 1:1.2.0) Pre-Depends: libc6 (>= 2.15) Recommends: python2.7 Suggests: binfmt-support Conflicts: binfmt-support (<< 1.1.2) Filename: pool/main/p/python2.7/python2.7-minimal_2.7.6-8_i386.deb Size: 1118400 MD5sum: 69c2c9da8c4c4b572c4f9b0e5f0b7ed7 SHA1: 3c83f48c52d903cfca3893b28d733bcc989864e7 SHA256: 388d3f8fc2953987293c4d61f644957df2adeb57ee65b52fdebb88c8ceb9bf77 Description: Minimal subset of the Python language (version 2.7) Multi-Arch: allowed Description-md5: 4e3d580f5374e0e392e97c8e6fedf594 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, dns-server, samba-server, cloud-image, server, openssh-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3 Priority: important Section: python Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Replaces: python3-minimal (<< 3.1.2-2) Provides: python3-profiler Depends: python3.4 (>= 3.4.0-0~), python3-minimal (= 3.4.0-0ubuntu2), libpython3-stdlib (= 3.4.0-0ubuntu2), dh-python Suggests: python3-doc (>= 3.4.0-0ubuntu2), python3-tk (>= 3.4.0-0ubuntu2) Filename: pool/main/p/python3-defaults/python3_3.4.0-0ubuntu2_i386.deb Size: 8676 MD5sum: 0bd4a08fc9232bedb560039e28508022 SHA1: 30828aebc6df4e8103a4540895e8e0c325589c06 SHA256: d32a30d3a036a744579ddca7e98a957be20589457c5e0d6a874838671a48bed4 Description: interactive high-level object-oriented language (default python3 version) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: d2d5b9ee5047a791224f1b8f4bc73d3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: python3-all Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3 (= 3.4.0-0ubuntu2), python3.4 Filename: pool/main/p/python3-defaults/python3-all_3.4.0-0ubuntu2_i386.deb Size: 980 MD5sum: a1385a7ef24d2d527ce449ebf9d1667c SHA1: 7e266d2c688ce19e273d9acb1a6d051ee17f29d8 SHA256: 429dee090a9adb0d2f7f65dd903c2b227b8e043ea07fe8293c4e4c54ff8e3327 Description: package depending on all supported Python 3 runtime versions Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: ff91293ca67712880bebe9476a6a68d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-all-dbg Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3 (= 3.4.0-0ubuntu2), libpython3-all-dbg (= 3.4.0-0ubuntu2), python3-all (= 3.4.0-0ubuntu2), python3-dbg (= 3.4.0-0ubuntu2), python3.4-dbg Filename: pool/main/p/python3-defaults/python3-all-dbg_3.4.0-0ubuntu2_i386.deb Size: 1002 MD5sum: edbfb7875ebd792c220bd5903dd8d488 SHA1: 344a3b8d50c141a29070e07c1ad88d837d1ca5f4 SHA256: 368c18dd2ba1e7e2ed9c2cb8b31df2453f00c9c60396286f1322f6e381f72a7c Description: package depending on all supported Python 3 debugging packages Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: e25c0d1b8ce31e77e172102ffde36d4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-all-dev Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3 (= 3.4.0-0ubuntu2), libpython3-all-dev (= 3.4.0-0ubuntu2), python3-all (= 3.4.0-0ubuntu2), python3-dev (= 3.4.0-0ubuntu2), python3.4-dev Filename: pool/main/p/python3-defaults/python3-all-dev_3.4.0-0ubuntu2_i386.deb Size: 1002 MD5sum: 81a16efe1edee45fde5c49db6b3029bf SHA1: 97a8aff87876f3582e69b40c9fd9828e1d400058 SHA256: c166f46476403581f4a3bfbd5bdae1eddf43239b0211b62118867cf16018c249 Description: package depending on all supported Python 3 development packages Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 382395d0be4d336f0a3e498b5d6678c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-amqp Priority: extra Section: python Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-amqp Version: 1.3.3-1ubuntu1 Depends: python3:any (>= 3.3.2-2~) Suggests: python-amqp-doc Filename: pool/main/p/python-amqp/python3-amqp_1.3.3-1ubuntu1_all.deb Size: 35276 MD5sum: bc3fe18d205d623b1ff80349046a6a97 SHA1: c42839dbc7ada555913fab0998bd10790d93fc01 SHA256: 6ddbbbe863434057dc5bef44f9b4b2b7911cac7d448b9187977414508cc06e87 Description: Low-level AMQP client (Python3 version) Homepage: https://github.com/celery/py-amqp Description-md5: 70c977b192b4a186946192a7322dcd31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-apparmor Priority: extra Section: python Installed-Size: 431 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Replaces: apparmor-easyprof (<< 2.8.95~2385-0ubuntu1) Depends: python3:any (>= 3.3.2-2~), python3-libapparmor, python3-pkg-resources Breaks: apparmor-easyprof (<< 2.8.95~2385-0ubuntu1) Filename: pool/main/a/apparmor/python3-apparmor_2.8.95~2430-0ubuntu5_i386.deb Size: 60968 MD5sum: 6c8849b03b2632236ba63612de33d872 SHA1: 84ff628a84ea0e25b79fe280f97449c37e2a3446 SHA256: 358880b400d74128e231003a3f07e0be340c795c5ab2aec1d79f3e3517b8823d Description: AppArmor Python3 utility library Homepage: http://apparmor.net/ Description-md5: 3d7a4b621c715e220cd49b284ddd5246 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-apparmor-click Priority: optional Section: admin Installed-Size: 72 Maintainer: Steve Beattie Architecture: all Source: click-apparmor Version: 0.2 Depends: python3:any (>= 3.3.2-2~), apparmor-easyprof, apparmor-easyprof-ubuntu (>= 1.0.17), libnih-dbus1 Filename: pool/main/c/click-apparmor/python3-apparmor-click_0.2_all.deb Size: 10346 MD5sum: 17b8c55bde14d3f40339b35bdc3ce8e6 SHA1: 97966a3f1e286700d6a07da8c6f6ae572bb9e428 SHA256: 7c81ce4ee237646b20966f61c5d0e3cae289ddfed07191b3fac68360a9106b35 Description: Click manifest to AppArmor easyprof conversion tools Description-md5: 753c20b93f7c33ee3e7c64c06bf058bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-apport Priority: optional Section: python Installed-Size: 523 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python3:any (>= 3.3.2-2~), python3-apt (>= 0.7.9), python3-problem-report (>= 0.94), lsb-release Recommends: apport Suggests: python3-launchpadlib Filename: pool/main/a/apport/python3-apport_2.14.1-0ubuntu3_all.deb Size: 74962 MD5sum: a4637905ce63b61ab8e1502446228f18 SHA1: 32e4ae93c854c5998be4aaefcb6478721153b3c2 SHA256: a4a3b1e30b85fac0ec373a7cec1272cc05933b71949ea6b6e9becc04db0ddea7 Description: Python 3 library for Apport crash report handling Homepage: https://wiki.ubuntu.com/Apport Description-md5: 90fc3702a69ad06599a95a46ceb5778a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-apt Priority: standard Section: python Installed-Size: 597 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: i386 Source: python-apt Version: 0.9.3.5 Replaces: python-apt (<< 0.7.98+nmu1) Provides: python3.4-apt Depends: python3 (>= 3.4~), python3 (<< 3.5), libapt-inst1.5 (>= 0.8.11), libapt-pkg4.12 (>= 0.9.11), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), python-apt-common Recommends: lsb-release, iso-codes Suggests: python3-apt-dbg, python-apt-doc Breaks: python-apt (<< 0.7.98+nmu1) Filename: pool/main/p/python-apt/python3-apt_0.9.3.5_i386.deb Size: 135434 MD5sum: bc140cf1facee5b5feaa6c35beefa8e5 SHA1: 6d52debd77926331279eaefab9d0005e5d013b52 SHA256: 5e1021af4156f777f07c52eb8e8df810cde51ca5a976591233e97fbfa4ff02cb Description: Python 3 interface to libapt-pkg Multi-Arch: allowed Description-md5: 4e7bf010b1b89e36309ea2f4b7005936 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python3-apt-dbg Priority: extra Section: debug Installed-Size: 5125 Maintainer: Ubuntu Developers Original-Maintainer: APT Development Team Architecture: i386 Source: python-apt Version: 0.9.3.5 Replaces: python-apt (<< 0.7.98+nmu1) Depends: python3-dbg, python3-apt (= 0.9.3.5), libapt-inst1.5 (>= 0.8.11), libapt-pkg4.12 (>= 0.9.11), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0) Breaks: python-apt (<< 0.7.98+nmu1) Filename: pool/main/p/python-apt/python3-apt-dbg_0.9.3.5_i386.deb Size: 2269766 MD5sum: 97ec832fd80b58f93ab1a64c2e1b3d0a SHA1: 94b3fc99b42b59b570487ea5e366a1589b090b1c SHA256: 9335a6f826ee782b808eba4449a2dbd8bbdad6466b30c6e1b93f3831d73a2a62 Description: Python 3 interface to libapt-pkg (debug extension) Multi-Arch: allowed Description-md5: 9d43d2b6dae33ea4f6ee571da79dbd51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-aptdaemon Priority: extra Section: python Installed-Size: 450 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Depends: python3:any (>= 3.3.2-2~), gir1.2-glib-2.0, python3-apt (>= 0.8.5~ubuntu1), python3-defer (>= 1.0.6), python3-dbus, python3-gi, python3-pkg-resources, iso-codes Recommends: aptdaemon Filename: pool/main/a/aptdaemon/python3-aptdaemon_1.1.1-1ubuntu5_all.deb Size: 66612 MD5sum: 98d66d4504a4a041eaf74e1346f6334f SHA1: 1121b3516a8f08233cb587e17e1aa459f0b6f375 SHA256: d94325a01424f27919617801efd88c744e63206383dfb13c59badb698d5a923d Description: Python 3 module for the server and client of aptdaemon Homepage: https://launchpad.net/aptdaemon Description-md5: 91f4993d2c2013402824b4c41bf6d4fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-aptdaemon.gtk3widgets Priority: extra Section: python Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Replaces: python-aptdaemon-gtk (<< 0.41+bzr582-0ubuntu1) Depends: python3:any (>= 3.3.2-2~), python3-aptdaemon (= 1.1.1-1ubuntu5), python3-gi, gir1.2-gtk-3.0, gir1.2-vte-2.90, aptdaemon-data Conflicts: python-aptdaemon-gtk (<< 0.41+bzr582-0ubuntu1) Filename: pool/main/a/aptdaemon/python3-aptdaemon.gtk3widgets_1.1.1-1ubuntu5_all.deb Size: 13782 MD5sum: 2853d4e6d6ae08096677cdc182ea368c SHA1: 0c152773b9f4f301f16793b630c221817aa19d87 SHA256: 98f99fcbe680217de4571716de07e0f00fed80f9aa4c3dbdca1318387c2d1db1 Description: Python 3 GTK+ 3 widgets to run an aptdaemon client Homepage: https://launchpad.net/aptdaemon Description-md5: c6ba54cbccd863401bb959f2a11871e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-aptdaemon.pkcompat Priority: extra Section: python Installed-Size: 270 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Replaces: python-aptdaemon.pkcompat Provides: packagekit-system-interface Depends: python3:any (>= 3.3.2-2~), python3-aptdaemon (= 1.1.1-1ubuntu5), gir1.2-packagekitglib-1.0 (>= 0.8.9) Conflicts: packagekit, python-aptdaemon.pkcompat Breaks: libpackagekit-glib2-14, libpackagekit-qt2-2 Filename: pool/main/a/aptdaemon/python3-aptdaemon.pkcompat_1.1.1-1ubuntu5_all.deb Size: 32340 MD5sum: dc2ac8b63839f8ca2d1ba701f9c0174f SHA1: 1ebab816665626e77b59cc2df1ebe1177af34aab SHA256: 52b10e2e946e59c984609a1fdb8d38144bc279d89af49ab87233df4ac4dfd850 Description: PackageKit compatibilty for AptDaemon Homepage: https://launchpad.net/aptdaemon Description-md5: 007bb0fc47b4bb0862e902010206e767 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-aptdaemon.test Priority: extra Section: python Installed-Size: 178 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Source: aptdaemon Version: 1.1.1-1ubuntu5 Replaces: python-aptdaemon.test Depends: python3:any (>= 3.3.2-2~), python3-aptdaemon (= 1.1.1-1ubuntu5) Breaks: python-aptdaemon.test Filename: pool/main/a/aptdaemon/python3-aptdaemon.test_1.1.1-1ubuntu5_all.deb Size: 85280 MD5sum: 998000badedd24f68588f88e36599c77 SHA1: 53414aa039577681ad1237a3a8ae6c908fb97184 SHA256: b0e8f576438e57da8c6d6fd9f3212f46635322c4ca06906ec49e743e6ea096e0 Description: Test environment for aptdaemon clients Homepage: https://launchpad.net/aptdaemon Description-md5: 1a901b5468edd109ab5809bbe10ba40d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-astroid Priority: optional Section: python Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: astroid Version: 1.0.1-1 Depends: python3:any (>= 3.3.2-2~), python3-logilab-common (>= 0.60.0) Filename: pool/main/a/astroid/python3-astroid_1.0.1-1_all.deb Size: 48408 MD5sum: 0f273c4ed8e6e1cbf6335d8139f84253 SHA1: a972b9a12c8a329151ee2e8f2590190bbab27492 SHA256: 192c5602345c50a1c4ddc3fd0ce6552a16897cffd1914160746c90431be2796c Description: rebuild a new abstract syntax tree from Python's AST (Python3) Homepage: http://www.astroid.org/ Description-md5: 7c30b05956847c3f30a7c742343d9ff6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-brlapi Priority: extra Section: python Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Source: brltty Version: 5.0-2ubuntu2 Depends: libbrlapi0.6, libc6 (>= 2.4), python3 (>= 3.4~), python3 (<< 3.5) Filename: pool/main/b/brltty/python3-brlapi_5.0-2ubuntu2_i386.deb Size: 41732 MD5sum: 29dcb720bb448d8b72dfdb92155f5ec3 SHA1: 1c48034848b9c2c4d78d7bd6c67bb141f4a9aaf9 SHA256: 8e9b755080892797c0bd3c1655304c48720595281a629212e1bae19f2636675a Description: Braille display access via BRLTTY - Python3 bindings Homepage: http://mielke.cc/brltty/ Description-md5: 784bda01ebb606dab5c96c7730448047 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-bs4 Priority: optional Section: python Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: beautifulsoup4 Version: 4.2.1-1ubuntu2 Depends: python3:any (>= 3.3.2-2~) Recommends: python3-chardet, python3-lxml Filename: pool/main/b/beautifulsoup4/python3-bs4_4.2.1-1ubuntu2_all.deb Size: 57952 MD5sum: 8cc995ddef04805be571800d6a2fd7e1 SHA1: 0561ea349a3533d1554295a6b1b5b33333785e34 SHA256: 5e4810e92f017d0c56bbb8de149a0cbb92bc1f0442d8b5152e1932a6698d41a2 Description: error-tolerant HTML parser for Python 3 Homepage: http://www.crummy.com/software/BeautifulSoup Description-md5: fb6bbcbf2610881d02572826329c9b94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-bsddb3 Priority: optional Section: python Installed-Size: 588 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-bsddb3 Version: 6.0.1-1build1 Provides: python3.4-bsddb3 Depends: libc6 (>= 2.4), libdb5.3, python3 (>= 3.4~), python3 (<< 3.5) Suggests: python3-bsddb3-dbg Filename: pool/main/p/python-bsddb3/python3-bsddb3_6.0.1-1build1_i386.deb Size: 96114 MD5sum: 81be0962d4f59e257ccbafe2b9801a74 SHA1: fef6e04a6e11fbcf099317f332afa67fddc0d9b6 SHA256: d6f44382ca210def178bff0342e574d99887644997461bef4f79f48be0854c14 Description: Python interface for Berkeley DB (Python 3.x) Homepage: http://pypi.python.org/pypi/bsddb3/ Description-md5: 6bc553389b7abdd2f792421d6ebe3828 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-bsddb3-dbg Priority: extra Section: python Installed-Size: 727 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-bsddb3 Version: 6.0.1-1build1 Provides: python3.4-bsddb3-dbg Depends: python3-bsddb3 (= 6.0.1-1build1), python3-dbg, libc6 (>= 2.4), libdb5.3 Filename: pool/main/p/python-bsddb3/python3-bsddb3-dbg_6.0.1-1build1_i386.deb Size: 176652 MD5sum: 844fb1c603c357083c95ea1003bb1e6d SHA1: eacf9be1d6902c20de3927745411939107653a84 SHA256: 102c7d880d849dbb3b0aba901ee4c7aa48aa1a5c1ef733a22e98d0f28939cc41 Description: Python interface for Berkeley DB (debug extension, Python 3.x) Homepage: http://pypi.python.org/pypi/bsddb3/ Description-md5: f1ee0a3cbf3f261f26c7b505c601c74a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-bson Priority: optional Section: python Installed-Size: 126 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: i386 Source: pymongo Version: 2.6.3-1build1 Depends: python3:any (>= 3.3.2-2~) Recommends: python3-bson-ext Filename: pool/main/p/pymongo/python3-bson_2.6.3-1build1_i386.deb Size: 18440 MD5sum: 702f26d3f8a4e1248cf41c958112f526 SHA1: 274006918f86292241cc45c8156c1958db6a3c65 SHA256: ab8ba52b4e1186e3955f61540a9dcf3f9420922f2fb0b68def966f1281c38368 Description: Python3 implementation of BSON for MongoDB Homepage: http://api.mongodb.org/python/ Description-md5: 6ff36ca063d2514878e6687fccf82dc3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-bson-ext Priority: optional Section: python Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: i386 Source: pymongo Version: 2.6.3-1build1 Depends: python3 (>= 3.3), python3 (<< 3.5), libc6 (>= 2.4), python3-bson (= 2.6.3-1build1) Filename: pool/main/p/pymongo/python3-bson-ext_2.6.3-1build1_i386.deb Size: 20534 MD5sum: a7c199172e8ce011100bf4b96f53c4ee SHA1: f1ed156a8d268d6dbd0a12120f604c96cb85d551 SHA256: d7f7caac02db335b1c6e20660aa670202dfabe1ece05b5c3385f4d4be65a6788 Description: C-coded extension to the python3-bson package Homepage: http://api.mongodb.org/python/ Description-md5: 7b7798809e28fcb20fef9ed45e267cd1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-cairo Priority: optional Section: python Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: py3cairo Version: 1.10.0+dfsg-3ubuntu2 Depends: libc6 (>= 2.4), libcairo2 (>= 1.10.0), python3 (>= 3.4~), python3 (<< 3.5) Filename: pool/main/p/py3cairo/python3-cairo_1.10.0+dfsg-3ubuntu2_i386.deb Size: 28014 MD5sum: 63e31bfc07af70190af0dbd212ff5374 SHA1: 0fa2d5ec03a1e8a4ca0fdaa159a874fa468ca4c2 SHA256: b9e2121a557af116504f1543aaf645692574603d972fee9ef4a4d7d3dfba1594 Description: Python 3 bindings for the Cairo vector graphics library Homepage: http://cairographics.org/pycairo/ Description-md5: 7c96e67570598ca1d2c2767b4fa875bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-live, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-cairo-dev Priority: optional Section: python Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: py3cairo Version: 1.10.0+dfsg-3ubuntu2 Depends: python3-cairo (>= 1.10.0+dfsg-3ubuntu2) Suggests: python3-cairo-doc Filename: pool/main/p/py3cairo/python3-cairo-dev_1.10.0+dfsg-3ubuntu2_all.deb Size: 6174 MD5sum: 71b2a7bf4417f4cf075292f9638144b6 SHA1: 3206ffb9be64a482d7ea310f70551e14f79d7af9 SHA256: 0de1a94a596de5444ad04a80c05afd8df6867e9aee6eef37f2485d9a44b32995 Description: Python 3 cairo bindings: development files Homepage: http://cairographics.org/pycairo/ Description-md5: 9448e85857bf4457e5f1411296ee07fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-cairo-doc Priority: optional Section: doc Installed-Size: 711 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: py3cairo Version: 1.10.0+dfsg-3ubuntu2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/py3cairo/python3-cairo-doc_1.10.0+dfsg-3ubuntu2_all.deb Size: 86808 MD5sum: 4ae1b9973842950eaffffb0af166d5db SHA1: ae92eb59507d6585d3c8a5b05ef49cb0f339ae59 SHA256: be41b7a12dd025763cb08fec0805e14d628fa800191a3329f3e11d7e751c0d6f Description: Python 3 cairo bindings: documentation files Homepage: http://cairographics.org/pycairo/ Description-md5: 4f30c844c506040578c62d8c42a25420 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-chardet Priority: optional Section: python Installed-Size: 680 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Version: 2.0.1-1 Depends: python3 (>= 3.1.3-13~) Filename: pool/main/p/python3-chardet/python3-chardet_2.0.1-1_all.deb Size: 169122 MD5sum: 1d330ab737ef0311ca5f04619b02b314 SHA1: 299c61bf0578afbeefe8efa30f8f2ee50a50891e SHA256: c7cdd36f03a2822868c903502c05dc7a778bc7c267a41b01a141e55f1180be8c Description: universal encoding detector Homepage: http://chardet.feedparser.org/ Description-md5: 06369837e684c8d44c1f1ea65094acf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-checkbox-ng Priority: optional Section: utils Installed-Size: 270 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: all Source: checkbox-ng Version: 0.3-2 Depends: python3-plainbox (>= 0.5.3), python3-requests (>= 1.0), python3:any (>= 3.3.2-2~), python3-checkbox-support Filename: pool/main/c/checkbox-ng/python3-checkbox-ng_0.3-2_all.deb Size: 42978 MD5sum: f1ebf89f8b5c969f655b07c57fe55759 SHA1: 64eed449b793e5de5f414c248fd08a9be64e3364 SHA256: 3a26c9c89586b3a7c6685b936453d68525adc1226d2e4d5e568c84d4a4cfbc1d Description: PlainBox based test runner (Python 3 library) Homepage: http://launchpad.net/checkbox Description-md5: 42ccde9c3636a4b5cc3bef2d665e5569 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-checkbox-ng-doc Priority: extra Section: doc Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: all Source: checkbox-ng Version: 0.3-2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/c/checkbox-ng/python3-checkbox-ng-doc_0.3-2_all.deb Size: 24880 MD5sum: 8c923e0fd85984debebf6dd686cbc4bd SHA1: 9bb86bccc2dd5040daf0276373af9afd7758ffee SHA256: 8ac74ee4490661480b66873b91c40d7b937ecc30d30680bb1248f836e887dd9c Description: PlainBox based test runner (documentation) Homepage: http://launchpad.net/checkbox Description-md5: 823ad1ed7dad5454000fa3e97eba45f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-checkbox-support Priority: optional Section: python Installed-Size: 374 Maintainer: Ubuntu Developers Original-Maintainer: Checkbox Developers Architecture: all Source: checkbox-support Version: 0.2-1 Depends: gir1.2-gudev-1.0, python3-pyparsing, udev, udisks2 | udisks, python3:any (>= 3.3.2-2~) Filename: pool/main/c/checkbox-support/python3-checkbox-support_0.2-1_all.deb Size: 55628 MD5sum: 25ee8d39ccf2122817f14f4ebd95c792 SHA1: 57368d8039a2c301248058c7359e83ba95a9a927 SHA256: 4c97bc8310180de77ac02fd15b91bec27bba2ac44c29a32757fdf14a592fbf84 Description: collection of Python modules used by PlainBox providers Homepage: http://launchpad.net/checkbox Description-md5: 1203ac98fe1e0f1063ba39de2ab2ddcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-click Priority: optional Section: python Installed-Size: 352 Maintainer: Colin Watson Architecture: i386 Source: click Version: 0.4.21.1 Replaces: python3-click-package Provides: python3-click-package Depends: python3:any (>= 3.3.2-2~), gir1.2-click-0.4 (= 0.4.21.1), gir1.2-glib-2.0, python3-apt, python3-debian, python3-gi Conflicts: python3-click-package Filename: pool/main/c/click/python3-click_0.4.21.1_i386.deb Size: 42548 MD5sum: 094a0e41df3b7ccd6940f3cd77c46c5e SHA1: 4810d2fb464bae4df2b60dc8afe864139b713d6e SHA256: 4e90a2254fc178682fafd49d1da376dfd9f6256cf98bcada1754a7d6f82dca5a Description: Click packages (Python 3 interface) Description-md5: a55b8833aad665015cec861ba580ce8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-cliff Priority: optional Section: python Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-cliff Version: 1.4.5-1ubuntu2 Depends: python3-prettytable, python3-pyparsing, python3:any (>= 3.3.2-2~), python3-cmd2 Recommends: python-cliff-doc (= 1.4.5-1ubuntu2) Filename: pool/main/p/python-cliff/python3-cliff_1.4.5-1ubuntu2_all.deb Size: 16112 MD5sum: ada2f857e9533636c5a7ae2bcbeaeb2d SHA1: d953c3b0bc33b0303cceee922d2d2e03829eeed8 SHA256: e7c47f77eff8cfeda67feb981a541669132271d9f0751cdfb49fbc0eef89feea Description: command line interface formulation framework - Python 3.x Homepage: https://github.com/dreamhost/cliff Description-md5: 92bb0e6b0f061ce49921f4f0e04e7c86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-cmd2 Priority: optional Section: python Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: all Source: cmd2 Version: 0.6.7-2fakesync1build1 Depends: python3-pyparsing (>= 2.0.1), python3-setuptools (>= 0.6.14), python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/c/cmd2/python3-cmd2_0.6.7-2fakesync1build1_all.deb Size: 19770 MD5sum: be47b1956fb74d03bdc64aee189c336d SHA1: 346a83a3124d8a8b8320c4fee0b3fdb0bb986395 SHA256: ffdb7f41b0b1c9c2306d3b30f0576953214553a63becd086926821a3a9164868 Description: enhanced Python cmd module - Python 3.x Homepage: https://bitbucket.org/catherinedevlin/cmd2 Description-md5: 12cecd9ac0c6d4ec43fb9a6b10f56b88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-commandnotfound Priority: standard Section: python Installed-Size: 62 Maintainer: Michael Vogt Original-Maintainer: Zygmunt Krynicki Architecture: all Source: command-not-found Version: 0.3ubuntu12 Replaces: command-not-found (<< 0.3ubuntu7) Depends: command-not-found-data, lsb-release, python3-apt, python3-gdbm, python3:any (>= 3.3.2-2~) Filename: pool/main/c/command-not-found/python3-commandnotfound_0.3ubuntu12_all.deb Size: 5744 MD5sum: c598a1b8d977783bb60034f33a9d2418 SHA1: 980399a989c83627387f9ed84819e7e2f4cad14b SHA256: ec744eae98f480063fb5ed53152413ab318ff38200cb002d2102a3006aee3a56 Description: Python 3 bindings for command-not-found. Description-md5: 4dcdbcb28916025709b3793075a2eae5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: python3-configglue Priority: optional Section: python Installed-Size: 307 Maintainer: Ubuntu Developers Original-Maintainer: Andrew Mitchell Architecture: all Source: python-configglue Version: 1.1.2-0ubuntu2 Depends: python3-xdg, python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-configglue/python3-configglue_1.1.2-0ubuntu2_all.deb Size: 38124 MD5sum: d256463e43be0f7704ae0f0771866733 SHA1: 77f011f3e7749ad62cd5f7855f610583f78c897f SHA256: 57612dc6d25ca45294a8d7fa4097d9fa71deb079ee47d836d458524cc45683bf Description: Glues together optparse.OptionParser and ConfigParser.ConfigParser Description-md5: 94dd96739570685dbf7149241b69766b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-coverage Priority: optional Section: python Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Ben Finney Architecture: i386 Source: python-coverage Version: 3.7.1+dfsg.1-1ubuntu2 Depends: python3-pkg-resources, python3 (>= 3.4~), python3.4, python3 (<< 3.5), libc6 (>= 2.3.6-6~) Recommends: libjs-jquery-hotkeys, libjs-jquery-isonscreen, libjs-jquery-tablesorter, libjs-jquery Filename: pool/main/p/python-coverage/python3-coverage_3.7.1+dfsg.1-1ubuntu2_i386.deb Size: 68096 MD5sum: 25572bd6a4c80656abf6f9f25922f55a SHA1: bf05069a5b92f983898c9f00450df2f87b518997 SHA256: b1e49c4ca857e6ace58ee50a0d2ecf8974f2036f2482f6578e37029af7cceff4 Description: code coverage tool for Python 3 Homepage: http://nedbatchelder.com/code/coverage/ Description-md5: b5bb2f13eaa04f64a44fb3ab615ca6c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-coverage-dbg Priority: extra Section: debug Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Ben Finney Architecture: i386 Source: python-coverage Version: 3.7.1+dfsg.1-1ubuntu2 Depends: python3-coverage (= 3.7.1+dfsg.1-1ubuntu2), libc6 (>= 2.3.6-6~) Recommends: python3-dbg Filename: pool/main/p/python-coverage/python3-coverage-dbg_3.7.1+dfsg.1-1ubuntu2_i386.deb Size: 23320 MD5sum: 41e1856af436f753abbcb264d9050f23 SHA1: cb9bb507861a4b87cf4cb3305f0b2f089a5e6c54 SHA256: 0cecc91a40df14c102ed49adb47370f7455ade01288b2fa3bd042503a19dd753 Description: code coverage tool for Python 3 – debug library Homepage: http://nedbatchelder.com/code/coverage/ Description-md5: 3f59e6daaaa4ec2f8fae9bfad4452d80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-crypto Priority: optional Section: python Installed-Size: 1341 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Ramacher Architecture: i386 Source: python-crypto Version: 2.6.1-4build1 Provides: python3.4-crypto Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libgmp10 Suggests: python3-crypto-dbg, python-crypto-doc Breaks: python3-keyring (<= 0.7.1-1) Filename: pool/main/p/python-crypto/python3-crypto_2.6.1-4build1_i386.deb Size: 235294 MD5sum: 0042f51619ce624f4414435f608fde79 SHA1: 12654b0ccd3c87861f4a64f49b7306597ef47987 SHA256: dc7af8d85368c393323c7995b5f652ae6ee06fa1a89cd9a91a6fa8909a93b44d Description: cryptographic algorithms and protocols for Python 3 Homepage: http://www.pycrypto.org/ Description-md5: f190b1e90ffcc141d3f3f17913d63ca4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-crypto-dbg Priority: extra Section: debug Installed-Size: 1229 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Ramacher Architecture: i386 Source: python-crypto Version: 2.6.1-4build1 Provides: python3.4-crypto-dbg Depends: python3-crypto (= 2.6.1-4build1), libc6 (>= 2.4), libgmp10, python3-dbg (>= 3.4~), python3-dbg (<< 3.5) Filename: pool/main/p/python-crypto/python3-crypto-dbg_2.6.1-4build1_i386.deb Size: 541568 MD5sum: d7d2fc6da51387f75f27dceb14ed9cee SHA1: 8e16f88b3c7e101b143ebc3519ac1c911f617e33 SHA256: 737bb2548872a39b2ab0ee16fdc49d7f11c6575ce45ffe04aace85b8d8a947c6 Description: cryptographic algorithms and protocols for Python 3 (debug extension) Homepage: http://www.pycrypto.org/ Description-md5: 309ca6979eadefdccfe5edd6724037a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-cxx-dev Priority: optional Section: python Installed-Size: 756 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pycxx Version: 6.2.5-1ubuntu2 Depends: python-cxx-dev, python3-dev, python3:any (>= 3.3.2-2~) Suggests: pkg-config Filename: pool/main/p/pycxx/python3-cxx-dev_6.2.5-1ubuntu2_all.deb Size: 58740 MD5sum: 5218478419b9d3b41e190c3c3c39b843 SHA1: 4341321a89c8466923a73018da871192f93dcdb2 SHA256: 515f780dff533481d23a19e12ecb79d82774ac554763e809670c95aaf23ba0bb Description: Set of facilities to extend Python3 with C++ Homepage: http://cxx.sourceforge.net Description-md5: 8a960c46783beb7399f164e4fb8f3a2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-d2to1 Priority: optional Section: python Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: d2to1 Version: 0.2.11-1build1 Depends: python3-pkg-resources, python3:any (>= 3.3.2-2~) Filename: pool/main/d/d2to1/python3-d2to1_0.2.11-1build1_all.deb Size: 19474 MD5sum: fb735630072ee64ccd05f064fb8a57ea SHA1: 2f7c4378c2b7fc45a1e072f7108249667cd08761 SHA256: 01d41897e494b6fc0e4a85931e698d2c605de830757fdee9df109a2ea8a12a37 Description: Python3 support for distutils2-like setup.cfg files as package metadata Homepage: http://pypi.python.org/pypi/d2to1 Description-md5: 4d9e295347b358c5864b36ee500ee330 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-dbg Priority: extra Section: python Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3 (= 3.4.0-0ubuntu2), libpython3-dbg (= 3.4.0-0ubuntu2), python3.4-dbg (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/python3-dbg_3.4.0-0ubuntu2_i386.deb Size: 1250 MD5sum: 88e5c65102f67401bfeb9914ae273d0d SHA1: 0803c663353512857be8ae1cfc9ab4d91823ca60 SHA256: a902e9330ff0c81df66d5c5da9669e6002a8e3e2e5d5813001378c9606ce7db1 Description: debug build of the Python 3 Interpreter (version 3.4) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 862a2f4f1470c550119e4f708dd18a88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-dbus Priority: standard Section: python Installed-Size: 378 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: dbus-python Version: 1.2.0-2build2 Provides: python3.4-dbus Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libdbus-1-3 (>= 1.5.12), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.12.0) Recommends: python3-gi | python3-dbus.mainloop.qt Suggests: python-dbus-doc, python3-dbus-dbg Filename: pool/main/d/dbus-python/python3-dbus_1.2.0-2build2_i386.deb Size: 80622 MD5sum: 9a575098e76e76ae9f47c62a5f75448b SHA1: 374a491653c551794b7505f7e8ff16973d970515 SHA256: 503d5dfe09c6b67ebc93774b06d7e361822f1e388ca1139f663f252e71a886ce Description: simple interprocess messaging system (Python 3 interface) Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: ce4ab9b30794da472e5f5ffdb2a4dc14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python3-dbus-dbg Priority: extra Section: debug Installed-Size: 503 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Source: dbus-python Version: 1.2.0-2build2 Depends: python3-dbg, python3-dbus (= 1.2.0-2build2), libc6 (>= 2.4), libdbus-1-3 (>= 1.5.12), libdbus-glib-1-2 (>= 0.78), libglib2.0-0 (>= 2.12.0) Filename: pool/main/d/dbus-python/python3-dbus-dbg_1.2.0-2build2_i386.deb Size: 270704 MD5sum: 26ac0f34293bb48aecee31a8d4400146 SHA1: e684d4ec68d43a7bee99ca9f5929fa80bea07c6a SHA256: 25540d396a92e98b5ecae4d5428a697f91285fa45f180441d7d5cefaab041b5e Description: debug build of the D-Bus Python 3 interface Homepage: http://www.freedesktop.org/wiki/Software/DBusBindings#Python Description-md5: fcb0d1c405e4152a21372e32da2a8e84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-dbus.mainloop.pyqt5 Priority: optional Section: python Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbus, python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.1.3), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-dbus.mainloop.pyqt5_5.2.1+dfsg-1ubuntu1_i386.deb Size: 13576 MD5sum: 12f63241a28929ccc6e86669077f710e SHA1: 9abd5f8df8c3075e36dac9c8d0992ae7f1620adc SHA256: 7ab5acfeca5a25423100035531271cffe6bf13bd3ba4d64ff835fe84e6be67fd Description: D-Bus Support for PyQt5 with Python 3 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 2fff1b94c8ebdcb4b1601863909fa579 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-dbus.mainloop.pyqt5-dbg Priority: extra Section: debug Installed-Size: 510 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-dbus-dbg, python3-dbus.mainloop.pyqt5 (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.1.3), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-dbus.mainloop.pyqt5-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 222996 MD5sum: 0df26bc406546931a65c8887ad9d2132 SHA1: 690be72451b74551aac38269263bc9aacb45a036 SHA256: f8c8702bc76f5839ff7f3e6566520a0c16d02ef7a92847beddfcedeecd4e2cde Description: D-Bus Support for PyQt5 (debug extensions for Python 3) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: f2950f95d7dbd7f9a57e41a17b498c09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-dbus.mainloop.qt Priority: optional Section: python Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbus, python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.1.3), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-dbus.mainloop.qt_4.10.4+dfsg-1ubuntu1_i386.deb Size: 16606 MD5sum: f4f174cef17ed6afada3d1b038d67781 SHA1: 7e4e3b8d515997377a1e1a5559239ce4a394bda0 SHA256: eed4c105f333b45231d86d3f21dde67bb57b58b73f2511315337da1e5117b445 Description: D-Bus Support for PyQt4 with Python 3 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: b9f3f4244f8e77a9730a46fee9189553 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: python3-dbus.mainloop.qt-dbg Priority: extra Section: debug Installed-Size: 588 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbg, python3-dbus-dbg, python3-dbus.mainloop.qt (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.1.3), libdbus-1-3 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libqtcore4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-dbus.mainloop.qt-dbg_4.10.4+dfsg-1ubuntu1_i386.deb Size: 176292 MD5sum: ab66c7b3b116bd026e079a835cc1eb54 SHA1: 257323bbccea6b38ed057c17677a50a98f760d3e SHA256: a2a4bead726c1018e6a6ca106ff3f22c73e2a89c2a22ddba475c2a143b5798df Description: D-Bus Support for PyQt4 (debug extensions for Python 3) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 26c0b1367c90a234ef963ea672b0ecc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-dbusmock Priority: optional Section: python Installed-Size: 280 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-dbusmock Version: 0.10.1-1 Depends: python3:any (>= 3.3.2-2~), python3-dbus, python3-gi, gir1.2-glib-2.0 (>= 1.32), dbus-x11 Filename: pool/main/p/python-dbusmock/python3-dbusmock_0.10.1-1_all.deb Size: 46536 MD5sum: 4531fe4198cc7c93219f70da56eccf41 SHA1: 623d565af828954c0417157002631118b01748b8 SHA256: dcc5c020027029cf46e5bcf07a4f609c5c128f2d53c43c98dcb4ec5b2d52410c Description: mock D-Bus objects for tests (Python 3) Homepage: https://gitorious.org/python-dbusmock Description-md5: 3559901ef85e98d3f1852eaa0250da7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-debian Priority: optional Section: python Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian python-debian Maintainers Architecture: all Source: python-debian Version: 0.1.21+nmu2ubuntu2 Depends: python3-chardet, python3-six Recommends: python3-apt Suggests: gpgv Filename: pool/main/p/python-debian/python3-debian_0.1.21+nmu2ubuntu2_all.deb Size: 34924 MD5sum: ee978f4cae6d93b808b285476dc54f0c SHA1: 43348ec4af77fed4e436d778653535b974ce3471 SHA256: e67c13e1805b81d280cae4b3091ca216fa4fab5cc4025776abace981128c50f9 Description: Python 3 modules to work with Debian-related data formats Description-md5: 25a477be653c8618e0ea19bdaf3d27c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-defer Priority: extra Section: python Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Heinlein (devel) Architecture: all Source: python-defer Version: 1.0.6-2build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-defer/python3-defer_1.0.6-2build1_all.deb Size: 10662 MD5sum: 347608da765f3f5e1daae3b702ac1512 SHA1: ed06dce822049c05abb467a4b67e6aab9b19ef8b SHA256: 0b3a999c8bcbfc547c59bd35abd7bad256dad06032bbbb3d45e7737e7cea7815 Description: Small framework for asynchronous programming (Python 3) Homepage: https://launchpad.net/python-defer Description-md5: 999d8e0049a5ae6761f7023ff6b602c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-dev Priority: optional Section: python Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Replaces: python3.1 (<< 3.1.2+20100706-3) Depends: python3 (= 3.4.0-0ubuntu2), libpython3-dev (= 3.4.0-0ubuntu2), python3.4-dev (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/python3-dev_3.4.0-0ubuntu2_i386.deb Size: 1194 MD5sum: b405067d0ab13ea75ffdd57b32add37a SHA1: 68df04bd987403fcd5eb8e7898a0b02777586a63 SHA256: a9e6c2b95e89d8222e04ba56a6e105d12994969ff04c4c0eda875f16f159b39b Description: header files and a static library for Python (default) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 8d12a93994da0c57873ee46478ea0257 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-distupgrade Priority: standard Section: python Installed-Size: 637 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-release-upgrader Version: 1:0.220.2 Replaces: python3-update-manager (<< 1:0.165) Depends: python3:any (>= 3.3.2-2~), python3-update-manager (>= 1:0.196.2~), python3-apt (>= 0.8.5~), lsb-release Breaks: python3-update-manager (<< 1:0.165) Filename: pool/main/u/ubuntu-release-upgrader/python3-distupgrade_0.220.2_all.deb Size: 103332 MD5sum: e6544b4d7ea71c53d030cb31f296ac19 SHA1: fd8101191c494e5dead87c64118f95a441d73ef1 SHA256: 048ad87fc59960b04ad34d8b7e3d115a4b1cbe63100a46d7f8beb92940108633 Description: manage release upgrades Description-md5: f6e22affea82016bac7bf2c9371af261 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python3-distutils-extra Priority: optional Section: python Installed-Size: 101 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: all Source: python-distutils-extra Version: 2.38-1build1 Depends: python3:any (>= 3.3.2-2~), intltool Suggests: devscripts Filename: pool/main/p/python-distutils-extra/python3-distutils-extra_2.38-1build1_all.deb Size: 14996 MD5sum: ca6c1663cdf99c8bc39c25f747983926 SHA1: 79a560ae854613cb21660442999f193bc1dc58a2 SHA256: 688185b94cb5f40ef5be24291d3388034702b71aa5762a18b81e756d07428408 Description: enhancements to the Python3 build system Description-md5: bd9e232ec557429c1c7dd0062eaa54e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-doc Priority: optional Section: doc Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3.4-doc (>= 3.4.0-0~) Suggests: python3 (>= 3.4.0-0ubuntu2), python3-examples Filename: pool/main/p/python3-defaults/python3-doc_3.4.0-0ubuntu2_all.deb Size: 7060 MD5sum: 4d2c07ea5365a9ede6b32af3ebcafaa2 SHA1: f8e55bad065ea054efacf91026f6cc279e3a7249 SHA256: 8ab7ae09bc9d79f9fc2aa1b315dddde6188c96064edbb2206faf33073e351d24 Description: documentation for the high-level object-oriented language Python 3 Homepage: http://www.python.org/ Description-md5: 0007ea460c04e74e454a036590765006 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-docutils Priority: optional Section: python Installed-Size: 1688 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-docutils Version: 0.11-3 Provides: docutils Depends: python3:any (>= 3.3.2-2~), python3-roman, docutils-common (= 0.11-3) Recommends: python3-pil, python3-pygments, libpaper-utils Suggests: texlive-latex-recommended, texlive-latex-base, texlive-lang-french, fonts-linuxlibertine | ttf-linux-libertine, docutils-doc Conflicts: docutils-writer-odt, python-docutils (<< 0.7-3~), python-odtwriter Breaks: python3-sphinx (<< 1.1.3+dfsg-7~) Filename: pool/main/p/python-docutils/python3-docutils_0.11-3_all.deb Size: 346800 MD5sum: fad38179d61f6158540d7a46618e40eb SHA1: d0cc4c7cbe79cf17c9a219bbd89b51a680433c6b SHA256: 614e4ab7593f3deb41378856ce6b92d4d8ee28d35b4b7cb18bd8fa14f1310652 Description: text processing system for reStructuredText (implemented in Python 3) Homepage: http://docutils.sourceforge.net/ Description-md5: 01bddb85f9679cb9c0960674ca84d929 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-examples Priority: optional Section: python Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3-defaults Version: 3.4.0-0ubuntu2 Depends: python3 (>= 3.4.0-0ubuntu2), python3.4-examples (>= 3.4.0-0~) Filename: pool/main/p/python3-defaults/python3-examples_3.4.0-0ubuntu2_all.deb Size: 956 MD5sum: 89904340485eab7522853d851d16564c SHA1: 9713cba5aad0ff83eb9d746e8c93c8552e3f1025 SHA256: 0d3309a5ac54e715090291b24ae75af87f2792f19688f98734b8eba3ad22dd48 Description: examples for the Python language (default version) Homepage: http://www.python.org/ Description-md5: 977279e98d68c8e762ea58fe8c0a6784 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-extras Priority: optional Section: python Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-extras Version: 0.0.3-2ubuntu1 Depends: python3:any (>= 3.3.2-2~), python3-testtools Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-extras/python3-extras_0.0.3-2ubuntu1_all.deb Size: 6548 MD5sum: 870b5a3182c58b7dd4fb6952802f14cf SHA1: 374b90686d01a8203186fc96175d14451bd0d6ae SHA256: 0908ec9ace5a6e2c3a7450b72d96601a1f18e5a8c04ebce5aeafee78012b10b9 Description: extensions to the Python standard library (Python 3.x) Homepage: http://pypi.python.org/pypi/extras Description-md5: 02644786849446bb9cf4067d67d7f4b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-feedparser Priority: optional Section: python Installed-Size: 235 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: feedparser Version: 5.1.3-2 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/f/feedparser/python3-feedparser_5.1.3-2_all.deb Size: 46020 MD5sum: ab50c0f10c305d83a793ffebe10f5d8c SHA1: 650da7fb90fec0f03542554b4646cb2f6eda342c SHA256: fd30fd876a58452674eea5e3f4eed4866fa5766c4260d52499f6a6c2e6f309d6 Description: Universal Feed Parser for Python 3 Homepage: https://code.google.com/p/feedparser/ Description-md5: 3798c5f98dfe4eafe184b06860237110 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-fixtures Priority: optional Section: python Installed-Size: 179 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Source: python-fixtures Version: 0.3.14-1ubuntu2 Depends: python3-testtools (>= 0.9.11), python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-fixtures/python3-fixtures_0.3.14-1ubuntu2_all.deb Size: 25972 MD5sum: c108447a5c0e299205bdcdaf9805d70b SHA1: 93d3a964ada4d1d2f1429de3370ca6a6474062da SHA256: e547e15a10f24086de3b594bfaf84e36a1a7e1d6e6704c61e774055d91ee7083 Description: PyUnit extension for defining test fixtures outside of test cases - Python 3.x Homepage: http://pypi.python.org/pypi/fixtures Description-md5: abcb44fae2fd23e9f3cc40ed4100f616 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-gdbm Priority: standard Section: python Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-stdlib-extensions Version: 3.4.0-0ubuntu1 Replaces: python3.0 (<< 3.0.1) Provides: python3.4-gdbm Depends: python3 (>= 3.4), python3 (<< 3.5), libc6 (>= 2.4), libgdbm3 (>= 1.8.3) Suggests: python3-gdbm-dbg Filename: pool/main/p/python3-stdlib-extensions/python3-gdbm_3.4.0-0ubuntu1_i386.deb Size: 12120 MD5sum: 11b87e7feeed143eda63b3efe1a750ec SHA1: a677d1aa4f3dec660f9e79e1b976421a0d543244 SHA256: 214ba22d26e69f1a382dfc6658ab71b0be391f637da339333ef7234c643bc4c2 Description: GNU dbm database support for Python 3.x Multi-Arch: same Description-md5: f21d01c59fd918dd8e93a985f8b900dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: python3-gdbm-dbg Priority: extra Section: python Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-stdlib-extensions Version: 3.4.0-0ubuntu1 Depends: python3-gdbm (= 3.4.0-0ubuntu1), libc6 (>= 2.4), libgdbm3 (>= 1.8.3) Filename: pool/main/p/python3-stdlib-extensions/python3-gdbm-dbg_3.4.0-0ubuntu1_i386.deb Size: 19558 MD5sum: 54c2d1460a884b24afc3f53a76d2db9f SHA1: 4cd2ed4c1d17572a8e0414cdb2f36f42511a5aaf SHA256: 829848a2cc5fb5c2e33170b05416a2db91d627970cc09529c4f90528461f5b08 Description: GNU dbm database support for Python 3.x (debug extension) Multi-Arch: same Description-md5: 2acef7566a549a1876868ca568136539 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-genshi Priority: optional Section: python Installed-Size: 926 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: genshi Version: 0.7-3 Depends: python3:any (>= 3.3.2-2~) Suggests: doc-base, python-genshi-doc, python3-pkg-resources Filename: pool/main/g/genshi/python3-genshi_0.7-3_i386.deb Size: 124108 MD5sum: 1c15c1b3ff7ab3657d6b207304f1dd95 SHA1: 5f9d4fee721f4677aa84034b30eae812fff30f90 SHA256: 5c861902892e04159c5e9ded2094b39be3e75e80eab9c73da8a283b6c63a4997 Description: Python XML-based template engine - Python 3.x Homepage: http://genshi.edgewall.org/ Description-md5: 16a97ee4a6a4ef84b022ae95ff491e5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-germinate Priority: optional Section: python Installed-Size: 248 Maintainer: Colin Watson Architecture: all Source: germinate Version: 2.16 Depends: python3:any (>= 3.3.2-2~), python3-apt (>= 0.7.93.2~) Filename: pool/main/g/germinate/python3-germinate_2.16_all.deb Size: 35600 MD5sum: 1cf83b6eab7d401794e50c1e2809dc34 SHA1: 7049829f5b4a7be4008c9a754e35f18a4913e821 SHA256: 78d498b1915c768a9a9625769bc80a28c27917f6069e7d1aa75ba5e04d2922ee Description: expand dependencies in seed packages (Python 3 interface) Description-md5: 8b04dadf046a3b0f9097dd87f3ebfff2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-gi Priority: standard Section: python Installed-Size: 646 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: pygobject Version: 3.12.0-1 Replaces: python3-gobject Provides: python3-gobject Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libgirepository-1.0-1 (>= 1.33.10), libglib2.0-0 (>= 2.38.0), gir1.2-glib-2.0 (>= 1.35.9) Conflicts: python3-gobject Filename: pool/main/p/pygobject/python3-gi_3.12.0-1_i386.deb Size: 151882 MD5sum: eaa05b024559f08452a098c1858598fd SHA1: 19e678655ae90e79eba273a000ce2b40bc89c0c5 SHA256: 696272d7198ceda520771b96bf686e5ee1359bbca8f39bd16f1c62119d93196b Description: Python 3 bindings for gobject-introspection libraries Homepage: https://wiki.gnome.org/PyGObject Description-md5: f0850471c776a975236399e3050363aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python3-gi-cairo Priority: optional Section: python Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: pygobject Version: 3.12.0-1 Depends: python3 (<< 3.5), python3 (>= 3.4~), libc6 (>= 2.3.6-6~), libcairo2 (>= 1.10.0), libglib2.0-0 (>= 2.38.0), python3-gi (= 3.12.0-1), python3-cairo (>= 1.10.0+dfsg-3~exp2) Filename: pool/main/p/pygobject/python3-gi-cairo_3.12.0-1_i386.deb Size: 5572 MD5sum: 3bf70c77c50ae1a567c03e10b6a1c764 SHA1: 91799ad955b46f17e70005be881cc792ce0f17e1 SHA256: e0633841c7d697e6b3ea1190b01f05ef730ce626ee143c5714f5f2bfd9653943 Description: Python 3 Cairo bindings for the GObject library Homepage: https://wiki.gnome.org/PyGObject Description-md5: 9b3c3678114febdf17db503bab5e0915 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-live, lubuntu-live, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-gi-dbg Priority: extra Section: debug Installed-Size: 825 Maintainer: Ubuntu Developers Original-Maintainer: Josselin Mouette Architecture: i386 Source: pygobject Version: 3.12.0-1 Replaces: python3-gobject-dbg Provides: python3-gobject-dbg Depends: python3-dbg (<< 3.5), python3-dbg (>= 3.4~), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libgirepository-1.0-1 (>= 1.33.10), libglib2.0-0 (>= 2.38.0), python3-gi (= 3.12.0-1) Conflicts: python3-gobject-dbg Filename: pool/main/p/pygobject/python3-gi-dbg_3.12.0-1_i386.deb Size: 462398 MD5sum: 976fc8ba99f0f47bbdba2d251425b674 SHA1: 1a4ead20f3e9739c0facba2ca33de1991a6c030a SHA256: 80355707d2b632fc7685151df339b9b7cd496669903901bbf76aa513731705cf Description: Python 3 bindings for gobject-introspection libraries (debug extension) Homepage: https://wiki.gnome.org/PyGObject Description-md5: cee150898742e87b20dceb8ab5b02a97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-gpgme Priority: optional Section: python Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Miguel Di Ciurcio Filho Architecture: i386 Source: pygpgme Version: 0.3-0ubuntu3 Provides: python3.4-gpgme Depends: python3 (<< 3.5), python3 (>= 3.4~), libc6 (>= 2.4), libgpgme11 (>= 1.2.0) Filename: pool/main/p/pygpgme/python3-gpgme_0.3-0ubuntu3_i386.deb Size: 22678 MD5sum: 7a4f7f2d9090495afc16b84e76409ba7 SHA1: 8c244679e840451ff17e328abf968920731f4665 SHA256: feb93e82119065dcdba0949e07c009d784b2a45aa3c85eed8fab97ae20d32d89 Description: python wrapper for the GPGME library (Python 3) Homepage: https://launchpad.net/products/pygpgme Description-md5: 80ae2a5cd4d299ffe9ff7d29634cc771 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-gpgme-dbg Priority: extra Section: debug Installed-Size: 358 Maintainer: Ubuntu Developers Original-Maintainer: Miguel Di Ciurcio Filho Architecture: i386 Source: pygpgme Version: 0.3-0ubuntu3 Provides: python3.4-gpgme-dbg Depends: python3-gpgme (= 0.3-0ubuntu3), libc6 (>= 2.4), libgpgme11 (>= 1.2.0) Recommends: python3-dbg Filename: pool/main/p/pygpgme/python3-gpgme-dbg_0.3-0ubuntu3_i386.deb Size: 114230 MD5sum: 46d16db113c78e4084c29efa4a394000 SHA1: ee73c4f8afb408c159befb4a79acfa18451c2f49 SHA256: 2aa7a00586105862179f54e5d3a5471a68c079012faa22ea58793ea8b87ac21b Description: python wrapper for the GPGME library (debug extension) (Python 3) Homepage: https://launchpad.net/products/pygpgme Description-md5: 125031b5ba6fea5efee4260e16617d61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-gridfs Priority: optional Section: python Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: all Source: pymongo Version: 2.6.3-1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/pymongo/python3-gridfs_2.6.3-1build1_all.deb Size: 11162 MD5sum: 86e9915996be0ccc810189d39046c0fb SHA1: 07bb51001e581dffee7a9dde65a11a0a937753db SHA256: a4e2c0f893ac75de083b5e8dc3686b1527e1e3a590ea1b3a228b5b0bb4c2937c Description: Python3 implementation of GridFS for MongoDB Homepage: http://api.mongodb.org/python/ Description-md5: c945face2e12c0bcbca6132ced76cd28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-httplib2 Priority: optional Section: python Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: all Source: python-httplib2 Version: 0.8-2build1 Depends: python3:any (>= 3.3.2-2~), ca-certificates Filename: pool/main/p/python-httplib2/python3-httplib2_0.8-2build1_all.deb Size: 27196 MD5sum: 287e690b5783e2ef8ccb8b6b72a04c64 SHA1: 82352ccd01837704c7849dd404371808eaa9c8cf SHA256: eb267731b2ebca3e8db701aaad47a1ca8d3c104f2aa5822bd6dd35f70b5c8333 Description: comprehensive HTTP client library written for Python3 Homepage: http://code.google.com/p/httplib2/ Description-md5: 43b4287928c3dbd3553ba0279a8b162d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-icu Priority: optional Section: python Installed-Size: 598 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyicu Version: 1.5-2ubuntu4 Replaces: python3-pyicu (<< 1.5-2ubuntu1~) Provides: python3.4-icu Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1), python3 (>= 3.4~), python3 (<< 3.5) Breaks: python3-pyicu (<< 1.5-2ubuntu1~) Filename: pool/main/p/pyicu/python3-icu_1.5-2ubuntu4_i386.deb Size: 143262 MD5sum: 24f4f36318e75fffb3efc30d1d4f1305 SHA1: c494ddfb0f2efeb3db8fee4e935987f4f80480ba SHA256: 3676df0ea5cf4413ea40cc3e901e5d86b64765e7c21550daa04a57f43fd1208d Description: Python 3 extension wrapping the ICU C++ API Homepage: http://pyicu.osafoundation.org/ Description-md5: c132dca8ad04ede752c4adc35460cd93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: python3-icu-dbg Priority: extra Section: debug Installed-Size: 2408 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyicu Version: 1.5-2ubuntu4 Provides: python3.4-icu-dbg Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libicu52 (>= 52~m1-1~), libstdc++6 (>= 4.1.1), python3-dbg (<< 3.5), python3-dbg (>= 3.4~), python3-icu (= 1.5-2ubuntu4) Filename: pool/main/p/pyicu/python3-icu-dbg_1.5-2ubuntu4_i386.deb Size: 566204 MD5sum: b01bdb54c18ff04913645088b3a7b332 SHA1: 5dff9c832ab142e1e841142462214342e305c92d SHA256: 65e94bc0122b198a458de6b0e0e34c5ddfd2ac0105f3a434c9aeb9ef75221d5a Description: Python 3 extension wrapping the ICU C++ API (debug extension) Homepage: http://pyicu.osafoundation.org/ Description-md5: 387c97faeb1c422866b4185f26db825c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-imaging Priority: optional Section: python Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python3-pil (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python3-imaging_2.3.0-1ubuntu3_all.deb Size: 2714 MD5sum: e4fbe577ae5278122988df93a6da3645 SHA1: bf6bfd78e7d53d93bfd8a9a73397c1432161735f SHA256: 47a66581b8cc7433077d55b134dce0ecf6b24f85565373ad2e89bcdf2ead1dc7 Description: Dummy transitional package Description-md5: 1ecff9703c33ade6d316b72d28003ef5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-imaging-dbg Priority: extra Section: debug Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python3-pil-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python3-imaging-dbg_2.3.0-1ubuntu3_all.deb Size: 2722 MD5sum: 03230e026d1c43010819a9705b7d1a78 SHA1: a90a02e14a1ecaee36e9c9bd69b6333cd4a1e56c SHA256: 94cae61513ef7dea212ca2a2009386b586ef85ece90c32faff10dd3c89fcfe72 Description: Dummy transitional package Description-md5: 0e45edd96e44ff0ac78be66e8171a996 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-imaging-sane Priority: optional Section: python Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python3-sane (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python3-imaging-sane_2.3.0-1ubuntu3_all.deb Size: 2720 MD5sum: f35d722ae1a217454261e7518c836e34 SHA1: 9664cbf7560cc3690823d04931b5e58406151497 SHA256: 9b084f747586cbfdc4cc168e434cccd29b9dbd6951034826f8f177a6815ba4a5 Description: Dummy transitional package Description-md5: 13cada63fcd7a132a768edfddc5657ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-imaging-sane-dbg Priority: extra Section: debug Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python3-sane-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python3-imaging-sane-dbg_2.3.0-1ubuntu3_all.deb Size: 2734 MD5sum: abd3eea46441291cc1940c6f84c306a0 SHA1: cefb68db3aa38a7073a549a280400d7caea48733 SHA256: 595d14b4bfc87644c3d0426a94d1ecec64b7be1c0daab16ef386b0b1b76b5d71 Description: Dummy transitional package Description-md5: 764439e0f83822ee0276e87d8c7439fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-imaging-tk-dbg Priority: extra Section: debug Installed-Size: 32 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: pillow Version: 2.3.0-1ubuntu3 Depends: python3-pil.imagetk-dbg (>= 2.3.0-1ubuntu3) Filename: pool/main/p/pillow/python3-imaging-tk-dbg_2.3.0-1ubuntu3_all.deb Size: 2736 MD5sum: c73b4ad45ceb7b0d7e6591c7d035e920 SHA1: 049a4b23a5786342e2f65cd094688a83bde620ec SHA256: f59c2adcf4fb3575e180b288e129df26a8cc3d52f52d0c6882ef90ae0565d9c8 Description: Dummy transitional package Description-md5: fb13b128591846a962db17dfd56d2590 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-ipaddr Priority: optional Section: python Installed-Size: 103 Maintainer: Ubuntu Developers Original-Maintainer: Scott Kitterman Architecture: all Source: python-ipaddr Version: 2.1.10-1 Depends: python3 (>= 3.1.3-13~) Filename: pool/main/p/python-ipaddr/python3-ipaddr_2.1.10-1_all.deb Size: 16538 MD5sum: 4b879a657774df8156b456b18b63f90e SHA1: 578747540ab83932cfdea59c228244f202c672fe SHA256: 625a7a3b970bcebe254232e9d73e3f4a1d7668d49c7bb80c446164078be34595 Description: Python3 module for working with IP addresses, both IPv4 and IPv6 Homepage: http://code.google.com/p/ipaddr-py/ Description-md5: 7b99ff6f5d9411d3a141f94c33424e57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-iso8601 Priority: extra Section: python Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Benjamin Mako Hill Architecture: all Source: python-iso8601 Version: 0.1.10-0ubuntu1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-iso8601/python3-iso8601_0.1.10-0ubuntu1_all.deb Size: 8980 MD5sum: 1be0821ab14ce35aee7579ac0d4ac63b SHA1: 2db6999b8159c308e70ab8bb4615e11e820e939f SHA256: b398d2bc34f3bbe3d22d337878be95f819f66f9e3be59e76930f02bcbdd06880 Description: python module to parse ISO 8601 dates (python3) Homepage: https://code.google.com/p/pyiso8601 Description-md5: a0fd6ec1d804af346eea88ab98efb73e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-itsdangerous Priority: optional Section: python Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-itsdangerous Version: 0.22+dfsg1-1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-itsdangerous/python3-itsdangerous_0.22+dfsg1-1build1_all.deb Size: 11526 MD5sum: f02164ee50f9f39c9f991c52066a7225 SHA1: 31894fb6b4d2777bcb22ffb512dd36388d24bd3c SHA256: d5d981f3fba22ea31345f578d55a416f2b116fc73bd3c7a22dcb494c66f5f817 Description: Various helpers to pass trusted data to untrusted environment - python 3.x Homepage: http://pythonhosted.org/itsdangerous/ Description-md5: ee1ecaa29c94b5fef0fb529cdc234f68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-jinja2 Priority: optional Section: python Installed-Size: 1024 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: jinja2 Version: 2.7.2-2 Depends: python3-markupsafe, python3:any (>= 3.3.2-2~) Recommends: python3-pkg-resources Suggests: python-jinja2-doc Filename: pool/main/j/jinja2/python3-jinja2_2.7.2-2_all.deb Size: 163166 MD5sum: 3234b6b29818220b3fdcd8373a29d988 SHA1: aba48e490a972d0a3d7d992655c9275c5d43ebee SHA256: e0408cea133a9b85025e0aee70569b6da4baf69b1435da633b75685132663343 Description: small but fast and easy to use stand-alone template engine Homepage: http://jinja.pocoo.org/2/ Description-md5: 946c5e58f8736a9521b16a6d4c1157e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-json-patch Priority: optional Section: python Installed-Size: 27 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-json-patch Version: 1.3-4 Depends: python3-jsonpatch Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-json-patch/python3-json-patch_1.3-4_all.deb Size: 2330 MD5sum: b1453b326e0810b2cb11e9d60fa7bcc5 SHA1: b7c0d0687376e270894c847784767a828866ec6a SHA256: 9c5fcbe0d48a7dfd34494fb9ce53e3d9d8e2049a155c8662e9dbf6fdc3b51141 Description: library to apply JSON patches - python 3.x transitional package Homepage: https://github.com/stefankoegl/python-json-patch Description-md5: bd63c298c0c04d3692cd1d593a584ede Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-json-pointer Priority: optional Section: python Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-json-pointer Version: 1.0-2build1 Depends: python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-json-pointer/python3-json-pointer_1.0-2build1_all.deb Size: 5232 MD5sum: 75a8fcf3d312575716bc8024c2111f80 SHA1: 04faf44742151846584be91aa397923d1bea4ca1 SHA256: 2bffea7f00fff461bfbae7a960ca303e442fbbb66a3a17908e440a597f3fdc7c Description: resolve JSON pointers - python 3.x Homepage: https://github.com/stefankoegl/python-json-pointer Description-md5: 946c3fd3546f27b8c86eccbbcc8c2ea1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-jsonpatch Priority: optional Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-json-patch Version: 1.3-4 Replaces: python3-json-patch (<< 1.3-3~) Depends: python3-json-pointer, python3.4, python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Breaks: python3-json-patch (<< 1.3-3~) Filename: pool/main/p/python-json-patch/python3-jsonpatch_1.3-4_all.deb Size: 9030 MD5sum: f3b141f9a148e89187f1ed5a47faf556 SHA1: a96bb4d2bdbd84bfd4d23078cd28070980097979 SHA256: 67ab0b521a1a1d37a4aa782d7969b03bb4f85aac861083b1b81f1afd002ac5db Description: library to apply JSON patches - python 3.x Homepage: https://github.com/stefankoegl/python-json-patch Description-md5: e2760b255227a65faccebe573bfad42f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-jsonschema Priority: optional Section: python Installed-Size: 162 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-jsonschema Version: 2.3.0-1build1 Depends: python3 (>= 3.2.3) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-jsonschema/python3-jsonschema_2.3.0-1build1_all.deb Size: 25310 MD5sum: 512847082c10a631aaf26f00ac67beb8 SHA1: 02a256b2c3b5cfd0bb5d26b4b5690ebafd98ab4e SHA256: 53a7df71d832d9c134f79d39df9c0410490e3948e1bc406284cb1409f4e61e88 Description: An(other) implementation of JSON Schema (Draft 3) for Python 3 Homepage: https://github.com/Julian/jsonschema Description-md5: 038097a0a6e4237f9c773fdb699077bc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-junitxml Priority: optional Section: python Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Source: pyjunitxml Version: 0.6-1.1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/pyjunitxml/python3-junitxml_0.6-1.1build1_all.deb Size: 7524 MD5sum: 1227e1ea0aefa9d362da0a0ffb12d5a4 SHA1: c9445a41d1502a0a02e0886db2a21a1c78a2e9dc SHA256: 9c67bc0f9e4fc3fed90f54f53f8fe4341f36030c6b8c063b60993558a2a8bcfa Description: PyUnit extension for reporting in JUnit compatible XML Description-md5: 2fe874e2f284247bf4fc36d37c2cb1e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-lazr.uri Priority: optional Section: python Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Stefano Rivera Architecture: all Source: lazr.uri Version: 1.0.3-1build1 Depends: python3-pkg-resources, python3:any (>= 3.3.2-2~) Filename: pool/main/l/lazr.uri/python3-lazr.uri_1.0.3-1build1_all.deb Size: 12538 MD5sum: 8bc65a2d73a64f30226ed2c62f7429d2 SHA1: 6a1c29b57305970587f6a4f1c1a92d72164a0cf7 SHA256: 2faafd7dd2bc7f29ba9c652ebddee2ace587f056f24ed36c9d5620af643eb91f Description: library for parsing, manipulating, and generating URIs Homepage: https://launchpad.net/lazr.uri Description-md5: c641be41ee0268c4507c2037d00ccf7e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-libapparmor Priority: extra Section: python Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Kees Cook Architecture: i386 Source: apparmor Version: 2.8.95~2430-0ubuntu5 Depends: python3 (>= 3.4~), python3 (<< 3.5), libapparmor1 (>= 2.8.94-0ubuntu1), libc6 (>= 2.4) Filename: pool/main/a/apparmor/python3-libapparmor_2.8.95~2430-0ubuntu5_i386.deb Size: 22224 MD5sum: 4ef78b4ebe4a1ef9179b57ce6a9226ad SHA1: 5e2c19aaabe500b6a17b12eb5a6c8274304a4dd4 SHA256: 1378c664db013d49c96807bf9428511437cf7693e786abcce7e699fc18f00221 Description: AppArmor library Python3 bindings Homepage: http://apparmor.net/ Description-md5: 48fb2712cf2310bd6af2d05c836cc285 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-logilab-common Priority: optional Section: python Installed-Size: 588 Maintainer: Ubuntu Developers Original-Maintainer: Sandro Tosi Architecture: all Source: logilab-common Version: 0.61.0-1 Depends: python3:any (>= 3.3.2-2~), python3 Filename: pool/main/l/logilab-common/python3-logilab-common_0.61.0-1_all.deb Size: 110922 MD5sum: 0cf471814baacb1f3763de85ff5f215b SHA1: c4194215c0ded881b317c9d0d99595a2230fa1a5 SHA256: 40ae2ca94b127ab1277079442e631ec4c9e0334dab99ed163274c5e7fdc1f62f Description: useful miscellaneous modules used by Logilab projects (Python3) Homepage: http://www.logilab.org/project/logilab-common Description-md5: c1b954b04fb86612866beed61bd4551a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-louis Priority: extra Section: python Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: liblouis Version: 2.5.3-2ubuntu1 Depends: python3:any (>= 3.3.2-2~), liblouis2 (>= 2.5.3-2ubuntu1) Filename: pool/main/libl/liblouis/python3-louis_2.5.3-2ubuntu1_all.deb Size: 7120 MD5sum: 7f18f8f8f122577526b4956e0b0a7e64 SHA1: cb1514d4a46872ca8d3d3b23e025217218c7a2eb SHA256: aba9f48a97ea4656cf665b9bddedf0cf64d6258635a7977c517099c6b58242e0 Description: Python bindings for liblouis Homepage: http://code.google.com/p/liblouis/ Description-md5: 24be43511537b9436824c2c2c1c60986 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-lxc Priority: optional Section: python Installed-Size: 137 Maintainer: Ubuntu Developers Architecture: i386 Source: lxc Version: 1.0.3-0ubuntu3 Depends: liblxc1 (= 1.0.3-0ubuntu3), python3 (<< 3.5), python3 (>= 3.4~), libc6 (>= 2.4) Recommends: lxc-templates (>= 0.8.0~rc1-4ubuntu43) Filename: pool/main/l/lxc/python3-lxc_1.0.3-0ubuntu3_i386.deb Size: 19008 MD5sum: 6ef3a9ddc8d1cf04ba3f3a5a6d3c47c5 SHA1: 3f145f82461337f1ba6cc1789cdf9ba248bc7ca1 SHA256: 3460425dff3d150a3b33a549157cb13d8c17d702fca7f32d3859f42423d28dda Description: Linux Containers userspace tools (Python 3.x bindings) Homepage: http://linuxcontainers.org Description-md5: ee623a31db200104a7207d9de42b8f04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-lxml Priority: optional Section: python Installed-Size: 2316 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: lxml Version: 3.3.3-1 Provides: python3.4-lxml Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libxml2 (>= 2.9.0), libxslt1.1 (>= 1.1.26) Suggests: python3-lxml-dbg Filename: pool/main/l/lxml/python3-lxml_3.3.3-1_i386.deb Size: 579766 MD5sum: 87a97d5ee59e4994e13f7397b60885f2 SHA1: 0b3cbb73c82b93f0acc995780cc4310fc8d04436 SHA256: b93c523510dc77e1ef21302a6dd6f8e99e2b6921b5db753cb6127c2f15939734 Description: pythonic binding for the libxml2 and libxslt libraries Homepage: http://lxml.de/ Description-md5: e8e2f787207511401ce91418255455e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-lxml-dbg Priority: extra Section: debug Installed-Size: 10596 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: lxml Version: 3.3.3-1 Provides: python3.4-lxml-dbg Depends: python3-lxml (= 3.3.3-1), python3-dbg, libc6 (>= 2.4), libxml2 (>= 2.9.0), libxslt1.1 (>= 1.1.26) Filename: pool/main/l/lxml/python3-lxml-dbg_3.3.3-1_i386.deb Size: 2454190 MD5sum: 442bc2789ee207a12b057b5ec3dcf686 SHA1: 431bd757b7a3b7de845add706ead9f0f9a428bb1 SHA256: 7f60a8085851f2a17299f15a28a1fb55ef6209bdcb844b324804f8fdcf0d6eef Description: pythonic binding for the libxml2 and libxslt libraries (debug extension) Homepage: http://lxml.de/ Description-md5: dc60d3e32c93635f03d6f9f774d9845a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-magic Priority: extra Section: python Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Luk Claes Architecture: all Source: file Version: 1:5.14-2ubuntu3 Depends: python3:any (>= 3.3.2-2~), libmagic1 (>= 1:5.14-2ubuntu3) Filename: pool/main/f/file/python3-magic_5.14-2ubuntu3_all.deb Size: 4570 MD5sum: 7694e0eaec1c96cd057000702726ffbe SHA1: 002232f96f304009429d23b3d86ea17a3e652f6b SHA256: 6125aab66d6974c97ad0a32b627f431ac554eed63d0e7c5b02538e8cf6930176 Description: File type determination library using "magic" numbers (Python 3 bindings) Homepage: http://www.darwinsys.com/file/ Description-md5: f5af97f44e28320b34b50b6756218f4a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-mako Priority: optional Section: python Installed-Size: 333 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: mako Version: 0.9.1-1 Depends: python3:any (>= 3.3.2-2~), python3-markupsafe Suggests: python3-beaker, python-mako-doc Filename: pool/main/m/mako/python3-mako_0.9.1-1_all.deb Size: 57660 MD5sum: 4cdad6592a84ba4d0f3e82119d46d756 SHA1: 76ebb604593532fb1546a1ca90c32d506572fb1c SHA256: 466baf2866fd47eabc18b51621fb5accdb8804c715035b6b7bf7506f3e2d1f4e Description: fast and lightweight templating for the Python 3 platform Homepage: http://www.makotemplates.org/ Description-md5: 9cf1e89d773dcfe84fbec050c6c37a3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: python3-markupsafe Priority: optional Section: python Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: i386 Source: markupsafe Version: 0.18-1build2 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.3.6-6~) Filename: pool/main/m/markupsafe/python3-markupsafe_0.18-1build2_i386.deb Size: 14622 MD5sum: 11698d794ede8bed03128d62cfa64c37 SHA1: 206c6119be22c258b35dfc2642ac6bf3786902d4 SHA256: d1526007f0e092c63be8aa4f39f9f84383ea072fc1683547d83475097fd4f261 Description: HTML/XHTML/XML string library for Python 3 Homepage: http://pypi.python.org/pypi/MarkupSafe Description-md5: cefaa4ca2b9fa0945bfdda080a82df76 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: python3-markupsafe-dbg Priority: extra Section: debug Installed-Size: 87 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: i386 Source: markupsafe Version: 0.18-1build2 Depends: python3-markupsafe (= 0.18-1build2), libc6 (>= 2.3.6-6~), python3-dbg (>= 3.4~), python3-dbg (<< 3.5) Filename: pool/main/m/markupsafe/python3-markupsafe-dbg_0.18-1build2_i386.deb Size: 24064 MD5sum: 56d559dee01a29e3210c069c05b338f4 SHA1: 0c557dd08679a40654cd35a939416aa6c757a8a7 SHA256: c94e78f5500469ad01e44d68c8faabdb1decbf4c5f13e5363006b019c4538ea4 Description: HTML/XHTML/XML string library for Python 3 - debug version Homepage: http://pypi.python.org/pypi/MarkupSafe Description-md5: 3308a6fa6619fe15567adf0883dc85fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-mimeparse Priority: optional Section: python Installed-Size: 48 Maintainer: Ubuntu Developers Original-Maintainer: Mathias Ertl Architecture: all Source: python-mimeparse Version: 0.1.4-1build1 Filename: pool/main/p/python-mimeparse/python3-mimeparse_0.1.4-1build1_all.deb Size: 5966 MD5sum: 0b16331128b8285087d0bf243715f73e SHA1: 1da0d3e44da8fad37449a00148e9cf38b2848767 SHA256: 9b3280dd76a93521f1f5a558c9068b3ee243f88e39fd636c03945a8e192aa5ee Description: Parse mime-types and quality parameters - python 3.x Homepage: https://pypi.python.org/pypi/python-mimeparse Description-md5: a1058dccf5f3dfe756c4fc2f3c122397 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-minimal Priority: important Section: python Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-defaults Version: 3.4.0-0ubuntu2 Replaces: python3 (<< 3.3.2-13~), python3.1 (<< 3.1-2) Depends: python3.4-minimal (>= 3.4.0-0~), dpkg (>= 1.13.20) Breaks: idle3 (<< 3.1), python3 (<< 3.3.2-13~), python3-all (<< 3.1), python3-all-dbg (<< 3.1), python3-all-dev (<< 3.1), python3-dbg (<< 3.1), python3-dev (<< 3.1), python3-examples (<< 3.1) Filename: pool/main/p/python3-defaults/python3-minimal_3.4.0-0ubuntu2_i386.deb Size: 23306 MD5sum: b0d0502cc4e3dfa006390389093ce84f SHA1: 39da5eb2343a0b4013fef3131ddc936193f0ee04 SHA256: b78db467b3ad31729cd9fa91a547a08ab4106463c82856d42a3f7deaea8b5755 Description: minimal subset of the Python language (default python3 version) Multi-Arch: allowed Homepage: http://www.python.org/ Description-md5: 015bfecc64c3007f61d3872c4677fe63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: python3-mock Priority: extra Section: python Installed-Size: 137 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-mock Version: 1.0.1-3 Depends: python3:any (>= 3.3.2-2~) Suggests: python-mock-doc Filename: pool/main/p/python-mock/python3-mock_1.0.1-3_all.deb Size: 23888 MD5sum: 2c29440b67c8ded4afabed4aa6a72916 SHA1: da4380494a5e32ea4a634f7c3b457beca0a74c71 SHA256: 7f84fd088980f7fa98c4b9b4258a94306a3ba1443eef267ea96eaa44837239d9 Description: Mocking and Testing Library (Python3 version) Homepage: http://www.voidspace.org.uk/python/mock/ Description-md5: 4e0c3a991e1f0679db23da5bd156bed7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-mox3 Priority: optional Section: python Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-mox3 Version: 0.7.0-1build1 Depends: python3-fixtures (>= 0.3.12), python3-pbr (>= 0.5.21), python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-mox3/python3-mox3_0.7.0-1build1_all.deb Size: 31698 MD5sum: cf8ffc4c6969272d889c976a9e6b9261 SHA1: df62baeeb01ca719a1bbc248896ad80905a50751 SHA256: fa4b62c0721dd740e955d1aa04dcba1381375f184d7cfecf36491f144758f1f0 Description: Mock object framework - Python 3.x Homepage: https://pypi.python.org/pypi/mox3 Description-md5: 63acbda07be04918c26b4248c11e54c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-msgpack Priority: optional Section: python Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Source: msgpack-python Version: 0.3.0-1ubuntu3 Depends: libc6 (>= 2.4), python3 (>= 3.4~), python3 (<< 3.5) Filename: pool/main/m/msgpack-python/python3-msgpack_0.3.0-1ubuntu3_i386.deb Size: 38740 MD5sum: b02afe7fd189e31db986e3379e62de15 SHA1: 7aac21ba2f0c89518db88d43c9367a22c142b0cc SHA256: 261c7844d2616cf3274b26d2db0cd3efa09ccafd905931dbe6b2f6156b9a062f Description: Python 3 implementation of MessagePack format Homepage: http://pypi.python.org/pypi/msgpack-python/ Description-md5: ea3d1fc1cbb3b7dc6605eb2882af2bf6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-netifaces Priority: optional Section: python Installed-Size: 58 Maintainer: Ubuntu Developers Original-Maintainer: Mario Izquierdo (mariodebian) Architecture: i386 Source: netifaces Version: 0.8-3build1 Depends: libc6 (>= 2.4), python3 (<< 3.5), python3 (>= 3.4~) Filename: pool/main/n/netifaces/python3-netifaces_0.8-3build1_i386.deb Size: 8068 MD5sum: 71dbf623e0bb305635c9db82f656ef61 SHA1: 8f15904576fe3e2172dbe418eaea8b14d7ecbbdb SHA256: 38ec479c9df27a7ccd54c62bba1650c1446415943d620fa399397cd8ff675884 Description: portable network interface information for Python 3 Homepage: http://alastairs-place.net/projects/netifaces/ Description-md5: 85ec8052d588418ebe5147a6c8ed3b94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-netifaces-dbg Priority: extra Section: debug Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Mario Izquierdo (mariodebian) Architecture: i386 Source: netifaces Version: 0.8-3build1 Depends: libc6 (>= 2.4), python3-netifaces (= 0.8-3build1), python3-dbg Filename: pool/main/n/netifaces/python3-netifaces-dbg_0.8-3build1_i386.deb Size: 27810 MD5sum: 8b66fde06b58a568e32fddb6176cc7e2 SHA1: 89c44ac336b9553cfb6d70b18621140a0969ab2f SHA256: 0ea8ca1935216d12e76697445b4d0e6b246ab53323a06db884e816d802742a50 Description: portable network interface information for Python 3 (debug extension) Homepage: http://alastairs-place.net/projects/netifaces/ Description-md5: cffdc2ca89f1f9c791e564912fd61860 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-newt Priority: optional Section: python Installed-Size: 121 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: i386 Source: newt Version: 0.52.15-2ubuntu5 Provides: python3.4-newt Depends: libnewt0.52 (= 0.52.15-2ubuntu5), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4) Filename: pool/main/n/newt/python3-newt_0.52.15-2ubuntu5_i386.deb Size: 17930 MD5sum: 9775f4e9034645bf97911028f47f62ad SHA1: 9befb757d1d2a655114e72549aee9e0dff0aac8f SHA256: ab3a8edaee7cd8b9ba952af6ff103bcc1d9820356401ce0c6529f3210e76dcb2 Description: NEWT module for Python3 Homepage: https://fedorahosted.org/newt/ Description-md5: ab07f550adcbdc5c4104773a94768660 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-usb Package: python3-newt-dbg Priority: extra Section: debug Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: i386 Source: newt Version: 0.52.15-2ubuntu5 Depends: libnewt0.52 (= 0.52.15-2ubuntu5), python3-newt (= 0.52.15-2ubuntu5), python3-dbg, libc6 (>= 2.1.3) Filename: pool/main/n/newt/python3-newt-dbg_0.52.15-2ubuntu5_i386.deb Size: 48230 MD5sum: 684902d76dc52ce2a2e9aeab06795278 SHA1: d90113ac2303e44bd5e07f8d4a9174944b343381 SHA256: 8c69fb100c06ce455e6072d00926674ddcdee9a3591152b8d954c97af02370d3 Description: NEWT module for Python3 (debug extension) Homepage: https://fedorahosted.org/newt/ Description-md5: ff8d6af5f281073cea370ce33e2fc0b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-nine Priority: extra Section: python Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-nine Version: 0.3.3-2 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-nine/python3-nine_0.3.3-2_all.deb Size: 7756 MD5sum: 9fa51e64f1325437ddf213fa6af36a6b SHA1: 513f8498f98b0e2b7fc8dd699b73580fca399882 SHA256: c9ab1f703d244341710f3e477ebd0a2602345bec5625cf76895fc18713da1eb4 Description: Python 2 / 3 compatibility, like six, but favouring Python 3 Homepage: https://pypi.python.org/pypi/nine Description-md5: 15a0b56c311c97d65ad0ca9425c560b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-nose Priority: optional Section: python Installed-Size: 561 Maintainer: Ubuntu Developers Original-Maintainer: Gustavo Noronha Silva Architecture: all Source: nose Version: 1.3.1-2 Depends: python3-pkg-resources, python3:any (>= 3.3.2-2~), python3 Suggests: python-nose-doc Filename: pool/main/n/nose/python3-nose_1.3.1-2_all.deb Size: 115860 MD5sum: 518f0c30cae93277de07ab3c7f629b0e SHA1: 446c985f680e5e6385a22f8f806799449ccd9942 SHA256: 74b309469b74aebf85516c3b3f10c8e717e5a68d68394dec046e5e18fd4a51a6 Description: test discovery and running for Python3 unittest Homepage: https://nose.readthedocs.org/en/latest/ Description-md5: 6d797fcd415c26ef21491e78c602db0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-numpy Priority: optional Section: python Installed-Size: 8521 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-numpy Version: 1:1.8.1-1ubuntu1 Provides: python3-f2py, python3-numpy-abi9, python3-numpy-api9, python3-numpy-dev, python3.4-numpy Depends: python3.4, python3 (>= 3.4~), python3 (<< 3.5), libblas3 | libblas.so.3, libc6 (>= 2.11), liblapack3 | liblapack.so.3 Suggests: gcc (>= 4:4.6.1-5), gfortran, python-numpy-doc, python3-dev, python3-nose (>= 0.10.1), python3-numpy-dbg Filename: pool/main/p/python-numpy/python3-numpy_1.8.1-1ubuntu1_i386.deb Size: 1584426 MD5sum: 1e52f56b6bf04a13d15254173579a273 SHA1: 082ffeadc8061c4d7c2df4b29693a3e6f9f3c089 SHA256: b0070129ab5fd8cfd1a27e0ad0e2a45dcaf220f95521643ddb2a01e3a1e012ea Description: Fast array facility to the Python 3 language Homepage: http://www.numpy.org/ Description-md5: 4fef6b207fcddcc7678c9cb4c3a66bd2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-numpy-dbg Priority: extra Section: debug Installed-Size: 16618 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-numpy Version: 1:1.8.1-1ubuntu1 Replaces: python3-numpy (<< 1:1.7.1-1) Depends: python3-dbg, python3-numpy (= 1:1.8.1-1ubuntu1), libblas3 | libblas.so.3, libc6 (>= 2.7), liblapack3 | liblapack.so.3 Breaks: python3-numpy (<< 1:1.7.1-1) Filename: pool/main/p/python-numpy/python3-numpy-dbg_1.8.1-1ubuntu1_i386.deb Size: 3026286 MD5sum: 6b17d07f00c2efabef2954583699dd8a SHA1: 070ec5972c82b1a6eb3f1b36c3cf879a68e9d82a SHA256: 6737fa43ee96982931cbbfa29b9252dbed336c9bf39ea7bb62847904979eb064 Description: Fast array facility to the Python 3 language (debug extension) Homepage: http://www.numpy.org/ Description-md5: 874df4ab0f921eb452ea913224b6cf17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-oauthlib Priority: optional Section: python Installed-Size: 403 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-oauthlib Version: 0.6.1-1 Depends: python3:any (>= 3.3.2-2~), python3-crypto Filename: pool/main/p/python-oauthlib/python3-oauthlib_0.6.1-1_all.deb Size: 56668 MD5sum: 48817827586511e44435126a565f0550 SHA1: e46318fc154247f4591586386e57bb42004dca7c SHA256: 2dc669b462f0a8c099dc6cf1d1dd2bbb9dc9dbd45cd1a8bac18a3abf3bfd45ac Description: generic, spec-compliant implementation of OAuth for Python3 Homepage: https://github.com/idan/oauthlib Description-md5: 0c5e634eb3a785d591838929d5800d3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-oneconf Priority: extra Section: python Installed-Size: 142 Maintainer: Didier Roche Architecture: all Source: oneconf Version: 0.3.7 Depends: python3:any (>= 3.3.2-2~), oneconf-common, python3-dbus, python3-oauthlib, python3-gi, python3-apt, python3-piston-mini-client, python3-httplib2, python3-xdg Filename: pool/main/o/oneconf/python3-oneconf_0.3.7_all.deb Size: 19436 MD5sum: 5b7b4b5be3668d957b5053fd2758d064 SHA1: fcb9487cd5c2546826ddcc341c30fb511af727e9 SHA256: 90f8c9994f0a22658556da0ef3f157d58334197ff73d48afde51e3a5816429d6 Description: synchronize your configuration data over the network (Python 3) Description-md5: 6a6fa52009f245ee2dacf465b84386dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-openssl Priority: optional Section: python Installed-Size: 392 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyopenssl Version: 0.13-2ubuntu6 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0) Suggests: python-openssl-doc, python3-openssl-dbg Filename: pool/main/p/pyopenssl/python3-openssl_0.13-2ubuntu6_i386.deb Size: 79112 MD5sum: 60512d52663bfe00350262c7e759b3a9 SHA1: 6d9e8160f39ccb425d18b4301b38f74eff61d8e8 SHA256: 6151f202999b261b31e0412e1666acf382f85aa0fefec2273436b8b6f8e3a038 Description: Python 3 wrapper around the OpenSSL library Homepage: http://launchpad.net/pyopenssl Description-md5: d42552511383aa2a691d5994e533fb0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-openssl-dbg Priority: extra Section: debug Installed-Size: 958 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyopenssl Version: 0.13-2ubuntu6 Depends: python3-openssl (= 0.13-2ubuntu6), python3-dbg, libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0) Filename: pool/main/p/pyopenssl/python3-openssl-dbg_0.13-2ubuntu6_i386.deb Size: 201184 MD5sum: af6943b78043920bffb66e02e53de31e SHA1: 5cf7271469dd65c706b67c8173c3aa5bc1acd7fa SHA256: b9c760f6e7287417fb936475cb04111d560688fd2bb224dac3f41ea68b9cdf0e Description: Python 3 wrapper around the OpenSSL library (debug extension) Homepage: http://launchpad.net/pyopenssl Description-md5: 74d30286345f4f6d1e73e3737b37837e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-packagekit Priority: optional Section: python Installed-Size: 124 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klumpp Architecture: all Source: packagekit Version: 0.8.12-1ubuntu5 Depends: python3-dbus, python3:any (>= 3.3.2-2~) Recommends: packagekit Filename: pool/main/p/packagekit/python3-packagekit_0.8.12-1ubuntu5_all.deb Size: 17894 MD5sum: 6cff8daf4101eea41119f888297c6f31 SHA1: 637667def5bbe65cb6126fd3c2eefaff5c2f13f6 SHA256: 114dd8e19cd0056baef941d7976fc8a4706ad6e6cd28cf269d41049fbeeca78d Description: PackageKit backend Python bindings Homepage: http://www.packagekit.org Description-md5: 644eb2b6272644fef74823bbe4973423 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: lubuntu-desktop Package: python3-pam Priority: optional Section: python Installed-Size: 62 Maintainer: Ubuntu Developers Original-Maintainer: Dima Barsky Architecture: i386 Source: python-pam Version: 0.4.2-13.1ubuntu3 Depends: python3 (<< 3.5), python3 (>= 3.4~), libc6 (>= 2.4), libpam0g (>= 0.99.7.1) Suggests: python3-pam-dbg Filename: pool/main/p/python-pam/python3-pam_0.4.2-13.1ubuntu3_i386.deb Size: 9056 MD5sum: 66f3ee8e4f1c11bd4fe2c4f15ef79ae9 SHA1: 6c8081aae48713e5a00f6f68593531767c008c56 SHA256: f7b947f169fb45f0879b5349b055e06bed742fdc50c7399c7f33b081262585f6 Description: Python interface to the PAM library Description-md5: 4bae7680ea768021b6726c1ec6ac6cb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: python3-pam-dbg Priority: extra Section: python Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Dima Barsky Architecture: i386 Source: python-pam Version: 0.4.2-13.1ubuntu3 Depends: python3-pam (= 0.4.2-13.1ubuntu3), python3-dbg (<< 3.5), python3-dbg (>= 3.4~), libc6 (>= 2.4), libpam0g (>= 0.99.7.1) Filename: pool/main/p/python-pam/python3-pam-dbg_0.4.2-13.1ubuntu3_i386.deb Size: 6658 MD5sum: 14b64407f0db85cb4fb86e62ab96cbfd SHA1: b5377fb57462372753b183fa90fab0029cf9592b SHA256: 85ebf055929fd47d8d3575f5b17f4b0d74f666ea49bd2e00632db07399bd6723 Description: Python interface to the PAM library (debug extension) Description-md5: e1a2c6ee17cff41566b957899f4578b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-paste Priority: optional Section: python Installed-Size: 2174 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: paste Version: 1.7.5.1-6ubuntu3 Depends: python3:any (>= 3.3.2-2~), python3-pkg-resources, python3-tempita Recommends: python3-openssl Suggests: libapache2-mod-wsgi, libapache2-mod-python (>= 3.2.8-3), libapache2-mod-scgi, libjs-mochikit, libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/paste/python3-paste_1.7.5.1-6ubuntu3_all.deb Size: 362986 MD5sum: b383bcbad83fb5fe54091c912cf99d6d SHA1: a35bd496573beb9a1afca37ac430cf1f9dcdf1c5 SHA256: c1e60329b9fbfa6cd43b2699d2b276c0c8d472c0b1ef2cd3ac89032476ae1c8f Description: tools for using a Web Server Gateway Interface stack with Python 3 Homepage: http://pythonpaste.org/ Description-md5: fa71556ec57e7359b1902a0876ffecf2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pastedeploy Priority: optional Section: python Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pastedeploy Version: 1.5.2-1 Depends: python3:any (>= 3.3.2-2~), python-pastedeploy-tpl (= 1.5.2-1), python3-paste, python3-pkg-resources Filename: pool/main/p/pastedeploy/python3-pastedeploy_1.5.2-1_all.deb Size: 13378 MD5sum: 683031d94313a9cac6fce25e5d0c6ac0 SHA1: b3b06370a844c1c871fe0a139c64811d5d170640 SHA256: a7bfd617bd875f9954866248015fd6f53c454a0e93cb104a982b27d0147e84ec Description: load, configure, and compose WSGI applications and servers Enhances: python3-paste Homepage: http://pythonpaste.org/deploy/ Description-md5: 51f37996833fa30d191688b62388d7a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pbr Priority: optional Section: python Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-pbr Version: 0.7.0-0ubuntu2 Depends: python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/p/python-pbr/python3-pbr_0.7.0-0ubuntu2_all.deb Size: 35756 MD5sum: e83565c796126359bf69595855e39f3f SHA1: d8e4da8f09214a9d449494a91d364cf1f7182baa SHA256: c9dd676c9bdde2e738b8f82d6de2fe87c8fabb5810a374e67c816774b8b8fe2f Description: inject useful and sensible default behaviors into setuptools - Python 3.x Homepage: http://pypi.python.org/pypi/pbr Description-md5: 954209d929f46eb9cbeeceb0de9d8944 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pep8 Priority: optional Section: python Installed-Size: 132 Maintainer: Ubuntu Developers Original-Maintainer: David Watson Architecture: all Source: pep8 Version: 1.4.6-1.1build1 Depends: python3:any (>= 3.3.2-2~), python3-setuptools Filename: pool/main/p/pep8/python3-pep8_1.4.6-1.1build1_all.deb Size: 26010 MD5sum: eb7a72c035268e959708291aa32a11b9 SHA1: ba85b0a7562c0f5822771cd0e1e07da78b6e83ea SHA256: 85d7935588b3912229c14d89c3335966f064b76de917e1313fcaea61c2ca6877 Description: Python PEP 8 code style checker - python3 Homepage: http://pypi.python.org/pypi/pep8 Description-md5: e4b7300e38224b873009652032b23796 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pexpect Priority: optional Section: python Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Ganesan Rajagopal Architecture: all Source: pexpect Version: 3.1-1 Depends: python3:any (>= 3.3.2-2~) Suggests: python-pexpect-doc Filename: pool/main/p/pexpect/python3-pexpect_3.1-1_all.deb Size: 37834 MD5sum: 1854d3c62d1155981e02976170c7ddbf SHA1: b8dbabc3a78abf2ad96c61e149fd0f38ac7a8254 SHA256: b36f9187b31d7120ad3405e84220f6a82936575b4e7333d02c142412d772226c Description: Python 3 module for automating interactive applications Homepage: http://www.noah.org/wiki/Pexpect Description-md5: 941a9df3cba3bf3600012debef545be6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop, ubuntustudio-desktop Package: python3-pil Priority: optional Section: python Installed-Size: 1091 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging (<< 1.1.7+2.0.0-1.1) Provides: python3-pillow Depends: python3 (>= 3.4~), python3 (<< 3.5), mime-support | python3-pil.imagetk, libc6 (>= 2.11), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libtiff5 (>= 4.0.3), libwebp5, libwebpmux1, zlib1g (>= 1:1.1.4) Suggests: python-pil-doc, python3-pil-dbg Conflicts: python3-imaging (<< 1.1.7+2.0.0-1.1) Breaks: python3-imaging (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-pil_2.3.0-1ubuntu3_i386.deb Size: 279180 MD5sum: 4e304ae90664f64a51296bce738a0892 SHA1: 10c163945b425458dc1ade6e9b7e52b8e401c36a SHA256: e6a3c9f516f55fe74fa17a6b7eee4abb1b7870799a7cac4a9a750cdd7f40bb5e Description: Python Imaging Library (Python3) Description-md5: 159039260b5a620ec3a8b13546dd140a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pil-dbg Priority: extra Section: debug Installed-Size: 1578 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging-dbg (<< 1.1.7+2.0.0-1.1) Depends: python3-pil (= 2.3.0-1ubuntu3), python3-dbg, libc6 (>= 2.4), libfreetype6 (>= 2.2.1), libjpeg8 (>= 8c), liblcms2-2 (>= 2.2+git20110628), libtiff5 (>= 4.0.3), libwebp5, libwebpmux1, zlib1g (>= 1:1.1.4) Breaks: python3-imaging-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-pil-dbg_2.3.0-1ubuntu3_i386.deb Size: 402698 MD5sum: 03bd20e7e52d98b60bfdf1d01390b08d SHA1: 60fa393938df8847c4df911892500912d72f559d SHA256: 5014e9cf8b55a0d57dc639f53f039e533b8a31fdd05cd0d11444c633ae818854 Description: Python Imaging Library (Python3 debug extension) Description-md5: 5fc4836e54ac545a1fd0918d16f207b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pil.imagetk Priority: optional Section: python Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging-tk (<< 1.1.7+2.0.0-1.1) Depends: python3-pil (= 2.3.0-1ubuntu3), python3-tk (>= 2.5.2-1.1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.3.6-6~), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Suggests: python-pil-doc, python3-pil.imagetk-dbg Breaks: python3-imaging-tk (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-pil.imagetk_2.3.0-1ubuntu3_i386.deb Size: 7416 MD5sum: f16a54e29430f522866fcfef1e95cc4e SHA1: 58c0fe69d3bb0cf86e451708242887e79125a1e9 SHA256: 5286c7441581b0e7da3b58b44a40a70c2eee87107f6df6b1c55aa6bf990d677b Description: Python Imaging Library - ImageTk Module (Python3) Description-md5: ea3aa1a359c8f5a637ed1b909420a7d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pil.imagetk-dbg Priority: extra Section: debug Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging-tk-dbg (<< 1.1.7+2.0.0-1.1) Depends: python3-pil.imagetk (= 2.3.0-1ubuntu3), python3-pil-dbg (= 2.3.0-1ubuntu3), python3-dbg, libc6 (>= 2.3.6-6~), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Breaks: python3-imaging-tk-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-pil.imagetk-dbg_2.3.0-1ubuntu3_i386.deb Size: 12966 MD5sum: 7f3b7c694440a2a324b25d6519852450 SHA1: d75231619a5e705ac6ebf9a7d57f80af0cbd6f8c SHA256: 30a482df8d2e192f4c0d71fa9eec0c4eabf97803f7abedbab76f182eeca9f234 Description: Python Imaging Library - ImageTk Module (Python3 debug extension) Description-md5: afc8be0b437fa83e6cf612a22e898585 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-piston-mini-client Priority: extra Section: python Installed-Size: 114 Maintainer: Michael Vogt Architecture: all Source: piston-mini-client Version: 0.7.5-0ubuntu2 Depends: python3:any (>= 3.3.2-2~), python3-httplib2, python3-oauthlib Filename: pool/main/p/piston-mini-client/python3-piston-mini-client_0.7.5-0ubuntu2_all.deb Size: 18406 MD5sum: 887fba7d2e9fd6cfe5227fda75bdef33 SHA1: 9027fb4385ada5efa3b091ca48812ccc8957d0c7 SHA256: 6f353c8819a89f1f6fbb145aa3a33840f8fb689a89ef333d9a6680529b99e17b Description: library for writing clients for Django's Piston REST APIs Homepage: https://launchpad.net/piston-mini-client Description-md5: a66f84fbd98b83892c23fbd1e1a149f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-pkg-resources Priority: optional Section: python Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-setuptools Version: 3.3-1ubuntu1 Provides: python3.4-setuptools Depends: python3:any (>= 3.4), python3:any (<< 3.5) Suggests: python3-setuptools Conflicts: python-pkg-resources (= 0.6.10-2) Filename: pool/main/p/python-setuptools/python3-pkg-resources_3.3-1ubuntu1_all.deb Size: 31646 MD5sum: c1468614d42b4b253add1ab32fef2b44 SHA1: b80a3530b3e84eb2ff159ec990b57c361285a512 SHA256: 36ee08192a61a9b8b8a80bbcdb34df5ae4ce10694ef5e52d7d4d37d031e46677 Description: Package Discovery and Resource Access using pkg_resources Homepage: https://pypi.python.org/pypi/setuptools Description-md5: 455aab7092c23bbca0a002df43ba97e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-plainbox Priority: optional Section: python Installed-Size: 4840 Maintainer: Zygmunt Krynicki Architecture: all Source: plainbox Version: 0.5.3-2 Depends: python3-lxml, python3:any (>= 3.3.2-2~), python3, plainbox-secure-policy (= 0.5.3-2) | plainbox-insecure-policy (= 0.5.3-2), policykit-1, python3-pkg-resources Suggests: python3-xlsxwriter Breaks: python3-checkbox-ng (<< 0.3) Filename: pool/main/p/plainbox/python3-plainbox_0.5.3-2_all.deb Size: 445202 MD5sum: a74bcffc266efe54eb54cae7bc7d09bb SHA1: b638b51320ee96c27bc13d151627d0e6f940359a SHA256: 6b0ee60a01537c7734e9f30e295a44b9330832cb49774018fa4b2a4cb74bfab3 Description: toolkit for software and hardware testing (python3 module) Homepage: http://launchpad.net/checkbox Description-md5: 67242ab186948ed7b8b91f066b359564 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-plainbox-doc Priority: extra Section: doc Installed-Size: 4594 Maintainer: Zygmunt Krynicki Architecture: all Source: plainbox Version: 0.5.3-2 Depends: libjs-sphinxdoc (>= 1.0) Filename: pool/main/p/plainbox/python3-plainbox-doc_0.5.3-2_all.deb Size: 362222 MD5sum: 0c8e3bc81d6cb7706cc3d2a16950feaa SHA1: 0a8376a9f3ce74d8a2cc05219ec404ba988fd4df SHA256: fa5a64efc950f21ae12e96a22214e3ba4b2d3576474de6f80ed5fb8215c9af58 Description: toolkit for software and hardware testing (documentation) Homepage: http://launchpad.net/checkbox Description-md5: a6601b01e3fd5c4c6b904f4ccf8f40e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-ply Priority: optional Section: python Installed-Size: 269 Maintainer: Ubuntu Developers Original-Maintainer: Arnaud Fontaine Architecture: all Source: ply Version: 3.4-3ubuntu2 Provides: python3-ply-lex-3.2, python3-ply-yacc-3.2 Depends: python3:any (>= 3.3.2-2~) Suggests: python-ply-doc, python3-pkg-resources Filename: pool/main/p/ply/python3-ply_3.4-3ubuntu2_all.deb Size: 44838 MD5sum: 4b81df23f6a245dcb8f157391b1630b5 SHA1: b1ceb95b10e51958493b1a3883964ae5e3a97729 SHA256: 3c4fc2acb8f24b33a8372b9e4e35cede01eba7c587aa2a15e79b684c3c535933 Description: Lex and Yacc implementation for Python3 Homepage: http://www.dabeaz.com/ply/ Description-md5: 075b704c2a01fdf59a5ef4845058417b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-polib Priority: optional Section: python Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Angel Abad Architecture: all Source: polib Version: 1.0.4-1 Depends: python3:any (>= 3.3.2-2~) Suggests: python-polib-doc Filename: pool/main/p/polib/python3-polib_1.0.4-1_all.deb Size: 16090 MD5sum: cf75b25f8ca18588d035caf27f5b8c49 SHA1: b8405d579bd6321df2c28d05c752059620740bfa SHA256: 5d4b7b20ef7ab6ae7ae5eebadef1a706eb3212b02fa1856bd837314de1934699 Description: Python 3 library to parse and manage gettext catalogs Homepage: http://bitbucket.org/izi/polib/src/ Description-md5: 4b7d3ffa09128c18b5c385ce2f5dcfa9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-prettytable Priority: optional Section: python Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: prettytable Version: 0.7.2-2ubuntu2 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/prettytable/python3-prettytable_0.7.2-2ubuntu2_all.deb Size: 19948 MD5sum: 280c7b0ae1426e36efae63be8d7d498d SHA1: a7e1fe06b868c487c05268417e423513635d3527 SHA256: 9b9476c3fd2f0b948e4c7035f44988de1a8be5041a8ef2769ca4368c66feb273 Description: library to represent tabular data in visually appealing ASCII tables (Python3) Homepage: http://code.google.com/p/prettytable/ Description-md5: fad39130f093d82f504d5975b6a37cde Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-problem-report Priority: optional Section: python Installed-Size: 173 Maintainer: Martin Pitt Architecture: all Source: apport Version: 2.14.1-0ubuntu3 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/a/apport/python3-problem-report_2.14.1-0ubuntu3_all.deb Size: 9078 MD5sum: 5ae094e735f1289dacd0bc811568a08e SHA1: b333f36f69eb0a1424d2d54886fa009056195c56 SHA256: 287250a9fb309a3ed8e7014c7868698a37d893f3c6e147b93cd56485c1d7a230 Description: Python 3 library to handle problem reports Homepage: https://wiki.ubuntu.com/Apport Description-md5: 9c38d91ac205b1680832021377d9156d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-psutil Priority: optional Section: python Installed-Size: 257 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-psutil Version: 1.2.1-1ubuntu2 Depends: libc6 (>= 2.13), python3 (>= 3.4~), python3 (<< 3.5) Filename: pool/main/p/python-psutil/python3-psutil_1.2.1-1ubuntu2_i386.deb Size: 45228 MD5sum: 810b6c570a8606859b5331b9442fd84b SHA1: 86d556275e49380f8e1b2b9f782fda1cce090483 SHA256: 07c7d5381224a0d161c7bb20cf4b3685229a0df69c5b9a2a47f675144e18b202 Description: module providing convenience functions for managing processes (Python3) Homepage: http://code.google.com/p/psutil/ Description-md5: 1afa4bbc2f865e75ea83252d8a6a0b39 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: xubuntu-desktop Package: python3-psycopg2 Priority: optional Section: python Installed-Size: 567 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: i386 Source: psycopg2 Version: 2.4.5-1build5 Provides: python3.4-psycopg2 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libpq5 (>= 8.3~) Suggests: python-psycopg2-doc Filename: pool/main/p/psycopg2/python3-psycopg2_2.4.5-1build5_i386.deb Size: 109342 MD5sum: d357453ff747c9ed95506945518eddf0 SHA1: 0b01828f70aa7d47bc532287eb5fd80b27e6e90b SHA256: fdddabf683cb0d47583caec2d79fcf9a89c470ecd2ca8a01add34ea9f1e08e5b Description: Python 3 module for PostgreSQL Homepage: http://initd.org/projects/psycopg Description-md5: 8f5ccf5f38f0965d243851578ccea66a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-psycopg2-dbg Priority: extra Section: debug Installed-Size: 928 Maintainer: Ubuntu Developers Original-Maintainer: Fabio Tranchitella Architecture: i386 Source: psycopg2 Version: 2.4.5-1build5 Depends: python3-psycopg2 (= 2.4.5-1build5), python3-dbg, libc6 (>= 2.4), libpq5 (>= 8.3~) Filename: pool/main/p/psycopg2/python3-psycopg2-dbg_2.4.5-1build5_i386.deb Size: 206656 MD5sum: e950ca40459a4ce0acc1ddfb3e27a979 SHA1: cc5a353819c4e994a6322b04caca1d20016efcc6 SHA256: 6b189b998a8925758324e364fc52b8b1acf1664e30b5123d7823c43d71545b71 Description: Python 3 module for PostgreSQL (debug extension) Homepage: http://initd.org/projects/psycopg Description-md5: 74279b50d34b063ee5a8c948b356e988 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-py Priority: optional Section: python Installed-Size: 325 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: codespeak-lib Version: 1.4.20-1 Depends: python3:any (>= 3.3.2-2~), python3-pkg-resources Suggests: subversion, python3-pytest Filename: pool/main/c/codespeak-lib/python3-py_1.4.20-1_all.deb Size: 62446 MD5sum: abc7b442c1053dd301be7e54c34ff989 SHA1: 85e1f62da3372c6b8c1f86908e51f6177da0b999 SHA256: 2ea019ee854690269a9c0fc951c3707dfee15e79278e5a5ad15b2675dcfaced8 Description: Advanced Python development support library (Python 3) Homepage: https://bitbucket.org/hpk42/py Description-md5: cdfb445e8352c81d902426be589c18b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyatspi Priority: optional Section: python Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: pyatspi Version: 2.10.0+dfsg-1 Replaces: python3-pyatspi2 (<< 2.7.2+dfsg-2) Depends: python3:any (>= 3.3.2-2~), python3-gi (>= 2.90.1), gir1.2-atspi-2.0 (>= 2.1.4), libatk-adaptor, libgail-common Breaks: python3-pyatspi2 (<< 2.7.2+dfsg-2) Filename: pool/main/p/pyatspi/python3-pyatspi_2.10.0+dfsg-1_all.deb Size: 36624 MD5sum: 7612a6f20542f95ecd933678f335f40c SHA1: 0f13db96632ffc0a6f47933fdb79de3d4eeb361c SHA256: 796ce30bac907e77e0a6ea9d29dd9104ea9ab56c8cdee331bca0a35321d0e303 Description: Assistive Technology Service Provider Interface - Python3 bindings Homepage: http://live.gnome.org/Accessibility Description-md5: 9895ce61d4d78b37ccb3d6c3eeaf0672 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-pycurl Priority: optional Section: python Installed-Size: 205 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pycurl Version: 7.19.3-0ubuntu3 Provides: python3.4-pycurl Depends: libc6 (>= 2.15), libcurl3-gnutls (>= 7.18.0), python3 (<< 3.5), python3 (>= 3.4~) Suggests: libcurl4-gnutls-dev, python3-pycurl-dbg Filename: pool/main/p/pycurl/python3-pycurl_7.19.3-0ubuntu3_i386.deb Size: 46320 MD5sum: e7dca85b4e78c2774882995e7334bca6 SHA1: 2a6aa648153092d4459ded26afa65170109afa9d SHA256: e8842fa4102389e854bf26b7c87d1e9d204cbd2f9e7433737927cc0b1069327c Description: Python 3 bindings to libcurl Homepage: http://pycurl.sourceforge.net Description-md5: 3c11f7998c99981f3f186f85353ff864 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-pycurl-dbg Priority: extra Section: debug Installed-Size: 353 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pycurl Version: 7.19.3-0ubuntu3 Provides: python3.4-pycurl-dbg Depends: libc6 (>= 2.3.6-6~), libcurl3-gnutls (>= 7.18.0), python3-dbg (>= 3.4~), python3-dbg (<< 3.5), python3-pycurl (= 7.19.3-0ubuntu3) Filename: pool/main/p/pycurl/python3-pycurl-dbg_7.19.3-0ubuntu3_i386.deb Size: 88282 MD5sum: 6a5ab8d1937790b2f331839783ae28ad SHA1: 2360c8e887be4a12cd7e6af9f31bc073660a9fec SHA256: 18f9e9cc8a05b53dfb73f5e44022679876c85413f5940bf6b6ead4c890b41d70 Description: Python 3 bindings to libcurl (debug extension) Homepage: http://pycurl.sourceforge.net Description-md5: 020e24b9cdd1da058ef79afec2536753 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pygments Priority: optional Section: python Installed-Size: 2214 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: pygments Version: 1.6+dfsg-1ubuntu1 Depends: python3:any (>= 3.3.2-2~) Recommends: python3-pkg-resources Suggests: ttf-bitstream-vera Filename: pool/main/p/pygments/python3-pygments_1.6+dfsg-1ubuntu1_all.deb Size: 457884 MD5sum: da5c8425d3640396acabcf05e4c0ad76 SHA1: fdc661c252c541ab56a7664dca841b68c1723646 SHA256: 3f7534325d5116bf0886a8c45a9adf0476464d5bb3632c683fcc9a252509bb6f Description: syntax highlighting package written in Python 3 Homepage: http://pygments.org/ Description-md5: cf7d5e943a9900549d6bd386f387a547 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyicu-dbg Priority: extra Section: debug Installed-Size: 31 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyicu Version: 1.5-2ubuntu4 Depends: python3-icu-dbg (= 1.5-2ubuntu4) Filename: pool/main/p/pyicu/python3-pyicu-dbg_1.5-2ubuntu4_i386.deb Size: 3222 MD5sum: 5481aafe1f4d318e2ceef0d50b9994f8 SHA1: 4eb95b5631a213cc6ab4a51fd568637ec0d82f7a SHA256: 2f5e9603b140594725a42aa22b668157636099e9a1c67fa2228dd113a6acfb35 Description: dummy transitional package for PyICU Python 3 debug extension Homepage: http://pyicu.osafoundation.org/ Description-md5: f7605d3edb8ab9afe7804e0328dbce2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyinotify Priority: optional Section: python Installed-Size: 129 Maintainer: Ubuntu Developers Original-Maintainer: Mikhail Gusarov Architecture: all Source: pyinotify Version: 0.9.4-1build1 Depends: python3:any (>= 3.3.2-2~) Suggests: python-pyinotify-doc Filename: pool/main/p/pyinotify/python3-pyinotify_0.9.4-1build1_all.deb Size: 24576 MD5sum: e8309e76b7e1e182a1ca9b5dba397d9d SHA1: 92c36209217b84108bd3570f58899b363611c0b7 SHA256: 13b0ae0d48c00e130883fac1fa89be78f4759b42ffdaeb6fb86c24ae65ba019e Description: simple Linux inotify Python bindings Homepage: https://github.com/seb-m/pyinotify Description-md5: 46f87aef5fa9a629936cb4431ffc13f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pylibacl Priority: optional Section: python Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: i386 Source: python-pylibacl Version: 0.5.1-1.1build4 Provides: python3.4-pylibacl Depends: python3 (>= 3.4~), python3 (<< 3.5), libacl1 (>= 2.2.51-8), libc6 (>= 2.3.6-6~) Suggests: python3-pylibacl-dbg Filename: pool/main/p/python-pylibacl/python3-pylibacl_0.5.1-1.1build4_i386.deb Size: 14356 MD5sum: b9fba44508499b44d6c2b1e53e78c521 SHA1: 1c441589a040f0595a54adb1f4f134919f3157c7 SHA256: f798d025d8d36d86e0b17d67b19a6b0988d465988226ca751639fb6da0a7263e Description: module for manipulating POSIX.1e ACLs (Python3 version) Homepage: http://pylibacl.k1024.org/ Description-md5: 150c2470af88237733d115a7b3b99537 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pylibacl-dbg Priority: extra Section: debug Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: i386 Source: python-pylibacl Version: 0.5.1-1.1build4 Depends: python3-pylibacl (= 0.5.1-1.1build4), python3-dbg, libacl1 (>= 2.2.51-8), libc6 (>= 2.3.6-6~) Filename: pool/main/p/python-pylibacl/python3-pylibacl-dbg_0.5.1-1.1build4_i386.deb Size: 31158 MD5sum: dcec53cd6494573e06250f2493503d22 SHA1: d31ab9f928771f459199f22c5c3a97720514e624 SHA256: 2a9928b17d5d4c460fe210970ba872611da8383a77f9a6e933a0aa8fa8d62332 Description: module for manipulating POSIX.1e ACLs (Python3 debug extension) Homepage: http://pylibacl.k1024.org/ Description-md5: 4752aba3c0dd7fe7b799ad54f247a2f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pymongo Priority: optional Section: python Installed-Size: 459 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: i386 Source: pymongo Version: 2.6.3-1build1 Depends: python3-bson (= 2.6.3-1build1), python3:any (>= 3.3.2-2~) Recommends: python3-gridfs (>= 2.6.3-1build1), python3-pymongo-ext Filename: pool/main/p/pymongo/python3-pymongo_2.6.3-1build1_i386.deb Size: 71846 MD5sum: 40a05402126a95bdc953f1a4a2009540 SHA1: f19c4bff0301d48b0ebb5b84bbe92100dd1544ac SHA256: 4df58657bc0466db9fde2b3eaabf4c467c8e489e8c6c75f3a90b813b5924db22 Description: Python3 interface to the MongoDB document-oriented database Homepage: http://api.mongodb.org/python/ Description-md5: a5eda4845154bda48840dc515daa29c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pymongo-ext Priority: optional Section: python Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Federico Ceratto Architecture: i386 Source: pymongo Version: 2.6.3-1build1 Depends: libc6 (>= 2.3.6-6~), python3-bson (= 2.6.3-1build1), python3-pymongo (= 2.6.3-1build1) Recommends: python3-gridfs (>= 2.6.3-1build1) Filename: pool/main/p/pymongo/python3-pymongo-ext_2.6.3-1build1_i386.deb Size: 9412 MD5sum: 7e9692dd627932bf30a08979ca3423b0 SHA1: 8297408afdfa815dc3b901b68eea336a53ca6a66 SHA256: 60111179dd294dc6c3d05ce1d99e5d4a0f10e6c3408d2f28c7403552d2d27a0f Description: C-coded extension to the python3-pymongo package Homepage: http://api.mongodb.org/python/ Description-md5: 1557972b4a71e02b5326a03acc620861 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyparsing Priority: optional Section: python Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Kevin Coyner Architecture: all Source: pyparsing Version: 2.0.1+dfsg1-1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/pyparsing/python3-pyparsing_2.0.1+dfsg1-1build1_all.deb Size: 34412 MD5sum: 3e43e8288f022b10406526723f7cc705 SHA1: 6fe36d73c0ea581ddc01e02f983d117fe8b724dc SHA256: 15a1fc91fcf9a19820f7019ab049d2d8771ce7c0e978bd45a4ed41437e20e108 Description: Python parsing module, Python3 package Homepage: http://pyparsing.wikispaces.com/ Description-md5: 1744489b67dc2e0fe177bd113a785765 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-pyqt4 Priority: optional Section: python Installed-Size: 12657 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.3), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8.0-1~), libqt4-declarative (>= 4:4.8.0-1~), libqt4-designer (>= 4:4.8.0-1~), libqt4-help (>= 4:4.8.0-1~), libqt4-network (>= 4:4.8.0-1~), libqt4-script (>= 4:4.8.0-1~), libqt4-scripttools (>= 4:4.8.0-1~), libqt4-svg (>= 4:4.8.0-1~), libqt4-test (>= 4:4.8.0-1~), libqt4-xml (>= 4:4.8.0-1~), libqt4-xmlpatterns (>= 4:4.8.0-1~), libqtassistantclient4 (>= 4.6.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libqtwebkit4, libstdc++6 (>= 4.1.1), sip-py3api-11.0 Suggests: python3-pyqt4-dbg Breaks: python3-sip (<< 4.13.1~) Filename: pool/main/p/python-qt4/python3-pyqt4_4.10.4+dfsg-1ubuntu1_i386.deb Size: 2781044 MD5sum: ffa00002bb9a4e80b357fbbccfa2d97b SHA1: 6a44740d537d370eb7f875f8071b2ebd04dcb0f2 SHA256: 69ec8a2b5e16edd40b2c8136ba2b0b7aa2967e3dbc973325787a8d80725a6c7c Description: Python3 bindings for Qt4 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: a3750c4f6328346ce71d9a03b54d7309 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: python3-pyqt4-dbg Priority: extra Section: debug Installed-Size: 95385 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt4 (= 4.10.4+dfsg-1ubuntu1), python3-sip-dbg, libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8.0-1~), libqt4-declarative (>= 4:4.8.0-1~), libqt4-designer (>= 4:4.8.0-1~), libqt4-help (>= 4:4.8.0-1~), libqt4-network (>= 4:4.8.0-1~), libqt4-script (>= 4:4.8.0-1~), libqt4-scripttools (>= 4:4.8.0-1~), libqt4-svg (>= 4:4.8.0-1~), libqt4-test (>= 4:4.8.0-1~), libqt4-xml (>= 4:4.8.0-1~), libqt4-xmlpatterns (>= 4:4.8.0-1~), libqtassistantclient4 (>= 4.6.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libqtwebkit4, libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-pyqt4-dbg_4.10.4+dfsg-1ubuntu1_i386.deb Size: 34488676 MD5sum: 1bf960c6bf30783679a901098d8957bb SHA1: 83eb57be7f4dc774af5b7c03eb29365249113475 SHA256: c6a3727c2bf81ad1cfc6ebb06ec5727072518228d37f4857c6f3b5309b1abbaa Description: Python3 bindings for Qt4 (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 7d4d2171d05b69bd918ed7dacd9ed5b5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.phonon Priority: optional Section: python Installed-Size: 420 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-pyqt4 (= 4.10.4+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libphonon4 (>= 4:4.6.0really4.4.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1), phonon Filename: pool/main/p/python-qt4/python3-pyqt4.phonon_4.10.4+dfsg-1ubuntu1_i386.deb Size: 89866 MD5sum: 677b5069cc2e736762325849d933ae39 SHA1: 878fd021887325c13b5fceb9576d144bf5705d18 SHA256: bb04e342f69b7b5d63da4353e8acfb6d2088ce6459ac6137442400f2250bcdc9 Description: Python3 bindings for Phonon Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: c8dba490b57e32fdada5d1908c8d054d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.phonon-dbg Priority: extra Section: debug Installed-Size: 5109 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt4-dbg (= 4.10.4+dfsg-1ubuntu1), python3-pyqt4.phonon (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libphonon4 (>= 4:4.6.0really4.4.3), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1), phonon Filename: pool/main/p/python-qt4/python3-pyqt4.phonon-dbg_4.10.4+dfsg-1ubuntu1_i386.deb Size: 1883316 MD5sum: 3736880f6a9faefa2efbb39e60f1f2ea SHA1: db732616b7ad84d0bf345cb9d84e9f617b1e305f SHA256: 119e97ddda269184d9d7a2325956c2931fbfde6d98858103b68e3e64b04a9f9a Description: Python3 bindings for Phonon (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: d4a8e90ea615a14c4ab27c24deeedc98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.qtopengl Priority: optional Section: python Installed-Size: 326 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-pyqt4 (= 4.10.4+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-opengl (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-pyqt4.qtopengl_4.10.4+dfsg-1ubuntu1_i386.deb Size: 70730 MD5sum: 27577f10a47b2bfeb37b0d9087d52777 SHA1: 7a8af3b222c62fba74a54297a10fd16304083a81 SHA256: 99966aba13281618290520b87cdb08b850dbb2b0c26bb00d4e8aea861741d91a Description: Python 3 bindings for Qt4's OpenGL module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 941ce488b9c7ee457d77dd08e34bec2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.qtopengl-dbg Priority: extra Section: debug Installed-Size: 3414 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt4-dbg (= 4.10.4+dfsg-1ubuntu1), python3-pyqt4.qtopengl (= 4.10.4+dfsg-1ubuntu1), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-opengl (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-pyqt4.qtopengl-dbg_4.10.4+dfsg-1ubuntu1_i386.deb Size: 1285710 MD5sum: 527521404974caa7d0591e232eb08b92 SHA1: 55a4b7819b801c1c2970fe1097828a7e4c4b2838 SHA256: bf4f8369455919bbe4aa2f42a8d57d225882c6e7ac529031243fc9b4109a56e3 Description: Python 3 bindings for Qt4's OpenGL module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: f21bcd81a1a6d6bd14598248969c70de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.qtsql Priority: optional Section: python Installed-Size: 364 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-pyqt4 (= 4.10.4+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libgcc1 (>= 1:4.1.1), libqt4-sql (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-pyqt4.qtsql_4.10.4+dfsg-1ubuntu1_i386.deb Size: 82136 MD5sum: 048cd2394b20446d01ee48c41b5e6766 SHA1: a7ce54e174eb86ef71e1df679b840909bde5efc0 SHA256: f897ecce59592f8b125c849c5a27bd7d85bbc540134023cc27574c0322c5fd15 Description: Python3 bindings for PyQt4's SQL module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 74f26eb2822f3a53ab3d2d5ee34563d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt4.qtsql-dbg Priority: extra Section: debug Installed-Size: 3692 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: python-qt4 Version: 4.10.4+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt4-dbg (= 4.10.4+dfsg-1ubuntu1), python3-pyqt4.qtsql (= 4.10.4+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt4-sql (>= 4:4.8.0-1~), libqtcore4 (>= 4:4.8.0-1~), libqtgui4 (>= 4:4.8.0-1~), libstdc++6 (>= 4.1.1) Filename: pool/main/p/python-qt4/python3-pyqt4.qtsql-dbg_4.10.4+dfsg-1ubuntu1_i386.deb Size: 1402680 MD5sum: c029418f18a8fe81f363613ca9fdb028 SHA1: d21309f815002f6b0d95acbe8b6b885a5227f19d SHA256: 89ad833b8b79dbca4a98977b739706147c7fff55240b1b38a3ccd6a7b82ed1c9 Description: Python3 bindings for PyQt4's SQL module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 36d3f4cd746b959da12c143ba1a1dc23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5 Priority: optional Section: python Installed-Size: 12884 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.3), libgcc1 (>= 1:4.1.1), libpython3.4 (>= 3.4~b1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5designer5 (>= 5.0.2), libqt5gui5 (>= 5.2.0), libqt5help5 (>= 5.0.2), libqt5network5 (>= 5.2.0), libqt5printsupport5 (>= 5.2.0), libqt5test5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, sip-py3api-11.0 Suggests: python3-pyqt5-dbg Filename: pool/main/p/pyqt5/python3-pyqt5_5.2.1+dfsg-1ubuntu1_i386.deb Size: 1909900 MD5sum: e7bf7cb50d0d37d93d8b18b366a416e5 SHA1: 65f519a27afed26089e847c4498d1f4348bf0108 SHA256: fd2ae078f819a70ae4ade2af37998025cef2a554a8997d1a4fad8c0e3a9a5cf5 Description: Python 3 bindings for Qt5 Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: cab0484c24e2c7ce683948d6d1a87f6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5-dbg Priority: extra Section: debug Installed-Size: 73222 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3-sip-dbg, libc6 (>= 2.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5designer5 (>= 5.0.2), libqt5gui5 (>= 5.2.0), libqt5help5 (>= 5.0.2), libqt5network5 (>= 5.2.0), libqt5printsupport5 (>= 5.2.0), libqt5test5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Filename: pool/main/p/pyqt5/python3-pyqt5-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 27783626 MD5sum: dc8498ae8611c38814f01843f5b0577c SHA1: 084021be9992f8fcc02955f3e64b8ba4b33e91ae SHA256: ea7927ad1aeae4d59afab70ddb49ff4ac36f8380a2da23ecaeb77d7b3349935d Description: Python 3 bindings for Qt5 (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 705de7d30b2e90a6f681fbf8d448f0dd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtmultimedia Priority: optional Section: python Installed-Size: 755 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5multimedia5 (>= 5.2.0), libqt5multimediawidgets5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtmultimedia_5.2.1+dfsg-1ubuntu1_i386.deb Size: 118092 MD5sum: 124dfcafc90518149ff3a723a1e9a6de SHA1: 5774087786e409e235bc346dff3e535bfe605ab2 SHA256: debd011d0d6bc18330af3a699930b733ad55efc26f7487e6c57a559f1e10425a Description: Python 3 bindings for Qt5's Multimedia module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 1e4d7a0459406391136623d62adce571 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtmultimedia-dbg Priority: extra Section: debug Installed-Size: 6194 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtmultimedia (= 5.2.1+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5multimedia5 (>= 5.2.0), libqt5multimediawidgets5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtmultimedia-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 2451922 MD5sum: 956a42029ae20a3696e90a49eadb02c6 SHA1: 46808152b6da550bc996414d8bf7e3a12db41732 SHA256: b6d6ad7ebec886bd5549a814f98794db4d9884650d65cb6389b082b4fc4a2c21 Description: Python 3 bindings for Qt5's Multimedia module (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 64a39bce7a7feab3c50a3afd57204d05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtopengl Priority: optional Section: python Installed-Size: 436 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.2.0), libqt5opengl5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtopengl_5.2.1+dfsg-1ubuntu1_i386.deb Size: 56246 MD5sum: 85f1b16444c0155443717980acd78fdd SHA1: f97d84524b3d82e87e35d41da997b6bfcf58fa6f SHA256: 37b31ccfec5498402902ae2fbaaa0ed8bd92395201c6312f60e181f39f938a7a Description: Python 3 bindings for Qt5's OpenGL module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 5fdf51118ef387e87b8dfb241bfec44f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtopengl-dbg Priority: extra Section: debug Installed-Size: 2725 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Replaces: python3-pyqt5-dbg (<< 5.1.1+dfsg-1~) Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtopengl (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.2.0), libqt5opengl5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Breaks: python3-pyqt5-dbg (<< 5.1.1+dfsg-1~) Filename: pool/main/p/pyqt5/python3-pyqt5.qtopengl-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 1019208 MD5sum: d5045ba0429ec6aaec082e1acb056785 SHA1: 2d19972d0ec3eb32a2db548c939528d6cb086b29 SHA256: 0cab6fafd258bb1ee46a2419214621be3609e8cee69c114277ab755852b04cbb Description: Python 3 bindings for Qt5's OpenGL module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 2661336e8af1633c9ab3ac06863104d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtpositioning Priority: optional Section: python Installed-Size: 236 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5positioning5, libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtpositioning_5.2.1+dfsg-1ubuntu1_i386.deb Size: 39768 MD5sum: 8de2c6ebb616c1b1d289211a876ba70f SHA1: 88640f2e2464d402b20639cc48af179b6b11b746 SHA256: 2d23c7f77ef4c46e61582cb8e6fcb69e246d6bb1dc354494d4d250f6acf4705e Description: Python 3 bindings for QtPositioning module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: a1946a72b9516bfcb5a1759696375b6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtpositioning-dbg Priority: extra Section: debug Installed-Size: 2274 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtpositioning (= 5.2.1+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5positioning5, libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtpositioning-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 945600 MD5sum: a3920ec56e32b29a6f184ddff1fd3840 SHA1: 8fed08e496f3faaa954ace776869f1eabadf8bc0 SHA256: 6742b167269351acf905d6d321ff54673ddfb78d81e97041ae9d1c52fcda291d Description: Python 3 bindings for QtPositioning module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 5cc3ff22d0b640ecf756c451cd187350 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtquick Priority: optional Section: python Installed-Size: 1810 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libpython3.4 (>= 3.4~b1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5qml5 (>= 5.2.0~rc1), libqt5quick5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Filename: pool/main/p/pyqt5/python3-pyqt5.qtquick_5.2.1+dfsg-1ubuntu1_i386.deb Size: 265354 MD5sum: 1e9c22bd5154551a1edb3d020e52874d SHA1: 5a67bb669800b0ca138cf5b6286759753b4aa182 SHA256: c49eb3d6f063e87653075222f98c3a3b6516928e6c81bd75b5fddec105777d14 Description: Python 3 bindings for QtQuick module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 6c8032a228b7778afe74cc4377046517 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtquick-dbg Priority: extra Section: debug Installed-Size: 14740 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Replaces: python3-pyqt5-dbg (<< 5.0.1-2~) Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtquick (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5qml5 (>= 5.2.0~rc1), libqt5quick5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Breaks: python3-pyqt5-dbg (<< 5.0.1-2~) Filename: pool/main/p/pyqt5/python3-pyqt5.qtquick-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 5307228 MD5sum: c6f25b05d7e19e2270fbfeefadfb2e65 SHA1: e763ecb3e3445338a53a5a2d2712248d208798c8 SHA256: c1bc021e4fcd2656f750eebdbe747c8489b07a959c0826dfed9c1b56e8274fb2 Description: Python 3 bindings for QtQuick module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 9b4192642bccdc9962160d21f098a45c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsensors Priority: optional Section: python Installed-Size: 307 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5sensors5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsensors_5.2.1+dfsg-1ubuntu1_i386.deb Size: 47378 MD5sum: 21a2c59c9c8533b38f7792bfd4a62fbe SHA1: 165f43ec6340047c53d4ce8013e024b5346100de SHA256: c2626411ccdd0d75e4c0281b1fff0be756b4e8e44d5855d65f87e5afc656ef2d Description: Python 3 bindings for QtSensors module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 22333245b2aa3d12bdc4871fc926924b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsensors-dbg Priority: extra Section: debug Installed-Size: 2732 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtsensors (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5sensors5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsensors-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 1042392 MD5sum: 4ea40f53f7954b13aa4cf2ea937795da SHA1: 9c39a73cfbc5d1d81196170e95edfbbabbcf2773 SHA256: b44c8d67c1d20189663ab8c1bc843628e7832ac545655ae2004e3d70ec0d017a Description: Python 3 bindings for QtSensors module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: eff9e4c0086af6eaa2fa0c5a365681c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtserialport Priority: optional Section: python Installed-Size: 128 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5serialport5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtserialport_5.2.1+dfsg-1ubuntu1_i386.deb Size: 21972 MD5sum: daf630c88d6e43399aaf22e6967df9df SHA1: 493948e076a323a477fbfa26a4df1350621dba50 SHA256: 11f97779713874b454e5d293ec64953bbe420153b94ec4113255a81abf0a161f Description: Python 3 bindings for QtSerialPort module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: c60864226cb35cc4d3038d794f2d7ac9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtserialport-dbg Priority: extra Section: debug Installed-Size: 1161 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtserialport (= 5.2.1+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5serialport5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtserialport-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 476734 MD5sum: 6098fa9b69c44992b73601389a8cbcd1 SHA1: 474af4483ec52d5ef86befa9db09738531cfd188 SHA256: 6d9d6f9c7701770a0301305e4ea2a9e8c9b6883d52924ff3857eb394007bdb6e Description: Python 3 bindings for QtSerialPort module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: f7cae4c4d95beaf11b3c19922b842a28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsql Priority: optional Section: python Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5sql5 (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsql_5.2.1+dfsg-1ubuntu1_i386.deb Size: 70026 MD5sum: 8ab148ee04bea571ec4446a7ee00830c SHA1: 834907b6c4ce19193b0fe96c422e2f3f8b1f4b20 SHA256: ec671646b44f2563ea2f9136281444f605b0b821e3139a24655a936f761fc7eb Description: Python 3 bindings for Qt5's SQL module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: b767747637fab9f33116e4c55ddb4df0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsql-dbg Priority: extra Section: debug Installed-Size: 3254 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtsql (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5sql5 (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsql-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 1362998 MD5sum: c76f3e5bea2307475a3fa1af789e01ac SHA1: 35329e5406eab2aef703591f71e2cb391d6f49a4 SHA256: 101593f77d15bc1ff0c7273f8b36b87536947bd08a43f0793a4e3ed4bc7bdf7c Description: Python 3 bindings for Qt5's SQL module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 1ce1313d6dbf119940db685b7b21b722 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsvg Priority: optional Section: python Installed-Size: 146 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5svg5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsvg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 23608 MD5sum: 7b5d474ff62613aaa4721ec8576c095d SHA1: 16d2cc0ac9348883990cac0ddd4953f5fd867ec4 SHA256: 59a60a95e01eb29ff811e5981c3dec50d3725adb64f5252e1fbb16c821bc0251 Description: Python 3 bindings for Qt5's SVG module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 8f1285730d9646633f166884146f4168 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtsvg-dbg Priority: extra Section: debug Installed-Size: 1837 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtsvg (= 5.2.1+dfsg-1ubuntu1), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5svg5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtsvg-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 814910 MD5sum: e970e1d8aaf7f77fe20272900edca7aa SHA1: fa74a87856f4cedacc815c2c15a141a0bdec6f89 SHA256: 1d46f5c4ef0e766e2d65044332e15a986c25a7952177bd1a17f194d4bd2658ee Description: Python 3 bindings for Qt5's SVG module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 11ceb6c0c59427100092e6b0d0c4d1a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtwebkit Priority: optional Section: python Installed-Size: 515 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5webkit5, libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtwebkit_5.2.1+dfsg-1ubuntu1_i386.deb Size: 89468 MD5sum: 0cd7f53dd99688a4b34b7c2feaf4cd60 SHA1: fc7e29a50a409b83a923f904ef59e943ca9cc4d9 SHA256: 0441d259cd03696865a44648d6951f1c081f9441bde9427564d4e30028f6acb6 Description: Python 3 bindings for Qt5's WebKit module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 4e9ca602a7356a440694948e58bd4a66 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtwebkit-dbg Priority: extra Section: debug Installed-Size: 5899 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtwebkit (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5webkit5, libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtwebkit-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 2506880 MD5sum: 31b81c1b3ef055b4aaa3139865fa5f31 SHA1: a204dd147c42549a0a8cbbdd329b3a45f12fb086 SHA256: 8b9dd68f5fb89e53bcd75c9e3ddbd450e1b43ffe8e5802c8adc71a6284abb8ea Description: Python 3 bindings for Qt5's WebKit module (debug extensions) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 72960fe10193a9868ed0be33ee77ae1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtx11extras Priority: optional Section: python Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libqt5x11extras5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtx11extras_5.2.1+dfsg-1ubuntu1_i386.deb Size: 6912 MD5sum: 9a1fa87c4eba3a2a897b5db15b327140 SHA1: 7f6c8056dc071ad35ee13a7012a8493ccc4ff06b SHA256: 0509547bd93f44ce760329ff3976a969b8d470a425d4ab2c920f51db539556ae Description: Python 3 bindings for QtX11Extras module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 8421d385a30e6dc9b34c1e242c5ace97 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtx11extras-dbg Priority: extra Section: debug Installed-Size: 556 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtx11extras (= 5.2.1+dfsg-1ubuntu1), libqt5x11extras5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtx11extras-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 225124 MD5sum: 61a8670a173eedc9c68c7c247f0a95fd SHA1: 3861bdb5df2815eaa9ae3b14cf86487e64856d6c SHA256: 3ee7a9671c5f085c6e2d051ad43618787afa8d84dc6733ff7ef4635427b8dce9 Description: Python 3 bindings for QtX11Extras module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: 2f899bea8e42b1c78a19ff167e28821a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtxmlpatterns Priority: optional Section: python Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-pyqt5 (= 5.2.1+dfsg-1ubuntu1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5xmlpatterns5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtxmlpatterns_5.2.1+dfsg-1ubuntu1_i386.deb Size: 39162 MD5sum: c206e5a7a702ee4ff01f4f8328ea3a65 SHA1: 8d2e813f40d6ebda2a8967013915ff8945b7a26e SHA256: 278060df1ea9e6de90954442ab1eb93c21f4d89a1bb2434cf282635947d7494f Description: Python 3 bindings for Qt5's XmlPatterns module Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: ad6b62418b4afd9170bd7e687be3c701 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyqt5.qtxmlpatterns-dbg Priority: extra Section: debug Installed-Size: 2583 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyqt5 Version: 5.2.1+dfsg-1ubuntu1 Depends: python3-dbg, python3-pyqt5-dbg (= 5.2.1+dfsg-1ubuntu1), python3-pyqt5.qtxmlpatterns (= 5.2.1+dfsg-1ubuntu1), libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5xmlpatterns5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/p/pyqt5/python3-pyqt5.qtxmlpatterns-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 1119672 MD5sum: f712a477b0a4814a8e6e72b312c91861 SHA1: c3386a68674e58f451c75669384ffd0ccfeedc2c SHA256: 97baeb2cbc1a762f16a15faef9eb26fd6e07e12199f8fc116be1609ef0b6ad19 Description: Python 3 bindings for Qt5's XmlPatterns module (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/pyqt/ Description-md5: c2dd418ecf4c860fae112da9fecdbf0c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pytest Priority: optional Section: python Installed-Size: 449 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pytest Version: 2.5.1-1 Depends: python3-pkg-resources, python3-py (>= 1.4.19), python3:any (>= 3.3.2-2~), python3 Filename: pool/main/p/pytest/python3-pytest_2.5.1-1_all.deb Size: 91810 MD5sum: 61b0c280dec998089dd9d1e03d3bd41c SHA1: 9df686a544ac8fdce395f595265544251122ecef SHA256: 261271ff2404d82cd5e6559fdee1ca96b22ca8fe47388b10fc0ac3af20e01e16 Description: Simple, powerful testing in Python3 Homepage: http://pytest.org/ Description-md5: 96199c42946bd725e1215e13b9048bf4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyudev Priority: optional Section: python Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyudev Version: 0.16.1-2build1 Depends: python3:any (>= 3.3.2-2~), libudev1 Filename: pool/main/p/pyudev/python3-pyudev_0.16.1-2build1_all.deb Size: 29028 MD5sum: d564e3392432181a299b8a71fbb62f8b SHA1: 60feebba0bc83d4c8a89b3140ee8bbf6522d14da SHA256: 2dd9f7c237a71904e2dbd8ed8e67e7e3a29893bb02ee2218603cbe6939399a18 Description: Python3 bindings for libudev Homepage: http://pyudev.readthedocs.org/ Description-md5: 0d43aeec2566c4849434040f7494f2c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyxattr Priority: optional Section: python Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: i386 Source: python-pyxattr Version: 0.5.1-1.1build4 Provides: python3.4-pyxattr Depends: python3 (>= 3.4~), python3 (<< 3.5), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.3.6-6~) Suggests: python3-pyxattr-dbg Filename: pool/main/p/python-pyxattr/python3-pyxattr_0.5.1-1.1build4_i386.deb Size: 11046 MD5sum: aab09fcc429a53aef7576de3e4a9e96e SHA1: 2cd72f5314eef73d5bd75e18a40a51ebe8469944 SHA256: 95cfc83ff89e5ccc22c139bb96b928277c42490826c06b7bdb187aabd93bf36f Description: module for manipulating filesystem extended attributes (Python3) Homepage: http://pyxattr.k1024.org/ Description-md5: e2ac82a4b859a3a16c40964d3dca9000 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-pyxattr-dbg Priority: extra Section: debug Installed-Size: 131 Maintainer: Ubuntu Developers Original-Maintainer: Iustin Pop Architecture: i386 Source: python-pyxattr Version: 0.5.1-1.1build4 Provides: python3.4-pyxattr-dbg Depends: python3-pyxattr (= 0.5.1-1.1build4), python3-dbg (<< 3.5), libattr1 (>= 1:2.4.46-8), libc6 (>= 2.3.6-6~), python3-dbg (>= 3.4~) Filename: pool/main/p/python-pyxattr/python3-pyxattr-dbg_0.5.1-1.1build4_i386.deb Size: 25024 MD5sum: 4375eb6052b62a4b5095806df31ae136 SHA1: 285c969f8dd3cd141ef43f86f760eb9b6b1cc8fd SHA256: e31272186e0cc42c670695b066d45de91f52473ecd29842c4d79961cdb5ad176 Description: module for manipulating filesystem extended attributes (Python3 debug version) Homepage: http://pyxattr.k1024.org/ Description-md5: 972fee87b6a022e731b9041ee3175edb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-renderpm Priority: optional Section: python Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-reportlab Version: 3.0-1build1 Provides: python3.4-renderpm Depends: python3 (>= 3.4~), python3 (<< 3.5), libart-2.0-2 (>= 2.3.17), libc6 (>= 2.4), libfreetype6 (>= 2.2.1) Suggests: python3-renderpm-dbg Filename: pool/main/p/python-reportlab/python3-renderpm_3.0-1build1_i386.deb Size: 32058 MD5sum: 8c9a4202572ca1be2016fbf620f35489 SHA1: f6522ea47f4060bc41053a25761fdbe8a569ee35 SHA256: 407837b61c975e4b25213dad511d5ede3cf05194be37b1d5eed3fbad0d5107a8 Description: python low level render interface Description-md5: f69778da55c6c96c3d31560659245a79 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-renderpm-dbg Priority: extra Section: debug Installed-Size: 352 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-reportlab Version: 3.0-1build1 Depends: python3-renderpm (= 3.0-1build1), python3-dbg, libart-2.0-2 (>= 2.3.17), libc6 (>= 2.4), libfreetype6 (>= 2.2.1) Filename: pool/main/p/python-reportlab/python3-renderpm-dbg_3.0-1build1_i386.deb Size: 99092 MD5sum: 1f2c1a450eafe11664cd663ccb88922b SHA1: 90e760ced9f518fc4b672339879f7c56760f489a SHA256: 485d411b7a0013d0eec7340db54e164ba0c901a06d1eec18fd51c8eda4ff01e1 Description: python low level render interface (debug extension) Description-md5: 6869a2b5f092d5175dad07e42b3ce0c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-reportlab Priority: optional Section: python Installed-Size: 2322 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-reportlab Version: 3.0-1build1 Depends: python3:any (>= 3.3.2-2~) Recommends: python3-renderpm, python3-pil Suggests: pdf-viewer, python3-egenix-mxtexttools (>= 2.0.6-3.1), python-reportlab-doc Filename: pool/main/p/python-reportlab/python3-reportlab_3.0-1build1_all.deb Size: 445626 MD5sum: 0f83375a0d8b13e62bac0afdfff859f9 SHA1: 73860d966dde5cbb9eb90345cef2452f840bebdb SHA256: 9569e78a23d11fa7563fa2657441c72589dd15658e34378de8423c8a66db5191 Description: ReportLab library to create PDF documents using Python3 Description-md5: 4518ab9949b39e4958a3a20a2ab930f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-reportlab-accel Priority: optional Section: python Installed-Size: 89 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-reportlab Version: 3.0-1build1 Provides: python3.4-reportlab-accel Depends: python3-reportlab (>= 3.0-1build1), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4) Filename: pool/main/p/python-reportlab/python3-reportlab-accel_3.0-1build1_i386.deb Size: 17750 MD5sum: 99460cb5fcda2a09852ea63ba6ca0d06 SHA1: 633bc3846c73efeaa17097fb7856685ce46aaf60 SHA256: c7cde1aca8531eeb7545539d893039e3e3185884d898e45220c5a569b30f9bb0 Description: C coded extension accelerator for the ReportLab Toolkit Description-md5: 3a2f3d264cea475a3a1ee612a69fb526 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-reportlab-accel-dbg Priority: extra Section: debug Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python-reportlab Version: 3.0-1build1 Depends: python3-reportlab-accel (= 3.0-1build1), python3-dbg, libc6 (>= 2.4) Filename: pool/main/p/python-reportlab/python3-reportlab-accel-dbg_3.0-1build1_i386.deb Size: 46038 MD5sum: 94dce00cc8c9af47ef7cf87cbba7dc50 SHA1: 538cb49a14af688007ef72bf6fade62ccf820847 SHA256: 9f5d575784020bc437bb05cd60678d259a33caa2c43abb798bcdd5720016b6f9 Description: C coded extension accelerator for the ReportLab Toolkit Description-md5: 3a2f3d264cea475a3a1ee612a69fb526 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-repoze.lru Priority: extra Section: python Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-repoze.lru Version: 0.6-4 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-repoze.lru/python3-repoze.lru_0.6-4_all.deb Size: 10936 MD5sum: dda83ff2690d200c7d9dd7fa29708325 SHA1: 698f36ba0770a27f61205ad32983e9d8d70135eb SHA256: 0a5f8d65be47253cab5f85866b5309c73dfecf0afa75ca18c0326249bacbc8fb Description: tiny LRU cache implementation and decorator for Python 3 Homepage: http://www.repoze.org/ Description-md5: 3a0267de4611221b76e003adbe8d25c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-requests Priority: optional Section: python Installed-Size: 204 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: requests Version: 2.2.1-1 Depends: python3:any (>= 3.3.2-2~), ca-certificates, python3-chardet, python3-urllib3 (>= 1.5) Filename: pool/main/r/requests/python3-requests_2.2.1-1_all.deb Size: 42282 MD5sum: 19019b8c865616e10a3e1d99060fdbc7 SHA1: 7ac823b5f63de330efaa44e31a034cb938264b42 SHA256: 27facc449258a1fbae6024205874c8c26b53c117633c68dd5c566e53f09d6029 Description: elegant and simple HTTP library for Python3, built for human beings Homepage: http://python-requests.org Description-md5: 8d87f8941b1ef533bd81516172e31860 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-roman Priority: optional Section: python Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Andrea Colangelo Architecture: all Source: python-roman Version: 2.0.0-1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-roman/python3-roman_2.0.0-1_all.deb Size: 7836 MD5sum: d1cfb2d16cbbdd9b3630f68ac550a8cd SHA1: 45fc935b0a27ab59903adbc7d7eeb226dafe3244 SHA256: 8788e24791705baad0e28afc213eb9549fa6bc757fc1cb2672037960ea624ddb Description: module for generating/analyzing Roman numerals for Python 3 Homepage: http://pypi.python.org/pypi/roman/ Description-md5: c73a413835acfa5f8625cff8438eae16 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-sane Priority: optional Section: python Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging-sane (<< 1.1.7+2.0.0-1.1) Provides: python3.4-sane Depends: python3-pil (= 2.3.0-1ubuntu3), python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libsane (>= 1.0.11-3) Recommends: python3-tk (>= 2.5.2-1.1) Suggests: python-pil-doc, python3-sane-dbg Breaks: python3-imaging-sane (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-sane_2.3.0-1ubuntu3_i386.deb Size: 13816 MD5sum: e177e1d3c8e660c53b27f5ee41f18750 SHA1: 756fef461fbcd4432cf48edbf918fcd465f40cc4 SHA256: ed40c33ba62b00c3763c7e4010922411b1b6dbf6863e880a2fead7a9f84dd1ad Description: Python Imaging Library - SANE interface (Python3) Description-md5: 83197ff2fbafe55a90f617ee62ff24d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-sane-dbg Priority: extra Section: debug Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: pillow Version: 2.3.0-1ubuntu3 Replaces: python3-imaging-sane-dbg (<< 1.1.7+2.0.0-1.1) Depends: python3-sane (= 2.3.0-1ubuntu3), python3-pil-dbg (= 2.3.0-1ubuntu3), python3-dbg, libc6 (>= 2.4), libsane (>= 1.0.11-3) Breaks: python3-imaging-sane-dbg (<< 1.1.7+2.0.0-1.1) Filename: pool/main/p/pillow/python3-sane-dbg_2.3.0-1ubuntu3_i386.deb Size: 29282 MD5sum: 9d79549a12875d6372f8810f0c824a0d SHA1: a91b1375715ea2d90cb98268e7b99494f464a787 SHA256: 35245855f744094270d37f9df6a605afc43b9e2821f3b9186740e8d42eafd753 Description: Python Imaging Library - SANE interface (Python3 debug extension) Description-md5: 20e2e4dc94b4a1ac5ce0e637bfff516a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-scripttest Priority: optional Section: python Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-scripttest Version: 1.2-1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-scripttest/python3-scripttest_1.2-1build1_all.deb Size: 8866 MD5sum: 3277ad9f1bcc95449f695355cdc2da4f SHA1: 498f964aa724984345f26faa22a9fb6605ab23e4 SHA256: f5442cc70865f1f666d0fbe7503bb50acd3d1ba1055b3e9d7edc0d9cff756f03 Description: Helper to test command-line scripts - python 3.x Homepage: http://pythonpaste.org/scripttest/ Description-md5: 35a418bf241da05851b2f3cc0c221a37 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-setuptools Priority: optional Section: python Installed-Size: 703 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: python-setuptools Version: 3.3-1ubuntu1 Provides: python3.4-setuptools Depends: python3:any (>= 3.4), python3:any (<< 3.5), python3-pkg-resources (= 3.3-1ubuntu1) Conflicts: python-setuptools (= 0.6.10-2) Filename: pool/main/p/python-setuptools/python3-setuptools_3.3-1ubuntu1_all.deb Size: 144332 MD5sum: e3473f464a944d0d14dc83ff34707df6 SHA1: 14a33ea4be6d23279e8675b464f87b5a495a614b SHA256: 494daf5333bebdb03a1197526b4eab9c02917b364f3551e2032ec9273948a447 Description: Python3 Distutils Enhancements (setuptools compatibility) Homepage: https://pypi.python.org/pypi/setuptools Description-md5: 566d3b18e11f01231af501fec57c069c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-simplegeneric Priority: optional Section: python Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: simplegeneric Version: 0.8.1-1 Depends: python3 (>= 3.1.3-13~) Filename: pool/main/s/simplegeneric/python3-simplegeneric_0.8.1-1_all.deb Size: 11452 MD5sum: 0405a298288c5ef27c199a88de38288d SHA1: 688c84a10f0f389a6161b48e6d8667c3e8848d24 SHA256: 146496b0b610cc6f95dba02aac7bcc626d8511042be3df5f8b57a507988e4cdd Description: simple generic functions for Python3 Homepage: http://pypi.python.org/pypi/simplegeneric Description-md5: 1aa3e4db49ded29787a5532d32398159 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-simplejson Priority: optional Section: python Installed-Size: 220 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: simplejson Version: 3.3.1-1ubuntu6 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.3.6-6~) Filename: pool/main/s/simplejson/python3-simplejson_3.3.1-1ubuntu6_i386.deb Size: 45658 MD5sum: 1653dc649c70f3434a4f44dc58286b39 SHA1: ab83627833cd94d0e28770225b17fbceb9a94fae SHA256: 78d6aafea0c8bb49511232dd2f757219e13b70ddf82771d86ac0471473ad7493 Description: JSON encoder and decoder for Python 3 Homepage: http://undefined.org/python/#simplejson Description-md5: f89c1dbd1665ff53ce212794904fd89d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-simplejson-dbg Priority: extra Section: debug Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: simplejson Version: 3.3.1-1ubuntu6 Depends: python3-simplejson (= 3.3.1-1ubuntu6), libc6 (>= 2.3.6-6~), python3-dbg (<< 3.5), python3-dbg (>= 3.4~) Filename: pool/main/s/simplejson/python3-simplejson-dbg_3.3.1-1ubuntu6_i386.deb Size: 19674 MD5sum: a2961c7a7a1ef65de05995d4be98f2b7 SHA1: 87a58eb08ebe86206856e8d20907798240c5c8ba SHA256: fde635850c16d50ab75afc3c86196b0a960920b67d2344734c42211d12735ad8 Description: JSON encoder and decoder for python3-dbg Homepage: http://undefined.org/python/#simplejson Description-md5: 2bf931223f8d0713f008beec88c812c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-sip Priority: optional Section: python Installed-Size: 273 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: sip4 Version: 4.15.5-1build1 Provides: sip-py3api-11.0 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4) Breaks: python3-pyqt4 (<< 4.10.2~), python3-pyqt4.qsci (<< 2.7.2) Filename: pool/main/s/sip4/python3-sip_4.15.5-1build1_i386.deb Size: 66214 MD5sum: d4730bf100f0af5559efc01181a5835f SHA1: bc21b61d92f656b5b1e9be094bbd2e5546d30242 SHA256: 7f7e3145eb870bdcba53bf5c1b7c5af0a88a4a253fd2979401a21786eaed36ac Description: Python 3/C++ bindings generator runtime library Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: a95e2a685ffcf3a879eaef1d99367187 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active Package: python3-sip-dbg Priority: extra Section: debug Installed-Size: 898 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: sip4 Version: 4.15.5-1build1 Depends: python3-sip (= 4.15.5-1build1), python3-dbg, libc6 (>= 2.4) Filename: pool/main/s/sip4/python3-sip-dbg_4.15.5-1build1_i386.deb Size: 236916 MD5sum: 9b0852c1b695b1327e1f96437f502563 SHA1: 8a5c6aa612e6fe221df6dc14a8eda72c8929ce16 SHA256: a24dd36db6dc759decb29d54d0b5c348e3b0cb03fe87fbd05ce25f5eb09d8457 Description: Python 3/C++ bindings generator runtime library (debug extension) Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: 01749694a344b7820cd29572ca4074b7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-sip-dev Priority: optional Section: python Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: sip4 Version: 4.15.5-1build1 Depends: python3:any (>= 3.3.2-2~), python3-sip (= 4.15.5-1build1), sip-dev (= 4.15.5-1build1), python3-dev Suggests: python-sip-doc Filename: pool/main/s/sip4/python3-sip-dev_4.15.5-1build1_i386.deb Size: 20052 MD5sum: c808dec120e4cdabd5201155c337f4e5 SHA1: ed7c409e0410a169c810c4184b183455a7d59d29 SHA256: 74da73a3d214195184d04e91dcbf4725ecb5ff128236d5924048d7cded45891c Description: Python 3/C++ bindings generator development files Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: b9db64c89950f09d0794c4281f76db68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-six Priority: optional Section: python Installed-Size: 63 Maintainer: Colin Watson Architecture: all Source: six Version: 1.5.2-1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/s/six/python3-six_1.5.2-1_all.deb Size: 8126 MD5sum: 2d6a34329151366dcccde3f35efe3df2 SHA1: 3a4f39bb04846afa09d2352c4df05ad5310b98f7 SHA256: f55ac025208a10a0a82f5e6a4473ac454881951543e62a22183f58899ef1eb64 Description: Python 2 and 3 compatibility library (Python 3 interface) Homepage: http://pythonhosted.org/six/ Description-md5: e74d005147dc326d870af862967d70a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-software-properties Priority: optional Section: python Installed-Size: 134 Maintainer: Michael Vogt Architecture: all Source: software-properties Version: 0.92.36 Depends: python3:any (>= 3.3.2-2~), python3, python3-apt (>= 0.6.20ubuntu16), python3-pycurl, lsb-release, unattended-upgrades, iso-codes Filename: pool/main/s/software-properties/python3-software-properties_0.92.36_all.deb Size: 19364 MD5sum: 233065b102406e095d6c2ab64df8db3e SHA1: 3314bb0aa72413acee339f18ec194f143a5f20e4 SHA256: 3c6992ff2366816c8d243304d7e8af3fd046d247c958dc89045699b7cc34e042 Description: manage the repositories that you install software from Description-md5: 2404b69e069f73169a1d424cb63f1d53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-speechd Priority: extra Section: python Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian TTS Team Architecture: all Source: speech-dispatcher Version: 0.8-5ubuntu1 Replaces: python-speechd Depends: python3-xdg, python3:any (>= 3.3.2-2~), python3 Breaks: python-speechd Filename: pool/main/s/speech-dispatcher/python3-speechd_0.8-5ubuntu1_all.deb Size: 41678 MD5sum: 5622b0dfcbb8020532278ce62f57da1f SHA1: 0d5b028eb34c5cf3ffb6ff6304361098d732bfae SHA256: 7e7dad5aec3926515842f5cfcfb556038bdc795154b1ea402cd7505da5a5c418 Description: Python interface to Speech Dispatcher Homepage: http://devel.freebsoft.org/speechd Description-md5: 9d12b4fec6bb06a0d001bfbfcab51d5b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-sphinx Priority: optional Section: python Installed-Size: 1340 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sphinx Version: 1.2.2+dfsg-1ubuntu1 Depends: python3:any (>= 3.3.2-2~), python3-docutils (>= 0.7), python3-pygments (>= 1.2), python3-jinja2 (>= 2.3), sphinx-common (= 1.2.2+dfsg-1ubuntu1) Recommends: python3-pil Suggests: jsmath, libjs-mathjax, dvipng, texlive-latex-recommended, texlive-latex-extra, texlive-fonts-recommended, sphinx-doc Filename: pool/main/s/sphinx/python3-sphinx_1.2.2+dfsg-1ubuntu1_all.deb Size: 270110 MD5sum: 198eab5097e5e8f55b8ace3479d165b9 SHA1: c9fc80475f24be0fd26d217b1c8183924dc33edd SHA256: 52a8b4a150139edc606c75b84295f8a55885e93f27efb7766e28069ae0e74023 Description: documentation generator for Python projects (implemented in Python 3) Homepage: http://sphinx-doc.org/ Description-md5: bf19f886131bece0fb0b6743422596ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-sqlalchemy Priority: optional Section: python Installed-Size: 3112 Maintainer: Ubuntu Developers Original-Maintainer: Piotr Ożarowski Architecture: all Source: sqlalchemy Version: 0.8.4-1build1 Depends: python3:any (>= 3.3.2-2~) Suggests: python-sqlalchemy-doc Filename: pool/main/s/sqlalchemy/python3-sqlalchemy_0.8.4-1build1_all.deb Size: 528028 MD5sum: c38f79841c6cd2fbc15c5db34a004d6c SHA1: 260cb4609f97723b46438e70d213e4955b89974b SHA256: 89077ead34b874fe9c5a5faf50929d4e39679fb09025fc06130b0d088688195d Description: SQL toolkit and Object Relational Mapper for Python 3 Homepage: http://www.sqlalchemy.org/ Description-md5: ab3e4e16d880158a692652f7aeb4779d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-stevedore Priority: extra Section: python Installed-Size: 122 Maintainer: Ubuntu Developers Original-Maintainer: Julien Danjou Architecture: all Source: stevedore Version: 0.14.1-1 Depends: python3:any (>= 3.3.2-2~) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/stevedore/python3-stevedore_0.14.1-1_all.deb Size: 14778 MD5sum: b56ea86b1fcee8e74125ff66bc773b34 SHA1: 85131d9f1e60454916021bbc942f8fb7ac0ce7ac SHA256: 591a04fc3cefc6c1c3735bfce4c61cf756a3a0e317a1256c25bdb7a08a2deb79 Description: manage dynamic plugins for Python applications - python3 Homepage: https://github.com/openstack/stevedore Description-md5: 8c04b322fc21b52834676c8a9e0ed455 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-subunit Priority: optional Section: python Installed-Size: 181 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: all Source: subunit Version: 0.0.18-0ubuntu7 Depends: python3:any (>= 3.3.2-2~), python3-testtools (>= 0.9.4) Filename: pool/main/s/subunit/python3-subunit_0.0.18-0ubuntu7_all.deb Size: 32898 MD5sum: b4fe03e007444ceed83fc7e80040a1cf SHA1: 5b790cea3119569710eb7a47d0cb449118a48b46 SHA256: ca95dc4605ad0c6b9cb645507f33e5be413ed9c76c234fe9d82c090bd330ee99 Description: unit testing protocol - Python3 bindings to generate and consume streams Homepage: http://code.launchpad.net/subunit Description-md5: b8857ff8138802bdb86f8c00c1275368 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-tempita Priority: optional Section: python Installed-Size: 92 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-tempita Version: 0.5.2-1build1 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-tempita/python3-tempita_0.5.2-1build1_all.deb Size: 13680 MD5sum: bbb2569ddfa3fc2e0256df481b1cf4f3 SHA1: 8b2b75c7f4977baf51361c1a3da29064d2bda1b4 SHA256: 2212e86d9685d624d6cb34ea83ea1ee77c48c790dacc92a0c15f285baaa2eed2 Description: very small text templating language Description-md5: 70161c2bb4512e28c7153543a4cc4979 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-testrepository Priority: optional Section: python Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: testrepository Version: 0.0.18-1ubuntu1 Depends: python3-subunit, python3-fixtures, python3-testtools, python3:any (>= 3.3.2-2~) Filename: pool/main/t/testrepository/python3-testrepository_0.0.18-1ubuntu1_all.deb Size: 56694 MD5sum: 4b01e6ad21505b0f8474005868ca7921 SHA1: 5f41ee3f35300dc2da5385279bf68e9ef16cc976 SHA256: eed0e4ec51b49d599501cf172e077dfdfb91a6a43b8c67d7f7bb962d50e087b8 Description: Database of test results - python library (python3) Homepage: https://pypi.python.org/pypi/testrepository Description-md5: 4c91728996927d0737acf79fb25d2164 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-testresources Priority: optional Section: python Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Robert Collins Architecture: all Source: testresources Version: 0.2.7-1ubuntu2 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/t/testresources/python3-testresources_0.2.7-1ubuntu2_all.deb Size: 24756 MD5sum: a39a6e5e31e6e46482a539548b8a6363 SHA1: e9b8bf6b08141119019f1eebdeb23b5a4688a202 SHA256: b9d18dc1e50bd456015f6095b235877cacb18789111f69e2160132ca524d06af Description: PyUnit extension for managing expensive test fixtures (python3) Description-md5: 659b0e4c9a60fab5536fb8a646b5d5a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-testscenarios Priority: optional Section: python Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: PKG OpenStack Architecture: all Source: python-testscenarios Version: 0.4-2ubuntu2 Depends: python3-testtools, python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-testscenarios/python3-testscenarios_0.4-2ubuntu2_all.deb Size: 13078 MD5sum: eccb9f1cc566cc4dace4f7a4d61107bc SHA1: ea3c275cc61828fd9a451e32914f62edb59cb1dd SHA256: 2e979ec1dace8962d61805a18db2c4c09ddb69350f534dee848f7692012669b2 Description: Dependency injection for Python unittest tests (python3) Homepage: https://launchpad.net/testscenarios Description-md5: c4f8aea97ce5aa6265a6ff5a727fa697 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-testtools Priority: optional Section: python Installed-Size: 672 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-testtools Version: 0.9.35-0ubuntu1 Depends: python3-extras, python3:any (>= 3.3.2-2~), python3-mimeparse, python3-pkg-resources Filename: pool/main/p/python-testtools/python3-testtools_0.9.35-0ubuntu1_all.deb Size: 110216 MD5sum: 2366c41f44efe4c912165a6c3682cbc5 SHA1: 281fe77bafaa29e2054e635b746636cf3c018fd1 SHA256: a43908ee14ccd47863ae20aa0d6df79f3b21a8910375c5cec5f5877bc08d9366 Description: Extensions to the Python unittest library (Python 3.x) Homepage: http://pypi.python.org/pypi/testtools Description-md5: a0f99057479ebb06f58c1cbea607da03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-tk Priority: optional Section: python Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-stdlib-extensions Version: 3.4.0-0ubuntu1 Provides: python3.4-tk Depends: python3 (>= 3.4), python3 (<< 3.5), libc6 (>= 2.3.6-6~), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Suggests: tix, python3-tk-dbg Filename: pool/main/p/python3-stdlib-extensions/python3-tk_3.4.0-0ubuntu1_i386.deb Size: 22088 MD5sum: c4708b37bdf8b4f896e0df00a09bac74 SHA1: ee5654c19a9ee14e4384d7ef19dbf48e08ec0acc SHA256: 8791d0da0bef643326d2ee7ea6ac307a976f0a48f1930278ff87074ecabf2430 Description: Tkinter - Writing Tk applications with Python 3.x Description-md5: 23263ef24020072cb878ca2432c298ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3-tk-dbg Priority: extra Section: python Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3-stdlib-extensions Version: 3.4.0-0ubuntu1 Depends: python3-tk (= 3.4.0-0ubuntu1), libc6 (>= 2.3.6-6~), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Filename: pool/main/p/python3-stdlib-extensions/python3-tk-dbg_3.4.0-0ubuntu1_i386.deb Size: 60916 MD5sum: 0f47eca7b81e085c0446f1b694d9b322 SHA1: 1402557a4f2c9c40d0ede72376b9884866523b29 SHA256: 3adb052480b20eadfe04a930aa69ca7b115b4f918f91c3aeaeee924e467966d9 Description: Tkinter - Writing Tk applications with Python 3.x (debug extension) Description-md5: 4275bd46341c34a2376a1610e9252f65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-tz Priority: optional Section: python Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: all Source: python-tz Version: 2012c-1build1 Depends: tzdata, python3:any (>= 3.3.2-2~) Filename: pool/main/p/python-tz/python3-tz_2012c-1build1_all.deb Size: 23290 MD5sum: c5a2de48099b52d71088019a8b19d595 SHA1: cf2d456d21b3484e66f0a85ecf29fc65b388d2f3 SHA256: 483c807328f86dcfc740efb929ba57742fe252ca5d5bcc9f451f9da34dd67612 Description: Python3 version of the Olson timezone database Homepage: http://pypi.python.org/pypi/pytz/ Description-md5: c3ef8e0b8ef404e56ec4c9cb2cec1ec9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-uno Priority: optional Section: python Installed-Size: 515 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice Version: 1:4.2.3~rc3-0ubuntu2 Replaces: python3-uno (<< 1:4.0.2~rc2), python3.3-uno Depends: libreoffice-core (= 1:4.2.3~rc3-0ubuntu2), python3:any (>= 3.3.2-2~), libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libpython3.4 (>= 3.4~b1), libstdc++6 (>= 4.1.1), uno-libs3 (>= 4.1.0~alpha), ure Conflicts: libreoffice-common (<< 1:3.5.0), python-uno, python3-uno (<< 1:4.0.2~rc2), python3.3-uno Filename: pool/main/libr/libreoffice/python3-uno_4.2.3~rc3-0ubuntu2_i386.deb Size: 119300 MD5sum: e9472de5c9c182cf0288e855cac51ac6 SHA1: cf7a01d0b1b7a60f6e6c086dd46040e8b5a596a5 SHA256: e8b4c928b26fb2491bf891a40f3825a1689d20452db6b051b1360379f7fb465d Description: Python-UNO bridge Enhances: libreoffice Homepage: http://udk.openoffice.org/python/python-bridge.html Description-md5: f4a55d75b607baa049506ff436442fb6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: python3-update-manager Priority: standard Section: python Installed-Size: 241 Maintainer: Ubuntu Developers Architecture: all Source: update-manager Version: 1:0.196.11 Replaces: update-manager-core (<< 1:0.163) Depends: python3:any (>= 3.3.2-2~), python3-apt (>= 0.8.5~), python3-distupgrade, lsb-release Breaks: update-manager-core (<< 1:0.163) Filename: pool/main/u/update-manager/python3-update-manager_0.196.11_all.deb Size: 31578 MD5sum: fd21c2b3399196003f41c84c06d33c9f SHA1: 02a982b05dd13bdb5fcbda97a45ef484be982a89 SHA256: bca7f238836d58e3f1031659720ebe965953b1aa967ca29d442575779f6be484 Description: python 3.x module for update-manager Description-md5: ecfb930b93b3c3391fc6ad445be08cee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: python3-urllib3 Priority: optional Section: python Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-urllib3 Version: 1.7.1-1build1 Depends: python3:any (>= 3.3.2-2~), python3-six Recommends: ca-certificates Filename: pool/main/p/python-urllib3/python3-urllib3_1.7.1-1build1_all.deb Size: 38962 MD5sum: 55c037c0bc5faae010fac7d6c3e0149b SHA1: 064f2024c7e302c07dabffa0938184f0ba65b450 SHA256: c432e9b3059012333e6fe7758e8a8310596da8bb4dd3c470343150bcb86cfb19 Description: HTTP library with thread-safe connection pooling for Python3 Homepage: http://urllib3.readthedocs.org Description-md5: 925b7b29e0f5e03b0540c887d3d8fba3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: python3-waitress Priority: optional Section: python Installed-Size: 350 Maintainer: Ubuntu Developers Original-Maintainer: Andrew Shadura Architecture: all Source: waitress Version: 0.8.8-1ubuntu3 Depends: python3-pkg-resources, python3.4, python3:any (>= 3.3.2-2~) Suggests: python-waitress-doc Filename: pool/main/w/waitress/python3-waitress_0.8.8-1ubuntu3_all.deb Size: 52452 MD5sum: 3d114819a35c1526acb72e3c9e682188 SHA1: 72527755e73628b1716aac4eef2b4790718c4475 SHA256: 3ee24f06eb973638cbc082cedc2b7b16b897f74a299a4d959e9d60567d6d5859 Description: production-quality pure-Python WSGI server (Python 3) Homepage: http://github.com/Pylons/waitress Description-md5: e6eb43a82f3c2944d088400cb62185e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-webob Priority: optional Section: python Installed-Size: 311 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: python-webob Version: 1.3.1-1 Depends: python3, python3:any (>= 3.3.2-2~) Suggests: python-webob-doc Filename: pool/main/p/python-webob/python3-webob_1.3.1-1_all.deb Size: 57894 MD5sum: 65b7972fbe8d0597cbf7385bb8a00404 SHA1: b9df0fa9a957b5e9b851287ec820ccba316e2179 SHA256: 1eca03d4c1da82fe9dbf6ead73ded8ae5081eafd4ba9a80c29a847ff080c07b9 Description: Python module providing WSGI request and response objects (Python 3) Homepage: http://webob.org/ Description-md5: 0856d0b4dc0dede58a323db131e19814 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-webtest Priority: optional Section: python Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: webtest Version: 2.0.14-1ubuntu1 Depends: python3-six, python3-waitress (>= 0.8.5), python3:any (>= 3.3.2-2~), python3-bs4, python3-webob, python3-paste, python3-pastedeploy Suggests: python-webtest-doc, python3-lxml Filename: pool/main/w/webtest/python3-webtest_2.0.14-1ubuntu1_all.deb Size: 26078 MD5sum: c73e54ff564ee170a4df7c87feb408e4 SHA1: ecf04c4ce85fb5c9cb719b5192103185088fb78b SHA256: cb497c8dae936be05dab8a7ccbcd0c74f21f7a4b4611414a0656deadd333714a Description: wraps any WSGI application and makes it easy to test Homepage: http://pythonpaste.org/webtest/ Description-md5: 68f7bf77a89eef2183788bf379aa8f94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-werkzeug Priority: optional Section: python Installed-Size: 1086 Maintainer: Ubuntu Developers Original-Maintainer: Noah Slater Architecture: all Source: python-werkzeug Version: 0.9.4+dfsg-1.1ubuntu1 Depends: python3:any (>= 3.3.2-2~), libjs-jquery Recommends: python3-simplejson | python3, python3-openssl, python3-pyinotify Suggests: ipython3, python3-pkg-resources, python3-lxml, python-werkzeug-doc Filename: pool/main/p/python-werkzeug/python3-werkzeug_0.9.4+dfsg-1.1ubuntu1_all.deb Size: 211108 MD5sum: df1d945f63558830cbf0d4bd6a654026 SHA1: 7bb7a496aa5554daff1759408e5c16653f2edbbf SHA256: 7c3465de56a44ebe7bca9e5ab31a80fa74303395f2c7a1c3d0d49465d732927a Description: collection of utilities for WSGI applications Homepage: http://werkzeug.pocoo.org/ Description-md5: bc8efbff7e3db3c63971edb088df7f93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-xdg Priority: optional Section: python Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: pyxdg Version: 0.25-4 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/p/pyxdg/python3-xdg_0.25-4_all.deb Size: 31466 MD5sum: 4be9bd7ee8030fee2ae51d3fbabc60ab SHA1: 3a4946f14f67b64ea78119b0f9cf595ecfa381cb SHA256: 600e1be49c0dc527fefeb51396cb3c351a2bf12ea95588c35adddd88be676624 Description: Python 3 library to access freedesktop.org standards Homepage: http://www.freedesktop.org/wiki/Software/pyxdg Description-md5: 7eb50b73f99abea5fd51c02f7348e874 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-xkit Priority: optional Section: python Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Alberto Milone (tseliot) Architecture: all Source: x-kit Version: 0.5.0ubuntu2 Depends: python3:any (>= 3.3.2-2~) Filename: pool/main/x/x-kit/python3-xkit_0.5.0ubuntu2_all.deb Size: 18582 MD5sum: 7155eef72a86177cbe4db0e4faedd409 SHA1: 3165a495da016843ffa49cb299a29df9b9d9a585 SHA256: 0ed021af6b9c9ea44dedeb91ab2daf9d84bd9c542b9d26004243c46a4c2f77ff Description: library for the manipulation of xorg.conf files (Python 3) Description-md5: 10e67b55f9484e6c650b5934e2e1a887 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: python3-yaml Priority: optional Section: python Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyyaml Version: 3.10-4build4 Depends: python3 (>= 3.4~), python3 (<< 3.5), libc6 (>= 2.4), libyaml-0-2 Filename: pool/main/p/pyyaml/python3-yaml_3.10-4build4_i386.deb Size: 87418 MD5sum: 8d7f7db0028f12b619bfa3f77ad7675a SHA1: 9e836a2eae18b6d783f2c5ddfbe433b3b4fe349b SHA256: af96e02bdfbe78be4078f2d6ad18a4a8b6dcccc8de335d407f339cd51b8376ce Description: YAML parser and emitter for Python3 Homepage: http://pyyaml.org/ Description-md5: 6b427841deb10f77a5f50e5f6b5a05d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-yaml-dbg Priority: extra Section: debug Installed-Size: 257 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: pyyaml Version: 3.10-4build4 Depends: python3-yaml (= 3.10-4build4), python3-dbg, libc6 (>= 2.4), libyaml-0-2 Filename: pool/main/p/pyyaml/python3-yaml-dbg_3.10-4build4_i386.deb Size: 69866 MD5sum: 0525ed14a069e06e4598238efc59ae04 SHA1: 48a8cb86bbb7b5967581b36bfa0a5d559b0469de SHA256: 2e5dece06a3e9f6ea28ba1d397ad76103571be24e7eb054b5877847f435292bd Description: YAML parser and emitter for Python3 (debug build) Homepage: http://pyyaml.org/ Description-md5: d81da5f05baafef98ef367b1858f7b09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-zope.interface Priority: optional Section: zope Installed-Size: 638 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: i386 Source: zope.interface Version: 4.0.5-1ubuntu4 Provides: python3-zope, python3.4-zope.interface Depends: python3 (<< 3.5), python3 (>= 3.4~), python3-pkg-resources, libc6 (>= 2.3.6-6~) Filename: pool/main/z/zope.interface/python3-zope.interface_4.0.5-1ubuntu4_i386.deb Size: 79170 MD5sum: 522c18a16e7b33294d0f0f487110bee3 SHA1: b69917940d5d03cc600711f7dc3285ac248530de SHA256: cbb1dbef151cc73069e0785271f7068fd57a467ea675f7ff7a3c4d57cc33caf2 Description: Interfaces for Python3 Homepage: http://pypi.python.org/pypi/zope.interface Description-md5: c78914f873fd4bc79ff3cafffa48a623 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3-zope.interface-dbg Priority: extra Section: debug Installed-Size: 163 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu Zope Team Architecture: i386 Source: zope.interface Version: 4.0.5-1ubuntu4 Depends: python3-zope.interface (= 4.0.5-1ubuntu4), python3-dbg, libc6 (>= 2.3.6-6~) Filename: pool/main/z/zope.interface/python3-zope.interface-dbg_4.0.5-1ubuntu4_i386.deb Size: 28638 MD5sum: b682e3a3b4833017d7195b7a41b8dee7 SHA1: 59f671e73206787c703b4ea4cf121ab283dced98 SHA256: 0d94059013ef9f67eb7a311643dde9276449bf377c31f68cb0b053ba7878dc36 Description: Interfaces for Python3 (debug extension) Homepage: http://pypi.python.org/pypi/zope.interface Description-md5: aa072e81f780360142f8036fc90d42a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: python3.4 Priority: important Section: python Installed-Size: 325 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: i386 Version: 3.4.0-2ubuntu1 Depends: python3.4-minimal (= 3.4.0-2ubuntu1), libpython3.4-stdlib (= 3.4.0-2ubuntu1), mime-support Suggests: python3.4-doc, binutils Filename: pool/main/p/python3.4/python3.4_3.4.0-2ubuntu1_i386.deb Size: 162862 MD5sum: 75208aa567c2574a544a869b4c15a984 SHA1: 129a2d036394d8dc9bda04319feed6a7b5c8a47c SHA256: 8d23978e571450d03b3b71ac651aec99529ee8ba325e919cb98b0794786a0757 Description: Interactive high-level object-oriented language (version 3.4) Multi-Arch: allowed Description-md5: 1ebe097d3a9a32726baaf299e5c158ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: python3.4-dbg Priority: extra Section: debug Installed-Size: 25515 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: python3.4 (= 3.4.0-2ubuntu1), libpython3.4-dbg (= 3.4.0-2ubuntu1), libc6 (>= 2.10), libexpat1 (>= 2.1~beta3), zlib1g (>= 1:1.2.0) Recommends: gdb Suggests: python3-gdbm-dbg, python3-tk-dbg Filename: pool/main/p/python3.4/python3.4-dbg_3.4.0-2ubuntu1_i386.deb Size: 7586476 MD5sum: 2d883db4b7b3351ece43fdc855a4e94d SHA1: ef2d14e794f92068486c098d4b25c2c3073f35bd SHA256: b28586840b2503ae6fe163b889fcb971c6726ef673950b5c608e0f234daaf46e Description: Debug Build of the Python Interpreter (version 3.4) Multi-Arch: allowed Description-md5: a59963bee182d9469f1c02b5e246009e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3.4-dev Priority: optional Section: python Installed-Size: 451 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: python3.4 (= 3.4.0-2ubuntu1), libpython3.4-dev (= 3.4.0-2ubuntu1), libpython3.4 (= 3.4.0-2ubuntu1), libexpat1-dev Recommends: libc6-dev | libc-dev Filename: pool/main/p/python3.4/python3.4-dev_3.4.0-2ubuntu1_i386.deb Size: 424644 MD5sum: 37504588e0f22e3c9da4edae47561cfa SHA1: d00debc79fc7585966c5942bf214a8a9d87af09c SHA256: 9fe856d4c2dbc7fb008f8b2bfde976f69c19e3a76f1a3080bda3cb97f8996288 Description: Header files and a static library for Python (v3.4) Multi-Arch: allowed Description-md5: ec6a2bf80bfa9d5cd417d85704c5e498 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3.4-doc Priority: optional Section: doc Installed-Size: 36107 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libjs-jquery, libjs-underscore Suggests: python3.4 Filename: pool/main/p/python3.4/python3.4-doc_3.4.0-2ubuntu1_all.deb Size: 4931818 MD5sum: 68e83ee4fbd1282f42b1a5a8687112b5 SHA1: 7509132c0cb9eb8e859b99bfe4eae27ae4f4c45f SHA256: e0b03f243795a125b93d19de79e32f4211ceb0d3465bceb155243dbceccd1afe Description: Documentation for the high-level object-oriented language Python (v3.4) Description-md5: c4e4dacde4e19fbdcc49c336ce8f5b1a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3.4-examples Priority: optional Section: python Installed-Size: 1801 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: all Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: python3.4 (>= 3.4.0-2ubuntu1) Filename: pool/main/p/python3.4/python3.4-examples_3.4.0-2ubuntu1_all.deb Size: 348140 MD5sum: 4c357f34926727c7e6240741c5c388a7 SHA1: 4e2dcc8483b2fd0e16fc51bdacd02b093e33f96a SHA256: 4518eee1e2f9ab770e297abf76d71d7831bd957d6f9ba9f13c94e8e2a6b94efb Description: Examples for the Python language (v3.4) Description-md5: 21c19f2e05b41b0c19a74ed61f2cbc0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: python3.4-minimal Priority: important Section: python Installed-Size: 3846 Maintainer: Ubuntu Core Developers Original-Maintainer: Matthias Klose Architecture: i386 Source: python3.4 Version: 3.4.0-2ubuntu1 Depends: libpython3.4-minimal (= 3.4.0-2ubuntu1), libexpat1 (>= 2.1~beta3), zlib1g (>= 1:1.2.0) Pre-Depends: libc6 (>= 2.17) Recommends: python3.4 Suggests: binfmt-support Conflicts: binfmt-support (<< 1.1.2) Filename: pool/main/p/python3.4/python3.4-minimal_3.4.0-2ubuntu1_i386.deb Size: 1200888 MD5sum: 2ce9c5d28e462f1b57a5ac8b3be1ec8e SHA1: d4308c89732f292c8035daadddc41e21544bb36e SHA256: cf5374f4ee948438aa68120269dfd9fda4418710538d2375d27fbcc87f9ce873 Description: Minimal subset of the Python language (version 3.4) Multi-Arch: allowed Description-md5: 4e4ca87fe0b3264c74565112cce29495 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: qdbus Priority: optional Section: libs Installed-Size: 212 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbus (<< 4:4.7.4-1) Depends: qtchooser, libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Breaks: libqt4-dbus (<< 4:4.7.4-1) Filename: pool/main/q/qt4-x11/qdbus_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 28714 MD5sum: 3f3325d96bd4a393d0253e34043fd57e SHA1: bbc56664ba01ccefa40c71543e5f1a393ea7577b SHA256: 51ea9f7ae09a3432bc9e3212dd29d3d12b7d5c521986b53579bb43b8db2323dc Description: Qt 4 D-Bus tool Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: fae23ff3db2d0866fa317f588c249ee5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: qemu-common Priority: optional Section: misc Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: all Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Depends: qemu-keymaps Filename: pool/main/q/qemu/qemu-common_2.0.0~rc1+dfsg-0ubuntu3_all.deb Size: 4748 MD5sum: a58a040035e83aba28a9b99d8840d64e SHA1: 9d45e815d0fd95e64d3c5dfe7118136abef79301 SHA256: ee94deea4f9d20cc83e9a8866d4f1e240c64a4709b94e4246b0fd260c7e4e283 Description: dummy transitional package from qemu-common to qemu-keymaps Homepage: http://www.qemu.org/ Description-md5: 75f3b5c8d23cb9658475e76ce1106707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qemu-keymaps Priority: optional Section: misc Installed-Size: 169 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: all Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu-common (<< 1.2.0.dfsg-1), qemu-system (<< 0.12.4+dfsg-4) Breaks: qemu-common (<< 1.2.0.dfsg-1), qemu-system (<< 0.12.4+dfsg-4) Filename: pool/main/q/qemu/qemu-keymaps_2.0.0~rc1+dfsg-0ubuntu3_all.deb Size: 19478 MD5sum: 5fb177600539c0cda5a6329d3e09aaea SHA1: 9e7408071c5fae6264a0677063a7d99bbf8ab1ec SHA256: f284a91e8abefe256a8b4043e7d6dabf15d2cefd40ec667d93cf3e482c62a426 Description: QEMU keyboard maps Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 83ef32731669abd2c77279a1fe2f3fe0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: qemu-kvm Priority: optional Section: misc Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: i386 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu-kvm-spice, qemu-system-x86 (<< 1.7.0+dfsg-2~) Provides: kvm, qemu-kvm-spice Depends: qemu-system-x86 (>= 1.7.0+dfsg-2~) Conflicts: kvm, qemu-kvm-spice Breaks: qemu-system-x86 (<< 1.7.0+dfsg-2~) Filename: pool/main/q/qemu/qemu-kvm_2.0.0~rc1+dfsg-0ubuntu3_i386.deb Size: 7130 MD5sum: 157b37ada4cd3cda3c23bf7b1fe7a12d SHA1: f86420da972c79d7da67a6c05d9719f5d388756e SHA256: cf425c6ac3e56bdcf3936b58793dd6ba292f4e66df2e31609310a11a541b69e8 Description: QEMU Full virtualization on x86 hardware (transitional package) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 6ae8b7c3deaae1156e48dd91252a8945 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: qemu-system Priority: optional Section: misc Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: i386 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Depends: qemu-system-arm, qemu-system-mips, qemu-system-ppc, qemu-system-sparc, qemu-system-x86, qemu-system-misc Filename: pool/main/q/qemu/qemu-system_2.0.0~rc1+dfsg-0ubuntu3_i386.deb Size: 6122 MD5sum: a72e35515b2df4dca916cc0adf3b7f5e SHA1: 2585f9f1d394f1dd098c1c1371fa8332f20ba0b5 SHA256: ef100c0bbcac7fd3f9b1eaf711bd7940c8f49e066352bf55f1cb680ab7f67c64 Description: QEMU full system emulation binaries Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: e4c58b37c60d1fc987e614cbc6f62355 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-arm Priority: optional Section: misc Installed-Size: 6031 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: i386 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5), qemu-system-aarch64 (<< 2.0.0~rc1+dfsg-0ubuntu1) Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libstdc++6 (>= 4.6), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps Recommends: qemu-utils Suggests: samba, vde2 Breaks: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5), qemu-system-aarch64 (<< 2.0.0~rc1+dfsg-0ubuntu1) Filename: pool/main/q/qemu/qemu-system-arm_2.0.0~rc1+dfsg-0ubuntu3_i386.deb Size: 1720582 MD5sum: 6a2dc2ad064813480a999dcf36e4c4e7 SHA1: 2bf2e34fca44fee34d51c09601da5910cdfade36 SHA256: 2b02bedee9df1ad462a1f8ffcc1d930c612acf1ba6d5433e7a67648a9be71ebe Description: QEMU full system emulation binaries (arm) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: dd2e3401d4d07bbe04a2c0a4b754feca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-common Priority: optional Section: misc Installed-Size: 613 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: i386 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu (<< 1.3.0+dfsg-5), qemu-common (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5), qemu-utils (<< 1.3.0+dfsg-4) Depends: libc6 (>= 2.9), libcap-ng0, libcap2 (>= 2.10), libglib2.0-0 (>= 2.16.0), udev, acl Pre-Depends: adduser Breaks: iproute (<< 20110315-1), qemu-common (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5), qemu-utils (<< 1.3.0+dfsg-4) Filename: pool/main/q/qemu/qemu-system-common_2.0.0~rc1+dfsg-0ubuntu3_i386.deb Size: 156348 MD5sum: dcb3c515c844d6edd1555467b0f7bc95 SHA1: 03c86ef3c7595a3a6fad0707daee38d509d0f87b SHA256: 07c6c3a74944721737a07ac7ad296d646de461be145d4b2a3adc77b24455108c Description: QEMU full system emulation binaries (common files) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 9eeecae0ef6b457cabe162fc54e999b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: qemu-system-mips Priority: optional Section: misc Installed-Size: 21992 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: i386 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu-system (<< 1.3.0+dfsg-5) Provides: qemu-system-mips64, qemu-system-mips64el, qemu-system-mipsel Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps Recommends: qemu-utils Suggests: samba, vde2 Breaks: qemu-system (<< 1.3.0+dfsg-5) Filename: pool/main/q/qemu/qemu-system-mips_2.0.0~rc1+dfsg-0ubuntu3_i386.deb Size: 2493132 MD5sum: 8b9e4fbb555cff5f718e7659fb91838e SHA1: 6a807e85dc2fe2c5cf2b56324bb9e5442372e4fc SHA256: 1e9376f08c940d6b7295440c82877dd662166c0605d21e817ee9d3e8ecf7705b Description: QEMU full system emulation binaries (mips) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: c652a6e2716b5a4171c86c75dd130e2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-misc Priority: optional Section: misc Installed-Size: 46567 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: i386 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu-system (<< 1.3.0+dfsg-5) Provides: qemu-system-alpha, qemu-system-cris, qemu-system-lm32, qemu-system-m68k, qemu-system-microblaze, qemu-system-microblazeel, qemu-system-moxie, qemu-system-or32, qemu-system-s390x, qemu-system-sh4, qemu-system-sh4eb, qemu-system-unicore32, qemu-system-xtensa, qemu-system-xtensaeb Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.15), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps Recommends: qemu-utils Suggests: samba, vde2 Breaks: qemu-system (<< 1.3.0+dfsg-5) Filename: pool/main/q/qemu/qemu-system-misc_2.0.0~rc1+dfsg-0ubuntu3_i386.deb Size: 5412892 MD5sum: 6c8780bb6d8e71f5e11aed430d5144b9 SHA1: 42468ebe2188be52c463eddd3fa85b01bb882d49 SHA256: 07e5b114c14eba331c30c36ed6af762715cc51a3d3b2f57d7a107347fffe96b2 Description: QEMU full system emulation binaries (miscelaneous) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 674392a7ac96dd45bd756ddd59d0917d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-ppc Priority: optional Section: misc Installed-Size: 19769 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: i386 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Provides: qemu-system-ppc64, qemu-system-ppcemb Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps Recommends: qemu-utils Suggests: samba, vde2, openbios-ppc (>= 1.1+svn1229), openhackware, qemu-slof Breaks: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Filename: pool/main/q/qemu/qemu-system-ppc_2.0.0~rc1+dfsg-0ubuntu3_i386.deb Size: 2713956 MD5sum: 7336572b6c4f1e568056a98cf4ab045c SHA1: f85359536dd198bc50333792d056fcd963771aa2 SHA256: e58a45fbbf3664e8e1951b6167b0da0d77ac4f9ee3c7a007359c7a522363a939 Description: QEMU full system emulation binaries (ppc) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: d03bfc49c2ff5347dead81c4531ac2e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-sparc Priority: optional Section: misc Installed-Size: 7846 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: i386 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Provides: qemu-system-sparc64 Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 3.2.0), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps Recommends: qemu-utils Suggests: samba, vde2 Breaks: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Filename: pool/main/q/qemu/qemu-system-sparc_2.0.0~rc1+dfsg-0ubuntu3_i386.deb Size: 1629262 MD5sum: 9860fd5022dd1d6dd3ea9def95433af9 SHA1: 6e620caaf9dfb1d2fed35b7d753d291bdc4d5a52 SHA256: 7174b093cc62d428135a329bab2afc21d4d73e4bba199ca20497584e4c6b48bf Description: QEMU full system emulation binaries (sparc) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: cb4be2931f1bb54f137765dca623e91b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: qemu-system-x86 Priority: optional Section: misc Installed-Size: 11178 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: i386 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: kvm (<< 1.3.0+dfsg-5), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Provides: qemu-system-i386, qemu-system-x86-64 Depends: libaio1 (>= 0.3.93), libasound2 (>= 1.0.16), libbluetooth3 (>= 4.91), libbrlapi0.6, libc6 (>= 2.14), libcurl3-gnutls (>= 7.16.3), libfdt1, libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), libgnutls26 (>= 2.12.17-0), libncurses5 (>= 5.5-5~), libpixman-1-0 (>= 0.15.16), libpng12-0 (>= 1.2.13-4), libpulse0 (>= 1:0.99.1), librados2, librbd1, libsasl2-2 (>= 2.1.24), libsdl1.2debian (>= 1.2.11), libseccomp2 (>= 0.0.0~20120605), libspice-server1 (>= 0.12.4), libtinfo5, libusb-1.0-0 (>= 2:1.0.16), libusbredirparser1 (>= 0.6), libuuid1 (>= 2.16), libx11-6, libxen-4.4 (>= 4.4.0), libxenstore3.0 (>= 4.1.0~rc6), zlib1g (>= 1:1.2.0), qemu-system-common, qemu-keymaps, seabios (>= 1.7.2-2~), ipxe-qemu Recommends: qemu-utils, cpu-checker Suggests: samba, vde2, kmod, sgabios Conflicts: kvm (<< 1.3.0+dfsg-5) Breaks: kvm (<< 1.3.0+dfsg-5), libvirt0 (<< 1.0), qemu-common (<< 1.3.0+dfsg-5), qemu-kvm (<< 1.2.0.dfsg-1), qemu-system (<< 1.3.0+dfsg-5) Filename: pool/main/q/qemu/qemu-system-x86_2.0.0~rc1+dfsg-0ubuntu3_i386.deb Size: 2017638 MD5sum: 15482372c4f77002a321585ae09a4166 SHA1: 8d5005fa28252d4e063ee22b7ad0d5318acdf3d3 SHA256: 3ddc9a88bfc5c149842890222341a40ab24207c03996cbd275dd51a89b512514 Description: QEMU full system emulation binaries (x86) Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 5ac9285103b36e8a4d3a9e37920fe122 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: qemu-utils Priority: optional Section: misc Installed-Size: 2664 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: i386 Source: qemu Version: 2.0.0~rc1+dfsg-0ubuntu3 Replaces: qemu-kvm (<< 1.2.0.dfsg-1), qemu-user (<< 0.11.1-2) Depends: libaio1 (>= 0.3.93), libc6 (>= 2.12), libcurl3-gnutls (>= 7.16.3), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.24.0), librados2, librbd1, libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4) Recommends: sharutils Suggests: debootstrap Conflicts: qemu-kvm (<< 1.2.0.dfsg-1), qemu-user (<< 0.11.1-2) Filename: pool/main/q/qemu/qemu-utils_2.0.0~rc1+dfsg-0ubuntu3_i386.deb Size: 427716 MD5sum: c1baf5f8a01a517531174ab3a2d8e9bd SHA1: e6425530be9daee6258e1166532e05dc2605c071 SHA256: 6f686022da139280c5d294235567d131430ab187c922efcb75d809613670d694 Description: QEMU utilities Multi-Arch: foreign Homepage: http://www.qemu.org/ Description-md5: 2c65298afe6300be7b1ce793bdf9fb81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: qmlscene Priority: optional Section: devel Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: qtchooser, libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Filename: pool/main/q/qtdeclarative-opensource-src/qmlscene_5.2.1-3ubuntu15_i386.deb Size: 24616 MD5sum: 47d186e70704cbe8cd9351a4b79b77c5 SHA1: 454f3caf6d2328e68aa8831741b8904ed654e8a3 SHA256: c1171a095cdecb279d152b2d863ab3051477d0f762f720fae8a75a44b6eb7747 Description: Qt 5 QML scene viewer Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: a67138f4ecf886d0813d21f0a39bad26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qpdf Priority: optional Section: text Installed-Size: 538 Maintainer: Ubuntu Developers Original-Maintainer: Jay Berkenbilt Architecture: i386 Version: 5.1.1-1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqpdf13 (>> 5.0.0~), libstdc++6 (>= 4.4.0) Filename: pool/main/q/qpdf/qpdf_5.1.1-1_i386.deb Size: 206584 MD5sum: 7f3884c81235b76c7bdc256c745d4a00 SHA1: 2ab57d03b0316276fd7311acb613fc975778afbd SHA256: bb6a6bd44630e993ac80fbc9a09cbb7f5eefa7116ab68473bbab9f695ef04b5b Description: tools for and transforming and inspecting PDF files Homepage: http://qpdf.sourceforge.net Description-md5: e237dde53d72351f848e1cefa284d4ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: qt-at-spi Priority: optional Section: misc Installed-Size: 466 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: i386 Version: 0.3.1-4fakesync1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.8.0), libqtcore4 (>= 4:4.8~), libqtgui4 (>= 4:4.8~), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qt-at-spi/qt-at-spi_0.3.1-4fakesync1_i386.deb Size: 143778 MD5sum: 094959924a12594f0b2032d0fbf6d6a3 SHA1: d5c8d0090d993d6f6828337f0f6641dd833ba2aa SHA256: 4ae08cf08c374cfaa69cd32bd8bcfdf8fcad71a65fc99ede27c337c868109fdf Description: at-spi accessibility plugin for Qt Multi-Arch: same Description-md5: 91ed58e2ce5f3d40f3eaa63697a81c9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qt-at-spi-doc Priority: optional Section: doc Installed-Size: 73 Maintainer: Ubuntu Developers Original-Maintainer: Debian Accessibility Team Architecture: all Source: qt-at-spi Version: 0.3.1-4fakesync1 Replaces: qt-at-spi Filename: pool/main/q/qt-at-spi/qt-at-spi-doc_0.3.1-4fakesync1_all.deb Size: 12916 MD5sum: 36d29c4e01f2b58580b186d2fef1eaaf SHA1: bb318bedd83993676392597cd9da94144e3b84d6 SHA256: 67fa7820517a1d776cb3ea3f97d2aff6aaed1ac01a8415812cbdce130bbbfebe Description: at-spi accessibility plugin for Qt - Documentation Description-md5: b63d9fb640db17d4797c2754d465c456 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt3d5-dbg Priority: extra Section: debug Installed-Size: 28122 Maintainer: Ubuntu Developers Architecture: i386 Source: qt3d-opensource-src Version: 5.0~git20130731-0ubuntu5 Depends: libqt53d5 (= 5.0~git20130731-0ubuntu5), qt3d5-examples (= 5.0~git20130731-0ubuntu5) Filename: pool/main/q/qt3d-opensource-src/qt3d5-dbg_5.0~git20130731-0ubuntu5_i386.deb Size: 27713320 MD5sum: c4e91e54bdd5a71fb41ca7275d525b9b SHA1: 2a55c226636773757f21faf1050eb40ff4701e9f SHA256: 82e5871ebf973655bfc21a929783eb4dbc7f0015b7fb47b58812c639c2190bbc Description: Qt 3D library debugging symbols Homepage: http://qt-project.org/ Description-md5: d008941dc0b68728702765a32509b059 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt3d5-dev Priority: optional Section: libdevel Installed-Size: 546 Maintainer: Ubuntu Developers Architecture: i386 Source: qt3d-opensource-src Version: 5.0~git20130731-0ubuntu5 Depends: libqt53d5 (= 5.0~git20130731-0ubuntu5), qtbase5-dev, libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Filename: pool/main/q/qt3d-opensource-src/qt3d5-dev_5.0~git20130731-0ubuntu5_i386.deb Size: 73692 MD5sum: 93532ad07930f646b3204f305d111103 SHA1: b3c623ea0e573db222969ca3a2f0e55695317d5b SHA256: f39d0d3e68ba2cb086001a14cb956c62cef66ff5a2fe2424dc7ccae4b9285f57 Description: Qt 5 3d development files Homepage: http://qt-project.org/ Description-md5: 358cc10e8f61083d3c13ef468a386de6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt3d5-examples Priority: optional Section: x11 Installed-Size: 10109 Maintainer: Ubuntu Developers Architecture: i386 Source: qt3d-opensource-src Version: 5.0~git20130731-0ubuntu5 Depends: libc6 (>= 2.3.6-6~), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt53d5 (>= 5.0~git20130731) | libqt53d5-gles (>= 5.0~git20130731), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qt3d-opensource-src/qt3d5-examples_5.0~git20130731-0ubuntu5_i386.deb Size: 7489044 MD5sum: 9a2a9a2a6c106bf6deeaf7f163276073 SHA1: f443d447b91ec42a3de37e4f371ac461c2b69780 SHA256: fa52fc40b4fa7e60c03f2bcb21629a8b2f35646409281d2c3529691123a9c6f0 Description: Qt 5 3d examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f97d227aed710af5b43cd1ba1634c7ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt3d5-private-dev Priority: optional Section: libdevel Installed-Size: 181 Maintainer: Ubuntu Developers Architecture: i386 Source: qt3d-opensource-src Version: 5.0~git20130731-0ubuntu5 Depends: qt3d5-dev (= 5.0~git20130731-0ubuntu5) Filename: pool/main/q/qt3d-opensource-src/qt3d5-private-dev_5.0~git20130731-0ubuntu5_i386.deb Size: 18036 MD5sum: 0c7acfee9e148cab9f4e239828a2b533 SHA1: bbf48c210e84c5a43bf658a89ef908adb7928834 SHA256: e8eded15b0e76f01c627a6eb4da3c6640ecdf9d46b4bad58421664bd937d4d1f Description: Qt 5 3d private development files Homepage: http://qt-project.org/ Description-md5: c02d2e914282e3fe444f0174b94badab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt4-bin-dbg Priority: extra Section: debug Installed-Size: 53165 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dbg (<< 4:4.7.3-3) Depends: libqt4-dev-bin (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Breaks: libqt4-dbg (<< 4:4.7.3-3) Filename: pool/main/q/qt4-x11/qt4-bin-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 51912798 MD5sum: 6f86a468613c99359c291a26f88e44f2 SHA1: b610f3502f7b8b1972955df8893e5f0538fe6a3a SHA256: 76a2c026f77585915d8a491b01e74fe29fe1b3d99a68d777dfe11ca24161e449 Description: Qt 4 binaries debugging symbols Homepage: http://qt-project.org/ Description-md5: 30d00ec1a95d529311faf7e9c80834b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt4-default Priority: optional Section: libs Installed-Size: 142 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqt4-dev, qtchooser Conflicts: qt5-default Filename: pool/main/q/qt4-x11/qt4-default_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 6460 MD5sum: a4a4536f108bee3f1c43090d4129586a SHA1: 19b665519705029965c387eedc51b4ab1c20c933 SHA256: 57fb62a8d3eeda893bdbc01bb0eba3709528a7fd0cc6cdc43a98bfd1b90b02ca Description: Qt 4 development defaults package Homepage: http://qt-project.org/ Description-md5: c60bdd7e52ab55284edffcbf153a5ae6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt4-demos Priority: optional Section: x11 Installed-Size: 37225 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-designer (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-help (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-opengl (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-script (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-scripttools (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-sql (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-svg (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-test (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xmlpatterns (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Recommends: libqt4-declarative-gestures, libqt4-declarative-particles, qt4-dev-tools (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), qt4-doc (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Suggests: qt4-qmlviewer Filename: pool/main/q/qt4-x11/qt4-demos_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 10034762 MD5sum: 5058f77b332be1ec6033077d4559edb8 SHA1: 1ade6f675c528ed3f6cef89a088ca248a52a65d7 SHA256: e637824c3e5ec736e6009012023873b542615ce3a93a859358e51eca9675e2e9 Description: Qt 4 examples and demos Homepage: http://qt-project.org/ Description-md5: 52e28f0cb6d84d109e8fe6949d554c02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt4-demos-dbg Priority: extra Section: libs Installed-Size: 116340 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: qt4-demos (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4) Recommends: libqt4-dbg Filename: pool/main/q/qt4-x11/qt4-demos-dbg_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 111896162 MD5sum: c6a2432356ac3c76b9b664a3bb03eddb SHA1: 77fee1442d72688d4c00949ddbb1eeef087539ac SHA256: bd02e216a04f2e871cfecf6ccb8fb90b18cb9080d4ba0c0cc9e7f5cbb882b489 Description: Qt 4 examples and demos debugging symbols Homepage: http://qt-project.org/ Description-md5: 991afe4aa3b4dd3ec2b9dca0d716372c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt4-designer Priority: optional Section: devel Installed-Size: 2131 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: qtchooser, libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libqt4-designer (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-network (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.1.1) Recommends: libqt4-dev Filename: pool/main/q/qt4-x11/qt4-designer_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 340916 MD5sum: 424b2392e49d56d69c8d7ef2c350fe11 SHA1: 937f3c69925e8033eb31d56a563c73bb376640c9 SHA256: 87edb54472f174b38ad68673f68a44947a2f5a8fc5ea63c4f0311dbed0dce768 Description: graphical designer for Qt 4 applications Homepage: http://qt-project.org/ Description-md5: cdfd30f0ec154b8bdc30b8b14be6b2d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt4-dev-tools Priority: optional Section: devel Installed-Size: 8460 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: libqt4-sql-sqlite, qtchooser, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libpng12-0 (>= 1.2.13-4), libqt4-declarative (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-help (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqt4-xmlpatterns (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtdbus4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtgui4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.4.0), libx11-6, libxtst6 Recommends: libqt4-dev, qt4-designer, qt4-doc Suggests: qt4-doc-html Conflicts: qt3-dev-tools-embedded Filename: pool/main/q/qt4-x11/qt4-dev-tools_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 3847264 MD5sum: c207b386220778f7eaa41a55923779b6 SHA1: 56c9c899ae3f7242d672a85cbe198388d672679d SHA256: 79ebfea5a2a8af85e9e8944dcd0bf06c3382b64bd5dd522dc8691744706698cf Description: Qt 4 development tools Homepage: http://qt-project.org/ Description-md5: 5011b416d52e1154bf49b8ee22432d56 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt4-doc Priority: optional Section: doc Installed-Size: 101922 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Suggests: libqt4-dev, qt4-dev-tools Filename: pool/main/q/qt4-x11/qt4-doc_4.8.5+git192-g085f851+dfsg-2ubuntu4_all.deb Size: 96447610 MD5sum: 930c9a9b3f3a2cfe3f52eaf99ba0ca08 SHA1: a96b924ef322876ec059b7194289c5ce1d200f65 SHA256: 383382df8c89849259acdecc8e3286a881c903ebb690abaae748119ef291ad9d Description: Qt 4 API documentation Homepage: http://qt-project.org/ Description-md5: 231940cacecaefd769b509e5dae9fb47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt4-linguist-tools Priority: optional Section: devel Installed-Size: 2727 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqt4-dev (<< 4:4.7.3-2) Depends: qtchooser, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt4-xml (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libqtcore4 (= 4:4.8.5+git192-g085f851+dfsg-2ubuntu4), libstdc++6 (>= 4.4.0), zlib1g (>= 1:1.1.4) Breaks: libqt4-dev (<< 4:4.7.3-2) Filename: pool/main/q/qt4-x11/qt4-linguist-tools_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 826802 MD5sum: 005d6c9fa4a4271a80810cfa3fe23094 SHA1: 8a901026e21fc2db1fb0d1e9855ea9404e4f7212 SHA256: 9bd11c6fc5bf78d8674b9d4bf15c27ee9bfd3c5c332b6ff38bdee4595eceaf35 Description: Qt 4 Linguist tools Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: c9688050e40c3df53ad52c2ad06a0d4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt4-qmake Priority: optional Section: devel Installed-Size: 5130 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Depends: qtchooser, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Filename: pool/main/q/qt4-x11/qt4-qmake_4.8.5+git192-g085f851+dfsg-2ubuntu4_i386.deb Size: 1212990 MD5sum: d590ef277b6d2be392e71f993e03ac63 SHA1: 32d3d29114fff8c513104cedde6d20e92c2b1490 SHA256: c9f68169ea499d5040f5b5c67941725958dba2d05c04f6c2ccb1be7c5a3fc82a Description: Qt 4 qmake Makefile generator tool Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: ed1ae2f01863267495111ab804bd07ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: qt5-default Priority: optional Section: libs Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Provides: qt-default Depends: qtbase5-dev, qtchooser Suggests: qt5-qmake, qtbase5-dev-tools Conflicts: qt4-default Filename: pool/main/q/qtbase-opensource-src/qt5-default_5.2.1+dfsg-1ubuntu14_i386.deb Size: 14296 MD5sum: 1f92931778b406c20e46fc97a7d588dd SHA1: 8d77d0529d1e4beaeded730b6fb281c5c3034077 SHA256: d4e62ef6903973a028d0afc562891541d8a42c353582389eaa211861a66020bb Description: Qt 5 development defaults package Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 368d5d334866ac98243e1eeb37c32cdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qt5-qmake Priority: optional Section: devel Installed-Size: 4875 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: qtchooser, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtbase-opensource-src/qt5-qmake_5.2.1+dfsg-1ubuntu14_i386.deb Size: 1252110 MD5sum: d38630e4e27c3526a8f5a12ea826408b SHA1: c89ae072dcb2091b173d1f22add8dbe3f60e5198 SHA256: cb10fa1ebcc2b02bd366a93dc6b499e6cd7963a59e8fafe93f2444458629ad83 Description: Qt 5 qmake Makefile generator tool Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d22e820ccda7e109fc6cf2c171df093e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-dbg Priority: extra Section: debug Installed-Size: 123816 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libqt5core5a (= 5.2.1+dfsg-1ubuntu14) Filename: pool/main/q/qtbase-opensource-src/qtbase5-dbg_5.2.1+dfsg-1ubuntu14_i386.deb Size: 121895992 MD5sum: a088009520f0e361cd42e871fd521b06 SHA1: 3f106043280438af8b66c3cfa21284523716b21f SHA256: a3db6e236be47407a80850b72742863e67a5e99c6d8da7e3726b14fdf281582f Description: Qt 5 base library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 42e6cf0251f2bfd39ea757ae603628da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-dev Priority: optional Section: libdevel Installed-Size: 14433 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libgl1-mesa-dev | libgl-dev, libgles2-mesa-dev | libgles2-dev, libglu1-mesa-dev | libglu-dev, libqt5concurrent5 (= 5.2.1+dfsg-1ubuntu14), libqt5core5a (= 5.2.1+dfsg-1ubuntu14), libqt5dbus5 (= 5.2.1+dfsg-1ubuntu14), libqt5gui5 (= 5.2.1+dfsg-1ubuntu14), libqt5network5 (= 5.2.1+dfsg-1ubuntu14), libqt5printsupport5 (= 5.2.1+dfsg-1ubuntu14), libqt5sql5 (= 5.2.1+dfsg-1ubuntu14), libqt5test5 (= 5.2.1+dfsg-1ubuntu14), libqt5widgets5 (= 5.2.1+dfsg-1ubuntu14), libqt5xml5 (= 5.2.1+dfsg-1ubuntu14), qt5-qmake (= 5.2.1+dfsg-1ubuntu14), qtbase5-dev-tools (= 5.2.1+dfsg-1ubuntu14), qtchooser Pre-Depends: dpkg (>= 1.15.6~) Recommends: libqt5opengl5-dev (= 5.2.1+dfsg-1ubuntu14) Suggests: libmysqlclient-dev, libpq-dev, libsqlite3-dev, unixodbc-dev Filename: pool/main/q/qtbase-opensource-src/qtbase5-dev_5.2.1+dfsg-1ubuntu14_i386.deb Size: 1656210 MD5sum: d5b9b16c7e86a19d43ed8fa12b673152 SHA1: 5fde23fac389a0734ccb09c7063c994d59b0a59e SHA256: b3073d626479e735f75e7f8cbd241503c420a9a79c05a5d1067adb92e82053c8 Description: Qt 5 base development files Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: b1a4d90909152c53a52db6116d1f19f9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-dev-tools Priority: optional Section: devel Installed-Size: 5146 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: qtchooser, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.2.0), libqt5xml5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtbase-opensource-src/qtbase5-dev-tools_5.2.1+dfsg-1ubuntu14_i386.deb Size: 1196562 MD5sum: bec3e024329f24ea6072f24ec24bb666 SHA1: c6c8b8cedc87f68527c829b7028ee87a93bbf14b SHA256: 3595d3819069f027805cf747dbb63148b0105f7207dba430962d94afc0d18bae Description: Qt 5 base development programs Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: f2e4521485ce2cc91a951d05072b9b8b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-dev-tools-dbg Priority: extra Section: debug Installed-Size: 27047 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: qt5-qmake (= 5.2.1+dfsg-1ubuntu14), qtbase5-dev-tools (= 5.2.1+dfsg-1ubuntu14) Recommends: qtbase5-dbg Filename: pool/main/q/qtbase-opensource-src/qtbase5-dev-tools-dbg_5.2.1+dfsg-1ubuntu14_i386.deb Size: 26573142 MD5sum: 9d76488e517e7f3b5759c1297f3f000e SHA1: 75bcd7f129b34d591cc95ed8b72693848a361aff SHA256: f7720b6f5efa9ce047ae4aab37ccd74053928a87575f45afb9ed36f5759faac9 Description: Qt 5 base binaries debugging symbols Homepage: http://qt-project.org/ Description-md5: 0b720abc654b3c7154b6c63ad55692cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-doc Priority: extra Section: doc Installed-Size: 29757 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qttools-opensource-src Version: 5.2.1-8build1 Filename: pool/main/q/qttools-opensource-src/qtbase5-doc_5.2.1-8build1_all.deb Size: 24856770 MD5sum: ebbbce7a7305b1ad309bb3d7cd9d30f3 SHA1: cb2c6de0eab23918b3d5dde23cb80aa2ada9b429 SHA256: 64c271e5e29c9ad22dae5e525d3bff329e816f8d4ebb3c0715df2878a8bddd22 Description: Qt 5 base documentation Homepage: http://qt-project.org/ Description-md5: ca14ee36d3a7fc0206bfcbb35e2be024 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-doc-html Priority: extra Section: doc Installed-Size: 135554 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Filename: pool/main/q/qtbase-opensource-src/qtbase5-doc-html_5.2.1+dfsg-1ubuntu14_all.deb Size: 21023656 MD5sum: afa38a2a1f0f88bd2719a792611f497f SHA1: eb3c2a66d437cb7aa036fd1bf11863f3e9fe7fba SHA256: ca21dfa71402c9906d636d52e6f540bb69118df05277736b48f14d3d578f8213 Description: Qt 5 base HTML documentation Homepage: http://qt-project.org/ Description-md5: 2e4adf9de7ccece9e0fe9efb81d70fe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-examples Priority: optional Section: x11 Installed-Size: 19063 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt5concurrent5 (>= 5.0.2), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5printsupport5 (>= 5.0.2), libqt5sql5 (>= 5.0.2), libqt5test5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libqt5xml5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtbase-opensource-src/qtbase5-examples_5.2.1+dfsg-1ubuntu14_i386.deb Size: 5078012 MD5sum: 0e3a9d5e8b4cc26a2fde5b6de9f42256 SHA1: 7126f46ea2be780a2b8e9fd717b41b47fe74cbe9 SHA256: 9227cde527ec853c2ca0415ce91ac7e694d41ea9a94870e61d0686201e7eaf6c Description: Qt 5 base examples Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: ac043eae380c0dcd4bce5d40a835f3e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-examples-dbg Priority: extra Section: debug Installed-Size: 97649 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Depends: qtbase5-examples (= 5.2.1+dfsg-1ubuntu14) Recommends: qtbase5-dbg Filename: pool/main/q/qtbase-opensource-src/qtbase5-examples-dbg_5.2.1+dfsg-1ubuntu14_i386.deb Size: 95397614 MD5sum: 03aed24505258bb125b9d7839db0a0e8 SHA1: cba822c315da0797e991ad31549ebcb07eeb4613 SHA256: 17f7c555dd636e220aa4189755b75d55690fefed1844e18945446efc7f8ac36b Description: Qt 5 base examples debugging symbols Homepage: http://qt-project.org/ Description-md5: 51fa5946dc6a9287aa19bbece071fbcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtbase5-private-dev Priority: optional Section: libdevel Installed-Size: 5181 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtbase-opensource-src Version: 5.2.1+dfsg-1ubuntu14 Replaces: qtbase5-dev (<< 5.0.2+dfsg1-3~) Depends: qtbase5-dev (= 5.2.1+dfsg-1ubuntu14) Pre-Depends: dpkg (>= 1.15.6~) Breaks: qtbase5-dev (<< 5.0.2+dfsg1-3~) Filename: pool/main/q/qtbase-opensource-src/qtbase5-private-dev_5.2.1+dfsg-1ubuntu14_i386.deb Size: 596832 MD5sum: 7518858dc534bd1375c7649dc52285f2 SHA1: 272ab9150a3f17ab49754b5ff91c08c7fcf4faeb SHA256: 2cf522d9ded449e1e0efc730f3b3f27348f430d359aa6c3f7fb7a29360e8e791 Description: Qt 5 base private development files Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: b388fd86350adaeeb21580f32ba12fcc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtchooser Priority: extra Section: libdevel Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Version: 39-g4717841-3 Replaces: libqt4-dev-bin (<= 4:4.8.4+dfsg-1~), qdbus (<= 4:4.8.4+dfsg-1~), qt4-designer (<= 4:4.8.4+dfsg-1~), qt4-dev-tools (<= 4:4.8.4+dfsg-1~), qt4-linguist-tools (<= 4:4.8.4+dfsg-1~), qt4-qmake (<= 4:4.8.4+dfsg-1~), qt4-qmlviewer (<= 4:4.8.4+dfsg-1~), qt4-qtconfig (<= 4:4.8.4+dfsg-1~), qtcreator (<= 2.6.0) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.1.1) Suggests: qt4-default, qt5-default Breaks: libqt4-dev-bin (<= 4:4.8.4+dfsg-1~), qdbus (<= 4:4.8.4+dfsg-1~), qt4-designer (<= 4:4.8.4+dfsg-1~), qt4-dev-tools (<= 4:4.8.4+dfsg-1~), qt4-linguist-tools (<= 4:4.8.4+dfsg-1~), qt4-qmake (<= 4:4.8.4+dfsg-1~), qt4-qmlviewer (<= 4:4.8.4+dfsg-1~), qt4-qtconfig (<= 4:4.8.4+dfsg-1~), qtcreator (<= 2.6.0) Filename: pool/main/q/qtchooser/qtchooser_39-g4717841-3_i386.deb Size: 18504 MD5sum: c885e5c7f8bd398047de4938cae5720a SHA1: 2cf14f04443b5225835839a68796f7d40658b158 SHA256: e46f4701127b78af75e915ca7bd414221bdd9c1291a4b9b4d95b0daab8f31eb9 Description: Wrapper to select between Qt development binary versions Multi-Arch: foreign Homepage: https://qt-project.org/ Description-md5: 578e83c772762acfad9f5f720f2de449 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-graphics, ubuntustudio-audio Package: qtcore4-l10n Priority: optional Section: libs Installed-Size: 4548 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qt4-x11 Version: 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 Replaces: libqtcore4 (<< 4:4.8.5+dfsg-1~) Breaks: libqtcore4 (<< 4:4.8.5+dfsg-1~) Filename: pool/main/q/qt4-x11/qtcore4-l10n_4.8.5+git192-g085f851+dfsg-2ubuntu4_all.deb Size: 586400 MD5sum: bd3d9a4fe384513d88696b7bede9191a SHA1: 0d8a705fddb4b5fb8d7ab783d83a7eac1a0a5269 SHA256: 7ee98d170f2cc24e7b64b703d01eb0e3ce88f18745b005e24dfd4609378ec4fd Description: Qt 4 core module translations Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: 8be6dd210e08efc97848c729bfd1a1f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-publishing, ubuntustudio-graphics, ubuntustudio-audio Package: qtdbustest-runner Priority: optional Section: devel Installed-Size: 44 Maintainer: Ubuntu Developers Architecture: i386 Source: libqtdbustest Version: 0.2+14.04.20140325-0ubuntu1 Depends: libqtdbustest1 (= 0.2+14.04.20140325-0ubuntu1), libc6 (>= 2.0), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1), gvfs-backends Filename: pool/main/libq/libqtdbustest/qtdbustest-runner_0.2+14.04.20140325-0ubuntu1_i386.deb Size: 7306 MD5sum: ce22f48151537e6fdd441c6593594802 SHA1: 7278e93d43f901b987e0edc2337cf118cd3357b7 SHA256: 40e0e8ffb027c175fbd50dd0b08b37dce49c0b1f5afb7825162f0e9abc0ace3d Description: Library for testing DBus interactions using Qt Homepage: https://launchpad.net/libqtdbustest Description-md5: 765d4cca50cb988ebb82899c9db6e762 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-accounts-plugin Priority: optional Section: libs Installed-Size: 251 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: accounts-qml-module Version: 0.4+14.04.20140317-0ubuntu1 Depends: libaccounts-qt5-1, libc6 (>= 2.4), libqt5core5a (>= 5.2.0), libqt5qml5 (>= 5.0.2), libsignon-qt5-1, libstdc++6 (>= 4.1.1), qtdeclarative5-qtquick2-plugin Filename: pool/main/a/accounts-qml-module/qtdeclarative5-accounts-plugin_0.4+14.04.20140317-0ubuntu1_i386.deb Size: 56064 MD5sum: 48a227fe173b3439b6429cd3a8d62d08 SHA1: d0d5e5fe02a8e222f15927f838fda4ff68086b6b SHA256: 90b7c215ff4e05bbdf32c78c41871138eb75e22f4ea18becd26cd332ff63af90 Description: Expose the Online Accounts API to QML applications Homepage: https://launchpad.net/accounts-qml-module Description-md5: 67a00d1c7763917c85f8241db8c5ffab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-dbg Priority: extra Section: debug Installed-Size: 88100 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libqt5qml5 (= 5.2.1-3ubuntu15), libqt5quick5 (= 5.2.1-3ubuntu15), libqt5quickparticles5 (= 5.2.1-3ubuntu15), libqt5quicktest5 (= 5.2.1-3ubuntu15) Recommends: qtbase5-dbg Suggests: qtdeclarative5-examples (= 5.2.1-3ubuntu15) Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-dbg_5.2.1-3ubuntu15_i386.deb Size: 86231444 MD5sum: de730b241791427abdc70b7fcdfdfdd1 SHA1: d9a699b46c3ca45c597531b74dc71c04ea00df62 SHA256: 8b92ca1972a3ab689171fbea187ffa15708b1474a31967b85a19ebe93e2dd2c6 Description: Qt 5 declarative libraries debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2c4f9639d414f3740d238c0ba7fea1d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-dev Priority: optional Section: libdevel Installed-Size: 911 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libqt5qml5 (= 5.2.1-3ubuntu15), libqt5quick5 (= 5.2.1-3ubuntu15) | libqt5quick5-gles, libqt5quickparticles5 (= 5.2.1-3ubuntu15) | libqt5quickparticles5-gles, libqt5quicktest5 (= 5.2.1-3ubuntu15), qtbase5-dev Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-dev_5.2.1-3ubuntu15_i386.deb Size: 108346 MD5sum: d1dc25d8d3819344a437a6bde37ea943 SHA1: a1c7e350d27b694fbcfa8ae47aa69796f109b970 SHA256: d4076a054d8a9ce5478d9db8c8a9b961b610bf4084128a4d63c7534d8c4f4029 Description: Qt 5 declarative development files Homepage: http://qt-project.org/ Description-md5: 957c332e0d189c34d9a632e0f21bca92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-dev-tools Priority: optional Section: devel Installed-Size: 655 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: qtchooser, libc6 (>= 2.4), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5quicktest5 (>= 5.0.2), libstdc++6 (>= 4.4.0), qtdeclarative-abi-5-2-1 Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-dev-tools_5.2.1-3ubuntu15_i386.deb Size: 157600 MD5sum: 15208f02fbb558a8a40bbe5fa4412b43 SHA1: b9cc7549249119c112395eb2a77c1a73ef6a0fad SHA256: 76c4ae57982a093fe6cba66bdc0988cd8bfa17aace911b9646072061d8d8002b Description: Qt 5 declarative development programs Multi-Arch: foreign Homepage: http://qt-project.org/ Description-md5: 384db51b9ca50d630409949145f8f5c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-dialogs-plugin Priority: optional Section: libs Installed-Size: 350 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: qtdeclarative5-privatewidgets-plugin, libc6 (>= 2.4), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libqt5qml5 (>= 5.2.0~beta1), libqt5quick5 (>= 5.2.0) | libqt5quick5-gles (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-dialogs-plugin_5.2.1-3ubuntu15_i386.deb Size: 80344 MD5sum: cb9335bba571fca9773226ba368232b8 SHA1: 1ec1d6d7a103bb0a656dafb1b807540310460637 SHA256: 31c741ed72a517b56369c4a904186cc277fd09556674deb491da988f6cbc7f7f Description: Qt 5 Dialogs QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4153eb80f1713cecb1c154c4d26d86fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-doc Priority: extra Section: doc Installed-Size: 9615 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qttools-opensource-src Version: 5.2.1-8build1 Filename: pool/main/q/qttools-opensource-src/qtdeclarative5-doc_5.2.1-8build1_all.deb Size: 8932280 MD5sum: f589600718e406a80e94438894b9ae05 SHA1: c0358e0ba894ef98c69385e76308c68901825296 SHA256: f4ffc8c602f7d3844672974e30b1b7e9f185c3d8e70e5d6f5a0d76c6c215afd6 Description: Qt 5 declarative documentation Homepage: http://qt-project.org/ Description-md5: 2ec916802abb12173521f9426462cb19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-doc-html Priority: extra Section: doc Installed-Size: 29819 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-doc-html_5.2.1-3ubuntu15_all.deb Size: 7275792 MD5sum: b4505942e0fb00d24ac3939724fde067 SHA1: b638e16ee0c555d2183be4f762db05478d118c31 SHA256: 1e98c2eab9a98bc3fe0bfe907f3363983a7a7cac4c307bcadc6f929a99057500 Description: Qt 5 declarative HTML documentation Homepage: http://qt-project.org/ Description-md5: c4e1002a33f34eaadd0aebbf2f0751c6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-examples Priority: optional Section: x11 Installed-Size: 24769 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: qtdeclarative5-dialogs-plugin, qtdeclarative5-localstorage-plugin, qtdeclarative5-models-plugin, qtdeclarative5-particles-plugin, qtdeclarative5-test-plugin, qtdeclarative5-xmllistmodel-plugin, libc6 (>= 2.4), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.2.0~rc1), libqt5quick5 (>= 5.2.0~rc1) | libqt5quick5-gles (>= 5.2.0~rc1), libqt5quicktest5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-examples_5.2.1-3ubuntu15_i386.deb Size: 9221818 MD5sum: 9d24ac65acd1b611d32c54c1ee3457e4 SHA1: 82df71bad1b5158d4207b8b5a528a1d913b09eb5 SHA256: 76459770e071f39b1d319329870793d5ef2d3b0dfd0e750ca5886d63dbac5630 Description: Qt 5 declarative examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 9395b1f087c5d56a350f56068c95f914 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-folderlistmodel-plugin Priority: optional Section: libs Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.2.0), libqt5qml5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-folderlistmodel-plugin_5.2.1-3ubuntu15_i386.deb Size: 31016 MD5sum: 007991e189ee787ab318ae355cd96e9f SHA1: de7c5e99f183aeac634eabbbf0a3ffea58afcb4d SHA256: e5ae521632195f196faeae84d542894549910b78e0e68ba67b063a77a96dbfda Description: Qt 5 folderlistmodel QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2b022902cb6146ad6235e490a9b295cd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-localstorage-plugin Priority: optional Section: libs Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libqt5sql5-sqlite, libc6 (>= 2.4), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.2.0+gitcb78684a), libqt5sql5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-localstorage-plugin_5.2.1-3ubuntu15_i386.deb Size: 28800 MD5sum: 7cf972081954cda46ece822a2be09c15 SHA1: 8ea0a67c4d6543f0dfc8c7c8502ef7d14dc12df1 SHA256: 5c667c8955267b9129e68e3d16d485dd925b5e66bf8a6d65fd2f74478667c098 Description: Qt 5 localstorage QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: bcccbbb3c9510cf4065d2b4197d7d3f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-models-plugin Priority: optional Section: libs Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.1.0), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-models-plugin_5.2.1-3ubuntu15_i386.deb Size: 14896 MD5sum: f64fabf9f83b7121e3e2530bae7c0ae1 SHA1: 38ea0eb31c6a8af722657f9f0d83d999128f9d54 SHA256: 78ad13348de365bb114ab36cff1f5d097582a82d2a868665f7294e5af137f04e Description: Qt 5 Models QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e9a1a70b42a38cd9950b02a46411fe4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-particles-plugin Priority: optional Section: libs Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quickparticles5 (>= 5.2.1) | libqt5quickparticles5-gles (>= 5.2.1), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-particles-plugin_5.2.1-3ubuntu15_i386.deb Size: 18068 MD5sum: b8ffb091ab2226cb16a28f9c55719432 SHA1: 58d17a5cb2c9a81532e7c1bffe4aed38553097f4 SHA256: 0593ee6b3a11cd672eea50791150b711fc9869de4f67ba91889762d46f3801c4 Description: Qt 5 particles QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: b16e592eb8bb06f1b7e02a650d1c393c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-private-dev Priority: optional Section: libdevel Installed-Size: 2434 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Replaces: qtdeclarative5-dev (<< 5.2.0-5~) Depends: qtdeclarative5-dev (= 5.2.1-3ubuntu15) Breaks: qtdeclarative5-dev (<< 5.2.0-5~) Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-private-dev_5.2.1-3ubuntu15_i386.deb Size: 270902 MD5sum: 4e1c68ed9c3ecf6fcf42a9281345e729 SHA1: 3d2bada546b26ad78985367c77d822a2ba576c80 SHA256: 72aef98687bc5e805ef4fabcd3c6183fafce90acec4b3fd748962a7fba7d290d Description: Qt 5 declarative private development files Homepage: http://qt-project.org/ Description-md5: 650de6f02e126414bf75eaf5bab88505 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-privatewidgets-plugin Priority: optional Section: libs Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.2.0) | libqt5gui5-gles (>= 5.2.0), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.2.0) | libqt5quick5-gles (>= 5.2.0), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-privatewidgets-plugin_5.2.1-3ubuntu15_i386.deb Size: 41350 MD5sum: ca7b33afb0c57afcfab6f838939f0b0a SHA1: b8d91381026f270aed7f4aa3d6fec62bdda1ef3d SHA256: db454eb4a017177fe2c4f3cd496a5cefa7566703c80a46fdbb34ece33a4cb46e Description: Qt 5 Private Widgets QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: c354328a99de10090df18dd2077a5581 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-qtfeedback-plugin Priority: optional Section: libs Installed-Size: 110 Maintainer: Ubuntu Developers Architecture: i386 Source: qtfeedback-opensource-src Version: 5.0~git20130529-0ubuntu3 Depends: libqt5feedback5, libc6 (>= 2.4), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qtfeedback-opensource-src/qtdeclarative5-qtfeedback-plugin_5.0~git20130529-0ubuntu3_i386.deb Size: 19216 MD5sum: e50e55ec58abe45e98382026efcd6c20 SHA1: 04b4098fabb47671ed3dea3a53e627b12738af33 SHA256: 543b9fd25a2dcddfc537eb256dd83bd7591b89c2524bb119baa503e6e04211c1 Description: Qt Feedback module - QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f49b7c00560fbe7a5d3fa582b597fb99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-qtmultimedia-plugin Priority: extra Section: libs Installed-Size: 391 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libqt5multimedia5-plugins, libc6 (>= 2.4), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5multimedia5 (>= 5.2.0), libqt5multimediaquick-p5 (>= 5.0.2), libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.2.0) | libqt5quick5-gles (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/qtdeclarative5-qtmultimedia-plugin_5.2.1-0ubuntu5_i386.deb Size: 77550 MD5sum: 12a8ebc854b4858191ee90155a07d1a1 SHA1: 8ce4b92476d84bd52b2ff02ae5908788dd9a3279 SHA256: 299dd232e792e9880fb25e7117551155a06d3091c0e29081be443a7e2874782f Description: Qt 5 Multimedia QML plugin Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 0d34afc2bacc04245756745496fab3f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-qtquick2-plugin Priority: optional Section: libs Installed-Size: 294 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libgl1-mesa-dri, libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-qtquick2-plugin_5.2.1-3ubuntu15_i386.deb Size: 34250 MD5sum: 6fdea136701200c2758c975f989ebacd SHA1: 8441fbf746b994310de865f3e769b6269daa1972 SHA256: eea0c3738179638b87848c3d13071c79a3b9f76e0144fe56b99f1e7e1ab51906 Description: Qt 5 Qt Quick 2 QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 8115dce71831a4658e24e25152884946 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-test-plugin Priority: optional Section: libs Installed-Size: 185 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.2.0~beta1), libqt5quicktest5 (>= 5.0.2), libqt5test5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-test-plugin_5.2.1-3ubuntu15_i386.deb Size: 31704 MD5sum: 2b500f62758e85b081427d0f94e8419e SHA1: c7c3a4c3e13d3dd90a323e203c9640d485e70023 SHA256: a1faeab8fd2b3d8f24ffb61ccbb1333cb49e35e44660b002b0a5b6da355087d0 Description: Qt 5 test QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 79c2d8985dfeea42ade03ea77850ac25 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtdeclarative5-ubuntu-ui-extras-browser-plugin Priority: optional Section: x11 Installed-Size: 154 Maintainer: Ubuntu Developers Architecture: i386 Source: webbrowser-app Version: 0.23+14.04.20140414-0ubuntu1 Replaces: webbrowser-app (<< 0.21) Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.0.2), libstdc++6 (>= 4.1.1), libqt5sql5-sqlite, libqt5webkit5-qmlwebkitplugin, liboxideqt-qmlplugin, qtdeclarative5-qtquick2-plugin, qtdeclarative5-ubuntu-ui-extras-browser-plugin-assets (>= 0.23+14.04.20140414-0ubuntu1), qtdeclarative5-ubuntu-ui-toolkit-plugin, qtdeclarative5-unity-action-plugin, qtdeclarative5-window-plugin Breaks: webbrowser-app (<< 0.21) Filename: pool/main/w/webbrowser-app/qtdeclarative5-ubuntu-ui-extras-browser-plugin_0.23+14.04.20140414-0ubuntu1_i386.deb Size: 20754 MD5sum: ab49b4b51aebcde113564a13617a07df SHA1: dd7ff28bdcc52a8272fc57d7d570f78da2a8696c SHA256: d6c2c7f233196fe09118df7f5ccc0375369b16543d6f538d6326b3c63ae8e637 Description: Ubuntu web browser QML plugin Multi-Arch: same Homepage: https://launchpad.net/webbrowser-app Description-md5: 8eedba8741c41552950165fc367eb173 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-ubuntu-ui-extras-browser-plugin-assets Priority: optional Section: x11 Installed-Size: 50 Maintainer: Ubuntu Developers Architecture: all Source: webbrowser-app Version: 0.23+14.04.20140414-0ubuntu1 Filename: pool/main/w/webbrowser-app/qtdeclarative5-ubuntu-ui-extras-browser-plugin-assets_0.23+14.04.20140414-0ubuntu1_all.deb Size: 6362 MD5sum: b1817bff4a07a7fa566269ca9b270c46 SHA1: fefb4ec453fd70c61113c4d517360d612ee07626 SHA256: ea86e98163ac8c01a296e61ed52b6f451a1bf6262b7684e06aab92d03c6986f3 Description: Ubuntu web browser QML plugin assets Multi-Arch: foreign Homepage: https://launchpad.net/webbrowser-app Description-md5: eee3251628cd3dde9d423f0209689509 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-ubuntu-ui-toolkit-plugin Priority: optional Section: libs Installed-Size: 1896 Maintainer: Ubuntu Developers Architecture: i386 Source: ubuntu-ui-toolkit Version: 0.1.46+14.04.20140408.1-0ubuntu1 Replaces: qt-components-ubuntu Provides: qt-components-ubuntu Depends: libqt5qml-graphicaleffects | libqt5graphicaleffects5, libqt5svg5, qtdeclarative5-qtquick2-plugin, qtdeclarative5-window-plugin, qtdeclarative5-qtfeedback-plugin, qtdeclarative5-unity-action-plugin (>= 1.1.0), ttf-ubuntu-font-family, ubuntu-ui-toolkit-theme, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libnih-dbus1 (>= 1.0.0), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5organizer5, libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.2.0), libstdc++6 (>= 4.1.1), libthumbnailer0 (>= 1.0), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Conflicts: qt-components-ubuntu Filename: pool/main/u/ubuntu-ui-toolkit/qtdeclarative5-ubuntu-ui-toolkit-plugin_0.1.46+14.04.20140408.1-0ubuntu1_i386.deb Size: 313014 MD5sum: 591a5d0b5abb58e2c03db833fb888bb9 SHA1: 0d837270e4abe56d4c2d181a413f3379a2e556e3 SHA256: 0b4aca68f52d8266c6e915dc86ad5701ba2549af929fb2e5463483173d183d26 Description: Qt Components for Ubuntu - QML plugin Multi-Arch: same Homepage: https://launchpad.net/ubuntu-ui-toolkit Description-md5: 9e544ade168ff90b20e3d73dabebef3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-unity-action-plugin Priority: optional Section: libs Installed-Size: 116 Maintainer: Ubuntu Developers Original-Maintainer: Antti Kaijanmäki Architecture: i386 Source: unity-action-api Version: 1.1.0+14.04.20140304-0ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.0.2), libstdc++6 (>= 4.1.1), libunity-action-qt1 (= 1.1.0+14.04.20140304-0ubuntu1) Filename: pool/main/u/unity-action-api/qtdeclarative5-unity-action-plugin_1.1.0+14.04.20140304-0ubuntu1_i386.deb Size: 15240 MD5sum: 19d1b5c43d68b2fa85a9018b42ec47f9 SHA1: 5542bb2cdbda68b306b2ec39614571e762244e4f SHA256: 403cd45c3ea4af0af1e3fa562c8fe3cb20e364c27e53ba36492b69afc4bdefcf Description: Unity Action QML Components Multi-Arch: same Homepage: https://launchpad.net/unity-action-api Description-md5: 8052d75f27642f937b79b51a34294586 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-window-plugin Priority: optional Section: libs Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-window-plugin_5.2.1-3ubuntu15_i386.deb Size: 16210 MD5sum: 5f3a5551f541d4d382ba7a4f612cf9bf SHA1: 092a83815b3a25cf085820596213bd3c12a30eee SHA256: a9b3761fa35f4d3d226a5de5efc7115710c61cd23e289ef83638af82e08b1e41 Description: Qt 5 window QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 283404e67ae76e2467e6854af97cd5ea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: qtdeclarative5-xmllistmodel-plugin Priority: optional Section: libs Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtdeclarative-opensource-src Version: 5.2.1-3ubuntu15 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.2.0), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.2.0~beta1), libqt5xmlpatterns5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtbase-abi-5-2-1, qtdeclarative-abi-5-2-1 Pre-Depends: multiarch-support Filename: pool/main/q/qtdeclarative-opensource-src/qtdeclarative5-xmllistmodel-plugin_5.2.1-3ubuntu15_i386.deb Size: 40418 MD5sum: b7c45e20e5f38309045f6452237b6087 SHA1: ea03fe1d996a18099cbf9de38c9a1f4d35c71b02 SHA256: 871769bee80627098424dffdc767c4c58a8866fbc4772871e758a99b711f2df9 Description: Qt 5 xmllistmodel QML plugin Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4356736191aed0caa0426d1f062a418a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtfeedback5-dbg Priority: extra Section: debug Installed-Size: 1293 Maintainer: Ubuntu Developers Architecture: i386 Source: qtfeedback-opensource-src Version: 5.0~git20130529-0ubuntu3 Depends: libqt5feedback5 (= 5.0~git20130529-0ubuntu3) Filename: pool/main/q/qtfeedback-opensource-src/qtfeedback5-dbg_5.0~git20130529-0ubuntu3_i386.deb Size: 1220962 MD5sum: 63dca85eebe759f84b7ea778f1df3c0a SHA1: 412b53698e8c543db10b6d7d6ff1bf743d93be31 SHA256: ce4e06718d662b19bbbdb4009df551145a8c79c4b4d9f3957f05847bd2be8fb5 Description: Qt Feedback library debugging symbols Homepage: http://qt-project.org/ Description-md5: 18db6ab975f33c2c71d6d40e02bf4117 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtfeedback5-dev Priority: optional Section: libdevel Installed-Size: 104 Maintainer: Ubuntu Developers Architecture: i386 Source: qtfeedback-opensource-src Version: 5.0~git20130529-0ubuntu3 Depends: libqt5feedback5 (= 5.0~git20130529-0ubuntu3), qtbase5-dev Filename: pool/main/q/qtfeedback-opensource-src/qtfeedback5-dev_5.0~git20130529-0ubuntu3_i386.deb Size: 10026 MD5sum: e03394bba1a5ca3a0b4b34a94a2c8531 SHA1: cb5d484b20864be35d74d75ea81318cca4d23bb0 SHA256: 51331a821188a36e8f07991bc272f8b535d8c4626652727593e74e875ab8a2bc Description: Qt 5 Feedback development files Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: c743bd21441efe85cb49d0719f6fa040 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtgraphicaleffects5-doc Priority: extra Section: doc Installed-Size: 15875 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtgraphicaleffects-opensource-src Version: 5.2.1-1 Filename: pool/main/q/qtgraphicaleffects-opensource-src/qtgraphicaleffects5-doc_5.2.1-1_all.deb Size: 13801722 MD5sum: 0e6de724dd83b6271e0d164011e3b330 SHA1: aa8eb4cd196f230bdf5eadf26ecf5a752cbe546d SHA256: a98a799c9002cce256d82040037a898006d487e2dfe73968ff5c3aa04ed1eb91 Description: Qt 5 graphical effects documentation Homepage: http://qt-project.org/ Description-md5: 44762d5cc2f29a033a8292663c6968f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtlocation5-dbg Priority: extra Section: debug Installed-Size: 18293 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Depends: libqt5location5 (= 5.2.1-1ubuntu2), libqt5positioning5 (= 5.2.1-1ubuntu2) Recommends: qtbase5-dbg, qtdeclarative5-dbg Filename: pool/main/q/qtlocation-opensource-src/qtlocation5-dbg_5.2.1-1ubuntu2_i386.deb Size: 17917384 MD5sum: 5b3581cebc2457a0488889d096883464 SHA1: e454b2430b16ca799350bedbbd4bec2f4173bb15 SHA256: 7a6d92524c133d83f009c667579f53f42a4c94233f05ad594e1a90a3841beece Description: Qt Location library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 6fb6726d9e1a3d1efba2d2a673b59be9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtlocation5-dev Priority: optional Section: libdevel Installed-Size: 224 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Depends: libqt5location5 (= 5.2.1-1ubuntu2), libqt5location5-plugins (= 5.2.1-1ubuntu2), qtbase5-dev, qtdeclarative5-dev, qtpositioning5-dev Filename: pool/main/q/qtlocation-opensource-src/qtlocation5-dev_5.2.1-1ubuntu2_i386.deb Size: 19208 MD5sum: dae9285810b1f240d0a62362176eda5b SHA1: ef16843ac5d19860a2e3da961842acbcd5bdf7b9 SHA256: 777d51bdb9d1cfc6895f5b96563838b2eea04083a2a6e99e7a593def43c851ab Description: Qt 5 Location development files Homepage: http://qt-project.org/ Description-md5: 7427c1fc236f1dd3f2ac4a9882d8a6ab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtlocation5-doc Priority: extra Section: doc Installed-Size: 1923 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Filename: pool/main/q/qtlocation-opensource-src/qtlocation5-doc_5.2.1-1ubuntu2_all.deb Size: 1688652 MD5sum: 1d5b7e33669b09573bc3c2adda1b251a SHA1: ca5db5d2ef9eafc68e73a9273f9fb1e0fb376d27 SHA256: 33841338084cb9bcaccc1c7631626aa8cd5290bd68e2380d99750aafecc869b1 Description: Qt 5 Positioning documentation Homepage: http://qt-project.org/ Description-md5: 9fe7fa324dc34c0a94466b8f54047e13 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtlocation5-examples Priority: optional Section: x11 Installed-Size: 2761 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Depends: libqt5location5-plugins (= 5.2.1-1ubuntu2), libqt5positioning5-plugins (= 5.2.1-1ubuntu2), libc6 (>= 2.4), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5positioning5 (>= 5.2.1), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/q/qtlocation-opensource-src/qtlocation5-examples_5.2.1-1ubuntu2_i386.deb Size: 1660364 MD5sum: 254ebe2cfed8fd2449d3e3d48558bab8 SHA1: d04729b88401fefee57c382d041d499dc2e1a539 SHA256: 360e6c253e1f94d5b4f9baf1fc3c6c3014c164503658c86e5951e7726478dbdb Description: Qt 5 Location and Positioning examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f1678e4b1dd2a8154f42ef8ef6c0548c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtmultimedia5-dbg Priority: extra Section: debug Installed-Size: 25540 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libqt5multimedia5 (= 5.2.1-0ubuntu5) Suggests: qtmultimedia5-examples (= 5.2.1-0ubuntu5) Filename: pool/main/q/qtmultimedia-opensource-src/qtmultimedia5-dbg_5.2.1-0ubuntu5_i386.deb Size: 25015880 MD5sum: 35a709b24510eddb0c211b9b1b6e4974 SHA1: 230bbb36d9d728ac7b85d7f36ba9894f43df1994 SHA256: 15357a53ee686e183ac99af4bae1419c86cd8e0b9218fe3a3804f8c419dce4d4 Description: Qt 5 Multimedia library debugging symbols Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 46c447a30dea0066bc7bcf8e926d7234 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtmultimedia5-dev Priority: extra Section: libdevel Installed-Size: 428 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libqgsttools-p1 (= 5.2.1-0ubuntu5), libqt5multimedia5 (= 5.2.1-0ubuntu5), libqt5multimediaquick-p5 (= 5.2.1-0ubuntu5), libqt5multimediawidgets5 (= 5.2.1-0ubuntu5), qtbase5-dev Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtmultimedia-opensource-src/qtmultimedia5-dev_5.2.1-0ubuntu5_i386.deb Size: 38316 MD5sum: 4becca3ed4b50951df3a1b9f1863a8e7 SHA1: b4698ed55bc0854a0a7ea032a6dc9f49a4701e6f SHA256: 90f894829de018d7cdfc0f96565940f46c0499e22c5f2e44c3989719b421d377 Description: APIs for multimedia functionality - development files Homepage: https://qt-project.org/ Description-md5: d66c7302b817d2d8a6eeed52062a5950 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtmultimedia5-doc Priority: extra Section: doc Installed-Size: 3240 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Filename: pool/main/q/qtmultimedia-opensource-src/qtmultimedia5-doc_5.2.1-0ubuntu5_all.deb Size: 2932324 MD5sum: 680870fca77a1f5eff6747f438517af0 SHA1: b03878fa24225f61c26af119a871d1221d9241aa SHA256: 1da54f5ff2a480ce8578121fa0e6778535323a344f78673b2dc8c0a75375c788 Description: Qt 5 multimedia documentation Homepage: https://qt-project.org/ Description-md5: 9aa5cda04caafcdcf8c9cc892a45d227 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtmultimedia5-doc-html Priority: extra Section: doc Installed-Size: 11604 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Filename: pool/main/q/qtmultimedia-opensource-src/qtmultimedia5-doc-html_5.2.1-0ubuntu5_all.deb Size: 2512950 MD5sum: fff1fdec53cc1b474295a453e6ffdda7 SHA1: 9d6ecc0600c581109c9e39130911e2be8f5949b1 SHA256: aa9cb7e2e51c6b30f8ed6945ff7e440c4433f431626bd3dff0232773577c274d Description: Qt 5 multimedia HTML documentation Homepage: https://qt-project.org/ Description-md5: cef6f70d1283a688309a1ab73b3b1371 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtmultimedia5-examples Priority: extra Section: x11 Installed-Size: 2831 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtmultimedia-opensource-src Version: 5.2.1-0ubuntu5 Depends: libqt5multimedia5-plugins (= 5.2.1-0ubuntu5), qtdeclarative5-folderlistmodel-plugin, qtdeclarative5-qtmultimedia-plugin (= 5.2.1-0ubuntu5), qtdeclarative5-qtquick2-plugin, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5multimedia5 (>= 5.2.0), libqt5multimediawidgets5 (>= 5.0.2) | libqt5multimediawidgets5-gles (>= 5.0.2), libqt5opengl5 (>= 5.0.2) | libqt5opengl5-gles (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtmultimedia-opensource-src/qtmultimedia5-examples_5.2.1-0ubuntu5_i386.deb Size: 616356 MD5sum: e932e1d0aacc68c4c46d89dff1e64972 SHA1: b0c617233617c41159beacfc8b7ac3df0df237ec SHA256: cf4b1ef525df4f31b73e85ab1400f114d16be4fe4e4d47ecbce9d48ade5d93e4 Description: Examples for Qt 5 Multimedia module Multi-Arch: same Homepage: https://qt-project.org/ Description-md5: 49d9bf07b867f8f8f5fef95670514ed0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtpim5-dbg Priority: optional Section: debug Installed-Size: 14408 Maintainer: Ubuntu Developers Architecture: i386 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libqt5contacts5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5organizer5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5versit5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5versitorganizer5 (= 5.0~git20140203~e0c5eebe-0ubuntu2) Filename: pool/main/q/qtpim-opensource-src/qtpim5-dbg_5.0~git20140203~e0c5eebe-0ubuntu2_i386.deb Size: 13664546 MD5sum: 9c394f52b5b6c199d996bb8864f0b580 SHA1: 9147c384883537de4a5497017fd7b632db260ac3 SHA256: 5055c3f560f4e1f424e74b8a70f21a9d13c1a4e1498e8d2ea59019959c7959c2 Description: Qt PIM library debugging symbols Homepage: http://qt-project.org/ Description-md5: a03c23301053d7d972778dd9256a9a47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtpim5-dev Priority: optional Section: libdevel Installed-Size: 682 Maintainer: Ubuntu Developers Architecture: i386 Source: qtpim-opensource-src Version: 5.0~git20140203~e0c5eebe-0ubuntu2 Depends: libqt5contacts5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5organizer5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5versit5 (= 5.0~git20140203~e0c5eebe-0ubuntu2), libqt5versitorganizer5 (= 5.0~git20140203~e0c5eebe-0ubuntu2) Filename: pool/main/q/qtpim-opensource-src/qtpim5-dev_5.0~git20140203~e0c5eebe-0ubuntu2_i386.deb Size: 52478 MD5sum: 0205d1f00de618f5350d80acbe36c336 SHA1: dd0aca3932131035a5476f508d5b12643ee6ee01 SHA256: e7678a2ffa160f1953d8b4f989d7e93b5c14ef8d4f18b1a2b29734935fa9ceeb Description: Qt 5 PIM development files Homepage: http://qt-project.org/ Description-md5: 7cc457e1f7210119b1a0ff2f23406872 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtpositioning5-dev Priority: optional Section: libdevel Installed-Size: 138 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtlocation-opensource-src Version: 5.2.1-1ubuntu2 Replaces: qtlocation5-dev (<< 5.2.1-0ubuntu2~) Depends: libqt5positioning5 (= 5.2.1-1ubuntu2), libqt5positioning5-plugins (= 5.2.1-1ubuntu2), qtbase5-dev, qtdeclarative5-dev Breaks: qtlocation5-dev (<< 5.2.1-0ubuntu2~) Filename: pool/main/q/qtlocation-opensource-src/qtpositioning5-dev_5.2.1-1ubuntu2_i386.deb Size: 12400 MD5sum: 2f344bdca9f6394604ff4d84565beb44 SHA1: f10be1d4bbccc56d62cac7f3637b2726554ab2f9 SHA256: fb0c5c9491d3f400dc12541622b274941f24edf4e9c93db36f1771e9cce03ed4 Description: Qt 5 Positioning development files Homepage: http://qt-project.org/ Description-md5: 6b9276dc70755398fd080b95764c828d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-dbg Priority: extra Section: debug Installed-Size: 26663 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Depends: libqt5script5 (= 5.2.1+dfsg-1ubuntu1), libqt5scripttools5 (= 5.2.1+dfsg-1ubuntu1) Suggests: qtscript5-examples (= 5.2.1+dfsg-1ubuntu1) Filename: pool/main/q/qtscript-opensource-src/qtscript5-dbg_5.2.1+dfsg-1ubuntu1_i386.deb Size: 26382486 MD5sum: 5b911dd93fe200410700aac1778f0e1b SHA1: 5dd3eddc5a8a5cdf9a6ac4b06275159810e3e169 SHA256: 0eca6bb2507f264391505791aa0adb67202ff63b0e301a421c33741e1c0c3fbd Description: Qt 5 script libraries debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: dc6ad561731883908401b83f9cc90242 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-dev Priority: optional Section: libdevel Installed-Size: 173 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Depends: libqt5script5 (= 5.2.1+dfsg-1ubuntu1), libqt5scripttools5 (= 5.2.1+dfsg-1ubuntu1), qtbase5-dev Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtscript-opensource-src/qtscript5-dev_5.2.1+dfsg-1ubuntu1_i386.deb Size: 18130 MD5sum: b0f51ba35d958c15b6abd98d20c07289 SHA1: 20f8f17bb273c2afc1b16009166a2b27e79757f5 SHA256: ecba49a8d455159435c898b7d0dce987324f36a3f74396232bef255f0036a145 Description: Qt 5 script development files Homepage: http://qt-project.org/ Description-md5: 9c895e1d9010a1b23470d0c0eed496d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-doc Priority: extra Section: doc Installed-Size: 417 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Filename: pool/main/q/qtscript-opensource-src/qtscript5-doc_5.2.1+dfsg-1ubuntu1_all.deb Size: 295882 MD5sum: 5d2d94862457d60bf1b31b6fd30bb606 SHA1: 5bfd6111a3a8814717f1b8e23c2958f9503da639 SHA256: d85fe8ba3fad64df981a3e7ebf95f19408218d6782f1992facf7325bebd68d16 Description: Qt 5 script documentation Homepage: http://qt-project.org/ Description-md5: a6434dbb2e0c5b961b87e5875be7cf17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-doc-html Priority: extra Section: doc Installed-Size: 2959 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Filename: pool/main/q/qtscript-opensource-src/qtscript5-doc-html_5.2.1+dfsg-1ubuntu1_all.deb Size: 278664 MD5sum: 018dda382ecb889f91bc15cc898f3863 SHA1: 9d1560dc0e4e815dd53a344b8bd039e9b0f682a7 SHA256: bbd9edadc77806c94db3040fbcfaf3c3a759fc510fbc192b7b71d3468ef7cee0 Description: Qt 5 script HTML documentation Homepage: http://qt-project.org/ Description-md5: bd7b8b04024dae6cc194a09439eab845 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-examples Priority: optional Section: x11 Installed-Size: 604 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Depends: libc6 (>= 2.3.4), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2), libqt5script5 (>= 5.0.2), libqt5scripttools5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtscript-opensource-src/qtscript5-examples_5.2.1+dfsg-1ubuntu1_i386.deb Size: 114288 MD5sum: 2fe00f172308b76220ca632d71445a43 SHA1: e2338f1b320ddd47662d0dce0cfff2e6be77346e SHA256: 326b16882a7e7d4353d606f0d928866552ca8540b8a2cfb45f7d6a40522b0b5b Description: Qt 5 script examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4bffca6cd623049a22e5f67763708da7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtscript5-private-dev Priority: optional Section: libdevel Installed-Size: 570 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtscript-opensource-src Version: 5.2.1+dfsg-1ubuntu1 Depends: qtscript5-dev (= 5.2.1+dfsg-1ubuntu1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtscript-opensource-src/qtscript5-private-dev_5.2.1+dfsg-1ubuntu1_i386.deb Size: 44798 MD5sum: e35b1e8c35a7068fc7b634856e22e342 SHA1: 5cb190c84560eecb5b6d34cddf24ab792e21bac6 SHA256: cc517564809e2fa1ae178b2fe3861c40107ed61dfff590c96cdabd72251d21e9 Description: Qt 5 script private development files Homepage: http://qt-project.org/ Description-md5: fd23c113e829c259d1dd5a3421ee04f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsensors5-dbg Priority: extra Section: debug Installed-Size: 7402 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Depends: libqt5sensors5 (= 5.2.1+dfsg-2ubuntu2) Suggests: qtsensors5-examples (= 5.2.1+dfsg-2ubuntu2) Filename: pool/main/q/qtsensors-opensource-src/qtsensors5-dbg_5.2.1+dfsg-2ubuntu2_i386.deb Size: 7044048 MD5sum: e6754e4f94f65e1d7fe939f4f81fe0c4 SHA1: cba27f3da4c27c9714097db93ecb6b77698a7924 SHA256: 00532f676908a471ce20eee5e893d834d88cf551d160fce25d9604848c9c4aa1 Description: Qt sensors library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 860aa8e8d1dd95f0bf3eef6b9657420f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsensors5-dev Priority: optional Section: libdevel Installed-Size: 35 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Depends: libqt5sensors5-dev (= 5.2.1+dfsg-2ubuntu2) Filename: pool/main/q/qtsensors-opensource-src/qtsensors5-dev_5.2.1+dfsg-2ubuntu2_i386.deb Size: 3926 MD5sum: b846a076d8bffa90a30b9fc6ae47514d SHA1: 80e0a313c25279258af7374e760fca187b4b44f9 SHA256: f3cfdf52987646703aaa191bc97ae5c82677ed5366d9a242f8e637af3c9849b6 Description: transitional dummy package Homepage: http://qt-project.org/ Description-md5: ff55785a0db99b4722d6e8a6b3a0d8bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsensors5-doc Priority: extra Section: doc Installed-Size: 2273 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Filename: pool/main/q/qtsensors-opensource-src/qtsensors5-doc_5.2.1+dfsg-2ubuntu2_all.deb Size: 2103030 MD5sum: e7e7889bf977d1ea9441219e4b0da44f SHA1: 2db2a0a1a3d39b29eb4fd06c6ae9811bd2aa2bfa SHA256: 7279ebaf3a94f9323b0c7d768909f9906b76f222295d71ed4ee568abcce18022 Description: Qt 5 Sensors documentation Homepage: http://qt-project.org/ Description-md5: e4cc03e5d28e974e34ec86b9c8e3d973 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsensors5-examples Priority: optional Section: x11 Installed-Size: 699 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtsensors-opensource-src Version: 5.2.1+dfsg-2ubuntu2 Depends: libc6 (>= 2.4), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5qml5 (>= 5.1.0), libqt5quick5 (>= 5.0.2) | libqt5quick5-gles (>= 5.0.2), libqt5sensors5 (>= 5.2.0), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Filename: pool/main/q/qtsensors-opensource-src/qtsensors5-examples_5.2.1+dfsg-2ubuntu2_i386.deb Size: 216924 MD5sum: d2a001193986b3164aa073eaf03f89a2 SHA1: 580fbefa0f167e4897228f8bca027e2fc6f12eed SHA256: 6a5a6ab8a1161d8d1a9b34fbb0a35651f399f406669ce8b36d7a2370d00c58b8 Description: Qt 5 sensors examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: bfd5d874c1703d4e4276facf6340aed7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtserialport5-dbg Priority: extra Section: debug Installed-Size: 407 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtserialport-opensource-src Version: 5.2.1-1 Depends: libqt5serialport5 (= 5.2.1-1) Filename: pool/main/q/qtserialport-opensource-src/qtserialport5-dbg_5.2.1-1_i386.deb Size: 350962 MD5sum: b9024618aa50487bae69eaad0c63dac0 SHA1: 60ca2e154d27e280eb00f39043bff42a6fd7012e SHA256: 4f7a306593d728a9a380fe1715ef5d14daf9f1126bf27ccd569f84c0bf458342 Description: Qt 5 serial port library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: ecbde646623bc79066843dc53372a651 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtserialport5-doc Priority: extra Section: doc Installed-Size: 315 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtserialport-opensource-src Version: 5.2.1-1 Filename: pool/main/q/qtserialport-opensource-src/qtserialport5-doc_5.2.1-1_all.deb Size: 234426 MD5sum: 0010dcbdae28f3c6641b364e8c138f8c SHA1: f590b5a9a5ba05d0fd9d9351fe1ac29d7e35f344 SHA256: a95bd0856f076f5b738030fb8a93a18d9b442289754bea726b5f4b1cf8a07812 Description: Qt 5 serial port documentation Homepage: http://qt-project.org/ Description-md5: 18fad513dced03cb54fd9ea10e922605 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsvg5-dbg Priority: extra Section: debug Installed-Size: 7511 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtsvg-opensource-src Version: 5.2.1-1 Depends: libqt5svg5 (= 5.2.1-1) Suggests: qtsvg5-examples (= 5.2.1-1) Filename: pool/main/q/qtsvg-opensource-src/qtsvg5-dbg_5.2.1-1_i386.deb Size: 7370662 MD5sum: fb13a2209bee1b042c0535701d5e54b5 SHA1: 62196380ab647b86023ab96d65f5250dd0c6e6e1 SHA256: d422b003ae6b180240e0584bd81d7efa120915415e1e66f5b9db729439d90af3 Description: Qt 5 SVG library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 1de336622a5f80fffcc53744aa6f81d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsvg5-doc Priority: extra Section: doc Installed-Size: 214 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtsvg-opensource-src Version: 5.2.1-1 Filename: pool/main/q/qtsvg-opensource-src/qtsvg5-doc_5.2.1-1_all.deb Size: 145840 MD5sum: 04b305934adf97dced1ba8f1d47ab3eb SHA1: c57d94e8189c88300801f904eaf8f85d982f9d1d SHA256: 97bb59923b2360e77ab3d39aeea538661c9a19fd9c25c06e63864eecd57bc053 Description: Qt 5 SVG documentation Homepage: http://qt-project.org/ Description-md5: 13c2621857e60a1440611ff4c69c1c23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsvg5-doc-html Priority: extra Section: doc Installed-Size: 774 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtsvg-opensource-src Version: 5.2.1-1 Filename: pool/main/q/qtsvg-opensource-src/qtsvg5-doc-html_5.2.1-1_all.deb Size: 111938 MD5sum: 1bd33721fce8ad03f2ccd8bddc11a14a SHA1: 8760fddd1800a442565f08554e5df63feb586227 SHA256: 78d603fdd54d140f0ef5903557c650b6cf6cb6b00d78e324a2f1b3cfb4b46152 Description: Qt 5 SVG HTML documentation Homepage: http://qt-project.org/ Description-md5: 8f027e5df3b023d0a76f2c2f4714ef08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtsvg5-examples Priority: optional Section: x11 Installed-Size: 2401 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtsvg-opensource-src Version: 5.2.1-1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libgl1-mesa-glx | libgl1, libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5opengl5 (>= 5.0.2), libqt5svg5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/q/qtsvg-opensource-src/qtsvg5-examples_5.2.1-1_i386.deb Size: 1217658 MD5sum: a9045c0288276794458233afb06a704b SHA1: f5728e5f7eb0f005201bb513a778410747f7c53b SHA256: fd28f9af73cd461824bd93c1b77c6e17bd70bb9c09129d061eab33f4b5745dfe Description: Qt 5 SVG examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 4e15e00778893792347b511f92e58128 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-dbg Priority: extra Section: debug Installed-Size: 93278 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libqt5clucene5 (= 5.2.1-8build1), libqt5designer5 (= 5.2.1-8build1), libqt5designercomponents5 (= 5.2.1-8build1), libqt5help5 (= 5.2.1-8build1) Filename: pool/main/q/qttools-opensource-src/qttools5-dbg_5.2.1-8build1_i386.deb Size: 90460230 MD5sum: 14dc8b52eb33a2c81abcafc6c987157a SHA1: e91e3972245387f907c78c13f07de01eace492b7 SHA256: cb787cd23166913a97621eff66980ba37a5786f5fc4acede1b0283c00ec96166 Description: Qt 5 tools debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 196357e4b4b1e1b5dc2f43e260c597b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-dev Priority: optional Section: libdevel Installed-Size: 1336 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libqt5clucene5 (= 5.2.1-8build1), libqt5designer5 (= 5.2.1-8build1), libqt5designercomponents5 (= 5.2.1-8build1), libqt5help5 (= 5.2.1-8build1), qtbase5-dev Filename: pool/main/q/qttools-opensource-src/qttools5-dev_5.2.1-8build1_i386.deb Size: 186926 MD5sum: 381121af6e4e215a09b290c115e6f810 SHA1: 9ff19c2cd91b1e6c76512565d803c31cb1c3dba2 SHA256: e768025cf2a3ecf3a7799c584ed1fb69d8a74d155dabc1a2b581ef70afc3ebca Description: Qt 5 tools development files Homepage: http://qt-project.org/ Description-md5: 2c7b573d705950feb78131e46ada5b45 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-dev-tools Priority: optional Section: devel Installed-Size: 5221 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: qtchooser, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5designer5 (>= 5.0.2), libqt5designercomponents5 (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5help5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5printsupport5 (>= 5.0.2), libqt5sql5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libqt5xml5 (>= 5.2.0), libstdc++6 (>= 4.4.0), qtbase-abi-5-2-1, zlib1g (>= 1:1.1.4) Recommends: libqt5sql5-sqlite Filename: pool/main/q/qttools-opensource-src/qttools5-dev-tools_5.2.1-8build1_i386.deb Size: 1642504 MD5sum: 31ebc2da1d5e926e032619804d71ae8d SHA1: 7db73bf5abaed1eeb1bcd7a5c3cdeb33650a2e7d SHA256: ee100a3a6afe04818891252ee560ba8223da5642c4bc7f82307e6a27ff96a31d Description: Qt 5 development tools Homepage: http://qt-project.org/ Description-md5: 59d8854dd4e4c01e83a5450a16dda8cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-doc Priority: extra Section: doc Installed-Size: 3896 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qttools-opensource-src Version: 5.2.1-8build1 Filename: pool/main/q/qttools-opensource-src/qttools5-doc_5.2.1-8build1_all.deb Size: 3660730 MD5sum: b38a171aa8a03c4a461c64a0d7099325 SHA1: 9722548d7877ed4c197660db552d716647bbcab7 SHA256: 1b56ca1e358bd434af4968d43e617193bfed4216f8f39223bb6ffa40241718e6 Description: Qt 5 tools documentation Homepage: http://qt-project.org/ Description-md5: cadd8f42b0252861fb7f42f03b26d605 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-examples Priority: optional Section: x11 Installed-Size: 2577 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.2.0), libqt5designer5 (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5help5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libstdc++6 (>= 4.1.1) Pre-Depends: multiarch-support Filename: pool/main/q/qttools-opensource-src/qttools5-examples_5.2.1-8build1_i386.deb Size: 465448 MD5sum: 764d0b7e50afcad361d9bb77f7385922 SHA1: 534300993f6b034b05ca916a01e151c902d30d74 SHA256: 04883177a89f8b8f6a41bdc61f6a8606747ecabd219e2f730156a732b9cb65a7 Description: Qt 5 tools examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 2e5c31e03a2be53eb1d8b348eb9afe48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-examples-dbg Priority: extra Section: debug Installed-Size: 12752 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qttools-opensource-src Version: 5.2.1-8build1 Depends: qttools5-dbg (= 5.2.1-8build1), qttools5-examples (= 5.2.1-8build1) Filename: pool/main/q/qttools-opensource-src/qttools5-examples-dbg_5.2.1-8build1_i386.deb Size: 12100378 MD5sum: fe82a41ca431276f77732a5132bd8b0e SHA1: 577e747d6178ea34b34a278e76e07b697d007cd8 SHA256: 43ec1e18f8a2797d550bd5c277fdfe8332009d1c3c0979d6d864c79dd4e24cca Description: Qt 5 tools examples debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: f0cfd6bef446f99f7c1af7be5cd13f60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qttools5-private-dev Priority: optional Section: libdevel Installed-Size: 834 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qttools-opensource-src Version: 5.2.1-8build1 Replaces: qttools5-dev (<< 5.2.0-3~) Depends: qttools5-dev (= 5.2.1-8build1) Breaks: qttools5-dev (<< 5.2.0-3~) Filename: pool/main/q/qttools-opensource-src/qttools5-private-dev_5.2.1-8build1_i386.deb Size: 79902 MD5sum: 5a01a29633698963150bd4966e19112a SHA1: b24e0754eb9a86eaf69b2fb16fc6a0b47dddc28c SHA256: 818251d0b6126d6e3412ba572eb28be20cef31d315dfd3fd91048724b85183d6 Description: Qt 5 tools private development files Homepage: http://qt-project.org/ Description-md5: 73752fe859df40a7d51d49f7871d7f09 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtwebkit5-doc Priority: extra Section: doc Installed-Size: 820 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Filename: pool/main/q/qtwebkit-opensource-src/qtwebkit5-doc_5.1.1-1ubuntu8_all.deb Size: 269302 MD5sum: 47135b07ff96fcf134f07c5b6378d211 SHA1: b56b5be4cd83c8574944e64e08677aa38f09ade2 SHA256: 748b7988596672b669e231a63fb9618a397adc27a71766a824a95f3c701905cf Description: Qt 5 webkit documentation Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: c2f78f5f71fe019ba59cea759c8241bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtwebkit5-doc-html Priority: extra Section: doc Installed-Size: 2387 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtwebkit-opensource-src Version: 5.1.1-1ubuntu8 Filename: pool/main/q/qtwebkit-opensource-src/qtwebkit5-doc-html_5.1.1-1ubuntu8_all.deb Size: 215706 MD5sum: 44a82c7bd8bcbff5ab3b27a28af3a0b5 SHA1: a8e1e8cb4a733e5296e24f15407448cdf3be38ca SHA256: d6110e9261c68979603955c630a0b93712552ddaa72f4bff2541d15500a0b28f Description: Qt 5 webkit HTML documentation Homepage: http://trac.webkit.org/wiki/QtWebKit Description-md5: b259b5338f8f7ba5320840a81055174e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtx11extras5-dbg Priority: extra Section: debug Installed-Size: 177 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtx11extras-opensource-src Version: 5.2.1-1 Depends: libqt5x11extras5 (= 5.2.1-1) Filename: pool/main/q/qtx11extras-opensource-src/qtx11extras5-dbg_5.2.1-1_i386.deb Size: 133802 MD5sum: 66265236c851fa1aa6d3b1e46072ac13 SHA1: 7fe37c35a9f98dee5a4ec9fcec6e8bcec49d4757 SHA256: 490fac1800415bb8c6f04a457db9292344350f69c456f5ee8c217eac7201775d Description: Qt 5 X11 extras libraries debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: e8f9d58035e232712b48e8749c01ec51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtx11extras5-doc Priority: extra Section: doc Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtx11extras-opensource-src Version: 5.2.1-1 Filename: pool/main/q/qtx11extras-opensource-src/qtx11extras5-doc_5.2.1-1_all.deb Size: 19610 MD5sum: f440c8a321097e51428e25d2a74c26e3 SHA1: 3c562850b8946f81d262fab835f25bd1d2b475df SHA256: 4d3f833c986e3026b44f6f7a6615dc1515e9296cf3bcb0dfa26cd15335c52184 Description: Qt 5 X11 extras documentation Homepage: http://qt-project.org/ Description-md5: 658a17892b1d328f31fb4da891d36de5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtxmlpatterns5-dbg Priority: extra Section: debug Installed-Size: 36342 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Depends: libqt5xmlpatterns5 (= 5.2.1-3) Suggests: qtxmlpatterns5-dev-tools (= 5.2.1-3), qtxmlpatterns5-examples (= 5.2.1-3) Filename: pool/main/q/qtxmlpatterns-opensource-src/qtxmlpatterns5-dbg_5.2.1-3_i386.deb Size: 35506760 MD5sum: fbd35e3c2c6960984c5c6b42bee51f00 SHA1: 6d3641e2142d42c9bdbe52758c10a2b2e89c91d5 SHA256: 355e4a6f9c2a15685dfe1e2bf9e352dbcfbbb50ce53b4c4f4151f29061d0179b Description: Qt 5 XML patterns library debugging symbols Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: d32579dbf06883a46547da100d965cf3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtxmlpatterns5-doc Priority: extra Section: doc Installed-Size: 496 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qttools-opensource-src Version: 5.2.1-8build1 Filename: pool/main/q/qttools-opensource-src/qtxmlpatterns5-doc_5.2.1-8build1_all.deb Size: 417822 MD5sum: a8c1947754ba8b254e2ddc0aee762fdd SHA1: c661b900047a65bd953fb84d2d06354e0b45e59d SHA256: 5c3fe04a4d30637d7e46913b2e20dc36334b9094fd53b3832c24d83f58c1961a Description: Qt 5 XML patterns documentation Homepage: http://qt-project.org/ Description-md5: dffb05c2430e5b9b0e84f4ae3bdd4e63 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtxmlpatterns5-doc-html Priority: extra Section: doc Installed-Size: 4922 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: all Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Filename: pool/main/q/qtxmlpatterns-opensource-src/qtxmlpatterns5-doc-html_5.2.1-3_all.deb Size: 461960 MD5sum: 0a7ae2c6899445eccbe076ab856ff504 SHA1: 209e54340529e4bc81e32bc33eb748b87ab60922 SHA256: b0e6d18c3a2c35ad269d75ebc5ff0b1ce6d16e090a33e42ec5417e4c090cbff4 Description: Qt 5 XML patterns HTML documentation Homepage: http://qt-project.org/ Description-md5: d0e96581f1d7d7d4eb2ec82108fd5d5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: qtxmlpatterns5-examples Priority: optional Section: x11 Installed-Size: 331 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: qtxmlpatterns-opensource-src Version: 5.2.1-3 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libqt5xmlpatterns5 (>= 5.0.2), libstdc++6 (>= 4.1.1) Filename: pool/main/q/qtxmlpatterns-opensource-src/qtxmlpatterns5-examples_5.2.1-3_i386.deb Size: 53572 MD5sum: e29f795f0da939b79df19c1930ddc3fe SHA1: 5b0dad7d7eb009966a6169494764a98ca6c5b994 SHA256: 94c62363677aa71ba4163fc2eed39e72160145c8b11efb6772891b7f0f710196 Description: Qt 5 XML patterns examples Multi-Arch: same Homepage: http://qt-project.org/ Description-md5: 6a50b08931740af2a542a4e2833edb99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: quagga Priority: optional Section: net Installed-Size: 5588 Maintainer: Ubuntu Developers Original-Maintainer: Christian Hammers Architecture: i386 Version: 0.99.22.4-3ubuntu1 Replaces: zebra, zebra-pj Depends: libc6 (>= 2.15), libcap2 (>= 2.10), libpam0g (>= 0.99.7.1), libreadline6 (>= 6.0), logrotate (>= 3.2-11), iproute, debconf (>= 0.5) | debconf-2.0 Pre-Depends: adduser Suggests: snmpd Conflicts: zebra, zebra-pj Filename: pool/main/q/quagga/quagga_0.99.22.4-3ubuntu1_i386.deb Size: 1149310 MD5sum: 053a7683932e14d8f4aa2be2331d4d50 SHA1: 11a557956b355f7d08f86ff6a792343f71e6d8db SHA256: 04b10530e16b6864ddcb19c6ad3dc406063c9415663cd501358fc944fb1b8d9c Description: BGP/OSPF/RIP routing daemon Homepage: http://www.quagga.net/ Description-md5: 156e956921717778c003a1086883af2b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: quagga-dbg Priority: extra Section: debug Installed-Size: 5660 Maintainer: Ubuntu Developers Original-Maintainer: Christian Hammers Architecture: i386 Source: quagga Version: 0.99.22.4-3ubuntu1 Depends: quagga (= 0.99.22.4-3ubuntu1) Filename: pool/main/q/quagga/quagga-dbg_0.99.22.4-3ubuntu1_i386.deb Size: 1668306 MD5sum: de04f3fd2815dd74571d862bfe88c2bb SHA1: 999086d5fdff93b2da661038721d9404860da3b7 SHA256: e375cce7d8e35cc808732d5555708c1f9ceb0a1a4dd7947734d14c0b5240a5ba Description: BGP/OSPF/RIP routing daemon (debug symbols) Homepage: http://www.quagga.net/ Description-md5: cafdec949e91609087760bca15eaf436 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: quagga-doc Priority: optional Section: net Installed-Size: 684 Maintainer: Ubuntu Developers Original-Maintainer: Christian Hammers Architecture: all Source: quagga Version: 0.99.22.4-3ubuntu1 Suggests: quagga Filename: pool/main/q/quagga/quagga-doc_0.99.22.4-3ubuntu1_all.deb Size: 641444 MD5sum: 905298a76a51643c466db4d8ab78feb9 SHA1: 1d54062c6b3a3a10df59110cd831a2559cc9f2d9 SHA256: fbe42b9dbd227ef0595394efc0f866a0adf7305888ad7dadb7b1f71ed16c6acf Description: documentation files for quagga Homepage: http://www.quagga.net/ Description-md5: b1185a50e91cae6a779c018de20ba88c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: quilt Priority: optional Section: devel Installed-Size: 816 Maintainer: Ubuntu Developers Original-Maintainer: Martin Quinson Architecture: all Version: 0.61-1 Depends: patch (>= 2.6), diffstat, bzip2, gettext, bsdmainutils, perl Recommends: less Suggests: procmail, graphviz, default-mta | mail-transport-agent Filename: pool/main/q/quilt/quilt_0.61-1_all.deb Size: 270782 MD5sum: b4a52e1f15d444491dde9f4049f195d1 SHA1: 3af9c99aa3e2d3e79769779127531302d2574d0a SHA256: bd9e120c036ae555b390bf75e8e7789b7507a68698b2d0ee0697eebbc00169dc Description: Tool to work with series of patches Enhances: cdbs, debhelper Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/quilt Description-md5: 8eeb0522bc56c3acd93b9e763f3dcd28 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: quota Priority: optional Section: admin Installed-Size: 1412 Maintainer: Ubuntu Developers Original-Maintainer: Michael Meskes Architecture: i386 Version: 4.01-3 Depends: e2fslibs (>= 1.37), libc6 (>= 2.7), libdbus-1-3 (>= 1.0.2), libldap-2.4-2 (>= 2.4.7), libnl-3-200 (>= 3.2.16), libnl-genl-3-200 (>= 3.2.16), libwrap0 (>= 7.6-4~), debconf (>= 1.2.9) | debconf-2.0, lsb-base (>= 3.2-13) Suggests: libnet-ldap-perl, rpcbind | portmap, default-mta | mail-transport-agent Filename: pool/main/q/quota/quota_4.01-3_i386.deb Size: 558496 MD5sum: 8f9f5ce4eb336de30759ff28c0ef9d18 SHA1: d5d4caa7d1ad4b06a34aa064f7704c20acd6e11b SHA256: e48119c3ab2c31cfb2c33457abdc5c46c82a046367a122a736ee6c5e5969b008 Description: disk quota management tools Homepage: http://sourceforge.net/projects/linuxquota Description-md5: fd7c977b2fe98c77b859c245a0798bec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rabbitmq-server Priority: extra Section: net Installed-Size: 4753 Maintainer: Ubuntu Developers Original-Maintainer: RabbitMQ Team Architecture: all Version: 3.2.4-1 Depends: erlang-nox (>= 1:13.b.3) | esl-erlang, adduser, logrotate Filename: pool/main/r/rabbitmq-server/rabbitmq-server_3.2.4-1_all.deb Size: 3909054 MD5sum: ac0bcd91061ed9c00435d6ffcc179a3e SHA1: 051309e3e8a53807d026c94f94859086cd529407 SHA256: 6c472527fb1dabf703d5705e0e0d571c4dfe59cf7230831ff48988a3fd0c5c81 Description: AMQP server written in Erlang Homepage: http://www.rabbitmq.com/ Description-md5: 78e91bfb996ee4ae5d16c93298f5f6e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: radosgw Priority: optional Section: admin Installed-Size: 3929 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Depends: ceph-common (= 0.79-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.16), libcurl3-gnutls (>= 7.28.0), libexpat1 (>= 2.0.1), libfcgi0ldbl, libgcc1 (>= 1:4.1.1), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), librados2, libstdc++6 (>= 4.6) Filename: pool/main/c/ceph/radosgw_0.79-0ubuntu1_i386.deb Size: 921750 MD5sum: 9cacf2371521265c93cc1d78cd9542aa SHA1: 8b0cab18ad4827b4ace138b275a9d67245d7b55c SHA256: 97712950d8cec4702d95e62806229a8ac4c2f763a53210c7103e77c0b3c1c316 Description: REST gateway for RADOS distributed object store Homepage: http://ceph.com/ Description-md5: fa947d9328112c7b2e6719d10f788061 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: radosgw-dbg Priority: extra Section: debug Installed-Size: 18968 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Depends: radosgw (= 0.79-0ubuntu1) Filename: pool/main/c/ceph/radosgw-dbg_0.79-0ubuntu1_i386.deb Size: 18789890 MD5sum: d98ed587a6240fa7b43ace4d385ed085 SHA1: cb58805560af18fdad6d05e0d4132c63da937cfa SHA256: a0a02dc3a9c7abcb2c138f5984c0db33db7355a5eb4b6f8a93514a81e95a50e5 Description: debugging symbols for radosgw Homepage: http://ceph.com/ Description-md5: b21018ad5ddfda350f7a8d6ec0e73923 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: radvd Priority: optional Section: net Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: Ghe Rivero Architecture: i386 Version: 1:1.9.1-1.1ubuntu2 Depends: libc6 (>= 2.15), libdaemon0 (>= 0.10), adduser Filename: pool/main/r/radvd/radvd_1.9.1-1.1ubuntu2_i386.deb Size: 62378 MD5sum: d6860bfc6d06cb9804fcba929b8a4dd1 SHA1: fd36f2d764f8b83dfc0f9066d4c6793c0caf93c0 SHA256: 192fdb1e4e340dbcd85590215d211cf91aca0b017c7a6755ec4badd70b5dafe7 Description: Router Advertisement Daemon Description-md5: fdb4578fd1d88489eda410ee8b1f7b20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rake Priority: optional Section: devel Installed-Size: 232 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 10.0.4-1 Depends: ruby | ruby-interpreter Recommends: zip Filename: pool/main/r/rake/rake_10.0.4-1_all.deb Size: 48964 MD5sum: 3d21318bcc5d829e6802542452a92f47 SHA1: dc9ece836cdfcd57cd88d64496cb9e765ca0c824 SHA256: 59c0a896e2cde9e3ac302fbbff13ff9d1aae2fa3898d4ab4defc7de450fa1523 Description: ruby make-like utility Homepage: http://rake.rubyforge.org Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 13b953bd84607c7631a72c5bf042fc1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: raptor-utils Priority: optional Section: text Installed-Size: 114 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: raptor Version: 1.4.21-10 Depends: libc6 (>= 2.3.6-6~), libraptor1 (>= 1.4.21-3) Conflicts: libraptor0 (<= 0.9.12-1), raptor2-utils Filename: pool/main/r/raptor/raptor-utils_1.4.21-10_i386.deb Size: 12790 MD5sum: e1b0ca9bd8631997ec1fc74eb1309ac7 SHA1: 8a47d659ea08b400805df1c80617131849e8e496 SHA256: 7f0565c64e32f63af33f5a6f485d8b5cef79845bf981fba6fe423eed1b8366e0 Description: Raptor RDF parser and serializer utilities Homepage: http://librdf.org/raptor/ Description-md5: 35e83f3169d88da32ffce0c8b948e6fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: raptor2-utils Priority: optional Section: text Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: raptor2 Version: 2.0.13-1 Replaces: raptor-utils Depends: libc6 (>= 2.3.6-6~), libraptor2-0 (>= 2.0.12) Conflicts: raptor-utils Filename: pool/main/r/raptor2/raptor2-utils_2.0.13-1_i386.deb Size: 12950 MD5sum: e90f661389616b86c525d90eaa33df19 SHA1: a9b23fb7657fdd60702de531b5259b1119c26e20 SHA256: 488b1cdf69e9a6a16dd4c0182960ace5763b4ec0b97f7f79c4a2e152f7f3399b Description: Raptor 2 RDF parser and serializer utilities Homepage: http://librdf.org/raptor/ Description-md5: a69c81c5501c71f9c2dbbdd8de1fb863 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rarian-compat Priority: optional Section: doc Installed-Size: 367 Maintainer: Ubuntu Developers Original-Maintainer: Frederic Peters Architecture: i386 Source: rarian Version: 0.8.1-5ubuntu1 Replaces: scrollkeeper (<< 0.4) Provides: scrollkeeper Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), librarian0 (>= 0.8.0), libstdc++6 (>= 4.1.1), xml-core (>= 0.12), docbook-xml Conflicts: scrollkeeper (<< 0.4) Filename: pool/main/r/rarian/rarian-compat_0.8.1-5ubuntu1_i386.deb Size: 54316 MD5sum: 4267c105fc753fd03ef1d7a883971e8e SHA1: 190e2a1a3f8774f96327fff1caa32eb7e2668412 SHA256: 552eb98186c551c77bcac406194c78e5477e1206b445a353610332749dc9f257 Description: Documentation meta-data library (compatibility tools) Homepage: http://rarian.freedesktop.org/ Description-md5: a35f0aaae174f03fec8f3d0cea8b4e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-desktop Package: rasqal-utils Priority: optional Section: text Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: rasqal Version: 0.9.32-1 Depends: libc6 (>= 2.3.4), libraptor2-0 (>= 2.0.12), librasqal3 (>= 0.9.31) Suggests: raptor2-utils, redland-utils Filename: pool/main/r/rasqal/rasqal-utils_0.9.32-1_i386.deb Size: 17398 MD5sum: 45595649e91a35aa71ca32a4cb8a65de SHA1: a674d8ded93c3e98b4755ec70058dd33b561a7f0 SHA256: c1e3b9fe11056d1869bbe49b439c30f28d9416b6c2f164961c689c54241da459 Description: Rasqal RDF Query utilities Homepage: http://librdf.org/rasqal/ Description-md5: d9e47d46a0ae7f54974dfce008320fcb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rbd-fuse Priority: optional Section: admin Installed-Size: 71 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Depends: libc6 (>= 2.4), libfuse2 (>= 2.8.1), librados2, librbd1 Recommends: fuse Filename: pool/main/c/ceph/rbd-fuse_0.79-0ubuntu1_i386.deb Size: 12198 MD5sum: 0a8d2ff28f864c16e7f8c8a6ad6ae6c9 SHA1: b2a4828ea8bdf433f5b80fac945601d6b3e1123d SHA256: 71ef96ff3b85b1377d4822a82b906dceacbd3acb3a80c732f20ef0cb6dd29c21 Description: FUSE-based rbd client for the Ceph distributed file system Homepage: http://ceph.com/ Description-md5: fca395d7d420f9ee7c9d4be9e208b26a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rbd-fuse-dbg Priority: extra Section: debug Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Ceph Maintainers Architecture: i386 Source: ceph Version: 0.79-0ubuntu1 Depends: rbd-fuse (= 0.79-0ubuntu1) Filename: pool/main/c/ceph/rbd-fuse-dbg_0.79-0ubuntu1_i386.deb Size: 18514 MD5sum: f1043403c4201c078098e5ba7c65349e SHA1: 7521ab7dc691b5c44b364ea21b77ebdaa36fd348 SHA256: f792e574e0b319ba9f2711f05fb98fe3a12d9fca3a688112fdda71e7152cde6b Description: debugging symbols for rbd-fuse Homepage: http://ceph.com/ Description-md5: 987d7c5ba369f3c877ccf7f5d48fb86f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rdate Priority: optional Section: net Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 1:1.2-5 Replaces: netstd Depends: libbsd0 (>= 0.0), libc6 (>= 2.15) Filename: pool/main/r/rdate/rdate_1.2-5_i386.deb Size: 16418 MD5sum: 9649d9be42189d6c2585ac0671bf0bf1 SHA1: 06fdd219b71426a65e4ebf8c5a4a799f28a8dfe7 SHA256: f50c89da541998702f61fe235a6955576328638520b2c807c92ab6700989e398 Description: sets the system's date from a remote host Homepage: http://sourceforge.net/projects/openrdate/ Description-md5: 49b1aaad184ecba2aad3b1f84ba645a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: rdfind Priority: extra Section: utils Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: TANIGUCHI Takaki Architecture: i386 Version: 1.3.4-1ubuntu1 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libnettle4, libstdc++6 (>= 4.4.0) Filename: pool/main/r/rdfind/rdfind_1.3.4-1ubuntu1_i386.deb Size: 40034 MD5sum: 8613524463c46e0c6934ec2d72dae3f6 SHA1: 08f861208f5f6dbf53402b2ea388397efd30b3ee SHA256: f4b5cc6b683709e48b72e2e4ea16d7b36df007193ca944529b01a3ffe0b86080 Description: find duplicate files utility Multi-Arch: foreign Homepage: http://rdfind.pauldreik.se/ Description-md5: c6c9ecb679ba4f0ba5d52f6f541c9eae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rdiff Priority: optional Section: utils Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Andrey Rahmatullin Architecture: i386 Source: librsync Version: 0.9.7-10 Depends: libc6 (>= 2.3.4), libpopt0 (>= 1.14), librsync1 Filename: pool/main/libr/librsync/rdiff_0.9.7-10_i386.deb Size: 7894 MD5sum: a1616f21bceacd00bc651c5636e6d4f0 SHA1: 1c5d24588bf0304c844caa92701cba36df5d092b SHA256: 0669fddbd0af6c625f429a46ecabbe62e18bc84acea38ad1e43a1905d3f8e7b7 Description: Binary diff tool for signature-based differences Homepage: http://librsync.sourceforge.net/ Description-md5: 5284c275efe652989ea1372eb7c32b01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: re2c Priority: optional Section: devel Installed-Size: 403 Maintainer: Ubuntu Developers Original-Maintainer: Robert S. Edmonds Architecture: i386 Version: 0.13.5-1build2 Depends: libc6 (>= 2.3.4), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Filename: pool/main/r/re2c/re2c_0.13.5-1build2_i386.deb Size: 206128 MD5sum: 34137075de6044fb9e833d5f616400a7 SHA1: d14e4c94dea1b2a9fa0dd28b88e259f0feb195c9 SHA256: 38d9b9f0f6abe8980d1531312289abdb5250b3573483a0b79ce4e221bb5ffbf4 Description: tool for generating fast C-based recognizers Homepage: http://re2c.sourceforge.net/ Description-md5: 2aa9a932df11f6488500cae4e7decaf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: readline-common Priority: important Section: utils Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: readline6 Version: 6.3-4ubuntu2 Replaces: libreadline-common, libreadline4 (<< 4.3-16), libreadline5 (<< 5.0-11) Depends: dpkg (>= 1.15.4) | install-info Conflicts: libreadline-common, libreadline5 (<< 5.0-11) Filename: pool/main/r/readline6/readline-common_6.3-4ubuntu2_all.deb Size: 51236 MD5sum: d658036aeedbb56055420a216a45f613 SHA1: a73c125d62777676be7b7da6826bf27652a56f18 SHA256: af5a20614ca5f5465d213f8da561739facbc375b724ff25cbded840373c9ee32 Description: GNU readline and history libraries, common files Multi-Arch: foreign Description-md5: c8e28b105311ffa41fe6e8f86c041f82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: realpath Priority: optional Section: utils Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: i386 Version: 1.19 Replaces: dwww (<= 1.6.10) Depends: libc6 (>= 2.4) Filename: pool/main/r/realpath/realpath_1.19_i386.deb Size: 14212 MD5sum: 2baea663046fab0b6f1ec8229d664cb5 SHA1: 368699fac81358c2531f63fa19e3aeda2e6e62ed SHA256: 86117edd5ff1b4bcbdaadde70340c3e5eeef216516863fbe900ebd92dcc0df2c Description: Return the canonicalized absolute pathname Multi-Arch: foreign Description-md5: 466b12e0c4a1a461e802002eb6a75a84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: recode Priority: optional Section: text Installed-Size: 204 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 3.6-21 Depends: libc6 (>= 2.3.4), librecode0 (>= 3.6) Filename: pool/main/r/recode/recode_3.6-21_i386.deb Size: 116132 MD5sum: f9ce92b0ed7b340dbf8725cef01a157c SHA1: 5f1e802d69e1eb4877862c7c052d4565ffb9293b SHA256: 6e36fb72a2beee45db013b87784981b77d38aaa6d91dccc1f0f50e2a293c07d6 Description: Character set conversion utility Description-md5: c1971320f75c7a20b5b1d9b7d221ff3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: recode-doc Priority: optional Section: doc Installed-Size: 850 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: recode Version: 3.6-21 Filename: pool/main/r/recode/recode-doc_3.6-21_all.deb Size: 129404 MD5sum: 848bf2403d551a885a4619112fb9f144 SHA1: 1b94a36b4c71267e5b33302825edb7383f913c2a SHA256: 51cc3ee4d4416117192723fd2000533d64a32c683cd646607774a29ad11be940 Description: Documentation for Free recode Description-md5: 3d5a7fbc1b22a508ec9c30ec7e332afd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: redland-utils Priority: optional Section: text Installed-Size: 280 Maintainer: Ubuntu Developers Original-Maintainer: Dave Beckett Architecture: i386 Source: redland Version: 1.0.17-1 Depends: libc6 (>= 2.3.4), libraptor2-0 (>= 2.0.12), librdf0 (>= 1.0.17) Filename: pool/main/r/redland/redland-utils_1.0.17-1_i386.deb Size: 58030 MD5sum: 73e572e36396d1c1d6783a6b06e23ec7 SHA1: 00fa1e69e7af0005c9014b627d8e1dbbe142444f SHA256: b7e9f13e6dee9710166d262c757405f0a7b5d83b45c159707704645953afa128 Description: Redland Resource Description Framework (RDF) Utility programs Homepage: http://librdf.org/ Description-md5: 7233e7b684efc931e19d5d152827665e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: reiser4progs Priority: optional Section: admin Installed-Size: 1373 Maintainer: Ubuntu Developers Original-Maintainer: Felix Zielcke Architecture: i386 Version: 1.0.7-6.3fakesync2 Depends: libc6 (>= 2.7), libreadline5 (>= 5.2), libuuid1 (>= 2.16) Filename: pool/main/r/reiser4progs/reiser4progs_1.0.7-6.3fakesync2_i386.deb Size: 605602 MD5sum: 49874f3678e704d43a91336f2993da32 SHA1: a8ecdc2ac287f8e511bebdd9998542c87e19808e SHA256: f7bf90bf9920bfadcb8c3a223b17161f1c1192a5fb2aa677571c83127269fcd6 Description: administration utilities for the Reiser4 filesystem Description-md5: 6cd3dd444c74d161d74938c6f19e2462 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: reiserfsprogs Priority: optional Section: admin Installed-Size: 1116 Maintainer: Ubuntu Developers Original-Maintainer: Felix Zielcke Architecture: i386 Version: 1:3.6.24-1 Depends: libc6 (>= 2.10), libuuid1 (>= 2.16) Filename: pool/main/r/reiserfsprogs/reiserfsprogs_3.6.24-1_i386.deb Size: 217684 MD5sum: eaecbbfb9fc43d0342f659a25e922908 SHA1: 705d8896e82b2edf5d195b8341601a1983a3f99a SHA256: 002ff3cd28511fe29126390e0a1118ee232102878d778fc92ec870f6bcfdfc0a Description: User-level tools for ReiserFS filesystems Description-md5: 2e1145bff0ae4baf3abf769bcd287358 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: remmina Priority: optional Section: gnome Installed-Size: 362 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: i386 Version: 1.0.0-4ubuntu3 Replaces: remmina-common (<= 1.0.0-1ubuntu8), remmina-gnome, remmina-xfce Depends: libappindicator3-1 (>= 0.4.90), libc6 (>= 2.15), libgcrypt11 (>= 1.4.5), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libssh-4 (>= 0.3.91), libvte-2.90-9 (>= 1:0.27.2), libx11-6, remmina-common (= 1.0.0-4ubuntu3), dbus-x11 Recommends: remmina-plugin-rdp, remmina-plugin-vnc Breaks: remmina-common (<= 1.0.0-1ubuntu8), remmina-plugin-data (<= 0.9) Filename: pool/main/r/remmina/remmina_1.0.0-4ubuntu3_i386.deb Size: 130390 MD5sum: 380db0ef54b70c60039701eb13137184 SHA1: 08bf2604b5633e5fd9e85177680149b444d945b2 SHA256: db96cca4a58f9c395590da6a3959c80d86a125abccb141f4d18291ff2ff582cb Description: remote desktop client for GNOME desktop environment Homepage: http://remmina.sourceforge.net/ Description-md5: ede6e83246f1eea7dfe2191738034796 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: remmina-common Priority: optional Section: gnome Installed-Size: 316 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: all Source: remmina Version: 1.0.0-4ubuntu3 Replaces: remmina (<< 1.0.0), remmina-plugin-data Recommends: remmina Breaks: remmina (<< 1.0.0), remmina-plugin-data Filename: pool/main/r/remmina/remmina-common_1.0.0-4ubuntu3_all.deb Size: 46482 MD5sum: c55af36bfb807ff6a045ee0c7d5001a8 SHA1: b5b00aebc36240f31c57763dd249965a14f84ef5 SHA256: 9cd8b1d8b7a0980d1749e00beb8493111ec27885bdf300d00746b8551733c711 Description: common files for remmina remote desktop client Homepage: http://remmina.sourceforge.net/ Description-md5: 2c94cab657a41f75757ef1c7c2865c6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: remmina-plugin-rdp Priority: optional Section: gnome Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: i386 Source: remmina Version: 1.0.0-4ubuntu3 Depends: libc6 (>= 2.15), libcairo2 (>= 1.2.4), libfreerdp1 (>= 1.0~beta5), libglib2.0-0 (>= 2.18.0), libgtk-3-0 (>= 3.0.0), remmina (= 1.0.0-4ubuntu3), libfreerdp-plugins-standard Filename: pool/main/r/remmina/remmina-plugin-rdp_1.0.0-4ubuntu3_i386.deb Size: 30852 MD5sum: f1793bdd0571718c8ed2d4a2ab857c80 SHA1: 11d33ac1acda6a9cc12097f566dfb26f15db0005 SHA256: 337718e69b799c58ba08d5e64d1590f8f52bea1c6826748511c8ae59427bfcac Description: RDP plugin for remmina remote desktop client Homepage: http://remmina.sourceforge.net/ Description-md5: 3b7a9c0ed3895a2728dc9b7e44512ef3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: remmina-plugin-vnc Priority: optional Section: gnome Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: i386 Source: remmina Version: 1.0.0-4ubuntu3 Depends: libc6 (>= 2.15), libcairo2 (>= 1.2.4), libglib2.0-0 (>= 2.18.0), libgtk-3-0 (>= 3.0.0), libvncserver0, remmina (= 1.0.0-4ubuntu3) Filename: pool/main/r/remmina/remmina-plugin-vnc_1.0.0-4ubuntu3_i386.deb Size: 19082 MD5sum: ddc6efb59c16199b298f5d23b9da24b5 SHA1: 05c2468722a84b65228f92155e7cff9ae60a09e0 SHA256: 1dd0ea059a0020ac0bb9b6fcc8d85927b2ab3b75cd0ef4cb706859551cc60997 Description: VNC plugin for remmina remote desktop client Homepage: http://remmina.sourceforge.net/ Description-md5: 08f5c41bc452f5e2718936d67c8390de Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: resolvconf Priority: important Section: net Installed-Size: 241 Maintainer: Ubuntu Developers Original-Maintainer: resolvconf maintainers Architecture: all Version: 1.69ubuntu1 Depends: lsb-base, debconf (>= 0.5) | debconf-2.0, upstart-job Pre-Depends: initscripts (>= 2.88dsf-13.10) Breaks: dhcp3-client (<< 4.1.1-P1-15+squeeze1), dnscache-run Filename: pool/main/r/resolvconf/resolvconf_1.69ubuntu1_all.deb Size: 54652 MD5sum: 6c35bb91e40a1157dfe059995d3ed1dd SHA1: a739a735c119e58be2d290b4db3d1706493519a1 SHA256: ada5d4f75e31c4f5c8b0bf6b75754d0b105427f440ce86317156f4c559cf777f Description: name server information handler Enhances: dhcpcd, dnsmasq, ifupdown, isc-dhcp-client, libc6, network-manager, nscd, pdnsd, ppp, pump, totd, udhcpc Homepage: http://alioth.debian.org/projects/resolvconf/ Description-md5: e009e7114cd0b15ac6dbe0d813ec9472 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: resource-agents Priority: optional Section: admin Installed-Size: 1857 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Version: 1:3.9.3+git20121009-3ubuntu2 Replaces: cluster-agents (<= 1:1.0.4-0ubuntu2), rgmanager (<= 3.0.12-2ubuntu4) Depends: libc6 (>= 2.4), libnet1 (>= 1.1.2.1), libplumb2 (>= 1.0.11+hg2754), cluster-glue, python Conflicts: cluster-agents (<= 1:1.0.4-0ubuntu2), rgmanager (<= 3.0.12-2ubuntu4) Filename: pool/main/r/resource-agents/resource-agents_3.9.3+git20121009-3ubuntu2_i386.deb Size: 432514 MD5sum: a15da600f22e769ef7f983c80e1cfab2 SHA1: 16fbdeba824450a4c0efa089eb6fcf718343802b SHA256: ef7fc6a7bbab3d9831fdc87bca49cb57220c55600757ddab33745fb65f7d231b Description: Cluster Resource Agents Homepage: https://github.com/ClusterLabs/resource-agents Description-md5: 044387721d4cb3666ace07a7d8595018 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: resource-agents-dev Priority: optional Section: admin Installed-Size: 40 Maintainer: Ubuntu Developers Original-Maintainer: Debian HA Maintainers Architecture: i386 Source: resource-agents Version: 1:3.9.3+git20121009-3ubuntu2 Depends: resource-agents (= 1:3.9.3+git20121009-3ubuntu2) Filename: pool/main/r/resource-agents/resource-agents-dev_3.9.3+git20121009-3ubuntu2_i386.deb Size: 2786 MD5sum: 3ed5d2afdf9d097bc4efe632ab39fc3a SHA1: 64c432213adbe22a73957e229cdcb2e226968914 SHA256: 51e2515afe0c6ecbf28744d15075d4dfef67525da86977be450286a2d3ddcc25 Description: Cluster Resource Agents Development files Homepage: https://github.com/ClusterLabs/resource-agents Description-md5: 0e8eeb46e3957b7761a30504784781e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rfkill Priority: optional Section: utils Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Darren Salt Architecture: i386 Version: 0.5-1ubuntu1 Depends: libc6 (>= 2.4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Filename: pool/main/r/rfkill/rfkill_0.5-1ubuntu1_i386.deb Size: 9218 MD5sum: a0a9709a0f819d390ccdbfacfd775b85 SHA1: 6e4226e7bad9222e1250709c7b8cc9a876d11e97 SHA256: 7775e0d259db8543f24ae223b3ee34b41deddde5c6eef1507485da63423ccd47 Description: tool for enabling and disabling wireless devices Homepage: http://wireless.kernel.org/en/users/Documentation/rfkill Description-md5: 48e9b79e886753d4ba57709f7daac2b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: rhino Priority: optional Section: interpreters Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 1.7R4-2 Depends: default-jre-headless (>= 1.5) | java5-runtime-headless, libjline-java, librhino-java (= 1.7R4-2) Suggests: librhino-java-doc Filename: pool/main/r/rhino/rhino_1.7R4-2_all.deb Size: 14420 MD5sum: 20d2f7b81089f0abc0a811fba366e336 SHA1: 0f89001d5c78b4189535610c1975977e4834623c SHA256: f5f60d7c39cfd379e6a89d3321ac331a20475177234fa8029ddb5cfcd9c822c9 Description: JavaScript engine written in Java Homepage: http://www.mozilla.org/rhino/ Description-md5: c0634d81edf27589098e6ab9ae84198f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rhino-doc Priority: optional Section: interpreters Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: rhino Version: 1.7R4-2 Depends: librhino-java-doc Filename: pool/main/r/rhino/rhino-doc_1.7R4-2_all.deb Size: 7814 MD5sum: 1cb0ff2497f04cd3cb049bc9a3b56bdd SHA1: 39d3fd3a59bb1f0d58e72e33556998db4f515f81 SHA256: 66559832a4a504b3cc81829d7d2ed16e4b0ba2984190de4bbc978bf118f98ff0 Description: transitional dummy package for new librhino-java-doc Homepage: http://www.mozilla.org/rhino/ Description-md5: e950996fe61236856ddf3461028fab9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rhythmbox Priority: optional Section: gnome Installed-Size: 936 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.0.2-0ubuntu1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.34.0), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.0.0), libpeas-1.0-0 (>= 1.0.0), librhythmbox-core8 (= 3.0.2-0ubuntu1), libtotem-plparser18 (>= 3.10.0), libx11-6, python3 (>= 3.4~), python3.4, python3 (<< 3.5), rhythmbox-data (= 3.0.2-0ubuntu1), dbus, gstreamer1.0-plugins-base (>= 1.0.6), gstreamer1.0-plugins-good (>= 1.0.6), gnome-icon-theme, gstreamer1.0-x, media-player-info, gir1.2-rb-3.0 (= 3.0.2-0ubuntu1), gir1.2-glib-2.0, gir1.2-gtk-3.0, python-gi Recommends: yelp, avahi-daemon, notification-daemon, gstreamer1.0-pulseaudio, gvfs-backends, rhythmbox-mozilla, rhythmbox-plugins, rhythmbox-plugin-cdrecorder, rhythmbox-plugin-zeitgeist Suggests: gstreamer1.0-plugins-bad, gstreamer1.0-plugins-ugly, gnome-codec-install, gnome-control-center Breaks: gvfs (<< 1.4.1-6) Filename: pool/main/r/rhythmbox/rhythmbox_3.0.2-0ubuntu1_i386.deb Size: 119042 MD5sum: dd785bee8c0e4c8f76f5dc68e3b23ad5 SHA1: 9597002a58e25cc1be7d445f8c6507fe9b75b3b0 SHA256: 966704281b83fcfc1d9a6105849b402036a324edd65807b5b3fdbd1fdea8984a Description: music player and organizer for GNOME Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 263e21c49721f582dd2ee234ff4fedb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-data Priority: optional Section: gnome Installed-Size: 2056 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox (<< 3.0.1), transmageddon (<< 0.20-1ubuntu2) Depends: dconf-gsettings-backend | gsettings-backend Recommends: rhythmbox Breaks: rhythmbox (<< 3.0.1), transmageddon (<< 0.20-1ubuntu2) Filename: pool/main/r/rhythmbox/rhythmbox-data_3.0.2-0ubuntu1_all.deb Size: 383374 MD5sum: 8c7b39dfb06220fc985ff0b9e39cb592 SHA1: 99af70289d0be78ad20c8d2fb8f49a2770534155 SHA256: 19e5d77d0631d800fc13e4f7e3b1063f038dc47ddddae6682455feee783f65b4 Description: data files for rhythmbox Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 42958a23b3c14ae41a3238d088043e3e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-dbg Priority: extra Section: gnome Installed-Size: 3493 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: rhythmbox Version: 3.0.2-0ubuntu1 Depends: rhythmbox (= 3.0.2-0ubuntu1) Recommends: libgstreamer1.0-0-dbg, gstreamer1.0-plugins-base-dbg, gstreamer1.0-plugins-good-dbg Suggests: gstreamer1.0-plugins-ugly-dbg Filename: pool/main/r/rhythmbox/rhythmbox-dbg_3.0.2-0ubuntu1_i386.deb Size: 2596542 MD5sum: 99831a5cc204fecb32266529691aa80e SHA1: b8f4ba95c60b281798ba5ac02e530e3e00df3619 SHA256: a208781efab4a87e2873fa5bfcdbcff72f8de87dddff00fa6614431e6be906c0 Description: debugging symbols for rhythmbox Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 87449e19f7d68646c43a7a4928c93ea8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rhythmbox-dev Priority: extra Section: devel Installed-Size: 1907 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: rhythmbox Version: 3.0.2-0ubuntu1 Depends: librhythmbox-core8 (= 3.0.2-0ubuntu1), gir1.2-rb-3.0 (= 3.0.2-0ubuntu1), libglib2.0-dev, libgtk-3-dev, libsoup-gnome2.4-dev, libtotem-plparser-dev, libgstreamer1.0-dev Suggests: rhythmbox-doc Filename: pool/main/r/rhythmbox/rhythmbox-dev_3.0.2-0ubuntu1_i386.deb Size: 115880 MD5sum: 48acedee0dc7ce74c1a9e1739fe49ffe SHA1: 7a416680e582d63c62095512414a375aacee9ce3 SHA256: d3595caee0d45b125d2bd500febbdc8b6c9413cb33ecbb2eea0a09e0b68405bd Description: development files for the rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: c2b22526bec8776ff3c82b23bb9c5514 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rhythmbox-doc Priority: optional Section: doc Installed-Size: 2780 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: rhythmbox Version: 3.0.2-0ubuntu1 Suggests: devhelp Filename: pool/main/r/rhythmbox/rhythmbox-doc_3.0.2-0ubuntu1_all.deb Size: 207648 MD5sum: 8655c3baac4c109a752a2a50596da8d1 SHA1: d543315220fa2aa4294bd1788e1c7cf8e3825d5e SHA256: 615aed3fc9b9098720af8eecf24eaba4dfb358b1bfd94717c0b533016df19127 Description: documentation files for the rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: a97112a3c772c0bd4dfbf1c630192f3c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rhythmbox-mozilla Priority: optional Section: web Installed-Size: 442 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox (<< 2.95.5) Depends: libc6 (>= 2.1.3), rhythmbox (= 3.0.2-0ubuntu1) Recommends: firefox | epiphany-browser | www-browser Breaks: rhythmbox (<< 2.95.5) Filename: pool/main/r/rhythmbox/rhythmbox-mozilla_3.0.2-0ubuntu1_i386.deb Size: 5562 MD5sum: 8e8803eb3dff4e7846835638c6a4472d SHA1: 2781a7cc6b8f005dda11ae8a5fbf6b3a63c3d74c SHA256: 213bde4e2eeeb947f9ee5867232accced834db1704cb77fd71b0dc412664c0d9 Description: Rhythmbox Mozilla plugin Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: b59fc305370687a3b59585aeaa21d11c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-plugin-cdrecorder Priority: optional Section: gnome Installed-Size: 468 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox (<< 0.12.6-4) Depends: libbrasero-media3-1 (>= 3.0.0), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.34.0), libgtk-3-0 (>= 3.6.0), librhythmbox-core8 (>= 3.0), rhythmbox (= 3.0.2-0ubuntu1) Breaks: rhythmbox (<< 0.12.6-4) Filename: pool/main/r/rhythmbox/rhythmbox-plugin-cdrecorder_3.0.2-0ubuntu1_i386.deb Size: 13998 MD5sum: df3541983f62d8a1a59306ec081666c8 SHA1: e60291b5b480106b7627978aece6a98e4fb25b99 SHA256: c6719e6d2c9a3c3f577adb6266fe15779b0e7fa57697a6da1385ff0e33868581 Description: burning plugin for rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 2cf45d2d5fa6dfedb6016b170eb884a9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-plugin-magnatune Priority: optional Section: gnome Installed-Size: 540 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox-plugins (<< 2.95.5) Depends: rhythmbox (= 3.0.2-0ubuntu1), gir1.2-glib-2.0, gir1.2-gnomekeyring-1.0, gir1.2-gtk-3.0, gir1.2-peas-1.0, gir1.2-secret-1 Breaks: rhythmbox-plugins (<< 2.95.5) Filename: pool/main/r/rhythmbox/rhythmbox-plugin-magnatune_3.0.2-0ubuntu1_i386.deb Size: 22176 MD5sum: 914b6f2f2662ce3c710d6a6c819eeb3f SHA1: b6a667d475667124c964b81119266f3e7deb6279 SHA256: e2109f78730ff1dcf7172f8d0d1b2c22342475090686b98f134fcc5baf8dfc13 Description: Magnatune plugin for rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 2ad125e6d8aa99c319445f880abc5307 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-plugin-zeitgeist Priority: optional Section: gnome Installed-Size: 460 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox (<< 2.95.5) Depends: rhythmbox (>= 3.0), rhythmbox (<< 3.1), gir1.2-glib-2.0, gir1.2-peas-1.0, zeitgeist-core Breaks: rhythmbox (<< 2.95.5) Filename: pool/main/r/rhythmbox/rhythmbox-plugin-zeitgeist_3.0.2-0ubuntu1_all.deb Size: 54062 MD5sum: 0798bfa1728dae4319f88a20b7163a03 SHA1: ad9d4485bdf875456d2bdb69823ef5d6898c5610 SHA256: a163f2ac5fbf47e217873e42c624d33fc9a05dd4f02d05862d973d393dbe5a10 Description: zeitgeist plugin for rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: f41e70b13663f39808bfb029033e0aaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rhythmbox-plugins Priority: optional Section: gnome Installed-Size: 1374 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: rhythmbox Version: 3.0.2-0ubuntu1 Replaces: rhythmbox (<< 0.12.6-4) Depends: libc6 (>= 2.4), libdmapsharing-3.0-2 (>= 2.9.12), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgpod4 (>= 0.7.92), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.0.0), libgudev-1.0-0 (>= 146), libjson-glib-1.0-0 (>= 0.12.0), liblircclient0, libmtp9 (>= 1.1.0), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libpeas-1.0-0 (>= 1.0.0), librhythmbox-core8 (= 3.0.2-0ubuntu1), libsecret-1-0 (>= 0.7), libsoup2.4-1 (>= 2.33.92), libtotem-plparser18 (>= 3.10.0), python3.4, python3 (>= 3.4~), python3 (<< 3.5), rhythmbox (= 3.0.2-0ubuntu1), gir1.2-rb-3.0 (= 3.0.2-0ubuntu1), gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-webkit-3.0, gir1.2-peas-1.0, gir1.2-gnomekeyring-1.0, gir1.2-gstreamer-1.0, python-gi, python3-mako Breaks: rhythmbox (<< 0.12.6-4) Filename: pool/main/r/rhythmbox/rhythmbox-plugins_3.0.2-0ubuntu1_i386.deb Size: 205060 MD5sum: 3b7c59a6181ab6be861eeb18dd589799 SHA1: 8220bec85e4a089943937e697ef9a0779d73b1d7 SHA256: 2a3f2d3f4c9fa7b74287d9d123f3a949c80c7948780101fab390dcd6f0164b39 Description: plugins for rhythmbox music player Homepage: http://projects.gnome.org/rhythmbox/ Description-md5: 1578eff573491ee3010556b2dc6019a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: rpcbind Priority: optional Section: net Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: i386 Version: 0.2.1-2ubuntu1 Replaces: portmap Provides: portmap Depends: libc6 (>= 2.16), libtirpc1, libwrap0 (>= 7.6-4~), lsb-base (>= 4.1+Debian3), insserv (>= 1.14.0-2.1) | file-rc, initscripts (>= 2.88dsf-13.3) Conflicts: portmap Filename: pool/main/r/rpcbind/rpcbind_0.2.1-2ubuntu1_i386.deb Size: 35864 MD5sum: c9c08c260b80836e4f3cfa44892a078a SHA1: a9d3339e22b670ad8a018e2c3d83a9a53abfad92 SHA256: c17220bda5f961de60351d98e49dc862543781291c4eb144ebab9370a05dc190 Description: converts RPC program numbers into universal addresses Homepage: http://sourceforge.net/projects/rpcbind/ Description-md5: 595a8e4c17168e18f4843c47dfec5895 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rpm Priority: optional Section: admin Installed-Size: 379 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Version: 4.11.1-3 Replaces: manpages-pl (<< 20051017-1) Depends: libc6 (>= 2.17), libelf1 (>= 0.131), libpopt0 (>= 1.14), librpm3 (>= 4.10.0), librpmbuild3 (>= 4.10.0), librpmio3 (>= 4.10.0), librpmsign1 (>= 4.10.0), perl, rpm2cpio, debugedit (= 4.11.1-3), rpm-common (= 4.11.1-3) Suggests: alien, elfutils, rpm-i18n Breaks: man-db (<< 2.5.0-1), manpages-pl (<< 20051017-1) Filename: pool/main/r/rpm/rpm_4.11.1-3_i386.deb Size: 132204 MD5sum: 65eac469451a31ca6347989e65e9b92f SHA1: 7a8daa9186297443dfe6dccc49a44af959196fd4 SHA256: a8c2107c88a815bb71280adcb60c36e6e3464125b5490a3ed6d74b5ab8045324 Description: package manager for RPM Homepage: http://rpm.org/ Description-md5: b637dea69233214122f83668b1ac634e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rpm-common Priority: optional Section: admin Installed-Size: 423 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: rpm Version: 4.11.1-3 Replaces: librpm0 (<< 4.7.1-1), librpm2, rpm (<< 4.7.1-1) Depends: libc6 (>= 2.3.6-6~), librpm3 (>= 4.10.0), librpmio3 (>= 4.10.0) Breaks: librpm0 (<< 4.7.1-1), librpm2, rpm (<< 4.7.1-1) Filename: pool/main/r/rpm/rpm-common_4.11.1-3_i386.deb Size: 25232 MD5sum: 848a19f2fb66e3ae6262199fbab62e10 SHA1: 9894e7faa53df457e4257d52355a64d5dd5dc779 SHA256: eddf8d3e7065fad143f683f5bcdfde6ab846a4af5d11e007b7d73523551b38f0 Description: common files for RPM Homepage: http://rpm.org/ Description-md5: 281a776fb3c0b33e3fa2befccc935f42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rpm2cpio Priority: optional Section: admin Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Michal Čihař Architecture: i386 Source: rpm Version: 4.11.1-3 Replaces: rpm (<< 4.7.1-1) Depends: libc6 (>= 2.3.4), librpm3 (>= 4.10.0), librpmio3 (>= 4.10.0), rpm-common (= 4.11.1-3) Suggests: rpm-i18n Breaks: rpm (<< 4.7.1-1) Filename: pool/main/r/rpm/rpm2cpio_4.11.1-3_i386.deb Size: 5544 MD5sum: fe6350237750c5a838ea070d459c83b4 SHA1: 9baec7a0ea17fa5b19548219c7d0b898192eb6fa SHA256: d26b5757737a8bf826527477cf3e707061516630f78cfe308fa8ff4a2ee7dff6 Description: tool to convert RPM package to CPIO archive Multi-Arch: foreign Homepage: http://rpm.org/ Description-md5: 40ab460ae975fb68939c5b31c0e7dc8e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rrdtool Priority: extra Section: utils Installed-Size: 831 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: i386 Version: 1.4.7-2ubuntu5 Depends: libc6 (>= 2.8), librrd4 (>= 1.4~rc2) Suggests: librrds-perl Filename: pool/main/r/rrdtool/rrdtool_1.4.7-2ubuntu5_i386.deb Size: 329834 MD5sum: 599225ea324f195b3460ad2528fa6dd4 SHA1: 27566c8e17517dcea00e5c2877cd22d30ea8a29e SHA256: 4cd39e8ecaf32f8dad39103ef2ad2ceba63ca08a6b8f409544d451fe89ddce37 Description: time-series data storage and display system (programs) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: 2f208d113d46aef6f7eebb6f8537a07e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: rrdtool-dbg Priority: extra Section: debug Installed-Size: 1806 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: i386 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: rrdtool (= 1.4.7-2ubuntu5), librrd4 (= 1.4.7-2ubuntu5), libc6 (>= 2.3.6-6~), python-dbg (>= 2.7), python-dbg (<< 2.8) Recommends: librrds-perl (= 1.4.7-2ubuntu5), rrdtool-tcl (= 1.4.7-2ubuntu5), python-rrdtool (= 1.4.7-2ubuntu5), librrd-ruby1.9.1 (= 1.4.7-2ubuntu5), python-all-dbg, liblua5.2-rrd0 (= 1.4.7-2ubuntu5) Filename: pool/main/r/rrdtool/rrdtool-dbg_1.4.7-2ubuntu5_i386.deb Size: 390984 MD5sum: 9d66c4af4d03c24a8da2bab01208232c SHA1: 9bacfefe9019f1d4c8e33db246cbd5b211dc9c2d SHA256: c797156c9a5066baa1e8cfa03360e05e3c3c364880073c0a02d2bd20b0a08461 Description: time-series data storage and display system (debugging symbols) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: b3243f3d6acddd488946a29bc7fb392a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rrdtool-tcl Priority: extra Section: utils Installed-Size: 154 Maintainer: Ubuntu Developers Original-Maintainer: Debian RRDtool Team Architecture: i386 Source: rrdtool Version: 1.4.7-2ubuntu5 Depends: libc6 (>= 2.4), librrd4 (>= 1.4~rc2), tcl8.6 | tclsh Filename: pool/main/r/rrdtool/rrdtool-tcl_1.4.7-2ubuntu5_i386.deb Size: 11852 MD5sum: 8d7780e5581c2d752be2bc834f12cf3b SHA1: 39e2d8b7b0573e9557c0bd35fbc59d47aa1c1191 SHA256: cd88fb680d78f8a224bcbe46fc73325ffd519c051c4ea17311b74d00203397f3 Description: time-series data storage and display system (Tcl interface) Homepage: http://oss.oetiker.ch/rrdtool/ Description-md5: b846eb67771d33328ed170f4f37b5a75 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rsync Priority: standard Section: net Installed-Size: 630 Maintainer: Ubuntu Developers Original-Maintainer: Paul Slootman Architecture: i386 Version: 3.1.0-2 Depends: libacl1 (>= 2.2.51-8), libc6 (>= 2.15), libpopt0 (>= 1.14), zlib1g (>= 1:1.1.4), lsb-base (>= 3.2-14), base-files (>= 4.0.1) Suggests: openssh-client, openssh-server Breaks: duplicity (<< 0.6.11) Filename: pool/main/r/rsync/rsync_3.1.0-2_i386.deb Size: 297878 MD5sum: ed9e8dcdab3484dac16cdf8a0571a214 SHA1: 56d93f0f9fcbdeaee7bd109179fe5939f56b3ffb SHA256: 38fd527a3ca9dcd03dc3f744799f3cb0014b41bd350641f4cbfabc9133e6b500 Description: fast, versatile, remote (and local) file-copying tool Multi-Arch: foreign Homepage: http://rsync.samba.org/ Description-md5: 3bf40f318d2abfed74fa472aaff46d5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-live Package: rsyslog Priority: important Section: admin Installed-Size: 1494 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: i386 Version: 7.4.4-1ubuntu2 Provides: linux-kernel-log-daemon, system-log-daemon Depends: libc6 (>= 2.17), libestr0 (>= 0.1.4), libjson-c2 (>= 0.10), libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4), init-system-helpers (>= 1.13~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 4.1+Debian3), initscripts (>= 2.88dsf-13.3), adduser, ucf Recommends: logrotate Suggests: rsyslog-mysql | rsyslog-pgsql, rsyslog-doc, rsyslog-gnutls, rsyslog-gssapi, rsyslog-relp, apparmor (>= 2.3) Conflicts: linux-kernel-log-daemon, system-log-daemon Filename: pool/main/r/rsyslog/rsyslog_7.4.4-1ubuntu2_i386.deb Size: 351664 MD5sum: 804b07497e617f087959d3ca7a0b2080 SHA1: 9885670da3aca3db19161bc6d372d82d0c28d7b4 SHA256: 1feed635193cdc71901a81b4b418215d1f6c3dd084338bf3fb6b81a5806d96a1 Description: reliable system and kernel logging daemon Homepage: http://www.rsyslog.com/ Description-md5: c25fbd9bcc88ab95bcc33eea4228fd42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: rsyslog-doc Priority: extra Section: doc Installed-Size: 1785 Maintainer: Ubuntu Developers Original-Maintainer: Michael Biebl Architecture: all Source: rsyslog Version: 7.4.4-1ubuntu2 Replaces: rsyslog (<< 2.0.1-2) Suggests: doc-base, www-browser Breaks: rsyslog (<< 2.0.1-2) Filename: pool/main/r/rsyslog/rsyslog-doc_7.4.4-1ubuntu2_all.deb Size: 932038 MD5sum: 09fb33f76ace55090ce773ac487ce862 SHA1: 98711e5d712bc34cb14b9830e5d2e9074616a4f0 SHA256: 42737ce370a8c0ba7a522201a9cf266e6b819fa6c4ae0eaa6dab53b0b1d5e03f Description: documentation for rsyslog Homepage: http://www.rsyslog.com/ Description-md5: 56e2e21af4e89d546589f2ecfa2f6bdc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rtkit Priority: optional Section: admin Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Debian Multimedia Maintainers Architecture: i386 Version: 0.10-3 Depends: adduser, libc6 (>= 2.17), libcap2 (>= 2.10), libdbus-1-3 (>= 1.0.2) Recommends: dbus, policykit-1 Filename: pool/main/r/rtkit/rtkit_0.10-3_i386.deb Size: 35302 MD5sum: 9d261a987cd39e235b6782d63083a164 SHA1: 95139a1512548911748a60d58be2e13736b85466 SHA256: e2f72b584f476bbdfc073dcd13c34314f6449f8445abfbff97f1322ff940fb3a Description: Realtime Policy and Watchdog Daemon Homepage: http://0pointer.de/public/ Description-md5: 49d87b72431bed9d646487053d48658d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ruby Priority: optional Section: interpreters Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: all Source: ruby-defaults Version: 1:1.9.3.4 Replaces: irb, rdoc, ruby1.8, rubygems Provides: irb, rdoc Depends: ruby1.9.1 (>= 1.9.3.194-1) Suggests: ri, ruby-dev Conflicts: irb, rdoc, ruby1.8, rubygems Breaks: apt-listbugs (<< 0.1.6), rbenv (<= 0.4.0-1), ruby-switch (<= 0.1.0), ruby1.9.1 (<< 1.9.3.484-2), ruby2.0 (<< 2.0.0.484-1) Filename: pool/main/r/ruby-defaults/ruby_1.9.3.4_all.deb Size: 5334 MD5sum: 4b0c1d2854ae401ddb96fac3bed67d3a SHA1: 38d7e072abb5a90cf90adf824f8f34bb3ffae548 SHA256: 89008b61543c62710399dd3d3753c89ef048be54b6982ff952b36f513d58cd79 Description: Interpreter of object-oriented scripting language Ruby (default version) Homepage: http://www.ruby-lang.org/ Description-md5: da2991b37e3991230d79ba70f9c01682 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-font-meta Package: ruby-all-dev Priority: optional Section: devel Installed-Size: 44 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: all Source: ruby-defaults Version: 1:1.9.3.4 Depends: ruby1.9.1 (>= 1.9.3.194-1), ruby1.9.1-dev (>= 1.9.3.194-1), ruby2.0 (>= 2.0.0.484-1), ruby2.0-dev (>= 2.0.0.484-1) Filename: pool/main/r/ruby-defaults/ruby-all-dev_1.9.3.4_all.deb Size: 4976 MD5sum: 336ff5ac5489f0d618b2e29bbf9fd7ef SHA1: 727ddce85c6ed1daa863490cd81fe22ce0f53c79 SHA256: 5818e41f7883998c241f0f024ab72ea4c7ef5703348763468ba79f12a2b90a30 Description: Header files for compiling extension modules for Ruby (all versions) Homepage: http://www.ruby-lang.org/ Description-md5: 77a388b71c8d6307217cf265b482186f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-augeas Priority: optional Section: ruby Installed-Size: 96 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: i386 Version: 0.5.0-2 Replaces: libaugeas-ruby (<< 0.5.0-1~), libaugeas-ruby1.8 (<< 0.5.0-1~), libaugeas-ruby1.9.1 (<< 0.5.0-1~) Provides: libaugeas-ruby, libaugeas-ruby1.8, libaugeas-ruby1.9.1 Depends: libaugeas0 (>= 1.1.0-0ubuntu2), libc6 (>= 2.1.3), libruby1.9.1 (>= 1.9.2.0) | libruby2.0 (>= 2.0.0) Breaks: libaugeas-ruby (<< 0.5.0-1~), libaugeas-ruby1.8 (<< 0.5.0-1~), libaugeas-ruby1.9.1 (<< 0.5.0-1~) Filename: pool/main/r/ruby-augeas/ruby-augeas_0.5.0-2_i386.deb Size: 12216 MD5sum: 450d9cbeb48ee53341c5f0f7d18d024f SHA1: d1523ca4f418cc49c842664b54ae088ab21277b4 SHA256: 23ac87c5045e919a8400abcf6484b98390aed3d0cae01c96ab33576f6af1770e Description: Augeas bindings for the Ruby language Homepage: http://augeas.net/ Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 3269a10ed3d3ca1e0a44a9a42c449a53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-blankslate Priority: optional Section: ruby Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.1.2.4-4 Replaces: ruby-builder (<< 3.0.0-2~) Depends: ruby | ruby-interpreter Breaks: ruby-builder (<< 3.0.0-2~) Filename: pool/main/r/ruby-blankslate/ruby-blankslate_2.1.2.4-4_all.deb Size: 4512 MD5sum: 9bdb54866279219af4e996dde1f4c58c SHA1: 9c80476d29b7f0327fd8080169e3b9698aca2292 SHA256: 6cb4b7c0c98deb63199ac04ae72cf50a5033537ee348486e9074104d570653a0 Description: Ruby library providing a class with no predefined methods Homepage: http://github.com/masover/blankslate Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 30b261828d53df14a8d1a6beba2c8a0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-childprocess Priority: optional Section: ruby Installed-Size: 153 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.3.9-2 Depends: ruby | ruby-interpreter, ruby-ffi (>= 1.0.11) Filename: pool/main/r/ruby-childprocess/ruby-childprocess_0.3.9-2_all.deb Size: 20908 MD5sum: 27c1234f6780b342e4c563c62db4ec31 SHA1: 17ad7a71bab1c763cff7d75ec49853740a6740b7 SHA256: d1976cfb136ef58967f9c16c3920a43cd4d6de2a721a3d425468ded1c89cc385 Description: Ruby library for controlling external programs running in the background Homepage: http://github.com/jarib/childprocess Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: bca7a753d4ab21eb86b414e0fd2f383e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-dev Priority: optional Section: devel Installed-Size: 31 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: all Source: ruby-defaults Version: 1:1.9.3.4 Depends: ruby1.9.1-dev (>= 1.9.3.194-1) Filename: pool/main/r/ruby-defaults/ruby-dev_1.9.3.4_all.deb Size: 4660 MD5sum: 6eaacc4c84a10f70991454d3af59f274 SHA1: 49539ddff873fb0c2ee1f800e5fe71c966c9d24b SHA256: c62be9bf3634c49ab3486d2aaf86e0fba69f69f88815a0a0faf750d945db57a6 Description: Header files for compiling extension modules for Ruby (default version) Homepage: http://www.ruby-lang.org/ Description-md5: 5dd7f7cf7836ba22a13959043bfd3e94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-diff-lcs Priority: optional Section: ruby Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 1.2.4-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-diff-lcs/ruby-diff-lcs_1.2.4-1_all.deb Size: 26904 MD5sum: 3e7b052cf68e6f75f4559e482a1a1525 SHA1: dded12f73e5086a18bec1d69e8342b39c206bd92 SHA256: d780a3e5c3716ed104d792b9853b5de5384c7e0cb8e8a5589254c7d63ea3e7fe Description: McIlroy-Hunt longest common subsequence algorithm implementation Homepage: http://rubyforge.org/projects/ruwiki/ Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 2b3aaa6ea461ce5785f9b2787dc26058 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-fakefs Priority: optional Section: ruby Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.4.2-2 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-fakefs/ruby-fakefs_0.4.2-2_all.deb Size: 21162 MD5sum: 4ae9874487ec2e0d6f2dcd61cb5a189b SHA1: 7d2c73e1804dfff07232964f23cb529314365359 SHA256: 5f902b741e40d4de057c520afefcc009a42804ac48bba61fdc72680c2d3fc63b Description: Fake file system to be used in unit tests Homepage: http://github.com/defunkt/fakefs Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 971e23953085c02bdd553a6ad359cfcc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-ffi Priority: optional Section: ruby Installed-Size: 720 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: i386 Version: 1.9.3debian-1ubuntu2 Depends: libc6 (>= 2.4), libffi6 (>= 3.0.10~rc8), libruby1.9.1 (>= 1.9.2.0) | libruby2.0 (>= 2.0.0), ruby | ruby-interpreter Filename: pool/main/r/ruby-ffi/ruby-ffi_1.9.3debian-1ubuntu2_i386.deb Size: 88344 MD5sum: 5d3f7d331f69f3fe01276bcc340041dd SHA1: 7c720b5e63d00e1386641376d05e3ebe65ae7164 SHA256: 8ec9e52d0c98343c2af055a39cdd628e12b692e10c9003776f6790fd01977d84 Description: load dynamic libraries, bind functions from within ruby code Homepage: http://wiki.github.com/ffi/ffi Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: b4df82e157f95546e50c00749ebb0d7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-flexmock Priority: optional Section: ruby Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.9.0-1 Replaces: libflexmock-ruby (<< 0.9.0-1~), libflexmock-ruby1.8 (<< 0.9.0-1~), libflexmock-ruby1.9.1 (<< 0.9.0-1~) Provides: libflexmock-ruby, libflexmock-ruby1.8, libflexmock-ruby1.9.1 Depends: ruby | ruby-interpreter Breaks: libflexmock-ruby (<< 0.9.0-1~), libflexmock-ruby1.8 (<< 0.9.0-1~), libflexmock-ruby1.9.1 (<< 0.9.0-1~) Filename: pool/main/r/ruby-flexmock/ruby-flexmock_0.9.0-1_all.deb Size: 21546 MD5sum: dc16385f69d2d993ee79275911b008e6 SHA1: 71aad4ea96260811dd8777a667390e062f3fbe8f SHA256: 014ffc353cc8a3a335371eb3d89be810ee46a91e3b20d5f11092c585a0e5a67f Description: simple and flexible mock objects for testing Homepage: https://github.com/jimweirich/flexmock Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 7646d3aa760d69d4878bd7464319cba5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-hashie Priority: optional Section: ruby Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.0.3-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-hashie/ruby-hashie_2.0.3-1_all.deb Size: 18328 MD5sum: 593ad2027e4abd0147c20790154894bd SHA1: 2f8f97b4c656415eda0d816a0373316bb03858f8 SHA256: 40d25eb809e9d66728edf7766fbdf24a532b041352e18b673678b2dde4ebca2c Description: small collection of tools that make hashes more powerful Homepage: https://github.com/intridea/hashie Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 1d5ce1465e1e249813b3a57e8f4a33c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-hiera Priority: optional Section: ruby Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 1.3.0-1 Depends: ruby | ruby-interpreter Suggests: mcollective-common (>= 2.0.0), puppet-common (>= 2.6.2) Filename: pool/main/r/ruby-hiera/ruby-hiera_1.3.0-1_all.deb Size: 17478 MD5sum: f8a68892f0950093283cc0b38a81fc8d SHA1: 83c10cd922b6db31702da979e76bc5f0a5090aa6 SHA256: b09a9246656c2de638ef7adcee925aad53bbb62c8e4f055f3261a5de01041d91 Description: Light weight hierarchical data store Homepage: https://github.com/puppetlabs/hiera/ Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 83651e8019625ca6bf22f64e4095c372 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-indentation Priority: optional Section: ruby Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.1.1-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-indentation/ruby-indentation_0.1.1-1_all.deb Size: 6116 MD5sum: ef5bd97db346573266e391381b9cfb05 SHA1: e96585425e87001d3c1a73965009825cf63aad04 SHA256: f0a4ea83bc0ddc230309a16430d618f460810a34ab1771e8b42d26b66668c967 Description: Ruby extensions for Array and String classes Homepage: https://github.com/samueldana/indentation Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: bd454170682319731f470ff9f5f1a0c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-instantiator Priority: optional Section: ruby Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.0.6+git9cbbe70-2 Depends: ruby | ruby-interpreter, ruby-blankslate Filename: pool/main/r/ruby-instantiator/ruby-instantiator_0.0.6+git9cbbe70-2_all.deb Size: 4040 MD5sum: 19fc92edf528d3d9f407ad7457e1727b SHA1: 5d4694163c0c4ba0e2f47dd7749b01a8dc88a9d1 SHA256: 2a93c0d160ee4241285ecd5fe307521af88964ff560a987f9482f699321c8774 Description: Ruby library to instantiate an arbitrary class Homepage: https://github.com/floehopper/instantiator Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 6be59b31a5734d886bee3475f6eadf17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-introspection Priority: optional Section: ruby Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.0.2-2 Depends: ruby | ruby-interpreter, ruby-metaclass (>= 0.0.1~), ruby-instantiator (>= 0.0.3~) Filename: pool/main/r/ruby-introspection/ruby-introspection_0.0.2-2_all.deb Size: 5314 MD5sum: 5a6a0dfdb39a2694c6c7e66a6e3c769c SHA1: 0b574d6d38a093373ffe00c7216ec8ad0ce5dfc6 SHA256: e53f74c4ff1680677478205606aad6af0891c82b9a9c440695ac366724e6c052 Description: Ruby library for the inspection of method definitions on objects Homepage: https://github.com/floehopper/introspection Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 03079289741dc5e4f27b643b9c5fd290 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-json Priority: optional Section: ruby Installed-Size: 315 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: i386 Version: 1.8.0-1build1 Depends: libc6 (>= 2.4), libruby1.9.1 (>= 1.9.2.0) | libruby2.0 (>= 2.0.0), ruby | ruby-interpreter Filename: pool/main/r/ruby-json/ruby-json_1.8.0-1build1_i386.deb Size: 46414 MD5sum: 7e9d72d68f7826f2a81466fb54754b2d SHA1: 65b75705f26ebf2ec6183052f11e7e74bae10eb5 SHA256: dcc0ce5f4c4d1241076a1992bd193a49b13f5b682e788ec13505b9a935303345 Description: JSON library for Ruby Homepage: http://flori.github.com/json Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 580962466871607374425ac53965b45b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-metaclass Priority: optional Section: ruby Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.0.1-2 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-metaclass/ruby-metaclass_0.0.1-2_all.deb Size: 3622 MD5sum: 5f3314dd8dc74083f66cb1ad9ff9111f SHA1: a5ef2ad37637a3dfac6a860d5b81a7009b63fec4 SHA256: b828e99e26f57ad75ef9dd6851fdd5a0427842c1f4b29e3d8a68c8dc42695451 Description: Ruby library adding a metaclass method to all Ruby objects Homepage: http://github.com/floehopper/metaclass Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 3f745e843aba3232efd46dbf6a294f94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-minitest Priority: optional Section: ruby Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 5.2.1-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-minitest/ruby-minitest_5.2.1-1_all.deb Size: 32880 MD5sum: ce753bdf9798451e29ac1e0e651348cf SHA1: 2d19534858002ff7218efa8a6d01a94588393dfb SHA256: 1851998ca8043e1ecd8299e8c8b165d2e4fba08e064cbd6484a3095c00d9d7d5 Description: Ruby test tools supporting TDD, BDD, mocking, and benchmarking Homepage: http://docs.seattlerb.org/minitest/ Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 711e8129451c50c5d22378f07e8095cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-mocha Priority: optional Section: ruby Installed-Size: 275 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.14.0-2ubuntu1 Depends: ruby (>= 1:1.9), ruby-metaclass Suggests: ruby-mocha-doc Filename: pool/main/r/ruby-mocha/ruby-mocha_0.14.0-2ubuntu1_all.deb Size: 35188 MD5sum: a24483f132661545b1782832129b44ee SHA1: 2e9ec25642e4fc967930c8697e92f45c0ceed3da SHA256: 2af4a94a1ab0aec01f6ec98f9b5244abc81ca11defd58d1158d5c17dcb49006e Description: Mocking and stubbing library for Ruby Homepage: http://mocha.rubyforge.org/ Description-md5: fb69674beb79c60a99238172a3f2726e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-nokogiri Priority: optional Section: ruby Installed-Size: 600 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: i386 Version: 1.6.1+ds-1 Depends: libc6 (>= 2.3.4), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.25), libruby1.9.1 (>= 1.9.2.0) | libruby2.0 (>= 2.0.0), ruby | ruby-interpreter Filename: pool/main/r/ruby-nokogiri/ruby-nokogiri_1.6.1+ds-1_i386.deb Size: 93182 MD5sum: 8676944ef3620c6f87ea44b55c655386 SHA1: de02ba8d01fa9ad4d408e5a32035b41c0b9f64eb SHA256: 59ad9394ac76c497eebac60bd4131ed6926cf4ab73ca618f38475fd526baf25f Description: HTML, XML, SAX, and Reader parser for Ruby Homepage: http://nokogiri.org Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 8b5216e340ca3509e38f4420fb6ca92a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-rgen Priority: optional Section: ruby Installed-Size: 446 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 0.6.6-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-rgen/ruby-rgen_0.6.6-1_all.deb Size: 68744 MD5sum: 67de97e6da5f5a2d394890dfb0aa2203 SHA1: f7b8d4b565897416a19eecfec98a6f541d967694 SHA256: 8e88efaa5bea3b5609552ece16ff0f72b96a5468709b2bbbd9d62a20857df404 Description: Ruby Modelling and Generator Framework Homepage: http://ruby-gen.org Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: f74fd1be681c8df5d755c4c18e840e83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-rspec Priority: optional Section: ruby Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.14.1-1 Depends: ruby | ruby-interpreter, ruby-rspec-core (>= 2.14~) Filename: pool/main/r/ruby-rspec/ruby-rspec_2.14.1-1_all.deb Size: 4996 MD5sum: 558dd16de71e342a4e01b910bb0170b5 SHA1: 6de846ff4d2fbdc45389610a2a159e7f53a50e3e SHA256: 5864eb043598e7df867baae38cee72da19d9f761ae90194278e4ff63d5a53bad Description: Behaviour Driven Development framework for Ruby - metapackage Homepage: https://github.com/rspec/rspec Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: f6d16115e98f2dabcbf90a24c94d9515 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-rspec-core Priority: optional Section: ruby Installed-Size: 556 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.14.7-2 Depends: ruby | ruby-interpreter, ruby-rspec-expectations (>= 2.14~), ruby-rspec-mocks (>= 2.14~) Suggests: ruby-rspec Filename: pool/main/r/ruby-rspec-core/ruby-rspec-core_2.14.7-2_all.deb Size: 96968 MD5sum: 22310d98b74efc8a7af26ff8436fb7e9 SHA1: c1d3b63ff3d1b300684b089fe5813290859ce318 SHA256: ce1702d77da7c3f3e29003197a836718ad708f3b1f3d46be6f9700b7f21f12ac Description: Behaviour Driven Development framework for Ruby - core Homepage: https://github.com/rspec/rspec-core Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 3509b48f952fc261333f21f1ce3a5bce Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-rspec-expectations Priority: optional Section: ruby Installed-Size: 298 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.14.2-1 Depends: ruby | ruby-interpreter, ruby-diff-lcs Suggests: ruby-rspec Filename: pool/main/r/ruby-rspec-expectations/ruby-rspec-expectations_2.14.2-1_all.deb Size: 57928 MD5sum: 366d040c4275b0f4396614d2810f9c14 SHA1: d013f66c5fe484bcbe41c00c57dcd3a645638920 SHA256: 917bcf049c3b3efb4720ed17e0ecc4bbb2339f81cc496697ab58c5a2d05640fd Description: Behaviour Driven Development framework for Ruby - expectations Homepage: https://github.com/rspec/rspec-expectations Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 9d88daafd57037c6be08f060b1de929a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-rspec-mocks Priority: optional Section: ruby Installed-Size: 329 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.14.3-1 Depends: ruby | ruby-interpreter Suggests: ruby-rspec Filename: pool/main/r/ruby-rspec-mocks/ruby-rspec-mocks_2.14.3-1_all.deb Size: 52678 MD5sum: f3c5247eac6204881b2d71050ee2b19f SHA1: b1c4ee76bca44dff41324950eeeda94f9e345345 SHA256: ef78db593ac289f9d15da91362b663789f4b6ed681ae146fb0e8d0d20f97d7b6 Description: Behaviour Driven Development framework for Ruby - mocks Homepage: https://github.com/rspec/rspec-mocks Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: b09b29822254e67d642b6a48f96af0e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-safe-yaml Priority: optional Section: ruby Installed-Size: 107 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 1.0.1-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-safe-yaml/ruby-safe-yaml_1.0.1-1_all.deb Size: 16096 MD5sum: fd4d67cea663933a8adb2792d94a868c SHA1: 6b3b25dd58a6ee52757d166306aede1be7638628 SHA256: c828cfe037ba8b612aaf3807f137037e59b5174a2d8467516400c1a15638e9b7 Description: safer YAML loader for Ruby Homepage: https://github.com/dtao/safe_yaml Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: 87ef20c0af818e65bcbb5234b8e73e88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-session Priority: optional Section: ruby Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 3.1.0-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-session/ruby-session_3.1.0-1_all.deb Size: 12694 MD5sum: e402409371592a7a201c4e1453e60b46 SHA1: eeb43dd4a00a89b47445c0b51d66ee00bd277f85 SHA256: fcfe86cfe4ed93512e3307400db38f947f8cf688ff90cecd5f4462e8736e8cc5 Description: offers a set of classes for driving external programs via pipes Homepage: http://github.com/ahoward/session/tree/master Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 5a128b3b39b9f50a2fb2a46880d1c3ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-setup Priority: optional Section: ruby Installed-Size: 150 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 3.4.1-7 Replaces: libsetup-ruby1.8 (<< 3.4.1-5~) Provides: libsetup-ruby1.8 Depends: ruby | ruby-interpreter Breaks: libsetup-ruby1.8 (<< 3.4.1-5~) Filename: pool/main/r/ruby-setup/ruby-setup_3.4.1-7_all.deb Size: 35338 MD5sum: b3ee1162cdd78e6641d3dcdaf77c8b99 SHA1: d870dc1af60a1da0ea987ba2ac0d6a9c0e8540c2 SHA256: 4312e3ef0c8782b306b5b5d3d2ce76264ca53d69371cb6c3fb6e3d44efec3d22 Description: the setup.rb install tool for Ruby Homepage: http://i.loveruby.net/en/projects/setup/ Description-md5: e55b6dfb6217d430c99cb3a45de38cb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-shadow Priority: extra Section: ruby Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: i386 Version: 2.2.0-1 Depends: libc6 (>= 2.1.3), libruby1.9.1 (>= 1.9.2.0) | libruby2.0 (>= 2.0.0) Filename: pool/main/r/ruby-shadow/ruby-shadow_2.2.0-1_i386.deb Size: 10784 MD5sum: 23567d2e58dfdf1603a685107f0f4bfc SHA1: 0e28a6d25f823dce7d3d6e4a18cdad5300206280 SHA256: 5ed517871956291f0f8adb48a34f2812f78f8737ac2a903273ab715474c9da80 Description: interface of shadow password for Ruby Homepage: https://github.com/apalmblad/ruby-shadow Ruby-Versions: ruby1.9.1 ruby2.0 Description-md5: c0ecb4ff53eab6b100e72419acd9e245 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ruby-shoulda-context Priority: optional Section: ruby Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 1.1.2-1 Depends: ruby | ruby-interpreter Conflicts: libshoulda-ruby (<< 3.0.0~beta2-1~), libshoulda-ruby1.8 (<< 3.0.0~beta2-1) Filename: pool/main/r/ruby-shoulda-context/ruby-shoulda-context_1.1.2-1_all.deb Size: 13502 MD5sum: c457c76336c9300de55df44a46145cec SHA1: 046ca2672bddb284ff37571ff373069ff28c2e1e SHA256: 1d6699a6d9c05c9d35e17998157bd3bd0b997b7352b5026b7a5c98cec325bc0c Description: context framework for Test::Unit Homepage: https://github.com/thoughtbot/shoulda-context Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 1a8f7e85ad8dddb8a1127a8c769cb86f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby-test-unit Priority: optional Section: ruby Installed-Size: 394 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 2.5.5-1 Depends: ruby | ruby-interpreter Filename: pool/main/r/ruby-test-unit/ruby-test-unit_2.5.5-1_all.deb Size: 68308 MD5sum: 3df17225456f8a47b860813ed60c4865 SHA1: 7e7eefbce6b5d55cf683f06b26d596354d56f919 SHA256: 99e2cb61d27fc553eb3498e408b56ce46885ee17b726b467aaf682671fdca0ce Description: Improved version of Test::Unit library initially bundled in Ruby 1.8 Homepage: http://test-unit.rubyforge.org/ Ruby-Versions: ruby1.8 ruby1.9.1 Description-md5: 0107558f01969d1f38c028384870d88f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby1.9.1 Priority: optional Section: ruby Installed-Size: 275 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: i386 Version: 1.9.3.484-2ubuntu1 Replaces: irb1.9.1, rdoc1.9.1, rubygems1.9.1 Provides: irb1.9.1, rdoc1.9.1, ruby-interpreter, rubygems1.9.1 Depends: ruby (>= 1:1.9.3.1), libruby1.9.1 (= 1.9.3.484-2ubuntu1), libc6 (>= 2.0) Suggests: ruby1.9.1-examples, ri1.9.1, graphviz, ruby1.9.1-dev, ruby-switch Conflicts: irb1.9.1 (<< 1.9.1.378-2~), rdoc1.9.1 (<< 1.9.1.378-2~), ri (<= 4.5), ri1.9.1 (<< 1.9.2.180-3~), ruby (<= 4.5), rubygems1.9.1 Filename: pool/main/r/ruby1.9.1/ruby1.9.1_1.9.3.484-2ubuntu1_i386.deb Size: 35592 MD5sum: d82ab9a5959be49695f52c4dcc260641 SHA1: ae262678204d48ac5a999785cd9eeb94fc299c91 SHA256: 6ea50c39b55ad464d8388b43e6818c1aaf26df2592862921dfb84967a3d0a33e Description: Interpreter of object-oriented scripting language Ruby Homepage: http://www.ruby-lang.org/ Description-md5: 5a3bebf22800260bf542248151806d7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-font-meta Package: ruby1.9.1-dev Priority: optional Section: ruby Installed-Size: 3476 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: i386 Source: ruby1.9.1 Version: 1.9.3.484-2ubuntu1 Depends: libruby1.9.1 (= 1.9.3.484-2ubuntu1), libc6-dev Recommends: ruby1.9.1 (= 1.9.3.484-2ubuntu1) Filename: pool/main/r/ruby1.9.1/ruby1.9.1-dev_1.9.3.484-2ubuntu1_i386.deb Size: 886854 MD5sum: 721bd88b20c9220818825a061e883f98 SHA1: ef84ad402ce4ff6509fea1b004f0d7210927d212 SHA256: aa6f9fca601e25cd51b2b651170aaaa16faa0a9243c7dfbb01043c771a2fa3fd Description: Header files for compiling extension modules for the Ruby 1.9.1 Homepage: http://www.ruby-lang.org/ Description-md5: fe8ab5416b13f294f4b46835c51da0b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby1.9.1-examples Priority: optional Section: ruby Installed-Size: 447 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: all Source: ruby1.9.1 Version: 1.9.3.484-2ubuntu1 Suggests: ruby1.9.1 (>= 1.9.3.484-2ubuntu1) Filename: pool/main/r/ruby1.9.1/ruby1.9.1-examples_1.9.3.484-2ubuntu1_all.deb Size: 66160 MD5sum: 11121085d151db8caa6aa11655e9b11f SHA1: c8818d6c57fa6c2972e201854e584514e5ff5630 SHA256: 33d7b6e958a0e8ff5448f17fff26ddff37c695b5fcde82424111ac74987b7fa0 Description: Examples for Ruby 1.9 Homepage: http://www.ruby-lang.org/ Description-md5: f8048bc94c205859758877fee5353b32 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby2.0 Priority: extra Section: ruby Installed-Size: 123 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: i386 Version: 2.0.0.484-1ubuntu2 Provides: ruby-interpreter Depends: libc6 (>= 2.0), libruby2.0 (>= 2.0.0), ruby (>= 1:1.9.3.1), rubygems-integration Filename: pool/main/r/ruby2.0/ruby2.0_2.0.0.484-1ubuntu2_i386.deb Size: 66462 MD5sum: 01556dc1c1dd6af26a90bfe239bca273 SHA1: e1622bed6237e6dbdd968fa6f634a2f695e1bfaf SHA256: 43b433aa216dcd78462b3bd0721925023c9307e8407f281bdc4efccf35a31163 Description: Interpreter of object-oriented scripting language Ruby Multi-Arch: foreign Homepage: http://www.ruby-lang.org/ Description-md5: 6fd1f6a3eb6ef6fd597aa106ac5a6e3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby2.0-dev Priority: extra Section: ruby Installed-Size: 3502 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: i386 Source: ruby2.0 Version: 2.0.0.484-1ubuntu2 Filename: pool/main/r/ruby2.0/ruby2.0-dev_2.0.0.484-1ubuntu2_i386.deb Size: 910714 MD5sum: ee19d4cf0b2f1360b6b81d0ee67005b4 SHA1: 9d5c6f5cbcc47286403e87d2596872a5891d07b0 SHA256: 3ad3839e8458fe47458440cb377ac45b0095c3bf3949e5800564dc0085bbf422 Description: Header files for compiling extension modules for the Ruby 2.0 Multi-Arch: same Homepage: http://www.ruby-lang.org/ Description-md5: c38afc65a96bc689dea664a5b35d1d7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ruby2.0-doc Priority: extra Section: doc Installed-Size: 22481 Maintainer: Ubuntu Developers Original-Maintainer: Antonio Terceiro Architecture: all Source: ruby2.0 Version: 2.0.0.484-1ubuntu2 Filename: pool/main/r/ruby2.0/ruby2.0-doc_2.0.0.484-1ubuntu2_all.deb Size: 2989860 MD5sum: a52b36db68cb6da25d127f7b0ef9c1ff SHA1: 2686ccb10521d671771ad6b631a06548af7ecbba SHA256: 1a1c181bce136d83cb8cd70005a64dc5870d30d722295ec7b39c5836efae06df Description: Documentation for Ruby 2.0 Homepage: http://www.ruby-lang.org/ Description-md5: 8970af707cf5c913fa71bcef42f5bb72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: rubygems-integration Priority: optional Section: ruby Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Ruby Extras Maintainers Architecture: all Version: 1.5 Depends: ruby | ruby-interpreter Suggests: bundler Filename: pool/main/r/rubygems-integration/rubygems-integration_1.5_all.deb Size: 5340 MD5sum: 4fd9a6b8fcd6cac0935d416bef4c0089 SHA1: 3c7e8e5100bdbb2bca25f44f22f5bb04d1ed965c SHA256: 0503d6f91fbc1b9baf26efa8aac9b31e7add29e31e54a062670ca13aae9af7bb Description: integration of Debian Ruby packages with Rubygems Multi-Arch: foreign Description-md5: 7794ebc95660cf77d6ecbabdf4c28d1d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: run-one Priority: optional Section: admin Installed-Size: 44 Maintainer: Dustin Kirkland Architecture: all Version: 1.17-0ubuntu1 Replaces: bikeshed (<< 1.8) Depends: procps Breaks: bikeshed (<< 1.8) Filename: pool/main/r/run-one/run-one_1.17-0ubuntu1_all.deb Size: 5760 MD5sum: 3fe7ffe5a6bd1e0992b1dd6026350178 SHA1: 7e6a3a1ab91b4191c878f5cfeb3e1997f94ea519 SHA256: 34e79797dc80f78d7acffce962f462c1213b9f4f39adafdf91298d6e715233e7 Description: run just one instance of a command and its args at a time Enhances: anacron, cron Homepage: http://launchpad.net/run-one Description-md5: 6dcd8daa2b48dec55ff2f5d2883be1d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-usb Package: sa-compile Priority: optional Section: mail Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: all Source: spamassassin Version: 3.4.0-1ubuntu1 Depends: spamassassin (>= 3.3.2-8), re2c, gcc, libc6-dev, make Conflicts: spamassassin (<= 3.3.2-7) Filename: pool/main/s/spamassassin/sa-compile_3.4.0-1ubuntu1_all.deb Size: 13770 MD5sum: 9cc4b73380de9a29de100dcf64679f7e SHA1: 4e02e47c67c7c19393f79103f9e4b44a96282407 SHA256: 9c0bae1284d7760f4db7945ea5956620dc050a1a165995bc86b009c461da4018 Description: Tools for compiling SpamAssassin rules into C Enhances: spamassassin Homepage: http://www.spamassassin.org/ Description-md5: 4b3f9d42fcff1aff87d28f86f9496c4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: samba Priority: optional Section: net Installed-Size: 11090 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: libsamdb0 (<< 4.0.0~alpha17~), python-samba (<< 2:4.1.4+dfsg-3), samba-ad-dc, samba-common (<= 2.0.5a-2), samba-doc (<< 2:4.0.5~), samba-libs (<< 2:4.1.4+dfsg-2), samba4 Depends: adduser, heimdal-hdb-api-8, libpam-modules, libpam-runtime (>= 1.0.1-11), lsb-base (>= 4.1+Debian), procps, python (>= 2.7), python-dnspython, python-ntdb, python-samba, samba-common (= 2:4.1.6+dfsg-1ubuntu2), samba-common-bin (= 2:4.1.6+dfsg-1ubuntu2), samba-dsdb-modules, tdb-tools, update-inetd, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python (<< 2.8), python2.7:any, libasn1-8-heimdal (>= 1.4.0+git20110226), libbsd0 (>= 0.5.0), libc6 (>= 2.8), libcomerr2 (>= 1.01), libhdb9-heimdal (>= 1.4.0+git20110226), libkdc2-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.4.0+git20110226), libldb1 (>= 0.9.21), libpopt0 (>= 1.14), libpython2.7 (>= 2.7), libroken18-heimdal (>= 1.4.0+git20110226), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.14), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~), multiarch-support Recommends: attr, logrotate, samba-vfs-modules Suggests: bind9 (>= 1:9.5.1), bind9utils, ldb-tools, ntp, smbldap-tools, winbind, ufw Conflicts: libldb1 (<< 1:1.1.15), samba (<< 2:3.3.0~rc2-5), samba-ad-dc, samba-doc (<< 2:4.0.5~), samba-tools, samba4 (<< 4.0.0~alpha6-2) Filename: pool/main/s/samba/samba_4.1.6+dfsg-1ubuntu2_i386.deb Size: 841368 MD5sum: f7cc958ff280a940192b538a79429f21 SHA1: 1203a73efd314dbf5c3eb6a01c89c9a7326f61b9 SHA256: 629c7820f288175a6b5057b665aebda3365b7474f063d163c6264e7b92895fa9 Description: SMB/CIFS file, print, and login server for Unix Enhances: bind9, ntp Homepage: http://www.samba.org Description-md5: 3dcec89b7baaa655b2536933cdaeab54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-audio Package: samba-common Priority: optional Section: net Installed-Size: 638 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: all Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: samba (<< 3.0.20b-1), samba-doc (<< 2:4.0.5~), samba4-common (<< 4.0.0~alpha7-1) Depends: ucf, debconf (>= 0.5) | debconf-2.0 Pre-Depends: dpkg (>= 1.15.6~) Recommends: samba-common-bin Conflicts: samba-doc (<< 2:4.0.5~), samba4-common (<< 4.0.0~alpha7-1), swat Filename: pool/main/s/samba/samba-common_4.1.6+dfsg-1ubuntu2_all.deb Size: 157508 MD5sum: 42eee31c1cf67d85cb7a1889d9102cfb SHA1: 20e1ca9c4885c0f643c4861cd9f9798616f10b01 SHA256: 595e0f97a80d9b2abc596adbde70cf5c7bcffbe122f4b17d2efd9ece2b26ddf3 Description: common files used by both the Samba server and client Multi-Arch: foreign Homepage: http://www.samba.org Description-md5: a4083020b891e75d279ca48e7fd18d7b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: samba-common-bin Priority: optional Section: net Installed-Size: 1544 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: python-samba (<< 2:4.0.6~), samba-common (<< 2:3.4.0~pre2-1), samba-doc (<< 2:4.0.5~), samba4-common (<< 4.0.0~alpha7-1), samba4-common-bin Depends: python, python-samba, samba-common (= 2:4.1.6+dfsg-1ubuntu2), python2.7:any, libbsd0 (>= 0.0), libc6 (>= 2.8), libcomerr2 (>= 1.01), libgssapi3-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.4.0+git20110226), libldap-2.4-2 (>= 2.4.7), libncurses5 (>= 5.5-5~), libpopt0 (>= 1.14), libreadline6 (>= 6.0), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.12), libtinfo5, libwbclient0 (>= 2:4.0.3+dfsg1), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Suggests: heimdal-clients Conflicts: samba (<< 2:3.3.0~rc2-5), samba-common (<< 2:3.3.0~rc2-5), samba-doc (<< 2:4.0.5~) Filename: pool/main/s/samba/samba-common-bin_4.1.6+dfsg-1ubuntu2_i386.deb Size: 489840 MD5sum: 6d10ebc8a57c86d4b20c48c195141062 SHA1: 404fa1fb73e567ddeed31be3c6042c88a89c03bf SHA256: bcc89a3853ab7f3fade3f4a3ae8a316f6bc58243c20f90437418ed77afe79c55 Description: Samba common files used by both the server and the client Homepage: http://www.samba.org Description-md5: 6b72087bfb045af08aa7c187e95870e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: samba-dbg Priority: extra Section: devel Installed-Size: 30029 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Depends: samba (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/samba/samba-dbg_4.1.6+dfsg-1ubuntu2_i386.deb Size: 25099190 MD5sum: e2a455626553854a7303c1fb5687ba1b SHA1: 7a95229c80169c020f5a6aba374357d9a941e922 SHA256: c2c0721a714614c2b64dc4d6589a4138c7c5c88b896a5f8b832f6e2a3eef693c Description: Samba debugging symbols Homepage: http://www.samba.org Description-md5: f3ad98b58579564228dc9b95ecaca46a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: samba-dev Priority: optional Section: devel Installed-Size: 1621 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: libdcerpc-dev (<< 2:4.0.9), libdcerpc-server-dev (<< 2:4.0.9), libgensec-dev (<< 2:4.0.9), libndr-dev (<< 2:4.0.9), libndr-standard-dev (<< 2:4.0.9), libnetapi-dev (<< 2:4.0.9), libregistry-dev (<< 2:4.0.9), libsamba-credentials-dev (<< 2:4.0.9), libsamba-hostconfig-dev (<< 2:4.0.9), libsamba-policy-dev (<< 2:4.0.9), libsamba-util-dev (<< 2:4.0.9), libsamdb (<< 2:4.0.9), libsmbclient-raw-dev (<< 2:4.0.9), libsmbd-dev (<< 2:4.0.9), libtorture-dev (<< 2:4.0.9), samba4-dev Depends: libc6-dev, libldb-dev, libparse-pidl-perl, libpopt-dev, libtalloc-dev, libtdb-dev (>= 1.2.11), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Breaks: libdcerpc-dev (<< 2:4.0.9), libdcerpc-server-dev (<< 2:4.0.9), libgensec-dev (<< 2:4.0.9), libndr-dev (<< 2:4.0.9), libndr-standard-dev (<< 2:4.0.9), libnetapi-dev (<< 2:4.0.9), libregistry-dev (<< 2:4.0.9), libsamba-credentials-dev (<< 2:4.0.9), libsamba-hostconfig-dev (<< 2:4.0.9), libsamba-policy-dev (<< 2:4.0.9), libsamba-util-dev (<< 2:4.0.9), libsamdb (<< 2:4.0.9), libsmbclient-raw-dev (<< 2:4.0.9), libsmbd-dev (<< 2:4.0.9), libtorture-dev (<< 2:4.0.9) Filename: pool/main/s/samba/samba-dev_4.1.6+dfsg-1ubuntu2_i386.deb Size: 205298 MD5sum: 37207fc5efb6778c50f78bfb5fef8608 SHA1: c7859a9b2f78acf4e421444bded723cd19f37035 SHA256: 12ead5641757e44cf8e22cc7bdad3254055e76155a4322d6d66e468b1e5a65bb Description: tools for extending Samba Homepage: http://www.samba.org Description-md5: 678af7403e4adfc0bf6dff29b8732ec0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: samba-doc Priority: optional Section: doc Installed-Size: 617 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: all Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/s/samba/samba-doc_4.1.6+dfsg-1ubuntu2_all.deb Size: 212452 MD5sum: f866238e6b15cced63f859309e0b9770 SHA1: ecd8bf43bfaa965ad10772d4eeb878aa35fdc5c2 SHA256: a2dd5d9e3a25c6e130c0f46403db2b1ef6fec6ffd27039636a43145641700693 Description: Samba documentation Multi-Arch: foreign Homepage: http://www.samba.org Description-md5: a1387f8cc1d08703eda6643a30c8ae71 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server Package: samba-dsdb-modules Priority: optional Section: libs Installed-Size: 1052 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: libgensec0 (<< 4.0.0~alpha17~git20110724.dfsg1-1) Depends: libbsd0 (>= 0.0), libc6 (>= 2.4), libcomerr2 (>= 1.01), libkrb5-26-heimdal (>= 1.4.0+git20110226), libldb1 (>= 1:1.1.6), libpopt0 (>= 1.14), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Filename: pool/main/s/samba/samba-dsdb-modules_4.1.6+dfsg-1ubuntu2_i386.deb Size: 214200 MD5sum: 96ae883fd966ab3eac334b018359296c SHA1: 6cb4adedd71b9d89f493914d01572d9dcf9c483c SHA256: 554dfc401cbd05058a0ba3a65676b3ef369b5a099a4440ba5b07ec63269772c2 Description: Samba Directory Services Database Enhances: libldb1 Homepage: http://www.samba.org Description-md5: 1f2a5e5abc85752bd1d957eccf78a94e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-audio Package: samba-libs Priority: optional Section: libs Installed-Size: 18040 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: libdcerpc-server0 (<< 2:4.0.9), libdcerpc0 (<< 2:4.0.9), libgensec0 (<< 2:4.0.9), libndr-standard0 (<< 2:4.0.9), libndr0 (<< 2:4.0.9), libnetapi0 (<< 2:4.0.9), libregistry0 (<< 2:4.0.9), libsamba-credentials0 (<< 2:4.0.9), libsamba-hostconfig0 (<< 2:4.0.9), libsamba-policy0 (<< 2:4.0.9), libsamba-util0 (<< 2:4.0.9), libsamdb0 (<< 2:4.0.9), libsmbclient-raw0 (<< 2:4.0.9), libsmbd0 (<< 2:4.0.9), libtorture0 (<< 2:4.0.9) Depends: libldb1 (<< 1:1.1.17~), libldb1 (>> 1:1.1.16~), libacl1 (>= 2.2.51-8), libasn1-8-heimdal (>= 1.4.0+git20110226), libattr1 (>= 1:2.4.46-8), libbsd0 (>= 0.3.0), libc6 (>= 2.11), libcap2 (>= 2.10), libcomerr2 (>= 1.01), libcups2 (>= 1.6.0), libgcrypt11 (>= 1.5.1), libgnutls26 (>= 2.12.17-0), libgssapi3-heimdal (>= 1.4.0+git20110226), libhcrypto4-heimdal (>= 1.4.0+git20110226), libhx509-5-heimdal (>= 1.4.0+git20110226), libkrb5-26-heimdal (>= 1.4.0+git20110226), libldap-2.4-2 (>= 2.4.7), libntdb1 (>= 1.0), libpam0g (>= 0.99.7.1), libpopt0 (>= 1.14), libpython2.7 (>= 2.7), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.16), libwbclient0 (>= 2:4.0.3+dfsg1), python-talloc (>= 2.0.6), zlib1g (>= 1:1.1.4) Pre-Depends: multiarch-support Conflicts: libpam-smbpass (<< 2:4), samba (<< 2:4), samba-common-bin (<< 2:4), winbind (<< 2:4) Breaks: libdcerpc-server0 (<< 2:4.0.9), libdcerpc0 (<< 2:4.0.9), libgensec0 (<< 2:4.0.9), libndr-standard0 (<< 2:4.0.9), libndr0 (<< 2:4.0.9), libnetapi0 (<< 2:4.0.9), libregistry0 (<< 2:4.0.9), libsamba-credentials0 (<< 2:4.0.9), libsamba-hostconfig0 (<< 2:4.0.9), libsamba-policy0 (<< 2:4.0.9), libsamba-util0 (<< 2:4.0.9), libsamdb0 (<< 2:4.0.9), libsmbclient-raw0 (<< 2:4.0.9), libsmbd0 (<< 2:4.0.9), libtorture0 (<< 2:4.0.9) Filename: pool/main/s/samba/samba-libs_4.1.6+dfsg-1ubuntu2_i386.deb Size: 4095284 MD5sum: 0644b4654ecd2cc2e92bc888f47b1a62 SHA1: 4e9ed73af58309b438c356be164011113e22af3b SHA256: cc94fb9175430203af8707e2249d599ca8aaa8cff0f00e5a0c583b233a06ebf6 Description: Samba core libraries Multi-Arch: same Homepage: http://www.samba.org Description-md5: f4a16aa3f22848793e72b3501c634170 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: samba-vfs-modules Priority: optional Section: net Installed-Size: 884 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: samba-libs (<< 2:4.1.1+dfsg-1) Depends: libaio1 (>= 0.3.93), libbsd0 (>= 0.0), libc6 (>= 2.11), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Filename: pool/main/s/samba/samba-vfs-modules_4.1.6+dfsg-1ubuntu2_i386.deb Size: 205120 MD5sum: ef53eb1c00a61cbef3b600e40b6dcc24 SHA1: 4d437527e98e79e1af3465bb2f93498021024898 SHA256: 58d7ba70ac802ba888a0c4ed8ada01ac71192dbab08d576210602dd37cff0424 Description: Samba Virtual FileSystem plugins Enhances: samba Homepage: http://www.samba.org Description-md5: 92f10340913e4a2bdea886aaeb443bee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-audio Package: sane-utils Priority: optional Section: graphics Installed-Size: 526 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: sane-backends Version: 1.0.23-3ubuntu3 Replaces: libsane (<< 1.0.11-4) Depends: adduser, update-inetd, debconf (>= 0.5) | debconf-2.0, libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libc6 (>= 2.15), libieee1284-3, libsane, libusb-1.0-0 (>= 2:1.0.8) Suggests: avahi-daemon, unpaper Filename: pool/main/s/sane-backends/sane-utils_1.0.23-3ubuntu3_i386.deb Size: 156342 MD5sum: 00174b422418da3b38580e0f534ac5fa SHA1: 6a6982d0d553e2211bcf22c462d1a1bfb3576bf5 SHA256: 067e139cdec5291697594e295c0dcdeb0d94d2056f7c8547b34a2f6511c3a396 Description: API library for scanners -- utilities Multi-Arch: foreign Homepage: http://www.sane-project.org Description-md5: 46748a077d33d525cc353029dfa80b7d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: sasl2-bin Priority: optional Section: utils Installed-Size: 397 Maintainer: Ubuntu Developers Original-Maintainer: Debian Cyrus SASL Team Architecture: i386 Source: cyrus-sasl2 Version: 2.1.25.dfsg1-17build1 Replaces: libsasl2-2 (<< 2.1.25.dfsg1-8) Depends: libsasl2-2 (>= 2.1.25.dfsg1-17build1), libc6 (>= 2.15), libdb5.3, libkrb5-3 (>= 1.7dfsg), libldap-2.4-2 (>= 2.4.7), libpam0g (>= 0.99.7.1), libssl1.0.0 (>= 1.0.0), debconf (>= 0.5) | debconf-2.0, lsb-base (>= 3.0-6), db-util, debconf (>= 1.4.69) | cdebconf (>= 0.39) Breaks: libsasl2-2 (<< 2.1.25.dfsg1-8) Filename: pool/main/c/cyrus-sasl2/sasl2-bin_2.1.25.dfsg1-17build1_i386.deb Size: 128590 MD5sum: 0dd198d13cbe61758b3a73391bc52568 SHA1: 15dbf1250cdca588e05ca225be58ea8ed5d8c92e SHA256: ba8ce764cedafed1a2e6eb10c5a64ae004b37cfe2728feeb19dcf366c758a6dc Description: Cyrus SASL - administration programs for SASL users database Homepage: http://www.cyrusimap.org/ Description-md5: fa33321a828f08fecd44db10c0f59feb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sbsigntool Priority: optional Section: utils Installed-Size: 310 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Version: 0.6-0ubuntu7 Depends: libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0), libuuid1 (>= 2.16) Filename: pool/main/s/sbsigntool/sbsigntool_0.6-0ubuntu7_i386.deb Size: 46558 MD5sum: 09525f342096f9af5c0208219319d35f SHA1: 5dfd413844e4a913ce3ff8459724d5a522f27aca SHA256: d28ab360bf005af146ff4fb08ed5c973b62d3f8351b79d9f37d4b0853b659907 Description: utility for signing and verifying files for UEFI Secure Boot Multi-Arch: foreign Description-md5: a1e38e321cb5798e7382ea59db8e58ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: scdaemon Priority: optional Section: utils Installed-Size: 473 Maintainer: Ubuntu Developers Original-Maintainer: Eric Dorland Architecture: i386 Source: gnupg2 Version: 2.0.22-3ubuntu1 Replaces: gpgsm (<< 2.0.18-2) Depends: libassuan0 (>= 2.0.2), libc6 (>= 2.15), libgcrypt11 (>= 1.5.1), libgpg-error0 (>= 1.10), libksba8 (>= 1.2.0), libpth20 (>= 2.0.7), libusb-0.1-4 (>= 2:0.1.12) Breaks: gpgsm (<< 2.0.18-2) Filename: pool/main/g/gnupg2/scdaemon_2.0.22-3ubuntu1_i386.deb Size: 160296 MD5sum: a26083fb6266b909830314a0d9eb0f2f SHA1: ae655d866d82cc2441e405a9a5f932dae28493fe SHA256: ad317b88624b99c556a1b29290968cbf0624b82a7495641ceb9109fea7e55144 Description: GNU privacy guard - smart card support Multi-Arch: foreign Homepage: http://www.gnupg.org/ Description-md5: ade00d73739242cbebc5e97599fd6bb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full Package: schroot Priority: optional Section: admin Installed-Size: 2707 Maintainer: Ubuntu Developers Original-Maintainer: Debian buildd-tools Developers Architecture: i386 Version: 1.6.8-1ubuntu1 Replaces: buildd (<< 0.62.3-1), sbuild (<< 0.62.3-1) Depends: libboost-filesystem1.54.0, libboost-iostreams1.54.0, libboost-program-options1.54.0, libboost-regex1.54.0, libboost-system1.54.0, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libpam0g (>= 0.99.7.1), libstdc++6 (>= 4.6), libuuid1 (>= 2.16), schroot-common (= 1.6.8-1ubuntu1) Suggests: debootstrap, lvm2, btrfs-tools, aufs-modules | unionfs-modules, qemu-user-static Conflicts: dchroot (<< 0.13) Breaks: binfmt-support (<< 2.0.1), sbuild (<< 0.62.6) Filename: pool/main/s/schroot/schroot_1.6.8-1ubuntu1_i386.deb Size: 546882 MD5sum: 8eb79599b510f387a20f1f24212e2155 SHA1: c1412f7d50c99f8e6b667195aae3c4e4f1a1638c SHA256: 1ad3665e42eafad13197728b0bad49d96720263589221e3360c5784ca6bc49ab Description: Execute commands in a chroot environment Enhances: sbuild Description-md5: 1d09f5907fa9b9f0626b53bc7ffd21a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: schroot-common Priority: optional Section: admin Installed-Size: 590 Maintainer: Ubuntu Developers Original-Maintainer: Debian buildd-tools Developers Architecture: all Source: schroot Version: 1.6.8-1ubuntu1 Filename: pool/main/s/schroot/schroot-common_1.6.8-1ubuntu1_all.deb Size: 52554 MD5sum: 5f22b7fd6c5fe410e00f3a8324236ac6 SHA1: ca1d7445e60b5d46377ba20fa9e0c19a031283c6 SHA256: aff77dfec94da6e9e1017049275755055f049382fb598e341dd4488e84063b3f Description: common files for schroot Description-md5: 17b7fed4bf8393112c604fe3ff3c5565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: schroot-dbg Priority: extra Section: debug Installed-Size: 31670 Maintainer: Ubuntu Developers Original-Maintainer: Debian buildd-tools Developers Architecture: i386 Source: schroot Version: 1.6.8-1ubuntu1 Depends: schroot (= 1.6.8-1ubuntu1) | dchroot (= 1.6.8-1ubuntu1) | dchroot-dsa (= 1.6.8-1ubuntu1) Conflicts: dchroot (>> 1.6.8-1ubuntu1), dchroot (<< 1.6.8-1ubuntu1), dchroot-dsa (>> 1.6.8-1ubuntu1), dchroot-dsa (<< 1.6.8-1ubuntu1), schroot (>> 1.6.8-1ubuntu1), schroot (<< 1.6.8-1ubuntu1) Filename: pool/main/s/schroot/schroot-dbg_1.6.8-1ubuntu1_i386.deb Size: 31098188 MD5sum: 13079192f39d335cc9143402dff96219 SHA1: 3425b758f8028ae6a6fe5d24e613593e981d358a SHA256: 66dd89ea1f6ec497f4f196369329ac162e907bb2d2160a1c1491d28018c1c500 Description: schroot, dchroot and dchroot-dsa debugging symbols Description-md5: e923048b9226a863a4db19dba9b7b955 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: scons Priority: optional Section: devel Installed-Size: 2042 Maintainer: Ubuntu Developers Original-Maintainer: Luca Falavigna Architecture: all Version: 2.3.0-2 Depends: python (>= 2.7.1-0ubuntu2) Filename: pool/main/s/scons/scons_2.3.0-2_all.deb Size: 541994 MD5sum: 9898b977d84c504c7eca926a3de15fbb SHA1: 976f0caae141af4114ddb0b8eae2aacaa57c5ee6 SHA256: 49a8138210c4a114dc36f2602f6ee814304e036c8f9b5422bbe350d16fc66768 Description: replacement for make Homepage: http://www.scons.org/ Description-md5: ae7e354e01236878fd90148cd63ccb80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: screen Priority: optional Section: misc Installed-Size: 936 Maintainer: Ubuntu Developers Original-Maintainer: Axel Beckert Architecture: i386 Version: 4.1.0~20120320gitdb59704-9 Depends: libc6 (>= 2.15), libpam0g (>= 0.99.7.1), libtinfo5 Suggests: iselect (>= 1.4.0-1) | screenie | byobu Filename: pool/main/s/screen/screen_4.1.0~20120320gitdb59704-9_i386.deb Size: 627892 MD5sum: 238cbe4b8f3af7b0b142cf7c030e548e SHA1: b9c71258411369f531a749caae2f22b884de440f SHA256: 8d3a589723b8c29fb2f99ee7b666d2036ecbbc7bb50e22fdf9b4f6a75d4490f3 Description: terminal multiplexer with VT100/ANSI terminal emulation Homepage: http://savannah.gnu.org/projects/screen Description-md5: 2d86b86ed6058a04c540802e49312f40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-desktop-gnome, edubuntu-usb Package: screen-dbg Priority: extra Section: debug Installed-Size: 480 Maintainer: Ubuntu Developers Original-Maintainer: Axel Beckert Architecture: i386 Source: screen Version: 4.1.0~20120320gitdb59704-9 Depends: screen (= 4.1.0~20120320gitdb59704-9) Filename: pool/main/s/screen/screen-dbg_4.1.0~20120320gitdb59704-9_i386.deb Size: 388496 MD5sum: 977f6043940424e6cf7ca79fa289093a SHA1: e8009c1e81617310c5b0a0eab68c8dcba5aab42a SHA256: 010dd8e118781f97c3b450c3e9d5424e40d101ea735db9c164304ca70d83a5b7 Description: Debugging symbols for GNU Screen Homepage: http://savannah.gnu.org/projects/screen Description-md5: 04271e20641b982b8f437707b92dde1f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: screen-resolution-extra Priority: optional Section: x11 Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Alberto Milone (tseliot) Architecture: all Version: 0.17.1 Depends: python3-xkit (>= 0.5.0), policykit-1-gnome, python3-gi Filename: pool/main/s/screen-resolution-extra/screen-resolution-extra_0.17.1_all.deb Size: 11388 MD5sum: 17fcea6133304d332f27acfb0312594e SHA1: e55007b243c3f6879a080d0d55f64e46104f26c6 SHA256: 11d1b8d10651588d99edc20b5967878e6a3efb18f43197c9c13ac5f2b3bd8b16 Description: Extension for the GNOME screen resolution applet Description-md5: e18bc69392afb5ace6fa0b71bb3bc577 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: seabios Priority: optional Section: misc Installed-Size: 628 Maintainer: Ubuntu Developers Original-Maintainer: Debian QEMU Team Architecture: all Version: 1.7.4-4 Breaks: qemu-kvm (<< 0.14.0), qemu-system (<< 0.14.0) Filename: pool/main/s/seabios/seabios_1.7.4-4_all.deb Size: 107810 MD5sum: 88206d3b36a49786b00b76031f91c922 SHA1: 96a051ee94b208553e96818fc43784e1805490ed SHA256: ea4811ff0d7e4d4bbc0df23afb60b72c5e1321fa902324b679801e4ff6b8daf2 Description: Legacy BIOS implementation Multi-Arch: foreign Homepage: http://www.seabios.org Description-md5: 3c57ad8dc4b7367cefa8a011ed0fc235 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: seahorse Priority: optional Section: gnome Installed-Size: 2336 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.10.2-0ubuntu1 Depends: libatk1.0-0 (>= 1.12.4), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.7), libgck-1-0 (>= 3.3.90), libgcr-base-3-1 (>= 3.9.1), libgcr-ui-3-1 (>= 3.9.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgpgme11 (>= 1.2.0), libgtk-3-0 (>= 3.4.0), libldap-2.4-2 (>= 2.4.7), libsecret-1-0 (>= 0.16), libsoup2.4-1 (>= 2.33.92), dconf-gsettings-backend | gsettings-backend, gcr (>= 3.9.1), gnupg (>= 1.4.7), gnome-keyring (>= 3.4) Recommends: openssh-client Filename: pool/main/s/seahorse/seahorse_3.10.2-0ubuntu1_i386.deb Size: 418920 MD5sum: 1ca1309bb089f657a48db24943058ea9 SHA1: 4c08b2677c0ae3f44445388bd30a7d32ada3f052 SHA256: 5a65fa1aca2f27b4fc4d7410048822adaf2bdbfa9bc1a31ef09922b889494e18 Description: GNOME front end for GnuPG Homepage: http://live.gnome.org/Seahorse Description-md5: 183c443db6e087b1bdd4087786203c38 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: secureboot-db Priority: optional Section: utils Installed-Size: 43 Maintainer: Jamie Strandboge Architecture: i386 Version: 1.1 Depends: sbsigntool Filename: pool/main/s/secureboot-db/secureboot-db_1.1_i386.deb Size: 2732 MD5sum: 06100fcdf703946ae934c7863ba0cd5a SHA1: 04f810066dc8439ff3774e68f37ccc597ec9b50d SHA256: 231da4343c5cede80c19432d6024562d22db058976e65e841b55816e8b15b614 Description: Secure Boot updates for DB and DBX Description-md5: 7a5f131cb6deec9acc4202d34ab02b5f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sed Essential: yes Priority: required Section: utils Installed-Size: 296 Maintainer: Ubuntu Developers Original-Maintainer: Clint Adams Architecture: i386 Version: 4.2.2-4ubuntu1 Depends: dpkg (>= 1.15.4) | install-info Pre-Depends: libc6 (>= 2.7), libselinux1 (>= 1.32) Filename: pool/main/s/sed/sed_4.2.2-4ubuntu1_i386.deb Size: 136528 MD5sum: a749e104a6963f2a74eb008dbb52f52f SHA1: 292dc8cf89f72b35d5f149e48b37e82c214fc00c SHA256: d35846a57ac11bf05693b00a6673928168523f88bda54c7e497a029edff5d323 Description: The GNU sed stream editor Multi-Arch: foreign Homepage: http://www.gnu.org/software/sed/ Description-md5: 67b5a614216e15a54b09cad62d5d5afc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: sensible-utils Priority: required Section: utils Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Anibal Monsalve Salazar Architecture: all Version: 0.0.9 Replaces: debianutils (<= 2.32.3), manpages-pl (<= 20060617-3~) Filename: pool/main/s/sensible-utils/sensible-utils_0.0.9_all.deb Size: 10502 MD5sum: 18f69bbed048d2d39f7a13c26a949ccf SHA1: d8383323633d56d6d25a058cb4711ab3057502e4 SHA256: de75c4690051dfb43c8faa8f37afe276f78d41dc89d9258fa080e6a7a450c826 Description: Utilities for sensible alternative selection Multi-Arch: foreign Description-md5: 762f81736340b99921c41ac6bb08e2b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: session-migration Priority: extra Section: misc Installed-Size: 60 Maintainer: Didier Roche Architecture: i386 Version: 0.2.1 Depends: libc6 (>= 2.0), libglib2.0-0 (>= 2.16.0) Filename: pool/main/s/session-migration/session-migration_0.2.1_i386.deb Size: 7254 MD5sum: 2151f68f05ff7f76a31f145cf504e027 SHA1: 28e4088feef1ab35b4ca0b98d0714e43bcc121e2 SHA256: 2e94e86bf29e004102ca04548c2ea29c43f7706a7fdc5c811d1a3b779cbc459c Description: Tool to migrate in user session settings Homepage: https://launchpad.net/session-migration Description-md5: ae53757d572032e794c86892ab4a5aba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: sessioninstaller Priority: extra Section: gnome Installed-Size: 240 Maintainer: Ubuntu Developers Original-Maintainer: Julian Andres Klode Architecture: all Version: 0.20+bzr141-0ubuntu4 Replaces: gnome-codec-install Provides: gnome-codec-install Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), aptdaemon (>= 0.30), python-aptdaemon.gtk3widgets, python-commandnotfound, python-defer, python-xapian, python-gi, gir1.2-gtk-3.0, gir1.2-gstreamer-1.0 Conflicts: gnome-codec-install, packagekit-gnome Filename: pool/main/s/sessioninstaller/sessioninstaller_0.20+bzr141-0ubuntu4_all.deb Size: 26310 MD5sum: 20dd1218f633a47beb7256cb38026283 SHA1: e84b0a9cc75704ddac64b0fe673dc9fe01253d5c SHA256: c0c8a313b0b091fcc6bb60619e6cf0b43c92df2f605ad403265789edf223bc9e Description: APT based installer using PackageKit's session DBus API Homepage: http://launchpad.net/sessioninstaller Description-md5: 57680fcf03a76826442d47d94b8ebaed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: setserial Priority: extra Section: comm Installed-Size: 140 Maintainer: Ubuntu Developers Original-Maintainer: Thorsten Alteholz Architecture: i386 Version: 2.17-48 Depends: libc6 (>= 2.7), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/setserial/setserial_2.17-48_i386.deb Size: 37526 MD5sum: 83b105ff0afa4738ff0c4bfcdf952fde SHA1: b3886209f23290adf91294e9cf7c1b2261ef1df4 SHA256: d70eab464c06c281543eefeadecb4bd239b66eec0b270f5d1d6a674e59b54ff9 Description: controls configuration of serial ports Homepage: http://ftp.mcc.ac.uk/pub/linux/ Description-md5: 9bf5524b0c67673f200677dbc3c02151 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-live Package: sg3-utils Priority: optional Section: admin Installed-Size: 1512 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: i386 Version: 1.36-1ubuntu1 Replaces: sg-utils Depends: libc6 (>= 2.7), libsgutils2-2 (>= 1.36) Conflicts: cdwrite, sg-utils Filename: pool/main/s/sg3-utils/sg3-utils_1.36-1ubuntu1_i386.deb Size: 524962 MD5sum: 84b29618a7a0e4671fb9243cb3beb86c SHA1: b6f3227c0df5084e39ea6001042ad74688c1b76c SHA256: 9766444f896f465de85a3f8e23d712a8fef3242449efceaa83678f180cc731f1 Description: utilities for devices using the SCSI command set Homepage: http://sg.danny.cz/sg/ Description-md5: 87527871471a549569721d9f87e03c31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sgml-base Priority: standard Section: text Installed-Size: 113 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 1.26+nmu4ubuntu1 Pre-Depends: dpkg (>= 1.16.4) Suggests: sgml-base-doc Conflicts: sgml-data (<= 0.02), sgmltools-2 (<= 2.0.2-4) Filename: pool/main/s/sgml-base/sgml-base_1.26+nmu4ubuntu1_all.deb Size: 12522 MD5sum: c0b66a92d49691657b38b25d632b0495 SHA1: 8c574426ae2cd893eaedac1fe16191280e4d6eeb SHA256: 095047a66f12fedc3cf2d916d2c32e59f5f2212377c6338b7fe2e749b19e9ae4 Description: SGML infrastructure and SGML catalog file support Description-md5: 755fef945e2b90329acc85096b6dba03 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: sgml-data Priority: optional Section: text Installed-Size: 1360 Maintainer: Ubuntu Developers Original-Maintainer: Osamu Aoki Architecture: all Version: 2.0.9-1 Replaces: docbook-xml (<= 3.1.3.6-1), sp (<< 1.3.4-1.2.1-14) Depends: perl, sgml-base (>= 1.26+nmu2), xml-core (>= 0.12) Suggests: perlsgml, w3-recs, opensp, libxml2-utils Breaks: sp (<= 1.1.1-2) Filename: pool/main/s/sgml-data/sgml-data_2.0.9-1_all.deb Size: 277328 MD5sum: c8bec80aeb81c647ab3683b9b1574b57 SHA1: 7fd4e5eba76435af19aae286bcc208f8d9fdc3b8 SHA256: 9f0c8b50c4093a6ae406d7cd21a662e8ea134f82c8fe86187d7569d664fc343b Description: common SGML and XML data Multi-Arch: foreign Homepage: http://debian-xml-sgml.alioth.debian.org/ Description-md5: 02478ac24373cf43b528305bde1e3a2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-desktop Package: sgmls-doc Priority: optional Section: doc Installed-Size: 200 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: libsgmls-perl Version: 1.03ii-32 Replaces: sgmlspm Suggests: libsgmls-perl, sgmlspl Conflicts: sgmlspm Filename: pool/main/libs/libsgmls-perl/sgmls-doc_1.03ii-32_all.deb Size: 24712 MD5sum: 26cc1465d236302069a9f4805cfe17e6 SHA1: 7e7d214762f0193e85f03f42b66c1396255317d4 SHA256: 74d4f05b33fb6d3a36e229b7f57227a357b0f9fc5dceceecc2dba0f85495eee4 Description: HTML documentation of libsgmls-perl and sgmlspl Description-md5: 4078382b8e372bf59a10a8e6f51bc2ec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sgmlspl Priority: optional Section: text Installed-Size: 80 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Source: libsgmls-perl Version: 1.03ii-32 Replaces: sgmlspm Depends: libsgmls-perl, perl Suggests: sgmls-doc Conflicts: sgmlspm Filename: pool/main/libs/libsgmls-perl/sgmlspl_1.03ii-32_all.deb Size: 11420 MD5sum: 30d78253f7f9aa00228846ed882c81a7 SHA1: 40ebd2991fc002969fae87a942007d41b182cbeb SHA256: 2d825d2bde38d4628e33bdd6f188ccd4f4229c9c7a45eba34d9c8b638d9356da Description: SGMLS-based example Perl script for processing SGML parser output Description-md5: cd4a6508f13ec21d352fabfcdfff0098 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sgmltools-lite Priority: optional Section: text Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 3.0.3.0.cvs.20010909-17 Replaces: sgmltools-2 Provides: sgmltools-2 Depends: sgml-base (>= 1.10), docbook (>= 4.1-1), docbook-dsssl (>= 1.71-1), python (>= 1.5), jade | openjade Recommends: w3m | w3mmee Suggests: jadetex, lynx, linuxdoc-tools Conflicts: sgmltools-2 (<= 2.0.2-4) Filename: pool/main/s/sgmltools-lite/sgmltools-lite_3.0.3.0.cvs.20010909-17_all.deb Size: 32562 MD5sum: d6a617810901e8a164fb00d6de5bbc5e SHA1: aab268b9970b17cb142fdd28b4f844ed3e3688cf SHA256: f73f7f513636d6a9a7b028076176754f1135ff9aacf0eebee280c49356c47d5a Description: convert DocBook SGML source into HTML using DSSSL Multi-Arch: foreign Description-md5: a03ccc70330524dc737c44f838ae7219 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: shared-desktop-ontologies Priority: optional Section: misc Installed-Size: 662 Maintainer: Ubuntu Developers Original-Maintainer: Debian Krap Maintainers Architecture: all Version: 0.11.0-1 Filename: pool/main/s/shared-desktop-ontologies/shared-desktop-ontologies_0.11.0-1_all.deb Size: 127974 MD5sum: 000d296f4ebf4fc79b0d2f4d872fcd4f SHA1: 59daba9466c1c6c9d713357f38f7bf4d49e55b9f SHA256: cbace1662fd8f99d786bf8eec351441d915cf6fbc493c61b5c41bd40aa6c30a7 Description: shared ontologies for semantic searching Homepage: http://oscaf.sourceforge.net Description-md5: 7df25f0118f1d8fa83149eb82ecfb95f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: shared-mime-info Priority: standard Section: misc Installed-Size: 2580 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: i386 Version: 1.2-0ubuntu3 Depends: libc6 (>= 2.3), libglib2.0-0 (>= 2.35.9), libxml2 (>= 2.7.4) Conflicts: libglib2.0-0 (<< 2.17.2), libgnomevfs2-0 (<< 1:2.24.0), tracker (<< 0.6.90) Filename: pool/main/s/shared-mime-info/shared-mime-info_1.2-0ubuntu3_i386.deb Size: 413678 MD5sum: 102227ef6fb5d783e692cae57d38dacb SHA1: 72fadf36164be2de2f35f02dae04613874b6c5d9 SHA256: e72a2856b096ca4f37e2d778c3c080ca9e00bc22cd9ca0cd28e85bf6150560ee Description: FreeDesktop.org shared MIME database and spec Multi-Arch: foreign Homepage: http://freedesktop.org/wiki/Software/shared-mime-info Description-md5: 290ac8a3095b320dee65dfcdea0d99f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: sharutils Priority: optional Section: utils Installed-Size: 568 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 1:4.14-1ubuntu1 Depends: libc6 (>= 2.7) Suggests: bsd-mailx | mailx Conflicts: shar, uuencode Filename: pool/main/s/sharutils/sharutils_4.14-1ubuntu1_i386.deb Size: 141172 MD5sum: 3fbcc407c678105b64b11bd76a6b1477 SHA1: cce5de66db557578c77fca7dbb524c2fecd8b576 SHA256: 907ad44acfe6f26ca72b3b1ae918a1a1bcfb6b80b335e2f6056e335b246bceac Description: shar, unshar, uuencode, uudecode Multi-Arch: foreign Homepage: http://www.gnu.org/software/sharutils/ Description-md5: a3a4ed873198b8a52375099d19def9a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: sharutils-doc Priority: optional Section: doc Installed-Size: 388 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: sharutils Version: 1:4.14-1ubuntu1 Filename: pool/main/s/sharutils/sharutils-doc_4.14-1ubuntu1_all.deb Size: 35412 MD5sum: d3520cc6b6a8abefa093bc057a60664c SHA1: 993b3e55b17e5cc59c7934ea48e547e569c274c9 SHA256: fe49742c87c2e8f136032eec319a0410a5dd5aa7741a24cf6aaebff1898978e9 Description: Documentation for GNU sharutils Homepage: http://www.gnu.org/software/sharutils/ Description-md5: c3131f88b01c34cd8e0ddf87a6d89587 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: shotwell Priority: extra Section: gnome Installed-Size: 5890 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian Shotwell Maintainers Architecture: i386 Version: 0.18.0-0ubuntu4 Depends: libaccounts-glib0 (>= 1.0), libc6 (>= 2.7), libcairo2 (>= 1.2.4), libexif12, libgdk-pixbuf2.0-0 (>= 2.22.0), libgee-0.8-2 (>= 0.8.3), libgexiv2-2 (>= 0.7.0), libglib2.0-0 (>= 2.35.9), libgphoto2-6 (>= 2.5.2), libgphoto2-port10 (>= 2.5.2), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.6.0), libgudev-1.0-0 (>= 146), libjson-glib-1.0-0 (>= 0.12.0), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.14.0), libraw9 (>= 0.15.1-1), librest-0.7-0 (>= 0.7), libsignon-glib1 (>= 1.1), libsoup2.4-1 (>= 2.26.1), libsqlite3-0 (>= 3.5.9), libunity9 (>= 3.4.6), libwebkitgtk-3.0-0 (>= 1.3.10), libxml2 (>= 2.7.4), shotwell-common (= 0.18.0-0ubuntu4), librsvg2-common, dbus-x11 Suggests: account-plugin-facebook, account-plugin-google, account-plugin-flickr, unity-control-center-signon Filename: pool/main/s/shotwell/shotwell_0.18.0-0ubuntu4_i386.deb Size: 1406772 MD5sum: 01e1cf20ff241ca8a8291060a266d240 SHA1: f729f30946d39084cc24262046716063c845f8a3 SHA256: 46f199152b88974db8bc9707ab3951e55d53853c71bd75772f8c2f6cec17771a Description: digital photo organizer Homepage: http://yorba.org/shotwell/ Description-md5: 061090134a05e91755c69c693cc4d3b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: shotwell-common Priority: optional Section: gnome Installed-Size: 1496 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian Shotwell Maintainers Architecture: all Source: shotwell Version: 0.18.0-0ubuntu4 Replaces: shotwell (<< 0.14.1-1) Depends: dconf-gsettings-backend | gsettings-backend Recommends: shotwell Breaks: shotwell (<< 0.14.1-1) Filename: pool/main/s/shotwell/shotwell-common_0.18.0-0ubuntu4_all.deb Size: 477550 MD5sum: 130a30744ab0823bf8135fcc8986024f SHA1: e830331e2b064e0ffe4c637a4c006f5370230157 SHA256: 338db142c7bc8871b210b4947be0120decf4380ce5545d0e5bb158899cb80702 Description: digital photo organizer - common files Homepage: http://yorba.org/shotwell/ Description-md5: 2309ea32c18aa19f094eb502562fada4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: shotwell-dbg Priority: extra Section: debug Installed-Size: 6639 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian Shotwell Maintainers Architecture: i386 Source: shotwell Version: 0.18.0-0ubuntu4 Depends: shotwell (= 0.18.0-0ubuntu4) Filename: pool/main/s/shotwell/shotwell-dbg_0.18.0-0ubuntu4_i386.deb Size: 5595568 MD5sum: 3178a1e589bfcc8f3d8ed8857f04f073 SHA1: d6739f4ad9dc78b44cfd15cadbfb7a8d2bb16144 SHA256: f4acf14bb67af48a91747f6f37352b50e6d1a3e5000b6715ffd4d182bca7b970 Description: digital photo organizer - debugging symbols Homepage: http://yorba.org/shotwell/ Description-md5: c721a414b604290e12589edcec3ef62a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: shtool Priority: optional Section: devel Installed-Size: 544 Maintainer: Ubuntu Developers Original-Maintainer: William Vera Architecture: all Version: 2.0.8-6 Depends: perl Suggests: autoconf, automake, libtool Filename: pool/main/s/shtool/shtool_2.0.8-6_all.deb Size: 149346 MD5sum: ca8e02813cb7b7e55352aaffa6504cc7 SHA1: 56a77b66b48e2c597f73b09e92a1822842bab206 SHA256: b82ba243718b861f38031302e74bc3788ef793963c87753ded29e53ab13079be Description: portable shell tool from the GNU project Homepage: http://www.gnu.org/software/shtool/ Description-md5: 487ad53b13df08e5afd83734afb48f0b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: shunit2 Priority: optional Section: devel Installed-Size: 165 Maintainer: Ubuntu Developers Original-Maintainer: Ulrich Dangel Architecture: all Version: 2.1.6-1 Filename: pool/main/s/shunit2/shunit2_2.1.6-1_all.deb Size: 43596 MD5sum: 1bcda27a3902727273ae976a6ac166f9 SHA1: 6ace734c9086e4d154055f691f35376dbef98d70 SHA256: 6e3c48e5be739720500442e8e44282bce362a6baabe1995eb051c3a8ab885b0d Description: unit test framework for Bourne based shell scripts Homepage: http://code.google.com/p/shunit2/ Description-md5: 87603abc3a9465868b0384759d8b4ce6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: siege Priority: optional Section: web Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Josue Abarca Architecture: i386 Version: 3.0.5-1 Replaces: siege-ssl Depends: libc6 (>= 2.15), libssl1.0.0 (>= 1.0.0) Conflicts: siege-ssl Filename: pool/main/s/siege/siege_3.0.5-1_i386.deb Size: 81126 MD5sum: b81c082159f57575a1e6333da611d51c SHA1: 132b9f04b7f0009f5632385b3153822be4817365 SHA256: 5524fa6e9d4b34bfaf2585788e9b15353428b22150d1cf831d31b983730b515a Description: HTTP regression testing and benchmarking utility Homepage: http://www.joedog.org/JoeDog/Siege Description-md5: 1effcb97a2aa1b9b4c5c8a40d7e3d65a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: signon-keyring-extension Priority: optional Section: gnome Installed-Size: 76 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 0.6+14.04.20140307-0ubuntu1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libqt5core5a (>= 5.0.2), libsecret-1-0 (>= 0.7), libsignon-extension1, libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon-keyring-extension/signon-keyring-extension_0.6+14.04.20140307-0ubuntu1_i386.deb Size: 13596 MD5sum: 49103d3e9ffb71dfed962a41481d829a SHA1: 02821a00a9a7e9850bc783220fc5d4573e55fc79 SHA256: 981b5dde56dfc54793fca986bfe667c28a296cfe2b548236757a30494cde4de5 Description: GNOME keyring extension for signond Homepage: https://launchpad.net/signon-keyring-extension Description-md5: 9a54618c16aff5bc5587bf531f2e3937 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: signon-plugin-oauth2 Priority: optional Section: libs Installed-Size: 220 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 0.19+14.04.20140305-0ubuntu2 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.2.0), libqt5network5 (>= 5.0.2), libstdc++6 (>= 4.1.1), signon-ui Filename: pool/main/s/signon-plugin-oauth2/signon-plugin-oauth2_0.19+14.04.20140305-0ubuntu2_i386.deb Size: 57670 MD5sum: 6cc445e0a4ff11fdd7558590978fdb83 SHA1: d4699b6df95ec8fe2dedf75f4d274c21cefcd133 SHA256: 5c22c776f68e1cb5dced2c49dc1d3c84cb4bb076541a80ac6fa31a897fff3d3e Description: Single Signon oauth2 plugin Homepage: http://code.google.com/p/accounts-sso/ Description-md5: aac81bf6c225cb08d089fa03c1a76e5e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: signon-plugin-oauth2-dev Priority: optional Section: libdevel Installed-Size: 48 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon-plugin-oauth2 Version: 0.19+14.04.20140305-0ubuntu2 Depends: signon-plugin-oauth2 (= 0.19+14.04.20140305-0ubuntu2) Filename: pool/main/s/signon-plugin-oauth2/signon-plugin-oauth2-dev_0.19+14.04.20140305-0ubuntu2_i386.deb Size: 2722 MD5sum: af9757592f7ae6f1f4e80c676c28b0fb SHA1: f539e4883ab38a92bc2d2ce870b3ccb7bebd455d SHA256: 0cb257ed779523ba4681824d3d64d293f2f46805e69891a3955dadf41e33116f Description: Single Signon oauth2 plugin Homepage: http://code.google.com/p/accounts-sso/ Description-md5: cb100153cb4349bf80a9ff6012a3b6fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: signon-plugin-password Priority: optional Section: libs Installed-Size: 80 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Replaces: signon-passwordplugin Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libstdc++6 (>= 4.1.1), signond Conflicts: signon-passwordplugin Filename: pool/main/s/signon/signon-plugin-password_8.56+14.04.20140307-0ubuntu2_i386.deb Size: 14332 MD5sum: 6bfd17e761495d23a94f8c03bc7750e1 SHA1: fdbc9d5af9368e0650d1f8850b108638b20954fb SHA256: 8c64aa36ce4b38f843fd6a007928cf21a85f2dcd926a4702a34237fd9c59cb09 Description: Plain Password plugin for Single Sign On Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 1443d094b0a2eedfe1ff7ebe9adcd172 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: signon-plugin-ssotest Priority: optional Section: libs Installed-Size: 181 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libc6 (>= 2.1.3), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2), libstdc++6 (>= 4.1.1), signond Filename: pool/main/s/signon/signon-plugin-ssotest_8.56+14.04.20140307-0ubuntu2_i386.deb Size: 59512 MD5sum: b69c8d18bd8b445e5afd3843638f5c11 SHA1: e23bf9befa08930570574a38a0f4d8712806f1e7 SHA256: eb682ee9856d27570d42dd7cd54babf2e93ed278b69ab49470143c89a0eaa1a5 Description: Test plugin for Single Sign On Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 75c64b001f11cd599e8f4b09f366f77a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: signon-plugins-dev Priority: optional Section: libdevel Installed-Size: 113 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Depends: libsignon-qt5-dev Filename: pool/main/s/signon/signon-plugins-dev_8.56+14.04.20140307-0ubuntu2_i386.deb Size: 15774 MD5sum: adff2849befa48cb9c3dd50158b21397 SHA1: 306d8225aea3924a3e8f32a6549893b4059b08e6 SHA256: 65b27d20dff6d9baf3bb9a348bce82eac033f9f663579b98421deb46defd3c57 Description: Development files for Single Sign On plugins Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 0fdec0bbfa0388a1714a386572561362 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: signon-ui Priority: optional Section: gnome Installed-Size: 441 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 0.16+14.04.20140304.is.0.15+14.04.20140313-0ubuntu1 Depends: libaccounts-qt5-1, libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.12.0), libnotify4 (>= 0.7.0), libproxy1 (>= 0.4.7), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.2.0), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2), libqt5test5 (>= 5.0.2), libqt5webkit5, libqt5widgets5 (>= 5.2.0), libsignon-qt5-1, libstdc++6 (>= 4.1.1) Filename: pool/main/s/signon-ui/signon-ui_0.16+14.04.20140304.is.0.15+14.04.20140313-0ubuntu1_i386.deb Size: 116850 MD5sum: 343872e56ee84677f44d11fb07ea4d78 SHA1: 2f5ba6d580fa6f3e44c80534c5456f35425d1b97 SHA256: 3256567cc3d883358d703e9bc9926df28699cba3ef8ea8630480aca8ba94add0 Description: Single Sign-on UI Homepage: https://launchpad.net/signon-ui Description-md5: c3261de338d126dcdc430c8beedea103 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: signond Priority: optional Section: gnome Installed-Size: 666 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Replaces: signon-plugins, signon-saslplugin (<< 8.40) Depends: libc6 (>= 2.4), libproxy1 (>= 0.4.7), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5sql5 (>= 5.0.2), libsignon-extension1, libsignon-plugins-common1, libstdc++6 (>= 4.1.1), session-migration, libqt5sql5-sqlite Recommends: signon-ui Breaks: signon-plugins, signon-saslplugin (<< 8.40) Filename: pool/main/s/signon/signond_8.56+14.04.20140307-0ubuntu2_i386.deb Size: 168114 MD5sum: 668ba56730466089c2ac36107f9ddf8d SHA1: da1b9ed85215feceabf6f122ba0145970653a32c SHA256: c92ebd94de53d2595568e7ff7d652640cda80ec9d92888629270a73c3d49cc18 Description: Single Sign On framework Homepage: http://code.google.com/p/accounts-sso/ Description-md5: e82cc644df18f6d1c382ada5d5c88928 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: signond-dev Priority: optional Section: libdevel Installed-Size: 211 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Replaces: signon-saslplugin-dev (<< 8.40) Depends: signond (= 8.56+14.04.20140307-0ubuntu2), qtbase5-dev Breaks: signon-saslplugin-dev (<< 8.40) Filename: pool/main/s/signon/signond-dev_8.56+14.04.20140307-0ubuntu2_i386.deb Size: 27870 MD5sum: 42290084767766224de258e59d1f1579 SHA1: e8d8c374e2f31dfa302bb4ccd0e965dfcab70a15 SHA256: 43d4ed9cb062516967d6e7eae95201c7f9447f5a3ec85430f06d2dc016976f4d Description: Development files for Signon client library development Homepage: http://code.google.com/p/accounts-sso/ Description-md5: b42d5c20c50bc859c56c797635fa1d8a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: signond-doc Priority: optional Section: doc Installed-Size: 21493 Maintainer: Ubuntu Desktop Team Architecture: all Source: signon Version: 8.56+14.04.20140307-0ubuntu2 Filename: pool/main/s/signon/signond-doc_8.56+14.04.20140307-0ubuntu2_all.deb Size: 15336636 MD5sum: bfe91172e1d23da521fa35679506da44 SHA1: 98008987916f5a88eb0e5a9e785b6eb2dab9be10 SHA256: f278886f02dfb7cf883899abd9db4f93dd56192a0e330deaf5c4b0541d47d375 Description: Single Sign On framework - documentation Homepage: http://code.google.com/p/accounts-sso/ Description-md5: 3a68da7e7c27f3c2ca7fecd296974d05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: simple-scan Priority: optional Section: gnome Installed-Size: 628 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Version: 3.12.0-0ubuntu1 Depends: gnome-icon-theme, xdg-utils, dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.3.6-6~), libcairo2 (>= 1.6.0), libcolord1 (>= 0.1.10), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.32), libgtk-3-0 (>= 3.3.16), libgudev-1.0-0 (>= 146), libsane (>= 1.0.11-3), zlib1g (>= 1:1.1.4) Filename: pool/main/s/simple-scan/simple-scan_3.12.0-0ubuntu1_i386.deb Size: 133728 MD5sum: 2c725c9a6ebcbf8f06a7f263b235a3c5 SHA1: 453eaf630f91e163d6b7494a8e80a6579d695226 SHA256: ca3ddd791495573a36320d43354a77b645a35de2e86c844459c33d4a8eb7cd38 Description: Simple Scanning Utility Homepage: https://launchpad.net/simple-scan Description-md5: 0801cb168babf587af56100a43d62a83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: simple-scan-dbg Priority: extra Section: debug Installed-Size: 516 Maintainer: Ubuntu Developers Original-Maintainer: Alessio Treglia Architecture: i386 Source: simple-scan Version: 3.12.0-0ubuntu1 Depends: simple-scan (= 3.12.0-0ubuntu1) Filename: pool/main/s/simple-scan/simple-scan-dbg_3.12.0-0ubuntu1_i386.deb Size: 434492 MD5sum: 0a887557036657a0a7300c4e3eb93283 SHA1: 9f4d7b5db1bf052209561ea899f56d388a92a520 SHA256: 701b8a51a8644ed60ac0e8c3ec6edb8299c22f17d2f96cc7170126f7fd5ba903 Description: Simple Scanning Utility - debugging symbols Homepage: https://launchpad.net/simple-scan Description-md5: 8bed55fd0216a48b7dddbe1aa30d590a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sip-dbg Priority: extra Section: debug Installed-Size: 536 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: sip4 Version: 4.15.5-1build1 Depends: sip-dev (= 4.15.5-1build1), python-dbg Filename: pool/main/s/sip4/sip-dbg_4.15.5-1build1_i386.deb Size: 170336 MD5sum: 32ccffb4321c31e9a0fb39777e68406f SHA1: 4778276236f8b28d870023ed2546927941042f17 SHA256: 2590e5907765041cb8c6dbf6ac534cccfd11cb37e2878e3aac872ff38e30844b Description: Debug symbols for Python/C++ bindings generator application Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: 20b39e1d8af7262e88a5c44daba8edf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sip-dev Priority: optional Section: python Installed-Size: 381 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: i386 Source: sip4 Version: 4.15.5-1build1 Replaces: python-sip-dev (<< 4.14.7-3~) Depends: libc6 (>= 2.4) Recommends: python-sip-dev (>= 4.15.5-1build1) | python3-sip-dev (>= 4.15.5-1build1) Suggests: python-sip-doc Breaks: python-sip-dev (<< 4.14.7-3~) Filename: pool/main/s/sip4/sip-dev_4.15.5-1build1_i386.deb Size: 124204 MD5sum: de0501c2413fdd298379437249847796 SHA1: 1ee6265bf9e7c1d515875decbe3194010150d674 SHA256: a12681753f0c823802c82a39f9bf0ecd7c8febad4aaa67d9c9822108066c7a6a Description: Python/C++ bindings generator code generator application Homepage: http://www.riverbankcomputing.co.uk/software/sip/ Description-md5: c5a485e2857aa14add006945e93b72d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: slapd Priority: optional Section: net Installed-Size: 4067 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: i386 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Replaces: ldap-utils (<< 2.2.23-3), libldap2 Provides: ldap-server, libslapi-2.4-2 Depends: libc6 (>= 2.15), libdb5.3, libldap-2.4-2 (= 2.4.31-1+nmu2ubuntu8), libltdl7 (>= 2.4.2), libodbc1 (>= 2.2.11) | unixodbc (>= 2.2.11), libperl5.18 (>= 5.18.2), libsasl2-2 (>= 2.1.24), libslp1, libwrap0 (>= 7.6-4~), coreutils (>= 4.5.1-1), psmisc, perl (>> 5.8.0) | libmime-base64-perl, adduser, lsb-base (>= 3.2-13) Pre-Depends: debconf (>= 0.5) | debconf-2.0, multiarch-support Recommends: libsasl2-modules Suggests: ldap-utils, ufw Conflicts: ldap-server, libltdl3 (= 1.5.4-1), umich-ldapd Filename: pool/main/o/openldap/slapd_2.4.31-1+nmu2ubuntu8_i386.deb Size: 1264348 MD5sum: 6060738a525d060a7c2040a01ef25c80 SHA1: cb2be74202079eae54fd20581dae1b53154a16d5 SHA256: 8b71b0d46fd8c76716b5affe44dd0cf576658249170612d9e52a4306663023fa Description: OpenLDAP server (slapd) Homepage: http://www.openldap.org/ Description-md5: dd977840e276b3f03520c0ab1d050cf8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: slapd-dbg Priority: extra Section: net Installed-Size: 5791 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenLDAP Maintainers Architecture: i386 Source: openldap Version: 2.4.31-1+nmu2ubuntu8 Depends: slapd (= 2.4.31-1+nmu2ubuntu8) Filename: pool/main/o/openldap/slapd-dbg_2.4.31-1+nmu2ubuntu8_i386.deb Size: 5151300 MD5sum: b7dee486a20bc94a5c1188ec7b054180 SHA1: 2700e176ed305ab52f341d4dea77e766aa4a7b92 SHA256: aebd638d159806d71dc1ade2c7c1ee8a1d721e7f2182d99d5bdec1697582240a Description: Debugging information for the OpenLDAP server (slapd) Homepage: http://www.openldap.org/ Description-md5: 60adf5b076ecd11243c2b33f25815a47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: slice Priority: optional Section: text Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Debian WML Packaging Team Architecture: all Version: 1.3.8-12 Depends: libbit-vector-perl, perl (>= 5.6.0) | perl5, perl Filename: pool/main/s/slice/slice_1.3.8-12_all.deb Size: 20392 MD5sum: 6ceb666321a015b7467e3e37eb1a8efc SHA1: af15139a10790c2b8209538425da2f71cf6093f9 SHA256: fe4e5f15ed1f9ca2189fee468e7f4ba32ad73dcb6fd01b7950b668e4511027a7 Description: Extract out pre-defined slices of an ASCII file Homepage: http://web.archive.org/web/20041028021735/http://www.engelschall.com/sw/slice/ Description-md5: 36db0db236e06b885a3c1bc5d9423e2c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: smartmontools Priority: optional Section: utils Installed-Size: 1412 Maintainer: Ubuntu Developers Original-Maintainer: Giuseppe Iuculano Architecture: i386 Version: 6.2+svn3841-1.2 Depends: libc6 (>= 2.17), libcap-ng0, libgcc1 (>= 1:4.1.1), libselinux1 (>= 1.32), libstdc++6 (>= 4.1.1), debianutils (>= 2.2), lsb-base (>= 3.2-14) Recommends: mailx | mailutils Suggests: gsmartcontrol, smart-notifier Conflicts: smartsuite, ucsc-smartsuite Filename: pool/main/s/smartmontools/smartmontools_6.2+svn3841-1.2_i386.deb Size: 429434 MD5sum: 57851cc31e540365a62a2a44a051da00 SHA1: 67117be42a75efaceb96ebc1b06760a778f12e5e SHA256: d1df18616296a9bc2628768287a83703f9e52b839f8fda4d9926c5168dcce91e Description: control and monitor storage systems using S.M.A.R.T. Homepage: http://smartmontools.sourceforge.net/ Description-md5: ea81561661ccfc1b07aa52e4cc37874a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: smbclient Priority: optional Section: net Installed-Size: 879 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: samba (<< 2.999+3.0.alpha21-4), samba-doc (<< 2:4.0.5~), samba4-clients (<< 4.0.5), smbget Provides: samba-client Depends: samba-common (= 2:4.1.6+dfsg-1ubuntu2), libbsd0 (>= 0.0), libc6 (>= 2.8), libpopt0 (>= 1.14), libreadline6 (>= 6.0), libroken18-heimdal (>= 1.4.0+git20110226), libsmbclient (>= 2:4.0.3+dfsg1), libtalloc2 (>= 2.0.4~git20101213), libtevent0 (>= 0.9.9), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: dpkg (>= 1.15.6~) Suggests: cifs-utils, heimdal-clients Conflicts: samba-doc (<< 2:4.0.5~), samba4-clients (<< 4.0.3+dfsg1-0.1ubuntu3) Filename: pool/main/s/samba/smbclient_4.1.6+dfsg-1ubuntu2_i386.deb Size: 242108 MD5sum: 86d770e1134a5ba41021d5bd94d41c72 SHA1: f68a1565ea3f7bdaf7670555d9dfa6a40edf4c73 SHA256: aac9252553f2402f07f0fbed22423a5349051059a6b4ff09164361922af9f13a Description: command-line SMB/CIFS clients for Unix Homepage: http://www.samba.org Description-md5: 476018eed30b7f1e76b02afe22aaf008 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: smoke-dev-tools Priority: optional Section: devel Installed-Size: 1105 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokegen Version: 4:4.13.0-0ubuntu1 Replaces: libsmokeqt4-dev (<< 4:4.7.0) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt4-xml (>= 4:4.5.3), libqtcore4 (>= 4:4.8.0), libsmokebase3 (= 4:4.13.0-0ubuntu1), libstdc++6 (>= 4.4.0) Breaks: libsmokeqt4-dev (<< 4:4.7.0) Filename: pool/main/s/smokegen/smoke-dev-tools_4.13.0-0ubuntu1_i386.deb Size: 326838 MD5sum: 25304c0a349e55747a2bdcbbadc4132d SHA1: acf47c0b699dbdbf0f83cf54e9eee2c3795a295a SHA256: 36274db7ee9a5ffce4bc9961384d1c8c680c6846d3f5073d05632875d377f7e5 Description: SMOKE development tools Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokegen Description-md5: 4a9c152821a22749c41dfb3c59991f20 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: smokegen-dbg Priority: extra Section: debug Installed-Size: 3189 Maintainer: Kubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: smokegen Version: 4:4.13.0-0ubuntu1 Replaces: kdebindings-dbg Depends: libsmokebase3 (= 4:4.13.0-0ubuntu1) Recommends: smoke-dev-tools (= 4:4.13.0-0ubuntu1), libqt4-dbg Breaks: kdebindings-dbg Filename: pool/main/s/smokegen/smokegen-dbg_4.13.0-0ubuntu1_i386.deb Size: 3065654 MD5sum: 8541ea8776b8d08d0c5b438dede008ed SHA1: 011ddaf483f39e53b220c970ce9676b4dd9d079b SHA256: a0a6849f2599050ce92588e693db591dd1bad9bed2da276a5c5a14994f835c31 Description: SMOKE development tools -- debug symbols Homepage: http://projects.kde.org/projects/kde/kdebindings/smoke/smokegen Description-md5: 94e89920bb40cf8e7799c29a5b366383 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sni-qt Priority: optional Section: x11 Installed-Size: 183 Maintainer: Kubuntu Developers Architecture: i386 Version: 0.2.6-0ubuntu1 Depends: libc6 (>= 2.2), libdbusmenu-qt2 (>= 0.3.2), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.6.1), libqtcore4 (>= 4:4.7.3-1ubuntu3~), libqtgui4 (>= 4:4.7.3), libstdc++6 (>= 4.1.1) Filename: pool/main/s/sni-qt/sni-qt_0.2.6-0ubuntu1_i386.deb Size: 57556 MD5sum: 050d9b5e982b0fadf738badc4baa8a70 SHA1: 69f06632354c3466260364a3a2b5b22736a8d27a SHA256: 22ca8c1ad29d118c001c164bcde188e2de44f1d47a24cae9065f96f13504a720 Description: indicator support for Qt Multi-Arch: same Homepage: https://launchpad.net/sni-qt Description-md5: c0515721f2af4cef344b06fad7f320aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: snmp Priority: optional Section: net Installed-Size: 493 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: i386 Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Depends: libc6 (>= 2.4), libsnmp30 (>= 5.7.2~dfsg), libssl1.0.0 (>= 1.0.0), libsnmp-base Recommends: perl-modules Breaks: libsnmp15 (<< 5.7.2~dfsg-0.1) Filename: pool/main/n/net-snmp/snmp_5.7.2~dfsg-8.1ubuntu3_i386.deb Size: 142938 MD5sum: 367460116bdf3ca3131d6a7798c31d27 SHA1: 26f7f2db3378cf219e167ce2b12049c595180084 SHA256: 8ce8aa86e8ebf0fbe35904e2d5c375578489d8a2a1cf4025a0f112eb5cd9115b Description: SNMP (Simple Network Management Protocol) applications Homepage: http://net-snmp.sourceforge.net/ Description-md5: ca9254c1be9e571fd6ae9298d0545de5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: snmpd Priority: optional Section: net Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Net-SNMP Packaging Team Architecture: i386 Source: net-snmp Version: 5.7.2~dfsg-8.1ubuntu3 Depends: libc6 (>= 2.4), libmysqlclient18 (>= 5.5.24+dfsg-1), libsnmp30 (>= 5.7.2~dfsg), libwrap0 (>= 7.6-4~), debconf (>= 0.5) | debconf-2.0, adduser, debconf, lsb-base (>= 3.2-13), libsnmp-base Filename: pool/main/n/net-snmp/snmpd_5.7.2~dfsg-8.1ubuntu3_i386.deb Size: 72830 MD5sum: 524cb68a3f7f12f1a3ec98f52e950620 SHA1: 184bac20d77f71bd05a4c9f457154b043360c619 SHA256: a3bd71630ba74ed5acd4f23faf28f4defaeb0ee77debc1876ee2791945cc6a9c Description: SNMP (Simple Network Management Protocol) agents Homepage: http://net-snmp.sourceforge.net/ Description-md5: 9dc6ec703377042ed23b16c47ed5cb6c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: software-center Priority: optional Section: gnome Installed-Size: 2920 Maintainer: Ubuntu Developers Architecture: all Version: 13.10-0ubuntu4 Replaces: gnome-app-install Provides: gnome-app-install Depends: python:any (>= 2.7.1-0ubuntu2), iso-codes, app-install-data (>= 0.4.0), aptdaemon (>= 0.40), software-center-aptdaemon-plugins, humanity-icon-theme, gir1.2-glib-2.0 (>= 1.31), gir1.2-gtk-3.0, gir1.2-gmenu-3.0 (>= 3.1.5), gir1.2-webkit-3.0, gvfs-backends, python-gi (>= 3.4.0-1ubuntu0.1), python-gi-cairo, python-xapian, python-apt (>= 0.8.3ubuntu4), python-aptdaemon (>= 0.40), python-aptdaemon.gtk3widgets, python-dbus, python-defer, python-lxml, policykit-1, policykit-1-gnome | policykit-1-kde, python-xdg, ubuntu-sso-client, python-piston-mini-client (>= 0.1+bzr29), oneconf (>= 0.2.6), python-oneconf (>= 0.3) | oneconf (<< 0.3), python-debtagshw, ubuntu-extras-keyring Recommends: lsb-release, apt-xapian-index (>= 0.38ubuntu1), update-notifier, software-properties-gtk, sessioninstaller, xz-utils (>= 5.1.1alpha+20120614-1) Conflicts: gnome-app-install (<< 1) Filename: pool/main/s/software-center/software-center_13.10-0ubuntu4_all.deb Size: 325012 MD5sum: 3dcc67daa4ab6ba51dd2e392ca94116b SHA1: ab1a5711bf31f50417e0294011e21b0d3bd4c1ec SHA256: 0b46f974424b89f216504897966eaad5b58c0dbc04002e1cc183766cc4fb9e49 Description: Utility for browsing, installing, and removing software Homepage: https://launchpad.net/software-center Description-md5: 1dc0e162e89af83013265b684e2d3742 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: software-center-aptdaemon-plugins Priority: optional Section: gnome Installed-Size: 80 Maintainer: Michael Vogt Architecture: all Version: 0.1.6build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python3-gi, gir1.2-glib-2.0, python-piston-mini-client Breaks: aptdaemon (<< 0.43+bzr760) Filename: pool/main/s/software-center-aptdaemon-plugins/software-center-aptdaemon-plugins_0.1.6build1_all.deb Size: 5750 MD5sum: f1794f59f2d716ac1c80c3094e57af3c SHA1: eabe62b3a7de994b079a1dbfc374b33414f634e1 SHA256: 185cc80590feb52c9f8120b21692d304d86a257b860b07a173a4c7f2a0708516 Description: The aptdaemon plugins for software-center Description-md5: 08ea9d85331761dcca5ae154d2c0f707 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: software-properties-common Priority: optional Section: admin Installed-Size: 184 Maintainer: Michael Vogt Architecture: all Source: software-properties Version: 0.92.36 Replaces: python-software-properties (<< 0.85), python3-software-properties (<< 0.85) Depends: python3, python3:any (>= 3.3.2-2~), python3-gi, gir1.2-glib-2.0, python-apt-common (>= 0.9), python3-dbus, python3-software-properties (= 0.92.36), ca-certificates Breaks: python-software-properties (<< 0.85), python3-software-properties (<< 0.85) Filename: pool/main/s/software-properties/software-properties-common_0.92.36_all.deb Size: 9290 MD5sum: cc73b80341a355a631cb29b1f68f060f SHA1: a55e945e2b8b09c2a26bb1815e0773e4102522e9 SHA256: 03cfae403ebdb0f200adc397d2b20a217f6bb2127ce16dac81af1e8b6b4afa7b Description: manage the repositories that you install software from (common) Description-md5: d19f432480048ad00ac5c2bfd116cd00 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: software-properties-gtk Priority: optional Section: gnome Installed-Size: 422 Maintainer: Michael Vogt Architecture: all Source: software-properties Version: 0.92.36 Depends: python3, python3:any (>= 3.3.2-2~), python3-software-properties (= 0.92.36), python3-gi, gir1.2-gtk-3.0, python3-aptdaemon.gtk3widgets, software-properties-common, ubuntu-drivers-common (>= 1:0.2.75) Filename: pool/main/s/software-properties/software-properties-gtk_0.92.36_all.deb Size: 46764 MD5sum: 133b18e32985f8ddbc6bd1e6aea82917 SHA1: b179702cfde4aab281e4b688d40cc7fcf35835d5 SHA256: 52f7bbfb93d5770274d25f768a22168eaea89d44508eb63fa1f00ac2dc4fd032 Description: manage the repositories that you install software from (gtk) Description-md5: 1912baba2086cd851f5a53b65d6c9eea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: soprano-daemon Priority: extra Section: utils Installed-Size: 555 Maintainer: Ubuntu Developers Original-Maintainer: Debian Qt/KDE Maintainers Architecture: i386 Source: soprano Version: 2.9.4+dfsg1-0ubuntu2 Replaces: libsoprano-dev (<< 2.3.0+dfsg.1-1), libsoprano4 (<< 2.3.0+dfsg.1-1) Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt4-dbus (>= 4:4.5.3), libqtcore4 (>= 4:4.8.0), libraptor2-0 (>= 2.0.8), librdf0 (>= 1.0.16), libstdc++6 (>= 4.1.1) Recommends: libsoprano4 (= 2.9.4+dfsg1-0ubuntu2) Suggests: virtuoso-minimal Breaks: libsoprano-dev (<< 2.3.0+dfsg.1-1), libsoprano4 (<< 2.3.0+dfsg.1-1) Filename: pool/main/s/soprano/soprano-daemon_2.9.4+dfsg1-0ubuntu2_i386.deb Size: 154446 MD5sum: c665ae295fe34d6921847b7884b67e97 SHA1: e4b13dd5d021564e2a8c110a0b8f55e5f24a081f SHA256: e7ae79d7cfe3e61c37e428eb0951a8b2e6969836bd4aba24caf2925f8ba0c70a Description: daemon for the Soprano RDF framework Homepage: http://soprano.sourceforge.net Description-md5: 3de33c598636fca61e64a47b6c17fda0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: sosreport Priority: optional Section: admin Installed-Size: 864 Maintainer: Adam Stokes Architecture: i386 Version: 3.1-1ubuntu2 Depends: python3:any (>= 3.3.2-2~), python3-six Filename: pool/main/s/sosreport/sosreport_3.1-1ubuntu2_i386.deb Size: 66056 MD5sum: f085b60018c7cb38b55bd389595ab69f SHA1: 43fdfe23f7684fa1b9bf3b16ba1e65e30bf9a78b SHA256: 49a917f702af8454df21e4aacc59f694c861966128df48130308a77bafee1ce5 Description: Set of tools to gather troubleshooting data from a system Homepage: https://github.com/sosreport/sosreport Description-md5: 5b3e7a1f7fbde7625dc009697c8ed440 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sound-theme-freedesktop Priority: extra Section: sound Installed-Size: 541 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 0.8-1 Replaces: freedesktop-sound-theme (<< 0.7.pristine) Breaks: freedesktop-sound-theme (<< 0.7.pristine) Filename: pool/main/s/sound-theme-freedesktop/sound-theme-freedesktop_0.8-1_all.deb Size: 384852 MD5sum: f7048c3d03228ec96f10fa394b589b70 SHA1: 332c5386ad0cef1a5664cb0eb4f56a8dca73fc22 SHA256: bc89ca4acb6dd5bbec646dbbcaf90caed9510702eba305164ef5632e527bc43e Description: freedesktop.org sound theme Multi-Arch: foreign Homepage: http://www.freedesktop.org/ Description-md5: da6611b2187811b48e41e74c062f00e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: sp Priority: optional Section: text Installed-Size: 465 Maintainer: Ubuntu Developers Original-Maintainer: Neil Roeth Architecture: i386 Source: jade (1.2.1-47.3ubuntu1) Version: 1.3.4-1.2.1-47.3ubuntu1 Depends: libc6 (>= 2.0), libgcc1 (>= 1:4.1.1), libsp1c2 (>= 1.3.4-1.2.1-44), libstdc++6 (>= 4.1.1) Suggests: doc-base, sgml-data Filename: pool/main/j/jade/sp_1.3.4-1.2.1-47.3ubuntu1_i386.deb Size: 123648 MD5sum: 1811af02801f713c518ba2e7d271971b SHA1: fd53b4435c1dce367a7fb53626fe7b3c5e8aee4c SHA256: b1c9b5de7f0d68722423d1bc12ac7335e95e6ae9efa57bca9fc5cef9577092b2 Description: James Clark's SGML parsing tools Multi-Arch: foreign Description-md5: e3d72d6fafb6531320dbaf608dd8ef69 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: spamassassin Priority: optional Section: mail Installed-Size: 3575 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: all Version: 3.4.0-1ubuntu1 Provides: libmail-spamassassin-perl Depends: perl (>= 5.8.0), libhtml-parser-perl (>= 3.43), libsocket6-perl, libsys-hostname-long-perl, libarchive-tar-perl, libwww-perl, libnet-dns-perl (>= 0.34), libnetaddr-ip-perl, perl-modules (>= 5.10) | libio-zlib-perl (>= 1.04), adduser Recommends: spamc (>= 2.30), sa-compile, libmail-spf-perl, libsys-syslog-perl, gnupg, libio-socket-inet6-perl Suggests: razor (>= 2.361-2), libio-socket-ssl-perl, libdbi-perl, pyzor, libcompress-zlib-perl, libmail-dkim-perl Conflicts: gotmail (<= 0.8.1-1), spamass-milter (<< 0.2.0-7) Filename: pool/main/s/spamassassin/spamassassin_3.4.0-1ubuntu1_all.deb Size: 1034006 MD5sum: 38865a8e27f4a31272b3402ac59fa4e6 SHA1: 3daa27f64d951cbb5302cbe276213dbcbcd545cb SHA256: 216887ec4d48556cd02d08cc6ec5a3501b49d36a616d6ca45a520a7bb194f546 Description: Perl-based spam filter using text analysis Homepage: http://www.spamassassin.org/ Description-md5: dc09f4668ebbf8e10ef779ed26e5716c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: spamc Priority: optional Section: mail Installed-Size: 180 Maintainer: Ubuntu Developers Original-Maintainer: Noah Meyerhans Architecture: i386 Source: spamassassin Version: 3.4.0-1ubuntu1 Depends: libc6 (>= 2.7), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4) Suggests: spamassassin Conflicts: spamassassin (<< 2.30-2) Filename: pool/main/s/spamassassin/spamc_3.4.0-1ubuntu1_i386.deb Size: 51020 MD5sum: 34297907875ec9c78381c541a9fbf37b SHA1: e121a426050d068df1a17e4e0cae3649e6542c02 SHA256: b94133cc23cba25d70ec7e4e4c51188de22c52f42fabb56f762d62975cd8cc22 Description: Client for SpamAssassin spam filtering daemon Homepage: http://www.spamassassin.org/ Description-md5: b2e3d1db161689a544d73b142bacbe57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-gnome-desktop Package: speech-dispatcher Priority: extra Section: sound Installed-Size: 1124 Maintainer: Ubuntu Developers Original-Maintainer: Debian TTS Team Architecture: i386 Version: 0.8-5ubuntu1 Depends: adduser, lsb-base (>= 3.0-10), speech-dispatcher-audio-plugins (= 0.8-5ubuntu1), libc6 (>= 2.16), libdotconf0 (>= 1.0.13), libespeak1 (>= 1.30), libglib2.0-0 (>= 2.35.9), libltdl7 (>= 2.4.2), libspeechd2 (>= 0.7.1) Recommends: pulseaudio Suggests: libttspico-utils, speech-dispatcher-doc-cs, speech-dispatcher-festival, speech-dispatcher-flite Filename: pool/main/s/speech-dispatcher/speech-dispatcher_0.8-5ubuntu1_i386.deb Size: 293466 MD5sum: b2ffe6ba3148e8212cb2adfe1dd43542 SHA1: 46864ad61a1865a34d7404cb2bb123ee8c32e575 SHA256: 7d08e034098e3ac8fa2f9675c64f3d6429b7a6d6fb13543fc3c741250a4c56b7 Description: Common interface to speech synthesizers Homepage: http://devel.freebsoft.org/speechd Description-md5: 9726217383c5d7c9454fe7d0db64bda2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: speech-dispatcher-audio-plugins Priority: optional Section: sound Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: Debian TTS Team Architecture: i386 Source: speech-dispatcher Version: 0.8-5ubuntu1 Replaces: speech-dispatcher (<< 0.8-1) Depends: libasound2 (>= 1.0.16), libc6 (>= 2.4), libglib2.0-0 (>= 2.12.0), libpulse0 (>= 1:0.99.1) Pre-Depends: multiarch-support Breaks: speech-dispatcher (<< 0.8-1) Filename: pool/main/s/speech-dispatcher/speech-dispatcher-audio-plugins_0.8-5ubuntu1_i386.deb Size: 21226 MD5sum: 63e5cda2f1a619ec6ade43ec40bde081 SHA1: db88a43b6f8784b0f7ce150ba6f51ab8d633ddca SHA256: 395d428b9237b8ec885d879d4e09373aa8f4ca2083bf55acff7011a252b68952 Description: Speech Dispatcher: Audio output plugins Multi-Arch: same Homepage: http://devel.freebsoft.org/speechd Description-md5: 97e11b8d3a4db4250a1597bb395285e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: speex-doc Priority: optional Section: doc Installed-Size: 1544 Maintainer: Ubuntu Developers Original-Maintainer: Ron Lee Architecture: all Source: speex Version: 1.2~rc1.1-1ubuntu1 Suggests: speex Filename: pool/main/s/speex/speex-doc_1.2~rc1.1-1ubuntu1_all.deb Size: 580400 MD5sum: 14cdae7af63711f8aea45860a760981a SHA1: dc74cc35d7949f7f10cca5c7fa58f8559f1690a7 SHA256: 89ce7257ad6343499228a9d5d400d2cf4277e63e3d0dd32d649c4e661fe169ff Description: Documentation for speex Homepage: http://www.speex.org/ Description-md5: 781c28c25cd4fa72bbb3a3a126d089f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: spell Priority: optional Section: text Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Giacomo Catenazzi Architecture: i386 Version: 1.0-24 Depends: libc6 (>= 2.3.4), ispell | aspell, iamerican | ibritish | ispell-dictionary Filename: pool/main/s/spell/spell_1.0-24_i386.deb Size: 14000 MD5sum: fce4ddcf34183a32ec656b2b2cf6c376 SHA1: 5dee94989c5f53a6c4b87f0552f178ec01099de1 SHA256: 8a4f19ecd35b64c59641eaaa995de50b1efd778c54340f83fa094b10d57c3c04 Description: GNU Spell, a clone of Unix `spell' Homepage: http://directory.fsf.org/project/spell/ Description-md5: 5a76d1ef6292acb49c2e7067087f0aff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sphinx-common Priority: optional Section: python Installed-Size: 1497 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sphinx Version: 1.2.2+dfsg-1ubuntu1 Replaces: python-sphinx (<< 1.1) Depends: libjs-sphinxdoc (= 1.2.2+dfsg-1ubuntu1) Recommends: python-sphinx | python3-sphinx Conflicts: python-sphinx (<< 1.1) Filename: pool/main/s/sphinx/sphinx-common_1.2.2+dfsg-1ubuntu1_all.deb Size: 391856 MD5sum: 34e085129f059277142c64a4bc3d2172 SHA1: 157c23801e6e6fbe799041edad56c07a093dca81 SHA256: f0647c01b45fd86231fd02a48cd808422f1d7e8312f20b1e8109c3bd8d49ca7f Description: documentation generator for Python projects - common data Homepage: http://sphinx-doc.org/ Description-md5: bd9984218442c73c2721b81e265ef953 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sphinx-doc Priority: optional Section: doc Installed-Size: 2815 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Source: sphinx Version: 1.2.2+dfsg-1ubuntu1 Replaces: python-sphinx (<< 1.1) Depends: libjs-sphinxdoc (>= 1.0) Conflicts: python-sphinx (<< 1.1) Filename: pool/main/s/sphinx/sphinx-doc_1.2.2+dfsg-1ubuntu1_all.deb Size: 998294 MD5sum: 5c984799095e9b65de9e283a5dc60878 SHA1: 9f5d245b322b7fde28f3e1790504b186fb2bc7fd SHA256: 7da597537511f020f811f7c7f82aff1aaf68538585054c967efc2cb68747e458 Description: documentation generator for Python projects - documentation Homepage: http://sphinx-doc.org/ Description-md5: 8ffc8b8c69e49e0b472daf3c0cbe89be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sphinx-voxforge-hmm-en Priority: extra Section: sound Installed-Size: 28046 Maintainer: Ubuntu Developers Architecture: all Source: sphinx-voxforge-en Version: 0.1.1~daily20130301-0ubuntu1 Filename: pool/main/s/sphinx-voxforge-en/sphinx-voxforge-hmm-en_0.1.1~daily20130301-0ubuntu1_all.deb Size: 22015318 MD5sum: d8ad5706980bba62c3511142be7c0343 SHA1: 592927e7aa5c160520eb3325a4e7b67f134fa730 SHA256: 3cbeb77b22927c280bf6d56c539f1aee6d889dc5b336dc68ba56161037a0b0ff Description: English sphinx acoustic model built from Voxforge audio corpus Homepage: http://www.voxforge.org/ Description-md5: 85dbd9eae5c05d34f08f6ebd648d2d58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: sphinx-voxforge-lm-en Priority: extra Section: sound Installed-Size: 5434 Maintainer: Ubuntu Developers Architecture: all Source: sphinx-voxforge-en Version: 0.1.1~daily20130301-0ubuntu1 Filename: pool/main/s/sphinx-voxforge-en/sphinx-voxforge-lm-en_0.1.1~daily20130301-0ubuntu1_all.deb Size: 1960252 MD5sum: ab6920ea3056d3cef80feb8129355805 SHA1: 2da685ed3ccdec2355cd34a61048567559396def SHA256: b6e81dc86693b9cf50ada2c55f108adf07f0c2d3fd4438ba2316e0fc6438b072 Description: English sphinx language model built from Voxforge audio corpus Homepage: http://www.voxforge.org/ Description-md5: 0b5b2cf8e21de4630aa242d3fa088837 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: sqlite3 Priority: optional Section: misc Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: i386 Version: 3.8.2-1ubuntu2 Depends: libc6 (>= 2.4), libreadline6 (>= 6.0), libsqlite3-0 (= 3.8.2-1ubuntu2) Suggests: sqlite3-doc Filename: pool/main/s/sqlite3/sqlite3_3.8.2-1ubuntu2_i386.deb Size: 28406 MD5sum: d9fb117ba39c0aaab4f4f00dec4ccffa SHA1: cfc72850a3b9b88f87fa02e9bf1e41800fc0de41 SHA256: a34db12b88a8b61412779af868c9c0857efebb2de725c879eb18e302075631bb Description: Command line interface for SQLite 3 Multi-Arch: foreign Homepage: http://www.sqlite.org/ Description-md5: 60cd5a660be500525f955c43bd7981cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome Package: sqlite3-doc Priority: optional Section: doc Installed-Size: 9483 Maintainer: Ubuntu Developers Original-Maintainer: Laszlo Boszormenyi (GCS) Architecture: all Source: sqlite3 Version: 3.8.2-1ubuntu2 Recommends: sqlite3 Filename: pool/main/s/sqlite3/sqlite3-doc_3.8.2-1ubuntu2_all.deb Size: 2708330 MD5sum: 0759259efce4d42815e37488e17467df SHA1: 356b2ec43bc5dedd828b3d68a8bce7950bc32cd9 SHA256: a0684f5d9bdfb270a50c4111a1cac83c61981fb7d37cd6b795d1f8ba87b7c785 Description: SQLite 3 documentation Homepage: http://www.sqlite.org/ Description-md5: 012466e9aa8467597bb2ec5a942a4472 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: squashfs-tools Priority: optional Section: admin Installed-Size: 274 Maintainer: Ubuntu Developers Original-Maintainer: Filesystems Group Architecture: i386 Version: 1:4.2+20130409-2 Depends: libc6 (>= 2.8), liblzma5 (>= 5.1.1alpha+20110809), liblzo2-2, zlib1g (>= 1:1.1.4) Filename: pool/main/s/squashfs-tools/squashfs-tools_4.2+20130409-2_i386.deb Size: 89434 MD5sum: c6c1e38e077a2f546440cc1e8892803d SHA1: a9c5d9bd1d99db9a45d70174227fc5de3d63c719 SHA256: 90f416dea303ec2207423f3269341f5b93e2a4d10bdeac4858e5b29e25e55f54 Description: Tool to create and append to squashfs filesystems Homepage: http://squashfs.sourceforge.net/ Description-md5: 17dcc783a84cdb071acdaa9841a6522c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: squashfs-tools-dbg Priority: extra Section: debug Installed-Size: 307 Maintainer: Ubuntu Developers Original-Maintainer: Filesystems Group Architecture: i386 Source: squashfs-tools Version: 1:4.2+20130409-2 Depends: squashfs-tools (= 1:4.2+20130409-2) Filename: pool/main/s/squashfs-tools/squashfs-tools-dbg_4.2+20130409-2_i386.deb Size: 235282 MD5sum: 9c132b2c0755c04a332b24d4f06b7a38 SHA1: 0fe01be50692aaca258d8eca06678d9ab7a61997 SHA256: 7d2aacac6241ec2987b35a14b6e75ae2444a560ad57b72cc8d5abfcfae3bb929 Description: Tool to create and append to squashfs filesystems (debug) Homepage: http://squashfs.sourceforge.net/ Description-md5: dae020a02abd8b7816b3667608e5514a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: squid-deb-proxy Priority: extra Section: net Installed-Size: 105 Maintainer: Ubuntu Developers Original-Maintainer: Michael Vogt Architecture: all Version: 0.8.6 Depends: debconf (>= 0.5) | debconf-2.0, squid3 Recommends: avahi-utils Filename: pool/main/s/squid-deb-proxy/squid-deb-proxy_0.8.6_all.deb Size: 11990 MD5sum: 55709f341a55604b09f538cc371073ed SHA1: 9a512cba4b71f676e794f377454db11f7a653ab1 SHA256: 0923a39c70a10a945b0a6dd81013a691c35640762c521b25ce33d0d908d39103 Description: Squid proxy configuration to optimize package downloads Homepage: https://launchpad.net/squid-deb-proxy Description-md5: 41e200bb53a24b83c8c354c625759190 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: squid-langpack Priority: optional Section: web Installed-Size: 2142 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: all Version: 20121005-1 Filename: pool/main/s/squid-langpack/squid-langpack_20121005-1_all.deb Size: 333618 MD5sum: c01476b433c8b2bbecb11bb054a1d90a SHA1: f0f024908783942546a14d7cd4e46b70f0860412 SHA256: 536bc64c219d60c2f34222627ffe228b1f2bc241d39c3c70673c4eec328da4ff Description: Localized error pages for Squid Homepage: http://www.squid-cache.org Description-md5: 04e20b604c7b0479aa6f6600450b1def Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: squid3 Priority: optional Section: web Installed-Size: 6000 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: i386 Version: 3.3.8-1ubuntu6 Depends: libc6 (>= 2.15), libcap2 (>= 2.10), libcomerr2 (>= 1.01), libdb5.3, libecap2, libexpat1 (>= 2.0.1), libgcc1 (>= 1:4.1.1), libgssapi-krb5-2 (>= 1.10+dfsg~), libkrb5-3 (>= 1.6.dfsg.2), libldap-2.4-2 (>= 2.4.7), libltdl7 (>= 2.4.2), libnetfilter-conntrack3, libpam0g (>= 0.99.7.1), libsasl2-2 (>= 2.1.24), libstdc++6 (>= 4.6), libxml2 (>= 2.7.4), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), netbase, adduser, logrotate (>= 3.5.4-1), squid3-common (= 3.3.8-1ubuntu6), lsb-base, ssl-cert (>= 1.0-11ubuntu1) Suggests: squidclient, squid-cgi, squid-purge, resolvconf (>= 0.40), smbclient, ufw, winbindd, apparmor (>= 2.3) Filename: pool/main/s/squid3/squid3_3.3.8-1ubuntu6_i386.deb Size: 1703386 MD5sum: 7e7aad738aa6a56bf93a1ebc51831876 SHA1: c33a8495b80af2d2ee60dfa91821bc7534f0aa0a SHA256: 4a50d6ec424691491f66ed0e464428b1e91a94e728b2ea24f67fb8cdc97dfe7f Description: Full featured Web Proxy cache (HTTP proxy) Homepage: http://www.squid-cache.org Description-md5: 03beec2567a9d8411e86109a53d6316a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: squid3-common Priority: optional Section: web Installed-Size: 344 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: all Source: squid3 Version: 3.3.8-1ubuntu6 Depends: squid-langpack (>= 20110214-1) Filename: pool/main/s/squid3/squid3-common_3.3.8-1ubuntu6_all.deb Size: 152790 MD5sum: daf4876f3c73d16818993d52a6bf608d SHA1: 17718245569758a3cf041dfd829896a2926aabe6 SHA256: 8e33cec286aa244b4564db9854243a6370787a7d3f05530a69adfbfef3ab13ac Description: Full featured Web Proxy cache (HTTP proxy) - common files Homepage: http://www.squid-cache.org Description-md5: 3e901946e35992c109fbb47e7164ec67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: squid3-dbg Priority: extra Section: debug Installed-Size: 35094 Maintainer: Ubuntu Developers Original-Maintainer: Luigi Gangitano Architecture: i386 Source: squid3 Version: 3.3.8-1ubuntu6 Depends: squid3 (= 3.3.8-1ubuntu6) Filename: pool/main/s/squid3/squid3-dbg_3.3.8-1ubuntu6_i386.deb Size: 8291924 MD5sum: d3b4977978ce5f4020246473497b58cd SHA1: 48ced67ffb30b1a45e71c18ed2b68fe1dba80a29 SHA256: 93ee70ebae8c1d26d23d4c4e552b202bca645f3bab226e6a57ed767f07fd8c1c Description: Full featured Web Proxy cache (HTTP proxy) - Debug symbols Homepage: http://www.squid-cache.org Description-md5: 19d07746abc740ae906d1c40fe4fb3a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ss-dev Priority: extra Section: libdevel Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Theodore Y. Ts'o Architecture: i386 Source: e2fsprogs (1.42.9-3ubuntu1) Version: 2.0-1.42.9-3ubuntu1 Depends: libc6-dev | libc-dev, libss2 (= 1.42.9-3ubuntu1), comerr-dev Filename: pool/main/e/e2fsprogs/ss-dev_2.0-1.42.9-3ubuntu1_i386.deb Size: 16244 MD5sum: d3ce058b4a3857561239e1f691755103 SHA1: 41808ae20cd4211802bc7a23d1759e48a87e6022 SHA256: 68f028e68cb0ea397b40ec82d0c72fbd7a8a03e7a7e3d5da37cf57a92dcbc767 Description: command-line interface parsing library - headers and static libraries Homepage: http://e2fsprogs.sourceforge.net Description-md5: 9f7a224dc59f72d5dc2ab6204013b575 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ssh Priority: optional Section: net Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSH Maintainers Architecture: all Source: openssh Version: 1:6.6p1-2ubuntu1 Depends: openssh-client (>= 1:6.6p1-2ubuntu1), openssh-server (>= 1:6.6p1-2ubuntu1) Filename: pool/main/o/openssh/ssh_6.6p1-2ubuntu1_all.deb Size: 1116 MD5sum: 100fd88c47dcebb10bc87be3fce1d0dc SHA1: fe21c9f99eb5d6640c8826d97414596219cea971 SHA256: 1fd36f6c1dfa778ad57cd0f109cd6cf9921f66645aa407ac4dad9250f714840c Description: secure shell client and server (metapackage) Homepage: http://www.openssh.org/ Description-md5: b00e309365895c14a10af55945efb136 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ssh-askpass-gnome Priority: optional Section: gnome Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian OpenSSH Maintainers Architecture: i386 Source: openssh Version: 1:6.6p1-2ubuntu1 Replaces: ssh (<< 1:3.5p1-3) Provides: ssh-askpass Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.12.0), libgtk2.0-0 (>= 2.8.0), libx11-6, openssh-client | ssh (>= 1:1.2pre7-4) | ssh-krb5 Filename: pool/main/o/openssh/ssh-askpass-gnome_6.6p1-2ubuntu1_i386.deb Size: 14392 MD5sum: 4d8bbe41df0292e2c7e80fe8db70c8b8 SHA1: ccef287d63b1ab806b3eae09478d94652ae709f6 SHA256: 04d4be63d0209c8942a7e73ab05d8ad1006d77fceeb35f4c4270329e70fa06fa Description: interactive X program to prompt users for a passphrase for ssh-add Homepage: http://www.openssh.org/ Description-md5: e888e7e8e5a6ee7b30f000dc22ed083f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ssh-import-id Priority: extra Section: misc Installed-Size: 83 Maintainer: Dustin Kirkland Architecture: all Version: 3.21-0ubuntu1 Depends: ca-certificates, openssh-client, python-requests (>= 1.1.0), wget, python (>= 2.7), python (<< 2.8) Recommends: openssh-server Filename: pool/main/s/ssh-import-id/ssh-import-id_3.21-0ubuntu1_all.deb Size: 9624 MD5sum: 1deb9e2ae1f2e40a8f7d884402343b0b SHA1: c0d1f1108629aed9de3f57e86eb9723dc5fc66ba SHA256: 14e778ad33664ead8275708a76c209417906f3db64e711df0711050fd7491d13 Description: securely retrieve an SSH public key and install it locally Homepage: http://launchpad.net/ssh-import-id Description-md5: 28404285c28db44d2e1c02dc4290d166 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, cloud-image, openssh-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master Package: sshfs Priority: optional Section: utils Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: Bartosz Fenski Architecture: i386 Source: sshfs-fuse Version: 2.5-1ubuntu1 Depends: libc6 (>= 2.4), libfuse2 (>= 2.8.1), libglib2.0-0 (>= 2.12.0), fuse, openssh-client Filename: pool/main/s/sshfs-fuse/sshfs_2.5-1ubuntu1_i386.deb Size: 41534 MD5sum: 06d2437206f1ef157599a0325c396744 SHA1: c5edb5a4d0168ae885dea81fc0d46698e9c6383c SHA256: df662886fab43a5d1f5b46286dd32ab27f1a7cbd6d330cc5947ded29ab0d0426 Description: filesystem client based on SSH File Transfer Protocol Homepage: http://fuse.sourceforge.net/sshfs.html Description-md5: 53290533db24b88f6a76ffb069dba11c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sshfs-dbg Priority: extra Section: utils Installed-Size: 152 Maintainer: Ubuntu Developers Original-Maintainer: Bartosz Fenski Architecture: i386 Source: sshfs-fuse Version: 2.5-1ubuntu1 Depends: sshfs (= 2.5-1ubuntu1) Filename: pool/main/s/sshfs-fuse/sshfs-dbg_2.5-1ubuntu1_i386.deb Size: 103774 MD5sum: 20427e661b801612e31f3f90ffc13e80 SHA1: 53c58285fec97c971b576ab87a2fd622fb8e72b8 SHA256: fdc0b48b6c69e72caff8846b90eb48b583851695f41fbe210b4cb6e875710c92 Description: filesystem client based on SSH File Transfer Protocol (with debugging symbols) Homepage: http://fuse.sourceforge.net/sshfs.html Description-md5: 3e86d7c74f8f2af6d12d3346ed7c65c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ssl-cert Priority: optional Section: utils Installed-Size: 102 Maintainer: Ubuntu Developers Original-Maintainer: Debian Apache Maintainers Architecture: all Version: 1.0.33 Depends: debconf (>= 0.5) | debconf-2.0, openssl (>= 0.9.8g-9), adduser Suggests: openssl-blacklist Filename: pool/main/s/ssl-cert/ssl-cert_1.0.33_all.deb Size: 16650 MD5sum: bb2d2f616d7b4da9b76caa98002657eb SHA1: e2b01268291d438b7d457b5d3595c5b14e5400d1 SHA256: fde7cfb8e6e2fc3e13fd8b288fd5f63e7146058b95ec79686f97372293da4390 Description: simple debconf wrapper for OpenSSL Multi-Arch: foreign Description-md5: 5def45ff95c1ca066f6999553bb7628f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, mail-server, ubuntu-usb, print-server, postgresql-server, lamp-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: sssd Priority: extra Section: utils Installed-Size: 43 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Version: 1.11.5-1ubuntu3 Depends: sssd-common (= 1.11.5-1ubuntu3), sssd-ad (= 1.11.5-1ubuntu3), sssd-ipa (= 1.11.5-1ubuntu3), sssd-krb5 (= 1.11.5-1ubuntu3), sssd-ldap (= 1.11.5-1ubuntu3), sssd-proxy (= 1.11.5-1ubuntu3), python-sss (= 1.11.5-1ubuntu3) Filename: pool/main/s/sssd/sssd_1.11.5-1ubuntu3_i386.deb Size: 4134 MD5sum: ab7e3a4a7bdc492dd5fc5c5e9fa2c91b SHA1: 362a36140f29a0e151ca9e4ab698853896fcd86d SHA256: 795daeefbec1a13464d4700cb5cf28dba707e7fa267916a9fb448b39832ffe97 Description: System Security Services Daemon -- metapackage Multi-Arch: foreign Homepage: https://fedorahosted.org/sssd/ Description-md5: fbc7eaa314ae2423fee9d2943b3f4223 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-ad Priority: extra Section: utils Installed-Size: 308 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.4), libdhash1 (>= 0.3.0.1), libkrb5-3 (>= 1.10.2+dfsg), libldap-2.4-2 (>= 2.4.7), libsss-idmap0 (= 1.11.5-1ubuntu3), libtalloc2 (>= 2.0.4~git20101213), libtevent0 (>= 0.9.9), samba-libs (>= 2:4.1.6+dfsg), sssd-common (= 1.11.5-1ubuntu3), sssd-ad-common (= 1.11.5-1ubuntu3), sssd-krb5-common (= 1.11.5-1ubuntu3) Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-ad_1.11.5-1ubuntu3_i386.deb Size: 76622 MD5sum: a6ba3592139d670a3c0c1c75c3a4c46c SHA1: a8b104968631bd42d1ac9dbf01305f46459367bf SHA256: 5c66e403c12b48fbdbc63b5f6c98e8dbcb8574e692112c21b64e0f9eb913506c Description: System Security Services Daemon -- Active Directory back end Homepage: https://fedorahosted.org/sssd/ Description-md5: 4273ee06e2ffa001b1fbe0a4de26f278 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-ad-common Priority: extra Section: utils Installed-Size: 205 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdhash1 (>= 0.3.0.1), libldb1 (>= 0.9.21), libpopt0 (>= 1.14), libsss-idmap0, libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9), samba-libs (>= 2:4.1.6+dfsg), sssd-common (= 1.11.5-1ubuntu3) Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-ad-common_1.11.5-1ubuntu3_i386.deb Size: 48812 MD5sum: 796f26a8208af64325cce0e9d6d6ae92 SHA1: 3593ce7b967db0431e31d1580a98c12517bd3d70 SHA256: 8b47163d280ab540ffcca882ddcab8689c8f6fc0f54177509dfb0c65599c2bc1 Description: System Security Services Daemon -- PAC responder Homepage: https://fedorahosted.org/sssd/ Description-md5: dbd13e6ad445d781c84f0033e8c07ed7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-common Priority: extra Section: utils Installed-Size: 3300 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc-ares2 (>= 1.7.0), libc6 (>= 2.12), libdbus-1-3 (>= 1.1.1), libdhash1 (>= 0.3.0.1), libglib2.0-0 (>= 2.12.0), libini-config3 (>= 0.3.0.1), libkeyutils1, libkrb5-3 (>= 1.7dfsg), libldb1 (>= 0.9.21), libnl-3-200 (>= 3.2.7), libnl-route-3-200 (>= 3.2.7), libnspr4 (>= 2:4.9-2~) | libnspr4-0d (>= 1.8.0.10), libnss3 (>= 2:3.13.4-2~) | libnss3-1d (>= 3.12.0~1.9b1), libpam0g (>= 0.99.7.1), libpcre3, libpopt0 (>= 1.14), libsss-idmap0, libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.9), init-system-helpers (>= 1.13~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python, python-sss Recommends: bind9-host, libnss-sss, libpam-sss, libsss-sudo Suggests: apparmor, sssd-tools Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-common_1.11.5-1ubuntu3_i386.deb Size: 719964 MD5sum: ca72e50b8ec94b2190cd581fd27fe1e5 SHA1: 624a0cd3f933e7d688297c88471f3471f7f69c69 SHA256: 473447a49c4f18498d3a95c43709592fb74e20b145c1b5f998bb330a0d35c273 Description: System Security Services Daemon -- common files Homepage: https://fedorahosted.org/sssd/ Description-md5: a5ba2c9d00035681fc2f51380e1cdc52 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-ipa Priority: extra Section: utils Installed-Size: 596 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.4), libdhash1 (>= 0.3.0.1), libipa-hbac0 (= 1.11.5-1ubuntu3), libkrb5-3 (>= 1.10.2+dfsg), libldap-2.4-2 (>= 2.4.7), libsss-idmap0 (= 1.11.5-1ubuntu3), libtalloc2 (>= 2.0.4~git20101213), libtevent0 (>= 0.9.9), samba-libs (>= 2:4.1.6+dfsg), sssd-common (= 1.11.5-1ubuntu3), sssd-ad-common (= 1.11.5-1ubuntu3), sssd-krb5-common (= 1.11.5-1ubuntu3) Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-ipa_1.11.5-1ubuntu3_i386.deb Size: 145234 MD5sum: af8cad344cd675dcfec3fbab42d35b23 SHA1: de806de2c5a2c92c6e872f7edc5233fe8aa5b61f SHA256: 38dc5772982e00e8d1af63d86bf99602936c82baa23fa2a2378ee18e422d58e8 Description: System Security Services Daemon -- IPA back end Homepage: https://fedorahosted.org/sssd/ Description-md5: 2038cf62aa379855c7c1db16c87a719d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-krb5 Priority: extra Section: utils Installed-Size: 122 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.4), libdhash1 (>= 0.3.0.1), libkrb5-3 (>= 1.10.2+dfsg), sssd-common (= 1.11.5-1ubuntu3), sssd-krb5-common (= 1.11.5-1ubuntu3) Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-krb5_1.11.5-1ubuntu3_i386.deb Size: 24768 MD5sum: 6aa49b441f23756f5c37f7e41254e6bd SHA1: c8124f7ff3293c5d7b420139d897b3dc19ae57d0 SHA256: 670d9d1565fe6ec598012a12143bc7ee00c3661563bbc763fe8c03fd130a2aee Description: System Security Services Daemon -- Kerberos back end Homepage: https://fedorahosted.org/sssd/ Description-md5: d0051aea66e9cb824fd5a62c13ec59f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-krb5-common Priority: extra Section: utils Installed-Size: 510 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.12), libdhash1 (>= 0.3.0.1), libkrb5-3 (>= 1.11+dfsg), libpopt0 (>= 1.14), libtalloc2 (>= 2.0.4~git20101213), sssd-common (= 1.11.5-1ubuntu3) Recommends: libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-krb5-common_1.11.5-1ubuntu3_i386.deb Size: 113970 MD5sum: e3a8e7e59e32b71906bb408a95de00c1 SHA1: 2a9228f2c99d77f2b3aec668881e32e95b871fb0 SHA256: d00a63d9b764d5006d775904fa694bfc82d049c8a5d351871c4d2f8560236c7f Description: System Security Services Daemon -- Kerberos helpers Homepage: https://fedorahosted.org/sssd/ Description-md5: 0db76966892b1b9d99a4e13589fa35db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-ldap Priority: extra Section: utils Installed-Size: 259 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.4), libdhash1 (>= 0.3.0.1), libkrb5-3 (>= 1.10.2+dfsg), libldap-2.4-2 (>= 2.4.7), libsss-idmap0 (= 1.11.5-1ubuntu3), sssd-common (= 1.11.5-1ubuntu3), sssd-krb5-common (= 1.11.5-1ubuntu3) Recommends: ldap-utils Suggests: libsasl2-modules-ldap Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-ldap_1.11.5-1ubuntu3_i386.deb Size: 66762 MD5sum: f006b9dc6ba2686c05bba3d722684ee1 SHA1: e24d19313380564be9f17d24234f5c05bf13c2e3 SHA256: 79d62c059cba5d005e684667c524a3f2b389cea43a728eee888e036e3ab96e8b Description: System Security Services Daemon -- LDAP back end Homepage: https://fedorahosted.org/sssd/ Description-md5: 0d4cb3d2fe39a40d7b6d878a4103345c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-proxy Priority: extra Section: utils Installed-Size: 207 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Replaces: sssd (<< 1.10.0~beta2-1) Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libpam0g (>= 0.99.7.1), libpopt0 (>= 1.14), libtalloc2 (>= 2.0.4~git20101213), sssd-common (= 1.11.5-1ubuntu3) Breaks: sssd (<< 1.10.0~beta2-1) Filename: pool/main/s/sssd/sssd-proxy_1.11.5-1ubuntu3_i386.deb Size: 44134 MD5sum: 9edc3c48143f9996cb3801044d0bbeaf SHA1: 170e8c608477a47ba70f712c8018fd85431496f2 SHA256: 299faf7b6873bd22f4e6e71f2d32f9b52d2dde8ed1d1aa5e81eadd5f501cb239 Description: System Security Services Daemon -- proxy back end Homepage: https://fedorahosted.org/sssd/ Description-md5: db53c238b765b652c290236bc0c64fc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sssd-tools Priority: extra Section: utils Installed-Size: 1066 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian SSSD Team Architecture: i386 Source: sssd Version: 1.11.5-1ubuntu3 Depends: libc6 (>= 2.12), libdhash1 (>= 0.3.0.1), libldb1 (>= 0.9.21), libpopt0 (>= 1.14), libselinux1 (>= 1.32), libsemanage1 (>= 2.0.3), libtalloc2 (>= 2.0.4~git20101213), sssd-common (= 1.11.5-1ubuntu3), python Filename: pool/main/s/sssd/sssd-tools_1.11.5-1ubuntu3_i386.deb Size: 159432 MD5sum: 4d306c4c374e81ae94b98fc222d91179 SHA1: 93927d700679dd817cbae530d19469f5db339904 SHA256: 1bf8d924808f123bc2a79f74a951f7fd4d47760a562911d8cbe8dcb025462008 Description: System Security Services Daemon -- tools Homepage: https://fedorahosted.org/sssd/ Description-md5: 66903119785d144d9d3cb3400805d908 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: strace Priority: standard Section: utils Installed-Size: 327 Maintainer: Ubuntu Developers Original-Maintainer: Frederik Schüler Architecture: i386 Version: 4.8-1ubuntu5 Depends: libc6 (>= 2.15) Filename: pool/main/s/strace/strace_4.8-1ubuntu5_i386.deb Size: 109646 MD5sum: 99ecc26634e5434bd16484e1bd47627f SHA1: 937a2f21dbc0e0dc2015ae2a01ad2fdba7f65d91 SHA256: 175b03b84f43e956301b949568c177ddad0fd4d06e1fa9a451f3aff7c9438849 Description: A system call tracer Homepage: http://sourceforge.net/projects/strace/ Description-md5: 1b3bd3036843450c0ee018b1f88d7282 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: strigi-dbg Priority: extra Section: devel Installed-Size: 8906 Maintainer: Kubuntu Developers Original-Maintainer: Debian KDE Extras Team Architecture: i386 Source: strigi Version: 0.7.8-1ubuntu2 Depends: libstreamanalyzer0 (= 0.7.8-1ubuntu2), libstreams0 (= 0.7.8-1ubuntu2), libstrigiqtdbusclient0 (= 0.7.8-1ubuntu2) Filename: pool/main/s/strigi/strigi-dbg_0.7.8-1ubuntu2_i386.deb Size: 8420716 MD5sum: d5f14cd58e3519c956ab7de5c4965369 SHA1: 85eb26d78e36aee7d0021e6e5044f7a5afd36a6a SHA256: 05929269307c31e2ce78ec9c8dfb1f0476085d0322a892e68ca087f6debe6ba7 Description: debugging symbols for strigi Homepage: http://strigi.sourceforge.net Description-md5: 3cc550c56d3970fe1812d44fcea00ee2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: strongswan Priority: optional Section: net Installed-Size: 184 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: all Version: 5.1.2-0ubuntu2 Depends: strongswan-ike Suggests: network-manager-strongswan Filename: pool/main/s/strongswan/strongswan_5.1.2-0ubuntu2_all.deb Size: 29710 MD5sum: e964c632111bb937137a4551ed4f8334 SHA1: 4539ca679dfff23e426bc61fae374e7cdb13c9d2 SHA256: effd2035bc095379334adeb347fb80f10fa2b0b4a6a9cfa3a95b72e4902163fb Description: IPsec VPN solution metapackage Homepage: http://www.strongswan.org Description-md5: 2a75a11171efab83c74306fc6401c1e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-dbg Priority: extra Section: debug Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: strongswan, libstrongswan Filename: pool/main/s/strongswan/strongswan-dbg_5.1.2-0ubuntu2_i386.deb Size: 13044 MD5sum: 46d60df079d86e945eb0b329da2ef5e6 SHA1: 8efc4057e47fb8c497beb07aa30350972ef2f708 SHA256: f737bcf8e637d48381d3a30a458864c8df1c37486cef41e052857321164a22f1 Description: strongSwan library and binaries - debugging symbols Homepage: http://www.strongswan.org Description-md5: 9aedf903d6c8fb0b813b9e5dfc9c9cf1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: strongswan-ike Priority: optional Section: net Installed-Size: 5110 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ikev1, strongswan-ikev2 Provides: ike-server Depends: libc6 (>= 2.15), libstrongswan (= 5.1.2-0ubuntu2), strongswan-starter | strongswan-nm, strongswan-plugin-openssl | strongswan-plugin-gcrypt | strongswan-plugin-gmp, bsdmainutils, debianutils (>= 1.7), host, iproute2 | iproute Pre-Depends: debconf | debconf-2.0 Suggests: strongswan-plugin-agent, strongswan-plugin-certexpire, strongswan-plugin-coupling, strongswan-plugin-curl, strongswan-plugin-dnscert, strongswan-plugin-dnskey, strongswan-plugin-duplicheck, strongswan-plugin-error-notify, strongswan-plugin-ipseckey, strongswan-plugin-ldap, strongswan-plugin-led, strongswan-plugin-lookip, strongswan-plugin-ntru, strongswan-plugin-pkcs11, strongswan-plugin-radattr, strongswan-plugin-sql, strongswan-plugin-soup, strongswan-plugin-unity, strongswan-plugin-whitelist, strongswan-tnc-client, strongswan-tnc-server Conflicts: freeswan (<< 2.04-12), openswan, strongswan (<< 4.2.12-1) Filename: pool/main/s/strongswan/strongswan-ike_5.1.2-0ubuntu2_i386.deb Size: 1162002 MD5sum: 96549dd7c5877b5646a778f1e2130b22 SHA1: 883d5cc2452fe639db3894b416b8c81b291a74db SHA256: 127eca1d92f0dec9594bfd65c4b8ff45493cd70f34ed4298d3faf5dfb74c2f04 Description: strongSwan Internet Key Exchange (v2) daemon Homepage: http://www.strongswan.org Description-md5: c79a031d7401b6bca17cec8cb59118bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-dhcp Priority: optional Section: net Installed-Size: 388 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: libstrongswan (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.4), libstrongswan (= 5.1.2-0ubuntu2) Breaks: libstrongswan (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-dhcp_5.1.2-0ubuntu2_i386.deb Size: 79754 MD5sum: d398efbdf3e7587412155db8529a3af0 SHA1: 6763c559aff92710f90aa1df78296eaa60423cd4 SHA256: 0000962c2d620cb5edf2eecbb1abbc86a4395180d60ad0c0ec0cb3c135b93236 Description: strongSwan plugin for forwarding DHCP request to a server Homepage: http://www.strongswan.org Description-md5: a4423ac3e7906a382873cc91fcb48f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-md5 Priority: optional Section: net Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.4), libstrongswan (= 5.1.2-0ubuntu2) Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-md5_5.1.2-0ubuntu2_i386.deb Size: 48426 MD5sum: 4c587e449fa42447f2805d15ba0028bb SHA1: 0cc8866f16dea3997acba7fb48de69e5a9e40171 SHA256: ea9d8e3ed6bb256021280a4a2a36ce472a84bde36f06cb4549aa882c11168dda Description: strongSwan plugin for EAP-MD5 protocol handler Homepage: http://www.strongswan.org Description-md5: aaa44c78fad7a54b2e906fa6352ebb35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-mschapv2 Priority: optional Section: net Installed-Size: 334 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.4), libstrongswan (= 5.1.2-0ubuntu2) Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-mschapv2_5.1.2-0ubuntu2_i386.deb Size: 63156 MD5sum: e2edb9b671d0493141d7e2c9f1e142d7 SHA1: 8231745631c8190adb43b953c7c64fcaa7bc1c95 SHA256: 5444bb1be5ace17d4d6201029b33f07135d88d26e20e6bc75dad4c5bdb885467 Description: strongSwan plugin for EAP-MSCHAPv2 protocol handler Homepage: http://www.strongswan.org Description-md5: 6c0197c5e8d905da3cbdbf4f9304767d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-peap Priority: optional Section: net Installed-Size: 383 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.1.3), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-eap-peap_5.1.2-0ubuntu2_i386.deb Size: 73000 MD5sum: 82447c7779e3e0bc09b3898d3ae636c3 SHA1: 8e798df3d813fb273ed604ff8ba9a9f0f9d945f3 SHA256: 61a59fe44337bd0cdaf24519d5aa98f609d7593661bf0627ff40da670783efd0 Description: strongSwan plugin for EAP-PEAP protocol handler Homepage: http://www.strongswan.org Description-md5: 185d18373352c0c10afd0db73d09fd06 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-radius Priority: optional Section: net Installed-Size: 658 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.4), libstrongswan (= 5.1.2-0ubuntu2) Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-radius_5.1.2-0ubuntu2_i386.deb Size: 157276 MD5sum: 083492be2d6eb4a7ae45e097cd6d073a SHA1: 4d5d52c814624b3b1345e5544aba2434063af3dc SHA256: f6c76283e84854ca86c30af26f40b30d3bcc1c7ad245c170e60dc5979aefa571 Description: strongSwan plugin for EAP interface to a RADIUS server Homepage: http://www.strongswan.org Description-md5: 3699032811a7c1cba619098ae52311e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-tls Priority: optional Section: net Installed-Size: 275 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.1.3), libstrongswan (= 5.1.2-0ubuntu2) Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-tls_5.1.2-0ubuntu2_i386.deb Size: 37278 MD5sum: 4fa30567f36343daef19f0dcd916b859 SHA1: 4e2c85ebcea9bb52987ee43e5eef830a84064525 SHA256: 4695b605d27d386ce5eaf3ac1372d49e0382a87dac8f0027b74cbbc1ef2bcb85 Description: strongSwan plugin for the EAP-TLS protocol handler Homepage: http://www.strongswan.org Description-md5: a16eaeb0a19b0562216cfc6ff5cb7b1b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-tnc Priority: optional Section: net Installed-Size: 304 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.1.3), libstrongswan (= 5.1.2-0ubuntu2), strongswan-tnc-base Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-tnc_5.1.2-0ubuntu2_i386.deb Size: 50874 MD5sum: 83f9cebaf107ade2138f4b141b943a8f SHA1: e318055e389127149b7cb11ca765e8bfef141e4b SHA256: 3de6b9bb472976b0614f52d8411dfb0f78b4f3d67ae0fed4521784f789695588 Description: strongSwan plugin for the EAP-TNC protocol handler Homepage: http://www.strongswan.org Description-md5: 5c539f333dfecf8549119593af6a4ea0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-eap-ttls Priority: optional Section: net Installed-Size: 383 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: strongswan-ike (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.3.4), libstrongswan (= 5.1.2-0ubuntu2) Breaks: strongswan-ike (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-eap-ttls_5.1.2-0ubuntu2_i386.deb Size: 73614 MD5sum: 0697fa92161a9a4fb3145c5308ce25ac SHA1: d80d9d605b08973b77a4f7558beacb0e046151a6 SHA256: 6fff9d6984de1db1689ce60e436c11959ebae0097beddfb1105337839c50b784 Description: strongSwan plugin for the EAP-TTLS protocol handler Homepage: http://www.strongswan.org Description-md5: 3732fd8831e70a41ca7043c40f42e460 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-gmp Priority: optional Section: net Installed-Size: 361 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: libstrongswan (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.4), libgmp10, libstrongswan (= 5.1.2-0ubuntu2) Breaks: libstrongswan (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-gmp_5.1.2-0ubuntu2_i386.deb Size: 62528 MD5sum: e089d7f36d1401211a120f952bc498e4 SHA1: c25d408b65af3d26a37fa641531b352c36448e43 SHA256: 17591a420bda17ec1a800cf1970895fe687fd073501de4b9737b7d141c4c7174 Description: strongSwan plugin for libgmp based crypto Homepage: http://www.strongswan.org Description-md5: 179fd502d2775a4edba83daa3a7e7e4e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-ldap Priority: optional Section: net Installed-Size: 238 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.1.3), libldap-2.4-2 (>= 2.4.7), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-ldap_5.1.2-0ubuntu2_i386.deb Size: 24390 MD5sum: 5e14bac53be4b4bc034b7f9512969e02 SHA1: 5b0fa1bfd9b23127638aa1794b41d7b2cdcfdf22 SHA256: 0e7505a5f67efdf8c58a5cba1e555a4c3a02756113b1282436b062775cfbc672 Description: strongSwan plugin for LDAP CRL fetching Homepage: http://www.strongswan.org Description-md5: b505e33466efefd903ec98a2a51b36c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-mysql Priority: optional Section: net Installed-Size: 278 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.4), libmysqlclient18 (>= 5.5.24+dfsg-1), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-mysql_5.1.2-0ubuntu2_i386.deb Size: 35996 MD5sum: 0477514704a01923f34471f2e314afd8 SHA1: b3f16f8c5a22dc8fb9e86d363559a41de7822926 SHA256: 36b9c4c8b30c9d289daa900bbe2f02f445fdd634a828dd6f1212be9345183dad Description: strongSwan plugin for MySQL Homepage: http://www.strongswan.org Description-md5: b93af820dd533950a7428f3abbc4da49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-openssl Priority: optional Section: net Installed-Size: 728 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: libstrongswan (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.8), libssl1.0.0 (>= 1.0.0), libstrongswan (= 5.1.2-0ubuntu2) Breaks: libstrongswan (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-openssl_5.1.2-0ubuntu2_i386.deb Size: 182270 MD5sum: edbd80d54378a132991d156139c01952 SHA1: aa0ed317c888956cb219a5bbb16c33b98e80cc42 SHA256: 9c3b5958276b0d9e4bbb5d29b6af691cd60bb15fd8cfb6a5b899242aebd824ba Description: strongSwan plugin for OpenSSL Homepage: http://www.strongswan.org Description-md5: c9b60e3237fcd913f7a71cf3d2b86e2a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-pkcs11 Priority: optional Section: net Installed-Size: 582 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Replaces: libstrongswan (<< 5.1.1-0ubuntu1) Depends: libc6 (>= 2.4), libstrongswan (= 5.1.2-0ubuntu2) Breaks: libstrongswan (<< 5.1.1-0ubuntu1) Filename: pool/main/s/strongswan/strongswan-plugin-pkcs11_5.1.2-0ubuntu2_i386.deb Size: 130768 MD5sum: 2ea488836ddd1dc06ed8a9334a94c1eb SHA1: 719026da79c5e28f85edbcab7a3c450623e48b43 SHA256: 3d23083fbe210c8c7758f8bdd853f3393af75f2ee429a30ba75c2af15c425204 Description: strongSwan plugin for PKCS#11 smartcard backend Homepage: http://www.strongswan.org Description-md5: 15f07089dfd6fb39d12f5e3b38684481 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-radattr Priority: optional Section: net Installed-Size: 323 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.4), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-radattr_5.1.2-0ubuntu2_i386.deb Size: 55518 MD5sum: 438c04702fc267567124821ff9cb7dc2 SHA1: a0a06567e88fe91c2d7b29d27898c91350807581 SHA256: 79025c1a822a3766322679ccd22c940f0158edcbcc85c62e39ec89c5eca40523 Description: strongSwan plugin for custom RADIUS attribute processing Homepage: http://www.strongswan.org Description-md5: 4c0ccf1bd5185896a8df76a2824fc16a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-sql Priority: optional Section: net Installed-Size: 406 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.1.3), libstrongswan (= 5.1.2-0ubuntu2), strongswan-plugin-sqlite | strongswan-plugin-mysql Filename: pool/main/s/strongswan/strongswan-plugin-sql_5.1.2-0ubuntu2_i386.deb Size: 81700 MD5sum: 99339f6d35087bf0d189d7569fea34c5 SHA1: b4e96ffce470c0e3e62d54b671bc3bedb18e3956 SHA256: 4bfbac08bbccac5e38b92c326d15378c9585898fbd47053353ef733e015517a4 Description: strongSwan plugin for SQL configuration and credentials Homepage: http://www.strongswan.org Description-md5: 287c63e3385aac8498ea13025e8f65cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-sqlite Priority: optional Section: net Installed-Size: 256 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.1.3), libsqlite3-0 (>= 3.5.9), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-sqlite_5.1.2-0ubuntu2_i386.deb Size: 27986 MD5sum: 1c08922375eca60bd928b14db752c68f SHA1: 3619ba14fa6cf19cf13fa0e49e4b51c3b3b2b683 SHA256: 88f52829c73d801ddbac0312784b271d178643f97b7aff389c9e7930ad457316 Description: strongSwan plugin for SQLite Homepage: http://www.strongswan.org Description-md5: 9a015dcd2bb027946de2a9d5ad8af197 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-plugin-unbound Priority: optional Section: net Installed-Size: 289 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.1.3), libldns1 (>= 1.4.0), libunbound2 (>= 1.4.1), libstrongswan (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-plugin-unbound_5.1.2-0ubuntu2_i386.deb Size: 42018 MD5sum: 027dd58c646b22bf613164c1f5efc5cb SHA1: 0a3deeef68b52af5ddb48e2d7b9f89ef10816796 SHA256: be3f9db52cbbef1d3cf4e342781968b51c7a59da17c371299a4cdc8d85a46c4b Description: strongSwan plugin for DNSSEC-enabled resolver using libunbound Homepage: http://www.strongswan.org Description-md5: cac3aa577eb5dc1890d0fec329b5ba21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-pt-tls-client Priority: optional Section: net Installed-Size: 239 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.3.4), libstrongswan (= 5.1.2-0ubuntu2), strongswan-tnc-base, strongswan-tnc-client (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-pt-tls-client_5.1.2-0ubuntu2_i386.deb Size: 38618 MD5sum: 027a19b3d1ce93503e40a7ac7007bc61 SHA1: 51f394c4ed3ee31be6e23b364c5b1ad490075422 SHA256: 6601172b797860f39994c16ab361ade241999a9bcdb7bd9ec5fab81d69e54b34 Description: strongSwan TLS-based Posture Transport (PT) protocol client Homepage: http://www.strongswan.org Description-md5: f774634bf2e33acfc6862c7ecd158f4d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-starter Priority: optional Section: net Installed-Size: 2499 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.8), libstrongswan (= 5.1.2-0ubuntu2), debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), strongswan-ike, adduser Conflicts: strongswan (<< 4.2.12-1) Filename: pool/main/s/strongswan/strongswan-starter_5.1.2-0ubuntu2_i386.deb Size: 686550 MD5sum: 6c4e416d5aa7cc95df815ed0c9f9d68a SHA1: c4831e9bf76df89de1d9735f261d152b4b1edcbf SHA256: 09103f1da8ac42eb9ae7d5aa3ad6a4b675accaefc66c0aa4bf6948a10ab6177b Description: strongSwan daemon starter and configuration file parser Homepage: http://www.strongswan.org Description-md5: 84d2b1124a17b8d68e77457ef1030d73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-tnc-base Priority: optional Section: net Installed-Size: 2038 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.8), libstrongswan (= 5.1.2-0ubuntu2), libtspi1 (>= 0.3.1), libxml2 (>= 2.7.4) Suggests: strongswan-tnc-ifmap, strongswan-tnc-pdp Filename: pool/main/s/strongswan/strongswan-tnc-base_5.1.2-0ubuntu2_i386.deb Size: 506010 MD5sum: 4c0bdf5c85fc91b4b4a7906eea6626da SHA1: ec3193b88764fa260328314a20f37fad886b9e33 SHA256: 96b429869e9fedf0f00074d9329fb73e3977108b78d724b0b2c8e126cbd450c1 Description: strongSwan Trusted Network Connect's (TNC) - base files Homepage: http://www.strongswan.org Description-md5: 2177e03f0d4dad88206f309f3b429600 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-tnc-client Priority: optional Section: net Installed-Size: 721 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.4), libstrongswan (= 5.1.2-0ubuntu2), strongswan-tnc-base (= 5.1.2-0ubuntu2) Suggests: strongswan-pt-tls-client Filename: pool/main/s/strongswan/strongswan-tnc-client_5.1.2-0ubuntu2_i386.deb Size: 154802 MD5sum: c29cdd2f4dd72b32cd99f252dc80fce3 SHA1: 820d5467e9fef28aac4b23bcb7cf9596b4d2f7a0 SHA256: d201a2eec9e1e4a7b579f66684e30cb8e94e0faa744626d1cc806e8bdc42f7e2 Description: strongSwan Trusted Network Connect's (TNC) - client files Homepage: http://www.strongswan.org Description-md5: 3a13953cd4cfd8070665b78718ec5b10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-tnc-pdp Priority: optional Section: net Installed-Size: 387 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.4), libstrongswan (= 5.1.2-0ubuntu2), strongswan-tnc-base, strongswan-tnc-server (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-tnc-pdp_5.1.2-0ubuntu2_i386.deb Size: 79248 MD5sum: be515cb78c0217f014facff980c96a1d SHA1: 2957396a6ad6ecd84d30f862f1aa2389528d9e17 SHA256: 5167320e6f87cefe15fc49480e7dc97c2698c0036dde2f825e8246fbfcf2be32 Description: strongSwan plugin for Trusted Network Connect's (TNC) PDP Homepage: http://www.strongswan.org Description-md5: dafa0ef413ff0dc80cb188f8d98b073c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: strongswan-tnc-server Priority: optional Section: net Installed-Size: 1219 Maintainer: Ubuntu Developers Original-Maintainer: strongSwan Maintainers Architecture: i386 Source: strongswan Version: 5.1.2-0ubuntu2 Depends: libc6 (>= 2.8), libstrongswan (= 5.1.2-0ubuntu2), strongswan-tnc-base (= 5.1.2-0ubuntu2), strongswan-plugin-sqlite (= 5.1.2-0ubuntu2) Filename: pool/main/s/strongswan/strongswan-tnc-server_5.1.2-0ubuntu2_i386.deb Size: 296328 MD5sum: 47d412bae44bbb694c1ab77ea6097304 SHA1: e4b013f5a1a5d65ed6d8e3c7d0000c539846cb37 SHA256: 0a6a10f91a051f1707f4ec4719b7b3a0b8457ffda6d2eccf8c37e3e83a351f30 Description: strongSwan Trusted Network Connect's (TNC) - server files Homepage: http://www.strongswan.org Description-md5: a1b89f5a884d4b6a65cee8eb8bb89b48 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: subunit Priority: optional Section: devel Installed-Size: 86 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: all Version: 0.0.18-0ubuntu7 Depends: python-subunit (>= 0.0.18-0ubuntu7), perl, libsubunit-perl (>= 0.0.18-0ubuntu7), python:any, python2.7:any Recommends: python-gtk2, python-junitxml Filename: pool/main/s/subunit/subunit_0.0.18-0ubuntu7_all.deb Size: 17896 MD5sum: 324616f90c2aa31d36c929df252bfd83 SHA1: b269d1ed0933bf80c9ac00f8b93eb89197d1b894 SHA256: 3eafc6c02fdc89df9de9bb940b43f1f97ef4910ae101a7622b8dd08a0a2e6eed Description: command line tools for processing Subunit streams Homepage: http://code.launchpad.net/subunit Description-md5: c4f3b986477aba30324b421056a528f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: subversion Priority: optional Section: devel Installed-Size: 1320 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Version: 1.8.8-1ubuntu3 Depends: libsvn1 (= 1.8.8-1ubuntu3), libapr1 (>= 1.4.8-2~), libaprutil1 (>= 1.2.7+dfsg), libc6 (>= 2.4), libsasl2-2 (>= 2.1.24) Suggests: subversion-tools, db5.3-util, patch Filename: pool/main/s/subversion/subversion_1.8.8-1ubuntu3_i386.deb Size: 275940 MD5sum: 81045988fb1436c44d7a6da15ff4fca8 SHA1: 869bdc4781a200efff2c88966b8316439a821cfe SHA256: 13fd0876aac421e58e7f8d0596bab81cd216dd0aeb23613785b65bf17c6731db Description: Advanced version control system Homepage: http://subversion.apache.org/ Description-md5: 9fa4bc531e7ceb09fda8950bea636958 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: subversion-dbg Priority: extra Section: debug Installed-Size: 29535 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: i386 Source: subversion Version: 1.8.8-1ubuntu3 Depends: subversion (= 1.8.8-1ubuntu3) | libsvn1 (= 1.8.8-1ubuntu3) | libapache2-mod-svn (= 1.8.8-1ubuntu3) | subversion-tools (= 1.8.8-1ubuntu3) | python-subversion (= 1.8.8-1ubuntu3) | ruby-svn (= 1.8.8-1ubuntu3) | libsvn-perl (= 1.8.8-1ubuntu3) | libsvn-java (= 1.8.8-1ubuntu3) Filename: pool/main/s/subversion/subversion-dbg_1.8.8-1ubuntu3_i386.deb Size: 7351684 MD5sum: dead65e35dc4d81cb5b9d5e171fbdf08 SHA1: bf5ebc0804c4e80f666b0d91e22013cc0cdf86c2 SHA256: 3e5cbfd8c56b646fa65264e2e4bbcf43c11398b70ecec7c4f03772d3c1030fd5 Description: Debug symbols for Apache Subversion Homepage: http://subversion.apache.org/ Description-md5: 569ba1e37da7360371240eb086080640 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: subversion-tools Priority: extra Section: admin Installed-Size: 893 Maintainer: Ubuntu Developers Original-Maintainer: Peter Samuelson Architecture: all Source: subversion Version: 1.8.8-1ubuntu3 Replaces: subversion (<< 1.7) Depends: subversion Recommends: python-subversion, libsvn-perl, libconfig-inifiles-perl, liburi-perl, exim4 | mail-transport-agent, rsync Suggests: ruby-svn, svn2cl Breaks: subversion (<< 1.7) Filename: pool/main/s/subversion/subversion-tools_1.8.8-1ubuntu3_all.deb Size: 159034 MD5sum: 967cd816b7c50e4b7fe8df9e2f0cdb25 SHA1: 14dbc692d3bcaccbdfd3a2fa0526d577c1eaf7b8 SHA256: 0a78dc538730a0f4f69efd2966c74bfac2e6fdcdbc6155dabde3b8b87c0305fb Description: Assorted tools related to Apache Subversion Homepage: http://subversion.apache.org/ Description-md5: 002bb86e31ed8d34194857631040da61 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sudo Priority: important Section: admin Installed-Size: 1524 Maintainer: Ubuntu Developers Original-Maintainer: Bdale Garbee Architecture: i386 Version: 1.8.9p5-1ubuntu1 Replaces: sudo-ldap Depends: libc6 (>= 2.15), libpam0g (>= 0.99.7.1), libselinux1 (>= 1.32), libpam-modules Conflicts: sudo-ldap Filename: pool/main/s/sudo/sudo_1.8.9p5-1ubuntu1_i386.deb Size: 329088 MD5sum: d6a4423e0c942fca6a632245ff91fbf2 SHA1: de020b059c360a78d74253b12c4545829c1f4e03 SHA256: 7c50aba122cac86eb2ffa57684c49a047e4057d84db4663c2ac902b307e7431f Description: Provide limited super user privileges to specific users Description-md5: acd82d558698567df941afe9b1ac35df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: sunpinyin-data Priority: extra Section: utils Installed-Size: 41995 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: open-gram Version: 0.1.22+20120112-1 Filename: pool/main/o/open-gram/sunpinyin-data_0.1.22+20120112-1_i386.deb Size: 25154566 MD5sum: aa14e5b20fd30b3752fc46fd17d6d829 SHA1: a9b3031a9295f9ba2522d0450df14e12f04b49c1 SHA256: da981f7091415bf1d60cfab34d7fd3e3b6a542b47c2b808f63cef1d6b91cf9d3 Description: Statistical language model data from open-gram Homepage: http://code.google.com/p/open-gram/ Description-md5: c614b4d9586dfb2bf36e45ce05502655 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sunpinyin-utils Priority: optional Section: utils Installed-Size: 468 Maintainer: Ubuntu Developers Original-Maintainer: IME Packaging Team Architecture: i386 Source: sunpinyin Version: 2.0.3+git20130507-1ubuntu1 Depends: libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), python Filename: pool/main/s/sunpinyin/sunpinyin-utils_2.0.3+git20130507-1ubuntu1_i386.deb Size: 138310 MD5sum: 3c80937de955d39f318b1115d5f104a0 SHA1: a38df8bcfa60ee9fa75aa2aadef98942e826b280 SHA256: ca6c777287204098cd783d45c3dda8fb43b9b3047c223c95d919230360fcfacf Description: Simplified Chinese Input Method from SUN (utilities) Homepage: http://code.google.com/p/sunpinyin Description-md5: 6adbc7c47606f3863642290190a5a2af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swift-account Priority: optional Section: net Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Replaces: swift (<< 1.13.1~rc1-0ubuntu1~) Depends: python-swift (= 1.13.1-0ubuntu1), rsync, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: swift (<< 1.13.1~rc1-0ubuntu1~) Filename: pool/main/s/swift/swift-account_1.13.1-0ubuntu1_all.deb Size: 17014 MD5sum: ebfc9ea1e47d47d98f1ae0115f9ba79e SHA1: 0b5310ccd386b546ec15f6f4f68935d0e1171ae7 SHA256: 7d76fc8a0149f95dc184667e651b1e73052eb27b24fcb2e044144d989f14dd99 Description: distributed virtual object store - account server Homepage: http://launchpad.net/swift Description-md5: 809bc8c5c556488caaf22ddd2273fd22 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: swift-container Priority: optional Section: net Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Replaces: swift (<< 1.13.1~rc1-0ubuntu1~) Depends: python-swift (= 1.13.1-0ubuntu1), rsync, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: swift (<< 1.13.1~rc1-0ubuntu1~) Filename: pool/main/s/swift/swift-container_1.13.1-0ubuntu1_all.deb Size: 15744 MD5sum: ff3226387a99e52d7301653692399288 SHA1: fafaa84a080d5d12381b763a02b332bde6449a76 SHA256: f92abdd5634595feee5588071da80b368b5dd2b979ec4c94255c41ec3e91944f Description: distributed virtual object store - container server Homepage: http://launchpad.net/swift Description-md5: f8277674f07a294ae8e420393c5fd350 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: swift-doc Priority: optional Section: doc Installed-Size: 2066 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Depends: libjs-jquery Filename: pool/main/s/swift/swift-doc_1.13.1-0ubuntu1_all.deb Size: 273976 MD5sum: da8a225058290bc8cea7841a8d661052 SHA1: eb84bb851dec1c463ab8ce76441950984ffe61d6 SHA256: 22a3b6aaa6e6c412dddd08b4a87baeb7696bf6ca0b90891103ca4f1a6ea48a4b Description: distributed virtual object store - documentation Homepage: http://launchpad.net/swift Description-md5: f6e5b3e01afabbb95c5d13d2088c78b4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: swift-object Priority: optional Section: net Installed-Size: 85 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Replaces: swift (<< 1.13.1~rc1-0ubuntu1~) Depends: python-swift (= 1.13.1-0ubuntu1), rsync, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: swift (<< 1.13.1~rc1-0ubuntu1~) Filename: pool/main/s/swift/swift-object_1.13.1-0ubuntu1_all.deb Size: 18186 MD5sum: 6c467209e49f37a5e69478a0f4131c9b SHA1: f5001c0a64228dc4cd587583dd0151b600da15c5 SHA256: 603ed67492af6380fd9d805ee02bbed83854e26a8fe76b87584db85439d89a9c Description: distributed virtual object store - object server Homepage: http://launchpad.net/swift Description-md5: 9c7491cb7a75e1ec163d08f6da52b8a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: swift-proxy Priority: optional Section: net Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Soren Hansen Architecture: all Source: swift Version: 1.13.1-0ubuntu1 Replaces: swift (<< 1.13.1~rc1-0ubuntu1~) Depends: python-swift (= 1.13.1-0ubuntu1), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python:any Breaks: swift (<< 1.13.1~rc1-0ubuntu1~) Filename: pool/main/s/swift/swift-proxy_1.13.1-0ubuntu1_all.deb Size: 18704 MD5sum: dc13763977e79774feae29171d50e954 SHA1: e73dbef82a129fb455d85091112890b0ecf7e912 SHA256: f251b3eaa87149b9247757fcdf90a6b324ce04585da0187a00e1b9d2241f47b1 Description: distributed virtual object store - proxy server Homepage: http://launchpad.net/swift Description-md5: 484efcd1f3cbf484a2fed44dcec3d88f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: swig Priority: optional Section: interpreters Installed-Size: 307 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: i386 Source: swig2.0 Version: 2.0.11-1ubuntu2 Replaces: swig1.3 Depends: swig2.0 (>= 2.0.11-1ubuntu2) Suggests: swig-doc, swig-examples Conflicts: swig1.3 Filename: pool/main/s/swig2.0/swig_2.0.11-1ubuntu2_i386.deb Size: 6264 MD5sum: 36512e921fbff9905a437844f1654063 SHA1: 0a84e7c63b7cc744e4c3e848f0479edd10e75808 SHA256: 52a16cb6eaa346e1a1cd441f0a04affd5edd350ff35fac178d388fb3fadc5708 Description: Generate scripting interfaces to C/C++ code Homepage: http://www.swig.org/ Description-md5: a28fcf988d36aabc4bc2004da9763e6f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swig-doc Priority: optional Section: doc Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: all Source: swig2.0 Version: 2.0.11-1ubuntu2 Replaces: swig1.3-doc Depends: swig2.0-doc (>= 2.0.0-1) Conflicts: swig1.3-doc Filename: pool/main/s/swig2.0/swig-doc_2.0.11-1ubuntu2_all.deb Size: 3144 MD5sum: a82df2524e290ea8eb90e7d72874706b SHA1: 5dba81926226181089bfc32756ca673190e5a994 SHA256: 5a7140e3a3c3c73dad78fc40718da8b623cb350e1d9c71bca4da3b16fba10710 Description: HTML documentation for SWIG Homepage: http://www.swig.org/ Description-md5: 2104d01eb9224307104354239ccb1487 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swig-examples Priority: optional Section: interpreters Installed-Size: 41 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: all Source: swig2.0 Version: 2.0.11-1ubuntu2 Replaces: swig1.3-examples Depends: swig2.0-examples (>= 2.0.0-1) Conflicts: swig1.3-examples Filename: pool/main/s/swig2.0/swig-examples_2.0.11-1ubuntu2_all.deb Size: 3152 MD5sum: 5e8ef09cb02b8f6876d6ded7ea980708 SHA1: 55f562383a737e26439db5048d150c7e2b7e92f1 SHA256: 46359e4d18f2a91cecbb5057f5ba836f41dfe116bd8d1239eaa937bb06def47a Description: Examples for applications of SWIG Homepage: http://www.swig.org/ Description-md5: cdfa6a45a18616de442335dc86a086df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swig2.0 Priority: optional Section: interpreters Installed-Size: 4075 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: i386 Version: 2.0.11-1ubuntu2 Replaces: swig (<< 2.0.4-3.1) Depends: libc6 (>= 2.8), libgcc1 (>= 1:4.1.1), libpcre3, libstdc++6 (>= 4.1.1), zlib1g (>= 1:1.1.4) Suggests: swig2.0-examples, swig2.0-doc Breaks: swig (<< 2.0.4-3.1) Filename: pool/main/s/swig2.0/swig2.0_2.0.11-1ubuntu2_i386.deb Size: 857326 MD5sum: 150e75dd7232a4801c77e44d3961a700 SHA1: 8b1b34b33382ad3acd8bcf9d84e53500662fbf63 SHA256: cd3a898f942f05d43614c65923da68455255373a98b00cc0120e6f9ff717dd62 Description: Generate scripting interfaces to C/C++ code Homepage: http://www.swig.org/ Description-md5: 52b54965f2b28a9f8f9512151ba51620 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swig2.0-doc Priority: optional Section: doc Installed-Size: 6291 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: all Source: swig2.0 Version: 2.0.11-1ubuntu2 Filename: pool/main/s/swig2.0/swig2.0-doc_2.0.11-1ubuntu2_all.deb Size: 1892298 MD5sum: 0cdce64e6f0d025b9fc221033c71ae61 SHA1: f6553bc2db59a9cf32a3ee34ecd0b1791e36f1f3 SHA256: a1699ff7a668c3f2661e4acb61109c02f655d634f72590325339b545a5032f52 Description: HTML documentation for SWIG Homepage: http://www.swig.org/ Description-md5: 46a1a1a54da97568b9ea278e43bcfd42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: swig2.0-examples Priority: optional Section: interpreters Installed-Size: 3695 Maintainer: Ubuntu Developers Original-Maintainer: Torsten Landschoff Architecture: all Source: swig2.0 Version: 2.0.11-1ubuntu2 Depends: swig2.0 Filename: pool/main/s/swig2.0/swig2.0-examples_2.0.11-1ubuntu2_all.deb Size: 718438 MD5sum: 837bf863cd5824395c8b41719caae1d0 SHA1: d8950883eff1d9d7ff4083c9fa0bbbe66fbc3f15 SHA256: 2c9af03bf029e1523f1c8a5d6b4c3814c6c2b56d7574f8883ef1e39dd2063981 Description: Examples for applications of SWIG Homepage: http://www.swig.org/ Description-md5: 3ab5c9257106ba955b283c3165f0b8c9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: symlinks Priority: optional Section: utils Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Sven Joachim Architecture: i386 Version: 1.4-1ubuntu1 Depends: libc6 (>= 2.3.4) Filename: pool/main/s/symlinks/symlinks_1.4-1ubuntu1_i386.deb Size: 9972 MD5sum: 460832585a23e3420d0044146a1cde14 SHA1: f4c41555f0cc429b0d0ed670f5e9605bd7e4078a SHA256: bc2700ca2ef3268e11dab28d28d62e608f4dac6ecd884a70c7a6254dbfdaecaa Description: scan/change symbolic links Multi-Arch: foreign Description-md5: 8b394270bf455093283fc1b107b84003 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: syslinux Priority: optional Section: utils Installed-Size: 172 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Version: 3:4.05+dfsg-6+deb8u1 Replaces: syslinux-common Depends: libc6 (>= 2.8), libuuid1 (>= 2.16), syslinux-common (= 3:4.05+dfsg-6+deb8u1) Recommends: mtools Suggests: dosfstools, os-prober Breaks: syslinux-common (<< 3:4.05+dfsg-6+deb8u1) Filename: pool/main/s/syslinux/syslinux_4.05+dfsg-6+deb8u1_i386.deb Size: 56428 MD5sum: 4ab84d1608a5203d977675fc93c3e736 SHA1: 023edd4ab755e541e5b867b3012b673d050678ea SHA256: 84eb5cf2bbdde74cadbd964da8509ea1e7d15265a683bd30ea8b4c22444924ce Description: collection of boot loaders Homepage: http://syslinux.zytor.com/ Description-md5: 04cf2d13f397d774391aeddaa2f600dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: syslinux-common Priority: optional Section: utils Installed-Size: 3238 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: all Source: syslinux Version: 3:4.05+dfsg-6+deb8u1 Replaces: syslinux Recommends: libcrypt-passwdmd5-perl, libdigest-sha-perl Breaks: syslinux (<< 3:4.05+dfsg-6+deb8u1) Filename: pool/main/s/syslinux/syslinux-common_4.05+dfsg-6+deb8u1_all.deb Size: 916942 MD5sum: 878dd51ad15ad3545b30b6b7efc4d9ef SHA1: 34e2d1650cbce464b7b513a9d8bc6560b19b9f74 SHA256: 4881ee37658b4d0359511f9622e8bcc0b6b08ac9874e50c5bbbb36dd0332d692 Description: collection of boot loaders (common files) Homepage: http://syslinux.zytor.com/ Description-md5: f2b9a4fb89de957c7f351d950d7b9e0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: syslinux-legacy Priority: optional Section: utils Installed-Size: 127 Maintainer: Ubuntu Core Developers Original-Maintainer: Daniel Baumann Architecture: i386 Version: 2:3.63+dfsg-2ubuntu5 Depends: libc6 (>= 2.4) Recommends: mtools Filename: pool/main/s/syslinux-legacy/syslinux-legacy_3.63+dfsg-2ubuntu5_i386.deb Size: 48420 MD5sum: 002183be1d4783074c1b7688fa56a830 SHA1: 7de977d31873789e0de3da5e2caed08eaaf7e2a4 SHA256: b66444133e070e8f3f092d0b6d1a59c2e68638e363079b615998ba221fbf0eac Description: Bootloader for Linux/i386 using MS-DOS floppies Homepage: http://syslinux.zytor.com/ Description-md5: 0eceaa824560da0ee38193c760edbaab Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: syslinux-themes-ubuntu Priority: optional Section: misc Installed-Size: 35 Maintainer: Colin Watson Architecture: i386 Version: 8 Depends: syslinux-themes-ubuntu-trusty Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu_8_i386.deb Size: 1620 MD5sum: 653c02d684d1168ee81ff6b04b0e68e0 SHA1: 3df36a2bf5172158aa5d5a230b297e5a1f1a959a SHA256: ddef493f937f051406f96a71711582f9b893893cf52c4cfc9429135f0afa0ab3 Description: collection of boot loaders (theme metapackage) Description-md5: 4d9510247fd680ebc4f00821f6a2bdb0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-oneiric Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: i386 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-oneiric_8_i386.deb Size: 20542 MD5sum: b8a4f8190d43de576084723a91047c9d SHA1: f4c052b565532f1358e4ee1ac33f9509fe0059ab SHA256: 1d3766921baca141158fd52fb0aaccb7a3adf990b76f3fc172547df48e8de9db Description: collection of boot loaders (ubuntu-oneiric theme) Enhances: extlinux Description-md5: 3cbef668eac7c9cc813d79bc7c664064 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-precise Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: i386 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-precise_8_i386.deb Size: 20544 MD5sum: 8efde84ccc7bfadb5fca7d4eece5c450 SHA1: 6d7a8dda3ed5d3e2704378bb736b7af1fc106881 SHA256: 5e17803521295cf6d13650b377018c3aa78d3d284f398e7d62ab945505bce3c2 Description: collection of boot loaders (ubuntu-precise theme) Enhances: extlinux Description-md5: a6249ff199b52ede802e9c6dbf4e159d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-quantal Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: i386 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-quantal_8_i386.deb Size: 20554 MD5sum: 9cc96827cd42a2609fe82a21fe3baa0a SHA1: 8d3571c810a7f759a8afeaf814cbcdabe222d56c SHA256: fade6988bb8cea86337685bd846da40d7b31fef7b80f8bfcc22e6f867df3f176 Description: collection of boot loaders (ubuntu-quantal theme) Enhances: extlinux Description-md5: cde822fef08112910c720011731b0d6a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-raring Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: i386 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-raring_8_i386.deb Size: 20534 MD5sum: 17c69ab09727395ecb2fabe4f198c7d7 SHA1: aade15479c1e6a2644d2343d14ad2ece5959f355 SHA256: 6ce53629d04342b38ca0aff097a5330099995828b4005b3045d35e05982a1481 Description: collection of boot loaders (ubuntu-raring theme) Enhances: extlinux Description-md5: 37eda53ce18df04aa85cb5a2fe108e0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-saucy Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: i386 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-saucy_8_i386.deb Size: 20536 MD5sum: f2afa1ab0fd70156c7c058fd77f963b5 SHA1: 892fc379b69b12030a3688285b5c913726f29099 SHA256: 5401d1411142950ed9d0ac32e838c686b7c92960771654a4f412f402461e2349 Description: collection of boot loaders (ubuntu-saucy theme) Enhances: extlinux Description-md5: 5ea01ac67565fd15be64a2418651a1f5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: syslinux-themes-ubuntu-trusty Priority: optional Section: misc Installed-Size: 99 Maintainer: Colin Watson Architecture: i386 Source: syslinux-themes-ubuntu Version: 8 Provides: syslinux-theme Depends: memtest86+, syslinux-common Filename: pool/main/s/syslinux-themes-ubuntu/syslinux-themes-ubuntu-trusty_8_i386.deb Size: 20538 MD5sum: 9fd8d6810e0c6c51dcdc9b845f22f951 SHA1: de5bf3867df363864424aef11ad96aa902dd438d SHA256: 3d49c11d12fc72a6d7b78f8980afd76c16735621d6395c7637086d5321796738 Description: collection of boot loaders (ubuntu-trusty theme) Enhances: extlinux Description-md5: 84375f23b8d7c2e4ce2c5d6981d03395 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: sysstat Priority: optional Section: admin Installed-Size: 848 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: i386 Version: 10.2.0-1 Depends: bzip2, lsb-base (>= 3.0-6), ucf (>= 2.003), debconf (>= 0.5) | debconf-2.0, libc6 (>= 2.7), libsensors4 (>= 1:3.0.0) Recommends: cron Suggests: isag Filename: pool/main/s/sysstat/sysstat_10.2.0-1_i386.deb Size: 271332 MD5sum: a7057ea16e428c8d9b6a6fc8fd6a3a46 SHA1: b769779a1397b25a121a3a8c47892289a82f1320 SHA256: 0e6bba036c211aa7aa5d8ae89ae7f0fa9a134f60d458ce8da390a8163889b0b1 Description: system performance tools for Linux Homepage: http://pagesperso-orange.fr/sebastien.godard/ Description-md5: 53969a0c693353fe5d132e483e9ab770 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: system-config-kickstart Priority: optional Section: admin Installed-Size: 1596 Maintainer: Colin Watson Architecture: all Version: 2.5.20-0ubuntu23 Depends: python:any (>= 2.7.1-0ubuntu2), python-gtk2, python-glade2, console-setup (>= 1.7ubuntu17), hwdata, iso-codes, isoquery, localechooser-data (>= 2.03ubuntu1), python-apt Filename: pool/main/s/system-config-kickstart/system-config-kickstart_2.5.20-0ubuntu23_all.deb Size: 375484 MD5sum: f03569b388c00e16d66d40b14c79835d SHA1: a4a8fa3debd8ab859fc6f159a41d08a84295c676 SHA256: 45ef007ba27a356e988f3ee84c07853905a8f551611a6982c7434d96c866f8ea Description: graphical tool for creating Kickstart files Description-md5: 574e6cf064979e6b9bc5935bc7681e86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: system-config-printer-common Priority: optional Section: python Installed-Size: 304 Maintainer: Ubuntu Core Developers Original-Maintainer: Otavio Salvador Architecture: all Source: system-config-printer Version: 1.4.3+20140219-0ubuntu2 Replaces: system-config-printer, system-config-printer-gnome (<< 1.3.11+20120807-0ubuntu7) Depends: python-cups (>= 1.9.60), python-smbc, python-dbus, python-cupshelpers Recommends: system-config-printer-udev, avahi-utils Conflicts: system-config-printer, system-config-printer-kde (<= 0.09ubuntu1) Filename: pool/main/s/system-config-printer/system-config-printer-common_1.4.3+20140219-0ubuntu2_all.deb Size: 36348 MD5sum: 391e5ffc4576fe5dbac00f03b6ce4141 SHA1: d9ff8b5665c97f619b1092f0a665200d8a8733d6 SHA256: 83d3e25d732f67c6bc248fb83adde8ae8a6d3d0ca972f5bfa817a6967c188114 Description: Printer configuration GUI Description-md5: c74f0cd3e1d13a8368c9c62f6e46ce72 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: system-config-printer-gnome Priority: optional Section: python Installed-Size: 1395 Maintainer: Ubuntu Core Developers Original-Maintainer: Otavio Salvador Architecture: all Source: system-config-printer Version: 1.4.3+20140219-0ubuntu2 Replaces: system-config-printer Depends: system-config-printer-common (>= 1.3.11+20120807-0ubuntu7), python-gtk2, python-notify, python-gobject, gnome-icon-theme, python-libxml2, python-gnomekeyring, python-pycurl, gir1.2-notify-0.7, gir1.2-packagekitglib-1.0, packagekit-system-interface Conflicts: system-config-printer Filename: pool/main/s/system-config-printer/system-config-printer-gnome_1.4.3+20140219-0ubuntu2_all.deb Size: 136534 MD5sum: ac4f4bcf64d70f9eaf20345bdd1c4690 SHA1: 76e034beb20ef1246fae948bf585ace558a3e8eb SHA256: 4cf67b89dbf2560744fc62e356c3acd46528037648b333e1ccc33275a0d21f7b Description: Printer configuration GUI Description-md5: b79f41032a7f19ff0d213970778d42b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: system-config-printer-udev Priority: optional Section: python Installed-Size: 119 Maintainer: Ubuntu Core Developers Original-Maintainer: Otavio Salvador Architecture: i386 Source: system-config-printer Version: 1.4.3+20140219-0ubuntu2 Depends: libc6 (>= 2.4), libcups2 (>= 1.6.0), libglib2.0-0 (>= 2.12.0), libudev1 (>= 183), libusb-1.0-0 (>= 2:1.0.8), python-cups (>= 1.9.55), python-dbus, python-cupshelpers Filename: pool/main/s/system-config-printer/system-config-printer-udev_1.4.3+20140219-0ubuntu2_i386.deb Size: 18402 MD5sum: 238e971c1456e6827ed3fe6d52b6f132 SHA1: 5b1f3e0f46ed91c71d38a1c51f5312551efd760f SHA256: 6aa8ff7e3f7961bfd3ac65394e70788d588175a0176c5837bc7ff65431c4fc1c Description: Printer auto-configuration facility based on udev Description-md5: 606b069a213dafd5ca999bb8f562bb40 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: systemd-services Priority: standard Section: admin Installed-Size: 954 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Replaces: logind, systemd (<< 198-1), ubuntu-system-service Provides: logind Depends: libacl1 (>= 2.2.51-8), libc6 (>= 2.17), libcap2 (>= 2.10), libcgmanager0, libdbus-1-3 (>= 1.1.1), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libselinux1 (>= 2.0.65), libsystemd-daemon0 (= 204-5ubuntu20), libudev1 (>= 183), udev (>= 175-0ubuntu23), dbus, systemd | systemd-shim (>= 3) Suggests: cgmanager Conflicts: logind Breaks: systemd (<< 198-1) Filename: pool/main/s/systemd/systemd-services_204-5ubuntu20_i386.deb Size: 196936 MD5sum: eba140abee3eed986638e977ff9a6a38 SHA1: d071b628f654323ea788931a57ecbae91750f6df SHA256: 508c059937a6752c06df73bea4aba9c1bd931ad163230a38b6d4c5c78db24ce8 Description: systemd runtime services Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: 2b01627856e6c435a0ff31af7419b02e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: systemd-shim Priority: standard Section: admin Installed-Size: 84 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Version: 6-2bzr1 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.37.3) Suggests: pm-utils Filename: pool/main/s/systemd-shim/systemd-shim_6-2bzr1_i386.deb Size: 11236 MD5sum: 1747fc12d0db6dcf2c481355629aa760 SHA1: f4e99e21159dafe17165d4a673548d50a403a0a0 SHA256: 2f403c7269c64471e53adf999a2eadbbe47d466ffba9db9141f91483a73cc58e Description: shim for systemd Description-md5: 846766299c4c08819c23c1b596c6097a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: systemtap-doc Priority: optional Section: doc Installed-Size: 3653 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: all Source: systemtap Version: 2.3-1ubuntu1 Replaces: systemtap (<< 0.0.20081220-1) Suggests: doc-base Breaks: systemtap (<< 0.0.20081220-1) Filename: pool/main/s/systemtap/systemtap-doc_2.3-1ubuntu1_all.deb Size: 1302424 MD5sum: 404a90dc113a5e5ff388187dfd2db6ab SHA1: 07bf1f2b8be3c6e9d3fb8efd0455e4e0cef03fa9 SHA256: 7d84a81a072408bd209040d93b1efae8bb5dae45a99c9bd7a216b433bc6ca05d Description: documentation and examples for SystemTap Homepage: http://sourceware.org/systemtap/ Description-md5: 423c79924d2af3ef7018de62dd2edbd8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: systemtap-sdt-dev Priority: optional Section: devel Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Ritesh Raj Sarraf Architecture: i386 Source: systemtap Version: 2.3-1ubuntu1 Depends: python:any Filename: pool/main/s/systemtap/systemtap-sdt-dev_2.3-1ubuntu1_i386.deb Size: 16418 MD5sum: 2b7417607f73e792abcfa816d209a44d SHA1: 3d33b499d9e2ef06dbcf158c171e33b9fddc87d2 SHA256: 79bbc5f07cbe66239a48804a4ebd100ea69e8deb3e45dc6d0c4303151e7b5c79 Description: statically defined probes development files Homepage: http://sourceware.org/systemtap/ Description-md5: ecef96f7dab2e30fd0d586168053cc6b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: sysv-rc Priority: required Section: admin Installed-Size: 221 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian sysvinit maintainers Architecture: all Source: sysvinit Version: 2.88dsf-41ubuntu6 Replaces: file-rc Depends: debconf (>= 0.5) | debconf-2.0, sysvinit-utils (>= 2.86.ds1-62), insserv (>> 1.12.0-10) Recommends: lsb-base (>= 3.2-14) Suggests: sysv-rc-conf, bum Conflicts: file-rc Breaks: initscripts (<< 2.86.ds1-63) Filename: pool/main/s/sysvinit/sysv-rc_2.88dsf-41ubuntu6_all.deb Size: 36528 MD5sum: 17d764af18089f8c13a339d4d4e367da SHA1: 326be45fc5d3fb30184f123538d736329ef9f7e9 SHA256: a1db4c6c3f780b9f13e635785a8b6d503232fcf9844e2139fabb78f7e473472d Description: System-V-like runlevel change mechanism Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/sysvinit Description-md5: 195f2d617082a23f37cee0f50784eef9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: sysvinit-utils Priority: required Section: admin Installed-Size: 232 Maintainer: Ubuntu Core Developers Original-Maintainer: Debian sysvinit maintainers Architecture: i386 Source: sysvinit Version: 2.88dsf-41ubuntu6 Replaces: last, sysvinit (<= 2.86.ds1-65) Depends: libc6 (>= 2.15), libselinux1 (>= 1.32), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Recommends: upstart (>= 0.6.3-4) Suggests: bootlogd, sash Conflicts: chkconfig (<< 11.0-79.1-2), last, sysvconfig Breaks: upstart (<< 1.5-0ubuntu5) Filename: pool/main/s/sysvinit/sysvinit-utils_2.88dsf-41ubuntu6_i386.deb Size: 51476 MD5sum: 6ee2e00a15dde726d89dc41184108504 SHA1: a2c89b0ee00d586a6ace287c6c57c4c735f7db73 SHA256: f64717bacf25629b3c8ea48e462c8301fc45178bb323ed7338b8ccf40b82172f Description: System-V-like utilities Multi-Arch: foreign Homepage: http://savannah.nongnu.org/projects/sysvinit Description-md5: 1d2bc4c9c32104729144c7578ecd30bd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: t1utils Priority: optional Section: text Installed-Size: 268 Maintainer: Ubuntu Developers Original-Maintainer: C.M. Connelly Architecture: i386 Version: 1.37-2ubuntu1 Depends: libc6 (>= 2.7) Filename: pool/main/t/t1utils/t1utils_1.37-2ubuntu1_i386.deb Size: 111872 MD5sum: d3c6e410990c64876035d6ade3f8bea9 SHA1: 92dd78dfb525f80a92c1f0ff574f0f0ef10b931f SHA256: 018fea8184e2705233862216c6890b3a3fa9c021e6d131fb2b3fb2d978826650 Description: Collection of simple Type 1 font manipulation programs Homepage: http://www.lcdf.org/type/ Description-md5: abf1d47b8ca1b485d148651358fc9283 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tar Essential: yes Priority: required Section: utils Installed-Size: 760 Maintainer: Ubuntu Developers Original-Maintainer: Bdale Garbee Architecture: i386 Version: 1.27.1-1 Replaces: cpio (<< 2.4.2-39) Pre-Depends: libacl1 (>= 2.2.51-8), libc6 (>= 2.17), libselinux1 (>= 1.32) Suggests: bzip2, ncompress, xz-utils, tar-scripts Conflicts: cpio (<= 2.4.2-38) Breaks: dpkg-dev (<< 1.14.26) Filename: pool/main/t/tar/tar_1.27.1-1_i386.deb Size: 194168 MD5sum: 81dffaf69448e1af20f0d7283509f764 SHA1: 6821ad6bde538582540b99cd45571138500fdf93 SHA256: 3d694c35dd32f3e9613e84d2b0557a243ece0b2c7066e262d96174f931dd6db5 Description: GNU version of the tar archiving utility Multi-Arch: foreign Description-md5: 48033bf96442788d1f697785773ad9bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: tar-doc Priority: optional Section: doc Installed-Size: 216 Maintainer: Ubuntu Developers Original-Maintainer: Bdale Garbee Architecture: all Version: 1.27.1-1 Depends: dpkg (>= 1.15.4) | install-info Filename: pool/main/t/tar-doc/tar-doc_1.27.1-1_all.deb Size: 185838 MD5sum: f20cce03b2ff512603a37a6b1939bb11 SHA1: 5d9b567497fbfcf927419ba0d73eca950fd17472 SHA256: 2c8d68e6e56e93a9cacb573f517dc65f9df73debb00a2e2f040f5b7f16d7cbdf Description: documentation for the tar package Description-md5: 6b9e60dc6dddd349e316e7e4fb90e3df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tasksel Priority: optional Section: admin Installed-Size: 240 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Version: 2.88ubuntu15 Depends: debconf (>= 0.5) | debconf-2.0, liblocale-gettext-perl, apt (>= 0.6.45ubuntu14), aptitude (>= 0.2.15-1), tasksel-data Pre-Depends: debconf (>= 1.5.34) | cdebconf (>= 0.106) Conflicts: base-config (<< 2.32), debconf (<< 1.4.27) Filename: pool/main/t/tasksel/tasksel_2.88ubuntu15_all.deb Size: 29670 MD5sum: 2e096657693512ae39b94f66658fe9e7 SHA1: f77144d1e6f5011d2e7abc0a8dc72c582307bd52 SHA256: 34eb609f8d5387babdc5ec96a178053297de091170ed09282a0ff2e63e71a4e0 Description: Tool for selecting tasks for installation on Debian systems Description-md5: 60dd85155b58c0e35083e848351ae922 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: tasksel-data Priority: optional Section: admin Installed-Size: 136 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Source: tasksel Version: 2.88ubuntu15 Depends: tasksel Recommends: laptop-detect Conflicts: tasksel (<< 2.67) Filename: pool/main/t/tasksel/tasksel-data_2.88ubuntu15_all.deb Size: 6366 MD5sum: 9e6d0f90594e051424709c3adefc14ec SHA1: 9deecf6ddac4820538b85758830868a8582b0a73 SHA256: 1430f6a12b2aec4d5b7e295f8f2bbb9bddf86882acd6a88ce0f177276f8edc07 Description: Official tasks used for installation of Debian systems Description-md5: f50423a30414db0072803e0bf842ea21 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: tcl Priority: optional Section: interpreters Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Provides: tclsh Depends: tcl8.6 (>= 8.6.0-2) Conflicts: tcl-lib, tcl8.5-lib Breaks: tcl8.3 (<< 8.3.5-15), tcl8.4 (<< 8.4.20-2), tcl8.5 (<< 8.5.14-3), tcl8.6 (<< 8.6.0-2) Filename: pool/main/t/tcltk-defaults/tcl_8.6.0+6ubuntu3_i386.deb Size: 4884 MD5sum: e82d30456e2a6e7078a301f5cbf821b2 SHA1: 8cb200846a31c9ecbec269073a7840e3b7116ad6 SHA256: 26b9b6250081a32479541a84ab7c261a2b13698c2957f6f219f0687337fa0406 Description: Tool Command Language (default version) - shell Multi-Arch: foreign Description-md5: dc49b54190858f10215816ea3b0a62d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tcl-dev Priority: optional Section: devel Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Replaces: tcl-lib (<< 8.6.0+6ubuntu1), tk-tile Depends: tcl8.6-dev (>= 8.6.0-2), tcl Suggests: tcl-doc Conflicts: tk-tile Filename: pool/main/t/tcltk-defaults/tcl-dev_8.6.0+6ubuntu3_i386.deb Size: 5422 MD5sum: 342fd7b8a8696777e83922f197fbb788 SHA1: e0033f204dddd304252aa9a80d0978cb1a3be08d SHA256: 8fc4e82f1bf578cb6c63f4840eb4ed07e67a52c77d24a4dcc6d0c0bebb1f916f Description: Tool Command Language (default version) - development files Multi-Arch: same Description-md5: 4374a84d90512fcd0ebb9e4048b934e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tcl-doc Priority: optional Section: doc Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: all Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Recommends: tcl8.6-doc (>= 8.6.0-2) Suggests: tcl Filename: pool/main/t/tcltk-defaults/tcl-doc_8.6.0+6ubuntu3_all.deb Size: 114754 MD5sum: 4e1500ca97a1d68b9fca4d0cd573013e SHA1: 8b69e27898d261beb32d07dc9624a4a8a5baa36a SHA256: 76570463b67b2571a6b4f6dc06d33d0ee4fa29b5f627241f468c39cc79fab4e3 Description: Tool Command Language (default version) - manual pages Description-md5: 21080369a6fe959dc4ec829a9bddb565 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tcl8.5 Priority: optional Section: interpreters Installed-Size: 65 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: i386 Version: 8.5.15-2ubuntu1 Depends: libtcl8.5 (= 8.5.15-2ubuntu1), libc6 (>= 2.0) Suggests: tcl-tclreadline Conflicts: tcl74 (<= 7.4p3-2) Filename: pool/main/t/tcl8.5/tcl8.5_8.5.15-2ubuntu1_i386.deb Size: 13882 MD5sum: 54095a50afde79bab92fd8bcc13cc4ed SHA1: 79e651e1e6526b12605d68bb1360e3203b6da3ad SHA256: eba95ab132c316333c6b8e823aca3c751b5bded8f8a4965187bdf62454628dbc Description: Tcl (the Tool Command Language) v8.5 - shell Multi-Arch: foreign Homepage: http://www.tcl.tk/ Description-md5: 4bf0f53ab369949bd3d71dfa098ebd0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-desktop, ubuntustudio-desktop Package: tcl8.5-dev Priority: optional Section: devel Installed-Size: 3092 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: i386 Source: tcl8.5 Version: 8.5.15-2ubuntu1 Depends: dpkg-dev (>= 1.16.1~), libtcl8.5 (= 8.5.15-2ubuntu1), tcl8.5 Suggests: tcl8.5-doc Filename: pool/main/t/tcl8.5/tcl8.5-dev_8.5.15-2ubuntu1_i386.deb Size: 662254 MD5sum: facb5ca1345da0ea40b7a99f319d1b33 SHA1: 12a8b003a6be3bfb5cc390d07e288e43336fd627 SHA256: 9a331ba7a943b14ea7ddfafc9ba0fba67594084d43204761d07ad609eec7f4f1 Description: Tcl (the Tool Command Language) v8.5 - development files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: df1803692fba8f14e6b8ee973f51df9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tcl8.5-doc Priority: optional Section: doc Installed-Size: 1559 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: all Source: tcl8.5 Version: 8.5.15-2ubuntu1 Provides: tcldoc Suggests: tcl8.5 Conflicts: tcl8.3-doc, tcl8.4-doc, tcldoc Filename: pool/main/t/tcl8.5/tcl8.5-doc_8.5.15-2ubuntu1_all.deb Size: 940256 MD5sum: 3a2ee4e4a126cb6e422ba587dea41984 SHA1: 4b3c674f8592f4f1cedaf51036055c66523fc3fe SHA256: 0b9516ab497eac7a7be79fd715a0e7f7259fcb70cf45f7a37eef8c1774f197d0 Description: Tcl (the Tool Command Language) v8.5 - manual pages Homepage: http://www.tcl.tk/ Description-md5: 972f585b08b7a86b1219ff701b8d85b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tcl8.6 Priority: optional Section: interpreters Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Version: 8.6.1-4ubuntu1 Depends: libc6 (>= 2.0), libtcl8.6 (>= 8.6.0) Suggests: tcl-tclreadline Conflicts: tcl74 (<= 7.4p3-2) Filename: pool/main/t/tcl8.6/tcl8.6_8.6.1-4ubuntu1_i386.deb Size: 14132 MD5sum: f9b3f4b2c5e05d4052df8b3b5ab8f1fa SHA1: 1b9e3d2a92dc94a251f45b07fbc58812fa99f9c3 SHA256: 4f8e315a99b33660cef6fc0a5c22b81d4f1ad6ac7870f5bacc45b5e9e343b0a0 Description: Tcl (the Tool Command Language) v8.6 - shell Multi-Arch: foreign Homepage: http://www.tcl.tk/ Description-md5: db96a3d5e5af8fae5a2b1f4b947f010b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tcl8.6-dev Priority: optional Section: devel Installed-Size: 3733 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Source: tcl8.6 Version: 8.6.1-4ubuntu1 Depends: dpkg-dev (>= 1.16.1~), zlib1g-dev, libtcl8.6 (= 8.6.1-4ubuntu1), tcl8.6 Suggests: tcl8.6-doc Filename: pool/main/t/tcl8.6/tcl8.6-dev_8.6.1-4ubuntu1_i386.deb Size: 845390 MD5sum: 01a62b23eb34bd8257c98898d2c52efc SHA1: 30d8482f89df4adc288d4cbf62a3bb9d7a7ad2c0 SHA256: 991f8eecd58f8696368a16cf21b757132c54f228fb9812356e7f88f9d2066c86 Description: Tcl (the Tool Command Language) v8.6 - development files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 0a8e81d77745269a6580e4019ff2eaf9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tcl8.6-doc Priority: optional Section: doc Installed-Size: 1714 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: all Source: tcl8.6 Version: 8.6.1-4ubuntu1 Provides: tcldoc Suggests: tcl8.6 Conflicts: tcldoc Filename: pool/main/t/tcl8.6/tcl8.6-doc_8.6.1-4ubuntu1_all.deb Size: 1056404 MD5sum: 39cd39ee9853f719ff8518924262e5c4 SHA1: 6d77028f68f8b3c56603b423a1cc9097ea2d8ddc SHA256: 77d4c425b7eb09e95289efe3e5bf10b256d2154def6fcac1ccec75090f3587e7 Description: Tcl (the Tool Command Language) v8.6 - manual pages Homepage: http://www.tcl.tk/ Description-md5: 9ea712fb1f7cc048c9f9212446174371 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tcpd Priority: optional Section: net Installed-Size: 95 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: i386 Source: tcp-wrappers Version: 7.6.q-25 Replaces: libwrap0 (<< 7.6-8) Depends: libc6 (>= 2.4), libwrap0 (>= 7.6-4~) Filename: pool/main/t/tcp-wrappers/tcpd_7.6.q-25_i386.deb Size: 22422 MD5sum: ea44250d54afd48cbd883ed719f81037 SHA1: 0df14c3049da0cf25e5424b4cb3f8c24f626b76d SHA256: 30eca37fc25e2b7e830ee769d73644eada189a0652a16976a5c5929f97df6e05 Description: Wietse Venema's TCP wrapper utilities Multi-Arch: foreign Description-md5: d52fad3ffb22dc8056c1ddced83af179 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, mail-server, ubuntu-usb, print-server, cloud-image, openssh-server, lamp-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tcpdump Priority: standard Section: net Installed-Size: 968 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: i386 Version: 4.5.1-2ubuntu1 Depends: libc6 (>= 2.7), libpcap0.8 (>= 1.2.1), libssl1.0.0 (>= 1.0.0) Suggests: apparmor (>= 2.3) Filename: pool/main/t/tcpdump/tcpdump_4.5.1-2ubuntu1_i386.deb Size: 333438 MD5sum: 7e2a9c745ca7846893ff758fe2b029b1 SHA1: 001059e170fed577da20d53bea7eb6a98cce55aa SHA256: d4d72ca84e86db5861ac03857c5194b170ceec328fbe31b715bd3afe5a96f84c Description: command-line network traffic analyzer Homepage: http://www.tcpdump.org/ Description-md5: f01841bfda357d116d7ff7b7a47e8782 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: tdb-tools Priority: optional Section: utils Installed-Size: 93 Maintainer: Ubuntu Developers Original-Maintainer: Jelmer Vernooij Architecture: i386 Source: tdb Version: 1.2.12-1 Depends: libc6 (>= 2.4), libtdb1 (>= 1.2.11) Filename: pool/main/t/tdb/tdb-tools_1.2.12-1_i386.deb Size: 22732 MD5sum: e8478606d9eacbf5274d86042a13b8e9 SHA1: c2e84dc319bf54aebe6d9c947a1d71d90b9076ad SHA256: b5130f85db095551ee5c0ddcdd65b06e551d64206593a1670c26a1cd862cc2a1 Description: Trivial Database - bundled binaries Homepage: http://tdb.samba.org/ Description-md5: 4c671417a2674117648ec2fcd5245c12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-audio Package: tdsodbc Priority: optional Section: libs Installed-Size: 449 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: freetds Version: 0.91-5 Replaces: freetds0, libct0, libct1 Depends: libc6 (>= 2.17), libgcrypt11 (>= 1.4.5), libgnutls26 (>= 2.12.17-0), libgssapi-krb5-2 (>= 1.10+dfsg~), odbcinst1debian2 (>= 2.2.11-3), debconf (>= 0.5) | debconf-2.0, freetds-common Recommends: libodbc1 Conflicts: freetds0, libct0, unixodbc (<< 2.1.1-2) Breaks: libiodbc2 (<< 3.52.7-3~), odbcinst1debian2 (<< 2.2.14p2-3), unixodbc (<< 2.2.14p2-3) Filename: pool/main/f/freetds/tdsodbc_0.91-5_i386.deb Size: 187022 MD5sum: 5d28f532e6ddd805d515afba311b0b58 SHA1: 9b5f7e75bc40d2a882fd7268b5c5f35d30ea7b73 SHA256: b57eb1ed3dd22be09f515dd3b2a5c9c98bde2f3ed73592f15d11f1a7134c3f89 Description: ODBC driver for connecting to MS SQL and Sybase SQL servers Multi-Arch: same Homepage: http://www.freetds.org/ Description-md5: 0fecf9617c4dc2509f73a437bea0f895 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: telepathy-gabble Priority: optional Section: net Installed-Size: 1949 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Version: 0.18.2-1 Provides: telepathy-connection-manager Depends: libc6 (>= 2.7), libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.32), libgnutls26 (>= 2.12.17-0), libnice10 (>= 0.1.0), libsoup2.4-1 (>= 2.4.0), libsqlite3-0 (>= 3.5.9), libtelepathy-glib0 (>= 0.19.7), libxml2 (>= 2.7.4) Breaks: telepathy-mission-control-5 (<< 1:5.5) Filename: pool/main/t/telepathy-gabble/telepathy-gabble_0.18.2-1_i386.deb Size: 545000 MD5sum: e407cb33ffc8f5c65eed729c61c66359 SHA1: 7e45f808be0fd3d9f55c680855aa4513e7991543 SHA256: 199a92d9c99f07a573a0656c2b098015ebda1754c440ad7d7cae85de70472d13 Description: Jabber/XMPP connection manager Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: be6f33acbe432be29ffa09bddecfab4f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telepathy-gabble-dbg Priority: extra Section: net Installed-Size: 9286 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-gabble Version: 0.18.2-1 Depends: telepathy-gabble (= 0.18.2-1) Filename: pool/main/t/telepathy-gabble/telepathy-gabble-dbg_0.18.2-1_i386.deb Size: 7808896 MD5sum: 918f8a4389c93c969fe99438aebbaed3 SHA1: 614e7ca4b77731fe777db368587e382ec50c94b1 SHA256: 7fd03e8f4efa2644526437fe87c64f22b8aa53e2177ce34a68695baf18eecf90 Description: Jabber/XMPP connection manager (debug symbols) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 0b694c4e40c4b2d79296747eb82e274a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: telepathy-haze Priority: optional Section: net Installed-Size: 231 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Version: 0.8.0-1 Provides: telepathy-connection-manager Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libpurple0 (>= 1:2.7.0), libtelepathy-glib0 (>= 0.19.1) Filename: pool/main/t/telepathy-haze/telepathy-haze_0.8.0-1_i386.deb Size: 74638 MD5sum: d6bd4ef4dadcc7d7d8a0c5a04aeee55b SHA1: 9ef900f4bb47601c289713fc0fb392b3c5711ab9 SHA256: 77f780da494dc7acdb1f277adf42cbe58e0dd40efa77809e5768cb255caebe38 Description: Telepathy connection manager that uses libpurple Description-md5: ced066e1c97d88c67834b36aa22e47cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telepathy-haze-dbg Priority: extra Section: debug Installed-Size: 337 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-haze Version: 0.8.0-1 Depends: telepathy-haze (= 0.8.0-1) Filename: pool/main/t/telepathy-haze/telepathy-haze-dbg_0.8.0-1_i386.deb Size: 253210 MD5sum: f3025a1242ccbad1b3041d93a4b32525 SHA1: 49bcbe13f8fd5d1240bf2770c0c0133663f8f03e SHA256: fccf35444016d77fc941e952ff0fafcf7f487ce9b86bffac27e83850569be920 Description: Telepathy connection manager that uses libpurple - debug symbols Description-md5: 003666614710ffdc50603a7f73c9d5bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: telepathy-idle Priority: optional Section: net Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Version: 0.2.0-1 Provides: telepathy-connection-manager Depends: libc6 (>= 2.4), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.32), libtelepathy-glib0 (>= 0.22) Filename: pool/main/t/telepathy-idle/telepathy-idle_0.2.0-1_i386.deb Size: 56432 MD5sum: 4a826c37e9591a956edd1d1aae1bd549 SHA1: 3e3d9574102d451766e65a93dffb645b0c8035d7 SHA256: 75a0521f4d3391e54cbd86ab7f74eb65a1d2c35a13d27275571f77f31e3d48df Description: IRC connection manager for Telepathy Homepage: http://sourceforge.net/projects/telepathy-idle Description-md5: 67fdbab1fbd4d29a5cdf58c93c2f65c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telepathy-indicator Priority: optional Section: gnome Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Ken VanDine Architecture: i386 Version: 0.3.1+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.28.0), libgtk-3-0 (>= 3.0.0), libmessaging-menu0 (>= 12.10.0), libtelepathy-glib0 (>= 0.19.9), libunity9 (>= 3.4.6) Filename: pool/main/t/telepathy-indicator/telepathy-indicator_0.3.1+14.04.20140411-0ubuntu1_i386.deb Size: 14006 MD5sum: d8c9b6a600f7b8ee1b79f8cff2266796 SHA1: f352ca715f26ceec5ce24416f2274e0ee0d58e34 SHA256: 3765d851bde53505ec7196e8d6aa6f8b3fe20a13733a9ace1024e7b93a5981c5 Description: Desktop service to integrate Telepathy with the messaging menu. Homepage: https://launchpad.net/telepathy-indicator Description-md5: a4b32afd6541e8d9bac93a2561aa4423 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: telepathy-logger Priority: optional Section: libs Installed-Size: 72 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Version: 0.8.0-3 Depends: libtelepathy-logger3 (= 0.8.0-3), libc6 (>= 2.4), libglib2.0-0 (>= 2.28), libtelepathy-glib0 (>= 0.19.2), dconf-gsettings-backend | gsettings-backend Filename: pool/main/t/telepathy-logger/telepathy-logger_0.8.0-3_i386.deb Size: 5950 MD5sum: a2c530563439e40baa61de525638691d SHA1: f22bd02cfe435eccb2254eb9ca49346ee4b3b9d0 SHA256: b4684c6abc788d0d14990a6909b1d318cafd3a06034fa380e2e844d30558b7ca Description: Telepathy logger service - Daemon Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 33ed7f7be4047686973cac37c0f0a576 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telepathy-mission-control-5 Priority: optional Section: net Installed-Size: 533 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Version: 1:5.16.1-1ubuntu3 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.92), libglib2.0-0 (>= 2.35.9), libmission-control-plugins0 (= 1:5.16.1-1ubuntu3), libnm-glib4 (>= 0.7.999), libtelepathy-glib0 (>= 0.20), libupower-glib1 (>= 0.9.11), dconf-gsettings-backend | gsettings-backend Suggests: telepathy-haze, apparmor Conflicts: telepathy-mission-control Filename: pool/main/t/telepathy-mission-control-5/telepathy-mission-control-5_5.16.1-1ubuntu3_i386.deb Size: 156802 MD5sum: d473a4697b094bd1ba456f8b848319cb SHA1: 3e07dcd271c7a41dbb40d5305478b3784fa6a4f3 SHA256: 20ea35f0315817fad05cf170a9de5206f0995ed13a4d5f319150137e376a51e3 Description: management daemon for Telepathy real-time communication framework Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: e55b455e982023023ef7a47ea2921383 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telepathy-mission-control-5-dbg Priority: extra Section: debug Installed-Size: 579 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Source: telepathy-mission-control-5 Version: 1:5.16.1-1ubuntu3 Depends: telepathy-mission-control-5 (= 1:5.16.1-1ubuntu3) Filename: pool/main/t/telepathy-mission-control-5/telepathy-mission-control-5-dbg_5.16.1-1ubuntu3_i386.deb Size: 444930 MD5sum: 61ba3d9d04ba2c1206c41bd21b62485c SHA1: 7ec63786b928f5836d539b2508cc6bae2274f39c SHA256: e7d52dac5e5284940e18962a85fe20d6de62f3c35ed1007a0a0458ab0acfe5ca Description: management daemon for Telepathy (debug symbols) Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: 01ed5c781869b5a9d61f1a43cf9f7158 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: telepathy-salut Priority: optional Section: net Installed-Size: 1190 Maintainer: Ubuntu Developers Original-Maintainer: Debian Telepathy maintainers Architecture: i386 Version: 0.8.1-1ubuntu3 Provides: telepathy-connection-manager Depends: libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-gobject0 (>= 0.6.22), libc6 (>= 2.7), libdbus-1-3 (>= 1.1.1), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libgnutls26 (>= 2.12.17-0), libsoup2.4-1 (>= 2.4.1), libsqlite3-0 (>= 3.5.9), libtelepathy-glib0 (>= 0.19.1), libuuid1 (>= 2.16), libxml2 (>= 2.7.4), avahi-daemon Filename: pool/main/t/telepathy-salut/telepathy-salut_0.8.1-1ubuntu3_i386.deb Size: 326666 MD5sum: 721713ed6c9b18dba4d6643c6cd401c9 SHA1: 91d8e19fd16f6fabc3e92ee4c62b5e737c02267f SHA256: 81dba8c6cdff1f4cdef9cdae7d34b85c00e2eb2cdf71c39098a84d9dc2b9c566 Description: Link-local XMPP connection manager for the Telepathy framework Homepage: http://telepathy.freedesktop.org/wiki/ Description-md5: ab783567a369d0ac62ded3363fee56ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: telnet Priority: standard Section: net Installed-Size: 156 Maintainer: Ubuntu Developers Original-Maintainer: Alberto Gonzalez Iniesta Architecture: i386 Source: netkit-telnet Version: 0.17-36build2 Replaces: netstd Provides: telnet-client Depends: netbase, libc6 (>= 2.15), libstdc++6 (>= 4.1.1) Filename: pool/main/n/netkit-telnet/telnet_0.17-36build2_i386.deb Size: 64020 MD5sum: a8f5cb97c601e38907c74f67bb068c86 SHA1: 7c47871232d400dd11a79527f7ff504ea4e11174 SHA256: a5a1594ab61360a24f040309283ea0e655137c76eb4e3acd02459ba32d71dca3 Description: The telnet client Description-md5: 13e2fd93c4633bde812f94ff8e412f05 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: testrepository Priority: optional Section: python Installed-Size: 45 Maintainer: Ubuntu Developers Original-Maintainer: Debian Python Modules Team Architecture: all Version: 0.0.18-1ubuntu1 Depends: python-testrepository (>= 0.0.18-1ubuntu1) | python3-testrepository (>= 0.0.18-1ubuntu1), python:any Filename: pool/main/t/testrepository/testrepository_0.0.18-1ubuntu1_all.deb Size: 12240 MD5sum: 8ae32b6a8aa46e45e61daead996694a4 SHA1: 5c1b2e25e762041a8a5b5fb444205e6eb520b2e4 SHA256: bc5c525c00f10d0e7590d028db6e451080d255e354402dc608ae8eedda0c5d23 Description: Test result manager Homepage: https://pypi.python.org/pypi/testrepository Description-md5: 0c940809474b63448d71a13456f0430e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tex-common Priority: optional Section: tex Installed-Size: 1058 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Version: 4.04 Replaces: dvipdfmx, tetex-base (<= 3.0-10) Depends: debconf (>= 0.5) | debconf-2.0, ucf, debconf (>= 1.4.69) | cdebconf (>= 0.39), dpkg (>= 1.14.18) Suggests: debhelper (>= 7.0.8) Conflicts: context (<= 2011.05.18.20110627-1), tetex-base (<< 2007), texlive-common (<< 2009) Breaks: alqalam (<= 0.2-5), cm-super (<= 0.3.4-4), cm-super-minimal (<= 0.3.4-7), context-doc-nonfree (<= 2012.06.27-1), gregoriotex (<= 2.0-1.1), itrans (<= 5.3-10), jadetex (<= 3.13-12), ko.tex-base (<= 0.1.0+20071012-1), ko.tex-extra (<= 0.1.0+20071012-1), latex-cjk-chinese (<< 4.8.2+git20111216-2), latex-cjk-chinese-arphic-bkai00mp (<= 1.21+nmu1), latex-cjk-chinese-arphic-bsmi00lp (<= 1.21+nmu1), latex-cjk-chinese-arphic-gbsn00lp (<= 1.21+nmu1), latex-cjk-chinese-arphic-gkai00mp (<= 1.21+nmu1), latex-cjk-japanese-wadalab (<= 0.20050817-15), latex-cjk-thai (<= 4.8.2+git20111216-1), latex-fonts-sipa-arundina (<= 0.2.0-1), latex-fonts-thai-tlwg (<= 1:0.5.0-1), latex-sanskrit (<= 2.2-8), lmodern (<= 2.004.1-3.1), luatex (<< 0.70.1), musixtex (<= 1:0.115-2), scalable-cyrfonts-tex (<= 4.15), tex-gyre (<= 2.004.1-2.1), texlive-common (<< 2010), texlive-lang-arab (<< 2012), thailatex (<< 2013), tipa (<= 2:1.3-15) Filename: pool/main/t/tex-common/tex-common_4.04_all.deb Size: 620556 MD5sum: e214a0815a99ff4042b9d470b3e41b91 SHA1: c7e15a184a79f7c7730201e739eb3cd4fd971293 SHA256: e58035d6a0ef6ac7534540178f7629283fbaf17cadf03cfa1eaba07881f453e1 Description: common infrastructure for building and installing TeX Description-md5: 9c5d58c83f2a52331afe0a8e3cd67376 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: tex-gyre Priority: optional Section: tex Installed-Size: 18950 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Version: 2.004.2-4 Depends: tex-common (>= 3), fonts-texgyre (= 2.004.2-4) Pre-Depends: dpkg (>= 1.15.7.2) Filename: pool/main/t/tex-gyre/tex-gyre_2.004.2-4_all.deb Size: 7129792 MD5sum: d54170654531d882060d386c0469cb6e SHA1: 9d89abcb438d73dd2ea39395aed4c43bd623e2cc SHA256: 722931e09f8f14d45911d5c88693e28afcfefebc18271fe622c0f7a8e4ed1564 Description: scalable PostScript and OpenType fonts based on URW Fonts Homepage: http://www.gust.org.pl/projects/e-foundry/tex-gyre/ Description-md5: 85d66d19a3aed797f584c9b3a750a54c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texi2html Priority: optional Section: text Installed-Size: 1808 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 1.82+dfsg1-3 Depends: libtext-unidecode-perl, perl, dpkg (>= 1.15.4) | install-info Suggests: latex2html Filename: pool/main/t/texi2html/texi2html_1.82+dfsg1-3_all.deb Size: 402636 MD5sum: 7ed1bd0b769ceb4ca8ce4219d895c938 SHA1: e3494d5b084ad9feb478fc0b546225674764639e SHA256: f683d1b49075ba038c450d223d5a3d9bce9fe243e2ba4fbe61ca22ab2c195ee6 Description: Convert Texinfo files to HTML Multi-Arch: foreign Homepage: http://www.nongnu.org/texi2html/ Description-md5: 8bdc2e0c74f055b1b22258635c110919 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texinfo Priority: optional Section: text Installed-Size: 2664 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: i386 Version: 5.2.0.dfsg.1-2 Replaces: tetex-base (<< 1.0.2+20000804-9), tetex-bin (<< 3.0) Depends: libc6 (>= 2.3.4), libtext-unidecode-perl, libintl-perl, libxml-libxml-perl Suggests: texlive-base, texlive-latex-base, texlive-generic-recommended, texinfo-doc-nonfree Breaks: ja-trans (<= 0.7-3.1), tetex-base (<< 3.0), tetex-bin (<< 3.0) Filename: pool/main/t/texinfo/texinfo_5.2.0.dfsg.1-2_i386.deb Size: 561234 MD5sum: a6ed07f2a6d81f7dcc3dda0f11b82450 SHA1: fdd5cd1d9dc2f26fa133e3facb43a0e8082b8599 SHA256: 13f9f72e7df97f11ca92a9ab489d4bc4d6455c539adabd633d4842e4313c306d Description: Documentation system for on-line information and printed output Multi-Arch: foreign Description-md5: 1c7c77fec8377bb6e9c62acc5e9736a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texinfo-doc-nonfree Priority: optional Section: doc Installed-Size: 3894 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Version: 5.2.0-1 Replaces: info (<= 4.8-8), texinfo (<= 4.8-8) Recommends: info Conflicts: info (<= 4.8-8), texinfo (<= 4.8-8) Filename: pool/main/t/texinfo-doc-nonfree/texinfo-doc-nonfree_5.2.0-1_all.deb Size: 820360 MD5sum: 8732c08dd30f0e7210dd97b0512de5df SHA1: 4b4300cc5674b9553765ec49aede1b2bb3ca06e7 SHA256: 1ac6462bf85f1f1b72fff50f5c8a7ce215a583352fbae03df50a546fc0a28115 Description: texinfo and info documentation that is non-free Description-md5: 0702852174ad437db8e2786ae34b6933 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive Priority: optional Section: tex Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-latex-recommended (>= 2013.20130512), texlive-fonts-recommended (>= 2013.20130512), texlive-latex-base (>= 2013.20130512) Filename: pool/main/t/texlive-base/texlive_2013.20140215-1_all.deb Size: 14234 MD5sum: 99d5f0b96fbab61763eee08bc8bc208b SHA1: d090e0196183d5d639fbe05cc3fafe881b2db299 SHA256: 9b4edda5fdf5b4cbd3b1a8b210d26782c18cf38b2e2fe9655577f50dce854b26 Description: TeX Live: A decent selection of the TeX Live packages Homepage: http://www.tug.org/texlive/ Description-md5: 7746f703067fc491a96a5538309c5d51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-base Priority: optional Section: tex Installed-Size: 43839 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Version: 2013.20140215-1 Replaces: context (<< 2012.05.30.20121209), texlive-binaries (<< 2013), texlive-common (<< 2013), texlive-doc-en (<< 2013) Provides: dvipdfmx Depends: tex-common (>= 4.03), xdg-utils, debconf (>= 0.5) | debconf-2.0, dpkg (>= 1.14.18), luatex (>= 0.70.1), ucf, texlive-binaries (>= 2013.20130512), libpaper-utils Recommends: lmodern (>= 0.93.3) Suggests: ghostscript, gv | postscript-viewer, xpdf-reader | pdf-viewer, perl-tk Conflicts: pdfjam (<< 2013.20130512), ptex-bin (<< 2013.20130512), texlive (<< 2013.20130512), texlive-base (<< 2013.20130512), texlive-bibtex-extra (<< 2013.20130512), texlive-binaries (<< 2013.20130512), texlive-common, texlive-doc-ar (<< 2013.20130512), texlive-doc-base, texlive-doc-bg (<< 2013.20130512), texlive-doc-cs+sk (<< 2013.20130512), texlive-doc-de (<< 2013.20130512), texlive-doc-en (<< 2013.20130512), texlive-doc-es (<< 2013.20130512), texlive-doc-fi (<< 2013.20130512), texlive-doc-fr (<< 2013.20130512), texlive-doc-it (<< 2013.20130512), texlive-doc-ja (<< 2013.20130512), texlive-doc-ko (<< 2013.20130512), texlive-doc-mn (<< 2013.20130512), texlive-doc-nl (<< 2013.20130512), texlive-doc-pl (<< 2013.20130512), texlive-doc-pt (<< 2013.20130512), texlive-doc-rs (<< 2013.20130512), texlive-doc-ru (<< 2013.20130512), texlive-doc-si (<< 2013.20130512), texlive-doc-th (<< 2013.20130512), texlive-doc-tr (<< 2013.20130512), texlive-doc-uk (<< 2013.20130512), texlive-doc-vi (<< 2013.20130512), texlive-doc-zh (<< 2013.20130512), texlive-extra-utils (<< 2013.20130512), texlive-font-utils (<< 2013.20130512), texlive-fonts-extra (<< 2013.20130512), texlive-fonts-extra-doc (<< 2013.20130512), texlive-fonts-recommended (<< 2013.20130512), texlive-fonts-recommended-doc (<< 2013.20130512), texlive-formats-extra (<< 2013.20130512), texlive-full (<< 2013.20130512), texlive-games (<< 2013.20130512), texlive-generic-extra (<< 2013.20130512), texlive-generic-recommended (<< 2013.20130512), texlive-humanities (<< 2013.20130512), texlive-humanities-doc (<< 2013.20130512), texlive-lang-african (<< 2013.20130512), texlive-lang-all (<< 2013.20130512), texlive-lang-arabic (<< 2013.20130512), texlive-lang-armenian (<< 2013.20130512), texlive-lang-cjk (<< 2013.20130512), texlive-lang-croatian (<< 2013.20130512), texlive-lang-cyrillic (<< 2013.20130512), texlive-lang-czechslovak (<< 2013.20130512), texlive-lang-danish (<< 2013.20130512), texlive-lang-dutch (<< 2013.20130512), texlive-lang-english (<< 2013.20130512), texlive-lang-european (<< 2013.20130512), texlive-lang-finnish (<< 2013.20130512), texlive-lang-french (<< 2013.20130512), texlive-lang-german (<< 2013.20130512), texlive-lang-greek (<< 2013.20130512), texlive-lang-hebrew (<< 2013.20130512), texlive-lang-hungarian (<< 2013.20130512), texlive-lang-indic (<< 2013.20130512), texlive-lang-italian (<< 2013.20130512), texlive-lang-latin (<< 2013.20130512), texlive-lang-latvian (<< 2013.20130512), texlive-lang-lithuanian (<< 2013.20130512), texlive-lang-mongolian (<< 2013.20130512), texlive-lang-norwegian (<< 2013.20130512), texlive-lang-other (<< 2013.20130512), texlive-lang-polish (<< 2013.20130512), texlive-lang-portuguese (<< 2013.20130512), texlive-lang-spanish (<< 2013.20130512), texlive-lang-swedish (<< 2013.20130512), texlive-lang-tibetan (<< 2013.20130512), texlive-lang-vietnamese (<< 2013.20130512), texlive-latex-base (<< 2013.20130512), texlive-latex-base-doc (<< 2013.20130512), texlive-latex-extra (<< 2013.20130512), texlive-latex-extra-doc (<< 2013.20130512), texlive-latex-recommended (<< 2013.20130512), texlive-latex-recommended-doc (<< 2013.20130512), texlive-latex3 (<< 2013.20130512), texlive-luatex (<< 2013.20130512), texlive-math-extra (<< 2013.20130512), texlive-metapost (<< 2013.20130512), texlive-metapost-doc (<< 2013.20130512), texlive-music (<< 2013.20130512), texlive-omega (<< 2013.20130512), texlive-pictures (<< 2013.20130512), texlive-pictures-doc (<< 2013.20130512), texlive-plain-extra (<< 2013.20130512), texlive-pstricks (<< 2013.20130512), texlive-pstricks-doc (<< 2013.20130512), texlive-publishers (<< 2013.20130512), texlive-publishers-doc (<< 2013.20130512), texlive-science (<< 2013.20130512), texlive-science-doc (<< 2013.20130512), texlive-xetex (<< 2013.20130512), texpower (<< 2013.20130512), thailatex (<< 2013.20130512) Breaks: context (<< 2012.05.30.20121209) Filename: pool/main/t/texlive-base/texlive-base_2013.20140215-1_all.deb Size: 16162714 MD5sum: 1d562562174391ebac22e35fde9f786f SHA1: 32c4e0fd6f4117615b8db9e7ee3e32522142f32e SHA256: 20a7076e5eb3ce6706366226d2e05c81f3ddd49ede6bd30ec43120e91b8cb91e Description: TeX Live: Essential programs and files Homepage: http://www.tug.org/texlive/ Description-md5: 962e7229ffe1c463c82fdfd8c6b2f94e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: texlive-bibtex-extra Priority: optional Section: tex Installed-Size: 52974 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Replaces: texlive-publishers (<< 2013), texlive-publishers-doc (<< 2013) Depends: texlive-base (>= 2013.20130512), texlive-binaries (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3), texlive-latex-base (>= 2013.20130512) Breaks: biber (<< 1.8) Filename: pool/main/t/texlive-extra/texlive-bibtex-extra_2013.20140215-2_all.deb Size: 32337136 MD5sum: 3b8b6051acc1ec2da380ff88b79b793b SHA1: 065dfda3c0442be9a3bce892648ead60e419d72b SHA256: 9deaa92523fde15a67ba58cc65d321c020e451f8cc52d0a9b7ac4ed8cc9a9df2 Description: TeX Live: BibTeX additional styles Homepage: http://www.tug.org/texlive/ Description-md5: 39cfa4a94de6a212994ecc723a2a89eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-binaries Priority: optional Section: tex Installed-Size: 12910 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: i386 Source: texlive-bin Version: 2013.20130729.30972-2build3 Replaces: jmpost, mendexk, ptex-bin, texlive-base (<< 2010), texlive-metapost (<< 2010) Provides: jmpost, makejvf, mendexk, texlive-base-bin Depends: libc6 (>= 2.11), libcairo2 (>= 1.12), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.9), libgcc1 (>= 1:4.1.1), libgraphite2-3 (>= 1.2.2), libgs9 (>= 8.61.dfsg.1), libharfbuzz0b (>= 0.9.18-3), libicu52 (>= 52~m1-1~), libkpathsea6, libpng12-0 (>= 1.2.13-4), libpoppler44 (>= 0.24.5), libptexenc1, libstdc++6 (>= 4.6), libx11-6, libxaw7, libxmu6, libxpm4, libxt6, zlib1g (>= 1:1.1.4), tex-common (>= 3), perl, dpkg (>= 1.15.4) | install-info Recommends: texlive-base, luatex, python, ruby, wish Conflicts: jmpost, makejvf, mendexk Breaks: jtex-bin, multex-bin, texlive-base (<< 2013) Filename: pool/main/t/texlive-bin/texlive-binaries_2013.20130729.30972-2build3_i386.deb Size: 3642948 MD5sum: 7eb6c30b37877c229c718f34aa3a44ab SHA1: fd545a07ea7b72a6c8f83614b14d81eba2808862 SHA256: 2e0f52cced623889b2bac40529b19b14981518498fc5476eb8c115b13a3f8624 Description: Binaries for TeX Live Homepage: http://www.tug.org/texlive/ Description-md5: db16fecae335f49155c09b3c343347b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: texlive-extra-utils Priority: optional Section: tex Installed-Size: 13140 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Provides: pdfjam Depends: texlive-binaries (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3), texlive-latex-base (>= 2013.20130512), texlive-base (>= 2013.20130512), luatex, python Recommends: ruby | ruby-interpreter, texlive-latex-recommended, ghostscript Suggests: chktex, fragmaster, xindy, latexdiff, lacheck, latexmk, dvidvi, purifyeps, dvipng Filename: pool/main/t/texlive-extra/texlive-extra-utils_2013.20140215-2_all.deb Size: 10247522 MD5sum: f2f853f91363e20517f46a69fa56ad81 SHA1: 5c140611245666cb808b6e908406ce239f910943 SHA256: a91aef18332ba483db5ef572177da5906ed11b53e603541750484adf9c618255 Description: TeX Live: TeX auxiliary programs Homepage: http://www.tug.org/texlive/ Description-md5: c3fcd94d6ffafccb5b6b9340de0e29b1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-font-utils Priority: optional Section: tex Installed-Size: 4172 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Replaces: texlive-binaries (<< 2013) Depends: texlive-binaries (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Recommends: ghostscript, ps2eps Suggests: t1utils, psutils Filename: pool/main/t/texlive-extra/texlive-font-utils_2013.20140215-2_all.deb Size: 1711680 MD5sum: 17c55e34d55eb52ec52a7eb351b97f94 SHA1: f9ba05423aac149f942ca2f27fe45137ecb010fe SHA256: f7377741181abeec7604a82f96760d23dd5e1ed9973e95cfb0694e241253484d Description: TeX Live: Graphics and font utilities Homepage: http://www.tug.org/texlive/ Description-md5: 938e24a68cfa627ba35eb61e0001d5e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-fonts-extra-doc Priority: optional Section: doc Installed-Size: 64490 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-extra/texlive-fonts-extra-doc_2013.20140215-2_all.deb Size: 53280346 MD5sum: ab4d976e70022df3693c60ba97221dfe SHA1: 4f11b88c2247594efab314c3ec90afc11578514f SHA256: 6f1f8f967dac93bf9db11622ea5eb21b7d22ce89f18c43b87d4c6f1dddb8e8dd Description: TeX Live: Documentation files for texlive-fonts-extra Homepage: http://www.tug.org/texlive/ Description-md5: f9855b4595b57fc990fb2a0bd72492ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-fonts-recommended Priority: optional Section: tex Installed-Size: 18433 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Replaces: texlive-latex-recommended (<< 2013.20140110) Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Recommends: tex-gyre, texlive-fonts-recommended-doc, tipa (>= 2:1.2-2.1) Filename: pool/main/t/texlive-base/texlive-fonts-recommended_2013.20140215-1_all.deb Size: 5714720 MD5sum: 768b993311561a8f41f1b8ecaa622061 SHA1: 7bf3be5baf86b60dceb5c105939a14125ce95628 SHA256: d135aa894de70625f7b6987de7cd9205f3e705aa0a2e1f3a8784c0b7c2351dea Description: TeX Live: Recommended fonts Homepage: http://www.tug.org/texlive/ Description-md5: b3f5e79dcd77ba4284be591375b2d59b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-fonts-recommended-doc Priority: optional Section: doc Installed-Size: 3392 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Replaces: texlive-latex-recommended-doc (<< 2013.20140110) Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Filename: pool/main/t/texlive-base/texlive-fonts-recommended-doc_2013.20140215-1_all.deb Size: 2730444 MD5sum: 919dd77e8ddf998bda6ca6ddf7b73f64 SHA1: 4ca3fe10ff3346b6a6bffccb58ae836e01ff2e39 SHA256: d9e01c425db681afd62887bcf6f52a14844fa5fe7522988ebc8fa128e2181564 Description: TeX Live: Documentation files for texlive-fonts-recommended Homepage: http://www.tug.org/texlive/ Description-md5: fedfa7c022515f5060512ccde356a7e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-generic-recommended Priority: optional Section: tex Installed-Size: 5696 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Filename: pool/main/t/texlive-base/texlive-generic-recommended_2013.20140215-1_all.deb Size: 2114244 MD5sum: b0dc50e0fdb498f4cd2499210d99441a SHA1: b4d174de5df44203afadf31abfaa5cb85744956a SHA256: e5702d91c779502a0d70764640b7f6a90644efbc74881c18283ecf784a59bf08 Description: TeX Live: Generic recommended packages Homepage: http://www.tug.org/texlive/ Description-md5: bd7adf926fa73548281fe2765db86351 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-humanities-doc Priority: optional Section: doc Installed-Size: 18323 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-extra/texlive-humanities-doc_2013.20140215-2_all.deb Size: 15574216 MD5sum: fb495476c397a64b0f30cde35c77e437 SHA1: b10282f037d71068495cf951f4f2f46ad9f40271 SHA256: ce7d24ae525525f20adb4e20dffb1c49c132384fdc8c9f5d9866bf437ad4fcca Description: TeX Live: Documentation files for texlive-humanities Homepage: http://www.tug.org/texlive/ Description-md5: 7970c09be020df4008b079e83da54e9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-lang-german Priority: optional Section: tex Installed-Size: 31782 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-lang Version: 2013.20140215-1 Replaces: texlive-doc-de (<< 2013) Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Filename: pool/main/t/texlive-lang/texlive-lang-german_2013.20140215-1_all.deb Size: 21680704 MD5sum: 49cfc4965cfe801093827970b2189c11 SHA1: b4618e2bc1c7614c2d8e4e361bb3c3d330b88a51 SHA256: 5f0040c6e4b6773daa40e109279a9fcd8cb6263ceffbf2f836744e20755c74c0 Description: TeX Live: German Homepage: http://www.tug.org/texlive/ Description-md5: 3675a7bf5c3c998af997c543eaa2a107 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-latex-base Priority: optional Section: tex Installed-Size: 7764 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-binaries (>= 2013.20130512), texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Recommends: texlive-latex-base-doc Filename: pool/main/t/texlive-base/texlive-latex-base_2013.20140215-1_all.deb Size: 827504 MD5sum: 304749f9cd3bd15f9179f5253757b8b7 SHA1: 70d2bf10115f834e3a2487024d63960f844a07e5 SHA256: 33d9e2a0dd960748a9e777ef1b0b14c18daebfcf7beb946f5b150f5660112499 Description: TeX Live: LaTeX fundamental packages Homepage: http://www.tug.org/texlive/ Description-md5: 3890dc2d6efbf7bf362a47f4d48c73e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: texlive-latex-base-doc Priority: optional Section: doc Installed-Size: 42725 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-base/texlive-latex-base-doc_2013.20140215-1_all.deb Size: 37065204 MD5sum: bbe07fc77c1286493924d4fe8dfcc667 SHA1: 062c8644224c894bc20c34537a6b40692d02cca0 SHA256: 8831b7865b4e1b20c67440f3f226f08e4c9171d083815ecfe1b0a6614efc3f59 Description: TeX Live: Documentation files for texlive-latex-base Homepage: http://www.tug.org/texlive/ Description-md5: a2182d8729e262aa2d6b925e5a5f6802 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: texlive-latex-extra Priority: optional Section: tex Installed-Size: 36576 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Replaces: texlive-pictures (<< 2013), texlive-publishers (<< 2013.20140215) Depends: luatex, dpkg (>= 1.14.18), tex-common (>= 3), preview-latex-style, texlive-binaries (>= 2013.20130512), texlive-base (>= 2013.20130512), texlive-latex-recommended (>= 2013.20130512), texlive-pictures (>= 2013.20130512) Recommends: texlive-latex-extra-doc Suggests: libfile-which-perl, python-pygments Breaks: texlive-publishers (<< 2013.20140215) Filename: pool/main/t/texlive-extra/texlive-latex-extra_2013.20140215-2_all.deb Size: 7285794 MD5sum: 157194baf4396d722adb459c85f73dd4 SHA1: efd481ac9a3f745c4670ed47143c59aba6d09b2c SHA256: edb3eacd417ca363c4942f551e2fc59524c0c6c5cbe5c2b875a480ed2b9eadcb Description: TeX Live: LaTeX additional packages Homepage: http://www.tug.org/texlive/ Description-md5: c925993df4154860644076e9ed084e51 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-latex-extra-doc Priority: optional Section: doc Installed-Size: 431232 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Replaces: texlive-pictures-doc (<< 2013), texlive-publishers-doc (<< 2013.20140215) Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Breaks: texlive-publishers-doc (<< 2013.20140215) Filename: pool/main/t/texlive-extra/texlive-latex-extra-doc_2013.20140215-2_all.deb Size: 316824150 MD5sum: a8573d5e6cb2c651704f3e36a4d2cc85 SHA1: 4037bc5062e026b6d7176b629d097d1675de01aa SHA256: 06193c43ae4c310bf4d5d45f57913eadf1a9097e7fb3789da132660d01958353 Description: TeX Live: Documentation files for texlive-latex-extra Homepage: http://www.tug.org/texlive/ Description-md5: 5ac6c6c9a0c0f6fddfd3fc657d09c522 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-latex-recommended Priority: optional Section: tex Installed-Size: 17575 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Provides: texlive-latex3 Depends: texlive-latex-base (>= 2013.20130512), texlive-binaries (>= 2013.20130512), texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Recommends: texlive-latex-recommended-doc, latex-xcolor (>= 2.09), latex-beamer (>= 3.06.dfsg.1-0.1), prosper (>= 1.00.4+cvs.2006.10.22) Filename: pool/main/t/texlive-base/texlive-latex-recommended_2013.20140215-1_all.deb Size: 7267854 MD5sum: c2795f6628c012644d9f039a347140c4 SHA1: ab603d4c21b9d3a8f04dd15e7980c827226ed28f SHA256: a06e8a4e9f23b2cc74a568d575468e58c7d6a3dfe64a3d721a6e5551123346bb Description: TeX Live: LaTeX recommended packages Homepage: http://www.tug.org/texlive/ Description-md5: 42ea58ff4415e0b3d156e44245e23201 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-latex-recommended-doc Priority: optional Section: doc Installed-Size: 39424 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-base/texlive-latex-recommended-doc_2013.20140215-1_all.deb Size: 34963242 MD5sum: 7199eee882c2c1ef5e4700ad69e95178 SHA1: 60ac17b376f5fcdca3f798e0aad219d546a56bd3 SHA256: 1ad9786dc608728ba68908128cdb196e60d37bf148d17b1ccf73c688867c6c58 Description: TeX Live: Documentation files for texlive-latex-recommended Homepage: http://www.tug.org/texlive/ Description-md5: baa8291c3456557519fe1fb86023b2b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-luatex Priority: optional Section: tex Installed-Size: 14839 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-base (>= 2013.20130512), texlive-binaries (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3), luatex (>= 0.70.1) Filename: pool/main/t/texlive-base/texlive-luatex_2013.20140215-1_all.deb Size: 8204172 MD5sum: 94591d20dfa91b322353bf142be8d5d1 SHA1: 781bb0af08852b039bb412225cbfa355b158328f SHA256: 207b971c1e731b92b8661ddf7f8ae5d6ab6172467cb6cba60daebfc26354526a Description: TeX Live: LuaTeX packages Homepage: http://www.tug.org/texlive/ Description-md5: 2a53e6d76573b205fe37f3cbe3db909d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntustudio-font-meta Package: texlive-math-extra Priority: optional Section: tex Installed-Size: 18211 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: texlive-latex-base (>= 2013.20130512), texlive-base (>= 2013.20130512), texlive-fonts-recommended (>= 2013.20130512), texlive-binaries (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-extra/texlive-math-extra_2013.20140215-2_all.deb Size: 13849388 MD5sum: 9e6472775f36cda8c0788daa3f35d707 SHA1: f52454d096aef1f30cfd2afdf8666c531b150bdf SHA256: d2ec40a185fdae0a05ff5e2733fc7eefb1e07b642ee20ec61294a583e0e55923 Description: TeX Live: Mathematics packages Homepage: http://www.tug.org/texlive/ Description-md5: 1fe549c10b47a44cf3ea233259c3245c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-metapost-doc Priority: optional Section: doc Installed-Size: 30947 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Filename: pool/main/t/texlive-base/texlive-metapost-doc_2013.20140215-1_all.deb Size: 26573892 MD5sum: 0d3bdd337d40a342ec6577019b7c510d SHA1: 33bf3f4f4ac1b0855f92745328c8d724ccdb5fdc SHA256: 49fa169dbddfefcda3f43813cd4dfa0e24c1814c6f072f230b4abeef400b425f Description: TeX Live: Documentation files for texlive-metapost Homepage: http://www.tug.org/texlive/ Description-md5: 0dc5a30b89d031677eb32d4cf8381caf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-pictures Priority: optional Section: tex Installed-Size: 10581 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3), luatex, texlive-binaries (>= 2013.20130512) Recommends: texlive-pictures-doc, ruby | ruby-interpreter, tk, pgf (>= 1.01.dfsg.1) Suggests: dot2tex, libtcltk-ruby, texlive-latex-extra Filename: pool/main/t/texlive-base/texlive-pictures_2013.20140215-1_all.deb Size: 2414096 MD5sum: 4dd5fd512c9e0a4007e34d70c58f2edc SHA1: dd09100bb2022b7ccdad774c91639c337ee790b2 SHA256: 241f043e7670eb5c043b25941fb9292022023546ac77a7dba4392a00b973b719 Description: TeX Live: Graphics, pictures, diagrams Homepage: http://www.tug.org/texlive/ Description-md5: 1a8132be4cbac7c2a760fb20b641c7e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-pictures-doc Priority: optional Section: doc Installed-Size: 66317 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-base Version: 2013.20140215-1 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-base/texlive-pictures-doc_2013.20140215-1_all.deb Size: 57993830 MD5sum: 013f2bb871e3cdcc52feff2326cfa4ea SHA1: cd4470e3a267255f3299a68ce14262d06a5bfd44 SHA256: f71b4b66605ae0ca0ed50b469d9360ec04cfe3e7fcf2b72541d047906ac140d7 Description: TeX Live: Documentation files for texlive-pictures Homepage: http://www.tug.org/texlive/ Description-md5: a0c7d5a93d0c18d832e97c0ffdb9ab11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: texlive-pstricks Priority: optional Section: tex Installed-Size: 34436 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: texlive-base (>= 2013.20130512), texlive-generic-recommended (>= 2013.20130512), pgf, dpkg (>= 1.14.18), tex-common (>= 3), texlive-binaries (>= 2013.20130512) Recommends: ps2eps, texlive-font-utils, texlive-extra-utils, texlive-pstricks-doc Filename: pool/main/t/texlive-extra/texlive-pstricks_2013.20140215-2_all.deb Size: 26174772 MD5sum: 479ec3137daa21472fb0b7d0051eb001 SHA1: da1a949a2d7b3274e0b5e9051b4f15cd7cbb0990 SHA256: cbd7a3a76789539f399e48306dfe9fb075daaf80baffaede909d6afebde06bc7 Description: TeX Live: PSTricks Homepage: http://www.tug.org/texlive/ Description-md5: 1801069bac9fceb389a3b38ad0eb3d68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-pstricks-doc Priority: optional Section: doc Installed-Size: 95971 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: texlive-base (>= 2013.20130512), dpkg (>= 1.14.18), tex-common (>= 3) Filename: pool/main/t/texlive-extra/texlive-pstricks-doc_2013.20140215-2_all.deb Size: 76685714 MD5sum: f4362847ee47ef6919a22974c30977b5 SHA1: 53064e1369be09317402afe02c3518b8ca49f1b5 SHA256: 9306672df1c0ad8cb00e60b484e0170609154576e73c24dc1457887dc3e5ac70 Description: TeX Live: Documentation files for texlive-pstricks Homepage: http://www.tug.org/texlive/ Description-md5: 2c5c80fc3fb2ae00432cbaaa63e07f92 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: texlive-publishers-doc Priority: optional Section: doc Installed-Size: 90617 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Replaces: texlive-latex-extra-doc (<< 2013.20140215) Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Breaks: texlive-latex-extra-doc (<< 2013.20140215) Filename: pool/main/t/texlive-extra/texlive-publishers-doc_2013.20140215-2_all.deb Size: 68582702 MD5sum: 38ab5e0f0fc3c55f251cf01937bee03e SHA1: bf71a27825638c96ec727931f51536e2e62fbf66 SHA256: 2ef330207a7db0597edc95b31290027dfd8d07e0972f4c2dc6f517761d2b825b Description: TeX Live: Documentation files for texlive-publishers Homepage: http://www.tug.org/texlive/ Description-md5: 7b34b5c428ad0074c9975b2426b66d35 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: texlive-science-doc Priority: optional Section: doc Installed-Size: 25387 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX Maintainers Architecture: all Source: texlive-extra Version: 2013.20140215-2 Depends: dpkg (>= 1.14.18), tex-common (>= 3), texlive-base (>= 2013.20130512) Filename: pool/main/t/texlive-extra/texlive-science-doc_2013.20140215-2_all.deb Size: 21909830 MD5sum: bed6ba62e83e57e124c8e9a5a4a335fc SHA1: ae6e2326c3fae8d0e8d787d358f8a98d1012d0dd SHA256: c778027c532f3220ee50475284f687e7fe209db273a0c1d6fd1e334bc1d2c110 Description: TeX Live: Documentation files for texlive-science Homepage: http://www.tug.org/texlive/ Description-md5: 40b9eb4c24f330a9b0e3d1690cfd256a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tftp-hpa Priority: extra Section: net Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Version: 5.2-7ubuntu3 Depends: libc6 (>= 2.15) Conflicts: tftp Filename: pool/main/t/tftp-hpa/tftp-hpa_5.2-7ubuntu3_i386.deb Size: 16994 MD5sum: 7abe43f33de6e1cfbbe8bb1c29744f95 SHA1: e1b0209b623843b9d46ad0f63ac66c696c2bd80a SHA256: dbfebd494d2bea9c57068b8ae5529bdc2cb6b6dc3c46b01a72032a33a6e8c40c Description: HPA's tftp client Homepage: http://www.kernel.org/pub/software/network/tftp/ Description-md5: 89598997fd5ff3458fe7d72bdc41cb10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tftpd-hpa Priority: extra Section: net Installed-Size: 142 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Source: tftp-hpa Version: 5.2-7ubuntu3 Depends: debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libc6 (>= 2.15), libwrap0 (>= 7.6-4~), adduser, lsb-base (>= 4.1+Debian3) Suggests: syslinux-common Conflicts: atftpd, tftpd Filename: pool/main/t/tftp-hpa/tftpd-hpa_5.2-7ubuntu3_i386.deb Size: 37508 MD5sum: 503c7fc623a2d0171eee7881a377213c SHA1: a7f3b1c560c90c29e7460264d84076143e52df04 SHA256: 1739fd8b5e4ff7d5d93966b554f4ea35870188fd365eedae8eb7cb8013f6a7ac Description: HPA's tftp server Homepage: http://www.kernel.org/pub/software/network/tftp/ Description-md5: d73c6815bace5ace463cb884370cdecd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tgt Priority: optional Section: net Installed-Size: 635 Maintainer: Ubuntu Developers Original-Maintainer: Debian Kernel Team Architecture: i386 Version: 1:1.0.43-0ubuntu4 Depends: libc6 (>= 2.15), libibverbs1 (>= 1.1.2), librados2, librbd1, librdmacm1 (>= 1.0.16), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libconfig-general-perl, sg3-utils Filename: pool/main/t/tgt/tgt_1.0.43-0ubuntu4_i386.deb Size: 204488 MD5sum: 096df61d69259cbad89852f44346613e SHA1: 0a28d2a60ba9e80b14c499f0611dcf44ef140310 SHA256: 831b733707527dfd704a26b0d8adc368782971ce88ff1e26aacd9c33fb015f45 Description: Linux SCSI target user-space tools Homepage: http://stgt.berlios.de/ Description-md5: 8e479676c938395c781f504f196e4ff9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: thermald Priority: optional Section: admin Installed-Size: 493 Maintainer: Colin King Architecture: i386 Version: 1.1~rc2-11 Depends: libc6 (>= 2.4), libdbus-glib-1-2 (>= 0.88), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.16.0), libstdc++6 (>= 4.2.1), libxml2 (>= 2.7.4), init-system-helpers (>= 1.13~) Filename: pool/main/t/thermald/thermald_1.1~rc2-11_i386.deb Size: 140008 MD5sum: 7974731de46933e946291e7a6796e13a SHA1: 491e48059ac1ec651e6022f96fa7bfe9e06827d2 SHA256: 0af5522396c40cdbfcb6e0d8f60815d6aa4462ab2d77241a1c7ea10009e2dc20 Description: Thermal monitoring and controlling daemon Homepage: https://github.com/01org/thermal_daemon Description-md5: b3957326598bfd50927c3294bfbabcc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: thunderbird Priority: optional Section: mail Installed-Size: 59443 Maintainer: Ubuntu Mozilla Team Architecture: i386 Version: 1:24.4.0+build1-0ubuntu1 Replaces: mozilla-thunderbird, thunderbird-gnome-support (<= 3.0.4+nobinonly-0ubuntu3) Provides: mail-reader Depends: libasound2 (>= 1.0.16), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.15), libcairo2 (>= 1.2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.78), libfontconfig1 (>= 2.9.0), libfreetype6 (>= 2.3.9), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), libstartup-notification0 (>= 0.8), libstdc++6 (>= 4.6), libx11-6, libxext6, libxrender1, libxt6 Recommends: myspell-en-us | hunspell-dictionary | myspell-dictionary, libcanberra0, libdbusmenu-glib4, libdbusmenu-gtk4 Suggests: thunderbird-gnome-support, ttf-lyx Conflicts: mozilla-thunderbird Breaks: thunderbird-couchdb, thunderbird-gnome-support (<= 3.0.4+nobinonly-0ubuntu3) Filename: pool/main/t/thunderbird/thunderbird_24.4.0+build1-0ubuntu1_i386.deb Size: 23609224 MD5sum: 8052b2aee53dd4ccd0f09e41cdd03582 SHA1: 63432dee5ba4d1de2167af777c5e4037001bf47a SHA256: b8057e3146d66e8d5f4e872d7d9ac34bcc88d529b943948684ac8f3b3e1df2cd Description: Email, RSS and newsgroup client with integrated spam filter Description-md5: 68ed1001b79d708ad48956a0c129114d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: thunderbird-dbg Priority: optional Section: devel Installed-Size: 1009062 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (= 1:24.4.0+build1-0ubuntu1) Filename: pool/main/t/thunderbird/thunderbird-dbg_24.4.0+build1-0ubuntu1_i386.deb Size: 262160354 MD5sum: dfb5567985a89b9987c3121b63a1fd11 SHA1: f519c44c1c7a4e67974d1840d2b02419e426ce4c SHA256: 47b4af96a3da15b8f3d7e92d59c931706141a12bc998eeaf5ffe160e6a294412 Description: Email, RSS and newsgroup client - debug symbols Description-md5: 7ce9b689254d265f0d4bac6602f7a80f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-dev Priority: optional Section: mail Installed-Size: 38986 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (= 1:24.4.0+build1-0ubuntu1) Filename: pool/main/t/thunderbird/thunderbird-dev_24.4.0+build1-0ubuntu1_i386.deb Size: 5522390 MD5sum: ecaba69c1a653f7c50f092907ee937ab SHA1: ecf7bffc4f438d41edbdb6f2b1433da104cfd405 SHA256: 15597d37646c39330fbaf4847c0254a5c11b5111562d76a7f6cdc957dceb74e6 Description: Email, RSS and newsgroup client - development files Description-md5: 564ab343c2a2437ef25d94273b1364c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-globalmenu Priority: optional Section: web Installed-Size: 131 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird Filename: pool/main/t/thunderbird/thunderbird-globalmenu_24.4.0+build1-0ubuntu1_i386.deb Size: 8218 MD5sum: 7332cc5a9d9258c5e25081a9ab9b9c0e SHA1: 7b1ac8e03bb6587f861515dc6330ef234772f7db SHA256: 4fa4d43f5837c6c45421b23aed8af73852b6a5cceff222dbd83a575ef59218a4 Description: Email, RSS and newsgroup client (transitional package) Description-md5: fd9f1e7c342cabe4de92af51203c160c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-gnome-support Priority: optional Section: mail Installed-Size: 131 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (= 1:24.4.0+build1-0ubuntu1), libmessaging-menu0, libunity9, libnotify4 | libnotify1 Filename: pool/main/t/thunderbird/thunderbird-gnome-support_24.4.0+build1-0ubuntu1_i386.deb Size: 8528 MD5sum: f021eab31fe7139d3b866aff4df7fe2d SHA1: fb4457a861fb0875c31981a9bba67852ba269471 SHA256: 07ea0214cc739d8a22ec945b1106a19e53e5b6ffb026d366e9f6c8d5badbbdcc Description: Email, RSS and newsgroup client - GNOME support Description-md5: c6d750d99833a5a122c5bdc00727ccaa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: thunderbird-gnome-support-dbg Priority: optional Section: devel Installed-Size: 131 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-gnome-support, thunderbird-dbg Filename: pool/main/t/thunderbird/thunderbird-gnome-support-dbg_24.4.0+build1-0ubuntu1_i386.deb Size: 8220 MD5sum: 67f5ba9d1c8865863f146b76ae49507c SHA1: 6b1f60c8f381dc72c16aafe07b5ad4809cb098bf SHA256: 06f503b3c066fa1d245855cffb3a5b90d563d39bcc275ff65f725d420c25f95c Description: Email, RSS and newsgroup client - transitional package Description-md5: 8fa21aaf02af881ccc7c33f8559e6531 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-af Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Filename: pool/main/t/thunderbird/thunderbird-locale-af_24.4.0+build1-0ubuntu1_i386.deb Size: 11332 MD5sum: 5ca42ab1c4fd5d4294bb5c9004b95f6b SHA1: e2018f29255eaf862468e5fd0d3deaf388158a50 SHA256: f963c6718d6c853af551150911ce07b13a556b0d5d239086d7590079297120c7 Description: Transitional package for unavailable language Description-md5: ea537565996c4e6bdc82ab0905f0cc41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ar Priority: optional Section: web Installed-Size: 620 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ar_24.4.0+build1-0ubuntu1_i386.deb Size: 396558 MD5sum: 0b7501216774348bf45d469bbc55aae0 SHA1: 89bce1a0bb1df052ede5d1f991c81a114e5afdce SHA256: 226c370eb26c085c23b1e3c719d2b8409e937fd6bb68796a5a8452e570d7dd7c Description: Arabic language pack for Thunderbird Description-md5: d96ba05b4c6d792e4d18138bbe13c392 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ast Priority: optional Section: web Installed-Size: 540 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ast_24.4.0+build1-0ubuntu1_i386.deb Size: 309540 MD5sum: 4b9a5571564bcc608a93662d1341af9f SHA1: a1bf6babb8e191b05be8172148ed96e0e1e8190c SHA256: 46ec6abe4972d83e89ecadb0c85d2cb4ab3ccc316f1098f2e65dccbc2458f41e Description: Asturian language pack for Thunderbird Description-md5: 92f2ba3ec6c41ae12a73493e796843ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-be Priority: optional Section: web Installed-Size: 585 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-be_24.4.0+build1-0ubuntu1_i386.deb Size: 356276 MD5sum: 91506ee5a5c785dd1a7310342d4acc44 SHA1: c37f080fb9eebebc94cf85b9218db19771b21aa7 SHA256: f767bae8e8e47c1208cacc27e22a6646597cf769f0dd887b2bcbaedfedfc0ba9 Description: Belarusian language pack for Thunderbird Description-md5: 8756cfe43a521c52482335cca067362b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-bg Priority: optional Section: web Installed-Size: 648 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-bg_24.4.0+build1-0ubuntu1_i386.deb Size: 424742 MD5sum: 906b94c74a9ac1ad6e9d124ea5f826d9 SHA1: e3376696fe17098c0813031a4d84bae0cfaf3017 SHA256: f4b622ac2d10a41c3ebbf2ac2e9b0ce19b2d50200279b1582c829f87cf1776ee Description: Bulgarian language pack for Thunderbird Description-md5: 3e822e5a8f71fa6f62fc77651434d4ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-bn Priority: optional Section: web Installed-Size: 699 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-bn_24.4.0+build1-0ubuntu1_i386.deb Size: 472902 MD5sum: 5bc5358bd8a13458ee6da9edace60338 SHA1: 702235e53432302bdcd0752fc953077baf7bd788 SHA256: e3fdbb03c6be4b1f8ee7e1b83fe183a8de66bf8a1863f1f33279785b47b7a0ca Description: Bengali language pack for Thunderbird Description-md5: 0bf8b67f425d98dd586086e87a5b8652 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-bn-bd Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-bn Filename: pool/main/t/thunderbird/thunderbird-locale-bn-bd_24.4.0+build1-0ubuntu1_all.deb Size: 11308 MD5sum: d0a744ced0d9b9d60dc5aef4930dc791 SHA1: a55cfb1baa18cbd86580729e6df7e091972f0133 SHA256: a40be67ed552d22d1f7a14b1ab28b36347ce2e2379743f7836ca781c84511db7 Description: Transitional Bengali language pack for Thunderbird Description-md5: 0c16945c4912b109ad1b9a29c3548a82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-br Priority: optional Section: web Installed-Size: 595 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-br_24.4.0+build1-0ubuntu1_i386.deb Size: 367808 MD5sum: 86e7556d40cacffaf47beba0022c08dc SHA1: fc1c21ecd27e356ab94d18a82227d051b5550ccc SHA256: 022345e26c7fa53641d90e773eb3e54da81065f4f657ddbc2278e57cca0fba46 Description: Breton language pack for Thunderbird Description-md5: 2194e389142c81481fa76aea7d4ab293 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ca Priority: optional Section: mail Installed-Size: 596 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ca_24.4.0+build1-0ubuntu1_i386.deb Size: 370986 MD5sum: 92675289921a895d993b8620f89ce7c9 SHA1: 0b9ad7ecf100d9e876b02763bec13e30dfd0e664 SHA256: 4edbab760b07c700841d6d037035419fd3579ca9411dc580e40fadbf74ca9062 Description: Catalan; Valencian language pack for Thunderbird Description-md5: 9006308ddf098014382109f3256de904 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-cs Priority: optional Section: mail Installed-Size: 598 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-cs_24.4.0+build1-0ubuntu1_i386.deb Size: 371266 MD5sum: 2f4ceac2df21103ebfff2010c2eb4600 SHA1: 67cfc142b4d991fb999aa97f9116191c6338fd7e SHA256: d7977d81e4631893299ba3d6b6303c8a35236e2eb3e2c7dd0590f4ea780ac185 Description: Czech language pack for Thunderbird Description-md5: e198ec1b38b4ba8d21c5ae2dd707b886 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-da Priority: optional Section: mail Installed-Size: 573 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-da_24.4.0+build1-0ubuntu1_i386.deb Size: 347986 MD5sum: fd1f9913f448424c2342ff273cd02503 SHA1: 51164ab8d479373d459ba212efea08decc2463b8 SHA256: e4f45ace8cd2c220e23982d713b31749892fa1ce60395f28681d24edf98fd89f Description: Danish language pack for Thunderbird Description-md5: bb23b7f1451e9101c6235d786e38632a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-de Priority: optional Section: mail Installed-Size: 574 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-de_24.4.0+build1-0ubuntu1_i386.deb Size: 348916 MD5sum: 5664bdd507d4123aca0b7f89325dd482 SHA1: 98dbf9d492753d941fe60d12605db4b2c668e91f SHA256: d1d00397df119d99594802872dfb3d79dfdd0bb83c33255cb487482f92670c71 Description: German language pack for Thunderbird Description-md5: f1c4ac98e42d37c8f95db725d4288fa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-el Priority: optional Section: mail Installed-Size: 628 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-el_24.4.0+build1-0ubuntu1_i386.deb Size: 404246 MD5sum: 86cf4042d5df146f7b51b0a93d163f32 SHA1: 22bf69d409bd3c932a24b09cc9fb0145fe75fb8a SHA256: 6ecf606228df14b995eaf4f35d5014fd9c4c34a8117a24346e4bf930d20a7340 Description: Greek language pack for Thunderbird Description-md5: c4f1bc5322928b4103bc8085cd013d7c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-en Priority: optional Section: web Installed-Size: 568 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-en_24.4.0+build1-0ubuntu1_i386.deb Size: 335532 MD5sum: d3695293c57de0da106cb083bfd7fb90 SHA1: 1cdbcd3e74ca7cb6c28eeb2148c2ccaf1b999979 SHA256: 6e89e52a77d6fa88ecfd76f2c16207c784b88e63181da83868280eab3f346424 Description: English language pack for Thunderbird Description-md5: 7997849dd0bc6d27079f5d5768aba1a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-en-gb Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-en Filename: pool/main/t/thunderbird/thunderbird-locale-en-gb_24.4.0+build1-0ubuntu1_all.deb Size: 11300 MD5sum: 675fb69723b02d43d4d3481e19e43fac SHA1: b8f65254875c1489e88af8a712bc3751d7585fba SHA256: 255ee2649beab131a65863ad9a8509e5e4a6d0cc108c7231f4e12b1d2bc8aa7f Description: Transitional English language pack for Thunderbird Description-md5: 8b798a69e82f8ec9cbb2e264601a14fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-en-us Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-en Filename: pool/main/t/thunderbird/thunderbird-locale-en-us_24.4.0+build1-0ubuntu1_all.deb Size: 11302 MD5sum: d4080581745b11029f42dad9b18e9297 SHA1: b8b1afe911737723a1ce888ec8ad1a4ddf2b8d41 SHA256: 35d83d56d51b3fa899b0b695c5398714f9e8eae0fb9839f7fbe8a57d0ed67c93 Description: Transitional English language pack for Thunderbird Description-md5: 8b798a69e82f8ec9cbb2e264601a14fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-es Priority: optional Section: web Installed-Size: 967 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-es_24.4.0+build1-0ubuntu1_i386.deb Size: 643226 MD5sum: dae7844db023ac13ee1dc530ce768d73 SHA1: c12c026fab3ec99ed1ce7f4ec6f6c20bcea9c8bf SHA256: c01610c5d635715a8e342027afa75eefd1bd76c84b3728bbf6f19bfb6b878842 Description: Spanish; Castilian language pack for Thunderbird Description-md5: ab065a0e196a1b25a631117f0de3a536 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-es-ar Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-es Filename: pool/main/t/thunderbird/thunderbird-locale-es-ar_24.4.0+build1-0ubuntu1_all.deb Size: 11298 MD5sum: 8d0817b42053605536066521fe13ec72 SHA1: 9e68f8083311f937c7fa963aeef2f62fd329f1e5 SHA256: 3889fb936057ac21a0091e81ce12ede916be65beffa602e772de01c5e5cd3529 Description: Transitional Spanish language pack for Thunderbird Description-md5: 869be0de01bca3f9f7bda73441e37a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-es-es Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-es Filename: pool/main/t/thunderbird/thunderbird-locale-es-es_24.4.0+build1-0ubuntu1_all.deb Size: 11296 MD5sum: 4fbef7341d2b718a7d6c7636fef4c2f8 SHA1: 1bca1db0baafc5043db69332910284877b149868 SHA256: 5b6e6fe332049d2c3b1ec3a78aa49e329890f911d5944e1cb1f94469ecaae9e6 Description: Transitional Spanish language pack for Thunderbird Description-md5: 869be0de01bca3f9f7bda73441e37a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-et Priority: optional Section: web Installed-Size: 587 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-et_24.4.0+build1-0ubuntu1_i386.deb Size: 362658 MD5sum: 6100568290be66c367e944c8876bf90c SHA1: 237caf79c941e7319c6f9a8fb018b4f20060e18b SHA256: 1086842b97ef9b863c6e41ac3f861f93acf39d7066b6450721fbb96592112720 Description: Estonian language pack for Thunderbird Description-md5: 2b6b91b02a69b25fea719c79eebba322 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-eu Priority: optional Section: mail Installed-Size: 583 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-eu_24.4.0+build1-0ubuntu1_i386.deb Size: 356888 MD5sum: 8b28fa8ad94bc102e5d8ff0505f62fd4 SHA1: 06e0759d111df056f80955e2b9c2c497c5f94528 SHA256: 83cb85a3d5ac18f62c7320b1d033f5723497a24ca7d4bb4336c81ba2f449d3af Description: Basque language pack for Thunderbird Description-md5: 51f658816bee1ac3d847f34fcfdf4715 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-fi Priority: optional Section: mail Installed-Size: 586 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-fi_24.4.0+build1-0ubuntu1_i386.deb Size: 362184 MD5sum: 2a99100abacbba076c13c65316ba1395 SHA1: 952d5c1506586a48fe673b188b630e2b06565dcd SHA256: b97240fb7476e8b5cdecdf92d604a2d0356fc9aea53e0bd1fe22abadaebafe28 Description: Finnish language pack for Thunderbird Description-md5: d743f35cb2d00c0ac0c74faffc80c429 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-fr Priority: optional Section: mail Installed-Size: 594 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-fr_24.4.0+build1-0ubuntu1_i386.deb Size: 369310 MD5sum: c966e828bb8fade80d5b53526ea01fb3 SHA1: 7db5ac621e7883178ecda381789fb3a2ad05b799 SHA256: 2e362c2860416eed5b80d0c4aacd5faebfa02872e3b2b36d22cd2e8cb5565dbe Description: French language pack for Thunderbird Description-md5: 5db38e54534997cea7feaf6bc2c20b8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-fy Priority: optional Section: web Installed-Size: 591 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-fy_24.4.0+build1-0ubuntu1_i386.deb Size: 359996 MD5sum: ab90ed2bae472c8ae2b155b22876a905 SHA1: ec98e7b9ae60326635a2064a1fa7e84f8228a645 SHA256: 4f291dd8fca51efea1ea196fe8493088d7f56dd9840414918a1ec6db157aabd7 Description: Western Frisian language pack for Thunderbird Description-md5: 9a3ffaa5a603e7a65baffad8847604e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-fy-nl Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-fy Filename: pool/main/t/thunderbird/thunderbird-locale-fy-nl_24.4.0+build1-0ubuntu1_all.deb Size: 11312 MD5sum: 0b5d19d3ef9ddd33df8e528dfddfd736 SHA1: cf8fac69b0f92421772f35ae2f0869c89aa65acb SHA256: 11bd79479ca4925ac7bdf2eb4f8a7dc19deb8e10dc6424170ff124d7610a9fe7 Description: Transitional Western Frisian language pack for Thunderbird Description-md5: 23b74cfcdfb3628d4066cc962572e125 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ga Priority: optional Section: web Installed-Size: 598 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ga_24.4.0+build1-0ubuntu1_i386.deb Size: 371528 MD5sum: da91eaa6e3c2b5ad1d95357ebbfaf2c2 SHA1: e58c2c056fbc64137d331135f09f0ea22543290e SHA256: 79ff8ebca23263cb33def59b2f85ee98976947f54ab852a00d9f55240d81c1d2 Description: Irish language pack for Thunderbird Description-md5: e0d162b3129190a72af5f015ea0da420 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ga-ie Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-ga Filename: pool/main/t/thunderbird/thunderbird-locale-ga-ie_24.4.0+build1-0ubuntu1_all.deb Size: 11300 MD5sum: 7f517cedd2e0ed74eb0aaa2221eca537 SHA1: f1a788a05308728e890e4fb2722ee10963d2e5be SHA256: 549a866773bf4a9acce2d47bcc99f9af3a16ea0f00c1d31cd43c4a1a3eabc5b0 Description: Transitional Irish language pack for Thunderbird Description-md5: 8fe591c24be723b831c5e4f9b5e007ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-gd Priority: optional Section: web Installed-Size: 604 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-gd_24.4.0+build1-0ubuntu1_i386.deb Size: 379958 MD5sum: 387e35a6c1ea64241d62448b4bd2cbe0 SHA1: 3c3fcf1525b7ef34258bece237216408a2f4873f SHA256: 2ac6be4d24d235d20af5b7ef64736f489493d6e0b8a44d536b365db949a47888 Description: Gaelic; Scottish Gaelic language pack for Thunderbird Description-md5: 6b59819c452353ff33df8a3be2c3e44d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-gl Priority: optional Section: web Installed-Size: 592 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-gl_24.4.0+build1-0ubuntu1_i386.deb Size: 366646 MD5sum: b7bd498d3be01345a160f89bc15a3f7f SHA1: 0ff3f240e183be029c12ff494f13823cc6714375 SHA256: 2ff16ab7204dcd7f410ada0abee4fb32459f498b4c61a77a6e3d25cb083543c5 Description: Galician language pack for Thunderbird Description-md5: 026fea6c9c8a4a96d94ffb2e1bae174c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-he Priority: optional Section: web Installed-Size: 623 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-he_24.4.0+build1-0ubuntu1_i386.deb Size: 398128 MD5sum: e5f5973ca3fd3921f8b17f8626448612 SHA1: 9163c6a72fc9624503fb1e78e6094329e67ce44c SHA256: c264529db263462eb9d9d1be9a427a762e382c5db487afcb76f94382bd52530f Description: Hebrew language pack for Thunderbird Description-md5: c8ed17478d53bb50cbaa8eb4cb0e8b82 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-hr Priority: optional Section: web Installed-Size: 590 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-hr_24.4.0+build1-0ubuntu1_i386.deb Size: 362058 MD5sum: e09c5d76b62f2bde9aea15d9d2efa6af SHA1: 983c6119c95d52291660298fb4b2fc64c76082a4 SHA256: 6b25890e01594729a7b9b461acfde5f9327b7fa318f9ab88ac26aae4524cf04b Description: Croatian language pack for Thunderbird Description-md5: 5c80407d37a30ddb4abbbb4dd98e774c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-hu Priority: optional Section: mail Installed-Size: 602 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-hu_24.4.0+build1-0ubuntu1_i386.deb Size: 380112 MD5sum: b8ca67089c0befa858fd0076da526a6b SHA1: 1ecc1a38a381308c97e3b910e82bd45242e590fd SHA256: 4733ce08e84682966af093912a4239e18672d9973010dd0d14dd03ecd5338878 Description: Hungarian language pack for Thunderbird Description-md5: 26678637379ab77ab5fffe5f5e37f780 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-hy Priority: optional Section: web Installed-Size: 642 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-hy_24.4.0+build1-0ubuntu1_i386.deb Size: 413110 MD5sum: 21b033668c414b66466d144612d202fd SHA1: 0a75b78e6f0afa88ea60af889becac1c1cd18b37 SHA256: 84ee2f4c90308ea29ee61b792afead822d08220da9dd648e230d6d8e69bb20b4 Description: Armenian language pack for Thunderbird Description-md5: 05d72dd80a860558e11187eccde80f8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-id Priority: optional Section: web Installed-Size: 614 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-id_24.4.0+build1-0ubuntu1_i386.deb Size: 393914 MD5sum: 1dc9813e9202e77dbfd1b454ffc7da10 SHA1: 25e1ae3cd2bc0e223ae3a7bd91c31eb9731dde83 SHA256: 1c01075b3ed317ec4cc9d3ae065cb9e564a6016427fad9bd8a37c0c7a9b45998 Description: Indonesian language pack for Thunderbird Description-md5: a52ad96e5ee31add246fa95d4f17195e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-is Priority: optional Section: web Installed-Size: 592 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-is_24.4.0+build1-0ubuntu1_i386.deb Size: 364558 MD5sum: 71574dcc6ebad245ee955ca6339a3e6c SHA1: 3ee6955f098651107bfaae372839863f611294ee SHA256: 7b222d3a0d554f6d7694a0a6575a285fc198a69e695025914905cb4bf5202b83 Description: Icelandic language pack for Thunderbird Description-md5: 65ee5905905a537c9ddb5361dddad2f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-it Priority: optional Section: mail Installed-Size: 523 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-it_24.4.0+build1-0ubuntu1_i386.deb Size: 295176 MD5sum: 263f3ee9b9e6a6fcb6b122c06333f3e3 SHA1: e28b9259168dc7316a0e317cc6d620da2b02708d SHA256: ea09bfee6a307d98ff2b4e2f8ee90a5d4f96a1bcb4516264f598f60700e755cd Description: Italian language pack for Thunderbird Description-md5: 6f1c6153ae6ef20c28214fb6a47e2e2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ja Priority: optional Section: mail Installed-Size: 640 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ja_24.4.0+build1-0ubuntu1_i386.deb Size: 416360 MD5sum: d37e80fea8f9acacfc30fdb123a2f617 SHA1: b1f57f64843a3cfcf6ddcdecdfdcbc374b73634d SHA256: 0a696e263d95a740372942d8fa0c010c5c6e6b84612bdf0084b9168cfd288b99 Description: Japanese language pack for Thunderbird Description-md5: 05672037e38088a01fc61323aaea5f68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ka Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Filename: pool/main/t/thunderbird/thunderbird-locale-ka_24.4.0+build1-0ubuntu1_i386.deb Size: 11316 MD5sum: 72731dd3716ace731dd09e8c766e5f53 SHA1: da71914e6a506552bd156e58edbc8fac4d07a864 SHA256: 2865557f1413a07c08848323a4c46bf061d8470e0775bbb2980741cf2d09edd4 Description: Transitional package for unavailable language Description-md5: ea537565996c4e6bdc82ab0905f0cc41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ko Priority: optional Section: web Installed-Size: 602 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ko_24.4.0+build1-0ubuntu1_i386.deb Size: 368280 MD5sum: d20bca641d889ed8cad8fa8660fc35e6 SHA1: 605d690cf1c490bd342f0b6758ed9e534a6a59d3 SHA256: 9b04a7a15d28f9ac408826c9e01d16f6c388dad49648a7d0580b8fdee91dce04 Description: Korean language pack for Thunderbird Description-md5: 05bbef35aca99bece02f588c8a5075ad Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-lt Priority: optional Section: web Installed-Size: 607 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-lt_24.4.0+build1-0ubuntu1_i386.deb Size: 382340 MD5sum: 2dc1d71a92c8e2cf1b05ef230bb958b6 SHA1: a148d399ca0dfb5df5c5e94471b25b3499c3b5d2 SHA256: 8a63bc924ca8a0785d4cb9f5d97ffd443e87c042591cb5c4d06619e9dbb35ff0 Description: Lithuanian language pack for Thunderbird Description-md5: d61674e56f26ac9b99db185babee7546 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-mk Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Filename: pool/main/t/thunderbird/thunderbird-locale-mk_24.4.0+build1-0ubuntu1_i386.deb Size: 11326 MD5sum: d2376153e585a556c8520411091a8da3 SHA1: e1d69abe759388b40aac6063e4c4f3e0d920933b SHA256: 63b69a5c928f583add5061033c2b8374f823e350b1a03139b349a3f2e23b2faa Description: Transitional package for unavailable language Description-md5: ea537565996c4e6bdc82ab0905f0cc41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-nb Priority: optional Section: web Installed-Size: 586 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-nb_24.4.0+build1-0ubuntu1_i386.deb Size: 354050 MD5sum: 4cd5ff0f27733dada4647f31256b0c3d SHA1: 2a92fa397dcc41550830340625d246539927f43f SHA256: 6ce4766e57254600e1dcdb7b13a46f98c423b74a2464b08f160c7ea69006d3e3 Description: Bokmål, Norwegian; Norwegian Bokmål language pack for Thunderbird Description-md5: 998f9bca7c066364e2d15ae6be3582d5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-nb-no Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-nb Filename: pool/main/t/thunderbird/thunderbird-locale-nb-no_24.4.0+build1-0ubuntu1_all.deb Size: 11308 MD5sum: b7c88ec1a5e176841a2695c4abf8905b SHA1: 7268892d4882e3b11e2424be9b99b694bfbc7ec0 SHA256: d35129078c23c036e8d61c2536dd01d4a86873e6f2757e083762ea8d41b9ce74 Description: Transitional Norwegian language pack for Thunderbird Description-md5: 07372224f7f0b015610d5e3f1ac02f57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-nl Priority: optional Section: mail Installed-Size: 584 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-nl_24.4.0+build1-0ubuntu1_i386.deb Size: 357374 MD5sum: ceb393f802b8cab2740419a205e3d085 SHA1: ec0093eda30c4666ec19d07ebb618c02ee6e924a SHA256: 52fadcf54e49a04434316e974579082e432b4b69f4d38f52cc5f5c9dbcc03088 Description: Dutch; Flemish language pack for Thunderbird Description-md5: 38b6c5b7280a72183935b75b6ea9c7d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-nn Priority: optional Section: web Installed-Size: 586 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-nn_24.4.0+build1-0ubuntu1_i386.deb Size: 355822 MD5sum: a317247952d1816555daf9dc949bc5b4 SHA1: 4f06ea6e66e5148dfea84dba3fe612b3b9c55a64 SHA256: 627be06557074939afe1c8f78c5d94029f359d932d264aa8fe88fbc4c01fde96 Description: Norwegian Nynorsk; Nynorsk, Norwegian language pack for Thunderbird Description-md5: 7ecbfd7db64a82a92733abd49e768933 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-nn-no Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-nn Filename: pool/main/t/thunderbird/thunderbird-locale-nn-no_24.4.0+build1-0ubuntu1_all.deb Size: 11308 MD5sum: f29998d442433bdaf7f5fdcd54f44c27 SHA1: 90814a9992ddd5da2568384dcf64228397f6dee4 SHA256: 23b6ee0ca1e87d7625c83f0a5e67a534441ca622747d328e2d318349e513dd95 Description: Transitional Norwegian language pack for Thunderbird Description-md5: 07372224f7f0b015610d5e3f1ac02f57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pa Priority: optional Section: web Installed-Size: 671 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-pa_24.4.0+build1-0ubuntu1_i386.deb Size: 444562 MD5sum: d5d82c9408612366d4f04d02e9f32820 SHA1: 63d9a71cbdd901cadb5c7fc6dd13321700b611c3 SHA256: 040ca49568bd38dbfb1db8b81099e2329945b3261b3d90a35e5254cb194adc4f Description: Panjabi; Punjabi language pack for Thunderbird Description-md5: aa580bb579804ee591e35edbbcd80dd5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pa-in Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-pa Filename: pool/main/t/thunderbird/thunderbird-locale-pa-in_24.4.0+build1-0ubuntu1_all.deb Size: 11300 MD5sum: 88895476b2caedfe4f398cae5f4a3712 SHA1: 3104e2629467a7deffb5c59aa878764afbef44a3 SHA256: e1aeca8c20134bc00aa04a7fd35730613c45354eeb04895ccb202633f38bd263 Description: Transitional Punjabi language pack for Thunderbird Description-md5: 4f99cd6218380edd7d419f7754843622 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pl Priority: optional Section: mail Installed-Size: 568 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-pl_24.4.0+build1-0ubuntu1_i386.deb Size: 341128 MD5sum: 7a389efe47a1bb00756617ebaef3fbb4 SHA1: 60167347b8db61ad17c37a12f6510680708ffaea SHA256: 60728823bb013437a5b41af76b98af2c5bfa49eb4928e631b9b3d94c84352ce9 Description: Polish language pack for Thunderbird Description-md5: 777da132688522a52205b5a6710bcbb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pt Priority: optional Section: web Installed-Size: 1024 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-pt_24.4.0+build1-0ubuntu1_i386.deb Size: 707724 MD5sum: 3c14e7e9f1184f9b3ccd98ba906f6458 SHA1: 02118d5ea8793e6766fca90c3ef95e95ca196393 SHA256: 45de7549bbc2abd3a118f8cd4492aa9b6b670b80499f77bc2205ab425f4132b9 Description: Portuguese language pack for Thunderbird Description-md5: 0f8fb3826c29ae6bf3c3ad16d863b999 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pt-br Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-pt Filename: pool/main/t/thunderbird/thunderbird-locale-pt-br_24.4.0+build1-0ubuntu1_all.deb Size: 11304 MD5sum: d0a2d17456fb97dbff7d765bcabb0ac0 SHA1: 2e82dd1f505e7676d1162fd6d27885a83489b466 SHA256: f60fe9ebe5ec0ebbf410d40caef00c11dc05b13583e51e706f0bfb063a05132b Description: Transitional Portugese language pack for Thunderbird Description-md5: 063e3e81e79a8a10b5ce2b5d56714bfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-pt-pt Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-pt Filename: pool/main/t/thunderbird/thunderbird-locale-pt-pt_24.4.0+build1-0ubuntu1_all.deb Size: 11306 MD5sum: 0792ef30cb6083a1f9148073977673ae SHA1: beddee9bd122566775282a946267ed207250b470 SHA256: a0c646d52b455b4c14954ea7e3205f0aeb1a77f8b82ca92610cfa682bb68fee7 Description: Transitional Portugese language pack for Thunderbird Description-md5: 063e3e81e79a8a10b5ce2b5d56714bfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-rm Priority: optional Section: web Installed-Size: 601 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-rm_24.4.0+build1-0ubuntu1_i386.deb Size: 372074 MD5sum: 883c9ed106d5b7f41ae896978313a486 SHA1: b430137457fb7eeb56738c818ed28bf8b7ee6cfc SHA256: db702f09d5816f3f99b1aa2324411544cfcff02fa96e2f45def48c54eef1caa5 Description: Romansh language pack for Thunderbird Description-md5: f2a8824b85c8ee2df8aadd456d6c4fc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ro Priority: optional Section: web Installed-Size: 658 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ro_24.4.0+build1-0ubuntu1_i386.deb Size: 434686 MD5sum: fcb9821ef213515f5d85cb23222cc57e SHA1: 240faf5fa807943750d6d9d4b4c4dc3651805341 SHA256: 9615bb0a77b24749f5df4bffda0e44405df8c82d6b35852282c63f4baebe9764 Description: Romanian language pack for Thunderbird Description-md5: 601aaa5358b7fd9504dbc00b274ce9a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ru Priority: optional Section: mail Installed-Size: 590 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ru_24.4.0+build1-0ubuntu1_i386.deb Size: 363468 MD5sum: d478bbdbeeef56139a108238749638b3 SHA1: df1fffa46305791c044b12098c673144573f5eb2 SHA256: b23077b39ad8fffd319369d9b9fbc01b21d74c82608c5753d261fa35b8258abc Description: Russian language pack for Thunderbird Description-md5: 3470b329081e3274f2b1fc7e8f4836e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-si Priority: optional Section: web Installed-Size: 674 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-si_24.4.0+build1-0ubuntu1_i386.deb Size: 450770 MD5sum: 791d9f500657f3e5ba0de4075e4ddfbd SHA1: b871a7c12a623817300bd2017a2133b21a88c21a SHA256: 23670f1f52ba07e04ff22d1d765c21fbd9780fbe2c3133b3f5ca8201948a5217 Description: Sinhala; Sinhalese language pack for Thunderbird Description-md5: a4cd27280668af50e718cc1dde325010 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sk Priority: optional Section: mail Installed-Size: 607 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-sk_24.4.0+build1-0ubuntu1_i386.deb Size: 380028 MD5sum: 681b846472d7f356e3d2bd1518149bbe SHA1: b584368e0f47a5709b325295db75e1c7f3cf776a SHA256: 14ee2b9654e7ca3cb102b533932669d2deec64e2dad692c911a9b0f094e5d2bb Description: Slovak language pack for Thunderbird Description-md5: 58fb9ea30d8ddc2d169728c65570981b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sl Priority: optional Section: mail Installed-Size: 596 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-sl_24.4.0+build1-0ubuntu1_i386.deb Size: 363454 MD5sum: 4c45fc1599c1cc2228c218c9af8b8f1e SHA1: 0c2a8a2f2352a2ae85a74f5264f31f7cd7c7b172 SHA256: 809a507d5ca07be3e4b67b8296a4df128b396e0e2b9ff1fcd8363f7ca7186730 Description: Slovenian language pack for Thunderbird Description-md5: daf76ecbb038c82b1a007e0b97441b83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sq Priority: optional Section: web Installed-Size: 598 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-sq_24.4.0+build1-0ubuntu1_i386.deb Size: 374032 MD5sum: 2c58d84c03b0c26a15b3ccd8355f3a9b SHA1: d437c2d496dc9aa869db8151705e337764e94cbb SHA256: 1267f5cfc1baea6eb33acf944439759a14f23c01df4d2497ef6b19e82db96f8b Description: Albanian language pack for Thunderbird Description-md5: aabacf80f66ab70ed6865d5c62e6feb4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sr Priority: optional Section: web Installed-Size: 684 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-sr_24.4.0+build1-0ubuntu1_i386.deb Size: 459808 MD5sum: 1de709a1c7e67b85b2d95dda849119d9 SHA1: 5b08a623d62f5c8b94a4948ef21bf0d1711140b2 SHA256: bd670536194a6e3a8114aac1abfbde85d9a65a30a5940503bd801352fe7947be Description: Serbian language pack for Thunderbird Description-md5: 4903f7be134fb1cd72c302ad46ab3471 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sv Priority: optional Section: web Installed-Size: 589 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-sv_24.4.0+build1-0ubuntu1_i386.deb Size: 357788 MD5sum: d74636da19b68f0723d55de24e977014 SHA1: 5f4b342c2c31bfe73b7f0e89cd4e3ea596925f45 SHA256: 24bab78b808aceb7c08841101e6cb98c4cd42d4932757ac589b2c3af3a9e8671 Description: Swedish language pack for Thunderbird Description-md5: 8a2405d1e465215d08f22ca0d7b53025 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-sv-se Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-sv Filename: pool/main/t/thunderbird/thunderbird-locale-sv-se_24.4.0+build1-0ubuntu1_all.deb Size: 11304 MD5sum: 6c968be6072761cb82cf9a815c148ab5 SHA1: b2575a583cb79777fb9feddd6492d4acf88912c5 SHA256: ae3392e6d499ca940dc5421a94e304d270a037d58ef74fcf5dbffd650d5779a8 Description: Transitional Swedish language pack for Thunderbird Description-md5: f013f0346741e935e8ea6e28d12bc5e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ta Priority: optional Section: web Installed-Size: 697 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-ta_24.4.0+build1-0ubuntu1_i386.deb Size: 470972 MD5sum: 57c1a89cb2d8010e4df30bb669872758 SHA1: fd6f8b1c19e2c6e3535ce6d7e3684298dc03bef3 SHA256: 1199bf3107a643aac75b7bb34f5c5aa22abe815450321813425125e7d501924b Description: Tamil language pack for Thunderbird Description-md5: 1b6aec33cedf10be3259b193e9b12265 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-ta-lk Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-ta Filename: pool/main/t/thunderbird/thunderbird-locale-ta-lk_24.4.0+build1-0ubuntu1_all.deb Size: 11294 MD5sum: 1f91ceb45f1587b76db7cf040f2fa06b SHA1: 19062b8c542e236f9a710c32999abd25612933fb SHA256: 0816001a838d8c9a5d5ff441e237293a0ee1e69a73fbbd9fc19e3a5ad5e5a7fc Description: Transitional Tamil language pack for Thunderbird Description-md5: 1a0bc948aeb218ec6560b280e4af0dd4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-tr Priority: optional Section: mail Installed-Size: 603 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-tr_24.4.0+build1-0ubuntu1_i386.deb Size: 377352 MD5sum: 6fcb1859597eb69ef4891550d624103d SHA1: 9291344912cbd1cd483aa32557ae67b2c4b46950 SHA256: 4986a69e61b8fa1b2a6ff3de1c5ca2ac6a5bd22e54cc5411aa17f5ffacd30db8 Description: Turkish language pack for Thunderbird Description-md5: 96f7b80d2e94b507e60f8bc5a8a0fd27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-uk Priority: optional Section: web Installed-Size: 644 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-uk_24.4.0+build1-0ubuntu1_i386.deb Size: 420548 MD5sum: ffe7b8ca6e5dd9804ee7769dd0b7e495 SHA1: bb58fd614797691e8855d74f6dec0e94145406c7 SHA256: 6a536fb24733c486ad17462c68e9877e619f56375caa34f8acddfb6644b31348 Description: Ukrainian language pack for Thunderbird Description-md5: 10eb02a1ee9b6883db9375d4708aafa1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-vi Priority: optional Section: web Installed-Size: 659 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-vi_24.4.0+build1-0ubuntu1_i386.deb Size: 435428 MD5sum: 123d18541120bf0d8fc9b9df7b9a89be SHA1: 9c46efb049b64e9f2ce4bc039bf5945b90379c9c SHA256: d951b7aee95c66b064d3f986d08807f77e51f271ffa9744e70043de4303c9e84 Description: Vietnamese language pack for Thunderbird Description-md5: b7b5ecb4b2349b8ee7446da8c0ee8912 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-zh-cn Priority: optional Section: mail Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-zh-hans Filename: pool/main/t/thunderbird/thunderbird-locale-zh-cn_24.4.0+build1-0ubuntu1_all.deb Size: 11312 MD5sum: ca1fbc10e035dbf2c1d7fcfbfd46fed3 SHA1: 56b2f4a2be878188b9538108958090565a3dd2dd SHA256: 995020e325942d6cd65f7f8a10d312753c37462c3360399ac72f1dd096cc3375 Description: Transitional Simplified Chinese language pack for Thunderbird Description-md5: 3a9fcde509c5d2504fb3f5bcdc7f4b7a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-zh-hans Priority: optional Section: web Installed-Size: 613 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-zh-hans_24.4.0+build1-0ubuntu1_i386.deb Size: 383878 MD5sum: 1d5c0be6ac7f486ab97424dfe88ddd62 SHA1: 8f3dd16e8790f1df287ef345d2e64c80a3f2a8f4 SHA256: 40397d8a617d289a4e71cb3664c72fba05cbe3c3d9f3b617651eca386a1764a8 Description: Simplified Chinese language pack for Thunderbird Description-md5: 3638e8cfbb0bae8e88cb4e7f01b7eabe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-zh-hant Priority: optional Section: web Installed-Size: 616 Maintainer: Ubuntu Mozilla Team Architecture: i386 Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird (>= 1:24.4.0+build1-0ubuntu1), thunderbird (<< 1:24.4.0+build1-0ubuntu1.1~) Filename: pool/main/t/thunderbird/thunderbird-locale-zh-hant_24.4.0+build1-0ubuntu1_i386.deb Size: 385814 MD5sum: c34fe4aae0ac67d07e6a8ad54a9d7d35 SHA1: a533134d68a84bfa12a0bc5fd5254d39eafde52b SHA256: 886901a100f33df182e6afad6e8ae67de5fe7a8036c4b0821d7586f2aea4da7d Description: Traditional Chinese language pack for Thunderbird Description-md5: 364c5ad13dbb779048738785b9adcaf0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: thunderbird-locale-zh-tw Priority: optional Section: web Installed-Size: 143 Maintainer: Ubuntu Mozilla Team Architecture: all Source: thunderbird Version: 1:24.4.0+build1-0ubuntu1 Depends: thunderbird-locale-zh-hant Filename: pool/main/t/thunderbird/thunderbird-locale-zh-tw_24.4.0+build1-0ubuntu1_all.deb Size: 11312 MD5sum: 4ee9a4b3e58eec4edcec9d3b23d91e49 SHA1: 74d2fa53c4df42be951296d00eb6745ed94eb224 SHA256: 05f57f6e92f8c4c852958be8856b1526ac3b93f669f0020b1722bc2c9cb2d6d2 Description: Transitional Traditional Chinese language pack for Thunderbird Description-md5: 153d368d7ff06df3219842e1b9490761 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tidy Priority: optional Section: web Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Jason Thomas Architecture: i386 Version: 20091223cvs-1.2ubuntu1 Depends: libc6 (>= 2.7), libtidy-0.99-0 (>= 20091223cvs-1.2ubuntu1) Suggests: tidy-doc Filename: pool/main/t/tidy/tidy_20091223cvs-1.2ubuntu1_i386.deb Size: 21898 MD5sum: 135ce0f08ac978a4bffaa964b098eac9 SHA1: 787e95b766b98836704c1c633e423cfb35d30383 SHA256: 0c283e27f8809a46ad45a701433bb4b612376def56bbffb44e56006611a75683 Description: HTML syntax checker and reformatter Homepage: http://tidy.sourceforge.net/ Description-md5: fd11e1a504852ab2140f3a76fd8a688e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tidy-doc Priority: optional Section: doc Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Jason Thomas Architecture: all Source: tidy Version: 20091223cvs-1.2ubuntu1 Suggests: tidy Conflicts: tidy (<< 20030716-1) Filename: pool/main/t/tidy/tidy-doc_20091223cvs-1.2ubuntu1_all.deb Size: 86886 MD5sum: 11db34423506b8f518da41e3d464de37 SHA1: 768f3f66296f8c4288298ae18ff0dc400d02c0b4 SHA256: d7c95c4448ec453f796d6cbe3e94afa160a0f3e55291e1f62a296846bb91588a Description: HTML syntax checker and reformatter - documentation Homepage: http://tidy.sourceforge.net/ Description-md5: 40d22bc6a690527fb53baa539cc7c6ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: time Priority: standard Section: utils Installed-Size: 118 Maintainer: Ubuntu Developers Original-Maintainer: Bob Proulx Architecture: i386 Version: 1.7-24 Depends: libc6 (>= 2.3.4), dpkg (>= 1.15.4) | install-info Filename: pool/main/t/time/time_1.7-24_i386.deb Size: 29286 MD5sum: d8e8a5864438da92e907db5d2f5f4230 SHA1: f5ec80e5c38637e2a3e8c473b4d104c422f91241 SHA256: 29646f04adf29cb516914977403dd26852b93f75c9355a2ecefb2311480d24ee Description: GNU time program for measuring CPU resource usage Homepage: http://www.gnu.org/software/time Description-md5: 3482b423b592147357279e93ec9d47e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: tinycdb Priority: optional Section: utils Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Michael Tokarev Architecture: i386 Version: 0.78 Depends: libc6 (>= 2.4), libcdb1 Filename: pool/main/t/tinycdb/tinycdb_0.78_i386.deb Size: 13026 MD5sum: 930b19485b6bfd659ad4c3196c2e51fb SHA1: 300adf028868bda6540cc0dd931bbd2538617d76 SHA256: ab455e42f10418913310e00e35c2f597fb4468fb4491533ec860e650b5cba02b Description: an utility to manipulate constant databases (cdb) Description-md5: db206835a75a16ebc84290ca026c89ed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tipa Priority: optional Section: tex Installed-Size: 4767 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Version: 2:1.3-19 Replaces: tipa-type1 Depends: texlive-latex-base, texlive-base-bin, dpkg (>= 1.14.18), tex-common (>= 3) Conflicts: tipa-type1 Filename: pool/main/t/tipa/tipa_1.3-19_all.deb Size: 3310780 MD5sum: bc57bb25d7d1f06b616c1ac4e03184e1 SHA1: 3e10393f2e26b8aca39e48d7f7bf0799edf7df2c SHA256: 095a99d7da1285d03cafb56281ab961f5840755fbd76bb323f9a345ca9ef0e85 Description: system for processing phonetic symbols in LaTeX Homepage: http://www.ctan.org/tex-archive/fonts/tipa/ Description-md5: a56e773ea4d78490bebca15bee1b1c6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tipa-doc Priority: extra Section: doc Installed-Size: 4609 Maintainer: Ubuntu Developers Original-Maintainer: Debian TeX maintainers Architecture: all Source: tipa Version: 2:1.3-19 Filename: pool/main/t/tipa/tipa-doc_1.3-19_all.deb Size: 4653122 MD5sum: a3ee40cdc28b19e040fee0e6aadd88ef SHA1: 53411279450f726e69ceed66f22def0950c63f79 SHA256: 2f461b5eaa4396d7dd307e1726f65ac076faaf4c56a05eb1220519c4248a6cb3 Description: documentation for the TIPA LaTeX font Homepage: http://www.ctan.org/tex-archive/fonts/tipa/ Description-md5: 061ad62b882f15d251decb718b9caf86 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tk Priority: optional Section: libs Installed-Size: 51 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Provides: wish Depends: tk8.6 (>= 8.6.0-2), tcl Conflicts: tk-lib, tk8.5-lib Breaks: tk8.3 (<< 8.3.5-16), tk8.4 (<< 8.4.20-2), tk8.5 (<< 8.5.14-3), tk8.6 (<< 8.6.0-2) Filename: pool/main/t/tcltk-defaults/tk_8.6.0+6ubuntu3_i386.deb Size: 3188 MD5sum: b5e359e36611158bef65bce37045c1b2 SHA1: ac7426741db431e85209091ee0e319420f89ad19 SHA256: 5819f5a6d46f140d97576f149f2e90807d7ff7afa3b61794fc44ddc5ec11752c Description: Toolkit for Tcl and X11 (default version) - windowing shell Multi-Arch: foreign Description-md5: c18f13af983cc9102503e0f44f8d4b2e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tk-dev Priority: optional Section: devel Installed-Size: 43 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Depends: tk8.6-dev (>= 8.6.0-2), tk, tcl-dev Suggests: tk-doc Filename: pool/main/t/tcltk-defaults/tk-dev_8.6.0+6ubuntu3_i386.deb Size: 2962 MD5sum: 53fc70c46e32ce4cad35d9d091d6f8d8 SHA1: 41024c180d8915f08c9d1afdc31a0b8015be3a9e SHA256: 261fb02578bf51ef50a50b9baafc532f874bf694a4701912871138a93f0f2bc5 Description: Toolkit for Tcl and X11 (default version) - development files Multi-Arch: same Description-md5: 7e7c3316b08ee6e19b370908f28f78d9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tk-doc Priority: optional Section: doc Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: all Source: tcltk-defaults Version: 8.6.0+6ubuntu3 Depends: tcl-doc (= 8.6.0+6ubuntu3) Recommends: tk8.6-doc (>= 8.6.0-2) Suggests: tk Filename: pool/main/t/tcltk-defaults/tk-doc_8.6.0+6ubuntu3_all.deb Size: 968 MD5sum: 96277eca9ad5da58436c859da36fa112 SHA1: be22ca17027307a83f989bc0dc88869a5ec40ea7 SHA256: 2cede308ca4fd130f67a6bb6083b5d961a637dc29bcc79ad0e82a54d19493f3f Description: Toolkit for Tcl and X11 (default version) - manual pages Description-md5: 5cd3865abeee5ce7293d5dbd4523b8c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tk8.5 Priority: optional Section: libs Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: i386 Version: 8.5.15-2ubuntu3 Depends: tcl8.5, libtk8.5 (= 8.5.15-2ubuntu3), libc6 (>= 2.0), libtcl8.5 (>= 8.5.0) Recommends: xterm | x-terminal-emulator Conflicts: libtk-img (<< 1.2.5), tk40 (<= 4.0p3-2) Filename: pool/main/t/tk8.5/tk8.5_8.5.15-2ubuntu3_i386.deb Size: 11958 MD5sum: e73224d034a8fcdd3e25141b179d83d3 SHA1: ae66bf935c917e9291e35ecee135efbce57c1db1 SHA256: f84a855e46d8e551a5fae90ef16ee7e114e48ef634791d02d8aeeff63be2024e Description: Tk toolkit for Tcl and X11, v8.5 - windowing shell Multi-Arch: foreign Homepage: http://www.tcl.tk/ Description-md5: f62cd1aec09b4bda4b237fc2f6d951e6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-audio Package: tk8.5-dev Priority: optional Section: devel Installed-Size: 2707 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: i386 Source: tk8.5 Version: 8.5.15-2ubuntu3 Depends: dpkg-dev (>= 1.16.1~), x11proto-core-dev, libx11-dev, libxss-dev, libxext-dev, libxft-dev, tcl8.5-dev (>= 8.5.14-2), libtk8.5 (= 8.5.15-2ubuntu3), tk8.5 Suggests: tk8.5-doc Filename: pool/main/t/tk8.5/tk8.5-dev_8.5.15-2ubuntu3_i386.deb Size: 647754 MD5sum: a0732c27d3b639f90a0dc78bc81f1c70 SHA1: b9e75546458aa81db4388eb402d9341558009409 SHA256: c97516370a07a46120a9b187c718b392fecf0cb061e865e461b3fefe8e1c9868 Description: Tk toolkit for Tcl and X11, v8.5 - development files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 01f221ed6946f7c26ddad6a7edd186af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tk8.5-doc Priority: optional Section: doc Installed-Size: 1631 Maintainer: Ubuntu Developers Original-Maintainer: Tcl/Tk Debian Packagers Architecture: all Source: tk8.5 Version: 8.5.15-2ubuntu3 Replaces: tk8.5 (<< 8.5.14-2) Provides: tkdoc Suggests: tk8.5 Conflicts: tk8.3-doc, tk8.4-doc, tk8.5 (<< 8.5.14-2), tkdoc Filename: pool/main/t/tk8.5/tk8.5-doc_8.5.15-2ubuntu3_all.deb Size: 940622 MD5sum: 25e6fb7a0ac07299bf0c4c07e50349ea SHA1: 5b75b1b1eaa1754c6341f342741c0b97d1f65147 SHA256: 45c5f9bae600b42adb0b76c940962f5aa5de07c93ae271229143c2238d15d5f4 Description: Tk toolkit for Tcl and X11, v8.5 - manual pages Homepage: http://www.tcl.tk/ Description-md5: fd7cffc18c603b1490f25b95a6e7b065 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tk8.6 Priority: optional Section: libs Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Version: 8.6.1-3ubuntu2 Depends: libc6 (>= 2.0), libtcl8.6 (>= 8.6.0), libtk8.6 (>= 8.6.0) Recommends: xterm | x-terminal-emulator Conflicts: libtk-img (<< 1.2.5), tk40 (<= 4.0p3-2) Filename: pool/main/t/tk8.6/tk8.6_8.6.1-3ubuntu2_i386.deb Size: 12104 MD5sum: eb967e042ede35be20874bedac593d87 SHA1: 6f27f610a3a7f5e0917b0e76bbd3907616895280 SHA256: 7d05e4b34885eb259409c38845932354ef7000c454e7397487c25c09b78ca3af Description: Tk toolkit for Tcl and X11 v8.6 - windowing shell Multi-Arch: foreign Homepage: http://www.tcl.tk/ Description-md5: 066d4f5267290a404c952b599f887990 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: tk8.6-dev Priority: optional Section: devel Installed-Size: 2689 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: i386 Source: tk8.6 Version: 8.6.1-3ubuntu2 Depends: dpkg-dev (>= 1.16.1~), x11proto-core-dev, libx11-dev, libxt-dev, libxss-dev, libxext-dev, libxft-dev, tcl8.6-dev (>= 8.6.0-2), libtk8.6 (= 8.6.1-3ubuntu2), tk8.6 Suggests: tk8.6-doc Filename: pool/main/t/tk8.6/tk8.6-dev_8.6.1-3ubuntu2_i386.deb Size: 668408 MD5sum: 8fbc134c379e05e6be7069a09674f202 SHA1: 003178d6611696cabe481dd0705a5fe10def7cf6 SHA256: de80bfc86cd8a05bf1bd051a0a34ab0816dd4db37683b59bcc425ac172a56a1d Description: Tk toolkit for Tcl and X11 v8.6 - development files Multi-Arch: same Homepage: http://www.tcl.tk/ Description-md5: 5081fc14ac8d13fb09d3d3f090596c49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tk8.6-doc Priority: optional Section: doc Installed-Size: 1699 Maintainer: Ubuntu Developers Original-Maintainer: Debian Tcl/Tk Packagers Architecture: all Source: tk8.6 Version: 8.6.1-3ubuntu2 Replaces: tk8.6 (<< 8.6.0-2) Provides: tkdoc Suggests: tk8.6 Conflicts: tk8.6 (<< 8.6.0-2), tkdoc Filename: pool/main/t/tk8.6/tk8.6-doc_8.6.1-3ubuntu2_all.deb Size: 1015348 MD5sum: d874dcc8af842881382705bc163be573 SHA1: c0b31ae9fc65f3318c29a9d1e6ef7fcdffa38cb4 SHA256: dc9fd0ae0204565fbc5bc1a71a761db1a63e5628d0177c2734dd29fddea4358e Description: Tk toolkit for Tcl and X11 v8.6 - manual pages Homepage: http://www.tcl.tk/ Description-md5: bbe987d020c4105d0922d75a7d107bf3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tmake Priority: optional Section: devel Installed-Size: 1448 Maintainer: Jan Niehusmann Architecture: i386 Version: 1.8-1.1 Depends: perl Suggests: libqt-dev Filename: pool/main/t/tmake/tmake_1.8-1.1_i386.deb Size: 60642 MD5sum: 62693c7815490b05c3df445feb901216 SHA1: 824a390d6457e59fef2a0a22b2cbe0b712b60857 SHA256: ea2572469786489052a25b188e895fa3fbfc31cbc109a522468bc20f6aaf36ca Description: a cross-platform makefile tool Description-md5: 88f139f6520630dd3735500c2bce09da Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tmispell-voikko Priority: optional Section: text Installed-Size: 256 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: i386 Version: 0.7.1-3 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.12.0), libglibmm-2.4-1c2a (>= 2.32.0), libncursesw5 (>= 5.6+20070908), libstdc++6 (>= 4.6), libtinfo5, libvoikko1 (>= 2.1), voikko-fi Suggests: ispell Conflicts: tmispell, tmispell-soikko Filename: pool/main/t/tmispell-voikko/tmispell-voikko_0.7.1-3_i386.deb Size: 73888 MD5sum: 998b8d62f6b430a7187c35065791e1bc SHA1: c50084ae19fb9d6bc356d9f7fa8e1744f5f4389f SHA256: e2b9e362b3ccb2f962ac8b774ae0a396053ecd81544cee1e8b26efa5cf950075 Description: Ispell wrapper which uses Voikko for spell-checking Homepage: http://voikko.sourceforge.net/ Description-md5: 4e96d6b673246a51faf74a4fd4c6943e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: tmux Priority: optional Section: admin Installed-Size: 536 Maintainer: Ubuntu Developers Original-Maintainer: Romain Francoise Architecture: i386 Version: 1.8-5 Depends: libc6 (>= 2.8), libevent-2.0-5 (>= 2.0.10-stable), libtinfo5 Filename: pool/main/t/tmux/tmux_1.8-5_i386.deb Size: 243618 MD5sum: 1890ff93a4475eb37b1b5852eb0b491c SHA1: d919bc5d496522ca9c508faf4441a25a45c33f31 SHA256: 48c34eab763ce9e56c7af79250088a1c5b0759bed6894aaff4ddd5d8bcf9b7bc Description: terminal multiplexer Homepage: http://tmux.sourceforge.net/ Description-md5: dc6ff920cb9183a42694d0ea54835078 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-usb Package: tofrodos Priority: optional Section: utils Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Markus Koschany Architecture: i386 Version: 1.7.13+ds-1ubuntu1 Depends: libc6 (>= 2.3.4) Filename: pool/main/t/tofrodos/tofrodos_1.7.13+ds-1ubuntu1_i386.deb Size: 23058 MD5sum: b898112a8efbca9e637d15ce8dbec852 SHA1: d1927094dabaaf9d86b760a46d15a33064270a8b SHA256: fb9659d896233eb10ce3e46c7ae2c8a42d738f2463bf3d3d11adf03447896884 Description: Converts DOS <-> Unix text files, alias tofromdos Homepage: http://www.thefreecountry.com/tofrodos/index.shtml Description-md5: 9004c348055c82d4e761c246e594b2d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tokyocabinet-doc Priority: optional Section: doc Installed-Size: 1370 Maintainer: Ubuntu Developers Original-Maintainer: Tobias Frost Architecture: all Source: tokyocabinet Version: 1.4.48-2 Filename: pool/main/t/tokyocabinet/tokyocabinet-doc_1.4.48-2_all.deb Size: 523056 MD5sum: 5e38b1011f1017f30f5076eaf4eb2e1c SHA1: be316148871a8c682f12995e7c1699be8ac09d6a SHA256: d340144ca0573796b5a4afb29f2a7412a8483345b6ffb7d5228822eb3ce928ee Description: Tokyo Cabinet Database Documentation Homepage: http://fallabs.com/tokyocabinet/ Description-md5: d59b69c9c3f83f1538cad5f4090e8591 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tomcat7 Priority: optional Section: java Installed-Size: 364 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 7.0.52-1 Depends: tomcat7-common (>= 7.0.52-1), ucf, adduser, debconf (>= 0.5) | debconf-2.0 Recommends: authbind Suggests: tomcat7-docs (>= 7.0.52-1), tomcat7-admin (>= 7.0.52-1), tomcat7-examples (>= 7.0.52-1), tomcat7-user (>= 7.0.52-1), libtcnative-1 (>= 1.1.24) Filename: pool/main/t/tomcat7/tomcat7_7.0.52-1_all.deb Size: 35564 MD5sum: d68cb5bd4d8955d053fc96f324abb7e7 SHA1: 79e7474cb295194f5acaba7be642eb252f5fcbe0 SHA256: d3f342b49fb35902448bfafb85201ede13eb0b64d72548e66f265ea8a9911aa6 Description: Servlet and JSP engine Homepage: http://tomcat.apache.org Description-md5: 71d2a54f759941814ab4cf7873094b26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: tomcat7-admin Priority: optional Section: java Installed-Size: 189 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Depends: tomcat7-common (>= 7.0.52-1) Filename: pool/main/t/tomcat7/tomcat7-admin_7.0.52-1_all.deb Size: 26790 MD5sum: adbf52d83147e7135d74695a5992c7b5 SHA1: 34abcba6fddf5a793c3be190bf0283628562f308 SHA256: 2b7687e709973e2ae98eaa965548747eb1c2e44db5cc7227a8af6a4895935783 Description: Servlet and JSP engine -- admin web applications Homepage: http://tomcat.apache.org Description-md5: 07b3738a38d2448ee2c0b77d4dbd745d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: tomcat7-common Priority: optional Section: java Installed-Size: 139 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Depends: libtomcat7-java (>= 7.0.52-1), default-jre-headless | java6-runtime-headless | java6-runtime | java-6-runtime Filename: pool/main/t/tomcat7/tomcat7-common_7.0.52-1_all.deb Size: 47978 MD5sum: 948c303f592fc8654bd53f21c60bd671 SHA1: be8a3d72d7e627634db238308427f557b372ec1c SHA256: 433069276ab06be9ece399c511922ec708b8c28224daa072d06eceebf9ccae0c Description: Servlet and JSP engine -- common files Homepage: http://tomcat.apache.org Description-md5: f1b8817985b6e745bfe6216aa2086c4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: tomcat7-docs Priority: optional Section: doc Installed-Size: 4096 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Depends: tomcat7-common (>= 7.0.52-1) Filename: pool/main/t/tomcat7/tomcat7-docs_7.0.52-1_all.deb Size: 547950 MD5sum: ddd24a8636b44dc3da9e6e332e2a6be1 SHA1: 5172953ae6870acbfeacb4349dc41339c7257662 SHA256: 774f2c424e5256a19572ff72c88733f72891a5f7b7229ca3f3e2cdf5efd74077 Description: Servlet and JSP engine -- documentation Homepage: http://tomcat.apache.org Description-md5: 523c216160e93c3df0c2e38305883e9c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: tomcat7-examples Priority: optional Section: java Installed-Size: 1311 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Source: tomcat7 Version: 7.0.52-1 Depends: tomcat7-common (>= 7.0.52-1), libjstl1.1-java, libjakarta-taglibs-standard-java Filename: pool/main/t/tomcat7/tomcat7-examples_7.0.52-1_all.deb Size: 182070 MD5sum: b8778d81f4b0f8b985274ae3bb713e91 SHA1: ba166d1189c758b37902bf411fb97ae69298fe75 SHA256: 93a5aaa8c33975da4c8d6e04d3675f036a38ae2a8d4920716f686140e20d10df Description: Servlet and JSP engine -- example web applications Homepage: http://tomcat.apache.org Description-md5: 3fd8302e7ffe454afd9ba42730f7a01a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: tomcat-server Package: toshset Priority: optional Section: utils Installed-Size: 237 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Version: 1.76-4 Depends: libc6 (>= 2.7), libgcc1 (>= 1:4.1.1), libpci3 (>= 1:3.1.8-2), libstdc++6 (>= 4.1.1) Filename: pool/main/t/toshset/toshset_1.76-4_i386.deb Size: 61612 MD5sum: 9e6fa1357d4dff31b5998aaec51c0db5 SHA1: 91e7b07f152f53cf2ff94d92e24f6b81f70148c3 SHA256: 75308177767e168a66f50526417da9b39f049f2069587555c7de21fa0e50676b Description: Access much of the Toshiba laptop hardware interface Homepage: http://www.schwieters.org/toshset/ Description-md5: 8d0a96fd726e068c365e12ba1bdb9fda Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: totem Priority: optional Section: gnome Installed-Size: 694 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.10.1-1ubuntu4 Depends: python:any (>= 2.7.1-0ubuntu2), libatk1.0-0 (>= 1.29.4), libc6 (>= 2.4), libcairo2 (>= 1.10.0), libclutter-1.0-0 (>= 1.11.10), libclutter-gst-2.0-0 (>= 0.10.0), libclutter-gtk-1.0-0 (>= 0.91.8), libcogl15 (>= 1.15.8), libdbus-glib-1-2 (>= 0.88), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libgtk-3-0 (>= 3.5.12), libnautilus-extension1a (>= 1:2.91), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libtotem-plparser18 (>= 3.10.0), libtotem0 (>= 3.10.1-1ubuntu4), libtotem0 (<< 3.11), libx11-6, totem-common (= 3.10.1-1ubuntu4), gstreamer1.0-clutter, gstreamer1.0-plugins-base, gstreamer1.0-plugins-good, gstreamer1.0-x, gnome-icon-theme (>= 2.15.90), gnome-icon-theme-symbolic, gsettings-desktop-schemas Recommends: totem-plugins, gstreamer1.0-pulseaudio Suggests: gnome-codec-install, gstreamer1.0-libav, gstreamer1.0-plugins-bad, gstreamer1.0-plugins-ugly, totem-mozilla Filename: pool/main/t/totem/totem_3.10.1-1ubuntu4_i386.deb Size: 102280 MD5sum: 3801f20e0a451f2c1cd67e4c13613e06 SHA1: 1b9af2c0c0567f2ff59a70b69d4f6f8813a6d1f9 SHA256: 3c2d633bf671458e81b39953c479e66d03ae6dc3d5532f5fb7d4c6ac294aeaa5 Description: Simple media player for the GNOME desktop based on GStreamer Homepage: http://www.gnome.org/projects/totem/ Description-md5: 3773374b409bb5710c492c328fe37f78 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: totem-common Priority: optional Section: gnome Installed-Size: 1932 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: totem Version: 3.10.1-1ubuntu4 Depends: dconf-gsettings-backend | gsettings-backend Filename: pool/main/t/totem/totem-common_3.10.1-1ubuntu4_all.deb Size: 190920 MD5sum: 6d296aea7f7a009711bce0b63b3e7c70 SHA1: 98286db47fb2eb3efdc52f228841bce61313a501 SHA256: e2f1ca009ae04a86dba345577263a5ac20bb7312e17af947dfebcbae7b9f5894 Description: Data files for the Totem media player Homepage: http://www.gnome.org/projects/totem/ Description-md5: e5e4dab953a289de510184357646dc10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: totem-dbg Priority: extra Section: libs Installed-Size: 3750 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: totem Version: 3.10.1-1ubuntu4 Depends: totem (= 3.10.1-1ubuntu4) Filename: pool/main/t/totem/totem-dbg_3.10.1-1ubuntu4_i386.deb Size: 851332 MD5sum: 6888bffe977bd54f0fab327775dd62ca SHA1: 0ebc2ae454ab908768374b542a99bb9709a9b6c0 SHA256: a7c1bc277b0eeb52d67f7327e86a54ef6bb12058fc9b7c9b2cccc8fac4a2e9e6 Description: Debugging symbols for the Totem media player Homepage: http://www.gnome.org/projects/totem/ Description-md5: 2e6698ffe79828e97552b72939dbf59f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: totem-mozilla Priority: optional Section: web Installed-Size: 652 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: totem Version: 3.10.1-1ubuntu4 Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.33.0), libstdc++6 (>= 4.1.1), libtotem-plparser18 (>= 3.10.0), totem (= 3.10.1-1ubuntu4), dbus-x11 (>= 0.61) Filename: pool/main/t/totem/totem-mozilla_3.10.1-1ubuntu4_i386.deb Size: 66740 MD5sum: fd1a7848a7fdac17f18b5b911751557f SHA1: 13241143131d098a4598f68e820a94084dc79fe5 SHA256: f20792279f3a4573b5241bab714b29539f963176f6f96a96436a7a2bbb7feaf3 Description: Totem Mozilla plugin Homepage: http://www.gnome.org/projects/totem/ Npp-Applications: ec8030f7-c20a-464f-9b0e-13a3a9e97384, 92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a Npp-Description: Watch Movies in your Browser (http://projects.gnome.org/totem/) Npp-Filename: libtotem- Npp-Mimetype: video/quicktime, video/mp4, image/x-macpaint, image/x-quicktime, application/x-mplayer2, video/x-ms-asf-plugin, video/x-msvideo, video/x-ms-asf, video/x-ms-wmv, video/x-wmv, video/x-ms-wvx, video/x-ms-wm, application/ogg, video/mpeg, audio/wav, audio/x-wav, audio/mpeg Npp-Name: Totem Mozilla plugin Description-md5: 0e3c465743f83cc1eccf3e903fa33e77 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop Package: totem-plugins Priority: optional Section: gnome Installed-Size: 922 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Source: totem Version: 3.10.1-1ubuntu4 Depends: libc6 (>= 2.7), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.5.2), liblircclient0, libtotem0 (>= 3.10.1-1ubuntu4), libtotem0 (<< 3.11), libxml2 (>= 2.7.4), libzeitgeist-2.0-0 (>= 0.3.2), python:any (>= 2.7.1-0ubuntu2), python2.7, totem (= 3.10.1-1ubuntu4), gir1.2-gdkpixbuf-2.0, gir1.2-glib-2.0, gir1.2-gtk-3.0, gir1.2-pango-1.0, gir1.2-peas-1.0, gir1.2-totem-1.0 (= 3.10.1-1ubuntu4), python-gi (>= 2.90.3), python-xdg Suggests: gromit Filename: pool/main/t/totem/totem-plugins_3.10.1-1ubuntu4_i386.deb Size: 129134 MD5sum: c64b7f27a1dc1c0a62ea35065151c3eb SHA1: 1be7b0aa9847cb6151ffbccdce732763e902c746 SHA256: cff391284228cd12d2cbcadde7cc9f021d90c465ed607a64555bf7479886a199 Description: Plugins for the Totem media player Homepage: http://www.gnome.org/projects/totem/ Description-md5: c852fb65ed6d80aba464f0bc5a394dca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: transfig Priority: optional Section: graphics Installed-Size: 1138 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: i386 Version: 1:3.2.5.e-1ubuntu1 Depends: libc6 (>= 2.7), libpng12-0 (>= 1.2.13-4), libxpm4, x11-common, gawk Recommends: netpbm (>= 2:10.0-4), ghostscript Suggests: xfig Filename: pool/main/t/transfig/transfig_3.2.5.e-1ubuntu1_i386.deb Size: 564348 MD5sum: 9497116f6621139b3b15d6acb6ed1901 SHA1: a6e3cc175ecf7abc6dca96e5e5bcb2853a01fc4c SHA256: c16662baec8c9668d4065fe3808f60d1d4014ec43ee344a146d0233566fd50f7 Description: Utilities for converting XFig figure files Multi-Arch: foreign Homepage: http://xfig.org/ Description-md5: 534e2528f07883170add13274a0f0897 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb, ubuntustudio-video, ubuntustudio-graphics Package: transmission-cli Priority: optional Section: net Installed-Size: 2643 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: i386 Source: transmission Version: 2.82-1.1ubuntu3 Replaces: transmission-daemon (<< 1.50-1) Depends: libc6 (>= 2.11), libcurl3-gnutls (>= 7.18.0), libevent-2.0-5 (>= 2.0.10-stable), libminiupnpc8 (>= 1.6), libnatpmp1 (>= 20101211), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4), transmission-common (= 2.82-1.1ubuntu3) Suggests: transmission-daemon (= 2.82-1.1ubuntu3), transmission-gtk (= 2.82-1.1ubuntu3) Breaks: transmission-daemon (<< 1.50-1) Filename: pool/main/t/transmission/transmission-cli_2.82-1.1ubuntu3_i386.deb Size: 405198 MD5sum: 6390b0eea2c0ef9dcfbeee5679acfcaa SHA1: 42e8b77604d872220f61b4ed57bea6081e9f3232 SHA256: cbc86771c493f77b40c0480f2cc1a0cf0f4407c99010d56f9321c55778bdb698 Description: lightweight BitTorrent client (command line programs) Homepage: http://www.transmissionbt.com/ Description-md5: 2bb621d0d95ecd3582f524eb28dbf71e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: transmission-common Priority: optional Section: net Installed-Size: 872 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: all Source: transmission Version: 2.82-1.1ubuntu3 Replaces: transmission-gtk (<< 2.10-1) Breaks: transmission-gtk (<< 2.10-1) Filename: pool/main/t/transmission/transmission-common_2.82-1.1ubuntu3_all.deb Size: 224862 MD5sum: 722c669dfb0970e91c18bc116f44f349 SHA1: ddcea73178c9eb9e826c91f7b92c3af6eeb01459 SHA256: 365013f0ba6523c57421df79abdefe629f1e39b478d81bde2e433eec2e8ce207 Description: lightweight BitTorrent client (common files) Homepage: http://www.transmissionbt.com/ Description-md5: c088436bdff78ec234e20d4cee7f3943 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: transmission-daemon Priority: optional Section: net Installed-Size: 620 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: i386 Source: transmission Version: 2.82-1.1ubuntu3 Replaces: transmission-cli (<< 1.40-1) Depends: libc6 (>= 2.15), libcurl3-gnutls (>= 7.18.0), libevent-2.0-5 (>= 2.0.10-stable), libminiupnpc8 (>= 1.6), libnatpmp1 (>= 20101211), libssl1.0.0 (>= 1.0.0), libsystemd-daemon0 (>= 31), zlib1g (>= 1:1.1.4), transmission-common (= 2.82-1.1ubuntu3), lsb-base (>= 3.0), init-system-helpers (>= 1.13~), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Pre-Depends: adduser Recommends: transmission-cli (>= 1.50-1) Breaks: transmission-cli (<< 1.40-1) Filename: pool/main/t/transmission/transmission-daemon_2.82-1.1ubuntu3_i386.deb Size: 211708 MD5sum: 7d7c3df0fafbaabafc2a3d23f10169a1 SHA1: 05877de581f68408444f3fa15027dca4154af9c0 SHA256: f5160ef23a34079c322136ea1249bd8f3a25e78c33af9a618f8d202ba29114bb Description: lightweight BitTorrent client (daemon) Homepage: http://www.transmissionbt.com/ Description-md5: c5796eb91f75285b9af0fb5f16136e5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: transmission-dbg Priority: extra Section: debug Installed-Size: 32924 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: i386 Source: transmission Version: 2.82-1.1ubuntu3 Depends: transmission-cli, transmission-gtk, transmission-qt, transmission-daemon, transmission-common Filename: pool/main/t/transmission/transmission-dbg_2.82-1.1ubuntu3_i386.deb Size: 6275276 MD5sum: f2d2364b357aa10cc0e99e6f83c0edf0 SHA1: e6495b7ce647459dd48f2aa87e0ef0f225982a04 SHA256: f560634f5de277dbbee60a400a3631b1cf158f7d9672dceee5393041e93c5b19 Description: lightweight BitTorrent client (debug symbols) Homepage: http://www.transmissionbt.com/ Description-md5: b093bc257efd8163683cc280c88fb97d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: transmission-gtk Priority: optional Section: net Installed-Size: 948 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: i386 Source: transmission Version: 2.82-1.1ubuntu3 Depends: libappindicator3-1 (>= 0.4.90), libc6 (>= 2.11), libcurl3-gnutls (>= 7.18.0), libevent-2.0-5 (>= 2.0.10-stable), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.3.16), libminiupnpc8 (>= 1.6), libnatpmp1 (>= 20101211), libpango-1.0-0 (>= 1.14.0), libssl1.0.0 (>= 1.0.0), zlib1g (>= 1:1.1.4), transmission-common (= 2.82-1.1ubuntu3), gconf2 (>= 2.28.1-2) Recommends: xdg-utils Filename: pool/main/t/transmission/transmission-gtk_2.82-1.1ubuntu3_i386.deb Size: 313346 MD5sum: 756188096d4ee67a13365d7c8cc8203a SHA1: 11618c3d60e83f175edd5b8cb0c93e5549b10018 SHA256: 4ba509f793a9ea56a9edccabde853cbba5c10888f855e6c256cb3a45d295c2ff Description: lightweight BitTorrent client (GTK+ interface) Homepage: http://www.transmissionbt.com/ Description-md5: 2a49d29e6e551104026a39357f5968bb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: transmission-qt Priority: optional Section: net Installed-Size: 1929 Maintainer: Ubuntu Developers Original-Maintainer: Leo Costela Architecture: i386 Source: transmission Version: 2.82-1.1ubuntu3 Depends: libc6 (>= 2.11), libcurl3-gnutls (>= 7.18.0), libevent-2.0-5 (>= 2.0.10-stable), libgcc1 (>= 1:4.1.1), libminiupnpc8 (>= 1.6), libnatpmp1 (>= 20101211), libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libqt5gui5 (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5widgets5 (>= 5.2.0), libssl1.0.0 (>= 1.0.0), libstdc++6 (>= 4.4.0), zlib1g (>= 1:1.1.4), transmission-common (= 2.82-1.1ubuntu3) Recommends: xdg-utils Filename: pool/main/t/transmission/transmission-qt_2.82-1.1ubuntu3_i386.deb Size: 610740 MD5sum: 980bd7444bf9d7a8cc1671a5777c24eb SHA1: f18720c41fa9ffd317b01f08a875e10ef4307152 SHA256: c03f70ef6a7588ff802d033353d04f70086a0378b1c5cb32cc4828205757fcaf Description: lightweight BitTorrent client (Qt interface) Homepage: http://www.transmissionbt.com/ Description-md5: 55875b4734dfba52b8c3483949c1215e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: trousers Priority: optional Section: utils Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: i386 Version: 0.3.11.2-1 Depends: libc6 (>= 2.7), libssl1.0.0 (>= 1.0.0), adduser, lsb-base (>= 3.0-6) Breaks: udev (<< 136-1) Filename: pool/main/t/trousers/trousers_0.3.11.2-1_i386.deb Size: 131372 MD5sum: 29d6e32cf1e8e3df448ad1ffe34487fc SHA1: 0200c2f3402ca9937b55a978cc34fe0c0a8e2fc5 SHA256: f2e79df01b4f21d5e4bce76db592754b00093fe52a343935b7d48e4c47188f5d Description: open-source TCG Software Stack (daemon) Homepage: http://trousers.sourceforge.net/ Description-md5: 1a853869dc86f41f4c57847cbf703eba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: trousers-dbg Priority: extra Section: libdevel Installed-Size: 896 Maintainer: Ubuntu Developers Original-Maintainer: Pierre Chifflier Architecture: i386 Source: trousers Version: 0.3.11.2-1 Depends: trousers (= 0.3.11.2-1), libtspi1 (= 0.3.11.2-1), libtspi-dev (= 0.3.11.2-1) Filename: pool/main/t/trousers/trousers-dbg_0.3.11.2-1_i386.deb Size: 784194 MD5sum: 3407294553cc4a5b279a272288d29cb7 SHA1: 74171a49be9bc0d178f0d79c3b7c672257e144ee SHA256: 259364f773e7ea02385e50556093bd3b950960200407d721dedad2676fd2b191 Description: open-source TCG Software Stack (debug) Homepage: http://trousers.sourceforge.net/ Description-md5: af01efd57e989a4302402fc7a888fc49 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ttf-alee Priority: optional Section: x11 Installed-Size: 3093 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 13 Filename: pool/main/t/ttf-alee/ttf-alee_13_all.deb Size: 750710 MD5sum: 8252461d0c7d733948f3fc430bc2d4cb SHA1: c71483f3ed988fb3a0737095cb893686f079274a SHA256: 6a84fa8dacacee60942b26c34164bb73bceb619c7cf0ef238cd8a8f8bee8cfd1 Description: free Hangul TrueType fonts Description-md5: 49f7dc47a23353dcd6d39bf73ed27a27 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb, ubuntustudio-font-meta Package: ttf-bengali-fonts Priority: optional Section: x11 Installed-Size: 774 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Provides: ttf-bangla-fonts Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-bengali-fonts_0.5.14ubuntu1_all.deb Size: 269734 MD5sum: 92c832e3adfb286ce29f1310bd3907b7 SHA1: e84975baf6dac8c447f31584ef684c4f69bc5ffc SHA256: eb62179129a12bfa51a686df147d169485c61727c031f7fa898edc2b82deb43e Description: Free TrueType fonts for the Bengali language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 2b1979381e87874686949bbeaa3e33d8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-dejavu Priority: optional Section: x11 Installed-Size: 55 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-dejavu Version: 2.34-1ubuntu1 Depends: fonts-dejavu, ttf-dejavu-core, ttf-dejavu-extra Filename: pool/main/f/fonts-dejavu/ttf-dejavu_2.34-1ubuntu1_all.deb Size: 2806 MD5sum: dd04806e665edda569f0730bf6dfb37a SHA1: 48af50230821ecd9d6befbd5eeb9ee5964d9dcd4 SHA256: 5929efa3cba173f9733e95479779cbe468b20ea531b0eb8453a59c8e3f1069e0 Description: transitional dummy package Homepage: http://dejavu-fonts.org/ Description-md5: d022b4cd65360a59d321e029d730c59e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: ttf-dejavu-core Priority: optional Section: x11 Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-dejavu Version: 2.34-1ubuntu1 Depends: fonts-dejavu-core Filename: pool/main/f/fonts-dejavu/ttf-dejavu-core_2.34-1ubuntu1_all.deb Size: 2956 MD5sum: 9a1638907f97e9374172634e274f71fb SHA1: 338bd252fcf6a4980dd682d272431acd8d587758 SHA256: 60e0f1ba6ccdfe7988d384f083d5202669959d8f719998476a55f04267ca3d2d Description: transitional dummy package Homepage: http://dejavu-fonts.org/ Description-md5: d022b4cd65360a59d321e029d730c59e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, ubuntustudio-video, ubuntustudio-graphics Package: ttf-dejavu-extra Priority: optional Section: x11 Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-dejavu Version: 2.34-1ubuntu1 Depends: fonts-dejavu-extra Filename: pool/main/f/fonts-dejavu/ttf-dejavu-extra_2.34-1ubuntu1_all.deb Size: 3104 MD5sum: 9024935a4bbb9c01b4dffcb9bc02d680 SHA1: ab266f15153fbe3c9f07fe773bf33ca6517d078d SHA256: 5e03a4a681132351adb64cc3c16eca40d12c30d6ce68330bc8a632cb178434b3 Description: transitional dummy package Homepage: http://dejavu-fonts.org/ Description-md5: d022b4cd65360a59d321e029d730c59e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: ttf-devanagari-fonts Priority: optional Section: x11 Installed-Size: 4862 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-devanagari-fonts_0.5.14ubuntu1_all.deb Size: 938448 MD5sum: e02accfdee197de42d5a47713a01581d SHA1: be3e0f7e4db4c1646d02e931b8588b9df8d655a9 SHA256: febbfd839ada40ffe85bc7979c7f15df0f6b070f59eb7b4770b78d19c611c60c Description: Free TrueType fonts for languages using the Devanagari script Homepage: http://debian-in.alioth.debian.org/ Description-md5: 7c4a066ef4207f58c2d9df606c6bdf50 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-gujarati-fonts Priority: optional Section: x11 Installed-Size: 429 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-gujarati-fonts_0.5.14ubuntu1_all.deb Size: 158600 MD5sum: 39b436d0b8e17e674bf47ba311b750cc SHA1: 1da7fbf7949a9aa2d812b482198b9cc947a6e65b SHA256: 18828bcdedc45ecf332069793d9eb62f3fc3cc65ab4430ed3538ce9315bfa757 Description: Free TrueType fonts for the Gujarati language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 34890ff56ce8374724b4fbc20102f71c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-indic-fonts Priority: optional Section: x11 Installed-Size: 36 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Version: 1:0.5.14ubuntu1 Depends: ttf-indic-fonts-core (= 1:0.5.14ubuntu1), ttf-bengali-fonts (= 1:0.5.14ubuntu1), ttf-devanagari-fonts (= 1:0.5.14ubuntu1), ttf-gujarati-fonts (= 1:0.5.14ubuntu1), ttf-kannada-fonts (= 1:0.5.14ubuntu1), ttf-malayalam-fonts (= 1:0.5.14ubuntu1), ttf-oriya-fonts (= 1:0.5.14ubuntu1), ttf-punjabi-fonts (= 1:0.5.14ubuntu1), ttf-tamil-fonts (= 1:0.5.14ubuntu1), ttf-telugu-fonts (= 1:0.5.14ubuntu1) Recommends: fonts-pagul (>= 1.0-1~), fonts-gubbi, fonts-navilu Filename: pool/main/t/ttf-indic-fonts/ttf-indic-fonts_0.5.14ubuntu1_all.deb Size: 2372 MD5sum: 9370096700c52de6a4f753c18613a118 SHA1: e92cb20ad3fde1e2efb11eb9ef9f029f46d68c7d SHA256: 8f319d475a2a69a4c12ea810eec4da4d97a6946fabd258363f974433ad2b6ab2 Description: Metapackage for free Indian language fonts Homepage: http://debian-in.alioth.debian.org/ Description-md5: 1cf5ffd68165cd66662518e0505f237d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ttf-indic-fonts-core Priority: optional Section: x11 Installed-Size: 2464 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Filename: pool/main/t/ttf-indic-fonts/ttf-indic-fonts-core_0.5.14ubuntu1_all.deb Size: 913600 MD5sum: b8cc517130c9f5f7864bae1879f7b49a SHA1: d41bfb27e50c199800d636efda4a50b2d19dda67 SHA256: b1778083700758d99944857c67af34f2d0513fca57f0057cb83fdadca7b32c9d Description: Core collection of free fonts for languages of India Homepage: http://debian-in.alioth.debian.org/ Description-md5: eb3e1483308ac43cc6dd2d5f5f747c64 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ttf-kannada-fonts Priority: optional Section: x11 Installed-Size: 698 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-kannada-fonts_0.5.14ubuntu1_all.deb Size: 234320 MD5sum: c2b822d6f20425fe8b113d38ac2f4fa5 SHA1: 0712dd1f11381b547ba267f2c8527dfe4d18c849 SHA256: b2b79de162155e7573c4e0f89dde383448bb6cdaa58431bb79dd872bcaec27d1 Description: Free TrueType fonts for the Kannada language Homepage: http://debian-in.alioth.debian.org/ Description-md5: deae49025827090c69c2820385c41e68 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-malayalam-fonts Priority: optional Section: x11 Installed-Size: 1397 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-malayalam-fonts_0.5.14ubuntu1_all.deb Size: 432658 MD5sum: 93186e23e2e9bc2085a629f330ce65f9 SHA1: 6260f68468874122d4ce23f958004c074fd69ad5 SHA256: 8137d5047705555d0de0da5f35ba0ee563ac85a3e2ec8052882c05c0b1d53403 Description: Free TrueType fonts for the Malayalam language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 4ad4130ff44a4a5cc72ca7bb20a8a30a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-usb Package: ttf-oriya-fonts Priority: optional Section: x11 Installed-Size: 265 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-oriya-fonts_0.5.14ubuntu1_all.deb Size: 102620 MD5sum: 649122561d84fcbd731b7f2f04b0c1fc SHA1: 2ecfce627c7678e0ef00b99208bb2c5ecce4eda1 SHA256: 9689fc0a3c52d28a78d1653e4766dcbec9dfc1388dd4313c0230f2c2a241d6fe Description: Free TrueType fonts for the Oriya language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 126ee6c89859c0f81e57d69b83fde50a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-punjabi-fonts Priority: optional Section: x11 Installed-Size: 202 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Filename: pool/main/t/ttf-indic-fonts/ttf-punjabi-fonts_0.5.14ubuntu1_all.deb Size: 57546 MD5sum: 75a679c57a1eb5baf86222ce14582b1c SHA1: 864fbf9bd6a664314df78716e60a0c6c5d791e54 SHA256: b96e59c6b149c7e9c9d081990359ddbef3e223ada49e68d7ea43b7dd88af7ca8 Description: Free TrueType fonts for the Punjabi language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 734ddc6f1aa432bfba7b2f9c057059f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ttf-tamil-fonts Priority: optional Section: x11 Installed-Size: 97 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-tamil-fonts_0.5.14ubuntu1_all.deb Size: 25212 MD5sum: 46189367645a92ce24471dca7ddd6e89 SHA1: 45738cc9a39cb7764daeafb981c358f55dee7906 SHA256: 18d3b012b987de894ae1d96babc723f8f35eddd92557f1c923bce190cc62a3c4 Description: Free TrueType fonts for the Tamil language Homepage: http://debian-in.alioth.debian.org/ Description-md5: 7740bfc9e153d2daf5eae54eeb2020c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-telugu-fonts Priority: optional Section: x11 Installed-Size: 208 Maintainer: Ubuntu Developers Original-Maintainer: Debian-IN Team Architecture: all Source: ttf-indic-fonts Version: 1:0.5.14ubuntu1 Recommends: ttf-indic-fonts-core Filename: pool/main/t/ttf-indic-fonts/ttf-telugu-fonts_0.5.14ubuntu1_all.deb Size: 50078 MD5sum: 5c204135de8ab1c9ccd1a62fff56d994 SHA1: c070fcddde5785ff0cde4de4d90cc123487b355e SHA256: c229158e4dc19071652fa83aeec9cb86a5dfa3b38afb6bf47ed7676427885c01 Description: Free TrueType fonts for the Telugu language Homepage: http://debian-in.alioth.debian.org/ Description-md5: ba3cc27f4601521f4fbf1b7589fe7981 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, edubuntu-desktop-gnome, edubuntu-usb Package: ttf-ubuntu-font-family Priority: optional Section: x11 Installed-Size: 3936 Maintainer: Ubuntu Developers Original-Maintainer: Paul Sladen Architecture: all Source: ubuntu-font-family-sources Version: 0.80-0ubuntu6 Replaces: ubuntu-private-fonts, ubuntu-private-nda-fonts Provides: ubuntu-private-fonts, ubuntu-private-nda-fonts Conflicts: ubuntu-private-fonts, ubuntu-private-nda-fonts Filename: pool/main/u/ubuntu-font-family-sources/ttf-ubuntu-font-family_0.80-0ubuntu6_all.deb Size: 1992838 MD5sum: 8b030ecdd9ae57ec7d64bc41f59780f1 SHA1: 7d90cd24ab1d81118fa601ddea381c284848b815 SHA256: c3b1b71c1ce3b7e9720fb736348f2415936471d0714fe5d8f8584743008c9d8a Description: Ubuntu Font Family, sans-serif typeface hinted for clarity Multi-Arch: foreign Homepage: http://font.ubuntu.com/ Description-md5: cbc588fec1f6d5cfee16894159e3ab67 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ttf-unifont Priority: optional Section: x11 Installed-Size: 14737 Maintainer: Ubuntu Developers Original-Maintainer: Paul Hardy Architecture: all Source: unifont Version: 1:6.3.20131221-1 Depends: xfonts-utils Filename: pool/main/u/unifont/ttf-unifont_6.3.20131221-1_all.deb Size: 2613744 MD5sum: 5349f81deba858264f088beef5965155 SHA1: 0809da33dbf0349e1d347e29e1719cb05eb33ed3 SHA256: 69add8e06afb73cead349af5f803cd6e881648aa179259c95504bbcec64c6e2e Description: TrueType version of GNU Unifont Homepage: http://unifoundry.com Description-md5: 90d7c54e33c62ff0f413a481253489be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntustudio-font-meta Package: ttf-wqy-microhei Priority: optional Section: x11 Installed-Size: 31 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-wqy-microhei Version: 0.2.0-beta-2 Depends: fonts-wqy-microhei Filename: pool/main/f/fonts-wqy-microhei/ttf-wqy-microhei_0.2.0-beta-2_all.deb Size: 2566 MD5sum: b4a49d19fd9fa703d901ab9cfb944241 SHA1: 1b678028a52c47f3c3c6aacd6cae3bbcddbed863 SHA256: 68b9591c4efcfef2acba6b3b1ffaaacbed46130296b1cad4c01e579470a04f26 Description: transitional dummy package Homepage: http://wenq.org/ Description-md5: d022b4cd65360a59d321e029d730c59e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-active, kubuntu-active, ubuntustudio-audio Package: ttf-wqy-zenhei Priority: optional Section: x11 Installed-Size: 29 Maintainer: Ubuntu Developers Original-Maintainer: Debian Fonts Task Force Architecture: all Source: fonts-wqy-zenhei Version: 0.9.45-5ubuntu1 Depends: fonts-wqy-zenhei Filename: pool/main/f/fonts-wqy-zenhei/ttf-wqy-zenhei_0.9.45-5ubuntu1_all.deb Size: 2424 MD5sum: d1f76c04a11e1891367a1e8c1f3df03c SHA1: fe6df46d4c8ea5ded04d57811fedbe640ebfa5fe SHA256: 0ea936e7347907547d66ee98da1e61c35e57f300f1a2ebdcd62d7e40bdf0c984 Description: transitional dummy package Homepage: http://wqy.sourceforge.net/ Description-md5: d022b4cd65360a59d321e029d730c59e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: twisted-doc Priority: extra Section: doc Installed-Size: 2351 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Klose Architecture: all Source: twisted Version: 13.2.0-1ubuntu1 Recommends: www-browser | postscript-viewer | pdf-viewer Suggests: python-twisted Filename: pool/main/t/twisted/twisted-doc_13.2.0-1ubuntu1_all.deb Size: 414770 MD5sum: 072354434c8c4857790cabd8fc86f48a SHA1: 414b967c06f044213068bc0852ed8a96d91242c6 SHA256: 259960ab6c2b49fd2534de49cb64e5916412463f454660cc0998a99bb867018b Description: Official documentation of Twisted Description-md5: 21aa08a62eeca30f3c7899faf4a7419f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: twm Priority: optional Section: x11 Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:1.0.6-1ubuntu1 Provides: x-window-manager Depends: libc6 (>= 2.7), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxext6, libxmu6, libxt6 Filename: pool/main/t/twm/twm_1.0.6-1ubuntu1_i386.deb Size: 101934 MD5sum: 10366c913cc904784e015a9f72cb8561 SHA1: 245abfb8a4e3687a2bd7a5d39dbe2c6117b7b3e1 SHA256: 3e1a98aea6a17affaadb8f559b95d2573dd62080661c18f2ca33b483daa5503d Description: Tab window manager Description-md5: 68a4936c620d35f590b904c66528006f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: txt2man Priority: optional Section: text Installed-Size: 63 Maintainer: Ubuntu Developers Original-Maintainer: Fredrik Steen Architecture: all Version: 1.5.5-4.1 Depends: gawk Filename: pool/main/t/txt2man/txt2man_1.5.5-4.1_all.deb Size: 14844 MD5sum: ee75af43f0cfbbe1c89e19ee544d6bc9 SHA1: fb3447a0aeb415a11c56094e1c5f694c73a4e5a2 SHA256: cdc685fb227e8a55caf2e7de5d44a024ff0a3a253d1cc6668925d100c93419b4 Description: Converts flat ASCII text to man page format Homepage: http://mvertes.free.fr/download/ Description-md5: 58e0f38e7db0afabc7e8e5a7926bd386 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: tzdata Priority: required Section: libs Installed-Size: 1599 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: all Version: 2014b-1 Replaces: libc0.1, libc0.3, libc6, libc6.1 Provides: tzdata-jessie Depends: debconf (>= 0.5) | debconf-2.0 Filename: pool/main/t/tzdata/tzdata_2014b-1_all.deb Size: 181992 MD5sum: c9ad8a92ad5261a6dec660353ca9902a SHA1: f4a0d2c2f464da6a0e864994b2ddb51915380b34 SHA256: 161b910d8798ba29515e92f5d073f7edbd48f6c702e97f5c86310129d2701d31 Description: time zone and daylight-saving time data Multi-Arch: foreign Homepage: http://www.iana.org/time-zones Description-md5: a77a3cc9a67658dd7cfdc6547391b8f8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: tzdata-java Priority: optional Section: libs Installed-Size: 356 Maintainer: Ubuntu Developers Original-Maintainer: GNU Libc Maintainers Architecture: all Source: tzdata Version: 2014b-1 Depends: tzdata (= 2014b-1) Filename: pool/main/t/tzdata/tzdata-java_2014b-1_all.deb Size: 71966 MD5sum: 8794d40286cdd4b7c9ae43430f425140 SHA1: 38621880ba2192662f6a8ac781517358be7e6c1f SHA256: a67eee679e1c409517a23bd27ee2b119d12df790647a7413e694542e10bfaec5 Description: time zone and daylight-saving time data for use by java runtimes Multi-Arch: foreign Homepage: http://www.iana.org/time-zones Description-md5: 811cf395ae4cc676283711d9bc20443f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, tomcat-server, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-usb Package: u-boot-tools Priority: optional Section: admin Installed-Size: 192 Maintainer: Ubuntu Developers Original-Maintainer: Clint Adams Architecture: i386 Source: u-boot Version: 2013.10-3 Replaces: u-boot (<< 2010.12-2), uboot-envtools (<< 20081215-3~), uboot-mkimage (<= 0.4build1) Depends: libc6 (>= 2.7) Breaks: u-boot (<< 2010.12-2), uboot-envtools (<< 20081215-3~), uboot-mkimage (<= 0.4build1) Filename: pool/main/u/u-boot/u-boot-tools_2013.10-3_i386.deb Size: 59708 MD5sum: a00bed557f5a5984bbc89410051f9602 SHA1: ab6b81e07b7615d1c50bf44e75c1e4917c189ea5 SHA256: 316dd8e1e01c61c1a673c9506e007d01c99b986d1dd932a201da655f46aa9366 Description: companion tools for Das U-Boot bootloader Multi-Arch: foreign Homepage: http://www.denx.de/wiki/U-Boot/ Description-md5: e725d3253d541a5a2d90da965ef577af Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ubiquity Priority: optional Section: admin Installed-Size: 16061 Maintainer: Ubuntu Installer Team Architecture: i386 Version: 2.18.7 Replaces: espresso, espresso-grub, espresso-kbd-chooser, espresso-keyboard-setup, espresso-locale, espresso-timezone, espresso-utils, espresso-yaboot, partman, ubiquity-frontend-gtk (<< 2.3.8), ubuntu-express, user-setup (<< 0.05ubuntu6) Depends: libc6 (>= 2.15), libdebconfclient0 (>= 0.145), libdebian-installer4 (>= 0.88ubuntu4), libiw30 (>= 30~pre1), libparted0debian1 (>= 2.2-1), debconf (>= 1.5.43), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python3:any (>= 3.3.2-2~), ubiquity-frontend-2.18.7, ubiquity-artwork-2.18.7, laptop-detect, lsb-release, ubiquity-casper, python3-apt (>= 0.7.100.3~), console-setup (>= 1.70ubuntu8), iso-codes, passwd, adduser, os-prober, rdate, ntfs-3g (>= 1:2011.1.15AR.4+2011.4.12-1), ecryptfs-utils, cryptsetup, policykit-1, python3-icu (>= 1.0), python3-pam, language-selector-common (>= 0.4.16), archdetect-deb, dpkg-repack, apt-clone, wget, grub-common, dbus-x11 Recommends: grub-pc | grub | grub-efi, dmraid, btrfs-tools, ubuntu-drivers-common, lvm2 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) Filename: pool/main/u/ubiquity/ubiquity_2.18.7_i386.deb Size: 5184074 MD5sum: 428f733710b0fd9ea43d519b34bb0c42 SHA1: 85b4fec68e759382e3f66264d1892f0609b5380c SHA256: 1ef86c55f3c19707424dc1761a87839a7d55008fb10fa1bc67a3cf5ae2da3945 Description: Ubuntu live CD installer Description-md5: a02e939502ca1f257871281bbc51e7e1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: ubiquity-casper Priority: optional Section: misc Installed-Size: 112 Maintainer: Ubuntu Developers Architecture: all Source: casper Version: 1.340 Replaces: casper (<< 1.318) Depends: laptop-detect, sudo Breaks: casper (<< 1.318) Filename: pool/main/c/casper/ubiquity-casper_1.340_all.deb Size: 10856 MD5sum: 019be780d052070573b1e1b6ccf79368 SHA1: edc703d67f969d047f0b6425044c2d09d944782c SHA256: a6bb0582e985683486982d24bfd882f2f017ce17b21ef41f74a2af28b8fb6383 Description: Configuration hooks for live installer Enhances: ubiquity Tag: admin::boot, admin::filesystem, implemented-in::shell, protocol::smb, role::plugin, scope::utility, special::completely-tagged, works-with-format::iso9660 Description-md5: c8d716f3fb782cd7e002d2b9dba298b2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: ubiquity-frontend-debconf Priority: optional Section: admin Installed-Size: 2660 Maintainer: Ubuntu Installer Team Architecture: i386 Source: ubiquity Version: 2.18.7 Provides: ubiquity-frontend-2.18.7 Depends: python3:any (>= 3.3.2-2~), ubiquity (= 2.18.7), debconf (>= 1.5.24ubuntu2) | cdebconf, bogl-bterm (>= 0.1.18-2ubuntu4), tasksel Filename: pool/main/u/ubiquity/ubiquity-frontend-debconf_2.18.7_i386.deb Size: 444732 MD5sum: 23f641c37eb540895842b016862b62f2 SHA1: 114b040ec97d5a0678d4d10d669fd2cf79bf479a SHA256: ec8130a94ba0e1743e7767f4fbc419a712ed4b7bf9be15aca5823f0b084eb43e Description: debconf frontend for the Ubiquity live installer Description-md5: fa1dbae8b89fc2e16547475097735858 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ubiquity-frontend-gtk Priority: optional Section: admin Installed-Size: 801 Maintainer: Ubuntu Installer Team Architecture: i386 Source: ubiquity Version: 2.18.7 Replaces: espresso-frontend-gtk, ubiquity (<< 2.4.3), ubuntu-express-frontend-gtk Provides: indicator-renderer, ubiquity-frontend-2.18.7 Depends: libc6 (>= 2.1.3), libcairo2 (>= 1.2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libido3-0.1-0 (>= 13.10.0daily13.06.19), libindicator3-7 (>= 0.4.90), libx11-6, python3:any (>= 3.3.2-2~), ubiquity (= 2.18.7), python3-dbus, gir1.2-gtk-3.0, gir1.2-soup-2.4, gir1.2-vte-2.90, gir1.2-webkit-3.0, iso-codes, metacity | xfwm4 | matchbox-window-manager | lubuntu-default-settings | openbox | gnome-shell, gir1.2-xkl-1.0, gir1.2-timezonemap-1.0, python3-gi, python3-cairo, python3-gi-cairo, gir1.2-appindicator3-0.1, busybox-static | busybox Suggests: gnome-control-center | feh Conflicts: espresso-frontend-gtk, ubiquity (<< 2.4.3), ubuntu-express-frontend-gtk Filename: pool/main/u/ubiquity/ubiquity-frontend-gtk_2.18.7_i386.deb Size: 86820 MD5sum: f6eb701650b96307356c919eb7fa1f93 SHA1: 3bded5e7639b9c765b6b09f3fa822a7ffea00b29 SHA256: 357a1497752c04707f048ab96e2d074be442bdb49c4b701f14e8f50bf893eed4 Description: GTK+ frontend for Ubiquity live installer Description-md5: 44de7bf97742fb6f9f2aaa099078ef33 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: ubiquity-slideshow-ubuntu Priority: optional Section: x11 Installed-Size: 1700 Maintainer: Ubuntu Developers Original-Maintainer: Ubiquity Slideshow Team Architecture: all Version: 83 Replaces: ubiquity-slideshow Provides: ubiquity-slideshow Conflicts: ubiquity-slideshow Filename: pool/main/u/ubiquity-slideshow-ubuntu/ubiquity-slideshow-ubuntu_83_all.deb Size: 548360 MD5sum: 90c796eba7870cd1f87c90aaa694603c SHA1: 6f1fe8798bf6577f0895f9ce83012b1161c81b65 SHA256: 587edef5e30e42aa413afc29e366c9ac047e82999ac314315a8f74c683ea04a8 Description: Ubiquity slideshow for Ubuntu Homepage: https://launchpad.net/ubiquity-slideshow-ubuntu Description-md5: 56e7b38abbebcc5524fba477d78222aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, edubuntu-usb-live Package: ubiquity-ubuntu-artwork Priority: optional Section: admin Installed-Size: 761 Maintainer: Ubuntu Installer Team Architecture: all Source: ubiquity Version: 2.18.7 Replaces: espresso-ubuntu-artwork, espresso-ubuntu-doc, ubiquity (<< 1.13.0), ubiquity-ubuntu-doc, ubuntu-express-ubuntu-artwork, ubuntu-express-ubuntu-doc Provides: ubiquity-artwork-2.18.7 Conflicts: espresso-ubuntu-artwork, espresso-ubuntu-doc, ubiquity-ubuntu-doc, ubuntu-express-ubuntu-artwork, ubuntu-express-ubuntu-doc Filename: pool/main/u/ubiquity/ubiquity-ubuntu-artwork_2.18.7_all.deb Size: 521952 MD5sum: f2613d6d7a1b3e82dcb2020c2d4028db SHA1: aced94d0bce7a190792255f1d16f89fc5f8292fa SHA256: 3d2028093d8fd6fb068fa28e0be19cf3dc5213f966ea61e9f901d3be7eb1b408 Description: Ubuntu artwork for Ubiquity live installer Description-md5: a7bbb2b9a8b2a3fbc7110f5a8d336a36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: ubuntu-artwork Priority: optional Section: gnome Installed-Size: 72 Maintainer: Ubuntu Artwork Team Architecture: all Source: ubuntu-themes (14.04+14.04.20140410-0ubuntu1) Version: 1:14.04+14.04.20140410-0ubuntu1 Depends: adium-theme-ubuntu, light-themes, ubuntu-mono, ubuntu-wallpapers Filename: pool/main/u/ubuntu-themes/ubuntu-artwork_14.04+14.04.20140410-0ubuntu1_all.deb Size: 7618 MD5sum: 156cd24ac2275d4488adba809786afbc SHA1: f4a91db89aefb367b2eb5cf22957c2cb9e539e91 SHA256: adc9bac10dd3367c3fa0021e7c2f4cd4bc54910680dbbd7308fa2be3d18aa74e Description: Ubuntu themes and artwork Homepage: https://launchpad.net/ubuntu-themes Description-md5: 0170465a4767bae89e6586555a311676 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-cloudimage-keyring Priority: optional Section: misc Installed-Size: 32 Maintainer: Ubuntu Developers Architecture: all Version: 2013.11.11 Filename: pool/main/u/ubuntu-cloudimage-keyring/ubuntu-cloudimage-keyring_2013.11.11_all.deb Size: 4504 MD5sum: a63030f040f58f4f9b6f3e4e34a5ccfb SHA1: d1a091781f5b6899a3f1325a61ecc675983fca61 SHA256: cd98b0addb68570ad27f58238811e602a97e399af811ce9a8827ede313670b3a Description: GnuPG keys of the Ubuntu Cloud Image builder Description-md5: 51c8d5c78b723f301ee9f0718a899a94 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ubuntu-defaults-builder Priority: optional Section: devel Installed-Size: 173 Maintainer: Ubuntu Developers Architecture: all Version: 0.49 Depends: perl, libjson-perl, dpkg-dev, xkb-data, debhelper (>= 7.0.50~), lsb-release, unity-common, livecd-rootfs (>= 2.75), desktop-file-utils Recommends: syslinux-themes-ubuntu, gfxboot-theme-ubuntu, memtest86+, genisoimage, syslinux Filename: pool/main/u/ubuntu-defaults-builder/ubuntu-defaults-builder_0.49_all.deb Size: 24292 MD5sum: 933843984cad21a7d265773046f3fcb2 SHA1: c9bfac79a34a698371fed0e9d2df88b75367aac3 SHA256: 49ac821de08b8478ceea97d9e85afe317ffaf35bd07448a99b40207132c875f0 Description: create Ubuntu customization packages Description-md5: add8d6d8ce217beb06d5c16ac3ff8caf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ubuntu-desktop Priority: optional Section: metapackages Installed-Size: 60 Maintainer: Ubuntu Developers Architecture: i386 Source: ubuntu-meta Version: 1.325 Depends: alsa-base, alsa-utils, anacron, at-spi2-core, baobab, bc, ca-certificates, checkbox-gui, dmz-cursor-theme, doc-base, eog, evince, file-roller, fonts-dejavu-core, fonts-freefont-ttf, foomatic-db-compressed-ppds, gedit, genisoimage, ghostscript-x, gnome-calculator, gnome-font-viewer, gnome-menus, gnome-power-manager, gnome-screenshot, gnome-session-canberra, gnome-system-log, gnome-system-monitor, gstreamer0.10-alsa, gstreamer0.10-plugins-base-apps, gstreamer0.10-pulseaudio, gstreamer1.0-alsa, gstreamer1.0-plugins-base-apps, gstreamer1.0-pulseaudio, gucharmap, gvfs-bin, inputattach, language-selector-gnome, libatk-adaptor, libnotify-bin, libpam-systemd, libsasl2-modules, libxp6, lightdm, memtest86+, nautilus, nautilus-sendto, notify-osd, openprinting-ppds, printer-driver-pnm2ppa, pulseaudio, rfkill, seahorse, software-center, software-properties-gtk, ssh-askpass-gnome, system-config-printer-gnome, ubuntu-artwork, ubuntu-drivers-common, ubuntu-extras-keyring, ubuntu-release-upgrader-gtk, ubuntu-session, ubuntu-settings, ubuntu-sounds, ubuntu-sso-client-qt, unity, unity-control-center, unity-greeter, unity-settings-daemon, unzip, update-manager, update-notifier, wireless-tools, wpasupplicant, xdg-user-dirs, xdg-user-dirs-gtk, xdiagnose, xkb-data, xorg, yelp, zenity, zip Recommends: acpi-support, activity-log-manager-control-center, aisleriot, app-install-data-partner, apport-gtk, avahi-autoipd, avahi-daemon, bluez, bluez-alsa, bluez-cups, branding-ubuntu, brasero, brltty, cheese, cups, cups-bsd, cups-client, cups-filters, deja-dup, empathy, example-content, firefox, fonts-droid, fonts-kacst-one, fonts-khmeros-core, fonts-lao, fonts-liberation, fonts-lklug-sinhala, fonts-nanum, fonts-sil-abyssinica, fonts-sil-padauk, fonts-takao-pgothic, fonts-thai-tlwg, fonts-tibetan-machine, gcc, gnome-accessibility-themes, gnome-bluetooth, gnome-disk-utility, gnome-mahjongg, gnome-orca, gnome-screensaver, gnome-sudoku, gnome-terminal, gnomine, gvfs-fuse, hplip, ibus, ibus-gtk3, ibus-pinyin, ibus-table, im-config, kerneloops-daemon, landscape-client-ui-install, laptop-detect, libgail-common, libnss-mdns, libpam-gnome-keyring, libproxy1-plugin-gsettings, libproxy1-plugin-networkmanager, libqt4-sql-sqlite, libreoffice-calc, libreoffice-gnome, libreoffice-impress, libreoffice-math, libreoffice-ogltrans, libreoffice-pdfimport, libreoffice-presentation-minimizer, libreoffice-style-human, libreoffice-writer, libwmf0.2-7-gtk, make, mousetweaks, nautilus-share, network-manager-gnome, network-manager-pptp, network-manager-pptp-gnome, onboard, overlay-scrollbar, pcmciautils, plymouth-theme-ubuntu-logo, policykit-desktop-privileges, printer-driver-c2esp, printer-driver-foo2zjs, printer-driver-min12xxw, printer-driver-ptouch, printer-driver-pxljr, printer-driver-sag-gdi, printer-driver-splix, pulseaudio-module-bluetooth, pulseaudio-module-x11, python3-aptdaemon.pkcompat, qt-at-spi, remmina, rhythmbox, rhythmbox-plugin-magnatune, shotwell, simple-scan, sni-qt, speech-dispatcher, telepathy-idle, thunderbird, thunderbird-gnome-support, totem, totem-mozilla, transmission-gtk, ttf-indic-fonts-core, ttf-punjabi-fonts, ttf-ubuntu-font-family, ubuntu-docs, unity-webapps-common, usb-creator-gtk, vino, whoopsie, xcursor-themes, xdg-utils, xterm, xul-ext-ubufox, xul-ext-unity, xul-ext-webaccounts Filename: pool/main/u/ubuntu-meta/ubuntu-desktop_1.325_i386.deb Size: 3756 MD5sum: fb6e1a2e4f09f3a78a245b1852ef8b64 SHA1: ba7b1b422528ae0906765735c7afb54ef49816d7 SHA256: 3bf525994df8788e5afc4cad0c5e3d796aa699afbea9d08c7c49cce662808877 Description: The Ubuntu desktop system Description-md5: 40ed9ed27fdbcbed784e2ebb1810b3e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-docs Priority: optional Section: text Installed-Size: 51183 Maintainer: Ubuntu Documentation Team Architecture: all Version: 14.04.3 Depends: yelp Filename: pool/main/u/ubuntu-docs/ubuntu-docs_14.04.3_all.deb Size: 1191478 MD5sum: aee65b026d9a05a712f4acb4e92f80c5 SHA1: 1e44bbd313fefaef14121add97d0511eb67e511d SHA256: b190789a0cda14f7dfc94bc0f638b32dd81734c5e88c93ee1154641da04df15c Description: Ubuntu Desktop Guide Homepage: https://launchpad.net/ubuntu-docs Description-md5: 4f49126cad7142c4004b76be52485aaf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-drivers-common Priority: optional Section: admin Installed-Size: 261 Maintainer: Ubuntu Developers Architecture: i386 Version: 1:0.2.91.4 Replaces: jockey-common, jockey-gtk, jockey-kde, nvidia-common (<< 1:0.2.46) Provides: jockey-common, jockey-gtk, jockey-kde, nvidia-common Depends: python3:any (>= 3.3.2-2~), python3, debconf (>= 0.5.00) | debconf-2.0, libc6 (>= 2.4), libdrm2 (>= 2.4.3), libpciaccess0 (>= 0.10.7), pciutils, python3-apt, python3-xkit, udev (>= 204-0ubuntu4~), usbutils, alsa-utils, kmod | module-init-tools Pre-Depends: dpkg (>= 1.15.7.2) Suggests: python3-aptdaemon.pkcompat Conflicts: jockey-common, jockey-gtk, jockey-kde, nvidia-common (<< 1:0.2.46) Breaks: nvidia-prime (<< 0.6) Filename: pool/main/u/ubuntu-drivers-common/ubuntu-drivers-common_0.2.91.4_i386.deb Size: 40478 MD5sum: cef7219de735c5e18d24efea34cbedfa SHA1: 24f06e6512b8ebbe5366a2413b863afec8b141f0 SHA256: 89381a4abf345821669cb97ea28cddb199ad1e26dc9dece54dd0da910a08caf5 Description: Detect and install additional Ubuntu driver packages Enhances: packagekit-system-interface Description-md5: de3e80d0ec34be991721f7a39da892ac Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ubuntu-extras-keyring Priority: optional Section: misc Installed-Size: 48 Maintainer: Michael Vogt Architecture: all Version: 2010.09.27 Depends: apt, gnupg Filename: pool/main/u/ubuntu-extras-keyring/ubuntu-extras-keyring_2010.09.27_all.deb Size: 3424 MD5sum: 60d06f11d5bf5d7a32b55864e82de686 SHA1: 0d3dd18a127325bf53e4a832f7619e4bd7956259 SHA256: c09541f0797fc3cd5a55397135533378ccaaf1b1aa7cde50bf6fbfc84024c5a0 Description: GnuPG keys of the Ubuntu extras archive Description-md5: 84bfa4e18a920b9d183b3ea71b160a8c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ubuntu-keyring Priority: important Section: misc Installed-Size: 46 Maintainer: Michael Vogt Architecture: all Version: 2012.05.19 Recommends: gpgv Filename: pool/main/u/ubuntu-keyring/ubuntu-keyring_2012.05.19_all.deb Size: 16738 MD5sum: 5ea5547e8f83b77d913b152a51d44edc SHA1: 407a0c22698566eaec921d8277e01ba0f9187787 SHA256: 315a58b14eec1e9252b2a2e294f2a4be1ccd043adb58bf5b7f56a538843ed504 Description: GnuPG keys of the Ubuntu archive Multi-Arch: foreign Description-md5: 50b1d2c58bfd75a47173455de2fe5cfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: minimal Package: ubuntu-location-service-doc Priority: optional Section: doc Installed-Size: 3876 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: all Source: location-service Version: 0.0.2+14.04.20140307-0ubuntu1 Recommends: ubuntu-location-service-examples Filename: pool/main/l/location-service/ubuntu-location-service-doc_0.0.2+14.04.20140307-0ubuntu1_all.deb Size: 1297714 MD5sum: 7f1f271a0a87b71e26158b9824a83609 SHA1: ae2e76746a018e6a9e7aa7d4758cf8b9570c9f03 SHA256: c45a61fe393ed4bc3fe08de115de0fc27fdfc32d32ca579509d20c827d5f5945 Description: location service aggregating position/velocity/heading Multi-Arch: foreign Homepage: http://launchpad.net/location-service Description-md5: d505cbdd5cbc5261ea8e3e133712c214 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ubuntu-location-service-examples Priority: optional Section: utils Installed-Size: 352 Maintainer: Ubuntu Developers Original-Maintainer: Thomas Voß Architecture: i386 Source: location-service Version: 0.0.2+14.04.20140307-0ubuntu1 Depends: libboost-program-options1.54.0, libc6 (>= 2.4), libdbus-cpp2 (>= 2.0.0+14.04.20140307), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.5), libubuntu-location-service0, ubuntu-location-service-doc Filename: pool/main/l/location-service/ubuntu-location-service-examples_0.0.2+14.04.20140307-0ubuntu1_i386.deb Size: 78004 MD5sum: f2859214688550ea3c0d58aa6dffeba5 SHA1: 6bca273f85d889da09865dc9478e9c8464f7420e SHA256: 666f8d0e82dffddb7c78288a2b5f56c1a24c1f809e2e0efa4889afb0ea3c0711 Description: location service aggregating position/velocity/heading Multi-Arch: same Homepage: http://launchpad.net/location-service Description-md5: b756d42b0076b6ca3830dfd71d1a3fc6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ubuntu-minimal Priority: important Section: metapackages Installed-Size: 60 Maintainer: Ubuntu Developers Architecture: i386 Source: ubuntu-meta Version: 1.325 Depends: adduser, apt, apt-utils, bzip2, console-setup, debconf, debconf-i18n, eject, gnupg, ifupdown, initramfs-tools, iproute2, iputils-ping, isc-dhcp-client, kbd, kmod, less, locales, lsb-release, makedev, mawk, net-tools, netbase, netcat-openbsd, ntpdate, passwd, procps, python3, resolvconf, rsyslog, sudo, tzdata, ubuntu-keyring, udev, upstart, ureadahead, vim-tiny, whiptail Filename: pool/main/u/ubuntu-meta/ubuntu-minimal_1.325_i386.deb Size: 2636 MD5sum: e4fe7bd9bbb784791de2e06aeb5b186f SHA1: 26e1530ca29867416df3cd94f385c09ae85b8525 SHA256: b6bad4ca14405bbbc3fd15d5cbe388d2deda91de0dffbfc8a05f22254f37ae70 Description: Minimal core of Ubuntu Description-md5: 790932f14543314e43c3705a3451df24 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: ubuntu-mono Priority: optional Section: gnome Installed-Size: 4133 Maintainer: Ubuntu Artwork Team Architecture: all Source: ubuntu-themes Version: 14.04+14.04.20140410-0ubuntu1 Depends: gnome-icon-theme, hicolor-icon-theme, humanity-icon-theme Filename: pool/main/u/ubuntu-themes/ubuntu-mono_14.04+14.04.20140410-0ubuntu1_all.deb Size: 173618 MD5sum: 4e12665e911f79cff575a62cf2b32234 SHA1: 6b2792b0d02aa6ff2aabcc20e8614fcdff98d9e8 SHA256: 6c54703b8589ac2bfd92ae59477b8cc0001008bf9b8096a22184288ba84130f5 Description: Ubuntu Mono Icon theme Homepage: https://launchpad.net/ubuntu-themes Description-md5: 66d920db5c91b0cc1657a52014f604b8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-release-upgrader-core Priority: standard Section: admin Installed-Size: 308 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-release-upgrader Version: 1:0.220.2 Replaces: update-manager (<< 1:0.165), update-manager-core (<< 1:0.165) Depends: python3, python3:any (>= 3.2~), python3-distupgrade (= 1:0.220.2) Recommends: libpam-modules (>= 1.0.1-9ubuntu3) Breaks: software-properties (<< 0.9.27), update-manager (<< 1:0.165), update-manager-core (<< 1:0.165) Filename: pool/main/u/ubuntu-release-upgrader/ubuntu-release-upgrader-core_0.220.2_all.deb Size: 23038 MD5sum: 1ed5d5c9ec36dbf1e8e66a854f7f93d3 SHA1: bd26449b33dc98f9972f4384421a2191fdbd9057 SHA256: ebf0db640c3548efdab9506e0dee9a8300224ce5b16c69143aa70569a13f3a93 Description: manage release upgrades Description-md5: 9b6ae3ba71aff05989e4c93c17227206 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: ubuntu-release-upgrader-gtk Priority: optional Section: admin Installed-Size: 217 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-release-upgrader Version: 1:0.220.2 Depends: ubuntu-release-upgrader-core (= 1:0.220.2), update-manager, python3-distupgrade (= 1:0.220.2), python3-dbus, python3-gi (>= 3.8), gir1.2-vte-2.90, gir1.2-gtk-3.0, gir1.2-webkit-3.0 Filename: pool/main/u/ubuntu-release-upgrader/ubuntu-release-upgrader-gtk_0.220.2_all.deb Size: 9316 MD5sum: d6409ad371a280f4592604b94f3ac3f0 SHA1: c63efe60eb95fb196b6b75b4bd17165c5247c919 SHA256: f12cf26a3d01d6d68885fbf203de8a86afd8d08c00178aae98d4891fcd01e2eb Description: manage release upgrades Description-md5: 0f775b1b3e524ee71526ea41b76d44cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ubuntu-session Priority: optional Section: gnome Installed-Size: 217 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: gnome-session Version: 3.9.90-0ubuntu12 Replaces: gnome-session (<< 3.9.90-0ubuntu8), ubuntu-settings (<< 14.04.4) Provides: x-session-manager Depends: unity-settings-daemon, gnome-session-bin (>= 3.9.90-0ubuntu12), gnome-session-bin (<< 3.10), gnome-session-common (= 3.9.90-0ubuntu12) Recommends: session-migration Conflicts: gnome-session (<< 3.9.90-0ubuntu8), ubuntu-settings (<< 14.04.4) Filename: pool/main/g/gnome-session/ubuntu-session_3.9.90-0ubuntu12_all.deb Size: 2620 MD5sum: c60b085285860e1fdfd9b4e900f3d7f0 SHA1: ce47081f71061516f18670659648caac2f43a4e6 SHA256: 7522ded74cbda6e0bc3e1e1a2d8d8a8139ac825a5776d2e6f558a0c70e5c00c6 Description: Ubuntu session Description-md5: a970e0a02ce764e3bd4e916b8713a51e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-settings Priority: optional Section: x11 Installed-Size: 40 Maintainer: Ubuntu Desktop Team Architecture: all Version: 14.04.5 Replaces: ubuntu-default-settings (<= 12.10.1) Depends: dconf-gsettings-backend | gsettings-backend, libglib2.0-bin Conflicts: ubuntu-default-settings (<= 12.10.1) Filename: pool/main/u/ubuntu-settings/ubuntu-settings_14.04.5_all.deb Size: 4422 MD5sum: 2a88e9d5411b833d9fe59523ebe2ab59 SHA1: 01b963e2ddd42e95d1f3527b1af63722350dc2c4 SHA256: c871ddc2a4dfa190d955e8e888feca2854d219c978125afd70927065946c263b Description: default settings for the Ubuntu desktop Description-md5: d323aeeccb784a54b1c845d23dcf7ea6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop Package: ubuntu-sounds Priority: optional Section: gnome Installed-Size: 396 Maintainer: Ubuntu Artwork Team Architecture: all Version: 0.13 Filename: pool/main/u/ubuntu-sounds/ubuntu-sounds_0.13_all.deb Size: 275964 MD5sum: fc236e7b57f1837c7744d74b0dceb483 SHA1: 5da9125745ddc0338a55697dbf3601abb846ecd8 SHA256: c6045754b81da430475aa1bb3bcb54576b97045753270faa4445124a24a897ae Description: Ubuntu's GNOME audio theme Description-md5: e6c6df93fbd40b265448be70e35e5927 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-sso-client Priority: extra Section: python Installed-Size: 76 Maintainer: Ubuntu Developers Architecture: all Version: 13.10-0ubuntu6 Depends: python, python-ubuntu-sso-client (= 13.10-0ubuntu6) Pre-Depends: dpkg (>= 1.15.7.2) Suggests: ubuntu-sso-client-gui Filename: pool/main/u/ubuntu-sso-client/ubuntu-sso-client_13.10-0ubuntu6_all.deb Size: 2768 MD5sum: 663b43b0bd09a59e32a5f0f951e556a4 SHA1: 0db475b4e9eb7b7c6d0071bd5e717fc6a8bce7da SHA256: 0b2f714099b1a75cf4d1da2903c42281c416a7666ce7657bbf03d184e0070e3f Description: Ubuntu Single Sign-On client Description-md5: 543a423eef794c2c13933888a7e9829f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: ubuntu-sso-client-qt Priority: extra Section: python Installed-Size: 3102 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-sso-client Version: 13.10-0ubuntu6 Replaces: ubuntu-sso-client (<< 2.99.4) Provides: ubuntu-sso-client-gui Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-imaging, python-qt4, python-qt4-dbus, python-ubuntu-sso-client (= 13.10-0ubuntu6), ubuntu-sso-client (= 13.10-0ubuntu6), ubuntuone-client-data Breaks: ubuntu-sso-client (<< 2.99.4) Filename: pool/main/u/ubuntu-sso-client/ubuntu-sso-client-qt_13.10-0ubuntu6_all.deb Size: 358904 MD5sum: 0fd059ae4c00788c16b7b3e5ae85e066 SHA1: a56b7f5e86fb6981251b0576f86e3d784bec4562 SHA256: 732ef1dd60f97598426afb4ef05c440d6fb96a4e34c4499df9b55d29dde367f9 Description: Ubuntu Single Sign-On client - Qt frontend Description-md5: bf6a998bfe3cde34edbd5ee047d3e873 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-standard Priority: standard Section: metapackages Installed-Size: 60 Maintainer: Ubuntu Developers Architecture: i386 Source: ubuntu-meta Version: 1.325 Depends: busybox-static, cpio, cron, dmidecode, dnsutils, dosfstools, ed, file, ftp, hdparm, info, iptables, language-selector-common, logrotate, lshw, lsof, ltrace, man-db, mime-support, parted, pciutils, popularity-contest, psmisc, rsync, strace, time, usbutils, wget Recommends: apparmor, apt-transport-https, bash-completion, command-not-found, friendly-recovery, iputils-tracepath, irqbalance, manpages, mlocate, mtr-tiny, nano, ntfs-3g, openssh-client, plymouth, plymouth-theme-ubuntu-text, ppp, pppconfig, pppoeconf, tcpdump, telnet, ufw, update-manager-core, uuid-runtime Filename: pool/main/u/ubuntu-meta/ubuntu-standard_1.325_i386.deb Size: 2686 MD5sum: f8649d9a6f5f70b100b925b88a9fd8ef SHA1: 419f661fbca017980020ec576806a3a71f81b421 SHA256: 290201090e36c3fc5a8fdc46eb754ee492317fd359673dd5e1ee32b0eff93549 Description: The Ubuntu standard system Description-md5: 129cec702d8a0005c808781d98183ffd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: ubuntu-system-service Priority: optional Section: admin Installed-Size: 101 Maintainer: Michael Vogt Architecture: all Version: 0.2.5build1 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-apt (>= 0.7.0), python-dbus, policykit-1 Breaks: gnome-settings-daemon (<< 3.6.4-0ubuntu8), indicator-datetime (<< 12.10.3daily13.03.07) Filename: pool/main/u/ubuntu-system-service/ubuntu-system-service_0.2.5build1_all.deb Size: 8812 MD5sum: 1e86ce5cab865d60d5765f0d8afcb24f SHA1: b7fc418f259c7bcdb8e262768e44c696f4229c83 SHA256: bb816e620f21ff400dc99ad253934ed7f83079e201dbccca45eded88a6e70219 Description: Dbus service to set various system-wide configurations Description-md5: 8cf38bb8f33a85cc1effac46d40ae28f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ubuntu-ui-toolkit-doc Priority: optional Section: doc Installed-Size: 4303 Maintainer: Ubuntu Developers Architecture: all Source: ubuntu-ui-toolkit Version: 0.1.46+14.04.20140408.1-0ubuntu1 Replaces: qt-components-ubuntu-doc Provides: qt-components-ubuntu-doc Depends: qtdeclarative5-doc-html, qtwebkit5-doc-html, qtsvg5-doc-html, qtscript5-doc-html, qtmultimedia5-doc-html, unity-action-doc Pre-Depends: dpkg (>= 1.15.6~) Conflicts: qt-components-ubuntu-doc Filename: pool/main/u/ubuntu-ui-toolkit/ubuntu-ui-toolkit-doc_0.1.46+14.04.20140408.1-0ubuntu1_all.deb Size: 744868 MD5sum: 75a4e0fe97db44ed0deb98e7d1350459 SHA1: 26aa887a647daa2b03d23f795b02bc4ba6efe03a SHA256: 910b63ed52dd206fd20385458c0f8bf15891286b8f2df90bda48b21932023035 Description: Qt Components for Ubuntu - documentation Multi-Arch: foreign Homepage: https://launchpad.net/ubuntu-ui-toolkit Description-md5: e922bd213d5331dc69e55474100c8536 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ubuntu-ui-toolkit-theme Priority: optional Section: libs Installed-Size: 442 Maintainer: Ubuntu Developers Architecture: i386 Source: ubuntu-ui-toolkit Version: 0.1.46+14.04.20140408.1-0ubuntu1 Replaces: qt-components-ubuntu Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/u/ubuntu-ui-toolkit/ubuntu-ui-toolkit-theme_0.1.46+14.04.20140408.1-0ubuntu1_i386.deb Size: 188246 MD5sum: eb60cdb9109d611a947daca2a0e3f486 SHA1: 177f7236dc5b48c695ca5786939778aa43b30087 SHA256: ff36cdbdbcae90e09e6591f73b84acf2da0bac68fb85eb5e5c24645109aa34f6 Description: Qt Components for Ubuntu - Ubuntu Theme Multi-Arch: foreign Homepage: https://launchpad.net/ubuntu-ui-toolkit Description-md5: b5751a7509e564edaeaf8baf445d5512 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-virt-server Priority: optional Section: metapackages Installed-Size: 26 Maintainer: Ubuntu MOTU developers Architecture: all Source: ubuntu-virt Version: 1.4 Depends: qemu-kvm, libvirt-bin, openssh-server Filename: pool/main/u/ubuntu-virt/ubuntu-virt-server_1.4_all.deb Size: 2344 MD5sum: c31d379e595ff358beffd8a3f16afe2e SHA1: be3b22cf5e3f75a3fe736404c5badd20d9599eb9 SHA256: d47e137b6b15dfc04b4b617b7615ee68774b6f0a620c50c4160a3ed14cc3d74e Description: Common packages necessary for hosting virtual machines Description-md5: 218b8beddebb8fa62919b04e4e72dd88 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host Package: ubuntu-wallpapers Priority: optional Section: metapackages Installed-Size: 3784 Maintainer: Ubuntu Artwork Team Architecture: all Version: 14.04.0.1-0ubuntu1 Depends: ubuntu-wallpapers-trusty Suggests: ubuntu-wallpapers-saucy, ubuntu-wallpapers-karmic, ubuntu-wallpapers-lucid, ubuntu-wallpapers-maverick, ubuntu-wallpapers-natty, ubuntu-wallpapers-oneiric, ubuntu-wallpapers-precise, ubuntu-wallpapers-quantal, ubuntu-wallpapers-raring Filename: pool/main/u/ubuntu-wallpapers/ubuntu-wallpapers_14.04.0.1-0ubuntu1_all.deb Size: 3304384 MD5sum: abbcd401023e6f10a23f3f8c16e068e2 SHA1: b55452d1e428af1c850ab0ea63edb90e8537fc4e SHA256: b325377275dee4c4f2abc0b184d660c184a047bcd2718053743542665035117e Description: Ubuntu Wallpapers Homepage: https://launchpad.net/ubuntu-wallpapers Description-md5: dee983dea3f6bb210ec03f8e97bf3e84 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntu-wallpapers-trusty Priority: optional Section: x11 Installed-Size: 8175 Maintainer: Ubuntu Artwork Team Architecture: all Source: ubuntu-wallpapers Version: 14.04.0.1-0ubuntu1 Filename: pool/main/u/ubuntu-wallpapers/ubuntu-wallpapers-trusty_14.04.0.1-0ubuntu1_all.deb Size: 8089032 MD5sum: 10aaad910eb87b228f637fb611755b28 SHA1: 8d68f0a2457a50d1095b5ec715f2e97c64ff3c65 SHA256: c4ccaac276ad96e4b69686c9dafa23b6a4bd1263a55f99aa2ec4ac13805a7c15 Description: Ubuntu 14.04 Wallpapers Homepage: https://launchpad.net/ubuntu-wallpapers Description-md5: d961f7bd015ace8f39e0eb8d65f69715 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntuone-client-data Priority: optional Section: libs Installed-Size: 500 Maintainer: Ubuntu Developers Architecture: all Version: 13.05-0ubuntu1 Replaces: ubuntuone-client (<< 4.1.90-0ubuntu3), ubuntuone-installer Breaks: ubuntuone-client (<< 4.1.90-0ubuntu3), ubuntuone-installer Filename: pool/main/u/ubuntuone-client-data/ubuntuone-client-data_13.05-0ubuntu1_all.deb Size: 269276 MD5sum: 375a8505c2358c601a67e63950d309b6 SHA1: 6f573c650e471976f3854b3e7b17a3f6ee614cda SHA256: 3060f7ea6d6b180b13b62f4565506869a941631f4dd98402305ac21f0dce40af Description: Data files for Ubuntu One Description-md5: e854a83610bd498ee92519c2fa67c004 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: ubuntuone-dev-tools Priority: optional Section: python Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Rodney Dawes Architecture: all Version: 13.10-0ubuntu2 Depends: python, pyflakes, python-coverage, python-twisted-core, python-twisted-web, python-ubuntuone-devtools (= 13.10-0ubuntu2) Filename: pool/main/u/ubuntuone-dev-tools/ubuntuone-dev-tools_13.10-0ubuntu2_all.deb Size: 7782 MD5sum: 3b726cf378e64bd62b2e0cca956d3d60 SHA1: 312328d72a6ac4925aa9042735d913a661298fba SHA256: 2f3f7dd2b901acb28b36b0fc784debd74f5deb854cd0e5dd24d4c3351b6ae123 Description: Ubuntu One development tools Homepage: http://launchpad.net/ubuntuone-dev-tools Description-md5: 9c13d2811564059601fb0290bc7cb623 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ucf Priority: important Section: utils Installed-Size: 229 Maintainer: Ubuntu Developers Original-Maintainer: Manoj Srivastava Architecture: all Version: 3.0027+nmu1 Depends: debconf (>= 1.5.19), coreutils (>= 5.91) Filename: pool/main/u/ucf/ucf_3.0027+nmu1_all.deb Size: 56328 MD5sum: 9f8e6182138346be7e16769b931e46b8 SHA1: 5fa724ce2e6fa446a91966b4cc1a585114112705 SHA256: 6a540d4b23468eaca26a285940c16f19454af7af85de3a903f3118775a95a577 Description: Update Configuration File(s): preserve user changes to config files Multi-Arch: foreign Description-md5: 83e3ff2859524c831253d938da348878 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: udev Priority: required Section: admin Installed-Size: 5126 Maintainer: Ubuntu Developers Original-Maintainer: Debian systemd Maintainers Architecture: i386 Source: systemd Version: 204-5ubuntu20 Replaces: systemd-services (<< 202-0ubuntu6) Depends: libacl1 (>= 2.2.51-8), libblkid1 (>= 2.19.1), libc6 (>= 2.17), libcgmanager0, libdbus-1-3 (>= 1.0.2), libkmod2 (>= 5~), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libselinux1 (>= 2.0.65), libudev1 (= 204-5ubuntu20), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), lsb-base (>= 3.0-6), util-linux (>= 2.16), procps Filename: pool/main/s/systemd/udev_204-5ubuntu20_i386.deb Size: 736896 MD5sum: 8d5af0161ffe6c549db1beef97e8a7f6 SHA1: 40d44996c4ac82bf47e11253630f82541b5de853 SHA256: 264c724e264d88f371df804b78ee8298e6b4a9980df866433de1ad8226bb114b Description: /dev/ and hotplug management daemon Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/systemd Description-md5: e875ddb09f46f1f7672af537f0c875ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: udhcpc Priority: optional Section: net Installed-Size: 70 Maintainer: Ubuntu Developers Original-Maintainer: Debian Install System Team Architecture: i386 Source: busybox Version: 1:1.21.0-1ubuntu1 Depends: busybox (>> 1:1.21.0) | busybox-static (>> 1:1.21.0) Filename: pool/main/b/busybox/udhcpc_1.21.0-1ubuntu1_i386.deb Size: 2522 MD5sum: a4c7d04e0f8e56060f4e7e72a692a492 SHA1: ceadc325e99166e6c850e36e42f39ad5d14fdab8 SHA256: bb7228b5b4306d421a45faba98e5b7e5f8d56bae65faf51b8a5ad800f5fb35b6 Description: Provides the busybox DHCP client implementation Homepage: http://www.busybox.net Description-md5: a69addd7be337317bf7e51287410c758 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: udisks2 Priority: optional Section: admin Installed-Size: 856 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Version: 2.1.3-1 Depends: libacl1 (>= 2.2.51-8), libatasmart4 (>= 0.13), libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 165), libpolkit-agent-1-0 (>= 0.99), libpolkit-gobject-1-0 (>= 0.101), libudisks2-0 (>= 2.0.91), udev, dbus, parted Recommends: policykit-1, dosfstools, ntfs-3g, eject, gdisk Suggests: xfsprogs, reiserfsprogs, exfat-utils, btrfs-tools, mdadm, cryptsetup-bin Filename: pool/main/u/udisks2/udisks2_2.1.3-1_i386.deb Size: 169926 MD5sum: f670fb32cbd31388e45a7387d3fadd1f SHA1: 42b902e9319038dce4b89045a147f6e343fda3e8 SHA256: 08cffb23cc61fdffc670a45a5d3341b58b849d3e1f19d064e1bd54860704afd3 Description: D-BUS service to access and manipulate storage devices Multi-Arch: foreign Homepage: http://www.freedesktop.org/wiki/Software/udisks Description-md5: fa7a6172e5ea699cb0cfa07f35578751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: udisks2-doc Priority: optional Section: doc Installed-Size: 3802 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: udisks2 Version: 2.1.3-1 Suggests: devhelp Filename: pool/main/u/udisks2/udisks2-doc_2.1.3-1_all.deb Size: 186948 MD5sum: 63498480dedd6a821d228f0c55d110f7 SHA1: 69d8dfcd3a0c7ef3701f0eabfc272313acbbcdf8 SHA256: 159c08c4ccdb946b5b5c5dd945206ad25ee686f3fddfd63472753f52834d7b7b Description: udisks2 documentation Homepage: http://www.freedesktop.org/wiki/Software/udisks Description-md5: abe2995ad264193cc84ba801988f1197 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ufw Priority: standard Section: admin Installed-Size: 731 Maintainer: Jamie Strandboge Architecture: all Version: 0.34~rc-0ubuntu2 Depends: debconf, iptables, ucf, python3:any (>= 3.3.2-2~), python3, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Suggests: rsyslog Filename: pool/main/u/ufw/ufw_0.34~rc-0ubuntu2_all.deb Size: 129328 MD5sum: 444f8ee6884b37d537d7ba30c66981ea SHA1: 95580644c0f0253d8c3429e35c3d2048f2520091 SHA256: 3d9137dbd341cd2797faac952ee08ceba56d42e5b2569624f066b7e6609d09c2 Description: program for managing a Netfilter firewall Homepage: https://launchpad.net/ufw Description-md5: 90e09f8ba6c08a5698b47f5da441b4a7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: uidmap Priority: optional Section: admin Installed-Size: 336 Maintainer: Ubuntu Developers Original-Maintainer: Shadow package maintainers Architecture: i386 Source: shadow Version: 1:4.1.5.1-1ubuntu9 Depends: libc6 (>= 2.7), libselinux1 (>= 1.32) Filename: pool/main/s/shadow/uidmap_4.1.5.1-1ubuntu9_i386.deb Size: 62928 MD5sum: cd1d96ca5a7216e71c0932eec7590781 SHA1: bbb4afcd28bb64bc41f7a4a671eedba6c4110465 SHA256: 0311d7de57a9d1df9a58b0af50796a8ce78887d872eefaa9f030e3ffeabeed0f Description: programs to help use subuids Homepage: http://pkg-shadow.alioth.debian.org/ Description-md5: 5a75630915e85aa203a9f7c82c737da4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: umockdev Priority: optional Section: devel Installed-Size: 132 Maintainer: Martin Pitt Original-Maintainer: Martin Pitt Architecture: i386 Version: 0.8.1-1 Depends: libc6 (>= 2.17), libglib2.0-0 (>= 2.32.0), libumockdev0 (>= 0.8) Pre-Depends: multiarch-support Filename: pool/main/u/umockdev/umockdev_0.8.1-1_i386.deb Size: 33732 MD5sum: e426c7aef0a70365c594b0e34b8b8bd1 SHA1: 856d75a06cf1d3598db4d798115ad211272b2f9a SHA256: 0e2500b10c70b060785197991223a74ddd61eb7aa38ff73241702d87a7ecb438 Description: record/mock hardware devices for bug reports and regression tests Homepage: https://github.com/martinpitt/umockdev/ Description-md5: 286db1dc230b4374b7e4132a74169450 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unattended-upgrades Priority: optional Section: admin Installed-Size: 252 Maintainer: Ubuntu Developers Original-Maintainer: Michael Vogt Architecture: all Version: 0.82.1ubuntu2 Depends: debconf (>= 0.5) | debconf-2.0, debconf, python3, python3-apt, apt-utils, apt, ucf, lsb-release, lsb-base (>= 3.2-14), xz-utils Suggests: bsd-mailx, mail-transport-agent Filename: pool/main/u/unattended-upgrades/unattended-upgrades_0.82.1ubuntu2_all.deb Size: 25508 MD5sum: d8552e1c8778d8be451b12f49ceb1314 SHA1: 96632a0b80db04734548ce4c46920b04e6080f29 SHA256: d2b1a4da5def0bc193f797e63bec8ec62a10d65979f8a2b2348621ba84d6b8d1 Description: automatic installation of security upgrades Description-md5: 13ffb6fcb282e3e2203472fa9b1a59f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: unicode-data Priority: optional Section: misc Installed-Size: 31239 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Version: 6.3.0-2 Filename: pool/main/u/unicode-data/unicode-data_6.3.0-2_all.deb Size: 6814588 MD5sum: d1ac71db74963e41baf3b8d7229d8139 SHA1: 49fcdf039b493a265f9efdc333150eb8311eb5ed SHA256: c8ee5335fca0b046bacc679492ad54f80eab8b9e2fde396831ed97c9523a51c2 Description: Property data for the Unicode character set Homepage: http://www.unicode.org/ Description-md5: 8ca2003962df648573522c5c3ca66f11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unifont Priority: optional Section: x11 Installed-Size: 6074 Maintainer: Ubuntu Developers Original-Maintainer: Paul Hardy Architecture: all Version: 1:6.3.20131221-1 Replaces: unifont-bin (<< 1:5.1.20080706-1) Depends: xfonts-unifont, ttf-unifont, xfonts-utils Suggests: unifont-bin Filename: pool/main/u/unifont/unifont_6.3.20131221-1_all.deb Size: 1390174 MD5sum: 953d59eec477911dd14d3100fdc6d309 SHA1: f7ee4784e3886aefae4161f43dde666e9e0f33ad SHA256: dbf45fe0ac1bafb3462cc37382edf096c8060a3fdbefee02b99725dbda1a51d1 Description: font with a glyph for each visible Unicode Plane 0 character Homepage: http://unifoundry.com Description-md5: bc02473fe540e171d0d8ad406484d498 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: unity Priority: optional Section: gnome Installed-Size: 6008 Maintainer: Ubuntu Developers Architecture: i386 Version: 7.2.0+14.04.20140416-0ubuntu1 Provides: indicator-renderer Depends: compiz-core, libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libbamf3-2 (>= 0.5.0), libc6 (>= 2.17), libcairo2 (>= 1.13.0~20140204), libdbusmenu-glib4 (>= 0.4.2), libdee-1.0-4 (>= 0.5.2), libgcc1 (>= 1:4.1.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libgl1-mesa-glx | libgl1, libglew1.10 (>= 1.10.0), libglib2.0-0 (>= 2.39.4), libgnome-desktop-3-7 (>= 3.2.0), libgtk-3-0 (>= 3.9.10), libindicator3-7 (>= 0.4.90), libjson-glib-1.0-0 (>= 0.12.0), libnotify4 (>= 0.7.0), libnux-4.0-0, libpam0g (>= 0.99.7.1), libpango-1.0-0 (>= 1.22.0), libpangocairo-1.0-0 (>= 1.14.0), libsigc++-2.0-0c2a (>= 2.0.2), libstartup-notification0 (>= 0.2), libstdc++6 (>= 4.8), libunity-core-6.0-9 (= 7.2.0+14.04.20140416-0ubuntu1), libunity-misc4 (>= 4.0.2), libunity-protocol-private0 (>= 7.1.4+14.04.20140210), libx11-6 (>= 2:1.2.99.901), libxext6, libxfixes3 (>= 1:5.0.1-1), libxi6 (>= 2:1.7.1.901), libxrender1, libzeitgeist-2.0-0 (>= 0.9.9), session-migration, python:any, compiz, compiz-core-abiversion-20140123, libnux-abiversion-20140307.0, compiz-plugins-default, libglib2.0-bin, nux-tools, dconf-cli, unity-asset-pool (>= 0.8.18), unity-greeter, bamfdaemon, unity-scope-home Recommends: unity-control-center, unity-scope-openclipart, unity-scope-audacious, unity-scope-tomboy, unity-lens-video, unity-scope-gourmet, unity-scope-calculator, unity-lens-files, unity-scope-musique, unity-scope-manpages, unity-scope-devhelp, unity-scope-yelp, unity-scope-zotero, unity-lens-music, unity-scope-virtualbox, unity-lens-friends, unity-scope-gmusicbrowser, unity-scope-chromiumbookmarks, unity-lens-photos, unity-scope-colourlovers, unity-scope-clementine, unity-scope-guayadeque, unity-scope-video-remote, unity-scope-texdoc, unity-lens-applications, unity-scope-firefoxbookmarks, unity-scope-gdrive, unity-scope-musicstores, indicator-appmenu, indicator-application, indicator-sound, indicator-bluetooth, indicator-datetime, indicator-keyboard, indicator-messages, indicator-printers, indicator-power, indicator-session, telepathy-indicator, hud Breaks: unity-lens-applications (<< 5.12.0-0ubuntu2), unity-lens-files (<< 5.10.0-0ubuntu2), unity-lens-music (<< 6.0.0), unity-lens-video (<< 0.3.6-0ubuntu2) Filename: pool/main/u/unity/unity_7.2.0+14.04.20140416-0ubuntu1_i386.deb Size: 1409684 MD5sum: b5d80b50ccf5806dcf0ef56f29d8f712 SHA1: 2e9662343a01f14d52bdbc446c489d561879ac8f SHA256: 3fccba16b2dad44ac8a9b08fd25f85a470ba5513beaef42c371434e783a5d9ce Description: Interface designed for efficiency of space and interaction. Homepage: https://launchpad.net/unity Description-md5: dec4e0049e561b260175a841cf8a6410 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-2d-dbg Priority: extra Section: debug Installed-Size: 123 Maintainer: Ubuntu Developers Architecture: all Source: unity Version: 7.2.0+14.04.20140416-0ubuntu1 Depends: unity Filename: pool/main/u/unity/unity-2d-dbg_7.2.0+14.04.20140416-0ubuntu1_all.deb Size: 4952 MD5sum: 83e98220f4e37c8dd6844aa93f1dc00d SHA1: c95de6846243c26b258c4bcacd2f32b86233a3c7 SHA256: d93fbaa42107ddbb7a3b8091100aa2f21bd5559aeba8ac4b02c75004111b6951 Description: transitional dummy package Homepage: https://launchpad.net/unity Description-md5: a06d380855fbe7cc75a9788e2760f757 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-action-doc Priority: optional Section: doc Installed-Size: 1161 Maintainer: Ubuntu Developers Original-Maintainer: Antti Kaijanmäki Architecture: all Source: unity-action-api Version: 1.1.0+14.04.20140304-0ubuntu1 Filename: pool/main/u/unity-action-api/unity-action-doc_1.1.0+14.04.20140304-0ubuntu1_all.deb Size: 409842 MD5sum: 159210a9316e8ac9e1f1c04c03ef971b SHA1: 5c34a92ef42b97ce4fdd83357916522eb056cffb SHA256: 64059ef5c4530aa5346e5081b35db7789384ef01892f1a0d0f4e2c0bac8f5234 Description: Unity Action API - documentation Homepage: https://launchpad.net/unity-action-api Description-md5: 0425b2775665716658ae3f527dae90fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-asset-pool Priority: optional Section: gnome Installed-Size: 520 Maintainer: Kenneth Wimer Architecture: all Version: 0.8.24daily13.06.10-0ubuntu1 Replaces: account-plugin-facebook (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-flickr (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-foursquare (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-google (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-icons (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-identica (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-sina (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-sohu (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-twitter (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-windows-live (<= 0.10bzr13.02.27-0ubuntu1), unity-scope-calculator, unity-scope-colourlovers, unity-scope-deviantart, unity-scope-gallica, unity-scope-github, unity-scope-googlenews, unity-scope-imdb, unity-scope-launchpad, unity-scope-manpages, unity-scope-openclipart, unity-scope-openweathermap, unity-scope-soundcloud, unity-scope-virtualbox, unity-scope-yahoostock, unity-scope-yelp, unity-webapps-common (<= 2.4.13-0ubuntu1) Provides: unity-icon-theme Depends: gnome-icon-theme, hicolor-icon-theme Breaks: account-plugin-facebook (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-flickr (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-foursquare (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-google (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-icons (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-identica (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-sina (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-sohu (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-twitter (<= 0.10bzr13.02.27-0ubuntu1), account-plugin-windows-live (<= 0.10bzr13.02.27-0ubuntu1), unity-webapps-common (<= 2.4.13-0ubuntu1) Filename: pool/main/u/unity-asset-pool/unity-asset-pool_0.8.24daily13.06.10-0ubuntu1_all.deb Size: 169262 MD5sum: acc40bc32a9b9110f79b3d81cefa6880 SHA1: eebe801549744fab82f7fe5db6bc8b33d40a04b5 SHA256: f89fe7a7dbc0de882bd8637b479d9c05c5a6255de54072d83b9d6ad4d65408dd Description: Unity Assets Pool Homepage: https://launchpad.net/unity-asset-pool Description-md5: 7a748f3e73c229d77eb2048991888278 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-control-center Priority: optional Section: gnome Installed-Size: 4064 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 14.04.3+14.04.20140410-0ubuntu1 Replaces: gnome-bluetooth (<< 3.4.0), gnome-control-center-unity, unity-control-center-datetime Provides: gnome-control-center-unity, unity-control-center-datetime Depends: session-migration, libaccountsservice0 (>= 0.6.34), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libcheese-gtk23 (>= 3.4.0), libcheese7 (>= 3.0.1), libcolord1 (>= 0.1.29), libcups2 (>= 1.6.0), libdbus-glib-1-2 (>= 0.78), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.23.0), libgl1-mesa-glx | libgl1, libglib2.0-0 (>= 2.37.3), libgnome-bluetooth11 (>= 3.4.0), libgnome-desktop-3-7 (>= 3.7.3), libgnome-menu-3-0 (>= 3.2.0.1), libgtk-3-0 (>= 3.10.0), libgtop2-7 (>= 2.22.3), libibus-1.0-5 (>= 1.5.1), libkrb5-3 (>= 1.8+dfsg), libnm-glib4 (>= 0.9.2.0+git201202091648.c24c4d4), libnm-gtk0 (>= 0.9.1.95), libnm-util2 (>= 0.9.1.90+git.20111206t233146.dff0d2a), libnotify4 (>= 0.7.3), libpango-1.0-0 (>= 1.18.0), libpangocairo-1.0-0 (>= 1.18.0), libpolkit-gobject-1-0 (>= 0.99), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), libpwquality1 (>= 1.1.0), libtimezonemap1 (>= 0.4.1), libunity-control-center1 (>= 14.04.0), libupower-glib1 (>= 0.9.2), libwacom2 (>= 0.7), libwebkitgtk-3.0-0 (>= 1.3.10), libx11-6, libxi6 (>= 2:1.2.99.4), libxml2 (>= 2.7.4), accountsservice, apg, desktop-file-utils, gkbd-capplet (>= 3.5.90), gnome-desktop3-data, gnome-icon-theme (>= 2.24), gnome-icon-theme-symbolic, gnome-menus (>= 2.12.0), unity-settings-daemon, gsettings-desktop-schemas (>= 3.5.91), gsettings-ubuntu-schemas (>= 0.0.1+14.04.20140224), ibus, indicator-bluetooth, indicator-datetime, indicator-keyboard, indicator-power, indicator-sound Recommends: cups-pk-helper, gnome-session-bin, ubuntu-system-service, ibus (>= 1.5.0), iso-codes, mousetweaks, policykit-1-gnome, libcanberra-pulse, system-config-printer-gnome, gnome-control-center-shared-data Suggests: gnome-screensaver | xscreensaver, gnome-user-guide | ubuntu-docs, gstreamer0.10-pulseaudio, libcanberra-gtk-module, x11-xserver-utils Conflicts: gnome-control-center (<< 1:3.6.3-0ubuntu50), gnome-control-center-unity, unity-control-center-datetime Breaks: compiz (<< 1:0.9.8+bzr330), gnome-bluetooth (<< 3.4.0), gnome-power-manager (<< 3.0), gnome-session (<< 3.0), libglib2.0-0 (<< 2.28.6-2), metacity (<< 1:2.34.2), unity (<< 6.2-0ubuntu2~) Filename: pool/main/u/unity-control-center/unity-control-center_14.04.3+14.04.20140410-0ubuntu1_i386.deb Size: 720676 MD5sum: 367af31c1308ed83956925a02d690a7f SHA1: 0a5684dd085e866d24fb1ecc005c59cef943990c SHA256: 5faa2baf8122973829ca3dc5a204c3cfdf5415b3c0d7171fc26f9104611eb78d Description: utilities to configure the GNOME desktop Description-md5: 841ec7130e7cda8d105ccf44ab60b8fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-control-center-dev Priority: optional Section: devel Installed-Size: 102 Maintainer: Ubuntu Desktop Team Architecture: all Source: unity-control-center Version: 14.04.3+14.04.20140410-0ubuntu1 Filename: pool/main/u/unity-control-center/unity-control-center-dev_14.04.3+14.04.20140410-0ubuntu1_all.deb Size: 72314 MD5sum: c792e7f6db8a152797f54b889f15da7c SHA1: 43c7c6e6932a3c176c816b22a04130636a62f260 SHA256: c88fa76d1bf87957166f2fd92df3baa19db30fce857d051d866ad2a78a68395f Description: utilities to configure the GNOME desktop Description-md5: ea55aa04a24ea847c61e4865c135347b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-control-center-signon Priority: optional Section: gnome Installed-Size: 454 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: gnome-control-center-signon Version: 0.1.7~+14.04.20140211.2-0ubuntu4 Replaces: gnome-control-center-signon Depends: unity-control-center, libaccount-plugin-1.0-0 (= 0.1.7~+14.04.20140211.2-0ubuntu4), libaccount-plugin-generic-oauth, libaccount-plugin-google, signon-keyring-extension, signond, libaccounts-glib0 (>= 1.4), libc6 (>= 2.3.6-6~), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.2.1), libunity-control-center1 (>= 14.04.0) Conflicts: gnome-control-center-signon Filename: pool/main/g/gnome-control-center-signon/unity-control-center-signon_0.1.7~+14.04.20140211.2-0ubuntu4_i386.deb Size: 119138 MD5sum: 9bdb197163dde4dfa2e536a7ee652e11 SHA1: d2ece47c34455a0b60e374421f6b053858b3530f SHA256: e0e913c79721982e664ce0c0ef947004a011b4ed83142f02d59d096bf3b19eeb Description: Unity Control Center extension for single signon Homepage: https://launchpad.net/online-accounts-gnome-control-center Description-md5: b482611832b525772bb3d05e8f84beb8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-greeter Priority: optional Section: x11 Installed-Size: 632 Maintainer: Ubuntu Developers Architecture: i386 Version: 14.04.9-0ubuntu1 Provides: lightdm-greeter Depends: dconf-gsettings-backend | gsettings-backend, libatk1.0-0 (>= 1.12.4), libc6 (>= 2.4), libcairo2 (>= 1.2.4), libcanberra0 (>= 0.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.7.90), libgtk-3-0 (>= 3.2.1), libido3-0.1-0 (>= 13.10.0daily13.06.19), libindicator3-7 (>= 0.4.90), liblightdm-gobject-1-0 (>= 1.4.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libpixman-1-0 (>= 0.30.0), libx11-6 Recommends: unity-settings-daemon, indicator-application, indicator-datetime, indicator-keyboard, indicator-power, indicator-session, indicator-sound, network-manager-gnome, lightdm Suggests: lightdm-remote-session-freerdp, lightdm-remote-session-uccsconfigure, remote-login-service Breaks: edubuntu-artwork (<< 12.01.1~) Filename: pool/main/u/unity-greeter/unity-greeter_14.04.9-0ubuntu1_i386.deb Size: 139200 MD5sum: 52a5a67bddb52defe52c7e51d7358f64 SHA1: 1dd59fda107b490c302af633c1eb00af7671245a SHA256: c89403ca7dacca0532e4b3c29bd074c7c00d3d797a4bc9e88d69589e3ca4a99f Description: Unity Greeter Homepage: https://launchpad.net/unity-greeter Description-md5: 9877c73111a0ce6340336dbc65020a9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-gtk-module-common Priority: optional Section: libs Installed-Size: 47 Maintainer: Ubuntu Desktop Team Architecture: all Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Depends: dconf-gsettings-backend | gsettings-backend Filename: pool/main/u/unity-gtk-module/unity-gtk-module-common_0.0.0+14.04.20140403-0ubuntu1_all.deb Size: 4268 MD5sum: ab22fd35b79727687d87e80de1ef6f6c SHA1: 3db02dfe8a4fdb04bca63e2437d4c6b746192dcf SHA256: 64664d795b76ca9dc0e0d4a15b70096d3b1328605801e50ebf8923abf82f7655 Description: Common files for GtkMenuShell D-Bus exporter Multi-Arch: foreign Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: a388f2f9c3b576a4a57a82c196e0c105 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-gtk2-module Priority: optional Section: libs Installed-Size: 63 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Replaces: appmenu-gtk Provides: appmenu-gtk Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.31.8), libgtk2.0-0 (>= 2.24.0), libunity-gtk2-parser0 (>= 0.0.0+14.04.20140403-0ubuntu1), libx11-6, unity-gtk-module-common (>= 0.0.0+14.04.20140403-0ubuntu1) Pre-Depends: multiarch-support, dpkg (>= 1.15.7.2) Conflicts: appmenu-gtk Filename: pool/main/u/unity-gtk-module/unity-gtk2-module_0.0.0+14.04.20140403-0ubuntu1_i386.deb Size: 8394 MD5sum: 3ebd7d1c13c0ce747ca9c79520d757f5 SHA1: 544f04bbba08dd585a499a456c040fba764991dd SHA256: 29e59e8580c6d5d750ac08d8f56cefcf787a983c901697d17732de621232d678 Description: GtkMenuShell D-Bus exporter Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 6fe65134935f8a101553517ad8e7624b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-gtk3-module Priority: optional Section: libs Installed-Size: 67 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: unity-gtk-module Version: 0.0.0+14.04.20140403-0ubuntu1 Replaces: appmenu-gtk3 Provides: appmenu-gtk3 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.31.8), libgtk-3-0 (>= 3.3.16), libunity-gtk3-parser0 (>= 0.0.0+14.04.20140403-0ubuntu1), libx11-6, unity-gtk-module-common (>= 0.0.0+14.04.20140403-0ubuntu1) Pre-Depends: multiarch-support, dpkg (>= 1.15.7.2) Conflicts: appmenu-gtk3 Filename: pool/main/u/unity-gtk-module/unity-gtk3-module_0.0.0+14.04.20140403-0ubuntu1_i386.deb Size: 8798 MD5sum: 586700dfe991633e97c361fb33ef3d95 SHA1: a417a6008656f2bc83f84a5f7aa88ec23541aab9 SHA256: 0f1d3ddbb240f54c9af85d15d8b796ba2f40ed140e17283fc1f02b3d6e418cc7 Description: GtkMenuShell D-Bus exporter Multi-Arch: same Homepage: https://code.launchpad.net/unity-gtk-module Description-md5: 1ba8399e464abb249a31e76873666566 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-applications Priority: optional Section: gnome Installed-Size: 532 Maintainer: Ubuntu Developers Architecture: i386 Version: 7.1.0+13.10.20131011-0ubuntu2 Depends: libc6 (>= 2.3.6-6~), libcolumbus1 (>= 1.0.0+13.10.20130814.1), libdb5.3, libdee-1.0-4 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.3), libgnome-menu-3-0 (>= 3.2.0.1), libstdc++6 (>= 4.2.1), libunity-protocol-private0 (>= 7.1.3+14.04.20131029.1), libunity9 (>= 7.1.0+13.10.20130828.1), libxapian22, libzeitgeist-1.0-1 (>= 0.3.2), dconf-gsettings-backend | gsettings-backend, unity-common-7.0 | unity-common (>= 7.0.0) Breaks: unity (<< 6.0.0) Filename: pool/main/u/unity-lens-applications/unity-lens-applications_7.1.0+13.10.20131011-0ubuntu2_i386.deb Size: 150078 MD5sum: 03e17e13a477ccbee12fcd23d0fd9131 SHA1: ba9e2e6296a1653da3f26d5db0ffd1f277b4c381 SHA256: f5141367883b9fe829ee6cf830b1bfd5021620eb4e80cab0a7998d62885dff2e Description: Application lens for unity Homepage: https://launchpad.net/unity-lens-applications Description-md5: 64b6580768b60728b82aa6db3048e181 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-files Priority: optional Section: gnome Installed-Size: 240 Maintainer: Ubuntu Developers Architecture: i386 Version: 7.1.0+13.10.20130920-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libdee-1.0-4 (>= 1.0.0), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.3), libunity9 (>= 7.0.0daily13.05.31ubuntu.unity.next), libzeitgeist-2.0-0 (>= 0.9.9), dconf-gsettings-backend | gsettings-backend Recommends: unity-scope-gdrive Breaks: unity (<< 6.0.0) Filename: pool/main/u/unity-lens-files/unity-lens-files_7.1.0+13.10.20130920-0ubuntu1_i386.deb Size: 59316 MD5sum: ff6d9783887e3f9f90c8dc9dda0ca688 SHA1: dde4046b0675f11e30c473301c8087356a2c512f SHA256: fefe2a187bc2ef8bd080a252c67c881c591d5522d39170cf58922137007794d7 Description: File lens for unity Homepage: https://launchpad.net/unity-lens-files Description-md5: d1d799872a8b58da7405893b84280bc2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-friends Priority: extra Section: misc Installed-Size: 140 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 0.1.3+14.04.20140317-0ubuntu1 Depends: libaccounts-glib0 (>= 1.0), libc6 (>= 2.3.6-6~), libdee-1.0-4 (>= 1.0.2), libfriends0 (>= 0.1.0), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.28.0), libunity9 (>= 7.0.9+13.10.20130723), friends (>= 0.1.3) Filename: pool/main/u/unity-lens-friends/unity-lens-friends_0.1.3+14.04.20140317-0ubuntu1_i386.deb Size: 22706 MD5sum: 9366ca16fd9de5e790cf80c1b0371f46 SHA1: b3cb8d095315e0851b9ef6da7dc3244d1e9f095e SHA256: c20fa5276f23a65964393f8f6cdebba65dc9a22a12cbaac7bc646b1d32e64777 Description: Friends scope for unity Homepage: https://launchpad.net/unity-lens-friends Description-md5: a7a0ff92b07f223b14f4cc734465c7c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-music Priority: optional Section: gnome Installed-Size: 227 Maintainer: Ubuntu Developers Architecture: i386 Version: 6.9.0+13.10.20131011-0ubuntu1 Depends: libc6 (>= 2.4), libdee-1.0-4 (>= 1.0.2), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.3), libgstreamer-plugins-base1.0-0 (>= 1.0.0), libgstreamer1.0-0 (>= 1.0.0), libsqlite3-0 (>= 3.5.9), libtdb1 (>= 1.2.7+git20101214), libunity9 (>= 7.0.0daily13.05.31ubuntu.unity.next) Recommends: unity-scope-musicstores Breaks: unity (<< 6.0) Filename: pool/main/u/unity-lens-music/unity-lens-music_6.9.0+13.10.20131011-0ubuntu1_i386.deb Size: 66368 MD5sum: e8b0f6a131a1416ab8e65351c9e6ac95 SHA1: b942772dd65d3a81ec9c1bb9b872a5985e42f5b4 SHA256: 28badd85fee1e6b39339271d59c66393797565f93b991eb9ca66c32cee21c12b Description: Music lens for unity Homepage: https://launchpad.net/unity-lens-music Description-md5: 67b302320475c10cd580e3ae23077992 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-photos Priority: optional Section: gnome Installed-Size: 260 Maintainer: Ubuntu Desktop Team Architecture: all Version: 1.0+14.04.20140318-0ubuntu1 Replaces: unity-lens-photo Depends: gir1.2-accounts-1.0, gir1.2-dee-1.0 (>= 1.2.5), gir1.2-gdata-0.0, gir1.2-signon-1.0, gir1.2-soup-2.4, gir1.2-unity-5.0 (>= 7), python3-httplib2, python3-oauthlib Recommends: account-plugin-flickr, account-plugin-google, account-plugin-facebook Breaks: unity-lens-photo Filename: pool/main/u/unity-lens-photos/unity-lens-photos_1.0+14.04.20140318-0ubuntu1_all.deb Size: 21854 MD5sum: afc5945d342c713b7772539efffa679d SHA1: 915dcd817ca5107f992c53b14aefd0f0b46ba02a SHA256: 28d9ede623b5d73e6acff407ae72641779810476e3a9d276e83acaad35760a02 Description: Photos lens for Unity Description-md5: 11dd73cc00b7e23f5e12f02e86be8866 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-lens-video Priority: optional Section: gnome Installed-Size: 131 Maintainer: Ubuntu Developers Architecture: i386 Version: 0.3.15+13.10.20130920-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libdee-1.0-4 (>= 0.5.2), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.3), libunity9 (>= 7.0.0daily13.05.31ubuntu.unity.next), libzeitgeist-1.0-1 (>= 0.3.14), unity-lens-music (>= 6.6.0) Recommends: unity-scope-video-remote Breaks: unity (<< 6.0.0) Filename: pool/main/u/unity-lens-video/unity-lens-video_0.3.15+13.10.20130920-0ubuntu1_i386.deb Size: 31768 MD5sum: c4a71ce5833484f8bd592117b6f7e9bd SHA1: 073c41ab7608494117bb1eaf0084c5088918cbf4 SHA256: 5cfe603c9b1bccbea1d0ed5c5f852748852591781fbb83ba22760881d82a703e Description: Unity Video lens Homepage: https://launchpad.net/unity-lens-video Description-md5: c3836456f570e65cc62b1f8cd7770f53 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-audacious Priority: optional Section: gnome Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130927.1-0ubuntu1 Depends: python3, python3-gi, python3-dbus, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Suggests: audacious Filename: pool/main/u/unity-scope-audacious/unity-scope-audacious_0.1+13.10.20130927.1-0ubuntu1_all.deb Size: 7664 MD5sum: c7f9f5a41b89d79d0fbf42c65e19f23d SHA1: 8be3eaa722cda834646b9fb6bf4361b373ef978b SHA256: a170b9654e6b170bf10fdd4aed7f01cd7788c1abc17c9ca1093c79cb42dd5a09 Description: Audacious scope for Unity Homepage: https://launchpad.net/unity-scope-audacious Description-md5: 4b89aa31823b9fa541d80636e1e46d3a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-calculator Priority: optional Section: gnome Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: David Callé Architecture: all Version: 0.1+14.04.20140328-0ubuntu1 Depends: python3, python3-gi, gnome-calculator, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-calculator/unity-scope-calculator_0.1+14.04.20140328-0ubuntu1_all.deb Size: 5822 MD5sum: 3e39f1d65927803e2f9fed747062e4f5 SHA1: 10245c5e6290c161bfd398b0c06a52ec90f90262 SHA256: fd731ced50c4624a64b51845fc5401b0fdd5952d1a68265b6cf30b5ab43bf8bb Description: Calculator scope for Unity Homepage: https://launchpad.net/unity-scope-calculator Description-md5: 8d93a11de0498325c6255d7deadca481 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-chromiumbookmarks Priority: optional Section: gnome Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-chromiumbookmarks/unity-scope-chromiumbookmarks_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6912 MD5sum: 0aa3f225f86fd5b5c69e39e75b7ff9c2 SHA1: b32e402166e53f9b1782f2cff1e5510693b79f92 SHA256: 7534bddda37a14455fa344fe412dcf6c751591e1139fde0c150cf45573e67ec8 Description: Chromium bookmarks scope for Unity Homepage: https://launchpad.net/unity-scope-chromiumbookmarks Description-md5: 50f71a985dcb604f770935a738d6eadd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-clementine Priority: optional Section: gnome Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0, python3-dbus Suggests: clementine Filename: pool/main/u/unity-scope-clementine/unity-scope-clementine_0.1+13.10.20130723-0ubuntu1_all.deb Size: 7268 MD5sum: 4b1e7c219982409177fd3faafeee297a SHA1: 0dc4f70a9ff46f13fdf2ae39e7608851a0030f4d SHA256: bfc145c79aa26b27f24841588d398641b3cf985b34192a708194fb0f84195cfd Description: Clementine scope for Unity Homepage: https://launchpad.net/unity-scope-clementine Description-md5: 35e975589039011884b350de4f393752 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-colourlovers Priority: optional Section: gnome Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: David Callé Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-colourlovers/unity-scope-colourlovers_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6900 MD5sum: 730078cd5617a0a5eb8fb5c3ea80a315 SHA1: a663aaca428b9ed087e07c3df4f2f229efaf5db1 SHA256: 662fe201a70ccb233399cc4ea65d44fd867157f7aa9d1bbb7a8418fb17fbfc9d Description: COLOURlovers scope for Unity Homepage: https://launchpad.net/unity-scope-colourlovers Description-md5: cd126a572c278592a2f60c5591f8b6b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-devhelp Priority: optional Section: gnome Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+14.04.20140328-0ubuntu1 Depends: python3, python3-gi, python3-lxml, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-devhelp/unity-scope-devhelp_0.1+14.04.20140328-0ubuntu1_all.deb Size: 6240 MD5sum: d5fff5b5be1b651450a4f6d50764b57f SHA1: fba064a052f5119a084e0deef1166cf22ebaf518 SHA256: 933ae67d4b0b59a4859edf27e2bd0041be9fe3ab13dc6225e20db12b61fb5870 Description: devhelp scope for Unity Homepage: https://launchpad.net/unity-scope-devhelp Description-md5: f4e7d29616d262cd36bcf50c7350d5e0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-firefoxbookmarks Priority: optional Section: gnome Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130809.1-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-firefoxbookmarks/unity-scope-firefoxbookmarks_0.1+13.10.20130809.1-0ubuntu1_all.deb Size: 6540 MD5sum: 8e7f0a2273163aba1ad4781b21e2f46e SHA1: 59aedf7f0724e2bdf0aa4cc5dcf59b1083f6d8b5 SHA256: a58f337bf9d13a0ea039bf180c89a9900342067197643606edc47bf11ae7fd09 Description: Firefox bookmarks scope for Unity Homepage: https://launchpad.net/unity-scope-firefoxbookmarks Description-md5: 0918b28dd49c38eae5c6af3ba66662e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-gdrive Priority: extra Section: gnome Installed-Size: 113 Maintainer: Ubuntu Developers Architecture: all Version: 0.9+13.10.20130723-0ubuntu1 Replaces: unity-lens-gdocs, unity-scope-gdocs (<< 0.8) Depends: python3, gir1.2-dee-1.0, python3-gi, gir1.2-unity-5.0 (>= 7.0), unity-scopes-runner, gir1.2-glib-2.0, gir1.2-accounts-1.0, gir1.2-signon-1.0, gir1.2-gdata-0.0, account-plugin-google Breaks: unity-lens-gdocs, unity-scope-gdocs (<< 0.8) Filename: pool/main/u/unity-scope-gdrive/unity-scope-gdrive_0.9+13.10.20130723-0ubuntu1_all.deb Size: 11648 MD5sum: 5bdea40858aa82f2e2c971f2707ceff7 SHA1: ed5349c686fdd41e9012e93180ca40eb0c08ac86 SHA256: 26f2e75ae13bef2fafe1a7db3b622fc8f546f8e568c4ed7876d1e75f8b135881 Description: Google Drive scope for Unity Homepage: https://launchpad.net/unity-scope-gdrive Description-md5: 0bef15047cc723076c239161c0a7a8a0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-gmusicbrowser Priority: optional Section: gnome Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, python3-dbus, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Suggests: gmusicbrowser Filename: pool/main/u/unity-scope-gmusicbrowser/unity-scope-gmusicbrowser_0.1+13.10.20130723-0ubuntu1_all.deb Size: 7142 MD5sum: 1018a97296478b842fb87dbc2ce22189 SHA1: 158411ec6dc7d0421cb4dbf65aed3369f6137de0 SHA256: ce99ca45db6ea193e453b3c4548e8e58e5e87d0c1efa51bd20bbf68f254d0ae0 Description: gmusicbrowser scope for Unity Homepage: https://launchpad.net/unity-scope-gmusicbrowser Description-md5: b417a2cc9d7cc59b5e21c7b0c3029ed1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-gourmet Priority: optional Section: gnome Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-gourmet/unity-scope-gourmet_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6784 MD5sum: 5a51803610fc525955dd3f86db18fd97 SHA1: fda956a90eabf47ac9eeff20da5541791b017c18 SHA256: d87f98e1ee4614ba41e8671478a64d52dabc3205ac4e43c84ad836c14715bc7d Description: Gourmet Recipe Manager scope for Unity Homepage: https://launchpad.net/unity-scope-gourmet Description-md5: 3a23d30982db905600e7d9af6bff40ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-guayadeque Priority: optional Section: gnome Installed-Size: 82 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130927.1-0ubuntu1 Depends: python3, python3-gi, python3-dbus, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Suggests: guayadeque Filename: pool/main/u/unity-scope-guayadeque/unity-scope-guayadeque_0.1+13.10.20130927.1-0ubuntu1_all.deb Size: 7776 MD5sum: ce0840776c33584b48fdbf3b7a2d95e9 SHA1: faec57b982a2fbaa69b0830e7d4d8d00f51a99b9 SHA256: bed351d98d33273003df9b6d38c44386d07517ef24907fc26a19ae80d53329d4 Description: Guayadeque scope for Unity Homepage: https://launchpad.net/unity-scope-guayadeque Description-md5: 0d86a5d6da27223c3ec2b4da1d3c5e26 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-home Priority: optional Section: gnome Installed-Size: 327 Maintainer: Ubuntu Developers Architecture: i386 Version: 6.8.2+14.04.20131029.1-0ubuntu1 Replaces: unity-lens-shopping, unity-scope-asklibreoffice, unity-scope-askubuntu, unity-scope-deviantart, unity-scope-gallica, unity-scope-github, unity-scope-googlenews, unity-scope-openweathermap, unity-scope-soundcloud, unity-scope-sumo, unity-scope-yahoostock Provides: unity-lens-shopping, unity-scope-asklibreoffice, unity-scope-askubuntu, unity-scope-deviantart, unity-scope-gallica, unity-scope-github, unity-scope-googlenews, unity-scope-openweathermap, unity-scope-soundcloud, unity-scope-sumo, unity-scope-yahoostock Depends: libc6 (>= 2.7), libdee-1.0-4 (>= 1.2.0daily12.12.05), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.31.8), libjson-glib-1.0-0 (>= 0.13.2), libsoup-gnome2.4-1 (>= 2.27.4), libsoup2.4-1 (>= 2.24.3), libunity-protocol-private0 (>= 7.1.3+14.04.20131029), libunity9 (>= 7.1.3+14.04.20131029), libuuid1 (>= 2.16), lsb-release, unity-scopes-master-default | unity-scopes-master Conflicts: unity-lens-shopping, unity-scope-asklibreoffice, unity-scope-askubuntu, unity-scope-deviantart, unity-scope-gallica, unity-scope-github, unity-scope-googlenews, unity-scope-openweathermap, unity-scope-soundcloud, unity-scope-sumo, unity-scope-yahoostock Filename: pool/main/u/unity-scope-home/unity-scope-home_6.8.2+14.04.20131029.1-0ubuntu1_i386.deb Size: 103510 MD5sum: 2765ba9fedc20ef076e5fc9f94f5ae8c SHA1: c3a489b8ca25805fa1fcc40b4da0e4286d617a32 SHA256: cbeaeb2f81309b56da49820f2d3f11198c999fd0c40a5a5c5dad1783ea8cf6e6 Description: Home scope that aggregates results from multiple scopes Homepage: https://launchpad.net/unity-scope-home Description-md5: 294a8f7bb2c43ac24034217199d75858 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-manpages Priority: optional Section: gnome Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 3.0+14.04.20140324-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0, gir1.2-gtk-3.0, man-db Filename: pool/main/u/unity-scope-manpages/unity-scope-manpages_3.0+14.04.20140324-0ubuntu1_all.deb Size: 5954 MD5sum: d8b8f00c000e433e28d9a1ed00048259 SHA1: 6ada20bc41d1bfd0c29f14656f713efe2fe32168 SHA256: 9e157ace803dcc1670cdf44a5a16918b5ad190922f88b9d400cd552ba3028f49 Description: Manual pages scope for Unity Homepage: https://launchpad.net/unity-scope-manpages Description-md5: 357e355c23cf839ca9389de8e3655728 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-musicstores Priority: optional Section: gnome Installed-Size: 193 Maintainer: Ubuntu Developers Architecture: i386 Source: unity-lens-music Version: 6.9.0+13.10.20131011-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libdee-1.0-4 (>= 0.5.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.37.3), libjson-glib-1.0-0 (>= 0.12.0), libnotify4 (>= 0.7.0), liboauth0 (>= 0.9.1), libsoup2.4-1 (>= 2.4.0), libunity9 (>= 7.0.0daily13.05.31ubuntu.unity.next) Filename: pool/main/u/unity-lens-music/unity-scope-musicstores_6.9.0+13.10.20131011-0ubuntu1_i386.deb Size: 51204 MD5sum: 6362903fb2147d088a3c3ab107e8e3f0 SHA1: 96caa0700875afb62d261212703b0ffe2ab19622 SHA256: 858f30644be1709b4bdb86a574e9395fe38b312a78f949c4219757d539bb6bf9 Description: Ubuntu One music store scope for unity Homepage: https://launchpad.net/unity-lens-music Description-md5: 60207a73362aedcd96371aa298d66214 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-musique Priority: optional Section: gnome Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0, python3-dbus Suggests: musique Filename: pool/main/u/unity-scope-musique/unity-scope-musique_0.1+13.10.20130723-0ubuntu1_all.deb Size: 7354 MD5sum: ae6a1f46a143e218f854a102eae8525d SHA1: cf8f13256dd48846fdb8a715afa7a87a6731994c SHA256: 097006f2e8148f85eb48122a6557b67e4abbda9fe3dac93c16069797f7e5f44f Description: Musique scope for Unity Homepage: https://launchpad.net/unity-scope-musique Description-md5: ccb12da918700e8b9e1459e20dc34abc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-openclipart Priority: optional Section: gnome Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: David Callé Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0, python3-feedparser Filename: pool/main/u/unity-scope-openclipart/unity-scope-openclipart_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6328 MD5sum: 70eb95ead7e5e09d1ae8c92062308afd SHA1: e3b9bbef37274e7ff24ba9618d1afe622b885c1c SHA256: 10939b658effc2f2557d14d0de734d9004112498ce94ae6ff659e6d6c7425848 Description: OpenClipArt scope for Unity Homepage: https://launchpad.net/unity-scope-openclipart Description-md5: 6bb953916026935117d740135f56e679 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-texdoc Priority: optional Section: gnome Installed-Size: 75 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+14.04.20140328-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-texdoc/unity-scope-texdoc_0.1+14.04.20140328-0ubuntu1_all.deb Size: 5926 MD5sum: c0b1ed2bb3f50f2d5727969af4882615 SHA1: a3340c97333ee65a01d30ab57a9db154ea479a0a SHA256: 238bb78a2609f7fa916213aa3245b35e40bd538758a1916fc423d8296d2e9292 Description: Texdoc scope for Unity Homepage: https://launchpad.net/unity-scope-texdoc Description-md5: 96500a084f9dc3c5502e9c1f58afc4e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-tomboy Priority: optional Section: gnome Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: David Callé Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Suggests: tomboy Filename: pool/main/u/unity-scope-tomboy/unity-scope-tomboy_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6462 MD5sum: b916308bbfc9c24ba3a2b314d4524ffc SHA1: aa11745cec7a65d134d3b47ec2e0773122e7f787 SHA256: 2a4ff88e4ec0aa4b1ab97c2b2cba0ca3339b675b62d4372a43340a277e449943 Description: Tomboy scope for Unity Homepage: https://launchpad.net/unity-scope-tomboy Description-md5: 07730f5e1647a02b16f71903ce0e85a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-video-remote Priority: optional Section: gnome Installed-Size: 111 Maintainer: Ubuntu Developers Architecture: i386 Source: unity-lens-video Version: 0.3.15+13.10.20130920-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libgee2 (>= 0.5.0), libglib2.0-0 (>= 2.27), libjson-glib-1.0-0 (>= 0.12.0), libsoup-gnome2.4-1 (>= 2.27.4), libsoup2.4-1 (>= 2.24.3), libunity9 (>= 7.0.9+13.10.20130723), libzeitgeist-1.0-1 (>= 0.3.14) Filename: pool/main/u/unity-lens-video/unity-scope-video-remote_0.3.15+13.10.20130920-0ubuntu1_i386.deb Size: 24218 MD5sum: e6437b1efce09eb9857c752067b7150b SHA1: 512db35ec8ab7c464c172173d3fd33ca8f1f4a47 SHA256: 1deac81b184f060977653500bfc223b987ab088bae924030945fdc4683eb8df2 Description: Remote videos engine Enhances: unity-lens-video Homepage: https://launchpad.net/unity-lens-video Description-md5: 5aced980cde9880d8d415e4952813f23 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-virtualbox Priority: optional Section: gnome Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: David Callé Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Replaces: unity-lens-vm Provides: unity-lens-vm Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Conflicts: unity-lens-vm Filename: pool/main/u/unity-scope-virtualbox/unity-scope-virtualbox_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6524 MD5sum: 34b71dc463c3ff3d8b174637a6f98e95 SHA1: 52ceadd61595e71b463a3951ab44fa99b8197d60 SHA256: 7f9e798d8beff7f47382fc76cd09125ba41615aba6b949f929d1d9e22b593eee Description: VirtualBox scope for Unity Homepage: https://launchpad.net/unity-scope-virtualbox Description-md5: 86d7702f416b56c757ed2108ed496f36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-yelp Priority: optional Section: gnome Installed-Size: 77 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Replaces: unity-lens-help Provides: unity-lens-help Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Conflicts: unity-lens-help Filename: pool/main/u/unity-scope-yelp/unity-scope-yelp_0.1+13.10.20130723-0ubuntu1_all.deb Size: 7100 MD5sum: 76b157dc464bdb1570229d66ec7aa9f7 SHA1: e590533454e0f278f3f55cd4cbfb524583057e3b SHA256: bd0e0db75321a301e573d66b872d50155507308f6faf922992a7c293741326e8 Description: Help scope for Unity Homepage: https://launchpad.net/unity-scope-yelp Description-md5: 5dc19f73d730c2ed4326dbdb8a80369d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scope-zotero Priority: optional Section: gnome Installed-Size: 78 Maintainer: Ubuntu Developers Original-Maintainer: Mark Tully Architecture: all Version: 0.1+13.10.20130723-0ubuntu1 Depends: python3, python3-gi, gir1.2-unity-5.0 (>= 7), gir1.2-dee-1.0 (>= 1.2.5), unity-scopes-runner, gir1.2-glib-2.0 Filename: pool/main/u/unity-scope-zotero/unity-scope-zotero_0.1+13.10.20130723-0ubuntu1_all.deb Size: 6604 MD5sum: e7ec3e6819b68049a8df5b2b3b752809 SHA1: 0aa23f51dd2908b15d7b2e5c15387dc1f4f9788b SHA256: 2e5a8e76697a14b2f06c9522139de4d14138db83fb4b8fdbf21d9db31f6224a0 Description: Zotero scope for Unity Homepage: https://launchpad.net/unity-scope-zotero Description-md5: 4717cab06b3ce45071dea89e37046803 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scopes-master-default Priority: optional Section: gnome Installed-Size: 54 Maintainer: Ubuntu Developers Architecture: all Source: unity-scope-home Version: 6.8.2+14.04.20131029.1-0ubuntu1 Replaces: unity-scope-home (<< 6.8.1) Provides: unity-scopes-master Filename: pool/main/u/unity-scope-home/unity-scopes-master-default_6.8.2+14.04.20131029.1-0ubuntu1_all.deb Size: 6686 MD5sum: f8a724a473582e6e130dd93ad344c5b3 SHA1: a86c30df724afb32cbd1a3bb62b6abc056289fd1 SHA256: dd75d962e52f80ae0b674b193a999913b66a37a718f8f3101d2efb28c938dfc9 Description: Home scope that aggregates results from multiple scopes Homepage: https://launchpad.net/unity-scope-home Description-md5: 46030d6e70539b545984910ffe58efe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-scopes-runner Priority: optional Section: gnome Installed-Size: 53 Maintainer: Ubuntu Core Developers Architecture: all Source: libunity Version: 7.1.4+14.04.20140210-0ubuntu1 Filename: pool/main/libu/libunity/unity-scopes-runner_7.1.4+14.04.20140210-0ubuntu1_all.deb Size: 4158 MD5sum: 39bbf07526735936ca285d541ca28b96 SHA1: bc7ad6b81ed0658ae48b4cfe52071a114c0d00f8 SHA256: 7840a620adc6d322b739f3fab03a448f4d0e74aec56f2f99be8a713664e14b8d Description: desktop runner for misceallenous scopes Homepage: https://launchpad.net/libunity Description-md5: 08e02b02866b8cee0b5d062879555ad8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-services Priority: optional Section: gnome Installed-Size: 214 Maintainer: Ubuntu Developers Architecture: i386 Source: unity Version: 7.2.0+14.04.20140416-0ubuntu1 Depends: libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 1.12.4), libc6 (>= 2.7), libdbus-1-3 (>= 1.0.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.39.1), libgtk-3-0 (>= 3.9.10), libido3-0.1-0 (>= 13.10.0daily13.06.19), libindicator3-7 (>= 0.4.90), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libupstart1 (>= 1.9.1), libx11-6, upstart Filename: pool/main/u/unity/unity-services_7.2.0+14.04.20140416-0ubuntu1_i386.deb Size: 29218 MD5sum: d03ce7a8300d280696626257a33994e3 SHA1: b02fdaf008339eeb4233c3161e66590446034356 SHA256: bc90c03e0f4e732e55381bb90403b631c34f90b2d1ad1fef301a02db769d4bcf Description: Services for the Unity interface Homepage: https://launchpad.net/unity Description-md5: 739e58e2989afe568092890f45df8b83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-settings-daemon Priority: optional Section: gnome Installed-Size: 2468 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 14.04.0+14.04.20140414-0ubuntu1 Depends: libaccountsservice0 (>= 0.6.35-0ubuntu7), libasound2 (>= 1.0.16), libc6 (>= 2.7), libcairo2 (>= 1.10.0), libcanberra-gtk3-0 (>= 0.25), libcanberra0 (>= 0.2), libcolord1 (>= 0.1.31), libcups2 (>= 1.6.0), libfontconfig1 (>= 2.9.0), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgnome-desktop-3-7 (>= 3.7.90), libgtk-3-0 (>= 3.7.10), libgudev-1.0-0 (>= 146), libibus-1.0-5 (>= 1.5.1), liblcms2-2 (>= 2.2+git20110628), libnotify4 (>= 0.7.3), libpango-1.0-0 (>= 1.22.0), libpulse-mainloop-glib0 (>= 1:0.99.1), libpulse0 (>= 1:0.99.1), librsvg2-2 (>= 2.36.2), libupower-glib1 (>= 0.9.0), libwacom2 (>= 0.7), libx11-6, libxext6, libxfixes3 (>= 1:4.0.1), libxi6 (>= 2:1.2.99.4), libxkbfile1, libxtst6, dconf-gsettings-backend | gsettings-backend, accountsservice (>= 0.6.34), gsettings-desktop-schemas (>= 3.7.2.1), nautilus-data (>= 2.91.3-1), gnome-settings-daemon-schemas (>= 3.8), gnome-settings-daemon-schemas (<< 3.10), gsettings-ubuntu-schemas (>= 0.0.1+14.04.20140224) Recommends: ibus (>= 1.5.0), pulseaudio, systemd-services Suggests: x11-xserver-utils, gnome-screensaver, metacity | x-window-manager Breaks: banshee (<< 0.13.2+dfsg-7), gnome-color-manager (<< 3.0), gnome-control-center (<< 1:3.6.3-0ubuntu35), gnome-screensaver (<< 2.28.0), gnome-session (<< 3.9.90-0ubuntu6), indicator-datetime (<< 12.10.3daily13.03.26), rhythmbox (<< 0.11.5), totem (<< 2.22.0), unity (<< 7.1.2+14.04.20140214.1-0ubuntu1), unity-greeter (<< 0.2.1-0ubuntu1) Filename: pool/main/u/unity-settings-daemon/unity-settings-daemon_14.04.0+14.04.20140414-0ubuntu1_i386.deb Size: 494620 MD5sum: 986d5c45d059a02c8609a19d870250c2 SHA1: c89fdff61f540f8a5dd97cb6ceffab6883684a25 SHA256: a027f0865ac2da508f665ffccad0924673d1ac3cdb2c49a84e5acb810bff6b05 Description: daemon handling the Unity session settings Description-md5: aea2dacf99fdb4c9af627c901ebc2b15 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-settings-daemon-dev Priority: optional Section: gnome Installed-Size: 124 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: unity-settings-daemon Version: 14.04.0+14.04.20140414-0ubuntu1 Depends: libdbus-glib-1-dev (>= 0.74), libglib2.0-dev (>= 2.35.3) Filename: pool/main/u/unity-settings-daemon/unity-settings-daemon-dev_14.04.0+14.04.20140414-0ubuntu1_i386.deb Size: 37888 MD5sum: f961a493be7c545485c5c5bd5425c6e1 SHA1: 49cf1e0ce8dc3a3aa681c40cfcac720a7bc082df SHA256: b2c21d9e17f559d8c41f5c76acf743a64ade20441f7c39b8bb84810591b0cf5c Description: Headers for building applications communicating with unity-settings-daemon Description-md5: 49b4ff9931ee8b6c680c024f7fcce33b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-voice-service Priority: optional Section: gnome Installed-Size: 108 Maintainer: Ubuntu Developers Original-Maintainer: Pete Woods Architecture: i386 Source: unity-voice Version: 0.1+14.04.20140304-0ubuntu1 Depends: sphinx-voxforge-hmm-en, sphinx-voxforge-lm-en, libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libpocketsphinx1, libqt5core5a (>= 5.2.0), libqt5dbus5 (>= 5.0.2), libsphinxbase1 (>= 0.4.1), libstdc++6 (>= 4.1.1) Filename: pool/main/u/unity-voice/unity-voice-service_0.1+14.04.20140304-0ubuntu1_i386.deb Size: 23448 MD5sum: 498f7cbe3d17dec5d93a27ff95582274 SHA1: ab3312eb86d549e4712f5f2f41e62e620eacedf5 SHA256: 922ccc7fd5da06fbc714c4c5a06a22b5be53a43aebca0aaac8dae9a127946d55 Description: Voice recognition service for unity Multi-Arch: same Homepage: https://launchpad.net/unity-voice Description-md5: 94661cbe700749c738ec35dc6e483982 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-webapps-common Priority: optional Section: gnome Installed-Size: 130 Maintainer: Ubuntu Developers Architecture: all Source: webapps-applications Version: 2.4.17+14.04.20140416-0ubuntu1 Replaces: unity-webapps Depends: gir1.2-glib-2.0, python, unity-asset-pool (>> 0.8.24daily12.12.05-0ubuntu1), unity-webapps-service (>= 2.3.8-0ubuntu3), xdg-utils, session-migration Suggests: xul-ext-unity (>= 0.3.1) | unity-chromium-extension Breaks: unity-webapps, unity-webapps-amazon, unity-webapps-angrybirds, unity-webapps-cuttherope, unity-webapps-facebookapps, unity-webapps-googlereader, unity-webapps-lordofultima, unity-webapps-tiberiumalliances Filename: pool/main/w/webapps-applications/unity-webapps-common_2.4.17+14.04.20140416-0ubuntu1_all.deb Size: 10882 MD5sum: 82b9fbb453b617d0a03ac896f7e17056 SHA1: c0f964f602a847ba52f2b0d1576977fa58d8e405 SHA256: b727fbd30cb603db3b04a29f01bc634857dbcaa8afbf3058d8eeae48a0962b40 Description: Unity WebApp integration scripts Homepage: https://launchpad.net/webapps-applications Description-md5: 6239cf9f51a5f55b69feac74e29c76c0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-webapps-qml Priority: optional Section: gnome Installed-Size: 640 Maintainer: Ubuntu Desktop Team Architecture: i386 Version: 0.1+14.04.20140408-0ubuntu1 Depends: libqt5webkit5-qmlwebkitplugin, liboxideqt-qmlplugin (>= 1.0), qtdeclarative5-qtquick2-plugin, qtdeclarative5-unity-action-plugin, qtdeclarative5-ubuntu-ui-toolkit-plugin, qtdeclarative5-accounts-plugin, libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.20.0), libmessaging-menu0 (>= 12.10.2), libnotify4 (>= 0.7.0), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.0.2), libstdc++6 (>= 4.1.1), libunity9 (>= 4.0.0) Suggests: qtdeclarative5-ubuntu-content0.1 Filename: pool/main/u/unity-webapps-qml/unity-webapps-qml_0.1+14.04.20140408-0ubuntu1_i386.deb Size: 131914 MD5sum: c382434a7cb70866d0f3b4919e27d8a6 SHA1: d3fd895a649d3adb71dc3a494241571b2987b6c5 SHA256: 42d75074108fc0185ccea8ee313ca40357cb6ff74620f59e5f4dd410121814f3 Description: Unity Webapps QML component Homepage: https://launchpad.net/unity-webapp-qml Description-md5: 1e74fa6c3286383cd2cf95b0cfe337a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unity-webapps-qml-doc Priority: optional Section: doc Installed-Size: 183 Maintainer: Ubuntu Desktop Team Architecture: all Source: unity-webapps-qml Version: 0.1+14.04.20140408-0ubuntu1 Suggests: unity-webapps-qml-examples Filename: pool/main/u/unity-webapps-qml/unity-webapps-qml-doc_0.1+14.04.20140408-0ubuntu1_all.deb Size: 14672 MD5sum: 1c3ef38560ab37352658e4d34ca1901c SHA1: 5813929e19a380dc361a891f056ba8ad14d77d8a SHA256: 36f05e124a9409130dbd71b5700fffadfce4b8548a8ab8d3bbee649ee20c4039 Description: Documentation for Unity Webapps QML - documentation Homepage: https://launchpad.net/unity-webapp-qml Description-md5: 62c935a6f4b10ac91afb30b8e8d762e8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-webapps-qml-examples Priority: optional Section: libs Installed-Size: 127 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: unity-webapps-qml Version: 0.1+14.04.20140408-0ubuntu1 Depends: qtdeclarative5-window-plugin, qmlscene, unity-webapps-qml (>= 0.1+14.04.20140408-0ubuntu1) Filename: pool/main/u/unity-webapps-qml/unity-webapps-qml-examples_0.1+14.04.20140408-0ubuntu1_i386.deb Size: 13150 MD5sum: 5e4dca531aa515a04dbfdb6dcf0efa44 SHA1: 079089e58b5b2dd688ce8d975558a0b6c4025779 SHA256: 8fb365b1aa0179eab6198dfcf03fc3c0dc474e4e73234656f7ee460d62d5d1e7 Description: Example usage of Unity Webapps QML component Homepage: https://launchpad.net/unity-webapp-qml Description-md5: 235b7b4ac2bb4a797af08154ff31ba36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unity-webapps-service Priority: optional Section: gnome Installed-Size: 456 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: libunity-webapps Version: 2.5.0~+14.04.20140409-0ubuntu1 Depends: geoclue-ubuntu-geoip | geoclue-provider, webapp-container, dconf-gsettings-backend | gsettings-backend, libc6 (>= 2.3.6-6~), libdbusmenu-glib4 (>= 0.4.2), libgdk-pixbuf2.0-0 (>= 2.22.0), libgeoclue0 (>= 0.11.1), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libjson-glib-1.0-0 (>= 0.12.0), libmessaging-menu0 (>= 12.10.2), libnotify4 (>= 0.7.0), libsoup2.4-1 (>= 2.4.0), libsqlite3-0 (>= 3.5.9), libtelepathy-glib0 (>= 0.11.3), libunity-webapps0 (>= 2.3.1), libunity9 (>= 5.0.0), libwnck-3-0 (>= 2.91.6) Filename: pool/main/libu/libunity-webapps/unity-webapps-service_2.5.0~+14.04.20140409-0ubuntu1_i386.deb Size: 81012 MD5sum: 9cd509aacb35bb41fe797997b675e65a SHA1: e234d8eddf36fb46e1e3726198abb493933365fd SHA256: 705fe19037dfb9a0d95929d7b9a0e6219c9f718cbccfc2996dee0d807370b491 Description: Service for Web Apps integration with the Unity desktop Homepage: https://launchpad.net/libunity-webapps Description-md5: b150af47b4181bd5946d75d2a40a22ae Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: unixodbc Priority: optional Section: libs Installed-Size: 109 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Version: 2.2.14p2-5ubuntu5 Depends: libc6 (>= 2.4), libreadline6 (>= 6.0), odbcinst1debian2 (>= 2.2.11-3), libodbc1 (>= 2.2.14p2-3) Conflicts: unixodbc-bin (<< 2.2.4-1) Filename: pool/main/u/unixodbc/unixodbc_2.2.14p2-5ubuntu5_i386.deb Size: 18824 MD5sum: 5c3f6752578625e79ea8e3130b603775 SHA1: f7b6b1701d4e57390f5a9914d63871d36ffd719f SHA256: b82064f90faa36b2a2e32371879de5c84318b5d20c42a73889c4162028e4f961 Description: Basic ODBC tools Multi-Arch: foreign Homepage: http://www.unixodbc.org/ Description-md5: dbef25e3cf8e980a394982ef6927a9ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntustudio-audio Package: unixodbc-dev Priority: extra Section: devel Installed-Size: 1378 Maintainer: Ubuntu Developers Original-Maintainer: Steve Langasek Architecture: i386 Source: unixodbc Version: 2.2.14p2-5ubuntu5 Depends: unixodbc (= 2.2.14p2-5ubuntu5), odbcinst1debian2 (= 2.2.14p2-5ubuntu5), libltdl3-dev Conflicts: libiodbc2-dev, remembrance-agent (<< 2.11-4) Filename: pool/main/u/unixodbc/unixodbc-dev_2.2.14p2-5ubuntu5_i386.deb Size: 210720 MD5sum: f995292f6ef8cebbcf59d30a811e5dc5 SHA1: cae8f931ea9aa0c79cd3e7d4f8c5aabc3d870475 SHA256: 3be7a14e0d9cc399c1c83d1955b0f6186fe4bb175b3a0e3fb718c66a690cf7a0 Description: ODBC libraries for UNIX (development files) Homepage: http://www.unixodbc.org/ Description-md5: 810ff6350f7d3725bcea408feaf73610 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: uno-libs3 Priority: optional Section: libs Installed-Size: 2239 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice (1:4.2.3~rc3-0ubuntu2) Version: 4.2.3~rc3-0ubuntu2 Replaces: ure (<< 4.0.3-2) Depends: libc6 (>= 2.15), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6) Breaks: ure (<< 4.1.2~) Filename: pool/main/libr/libreoffice/uno-libs3_4.2.3~rc3-0ubuntu2_i386.deb Size: 606270 MD5sum: 19feaf3950a9c45591350a2eddb97e12 SHA1: ee7fecca8d6abea89575529ab75274a355057425 SHA256: b4e22acb2d900e3dc52bd6f87d6c7894f6fef1ce05fd1c6c317b4f4d58b9ffdb Description: LibreOffice UNO runtime environment -- public shared libraries Homepage: http://www.libreoffice.org Description-md5: c32efa4eb8b817c0d411d2ca5f54514b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: uno-libs3-dbg Priority: extra Section: libdevel Installed-Size: 14831 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice (1:4.2.3~rc3-0ubuntu2) Version: 4.2.3~rc3-0ubuntu2 Replaces: ure-dbg (<< 4.0.3-2) Depends: uno-libs3 (= 4.2.3~rc3-0ubuntu2) Filename: pool/main/libr/libreoffice/uno-libs3-dbg_4.2.3~rc3-0ubuntu2_i386.deb Size: 3687412 MD5sum: 703978f216bd10d93ecd14057a0d60bd SHA1: c032d6b519c6d952231617ce2d3363db51d19add SHA256: effbb3761609c69488a9487827c44c5024c252701191f71b27f163a69c56fa2a Description: LibreOffice UNO runtime environment -- public shared library debug symbols Homepage: http://www.libreoffice.org Description-md5: d54b5319764bd01ea24fe172e068cee5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: unzip Priority: optional Section: utils Installed-Size: 379 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 6.0-9ubuntu1 Replaces: unzip-crypt (<< 5.41) Depends: libbz2-1.0, libc6 (>= 2.4) Suggests: zip Conflicts: unzip-crypt (<< 5.41) Filename: pool/main/u/unzip/unzip_6.0-9ubuntu1_i386.deb Size: 182662 MD5sum: 061ff08c1494eac0325c35aa5e915818 SHA1: fb5b93e4e2b5011ea39e69b3ed8fdb4c8021eb9a SHA256: 87b2ae895604592c3c636c976e9f52f4c4fefc021aa0cfe92ac86b9b5c7eeebc Description: De-archiver for .zip files Multi-Arch: foreign Homepage: http://www.info-zip.org/UnZip.html Description-md5: b83e2b495da5d292f3fe6ab67b088c47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: update-inetd Priority: optional Section: admin Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Serafeim Zanikolas Architecture: all Version: 4.43 Replaces: netbase (<< 4.27) Depends: debconf (>= 0.5) | debconf-2.0, libfile-temp-perl, libfile-copy-recursive-perl Breaks: netbase (<< 4.27) Filename: pool/main/u/update-inetd/update-inetd_4.43_all.deb Size: 19208 MD5sum: 6e166b2422a7dff8154cdd3fdf1e0af7 SHA1: d757fed82ee72ed0979f7306bff37616c91ac0ee SHA256: 333ff26154674df689b09567f6af4da99b826ba5e57c1f09fe1923acac4e7619 Description: inetd configuration file updater Multi-Arch: foreign Description-md5: 9a09f5c7959d1200217cfebee811fa42 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, samba-server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: update-manager Priority: optional Section: gnome Installed-Size: 1059 Maintainer: Ubuntu Developers Architecture: all Version: 1:0.196.11 Depends: python3:any (>= 3.3.2-2~), python3, dconf-gsettings-backend | gsettings-backend, update-manager-core (= 1:0.196.11), python3-aptdaemon.gtk3widgets (>= 0.40) | synaptic, policykit-1, python3-dbus, python3-gi (>= 3.8), gir1.2-vte-2.90, gir1.2-gtk-3.0, ubuntu-release-upgrader-gtk, update-notifier, policykit-1-gnome | policykit-1-kde | lxpolkit | mate-polkit | razorqt-policykit-agent Recommends: software-properties-gtk (>= 0.71.2) Suggests: gir1.2-dbusmenu-glib-0.4, gir1.2-unity-5.0 Filename: pool/main/u/update-manager/update-manager_0.196.11_all.deb Size: 543864 MD5sum: 4f33497779ad1c7d13b74e21bf21ccdd SHA1: 6fe2ff826353773173565537e2e1eed83ad7039c SHA256: c29f6c09283ead42774cd1a59ac2d980ec6f2b192e4e7813b892d25a10a2814c Description: GNOME application that manages apt updates Description-md5: 590b36e19703392a6fe86ceaa8467c85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: update-manager-core Priority: standard Section: admin Installed-Size: 156 Maintainer: Ubuntu Developers Architecture: all Source: update-manager Version: 1:0.196.11 Replaces: update-manager (<< 1:0.146.2) Depends: python3, python3:any (>= 3.2~), python3-update-manager (= 1:0.196.11), lsb-release, ubuntu-release-upgrader-core Recommends: libpam-modules (>= 1.0.1-9ubuntu3) Breaks: computer-janitor (<= 1.11-0ubuntu1), update-manager (<< 1:0.146.2) Filename: pool/main/u/update-manager/update-manager-core_0.196.11_all.deb Size: 5278 MD5sum: bbff04b28ba25ba7e85ddfb6361bd66b SHA1: d7f63ac0c7e90212d2f0a5d86e1ce0c591317420 SHA256: 3fe93857a72bf1bd7d94ee9cf0b7c3c9f9526cd18ad348c672b69dbab2bfde9e Description: manage release upgrades Description-md5: 0a19dc54e8c67de7adf0ecfe839b541f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: update-motd Priority: optional Section: admin Installed-Size: 56 Maintainer: Dustin Kirkland Architecture: all Version: 3.5-0ubuntu1 Depends: libpam-modules (>= 1.0.1-9ubuntu3) Filename: pool/main/u/update-motd/update-motd_3.5-0ubuntu1_all.deb Size: 5910 MD5sum: b9d88387900ed306fbb0cb28d9bf0941 SHA1: 5fccdf16abd306728a45b8650f098f44cdd9cae1 SHA256: a1e1442797bf4dcdcaad183b267afcb9667a2642391e1a03c60350f3627a0d98 Description: superceded by pam_motd in libpam-modules Description-md5: 9c8cf590a0a87aa38d7783c428a47782 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: update-notifier Priority: optional Section: gnome Installed-Size: 268 Maintainer: Michael Vogt Architecture: i386 Version: 0.154.1 Depends: libappindicator3-1 (>= 0.2.92), libc6 (>= 2.7), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.0.0), libgudev-1.0-0 (>= 146), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.18.0), libx11-6, dconf-gsettings-backend | gsettings-backend, update-notifier-common (= 0.154.1), python, python-apt, python-dbus, python-debian, update-manager-gnome | update-manager (>= 1:0.165), ubuntu-release-upgrader-gtk, notification-daemon, policykit-1 Recommends: apport-gtk (>= 2.8-0ubuntu3), python-aptdaemon.gtk3widgets | synaptic (>= 0.75.12), software-properties-gtk, anacron, python-aptdaemon Filename: pool/main/u/update-notifier/update-notifier_0.154.1_i386.deb Size: 46444 MD5sum: 27d5c86604368ea17f849a3448b3a832 SHA1: 52dccbda67ad6997cce3a0545005658a323594cd SHA256: 889d8e8bcc447e2a3d8b890543c027c8a6e069b8a03d55d2354812136d202a2f Description: Daemon which notifies about package updates Description-md5: 17a8ca38ec1439cd743e00edf3c9a926 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: update-notifier-common Priority: optional Section: gnome Installed-Size: 2087 Maintainer: Michael Vogt Architecture: all Source: update-notifier Version: 0.154.1 Replaces: update-notifier (<< 0.75.1) Depends: python, python3:any, python-apt (>= 0.6.12), python3-apt, python-debian, debconf, patch Pre-Depends: dpkg (>= 1.15.7.2) Recommends: libpam-modules (>= 1.0.1-9ubuntu3) Suggests: policykit-1 Filename: pool/main/u/update-notifier/update-notifier-common_0.154.1_all.deb Size: 163626 MD5sum: 26cc57dbc0c519d80a4a7349fd6682b7 SHA1: 8ab3dbb3b12caace694867456c4f96bee3543096 SHA256: e63e73c7c0ea3f006dfe62292a01c53fa061220d959ccc82483f9681fa7ed965 Description: Files shared between update-notifier and other packages Description-md5: 9e55b33c0bb042acf203440099a61649 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, cloud-image, server, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: upower Priority: optional Section: admin Installed-Size: 520 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: i386 Version: 0.9.23-2ubuntu1 Depends: libc6 (>= 2.4), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libglib2.0-0 (>= 2.37.3), libgudev-1.0-0 (>= 146), libimobiledevice4 (>= 0.9.7), libplist1 (>= 0.16), libpolkit-gobject-1-0 (>= 0.99), libupower-glib1 (>= 0.9.2), libusb-1.0-0 (>= 2:1.0.8), udev, dbus, pm-utils | systemd | systemd-services Recommends: policykit-1 Filename: pool/main/u/upower/upower_0.9.23-2ubuntu1_i386.deb Size: 86128 MD5sum: 23a3ac8122afb729696a41ccc55ddbe8 SHA1: 50791e972a02dd57c926e1f8cec45cae2b2b145a SHA256: d2ba730b0ae41d8852aa43d8a181126057dc65d4889fbdbc24a8859c775344d7 Description: abstraction for power management Multi-Arch: foreign Homepage: http://upower.freedesktop.org/ Description-md5: bb90bfcb9dd3dd8821e88236bc786c59 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: upower-doc Priority: optional Section: doc Installed-Size: 418 Maintainer: Ubuntu Developers Original-Maintainer: Utopia Maintenance Team Architecture: all Source: upower Version: 0.9.23-2ubuntu1 Suggests: devhelp Filename: pool/main/u/upower/upower-doc_0.9.23-2ubuntu1_all.deb Size: 39508 MD5sum: 8e999441e7cb8f607df83c0238f74c34 SHA1: 4d16e9cf21bcca9c59841940480f03c8d6b98af7 SHA256: aae0771380bc476608e49ab180a7e4667369e572f367d828e67b4630e2090f94 Description: abstraction for power management - documentation Homepage: http://upower.freedesktop.org/ Description-md5: 9f0894a7a86564bdd2eebe4d26d9b029 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: upstart Priority: required Section: admin Installed-Size: 1621 Maintainer: James Hunt Architecture: i386 Version: 1.12.1-0ubuntu4 Replaces: startup-tasks, system-services, sysvinit, upstart-compat-sysv, upstart-job Provides: startup-tasks, system-services, upstart-compat-sysv, upstart-job Depends: libc6 (>= 2.15), libdbus-1-3 (>= 1.2.16), libjson-c2 (>= 0.10), libnih-dbus1 (>= 1.0.0), libnih1 (>= 1.0.0), libselinux1 (>= 1.32), libudev1 (>= 183), sysvinit-utils, initscripts, mountall, ifupdown (>= 0.6.10ubuntu5), libjson0 (>= 0.10-1.1ubuntu1), debianutils (>= 4) Suggests: python3, graphviz, bash-completion, upstart-monitor Conflicts: lxcguest, startup-tasks, system-services, sysvinit, upstart-compat-sysv, upstart-job Breaks: friendly-recovery (<< 0.2.13), libc6 (<< 2.12.1-0ubuntu12) Filename: pool/main/u/upstart/upstart_1.12.1-0ubuntu4_i386.deb Size: 367296 MD5sum: 6c4f0c5e41458e464b5a48f9638706e9 SHA1: 4888840358e910040dc210d7079574ce124afbf4 SHA256: 5c98a2d49dcbd34fe87d56d1ca888852d089811be8b83474448121e3a6b57546 Description: event-based init daemon Multi-Arch: foreign Homepage: http://upstart.ubuntu.com/ Orig-Maintainer: Steve Langasek Description-md5: b776ec43b708c13dd0c2ab824471f478 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: upstart-app-launch Priority: optional Section: gnome Installed-Size: 210 Maintainer: Ted Gould Architecture: i386 Version: 0.3+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.4), libclick-0.4-0 (>= 0.4.18), libglib2.0-0 (>= 2.37.0), libjson-glib-1.0-0 (>= 0.12.0), liblttng-ust0, libupstart-app-launch2 (>= 0.3+14.04.20140220), libzeitgeist-2.0-0 (>= 0.9.9), click-apparmor, upstart (>= 1.11), zeitgeist-core Filename: pool/main/u/upstart-app-launch/upstart-app-launch_0.3+14.04.20140411-0ubuntu1_i386.deb Size: 30826 MD5sum: cb2926669d957b158798d99846fb0caa SHA1: ecb915b5cf64dceddcaba7e4b82f4f7c754d533b SHA256: 8dfdb034993057c25b0f45de0022c9becb4a1859bc1aaad9f9cb9639fe0ba557 Description: Upstart Job for Launching Applications Homepage: http://launchpad.net/upstart-app-launch Description-md5: 7ec31ff90c96d05e3f5a62845eeaa27a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: upstart-app-launch-tools Priority: optional Section: gnome Installed-Size: 91 Maintainer: Ted Gould Architecture: i386 Source: upstart-app-launch Version: 0.3+14.04.20140411-0ubuntu1 Depends: libc6 (>= 2.0), libglib2.0-0 (>= 2.26.0), libupstart-app-launch2 (>= 0.3+14.04.20140220), upstart-app-launch (= 0.3+14.04.20140411-0ubuntu1) Filename: pool/main/u/upstart-app-launch/upstart-app-launch-tools_0.3+14.04.20140411-0ubuntu1_i386.deb Size: 8946 MD5sum: 62e923cc01df9afee735db82cd610c9e SHA1: bec7da833c275c663d4c5eb8faa327d2e62aa056 SHA256: 5e90611e47f54ffa51ca3b5fc37c53582788019e145101983413cc285f15c68a Description: Tools for working wtih launched applications Homepage: http://launchpad.net/upstart-app-launch Description-md5: 098c4f917c8ea50f02f77080ec430652 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: upstart-monitor Priority: optional Section: utils Installed-Size: 108 Maintainer: James Hunt Architecture: all Source: upstart Version: 1.12.1-0ubuntu4 Depends: python3:any (>= 3.2~), python3, upstart (>= 1.7), python3-dbus Recommends: python3-gi Filename: pool/main/u/upstart/upstart-monitor_1.12.1-0ubuntu4_all.deb Size: 10548 MD5sum: af08cca014bd1d4e7e6c725a78d85392 SHA1: fd92dd3cc920f7260f8404f53c7cdbe84ea0c839 SHA256: 9c8ab1e7b72d7c3bf511153c76f46af1545c77b0efa31151410806ba2abae577 Description: event monitor for upstart Homepage: http://upstart.ubuntu.com/ Orig-Maintainer: Steve Langasek Description-md5: 3ada932aec65f4da7c81b4d3251ee8e4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: ure Priority: optional Section: libs Installed-Size: 5029 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice (1:4.2.3~rc3-0ubuntu2) Version: 4.2.3~rc3-0ubuntu2 Replaces: libreoffice-common (<< 1:4.1.2~), libreoffice-java-common (<< 1:3.0.0~dev300m12) Depends: uno-libs3 (= 4.2.3~rc3-0ubuntu2), libc6 (>= 2.11), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.6), libxml2 (>= 2.7.4) Suggests: java5-runtime Conflicts: cli-uno-bridge (<< 1:3.0.0~dev300m22) Breaks: libreoffice-core (<< 1:4.1.2~), openoffice.org-core (<< 1:3.3~) Filename: pool/main/libr/libreoffice/ure_4.2.3~rc3-0ubuntu2_i386.deb Size: 1617496 MD5sum: f97612c88cbb5635cf937868f9569853 SHA1: 6053be4722d4ec704aff0d376d6d3e10d3124086 SHA256: 8e54ba737439b6bf2c3fff59a43f78b4f4f9247a4e12613b5baaf49451c874fe Description: LibreOffice UNO runtime environment Homepage: http://www.libreoffice.org Description-md5: 91a81b0bbfc8236cc5518400be4807d1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: ure-dbg Priority: extra Section: devel Installed-Size: 26558 Maintainer: Ubuntu Developers Original-Maintainer: Debian LibreOffice Maintainers Architecture: i386 Source: libreoffice (1:4.2.3~rc3-0ubuntu2) Version: 4.2.3~rc3-0ubuntu2 Depends: uno-libs3-dbg (= 4.2.3~rc3-0ubuntu2), ure (= 4.2.3~rc3-0ubuntu2) Filename: pool/main/libr/libreoffice/ure-dbg_4.2.3~rc3-0ubuntu2_i386.deb Size: 6316996 MD5sum: 3175226c69ad61fca3b5e85f70804d21 SHA1: 73096075d4e5f3bf15ca2a3926594e6f4d359dae SHA256: ececc194ebbaa10fa14c74af01013c19f85b9476355577476830c8da4e5d84d6 Description: LibreOffice UNO runtime environment -- debug symbols Homepage: http://www.libreoffice.org Description-md5: 3cdc616cec4e36585ca32210926b84c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: ureadahead Priority: important Section: admin Installed-Size: 123 Maintainer: Scott James Remnant Architecture: i386 Version: 0.100.0-16 Replaces: readahead Provides: readahead Depends: e2fslibs (>= 1.42.2), libblkid1 (>= 2.16), libc6 (>= 2.4), libnih1 (>= 1.0.0), upstart (>= 0.6.0) Conflicts: readahead Filename: pool/main/u/ureadahead/ureadahead_0.100.0-16_i386.deb Size: 26722 MD5sum: de77abf55b384b094f17c4452c90e80e SHA1: 00949715c19485eeb7123b855341dfe8a1983143 SHA256: e08ba0c54bde5b5e8785ebc4eca1f9d724ef4e114e617462cbb53c73ff3d9fb2 Description: Read required files in advance Description-md5: f28f31b10525897dede5f830e42ea144 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: usb-creator-common Priority: optional Section: admin Installed-Size: 272 Maintainer: Ubuntu Developers Original-Maintainer: usb-creator Hackers Team Architecture: i386 Source: usb-creator Version: 0.2.56 Depends: python3:any (>= 3.3.2-2~), python3-dbus, syslinux, syslinux-legacy, gir1.2-udisks-2.0, udisks2, genisoimage, mtools, parted, python3-debian Filename: pool/main/u/usb-creator/usb-creator-common_0.2.56_i386.deb Size: 23282 MD5sum: bca80990ea8b50b3d6d7e3e57bed4463 SHA1: 2d46e856e6e6cee146ea8af57309b3095dba9ab5 SHA256: 93f068eebf2e7a7703df26701ee6b30aaa48ad2bf9dba76ad238bfedd3854379 Description: create a startup disk using a CD or disc image (common files) Description-md5: 2069ab334146d9561ed7a9b97122dbbc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: usb-creator-gtk Priority: optional Section: admin Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: usb-creator Hackers Team Architecture: i386 Source: usb-creator Version: 0.2.56 Depends: python3, python3:any (>= 3.3.2-2~), usb-creator-common (= 0.2.56), python3-gi, gir1.2-gtk-3.0, gir1.2-gudev-1.0, gir1.2-pango-1.0, gir1.2-glib-2.0, gir1.2-unity-5.0, python3-dbus Filename: pool/main/u/usb-creator/usb-creator-gtk_0.2.56_i386.deb Size: 23256 MD5sum: 835f3ab3f1d3126bfd93ac5d52d4c1ca SHA1: 066c0e0cea5ae2ff8f00e1cea7f488a9bfb62457 SHA256: 845dd5f27676b89d495f080058568c00901387a2fba021f07f548d3659c18fd0 Description: create a startup disk using a CD or disc image (for GNOME) Description-md5: 74bf09ff42f47fb48f3aaf55c1943254 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: usb-modeswitch Priority: extra Section: comm Installed-Size: 195 Maintainer: Ubuntu Developers Original-Maintainer: Didier Raboud Architecture: i386 Version: 2.1.1+repack0-1ubuntu1 Depends: libc6 (>= 2.8), libpipeline1 (>= 1.0.0), libusb-1.0-0 (>= 2:1.0.8), usb-modeswitch-data (>= 20140327) Suggests: comgt, wvdial Breaks: usb-modeswitch-data (<< 20100127) Filename: pool/main/u/usb-modeswitch/usb-modeswitch_2.1.1+repack0-1ubuntu1_i386.deb Size: 47588 MD5sum: 4eafdf15051e2d180a198c7a580f6746 SHA1: 56436024bb3871e1060a5172413182850d04abe9 SHA256: 4960d320143aed19ea0c3beaad7e0b45d940a25a1e152c08482033c502045b13 Description: mode switching tool for controlling "flip flop" USB devices Homepage: http://www.draisberghof.de/usb_modeswitch/ Description-md5: bbddadcef95b9342b7cf75c7d1b5cfa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: usb-modeswitch-data Priority: extra Section: comm Installed-Size: 212 Maintainer: Ubuntu Developers Original-Maintainer: Didier Raboud Architecture: all Version: 20140327-1 Replaces: usb-modeswitch (<< 1.0.7-1), usb-modeswitch-data-packed Provides: usb-modeswitch-data-packed Recommends: usb-modeswitch (>= 2.1.1), udev (>= 0.140) Conflicts: usb-modeswitch-data-packed Breaks: usb-modeswitch (<< 2.1.1) Filename: pool/main/u/usb-modeswitch-data/usb-modeswitch-data_20140327-1_all.deb Size: 26960 MD5sum: 497cd1c0a5fa0cbf7a3976b4c4147c6e SHA1: 933c4ee36b8e1bb6122454936e79e1a9b639e7fa SHA256: 6466f9752135d98092bc34ff8e227ce192ef90523cf54d8c797c23dbb45ab77e Description: mode switching data for usb-modeswitch Homepage: http://www.draisberghof.de/usb_modeswitch/ Description-md5: 83f8894d390ffa31e34c89e43fc95bb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: usbmuxd Priority: optional Section: utils Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: gtkpod Maintainers Architecture: i386 Version: 1.0.8-2ubuntu1 Depends: libc6 (>= 2.4), libplist1 (>= 0.16), libusb-1.0-0 (>= 2:1.0.8), libusbmuxd2 (>= 1.0.0), adduser Filename: pool/main/u/usbmuxd/usbmuxd_1.0.8-2ubuntu1_i386.deb Size: 36492 MD5sum: 8c2544ab12d8f8c1eb3e6236e6c4b72d SHA1: 1c351e34db07b6f5d5e51dea65c43a1804a1fee4 SHA256: 68d9c8594b5762c72a02ee9c32fcdbcb608cbbeb50257233620b58be5c2c2edd Description: USB multiplexor daemon for iPhone and iPod Touch devices Homepage: http://marcansoft.com/blog/iphonelinux/usbmuxd/ Description-md5: 4e458ee34e3d22d40bde533e8147603f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: usbutils Priority: standard Section: utils Installed-Size: 697 Maintainer: Ubuntu Developers Original-Maintainer: Aurelien Jarno Architecture: i386 Version: 1:007-2ubuntu1 Depends: libc6 (>= 2.4), libusb-1.0-0 (>= 2:1.0.16), zlib1g (>= 1:1.2.3.3) Suggests: wget (>= 1.8.1-6) | lynx-cur Filename: pool/main/u/usbutils/usbutils_007-2ubuntu1_i386.deb Size: 189404 MD5sum: cd21b207eb69017dd995ff6ef292cdbd SHA1: 322c64b4519b7d6f47ff79fa6473b028f5d3532e SHA256: fcfeae4bf231098e2bba3488368a54ef765df5644741a7e5785577fb6ebdd4a1 Description: Linux USB utilities Multi-Arch: foreign Description-md5: 378e163adf667074991298e6e17f6516 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: user-setup Priority: extra Section: admin Installed-Size: 553 Maintainer: Ubuntu Installer Team Original-Maintainer: Debian Install System Team Architecture: all Version: 1.48ubuntu2 Depends: debconf (>= 0.5) | debconf-2.0, passwd, adduser Filename: pool/main/u/user-setup/user-setup_1.48ubuntu2_all.deb Size: 189000 MD5sum: 4e905cb86bc4c05dfe6b8a1a3be2a80c SHA1: 3af68269008e577c722f1c2ff73bf4f41b994a16 SHA256: b5f0ba9bbe22e1ee0330bca8f1eb9d1bfe0905db15cc67aa690e0b0e4d556c78 Description: Set up initial user and password Description-md5: 4dec3dcb61a40a867c061e2bd022837e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: xubuntu-live Package: util-linux Essential: yes Priority: required Section: utils Installed-Size: 1554 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: i386 Version: 2.20.1-5.1ubuntu20 Replaces: e2fsprogs, fdisk, fstrim, linux32, miscutils, schedutils, setterm, sparc-utils Provides: linux32, schedutils Depends: lsb-base (>= 3.0-6), tzdata (>= 2006c-2), dpkg (>= 1.15.4) | install-info, debconf (>= 0.5) | debconf-2.0, sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Pre-Depends: libblkid1 (>= 2.20.1), libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libselinux1 (>= 1.32), libslang2 (>= 2.2.4), libtinfo5, libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4) Suggests: util-linux-locales, kbd | console-tools, dosfstools Conflicts: console-tools (<< 1:0.2.3-21), fdisk, fstrim, kbd (<< 1.05-3), linux32, schedutils, setterm Filename: pool/main/u/util-linux/util-linux_2.20.1-5.1ubuntu20_i386.deb Size: 450842 MD5sum: 54b1dcc7fa44957877cca79504d8d607 SHA1: 6596d94a95c341b87a1307fba55f050c569a6302 SHA256: 70f350eae3fa075f4efcb6e927dfbacb21fd36fd5556155e328f550917fd9b00 Description: Miscellaneous system utilities Multi-Arch: foreign Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: ed29c47368a140794fd6df09a19c1372 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: util-linux-locales Priority: extra Section: utils Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: all Source: util-linux Version: 2.20.1-5.1ubuntu20 Replaces: util-linux (<< 2.11b) Depends: util-linux (>= 2.20.1-0), util-linux (<< 2.20.1.0-0) Filename: pool/main/u/util-linux/util-linux-locales_2.20.1-5.1ubuntu20_all.deb Size: 1994 MD5sum: ac0b15745abc5e29c26b03941716a08b SHA1: 0ab2ff8603e7971beb5894e4bd826b390712d793 SHA256: 9d08ce47431a64fb6a759c0b772f21bd7e10de4018424c60d2c53c7a3f290b77 Description: Locales files for util-linux Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: b686310ac1c1c7070063e7177cf12870 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: uuid-dev Priority: extra Section: libdevel Installed-Size: 145 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: i386 Source: util-linux Version: 2.20.1-5.1ubuntu20 Replaces: e2fslibs-dev (<< 1.15) Depends: libc6-dev | libc-dev, libuuid1 (= 2.20.1-5.1ubuntu20) Filename: pool/main/u/util-linux/uuid-dev_2.20.1-5.1ubuntu20_i386.deb Size: 23484 MD5sum: 4c33c671feba4fc32240d95be5427a18 SHA1: af449dabab3d0f9e99864681cc621ce7bdf68cdf SHA256: 28dd84efcf9ba7da35fcfcb86facf1768a1ca985f2c04ec181547f6d81923a2c Description: universally unique id library - headers and static libraries Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 19cdb24314cb6c1b29cb0ed7e9062d4b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: uuid-runtime Priority: standard Section: libs Installed-Size: 133 Maintainer: Ubuntu Developers Original-Maintainer: LaMont Jones Architecture: i386 Source: util-linux Version: 2.20.1-5.1ubuntu20 Replaces: e2fsprogs (<= 1.40.3-1ubuntu1) Depends: passwd, libuuid1 (>= 2.20.1), libc6 (>= 2.4) Filename: pool/main/u/util-linux/uuid-runtime_2.20.1-5.1ubuntu20_i386.deb Size: 12064 MD5sum: bd68c5de20556a3a0dd196660d145090 SHA1: 2f4bcf4e3143133163aac215e9121e119ee611c4 SHA256: 1242c9559f59e3d78b994499a0169f9e58749c1572efe3981074ef04d07a7b18 Description: runtime components for the Universally Unique ID library Multi-Arch: foreign Homepage: http://userweb.kernel.org/~kzak/util-linux/ Description-md5: 33fb0e6df435d693f2bb9940ac3eb325 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active Package: uuidcdef Priority: optional Section: devel Installed-Size: 79 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Source: xplc Version: 0.3.13-4 Depends: libc6 (>= 2.7), libuuid1 (>= 2.16) Filename: pool/main/x/xplc/uuidcdef_0.3.13-4_i386.deb Size: 14528 MD5sum: 4599a9640766218426518b18c7ccb8d3 SHA1: f8b097b92f8b70041ee7da238be9fd8999c2743f SHA256: 92763346a17c8e6902c181f5afdc29d012827bf3103eaab3d76f71aaaa550451 Description: Universally Unique Identifier (UUID) generator Homepage: http://xplc.sourceforge.net/ Description-md5: 1d910b1ba122bdc21c260082cb676050 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vala-0.18-doc Priority: optional Section: doc Installed-Size: 198 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: all Source: vala-0.18 Version: 0.18.1-0ubuntu11 Provides: vala-doc Suggests: valac, devhelp Filename: pool/main/v/vala-0.18/vala-0.18-doc_0.18.1-0ubuntu11_all.deb Size: 20530 MD5sum: 101bab010ee4c729ff9fed16e1713e26 SHA1: a0ebefdec2c37eb35e2a62711704a79241e1e4d8 SHA256: c97c896e2e7ce92c53aae8f77c2681ff7ae014c0c50e9be6e393439b86e8b14f Description: C# like language for the GObject system - documentation Multi-Arch: foreign Homepage: http://live.gnome.org/Vala/ Description-md5: de483b7159809ff1a4971ef10ee5d570 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vala-0.22-doc Priority: optional Section: doc Installed-Size: 206 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: all Source: vala-0.22 Version: 0.22.1-0ubuntu1 Provides: vala-doc Suggests: valac, devhelp Filename: pool/main/v/vala-0.22/vala-0.22-doc_0.22.1-0ubuntu1_all.deb Size: 20714 MD5sum: ebe04227aedd41a41b2fd4bc91e185c1 SHA1: 9f01d0d9b92072a3461314bed64c1cd60b736ecf SHA256: 0fc1081328d975e62bbe01058d40bf736bc29f69ccee8c683291671ef7411ec4 Description: C# like language for the GObject system - documentation Multi-Arch: foreign Homepage: http://live.gnome.org/Vala/ Description-md5: de483b7159809ff1a4971ef10ee5d570 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac Priority: optional Section: devel Installed-Size: 157 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: all Source: vala-0.22 Version: 0.22.1-0ubuntu1 Depends: valac-0.22 Filename: pool/main/v/vala-0.22/valac_0.22.1-0ubuntu1_all.deb Size: 13594 MD5sum: 77c3b3ac02a0c1b0c931e33b08a9a9d8 SHA1: b5d3b6ffdd32f11d5302819fc8f9e57deb2439f1 SHA256: 16232b8720ad086afa2abb7574b23097ce0feb2a3bc066f8abb4c3a793502047 Description: C# like language for the GObject system Homepage: http://live.gnome.org/Vala/ Description-md5: f9d9283d952284bde9e56be7edbddfb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.18 Priority: optional Section: devel Installed-Size: 581 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: vala-0.18 Version: 0.18.1-0ubuntu11 Replaces: vala-utils (<< 0.10) Provides: vala-utils Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.26), libvala-0.18-0 (= 0.18.1-0ubuntu11), valac-0.18-vapi Recommends: libglib2.0-dev (>= 2.26) Conflicts: vala-utils (<< 0.10), valac (<< 0.9.5) Filename: pool/main/v/vala-0.18/valac-0.18_0.18.1-0ubuntu11_i386.deb Size: 112072 MD5sum: 023f30e75c28d113f6e1c309f4a04e70 SHA1: 1eb96460ce3eef48bcb2d50ed37d1c4fafd56c2a SHA256: bfb2c2db70512d79ae832185d6971060ec2f3307eaa51cd18b71d45e372b34a3 Description: C# like language for the GObject system Homepage: http://live.gnome.org/Vala/ Description-md5: 218f3b0a7cade0003732a9717a7a8215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.18-dbg Priority: extra Section: debug Installed-Size: 1593 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: vala-0.18 Version: 0.18.1-0ubuntu11 Depends: valac-0.18 (= 0.18.1-0ubuntu11) Filename: pool/main/v/vala-0.18/valac-0.18-dbg_0.18.1-0ubuntu11_i386.deb Size: 364840 MD5sum: af6b106c453ef7746e0dee5971aa8b1f SHA1: 1120d78dda0e1ac284d69743f22b14b52d2ddc3e SHA256: 8d8e1c8cfe03a13a0b8dfab8cf055799fca83ef79f676d669f289aa65455565f Description: C# like language for the GObject system - debug symbols Homepage: http://live.gnome.org/Vala/ Description-md5: 0f5939694f8d1d8b0f603121c18dafe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.18-vapi Priority: optional Section: devel Installed-Size: 5923 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: all Source: vala-0.18 Version: 0.18.1-0ubuntu11 Filename: pool/main/v/vala-0.18/valac-0.18-vapi_0.18.1-0ubuntu11_all.deb Size: 598838 MD5sum: f62c256ee0e0c525a5a5bff59d175f62 SHA1: a506046e818b8a5ceeae3b20e918e9436f560768 SHA256: a44ca37a20f11bd3ce5c70cb9e02e377a2106e79d2cb316819e8cfeb1ee9b120 Description: C# like language for the GObject system - vapi files Homepage: http://live.gnome.org/Vala/ Description-md5: 14e61d74db9df4b1edc860ca4ff8ade6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.22 Priority: optional Section: devel Installed-Size: 589 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: vala-0.22 Version: 0.22.1-0ubuntu1 Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.26), libvala-0.22-0 (= 0.22.1-0ubuntu1), libglib2.0-dev (>= 2.26), valac-0.22-vapi Filename: pool/main/v/vala-0.22/valac-0.22_0.22.1-0ubuntu1_i386.deb Size: 112362 MD5sum: 9482726e0c46c8a8435d1f901e2a5196 SHA1: a32ef80df8b4900c691f8be9af57ba41e1c11631 SHA256: ea882b0cc3e65e6e898c8bba9992dffaabbb3ee52454c92b8405368e6678a1c2 Description: C# like language for the GObject system Homepage: http://live.gnome.org/Vala/ Description-md5: 218f3b0a7cade0003732a9717a7a8215 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.22-dbg Priority: extra Section: debug Installed-Size: 1685 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: i386 Source: vala-0.22 Version: 0.22.1-0ubuntu1 Depends: valac-0.22 (= 0.22.1-0ubuntu1) Filename: pool/main/v/vala-0.22/valac-0.22-dbg_0.22.1-0ubuntu1_i386.deb Size: 370766 MD5sum: f437826da6fc6fcaac3ec8188530940a SHA1: 0c4af4f5d817ccf45ee23e8d683e162de564dc45 SHA256: d4b2077763ace75e6f212dc05c56a3938dd10c290a4fe3fee62cdde6e52a97cb Description: C# like language for the GObject system - debug symbols Homepage: http://live.gnome.org/Vala/ Description-md5: 0f5939694f8d1d8b0f603121c18dafe7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valac-0.22-vapi Priority: optional Section: devel Installed-Size: 6274 Maintainer: Ubuntu Developers Original-Maintainer: Maintainers of Vala packages Architecture: all Source: vala-0.22 Version: 0.22.1-0ubuntu1 Filename: pool/main/v/vala-0.22/valac-0.22-vapi_0.22.1-0ubuntu1_all.deb Size: 627056 MD5sum: a397896192311764612b0509781a71ee SHA1: f12c32a07ca7fbb537222f78fb85ef66729b146c SHA256: 33089c798175f74c3ad8f17f2a637786847a714f1fb7f74f5efb82d8c61833c5 Description: C# like language for the GObject system - vapi files Homepage: http://live.gnome.org/Vala/ Description-md5: 14e61d74db9df4b1edc860ca4ff8ade6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: valgrind Priority: optional Section: devel Installed-Size: 44249 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Version: 1:3.10~20140411-0ubuntu1 Replaces: valgrind-dev Depends: libc6 (>= 2.16), libc6-dbg Recommends: gdb Suggests: valgrind-dbg, kcachegrind, alleyoop, valkyrie (>> 1.3.0) Breaks: valgrind-dev Filename: pool/main/v/valgrind/valgrind_3.10~20140411-0ubuntu1_i386.deb Size: 4338080 MD5sum: 33b6a4ecd51bb09d581462a1286018e7 SHA1: 883d5c8bbcd35910ab8ba73c3bfa238de8cc1594 SHA256: 7805e8b98976dbf9162dbd9aa27f16ceb660444033634e63654e833993d6d56f Description: instrumentation framework for building dynamic analysis tools Homepage: http://www.valgrind.org/ Description-md5: 0cb016d4f438ed8069cda723e3bb7786 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: valgrind-dbg Priority: extra Section: debug Installed-Size: 108742 Maintainer: Ubuntu Developers Original-Maintainer: Alessandro Ghedini Architecture: i386 Source: valgrind Version: 1:3.10~20140411-0ubuntu1 Depends: valgrind (= 1:3.10~20140411-0ubuntu1) Filename: pool/main/v/valgrind/valgrind-dbg_3.10~20140411-0ubuntu1_i386.deb Size: 30196926 MD5sum: e8c4c0bff3f19428631fa252de30db4a SHA1: 90aad38ebb26b8e3a704a8d6aeca25ae36b7c823 SHA256: 72fe267e58fe97ee2fa1d4a21de9c03001028c96277f0dab9ee68f906d07089a Description: instrumentation framework for building dynamic analysis tools (debug) Homepage: http://www.valgrind.org/ Description-md5: bbac8295630a71a4bc8614379be44b6e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vbetool Priority: optional Section: utils Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: i386 Version: 1.1-3 Depends: libc6 (>= 2.4), libpci3 (>= 1:3.1.9-2), libx86-1 (>= 0.99-1) Filename: pool/main/v/vbetool/vbetool_1.1-3_i386.deb Size: 11482 MD5sum: 456a0aef76e852e15dac6097ca66daa9 SHA1: 112b5797f5e9de92ec88c181d20bb0770e98312f SHA256: 5dd691d890c17344319cac0f6b1ac9c12ee218211d05045ab2aabda5d929b93e Description: run real-mode video BIOS code to alter hardware state Homepage: http://www.codon.org.uk/~mjg59/vbetool/ Description-md5: 25fb7adf077cdb98dd6d1022be48eba4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: virt-host, ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop Package: vblade Priority: optional Section: admin Installed-Size: 69 Maintainer: Ubuntu Core Developers Original-Maintainer: David Martínez Moreno Architecture: i386 Version: 20-1ubuntu2 Depends: libc6 (>= 2.7) Suggests: vblade-persist Filename: pool/main/v/vblade/vblade_20-1ubuntu2_i386.deb Size: 17192 MD5sum: 77e44d8e27678943bb9f09ba403299e6 SHA1: 1e6031e55c71fdd4c2493e948dcc90b04086ead0 SHA256: 292deee32260a55a91b11ba74a7c240ddee3babf3b04b06ffc2d7e0400616e0b Description: virtual AoE blade emulator Homepage: http://aoetools.sf.net Description-md5: fe793de0deb8ad57b766bf0f1b186c3f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: vim Priority: optional Section: editors Installed-Size: 2076 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: i386 Version: 2:7.4.052-1ubuntu3 Provides: editor Depends: vim-common (= 2:7.4.052-1ubuntu3), vim-runtime (= 2:7.4.052-1ubuntu3), libacl1 (>= 2.2.51-8), libc6 (>= 2.15), libgpm2 (>= 1.20.4), libpython2.7 (>= 2.7), libselinux1 (>= 1.32), libtinfo5 Suggests: ctags, vim-doc, vim-scripts Filename: pool/main/v/vim/vim_7.4.052-1ubuntu3_i386.deb Size: 876878 MD5sum: 46cccdad9d735a4221f0153d7e908c56 SHA1: 0dc209cf92aed19d6276e8f1332f6949b6e06e40 SHA256: 34c57b3f4c459e4ee01aed1531fb05fa16115ef8c49c5610d80d8c356c640ccd Description: Vi IMproved - enhanced vi editor Homepage: http://www.vim.org/ Description-md5: 59e8b8f7757db8b53566d5d119872de8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-desktop-gnome, edubuntu-usb Package: vim-common Priority: important Section: editors Installed-Size: 316 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: i386 Source: vim Version: 2:7.4.052-1ubuntu3 Depends: libc6 (>= 2.3.4) Recommends: vim | vim-gnome | vim-gtk | vim-athena | vim-nox | vim-tiny Filename: pool/main/v/vim/vim-common_7.4.052-1ubuntu3_i386.deb Size: 95234 MD5sum: fb458f326d9ba365ef49cc37042b0376 SHA1: 926491d5d9a933152cd70b660c8fa591514cc875 SHA256: 03e69bfc3181880f091a859b15cdc638d59e4a1e6f4ded3a650e301e0090f554 Description: Vi IMproved - Common files Homepage: http://www.vim.org/ Description-md5: dc8579ec9ee0dc36b43d271645170c36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: vim-dbg Priority: extra Section: editors Installed-Size: 26590 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: i386 Source: vim Version: 2:7.4.052-1ubuntu3 Depends: vim (= 2:7.4.052-1ubuntu3) | vim-gtk (= 2:7.4.052-1ubuntu3) | vim-gnome (= 2:7.4.052-1ubuntu3) | vim-nox (= 2:7.4.052-1ubuntu3) | vim-common (= 2:7.4.052-1ubuntu3) | vim-athena (= 2:7.4.052-1ubuntu3) | vim-tiny (= 2:7.4.052-1ubuntu3) Filename: pool/main/v/vim/vim-dbg_7.4.052-1ubuntu3_i386.deb Size: 6143826 MD5sum: a4b48c8141698a2377eafb60cea00f31 SHA1: d33d42eed53cadc224d3ab5fc60a5ce155c7d4c1 SHA256: 241ff05f734db9af6ca70b8c8c645ad211d89f0219ec3c81d7b08b4299afddad Description: Vi IMproved - enhanced vi editor (debugging symbols) Homepage: http://www.vim.org/ Description-md5: 0ede2a692dbe73f7b27a8750a774149c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vim-doc Priority: optional Section: editors Installed-Size: 9352 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: all Source: vim Version: 2:7.4.052-1ubuntu3 Filename: pool/main/v/vim/vim-doc_7.4.052-1ubuntu3_all.deb Size: 1658940 MD5sum: a0235541a96e8bfa5b6e4057b86c08c5 SHA1: 3ec24e8686a8b1437c43803bb81272d8b4699faf SHA256: 3c7e97f64b14661e90c1cd435ebc37cee608218357cc784fe4669f2d3995b3a1 Description: Vi IMproved - HTML documentation Homepage: http://www.vim.org/ Description-md5: 7ab878e2d7c8234499efd3d1f686daa2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vim-gnome Priority: extra Section: editors Installed-Size: 2441 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: i386 Source: vim Version: 2:7.4.052-1ubuntu3 Provides: editor, gvim, vim, vim-lua, vim-perl, vim-python, vim-ruby, vim-tcl Depends: vim-gui-common (= 2:7.4.052-1ubuntu3), vim-common (= 2:7.4.052-1ubuntu3), vim-runtime (= 2:7.4.052-1ubuntu3), libacl1 (>= 2.2.51-8), libbonoboui2-0 (>= 2.15.1), libc6 (>= 2.15), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.12.0), libgnome2-0 (>= 2.17.3), libgnomeui-0 (>= 2.22.0), libgpm2 (>= 1.20.4), libgtk2.0-0 (>= 2.24.0), libice6 (>= 1:1.0.0), liblua5.2-0, libpango-1.0-0 (>= 1.14.0), libperl5.18 (>= 5.18.1), libpython2.7 (>= 2.7), libruby1.9.1 (>= 1.9.2.0), libselinux1 (>= 1.32), libsm6, libtcl8.6 (>= 8.6.0), libtinfo5, libx11-6, libxt6 Suggests: cscope, vim-doc, ttf-dejavu, gnome-icon-theme Filename: pool/main/v/vim/vim-gnome_7.4.052-1ubuntu3_i386.deb Size: 1006618 MD5sum: 02d8308f8f07e1817a58fcf6941eff8e SHA1: 48e47a2a5c26df7d977cab2c792c8300d762c21a SHA256: 701c01061b8989f826cb96408c850f929b36b134a8061bb334982d6d13bccc09 Description: Vi IMproved - enhanced vi editor - with GNOME2 GUI Homepage: http://www.vim.org/ Description-md5: cd4a76134bce59404c52749b68c94208 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: vim-gui-common Priority: optional Section: editors Installed-Size: 297 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: all Source: vim Version: 2:7.4.052-1ubuntu3 Replaces: vim-runtime (<< 2:7.2.438+hg~d44112feb815-3) Recommends: vim-gnome | vim-gtk | vim-athena Breaks: vim-runtime (<< 2:7.2.438+hg~d44112feb815-3) Filename: pool/main/v/vim/vim-gui-common_7.4.052-1ubuntu3_all.deb Size: 73018 MD5sum: eccccafdd134aaf42a1821d0f3cc07d3 SHA1: 488cfcbdc45952eb7e2263c5ce1d442f9e57c93d SHA256: f53c285861bc1adec5c64bb1f5f69474c7827dd4dacc9ec08c89092c2406f7ca Description: Vi IMproved - Common GUI files Homepage: http://www.vim.org/ Description-md5: fb37e200739779358616f93cf24cfb10 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: vim-runtime Priority: optional Section: editors Installed-Size: 25186 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: all Source: vim Version: 2:7.4.052-1ubuntu3 Recommends: vim | vim-gnome | vim-gtk | vim-athena | vim-nox | vim-tiny Breaks: vim-tiny (<< 2:7.4.052-1ubuntu3) Filename: pool/main/v/vim/vim-runtime_7.4.052-1ubuntu3_all.deb Size: 4888024 MD5sum: 63b364396cbd681098b8cf5c6b9865c8 SHA1: 46c5805bc55f0eea7b22162233378205a8e4f308 SHA256: 37f2db84092cea9bdb12cc9c06cc26b98a4655e005a407ce21c31a583e4c3502 Description: Vi IMproved - Runtime files Enhances: vim-tiny Homepage: http://www.vim.org/ Description-md5: 9955e4852adeb20e00e9b3a0614f19f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-usb, cloud-image, server, edubuntu-desktop-gnome, edubuntu-usb Package: vim-tiny Priority: important Section: editors Installed-Size: 872 Maintainer: Ubuntu Developers Original-Maintainer: Debian Vim Maintainers Architecture: i386 Source: vim Version: 2:7.4.052-1ubuntu3 Provides: editor Depends: vim-common (= 2:7.4.052-1ubuntu3), libacl1 (>= 2.2.51-8), libc6 (>= 2.15), libselinux1 (>= 1.32), libtinfo5 Suggests: indent Filename: pool/main/v/vim/vim-tiny_7.4.052-1ubuntu3_i386.deb Size: 353446 MD5sum: e614e263c6b5ba346d4a887938861824 SHA1: c350438f6e7079bf18ca9502fdcfb6a52e953552 SHA256: 6c17f2df284ec667e91d088b6b157d3b0bf5fce888df8c447a69094cad971664 Description: Vi IMproved - enhanced vi editor - compact version Homepage: http://www.vim.org/ Description-md5: eb95c193faecdde6a747ca9801ca82df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: vino Priority: optional Section: gnome Installed-Size: 556 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.8.1-0ubuntu1 Depends: libappindicator3-1 (>= 0.2.92), libavahi-client3 (>= 0.6.16), libavahi-common3 (>= 0.6.16), libavahi-glib1 (>= 0.6.16), libc6 (>= 2.15), libcairo2 (>= 1.10.0), libdbus-glib-1-2 (>= 0.78), libgcrypt11 (>= 1.4.5), libglib2.0-0 (>= 2.37.3), libgnutls26 (>= 2.12.17-0), libgtk-3-0 (>= 3.0.0), libice6 (>= 1:1.0.0), libjpeg8 (>= 8c), libminiupnpc8 (>= 1.6), libnotify4 (>= 0.7.0), libsecret-1-0 (>= 0.7), libsm6, libsoup2.4-1 (>= 2.24.0), libtelepathy-glib0 (>= 0.18.0), libx11-6, libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxtst6, zlib1g (>= 1:1.1.4), dconf-gsettings-backend | gsettings-backend Recommends: gvfs Suggests: vinagre, gnome-user-guide Breaks: gnome-session-bin (<< 3.0) Filename: pool/main/v/vino/vino_3.8.1-0ubuntu1_i386.deb Size: 135390 MD5sum: 9403263378888ce4d3525af1dc6f6c06 SHA1: 0dcf3854df8b3a52558a6dd80fcec0143d1d63e4 SHA256: 8b9a90a112aecd228b383a077178a1052eea67b9a26f214207dda83632b1827b Description: VNC server for GNOME Homepage: http://live.gnome.org/Vino Description-md5: a21f62d453ff4ea676a2699029dd5caa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: virt-manager Priority: optional Section: admin Installed-Size: 3264 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers = 2.28.1-2), python:any (>= 2.7.1-0ubuntu2), python-gtk2, python-glade2, python-gnome2, python-dbus, python-urlgrabber, python-vte, librsvg2-common, python-libvirt (>= 0.7.1), virtinst (>= 0.600.4), python-gtk-vnc (>= 0.3.8), python-appindicator Recommends: libvirt-bin (>= 0.4.6), gnome-icon-theme Suggests: virt-viewer, ssh-askpass, gnome-keyring, python-gnomekeyring, python-guestfs, python-spice-client-gtk Filename: pool/main/v/virt-manager/virt-manager_0.9.5-1ubuntu3_all.deb Size: 280240 MD5sum: 9a24910e8686e6d2fc3e6906a40938a9 SHA1: dc463682e464dc58e1f8c54a974e785ed96eb65d SHA256: a7efa230c81dd40f1f026039ba3ac273b7f17658e059857e3a1160ac53114016 Description: desktop application for managing virtual machines Homepage: http://virt-manager.et.redhat.com/ Description-md5: 9f7f584744b77cdacc2291f2a8ac220e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: virtinst Priority: extra Section: admin Installed-Size: 1060 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libvirt Maintainers Architecture: all Version: 0.600.4-3ubuntu2 Depends: python (>= 2.7), python (<< 2.8), python:any (>= 2.7.1-0ubuntu2), python-libvirt (>= 0.4.6), python-libxml2, python-urlgrabber, qemu-utils, acl Recommends: libvirt-bin Suggests: virt-viewer Filename: pool/main/v/virtinst/virtinst_0.600.4-3ubuntu2_all.deb Size: 179454 MD5sum: f5855222134f2e405dfcb73a0dedd187 SHA1: 421efcabb6f1e008991e379dc6ba76332500fbc2 SHA256: 0187171a4ca0981e2638f524f56a06289b1fdfd88de784f1b241b1e914fa482f Description: Programs to create and clone virtual machines Homepage: http://virt-manager.et.redhat.com/ Description-md5: c31098728b9b7faac6968bd65393f582 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: virtuoso-opensource-6.1-common Priority: optional Section: database Installed-Size: 215 Maintainer: Ubuntu Developers Original-Maintainer: José Manuel Santamaría Lema Architecture: i386 Source: virtuoso-opensource Version: 6.1.6+repack-0ubuntu3 Depends: libc6 (>= 2.4), libssl1.0.0 (>= 1.0.0) Filename: pool/main/v/virtuoso-opensource/virtuoso-opensource-6.1-common_6.1.6+repack-0ubuntu3_i386.deb Size: 47788 MD5sum: 6dd30885dfb003e8c0af44957be8a471 SHA1: c27989735281ade459299f89e9503aaaaf8784aa SHA256: fde541e0f0ab8ab211bd9c0874a8af668164401ad88a63328f6016dbfbf65b30 Description: high-performance database - common files Homepage: http://virtuoso.openlinksw.com/wiki/main/Main/ Description-md5: 964d57838657661e2d23406ac48d09eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop-gnome, ubuntustudio-video, ubuntustudio-graphics Package: vlan Priority: extra Section: misc Installed-Size: 159 Maintainer: Ubuntu Developers Original-Maintainer: Ard van Breemen Architecture: i386 Version: 1.9-3ubuntu10 Depends: libc6 (>= 2.4), iproute2 Filename: pool/main/v/vlan/vlan_1.9-3ubuntu10_i386.deb Size: 30212 MD5sum: abb1866d19f02311745867adf8c2111d SHA1: 424b9b6d76c32e1dfecc051580067e219241ca95 SHA256: f2fd43a9a3b605476877bc5e0dd268f8ee994e5db83f6055fc37598a8a90c1f3 Description: user mode programs to enable VLANs on your ethernet devices Description-md5: da2d3e81af12341c15fb4a7267d2457d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: voikko-fi Priority: optional Section: text Installed-Size: 7617 Maintainer: Ubuntu Developers Original-Maintainer: Timo Jyrinki Architecture: i386 Source: suomi-malaga Version: 1.15-1 Breaks: libvoikko1 (<< 2.2-1) Filename: pool/main/s/suomi-malaga/voikko-fi_1.15-1_i386.deb Size: 1299218 MD5sum: 96e543e88c141dea508f526943ddf618 SHA1: 874a2dd477b31733260822f4c8de607ef8d0cf46 SHA256: 24d5aa0b165ddab34634afdf17fa37428f8819e722344e06991dbfa941539e7c Description: Description of Finnish morphology written in Malaga Homepage: http://voikko.puimula.org/ Description-md5: c84bc8b178f2f740b85be0b6048596aa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: vorbis-tools Priority: optional Section: sound Installed-Size: 388 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: i386 Version: 1.4.0-1ubuntu3 Depends: libao4 (>= 1.1.0), libc6 (>= 2.15), libcurl3-gnutls (>= 7.16.2), libflac8 (>= 1.2.1), libogg0 (>= 1.1.0), libspeex1 (>= 1.2~beta3-1), libvorbis0a (>= 1.1.2), libvorbisenc2 (>= 1.1.2), libvorbisfile3 (>= 1.2.3) Filename: pool/main/v/vorbis-tools/vorbis-tools_1.4.0-1ubuntu3_i386.deb Size: 124162 MD5sum: 8695d8c830318ff25be4d5ac3550bf88 SHA1: 236105806632c4e01eb00cc4a9f24ab963945772 SHA256: 129f689190dec084057002204c95e769c149014884282f93bec1c5ac76a39c50 Description: several Ogg Vorbis tools Description-md5: 645372e1792c85c9ec06c90372ff2026 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full, ubuntustudio-audio Package: vorbis-tools-dbg Priority: extra Section: debug Installed-Size: 654 Maintainer: Ubuntu Developers Original-Maintainer: Debian Xiph.org Maintainers Architecture: i386 Source: vorbis-tools Version: 1.4.0-1ubuntu3 Depends: vorbis-tools (= 1.4.0-1ubuntu3) Filename: pool/main/v/vorbis-tools/vorbis-tools-dbg_1.4.0-1ubuntu3_i386.deb Size: 261890 MD5sum: fd0842957e70857373ed1413039ac5c7 SHA1: 7ec5dc90dcea76e9a5a88336710dd9b0caf83354 SHA256: 041ad56592977095d3812b1b9892888c965a48dc7698eb2b5123e968caf6040d Description: several Ogg Vorbis tools (debug files) Description-md5: ae0c23eaaf5a43d7b319f1650e589bc7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: vsftpd Priority: extra Section: net Installed-Size: 363 Maintainer: Ubuntu Developers Original-Maintainer: Daniel Baumann Architecture: i386 Version: 3.0.2-1ubuntu2 Replaces: ftp-server Provides: ftp-server Depends: debconf (>= 0.5) | debconf-2.0, upstart-job, libc6 (>= 2.15), libcap2 (>= 2.10), libpam0g (>= 0.99.7.1), libssl1.0.0 (>= 1.0.0), libwrap0 (>= 7.6-4~), adduser, libpam-modules, netbase Recommends: logrotate Conflicts: ftp-server Filename: pool/main/v/vsftpd/vsftpd_3.0.2-1ubuntu2_i386.deb Size: 114714 MD5sum: 8369e133d45528fc642b85bc804e99f2 SHA1: 9d045dc943fd74ac1556565b9a334ce15ccc8b13 SHA256: a78fc87f5777bb6e858f4eb757f703fd853b8c73965268d05a22d306185045ec Description: lightweight, efficient FTP server written for security Homepage: http://vsftpd.beasts.org/ Description-md5: 81386f72ac91a5ea48f8db0b023f3f9b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: w3m Priority: optional Section: text Installed-Size: 2204 Maintainer: Ubuntu Developers Original-Maintainer: Tatsuya Kinoshita Architecture: i386 Version: 0.5.3-15 Replaces: w3m-ssl, w3mmee Provides: www-browser Depends: libc6 (>= 2.15), libgc1c2 (>= 1:7.2d), libgpm2 (>= 1.20.4), libssl1.0.0 (>= 1.0.0), libtinfo5, zlib1g (>= 1:1.1.4) Recommends: ca-certificates Suggests: w3m-img, mime-support, w3m-el, man-db, cmigemo Conflicts: w3m-ssl Filename: pool/main/w/w3m/w3m_0.5.3-15_i386.deb Size: 857818 MD5sum: 450d347c17e5c95821366e421db47f5b SHA1: a31a0fa449258769e8bc360cc7962a4487661213 SHA256: 7e300888610450514df449a07f0f0a1be87f44be25070db3280132796935d587 Description: WWW browsable pager with excellent tables/frames support Multi-Arch: foreign Homepage: http://sourceforge.net/projects/w3m Description-md5: e87701c222276aabaaad92868f1fd4b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image, server Package: wakeonlan Priority: optional Section: net Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Thijs Kinkhorst Architecture: all Version: 0.41-11 Depends: perl, perl-modules Filename: pool/main/w/wakeonlan/wakeonlan_0.41-11_all.deb Size: 10274 MD5sum: 26253a8c776437ff2fce9fbfceb98c2e SHA1: 7cc057a9220e71ddb18460b07105ec3a166bcf69 SHA256: 6452496a533ce2e0de39cac4f3938e6aa634b301c619c4f4296b0fad0479aaa4 Description: Sends 'magic packets' to wake-on-LAN enabled ethernet adapters Homepage: http://gsd.di.uminho.pt/jpo/software/wakeonlan/ Description-md5: 1f4cb6ce85d821307a46719513c54d04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: walinuxagent Priority: extra Section: python Installed-Size: 244 Maintainer: Ben Howard Original-Maintainer: Microsoft Corporation Architecture: i386 Version: 2.0.4-0ubuntu2 Depends: cloud-init (>= 0.7.3~bzr826-0ubuntu2), linux-image-extra-virtual, openssh-server (>= 1:5.9p1), openssl (>= 1.0), passwd (>= 4.1.4.2), python (>= 2.4), util-linux (>= 2.0), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16) Conflicts: network-manager Filename: pool/main/w/walinuxagent/walinuxagent_2.0.4-0ubuntu2_i386.deb Size: 49896 MD5sum: 1d7ffd4ea0761996cdbb3d2fb9db4b6b SHA1: c9230bf3f80b704df04548a422c16edc60e89c42 SHA256: b75a988cde5ae8f571baf9706687427ab3ab75c0c34ca654405aca195dbd52fa Description: Windows Azure Linux Agent Homepage: http://go.microsoft.com/fwlink/?LinkId=250998 Description-md5: 6c6e08b89d2f59e8bdc1b7bf37e6f34c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wamerican Priority: optional Section: text Installed-Size: 990 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wamerican_7.1-1_all.deb Size: 269024 MD5sum: 4471c47b87e4539ee280668d588f5562 SHA1: 3eb83bad3d6fbaf89ccd76b49372e1b64f0cd541 SHA256: 165f9b96be797f48d23423ea940f848f4404cd5f918f99ecd969560132dc5aca Description: American English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: ea52704df710a9095c3201e3426ac6ff Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-live, ubuntu-usb, kubuntu-desktop, kubuntu-live, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-live, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-dvd-live, edubuntu-usb, xubuntu-live, xubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-desktop, ubuntu-gnome-live Package: wamerican-huge Priority: optional Section: text Installed-Size: 3484 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wamerican-huge_7.1-1_all.deb Size: 912516 MD5sum: cacbfb850fef14cb8dbb2bfb234095e1 SHA1: e2a6e0aaf180f851abbb05335f0836162509c87b SHA256: 6cc8d468567114152da015a0fd7b4d048ab01e86aa5a59078c95ea9cdb55dce0 Description: American English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 7b9e8c1686b63ee9ccfc218dd6bd1eb9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wamerican-insane Priority: optional Section: text Installed-Size: 6744 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wamerican-insane_7.1-1_all.deb Size: 1784550 MD5sum: 180e861a1380980eb826f5902a866625 SHA1: b2d1dba8bb7484217ba52d4910e9a5e0e5ccbe30 SHA256: 679696f5d80670e30fc1b8711eb03b478f6fc8da39189487af6828705f0a0c51 Description: American English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 2ef4d887ab1e548ed5cacf2a749a8479 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wamerican-large Priority: optional Section: text Installed-Size: 1637 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wamerican-large_7.1-1_all.deb Size: 457330 MD5sum: e63df0528bc3b7d54aff4653d3e99d53 SHA1: 622b84b4004050e44990dab33b401a3bd29592e6 SHA256: 3b953fc247672651d47a78bd8461ab8fa19f5951ea653935a46d5df85bb0d6a5 Description: American English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 41b875a0e51934c13cde74f932a1a742 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wamerican-small Priority: optional Section: text Installed-Size: 530 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wamerican-small_7.1-1_all.deb Size: 142280 MD5sum: 47b1dd6a1e36d8c5cfcc6c91a5154ac0 SHA1: 07f116dc2135ba580511b058e182b6028ed08f21 SHA256: f0b31e46a662f34c7b4ef0f1dc75486d1d91fcecc4e1341c21b9428c3ea8d742 Description: American English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 1c81151a87971c46e958626cff3c1389 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: watershed Priority: extra Section: admin Installed-Size: 60 Maintainer: Scott James Remnant Architecture: i386 Version: 7 Replaces: udev (<< 135-1) Depends: libc6 (>= 2.8), initramfs-tools Recommends: udev Filename: pool/main/w/watershed/watershed_7_i386.deb Size: 11490 MD5sum: 51e0e3dc99ec8c5c811ed926586ab6e5 SHA1: d6eff952817786e6834794c1f9ce46959f61d8c4 SHA256: ebef284d150c80061e7a93a02d78029543870e17a0e418dc469dce9c1ffea0a0 Description: reduce superfluous executions of idempotent command Enhances: udev Description-md5: cb52a6ca2eead3558ae69bbed6fc1538 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, ubuntu-usb-live, kubuntu-live, kubuntu-active-live, kubuntu-active-live, kubuntu-active-live, edubuntu-live, edubuntu-usb-live, xubuntu-live, mythbuntu-live, lubuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: wbrazilian Priority: optional Section: text Installed-Size: 2986 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: br.ispell Version: 3.0~beta4-15 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20) Filename: pool/main/b/br.ispell/wbrazilian_3.0~beta4-15_all.deb Size: 658610 MD5sum: 8c4ac8d91391416fd03b78ed7233e5c8 SHA1: aeff5365b049939398e283769de7e82b07fde227 SHA256: d9f425cdeca28af98e23ddf92b6f2bb68b58ac33be4ed874c4a46117c7ac06e5 Description: Brazilian Portuguese wordlist Homepage: http://www.ime.usp.br/~ueda/br.ispell/ Description-md5: 97bc43f03ee25fe7a6834ff99e6b46fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wbritish Priority: optional Section: text Installed-Size: 990 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wbritish_7.1-1_all.deb Size: 268810 MD5sum: ab9333eee9f14a23a3ca660b96de8f05 SHA1: aaee819d3f07039915bee5006ad407ed5a858376 SHA256: a372c60c70a445687bec7dbbb87e161fdb81862e8d0a2e241b560b4b800cad18 Description: British English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 116a19ac7140ec65e353ae54c39f1127 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wbritish-huge Priority: optional Section: text Installed-Size: 3486 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wbritish-huge_7.1-1_all.deb Size: 912736 MD5sum: 917262d5282610ca45bfcd60d8eab45f SHA1: 3dcd802a773e1ae2d2f8a2cb11ff88447a251a33 SHA256: e8f97b74ace6ae75ab971315d85f6599dec2ce9fcb6c8540f1f78e367c2a67f5 Description: British English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 85050475ad6caaedcae3ec7137c18a8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wbritish-insane Priority: optional Section: text Installed-Size: 6746 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wbritish-insane_7.1-1_all.deb Size: 1785102 MD5sum: 932d4ad3d81e715faab1b6ea7f90784d SHA1: e83463996855d633570e7daeacb0429f11bebb89 SHA256: 9c4e4a4906500f5f6ee992ca508a5b9698e81849bb08a7a70cfe81fb37b81b72 Description: British English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: e7a363036baff6823e2161a110e8d0be Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wbritish-large Priority: optional Section: text Installed-Size: 1638 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wbritish-large_7.1-1_all.deb Size: 457276 MD5sum: 3079d0603bb63ea6254b756005862e10 SHA1: 62e61b6b2267c8791f2335f7464007974c574d5e SHA256: 0cb147d0d937701f971611181ad61f66722e380420d8a281275daacf9cc54cb9 Description: British English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: be8efae2ff01a71eb958ffe5a188e4ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wbritish-small Priority: optional Section: text Installed-Size: 531 Maintainer: Ubuntu Developers Original-Maintainer: Don Armstrong Architecture: all Source: scowl Version: 7.1-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/s/scowl/wbritish-small_7.1-1_all.deb Size: 142336 MD5sum: a2f9146fa469e8d549e166d8f246cab7 SHA1: c6c7329f8fe43f40a2c1ac3daa57d008b0e26912 SHA256: d400cfce5273f964a642b787eb8b6f1b46c6fb90e05af223f54bbcd981fad9ff Description: British English dictionary words for /usr/share/dict Homepage: http://wordlist.sourceforge.net/ Description-md5: 8ab966a95d331c273ffb4958a33b8fa0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wbulgarian Priority: optional Section: text Installed-Size: 9499 Maintainer: Ubuntu Developers Original-Maintainer: Damyan Ivanov Architecture: all Source: bgoffice Version: 4.1-3ubuntu1 Provides: wordlist Depends: dictionaries-common, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/b/bgoffice/wbulgarian_4.1-3ubuntu1_all.deb Size: 2101566 MD5sum: 8c6777a61fc93be76b75fe4f1a4214cc SHA1: 40c3d3d4d2fbbb29a1283ada7d9869a501698615 SHA256: 9eb9f4e299bf98b0b7c5738628b6edef093a115aa6a4794c9d0da3d99ec79234 Description: Bulgarian dictionary words for /usr/share/dict Homepage: http://bgoffice.sourceforge.net/ Description-md5: 785682dc7191e37850273578c646b4c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wcatalan Priority: extra Section: text Installed-Size: 6874 Maintainer: Ubuntu Developers Original-Maintainer: Jordi Mallach Architecture: all Source: softcatala-spell Version: 0.20111230b-4 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 1.1) Filename: pool/main/s/softcatala-spell/wcatalan_0.20111230b-4_all.deb Size: 1539844 MD5sum: f5324d31b12cb9645d0e6079819e0b87 SHA1: d2cd997aa91b1884d0c596012e33c57b7b839de8 SHA256: f03b347662038d517910ab22a6a7b20d4a83da438bb16ba5b3bafa8ea92a0feb Description: Catalan dictionary words for /usr/share/dict Homepage: http://www.softcatala.org/wiki/Corrector_ortogr%C3%A0fic Description-md5: 6349e4a22be2d15fc2132e0e70636ae9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wdanish Priority: optional Section: text Installed-Size: 3874 Maintainer: Ubuntu Developers Original-Maintainer: Jonas Smedegaard Architecture: all Source: dsdo Version: 1.6.25-1.1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common Filename: pool/main/d/dsdo/wdanish_1.6.25-1.1_all.deb Size: 816760 MD5sum: b58e0d8b87848a388e6a4fa6c652f788 SHA1: a35daa4b9578afccbaea8e4dc40f3cd53cd6d1aa SHA256: f39d5683bce41f96873227209e4b87b8581e2a8f3e60e9ab6cfacd21d039d113 Description: The Comprehensive Danish Dictionary (DSDO) - wordlist Homepage: http://da.speling.org/ Description-md5: c3a0418e174e5a26862735e32b59b543 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wdiff Priority: optional Section: text Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 1.2.1-2 Depends: libc6 (>= 2.11), libtinfo5 Filename: pool/main/w/wdiff/wdiff_1.2.1-2_i386.deb Size: 28032 MD5sum: 9e060f648e8033c0b445234352625e34 SHA1: be1d8b0326a54cc365b2070e17011f6b64703b9e SHA256: 72e2efe6de99ce3a63bf9499177172fbf7b805e7f62d51dce556f1c912092559 Description: Compares two files word by word Homepage: http://www.gnu.org/software/wdiff/ Description-md5: ff5f47823aed30d56f7ce111a0e2cd14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wdiff-doc Priority: optional Section: doc Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: all Source: wdiff Version: 1.2.1-2 Filename: pool/main/w/wdiff/wdiff-doc_1.2.1-2_all.deb Size: 10564 MD5sum: 9d846ac1ead3dc70fd32503434e47162 SHA1: 0c8b140eb72b3d1e7cd46c5b46878aee6ea28145 SHA256: 76131d2a2309f7a4a99ea6de0c745337dbeff324c648872382f203668c8e3317 Description: Documentation for GNU wdiff Homepage: http://www.gnu.org/software/wdiff/ Description-md5: 30bdf7b296aaa5ae3f3faa4c62a793fd Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: wdutch Priority: optional Section: text Installed-Size: 4199 Maintainer: Ubuntu Developers Original-Maintainer: Thijs Kinkhorst Architecture: all Source: dutch Version: 1:2.10-1 Provides: wordlist Depends: dictionaries-common, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/d/dutch/wdutch_2.10-1_all.deb Size: 1371362 MD5sum: a6b80c2e7390cf2a06f8cd0fd8c6c512 SHA1: 52d37978e3300ac8fb340bdd33b08da2cfdb2e40 SHA256: 665a1d27ab14cd697d8f7703fe66a0c81bd38350d17f46515d9b1873ea936c34 Description: list of Dutch words Homepage: http://www.opentaal.org/ Description-md5: 558760862405deb7c73a30bc741e018f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: webaccounts-extension-common Priority: optional Section: web Installed-Size: 59 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: webaccounts-browser-extension Version: 0.5-0ubuntu2 Depends: unity-control-center-signon | gnome-control-center-signon, dconf-gsettings-backend | gsettings-backend, libaccounts-glib0 (>= 1.1), libc6 (>= 2.1.3), libglib2.0-0 (>= 2.28.0), libjson-glib-1.0-0 (>= 0.13.2) Filename: pool/main/w/webaccounts-browser-extension/webaccounts-extension-common_0.5-0ubuntu2_i386.deb Size: 7930 MD5sum: c0c9244126f80218f3fc5392d0e6e3dd SHA1: fd7de3fb39a2d0639d183c2701e93d16bf563b00 SHA256: c45a91c5d30378fc51d25fa7864c5ee137e48fbedd7e6eef95e1ec4850fc51ad Description: Ubuntu Online Accounts browser extension - common files Homepage: https://launchpad.net/webaccounts-browser-extension Description-md5: 79fef2d5ef3f2287766ce1519a052c65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: webapp-container Priority: optional Section: x11 Installed-Size: 157 Maintainer: Ubuntu Developers Architecture: i386 Source: webbrowser-app Version: 0.23+14.04.20140414-0ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.0.2), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.2.0~rc1) | libqt5quick5-gles (>= 5.2.0~rc1), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1, unity-webapps-qml, libqt5webkit5-qmlwebkitplugin, webbrowser-app (= 0.23+14.04.20140414-0ubuntu1) Filename: pool/main/w/webbrowser-app/webapp-container_0.23+14.04.20140414-0ubuntu1_i386.deb Size: 31882 MD5sum: 74d90fd1121de8fb32b9119410b3cde6 SHA1: 388c10c50b86f192644b03a9cbc2a5a72147d801 SHA256: 007ad13e071aab8d779ec66393c3339f4e0f66ff41eeae2d70748f2e4546851b Description: Ubuntu web applications container Multi-Arch: foreign Homepage: https://launchpad.net/webbrowser-app Description-md5: 743b356525e8f64d674b02949740a3f4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: webbrowser-app Priority: optional Section: x11 Installed-Size: 1572 Maintainer: Ubuntu Developers Architecture: i386 Version: 0.23+14.04.20140414-0ubuntu1 Replaces: qtdeclarative5-ubuntu-ui-extras-browser-plugin (<< 0.22), webbrowser-app-assets Provides: webbrowser-app-assets Depends: libc6 (>= 2.4), libgcc1 (>= 1:4.1.1), libqt5core5a (>= 5.2.0), libqt5gui5 (>= 5.0.2) | libqt5gui5-gles (>= 5.0.2), libqt5network5 (>= 5.0.2), libqt5qml5 (>= 5.0.2), libqt5quick5 (>= 5.2.0~rc1) | libqt5quick5-gles (>= 5.2.0~rc1), libqt5sql5 (>= 5.0.2), libqt5widgets5 (>= 5.0.2), libstdc++6 (>= 4.1.1), qtdeclarative-abi-5-2-1, liboxideqt-qmlplugin (>= 1.0.0~bzr490), qtdeclarative5-dialogs-plugin, qtdeclarative5-qtquick2-plugin, qtdeclarative5-ubuntu-ui-extras-browser-plugin (= 0.23+14.04.20140414-0ubuntu1), qtdeclarative5-ubuntu-ui-toolkit-plugin, qtdeclarative5-window-plugin Conflicts: webbrowser-app-assets Breaks: qtdeclarative5-ubuntu-ui-extras-browser-plugin (<< 0.22) Filename: pool/main/w/webbrowser-app/webbrowser-app_0.23+14.04.20140414-0ubuntu1_i386.deb Size: 565548 MD5sum: c9e30786b30b19bdcd246d1198e0eeb3 SHA1: fcfc44ff86e1ef44e9ee5905faa5a27fdcff8e42 SHA256: e5465b7da6c744bc234717b6b6ead84879752349a3ae9e2260dedb0e6f8b748a Description: Ubuntu web browser Multi-Arch: foreign Homepage: https://launchpad.net/webbrowser-app Description-md5: 29e33a65d91110c950640694b8be3af7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: wfaroese Priority: optional Section: text Installed-Size: 4945 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: ispell-fo Version: 0.4.2-1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20) Filename: pool/main/i/ispell-fo/wfaroese_0.4.2-1_all.deb Size: 1152880 MD5sum: 31b77d081129c01ca7fe38e9bce1b858 SHA1: f991fea565b256b3f81a761d99374a78e6223159 SHA256: 00b99ffbcacf9f4cff7d6d58b54e6e53125ccfb69005e056ebd064c25e232bba Description: Faroese dictionary / wordlist Homepage: http://fo.speling.org Description-md5: e739a676b68fc7ab146524ca92c1864e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wfrench Priority: optional Section: text Installed-Size: 1565 Maintainer: Ubuntu Developers Original-Maintainer: Khalid El Fathi Architecture: all Version: 1.2.3-10 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common, debconf Filename: pool/main/w/wfrench/wfrench_1.2.3-10_all.deb Size: 356088 MD5sum: 7410cf2a393dc0335ad254ee8b2483eb SHA1: 89445a09ddaee792daec4c59fd18aa936816d697 SHA256: 5eea45d8af0e890a6f4f10c42c030fd7104b2a90f46e6fe6939731dff9c9a93e Description: French dictionary words for /usr/share/dict Description-md5: 7d7922bb49bb4f09ca95c06e894ff262 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wgalician-minimos Priority: optional Section: text Installed-Size: 6027 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: ispell-gl Version: 0.5-35 Provides: wordlist Depends: dictionaries-common (>= 1.1), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/i/ispell-gl/wgalician-minimos_0.5-35_all.deb Size: 1245684 MD5sum: fd5ab33923222df0d5f75aa579ec3e0a SHA1: beb429ad96d3b179068543f149273d92a3498f7e SHA256: 39860e16cd0683e4ed8dbd6cae0a19bb88ce2c5beb8261df2dc17d9f22d76710 Description: Wordlist for Galician (minimos) Homepage: http://ispell-gl.sourceforge.net Description-md5: 861fbb7a205c150da37045a5b2bb4f0a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wget Priority: standard Section: web Installed-Size: 640 Maintainer: Ubuntu Developers Original-Maintainer: Noël Köthe Architecture: i386 Version: 1.15-1ubuntu1 Depends: libc6 (>= 2.17), libidn11 (>= 1.13), libssl1.0.0 (>= 1.0.0), libuuid1 (>= 2.16), zlib1g (>= 1:1.1.4) Recommends: ca-certificates Conflicts: wget-ssl Filename: pool/main/w/wget/wget_1.15-1ubuntu1_i386.deb Size: 268076 MD5sum: 88f9f72d28bb07be6759226ff17e3516 SHA1: f33803868262b85ef604475834b18cf809a37056 SHA256: 427f6c7b559fb0161c666b46ca597a9fa9714a58b814f16eed35432eeb857f18 Description: retrieves files from the web Multi-Arch: foreign Homepage: http://www.gnu.org/software/wget/ Description-md5: 63a4a740bcd9e8e94bf661e4f1806e02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: whiptail Priority: important Section: utils Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: i386 Source: newt Version: 0.52.15-2ubuntu5 Depends: libc6 (>= 2.4), libnewt0.52, libpopt0 (>= 1.14), libslang2 (>= 2.2.4) Filename: pool/main/n/newt/whiptail_0.52.15-2ubuntu5_i386.deb Size: 15004 MD5sum: e008b517f99db43b399e6430b045409f SHA1: e0548e48fd0779bcb936018492a32d0cf83e16f3 SHA256: b5c805491c31782d88570728cfd58c33ccbb21b729625720d0f03fc65dd06099 Description: Displays user-friendly dialog boxes from shell scripts Homepage: https://fedorahosted.org/newt/ Description-md5: 845a08009ef9f0ef4ecc0aedd3a36ffa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: whois Priority: optional Section: net Installed-Size: 148 Maintainer: Ubuntu Developers Original-Maintainer: Marco d'Itri Architecture: i386 Version: 5.1.1 Depends: libc6 (>= 2.15), libidn11 (>= 1.13) Filename: pool/main/w/whois/whois_5.1.1_i386.deb Size: 29496 MD5sum: bb219cb33cab1458baaecd515bd9c4f6 SHA1: 48e0f96bfafde16431415e7a075a8fc609bbec61 SHA256: a683ba1b811511affdea118c40e6f14a5f6c3b3c052ad65891be8254f42482e1 Description: intelligent WHOIS client Description-md5: 28e9df99a50bdfe098edfcf773417990 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: whoopsie Priority: optional Section: utils Installed-Size: 110 Maintainer: Evan Dandrea Architecture: i386 Version: 0.2.24.5 Depends: libc6 (>= 2.4), libcurl3 (>= 7.16.2), libglib2.0-0 (>= 2.31.8), libwhoopsie0 (= 0.2.24.5), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), adduser Filename: pool/main/w/whoopsie/whoopsie_0.2.24.5_i386.deb Size: 20746 MD5sum: 3f034417408a2d8c99273be47cc31fe4 SHA1: 7360a54daed536e4f23328469036cd6b927aa2b3 SHA256: ecb33ede0b52e4bfcd93cc49b80e1a64eb3fe7bb42085b73e3d2e528ded99707 Description: Ubuntu error tracker submission Homepage: http://wiki.ubuntu.com/ErrorTracker Description-md5: fa531d23f073cbfda1b0fd75a3ff9d11 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: whoopsie-preferences Priority: optional Section: utils Installed-Size: 73 Maintainer: Evan Dandrea Architecture: i386 Version: 0.12 Replaces: activity-log-manager (<< 0.9.7-0ubuntu4), activity-log-manager-control-center (<< 0.9.6) Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.30.0), libpolkit-gobject-1-0 (>= 0.99), libwhoopsie-preferences0 (= 0.12), libwhoopsie0 Breaks: activity-log-manager (<< 0.9.7-0ubuntu4), activity-log-manager-control-center (<< 0.9.6) Filename: pool/main/w/whoopsie-preferences/whoopsie-preferences_0.12_i386.deb Size: 7146 MD5sum: 5347f030df3722c1919e8221bd1902cf SHA1: 845219505fc7abb57b42e628147432d254639c32 SHA256: 157bf9fed9d37225a95d902ee061058a43b64e35de882898db8cdebbfe051105 Description: System preferences for error reporting Homepage: http://launchpad.net/whoopsie-preferences Description-md5: f886483b693199d61aca58e268d6dd2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb Package: winbind Priority: optional Section: net Installed-Size: 1787 Maintainer: Ubuntu Developers Original-Maintainer: Debian Samba Maintainers Architecture: i386 Source: samba Version: 2:4.1.6+dfsg-1ubuntu2 Replaces: samba-doc (<< 2:4.0.5~), winbind4 Depends: samba (= 2:4.1.6+dfsg-1ubuntu2), sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), libbsd0 (>= 0.3.0), libc6 (>= 2.8), libcomerr2 (>= 1.01), libkrb5-26-heimdal (>= 1.4.0+git20110226), libldap-2.4-2 (>= 2.4.7), libpopt0 (>= 1.14), libtalloc2 (>= 2.0.4~git20101213), libtdb1 (>= 1.2.7+git20101214), libtevent0 (>= 0.9.12), libwbclient0 (= 2:4.1.6+dfsg-1ubuntu2), samba-libs (= 2:4.1.6+dfsg-1ubuntu2) Pre-Depends: multiarch-support Suggests: libnss-winbind, libpam-winbind Conflicts: samba-doc (<< 2:4.0.5~) Filename: pool/main/s/samba/winbind_4.1.6+dfsg-1ubuntu2_i386.deb Size: 403360 MD5sum: 1e2d16cc835cc98b56cb493abd0204a1 SHA1: 86f10045dba0b306bff2fd329ed701c21c17e282 SHA256: 6235c5b9585034234e8ed9f5e1aa63a345260ebc5a84bd203e25e2d173dac525 Description: service to resolve user and group information from Windows NT servers Enhances: libkrb5-26-heimdal Homepage: http://www.samba.org Description-md5: 7716bdbd49ef007f51760bb859065b02 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: samba-server, ubuntustudio-audio Package: wireless-regdb Priority: optional Section: net Installed-Size: 52 Maintainer: Ubuntu Developers Original-Maintainer: Ben Hutchings Architecture: all Version: 2013.02.13-1ubuntu1 Suggests: crda Filename: pool/main/w/wireless-regdb/wireless-regdb_2013.02.13-1ubuntu1_all.deb Size: 6456 MD5sum: 46e0e91934caea23180f1c83b6d99a81 SHA1: 050be82a687e9e6305ab05f952fafeec90c93501 SHA256: 15278495c52fc2495311d4de6a3a094e7dbce5c91bf1e151c2fe87cfd60b2004 Description: wireless regulatory database Multi-Arch: foreign Homepage: http://wireless.kernel.org/en/developers/Regulatory/#The_regulatory_database Description-md5: 9b699ccc910634888e4cf21e28a9467b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, ubuntustudio-desktop, ubuntu-gnome-desktop Package: wireless-tools Priority: optional Section: net Installed-Size: 312 Maintainer: Ubuntu Core Developers Original-Maintainer: Guus Sliepen Architecture: i386 Version: 30~pre9-8ubuntu1 Depends: libc6 (>= 2.15), libiw30 (>= 30~pre1) Filename: pool/main/w/wireless-tools/wireless-tools_30~pre9-8ubuntu1_i386.deb Size: 115082 MD5sum: ec94c2d0d5869066e98203c6a5dd902a SHA1: 76f74156689b5e60e802b29af56ece5b0aa2f908 SHA256: 046d13f1b5cef994470248b173230aeb2c93c51585a0a3f0563ff1bee2f26c49 Description: Tools for manipulating Linux Wireless Extensions Multi-Arch: foreign Homepage: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html Description-md5: 34c7dc532552aa22b7a3e5860d0000e7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: wirish Priority: optional Section: text Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Source: iirish Version: 2.0-22 Depends: dictionaries-common, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/i/iirish/wirish_2.0-22_all.deb Size: 43456 MD5sum: 1c6ac19d12997142375c381ef385322a SHA1: 5794fe2cdaefe451d7d7fff59b5dbdbe6d177541 SHA256: bae6e79af6de1c2c197057884b1e855ae77bdd53907a9f868b4dc011823d5988 Description: Irish (Gaeilge) dictionary words for /usr/share/dict Description-md5: d881dcf4d804e1c33315df8f25a15b9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: witalian Priority: optional Section: text Installed-Size: 1282 Maintainer: Ubuntu Developers Original-Maintainer: Davide G. M. Salvetti Architecture: all Version: 1.7.5ubuntu1 Provides: wordlist Depends: dictionaries-common, debconf (>= 0.5) | debconf-2.0, perl Filename: pool/main/w/witalian/witalian_1.7.5ubuntu1_all.deb Size: 223630 MD5sum: 0b7a721e53dc0a109739262c7d3912e4 SHA1: 1c113d4f1fb18368e6b22eb1e6ce024fdc37a326 SHA256: 93eeddecdc65b5ed7315fcbd0caf9e8aa6d8530d86c49b64d7cc98149a17ef5d Description: Italian dictionary words for /usr/share/dict/ Description-md5: c7c257cb483fe8552eeab0a66c02425b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wmanx Priority: optional Section: text Installed-Size: 343 Maintainer: Ubuntu Developers Original-Maintainer: Alastair McKinstry Architecture: all Source: imanx Version: 0.50-11 Depends: dictionaries-common, debconf | debconf-2.0 Filename: pool/main/i/imanx/wmanx_0.50-11_all.deb Size: 86174 MD5sum: 82f1e0140c54a9405f766e7da16460ac SHA1: 0e78cea569b71b798fcecb9db5be3eac61453a5a SHA256: cb7543dc9b21f068a0ed2eea0992afd26b3f22edeadefb00eb88d940246f0c84 Description: Manx Gaelic dictionary words for /usr/share/dict Description-md5: 9fea7f65d60e955b8e69aa40848e7772 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wngerman Priority: optional Section: text Installed-Size: 4443 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: igerman98 Version: 20120607-1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20.0) Filename: pool/main/i/igerman98/wngerman_20120607-1_all.deb Size: 910100 MD5sum: 9825bccd61c729ce3d8975b5dfd76245 SHA1: 4627930b45cf927a6c2788b1a0c4655ac8f6fb6b SHA256: 1c30f13d3e7f220be857df5f2a68c03f65da54b5c3c88c135ad8e94c4465338f Description: New German orthography wordlist Homepage: http://j3e.de/ispell/igerman98/ Description-md5: d9ca90eeae6360bc46e3a53b73113c43 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wnorwegian Priority: optional Section: text Installed-Size: 20183 Maintainer: Ubuntu Developers Original-Maintainer: Tollef Fog Heen Architecture: all Source: norwegian Version: 2.0.10-5.1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common Filename: pool/main/n/norwegian/wnorwegian_2.0.10-5.1_all.deb Size: 3179256 MD5sum: 66031df258614e38f85d9a1e71c4802c SHA1: 3be71ddb2e168ed39bb6f55adf7e078ec31d557e SHA256: c26b161375074bc92798b86388cc143022bcb22c7e272bfd69c5ea6330b19850 Description: Norwegian word list Description-md5: 808855f90413a16cb734e0a0af6caeeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wodim Priority: optional Section: otherosfs Installed-Size: 845 Maintainer: Ubuntu Developers Original-Maintainer: Joerg Jaspert Architecture: i386 Source: cdrkit Version: 9:1.1.11-2ubuntu3 Replaces: cdrecord, cdrtools-doc Provides: cdrecord Depends: libc6 (>= 2.7), libcap2 (>= 2.10) Recommends: genisoimage Suggests: cdrkit-doc Conflicts: xcdroast (<< 0.98+0alpha15-11) Filename: pool/main/c/cdrkit/wodim_1.1.11-2ubuntu3_i386.deb Size: 367930 MD5sum: 5d401119db780de07ea7e1b30798d8fd SHA1: 03c5f925b8fae961c50b9f8ea26de6070d6c333a SHA256: 9632b98976d44b4a8dd61aec7f20790236be44c478812e6370a0713a4e4dee3c Description: command line CD/DVD writing tool Description-md5: 430a6da0f7f8a42f965bb87ea62dcc74 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-live, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: wogerman Priority: optional Section: text Installed-Size: 1015 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: hkgerman Version: 1:2-28 Replaces: wgerman Provides: wordlist Depends: debconf (>= 0.5.0.0) | debconf-2.0, dictionaries-common (>= 0.20.0) Conflicts: wgerman Filename: pool/main/h/hkgerman/wogerman_2-28_all.deb Size: 305064 MD5sum: 091875703ab90f4e3b99d3132a21df1c SHA1: dd2c7e75d55824da007ff8f2789391c713970a0c SHA256: f759b77c8c176d3f3e2cce94814484d4f0129be9d5afe25eb6d2d977c256a5b8 Description: Old German dictionary for /usr/share/dict Description-md5: cf62a44be00c307a5eeeb204bf6afdbe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wpasupplicant Priority: optional Section: net Installed-Size: 2201 Maintainer: Ubuntu Developers Original-Maintainer: Debian/Ubuntu wpasupplicant Maintainers Architecture: i386 Source: wpa Version: 2.1-0ubuntu1 Depends: libc6 (>= 2.15), libdbus-1-3 (>= 1.1.4), libnl-3-200 (>= 3.2.7), libnl-genl-3-200 (>= 3.2.7), libpcsclite1 (>= 1.0.0), libreadline5 (>= 5.2), libssl1.0.0 (>= 1.0.1), lsb-base (>= 3.0-6), adduser, initscripts (>= 2.88dsf-13.3) Suggests: wpagui, libengine-pkcs11-openssl Filename: pool/main/w/wpa/wpasupplicant_2.1-0ubuntu1_i386.deb Size: 733236 MD5sum: 088aaad1fa5bd34f16c579f6ce6485cb SHA1: 801899e3f36f4b0ef6d1f99caebc374dc873395b SHA256: 8c7a5199d288a9022cd746cd19a97a07c142c788e5508424e3076b23147d31e8 Description: client support for WPA and WPA2 (IEEE 802.11i) Multi-Arch: foreign Homepage: http://w1.fi/wpa_supplicant/ Description-md5: db096b22f8ec5f5c7a8ec614d12ca20a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: wpolish Priority: optional Section: text Installed-Size: 48954 Maintainer: Ubuntu Developers Original-Maintainer: Robert Luberda Architecture: all Source: ipolish Version: 20130519-1 Replaces: manpages-pl (<= 20030214) Provides: wordlist Depends: dictionaries-common (>= 0.20.1), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/i/ipolish/wpolish_20130519-1_all.deb Size: 9709464 MD5sum: 2b8ccd8ea4189175cc95e9ca19de5f9b SHA1: 852092b06565940dad134b62eae8ce2eb7f88e6b SHA256: 6e158124673d05e6a24e2ce90c102e3050a959205d8ef287d96dd54feab9e48b Description: Polish dictionary words for /usr/share/dict Homepage: http://www.sjp.pl/ Description-md5: f4124ba8dfab1092ba729fbaf6105ff3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wportuguese Priority: optional Section: text Installed-Size: 4797 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Source: ispell.pt Version: 20140102-1 Provides: wordlist Depends: dictionaries-common (>= 0.20), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/i/ispell.pt/wportuguese_20140102-1_all.deb Size: 771430 MD5sum: 2bb94922c3b420220d6eafb89215a424 SHA1: f33533c69de2540cb0ad9e29b2651518d63741cd SHA256: 09f6f119077f6971373a2633e19c8a188c028bcddbeae3409294c6142a54e67f Description: European Portuguese wordlist Homepage: http://natura.di.uminho.pt/wiki/doku.php?id=dicionarios:ispell Description-md5: 9f254be893945f232fe586d050c9af9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wspanish Priority: optional Section: text Installed-Size: 892 Maintainer: Ubuntu Developers Original-Maintainer: Agustin Martin Domingo Architecture: all Version: 1.0.26 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20) Filename: pool/main/w/wspanish/wspanish_1.0.26_all.deb Size: 257764 MD5sum: b68a391f14df58f32d8f7a3e4b25e161 SHA1: 2cb5c20516d2b4c41e4f323a184c45508466a717 SHA256: f768f4ac4f81d839700e1345cb52598e84d132462749b9d0943fa10d6eb7428b Description: Spanish dictionary words for /usr/share/dict Description-md5: b18ce74996783e2aca3616ac1beca4eb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wswedish Priority: optional Section: text Installed-Size: 1305 Maintainer: Ubuntu Developers Original-Maintainer: Jeremiah C. Foster Architecture: all Source: swedish Version: 1.4.5-2.1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20) Filename: pool/main/s/swedish/wswedish_1.4.5-2.1_all.deb Size: 306772 MD5sum: 2d74e45e0da5f8909ba635eafc2fc472 SHA1: e3dcd320f97dc8efec1689220668a5b1a6a93c3b SHA256: 7d60562d9e16563d0840cd73b6570cf389ca672f8175ce1682ec7d6f7b5b0568 Description: Swedish dictionary words for /usr/share/dict Description-md5: 41d5123ba7e77d9885609115e5c03949 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wswiss Priority: optional Section: text Installed-Size: 4445 Maintainer: Ubuntu Developers Original-Maintainer: Roland Rosenfeld Architecture: all Source: igerman98 Version: 20120607-1 Provides: wordlist Depends: debconf (>= 0.5) | debconf-2.0, dictionaries-common (>= 0.20.0) Filename: pool/main/i/igerman98/wswiss_20120607-1_all.deb Size: 910508 MD5sum: 18c09c020392a691969207c0926eba1b SHA1: 14afb53d163f5ff41fff550dbbeb6f9f4d84763a SHA256: 796825ce58cae19228ac52d8c897c99fb3c6a3c30b1fbc6d811c93c79a3679e5 Description: Swiss (German) orthography wordlist Homepage: http://j3e.de/ispell/igerman98/ Description-md5: 5bdced0dadba3b35f0cee78805b3229c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wukrainian Priority: optional Section: text Installed-Size: 29208 Maintainer: Ubuntu Developers Original-Maintainer: Євгеній Мещеряков Architecture: all Source: ispell-uk Version: 1.6.5-2 Provides: wordlist Depends: dictionaries-common (>= 1.11.2~), debconf (>= 0.5) | debconf-2.0 Filename: pool/main/i/ispell-uk/wukrainian_1.6.5-2_all.deb Size: 4061612 MD5sum: 66ac908b55e9a1fce5aa365b8d5e1528 SHA1: a8fb33e8c5c9728cbae0b0cc6b4c2fdc8adc5c7e SHA256: 6d00ca93ace095d9dcf12c5cdcea4d656e0305bc9c05a0c2fb81a5cda489a26c Description: Ukrainian dictionary words for /usr/share/dict Homepage: http://ispell-uk.sourceforge.net Description-md5: 4c58b9b69101d950e73ce94f6a1fec14 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: wvdial Priority: optional Section: comm Installed-Size: 263 Maintainer: Ubuntu Developers Original-Maintainer: Thierry Randrianiriana Architecture: i386 Version: 1.61-4.1 Depends: ppp (>= 2.3.0), debconf (>= 0.5.00) | cdebconf, libc6 (>= 2.4), libstdc++6 (>= 4.1.1), libuniconf4.6, libwvstreams4.6-base, libwvstreams4.6-extras, debconf (>= 0.5) | debconf-2.0 Filename: pool/main/w/wvdial/wvdial_1.61-4.1_i386.deb Size: 76616 MD5sum: 4bd62b8b5afedb610ce5aac78ac4d522 SHA1: 0c234445497bd7c7ad9ac67dbac0a07cd6109ffb SHA256: cfecc0074759aac409ce636eb0389026dcec81dc27c6b80288300f7f2f115700 Description: intelligent Point-to-Point Protocol dialer Homepage: http://alumnit.ca/wiki/index.php?page=WvDial Description-md5: b8bf30c8dfd4d09e02af74bf497505d6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: lubuntu-desktop Package: x11-apps Priority: optional Section: x11 Installed-Size: 1886 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 7.7+2 Replaces: bitmap, oclock, transset, x11perf, xbase-clients (<= 1:7.2.ds2-3), xbiff, xcalc, xclipboard, xclock, xconsole, xcursorgen, xditview, xeyes, xgc, xload, xlogo, xmag, xman, xmore, xwd, xwud Depends: libc6 (>= 2.7), libpng12-0 (>= 1.2.13-4), libsm6, libx11-6, libxaw7, libxcursor1 (>> 1.1.2), libxext6, libxft2 (>> 2.1.1), libxkbfile1, libxmu6, libxmuu1, libxrender1, libxt6 (>= 1:1.1.0), cpp Recommends: xbitmaps Suggests: mesa-utils Conflicts: bitmap, oclock, transset, x11perf, xbiff, xcalc, xclipboard, xclock, xconsole, xcursorgen, xditview, xeyes, xgc, xload, xlogo, xmag, xman, xmore, xwd, xwud Filename: pool/main/x/x11-apps/x11-apps_7.7+2_i386.deb Size: 582028 MD5sum: e773c39c0294d632b17fd364bceb1163 SHA1: 638401c44612889802390f3ab54ed43809201e8d SHA256: 4fcb60408983800fdec2581c06d03592af495369ddf58c09d7e02ccd60c1dd74 Description: X applications Description-md5: 5702f23f04bb60fad1ae4604e92691fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-common Priority: optional Section: x11 Installed-Size: 492 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xorg Version: 1:7.7+1ubuntu8 Depends: debconf (>= 0.5) | debconf-2.0, lsb-base (>= 1.3-9ubuntu2) Filename: pool/main/x/xorg/x11-common_7.7+1ubuntu8_all.deb Size: 49776 MD5sum: 446abef36b80fc5f332cf397d2d451d2 SHA1: 62a466734bcbd11774b4c581d136da50c8ad92a2 SHA256: 885343fada846f3209c54055cbdce8a3b16b89198ec7127032c718a7f2181b64 Description: X Window System (X.Org) infrastructure Multi-Arch: foreign Description-md5: c3a0735e67df3065d7cbf88aa39b7ec7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-session-utils Priority: optional Section: x11 Installed-Size: 233 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 7.7+1 Depends: libc6 (>= 2.7), libice6 (>= 1:1.0.0), libsm6, libx11-6, libxaw7, libxmuu1, libxt6 (>= 1:1.1.0), cpp Filename: pool/main/x/x11-session-utils/x11-session-utils_7.7+1_i386.deb Size: 61648 MD5sum: b694aabe40d4b07677bc8a273240e84e SHA1: ee7eba54921f012c8dc31fb1dba4f6b2623eae92 SHA256: 8bc76afde55b2f82064c75836d5275ae11228f568fd1a01c7586d2d2e20be0af Description: X session utilities Description-md5: 8e1733f3dc337562406ab5336cb95a29 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-utils Priority: optional Section: x11 Installed-Size: 550 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 7.7+1 Depends: libc6 (>= 2.15), libfontconfig1 (>= 2.9.0), libfontenc1, libgl1-mesa-glx | libgl1, libx11-6, libx11-xcb1, libxaw7, libxcb-shape0, libxcb1 (>= 1.6), libxcomposite1 (>= 1:0.3-1), libxext6, libxft2 (>> 2.1.1), libxi6, libxinerama1, libxmu6, libxmuu1, libxrandr2 (>= 2:1.2.0), libxrender1, libxt6, libxtst6, libxv1, libxxf86dga1, libxxf86vm1 Suggests: mesa-utils Filename: pool/main/x/x11-utils/x11-utils_7.7+1_i386.deb Size: 220868 MD5sum: 47a200b1c01f97f1d4491bf2a3b03289 SHA1: 837b1ea9b536a611b5852b208f6980134ea54a7e SHA256: b284119fdd1245cfa84db92cf84a59254018ee30897c5143b08f8a399b6642ad Description: X11 utilities Multi-Arch: foreign Description-md5: bf8a6af96a706be8e8bde2b9de07a319 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-xfs-utils Priority: optional Section: x11 Installed-Size: 94 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 7.7+1 Replaces: fslsfonts, fstobdf, showfont, xbase-clients (<= 1:7.2.ds2-3), xfsinfo, xutils (<= 1:7.1.ds.3-1) Depends: libc6 (>= 2.4), libfs6, libx11-6 Conflicts: fslsfonts, fstobdf, showfont, xfsinfo Filename: pool/main/x/x11-xfs-utils/x11-xfs-utils_7.7+1_i386.deb Size: 22864 MD5sum: 255842b64e402bf9d75f0555048fdfc8 SHA1: a5c53caf781620d60d7794b6cfb9e8370a7bf53c SHA256: 7d1f04d7e95964d2af3c059b4318dc819ad1ace58ea3a06a0453dd5449c5b926 Description: X font server utilities Multi-Arch: foreign Description-md5: 5a898b5c3e2c778f4400d6652157d637 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-xkb-utils Priority: optional Section: x11 Installed-Size: 444 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 7.7+1 Replaces: xbase-clients (<= 1:7.2.ds2-3) Depends: libc6 (>= 2.7), libx11-6, libxaw7, libxkbfile1, libxt6 Filename: pool/main/x/x11-xkb-utils/x11-xkb-utils_7.7+1_i386.deb Size: 150368 MD5sum: 306baf4a5a282a4d64a642bd763d8e45 SHA1: 3d66b246591292efcadce66270610ee293f9665d SHA256: 207430024fe107ebdabf8cd6bbf6f567f80892afcf7132a320abb7440cb28b55 Description: X11 XKB utilities Description-md5: a2adce3cb7ed4a10d97bc7fd4558b944 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-xserver-utils Priority: optional Section: x11 Installed-Size: 448 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 7.7+2ubuntu1 Replaces: iceauth, sessreg, x11-xserver-utils-lts-quantal (<< 3:0), x11-xserver-utils-lts-raring (<< 3:0), x11-xserver-utils-lts-saucy (<< 3:0), x11-xserver-utils-lts-trusty (<< 3:0), xbase-clients (<< 1:7.3), xgamma, xhost, xmodmap, xrandr, xrdb, xrefresh, xrgb, xset, xsetmode, xsetpointer, xsetroot, xstdcmap, xutils (<< 1:7.2), xvidtune Depends: libc6 (>= 2.8), libice6 (>= 1:1.0.0), libx11-6, libxaw7, libxcursor1 (>> 1.1.2), libxext6, libxi6, libxmu6, libxmuu1, libxrandr2 (>= 2:1.4.0), libxt6, libxxf86vm1, cpp Suggests: nickle, cairo-5c, xorg-docs-core Conflicts: iceauth, sessreg, xgamma, xhost, xmodmap, xrandr, xrdb, xrefresh, xrgb, xset, xsetmode, xsetpointer, xsetroot, xstdcmap, xvidtune Breaks: x11-xserver-utils-lts-quantal (<< 3:0), x11-xserver-utils-lts-raring (<< 3:0), x11-xserver-utils-lts-saucy (<< 3:0), x11-xserver-utils-lts-trusty (<< 3:0) Filename: pool/main/x/x11-xserver-utils/x11-xserver-utils_7.7+2ubuntu1_i386.deb Size: 144678 MD5sum: 036473103e15336dc289c9aeb417a30c SHA1: 86431c2a80b36c37058cd85439a1add569b93cbd SHA256: 112a3d6f857770259977656f101bb2e2983b99e5fc8bcb4a7d125ee5f15d57ab Description: X server utilities Description-md5: 7bc6b40d32fbe568c9539995f7b1053e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: x11-xserver-utils-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: x11-xserver-utils Filename: pool/main/x/xorg-lts-transitional/x11-xserver-utils-lts-quantal_5_i386.deb Size: 1676 MD5sum: 0e87ee5c13f78d2ccda95abd69081a84 SHA1: 79277792330d3d129140a862be0f103fc2121032 SHA256: fc062e5a40d1de4350ef7a7f8bbc17c2f58ba1d30f4ce41b2ba6750993c9ca87 Description: Transitional package for x11-xserver-utils Description-md5: 1418c6239f4ae3a68035f0c3ae5ccba1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11-xserver-utils-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: x11-xserver-utils Filename: pool/main/x/xorg-lts-transitional/x11-xserver-utils-lts-raring_5_i386.deb Size: 1674 MD5sum: f778305cbfb465f44f9ec57e33395b8f SHA1: 8edf2791d3f9b82345d671aec87110624f73a652 SHA256: abf89f2550e1230b202a1e99a00a2bc349af34ca33dd1b6c58879dbd17c6bf9f Description: Transitional package for x11-xserver-utils Description-md5: 1418c6239f4ae3a68035f0c3ae5ccba1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11-xserver-utils-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: x11-xserver-utils Filename: pool/main/x/xorg-lts-transitional/x11-xserver-utils-lts-saucy_5_i386.deb Size: 1674 MD5sum: 7b6fdcf62f56bb745545ac9e24c960d2 SHA1: 231ee017b773d2ecb4b7dc661aef74b59eaad850 SHA256: f64ad025fa9ba2e7808ad1023f50bfbb7e529d66947b716b124e1fa0ca91a7b3 Description: Transitional package for x11-xserver-utils Description-md5: 1418c6239f4ae3a68035f0c3ae5ccba1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-bigreqs-dev Priority: optional Section: x11 Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-bigreqs Version: 1:1.1.2-1 Filename: pool/main/x/x11proto-bigreqs/x11proto-bigreqs-dev_1.1.2-1_all.deb Size: 12776 MD5sum: f4e21d1a1d7608cc5af5f28a75c41dc7 SHA1: fd3244d6c4916320e7e2dbab41d656c0ff914e95 SHA256: 2e2f56b9eced314c2b33860610db536424b1804a111866f2b17415cbacd3d77b Description: X11 Big Requests extension wire protocol Multi-Arch: foreign Description-md5: 4b14fa03b516756f1b9566d7e041da5c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-composite-dev Priority: optional Section: x11 Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-composite Version: 1:0.4.2-2 Depends: x11proto-core-dev, x11proto-fixes-dev Filename: pool/main/x/x11proto-composite/x11proto-composite-dev_0.4.2-2_all.deb Size: 10462 MD5sum: b6bffad1792ace82c841d23efe9c2261 SHA1: d170606b1f491020815b2841eb44bf37188ebe7e SHA256: ca4a13bcad5c32e5dd166f6f44eacb0504c3558fd2ef7cb1f9c28ac62475abf0 Description: X11 Composite extension wire protocol Multi-Arch: foreign Description-md5: 2d1c932a4af20b53591ebb3032e823df Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-core-dev Priority: optional Section: x11 Installed-Size: 1775 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-core Version: 7.0.24-1 Depends: xorg-sgml-doctools (>= 1:1.5) Filename: pool/main/x/x11proto-core/x11proto-core-dev_7.0.24-1_all.deb Size: 747816 MD5sum: 6164f9d3f3946bf6496ca661cf49d78d SHA1: 3dbd2ef8ffc57150e0821875ed0b5abdbcc4beb7 SHA256: 93096e2e2a6ad0b8f4978b4189d031bc5177dce7f931cd51d33a5f1e27ec8855 Description: X11 core wire protocol and auxiliary headers Multi-Arch: foreign Description-md5: bbced914936af2f7b061d601f3460438 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-damage-dev Priority: optional Section: x11 Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-damage Version: 1:1.2.1-2 Depends: x11proto-fixes-dev, x11proto-core-dev Filename: pool/main/x/x11proto-damage/x11proto-damage-dev_1.2.1-2_all.deb Size: 8286 MD5sum: 00208ad9e3f0dcc2e1fbbc2b31095cca SHA1: 796fd38778b27db0b3c432662b0abb1e19a4c5ff SHA256: 6904141f2b11e0f2fb287dc821130a8eddff8e509b2a647c355b467a4f6860d4 Description: X11 Damage extension wire protocol Multi-Arch: foreign Description-md5: 342607cfda8aaed51e6355f970dac27d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: x11proto-dmx-dev Priority: optional Section: x11 Installed-Size: 59 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-dmx Version: 1:2.3.1-2 Breaks: libdmx-dev (<< 1:1.0.99.1) Filename: pool/main/x/x11proto-dmx/x11proto-dmx-dev_2.3.1-2_all.deb Size: 5848 MD5sum: 05785eefbf82f06a7b6e760990cdc070 SHA1: 5dca0b51ae514a11dfe1eeae264bc231929cd9d3 SHA256: 1558958e5a8f772ad5e39690ea3fbe4c05ccc9f709f55ac5d0af27f8abbeeec9 Description: X11 Distributed Multihead X extension wire protocol Multi-Arch: foreign Description-md5: f8d1758182fccfde9f304c805cd14f0e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-dri2-dev Priority: optional Section: x11 Installed-Size: 61 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-dri2 Version: 2.8-2 Filename: pool/main/x/x11proto-dri2/x11proto-dri2-dev_2.8-2_all.deb Size: 12552 MD5sum: 7c1470fe1a3d110f8237ace6da80c701 SHA1: 786eb519bb882a3fc54345a64e39ef6c58916a89 SHA256: 18815295e317d53ba8e739684731e412a53b55f1be742f990c2c69a82d8ba46c Description: X11 DRI2 extension wire protocol Multi-Arch: foreign Description-md5: f9fbe5a35c1d1a5259e8ba115300fae3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: x11proto-dri3-dev Priority: optional Section: x11 Installed-Size: 49 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-dri3 Version: 1.0-1 Filename: pool/main/x/x11proto-dri3/x11proto-dri3-dev_1.0-1_all.deb Size: 5996 MD5sum: d9be821d5a3d63547aa3a4d361e9b79b SHA1: 9b3aa046c0905d11a22c3b1cc91a268a173c7326 SHA256: 3ba82674b80ab83dd3ac305a9628d608adac2038a07a6da9dff7a88addb3a768 Description: X11 DRI3 extension wire protocol Multi-Arch: foreign Description-md5: fc735f01903e7f10e258bf4a1cf5b3c2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-fixes-dev Priority: optional Section: x11 Installed-Size: 74 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-fixes Version: 1:5.0-2ubuntu2 Depends: x11proto-core-dev, x11proto-xext-dev (>= 7.0.99.1) Filename: pool/main/x/x11proto-fixes/x11proto-fixes-dev_5.0-2ubuntu2_all.deb Size: 14248 MD5sum: 7edaeb36e7264903b3d466b0ffe80e71 SHA1: 1f668507eca69843c2d4c26f7e7eb87f4aa892cb SHA256: f498eb367d11d82e3150c826bc239d789c5e8b42055706c83315c9966bf76ca2 Description: X11 Fixes extension wire protocol Multi-Arch: foreign Description-md5: 646898d46bc47837227c172744a907c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: x11proto-fonts-dev Priority: optional Section: x11 Installed-Size: 248 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-fonts Version: 2.1.2-1 Depends: x11proto-core-dev Filename: pool/main/x/x11proto-fonts/x11proto-fonts-dev_2.1.2-1_all.deb Size: 69686 MD5sum: 05a7b342fb816095731e4b744e7608b9 SHA1: 81ce8b53572c2fe500c601bbbee7cecc8fe1aa3a SHA256: 136c06abbf96f2f6e5b3a721dce2416c0b6a273b319e8473a865935192f7989b Description: X11 font extension wire protocol Multi-Arch: foreign Description-md5: cc3bdc437d256f3f3baa58f182b4680f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-gl-dev Priority: optional Section: x11 Installed-Size: 147 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-gl Version: 1.4.17-1 Replaces: xlibmesa-gl-dev Filename: pool/main/x/x11proto-gl/x11proto-gl-dev_1.4.17-1_all.deb Size: 17892 MD5sum: 9c358e179ec8058d64ff3ba2be9077ac SHA1: c6f775bd0b10cd1cfad71293d0ba9fb35e5a548e SHA256: 6fc8ce114b0e25912207b53d8ee26bcd136ff94801e63b82b903e1a9a3c76ed1 Description: X11 OpenGL extension wire protocol Multi-Arch: foreign Description-md5: 471f1487ed8f7f211b8c62143e8de0ba Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: x11proto-input-dev Priority: optional Section: x11 Installed-Size: 476 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-input Version: 2.3-1 Depends: x11proto-core-dev Filename: pool/main/x/x11proto-input/x11proto-input-dev_2.3-1_all.deb Size: 139090 MD5sum: 0cb019542bbf09f975c6ec6e52ffc7e9 SHA1: 092c18bd8e7c44cb412c2e7dd2a916cbd1ed6d01 SHA256: d80943d8e56d6b984815d01fe2fe6d1fd305464557222d272632c9adaa471a60 Description: X11 Input extension wire protocol Multi-Arch: foreign Description-md5: 33b1f72e2eebea58b8eb47f2d4dd9f65 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-kb-dev Priority: optional Section: x11 Installed-Size: 1241 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-kb Version: 1.0.6-2 Filename: pool/main/x/x11proto-kb/x11proto-kb-dev_1.0.6-2_all.deb Size: 268608 MD5sum: 530c4b9b2a32034643dd479442c7a8f9 SHA1: 6d8b57c97d90fbe70cd4ed5149be1c6fa50f8e83 SHA256: d1bfc998cf8237291eaf913dc703a6cb7ea02d127a347d275767b1d1adc7d654 Description: X11 XKB extension wire protocol Multi-Arch: foreign Description-md5: 61b34fd535c21265b34560bcd6ff324c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-present-dev Priority: optional Section: x11 Installed-Size: 57 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-present Version: 1.0-1 Filename: pool/main/x/x11proto-present/x11proto-present-dev_1.0-1_all.deb Size: 10146 MD5sum: d5a1ae7dbab14132d6cde52d5c4f94fa SHA1: e03ee88af9a93fc53b5d42eaa265b372ef3cc533 SHA256: 91441204bcca48c24f93ced07e79034445cc5b14c9d43f58ecc56b7a6d78538a Description: X11 Present extension wire protocol Multi-Arch: foreign Description-md5: cbe8266cb1085cf81630b0c9ba611fc9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-print-dev Priority: optional Section: x11 Installed-Size: 90 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-print Version: 1.0.5-2 Conflicts: libxp-dev (<< 1:1) Filename: pool/main/x/x11proto-print/x11proto-print-dev_1.0.5-2_all.deb Size: 10716 MD5sum: 5d0d59c0bde3246dd3f1a74692544574 SHA1: af00afbc228d4bd9ee0fb4b2a3941ff4392e39c8 SHA256: 04357d92e5d8901bda667d7368551577d4a824b861733f07f5023ab1416c91e5 Description: X11 Printing extension (Xprint) wire protocol Multi-Arch: foreign Description-md5: 851246615743641b0eb61bcf8ce0164c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-randr-dev Priority: optional Section: x11 Installed-Size: 110 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-randr Version: 1.4.0+git20120101.is.really.1.4.0-0ubuntu1 Filename: pool/main/x/x11proto-randr/x11proto-randr-dev_1.4.0+git20120101.is.really.1.4.0-0ubuntu1_all.deb Size: 32916 MD5sum: 7328146e1709ec922e4643f996a9b456 SHA1: 5c0bcb8b007096717a30d3893020f5c5ff544599 SHA256: 1691cb53d4d61a04705de68efe8c60293b26ad39253af4a2a1fb611c76f56716 Description: X11 RandR extension wire protocol Multi-Arch: foreign Description-md5: a90461e9118057b1d9164b079935b319 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-record-dev Priority: optional Section: x11 Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-record Version: 1.14.2-1 Breaks: libxtst-dev (<< 2:1.0.99.2) Filename: pool/main/x/x11proto-record/x11proto-record-dev_1.14.2-1_all.deb Size: 33648 MD5sum: adb07763dc0b014d29a61afa00f1182c SHA1: 54faae4262790e45514cf536c81805ac0cc2be5a SHA256: de3b09b151622139cf0f06f98323ac4bacc5a5de8f823505b896ecb7ce61f4f8 Description: X11 Record extension wire protocol Multi-Arch: foreign Description-md5: 6b3887131806a4ac56ed17928e5d9244 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-render-dev Priority: optional Section: x11 Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-render Version: 2:0.11.1-2 Depends: x11proto-core-dev Filename: pool/main/x/x11proto-render/x11proto-render-dev_0.11.1-2_all.deb Size: 20148 MD5sum: 69109e51ddbebf87d3d8030067c18c6f SHA1: 1e4f8abf9e672fab93fd8705a8d8e0d998d96920 SHA256: 02080f5bb875bb1cd6e78a09e5b317ced150523596d4df47cc2767fc28fb5173 Description: X11 Render extension wire protocol Multi-Arch: foreign Description-md5: 5cb5db3bd22c00cad26a566ffef6609f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-resource-dev Priority: optional Section: x11 Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-resource Version: 1.2.0-3 Depends: x11proto-core-dev Filename: pool/main/x/x11proto-resource/x11proto-resource-dev_1.2.0-3_all.deb Size: 10662 MD5sum: a48e04c1e8b4a9baa8000c49570052ab SHA1: fb3ca0dc225c0175da63b552b85be102d12b8f22 SHA256: aba4b390d4a210086ac9b1a2d414699c1469c0cff811bc03075a1d51b55e37c8 Description: X11 Resource extension wire protocol Multi-Arch: foreign Description-md5: de611e1c4c80a89c1fbbe1cf2e773faa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-scrnsaver-dev Priority: optional Section: x11 Installed-Size: 104 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-scrnsaver Version: 1.2.2-1 Depends: x11proto-core-dev Breaks: libxss-dev (<< 1:1.2.0) Filename: pool/main/x/x11proto-scrnsaver/x11proto-scrnsaver-dev_1.2.2-1_all.deb Size: 24988 MD5sum: 0f8bf0a5ce49e01656d9b59a86dda9d2 SHA1: 037ef088e6c957fb037afdc15e0a8b60c99e281a SHA256: 2736474f981320b9f2fb10cdc90867996d4fbeb14a3cc42cc450631e5f050fc8 Description: X11 Screen Saver extension wire protocol Multi-Arch: foreign Description-md5: 042ff8fd3c1946d38454e0752c99cd19 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-video-dev Priority: optional Section: x11 Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-video Version: 2.3.2-1 Filename: pool/main/x/x11proto-video/x11proto-video-dev_2.3.2-1_all.deb Size: 17524 MD5sum: 877397ddeabe72bb67ca520ac5c6579f SHA1: b8c6b09e6eaff4499fd68d821d73056dd60be607 SHA256: 00426cdc55650ed2c3dd274c71066f5a6b0c1494a8e2ba6e8ff368f6d95cca74 Description: X11 Video extension wire protocol Multi-Arch: foreign Description-md5: 958221b5cc2ee4a5a42b95d105d951a3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-xcmisc-dev Priority: optional Section: x11 Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xcmisc Version: 1.2.2-1 Filename: pool/main/x/x11proto-xcmisc/x11proto-xcmisc-dev_1.2.2-1_all.deb Size: 12714 MD5sum: ef788883da44bc662e5d2448a2c17070 SHA1: a464628e56273c1045c0d47baba2dca25419b255 SHA256: 8efbb2555aeab2ab1fed96a0bb67b71ab586100735c37fa2cef56afa9fc570df Description: X11 XC-Miscellaneous extension wire protocol Multi-Arch: foreign Description-md5: a858ad076b66ea04c95c8bbc067df5c3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-xext-dev Priority: optional Section: x11 Installed-Size: 936 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xext Version: 7.3.0-1 Depends: x11proto-input-dev, x11proto-core-dev Breaks: libxext-dev (<< 2:1.0.99), libxtst-dev (<< 2:1.0.99) Filename: pool/main/x/x11proto-xext/x11proto-xext-dev_7.3.0-1_all.deb Size: 212136 MD5sum: b362877a46292dfc90745d33d8c0a504 SHA1: 2ff3ef08637dd821cb6ae60df8712bc6710b8ebe SHA256: 03d57b45dbf2bc58bcd99172c0fca7767bfca093204c30c9889d082af08ffbb7 Description: X11 various extension wire protocol Multi-Arch: foreign Description-md5: a7569fd4617dc5309a5f6accfb78680e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: x11proto-xf86bigfont-dev Priority: optional Section: x11 Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xf86bigfont Version: 1.2.0-3 Depends: x11proto-core-dev Filename: pool/main/x/x11proto-xf86bigfont/x11proto-xf86bigfont-dev_1.2.0-3_all.deb Size: 4784 MD5sum: d8868c6ff7588e8508cef96ff5e31126 SHA1: 63a54c19106c60669b8d885564d0329b111d669e SHA256: ecada8467bc9b8647812473fc2039a0a52874eb6daf7201d99b71a00590c9660 Description: X11 Big Fonts extension wire protocol Multi-Arch: foreign Description-md5: 33341e02e7d8607a29206e70be407f62 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-xf86dga-dev Priority: optional Section: x11 Installed-Size: 67 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xf86dga Version: 2.1-3 Depends: x11proto-core-dev Breaks: libxxf86dga-dev (<< 2:1.0.99.1) Filename: pool/main/x/x11proto-xf86dga/x11proto-xf86dga-dev_2.1-3_all.deb Size: 7288 MD5sum: 94b5ae92c982e09132cfb69ebecec580 SHA1: f4e0a739251f45290ecf5e13c3be19aa9fad12d5 SHA256: 2cc8a9dd95d48887143ea6328df065e123bbe3f119084d3f7f3fa29862a97a7d Description: X11 Direct Graphics Access extension wire protocol Multi-Arch: foreign Description-md5: cb56001dfdd6443e2c40c6d66ec6ff0d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-xf86dri-dev Priority: optional Section: x11 Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xf86dri Version: 2.1.1-2 Filename: pool/main/x/x11proto-xf86dri/x11proto-xf86dri-dev_2.1.1-2_all.deb Size: 5630 MD5sum: dd75b0dbecfcb9019f405484d7147dbe SHA1: 58f4292a523428f20de25feca4e81c28ddbea362 SHA256: 53d1eab343d282d168074c786fda119172ff08b3a1955016d97d9adea6c42c20 Description: X11 DRI extension wire protocol Multi-Arch: foreign Description-md5: a5abe843364d4aa7466059cfaf1b7071 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: x11proto-xf86vidmode-dev Priority: optional Section: x11 Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xf86vidmode Version: 2.3.1-2 Breaks: libxxf86vm-dev (<< 1:1.0.99.1) Filename: pool/main/x/x11proto-xf86vidmode/x11proto-xf86vidmode-dev_2.3.1-2_all.deb Size: 6116 MD5sum: 71ac0da02917c644c9515f4b9c0a0199 SHA1: 3236c946132db96aaaeb146c5a09f01cc50b58cb SHA256: 748612c028a962c1e7fbb34e5976b7309afcb4c7f559d5290875469cfabf90f0 Description: X11 Video Mode extension wire protocol Multi-Arch: foreign Description-md5: d3b9513a57f8f9f6705e07bbaf670234 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: kubuntu-full, kubuntu-active-full Package: x11proto-xinerama-dev Priority: optional Section: x11 Installed-Size: 60 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: x11proto-xinerama Version: 1.2.1-2 Breaks: libxinerama-dev (<< 2:1.1) Filename: pool/main/x/x11proto-xinerama/x11proto-xinerama-dev_1.2.1-2_all.deb Size: 4966 MD5sum: ce033ff8d4e9212e6d996c67a8a1204e SHA1: 012bd151f36f6eb57f7c5f0fe069e5dc88d05819 SHA256: 4f586b505d840931e49f9fc934088ace98e32ab47a4c7795d82a3ed686e39aed Description: X11 Xinerama extension wire protocol Multi-Arch: foreign Description-md5: e3a2c33273f73014c3bebf7cc3c6ad5d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xapian-doc Priority: optional Section: doc Installed-Size: 5342 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: all Source: xapian-core Version: 1.2.16-2ubuntu1 Recommends: libxapian-dev (= 1.2.16-2ubuntu1) Filename: pool/main/x/xapian-core/xapian-doc_1.2.16-2ubuntu1_all.deb Size: 1655988 MD5sum: ce09742c3a4329114443d8cefce77ffb SHA1: 259233b5918424d51d2b605dadeaf3660f0f452b SHA256: 0014581845a9ebf05d4f0aab44ab4a657cc22244ae49b733d0d32db41ecfdbf9 Description: Core Xapian documentation Homepage: http://xapian.org/ Description-md5: e76855e484cd6d937e71c4db76b80458 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xapian-examples Priority: optional Section: doc Installed-Size: 467 Maintainer: Ubuntu Developers Original-Maintainer: Olly Betts Architecture: i386 Source: xapian-core Version: 1.2.16-2ubuntu1 Depends: libc6 (>= 2.1.3), libgcc1 (>= 1:4.1.1), libstdc++6 (>= 4.4.0), libxapian22 Recommends: libxapian-dev (= 1.2.16-2ubuntu1) Filename: pool/main/x/xapian-core/xapian-examples_1.2.16-2ubuntu1_i386.deb Size: 23472 MD5sum: b2046a21af0903f0f36186dda48ea09b SHA1: cf2c25db32f402c6a40dea2f223f0308934ce6f7 SHA256: b73d36e03f0a1f5d4d2deab91a3b0d8c38f88b16fa171cc938afdf64682dd4d8 Description: Xapian simple example programs Homepage: http://xapian.org/ Description-md5: 0c45197954382af4e64ed4768737a697 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xauth Priority: standard Section: x11 Installed-Size: 81 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:1.0.7-1ubuntu1 Depends: libc6 (>= 2.4), libx11-6, libxau6, libxext6, libxmuu1 Filename: pool/main/x/xauth/xauth_1.0.7-1ubuntu1_i386.deb Size: 24742 MD5sum: 383a7629368d25b7dbd700c2394f9e9e SHA1: 164f5df94b8dd0036516dc09e796ea21d2b0e676 SHA256: c264187dd0984c2d104efcb158df85d94dcb8262866582fd3ca85279be0529aa Description: X authentication utility Multi-Arch: foreign Description-md5: 20c8545ce7ba7273dbeefb5186103e04 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: xaw3dg Priority: optional Section: x11 Installed-Size: 416 Maintainer: Ubuntu Developers Original-Maintainer: Francesco Paolo Lovergine Architecture: i386 Source: xaw3d Version: 1.5+E-18.2 Depends: libc6 (>= 2.4), libx11-6, libxext6, libxmu6, libxt6 Pre-Depends: multiarch-support Conflicts: axe (<< 6.1.2-2), gv (<< 1:3.5.8-30.1), xaw3d (<= 1.3-6), xfig (<< 1:3.2.4-rel-9) Filename: pool/main/x/xaw3d/xaw3dg_1.5+E-18.2_i386.deb Size: 172916 MD5sum: 441660c25a7a4b181b266115c54522b6 SHA1: 59b4bc702306d9fd0e15e068b49f7bec2067d951 SHA256: 6021747d4f67ddc3c50cf42529fed0bc64df7377f58cd29d4f5389e75c84b6c0 Description: Xaw3d widget set Multi-Arch: same Description-md5: 10202d316ae3ffe0456d7091286d9be5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xaw3dg-dev Priority: optional Section: devel Installed-Size: 820 Maintainer: Ubuntu Developers Original-Maintainer: Francesco Paolo Lovergine Architecture: i386 Source: xaw3d Version: 1.5+E-18.2 Replaces: xaw3dg (<< 1.5+E-16) Depends: xaw3dg (= 1.5+E-18.2), xutils-dev, libx11-dev, libxmu-dev, libxpm-dev, libxt-dev, x11proto-core-dev, x11proto-xext-dev Conflicts: xaw3d-dev Filename: pool/main/x/xaw3d/xaw3dg-dev_1.5+E-18.2_i386.deb Size: 231146 MD5sum: fb389e0a711ba57c4d1718f42c8779d8 SHA1: 237b2af2411294455035062ff01f1879600842bb SHA256: 40864895f4ddbc6977076bd78bc5d773231545d2804dff19a13cec668f22dcb1 Description: Xaw3d widget set development package Multi-Arch: same Description-md5: 0ff76680f649c459f9d2e589e210abec Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xbitmaps Priority: optional Section: x11 Installed-Size: 223 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1.1.1-2 Filename: pool/main/x/xbitmaps/xbitmaps_1.1.1-2_all.deb Size: 28074 MD5sum: 706d6b2d5ebcbee9feaed84d7d1df014 SHA1: 7a128f717912c10c151daeda898177deebcee70a SHA256: ea30b47ef73d66d980d66e1bdad5f9bb7815cf88926634789c7366d54b67587b Description: Base X bitmaps Multi-Arch: foreign Description-md5: 5c825d172ff946c25bc263a05be159f7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xcb-proto Priority: optional Section: libdevel Installed-Size: 660 Maintainer: Ubuntu Developers Original-Maintainer: XCB Developers Architecture: all Version: 1.10-1 Filename: pool/main/x/xcb-proto/xcb-proto_1.10-1_all.deb Size: 77610 MD5sum: 09694e4f08bb3c2bb13c7539d24ebc07 SHA1: 8229980bad2adb4ade529baafa254578ea8c20ae SHA256: 9305eb82b457ce4fc50a3ffd9cfe52d735a5539d0c670384057e81a954ac760a Description: X C Binding - protocol descriptions Multi-Arch: foreign Homepage: http://xcb.freedesktop.org Description-md5: 0a6da0d45e213f3227fca0058bf59393 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xchat-gnome Priority: optional Section: gnome Installed-Size: 1135 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 1:0.30.0~git20131003.d20b8d+really20110821-0.2ubuntu12 Replaces: xchat-gnome-common (<< 1:0.30.0~git20100421.29cc76) Depends: gconf-service, libc6 (>= 2.7), libcairo2 (>= 1.2.4), libcanberra-gtk0 (>= 0.3), libcanberra0 (>= 0.2), libdbus-1-3 (>= 1.0.2), libdbus-glib-1-2 (>= 0.88), libgconf-2-4 (>= 2.31.1), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.37.3), libgtk2.0-0 (>= 2.24.0), libice6 (>= 1:1.0.0), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libpangocairo-1.0-0 (>= 1.14.0), libperl5.18 (>= 5.18.2), libpython2.7 (>= 2.7), libsexy2 (>= 0.1.8), libsm6, libssl1.0.0 (>= 1.0.0), libtcl8.6 (>= 8.6.0), libx11-6, gconf2 (>= 2.28.1-2), xchat-gnome-common (= 1:0.30.0~git20131003.d20b8d+really20110821-0.2ubuntu12) Recommends: xchat-gnome-indicator Filename: pool/main/x/xchat-gnome/xchat-gnome_0.30.0~git20131003.d20b8d+really20110821-0.2ubuntu12_i386.deb Size: 272832 MD5sum: c405c627871d1810ea544e1d0baa03d8 SHA1: e61b51f9aed429db682550471ab998f9a861e6d3 SHA256: 9c2943510315442f4ff699836a263f0640bfdd4b3f0d3f48d57dd76549a26a0a Description: simple and featureful IRC client for GNOME Description-md5: fa07313eea00d91b9ddefe4efde88eea Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xchat-gnome-common Priority: optional Section: gnome Installed-Size: 1084 Maintainer: Ubuntu Desktop Team Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: xchat-gnome Version: 1:0.30.0~git20131003.d20b8d+really20110821-0.2ubuntu12 Depends: gconf2 (>= 2.28.1-2) Filename: pool/main/x/xchat-gnome/xchat-gnome-common_0.30.0~git20131003.d20b8d+really20110821-0.2ubuntu12_all.deb Size: 149964 MD5sum: 593c3aa35fe14611789cd4c6a9a3c594 SHA1: d3d71beab364dd139b3e385b1d45cfd9d3733570 SHA256: a382060dd2b3e6fe8f2654bb30181a3c0a1f4a6292f85b26228bb0a76adc9815 Description: data files for XChat-GNOME Description-md5: 90aeb0da58973e46f49eadd01825654d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xchat-gnome-indicator Priority: optional Section: misc Installed-Size: 53 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: xchat-indicator Version: 0.3.11-0ubuntu4 Depends: libc6 (>= 2.4), libglib2.0-0 (>= 2.28.0), libgtk2.0-0 (>= 2.24.0), libmessaging-menu0 (>= 12.10.0), libunity9 (>= 3.4.6), xchat-gnome (>= 0.26.1-1ubuntu2) Filename: pool/main/x/xchat-indicator/xchat-gnome-indicator_0.3.11-0ubuntu4_i386.deb Size: 7728 MD5sum: ed41b1f1cf313b44d0323b38f2b6d5a6 SHA1: e0b37717dbef255bb22ffff2ad344ec2c4272d9c SHA256: c0fffdc889f80c7677d236d009f47ac5ba4deb230a8bb582e17089efd4e71896 Description: XChat-GNOME Indicator Plugin Enhances: xchat-gnome Homepage: https://launchpad.net/xchat-indicator Description-md5: 14c2b205f9bfbd5bfdce6930d1aeedfb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xcursor-themes Priority: optional Section: x11 Installed-Size: 4088 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1.0.3-1 Filename: pool/main/x/xcursor-themes/xcursor-themes_1.0.3-1_all.deb Size: 486012 MD5sum: 9ad310ea79950882e8c031b64520d689 SHA1: e9184c972e6657b92b20b8a07de0830ecb104346 SHA256: fad132bb23c361480f9df3ec3098df7faf14b24aacdfe02db4a81c13bb17462e Description: Base X cursor themes Description-md5: d55b0b75b3d31697a2beb36f27eaec60 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop Package: xdelta3 Priority: optional Section: utils Installed-Size: 182 Maintainer: Ubuntu Developers Original-Maintainer: A Mennucc1 Architecture: i386 Version: 3.0.7-dfsg-2 Depends: libc6 (>= 2.4), liblzma5 (>= 5.1.1alpha+20120614) Filename: pool/main/x/xdelta3/xdelta3_3.0.7-dfsg-2_i386.deb Size: 74026 MD5sum: 5af83ed17962231d48bd9b01859f479f SHA1: abc95c7a2053f6e6a032dc0d2da0868fbfed6f4f SHA256: 8dace1726af76f02daa15e7b1411aa3c361e4ca633a98aa0fc3d3caa1d2c862c Description: Diff utility which works with binary files Description-md5: ee691dc32e90c3bd989ad440d2196fcc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xdg-user-dirs Priority: optional Section: utils Installed-Size: 1177 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 0.15-1ubuntu3 Depends: libc6 (>= 2.4) Filename: pool/main/x/xdg-user-dirs/xdg-user-dirs_0.15-1ubuntu3_i386.deb Size: 60244 MD5sum: 5f7abaab7f31f2f86ff182a64088ae23 SHA1: 031a4348a888d63a58128331a5c2248238af641e SHA256: 1f532c7ac81caefc6956eb833f2e2f44e5f9507d87998a1230a2fa6f2738c66e Description: tool to manage well known user directories Homepage: http://www.freedesktop.org/wiki/Software/xdg-user-dirs Description-md5: bede57a95f8202be418742bfd703ba9d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active, kubuntu-active-desktop, kubuntu-active-full, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xdg-user-dirs-gtk Priority: optional Section: utils Installed-Size: 100 Maintainer: Ubuntu Developers Original-Maintainer: Sebastian Dröge Architecture: i386 Version: 0.10-1ubuntu1 Depends: libc6 (>= 2.2), libglib2.0-0 (>= 2.35.9), libgtk-3-0 (>= 3.0.0), xdg-user-dirs Filename: pool/main/x/xdg-user-dirs-gtk/xdg-user-dirs-gtk_0.10-1ubuntu1_i386.deb Size: 10030 MD5sum: d0df446aa3da49fe09af288432b3d892 SHA1: 252775036ca811f8cbc39f5c09467e7063a57bce SHA256: 2697226620cbdc1766997b17f8f568dbed9ecb97967bbb6ac6b6f580f0a558df Description: tool to manage well known user directories (Gtk extension) Homepage: http://www.freedesktop.org/wiki/Software/xdg-user-dirs Description-md5: 29d6579970525b2d5aea83508bb9d59c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntu-gnome-desktop Package: xdg-utils Priority: optional Section: utils Installed-Size: 263 Maintainer: Ubuntu Developers Original-Maintainer: Per Olofsson Architecture: all Version: 1.1.0~rc1-2ubuntu7 Recommends: libfile-mimeinfo-perl, x11-utils, x11-xserver-utils Suggests: gvfs-bin Filename: pool/main/x/xdg-utils/xdg-utils_1.1.0~rc1-2ubuntu7_all.deb Size: 65568 MD5sum: ec3863bc034aec1762cb67fdc39774fe SHA1: 67430cfc5977e50374039a71e8e4a29faf1b4a14 SHA256: 4bcaaa4c7fe8af9ef504a1b8ea0b546be016761083f7f39e6f79b5e3b45b6607 Description: desktop integration utilities from freedesktop.org Multi-Arch: foreign Homepage: http://portland.freedesktop.org/ Description-md5: b2d9372f62fa5a8a1219b71092959764 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntustudio-font-meta, ubuntu-gnome-desktop Package: xdiagnose Priority: optional Section: python Installed-Size: 733 Maintainer: Bryce Harrington Architecture: all Version: 3.6.3build2 Replaces: x11-common (<< 1:7.6+7ubuntu1), xorg (<< 1:7.6+7ubuntu1), xserver-xorg-video-intel (<= 2:2.14.0-4ubuntu8) Depends: sysv-rc (>= 2.88dsf-24) | file-rc (>= 0.8.16), python3:any (>= 3.3.2-2~), python, python3-gi (>= 3.2.0-3), gir1.2-gtk-3.0, python3-apport, librsvg2-2, librsvg2-common, policykit-1 Recommends: intel-gpu-tools Conflicts: ubuntu-defaults-nexus7 (<= 0.39), x11-common (<< 1:7.6+7ubuntu1) Filename: pool/main/x/xdiagnose/xdiagnose_3.6.3build2_all.deb Size: 64060 MD5sum: 4b6cf5c3f370ec9019eabcd4556aae13 SHA1: d3bb4a7a20ea2ca7f441f58f3ff53909c5cdc598 SHA256: 9494bfb25576478c382c651b8dbc474f0e6607d9e3d29a66bb27d95eaffd376a Description: X.org diagnosis tool Homepage: http://wiki.ubuntu.com/X Description-md5: ceca96828e411b7ecc73f81dd97854fb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-full, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: xfonts-base Priority: optional Section: x11 Installed-Size: 8280 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:1.0.3 Replaces: xfonts-misc Depends: xfonts-utils (>= 1:7.5+2) Suggests: xfs | xserver Filename: pool/main/x/xfonts-base/xfonts-base_1.0.3_all.deb Size: 6179596 MD5sum: 0d9498b974e915dce5e1fc5bc000156d SHA1: d81c2657d035df7ad1c2d70058d0fc2d5f45777f SHA256: af0090420584c81d901866046bec1b4640ba5211708cdf142cb1666e44797c6a Description: standard fonts for X Description-md5: b523687dc2655def36c6861a16a103b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xfonts-encodings Priority: optional Section: x11 Installed-Size: 668 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:1.0.4-1ubuntu1 Replaces: xfonts-base (<< 1:1.0.0) Depends: x11-common Filename: pool/main/x/xfonts-encodings/xfonts-encodings_1.0.4-1ubuntu1_all.deb Size: 583178 MD5sum: af0561894efc2f2e3037f0d400a05079 SHA1: 5e3356e7c4ba572683a7d3575461e6433607ab5a SHA256: 08e14c8cc65756f0b1b107417797109800b4d64e38bfddccadb6fd41552a535a Description: Encodings for X.Org fonts Multi-Arch: foreign Description-md5: 756f2a9079a3a81226ce262c1c944fd7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xfonts-mathml Priority: extra Section: x11 Installed-Size: 111 Maintainer: Ubuntu Developers Original-Maintainer: Atsuhito KOHDA Architecture: all Version: 6ubuntu1 Depends: xfonts-utils Suggests: fonts-lyx, fonts-stix Filename: pool/main/x/xfonts-mathml/xfonts-mathml_6ubuntu1_all.deb Size: 42466 MD5sum: 84d83d208d53201b2270de6b9feabf56 SHA1: 5401bef576d84c0dbda5722c80ca33e9d875a6c3 SHA256: 05be97f8ae24903dd981c205f29a1f6d063ad5f7a8bf0e5b114ec4912c684a01 Description: Type1 Symbol font for MathML Description-md5: a81cfa3755cf794a60eb7de0d016dae3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, ubuntu-gnome-desktop Package: xfonts-scalable Priority: optional Section: x11 Installed-Size: 532 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:1.0.3-1 Depends: xfonts-utils Suggests: xfs | xserver Conflicts: xfntscl Filename: pool/main/x/xfonts-scalable/xfonts-scalable_1.0.3-1_all.deb Size: 333924 MD5sum: 0c1ddf38d30ef820452a61ca5fceb134 SHA1: 9867602685dffb801aa4f2b80f962467bafd8553 SHA256: bddd15134e30c9cb1f269d3ca462f2c0e15029b5297d5501d67ef168dffa5398 Description: scalable fonts for X Description-md5: 130f2543a116db5cfb1067f413a7dc80 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xfonts-unifont Priority: optional Section: x11 Installed-Size: 2785 Maintainer: Ubuntu Developers Original-Maintainer: Paul Hardy Architecture: all Source: unifont Version: 1:6.3.20131221-1 Replaces: unifont (<< 1:5.1.20080706) Depends: xfonts-utils Suggests: ttf-unifont Conflicts: unifont (<< 1:5.1.20080706) Filename: pool/main/u/unifont/xfonts-unifont_6.3.20131221-1_all.deb Size: 1834784 MD5sum: 6eb6e4728b2c00ef06c9c1a2aab901a7 SHA1: 44902c748f8f1c2325efb2b891f87421a013fa24 SHA256: 59b22c507bb6ecd7ccb04519fe86fc35270c1fa40d5243379ea5e240f3aeb43b Description: PCF (bitmap) version of GNU Unifont Homepage: http://unifoundry.com Description-md5: 8e141e66af37a4f88539c6e40f5177cb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xfonts-utils Priority: optional Section: x11 Installed-Size: 379 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:7.7+1 Depends: libc6 (>= 2.4), libfontenc1, libfreetype6 (>= 2.2.1), libxfont1 (>= 1:1.4.2), zlib1g (>= 1:1.1.4), x11-common, xfonts-encodings Filename: pool/main/x/xfonts-utils/xfonts-utils_7.7+1_i386.deb Size: 72358 MD5sum: ec550248c4f967bc4dfe3f871513703c SHA1: 60a782b31a46b2f391c949a19e917df13c0ade58 SHA256: af365ab4ded38bcc04dfba545f71ce7dd60b70f0f8e4e8425ed3b0a5e400100d Description: X Window System font utility programs Multi-Arch: foreign Description-md5: cfb627fb99a0d0ef5d7b0b2f94423328 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xfpt Priority: extra Section: text Installed-Size: 219 Maintainer: Ubuntu Developers Original-Maintainer: Andreas Metzler Architecture: i386 Version: 0.09-1 Depends: libc6 (>= 2.4) Filename: pool/main/x/xfpt/xfpt_0.09-1_i386.deb Size: 93198 MD5sum: 3084d9110536a9665bc5da6ab40fe5cf SHA1: cf1d1cf200742e805bafb73a09d36bd6b1581f18 SHA256: e0a9506d58e738945812ca59de0366a98e3db3fad716c01baaa58ba672db8f09 Description: generate XML from plain text Description-md5: 4f18f0f9f6e01f72c3d25e523873f3ee Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xfsdump Priority: optional Section: admin Installed-Size: 736 Maintainer: Ubuntu Developers Original-Maintainer: Nathan Scott Architecture: i386 Version: 3.1.1ubuntu2 Depends: libattr1 (>= 2.0.0), libc6 (>= 2.15), libncurses5 (>= 5.5-5~), libtinfo5, libuuid1 (>= 2.16), xfsprogs (>= 2.6.30) Suggests: acl, attr, quota Conflicts: xfsprogs (<< 3.0.0) Filename: pool/main/x/xfsdump/xfsdump_3.1.1ubuntu2_i386.deb Size: 207798 MD5sum: 0e1e92c32fc9c53e2372e5844d191775 SHA1: 3fbd0f3c7a7d7fbf120dfc57ae5822a794038417 SHA256: d7afb242eae650553dba68513dc73ca0e706b684d980d12ad3a35e8030059e5c Description: Administrative utilities for the XFS filesystem Homepage: http://oss.sgi.com/projects/xfs/ Description-md5: 8448ced317c37d3587808bf000f24a98 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xfslibs-dev Priority: extra Section: libdevel Installed-Size: 117 Maintainer: Ubuntu Developers Original-Maintainer: XFS Development Team Architecture: i386 Source: xfsprogs Version: 3.1.9ubuntu2 Depends: libc6-dev | libc-dev, uuid-dev, xfsprogs (>= 3.0.0) Breaks: xfsprogs (<< 3.0.0) Filename: pool/main/x/xfsprogs/xfslibs-dev_3.1.9ubuntu2_i386.deb Size: 23828 MD5sum: cb5858a40466f999383dc07ae0f2976d SHA1: e977e624995f071441983abfe8990c40ab51a43d SHA256: ec63a50e889588edb435ae41e81b0552349edc4993fca2177c5f07caf7c97c2d Description: XFS filesystem-specific static libraries and headers Homepage: http://oss.sgi.com/projects/xfs/ Description-md5: 54fdf1338d81d394bfd209d85009d7c8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xfsprogs Priority: optional Section: admin Installed-Size: 2888 Maintainer: Ubuntu Developers Original-Maintainer: XFS Development Team Architecture: i386 Version: 3.1.9ubuntu2 Replaces: xfsdump (<< 3.0.0) Provides: fsck-backend Depends: libblkid1 (>= 2.17.2), libc6 (>= 2.11), libreadline5 (>= 5.2), libuuid1 (>= 2.16) Suggests: xfsdump, acl, attr, quota Breaks: xfsdump (<< 3.0.0) Filename: pool/main/x/xfsprogs/xfsprogs_3.1.9ubuntu2_i386.deb Size: 523448 MD5sum: df9a268a8133ec49c519f74e4a584bc8 SHA1: 0470ad40b6c61ae51355e4f73dec4588fa2c0a4d SHA256: df7568c0280b7608f430b065f75966be3af9689aef95b5b57a5a4550359208d9 Description: Utilities for managing the XFS filesystem Homepage: http://oss.sgi.com/projects/xfs/ Description-md5: d4c8a52ff3d62c047666981d75366c2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-live, kubuntu-live, kubuntu-active-live, edubuntu-dvd-live, xubuntu-live, mythbuntu-live, ubuntustudio-dvd-live, ubuntu-gnome-live Package: xinetd Priority: extra Section: net Installed-Size: 310 Maintainer: Ubuntu Core Developers Original-Maintainer: Salvo 'LtWorf' Tomaselli Architecture: i386 Version: 1:2.3.15-3ubuntu1 Provides: inet-superserver Depends: libc6 (>= 2.15), libwrap0 (>= 7.6-4~), netbase, update-inetd Recommends: rsyslog | system-log-daemon, logrotate Conflicts: inet-superserver Filename: pool/main/x/xinetd/xinetd_2.3.15-3ubuntu1_i386.deb Size: 101720 MD5sum: 06b028dc7d97ba090d9a66fe142e69d6 SHA1: 4a8d1ece79effecd8079956a27cc7de854c2b490 SHA256: 7edf71c3ffc2c6efcb391075a2f07b6ea6acf4aadc40c0cff20e850c29874a27 Description: replacement for inetd with many enhancements Homepage: http://www.xinetd.org Description-md5: dc305c474ff901c52b71c07c0ec109d0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xinit Priority: optional Section: x11 Installed-Size: 99 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1.3.2-1 Depends: libc6 (>= 2.11), libx11-6, coreutils (>= 7.4-1), x11-common, xauth Recommends: xserver-xorg | xserver, xterm | x-session-manager | x-window-manager | x-terminal-emulator Filename: pool/main/x/xinit/xinit_1.3.2-1_i386.deb Size: 18424 MD5sum: 5a64680146188b69a12aca0d3504f298 SHA1: add298e42e302c7d2ed78458ec34048f4d53ad71 SHA256: c903e662d96792c3fcb3471cf8c16b6f5dd93c70c546830131b6da8544a6422b Description: X server initialisation tool Description-md5: d1a59408a40e4b7d5f1e952907662c93 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xinput Priority: optional Section: x11 Installed-Size: 91 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1.6.1-1 Depends: libc6 (>= 2.7), libx11-6 (>= 2:1.2.99.901), libxi6 (>= 2:1.2.99.4), libxinerama1, libxrandr2 (>= 2:1.2.0) Filename: pool/main/x/xinput/xinput_1.6.1-1_i386.deb Size: 24360 MD5sum: e1e711c114e89f4e1c98d40ec98bebc3 SHA1: 05ef352a86ddd30c9e991d6fec12fd35e4078e7b SHA256: 003b795fb462087bd93378d49dd2015384aa0ce86760cee03be40f53a8b7513d Description: Runtime configuration and test of XInput devices Description-md5: 430b05bbc8c851147aaa5b8f95166a9a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xkb-data Priority: important Section: x11 Installed-Size: 2836 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xkeyboard-config Version: 2.10.1-1ubuntu1 Breaks: libx11-6 (<< 2:1.4.3) Filename: pool/main/x/xkeyboard-config/xkb-data_2.10.1-1ubuntu1_all.deb Size: 294472 MD5sum: 9d44b9643e14b255b16071fbcc4e57ff SHA1: fb8dc1ea1db9ef440d750bb168a8d00d99ec630c SHA256: 831f26a3666a64edd378b0da1d4f1af2842d13a4672bc365d6b6568a95dbc594 Description: X Keyboard Extension (XKB) configuration data Multi-Arch: foreign Homepage: http://www.freedesktop.org/Software/XKeyboardConfig Description-md5: 3253e95e707af859f77590b31f05da3b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: xkb-data-i18n Priority: extra Section: x11 Installed-Size: 2619 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xkeyboard-config Version: 2.10.1-1ubuntu1 Filename: pool/main/x/xkeyboard-config/xkb-data-i18n_2.10.1-1ubuntu1_all.deb Size: 292954 MD5sum: 430f883ab78063c06bd2298016859a0f SHA1: e5b49d82db547d953c2a2d37c983bbb6e2f764df SHA256: 6ebf3cb86dd1206bbd3d890b06c520fcf0ab92a539660f09d3563eca6da65094 Description: X Keyboard Extension (XKB) configuration data translations Multi-Arch: foreign Homepage: http://www.freedesktop.org/Software/XKeyboardConfig Description-md5: ad18c9da1cefd47e5b70e985c477f20e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xml-core Priority: standard Section: text Installed-Size: 188 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: all Version: 0.13+nmu2 Depends: sgml-base (>= 1.26+nmu2), sed (>= 4.1.2-8) Suggests: debhelper (>= 9.20120909) Filename: pool/main/x/xml-core/xml-core_0.13+nmu2_all.deb Size: 23274 MD5sum: 1c3346c29931346fdfc60b64db3f502b SHA1: 0d2b5a2eb86c6f53a9374c7e694e39b85637314e SHA256: c1dbc6d07db2e26821597b5cf67ee2a0d39e42ad8c992f65a5881260d8723d05 Description: XML infrastructure and XML catalog file support Description-md5: 304140a15687273ea24563dfcde030d3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: standard, kubuntu-active, kubuntu-active, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master Package: xmlto Priority: optional Section: text Installed-Size: 135 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Version: 0.0.25-2 Depends: debianutils (>= 1.16), docbook-xml (>= 4.2-8), docbook-xsl (>= 1.64.1.0), libxml2-utils, sgml-base, xsltproc (>= 1.1.12-8), libc6 (>= 2.3.4) Recommends: dblatex | fop, libpaper-utils, zip Suggests: w3m | lynx-cur | links, xmltex (>= 1.9.debian.1) Filename: pool/main/x/xmlto/xmlto_0.0.25-2_i386.deb Size: 30982 MD5sum: 5ecd378e986d2e0d84e867fa12114b16 SHA1: 0424928db9ce5fe3b915ce85db2494a32188382c SHA256: d7f67f0cd1a5a23dbb3d31a0e4df596ad10f99140eef9c5d9c54c33e52341749 Description: XML-to-any converter Multi-Arch: foreign Homepage: https://fedorahosted.org/xmlto/ Description-md5: b2240e3783aa2cfe8124aad28dfb519c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xmltoman Priority: optional Section: devel Installed-Size: 69 Maintainer: Ubuntu Developers Original-Maintainer: Debian QA Group Architecture: all Version: 0.4-3 Depends: libxml-parser-perl Filename: pool/main/x/xmltoman/xmltoman_0.4-3_all.deb Size: 12202 MD5sum: 8e900672469675cb93dc86fc5319f36d SHA1: d0b69dfb0cb64065bb83ec6f471f7133c06e169e SHA256: 101b6a9b4b84b9ab87c71eaa86f6586984a8a8d2faa53f942d1c2548909eae60 Description: simple XML to man converter Homepage: http://sourceforge.net/projects/xmltoman/ Description-md5: b361414227db117d1ded552796462a85 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xorg Priority: optional Section: x11 Installed-Size: 80 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:7.7+1ubuntu8 Provides: x-window-system, x-window-system-core Depends: xserver-xorg (>= 1:7.7+1ubuntu8), libgl1-mesa-glx | libgl1, libgl1-mesa-dri, libglu1-mesa, xfonts-base (>= 1:1.0.0-1), x11-apps, x11-session-utils, x11-utils, x11-xfs-utils, x11-xkb-utils, x11-xserver-utils, xauth, xinit, xfonts-utils, xkb-data, xorg-docs-core, xterm | x-terminal-emulator, x11-common, xinput Recommends: xfonts-scalable (>= 1:1.0.0-1) Suggests: xorg-docs, xfonts-100dpi (>= 1:1.0.0-1), xfonts-75dpi (>= 1:1.0.0-1) Filename: pool/main/x/xorg/xorg_7.7+1ubuntu8_i386.deb Size: 3118 MD5sum: f01d85b5492853d1c6487577892e5503 SHA1: 76905e6fced054f25b222359cf6bf35fceaeb1c2 SHA256: 5de4b4c408223c8b26dae6946fb89c3ac06be00d6cf1ad83544d6a31f2f95c55 Description: X.Org X Window System Description-md5: f5abde5fb283cb96048a3d3a5fe06e17 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xorg-dev Priority: optional Section: x11 Installed-Size: 64 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xorg Version: 1:7.7+1ubuntu8 Depends: libdmx-dev, libfontenc-dev, libfs-dev, libice-dev, libsm-dev, libx11-dev, libxau-dev, libxaw7-dev, libxcomposite-dev, libxcursor-dev, libxdamage-dev, libxdmcp-dev, libxext-dev, libxfixes-dev, libxfont-dev, libxft-dev, libxi-dev, libxinerama-dev, libxkbfile-dev, libxmu-dev, libxmuu-dev, libxpm-dev, libxrandr-dev, libxrender-dev, libxres-dev, libxss-dev, libxt-dev, libxtst-dev, libxv-dev, libxvmc-dev, libxxf86dga-dev, libxxf86vm-dev, x11proto-bigreqs-dev, x11proto-composite-dev, x11proto-core-dev, x11proto-damage-dev, x11proto-dmx-dev, x11proto-fixes-dev, x11proto-fonts-dev, x11proto-gl-dev, x11proto-input-dev, x11proto-kb-dev, x11proto-randr-dev, x11proto-record-dev, x11proto-render-dev, x11proto-resource-dev, x11proto-scrnsaver-dev, x11proto-video-dev, x11proto-xcmisc-dev, x11proto-xext-dev, x11proto-xf86bigfont-dev, x11proto-xf86dga-dev, x11proto-xf86dri-dev, x11proto-xf86vidmode-dev, x11proto-xinerama-dev, xserver-xorg-dev, xtrans-dev, x11-common Filename: pool/main/x/xorg/xorg-dev_7.7+1ubuntu8_all.deb Size: 2886 MD5sum: b50e878bcce5b1098029a6aeb5399592 SHA1: 5d6d0a69d208dcc93fd1e47f742c49bd93fa7ac6 SHA256: d7dee6595456e894246f7851abdd9bee25927a7c8766a63be7703f3d19044288 Description: X.Org X Window System development libraries Description-md5: 00a974084948001400546a402cbefdb1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xorg-docs Priority: optional Section: x11 Installed-Size: 2057 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:1.7-1 Replaces: xprt-xprintorg (<= 1:0.1.0.alpha1-10), xspecs (<= 1:1.2+git20061105-2) Conflicts: xprt-xprintorg (<= 1:0.1.0.alpha1-10) Filename: pool/main/x/xorg-docs/xorg-docs_1.7-1_all.deb Size: 1225830 MD5sum: 88475b68f67fb7cd1a4ec82440c37016 SHA1: cfa363c9f9aba07ccfebc7418871b75b95f635d4 SHA256: 517d837538533b1ac661881365d439e3348cd2bbb765d509c94aacb10c04f331 Description: Miscellaneous documentation for the X.org X Window System Description-md5: 8e446e7efb54922706b8ca2c81cd7cf2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xorg-docs-core Priority: optional Section: x11 Installed-Size: 127 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: xorg-docs Version: 1:1.7-1 Replaces: xorg-docs (<< 1:1.4-5) Suggests: xorg-docs Filename: pool/main/x/xorg-docs/xorg-docs-core_1.7-1_all.deb Size: 42062 MD5sum: 1f73bf325c6bb3cf9003b8abbe1d298a SHA1: 36abb81c27865e93450757e645d9a38023955210 SHA256: cde864eb05ace3b1698c580f0cd75a1af97610a5e62a2f903fa87cb9c410859e Description: Core documentation for the X.org X Window System Description-md5: 37a691694c97a0321d19b964ed2f7f5a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xorg-sgml-doctools Priority: optional Section: x11 Installed-Size: 101 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Version: 1:1.11-1 Filename: pool/main/x/xorg-sgml-doctools/xorg-sgml-doctools_1.11-1_all.deb Size: 12926 MD5sum: 50af86828f27de21901ac305fcbcd97a SHA1: 982de6d8ba452399677ec979cc962f98759090ac SHA256: 2f6463489813c2a08e077a6502453c3252453f7cbdab9f323006e081b33e7ad3 Description: Common tools for building X.Org SGML documentation Multi-Arch: foreign Description-md5: 9b074ec1fd035c058dfb6f238155efeb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xorriso Priority: optional Section: otherosfs Installed-Size: 167 Maintainer: Ubuntu Developers Original-Maintainer: Debian Libburnia packagers Architecture: i386 Source: libisoburn Version: 1.3.2-1ubuntu1 Depends: libc6 (>= 2.3.4), libisoburn1 (= 1.3.2-1ubuntu1), libburn4 (>= 0.7.2), libisofs6 (>= 0.6.24) Suggests: jigit (>= 1.17-2), cdck Filename: pool/main/libi/libisoburn/xorriso_1.3.2-1ubuntu1_i386.deb Size: 113190 MD5sum: d4e0a5ad210b7de720937fa725fb6b38 SHA1: 84a5608b7818ca218161c7c8fe1a0157bd267b60 SHA256: 2b32dc5ad304fa33b6874a017f5fa176c27e50a4f5626857b943e3425e156624 Description: command line ISO-9660 and Rock Ridge manipulation tool Homepage: http://libburnia-project.org Description-md5: 4538911b3f3a5e4314b9eefecd4579e9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-common Priority: optional Section: x11 Installed-Size: 1762 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xorg-server Version: 2:1.15.1-0ubuntu2 Replaces: xserver-common-lts-quantal (<< 3:0), xserver-common-lts-raring (<< 3:0), xserver-common-lts-saucy (<< 3:0), xserver-common-lts-trusty (<< 3:0), xserver-xorg-core (<< 2:1.5.2) Depends: x11-common, xkb-data, x11-xkb-utils Recommends: xfonts-base, xauth Breaks: xserver-common-lts-quantal (<< 3:0), xserver-common-lts-raring (<< 3:0), xserver-common-lts-saucy (<< 3:0), xserver-common-lts-trusty (<< 3:0) Filename: pool/main/x/xorg-server/xserver-common_1.15.1-0ubuntu2_all.deb Size: 27170 MD5sum: 08eaa74918537c080c75edf1e29d0ffc SHA1: a0020e15fc214ff3f03b90291cd47a3ef7831ac2 SHA256: 1f5a2d99d1b6c555235a4935c034fcb2379f8f033224e1318a10fb9e3691c903 Description: common files used by various X servers Description-md5: be03943b6955ee9fae7163ad516c772f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-common-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: all Source: xorg-lts-transitional Version: 3:5 Depends: xserver-common Filename: pool/main/x/xorg-lts-transitional/xserver-common-lts-quantal_5_all.deb Size: 1688 MD5sum: 80015c9db659a0e145f05ab1c76a14af SHA1: d489102d9ff4b42de20a82429339c922479f5e36 SHA256: 20249319a2760bcf267262182ff872c0bfdd40153874b37d65ff5509ad1e5e80 Description: Transitional package for xserver-common Description-md5: 71c1e9a97802e86d097fc4978111de0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-common-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: all Source: xorg-lts-transitional Version: 3:5 Depends: xserver-common Filename: pool/main/x/xorg-lts-transitional/xserver-common-lts-raring_5_all.deb Size: 1680 MD5sum: d512d72ddffffc5322c04c426e7ae2fe SHA1: d56bca14872309cebf353ee92cacae9174e15701 SHA256: effaff37be3d605b501235eeb775d8097bbd3be8cbf69b04b789ec09ed904636 Description: Transitional package for xserver-common Description-md5: 71c1e9a97802e86d097fc4978111de0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-common-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: all Source: xorg-lts-transitional Version: 3:5 Depends: xserver-common Filename: pool/main/x/xorg-lts-transitional/xserver-common-lts-saucy_5_all.deb Size: 1678 MD5sum: 570dfb7bb6f216a9e5541d1498d5e47c SHA1: b44e6d15342a2dfeaf64b196fa666b6924a10ee4 SHA256: 72c2c2af0d17e8d30f8f02c00fd4f31f64f07f5262b108ecb47c2b6043521827 Description: Transitional package for xserver-common Description-md5: 71c1e9a97802e86d097fc4978111de0f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg Priority: optional Section: x11 Installed-Size: 366 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xorg Version: 1:7.7+1ubuntu8 Provides: xserver Depends: xserver-xorg-core (>= 2:1.11), xserver-xorg-video-all | xorg-driver-video, xserver-xorg-input-all | xorg-driver-input, xserver-xorg-input-evdev, libc6 (>= 2.7), xkb-data (>= 1.4), x11-xkb-utils Recommends: libgl1-mesa-dri Filename: pool/main/x/xorg/xserver-xorg_7.7+1ubuntu8_i386.deb Size: 69216 MD5sum: 93edbe61eea9ad0d44a8bbce014538c3 SHA1: 7657110496a1a0e3536f5ae18850f58e80943f5e SHA256: 1ddc3ef28202ae02f1716e51873fdc4ab69b4020e5cbd603d0c96c14fadb2e38 Description: X.Org X server Description-md5: 3d8c1d268e8af6b69f54d86fbd5a3939 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-core Priority: optional Section: x11 Installed-Size: 3641 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xorg-server Version: 2:1.15.1-0ubuntu2 Provides: xorg-input-abi-20, xorg-video-abi-15 Depends: xserver-common (>= 2:1.15.1-0ubuntu2), keyboard-configuration, udev (>= 149), libaudit1 (>= 1:2.2.1), libc6 (>= 2.17), libdrm2 (>= 2.3.1), libgcrypt11 (>= 1.5.1), libgl1-mesa-glx | libgl1, libpciaccess0 (>= 0.12.902), libpixman-1-0 (>= 0.30.0), libselinux1 (>= 2.0.82), libudev1 (>= 183), libxau6, libxdmcp6, libxfont1 (>= 1:1.4.2), libxshmfence1 Recommends: libgl1-mesa-dri (>= 7.10.2-4) Suggests: xfonts-100dpi | xfonts-75dpi, xfonts-scalable Conflicts: xserver-xorg-input-evtouch Breaks: libgl1-mesa-dri (<< 7.10.2-4), libgl1-mesa-dri-experimental (<< 7.10.2-4), libxfixes3 (<< 1:5.0.1), libxi6 (<< 2:1.7.1.901), qt4-x11 (<< 4:4.8.0-1ubuntu2), unity (<< 7.0.2), utouch-frame (<< 2.1.0), utouch-geis (<< 2.2.3), xserver-xorg-input, xserver-xorg-input-2, xserver-xorg-input-2.1, xserver-xorg-input-4, xserver-xorg-input-7, xserver-xorg-input-joystick (<= 1:1.5.0-3), xserver-xorg-input-synaptics (<= 1.2.2-1ubuntu4), xserver-xorg-input-tslib (<= 0.0.6-3), xserver-xorg-input-vmmouse (<= 1:12.6.5-4ubuntu2), xserver-xorg-input-wacom (<= 0.10.5+20100415-1), xserver-xorg-video, xserver-xorg-video-1.0, xserver-xorg-video-1.9, xserver-xorg-video-2, xserver-xorg-video-4, xserver-xorg-video-5, xserver-xorg-video-6, xserver-xorg-video-cyrix (<= 1:1.1.0-8), xserver-xorg-video-i810 (<< 2:2.4), xserver-xorg-video-imstt (<= 1:1.1.0-7), xserver-xorg-video-nsc (<= 1:2.8.3-4), xserver-xorg-video-sunbw2 (<= 1:1.1.0-5), xserver-xorg-video-v4l (<< 1:0.2.0), xserver-xorg-video-vga (<= 1:4.1.0-8) Filename: pool/main/x/xorg-server/xserver-xorg-core_1.15.1-0ubuntu2_i386.deb Size: 1186706 MD5sum: 3e97b00de2015d1e3d2f7f5e14fe1e36 SHA1: dbd12b5592e062d258f22fdbc8599df4662abbc7 SHA256: 9b82053473befe341fc20857a136df36ae854c06e5a90d5ad152eaedbaeb0326 Description: Xorg X server - core server Description-md5: e3826a765918b79dee4b90ec97f9302c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-core-dbg Priority: extra Section: x11 Installed-Size: 13587 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xorg-server Version: 2:1.15.1-0ubuntu2 Depends: xserver-xorg-core (= 2:1.15.1-0ubuntu2) Filename: pool/main/x/xorg-server/xserver-xorg-core-dbg_1.15.1-0ubuntu2_i386.deb Size: 3591144 MD5sum: 8ce9315e14b4b4e6ab658e4269f80e85 SHA1: 7498ee21776feab5a41d57c7d8156bebc8a226f7 SHA256: a506f68fd82d53b497096377ce4fe8df6133c791ed4a44191a76a1476dba06ca Description: Xorg - the X.Org X server (debugging symbols) Description-md5: 748963cc445faabee033c53886a8a0cf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-quantal_5_i386.deb Size: 1536 MD5sum: 5c7a2e2ff5d5cd5a2a06c458ac70f13f SHA1: e04b3aeccdd92429b7cc695de70f63d575edf0be SHA256: 5ed78cd45ca668649af5b22e86e0a475e59328f6c08f700ce719c6f58d5b60fd Description: Transitional package for xserver-xorg-core Description-md5: d57cbac2f4daf340fb8de23a32304db2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-quantal-dbg_5_i386.deb Size: 1544 MD5sum: 06c19bec37a768347c79cfd9bf4b44eb SHA1: e7a66bb68bf99539376685744717879b798db224 SHA256: 27db7575fabde6351e711958457a9665dd0daca390ea1eb07b905faf6e19c05e Description: Transitional package for xserver-xorg-core-dbg Description-md5: 5477207740a1bb6cd8e3d20747a7e7f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-raring_5_i386.deb Size: 1536 MD5sum: 65404bc43c50bcba5cf6fc70c7398ea6 SHA1: 671329f8952f7b22abac744b1dc3b02dad64ef36 SHA256: 38f466f3f344ffc4c32848ed03032cdb42e6a471916adce84a1e915f255d4ea6 Description: Transitional package for xserver-xorg-core Description-md5: d57cbac2f4daf340fb8de23a32304db2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-raring-dbg_5_i386.deb Size: 1542 MD5sum: ae809ae4e2a5bd178e24df05a105acea SHA1: e09eb7222bd5623d1af274e8f0d6ba3da9717436 SHA256: 51afdd63fd9035671a0ddbb4c5d0fd5125fb1537eca410c66a8b56bfd8f2d565 Description: Transitional package for xserver-xorg-core-dbg Description-md5: 5477207740a1bb6cd8e3d20747a7e7f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-saucy_5_i386.deb Size: 1534 MD5sum: 1585b7cea6c63946f78ac3a8ee1d54d0 SHA1: 9773c47faaa1af59a2fc3b22234bee3075fa6744 SHA256: 91d891281241e07f325366ce2e67c8208708f63b9d659ea7c8c43b8a55cec66d Description: Transitional package for xserver-xorg-core Description-md5: d57cbac2f4daf340fb8de23a32304db2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-core-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-core-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-core-lts-saucy-dbg_5_i386.deb Size: 1542 MD5sum: e7906265bb0f21dc547ae189d58967a6 SHA1: 6360a6cbff6331d9919399507171c5fee7265f50 SHA256: e3e244fe6006ff8861c423fd5218f117726695afb2ad4c037aef5a0d3d7a1d59 Description: Transitional package for xserver-xorg-core-dbg Description-md5: 5477207740a1bb6cd8e3d20747a7e7f1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-dev Priority: optional Section: x11 Installed-Size: 1444 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xorg-server Version: 2:1.15.1-0ubuntu2 Depends: libpixman-1-dev (>= 0.27.2), x11proto-core-dev (>= 7.0.22), x11proto-input-dev (>= 2.3), x11proto-xext-dev (>= 7.2.99.901), x11proto-video-dev, x11proto-randr-dev (>= 1.4.0), x11proto-render-dev (>= 2:0.11), x11proto-dri2-dev (>= 2.8), x11proto-gl-dev (>= 1.4.17), x11proto-fonts-dev, x11proto-xinerama-dev, x11proto-kb-dev, x11proto-xf86dri-dev, x11proto-resource-dev (>= 1.2.0), x11proto-scrnsaver-dev, x11proto-xf86bigfont-dev (>= 1.2.0), x11proto-dri3-dev, x11proto-present-dev, libxkbfile-dev, libpciaccess-dev, mesa-common-dev, libmirclient-dev Filename: pool/main/x/xorg-server/xserver-xorg-dev_1.15.1-0ubuntu2_i386.deb Size: 204528 MD5sum: a94938b8f45d7bd8c2e4c9567d6233b0 SHA1: 3595b49a5c78596db70f252cd30be41a1968f62e SHA256: 8817e8c4c1f6029adbcc1e265a955b34b5bae1bc5f3894a1556a7a196a2d46db Description: Xorg X server - development files Description-md5: 241552d78aca8911808aea0707649843 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-dev-lts-quantal_5_i386.deb Size: 1536 MD5sum: efc6409153aa3a4b0a892a18b2222f43 SHA1: aa380ef8debe30accabe710d701ceae2210316f9 SHA256: 3132430aa9652976b9aea832f61c024c90717d86e9265de18c620fc724fd6266 Description: Transitional package for xserver-xorg-dev Description-md5: 3c1481b5ce424114f29f3ad31c6d05a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-dev-lts-raring_5_i386.deb Size: 1536 MD5sum: d8abc51ad71d1c966f53f17319f6b113 SHA1: c0c5dc1f86fdac4303c2e73da2be727dc9f11752 SHA256: 851375658f0a616bbe9e198eb753bd910915b5395ab566e36eb1c08cfc19f60f Description: Transitional package for xserver-xorg-dev Description-md5: 3c1481b5ce424114f29f3ad31c6d05a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-dev-lts-saucy_5_i386.deb Size: 1534 MD5sum: dd38e068f6c32176ef6b909e696fc710 SHA1: 920a658144273302c46621224859658d5badb6d5 SHA256: 6435bbcbfa77069e73f9928a4890aafa1e9b841d9465437c1f8977028e3c2a40 Description: Transitional package for xserver-xorg-dev Description-md5: 3c1481b5ce424114f29f3ad31c6d05a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-glamoregl-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-glamoregl Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-glamoregl-lts-saucy_5_i386.deb Size: 1548 MD5sum: 85316cf3ebd1f7f4e59cc9b75b297f08 SHA1: 22c4e48ea43a7ecdf98da8d09603496e179810a3 SHA256: 786c2102cbf09935cf86dc1597371e4f0f26b94b26c283f4792122b4e1e10e2c Description: Transitional package for xserver-xorg-video-glamoregl Description-md5: c0a4994e7fbd8a2768c11a07f8ae4ffa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-all Priority: optional Section: x11 Installed-Size: 64 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xorg Version: 1:7.7+1ubuntu8 Depends: xserver-xorg-input-evdev, xserver-xorg-input-synaptics, xserver-xorg-input-vmmouse, xserver-xorg-input-wacom Filename: pool/main/x/xorg/xserver-xorg-input-all_7.7+1ubuntu8_i386.deb Size: 4768 MD5sum: ac32cc485d2f792f38f61f047ac7824a SHA1: f2a14ecae8525423839018f00f8a2e8e9c895ade SHA256: 87d1d002666e1ae8b3f073dfd443522703fd256b96becce9d3305010f4909634 Description: X.Org X server -- input driver metapackage Description-md5: 6dc6019c398114619eba5fcd5806f328 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-all-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-all-lts-quantal_5_i386.deb Size: 1542 MD5sum: c637b455c397a3d7c30fd6917f937e03 SHA1: a16765b2df88a726a49ae939b882b544acdbeb0f SHA256: 720d3a3304d250718907acfaf51127834159f274acc3a3852c1b20d114b339c0 Description: Transitional package for xserver-xorg-input-all Description-md5: b4cfde0ab23faa6666000f3c82790e2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-all-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-all-lts-raring_5_i386.deb Size: 1542 MD5sum: a8f0adda32a1edd29c76394a3d5a6a79 SHA1: d795a08d500dd008f8c64c20bf5abde02ec4749d SHA256: 0a65862229178d7b649758e74823f93bd60bfc320960191b2cc5582303940d3f Description: Transitional package for xserver-xorg-input-all Description-md5: b4cfde0ab23faa6666000f3c82790e2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-all-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-all-lts-saucy_5_i386.deb Size: 1542 MD5sum: 6f8ca9a7a9f7527a69a504bf98a47c43 SHA1: 3e15dbb87ff847bf9daab6445802da25f548a513 SHA256: d256099e323f3f5fab4a36e743b46e1cb8bd6c7f098910967f986cc7a08d2a19 Description: Transitional package for xserver-xorg-input-all Description-md5: b4cfde0ab23faa6666000f3c82790e2d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev Priority: optional Section: x11 Installed-Size: 136 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:2.8.2-1ubuntu2 Provides: xorg-driver-input Depends: libc6 (>= 2.7), libmtdev1 (>= 1.1.0), libudev1 (>= 183), xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev_2.8.2-1ubuntu2_i386.deb Size: 29812 MD5sum: 6c0d4b9a7935a9e80f60b51b1b49b9c7 SHA1: 01fbabc289010a8d85ab553c4c55fc1689bf3e8c SHA256: 5e8213ac97961282395bd1ff267aa72c39024a17d23843284f0bffd5bfdd8817 Description: X.Org X server -- evdev input driver Description-md5: b1ff33be36b557401f92e75bd8542eed Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-evdev-dbg Priority: extra Section: debug Installed-Size: 290 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-input-evdev Version: 1:2.8.2-1ubuntu2 Depends: xserver-xorg-input-evdev (= 1:2.8.2-1ubuntu2) Filename: pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev-dbg_2.8.2-1ubuntu2_i386.deb Size: 71348 MD5sum: 8fcce83fd3b1adbcd73476488bbe7bf6 SHA1: a0132b07cb7fb3c706b5234676527b91e92549f3 SHA256: d330f709e55c364dc063d017d1a270c311066d9d76fafc96f8b36a792b9cdf25 Description: X.Org X server -- evdev input driver (development headers) Description-md5: 1387aa7ff670694b709c4967d9abda47 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-dev Priority: optional Section: libdevel Installed-Size: 57 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xserver-xorg-input-evdev Version: 1:2.8.2-1ubuntu2 Filename: pool/main/x/xserver-xorg-input-evdev/xserver-xorg-input-evdev-dev_2.8.2-1ubuntu2_all.deb Size: 5190 MD5sum: 28542e20878ecd1d1d3bba4c451e6f47 SHA1: 84752c27e30599549ba0f74ac165cb0b2df2c2d6 SHA256: 16e574e703fe88128837c7e85291f8297467aa91c996b81d5c748109c4661a8c Description: X.Org X server -- evdev input driver (development headers) Description-md5: 2e3206bb3c027a0b8e6b2e8022db7f99 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-dev-lts-quantal_5_i386.deb Size: 1548 MD5sum: 2471a387a3d93948dc71fa75807a01ee SHA1: e4a0acd5d952c4df349c7c849b6a2766593ba7a4 SHA256: 7e1f3fe6b8130556651d40276bf8e1516f773c73b4f00ee8a0d4300a030573fc Description: Transitional package for xserver-xorg-input-evdev-dev Description-md5: cabddf92fbdb6cc82387545f994d4a08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-dev-lts-raring_5_i386.deb Size: 1544 MD5sum: 1bafcf2b9329ed42d5c5f106eb50345e SHA1: 2c169cdaec67fd947189b45c3db3f8ee00157aac SHA256: 897c0821e84c401ddb646826a35ddac942d835162f493c6d36c233edaa7a1f37 Description: Transitional package for xserver-xorg-input-evdev-dev Description-md5: cabddf92fbdb6cc82387545f994d4a08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-dev-lts-saucy_5_i386.deb Size: 1546 MD5sum: d013e8d01e32812a06ea4d1fccd4f918 SHA1: 7ed95a1b7ffceae71ccb39c7656a17e65c53e454 SHA256: a647e5079bab422d8bad0523dcf076a37f0f6da275b01bb9ef23dbba688ae111 Description: Transitional package for xserver-xorg-input-evdev-dev Description-md5: cabddf92fbdb6cc82387545f994d4a08 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-quantal_5_i386.deb Size: 1544 MD5sum: 5aac24b956ab53824b98f29be598fb8b SHA1: f311c75015d74335f48386e8d1994b2c305139b1 SHA256: f6ae9d0b795ff481ec31081d45b370b9a2430db5413562cf0d0a8be73abd72e3 Description: Transitional package for xserver-xorg-input-evdev Description-md5: 118c847ff1e11f78c35a3e30fd41b408 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-quantal-dbg_5_i386.deb Size: 1554 MD5sum: 87d50f5de91c70526a4e5d9b0b79f739 SHA1: 390d74f421e0bccdb182fac00967353ba06c859b SHA256: 09a0d67f56108f4116c05bb4f57d266a891c8ada62f1229bcefc99549d6ed38f Description: Transitional package for xserver-xorg-input-evdev-dbg Description-md5: ec7423df3299eef9c4b33da46a4685ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-raring_5_i386.deb Size: 1540 MD5sum: a9887c0351168d3bcf1848dd6b20b8aa SHA1: 063e983c1a097254ca70603e608b3fffcb908b98 SHA256: 97af28568a2047c7633fd85f145a71abeff732e1075cd9b51f1b54e2ee5bbd52 Description: Transitional package for xserver-xorg-input-evdev Description-md5: 118c847ff1e11f78c35a3e30fd41b408 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-raring-dbg_5_i386.deb Size: 1552 MD5sum: 29b6d7d18ce036e463f8a3955e966b8f SHA1: 0b03150099c334e92f0eb422adce457c9bcbb54d SHA256: 437771b62eb95458cb91b51d8bcaf0574201c5036f2a0ac0ab5223507f557b96 Description: Transitional package for xserver-xorg-input-evdev-dbg Description-md5: ec7423df3299eef9c4b33da46a4685ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-saucy_5_i386.deb Size: 1544 MD5sum: efeba1d999b79603134ba5f0140eab7d SHA1: f087b3f0c708e376638c6159c2d9ffff434dad90 SHA256: 1c32c05ec9bfbdf47216a6b60462bf10a84c1237a2003f1c1dd2e7f273d6723d Description: Transitional package for xserver-xorg-input-evdev Description-md5: 118c847ff1e11f78c35a3e30fd41b408 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-evdev-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-evdev-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-evdev-lts-saucy-dbg_5_i386.deb Size: 1552 MD5sum: 2b682444f78c7a309335ac54b776ac39 SHA1: 5253f45f1d3d35eb13a64923becc3e35dd3d30b0 SHA256: b1a63c6c48d2ad8a4bf2233f6c763e082fd1e520dfaade5ec3416d2af07a96d7 Description: Transitional package for xserver-xorg-input-evdev-dbg Description-md5: ec7423df3299eef9c4b33da46a4685ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-mouse Priority: optional Section: x11 Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:1.9.0-1build1 Provides: xorg-driver-input Depends: libc6 (>= 2.7), xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-input-mouse/xserver-xorg-input-mouse_1.9.0-1build1_i386.deb Size: 37128 MD5sum: f62c77de1eccee97eaba7839aec4af1a SHA1: 79079a5f17cb804747f03c91b86dbc807155d3c8 SHA256: 4f92e98dd0d8d3920249c0768b8153043535e31274bbd9314d5d37f9af952dcf Description: X.Org X server -- mouse input driver Description-md5: 5fe0e019cb3ffe85c7922a79fcd8a5d4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-mouse-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-mouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-mouse-lts-quantal_5_i386.deb Size: 1546 MD5sum: 973434e91795667915ba6d969b835389 SHA1: 38c27870e6a7d5d3ecf26d56280756f072126ff0 SHA256: 3dc2b7cf5ac1b46eeffb891ed381ef0408dd1799771d68434a8348082717f598 Description: Transitional package for xserver-xorg-input-mouse Description-md5: 94ecb3ec6b7b8c349a13b1e235ee0e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-mouse-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-mouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-mouse-lts-raring_5_i386.deb Size: 1538 MD5sum: 8109e01fbba0636f2456ed7301579f6f SHA1: 8277637b553b78df39c95d505b14a0a05dd77371 SHA256: d621095c7fbcd1050ad76f76eb7ac21bd36623c3de089f9204ea8450d083cb62 Description: Transitional package for xserver-xorg-input-mouse Description-md5: 94ecb3ec6b7b8c349a13b1e235ee0e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-mouse-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-mouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-mouse-lts-saucy_5_i386.deb Size: 1542 MD5sum: 041722028b9054f9481ae4d5a2e835be SHA1: ced647bf66c991d5ee2b8ba2ea802d5dba1cea4c SHA256: 153d3bd98d7547d785c2a9f76d357ca76031b648990a9352d87e69d6cbb6b522 Description: Transitional package for xserver-xorg-input-mouse Description-md5: 94ecb3ec6b7b8c349a13b1e235ee0e55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics Priority: optional Section: x11 Installed-Size: 220 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1.7.4-0ubuntu1 Replaces: xorg-driver-synaptics Provides: xorg-driver-input, xorg-driver-synaptics Depends: udev, libc6 (>= 2.4), libmtdev1 (>= 1.1.0), libx11-6, libxi6 (>= 2:1.2.0), xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902) Suggests: gpointing-device-settings, touchfreeze Conflicts: xorg-driver-synaptics Breaks: kde-config-touchpad (<< 0.8.1-2~) Filename: pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics_1.7.4-0ubuntu1_i386.deb Size: 58868 MD5sum: ac46120cae49cddd8eba6313e246c808 SHA1: 580151a78113a90eed50daa14d7a1e8635612403 SHA256: caced5cf1865d93169aaa9d9a24570dbf984446a1864043c4ca4b9c9e544e4c4 Description: Synaptics TouchPad driver for X.Org server Description-md5: 6f7a84d9a52f4dc44fd0ad7cc265853b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-synaptics-dbg Priority: extra Section: debug Installed-Size: 369 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-input-synaptics Version: 1.7.4-0ubuntu1 Depends: xserver-xorg-input-synaptics (= 1.7.4-0ubuntu1) Filename: pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics-dbg_1.7.4-0ubuntu1_i386.deb Size: 99342 MD5sum: 9997a06baceff1517bc69887f2508bd1 SHA1: 00efe3d840a36f32a52590a6ff4549b42c484493 SHA256: 65d166d18dbc3b38ae321685cdeebf6008b75e2342177b8b4e04bba384fe704b Description: Synaptics TouchPad driver for X.Org server Description-md5: c936b293973e295acf8a1d70dd001072 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-dev Priority: optional Section: libdevel Installed-Size: 66 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: all Source: xserver-xorg-input-synaptics Version: 1.7.4-0ubuntu1 Depends: x11proto-core-dev Filename: pool/main/x/xserver-xorg-input-synaptics/xserver-xorg-input-synaptics-dev_1.7.4-0ubuntu1_all.deb Size: 6470 MD5sum: f0aa2ef5c4c2c9177f03fd3bb0b97355 SHA1: 57fe4024498f46c201eb1f59a9e6895a5073b990 SHA256: a42060be53afcd1d58ce1a8968df0a36c87ef789aaff7e3290081914e5c343a3 Description: Synaptics TouchPad driver for X.Org server (development headers) Description-md5: 95eb93bc0953189d6cf98a189b43a0ca Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-dev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-dev-lts-quantal_5_i386.deb Size: 1558 MD5sum: 620b1b9d216eb6da2339cd20ca37a3a5 SHA1: 42c66e6cbd151b4ca6c383b46803a815b6795db3 SHA256: be05dfecd9b94ee5280362b14351bd2e0dac38b3203668366e96cadf3093d553 Description: Transitional package for xserver-xorg-input-synaptics-dev Description-md5: ed543ee6cbc7ae41efc76068ef81f751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-dev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-dev-lts-raring_5_i386.deb Size: 1554 MD5sum: 756f1a8818eb53c463a44bd1153431dc SHA1: 2076306a1c66f7a302cc114893225d76a6648b62 SHA256: 48100e81fcec07b221cbc398b839577c436e2a7afb9f849173795ef80e446bf9 Description: Transitional package for xserver-xorg-input-synaptics-dev Description-md5: ed543ee6cbc7ae41efc76068ef81f751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-dev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-dev-lts-saucy_5_i386.deb Size: 1554 MD5sum: 8fd6348ced80665a4760d066410fcfa2 SHA1: 9631a3a33b9c2c5d01fe682225e4321698a60308 SHA256: 9fb0e1045f84636b338eecb4c20dd7c9e92d3d1a99fd175082e64adee321afc8 Description: Transitional package for xserver-xorg-input-synaptics-dev Description-md5: ed543ee6cbc7ae41efc76068ef81f751 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-quantal_5_i386.deb Size: 1548 MD5sum: c7b583a800747ef14766c625fb65a4ff SHA1: 42f0a40c348601e789cb039517f0ec86b5ba39dc SHA256: f4b3040361f064446dcd64a2a01b73869325947ee516e087997d65a8af6ce953 Description: Transitional package for xserver-xorg-input-synaptics Description-md5: a8b4cc530842e39a894b0328ddf56df8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-quantal-dbg_5_i386.deb Size: 1560 MD5sum: 3045bc45078057350985ede68ebaf0f3 SHA1: f5750f6c99070d6edb0eb6ba8c804ff9a238db82 SHA256: 52408ecdc023653d0fd6e0078756538b23d66a0c1830ad2618fe1b7dd62fd51b Description: Transitional package for xserver-xorg-input-synaptics-dbg Description-md5: bc02f5feb3f1dcceada4b172abe2987d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-raring_5_i386.deb Size: 1550 MD5sum: 52d830e74ba82d9ecc6e07a67a404cf5 SHA1: 42df3c8ad14448a8c6e097fcc1f013daf9952179 SHA256: b9d6669143f40f4fe3a82d4b55e4dbbc5f8ca96e841bfe98038559e576e642e7 Description: Transitional package for xserver-xorg-input-synaptics Description-md5: a8b4cc530842e39a894b0328ddf56df8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-raring-dbg_5_i386.deb Size: 1560 MD5sum: 5c4494f6d0cb5b38d0650cb6221764de SHA1: 696c10c802bca0c3555262a5047abda1b2957155 SHA256: 4a835fb6a9e6348135a559296411e2b1d46db4baebe05c99ccbe1863c47085e2 Description: Transitional package for xserver-xorg-input-synaptics-dbg Description-md5: bc02f5feb3f1dcceada4b172abe2987d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-saucy_5_i386.deb Size: 1546 MD5sum: 92feeb9ca1ff0631c8f12475f97e5838 SHA1: eb8c388f7390704850f9b425e3cf563a51d8b5b7 SHA256: 5ae00b5c4cc2b225dfc767e2ed291b74f02990d1b4fefce776c5bffc5607c1d2 Description: Transitional package for xserver-xorg-input-synaptics Description-md5: a8b4cc530842e39a894b0328ddf56df8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-synaptics-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-synaptics-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-synaptics-lts-saucy-dbg_5_i386.deb Size: 1556 MD5sum: 10bda681ea64ac98746a05b1a4ce97ea SHA1: 6a2b244d4e1d6c3db8f1c1676232a694c2e19df2 SHA256: 37702405ff20f5867afcea941d59300a3ceaa9c91498dad66b6f6a136bcff56e Description: Transitional package for xserver-xorg-input-synaptics-dbg Description-md5: bc02f5feb3f1dcceada4b172abe2987d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-vmmouse Priority: optional Section: x11 Installed-Size: 112 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:13.0.0-1build1 Provides: xorg-driver-input Depends: libc6 (>= 2.7), xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902), xserver-xorg-input-mouse, udev Filename: pool/main/x/xserver-xorg-input-vmmouse/xserver-xorg-input-vmmouse_13.0.0-1build1_i386.deb Size: 13460 MD5sum: 42595c58470a9949d8af8c15e93b71ee SHA1: e44cc2798aef6f57f6be4608aba944c6b870d162 SHA256: 26b778b7979d29c83a21f7a6da27b5f67ad3522b1a7c3442e08877ab2261c101 Description: X.Org X server -- VMMouse input driver to use with VMWare Description-md5: aabb1c4203e92983f6cfdcb6e9300e31 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-vmmouse-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-vmmouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-vmmouse-lts-quantal_5_i386.deb Size: 1546 MD5sum: 3beae46dfc2752bfc557abd38b954e52 SHA1: 665e5a4855d5f74cecb74466f5496ad2d0185fa6 SHA256: 3f60fdb284a2b90cfee72f2e2f833c4176a5b4f67c42c8b1f669f217b9ebbf0e Description: Transitional package for xserver-xorg-input-vmmouse Description-md5: e3f250f6137528d576336544e65156b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-vmmouse-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-vmmouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-vmmouse-lts-raring_5_i386.deb Size: 1546 MD5sum: c4c7e2c5f826e984514a3d8025365031 SHA1: bcc174d4d1d89ceeddda40c1ed99c5a71467e51c SHA256: 4cffbd325a8f5ec9e2c362a42341780ec679ca1db28bde9de4cbf778e2a763ec Description: Transitional package for xserver-xorg-input-vmmouse Description-md5: e3f250f6137528d576336544e65156b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-vmmouse-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-vmmouse Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-vmmouse-lts-saucy_5_i386.deb Size: 1544 MD5sum: bffc996ee5ede7841f965ccc396a9f34 SHA1: 25ad5b25ad8cd5bea52c5ceb3a0a0c1e7761b3aa SHA256: cd13cf1594691a0e284882b789f94893a769881b18624454c3f7c6ac04c7bafd Description: Transitional package for xserver-xorg-input-vmmouse Description-md5: e3f250f6137528d576336544e65156b9 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-void Priority: optional Section: x11 Installed-Size: 68 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:1.4.0-1build3 Provides: xorg-driver-input Depends: libc6 (>= 2.4), xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-input-void/xserver-xorg-input-void_1.4.0-1build3_i386.deb Size: 6866 MD5sum: c92263b9099b667025c22ba2f0db4458 SHA1: 70f624497f90873bbe2ca856e37d149095fa5c0e SHA256: 512ad607fb62553d72c7e4ca187a706083341f2391afce3747bcbf12cd7870a8 Description: X.Org X server -- void input driver Description-md5: c1f2dfee72e5d90aa9febdfaa8f146c1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-void-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-void Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-void-lts-quantal_5_i386.deb Size: 1544 MD5sum: d57ffb5820c388272cc8fe7ab50d23c5 SHA1: 3a813ab322b10b226f645ddbfb322110a7cf0a05 SHA256: bd30b5ac44361afbe4429d88d6cd565ffbba4fc0c849f887114575e3b322e085 Description: Transitional package for xserver-xorg-input-void Description-md5: d6ea818044154ad8b9de208b13e01f81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-void-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-void Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-void-lts-raring_5_i386.deb Size: 1542 MD5sum: a42c6da2477803a63797fbe02676b791 SHA1: 5d7ab94b87f24d9278bcb019164266ed56c5e481 SHA256: 715135d27cbb37ecc57285a46437696a36bc74e836d60769ae7c5ebde792c4fa Description: Transitional package for xserver-xorg-input-void Description-md5: d6ea818044154ad8b9de208b13e01f81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-void-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-void Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-void-lts-saucy_5_i386.deb Size: 1542 MD5sum: 423a8082629934e6fc7271c4e7fbf9b5 SHA1: c27a63111867b566dd08b01ee3d575f40ba03927 SHA256: 837def740616beb0358cfd86f3b0db94a79c51c88e0c2440559cae9711fa6207 Description: Transitional package for xserver-xorg-input-void Description-md5: d6ea818044154ad8b9de208b13e01f81 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom Priority: optional Section: x11 Installed-Size: 290 Maintainer: Ubuntu X-SWAT Original-Maintainer: Ron Lee Architecture: i386 Source: xf86-input-wacom Version: 1:0.23.0-0ubuntu2 Replaces: wacom-tools (<< 0.10.0) Provides: xorg-driver-input Depends: xorg-input-abi-20, xserver-xorg-core (>= 2:1.14.99.902), libc6 (>= 2.4), libx11-6, libxi6 (>= 2:1.2.0), libxinerama1, libxrandr2 (>= 2:1.2.0) Suggests: xinput Conflicts: wacom-tools (<< 0.10.0) Filename: pool/main/x/xf86-input-wacom/xserver-xorg-input-wacom_0.23.0-0ubuntu2_i386.deb Size: 75622 MD5sum: dfb47c1209988855087eadc287928bd1 SHA1: 76cdd1eca12479b5e1da747d43a08260c82f7e61 SHA256: 81138f74f7bb27eb71755b77f358384b955dfb82319f9fd3d477612d3c636ba2 Description: X.Org X server -- Wacom input driver Homepage: http://linuxwacom.sf.net Description-md5: 990a6fd67780d38db31b26b3018b5519 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-input-wacom-dbg Priority: extra Section: debug Installed-Size: 537 Maintainer: Ubuntu X-SWAT Original-Maintainer: Ron Lee Architecture: i386 Source: xf86-input-wacom Version: 1:0.23.0-0ubuntu2 Depends: xserver-xorg-input-wacom (= 1:0.23.0-0ubuntu2) Filename: pool/main/x/xf86-input-wacom/xserver-xorg-input-wacom-dbg_0.23.0-0ubuntu2_i386.deb Size: 152202 MD5sum: a975baf5d64348db45e857beba9fea69 SHA1: 0c56471abf2eb84abd0aab622cf306527d611561 SHA256: 4e9627403f8d025bd1571c76fa926e20f54d2a7a9bf9f10996d7b929e51ef70f Description: X.Org X server -- Wacom input driver Homepage: http://linuxwacom.sf.net Description-md5: 33116a9dd722b7618ab0bb40981493d7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-quantal_5_i386.deb Size: 1548 MD5sum: 1c4f2c13bbb3ab5ee8b080db874f99f1 SHA1: a1334e56bf29f8bab49eada316265794350bdd0c SHA256: 70dc9b03a5aa6dd874231ac52135dcae420a6be4007d33cba482e32823a195c1 Description: Transitional package for xserver-xorg-input-wacom Description-md5: 0e48d825b09965770bddefda0aa34b9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-quantal-dbg_5_i386.deb Size: 1558 MD5sum: d44484b81bf8d4c0616841f21c103e5d SHA1: 43895fdd5b6789600b68f57f612dfb2c0dd09f60 SHA256: cbb0f73c20b2780f3a686b5204f98071262d66e1b1caf3af2b0fb212d7108e01 Description: Transitional package for xserver-xorg-input-wacom-dbg Description-md5: 0aecf782ddf8c4e97ae87f1f42a468f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-raring_5_i386.deb Size: 1544 MD5sum: 9dc614a6eec633629a4f7088bd425296 SHA1: 8519bff975a46edbc6e9f823728d4b336c616577 SHA256: 77dd77342f86ea87fcbf2ced1f0850bd5691c679918ffa40e74b1efc2de2e9e2 Description: Transitional package for xserver-xorg-input-wacom Description-md5: 0e48d825b09965770bddefda0aa34b9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-raring-dbg_5_i386.deb Size: 1550 MD5sum: ee3116ad4ce5b5b4076083510f2daf53 SHA1: 69773b6f96a22ca4bf0e8a3be0a27c75c0237d63 SHA256: 05e337fab1a27b8268e81c84a2cc1d226295e38a921c50e9dc9b53da38e1cffc Description: Transitional package for xserver-xorg-input-wacom-dbg Description-md5: 0aecf782ddf8c4e97ae87f1f42a468f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-saucy_5_i386.deb Size: 1544 MD5sum: 05c200954772c5110480a769a6f20e09 SHA1: 9e4c2bffe2e8d46d6c396d40bce37618c940b02b SHA256: f0c9691783696faacc7d5584afa1fba6c57ab264b0bb1f39108b14cbc7394439 Description: Transitional package for xserver-xorg-input-wacom Description-md5: 0e48d825b09965770bddefda0aa34b9e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-input-wacom-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-input-wacom-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-input-wacom-lts-saucy-dbg_5_i386.deb Size: 1550 MD5sum: 3c0bf62a983ba3d19e9b84c958d4511c SHA1: 7a0b613c00b76cc425e7113f5ceee6172744811a SHA256: e61d6dea28e04bc0b1556b8a5e3ecd80d59e4c5703fc34ff0518245811267181 Description: Transitional package for xserver-xorg-input-wacom-dbg Description-md5: 0aecf782ddf8c4e97ae87f1f42a468f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-lts-quantal_5_i386.deb Size: 1526 MD5sum: fa7d4cc849c80ad31844b3f4ba628e70 SHA1: 9243a6a6645b7fd112324317fcd98bef5314951b SHA256: 5ef5d96af30976eaceb67cbdd00317b0c64eabcaf93a4b74132874aa9cebc535 Description: Transitional package for xserver-xorg Description-md5: 31f5cb550a7221c77028ac50f5e634f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-lts-raring_5_i386.deb Size: 1524 MD5sum: dca1b49b17e728b6f3f8c827d31ec8ba SHA1: 17b4377ffa9f846afe4fa5889cded9859d74f73d SHA256: 1923e539bccb5dcee9999d8c8338350fac60426cf246d0ce54df22eb2113fd83 Description: Transitional package for xserver-xorg Description-md5: 31f5cb550a7221c77028ac50f5e634f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-lts-saucy_5_i386.deb Size: 1524 MD5sum: 8f3a95d7c8ef9c8fe8d17d96e99a23ab SHA1: 8eb734d1b69ff91864e691aeeab7580685d8c060 SHA256: e9f948083e633a4730270e3ac141d968b10dc19d73e1c291fbd942892c57dc3c Description: Transitional package for xserver-xorg Description-md5: 31f5cb550a7221c77028ac50f5e634f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-all Priority: optional Section: x11 Installed-Size: 64 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xorg Version: 1:7.7+1ubuntu8 Replaces: xserver-xorg-driver-all Depends: xserver-xorg-video-ati, xserver-xorg-video-cirrus, xserver-xorg-video-fbdev, xserver-xorg-video-intel, xserver-xorg-video-mga, xserver-xorg-video-modesetting, xserver-xorg-video-neomagic, xserver-xorg-video-nouveau, xserver-xorg-video-openchrome, xserver-xorg-video-qxl, xserver-xorg-video-s3, xserver-xorg-video-savage, xserver-xorg-video-siliconmotion, xserver-xorg-video-sis, xserver-xorg-video-sisusb, xserver-xorg-video-tdfx, xserver-xorg-video-trident, xserver-xorg-video-vesa, xserver-xorg-video-vmware Conflicts: xserver-xorg-driver-all Filename: pool/main/x/xorg/xserver-xorg-video-all_7.7+1ubuntu8_i386.deb Size: 4874 MD5sum: 677e69ee01d4f356585c251b414a0c3b SHA1: 856b065203d7b3eff729e1245cec7eaee9a84d3b SHA256: e281329b1365c410a4c21846ee68ea72adc5456dae8cbc0e98f97d29794f7a78 Description: X.Org X server -- output driver metapackage Description-md5: d6c33380f65bba53cd75efae633435bf Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-all-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-all-lts-quantal_5_i386.deb Size: 1542 MD5sum: 2315b72aa4d3bd8bdadf7940e562a29b SHA1: 49987e265df166510aedf107c35e68216d02f272 SHA256: f54b82c9d1c77527b71026108187c368bf5a71e745d426f34fd48756c1804987 Description: Transitional package for xserver-xorg-video-all Description-md5: 2c9ec56a4005f1acf3485cf78bf1d136 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-all-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-all-lts-raring_5_i386.deb Size: 1544 MD5sum: ed8083196049441e6110515acebbf6af SHA1: 5c0f5fddf37c68ef9e2dbe9abe3f75be2105daf6 SHA256: ff97177332fb5b92194718d0e2648caf97a40acc5c071ae913e15db672807c1f Description: Transitional package for xserver-xorg-video-all Description-md5: 2c9ec56a4005f1acf3485cf78bf1d136 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-all-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-all Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-all-lts-saucy_5_i386.deb Size: 1548 MD5sum: 213979f421d7285a12ef1f95bc64bf8c SHA1: c4f8e26d706f091e1305bb885e50c8f0ae25fb2f SHA256: ede6030ebb468a758b7a356fbd3fdd37b1bda8ca8c20a439d9db0dfc8899dd24 Description: Transitional package for xserver-xorg-video-all Description-md5: 2c9ec56a4005f1acf3485cf78bf1d136 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati Priority: optional Section: x11 Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:7.3.0-1ubuntu3 Provides: xorg-driver-video Depends: libc6 (>= 2.3.6-6~), libpciaccess0, xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902), xserver-xorg-video-glamoregl, xserver-xorg-video-r128, xserver-xorg-video-mach64, xserver-xorg-video-radeon Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_7.3.0-1ubuntu3_i386.deb Size: 6696 MD5sum: 792dfdce3b52fa50686576c1d144fd2e SHA1: f045620c232e993645e55f865ccca4f3f75a0369 SHA256: e72cff4e7f6118789d443719baa5fb922989b75421d33779fa6737b1c0f0d7a7 Description: X.Org X server -- AMD/ATI display driver wrapper Description-md5: e44c47ee90083ed5cf59825a85aa1878 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-ati-dbg Priority: extra Section: x11 Installed-Size: 76 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-video-ati Version: 1:7.3.0-1ubuntu3 Depends: xserver-xorg-video-ati (= 1:7.3.0-1ubuntu3), xserver-xorg-video-mach64-dbg, xserver-xorg-video-r128-dbg, xserver-xorg-video-radeon-dbg Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati-dbg_7.3.0-1ubuntu3_i386.deb Size: 11240 MD5sum: e5b60d0d3eb4cc68c9c7a47236635b5a SHA1: eca8a1063bb86ef091cdcedf4ee3e36e5f33d736 SHA256: 7ad458dad2605960f9c958b93fd35430a8d73fcb74075458105de4980501da48 Description: X.Org X server -- AMD/ATI display driver wrapper (debugging symbols) Description-md5: 1a16c53e03875db1244d90cea8cf3664 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-quantal_5_i386.deb Size: 1548 MD5sum: 984f74e85f38e6044dceec76951001fd SHA1: b790727e3c029c3565e33bce3887c9921db818f2 SHA256: 10c2b9a277d4fbfe6f152936f47021b384e6926b01149069a07171336fbac3a8 Description: Transitional package for xserver-xorg-video-ati Description-md5: 9379c0ada31822800a0e7821006a829c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-quantal-dbg_5_i386.deb Size: 1556 MD5sum: 5bcd4104c990462d0519fa9b8485154a SHA1: a337b4e95ce17b10bf057d2da459c0bc368e22b1 SHA256: 60378e7a6acefe3bc90728bb0d802b0e7f1ec5fbe72ae6513a6268318fb9d3fa Description: Transitional package for xserver-xorg-video-ati-dbg Description-md5: 7604e3565d7f245549330be03a9952dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-raring_5_i386.deb Size: 1542 MD5sum: fd9ce620f5ea323cad8570559ad1b5ed SHA1: aa7b5a5b87839bce96a0629895af2eabe9fa7fd0 SHA256: 33952ea3d327f76364aee3fd6d96f3cf4564072951f9423935a3a9857b994e36 Description: Transitional package for xserver-xorg-video-ati Description-md5: 9379c0ada31822800a0e7821006a829c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-raring-dbg_5_i386.deb Size: 1548 MD5sum: d20f515c32f8a0c026908214f543d79b SHA1: 95b4c2ffebf2fe264088431402b57d3a7f80e714 SHA256: 763373d683850f20a779346873acc39382d92b371ece27d8574d4fafceefaf9a Description: Transitional package for xserver-xorg-video-ati-dbg Description-md5: 7604e3565d7f245549330be03a9952dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-saucy_5_i386.deb Size: 1542 MD5sum: 1d27638a824e6ab0d859ad1025e0363d SHA1: 4c4edc23a6a6a45183d78a690b8ca912851f5ec5 SHA256: 0c8f367aa83cf0f0400a457ccc83fc4ecbffaf7e4158893a94c1339cd3e67569 Description: Transitional package for xserver-xorg-video-ati Description-md5: 9379c0ada31822800a0e7821006a829c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-ati-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-ati-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-ati-lts-saucy-dbg_5_i386.deb Size: 1550 MD5sum: f6cea13997b84bc02a4c3f9b03edb31d SHA1: 7e35e34fd53ac58d4db1966c32dde12f227e2864 SHA256: 2e545c6601a5a27a2c369d0c04bc69d517e855392628b44b51362ba5bdd0e61e Description: Transitional package for xserver-xorg-video-ati-dbg Description-md5: 7604e3565d7f245549330be03a9952dc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-cirrus Priority: optional Section: x11 Installed-Size: 134 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:1.5.2-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.4), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-cirrus/xserver-xorg-video-cirrus_1.5.2-1build1_i386.deb Size: 27908 MD5sum: 750aced61c49d02d1112f29d7448047a SHA1: 34dbc242bf9c032a9af33d65460bfdd2fbba26db SHA256: 68e8a329d32dbd877179c1fcf3edc3d5b824936e427ec8827f38e2aae7854b96 Description: X.Org X server -- Cirrus display driver Description-md5: 5f28614454a4c473f2697d26dc7536e2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-cirrus-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-cirrus Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-cirrus-lts-quantal_5_i386.deb Size: 1548 MD5sum: 832699a20dc8e5b64893f6bce3bc7ba0 SHA1: 8e4030e0360746c854a20f20c272435b6ed63c2b SHA256: f4960194e94f0267db1d694b1ced096bc9ddee61e6bac70619a880f09b3eb46a Description: Transitional package for xserver-xorg-video-cirrus Description-md5: 4c318b5d42bf3c9adeb77856293c8b90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-cirrus-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-cirrus Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-cirrus-lts-raring_5_i386.deb Size: 1548 MD5sum: e77fd0a3c46ad53b74029c6ac701209b SHA1: e128c05414d69f75773ec078184500df38d85a7c SHA256: 6584f93ab5118a5a97948d42a354f62dd32babe98858bf2884f0d742a143b713 Description: Transitional package for xserver-xorg-video-cirrus Description-md5: 4c318b5d42bf3c9adeb77856293c8b90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-cirrus-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-cirrus Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-cirrus-lts-saucy_5_i386.deb Size: 1542 MD5sum: 01652f675b3372a4596edf8e63100164 SHA1: b027589014498fcc55c8e45107939bff977eb8a0 SHA256: c0c76a364a28f1ef11a5019a9b92d3d56aaee8180c44aa477c5bae63db138d2e Description: Transitional package for xserver-xorg-video-cirrus Description-md5: 4c318b5d42bf3c9adeb77856293c8b90 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-dummy Priority: optional Section: x11 Installed-Size: 66 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:0.3.7-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.3.6-6~), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-dummy/xserver-xorg-video-dummy_0.3.7-1build1_i386.deb Size: 8492 MD5sum: 92efdb783671130ead82391417d9ecbe SHA1: e803abbc386c40043417a719deea463fd046d072 SHA256: c37f3af682f43a8c6ecb464f2edf014057d1fec13f95a8472b244ed5ed29369e Description: X.Org X server -- dummy display driver Description-md5: b619b7eefcfd6515f1380f16941855cc Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-dummy-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-dummy Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-dummy-lts-quantal_5_i386.deb Size: 1550 MD5sum: 6434ae394172a42458c9562c3f1dd45e SHA1: 7e44171c447a42446bc6d119f881688f03350f0c SHA256: 6ac0c844719d239ebb65260c1f5a80b8bb00cb631c602e57d7982a7a62998642 Description: Transitional package for xserver-xorg-video-dummy Description-md5: 3dbbb8b6172454d3432425ed47cfcad1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-dummy-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-dummy Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-dummy-lts-raring_5_i386.deb Size: 1544 MD5sum: 2bbc4d70128d097be9ed383203d1dcf8 SHA1: 978ab36c26bbc4410e2d7716748603d7d4301ae5 SHA256: 188cdcdd6b90da820e7b40245204dd15b4f7140d2e07eb4c8edc4fd58cf97f4b Description: Transitional package for xserver-xorg-video-dummy Description-md5: 3dbbb8b6172454d3432425ed47cfcad1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-dummy-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-dummy Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-dummy-lts-saucy_5_i386.deb Size: 1544 MD5sum: c4a7f5559b9243df047f931b63b9aeb9 SHA1: 454c0133fa6bdc447cde2fc1aa450d485cedfd8f SHA256: ceb44171d40f255f84824488d5618890c2d0d4298b0161c845d368d8d8894a30 Description: Transitional package for xserver-xorg-video-dummy Description-md5: 3dbbb8b6172454d3432425ed47cfcad1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-fbdev Priority: optional Section: x11 Installed-Size: 80 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:0.4.4-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.3.6-6~), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-fbdev/xserver-xorg-video-fbdev_0.4.4-1build1_i386.deb Size: 11496 MD5sum: 4ab2be54006ce81a3335b4ecbfd8d7ca SHA1: b2311472f457cee9782793024067e96cd832d381 SHA256: a8c15924d221a05299d94b3323e2e9fab09b16c36368ff16d326dcbe1675f00b Description: X.Org X server -- fbdev display driver Description-md5: 64c436c9c202e79fa1c638b0252edf4c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-fbdev-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-fbdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-fbdev-lts-quantal_5_i386.deb Size: 1550 MD5sum: e80c8bf392ddc6d278709f5ade8be4be SHA1: 0a6f7b7d4d4a273dec1d899b4319ef9e42eea844 SHA256: de9b311b1deb3b6cde7da471e0c0f4082c3df868e292337ec6e9fa119228e451 Description: Transitional package for xserver-xorg-video-fbdev Description-md5: 365a908e0c6ad843729a88f5e2563e8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-fbdev-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-fbdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-fbdev-lts-raring_5_i386.deb Size: 1544 MD5sum: 3ce32dd95005e42dc8432ea199980d5c SHA1: 3779ffa934c7cc08a9e1eebee48656003f756ffa SHA256: e071ba76825148b17edeabc1fb4a79ba536bb2d3d54ad2308df8f05e80cffab4 Description: Transitional package for xserver-xorg-video-fbdev Description-md5: 365a908e0c6ad843729a88f5e2563e8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-fbdev-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-fbdev Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-fbdev-lts-saucy_5_i386.deb Size: 1544 MD5sum: 90e1a5284b759365ce2d1183dea7ad5e SHA1: 1de7187e8e5ed3275aa08fcda6f3a9179d6b7d24 SHA256: 016f6f18066d2d4a020e9fd976312d64d95e3da151d5aee1307462a89a51c801 Description: Transitional package for xserver-xorg-video-fbdev Description-md5: 365a908e0c6ad843729a88f5e2563e8f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-glamoregl Priority: optional Section: x11 Installed-Size: 56 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: glamor-egl Version: 0.6.0-0ubuntu4 Replaces: xserver-xorg-glamoregl Depends: libglamor0 (= 0.6.0-0ubuntu4), libc6 (>= 2.3.6-6~), libegl1-mesa (>= 7.8.1) | libegl1-x11, libgbm1 (>= 8.1~0), libglapi-mesa, xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Conflicts: xserver-xorg-glamoregl Filename: pool/main/g/glamor-egl/xserver-xorg-video-glamoregl_0.6.0-0ubuntu4_i386.deb Size: 8114 MD5sum: a4efab23977c03ab9936b3ee192fe232 SHA1: 0ff99bf7009808ca45e4d3d9e649751cc2394833 SHA256: 935d1b2017fbf3c25d86fbdd1ea2cacfa3324e08b8cec89b8417a4b2f0a103fd Description: X.Org X server -- graphics acceleration module based on OpenGL Homepage: http://www.freedesktop.org/wiki/Software/Glamor Description-md5: 818d14b657c4c70f93fafbe3d2845968 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-intel Priority: optional Section: x11 Installed-Size: 2814 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 2:2.99.910-0ubuntu1 Provides: xorg-driver-video Depends: libc6 (>= 2.17), libdrm-intel1 (>= 2.4.38), libdrm2 (>= 2.4.30), libpciaccess0 (>= 0.8.0+git20071002), libpixman-1-0 (>= 0.30.0), libudev1 (>= 183), libx11-6, libx11-xcb1, libxcb-dri2-0, libxcb-util0 (>= 0.3.8), libxcb1, libxv1, libxvmc1, xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.99.910-0ubuntu1_i386.deb Size: 593280 MD5sum: 00429c93d2b802fc192d23a8ed5b662b SHA1: c22178c5b528ecb84862664cf2b136951c5a7854 SHA256: 2df9436020a5af6aedccf3110a001179c661adefc6fc153b856f9e8ba1223984 Description: X.Org X server -- Intel i8xx, i9xx display driver Homepage: http://www.x.org/ Description-md5: 4c1c091bee575987f9997018db5db7a4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-intel-dbg Priority: extra Section: x11 Installed-Size: 7494 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-video-intel Version: 2:2.99.910-0ubuntu1 Depends: xserver-xorg-video-intel (= 2:2.99.910-0ubuntu1) Recommends: intel-gpu-tools Filename: pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel-dbg_2.99.910-0ubuntu1_i386.deb Size: 1747698 MD5sum: c48a07ee14c7dcae12bd00c229b20d34 SHA1: 2d6b704d37233ff2c56f269f55eda4833fae7f74 SHA256: 0e9bb41a306208ff8a338257ce15ea1dd274636ed1c91addd6595e90c8e14a71 Description: X.Org X server -- Intel i8xx, i9xx display driver (debug symbols) Homepage: http://www.x.org/ Description-md5: 407ff36ec08d6f79ce154b88e799d94a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-quantal_5_i386.deb Size: 1548 MD5sum: 22eaebac102d3542ad64f0cef1bb3ef1 SHA1: 5ee8ac7d16bd606f875186d043e8f1e5d3efe9cd SHA256: 2ec7bbb8c0b5f08e6668c52759a7e9cbcecf29d71b469bdae16f354281b8ad4a Description: Transitional package for xserver-xorg-video-intel Description-md5: a7631eaf2f66066e19f0f317a138ffe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-quantal-dbg_5_i386.deb Size: 1552 MD5sum: 13615bee922156ab41f8991c9cda1b9f SHA1: 23ec5f5d804d2a979b68f4cb6ef65b5de9db5157 SHA256: 41550548b6dfc7461018915791d5ff5875b74eb2031d1bae6c882e3753862cf7 Description: Transitional package for xserver-xorg-video-intel-dbg Description-md5: 420604e5765dff8714279fe3fbfa0af2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-raring_5_i386.deb Size: 1544 MD5sum: cc61685ab8be05b4c624fd2f76dcf3c3 SHA1: 235484959937ada13627d8f9d97c9f0b3e267b9f SHA256: 953fbbc73ed243001b2e7b2844d5d12ca000ad89d4ea29921bc65afbd323c3a1 Description: Transitional package for xserver-xorg-video-intel Description-md5: a7631eaf2f66066e19f0f317a138ffe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-raring-dbg_5_i386.deb Size: 1550 MD5sum: f637d80320b3e96b4a32e04e086267e4 SHA1: a32b336d8e05efba67229200de496e28c6e490cd SHA256: df02e3fa88422a020bae609278b4873b9b0cf4bc17f92e13212ffa8cd21751cb Description: Transitional package for xserver-xorg-video-intel-dbg Description-md5: 420604e5765dff8714279fe3fbfa0af2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-saucy_5_i386.deb Size: 1548 MD5sum: 1160290059dd1b8376d0398a17d5a508 SHA1: 2f87c64771acabfec118141ee36fa18522dc6eda SHA256: 993094648651100b01a766e5213d7a84fee314022495e5fe7a1ed95573293ea4 Description: Transitional package for xserver-xorg-video-intel Description-md5: a7631eaf2f66066e19f0f317a138ffe6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-intel-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-intel-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-intel-lts-saucy-dbg_5_i386.deb Size: 1552 MD5sum: f079b93e5ba4b18ce877c7bfed716b20 SHA1: 65883cd44782491ad42fa98ae31f6dd87a9f4673 SHA256: 0fdb81d7478878165bfb763e6736b835bdc2d990840f02b224960e3ce2c01923 Description: Transitional package for xserver-xorg-video-intel-dbg Description-md5: 420604e5765dff8714279fe3fbfa0af2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64 Priority: optional Section: x11 Installed-Size: 228 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 6.9.4-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.4), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-mach64/xserver-xorg-video-mach64_6.9.4-1build1_i386.deb Size: 67176 MD5sum: 31910c5e38f40dd379143fa4c35d8a8d SHA1: 351bba594cec1224ec3e49cd70640884125d0b70 SHA256: 86aad172d7ffcb921a7bce454aebce02a9c16c0d8e22dbce22a2a41206af3697 Description: X.Org X server -- ATI Mach64 display driver Description-md5: ab0671e493d30e224d249f0d4e44d652 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-mach64-dbg Priority: extra Section: x11 Installed-Size: 1526 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-video-mach64 Version: 6.9.4-1build1 Depends: xserver-xorg-video-mach64 (= 6.9.4-1build1) Filename: pool/main/x/xserver-xorg-video-mach64/xserver-xorg-video-mach64-dbg_6.9.4-1build1_i386.deb Size: 253822 MD5sum: dab9064dfe3d349cc1561b344bb3289c SHA1: 08ad4599a1dc37585b09a9c5dc1c2e6d12da9cce SHA256: 1f76e522d1a58f9da42d780c0b610808e3c4cf8cca6013e3aed060b0d1f00045 Description: X.Org X server -- ATI display driver (debugging symbols) Description-md5: b003245afd6a2df641f6b6edc6a34ba8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-quantal_5_i386.deb Size: 1552 MD5sum: 1b676d958bdffd5bf72670149b049696 SHA1: 4d142afb38a287e769730e0bb8f75e5ef50e51e4 SHA256: 9529dccc47f974bc1f57ffd059a0506d078062935bef19180e1df4887aa751a2 Description: Transitional package for xserver-xorg-video-mach64 Description-md5: ca9aaa363ab7c8918ff472d38995ece8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-quantal-dbg_5_i386.deb Size: 1556 MD5sum: d5b9f5252f0bfe4df6b74077cdba536b SHA1: c52e932a74ed3f3684860a45aff6424263186d6c SHA256: 65a372c22f919fa08c00014d8bee8f9dbbb15380d54bcb3fc8fc00d272de0ea2 Description: Transitional package for xserver-xorg-video-mach64-dbg Description-md5: 91e9809a0a3cca982eb292fb3fc87b58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-raring_5_i386.deb Size: 1550 MD5sum: 8574c4f2581c6a0a4b26d42959bab483 SHA1: ba4c73eaae57dd735ec54901731310f454533532 SHA256: 037e9c26d68fe1d9e2b0847236ebfcf931c00471a44f6ce0540516b38b8616f8 Description: Transitional package for xserver-xorg-video-mach64 Description-md5: ca9aaa363ab7c8918ff472d38995ece8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-raring-dbg_5_i386.deb Size: 1552 MD5sum: 2c7d916442a2ec278414480b054e5ad8 SHA1: 0b011dd0510a6f00d8f4a8a306a47ce1532b672d SHA256: ce2485a62beeb09327f7c81d4ceda33dbcc0806fe7fbe39de966ecdd215c4d0c Description: Transitional package for xserver-xorg-video-mach64-dbg Description-md5: 91e9809a0a3cca982eb292fb3fc87b58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-saucy_5_i386.deb Size: 1546 MD5sum: c53040d99070b84a16479ca416ea5367 SHA1: b7f5e8dba8ce48e516ae05d08a1d285ad7b0af0c SHA256: 240d99de5a28eca64445645ff730ad96105f1a733fe94e0059f51a6927606fe1 Description: Transitional package for xserver-xorg-video-mach64 Description-md5: ca9aaa363ab7c8918ff472d38995ece8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mach64-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mach64-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mach64-lts-saucy-dbg_5_i386.deb Size: 1552 MD5sum: 780789ce1cea3f430468afc28d1791b3 SHA1: 2ce421a94d9087c410deca9b2f19f15f205eac5f SHA256: 45ccc897c5069a9be6ff3bf28d6f6080a8dd50a0627da10a07b5dc515bb19133 Description: Transitional package for xserver-xorg-video-mach64-dbg Description-md5: 91e9809a0a3cca982eb292fb3fc87b58 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mga Priority: optional Section: x11 Installed-Size: 211 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:1.6.3-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.7), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Suggests: firmware-linux Filename: pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.6.3-1build1_i386.deb Size: 62174 MD5sum: 295d5bf5f3a728695a14ac404373028d SHA1: c98cfc1b7e072facc8be6c67b9ca3d31b49b8de1 SHA256: cd9cd5b4a93b9567c821f802d9dbfa33437885d8b7e47090ee03ff817c8dd127 Description: X.Org X server -- MGA display driver Description-md5: 200eb66faed86a912425212d586b2826 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-mga-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mga Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mga-lts-quantal_5_i386.deb Size: 1548 MD5sum: 6b73db73ecede417bc83e003b9384168 SHA1: 276f5fac757fba6597d64aaf2257e107347ad1e8 SHA256: f7b2884283490372ec1db7ea7206391bf56be10d400d9750af0a79af4e072c52 Description: Transitional package for xserver-xorg-video-mga Description-md5: abd70f78df7974b63d101cfab5464af4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mga-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mga Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mga-lts-raring_5_i386.deb Size: 1544 MD5sum: de0dcbf8a1dff9ce22127c757f9ee07a SHA1: d6b1631471949e30ebf03387e9ef44f3d657cafa SHA256: a9004ec845c8def6e31b5abb0829ee74ebca2b6c4d95657cf589010fbf655c9c Description: Transitional package for xserver-xorg-video-mga Description-md5: abd70f78df7974b63d101cfab5464af4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-mga-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-mga Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-mga-lts-saucy_5_i386.deb Size: 1544 MD5sum: 9be53f02ad7f1888e461ba03b8628a69 SHA1: bc06eabef0b04d2d91099b064f5461e0a185392c SHA256: 2e9d7648a10d8c37a3449897368e2b906665dd257d2b7224054bdfa54d1ab8ea Description: Transitional package for xserver-xorg-video-mga Description-md5: abd70f78df7974b63d101cfab5464af4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting Priority: optional Section: x11 Installed-Size: 98 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 0.8.1-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.4), libdrm2 (>= 2.4.38), libudev1 (>= 183), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-modesetting/xserver-xorg-video-modesetting_0.8.1-1build1_i386.deb Size: 19656 MD5sum: 14b81a55c1c77b852b712aff6310841a SHA1: 7c6171b9dc589b501d23a5fde911beca588348fe SHA256: e9e35c6e14085babb597992665a2961abd296da7335e1a6dbe56311f4e1c11c4 Description: X.Org X server -- Generic modesetting driver Description-md5: 64d8f5d5562d7c8cf818d1d2526e5933 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-modesetting-dbg Priority: extra Section: debug Installed-Size: 193 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-video-modesetting Version: 0.8.1-1build1 Depends: xserver-xorg-video-modesetting (= 0.8.1-1build1) Filename: pool/main/x/xserver-xorg-video-modesetting/xserver-xorg-video-modesetting-dbg_0.8.1-1build1_i386.deb Size: 54894 MD5sum: 314481bb1b43bda46733f1c6648abb59 SHA1: 1f5cfa6c6834ab7367c9b2efb85f53989d46ee52 SHA256: e98f7e87422e4fc3a836a90f3ecb808c483c92a638508a2be46ad43133d43b75 Description: X.Org X server -- Generic modesetting driver (debug symbols) Description-md5: 63910490cc4b8a67278e59cda5f7d19b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-quantal_5_i386.deb Size: 1558 MD5sum: 9e07c187ee758d2ca561b4f312c2bf9b SHA1: 778b83b870dd1592e623c5ad48b941a63fcacf3c SHA256: 530fcd40e97287b748bb92cf9947d735743885f39789a246397a49e9771bf5ed Description: Transitional package for xserver-xorg-video-modesetting Description-md5: ad63034e5af9c89086370e928adc46a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-quantal-dbg_5_i386.deb Size: 1564 MD5sum: 9a470a2b95d9b51e67ec0b2cb46fa508 SHA1: a54ca3e6398307d650e6bf6826d79f952d8d93de SHA256: 458633d314a83fa635c4d12dcdd5d6de4348d359217b8ec34b1740e7f82d1710 Description: Transitional package for xserver-xorg-video-modesetting-dbg Description-md5: fabe4c69b7282164605884ac8e50b1a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-raring_5_i386.deb Size: 1556 MD5sum: c07f16270edb25d6a1a52c208e103803 SHA1: 4392c1c52a1f4988cdf7d4663744c41ceebe6736 SHA256: d42c240d52178c8ac8d06bdcd2f4709b3d4fd5f6b856fad164b42a37ffc641e2 Description: Transitional package for xserver-xorg-video-modesetting Description-md5: ad63034e5af9c89086370e928adc46a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-raring-dbg_5_i386.deb Size: 1562 MD5sum: cb8ccbde44496875f71b60bff5bae1ab SHA1: 91e8dfcea3e47a43729166a947f71007d7c7e9a7 SHA256: 4452509e67809925f2ed6633fa1144edc63902260099176aea9b0c714fed08d9 Description: Transitional package for xserver-xorg-video-modesetting-dbg Description-md5: fabe4c69b7282164605884ac8e50b1a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-saucy_5_i386.deb Size: 1552 MD5sum: 3148f68555f9137ad68f46dbefea3141 SHA1: 764d872348538240a3ca3b9f08e0e9d0f35c681a SHA256: abf9394012f2b94c3ec74ee57c19ea00f34dd9e0f3dc618129e6b42ecfc39824 Description: Transitional package for xserver-xorg-video-modesetting Description-md5: ad63034e5af9c89086370e928adc46a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-modesetting-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-modesetting-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-modesetting-lts-saucy-dbg_5_i386.deb Size: 1560 MD5sum: 61af1d037423001d1a3cd76a5878d432 SHA1: e2486822b95ba86b498646d654cfffbdb4aa5aa2 SHA256: 0aa7e5647e20c24912cb53edab0fbfa18269bbff4acdbdd28d2d42d2406247e0 Description: Transitional package for xserver-xorg-video-modesetting-dbg Description-md5: fabe4c69b7282164605884ac8e50b1a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-neomagic Priority: optional Section: x11 Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:1.2.8-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.3.6-6~), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-neomagic/xserver-xorg-video-neomagic_1.2.8-1build1_i386.deb Size: 28560 MD5sum: dd37709c9785cedc6a4f16bf72a515a1 SHA1: 108556be07e1d84d10c4ecfaa556069e94237d26 SHA256: 956e08c2066b0f83756e80eb89fe26276ae25b833bf426e536d193c4266760e1 Description: X.Org X server -- Neomagic display driver Description-md5: eb267e73f4319f1e002b0d2f41b3f551 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-neomagic-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-neomagic Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-neomagic-lts-quantal_5_i386.deb Size: 1552 MD5sum: c3b510023ef4046796c15262b47b4ce8 SHA1: 5d963a430da9a0153bc66b85c7928ed5e02e4547 SHA256: de5302756f5aad42becd23264b992c6db10b7aa22f49ad667ba25043b427fef1 Description: Transitional package for xserver-xorg-video-neomagic Description-md5: a3186b9efd530974b129fc190089643a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-neomagic-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-neomagic Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-neomagic-lts-raring_5_i386.deb Size: 1556 MD5sum: b3cae327ed6f58b2007b2fb2859044c4 SHA1: 680909fd67f4ab2c9ebece54474d7ad885894ad9 SHA256: 1dd824382c79224ee7230b28818753c2614657576b8051e40351832ed2c71202 Description: Transitional package for xserver-xorg-video-neomagic Description-md5: a3186b9efd530974b129fc190089643a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-neomagic-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-neomagic Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-neomagic-lts-saucy_5_i386.deb Size: 1554 MD5sum: 4cb6e665ffbf8766152a00038984b03b SHA1: 6d64a5accd8b282ed6e3b2f4d178e97a2894ae4d SHA256: 33ceda1f5d860bdd76d9d9810fb4a8943b7e614a918b7f663ede73743a46f7b3 Description: Transitional package for xserver-xorg-video-neomagic Description-md5: a3186b9efd530974b129fc190089643a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau Priority: optional Section: x11 Installed-Size: 299 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:1.0.10-1ubuntu2 Provides: xorg-driver-video Depends: libc6 (>= 2.15), libdrm-nouveau2 (>= 2.4.38), libdrm2 (>= 2.4.25), libudev1 (>= 183), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Recommends: libgl1-mesa-dri (>= 9.0) Filename: pool/main/x/xserver-xorg-video-nouveau/xserver-xorg-video-nouveau_1.0.10-1ubuntu2_i386.deb Size: 78746 MD5sum: 5355abdfe8e72a84e275519845df3a53 SHA1: f2b575d2c4c7cfac6296417fcce731d809bbd621 SHA256: c4a14c9c20e2fcf5e715f3b0b0884989960041335de0be33368034cd7eee039f Description: X.Org X server -- Nouveau display driver Homepage: http://nouveau.freedesktop.org/wiki/ Description-md5: b084a16945b86c1eda89ad33dbb4530d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-nouveau-dbg Priority: extra Section: debug Installed-Size: 1732 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-video-nouveau Version: 1:1.0.10-1ubuntu2 Depends: xserver-xorg-video-nouveau (= 1:1.0.10-1ubuntu2) Filename: pool/main/x/xserver-xorg-video-nouveau/xserver-xorg-video-nouveau-dbg_1.0.10-1ubuntu2_i386.deb Size: 330098 MD5sum: b20bb49c8d74e7d59c997960372218de SHA1: b6ab29c065f3999ca8fe7c33540127a56a6d8362 SHA256: 59842a93631239bb208a5fd5770d9a326f2c9da6e0c33d511387cc613e44bf35 Description: X.Org X server -- Nouveau display driver (debug symbols) Homepage: http://nouveau.freedesktop.org/wiki/ Description-md5: 5304f6a18155884f62e07d246a25ea57 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-quantal_5_i386.deb Size: 1552 MD5sum: 0999a63d0b80724c8dafec2d6a3431eb SHA1: a9eb7e8cc564f410afd637f38940187d5058f15b SHA256: 81f7a3a0bb255ff3d337e4f6c778907a482e63dadd8ab3d5800a95463d8a021d Description: Transitional package for xserver-xorg-video-nouveau Description-md5: 37d08999ae7aeb4f9ee7f9e57646b7ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-quantal-dbg_5_i386.deb Size: 1558 MD5sum: ee7393070b36175b1adff9805bfaaca0 SHA1: ef6cc831aabf654f0bb25d0d18032951fdf3e55c SHA256: 627b5b0c963feafface2e47db83fb150965e381de58d179a94e765b6ec3f3c09 Description: Transitional package for xserver-xorg-video-nouveau-dbg Description-md5: 3a973f50d80db795808b732232af81a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-raring_5_i386.deb Size: 1548 MD5sum: 5feffbb17e90641a0163652d7f1f895d SHA1: f853c4aeb303a46c9d32c62caf97ce94458bcf07 SHA256: 5359240373ef9e89093bfe6cf15b2f2b086cb7344e03db7234c4ffb8ee9b963c Description: Transitional package for xserver-xorg-video-nouveau Description-md5: 37d08999ae7aeb4f9ee7f9e57646b7ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-raring-dbg_5_i386.deb Size: 1552 MD5sum: 43644eb9d97ebb2f0e03abe9574c065b SHA1: e17670efcc68d7a78abf4b2f380fd1ba4d2de577 SHA256: 190f8e4294d4eb5b94f28807977fad45b64243faeb57e8a1e48a14a61c0475b5 Description: Transitional package for xserver-xorg-video-nouveau-dbg Description-md5: 3a973f50d80db795808b732232af81a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-saucy_5_i386.deb Size: 1550 MD5sum: bd8d7cf3977c6ba504bc7979e40e6161 SHA1: 4ec4fe229e14f4160ed8b209a0fef66a8eae30d1 SHA256: 420c05ec632580f8c493a7ea7d4ea406bd1149d90ec4b425ac717d8a7eb48d53 Description: Transitional package for xserver-xorg-video-nouveau Description-md5: 37d08999ae7aeb4f9ee7f9e57646b7ef Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-nouveau-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-nouveau-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-nouveau-lts-saucy-dbg_5_i386.deb Size: 1554 MD5sum: a99619d5251d1657cb4442be8712dd07 SHA1: 373f8d1fa367cab6fb28ab72828eda93881a3f98 SHA256: 69485cdb76199e11e5e5e52a2d8054161bed0ac67a3687da863c49ca917bb748 Description: Transitional package for xserver-xorg-video-nouveau-dbg Description-md5: 3a973f50d80db795808b732232af81a8 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome Priority: optional Section: x11 Installed-Size: 521 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:0.3.3-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.4), libdrm2 (>= 2.3.1), libx11-6 (>= 2:1.4.99.1), libxext6, libxv1, libxvmc1, xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome_0.3.3-1build1_i386.deb Size: 135894 MD5sum: cae7e6e96f41ad3734bca2aedecc2255 SHA1: b82fadec7f7d1d33f496b582affc596628ef85fd SHA256: cdc54ee5ac01d9ae716feae25f644bb101458fca7f239179c1c491867e518b5c Description: X.Org X server -- VIA display driver Homepage: http://www.openchrome.org Description-md5: 11d4a7275218ad33ccc6479463963d83 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-openchrome-dbg Priority: extra Section: debug Installed-Size: 1687 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-video-openchrome Version: 1:0.3.3-1build1 Depends: xserver-xorg-video-openchrome (= 1:0.3.3-1build1) Filename: pool/main/x/xserver-xorg-video-openchrome/xserver-xorg-video-openchrome-dbg_0.3.3-1build1_i386.deb Size: 365144 MD5sum: 3d20ccd51df1f4ea89cff5a5281d961b SHA1: 81ae092e16c5a0dd41e9dad6eaabee266f5b68eb SHA256: 372c2134d94a28825cbdf1e4cec004a5be18af9356cc8d6cd3274d8933172f75 Description: X.Org X server -- VIA display driver -- debugging symbols Homepage: http://www.openchrome.org Description-md5: ca202006e00e58695b2cdeb5d735905a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-quantal_5_i386.deb Size: 1554 MD5sum: 4bc73f62feab5be3e2c9096c6386fff7 SHA1: c468bbe4f8a86ad89b08e800e4a1e6bbe2066eae SHA256: 2b10fa9508a2f8fbeb95d9cdd36f77eb24b02249b71f841ceef99fae7b573e8e Description: Transitional package for xserver-xorg-video-openchrome Description-md5: 4308920923e39bc9840de5e7e2449f36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-quantal-dbg_5_i386.deb Size: 1566 MD5sum: 385c679e2265fe20ecc87bde23c8c9ec SHA1: a7a710ff43de6262e598114e13f9dedcb54d460e SHA256: b6c299f887bdcd68ddfa3a7d0f2896413ce2b3d7186e2dbe462aa03a49b978c5 Description: Transitional package for xserver-xorg-video-openchrome-dbg Description-md5: e77e6135135694782613f8c6806bfb01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-raring_5_i386.deb Size: 1552 MD5sum: 6fc73d74b7d42bbc88c25e37c85eddba SHA1: aa0d935138e544ed1502ee9593a258abf029427a SHA256: c41db370cc372c5d3aa24fde57eefe605149b3b0f82dae655aebb6f9bda40223 Description: Transitional package for xserver-xorg-video-openchrome Description-md5: 4308920923e39bc9840de5e7e2449f36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-raring-dbg_5_i386.deb Size: 1560 MD5sum: 042689c7c5775f48b83415dfee3ead71 SHA1: 2ffc6c1d2c051d9d45a14686c1420cc02d04182a SHA256: 2ce0b540ffbc7e2192ea59c754dd9c9fe3cba3e4d226edde0027df4bdb2d5665 Description: Transitional package for xserver-xorg-video-openchrome-dbg Description-md5: e77e6135135694782613f8c6806bfb01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-saucy_5_i386.deb Size: 1552 MD5sum: 7a2dcd4d532631c5e29bf5f7fb73df19 SHA1: 102b304ac4b34adb794758d0e475fea9df724a59 SHA256: 74e1703ef1d297b1e09edafa8687dd2b9087cc017b4f1a0c0ee14faef9bb0dcd Description: Transitional package for xserver-xorg-video-openchrome Description-md5: 4308920923e39bc9840de5e7e2449f36 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-openchrome-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-openchrome-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-openchrome-lts-saucy-dbg_5_i386.deb Size: 1560 MD5sum: 977718dcfe56e99b52af4fde723e7a4d SHA1: 1f166fde41c990159dbf98cdc6d75d334eaad728 SHA256: a26c88834fb5a4b5e22763b945450e37938d3cdc0abf163a606ee0f934bca346 Description: Transitional package for xserver-xorg-video-openchrome-dbg Description-md5: e77e6135135694782613f8c6806bfb01 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-qxl Priority: optional Section: x11 Installed-Size: 221 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 0.1.1-0ubuntu3 Provides: xorg-driver-video Depends: libc6 (>= 2.4), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-qxl/xserver-xorg-video-qxl_0.1.1-0ubuntu3_i386.deb Size: 74726 MD5sum: 56cdc1a3a677db35799e9edfeb38281a SHA1: 869261858b5d04705745c2488d6ed64310220f97 SHA256: 95a72094124924e61e9d1f7d2f5a3aaf6adb713f07aaaeb5271f73d3e51cdd3c Description: X.Org X server -- QXL display driver Homepage: http://spice-space.org/ Description-md5: 26837ff18ae5ca3c32daf3167b2fa7f0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-qxl-dbg Priority: extra Section: debug Installed-Size: 1026 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-video-qxl Version: 0.1.1-0ubuntu3 Depends: xserver-xorg-video-qxl (= 0.1.1-0ubuntu3) Filename: pool/main/x/xserver-xorg-video-qxl/xserver-xorg-video-qxl-dbg_0.1.1-0ubuntu3_i386.deb Size: 290762 MD5sum: 1f040c57423ec4a9ea2468c01f26cc77 SHA1: 9a6f6f2a213b978e69a42baf171b2a283901f66f SHA256: 2e1c1a50510097b5e6d28c3ce9b2a84fbf7350b69c0884d6b4d46757c255e1b0 Description: X.Org X server -- QXL display driver (debugging symbols) Homepage: http://spice-space.org/ Description-md5: c84250fdbc852793f3d32fb23b74e2a1 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128 Priority: optional Section: x11 Installed-Size: 175 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 6.9.2-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.7), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Suggests: firmware-linux Filename: pool/main/x/xserver-xorg-video-r128/xserver-xorg-video-r128_6.9.2-1build1_i386.deb Size: 46140 MD5sum: ed6deab290866205330e9e15ce9e2e08 SHA1: d895b5facb5369540babc5df22217382067dddf3 SHA256: 93077e67e8c8a9f87ab88485880f9733b43d8ee987e2df4535a613c177dab53b Description: X.Org X server -- ATI r128 display driver Description-md5: eadf9436a9254699f3f6ffaf12d64459 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-r128-dbg Priority: extra Section: x11 Installed-Size: 504 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-video-r128 Version: 6.9.2-1build1 Depends: xserver-xorg-video-r128 (= 6.9.2-1build1) Filename: pool/main/x/xserver-xorg-video-r128/xserver-xorg-video-r128-dbg_6.9.2-1build1_i386.deb Size: 133252 MD5sum: 6fad8e0ecca68b05fed7a94db1f69fd9 SHA1: 7c3ee5d13627ad61208f5597160ce36e1bc7c654 SHA256: f7ba70c072d6d7128fb4a0a0b89b6e8b877fd81d7ec96f3bb1a8ee54b1db558a Description: X.Org X server -- ATI r128 display driver (debugging symbols) Description-md5: 3b0961064d5006b21a331fd12170da1e Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-quantal_5_i386.deb Size: 1546 MD5sum: a74ad6fd9eb6da03c4eb93357392bd40 SHA1: ed9a52d55fc508fdb2345fcfe47ca19a68ed27d9 SHA256: 3a51244ee2d9e85a255d6e2c87c5faf404e9ff3dd01c4109a824b862bf32829a Description: Transitional package for xserver-xorg-video-r128 Description-md5: 5658f7e52b39a3ff27a18dfa1c7d753c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-quantal-dbg_5_i386.deb Size: 1558 MD5sum: b54fa602580c7e0d20c6084d5f951d9d SHA1: c257f9d25c042f93cbe8d4e447952959e1b384e9 SHA256: ba7d7f8851d51aa8478f6bb2ea6a737f43edcef2d61a683db6106145bdf14ce1 Description: Transitional package for xserver-xorg-video-r128-dbg Description-md5: 3a9532581245f5f41935d3630c1206f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-raring_5_i386.deb Size: 1548 MD5sum: 4fbc9d5ba9152e353bc9f059d6e4daf9 SHA1: 51a4d497af5af1ff0f0a6aa626f0142265310a28 SHA256: a1b6d1714909670cabbe026afd2ae86988bd52d806578c44033b711a1deb7820 Description: Transitional package for xserver-xorg-video-r128 Description-md5: 5658f7e52b39a3ff27a18dfa1c7d753c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-raring-dbg_5_i386.deb Size: 1554 MD5sum: 19d179a1f4528bb9148d405cbd26ace7 SHA1: d4c86d33c0386e2881afad1906b96174d69658c3 SHA256: 757318f3c2baad342fb2da00529de03c9bf52ef4b2ebb0e2d2c6f0e2fd3c4dac Description: Transitional package for xserver-xorg-video-r128-dbg Description-md5: 3a9532581245f5f41935d3630c1206f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-saucy_5_i386.deb Size: 1544 MD5sum: 8803a45faf2cfbad8dc8d6c7d4c76162 SHA1: 1e40bb6d329e3510183ba81de8ec7fc2875eaa79 SHA256: def48be31ed0fb48edb7acef19bcd338971819608dfe87f98a1c7189d8a264d7 Description: Transitional package for xserver-xorg-video-r128 Description-md5: 5658f7e52b39a3ff27a18dfa1c7d753c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-r128-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-r128-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-r128-lts-saucy-dbg_5_i386.deb Size: 1552 MD5sum: 9ed6ec7342dad5f3246fdb6df78ca4b7 SHA1: 2fac8cd677a928f6406ac924bd3f2fb24ae0b995 SHA256: b7b25e08b67fecd388de5af03dd40712d54b1c3958e68c54cb856d787eea5185 Description: Transitional package for xserver-xorg-video-r128-dbg Description-md5: 3a9532581245f5f41935d3630c1206f3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon Priority: optional Section: x11 Installed-Size: 486 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-video-ati Version: 1:7.3.0-1ubuntu3 Provides: xorg-driver-video Depends: libc6 (>= 2.17), libdrm-radeon1 (>= 2.4.39), libglamor0, libudev1 (>= 183), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Suggests: linux-firmware Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon_7.3.0-1ubuntu3_i386.deb Size: 115222 MD5sum: c1309eaafd7293b4ee828c01a790575c SHA1: 0d4cf3e11cce9fa2e682c2641620e98e8755670e SHA256: 2e19dd79750eedddb87d76be3441a421e1a6cca09075bf018258a095d8998b54 Description: X.Org X server -- AMD/ATI Radeon display driver Description-md5: 22660c3d89bfa098ecfd9bc40808f7b6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-radeon-dbg Priority: extra Section: x11 Installed-Size: 905 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xserver-xorg-video-ati Version: 1:7.3.0-1ubuntu3 Depends: xserver-xorg-video-radeon (= 1:7.3.0-1ubuntu3) Filename: pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon-dbg_7.3.0-1ubuntu3_i386.deb Size: 827472 MD5sum: a45c16e74158839f3c384fcec4281aa8 SHA1: f3916f639c84e664700b047eac16fb49df032185 SHA256: 568cbc353bf388ba60f411869d4053fcd95d179efcf4af7acd1e5dc6d46cc0d8 Description: X.Org X server -- AMD/ATI Radeon display driver (debugging symbols) Description-md5: c7be5446365f77ecf178234fd656daf6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-quantal_5_i386.deb Size: 1550 MD5sum: 4f6a55c0414353c22692ef3cb4753370 SHA1: e4ce6510175de0683d703faccdb0cf23c7a0e142 SHA256: 6f2557a532e49adb57519c0aaab850664ccd0b65c7cbc7fe7fb9be6196b652c9 Description: Transitional package for xserver-xorg-video-radeon Description-md5: f4320c461c3c4aa1ce7f13672398f4fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-quantal-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-quantal-dbg_5_i386.deb Size: 1556 MD5sum: fe88d852712a2b310a8708d12546e4c4 SHA1: e120901236ea0d5e9ca585b90ce0897d632eee40 SHA256: 9030d4397dd524c5b94352cd3e7f4886ce6409c79e26d2dff1832feda5c2fd88 Description: Transitional package for xserver-xorg-video-radeon-dbg Description-md5: 411cd9a45ad5f4042e79f23d0223bf55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-raring_5_i386.deb Size: 1546 MD5sum: 8641f784fe80216cfe358fd26f306946 SHA1: 798bf946389036b991f65d2086d46d25fd26bea6 SHA256: 1820ca2f4c59b3f8f039603269f8daf474f6d3f3583cde816112ad0353652b14 Description: Transitional package for xserver-xorg-video-radeon Description-md5: f4320c461c3c4aa1ce7f13672398f4fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-raring-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-raring-dbg_5_i386.deb Size: 1552 MD5sum: 068512671c17f7600b1a96f0fb3fc761 SHA1: aa0afeb23e59e8e3a53f528a7cae1853f7721676 SHA256: 555b99afefa211d4a48ab326dfb3e0e9b656e612e2f9250ba26a32f8b063fd1b Description: Transitional package for xserver-xorg-video-radeon-dbg Description-md5: 411cd9a45ad5f4042e79f23d0223bf55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-saucy_5_i386.deb Size: 1550 MD5sum: b37572fc5de48836cb843313437ec4d0 SHA1: 2331220f1ee4fa0031e2f7e269532e956dae0d32 SHA256: b982763e965466fd807a4cd53f9e77e8d22ec6a98d0ee750336b9c839d77ac26 Description: Transitional package for xserver-xorg-video-radeon Description-md5: f4320c461c3c4aa1ce7f13672398f4fa Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-radeon-lts-saucy-dbg Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-radeon-dbg Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-radeon-lts-saucy-dbg_5_i386.deb Size: 1550 MD5sum: b3e32c085ca3558cac2e8d933ea78bea SHA1: 927997d056c1dfb9df38efb044448f3354f39a6d SHA256: cc260801d27ac3a2be372797f0e42d0a369458d087a208e283d1727307e1be1f Description: Transitional package for xserver-xorg-video-radeon-dbg Description-md5: 411cd9a45ad5f4042e79f23d0223bf55 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-s3 Priority: optional Section: x11 Installed-Size: 119 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:0.6.5-0ubuntu4 Provides: xorg-driver-video Depends: libc6 (>= 2.3.6-6~), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-s3/xserver-xorg-video-s3_0.6.5-0ubuntu4_i386.deb Size: 28690 MD5sum: fa003464d07d21e02803e840d3b94cc9 SHA1: 63f43606b6e456c86cf557df86f60c0e1aebcd59 SHA256: ca1e67675af372ee8e0c9d2f449c0338aa882d9f9cb30a8a83dbf572df1ac6b8 Description: X.Org X server -- legacy S3 display driver Description-md5: 08333113374682cbc50a4f18cf30d8c4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-s3-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-s3 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-s3-lts-quantal_5_i386.deb Size: 1542 MD5sum: 49f8bec174bf9946bc23f6b5df8a769f SHA1: 4dfcd75b7cf292640d64bf72860af02dd45dae67 SHA256: c9a163edf00ffe4393e4a1b524191432fd1b714bb844ff7f119540d05befe267 Description: Transitional package for xserver-xorg-video-s3 Description-md5: 3cec4b699d55041b76f4e4dda052e81b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-s3-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-s3 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-s3-lts-raring_5_i386.deb Size: 1540 MD5sum: 8293380a33201f6236dddc2764cd4340 SHA1: ebd62117a9b9c376099acdf28ea6f7baafc9817a SHA256: a2bd4d8305440c71aed6072b18eb706a9617ccd60063add237f0ec31c4bc511f Description: Transitional package for xserver-xorg-video-s3 Description-md5: 3cec4b699d55041b76f4e4dda052e81b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-s3-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-s3 Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-s3-lts-saucy_5_i386.deb Size: 1542 MD5sum: 00d241e18597162c77b1bfa207bdf4d3 SHA1: e00b389af0d4ba66b67e712ad1e6ca2123ae5e3b SHA256: bede4b5de25463811d9baaf84882e1dde7809c4385cfa5f37d6d6fdb8b6af73a Description: Transitional package for xserver-xorg-video-s3 Description-md5: 3cec4b699d55041b76f4e4dda052e81b Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-savage Priority: optional Section: x11 Installed-Size: 204 Maintainer: Ubuntu X-SWAT Architecture: i386 Version: 1:2.3.7-2ubuntu2 Provides: xorg-driver-video Depends: libc6 (>= 2.3.6-6~), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-savage/xserver-xorg-video-savage_2.3.7-2ubuntu2_i386.deb Size: 58956 MD5sum: e92b764579284a9d595704c869af5a51 SHA1: 042eac9254d45a0867f9fc785462206c357a0e84 SHA256: 66b1bf3f3393aa77c26087a5c4634945d1279b5537eed75f7bfd2e8439e51d4a Description: X.Org X server -- Savage display driver Orig-Maintainer: Debian X Strike Force Description-md5: 2b956e72f2fefc3baf572d184b2fdd12 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-savage-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-savage Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-savage-lts-quantal_5_i386.deb Size: 1546 MD5sum: 400ed06fbafb87ce0260d71877744988 SHA1: 5735ab13b12e14414b044673472dc9682520379f SHA256: 7e275d52b72fec01994b30b37bfdfffbf93aaebb7cd93a5cfbfb317d93ca7c25 Description: Transitional package for xserver-xorg-video-savage Description-md5: e537f0ff16f3bd930106048e364fcdf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-savage-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-savage Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-savage-lts-raring_5_i386.deb Size: 1546 MD5sum: 857327f7d5539b060261c17224ea122c SHA1: 1eb821c03db70a0c5fc8dc7864f66b0d60400e1c SHA256: bad4873ea1e4ef4eda35548e0c0c2fd855684abfcc9d08519585ef73ce7f842e Description: Transitional package for xserver-xorg-video-savage Description-md5: e537f0ff16f3bd930106048e364fcdf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-savage-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-savage Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-savage-lts-saucy_5_i386.deb Size: 1544 MD5sum: e26260ce49380eeaae9369c62aa37836 SHA1: ffcb24d019707eb502b01e5a4223975e98b1b33a SHA256: 121cdc70eed28ebc6a95b9e0ae083983c4afddf93d460548e8eeca8d511ec6ff Description: Transitional package for xserver-xorg-video-savage Description-md5: e537f0ff16f3bd930106048e364fcdf7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-siliconmotion Priority: optional Section: x11 Installed-Size: 174 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:1.7.7-2build1 Provides: xorg-driver-video Depends: libc6 (>= 2.7), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-siliconmotion/xserver-xorg-video-siliconmotion_1.7.7-2build1_i386.deb Size: 47318 MD5sum: ae2f279cd4c5e9e214b06afb7a8ce446 SHA1: 025581b04d6d7e6ed5a32b6fd58ea35121c0de2a SHA256: 8d9cb634f47453eca7040301417d5415d9970f9dc4c4598c5dd2818ae17c5221 Description: X.Org X server -- SiliconMotion display driver Description-md5: b873756bacc23507a4c008ed69fa8738 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-siliconmotion-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-siliconmotion Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-siliconmotion-lts-quantal_5_i386.deb Size: 1558 MD5sum: db284de06c8dad4c09b0b3d43c5ac02b SHA1: beb9b14cce15cf8dd32436372c40fd6bb8f1519a SHA256: b676172e90d5f3a9824c990d21b0dc7dd2879b774f8925b98ecef6cf8f9fbe43 Description: Transitional package for xserver-xorg-video-siliconmotion Description-md5: cec74f20fa494256849073dfdac90abb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-siliconmotion-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-siliconmotion Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-siliconmotion-lts-raring_5_i386.deb Size: 1552 MD5sum: 06b01535adea297aa9f3a116139b181e SHA1: 3ccca476abc095ed15a32caa14025f18fc27150b SHA256: 04c8c61cb734ef235e48587eca44dbb044e5785f793bb5a9fecb73f1dfb75f2c Description: Transitional package for xserver-xorg-video-siliconmotion Description-md5: cec74f20fa494256849073dfdac90abb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-siliconmotion-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-siliconmotion Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-siliconmotion-lts-saucy_5_i386.deb Size: 1556 MD5sum: 63f886ebb550642842b6e6bd0a32e191 SHA1: 97dfc32eda8b7c31ce860a8e8e6e05fddbc3d2d9 SHA256: 7c03397f92e77f1cde945375c586696355049545600716dfbcc1789a44bd4584 Description: Transitional package for xserver-xorg-video-siliconmotion Description-md5: cec74f20fa494256849073dfdac90abb Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sis Priority: optional Section: x11 Installed-Size: 640 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:0.10.7-0ubuntu6 Replaces: xserver-xorg (<< 6.8.2-35), xserver-xorg-driver-sis Provides: xorg-driver-video, xserver-xorg-video- Depends: libc6 (>= 2.7), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Conflicts: xserver-xorg-driver-sis Filename: pool/main/x/xserver-xorg-video-sis/xserver-xorg-video-sis_0.10.7-0ubuntu6_i386.deb Size: 224774 MD5sum: 6690e9fcffa3312230f75f0527961097 SHA1: 663b9b043a9b74ee2ee83d6eed2f7f0c6fda3afb SHA256: e6326f8006c5df30a19a97f52fb229a4b0b0d2a3a354b9e8164974e8d20406fe Description: X.Org X server -- SiS display driver Description-md5: 42dac6b9768ebbc736ea67fc56bc1813 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-sis-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sis Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sis-lts-quantal_5_i386.deb Size: 1542 MD5sum: d0c3a7634cbbfae75e7b05ac64c57c67 SHA1: da46058bb97868283d157c2d795c1690026dde38 SHA256: a88a2304f7bba189e3e4751939f6b0e2452637614f9ecb0bdc6f524504265e2a Description: Transitional package for xserver-xorg-video-sis Description-md5: 911074974c4441d4c3def63fb4a7bb34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sis-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sis Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sis-lts-raring_5_i386.deb Size: 1542 MD5sum: 97375029af92ef383933b98ce234131f SHA1: 8f1f8cf16092159d962d7c24a5589b15238a7c4f SHA256: a2cfa4166c6782d6f5bbcba6991178737554308b840195a21421ca81f557bd1d Description: Transitional package for xserver-xorg-video-sis Description-md5: 911074974c4441d4c3def63fb4a7bb34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sis-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sis Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sis-lts-saucy_5_i386.deb Size: 1544 MD5sum: fdd58d49f9ac563d4664c10b84fd7bba SHA1: 7db0fb2c69cc956e45f8567b44a25b00691b8a62 SHA256: 1640d28bbefc3c3ab7eb3195c56950fdaa315ccd7d674a2fd93cac87fda3e958 Description: Transitional package for xserver-xorg-video-sis Description-md5: 911074974c4441d4c3def63fb4a7bb34 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sisusb Priority: optional Section: x11 Installed-Size: 136 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:0.9.6-2build1 Provides: xorg-driver-video Depends: libc6 (>= 2.7), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-sisusb/xserver-xorg-video-sisusb_0.9.6-2build1_i386.deb Size: 36502 MD5sum: 8a67b9264717f3769d924482cf41fea0 SHA1: 4daaea2cff48cece161dedce2022b6dc982c227f SHA256: 6dcbf9aaf50b34125803b1bbb7548ed474c07e0b696932f561df11cf58ddcf3b Description: X.Org X server -- SiS USB display driver Description-md5: c07d67930c26348f4f1fb95c2c7c7c8d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-sisusb-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sisusb Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sisusb-lts-quantal_5_i386.deb Size: 1550 MD5sum: 9249b9dcd0890052d60199d3637e9ac8 SHA1: d0aa8f5549f4909b3435e1033478cc08efb62275 SHA256: 246793c9e0851a5d1a1113e8fcc05a99f15b531267de1693b3f3e6402baab651 Description: Transitional package for xserver-xorg-video-sisusb Description-md5: 830a24085bb339b790bca03bd3e76b9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sisusb-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sisusb Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sisusb-lts-raring_5_i386.deb Size: 1548 MD5sum: e58755c188fcb8fd242ea6bce63aac65 SHA1: ae85283bab866c8465e10f54b22211555ebbda2a SHA256: 5f5ead3b6ae90de42a202c84b854dc10c473882f386bc851c231fb01564a4c96 Description: Transitional package for xserver-xorg-video-sisusb Description-md5: 830a24085bb339b790bca03bd3e76b9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-sisusb-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-sisusb Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-sisusb-lts-saucy_5_i386.deb Size: 1544 MD5sum: 75d6ff89f599f3091bf4edff012bb778 SHA1: 44d899eb95cde4cb4ca959a1125858f512593fd0 SHA256: e95714c365a1c6b892a8e56b0fc80d4a1aba3ff6a6c0fb9bd7d06d4e8b87350f Description: Transitional package for xserver-xorg-video-sisusb Description-md5: 830a24085bb339b790bca03bd3e76b9f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-tdfx Priority: optional Section: x11 Installed-Size: 125 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:1.4.5-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.3.6-6~), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-tdfx/xserver-xorg-video-tdfx_1.4.5-1build1_i386.deb Size: 29034 MD5sum: 03c6f6e6d38e28437bdc0260c89e9813 SHA1: 266c15b78bfd1332795236031960915ee26484a9 SHA256: a73923d00e858e2901bf835012e9cb931b0d77b77f24170247ab9fe4ece13810 Description: X.Org X server -- tdfx display driver Description-md5: ed596fbd18e1efd6378926e2096000e5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-tdfx-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-tdfx Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-tdfx-lts-quantal_5_i386.deb Size: 1544 MD5sum: 8c78c68b15e5a0e68dcb90e130fa3c1f SHA1: a7d2ae72318ebf7ffe0fabb709442ecd4fab3e9e SHA256: d7fa70e6f53690234901ab14620b2d362ac960549be2e913668e95451eaced38 Description: Transitional package for xserver-xorg-video-tdfx Description-md5: aebd48ca604b38bdbe0409c73150e1c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-tdfx-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-tdfx Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-tdfx-lts-raring_5_i386.deb Size: 1544 MD5sum: c9be024210e15457d3b726df1146f239 SHA1: 2c48d25cee750fd3cff80e1e6e3c92fb25fc1fd3 SHA256: b7676ea188b6be834c4aa981c0ee92f148b3cb940530251501283f99191b4e24 Description: Transitional package for xserver-xorg-video-tdfx Description-md5: aebd48ca604b38bdbe0409c73150e1c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-tdfx-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-tdfx Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-tdfx-lts-saucy_5_i386.deb Size: 1542 MD5sum: 2cf5d2ba072d99097b62628dcfc70973 SHA1: f436d676769f9afde7d8e6796ba699e30873f642 SHA256: eadfa6e92b9f73ef1654471551e17c66831d11e74cda7bb0af99239aa4407602 Description: Transitional package for xserver-xorg-video-tdfx Description-md5: aebd48ca604b38bdbe0409c73150e1c5 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-trident Priority: optional Section: x11 Installed-Size: 191 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:1.3.6-0ubuntu5 Provides: xorg-driver-video Depends: libc6 (>= 2.7), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-trident/xserver-xorg-video-trident_1.3.6-0ubuntu5_i386.deb Size: 51884 MD5sum: dfbe2bb16035f8e7ab4895f527854259 SHA1: aa428415e7628242613f652a83803fbe1f25a979 SHA256: a51cb0fc14cd707f631025357278a3956ba0fddb9b60d6d97f148e217ee0de27 Description: X.Org X server -- Trident display driver Description-md5: 64f00c4c0730397d4bf5aaa193176b46 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-trident-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-trident Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-trident-lts-quantal_5_i386.deb Size: 1550 MD5sum: 5976d4e1e8442c3ac571163d03d031df SHA1: 70e01afd8877d6c17ce53225ac2d25fd970b2319 SHA256: bfff49091e8e89a3bfdcb766d6f90d720a4406e1fbe3337dda590b9d60fb8a69 Description: Transitional package for xserver-xorg-video-trident Description-md5: a01f3e2ed4616380783cbbdfaf5b93a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-trident-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-trident Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-trident-lts-raring_5_i386.deb Size: 1544 MD5sum: 824158a30a030448a4e3e983b9439730 SHA1: 9b408a3ecc2d9cd3c14a3f0f046a1613440ae79b SHA256: 66feb7e0607c6d74cc33a69263a5b62c82cb46d083ddd3dff9e7b0ef943c2021 Description: Transitional package for xserver-xorg-video-trident Description-md5: a01f3e2ed4616380783cbbdfaf5b93a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-trident-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-trident Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-trident-lts-saucy_5_i386.deb Size: 1548 MD5sum: e3de50d15a8a5c5c20a8ea7fe89702a3 SHA1: 45f5756ee288202e2290815dd0cfd80fc77ba822 SHA256: 00ed463834fd5d3b4d8df414f32cc12bb53784a253b0fe38353f1e10262bbf4b Description: Transitional package for xserver-xorg-video-trident Description-md5: a01f3e2ed4616380783cbbdfaf5b93a6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vesa Priority: optional Section: x11 Installed-Size: 88 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:2.3.3-1build1 Provides: xorg-driver-video Depends: libc6 (>= 2.3.6-6~), xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-vesa/xserver-xorg-video-vesa_2.3.3-1build1_i386.deb Size: 14314 MD5sum: 126fd26e582a090aa44c0af5c87549eb SHA1: ba35c7e4975ee9ff21c0a40f395854aabe57a251 SHA256: 3857e02c56c2fe5ffb1b4406b0eb436638ea2007d40e852bf1661b6b9458be2c Description: X.Org X server -- VESA display driver Description-md5: a16fd7ddeb274e98b09a99dec1bfcca6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-vesa-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vesa Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vesa-lts-quantal_5_i386.deb Size: 1538 MD5sum: d1d66409e3fbaa066e320da6f1ec94c6 SHA1: 0bd59a8954294377bb924f3bd84bf951ae80f9ab SHA256: c30707318ad3251dec274429968b3f81b902d03569b044ae22d93f00c87657ed Description: Transitional package for xserver-xorg-video-vesa Description-md5: 8bfafa7238f63f06e92b94364a91e4b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vesa-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vesa Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vesa-lts-raring_5_i386.deb Size: 1542 MD5sum: ef4b6fd5ccd07fc7e5eed1bc42c9bc3a SHA1: a348c750e93239a03c7c4b208a5f4204c2da8228 SHA256: a252b34b97dd2e7fe4ae64a4cffdf01137a8f88b8fc811b572b42022398eb664 Description: Transitional package for xserver-xorg-video-vesa Description-md5: 8bfafa7238f63f06e92b94364a91e4b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vesa-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vesa Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vesa-lts-saucy_5_i386.deb Size: 1542 MD5sum: b98a801b7ea1fba064ec5b403ed02d2a SHA1: e965b0b82ddb62588da954ab309170ac3e41d8b9 SHA256: e530c7b45a3068bf2000f191122a0d703cac0d7447d52ff1339253c62326f06e Description: Transitional package for xserver-xorg-video-vesa Description-md5: 8bfafa7238f63f06e92b94364a91e4b3 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vmware Priority: optional Section: x11 Installed-Size: 239 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:13.0.2-2ubuntu1 Provides: xorg-driver-video Depends: libc6 (>= 2.4), libdrm2 (>= 2.4.38), libx11-6 (>= 2:1.4.99.1), libxatracker2, libxext6, xorg-video-abi-15, xserver-xorg-core (>= 2:1.14.99.902) Filename: pool/main/x/xserver-xorg-video-vmware/xserver-xorg-video-vmware_13.0.2-2ubuntu1_i386.deb Size: 64768 MD5sum: 3b44004ed040d7989b8b521d458a496b SHA1: 9860d1f7a8267a5ad6fe02de07445ea57aad35a6 SHA256: ff1ca8ae0d5b5d9774e6f7838ff79d01eba6cc79dfc4ea78c9197913b6797dcb Description: X.Org X server -- VMware display driver Description-md5: 21afce1387bf1052ec99956e90ec2d1c Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xserver-xorg-video-vmware-lts-quantal Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vmware Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vmware-lts-quantal_5_i386.deb Size: 1550 MD5sum: 1163215482fc9b97a45d21b4ca5e8d4e SHA1: 5449907526d5e9eee683ce8c813d4f4e29a51eea SHA256: 39505c7bae313e94ee7d6ac68da7f26b9db11aed9cf6fcbd71ccfd2bd50cfc29 Description: Transitional package for xserver-xorg-video-vmware Description-md5: 0b8049c8d4ce79b853f04e40203c2fb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vmware-lts-raring Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vmware Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vmware-lts-raring_5_i386.deb Size: 1546 MD5sum: 125e0977633589df4baa9b04810ea9d8 SHA1: fcd0f332a82e1a484b8c60b6ea4e5ce0abaab0a7 SHA256: 66fee531b3fcfe95464946a67a84524610b7355f82c89cb6d0261a3f3ad97f37 Description: Transitional package for xserver-xorg-video-vmware Description-md5: 0b8049c8d4ce79b853f04e40203c2fb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xserver-xorg-video-vmware-lts-saucy Priority: extra Section: oldlibs Installed-Size: 25 Maintainer: Ubuntu X-SWAT Architecture: i386 Source: xorg-lts-transitional Version: 3:5 Depends: xserver-xorg-video-vmware Filename: pool/main/x/xorg-lts-transitional/xserver-xorg-video-vmware-lts-saucy_5_i386.deb Size: 1544 MD5sum: 2b523a3e5622b81cc7f3273d2003bc1c SHA1: 8489651e8d7ddcd1b5fbfad900cd768e4ae64933 SHA256: 1168ee1bd5c09a6e3c382086d81fe072cf1d596761582a74b879c1e73389d4d2 Description: Transitional package for xserver-xorg-video-vmware Description-md5: 0b8049c8d4ce79b853f04e40203c2fb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xsltproc Priority: optional Section: text Installed-Size: 168 Maintainer: Ubuntu Developers Original-Maintainer: Debian XML/SGML Group Architecture: i386 Source: libxslt Version: 1.1.28-2build1 Depends: libc6 (>= 2.3.4), libxml2 (>= 2.7.4), libxslt1.1 (>= 1.1.27) Filename: pool/main/libx/libxslt/xsltproc_1.1.28-2build1_i386.deb Size: 13220 MD5sum: 37ae0a248714073ad1db6ad94704d100 SHA1: 9729a48df2bf3b7bfb1f91f4fdfa719ed312cded SHA256: c05ce52a96bbc7fdf6713fa3585ad83aead9738f40de7134a5cec9895eac44f4 Description: XSLT 1.0 command line processor Multi-Arch: foreign Homepage: http://xmlsoft.org/xslt/ Description-md5: 269c4daf3d326a815e26cdd2e64cf686 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: edubuntu-desktop-gnome, ubuntu-gnome-desktop Package: xterm Priority: optional Section: x11 Installed-Size: 1611 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 297-1ubuntu1 Provides: x-terminal-emulator Depends: xbitmaps, libc6 (>= 2.15), libfontconfig1 (>= 2.9.0), libice6 (>= 1:1.0.0), libtinfo5, libutempter0 (>= 1.1.5), libx11-6, libxaw7, libxft2 (>> 2.1.1), libxmu6, libxpm4, libxt6 Recommends: x11-utils Suggests: xfonts-cyrillic Filename: pool/main/x/xterm/xterm_297-1ubuntu1_i386.deb Size: 651508 MD5sum: c2aee1353c810d8e3ed02a8dc0970277 SHA1: 8d26e14be881746270667333b1bfcf08da4589d7 SHA256: 41cb71a219562b01fa334fad5fe6ca7bd56fa99c0b3464f52729f632a1df19f1 Description: X terminal emulator Multi-Arch: foreign Homepage: http://invisible-island.net/xterm/xterm.html Description-md5: c1e47d60a01948be9aae7a2a4f63a0fe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xtrans-dev Priority: optional Section: x11 Installed-Size: 366 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: all Source: xtrans Version: 1.3.2-1 Filename: pool/main/x/xtrans/xtrans-dev_1.3.2-1_all.deb Size: 69938 MD5sum: d37a75d0f7eab2c7e2429585ad5b125a SHA1: 7d986a6dc921f7d6eedf10d0886164716e51a5b3 SHA256: 070f3cd8ecd8ea472d89265018064a47df891f47225b0411645e069d73614620 Description: X transport library (development files) Multi-Arch: foreign Description-md5: d8dcf2e537228be6091670219f433234 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xul-ext-mozvoikko Priority: optional Section: web Installed-Size: 101 Maintainer: Ubuntu Core Developers Original-Maintainer: Heikki Mäntysaari Architecture: all Source: mozvoikko Version: 2.0.1-0ubuntu1 Replaces: mozvoikko Depends: libvoikko1, voikko-fi, firefox (>= 4.0) | thunderbird (>= 5.0) | seamonkey (>= 2.2) Breaks: mozvoikko (<= 1.0-4ubuntu2) Filename: pool/main/m/mozvoikko/xul-ext-mozvoikko_2.0.1-0ubuntu1_all.deb Size: 15478 MD5sum: 559eaf08e979b8fd9106d7a787f57080 SHA1: a1e8467ebc10a48a81d18b2425182e6f0d8c1c6d SHA256: 665f839176a1aef28d238231252bcc96fbb7151426e5c15040b577b8c538ff86 Description: Finnish spell-checker extension for Firefox Description-md5: 49444a7908796ef7df8bae1011294ead Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: xul-ext-ubufox Priority: optional Section: web Installed-Size: 378 Maintainer: Ubuntu Mozilla Team Architecture: all Source: ubufox Version: 2.8-0ubuntu1 Replaces: ubufox (<< 0.9~rc2-0ubuntu3) Provides: firefox-ubufox, ubufox Depends: aptdaemon, libglib2.0-0 (>= 2.26) Recommends: firefox (>= 9.0) Breaks: ubufox (<< 0.9~rc2-0ubuntu3) Filename: pool/main/u/ubufox/xul-ext-ubufox_2.8-0ubuntu1_all.deb Size: 56222 MD5sum: 48f48503090501a6af48e15d75215e76 SHA1: 100b5bd88c5689078d11818e73d749d6dd2f0178 SHA256: 623c06fbad31ff9c26c5ba60ae56f4fcbc71ddde51d48e6740d98f80444c24c0 Description: Ubuntu-specific configuration defaults and apt support for Firefox Enhances: firefox Homepage: https://launchpad.net/ubufox Description-md5: d3a589833861a3e410e82d2a68586881 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-full, kubuntu-active-desktop, kubuntu-active-full, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: xul-ext-unity Priority: optional Section: web Installed-Size: 453 Maintainer: Ubuntu Developers Architecture: all Source: unity-firefox-extension Version: 3.0.0+14.04.20140416-0ubuntu1 Provides: firefox-unity Depends: libufe-xidgetter0 (>= 3.0.0+14.04.20140416-0ubuntu1), libunity-webapps0 (>= 1.8.0+r699), xul-ext-websites-integration, firefox (>= 10.0) Breaks: firefox (<< 10.0) Filename: pool/main/u/unity-firefox-extension/xul-ext-unity_3.0.0+14.04.20140416-0ubuntu1_all.deb Size: 33684 MD5sum: 438a921f67a6a4dc68630fe8f7dc87c0 SHA1: 08c9e5e2ab3ef9ec058b6617d2eb9b93bae5e03c SHA256: 530d519c2a399c5cc847a4e819eba482c3b3b3c13b8ce8fbf1eabfafd8e5aff5 Description: Firefox extension: Unity Integration Enhances: firefox Homepage: https://launchpad.net/unity-firefox-extension Description-md5: e4b53d72615feaed2201e5bdbe48e5b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: xul-ext-webaccounts Priority: optional Section: web Installed-Size: 60 Maintainer: Ubuntu Desktop Team Architecture: i386 Source: webaccounts-browser-extension Version: 0.5-0ubuntu2 Provides: firefox-webaccounts Depends: webaccounts-extension-common (= 0.5-0ubuntu2), firefox (>= 9.0) Breaks: firefox (<< 9.0) Filename: pool/main/w/webaccounts-browser-extension/xul-ext-webaccounts_0.5-0ubuntu2_i386.deb Size: 3998 MD5sum: 30765fbd92d8bfba849c285c300a591a SHA1: 3dc9909a8943fa30cb103bea072330e9b0b575b0 SHA256: 15284a9560a86a47d90a0efc76bfe28875e564c05258cdc15729b2086478ef45 Description: Ubuntu Online Accounts extension for firefox Enhances: firefox Homepage: https://launchpad.net/webaccounts-browser-extension Description-md5: 48d651d5fcf582b2a27ff04903f0d38a Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: xul-ext-websites-integration Priority: extra Section: web Installed-Size: 91 Maintainer: Ubuntu Desktop Team Architecture: all Source: webapps-greasemonkey Version: 2.3.6+13.10.20130920.1-0ubuntu1 Depends: libunity-webapps0 Filename: pool/main/w/webapps-greasemonkey/xul-ext-websites-integration_2.3.6+13.10.20130920.1-0ubuntu1_all.deb Size: 14216 MD5sum: 69662971d3882c8a36c33021c01b8636 SHA1: c8fbd657de083cf3207fcbb790174ad737afc5b6 SHA256: d15cdf5e47cb1c117aca74737d357ce74b5d9a878ba3dcdcff70e95d455c716a Description: Firefox extension: Website Integration Homepage: https://launchpad.net/webapps-greasemonkey Description-md5: dfcc6dccd7e7364b9f62adcd6fe38561 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb Package: xutils-dev Priority: optional Section: x11 Installed-Size: 1421 Maintainer: Ubuntu Developers Original-Maintainer: Debian X Strike Force Architecture: i386 Version: 1:7.7~1ubuntu6 Depends: libc6 (>= 2.7), cpp Filename: pool/main/x/xutils-dev/xutils-dev_7.7~1ubuntu6_i386.deb Size: 237112 MD5sum: 10ef9e0dd45cbb03f9bc287e711964ea SHA1: aa1db7fb11779f9d60c5377a70c981afd867b459 SHA256: 835c36b05ca5af1789b478d9f3a85672e01b6b5832b4ef60ff992d0aa61fc6af Description: X Window System utility programs for development Multi-Arch: foreign Description-md5: a6b66c6670710a65fa7788271bdb5c54 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xvfb Priority: optional Section: x11 Installed-Size: 2170 Maintainer: Ubuntu X-SWAT Original-Maintainer: Debian X Strike Force Architecture: i386 Source: xorg-server Version: 2:1.15.1-0ubuntu2 Provides: xserver Depends: xserver-common (>= 2:1.15.1-0ubuntu2), libaudit1 (>= 1:2.2.1), libc6 (>= 2.17), libgcrypt11 (>= 1.5.1), libgl1-mesa-glx | libgl1, libpixman-1-0 (>= 0.30.0), libselinux1 (>= 2.0.82), libxau6, libxdmcp6, libxfont1 (>= 1:1.4.2), xauth, x11-xkb-utils Recommends: libgl1-mesa-dri Filename: pool/main/x/xorg-server/xvfb_1.15.1-0ubuntu2_i386.deb Size: 736756 MD5sum: 0fe4a1b82ef6fa2ea6731de7f8a64a0d SHA1: 4bdbf93160cfe924aea75927c0a8672460d847ac SHA256: 413d2fc47df8ed6934c027b167dc31a51eafef789c024f26975d27ebdd3e201a Description: Virtual Framebuffer 'fake' X server Multi-Arch: foreign Description-md5: ff95e4399e5ec034de6998347673eb73 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: xz-utils Priority: optional Section: utils Installed-Size: 384 Maintainer: Ubuntu Developers Original-Maintainer: Jonathan Nieder Architecture: i386 Version: 5.1.1alpha+20120614-2ubuntu2 Replaces: lzip (<< 1.8~rc2), xz-lzma Provides: lzma Depends: libc6 (>= 2.7), liblzma5 (>= 5.1.1alpha+20120614) Conflicts: lzma (<< 9.22-1), xz-lzma Breaks: lzip (<< 1.8~rc2) Filename: pool/main/x/xz-utils/xz-utils_5.1.1alpha+20120614-2ubuntu2_i386.deb Size: 79846 MD5sum: c20338f1a34099933eef896e9ab28abd SHA1: 3f6c6ce901ab5d52cbbef56229133ba6544783af SHA256: d9ee53a38d1146515e20438c55960323061946d0b8e61a6fbdd0a435a56c2010 Description: XZ-format compression utilities Multi-Arch: foreign Homepage: http://tukaani.org/xz/ Description-md5: ea97a558c8575aebbed2c11cbd20e0f2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Build-Essential: yes Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, print-server, cloud-image, server, kubuntu-desktop, kubuntu-active, kubuntu-active-desktop, kubuntu-active, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: yapps2 Priority: optional Section: python Installed-Size: 210 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Urlichs Architecture: all Version: 2.1.1-17.2ubuntu1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8), yapps2-runtime (= 2.1.1-17.2ubuntu1) Filename: pool/main/y/yapps2/yapps2_2.1.1-17.2ubuntu1_all.deb Size: 58838 MD5sum: a2dd69de9cbc8b3b36331c85f05d5708 SHA1: 829be2f6cf6d119a35357813b04fa6c7343342ad SHA256: 18717148bb7dda11f0325c912c986635b1224ca84a9e42ffdaea2e74aeb85248 Description: Yet Another Python Parser System Description-md5: e0daec7e8417eea1a6ad27d120598d3d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: yapps2-runtime Priority: optional Section: python Installed-Size: 64 Maintainer: Ubuntu Developers Original-Maintainer: Matthias Urlichs Architecture: all Source: yapps2 Version: 2.1.1-17.2ubuntu1 Depends: python2.7, python (>= 2.7.1-0ubuntu2), python (<< 2.8) Filename: pool/main/y/yapps2/yapps2-runtime_2.1.1-17.2ubuntu1_all.deb Size: 8136 MD5sum: 92010778be108b66e1b95da356537331 SHA1: 911473d2d6f1cf828ee6cffcaf06c52a0531c26d SHA256: 600ce9a34ed0da55bd57a223c76805ee695a827f5deb916c713e9111ab830410 Description: Yet Another Python Parser System Description-md5: 5818ec475f14a1d7b0209d5ee2aed309 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: yasm Priority: optional Section: devel Installed-Size: 1561 Maintainer: Ubuntu Developers Original-Maintainer: Sam Hocevar Architecture: i386 Version: 1.2.0-1ubuntu1 Depends: libc6 (>= 2.7) Filename: pool/main/y/yasm/yasm_1.2.0-1ubuntu1_i386.deb Size: 606422 MD5sum: 7cdb9ab3ba2f0ce00c6d36e6d695a6a3 SHA1: 212a13598376e242a3f160cc0ca49fd7d43e69f1 SHA256: 440940f45f8afcd227f92af938933edb1fd34321684ba4116130f85b00c07e43 Description: modular assembler with multiple syntaxes support Homepage: http://www.tortall.net/projects/yasm/ Description-md5: dea64a38f47da6fb51ac8a3e78582601 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: yelp Priority: optional Section: gnome Installed-Size: 2116 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.10.2-0ubuntu1 Depends: libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libwebkitgtk-3.0-0 (>= 1.3.10), libyelp0 (= 3.10.2-0ubuntu1), dconf-gsettings-backend | gsettings-backend, yelp-xsl (>= 3.1.2), man-db (>= 2.5.1-1) Recommends: gnome-user-guide Filename: pool/main/y/yelp/yelp_3.10.2-0ubuntu1_i386.deb Size: 490280 MD5sum: 419d030557612af26a75366d70795a53 SHA1: cc8d05efc05e75d95c9edb88a5ef775ef291037d SHA256: 9a23032a932681bbcca6fdb9de0959138f6ba929c2d172110e8352614f4836cf Description: Help browser for GNOME Homepage: https://wiki.gnome.org/Yelp Description-md5: b660f3f94d2a495572d2b53c6824da41 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: yelp-tools Priority: optional Section: gnome Installed-Size: 299 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.10.0-1 Depends: xsltproc, libxml2-utils, itstool Recommends: zip Filename: pool/main/y/yelp-tools/yelp-tools_3.10.0-1_all.deb Size: 20440 MD5sum: 0ea9d6ee94439f778ce63ec1bb7ccc42 SHA1: 72df4ff64e9689773ac906ee69fd1478df6970a4 SHA256: 6abb3b0422cc94021bbb8284051f8ac7c24adf9504b094344762598828c13a2a Description: Yelp documentation tools Description-md5: 67d34d4de561eee98dcba90001663b95 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 3y Task: ubuntu-gnome-desktop Package: yelp-xsl Priority: optional Section: gnome Installed-Size: 1863 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Version: 3.10.1-1 Filename: pool/main/y/yelp-xsl/yelp-xsl_3.10.1-1_all.deb Size: 297934 MD5sum: 1abc29e923409c32bdb051accdae095e SHA1: cbbeedbfbc869c5f1c890ec9d978684e7a60cd20 SHA256: 703a7fe6d76d8b26638e9fe8e66317456d5010bc3d004e1954b9ca3f325f808d Description: XSL stylesheets for the yelp help browser Description-md5: 1a100ec4d885b993f504229830095864 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: yui-compressor Priority: optional Section: java Installed-Size: 619 Maintainer: Ubuntu Developers Original-Maintainer: Debian Java Maintainers Architecture: all Version: 2.4.7-1 Depends: default-jre-headless | java5-runtime-headless, java-wrappers, libjargs-java Filename: pool/main/y/yui-compressor/yui-compressor_2.4.7-1_all.deb Size: 563176 MD5sum: 6ab98a05df98e6add4a25858e4a5064b SHA1: 57b464ea6c7c4f9d5bfa7b5f1a0b449d6daf7973 SHA256: c901c617551c43241e3558c5adec2b11c33bf7bef81928f1d305fccd0bda6d3a Description: JavaScript/CSS minifier Homepage: http://yuilibrary.com/projects/yuicompressor/ Description-md5: bd069b00e0a22b6335e050845844bcb7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: zeitgeist Priority: optional Section: utils Installed-Size: 34 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: all Version: 0.9.14-0ubuntu4 Depends: python-zeitgeist, zeitgeist-core, zeitgeist-datahub Filename: pool/main/z/zeitgeist/zeitgeist_0.9.14-0ubuntu4_all.deb Size: 2764 MD5sum: 7ac3d9f47cbb5dca75357faab5cacea7 SHA1: a22063ecdfb31b6673e7cb4e457fe4d9dc80a1ca SHA256: 5a19f3e8d9722a60b7aea9d773a1a5217809ad43ed5c243412cde65ca0d5b3a1 Description: event logging framework Homepage: http://zeitgeist-project.com/ Description-md5: c3a22cf4812c44cba8ff553657f1d168 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zeitgeist-core Priority: optional Section: utils Installed-Size: 426 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: i386 Source: zeitgeist Version: 0.9.14-0ubuntu4 Provides: zeitgeist-extension-fts Depends: libc6 (>= 2.4), libdee-1.0-4 (>= 1.0.2), libgcc1 (>= 1:4.1.1), libglib2.0-0 (>= 2.37.3), libsqlite3-0 (>= 3.5.9), libstdc++6 (>= 4.1.1), libxapian22, libzeitgeist-2.0-0 (>= 0.9.14) Suggests: zeitgeist-datahub Filename: pool/main/z/zeitgeist/zeitgeist-core_0.9.14-0ubuntu4_i386.deb Size: 111406 MD5sum: 5eced5a281013dc2cbf474a096a2ce38 SHA1: ee4b74de5008ae7b28b2d476aae62aad43b94484 SHA256: 3697b15485f04e12cf5106ff1ac8e295c92ddb69accd53dddebe2eaa2bf981b6 Description: event logging framework - engine Homepage: http://zeitgeist-project.com/ Description-md5: 4709c129c4bf63ba0918f4c77885bbb2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zeitgeist-datahub Priority: optional Section: utils Installed-Size: 178 Maintainer: Siegfried-Angel Gevatter Pujals Architecture: i386 Source: zeitgeist Version: 0.9.14-0ubuntu4 Depends: zeitgeist-core (>= 0.5.0~), libc6 (>= 2.3.6-6~), libglib2.0-0 (>= 2.37.3), libgtk-3-0 (>= 3.0.0), libjson-glib-1.0-0 (>= 0.13.2), libtelepathy-glib0 (>= 0.18.0), libzeitgeist-2.0-0 (>= 0.9.9) Filename: pool/main/z/zeitgeist/zeitgeist-datahub_0.9.14-0ubuntu4_i386.deb Size: 40256 MD5sum: 3ffcae78a77edae41a2e3d6b96732851 SHA1: 280ece675edce683525650e013c93cbeab6a3273 SHA256: 46f745851649b4b077c392552c66c719babae9323c5bf800ac59b6d0912c8a04 Description: event logging framework - passive logging daemon Enhances: zeitgeist-core Homepage: http://zeitgeist-project.com/ Description-md5: 87456215f638005a5a334b203b507846 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, edubuntu-desktop, edubuntu-usb, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zenity Priority: optional Section: gnome Installed-Size: 335 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: i386 Version: 3.8.0-1ubuntu1 Depends: libc6 (>= 2.4), libgdk-pixbuf2.0-0 (>= 2.22.0), libglib2.0-0 (>= 2.24.0), libgtk-3-0 (>= 3.0.0), libnotify4 (>= 0.7.0), libpango-1.0-0 (>= 1.14.0), libwebkitgtk-3.0-0 (>= 1.3.10), libx11-6, zenity-common (= 3.8.0-1ubuntu1) Filename: pool/main/z/zenity/zenity_3.8.0-1ubuntu1_i386.deb Size: 57150 MD5sum: a70139c8f3e02d89aa36c83bdfebb9ea SHA1: c9bc4d712b9da1bb7ebe511ec767ff5a281af627 SHA256: 0872a4ab64f641500e06490ebe5faee344a8021501e4f6a8a3a4fc5e87fbf95a Description: Display graphical dialog boxes from shell scripts Multi-Arch: foreign Homepage: http://live.gnome.org/Zenity Description-md5: 0eaa042a6247aca86bac2f94a69fc906 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zenity-common Priority: optional Section: gnome Installed-Size: 1684 Maintainer: Ubuntu Developers Original-Maintainer: Debian GNOME Maintainers Architecture: all Source: zenity Version: 3.8.0-1ubuntu1 Replaces: zenity (<< 2.91.5-1~) Breaks: zenity (<< 2.91.5-1~) Filename: pool/main/z/zenity/zenity-common_3.8.0-1ubuntu1_all.deb Size: 208508 MD5sum: f29a009442891e62feaa4c5b3c0852d1 SHA1: 66b3d123f2f151de29c227f4da3686b66f71bfa9 SHA256: a76a6cce57afd1b6b707c04e3142c81125bd4cc1ad51453d094b1b78e259b52b Description: Display graphical dialog boxes from shell scripts (common files) Homepage: http://live.gnome.org/Zenity Description-md5: 31577d10cdc7dea3e76b1ffaca46c1f6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-active-live, kubuntu-active-live, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, mythbuntu-frontend, mythbuntu-frontend, mythbuntu-desktop, mythbuntu-backend-slave, mythbuntu-backend-slave, mythbuntu-backend-master, mythbuntu-backend-master, lubuntu-desktop, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zerofree Priority: extra Section: admin Installed-Size: 50 Maintainer: Ubuntu Developers Original-Maintainer: Thibaut Paumard Architecture: i386 Version: 1.0.2-1ubuntu1 Depends: e2fslibs (>= 1.37), libc6 (>= 2.3.4) Filename: pool/main/z/zerofree/zerofree_1.0.2-1ubuntu1_i386.deb Size: 8574 MD5sum: fe9d4198c6f98ba14d1f604674100a0d SHA1: b647345bb0b6d26ae4dc7f8600395ded9b71a6f8 SHA256: 2bb773715b274325156f6a1772169e5fa1e78248abd7177cd8f651dac478c22a Description: zero free blocks from ext2, ext3 and ext4 file-systems Homepage: http://intgat.tigress.co.uk/rmy/uml/index.html Description-md5: 262e6e46f0838142d423e7e4b5195bfe Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: cloud-image Package: zip Priority: optional Section: utils Installed-Size: 590 Maintainer: Ubuntu Developers Original-Maintainer: Santiago Vila Architecture: i386 Version: 3.0-8 Depends: libbz2-1.0, libc6 (>= 2.7) Recommends: unzip Filename: pool/main/z/zip/zip_3.0-8_i386.deb Size: 254742 MD5sum: 83d5a87cf980d31b467f1fddbf49da38 SHA1: e4d82ee7175f6933ef980f5a325a095457d5c4e3 SHA256: 9978c6d27342c6c91741ea60593a4d3646842efaa219fa640356f4b4f84e6eee Description: Archiver for .zip files Multi-Arch: foreign Homepage: http://www.info-zip.org/Zip.html Description-md5: 581928d34d669e63c353cd694bd040b0 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: ubuntu-desktop, ubuntu-usb, kubuntu-desktop, kubuntu-active-desktop, edubuntu-desktop, edubuntu-usb, xubuntu-desktop, lubuntu-core, ubuntustudio-desktop, ubuntu-gnome-desktop Package: zlib1g Priority: required Section: libs Installed-Size: 170 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: i386 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Provides: libz1 Depends: libc6 (>= 2.4) Pre-Depends: multiarch-support Conflicts: zlib1 (<= 1:1.0.4-7) Breaks: libxml2 (<< 2.7.6.dfsg-2), texlive-binaries (<< 2009-12) Filename: pool/main/z/zlib/zlib1g_1.2.8.dfsg-1ubuntu1_i386.deb Size: 57482 MD5sum: dfc9b329862ecb94556d159844ce03dc SHA1: c45c4ba505e2d88c249b390f30effda44d915ccd SHA256: 6e55b686edb6cc1bff5edc9447f14603c2fbee9007e8f54bbf4175f4b31d2495 Description: compression library - runtime Multi-Arch: same Homepage: http://zlib.net/ Description-md5: 567f396aeeb2b2b63295099aed237057 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Task: minimal Package: zlib1g-dbg Priority: extra Section: libdevel Installed-Size: 404 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: i386 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Provides: libz-dbg Depends: zlib1g (= 1:1.2.8.dfsg-1ubuntu1) Filename: pool/main/z/zlib/zlib1g-dbg_1.2.8.dfsg-1ubuntu1_i386.deb Size: 292900 MD5sum: 11b6ddf5f44eb21886fd5402e2223a0c SHA1: b1ace2233e4db2cfeacc8d1a153c7a5538eb3dd4 SHA256: b95a96feecc7ccfa33fca801302bacb3fba7bbf99a0fd39453c616dd26a34242 Description: compression library - development Homepage: http://zlib.net/ Description-md5: dddc7d60663fa5dc77c76a30127d83db Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: zlib1g-dev Priority: optional Section: libdevel Installed-Size: 424 Maintainer: Ubuntu Developers Original-Maintainer: Mark Brown Architecture: i386 Source: zlib Version: 1:1.2.8.dfsg-1ubuntu1 Provides: libz-dev Depends: zlib1g (= 1:1.2.8.dfsg-1ubuntu1), libc6-dev | libc-dev Conflicts: zlib1-dev Filename: pool/main/z/zlib/zlib1g-dev_1.2.8.dfsg-1ubuntu1_i386.deb Size: 180598 MD5sum: 27da1fcd25b5bcc1473ede55e416dbdc SHA1: f4930c0e1260ee049a2b0701fefcc0862ffdd43e SHA256: b5444ba8339151c56500d453278197e3d06eeb0501bb6e0072e426ac7f4469d9 Description: compression library - development Multi-Arch: same Homepage: http://zlib.net/ Description-md5: d7f4e8a626131fc83c643c5d59096290 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: zsh Priority: optional Section: shells Installed-Size: 1612 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: i386 Version: 5.0.2-3ubuntu6 Depends: libc6 (>= 2.15), libcap2 (>= 2.10), libtinfo5, zsh-common (= 5.0.2-3ubuntu6) Pre-Depends: dpkg (>= 1.15.6~) Recommends: libncursesw5 (>= 5.6+20070908), libpcre3 (>= 8.10) Suggests: zsh-doc Filename: pool/main/z/zsh/zsh_5.0.2-3ubuntu6_i386.deb Size: 564078 MD5sum: 909b92d41f87fbea73d44023581f007c SHA1: a852fbc9269e643c8066f7564687eede668b2273 SHA256: 859b100618b1779f6999aefd865a255c44ae59b8a65a3abde093d19d8d878d62 Description: shell with lots of features Homepage: http://www.zsh.org/ Description-md5: a129d6b2d23d2d5d3a6b822d3f8f856d Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: zsh-beta-doc Priority: optional Section: doc Installed-Size: 21 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: all Source: zsh Version: 5.0.2-3ubuntu6 Depends: zsh-common (= 5.0.2-3ubuntu6), zsh-doc Filename: pool/main/z/zsh/zsh-beta-doc_5.0.2-3ubuntu6_all.deb Size: 1086 MD5sum: 9da38535edc28d26385e198a78ebff3d SHA1: e5d5040bf61160d11bfb47ed3453cee71b0488fc SHA256: 09d4ea63d12e9fac7105ab27c0e55a7a55fe804a076b4398bfa6bf95bcde7323 Description: transitional package to zsh-doc Homepage: http://www.zsh.org/ Description-md5: 425eb63fb19f0f0c8b27e64eb711dab6 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: zsh-common Priority: optional Section: shells Installed-Size: 9309 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: all Source: zsh Version: 5.0.2-3ubuntu6 Replaces: zsh (<= 5.0.2-1) Pre-Depends: dpkg (>= 1.15.6~) Recommends: zsh Suggests: zsh-doc Breaks: zsh (<= 5.0.2-1) Filename: pool/main/z/zsh/zsh-common_5.0.2-3ubuntu6_all.deb Size: 2118774 MD5sum: f24e896687a03c530868cc42e9c23370 SHA1: b3c7f457cd9d0c42e55afb8338537f4ff5f67c91 SHA256: 0fce511693192b0bf4b5b7660d5a745f8bfbfb09dfe0ee0a5551a2a4df2ac5c2 Description: architecture independent files for Zsh Homepage: http://www.zsh.org/ Description-md5: 8aac20ad1d93f2ea018a327bcfd5912f Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 5y Package: zsh-dbg Priority: extra Section: devel Installed-Size: 1799 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: i386 Source: zsh Version: 5.0.2-3ubuntu6 Depends: zsh (= 5.0.2-3ubuntu6), zsh-common (= 5.0.2-3ubuntu6) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/z/zsh/zsh-dbg_5.0.2-3ubuntu6_i386.deb Size: 1459106 MD5sum: adfb76cd28f43c4db1d9aca4bdcd8e35 SHA1: 654d8a1c0d2f804c8613c9315da0c44e89ffaeff SHA256: 5305b8532804ae95238910a2bfffa9009a76f4d0f639de11b5c25031b02ac2ff Description: shell with lots of features (debugging symbols) Homepage: http://www.zsh.org/ Description-md5: b7daaaf215cd0857365c0b1532bd3ec4 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: zsh-dev Priority: optional Section: libdevel Installed-Size: 218 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: i386 Source: zsh Version: 5.0.2-3ubuntu6 Depends: zsh-common (= 5.0.2-3ubuntu6) Filename: pool/main/z/zsh/zsh-dev_5.0.2-3ubuntu6_i386.deb Size: 54160 MD5sum: e570e4857a445667cdb75adf1199680b SHA1: 2704765c6d75aa22761f3b3c7e1348876bb980fb SHA256: a6ee2317ed5305108f7a6c7f440fc99b4c239cb8909a67d7516afe22bbf253ca Description: shell with lots of features (development files) Homepage: http://www.zsh.org/ Description-md5: 958eee099c22df2f69105f5ecae036a2 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m Package: zsh-doc Priority: optional Section: doc Installed-Size: 5719 Maintainer: Ubuntu Developers Original-Maintainer: Debian Zsh Maintainers Architecture: all Source: zsh Version: 5.0.2-3ubuntu6 Depends: zsh-common (= 5.0.2-3ubuntu6) Pre-Depends: dpkg (>= 1.15.6~) Filename: pool/main/z/zsh/zsh-doc_5.0.2-3ubuntu6_all.deb Size: 2274216 MD5sum: 60dbce7416762cde5d8cd16a87ca6920 SHA1: f9d3959495fbce6b0afce1d5e401d102e4d449af SHA256: 8d12dfd5f886b6f7e46c2bdb1643a2528733b8696eec9ddc84e3d239b80c40d1 Description: zsh documentation - info/HTML format Homepage: http://www.zsh.org/ Description-md5: 9b5459fce7bedf54d5694a22e68389c7 Bugs: https://bugs.launchpad.net/ubuntu/+filebug Origin: Ubuntu Supported: 9m ubuntu-release-upgrader-0.220.10/utils/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_Release.gpg0000644000000000000000000000164512332711261030577 0ustar -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iEYEABEKAAYFAlNrkrEACgkQQJdur0N9BbV7RgCfbZGjC7ejdU5fMW6Kbk6bRQcS G2sAn1h7znlqgxolQOhYVAnsfmu96aTbiQIcBAABCgAGBQJTa5KxAAoJEDtP5qzA sh8yat4QALTR1k1DKijcCu9NHWm0p5iz6+cFOmUnYS8ewjhS3Oy5mk9WjXLTpOID BBykbsXnNIEpx4nvPhwX2jb/8XJNIT5pyhHDD7ydbQsDsQnhaah1gBwd5ZP3gwpF 9IGJ15V4737rqeifYNKohn8//4GQsoIuhzyMOqIq8lIpOJyKzWvJm9ToW7kurF1d yQvB2rdXgOLUgXnpzsLu3Xw/p0bY+OUkdTxbfg+UxOIvwI1DYOPrTq/vPunMkA0C QuXv7yTdYiWWoV3IUqzF5iwY0nJAcfH6bBmyXXgr9WY9QXSw+CUjMfTI3EPCG8Rw 8Z9z7LJ8zeH7DucaDkSVmPUE8uKPspc7CHuZ5b09O435TdbiargNAXwRNKKlEXcr 1bQ2CZfve5jxKv3g7xEk4C/LpNMd/0w7DsqIuw6lRwoc4vNqdPlQMjywnHFNYTDl s5Tilg2T2pSE9SRRhLQtGAVP2VU5AD/WJfAUDHM5zLm9avZKsOphiTuXDJkaZxr7 eMn1kQyzCh30ac9zJukh8PfEREY/BT8JFC7qWWUZ2zeevsOQZJ0WHL/lm6TZRsgX 84qD7Z2UrTClnTNd6CUKHm6ispT9uC/BTFZ7efrw8mTPJotBNOpPNgmOVXFKsuoh SyHY769UhUN2MeCGjsLjee5jRg2moS421UmBZbeRgicH92BUaWzL =7r4e -----END PGP SIGNATURE----- ubuntu-release-upgrader-0.220.10/utils/apt/lists/archive.ubuntu.com_ubuntu_dists_trusty_Release0000644000000000000000000016222012332711156030023 0ustar Origin: Ubuntu Label: Ubuntu Suite: trusty Version: 14.04 Codename: trusty Date: Thu, 08 May 2014 14:19:09 UTC Architectures: amd64 arm64 armhf i386 powerpc ppc64el Components: main restricted universe multiverse Description: Ubuntu Trusty 14.04 MD5Sum: ead1cbf42ed119c50bf3aab28b5b6351 8234934 main/binary-amd64/Packages 52d605b4217be64f461751f233dd9a8f 96 main/binary-amd64/Release 4c2ecc07c5b3859ee08bd41f788a5a79 1743009 main/binary-amd64/Packages.gz eb5ec6102dfe1dd632fda76e55a33f07 1350329 main/binary-amd64/Packages.bz2 2f6aba238097579bbb4fe92e5bfa0858 7558784 main/binary-arm64/Packages 5c1efe41ea46ec1a7505c8ed0e93a10d 96 main/binary-arm64/Release 17aecd461a6ca661b908421f4bea099e 1250640 main/binary-arm64/Packages.bz2 e569d8f3777b8b4eaab5a570a3f7f61a 1611082 main/binary-arm64/Packages.gz f1511890bcd2250106292e06bc5d57d3 96 main/binary-armhf/Release 7a3737aa46a2c9397b398c8b00533263 7860402 main/binary-armhf/Packages 44f4d9ef07ae3524dd9b28302f263998 1295158 main/binary-armhf/Packages.bz2 444a1d2e397cf2c6ff0b33c0fcf3f907 1671757 main/binary-armhf/Packages.gz 60cd95dff4f53976b4179a8a061a666e 95 main/binary-i386/Release c0401f75d3c2fd349072389b69665f2a 1347897 main/binary-i386/Packages.bz2 ef0029e4b37d822b9c01780a8d77b0c6 1739448 main/binary-i386/Packages.gz fdac87cc6bf443d7a7baac96d846907f 8205285 main/binary-i386/Packages 11435a5ddcb607dcf247e04019667882 7733542 main/binary-powerpc/Packages 20bc106da87c29d21ac98a3b9f977ebc 1666061 main/binary-powerpc/Packages.gz d1feddb79825bde70d5af3487a6bc861 98 main/binary-powerpc/Release c94022dfd6b8c4d43c8c6432e8a341ba 1290478 main/binary-powerpc/Packages.bz2 3911ac3478a100b5585c12482aa0a668 1253972 main/binary-ppc64el/Packages.bz2 863e1b0ced6f8d6a069dc468ce482818 7578968 main/binary-ppc64el/Packages f9f629674f30e818b12daaf774dc2a48 98 main/binary-ppc64el/Release a997bdc0d0e10639ff19653f96c6465c 1615001 main/binary-ppc64el/Packages.gz cfa7b7931f359550e89c2179c3a0f648 60753 main/debian-installer/binary-amd64/Packages.gz ea517edec04b84c0229d8a53fb4c26e0 225667 main/debian-installer/binary-amd64/Packages 718f06262135a36f34afe1a9b3a4af9f 47239 main/debian-installer/binary-amd64/Packages.bz2 a8ec86f19eac7f71d8221cd4c3576b36 211920 main/debian-installer/binary-arm64/Packages ddd1cdb53f4c84980c4fe84b03470491 45145 main/debian-installer/binary-arm64/Packages.bz2 66ccbf589de7bec813e0d7331dca1200 57576 main/debian-installer/binary-arm64/Packages.gz c8930b4d8f2e99706fe64b90e7bd0248 61813 main/debian-installer/binary-armhf/Packages.gz 44dd074b0ae0041957390b6afc3df83e 48283 main/debian-installer/binary-armhf/Packages.bz2 6ee30df3aebab8e115d0d070b586154f 234956 main/debian-installer/binary-armhf/Packages 0d0c6e9900350c39f7a445d91941bcf6 47141 main/debian-installer/binary-i386/Packages.bz2 eddf0a8437d508e3e12cc91f06b0d8eb 225069 main/debian-installer/binary-i386/Packages 065f4a7195b7faa94b3501ff1232e736 60622 main/debian-installer/binary-i386/Packages.gz 8e44fd0e9aca7f6a23f257d6d3974dcc 74013 main/debian-installer/binary-powerpc/Packages.gz b885d6a6c62eaa4b2f1f9dfee8a683dd 300974 main/debian-installer/binary-powerpc/Packages 727ad3397f8d2592109207f6d141c845 56758 main/debian-installer/binary-powerpc/Packages.bz2 872e58f0ec990c7107e9d860a68a32b7 58701 main/debian-installer/binary-ppc64el/Packages.gz dc0b6e3d06cebf57e7f67f43355e00b9 216539 main/debian-installer/binary-ppc64el/Packages cf3d1878eddaec9873365c1f95530dc5 45829 main/debian-installer/binary-ppc64el/Packages.bz2 0cc415385a3763c3dd5e9068c993a1dc 3632 main/i18n/Index 001a04ae674fd4ce5ffeaa5d0115f6b9 1064355 main/source/Sources.bz2 84e46e3c8fb9cb1238fe0514f496fbe8 97 main/source/Release b59289788042f3c32c47bf4b2129da47 5000095 main/source/Sources 5ed448c8440a7b1b02170dc58c0abfe3 1334581 main/source/Sources.gz 2f3db27f73fdb5832034af6c49cc5adf 102 multiverse/binary-amd64/Release 0fdc04fa805330834fccde8802effb46 132333 multiverse/binary-amd64/Packages.bz2 ab451c93400c540a54cc1381bfbc151b 169243 multiverse/binary-amd64/Packages.gz 285cfb7f0ab4f4fd52f0c69f70966bba 663770 multiverse/binary-amd64/Packages 244200e6351001f44500f87be2425e2f 138708 multiverse/binary-arm64/Packages.gz 9e99f5310dfb8754426b62cbfd749a0c 531113 multiverse/binary-arm64/Packages 2dd72991c4b563b2d693ca27a2e88a11 108957 multiverse/binary-arm64/Packages.bz2 1cd29757f9d8db51c342ea0b9770428d 102 multiverse/binary-arm64/Release 49acec4cb1f92e82a9a8cd7d5aa85d1d 111514 multiverse/binary-armhf/Packages.bz2 7b922bed556286da66c85e14b0fea234 142115 multiverse/binary-armhf/Packages.gz ebe66e71714860defe28166f46979cb0 102 multiverse/binary-armhf/Release 2aa53357cfabdc4a029e82b95a38217b 545287 multiverse/binary-armhf/Packages bd8d2b8f0232774b4ca75497caeb1568 172036 multiverse/binary-i386/Packages.gz f61039393d68b399d87f4c036d653003 673626 multiverse/binary-i386/Packages bcfd07eb46783a176ffd275273f70e1c 134298 multiverse/binary-i386/Packages.bz2 026f83b5f4d7d30c2e396b75789d2dbe 101 multiverse/binary-i386/Release ec6165204c1b20d9afb49e8bf6ba9a55 559226 multiverse/binary-powerpc/Packages 108954b325ae3c2fb70063df3456f0ff 145768 multiverse/binary-powerpc/Packages.gz 2a164a97606debd8f9fb2af0d9b6c918 104 multiverse/binary-powerpc/Release f195403aa1fe8e3092ca51acad24c834 114089 multiverse/binary-powerpc/Packages.bz2 ddca93fc2b8a2872bbdcba2b4175d7ed 515410 multiverse/binary-ppc64el/Packages 9a113761093caa1ea66ee6f5372170ef 135313 multiverse/binary-ppc64el/Packages.gz f01d68e235d888d03830dd348b37fc54 106684 multiverse/binary-ppc64el/Packages.bz2 b2d52bb5e1df99abab7d5299d5e58f0c 104 multiverse/binary-ppc64el/Release d41d8cd98f00b204e9800998ecf8427e 0 multiverse/debian-installer/binary-amd64/Packages e62ff0123a74adfc6903d59a449cbdb0 40 multiverse/debian-installer/binary-amd64/Packages.gz 4059d198768f9f8dc9372dc1c54bc3c3 14 multiverse/debian-installer/binary-amd64/Packages.bz2 d41d8cd98f00b204e9800998ecf8427e 0 multiverse/debian-installer/binary-arm64/Packages e62ff0123a74adfc6903d59a449cbdb0 40 multiverse/debian-installer/binary-arm64/Packages.gz 4059d198768f9f8dc9372dc1c54bc3c3 14 multiverse/debian-installer/binary-arm64/Packages.bz2 e62ff0123a74adfc6903d59a449cbdb0 40 multiverse/debian-installer/binary-armhf/Packages.gz d41d8cd98f00b204e9800998ecf8427e 0 multiverse/debian-installer/binary-armhf/Packages 4059d198768f9f8dc9372dc1c54bc3c3 14 multiverse/debian-installer/binary-armhf/Packages.bz2 e62ff0123a74adfc6903d59a449cbdb0 40 multiverse/debian-installer/binary-i386/Packages.gz 4059d198768f9f8dc9372dc1c54bc3c3 14 multiverse/debian-installer/binary-i386/Packages.bz2 d41d8cd98f00b204e9800998ecf8427e 0 multiverse/debian-installer/binary-i386/Packages 4059d198768f9f8dc9372dc1c54bc3c3 14 multiverse/debian-installer/binary-powerpc/Packages.bz2 d41d8cd98f00b204e9800998ecf8427e 0 multiverse/debian-installer/binary-powerpc/Packages e62ff0123a74adfc6903d59a449cbdb0 40 multiverse/debian-installer/binary-powerpc/Packages.gz 4059d198768f9f8dc9372dc1c54bc3c3 14 multiverse/debian-installer/binary-ppc64el/Packages.bz2 e62ff0123a74adfc6903d59a449cbdb0 40 multiverse/debian-installer/binary-ppc64el/Packages.gz d41d8cd98f00b204e9800998ecf8427e 0 multiverse/debian-installer/binary-ppc64el/Packages f127b31564b2f6f4ee1e847280784baf 2537 multiverse/i18n/Index 16a0821a177de24b329d00dc1d01e767 711248 multiverse/source/Sources 266009600bdbb865f69a0408d316bb2c 211094 multiverse/source/Sources.gz c98016dd15a34d1369b46f244749e18e 173561 multiverse/source/Sources.bz2 10253b3b199e8a46ca8d5f6519037ecc 103 multiverse/source/Release cc40839b401c52259c842a19ce5b1f57 184141 restricted/binary-amd64/Packages ce1f8bec5381dd2e138231eb84ddf11a 15974 restricted/binary-amd64/Packages.gz 201f8af37ae22eb13dee92945108361a 102 restricted/binary-amd64/Release f80e229c51be7e2c16ce70fb13053619 13028 restricted/binary-amd64/Packages.bz2 835fc0235bfcaf3993f061835a9f2715 102 restricted/binary-arm64/Release e62ff0123a74adfc6903d59a449cbdb0 40 restricted/binary-arm64/Packages.gz 4059d198768f9f8dc9372dc1c54bc3c3 14 restricted/binary-arm64/Packages.bz2 d41d8cd98f00b204e9800998ecf8427e 0 restricted/binary-arm64/Packages 4059d198768f9f8dc9372dc1c54bc3c3 14 restricted/binary-armhf/Packages.bz2 e62ff0123a74adfc6903d59a449cbdb0 40 restricted/binary-armhf/Packages.gz 849508d9260957987d315ddb19c626eb 102 restricted/binary-armhf/Release d41d8cd98f00b204e9800998ecf8427e 0 restricted/binary-armhf/Packages 0091b45648917e7e1b2f3cf8daf3c33a 16421 restricted/binary-i386/Packages.gz 28e2da9f9de2169e86761bf169a1085e 185074 restricted/binary-i386/Packages 597bd61f5dc069694e425070241bd2d9 101 restricted/binary-i386/Release 791f8e0dacc967f0556506862b1792ec 13418 restricted/binary-i386/Packages.bz2 4059d198768f9f8dc9372dc1c54bc3c3 14 restricted/binary-powerpc/Packages.bz2 e62ff0123a74adfc6903d59a449cbdb0 40 restricted/binary-powerpc/Packages.gz d41d8cd98f00b204e9800998ecf8427e 0 restricted/binary-powerpc/Packages b563e3c8577589b0cdd7819c119e3f39 104 restricted/binary-powerpc/Release e62ff0123a74adfc6903d59a449cbdb0 40 restricted/binary-ppc64el/Packages.gz 4059d198768f9f8dc9372dc1c54bc3c3 14 restricted/binary-ppc64el/Packages.bz2 d41d8cd98f00b204e9800998ecf8427e 0 restricted/binary-ppc64el/Packages 91fcac8bfd1f2d92b99d285e229aaa31 104 restricted/binary-ppc64el/Release d41d8cd98f00b204e9800998ecf8427e 0 restricted/debian-installer/binary-amd64/Packages 4059d198768f9f8dc9372dc1c54bc3c3 14 restricted/debian-installer/binary-amd64/Packages.bz2 e62ff0123a74adfc6903d59a449cbdb0 40 restricted/debian-installer/binary-amd64/Packages.gz 4059d198768f9f8dc9372dc1c54bc3c3 14 restricted/debian-installer/binary-arm64/Packages.bz2 e62ff0123a74adfc6903d59a449cbdb0 40 restricted/debian-installer/binary-arm64/Packages.gz d41d8cd98f00b204e9800998ecf8427e 0 restricted/debian-installer/binary-arm64/Packages e62ff0123a74adfc6903d59a449cbdb0 40 restricted/debian-installer/binary-armhf/Packages.gz 4059d198768f9f8dc9372dc1c54bc3c3 14 restricted/debian-installer/binary-armhf/Packages.bz2 d41d8cd98f00b204e9800998ecf8427e 0 restricted/debian-installer/binary-armhf/Packages 4059d198768f9f8dc9372dc1c54bc3c3 14 restricted/debian-installer/binary-i386/Packages.bz2 d41d8cd98f00b204e9800998ecf8427e 0 restricted/debian-installer/binary-i386/Packages e62ff0123a74adfc6903d59a449cbdb0 40 restricted/debian-installer/binary-i386/Packages.gz e62ff0123a74adfc6903d59a449cbdb0 40 restricted/debian-installer/binary-powerpc/Packages.gz 4059d198768f9f8dc9372dc1c54bc3c3 14 restricted/debian-installer/binary-powerpc/Packages.bz2 d41d8cd98f00b204e9800998ecf8427e 0 restricted/debian-installer/binary-powerpc/Packages 4059d198768f9f8dc9372dc1c54bc3c3 14 restricted/debian-installer/binary-ppc64el/Packages.bz2 d41d8cd98f00b204e9800998ecf8427e 0 restricted/debian-installer/binary-ppc64el/Packages e62ff0123a74adfc6903d59a449cbdb0 40 restricted/debian-installer/binary-ppc64el/Packages.gz 61785dd9ee2b27ef49e479612445aba5 2797 restricted/i18n/Index 7b8d5c8f218ece1ca37af77d3941011b 103 restricted/source/Release 74b86826be17320e48b75d9d147dea85 22871 restricted/source/Sources 524634c35022d77f335fe1d31fe898a4 5335 restricted/source/Sources.gz f1aa9496b043ed8dfd6370613cd2d541 5433 restricted/source/Sources.bz2 39929667be5295b337096d56a22ff00d 5858915 universe/binary-amd64/Packages.bz2 88dfe49b08ef4cc97be5100708801f16 31726252 universe/binary-amd64/Packages 5b09a1ccd3b556acbc9b41f672cb0a17 7588885 universe/binary-amd64/Packages.gz 33da0973d988a07848e8a42e49d020b0 100 universe/binary-amd64/Release 0f4badf9124d44b5bab0da661aa6c9b8 5472750 universe/binary-arm64/Packages.bz2 bb5eaa39a1c80edf5056900df6d73930 7092987 universe/binary-arm64/Packages.gz d4d4d8801988209535570f4fd6c95e1f 100 universe/binary-arm64/Release c242ad8c87918e715974c9bf29b958ec 29495907 universe/binary-arm64/Packages 881db7787b51e0e6781b247c52068c11 7392868 universe/binary-armhf/Packages.gz c08579cb9190854439661d60f70f511b 100 universe/binary-armhf/Release 09cf58c0ba5f0df54b0e9d11179b9a75 5709820 universe/binary-armhf/Packages.bz2 616c32f4bfbc5a10ce066d67661c8517 30858268 universe/binary-armhf/Packages 164e07bcf2b6187047415c47e989f0bf 31721739 universe/binary-i386/Packages 0edfdcaeca7a0637a74b0d47dc35dbca 99 universe/binary-i386/Release b169eeedd8485c3548a8485e70965e1c 7597482 universe/binary-i386/Packages.gz 821ddb1530f4e8181cac84544fa7ebca 5865806 universe/binary-i386/Packages.bz2 17d0cddc3229ee6406c3250602ea0f43 7432885 universe/binary-powerpc/Packages.gz 69e7ab8f0e3656cbbd0b04ca9c9cc9aa 5740380 universe/binary-powerpc/Packages.bz2 f131bad3a818ea8de7efeb80ccd3027c 102 universe/binary-powerpc/Release d9c525345ca05423650828e938f4b3f9 31053897 universe/binary-powerpc/Packages ce58d697ceb65c22a92c22579b1fe4a4 5410980 universe/binary-ppc64el/Packages.bz2 bf7731480c1f7d9d286d8456b8a4bdfc 7014198 universe/binary-ppc64el/Packages.gz 90b9ab6a197ff60e9f5176568ba796f3 29263935 universe/binary-ppc64el/Packages 5a6f3ee33fbd0a30c5196f4b04332c2a 102 universe/binary-ppc64el/Release c33c2cc6c0f6f925f53c034709b482ea 16358 universe/debian-installer/binary-amd64/Packages.bz2 31926f03025b8d6cb79b539f0c0b5209 66510 universe/debian-installer/binary-amd64/Packages bc0c8e8991b43d290f7dd0763f7026e6 18642 universe/debian-installer/binary-amd64/Packages.gz fb987fcd3c8b52079332fc4a7785487d 17173 universe/debian-installer/binary-arm64/Packages.gz 9274d5bbb8780c31298b506ed922b1f6 15166 universe/debian-installer/binary-arm64/Packages.bz2 7fdf2f961964e795bacdd96d34cbbb3f 61058 universe/debian-installer/binary-arm64/Packages 680c25462bf367c02b9c64c70487395d 19771 universe/debian-installer/binary-armhf/Packages.bz2 975fab4af7507b30fcf0b893bce1c813 87043 universe/debian-installer/binary-armhf/Packages 2f258307a293d652ff6abfb0c3f8aa75 23121 universe/debian-installer/binary-armhf/Packages.gz 6fa772efc9122c18a075c83a6eacc728 66419 universe/debian-installer/binary-i386/Packages 446feb54ec1b8203c606f2f0e8378815 18628 universe/debian-installer/binary-i386/Packages.gz c6a871d4c45d9307c9e86157182f792a 16386 universe/debian-installer/binary-i386/Packages.bz2 b72062c62f4114f3b4c796ead959a42a 65864 universe/debian-installer/binary-powerpc/Packages e188b3870020036b02e3a914bb047306 16188 universe/debian-installer/binary-powerpc/Packages.bz2 239dde656c48f8fd4770be6b3efa866e 18396 universe/debian-installer/binary-powerpc/Packages.gz 17a28d31567bf69ea3d3fa9703a538f4 61855 universe/debian-installer/binary-ppc64el/Packages 5513536770797f452d8270d054e0bd1e 17404 universe/debian-installer/binary-ppc64el/Packages.gz 2c9666e111c2cde20b544c18eae1b5b7 15319 universe/debian-installer/binary-ppc64el/Packages.bz2 2d3d58225443cc1c8de692a1a3290ec0 3129 universe/i18n/Index cf53a6b31e2db1c36f83bd3517e33861 6398981 universe/source/Sources.bz2 06aaf1f1e45c4b33ae8e3bc520731fda 101 universe/source/Release 22b4c0eeb2df363eccd488eadfa7eef0 27857155 universe/source/Sources ad52c20d539762f3c44bf69b5162d694 7925687 universe/source/Sources.gz SHA1: 28c4460e3aaf1b93f11911fdc4ff23c28809af89 8234934 main/binary-amd64/Packages d03d716bceaba35f91726c096e2a9a8c23ccc766 96 main/binary-amd64/Release 1fc16e046e9bc12cba5de5c4ecc4286598e26a3a 1743009 main/binary-amd64/Packages.gz b1c099c5a476780f0e43f0be2debc508dba450c9 1350329 main/binary-amd64/Packages.bz2 cc4aaeae07c5bbb6f0de1004528dad5101969148 7558784 main/binary-arm64/Packages 65c70c9f616003a9cdae3219f4b0d433861d3ad1 96 main/binary-arm64/Release b2cd0938730dd2bd7988801041b34e03c5fd6541 1250640 main/binary-arm64/Packages.bz2 b67e2a5664e70bb9dc1f07abb7a327238cb4c74f 1611082 main/binary-arm64/Packages.gz d7bb438facf5bb2af807ba0830e079609c54bfed 96 main/binary-armhf/Release 8610541786ae55a10cb13c00cab1e12937ab3337 7860402 main/binary-armhf/Packages a6b996456b9d9abc56f067710061fe1ca4225a74 1295158 main/binary-armhf/Packages.bz2 64a8cce95c70fbf754c12b4341b80753b80828d1 1671757 main/binary-armhf/Packages.gz 874b6cd3776f85508fc3633b8c095c3422d8185c 95 main/binary-i386/Release aaafd7e34c248f2f45d7d03ccc4bc42a3162cbf9 1347897 main/binary-i386/Packages.bz2 8764d68b9b17386acac2a33854ef286e50e28061 1739448 main/binary-i386/Packages.gz ad4157498e9b9a2c262e5f592707cac7f12a88ad 8205285 main/binary-i386/Packages acee4aa7267ded355b920e647b12a3d857f5aa5a 7733542 main/binary-powerpc/Packages 39fa0207905212f22b137ab08cf300726f710f71 1666061 main/binary-powerpc/Packages.gz 3b09890757debdccb7a9b78b1f089d1b33275330 98 main/binary-powerpc/Release ad77bdb0568ab718ade487d769c32f5ab36b0cfa 1290478 main/binary-powerpc/Packages.bz2 24c31fb31484b0bd1ab00f2426b0c7fd7c6ab44d 1253972 main/binary-ppc64el/Packages.bz2 046f60ec0d634cd80a245abd712b1ba2609ea454 7578968 main/binary-ppc64el/Packages 464d708c2ef0c6c88ed679b66b0d52a3b737a44b 98 main/binary-ppc64el/Release 2642244a451d54ed204f39327aa6989e54f38e15 1615001 main/binary-ppc64el/Packages.gz aef00023bbcb31a9de9ac9957d8e70ddfe10310d 60753 main/debian-installer/binary-amd64/Packages.gz 92f6b24bb8cd0de4e41f61b8f287dede324ba6ac 225667 main/debian-installer/binary-amd64/Packages e688b84820d40054b8a934cbc5e676b18b3e60cb 47239 main/debian-installer/binary-amd64/Packages.bz2 35e11a37577cbd3f08de892b7c5e2affe18c2f0b 211920 main/debian-installer/binary-arm64/Packages 7b751182f6a3a21883a672259003c94771244f03 45145 main/debian-installer/binary-arm64/Packages.bz2 c9ced692eb84a18b0eaa180d1faeea1402cac91c 57576 main/debian-installer/binary-arm64/Packages.gz 498b1daeee8a7e721eb4acc4d8fedd73dab35f21 61813 main/debian-installer/binary-armhf/Packages.gz 447626bce5305ec8da7d0b9b15baa0ccbceb67b0 48283 main/debian-installer/binary-armhf/Packages.bz2 7d8f5847b5fd79c0fa613a6ba82f372980cf6712 234956 main/debian-installer/binary-armhf/Packages bb6216b3bf0aed98a2ef3b4f7ec83f7d4e07f767 47141 main/debian-installer/binary-i386/Packages.bz2 fe599d3172018db7169b85f7704f77619c9604a7 225069 main/debian-installer/binary-i386/Packages d73bebce56d1125bf1656f7ddc535111084689e8 60622 main/debian-installer/binary-i386/Packages.gz bda46ee38948c3b3fe601eb6afd2f751c6cce876 74013 main/debian-installer/binary-powerpc/Packages.gz f3cb5af000dba0ffb3b71e2ebc856094b8dfd972 300974 main/debian-installer/binary-powerpc/Packages 9ee183ab1bc6a44d74f8402939250e7ed6d19707 56758 main/debian-installer/binary-powerpc/Packages.bz2 25762144912b0a207acc52fc5009ae3a0701ad77 58701 main/debian-installer/binary-ppc64el/Packages.gz 6b6b9d288e289e33c7a15ac407ca5342f61c1d60 216539 main/debian-installer/binary-ppc64el/Packages 05e2b318984cc002913b079b28f72b6314f6b1f7 45829 main/debian-installer/binary-ppc64el/Packages.bz2 8919c169e6e9e33752aaa32000fb3538141ad324 3632 main/i18n/Index 7209d3cfa58b19880b70486ea0701350ea1d1980 1064355 main/source/Sources.bz2 93de1a5ad7b53da68b0ec619b2e11d73e26b82d5 97 main/source/Release 06b9bd82e9402df0ee67b02644f19cbdf544d8ed 5000095 main/source/Sources ce5d571992c54f01dec21f80946659409394ef8e 1334581 main/source/Sources.gz 7ddeba4f2004a956a25081c5e6d738176e8cc64d 102 multiverse/binary-amd64/Release 6da273deb188dac93a870953d63ee62a888b7589 132333 multiverse/binary-amd64/Packages.bz2 efa6196da6c558cf92ed295e0ef913c5381e62ad 169243 multiverse/binary-amd64/Packages.gz 62cbdfcc0470e7a831b78c504dfb021ae72170c2 663770 multiverse/binary-amd64/Packages 6cf3ef15c611245211c9b84565a8f25118a38c3c 138708 multiverse/binary-arm64/Packages.gz 15ce9d58c807bc7628d984d4287ae4baea526fb0 531113 multiverse/binary-arm64/Packages f2ff76cfbadbe8c79a6d235940cfff2df05ab71b 108957 multiverse/binary-arm64/Packages.bz2 799c7672856475892b46593e64b9c2c4b71e1266 102 multiverse/binary-arm64/Release f548827cbfadfd722fc9666b27f47e033f424177 111514 multiverse/binary-armhf/Packages.bz2 3705a45de5bdbb489d9048e550fca2e56395946d 142115 multiverse/binary-armhf/Packages.gz 7d23d93806b4069aaccf9a2654653ecdb4ee9ebb 102 multiverse/binary-armhf/Release 17e7b030e7c29c95ef62c0760b73a857003d0091 545287 multiverse/binary-armhf/Packages 588e07ee87b28477d9a996a22f82c2c0613d8561 172036 multiverse/binary-i386/Packages.gz a67d690b67505c7e092b5822b924a005e8cf06c0 673626 multiverse/binary-i386/Packages 77b026cbc7fb74e36a8137874cc59244bfc8f075 134298 multiverse/binary-i386/Packages.bz2 58d5e5c290f87ea5ac73583951986919b5a27afa 101 multiverse/binary-i386/Release 4195721c04d4d6c23a82081731f4060cd0eb57a6 559226 multiverse/binary-powerpc/Packages 90da77c85e7c58d2afb32c8ac153ecd9e514ac20 145768 multiverse/binary-powerpc/Packages.gz b4c2680be009f3fff0b96ac9c6dbf1c2e1fed5c6 104 multiverse/binary-powerpc/Release 97055e00e594a3bbaa051ce8d8521918341c538f 114089 multiverse/binary-powerpc/Packages.bz2 3e0d2535d03a09a6cc0e4b97845d9e7902e8c45d 515410 multiverse/binary-ppc64el/Packages 590b06c30c5e782fd1d2eeb1fad5363d4b097dd8 135313 multiverse/binary-ppc64el/Packages.gz 28860d879e4371fb55e2cca4be51c01ab4b5a848 106684 multiverse/binary-ppc64el/Packages.bz2 78d6f89ef86016f4cd976ef6445ac269308a1015 104 multiverse/binary-ppc64el/Release da39a3ee5e6b4b0d3255bfef95601890afd80709 0 multiverse/debian-installer/binary-amd64/Packages e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 multiverse/debian-installer/binary-amd64/Packages.gz 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 multiverse/debian-installer/binary-amd64/Packages.bz2 da39a3ee5e6b4b0d3255bfef95601890afd80709 0 multiverse/debian-installer/binary-arm64/Packages e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 multiverse/debian-installer/binary-arm64/Packages.gz 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 multiverse/debian-installer/binary-arm64/Packages.bz2 e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 multiverse/debian-installer/binary-armhf/Packages.gz da39a3ee5e6b4b0d3255bfef95601890afd80709 0 multiverse/debian-installer/binary-armhf/Packages 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 multiverse/debian-installer/binary-armhf/Packages.bz2 e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 multiverse/debian-installer/binary-i386/Packages.gz 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 multiverse/debian-installer/binary-i386/Packages.bz2 da39a3ee5e6b4b0d3255bfef95601890afd80709 0 multiverse/debian-installer/binary-i386/Packages 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 multiverse/debian-installer/binary-powerpc/Packages.bz2 da39a3ee5e6b4b0d3255bfef95601890afd80709 0 multiverse/debian-installer/binary-powerpc/Packages e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 multiverse/debian-installer/binary-powerpc/Packages.gz 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 multiverse/debian-installer/binary-ppc64el/Packages.bz2 e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 multiverse/debian-installer/binary-ppc64el/Packages.gz da39a3ee5e6b4b0d3255bfef95601890afd80709 0 multiverse/debian-installer/binary-ppc64el/Packages 66b5d8d672186b1b717aec3a9ef2622f2d751e90 2537 multiverse/i18n/Index 41613d23a2c7ffb06d4c0a803ccb5aa2e2b9edaf 711248 multiverse/source/Sources 21a0df1323cfde6032350769d93db7c4927771f7 211094 multiverse/source/Sources.gz b61a76b0e8530d7cfac4b17689469513e07b7ab7 173561 multiverse/source/Sources.bz2 6279277c4f7884e5a7c8d3d12e0d68a55b0be77e 103 multiverse/source/Release d6e2ffd215a8c9827d77ee9756ef1bf60ab5903f 184141 restricted/binary-amd64/Packages 10ea92b020dc2cdef52637576406d221b96bf56b 15974 restricted/binary-amd64/Packages.gz 321f993ee4660e80e34c918f4e5b93ebe08d6b3f 102 restricted/binary-amd64/Release d4b0ac272c53899f2ac69020b4bb2abdc54873e4 13028 restricted/binary-amd64/Packages.bz2 cd906196d7f2cc234e1f720789992b649a18db2b 102 restricted/binary-arm64/Release e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 restricted/binary-arm64/Packages.gz 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 restricted/binary-arm64/Packages.bz2 da39a3ee5e6b4b0d3255bfef95601890afd80709 0 restricted/binary-arm64/Packages 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 restricted/binary-armhf/Packages.bz2 e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 restricted/binary-armhf/Packages.gz d4b045e87c2147a84b2670ee6c278044e8654ab1 102 restricted/binary-armhf/Release da39a3ee5e6b4b0d3255bfef95601890afd80709 0 restricted/binary-armhf/Packages fca0dcd7ad773409f7b21f9f4e48d0d4d6097bc1 16421 restricted/binary-i386/Packages.gz 2d0ccc0730f3eeb982fbdf06ac379c6e50e46359 185074 restricted/binary-i386/Packages 912736ac362f34b555ea831060fe7fda99953c07 101 restricted/binary-i386/Release 449baac3269ff163cd6be4ca57f90e805a1ac94c 13418 restricted/binary-i386/Packages.bz2 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 restricted/binary-powerpc/Packages.bz2 e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 restricted/binary-powerpc/Packages.gz da39a3ee5e6b4b0d3255bfef95601890afd80709 0 restricted/binary-powerpc/Packages 4d19f8f47500a5211e1b1b019cc51ae59facedd5 104 restricted/binary-powerpc/Release e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 restricted/binary-ppc64el/Packages.gz 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 restricted/binary-ppc64el/Packages.bz2 da39a3ee5e6b4b0d3255bfef95601890afd80709 0 restricted/binary-ppc64el/Packages 1c7c0a04598806fefc7b9d62550fd69f475b0166 104 restricted/binary-ppc64el/Release da39a3ee5e6b4b0d3255bfef95601890afd80709 0 restricted/debian-installer/binary-amd64/Packages 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 restricted/debian-installer/binary-amd64/Packages.bz2 e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 restricted/debian-installer/binary-amd64/Packages.gz 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 restricted/debian-installer/binary-arm64/Packages.bz2 e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 restricted/debian-installer/binary-arm64/Packages.gz da39a3ee5e6b4b0d3255bfef95601890afd80709 0 restricted/debian-installer/binary-arm64/Packages e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 restricted/debian-installer/binary-armhf/Packages.gz 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 restricted/debian-installer/binary-armhf/Packages.bz2 da39a3ee5e6b4b0d3255bfef95601890afd80709 0 restricted/debian-installer/binary-armhf/Packages 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 restricted/debian-installer/binary-i386/Packages.bz2 da39a3ee5e6b4b0d3255bfef95601890afd80709 0 restricted/debian-installer/binary-i386/Packages e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 restricted/debian-installer/binary-i386/Packages.gz e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 restricted/debian-installer/binary-powerpc/Packages.gz 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 restricted/debian-installer/binary-powerpc/Packages.bz2 da39a3ee5e6b4b0d3255bfef95601890afd80709 0 restricted/debian-installer/binary-powerpc/Packages 64a543afbb5f4bf728636bdcbbe7a2ed0804adc2 14 restricted/debian-installer/binary-ppc64el/Packages.bz2 da39a3ee5e6b4b0d3255bfef95601890afd80709 0 restricted/debian-installer/binary-ppc64el/Packages e3f4c61a216c2c9613cd3bdd1420dde095b296b3 40 restricted/debian-installer/binary-ppc64el/Packages.gz 5860f846e01e703cad4de996bde4c17472d69dae 2797 restricted/i18n/Index a2abc4c58ebadd9cadd44ee9955aea7afd0f299f 103 restricted/source/Release 3d17aaed5fc8f491685e7db694ee7ee51cdfa267 22871 restricted/source/Sources 0f9a73d7bd8e0c8da0d6c17d97a83c18295493cd 5335 restricted/source/Sources.gz ffec42e5c53d1ee36715cb301c9f7a49df369c10 5433 restricted/source/Sources.bz2 f8a8d3194bfd3073eb5365aee9017dba4248b8ae 5858915 universe/binary-amd64/Packages.bz2 5a5ab6b2c3e7b088ed634e511ef31790ebaa19c5 31726252 universe/binary-amd64/Packages 88a688428705493357e9365c02d9b35bbd8ea436 7588885 universe/binary-amd64/Packages.gz 23442a5ff84650eb5b8aa55eb48cf99739ab2109 100 universe/binary-amd64/Release 1dd53cf7b076b36ded4970328eae3c752b69e9d3 5472750 universe/binary-arm64/Packages.bz2 ee8b58d11e98aab06f2a9a6b8bd832c3b5cbefe4 7092987 universe/binary-arm64/Packages.gz f3d450291585a5929883a931aa56e8aedb7dc8da 100 universe/binary-arm64/Release 370b28a02c766bbeb0ad0f64ee7a2971715ea928 29495907 universe/binary-arm64/Packages eb22893f878d10c8b95ce807e7affc9fe17c7ce2 7392868 universe/binary-armhf/Packages.gz b74532c990507393c0d0cc8d60e99fae617e5705 100 universe/binary-armhf/Release 27f5b36f4d665de50f3a9c8158ef648ae6818d16 5709820 universe/binary-armhf/Packages.bz2 dc20e20b8938a8fc6808fe44f50c3ada19fb144c 30858268 universe/binary-armhf/Packages 0ebf261b432b6334f5ccebfc708a47c6c80a2cfc 31721739 universe/binary-i386/Packages a4264a379683d07c60e8491d687cac7752462df0 99 universe/binary-i386/Release 36bb1e01e4bec63cc0535999b03cf11e047b6aa5 7597482 universe/binary-i386/Packages.gz b3bbc3275d94a86760f05972bdad558e42b1a1d4 5865806 universe/binary-i386/Packages.bz2 56b8339260a276a20310a7bbab05145f0393198a 7432885 universe/binary-powerpc/Packages.gz 76216f9e73a702cc09656d7450e7bd8929974904 5740380 universe/binary-powerpc/Packages.bz2 7c8d4f40a8dbbcd520bd7d638259394345822b49 102 universe/binary-powerpc/Release 17bd11b37898512e6a32ae8b63df27bf03cda9d4 31053897 universe/binary-powerpc/Packages 6528975fe75aba4210624cf0b3efdca7381b61e3 5410980 universe/binary-ppc64el/Packages.bz2 9bad3982ea78e1627c1a4069db08dec0b1c5c824 7014198 universe/binary-ppc64el/Packages.gz 6d36f725c786a1264f5604b5c5a203f5508a4b57 29263935 universe/binary-ppc64el/Packages c4425981ddedde1f05d355c9b930da36b48bc977 102 universe/binary-ppc64el/Release a5675e1389176e8a4565b613643d44403c1c6996 16358 universe/debian-installer/binary-amd64/Packages.bz2 f3a40cd0166e10e9c051d09bc13b7fdca5303f38 66510 universe/debian-installer/binary-amd64/Packages 6f87181f8ce16b3242107973064f22e8b9843bcf 18642 universe/debian-installer/binary-amd64/Packages.gz 231d0a0d1f90ab3b1e8c0e37a846dbcb438fa1c9 17173 universe/debian-installer/binary-arm64/Packages.gz 286644d8a30617e2cdfd4d3baae9af74e27b3133 15166 universe/debian-installer/binary-arm64/Packages.bz2 7204ec4b8437e46de049b2f3c01e5f80b69a2ece 61058 universe/debian-installer/binary-arm64/Packages 245ee907a3b914e969ecc70d8cab799be806390e 19771 universe/debian-installer/binary-armhf/Packages.bz2 1579023de7be2602bc54edac057a8d202625cfb6 87043 universe/debian-installer/binary-armhf/Packages bb8d551a66fa197334af1fedf46ba56991a363c9 23121 universe/debian-installer/binary-armhf/Packages.gz ffddca1a6ff3d36f97f20b213f02dcd6902cf4be 66419 universe/debian-installer/binary-i386/Packages e38716d2d6a949376c75a886e481b737c2ea3531 18628 universe/debian-installer/binary-i386/Packages.gz 25378d61b299c2e37b4b54d1b8a7f6af1af11db9 16386 universe/debian-installer/binary-i386/Packages.bz2 6c887d161df39748c6bcb09f37b4d1b5fe6ec5a8 65864 universe/debian-installer/binary-powerpc/Packages 9d2d1072dde9aa5c3fecc26b13bb6ae4f3e5dddc 16188 universe/debian-installer/binary-powerpc/Packages.bz2 2b3042db2b8215e815fa082f96a8c4e9446e0fac 18396 universe/debian-installer/binary-powerpc/Packages.gz 9f7c673bf6609b6491ae051f97e39224c6f26390 61855 universe/debian-installer/binary-ppc64el/Packages 2d41b90a711d22865fa53f99123e3b1413151945 17404 universe/debian-installer/binary-ppc64el/Packages.gz 0c8ef5cd6eaaba69fd8dc3e8c1c9414769deeb9f 15319 universe/debian-installer/binary-ppc64el/Packages.bz2 248f2e38ba3a5354fe987d481264cfe66ea823de 3129 universe/i18n/Index d03e3b687b4c667a984bd127dd38134e88786f3a 6398981 universe/source/Sources.bz2 2ff835b149afa4af64fd7746342165a36a53e9d1 101 universe/source/Release 070eeb003a4204bb131c147629629fb785865746 27857155 universe/source/Sources a2d77049814b31214eaca438e27b0d4ee89757f0 7925687 universe/source/Sources.gz SHA256: 7524a3e2bdb7cbf7804a45a3320d463b250ddbfc8400f91e2f7536d9bed185b3 8234934 main/binary-amd64/Packages d665500cfc63fe3fb2819f4e32d7ad8ed939131984b7c4a571d47b96594614c4 96 main/binary-amd64/Release 59fa3195fd15bb2860fad4ff9ed37b249035e05ee327bed18f95dc88a0a41eb9 1743009 main/binary-amd64/Packages.gz 7095917eb8e4ac9161bc3b2ceeaf86e9265aae7b855a0e15d72096ecb05f1fc2 1350329 main/binary-amd64/Packages.bz2 5244dcf65bab12c9b8153dc236b7740f816ccfd6630fec63633b3e6ffd8197cc 7558784 main/binary-arm64/Packages c49a433230d9b234bf360dc4909386c8624ce1e7be2826522b725ce8ec032d2b 96 main/binary-arm64/Release e0e86fc7e443214c5d98472833ea1b137ab6f57a98d5775ac66f9ad0a77c9e31 1250640 main/binary-arm64/Packages.bz2 8890efae8740fcbdff91e281979fa8987a8b6267b8f4597130d9b97dac15f142 1611082 main/binary-arm64/Packages.gz b454d8463d1a493112d5da8fc2f3395c7221e1ef741dbe617603e95e23242a70 96 main/binary-armhf/Release e26f7a65c5e1fe2b5b8c07d615b1e766f49762cf8eeecfac2fb9542bfb15dc21 7860402 main/binary-armhf/Packages 741451912114c0f721910eb15dbf98b28b9dfa7435a3293c241c5316769e4b57 1295158 main/binary-armhf/Packages.bz2 7847283071c268aa95ec8c2e42e938f8e9100f9a862fa190a6f4df3506bbdd8f 1671757 main/binary-armhf/Packages.gz 4984b26984b4e9e7de18c48e724e1bdd970868c84fc0e950e88f12592cd43501 95 main/binary-i386/Release fdfc38663915c5cef3029872deb8c3bf52b98092073058086e2f1db0c71ebeb4 1347897 main/binary-i386/Packages.bz2 ecdc09eeb491223b406d04474835211bb708e63d8972ed4bdbd00eda57b7c305 1739448 main/binary-i386/Packages.gz d7b84573599f13c89744d091e6bcd8997056a5068e40f9876dd20805dc57342c 8205285 main/binary-i386/Packages 69a3bae5e0bbe7711e22369c1cd80f4ffa78dfc1f4b66853b322b720327b57eb 7733542 main/binary-powerpc/Packages 399a3e5546edb7d6856b19cdcdc7c5c07539d9adc4f1596a389f901f4b373086 1666061 main/binary-powerpc/Packages.gz 3f68a13dc96c2ea071f5c2393d5cdfd59b12615ac7684b8132c28bec98001f7f 98 main/binary-powerpc/Release 063c9d0da79882383c66c756aeb75f9f6c150af3893129e3c56f59b63dcb3bc1 1290478 main/binary-powerpc/Packages.bz2 90d2c17be621ee085d08681d573d3a9dcccbe6becd8afe178b905938ce072692 1253972 main/binary-ppc64el/Packages.bz2 21831d53e3cbd6e9b55e6d7f4c8fbc040eb3ff9df98d37c2c04148e7ebd25768 7578968 main/binary-ppc64el/Packages 03d5495a8a3b5d5535147f2adde24ad0316f487db0ad6834797b4d8f2a496568 98 main/binary-ppc64el/Release 51e591cdf458acc82946ca6262c84ff04d3422c20316cbd6f134fd3086300968 1615001 main/binary-ppc64el/Packages.gz 44d5923cfcdb6109c617d01c38be4fa509c2d81269dfb0aefb390f514880d162 60753 main/debian-installer/binary-amd64/Packages.gz 6f2c7d973ad2588ef1d09e62907e6d0f7da5b75ed6ca6f7be6583a1def574fb8 225667 main/debian-installer/binary-amd64/Packages a4022b5acc15ca52981c4910a542a0f75e6f70e8c8c387f1d4ad52c3fa469265 47239 main/debian-installer/binary-amd64/Packages.bz2 a3e998fee7de1c78c7032a6fca1eb9624f5c4c568d98fe930cbdb66f1a863fd1 211920 main/debian-installer/binary-arm64/Packages 321718411623d51158a24475a4f9ad3907b15abbc8c85f3b3341972093126132 45145 main/debian-installer/binary-arm64/Packages.bz2 e734825d98090b59bf8b11b0d6290669f151734745b46dab234d34fda4b98d37 57576 main/debian-installer/binary-arm64/Packages.gz bec78e30698ee3917267f6815f9aeb9222253470b2e0cb6f97500844b1636e5f 61813 main/debian-installer/binary-armhf/Packages.gz 81da5a5740d1d5600f57935859b4aadf077c17cb71c75584e43de3e4fc7d21ad 48283 main/debian-installer/binary-armhf/Packages.bz2 dc3fac33fdf1073800c9707b408766aa8b6f0c24451fa69676102a4c211552f7 234956 main/debian-installer/binary-armhf/Packages de2afb93b175a7c300e677c6d30b63ef05eb10b5ce7404044deade04da1e541a 47141 main/debian-installer/binary-i386/Packages.bz2 cee151a3684c64952094e3e3ee93a0cbdac0743c04588654d5a12fa2862881c2 225069 main/debian-installer/binary-i386/Packages dd2e00617923c2e7d5a95e2c39b7ba86609ef8536d195d4b894e9502dbd9abda 60622 main/debian-installer/binary-i386/Packages.gz 9ff0d283d8f9d6812ac433fd0049bf0eb568cfd17f6369a6b140f12f3eb8ace5 74013 main/debian-installer/binary-powerpc/Packages.gz 10030e138394faffae5a0c18f496eccb0fc8beff0a4d58950948f39b0e639166 300974 main/debian-installer/binary-powerpc/Packages efec97d820ddb6eca110414c61f7530e0a698f45f1503ca7b527600c93242bd9 56758 main/debian-installer/binary-powerpc/Packages.bz2 8ad220f71c28e852f9845f9b141ae8a92d9814ac553bd16e8f8d8342c44c7e9e 58701 main/debian-installer/binary-ppc64el/Packages.gz d682f966ff09d2794e57b251c1c1ca32518e31f7a10e014dd25ab65a2b22c877 216539 main/debian-installer/binary-ppc64el/Packages a014cec2a75d7d969c1ae8cc81520a54a2da964356622bf9e0474b625ed74273 45829 main/debian-installer/binary-ppc64el/Packages.bz2 f6a57edeb0e0958c2871b4bc76d2b6e34402a98f5a95e34bef40dc98f7a3000e 3632 main/i18n/Index 1aee2ba4c77723c46442e4d8e252dde6bc9d57ac5ea30f416cfe19f0bf4b37b7 1064355 main/source/Sources.bz2 699ff5b32df8cc50111e8114343d81dfb7fc7a13b55ff91e5d4c9d419f942a83 97 main/source/Release 1f493ef03687b21b48489c51a22515c26529d41428f1b8ce51eff8d4b23ea221 5000095 main/source/Sources 48bb4325d7cdc51a121c6df0a2f5efc7b1cb846860c87d27d40dd1a6f21cfe3b 1334581 main/source/Sources.gz a811c69f39ee5bf05a08d2caed867df702793cbe6d7248a90d2b45e215f385de 102 multiverse/binary-amd64/Release d1e77818ece56ef9dfd05bd4733c1f7046f40c938dde2219857fb56faa6dcfa4 132333 multiverse/binary-amd64/Packages.bz2 27ab1308ce918e5253f9f9e15c6b7ccdd36e9794da355b763845b13a09873530 169243 multiverse/binary-amd64/Packages.gz 007b36a17ba7027e4f74991671eabe03fe6bac12f6131b3d5583fc1e37ba35df 663770 multiverse/binary-amd64/Packages 57edbea7326d86b1c8977cbc464703d703b823cdcf8570378ede8acaf730c512 138708 multiverse/binary-arm64/Packages.gz ca09df8c8d052c7d2d20de212ba4d0e2d44e15fe7252f9d063d3e391a3a9afb0 531113 multiverse/binary-arm64/Packages 82d94a78228e9bf9633a211670518f62df7393db0ead0f1851da16d98e9a0f29 108957 multiverse/binary-arm64/Packages.bz2 d7c2130468717cb758509d34d09fc81c030711b7e82d6241e76c43e656a5d0ec 102 multiverse/binary-arm64/Release 4303ffbdc5b3c4c5ba622ab5c9e350fbf3d8d738c932487a8300722669b348cf 111514 multiverse/binary-armhf/Packages.bz2 abb737c5e8b4af4fc262ddbe72de2f03f580c7b07a01f338a0898164108534df 142115 multiverse/binary-armhf/Packages.gz ca0399b11d398d15aa23ba7890ed5de9ebec6cb39e04c66ac3d6d6bda0815154 102 multiverse/binary-armhf/Release 911b87a408d12c237865a4c13870ca3c584f64e7feaf20801ee15c58f51cc69f 545287 multiverse/binary-armhf/Packages b354250c1def9847159094d9061f8cf10ccedcd306ea5c3b688d685852e98761 172036 multiverse/binary-i386/Packages.gz 37302670125eee8135902790274d6478e9ff3f1d30f21a0e917368743feae233 673626 multiverse/binary-i386/Packages cfe5b4724d8cc36f72722b908d249a3d4dc4ca95bdc4d51e200a3bc9dd4936dc 134298 multiverse/binary-i386/Packages.bz2 4e0ccdbda232003fe1759bc6a9d829e002c846e0e8062ae00da07ea0b827fde2 101 multiverse/binary-i386/Release 43a5396e7cb5f18d84564528cc23cb9488caf59c334638c01964ed710415ee19 559226 multiverse/binary-powerpc/Packages 11f3c9d6b6a74e701bcbff3dd470516832188e881ec3c894faf440956d4b3019 145768 multiverse/binary-powerpc/Packages.gz 51509ed54958a561ba53bb24140453ff2132c91f5f478f4e5d8ebabf3b78d4b3 104 multiverse/binary-powerpc/Release ac26f9badf8e8092cf1580736e634629ca31aca767fb59a8e0f7fcfbd86a8cd6 114089 multiverse/binary-powerpc/Packages.bz2 878e659371869cb07151d567028f1bc5ac955fb02fe6d5501cc45bc24aede958 515410 multiverse/binary-ppc64el/Packages 8afdbd382cfddd3bfd8a4e0d6407d3143318308a4153372bfeb67ae3fda10505 135313 multiverse/binary-ppc64el/Packages.gz d9316697f1da2a094dd1bfeb7d15733c2b4da028f800f2f07bc72d7177a557c5 106684 multiverse/binary-ppc64el/Packages.bz2 d331064d4a5a75735d74855ddcff164064ac0c70f1fd695e886d30ee3dff8627 104 multiverse/binary-ppc64el/Release e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 multiverse/debian-installer/binary-amd64/Packages e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 multiverse/debian-installer/binary-amd64/Packages.gz d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 multiverse/debian-installer/binary-amd64/Packages.bz2 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 multiverse/debian-installer/binary-arm64/Packages e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 multiverse/debian-installer/binary-arm64/Packages.gz d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 multiverse/debian-installer/binary-arm64/Packages.bz2 e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 multiverse/debian-installer/binary-armhf/Packages.gz e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 multiverse/debian-installer/binary-armhf/Packages d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 multiverse/debian-installer/binary-armhf/Packages.bz2 e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 multiverse/debian-installer/binary-i386/Packages.gz d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 multiverse/debian-installer/binary-i386/Packages.bz2 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 multiverse/debian-installer/binary-i386/Packages d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 multiverse/debian-installer/binary-powerpc/Packages.bz2 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 multiverse/debian-installer/binary-powerpc/Packages e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 multiverse/debian-installer/binary-powerpc/Packages.gz d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 multiverse/debian-installer/binary-ppc64el/Packages.bz2 e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 multiverse/debian-installer/binary-ppc64el/Packages.gz e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 multiverse/debian-installer/binary-ppc64el/Packages 79b5d1f51ae02e2b6f48528da251fadb1d6a1eee9c7b967ffdabb00c102effc7 2537 multiverse/i18n/Index 1ff20290647ec8fca778880a70148d9b09376fd8bf955baad37953155828c6af 711248 multiverse/source/Sources 220403f1cf1ad88541164de58cc2694b87556c5644f3d05306c12e972ac60599 211094 multiverse/source/Sources.gz 6c956bdc8a59ad6f7d6663b53d9cd4bee6db40f7c9887fd9dbdb37a585e03740 173561 multiverse/source/Sources.bz2 6cae77b968a328ded9245b67b4b0e347447f1a95fe7821f90ecbe6181ee80d3c 103 multiverse/source/Release 70c1a1a7f23705c79e23696fd535a187bc2864795fb822b897295a5590db91a6 184141 restricted/binary-amd64/Packages dea397983db22cbb24ec4504a56712b57bc49596faae193504ab393db57d0fc3 15974 restricted/binary-amd64/Packages.gz 9a63fb2a5eb64ec3167c79bc3da66ab79ab7c3867c1e7dcce9131fcec447553c 102 restricted/binary-amd64/Release e8f1e0f93b842c42c9236ba72d5eb18ac60017b64d5fec29009c8ad8f16a6aaf 13028 restricted/binary-amd64/Packages.bz2 d42a895f41c8dd189623a3be7e778f925f6f4d2b9e9551e63b4006e9577ce128 102 restricted/binary-arm64/Release e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 restricted/binary-arm64/Packages.gz d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 restricted/binary-arm64/Packages.bz2 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 restricted/binary-arm64/Packages d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 restricted/binary-armhf/Packages.bz2 e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 restricted/binary-armhf/Packages.gz 495182a10858eef92c224330fdbc64ef48a86d08b462043bc41140526158c716 102 restricted/binary-armhf/Release e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 restricted/binary-armhf/Packages e6e4a4ee34e8dd96ddd6a60bc890ac69bfa4b190d39356223711e7f761eb4090 16421 restricted/binary-i386/Packages.gz 25a6e9ac8545df4a33693fc73bf9a561e718c68a8b487ab38539899ca327872b 185074 restricted/binary-i386/Packages df128768f2525c928168acc7ea3761b447139c7f7e8f213c447783e7fae75845 101 restricted/binary-i386/Release 0d48f2164d9bc9c9e56ad67d01ffb5194e6ae5e2e8a7e3e26e4d428ce70d32d6 13418 restricted/binary-i386/Packages.bz2 d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 restricted/binary-powerpc/Packages.bz2 e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 restricted/binary-powerpc/Packages.gz e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 restricted/binary-powerpc/Packages 6112df9650e10678af3b56a31c0d75b766874b39d81126c3673d50b520bc297e 104 restricted/binary-powerpc/Release e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 restricted/binary-ppc64el/Packages.gz d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 restricted/binary-ppc64el/Packages.bz2 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 restricted/binary-ppc64el/Packages 09a4c0635eece8dd4fa7bab71eeefa2ac9070bce364187b405eba05a1e1020b4 104 restricted/binary-ppc64el/Release e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 restricted/debian-installer/binary-amd64/Packages d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 restricted/debian-installer/binary-amd64/Packages.bz2 e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 restricted/debian-installer/binary-amd64/Packages.gz d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 restricted/debian-installer/binary-arm64/Packages.bz2 e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 restricted/debian-installer/binary-arm64/Packages.gz e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 restricted/debian-installer/binary-arm64/Packages e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 restricted/debian-installer/binary-armhf/Packages.gz d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 restricted/debian-installer/binary-armhf/Packages.bz2 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 restricted/debian-installer/binary-armhf/Packages d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 restricted/debian-installer/binary-i386/Packages.bz2 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 restricted/debian-installer/binary-i386/Packages e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 restricted/debian-installer/binary-i386/Packages.gz e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 restricted/debian-installer/binary-powerpc/Packages.gz d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 restricted/debian-installer/binary-powerpc/Packages.bz2 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 restricted/debian-installer/binary-powerpc/Packages d3dda84eb03b9738d118eb2be78e246106900493c0ae07819ad60815134a8058 14 restricted/debian-installer/binary-ppc64el/Packages.bz2 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 restricted/debian-installer/binary-ppc64el/Packages e7ab72b8f37c7c9c9f6386fb8e3dfa40bf6fe4b67876703c5927e47cb8664ce4 40 restricted/debian-installer/binary-ppc64el/Packages.gz 519ffc80933b1b5bc3bcc719abd0fbb2b99f600cc3cf404e3721bca760fd9af8 2797 restricted/i18n/Index 8103fc3b9ef64a894b2698e2699e572ffec45568f7bcf39843e544c647a0a568 103 restricted/source/Release ed59048d5ad54f840cf6d167ed5d54406ee24612294a9601266e3469fd7da5bc 22871 restricted/source/Sources 8cdc8cd1e58e37d84bcc37db13881c148e69c5d78dfff09fa61353eceefba3c3 5335 restricted/source/Sources.gz b062fcf3d7074983290d0087878248f84a7462d281d3eb656ff62b6355b06109 5433 restricted/source/Sources.bz2 558637eeb8e340b871653e2060effe36e064677eca4eae62d9e4138dd402a610 5858915 universe/binary-amd64/Packages.bz2 980057378f5ae0c52872747f92720bf95b819f2a28f573abbb77b99397e67a34 31726252 universe/binary-amd64/Packages 6790fe3c98860e2de6b263fc6d988f017e0f41f86180e9fe8cd4a6951eb1086e 7588885 universe/binary-amd64/Packages.gz ecbac6e48c4a0e4e399c45cb8abbb3664dc5e32791059c3327f49558e8be0252 100 universe/binary-amd64/Release c0ee673e644f756ec9895ffbe9947970c1953a672b1605b32b74d9f94764fcd4 5472750 universe/binary-arm64/Packages.bz2 6cfc169a03d329a241e5982b647379f038b7b9963a3c00e779a114794c889887 7092987 universe/binary-arm64/Packages.gz 14bd320d65f42c88494c0a68a8e9857a157e9ba72a967ee239589ea404c35a94 100 universe/binary-arm64/Release 233a8f833cb428bc1937145500e81f5c02917fd2676ca272730507c11a03bc38 29495907 universe/binary-arm64/Packages 6e57e09e9114ee317ec47646c4732d85b01be63e9f3f9faa763af5cc3eca33c4 7392868 universe/binary-armhf/Packages.gz 25841f79fa7d4154d9637c53dd032022b3b35709322ac08766f02d8148534d3b 100 universe/binary-armhf/Release 0b1fb98deefc18dd137f7baf56b34763a5c6709d23dde735a6b7f1f93741d03a 5709820 universe/binary-armhf/Packages.bz2 0f28c70c157757aca28e321c4499d869196b364b34a62d1666ed44b0517f7f76 30858268 universe/binary-armhf/Packages 481db8cae14f392640fa069510e12664050e7e765a64274b5228e0b14f0b19ef 31721739 universe/binary-i386/Packages 8856390e23718c08d5732cff8f5193e63330e9ab606be99bafae023e3f6c6b84 99 universe/binary-i386/Release 401498e9d221a72be691a40e12f5997249dea985d7b6b7ac410008214024585f 7597482 universe/binary-i386/Packages.gz 2afcf259332d88c5e02f5446c4926edd567ef1a00ce24ca7cb400cbf44e2a90f 5865806 universe/binary-i386/Packages.bz2 7d906a94492d62f82ff8a88f99212a2e1df9df7d172f1ef9fca9272b4d9e4cc9 7432885 universe/binary-powerpc/Packages.gz 5c11393f03e141cdce99f518521a3695590f73b02d60a10afa747252f0cefbb8 5740380 universe/binary-powerpc/Packages.bz2 319e5f90b0bfee39d98e0da36882f516fbfb694854bc4a9bef8169e9f4e93bd7 102 universe/binary-powerpc/Release b17339c599aa7017ca1f62a19ae1d67a1c5e4afd15562edfe382c03de81693ea 31053897 universe/binary-powerpc/Packages a671b092eba30e49f72a96e72e7a855f6bed0fbcf911585391c90e460350890f 5410980 universe/binary-ppc64el/Packages.bz2 6c952f786a3562dfee4b305d0459b573e11075263a7d1d13305e88835e56f0ff 7014198 universe/binary-ppc64el/Packages.gz d228031c5fb8e7d3423d55ebb76b24317992c359f56d738571c1e1418622915e 29263935 universe/binary-ppc64el/Packages 5b4d63bd3db2ae8033348ffb18a66813c18905f07ae72bea010becf96472333c 102 universe/binary-ppc64el/Release b6ed67fc5cc439498bfca7a865a949dfa1e9156d1cc42eb9f538d8b2f9a3326d 16358 universe/debian-installer/binary-amd64/Packages.bz2 e72b19e24d41e28e74e7e47f0138e9c1b37a50fa2881f202aaac25a038e09fcb 66510 universe/debian-installer/binary-amd64/Packages 66fc759b0df389b39fad9ad50e71f70cbf67514a609cd2a0127210765b04ee3f 18642 universe/debian-installer/binary-amd64/Packages.gz ad06fbef1e63a9e48eb18a4910893e4a9ea26ba5386cf0afe59bf607b29805e0 17173 universe/debian-installer/binary-arm64/Packages.gz f1dcfdafa6e1d88fe4b75a8f82bb9589e41efa444ee12ba06c90c3a0eccbb19a 15166 universe/debian-installer/binary-arm64/Packages.bz2 1c8f0041aa233dbc8ad19f1a5fee29307af9044cd1b88e5cd3d3d4df2d031c6e 61058 universe/debian-installer/binary-arm64/Packages 79e8ffecc207f5818545020c53f69d500fca1e61e191c33f06b674beb553befa 19771 universe/debian-installer/binary-armhf/Packages.bz2 c037118c3ba2ac9a041890afea8d4934f6f8acd9f534f76ab5a75eb160c5e302 87043 universe/debian-installer/binary-armhf/Packages 68f1f5cb98a871fdac716c184119c7d03be72515fe0988aaf7ae97133628c965 23121 universe/debian-installer/binary-armhf/Packages.gz 14c037d2c4edb063f3b73ac200ba953c9594705769b42d59a19169405ee980f3 66419 universe/debian-installer/binary-i386/Packages 3d1bdc1e08615e1abea21e623ad21dad846929572d407ca6063f5f391415fd79 18628 universe/debian-installer/binary-i386/Packages.gz 34accd8f4ecb0505eb967d8d1459bfc95029e65783844cd55f4b08a0dc136dd0 16386 universe/debian-installer/binary-i386/Packages.bz2 917d93ba2ec6a724f90d62bceabe7af70b0a776eb1e869f05856e81061e4de50 65864 universe/debian-installer/binary-powerpc/Packages d38ce6270702de3953c7dae2a12dfa2b6035c87d9053d2edcc8f60276c310d14 16188 universe/debian-installer/binary-powerpc/Packages.bz2 1f162dd562792e02c005b50999f90a105cfe7ee04860f8dad2b6cba76d169fd3 18396 universe/debian-installer/binary-powerpc/Packages.gz e4839ef17717cb7fd91d58000328f83a2ad1225f584d8288232ccbd65d57ff27 61855 universe/debian-installer/binary-ppc64el/Packages 9af3cd4c4ed189ac761ff63fe3db10348094595db162ce010d979167ebf54d0b 17404 universe/debian-installer/binary-ppc64el/Packages.gz 11b698b0fca6adaaa644e295ae906b9b220ab9ca0fda28e610b7480c7c14ebad 15319 universe/debian-installer/binary-ppc64el/Packages.bz2 c753f2ee685a08382fd2e9e3916f77a08042403e38144bb81583b7a81ff0a36f 3129 universe/i18n/Index dbe17a8aca33867c911744ead025dccb995d7b38766eede1b23e740125a5d5c8 6398981 universe/source/Sources.bz2 a5960643d4d37311f99b727db4a97b6c8799150e9085106d8c3e41ba46904084 101 universe/source/Release 6b52973d75361b5dd2a21f6f50ef5d5d0dcdfdc1d812fdc35759447386f8e767 27857155 universe/source/Sources 7525b15b01621ed8321dcae7754eeb42b8e12055bb1f8ed367d4630d49a06357 7925687 universe/source/Sources.gz ubuntu-release-upgrader-0.220.10/utils/update_mirrors.py0000755000000000000000000000074712431225715020157 0ustar #!/usr/bin/python import feedparser import sys # read what we have current_mirrors = set() for line in open(sys.argv[1], "r"): current_mirrors.add(line.strip()) outfile = open(sys.argv[1],"a") d = feedparser.parse("https://launchpad.net/ubuntu/+archivemirrors-rss") #import pprint #pp = pprint.PrettyPrinter(indent=4) #pp.pprint(d) for entry in d.entries: for link in entry.links: if not link.href in current_mirrors: outfile.write(link.href+"\n") ubuntu-release-upgrader-0.220.10/utils/demoted.cfg.dapper0000644000000000000000000000656712431225715020125 0ustar # demoted packages from dapper to hardy alcovebook-sgml alcovebook-sgml-doc aspell-fi binfmt-support blender bluez-hcidump bluez-pcmcia-support calc console-common console-data courier-authdaemon courier-base courier-doc courier-imap courier-imap-ssl courier-pop courier-pop-ssl courier-ssl debian-el debmake dh-consoledata dh-kpatches doc-debian dpkg-dev-el emacs21 emacs21-bin-common emacs21-common emacs21-el evms evms-cli evms-gui evms-ncurses expat festlex-cmu festlex-poslex festvox-kallpc16k ftgl-dev g++-3.4 gcj-4.1-base gij-4.1 git-email gnome-cups-manager gnome-doc-tools gnus gok gok-doc gtkhtml3.8 gtranslator heartbeat heartbeat-dev heimdal-dev ia32-libs-kde installation-guide-hppa irssi-text kde-style-lipstik kitchensync klaptopdaemon kmplayer-doc knewsticker-scripts ladspa-sdk lam4-dev lam4c2 latex-xft-fonts libaltlinuxhyph-dev libasn1-6-heimdal libcompfaceg1 libcompfaceg1-dev libconfig-inifiles-perl libconvert-binhex-perl libdm0 libdm0-dev libdvdnav-dev libdvdnav4 libdvdread3 libemail-valid-perl libevms-2.5 libevms-dev libfinance-quote-perl libgcj7-jar libgd-gd2-noxpm-perl libgda2-3 libgda2-common libgda2-dev libgda2-doc libgdchart-gd2-noxpm libgdchart-gd2-noxpm-dev libglib1.2 libglib1.2-dbg libglib1.2-dev libgnomecupsui1.0-1c2a libgnomecupsui1.0-dev libgnomedb2-4 libgnomedb2-common libgnomedb2-dev libgnomedb2-doc libgnucrypto-java libgssapi4-heimdal libgtk1.2 libgtk1.2-common libgtk1.2-dbg libgtk1.2-dev libhdb7-heimdal libhtml-tableextract-perl libio-pty-perl libipc-run-perl libjaxp1.2-java libkadm5clnt4-heimdal libkadm5srv7-heimdal libkafs0-heimdal libkrb5-17-heimdal liblzo1 libmail-sendmail-perl libmailtools-perl libmime-perl libmpich1.0-dev libnasl-dev libnasl2 libnessus-dev libnessus2 libnet-dns-perl libnet-domain-tld-perl libnet-ip-perl libnet1 libnet1-dev libnetcdf++3 libnetcdf3 libnews-nntpclient-perl libpcap0.7 libpcap0.7-dev libpgtcl-dev libpgtcl1.5 libpils-dev libpils0 libpq4 libquicktime-dev libroken16-heimdal libstdc++6-dbg libstdc++6-dev libstlport4.6-dev libstlport4.6c2 libstonith-dev libstonith0 libsyck0-dev libttf-dev libttf2 libvncauth-dev libvncauth0 libxaw6 libxaw6-dbg libxml-dev libxml1 libxmlsec1 libxmlsec1-dev libxmlsec1-nss libxmlsec1-openssl memtester menu-xdg mgetty mgetty-fax mpi-doc mpich-bin myspell-fi nagios-common nagios-mysql nagios-pgsql nagios-plugins nagios-plugins-basic nagios-plugins-standard nagios-text nessus nessus-dev nessus-plugins nessusd netcdfg-dev nvidia-glx-legacy nvidia-glx-legacy-dev openjade1.3 openoffice.org-help-km openoffice.org-l10n-km pcmcia-cs perlsgml pmount postgresql-8.1 postgresql-client-8.1 postgresql-contrib-8.1 postgresql-doc-8.1 postgresql-plperl-8.1 postgresql-plpython-8.1 postgresql-pltcl-8.1 postgresql-server-dev-8.1 procinfo publib-dev python-elementtree python-elementtree-doc python-eunuchs python-gadfly python-htmltmpl python-kjbuckets python-mode python-netcdf python-pgsql python-psycopg python-scientific-doc python-soappy python-sqlite python-stats python-syck python2.4-schooltool rcs readahead-list reportbug rhino rhino-doc schooltool sdf-doc sgml2x smake springgraph sysutils tcsh tex4ht ttf-baekmuk ttf-bpg-georgian-fonts ubuntu-calendar ubuntu-calendar-december ubuntu-calendar-february ubuntu-calendar-january ubuntu-calendar-march ubuntu-calendar-november ubuntu-calendar-october utf8-migration-tool vnc-common wfinnish wlassistant xarchiver xfce4-taskmanager xfmedia xmms xmms-dev xvncviewer yada yada-doc ubuntu-release-upgrader-0.220.10/utils/est_kernel_size.py0000644000000000000000000000050012431225715020265 0ustar #!/usr/bin/python from __future__ import print_function import apt_pkg import glob import os (sysname, nodename, krelease, version, machine) = os.uname() sum = 0 for entry in glob.glob("/boot/*%s*" % krelease): sum += os.path.getsize(entry) print("Sum of kernel related files: ", sum, apt_pkg.size_to_str(sum)) ubuntu-release-upgrader-0.220.10/utils/demoted.cfg.precise0000644000000000000000000004012013017612173020262 0ustar # demoted packages from precise to trusty akonadi-backend-mysql akonadi-dbg akonadi-server akregator amarok amarok-common amarok-dbg amarok-utils amor apport-kde apturl-kde ark ark-dbg autoconf2.59 avogadro-data blogilo bluedevil bluez-gstreamer bomber bovo braindump calligra calligra-data calligra-dbg calligra-l10n-ca calligra-l10n-cavalencia calligra-l10n-cs calligra-l10n-da calligra-l10n-de calligra-l10n-el calligra-l10n-es calligra-l10n-et calligra-l10n-fi calligra-l10n-fr calligra-l10n-hu calligra-l10n-it calligra-l10n-kk calligra-l10n-nb calligra-l10n-nds calligra-l10n-nl calligra-l10n-pl calligra-l10n-pt calligra-l10n-ptbr calligra-l10n-ru calligra-l10n-sk calligra-l10n-sv calligra-l10n-uk calligra-l10n-zhcn calligra-l10n-zhtw calligra-libs calligraflow calligraflow-data calligraplan calligrasheets calligrastage calligrawords calligrawords-data cdparanoia cdrdao ceph-fs-common ceph-fs-common-dbg ceph-mds-dbg cervisia checkbox-cli choqok cloud-initramfs-growroot cloud-initramfs-rescuevol cpp-4.4 cpp-4.4-doc cpp-4.6 cpp-4.6-doc create-resources db5.1-doc db5.1-util debconf-kde-dbg dia-common dia-gnome dia-libs dolphin dragonplayer ebook-tools-dbg edubuntu-live emacs23 emacs23-bin-common emacs23-common emacs23-el emacs23-nox enscript erlang-et expat eyed3 fence-agents filelight finger fonts-dustin fonts-dzongkha fonts-sil-gentium fonts-sil-gentium-basic fortune-mod fortunes-min freecdb freespacenotifier g++-4.4 g++-4.6 g++-4.6-multilib gawk-doc gcc-4.4 gcc-4.4-base gcc-4.4-doc gcc-4.6-base gcc-4.6-doc gcc-4.6-multilib gcc-4.6-plugin-dev gcc-4.6-source gccxml gfortran-4.4-doc gfortran-4.6 gfortran-4.6-doc gfortran-4.6-multilib gfs2-utils gftp-common gftp-gtk ginn gir1.2-clutter-gst-1.0 gir1.2-indicate-0.7 gksu glade gle-doc gnome-media gnome-nettool gnome-online-accounts gnugo gobjc-4.6 gpsd gpsd-dbg gstreamer0.10-gnonlin gstreamer0.10-gnonlin-dbg gstreamer0.10-gnonlin-doc gstreamer0.10-qapt gtk2-engines-oxygen gtk3-engines-oxygen guile-1.8 guile-1.8-dev guile-1.8-doc guile-1.8-libs gwenview gwenview-dbg gwibber gwibber-service gwibber-service-facebook gwibber-service-identica gwibber-service-sina gwibber-service-sohu gwibber-service-twitter hardlink ibus-qt4 icedtea-6-jre-cacao icedtea-6-jre-jamvm icedtea-6-plugin iconc icont iconx icoutils im-switch indi-dbg iodbc ipsec-tools jovie juk k3b k3b-data k3b-dbg kaccessible kaddressbook kajongg kalarm kalgebra kalgebra-common kalgebra-dbg kalzium kalzium-data kalzium-dbg kamera kamera-dbg kanagram kapman kapptemplate karbon kate kate-data kate-dbg katepart katomic kbattleship kblackbox kblocks kbounce kbreakout kbruch kbruch-dbg kcachegrind kcalc kcharselect kcolorchooser kcron kde-baseapps kde-baseapps-bin kde-baseapps-data kde-baseapps-dbg kde-config-cddb kde-config-cron kde-icons-mono kde-l10n-ar kde-l10n-bg kde-l10n-bs kde-l10n-ca kde-l10n-ca-valencia kde-l10n-cs kde-l10n-da kde-l10n-de kde-l10n-el kde-l10n-engb kde-l10n-es kde-l10n-et kde-l10n-eu kde-l10n-fa kde-l10n-fi kde-l10n-fr kde-l10n-ga kde-l10n-gl kde-l10n-he kde-l10n-hi kde-l10n-hr kde-l10n-hu kde-l10n-ia kde-l10n-id kde-l10n-is kde-l10n-it kde-l10n-ja kde-l10n-kk kde-l10n-km kde-l10n-ko kde-l10n-lt kde-l10n-lv kde-l10n-nb kde-l10n-nds kde-l10n-nl kde-l10n-nn kde-l10n-pa kde-l10n-pl kde-l10n-pt kde-l10n-ptbr kde-l10n-ro kde-l10n-ru kde-l10n-si kde-l10n-sk kde-l10n-sl kde-l10n-sr kde-l10n-sv kde-l10n-tg kde-l10n-th kde-l10n-tr kde-l10n-ug kde-l10n-uk kde-l10n-vi kde-l10n-wa kde-l10n-zhcn kde-l10n-zhtw kde-runtime kde-runtime-data kde-runtime-dbg kde-sc-dev-latest kde-style-oxygen kde-wallpapers kde-wallpapers-default kde-window-manager kde-window-manager-common kde-workspace kde-workspace-bin kde-workspace-data kde-workspace-data-extras kde-workspace-dbg kde-workspace-dev kde-workspace-kgreet-plugins kde-zeroconf kdeaccessibility kdeadmin kdeartwork-dbg kdebase-dbg kdebase-runtime kdebase-runtime-dbg kdebase-workspace kdebase-workspace-dbg kdebase-workspace-dev kdeedu kdeedu-kvtml-data kdegames kdegames-card-data kdegames-card-data-extra kdegames-mahjongg-data kdegraphics kdegraphics-libs-data kdegraphics-mobipocket kdegraphics-strigi-analyzer kdegraphics-thumbnailers kdelibs5-plugins kdemultimedia kdemultimedia-dev kdemultimedia-kio-plugins kdenetwork kdenetwork-filesharing kdepasswd kdepim kdepim-dbg kdepim-dev kdepim-doc kdepim-kresources kdepim-runtime kdepim-runtime-dbg kdepimlibs-dbg kdepimlibs-kio-plugins kdepimlibs5-dev kdeplasma-addons kdeplasma-addons-dbg kdesdk kdesdk-dolphin-plugins kdesdk-kio-plugins kdesdk-misc kdesdk-scripts kdesdk-strigi-plugins kdesudo kdetoys kdeutils kdewebdev kdewebdev-dbg kdf kdiamond kdm kexi kfilereplace kfind kfourinline kgamma kgeography kgeography-data kget kgoldrunner kgpg khangman khelpcenter4 kig kigo killbots kimagemapeditor kinfocenter kiriki kjots kjumpingcube klettres klettres-data klickety klines klinkstatus klipper kmag kmahjongg kmail kmenuedit kmines kmix kmousetool kmouth kmplot kmtrace knetwalk knode knotes kolf kollision kolourpaint4 kommander kompare konq-plugins konqueror konqueror-nsplugins konquest konsole konsole-dbg konsolekalendar kontact konversation konversation-data konversation-dbg kopete kopete-message-indicator korganizer kpartloader kpat kppp krdc kremotecontrol kreversi krfb krita krita-data krosspython kruler ksaneplugin kscd kshisen ksirk ksnapshot kspaceduel ksquares kstars kstars-data ksudoku ksysguard ksysguardd ksystemlog kteatime ktimer ktimetracker ktorrent ktorrent-data ktorrent-dbg ktouch ktouch-data ktron kttsd ktuberling kturtle ktux kubrick kubuntu-debug-installer kubuntu-debug-installer-dbg kubuntu-default-settings kubuntu-desktop kubuntu-docs kubuntu-full kubuntu-netbook kubuntu-netbook-default-settings kubuntu-notification-helper kubuntu-notification-helper-dbg kubuntu-web-shortcuts kuiviewer kuser kwalletmanager kwordquiz kwrite lacheck latex-sanskrit lemon lib32objc3 lib32objc3-dbg lib32stdc++6-4.4-dbg lib32stdc++6-4.6-dbg lib64objc3 lib64objc3-dbg lib64stdc++6-4.4-dbg lib64stdc++6-4.6-dbg libakonadi-calendar4 libakonadi-contact4 libakonadi-dev libakonadi-kabc4 libakonadi-kcal4 libakonadi-kde4 libakonadi-kmime4 libakonadi-notes4 libakonadiprotocolinternals1 libapache2-mod-auth-kerb libapm-dev libapm1 libav-dbg libav-doc libav-tools libavcodec-dev libavdevice-dev libavdevice53 libavfilter-dev libavformat-dev libavogadro-dev libavogadro1 libavutil-dev libaxis-java libaxis-java-doc libbackport-util-concurrent-java libbackport-util-concurrent-java-doc libbcmail-java libbluedevil-dev libbluedevil1 libcairo-perl libcalendarsupport4 libcfitsio3 libcfitsio3-dbg libcfitsio3-dev libcfitsio3-doc libclass-isa-perl libcln-dev libcln6 libclutter-gst-1.0-0 libclutter-gst-1.0-dbg libclutter-gst-dev libclutter-gst-doc libcommons-collections-java libcommons-collections-java-doc libcommons-discovery-java libcommons-discovery-java-doc libcue-dev libcue1 libdatetime-format-iso8601-perl libdb5.1 libdb5.1++ libdb5.1++-dev libdb5.1-dbg libdb5.1-dev libdb5.1-java libdb5.1-java-dev libdb5.1-java-gcj libdb5.1-sql libdb5.1-sql-dev libdb5.1-stl libdb5.1-stl-dev libdc1394-22 libdc1394-22-dbg libdc1394-22-dev libdc1394-22-doc libdconf-qt-dev libdconf-qt0 libdebconf-kde-dev libdebconf-kde0 libdevel-leak-perl libdmtx-dev libdmtx0a libeigen2-dev libeigen2-doc libenca-dbg libenca-dev libenca0 libepub-dev libepub0 libeventviews4 libextutils-pkgconfig-perl libfacile-ocaml-dev libfli-dev libfli1 libfont-freetype-perl libgadu-dev libgadu-doc libgadu3 libgadu3-dbg libgccxml-dev libgksu2-0 libgksu2-dev libgle3 libgle3-dev libglib-perl libgnome-desktop-2-17 libgnome-desktop-dev libgnome-media-profiles-3.0-0 libgnome-media-profiles-dev libgnome-menu-dev libgnome-menu2 libgnujaf-java libgnujaf-java-doc libgoocanvas-common libgoocanvas-dev libgoocanvas3 libgpgme++2 libgps-dev libgps20 libgsm1 libgsm1-dbg libgsm1-dev libgtk2-perl libgtk2-perl-doc libgtlcore0.8 libgtlfragment0.8 libgtlimageio0.8 libhessian-java libhessian-java-doc libhsqldb-java libhsqldb-java-doc libibus-qt-dev libibus-qt1 libid3-3.8.3-dev libid3-3.8.3c2a libid3-doc libid3-tools libido-0.1-0 libido-0.1-dev libifp-dev libifp4 libincidenceeditorsng4 libindi-data libindi-dev libindicate-dev libindicate-doc libindicate-gtk-dev libindicate-gtk0.1-cil libindicate-gtk0.1-cil-dev libindicate-gtk3 libindicate-gtk3-dev libindicate-qt-dev libindicate-qt1 libindicate0.1-cil libindicate0.1-cil-dev libindicate5 libjpeg-progs libjpeg-turbo-progs libk3b-dev libk3b6 libk3b6-extracodecs libkabc4 libkactivities-bin libkactivities-dbg libkactivities-dev libkactivities6 libkalarmcal2 libkateinterfaces4 libkatepartinterfaces4 libkblog4 libkcal4 libkcalcore4 libkcalutils4 libkcddb-dev libkcddb4 libkdcraw-data libkdcraw-dev libkdeedu-data libkdeedu-dbg libkdeedu-dev libkdegames-dev libkdepim4 libkdepimdbusinterfaces4 libkeduvocdocument4 libkephal4abi1 libkexiv2-data libkexiv2-dbg libkexiv2-dev libkholidays4 libkimap4 libkipi-data libkipi-dbg libkipi-dev libkldap4 libkleo4 libkmahjongglib4 libkmanagesieve4 libkmbox4 libkmime4 libkonq-common libkonq5-dev libkonq5-templates libkonq5abi1 libkonqsidebarplugin-dev libkonqsidebarplugin4a libkontactinterface4 libkopete-dev libkopete4 libkpgp4 libkpimidentities4 libkpimtextedit4 libkpimutils4 libkresources4 libksane-data libksane-dbg libksane-dev libksane0 libkscreensaver5 libksgrd4 libksieve4 libksieveui4 libksignalplotter4 libktnef4 libktorrent-dbg libktorrent-dev libktorrent-l10n libkwinactiveglesutils1 libkwinglesutils1 libkxmlrpcclient4 liblastfm-dbg liblastfm-dev liblcms1 liblcms1-dev libloudmouth1-0 libloudmouth1-0-dbg libloudmouth1-dev liblsofui4 libmad0 libmad0-dev libmailcommon4 libmailtransport4 libmarble-dev libmath-round-perl libmessagecomposer4 libmessagecore4 libmessagelist4 libmessageviewer4 libmicroblog4 libmpcdec-dev libmpcdec6 libmsn-dev libmsn0.3 libmsn0.3-dbg libmusicbrainz3-6 libmusicbrainz3-dev libmx4j-java libmygpo-qt-dev libmygpo-qt1 libmysqld-pic libnet-daemon-perl libnet-telnet-perl libnjb-dev libnjb-doc libnjb5 libnova-dev libntrack-dev libntrack-glib-dev libntrack-glib2 libntrack-gobject-dev libntrack-gobject1 libntrack-qt4-1 libntrack-qt4-dev libntrack0 libobjc3 libobjc3-dbg libokteta1core1 libokteta1gui1 libopenal-data libopenal-dev libopenal1 libopenbabel-dev libopenbabel-doc libopenbabel4 libopenctl0.8 libopenshiva0.8 libpackagekit-qt2-dev libpam-winbind libpango-perl libplasma-geolocation-interface4 libplasmagenericshell4 libplot-dev libplot2c2 libplrpc-perl libpostproc-dev libpostproc52 libpqxx-3.1 libpqxx-3.1-dbg libpqxx3-dev libpqxx3-doc libprison-dbg libprison-dev libprison0 libprocesscore4abi1 libprocessui4a libpstoedit-dev libpstoedit0c2a libqalculate-dev libqalculate-doc libqalculate5 libqapt-dev libqca2-plugin-ossl libqgpgme1 libqgpsmm-dev libqgpsmm20 libqoauth-dev libqoauth1 libqrencode-dev libqrencode3 libqscintilla2-designer libqt4-gui libqt4-sql-odbc libqt4-sql-psql libqtbamf-dev libqtbamf1 libqtdee2 libqtgconf-dev libqtgconf1 libqtglib-2.0-0 libqtgstreamer-0.10-0 libqtgstreamer-dev libqtgstreamerui-0.10-0 libqtgstreamerutils-0.10-0 libqtgtl-dev libqtscript4-core libqtscript4-doc libqtscript4-gui libqtscript4-network libqtscript4-sql libqtscript4-uitools libqtscript4-xml libqtwebkit-qmlwebkitplugin libquvi-dev libquvi-doc libquvi-scripts libquvi7 libqwt-dev libqwt-doc libqwt6 libradius1 libradius1-dev librcc-dev librcc0 librccgtk2-0 librcd-dev librcd0 libreoffice libreoffice-kde libreoffice-style-oxygen libreplaygain-dev libreplaygain1 librpc-xml-perl libruby libschroedinger-1.0-0 libschroedinger-dev libschroedinger-doc libservlet2.5-java libservlet2.5-java-doc libsnmp-perl libspnav-dev libspnav0 libstdc++6-4.4-dbg libstdc++6-4.4-dev libstdc++6-4.4-doc libstdc++6-4.4-pic libstdc++6-4.6-dbg libstdc++6-4.6-dev libstdc++6-4.6-doc libswitch-perl libswscale-dev libswscale2 libsyndication4 libtag-extras-dev libtag-extras1 libtelepathy-farstream2 libtelepathy-farstream2-dbg libtemplateparser4 libtest-distribution-perl libtest-number-delta-perl libtomcat6-java libunicode-map8-perl libunicode-string-perl libunique-3.0-0 libunique-3.0-dev libunique-3.0-doc libunity-2d-private0 libva-dev libva-egl1 libva-glx1 libva-tpi1 libva-x11-1 libva1 libvala-0.14-0 libvala-0.14-0-dbg libvala-0.14-dev libvala-0.16-0 libvala-0.16-0-dbg libvala-0.16-dev libweather-ion6 libwsdl4j-java libwsdl4j-java-doc libxbase2.0-0 libxbase2.0-dev libxml-handler-yawriter-perl libxml-sax-machines-perl libxml-twig-perl libxml-xpath-perl libxmlrpc-core-c3 libxmlrpc-core-c3-dev libxsltc-java libyaml-syck-perl liferea liferea-data liferea-dbg lirc lokalize lskat lua5.1 marble marble-data marble-dbg marble-plugins mkelfimage mscgen mtp-tools muon muon-dbg muon-installer muon-notifier muon-updater ndisgtk ndiswrapper-common ndiswrapper-utils-1.9 noweb ntrack-module-libnl-0 ocaml-native-compilers okteta okteta-dev okular okular-dbg okular-dev okular-extra-backends opengtl-dev openjdk-6-dbg openjdk-6-demo openjdk-6-doc openjdk-6-jre-lib openjdk-6-source openoffice.org-hyphenation-lt openssl-blacklist openssl-blacklist-extra openvpn-blacklist oxygen-cursor-theme oxygen-cursor-theme-extra oxygen-icon-theme palapeli palapeli-data parley parley-data partitionmanager pinentry-qt4 pitivi plasma-containments-addons plasma-dataengines-addons plasma-dataengines-workspace plasma-desktop plasma-netbook plasma-runners-addons plasma-scriptengine-javascript plasma-scriptengine-python plasma-scriptengine-superkaramba plasma-wallpapers-addons plasma-widget-facebook plasma-widget-folderview plasma-widget-kimpanel plasma-widget-ktorrent plasma-widget-lancelot plasma-widget-menubar plasma-widget-message-indicator plasma-widget-networkmanagement plasma-widgets-addons plasma-widgets-workspace plymouth-theme-kubuntu-logo plymouth-theme-kubuntu-text pmake polkit-kde-1 postgresql-plperl-9.1 poxml pstoedit pymacs python-avogadro python-beautifulsoup python-brlapi python-carrot python-configglue python-couchdb python-daemon python-dingus python-enchant python-eyed3 python-germinate python-gflags python-gmenu python-gmenu-dbg python-gnupginterface python-gtk2-tutorial python-iniparse python-kde4 python-kde4-dbg python-kde4-dev python-kde4-doc python-levenshtein python-libproxy python-logilab-astng python-louis python-magic python-minimock python-nevow python-protobuf python-pyatspi2 python-pygoocanvas python-qscintilla2 python-stompy python-uniconvertor python-uniconvertor-dbg python-virtkey python-vobject python-webkit python-webkit-dev python-xkit python3-zope.fixers qapt-batch qapt-dbg qapt-deb-installer qt4-doc-html qtgstreamer-dbg qtgstreamer-doc qtgstreamer-plugins quassel quassel-data quassel-dbg racoon radeontool rdesktop redboot-tools rekonq rekonq-dbg rocs scribus scribus-doc skanlite skanlite-dbg slugimage software-properties-kde speech-dispatcher-dbg speedcrunch step svgpart sweeper systemsettings tcl8.4 tcl8.4-dev tcl8.4-doc testng tex4ht tex4ht-common texlive-doc-bg texlive-doc-cs+sk texlive-doc-es texlive-doc-fi texlive-doc-fr texlive-doc-it texlive-doc-ja texlive-doc-ko texlive-doc-mn texlive-doc-nl texlive-doc-pl texlive-doc-pt texlive-doc-ru texlive-doc-si texlive-doc-th texlive-doc-tr texlive-doc-uk texlive-doc-vi texlive-doc-zh texlive-fonts-extra texlive-lang-african texlive-lang-all texlive-lang-arabic texlive-lang-armenian texlive-lang-croatian texlive-lang-cyrillic texlive-lang-czechslovak texlive-lang-danish texlive-lang-dutch texlive-lang-finnish texlive-lang-french texlive-lang-greek texlive-lang-hebrew texlive-lang-hungarian texlive-lang-indic texlive-lang-italian texlive-lang-latin texlive-lang-latvian texlive-lang-lithuanian texlive-lang-mongolian texlive-lang-norwegian texlive-lang-other texlive-lang-polish texlive-lang-portuguese texlive-lang-spanish texlive-lang-swedish texlive-lang-tibetan texlive-lang-vietnamese texlive-science tk8.4 tk8.4-dev tk8.4-doc tomcat6 tomcat6-admin tomcat6-common tomcat6-docs tomcat6-examples translate-toolkit ubiquity-frontend-kde ubiquity-slideshow-kubuntu ubuntu-defaults-zh-cn ubuntu-wallpapers-precise udisks udisks-doc umbrello unclutter unity-2d unity-2d-common unity-2d-panel unity-2d-shell unity-2d-spread update-manager-kde usb-creator-kde vala-0.14-doc vala-0.16-doc valac-0.14 valac-0.14-dbg valac-0.16 valac-0.16-dbg valac-0.16-vapi vgabios virtuoso-minimal virtuoso-opensource-6.1-bin vorbisgain xml-twig-tools xmlstarlet xnest xplanet xplanet-images xrestop xscreensaver xscreensaver-data xscreensaver-gl xserver-xorg-video-geode xserver-xorg-video-geode-dbg xsettings-kde ubuntu-release-upgrader-0.220.10/utils/demoted.cfg0000644000000000000000000000540613017611541016637 0ustar # demoted packages from saucy to trusty bluez-gstreamer checkbox-cli clang-3.3-doc db5.1-doc db5.1-util emacs23 emacs23-bin-common emacs23-common emacs23-common-non-dfsg emacs23-el emacs23-nox fonts-dzongkha gccxml gstreamer0.10-gnonlin gstreamer0.10-gnonlin-dbg gstreamer0.10-gnonlin-doc ipsec-tools libav-doc libav-tools libavcodec-dev libavdevice-dev libavdevice53 libavfilter-dev libavformat-dev libavutil-dev libaxis-java libaxis-java-doc libbackport-util-concurrent-java libbackport-util-concurrent-java-doc libbcmail-java libbcpkix-java libcairo-perl libclang-3.3-dev libclang-common-3.3-dev libclang1-3.3 libclang1-3.3-dbg libclass-isa-perl libcommons-collections-java libcommons-collections-java-doc libcommons-discovery-java libcommons-discovery-java-doc libdatetime-format-iso8601-perl libdb5.1 libdb5.1++ libdb5.1++-dev libdb5.1-dbg libdb5.1-dev libdb5.1-java libdb5.1-java-dev libdb5.1-java-gcj libdb5.1-java-jni libdb5.1-sql libdb5.1-sql-dev libdb5.1-stl libdb5.1-stl-dev libdc1394-22 libdc1394-22-dbg libdc1394-22-dev libdc1394-22-doc libdri2-1 libdri2-dbg libdri2-dev libenca-dbg libenca-dev libenca0 libextutils-pkgconfig-perl libfont-freetype-perl libgadu-dev libgadu-doc libgadu3 libgadu3-dbg libgccxml-dev libglib-perl libgnujaf-java libgnujaf-java-doc libgoocanvas-common libgoocanvas-dev libgoocanvas3 libgsm1 libgsm1-dbg libgsm1-dev libgtk2-perl libgtk2-perl-doc libhessian-java libhessian-java-doc liblcms1 liblcms1-dev libllvm-3.3-ocaml-dev libllvm3.3 libllvm3.3-dbg libmx4j-java libpam-freerdp libpango-perl libpostproc-dev libpostproc52 libquvi-dev libquvi-doc libquvi-scripts libquvi7 libradius1 libradius1-dev librcc-dev librcc0 librccgtk2-0 librcd-dev librcd0 librpc-xml-perl libschroedinger-1.0-0 libschroedinger-dev libschroedinger-doc libswitch-perl libswscale-dev libswscale2 libtest-consistentversion-perl libtest-distribution-perl libtest-number-delta-perl libtest-pod-content-perl libva-dev libva-drm1 libva-egl1 libva-glx1 libva-tpi1 libva-x11-1 libva1 libvala-0.20-0 libvala-0.20-0-dbg libvala-0.20-dev libwsdl4j-java libwsdl4j-java-doc lightdm-remote-session-freerdp lightdm-remote-session-uccsconfigure llvm-3.3 llvm-3.3-dev llvm-3.3-doc llvm-3.3-examples llvm-3.3-runtime lua5.1 mcp-account-manager-goa mkelfimage openvswitch-ipsec pitivi postgresql-plperl-9.1 python-beautifulsoup python-configglue python-daemon python-logilab-astng python-minimock python-openvswitch python-protobuf python-pygoocanvas python-ubuntu-sso-client.tests python-uniconvertor python-uniconvertor-dbg python-webkit python-webkit-dev python-xkit python3-dirspec python3-greenlet racoon remote-login-service sbc-tools speech-dispatcher-dbg testng thin-client-config-agent ttf-marvosym ubuntu-wallpapers-saucy udisks udisks-doc vala-0.20-doc valac-0.20 valac-0.20-dbg valac-0.20-vapi vgabios zram-config ubuntu-release-upgrader-0.220.10/utils/demotions.py0000755000000000000000000001075612431225715017122 0ustar #! /usr/bin/env python # # FIXME: strip "TryExec" from the extracted menu files (and noDisplay) # # TODO: # - emacs21 ships it's icon in emacs-data, deal with this # - some stuff needs to be blacklisted (e.g. gnome-about) # - lots of packages have their desktop file in "-data", "-comon" (e.g. anjuta) # - lots of packages have multiple desktop files for the same application # abiword, abiword-gnome, abiword-gtk from __future__ import print_function import os import sys import warnings warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning) import apt import apt_pkg #import xdg.Menu ARCHES = ["i386", "amd64"] #ARCHES = ["i386"] # pkgs in main for the given dist class Dist(object): def __init__(self, name): self.name = name self.pkgs_in_comp = {} def get_replace(cache, pkgname): replaces = set() if pkgname not in cache: #print("can not find '%s'" % pkgname) return replaces pkg = cache[pkgname] ver = cache._depcache.get_candidate_ver(pkg._pkg) if not ver: return replaces depends = ver.depends_list for t in ["Replaces"]: if t not in depends: continue for depVerList in depends[t]: for depOr in depVerList: replaces.add(depOr.target_pkg.name) return replaces if __name__ == "__main__": # init apt_pkg.config.set("Dir::state", "./apt/") apt_pkg.config.set("Dir::Etc", "./apt") apt_pkg.config.set("Dir::State::status", "./apt/status") try: os.makedirs("apt/lists/partial") except OSError: pass old = Dist(sys.argv[1]) # Dist("gutsy") new = Dist(sys.argv[2]) # Dist("hardy") # go over the dists to find main pkgs for dist in [old, new]: for comp in ["main", "restricted", "universe", "multiverse"]: line = "deb http://archive.ubuntu.com/ubuntu %s %s\n" % \ (dist.name, comp) with open("apt/sources.list", "w") as sources_list: sources_list.write(line) dist.pkgs_in_comp[comp] = set() # and the archs for arch in ARCHES: apt_pkg.config.set("APT::Architecture", arch) cache = apt.Cache(apt.progress.base.OpProgress()) prog = apt.progress.base.AcquireProgress() cache.update(prog) cache.open(apt.progress.base.OpProgress()) for pkg in cache: if ":" in pkg.name: continue dist.pkgs_in_comp[comp].add(pkg.name) # check what is no longer in main no_longer_main = old.pkgs_in_comp["main"] - new.pkgs_in_comp["main"] no_longer_main |= (old.pkgs_in_comp["restricted"] - new.pkgs_in_comp["restricted"]) # check what moved to universe and what was removed (or renamed) in_universe = lambda pkg: pkg in new.pkgs_in_comp["universe"] or \ pkg in new.pkgs_in_comp["multiverse"] # debug #print([pkg for pkg in no_longer_main if not in_universe(pkg)]) # this stuff was demoted and is in universe demoted = [pkg for pkg in no_longer_main if in_universe(pkg)] demoted.sort() # remove items that are now in universe, but are replaced by something # in main (pidgin, gaim) etc #print("Looking for replaces") line = "deb http://archive.ubuntu.com/ubuntu %s %s\n" % (new.name, "main") with open("apt/sources.list", "w") as sources_list: sources_list.write(line) dist.pkgs_in_comp[comp] = set() for arch in ARCHES: apt_pkg.config.set("APT::Architecture", arch) cache = apt.Cache(apt.progress.base.OpProgress()) prog = apt.progress.base.AcquireProgress() cache.update(prog) cache.open(apt.progress.base.OpProgress()) # go over the packages in "main" and check if they replaces something # that we think is a demotion for pkgname in new.pkgs_in_comp["main"]: replaces = get_replace(cache, pkgname) for r in replaces: if r in demoted: #print("found '%s' that is demoted but replaced by '%s'" % #(r, pkgname)) demoted.remove(r) #outfile = "demoted.cfg" #print("writing the demotion info to '%s'" % outfile) # write it out #out = open(outfile,"w") #out.write("# demoted packages\n") #out.write("\n".join(demoted)) print("# demoted packages from %s to %s" % (sys.argv[1], sys.argv[2])) print("\n".join(demoted)) ubuntu-release-upgrader-0.220.10/DistUpgrade/0000755000000000000000000000000013262671233015611 5ustar ubuntu-release-upgrader-0.220.10/DistUpgrade/cdromupgrade0000755000000000000000000000213312431225715020207 0ustar #!/bin/sh # # "cdromupgrade" is a shell script wrapper around the dist-upgrader # to make it possible to put it onto the top-level dir of a CD and # run it from there # # Not that useful unfortunately when the CD is mounted "noexec". # # the codename is AUTO-GENERATED from the build-host relase codename CODENAME=saucy UPGRADER_DIR=dists/$CODENAME/main/dist-upgrader/binary-all/ # this script can be called in three ways: # sh /cdrom/cdromugprade # sh ./cdromupgrade # sh cdromupgrade # the sh below is needed to figure out the cdromdirname case "$0" in /*) cddirname="${0%\/*}" ;; */*) cddirname="$(pwd)/${0%\/*}" ;; *) cddirname="$(pwd)/" ;; esac fullpath="$cddirname/$UPGRADER_DIR" # extract the tar to a TMPDIR and run it from there if [ ! -f "$fullpath/$CODENAME.tar.gz" ]; then echo "Could not find the upgrade application archive, exiting" exit 1 fi TMPDIR=$(mktemp -d) cd $TMPDIR tar xzf "$fullpath/$CODENAME.tar.gz" if [ ! -x $TMPDIR/$CODENAME ]; then echo "Could not find the upgrade application in the archive, exiting" exit 1 fi $TMPDIR/$CODENAME --cdrom "$cddirname" $@ ubuntu-release-upgrader-0.220.10/DistUpgrade/sourceslist.py0000777000000000000000000000000012431225715033436 2/usr/lib/python3/dist-packages/aptsources/sourceslist.pyustar ubuntu-release-upgrader-0.220.10/DistUpgrade/crashdialog.ui0000644000000000000000000001021512431225715020424 0ustar CrashDialog 0 0 483 483 0 0 Upgrader Crashed false true 0 0 <h2>Upgrade Tool Crashed</h2> Qt::AlignVCenter false QFrame::HLine QFrame::Sunken <qt>We're sorry; the upgrade tool crashed. Please file a new bug report at <a href="http://launchpad.net/ubuntu/+source/ubuntu-release-upgrader">http://launchpad.net/ubuntu/+source/ubuntu-release-upgrader</a> (do not attach your details to any existing bug) and a developer will attend to the problem as soon as possible. To help the developers understand what went wrong, include the following detail in your bug report, and attach the files /var/log/dist-upgrade/apt.log and /var/log/dist-upgrade/main.log: Qt::AlignVCenter true true Qt::Horizontal QSizePolicy::MinimumExpanding 20 20 &Close Alt+C true true qPixmapFromMimeSource kurllabel.h crash_close clicked() CrashDialog accept() 20 20 20 20 ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeViewGtk.py0000644000000000000000000007361712431225715021712 0ustar # DistUpgradeViewGtk.py # # Copyright (c) 2004-2006 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function import pygtk pygtk.require('2.0') import glib import gtk import gtk.gdk import vte import gobject import pango import sys import locale import logging import time import subprocess import apt import apt_pkg import os from .DistUpgradeApport import run_apport, apport_crash from .DistUpgradeView import DistUpgradeView, FuzzyTimeToStr, InstallProgress, AcquireProgress from .SimpleGtkbuilderApp import SimpleGtkbuilderApp import gettext from .DistUpgradeGettext import gettext as _ gobject.threads_init() class GtkCdromProgressAdapter(apt.progress.base.CdromProgress): """ Report the cdrom add progress Subclass this class to implement cdrom add progress reporting """ def __init__(self, parent): self.status = parent.label_status self.progress = parent.progressbar_cache self.parent = parent def update(self, text, step): """ update is called regularly so that the gui can be redrawn """ if text: self.status.set_text(text) self.progress.set_fraction(step/float(self.totalSteps)) while gtk.events_pending(): gtk.main_iteration() def ask_cdrom_name(self): return (False, "") def change_cdrom(self): return False class GtkOpProgress(apt.progress.base.OpProgress): def __init__(self, progressbar): self.progressbar = progressbar #self.progressbar.set_pulse_step(0.01) #self.progressbar.pulse() self.fraction = 0.0 def update(self, percent=None): super(GtkOpProgress, self).update(percent) #if self.percent > 99: # self.progressbar.set_fraction(1) #else: # self.progressbar.pulse() new_fraction = self.percent/100.0 if abs(self.fraction-new_fraction) > 0.1: self.fraction = new_fraction self.progressbar.set_fraction(self.fraction) while gtk.events_pending(): gtk.main_iteration() def done(self): self.progressbar.set_text(" ") class GtkAcquireProgressAdapter(AcquireProgress): # FIXME: we really should have some sort of "we are at step" # xy in the gui # FIXME2: we need to thing about mediaCheck here too def __init__(self, parent): super(GtkAcquireProgressAdapter, self).__init__() # if this is set to false the download will cancel self.status = parent.label_status self.progress = parent.progressbar_cache self.parent = parent self.canceled = False self.button_cancel = parent.button_fetch_cancel self.button_cancel.connect('clicked', self.cancelClicked) def cancelClicked(self, widget): logging.debug("cancelClicked") self.canceled = True def media_change(self, medium, drive): #print("mediaChange %s %s" % (medium, drive)) msg = _("Please insert '%s' into the drive '%s'") % (medium,drive) dialog = gtk.MessageDialog(parent=self.parent.window_main, flags=gtk.DIALOG_MODAL, type=gtk.MESSAGE_QUESTION, buttons=gtk.BUTTONS_OK_CANCEL) dialog.set_markup(msg) res = dialog.run() dialog.set_title("") dialog.destroy() if res == gtk.RESPONSE_OK: return True return False def start(self): #logging.debug("start") super(GtkAcquireProgressAdapter, self).start() self.progress.set_fraction(0) self.status.show() self.button_cancel.show() def stop(self): #logging.debug("stop") self.progress.set_text(" ") self.status.set_text(_("Fetching is complete")) self.button_cancel.hide() def pulse(self, owner): super(GtkAcquireProgressAdapter, self).pulse(owner) # only update if there is a noticable change if abs(self.percent-self.progress.get_fraction()*100.0) > 0.1: self.progress.set_fraction(self.percent/100.0) currentItem = self.current_items + 1 if currentItem > self.total_items: currentItem = self.total_items if self.current_cps > 0: current_cps = apt_pkg.size_to_str(self.current_cps) if isinstance(current_cps, bytes): current_cps = current_cps.decode(locale.getpreferredencoding()) self.status.set_text(_("Fetching file %li of %li at %sB/s") % ( currentItem, self.total_items, current_cps)) self.progress.set_text(_("About %s remaining") % FuzzyTimeToStr( self.eta)) else: self.status.set_text(_("Fetching file %li of %li") % ( currentItem, self.total_items)) self.progress.set_text(" ") while gtk.events_pending(): gtk.main_iteration() return (not self.canceled) class GtkInstallProgressAdapter(InstallProgress): # timeout with no status change when the terminal is expanded # automatically TIMEOUT_TERMINAL_ACTIVITY = 240 def __init__(self,parent): InstallProgress.__init__(self) self._cache = None self.label_status = parent.label_status self.progress = parent.progressbar_cache self.expander = parent.expander_terminal self.term = parent._term self.term.connect("child-exited", self.child_exited) self.parent = parent # setup the child waiting # some options for dpkg to make it die less easily apt_pkg.config.set("DPkg::StopOnError","False") def start_update(self): InstallProgress.start_update(self) self.finished = False # FIXME: add support for the timeout # of the terminal (to display something useful then) # -> longer term, move this code into python-apt self.label_status.set_text(_("Applying changes")) self.progress.set_fraction(0.0) self.progress.set_text(" ") self.expander.set_sensitive(True) self.term.show() # if no libgtk2-perl is installed show the terminal frontend= os.environ.get("DEBIAN_FRONTEND") or "gnome" if frontend == "gnome" and self._cache: if (not "libgtk2-perl" in self._cache or not self._cache["libgtk2-perl"].is_installed): frontend = "dialog" self.expander.set_expanded(True) self.env = ["VTE_PTY_KEEP_FD=%s"% self.writefd, "APT_LISTCHANGES_FRONTEND=none"] if "DEBIAN_FRONTEND" not in os.environ: self.env.append("DEBIAN_FRONTEND=%s" % frontend) # do a bit of time-keeping self.start_time = 0.0 self.time_ui = 0.0 self.last_activity = 0.0 def error(self, pkg, errormsg): InstallProgress.error(self, pkg, errormsg) logging.error("got an error from dpkg for pkg: '%s': '%s'" % (pkg, errormsg)) # we do not report followup errors from earlier failures if gettext.dgettext('dpkg', "dependency problems - leaving unconfigured") in errormsg: return False #self.expander_terminal.set_expanded(True) self.parent.dialog_error.set_transient_for(self.parent.window_main) summary = _("Could not install '%s'") % pkg msg = _("The upgrade will continue but the '%s' package may not " "be in a working state. Please consider submitting a " "bug report about it.") % pkg markup="%s\n\n%s" % (summary, msg) self.parent.dialog_error.realize() self.parent.dialog_error.set_title("") self.parent.dialog_error.window.set_functions(gtk.gdk.FUNC_MOVE) self.parent.label_error.set_markup(markup) self.parent.textview_error.get_buffer().set_text(errormsg) self.parent.scroll_error.show() self.parent.dialog_error.run() self.parent.dialog_error.hide() def conffile(self, current, new): logging.debug("got a conffile-prompt from dpkg for file: '%s'" % current) start = time.time() #self.expander.set_expanded(True) prim = _("Replace the customized configuration file\n'%s'?") % current sec = _("You will lose any changes you have made to this " "configuration file if you choose to replace it with " "a newer version.") markup = "%s \n\n%s" % (prim, sec) self.parent.label_conffile.set_markup(markup) self.parent.dialog_conffile.set_title("") self.parent.dialog_conffile.set_transient_for(self.parent.window_main) # workaround silly dpkg if not os.path.exists(current): current = current+".dpkg-dist" # now get the diff if os.path.exists("/usr/bin/diff"): cmd = ["/usr/bin/diff", "-u", current, new] diff = subprocess.Popen(cmd, stdout=subprocess.PIPE).communicate()[0] diff = diff.decode("UTF-8", "replace") self.parent.textview_conffile.get_buffer().set_text(diff) else: self.parent.textview_conffile.get_buffer().set_text(_("The 'diff' command was not found")) res = self.parent.dialog_conffile.run() self.parent.dialog_conffile.hide() self.time_ui += time.time() - start # if replace, send this to the terminal if res == gtk.RESPONSE_YES: self.term.feed_child("y\n", -1) else: self.term.feed_child("n\n", -1) def fork(self): pid = self.term.forkpty(envv=self.env) if pid == 0: # WORKAROUND for broken feisty vte where envv does not work) for env in self.env: (key, value) = env.split("=") os.environ[key] = value # force dpkg terminal messages untranslated for better bug # duplication detection os.environ["DPKG_UNTRANSLATED_MESSAGES"] = "1" # HACK to work around bug in python/vte and unregister the logging # atexit func in the child sys.exitfunc = lambda: True return pid def status_change(self, pkg, percent, status): # start the timer when the first package changes its status if self.start_time == 0.0: #print("setting start time to %s" % self.start_time) self.start_time = time.time() # only update if there is a noticable change if abs(percent-self.progress.get_fraction()*100.0) > 0.1: self.progress.set_fraction(float(percent)/100.0) self.label_status.set_text(status.strip()) # start showing when we gathered some data if percent > 1.0: self.last_activity = time.time() self.activity_timeout_reported = False delta = self.last_activity - self.start_time # time wasted in conffile questions (or other ui activity) delta -= self.time_ui time_per_percent = (float(delta)/percent) eta = (100.0 - percent) * time_per_percent # only show if we have some sensible data (60sec < eta < 2days) if eta > 61.0 and eta < (60*60*24*2): self.progress.set_text(_("About %s remaining") % FuzzyTimeToStr(eta)) else: self.progress.set_text(" ") # 2 == WEBKIT_LOAD_FINISHED - the enums is not exposed via python if (self.parent._webkit_view and self.parent._webkit_view.get_property("load-status") == 2): self.parent._webkit_view.execute_script('progress("%s")' % percent) def child_exited(self, term): # we need to capture the full status here (not only the WEXITSTATUS) self.apt_status = term.get_child_exit_status() self.finished = True def wait_child(self): while not self.finished: self.update_interface() return self.apt_status def finish_update(self): self.label_status.set_text("") def update_interface(self): InstallProgress.update_interface(self) # check if we haven't started yet with packages, pulse then if self.start_time == 0.0: self.progress.pulse() time.sleep(0.2) # check about terminal activity if self.last_activity > 0 and \ (self.last_activity + self.TIMEOUT_TERMINAL_ACTIVITY) < time.time(): if not self.activity_timeout_reported: logging.warning("no activity on terminal for %s seconds (%s)" % (self.TIMEOUT_TERMINAL_ACTIVITY, self.label_status.get_text())) self.activity_timeout_reported = True self.parent.expander_terminal.set_expanded(True) # process events while gtk.events_pending(): gtk.main_iteration() time.sleep(0.01) class DistUpgradeVteTerminal(object): def __init__(self, parent, term): self.term = term self.parent = parent def call(self, cmd, hidden=False): def wait_for_child(widget): #print("wait for child finished") self.finished=True self.term.show() self.term.connect("child-exited", wait_for_child) self.parent.expander_terminal.set_sensitive(True) if hidden==False: self.parent.expander_terminal.set_expanded(True) self.finished = False pid = self.term.fork_command(command=cmd[0],argv=cmd) if pid < 0: # error return while not self.finished: while gtk.events_pending(): gtk.main_iteration() time.sleep(0.1) del self.finished class HtmlView(object): def __init__(self, webkit_view): self._webkit_view = webkit_view def open(self, url): if not self._webkit_view: return self._webkit_view.open(url) self._webkit_view.connect("load-finished", self._on_load_finished) def show(self): self._webkit_view.show() def hide(self): self._webkit_view.hide() def _on_load_finished(self, view, frame): view.show() class DistUpgradeViewGtk(DistUpgradeView,SimpleGtkbuilderApp): " gtk frontend of the distUpgrade tool " def __init__(self, datadir=None, logdir=None): DistUpgradeView.__init__(self) self.logdir = logdir if not datadir or datadir == '.': localedir=os.path.join(os.getcwd(),"mo") gladedir=os.getcwd() else: localedir="/usr/share/locale/" gladedir=os.path.join(datadir, "gtkbuilder") # check if we have a display etc gtk.init_check() try: locale.bindtextdomain("ubuntu-release-upgrader",localedir) gettext.textdomain("ubuntu-release-upgrader") except Exception as e: logging.warning("Error setting locales (%s)" % e) icons = gtk.icon_theme_get_default() try: gtk.window_set_default_icon(icons.load_icon("system-software-update", 32, 0)) except gobject.GError as e: logging.debug("error setting default icon, ignoring (%s)" % e) pass SimpleGtkbuilderApp.__init__(self, gladedir+"/DistUpgrade.ui", "ubuntu-release-upgrader") # terminal stuff self.create_terminal() self.prev_step = 0 # keep a record of the latest step # we don't use this currently #self.window_main.set_keep_above(True) self.icontheme = gtk.icon_theme_get_default() # we keep a reference pngloader around so that its in memory # -> this avoid the issue that during the dapper->edgy upgrade # the loaders move from /usr/lib/gtk/2.4.0/loaders to 2.10.0 self.pngloader = gtk.gdk.PixbufLoader("png") try: self.svgloader = gtk.gdk.PixbufLoader("svg") self.svgloader.close() except gobject.GError as e: logging.debug("svg pixbuf loader failed (%s)" % e) pass try: import webkit self._webkit_view = webkit.WebView() self.vbox_main.pack_end(self._webkit_view) except: logging.exception("html widget") self._webkit_view = None self.window_main.realize() self.window_main.window.set_functions(gtk.gdk.FUNC_MOVE) self._opCacheProgress = GtkOpProgress(self.progressbar_cache) self._acquireProgress = GtkAcquireProgressAdapter(self) self._cdromProgress = GtkCdromProgressAdapter(self) self._installProgress = GtkInstallProgressAdapter(self) # details dialog self.details_list = gtk.TreeStore(gobject.TYPE_STRING) column = gtk.TreeViewColumn("") render = gtk.CellRendererText() column.pack_start(render, True) column.add_attribute(render, "markup", 0) self.treeview_details.append_column(column) self.details_list.set_sort_column_id(0, gtk.SORT_ASCENDING) self.treeview_details.set_model(self.details_list) # Use italic style in the status labels attrlist=pango.AttrList() #attr = pango.AttrStyle(pango.STYLE_ITALIC, 0, -1) attr = pango.AttrScale(pango.SCALE_SMALL, 0, -1) attrlist.insert(attr) self.label_status.set_property("attributes", attrlist) # reasonable fault handler sys.excepthook = self._handleException def _handleException(self, type, value, tb): # we handle the exception here, hand it to apport and run the # apport gui manually after it because we kill u-m during the upgrade # to prevent it from poping up for reboot notifications or FF restart # notifications or somesuch import traceback lines = traceback.format_exception(type, value, tb) logging.error("not handled expection:\n%s" % "\n".join(lines)) # we can't be sure that apport will run in the middle of a upgrade # so we still show a error message here apport_crash(type, value, tb) if not run_apport(): self.error(_("A fatal error occurred"), _("Please report this as a bug (if you haven't already) and include the " "files /var/log/dist-upgrade/main.log and " "/var/log/dist-upgrade/apt.log " "in your report. The upgrade has aborted.\n" "Your original sources.list was saved in " "/etc/apt/sources.list.distUpgrade."), "\n".join(lines)) sys.exit(1) def getTerminal(self): return DistUpgradeVteTerminal(self, self._term) def getHtmlView(self): return HtmlView(self._webkit_view) def _key_press_handler(self, widget, keyev): # user pressed ctrl-c if len(keyev.string) == 1 and ord(keyev.string) == 3: summary = _("Ctrl-c pressed") msg = _("This will abort the operation and may leave the system " "in a broken state. Are you sure you want to do that?") res = self.askYesNoQuestion(summary, msg) logging.warning("ctrl-c press detected, user decided to pass it " "on: %s", res) return not res return False def create_terminal(self): " helper to create a vte terminal " self._term = vte.Terminal() self._term.connect("key-press-event", self._key_press_handler) self._term.set_font_from_string("monospace 10") self._term.connect("contents-changed", self._term_content_changed) self._terminal_lines = [] self.hbox_custom.pack_start(self._term) self._term.realize() self.vscrollbar_terminal = gtk.VScrollbar() self.vscrollbar_terminal.show() self.hbox_custom.pack_start(self.vscrollbar_terminal) self.vscrollbar_terminal.set_adjustment(self._term.get_adjustment()) try: self._terminal_log = open(os.path.join(self.logdir,"term.log"),"w") except Exception: # if something goes wrong (permission denied etc), use stdout self._terminal_log = sys.stdout return self._term def _term_content_changed(self, term): " called when the *visible* part of the terminal changes " # get the current visible text, current_text = self._term.get_text(lambda a,b,c,d: True) # see what we have currently and only print stuff that wasn't # visible last time new_lines = [] for line in current_text.split("\n"): new_lines.append(line) if not line in self._terminal_lines: self._terminal_log.write(line+"\n") try: self._terminal_log.flush() except IOError: logging.exception("flush()") self._terminal_lines = new_lines def getAcquireProgress(self): return self._acquireProgress def getInstallProgress(self, cache): self._installProgress._cache = cache return self._installProgress def getOpCacheProgress(self): return self._opCacheProgress def getCdromProgress(self): return self._cdromProgress def updateStatus(self, msg): self.label_status.set_text("%s" % msg) def hideStep(self, step): image = getattr(self,"image_step%i" % step) label = getattr(self,"label_step%i" % step) #arrow = getattr(self,"arrow_step%i" % step) image.hide() label.hide() def showStep(self, step): image = getattr(self,"image_step%i" % step) label = getattr(self,"label_step%i" % step) image.show() label.show() def abort(self): size = gtk.ICON_SIZE_MENU step = self.prev_step if step > 0: image = getattr(self,"image_step%i" % step) arrow = getattr(self,"arrow_step%i" % step) image.set_from_stock(gtk.STOCK_CANCEL, size) image.show() arrow.hide() def setStep(self, step): if self.icontheme.rescan_if_needed(): logging.debug("icon theme changed, re-reading") # first update the "previous" step as completed size = gtk.ICON_SIZE_MENU attrlist=pango.AttrList() if self.prev_step: image = getattr(self,"image_step%i" % self.prev_step) label = getattr(self,"label_step%i" % self.prev_step) arrow = getattr(self,"arrow_step%i" % self.prev_step) label.set_property("attributes",attrlist) image.set_from_stock(gtk.STOCK_APPLY, size) image.show() arrow.hide() self.prev_step = step # show the an arrow for the current step and make the label bold image = getattr(self,"image_step%i" % step) label = getattr(self,"label_step%i" % step) arrow = getattr(self,"arrow_step%i" % step) # check if that step was not hidden with hideStep() if not label.get_property("visible"): return arrow.show() image.hide() attr = pango.AttrWeight(pango.WEIGHT_BOLD, 0, -1) attrlist.insert(attr) label.set_property("attributes",attrlist) def information(self, summary, msg, extended_msg=None): self.dialog_information.set_title("") self.dialog_information.set_transient_for(self.window_main) msg = "%s\n\n%s" % (summary,msg) self.label_information.set_markup(msg) if extended_msg != None: buffer = self.textview_information.get_buffer() buffer.set_text(extended_msg) self.scroll_information.show() else: self.scroll_information.hide() self.dialog_information.realize() self.dialog_information.window.set_functions(gtk.gdk.FUNC_MOVE) self.dialog_information.run() self.dialog_information.hide() while gtk.events_pending(): gtk.main_iteration() def error(self, summary, msg, extended_msg=None): self.dialog_error.set_title("") self.dialog_error.set_transient_for(self.window_main) #self.expander_terminal.set_expanded(True) msg="%s\n\n%s" % (summary, msg) self.label_error.set_markup(msg) if extended_msg != None: buffer = self.textview_error.get_buffer() buffer.set_text(extended_msg) self.scroll_error.show() else: self.scroll_error.hide() self.dialog_error.realize() self.dialog_error.window.set_functions(gtk.gdk.FUNC_MOVE) self.dialog_error.run() self.dialog_error.hide() return False def confirmChanges(self, summary, changes, demotions, downloadSize, actions=None, removal_bold=True): # FIXME: add a whitelist here for packages that we expect to be # removed (how to calc this automatically?) if not DistUpgradeView.confirmChanges(self, summary, changes, demotions, downloadSize): return False # append warning self.confirmChangesMessage += "\n\n%s" % \ _("To prevent data loss close all open " "applications and documents.") if actions != None: self.button_cancel_changes.set_use_stock(False) self.button_cancel_changes.set_use_underline(True) self.button_cancel_changes.set_label(actions[0]) self.button_confirm_changes.set_label(actions[1]) self.label_summary.set_markup("%s" % summary) self.label_changes.set_markup(self.confirmChangesMessage) # fill in the details self.details_list.clear() for (parent_text, details_list) in ( ( _("No longer supported by Canonical (%s)"), self.demotions), ( _("Downgrade (%s)"), self.toDowngrade), ( _("Remove (%s)"), self.toRemove), ( _("No longer needed (%s)"), self.toRemoveAuto), ( _("Install (%s)"), self.toInstall), ( _("Upgrade (%s)"), self.toUpgrade), ): if details_list: node = self.details_list.append(None, [parent_text % len(details_list)]) for pkg in details_list: self.details_list.append(node, ["%s - %s" % ( pkg.name, glib.markup_escape_text(getattr(pkg.candidate, "summary", None)))]) # prepare dialog self.dialog_changes.realize() self.dialog_changes.set_transient_for(self.window_main) self.dialog_changes.set_title("") self.dialog_changes.window.set_functions(gtk.gdk.FUNC_MOVE| gtk.gdk.FUNC_RESIZE) res = self.dialog_changes.run() self.dialog_changes.hide() if res == gtk.RESPONSE_YES: return True return False def askYesNoQuestion(self, summary, msg, default='No'): msg = "%s\n\n%s" % (summary,msg) dialog = gtk.MessageDialog(parent=self.window_main, flags=gtk.DIALOG_MODAL, type=gtk.MESSAGE_QUESTION, buttons=gtk.BUTTONS_YES_NO) dialog.set_title("") if default == 'No': dialog.set_default_response(gtk.RESPONSE_NO) else: dialog.set_default_response(gtk.RESPONSE_YES) dialog.set_markup(msg) res = dialog.run() dialog.destroy() if res == gtk.RESPONSE_YES: return True return False def confirmRestart(self): self.dialog_restart.set_transient_for(self.window_main) self.dialog_restart.set_title("") self.dialog_restart.realize() self.dialog_restart.window.set_functions(gtk.gdk.FUNC_MOVE) res = self.dialog_restart.run() self.dialog_restart.hide() if res == gtk.RESPONSE_YES: return True return False def processEvents(self): while gtk.events_pending(): gtk.main_iteration() def pulseProgress(self, finished=False): self.progressbar_cache.pulse() if finished: self.progressbar_cache.set_fraction(1.0) def on_window_main_delete_event(self, widget, event): self.dialog_cancel.set_transient_for(self.window_main) self.dialog_cancel.set_title("") self.dialog_cancel.realize() self.dialog_cancel.window.set_functions(gtk.gdk.FUNC_MOVE) res = self.dialog_cancel.run() self.dialog_cancel.hide() if res == gtk.RESPONSE_CANCEL: sys.exit(1) return True if __name__ == "__main__": view = DistUpgradeViewGtk() fp = GtkAcquireProgressAdapter(view) ip = GtkInstallProgressAdapter(view) cache = apt.Cache() for pkg in sys.argv[1:]: if cache[pkg].is_installed: cache[pkg].mark_delete() else: cache[pkg].mark_install() cache.commit(fp,ip) gtk.main() sys.exit(0) #sys.exit(0) ip.conffile("TODO","TODO~") view.getTerminal().call(["/usr/bin/dpkg","--configure","-a"]) #view.getTerminal().call(["ls","-R","/usr"]) view.error("short","long", "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" ) view.confirmChanges("xx",[], 100) ubuntu-release-upgrader-0.220.10/DistUpgrade/distinfo.py0000777000000000000000000000000012431225715032136 2/usr/lib/python3/dist-packages/aptsources/distinfo.pyustar ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeConfigParser.py0000644000000000000000000000630712431225715022704 0ustar from __future__ import print_function import sys try: # >= 3.0 from configparser import NoOptionError, NoSectionError if sys.version >= '3.2': from configparser import ConfigParser as SafeConfigParser else: from configparser import SafeConfigParser except ImportError: # < 3.0 from ConfigParser import SafeConfigParser, NoOptionError, NoSectionError import subprocess import os.path import logging import glob CONFIG_OVERRIDE_DIR = "/etc/update-manager/release-upgrades.d" class DistUpgradeConfig(SafeConfigParser): def __init__(self, datadir, name="DistUpgrade.cfg", override_dir=None, defaults_dir=None): SafeConfigParser.__init__(self) # we support a config overwrite, if DistUpgrade.cfg.dapper exists # and the user runs dapper, that one will be used from_release = subprocess.Popen(["lsb_release","-c","-s"], stdout=subprocess.PIPE, universal_newlines=True).communicate()[0].strip() self.datadir=datadir if os.path.exists(name+"."+from_release): name = name+"."+from_release maincfg = os.path.join(datadir,name) # defaults are read first self.config_files = [] if defaults_dir: for cfg in glob.glob(defaults_dir+"/*.cfg"): self.config_files.append(cfg) # our config file self.config_files += [maincfg] # overrides are read later if override_dir is None: override_dir = CONFIG_OVERRIDE_DIR if override_dir is not None: for cfg in glob.glob(override_dir+"/*.cfg"): self.config_files.append(cfg) self.read(self.config_files) def getWithDefault(self, section, option, default): try: if type(default) == bool: return self.getboolean(section, option) elif type(default) == float: return self.getfloat(section, option) elif type(default) == int: return self.getint(section, option) return self.get(section, option) except (NoSectionError, NoOptionError): return default def getlist(self, section, option): try: tmp = self.get(section, option) except (NoSectionError,NoOptionError): return [] items = [x.strip() for x in tmp.split(",")] return items def getListFromFile(self, section, option): try: filename = self.get(section, option) except NoOptionError: return [] p = os.path.join(self.datadir,filename) if not os.path.exists(p): logging.error("getListFromFile: no '%s' found" % p) items = [x.strip() for x in open(p)] return [s for s in items if not s.startswith("#") and not s == ""] if __name__ == "__main__": c = DistUpgradeConfig(".") print(c.getlist("Distro","MetaPkgs")) print(c.getlist("Distro","ForcedPurges")) print(c.getListFromFile("Sources","ValidMirrors")) print(c.getWithDefault("Distro","EnableApport", True)) print(c.set("Distro","Foo", "False")) print(c.getWithDefault("Distro","Foo", True)) ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeViewText.py0000644000000000000000000002623612506545535022114 0ustar # DistUpgradeViewText.py # # Copyright (c) 2004-2006 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function import errno import sys import logging import subprocess import apt import os from .DistUpgradeView import ( AcquireProgress, DistUpgradeView, ENCODING, InstallProgress, ) import apt.progress import gettext from .DistUpgradeGettext import gettext as _ from .utils import twrap def readline(): """ py2/py3 compatible readline from stdin """ sys.stdout.flush() s = sys.stdin.readline() if hasattr(s, "decode"): return s.decode(ENCODING, "backslashreplace") return s class TextAcquireProgress(AcquireProgress, apt.progress.text.AcquireProgress): def __init__(self): apt.progress.text.AcquireProgress.__init__(self) AcquireProgress.__init__(self) def pulse(self, owner): apt.progress.text.AcquireProgress.pulse(self, owner) AcquireProgress.pulse(self, owner) return True class TextCdromProgressAdapter(apt.progress.base.CdromProgress): """ Report the cdrom add progress """ def update(self, text, step): """ update is called regularly so that the gui can be redrawn """ if text: print("%s (%f)" % (text, step/float(self.totalSteps)*100)) def ask_cdrom_name(self): return (False, "") def change_cdrom(self): return False class DistUpgradeViewText(DistUpgradeView): """ text frontend of the distUpgrade tool """ def __init__(self, datadir=None, logdir=None): # indicate that we benefit from using gnu screen self.needs_screen = True # its important to have a debconf frontend for # packages like "quagga" if "DEBIAN_FRONTEND" not in os.environ: os.environ["DEBIAN_FRONTEND"] = "dialog" if not datadir or datadir == '.': localedir=os.path.join(os.getcwd(),"mo") else: localedir="/usr/share/locale/ubuntu-release-upgrader" try: gettext.bindtextdomain("ubuntu-release-upgrader", localedir) gettext.textdomain("ubuntu-release-upgrader") except Exception as e: logging.warning("Error setting locales (%s)" % e) self.last_step = 0 # keep a record of the latest step self._opCacheProgress = apt.progress.text.OpProgress() self._acquireProgress = TextAcquireProgress() self._cdromProgress = TextCdromProgressAdapter() self._installProgress = InstallProgress() sys.excepthook = self._handleException #self._process_events_tick = 0 def _handleException(self, type, value, tb): import traceback print() lines = traceback.format_exception(type, value, tb) logging.error("not handled exception:\n%s" % "\n".join(lines)) self.error(_("A fatal error occurred"), _("Please report this as a bug and include the " "files /var/log/dist-upgrade/main.log and " "/var/log/dist-upgrade/apt.log " "in your report. The upgrade has aborted.\n" "Your original sources.list was saved in " "/etc/apt/sources.list.distUpgrade."), "\n".join(lines)) sys.exit(1) def getAcquireProgress(self): return self._acquireProgress def getInstallProgress(self, cache): self._installProgress._cache = cache return self._installProgress def getOpCacheProgress(self): return self._opCacheProgress def getCdromProgress(self): return self._cdromProgress def updateStatus(self, msg): print() print(msg) sys.stdout.flush() def abort(self): print() print(_("Aborting")) def setStep(self, step): self.last_step = step def showDemotions(self, summary, msg, demotions): self.information(summary, msg, _("Demoted:\n")+twrap(", ".join(demotions))) def information(self, summary, msg, extended_msg=None): print() print(twrap(summary)) print(twrap(msg)) if extended_msg: print(twrap(extended_msg)) print(_("To continue please press [ENTER]")) readline() def error(self, summary, msg, extended_msg=None): print() print(twrap(summary)) print(twrap(msg)) if extended_msg: print(twrap(extended_msg)) return False def showInPager(self, output): """ helper to show output in a pager """ # we need to send a encoded str (bytes in py3) to the pipe # LP: #1068389 if not isinstance(output, bytes): output = output.encode(ENCODING) for pager in ["/usr/bin/sensible-pager", "/bin/more"]: if os.path.exists(pager): p = subprocess.Popen([pager,"-"],stdin=subprocess.PIPE) # if lots of data is shown, we need to catch EPIPE try: p.stdin.write(output) p.stdin.close() p.wait() except IOError as e: if e.errno != errno.EPIPE: raise return # if we don't have a pager, just print print(output) def confirmChanges(self, summary, changes, demotions, downloadSize, actions=None, removal_bold=True): DistUpgradeView.confirmChanges(self, summary, changes, demotions, downloadSize, actions) print() print(twrap(summary)) print(twrap(self.confirmChangesMessage)) print(" %s %s" % (_("Continue [yN] "), _("Details [d]")), end="") sys.stdout.flush() while True: res = readline() # TRANSLATORS: the "y" is "yes" if res.strip().lower().startswith(_("y")): return True # TRANSLATORS: the "n" is "no" elif res.strip().lower().startswith(_("n")): return False # TRANSLATORS: the "d" is "details" elif res.strip().lower().startswith(_("d")): output = "" if len(self.demotions) > 0: output += "\n" output += twrap( _("No longer supported: %s\n") % " ".join([p.name for p in self.demotions]), subsequent_indent=' ') if len(self.toRemove) > 0: output += "\n" output += twrap( _("Remove: %s\n") % " ".join([p.name for p in self.toRemove]), subsequent_indent=' ') if len(self.toRemoveAuto) > 0: output += twrap( _("Remove (was auto installed) %s") % " ".join([p.name for p in self.toRemoveAuto]), subsequent_indent=' ') output += "\n" if len(self.toInstall) > 0: output += "\n" output += twrap( _("Install: %s\n") % " ".join([p.name for p in self.toInstall]), subsequent_indent=' ') if len(self.toUpgrade) > 0: output += "\n" output += twrap( _("Upgrade: %s\n") % " ".join([p.name for p in self.toUpgrade]), subsequent_indent=' ') self.showInPager(output) print("%s %s" % (_("Continue [yN] "), _("Details [d]")), end="") def askYesNoQuestion(self, summary, msg, default='No'): print() print(twrap(summary)) print(twrap(msg)) if default == 'No': print(_("Continue [yN] "), end="") res = readline() # TRANSLATORS: first letter of a positive (yes) answer if res.strip().lower().startswith(_("y")): return True return False else: print(_("Continue [Yn] "), end="") res = readline() # TRANSLATORS: first letter of a negative (no) answer if res.strip().lower().startswith(_("n")): return False return True # FIXME: when we need this most the resolver is writing debug logs # and we redirect stdout/stderr # def processEvents(self): # #time.sleep(0.2) # anim = [".","o","O","o"] # anim = ["\\","|","/","-","\\","|","/","-"] # self._process_events_tick += 1 # if self._process_events_tick >= len(anim): # self._process_events_tick = 0 # sys.stdout.write("[%s]" % anim[self._process_events_tick]) # sys.stdout.flush() def confirmRestart(self): return self.askYesNoQuestion(_("Restart required"), _("To finish the upgrade, a restart is " "required.\n" "If you select 'y' the system " "will be restarted."), default='No') if __name__ == "__main__": view = DistUpgradeViewText() #while True: # view.processEvents() print(twrap("89 packages are going to be upgraded.\nYou have to download a total of 82.7M.\nThis download will take about 10 minutes with a 1Mbit DSL connection and about 3 hours 12 minutes with a 56k modem.", subsequent_indent=" ")) #sys.exit(1) view = DistUpgradeViewText() print(view.askYesNoQuestion("hello", "Icecream?", "No")) print(view.askYesNoQuestion("hello", "Icecream?", "Yes")) #view.confirmChangesMessage = "89 packages are going to be upgraded.\n You have to download a total of 82.7M.\n This download will take about 10 minutes with a 1Mbit DSL connection and about 3 hours 12 minutes with a 56k modem." #view.confirmChanges("xx",[], 100) sys.exit(0) view.confirmRestart() cache = apt.Cache() fp = view.getAcquireProgress() ip = view.getInstallProgress(cache) for pkg in sys.argv[1:]: cache[pkg].mark_install() cache.commit(fp,ip) sys.exit(0) view.getTerminal().call(["/usr/bin/dpkg","--configure","-a"]) #view.getTerminal().call(["ls","-R","/usr"]) view.error("short","long", "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" ) view.confirmChanges("xx",[], 100) print(view.askYesNoQuestion("hello", "Icecream?")) ubuntu-release-upgrader-0.220.10/DistUpgrade/DevelReleaseAnnouncement0000644000000000000000000000320112431225715022440 0ustar = Welcome to the Ubuntu 'Trusty Tahr' development release = ''This release is still in development.'' ''Do not install it on production machines.'' Thanks for your interest in this development release of Ubuntu. The Ubuntu developers are moving very quickly to bring you the absolute latest and greatest software the Open Source Community has to offer. This development release brings you a taste of the newest features for the next version of Ubuntu. == Testing == Please help to test this development snapshot and report problems back to the developers. For more information about testing Ubuntu, please read: http://www.ubuntu.com/testing == Reporting Bugs == This development release of Ubuntu contains bugs. If you want to help out with bugs, the Bug Squad is always looking for help. Please read the following information about reporting bugs: http://help.ubuntu.com/community/ReportingBugs Then report bugs using apport in Ubuntu. For example: ubuntu-bug linux will open a bug report in Launchpad regarding the linux package. Your comments, bug reports, patches and suggestions will help fix bugs and improve future releases. == Participate in Ubuntu == If you would like to help shape Ubuntu, take a look at the list of ways you can participate at http://www.ubuntu.com/community/participate/ == More Information == You can find out more about Ubuntu on the Ubuntu website and Ubuntu wiki. http://www.ubuntu.com/ http://wiki.ubuntu.com/ To sign up for Ubuntu development announcements, please subscribe to Ubuntu's development announcement list at: http://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-announce ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeFetcherCore.py0000644000000000000000000003130412431225715022506 0ustar # DistUpgradeFetcherCore.py # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- # # Copyright (c) 2006 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function from string import Template import os import apt_pkg import logging import tarfile import tempfile import shutil import sys import subprocess from gettext import gettext as _ from aptsources.sourceslist import SourcesList from .utils import get_dist, url_downloadable, country_mirror class DistUpgradeFetcherCore(object): " base class (without GUI) for the upgrade fetcher " DEFAULT_MIRROR = "http://archive.ubuntu.com/ubuntu" DEFAULT_COMPONENT = "main" DEBUG = "DEBUG_UPDATE_MANAGER" in os.environ def __init__(self, new_dist, progress): self.new_dist = new_dist self.current_dist_name = get_dist() self._progress = progress # options to pass to the release upgrader when it is run self.run_options = [] def _debug(self, msg): " helper to show debug information " if self.DEBUG: sys.stderr.write(msg + "\n") def showReleaseNotes(self): return True def error(self, summary, message): """ dummy implementation for error display, should be overwriten by subclasses that want to more fancy method """ print(summary) print(message) return False def authenticate(self): if self.new_dist.upgradeToolSig: f = self.tmpdir + "/" + os.path.basename(self.new_dist.upgradeTool) sig = self.tmpdir + "/" + os.path.basename( self.new_dist.upgradeToolSig) print(_("authenticate '%(file)s' against '%(signature)s' ") % { 'file': os.path.basename(f), 'signature': os.path.basename(sig)}) if self.gpgauthenticate(f, sig): return True return False def gpgauthenticate(self, file, signature, keyring='/etc/apt/trusted.gpg'): """ authenticated a file against a given signature, if no keyring is given use the apt default keyring """ status_pipe = os.pipe() logger_pipe = os.pipe() if sys.version_info >= (3,4): os.set_inheritable(status_pipe[1], 1) os.set_inheritable(logger_pipe[1], 1) gpg = [ "gpg", "--status-fd", "%d" % status_pipe[1], "--logger-fd", "%d" % logger_pipe[1], "--no-options", "--homedir", self.tmpdir, "--no-default-keyring", "--ignore-time-conflict", "--keyring", keyring, "--verify", signature, file, ] def gpg_preexec(): os.close(status_pipe[0]) os.close(logger_pipe[0]) proc = subprocess.Popen( gpg, stderr=subprocess.PIPE, preexec_fn=gpg_preexec, close_fds=False, universal_newlines=True) os.close(status_pipe[1]) os.close(logger_pipe[1]) status_handle = os.fdopen(status_pipe[0]) logger_handle = os.fdopen(logger_pipe[0]) try: gpgres = status_handle.read() ret = proc.wait() if ret != 0: # gnupg returned a problem (non-zero exit) print("gpg exited %d" % ret) print("Debug information: ") print(status_handle.read()) print(proc.stderr.read()) print(logger_handle.read()) return False if "VALIDSIG" in gpgres: return True print("invalid result from gpg:") print(gpgres) return False finally: status_handle.close() proc.stderr.close() logger_handle.close() def extractDistUpgrader(self): # extract the tarball fname = os.path.join(self.tmpdir, os.path.basename(self.uri)) print(_("extracting '%s'") % os.path.basename(fname)) if not os.path.exists(fname): return False try: tar = tarfile.open(self.tmpdir + "/" + os.path.basename(self.uri), "r") for tarinfo in tar: tar.extract(tarinfo) tar.close() except tarfile.ReadError as e: logging.error("failed to open tarfile (%s)" % e) return False return True def verifyDistUprader(self): # FIXME: check an internal dependency file to make sure # that the script will run correctly # see if we have a script file that we can run self.script = script = "%s/%s" % (self.tmpdir, self.new_dist.name) if not os.path.exists(script): return self.error(_("Could not run the upgrade tool"), _("Could not run the upgrade tool") + ". " + _("This is most likely a bug in the upgrade " "tool. Please report it as a bug using the " "command 'ubuntu-bug " "ubuntu-release-upgrader-core'.")) return True def mirror_from_sources_list(self, uri, default_uri): """ try to figure what the mirror is from current sources.list do this by looing for matching DEFAULT_COMPONENT, current dist in sources.list and then doing a http HEAD/ftp size request to see if the uri is available on this server """ self._debug("mirror_from_sources_list: %s" % self.current_dist_name) sources = SourcesList(withMatcher=False) seen = set() for e in sources.list: if e.disabled or e.invalid or not e.type == "deb": continue # check if we probed this mirror already if e.uri in seen: continue # we are using the main mirror already, so we are fine if (e.uri.startswith(default_uri) and e.dist == self.current_dist_name and self.DEFAULT_COMPONENT in e.comps): return uri elif (e.dist == self.current_dist_name and "main" in e.comps): mirror_uri = e.uri + uri[len(default_uri):] if url_downloadable(mirror_uri, self._debug): return mirror_uri seen.add(e.uri) self._debug("no mirror found") return "" def _expandUri(self, uri): """ expand the uri so that it uses a mirror if the url starts with a well know string (like archive.ubuntu.com) """ # try to guess the mirror from the sources.list if uri.startswith(self.DEFAULT_MIRROR): self._debug("trying to find suitable mirror") new_uri = self.mirror_from_sources_list(uri, self.DEFAULT_MIRROR) if new_uri: return new_uri # if that fails, use old method uri_template = Template(uri) m = country_mirror() new_uri = uri_template.safe_substitute(countrymirror=m) # be paranoid and check if the given uri is really downloadable try: if not url_downloadable(new_uri, self._debug): raise Exception("failed to download %s" % new_uri) except Exception as e: self._debug("url '%s' could not be downloaded" % e) # else fallback to main server new_uri = uri_template.safe_substitute(countrymirror='') return new_uri def fetchDistUpgrader(self): " download the tarball with the upgrade script " tmpdir = tempfile.mkdtemp(prefix="ubuntu-release-upgrader-") self.tmpdir = tmpdir os.chdir(tmpdir) logging.debug("using tmpdir: '%s'" % tmpdir) # turn debugging on here (if required) if self.DEBUG > 0: apt_pkg.config.set("Debug::Acquire::http", "1") apt_pkg.config.set("Debug::Acquire::ftp", "1") #os.listdir(tmpdir) fetcher = apt_pkg.Acquire(self._progress) if self.new_dist.upgradeToolSig is not None: uri = self._expandUri(self.new_dist.upgradeToolSig) af1 = apt_pkg.AcquireFile(fetcher, uri, descr=_("Upgrade tool signature")) # reference it here to shut pyflakes up af1 if self.new_dist.upgradeTool is not None: self.uri = self._expandUri(self.new_dist.upgradeTool) af2 = apt_pkg.AcquireFile(fetcher, self.uri, descr=_("Upgrade tool")) # reference it here to shut pyflakes up af2 result = fetcher.run() if result != fetcher.RESULT_CONTINUE: logging.warn("fetch result != continue (%s)" % result) return False # check that both files are really there and non-null for f in [os.path.basename(self.new_dist.upgradeToolSig), os.path.basename(self.new_dist.upgradeTool)]: if not (os.path.exists(f) and os.path.getsize(f) > 0): logging.warn("file '%s' missing" % f) return False return True return False def runDistUpgrader(self): args = [self.script] + self.run_options if os.getuid() != 0: os.execv("/usr/bin/sudo", ["sudo"] + args) else: os.execv(self.script, args) def cleanup(self): # cleanup os.chdir("..") # del tmpdir shutil.rmtree(self.tmpdir) def run(self): # see if we have release notes if not self.showReleaseNotes(): return if not self.fetchDistUpgrader(): self.error(_("Failed to fetch"), _("Fetching the upgrade failed. There may be a network " "problem. ")) return if not self.authenticate(): self.error(_("Authentication failed"), _("Authenticating the upgrade failed. There may be a " "problem with the network or with the server. ")) self.cleanup() return if not self.extractDistUpgrader(): self.error(_("Failed to extract"), _("Extracting the upgrade failed. There may be a " "problem with the network or with the server. ")) return if not self.verifyDistUprader(): self.error(_("Verification failed"), _("Verifying the upgrade failed. There may be a " "problem with the network or with the server. ")) self.cleanup() return try: # check if we can execute, if we run it via sudo we will # not know otherwise, pkexec will not raise a exception if not os.access(self.script, os.X_OK): ex = OSError("Can not execute '%s'" % self.script) ex.errno = 13 raise ex self.runDistUpgrader() except OSError as e: if e.errno == 13: self.error(_("Can not run the upgrade"), _("This usually is caused by a system where /tmp " "is mounted noexec. Please remount without " "noexec and run the upgrade again.")) return False else: self.error(_("Can not run the upgrade"), _("The error message is '%s'.") % e.strerror) return True if __name__ == "__main__": d = DistUpgradeFetcherCore(None, None) # print(d.authenticate('/tmp/Release','/tmp/Release.gpg')) print("got mirror: '%s'" % d.mirror_from_sources_list( "http://archive.ubuntu.com/ubuntu/dists/intrepid-proposed/main/" "dist-upgrader-all/0.93.34/intrepid.tar.gz", "http://archive.ubuntu.com/ubuntu")) ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeViewKDE.py0000644000000000000000000011227312431225715021560 0ustar # DistUpgradeViewKDE.py # # Copyright (c) 2007 Canonical Ltd # # Author: Jonathan Riddell # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function from PyQt4.QtCore import QUrl, Qt, SIGNAL, QTimer from PyQt4.QtGui import ( QDesktopServices, QDialog, QPixmap, QTreeWidgetItem, QMessageBox, QApplication, QTextEdit, QTextOption, QTextCursor, QPushButton, QWidget, QIcon, QHBoxLayout, QLabel ) from PyQt4 import uic import sys import locale import logging import time import subprocess import traceback import tempfile import apt import apt_pkg import os import shutil import pty from .DistUpgradeApport import run_apport, apport_crash from .DistUpgradeView import DistUpgradeView, FuzzyTimeToStr, InstallProgress, AcquireProgress import select import gettext from .DistUpgradeGettext import gettext as _ from .DistUpgradeGettext import unicode_gettext def utf8(s, errors="strict"): if isinstance(s, bytes): return s.decode("UTF-8", errors) else: return s def loadUi(file, parent): if os.path.exists(file): uic.loadUi(file, parent) else: #FIXME find file print("error, can't find file: " + file) class DumbTerminal(QTextEdit): """ A very dumb terminal """ def __init__(self, installProgress, parent_frame): " really dumb terminal with simple editing support " QTextEdit.__init__(self, "", parent_frame) self.installProgress = installProgress self.setFontFamily("Monospace") self.setFontPointSize(8) self.setWordWrapMode(QTextOption.NoWrap) self.setUndoRedoEnabled(False) self.setOverwriteMode(True) self._block = False #self.connect(self, SIGNAL("cursorPositionChanged()"), # self.onCursorPositionChanged) def fork(self): """pty voodoo""" (self.child_pid, self.installProgress.master_fd) = pty.fork() if self.child_pid == 0: os.environ["TERM"] = "dumb" return self.child_pid def update_interface(self): (rlist, wlist, xlist) = select.select([self.installProgress.master_fd],[],[], 0) if len(rlist) > 0: line = os.read(self.installProgress.master_fd, 255) self.insertWithTermCodes(utf8(line)) QApplication.processEvents() def insertWithTermCodes(self, text): """ support basic terminal codes """ display_text = "" for c in text: # \b - backspace - this seems to comes as "^H" now ??! if ord(c) == 8: self.insertPlainText(display_text) self.textCursor().deletePreviousChar() display_text="" # \r - is filtered out elif c == chr(13): pass # \a - bell - ignore for now elif c == chr(7): pass else: display_text += c self.insertPlainText(display_text) def keyPressEvent(self, ev): """ send (ascii) key events to the pty """ # no master_fd yet if not hasattr(self.installProgress, "master_fd"): return # special handling for backspace if ev.key() == Qt.Key_Backspace: #print("sent backspace") os.write(self.installProgress.master_fd, chr(8)) return # do nothing for events like "shift" if not ev.text(): return # now sent the key event to the termianl as utf-8 os.write(self.installProgress.master_fd, ev.text().toUtf8()) def onCursorPositionChanged(self): """ helper that ensures that the cursor is always at the end """ if self._block: return # block signals so that we do not run into a recursion self._block = True self.moveCursor(QTextCursor.End) self._block = False class KDECdromProgressAdapter(apt.progress.base.CdromProgress): """ Report the cdrom add progress """ def __init__(self, parent): self.status = parent.window_main.label_status self.progressbar = parent.window_main.progressbar_cache self.parent = parent def update(self, text, step): """ update is called regularly so that the gui can be redrawn """ if text: self.status.setText(text) self.progressbar.setValue(step/float(self.totalSteps)) QApplication.processEvents() def ask_cdrom_name(self): return (False, "") def change_cdrom(self): return False class KDEOpProgress(apt.progress.base.OpProgress): """ methods on the progress bar """ def __init__(self, progressbar, progressbar_label): self.progressbar = progressbar self.progressbar_label = progressbar_label #self.progressbar.set_pulse_step(0.01) #self.progressbar.pulse() def update(self, percent=None): super(KDEOpProgress, self).update(percent) #if self.percent > 99: # self.progressbar.set_fraction(1) #else: # self.progressbar.pulse() #self.progressbar.set_fraction(self.percent/100.0) self.progressbar.setValue(self.percent) QApplication.processEvents() def done(self): self.progressbar_label.setText("") class KDEAcquireProgressAdapter(AcquireProgress): """ methods for updating the progress bar while fetching packages """ # FIXME: we really should have some sort of "we are at step" # xy in the gui # FIXME2: we need to thing about mediaCheck here too def __init__(self, parent): AcquireProgress.__init__(self) # if this is set to false the download will cancel self.status = parent.window_main.label_status self.progress = parent.window_main.progressbar_cache self.parent = parent def media_change(self, medium, drive): msg = _("Please insert '%s' into the drive '%s'") % (medium,drive) change = QMessageBox.question(self.parent.window_main, _("Media Change"), msg, QMessageBox.Ok, QMessageBox.Cancel) if change == QMessageBox.Ok: return True return False def start(self): AcquireProgress.start(self) #self.progress.show() self.progress.setValue(0) self.status.show() def stop(self): self.parent.window_main.progress_text.setText(" ") self.status.setText(_("Fetching is complete")) def pulse(self, owner): """ we don't have a mainloop in this application, we just call processEvents here and elsewhere""" # FIXME: move the status_str and progress_str into python-apt # (python-apt need i18n first for this) AcquireProgress.pulse(self, owner) self.progress.setValue(self.percent) current_item = self.current_items + 1 if current_item > self.total_items: current_item = self.total_items if self.current_cps > 0: current_cps = apt_pkg.size_to_str(self.current_cps) if isinstance(current_cps, bytes): current_cps = current_cps.decode(locale.getpreferredencoding()) self.status.setText(_("Fetching file %li of %li at %sB/s") % (current_item, self.total_items, current_cps)) self.parent.window_main.progress_text.setText("" + _("About %s remaining") % FuzzyTimeToStr(self.eta) + "") else: self.status.setText(_("Fetching file %li of %li") % (current_item, self.total_items)) self.parent.window_main.progress_text.setText(" ") QApplication.processEvents() return True class KDEInstallProgressAdapter(InstallProgress): """methods for updating the progress bar while installing packages""" # timeout with no status change when the terminal is expanded # automatically TIMEOUT_TERMINAL_ACTIVITY = 240 def __init__(self,parent): InstallProgress.__init__(self) self._cache = None self.label_status = parent.window_main.label_status self.progress = parent.window_main.progressbar_cache self.progress_text = parent.window_main.progress_text self.parent = parent try: self._terminal_log = open("/var/log/dist-upgrade/term.log","wb") except Exception as e: # if something goes wrong (permission denied etc), use stdout logging.error("Can not open terminal log: '%s'" % e) if sys.version >= '3': self._terminal_log = sys.stdout.buffer else: self._terminal_log = sys.stdout # some options for dpkg to make it die less easily apt_pkg.config.set("DPkg::StopOnError","False") def start_update(self): InstallProgress.start_update(self) self.finished = False # FIXME: add support for the timeout # of the terminal (to display something useful then) # -> longer term, move this code into python-apt self.label_status.setText(_("Applying changes")) self.progress.setValue(0) self.progress_text.setText(" ") # do a bit of time-keeping self.start_time = 0.0 self.time_ui = 0.0 self.last_activity = 0.0 self.parent.window_main.showTerminalButton.setEnabled(True) def error(self, pkg, errormsg): InstallProgress.error(self, pkg, errormsg) logging.error("got an error from dpkg for pkg: '%s': '%s'" % (pkg, errormsg)) # we do not report followup errors from earlier failures if gettext.dgettext('dpkg', "dependency problems - leaving unconfigured") in errormsg: return False summary = _("Could not install '%s'") % pkg msg = _("The upgrade will continue but the '%s' package may not " "be in a working state. Please consider submitting a " "bug report about it.") % pkg msg = "%s
%s" % (summary, msg) dialogue = QDialog(self.parent.window_main) loadUi("dialog_error.ui", dialogue) self.parent.translate_widget_children(dialogue) dialogue.label_error.setText(msg) if errormsg != None: dialogue.textview_error.setText(errormsg) dialogue.textview_error.show() else: dialogue.textview_error.hide() dialogue.connect(dialogue.button_bugreport, SIGNAL("clicked()"), self.parent.reportBug) dialogue.exec_() def conffile(self, current, new): """ask question in case conffile has been changed by user""" logging.debug("got a conffile-prompt from dpkg for file: '%s'" % current) start = time.time() prim = _("Replace the customized configuration file\n'%s'?") % current sec = _("You will lose any changes you have made to this " "configuration file if you choose to replace it with " "a newer version.") markup = "%s \n\n%s" % (prim, sec) self.confDialogue = QDialog(self.parent.window_main) loadUi("dialog_conffile.ui", self.confDialogue) self.confDialogue.label_conffile.setText(markup) self.confDialogue.textview_conffile.hide() #FIXME, below to be tested #self.confDialogue.resize(self.confDialogue.minimumSizeHint()) self.confDialogue.connect(self.confDialogue.show_difference_button, SIGNAL("clicked()"), self.showConffile) # workaround silly dpkg if not os.path.exists(current): current = current+".dpkg-dist" # now get the diff if os.path.exists("/usr/bin/diff"): cmd = ["/usr/bin/diff", "-u", current, new] diff = subprocess.Popen(cmd, stdout=subprocess.PIPE).communicate()[0] diff = diff.decode("UTF-8", "replace") self.confDialogue.textview_conffile.setText(diff) else: self.confDialogue.textview_conffile.setText(_("The 'diff' command was not found")) result = self.confDialogue.exec_() self.time_ui += time.time() - start # if replace, send this to the terminal if result == QDialog.Accepted: os.write(self.master_fd, "y\n") else: os.write(self.master_fd, "n\n") def showConffile(self): if self.confDialogue.textview_conffile.isVisible(): self.confDialogue.textview_conffile.hide() self.confDialogue.show_difference_button.setText(_("Show Difference >>>")) else: self.confDialogue.textview_conffile.show() self.confDialogue.show_difference_button.setText(_("<<< Hide Difference")) def fork(self): """pty voodoo""" (self.child_pid, self.master_fd) = pty.fork() if self.child_pid == 0: os.environ["TERM"] = "dumb" if ("DEBIAN_FRONTEND" not in os.environ or os.environ["DEBIAN_FRONTEND"] == "kde"): os.environ["DEBIAN_FRONTEND"] = "noninteractive" os.environ["APT_LISTCHANGES_FRONTEND"] = "none" logging.debug(" fork pid is: %s" % self.child_pid) return self.child_pid def status_change(self, pkg, percent, status): """update progress bar and label""" # start the timer when the first package changes its status if self.start_time == 0.0: #print("setting start time to %s" % self.start_time) self.start_time = time.time() self.progress.setValue(self.percent) self.label_status.setText(utf8(status.strip())) # start showing when we gathered some data if percent > 1.0: self.last_activity = time.time() self.activity_timeout_reported = False delta = self.last_activity - self.start_time # time wasted in conffile questions (or other ui activity) delta -= self.time_ui time_per_percent = (float(delta)/percent) eta = (100.0 - self.percent) * time_per_percent # only show if we have some sensible data (60sec < eta < 2days) if eta > 61.0 and eta < (60*60*24*2): self.progress_text.setText(_("About %s remaining") % FuzzyTimeToStr(eta)) else: self.progress_text.setText(" ") def finish_update(self): self.label_status.setText("") def update_interface(self): """ no mainloop in this application, just call processEvents lots here it's also important to sleep for a minimum amount of time """ # log the output of dpkg (on the master_fd) to the terminal log while True: try: (rlist, wlist, xlist) = select.select([self.master_fd],[],[], 0) if len(rlist) > 0: line = os.read(self.master_fd, 255) self._terminal_log.write(line) self.parent.terminal_text.insertWithTermCodes( utf8(line, errors="replace")) else: break except Exception as e: print(e) logging.debug("error reading from self.master_fd '%s'" % e) break # now update the GUI try: InstallProgress.update_interface(self) except ValueError as e: logging.error("got ValueError from InstallProgress.update_interface. Line was '%s' (%s)" % (self.read, e)) # reset self.read so that it can continue reading and does not loop self.read = "" # check about terminal activity if self.last_activity > 0 and \ (self.last_activity + self.TIMEOUT_TERMINAL_ACTIVITY) < time.time(): if not self.activity_timeout_reported: #FIXME bug 95465, I can't recreate this, so here's a hacky fix try: logging.warning("no activity on terminal for %s seconds (%s)" % (self.TIMEOUT_TERMINAL_ACTIVITY, self.label_status.text())) except UnicodeEncodeError: logging.warning("no activity on terminal for %s seconds" % (self.TIMEOUT_TERMINAL_ACTIVITY)) self.activity_timeout_reported = True self.parent.window_main.konsole_frame.show() QApplication.processEvents() time.sleep(0.02) def wait_child(self): while True: self.update_interface() (pid, res) = os.waitpid(self.child_pid,os.WNOHANG) if pid == self.child_pid: break # we need the full status here (not just WEXITSTATUS) return res # inherit from the class created in window_main.ui # to add the handler for closing the window class UpgraderMainWindow(QWidget): def __init__(self): QWidget.__init__(self) #uic.loadUi("window_main.ui", self) loadUi("window_main.ui", self) def setParent(self, parentRef): self.parent = parentRef def closeEvent(self, event): close = self.parent.on_window_main_delete_event() if close: event.accept() else: event.ignore() class DistUpgradeViewKDE(DistUpgradeView): """KDE frontend of the distUpgrade tool""" def __init__(self, datadir=None, logdir=None): DistUpgradeView.__init__(self) # silence the PyQt4 logger logger = logging.getLogger("PyQt4") logger.setLevel(logging.INFO) if not datadir or datadir == '.': localedir=os.path.join(os.getcwd(),"mo") else: localedir="/usr/share/locale/ubuntu-release-upgrader" # FIXME: i18n must be somewhere relative do this dir try: gettext.bindtextdomain("ubuntu-release-upgrader", localedir) gettext.textdomain("ubuntu-release-upgrader") except Exception as e: logging.warning("Error setting locales (%s)" % e) #about = KAboutData("adept_manager","Upgrader","0.1","Dist Upgrade Tool for Kubuntu",KAboutData.License_GPL,"(c) 2007 Canonical Ltd", #"http://wiki.kubuntu.org/KubuntuUpdateManager", "jriddell@ubuntu.com") #about.addAuthor("Jonathan Riddell", None,"jriddell@ubuntu.com") #about.addAuthor("Michael Vogt", None,"michael.vogt@ubuntu.com") #KCmdLineArgs.init(["./dist-upgrade.py"],about) # we test for DISPLAY here, QApplication does not throw a # exception when run without DISPLAY but dies instead if not "DISPLAY" in os.environ: raise Exception("No DISPLAY in os.environ found") self.app = QApplication(["ubuntu-release-upgrader"]) if os.path.exists("/usr/share/icons/oxygen/48x48/apps/system-software-update.png"): messageIcon = QPixmap("/usr/share/icons/oxygen/48x48/apps/system-software-update.png") else: messageIcon = QPixmap("/usr/share/icons/hicolor/48x48/apps/adept_manager.png") self.app.setWindowIcon(QIcon(messageIcon)) self.window_main = UpgraderMainWindow() self.window_main.setParent(self) self.window_main.show() self.prev_step = 0 # keep a record of the latest step self._opCacheProgress = KDEOpProgress(self.window_main.progressbar_cache, self.window_main.progress_text) self._acquireProgress = KDEAcquireProgressAdapter(self) self._cdromProgress = KDECdromProgressAdapter(self) self._installProgress = KDEInstallProgressAdapter(self) # reasonable fault handler sys.excepthook = self._handleException self.window_main.showTerminalButton.setEnabled(False) self.app.connect(self.window_main.showTerminalButton, SIGNAL("clicked()"), self.showTerminal) #kdesu requires us to copy the xauthority file before it removes it when Adept is killed fd, copyXauth = tempfile.mkstemp("", "adept") if 'XAUTHORITY' in os.environ and os.environ['XAUTHORITY'] != copyXauth: shutil.copy(os.environ['XAUTHORITY'], copyXauth) os.environ["XAUTHORITY"] = copyXauth # Note that with kdesudo this needs --nonewdcop ## create a new DCOP-Client: #client = DCOPClient() ## connect the client to the local DCOP-server: #client.attach() #for qcstring_app in client.registeredApplications(): # app = str(qcstring_app) # if app.startswith("adept"): # adept = DCOPApp(qcstring_app, client) # adeptInterface = adept.object("MainApplication-Interface") # adeptInterface.quit() # This works just as well subprocess.call(["killall", "adept_manager"]) subprocess.call(["killall", "adept_updater"]) # init gettext gettext.bindtextdomain("ubuntu-release-upgrader",localedir) gettext.textdomain("ubuntu-release-upgrader") self.translate_widget_children() self.window_main.label_title.setText(self.window_main.label_title.text().replace("Ubuntu", "Kubuntu")) # setup terminal text in hidden by default spot self.window_main.konsole_frame.hide() self.konsole_frame_layout = QHBoxLayout(self.window_main.konsole_frame) self.window_main.konsole_frame.setMinimumSize(600, 400) self.terminal_text = DumbTerminal(self._installProgress, self.window_main.konsole_frame) self.konsole_frame_layout.addWidget(self.terminal_text) self.terminal_text.show() # for some reason we need to start the main loop to get everything displayed # this app mostly works with processEvents but run main loop briefly to keep it happily displaying all widgets QTimer.singleShot(10, self.exitMainLoop) self.app.exec_() def exitMainLoop(self): print("exitMainLoop") self.app.exit() def translate_widget_children(self, parentWidget=None): if parentWidget == None: parentWidget = self.window_main if isinstance(parentWidget, QDialog) or isinstance(parentWidget, QWidget): if str(parentWidget.windowTitle()) == "Error": parentWidget.setWindowTitle( gettext.dgettext("kdelibs", "Error")) else: parentWidget.setWindowTitle(_( str(parentWidget.windowTitle()) )) if parentWidget.children() != None: for widget in parentWidget.children(): self.translate_widget(widget) self.translate_widget_children(widget) def translate_widget(self, widget): if isinstance(widget, QLabel) or isinstance(widget, QPushButton): if str(widget.text()) == "&Cancel": kdelibs = gettext.translation( "kdelibs", gettext.textdomain("kdelibs"), fallback=True) widget.setText(unicode_gettext(kdelibs, "&Cancel")) elif str(widget.text()) == "&Close": kdelibs = gettext.translation( "kdelibs", gettext.textdomain("kdelibs"), fallback=True) widget.setText(unicode_gettext(kdelibs, "&Close")) elif str(widget.text()) != "": widget.setText( _(str(widget.text())).replace("_", "&") ) def _handleException(self, exctype, excvalue, exctb): """Crash handler.""" if (issubclass(exctype, KeyboardInterrupt) or issubclass(exctype, SystemExit)): return # we handle the exception here, hand it to apport and run the # apport gui manually after it because we kill u-m during the upgrade # to prevent it from popping up for reboot notifications or FF restart # notifications or somesuch lines = traceback.format_exception(exctype, excvalue, exctb) logging.error("not handled exception in KDE frontend:\n%s" % "\n".join(lines)) # we can't be sure that apport will run in the middle of a upgrade # so we still show a error message here apport_crash(exctype, excvalue, exctb) if not run_apport(): tbtext = ''.join(traceback.format_exception(exctype, excvalue, exctb)) dialog = QDialog(self.window_main) loadUi("dialog_error.ui", dialog) self.translate_widget_children(self.dialog) #FIXME make URL work #dialog.connect(dialog.beastie_url, SIGNAL("leftClickedURL(const QString&)"), self.openURL) dialog.crash_detail.setText(tbtext) dialog.exec_() sys.exit(1) def openURL(self, url): """start konqueror""" #need to run this else kdesu can't run Konqueror #subprocess.call(['su', 'ubuntu', 'xhost', '+localhost']) QDesktopServices.openUrl(QUrl(url)) def reportBug(self): """start konqueror""" #need to run this else kdesu can't run Konqueror #subprocess.call(['su', 'ubuntu', 'xhost', '+localhost']) QDesktopServices.openUrl(QUrl("https://launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug")) def showTerminal(self): if self.window_main.konsole_frame.isVisible(): self.window_main.konsole_frame.hide() self.window_main.showTerminalButton.setText(_("Show Terminal >>>")) else: self.window_main.konsole_frame.show() self.window_main.showTerminalButton.setText(_("<<< Hide Terminal")) self.window_main.resize(self.window_main.sizeHint()) def getAcquireProgress(self): return self._acquireProgress def getInstallProgress(self, cache): self._installProgress._cache = cache return self._installProgress def getOpCacheProgress(self): return self._opCacheProgress def getCdromProgress(self): return self._cdromProgress def update_status(self, msg): self.window_main.label_status.setText(msg) def hideStep(self, step): image = getattr(self.window_main,"image_step%i" % step) label = getattr(self.window_main,"label_step%i" % step) image.hide() label.hide() def abort(self): step = self.prev_step if step > 0: image = getattr(self.window_main,"image_step%i" % step) if os.path.exists("/usr/share/icons/oxygen/16x16/actions/dialog-cancel.png"): cancelIcon = QPixmap("/usr/share/icons/oxygen/16x16/actions/dialog-cancel.png") elif os.path.exists("/usr/lib/kde4/share/icons/oxygen/16x16/actions/dialog-cancel.png"): cancelIcon = QPixmap("/usr/lib/kde4/share/icons/oxygen/16x16/actions/dialog-cancel.png") else: cancelIcon = QPixmap("/usr/share/icons/crystalsvg/16x16/actions/cancel.png") image.setPixmap(cancelIcon) image.show() def setStep(self, step): if os.path.exists("/usr/share/icons/oxygen/16x16/actions/dialog-ok.png"): okIcon = QPixmap("/usr/share/icons/oxygen/16x16/actions/dialog-ok.png") elif os.path.exists("/usr/lib/kde4/share/icons/oxygen/16x16/actions/dialog-ok.png"): okIcon = QPixmap("/usr/lib/kde4/share/icons/oxygen/16x16/actions/dialog-ok.png") else: okIcon = QPixmap("/usr/share/icons/crystalsvg/16x16/actions/ok.png") if os.path.exists("/usr/share/icons/oxygen/16x16/actions/arrow-right.png"): arrowIcon = QPixmap("/usr/share/icons/oxygen/16x16/actions/arrow-right.png") elif os.path.exists("/usr/lib/kde4/share/icons/oxygen/16x16/actions/arrow-right.png"): arrowIcon = QPixmap("/usr/lib/kde4/share/icons/oxygen/16x16/actions/arrow-right.png") else: arrowIcon = QPixmap("/usr/share/icons/crystalsvg/16x16/actions/1rightarrow.png") if self.prev_step: image = getattr(self.window_main,"image_step%i" % self.prev_step) label = getattr(self.window_main,"label_step%i" % self.prev_step) image.setPixmap(okIcon) image.show() ##arrow.hide() self.prev_step = step # show the an arrow for the current step and make the label bold image = getattr(self.window_main,"image_step%i" % step) label = getattr(self.window_main,"label_step%i" % step) image.setPixmap(arrowIcon) image.show() label.setText("" + label.text() + "") def information(self, summary, msg, extended_msg=None): msg = "%s
%s" % (summary,msg) dialogue = QDialog(self.window_main) loadUi("dialog_error.ui", dialogue) self.translate_widget_children(dialogue) dialogue.label_error.setText(msg) if extended_msg != None: dialogue.textview_error.setText(extended_msg) dialogue.textview_error.show() else: dialogue.textview_error.hide() dialogue.button_bugreport.hide() dialogue.setWindowTitle(_("Information")) if os.path.exists("/usr/share/icons/oxygen/48x48/status/dialog-information.png"): messageIcon = QPixmap("/usr/share/icons/oxygen/48x48/status/dialog-information.png") elif os.path.exists("/usr/lib/kde4/share/icons/oxygen/48x48/status/dialog-information.png"): messageIcon = QPixmap("/usr/lib/kde4/share/icons/oxygen/48x48/status/dialog-information.png") else: messageIcon = QPixmap("/usr/share/icons/crystalsvg/32x32/actions/messagebox_info.png") dialogue.image.setPixmap(messageIcon) dialogue.exec_() def error(self, summary, msg, extended_msg=None): msg="%s
%s" % (summary, msg) dialogue = QDialog(self.window_main) loadUi("dialog_error.ui", dialogue) self.translate_widget_children(dialogue) dialogue.label_error.setText(msg) if extended_msg != None: dialogue.textview_error.setText(extended_msg) dialogue.textview_error.show() else: dialogue.textview_error.hide() dialogue.button_close.show() self.app.connect(dialogue.button_bugreport, SIGNAL("clicked()"), self.reportBug) if os.path.exists("/usr/share/icons/oxygen/48x48/status/dialog-error.png"): messageIcon = QPixmap("/usr/share/icons/oxygen/48x48/status/dialog-error.png") elif os.path.exists("/usr/lib/kde4/share/icons/oxygen/48x48/status/dialog-error.png"): messageIcon = QPixmap("/usr/lib/kde4/share/icons/oxygen/48x48/status/dialog-error.png") else: messageIcon = QPixmap("/usr/share/icons/crystalsvg/32x32/actions/messagebox_critical.png") dialogue.image.setPixmap(messageIcon) dialogue.exec_() return False def confirmChanges(self, summary, changes, demotions, downloadSize, actions=None, removal_bold=True): """show the changes dialogue""" # FIXME: add a whitelist here for packages that we expect to be # removed (how to calc this automatically?) DistUpgradeView.confirmChanges(self, summary, changes, demotions, downloadSize) self.changesDialogue = QDialog(self.window_main) loadUi("dialog_changes.ui", self.changesDialogue) self.changesDialogue.treeview_details.hide() self.changesDialogue.connect(self.changesDialogue.show_details_button, SIGNAL("clicked()"), self.showChangesDialogueDetails) self.translate_widget_children(self.changesDialogue) self.changesDialogue.show_details_button.setText(_("Details") + " >>>") self.changesDialogue.resize(self.changesDialogue.sizeHint()) if os.path.exists("/usr/share/icons/oxygen/48x48/status/dialog-warning.png"): warningIcon = QPixmap("/usr/share/icons/oxygen/48x48/status/dialog-warning.png") elif os.path.exists("/usr/lib/kde4/share/icons/oxygen/48x48/status/dialog-warning.png"): warningIcon = QPixmap("/usr/lib/kde4/share/icons/oxygen/48x48/status/dialog-warning.png") else: warningIcon = QPixmap("/usr/share/icons/crystalsvg/32x32/actions/messagebox_warning.png") self.changesDialogue.question_pixmap.setPixmap(warningIcon) if actions != None: cancel = actions[0].replace("_", "") self.changesDialogue.button_cancel_changes.setText(cancel) confirm = actions[1].replace("_", "") self.changesDialogue.button_confirm_changes.setText(confirm) summaryText = "%s" % summary self.changesDialogue.label_summary.setText(summaryText) self.changesDialogue.label_changes.setText(self.confirmChangesMessage) # fill in the details self.changesDialogue.treeview_details.clear() self.changesDialogue.treeview_details.setHeaderLabels(["Packages"]) self.changesDialogue.treeview_details.header().hide() for demoted in self.demotions: self.changesDialogue.treeview_details.insertTopLevelItem(0, QTreeWidgetItem(self.changesDialogue.treeview_details, [_("No longer supported %s") % demoted.name]) ) for rm in self.toRemove: self.changesDialogue.treeview_details.insertTopLevelItem(0, QTreeWidgetItem(self.changesDialogue.treeview_details, [_("Remove %s") % rm.name]) ) for rm in self.toRemoveAuto: self.changesDialogue.treeview_details.insertTopLevelItem(0, QTreeWidgetItem(self.changesDialogue.treeview_details, [_("Remove (was auto installed) %s") % rm.name]) ) for inst in self.toInstall: self.changesDialogue.treeview_details.insertTopLevelItem(0, QTreeWidgetItem(self.changesDialogue.treeview_details, [_("Install %s") % inst.name]) ) for up in self.toUpgrade: self.changesDialogue.treeview_details.insertTopLevelItem(0, QTreeWidgetItem(self.changesDialogue.treeview_details, [_("Upgrade %s") % up.name]) ) #FIXME resize label, stop it being shrinkable res = self.changesDialogue.exec_() if res == QDialog.Accepted: return True return False def showChangesDialogueDetails(self): if self.changesDialogue.treeview_details.isVisible(): self.changesDialogue.treeview_details.hide() self.changesDialogue.show_details_button.setText(_("Details") + " >>>") else: self.changesDialogue.treeview_details.show() self.changesDialogue.show_details_button.setText("<<< " + _("Details")) self.changesDialogue.resize(self.changesDialogue.sizeHint()) def askYesNoQuestion(self, summary, msg, default='No'): answer = QMessageBox.question(self.window_main, summary, "" + msg, QMessageBox.Yes|QMessageBox.No, QMessageBox.No) if answer == QMessageBox.Yes: return True return False def confirmRestart(self): messageBox = QMessageBox(QMessageBox.Question, _("Restart required"), _("Restart the system to complete the upgrade"), QMessageBox.NoButton, self.window_main) yesButton = messageBox.addButton(QMessageBox.Yes) noButton = messageBox.addButton(QMessageBox.No) yesButton.setText(_("_Restart Now").replace("_", "&")) noButton.setText(gettext.dgettext("kdelibs", "&Close")) answer = messageBox.exec_() if answer == QMessageBox.Yes: return True return False def processEvents(self): QApplication.processEvents() def pulseProgress(self, finished=False): # FIXME: currently we do nothing here because this is # run in a different python thread and QT explodes if the UI is # touched from a non QThread pass def on_window_main_delete_event(self): #FIXME make this user friendly text = _("""Cancel the running upgrade? The system could be in an unusable state if you cancel the upgrade. You are strongly advised to resume the upgrade.""") text = text.replace("\n", "
") cancel = QMessageBox.warning(self.window_main, _("Cancel Upgrade?"), text, QMessageBox.Yes, QMessageBox.No) if cancel == QMessageBox.Yes: return True return False if __name__ == "__main__": view = DistUpgradeViewKDE() view.askYesNoQuestion("input box test","bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar bar ") if sys.argv[1] == "--test-term": pid = view.terminal_text.fork() if pid == 0: subprocess.call(["bash"]) sys.exit() while True: view.terminal_text.update_interface() QApplication.processEvents() time.sleep(0.01) if sys.argv[1] == "--show-in-terminal": for c in open(sys.argv[2]).read(): view.terminal_text.insertWithTermCodes( c ) #print(c, ord(c)) QApplication.processEvents() time.sleep(0.05) while True: QApplication.processEvents() cache = apt.Cache() for pkg in sys.argv[1:]: if cache[pkg].is_installed and not cache[pkg].is_upgradable: cache[pkg].mark_delete(purge=True) else: cache[pkg].mark_install() cache.commit(view._acquireProgress,view._installProgress) # keep the window open while True: QApplication.processEvents() ubuntu-release-upgrader-0.220.10/DistUpgrade/TODO0000644000000000000000000000507112431225715016301 0ustar Config/Profiles: ---------------- * add include directive (or something like this) CDROM: ----- * release notes display in CDROM mode * if run from CDROM and we have network -> do a self update * support dapper-commercial in sources.list rewriting * after "no-network" dist-upgrade it is most likely that the system is only half-upgraded and ubuntu-release-upgrader will not be able to do the full upgrade. ubuntu-release-upgrader needs to be changed to support full dist-upgrades (possible by just calling the dist-upgrader in a special mode) Misc: ----- * [fabbio]: we probably don't want to remove stuff that moved from main to universe (if the user has only main enabled this is considered obsolete). It would also be nice inform about packages that went from main->universe. We could ship a list of demotions. * set bigger timeout than 120s? breezy->dapper -------------- - gnome-icon-theme changes a lot, icons move from hicolor to gnome. this might have caused a specatular crash during a upgrade hoary->breezy ------------- - stop gnome-volume-manager before the hoary->breezy upgrade (it will crash otherwise) - send a "\n" on the libc6 question on hoary->breezy general ------- - whitelist removal (pattern? e.g. c102 -> c2a etc) and not display it? Robustness: ----------- - automatically comment out entires in the sources.list that fail to fetch. Trouble: apt doesn't provide a method to map from a line in th sources.list to the indexFile and python-apt dosn't proivde a way to get all the metaIndexes in sources.list, nor a way to get the pkgIndexFiles from the metaIndexes (metaIndex is not available in python-apt at all) What we could do is to write DistUpgradeCache.update(), check the DescURI for each failed item and guess from it what sources.list line failed (e.g. uri.endswith("Sources{.bz2|.gz") -> deb-src, get base-uri, find 'dists' in uri etc) - don't stop if a single pkg fails to upgrade: - the problem here is apt, in apt-pkg/deb/dpkgpm.cc it will stop if dpkg returns a non-zero exit code. The problem with this is of course that this may happen in the middle of the upgrade, leaving half the packages unpacked but not configured or loads of packages unconfigured. One possible solution is to not stop in apt but try to continue as long as possible. The problem here is that e.g. if libnoitfy0 explodes and evolution, update-notifer depend on it, continuing means to evo and u-n can't be upgraded and dpkg explodes on them too. This is not more worse than what we have right now I guess. ubuntu-release-upgrader-0.220.10/DistUpgrade/demoted.cfg.hardy0000777000000000000000000000000012431225715025576 2../utils/demoted.cfg.hardyustar ubuntu-release-upgrader-0.220.10/DistUpgrade/build-exclude.txt0000644000000000000000000000021712431225715021075 0ustar ./backports ./profile ./result ./tarball ./toChroot ./automatic-upgrade-testing ./build-exclude.txt ./ChrootNonInteractive.py ./install_all.py ubuntu-release-upgrader-0.220.10/DistUpgrade/prerequists-sources.list0000644000000000000000000000044612431225715022556 0ustar # sources.list fragment for pre-requists (mirror from sources.list + fallback) # this is safe to remove after the upgrade ${mirror} # when this changes from -proposed to -updates, ensure to update # DistUpgradeController.py:1393 as well deb http://archive.ubuntu.com/ubuntu/ lucid-updates main ubuntu-release-upgrader-0.220.10/DistUpgrade/dist-upgrade.py0000755000000000000000000000031212431225715020547 0ustar #!/usr/bin/python # DO NOT CHANGE THE ABOVE TO python3! from __future__ import absolute_import from DistUpgrade.DistUpgradeMain import main import sys if __name__ == "__main__": sys.exit(main()) ubuntu-release-upgrader-0.220.10/DistUpgrade/Changelog0000644000000000000000000001532312431225715017424 0ustar 2007-02-14: - automatically generate the .py file from the .ui files 2007-02-14: - fix the $dist-proposed handling - fix in $dist-commercial handling (LP#66783) - updated demotions 2007-02-13: - fix in the reboot code (lp: #84538) - make some string more distro neutral 2007-02-07: - add support for the cdrom upgrader to update itself 2007-02-05: - use the new python-apt aptsources api - server mode has magic to deal with runing under ssh 2007-02-02: - merged the KDE frontend (thanks Riddell) - added tasks support - add dist-upgrade --mode=server 2007-02-01: - fix apport integration 2007-01-29: - fixes in the InstallProgress.error() method - DistUpgrade/DistUpgradeView.py: fix InstallProgress refactoring - updated obsoletes - auto-generate the codename for the upgrade based on the build-system coden (lp: #77620) - various bugfixes - apport support 2006-12-12: - rewrote the _checkFreeSpace() and add better checking for /boot (#70683) 2006-11-28: - add quirks rule to install ndiswrapper-utils-1.9 if 1.8 is installed 2006-11-27: - fix caption in main glade file - use "Dpkg::StopOnError","False" option 2006-11-23: - initial feisty upload 2006-10-28: - catch errors when load_icon() does not work 2006-10-27: - reset self.read so that we do not loop endlessly when dpkg sends unexpected data (lp: #68553) 2006-10-26: - make sure that xserver-xorg-video-all get installed if xserver-xorg-driver-all was installed before (lp: #58424) 2006-10-21: - comment out old cdrom sources - demotions updated 2006-10-21: - fix incorrect arguments in fixup logging (lp: #67311) - more error logging - fix upgrade problems for people with unofficial compiz repositories (lp: #58424) - rosetta i18n updates - uploaded 2006-10-17: - ensure bzr, tomboy and xserver-xorg-input-* are properly upgraded - don't fail if dpkg sents unexpected status lines (lp: #66013) 2006-10-16: - remove leftover references to ubuntu-base and use ubuntu-minimal and ubuntu-standard instead - updated translations from rosetta 2006-10-13: - log held-back as well 2006-10-12: - check if cdrom.lst actually exists before copying it 2006-10-11: - keep pixbuf loader reference around so that we have one after the upgrade when the old /usr/lib/gtk-2.0/loader/2.4.0/ loader is gone. This fixes the problem of missing stock-icons after the upgrade. Also revalidate the theme in each step. 2006-10-10: - fix time calculation - fix kubuntu upgrade case 2006-10-06: - fix source.list rewrite corner case bug (#64159) 2006-10-04: - improve the space checking/logging 2006-09-29: - typo fix (thanks to Jane Silber) (lp: #62946) 2006-09-28: - bugfix in the cdromupgrade script 2006-09-27: - uploaded a version that only reverts the backport fetching but no other changes compared to 2006-09-23 2006-09-27: - embarrassing bug cdromupgrade.sh 2006-09-26: - comment out the getRequiredBackport code because we will not use Breaks for the dapper->edgy upgrade yet (see #54234 for the rationale) - updated demotions.cfg for dapper->edgy - special case the packages affected by the Breaks changes - make sure that no translations get lost during the upgrade (thanks to mdz for pointing this out) - bugfixes 2006-09-23: - support fetching backports of selected packages first and use them for the upgrade (needed to support Breaks) - fetch/use apt/dpkg/python-apt backports for the upgrade 2006-09-06: - increased the "free-space-savety-buffer" to 100MB 2006-09-05: - added "RemoveEssentialOk" option and put "sysvinit" into it 2006-09-04: - set Debug::pkgDepCache::AutoInstall as debug option too - be more robust against failure from the locales - remove libgl1-mesa (no longer needed on edgy) 2006-09-03: - fix in the cdromupgrade script path detection 2006-09-01: - make the cdromupgrade wrapper work with the compressed version of the upgrader as put onto the CD - uploaded 2006-08-30: - fixes to the cdromupgrade wrapper 2006-08-29: - always enable the "main" component to make sure it is available - add download estimated time - add --cdrom switch to make cdrom based dist-upgrades possible - better error reporting - moved the logging into the /var/log/dist-upgrade/ dir - change the obsoletes calculation when run without network and consider demotions as obsoletes then (because we can't really use the "pkg.downloadable" hint without network) - uploaded 2006-08-18: - sort the demoted software list 2006-07-31: - updated to edgy - uploadedd 2006-05-31: - fix bug in the free space calculation (#47092) - updated ReleaseAnnouncement - updated translations - fix a missing bindtextdomain - fix a incorrect ngettext usage - added quirks handler to fix nvidia-glx issue (#47017) Thanks to the amazing Kiko for helping improve this! 2006-05-24: - if the initial "update()" fails, just exit, don't try to restore the old sources.list (nothing was modified yet) Ubuntu: #46712 - fix a bug in the sourcesList rewriting (ubuntu: #46245) - expand the terminal when no libgnome2-perl is installed because debconf might want to ask questions (ubuntu: #46214) - disable the breezy cdrom source to make removal of demoted packages work properly (ubuntu: #46336) - translations updated from rosetta - fixed a bug in the demotions calculation (ubuntu: #46245) - typos fixed and translations unfuzzied (ubuntu: #46792,#46464) - upload 2006-05-12: - space checking improved (ubuntu: #43948) - show software that was demoted from main -> universe - improve the remaining time reporting - translation updates - upload 2006-05-09: - upload 2006-05-08: - fix error when asking for media-change (ubuntu: 43442,43728) 2006-05-02: - upload 2006-04-28: - add more sanity checking, if no valid mirror is found in the sources.list ask for "dumb" rewrite - if nothing valid was found after a dumb rewrite, add official sources - don't report install TIMEOUT over and over in the log - report what package caused a install TIMEOUT 2006-04-27: - add a additonal sanity check after the rewriting of the sources.list (check for BaseMetaPkgs still in the cache) - on abort reopen() the cache to force writing a new /var/cache/apt/pkgcache.bin - use a much more compelte mirror list (based on the information from https://wiki.ubuntu.com/Archive) 2006-04-25: - make sure that DistUpgradeView.getTerminal().call() actually waits until the command has finished (dpkg --configure -a) 2006-04-18: - add logging to the sources.list modification code - general logging improvements (thanks to Xavier Poinsard) ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeAufs.py0000644000000000000000000002334412431225715021220 0ustar from __future__ import absolute_import, print_function import logging import os import subprocess import tempfile def aufsOptionsAndEnvironmentSetup(options, config): """ setup the environment based on the config and options It will use config("Aufs","Enabled") - to show if its enabled and config("Aufs","RWDir") - for the writable overlay dir """ logging.debug("aufsOptionsAndEnvironmentSetup()") # enabled from the commandline (full overlay by default) if options and options.useAufs: logging.debug("enabling full overlay from commandline") config.set("Aufs","Enabled", "True") config.set("Aufs","EnableFullOverlay","True") # setup environment based on config tmprw = tempfile.mkdtemp(prefix="upgrade-rw-") aufs_rw_dir = config.getWithDefault("Aufs","RWDir", tmprw) logging.debug("using '%s' as aufs_rw_dir" % aufs_rw_dir) os.environ["RELEASE_UPGRADE_AUFS_RWDIR"] = aufs_rw_dir config.set("Aufs","RWDir",aufs_rw_dir) # now the chroot tmpdir tmpchroot = tempfile.mkdtemp(prefix="upgrade-chroot-") os.chmod(tmpchroot, 0o755) aufs_chroot_dir = config.getWithDefault("Aufs","ChrootDir", tmpchroot) logging.debug("using '%s' as aufs chroot dir" % aufs_chroot_dir) if config.getWithDefault("Aufs","EnableFullOverlay", False): logging.debug("enabling aufs full overlay (from config)") config.set("Aufs","Enabled", "True") os.environ["RELEASE_UPGRADE_USE_AUFS_FULL_OVERLAY"] = "1" if config.getWithDefault("Aufs","EnableChrootOverlay",False): logging.debug("enabling aufs chroot overlay") config.set("Aufs","Enabled", "True") os.environ["RELEASE_UPGRADE_USE_AUFS_CHROOT"] = aufs_chroot_dir if config.getWithDefault("Aufs","EnableChrootRsync", False): logging.debug("enable aufs chroot rsync back to real system") os.environ["RELEASE_UPGRADE_RSYNC_AUFS_CHROOT"] = "1" def _bindMount(from_dir, to_dir, rbind=False): " helper that bind mounts a given dir to a new place " if not os.path.exists(to_dir): os.makedirs(to_dir) if rbind: bind = "--rbind" else: bind = "--bind" cmd = ["mount",bind, from_dir, to_dir] logging.debug("cmd: %s" % cmd) res = subprocess.call(cmd) if res != 0: # FIXME: revert already mounted stuff logging.error("Failed to bind mount from '%s' to '%s'" % (from_dir, to_dir)) return False return True def _aufsOverlayMount(target, rw_dir, chroot_dir="/"): """ helper that takes a target dir and mounts a rw dir over it, e.g. /var , /tmp/upgrade-rw """ if not os.path.exists(rw_dir+target): os.makedirs(rw_dir+target) if not os.path.exists(chroot_dir+target): os.makedirs(chroot_dir+target) # FIXME: figure out when to use aufs and when to use overlayfs use_overlayfs = False if use_overlayfs: cmd = ["mount", "-t","overlayfs", "-o","upperdir=%s,lowerdir=%s" % (rw_dir+target, target), "none", chroot_dir+target] else: cmd = ["mount", "-t","aufs", "-o","br:%s:%s=ro" % (rw_dir+target, target), "none", chroot_dir+target] res = subprocess.call(cmd) if res != 0: # FIXME: revert already mounted stuff logging.error("Failed to mount rw aufs overlay for '%s'" % target) return False logging.debug("cmd '%s' return '%s' " % (cmd, res)) return True def is_aufs_mount(dir): " test if the given dir is already mounted with aufs overlay " for line in open("/proc/mounts"): (device, mountpoint, fstype, options, a, b) = line.split() if device == "none" and fstype == "aufs" and mountpoint == dir: return True return False def is_submount(mountpoint, systemdirs): " helper: check if the given mountpoint is a submount of a systemdir " logging.debug("is_submount: %s %s" % (mountpoint, systemdirs)) for d in systemdirs: if not d.endswith("/"): d += "/" if mountpoint.startswith(d): return True return False def is_real_fs(fs): if fs.startswith("fuse"): return False if fs in ["rootfs","tmpfs","proc","fusectrl","aufs", "devpts","binfmt_misc", "sysfs"]: return False return True def doAufsChrootRsync(aufs_chroot_dir): """ helper that rsyncs the changes in the aufs chroot back to the real system """ from .DistUpgradeMain import SYSTEM_DIRS for d in SYSTEM_DIRS: if not os.path.exists(d): continue # its important to have the "/" at the end of source # and dest so that rsync knows what to do cmd = ["rsync","-aHAX","--del","-v", "--progress", "/%s/%s/" % (aufs_chroot_dir, d), "/%s/" % d] logging.debug("running: '%s'" % cmd) ret = subprocess.call(cmd) logging.debug("rsync back result for %s: %i" % (d, ret)) return True def doAufsChroot(aufs_rw_dir, aufs_chroot_dir): " helper that sets the chroot up and does chroot() into it " if not setupAufsChroot(aufs_rw_dir, aufs_chroot_dir): return False os.chroot(aufs_chroot_dir) os.chdir("/") return True def setupAufsChroot(rw_dir, chroot_dir): " setup aufs chroot that is based on / but with a writable overlay " # with the chroot aufs we can just rsync the changes back # from the chroot dir to the real dirs # # (if we run rsync with --backup --backup-dir we could even # create something vaguely rollbackable # get the mount points before the aufs buisiness starts mounts = open("/proc/mounts").read() from .DistUpgradeMain import SYSTEM_DIRS systemdirs = SYSTEM_DIRS # aufs mount or bind mount required dirs for d in os.listdir("/"): d = os.path.join("/",d) if os.path.isdir(d): if d in systemdirs: logging.debug("bind mounting %s" % d) if not _aufsOverlayMount(d, rw_dir, chroot_dir): return False else: logging.debug("overlay mounting %s" % d) if not _bindMount(d, chroot_dir+d, rbind=True): return False # create binds for the systemdirs #needs_bind_mount = set() for line in mounts.split("\n"): line = line.strip() if not line: continue (device, mountpoint, fstype, options, a, b) = line.split() if (fstype != "aufs" and not is_real_fs(fstype) and is_submount(mountpoint, systemdirs)): logging.debug("found %s that needs bind mount", mountpoint) if not _bindMount(mountpoint, chroot_dir+mountpoint): return False return True def setupAufs(rw_dir): " setup aufs overlay over the rootfs " # * we need to find a way to tell all the existing daemon # to look into the new namespace. so probably something # like a reboot is required and some hackery in initramfs-tools # to ensure that we boot into a overlay ready system # * this is much less of a issue with the aufsChroot code logging.debug("setupAufs") if not os.path.exists("/proc/mounts"): logging.debug("no /proc/mounts, can not do aufs overlay") return False from .DistUpgradeMain import SYSTEM_DIRS systemdirs = SYSTEM_DIRS # verify that there are no submounts of a systemdir and collect # the stuff that needs bind mounting (because a aufs does not # include sub mounts) needs_bind_mount = set() needs_bind_mount.add("/var/cache/apt/archives") for line in open("/proc/mounts"): (device, mountpoint, fstype, options, a, b) = line.split() if is_real_fs(fstype) and is_submount(mountpoint, systemdirs): logging.warning("mountpoint %s submount of systemdir" % mountpoint) return False if (fstype != "aufs" and not is_real_fs(fstype) and is_submount(mountpoint, systemdirs)): logging.debug("found %s that needs bind mount", mountpoint) needs_bind_mount.add(mountpoint) # aufs mounts do not support stacked filesystems, so # if we mount /var we will loose the tmpfs stuff # first bind mount varun and varlock into the tmpfs for d in needs_bind_mount: if not _bindMount(d, rw_dir+"/needs_bind_mount/"+d): return False # setup writable overlay into /tmp/upgrade-rw so that all # changes are written there instead of the real fs for d in systemdirs: if not is_aufs_mount(d): if not _aufsOverlayMount(d, rw_dir): return False # now bind back the tempfs to the original location for d in needs_bind_mount: if not _bindMount(rw_dir+"/needs_bind_mount/"+d, d): return False # The below information is only of historical relevance: # now what we *could* do to apply the changes is to # mount -o bind / /orig # (bind is important, *not* rbind that includes submounts) # # This will give us the original "/" without the # aufs rw overlay - *BUT* only if "/" is all on one parition # # then apply the diff (including the whiteouts) to /orig # e.g. by "rsync -av /tmp/upgrade-rw /orig" # "script that search for whiteouts and removes them" # (whiteout files start with .wh.$name # whiteout dirs with .wh..? - check with aufs man page) return True if __name__ == "__main__": logging.basicConfig(level=logging.DEBUG) #print(setupAufs("/tmp/upgrade-rw")) print(setupAufsChroot("/tmp/upgrade-chroot-rw", "/tmp/upgrade-chroot")) ubuntu-release-upgrader-0.220.10/DistUpgrade/dialog_release_notes.ui0000644000000000000000000000304612431225715022317 0ustar Dialog 0 0 643 476 Dialog true Qt::Horizontal QDialogButtonBox::Cancel|QDialogButtonBox::Ok buttonBox accepted() Dialog accept() 248 254 157 274 buttonBox rejected() Dialog reject() 316 260 286 274 ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeController.py0000644000000000000000000025717212431225715022455 0ustar # DistUpgradeController.py # # Copyright (c) 2004-2008 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function import warnings warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning) import apt import apt_pkg import sys import os import subprocess import locale import logging import shutil import glob import time import copy try: # >= 3.0 from configparser import NoOptionError if sys.version >= '3.2': from configparser import ConfigParser as SafeConfigParser else: from configparser import SafeConfigParser except ImportError: # < 3.0 from ConfigParser import SafeConfigParser, NoOptionError from .utils import (country_mirror, url_downloadable, check_and_fix_xbit, get_arch, iptables_active, inside_chroot, get_string_with_no_auth_from_source_entry, is_child_of_process_name) from string import Template try: from urllib.parse import urlsplit except ImportError: from urlparse import urlsplit from .DistUpgradeView import STEP_PREPARE, STEP_MODIFY_SOURCES, STEP_FETCH, STEP_INSTALL, STEP_CLEANUP, STEP_REBOOT from .DistUpgradeCache import MyCache from .DistUpgradeConfigParser import DistUpgradeConfig from .DistUpgradeQuirks import DistUpgradeQuirks from .DistUpgradeAptCdrom import AptCdrom from .DistUpgradeAufs import setupAufs, aufsOptionsAndEnvironmentSetup # workaround broken relative import in python-apt (LP: #871007), we # want the local version of distinfo.py from oneiric, but because of # a bug in python-apt we will get the natty version that does not # know about "Component.parent_component" leading to a crash from . import distinfo from . import sourceslist sourceslist.DistInfo = distinfo.DistInfo from .sourceslist import SourcesList, is_mirror from .distro import get_distro, NoDistroTemplateException from .DistUpgradeGettext import gettext as _ from .DistUpgradeGettext import ngettext import gettext from .DistUpgradeCache import (CacheExceptionDpkgInterrupted, CacheExceptionLockingFailed, NotEnoughFreeSpaceError) from .DistUpgradeApport import run_apport REBOOT_REQUIRED_FILE = "/var/run/reboot-required" def component_ordering_key(a): """ key() function for sorted to ensure "correct" component ordering """ ordering = ["main", "restricted", "universe", "multiverse"] try: return ordering.index(a) except ValueError: # ensure to sort behind the "official" components, order is not # really important for those return len(ordering)+1 class NoBackportsFoundException(Exception): pass class DistUpgradeController(object): """ this is the controller that does most of the work """ def __init__(self, distUpgradeView, options=None, datadir=None): # setup the paths localedir = "/usr/share/locale/" if datadir == None or datadir == '.': datadir = os.getcwd() localedir = os.path.join(datadir,"mo") self.datadir = datadir self.options = options # init gettext gettext.bindtextdomain("ubuntu-release-upgrader",localedir) gettext.textdomain("ubuntu-release-upgrader") # setup the view logging.debug("Using '%s' view" % distUpgradeView.__class__.__name__) self._view = distUpgradeView self._view.updateStatus(_("Reading cache")) self.cache = None if not self.options or self.options.withNetwork == None: self.useNetwork = True else: self.useNetwork = self.options.withNetwork if options: cdrompath = options.cdromPath else: cdrompath = None self.aptcdrom = AptCdrom(distUpgradeView, cdrompath) # the configuration self.config = DistUpgradeConfig(datadir) self.sources_backup_ext = "."+self.config.get("Files","BackupExt") # move some of the options stuff into the self.config, # ConfigParser deals only with strings it seems *sigh* self.config.add_section("Options") self.config.set("Options","withNetwork", str(self.useNetwork)) # aufs stuff aufsOptionsAndEnvironmentSetup(self.options, self.config) # some constants here self.fromDist = self.config.get("Sources","From") self.toDist = self.config.get("Sources","To") self.origin = self.config.get("Sources","ValidOrigin") self.arch = get_arch() # we run with --force-overwrite by default if "RELEASE_UPGRADE_NO_FORCE_OVERWRITE" not in os.environ: logging.debug("enable dpkg --force-overwrite") apt_pkg.config.set("DPkg::Options::","--force-overwrite") # we run in full upgrade mode by default self._partialUpgrade = False # install the quirks handler self.quirks = DistUpgradeQuirks(self, self.config) # setup env var os.environ["RELEASE_UPGRADE_IN_PROGRESS"] = "1" os.environ["PYCENTRAL_FORCE_OVERWRITE"] = "1" os.environ["PATH"] = "%s:%s" % (os.getcwd()+"/imported", os.environ["PATH"]) check_and_fix_xbit("./imported/invoke-rc.d") # set max retries maxRetries = self.config.getint("Network","MaxRetries") apt_pkg.config.set("Acquire::Retries", str(maxRetries)) # max sizes for dpkgpm for large installs (see linux/limits.h and # linux/binfmts.h) apt_pkg.config.set("Dpkg::MaxArgs", str(64*1024)) apt_pkg.config.set("Dpkg::MaxArgBytes", str(128*1024)) # smaller to avoid hangs apt_pkg.config.set("Acquire::http::Timeout","20") apt_pkg.config.set("Acquire::ftp::Timeout","20") # no list cleanup here otherwise a "cancel" in the upgrade # will not restore the full state (lists will be missing) apt_pkg.config.set("Apt::Get::List-Cleanup", "false") # forced obsoletes self.forced_obsoletes = self.config.getlist("Distro","ForcedObsoletes") # list of valid mirrors that we can add self.valid_mirrors = self.config.getListFromFile("Sources","ValidMirrors") # third party mirrors self.valid_3p_mirrors = [] if self.config.has_section('ThirdPartyMirrors'): self.valid_3p_mirrors = [pair[1] for pair in self.config.items('ThirdPartyMirrors')] # debugging #apt_pkg.config.set("DPkg::Options::","--debug=0077") # apt cron job self._aptCronJobPerms = 0o755 def openCache(self, lock=True, restore_sources_list_on_fail=False): logging.debug("openCache()") if self.cache is None: self.quirks.run("PreCacheOpen") else: self.cache.release_lock() self.cache.unlock_lists_dir() # this loop will try getting the lock a couple of times MAX_LOCK_RETRIES = 20 lock_retry = 0 while True: try: # exit here once the cache is ready return self._openCache(lock) except CacheExceptionLockingFailed as e: # wait a bit lock_retry += 1 self._view.processEvents() time.sleep(0.1) logging.debug( "failed to lock the cache, retrying (%i)" % lock_retry) # and give up after some time if lock_retry > MAX_LOCK_RETRIES: logging.error("Cache can not be locked (%s)" % e) self._view.error(_("Unable to get exclusive lock"), _("This usually means that another " "package management application " "(like apt-get or aptitude) " "already running. Please close that " "application first.")); if restore_sources_list_on_fail: self.abort() else: sys.exit(1) def _openCache(self, lock): try: self.cache = MyCache(self.config, self._view, self.quirks, self._view.getOpCacheProgress(), lock) # alias name for the plugin interface code self.apt_cache = self.cache # if we get a dpkg error that it was interrupted, just # run dpkg --configure -a except CacheExceptionDpkgInterrupted: logging.warning("dpkg interrupted, calling dpkg --configure -a") cmd = ["/usr/bin/dpkg","--configure","-a"] if os.environ.get("DEBIAN_FRONTEND") == "noninteractive": cmd.append("--force-confold") self._view.getTerminal().call(cmd) self.cache = MyCache(self.config, self._view, self.quirks, self._view.getOpCacheProgress()) self.cache.partialUpgrade = self._partialUpgrade logging.debug("/openCache(), new cache size %i" % len(self.cache)) def _viewSupportsSSH(self): """ Returns True if this view support upgrades over ssh. In theory all views should support it, but for savety we do only allow text ssh upgrades (see LP: #322482) """ supported = self.config.getlist("View","SupportSSH") if self._view.__class__.__name__ in supported: return True return False def _sshMagic(self): """ this will check for server mode and if we run over ssh. if this is the case, we will ask and spawn a additional daemon (to be sure we have a spare one around in case of trouble) """ pidfile = os.path.join("/var/run/release-upgrader-sshd.pid") if (not os.path.exists(pidfile) and os.path.isdir("/proc") and is_child_of_process_name("sshd")): # check if the frontend supports ssh upgrades (see lp: #322482) if not self._viewSupportsSSH(): logging.error("upgrade over ssh not allowed") self._view.error(_("Upgrading over remote connection not supported"), _("You are running the upgrade over a " "remote ssh connection with a frontend " "that does " "not support this. Please try a text " "mode upgrade with 'do-release-upgrade'." "\n\n" "The upgrade will " "abort now. Please try without ssh.") ) sys.exit(1) return False # ask for a spare one to start (and below 1024) port = 1022 res = self._view.askYesNoQuestion( _("Continue running under SSH?"), _("This session appears to be running under ssh. " "It is not recommended to perform a upgrade " "over ssh currently because in case of failure " "it is harder to recover.\n\n" "If you continue, an additional ssh daemon will be " "started at port '%s'.\n" "Do you want to continue?") % port) # abort if res == False: sys.exit(1) res = subprocess.call(["/usr/sbin/sshd", "-o", "PidFile=%s" % pidfile, "-p",str(port)]) if res == 0: summary = _("Starting additional sshd") descr = _("To make recovery in case of failure easier, an " "additional sshd will be started on port '%s'. " "If anything goes wrong with the running ssh " "you can still connect to the additional one.\n" ) % port if iptables_active(): cmd = "iptables -I INPUT -p tcp --dport %s -j ACCEPT" % port descr += _( "If you run a firewall, you may need to " "temporarily open this port. As this is " "potentially dangerous it's not done automatically. " "You can open the port with e.g.:\n'%s'") % cmd self._view.information(summary, descr) return True def _tryUpdateSelf(self): """ this is a helper that is run if we are started from a CD and we have network - we will then try to fetch a update of ourself """ from .MetaRelease import MetaReleaseCore from .DistUpgradeFetcherSelf import DistUpgradeFetcherSelf # check if we run from a LTS forceLTS=False if (self.release == "dapper" or self.release == "hardy" or self.release == "lucid" or self.release == "precise"): forceLTS=True m = MetaReleaseCore(useDevelopmentRelease=False, forceLTS=forceLTS) # this will timeout eventually self._view.processEvents() while not m.downloaded.wait(0.1): self._view.processEvents() if m.new_dist is None: logging.error("No new dist found") return False # we have a new dist progress = self._view.getAcquireProgress() fetcher = DistUpgradeFetcherSelf(new_dist=m.new_dist, progress=progress, options=self.options, view=self._view) fetcher.run() def _pythonSymlinkCheck(self): """ sanity check that /usr/bin/python points to the default python version. Users tend to modify this symlink, which breaks stuff in obscure ways (Ubuntu #75557). """ logging.debug("_pythonSymlinkCheck run") if os.path.exists('/usr/share/python/debian_defaults'): config = SafeConfigParser() config.readfp(open('/usr/share/python/debian_defaults')) try: expected_default = config.get('DEFAULT', 'default-version') except NoOptionError: logging.debug("no default version for python found in '%s'" % config) return False try: fs_default_version = os.readlink('/usr/bin/python') except OSError as e: logging.error("os.readlink failed (%s)" % e) return False if not fs_default_version in (expected_default, os.path.join('/usr/bin', expected_default)): logging.debug("python symlink points to: '%s', but expected is '%s' or '%s'" % (fs_default_version, expected_default, os.path.join('/usr/bin', expected_default))) return False return True def prepare(self): """ initial cache opening, sanity checking, network checking """ # first check if that is a good upgrade self.release = release = subprocess.Popen(["lsb_release","-c","-s"], stdout=subprocess.PIPE, universal_newlines=True).communicate()[0].strip() logging.debug("lsb-release: '%s'" % release) if not (release == self.fromDist or release == self.toDist): logging.error("Bad upgrade: '%s' != '%s' " % (release, self.fromDist)) self._view.error(_("Can not upgrade"), _("An upgrade from '%s' to '%s' is not " "supported with this tool." % (release, self.toDist))) sys.exit(1) # setup aufs if self.config.getWithDefault("Aufs", "EnableFullOverlay", False): aufs_rw_dir = self.config.get("Aufs","RWDir") if not setupAufs(aufs_rw_dir): logging.error("aufs setup failed") self._view.error(_("Sandbox setup failed"), _("It was not possible to create the sandbox " "environment.")) return False # all good, tell the user about the sandbox mode logging.info("running in aufs overlay mode") self._view.information(_("Sandbox mode"), _("This upgrade is running in sandbox " "(test) mode. All changes are written " "to '%s' and will be lost on the next " "reboot.\n\n" "*No* changes written to a system directory " "from now until the next reboot are " "permanent.") % aufs_rw_dir) # setup backports (if we have them) if self.options and self.options.havePrerequists: backportsdir = os.getcwd()+"/backports" logging.info("using backports in '%s' " % backportsdir) logging.debug("have: %s" % glob.glob(backportsdir+"/*.udeb")) if os.path.exists(backportsdir+"/usr/bin/dpkg"): apt_pkg.config.set("Dir::Bin::dpkg",backportsdir+"/usr/bin/dpkg"); if os.path.exists(backportsdir+"/usr/lib/apt/methods"): apt_pkg.config.set("Dir::Bin::methods",backportsdir+"/usr/lib/apt/methods") conf = backportsdir+"/etc/apt/apt.conf.d/01ubuntu" if os.path.exists(conf): logging.debug("adding config '%s'" % conf) apt_pkg.read_config_file(apt_pkg.config, conf) # do the ssh check and warn if we run under ssh self._sshMagic() # check python version if not self._pythonSymlinkCheck(): logging.error("pythonSymlinkCheck() failed, aborting") self._view.error(_("Can not upgrade"), _("Your python install is corrupted. " "Please fix the '/usr/bin/python' symlink.")) sys.exit(1) # open cache try: self.openCache() except SystemError as e: logging.error("openCache() failed: '%s'" % e) return False if not self.cache.sanity_check(self._view): return False # now figure out if we need to go into desktop or # server mode - we use a heuristic for this self.serverMode = self.cache.need_server_mode() if self.serverMode: os.environ["RELEASE_UPGRADE_MODE"] = "server" else: os.environ["RELEASE_UPGRADE_MODE"] = "desktop" if not self.checkViewDepends(): logging.error("checkViewDepends() failed") return False if os.path.exists("/usr/bin/debsig-verify"): logging.error("debsig-verify is installed") self._view.error(_("Package 'debsig-verify' is installed"), _("The upgrade can not continue with that " "package installed.\n" "Please remove it with synaptic " "or 'apt-get remove debsig-verify' first " "and run the upgrade again.")) self.abort() from .DistUpgradeMain import SYSTEM_DIRS for systemdir in SYSTEM_DIRS: if os.path.exists(systemdir) and not os.access(systemdir, os.W_OK): logging.error("%s not writable" % systemdir) self._view.error( _("Can not write to '%s'") % systemdir, _("Its not possible to write to the system directory " "'%s' on your system. The upgrade can not " "continue.\n" "Please make sure that the system directory is " "writable.") % systemdir) self.abort() # FIXME: we may try to find out a bit more about the network # connection here and ask more intelligent questions if self.aptcdrom and self.options and self.options.withNetwork == None: res = self._view.askYesNoQuestion(_("Include latest updates from the Internet?"), _("The upgrade system can use the internet to " "automatically download " "the latest updates and install them during the " "upgrade. If you have a network connection this is " "highly recommended.\n\n" "The upgrade will take longer, but when " "it is complete, your system will be fully up to " "date. You can choose not to do this, but you " "should install the latest updates soon after " "upgrading.\n" "If you answer 'no' here, the network is not " "used at all."), 'Yes') self.useNetwork = res self.config.set("Options","withNetwork", str(self.useNetwork)) logging.debug("useNetwork: '%s' (selected by user)" % res) if res: self._tryUpdateSelf() return True def _sourcesListEntryDownloadable(self, entry): """ helper that checks if a sources.list entry points to something downloadable """ logging.debug("verifySourcesListEntry: %s" % entry) # no way to verify without network if not self.useNetwork: logging.debug("skiping downloadable check (no network)") return True # check if the entry points to something we can download uri = "%s/dists/%s/Release" % (entry.uri, entry.dist) return url_downloadable(uri, logging.debug) def rewriteSourcesList(self, mirror_check=True): logging.debug("rewriteSourcesList()") sync_components = self.config.getlist("Sources","Components") # skip mirror check if special environment is set # (useful for server admins with internal repos) if (self.config.getWithDefault("Sources","AllowThirdParty",False) or "RELEASE_UPRADER_ALLOW_THIRD_PARTY" in os.environ): logging.warning("mirror check skipped, *overriden* via config") mirror_check=False # check if we need to enable main if mirror_check == True and self.useNetwork: # now check if the base-meta pkgs are available in # the archive or only available as "now" # -> if not that means that "main" is missing and we # need to enable it for pkgname in self.config.getlist("Distro","BaseMetaPkgs"): if ((not pkgname in self.cache or not self.cache[pkgname].candidate or len(self.cache[pkgname].candidate.origins) == 0) or (self.cache[pkgname].candidate and len(self.cache[pkgname].candidate.origins) == 1 and self.cache[pkgname].candidate.origins[0].archive == "now") ): logging.debug("BaseMetaPkg '%s' has no candidate.origins" % pkgname) try: distro = get_distro() distro.get_sources(self.sources) distro.enable_component("main") except NoDistroTemplateException: # fallback if everything else does not work, # we replace the sources.list with a single # line to ubuntu-main logging.warning('get_distro().enable_component("main") failed, overwriting sources.list instead as last resort') s = "# auto generated by ubuntu-release-upgrader" s += "deb http://archive.ubuntu.com/ubuntu %s main restricted" % self.toDist s += "deb http://archive.ubuntu.com/ubuntu %s-updates main restricted" % self.toDist s += "deb http://security.ubuntu.com/ubuntu %s-security main restricted" % self.toDist open("/etc/apt/sources.list","w").write(s) break # this must map, i.e. second in "from" must be the second in "to" # (but they can be different, so in theory we could exchange # component names here) pockets = self.config.getlist("Sources","Pockets") fromDists = [self.fromDist] + ["%s-%s" % (self.fromDist, x) for x in pockets] toDists = [self.toDist] + ["%s-%s" % (self.toDist,x) for x in pockets] self.sources_disabled = False # look over the stuff we have foundToDist = False # collect information on what components (main,universe) are enabled for what distro (sub)version # e.g. found_components = { 'hardy':set("main","restricted"), 'hardy-updates':set("main") } self.found_components = {} for entry in self.sources.list[:]: # ignore invalid records or disabled ones if entry.invalid or entry.disabled: continue # we disable breezy cdrom sources to make sure that demoted # packages are removed if entry.uri.startswith("cdrom:") and entry.dist == self.fromDist: logging.debug("disabled '%s' cdrom entry (dist == fromDist)" % entry) entry.disabled = True continue # check if there is actually a lists file for them available # and disable them if not elif entry.uri.startswith("cdrom:"): # listdir = apt_pkg.config.find_dir("Dir::State::lists") if not os.path.exists("%s/%s%s_%s_%s" % (listdir, apt_pkg.uri_to_filename(entry.uri), "dists", entry.dist, "Release")): logging.warning("disabling cdrom source '%s' because it has no Release file" % entry) entry.disabled = True continue # special case for archive.canonical.com that needs to # be rewritten (for pre-gutsy upgrades) cdist = "%s-commercial" % self.fromDist if (not entry.disabled and entry.uri.startswith("http://archive.canonical.com") and entry.dist == cdist): entry.dist = self.toDist entry.comps = ["partner"] logging.debug("transitioned commercial to '%s' " % entry) continue # special case for landscape.canonical.com because they # don't use a standard archive layout (gutsy->hardy) if (not entry.disabled and entry.uri.startswith("http://landscape.canonical.com/packages/%s" % self.fromDist)): logging.debug("commenting landscape.canonical.com out") entry.disabled = True continue # Disable proposed on upgrade to a development release. if (not entry.disabled and self.options and self.options.devel_release == True and "%s-proposed" % self.fromDist in entry.dist): logging.debug("upgrade to development release, disabling proposed") entry.dist = "%s-proposed" % self.toDist entry.comment += _("Not for humans during development stage of release %s") % self.toDist entry.disabled = True continue # handle upgrades from a EOL release and check if there # is a supported release available if (not entry.disabled and "old-releases.ubuntu.com/" in entry.uri): logging.debug("upgrade from old-releases.ubuntu.com detected") # test country mirror first, then archive.u.c for uri in ["http://%sarchive.ubuntu.com/ubuntu" % country_mirror(), "http://archive.ubuntu.com/ubuntu"]: test_entry = copy.copy(entry) test_entry.uri = uri test_entry.dist = self.toDist if self._sourcesListEntryDownloadable(test_entry): logging.info("transition from old-release.u.c to %s" % uri) entry.uri = uri break logging.debug("examining: '%s'" % get_string_with_no_auth_from_source_entry(entry)) # check if it's a mirror (or official site) validMirror = self.isMirror(entry.uri) thirdPartyMirror = not mirror_check or self.isThirdPartyMirror(entry.uri) if validMirror or thirdPartyMirror: # disabled/security/commercial/extras are special cases # we use validTo/foundToDist to figure out if we have a # main archive mirror in the sources.list or if we # need to add one validTo = True if (entry.disabled or entry.type == "deb-src" or "/security.ubuntu.com" in entry.uri or "%s-security" % self.fromDist in entry.dist or "%s-backports" % self.fromDist in entry.dist or "/archive.canonical.com" in entry.uri or "/extras.ubuntu.com" in entry.uri): validTo = False if entry.dist in toDists: # so the self.sources.list is already set to the new # distro logging.debug("entry '%s' is already set to new dist" % get_string_with_no_auth_from_source_entry(entry)) foundToDist |= validTo elif entry.dist in fromDists: foundToDist |= validTo entry.dist = toDists[fromDists.index(entry.dist)] logging.debug("entry '%s' updated to new dist" % get_string_with_no_auth_from_source_entry(entry)) elif entry.type == 'deb-src': continue elif validMirror: # disable all entries that are official but don't # point to either "to" or "from" dist entry.disabled = True self.sources_disabled = True logging.debug("entry '%s' was disabled (unknown dist)" % get_string_with_no_auth_from_source_entry(entry)) # if we make it to this point, we have a official or third-party mirror # check if the arch is powerpc or sparc and if so, transition # to ports.ubuntu.com (powerpc got demoted in gutsy, sparc # in hardy) if (entry.type == "deb" and not "ports.ubuntu.com" in entry.uri and (self.arch == "powerpc" or self.arch == "sparc")): logging.debug("moving %s source entry to 'ports.ubuntu.com' " % self.arch) entry.uri = "http://ports.ubuntu.com/ubuntu-ports/" # gather what components are enabled and are inconsistent for d in ["%s" % self.toDist, "%s-updates" % self.toDist, "%s-security" % self.toDist]: # create entry if needed, ignore disabled # entries and deb-src self.found_components.setdefault(d,set()) if (not entry.disabled and entry.dist == d and entry.type == "deb"): for comp in entry.comps: # only sync components we know about if not comp in sync_components: continue self.found_components[d].add(comp) else: # disable anything that is not from a official mirror or a whitelisted third party if entry.dist == self.fromDist: entry.dist = self.toDist disable_comment = " " + _("disabled on upgrade to %s") % self.toDist if isinstance(entry.comment, bytes): entry.comment += disable_comment.encode('UTF-8') else: entry.comment += disable_comment entry.disabled = True self.sources_disabled = True logging.debug("entry '%s' was disabled (unknown mirror)" % get_string_with_no_auth_from_source_entry(entry)) # now go over the list again and check for missing components # in $dist-updates and $dist-security and add them for entry in self.sources.list[:]: # skip all comps that are not relevant (including e.g. "hardy") if (entry.invalid or entry.disabled or entry.type == "deb-src" or entry.uri.startswith("cdrom:") or entry.dist == self.toDist): continue # now check for "$dist-updates" and "$dist-security" and add any inconsistencies if entry.dist in self.found_components: component_diff = self.found_components[self.toDist]-self.found_components[entry.dist] if component_diff: logging.info("fixing components inconsistency from '%s'" % get_string_with_no_auth_from_source_entry(entry)) # extend and make sure to keep order entry.comps.extend( sorted(component_diff, key=component_ordering_key)) logging.info("to new entry '%s'" % get_string_with_no_auth_from_source_entry(entry)) del self.found_components[entry.dist] return foundToDist def updateSourcesList(self): logging.debug("updateSourcesList()") self.sources = SourcesList(matcherPath=".") # backup first! self.sources.backup(self.sources_backup_ext) if not self.rewriteSourcesList(mirror_check=True): logging.error("No valid mirror found") res = self._view.askYesNoQuestion(_("No valid mirror found"), _("While scanning your repository " "information no mirror entry for " "the upgrade was found. " "This can happen if you run an internal " "mirror or if the mirror information is " "out of date.\n\n" "Do you want to rewrite your " "'sources.list' file anyway? If you choose " "'Yes' here it will update all '%s' to '%s' " "entries.\n" "If you select 'No' the upgrade will cancel." ) % (self.fromDist, self.toDist)) if res: # re-init the sources and try again self.sources = SourcesList(matcherPath=".") # its ok if rewriteSourcesList fails here if # we do not use a network, the sources.list may be empty if (not self.rewriteSourcesList(mirror_check=False) and self.useNetwork): #hm, still nothing useful ... prim = _("Generate default sources?") secon = _("After scanning your 'sources.list' no " "valid entry for '%s' was found.\n\n" "Should default entries for '%s' be " "added? If you select 'No', the upgrade " "will cancel.") % (self.fromDist, self.toDist) if not self._view.askYesNoQuestion(prim, secon): self.abort() # add some defaults here # FIXME: find mirror here logging.info("generate new default sources.list") uri = "http://archive.ubuntu.com/ubuntu" comps = ["main","restricted"] self.sources.add("deb", uri, self.toDist, comps) self.sources.add("deb", uri, self.toDist+"-updates", comps) self.sources.add("deb", "http://security.ubuntu.com/ubuntu/", self.toDist+"-security", comps) else: self.abort() # now write self.sources.save() # re-check if the written self.sources are valid, if not revert and # bail out # TODO: check if some main packages are still available or if we # accidentally shot them, if not, maybe offer to write a standard # sources.list? try: sourceslist = apt_pkg.SourceList() sourceslist.read_main_list() except SystemError: logging.error("Repository information invalid after updating (we broke it!)") if os.path.exists("/usr/bin/apport-bug"): self._view.error(_("Repository information invalid"), _("Upgrading the repository information " "resulted in a invalid file so a bug " "reporting process is being started.")) subprocess.Popen(["apport-bug", "ubuntu-release-upgrader-core"]) else: self._view.error(_("Repository information invalid"), _("Upgrading the repository information " "resulted in a invalid file. To report " "a bug install apport and then execute " "'apport-bug ubuntu-release-upgrader'.")) logging.error("Missing apport-bug, bug report not " "autocreated") return False if self.sources_disabled: self._view.information(_("Third party sources disabled"), _("Some third party entries in your sources.list " "were disabled. You can re-enable them " "after the upgrade with the " "'software-properties' tool or " "your package manager." )) return True def _logChanges(self): # debugging output logging.debug("About to apply the following changes") inst = [] up = [] rm = [] held = [] keep = [] for pkg in self.cache: if pkg.marked_install: inst.append(pkg.name) elif pkg.marked_upgrade: up.append(pkg.name) elif pkg.marked_delete: rm.append(pkg.name) elif (pkg.is_installed and pkg.is_upgradable): held.append(pkg.name) elif pkg.is_installed and pkg.marked_keep: keep.append(pkg.name) logging.debug("Keep at same version: %s" % " ".join(keep)) logging.debug("Upgradable, but held- back: %s" % " ".join(held)) logging.debug("Remove: %s" % " ".join(rm)) logging.debug("Install: %s" % " ".join(inst)) logging.debug("Upgrade: %s" % " ".join(up)) def doPostInitialUpdate(self): # check if we have packages in ReqReinst state that are not # downloadable logging.debug("doPostInitialUpdate") self.quirks.run("PostInitialUpdate") if not self.cache: return False if len(self.cache.req_reinstall_pkgs) > 0: logging.warning("packages in reqReinstall state, trying to fix") self.cache.fix_req_reinst(self._view) self.openCache() if len(self.cache.req_reinstall_pkgs) > 0: reqreinst = self.cache.req_reinstall_pkgs header = ngettext("Package in inconsistent state", "Packages in inconsistent state", len(reqreinst)) summary = ngettext("The package '%s' is in an inconsistent " "state and needs to be reinstalled, but " "no archive can be found for it. " "Please reinstall the package manually " "or remove it from the system.", "The packages '%s' are in an inconsistent " "state and need to be reinstalled, but " "no archive can be found for them. " "Please reinstall the packages manually " "or remove them from the system.", len(reqreinst)) % ", ".join(reqreinst) self._view.error(header, summary) return False # FIXME: check out what packages are downloadable etc to # compare the list after the update again self.obsolete_pkgs = self.cache._getObsoletesPkgs() self.foreign_pkgs = self.cache._getForeignPkgs(self.origin, self.fromDist, self.toDist) if self.serverMode: self.tasks = self.cache.installedTasks logging.debug("Foreign: %s" % " ".join(self.foreign_pkgs)) logging.debug("Obsolete: %s" % " ".join(self.obsolete_pkgs)) return True def doUpdate(self, showErrors=True, forceRetries=None): logging.debug("running doUpdate() (showErrors=%s)" % showErrors) if not self.useNetwork: logging.debug("doUpdate() will not use the network because self.useNetwork==false") return True self.cache._list.read_main_list() progress = self._view.getAcquireProgress() # FIXME: also remove all files from the lists partial dir! currentRetry = 0 if forceRetries is not None: maxRetries=forceRetries else: maxRetries = self.config.getint("Network","MaxRetries") while currentRetry < maxRetries: try: self.cache.update(progress) except (SystemError, IOError) as e: logging.error("IOError/SystemError in cache.update(): '%s'. Retrying (currentRetry: %s)" % (e,currentRetry)) currentRetry += 1 continue # no exception, so all was fine, we are done return True logging.error("doUpdate() failed completely") if showErrors: self._view.error(_("Error during update"), _("A problem occurred during the update. " "This is usually some sort of network " "problem, please check your network " "connection and retry."), "%s" % e) return False def _checkFreeSpace(self): " this checks if we have enough free space on /var and /usr" err_sum = _("Not enough free disk space") err_long= _("The upgrade has aborted. " "The upgrade needs a total of %s free space on disk '%s'. " "Please free at least an additional %s of disk " "space on '%s'. " "Empty your trash and remove temporary " "packages of former installations using " "'sudo apt-get clean'.") # allow override if self.config.getWithDefault("FreeSpace","SkipCheck",False): logging.warning("free space check skipped via config override") return True # do the check with_snapshots = self._is_apt_btrfs_snapshot_supported() try: self.cache.checkFreeSpace(with_snapshots) except NotEnoughFreeSpaceError as e: # ok, showing multiple error dialog sucks from the UI # perspective, but it means we do not need to break the # string freeze for required in e.free_space_required_list: self._view.error(err_sum, err_long % (required.size_total, required.dir, required.size_needed, required.dir)) return False return True def askDistUpgrade(self): self._view.updateStatus(_("Calculating the changes")) if not self.cache.distUpgrade(self._view, self.serverMode, self._partialUpgrade): return False if self.serverMode: if not self.cache.installTasks(self.tasks): return False # show changes and confirm changes = self.cache.get_changes() self._view.processEvents() # log the changes for debugging self._logChanges() self._view.processEvents() # check if we have enough free space if not self._checkFreeSpace(): return False self._view.processEvents() # get the demotions self.installed_demotions = self.cache.get_installed_demoted_packages() if len(self.installed_demotions) > 0: self.installed_demotions.sort() logging.debug("demoted: '%s'" % " ".join([x.name for x in self.installed_demotions])) logging.debug("found components: %s" % self.found_components) # flush UI self._view.processEvents() # ask the user res = self._view.confirmChanges(_("Do you want to start the upgrade?"), changes, self.installed_demotions, self.cache.required_download) return res def _disableAptCronJob(self): if os.path.exists("/etc/cron.daily/apt"): #self._aptCronJobPerms = os.stat("/etc/cron.daily/apt")[ST_MODE] logging.debug("disabling apt cron job (%s)" % oct(self._aptCronJobPerms)) os.chmod("/etc/cron.daily/apt",0o644) def _enableAptCronJob(self): if os.path.exists("/etc/cron.daily/apt"): logging.debug("enabling apt cron job") os.chmod("/etc/cron.daily/apt", self._aptCronJobPerms) def doDistUpgradeFetching(self): # ensure that no apt cleanup is run during the download/install self._disableAptCronJob() # get the upgrade currentRetry = 0 fprogress = self._view.getAcquireProgress() #iprogress = self._view.getInstallProgress(self.cache) # start slideshow url = self.config.getWithDefault("Distro","SlideshowUrl",None) if url: try: lang = locale.getdefaultlocale()[0].split('_')[0] except: logging.exception("getdefaultlocale") lang = "en" self._view.getHtmlView().open("%s#locale=%s" % (url, lang)) # retry the fetching in case of errors maxRetries = self.config.getint("Network","MaxRetries") # FIXME: we get errors like # "I wasn't able to locate file for the %s package" # here sometimes. its unclear why and not reproducible, the # current theory is that for some reason the file is not # considered trusted at the moment # pkgAcquireArchive::QueueNext() runs debReleaseIndex::IsTrused() # (the later just checks for the existence of the .gpg file) # OR # the fact that we get a pm and fetcher here confuses something # in libapt? # POSSIBLE workaround: keep the list-dir locked so that # no apt-get update can run outside from the release # upgrader user_canceled = False # LP: #1102593 - In Python 3, the targets of except clauses get `del`d # from the current namespace after the exception is handled, so we # must assign it to a different variable in order to use it after # the while loop. exception = None while currentRetry < maxRetries: try: pm = apt_pkg.PackageManager(self.cache._depcache) fetcher = apt_pkg.Acquire(fprogress) self.cache._fetch_archives(fetcher, pm) except apt.cache.FetchCancelledException as e: logging.info("user canceled") user_canceled = True exception = e break except IOError as e: # fetch failed, will be retried logging.error("IOError in cache.commit(): '%s'. Retrying (currentTry: %s)" % (e,currentRetry)) currentRetry += 1 exception = e continue return True # maximum fetch-retries reached without a successful commit if user_canceled: self._view.information(_("Upgrade canceled"), _("The upgrade will cancel now and the " "original system state will be restored. " "You can resume the upgrade at a later " "time.")) else: logging.error("giving up on fetching after maximum retries") self._view.error(_("Could not download the upgrades"), _("The upgrade has aborted. Please check your " "Internet connection or " "installation media and try again. All files " "downloaded so far have been kept."), "%s" % exception) # abort here because we want our sources.list back self._enableAptCronJob() self.abort() def _is_apt_btrfs_snapshot_supported(self): """ check if apt-btrfs-snapshot is usable """ try: import apt_btrfs_snapshot except ImportError: return try: apt_btrfs = apt_btrfs_snapshot.AptBtrfsSnapshot() res = apt_btrfs.snapshots_supported() except: logging.exception("failed to check btrfs support") return False logging.debug("apt btrfs snapshots supported: %s" % res) return res def _maybe_create_apt_btrfs_snapshot(self): """ create btrfs snapshot (if btrfs layout is there) """ if not self._is_apt_btrfs_snapshot_supported(): return import apt_btrfs_snapshot apt_btrfs = apt_btrfs_snapshot.AptBtrfsSnapshot() prefix = "release-upgrade-%s-" % self.toDist res = apt_btrfs.create_btrfs_root_snapshot(prefix) logging.info("creating snapshot '%s' (success=%s)" % (prefix, res)) def doDistUpgrade(self): # add debug code only here #apt_pkg.config.set("Debug::pkgDpkgPM", "1") #apt_pkg.config.set("Debug::pkgOrderList", "1") #apt_pkg.config.set("Debug::pkgPackageManager", "1") # get the upgrade currentRetry = 0 fprogress = self._view.getAcquireProgress() iprogress = self._view.getInstallProgress(self.cache) # retry the fetching in case of errors maxRetries = self.config.getint("Network","MaxRetries") if not self._partialUpgrade: self.quirks.run("StartUpgrade") # FIXME: take this into account for diskspace calculation self._maybe_create_apt_btrfs_snapshot() res = False while currentRetry < maxRetries: try: res = self.cache.commit(fprogress,iprogress) logging.debug("cache.commit() returned %s" % res) except SystemError as e: logging.error("SystemError from cache.commit(): %s" % e) # if its a ordering bug we can cleanly revert to # the previous release, no packages have been installed # yet (LP: #328655, #356781) if os.path.exists("/var/run/ubuntu-release-upgrader-apt-exception"): e = open("/var/run/ubuntu-release-upgrader-apt-exception").read() logging.error("found exception: '%s'" % e) # if its a ordering bug we can cleanly revert but we need to write # a marker for the parent process to know its this kind of error pre_configure_errors = [ "E:Internal Error, Could not perform immediate configuration", "E:Couldn't configure pre-depend "] for preconf_error in pre_configure_errors: if str(e).startswith(preconf_error): logging.debug("detected preconfigure error, restorting state") self._enableAptCronJob() # FIXME: strings are not good, but we are in string freeze # currently msg = _("Error during commit") msg += "\n'%s'\n" % str(e) msg += _("Restoring original system state") self._view.error(_("Could not install the upgrades"), msg) # abort() exits cleanly self.abort() # invoke the frontend now and show a error message msg = _("The upgrade has aborted. Your system " "could be in an unusable state. A recovery " "will run now (dpkg --configure -a).") if not self._partialUpgrade: if not run_apport(): msg += _("\n\nPlease report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ " "to the bug report.\n" "%s" % e) self._view.error(_("Could not install the upgrades"), msg) # installing the packages failed, can't be retried cmd = ["/usr/bin/dpkg","--configure","-a"] if os.environ.get("DEBIAN_FRONTEND") == "noninteractive": cmd.append("--force-confold") self._view.getTerminal().call(cmd) self._enableAptCronJob() return False except IOError as e: # fetch failed, will be retried logging.error("IOError in cache.commit(): '%s'. Retrying (currentTry: %s)" % (e,currentRetry)) currentRetry += 1 continue except OSError as e: logging.exception("cache.commit()") # deal gracefully with: # OSError: [Errno 12] Cannot allocate memory if e.errno == 12: self._enableAptCronJob() msg = _("Error during commit") msg += "\n'%s'\n" % str(e) msg += _("Restoring original system state") self._view.error(_("Could not install the upgrades"), msg) # abort() exits cleanly self.abort() # no exception, so all was fine, we are done self._enableAptCronJob() return True # maximum fetch-retries reached without a successful commit logging.error("giving up on fetching after maximum retries") self._view.error(_("Could not download the upgrades"), _("The upgrade has aborted. Please check your "\ "Internet connection or "\ "installation media and try again. "), "%s" % e) # abort here because we want our sources.list back self.abort() def doPostUpgrade(self): # reopen cache self.openCache() # run the quirks handler that does does like things adding # missing groups or similar work arounds, only do it on real # upgrades self.quirks.run("PostUpgrade") # check out what packages are cruft now # use self.{foreign,obsolete}_pkgs here and see what changed now_obsolete = self.cache._getObsoletesPkgs() now_foreign = self.cache._getForeignPkgs(self.origin, self.fromDist, self.toDist) logging.debug("Obsolete: %s" % " ".join(now_obsolete)) logging.debug("Foreign: %s" % " ".join(now_foreign)) # now sanity check - if a base meta package is in the obsolete list now, that means # that something went wrong (see #335154) badly with the network. this should never happen, but it did happen # at least once so we add extra paranoia here for pkg in self.config.getlist("Distro","BaseMetaPkgs"): if pkg in now_obsolete: logging.error("the BaseMetaPkg '%s' is in the obsolete list, something is wrong, ignoring the obsoletes" % pkg) now_obsolete = set() break # check if we actually want obsolete removal if not self.config.getWithDefault("Distro","RemoveObsoletes", True): logging.debug("Skipping obsolete Removal") return True # now get the meta-pkg specific obsoletes and purges for pkg in self.config.getlist("Distro","MetaPkgs"): if pkg in self.cache and self.cache[pkg].is_installed: self.forced_obsoletes.extend(self.config.getlist(pkg,"ForcedObsoletes")) # now add the obsolete kernels to the forced obsoletes self.forced_obsoletes.extend(self.cache.identifyObsoleteKernels()) logging.debug("forced_obsoletes: %s", self.forced_obsoletes) # mark packages that are now obsolete (and where not obsolete # before) to be deleted. make sure to not delete any foreign # (that is, not from ubuntu) packages if self.useNetwork: # we can only do the obsoletes calculation here if we use a # network. otherwise after rewriting the sources.list everything # that is not on the CD becomes obsolete (not-downloadable) remove_candidates = now_obsolete - self.obsolete_pkgs else: # initial remove candidates when no network is used should # be the demotions to make sure we don't leave potential # unsupported software remove_candidates = set([p.name for p in self.installed_demotions]) remove_candidates |= set(self.forced_obsoletes) # no go for the unused dependencies unused_dependencies = self.cache._getUnusedDependencies() logging.debug("Unused dependencies: %s" %" ".join(unused_dependencies)) remove_candidates |= set(unused_dependencies) # see if we actually have to do anything here if not self.config.getWithDefault("Distro","RemoveObsoletes", True): logging.debug("Skipping RemoveObsoletes as stated in the config") remove_candidates = set() logging.debug("remove_candidates: '%s'" % remove_candidates) logging.debug("Start checking for obsolete pkgs") progress = self._view.getOpCacheProgress() for (i, pkgname) in enumerate(remove_candidates): progress.update((i/float(len(remove_candidates)))*100.0) if pkgname not in self.foreign_pkgs: self._view.processEvents() if not self.cache.tryMarkObsoleteForRemoval(pkgname, remove_candidates, self.foreign_pkgs): logging.debug("'%s' scheduled for remove but not safe to remove, skipping", pkgname) logging.debug("Finish checking for obsolete pkgs") progress.done() # get changes changes = self.cache.get_changes() logging.debug("The following packages are marked for removal: %s" % " ".join([pkg.name for pkg in changes])) summary = _("Remove obsolete packages?") actions = [_("_Keep"), _("_Remove")] # FIXME Add an explanation about what obsolete packages are #explanation = _("") if (len(changes) > 0 and self._view.confirmChanges(summary, changes, [], 0, actions, False)): fprogress = self._view.getAcquireProgress() iprogress = self._view.getInstallProgress(self.cache) try: self.cache.commit(fprogress,iprogress) except (SystemError, IOError) as e: logging.error("cache.commit() in doPostUpgrade() failed: %s" % e) self._view.error(_("Error during commit"), _("A problem occurred during the clean-up. " "Please see the below message for more " "information. "), "%s" % e) # run stuff after cleanup self.quirks.run("PostCleanup") # run the post upgrade scripts that can do fixup like xorg.conf # fixes etc - only do on real upgrades if not self._partialUpgrade: self.runPostInstallScripts() return True def runPostInstallScripts(self): """ scripts that are run in any case after the distupgrade finished whether or not it was successful """ # now run the post-upgrade fixup scripts (if any) for script in self.config.getlist("Distro","PostInstallScripts"): if not os.path.exists(script): logging.warning("PostInstallScript: '%s' not found" % script) continue logging.debug("Running PostInstallScript: '%s'" % script) try: # work around kde tmpfile problem where it eats permissions check_and_fix_xbit(script) self._view.getTerminal().call([script], hidden=True) except Exception as e: logging.error("got error from PostInstallScript %s (%s)" % (script, e)) def abort(self): """ abort the upgrade, cleanup (as much as possible) """ logging.debug("abort called") if hasattr(self, "sources"): self.sources.restore_backup(self.sources_backup_ext) if hasattr(self, "aptcdrom"): self.aptcdrom.restore_backup(self.sources_backup_ext) # generate a new cache self._view.updateStatus(_("Restoring original system state")) self._view.abort() self.openCache() sys.exit(1) def _checkDep(self, depstr): " check if a given depends can be satisfied " for or_group in apt_pkg.parse_depends(depstr): logging.debug("checking: '%s' " % or_group) for dep in or_group: depname = dep[0] ver = dep[1] oper = dep[2] if depname not in self.cache: logging.error("_checkDep: '%s' not in cache" % depname) return False inst = self.cache[depname] instver = getattr(inst.installed, "version", None) if (instver != None and apt_pkg.check_dep(instver,oper,ver) == True): return True logging.error("depends '%s' is not satisfied" % depstr) return False def checkViewDepends(self): " check if depends are satisfied " logging.debug("checkViewDepends()") res = True # now check if anything from $foo-updates is required depends = self.config.getlist("View","Depends") depends.extend(self.config.getlist(self._view.__class__.__name__, "Depends")) for dep in depends: logging.debug("depends: '%s'", dep) res &= self._checkDep(dep) if not res: # FIXME: instead of error out, fetch and install it # here self._view.error(_("Required depends is not installed"), _("The required dependency '%s' is not " "installed. " % dep)) sys.exit(1) return res def _verifyBackports(self): # run update (but ignore errors in case the countrymirror # substitution goes wrong, real errors will be caught later # when the cache is searched for the backport packages) backportslist = self.config.getlist("PreRequists","Packages") i=0 noCache = apt_pkg.config.find("Acquire::http::No-Cache","false") maxRetries = self.config.getint("Network","MaxRetries") while i < maxRetries: self.doUpdate(showErrors=False) self.openCache() for pkgname in backportslist: if pkgname not in self.cache: logging.error("Can not find backport '%s'" % pkgname) raise NoBackportsFoundException(pkgname) if self._allBackportsAuthenticated(backportslist): break # FIXME: move this to some more generic place logging.debug("setting a cache control header to turn off caching temporarily") apt_pkg.config.set("Acquire::http::No-Cache","true") i += 1 if i == maxRetries: logging.error("pre-requists item is NOT trusted, giving up") return False apt_pkg.config.set("Acquire::http::No-Cache",noCache) return True def _allBackportsAuthenticated(self, backportslist): # check if the user overwrote the check if apt_pkg.config.find_b("APT::Get::AllowUnauthenticated",False) == True: logging.warning("skip authentication check because of APT::Get::AllowUnauthenticated==true") return True try: b = self.config.getboolean("Distro","AllowUnauthenticated") if b: return True except NoOptionError: pass for pkgname in backportslist: pkg = self.cache[pkgname] if not pkg.candidate: return False for cand in pkg.candidate.origins: if cand.trusted: break else: return False return True def isMirror(self, uri): """ check if uri is a known mirror """ # deal with username:password in a netloc raw_uri = uri.rstrip("/") scheme, netloc, path, query, fragment = urlsplit(raw_uri) if "@" in netloc: netloc = netloc.split("@")[1] # construct new mirror url without the username/pw uri = "%s://%s%s" % (scheme, netloc, path) for mirror in self.valid_mirrors: mirror = mirror.rstrip("/") if is_mirror(mirror, uri): return True # deal with mirrors like # deb http://localhost:9977/security.ubuntu.com/ubuntu intrepid-security main restricted # both apt-debtorrent and apt-cacher use this (LP: #365537) mirror_host_part = mirror.split("//")[1] if uri.endswith(mirror_host_part): logging.debug("found apt-cacher/apt-torrent style uri %s" % uri) return True return False def isThirdPartyMirror(self, uri): " check if uri is a whitelisted third-party mirror " uri = uri.rstrip("/") for mirror in self.valid_3p_mirrors: mirror = mirror.rstrip("/") if is_mirror(mirror, uri): return True return False def _getPreReqMirrorLines(self, dumb=False): " get sources.list snippet lines for the current mirror " lines = "" sources = SourcesList(matcherPath=".") for entry in sources.list: if entry.invalid or entry.disabled: continue if (entry.type == "deb" and entry.disabled == False and self.isMirror(entry.uri) and "main" in entry.comps and "%s-updates" % self.fromDist in entry.dist and not entry.uri.startswith("http://security.ubuntu.com") and not entry.uri.startswith("http://archive.ubuntu.com") ): new_line = "deb %s %s-updates main\n" % (entry.uri, self.fromDist) if not new_line in lines: lines += new_line # FIXME: do we really need "dumb" mode? #if (dumb and entry.type == "deb" and # "main" in entry.comps): # lines += "deb %s %s-proposed main\n" % (entry.uri, self.fromDist) return lines def _addPreRequistsSourcesList(self, template, out, dumb=False): " add prerequists based on template into the path outfile " # go over the sources.list and try to find a valid mirror # that we can use to add the backports dir logging.debug("writing prerequists sources.list at: '%s' " % out) outfile = open(out, "w") mirrorlines = self._getPreReqMirrorLines(dumb) for line in open(template): template = Template(line) outline = template.safe_substitute(mirror=mirrorlines) outfile.write(outline) logging.debug("adding '%s' prerequists" % outline) outfile.close() return True def getRequiredBackports(self): " download the backports specified in DistUpgrade.cfg " logging.debug("getRequiredBackports()") res = True backportsdir = os.path.join(os.getcwd(),"backports") if not os.path.exists(backportsdir): os.mkdir(backportsdir) backportslist = self.config.getlist("PreRequists","Packages") # FIXME: this needs to be ported # if we have them on the CD we are fine if self.aptcdrom and not self.useNetwork: logging.debug("Searching for pre-requists on CDROM") p = os.path.join(self.aptcdrom.cdrompath, "dists/stable/main/dist-upgrader/binary-%s/" % apt_pkg.config.find("APT::Architecture")) found_pkgs = set() for deb in glob.glob(p+"*_*.deb"): logging.debug("found pre-req '%s' to '%s'" % (deb, backportsdir)) found_pkgs.add(os.path.basename(deb).split("_")[0]) # now check if we got all backports on the CD if not set(backportslist).issubset(found_pkgs): logging.error("Expected backports: '%s' but got '%s'" % (set(backportslist), found_pkgs)) return False # now install them self.cache.release_lock() p = subprocess.Popen( ["/usr/bin/dpkg", "-i", ] + glob.glob(p+"*_*.deb"), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True) res = None while res is None: res = p.poll() self._view.pulseProgress() time.sleep(0.02) self._view.pulseProgress(finished=True) self.cache.get_lock() logging.info("installing backport debs exit code '%s'" % res) logging.debug("dpkg output:\n%s" % p.communicate()[0]) if res != 0: return False # and re-start itself when it done return self.setupRequiredBackports() # we support PreRequists/SourcesList-$arch sections here too # # logic for mirror finding works list this: # - use the mirror template from the config, then: [done] # # - try to find known mirror (isMirror) and prepend it [done] # - archive.ubuntu.com is always a fallback at the end [done] # # see if we find backports with that # - if not, try guessing based on URI, Trust and Dist [done] # in existing sources.list (internal mirror with no # outside connection maybe) # # make sure to remove file on cancel # FIXME: use the DistUpgradeFetcherCore logic # in mirror_from_sources_list() here # (and factor that code out into a helper) conf_option = "SourcesList" if self.config.has_option("PreRequists",conf_option+"-%s" % self.arch): conf_option = conf_option + "-%s" % self.arch prereq_template = self.config.get("PreRequists",conf_option) if not os.path.exists(prereq_template): logging.error("sourceslist not found '%s'" % prereq_template) return False outpath = os.path.join(apt_pkg.config.find_dir("Dir::Etc::sourceparts"), prereq_template) outfile = os.path.join(apt_pkg.config.find_dir("Dir::Etc::sourceparts"), prereq_template) self._addPreRequistsSourcesList(prereq_template, outfile) try: self._verifyBackports() except NoBackportsFoundException as e: self._addPreRequistsSourcesList(prereq_template, outfile, dumb=True) try: self._verifyBackports() except NoBackportsFoundException as e: logging.warning("no backport for '%s' found" % e) return False # FIXME: sanity check the origin (just for safety) for pkgname in backportslist: pkg = self.cache[pkgname] # look for the right version (backport) ver = self.cache._depcache.get_candidate_ver(pkg._pkg) if not ver: logging.error("No candidate for '%s'" % pkgname) os.unlink(outpath) return False if ver.file_list == None: logging.error("No ver.file_list for '%s'" % pkgname) os.unlink(outpath) return False logging.debug("marking '%s' for install" % pkgname) # mark install pkg.mark_install(auto_inst=False, auto_fix=False) # now get it res = False try: res = self.cache.commit(self._view.getAcquireProgress(), self._view.getInstallProgress(self.cache)) except IOError as e: logging.error("fetch_archives returned '%s'" % e) res = False except SystemError as e: logging.error("install_archives returned '%s'" % e) res = False if res == False: logging.warning("_fetch_archives for backports returned False") # all backports done, remove the pre-requirests.list file again try: os.unlink(outfile) except Exception as e: logging.error("failed to unlink pre-requists file: '%s'" % e) return self.setupRequiredBackports() # used by both cdrom/http fetcher def setupRequiredBackports(self): # ensure that the new release upgrader uses the latest python-apt # from the backport path os.environ["PYTHONPATH"] = "/usr/lib/release-upgrader-python-apt" # copy log so that it gets not overwritten logging.shutdown() shutil.copy("/var/log/dist-upgrade/main.log", "/var/log/dist-upgrade/main_pre_req.log") # now exec self again args = sys.argv + ["--have-prerequists"] if self.useNetwork: args.append("--with-network") else: args.append("--without-network") logging.info("restarting upgrader") #print("restarting upgrader to make use of the backports") # work around kde being clever and removing the x bit check_and_fix_xbit(sys.argv[0]) os.execve(sys.argv[0],args, os.environ) # this is the core def fullUpgrade(self): # sanity check (check for ubuntu-desktop, brokenCache etc) self._view.updateStatus(_("Checking package manager")) self._view.setStep(STEP_PREPARE) if not self.prepare(): logging.error("self.prepared() failed") if os.path.exists("/usr/bin/apport-bug"): self._view.error(_("Preparing the upgrade failed"), _("Preparing the system for the upgrade " "failed so a bug reporting process is " "being started.")) subprocess.Popen(["apport-bug", "ubuntu-release-upgrader-core"]) else: self._view.error(_("Preparing the upgrade failed"), _("Preparing the system for the upgrade " "failed. To report a bug install apport " "and then execute 'apport-bug " "ubuntu-release-upgrader'.")) logging.error("Missing apport-bug, bug report not " "autocreated") sys.exit(1) # mvo: commented out for now, see #54234, this needs to be # refactored to use a arch=any tarball if (self.config.has_section("PreRequists") and self.options and self.options.havePrerequists == False): logging.debug("need backports") # get backported packages (if needed) if not self.getRequiredBackports(): if os.path.exists("/usr/bin/apport-bug"): self._view.error(_("Getting upgrade prerequisites failed"), _("The system was unable to get the " "prerequisites for the upgrade. " "The upgrade will abort now and restore " "the original system state.\n" "\n" "Additionally, a bug reporting process is " "being started.")) subprocess.Popen(["apport-bug", "ubuntu-release-upgrader-core"]) else: self._view.error(_("Getting upgrade prerequisites failed"), _("The system was unable to get the " "prerequisites for the upgrade. " "The upgrade will abort now and restore " "the original system state.\n" "\n" "To report a bug install apport and " "then execute 'apport-bug " "ubuntu-release-upgrader'.")) logging.error("Missing apport-bug, bug report not " "autocreated") self.abort() # run a "apt-get update" now, its ok to ignore errors, # because # a) we disable any third party sources later # b) we check if we have valid ubuntu sources later # after we rewrite the sources.list and do a # apt-get update there too # because the (unmodified) sources.list of the user # may contain bad/unreachable entries we run only # with a single retry self.doUpdate(showErrors=False, forceRetries=1) self.openCache() # do pre-upgrade stuff (calc list of obsolete pkgs etc) if not self.doPostInitialUpdate(): self.abort() # update sources.list self._view.setStep(STEP_MODIFY_SOURCES) self._view.updateStatus(_("Updating repository information")) if not self.updateSourcesList(): self.abort() # add cdrom (if we have one) if (self.aptcdrom and not self.aptcdrom.add(self.sources_backup_ext)): self._view.error(_("Failed to add the cdrom"), _("Sorry, adding the cdrom was not successful.")) sys.exit(1) # then update the package index files if not self.doUpdate(): self.abort() # then open the cache (again) self._view.updateStatus(_("Checking package manager")) # if something fails here (e.g. locking the cache) we need to # restore the system state (LP: #1052605) self.openCache(restore_sources_list_on_fail=True) # re-check server mode because we got new packages (it may happen # that the system had no sources.list entries and therefore no # desktop file information) self.serverMode = self.cache.need_server_mode() # do it here as we need to know if we are in server or client mode self.quirks.ensure_recommends_are_installed_on_desktops() # now check if we still have some key packages available/downloadable # after the update - if not something went seriously wrong # (this happend e.g. during the intrepid->jaunty upgrade for some # users when de.archive.ubuntu.com was overloaded) for pkg in self.config.getlist("Distro","BaseMetaPkgs"): if (pkg not in self.cache or not self.cache.anyVersionDownloadable(self.cache[pkg])): # FIXME: we could offer to add default source entries here, # but we need to be careful to not duplicate them # (i.e. the error here could be something else than # missing sources entries but network errors etc) logging.error("No '%s' available/downloadable after sources.list rewrite+update" % pkg) self._view.error(_("Invalid package information"), _("After updating your package " "information, the essential package '%s' " "could not be located. This may be " "because you have no official mirrors " "listed in your software sources, or " "because of excessive load on the mirror " "you are using. See /etc/apt/sources.list " "for the current list of configured " "software sources." "\n" "In the case of an overloaded mirror, you " "may want to try the upgrade again later.") % pkg) if os.path.exists("/usr/bin/apport-bug"): subprocess.Popen(["apport-bug", "ubuntu-release-upgrader-core"]) else: logging.error("Missing apport-bug, bug report not " "autocreated") self.abort() # calc the dist-upgrade and see if the removals are ok/expected # do the dist-upgrade self._view.updateStatus(_("Calculating the changes")) if not self.askDistUpgrade(): self.abort() # fetch the stuff self._view.setStep(STEP_FETCH) self._view.updateStatus(_("Fetching")) if not self.doDistUpgradeFetching(): self.abort() # now do the upgrade self._view.setStep(STEP_INSTALL) self._view.updateStatus(_("Upgrading")) if not self.doDistUpgrade(): # run the post install scripts (for stuff like UUID conversion) self.runPostInstallScripts() # don't abort here, because it would restore the sources.list self._view.information(_("Upgrade complete"), _("The upgrade has completed but there " "were errors during the upgrade " "process.")) sys.exit(1) # do post-upgrade stuff self._view.setStep(STEP_CLEANUP) self._view.updateStatus(_("Searching for obsolete software")) self.doPostUpgrade() # comment out cdrom source if self.aptcdrom: self.aptcdrom.comment_out_cdrom_entry() # remove upgrade-available notice if os.path.exists("/var/lib/ubuntu-release-upgrader/release-upgrade-available"): os.unlink("/var/lib/ubuntu-release-upgrader/release-upgrade-available") # done, ask for reboot self._view.setStep(STEP_REBOOT) self._view.updateStatus(_("System upgrade is complete.")) # FIXME should we look into /var/run/reboot-required here? if (not inside_chroot() and self._view.confirmRestart()): subprocess.Popen("/sbin/reboot") sys.exit(0) return True def run(self): self._view.processEvents() return self.fullUpgrade() def doPartialUpgrade(self): " partial upgrade mode, useful for repairing " self._view.setStep(STEP_PREPARE) self._view.hideStep(STEP_MODIFY_SOURCES) self._view.hideStep(STEP_REBOOT) self._partialUpgrade = True self.prepare() if not self.doPostInitialUpdate(): return False if not self.askDistUpgrade(): return False self._view.setStep(STEP_FETCH) self._view.updateStatus(_("Fetching")) if not self.doDistUpgradeFetching(): return False self._view.setStep(STEP_INSTALL) self._view.updateStatus(_("Upgrading")) if not self.doDistUpgrade(): self._view.information(_("Upgrade complete"), _("The upgrade has completed but there " "were errors during the upgrade " "process.")) return False self._view.setStep(STEP_CLEANUP) if not self.doPostUpgrade(): self._view.information(_("Upgrade complete"), _("The upgrade has completed but there " "were errors during the upgrade " "process.")) return False if os.path.exists(REBOOT_REQUIRED_FILE): # we can not talk to session management here, we run as root if self._view.confirmRestart(): subprocess.Popen("/sbin/reboot") else: self._view.information(_("Upgrade complete"), _("The partial upgrade was completed.")) return True if __name__ == "__main__": from .DistUpgradeViewText import DistUpgradeViewText logging.basicConfig(level=logging.DEBUG) v = DistUpgradeViewText() dc = DistUpgradeController(v) #dc.openCache() dc._disableAptCronJob() dc._enableAptCronJob() #dc._addRelatimeToFstab() #dc.prepare() #dc.askDistUpgrade() #dc._checkFreeSpace() #dc._rewriteFstab() #dc._checkAdminGroup() #dc._rewriteAptPeriodic(2) ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeGettext.py0000644000000000000000000000600712431225715021743 0ustar # DistUpgradeGettext.py - safe wrapper around gettext # # Copyright (c) 2008 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA import logging import gettext as mygettext import sys if sys.version >= '3': _gettext_method = "gettext" _ngettext_method = "ngettext" else: _gettext_method = "ugettext" _ngettext_method = "ungettext" def _verify(message, translated): """ helper that verifies that the message and the translated message have the same number (and type) of % args """ arguments_in_message = message.count("%") - message.count("\%") arguments_in_translation = translated.count("%") - translated.count("\%") return arguments_in_message == arguments_in_translation _translation_singleton = None def _translation(): """Return a suitable gettext.*Translations instance.""" global _translation_singleton if _translation_singleton is None: domain = mygettext.textdomain() _translation_singleton = mygettext.translation( domain, mygettext.bindtextdomain(domain), fallback=True) return _translation_singleton def unicode_gettext(translation, message): return getattr(translation, _gettext_method)(message) def unicode_ngettext(translation, singular, plural, n): return getattr(translation, _ngettext_method)(singular, plural, n) def gettext(message): """ version of gettext that logs errors but does not crash on incorrect number of arguments """ if message == "": return "" translated_msg = unicode_gettext(_translation(), message) if not _verify(message, translated_msg): logging.error("incorrect translation for message '%s' to '%s' (wrong number of arguments)" % (message, translated_msg)) return message return translated_msg def ngettext(msgid1, msgid2, n): """ version of ngettext that logs errors but does not crash on incorrect number of arguments """ translated_msg = unicode_ngettext(_translation(), msgid1, msgid2, n) if not _verify(msgid1, translated_msg): logging.error("incorrect translation for ngettext message '%s' plural: '%s' to '%s' (wrong number of arguments)" % (msgid1, msgid2, translated_msg)) # dumb fallback to not crash if n == 1: return msgid1 return msgid2 return translated_msg ubuntu-release-upgrader-0.220.10/DistUpgrade/prerequists-sources.dapper.list0000644000000000000000000000032012431225715024017 0ustar # sources.list fragment for pre-requists (mirror from sources.list + fallback) # this is safe to remove after the upgrade ${mirror} deb http://archive.ubuntu.com/ubuntu dapper-backports main/debian-installer ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeFetcherKDE.py0000644000000000000000000002021612431225715022221 0ustar # DistUpgradeFetcherKDE.py # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- # # Copyright (c) 2008 Canonical Ltd # # Author: Jonathan Riddell # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . from __future__ import absolute_import from PyKDE4.kdecore import ki18n, KAboutData, KCmdLineOptions, KCmdLineArgs from PyKDE4.kdeui import KIcon, KMessageBox, KApplication, KStandardGuiItem from PyQt4.QtCore import QDir, QTimer from PyQt4.QtGui import QDialog, QDialogButtonBox from PyQt4 import uic import apt_pkg import sys from .utils import inhibit_sleep, allow_sleep from .DistUpgradeFetcherCore import DistUpgradeFetcherCore from gettext import gettext as _ try: from urllib.request import urlopen from urllib.error import HTTPError except ImportError: from urllib2 import urlopen, HTTPError import os from .MetaRelease import MetaReleaseCore import apt class DistUpgradeFetcherKDE(DistUpgradeFetcherCore): """A small application run by Adept to download, verify and run the dist-upgrade tool""" def __init__(self, useDevelopmentRelease=False, useProposed=False): self.useDevelopmentRelease = useDevelopmentRelease self.useProposed = useProposed metaRelease = MetaReleaseCore(useDevelopmentRelease, useProposed) metaRelease.downloaded.wait() if metaRelease.new_dist is None and __name__ == "__main__": sys.exit() elif metaRelease.new_dist is None: return self.progressDialogue = QDialog() if os.path.exists("fetch-progress.ui"): self.APPDIR = QDir.currentPath() else: self.APPDIR = "/usr/share/ubuntu-release-upgrader" uic.loadUi(self.APPDIR + "/fetch-progress.ui", self.progressDialogue) self.progressDialogue.setWindowIcon(KIcon("system-software-update")) self.progressDialogue.setWindowTitle(_("Upgrade")) self.progress = KDEAcquireProgressAdapter( self.progressDialogue.installationProgress, self.progressDialogue.installingLabel, None) DistUpgradeFetcherCore.__init__(self, metaRelease.new_dist, self.progress) def error(self, summary, message): KMessageBox.sorry(None, message, summary) def runDistUpgrader(self): inhibit_sleep() # now run it with sudo if os.getuid() != 0: os.execv("/usr/bin/kdesudo", ["kdesudo", self.script + " --frontend=DistUpgradeViewKDE"]) else: os.execv(self.script, [self.script] + ["--frontend=DistUpgradeViewKDE"] + self.run_options) # we shouldn't come to this point, but if we do, undo our # inhibit sleep allow_sleep() def showReleaseNotes(self): # FIXME: care about i18n! (append -$lang or something) self.dialogue = QDialog() uic.loadUi(self.APPDIR + "/dialog_release_notes.ui", self.dialogue) upgradeButton = self.dialogue.buttonBox.button(QDialogButtonBox.Ok) upgradeButton.setText(_("Upgrade")) upgradeButton.setIcon(KIcon("dialog-ok")) cancelButton = self.dialogue.buttonBox.button(QDialogButtonBox.Cancel) cancelButton.setIcon(KIcon("dialog-cancel")) self.dialogue.setWindowTitle(_("Release Notes")) self.dialogue.show() if self.new_dist.releaseNotesURI is not None: uri = self._expandUri(self.new_dist.releaseNotesURI) # download/display the release notes # FIXME: add some progress reporting here result = None try: release_notes = urlopen(uri) notes = release_notes.read().decode("UTF-8", "replace") self.dialogue.scrolled_notes.setText(notes) result = self.dialogue.exec_() except HTTPError: primary = "%s" % \ _("Could not find the release notes") secondary = _("The server may be overloaded. ") KMessageBox.sorry(None, primary + "
" + secondary, "") except IOError: primary = "%s" % \ _("Could not download the release notes") secondary = _("Please check your internet connection.") KMessageBox.sorry(None, primary + "
" + secondary, "") # user clicked cancel if result == QDialog.Accepted: self.progressDialogue.show() return True if __name__ == "__main__": KApplication.kApplication().exit(1) if self.useDevelopmentRelease or self.useProposed: #FIXME why does KApplication.kApplication().exit() crash but # this doesn't? sys.exit() return False class KDEAcquireProgressAdapter(apt.progress.base.AcquireProgress): def __init__(self, progress, label, parent): self.progress = progress self.label = label self.parent = parent def start(self): self.label.setText(_("Downloading additional package files...")) self.progress.setValue(0) def stop(self): pass def pulse(self, owner): apt.progress.base.AcquireProgress.pulse(self, owner) self.progress.setValue((self.current_bytes + self.current_items) / float(self.total_bytes + self.total_items)) current_item = self.current_items + 1 if current_item > self.total_items: current_item = self.total_items label_text = _("Downloading additional package files...") if self.current_cps > 0: label_text += _("File %s of %s at %sB/s") % ( self.current_items, self.total_items, apt_pkg.size_to_str(self.current_cps)) else: label_text += _("File %s of %s") % ( self.current_items, self.total_items) self.label.setText(label_text) KApplication.kApplication().processEvents() return True def mediaChange(self, medium, drive): msg = _("Please insert '%s' into the drive '%s'") % (medium, drive) #change = QMessageBox.question(None, _("Media Change"), msg, # QMessageBox.Ok, QMessageBox.Cancel) change = KMessageBox.questionYesNo(None, _("Media Change"), _("Media Change") + "
" + msg, KStandardGuiItem.ok(), KStandardGuiItem.cancel()) if change == KMessageBox.Yes: return True return False if __name__ == "__main__": appName = "dist-upgrade-fetcher" catalog = "" programName = ki18n("Dist Upgrade Fetcher") version = "0.3.4" description = ki18n("Dist Upgrade Fetcher") license = KAboutData.License_GPL copyright = ki18n("(c) 2008 Canonical Ltd") text = ki18n("none") homePage = "https://launchpad.net/ubuntu-release-upgrader" bugEmail = "" aboutData = KAboutData(appName, catalog, programName, version, description, license, copyright, text, homePage, bugEmail) aboutData.addAuthor(ki18n("Jonathan Riddell"), ki18n("Author")) options = KCmdLineOptions() KCmdLineArgs.init(sys.argv, aboutData) KCmdLineArgs.addCmdLineOptions(options) app = KApplication() fetcher = DistUpgradeFetcherKDE() QTimer.singleShot(10, fetcher.run) app.exec_() ubuntu-release-upgrader-0.220.10/DistUpgrade/EOLReleaseAnnouncement.html0000644000000000000000000000565412602566762023013 0ustar Ubuntu 14.04 'Trusty Tahr' is no longer supported

Ubuntu 14.04 'Trusty Tahr' is no longer supported

You are about to upgrade to a version of Ubuntu that is no longer supported.

This release of Ubuntu is no longer supported by Canonical. The support timeframe is between 18 month and 5 years after the initial release. You will not receive security updates or critical bugfixes. See http://www.ubuntu.com/releaseendoflife for details.

It is still possible to upgrade this version and eventually you will be able to upgrade to a supported release of Ubuntu.

Alternatively you may want to consider to reinstall the machine to the latest version, for more information on this, visit: http://www.ubuntu.com/desktop/get-ubuntu

For pre-installed system you may want to contact the manufacturer for instructions.

Feedback and Helping

If you would like to help shape Ubuntu, take a look at the list of ways you can participate at

  http://www.ubuntu.com/community/participate/

Your comments, bug reports, patches and suggestions will help ensure that our next release is the best release of Ubuntu ever. If you feel that you have found a bug please read:

  http://help.ubuntu.com/community/ReportingBugs

Then report bugs using apport in Ubuntu. For example:

  ubuntu-bug linux

will open a bug report in Launchpad regarding the linux package.

If you have a question, or if you think you may have found a bug but aren't sure, first try asking on the #ubuntu or #ubuntu-bugs IRC channels on Freenode, on the Ubuntu Users mailing list, or on the Ubuntu forums:

  http://help.ubuntu.com/community/InternetRelayChat
  http://lists.ubuntu.com/mailman/listinfo/ubuntu-users
  http://www.ubuntuforums.org/

More Information

You can find out more about Ubuntu on our website, IRC channel and wiki. If you're new to Ubuntu, please visit:

  http://www.ubuntu.com/

To sign up for future Ubuntu announcements, please subscribe to Ubuntu's very low volume announcement list at:

  http://lists.ubuntu.com/mailman/listinfo/ubuntu-announce
ubuntu-release-upgrader-0.220.10/DistUpgrade/NvidiaDetector0000777000000000000000000000000012431225715031042 2/usr/lib/python3/dist-packages/NvidiaDetectorustar ubuntu-release-upgrader-0.220.10/DistUpgrade/demoted.cfg.lucid0000777000000000000000000000000012431225715025560 2../utils/demoted.cfg.lucidustar ubuntu-release-upgrader-0.220.10/DistUpgrade/dialog_changes.ui0000644000000000000000000001266112431225715021102 0ustar dialog_changes 0 0 588 417 0 0 Package Changes true &Cancel 0 0 image0 false Qt::Vertical QSizePolicy::Expanding 20 80 Qt::RichText Qt::AlignVCenter true 0 0 Qt::RichText Qt::AlignVCenter true Details >>> Qt::Horizontal QSizePolicy::Expanding 341 21 _Start Upgrade Qt::Horizontal QSizePolicy::Expanding 161 20 false 1 button_confirm_changes clicked() dialog_changes accept() 20 20 20 20 button_cancel_changes clicked() dialog_changes reject() 20 20 20 20 ubuntu-release-upgrader-0.220.10/DistUpgrade/dialog_error.ui0000644000000000000000000000556412431225715020627 0ustar dialog_error 0 0 427 343 Error true Qt::Vertical QSizePolicy::Expanding 21 161 &Close 0 0 image0 false true Qt::Horizontal QSizePolicy::Expanding 130 21 _Report Bug button_close clicked() dialog_error close() 20 20 20 20 ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeFetcherSelf.py0000644000000000000000000000235212431225715022510 0ustar from __future__ import absolute_import import logging import shutil from .DistUpgradeFetcherCore import DistUpgradeFetcherCore class DistUpgradeFetcherSelf(DistUpgradeFetcherCore): def __init__(self, new_dist, progress, options, view): DistUpgradeFetcherCore.__init__(self,new_dist,progress) self.view = view # user chose to use the network, otherwise it would not be # possible to download self self.run_options += ["--with-network"] # make sure to run self with proper options if options.cdromPath is not None: self.run_options += ["--cdrom=%s" % options.cdromPath] if options.frontend is not None: self.run_options += ["--frontend=%s" % options.frontend] def error(self, summary, message): return self.view.error(summary, message) def runDistUpgrader(self): " overwrite to ensure that the log is copied " # copy log so it isn't overwritten logging.info("runDistUpgrader() called, re-exec self") logging.shutdown() shutil.copy("/var/log/dist-upgrade/main.log", "/var/log/dist-upgrade/main_update_self.log") # re-exec self DistUpgradeFetcherCore.runDistUpgrader(self) ubuntu-release-upgrader-0.220.10/DistUpgrade/GtkProgress.py0000644000000000000000000000775412431225715020447 0ustar # GtkProgress.py # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- # # Copyright (c) 2004,2005 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function from gi.repository import Gtk, Gdk import apt import os from gettext import gettext as _ from .utils import humanize_size from .SimpleGtk3builderApp import SimpleGtkbuilderApp class GtkAcquireProgress(apt.progress.base.AcquireProgress): def __init__(self, parent, datadir, summary="", descr=""): uifile = os.path.join(datadir, "gtkbuilder", "AcquireProgress.ui") self.widgets = SimpleGtkbuilderApp(uifile, "ubuntu-release-upgrader") # if this is set to false the download will cancel self._continue = True # init vars here # FIXME: find a more elegant way, this sucks self.summary = self.widgets.label_fetch_summary self.status = self.widgets.label_fetch_status # we need to connect the signal manual here, it won't work # from the main window auto-connect self.widgets.button_fetch_cancel.connect( "clicked", self.on_button_fetch_cancel_clicked) self.progress = self.widgets.progressbar_fetch self.window_fetch = self.widgets.window_fetch self.window_fetch.set_transient_for(parent) self.window_fetch.realize() self.window_fetch.get_window().set_functions(Gdk.WMFunction.MOVE) # set summary if summary != "": self.summary.set_markup("%s \n\n%s" % (summary, descr)) def start(self): self.progress.set_fraction(0) self.window_fetch.show() def stop(self): self.window_fetch.hide() def on_button_fetch_cancel_clicked(self, widget): self._continue = False def pulse(self, owner): apt.progress.base.AcquireProgress.pulse(self, owner) current_item = self.current_items + 1 if current_item > self.total_items: current_item = self.total_items if self.current_cps > 0: status_text = (_("Downloading file %(current)li of %(total)li " "with %(speed)s/s") % { "current": current_item, "total": self.total_items, "speed": humanize_size(self.current_cps)}) else: status_text = (_("Downloading file %(current)li of %(total)li") % {"current": current_item, "total": self.total_items}) self.progress.set_fraction( (self.current_bytes + self.current_items) / float(self.total_bytes + self.total_items)) self.status.set_markup("%s" % status_text) # TRANSLATORS: show the remaining time in a progress bar: #if self.current_cps > 0: # eta = ((self.total_bytes + self.current_bytes) / # float(self.current_cps)) #else: # eta = 0.0 #self.progress.set_text(_("About %s left" % (apt_pkg.TimeToStr(eta)))) # FIXME: show remaining time self.progress.set_text("") while Gtk.events_pending(): Gtk.main_iteration() return self._continue ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeFetcher.py0000644000000000000000000001470412431225715021702 0ustar # DistUpgradeFetcher.py # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- # # Copyright (c) 2006 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function from gi.repository import Gtk, Gdk from .ReleaseNotesViewer import ReleaseNotesViewer from .utils import error, inhibit_sleep, allow_sleep from .DistUpgradeFetcherCore import DistUpgradeFetcherCore from .SimpleGtk3builderApp import SimpleGtkbuilderApp from gettext import gettext as _ try: from urllib.request import urlopen from urllib.error import HTTPError except ImportError: from urllib2 import urlopen, HTTPError import os import socket class DistUpgradeFetcherGtk(DistUpgradeFetcherCore): def __init__(self, new_dist, progress, parent, datadir): DistUpgradeFetcherCore.__init__(self, new_dist, progress) uifile = os.path.join(datadir, "gtkbuilder", "ReleaseNotes.ui") self.widgets = SimpleGtkbuilderApp(uifile, "ubuntu-release-upgrader") self.window_main = parent def error(self, summary, message): return error(self.window_main, summary, message) def runDistUpgrader(self): inhibit_sleep() # now run it as root if os.getuid() != 0: os.execv("/usr/bin/gksu", ["gksu", "--desktop", "/usr/share/applications/update-manager.desktop", "--", self.script] + self.run_options) else: os.execv(self.script, [self.script] + self.run_options) # we shouldn't come to this point, but if we do, undo our # inhibit sleep allow_sleep() def showReleaseNotes(self): # first try showing the webkit version, this may fail (return None # because e.g. there is no webkit installed) res = self._try_show_release_notes_webkit() if res is not None: return res else: # fallback to text return self._try_show_release_notes_textview() def _try_show_release_notes_webkit(self): if self.new_dist.releaseNotesHtmlUri is not None: try: from .ReleaseNotesViewerWebkit import ReleaseNotesViewerWebkit webkit_release_notes = ReleaseNotesViewerWebkit( self.new_dist.releaseNotesHtmlUri) webkit_release_notes.show() self.widgets.scrolled_notes.add(webkit_release_notes) res = self.widgets.dialog_release_notes.run() self.widgets.dialog_release_notes.hide() if res == Gtk.ResponseType.OK: return True return False except ImportError: pass return None def _try_show_release_notes_textview(self): # FIXME: care about i18n! (append -$lang or something) if self.new_dist.releaseNotesURI is not None: uri = self._expandUri(self.new_dist.releaseNotesURI) if self.window_main: self.window_main.set_sensitive(False) self.window_main.get_window().set_cursor( Gdk.Cursor.new(Gdk.CursorType.WATCH)) while Gtk.events_pending(): Gtk.main_iteration() # download/display the release notes # FIXME: add some progress reporting here res = Gtk.ResponseType.CANCEL timeout = socket.getdefaulttimeout() try: socket.setdefaulttimeout(5) release_notes = urlopen(uri) notes = release_notes.read().decode("UTF-8", "replace") textview_release_notes = ReleaseNotesViewer(notes) textview_release_notes.show() self.widgets.scrolled_notes.add(textview_release_notes) release_widget = self.widgets.dialog_release_notes release_widget.set_transient_for(self.window_main) res = self.widgets.dialog_release_notes.run() self.widgets.dialog_release_notes.hide() except HTTPError: primary = "%s" % \ _("Could not find the release notes") secondary = _("The server may be overloaded. ") dialog = Gtk.MessageDialog(self.window_main, Gtk.DialogFlags.MODAL, Gtk.MessageType.ERROR, Gtk.ButtonsType.CLOSE, "") dialog.set_title("") dialog.set_markup(primary) dialog.format_secondary_text(secondary) dialog.run() dialog.destroy() except IOError: primary = "%s" % \ _("Could not download the release notes") secondary = _("Please check your internet connection.") dialog = Gtk.MessageDialog(self.window_main, Gtk.DialogFlags.MODAL, Gtk.MessageType.ERROR, Gtk.ButtonsType.CLOSE, "") dialog.set_title("") dialog.set_markup(primary) dialog.format_secondary_text(secondary) dialog.run() dialog.destroy() socket.setdefaulttimeout(timeout) if self.window_main: self.window_main.set_sensitive(True) self.window_main.get_window().set_cursor(None) # user clicked cancel if res == Gtk.ResponseType.OK: return True return False ubuntu-release-upgrader-0.220.10/DistUpgrade/etc-default-apport0000644000000000000000000000036312431225715021233 0ustar # set this to 0 to disable apport, or to 1 to enable it # you can temporarily override this with # sudo force_start=1 /etc/init.d/apport start enabled=1 # set maximum core dump file size (default: 209715200 bytes == 200 MB) maxsize=209715200 ubuntu-release-upgrader-0.220.10/DistUpgrade/patches/0000755000000000000000000000000012431225715017235 5ustar ubuntu-release-upgrader-0.220.10/DistUpgrade/patches/README0000644000000000000000000000124612431225715020120 0ustar This dir can be used to drop *ed* script as patches (we can not use patch as its not part of the default install) to fixup stuff that is problematic during the upgrade (like doc-base and /usr/sbin/install-docs). The files have the format _path_to_binary.orig_md5sum.result_md5sum The upgrader will check for binaries with the matching md5sum and apply the patches if the md5sum is correct (first --dry-run to ensure it applies cleanly). Caveats: - it does *not* do binary patching - the md5sum calculation in python is not efficient, so do *not* patch huge files - the ed implementation is in python and reads the full file into memory so only use it for smallish files ubuntu-release-upgrader-0.220.10/DistUpgrade/MetaRelease.py0000777000000000000000000000000012431225715034273 2/usr/lib/python3/dist-packages/UpdateManager/Core/MetaRelease.pyustar ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeViewNonInteractive.py0000644000000000000000000003173312431225715024106 0ustar # DistUpgradeView.py # # Copyright (c) 2004,2005 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function import apt import apt_pkg import logging import time import sys import os import pty import select import subprocess import copy import apt.progress try: from configparser import NoSectionError, NoOptionError except ImportError: from ConfigParser import NoSectionError, NoOptionError from subprocess import PIPE, Popen from .DistUpgradeView import DistUpgradeView, InstallProgress, AcquireProgress from .DistUpgradeConfigParser import DistUpgradeConfig class NonInteractiveAcquireProgress(AcquireProgress): def update_status(self, uri, descr, shortDescr, status): AcquireProgress.update_status(self, uri, descr, shortDescr, status) #logging.debug("Fetch: updateStatus %s %s" % (uri, status)) if status == apt_pkg.STAT_DONE: print("fetched %s (%.2f/100) at %sb/s" % ( uri, self.percent, apt_pkg.size_to_str(int(self.current_cps)))) if sys.stdout.isatty(): sys.stdout.flush() class NonInteractiveInstallProgress(InstallProgress): """ Non-interactive version of the install progress class This ensures that conffile prompts are handled and that hanging scripts are killed after a (long) timeout via ctrl-c """ def __init__(self, logdir): InstallProgress.__init__(self) logging.debug("setting up environ for non-interactive use") if "DEBIAN_FRONTEND" not in os.environ: os.environ["DEBIAN_FRONTEND"] = "noninteractive" os.environ["APT_LISTCHANGES_FRONTEND"] = "none" os.environ["RELEASE_UPRADER_NO_APPORT"] = "1" self.config = DistUpgradeConfig(".") self.logdir = logdir self.install_run_number = 0 try: if self.config.getWithDefault("NonInteractive","ForceOverwrite", False): apt_pkg.config.set("DPkg::Options::","--force-overwrite") except (NoSectionError, NoOptionError): pass # more debug #apt_pkg.config.set("Debug::pkgOrderList","true") #apt_pkg.config.set("Debug::pkgDPkgPM","true") # default to 2400 sec timeout self.timeout = 2400 try: self.timeout = self.config.getint("NonInteractive","TerminalTimeout") except Exception: pass def error(self, pkg, errormsg): logging.error("got a error from dpkg for pkg: '%s': '%s'" % (pkg, errormsg)) # check if re-run of maintainer script is requested if not self.config.getWithDefault( "NonInteractive","DebugBrokenScripts", False): return # re-run maintainer script with sh -x/perl debug to get a better # idea what went wrong # # FIXME: this is just a approximation for now, we also need # to pass: # - a version after remove (if upgrade to new version) # # not everything is a shell or perl script # # if the new preinst fails, its not yet in /var/lib/dpkg/info # so this is inaccurate as well environ = copy.copy(os.environ) environ["PYCENTRAL"] = "debug" cmd = [] # find what maintainer script failed if "post-installation" in errormsg: prefix = "/var/lib/dpkg/info/" name = "postinst" argument = "configure" maintainer_script = "%s/%s.%s" % (prefix, pkg, name) elif "pre-installation" in errormsg: prefix = "/var/lib/dpkg/tmp.ci/" #prefix = "/var/lib/dpkg/info/" name = "preinst" argument = "install" maintainer_script = "%s/%s" % (prefix, name) elif "pre-removal" in errormsg: prefix = "/var/lib/dpkg/info/" name = "prerm" argument = "remove" maintainer_script = "%s/%s.%s" % (prefix, pkg, name) elif "post-removal" in errormsg: prefix = "/var/lib/dpkg/info/" name = "postrm" argument = "remove" maintainer_script = "%s/%s.%s" % (prefix, pkg, name) else: print("UNKNOWN (trigger?) dpkg/script failure for %s (%s) " % (pkg, errormsg)) return # find out about the interpreter if not os.path.exists(maintainer_script): logging.error("can not find failed maintainer script '%s' " % maintainer_script) return interp = open(maintainer_script).readline()[2:].strip().split()[0] if ("bash" in interp) or ("/bin/sh" in interp): debug_opts = ["-ex"] elif ("perl" in interp): debug_opts = ["-d"] environ["PERLDB_OPTS"] = "AutoTrace NonStop" else: logging.warning("unknown interpreter: '%s'" % interp) # check if debconf is used and fiddle a bit more if it is if ". /usr/share/debconf/confmodule" in open(maintainer_script).read(): environ["DEBCONF_DEBUG"] = "developer" environ["DEBIAN_HAS_FRONTEND"] = "1" interp = "/usr/share/debconf/frontend" debug_opts = ["sh","-ex"] # build command cmd.append(interp) cmd.extend(debug_opts) cmd.append(maintainer_script) cmd.append(argument) # check if we need to pass a version if name == "postinst": version = Popen("dpkg-query -s %s|grep ^Config-Version" % pkg, shell=True, stdout=PIPE, universal_newlines=True).communicate()[0] if version: cmd.append(version.split(":",1)[1].strip()) elif name == "preinst": pkg = os.path.basename(pkg) pkg = pkg.split("_")[0] version = Popen("dpkg-query -s %s|grep ^Version" % pkg, shell=True, stdout=PIPE, universal_newlines=True).communicate()[0] if version: cmd.append(version.split(":",1)[1].strip()) logging.debug("re-running '%s' (%s)" % (cmd, environ)) ret = subprocess.call(cmd, env=environ) logging.debug("%s script returned: %s" % (name,ret)) def conffile(self, current, new): logging.warning("got a conffile-prompt from dpkg for file: '%s'" % current) # looks like we have a race here *sometimes* time.sleep(5) try: # don't overwrite os.write(self.master_fd,"n\n") except Exception as e: logging.error("error '%s' when trying to write to the conffile"%e) def start_update(self): InstallProgress.start_update(self) self.last_activity = time.time() progress_log = self.config.getWithDefault("NonInteractive","DpkgProgressLog", False) if progress_log: fullpath = os.path.join(self.logdir, "dpkg-progress.%s.log" % self.install_run_number) logging.debug("writing dpkg progress log to '%s'" % fullpath) self.dpkg_progress_log = open(fullpath, "w") else: self.dpkg_progress_log = open(os.devnull, "w") self.dpkg_progress_log.write("%s: Start\n" % time.time()) def finish_update(self): InstallProgress.finish_update(self) self.dpkg_progress_log.write("%s: Finished\n" % time.time()) self.dpkg_progress_log.close() self.install_run_number += 1 def status_change(self, pkg, percent, status_str): self.dpkg_progress_log.write("%s:%s:%s:%s\n" % (time.time(), percent, pkg, status_str)) def update_interface(self): InstallProgress.update_interface(self) if self.statusfd == None: return if (self.last_activity + self.timeout) < time.time(): logging.warning("no activity %s seconds (%s) - sending ctrl-c" % ( self.timeout, self.status)) # ctrl-c os.write(self.master_fd,chr(3)) # read master fd and write to stdout so that terminal output # actualy works res = select.select([self.master_fd],[],[],0.1) while len(res[0]) > 0: self.last_activity = time.time() try: s = os.read(self.master_fd, 1) sys.stdout.write("%s" % s) except OSError: # happens after we are finished because the fd is closed return res = select.select([self.master_fd],[],[],0.1) sys.stdout.flush() def fork(self): logging.debug("doing a pty.fork()") # some maintainer scripts fail without os.environ["TERM"] = "dumb" # unset PAGER so that we can do "diff" in the dpkg prompt os.environ["PAGER"] = "true" (self.pid, self.master_fd) = pty.fork() if self.pid != 0: logging.debug("pid is: %s" % self.pid) return self.pid class DistUpgradeViewNonInteractive(DistUpgradeView): " non-interactive version of the upgrade view " def __init__(self, datadir=None, logdir=None): DistUpgradeView.__init__(self) self.config = DistUpgradeConfig(".") self._acquireProgress = NonInteractiveAcquireProgress() self._installProgress = NonInteractiveInstallProgress(logdir) self._opProgress = apt.progress.base.OpProgress() sys.__excepthook__ = self.excepthook def excepthook(self, type, value, traceback): " on uncaught exceptions -> print error and reboot " logging.exception("got exception '%s': %s " % (type, value)) #sys.excepthook(type, value, traceback) self.confirmRestart() def getOpCacheProgress(self): " return a OpProgress() subclass for the given graphic" return self._opProgress def getAcquireProgress(self): " return an acquire progress object " return self._acquireProgress def getInstallProgress(self, cache=None): " return a install progress object " return self._installProgress def updateStatus(self, msg): """ update the current status of the distUpgrade based on the current view """ pass def setStep(self, step): """ we have 5 steps current for a upgrade: 1. Analyzing the system 2. Updating repository information 3. Performing the upgrade 4. Post upgrade stuff 5. Complete """ pass def confirmChanges(self, summary, changes, demotions, downloadSize, actions=None, removal_bold=True): DistUpgradeView.confirmChanges(self, summary, changes, demotions, downloadSize, actions) logging.debug("toinstall: '%s'" % [p.name for p in self.toInstall]) logging.debug("toupgrade: '%s'" % [p.name for p in self.toUpgrade]) logging.debug("toremove: '%s'" % [p.name for p in self.toRemove]) return True def askYesNoQuestion(self, summary, msg, default='No'): " ask a Yes/No question and return True on 'Yes' " # if this gets enabled upgrades over ssh with the non-interactive # frontend will no longer work #if default.lower() == "no": # return False return True def confirmRestart(self): " generic ask about the restart, can be overridden " logging.debug("confirmRestart() called") # rebooting here makes sense if we run e.g. in qemu return self.config.getWithDefault("NonInteractive","RealReboot", False) def error(self, summary, msg, extended_msg=None): " display a error " logging.error("%s %s (%s)" % (summary, msg, extended_msg)) def abort(self): logging.error("view.abort called") if __name__ == "__main__": view = DistUpgradeViewNonInteractive() ap = NonInteractiveAcquireProgress() ip = NonInteractiveInstallProgress() #ip.error("linux-image-2.6.17-10-generic","post-installation script failed") ip.error("xserver-xorg","pre-installation script failed") cache = apt.Cache() for pkg in sys.argv[1:]: #if cache[pkg].is_installed: # cache[pkg].mark_delete() #else: cache[pkg].mark_install() cache.commit(ap, ip) time.sleep(2) sys.exit(0) ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeVersion.py0000644000000000000000000000002213017612603021730 0ustar VERSION='0.220.9' ubuntu-release-upgrader-0.220.10/DistUpgrade/gtkbuilder0000777000000000000000000000000012431225715023144 2../data/gtkbuilder/ustar ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradePatcher.py0000644000000000000000000000752212431225715021710 0ustar # DistUpgradeEdPatcher.py # # Copyright (c) 2011 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA import hashlib import re class PatchError(Exception): """ Error during the patch process """ pass def patch(orig, edpatch, result_md5sum=None): """ python implementation of enough "ed" to apply ed-style patches. Note that this patches in memory so its *not* suitable for big files """ # we only have two states, waiting for command or reading data (STATE_EXPECT_COMMAND, STATE_EXPECT_DATA) = range(2) # this is inefficient for big files orig_lines = open(orig, encoding="UTF-8").readlines() start = end = 0 # we start in wait-for-commend state state = STATE_EXPECT_COMMAND for line in open(edpatch, encoding="UTF-8"): if state == STATE_EXPECT_COMMAND: # in commands get rid of whitespace, line = line.strip() # check if we have a substitute command if line.startswith("s/"): # strip away the "s/" line = line[2:] # chop off the flags at the end subs, flags = line.rsplit("/", 1) if flags: raise PatchError("flags for s// not supported yet") # get the actual substitution regexp and replacement and # execute it regexp, sep, repl = subs.partition("/") new, count = re.subn(regexp, repl, orig_lines[start], count=1) orig_lines[start] = new continue # otherwise the last char is the command command = line[-1] # read address (start_str, sep, end_str) = line[:-1].partition(",") # ed starts with 1 while python with 0 start = int(start_str) start -= 1 # if we don't have end, set it to the next line if end_str is "": end = start+1 else: end = int(end_str) # interpret command if command == "c": del orig_lines[start:end] state = STATE_EXPECT_DATA start -= 1 elif command == "a": # not allowed to have a range in append state = STATE_EXPECT_DATA elif command == "d": del orig_lines[start:end] else: raise PatchError("unknown command: '%s'" % line) elif state == STATE_EXPECT_DATA: # this is the data end marker if line == ".\n": state = STATE_EXPECT_COMMAND else: # copy line verbatim and increase position start += 1 orig_lines.insert(start, line) # done with the patching, (optional) verify and write result result = "".join(orig_lines) if result_md5sum: md5 = hashlib.md5() md5.update(result.encode("UTF-8")) if md5.hexdigest() != result_md5sum: raise PatchError("the md5sum after patching is not correct") open(orig, "w", encoding="UTF-8").write(result) return True ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeView.py0000644000000000000000000004155212431225715021235 0ustar # DistUpgradeView.py # # Copyright (c) 2004,2005 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function from .DistUpgradeGettext import gettext as _ from .DistUpgradeGettext import ngettext import apt import errno import os import apt_pkg import locale import logging import signal import select from .DistUpgradeAufs import doAufsChroot, doAufsChrootRsync from .DistUpgradeApport import apport_pkgfailure try: locale.setlocale(locale.LC_ALL, "") (code, ENCODING) = locale.getdefaultlocale() except: logging.exception("getting the encoding failed") ENCODING = "utf-8" #pyflakes # if there is no encoding, setup UTF-8 if not ENCODING: ENCODING = "utf-8" os.putenv("LC_CTYPE", "C.UTF-8") locale.setlocale(locale.LC_CTYPE, "C.UTF-8") # log locale information logging.info("locale: '%s' '%s'" % locale.getlocale()) def FuzzyTimeToStr(sec): " return the time a bit fuzzy (no seconds if time > 60 secs " #print("FuzzyTimeToStr: ", sec) sec = int(sec) days = sec//(60*60*24) hours = sec//(60*60) % 24 minutes = (sec//60) % 60 seconds = sec % 60 # 0 seonds remaining looks wrong and its "fuzzy" anyway if seconds == 0: seconds = 1 # string map to make the re-ordering possible map = { "str_days" : "", "str_hours" : "", "str_minutes" : "", "str_seconds" : "" } # get the fragments, this is not ideal i18n wise, but its # difficult to do it differently if days > 0: map["str_days"] = ngettext("%li day","%li days", days) % days if hours > 0: map["str_hours"] = ngettext("%li hour","%li hours", hours) % hours if minutes > 0: map["str_minutes"] = ngettext("%li minute","%li minutes", minutes) % minutes map["str_seconds"] = ngettext("%li second","%li seconds", seconds) % seconds # now assemble the string if days > 0: # Don't print str_hours if it's an empty string, see LP: #288912 if map["str_hours"] == '': return map["str_days"] # TRANSLATORS: you can alter the ordering of the remaining time # information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s # around. Make sure to keep all '$(str_*)s' in the translated string # and do NOT change anything appart from the ordering. # # %(str_hours)s will be either "1 hour" or "2 hours" depending on the # plural form # # Note: most western languages will not need to change this return _("%(str_days)s %(str_hours)s") % map # display no minutes for time > 3h, see LP: #144455 elif hours > 3: return map["str_hours"] # when we are near the end, become more precise again elif hours > 0: # Don't print str_minutes if it's an empty string, see LP: #288912 if map["str_minutes"] == '': return map["str_hours"] # TRANSLATORS: you can alter the ordering of the remaining time # information here if you shuffle %(str_hours)s %(str_minutes)s # around. Make sure to keep all '$(str_*)s' in the translated string # and do NOT change anything appart from the ordering. # # %(str_hours)s will be either "1 hour" or "2 hours" depending on the # plural form # # Note: most western languages will not need to change this return _("%(str_hours)s %(str_minutes)s") % map elif minutes > 0: return map["str_minutes"] return map["str_seconds"] class AcquireProgress(apt.progress.base.AcquireProgress): def __init__(self): super(AcquireProgress, self).__init__() self.est_speed = 0.0 def start(self): super(AcquireProgress, self).start() self.est_speed = 0.0 self.eta = 0.0 self.percent = 0.0 self.release_file_download_error = False def update_status(self, uri, descr, shortDescr, status): super(AcquireProgress, self).update_status(uri, descr, shortDescr, status) # FIXME: workaround issue in libapt/python-apt that does not # raise a exception if *all* files fails to download if status == apt_pkg.STAT_FAILED: logging.warn("update_status: dlFailed on '%s' " % uri) if uri.endswith("Release.gpg") or uri.endswith("Release"): # only care about failures from network, not gpg, bzip, those # are different issues for net in ["http","ftp","mirror"]: if uri.startswith(net): self.release_file_download_error = True break # required, otherwise the lucid version of python-apt gets really # unhappy, its expecting this function for apt.progress.base.AcquireProgress def pulse_items(self, arg): return True def pulse(self, owner=None): super(AcquireProgress, self).pulse(owner) self.percent = (((self.current_bytes + self.current_items) * 100.0) / float(self.total_bytes + self.total_items)) if self.current_cps > self.est_speed: self.est_speed = (self.est_speed+self.current_cps)/2.0 if self.current_cps > 0: self.eta = ((self.total_bytes - self.current_bytes) / float(self.current_cps)) return True def isDownloadSpeedEstimated(self): return (self.est_speed != 0) def estimatedDownloadTime(self, required_download): """ get the estimated download time """ if self.est_speed == 0: timeModem = required_download/(56*1024/8) # 56 kbit timeDSL = required_download/(1024*1024/8) # 1Mbit = 1024 kbit s= _("This download will take about %s with a 1Mbit DSL connection " "and about %s with a 56k modem.") % (FuzzyTimeToStr(timeDSL), FuzzyTimeToStr(timeModem)) return s # if we have a estimated speed, use it s = _("This download will take about %s with your connection. ") % FuzzyTimeToStr(required_download/self.est_speed) return s class InstallProgress(apt.progress.base.InstallProgress): """ Base class for InstallProgress that supports some fancy stuff like apport integration """ def __init__(self): apt.progress.base.InstallProgress.__init__(self) self.master_fd = None def wait_child(self): """Wait for child progress to exit. The return values is the full status returned from os.waitpid() (not only the return code). """ while True: try: select.select([self.statusfd], [], [], self.select_timeout) except select.error as e: if e.args[0] != errno.EINTR: raise self.update_interface() try: (pid, res) = os.waitpid(self.child_pid, os.WNOHANG) if pid == self.child_pid: break except OSError as e: if e.errno != errno.EINTR: raise if e.errno == errno.ECHILD: break return res def run(self, pm): pid = self.fork() if pid == 0: # check if we need to setup/enable the aufs chroot stuff if "RELEASE_UPGRADE_USE_AUFS_CHROOT" in os.environ: if not doAufsChroot(os.environ["RELEASE_UPGRADE_AUFS_RWDIR"], os.environ["RELEASE_UPGRADE_USE_AUFS_CHROOT"]): print("ERROR: failed to setup aufs chroot overlay") os._exit(1) # child, ignore sigpipe, there are broken scripts out there # like etckeeper (LP: #283642) signal.signal(signal.SIGPIPE,signal.SIG_IGN) try: res = pm.do_install(self.writefd) except Exception as e: print("Exception during pm.DoInstall(): ", e) logging.exception("Exception during pm.DoInstall()") open("/var/run/ubuntu-release-upgrader-apt-exception","w").write(str(e)) os._exit(pm.ResultFailed) os._exit(res) self.child_pid = pid res = os.WEXITSTATUS(self.wait_child()) # check if we want to sync the changes back, *only* do that # if res is positive if (res == 0 and "RELEASE_UPGRADE_RSYNC_AUFS_CHROOT" in os.environ): logging.info("doing rsync commit of the update") if not doAufsChrootRsync(os.environ["RELEASE_UPGRADE_USE_AUFS_CHROOT"]): logging.error("FATAL ERROR: doAufsChrootRsync() returned FALSE") return pm.ResultFailed return res def error(self, pkg, errormsg): " install error from a package " apt.progress.base.InstallProgress.error(self, pkg, errormsg) logging.error("got an error from dpkg for pkg: '%s': '%s'" % (pkg, errormsg)) if "/" in pkg: pkg = os.path.basename(pkg) if "_" in pkg: pkg = pkg.split("_")[0] # now run apport apport_pkgfailure(pkg, errormsg) class DumbTerminal(object): def call(self, cmd, hidden=False): " expects a command in the subprocess style (as a list) " import subprocess subprocess.call(cmd) class DummyHtmlView(object): def open(self, url): pass def show(self): pass def hide(self): pass (STEP_PREPARE, STEP_MODIFY_SOURCES, STEP_FETCH, STEP_INSTALL, STEP_CLEANUP, STEP_REBOOT, STEP_N) = range(1,8) # Declare these translatable strings from the .ui files here so that # xgettext picks them up. ( _("Preparing to upgrade"), _("Getting new software channels"), _("Getting new packages"), _("Installing the upgrades"), _("Cleaning up"), ) class DistUpgradeView(object): " abstraction for the upgrade view " def __init__(self): self.needs_screen = False pass def getOpCacheProgress(self): " return a OpProgress() subclass for the given graphic" return apt.progress.base.OpProgress() def getAcquireProgress(self): " return an acquire progress object " return AcquireProgress() def getInstallProgress(self, cache=None): " return a install progress object " return InstallProgress() def getTerminal(self): return DumbTerminal() def getHtmlView(self): return DummyHtmlView() def updateStatus(self, msg): """ update the current status of the distUpgrade based on the current view """ pass def abort(self): """ provide a visual feedback that the upgrade was aborted """ pass def setStep(self, step): """ we have 6 steps current for a upgrade: 1. Analyzing the system 2. Updating repository information 3. fetch packages 3. Performing the upgrade 4. Post upgrade stuff 5. Complete """ pass def hideStep(self, step): " hide a certain step from the GUI " pass def showStep(self, step): " show a certain step from the GUI " pass def confirmChanges(self, summary, changes, demotions, downloadSize, actions=None, removal_bold=True): """ display the list of changed packages (apt.Package) and return if the user confirms them """ self.confirmChangesMessage = "" self.demotions = demotions self.toInstall = [] self.toReinstall = [] self.toUpgrade = [] self.toRemove = [] self.toRemoveAuto = [] self.toDowngrade = [] for pkg in changes: if pkg.marked_install: self.toInstall.append(pkg) elif pkg.marked_upgrade: self.toUpgrade.append(pkg) elif pkg.marked_reinstall: self.toReinstall.append(pkg) elif pkg.marked_delete: if pkg._pcache._depcache.is_auto_installed(pkg._pkg): self.toRemoveAuto.append(pkg) else: self.toRemove.append(pkg) elif pkg.marked_downgrade: self.toDowngrade.append(pkg) # do not bother the user with a different treeview self.toInstall = self.toInstall + self.toReinstall # sort it self.toInstall.sort() self.toUpgrade.sort() self.toRemove.sort() self.toRemoveAuto.sort() self.toDowngrade.sort() # now build the message (the same for all frontends) msg = "\n" pkgs_remove = len(self.toRemove) + len(self.toRemoveAuto) pkgs_inst = len(self.toInstall) + len(self.toReinstall) pkgs_upgrade = len(self.toUpgrade) # FIXME: show detailed packages if len(self.demotions) > 0: msg += ngettext( "%(amount)d installed package is no longer supported by Canonical. " "You can still get support from the community.", "%(amount)d installed packages are no longer supported by " "Canonical. You can still get support from the community.", len(self.demotions)) % { 'amount' : len(self.demotions) } msg += "\n\n" if pkgs_remove > 0: # FIXME: make those two separate lines to make it clear # that the "%" applies to the result of ngettext msg += ngettext("%d package is going to be removed.", "%d packages are going to be removed.", pkgs_remove) % pkgs_remove msg += " " if pkgs_inst > 0: msg += ngettext("%d new package is going to be " "installed.", "%d new packages are going to be " "installed.",pkgs_inst) % pkgs_inst msg += " " if pkgs_upgrade > 0: msg += ngettext("%d package is going to be upgraded.", "%d packages are going to be upgraded.", pkgs_upgrade) % pkgs_upgrade msg +=" " if downloadSize > 0: downloadSizeStr = apt_pkg.size_to_str(downloadSize) if isinstance(downloadSizeStr, bytes): downloadSizeStr = downloadSizeStr.decode(ENCODING) msg += _("\n\nYou have to download a total of %s. ") % ( downloadSizeStr) msg += self.getAcquireProgress().estimatedDownloadTime(downloadSize) if ((pkgs_upgrade + pkgs_inst) > 0) and ((pkgs_upgrade + pkgs_inst + pkgs_remove) > 100): if self.getAcquireProgress().isDownloadSpeedEstimated(): msg += "\n\n%s" % _( "Installing the upgrade " "can take several hours. Once the download " "has finished, the process cannot be canceled.") else: msg += "\n\n%s" % _( "Fetching and installing the upgrade " "can take several hours. Once the download " "has finished, the process cannot be canceled.") else: if pkgs_remove > 100: msg += "\n\n%s" % _( "Removing the packages " "can take several hours. ") # Show an error if no actions are planned if (pkgs_upgrade + pkgs_inst + pkgs_remove) < 1: # FIXME: this should go into DistUpgradeController summary = _("The software on this computer is up to date.") msg = _("There are no upgrades available for your system. " "The upgrade will now be canceled.") self.error(summary, msg) return False # set the message self.confirmChangesMessage = msg return True def askYesNoQuestion(self, summary, msg, default='No'): " ask a Yes/No question and return True on 'Yes' " pass def confirmRestart(self): " generic ask about the restart, can be overridden " summary = _("Reboot required") msg = _("The upgrade is finished and " "a reboot is required. " "Do you want to do this " "now?") return self.askYesNoQuestion(summary, msg) def error(self, summary, msg, extended_msg=None): " display a error " pass def information(self, summary, msg, extended_msg=None): " display a information msg" pass def processEvents(self): """ process gui events (to keep the gui alive during a long computation """ pass def pulseProgress(self, finished=False): """ do a progress pulse (e.g. bounce a bar back and forth, show a spinner) """ pass def showDemotions(self, summary, msg, demotions): """ show demoted packages to the user, default implementation is to just show a information dialog """ self.information(summary, msg, "\n".join(demotions)) if __name__ == "__main__": fp = AcquireProgress() fp.pulse() ubuntu-release-upgrader-0.220.10/DistUpgrade/build-tarball.sh0000755000000000000000000000212312602566343020666 0ustar #!/bin/sh set -e DIST=$(lsb_release -c -s) # cleanup echo "Cleaning up" for d in ./; do rm -f $d/*~ $d/*.bak $d/*.pyc $d/*.moved $d/'#'* $d/*.rej $d/*.orig rm -rf $d/__pycache__ rm -f *.tar.gz *.tar done #sudo rm -rf backports/ profile/ result/ tarball/ *.deb # automatically generate codename for the distro in the # cdromupgrade script sed -i s/^CODENAME=.*/CODENAME=$DIST/ cdromupgrade # update po and copy the mo files (cd ../po; make update-po) cp -r ../po/mo . # make symlink if [ ! -h $DIST ]; then ln -s dist-upgrade.py $DIST fi # copy nvidia obsoleted drivers data cp /usr/share/ubuntu-drivers-common/obsolete ubuntu-drivers-obsolete.pkgs # create the tarball, copy links in place tar -c -h -v --exclude DistUpgrade --exclude=$DIST.tar --exclude=$0 -X build-exclude.txt -f $DIST.tar ./* # add *.cfg and *.ui to the tarball, copy links (demotions) in place tar --append -h -v -f $DIST.tar --transform 's|.*/|./|' ../data/*.cfg* ../data/gtkbuilder/*.ui # add "DistUpgrade" symlink as symlink tar --append -v -f $DIST.tar ./DistUpgrade # and compress it gzip -9 $DIST.tar ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgrade0000777000000000000000000000000012431225715020021 2.ustar ubuntu-release-upgrader-0.220.10/DistUpgrade/apt-autoinst-fixup.py0000755000000000000000000000461212431225715021747 0ustar #!/usr/bin/python import sys import os import warnings warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning) import apt import apt_pkg import logging logging.basicConfig(level=logging.DEBUG, filename="/var/log/dist-upgrade/apt-autoinst-fixup.log", format='%(asctime)s %(levelname)s %(message)s', filemode='w') cache = apt.Cache() min_version = "0.6.20ubuntu13" if apt_pkg.version_compare(getattr(cache["python-apt"].installed, "version", "0"), min_version) < 0: logging.error("Need at least python-apt version %s " % min_version) sys.exit(1) # figure out what needs fixup logging.debug("Starting to check for auto-install states that need fixup") need_fixup = set() # work around #105663 need_fixup.add("mdadm") for pkg in cache: if pkg.is_installed and pkg.section == "metapackages": logging.debug("Found installed meta-pkg: '%s' " % pkg.name) dependsList = pkg._pkg.current_ver.depends_list for t in ["Depends","PreDepends","Recommends"]: if t in dependsList: for depOr in dependsList[t]: for dep in depOr: depname = dep.target_pkg.name if (cache[depname].is_installed and cache._depcache.is_auto_installed(cache[depname]._pkg)): logging.info("Removed auto-flag from package '%s'" % depname) need_fixup.add(depname) # now go through the tagfile and actually fix it up if len(need_fixup) > 0: # action is set to zero (reset the auto-flag) action = 0 STATE_FILE = apt_pkg.config.find_dir("Dir::State") + "extended_states" # open the statefile if os.path.exists(STATE_FILE): tagfile = apt_pkg.TagFile(open(STATE_FILE)) outfile = open(STATE_FILE+".tmp","w") for section in tagfile: pkgname = section.get("Package") autoInst = section.get("Auto-Installed") if pkgname in need_fixup: newsec = apt_pkg.rewrite_section( section, [], [("Auto-Installed", str(action))]) outfile.write(newsec+"\n") else: outfile.write(str(section)+"\n") os.rename(STATE_FILE, STATE_FILE+".fixup-save") os.rename(outfile.name, STATE_FILE) os.chmod(STATE_FILE, 0o644) ubuntu-release-upgrader-0.220.10/DistUpgrade/EOLReleaseAnnouncement0000644000000000000000000000373612431225715022035 0ustar = Ubuntu 14.04 'Trusty Tahr' is no longer supported = You are about to upgrade to a version of Ubuntu that is no longer supported. This release of Ubuntu is '''no longer supported''' by Canonical. The support timeframe is between 18 month and 5 years after the initial release. You will not receive security updates or critical bugfixes. See http://www.ubuntu.com/releaseendoflife for details. It is still possible to upgrade this version and eventually you will be able to upgrade to a supported release of Ubuntu. Alternatively you may want to consider to reinstall the machine to the latest version, for more information on this, visit: http://www.ubuntu.com/desktop/get-ubuntu For pre-installed system you may want to contact the manufacturer for instructions. == Feedback and Helping == If you would like to help shape Ubuntu, take a look at the list of ways you can participate at http://www.ubuntu.com/community/participate/ Your comments, bug reports, patches and suggestions will help ensure that our next release is the best release of Ubuntu ever. If you feel that you have found a bug please read: http://help.ubuntu.com/community/ReportingBugs Then report bugs using apport in Ubuntu. For example: ubuntu-bug linux will open a bug report in Launchpad regarding the linux package. If you have a question, or if you think you may have found a bug but aren't sure, first try asking on the #ubuntu or #ubuntu-bugs IRC channels on Freenode, on the Ubuntu Users mailing list, or on the Ubuntu forums: http://help.ubuntu.com/community/InternetRelayChat http://lists.ubuntu.com/mailman/listinfo/ubuntu-users http://www.ubuntuforums.org/ == More Information == You can find out more about Ubuntu on our website, IRC channel and wiki. If you're new to Ubuntu, please visit: http://www.ubuntu.com/ To sign up for future Ubuntu announcements, please subscribe to Ubuntu's very low volume announcement list at: http://lists.ubuntu.com/mailman/listinfo/ubuntu-announce ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeAptCdrom.py0000644000000000000000000003005112431225715022024 0ustar # DistUpgradeAptCdrom.py # # Copyright (c) 2008 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA import re import os import apt import apt_pkg import logging import gzip import shutil import subprocess import sys from gettext import gettext as _ class AptCdromError(Exception): " base exception for apt cdrom errors " pass class AptCdrom(object): " represents a apt cdrom object " def __init__(self, view, path): self.view = view self.cdrompath = path # the directories we found on disk with signatures, packages and i18n self.packages = set() self.signatures = set() self.i18n = set() def restore_backup(self, backup_ext): " restore the backup copy of the cdroms.list file (*not* sources.list)! " cdromstate = os.path.join(apt_pkg.config.find_dir("Dir::State"), apt_pkg.config.find("Dir::State::cdroms")) if os.path.exists(cdromstate+backup_ext): shutil.copy(cdromstate+backup_ext, cdromstate) # mvo: we don't have to care about restoring the sources.list here because # aptsources will do this for us anyway def comment_out_cdrom_entry(self): """ comment out the cdrom entry """ diskname = self._readDiskName() pentry = self._generateSourcesListLine(diskname, self.packages) sourceslist=apt_pkg.config.find_file("Dir::Etc::sourcelist") content = open(sourceslist).read() content = content.replace(pentry, "# %s" % pentry) open(sourceslist, "w").write(content) def _scanCD(self): """ scan the CD for interessting files and return them as: (packagesfiles, signaturefiles, i18nfiles) """ packages = set() signatures = set() i18n = set() for root, dirs, files in os.walk(self.cdrompath, topdown=True): if (root.endswith("debian-installer") or root.endswith("dist-upgrader")): del dirs[:] continue elif ".aptignr" in files: continue elif "Packages" in files: packages.add(os.path.join(root,"Packages")) elif "Packages.gz" in files: packages.add(os.path.join(root,"Packages.gz")) elif "Sources" in files or "Sources.gz" in files: logging.error("Sources entry found in %s but not supported" % root) elif "Release.gpg" in files: signatures.add(os.path.join(root,"Release.gpg")) elif "i18n" in dirs: for f in os.listdir(os.path.join(root,"i18n")): i18n.add(os.path.join(root,"i18n",f)) # there is nothing under pool but deb packages (no # indexfiles, so we skip that here elif os.path.split(root)[1] == ("pool"): del dirs[:] return (packages, signatures, i18n) def _writeDatabase(self): " update apts cdrom.list " dbfile = apt_pkg.config.find_file("Dir::State::cdroms") cdrom = apt_pkg.Cdrom() id=cdrom.ident(apt.progress.base.CdromProgress()) label = self._readDiskName() out=open(dbfile,"a") out.write('CD::%s "%s";\n' % (id, label)) out.write('CD::%s::Label "%s";\n' % (id, label)) def _dropArch(self, packages): " drop architectures that are not ours " # create a copy packages = set(packages) # now go over the packagesdirs and drop stuff that is not # our binary-$arch arch = apt_pkg.config.find("APT::Architecture") for d in set(packages): if "/binary-" in d and not arch in d: packages.remove(d) return packages def _readDiskName(self): # default to cdrompath if there is no name diskname = self.cdrompath info = os.path.join(self.cdrompath, ".disk","info") if os.path.exists(info): diskname = open(info).read() for special in ('"',']','[','_'): diskname = diskname.replace(special,'_') return diskname def _generateSourcesListLine(self, diskname, packages): # see apts indexcopy.cc:364 for details path = "" dist = "" comps = [] for d in packages: # match(1) is the path, match(2) the dist # and match(3) the components m = re.match("(.*)/dists/([^/]*)/(.*)/binary-*", d) if not m: raise AptCdromError(_("Could not calculate sources.list entry")) path = m.group(1) dist = m.group(2) comps.append(m.group(3)) if not path or not comps: return None comps.sort() pentry = "deb cdrom:[%s]/ %s %s" % (diskname, dist, " ".join(comps)) return pentry def _copyTranslations(self, translations, targetdir=None): if not targetdir: targetdir=apt_pkg.config.find_dir("Dir::State::lists") diskname = self._readDiskName() for f in translations: fname = apt_pkg.uri_to_filename("cdrom:[%s]/%s" % (diskname,f[f.find("dists"):])) outf = os.path.join(targetdir,os.path.splitext(fname)[0]) if f.endswith(".gz"): g=gzip.open(f) try: with open(outf, "wb") as out: # uncompress in 64k chunks while True: s=g.read(64000) out.write(s) if s == b"": break finally: g.close() else: shutil.copy(f,outf) return True def _copyPackages(self, packages, targetdir=None): if not targetdir: targetdir=apt_pkg.config.find_dir("Dir::State::lists") # CopyPackages() diskname = self._readDiskName() for f in packages: fname = apt_pkg.uri_to_filename("cdrom:[%s]/%s" % (diskname,f[f.find("dists"):])) outf = os.path.join(targetdir,os.path.splitext(fname)[0]) if f.endswith(".gz"): g=gzip.open(f) try: with open(outf, "wb") as out: # uncompress in 64k chunks while True: s=g.read(64000) out.write(s) if s == b"": break finally: g.close() else: shutil.copy(f,outf) return True def _verifyRelease(self, signatures): " verify the signatues and hashes " gpgv = apt_pkg.config.find("Dir::Bin::gpg","/usr/bin/gpgv") keyring = apt_pkg.config.find("Apt::GPGV::TrustedKeyring", "/etc/apt/trusted.gpg") for sig in signatures: basepath = os.path.split(sig)[0] # do gpg checking releasef = os.path.splitext(sig)[0] cmd = [gpgv,"--keyring",keyring, "--ignore-time-conflict", sig, releasef] ret = subprocess.call(cmd) if not (ret == 0): return False # now do the hash sum checks t=apt_pkg.TagFile(open(releasef)) t.step() for entry in t.section["SHA256"].split("\n"): (hash,size,name) = entry.split() f=os.path.join(basepath,name) if not os.path.exists(f): logging.info("ignoring missing '%s'" % f) continue sum = apt_pkg.sha256sum(open(f)) if not (sum == hash): logging.error("hash sum mismatch expected %s but got %s" % (hash, sum)) return False return True def _copyRelease(self, signatures, targetdir=None): " copy the release file " if not targetdir: targetdir=apt_pkg.config.find_dir("Dir::State::lists") diskname = self._readDiskName() for sig in signatures: releasef = os.path.splitext(sig)[0] # copy both Release and Release.gpg for f in (sig, releasef): fname = apt_pkg.uri_to_filename("cdrom:[%s]/%s" % (diskname,f[f.find("dists"):])) shutil.copy(f,os.path.join(targetdir,fname)) return True def _doAdd(self): " reimplement pkgCdrom::Add() in python " # os.walk() will not follow symlinks so we don't need # pkgCdrom::Score() and not dropRepeats() that deal with # killing the links (self.packages, self.signatures, self.i18n) = self._scanCD() self.packages = self._dropArch(self.packages) if len(self.packages) == 0: logging.error("no useable indexes found on CD, wrong ARCH?") raise AptCdromError(_("Unable to locate any package files, perhaps this is not a Ubuntu Disc or the wrong architecture?")) # CopyAndVerify if self._verifyRelease(self.signatures): self._copyRelease(self.signatures) # copy the packages and translations self._copyPackages(self.packages) self._copyTranslations(self.i18n) # add CD to cdroms.list "database" and update sources.list diskname = self._readDiskName() if not diskname: logging.error("no .disk/ directory found") return False debline = self._generateSourcesListLine(diskname, self.packages) # prepend to the sources.list sourceslist=apt_pkg.config.find_file("Dir::Etc::sourcelist") content=open(sourceslist).read() open(sourceslist,"w").write("# added by the release upgrader\n%s\n%s" % (debline,content)) self._writeDatabase() return True def add(self, backup_ext=None): " add a cdrom to apt's database " logging.debug("AptCdrom.add() called with '%s'", self.cdrompath) # do backup (if needed) of the cdroms.list file if backup_ext: cdromstate = os.path.join(apt_pkg.config.find_dir("Dir::State"), apt_pkg.config.find("Dir::State::cdroms")) if os.path.exists(cdromstate): shutil.copy(cdromstate, cdromstate+backup_ext) # do the actual work apt_pkg.config.set("Acquire::cdrom::mount",self.cdrompath) apt_pkg.config.set("APT::CDROM::NoMount","true") # FIXME: add cdrom progress here for the view #progress = self.view.getCdromProgress() try: res = self._doAdd() except (SystemError, AptCdromError) as e: logging.error("can't add cdrom: %s" % e) self.view.error(_("Failed to add the CD"), _("There was a error adding the CD, the " "upgrade will abort. Please report this as " "a bug if this is a valid Ubuntu CD.\n\n" "The error message was:\n'%s'") % e) return False logging.debug("AptCdrom.add() returned: %s" % res) return res def __bool__(self): """ helper to use this as 'if cdrom:' """ return self.cdrompath is not None if sys.version < '3': __nonzero__ = __bool__ ubuntu-release-upgrader-0.220.10/DistUpgrade/imported/0000755000000000000000000000000012431225715017431 5ustar ubuntu-release-upgrader-0.220.10/DistUpgrade/imported/invoke-rc.d.diff0000644000000000000000000000122312431225715022400 0ustar --- /usr/sbin/invoke-rc.d 2007-08-10 18:15:28.000000000 +0200 +++ invoke-rc.d 2007-09-07 18:43:48.000000000 +0200 @@ -314,6 +314,10 @@ shift done if test x${doexit} != x && test x${RETRY} = x; then + if [ -n "$RELEASE_UPGRADE_IN_PROGRESS" ]; then + printerror "release upgrade in progress, error is not fatal" + exit 0 + fi exit ${doexit} fi return 0 @@ -431,6 +435,10 @@ fi done printerror initscript ${INITSCRIPTID}, action \"${saction}\" failed. + if [ -n "$RELEASE_UPGRADE_IN_PROGRESS" ]; then + printerror "release upgrade in progress, error is not fatal" + exit 0 + fi exit ${RC} fi exit 102 ubuntu-release-upgrader-0.220.10/DistUpgrade/imported/invoke-rc.d0000755000000000000000000003337212431225715021506 0ustar #!/bin/sh # # invoke-rc.d.sysvinit - Executes initscript actions # # SysVinit /etc/rc?.d version for Debian's sysvinit package # # Copyright (C) 2000,2001 Henrique de Moraes Holschuh # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the Free # Software Foundation; either version 2 of the License, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # Constants RUNLEVELHELPER=/sbin/runlevel POLICYHELPER=/usr/sbin/policy-rc.d INITDPREFIX=/etc/init.d/ UPSTARTDIR=/etc/init/ RCDPREFIX=/etc/rc # Options BEQUIET= MODE= ACTION= FALLBACK= NOFALLBACK= FORCE= RETRY= RETURNFAILURE= RC= is_upstart= # Shell options set +e dohelp () { # # outputs help and usage # cat < Usage: invoke-rc.d [options] [extra parameters] basename - Initscript ID, as per update-rc.d(8) action - Initscript action. Known actions are: start, [force-]stop, restart, [force-]reload, status WARNING: not all initscripts implement all of the above actions. extra parameters are passed as is to the initscript, following the action (first initscript parameter). Options: --quiet Quiet mode, no error messages are generated. --force Try to run the initscript regardless of policy and subsystem non-fatal errors. --try-anyway Try to run init script even if a non-fatal error is found. --disclose-deny Return status code 101 instead of status code 0 if initscript action is denied by local policy rules or runlevel constrains. --query Returns one of status codes 100-106, does not run the initscript. Implies --disclose-deny and --no-fallback. --no-fallback Ignores any fallback action requests by the policy layer. Warning: this is usually a very *bad* idea for any actions other than "start". --help Outputs help message to stdout EOF } printerror () { # # prints an error message # $* - error message # if test x${BEQUIET} = x ; then echo `basename $0`: "$*" >&2 fi } formataction () { # # formats a list in $* into $printaction # for human-friendly printing to stderr # and sets $naction to action or actions # printaction=`echo $* | sed 's/ /, /g'` if test $# -eq 1 ; then naction=action else naction=actions fi } querypolicy () { # # queries policy database # returns: $RC = 104 - ok, run # $RC = 101 - ok, do not run # other - exit with status $RC, maybe run if $RETRY # initial status of $RC is taken into account. # policyaction="${ACTION}" if test x${RC} = "x101" ; then if test "${ACTION}" = "start" || test "${ACTION}" = "restart" ; then policyaction="(${ACTION})" fi fi if test "x${POLICYHELPER}" != x && test -x "${POLICYHELPER}" ; then FALLBACK=`${POLICYHELPER} ${BEQUIET} ${INITSCRIPTID} "${policyaction}" ${RL}` RC=$? formataction ${ACTION} case ${RC} in 0) RC=104 ;; 1) RC=105 ;; 101) if test x${FORCE} != x ; then printerror Overriding policy-rc.d denied execution of ${printaction}. RC=104 else printerror policy-rc.d denied execution of ${printaction}. fi ;; esac if test x${MODE} != xquery ; then case ${RC} in 105) printerror policy-rc.d query returned \"behaviour undefined\", printerror assuming \"${printaction}\" is allowed. RC=104 ;; 106) formataction ${FALLBACK} if test x${FORCE} = x ; then if test x${NOFALLBACK} = x ; then ACTION="${FALLBACK}" printerror executing ${naction} \"${printaction}\" instead due to policy-rc.d request. RC=104 else printerror ignoring policy-rc.d fallback request: ${printaction}. RC=101 fi else printerror ignoring policy-rc.d fallback request: ${printaction}. RC=104 fi ;; esac fi case ${RC} in 100|101|102|103|104|105|106) ;; *) printerror WARNING: policy-rc.d returned unexpected error status ${RC}, 102 used instead. RC=102 ;; esac else if test x${RC} = x ; then RC=104 fi fi return } verifyparameter () { # # Verifies if $1 is not null, and $# = 1 # if test $# -eq 0 ; then printerror syntax error: invalid empty parameter exit 103 elif test $# -ne 1 ; then printerror syntax error: embedded blanks are not allowed in \"$*\" exit 103 fi return } ## ## main ## ## Verifies command line arguments if test $# -eq 0 ; then printerror syntax error: missing required parameter, --help assumed dohelp exit 103 fi state=I while test $# -gt 0 && test ${state} != III ; do case "$1" in --help) dohelp exit 0 ;; --quiet) BEQUIET=--quiet ;; --force) FORCE=yes RETRY=yes ;; --try-anyway) RETRY=yes ;; --disclose-deny) RETURNFAILURE=yes ;; --query) MODE=query RETURNFAILURE=yes ;; --no-fallback) NOFALLBACK=yes ;; --*) printerror syntax error: unknown option \"$1\" exit 103 ;; *) case ${state} in I) verifyparameter $1 INITSCRIPTID=$1 ;; II) verifyparameter $1 ACTION=$1 ;; esac state=${state}I ;; esac shift done if test ${state} != III ; then printerror syntax error: missing required parameter exit 103 fi #NOTE: It may not be obvious, but "$@" from this point on must expand #to the extra initscript parameters, except inside functions. ## sanity checks and just-in-case warnings. case ${ACTION} in start|stop|force-stop|restart|reload|force-reload|status) ;; *) if test "x${POLICYHELPER}" != x && test -x "${POLICYHELPER}" ; then printerror action ${ACTION} is unknown, but proceeding anyway. fi ;; esac # If we're running on upstart and there's an upstart job of this name, do # the rest with upstart instead of calling the init script. if which initctl >/dev/null && initctl version | grep -q upstart \ && [ -e "$UPSTARTDIR/${INITSCRIPTID}.conf" ] then is_upstart=1 elif test ! -f "${INITDPREFIX}${INITSCRIPTID}" ; then ## Verifies if the given initscript ID is known ## For sysvinit, this error is critical printerror unknown initscript, ${INITDPREFIX}${INITSCRIPTID} not found. if [ ! -e "$UPSTARTDIR/${INITSCRIPTID}.conf" ]; then # If the init script doesn't exist, but the upstart job does, we # defer the error exit; we might be running in a chroot and # policy-rc.d might say not to start the job anyway, in which case # we don't want to exit non-zero. exit 100 fi fi ## Queries sysvinit for the current runlevel RL=`${RUNLEVELHELPER} | sed 's/.*\ //'` if test ! $? ; then printerror "could not determine current runlevel" if test x${RETRY} = x ; then exit 102 fi RL= fi ## Running ${RUNLEVELHELPER} to get current runlevel does not work in ## the boot runlevel (scripts in /etc/rcS.d/), as /var/run/utmp ## contains runlevel 0 or 6 (written at shutdown) at that point. if test x${RL} = x0 || test x${RL} = x6 ; then if ps -fp 1 | grep -q 'init boot' ; then RL=S fi fi ## Handles shutdown sequences VERY safely ## i.e.: forget about policy, and do all we can to run the script. ## BTW, why the heck are we being run in a shutdown runlevel?! if test x${RL} = x0 || test x${RL} = x6 ; then FORCE=yes RETRY=yes POLICYHELPER= BEQUIET= printerror "-----------------------------------------------------" printerror "WARNING: 'invoke-rc.d ${INITSCRIPTID} ${ACTION}' called" printerror "during shutdown sequence." printerror "enabling safe mode: initscript policy layer disabled" printerror "-----------------------------------------------------" fi ## Verifies the existance of proper S??initscriptID and K??initscriptID ## *links* in the proper /etc/rc?.d/ directory verifyrclink () { # # verifies if parameters are non-dangling symlinks # all parameters are verified # doexit= while test $# -gt 0 ; do if test ! -L "$1" ; then printerror not a symlink: $1 doexit=102 fi if test ! -f "$1" ; then printerror dangling symlink: $1 doexit=102 fi shift done if test x${doexit} != x && test x${RETRY} = x; then if [ -n "$RELEASE_UPGRADE_IN_PROGRESS" ]; then printerror "release upgrade in progress, error is not fatal" exit 0 fi exit ${doexit} fi return 0 } # we do handle multiple links per runlevel # but we don't handle embedded blanks in link names :-( if test x${RL} != x ; then SLINK=`ls -d -Q ${RCDPREFIX}${RL}.d/S[0-9][0-9]${INITSCRIPTID} 2>/dev/null | xargs` KLINK=`ls -d -Q ${RCDPREFIX}${RL}.d/K[0-9][0-9]${INITSCRIPTID} 2>/dev/null | xargs` SSLINK=`ls -d -Q ${RCDPREFIX}S.d/S[0-9][0-9]${INITSCRIPTID} 2>/dev/null | xargs` verifyrclink ${SLINK} ${KLINK} ${SSLINK} fi testexec () { # # returns true if any of the parameters is # executable (after following links) # while test $# -gt 0 ; do if test -x "$1" ; then return 0 fi shift done return 1 } RC= ### ### LOCAL INITSCRIPT POLICY: Enforce need of a start entry ### in either runlevel S or current runlevel to allow start ### or restart. ### case ${ACTION} in start|restart) if testexec ${SLINK} ; then RC=104 elif testexec ${KLINK} ; then RC=101 elif testexec ${SSLINK} ; then RC=104 fi ;; esac # test if /etc/init.d/initscript is actually executable if [ -n "$is_upstart" ] || testexec "${INITDPREFIX}${INITSCRIPTID}" ; then if test x${RC} = x && test x${MODE} = xquery ; then RC=105 fi # call policy layer querypolicy case ${RC} in 101|104) ;; *) if test x${MODE} != xquery ; then printerror policy-rc.d returned error status ${RC} if test x${RETRY} = x ; then exit ${RC} else RC=102 fi fi ;; esac elif [ -z "$is_upstart" ] && test ! -f "${INITDPREFIX}${INITSCRIPTID}" ; then # call policy layer. If the policy denies the execution, pass it on. # otherwise, if the policy *allows* the execution, there's a # misconfiguration somewhere and we throw an error. querypolicy case $RC in 101) ;; *) exit 100 ;; esac else ### ### LOCAL INITSCRIPT POLICY: non-executable initscript; deny exec. ### (this is common sense, actually :^P ) ### RC=101 fi ## Handles --query if test x${MODE} = xquery ; then exit ${RC} fi setechoactions () { if test $# -gt 1 ; then echoaction=true else echoaction= fi } getnextaction () { saction=$1 shift ACTION="$@" } if [ -n "$is_upstart" ]; then RUNNING= DISABLED= if status "$INITSCRIPTID" 2>/dev/null | grep -q ' start/'; then RUNNING=1 fi UPSTART_VERSION_RUNNING=$(initctl version|awk '{print $3}'|tr -d ')') if dpkg --compare-versions "$UPSTART_VERSION_RUNNING" ge 0.9.7 then initctl show-config -e "$INITSCRIPTID"|grep -q '^ start on' || DISABLED=1 fi fi ## Executes initscript ## note that $ACTION is a space-separated list of actions ## to be attempted in order until one suceeds. if test x${FORCE} != x || test ${RC} -eq 104 ; then if [ -n "$is_upstart" ] || testexec "${INITDPREFIX}${INITSCRIPTID}" ; then RC=102 setechoactions ${ACTION} while test ! -z "${ACTION}" ; do getnextaction ${ACTION} if test ! -z ${echoaction} ; then printerror executing initscript action \"${saction}\"... fi if [ -n "$is_upstart" ]; then case $saction in status) "$saction" "$INITSCRIPTID" && exit 0 ;; start|stop) if [ -z "$RUNNING" ] && [ "$saction" = "stop" ]; then exit 0 elif [ -n "$RUNNING" ] && [ "$saction" = "start" ]; then exit 0 elif [ -n "$DISABLED" ] && [ "$saction" = "start" ]; then exit 0 fi $saction "$INITSCRIPTID" && exit 0 ;; restart) if [ -n "$RUNNING" ] ; then stop "$INITSCRIPTID" fi # If the job is disabled and is not currently # running, the job is not restarted. However, if # the job is disabled but has been forced into # the running state, we *do* stop and restart it # since this is expected behaviour # for the admin who forced the start. if [ -n "$DISABLED" ] && [ -z "$RUNNING" ]; then exit 0 fi start "$INITSCRIPTID" && exit 0 ;; reload|force-reload) reload "$INITSCRIPTID" && exit 0 ;; *) # This will almost certainly fail, but give it a try initctl "$saction" "$INITSCRIPTID" && exit 0 ;; esac else "${INITDPREFIX}${INITSCRIPTID}" "${saction}" "$@" && exit 0 fi RC=$? if test ! -z "${ACTION}" ; then printerror action \"${saction}\" failed, trying next action... fi done printerror initscript ${INITSCRIPTID}, action \"${saction}\" failed. if [ -n "$RELEASE_UPGRADE_IN_PROGRESS" ]; then printerror "release upgrade in progress, error is not fatal" exit 0 fi exit ${RC} fi exit 102 fi ## Handles --disclose-deny and denied "status" action (bug #381497) if test ${RC} -eq 101 && test x${RETURNFAILURE} = x ; then if test "x${ACTION%% *}" = "xstatus"; then printerror emulating initscript action \"status\", returning \"unknown\" RC=4 else RC=0 fi else formataction ${ACTION} printerror initscript ${naction} \"${printaction}\" not executed. fi exit ${RC} ubuntu-release-upgrader-0.220.10/DistUpgrade/SimpleGtkbuilderApp.py0000644000000000000000000000376412431225715022101 0ustar """ SimpleGladeApp.py Module that provides an object oriented abstraction to pygtk and libglade. Copyright (C) 2004 Sandino Flores Moreno """ # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA import logging import gtk # based on SimpleGladeApp class SimpleGtkbuilderApp: def __init__(self, path, domain): self.builder = gtk.Builder() self.builder.set_translation_domain(domain) self.builder.add_from_file(path) self.builder.connect_signals(self) for o in self.builder.get_objects(): if issubclass(type(o), gtk.Buildable): name = gtk.Buildable.get_name(o) setattr(self, name, o) else: logging.debug("WARNING: can not get name for '%s'" % o) def run(self): """ Starts the main loop of processing events checking for Control-C. The default implementation checks wheter a Control-C is pressed, then calls on_keyboard_interrupt(). Use this method for starting programs. """ try: gtk.main() except KeyboardInterrupt: self.on_keyboard_interrupt() def on_keyboard_interrupt(self): """ This method is called by the default implementation of run() after a program is finished by pressing Control-C. """ pass ubuntu-release-upgrader-0.220.10/DistUpgrade/__init__.py0000644000000000000000000000000012431225715017705 0ustar ubuntu-release-upgrader-0.220.10/DistUpgrade/fetch-progress.ui0000644000000000000000000000510112431225715021075 0ustar Dialog 0 0 408 129 Dialog 0 24 Qt::Vertical 397 5 QDialogButtonBox::Close buttonBox accepted() Dialog accept() 271 169 271 94 buttonBox rejected() Dialog reject() 271 169 271 94 ubuntu-release-upgrader-0.220.10/DistUpgrade/ReleaseNotesViewer.py0000644000000000000000000001675113262671233021750 0ustar # ReleaseNotesViewer.py # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- # # Copyright (c) 2006 Sebastian Heinlein # # Author: Sebastian Heinlein # # This modul provides an inheritance of the Gtk.TextView that is # aware of http URLs and allows to open them in a browser. # It is based on the pygtk-demo "hypertext". # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from gi.repository import Pango from gi.repository import Gtk, GObject, Gdk import os import subprocess def open_url(url): """Open the specified URL in a browser""" # Find an appropiate browser if os.path.exists("/usr/bin/xdg-open"): command = ["xdg-open", url] elif os.path.exists("/usr/bin/exo-open"): command = ["exo-open", url] elif os.path.exists('/usr/bin/gnome-open'): command = ['gnome-open', url] else: command = ['x-www-browser', url] # Avoid to run the browser as user root if os.getuid() == 0 and 'SUDO_USER' in os.environ: command = ['sudo', '-u', os.environ['SUDO_USER']] + command elif os.getuid() == 0 and 'PKEXEC_UID' in os.environ: command = ['sudo', '-H', '-u', '#' + os.environ['PKEXEC_UID']] + command subprocess.Popen(command) class ReleaseNotesViewer(Gtk.TextView): def __init__(self, notes): """Init the ReleaseNotesViewer as an Inheritance of the Gtk.TextView. Load the notes into the buffer and make links clickable""" # init the parent GObject.GObject.__init__(self) # global hovering over link state self.hovering = False self.first = True # setup the buffer and signals self.set_property("editable", False) self.set_cursor_visible(False) self.modify_font(Pango.FontDescription("monospace")) self.buffer = Gtk.TextBuffer() self.set_buffer(self.buffer) self.buffer.set_text(notes) self.connect("button-press-event", self.button_press_event) self.connect("motion-notify-event", self.motion_notify_event) self.connect("visibility-notify-event", self.visibility_notify_event) # search for links in the notes and make them clickable self.search_links() def tag_link(self, start, end, url): """Apply the tag that marks links to the specified buffer selection""" tag = self.buffer.create_tag(None, foreground="blue", underline=Pango.Underline.SINGLE) tag.url = url self.buffer.apply_tag(tag, start, end) def search_links(self): """Search for http URLs in the buffer and call the tag_link method for each one to tag them as links""" # start at the beginning of the buffer iter = self.buffer.get_iter_at_offset(0) while 1: # search for the next URL in the buffer ret = iter.forward_search("http://", Gtk.TextSearchFlags.VISIBLE_ONLY, None) # if we reach the end break the loop if not ret: break # get the position of the protocol prefix (match_start, match_end) = ret match_tmp = match_end.copy() while 1: # extend the selection to the complete URL if match_tmp.forward_char(): text = match_end.get_text(match_tmp) if text in (" ", ")", "]", "\n", "\t"): break else: break match_end = match_tmp.copy() # call the tagging method for the complete URL url = match_start.get_text(match_end) self.tag_link(match_start, match_end, url) # set the starting point for the next search iter = match_end def button_press_event(self, text_view, event): """callback for mouse click events""" if event.button != 1: return False # try to get a selection try: (start, end) = self.buffer.get_selection_bounds() except ValueError: pass else: if start.get_offset() != end.get_offset(): return False # get the iter at the mouse position (x, y) = self.window_to_buffer_coords(Gtk.TextWindowType.WIDGET, int(event.x), int(event.y)) iter = self.get_iter_at_location(x, y) # call open_url if an URL is assigned to the iter tags = iter.get_tags() for tag in tags: url = getattr(tag, "url", None) if url != "": open_url(url) break def motion_notify_event(self, text_view, event): """callback for the mouse movement event, that calls the check_hovering method with the mouse postition coordiantes""" x, y = text_view.window_to_buffer_coords(Gtk.TextWindowType.WIDGET, int(event.x), int(event.y)) self.check_hovering(x, y) self.get_window(Gtk.TextWindowType.TEXT).get_pointer() return False def visibility_notify_event(self, text_view, event): """callback if the widgets gets visible (e.g. moves to the foreground) that calls the check_hovering method with the mouse position coordinates""" window = text_view.get_window(Gtk.TextWindowType.TEXT) (screen, wx, wy, mod) = window.get_pointer() (bx, by) = text_view.window_to_buffer_coords( Gtk.TextWindowType.WIDGET, wx, wy) self.check_hovering(bx, by) return False def check_hovering(self, x, y): """Check if the mouse is above a tagged link and if yes show a hand cursor""" _hovering = False # get the iter at the mouse position iter = self.get_iter_at_location(x, y) # set _hovering if the iter has the tag "url" tags = iter.get_tags() for tag in tags: url = getattr(tag, "url", None) if url != "": _hovering = True break # change the global hovering state if _hovering != self.hovering or self.first: self.first = False self.hovering = _hovering # Set the appropriate cursur icon if self.hovering: self.get_window(Gtk.TextWindowType.TEXT).set_cursor( Gdk.Cursor.new(Gdk.CursorType.HAND2)) else: self.get_window(Gtk.TextWindowType.TEXT).set_cursor( Gdk.Cursor.new(Gdk.CursorType.LEFT_PTR)) if __name__ == "__main__": # some simple test code win = Gtk.Window() rv = ReleaseNotesViewer(open("../DistUpgrade/ReleaseAnnouncement").read()) win.add(rv) win.show_all() Gtk.main() ubuntu-release-upgrader-0.220.10/DistUpgrade/ReleaseAnnouncement.html0000644000000000000000000000507012602566762022443 0ustar Welcome to Ubuntu 14.04 'Trusty Tahr'

Welcome to Ubuntu 14.04 'Trusty Tahr'

The Ubuntu team is proud to announce Ubuntu 14.04 'Trusty Tahr'.

To see what's new in this release, visit:

  http://www.ubuntu.com/desktop/features

Ubuntu is a Linux distribution for your desktop or server, with a fast and easy install, regular releases, a tight selection of excellent applications installed by default, and almost any other software you can imagine available through the network.

We hope you enjoy Ubuntu.

Feedback and Helping

If you would like to help shape Ubuntu, take a look at the list of ways you can participate at

  http://www.ubuntu.com/community/participate/

Your comments, bug reports, patches and suggestions will help ensure that our next release is the best release of Ubuntu ever. If you feel that you have found a bug please read:

  http://help.ubuntu.com/community/ReportingBugs

Then report bugs using apport in Ubuntu. For example:

  ubuntu-bug linux

will open a bug report in Launchpad regarding the linux package.

If you have a question, or if you think you may have found a bug but aren't sure, first try asking on the #ubuntu or #ubuntu-bugs IRC channels on Freenode, on the Ubuntu Users mailing list, or on the Ubuntu forums:

  http://help.ubuntu.com/community/InternetRelayChat
  http://lists.ubuntu.com/mailman/listinfo/ubuntu-users
  http://www.ubuntuforums.org/

More Information

You can find out more about Ubuntu on our website, IRC channel and wiki. If you're new to Ubuntu, please visit:

  http://www.ubuntu.com/

To sign up for future Ubuntu announcements, please subscribe to Ubuntu's very low volume announcement list at:

  http://lists.ubuntu.com/mailman/listinfo/ubuntu-announce
ubuntu-release-upgrader-0.220.10/DistUpgrade/ReleaseNotesViewerWebkit.py0000644000000000000000000000413612431225715023105 0ustar # ReleaseNotesViewer.py # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- # # Copyright (c) 2011 Canonical # # Author: Michael Vogt # # This modul provides an inheritance of the Gtk.TextView that is # aware of http URLs and allows to open them in a browser. # It is based on the pygtk-demo "hypertext". # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import from gi.repository import Gtk from gi.repository import WebKit from .ReleaseNotesViewer import open_url class ReleaseNotesViewerWebkit(WebKit.WebView): def __init__(self, notes_url): super(ReleaseNotesViewerWebkit, self).__init__() self.load_uri(notes_url) self.connect("navigation-policy-decision-requested", self._on_navigation_policy_decision_requested) def _on_navigation_policy_decision_requested(self, view, frame, request, action, policy): open_url(request.get_uri()) policy.ignore() return True if __name__ == "__main__": win = Gtk.Window() win.set_size_request(600, 400) scroll = Gtk.ScrolledWindow() rv = ReleaseNotesViewerWebkit("http://archive.ubuntu.com/ubuntu/dists/" "natty/main/dist-upgrader-all/0.150/" "ReleaseAnnouncement.html") scroll.add(rv) win.add(scroll) win.show_all() Gtk.main() ubuntu-release-upgrader-0.220.10/DistUpgrade/ReleaseAnnouncement0000644000000000000000000000326312431225715021470 0ustar = Welcome to Ubuntu 14.04 'Trusty Tahr' = The Ubuntu team is proud to announce Ubuntu 14.04 'Trusty Tahr'. To see what's new in this release, visit: http://www.ubuntu.com/desktop/features Ubuntu is a Linux distribution for your desktop or server, with a fast and easy install, regular releases, a tight selection of excellent applications installed by default, and almost any other software you can imagine available through the network. We hope you enjoy Ubuntu. == Feedback and Helping == If you would like to help shape Ubuntu, take a look at the list of ways you can participate at http://www.ubuntu.com/community/participate/ Your comments, bug reports, patches and suggestions will help ensure that our next release is the best release of Ubuntu ever. If you feel that you have found a bug please read: http://help.ubuntu.com/community/ReportingBugs Then report bugs using apport in Ubuntu. For example: ubuntu-bug linux will open a bug report in Launchpad regarding the linux package. If you have a question, or if you think you may have found a bug but aren't sure, first try asking on the #ubuntu or #ubuntu-bugs IRC channels on Freenode, on the Ubuntu Users mailing list, or on the Ubuntu forums: http://help.ubuntu.com/community/InternetRelayChat http://lists.ubuntu.com/mailman/listinfo/ubuntu-users http://www.ubuntuforums.org/ == More Information == You can find out more about Ubuntu on our website, IRC channel and wiki. If you're new to Ubuntu, please visit: http://www.ubuntu.com/ To sign up for future Ubuntu announcements, please subscribe to Ubuntu's very low volume announcement list at: http://lists.ubuntu.com/mailman/listinfo/ubuntu-announce ubuntu-release-upgrader-0.220.10/DistUpgrade/README0000644000000000000000000000551712431225715016476 0ustar General ------- The dist-upgrader is designed to make upgrades for ubuntu (or similar distributions) easy and painless. It supports both network mode and cdrom upgrades. The cdromupgrade will ask if it should use the network or not. There is a wrapper script "cdromupgrade" (that assumes the file of the upgrade life in CDROM_ROOT/dists/stable/dist-upgrader/binary-all/) that can be put onto the CD and it will support upgrades directly from the CD. Environment ----------- The following environment variable will be *honored*: RELEASE_UPGRADE_NO_FORCE_OVERWRITE: - if that is set, no --force-overwrite is used RELEASE_UPRADER_NO_APPORT: - if that is set, apport is not run in case of package install falures RELEASE_UPRADER_ALLOW_THIRD_PARTY: - if that is set, third party repositories will not be commented out but instead tried to be upgraded The following environment variable will be *set* by the upgrader: RELEASE_UPGRADE_IN_PROGRESS: - set to "1" if a release-upgrade is running (and not a normal package/security upgrade) RELEASE_UPGRADE_MODE: - either "desktop" or "server" Configuration ------------- The DistUpgrade.cfg format is based on the python ConfigParser. It supports the following sections: [View] - controls the output Depends: Packages that must be installed to the version specified (just like a regular depends line in a pkg). [$view-used] Depends: just like the global "view" depend but only evaluated when the specific view is in use [Distro] - global distribution specfic options BaseMetaPkgs: the basic meta-pkgs that must be installed (ubuntu-base usually) MetaPkgs: packages that define a "desktop" (e.g. ubuntu-desktop) PostUpgrade{Install,Remove,Purge}: action right after the upgrade was calculated in the cache (marking happens *before* the cache.commit()) ForcedObsoletes: Obsolete packages that the user is asked about after the upgrade (marking happens *after* the cache.commit()) RemoveEssentialOk: Those packages are ok to remove even though they are essential KeepInstalledPkgs: If the package was installed before, it should still be installed after the upgrade KeepInstalledSection: Packages from this section that were installed should always be installed afterwards as well (useful for eg translations) [$meta-pkg] KeyDependencies: Dependencies that are considered "key" dependencies of the meta-pkg to detect if it was installed but later removed by the user PostUpgrade{Install,Remove,Purge}: s.above ForcedObsoletes: s.above [Files] - file specific stuff [Sources] - how to rewrite the sources.list [Network] - network specific options [PreRequists] - use specific packages for dist-upgrade Packages= List of what packages to look for SourcesList=a sources.list fragment that will be placed into /etc/apt/sources.list.d and that contains the backported pkgsubuntu-release-upgrader-0.220.10/DistUpgrade/SimpleGtk3builderApp.py0000644000000000000000000000400712431225715022153 0ustar """ SimpleGladeApp.py Module that provides an object oriented abstraction to pygtk and libglade. Copyright (C) 2004 Sandino Flores Moreno """ # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA import logging from gi.repository import Gtk # based on SimpleGladeApp class SimpleGtkbuilderApp: def __init__(self, path, domain): self.builder = Gtk.Builder() self.builder.set_translation_domain(domain) self.builder.add_from_file(path) self.builder.connect_signals(self) for o in self.builder.get_objects(): if issubclass(type(o), Gtk.Buildable): name = Gtk.Buildable.get_name(o) setattr(self, name, o) else: logging.debug("WARNING: can not get name for '%s'" % o) def run(self): """ Starts the main loop of processing events checking for Control-C. The default implementation checks wheter a Control-C is pressed, then calls on_keyboard_interrupt(). Use this method for starting programs. """ try: Gtk.main() except KeyboardInterrupt: self.on_keyboard_interrupt() def on_keyboard_interrupt(self): """ This method is called by the default implementation of run() after a program is finished by pressing Control-C. """ pass ubuntu-release-upgrader-0.220.10/DistUpgrade/xorg_fix_proprietary.py0000755000000000000000000001566112431225715022461 0ustar #!/usr/bin/python # # this script will exaimne /etc/xorg/xorg.conf and # transition from broken proprietary drivers to the free ones # from __future__ import print_function import sys import os import logging import time import shutil import subprocess import apt_pkg apt_pkg.init() # main xorg.conf XORG_CONF="/etc/X11/xorg.conf" # really old and most likely obsolete conf OBSOLETE_XORG_CONF="/etc/X11/XF86Config-4" def remove_input_devices(xorg_source=XORG_CONF, xorg_destination=XORG_CONF): logging.debug("remove_input_devices") content=[] in_input_devices = False with open(xorg_source) as xorg_source_file: for raw in xorg_source_file: line = raw.strip() if (line.lower().startswith("section") and line.lower().split("#")[0].strip().endswith('"inputdevice"')): logging.debug("found 'InputDevice' section") content.append("# commented out by ubuntu-release-upgrader, HAL is now used and auto-detects devices\n") content.append("# Keyboard settings are now read from /etc/default/console-setup\n") content.append("#"+raw) in_input_devices=True elif line.lower().startswith("endsection") and in_input_devices: content.append("#"+raw) in_input_devices=False elif line.lower().startswith("inputdevice"): logging.debug("commenting out '%s' " % line) content.append("# commented out by ubuntu-release-upgrader, HAL is now used and auto-detects devices\n") content.append("# Keyboard settings are now read from /etc/default/console-setup\n") content.append("#"+raw) elif in_input_devices: logging.debug("commenting out '%s' " % line) content.append("#"+raw) else: content.append(raw) with open(xorg_destination+".new", "w") as xorg_destination_file: xorg_destination_file.write("".join(content)) os.rename(xorg_destination+".new", xorg_destination) return True def replace_driver_from_xorg(old_driver, new_driver, xorg=XORG_CONF): """ this removes old_driver driver from the xorg.conf and subsitutes it with the new_driver """ if not os.path.exists(xorg): logging.warning("file %s not found" % xorg) return content=[] with open(xorg) as xorg_file: for line in xorg_file: # remove comments s=line.split("#")[0].strip() # check for fglrx driver entry if (s.lower().startswith("driver") and s.endswith('"%s"' % old_driver)): logging.debug("line '%s' found" % line) line='\tDriver\t"%s"\n' % new_driver logging.debug("replacing with '%s'" % line) content.append(line) # write out the new version with open(xorg) as xorg_file: if xorg_file.readlines() != content: logging.info("saving new %s (%s -> %s)" % (xorg, old_driver, new_driver)) with open(xorg+".xorg_fix", "w") as xorg_fix_file: xorg_fix_file.write("".join(content)) os.rename(xorg+".xorg_fix", xorg) def comment_out_driver_from_xorg(old_driver, xorg=XORG_CONF): """ this comments out a driver from xorg.conf """ if not os.path.exists(xorg): logging.warning("file %s not found" % xorg) return content=[] with open(xorg) as xorg_file: for line in xorg_file: # remove comments s=line.split("#")[0].strip() # check for old_driver driver entry if (s.lower().startswith("driver") and s.endswith('"%s"' % old_driver)): logging.debug("line '%s' found" % line) line='#%s' % line logging.debug("replacing with '%s'" % line) content.append(line) # write out the new version with open(xorg) as xorg_file: if xorg_file.readlines() != content: logging.info("saveing new %s (commenting %s)" % (xorg, old_driver)) with open(xorg+".xorg_fix", "w") as xorg_fix_file: xorg_fix_file.write("".join(content)) os.rename(xorg+".xorg_fix", xorg) def is_multiseat(xorg_source=XORG_CONF): " check if we have a multiseat xorg config " def is_serverlayout_line(line): return (not line.strip().startswith("#") and line.strip().lower().endswith('"serverlayout"')) with open(xorg_source) as xorg_file: msl = len([line for line in xorg_file if is_serverlayout_line(line)]) logging.debug("is_multiseat: lines %i", msl) return msl > 1 if __name__ == "__main__": if not os.getuid() == 0: print("Need to run as root") sys.exit(1) # we pretend to be do-release-upgrade so that apport picks up when we crash sys.argv[0] = "/usr/bin/do-release-upgrade" # setup logging logging.basicConfig(level=logging.DEBUG, filename="/var/log/dist-upgrade/xorg_fixup.log", filemode='w') logging.info("%s running" % sys.argv[0]) if os.path.exists(OBSOLETE_XORG_CONF): old = OBSOLETE_XORG_CONF new = OBSOLETE_XORG_CONF+".obsolete" logging.info("renaming obsolete %s -> %s" % (old, new)) os.rename(old, new) if not os.path.exists(XORG_CONF): logging.info("No xorg.conf, exiting") sys.exit(0) # remove empty xorg.conf to help xorg and its auto probing logic # (LP: #439551) if os.path.getsize(XORG_CONF) == 0: logging.info("xorg.conf is zero size, removing") os.remove(XORG_CONF) sys.exit(0) #make a backup of the xorg.conf backup = XORG_CONF + ".dist-upgrade-" + time.strftime("%Y%m%d%H%M") logging.debug("creating backup '%s'" % backup) shutil.copy(XORG_CONF, backup) if not os.path.exists("/usr/lib/xorg/modules/drivers/fglrx_drv.so"): with open(XORG_CONF) as xorg_conf_file: if "fglrx" in xorg_conf_file.read(): logging.info("Removing fglrx from %s" % XORG_CONF) comment_out_driver_from_xorg("fglrx") if not os.path.exists("/usr/lib/xorg/modules/drivers/nvidia_drv.so"): with open(XORG_CONF) as xorg_conf_file: if "nvidia" in xorg_conf_file.read(): logging.info("Removing nvidia from %s" % XORG_CONF) comment_out_driver_from_xorg("nvidia") # now run the removeInputDevices() if we have a new xserver ver=subprocess.Popen(["dpkg-query","-W","-f=${Version}","xserver-xorg-core"], stdout=subprocess.PIPE, universal_newlines=True).communicate()[0] logging.info("xserver-xorg-core version is '%s'" % ver) if ver and apt_pkg.version_compare(ver, "2:1.5.0") > 0: if not is_multiseat(): remove_input_devices() else: logging.info("multiseat setup, ignoring") ubuntu-release-upgrader-0.220.10/DistUpgrade/dialog_conffile.ui0000644000000000000000000000667212431225715021264 0ustar dialog_conffile 0 0 372 319 Configuration File Change true Show Difference >>> 0 0 image0 false Qt::Horizontal QSizePolicy::Expanding 121 21 true Qt::Horizontal QSizePolicy::Expanding 336 20 Keep Replace keep_button clicked() dialog_conffile reject() 20 20 20 20 replace_button clicked() dialog_conffile accept() 20 20 20 20 ubuntu-release-upgrader-0.220.10/DistUpgrade/window_main.ui0000644000000000000000000001650212431225715020464 0ustar window_main 0 0 349 294 Distribution Upgrade Show Terminal >>> Qt::Horizontal QSizePolicy::Expanding 302 21 false Qt::Vertical QSizePolicy::Expanding 20 16 false 0 0 false 0 0 false Preparing to upgrade false 0 0 false 0 0 false Getting new packages false Cleaning up false Installing the upgrades false Setting new software channels false Restarting the computer false 0 0 false 0 0 false <b><big>Upgrading Ubuntu to version 14.04</big></b> false QFrame::StyledPanel QFrame::Raised 24 ubuntu-release-upgrader-0.220.10/DistUpgrade/Ubuntu.mirrors0000777000000000000000000000000012431225715031500 2/usr/share/python-apt/templates/Ubuntu.mirrorsustar ubuntu-release-upgrader-0.220.10/DistUpgrade/zz-update-grub0000644000000000000000000000076012431225715020414 0ustar #! /bin/sh set -e which update-grub >/dev/null 2>&1 || exit 0 set -- $DEB_MAINT_PARAMS mode="${1#\'}" mode="${mode%\'}" case $0:$mode in # Only run on postinst configure and postrm remove, to avoid wasting # time by calling update-grub multiple times on upgrade and removal. # Also run if we have no DEB_MAINT_PARAMS, in order to work with old # kernel packages. */postinst.d/*:|*/postinst.d/*:configure|*/postrm.d/*:|*/postrm.d/*:remove) exec update-grub ;; esac exit 0 ubuntu-release-upgrader-0.220.10/DistUpgrade/screenrc0000644000000000000000000000010112431225715017325 0ustar logfile /var/log/dist-upgrade/screenlog.%n logtstamp on zombie xrubuntu-release-upgrader-0.220.10/DistUpgrade/apt_clone.py0000777000000000000000000000000012431225715030220 2/usr/lib/python3/dist-packages/apt_clone.pyustar ubuntu-release-upgrader-0.220.10/DistUpgrade/utils.py0000777000000000000000000000000012431225715032215 2/usr/lib/python3/dist-packages/UpdateManager/Core/utils.pyustar ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeApport.py0000644000000000000000000001076012431225715021565 0ustar import os import logging import subprocess import sys import gettext import errno APPORT_WHITELIST = { "apt.log": "Aptlog", "apt-term.log": "Apttermlog", "apt-clone_system_state.tar.gz": "Aptclonesystemstate.tar.gz", "history.log": "Historylog", "lspci.txt": "Lspcitxt", "main.log": "Mainlog", "term.log": "Termlog", "screenlog.0": "Screenlog", "xorg_fixup.log": "Xorgfixup" } def _apport_append_logfiles(report, logdir="/var/log/dist-upgrade/"): dirname = 'VarLogDistupgrade' for fname in APPORT_WHITELIST: f = os.path.join(logdir, fname) if not os.path.isfile(f) or os.path.getsize(f) == 0: continue ident = dirname + APPORT_WHITELIST[fname] if os.access(f, os.R_OK): report[ident] = (open(f), ) elif os.path.exists(f): try: from apport.hookutils import root_command_output report[ident] = root_command_output(["cat", '%s' % f], decode_utf8=False) except ImportError: logging.error("failed to import apport python module, can't include: %s" % ident) pass def apport_crash(type, value, tb): logging.debug("running apport_crash()") try: # we don't depend on python3-apport because of servers from apport_python_hook import apport_excepthook from apport.report import Report except ImportError as e: logging.error("failed to import apport python module, can't generate crash: %s" % e) return False from .DistUpgradeVersion import VERSION # we pretend we are do-release-upgrade sys.argv[0] = "/usr/bin/do-release-upgrade" apport_excepthook(type, value, tb) # now add the files in /var/log/dist-upgrade/* if os.path.exists('/var/crash/_usr_bin_do-release-upgrade.0.crash'): report = Report() report.setdefault('Tags', 'dist-upgrade') # use the version of the release-upgrader tarball, not the installed # package report.setdefault('Package', 'ubuntu-release-upgrader-core 1:%s' % VERSION) _apport_append_logfiles(report) report.add_to_existing('/var/crash/_usr_bin_do-release-upgrade.0.crash') return True def apport_pkgfailure(pkg, errormsg): logging.debug("running apport_pkgfailure() %s: %s", pkg, errormsg) LOGDIR = "/var/log/dist-upgrade/" s = "/usr/share/apport/package_hook" # we do not report followup errors from earlier failures # dpkg messages will not be translated if DPKG_UNTRANSLATED_MESSAGES is # set which it is by default so check for the English message first if "dependency problems - leaving unconfigured" in errormsg: logging.debug("dpkg error because of dependency problems, not " "reporting against %s " % pkg) return False if gettext.dgettext('dpkg', "dependency problems - leaving unconfigured") in errormsg: logging.debug("dpkg error because of dependency problems, not " "reporting against %s " % pkg) return False # we do not run apport_pkgfailure for full disk errors if os.strerror(errno.ENOSPC) in errormsg: logging.debug("dpkg error because of full disk, not reporting against %s " % pkg) return False if os.path.exists(s): args = [s, "-p", pkg] args.extend(["--tags", "dist-upgrade"]) for fname in APPORT_WHITELIST: args.extend(["-l", os.path.join(LOGDIR, fname)]) try: p = subprocess.Popen(args, stdin=subprocess.PIPE, universal_newlines=True) p.stdin.write(errormsg) p.stdin.close() #p.wait() except Exception as e: logging.warning("Failed to run apport (%s)" % e) return False return True return False def run_apport(): " run apport, check if we have a display " if "RELEASE_UPRADER_NO_APPORT" in os.environ: logging.debug("RELEASE_UPRADER_NO_APPORT env set") return False if "DISPLAY" in os.environ: # update-notifier will notify about the crash return True elif os.path.exists("/usr/bin/apport-cli"): try: return (subprocess.call("/usr/bin/apport-cli") == 0) except Exception: logging.exception("Unable to launch '/usr/bin/apport-cli'") return False logging.debug("can't find apport") return False if __name__ == "__main__": apport_crash(None, None, None) ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeQuirks.py0000644000000000000000000007062012431225715021577 0ustar # DistUpgradeQuirks.py # # Copyright (c) 2004-2010 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import import apt import atexit import glob import logging import os import re import hashlib import shutil import sys import subprocess from subprocess import PIPE, Popen from .utils import get_arch from .DistUpgradeGettext import gettext as _ from .janitor.plugincore.manager import PluginManager class DistUpgradeQuirks(object): """ This class collects the various quirks handlers that can be hooked into to fix/work around issues that the individual releases have """ def __init__(self, controller, config): self.controller = controller self._view = controller._view self.config = config self.uname = Popen(["uname", "-r"], stdout=PIPE, universal_newlines=True).communicate()[0].strip() self.arch = get_arch() self.plugin_manager = PluginManager(self.controller, ["./plugins"]) self._poke = None # the quirk function have the name: # $Name (e.g. PostUpgrade) # $todist$Name (e.g. intrepidPostUpgrade) # $from_$fromdist$Name (e.g. from_dapperPostUpgrade) def run(self, quirksName): """ Run the specific quirks handler, the follow handlers are supported: - PreCacheOpen: run *before* the apt cache is opened the first time to set options that affect the cache - PostInitialUpdate: run *before* the sources.list is rewritten but after a initial apt-get update - PostDistUpgradeCache: run *after* the dist-upgrade was calculated in the cache - StartUpgrade: before the first package gets installed (but the download is finished) - PostUpgrade: run *after* the upgrade is finished successfully and packages got installed - PostCleanup: run *after* the cleanup (orphaned etc) is finished """ # we do not run any quirks in partialUpgrade mode if self.controller._partialUpgrade: logging.info("not running quirks in partialUpgrade mode") return to_release = self.config.get("Sources", "To") from_release = self.config.get("Sources", "From") # first check for matching plugins for condition in [ quirksName, "%s%s" % (to_release, quirksName), "from_%s%s" % (from_release, quirksName) ]: for plugin in self.plugin_manager.get_plugins(condition): logging.debug("running quirks plugin %s" % plugin) plugin.do_cleanup_cruft() # run the handler that is common to all dists funcname = "%s" % quirksName func = getattr(self, funcname, None) if func is not None: logging.debug("quirks: running %s" % funcname) func() # run the quirksHandler to-dist funcname = "%s%s" % (to_release, quirksName) func = getattr(self, funcname, None) if func is not None: logging.debug("quirks: running %s" % funcname) func() # now run the quirksHandler from_${FROM-DIST}Quirks funcname = "from_%s%s" % (from_release, quirksName) func = getattr(self, funcname, None) if func is not None: logging.debug("quirks: running %s" % funcname) func() # individual quirks handler that run *before* the cache is opened def PreCacheOpen(self): """ run before the apt cache is opened the first time """ logging.debug("running Quirks.PreCacheOpen") def oneiricPreCacheOpen(self): logging.debug("running Quirks.oneiricPreCacheOpen") # enable i386 multiach temporarely during the upgrade if on amd64 # this needs to be done very early as libapt caches the result # of the "getArchitectures()" call in aptconfig and its not possible # currently to invalidate this cache if apt.apt_pkg.config.find("Apt::Architecture") == "amd64": logging.debug( "multiarch: enabling i386 as a additional architecture") apt.apt_pkg.config.set("Apt::Architectures::", "i386") # increase case size to workaround bug in natty apt that # may cause segfault on cache grow apt.apt_pkg.config.set("APT::Cache-Start", str(48*1024*1024)) # individual quirks handler when the dpkg run is finished --------- def PostCleanup(self): " run after cleanup " logging.debug("running Quirks.PostCleanup") # quirks when run when the initial apt-get update was run ---------------- def from_lucidPostInitialUpdate(self): """ Quirks that are run before the sources.list is updated to the new distribution when upgrading from a lucid system (either to maverick or the new LTS) """ logging.debug("running %s" % sys._getframe().f_code.co_name) # systems < i686 will not upgrade self._test_and_fail_on_non_i686() self._test_and_warn_on_i8xx() def from_precisePostInitialUpdate(self): if self.arch in ['i386', 'amd64']: self._checkPae() self._test_and_warn_for_unity_3d_support() def oneiricPostInitialUpdate(self): self._test_and_warn_on_i8xx() def lucidPostInitialUpdate(self): """ quirks that are run before the sources.list is updated to lucid """ logging.debug("running %s" % sys._getframe().f_code.co_name) # upgrades on systems with < arvm6 CPUs will break self._test_and_fail_on_non_arm_v6() # vserver+upstart are problematic self._test_and_warn_if_vserver() # fglrx dropped support for some cards self._test_and_warn_on_dropped_fglrx_support() def nattyPostDistUpgradeCache(self): """ this function works around quirks in the maverick -> natty cache upgrade calculation """ self._add_kdegames_card_extra_if_installed() def maverickPostDistUpgradeCache(self): """ this function works around quirks in the lucid->maverick upgrade calculation """ self._add_extras_repository() self._gutenprint_fixup() # run right before the first packages get installed def StartUpgrade(self): self._applyPatches() self._removeOldApportCrashes() self._killUpdateNotifier() self._killKBluetooth() self._killScreensaver() self._pokeScreensaver() self._stopDocvertConverter() def oneiricStartUpgrade(self): logging.debug("oneiric StartUpgrade quirks") # fix grub issue if (os.path.exists("/usr/sbin/update-grub") and not os.path.exists("/etc/kernel/postinst.d/zz-update-grub")): # create a version of zz-update-grub to avoid depending on # the upgrade order. if that file is missing, we may end # up generating a broken grub.cfg targetdir = "/etc/kernel/postinst.d" if not os.path.exists(targetdir): os.makedirs(targetdir) logging.debug("copying zz-update-grub into %s" % targetdir) shutil.copy("zz-update-grub", targetdir) os.chmod(os.path.join(targetdir, "zz-update-grub"), 0o755) # enable multiarch permanently if apt.apt_pkg.config.find("Apt::Architecture") == "amd64": self._enable_multiarch(foreign_arch="i386") def from_hardyStartUpgrade(self): logging.debug("from_hardyStartUpgrade quirks") self._stopApparmor() # helpers def _get_pci_ids(self): """ return a set of pci ids of the system (using lspci -n) """ lspci = set() try: p = subprocess.Popen(["lspci", "-n"], stdout=subprocess.PIPE, universal_newlines=True) except OSError: return lspci for line in p.communicate()[0].split("\n"): if line: lspci.add(line.split()[2]) return lspci def _test_and_warn_for_unity_3d_support(self): UNITY_SUPPORT_TEST = "/usr/lib/nux/unity_support_test" if (not os.path.exists(UNITY_SUPPORT_TEST) or not "DISPLAY" in os.environ): return # see if there is a running unity, that service is used by both 2d,3d return_code = subprocess.call( ["ps", "-C", "unity-panel-service"], stdout=open(os.devnull, "w")) if return_code != 0: logging.debug( "_test_and_warn_for_unity_3d_support: no unity running") return # if we are here, we need to test and warn return_code = subprocess.call([UNITY_SUPPORT_TEST]) logging.debug( "_test_and_warn_for_unity_3d_support '%s' returned '%s'" % ( UNITY_SUPPORT_TEST, return_code)) if return_code != 0: res = self._view.askYesNoQuestion( _("Your graphics hardware may not be fully supported in " "Ubuntu 14.04."), _("Running the 'unity' desktop environment is not fully " "supported by your graphics hardware. You will maybe end " "up in a very slow environment after the upgrade. Our " "advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D " "Do you still want to continue with the upgrade?") ) if not res: self.controller.abort() def _test_and_warn_on_i8xx(self): I8XX_PCI_IDS = ["8086:7121", # i810 "8086:7125", # i810e "8086:1132", # i815 "8086:3577", # i830 "8086:2562", # i845 "8086:3582", # i855 "8086:2572", # i865 ] lspci = self._get_pci_ids() if set(I8XX_PCI_IDS).intersection(lspci): res = self._view.askYesNoQuestion( _("Your graphics hardware may not be fully supported in " "Ubuntu 12.04 LTS."), _("The support in Ubuntu 12.04 LTS for your Intel " "graphics hardware is limited " "and you may encounter problems after the upgrade. " "For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx " "Do you want to continue with the upgrade?") ) if not res: self.controller.abort() def _test_and_warn_on_dropped_fglrx_support(self): """ Some cards are no longer supported by fglrx. Check if that is the case and warn """ # this is to deal with the fact that support for some of the cards # that fglrx used to support got dropped if (self._checkVideoDriver("fglrx") and not self._supportInModaliases("fglrx")): res = self._view.askYesNoQuestion( _("Upgrading may reduce desktop " "effects, and performance in games " "and other graphically intensive " "programs."), _("This computer is currently using " "the AMD 'fglrx' graphics driver. " "No version of this driver is " "available that works with your " "hardware in Ubuntu 10.04 LTS.\n\n" "Do you want to continue?")) if not res: self.controller.abort() # if the user wants to continue we remove the fglrx driver # here because its no use (no support for this card) removals = [ "xorg-driver-fglrx", "xorg-driver-fglrx-envy", "fglrx-kernel-source", "fglrx-amdcccle", "xorg-driver-fglrx-dev", "libamdxvba1" ] logging.debug("remove %s" % ", ".join(removals)) l = self.controller.config.getlist("Distro", "PostUpgradePurge") for remove in removals: l.append(remove) self.controller.config.set("Distro", "PostUpgradePurge", ",".join(l)) def _test_and_fail_on_non_i686(self): """ Test and fail if the cpu is not i686 or more or if its a newer CPU but does not have the cmov feature (LP: #587186) """ # check on i386 only if self.arch == "i386": logging.debug("checking for i586 CPU") if not self._cpu_is_i686_and_has_cmov(): logging.error("not a i686 or no cmov") summary = _("No i686 CPU") msg = _("Your system uses an i586 CPU or a CPU that does " "not have the 'cmov' extension. " "All packages were built with " "optimizations requiring i686 as the " "minimal architecture. It is not possible to " "upgrade your system to a new Ubuntu release " "with this hardware.") self._view.error(summary, msg) self.controller.abort() def _cpu_is_i686_and_has_cmov(self, cpuinfo_path="/proc/cpuinfo"): if not os.path.exists(cpuinfo_path): logging.error("cannot open %s ?!?" % cpuinfo_path) return True cpuinfo = open(cpuinfo_path).read() # check family if re.search("^cpu family\s*:\s*[345]\s*", cpuinfo, re.MULTILINE): logging.debug("found cpu family [345], no i686+") return False # check flags for cmov match = re.search("^flags\s*:\s*(.*)", cpuinfo, re.MULTILINE) if match: if not "cmov" in match.group(1).split(): logging.debug("found flags '%s'" % match.group(1)) logging.debug("can not find cmov in flags") return False return True def _test_and_fail_on_non_arm_v6(self): """ Test and fail if the cpu is not a arm v6 or greater, from 9.10 on we do no longer support those CPUs """ if self.arch == "armel": if not self._checkArmCPU(): self._view.error( _("No ARMv6 CPU"), _("Your system uses an ARM CPU that is older " "than the ARMv6 architecture. " "All packages in karmic were built with " "optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to " "upgrade your system to a new Ubuntu release " "with this hardware.")) self.controller.abort() def _test_and_warn_if_vserver(self): """ upstart and vserver environments are not a good match, warn if we find one """ # verver test (LP: #454783), see if there is a init around try: os.kill(1, 0) except: logging.warn("no init found") res = self._view.askYesNoQuestion( _("No init available"), _("Your system appears to be a virtualised environment " "without an init daemon, e.g. Linux-VServer. " "Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual " "machine configuration first.\n\n" "Are you sure you want to continue?")) if not res: self.controller.abort() self._view.processEvents() def _checkArmCPU(self): """ parse /proc/cpuinfo and search for ARMv6 or greater """ logging.debug("checking for ARM CPU version") if not os.path.exists("/proc/cpuinfo"): logging.error("cannot open /proc/cpuinfo ?!?") return False cpuinfo = open("/proc/cpuinfo") if re.search("^Processor\s*:\s*ARMv[45]", cpuinfo.read(), re.MULTILINE): return False return True def _stopApparmor(self): """ /etc/init.d/apparmor stop (see bug #559433)""" if os.path.exists("/etc/init.d/apparmor"): logging.debug("/etc/init.d/apparmor stop") subprocess.call(["/etc/init.d/apparmor", "stop"]) def _stopDocvertConverter(self): " /etc/init.d/docvert-converter stop (see bug #450569)" if os.path.exists("/etc/init.d/docvert-converter"): logging.debug("/etc/init.d/docvert-converter stop") subprocess.call(["/etc/init.d/docvert-converter", "stop"]) def _killUpdateNotifier(self): "kill update-notifier" # kill update-notifier now to suppress reboot required if os.path.exists("/usr/bin/killall"): logging.debug("killing update-notifier") subprocess.call(["killall", "-q", "update-notifier"]) def _killKBluetooth(self): """killall kblueplugd kbluetooth (riddel requested it)""" if os.path.exists("/usr/bin/killall"): logging.debug("killing kblueplugd kbluetooth4") subprocess.call(["killall", "-q", "kblueplugd", "kbluetooth4"]) def _killScreensaver(self): """killall gnome-screensaver """ if os.path.exists("/usr/bin/killall"): logging.debug("killing gnome-screensaver") subprocess.call(["killall", "-q", "gnome-screensaver"]) def _pokeScreensaver(self): if (os.path.exists("/usr/bin/xdg-screensaver") and os.environ.get('DISPLAY')): logging.debug("setup poke timer for the scrensaver") cmd = "while true;" cmd += " do /usr/bin/xdg-screensaver reset >/dev/null 2>&1;" cmd += " sleep 30; done" try: self._poke = subprocess.Popen(cmd, shell=True) atexit.register(self._stopPokeScreensaver) except: logging.exception("failed to setup screensaver poke") def _stopPokeScreensaver(self): res = False if self._poke is not None: try: self._poke.terminate() res = self._poke.wait() except: logging.exception("failed to stop screensaver poke") self._poke = None return res def _removeOldApportCrashes(self): " remove old apport crash files and whoopsie control files " try: for ext in ['.crash', '.upload', '.uploaded']: for f in glob.glob("/var/crash/*%s" % ext): logging.debug("removing old %s file '%s'" % (ext, f)) os.unlink(f) except Exception as e: logging.warning("error during unlink of old crash files (%s)" % e) def _checkPae(self): " check PAE in /proc/cpuinfo " # upgrade from Precise will fail if PAE is not in cpu flags logging.debug("_checkPae") pae = 0 cpuinfo = open('/proc/cpuinfo').read() if re.search("^flags\s+:.* pae ", cpuinfo, re.MULTILINE): pae = 1 if not pae: logging.error("no pae in /proc/cpuinfo") summary = _("PAE not enabled") msg = _("Your system uses a CPU that does not have PAE enabled. " "Ubuntu only supports non-PAE systems up to Ubuntu " "12.04. To upgrade to a later version of Ubuntu, you " "must enable PAE (if this is possible) see:\n" "http://help.ubuntu.com/community/EnablingPAE") self._view.error(summary, msg) self.controller.abort() def _checkVideoDriver(self, name): " check if the given driver is in use in xorg.conf " XORG = "/etc/X11/xorg.conf" if not os.path.exists(XORG): return False for line in open(XORG): s = line.split("#")[0].strip() # check for fglrx driver entry if (s.lower().startswith("driver") and s.endswith('"%s"' % name)): return True return False def _applyPatches(self, patchdir="./patches"): """ helper that applies the patches in patchdir. the format is _path_to_file.md5sum and it will apply the diff to that file if the md5sum matches """ if not os.path.exists(patchdir): logging.debug("no patchdir") return for f in os.listdir(patchdir): # skip, not a patch file, they all end with .$md5sum if not "." in f: logging.debug("skipping '%s' (no '.')" % f) continue logging.debug("check if patch '%s' needs to be applied" % f) (encoded_path, md5sum, result_md5sum) = f.rsplit(".", 2) # FIXME: this is not clever and needs quoting support for # filenames with "_" in the name path = encoded_path.replace("_", "/") logging.debug("target for '%s' is '%s' -> '%s'" % ( f, encoded_path, path)) # target does not exist if not os.path.exists(path): logging.debug("target '%s' does not exist" % path) continue # check the input md5sum, this is not strictly needed as patch() # will verify the result md5sum and discard the result if that # does not match but this will remove a misleading error in the # logs md5 = hashlib.md5() with open(path, "rb") as fd: md5.update(fd.read()) if md5.hexdigest() == result_md5sum: logging.debug("already at target hash, skipping '%s'" % path) continue elif md5.hexdigest() != md5sum: logging.warn("unexpected target md5sum, skipping: '%s'" % path) continue # patchable, do it from .DistUpgradePatcher import patch try: patch(path, os.path.join(patchdir, f), result_md5sum) logging.info("applied '%s' successfully" % f) except Exception: logging.exception("ed failed for '%s'" % f) def _supportInModaliases(self, pkgname, lspci=None): """ Check if pkgname will work on this hardware This helper will check with the modaliasesdir if the given pkg will work on this hardware (or the hardware given via the lspci argument) """ # get lspci info (if needed) if not lspci: lspci = self._get_pci_ids() # get pkg if (not pkgname in self.controller.cache or not self.controller.cache[pkgname].candidate): logging.warn("can not find '%s' in cache") return False pkg = self.controller.cache[pkgname] for (module, pciid_list) in \ self._parse_modaliases_from_pkg_header(pkg.candidate.record): for pciid in pciid_list: m = re.match("pci:v0000(.+)d0000(.+)sv.*", pciid) if m: matchid = "%s:%s" % (m.group(1), m.group(2)) if matchid.lower() in lspci: logging.debug("found system pciid '%s' in modaliases" % matchid) return True logging.debug("checking for %s support in modaliases but none found" % pkgname) return False def _parse_modaliases_from_pkg_header(self, pkgrecord): """ return a list of (module1, (pciid, ...), ...)""" if not "Modaliases" in pkgrecord: return [] # split the string modules = [] for m in pkgrecord["Modaliases"].split(")"): m = m.strip(", ") if not m: continue (module, pciids) = m.split("(") modules.append((module, [x.strip() for x in pciids.split(",")])) return modules def _add_extras_repository(self): logging.debug("_add_extras_repository") cache = self.controller.cache if not "ubuntu-extras-keyring" in cache: logging.debug("no ubuntu-extras-keyring, no need to add repo") return if not (cache["ubuntu-extras-keyring"].marked_install or cache["ubuntu-extras-keyring"].installed): logging.debug("ubuntu-extras-keyring not installed/marked_install") return try: import aptsources.sourceslist sources = aptsources.sourceslist.SourcesList() for entry in sources: if "extras.ubuntu.com" in entry.uri: logging.debug("found extras.ubuntu.com, no need to add it") break else: logging.info("no extras.ubuntu.com, adding it to sources.list") sources.add("deb", "http://extras.ubuntu.com/ubuntu", self.controller.toDist, ["main"], "Third party developers repository") sources.save() except: logging.exception("error adding extras.ubuntu.com") def _gutenprint_fixup(self): """ foomatic-db-gutenprint get removed during the upgrade, replace it with the compressed ijsgutenprint-ppds (context is foomatic-db vs foomatic-db-compressed-ppds) """ try: cache = self.controller.cache if ("foomatic-db-gutenprint" in cache and cache["foomatic-db-gutenprint"].marked_delete and "ijsgutenprint-ppds" in cache): logging.info("installing ijsgutenprint-ppds") cache.mark_install( "ijsgutenprint-ppds", "foomatic-db-gutenprint -> ijsgutenprint-ppds rule") except: logging.exception("_gutenprint_fixup failed") def _enable_multiarch(self, foreign_arch="i386"): """ enable multiarch via /etc/dpkg/dpkg.cfg.d/multiarch """ cfg = "/etc/dpkg/dpkg.cfg.d/multiarch" if not os.path.exists(cfg): try: os.makedirs("/etc/dpkg/dpkg.cfg.d/") except OSError: pass open(cfg, "w").write("foreign-architecture %s\n" % foreign_arch) def _add_kdegames_card_extra_if_installed(self): """ test if kdegames-card-data is installed and if so, add kdegames-card-data-extra so that users do not loose functionality (LP: #745396) """ try: cache = self.controller.cache if not ("kdegames-card-data" in cache or "kdegames-card-data-extra" in cache): return if (cache["kdegames-card-data"].is_installed or cache["kdegames-card-data"].marked_install): cache.mark_install( "kdegames-card-data-extra", "kdegames-card-data -> k-c-d-extra transition") except: logging.exception("_add_kdegames_card_extra_if_installed failed") def ensure_recommends_are_installed_on_desktops(self): """ ensure that on a desktop install recommends are installed (LP: #759262) """ import apt if not self.controller.serverMode: if not apt.apt_pkg.config.find_b("Apt::Install-Recommends"): msg = "Apt::Install-Recommends was disabled," msg += " enabling it just for the upgrade" logging.warn(msg) apt.apt_pkg.config.set("Apt::Install-Recommends", "1") ubuntu-release-upgrader-0.220.10/DistUpgrade/prerequists-sources.dapper-ports.list0000644000000000000000000000036712431225715025177 0ustar # sources.list fragment for pre-requists of arches living on ports.ubuntu.com # no mirror because there are no mirrors here # this is safe to remove after the upgrade deb http://ports.ubuntu.com/ubuntu-ports dapper-backports main/debian-installer ubuntu-release-upgrader-0.220.10/DistUpgrade/apt_btrfs_snapshot.py0000644000000000000000000002252112602566762022077 0ustar # Copyright (C) 2011 Canonical # # Author: # Michael Vogt # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation; version 3. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more # details. # # You should have received a copy of the GNU General Public License along with # this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA from __future__ import print_function, unicode_literals import datetime import os import subprocess import sys import time import tempfile class AptBtrfsSnapshotError(Exception): pass class AptBtrfsNotSupportedError(AptBtrfsSnapshotError): pass class AptBtrfsRootWithNoatimeError(AptBtrfsSnapshotError): pass class FstabEntry(object): """ a single fstab entry line """ @classmethod def from_line(cls, line): # split up args = line.partition("#")[0].split() # use only the first 7 args and ignore anything after them, mount # seems to do the same, see bug #873411 comment #7 return FstabEntry(*args[0:6]) def __init__(self, fs_spec, mountpoint, fstype, options, dump=0, passno=0): # uuid or device self.fs_spec = fs_spec self.mountpoint = mountpoint self.fstype = fstype self.options = options self.dump = dump self.passno = passno def __repr__(self): return "" % ( self.fs_spec, self.mountpoint, self.fstype, self.options, self.dump, self.passno) class Fstab(list): """ a list of FstabEntry items """ def __init__(self, fstab="/etc/fstab"): super(Fstab, self).__init__() with open(fstab) as fstab_file: for line in (l.strip() for l in fstab_file): if line == "" or line.startswith("#"): continue try: entry = FstabEntry.from_line(line) except ValueError: continue self.append(entry) class LowLevelCommands(object): """ lowlevel commands invoked to perform various tasks like interact with mount and btrfs tools """ def mount(self, fs_spec, mountpoint): ret = subprocess.call(["mount", fs_spec, mountpoint]) return ret == 0 def umount(self, mountpoint): ret = subprocess.call(["umount", mountpoint]) return ret == 0 def btrfs_subvolume_snapshot(self, source, dest): ret = subprocess.call(["btrfs", "subvolume", "snapshot", source, dest]) return ret == 0 def btrfs_delete_snapshot(self, snapshot): ret = subprocess.call(["btrfs", "subvolume", "delete", snapshot]) return ret == 0 class AptBtrfsSnapshot(object): """ the high level object that interacts with the snapshot system """ # normal snapshot SNAP_PREFIX = "@apt-snapshot-" # backname when changing BACKUP_PREFIX = SNAP_PREFIX + "old-root-" def __init__(self, fstab="/etc/fstab"): self.fstab = Fstab(fstab) self.commands = LowLevelCommands() self._btrfs_root_mountpoint = None def snapshots_supported(self): """ verify that the system supports apt btrfs snapshots by checking if the right fs layout is used etc """ # check for the helper binary if not os.path.exists("/sbin/btrfs"): return False # check the fstab entry = self._get_supported_btrfs_root_fstab_entry() return entry is not None def _get_supported_btrfs_root_fstab_entry(self): """ return the supported btrfs root FstabEntry or None """ for entry in self.fstab: if ( entry.mountpoint == "/" and entry.fstype == "btrfs" and "subvol=@" in entry.options): return entry return None def _uuid_for_mountpoint(self, mountpoint, fstab="/etc/fstab"): """ return the device or UUID for the given mountpoint """ for entry in self.fstab: if entry.mountpoint == mountpoint: return entry.fs_spec return None def mount_btrfs_root_volume(self): uuid = self._uuid_for_mountpoint("/") mountpoint = tempfile.mkdtemp(prefix="apt-btrfs-snapshot-mp-") if not self.commands.mount(uuid, mountpoint): return None self._btrfs_root_mountpoint = mountpoint return self._btrfs_root_mountpoint def umount_btrfs_root_volume(self): res = self.commands.umount(self._btrfs_root_mountpoint) os.rmdir(self._btrfs_root_mountpoint) self._btrfs_root_mountpoint = None return res def _get_now_str(self): return datetime.datetime.now().replace(microsecond=0).isoformat( str('_')) def create_btrfs_root_snapshot(self, additional_prefix=""): mp = self.mount_btrfs_root_volume() snap_id = self._get_now_str() res = self.commands.btrfs_subvolume_snapshot( os.path.join(mp, "@"), os.path.join(mp, self.SNAP_PREFIX + additional_prefix + snap_id)) self.umount_btrfs_root_volume() return res def get_btrfs_root_snapshots_list(self, older_than=0): """ get the list of available snapshot If "older_then" is given (in unixtime format) it will only include snapshots that are older then the given date) """ l = [] # if older_than is used, ensure that the rootfs does not use # "noatime" if older_than != 0: entry = self._get_supported_btrfs_root_fstab_entry() if not entry: raise AptBtrfsNotSupportedError() if "noatime" in entry.options: raise AptBtrfsRootWithNoatimeError() # if there is no older than, interpret that as "now" if older_than == 0: older_than = time.time() mp = self.mount_btrfs_root_volume() for e in os.listdir(mp): if e.startswith(self.SNAP_PREFIX): # fstab is read when it was booted and when a snapshot is # created (to check if there is support for btrfs) atime = os.path.getatime(os.path.join(mp, e, "etc", "fstab")) if atime < older_than: l.append(e) self.umount_btrfs_root_volume() return l def print_btrfs_root_snapshots(self): print("Available snapshots:") print(" \n".join(self.get_btrfs_root_snapshots_list())) return True def _parse_older_than_to_unixtime(self, timefmt): now = time.time() if not timefmt.endswith("d"): raise Exception("Please specify time in days (e.g. 10d)") days = int(timefmt[:-1]) return now - (days * 24 * 60 * 60) def print_btrfs_root_snapshots_older_than(self, timefmt): older_than_unixtime = self._parse_older_than_to_unixtime(timefmt) try: print("Available snapshots older than '%s':" % timefmt) print(" \n".join(self.get_btrfs_root_snapshots_list( older_than=older_than_unixtime))) except AptBtrfsRootWithNoatimeError: sys.stderr.write("Error: fstab option 'noatime' incompatible " "with option") return False return True def clean_btrfs_root_snapshots_older_than(self, timefmt): res = True older_than_unixtime = self._parse_older_than_to_unixtime(timefmt) try: for snap in self.get_btrfs_root_snapshots_list( older_than=older_than_unixtime): res &= self.delete_snapshot(snap) except AptBtrfsRootWithNoatimeError: sys.stderr.write("Error: fstab option 'noatime' incompatible with " "option") return False return res def command_set_default(self, snapshot_name): res = self.set_default(snapshot_name) return res def set_default(self, snapshot_name, backup=True): """ set new default """ mp = self.mount_btrfs_root_volume() new_root = os.path.join(mp, snapshot_name) if ( os.path.isdir(new_root) and snapshot_name.startswith("@") and snapshot_name != "@"): default_root = os.path.join(mp, "@") backup = os.path.join(mp, self.BACKUP_PREFIX + self._get_now_str()) os.rename(default_root, backup) os.rename(new_root, default_root) print("Default changed to %s, please reboot for changes to take " "effect." % snapshot_name) else: print("You have selected an invalid snapshot. Please make sure " "that it exists, and that it is not \"@\".") self.umount_btrfs_root_volume() return True def delete_snapshot(self, snapshot_name): mp = self.mount_btrfs_root_volume() res = self.commands.btrfs_delete_snapshot( os.path.join(mp, snapshot_name)) self.umount_btrfs_root_volume() return res ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeMain.py0000644000000000000000000002256012431225715021205 0ustar # DistUpgradeMain.py # # Copyright (c) 2004-2008 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function import warnings warnings.filterwarnings("ignore", "Accessed deprecated", DeprecationWarning) import apt import atexit import gettext import glob import logging import os import shutil import subprocess import sys from datetime import datetime from optparse import OptionParser from gettext import gettext as _ # dirs that the packages will touch, this is needed for AUFS/overlayfs # and also for the sanity check before the upgrade SYSTEM_DIRS = ["/bin", "/boot", "/etc", "/initrd", "/lib", "/lib32", # ??? "/lib64", # ??? "/sbin", "/usr", "/var", ] from .DistUpgradeConfigParser import DistUpgradeConfig def do_commandline(): " setup option parser and parse the commandline " parser = OptionParser() parser.add_option("-s", "--sandbox", dest="useAufs", default=False, action="store_true", help=_("Sandbox upgrade using aufs")) parser.add_option("-c", "--cdrom", dest="cdromPath", default=None, help=_("Use the given path to search for a cdrom with upgradable packages")) parser.add_option("--have-prerequists", dest="havePrerequists", action="store_true", default=False) parser.add_option("--with-network", dest="withNetwork",action="store_true") parser.add_option("--without-network", dest="withNetwork",action="store_false") parser.add_option("--frontend", dest="frontend",default=None, help=_("Use frontend. Currently available: \n"\ "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE")) parser.add_option("--mode", dest="mode",default="desktop", help=_("*DEPRECATED* this option will be ignored")) parser.add_option("--partial", dest="partial", default=False, action="store_true", help=_("Perform a partial upgrade only (no sources.list rewriting)")) parser.add_option("--disable-gnu-screen", action="store_true", default=False, help=_("Disable GNU screen support")) parser.add_option("--datadir", dest="datadir", default=".", help=_("Set datadir")) parser.add_option("--devel-release", action="store_true", dest="devel_release", default=False, help=_("Upgrade to the development release")) return parser.parse_args() def setup_logging(options, config): " setup the logging " logdir = config.getWithDefault("Files","LogDir","/var/log/dist-upgrade/") if not os.path.exists(logdir): os.mkdir(logdir) # check if logs exists and move logs into place if glob.glob(logdir+"/*.log"): now = datetime.now() backup_dir = logdir+"/%04i%02i%02i-%02i%02i" % (now.year,now.month,now.day,now.hour,now.minute) if not os.path.exists(backup_dir): os.mkdir(backup_dir) for f in glob.glob(logdir+"/*.log"): shutil.move(f, os.path.join(backup_dir,os.path.basename(f))) fname = os.path.join(logdir,"main.log") # do not overwrite the default main.log if options.partial: fname += ".partial" with open(fname, "a"): pass logging.basicConfig(level=logging.DEBUG, filename=fname, format='%(asctime)s %(levelname)s %(message)s', filemode='w') # log what config files are in use here to detect user # changes logging.info("Using config files '%s'" % config.config_files) logging.info("uname information: '%s'" % " ".join(os.uname())) logging.info("apt version: '%s'" % apt.apt_pkg.VERSION) logging.info("python version: '%s'" % sys.version) return logdir def save_system_state(logdir): # save package state to be able to re-create failures try: from .apt_clone import AptClone except ImportError: logging.error("failed to import AptClone") return target = os.path.join(logdir, "apt-clone_system_state.tar.gz") logging.debug("creating statefile: '%s'" % target) # this file may contain sensitive data so ensure we create with the # right umask old_umask = os.umask(0o0066) clone = AptClone() clone.save_state(sourcedir="/", target=target, with_dpkg_status=True, scrub_sources=True) # reset umask os.umask(old_umask) # lspci output try: s=subprocess.Popen(["lspci","-nn"], stdout=subprocess.PIPE, universal_newlines=True).communicate()[0] open(os.path.join(logdir, "lspci.txt"), "w").write(s) except OSError as e: logging.debug("lspci failed: %s" % e) def setup_view(options, config, logdir): " setup view based on the config and commandline " # the commandline overwrites the configfile for requested_view in [options.frontend]+config.getlist("View","View"): if not requested_view: continue try: # this should work with py3 and py2.7 from importlib import import_module # use relative imports view_modul = import_module("."+requested_view, "DistUpgrade") # won't work with py3 #view_modul = __import__(requested_view, globals()) view_class = getattr(view_modul, requested_view) instance = view_class(logdir=logdir, datadir=options.datadir) break except Exception as e: logging.warning("can't import view '%s' (%s)" % (requested_view,e)) print("can't load %s (%s)" % (requested_view, e)) else: logging.error("No view can be imported, aborting") print("No view can be imported, aborting") sys.exit(1) return instance def run_new_gnu_screen_window_or_reattach(): """ check if there is a upgrade already running inside gnu screen, if so, reattach if not, create new screen window """ SCREENNAME = "ubuntu-release-upgrade-screen-window" # get the active screen sockets try: out = subprocess.Popen( ["screen","-ls"], stdout=subprocess.PIPE, universal_newlines=True).communicate()[0] logging.debug("screen returned: '%s'" % out) except OSError: logging.info("screen could not be run") return # check if a release upgrade is among them if SCREENNAME in out: logging.info("found active screen session, re-attaching") # if we have it, attach to it os.execv("/usr/bin/screen", ["screen", "-d", "-r", "-p", SCREENNAME]) # otherwise re-exec inside screen with (-L) for logging enabled os.environ["RELEASE_UPGRADER_NO_SCREEN"]="1" # unset escape key to avoid confusing people who are not used to # screen. people who already run screen will not be affected by this # unset escape key with -e, enable log with -L, set name with -S cmd = ["screen", "-e", "\\0\\0", "-L", "-c", "screenrc", "-S", SCREENNAME]+sys.argv logging.info("re-exec inside screen: '%s'" % cmd) os.execv("/usr/bin/screen", cmd) def main(): """ main method """ # commandline setup and config (options, args) = do_commandline() config = DistUpgradeConfig(options.datadir) logdir = setup_logging(options, config) from .DistUpgradeVersion import VERSION logging.info("release-upgrader version '%s' started" % VERSION) # ensure that DistUpgradeView translations are displayed gettext.textdomain("ubuntu-release-upgrader") if options.datadir is None or options.datadir == '.': localedir = os.path.join(os.getcwd(), "mo") gettext.bindtextdomain("ubuntu-release-upgrader", localedir) # create view and app objects view = setup_view(options, config, logdir) # gnu screen support if (view.needs_screen and not "RELEASE_UPGRADER_NO_SCREEN" in os.environ and not options.disable_gnu_screen): run_new_gnu_screen_window_or_reattach() from .DistUpgradeController import DistUpgradeController app = DistUpgradeController(view, options, datadir=options.datadir) atexit.register(app._enableAptCronJob) # partial upgrade only if options.partial: if not app.doPartialUpgrade(): sys.exit(1) sys.exit(0) # save system state (only if not doing just a partial upgrade) save_system_state(logdir) # full upgrade, return error code for success/failure if app.run(): return 0 return 1 ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeCache.py0000644000000000000000000014544612431225715021335 0ustar # DistUpgradeCache.py # # Copyright (c) 2004-2008 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function import warnings warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning) import apt import apt_pkg import locale import os import re import logging import time import datetime import threading try: import configparser except ImportError: import ConfigParser as configparser from subprocess import Popen, PIPE from .DistUpgradeGettext import gettext as _ from .DistUpgradeGettext import ngettext from .utils import inside_chroot, estimate_kernel_size_in_boot class CacheException(Exception): pass class CacheExceptionLockingFailed(CacheException): pass class CacheExceptionDpkgInterrupted(CacheException): pass # the initrd/vmlinuz/abi space required in /boot for each kernel # we estimate based on the current kernel size and add a safety marging def _set_kernel_initrd_size(): size = estimate_kernel_size_in_boot() if size == 0: logging.warn("estimate_kernel_size_in_boot() returned '0'?") size = 28*1024*1024 # add small safety buffer size += 1*1024*1024 return size KERNEL_INITRD_SIZE = _set_kernel_initrd_size() class FreeSpaceRequired(object): """ FreeSpaceRequired object: This exposes: - the total size required (size_total) - the dir that requires the space (dir) - the additional space that is needed (size_needed) """ def __init__(self, size_total, dir, size_needed): self.size_total = size_total self.dir = dir self.size_needed = size_needed def __str__(self): return "FreeSpaceRequired Object: Dir: %s size_total: %s size_needed: %s" % (self.dir, self.size_total, self.size_needed) class NotEnoughFreeSpaceError(CacheException): """ Exception if there is not enough free space for this operation """ def __init__(self, free_space_required_list): self.free_space_required_list = free_space_required_list class MyCache(apt.Cache): ReInstReq = 1 HoldReInstReq = 3 # init def __init__(self, config, view, quirks, progress=None, lock=True): self.to_install = [] self.to_remove = [] self.view = view self.quirks = quirks self.lock = False self.partialUpgrade = False self.config = config self.metapkgs = self.config.getlist("Distro", "MetaPkgs") # acquire lock self._listsLock = -1 if lock: try: apt_pkg.pkgsystem_lock() self.lock_lists_dir() self.lock = True except SystemError as e: # checking for this is ok, its not translatable if "dpkg --configure -a" in str(e): raise CacheExceptionDpkgInterrupted(e) raise CacheExceptionLockingFailed(e) # Do not create the cache until we know it is not locked apt.Cache.__init__(self, progress) # a list of regexp that are not allowed to be removed self.removal_blacklist = config.getListFromFile("Distro", "RemovalBlacklistFile") self.uname = Popen(["uname", "-r"], stdout=PIPE, universal_newlines=True).communicate()[0].strip() self._initAptLog() # from hardy on we use recommends by default, so for the # transition to the new dist we need to enable them now if (config.get("Sources", "From") == "hardy" and not "RELEASE_UPGRADE_NO_RECOMMENDS" in os.environ): apt_pkg.config.set("APT::Install-Recommends", "true") def _apply_dselect_upgrade(self): """ honor the dselect install state """ for pkg in self: if pkg.is_installed: continue if pkg._pkg.selected_state == apt_pkg.SELSTATE_INSTALL: # upgrade() will take care of this pkg.mark_install(auto_inst=False, auto_fix=False) @property def req_reinstall_pkgs(self): " return the packages not downloadable packages in reqreinst state " reqreinst = set() for pkg in self: if ((not pkg.candidate or not pkg.candidate.downloadable) and (pkg._pkg.inst_state == self.ReInstReq or pkg._pkg.inst_state == self.HoldReInstReq)): reqreinst.add(pkg.name) return reqreinst def fix_req_reinst(self, view): " check for reqreinst state and offer to fix it " reqreinst = self.req_reinstall_pkgs if len(reqreinst) > 0: header = ngettext("Remove package in bad state", "Remove packages in bad state", len(reqreinst)) summary = ngettext("The package '%s' is in an inconsistent " "state and needs to be reinstalled, but " "no archive can be found for it. " "Do you want to remove this package " "now to continue?", "The packages '%s' are in an inconsistent " "state and need to be reinstalled, but " "no archives can be found for them. Do you " "want to remove these packages now to " "continue?", len(reqreinst)) % ", ".join(reqreinst) if view.askYesNoQuestion(header, summary): self.release_lock() cmd = ["/usr/bin/dpkg", "--remove", "--force-remove-reinstreq"] + list(reqreinst) view.getTerminal().call(cmd) self.get_lock() return True return False # logging stuff def _initAptLog(self): " init logging, create log file" logdir = self.config.getWithDefault("Files", "LogDir", "/var/log/dist-upgrade") if not os.path.exists(logdir): os.makedirs(logdir) apt_pkg.config.set("Dir::Log", logdir) apt_pkg.config.set("Dir::Log::Terminal", "apt-term.log") self.logfd = os.open(os.path.join(logdir, "apt.log"), os.O_RDWR | os.O_CREAT | os.O_APPEND, 0o644) now = datetime.datetime.now() header = "Log time: %s\n" % now os.write(self.logfd, header.encode("utf-8")) # turn on debugging in the cache apt_pkg.config.set("Debug::pkgProblemResolver", "true") apt_pkg.config.set("Debug::pkgDepCache::Marker", "true") apt_pkg.config.set("Debug::pkgDepCache::AutoInstall", "true") def _startAptResolverLog(self): if hasattr(self, "old_stdout"): os.close(self.old_stdout) os.close(self.old_stderr) self.old_stdout = os.dup(1) self.old_stderr = os.dup(2) os.dup2(self.logfd, 1) os.dup2(self.logfd, 2) def _stopAptResolverLog(self): os.fsync(1) os.fsync(2) os.dup2(self.old_stdout, 1) os.dup2(self.old_stderr, 2) # use this decorator instead of the _start/_stop stuff directly # FIXME: this should probably be a decorator class where all # logging is moved into? def withResolverLog(f): " decorator to ensure that the apt output is logged " def wrapper(*args, **kwargs): args[0]._startAptResolverLog() res = f(*args, **kwargs) args[0]._stopAptResolverLog() return res return wrapper # properties @property def required_download(self): """ get the size of the packages that are required to download """ pm = apt_pkg.PackageManager(self._depcache) fetcher = apt_pkg.Acquire() pm.get_archives(fetcher, self._list, self._records) return fetcher.fetch_needed @property def additional_required_space(self): """ get the size of the additional required space on the fs """ return self._depcache.usr_size @property def is_broken(self): """ is the cache broken """ return self._depcache.broken_count > 0 # methods def lock_lists_dir(self): name = apt_pkg.config.find_dir("Dir::State::Lists") + "lock" self._listsLock = apt_pkg.get_lock(name) if self._listsLock < 0: e = "Can not lock '%s' " % name raise CacheExceptionLockingFailed(e) def unlock_lists_dir(self): if self._listsLock > 0: os.close(self._listsLock) self._listsLock = -1 def update(self, fprogress=None): """ our own update implementation is required because we keep the lists dir lock """ self.unlock_lists_dir() res = apt.Cache.update(self, fprogress) self.lock_lists_dir() if fprogress and fprogress.release_file_download_error: # FIXME: not ideal error message, but we just reuse a # existing one here to avoid a new string raise IOError(_("The server may be overloaded")) if res == False: raise IOError("apt.cache.update() returned False, but did not raise exception?!?") def commit(self, fprogress, iprogress): logging.info("cache.commit()") if self.lock: self.release_lock() apt.Cache.commit(self, fprogress, iprogress) def release_lock(self, pkgSystemOnly=True): if self.lock: try: apt_pkg.pkgsystem_unlock() self.lock = False except SystemError as e: logging.debug("failed to SystemUnLock() (%s) " % e) def get_lock(self, pkgSystemOnly=True): if not self.lock: try: apt_pkg.pkgsystem_lock() self.lock = True except SystemError as e: logging.debug("failed to SystemLock() (%s) " % e) def downloadable(self, pkg, useCandidate=True): " check if the given pkg can be downloaded " if useCandidate: ver = self._depcache.get_candidate_ver(pkg._pkg) else: ver = pkg._pkg.current_ver if ver == None: logging.warning("no version information for '%s' (useCandidate=%s)" % (pkg.name, useCandidate)) return False return ver.downloadable def pkg_auto_removable(self, pkg): """ check if the pkg is auto-removable """ return (pkg.is_installed and self._depcache.is_garbage(pkg._pkg)) def fix_broken(self): """ try to fix broken dependencies on the system, may throw SystemError when it can't""" return self._depcache.fix_broken() def create_snapshot(self): """ create a snapshot of the current changes """ self.to_install = [] self.to_remove = [] for pkg in self.get_changes(): if pkg.marked_install or pkg.marked_upgrade: self.to_install.append(pkg.name) if pkg.marked_delete: self.to_remove.append(pkg.name) def clear(self): self._depcache.init() def restore_snapshot(self): """ restore a snapshot """ actiongroup = apt_pkg.ActionGroup(self._depcache) # just make pyflakes shut up, later we need to use # with self.actiongroup(): actiongroup self.clear() for name in self.to_remove: pkg = self[name] pkg.mark_delete() for name in self.to_install: pkg = self[name] pkg.mark_install(auto_fix=False, auto_inst=False) def need_server_mode(self): """ This checks if we run on a desktop or a server install. A server install has more freedoms, for a desktop install we force a desktop meta package to be install on the upgrade. We look for a installed desktop meta pkg and for key dependencies, if none of those are installed we assume server mode """ #logging.debug("need_server_mode() run") # check for the MetaPkgs (e.g. ubuntu-desktop) metapkgs = self.config.getlist("Distro", "MetaPkgs") for key in metapkgs: # if it is installed we are done if key in self and self[key].is_installed: logging.debug("need_server_mode(): run in 'desktop' mode, (because of pkg '%s')" % key) return False # if it is not installed, but its key depends are installed # we are done too (we auto-select the package later) deps_found = True for pkg in self.config.getlist(key, "KeyDependencies"): deps_found &= pkg in self and self[pkg].is_installed if deps_found: logging.debug("need_server_mode(): run in 'desktop' mode, (because of key deps for '%s')" % key) return False logging.debug("need_server_mode(): can not find a desktop meta package or key deps, running in server mode") return True def sanity_check(self, view): """ check if the cache is ok and if the required metapkgs are installed """ if self.is_broken: try: logging.debug("Have broken pkgs, trying to fix them") self.fix_broken() except SystemError: view.error(_("Broken packages"), _("Your system contains broken packages " "that couldn't be fixed with this " "software. " "Please fix them first using synaptic or " "apt-get before proceeding.")) return False return True def mark_install(self, pkg, reason=""): logging.debug("Installing '%s' (%s)" % (pkg, reason)) if pkg in self: self[pkg].mark_install() if not (self[pkg].marked_install or self[pkg].marked_upgrade): logging.error("Installing/upgrading '%s' failed" % pkg) #raise SystemError("Installing '%s' failed" % pkg) return False return True def mark_upgrade(self, pkg, reason=""): logging.debug("Upgrading '%s' (%s)" % (pkg, reason)) if pkg in self and self[pkg].is_installed: self[pkg].mark_upgrade() if not self[pkg].marked_upgrade: logging.error("Upgrading '%s' failed" % pkg) return False return True def mark_remove(self, pkg, reason=""): logging.debug("Removing '%s' (%s)" % (pkg, reason)) if pkg in self: self[pkg].mark_delete() def mark_purge(self, pkg, reason=""): logging.debug("Purging '%s' (%s)" % (pkg, reason)) if pkg in self: self._depcache.mark_delete(self[pkg]._pkg, True) def _keep_installed(self, pkgname, reason): if (pkgname in self and self[pkgname].is_installed and self[pkgname].marked_delete): self.mark_install(pkgname, reason) def keep_installed_rule(self): """ run after the dist-upgrade to ensure that certain packages are kept installed """ # first the global list for pkgname in self.config.getlist("Distro", "KeepInstalledPkgs"): self._keep_installed(pkgname, "Distro KeepInstalledPkgs rule") # the the per-metapkg rules for key in self.metapkgs: if key in self and (self[key].is_installed or self[key].marked_install): for pkgname in self.config.getlist(key, "KeepInstalledPkgs"): self._keep_installed(pkgname, "%s KeepInstalledPkgs rule" % key) # only enforce section if we have a network. Otherwise we run # into CD upgrade issues for installed language packs etc if self.config.get("Options", "withNetwork") == "True": logging.debug("Running KeepInstalledSection rules") # now the KeepInstalledSection code for section in self.config.getlist("Distro", "KeepInstalledSection"): for pkg in self: if (pkg.candidate and pkg.candidate.downloadable and pkg.marked_delete and pkg.section == section): self._keep_installed(pkg.name, "Distro KeepInstalledSection rule: %s" % section) for key in self.metapkgs: if key in self and (self[key].is_installed or self[key].marked_install): for section in self.config.getlist(key, "KeepInstalledSection"): for pkg in self: if (pkg.candidate and pkg.candidate.downloadable and pkg.marked_delete and pkg.section == section): self._keep_installed(pkg.name, "%s KeepInstalledSection rule: %s" % (key, section)) def post_upgrade_rule(self): " run after the upgrade was done in the cache " for (rule, action) in [("Install", self.mark_install), ("Upgrade", self.mark_upgrade), ("Remove", self.mark_remove), ("Purge", self.mark_purge)]: # first the global list for pkg in self.config.getlist("Distro", "PostUpgrade%s" % rule): action(pkg, "Distro PostUpgrade%s rule" % rule) for key in self.metapkgs: if key in self and (self[key].is_installed or self[key].marked_install): for pkg in self.config.getlist(key, "PostUpgrade%s" % rule): action(pkg, "%s PostUpgrade%s rule" % (key, rule)) # run the quirks handlers if not self.partialUpgrade: self.quirks.run("PostDistUpgradeCache") def identifyObsoleteKernels(self): # we have a funny policy that we remove security updates # for the kernel from the archive again when a new ABI # version hits the archive. this means that we have # e.g. # linux-image-2.6.24-15-generic # is obsolete when # linux-image-2.6.24-19-generic # is available # ... # This code tries to identify the kernels that can be removed logging.debug("identifyObsoleteKernels()") obsolete_kernels = set() version = self.config.get("KernelRemoval", "Version") basenames = self.config.getlist("KernelRemoval", "BaseNames") types = self.config.getlist("KernelRemoval", "Types") for pkg in self: for base in basenames: basename = "%s-%s-" % (base, version) for type in types: if (pkg.name.startswith(basename) and pkg.name.endswith(type) and pkg.is_installed): if (pkg.name == "%s-%s" % (base, self.uname)): logging.debug("skipping running kernel %s" % pkg.name) continue logging.debug("removing obsolete kernel '%s'" % pkg.name) obsolete_kernels.add(pkg.name) logging.debug("identifyObsoleteKernels found '%s'" % obsolete_kernels) return obsolete_kernels def checkForNvidia(self): """ this checks for nvidia hardware and checks what driver is needed """ logging.debug("nvidiaUpdate()") # if the free drivers would give us a equally hard time, we would # never be able to release try: from .NvidiaDetector.nvidiadetector import NvidiaDetection except (ImportError, SyntaxError) as e: # SyntaxError is temporary until the port of NvidiaDetector to # Python 3 is in the archive. logging.error("NvidiaDetector can not be imported %s" % e) return False try: # get new detection module and use the modalises files # from within the release-upgrader nv = NvidiaDetection(obsolete="./ubuntu-drivers-obsolete.pkgs") #nv = NvidiaDetection() # check if a binary driver is installed now for oldDriver in nv.oldPackages: if oldDriver in self and self[oldDriver].is_installed: self.mark_remove(oldDriver, "old nvidia driver") break else: logging.info("no old nvidia driver installed, installing no new") return False # check which one to use driver = nv.selectDriver() logging.debug("nv.selectDriver() returned '%s'" % driver) if not driver in self: logging.warning("no '%s' found" % driver) return False if not (self[driver].marked_install or self[driver].marked_upgrade): self[driver].mark_install() logging.info("installing %s as suggested by NvidiaDetector" % driver) return True except Exception as e: logging.error("NvidiaDetection returned a error: %s" % e) return False def _has_kernel_headers_installed(self): for pkg in self: if (pkg.name.startswith("linux-headers-") and pkg.is_installed): return True return False def checkForKernel(self): """ check for the running kernel and try to ensure that we have an updated version """ logging.debug("Kernel uname: '%s' " % self.uname) try: (version, build, flavour) = self.uname.split("-") except Exception as e: logging.warning("Can't parse kernel uname: '%s' (self compiled?)" % e) return False # now check if we have a SMP system dmesg = Popen(["dmesg"], stdout=PIPE).communicate()[0] if b"WARNING: NR_CPUS limit" in dmesg: logging.debug("UP kernel on SMP system!?!") return True def checkPriority(self): # tuple of priorities we require to be installed need = ('required', ) # stuff that its ok not to have removeEssentialOk = self.config.getlist("Distro", "RemoveEssentialOk") # check now for pkg in self: # WORKADOUND bug on the CD/python-apt #253255 ver = pkg._pcache._depcache.get_candidate_ver(pkg._pkg) if ver and ver.priority == 0: logging.error("Package %s has no priority set" % pkg.name) continue if (pkg.candidate and pkg.candidate.downloadable and not (pkg.is_installed or pkg.marked_install) and not pkg.name in removeEssentialOk and # ignore multiarch priority required packages not ":" in pkg.name and pkg.candidate.priority in need): self.mark_install(pkg.name, "priority in required set '%s' but not scheduled for install" % need) # FIXME: make this a decorator (just like the withResolverLog()) def updateGUI(self, view, lock): i = 0 while lock.locked(): if i % 15 == 0: view.pulseProgress() view.processEvents() time.sleep(0.02) i += 1 view.pulseProgress(finished=True) view.processEvents() @withResolverLog def distUpgrade(self, view, serverMode, partialUpgrade): # keep the GUI alive lock = threading.Lock() lock.acquire() t = threading.Thread(target=self.updateGUI, args=(self.view, lock,)) t.start() try: # mvo: disabled as it casues to many errornous installs #self._apply_dselect_upgrade() # upgrade (and make sure this way that the cache is ok) self.upgrade(True) # check that everything in priority required is installed self.checkPriority() # see if our KeepInstalled rules are honored self.keep_installed_rule() # check if we got a new kernel (if we are not inside a # chroot) if inside_chroot(): logging.warn("skipping kernel checks because we run inside a chroot") else: self.checkForKernel() # check for nvidia stuff self.checkForNvidia() # and if we have some special rules self.post_upgrade_rule() # install missing meta-packages (if not in server upgrade mode) self._keepBaseMetaPkgsInstalled(view) if not serverMode: # if this fails, a system error is raised self._installMetaPkgs(view) # see if it all makes sense, if not this function raises self._verifyChanges() except SystemError as e: # this should go into a finally: line, see below for the # rationale why it doesn't lock.release() t.join() # FIXME: change the text to something more useful details = _("An unresolvable problem occurred while " "calculating the upgrade.\n\n " "This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n") # we never have partialUpgrades (including removes) on a stable system # with only ubuntu sources so we do not recommend reporting a bug if partialUpgrade: details += _("This is most likely a transient problem, " "please try again later.") else: details += _("If none of this applies, then please report this bug using " "the command 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal.") # make the error text available again on stdout for the # text frontend self._stopAptResolverLog() view.error(_("Could not calculate the upgrade"), details) # may contain utf-8 (LP: #1310053) error_msg = unicode(e) logging.error("Dist-upgrade failed: '%s'", error_msg) # start the resolver log again because this is run with # the withResolverLog decorator self._startAptResolverLog() return False # would be nice to be able to use finally: here, but we need # to run on python2.4 too #finally: # wait for the gui-update thread to exit lock.release() t.join() # check the trust of the packages that are going to change untrusted = [] for pkg in self.get_changes(): if pkg.marked_delete: continue # special case because of a bug in pkg.candidate.origins if pkg.marked_downgrade: for ver in pkg._pkg.version_list: # version is lower than installed one if apt_pkg.version_compare( ver.ver_str, pkg.installed.version) < 0: for (verFileIter, index) in ver.file_list: indexfile = pkg._pcache._list.find_index(verFileIter) if indexfile and not indexfile.is_trusted: untrusted.append(pkg.name) break continue origins = pkg.candidate.origins trusted = False for origin in origins: #print(origin) trusted |= origin.trusted if not trusted: untrusted.append(pkg.name) # check if the user overwrote the unauthenticated warning try: b = self.config.getboolean("Distro", "AllowUnauthenticated") if b: logging.warning("AllowUnauthenticated set!") return True except configparser.NoOptionError as e: pass if len(untrusted) > 0: untrusted.sort() logging.error("Unauthenticated packages found: '%s'" % " ".join(untrusted)) # FIXME: maybe ask a question here? instead of failing? self._stopAptResolverLog() view.error(_("Error authenticating some packages"), _("It was not possible to authenticate some " "packages. This may be a transient network problem. " "You may want to try again later. See below for a " "list of unauthenticated packages."), "\n".join(untrusted)) # start the resolver log again because this is run with # the withResolverLog decorator self._startAptResolverLog() return False return True def _verifyChanges(self): """ this function tests if the current changes don't violate our constrains (blacklisted removals etc) """ main_arch = apt_pkg.config.find("APT::Architecture") removeEssentialOk = self.config.getlist("Distro", "RemoveEssentialOk") # check changes for pkg in self.get_changes(): if pkg.marked_delete and self._inRemovalBlacklist(pkg.name): logging.debug("The package '%s' is marked for removal but it's in the removal blacklist", pkg.name) raise SystemError(_("The package '%s' is marked for removal but it is in the removal blacklist.") % pkg.name) if pkg.marked_delete and ( pkg._pkg.essential == True and pkg.installed.architecture in (main_arch, "all") and not pkg.name in removeEssentialOk): logging.debug("The package '%s' is marked for removal but it's an ESSENTIAL package", pkg.name) raise SystemError(_("The essential package '%s' is marked for removal.") % pkg.name) # check bad-versions blacklist badVersions = self.config.getlist("Distro", "BadVersions") for bv in badVersions: (pkgname, ver) = bv.split("_") if (pkgname in self and self[pkgname].candidate and self[pkgname].candidate.version == ver and (self[pkgname].marked_install or self[pkgname].marked_upgrade)): raise SystemError(_("Trying to install blacklisted version '%s'") % bv) return True def _lookupPkgRecord(self, pkg): """ helper to make sure that the pkg._records is pointing to the right location - needed because python-apt 0.7.9 dropped the python-apt version but we can not yet use the new version because on upgrade the old version is still installed """ ver = pkg._pcache._depcache.get_candidate_ver(pkg._pkg) if ver is None: print("No candidate ver: ", pkg.name) return False if ver.file_list is None: print("No file_list for: %s " % self._pkg.name()) return False f, index = ver.file_list.pop(0) pkg._pcache._records.lookup((f, index)) return True @property def installedTasks(self): tasks = {} installed_tasks = set() for pkg in self: if not self._lookupPkgRecord(pkg): logging.debug("no PkgRecord found for '%s', skipping " % pkg.name) continue for line in pkg._pcache._records.record.split("\n"): if line.startswith("Task:"): for task in (line[len("Task:"):]).split(","): task = task.strip() if task not in tasks: tasks[task] = set() tasks[task].add(pkg.name) for task in tasks: installed = True for pkgname in tasks[task]: if not self[pkgname].is_installed: installed = False break if installed: installed_tasks.add(task) return installed_tasks def installTasks(self, tasks): logging.debug("running installTasks") for pkg in self: if pkg.marked_install or pkg.is_installed: continue self._lookupPkgRecord(pkg) if not (hasattr(pkg._pcache._records, "record") and pkg._pcache._records.record): logging.warning("can not find Record for '%s'" % pkg.name) continue for line in pkg._pcache._records.record.split("\n"): if line.startswith("Task:"): for task in (line[len("Task:"):]).split(","): task = task.strip() if task in tasks: pkg.mark_install() return True def _keepBaseMetaPkgsInstalled(self, view): for pkg in self.config.getlist("Distro", "BaseMetaPkgs"): self._keep_installed(pkg, "base meta package keep installed rule") def _installMetaPkgs(self, view): def metaPkgInstalled(): """ internal helper that checks if at least one meta-pkg is installed or marked install """ for key in metapkgs: if key in self: pkg = self[key] if pkg.is_installed and pkg.marked_delete: logging.debug("metapkg '%s' installed but marked_delete" % pkg.name) if ((pkg.is_installed and not pkg.marked_delete) or self[key].marked_install): return True return False # now check for ubuntu-desktop, kubuntu-desktop, edubuntu-desktop metapkgs = self.config.getlist("Distro", "MetaPkgs") # we never go without ubuntu-base for pkg in self.config.getlist("Distro", "BaseMetaPkgs"): self[pkg].mark_install() # every meta-pkg that is installed currently, will be marked # install (that result in a upgrade and removes a mark_delete) for key in metapkgs: try: if (key in self and self[key].is_installed and self[key].is_upgradable): logging.debug("Marking '%s' for upgrade" % key) self[key].mark_upgrade() except SystemError as e: # warn here, but don't fail, its possible that meta-packages # conflict (like ubuntu-desktop vs xubuntu-desktop) LP: #775411 logging.warn("Can't mark '%s' for upgrade (%s)" % (key, e)) # check if we have a meta-pkg, if not, try to guess which one to pick if not metaPkgInstalled(): logging.debug("none of the '%s' meta-pkgs installed" % metapkgs) for key in metapkgs: deps_found = True for pkg in self.config.getlist(key, "KeyDependencies"): deps_found &= pkg in self and self[pkg].is_installed if deps_found: logging.debug("guessing '%s' as missing meta-pkg" % key) try: self[key].mark_install() except (SystemError, KeyError) as e: logging.error("failed to mark '%s' for install (%s)" % (key, e)) view.error(_("Can't install '%s'") % key, _("It was impossible to install a " "required package. Please report " "this as a bug using " "'ubuntu-bug ubuntu-release-upgrader-core' in " "a terminal.")) return False logging.debug("marked_install: '%s' -> '%s'" % (key, self[key].marked_install)) break # check if we actually found one if not metaPkgInstalled(): meta_pkgs = ', '.join(metapkgs[0:-1]) view.error(_("Can't guess meta-package"), _("Your system does not contain a " "%s or %s package and it was not " "possible to detect which version of " "Ubuntu you are running.\n " "Please install one of the packages " "above first using synaptic or " "apt-get before proceeding.") % (meta_pkgs, metapkgs[-1])) return False return True def _inRemovalBlacklist(self, pkgname): for expr in self.removal_blacklist: if re.compile(expr).match(pkgname): logging.debug("blacklist expr '%s' matches '%s'" % (expr, pkgname)) return True return False @withResolverLog def tryMarkObsoleteForRemoval(self, pkgname, remove_candidates, foreign_pkgs): #logging.debug("tryMarkObsoleteForRemoval(): %s" % pkgname) # sanity check, first see if it looks like a running kernel pkg if pkgname.endswith(self.uname): logging.debug("skipping running kernel pkg '%s'" % pkgname) return False if self._inRemovalBlacklist(pkgname): logging.debug("skipping '%s' (in removalBlacklist)" % pkgname) return False # ensure we honor KeepInstalledSection here as well for section in self.config.getlist("Distro", "KeepInstalledSection"): if pkgname in self and self[pkgname].section == section: logging.debug("skipping '%s' (in KeepInstalledSection)" % pkgname) return False # if we don't have the package anyway, we are fine (this can # happen when forced_obsoletes are specified in the config file) if pkgname not in self: #logging.debug("package '%s' not in cache" % pkgname) return True # check if we want to purge try: purge = self.config.getboolean("Distro", "PurgeObsoletes") except configparser.NoOptionError as e: purge = False # this is a delete candidate, only actually delete, # if it dosn't remove other packages depending on it # that are not obsolete as well actiongroup = apt_pkg.ActionGroup(self._depcache) # just make pyflakes shut up, later we should use # with self.actiongroup(): actiongroup self.create_snapshot() try: self[pkgname].mark_delete(purge=purge) self.view.processEvents() #logging.debug("marking '%s' for removal" % pkgname) for pkg in self.get_changes(): if (pkg.name not in remove_candidates or pkg.name in foreign_pkgs or self._inRemovalBlacklist(pkg.name)): logging.debug("package '%s' has unwanted removals, skipping" % pkgname) self.restore_snapshot() return False except (SystemError, KeyError) as e: logging.warning("_tryMarkObsoleteForRemoval failed for '%s' (%s: %s)" % (pkgname, repr(e), e)) self.restore_snapshot() return False return True def _getObsoletesPkgs(self): " get all package names that are not downloadable " obsolete_pkgs = set() for pkg in self: if pkg.is_installed: # check if any version is downloadable. we need to check # for older ones too, because there might be # cases where e.g. firefox in gutsy-updates is newer # than hardy if not self.anyVersionDownloadable(pkg): obsolete_pkgs.add(pkg.name) return obsolete_pkgs def anyVersionDownloadable(self, pkg): " helper that checks if any of the version of pkg is downloadable " for ver in pkg._pkg.version_list: if ver.downloadable: return True return False def _getUnusedDependencies(self): " get all package names that are not downloadable " unused_dependencies = set() for pkg in self: if pkg.is_installed and self._depcache.is_garbage(pkg._pkg): unused_dependencies.add(pkg.name) return unused_dependencies def get_installed_demoted_packages(self): """ return list of installed and demoted packages If a demoted package is a automatic install it will be skipped """ demotions = set() demotions_file = self.config.get("Distro", "Demotions") if os.path.exists(demotions_file): with open(demotions_file) as demotions_f: for line in demotions_f: if not line.startswith("#"): demotions.add(line.strip()) installed_demotions = set() for demoted_pkgname in demotions: if demoted_pkgname not in self: continue pkg = self[demoted_pkgname] if (not pkg.is_installed or self._depcache.is_auto_installed(pkg._pkg) or pkg.marked_delete): continue installed_demotions.add(pkg) return list(installed_demotions) def _getForeignPkgs(self, allowed_origin, fromDist, toDist): """ get all packages that are installed from a foreign repo (and are actually downloadable) """ foreign_pkgs = set() for pkg in self: if pkg.is_installed and self.downloadable(pkg): if not pkg.candidate: continue # assume it is foreign and see if it is from the # official archive foreign = True for origin in pkg.candidate.origins: # FIXME: use some better metric here if fromDist in origin.archive and \ origin.origin == allowed_origin: foreign = False if toDist in origin.archive and \ origin.origin == allowed_origin: foreign = False if foreign: foreign_pkgs.add(pkg.name) return foreign_pkgs def checkFreeSpace(self, snapshots_in_use=False): """ this checks if we have enough free space on /var, /boot and /usr with the given cache Note: this can not be fully accurate if there are multiple mountpoints for /usr, /var, /boot """ class FreeSpace(object): " helper class that represents the free space on each mounted fs " def __init__(self, initialFree): self.free = initialFree self.need = 0 def make_fs_id(d): """ return 'id' of a directory so that directories on the same filesystem get the same id (simply the mount_point) """ for mount_point in mounted: if d.startswith(mount_point): return mount_point return "/" # this is all a bit complicated # 1) check what is mounted (in mounted) # 2) create FreeSpace objects for the dirs we are interested in # (mnt_map) # 3) use the mnt_map to check if we have enough free space and # if not tell the user how much is missing mounted = [] mnt_map = {} fs_free = {} with open("/proc/mounts") as mounts: for line in mounts: try: (what, where, fs, options, a, b) = line.split() except ValueError as e: logging.debug("line '%s' in /proc/mounts not understood (%s)" % (line, e)) continue if not where in mounted: mounted.append(where) # make sure mounted is sorted by longest path mounted.sort(key=len, reverse=True) archivedir = apt_pkg.config.find_dir("Dir::Cache::archives") aufs_rw_dir = "/tmp/" if (hasattr(self, "config") and self.config.getWithDefault("Aufs", "Enabled", False)): aufs_rw_dir = self.config.get("Aufs", "RWDir") if not os.path.exists(aufs_rw_dir): os.makedirs(aufs_rw_dir) logging.debug("cache aufs_rw_dir: %s" % aufs_rw_dir) for d in ["/", "/usr", "/var", "/boot", archivedir, aufs_rw_dir, "/home", "/tmp/"]: d = os.path.realpath(d) fs_id = make_fs_id(d) if os.path.exists(d): st = os.statvfs(d) free = st.f_bavail * st.f_frsize else: logging.warn("directory '%s' does not exists" % d) free = 0 if fs_id in mnt_map: logging.debug("Dir %s mounted on %s" % (d, mnt_map[fs_id])) fs_free[d] = fs_free[mnt_map[fs_id]] else: logging.debug("Free space on %s: %s" % (d, free)) mnt_map[fs_id] = d fs_free[d] = FreeSpace(free) del mnt_map logging.debug("fs_free contains: '%s'" % fs_free) # now calculate the space that is required on /boot # we do this by checking how many linux-image-$ver packages # are installed or going to be installed space_in_boot = 0 for pkg in self: # we match against everything that looks like a kernel # and add space check to filter out metapackages if re.match("^linux-(image|image-debug)-[0-9.]*-.*", pkg.name): if pkg.marked_install: logging.debug("%s (new-install) added with %s to boot space" % (pkg.name, KERNEL_INITRD_SIZE)) # multiply the KERNEL_INITRD_SIZE by two as we store a # copy of the old initrd when creating a new one space_in_boot += (KERNEL_INITRD_SIZE * 2) # mvo: jaunty does not create .bak files anymore #elif (pkg.marked_upgrade or pkg.is_installed): # logging.debug("%s (upgrade|installed) added with %s to boot space" % (pkg.name, KERNEL_INITRD_SIZE)) # space_in_boot += KERNEL_INITRD_SIZE # creates .bak # we check for various sizes: # archivedir is were we download the debs # /usr is assumed to get *all* of the install space (incorrect, # but as good as we can do currently + safety buffer # / has a small safety buffer as well required_for_aufs = 0.0 if (hasattr(self, "config") and self.config.getWithDefault("Aufs", "Enabled", False)): logging.debug("taking aufs overlay into space calculation") aufs_rw_dir = self.config.get("Aufs", "RWDir") # if we use the aufs rw overlay all the space is consumed # the overlay dir for pkg in self: if pkg.marked_upgrade or pkg.marked_install: required_for_aufs += pkg.candidate.installed_size # add old size of the package if we use snapshots required_for_snapshots = 0.0 if snapshots_in_use: for pkg in self: if (pkg.is_installed and (pkg.marked_upgrade or pkg.marked_delete)): required_for_snapshots += pkg.installed.installed_size logging.debug("additional space for the snapshots: %s" % required_for_snapshots) # sum up space requirements for (dir, size) in [(archivedir, self.required_download), # plus 50M safety buffer in /usr ("/usr", self.additional_required_space), ("/usr", 50*1024*1024), ("/boot", space_in_boot), ("/tmp", 5*1024*1024), # /tmp for dkms LP: #427035 ("/", 10*1024*1024), # small safety buffer / (aufs_rw_dir, required_for_aufs), # if snapshots are in use ("/usr", required_for_snapshots), ]: dir = os.path.realpath(dir) logging.debug("dir '%s' needs '%s' of '%s' (%f)" % (dir, size, fs_free[dir], fs_free[dir].free)) fs_free[dir].free -= size fs_free[dir].need += size # check for space required violations required_list = {} for dir in fs_free: if fs_free[dir].free < 0: # ensure unicode here (LP: #1172740) free_at_least = apt_pkg.size_to_str(float(abs(fs_free[dir].free)+1)) if isinstance(free_at_least, bytes): free_at_least = free_at_least.decode( locale.getpreferredencoding()) free_needed = apt_pkg.size_to_str(fs_free[dir].need) if isinstance(free_needed, bytes): free_needed = free_needed.decode( locale.getpreferredencoding()) # make_fs_id ensures we only get stuff on the same # mountpoint, so we report the requirements only once # per mountpoint required_list[make_fs_id(dir)] = FreeSpaceRequired(free_needed, make_fs_id(dir), free_at_least) # raise exception if free space check fails if len(required_list) > 0: logging.error("Not enough free space: %s" % [str(i) for i in required_list]) raise NotEnoughFreeSpaceError(list(required_list.values())) return True if __name__ == "__main__": import sys from .DistUpgradeConfigParser import DistUpgradeConfig from .DistUpgradeView import DistUpgradeView print("foo") c = MyCache(DistUpgradeConfig("."), DistUpgradeView(), None) #c.checkForNvidia() #print(c._identifyObsoleteKernels()) print(c.checkFreeSpace()) sys.exit() c.clear() c.create_snapshot() c.installedTasks c.installTasks(["ubuntu-desktop"]) print(c.get_changes()) c.restore_snapshot() ubuntu-release-upgrader-0.220.10/DistUpgrade/DistUpgradeViewGtk3.py0000644000000000000000000007612412431225715021771 0ustar # DistUpgradeViewGtk3.py # # Copyright (c) 2011 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import absolute_import, print_function import gi gi.require_version("Gtk", "3.0") gi.require_version("Vte", "2.90") from gi.repository import Gtk from gi.repository import Gdk from gi.repository import Vte from gi.repository import GLib from gi.repository import GObject from gi.repository import Pango import sys import locale import logging import time import subprocess import apt import apt_pkg import os from .DistUpgradeApport import run_apport, apport_crash from .DistUpgradeView import DistUpgradeView, FuzzyTimeToStr, InstallProgress, AcquireProgress from .SimpleGtk3builderApp import SimpleGtkbuilderApp import gettext from .DistUpgradeGettext import gettext as _ class GtkCdromProgressAdapter(apt.progress.base.CdromProgress): """ Report the cdrom add progress Subclass this class to implement cdrom add progress reporting """ def __init__(self, parent): self.status = parent.label_status self.progress = parent.progressbar_cache self.parent = parent def update(self, text, step): """ update is called regularly so that the gui can be redrawn """ if text: self.status.set_text(text) self.progress.set_fraction(step/float(self.totalSteps)) while Gtk.events_pending(): Gtk.main_iteration() def ask_cdrom_name(self): return (False, "") def change_cdrom(self): return False class GtkOpProgress(apt.progress.base.OpProgress): def __init__(self, progressbar): self.progressbar = progressbar #self.progressbar.set_pulse_step(0.01) #self.progressbar.pulse() self.fraction = 0.0 def update(self, percent=None): super(GtkOpProgress, self).update(percent) #if self.percent > 99: # self.progressbar.set_fraction(1) #else: # self.progressbar.pulse() new_fraction = self.percent/100.0 if abs(self.fraction-new_fraction) > 0.1: self.fraction = new_fraction self.progressbar.set_fraction(self.fraction) while Gtk.events_pending(): Gtk.main_iteration() def done(self): self.progressbar.set_text(" ") class GtkAcquireProgressAdapter(AcquireProgress): # FIXME: we really should have some sort of "we are at step" # xy in the gui # FIXME2: we need to thing about mediaCheck here too def __init__(self, parent): super(GtkAcquireProgressAdapter, self).__init__() # if this is set to false the download will cancel self.status = parent.label_status self.progress = parent.progressbar_cache self.parent = parent self.canceled = False self.button_cancel = parent.button_fetch_cancel self.button_cancel.connect('clicked', self.cancelClicked) def cancelClicked(self, widget): logging.debug("cancelClicked") self.canceled = True def media_change(self, medium, drive): #print("mediaChange %s %s" % (medium, drive)) msg = _("Please insert '%s' into the drive '%s'") % (medium,drive) dialog = Gtk.MessageDialog(parent=self.parent.window_main, flags=Gtk.DialogFlags.MODAL, type=Gtk.MessageType.QUESTION, buttons=Gtk.ButtonsType.OK_CANCEL) dialog.set_markup(msg) res = dialog.run() dialog.set_title("") dialog.destroy() if res == Gtk.ResponseType.OK: return True return False def start(self): #logging.debug("start") super(GtkAcquireProgressAdapter, self).start() self.progress.set_fraction(0) self.status.show() self.button_cancel.show() def stop(self): #logging.debug("stop") self.progress.set_text(" ") self.status.set_text(_("Fetching is complete")) self.button_cancel.hide() def pulse(self, owner): super(GtkAcquireProgressAdapter, self).pulse(owner) # only update if there is a noticable change if abs(self.percent-self.progress.get_fraction()*100.0) > 0.1: self.progress.set_fraction(self.percent/100.0) currentItem = self.current_items + 1 if currentItem > self.total_items: currentItem = self.total_items if self.current_cps > 0: current_cps = apt_pkg.size_to_str(self.current_cps) if isinstance(current_cps, bytes): current_cps = current_cps.decode( locale.getpreferredencoding()) self.status.set_text(_("Fetching file %li of %li at %sB/s") % ( currentItem, self.total_items, current_cps)) self.progress.set_text(_("About %s remaining") % FuzzyTimeToStr( self.eta)) else: self.status.set_text(_("Fetching file %li of %li") % ( currentItem, self.total_items)) self.progress.set_text(" ") while Gtk.events_pending(): Gtk.main_iteration() return (not self.canceled) class GtkInstallProgressAdapter(InstallProgress): # timeout with no status change when the terminal is expanded # automatically TIMEOUT_TERMINAL_ACTIVITY = 300 def __init__(self,parent): InstallProgress.__init__(self) self._cache = None self.label_status = parent.label_status self.progress = parent.progressbar_cache self.expander = parent.expander_terminal self.term = parent._term self.term.connect("child-exited", self.child_exited) self.parent = parent # setup the child waiting # some options for dpkg to make it die less easily apt_pkg.config.set("DPkg::StopOnError","False") def start_update(self): InstallProgress.start_update(self) self.finished = False # FIXME: add support for the timeout # of the terminal (to display something useful then) # -> longer term, move this code into python-apt self.label_status.set_text(_("Applying changes")) self.progress.set_fraction(0.0) self.progress.set_text(" ") self.expander.set_sensitive(True) self.term.show() self.term.connect("contents-changed", self._on_term_content_changed) # if no libgtk2-perl is installed show the terminal frontend= os.environ.get("DEBIAN_FRONTEND") or "gnome" if frontend == "gnome" and self._cache: if (not "libgtk2-perl" in self._cache or not self._cache["libgtk2-perl"].is_installed): frontend = "dialog" self.expander.set_expanded(True) self.env = ["VTE_PTY_KEEP_FD=%s"% self.writefd, "APT_LISTCHANGES_FRONTEND=none"] if "DEBIAN_FRONTEND" not in os.environ: self.env.append("DEBIAN_FRONTEND=%s" % frontend) # do a bit of time-keeping self.start_time = 0.0 self.time_ui = 0.0 self.last_activity = 0.0 def error(self, pkg, errormsg): InstallProgress.error(self, pkg, errormsg) logging.error("got an error from dpkg for pkg: '%s': '%s'" % (pkg, errormsg)) # we do not report followup errors from earlier failures if gettext.dgettext('dpkg', "dependency problems - leaving unconfigured") in errormsg: return False #self.expander_terminal.set_expanded(True) self.parent.dialog_error.set_transient_for(self.parent.window_main) summary = _("Could not install '%s'") % pkg msg = _("The upgrade will continue but the '%s' package may not " "be in a working state. Please consider submitting a " "bug report about it.") % pkg markup="%s\n\n%s" % (summary, msg) self.parent.dialog_error.realize() self.parent.dialog_error.set_title("") self.parent.dialog_error.get_window().set_functions(Gdk.WMFunction.MOVE) self.parent.label_error.set_markup(markup) self.parent.textview_error.get_buffer().set_text(errormsg) self.parent.scroll_error.show() self.parent.dialog_error.run() self.parent.dialog_error.hide() def conffile(self, current, new): logging.debug("got a conffile-prompt from dpkg for file: '%s'" % current) start = time.time() #self.expander.set_expanded(True) prim = _("Replace the customized configuration file\n'%s'?") % current sec = _("You will lose any changes you have made to this " "configuration file if you choose to replace it with " "a newer version.") markup = "%s \n\n%s" % (prim, sec) self.parent.label_conffile.set_markup(markup) self.parent.dialog_conffile.set_title("") self.parent.dialog_conffile.set_transient_for(self.parent.window_main) # workaround silly dpkg if not os.path.exists(current): current = current+".dpkg-dist" # now get the diff if os.path.exists("/usr/bin/diff"): cmd = ["/usr/bin/diff", "-u", current, new] diff = subprocess.Popen( cmd, stdout=subprocess.PIPE).communicate()[0] diff = diff.decode("UTF-8", "replace") self.parent.textview_conffile.get_buffer().set_text(diff) else: self.parent.textview_conffile.get_buffer().set_text(_("The 'diff' command was not found")) res = self.parent.dialog_conffile.run() self.parent.dialog_conffile.hide() self.time_ui += time.time() - start # if replace, send this to the terminal if res == Gtk.ResponseType.YES: self.term.feed_child("y\n", -1) else: self.term.feed_child("n\n", -1) def fork(self): pty = Vte.Pty.new(Vte.PtyFlags.DEFAULT) pid = os.fork() if pid == 0: # WORKAROUND for broken feisty vte where envv does not work) for env in self.env: (key, value) = env.split("=") os.environ[key] = value # MUST be called pty.child_setup() # force dpkg terminal messages untranslated for better bug # duplication detection os.environ["DPKG_UNTRANSLATED_MESSAGES"] = "1" else: self.term.set_pty_object(pty) self.term.watch_child(pid) return pid def _on_term_content_changed(self, term): """ helper function that is called when the terminal changed to ensure that we have a accurate idea when something hangs """ self.last_activity = time.time() self.activity_timeout_reported = False def status_change(self, pkg, percent, status): # start the timer when the first package changes its status if self.start_time == 0.0: #print("setting start time to %s" % self.start_time) self.start_time = time.time() # only update if there is a noticable change if abs(percent-self.progress.get_fraction()*100.0) > 0.1: self.progress.set_fraction(float(percent)/100.0) self.label_status.set_text(status.strip()) # start showing when we gathered some data if percent > 1.0: delta = self.last_activity - self.start_time # time wasted in conffile questions (or other ui activity) delta -= self.time_ui time_per_percent = (float(delta)/percent) eta = (100.0 - percent) * time_per_percent # only show if we have some sensible data (60sec < eta < 2days) if eta > 61.0 and eta < (60*60*24*2): self.progress.set_text(_("About %s remaining") % FuzzyTimeToStr(eta)) else: self.progress.set_text(" ") # 2 == WEBKIT_LOAD_FINISHED - the enums is not exposed via python if (self.parent._webkit_view and self.parent._webkit_view.get_property("load-status") == 2): self.parent._webkit_view.execute_script('progress("%s")' % percent) def child_exited(self, term): # we need to capture the full status here (not only the WEXITSTATUS) self.apt_status = term.get_child_exit_status() self.finished = True def wait_child(self): while not self.finished: self.update_interface() return self.apt_status def finish_update(self): self.label_status.set_text("") def update_interface(self): InstallProgress.update_interface(self) # check if we haven't started yet with packages, pulse then if self.start_time == 0.0: self.progress.pulse() time.sleep(0.2) # check about terminal activity if self.last_activity > 0 and \ (self.last_activity + self.TIMEOUT_TERMINAL_ACTIVITY) < time.time(): if not self.activity_timeout_reported: logging.warning("no activity on terminal for %s seconds (%s)" % (self.TIMEOUT_TERMINAL_ACTIVITY, self.label_status.get_text())) self.activity_timeout_reported = True self.parent.expander_terminal.set_expanded(True) # process events while Gtk.events_pending(): Gtk.main_iteration() time.sleep(0.01) class DistUpgradeVteTerminal(object): def __init__(self, parent, term): self.term = term self.parent = parent def call(self, cmd, hidden=False): def wait_for_child(widget): #print("wait for child finished") self.finished=True self.term.show() self.term.connect("child-exited", wait_for_child) self.parent.expander_terminal.set_sensitive(True) if hidden==False: self.parent.expander_terminal.set_expanded(True) self.finished = False (success, pid) = self.term.fork_command_full(Vte.PtyFlags.DEFAULT, "/", cmd, None, 0, # GLib.SpawnFlags None, # child_setup None, # child_setup_data ) if not success or pid < 0: # error return while not self.finished: while Gtk.events_pending(): Gtk.main_iteration() time.sleep(0.1) del self.finished class HtmlView(object): def __init__(self, webkit_view): self._webkit_view = webkit_view def open(self, url): if not self._webkit_view: return self._webkit_view.open(url) self._webkit_view.connect("load-finished", self._on_load_finished) def show(self): self._webkit_view.show() def hide(self): self._webkit_view.hide() def _on_load_finished(self, view, frame): view.show() class DistUpgradeViewGtk3(DistUpgradeView,SimpleGtkbuilderApp): " gtk frontend of the distUpgrade tool " def __init__(self, datadir=None, logdir=None): DistUpgradeView.__init__(self) self.logdir = logdir if not datadir or datadir == '.': localedir=os.path.join(os.getcwd(),"mo") gladedir=os.getcwd() else: localedir="/usr/share/locale/" gladedir=os.path.join(datadir, "gtkbuilder") # check if we have a display etc Gtk.init_check(sys.argv) try: locale.bindtextdomain("ubuntu-release-upgrader",localedir) gettext.textdomain("ubuntu-release-upgrader") except Exception as e: logging.warning("Error setting locales (%s)" % e) SimpleGtkbuilderApp.__init__(self, gladedir+"/DistUpgrade.ui", "ubuntu-release-upgrader") icons = Gtk.IconTheme.get_default() try: self.window_main.set_default_icon(icons.load_icon("system-software-update", 32, 0)) except GObject.GError as e: logging.debug("error setting default icon, ignoring (%s)" % e) pass # terminal stuff self.create_terminal() self.prev_step = 0 # keep a record of the latest step # we don't use this currently #self.window_main.set_keep_above(True) self.icontheme = Gtk.IconTheme.get_default() self._webkit_view = None self.window_main.realize() self.window_main.get_window().set_functions(Gdk.WMFunction.MOVE) self._opCacheProgress = GtkOpProgress(self.progressbar_cache) self._acquireProgress = GtkAcquireProgressAdapter(self) self._cdromProgress = GtkCdromProgressAdapter(self) self._installProgress = GtkInstallProgressAdapter(self) # details dialog self.details_list = Gtk.TreeStore(GObject.TYPE_STRING) column = Gtk.TreeViewColumn("") render = Gtk.CellRendererText() column.pack_start(render, True) column.add_attribute(render, "markup", 0) self.treeview_details.append_column(column) self.details_list.set_sort_column_id(0, Gtk.SortType.ASCENDING) self.treeview_details.set_model(self.details_list) # lp: #1072460 self.dialog_changes.set_resizable(False) def _activated(w): # the *current* expanded state which will change after the signal expanded = self.expander_details.get_expanded() self.dialog_changes.set_resizable(not expanded) self.expander_details.connect("activate", _activated) # FIXME: portme # Use italic style in the status labels #attrlist=Pango.AttrList() #attr = Pango.AttrStyle(Pango.Style.ITALIC, 0, -1) #attr = Pango.AttrScale(Pango.SCALE_SMALL, 0, -1) #attrlist.insert(attr) #self.label_status.set_property("attributes", attrlist) # reasonable fault handler sys.excepthook = self._handleException def _handleException(self, type, value, tb): # we handle the exception here, hand it to apport and run the # apport gui manually after it because we kill u-m during the upgrade # to prevent it from poping up for reboot notifications or FF restart # notifications or somesuch import traceback lines = traceback.format_exception(type, value, tb) logging.error("not handled expection:\n%s" % "\n".join(lines)) # we can't be sure that apport will run in the middle of a upgrade # so we still show a error message here apport_crash(type, value, tb) if not run_apport(): self.error(_("A fatal error occurred"), _("Please report this as a bug (if you haven't already) and include the " "files /var/log/dist-upgrade/main.log and " "/var/log/dist-upgrade/apt.log " "in your report. The upgrade has aborted.\n" "Your original sources.list was saved in " "/etc/apt/sources.list.distUpgrade."), "\n".join(lines)) sys.exit(1) def getTerminal(self): return DistUpgradeVteTerminal(self, self._term) def getHtmlView(self): if self._webkit_view is None: try: from gi.repository import WebKit self._webkit_view = WebKit.WebView() settings = self._webkit_view.get_settings() settings.set_property("enable-plugins", False) self.vbox_main.pack_end(self._webkit_view, True, True, 0) except: logging.exception("html widget") return DistUpgradeView.DummyHtmlView() return HtmlView(self._webkit_view) def _key_press_handler(self, widget, keyev): # user pressed ctrl-c if len(keyev.string) == 1 and ord(keyev.string) == 3: summary = _("Ctrl-c pressed") msg = _("This will abort the operation and may leave the system " "in a broken state. Are you sure you want to do that?") res = self.askYesNoQuestion(summary, msg) logging.warning("ctrl-c press detected, user decided to pass it " "on: %s", res) return not res return False def create_terminal(self): " helper to create a vte terminal " self._term = Vte.Terminal() self._term.connect("key-press-event", self._key_press_handler) self._term.set_font_from_string("monospace 10") self._terminal_lines = [] self.hbox_custom.pack_start(self._term, True, True, 0) self._term.realize() self.vscrollbar_terminal = Gtk.VScrollbar() self.vscrollbar_terminal.show() self.hbox_custom.pack_start(self.vscrollbar_terminal, True, True, 0) self.vscrollbar_terminal.set_adjustment(self._term.get_vadjustment()) try: self._terminal_log = open(os.path.join(self.logdir,"term.log"),"w") except Exception: # if something goes wrong (permission denied etc), use stdout self._terminal_log = sys.stdout return self._term def getAcquireProgress(self): return self._acquireProgress def getInstallProgress(self, cache): self._installProgress._cache = cache return self._installProgress def getOpCacheProgress(self): return self._opCacheProgress def getCdromProgress(self): return self._cdromProgress def updateStatus(self, msg): self.label_status.set_text("%s" % msg) def hideStep(self, step): image = getattr(self,"image_step%i" % step) label = getattr(self,"label_step%i" % step) #arrow = getattr(self,"arrow_step%i" % step) image.hide() label.hide() def showStep(self, step): image = getattr(self,"image_step%i" % step) label = getattr(self,"label_step%i" % step) image.show() label.show() def abort(self): size = Gtk.IconSize.MENU step = self.prev_step if step > 0: image = getattr(self,"image_step%i" % step) arrow = getattr(self,"arrow_step%i" % step) image.set_from_stock(Gtk.STOCK_CANCEL, size) image.show() arrow.hide() def setStep(self, step): if self.icontheme.rescan_if_needed(): logging.debug("icon theme changed, re-reading") # first update the "previous" step as completed size = Gtk.IconSize.MENU attrlist=Pango.AttrList() if self.prev_step: image = getattr(self,"image_step%i" % self.prev_step) label = getattr(self,"label_step%i" % self.prev_step) arrow = getattr(self,"arrow_step%i" % self.prev_step) label.set_property("attributes",attrlist) image.set_from_stock(Gtk.STOCK_APPLY, size) image.show() arrow.hide() self.prev_step = step # show the an arrow for the current step and make the label bold image = getattr(self,"image_step%i" % step) label = getattr(self,"label_step%i" % step) arrow = getattr(self,"arrow_step%i" % step) # check if that step was not hidden with hideStep() if not label.get_property("visible"): return arrow.show() image.hide() # FIXME: portme #attr = Pango.AttrWeight(Pango.Weight.BOLD, 0, -1) #attrlist.insert(attr) #label.set_property("attributes",attrlist) def information(self, summary, msg, extended_msg=None): self.dialog_information.set_title("") self.dialog_information.set_transient_for(self.window_main) msg = "%s\n\n%s" % (summary,msg) self.label_information.set_markup(msg) if extended_msg != None: buffer = self.textview_information.get_buffer() buffer.set_text(extended_msg) self.scroll_information.show() else: self.scroll_information.hide() self.dialog_information.realize() self.dialog_information.get_window().set_functions(Gdk.WMFunction.MOVE) self.dialog_information.run() self.dialog_information.hide() while Gtk.events_pending(): Gtk.main_iteration() def error(self, summary, msg, extended_msg=None): self.dialog_error.set_title("") self.dialog_error.set_transient_for(self.window_main) #self.expander_terminal.set_expanded(True) msg="%s\n\n%s" % (summary, msg) self.label_error.set_markup(msg) if extended_msg != None: buffer = self.textview_error.get_buffer() buffer.set_text(extended_msg) self.scroll_error.show() else: self.scroll_error.hide() self.dialog_error.realize() self.dialog_error.get_window().set_functions(Gdk.WMFunction.MOVE) self.dialog_error.run() self.dialog_error.hide() return False def confirmChanges(self, summary, changes, demotions, downloadSize, actions=None, removal_bold=True): # FIXME: add a whitelist here for packages that we expect to be # removed (how to calc this automatically?) if not DistUpgradeView.confirmChanges(self, summary, changes, demotions, downloadSize): return False # append warning self.confirmChangesMessage += "\n\n%s" % \ _("To prevent data loss close all open " "applications and documents.") if actions != None: self.button_cancel_changes.set_use_stock(False) self.button_cancel_changes.set_use_underline(True) self.button_cancel_changes.set_label(actions[0]) self.button_confirm_changes.set_label(actions[1]) self.label_summary.set_markup("%s" % summary) self.label_changes.set_markup(self.confirmChangesMessage) # fill in the details self.details_list.clear() for (parent_text, details_list) in ( ( _("No longer supported by Canonical (%s)"), self.demotions), ( _("Downgrade (%s)"), self.toDowngrade), ( _("Remove (%s)"), self.toRemove), ( _("No longer needed (%s)"), self.toRemoveAuto), ( _("Install (%s)"), self.toInstall), ( _("Upgrade (%s)"), self.toUpgrade), ): if details_list: node = self.details_list.append(None, [parent_text % len(details_list)]) for pkg in details_list: self.details_list.append(node, ["%s - %s" % ( pkg.name, GLib.markup_escape_text(getattr(pkg.candidate, "summary", None)))]) # prepare dialog self.dialog_changes.realize() self.dialog_changes.set_transient_for(self.window_main) self.dialog_changes.set_title("") self.dialog_changes.get_window().set_functions(Gdk.WMFunction.MOVE| Gdk.WMFunction.RESIZE) res = self.dialog_changes.run() self.dialog_changes.hide() if res == Gtk.ResponseType.YES: return True return False def askYesNoQuestion(self, summary, msg, default='No'): msg = "%s\n\n%s" % (summary,msg) dialog = Gtk.MessageDialog(parent=self.window_main, flags=Gtk.DialogFlags.MODAL, type=Gtk.MessageType.QUESTION, buttons=Gtk.ButtonsType.YES_NO) dialog.set_title("") if default == 'No': dialog.set_default_response(Gtk.ResponseType.NO) else: dialog.set_default_response(Gtk.ResponseType.YES) dialog.set_markup(msg) res = dialog.run() dialog.destroy() if res == Gtk.ResponseType.YES: return True return False def confirmRestart(self): self.dialog_restart.set_transient_for(self.window_main) self.dialog_restart.set_title("") self.dialog_restart.realize() self.dialog_restart.get_window().set_functions(Gdk.WMFunction.MOVE) res = self.dialog_restart.run() self.dialog_restart.hide() if res == Gtk.ResponseType.YES: return True return False def processEvents(self): while Gtk.events_pending(): Gtk.main_iteration() def pulseProgress(self, finished=False): self.progressbar_cache.pulse() if finished: self.progressbar_cache.set_fraction(1.0) def on_window_main_delete_event(self, widget, event): self.dialog_cancel.set_transient_for(self.window_main) self.dialog_cancel.set_title("") self.dialog_cancel.realize() self.dialog_cancel.get_window().set_functions(Gdk.WMFunction.MOVE) res = self.dialog_cancel.run() self.dialog_cancel.hide() if res == Gtk.ResponseType.CANCEL: sys.exit(1) return True if __name__ == "__main__": view = DistUpgradeViewGtk3() fp = GtkAcquireProgressAdapter(view) ip = GtkInstallProgressAdapter(view) view.getTerminal().call(["/usr/bin/dpkg","--configure","-a"]) Gtk.main() sys.exit(0) cache = apt.Cache() for pkg in sys.argv[1:]: if cache[pkg].is_installed: cache[pkg].mark_delete() else: cache[pkg].mark_install() cache.commit(fp,ip) Gtk.main() #sys.exit(0) ip.conffile("TODO","TODO~") view.getTerminal().call(["/usr/bin/dpkg","--configure","-a"]) #view.getTerminal().call(["ls","-R","/usr"]) view.error("short","long", "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" "asfds afsdj af asdf asdf asf dsa fadsf asdf as fasf sextended\n" ) view.confirmChanges("xx",[], 100) ubuntu-release-upgrader-0.220.10/DistUpgrade/janitor0000777000000000000000000000000012431225715026425 2/usr/lib/python3/dist-packages/janitor/ustar ubuntu-release-upgrader-0.220.10/DistUpgrade/Ubuntu.info0000777000000000000000000000000012431225715030174 2/usr/share/python-apt/templates/Ubuntu.infoustar ubuntu-release-upgrader-0.220.10/DistUpgrade/DevelReleaseAnnouncement.html0000644000000000000000000000457612602566762023435 0ustar Welcome to the Ubuntu 'Trusty Tahr' development release

Welcome to the Ubuntu 'Trusty Tahr' development release

This release is still in development. Do not install it on production machines.

Thanks for your interest in this development release of Ubuntu. The Ubuntu developers are moving very quickly to bring you the absolute latest and greatest software the Open Source Community has to offer. This development release brings you a taste of the newest features for the next version of Ubuntu.

Testing

Please help to test this development snapshot and report problems back to the developers. For more information about testing Ubuntu, please read:

  http://www.ubuntu.com/testing

Reporting Bugs

This development release of Ubuntu contains bugs. If you want to help out with bugs, the Bug Squad is always looking for help. Please read the following information about reporting bugs:

  http://help.ubuntu.com/community/ReportingBugs

Then report bugs using apport in Ubuntu. For example:

  ubuntu-bug linux

will open a bug report in Launchpad regarding the linux package. Your comments, bug reports, patches and suggestions will help fix bugs and improve future releases.

Participate in Ubuntu

If you would like to help shape Ubuntu, take a look at the list of ways you can participate at

  http://www.ubuntu.com/community/participate/

More Information

You can find out more about Ubuntu on the Ubuntu website and Ubuntu wiki.

  http://www.ubuntu.com/
  http://wiki.ubuntu.com/

To sign up for Ubuntu development announcements, please subscribe to Ubuntu's development announcement list at:

  http://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-announce 
ubuntu-release-upgrader-0.220.10/DistUpgrade/distro.py0000777000000000000000000000000012431225715031310 2/usr/lib/python3/dist-packages/aptsources/distro.pyustar ubuntu-release-upgrader-0.220.10/DistUpgrade/build-dist.sh0000755000000000000000000000306712431225715020213 0ustar #!/bin/sh # build a tarball that is ready for the upload. the format is # simple, it contans: # $version/$dist.tar.gz # $version/ReleaseNotes # this put into a file called "$dist-upgrader_$version.tar.gz" TARGETDIR=../dist-upgrade-build SOURCEDIR=`pwd` DIST=feisty MAINTAINER="Michael Vogt " NOTES=ReleaseAnnouncement version=$(cd ..;LC_ALL=C dpkg-parsechangelog |sed -n -e '/^Version:/s/^Version: //p' | sed s/.*://) # create targetdir if [ ! -d $TARGETDIR/$version ]; then mkdir -p $TARGETDIR/$version fi #build the actual dist-upgrader tarball ./build-tarball.sh # how move it into a container including the targetdir (with version) # and ReleaeNotes cd $TARGETDIR/$version cp $SOURCEDIR/$NOTES . cp $SOURCEDIR/$DIST.tar.gz . cd .. # build it TARBALL="dist-upgrader_"$version"_all.tar.gz" tar czvf $TARBALL $version # now create a changes file CHANGES="dist-upgrader_"$version"_all.changes" echo > $CHANGES echo "Origin: Ubuntu/$DIST" >> $CHANGES echo "Format: 1.7" >> $CHANGES echo "Date: `date -R`" >> $CHANGES echo "Architecture: all">>$CHANGES echo "Version: $version" >>$CHANGES echo "Distribution: $DIST" >>$CHANGES echo "Source: dist-upgrader" >> $CHANGES echo "Binary: dist-upgrader" >> $CHANGES echo "Urgency: low" >> $CHANGES echo "Maintainer: $MAINTAINER" >> $CHANGES echo "Changed-By: $MAINTAINER" >> $CHANGES echo "Changes: " >> $CHANGES echo " * new upstream version" >> $CHANGES echo "Files: " >> $CHANGES echo " `md5sum $TARBALL | awk '{print $1}'` `stat --format=%s $TARBALL` raw-dist-upgrader - $TARBALL" >> $CHANGES ubuntu-release-upgrader-0.220.10/do-release-upgrade0000755000000000000000000001361312431225715016772 0ustar #!/usr/bin/python3 from __future__ import print_function import warnings warnings.filterwarnings("ignore", "apt API not stable yet", FutureWarning) from DistUpgrade.DistUpgradeVersion import VERSION from UpdateManager.Core.MetaRelease import MetaReleaseCore from optparse import OptionParser import locale import gettext import os import sys import time from UpdateManager.Core.utils import init_proxy RELEASE_AVAILABLE=0 NO_RELEASE_AVAILABLE=1 def get_fetcher(frontend, new_dist, datadir): if frontend == "DistUpgradeViewGtk3": from DistUpgrade.DistUpgradeFetcher import DistUpgradeFetcherGtk from DistUpgrade.GtkProgress import GtkAcquireProgress progress = GtkAcquireProgress( None, datadir, _("Downloading the release upgrade tool")) return DistUpgradeFetcherGtk(new_dist=new_dist, progress=progress, parent=None, datadir=datadir) else: from DistUpgrade.DistUpgradeFetcherCore import DistUpgradeFetcherCore import apt progress = apt.progress.text.AcquireProgress() return DistUpgradeFetcherCore(new_dist, progress) if __name__ == "__main__": #FIXME: Workaround a bug in optparser which doesn't handle unicode/str # correctly, see http://bugs.python.org/issue4391 # Should be resolved by Python3 gettext.bindtextdomain("ubuntu-release-upgrader", "/usr/share/locale") gettext.textdomain("ubuntu-release-upgrader") translation = gettext.translation("ubuntu-release-upgrader", fallback=True) if sys.version >= '3': _ = translation.gettext else: _ = translation.ugettext try: locale.setlocale(locale.LC_ALL, "") except: pass init_proxy() # when run as "check-new-release" we go into "check only" mode check_only = sys.argv[0].endswith("check-new-release") parser = OptionParser() parser.add_option ("-V", "--version", action="store_true", dest="show_version", default=False, help=_("Show version and exit")) parser.add_option ("-d", "--devel-release", action="store_true", dest="devel_release", default=False, help=_("Check if upgrading to the latest devel release " "is possible")) parser.add_option ("--data-dir", "", default="/usr/share/ubuntu-release-upgrader/", help=_("Directory that contains the data files")) parser.add_option ("-p", "--proposed", action="store_true", dest="proposed_release", default=False, help=_("Try upgrading to the latest release using " "the upgrader from $distro-proposed")) parser.add_option ("-m", "--mode", default="server", dest="mode", help=_("Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of " "a desktop system and 'server' for server " "systems are supported.")) parser.add_option ("-f", "--frontend", default="DistUpgradeViewText", dest="frontend", help=_("Run the specified frontend")) parser.add_option ("-s","--sandbox", action="store_true", default=False, help=_("Test upgrade with a sandbox aufs overlay")) parser.add_option ("-c", "--check-dist-upgrade-only", action="store_true", default=check_only, help=_("Check only if a new distribution release is " "available and report the result via the " "exit code")) parser.add_option ("-q", "--quiet", default=False, action="store_true", dest="quiet") (options, args) = parser.parse_args() if options.show_version: print("%s: version %s" % (os.path.basename(sys.argv[0]), VERSION)) sys.exit(0) if options.devel_release and options.proposed_release: print(_("The options --devel-release and --proposed are")) print(_("mutually exclusive. Please use only one of them.")) sys.exit(1) if not options.quiet: print(_("Checking for a new Ubuntu release")) m = MetaReleaseCore(useDevelopmentRelease=options.devel_release, useProposed=options.proposed_release) # this will timeout eventually m.downloaded.wait() # make sure to inform the user if his distro is no longer supported # this will make it appear in motd (that calls do-release-upgrade in # check-new-release mode) if m.no_longer_supported is not None: url = "http://www.ubuntu.com/releaseendoflife" print(_("Your Ubuntu release is not supported anymore.")) print(_("For upgrade information, please visit:\n" "%(url)s\n") % { 'url' : url }) # now inform about a new release if m.new_dist is None: if not options.quiet: print(_("No new release found")) sys.exit(NO_RELEASE_AVAILABLE) if m.new_dist.upgrade_broken: if not options.quiet: print(_("Release upgrade not possible right now")) print(_("The release upgrade can not be performed currently, " "please try again later. The server reported: '%s'") % m.new_dist.upgrade_broken) sys.exit(NO_RELEASE_AVAILABLE) # we have a new dist if options.check_dist_upgrade_only: print(_("New release '%s' available.") % m.new_dist.version) print(_("Run 'do-release-upgrade' to upgrade to it.")) sys.exit(RELEASE_AVAILABLE) fetcher = get_fetcher(options.frontend, m.new_dist, options.data_dir) fetcher.run_options += ["--mode=%s" % options.mode, "--frontend=%s" % options.frontend, ] if options.sandbox: fetcher.run_options.append("--sandbox") if options.devel_release: fetcher.run_options.append("--devel-release") fetcher.run() ubuntu-release-upgrader-0.220.10/README0000644000000000000000000000242712431225715014260 0ustar Distribution Upgrade tools for Ubuntu ------------------------------------- This tool implements the spec at: https://wiki.ubuntu.com/AutomaticUpgrade Broadly speaking a upgrade from one version to the next consists of three things: 1) The user must be informed about the new available distro (possibly release notes as well) and run the upgrade tool 2) The upgrade tool must be able to download updated information how to perform the upgrade (e.g. additional steps like upgrading certain libs first) 3) The upgrade tools runs and installs/remove packages and does some additional steps like post-release cleanup The steps in additon to upgrading the installed packages fall into this categories: * switch to new sources.list entries * adding the default user to new groups (warty, scanner group) * remove packages/install others (breezy, R:mozilla-firefox, RI:firefox, install ubuntu-desktop package again, R:portmap, I:language-package*) * check conffile settings (breezy: /etc/X11/xorg.conf; warty: /etc/modules) * check if {ubuntu,kubuntu,edubuntu}-desktop is installed * ask/change mirrors (breezy) * breezy: install new version of libgtk2.0-0 from hoary-updates, then restart synaptic * reboot The tool need a backported "python-vte" and "python-apt" to work on breezy.ubuntu-release-upgrader-0.220.10/do-partial-upgrade0000755000000000000000000000643012431225715017005 0ustar #!/usr/bin/python3 # -*- Mode: Python; indent-tabs-mode: nil; tab-width: 4; coding: utf-8 -*- # # Copyright (c) 2004-2012 Canonical # 2004-2008 Michael Vogt # 2004 Michiel Sikkes # # Author: Michiel Sikkes # Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import print_function from gi.repository import Gtk import gi gi.require_version("Gtk", "3.0") import os import sys from DistUpgrade.DistUpgradeVersion import VERSION from DistUpgrade.DistUpgradeController import DistUpgradeController import locale import gettext from optparse import OptionParser if __name__ == "__main__": Gtk.init_check(sys.argv) Gtk.Window.set_default_icon_name("system-software-update") #FIXME: Workaround a bug in optparser which doesn't handle unicode/str # correctly, see http://bugs.python.org/issue4391 # Should be resolved by Python3 gettext.bindtextdomain("ubuntu-release-upgrader", "/usr/share/locale") gettext.textdomain("ubuntu-release-upgrader") translation = gettext.translation("ubuntu-release-upgrader", fallback=True) if sys.version >= '3': _ = translation.gettext else: _ = translation.ugettext try: locale.setlocale(locale.LC_ALL, "") except: pass # Begin parsing of options parser = OptionParser() parser.add_option ("-V", "--version", action="store_true", dest="show_version", default=False, help=_("Show version and exit")) parser.add_option ("--data-dir", "", default="/usr/share/ubuntu-release-upgrader/", help=_("Directory that contains the data files")) parser.add_option ("-f", "--frontend", default="DistUpgradeViewText", dest="frontend", help=_("Run the specified frontend")) (options, args) = parser.parse_args() data_dir = os.path.normpath(options.data_dir)+"/" if options.show_version: print("%s: version %s" % (os.path.basename(sys.argv[0]), VERSION)) sys.exit(0) module_name = "DistUpgrade." + options.frontend module = __import__(module_name) submodule = getattr(module, options.frontend) view_class = getattr(submodule, options.frontend) view = view_class(data_dir) if options.frontend == "DistUpgradeViewGtk3": view.label_title.set_markup("%s" % _("Running partial upgrade")) controller = DistUpgradeController(view, datadir=data_dir) controller.doPartialUpgrade() ubuntu-release-upgrader-0.220.10/COPYING0000644000000000000000000004311012431225715014425 0ustar GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. ubuntu-release-upgrader-0.220.10/setup.cfg0000644000000000000000000000026612431225715015220 0ustar [build_i18n] domain=ubuntu-release-upgrader xml-files=[("share/polkit-1/actions", ["data/com.ubuntu.release-upgrader.policy.in"]),] [sdist] formats = bztar [nosetests] match=^test ubuntu-release-upgrader-0.220.10/kubuntu-devel-release-upgrade0000755000000000000000000000011312431225715021151 0ustar #!/bin/sh kdesudo "do-release-upgrade -m desktop -f DistUpgradeViewKDE -d" ubuntu-release-upgrader-0.220.10/data/0000755000000000000000000000000013017612615014304 5ustar ubuntu-release-upgrader-0.220.10/data/removal_blacklist.cfg0000644000000000000000000000064412506545535020476 0ustar # blacklist of packages that should never be removed ubuntu-standard ubuntu-minimal ubuntu-desktop kubuntu-desktop xubuntu-desktop lubuntu-desktop mythbuntu-desktop ubuntustudio-desktop # ubuntu-release-upgrader should not remove itself or update-manager update-manager$ update-manager-core ubuntu-release-upgrader # posgresql (LP: #871893) ^postgresql-.*[0-9]\.[0-9].* # the upgrade runs in it ^screen$ # unity unity$ ubuntu-release-upgrader-0.220.10/data/release-upgrades0000644000000000000000000000147512431225715017466 0ustar # Default behavior for the release upgrader. [DEFAULT] # Default prompting behavior, valid options: # # never - Never check for a new release. # normal - Check to see if a new release is available. If more than one new # release is found, the release upgrader will attempt to upgrade to # the release that immediately succeeds the currently-running # release. # lts - Check to see if a new LTS release is available. The upgrader # will attempt to upgrade to the first LTS release available after # the currently-running one. Note that this option should not be # used if the currently-running release is not itself an LTS # release, since in that case the upgrader won't be able to # determine if a newer release is available. Prompt=lts ubuntu-release-upgrader-0.220.10/data/Makefile0000644000000000000000000000037512431225715015751 0ustar DOMAIN=ubuntu-release-upgrader DESKTOP_IN_FILES := $(wildcard *.desktop.in) DESKTOP_FILES := $(patsubst %.desktop.in,%.desktop,$(wildcard *.desktop.in)) all: $(DESKTOP_FILES) %.desktop: %.desktop.in ../po/$(DOMAIN).pot intltool-merge -d ../po $< $@ ubuntu-release-upgrader-0.220.10/data/gtkbuilder/0000755000000000000000000000000012431225715016440 5ustar ubuntu-release-upgrader-0.220.10/data/gtkbuilder/AcquireProgress.ui0000644000000000000000000001623712431225715022126 0ustar False 6 True center-on-parent 400 dialog True True True False 6 True False 6 12 True False 0 True True False False 0 True False 6 True False 0.10000000149 True False 0 True False 0 False False 1 False False 1 True 6 True False 6 200 True True in True True False True True 0 True False Show progress of individual files True True 2 True True 0 True False end gtk-cancel False True True True 5 False True False False 0 False True 1 ubuntu-release-upgrader-0.220.10/data/gtkbuilder/UpgradePromptDialog.ui0000644000000000000000000003334412431225715022717 0ustar False center True vertical True 20 20 20 20 True 0 <b>A new version of Ubuntu is available. Would you like to upgrade?</b> True 0 True 20 20 20 20 True True 8 end Don't Upgrade True True True False False 0 Ask Me Later True True True False False 1 Yes, Upgrade Now True True True True True True False False False 2 1 2 5 center normal True You have declined to upgrade to the new Ubuntu You can upgrade at a later time by opening Software Updater and click on "Upgrade". True vertical 2 True end gtk-cancel True True True True False False 0 gtk-ok True True True True False False 1 False end 0 button2 button1 6 True center-on-parent 400 dialog True True True vertical 6 True 6 vertical 12 True 0 True True False False 0 True vertical 6 True 0.10000000149 False 0 True 0 False False 1 False False 1 True 6 True vertical 6 200 True True in True True False 0 True Show progress of individual files 2 0 True end gtk-cancel True True True 5 True False False 0 False 1 ubuntu-release-upgrader-0.220.10/data/gtkbuilder/DistUpgrade.ui0000644000000000000000000022735412431225715021227 0ustar False 6 False center-on-parent dialog True True True True False 12 True False end _Cancel Upgrade True True True False False True False False 0 _Resume Upgrade True True True True False False True False False 1 False True end 0 True False 6 12 True False 0 0 gtk-dialog-question 6 False True 0 True False 0 0 <b><big>Cancel the running upgrade?</big></b> The system could be in an unusable state if you cancel the upgrade. You are strongly adviced to resume the upgrade. True True False False 1 False True 1 button_cancel button_resume False 6 center-on-parent 500 550 dialog True True True True False 6 True False end gtk-cancel True True True False False True False False 0 _Start Upgrade True True True False False True False False 1 False True end 0 True False 6 12 True False 0 0 gtk-dialog-question 6 False True 0 True False 12 True True 0 True True True False True 0 True False 0 True True False True 1 True True 6 200 True True in True True False True False Details True True 2 True True 1 True True 1 button_cancel_changes button_confirm_changes False 5 True center-on-parent dialog True False 12 True False end True True True True False False True False 0 0 True False 2 True False gtk-cancel False False 0 True False _Keep True False False 1 False False 0 True True True False False True False 0 0 True False 2 True False gtk-ok False False 0 True False _Replace True False False 1 False False 1 False True end 0 True False 6 12 True False 0 0 gtk-dialog-question 6 False False 0 True False 12 60 True False 0 True True False False 0 True True 1 False True 1 True True True False 200 True True in True True False False True 0 True False Difference between the files True 2 button9 button10 False 6 False center-on-parent dialog True True True True False 12 True False end _Report Bug True True True False False True False False 0 gtk-close True True True True False False True False False 1 False True end 0 True False 6 12 True False 0 0 gtk-dialog-error 6 False True 0 True False 12 True True 0 True True True False True 0 400 200 True in True True 4 4 False 4 4 True True 1 True True 1 False True 1 button_bugreport button6 False 6 False center-on-parent dialog True True True True False 12 True False end gtk-close True True True True False False True False False 0 False True end 0 True False 6 12 True False 0 0 gtk-dialog-info 6 False True 0 True False 12 True True 0 True True True False True 0 400 200 True in True True 4 4 False 4 4 True True 1 True True 1 False True 1 button12 False 6 False center-on-parent 500 400 dialog True True True True False 6 True False end gtk-cancel True True True False False True False False 0 _Continue True True True False False True False False 1 False True end 0 True False 6 12 True False 12 True False 0 0 gtk-dialog-warning 6 False True 0 True False 12 True False 0 0 <b><big>Start the upgrade?</big></b> True True False False 0 True False 0 0 True False False 1 True True 400 200 True True in True True False True False Details False False 2 False False 1 False False 0 False True 1 button7 button8 False 6 False center-on-parent dialog True True True True False 12 True False end True True True False False True False 0 0 True False 2 True False gtk-refresh False False 0 True False _Restart Now True False False 1 False False 0 gtk-close True True True False False True False False 1 False True end 0 True False 6 12 True False 0 0 gtk-dialog-info 6 False True 0 True False 0 0 <b><big>Restart the system to complete the upgrade</big></b> Please save your work before continuing. True False False 1 False True 1 button_restart button_restart1 True False 6 Distribution Upgrade False center True True False 12 True False 6 12 True False 0 <b><big>Upgrading Ubuntu to version 14.04</big></b> True False False 0 True False True False False False 0 True False 6 2 6 6 True False 0 Preparing to upgrade 1 2 GTK_FILL True False 0 Setting new software channels 1 2 1 2 GTK_FILL True False 0 Getting new packages 1 2 2 3 GTK_FILL True False False True True 0 18 18 False True True 1 GTK_FILL GTK_FILL True False False True True 0 18 18 False True True 1 1 2 GTK_FILL GTK_FILL True False False True True 0 18 18 False True True 1 2 3 GTK_FILL GTK_FILL True False 0 Restarting the computer 1 2 5 6 GTK_FILL True False False True True 0 18 18 False True True 1 5 6 GTK_FILL GTK_FILL True False False True True 0 18 18 False True True 1 4 5 GTK_FILL GTK_FILL True False 0 Cleaning up 1 2 4 5 GTK_FILL True False 0 Installing the upgrades 1 2 3 4 GTK_FILL True False False True True 0 18 18 False True True 1 3 4 GTK_FILL GTK_FILL True True 1 True True 1 True False 4 350 True False 0.10000000149 end False False 0 True False 0 True end False False 1 True True 2 True False True False True 4 True False True False Terminal True True 0 gtk-cancel True False False True False False 1 True True 3 True True 0 ubuntu-release-upgrader-0.220.10/data/gtkbuilder/ReleaseNotes.ui0000644000000000000000000000746212431225715021401 0ustar False 6 Release Notes True center-on-parent 600 500 dialog True False vertical 6 False gtk-cancel False True True True True False True False False 0 _Upgrade False True True True True True False True False False 1 False True end 0 True True 6 in True True 1 okbutton1 button2 ubuntu-release-upgrader-0.220.10/data/additional_pkgs.cfg0000644000000000000000000000003212431225715020114 0ustar build-essential devscriptsubuntu-release-upgrader-0.220.10/data/com.ubuntu.release-upgrader.policy.in0000644000000000000000000000265112431225715023463 0ustar Ubuntu http://www.ubuntu.com/ system-software-update <_description>Perform a release upgrade <_message>To upgrade Ubuntu, you need to authenticate. /usr/bin/do-release-upgrade true no no auth_admin <_description>Perform a partial upgrade <_message>To perform a partial upgrade, you need to authenticate. /usr/lib/ubuntu-release-upgrader/do-partial-upgrade true no no auth_admin ubuntu-release-upgrader-0.220.10/data/DistUpgrade.cfg.precise0000644000000000000000000000774512431225715020646 0ustar [View] # the views will be tried in this order, if one fails to import, the next # is tried View=DistUpgradeViewGtk3,DistUpgradeViewGtk,DistUpgradeViewKDE,DistUpgradeViewText #View=DistUpgradeViewNonInteractive #Depends= python-apt (>= 0.6.0), apt (>= 0.6) # the views below support upgrades over ssh connection SupportSSH=DistUpgradeViewText,DistUpgradeViewNonInteractive # Distro contains global information about the upgrade [Distro] # the meta-pkgs we support MetaPkgs=ubuntu-desktop, kubuntu-desktop, xubuntu-desktop, ubuntustudio-desktop, mythbuntu-desktop, kubuntu-netbook, lubuntu-desktop BaseMetaPkgs=ubuntu-minimal, ubuntu-standard Demotions=demoted.cfg RemoveEssentialOk=sysvinit, sysvutils, belocs-locales-bin RemovalBlacklistFile=removal_blacklist.cfg # if those packages were installed, make sure to keep them installed KeepInstalledPkgs=gnumeric, hpijs, xserver-xorg-video-all KeepInstalledSection=translations RemoveObsoletes=yes ForcedObsoletes=ksplash-engine-moodin, powernowd, laptop-mode-tools # hints for for stuff that should be done early PostUpgradePurge=ltsp-client, ltspfsd, linux-restricted-modules-common PostUpgradeRemove=libflashsupport, kvm-source, gtk-qt-engine, libparted1.8-12, usplash, printconf, foomatic-db-gutenprint, ebox-printers, kbluetooth, kde-plasmoid-cwp, kdm, xsettings-kde PostUpgradeUpgrade=brasero,edubuntu-desktop #PostUpgradeInstall=apt PostInstallScripts=./xorg_fix_proprietary.py EnableApport=yes # this supported blacklisting certain versions to ensure we do not upgrade # - blcr-dkms fails to build on kernel 2.6.35 BadVersions=blcr-dkms_0.8.2-13 # ubiquity slideshow #SlideshowUrl=http://people.canonical.com/~mvo/ubiquity-slideshow-upgrade/slides/ [KernelRemoval] Version=3.2.0 BaseNames=linux-image,linux-headers,linux-image-debug,linux-backport-modules,linux-header-lbm Types=386,ec2,generic,rt,server,virtual # information about the individual meta-pkgs [ubuntu-desktop] KeyDependencies=lightdm, unity, ubuntu-artwork, ubuntu-sounds # those pkgs will be marked remove right after the distUpgrade in the cache PostUpgradeRemove=xscreensaver, gnome-cups-manager, powermanagement-interface, deskbar-applet, nautilus-cd-burner ForcedObsoletes=desktop-effects, gnome-app-install, policykit-gnome, gnome-mount [kubuntu-desktop] KeyDependencies=plasma-desktop, kubuntu-default-settings PostUpgradeRemove=powermanagement-interface, guidance-power-manager, kde-guidance-powermanager # those packages are marked as obsolete right after the upgrade ForcedObsoletes=ivman, gtk-qt-engine [kubuntu-netbook] KeyDependencies=plasma-netbook, kubuntu-netbook-default-settings [ubuntu-netbook] KeyDependencies=gdm, ubuntu-netbook-default-settings [xubuntu-desktop] KeyDependencies=xubuntu-artwork, xubuntu-default-settings, xfwm4 PostUpgradeRemove=notification-daemon [ubuntustudio-desktop] KeyDependencies=ubuntustudio-default-settings, ubuntustudio-look [ichthux-desktop] KeyDependencies=ichthux-artwork, ichthux-default-settings [mythbuntu-desktop] KeyDependencies=mythbuntu-artwork, mythbuntu-default-settings [lubuntu-desktop] KeyDependencies=lubuntu-core, lubuntu-default-settings [Files] BackupExt=distUpgrade LogDir=/var/log/dist-upgrade/ [Sources] From=precise To=trusty ValidOrigin=Ubuntu ValidMirrors = mirrors.cfg Components=main,restricted,universe,multiverse Pockets=security,updates,proposed,backports ;AllowThirdParty=False ;[PreRequists] ;Packages=release-upgrader-apt,release-upgrader-dpkg ;SourcesList=prerequists-sources.list ;SourcesList-ia64=prerequists-sources.ports.list ;SourcesList-hppa=prerequists-sources.ports.list [Aufs] ; this is a xor option, either full or chroot overlay ;EnableFullOverlay=yes ;EnableChrootOverlay=yes ; sync changes from the chroot back to the real system ;EnableChrootRsync=yes ; what chroot dir to use ;ChrootDir=/tmp/upgrade-chroot ; the RW dir to use (either for full overlay or chroot overlay) ;RWDir=/tmp/upgrade-rw [Network] MaxRetries=3 [NonInteractive] ForceOverwrite=yes RealReboot=no DebugBrokenScripts=no DpkgProgressLog=no ;TerminalTimeout=2400 ubuntu-release-upgrader-0.220.10/data/meta-release0000644000000000000000000000035112431225715016572 0ustar # default location for the meta-release file [METARELEASE] URI = http://changelogs.ubuntu.com/meta-release URI_LTS = http://changelogs.ubuntu.com/meta-release-lts URI_UNSTABLE_POSTFIX = -development URI_PROPOSED_POSTFIX = -proposed ubuntu-release-upgrader-0.220.10/data/do-release-upgrade.80000644000000000000000000000221212431225715020037 0ustar .\" Generated by help2man 1.36 and edited by Willem Bogaerts. .TH "DO-RELEASE-UPGRADE" "8" "October 2009" "" "" .SH "NAME" do\-release\-upgrade \- upgrade operating system to latest release .SH "SYNOPSIS" .B do\-release\-upgrade [\fIoptions\fR] .SH "DESCRIPTION" Upgrade the operating system to the latest release from the command\-line. This is the preferred command if the machine has no graphic environment or if the machine is to be upgraded over a remote connection. .SH "OPTIONS" .TP \fB\-h\fR, \fB\-\-help\fR show help message and exit .TP \fB\-d\fR, \fB\-\-devel\-release\fR Check if upgrading to the latest devel release is possible .TP \fB\-p\fR, \fB\-\-proposed\fR Try upgrading to the latest release using the upgrader from Ubuntu\-proposed .TP \fB\-m\fR MODE, \fB\-\-mode\fR=\fIMODE\fR Run in a special upgrade mode. Currently "desktop" for regular upgrades of a desktop system and "server" for server systems are supported. .TP \fB\-f\fR FRONTEND, \fB\-\-frontend\fR=\fIFRONTEND\fR Run the specified frontend .TP \fB\-s\fR, \fB\-\-sandbox\fR Test upgrade with a sandbox aufs overlay .SH "SEE ALSO" \fBupdate\-manager\fR(8), \fBapt\-get\fR(8) ubuntu-release-upgrader-0.220.10/data/demoted.cfg0000777000000000000000000000000012431225715022060 2../utils/demoted.cfgustar ubuntu-release-upgrader-0.220.10/data/DistUpgrade.cfg.dapper0000644000000000000000000000312712431225715020455 0ustar [View] View=DistUpgradeViewGtk,DistUpgradeViewKDE, DistUpgradeViewText # Distro contains global information about the upgrade [Distro] # the meta-pkgs we support MetaPkgs=ubuntu-desktop, kubuntu-desktop, edubuntu-desktop, xubuntu-desktop BaseMetaPkgs=ubuntu-minimal, ubuntu-standard, bash PostUpgradePurge=xorg-common, libgl1-mesa, ltsp-client, ltspfsd, python2.3 Demotions=demoted.cfg.dapper RemoveEssentialOk=sysvinit RemovalBlacklistFile=removal_blacklist.cfg PostInstallScripts=/usr/lib/udev/migrate-fstab-to-uuid.sh KeepInstalledPkgs=lvm2 KeepInstalledSection=translations RemoveObsoletes=yes ForcedObsoletes=esound, esound-common, slocate, ksplash-engine-moodin # information about the individual meta-pkgs [ubuntu-desktop] KeyDependencies=gdm, gnome-panel, ubuntu-artwork # those pkgs will be marked remove right after the distUpgrade in the cache PostUpgradeRemove=xchat, xscreensaver, gnome-cups-manager [kubuntu-desktop] KeyDependencies=kdm, kicker, kubuntu-artwork-usplash # those packages are marked as obsolete right after the upgrade ForcedObsoletes=ivman, slocate [edubuntu-desktop] KeyDependencies=edubuntu-artwork, tuxpaint [xubuntu-desktop] KeyDependencies=xubuntu-artwork-usplash, xubuntu-default-settings, xfwm4 [Files] BackupExt=distUpgrade LogDir=/var/log/dist-upgrade [PreRequists] Packages=release-upgrader-apt,release-upgrader-dpkg SourcesList=prerequists-sources.dapper.list SourcesList-ia64=prerequists-sources.dapper-ports.list SourcesList-hppa=prerequists-sources.dapper-ports.list [Sources] From=dapper To=hardy ValidOrigin=Ubuntu ValidMirrors = mirrors.cfg [Network] MaxRetries=3 ubuntu-release-upgrader-0.220.10/data/DistUpgrade.cfg0000644000000000000000000000773312431225715017212 0ustar [View] # the views will be tried in this order, if one fails to import, the next # is tried View=DistUpgradeViewGtk3,DistUpgradeViewGtk,DistUpgradeViewKDE,DistUpgradeViewText #View=DistUpgradeViewNonInteractive #Depends= python-apt (>= 0.6.0), apt (>= 0.6) # the views below support upgrades over ssh connection SupportSSH=DistUpgradeViewText,DistUpgradeViewNonInteractive # Distro contains global information about the upgrade [Distro] # the meta-pkgs we support MetaPkgs=ubuntu-desktop, kubuntu-desktop, xubuntu-desktop, ubuntustudio-desktop, mythbuntu-desktop, kubuntu-netbook, lubuntu-desktop BaseMetaPkgs=ubuntu-minimal, ubuntu-standard Demotions=demoted.cfg RemoveEssentialOk=sysvinit, sysvutils, belocs-locales-bin RemovalBlacklistFile=removal_blacklist.cfg # if those packages were installed, make sure to keep them installed KeepInstalledPkgs=gnumeric, hpijs, xserver-xorg-video-all KeepInstalledSection=translations RemoveObsoletes=yes ForcedObsoletes=ksplash-engine-moodin, powernowd, laptop-mode-tools # hints for for stuff that should be done early PostUpgradePurge=ltsp-client, ltspfsd, linux-restricted-modules-common PostUpgradeRemove=libflashsupport, kvm-source, gtk-qt-engine, libparted1.8-12, usplash, printconf, foomatic-db-gutenprint, ebox-printers, kbluetooth, kde-plasmoid-cwp, kdm, xsettings-kde PostUpgradeUpgrade=brasero,edubuntu-desktop #PostUpgradeInstall=apt PostInstallScripts=./xorg_fix_proprietary.py EnableApport=yes # this supported blacklisting certain versions to ensure we do not upgrade # - blcr-dkms fails to build on kernel 2.6.35 BadVersions=blcr-dkms_0.8.2-13 # ubiquity slideshow #SlideshowUrl=http://people.canonical.com/~mvo/ubiquity-slideshow-upgrade/slides/ [KernelRemoval] Version=3.8.0 BaseNames=linux-image,linux-headers,linux-image-debug,linux-backport-modules,linux-header-lbm Types=386,ec2,generic,rt,server,virtual # information about the individual meta-pkgs [ubuntu-desktop] KeyDependencies=lightdm, unity, ubuntu-artwork, ubuntu-sounds # those pkgs will be marked remove right after the distUpgrade in the cache PostUpgradeRemove=xscreensaver, gnome-cups-manager, powermanagement-interface, deskbar-applet, nautilus-cd-burner ForcedObsoletes=desktop-effects, gnome-app-install, policykit-gnome, gnome-mount [kubuntu-desktop] KeyDependencies=plasma-desktop, kubuntu-settings-desktop PostUpgradeRemove=powermanagement-interface, guidance-power-manager, kde-guidance-powermanager # those packages are marked as obsolete right after the upgrade ForcedObsoletes=ivman, gtk-qt-engine [kubuntu-netbook] KeyDependencies=plasma-netbook, kubuntu-settings-netbook [ubuntu-netbook] KeyDependencies=gdm, ubuntu-netbook-default-settings [xubuntu-desktop] KeyDependencies=xubuntu-artwork, xubuntu-default-settings, xfwm4 PostUpgradeRemove=notification-daemon [ubuntustudio-desktop] KeyDependencies=ubuntustudio-default-settings, ubuntustudio-look [ichthux-desktop] KeyDependencies=ichthux-artwork, ichthux-default-settings [mythbuntu-desktop] KeyDependencies=mythbuntu-artwork, mythbuntu-default-settings [lubuntu-desktop] KeyDependencies=lubuntu-core, lubuntu-default-settings [Files] BackupExt=distUpgrade LogDir=/var/log/dist-upgrade/ [Sources] From=saucy To=trusty ValidOrigin=Ubuntu ValidMirrors = mirrors.cfg Components=main,restricted,universe,multiverse Pockets=security,updates,proposed,backports ;AllowThirdParty=False ;[PreRequists] ;Packages=release-upgrader-apt,release-upgrader-dpkg ;SourcesList=prerequists-sources.list ;SourcesList-ia64=prerequists-sources.ports.list ;SourcesList-hppa=prerequists-sources.ports.list [Aufs] ; this is a xor option, either full or chroot overlay ;EnableFullOverlay=yes ;EnableChrootOverlay=yes ; sync changes from the chroot back to the real system ;EnableChrootRsync=yes ; what chroot dir to use ;ChrootDir=/tmp/upgrade-chroot ; the RW dir to use (either for full overlay or chroot overlay) ;RWDir=/tmp/upgrade-rw [Network] MaxRetries=3 [NonInteractive] ForceOverwrite=yes RealReboot=no DebugBrokenScripts=no DpkgProgressLog=no ;TerminalTimeout=2400 ubuntu-release-upgrader-0.220.10/data/DistUpgrade.cfg.hardy0000644000000000000000000000735512431225715020320 0ustar [View] # the views will be tried in this order, if one fails to import, the next # is tried View=DistUpgradeViewGtk,DistUpgradeViewKDE,DistUpgradeViewText #View=DistUpgradeViewNonInteractive #Depends= python-apt (>= 0.6.0), apt (>= 0.6) # the views below support upgrades over ssh connection SupportSSH=DistUpgradeViewText,DistUpgradeViewNonInteractive # Distro contains global information about the upgrade [Distro] # the meta-pkgs we support MetaPkgs=ubuntu-desktop, kubuntu-desktop, edubuntu-desktop, xubuntu-desktop, ubuntustudio-desktop, ichthux-desktop, mythbuntu-desktop, kubuntu-kde4-desktop BaseMetaPkgs=ubuntu-minimal, ubuntu-standard Demotions=demoted.cfg.hardy RemoveEssentialOk=sysvinit, sysvutils, belocs-locales-bin RemovalBlacklistFile=removal_blacklist.cfg # if those packages were installed, make sure to keep them installed KeepInstalledPkgs=gnumeric, hpijs, xserver-xorg-video-all KeepInstalledSection=translations RemoveObsoletes=yes ForcedObsoletes=ksplash-engine-moodin, powernowd, laptop-mode-tools # libflashsupport is now oboselete and causes problems so we remove it # early PostUpgradePurge=ltsp-client, ltspfsd, linux-restricted-modules-common PostUpgradeRemove=libflashsupport, slocate, gtk-qt-engine, libparted1.8-12, usplash #PostUpgradeInstall=apt PostInstallScripts=./xorg_fix_proprietary.py # this supported blacklisting certain versions to ensure we do not upgrade # - the openoffice.org-filter-binfilter causes a pre-depends cycle error # (#516727) BadVersions=openoffice.org-filter-binfilter_1:3.2.0~rc4-1ubuntu1 EnableApport=no [KernelRemoval] Version=2.6.24 BaseNames=linux-image,linux-headers,linux-image-debug,linux-ubuntu-modules,linux-header-lum,linux-backport-modules,linux-header-lbm,linux-restricted-modules Types=386,generic,rt,server,virtual # information about the individual meta-pkgs [ubuntu-desktop] KeyDependencies=gdm, usplash-theme-ubuntu, ubuntu-artwork, ubuntu-sounds # those pkgs will be marked remove right after the distUpgrade in the cache PostUpgradeRemove=xscreensaver, gnome-cups-manager, powermanagement-interface, deskbar-applet, nautilus-cd-burner, tracker ForcedObsoletes=desktop-effects, cups-pdf [kubuntu-desktop] KeyDependencies=kdm, kubuntu-artwork-usplash PostUpgradeRemove=powermanagement-interface,adept # those packages are marked as obsolete right after the upgrade ForcedObsoletes=ivman, cups-pdf, guidance-power-manager, gtk-qt-engine [kubuntu-kde4-desktop] KeyDependencies=kdebase-bin-kde4, kubuntu-artwork-usplash, kwin-kde4 [edubuntu-desktop] KeyDependencies=edubuntu-artwork, tuxpaint [xubuntu-desktop] KeyDependencies=xubuntu-artwork-usplash, xubuntu-default-settings, xfwm4 PostUpgradeRemove=notification-daemon ForcedObsoletes=cups-pdf [ubuntustudio-desktop] KeyDependencies=ubuntustudio-default-settings, ubuntustudio-look, usplash-theme-ubuntustudio [ichthux-desktop] KeyDependencies=ichthux-artwork-usplash, ichthux-default-settings [mythbuntu-desktop] KeyDependencies=mythbuntu-artwork-usplash,mythbuntu-default-settings [Files] BackupExt=distUpgrade LogDir=/var/log/dist-upgrade/ [Sources] From=hardy To=lucid ValidOrigin=Ubuntu ValidMirrors = mirrors.cfg Components=main,restricted,universe,multiverse ;[PreRequists] ;Packages=release-upgrader-apt,release-upgrader-dpkg ;SourcesList=prerequists-sources.list ;SourcesList-ia64=prerequists-sources.ports.list ;SourcesList-hppa=prerequists-sources.ports.list [Aufs] ; this is a xor option, either full or chroot overlay ;EnableFullOverlay=yes ;EnableChrootOverlay=yes ; sync changes from the chroot back to the real system ;EnableChrootRsync=yes ; what chroot dir to use ;ChrootDir=/tmp/upgrade-chroot ; the RW dir to use (either for full overlay or chroot overlay) ;RWDir=/tmp/upgrade-rw [Network] MaxRetries=3 [NonInteractive] ForceOverwrite=no RealReboot=no ubuntu-release-upgrader-0.220.10/data/mirrors.cfg0000644000000000000000000011147313017612566016476 0ustar #ubuntu http://archive.ubuntu.com/ubuntu/ http://security.ubuntu.com/ubuntu/ ftp://archive.ubuntu.com/ubuntu/ ftp://security.ubuntu.com/ubuntu/ mirror://launchpad.net/ubuntu/+countrymirrors-archive mirror://mirrors.ubuntu.com/mirrors.txt http://ports.ubuntu.com/ ftp://ports.ubuntu.com/ http://ports.ubuntu.com/ubuntu-ports/ ftp://ports.ubuntu.com/ubuntu-ports/ http://old-releases.ubuntu.com/ ftp://old-releases.ubuntu.com/ http://extras.ubuntu.com/ubuntu ftp://extras.ubuntu.com/ubuntu #commercial (both urls are valid) http://archive.canonical.com http://archive.canonical.com/ubuntu/ #commercial-ppas https://private-ppa.launchpad.net/commercial-ppa-uploaders ##===Australia=== http://ftp.iinet.net.au/pub/ubuntu/ http://mirror.optus.net/ubuntu/ http://mirror.isp.net.au/ftp/pub/ubuntu/ http://www.planetmirror.com/pub/ubuntu/ http://ftp.filearena.net/pub/ubuntu/ http://mirror.pacific.net.au/linux/ubuntu/ ftp://mirror.isp.net.au/pub/ubuntu/ ftp://ftp.planetmirror.com/pub/ubuntu/ ftp://ftp.filearena.net/pub/ubuntu/ ftp://mirror.internode.on.net/pub/ubuntu/ubuntu ftp://ftp.iinet.net.au/pub/ubuntu/ ftp://mirror.pacific.net.au/linux/ubuntu/ rsync://ftp.iinet.net.au/ubuntu/ rsync://mirror.isp.net.au/ubuntu/ rsync://rsync.filearena.net/ubuntu/ ##===Austria=== http://ubuntu.inode.at/ubuntu/ http://ubuntu.uni-klu.ac.at/ubuntu/ http://gd.tuwien.ac.at/opsys/linux/ubuntu/archive/ ftp://ubuntu.inode.at/ubuntu/ ftp://ftp.uni-klu.ac.at/linux/ubuntu/ ftp://gd.tuwien.ac.at/opsys/linux/ubuntu/archive/ rsync://ubuntu.inode.at/ubuntu/ubuntu/ rsync://gd.tuwien.ac.at/ubuntu/archive/ #===Belgium=== http://ftp.belnet.be/pub/mirror/ubuntu.com/ http://ftp.belnet.be/packages/ubuntu/ubuntu/ http://ubuntu.mirrors.skynet.be/pub/ubuntu.com/ http://mirror.freax.be/ubuntu/archive.ubuntu.com/ ftp://ftp.belnet.be/pub/mirror/ubuntu.com/ ftp://ftp.belnet.be/packages/ubuntu/ubuntu/ ftp://ubuntu.mirrors.skynet.be/pub/ubuntu.com/ #===Brazil=== http://espelhos.edugraf.ufsc.br/ubuntu/ http://ubuntu.interlegis.gov.br/archive/ http://ubuntu.c3sl.ufpr.br/ubuntu/ #===Canada=== ftp://ftp.cs.mun.ca/pub/mirror/ubuntu/ rsync://rsync.cs.mun.ca/ubuntu/ http://mirror.cpsc.ucalgary.ca/mirror/ubuntu.com/ ftp://mirror.cpsc.ucalgary.ca/mirror/ubuntu.com/ http://mirror.arcticnetwork.ca/pub/ubuntu/packages/ ftp://mirror.arcticnetwork.ca/pub/ubuntu/packages/ rsync://rsync.arcticnetwork.ca/ubuntu-packages #===China=== http://archive.ubuntu.org.cn/ubuntu/ http://debian.cn99.com/ubuntu/ http://mirror.lupaworld.com/ubuntu/ #===CostaRica=== http://ftp.ucr.ac.cr/ubuntu/ ftp://ftp.ucr.ac.cr/pub/ubuntu/ #===CzechRepublic=== http://archive.ubuntu.cz/ubuntu/ ftp://archive.ubuntu.cz/ubuntu/ http://ubuntu.supp.name/ubuntu/ #===Denmark=== http://mirrors.dk.telia.net/ubuntu/ http://mirrors.dotsrc.org/ubuntu/ http://klid.dk/homeftp/ubuntu/ ftp://mirrors.dk.telia.net/ubuntu/ ftp://mirrors.dotsrc.org/ubuntu/ ftp://klid.dk/ubuntu/ #===Estonia=== http://ftp.estpak.ee/pub/ubuntu/ ftp://ftp.estpak.ee/pub/ubuntu/ #===Finland=== http://www.nic.funet.fi/pub/mirrors/archive.ubuntu.com/ ftp://ftp.funet.fi/pub/mirrors/archive.ubuntu.com/ #===France=== http://mir1.ovh.net/ubuntu/ubuntu/ http://fr.archive.ubuntu.com/ubuntu/ http://ftp.u-picardie.fr/pub/ubuntu/ubuntu/ http://ftp.oleane.net/pub/ubuntu/ ftp://mir1.ovh.net/ubuntu/ubuntu/ ftp://fr.archive.ubuntu.com/ubuntu/ ftp://ftp.u-picardie.fr/pub/ubuntu/ubuntu/ ftp://ftp.proxad.net/mirrors/ftp.ubuntu.com/ubuntu/ ftp://ftp.oleane.net/pub/ubuntu/ rsync://mir1.ovh.net/ubuntu/ubuntu/ #===Germany=== http://debian.charite.de/ubuntu/ http://ftp.inf.tu-dresden.de/os/linux/dists/ubuntu/ http://www.artfiles.org/ubuntu.com http://ftp.rz.tu-bs.de/pub/mirror/ubuntu-packages/ http://ftp.join.uni-muenster.de/pub/mirrors/ftp.ubuntu.com/ubuntu/ http://www.ftp.uni-erlangen.de/pub/mirrors/ubuntu/ http://debian.tu-bs.de/ubuntu/ ftp://debian.charite.de/ubuntu/ ftp://ftp.fu-berlin.de/linux/ubuntu/ ftp://ftp.rz.tu-bs.de/pub/mirror/ubuntu-packages/ ftp://ftp.join.uni-muenster.de/pub/mirrors/ftp.ubuntu.com/ubuntu/ ftp://ftp.uni-erlangen.de/pub/mirrors/ubuntu/ ftp://debian.tu-bs.de/ubuntu/ rsync://ftp.inf.tu-dresden.de/ubuntu/ rsync://ftp.rz.tu-bs.de/pub/mirror/ubuntu-packages/ rsync://ftp.join.uni-muenster.de/pub/mirrors/ftp.ubuntu.com/ubuntu/ rsync://debian.tu-bs.de/ubuntu/ #===Greece=== http://ftp.ntua.gr/pub/linux/ubuntu/ ftp://ftp.ntua.gr/pub/linux/ubuntu/ #===Hungary=== http://ftp.kfki.hu/linux/ubuntu/ ftp://ftp.kfki.hu/pub/linux/ubuntu/ ftp://ftp.fsn.hu/pub/linux/distributions/ubuntu/ #===Indonesia=== http://komo.vlsm.org/ubuntu/ http://kambing.vlsm.org/ubuntu/ rsync://komo.vlsm.org/ubuntu/ rsync://kambing.vlsm.org/ubuntu/ #===Iceland=== http://ubuntu.odg.cc/ http://ubuntu.lhi.is/ #===Ireland=== http://ftp.esat.net/mirrors/archive.ubuntu.com/ http://ftp.heanet.ie/pub/ubuntu/ ftp://ftp.esat.net/mirrors/archive.ubuntu.com/ ftp://ftp.heanet.ie/pub/ubuntu/ rsync://ftp.esat.net/mirrors/archive.ubuntu.com/ rsync://ftp.heanet.ie/pub/ubuntu/ #===Italy=== http://ftp.linux.it/ubuntu/ http://na.mirror.garr.it/mirrors/ubuntu-archive/ ftp://ftp.linux.it/ubuntu/ ftp://na.mirror.garr.it/mirrors/ubuntu-archive/ rsync://na.mirror.garr.it/ubuntu-archive/ #===Japan=== http://ubuntu.mithril-linux.org/archives/ #===Korea=== http://mirror.letsopen.com/os/ubuntu/ ftp://mirror.letsopen.com/os/ubuntu/ http://ftp.kaist.ac.kr/pub/ubuntu/ ftp://ftp.kaist.ac.kr/pub/ubuntu/ rsync://ftp.kaist.ac.kr/ubuntu/ #===Latvia=== http://ubuntu-arch.linux.edu.lv/ubuntu/ #===Lithuania=== http://ftp.litnet.lt/pub/ubuntu/ ftp://ftp.litnet.lt/pub/ubuntu/ #===Namibia=== ftp://ftp.polytechnic.edu.na/pub/ubuntulinux/ #===Netherlands=== http://ftp.bit.nl/ubuntu/ http://ubuntu.synssans.nl ftp://ftp.bit.nl/ubuntu/ rsync://ftp.bit.nl/ubuntu/ #===NewZealand=== ftp://ftp.citylink.co.nz/ubuntu/ #===Nicaragua=== http://www.computacion.uni.edu.ni/iso/ubuntu/ #===Norway=== http://mirror.trivini.no/ubuntu ftp://mirror.trivini.no/ubuntu ftp://ftp.uninett.no/linux/ubuntu/ rsync://ftp.uninett.no/ubuntu/ #===Poland=== http://ubuntulinux.mainseek.com/ubuntu/ http://ubuntu.task.gda.pl/ubuntu/ ftp://ubuntu.task.gda.pl/ubuntu/ rsync://ubuntu.task.gda.pl/ubuntu/ #===Portugal=== ftp://ftp.rnl.ist.utl.pt/ubuntu/ http://darkstar.ist.utl.pt/ubuntu/archive/ http://ubuntu.dcc.fc.up.pt/ #===Romania=== http://ftp.iasi.roedu.net/mirrors/ubuntulinux.org/ubuntu/ ftp://ftp.iasi.roedu.net/mirrors/ubuntulinux.org/ubuntu/ rsync://ftp.iasi.roedu.net/ubuntu/ http://ftp.lug.ro/ubuntu/ ftp://ftp.lug.ro/ubuntu/ #===Russia=== http://debian.nsu.ru/ubuntu/ ftp://debian.nsu.ru/ubuntu/ ftp://ftp.chg.ru/pub/Linux/ubuntu/archive http://ftp.chg.ru/pub/Linux/ubuntu/archive #===SouthAfrica=== ftp://ftp.is.co.za/ubuntu/ ftp://ftp.leg.uct.ac.za/pub/linux/ubuntu/ ftp://ftp.sun.ac.za/ftp/ubuntu/ #===Spain=== ftp://ftp.um.es/mirror/ubuntu/ ftp://ftp.ubuntu-es.org/ubuntu/ #===Sweden=== http://ftp.acc.umu.se/mirror/ubuntu/ ftp://ftp.se.linux.org/pub/Linux/distributions/ubuntu/ #===Switzerland=== http://mirror.switch.ch/ftp/mirror/ubuntu/ ftp://mirror.switch.ch/mirror/ubuntu/ #===Taiwan=== http://apt.ubuntu.org.tw/ubuntu/ ftp://apt.ubuntu.org.tw/ubuntu/ http://apt.nc.hcc.edu.tw/pub/ubuntu/ http://ubuntu.csie.ntu.edu.tw/ubuntu/ ftp://apt.nc.hcc.edu.tw/pub/ubuntu/ ftp://os.nchc.org.tw/ubuntu/ ftp://ftp.ee.ncku.edu.tw/pub/ubuntu/ rsync://ftp.ee.ncku.edu.tw/ubuntu/ http://ftp.cse.yzu.edu.tw/ftp/Linux/Ubuntu/ubuntu/ ftp://ftp.cse.yzu.edu.tw/Linux/Ubuntu/ubuntu/ #===Turkey=== http://godel.cs.bilgi.edu.tr/mirror/ubuntu/ ftp://godel.cs.bilgi.edu.tr/ubuntu/ #===UnitedKingdom=== http://www.mirrorservice.org/sites/archive.ubuntu.com/ubuntu/ ftp://ftp.mirrorservice.org/sites/archive.ubuntu.com/ubuntu/ http://www.mirror.ac.uk/mirror/archive.ubuntu.com/ubuntu/ ftp://ftp.mirror.ac.uk/mirror/archive.ubuntu.com/ubuntu/ rsync://rsync.mirrorservice.org/archive.ubuntu.com/ubuntu/ http://ubuntu.blueyonder.co.uk/archive/ ftp://ftp.blueyonder.co.uk/sites/ubuntu/archive/ #===UnitedStates=== http://mirror.cs.umn.edu/ubuntu/ http://lug.mtu.edu/ubuntu/ http://mirror.clarkson.edu/pub/distributions/ubuntu/ http://ubuntu.mirrors.tds.net/ubuntu/ http://www.opensourcemirrors.org/ubuntu/ http://ftp.ale.org/pub/mirrors/ubuntu/ http://ubuntu.secs.oakland.edu/ http://mirror.mcs.anl.gov/pub/ubuntu/ http://mirrors.cat.pdx.edu/ubuntu/ http://ubuntu.cs.utah.edu/ubuntu/ http://ftp.ussg.iu.edu/linux/ubuntu/ http://mirrors.xmission.com/ubuntu/ http://ftp.osuosl.org/pub/ubuntu/ http://mirrors.cs.wmich.edu/ubuntu/ ftp://ftp.osuosl.org/pub/ubuntu/ ftp://mirrors.xmission.com/ubuntu/ ftp://ftp.ussg.iu.edu/linux/ubuntu/ ftp://mirror.clarkson.edu/pub/distributions/ubuntu/ ftp://ubuntu.mirrors.tds.net/ubuntu/ ftp://mirror.mcs.anl.gov/pub/ubuntu/ ftp://mirrors.cat.pdx.edu/ubuntu/ ftp://ubuntu.cs.utah.edu/pub/ubuntu/ubuntu/ rsync://ubuntu.cs.utah.edu/ubuntu/ rsync://mirrors.cat.pdx.edu/ubuntu/ rsync://mirror.mcs.anl.gov/ubuntu/ rsync://ubuntu.mirrors.tds.net/ubuntu/ rsync://mirror.cs.umn.edu/ubuntu/ http://free.nchc.org.tw/ubuntu http://br.archive.ubuntu.com/ubuntu/ http://es.archive.ubuntu.com/ubuntu/ ftp://ftp.free.fr/mirrors/ftp.ubuntu.com/ubuntu/ http://ie.archive.ubuntu.com/ubuntu/ http://mirror.anl.gov/pub/ubuntu/ http://se.archive.ubuntu.com/ubuntu/ http://ubuntu.intergenia.de/ubuntu/ http://ubuntu.linux-bg.org/ubuntu/ http://ubuntu.ynet.sk/ubuntu/ http://nl.archive.ubuntu.com/ubuntu/ http://cz.archive.ubuntu.com/ubuntu/ http://de.archive.ubuntu.com/ubuntu/ http://dk.archive.ubuntu.com/ubuntu/ http://ftp.estpak.ee/ubuntu/ http://ftp.crihan.fr/ubuntu/ http://ftp.cse.yzu.edu.tw/pub/Linux/Ubuntu/ubuntu/ http://ftp.dei.uc.pt/pub/linux/ubuntu/archive/ http://ftp.duth.gr/pub/ubuntu/ http://ftp.halifax.rwth-aachen.de/ubuntu/ http://ftp.iinet.net.au/pub/ubuntu ftp://ftp.rrzn.uni-hannover.de/pub/mirror/linux/ubuntu http://ftp.stw-bonn.de/ubuntu/ http://ftp.tiscali.nl/ubuntu/ ftp://ftp.tudelft.nl/pub/Linux/archive.ubuntu.com/ http://ftp.twaren.net/Linux/Ubuntu/ubuntu/ http://ftp.uni-kl.de/pub/linux/ubuntu/ http://ftp.uninett.no/ubuntu/ http://ftp.usf.edu/pub/ubuntu/ http://kr.archive.ubuntu.com/ubuntu/ http://gr.archive.ubuntu.com/ubuntu/ http://gulus.USherbrooke.ca/ubuntu/ http://mirror.nttu.edu.tw/ubuntu/ http://mirrors.easynews.com/linux/ubuntu/ http://mirrors.kernel.org/ubuntu/ http://ftp.oleane.net/ubuntu/ http://yu.archive.ubuntu.com/ubuntu/ http://sft.if.usp.br/ubuntu/ http://ubuntu-archive.datahop.it/ubuntu/ http://hr.archive.ubuntu.com/ubuntu/ http://ubuntu.mirrors.tds.net/pub/ubuntu/ http://ubuntu.fastbull.org/ubuntu/ http://ubuntu.indika.net.id/ubuntu/ http://ubuntu.tiscali.nl/ http://www.gtlib.gatech.edu/pub/ubuntu/ http://archive.ubuntu.com.ba/ubuntu/ http://archive.ubuntu.uasw.edu/ http://ubuntu.ipacct.com/ubuntu/ http://bw.archive.ubuntu.com/ubuntu/ http://ubuntu.cn99.com/ubuntu/ http://ubuntuarchive.is.co.za/ubuntu/ http://ftp.dateleco.es/ubuntu/ http://ftp.ds.karen.hj.se/pub/os/linux/ubuntu/ http://ftp.fsn.hu/pub/linux/distributions/ubuntu http://ftp.hosteurope.de/mirror/archive.ubuntu.com/ http://ftp.u-picardie.fr/mirror/ubuntu/ubuntu/ http://ftp.gil.di.uminho.pt/ubuntu/ http://klid.dk/ftp/ubuntu/ http://mirror.cc.columbia.edu/pub/linux/ubuntu/archive/ http://mirror.imbrandon.com/ubuntu/ http://mosel.estg.ipleiria.pt/mirror/distros/ubuntu/archive/ http://neacm.fe.up.pt/ubuntu/ http://packages.midian.hu//pub/linux/distributions/ubuntu http://tw.archive.ubuntu.com/ubuntu/ http://ftp.ticklers.org/archive.ubuntu.org/ubuntu/ http://ubuntu.mirror.ac.za/ubuntu-archive/ http://ubuntu.mithril-linux.org/archives http://ubuntu.virginmedia.com/archive/ http://ubuntu.univ-nantes.fr/ubuntu/ http://ftp.vectranet.pl/ubuntu/ http://ftp.iitm.ac.in/ubuntu http://mirror.lcsee.wvu.edu/ubuntu/ http://ubuntu.cs.uaf.edu/ubuntu/ http://cl.archive.ubuntu.com/ubuntu/ http://cudlug.cudenver.edu/ubuntu/ http://debian.linux.org.tw/ubuntu/ http://ftp.belnet.be/linux/ubuntu/ubuntu/ http://ftp.chg.ru/pub/Linux/ubuntu/archive/ http://ftp.citylink.co.nz/ubuntu/ http://ftp.ecc.u-tokyo.ac.jp/ubuntu/ http://ftp.gui.uva.es/sites/ubuntu.com/ubuntu/ http://ftp.linux.edu.lv/ubuntu/ http://ftp.lug.ro/ubuntu/ ftp://ftp.man.szczecin.pl/pub/Linux/ubuntu/ http://ftp.port80.se/ubuntu/ http://ftp-stud.fht-esslingen.de/Mirrors/ubuntu/ http://ftp.tu-chemnitz.de/pub/linux/ubuntu/ http://ftp.unina.it/pub/linux/distributions/ubuntu/ ftp://ftpserv.tudelft.nl/pub/Linux/archive.ubuntu.com/ http://mirror.etf.bg.ac.yu/distributions/ubuntu/ubuntu-archive/ http://mirror.lupaworld.com/ubuntu/archive/ http://mirror.uni-c.dk/ubuntu/ http://mirror2.etf.bg.ac.yu/distributions/ubuntu/ubuntu-archive/ http://mirrors.nic.funet.fi/ubuntu/ http://snert.mi.hs-heilbronn.de/pub/ubuntu/ubuntu/ http://ubuntu.eriders.ge/ubuntu/ http://ubuntu.lhi.is/ubuntu/ http://ubuntu.mirror.rafal.ca/ubuntu/ http://ubuntu.mirrors.skynet.be/pub/ubuntu.com/ubuntu/ http://ubuntu.sh.cvut.cz/ http://ubuntu.snet.uz/ubuntu/ http://ftp.leg.uct.ac.za/pub/linux/ubuntu/ http://archive.mnosi.org/ubuntu/ http://free.nchc.org.tw/ubuntu/ http://carroll.cac.psu.edu/pub/linux/distributions/ubuntu/ http://ftp.uni-muenster.de/pub/mirrors/ftp.ubuntu.com/ubuntu/ http://ftp.fsn.hu/pub/linux/distributions/ubuntu/ http://packages.midian.hu//pub/linux/distributions/ubuntu/ http://ftp.iitm.ac.in/ubuntu/ http://ftp.tuke.sk/ubuntu/ http://ubuntu.mirror.frontiernet.net/ubuntu/ http://san.csc.calpoly.edu/ubuntu/ubuntu/ http://ftp.freepark.org/pub/linux/distributions/ubuntu/ ftp://ftp.linux.org.tr/pub/ubuntu/ http://mirror.ox.ac.uk/sites/archive.ubuntu.com/ubuntu/ http://mirror.rootguide.org/ubuntu/ http://ubuntu.csie.nctu.edu.tw/ubuntu/ http://mirror.gamais.itb.ac.id/ubuntu/ http://th.archive.ubuntu.com/ubuntu/ http://ubuntu.uz/ubuntu/ http://ubuntu.org.ua/ubuntu/ http://ftp-stud.hs-esslingen.de/ubuntu/ http://ftp.belnet.be/pub/mirror/ubuntu.com/ubuntu/ http://ftp.daum.net/ubuntu/ http://ftp.netspace.net.au/pub/ubuntu/ http://ftp.pwr.wroc.pl/ubuntu/ http://ftp.science.nus.edu.sg/ubuntu/ http://godel.cs.bilgi.edu.tr/ubuntu/ http://mirror.hgkz.ch/ubuntu/ http://mirrors.ccs.neu.edu/archive.ubuntu.com/ http://tezcatl.fciencias.unam.mx/ubuntu/ http://mirror.grapevine.com.au/ubuntu/archive/ http://mirror.utdlug.org/linux/distributions/ubuntu/packages/ http://mt.archive.ubuntu.com/ubuntu/ http://ftp.yz.yamagata-u.ac.jp/pub/linux/ubuntu/archives/ ftp://ftp.mipt.ru/mirror/ubuntu/ http://nl2.archive.ubuntu.com/ubuntu/ http://ftp.cw.net/ubuntu/ http://ftp.udc.es/ubuntu/ http://sunsite.informatik.rwth-aachen.de/ftp/pub/Linux/ubuntu/ubuntu/ http://ubuntu.otenet.gr/ http://wwwftp.ciril.fr/pub/linux/ubuntu/archives/ http://ftp.freepark.org/ubuntu/ http://mir1.ovh.net/ubuntu/ http://ftp.astral.ro/mirrors/ubuntu.com/archive/ http://ubuntu.compuporter.net/archive/ http://mirrors.shlug.org/ubuntu/ http://ubuntu.mls.nc/ubuntu/ http://ftp.jaist.ac.jp/pub/Linux/ubuntu/ http://nz2.archive.ubuntu.com/ubuntu/ http://ubuntu.grn.cat/ubuntu/ http://ubuntu.positive-internet.com/ubuntu/ http://ubuntu-archive.polytechnic.edu.na/ http://ubuntu.media.mit.edu/ubuntu/ http://ftp.ncnu.edu.tw/Linux/ubuntu/ubuntu/ http://ftp.iut-bm.univ-fcomte.fr/ubuntu/ http://esda.wu-wien.ac.at/pub/ubuntu-archive/ http://mirror.aarnet.edu.au/pub/ubuntu/archive/ http://ftp.hostrino.com/pub/ubuntu/archive/ http://mirror.internode.on.net/pub/ubuntu/ubuntu/ http://mirror.yandex.ru/ubuntu/ http://mirror.zhdk.ch/ubuntu/ http://gulus.usherbrooke.ca/ubuntu/ http://mirrors.rit.edu/ubuntu/ http://ftp.tecnoera.com/ubuntu/ http://ftp5.gwdg.de/pub/linux/debian/ubuntu/ http://mirror.csclub.uwaterloo.ca/ubuntu/ http://dl2.foss-id.web.id/ubuntu/ http://debian.nctu.edu.tw/ubuntu/ http://rs.archive.ubuntu.com/ubuntu/ http://ubuntu.apt-get.eu/ubuntu/ http://ftp.energotel.sk/pub/linux/ubuntu/ http://ubuntu.intuxication.net/ubuntu/ http://www.las.ic.unicamp.br/pub/ubuntu/ http://mirror.3fl.net.au/ubuntu/ http://ftp.belnet.be/mirror/ubuntu.com/ubuntu/ ftp://mirrors.dotsrc.org/ubuntu-cd/ http://mirror.clarkson.edu/pub/ubuntu/ http://public.planetmirror.com/pub/ubuntu/archive/ http://ubuntu.interlegis.gov.br/ubuntu/ http://archive.ubuntu.mnosi.org/ubuntu/ http://ubuntu-archive.polytechnic.edu.na/ubuntu/ http://nz.archive.ubuntu.com/ubuntu/ http://ftp.corbina.net/pub/Linux/ubuntu/ http://nl3.archive.ubuntu.com/ubuntu/ http://ftp.cc.uoc.gr/mirrors/linux/ubuntu/packages/ ftp://ftp.corbina.net/pub/Linux/ubuntu/ http://ftp.wcss.pl/ubuntu/ ftp://swtsrv.informatik.uni-mannheim.de/pub/linux/distributions/ubuntu/ http://ubuntutym.u-toyama.ac.jp/ubuntu/ http://ftp.dat.etsit.upm.es/ubuntu/ http://mirrors.acm.jhu.edu/ubuntu/ http://ubuntu-archive.patan.com.ar/ http://mirror.fslutd.org/linux/distributions/ubuntu/packages/ http://swtsrv.informatik.uni-mannheim.de/pub/linux/distributions/ubuntu/ http://ubuntu.mirror.cambrium.nl/ubuntu/ http://ftp.vxu.se/ubuntu/ ftp://news.chu.edu.tw/Linux/Ubntu/packages/ http://mirrors.jgi-psf.org/ubuntu/ http://ftp.df.lth.se/ubuntu/ http://mirror1.lockdownhosting.com/ubuntu/ http://ubuntu-ashisuto.ubuntulinux.jp/ubuntu/ http://ubuntu-mirror.cs.colorado.edu/ubuntu/ http://ubuntu.gnu.gen.tr/ubuntu/ http://ubuntu.mirrors.isu.net.sa/ubuntu/ http://ubuntu.osuosl.org/ubuntu/ http://ubuntu.qatar.cmu.edu/ubuntu/ http://ubuntu.retrosnub.co.uk/ http://archive.ubuntu-rocks.org/ubuntu/ http://ftp.utexas.edu/ubuntu/ http://piotrkosoft.net/pub/mirrors/ubuntu/ http://ubuntu.univ-reims.fr/ubuntu/ ftp://ftp.chu.edu.tw/Linux/Ubntu/packages/ http://archive.linux.duke.edu/ubuntu/ http://mirrors.us.kernel.org/ubuntu/ http://mirrors3.kernel.org/ubuntu/ http://mirrors4.kernel.org/ubuntu/ http://softlibre.unizar.es/ubuntu/archive/ http://gpl.savoirfairelinux.net/pub/mirrors/ubuntu/ http://ubuntu.utalca.cl/ http://giano.com.dist.unige.it/ubuntu/ http://sk.archive.ubuntu.com/ubuntu/ http://mirrors.nl.eu.kernel.org/ubuntu/ http://mirrors.se.eu.kernel.org/ubuntu/ http://ftp.sunet.se/pub/Linux/distributions/ubuntu/ubuntu/ http://ftp.antik.sk/ubuntu/ ftp://ftp.chu.edu.tw/Linux/Ubuntu/packages/ http://ftp.klid.dk/ftp/ubuntu/ http://ike.egr.msu.edu/pub/ubuntu/archive/ http://mirror.mirohost.net/ubuntu/ http://ubuntu.nano-box.net/ubuntu/ http://mirror.powermongo.org/ubuntu/ http://ftp-mirror.stu.edu.tw/ubuntu/ http://mirrors.nfsi.pt/ubuntu/ http://ftp.astral.ro/mirrors/ubuntu.com/ubuntu/ http://ftp.caliu.cat/pub/distribucions/ubuntu/archive/ http://gaosu.rave.org/ubuntu/ http://mirror.cpsc.ucalgary.ca/mirror/ubuntu.com/packages/ http://astromirror.uchicago.edu/ubuntu/ http://mirrors.xservers.ro/ubuntu/ http://mirror.its.uidaho.edu/pub/ubuntu/ http://samaritan.ucmerced.edu/ubuntu/ http://ftp.free.org/mirrors/archive.ubuntu.com/ubuntu/ http://fileserver.uniroma1.it/ubuntu/ http://ftp.cvut.cz/ubuntu/ http://ftp.riken.jp/Linux/ubuntu/ http://ftp.telfort.nl/ubuntu/ http://ubuntu.indika.net.id/ http://ubuntu.secsup.org/ http://ubuntu.wallawalla.edu/ubuntu/ http://mirror.isoc.org.il/pub/ubuntu/ http://ubuntu.dormforce.net/ubuntu/ http://89.148.222.236/ubuntu/ http://ubuntu-archive.mirrors.proxad.net/ubuntu/ http://mirror.rol.ru/ubuntu/ http://ftp.caliu.info/pub/distribucions/ubuntu/ubuntu/ http://mirror.ousli.org/ubuntu/ http://ubuntu.patan.com.ar/ubuntu/ http://archive.ubuntu.mirror.dkm.cz/ubuntu/ http://ftp.mtu.ru/pub/ubuntu/archive/ http://ubuntu.stu.edu.tw/ubuntu/ http://archive.mmu.edu.my/ubuntu/ http://ftp.metu.edu.tr/ubuntu/ http://mirror.wff-gaming.de/ubuntu/ http://repository.linux.pf/ubuntu/ http://ubuntu.mmu.edu.my/ubuntu/ http://mirror.umoss.org/ubuntu/ http://mirror.oscc.org.my/ubuntu/ http://mirror.globo.com/ubuntu/archive/ http://sunsite.rediris.es/mirror/ubuntu-archive/ http://linux.org.by/ubuntu/ http://mirror.nus.edu.sg/ubuntu/ http://www.ftp.ne.jp/Linux/packages/ubuntu/archive/ http://mirror.math.ucdavis.edu/ubuntu/ http://archive.mitra.net.np/ubuntu/ http://pf.archive.ubuntu.com/ubuntu/ http://mirror-fpt-telecom.fpt.net/ubuntu/ http://ftp.linux.org.tr/ubuntu/ http://mirrors.cytanet.com.cy/linux/ubuntu-archive/ http://mirrors.cytanet.com.cy/linux/ubuntu/archive/ ftp://ftp.rrzn.uni-hannover.de/pub/mirror/linux/ubuntu/ http://mirror.cps.cmich.edu/ubuntu/ http://mirrors.hitsol.net/ubuntu/ http://ubuntu.hitsol.net/ubuntu/ http://ubuntu.mirror.iweb.ca/ http://ubuntu.mirror.su.se/ubuntu/ http://ubuntu.oss.eznetsols.org/ubuntu/ http://mirrors.portafixe.com/ubuntu/archive/ http://ubuntu.lagis.at/ubuntu/ http://mirror.gnucv.cl/ubuntu/ http://russell.cs.bilgi.edu.tr/ubuntu/ ftp://ftp.chu.edu.tw/Linux/Ubuntu/archives/ http://mirrors.ccs.neu.edu/ubuntu/ http://ubuntu-mirror.sit.kmutt.ac.th/archive/ http://ubuntu.ictvalleumbra.it/ubuntu/ http://mirror.arlug.ro/pub/ubuntu/ubuntu/ http://ubuntuarchive.eweka.nl/ubuntu/ http://ftp.cs.pu.edu.tw/Linux/Ubuntu/ubuntu/ http://ftp.ds.karen.hj.se/ubuntu/ http://kebo.vlsm.org/ubuntu/ http://mirror1.ku.ac.th/ubuntu/ http://peloto.pantuflo.es/ubuntu/ http://ucho.ignum.cz/ubuntu/ http://archive.monubuntu.fr/ http://mirror.korea.ac.kr/ubuntu/ http://ubuntu2.cica.es/ubuntu/ http://ftp.sh.cvut.cz/MIRRORS/ubuntu/ http://archive.ubuntu.mirror.dkm.cz/ http://ftp.tudelft.nl/archive.ubuntu.com/ http://mirror.netspace.net.au/pub/ubuntu/archive/ http://mirror.uoregon.edu/ubuntu/archives/ http://ubuntu.mirror.garr.it/mirrors/ubuntu-archive/ http://ubuntu-archive.sit.kmutt.ac.th/ http://mirror.files.bigpond.com/ http://ubuntu-archives.mirror.nexicom.net/ http://ftp.acc.umu.se/ubuntu/ http://ftp.snt.utwente.nl/pub/os/linux/ubuntu/ http://mirror.i3d.net/pub/ubuntu/ http://mirror.internetone.it/ubuntu-archive/ http://mirror.pnl.gov/ubuntu/ http://ubuntu.idrepo.or.id/ubuntu/ http://ubuntu.laps.ufpa.br/ubuntu/ http://ubuntu.mirror.tudos.de/ubuntu/ http://mirror.nl.leaseweb.net/ubuntu/ http://mirror.us.leaseweb.net/ubuntu/ http://bouyguestelecom.ubuntu.lafibre.info/ubuntu/ http://ftp.byfly.by/ubuntu/ http://ftp.sunet.se/pub/os/Linux/distributions/ubuntu/ubuntu/ http://mirror.datacenter.by/ubuntu/ http://mirror.de.leaseweb.net/ubuntu/ http://mirror.informatik.uni-mannheim.de/pub/linux/distributions/ubuntu/ http://mirror.lstn.net/ubuntu/ http://mirror.lzu.edu.cn/ubuntu/ http://mirror.netcologne.de/ubuntu/ http://mirror.serverloft.eu/ubuntu/ubuntu/ http://mirrors.adnettelecom.ro/ubuntu/ http://mirror.ovh.net/ubuntu/ http://ubuntu.cica.es/ubuntu/ http://ubuntu.mirror.pop-sc.rnp.br/ubuntu/ http://ubuntu.ufba.br/ubuntu/ http://76.73.4.58/ubuntu/ http://artfiles.org/ubuntu.com/ http://cesium.di.uminho.pt/pub/ubuntu-archive/ http://debian.informatik.uni-erlangen.de/ubuntu/ http://download.nus.edu.sg/mirror/ubuntu/ http://ftp.availo.se/ubuntu/ http://archive.mirror.blix.eu/ubuntu/ ftp://ftp.csie.chu.edu.tw/Ubuntu/archive/ http://archive.ubuntumirror.dei.uc.pt/ubuntu/ http://ftp.egr.msu.edu/pub/ubuntu/archive/ http://ftp.icm.edu.pl/pub/Linux/ubuntu/ http://ftp.info.uvt.ro/ubuntu/ http://ftp.lysator.liu.se/ubuntu/ http://ftp.nsysu.edu.tw/Ubuntu/ubuntu/ http://ftp.portlane.com/ubuntu/ http://ftp.rnl.ist.utl.pt/pub/ubuntu/archive/ http://ftp.roedu.net/mirrors/ubuntulinux.org/ubuntu/ http://ftp.rrzn.uni-hannover.de/pub/mirror/linux/ubuntu/ http://ubuntu.saix.net/ubuntu-archive/ http://ftp.tcc.edu.tw/Linux/ubuntu/ http://ftp.telfort.nl/pub/mirror/ubuntu/ http://ftp.tku.edu.tw/ubuntu/ http://ftp.tsukuba.wide.ad.jp/Linux/ubuntu/ http://ftp.tu-chemnitz.de/pub/linux/ubuntu-ports/ http://ftp.tu-ilmenau.de/mirror/ubuntu/ http://ftp.uni-erlangen.de/mirrors/ubuntu/ http://kambing.ui.ac.id/ubuntu/ http://mirror.as29550.net/archive.ubuntu.com/ http://mirror.bauhuette.fh-aachen.de/ubuntu/ http://mirror.bytemark.co.uk/ubuntu/ http://mirror.clibre.uqam.ca/ubuntu/ http://mirror.corbina.net/ubuntu/ http://mirror.cse.iitk.ac.in/ubuntu/ http://mirror.dattobackup.com/ubuntu/ http://mirror.ihug.co.nz/ubuntu/ http://mirror.its.sfu.ca/mirror/ubuntu/ http://mirror.kavalinux.com/ubuntu/ http://mirror.kku.ac.th/ubuntu/ http://mirror.krystal.co.uk/ubuntu/ http://mirror.metrocast.net/ubuntu/ http://mirror.netlinux.cl/ubuntu/ http://mirror.netspace.net.au/pub/ubuntu/ http://mirror.neu.edu.cn/ubuntu/ http://mirror.peer1.net/ubuntu/ http://mirror.soften.ktu.lt/ubuntu/ http://mirror.sov.uk.goscomb.net/ubuntu/ http://mirror.steadfast.net/ubuntu/ http://mirror.symnds.com/ubuntu/ http://mirror.team-cymru.org/ubuntu/ http://mirror.telepoint.bg/ubuntu/ http://mirror.timeweb.ru/ubuntu/ http://mirror.umd.edu/ubuntu/ http://mirror.unesp.br/ubuntu/ http://mirror.unix-solutions.be/ubuntu/ http://mirror.uoregon.edu/ubuntu/ http://mirror01.th.ifl.net/ubuntu/ http://mirror2.corbina.ru/ubuntu/ http://mirrors.163.com/ubuntu/ http://mirrors.accretive-networks.net/ubuntu/ http://mirrors.coopvgg.com.ar/ubuntu/ http://mirrors.coreix.net/ubuntu/ http://mirrors.ecvps.com/ubuntu/ http://mirrors.fe.up.pt/ubuntu/ http://mirrors.gigenet.com/ubuntuarchive/ http://mirrors.ircam.fr/pub/ubuntu/archive/ http://mirrors.melbourne.co.uk/ubuntu/ http://mirrors.mit.edu/ubuntu/ http://mirrors.psu.ac.th/pub/ubuntu/ http://mirrors.sohu.com/ubuntu/ http://mirrors.syringanetworks.net/ubuntu-archive/ http://mirrors.tecnoera.com/ubuntu/ http://mirrors.telianet.dk/ubuntu/ http://mirrors.uaip.org/ubuntu/ http://mirrors.ustc.edu.cn/ubuntu/ http://osmirror.rug.nl/ubuntu/ http://no.archive.ubuntu.com/ubuntu/ http://rpm.scl.rs/linux/ubuntu/archive/ http://shadow.ind.ntou.edu.tw/ubuntu/ http://speglar.simnet.is/ubuntu/ http://vesta.informatik.rwth-aachen.de/ftp/pub/Linux/ubuntu/ubuntu/ http://suse.uni-leipzig.de/pub/releases.ubuntu.com/ubuntu/ http://tux.rainside.sk/ubuntu/ http://ubuntu-archive.locaweb.com.br/ubuntu/ http://ubuntu-mirror.telesys.org.ua/ubuntu/ http://ubuntu.arcticnetwork.ca/ http://ubuntu.cs.nctu.edu.tw/ubuntu/ http://ubuntu.cybercomhosting.com/ubuntu/ http://ubuntu.datahop.net/ubuntu/ http://ubuntu.etf.bg.ac.rs/ubuntu/ http://ubuntu.koyanet.lv/ubuntu/ http://ubuntu.load.lv/ubuntu/ http://ubuntu.mirror.atratoip.net/ubuntu/ http://ubuntu.mirror.root.lu/ubuntu/ http://ubuntu.mirror.tn/ http://ubuntu.mirror.vu.lt/ubuntu/ http://ubuntu.mirrors.crysys.hu/ http://ubuntu.mirrors.pair.com/archive/ http://ubuntu.mirrors.uk2.net/ubuntu/ http://ubuntu.pesat.net.id/archive/ http://ubuntu.trumpetti.atm.tut.fi/ubuntu/ http://ubuntu.tsl.gr/ http://ubuntu.uach.mx/ http://ubuntu.uc3m.es/ubuntu/ http://ubuntu.uib.no/archive/ http://ubuntu.unitedcolo.de/ubuntu/ http://ubuntu.wikimedia.org/ubuntu/ http://ucmirror.canterbury.ac.nz/ubuntu/ http://www-ftp.lip6.fr/pub/linux/distributions/Ubuntu/archive/ http://www.club.cc.cmu.edu/pub/ubuntu/ http://ubuntuarchive.xfree.com.ar/ubuntu/ http://ubuntu-archive.adsolux.com/ubuntu/ http://archive.ubuntu.nautile.nc/ubuntu/ http://biruni.upm.my/mirror/ubuntu/ http://cosmos.cites.illinois.edu/pub/ubuntu/ http://deis-mirrors.isec.pt/ubuntu/ http://mirror.fcaglp.unlp.edu.ar/ubuntu/ http://ftp.arnes.si/pub/mirrors/ubuntu/ ftp://ftp.iitb.ac.in/distributions/ubuntu/archives/ http://ftp.litnet.lt/ubuntu/ ftp://ftp.rezopole.net/ubuntu/ http://ftp.sjtu.edu.cn/ubuntu/ http://ftp.sun.ac.za/ftp/ubuntu/ http://linux.nsu.ru/ubuntu/ http://linux.ntuoss.org/ubuntu/ http://linux.psu.ru/ubuntu/ http://mirror.beget.ru/ubuntu/ http://mirror-cybernet.lums.edu.pk/pub/ubuntu/ http://mirror.alfredstate.edu/ubuntu/ http://mirror.as24220.net/pub/ubuntu/archive/ http://mirror.bjtu.edu.cn/ubuntu/ http://mirror.clarkson.edu/ubuntu/ http://mirror.hmc.edu/ubuntu/ http://mirror.hosef.org/ubuntu/ http://mirror.its.dal.ca/ubuntu/ http://mirror.learn.ac.lk/ubuntu/ http://mirror.linux.org.au/ubuntu/ http://mirror.neolabs.kz/ubuntu/ http://mirror.picosecond.org/ubuntu/ http://mirror.rayquang.net/ubuntu/ ftp://mirror.space.kz/ubuntu/ http://mirror.squ.edu.om/ubuntuarchive/ http://mirrors.bloomu.edu/ubuntu/ http://mirrors.ispros.com.bd/ubuntu/ http://mirrors.serverhost.ro/ubuntu/archive/ http://mirrors.ucr.ac.cr/ubuntu/ http://singo.ub.ac.id/ubuntu/ http://ubuntu.alex-vichev.info/ http://ubuntu.eecs.wsu.edu/ http://ubuntu.mirror.netelligent.ca/ubuntu/ http://ubuntu.mirrors.skynet.be/ubuntu/ http://ubuntu.qualitynet.net/ubuntu/ http://ubuntu.retrosnub.co.uk/ubuntu/ http://ubuntu.sastudio.jp/ubuntu/ http://ubuntu.securedservers.com/ http://ubuntu.skarta.net/ubuntu/ http://ubuntu.srt.cn/ubuntu/ http://ubuntu.sth.sze.hu/ubuntu/ http://ubuntu.unal.edu.co/ubuntu/ http://ubuntuarchive.hnsdc.com/ubuntu/ http://us.archive.ubuntu.com/ubuntu/ http://www.lug.bu.edu/mirror/ubuntu/ http://www.mirror.upm.edu.my/ubuntu/ http://bos.fkip.uns.ac.id/ubuntu/ http://distrib-coffee.ipsl.jussieu.fr/ubuntu/ http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu/ http://ftp.ccc.uba.ar/pub/linux/ubuntu/ http://glug.nith.ac.in/ubuntu/archives/ http://kartolo.sby.datautama.net.id/ubuntu/ http://mirror.greennet.gl/ubuntu/ http://mirror.lihnidos.org/ubuntu/ubuntu/ http://mirror.pregi.net/ubuntu/ http://mirrors.einstein.yu.edu/ubuntu/archive/ http://ubuntu.cic.userena.cl/ubuntu/ http://buaya.klas.or.id/ubuntu/ http://ftp.leg.uct.ac.za/ubuntu/ http://mirror.calvin.edu/ubuntu/ http://mirror.vcu.edu/pub/gnu+linux/ubuntu/ http://mirror.waia.asn.au/ubuntu/ ftp://mirror1.cs.washington.edu/ubuntu/ http://ubuntu.grena.ge/ubuntu/ http://ubuntu.tuxuri.com/ubuntu/ http://ubuntu.unc.edu.ar/ubuntu/ http://mirror.linux.org.mt/ubuntu/ http://linux.vlz.su/ubuntu/ http://de2.archive.ubuntu.com/ubuntu/ http://ge.archive.ubuntu.com/ubuntu/ http://np.archive.ubuntu.com/ubuntu/ http://ubuntu.ctu.edu.vn/archive/ http://mirror.qdu.edu.cn/ubuntu/ http://mirror.quickvz.com/ubuntu/ http://ubuntu.cheng.auth.gr/ubuntu/ http://ftp.neowiz.com/ubuntu/ http://ftp.uni-bayreuth.de/linux/ubuntu/ubuntu/ http://mirror.blizoo.mk/ubuntu/ http://mirror.edatel.net.co/ubuntu/ http://mirror.ubuntu.ikoula.com/ubuntu/ http://mirror.xnet.co.nz/pub/ubuntu/ http://dafi.inf.um.es/ubuntu/ http://ftp.uni-kassel.de/ubuntu/ubuntu/ http://mirror.ancl.hawaii.edu/linux/ubuntu/ http://mirror.crazynetwork.it/ubuntu/archive/ http://stingray.cyber.net.pk/pub/ubuntu/ http://ubuntu.cnssuestc.org/ubuntu/ http://ubuntu.uestc.edu.cn/ubuntu/ http://suro.ubaya.ac.id/ubuntu/ http://ubuntu.repo.unpas.ac.id/ubuntu/ http://ubuntu.ntc.net.np/ubuntu/ http://archive.ubuntu.csg.uzh.ch/ubuntu/ http://ftp.belnet.be/ubuntu.com/ubuntu/ http://mirror.optimate-server.de/ubuntu/ http://ftp.nluug.nl/os/Linux/distr/ubuntu/ http://hive.ist.unomaha.edu/ubuntu-archive/ http://mirror.muntinternet.net/pub/nl.archive.ubuntu.com/ http://mirror.tocici.com/ubuntu/ http://mirrors.advancedhosters.com/ubuntu/ http://ubuntu.mirror.constant.com/ http://ftp.csie.chu.edu.tw/Ubuntu/archive/ http://ftp.cuhk.edu.hk/pub/Linux/ubuntu/ http://ftp.hawo.stw.uni-erlangen.de/ubuntu/ http://ftp.stust.edu.tw/pub/Linux/ubuntu/ http://ftp.stut.edu.tw/pub/Linux/ubuntu/ http://ftp.tc.edu.tw/Linux/ubuntu/ http://ftp.uni-mainz.de/ubuntu/ http://ftp.wa.co.za/pub/ubuntu/ubuntu/ http://linux.xjtuns.cn/ubuntu/ http://mirror.cogentco.com/pub/linux/ubuntu/ http://mirror.easyspeedy.com/ubuntu/ http://mirror.jmu.edu/pub/ubuntu/ http://mirror.nexcess.net/ubuntu/ http://mirror.overthewire.com.au/ubuntu/ http://mirror.tcpdiag.net/ubuntu/ http://mirror.thelinuxfix.com/ubuntu/ http://mirror.unej.ac.id/ubuntu/ http://mirror.veracruz.co/ubuntu/ http://mirrors.arpnetworks.com/Ubuntu/ http://mirrors.liquidweb.com/ubuntu/ http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ http://mirrors.yun-idc.com/ubuntu/ http://repo.undip.ac.id/ubuntu/ http://mirror.siamdata.co.th/ubuntu/ http://ubuntu-archive.mirror.nucleus.be/ http://ubuntu-archive.mirror.serveriai.lt/ http://ubuntu.01link.hk/ http://ubuntu.bhs.mirrors.ovh.net/ftp.ubuntu.com/ubuntu/ http://ubuntu.ip-connect.vn.ua/ http://ubuntu.mirror.neology.co.za/ubuntu/ http://ubuntu.mirror.uber.com.au/archive/ http://ubuntu.uhost.hk/ http://ubuntu.xfree.com.ar/ubuntu/ http://archive.ubuntu.webxcreen.org/ http://az-1.hpcloud.mirror.websitedevops.com/ubuntu/ ftp://ftp.cesca.cat/ubuntu/archieve/ http://mirror.dhakacom.com/ubuntu/ http://mirror.logol.ru/ubuntu/ http://mirror.stshosting.co.uk/ubuntu/ http://mirror2.tuxinator.org/ubuntu/ http://pandawa.ipb.ac.id/ubuntu/ http://releases.ubuntu.spd.co.il/ http://ubuntu.mirror.ac.ke/ubuntu/ http://ubuntu.ucr.ac.cr/ubuntu/ http://jaran.undip.ac.id/ubuntu/ http://mirror.vnet.sk/ubuntu/ http://mirror.vutbr.cz/ubuntu/archive/ http://ubuntu.mirror.lrz.de/ubuntu/ http://es-mirrors.evowise.com/ubuntu/ http://archive.mirror.blix.com/ubuntu/ http://ftp.uni-stuttgart.de/ubuntu/ http://it-mirrors.evowise.com/ubuntu/ http://la-mirrors.evowise.com/ubuntu/ http://mirror.0x.sg/ubuntu/ http://mirror.1000mbps.com/ubuntu/ http://mirror.as43289.net/ubuntu/ http://mirror.earthlink.iq/ubuntu/ http://mirror.math.princeton.edu/pub/ubuntu/ http://mirror.nforce.com/pub/linux/ubuntu/ http://mirror.one.com/ubuntu/ http://mirror.onet.pl/pub/mirrors/ubuntu/ http://mirror.ufscar.br/ubuntu/ http://mirror.vorboss.net/ubuntu-archive/ http://mirrors.up.pt/ubuntu/ http://muug.ca/mirror/ubuntu/ http://ny-mirrors.evowise.com/ubuntu/ http://repos.forethought.net/ubuntu/ http://ro-mirrors.evowise.com/ubuntu/ http://ubuntu.ethz.ch/ubuntu/ http://ubuntu.localmsp.org/ubuntu/ http://ubuntu.mirror.garr.it/ubuntu/ http://ubuntu.uberglobalmirror.com/archive/ http://ubuntu.volia.net/ubuntu-archive/ http://uk-mirrors.evowise.com/ubuntu/ http://mirrors.wikimedia.org/ubuntu/ http://ftp.ubuntu-tw.net/ubuntu/ http://ftp.fau.de/ubuntu/ http://mirror.23media.de/ubuntu/ http://mirror.dataone.nl/ubuntu-archive/ http://mirror.transip.net/ubuntu/ubuntu/ http://ftp.energotel.sk/pub/linux/ubuntu/archive/ http://linux.yz.yamagata-u.ac.jp/pub/linux/ubuntu-archive/ http://mirror.amsiohosting.net/archive.ubuntu.com/ http://mirror.atlantic.net/ubuntu/ http://mirror.dkm.cz/ubuntu/ http://mirror.plusserver.com/ubuntu/ubuntu/ http://mirror.rasanegar.com/ubuntu/archive/ http://mirror.uchile.cl/ubuntu/ http://mirrors.aliyun.com/ubuntu/ http://mirrors.neterra.net/ubuntu/ http://ubuntu.mirrors.omnilance.com/ubuntu/ http://ubuntu.mirrors.ovh.net/ftp.ubuntu.com/ubuntu/ http://archive.ubuntu.mirror.rafal.ca/ubuntu/ http://archive.ubuntu.mirrors.opensource.ynu.edu.cn/ http://ftp.agh.edu.pl/ubuntu/ http://ftp.aso.ee/ubuntu/ http://ftp.cs.pu.edu.tw/Linux/Ubuntu/Archive/ http://ftp.ntua.gr/ubuntu/ http://ftp.rezopole.net/ubuntu/ http://ftp.sh.cvut.cz/ubuntu/ http://ftp.yzu.edu.tw/ubuntu/ http://kebo.pens.ac.id/ubuntu/ http://mirror.adminbannok.com/ubuntu/ http://mirror.aminidc.com/ubuntu/ http://mirror.as24220.net/pub/ubuntu/ http://mirror.atomki.mta.hu/ubuntu/ http://mirror.stw-aachen.de/ubuntu/ http://mirror.cc.vt.edu/pub2/ubuntu/ http://mirror.cs.pitt.edu/ubuntu/archive/ http://mirror.daniel-jost.net/ubuntu/ http://mirror.datacenter.az/ubuntu/ http://mirror.dhakacom.com/ubuntu-archive/ http://mirror.fairway.ne.jp/ubuntu/ http://mirror.faraso.org/ubuntu/ http://mirror.freethought-internet.co.uk/ubuntu/ http://mirror.htnshost.com/ubuntu/ http://mirror.idealhosting.net.tr/ubuntu/ http://mirror.intergrid.com.au/ubuntu/ http://mirror.it.ubc.ca/ubuntu/ http://ubuntu.lagoon.nc/ubuntu/ http://mirror.mythic-beasts.com/ubuntu/ http://mirror.network32.net/ubuntu/ http://mirror.os6.org/ubuntu/ http://mirror.sax.uk.as61049.net/ubuntu/ http://mirror.sjc02.svwh.net/ubuntu/ http://mirror.t-home.mk/ubuntu/ http://mirror.tcc.wa.edu.au/ubuntu/ http://mirror.wiru.co.za/ubuntu/ http://mirror.zetup.net/ubuntu/ http://mirror.zol.co.zw/ubuntu/ http://mirror1.totbb.net/ubuntu/ http://mirrordenver.fdcservers.net/ubuntu/ http://mirrors.asnet.am/ubuntu/ http://mirrors.cn99.com/ubuntu/ http://mirrors.eastera.tj/ubuntu/ http://mirrors.maine.edu/ubuntu/ http://mirrors.namecheap.com/ubuntu/ http://mirrors.noction.com/ubuntu/archive/ http://mirrors.ocf.berkeley.edu/ubuntu/ http://mirrors.pidginhost.com/ubuntu/ http://mirrors.psu.ac.th/ubuntu/ http://mirrors.sonic.net/ubuntu/ http://mirrors.tripadvisor.com/ubuntu/ http://mirrors.usinternet.com/ubuntu/archive/ http://mirror.ni.net.tr/ubuntu/ http://pkg.adfinis-sygroup.ch/ubuntu/ http://pubmirrors.dal.corespace.com/ubuntu/ http://repo.bigstepcloud.com/ubuntu/ http://ftp.ntou.edu.tw/ubuntu/ http://mirrors.skyshe.cn/ubuntu/ http://ubuntu-mirror.neocom.org.ua/ubuntu/ http://ubuntu-mirror.parsdev.net/ubuntu-archive/ http://ubuntu.hysing.is/ubuntu/ http://ubuntu.man.lodz.pl/ubuntu/ http://ubuntu.mirror.digitalpacific.com.au/archive/ http://ubuntu.mirror.lhisp.com/ubuntu/ http://ubuntu.mirror.serversaustralia.com.au/ubuntu/ http://ubuntu.mirror.tn/ubuntu/ http://ubuntu.mirror.true.nl/ubuntu/ http://ubuntu.mirrors.linux.ro/archive/ http://ubuntu.parspack.com/ubuntu/ http://ubuntu.saglayici.com/ubuntu/ http://ubuntu.skybroadband.com.ph/ubuntu/ http://mirror.stjschools.org/public/ubuntu-archive/ http://ubuntu.uni-sofia.bg/ubuntu/ http://ubuntuarchive.mirror.nac.net/ http://dist1.800hosting.com/ubuntu/ http://fastmirror.ir/ubuntu/ ftp://ftp.csuc.cat/ubuntu/archieve/ http://mirror.aptus.co.tz/pub/ubuntuarchive/ http://mirror.cedia.org.ec/ubuntu/ http://mirror.cedille.club/ubuntu/ http://mirror.digistar.vn/ubuntu/ http://mirror.espol.edu.ec/ubuntu/ http://mirror.iranserver.com/ubuntu/ http://mirror.rise.ph/ubuntu/ http://mirror01.idc.hinet.net/ubuntu/ http://mirrors.cqu.edu.cn/ubuntu/ http://mirrors.cug.edu.cn/ubuntu/ http://mirrors.nayatel.com/ubuntu/ http://mirrors.nhanhoa.com/ubuntu/ http://mirrors.psychz.net/Ubuntu/ http://mirrors.xjtu.edu.cn/ubuntu/ http://ubnt-archive.xfree.com.ar/ubuntu/ http://ubuntu.dts.mg/ubuntu/ http://ubuntu.ipserverone.com/ubuntu/ http://ubuntu.mirror.ftn.uns.ac.rs/archive/ http://ubuntu.mirrors.wvstateu.edu/ http://ubuntu.uniminuto.edu/ubuntu/ http://deb-mirror.habari.co.tz/ubuntu/ http://opensource.xtdv.net/ubuntu/ http://reflector.westga.edu/repos/Ubuntu/archive/ http://repo.cure.edu.uy/ubuntu/archivos/ http://repo.unpatti.ac.id/ubuntu/ http://ftp.gts.lug.ro/ubuntu/ http://mirror.poliwangi.ac.id/ubuntu/ http://repo.gust.edu.kw/ubuntu/ ubuntu-release-upgrader-0.220.10/data/DistUpgrade.cfg.lucid0000644000000000000000000000773212431225715020310 0ustar [View] # the views will be tried in this order, if one fails to import, the next # is tried View=DistUpgradeViewGtk,DistUpgradeViewGtk3,DistUpgradeViewKDE,DistUpgradeViewText #View=DistUpgradeViewNonInteractive #Depends= python-apt (>= 0.6.0), apt (>= 0.6) # the views below support upgrades over ssh connection SupportSSH=DistUpgradeViewText,DistUpgradeViewNonInteractive # Distro contains global information about the upgrade [Distro] # the meta-pkgs we support MetaPkgs=ubuntu-desktop, kubuntu-desktop, xubuntu-desktop, ubuntustudio-desktop, ichthux-desktop, mythbuntu-desktop, ubuntu-netbook, kubuntu-netbook BaseMetaPkgs=ubuntu-minimal, ubuntu-standard Demotions=demoted.cfg RemoveEssentialOk=sysvinit, sysvutils, belocs-locales-bin RemovalBlacklistFile=removal_blacklist.cfg # if those packages were installed, make sure to keep them installed KeepInstalledPkgs=gnumeric, hpijs, xserver-xorg-video-all KeepInstalledSection=translations RemoveObsoletes=yes ForcedObsoletes=ksplash-engine-moodin, powernowd, laptop-mode-tools # hints for for stuff that should be done early PostUpgradePurge=ltsp-client, ltspfsd, linux-restricted-modules-common PostUpgradeRemove=libflashsupport, kvm-source, gtk-qt-engine, libparted1.8-12, usplash, printconf, foomatic-db-gutenprint, ebox-printers, kbluetooth, kde-plasmoid-cwp PostUpgradeUpgrade=brasero,edubuntu-desktop #PostUpgradeInstall=apt PostInstallScripts=./xorg_fix_proprietary.py EnableApport=yes # this supported blacklisting certain versions to ensure we do not upgrade # - blcr-dkms fails to build on kernel 2.6.35 BadVersions=blcr-dkms_0.8.2-13 # ubiquity slideshow #SlideshowUrl=http://people.canonical.com/~mvo/ubiquity-slideshow-upgrade/slides/ # useful for e.g. testing ;AllowUnauthenticated=yes [KernelRemoval] Version=2.6.32 BaseNames=linux-image,linux-headers,linux-image-debug,linux-backport-modules,linux-header-lbm Types=386,ec2,generic,rt,server,virtual # information about the individual meta-pkgs [ubuntu-desktop] KeyDependencies=gdm, ubuntu-artwork, ubuntu-sounds # those pkgs will be marked remove right after the distUpgrade in the cache PostUpgradeRemove=xscreensaver, gnome-cups-manager, powermanagement-interface, deskbar-applet, nautilus-cd-burner ForcedObsoletes=desktop-effects, cups-pdf, gnome-app-install, policykit-gnome, gnome-mount [kubuntu-desktop] KeyDependencies=kdm, kubuntu-artwork PostUpgradeRemove=powermanagement-interface, guidance-power-manager, kde-guidance-powermanager # those packages are marked as obsolete right after the upgrade ForcedObsoletes=ivman, cups-pdf, gtk-qt-engine [kubuntu-netbook] KeyDependencies=kdm, kubuntu-netbook-default-settings [ubuntu-netbook] KeyDependencies=gdm, ubuntu-netbook-default-settings [xubuntu-desktop] KeyDependencies=xubuntu-artwork, xubuntu-default-settings, xfwm4 PostUpgradeRemove=notification-daemon ForcedObsoletes=cups-pdf [ubuntustudio-desktop] KeyDependencies=ubuntustudio-default-settings, ubuntustudio-look [ichthux-desktop] KeyDependencies=ichthux-artwork, ichthux-default-settings [mythbuntu-desktop] KeyDependencies=mythbuntu-artwork, mythbuntu-default-settings [Files] BackupExt=distUpgrade LogDir=/var/log/dist-upgrade/ [Sources] From=lucid To=precise ValidOrigin=Ubuntu ValidMirrors = mirrors.cfg Components=main,restricted,universe,multiverse Pockets=security,updates,proposed,backports ;AllowThirdParty=False [PreRequists] Packages=libapt-pkg4.12,libapt-inst1.4,release-upgrader-python-apt SourcesList=prerequists-sources.list ;SourcesList-ia64=prerequists-sources.ports.list ;SourcesList-hppa=prerequists-sources.ports.list [Aufs] ; this is a xor option, either full or chroot overlay ;EnableFullOverlay=yes ;EnableChrootOverlay=yes ; sync changes from the chroot back to the real system ;EnableChrootRsync=yes ; what chroot dir to use ;ChrootDir=/tmp/upgrade-chroot ; the RW dir to use (either for full overlay or chroot overlay) ;RWDir=/tmp/upgrade-rw [Network] MaxRetries=3 [NonInteractive] ForceOverwrite=yes RealReboot=no DebugBrokenScripts=no DpkgProgressLog=no ;TerminalTimeout=2400 ubuntu-release-upgrader-0.220.10/po/0000755000000000000000000000000012761376334014023 5ustar ubuntu-release-upgrader-0.220.10/po/sk.po0000644000000000000000000020322712431225715014774 0ustar # translation of sk.po to # Slovak translation for update-manager # Copyright (C) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # # Peter Chabada , 2006. # Jozef Bucha , 2007. # Ivan Masár , 2009. # msgid "" msgstr "" "Project-Id-Version: sk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:43+0000\n" "Last-Translator: Iain Lane \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server pre %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Hlavný server" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Vlastné servery" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Nemožno vypočítať položku v sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Nemožno lokalizovať žiadne balíčky súborov. Pravdepodobne toto nie je CD/DVD " "Ubuntu alebo je určené pre inú architektúru." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Zlyhalo pridanie CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Pri pridávaní CD sa vyskytla chyba, prechod na vyššiu verziu bude prerušený. " "Nahláste túto chybu, ak používate platné Ubuntu CD.\n" "\n" "Chybová správa bola:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Odstrániť balíky v zlom stave" msgstr[1] "Odstrániť balík v zlom stave" msgstr[2] "Odstrániť balíky v zlom stave" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Balíky „%s“ sú v nekonzistentnom stave a je potrebné ich preinštalovať, ale " "neboli pre ne nájdené žiadne archívy. Chcete tieto balíky teraz odstrániť, " "aby bolo možné pokračovať?" msgstr[1] "" "Balík „%s“ je v nekonzistentnom stave a je potrebné ich preinštalovať, ale " "neboli preň nájdené žiadne archívy. Chcete tento balík teraz odstrániť, aby " "bolo možné pokračovať?" msgstr[2] "" "Balíky „%s“ sú v nekonzistentnom stave a je potrebné ich preinštalovať, ale " "neboli pre ne nájdené žiadne archívy. Chcete tieto balíky teraz odstrániť, " "aby bolo možné pokračovať?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Server môže byť preťažený" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Poškodené balíky" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Váš systém obsahuje poškodené balíky, ktoré nemôžu byť týmto programom " "opravené. Pred pokračovaním ich opravte programom synaptic alebo apt-get." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Počas prípravy na aktualizáciu sa vyskytol neriešiteľný problém:\n" "%s\n" "\n" "Tento problém mohlo spôsobiť to, že:\n" "* aktualizujete na ešte nevydanú testovaciu verziu Ubuntu\n" "* práve používate ešte nevydanú testovaciu verziu Ubuntu\n" "* používate neoficiálne balíky softvéru, ktoré neposkytuje tím Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Toto je pravdepodobne dočasný problém, prosím skúste to neskôr." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Ak nič z uvedeného nie je relevantné, prosím, nahláste túto chybu spustením " "príkazu „ubuntu-bug ubuntu-release-upgrader-core“ v termináli." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Nepodarilo sa vypočítať aktualizáciu" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Chyba pri overovaní niektorých balíkov" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Nebolo možné overiť niektoré balíky. Príčinou mohol byť dočasný problém so " "sieťou. Môžete to opäť skúsiť neskôr. Nižšie je uvedený zoznam neoverených " "balíkov." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Balík „%s“ je označený na odstránenie ale nachádza sa na zozname balíkov, " "ktoré sa nemajú odstraňovať." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Nevyhnutný balík „%s“ je označený na odstránenie." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Pokus o nainštalovanie verzie „%s“ z čiernej listiny" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Nie je možné nainštalovať „%s“" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Nebolo možné nainštalovať povinný balík. Prosím, nahláste túto chybu " "spustením príkazu „ubuntu-bug ubuntu-release-upgrader-core“ v termináli." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Nie je možné odhadnúť meta-balík" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Váš systém neobsahuje žiaden z balíkov ubuntu-desktop, kubuntu-desktop, " "xubuntu-desktop alebo edubuntu-desktop a nebolo možné zistiť, ktorú verziu " "Ubuntu používate.\n" " Prosím, než budete pokračovať, najprv nainštalujte jeden z vyššie uvedených " "balíkov pomocou Synaptic alebo apt-get." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Číta sa vyrovnávacia pamäť" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Nepodarilo sa uzamknúť databázu softvéru" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Zvyčajne to znamená, že je už spustená iná aplikácia na správu balíkov (ako " "apt-get alebo aptitude). Prosím, najskôr ukončite danú aplikáciu." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" "Aktualizácia prostredníctvom vzdialeného pripojenia nie je podporovaná" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Spúšťate aktualizáciu prostredníctvom vzdialeného pripojenia ssh s " "rozhraním, ktoré to nepodporuje. Prosím, skúste aktualizáciu v textovom " "režime pomocou „do-release-upgrade“.\n" "\n" "Táto aktualizácia sa teraz preruší. Prosím, skúste to bez použitia ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Pokračovať v spojení cez SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Zdá sa, že táto relácia beží pod ssh. Neodporúča sa vykonávať aktualizáciu " "prostredníctvom ssh, pretože v prípade poruchy je ťažšie ju opraviť.\n" "\n" "Ak chcete pokračovať, na porte „%s“ sa spustí ďalší ssh démon.\n" "Chcete pokračovať?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Štartuje sa ďalší sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Aby sa uľahčilo obnovenie systému v prípade poruchy, spustí sa ďalší sshd na " "porte „%s“. Ak nastane problém s momentálne bežiacim ssh môžete sa stále " "pripojiť k tomuto ďalšiemu.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Ak používate firewall, možno budete musieť dočasne otvoriť tento port. " "Pretože je to potenciálne nebezpečná operácia, nevykoná sa automaticky. Port " "môžete otvoriť napr. pomocou:\n" "„%s“" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Nie je možné vykonať prechod na novšiu verziu" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Tento nástroj nepodporuje aktualizáciu z '%s' na '%s'." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Zlyhalo vytvorenie pieskoviska" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Nebolo možné vytvoriť prostredie pieskoviska." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Režim pieskoviska" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Táto aktualizácia beží v režime pieskoviska (v testovacom režime). Všetky " "zmeny zapísané do „%s“ sa pri ďalšom reštarte stratia.\n" "\n" "*Žiadne* zmeny zapísané do systémového adresára odteraz do najbližšieho " "reštartu sa nezachovajú." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Vaša inštalácia Pythonu je pokazená. Prosím, opravte symbolický odkaz " "„/usr/bin/python“." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Balík 'debsig-verify' je nainštalovaný" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Aktualizácia nemôže pokračovať s týmto nainštalovaným balíkom.\n" "Najprv ho, prosím, odstránte pomocou programu synaptic alebo 'apt-get remove " "debsig-verify' a spustite aktualizáciu znovu." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Nie je možné zapisovať do „%s“" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Nie je možné zapisovať do systémového adresára „%s“ na vašom systéme. " "Aktualizácia nemôže pokračovať.\n" "Prosím, uistite sa, že sa do systémového adresára dá zapisovať." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Použiť najnovšie aktualizácie z internetu?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Pri aktualizácii systému je možné automaticky stiahnuť najnovšie " "aktualizácie a nainštalovať ich. Ak ste pripojení k sieti, táto možnosť sa " "dôrazne odporúča.\n" "\n" "Aktualizácia potrvá dlhšie, ale po jej dokončení bude váš systém úplne " "aktuálny. Ak sa rozhodnete tento krok vynechať, mali by ste nainštalovať " "najnovšie aktualizácie čo najskôr po aktualizácii systému.\n" "Ak na túto možnosť odpoviete „Nie“, sieť nebude vôbec použitá." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "vypnuté pri aktualizácii na %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nebol nájdený vhodný server" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Počas prehľadávania vašich informácií o zdrojoch softvéru sa nenašlo žiadne " "zrkadlo na aktualizáciu. To môže nastať ak používate lokálne zrkadlo alebo " "ak sú informácie zrkadiel neaktuálne,\n" "\n" "Chcete napriek tomu prepísať svoj súbor „sources.list“? Ak tu zvolíte „Áno“, " "prebehne aktualizácia všetkých „%s“ na záznamy „%s“.\n" "Ak zvolíte „Nie“, aktualizácia sa preruší." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Vytvoriť štandardný zoznam zdrojov softvéru?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Po prehľadaní vášho súboru „sources.list“ sa nenašiel žiadny platný záznam " "pre „%s“.\n" "\n" "Majú sa pridať štandardné záznamy pre „%s“? Ak zvolíte „Nie“, aktualizácia " "sa preruší." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Neplatná informácia o zdrojoch softvéru" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Aktualizácia informácií zdroja softvéru spôsobila neplatný súbor, preto sa " "spúšťa proces hlásenia chyby ." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Zdroje tretích strán sú zakázané" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Niektoré záznamy tretích strán vo vašom sources.list boli vypnuté. Po " "prechode na novšiu verziu ich môžete znova zapnúť nástrojom 'software-" "properties' vášho správcu balíkov." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Balíky sú v nekonzistentnom stave" msgstr[1] "Balík je v nekonzistentnom stave" msgstr[2] "Balíky sú v nekonzistentnom stave" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Balíky „%s“ sú v nekonzistentnom stave a je potrebné ich preinštalovať, ale " "neboli pre ne nájdené žiadne archívy. Prosím, preinštalujte balíky ručne " "alebo ich odstráňte zo systému." msgstr[1] "" "Balík „%s“ je v nekonzistentnom stave a je potrebné ich preinštalovať, ale " "nemožno preň nájsť žiaden archív. Prosím, preinštalujte balík ručne alebo ho " "odstráňte zo systému." msgstr[2] "" "Balíky „%s“ sú v nekonzistentnom stave a je potrebné ich preinštalovať, ale " "neboli pre ne nájdené žiadne archívy. Prosím, preinštalujte balíky ručne " "alebo ich odstráňte zo systému." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Chyba počas aktualizácie" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Počas aktualizácie sa objavil problém, ktorý je zvyčajne spôsobený chybou " "sieťového pripojenia, skontrolujte prosím sieťové pripojenie a skúste to " "znova." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Nedostatok voľného miesta na disku" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Aktualizácia bola prerušená. Aktualizácia vyžaduje celkom %s voľného miesta " "na disku „%s“. Prosím, uvoľnite ešte aspoň %s miesta na disku „%s“. " "Vyprázdnite svoj kôš a odstráňte dočasné balíky z predošlých inštalácií " "pomocou „sudo apt-get clean“." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Počítajú sa zmeny" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Chcete začať s aktualizáciou?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Aktualizácia zrušená" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Aktualizácia sa teraz preruší a obnoví sa pôvodný stav systému. V " "aktualizácii môžete neskôr pokračovať." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Nebolo možné stiahnuť aktualizácie" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Aktualizácia bola zrušená. Prosím, skontrolujte funkčnosť vášho pripojenia k " "internetu alebo inštalačné médium a skúste to znova. Všetky stiahnuté súbory " "boli zachované." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Chyba počas potvrdzovania" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Obnovuje sa pôvodný stav systému" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Nebolo možné nainštalovať aktualizácie" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Aktualizácia bola prerušená. Váš systém sa môže nachádzať v nepoužiteľnom " "stave. Teraz sa spustí pokus o obnovenie (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Prosím, nahláste túto chybu v prehliadači na adrese " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug a " "pripojte k hláseniu chyby súbory z adresára /var/log/dist-upgrade/.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Aktualizácia bola prerušená. Prosím, skontrolujte svoje pripojenie k " "internetu alebo inštalačné médium a skúste to znova. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Odstrániť zastarané balíky?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Ponechať" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Odstrániť" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Počas čistenia nastal problém. Viac informácií nájdete v správe uvedenej " "nižšie. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Požadované závislosti nie sú nainštalované" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Požadovaná závislosť '%s' nie je nainštalovaná. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Kontroluje sa správca balíkov" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Príprava prechodu na vyššiu verziu zlyhala" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Príprava systému na aktualizáciu zlyhala, preto sa spúšťa proces hlásenia " "chyby ." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Zisťovanie predpokladov aktualizácie zlyhalo" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Systému sa nepodarilo získať predpoklady aktualizácie. Aktualizácia sa " "teraz preruší a obnoví sa pôvodný stav systému.\n" "\n" "Okrem toho sa spúšťa proces hlásenia chyby ." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Aktualizujú sa informácie o zdrojoch softvéru" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Nepodarilo sa pridať CD-ROM" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Ľutujeme, pridanie CD-ROM neprebehlo úspešne" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Neplatná informácia o balíku" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Sťahuje sa" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Prebieha prechod na novšiu verziu" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Aktualizácia dokončená" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Aktualizácia bola dokončená, ale počas nej sa vyskytli chyby." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Vyhľadávanie zastaraného softvéru" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Aktualizácia systému je dokončená." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Čiastočná aktualizácia je dokončená." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Nebolo možné nájsť poznámky k vydaniu" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Server môže byť preťažený. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Nebolo možné stiahnuť poznámky k vydaniu" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Skontrolujte si internetové pripojenie." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "overenie „%(file)s“ voči „%(signature)s“ " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "extrahuje sa „%s“" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Nebolo možné spustiť aktualizačný program" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Toto je pravdepodobne chyba v nástroji na aktualizáciu. Prosím, nahláste " "túto chybu spustením príkazu „ubuntu-bug ubuntu-release-upgrader-core“ v " "termináli." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Podpis aktualizačného programu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Aktualizačný nástroj" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Zlyhalo získavanie" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Zlyhalo získavanie aktualizácie. Môže to byť spôsobené sieťovým problémom. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Overenie totožnosti zlyhalo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Zlyhalo overenie pravosti aktualizácie. Môže to byť spôsobené sieťovým " "problémom alebo nedostupnosťou servera. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Chyba pri rozbaľovaní" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Nebolo možné rozbaliť aktualizáciu. Môže to byť spôsobené sieťovým problémom " "alebo nedostupnosťou servera. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Overenie zlyhalo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Zlyhalo overenie aktualizácie. Mohol to spôsobiť problém siete alebo " "servera. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Nie je možné spustiť aktualizáciu systému" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "To zvyčajne spôsobuje systém, kde je /tmp pripojený s príznakom noexec. " "Prosím, znova ho pripojte bez príznaku noexec a znova spustite aktualizáciu." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Chybová správa je '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Aktualizovať" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Poznámky k vydaniu" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Sťahujú sa ďalšie balíky..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Súbor %s z %s, %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Súbor %s z %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Prosím, vložte „%s“ do mechaniky „%s“" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Výmena nosiča" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "používa sa evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Váš systém používa správcu zväzkov „evms“ v /proc/mounts. Program „evms“ už " "ďalej nie je podporovaný. Vypnite ho prosím a následne znova spustite " "aktualizáciu." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Váš grafický hardvér úplne nepodporuje spúšťanie pracovného prostredia " "„unity“. Môžno po aktualizácii skončíte vo veľmi pomalom prostredí. " "Odporúčame vám zatiaľ zotrvať pri LTS verzii Ubuntu. Ďalšie informácie " "nájdete na adrese " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Chcete napriek " "tomu pokračovať v aktualizácii?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ubuntu 12.04 LTS nemusí plne podporovať váš grafický hardvér." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Podpora vášho grafického hardvéru Intel je v Ubuntu 12.04 LTS obmedzená a po " "aktualizácii sa môžu vyskytnúť problémy. Ďalšie informácie nájdete na " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Chcete pokračovať " "v aktualizácii?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Aktualizácia systému môže vypnúť niektoré efekty prostredia a znížiť výkon " "hier a iných graficky náročných programov." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Tento počítač momentálne používa grafický ovládač NVIDIA „nvidia“. Nie je " "dostupná žiadna verzia tohto ovládača, ktorá by fungovala s vaším hardvérom " "v Ubuntu 10.04 LTS.\n" "\n" "Chcete pokračovať?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Tento počítač momentálne používa grafický ovládač AMD „fglrx“. Nie je " "dostupná žiadna verzia tohto ovládača, ktorá by fungovala s vaším hardvérom " "v Ubuntu 10.04 LTS.\n" "\n" "Chcete pokračovať?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "CPU nie je i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Váš systém má CPU i586 alebo CPU bez rozšírenia „cmov“. Všetky balíky boli " "vytvorené a optimalizované pre procesory i686 alebo vyššie. Nie je možné " "nainštalovať nové vydanie Ubuntu na tento hardvér." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Neobsahuje procesor ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Váš systém používa procesor ARM, ktorý je staršej architektúry ako ARMv6. " "Všetky balíky v karmic boli zostavené s optimalizáciami vyžadujúcimi " "architektúru ARMv6 alebo lepšiu. Na tomto hardvéri nie je možné aktualizovať " "váš systém na nové vydanie Ubuntu." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Nie je dostupný žiaden init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Zdá sa, že váš systém je virtualizované prostredie bez démona init, napr. " "Linux-VServer. Ubuntu 10.04 LTS nemôže v tomto type prostredia fungovať, " "najskôr je potrebná aktualizácia vášho virtuálneho stroja.\n" "\n" "Ste si istý, že chcete pokračovať?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Aktualizácia v pieskovisku pomocou aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Použiť zadanú cestu na hľadanie CD s aktualizačnými balíkami" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Použiť frontend. Momentálne dostupné: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*ZAVRHOVANÉ* táto voľba bude ignorovaná" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Vykonať iba čiastočnú aktualizáciu (bez prepísania sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Vypnúť podporu GNU screen" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Nastaviť dátový priečinok" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Sťahovanie je dokončené" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Získava sa súbor %li z %li rýchlosťou %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Zostáva približne %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Sťahuje sa súbor %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Aplikujú sa zmeny" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problém so závislosťami - ponecháva sa nenakonfigurované" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Nebolo možné nainštalovať „%s“" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Aktualizácia bude pokračovať, ale balík „%s“ nemusí byť vo fungujúcom " "stave. Zvážte prosím zaslanie hlásenia o chybe." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Nahradiť upravený konfiguračný súbor\n" "„%s“?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Ak si vyberiete nahradiť novšou verziou, stratíte všetky zmeny, ktoré ste " "spravili v tejto konfigurácii." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Príkaz „diff“ nebol nájdený." #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Vyskytla sa nenapraviteľná chyba" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosím, nahláste toto ako chybu (ak ste tak už neučinili) a priložte súbory " "/var/log/dist-upgrade/main.log a /var/log/dist-upgrade/apt.log k chybovému " "hláseniu. Aktualizácia bola prerušená.\n" "Váš pôvodný súbor sources.list bol uložený ako " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Stlačené Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Týmto sa operácia preruší a môže ponechať systém v nepoužiteľnom stave. Ste " "si istý, že to chcete?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Aby ste zamedzili strate údajov, zatvorte všetky otvorené aplikácie a " "dokumenty." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Tento balík už Canonical nepodporuje (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Znížiť verziu (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Odstrániť (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Už nie je potrebné (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Nainštalovať (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Aktualizovať (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Zobraziť rozdiel >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Skryť rozdiel" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Chyba" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Zavrieť" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Zobraziť Terminál >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Skryť Terminál" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informácie" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Podrobnosti" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Už nie je podporované %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Odstrániť %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Odstrániť (bol nainštalovaný automaticky) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Inštalovať %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Aktualizovať %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Je potrebný reštart" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Pre dokončenie aktualizácie reštartujte počítač" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Reštartovať teraz" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Zrušiť prebiehajúcu aktualizáciu systému?\n" "\n" "Ak zrušíte prebiehajúcu aktualizáciu, môže to ponechať systém v " "nepoužiteľnom stave. Dôrazne sa odporúča pokračovať v aktualizácii systému." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Zrušiť prechod na novšiu verziu?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dní" msgstr[1] "deň" msgstr[2] "%li dni" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hodín" msgstr[1] "hodina" msgstr[2] "%li hodiny" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minút" msgstr[1] "minúta" msgstr[2] "%li minúty" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekúnd" msgstr[1] "sekunda" msgstr[2] "%li sekundy" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s, %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Sťahovanie potrvá asi %s na 1Mbit DSL pripojení a asi %s na 56k modeme." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Sťahovanie s vaším pripojením bude trvať asi %s. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Prebieha príprava aktualizácie" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Získavajú sa softvérové kanály" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Prijímajú sa nové balíky" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Inštalujú sa aktualizácie" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Prebieha čistenie" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d nainštalovaných balíkov už Canonical nepodporuje. Ešte stále " "môžete získať podporu od komunity." msgstr[1] "" "%(amount)d nainštalovaný balík už Canonical nepodporuje. Ešte stále môžete " "získať podporu od komunity." msgstr[2] "" "%(amount)d nainštalované balíky už Canonical nepodporuje. Ešte stále môžete " "získať podporu od komunity." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bude odstránených %d balíkov." msgstr[1] "Bude odstránený %d balík." msgstr[2] "Budú odstránené %d balíky." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bude nainštalovaných %d nových balíkov." msgstr[1] "Bude nainštalovaný %d nový balík." msgstr[2] "Budú nainštalované %d nové balíky." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bude aktualizovaných %d balíkov." msgstr[1] "Bude aktualizovaný %d balík." msgstr[2] "Budú aktualizované %d balíky." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Musíte stiahnuť celkom %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Inštalácia aktualizácie môže trvať niekoľko hodín. Po dokončení sťahovania " "nebude možné proces zrušiť." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Sťahovanie a inštalácia aktualizácií môže trvať niekoľko hodín. Po skončení " "sťahovania nie je možné proces zrušiť." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "odstraňovanie balíkov môže trvať niekoľko hodín. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Softvér na tomto počítači je aktuálny." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Pre váš systém nie sú dostupné žiadne aktualizácie. Proces aktualizácie bude " "zrušený." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Je potrebný reštart" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Bola dokončená aktualizácia a je potrebné reštartovať počítač. Chcete " "vykonať reštart teraz?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prosím, nahláste toto ako chybu a priložte súbory /var/log/dist-" "upgrade/main.log a /var/log/dist-upgrade/apt.log k chybovému hláseniu. " "Aktualizácia bola prerušená.\n" "Váš pôvodný súbor sources.list bol uložený ako " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Ruší sa" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Znížená verzia:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Prosím, pokračujte stlačením [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Pokračovať [aN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Podrobnosti [p]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "a" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "p" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Už nie je podporované: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Odstrániť: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Inštalovať: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Aktualizovať: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Pokračovať [An] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Pre dokončenie aktualizácie je vyžadovaný reštart.\n" "Ak zvolíte 'y' systém sa reštartuje." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Sťahuje sa súbor %(current)li z %(total)li s %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Sťahuje sa súbor %(current)li z %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Zobraziť priebeh jednotlivých súborov" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Zrušiť aktualizáciu" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Pokračovať v aktualizácii" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Zrušiť prebiehajúcu aktualizáciu?\n" "\n" "Ak prerušíte aktualizáciu, systém môže zostať v nestabilnom stave. Dôrazne " "sa odporúča pokračovať v aktualizácii." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Začať aktualizáciu" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Nahradiť" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Rozdiel medzi súbormi" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Oznámiť chybu" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Pokračovať" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Spustiť aktualizáciu?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Reštart systému aby sa dokončila aktualizácia\n" "\n" "Prosím, uložte rozrobenú prácu predtým, než budete pokračovať." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Prechod na vyššiu verziu distribúcie" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Nastavujú sa softvérové kanály" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Reštartovanie systému" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminál" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Aktualizovať" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Je dostupná novšia verzia Ubuntu. Želáte si prejsť na novšiu verziu?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Neaktualizovať" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Spýtať sa neskôr" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Áno, aktualizovať teraz" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Odmietlu ste aktualizovať na novšiu verziu Ubuntu." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Aktualizáciu môžete vykonať neskôr otvorením Aktualizácie softvéru a " "kliknutím na „Aktualizovať“." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Vykonať prechod na novšie vydanie" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Na aktualizáciu Ubuntu je potrebné overenie totožnosti." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Vykonať čiastočnú aktualizáciu" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" "Na vykonanie čiastočnej aktualizácie je potrebné overenie totožnosti." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Zobraziť verziu a skončiť" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Adresár s dátovými súbormi" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Spustiť uvedený frontend." #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Prebieha čiastočná aktualizácia" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Sťahuje sa nástroj na prechod na vyššiu verziu distribúcie." #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Skontrolovať, či je možné aktualizovať na najnovšiu vývojársku verziu" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Pokúste sa aktualizovať na poslednú verziu použitím aktualizátora z $distro-" "proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Beh v špeciálnom režime aktualizácie.\n" "Momentálne sú podporované normálne aktualizácie pracovnej stanice a " "serverových systémov." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Otestovať aktualizáciu v pieskovisku aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Skontrolovať iba ak je dostupné nové vydanie distribúcie a oznámiť výsledok " "návratovou hodnotou" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Kontroluje sa dostupnosť nového vydania Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Vaše vydanie Ubuntu už nie je podporované." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Informácie o aktualizáciách nájdete na:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Žiadne nové vydanie nebolo nájdené" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Aktualizácia vydania nie je práve teraz možná" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Aktualizáciu vydania momentálne nie je možné vykonať. Prosím, skúste to " "znova neskôr. Server oznámil „%s“" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Je dostupné nové vydanie „%s“." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Ak naň chcete aktualizovať systém, spustite „do-release-upgrade“." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Dostupná nová verzia Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Odmietli ste aktualizovať na Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Pridať ladiaci výstup" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Vykonanie čiastočnej aktualizáce vyžaduje overenie totožnosti" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Vykonanie prechodu na novšie vydanie vyžaduje overenie totožnosti" ubuntu-release-upgrader-0.220.10/po/ca.po0000644000000000000000000020215612431225715014742 0ustar # Catalan translation for update-manager # Copyright (C) 2006 # This file is distributed under the same license as the update-manager package. # Jordi Irazuzta Cardús , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-27 11:05+0000\n" "Last-Translator: Adolfo Jayme \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ca\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Servidor per %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Servidor principal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Servidors personalitzats" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "No s'ha pogut calcular l'entrada del fitxer sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "No s'ha pogut trobar cap paquet, esteu utilitzat un disc de l'Ubuntu per a " "l'arquitectura adequada?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "No s'ha pogut afegir el CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "S'ha produït un error en afegir el CD i l'actualització s'ha cancel·lat. " "Informeu d'aquest error si això ha passat amb un CD d'Ubuntu vàlid.\n" "\n" "El missatge d'error ha estat:\n" "«%s»" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Elimina el paquet en mal estat" msgstr[1] "Elimina els paquets en mal estat" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "El paquet «%s» es troba en un estat inconsistent i s'ha de tornar a " "instal·lar, però no s'ha trobat l'arxiu per a fer-ho. Voleu eliminar aquest " "paquet i continuar?" msgstr[1] "" "Els paquets «%s» es troben en un estat inconsistent i s'han de tornar a " "instal·lar, però no s'ha trobat els arxius per a fer-ho. Voleu eliminar " "aquests paquets i continuar?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Pot ser que el servidor estigui sobrecarregat" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paquets trencats" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "El vostre sistema conté paquets trencats que no es poden arreglar amb " "aquesta aplicació. Utilitzeu el Synaptic o l'apt-get abans de continuar." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "S'ha produït un problema irresoluble mentre es calculava l'actualització:\n" "%s\n" "\n" "Això pot ser degut a:\n" " * l'actualització a una versió en desenvolupament de l'Ubuntu\n" " * l'execució de l'actual versió en desenvolupament de l'Ubuntu\n" " * la instal·lació de paquets no oficials de programari i no proporcionats " "per l'Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Això és probablement un problema transitori, torneu a provar-ho més tard." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Si res d'això és aplicable, informeu d'aquest error utilitzant l'ordre " "«ubuntu-bug ubuntu-release-upgrader-core» en un terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "No s'han pogut autenticar alguns paquets. Potser hi ha un problema temporal " "amb la xarxa. Podeu provar-ho més tard. A continuació es mostra la llista " "amb els paquets no autenticats." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "El paquet «%s» està marcat per a eliminar-lo, però apareix a la llista negra " "de fitxers a eliminar." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "El paquet essencial «%s» està marcat per a ésser eliminat." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "S'està intentant instal·lar la versió «%s» de la llista negra" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "No s'ha pogut instal·lar «%s»" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Ha sigut impossible instal·lar el paquet necessari. Informeu d'aquest error " "utilitzant l'ordre «ubuntu-bug ubuntu-release-upgrader-core» en un terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "No s'ha pogut conjecturar el metapaquet" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "No teniu instal·lats el paquet ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop o edubuntu-desktop i no s'ha pogut detectar la versió de l'Ubuntu " "que esteu utilitzant.\n" "Instal·leu un d'aquests paquets abans de continuar; per fer-ho podeu " "utilitzar el Synaptic o l'apt-get" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "S'està llegint la memòria cau" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "No s'ha pogut obtenir un bloqueig exclusiu" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Normalment això es deu al fet que teniu un altre gestor de paquets en " "execució (com ara l'apt-get o l'aptitude) i cal que abans el tanqueu." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "No és possible actualitzar a través d'una connexió remota" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Esteu duent a terme l'actualització a través d'una connexió SSH remota amb " "un frontal que no admet aquesta funció. Intenteu realitzar una actualització " "en mode text amb l'ordre «do-release-upgrade». \n" "\n" "S'interromprà l'actualització. Torneu-ho a intentar sense SSH." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Voleu continuar treballant via SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Sembla ser que aquesta sessió s'està executant amb SSH. Actualment no és " "recomanable realitzar una actualització a través d'SSH, atès que en cas de " "fallada la recuperació és més difícil.\n" "\n" "Si continueu, s'iniciarà un dimoni addicional al port «%s».\n" "Voleu continuar?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "S'està iniciant un sshd addicional" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Per facilitar la recuperació en cas de fallada, s'iniciarà un sshd " "addicional al port «%s». Si alguna cosa anés malament amb l'ssh en ús, podeu " "fer servir l'addicional.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Si feu servir un tallafocs, necessitareu obrir temporalment aquest port. " "Atès que això és potencialment perillós, no es fa automàticament. Per " "exemple, podeu obrir el port amb:\n" "«%s»" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "No es pot actualitzar" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Aquesta eina no permet l'actualització de «%s» a «%s»." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Ha fallat la configuració d'un entorn de proves" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "No ha estat possible crear un entorn de proves." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Mode de prova" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Aquesta actualització s'està executant en mode de proves. Tots els canvis " "s'escriuran a «%s» i es perdran en reiniciar.\n" "\n" "Cap dels canvis fets als directoris del sistema seran permanents." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "La vostra instal·lació del Python està malmesa. Reviseu l'enllaç simbòlic " "«/usr/bin/python»." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "El paquet «debsig-verify» està instal·lat" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "L'actualització no pot continuar amb aquest paquet instal·lat.\n" "Elimineu-lo amb el Synaptic o amb l'ordre «apt-get remove debsig-verify» i " "torneu a executar l'actualització." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "No es pot escriure a «%s»" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "No es pot escriure al directori del sistema «%s», per la qual cosa " "l'actualització no pot continuar.\n" "Assegureu-vos que aquest directori tingui els permisos d'escriptura adients." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Voleu incloure les darreres actualitzacions d'Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "El sistema d'actualitzacions pot utilitzar Internet per baixar i instal·lar " "automàticament les darreres actualitzacions. Si disposeu d'una connexió de " "xarxa, aquesta opció és molt recomanable.\n" "\n" "L'actualització trigarà més, però en acabar tindreu un sistema completament " "actualitzat. Podeu optar per no fer-ho, però en breu haureu d'actualitzar el " "sistema.\n" "Si responeu «no» la xarxa no s'utilitzarà per a res." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "desactivat en actualitzar a %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "No s'ha trobat cap rèplica vàlida" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "No s'ha trobat cap entrada de rèplica per a l'actualització a la vostra " "informació sobre els dipòsits. Això pot ésser degut a què estigueu executant " "una rèplica interna o que les dades de les rèpliques no estiguin " "actualitzades.\n" "\n" "Voleu sobreescriure el fitxer «sources.list» de totes maneres? Si trieu que " "«Sí», totes les entrades «%s» s'actualitzaran a «%s». Si trieu que «No», es " "cancel·larà l'actualització." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Voleu generar les fonts per defecte?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "No s'ha trobat cap entrada vàlida per a «%s» en analitzar el fitxer " "«sources.list».\n" "\n" "Voleu que s'afegeixin entrades per a «%s»? Si trieu que «No», es cancel·larà " "l'actualització." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "La informació dels dipòsits no és vàlida" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "En actualitzar la informació dels dipòsits s'ha obtingut un fitxer no vàlid, " "per la qual cosa s'iniciarà el procés d'informe d'errors." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "S'han desactivat les fonts de tercers" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "S'han desactivat algunes entrades de tercers. Les podeu reactivar després de " "l'actualització des de l'eina «software-properties» en el vostre gestor de " "paquets." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paquet en estat inconsistent" msgstr[1] "Paquets en estat inconsistent" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "El paquet «%s» es troba en un estat inconsistent i s'ha de tornar a " "instal·lar, però no s'ha trobat l'arxiu per a fer-ho. Torneu-lo a instal·lar " "manualment o suprimiu-lo del sistema." msgstr[1] "" "Els paquets «%s» es troben en un estat inconsistent i s'han de tornar a " "instal·lar, però no s'ha trobat els arxius per a fer-ho. Torneu-los a " "instal·lar manualment o suprimiu-los del sistema." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "S'ha produït un error en l'actualització" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "S'ha produït un error mentre s'actualitzava el vostre sistema. Normalment " "això es degut a problemes de xarxa. Comproveu la vostra connexió de xarxa i " "torneu a intentar-ho." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "No disposeu de suficient espai al disc" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "S'ha interromput l'actualització. Cal un total de %s d'espai lliure al disc " "«%s», per la qual cosa hauríeu d'alliberar un mínim de %s d'espai addicional " "al disc «%s». Buideu la paperera i suprimiu els paquets temporals " "d'anteriors instal·lacions utilitzant l'ordre «sudo apt-get clean»." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "S'estan calculant els canvis" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "S'ha cancel·lat l'actualització" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Ara es cancel·larà l'actualització i es restaurarà a l'estat original del " "sistema. Podeu continuar l'actualització més tard." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "No s'han pogut baixar les actualitzacions" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "S'ha interromput l'actualització. Comproveu la connexió a Internet o els " "suports d'instal·lació i torneu-ho a provar. S'han mantingut tots els " "fitxers baixats fins ara." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "S'ha produït un error durant l'enviament" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "No s'han pogut instal·lar les actualitzacions" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "S'ha interromput l'actualització. Pot ser que el vostre sistema hagi quedat " "en un estat inestable. Ara s'executarà un procés de recuperació (dpkg --" "configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Informeu d'aquest error en un navegador a " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug i " "adjunteu els fitxers de /var/log/dist-upgrade/ a l'informe d'error.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "S'ha interromput l'actualització. Verifiqueu la vostra connexió a Internet o " "el suport d'instal·lació i torneu-ho a intentar. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Voleu suprimir els paquets obsolets?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Manté" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "Sup_rimeix" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "S'ha produït un error durant el procés de neteja. Vegeu el següent missatge " "per a més informació. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Les dependències requerides no estan instal·lades" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "La dependència requerida «%s» no està instal·lada. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "S'està comprovant el gestor de paquets" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "S'ha produït un error en la preparació de l'actualització" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Ha fallat la preparació del sistema per l'actualització, per la qual cosa " "s'iniciarà el procés d'informe d'errors." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "S'ha produït un error en obtenir els prerequisits de l'actualització" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "El sistema no ha pogut obtenir els requeriments per a l'actualització. " "L'actualització s'interromprà i es retornarà el sistema al seu estat " "original.\n" "\n" "També s'iniciarà el procés d'informe d'errors." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "S'està actualitzant la informació dels dipòsits" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "No s'ha pogut afegir el CD-ROM" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "No s'ha pogut afegir el CD-ROM correctament." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "La informació dels paquets no és valida" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "S'està recollint" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "S'està actualitzant" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "S'ha completat l'actualització" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "S'ha completat l'actualització, però s'han produït errors durant aquest " "procés." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "S'està cercant programari obsolet" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "L'actualització parcial s'ha completat." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "No s'han trobat les notes de la versió" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "El servidor potser està sobrecarregat. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "No s'han pogut baixar les notes de la versió" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Comproveu la vostra connexió a Internet" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "autenticació del fitxer «%(file)s» amb la signatura «%(signature)s» " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "s'està extraient «%s»" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "No es pot executar l'eina d'actualització" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "El més probable és que sigui un error en l'eina d'actualització. Informeu " "d'aquest error utilitzant l'ordre «ubuntu-bug ubuntu-release-upgrader-core» " "en un terminal." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Signatura de l'eina d'actualització" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Eina d'actualització" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Ha fallat la baixada" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Ha fallat l'obtenció de l'actualització. Pot ser que hi hagi algun problema " "a la xarxa. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Ha fallat l'autenticació" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Ha fallat l'autenticació de l'actualització. Pot ser que hi hagi algun " "problema a la xarxa o al servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Ha fallat l'extracció" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Ha fallat l'extracció de l'actualització. Pot ser que hi hagi algun problema " "a la xarxa o al servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Ha fallat la verificació" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Ha fallat la verificació de l'actualització. Pot ser que hi hagi algun " "problema a la xarxa o al servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "No es pot executar l'actualització" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Normalment això està provocat per un sistema on /tmp s'ha muntat com a no " "executable. Torneu-lo a muntar sense l'opció de no executable i torneu a " "executar l'actualització." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "El missatge d'error és «%s»." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Actualització" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Notes de la versió" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "S'estan baixant els fitxers de paquet addicionals..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Fitxer %s de %s a %s B/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Fitxer %s de %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Inseriu «%s» a la unitat «%s»" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Canvi de suport" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "S'està utilitzant l'evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "El vostre sistema utilitza el gestor de volum «evms» a /proc/mounts. Aquest " "programari no es mantindrà més, desconnecteu-lo i torneu a executar " "l'actualització." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "L'entorn d'escriptori «Unity» no és totalment compatible amb el vostre " "maquinari gràfic. Pot ser que l'escriptori s'executi molt lentament després " "de l'actualització. El nostre consell és que de moment mantingueu la versió " "LTS. Per obtenir més informació vegeu " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D. Tot i això, " "voleu continuar amb l'actualització?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Sembla que el vostre maquinari gràfic no és totalment compatible amb " "l'Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "La compatibilitat a l'Ubuntu 12.04 LTS per al vostre maquinari gràfic Intel " "és limitat i podríeu tenir problemes després d'actualitzar. Per obtenir més " "informació visiteu " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx. Voleu continuar " "amb l'actualització?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "L'actualització pot reduir els efectes d'escriptori i el rendiment en jocs i " "altres programes que facin un ús exhaustiu de processament gràfic." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Aquest ordinador utilitza el controlador gràfic «nvidia» d'NVIDIA. No hi ha " "cap versió disponible d'aquest controlador que funcioni amb el vostre " "maquinari a l'Ubuntu 10.04 LTS.\n" "\n" "Voleu continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Aquest ordinador utilitza el controlador gràfic «fglrx» d'AMD. No hi ha cap " "versió disponible d'aquest controlador que funcioni amb el vostre maquinari " "a l'Ubuntu 10.04 LTS.\n" "\n" "Voleu continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Sense CPU i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "El vostre sistema utilitza una CPU i586 o una CPU que no té l'extensió " "«cmov». Tots els paquets s'han construït amb optimitzacions que requereixen " "un i686 com a arquitectura mínima. No és possible actualitzar el sistema a " "una versió nova de l'Ubuntu amb aquest maquinari." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "No és una CPU ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "El vostre sistema utilitza una CPU ARM que és més antiga que l'arquitectura " "ARMv6. Tots els paquets del Karmic s'han creat amb optimitzacions que " "requereixen l'ARMv6 com a arquitectura mínima. No és possible actualitzar el " "vostre sistema a una versió nova de l'Ubuntu amb aquest maquinari." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "No hi ha cap sistema d'inicialització disponible" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Sembla ser que el vostre sistema és un entorn virtual sense un dimoni " "d'inicialització «init», com ara un servidor virtual de Linux (Linux-" "VServer). L'Ubuntu 10.04 no pot funcionar en aquest tipus d'entorn - abans " "cal fer una actualització de la configuració de la màquina virtual.\n" "\n" "Segur que voleu continuar?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Actualització en entorn de proves utilitzant aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Utilitza el camí especificat per cercar un CDROM amb paquets actualitzables" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Utilitzeu un frontal. Actualment es disposa de: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*OBSOLET* aquesta opció s'ignorarà" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Realitza només una actualització parcial (sense reescriure el sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Inhabilita la compatibilitat amb el GNU screen" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Estableix el «datadir» (directori de dades)" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "S'ha completat el recull" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "S'està obtenint el fitxer %li de %li a %s B/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Queden %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "S'està obtenint el fitxer %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "S'estan aplicant els canvis" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemes de dependències - es deixarà sense configurar" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "No s'ha pogut instal·lar «%s»" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "L'actualització continuarà, però pot ser que el paquet «%s» no sigui " "funcional. Hauríeu de considerar l'enviament d'un informe d'error sobre " "aquest fet." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Voleu reemplaçar el fitxer de\n" "configuració personalitzat «%s»?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Perdreu tots els canvis realitzats en el fitxer de configuració si trieu " "reemplaçar-lo per una versió més nova." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "No s'ha trobat l'ordre «diff»" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "S'ha produït un error greu" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Informeu d'això com un error (si no és que ja ho heu fet) i adjunteu els " "fitxers /var/log/dist-upgrade/main.log i /var/log/dist-upgrade/apt.log al " "vostre informe. S'ha interromput l'actualització.\n" "S'ha desat el vostre fitxer sources.list original a " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "S'ha premut Ctrl+C" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Això interromprà l'operació, amb la qual cosa pot ser que es malmeti el " "sistema. Esteu segur que ho voleu fer?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tots els documents i " "aplicacions." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Ja no mantinguts per Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Es desactualitzaran (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Se suprimiran (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Ja no són necessaris (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "S'instal·laran (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "S'actualitzaran (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Mostra les diferències >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Oculta les diferències" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "S'ha produït un error" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Tanca" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Mostra el terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Oculta el terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informació" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detalls" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Ja no es mantenen %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Suprimeix %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Suprimeix %s (s'havia instal·lat automàticament)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instal·la %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Actualitza %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Cal que reinicieu el sistema" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Reinicieu el sistema per a completar l'actualització" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Reinicia" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Voleu cancel·lar l'actualització en curs?\n" "\n" "El sistema pot quedar inusable si la cancel·leu. És molt recomanable " "continuar amb l'actualització." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Voleu cancel·lar l'actualització?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dia" msgstr[1] "%li dies" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hora" msgstr[1] "%li hores" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minut" msgstr[1] "%li minuts" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li segon" msgstr[1] "%li segons" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "La baixada trigarà aproximadament %s amb una connexió ADSL d'1Mb, i " "aproximadament %s amb un mòdem de 56k" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "La baixada trigarà aproximadament %s amb la vostra connexió. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "S'està preparant l'actualització" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "S'estan obtenint canals de programari nous" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "S'estan obtenint els paquets nous" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "S'estan instal·lant les actualitzacions" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "S'està netejant" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d paquet instal·lat ja no està mantingut per Canonical. Així i tot, " "encara podeu obtenir assistència de la comunitat." msgstr[1] "" "%(amount)d dels paquets instal·lats ja no estan mantinguts per Canonical. " "Així i tot, encara podeu obtenir assistència de la comunitat." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Se suprimirà %d paquet." msgstr[1] "Se suprimiran %d paquets." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %d paquet nou" msgstr[1] "S'instal·laran %d paquets nous" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %d paquet" msgstr[1] "S'actualitzaran %d paquets" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Heu de baixar un total de %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "La instal·lació de l'actualització pot trigar unes quantes hores. Un cop " "hagi finalitzat la baixada dels fitxers, el procés no es pot cancel·lar." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "La baixada i instal·lació de l'actualització pot trigar unes quantes hores. " "Un cop hagi finalitzat la baixada dels fitxers, el procés no es pot " "cancel·lar." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "La supressió de paquets pot trigar unes quantes hores. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "El programari d'aquest ordinador està actualitzat." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "No hi ha actualitzacions disponibles per al vostre sistema. L'actualització " "es cancel·larà" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Cal que reinicieu el sistema" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "L'actualització ha finalitzat i cal reiniciar el sistema. Voleu fer-ho ara?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Informeu d'això com un error i adjunteu els fitxers /var/log/dist-" "upgrade/main.log i /var/log/dist-upgrade/apt.log al vostre informe. S'ha " "interromput l'actualització.\n" "S'ha desat el vostre fitxer sources.list original a " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "S'està interrompent" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Degradat:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Premeu la tecla de retorn per continuar" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Continua [sN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detalls [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "s" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Ja no es mantenen: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Suprimeix: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instal·la: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Actualitza: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continua [Sn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Cal reiniciar el sistema per a finalitzar l'actualització.\n" "Si seleccioneu «s», es reiniciarà el sistema." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "S'està baixant el fitxer %(current)li de %(total)li a %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "S'està baixant el fitxer %(current)li de %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Mostra el progrés dels fitxers individuals" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Cancel·la l'actualització" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Reprèn l'actualització" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Voleu cancel·lar l'actualització?\n" "\n" "Si ho feu, pot ser que el sistema sigui inutilitzable. És extremament " "recomanable continuar amb l'actualització." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Comença l'actualització" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Reemplaça" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Diferències entre els fitxers" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Informa de l'error" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continua" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Voleu iniciar l'actualització?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Reinicieu el sistema per a completar l'actualització\n" "\n" "Deseu la vostra feina abans de continuar." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Actualització de la distribució" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "S'estan configurant els canals de programari nous" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "S'està reiniciant l'ordinador" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Actualitza" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Hi ha disponible una versió nova de l'Ubuntu. Voleu actualitzar el vostre " "sistema?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "No actualitzis" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Demana-m'ho més tard" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Actualitza" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Heu triat no actualitzar a la versió nova de l'Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Podeu actualitzar més tard obrint el gestor d'actualitzacions i fent clic a " "«Actualitza»." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Realitza una actualització de la versió" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Cal que us autentiqueu per actualitzar l'Ubuntu." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Realitza una actualització parcial" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Cal que us autentiqueu per fer una actualització parcial." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Mostra la versió i surt" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "El directori que conté els fitxers de dades" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Executa el frontal especificat" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "S'està executant una actualització parcial" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "S'està baixant l'eina d'actualització a una versió nova" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Comprova si és possible actualitzar a la darrera versió de desenvolupament" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Proveu d'actualitzar a l'última versió fent servir l'actualitzador de " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Executeu un mode d'actualització especial.\n" "Actualment disposeu del mode «desktop» per a actualitzacions de sistemes " "d'escriptori i del mode «server» per a sistemes servidors." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Prova d'actualitzar en un entorn de proves amb aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Només verifica si hi ha disponible una versió nova i informa del resultat " "mitjançant el codi de sortida" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "S'està cercant una versió nova de l'Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "La vostra versió de l'Ubuntu ja no està mantinguda." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Per obtenir més informació sobre actualitzacions, aneu a:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "No s'ha trobat cap versió nova" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "En aquests moments no es pot efectuar l'actualització de versió" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "En aquests moments no es pot efectuar l'actualització de versió. Torneu-ho a " "provar més tard. El servidor ha respost: «%s»" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "La versió nova «%s» ja està disponible" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Executeu «do-release-upgrade» per actualitzar a la nova versió." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Hi ha disponible una actualitzacio de l'Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Heu triat no actualitzar a l'Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Afegeix informació de depuració" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Cal autenticació per realitzar una actualització de la versió" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Cal autenticació per realitzar una actualització parcial" ubuntu-release-upgrader-0.220.10/po/sl.po0000644000000000000000000020171212431225715014772 0ustar # Slovenian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:39+0000\n" "Last-Translator: Matej Urbančič \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " "n%100==4 ? 3 : 0);\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "X-Poedit-Country: SLOVENIA\n" "Language: sl\n" "X-Poedit-Language: Slovenian\n" "X-Poedit-SourceCharset: utf-8\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Strežnik za %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Glavni strežnik" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Strežniki po meri" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Ni mogoče izračunati vnosa v sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Ni mogoče najti nobenih datotek s programskimi paketi. Morda vstavljen disk " "ni Ubuntujev ali pa ni namenjen arhitekturi vašega računalnika." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Nosilca CD ni mogoče dodati" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Med dodajanjem nosilca je prišlo do napake, zato bo posodobitev prekinjena. " "Če je to veljaven Ubuntu CD, je morda treba napako javiti kot poročilo o " "hrošču.\n" "\n" "Sporočilo o napaki:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Odstrani pakete v slabem stanju" msgstr[1] "Odstrani paket v slabem stanju" msgstr[2] "Odstrani paketa v slabem stanju" msgstr[3] "Odstrani pakete v slabem stanju" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Paketi '%s' so v neskladju in bi jih bilo treba ponovno namestiti, vendar pa " "jih ni mogoče najti v arhivu. Ali želite odstraniti te pakete in nadaljevati?" msgstr[1] "" "Paket '%s' je v neskladnju in bi ga bilo treba ponovno namestiti, vendar pa " "ga ni mogoče najti v arhivu. Ali želite odstraniti ta paket in nadaljevati?" msgstr[2] "" "Paketa '%s' sta v neskladnju in bi ju bilo treba ponovno namestiti, vendar " "pa ju ni mogoče najti v arhivu. Ali želite odstraniti ta paketa in " "nadaljevati?" msgstr[3] "" "Paketi '%s' so v neskladnju in bi jih bilo treba ponovno namestiti, vendar " "pa jih ni mogoče najti v arhivu. Ali želite odstraniti te pakete in " "nadaljevati?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Strežnik je najverjetneje preobremenjen" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Okvarjeni paketi" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sistem vsebuje okvarjene pakete, ki jih s tem programom ni mogoče popraviti. " "Preden je mogoče nadaljevati, je treba namestitev popraviti s programom " "synaptic ali orodjem apt-get." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Prišlo je do nerazrešljive napake med pripravljanjem nadgradnje:\n" "%s\n" "\n" " Vzrok je lahko:\n" " * nadgradnja na preizkusno različico distribucije Ubuntu,\n" " * zagon trenutne preizkusne različice Ubuntu in\n" " * neuradni programski paketi, ki jih distribucija ne podpira.\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Napaka je verjetno le začasna, zato poskusite znova kasneje." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Če nič od tega ne velja, potem pošljite poročilo o napaki z uporabo ukaz " "'ubuntu-bug ubuntu-release-upgrader-core' v terminalu." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Ni mogoče preračunati zahtev nadgradnje" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Napaka overjanja pristnosti nekaterih paketov" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Nekaterih paketov ni mogoče overiti. Napaka je lahko prehodne narave in bo " "kmalu odpravljena. Spodaj je izpisan seznam neoverjenih paketov." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Paket '%s' je označen za odstranitev, vendar je na črnem seznamu paketov." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" "Paket '%s', ki je pomemben za delovanje sistema, je označen za odstranitev." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Namešča se različica '%s', ki je na črnem seznamu" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Ni mogoče namestiti '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Ni bilo mogoče namestiti željenega paketa. Sporočite to kot hrošč z uporabo " "ukaza 'ubuntu-bug ubuntu-release-upgrader-core' v terminalu." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Ni mogoče določiti metapaketa" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "V sistemu ni nameščenih paketov ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop ali edubuntu-desktop, zato ni mogoče ugotoviti, katera različica " "sistema Ubuntu je nameščena.\n" "Pred nadaljevanjem je treba s programom synaptic ali z ukazom apt-get " "namestiti enega izmed navedenih paketov." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Branje predpomnilnika" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Ni mogoče dobiti izključnega zaklepa" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "To običajno pomeni, da je program, ki zahteva dostop do paketov, že zagnan " "(npr. apt-get ali aptitude). Pred nadaljevanjem je treba tak program končati." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Nadgradnja preko oddaljene povezave ni podprta" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Sistem poskušate posodobiti preko oddaljene ssh povezave z vmesnikom, ki " "tega ne omogoča. Poskusite uporabiti konzolni način z ukazom 'do-release-" "upgrade'.\n" "\n" "Trenutna nadgradnja se bo zdaj preklicala. Poskusite brez ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Ali naj se nadaljuje izvajanje preko varnega SSH protokola?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Videti je, da je trenutna seja zagnana preko ssh povezave. Posodobitev preko " "ssh ni priporočljiva, saj je v primeru napak sistem težje obnoviti.\n" "\n" "V kolikor boste posodobitev nadaljevali, bo na vratih '%s' zagnan dodaten " "ozadnji program ssh.\n" "Ali želite nadaljevati?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Zaganjanje dodatnega sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Za lažje odpravljanje morebitnih napak bo zagnan dodaten sshd na vratih " "'%s'. V kolikor se pojavijo težave v delovanju dejavnega sshd, se bo še " "najprej mogoče povezati na dodaten ozadnji program.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "V primeru da uporabljate požarni zid, boste morda morali ta vrata začasno " "odpreti. Ker je to lahko nevarno, to ni storjeno samodejno. Vrata lahko " "odprete na primer z:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Ni mogoče nadgraditi" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Nadgradnja iz '%s' v '%s' s tem orodjem ni podprta." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Namestitev peskovnika je spodletela" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Ni mogoče ustvariti okolja peskovnika." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Način peskovnika" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Nadgradnja se izvaja v načinu preskovnika (preizkusnemu načinu). Vse " "spremembe zapisane v '%s' in bodo izgubljene ob naslednjem ponovnem zagonu.\n" "\n" "*Nobene* spremembe zapisane v sistemsko mapo od zdaj do naslednjega " "ponovnega zagona ne bodo trajne." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Nameščeni python je okvarjen. Popravite simbolno povezavo '/usr/bin/python'." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Paket 'debsig-verify' je nameščen" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Nadgradnje ni mogoče nadaljevati, če bo ta paket nameščen.\n" "Odstranite paket s programom Synaptic ali z ukazom 'apt-get remove debsig-" "verify' in ponovno začnite z nadgradnjo." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Pisanje v '%s' ni mogoče" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Ni mogoče pisati v sistemsko mapo '%s' na vašem sistemu. Nadgradnja se ne " "more nadaljevati.\n" "Prepričajte se, da je mogoče pisati v sistemsko mapo." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Ali naj bodo vključene zadnje posodobitve z interneta?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Sistem za nadgradnjo lahko samodejno prejme najnovejše posodobitve in jih " "namesti med nadgradnjo. Če imate delujočo omrežno povezavo, je to zelo " "priporočljivo storiti.\n" "\n" "Nadgradnja bo sicer trajala dlje, vendar pa bo vaš sistem popolnoma " "posodobljen. Korak je mogoče izpustiti, vendar je v tem primeru " "priporočljivo, da posodobitve namestite takoj po končani nadgradnji.\n" "V primeru izbire možnosti 'ne', dostop do omrežja ni zahtevan." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "onemogočeno ob nadgradnji na %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Ni mogoče najti veljavnega zrcalnega strežnika" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Med preiskovanjem podrobnosti o skladiščih ni bilo mogoče najti podatkov " "zrcalnih strežnikov za nadgradnjo. To se lahko zgodi, če je določen notranji " "zrcalni strežnik ali pa, če so podatki o takem strežniku zastareli.\n" "\n" "Ali naj se vsebina datoteke 'sources.list' prepiše? V kolikor izberete " "možnost 'Da', se bodo vnosi od '%s' do '%s' posodobili.\n" "\n" "V kolikor izberete možnost 'Ne', bo nadgradnja preklicana." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Ali naj bodo ustvarjeni privzeti viri?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "V datoteki 'sources.list' ni mogoče najti veljavnih vnosov za '%s'.\n" "\n" "Ali naj se dodajo privzeti vnosi za '%s'? Zavrnitev dodajanja vnosov " "prekliče nadgradnjo." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Neveljavni podatki skladišč" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Nadgradnja podatkov o skladišču je povzročila neveljavno datoteko, zato se " "je začelo opravilo poročanja hrošča." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Viri tretjih oseb so onemogočeni" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Določeni tretjeosebni vnosi v vaši datoteki sources.list so bili " "onemogočeni. Po nadgradnji jih lahko ponovno omogočite z orodjem 'Programski " "viri' ali z upravljalnikom paketov." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paketi v neskladnem stanju" msgstr[1] "Paket v neskladnem stanju" msgstr[2] "Paketa v neskladnem stanju" msgstr[3] "Paketi v neskladnem stanju" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Paketi \"%s\" so v neskladnem stanju in bi jih bilo treba ponovno namestiti, " "vendar pa jih ni mogoče najti v nobenem arhivu. Ponovno namestite pakete " "ročno, ali pa jih odstranite iz sistema." msgstr[1] "" "Paket \"%s\" je v neskladnem stanju in mora biti ponovno nameščen, vendar ga " "ni mogoče najti v nobenem arhivu. Ponovno namestite paket ročno, ali pa ga " "odstranite iz sistema." msgstr[2] "" "Paketa \"%s\" sta v neskladnem stanju in morata biti ponovno nameščena, " "vendar ju ni mogoče najti v nobenem arhivu. Ponovno namestite paketa ročno, " "ali pa ju odstranite iz sistema." msgstr[3] "" "Paketi \"%s\" so v neskladnem stanju in bi jih bilo treba ponovno namestiti, " "vendar pa jih ni mogoče najti v nobenem arhivu. Ponovno namestite pakete " "ročno, ali pa jih odstranite iz sistema." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Napaka med posodabljanjem" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Med posodabljanjem je prišlo do napake. Običajno so vzrok napake težave z " "omrežjem. Preverite omrežne nastavitve in poskusite znova." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Ni dovolj prostora na disku" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Nadgradnja je bila prekinjena. Nadgradnja zahteva %s prostega prostora na " "disku \"%s\". Sprostite vsaj %s dodatnega prostora na disku \"%s\". " "Izpraznite smeti in izbrišite začasne pakete z ukazom 'sudo apt-get clean' " "v terminalu." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Preračunavanje sprememb" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Ali želite začeti z nadgradnjo?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Nadgradnja je preklicana" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Nadgradnja se bo zdaj preklicala. Obnovljeno bo izvirno stanje sistema. " "Nadgradnjo lahko nadaljujete kasneje." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Paketov za nadgradnjo ni mogoče prejeti" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Nadgradnja je bila preklicana. Preverite svojo internetno povezavo ali " "namestitveni medij in poskusite znova. Vse do sedaj prejete datoteke so bile " "obdržane." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Napaka med uveljavitvijo" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Obnavljanje prvotnega stanja sistema" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Ni mogoče namestiti nadgrajenih različic" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Nadgradnja je bila prekinjena. Vaš sistem je lahko v neuporabnem stanju. " "Sedaj se bo zagnala obnovitev sistema (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Pošljite poročilo o napaki v brskalniku na spletnem naslovu " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug in " "k poročilu o napaki priložite datoteke v /var/log/dist-upgrade/.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Nadgranja je bila prekinjena. Preverite svojo omrežno povezavo ali " "namestitveni medij in poskusite znova. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Ali naj bodo zastareli paketi odstranjeni?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "Ob_drži" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "Od_strani" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Prišlo je do napake med čiščenjem paketov. Več podrobnosti je navedenih v " "sporočilu spodaj. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Zahtevani odvisni paketi niso nameščeni" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Zahtevan odvisni paket '%s' ni nameščen. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Preverjanje upravljalnika paketov" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Priprava nadgradnje ni bila uspešna" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Pripravljanje sistema na nadgradnjo je spodletelo, zato se začenja opravilo " "poročanja hrošča." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Pridobivanje predpogojev za nadgradnjo je spodletelo" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Sistem ni mogel dobiti zahtev za nadgradnjo. Nadgradnja se bo zdaj " "preklicala in obnovila izvirno stanje sistema.\n" "\n" "Poleg tega se začenja opravilo poročanja hrošča." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Posodabljanje podatkov o skladiščih" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Dodajanje cd-roma je spodletelo" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "DOdajanje nosilca CD je spodletelo." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Neveljani podatki o paketu" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Pridobivanje" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Nadgrajevanje" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Nadgradnja je končana" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Nadgradnja se je končala, vendar je med opravilom nadgradnje prišlo do napak." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Iskanje zastarelih programov" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Nadgradnja sistema je zaključena." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Delna nadgradnja je končana." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Ni mogoče najti opomb ob izdaji" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Strežnik je najbrž preobremenjen. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Opomb ob izdaji ni bilo mogoče prejeti" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Preverite svojo internetno povezavo." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "overi '%(file)s' z '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "razširjanje '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Orodja za nadgradnjo ni bilo mogoče zagnati" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "To je najverjetneje hrošč v orodju za nadgradnjo. Pošljite poročilo o napaki " "z uporabo ukaza 'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Podpis orodja za nadgradnjo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Orodje za nadgradnjo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Pridobivanje paketov je spodletelo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Pridobivanje paketov nadgradnje je spodletelo. Morda je napaka v omrežni " "povezavi. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Overitev je spodletela" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Overitev nadgradnje je spodletela. Morda je prišlo do napake omrežja ali " "strežniška. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Razširjanje paketov je spodletelo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Razširjanje paketov nadgradnje je spodletelo. Morda je prišlo do napake " "omrežja ali strežniška. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Overitev je spodletela" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Preverjanje nadgradnje je spodletelo. Morda je prišlo do ali strežniške " "omrežja ali strežnika. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Nadgradnje ni mogoče zagnati" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "To se običajno zgodi na sistemu, kjer je /tmp priklopljen z zastavico " "noexec. Ponovno priklopite nosilec brez zastavice noexec in ponovno zaženite " "nadgradnjo." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Sporočilo o napaki je '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Nadgradnja" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Opombe ob izdaji" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Prejemanje dodatnih paketov ..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Datoteka %s od %s s hitrostjo %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Datoteka %s od %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Vstavite '%s' v pogon '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Menjava nosilca podatkov" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms je v uporabi" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Sistem uporablja upravljalnik podatkovnih nosilcev 'evms' v /proc/mounts. " "Program 'evms' ni več podprt, zato ga je treba onemogočiti in nato ponovno " "zagnati nadgradnjo." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Vaša grafična strojna oprema poganjanja namiznega okolja 'unity' ne podpira " "popolnoma. Morda boste po nadgradnji imeli zelo počasno okolje. " "Priporočljivo je, da za zdaj obdržite različico LTS. Za več podrobnosti si " "oglejte https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Ali še " "vedno želite nadaljevati z nadgradnjo?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Vaša grafična strojna oprema morda v Ubuntuju 12.04 LTS ni polno podprta." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Podpora za vašo strojno opremo Intel v Ubuntuju 12.04 LTS je omejena in " "morda boste po nadgradnji imeli težave. Za več podrobnosti si oglejte " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx. Ali želite z " "nadgradnjo nadaljevati?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Nadgradnja bo verjetno vplivala na učinke namizja, zmogljivost pri igrah in " "drugih grafično zahtevnih programih." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Sistem trenutno uporablja grafični gonilnik NVIDIA 'nvidia'. V Ubuntu 10.04 " "LTS za to grafično kartico ni ustreznega gonilnika.\n" "\n" "Ali želite nadaljevati?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Sistem trenutno uporablja grafični gonilnik AMD 'fglrx'. V Ubuntu 10.04 LTS " "za to grafično kartico ni ustreznega gonilnika.\n" "\n" "Ali želite nadaljevati?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Brez CPE i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Vaših sistem uporablja CPE i586 ali CPE, ki nima razširitve 'cmov'. Vsi " "paketi so bili izgrajeni z optimizacijami, ki kot najmanjšo arhitekturo " "zahtevajo i686. S to strojno opremo vašega sistema ni mogoče nadgraditi na " "novo izdajo Ubuntuja." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Ni CPE ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sistem uporablja CPE ARM, ki je starejša od arhitekture ARMv6. Vsi paketi v " "distribuciji so bili izgrajeni z možnostmi, ki zahtevajo ARMv6 kot najnižjo " "različico arhitekture. Na trenutni strojni opremi ni mogoče nadgraditi " "vašega sistema na novo izdajo distribucije Ubuntu." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Init ni na voljo" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Sistem je videti kot navidezno okolje brez ozadnjega programa init (npr. " "Linux-VServer). Ubuntu 10.04 LTS v takšenem okolju ne more delovati, zato je " "treba najprej posodobiti navidezno okolje.\n" "\n" "Ali res želite nadaljevati?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Nadgradnja peskovnika z aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Uporabi navedeno pot za preiskovanje nosilcev s paketi za nadgradnjo" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Uporabite vmesnik. Trenutno so na voljo:\n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*ZASTARELO* ta možnost bo bila prezrta" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Izvedi le delno nadgradnjo (ne prepiše datoteke sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Onemogoči podporo zaslona GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Nastavi podatkovno mapo" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Pridobivanje je zaključeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Pridobivanje datoteke %li od %li s hitrostjo %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Približni preostali čas: %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Pridobivanje datoteke %li od %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Uveljavljanje sprememb" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "težave z odvisnostmi - paket ne bo nastavljen" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Paketa '%s' ni bilo mogoče namestiti" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Nadgradnja se bo nadaljevala vendar pa paket '%s' najverjetneje ne bo " "deloval. Pošljite poročilo o hrošču." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Ali naj se zamenja prilagojena nastavitvena datoteka\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "V kolikor se odločite za novejšo različico, bodo vse ročno nastavljene " "spremembe izgubljene." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Ukaza 'diff' ni mogoče najti" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Prišlo je do usodne napake" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prijavite napako kot hrošč (če tega še niste storili) in v svojemu poročilu " "vključite datoteki /var/log/dist-upgrade/main.log in /var/log/dist-" "upgrade/apt.log. Nagradnja je bila prekinjena.\n" "Izvorna datoteka sources.list je shranjena v " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Sočasno sta bili pritisnjeni tipki Ctrl in C" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "S tem bo prekinjeno posodabljanje in sistem bo ostal v nedelujočem stanju. " "Ali ste prepričani, da želite to narediti?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Da ne pride do izgube podatkov, zaprite vse odprte programe in dokumente." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Ni več podpore s strani podjetja Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Za podgradnjo (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Za odstranitev (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Ni več zahtevano (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Za namestitev (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Za nadgradnjo (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Pokaži razlike >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Skrij razlike" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Napaka" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Zapri" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Pokaži Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Skrij Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Podatki" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Podrobnosti" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Ni več podprto %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Odstrani %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Odstrani (samodejno nameščeno) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Namesti %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Nadgradi %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Zahtevan je ponovni zagon" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Za dokončanje nadgradnje je treba ponovno zagnati sistem." #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Ponovno zaženi sedaj" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Ali naj se prekine trenutna nadgradnja?\n" "\n" "S tem bo nadgradnja prekinjena in sistem bo ostal v nedelujočem stanju. " "Priporočamo vam, da nadgradnjo zaključite do konca." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Ali naj se nadgradnja prekliče?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dni" msgstr[1] "%li dan" msgstr[2] "%li dneva" msgstr[3] "%li dni" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li ur" msgstr[1] "%li ura" msgstr[2] "%li uri" msgstr[3] "%li ure" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minut" msgstr[1] "%li minuta" msgstr[2] "%li minuti" msgstr[3] "%li minute" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekund" msgstr[1] "%li sekunda" msgstr[2] "%li sekundi" msgstr[3] "%li sekunde" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Prejemanje paketov bo trajalo približno %s z 1 Mbit DSL povezavo in " "približno %s s 56k modemom." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Prejemanje bo pri trenutni hitrosti povezave trajalo približno %s. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Pripravljanje na nadgradnjo" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Pridobivanje novih programskih kanalov" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Prejemanje novih paketov" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Nameščanje novih paketov" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Čiščenje zastarelih paketov" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Podjetje Canonical %(amount)d nameščenih paketov ne podpira več. Podporo vam " "še vedno nudi odprtokodna skupnost." msgstr[1] "" "Podjetje Canonical %(amount)d nameščenega paketa ne podpira več. Podporo vam " "še vedno nudi odprtokodna skupnost." msgstr[2] "" "Podjetje Canonical %(amount)d nameščenih paketov ne podpira več. Podporo vam " "še vedno nudi odprtokodna skupnost." msgstr[3] "" "Podjetje Canonical %(amount)d nameščenih paketov ne podpira več. Podporo vam " "še vedno nudi odprtokodna skupnost." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Odstranjenih bo %d paketov." msgstr[1] "Odstranjen bo %d paket." msgstr[2] "Odstranjena bosta %d paketa." msgstr[3] "Odstranjeni bodo %d paketi." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Nameščenih bo %d novih paketov." msgstr[1] "Nameščen bo %d nov paket." msgstr[2] "Nameščena bosta %d nova paketa." msgstr[3] "Nameščeni bodo %d novi paketi." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Nadgrajenih bo %d paketov." msgstr[1] "Nadgrajen bo %d paket." msgstr[2] "Nadgrajena bosta %d paketa." msgstr[3] "Nadgrajeni bodo %d paketi." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Skupaj bo treba prejeti %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Namestitev nadgradnje lahko traja več ur. Ko se prejem konča, opravila ni " "več mogoče preklicati." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Pridobivanje in nameščanje nadgradnje lahko traja več ur. Ko se bo prejem " "končal, opravila ne bo več mogoče preklicati." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Odstranjevanje paketov lahko traja več ur. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Programska oprema na tem računalniku je posodobljena." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Za vaš sistem nadgradnja ni na voljo. Postopek bo preklican." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Zahtevan je ponoven zagon" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Nadgradnja je končana. Zahtevan je ponoven zagon sistema. Ali želite sistem " "ponovno zagnati takoj?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Prijavite napako kot hrošča in v poročilo vključite datoteki /var/log/dist-" "upgrade/main.log in /var/log/dist-upgrade/apt.log. Nadgradnja je bila " "prekinjena.\n" "Izvorna datoteka sources.list je shranjena v " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Prekinjanje" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Znižanje različice:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Za nadaljevanje pritisnite [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Nadaljuj [d/N] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Podrobnosti [p]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "d" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "p" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Ni več podprto: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Odstranitev: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Namestitev: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Nadgradnja: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Nadaljuj [D/n] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Za končanje nadgradnje je treba sistem ponovno zagnati.\n" "Če izberete 'd', se bo sistem takoj znova zagnal." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "Prejemanje %(current)li. od skupno %(total)li-h datotek s hitrostjo " "%(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Prejemanje %(current)li. od skupno %(total)li datotek." #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Pokaži potek nadgradnje za posamezne datoteke" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Prekliči nadgradnjo" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Nadaljuj z nadgradnjo" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Ali naj se nadgradnja prekliče?\n" "\n" "S tem bo posodabljanje prekinjeno in sistem bo ostal v nedelujočem stanju. " "Priporočeno je, da se nadgradnja zaključi do konca." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Začni z nadgradnjo" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Zamenjaj" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Razlike med datotekami" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Pošlji poročilo o napaki" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Nadaljuj" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Ali naj se nadgradnja začne?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Za dokončanje nadgradnje ponovno zaženite sistem\n" "\n" "Pred nadaljevanjem shranite vse odprte dokumente." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Nadgradnja distribucije" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Nastavljanje novih programskih kanalov" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Ponovno zaganjanje sistema" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Nadgradi" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Na voljo je nova različica sistema Ubuntu. Ali želite opraviti nadgradnjo " "sistema?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Ne izvedi nadgradnje" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Vprašaj me kasneje" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Da, nadgradi takoj" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Zavrnili ste nadgradnjo na novo različico Ubuntuja." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Pozneje lahko sistem nadgradite tako, da odprete Posodobilnik programov in " "kliknete na \"Nadgradi\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Izvedi nadgradnjo izdaje" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Za nadgradnjo sistema Ubuntu je zahtevana overitev." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Izvedi delno nadgradnjo" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Za delno nadgradnjo sistema Ubuntu je zahtevana overitev." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Pokaži različico in končaj" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Mapa, ki vsebuje podatkovne datoteke" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Zaženi navedeno začelje" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Izvajanje delne nadgradnje" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Prejemanje orodja za nadgradnjo izdaje" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Preveri, ali je mogoče sistem nadgraditi na najnovejšo razvojno različico" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Poskusite nadgraditi na najnovejšo različico s pomočjo orodja za " "nadgrajevanje iz $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Zagon v posebnem načinu nadgradnje.\n" "Trenutno sta podprta načina 'desktop' za namizne sisteme in 'server' za " "strežniške sisteme." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Preizkusna nadgradnja v načinu peskovnika aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Preveri le, ali je na voljo nova različica distribucije in izpiši poročilo s " "pomočjo izhodne kode" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Preverjanje za novo izdajo Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Vaša izdaja Ubuntu ni več podprta." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Za podrobnosti o posodobitvah obiščite:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Ni novih izdaj" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Nadgradnja izdaje trenutno ni mogoča" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Nadgradnja izdaje trenutno ne more biti opravljena. Poskusite kasneje. " "Strežnik je sporočil: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Na voljo je nova izdaja '%s'." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Za nadgradnjo na novo izdajo zaženite ukaz 'do-release-upgrade'." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Na voljo je nadgradnja na Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Zavrnili ste nadgradnjo na Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Dodaj izhod razhroščevanja" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Za izvedbo delne nadgradnje je zahtevana overitev" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Za izvedbo nadgradnje izdaje je zahtevana overitev" ubuntu-release-upgrader-0.220.10/po/ceb.po0000644000000000000000000013017712431225715015113 0ustar # Cebuano translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: James Banogon \n" "Language-Team: Cebuano \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ceb\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/mr.po0000644000000000000000000016321612431225715015000 0ustar # Marathi translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Marathi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: mr\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s साठी सर्व्हर" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "मुख्य सर्व्हर" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "कस्टम सर्व्हर्स" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list नोंदींची गणना करू शकत नाही" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "पॅकेज फाईल्स मिळाल्या नाहीत, बहुतेक हि उबुंटूची CD नाही किंवा architecture " "वेगळे आहे." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CD घेऊ शकले नाही." #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD घेताना चूक झाली आहे, अपग्रेड थांबवला जात आहे. जर ही उबुंटूची CD आहे तर हा " "बग म्हणून आम्हाला कळवा. \n" "\n" "चुकीबाबतचा संदेश: \n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "खराब स्थितीत असलेले पॅकेज काढून टाका" msgstr[1] "खराब स्थितीत असलेले पॅकेजेस काढून टाका" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "पॅकेज '%s' हे अव्यवस्थित स्थितीमध्ये आहे आणि ते परत प्रस्थापित करावे लागेल, " "पण त्याच्यासाठीचे archive मिळत नाही आहे. पुढेजाण्यासाठी हे पॅकेज काढून " "टाकावे का?" msgstr[1] "" "पॅकेजेस '%s' ही अव्यवस्थित स्थितीमध्ये आहेत आणि ती परत प्रस्थापित करावी " "लागतील, पण त्यासाठीचे archive मिळत नाही आहे. पुढेजाण्यासाठी ही पॅकेजस काढून " "टाकावीत का?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "कदाचित सर्व्हर वर अतिरिक्त भार असावा" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "अपुर्ण पॅकेजेस" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "तुमच्या सिस्टिमवर बरीच अपुर्ण/तुटलेली पॅकेजेस आहेत, जी या सॉफ्टवेअर सह " "दुरुस्त होवू शकणार नाहीत. पुढे चालू ठेवण्याअगोदर प्रथमतः synaptic किंवा apt-" "get द्वारे ती अपुर्ण/तुटलेली पॅकेजेस दुरुस्त करा." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "अपग्रेड करीत असताना एक अडचण येत आहे:\n" "%s\n" "\n" "ही अडचण बहुदा खालील कारणांमुळे येत असावी:\n" " * तुम्ही उबुन्टूच्या प्री-रीलिज आवृत्तीसाठी अपग्रेड करत असाल\n" " * उबुन्टूची सध्याची प्री-रीलिज आवृत्ती तुम्ही तुमच्या संगणकावर चालवत असाल\n" " * उबुन्टूकडून न पुरविल्या गेलेल्या अनधिकृत सॉफ्टवेअर पॅकेजेस मुळे\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "ही तात्पुरती समस्या आहे, काही क्षणांनंतर पुन्हा प्रयत्न करा." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "अपग्रेडची गणना करू शकले नाही" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "काही पॅकेजेसचे अधिप्रमाणन करताना त्रुटी येत आहेत" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "काही पॅकेजेसचे अधिप्रमाणन करणे शक्य नव्हते. बहुदा हे तात्पुरत्या नेटवर्क " "समस्येमुळे झाले असावे. काही वेळाने पुन्हा प्रयत्न करून पहा. काही अधिप्रमाणित " "न केलेल्या पॅकेजेसची यादी पाहण्यासाठी खाली पहा." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "'%s' हे पॅकेज काढून टाकण्यासाठी चिन्हांकित केले आहे पण ते काढून टाकलेल्या " "ब्लॅकलिस्ट मध्ये आहे." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "'%s' हे अत्यावश्यक पॅकेज काढून टाकण्यासाठी चिन्हांकित केलेले आहे." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "ब्लॅकलिस्ट केलेली '%s' आवृत्ती स्थापित करण्याचा प्रयत्न करीत आहे" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' हे स्थापित करू शकत नाही" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "meta-package ओळखू शकत नाही" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "तुमच्या सिस्टीम वर ubuntu-desktop, kubuntu-desktop, xubuntu-desktop किंवा " "edubuntu-desktop यांपैकी कोणतेच पॅकेज नाही आणि तुम्ही सध्या उबुन्टूची कोणती " "आवृत्ती तुमच्या संगणकावर सध्या चालवत आहात याबद्दल माहिती मिळवणे अशक्य होते.\n" " कृपया पुढे जाण्याअगोदर वरीलपैकी कोणतेही एखादे पॅकेज synaptic किंवा apt-get " "द्वारे स्थापित करा." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "कॅशे (cache) वाचत आहे" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "एक्स्क्ल्युजिव्ह लॉक मिळविण्यात असमर्थ" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "कदाचित तुमचे दुसरे एखादे पॅकेज मॅनेजमेंट ऍप्लिकेशन (उदा. apt-get किंवा " "aptitude) चालू आहे. कृपया ते ऍप्लिकेशन प्रथम बंद करा. (कारण apt-get किंवा " "aptitude द्वारे एकाच वेळी एकापेक्षा अधिक पॅकेजेस स्थापित करता येत नाहीत.)" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "रीमोट कनेक्शन वरून अपग्रेड करण्यास समर्थन नाही" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "तुम्ही रीमोट ssh कनेक्शन वरून एका फ्रन्टएन्ड सहाय्यकासह अपग्रेड चालवत आहात " "ज्याचे तो फ्रन्टएन्ड सहाय्यक समर्थन करीत नाही. कृपया टेक्स्ट मोड मधून 'do-" "release-upgrade' या कमांडद्वारे अपग्रेड करून पहा.\n" "\n" "अपग्रेड आता थांबविले जाईल. कृपया ssh च्या शिवाय प्रयत्न करून पहा." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH च्या अंतर्गत चालू ठेवायचे का?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "असे दिसतेय की हे सत्र ssh च्या अंतर्गत चालू आहे. सध्यातरी ssh वरून अपग्रेड " "चालवणे धोकादायक असू शकते कारण जर ही क्रिया अयशस्वी झाली तर पुनःस्थितीत येणे " "अतिशय अवघड असेल.\n" "\n" "जर तुम्ही चालू ठेवले, तर '%s' या पोर्टवर एक शिल्ल्कचे ssh daemon सुरू होईल.\n" "तुम्ही पुढे चालू ठेवू इच्छिता का?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "शिल्लकचे sshd सुरू करीत आहे" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "जर काही कारणास्तव ही क्रिया अयशस्वी झाली तर सुलभ रिकव्हरी करण्यासाठी '%s' या " "पोर्टवर एक शिल्लकचे sshd चालू होईल. सध्या चालू असलेल्या ssh सोबत जरी काही " "अनुचित प्रकार घडलाच, तरीही तुम्ही एका शिल्लकच्या sshd ला कनेक्ट करू शकता.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "अपग्रेड करू शकत नाही" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "या साधनासह '%s' पासून '%s' कडे अपग्रेड करण्यास समर्थन नाही." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandbox चे सेटअप अयशस्वी झाले" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "sandbox वातावरणनिर्मिती तयार करणे शक्य नव्हते." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox मोड" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "तुमची python ची स्थापना बिघडली आहे किंवा दूषित झाली आहे. कृपया " "'/usr/bin/python' symlink दुरुस्त करा." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "'debsig-verify' पॅकेज स्थापित केले आहे" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "त्या स्थापित केलेल्या पॅकेजसह अपग्रेड पुढे चालू शकत नाही.\n" "प्रथमतः ते पॅकेज synaptic द्वारे किंवा 'apt-get remove debsig-verify' द्वारे " "काढून टाका आणि पुन्हा एकदा अपग्रेड चालू करा." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "इंटरनेटवरून सध्या उपलब्ध असलेले ताजे अद्ययावत जोडायचे का?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "जर तुमच्याकडे नेटवर्क कनेक्शन असेल तर अपग्रेड चालू असताना अपग्रेड प्रणाली " "इंटरनेटवरून उपलब्ध ताजे अद्ययावत स्वयंचलितपणे आपोआप डाउनलोड करेल.\n" "\n" "अपग्रेड करण्यास बराच कालावधी लागू शकतो, पण जेव्हा अपग्रेड पूर्ण होईल तेव्हा " "तुमची सिस्टिम आजपर्यंत पूर्णपणे अद्ययावत स्थितीत असेल. तुम्ही हे निवडणे " "टाळू देखील शकता, पण अपग्रेड झाल्यानंतर तुम्हाला ताजे अद्ययावत स्थापित करावेच " "लागतील.\n" "जर तुम्ही येथे 'नाही' असे उत्तर दिले, तर अपग्रेड प्रणाली तुमच्या नेटवर्कचा " "मुळीच उपयोग करणार नाही." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "%s साठी अपग्रेड अकार्यान्वीत केलेले आहे" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "योग्य प्रतिमा सापडली नाही" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "पैकेज अपुर्णावस्थेत आहे." msgstr[1] "पैकेजेस अपुर्णावस्थेत आहेत." #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "पैकेज अपुर्णावस्थेत आहे आणि पुन:प्रस्थापित करावे लागेल," msgstr[1] "पैकेजेस अपुर्णावस्थेत आहेत आणि पुन:प्रस्थापित करावी लागतील," #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "नवीकरण करताना त्रुटि." #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "डिस्कवर पुरेशी जागा उपलब्ध नाही" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "अपग्रेड सुरु करू शकत नाही." #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "अपग्रेड" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "फरक दाखवा. >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< फरक लपवा" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "माहिती" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "अपग्रेड थांबवायचा का?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li दिवस" msgstr[1] "%li दिवस" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li तास" msgstr[1] "%liतास" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li मिनिट" msgstr[1] "%li मिनिटे" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li सेकंद" msgstr[1] "%li सेकंद" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "तुमच्या प्रणालीसाठी अपग्रेडस उपलब्ध नाहीत. हा अपग्रेड थांबवला जाईल." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "हो" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "नाही" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "काढून टाका: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "अपग्रेड: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "पुढे चला[Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "प्रत्येक फाईलची प्रगती दाखवा." #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "अपग्रेड सुरु करा" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "फाईल्समधील फरक" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "पुढे चला" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "अपग्रेड सुरु करायचा का?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "अपग्रेड पूर्ण करण्यासाठी प्रणाली बंद करून सुरु करा.\n" "\n" "पुढे जाण्याआधी तुमचे काम सेव्ह करा." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "अपग्रेड" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "उबुंटूचे नवीन वर्जन उपलब्ध आहे. अपग्रेड करायचे का?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "अपग्रेड करू नका." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "नंतर विचारा." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "हो, आता अपग्रेड करा." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "तुम्ही नवीन उबुंटूला अपग्रेड करायला नकार दिला आहे." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "फक्त वर्जन दाखवा." #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "एकही नवीन रिलीज मिळाली नाही." #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "नवीन रिलीज %s उपलब्ध आहे." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "त्याला अपग्रेड करण्यासाठी 'do-release-upgrade' चालवा." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "उबुंटू %s(वर्जन) अपग्रेड उपलब्ध" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "तुम्ही उबुंटूला अपग्रेड करण्यास नकार करत आहात. %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/et.po0000644000000000000000000016573512431225715015002 0ustar # Estonian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Märt Põder \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: et\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server %s jaoks" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Põhiserver" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Kohandatud serverid" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Sources.list kirjet pole võimalik tõlgendada" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Ühtegi pakifaili ei leitud. Võib-olla ei ole see Ubuntu plaat või on valele " "protsessoriarhitektuurile?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CD lisamine nurjus" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD lisamisel tekkis viga, uuendamine katkeb. Palun teata sellest kui veast, " "kui tegemist on õige Ubuntu CDga.\n" "\n" "Veateade oli:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Eemalda halvas seisus tarkvarapakett" msgstr[1] "Eemalda halvas seisus tarkvarapaketid" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Paketi '%s' paigaldus sisaldab vasturääkivusi ning see tuleks uuesti " "paigaldada, kuid selle arhiivi ei leitud. Kas eemaldada see pakett praegu ja " "jätkata?" msgstr[1] "" "Pakettide '%s' paigaldus sisaldab vasturääkivusi ning need tuleks uuesti " "paigaldada, kuid nende arhiive ei leitud. Kas eemaldada need paketid praegu " "ja jätkata?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Server võib olla ülekoormatud" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Katkised paketid" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sinu süsteem sisaldab katkiseid pakette, mida pole võimalik antud tarkvaraga " "parandada. Palun paranda need synaptic'u või apt-get'i abil enne jätkamist." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Uuendamise rehkendamisel esines lahendamatu viga:\n" "%s\n" "\n" " Selle võis põhjustada:\n" " * uuendamine Ubuntu eelväljalaske versioonile\n" " * Ubuntu eelväljalaske versiooni kasutamine\n" " * mitteametlike pakkide kasutamine, mida ei jaga Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "See on üsna tõenäoliselt mööduv probleem, proovi hiljem uuesti." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Uuenduse arvutamine polnud võimalik" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Viga mõnede pakettide usaldusväärsuse kinnitamisel" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Mõnede pakettide usaldusväärsuse kinnitamine polnud võimalik. See võib olla " "mööduv võrguprobleem, nii et võid hiljem uuesti proovida. All järgneb " "kontrollimata pakettide nimekiri." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Eemaldamiseks on märgistatud pakett '%s', mis on aga eemaldamise mustas " "nimekirjas." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Oluline pakett '%s' on märgistatud eemaldamiseks." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Halvas nimekirjas oleva versiooni '%s' paigaldamise katse" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Paketi '%s' paigaldamine pole võimalik" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Meta-paketi arvamine pole võimalik" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Sinu süsteemis pole paketti 'ubuntu-desktop', 'kubuntu-desktop', 'xubuntu-" "desktop' või 'edubuntu-desktop' ja polnud võimalik tuvastada, millist Ubuntu " "versiooni sa kasutad.\n" "Enne jätkamist paigalda synaptic'u või apt-get'i abil mõni ülalnimetatud " "pakettidest." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Vahemälu lugemine" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Lukustamine ebaõnnestus" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Tavaliselt tähendab see, et teine paketihaldur (nt apt-get või aptitude) " "töötab. Palun sulge esmalt see teine rakendus." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Kaugühenduse kaudu uuendamine ei ole toetatud." #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Te teostate uuendust kaug-ssh-ühenduse kaudu kasutajaliidesega, mis ei toeta " "seda. Palun proovige tekstirežiimis uuendamist käsuga 'do-release-upgrade'.\n" "\n" "Uuendamine katkestatakse. Palun proovige uuesti ilma ssh ühenduseta." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Kas jätkata SSH all?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "See seanss paistab töötavat üle ssh. Ssh üle ei ole soovitav uuendusi " "teostada, sest ebaõnnestumise korral on taastamine keerulisem.\n" "\n" "Kui jätkate, siis käivitatakse veel üks ssh daemon pordis '%s'.\n" "Kas soovite jätkata?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Täiendava sshd käivitamine" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Et teha nurjumise korral taastamine lihtsamaks, käivitatakse lisaks veel üks " "sshd pordil '%s'. Kui miski peaks viltu minema esimese ssh-ga, saad ikka " "ühenduda teise külge.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Kui kasutad tulemüüri, pead selle pordi ajutiselt lahti tegema. Kuna see " "võib olla ohtlik, et tehta seda automaatselt. Pordi saad avada näiteks " "käsuga '%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Uuendamine pole võimalik" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "See tööriist ei toeta uuendamist '%s'-lt '%s'-le." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Liivakasti ülesseadmine nurjus" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Liivakastikeskkonna loomine ei olnud võimalik." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Liivakastirežiim" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Sinu python'i paigaldus on vigane. Palun paranda nimeviide '/usr/bin/python'." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Tarkvarapakett 'debsig-verify' on paigaldatud" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Uuendamine ei saa jätkuda, kui see pakett on paigaldatud.\n" "Palun eemalda see kõigepealt synaptikuga või käsuga 'apt-get remove debsig-" "verify' ning käivita uuendus uuesti." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Kas lisada värskeimad uuendused internetist?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Uuenduste süsteem võib internetist automaatselt alla laadida uuendusi ning " "uuendamise käigus need paigaldada. Kui sul on internetiühendus, on see on " "tungivalt soovitatud.\n" "\n" "Selliseks uuendamiseks kulub kauem aega, aga kui see lõpeb, on su süsteem " "täiesti ajakohane. Sa võid seda ka mitte teha, kuid siis peaksid esimesel " "võimalusel värskeimad uuendused ikkagi paigaldama.\n" "Kui vastad siin eitavalt, ei kasutata internetti üldse." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "keelatud %s-le uuendamisel" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Ühtegi sobivat peeglit ei leitud" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Tarkvaraallika skaneerimisel ei leitud uuenduse peeglit. See võib juhtuda, " "kui kasutad sisepeegelit või kui peeglis olev teave on aegunud.\n" "\n" "Kas tahad oma 'sources.list' faili ikka üle kirjutada? Kui valid siin 'Jah', " "muudetakse kõik '%s' kirjed '%s'-ks.\n" "Kui valid 'Ei', katkestatakse uuendus." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Kas genereerida vaikimisi allikad?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Pärast 'sources.list' skaneerimist ei leitud sobivat kirjet '%s' jaoks.\n" "\n" "Kas vaikimisi kirjed '%s' jaoks tuleks lisada? Kui valid 'Ei', katkestatakse " "uuendamine." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Varamu informatsioon vigane" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Kolmandate osapoolte allikad keelatud" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Mõned kolmandate osapoolte kirjed 'sources.list'-is keelati. Pärast uuendust " "võid need jälle lubada, kasutades tööriista 'software-properties' või oma " "paketihaldurit." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Vasturääkivustega pakett" msgstr[1] "Vasturääkivustega paketid" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Paketi '%s' olek sisaldab vasturääkivusi ning see tuleb uuesti paigaldada, " "kuid arhiivi ei leitud. Palun paigalda see käsitsi uuesti või eemalda " "süsteemist." msgstr[1] "" "Pakettide '%s' olekud sisaldavad vasturääkivusi ning need tuleb uuesti " "paigaldada, kuid arhiive ei leitud. Palun paigalda need käsitsi uuesti või " "eemalda süsteemist." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Uuendamise ajal ilmnes viga." #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Uuendamisel esines viga. Tavaliselt on selleks võrguprobleem, kontrolli " "võrguühendust ja proovi uuesti." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Kõvakettal pole piisavalt vaba ruumi" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Uuendamine katkes. Uuendamiseks on vaja kokku %s vaba ruumi kettal '%s'. " "Vabasta veel vähemalt %s ruumi kettal '%s'. Tühjenda prügikast ja eemalda " "ajutised paketid eelmistest paigaldustest käsuga 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Muudatuste rehkendamine" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Kas alustada uuendamist?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Uuendamine katkestatud" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Uuendamine katkestatakse nüüd ning esialgne süsteemi olukord taastatakse. Sa " "võid uuendada mõni teine kord." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Uuenduste allalaadimine polnud võimalik" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Uuendamine katkestati. Palun, veendu oma netiühenduse või paigaldusmeedia " "töökorras ja proovi uuesti! Kõik siiani alla laaditud failid säilitati." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Toimingu ajal esines viga" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Süsteemi algse oleku taastamine" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Uuenduste paigaldamine polnud võimalik" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Uuendamine katkes. Sinu arvuti võib olla praegu kasutamatu. Praegu käivitati " "taastamisoperatsioon (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Uuendamine katkes. Kontrolli internetiühendust või paigaldusmeediumi ning " "proovi uuesti. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Kas eemaldada iganenud paketid?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Hoia alles" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Eemalda" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "Puhastamise käigus esines viga. Täpsem info alumises teates. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Vajalik sõltuvus pole paigaldatud" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Vajalik sõltuvus '%s' pole paigaldatud. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Paketihalduri kontrollimine" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Uuendamise ettevalmistamine ebaõnnestus" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Uuendamise eelduste hankimine ebaõnnestus" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Varamuinfo uuendamine" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Cdromi lisamine nurjus" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Kahjuks cdromi lisamine nurjus." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Vigane paketiinfo" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Allalaadimine" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Uuendamine" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Uuendamine valmis" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Uuendus on lõpetatud, kuid uuendamise ajal tekkisid vead." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Aegunud tarkvara otsimine" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Süsteemi uuendamine on valmis." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Osaline uuendamine lõpetati." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Väljalaskemärkmeid ei leitud" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Server võib olla ülekoormatud. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Väljalaskemärkmete allalaadimine polnud võimalik" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Palun kontrolli oma võrguühendust." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Uuendamistööriista käivitamine polnud võimalik" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Uuendustööriista signatuur" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Uuendustööriist" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Allalaadimine ebaõnnestus" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Uuenduse allalaadimine ebaõnnestus. See võib olla võrguprobleem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Autentimine ebaõnnestus" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Uuenduse autentimine ebaõnnestus. See võib olla võrgu- või serveriprobleem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Lahtipakkimine ebaõnnestus" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Uuenduse lahtipakkimine ebaõnnestus. Võrgu või serveriga võib probleeme " "olla. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Õigsuse kontroll nurjus" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Uuenduse ehtsuse kontroll ebaõnnestus. See võib olla võrgu- või " "serveriprobleem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Uuendamist pole võimalik käivitada" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Tavaliselt põhjustab seda olukord, kui /tmp on haagitud lipuga noexec. Palun " "uuesti haakida ilma noexec liputa ja taaskäivitada uuendus." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Veateade on '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Uuendamine" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Väljalaskemärkmed" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Täiendavate paketifailide allalaadimine..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "%s. fail %s-st kiirusel %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "%s. fail %s-st" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Palun sisesta '%s' seadmesse '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Meedia muutmine" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms on kasutusel" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Sinu süsteem kasutab 'evms' köitehaldurit kohas /proc/mounts. 'Evms' " "tarkvara pole enam toetatud, lülita see välja ja käivita uuendamine uuesti." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Uuendamine võib eemaldada töölauaefektid ja vähendada mängude ning teiste " "graafikamahukate rakenduste jõudlust." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "See arvuti kasutab praegu NVIDIA graafikadraiverit nimega 'nvidia'. Kahjuks " "ei ole sellest draiverist versiooni, mis töötaks Ubuntu 10.04 LTS-is.\n" "\n" "Kas tahad sellest hoolimata jätkata?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "See arvuti kasutab praegu AMD graafikadraiverit nimega 'fglrx'. Kahjuks ei " "ole sellest draiverist versiooni, mis töötaks Ubuntu 10.04 LTS-is.\n" "\n" "Kas tahad sellest hoolimata jätkata?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Pole i686 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sinu süsteem kasutab i586 arhitektuuriga protsessorit (CPU) või CPU ei oma " "\"cmov\" laiendust. Kõik paketid on koostatud optimeerituna minimaalselt " "i686 arhitektuurile. Sellise riistvaraga ei ole võimalik süsteemi paigaldada " "uut Ubuntu väljalaset." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Ei leitud ARMv6 protsessorit" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Su süsteem kasutab ARM protsessorit, mis on vanem kui ARMv6 arhitektuur. " "Kõik paketid karmic'us koostati optimeeritult vähemalt ARMv6 arhitektuurile. " "Selle raudvaraga ei ole võimalik Ubuntut uuendada." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Init pole saadaval" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Tundub, et sinu süsteem töötab virtuaalkeskkonnas (nt Linux-VServer), millel " "puudub init-deemon. Ubuntu 10.04 LTS ei tööta sellises keskkonnas, vajalik " "on eelnev virtuaalmasina seadistuse muutmine.\n" "\n" "Kas tahad sellest hoolimata jätkata?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Liivakastiuuendus kasutades aufs-i" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Antud teelt otsitakse CD'd uuendatavate pakkidega" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Liidese kasutamine. Hetkel saadaval: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*VANANENUD* seda valikut ignoreeritakse" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Soorita ainult osaline uuendamine (faili sources.list ei kirjutata üle)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Keela GNU ekraani tugi" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Määra andmekaust (datadir)" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Allalaadimine on valmis" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "%li. faili %li-st allalaadimine kiirusel %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Umbes %s jäänud" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "%li. faili allalaadimine %li-st" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Muudatuste rakendamine" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "sõltuvusprobleemid - jäetakse seadistamata" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Paketi '%s' paigaldamine pole võimalik" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Uuendamine jätkub, kuid pakett '%s' ei pruugi olla töökorras. Palun " "raporteeri sellest veast." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Kas asendada muudetud seadistusfail\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Kui asendad selle seadistusfaili uuema versiooniga, kaotad kõik sellesse " "tehtud muudatused." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Käsku 'diff' ei leitud" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Esines saatuslik viga" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Palun raporteeri sellest kui veast (kui sa seda juba teinud pole) ja pane " "raportiga kaasa /var/log/dist-upgrade/main.log ja /var/log/dist-" "upgrade/apt.log failid. Uuendamine katkes.\n" "Sinu esialgne sources.list fail salvestati nimega " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Vajutati Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "See katkestab tegevuse ja võib jätta süsteemi katkisesse olekusse. Kas oled " "kindel, et sa tahad seda teha?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Andmekao vältimiseks sulge kõik avatud rakendused ja dokumendid." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Pole enam Canonicali poolt toetatud (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Paigaldatakse vanem (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Eemaldatakse (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Pole enam vaja (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Paigaldatakse (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Uuendatakse (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Erinevuse näitamine >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Erinevuse peitmine" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Tõrge" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Sulge" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Terminali näitamine >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Terminali peitmine" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Teave" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Üksikasjad" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Pole enam toetatud %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s eemaldamine" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Eemaldada (automaatselt paigaldatud) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s paigaldus" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s uuendamine" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Vajalik taaskäivitus" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Uuendamise lõpuleviimiseks palun taaskäivita süsteem" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Taaskäivita kohe" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Kas katkestada pooleliolev uuendus?\n" "\n" "Uuenduse katkestamisega võib süsteem jääda mittekasutatavaks. Tungivalt " "soovitatav on uuendamist jätkata." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Kas katkestada uuendamine?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li päev" msgstr[1] "%li päeva" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li tund" msgstr[1] "%li tundi" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minut" msgstr[1] "%li minutit" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekund" msgstr[1] "%li sekundit" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "See allalaadimine võtab umbes %s 1Mbit DSL ühendusega ja umbes %s 56k " "modemiga." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Allalaadimine võtab sinu ühendusega aega umbes %s. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Uuenduse ettevalmistamine" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Uute tarkvarakanalite hankimine" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Uute pakettide hankimine" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Uuenduste paigaldamine" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Puhastamine" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d paigaldatud pakett pole enam Canonicali poolt toetatud. Seda " "toetab siiski kogukond." msgstr[1] "" "%(amount)d paigaldatud paketti pole enam Canonicali poolt toetatud. Seda " "toetab siiski kogukond." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakett eemaldatakse." msgstr[1] "%d paketti eemaldatakse." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Paigaldatakse %d uus pakett." msgstr[1] "Paigaldatakse %d uut paketti." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakett uuendatakse." msgstr[1] "%d paketti uuendatakse." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Alla tuleb laadida kokku %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Sinu süsteemile pole ühtegi uuendust saadaval. Uuendamisest loobutakse." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Vajalik taaskäivitus" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Uuendamine on valmis ja vaja on süsteem taaskäivitada. Kas teha seda kohe?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Palun raporteeri sellest kui veast ja pane raportiga kaasa /var/log/dist-" "upgrade/main.log ja /var/log/dist-upgrade/apt.log failid. Uuendamine " "katkes.\n" "Sinu esialgne sources.list fail salvestati nimega " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Katkestamine" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Degradeeritud:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Jätkamiseks vajuta [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Kas jätkata? [y/N] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Üksikasjad [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Pole enam toetatud: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Eemaldatakse: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Paigaldatakse: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Uuendatakse: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Kas jätkata? [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Uuenduse lõpetamiseks on vajalik taaskäivitus.\n" "Kui sa valid 'y', siis süsteem taaskäivitub." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "%(current)li. faili allalaadimine %(total)li-st kiirusel %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "%(current)li. faili allalaadimine %(total)li-st" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Failide edenemise näitamine eraldi" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Katkesta uuendamine" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Jätka uuendamist" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Kas katkestada käimasolev uuendamine?\n" "\n" "Kui uuendamise katkestad, võib süsteem olla kasutuskõlbmatu. On tungivalt " "soovitatav uuendamist jätkata." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Alusta uuendamist" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Asenda" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Erinevus failide vahel" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Teata veast" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Jätka" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Kas alustada uuendamist?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Uuenduse lõpetamiseks taaskäivita arvuti\n" "\n" "Enne jätkamist palun salvesta pooleliolev töö." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Distributsiooniuuendus" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Uute tarkvarakanalite seadistamine" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Arvuti taaskäivitamine" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Uuenda" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Ubuntu uus versioon on saadaval. Kas tahad uuendada?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Ära uuenda" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Küsi hiljem" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Jah, uuenda kohe" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Sa keeldusid uuele Ubuntu versioonile uuendamisest" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Ubuntu uuendamiseks peate ennast autentima." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Osalise uuenduse teostamiseks peate ennast autentima." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Näitab versiooni ja väljub" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Kataloog, mis sisaldab andmefaile" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Käivita määratud liides" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Osalise uuendamise käivitamine" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Väljalaske uuendamise tööriista allalaadimine" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Kontrollib, kas viimasele arendusväljalaskele uuendamine on võimalik" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Proovib uuendada viimasele versioonile kasutades $distro-proposed uuendajat" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Käivitub erilises uuendusrežiimis.\n" "Praegu on toetatud 'desktop' tavalistele töölauaarvutitele ja 'server' " "serversisüsteemide jaoks." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testuuendus aufs-liivakastis" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Kontrollitakse ainult, kas uus distributsiooniväljalase on saadaval ja " "teatatakse sellest väljumiskoodi kaudu" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Sinu Ubuntu väljalaset ei toetata enam." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Versiooniuuenduse info saamiseks külastage:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Uut väljalaset ei leitud" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Väljalaskele uuendamine ei ole praegu võimalik" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Väljalaskele uuendamine ei ole praegu võimalik, proovi hiljem uuesti. Server " "teatas: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Uus väljalase '%s' on saadaval." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Sellele uuendamiseks käivita 'do-release-upgrade'." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s uuendus saadaval" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Sa keeldusid Ubuntu uuendamisest versioonile %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/en_AU.po0000644000000000000000000017443712431225715015360 0ustar # English (Australia) translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # David Symons , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-06-17 23:45+0000\n" "Last-Translator: Jared Norris \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Main server" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Custom servers" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Could not calculate sources.list entry" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Unable to locate any package files, perhaps this is not an Ubuntu Disc or " "the wrong architecture?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Failed to add the CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "There was an error adding the CD, the upgrade will abort. If you are using a " "valid Ubuntu CD please report this as a bug.\n" "\n" "The error message was:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Remove package in bad state" msgstr[1] "Remove packages in bad state" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgstr[1] "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "The server may be overloaded" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Broken packages" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "This is most likely a transient problem, please try again later." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "The package '%s' is marked for removal but it is in the removal blacklist." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "The essential package '%s' is marked for removal." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Trying to install blacklisted version '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Can't install '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Can't guess meta-packag" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Reading cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Unable to get exclusive lock" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Upgrading over remote connection not supported" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Continue running under SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because it is harder to recover in case " "of failure.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Starting additional sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Cannot upgrade" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "An upgrade from '%s' to '%s' is not supported with this tool." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandbox setup failed" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "It was not possible to create the sandbox environment." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox mode" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Package 'debsig-verify' is installed" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "The upgrade cannot continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Can not write to '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writeable." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Include latest updates from the Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "disabled on upgrade to %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "No valid mirror found" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Generate default sources?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Repository information invalid" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Third party sources disabled" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Package in inconsistent state" msgstr[1] "Packages in inconsistent state" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgstr[1] "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Error during update" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Not enough free disk space" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Calculating the changes" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Upgrade cancelled" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Error during commit" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Restoring original system state" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Keep" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Remove" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "A problem occurred during the clean-up. Please see the message below for " "more information. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Required depends is not installed" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "The required dependency '%s' is not installed. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Checking package manager" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Preparing the upgrade failed" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Getting upgrade prerequisites failed" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Updating repository information" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Failed to add the cdrom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Sorry, adding the cdrom was not successful." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Invalid package information" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Fetching" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Upgrading" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Upgrade complete" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "The upgrade has completed but there were errors during the upgrade process." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "System upgrade is complete." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "The partial upgrade has completed." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Could not find the release notes" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "The server may be overloaded. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Could not download the release notes" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Please check your internet connection." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "authenticate '%(file)s' against '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "extracting '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Upgrade tool signature" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Upgrade tool" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Failed to fetch" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Fetching the upgrade failed. There may be a network problem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Authentication failed" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Failed to extract" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verification Failed" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Cannot run the upgrade" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "The error message is '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Upgrade" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Release Notes" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Downloading additional package files..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "File %s of %s at %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "File %s of %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Please insert '%s' into the drive '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Media Change" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms in use" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "Your graphics hardware may not be fully supported in Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "No i686 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "No ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimisations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "No init available" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer.\n" "\n" "Ubuntu 10.04 LTS cannot function within this type of environment, an update " "to your virtual machine configuration is required first.\n" "\n" "Are you sure you wish to continue?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandbox upgrade using aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Use the given path to search for a cdrom with upgradable packages" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*DEPRECATED* this option will be ignored" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Perform a partial upgrade only (no sources.list rewriting)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Disable GNU screen support" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Set datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Fetching is complete" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Fetching file %li of %li at %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "About %s remaining" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Applying changes" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "dependency problems - leaving unconfigured" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Could not install '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Replace the customised configuration file\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "A fatal error occurred" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c pressed" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do this?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "No longer supported by Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Downgrade (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Remove (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "No longer needed (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Install (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Upgrade (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Show Difference >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Hide Difference" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Error" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Cancel" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Close" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Show Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Hide Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Information" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Details" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "No longer supported %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Remove %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Remove (was auto installed) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Install %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Restart required" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Restart the system to complete the upgrade" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Restart Now" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Cancel Upgrade?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li day" msgstr[1] "%li days" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hour" msgstr[1] "%li hours" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minute" msgstr[1] "%li minutes" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li second" msgstr[1] "%li seconds" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "This download will take about %s with your connection. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Preparing to upgrade" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Getting new software channels" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Getting new packages" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installing the upgrades" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Cleaning up" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgstr[1] "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d package is going to be removed." msgstr[1] "%d packages are going to be removed." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d new package is going to be installed." msgstr[1] "%d new packages are going to be installed." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d package is going to be upgraded." msgstr[1] "%d packages are going to be upgraded." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "You have to download a total of %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be cancelled." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be cancelled." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Removing the packages can take several hours. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "The software on this computer is up to date." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "There are no upgrades available for your system. The upgrade will now be " "cancelled." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Reboot required" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "The upgrade is finished and a restart is required. Do you want to do this " "now?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Aborting" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Demoted:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "To continue please press [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Continue [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Details [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "No longer supported: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Remove: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Install: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Upgrade: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continue [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Downloading file %(current)li of %(total)li with %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Downloading file %(current)li of %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Show progress of individual files" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Cancel Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Resume Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Cancel the upgrade in progress?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Start Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Replace" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Difference between the files" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Report Bug" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continue" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Start the upgrade?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Distribution Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Upgrading Ubuntu to version 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Setting new software channels" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Restarting the computer" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Upgrade" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "A new version of Ubuntu is available. Would you like to upgrade?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Don't Upgrade" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Ask Me Later" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Yes, Upgrade Now" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "You have declined to upgrade to the new version of Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Perform a release upgrade" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "To upgrade Ubuntu, you need to authenticate." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Perform a partial upgrade" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "To perform a partial upgrade, you need to authenticate." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Show version and exit" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Directory that contains the data files" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Run the specified frontend" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Running partial upgrade" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Downloading the release upgrade tool" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Check if upgrading to the latest development release is possible" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Try upgrading to the latest release using the upgrader from $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Test upgrade with a sandbox aufs overlay" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Check only if a new distribution release is available and report the result " "via the exit code" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Checking for a new Ubuntu release" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Your Ubuntu release is not supported anymore." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "For upgrade information, please visit:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "No new release found" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Release upgrade not possible right now" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "New release '%s' available." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Run 'do-release-upgrade' to upgrade to it." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s Upgrade Available" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "You have declined the upgrade to Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Add debug output" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Authentication is required to perform a release upgrade" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Authentication is required to perform a partial upgrade" ubuntu-release-upgrader-0.220.10/po/gu.po0000644000000000000000000013362512431225715014776 0ustar # Gujarati translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: gu\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s નુ સર્વર" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "મુખ્ય સર્વર" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "અન્ય સર્વરો" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "ખરાબ હાલતમાં હોય તેવું પેકેજ કાઢી નાખો" msgstr[1] "ખરાબ હાલતમાં હોય તેવા પેકેજ કાઢી નાખો" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "તુટેલા પેકેજ" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "તમારી સિસ્ટમ તુટેલા પેકેજ ધરાવે છે, જે આ સોફ્ટવેર દ્વારા ઠીક થઇ શકે તેમ નથી. " "આગળ વધતા પહેલા તેમને સિનેપ્ટીક અથવા એપ્ટ-ગેટ વડે ઠીક કરી લો." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "અદ્યતનીકરણની તૈયારી કરતી વખતે નિવારી ન શકાય તેવી ભૂલ થઇ છે:\n" "%s\n" " આમ થવાના આ કારણો હોઇ શકે:\n" " * ઉબુન્ટુની કોઇ અપ્રકાશિત આવૃત્તિ સાથે અદ્યતનીકરણ કરવાથી\n" " * ઉબુન્ટુની અત્યારની અપ્રકાશિત આવૃત્તિ ચલાવવાથી\n" " * ઉબુન્ટુ દ્વારા પ્રદાન ન કરાયેલ હોય તેવા અનધિકૃત સોફ્ટવેર પેકેજ દ્વારા\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "અદ્યતન બનાવી શકાય તેવા પેકેજ ધરાવતી સીડી-રોમ શોધવા આપેલો પથ વાપરો." #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "આંશિક અદ્યતનીકરણ કરો. (સ્તોત્રની યાદી પાછી લખવામાં નહી આવે." #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "માહિતીનુ સ્થાન (datadir) નક્કી કરો" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ta_LK.po0000644000000000000000000013424112431225715015350 0ustar # Tamil (Sri-Lanka) translation for update-manager # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Ramesh \n" "Language-Team: Tamil (Sri-Lanka) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:54+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "மெயின் சர்வர்" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Sources.list நுழைவு கணக்கிட முடியவில்லை" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "எந்த தொகுப்பு கோப்புகளையும் கண்டுபிடிக்க முடியவில்லை, ஒருவேளை இந்த ஒரு " "உபுண்டு டிஸ்க் அல்ல அல்லது தவறான கட்டமைப்பு" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "குறுவட்டு சேர்க்க தோல்வி" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "மோசமான நிலையில் உள்ள தொகுப்பை நீக்கவும்" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "சர்வர் ஓவர்லோட் இருக்கலாம்" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "சிதைந்த தொகுப்புகள்" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "உங்கள் கணினியை இந்த மென்பொருள் மூலம் சரி செய்யப்பட்டது முடியாது அந்த உடைந்த " "தொகுப்புகளை கொண்டிருக்கிறது. இன்னும் முதல் இணைவளைவு அல்லது முன் apt-get " "பயன்படுத்தி சரி செய்யவும்." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "இது பெரும்பாலும் ஒரு நிலையற்ற பிரச்சனை, பின்னர் மீண்டும் முயற்சி செய்யுங்கள்." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' நிறுவமுடியவில்லை" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "புதுப்பிக்கும் பொழுது பிழை ஏற்பட்டுள்ளது" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "வட்டில் போதுமான காலி இடம் இல்லை" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "மேம்படுத்துகிறது" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "கணிணி மேம்பாடு முடிந்தது." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' நிறுவ முடியவில்லை" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "'diff' என்ற கட்டளை இல்லை" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s நிறுவு" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s மேம்படுத்து" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "மறு தொடக்கம் தேவைப்படுகிறது" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/csb.po0000644000000000000000000015734312431225715015135 0ustar # Kashubian translation for update-manager # Copyright (c) 2006 Rosetta Contributors and Canonical Ltd 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Yurek Hinz \n" "Language-Team: Kashubian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: csb\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Serwera dlô kraju %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Przédnô serwera" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Jine serwerë" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Ni mòże òbrachòwac wpisënka w lopkù sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Ni mòże nalezc niżódnëch lopków z paczetama, mòże to nie je disk z Ubuntu " "abò lëchô architektura?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Ni mòże dodac platë CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Fela przë dodôwaniu platë CD, aktualizacëjô òprzestónô. Proszã zgłoszëc " "rapòrt ò felë jeżlë je to òficjalnô platka Ubuntu.\n" "\n" "Zamkłosc felë to:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Rëmanié lëchegò paczétu" msgstr[1] "Rëmanié lëchich paczétów" msgstr[2] "Rëmanié lëchich paczétów" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Paczét \"%s\" je w niezgòdnym stónie ë je nót gò winstalowac znowa, ni " "òstało równak nalazłé archiwùm negò paczétu. Rëmnąc paczét terô abë jisc " "dali?" msgstr[1] "" "Paczétë \"%s\" są w niezgòdnym stónie ë je nót je winstalowac znowa, ni " "òstało równak nalazłé archiwùm nych paczétu. Rëmnąc paczétë terô abë jisc " "dali?" msgstr[2] "" "Paczétë \"%s\" są w niezgòdnym stónie ë je nót je winstalowac znowa, ni " "òstało równak nalazłé archiwùm nych paczétu. Rëmnąc paczétë terô abë jisc " "dali?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Serwer mòże bëc przecãżony" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paczétë są zepsëté" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Systema zamëkô w se zepsëté paczetë, jaczich nie szło ùprawic. Proszã wprzód " "pòprawic je brëkùjąc menadżera paczetów Synaptic abò apt-get." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Pòkôzôł sã problem, chtënegò nie dô sã rozwiązac, przë òbrechòwaniu " "aktualizacëji:\n" "%s\n" "\n" " Mòże to bëc sparłãczoné z:\n" " * Aktualizacëją do testowi wersëji Ubuntu\n" " * Brëkòwaniém biéżny wersëji Ubuntu\n" " * Brëkòwanié nieòficjalnych paczétów z bùtna repòzytorëjów Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "To są le chwilowé problemë. Proszã spróbòwac pòzdze." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Nié mòże przerobic aktualizacëjów" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Fela ùdowierzaniô niechtërnych paczétów" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Nie dało sã ùdowierzëc niejednych paczétów. Mòże to bëc czasowô fela sécë. " "Mòże spróbòwac pòzdze znowa. Niżi nachôdô sã lësta nieùdowierzónych paczétów" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Paczét \"%s\" je wëbróny do rëmniãcô, je òn rówank na lësce paczétów, " "chtërnych nie je nót rëmac." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Nóterny paczét \"%s\" je nacéchòwóny do rëmniãcô." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Próba instalacëji wersëji \"%s\", jakô je na czôrny lësce" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Ni mòże winstalowac '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Ni mòże òpisac meta-paczétu" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Systema nie zamëkô w se paczétów ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop abò edubuntu-desktop ë ni mòże wëkrëc ùżëwóny wersëji Ubuntu.\n" " Proszã winstalowac jeden z tich paczétów brëkùjąc programë Synaptic abò apt-" "get nigle póńdzesz dali." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Czëtanié pòdrãcznegò bùfora" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Ni mòże dobëc blokadë na wëłãcznotã" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Zwëczajno òznôczô to, że jinszô aplikacëjô do sprôwianiô paczétama (jakno " "apt-get abò aptitude) je zrëszonô. Nót je wprzód zamknąc nã aplikacëjã." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Aktualizacëjô przez daleczé sparłãcznie nie je wspierónô" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Môsz zrëszoné aktualizacjã przez sparłãczenié ssh ë jinterfejs chtërny tegò " "nie wspiérô. Proszã, spróbùje ùżëc tekstowégò tribu wpisëjąc 'do-release-" "upgrade'.\n" "Zaktualnienié òstanie przerwóné. Spróbùjë bez pòwłoczi ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Jic dali ze sparłãczeniã SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Zrëszanié dodôwnëch ùsłëżnotów ssh" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Dodôwny demon sshd bãdze zrëszony na pòrce '%s', abë zletczic dobëwanié " "nazôd w przëtrôfkù problemów z aktualaną ùsłëżnotą ssh. W przëtrôfkù " "niedarzënkù z aktualną sesëją ssh, wcyg mòże przëłączëc sã do dodôwny " "sesëji.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Nié mòże zaktualnic" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Aktualizacëjô z wersëji \\\"%s\\\" do \\\"%s\\\" nie je wspierónô przez to " "nôrzãdze." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Nastôw tekstowégò tribù nie darzëł sã" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Ùsôdzanié tekstowégò òkrãżô nie bëło mòżlëwé." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Tekstowi trib" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Instalacëjô python je zepsëtô. Proszã naprawic dowiązanié do " "\"/usr/bin/python\"." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Paczét \"debsig-verify\" je winstalowóny" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Dodac nônowszé zaktualnienia z internetu?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "wëłączony przë aktualizacëji do %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Pòprôwny szpéglowi serwer ni nalazłi" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Wëgenerowac domëszlné zdroje?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Lëchô wëdowiédzô ò repòzëtorëjach" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Zdoje samòstójnëch dostôwców òstałë włączoné" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paczét w niezgòdnym stónie" msgstr[1] "Paczétë w niezgòdnym stónie" msgstr[2] "Paczétë w niezgòdnym stónie" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Paczét \"%s\" je w niezgòdnym stónie ë mùszi bëc winstalowóny znowa, ni mòże " "równak nalezc niżódnegò archiwùm negò paczétu. Proszã winstalowac paczét " "rãczno abò rëmnąc gò z systemë." msgstr[1] "" "Paczétë \"%s\"są w niezgòdnym stónie ë mùszą bëc winstalowóné znowa, ni mòże " "równak nalezc niżódnegò archiwùm nych paczétów. Proszã winstalowac paczétë " "rãczno abò rëmnąc je z systemë." msgstr[2] "" "Paczétë \"%s\"są w niezgòdnym stónie ë mùszą bëc winstalowóné znowa, ni mòże " "równak nalezc niżódnegò archiwùm nych paczétów. Proszã winstalowac paczétë " "rãczno abò rëmnąc je z systemë." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Fela òbczas aktualizacëji" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Za mało placu na diskù" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Przerôbianié zmianów" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Chcesz zrëszëc aktualizacëjã?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Aktualizacëjô òprzestónô" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Nié mòże zladowac zaktualnieniów" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Fela òbczas zacwierdzaniô" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Doprowôdzanié nazôd òriginalnegò stónu systemë" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Instalacëjô aktualizacëji nie darzëła sã." #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Rëmnąc stôre paczétë?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "Ù_trzëmôj" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Rëmôj" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "Pòkôza sã fela przë czëszczeniô. Wicy wëdowiédzë niżi. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Wëmôgónô zanóleżnota nie je winstalowónô." #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Wëmôgónô zanóleżnota '%s' nie je winstalowónô " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Sprôwdzanié menadżera paczétów" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Przëszëkòwanié aktualizacëjów nie darzëło sã" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Dobëcé elementów nótrnych do aktualizacëji nie darzëło sã" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Aktualizacëjô wëdowiédzë ò respòzëtorëjach" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Lëchô wëdowiédzô ò paczétach" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Zladënk" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Zaktualnienié" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Zaktualnienié zakùńczoné" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Szëkba za stôrą softwôrą" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Zaktualnienié systemë dzrzëło sã" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Dzélowô aktualizacëjô skùńcoznô" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "NIé mòże nalezc wëdowiédzë ò wëdôwkù" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Serwera mòże bëc przeladowóny " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Zladënk wëdowiédzë ò wëdôwkò nie darzëł sã" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Proszã sprôwdzëc sécowé nastôwë" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Zrëszenié nôrzãdza aktualizacëji nie darzëło sã" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Pòdpisënk nôrzãdza aktualizacëji" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Nôrzãdze aktualizacëji" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Zladënk nie darzëł sã" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Zladënk aktualizacëji nie darzëł sã. Mòże to òznôczac problemë z sécą. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Ùdowierzanié nie darzëło sã" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Ùdowierzanié aktualizacëji nie darzëło sã. Mòże je to problem z sécą abò " "serwerã. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Rozpakòwëwanié nie darzëło sã" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Rozpakòwëwanié aktualizacëji nie darzëło sã. Mòże je to problem z sécą abò " "serwerã. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Werifikacëjô nie darzëła sã" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Werifikacëjô aktualizacëji nie darzëła sã. Mòże je to problem z sécą abò " "serwerã. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Ni mòże nacząc aktualizacëji" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Zamkłosc wiadła felë: \\\"%s\\\"" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Aktualizëjë" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Wëdowiédzô ò wëdôwkù" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Zladënk dôdôwnych paczétów..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Lopk %s z %s z chùtkòscą %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Lopk %s z %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Proszã włożëc '%s' do nëkù '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Zmiana media" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "EVMS w brëkùńkù" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Kòmpùtr brëkùje czérownika graficzi NVIDIA \"nvidia\". Felënk wersëji " "czérownika z chtërną wespółrobi twòjô hardwôra w Ubuntu 10.04 LTS.\n" "\n" "Jisc dali?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Kòmpùtr brëkùje czérownika graficzi AMD \"fglrx\". Felënk wersëji czérownika " "z chtërną wespółrobi twòjô hardwôra w Ubuntu 10.04 LTS.\n" "\n" "Jisc dali?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Felënk procesora ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Felënk przëstãpù do procesu init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Testowô aktualizacëjô brëkùjąc aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Ùżëjë pòdóną stegnã do szëkbë za CD z paczétama aktualizacëji" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Brëkùnk graficzny nôdkładczi. Terô przëstãpné: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Ùżëjë blós dzélowi aktualizacëji (bez nadpisaniô source.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Nastôwi stegnã do pòdôwków" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Zladënk zakùńczony" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Zladënk %li lopka z %li z chùtkòscą %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Òstało kòl %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Zladënk lopka %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Zacwierdzanié zmianów" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemë z zanôleżnotama - òstôwioné nieskònfigùrowóné" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Nie bëło mòżno zainstalowac '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Zastãpic swój lopk kònfigùracëji\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Pòlét 'diff' nie òstôł nalazłi" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Pòkôza sã kriticznô fela" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Wcësniãto Ctrl-C" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Abë nie ùtracëc pòdôwków proszã zamknąc wszëtczé òtemkłé aplikacëje ë " "dokùmentë." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Wëskrzëni nierównoscë >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Zatacë nierównoscë" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Fela" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "Z&amkni" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Wëskrzëni terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Zatacë terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Wëdowiédzô" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Drobnotë" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Rëmôj %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Rëmôj (bëło aùtomatno winstalowóné) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instalëjë %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Aktualizëjë %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Wëmôgóne je zrëszenié kòmpùtra znowa" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Zrëszë kòpmùtr znowa, żebë zakùńczëc aktualizacëjã" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Zrëszë znowa" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "b>Òprzestac aktualizacëjã ?\n" "\n" "Systema mòże stracëc sztabilnotã jeżlë òprzestóniesz aktualizacëjã. " "Zamòdlëwô sã znowienié aktualizacëji." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Òprzestac zaktualnienié?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dzéń" msgstr[1] "%li dni" msgstr[2] "%li dniów" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li gòdzëna" msgstr[1] "%li gòdzënë" msgstr[2] "%li gòdzën" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuta" msgstr[1] "%li minutë" msgstr[2] "%li minutów" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekùnda" msgstr[1] "%li sekòndë" msgstr[2] "%li sekùndów" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Zladënk dérëje kòl %s brëkùjąc sparłãczenia 1 Mbit DSL abò kòl %s brëkùjąc " "mòdewòwégò sparłãczenia 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Zladënk mòże, w przëtrôfkù negò sparłãczenia, dérowac kòl %s . " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Przërechtowanié zaktualnienia" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Zladënk nowich kanalów softwôrë" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Zladënk nowich paczétów" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Instalacëjô zaktualnieniô" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Czëszczenié" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paczét òstanié rëmniãty." msgstr[1] "%d paczétë òstaną rëmniãte." msgstr[2] "%d paczétów òstaną rëmniãtëch." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nowi paczét òstanie winstalowóny." msgstr[1] "%d nowé paczétë òstaną winstalowóné." msgstr[2] "%d nowëch paczétów òstanie winstalowónëch." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paczét òstanié zaktualiniony." msgstr[1] "%d paczétë òstaną zaktualnione." msgstr[2] "%d paczétów òstanie zaktualnionëch." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Mùszebny zladënk w grëpie %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Felëjë przistãpnëch aktualizacëjów. Aktualizacëjô òstanié òprzestónô." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Wëmôgóne je zrëszenié kòmpùtra znowa" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Aktualizacëjô òsta zakùńczonô ë nót je zrëszëc kòmpùtr znowa. Zrobic to terô?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Òprzestóń" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Zdegradowóné:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Biéj dali [jN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detale [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "j" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Rëmôj: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instalëjë %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Aktualizëjë %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Jisc dali [Jn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Abë skùńczëc aktualizacëjã je nót zrëszëc kòmpùtr znowa.\n" "Pò wëbierkù \"J\" kòmpùtr bãdze zrëszony znowa." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Ladowanié lopka %(current)li z %(total)li z chùtkòscą %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Ladowanié lopka %(current)li z %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Pòkrok zladënkù indiwidualnych lopków" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "Ò_przestóń zaktualnienié" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Znowi zaktualnienié" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Òprzestac aktualizacëjã?\n" "\n" "Systema mòże stac sã nieprzëdatnô do brëkùnkù jeżlë òprzestóniesz " "aktualizacëjã. Zamòdlëwô sã jisc dali z aktualizacëją." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Startëjë zaktualnienié" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Zastãpi" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Zjinaczi midze lopkama" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "Zgłoszë _felã" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Biéj dali" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Zacząc zaktualnienié?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Dlô zakùńczeniô aktualizacëji zrëszë kòmpùtr znbowa\n" "\n" "Proszã zapisaćc swòją robòtã, niglë póńdzesz dali" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Aktualizacëjô distribùcëji" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Nastôwë nowich kanalów softwôrë" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Zrëszanié kòmpùtra znowa" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Aktualizëjë" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Je przëstãpnô nowô wersëjô Ubuntu. Chcesz zaktualnic?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Nie aktualizëjë" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Pëtôj mie pózdni" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Jo, aktualizëjë terô" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Môsz pòcësniãtą aktualizacëjã do nowi wersëji Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Wëskrzënianié wersëji ë wińdzënk" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Katalog zamëkający lopczi pòdôwków" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Zrëszë òpisóną nadkłôdkã" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Przerôbianié dzélowégò zaktualnienia" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Zladënk nôrzãdza aktualizacëji wëdôwkù" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Sprôwdzë mòżnotã zaktualnieniô do nônowszi testowi wersëji" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Proszã spróbòwac zaktualnic do nônowszi wersëji brëkùjąc zaktualniający " "programë z $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Zrëszë w specjalnym tribie aktualizacëji.\n" "Terô wspieróné są tribë \"desktop\" dlô kòmpùtrów ë \"server\" dlô " "serwerowich systemów." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testowô aktualizacëjô z nadkłôdką sandbox aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Felënk nowegò wëdôwka" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Nowi wëdôwk '%s' je przëstãpny" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Zrëszë 'do-release-upgrade', abë zaktualnic." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Przëstãpnô je aktualizacëjô do Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Pòcësniãto aktualizacëjã do Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/lb.po0000644000000000000000000013225012431225715014751 0ustar # Luxembourgish translation for update-manager # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Luxembourgish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server fir %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Haaptserver" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Benotzerdefinéierten Server" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Et wor net méiglech ee Pak ze fannen, villäicht ass dëst keng Ubuntu CD oder " "et ass di falsch Architektur." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "D'CD konnt net bäigefügt ginn" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Et ass ee Fehler beim Bäifügen vun der CD geschitt, den Upgrade gëtt " "ofgebrach. Mellt dëst w.e.g. als Feler falls et eng gülteg Ubuntu CD ass.\n" "\n" "D'Fehlermeldung wor:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Feelerhafte Pak läschen" msgstr[1] "Feelerhaft Päck läschen" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "De Pak '%s' ass inkonsistent a muss frësch installéiert ginn, mä et ka keen " "Archiv fonnt ginn. Wëll Dir dëse Pak läsche fir weiderzefueren?" msgstr[1] "" "D'Päck '%s' sinn inkonsistent a musse frësch installéiert ginn, mä et kennen " "keng Archiver fonnt ginn. Wëll Dir dës Päck läsche fir weiderzefueren?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "De Server kéint iwwerlaascht sinn" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Defekt Päck" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Äert System enthält defekt Päck déi net kënne mat dësem Programm gefléckt " "ginn. W.e.g. fléckt dës mat synaptic oder apt-get iert Dir virufuert." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Dëst ass héchstwahrscheinlech ee kuerzzäitege Problem, probéiert w.e.g. " "spéider nach eng Kéier." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/se.po0000644000000000000000000013106712431225715014770 0ustar # Northern Sami translation for ubuntu-release-upgrader # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the ubuntu-release-upgrader package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 15:22+0000\n" "Last-Translator: Christopher Forster \n" "Language-Team: Northern Sami \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: se\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sáttudoassa vuohki" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Doalat" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Váldde eret" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Viežžan" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Ođasmahttimiid" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Ođasmahttimiid válmmas" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "veažžamin '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Autentiseren filtii" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Ođasmahte" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Váldde eret (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Sajáiduhttit (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Ođasmahttit (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Meattáhus" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Gidde" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Diehtu" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Bienat" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Sajáiduhttit %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Ođasmahttit %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Buhtista boares" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Gaskkalduhttimin" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Joatkke [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Bienat [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Váldde eret: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Sajáiduhttit: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Ođasmahttit: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Joatkke [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Buhtte" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Joatkke" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminála" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Ođasmahttit" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ru.po0000644000000000000000000023551612431225715015013 0ustar # Russian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # Igor Zubarev , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-07-04 15:35+0000\n" "Last-Translator: Igor Zubarev \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ru\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Сервер для %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Основной сервер" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Пользовательские серверы" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Не удалось рассчитать элемент sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Не удалось найти файлы пакетов, может быть, это не диск дистрибутива Ubuntu " "или неверная архитектура?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Не удалось добавить компакт-диск" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "При добавлении компакт-диска произошла ошибка, обновление будет прервано. " "Пожалуйста, сообщите об ошибке, если это был корректный компакт-диск " "Ubuntu.\n" "\n" "Сообщение об ошибке:\n" "«%s»" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Удалить пакет с ошибками." msgstr[1] "Удалить пакеты с ошибками." msgstr[2] "Удалить пакеты с ошибками." #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Обновляемый пакет «%s» был установлен не до конца и должен быть " "переустановлен, однако для него не найден соответствующий архив. Вы хотите " "удалить этот пакет и продолжить?" msgstr[1] "" "Обновляемые пакеты «%s» были установлены не до конца и должны быть " "переустановлены, однако, для них не найдены соответствующие архивы. Вы " "хотите удалить эти пакеты и продолжить?" msgstr[2] "" "Обновляемые пакеты «%s» были установлены не до конца и должны быть " "переустановлены, однако, для них не найдены соответствующие архивы. Вы " "хотите удалить эти пакеты и продолжить?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Возможно, сервер перегружен" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Повреждённые пакеты" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Система содержит повреждённые пакеты, которые не могут быть исправлены " "данной программой. Пожалуйста, исправьте их, используя synaptic или apt-get, " "прежде чем продолжить." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "При расчёте обновления произошла неразрешимая ошибка:\n" "%s\n" "\n" " Это может быть вызвано:\n" " * Обновлением к пред-релизной версии Ubuntu\n" " * Запуском данной пред-релизной версии Ubuntu\n" " * Неофициальным программным обеспечением, которое не поддерживается Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Вероятно, это временная проблема. Попробуйте повторить позднее." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Если ничего из перечисленного не подходит, сообщите об этой ошибке, выполнив " "команду «ubuntu-bug ubuntu-release-upgrader-core» в терминале." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Не удалось рассчитать обновление системы" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Ошибка при проверке подлинности некоторых пакетов" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Не удалось проверить подлинность некоторых пакетов. Возможно, это " "кратковременная проблема с сетью и стоит повторить операцию позже. Ниже " "приведен список пакетов, не прошедших проверку." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Пакет «%s» отмечен для удаления, но он находится в списке запрещённых к " "удалению." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Основной пакет «%s» отмечен для удаления." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Попытка установки внесённой в чёрный список версии «%s»" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Не удалось установить «%s»" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Невозможно установить требуемый пакет. Сообщите об этой ошибке, выполнив " "команду «ubuntu-bug ubuntu-release-upgrader-core» в терминале." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Не удалось подобрать мета-пакет" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Ваша система не содержит пакетов ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop или edubuntu-desktop, и поэтому невозможно определить, какая версия " "Ubuntu у вас запущена.\n" " Пожалуйста, установите сначала один из этих пакетов с помощью synaptic или " "apt-get перед продолжением." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Чтение временных файлов" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Не удалось получить исключительную блокировку" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Как правило, это означает, что уже запущена другая программа управления " "пакетами (например, apt-get или aptitude). Пожалуйста, закройте эту " "программу, чтобы продолжить." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Обновление через удалённое соединение не поддерживается" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Вы пытаетесь выполнить обновление через ssh-соединение с неподдерживаемым " "клиентом. Обновитесь в текстовом режиме с помощью «do-release-upgrade».\n" "\n" "Обновление остановлено. Попробуйте без ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Продолжить работу через SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Этот сеанс запущен через ssh. Не рекомендуется выполнять обновление через " "ssh, так как в случае неудачи восстановление будет очень сложным.\n" "\n" "Если вы продолжите, дополнительная служба ssh будет запущена на порту «%s».\n" "Хотите ли вы продолжить?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Запускается дополнительный sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Чтобы сделать восстановление легче в случае ошибки, дополнительная служба " "sshd будет запущена на порту «%s». Если что-либо случится с используемым " "ssh, вы сможете подключиться к дополнительной службе.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Если у вас включён брандмауэр, вам возможно необходимо временно открыть этот " "порт. Поскольку это потенциально опасно, порт не открывается автоматически. " "Вы можете открыть следующий способом:\n" "«%s» порт." #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Не удалось обновить" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Обновление от «%s» к «%s» не поддерживается этой утилитой." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Установка безопасного окружения не удалась" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Не удалось создать безопасное окружение." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Режим безопасного окружения («песочницы»)" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Это обновление запущенно в безопасном (тестовом) окружении. Все изменения " "записываются в «%s» и будут потеряны после перезагрузки.\n" "\n" "До следующей перезагрузки никаких изменений в системном каталоге " "производиться не будет." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Python установлен некорректно. Пожалуйста, исправьте символическую ссылку " "«/usr/bin/python»." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Установлен пакет «debsig-verify»" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Обновление не может быть продолжено, если установлен этот пакет.\n" "Сначала удалите его в Synaptic или с помощью «apt-get remove debsig-verify» " "и запустите обновление снова." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Невозможно выполнить запись в '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Нет доступа к системному каталогу «%s» в вашей системе. Обновление не может " "продолжаться.\n" "Пожалуйста, убедитесь в наличии доступа к системному каталогу." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Загрузить последние обновления из интернета?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Последние обновления могут быть скачаны из интернета и установлены при " "обновлении всей системы. Если вы подключены к интернету сделать это строго " "рекомендуется.\n" "\n" "Обновление займет больше времени, но по завершению, ваша система будет в " "актуальном состоянии. Вы можете этого не делать, но рекомендуем установить " "последние обновления как можно скорее.\n" "Если вы ответите «Нет», то обновления через интернет скачаны не будут." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "заблокировано при обновлении до %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Не найдено ни одного действующего зеркала" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "В процессе сканирования информации о ваших репозиториях, не было найдено " "зеркало для обновления дистрибутива. Такое возможно в случае, если вы " "используете внутреннее зеркало или информация о зеркалах устарела.\n" "\n" "Желаете ли вы перезаписать файл «sources.list» в любом случае? Если вы " "выберите «Да», то будут обновлены все «%s» записей до «%s».\n" "Если же вы выберите «Нет», то обновление будет отменено." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Сгенерировать источники по умолчанию?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Не найдена запись для «%s» в файле «sources.list».\n" "\n" "Добавить стандартную запись для «%s»? Выбор «Нет» означает отказ от " "обновления." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Информация о репозитории неверна" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Обновление сведений о репозиториях привело к созданию повреждённого файла. " "Выполняется запуск системы сообщения о неполадке." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Сторонние источники отключены" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Некоторые сторонние источники в файле «sources.list» были отключены. Вы " "сможете их снова включить после обновления с помощью утилиты «Источники " "приложений» или вашего менеджера пакетов." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Пакет в состоянии" msgstr[1] "Пакеты в нестабильном состоянии" msgstr[2] "Пакеты в нестабильном состоянии" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Пакет «%s» в нестабильном состоянии и должен быть переустановлен, однако для " "него не найден архивный файл. Переустановите пакет вручную, либо удалите его " "из системы." msgstr[1] "" "Пакеты «%s» в нестабильном состоянии и должны быть переустановлены, однако " "для них не найдены архивные файлы. Переустановите пакеты вручную, либо " "удалите их из системы." msgstr[2] "" "Пакеты «%s» в нестабильном состоянии и должны быть переустановлены, однако " "для них не найдены архивные файлы. Переустановите пакеты вручную, либо " "удалите их из системы." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Ошибка при обновлении" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "При обновлении возникла проблема. Обычно это бывает вызвано проблемами в " "сети. Проверьте сетевые подключения и повторите попытку." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Недостаточно свободного места на диске" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Обновление было отменено. Обновлению необходимо всего %s свободного места на " "диске «%s». Пожалуйста освободите как минимум дополнительно %s места на " "«%s». Очистите корзину и удалите временные пакеты предыдущих установок, " "используя «sudo apt-get clean»." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Вычисление изменений" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Вы хотите начать обновление системы?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Обновление отменено" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Это обновление сейчас будет отменено и произойдет восстановление исходного " "состояния системы. Вы можете продолжить это обновление позже." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Не удалось загрузить обновления" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Обновление было прервано. Пожалуйста, проверьте ваше соединение с интернетом " "или установочный носитель и попробуйте снова. Все загруженные файлы были " "сохранены." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Ошибка при фиксировании" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Восстановление первоначального состояния системы" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Не удалось установить обновления" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Обновление было отменено. Ваша система может оказаться в непригодном для " "использования состоянии. Сейчас будет запущен процесс восстановления (dpkg --" "configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Сообщите об этой ошибке, открыв в браузере страницу " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug и " "прикрепив файлы из папки «/var/log/dist-upgrade/» к отчёту.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Обновление было отменено. Проверьте ваше соединение с интернетом или ваш " "установочный носитель и попробуйте снова. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Удалить устаревшие пакеты?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Оставить" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Удалить" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Во время очистки возникла проблема. Подробности описаны в сообщении ниже. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Не установлены требуемые зависимости" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Требуемая зависимость «%s» не установлена. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Проверка менеджера пакетов" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Подготовка к обновлению завершилась неудачно" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Подготовки системы к обновлению не удалась, будет запущена программа отчетов " "об ошибках." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Подготовка к обновлению завершилась неудачно" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Система не может получить предварительные реквизиты для выполнения полного " "обновления. Сейчас будет прервано полное обновление и выполнено " "восстановление исходного состояния системы.\n" "\n" "Выполняется запуск системы сообщения о неполадке." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Обновление информации о репозитории" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Добавление компакт-диска завершилось неудачно" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Добавление компакт-диска завершилось неудачно." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Неверная информация о пакете" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "После обновления информации о пакетах, не найден необходимый пакет '%s'. " "Возможно в ваших источниках приложений отсутствуют официальные зеркала или " "из-за превышения нагрузки на зеркало, которое вы используете. Проверьте " "список источников приложений /etc/apt/sources.list\n" "В случае превышения нагрузки зеркала вы можете повторить попытку обновления " "позже." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Загрузка" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Обновление" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Обновление завершено" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Обновление завершено, но во время процесса обновления произошли ошибки." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Поиск устаревших программ" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Обновление системы завершено." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Частичное обновление завершено." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Не удалось найти примечания к выпуску" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Возможно, сервер перегружен. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Не удалось загрузить примечания к выпуску" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Пожалуйста, проверьте ваше сетевое соединение." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "аутентифицировать '%(file)s' вместо '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "извлечение '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Не удалось запустить утилиту обновления" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Скорее всего, это ошибка в программе обновления. Пожалуйста, сообщите о ней, " "выполнив команду «ubuntu-bug ubuntu-release-upgrader-core» в терминале." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Подпись утилиты обновления" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Утилита обновления" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Не удалось получить" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Не удалось получить обновление. Возможно, возникла проблема в сети. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Проверка подлинности не удалась" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Проверка подлинности обновления не удалась. Возможно, возникла проблема в " "сети или на сервере. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Не удалось извлечь" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Не удалось извлечь обновление. Возможно, возникла проблема в сети или на " "сервере. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Проверка не удалась" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Проверка обновления завершилась неудачно. Возможно, возникла проблема в сети " "или на сервере. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Не удалось запустить процесс обновления" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Обычно возникает в системе, где /tmp смонтирован с флагом noexec. " "Пожалуйста, перемонтируйте без флага noexec и запустите обновление снова." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Сообщение об ошибке «%s»." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Обновление" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Примечания к выпуску" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Загрузка дополнительных файлов пакетов..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Файл %s из %s на скорости %sБ/с" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Файл %s из %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Вставьте «%s» в привод «%s»" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Смена носителя" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "Программа «evms» используется" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Ваша система использует медежер томов «evms» в /proc/mounts. Программа " "«evms» больше не поддерживается. Пожалуйста, закройте её и запустите " "обновление снова." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "Ваше графическое оборудование может не полностью поддерживаться в Ubuntu " "13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Запуск Unity поддерживается вашим графическим оборудованием лишь частично. " "Поэтому, после обновления, вы можете получить очень медленную систему. Мы " "советуем вам пока оставаться на LTS версии. Для большей информации посетите " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Вы все еще " "хотите начать обновление?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ваша видеокарта не будет поддерживаться полностью в Ubuntu 12.04 LTS" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Поддержка вашей видеокарты в Ubuntu 12.04 LTS будет ограниченной и вы можете " "столкнуться с проблемами после обновления. Прочтите подробности " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Вы действительно " "хотите продолжить обновление?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Обновление может повлечь снижение качества эффектов рабочего стола и " "производительности в играх и приложениях, активно работающих с графикой." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "На этом компьютере используются драйвера NVIDIA. Нет доступных версий этих " "драйверов, которые бы работали с вашей видеокартой в Ubuntu 10.04 LTS.\n" "\n" "Вы хотите продолжить?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "На этом компьютере используются драйвера AMD «fglrx». Нет доступных версий " "этих драйверов, которые бы работали с вашим оборудованием в Ubuntu 10.04 " "LTS.\n" "\n" "Вы хотите продолжить?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Нет i686-совместимого процессора" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ваша система использует i568-совместимый процессор, либо процессор в котором " "нет расширения «cmov». Все пакеты были собраны с оптимизацией под " "архитектуру i686 и выше. Обновить вашу систему до новой версии Ubuntu на " "этом компьютере не получится." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Нет процессора ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ваша система использует процессор архитектуры ARM, старше архитектуры ARMv6. " "Все пакеты в karmic были собраны с оптимизацией под архитектуру ARMv6 и " "выше. Вашу систему невозможно обновить до нового релиза Ubuntu с текущим " "аппаратным обеспечением." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Служба init недоступна" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Похоже, что ваша система является виртуализованным окружением без службы " "init, например Linux-VServer. Ubuntu 10.04 LTS не может работать в таком " "типе окружения, вы должны вначале исправить конфигурацию своей виртуальной " "машины.\n" "\n" "Вы уверены, что хотите продолжить?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Обновление в безопасном окружении, используя aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Использовать данный путь для поиска компакт-диска с пакетами обновлений" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Использовать интерфейс. Сейчас доступны: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "Этот параметр *УСТАРЕЛ* и не будет учитываться" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Подготовить только частичное обновление (sources.list перезаписан не будет)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Отключить поддержку экрана GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Установить каталог с данными" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Загрузка завершена" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Загрузка файла %li из %li на скорости %s Байт/сек" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Осталось приблизительно %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Загрузка файла %li из %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Применение изменений" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "проблемы зависимостей — оставляем не настроенным" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Не удалось установить «%s»" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Обновление будет продолжено, но пакет «%s» может быть в нерабочем " "состоянии. Просьба рассмотреть вопрос о представлении отчёта об этой ошибке." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Заменить изменённый конфигурационный файл\n" "«%s»?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Вы потеряете все изменения, которые сделали в этом файле конфигурации, если " "замените его новой версией." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Команда «diff» не найдена" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Произошла критическая ошибка" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Пожалуйста, сообщите об этом как об ошибке (если вы ещё этого не сделали) и " "включите файлы /var/log/dist-upgrade/main.log и /var/log/dist-" "upgrade/apt.log в ваш отчёт. Обновление было отменено.\n" "Ваш оригинальный файл sources.list был сохранён в " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Нажаты Ctrl+C" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Операция будет отменена, что может привести к нерабочему состоянию системы. " "Вы действительно хотите продолжить?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Чтобы избежать потерь данных, закройте все открытые приложения и документы." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Больше не поддерживается компанией Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Установка старой версии (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Удаление (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Больше не нужен (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Установка (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Обновление (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Показать различия >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Скрыть различия" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Ошибка" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Отменить" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Закрыть" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Показать терминал >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Скрыть терминал" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Сведения" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Подробности" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Больше не поддерживается (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Удалить %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Удалить %s (было установлено автоматически)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Установить %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Обновить %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Требуется перезагрузка" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Для завершения обновления перезагрузите систему" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Перезагрузить сейчас" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Прервать обновление?\n" "\n" "Если вы прервёте обновление, система может работать нестабильно. " "Настоятельно рекомендуем продолжить обновление." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Отменить обновление?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li день" msgstr[1] "%li дня" msgstr[2] "%li дней" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li час" msgstr[1] "%li часа" msgstr[2] "%li часов" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li минута" msgstr[1] "%li минуты" msgstr[2] "%li минут" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li секунда" msgstr[1] "%li секунды" msgstr[2] "%li секунд" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Загрузка займёт около %s при 1Мбит DSL соединении и около %s при модемном " "соединении на скорости 56Кбит." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Загрузка займёт примерно %s на вашем соединении. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Подготовка к обновлению" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Получение новых источников приложений" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Загрузка новых пакетов" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Установка обновлений" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Очистка" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d установленный пакет больше не поддерживаются Canonical. Вы можете " "получить поддержку у сообщества." msgstr[1] "" "%(amount)d установленных пакетов больше не поддерживаются Canonical. Вы " "можете получить поддержку у сообщества." msgstr[2] "" "%(amount)d установленных пакетов больше не поддерживаются Canonical. Вы " "можете получить поддержку у сообщества." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d пакет будет удалён." msgstr[1] "%d пакета будут удалены." msgstr[2] "%d пакетов будут удалены." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d новый пакет будет установлен." msgstr[1] "%d новых пакета будут установлены." msgstr[2] "%d новых пакетов будут установлены." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d пакет будет обновлён." msgstr[1] "%d пакета будут обновлены." msgstr[2] "%d пакетов будут обновлены." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Всего требуется загрузить %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Установка обновления может занять несколько часов. После завершения загрузки " "отменить установку будет нельзя." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Загрузка и установка обновления может занять несколько часов. Когда загрузка " "завершится, отменить процесс будет невозможно." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Удаление пакетов может занять несколько часов. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Программное обеспечение на этом компьютере актуально." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Для вашей системы не доступно ни одно обновление. Обновление будет отменено." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Требуется перезагрузка" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Обновление завершено и требуется перезагрузка. Перезагрузиться сейчас?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Пожалуйста, сообщите об этой ошибке и включите файлы /var/log/dist-" "upgrade/main.log и /var/log/dist-upgrade/apt.log в ваш отчёт. Обновление " "было отменено.\n" "Ваш оригинальный файл sources.list был сохранён в " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Прерывание" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Понижено:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Для продолжения нажмите ввод [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Продолжить [дН] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Подробности [п]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "д" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "н" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "п" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Больше не поддерживается: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Удалить: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Установить: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Обновить: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Продолжить [Дн] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Чтобы завершить обновление, требуется перезагрузка.\n" "Если вы выберите «д», система будет перезагружена." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Загрузка файла %(current)li из %(total)li со скоростью %(speed)s/с" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Загрузка файла %(current)li из %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Показывать прогресс для отдельных файлов" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Отменить обновление" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Продолжить обновление" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Прервать текущее обновление?\n" "\n" "Если вы прервёте обновление, система может оказаться в неработоспособном " "состоянии. Настоятельно рекомендуется продолжить обновление." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Начать обновление" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Заменить" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Различие между файлами" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Сообщить об ошибке" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Продолжить" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Начать обновление?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Перезагрузите систему для завершения обновления.\n" "\n" "Пожалуйста, сохраните свои документы перед продолжением." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Обновление дистрибутива" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Обновление Ubuntu до версии 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Установка новых источников приложений" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Перезагрузка системы" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Терминал" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Обновить" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Доступна новая версия Ubuntu. Хотите обновить?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Не обновлять" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Спросить позже" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Да, обновить сейчас" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Вы отклонили обновление до новой версии Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Вы можете произвести обновление позже, открыв Центр обновлений и нажав " "\"Обновить\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Выполнить обновление выпуска" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Для обновления Ubuntu вам нужно представиться." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Выполнить частичное обновление" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Для частичного обновления вам нужно представиться." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Показать версию и выйти" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Каталог, который содержит файлы данных" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Запустить указанный интерфейс" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Идёт частичное обновление" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Загрузка программы для обновления дистрибутива" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Проверка возможности обновления до последней нестабильной версии дистрибутива" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Попробуйте обновиться до самого последнего выпуска с помощью $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Запустить в специальном режиме обновления.\n" "В настоящее время поддерживается регулярное обновление для настольных и " "серверных систем." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Протестировать обновление в безопасном режиме" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Проверять наличие новой версии дистрибутива и возвращать результат с помощью " "кода выхода" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Проверка наличия нового релиза Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Ваша версия Ubuntu больше не поддерживается." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Для получения информации об обновлении посетите:\n" "%(url)\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Новая версия не обнаружена" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Обновление релиза сейчас не возможно" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Обновление релиза сейчас не может быть выполнено, попробуйте позже. Сервер " "сообщил: «%s»" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Доступна новая версия «%s»." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Чтобы обновиться до него, выполните «do-release-upgrade»." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Доступно обновление Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Вы отклонили обновление до Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Добавить результаты отладки" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Для выполнения частичного обновления требуется аутентификация" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Для обновления выпуска необходимо выполнить аутентификацию" ubuntu-release-upgrader-0.220.10/po/my.po0000644000000000000000000013203412431225715015001 0ustar # Burmese translation for update-manager # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Burmese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: my\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "အဓိကဆာဗာ" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Custom servers" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "အပြည့်အစုံမပါသော Pakage များ" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Upgrade ကိုမတွက်ချက်နိုင်ပါ။" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' ကိုမသွင်းနိုင်ပါ။" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Upgrade မတင်နိုင်ပါ။" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/gd.po0000644000000000000000000021121412431225715014744 0ustar # Gaelic; Scottish translation for update-manager # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:43+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Gaelic; Scottish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : " "(n > 2 && n < 20) ? 2 : 3;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Am frithealaiche airson %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Prìomh fhrithealaiche" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Frithealaichean gnàthaichte" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Cha b' urrainn dhuinn an t-innteart sources.list àireamhachadh" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Cha b' urrainn dhuinn faidhlichean pacaid sam bith a lorg. 'S mathaid nach e " "diosga Ubuntu a tha seo gu bheil no an ailtearachd cearr?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Cha b' urrainn dhuinn a chur ris an CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Thachair mearachd a' cur ris an CD agus crìochnaichidh an t-àrdachadh. Nach " "clàraich thu buga mu dhèidhinn seo mas e CD Ubuntu dligheach a tha seo.\n" "\n" "Seo teachdaireachd na mearachd:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Gluasad pacaid ann an droch staid" msgstr[1] "Gluasad pacaid ann an droch staid" msgstr[2] "Gluasad pacaidean ann an droch staid" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Tha am pacaid '%s' ann an staid mì-chòrdail agus feumail air ath-stàlachadh, " "ach chan fhaigh lorg air tasglann sam bith dha. Bheil thu ag iarraidh " "gluasad am pacaid seo an dràsta airson leantainn?" msgstr[1] "" "Tha am pacaid '%s' ann an staid mì-chòrdail agus feumail air ath-stàlachadh, " "ach chan fhaigh lorg air tasglann sam bith dha. Bheil thu ag iarraidh " "gluasad am pacaid seo an dràsta airson leantainn?" msgstr[2] "" "Tha na pacaidean '%s' ann an staid mì-chòrdail agus feumail air ath-" "stàlachadh, ach chan fhaigh lorg air tasglann sam bith dha. Bheil thu ag " "iarraidh gluasad am pacaid seo an dràsta airson leantainn?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Dh'fhaoidte gu bheil cus uallach air an fhrithealaiche" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Pacaidean briste" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Tha pacaidean briste air an t-siostam agad ach cha b' urrainn dhuinn a " "chàradh leis a' bhathar-bhog seo. Feuch is càraich iad an toiseach le " "synaptic no apt-get mus lean thu air adhart." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Dh'èirich duilgheadas nach gabh a rèiteachadh fhad 's a bha sinn ag " "àireamhachadh an àrdachaidh:\n" "%s\n" "\n" " Dh'fhaoidte gun do thachair seo air sgàth 's:\n" " * gun do rinn thu àrdachadh gu tionndadh ro-sgaoilidh de Ubuntu\n" " * gu bheil thu a' ruith an tionndadh ro-sgaoilidh làithreach de Ubuntu\n" " * gu bheil iad 'nam pacaidean bathair-bhog neo-oifigeach nach deach an " "solar le Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Tha deagh-theans nach mair an duilgheadas seo. Feuch ris a-rithist an ceann " "greis." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Mur eil gin dhiubh seo iomchaidh, nach dèan thu aithris air a' bhuga seo " "leis an àithne \"ubuntu-bug ubuntu-release-upgrader-core\" ann an tèirmineal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Cha b' urrainn dhuinn an t-àrdachadh àireamhachadh" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Thachair mearachd rè dearbhadh cuid a phacaidean" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Cha b' urrainn dhuinn cuid a phacaidean a dhearbhadh. Dh'fhaoidte gur e " "duilgheadas sealach leis an lìonra a tha seo. Nach fheuch thu ris a-rithist " "an ceann greis? Tha liosta nam pacaidean nach deach an dearbhadh gu h-ìosal." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Tha comharra ris a' phacaid \"%s\" a dh'innseas gu bheil e ri thoirt air " "falbh ach tha e air dubh-liosta nan rudan a tha ri an toirt air falbh." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" "Tha comharra ris a' phacaid \"%s\" a dh'innseas gu bheil e ri thoirt air " "falbh ach 's e pacaid riatanach a tha ann." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" "A' feuchainn ris an tionndadh \"%s\" a stàladh a tha air an dubh-liosta" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Cha ghabh \"%s\" a stàladh" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Bha pacaid ann air a bheil feum ach nach b' urrainn dhuinn a stàladh. Nach " "dèan thu aithris air a' bhuga seo leis an àithne \"ubuntu-bug ubuntu-release-" "upgrader-core\" ann an tèirmineal?" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Chan urrainn dhuinn am meta-package a thomhas" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Chan eil pacaid ubuntu-desktop, kubuntu-desktop, xubuntu-desktop no edubuntu-" "desktop package air an t-siostam agad agus cha b' urrainn dhuinn fiosrachadh " "dè an tionndadh de Ubuntu a tha agad.\n" " Feuch is stàlaich aon dhe na pacaidean gu h-àrd le synaptic no apt-get mus " "lean thu air adhart." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "A' leughadh an tasgadain" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Chan urrainn dhuinn glas às-dùnach fhaighinn" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Mar is trice, 's ciall dha seo gu bheil aplacaid rianachd phacaidean eile " "(mar apt-get no aptitude) a' ruith mu thràth. Dùin an aplacaid ud an " "toiseach." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Chan eil taic ri àrdachadh thairis air ceangal cèin" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Tha thu a' ruith an t-àrdachadh thairis air ceangal ssh cèin aig a bheil " "frontend nach eil a' cur taic ris. Feuch àrdachadh sa mhodh teacsa le \"do-" "release-upgrade\".\n" "\n" "Thig an t-àrdachadh gu crìoch a-nis. Feuch ris as aonais ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "A bheil thu airson cumail a' dol 'ga ruith fo ssh?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Tha coltas gu bheil an seisean seo a' ruith fo ssh. Cha mholamaid àrdachadh " "thairis air ssh aig an àm seo oir ma dh'fhàilligeas e, bidh e nas dorra " "aiseag.\n" "\n" "Ma tha thu airson leantainn air adhart, thèid ssh daemon eile a chur gu dol " "air a' phort \"%s\".\n" "A bheil thu airson leantainn air adhart?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "A' tòiseachadh sshd eile" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Cuiridh sinn gu dol sshd eile air a' phort \"%s\" airson 's gum bi e nas " "fhasa aiseag ma dh'fhàilligeas e. Ma thèid dad cearr leis an ssh a tha 'na " "ruith, bidh cothrom agad air an fhear eile fhathast.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Ma tha cachaileith-theine agad, dh'fhaoidte gum bi agad am port seo " "fhosgladh fad greis. Faodaidh seo a bhith cunnartach agus cha dèanar seo gu " "fèin-obrachail air sgàth sin. 'S urrainn dhut am port fhosgladh, mar " "eisimpleir, le:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Cha ghabh an t-àrdachadh a dhèanamh" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Chan urrainn dhut àrdachadh \"%s\" àrdachadh gu \"%s\" leis an inneal seo." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Dh'fhàillig suidheachadh a' bhogsa-ghainmhich" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" "Cha b' urrainn dhuinn àrainneachd a' bhogsa-ghainmhich a chruthachadh." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Modh a' bhogsa-ghainmhich" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Tha an t-ùrachadh seo a' ruith ann am modh a' bhogsa-ghainmhich " "(deuchainneil). Thèid gach atharrachadh a sgrìobhadh ann an \"%s\" agus " "thèid iad air chall an ath-thuras a thòisicheas tu an siostam.\n" "\n" "Chan bhi *gin* dhe na h-atharraichean a thèid an sgrìobadh ann am pasgan " "siostaim a-mach o seo gus an ath-thuras a thèid an siostam a thòiseachadh " "buan." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Tha an stàladh python agad coirbte. Feuch is càraich an symlink " "\"/usr/bin/python\"." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Tha a' phacaid \"debsig-verify\" stàlaichte" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Chan urrainn dhan àdrachadh leantainn air adhart is a' phacaid sin " "stàlaichte.\n" "Thoir air falbh e le synaptic no \"apt-get remove debsig-verify\" an " "toiseach agus ruith an t-àrdachadh a-rithist" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Chan urrainn dhuinn sgrìobhadh ann an \"%s\"" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Chan urrainn dhuinn sgrìobhadh ann am pasgan an t-siostaim \"%s\" air an t-" "siostam agad. Cha lean an t-àrdachadh air adhart.\n" "Dèan cinnteach gun urrainnear sgrìobhadh an am pasgan an t-siostaim." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" "A bheil thu airson na h-ùrachaidhean as ùire on eadar-lìon a ghabhail a-" "staigh?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "'S urrainn do ghleus nan àrdachaidhean ceangal ris an eadar-lìon is na h-" "ùrachaidhean as ùire a luchdadh a-nuas is an stàladh rè an àrdachaidh. Ma " "tha ceangal agad ris an lìonra, mholamaid seo dhut gu mòr.\n" "\n" "Feumaidh an t-àrdachadh nas fhaide ach bidh an siostam agad cho ùr 's a " "ghabhas nuair a bhios e deiseil. Cha leig thu leas seo a dhèanamh ach bu " "chòir dhut na h-ùrachaidhean a stàladh cho luath 's a ghabhas as dèidh dhut " "àrdachadh.\n" "Ma thaghas tu \"Chan eil\" an-seo, cha dèid an lìonra a chleachdadh idir." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "à comas an dèidh an àrdachaidh gu %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Cha deach mirror dligheach a lorg" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Thug sinn sùil air fiosrachadh an repository ach cha do lorg sinn innteart a " "thaobh a' mirror airson an àrdachaidh. Tachraidh seo ma tha mirror " "inntearnail agad no ma tha fiosrachadh a' mirror ro shean.\n" "\n" "A bheil thu airson am faidhle \"sources.list\" agad ath-sgrìobhadh co-dhiù? " "Ma thaghas tu \"Tha\", an-seo, nì e innteartan \"%2s\" de gach innteart " "\"%1s\".\n" "Ma thaghas tu \"Chan eil\", thèid crìoch a chur air an àrdachadh." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "A bheil thu airson na tùsan bunaiteach a chruthachadh?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Thug sinn sùil air an sources.list agad ach cha do lorg sinn innteart " "dligheach airson \"%s\".\n" "\n" "A bheil thu airson 's gun cuir sinn innteartan bunaiteach ris airson \"%s\"? " "Ma thaghas tu \"Chan eil\", thèid crìoch a chur air an àrdachadh." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Tha fiosrachadh an repository mì-dhligheach" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Dh'adhbharaich àrdachadh fiosrachadh an ionaid-thasgaidh faidhle mì-" "dhligheach agus tha sinn a' tòiseachadh air aithris buga ri linn sin." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Tha tùsan treas-phàrtaidhean à comas" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Chaidh cuid a dh'innteartan o thùsan treas-phàrtaidhean san sources.list " "agad a chur à comas. 'S urrainn dhut an cur an comas an dèidh dhut àrdachadh " "leis an inneal \"software-properties\" no manaidsear nam pacaidean agad." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pacaid ann an staid mì-chòrdail" msgstr[1] "Pacaid ann an staid mì-chòrdail" msgstr[2] "Pacaidean ann an staid mì-chòrdail" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Tha am pacaid '%s' ann an staid mi-chòrdail agus feumail air ath-stàlachadh, " "ach chan eil lorg air tasglann dha. Ath-stàlaich sibh am pacaid le làimh no " "gluasad e bhon t-siostam." msgstr[1] "" "Tha am pacaid '%s' ann an staid mi-chòrdail agus feumail air ath-stàlachadh, " "ach chan eil lorg air tasglann dha. Ath-stàlaich sibh am pacaid le làimh no " "gluasad e bhon t-siostam." msgstr[2] "" "Tha na pacaidean '%s' ann an staid mi-chòrdail agus feumail air ath-" "stàlachadh, ach chan eil lorg air tasglann dha. Ath-stàlaich sibh am pacaid " "le làimh no gluasad e bhon t-siostam." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Thachair mearachd rè an ùrachaidh" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Thachair mearachd rè an ùrachaidh. 'S e an lìonra a bhios coireach às mar is " "trice, thoir sùil air a cheangal agad ris is feuch ris a-rithist." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Chan eil àite saor gu leòr air an diosg" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Sguireadh dhen àrdachadh. Feumaidh an t-àrdachadh %s a dh'àite saor air an " "diosg \"%s\". Saor co-dhiù %s a dh'àite air an diosg \"%s\". Falamhaich an " "sgudal, thoirt air falbh pacaidean sealach de sheann-stàlaidhean leis an " "àithne \"sudo apt-get clean\"." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Ag àireamhachadh nan atharraichean" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "A bheil thu airson tòiseachadh air an àrdachadh?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Sguireadh dhen àrdachadh" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Sguiridh sinn dhen àrdachadh an-dràsta agus thèid staid thùsail an t-" "siostaim aiseag. 'S urrainn dhut leantainn air an àrdachadh uaireigin eile." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Cha b' urrainn dhuinn na h-àrdachaidhean a luchdadh a-nuas" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Sguireadh dhen àrdachadh. Thoir sùil air a' cheangal agad ris an eadar-lìon " "no air a' mheadhan stàladh is feuch ris a-rithist. Ghlèidh sinn gach faidhle " "a chaidh a luchdadh a-nuas gu ruige seo." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Thachair mearachd rè a' commit" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Ag aiseag staid thùsail an t-siostaim" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Cha b' urrainn dhuinn na h-àrdachaidhean a stàladh" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Sguireadh dhen àrdachadh. Dh'fhaoidte gu bheil an siostam agad ann an staid " "nach gabh a chleachdadh. Cuiridh sinn gu dol gleus aisig an-dràsta (dpkg --" "configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Nach dèan thu aithris air a' bhuga seo ann am brabhsair aig " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug is " "cuir na faidhlichean ann an /var/log/dist-upgrade/ ri aithris a' bhuga.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Sguireadh dhen àrdachadh. Thoir sùil air a' cheangal agad ris an eadar-lìon " "no air a' mheadhan stàladh is feuch ris a-rithist. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" "A bheil thu airson na pacaidean air nach eil feum tuilleadh a thoirt air " "falbh?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Cum iad" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Thoir air falbh iad" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Thachair mearachd rè an sgioblachaidh. Faic an teachdaireachd gu h-ìosal " "airson barrachd fiosrachaidh. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Tha eisimeileachdan ann air a bheil feum ach nach eil stàlaichte" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Chan eil an eisimeileachd \"%s\" stàlaichte ach tha feum air. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "A' sgrùdadh manaidsear nam pacaidean" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Dh'fhàillig an t-àrdachadh" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Dh'fhàgail ullachadh an t-siostam airson leasachadh agus tha sinn a' " "tòiseachadh air aithris buga ri linn sin." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Dh'fhairtlich oirnn ro-ghoireasan an àrdachaidh fhaighinn" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Cha b' urrainn dhan t-siostam riatanasan an àrdachaidh a choileanadh. " "Sguiridh sinn dhen àrdachadh an-dràsta agus aisigidh staid thùsail an t-" "siostaim.\n" "\n" "A bharrachd air sin, tha sinn a' tòiseachadh air aithris buga." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Ag ùrachadh fiosrachadh a' repository" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Cha b' urrainn dhuinn an cdrom a chur ris" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Tha sinn duilich ach cha b' urrainn dhuinn an cdrom a chur ris." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Tha fiosrachadh na pacaid mì-dhligheach" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Cha d'fhuair sinn greim air a' phacaid riatanach \"%s\" as dèidh dhuinn " "fiosrachadh na pacaid agad ùrachadh. Dh'fhaoidte nach eil sgàthan oifigeach " "sam bith ann an liosta nan tùsan bathair-bhog agad no a chionn 's gu bheil " "cus dhaoine a' cleachdadh an sgàthain agad. Faic /etc/apt/sources.list " "airson liosta nan tùsan bathair-bhog làithreach agad.\n" "Ma tha cus dhaoine a' cleachdadh an sgàthain an-dràsta, feuch ris an " "àrdachadh a-rithist an ceann greis." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "'Ga fhaighinn" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "'Ga àrdachadh" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Tha an t-àrdachadh deiseil" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Tha an t-àrdachadh deiseil ach thachair mearachdan rè an àrdachaidh." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "A' lorg bathar-bog air nach eil feum tuilleadh" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Tha àrdachadh an t-siostaim a choileanadh." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Chaidh an t-àrdachadh pàirteach a choileanadh." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Cha b' urrainn dhuinn na nòtaichean sgaoilidh a lorg" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Dh'fhaoidte gu bheil cus aig an fhrithealaiche ri dhèanamh. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Cha b' urrainn dhuinn na nòtaichean sgaoilidh a luchdadh a-nuas" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Thoir sùil air a' cheangal ris an eadar-lìon agad." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "dearbh \"%(file)s\" ri \"%(signature)s\" " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "ag às-tharraing \"%s\"" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Cha b' urrainn dhuinn gleus an àrdachaidh a ruith" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Tha teans gur e buga sa ghleus àrdachaidh a tha seo. Nach dèan thu aithris " "air a' bhuga seo leis an àithne \"ubuntu-bug ubuntu-release-upgrader-core\"." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Àrdaich soidhneadh gleus an àrdachaidh" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Gleus an àrdachaidh" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Cha b' urrainn dhuinn fhaighinn" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Cha b' urrainn dhuinn fhaighinn. Dh'fhaoidte gu bheil duilgheadas ann leis " "an lìonra. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Dh'fhàillig an dearbhadh" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Dh'fhàillig an dearbhadh. Dh'fhaoidte gu bheil duilgheadas ann leis an " "lìonra no leis an fhrithealaiche. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Cha b' urrainn dhuinn às-tharraing" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Cha b' urrainn dhuinn às-tharraing. Dh'fhaoidte gu bheil duilgheadas ann " "leis an lìonra no leis an fhrithealaiche. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Dh'fhàillig an dearbhadh" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Dh'fhàillig an dearbhadh. Dh'fhaoidte gu bheil duilgheadas ann leis an " "lìonra no leis an fhrithealaiche. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Chan urrainn àrdachadh" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Tachraidh sin air siostam air an deach /tmp a mhunntachadh mar noexec mar is " "trice. Munntaich e as ùr as aonais noexec is feuch an t-àrdachadh a-rithist." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "'S e \"%s\" teachdaireachd na mearachd." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Àrdaich" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Nòtaichean sgaoilidh" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "A' luchdadh a-nuas na faidhlichean pacaid eile..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Faidhle %s de %s air %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Faidhle %s de %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Cuir a-steach \"%s\" dhan draibh \"%s\"" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Atharrachadh meadhain" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms a tha 'gan cleachdadh" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Tha an siostam agad a' cleachdadh manaidsear nan draibhean evms ann an " "/proc/mounts. Chan eil taic ris a' bhathar-bhog evms tuilleadh, cuir dheth e " "agus ruith an t-àrdachadh a-rithist nuair a rinn thu sin." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "Dh'fhaoidte nach eil làn-taic ris a' bhathar-chruaidh ghrafaigeachd ann an " "Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Chan eil am bathar-cruaidh grafaigeachd agad a' cur làn-taic ri àrainneachd " "deasga \"unity\". Bhiodh àrainneachd air leth slaodach agad an dèidh dhut " "àrdachadh. Mholamaid dhut an tionndadh LTS a chumail an-dràsta fhèin. Airson " "barrachd fiosrachaidh, faic " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D A bheil thu " "airson àrdachadh fhathast?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Dh'fhaoidte nach eil làn-taic ris a' bhathar-chruaidh ghrafaigeachd ann an " "Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Chan eil Ubuntu 12.04 LTS a' cur làn-taic ris a' bhathar-chruaidh " "ghrafaigeachd Intel agus dh'fhaoidte gum biodh duilgheadasan agad an dèidh " "dhut àrdachadh. Airson barrachd fiosrachaidh, faic " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx A bheil thu " "airson àrdachadh fhathast?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Dh'fhaoidte gum bi droch-bhuaidh air èifeachdan an deasg, dèanadas ann an " "geamannan is rudan eile a tha feumach air grafaigean gu mòr ma nì thu " "àrdachadh." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Tha an coimpiutair seo a' cleachdadh draibhear grafaigean NVIDIA \"nvidia\". " "Chan eil tionndadh eile dhen draibhear seo ri fhaighinn a dh'obraicheas leis " "a' chairt video agad ann an Ubuntu 10.04 LTS.\n" "\n" "A bheil thu airson leantainn air adhart?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Tha an coimpiutair seo a' cleachdadh draibhear grafaigean AMD \"fglrx\". " "Chan eil tionndadh eile dhen draibhear seo ri fhaighinn a dh'obraicheas leis " "a' chairt video agad ann an Ubuntu 10.04 LTS.\n" "\n" "A bheil thu airson leantainn air adhart?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "As aonais CPU i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Tha an siostam agad a' cleachdadh CPU i586 no CPU aig nach eil an leudachan " "\"cmov\". Chaidh gach pacaid a chruthachadh air dòigh piseachaidh a tha " "feumach air i686 air a' char as lugha. Chan urrainn dhut an siostam agad " "àrdachadh gu tionndadh Ubuntu ùr leis a' bhathar-chruaidh seo." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "As aonais CPU ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Tha an siostam agad a' cleachdadh CPU ARM a tha nas sine na an ailtireachd " "ARMv6. Chaidh gach pacaid ann an karmic a chruthachadh air dòigh piseachaidh " "a tha feumach air ARMv6 air a' char as lugha. Chan urrainn dhut an siostam " "agad àrdachadh gu tionndadh Ubuntu ùr leis a' bhathar-chruaidh seo." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Chan eil init ri làimh" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Tha coltas gur e àrainneachd bhiortail as aonais init daemon a tha san t-" "siostam agad, can Linux-VServer. Chan obraich Ubuntu 10.04 as aonais a " "leithid seo de dh'àrainneachd agus feumaidh tu rèiteachadh an inneil " "bhiortail àrdachadh an toiseach.\n" "\n" "A bheil thu cinnteach gu bheil thu airson leantainn air adhart?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Àrdachadh bogsa-gainmhich a' cleachdadh aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Cleachd an t-slighe a tha ann airson cdrom a lorg air a bheil pacaidean a " "ghabhas àrdachadh" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Cleachd frontend. Ri fhaighinn aig an àm seo: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*CHA MHOLAR SEO TUILLEADH* thèid an roghainn seo a leigeil seachad" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Na dèan ach àrdachadh pàirteach (gun ath-sgrìobhadh sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Cuir à comas taic sgrìn GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Suidhich datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Fhuaras e" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "A' faighinn faidhle %li de %li air %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Mu dhèidhinn %s air fhàgal" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "A' faighinn faidhle %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "A' cur an sàs nan atharraichean" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" "duilgheadasan leis na h-eisimeileachdan - 'ga fhàgail gun rèiteachadh" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Cha b' urrainn dhuinn \"%s\" a stàladh" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Leanaidh an t-àrdachadh air adhart ach dh'fhaoidte nach obraich a' phacaid " "\"%s\". Saoil an clàraich thu buga mu dhèidhinn?" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "A bheil thu airson a chur an àite an fhaidhle rèiteachaidh ghnàthaichte\n" "\"%s\"?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Caillidh tu atharrachadh sam bith a rinn thu air an fhaidhle rèiteachaidh " "seo ma chuireas tu romhad tionndadh nas ùire a chur 'na àite." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Cha b' urrainn dhuinn an àithne \"diff\" a lorg" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Thachair mearachd mharbhtach" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Nach dèan thu aithris air a' buga seo (mur an do rinn thu seo mu thràth)? " "Feuch is cuir na faidhlichean ann an /var/log/dist-upgrade/main.log agus " "/var/log/dist-upgrade/apt.log ris an aithris. Sguir sinn dhen àrdachadh.\n" "Chaidh an sources.list tùsail agad a shàbhaladh ann an " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c air a bhrùthadh" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Sguiridh seo dhen ghnìomh agus dh'fhaoidte gum fàg sinn an siostam agad " "briste. A bheil thu cinnteach gu bheil thu airson sin a dhèanamh?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Dùin a h-uile aplacaid is sgrìobhainn fhosgailte gus call dàta a sheachnadh." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Chan eil Canonical (%s) a' cur taic ris tuilleadh" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Ìslich (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Thoir air falbh (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Chan eil feum air tuilleadh (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Stàlaich (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Àrdaich (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Seall an diofar >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Falaich an diofar" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Mearachd" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Dùin" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Seall an tèirmineal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Falaich an tèirmineal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Fiosrachadh" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Mion-fhiosrachadh" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "%s ris nach eil taic tuilleadh" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Thoir air falbh %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Thoir air falbh %s (chaidh a stàladh gu fèin-obrachail)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Stàlaich %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Àrdaich %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Feumaidh tu ath-thòiseachadh" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Ath-thòisich an siostam gus an t-àrdachadh a choileanadh" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Ath-thòisich an-dràsta" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "A bheil thu airson sgur dhen àrdachadh a tha a' dol?\n" "\n" "Dh'fhaoidte gum fàs an siostam neo-sheasmhach ma sguireas tu dhen àrdachadh. " "Mholamaid dhut gu mòr leantainn air adhart leis." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "A bheil thu airson sgur dhen àrdachadh?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li làtha" msgstr[1] "%li làtha" msgstr[2] "%li làithean" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li uair" msgstr[1] "%li uair" msgstr[2] "%li uairean" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li mionaid" msgstr[1] "%li mionaid" msgstr[2] "%li mionaidean" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li diog" msgstr[1] "%li diog" msgstr[2] "%li diogan" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Bheir e mu thuaiream %s 'ga luchdadh a-nuas air ceangal DSL 1Mbit agus %s " "air mòdam 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Bheir seo mu thuaiream %s 'ga luchdadh a-nuas air a' cheangal agad. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Ag ullachadh gus àrdachadh" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "A' faighinn seanailean bathair-bhog ùra" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "A' faighinn nam pacaidean ùra" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "A' stàladh nan àrdachaidhean" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "'Ga sgioblachadh" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Chan eil Cananical a thuilleadh thoirt taic ris a' phacaid stàlaichte " "%(amount)d. 'S urrainn dhut fhathast fhaighinn taic bhon coimhearsnachdh." msgstr[1] "" "Chan eil Cananical a thuilleadh thoirt taic ris a' phacaid stàlaichte " "%(amount)d. 'S urrainn dhut fhathast fhaighinn taic bhon coimhearsnachdh." msgstr[2] "" "Chan eil Cananical a thuilleadh thoirt taic ri na pacaidean stàlaichte " "%(amount)d. 'S urrainn dhut fhathast fhaighinn taic bhon coimhearsnachdh." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bithidh pacaid %d a' gluasad." msgstr[1] "Bithidh pacaid %d a' gluasad." msgstr[2] "Bithidh pacaidean %d nan gluasad." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bithidh pacaid ùr %d ga stàlachadh" msgstr[1] "Bithidh pacaid ùr %d ga stàlachadh" msgstr[2] "Bithidh pacaidean ùr %d nan stàlachadh" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bithidh pacaid %d ga leasachadh" msgstr[1] "Bithidh pacaid %d ga leasachadh" msgstr[2] "Bithidh pacaidean %d nan leasachadh" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Feumaidh tu %s a luchdadh a-nuas uile gu lèir. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Dh'fhaoidte gum feum stàladh an àrdachaidh grunn uairean a thìde. Turas a " "chaidh a luchdadh a-nuas, chan urrainn dhut sgur dhen phròiseas." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Dh'fhaoidte gum feum luchdadh a-nuas is stàladh an àrdachaidh grunn uairean " "a thìde. Turas a chaidh a luchdadh a-nuas, chan urrainn dhut sgur dhen " "phròiseas." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" "Dh'fhaoidte gum feum toirt air falbh nam pacaidean grunn uairean a thìde. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Tha am bathar-bog air a' choimpiutair seo cho ùr 's a ghabhas." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Chan eil àrdachadh sam bith ann airson an t-siostaim agad. Sguiridh sinn " "dheth an-dràsta." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Tha feum air ath-thòiseachadh an t-siostaim" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Chaidh an t-àrdachadh a choileanadh is feumaidh tu an siostam ath-" "thòiseachadh. A bheil thu airson sin a dhèanamh an-dràsta?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Nach dèan thu aithris air a' bhuga seo 's cuir na faidhlichean ann an " "/var/log/dist-upgrade/main.log agus /var/log/dist-upgrade/apt.log ris an " "aithris. Sguireadh dhen àrdachadh.\n" "Chaidh an sources.list tùsail agad a shàbhaladh ann an " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "A' sgur dheth" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Air ìsleachadh:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Brùth [ENTER] gus leantainn air adhart" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "A bheil thu airson leantainn air adhart? [tC] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Mion-fhiosrachadh [m]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "t" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "c" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "m" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Chan eil taic ris na leanas tuilleadh: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Thoir air falbh: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Stàlaich: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Àrdaich: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "A bheil thu airson leantainn air adhart? [Tc] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Feumaidh tu an siostam ath-thòiseachadh gus an t-àrdachadh a choileanadh.\n" "Tha bhrùthas tu \"t\", thèid an siostam ath-thòiseachadh." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "A' luchdadh a-nuas faidhle %(current)li de %(total)li air %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "A' luchdadh a-nuas faidhle %(current)li de %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Seall adhartas de gach faidhle fa leth" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Sguir dhen àrdachadh" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Lean air an àrdachadh" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "A bheil thu airson sgur dhen àrdachadh a tha a' dol air " "adhart?\n" "\n" "Dh'fhaoidte nach obraich an siostam ma sguireas tu dheth. Mholamaid gu mòr " "gun lean thu air an àrdachadh." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Tòisich air an àrdachadh" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Cuir 'na àite" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "An diofar eadar an dà fhaidhle" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Dèan aithris air buga" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Lean air adhart" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Tòisich air an àrdachadh?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Ath-thòisich an siostam gus an t-àrdachadh a choileanadh\n" "\n" "Feuch is sàbhail d' obair mus lean thu air adhart." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Àrdachadh an sgaoilidh" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Ag àrdachadh Ubuntu gu ruige tionndadh 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "A' suidheachadh nan seanailean bathair-bog ùra" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Ag ath-thòiseachadh an coimpiutair" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Tèirmineal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "Àr_daich" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Tha tionndadh ùr de Ubuntu ri làimh. A bheil thu airson àrdachadh?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Na àrdaich" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Faighnich dhìom às a dhèidh seo" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Tha, nì mi àrdachadh an-dràsta" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Dhiùlt thu àrdachadh gun tionndadh ùr aig Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "'S urrainn dhut àrdachadh uaireigin eile ma thèid thu gu ùraichear a' " "bhathair-bhog 's tu a' briogadh air \"Àrdaich\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Dèan àrdachadh sgaoilidh" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Feumaidh tu dearbhadh mus urrainn dhut Ubuntu àrdachadh." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Dèan àrdachadh leth-phàirteach" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" "Feumaidh tu dearbhadh mus urrainn dhut àrdachadh leth-phàirteach a dhèanamh." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Seall an tionndadh agus fàg an-seo" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Am pasgan sa bheil na faidhlichean dàta" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Ruith am frontend a shònraich thu" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "A' ruith àrdachadh leth-phàirteach" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "A' luchdadh a-nuas inneal àrdachadh an sgaoilidh" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Thoir sùil an urrainn dhomh àrdachadh gun sgaoileadh luchd-leasachaidh as " "ùire" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Feuch is àrdaich gun tionndadh as ùire, a' cleachdadh an àrdaicheir o " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Ruith ann am modh àrdachaidh sònraichte.\n" "Tha taic ri \"desktop\" airson àrdachaidhean àbhaisteach de shiostam deasg " "agus \"server\" airson siostaman frithealaiche aig an àm seo." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Cuir an t-àrdachadh fo dheuchainn le tar-chòmhdachadh sandbox aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Thoir sùil a-mhàin a bheil sgaoileadh ùr ri fhaighinn agus innis dhomh " "slighe an exit code" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "A' toirt sùil a bheil sgaoileadh Ubuntu ùr ann" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Chan eil taic tuilleadh ris an sgaoileadh de Ubuntu a tha agad." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Airson stiùireadh air àrdachadh, tadhail air:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Cha deach sgaoileadh ùr a lorg" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Chan urrainn dhuinn an sgaoileadh àrdachadh an-dràsta fhèin" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Chan urrainn dhuinn an sgaoileadh àrdachadh an-dràsta fhèin, feuch ris a-" "rithist an ceann greis. Thuirt am frithealaiche: \"%s\"" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Tha an sgaoileadh ùr \"%s\" ri fhaighinn." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Ruith \"do-release-upgrade\" gus àrdachadh thuige." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Tha àrdachadh gu Ubuntu %(version)s ri fhaighinn" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Chuir thu romhad an t-àrdachadh gu Ubuntu %s a dhiùltadh" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Cuir ris às-chur dì-bhugachaidh" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Tha dearbhachadh ga iarraidh son dèanamh leasachadh leth-phàirteach" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Tha dearbhachadh ga iarraidh son dèanamh leasachadh sgaoilidh" ubuntu-release-upgrader-0.220.10/po/cv.po0000644000000000000000000013050712431225715014767 0ustar # Chuvash translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Vogt \n" "Language-Team: Chuvash \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: cv\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' lartajmarămăr" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Şĕnetejmerĕmĕr" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Kălar" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' lartajmarămăr" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Jănăš" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Hup" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Tĕplĕnreh" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s kălar" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s lart" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Tĕplĕnreh [t]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "ş" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "t" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Malalla" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Şĕnet" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/be.po0000644000000000000000000022126712431225715014751 0ustar # Belarusian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Belarusian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: be\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Сервер для %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Галоўны сервер" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Адмысловыя серверы" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Немагчыма разлічыць запіс sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Немагчыма адшукаць ніводнага файла з пакетам, верагодна, гэты дыск не " "з'яўляецца Ubuntu ці мае іншую архітэктуру." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Немагчыма дадаць дыск" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Пры дадаванні кампакт-дыска адбылася памылка, абнаўленне будзе спынена. Калі " "ласка, паведаміце аб памылцы, калі гэта быў карэктны кампакт-дыск Ubuntu.\n" "\n" "Тэкст памылкі:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Выдаліць пакет, пазначаны як памылковы" msgstr[1] "Выдаліць пакеты, пазначаныя як памылковыя" msgstr[2] "Выдаліць пакеты ў кепскім стане" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Пакет “%s“ знаходзіцца ў супярэчлівым стане і мусіць быць пераўсталяваны, " "але немагчыма адшукаць архіў для яго. Ці жадаеце выдаліць зараз гэты пакет?" msgstr[1] "" "Пакеты “%s“ знаходзяцца ў супярэчлівым стане і мусіць быць пераўсталяваны, " "але немагчыма адшукаць архівы для іх. Ці жадаеце выдаліць зараз гэтыя пакеты?" msgstr[2] "" "Пакеты “%s“ знаходзяцца ў супярэчлівым стане і мусіць быць пераўсталяваны, " "але немагчыма адшукаць архівы для іх. Ці жадаеце выдаліць зараз гэтыя пакеты?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Магчыма сервер перагружаны" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Пакеты з памылкамі" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Сістэма змяшчае пашкоджаныя пакеты, якія не могуць быць выпраўленыя гэтай " "праграмай. Калі ласка, спачатку выпраўце іх з дапамогай synaptic ці apt-get " "перш чым працягваць." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Невырашальная праблема паўстала падчас падліку апгрэйду:\n" "%s\n" "\n" " Гэта магло здарыцца з-за наступных прычын:\n" " * апгрэйд да прэ-рэлізу Ubuntu\n" " * працы з прэ-рэлізам Ubuntu\n" " * неафіцыйных праграм, якія не пастаўляюцца з Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Магчыма, гэта часовая праблема. Паспрабуйце паўтарыць пазней." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Немагчыма падлічыць абнаўленне" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Памылка аўтэнтыфікацыі некаторых пакетаў" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Немагчыма аўтэнтыфікаваць некаторыя пакеты. Гэта можа быць з-за часовай " "праблемы з сеткай. Вы можаце паспрабаваць паўтарыць дзеяньне пазней. " "Глядзіце ніжэй спіс неаўтэнтыфікаваных пакетаў." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "Пакет “%s“ пазначаны для выдалення, але ён у чорным спісе выдалення." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Важны пакет “%s“ пазначаны для выдалення." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Спроба ўсталёўкі ўнесенай у чорны спіс версіі '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Немагчыма ўсталяваць \"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Немагчыма вызначыць мета-пакет" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Вашая сістэма не ўтрымлівае пакет ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop ці edubuntu-desktop таму немагчыма вызначыць якую версію Ubuntu вы " "маеце.\n" "Калі ласка, найперш усталюйце адзін з вышэй узгаданых пакетаў з дапамогай " "synaptic ці apt-get." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Чытанне кэша" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Памылка пры праверцы аўтэнтычнасці некаторых пакетаў" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Звычайна, гэта азначае, што іншы кіраўнік пакетаў (напрыклад apt-get ці " "aptitude) ужо працуе. Калі ласка, закройце іншае дастасаванне." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Апгрэйд праз аддаленае падлучэнне не падтрымліваецца" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Вы спрабуеце выканаць абнаўленьне праз ssh-злучэнне з непадтрымліваемым " "кліентам. Абнавіцеся ў тэкставым рэжыме праз \"do-release-upgrade\".\n" "\n" "Абнаўленне прыпынена. Паспрабуйце без ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Працягваць выкананне праз SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Гэты сеанс запушчаны праз ssh. Не рэкамендавана выконваць абнаўленьне праз " "ssh, бо ў выпадку няўдачы аднаўленне будзе вельмі складаным.\n" "\n" "Калі Вы працягнеце, дадатковая служба ssh будзе запушчана на порце «%s».\n" "Жадаеце працягнуць?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Запуск дадатковай sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Каб зрабіць аднаўленне ў выпадку памылкі лягчэйшым, на порце '%s' будзе " "запушчаная дадатковая служба sshd. Калі нешта здарыцца, з дапамогай ssh Вы " "зможаце далучыцца да дадзенай службы.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Калі ў вас уключаны брандмаўэр, вам магчыма трэба часова адкрыць гэты порт. " "Паколькі гэта патэнцыйна небяспечна, порт не адкрыецца аўтаматычна. Вы " "можаце адкрыць наступны спосабам:\n" "«%s» порт." #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Немагчыма абнавіць" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Абнаўленне ад '%s' да '%s' не падтрымліваецца дадзенай прыладай." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Усталёўка бяспечнага асяроддзя не атрымалася" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Не атрымалася стварыць бяспечнае асяроддзе." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Рэжым бяспечнага асяроддзя («пясочніцы»)" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Гэта абнаўленне запушчана ў бяспечным (тэставым) асяроддзі. Усе змены " "запісваюцца ў '%s' і будуць страчаныя пасля перазагрузкі.\n" "\n" "Да наступнай перазагрузкі ніякіх зменаў у сістэмным каталогу праводзіцца не " "будзе." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Python усталяваны некарэктна. Калі ласка, выпраўце сімвалічную спасылку " "\"/usr/bin/python\"." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Пакет 'debsig-verify' усталяваны" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Абнаўленне ня можа працягвацца, калі ўсталаваны гэты пакет.\n" "Спачатку выдаліце яго ў Synaptic або з дапамогай 'apt-get remove debsig-" "verify' і запуьціце абнаўленне ізноў." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Немагчыма запісаць у '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Няма доступу да сістэмнага каталога '%s' у вашай сістэме. Абнаўленне не " "можа працягвацца.\n" " Калі ласка, пераканайцеся ў наяўнасці доступу да сістэмнага каталога." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Загрузіць апошнія абнаўленні з інтэрнэту?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Апошнія абнаўленні могуць быць загружаны з Інтэрнэту і ўсталяваны пры " "абнаўленні ўсёй сістэмы. Калі вы падключаны да Інтэрнэту, гэта настойліва " "рэкамендуецца зрабіць.\n" "\n" "Абнаўленне сістэмы — гэта доўгі працэс, але па завяршэнні, ваша сістэма " "будзе ў актуальным стане. Вы можаце гэтага не рабіць, але рэкамендуем " "усталяваць апошнія абнаўленні як мага хутчэй.\n" "Калі вы адкажаце «Не», то абнаўленні праз Інтэрнет загружаны ня будуць." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "заблакавана пры абнаўленні да %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Не знойдзена ніводнага дзейснага люстэрка" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "У працэсе сканавання інфармацыі аб Вашых сховішчах, не было знойдзена " "люстэрка для абнаўлення дыстрыбутыву. Такое магчыма ў выпадку, калі Вы " "выкарыстоўваеце ўнутранае люстэрка, альбо інфармацыя аб люстэрках " "састарэла.\n" "\n" "Ці жадаеце Вы перазапісаць файл 'sources.list'? Калі Вы абярэце «Так», то " "будуць абноўлены ўсе '%s' запісаў да '%s'.\n" "Калі ж Вы абярэце «Не», то абнаўленне будзе адменена." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Згенераваць крыніцы па змаўчанні?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Ня знойдзены запіс для '%s' у файле 'sources.list'.\n" "\n" "Дадаць стандартны запіс для '%s'? Выбар «Не» азначае адмову ад абнаўлення." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Інфармацыя аб сховішчы няслушная" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Зыходнікі ад трэціх бакоў - адключаныя" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Некаторыя пабочныя крыніцы ў файле «sources.list» былі адключаныя. Вы " "зможаце іх зноў уключыць пасля абнаўлення з дапамогай утыліты «Крыніцы " "ўсталёўкі» альбо вашага мэнэджара пакункаў." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Пакунак у нестабільным стане" msgstr[1] "Пакункі ў няўстойлівым стане" msgstr[2] "Пакункаў у наўстойлівым стане" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Пакунак '%s' няўстойлівы і павінен быць пераўсталяваны, аднак, для яго ня " "знойдзен адпаведны архіў. Калі ласка, пераўсталюйце гэты пакунак уручную " "альбо выдаліце яго з сістэмы." msgstr[1] "" "Пакункі '%s' няўстойлівыя і павінны быць пераўсталяваны, аднак, для іх ня " "знойдзены адпаведныя архівы. Калі ласка, пераўсталюйце гэтыя пакункі уручную " "альбо выдаліце іх з сістэмы." msgstr[2] "" "Пакункі '%s' няўстойлівыя і павінны быць пераўсталяваны, аднак, для іх ня " "знойдзены адпаведныя архівы. Калі ласка, пераўсталюйце гэтыя пакункі уручную " "альбо выдаліце іх з сістэмы." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Памылка падчас абнаўлення" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Пры абнаўленні паўстала праблема. Звычайна гэта бывае выклікана праблемамі ў " "сетцы. Праверце сеткавыя злучэнні і паспрабуйце яшчэ." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Бракуе дыскавае прасторы" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Абнаўленне было спынена. Для абнаўлення патрабуецца агулам %s вольнай " "прасторы на дыску '%s'. Калі ласка, вызваліце ня меньш чым %s дадатковага " "месца на дыску '%s'. Ачысціце сметніцу і выдаліце часовыя пакеты былых " "усталёвак з дапамогай 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Падлічыць змены" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Ці жадаеце пачаць абнаўленне?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Абнаўленне скасавана" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Гэта абнаўленне будзе зараз скасавана і адбудзецца аднаўленне зыходнага " "стану сістэмы. Вы можаце працягнуць гэта абнаўленне пазней." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Не атрымалася загрузіць абнаўленні" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Абнаўленне было перапынена. Калі ласка, праверце ваша злучэнне з інтэрнэтам " "або крыніцу ўсталёўкі і паспрабуйце зноў. Усе загружаныя файлы былі " "захаваныя." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Памылка пры фіксаванні" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Аднаўленне першапачатковага стану сістэмы" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Немагчыма ўсталяваць абнаўленні" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Абнаўленне было скасавана. Ваша сістэма можа апынуцца ў стане непрыдатным " "для нармальнага выкарыстання. Зараз будзе запушчаны працэс аднаўлення (dpkg -" "-configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Абнаўленне спыненае. Калі ласка праверце злучэнне з Інтэрнэтам, альбо іншую " "крыніцу ўсталёўкі і паспрабуйце зноў. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Выдаліць састарэлыя пакеты?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "За_хаваць" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Выдаліць" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "Падчас ачысткі паўстала праблема. Падрабязнасці выкладзены ніжэй. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Неабходныя залежнасці не ўсталяваныя" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Неабходныя залежнасці \"%s\" не ўсталяваныя. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Праверка мэнэджара пакетаў" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Збой падрыхтоўкі да абнаўлення" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Падрыхтоўка да абнаўлення завяршылася няўдала" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Абнаўленне інфармацыі аб сховішчы" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Дадаванне кампакт-дыска завяршылася няўдала" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Выбачайце, даданне кампакт-дыска завяршылася няўдала." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Некарэктная інфармацыя аб пакеце" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Атрыманне" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Абнаўленне" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Абнаўленне скончана" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Абнаўленне скончана, аднак падчас працэсу абнаўлення здарыліся памылкі." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Пошук састарэлых праграм" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Абнаўленне сістэмы завершана" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Частковае абнаўленне завершана." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Не атрымалася знайсці заўвагі да выпуску" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Магчыма, сервер перагружаны. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Не атрымалася загрузіць заўвагі да выпуску" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Калі ласка, праверце вашае злучэнне з інтэрнэтам." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "аўтэнтыфікаваць '%(file)s' замест '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Не атрымалася запусціць сродак абнаўлення" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Подпіс прылады абнаўлення" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Прылада абнаўлення" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Не магу атрымаць" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Не магу атрымаць абнаўленне. Магчыма, паўстала праблема з сецівам. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Няўдалая ідэнтыфікацыя" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Праверка ідэнтыфікацыі абнаўлення не атрымалася. Магчыма, паўстала праблема " "з сецівам або на серверы. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Не магу выняць" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Не атрымалася выняць абнаўленне. Магчыма, паўстала праблема з сецівам або на " "серверы. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Праверка не атрымалася" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Праверка абнаўлення завяршылася няўдала. Магчыма, паўстала праблема з " "сецівам або на серверы. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Не атрымалася запусціць працэс абнаўлення" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Звычайна паўстае ў сістэме, дзе / tmp змантаваны пад noexec. Калі ласка, " "перамантуйце без noexec і запусціце абнаўленне зноў." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Паведамленне аб памылцы «%s»." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Абнаўленне" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Нататкі да выпуску" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Загрузка дадатковых файлаў пакетаў ..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Файл %s з %s на хуткасці %sБ/с" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Файл %s з %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Калі ласка, устаўце \"%s\" у прыладу \"%s\"" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Змена носьбіта" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms ужываецца" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Ваша сістэма выкарыстоўвае мэнэджар тамоў 'evms' в /proc/mounts. Праргама " "'evms' болей не падтрымліваецца. Калі ласка, зачыніце яе і запусціце " "абнаўленне зноў." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Абнаўленне можа выклікаць зніжэнне якасці эфектаў працоўнага стала і " "прадукцыйнасці ў гульнях і праграмах, што актыўна выкарыстоўваюць графіку." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "На гэтым кампутары выкарыстоўваюцца драйвера NVIDIA. Няма даступных версій " "гэтых драйвераў, якія працавалі бы з Вашай відэакарткай у Ubuntu 10.04 LTS\n" "\n" "Працягнуць?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "На гэтым кампутары выкарыстоўваюцца драйвера AMD 'fglrx'. Няма даступных " "версій гэтых драйвераў, якія працавалі бы з Вашым абсталяваннем ва 10.04 " "LTS\n" "\n" "Працягнуць?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Няма i686-сумяшчальнага працэсара" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ваша сістэма выкарыстоўвае i568-сумяшчальны працэсар, альбо працэсар у якім " "няма пашырэння «cmov». Усе пакеты былі сабраны з аптымізацыяй пад " "архітэктуру i686 і вышэй. Абнавіць вашу сістэму да новай версіі Ubuntu на " "гэтым кампутары не атрымаецца." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Няма працэсара ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ваша сістэма выкарыстоўвае працэсар архітэктуры ARM, старэйшы за архітэктуру " "ARMv6. Усе пакункі ў karmic былі пабудаваны з аптымізацыяй пад архітэктуру " "ARMv6 і вышэй. Вашу сістэму немагчыма абнавіць да новага рэлізу Ubuntu з " "бягучым апаратным забеспячэннем." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Служба init недаступна" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Падобна на тое, што Ваша сістэма з'яўляецца віртуалізаваным асяроддзем без " "службы init, напрыклад Linux-VServer.\n" "\n" "Вы ўпэўнены, што хочаце працягнуць?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Абнаўленне ў бяспечным асяроддзі з дапамогай aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Выкарыстоўваць дадзены шлях для пошука кампакт-дыска з пакункамі абнаўленняў." #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Выкарстоўваць інтэрфэйс. Зараз даступны: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "Гэты параметр САСТАРЭЎ і не будзе ўлічвацца" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Падрыхтаваць толькі частковае абнаўленне (sources.list ня будзе перазапісаны)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Адключыць падтрымку экрана GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Наладзіць каталог з дадзенымі" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Загрузка скончана" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Загрузка файла %li з %li на хуткасці %sБайт/с" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Засталося прыблізна %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Загрузка файла %li з %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Ужыванне зменаў" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "праблемы залежнасьцяў — пакідаем неналаджанымі" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Немагчыма ўсталяваць \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Абнаўленне будзе працягнута, але '%s' пакунак(аў) могуць быць у непрацоўным " "стане. Калі ласка, разглядзіце магчымасць аб паданні справаздачы на конт " "памылкі." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Замяніць адмысловы файл наладкі\n" " \"%s\"?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Вы страціце ўсе змены, якія зрабілі ў гэтым файле канфігурацыі, калі " "заменіце яго новай версіяй." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Ня знойдзена праграма \"diff\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Адбылася крытычная памылка" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Калі ласка, паведаміце аб гэтым як аб памылцы (калі вы яшчэ гэтага не " "зрабілі) і далучыце файлы /var/log/dist-upgrade/main.log и /var/log/dist-" "upgrade/apt.log у вашу справаздачу. Абнаўленне было скасавана.\n" "Ваш арыгінальны файл sources.list быў захаваны ў " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "націснута Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Гэта скасуе працэс і сістэма можа стаць непрацаздольнай. \r\n" "Вы сапраўды хочаце зрабіць гэта ?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Каб пазбегнуць страты дадзеных, зачыніце ўсе адчыненыя праграмы і дакументы." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Больш не падтрымліваецца Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Усталяванне старой версіі (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Выдаліць (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Больш не патрэбны (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Усталяваць (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Абнавіць (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Паказаць адрозненні >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Схаваць адрозненні" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Памылка" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Зачыніць" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Паказаць тэрмінал >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Схаваць тэрмінал" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Інфармацыя" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Дэталі" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Больш не падтрымліваецца (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Выдаліць %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Выдаліць %s (было ўсталявана аўтаматычна)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Усталёўка %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Абнаўленне %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Патрабуецца перазагрузка" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Перагрузіце сістэму для завяршэння абнаўлення" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Пера_запусціць" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Перарваць абнаўленне?\n" "Калі вы перапыніце абнаўленне, сістэма можа працаваць нестабільна. " "Настойліва рэкамендуем працягваць абнаўленне." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Скасаваць абнаўленне?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li дзень" msgstr[1] "%li дні" msgstr[2] "%li дзён" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li гадзіна" msgstr[1] "%li гадзіны" msgstr[2] "%li гадзін" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li хвіліна" msgstr[1] "%li хвіліны" msgstr[2] "%li хвілін" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li сэкунда" msgstr[1] "%li сэкунды" msgstr[2] "%li сэкундаў" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Загрузка працягнецца каля %s пры 1Мбіт DSL злучэнні і каля %s пры мадэмнам " "злучэнні на хуткасці 56Кбіт." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Загрузка працягнецца прыкладна %s на Вашам далучэнні. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Падрыхтоўка да абнаўлення" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Змена крыніц усталёўкі" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Атрымаць новыя пакеты" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Усталяваць абнаўленні" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Ачыстка" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d усталяваны пакет больш не падтрымліваецца Canonical. Вы можаце " "атрымаць падтрымку ў суполцы." msgstr[1] "" "%(amount)d усталяваных пакета больш не падтрымліваюцца Canonical. Вы можаце " "атрымаць падтрымку ў суполцы." msgstr[2] "" "%(amount)d усталяваных пакетаў больш не падтрымліваюцца Canonical. Вы можаце " "атрымаць падтрымку ў суполцы." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d пакет будзе выдалены." msgstr[1] "%d пакеты будзе выдалена." msgstr[2] "%d пакетаў будзе выдалена." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d новы пакет буде ўсталяваны." msgstr[1] "%d новых пакеты будзе ўсталявана." msgstr[2] "%d новых пакетаў будзе ўсталявана." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d пакет будзе абноўлены." msgstr[1] "%d пакеты будзе абноўлена." msgstr[2] "%d пакетаў будзе абноўлена." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Усяго неабходна загрузіць %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Для вашае сістэмы няма абнаўленняў. Абнаўленне будзе скасавана." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Патрабуецца перазагрузка" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Абнаўленне скончанае і патрабуецца перазагрузка. Перазагрузіцца зараз?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Калі ласка, паведаміце пра гэта як пра памылку і ўключаюць у сябе файлы " "/var/log/dist-upgrade/main.log і /var/log/dist-upgrade/apt.log ў Вашым " "дакладзе. Абнаўленне не сфармавалася.\n" "Імя арыгінальнае sources.list быў захаваны ў " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Абарваць" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Паніжана:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Каб працягнуць, націсніце [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Працягнуць [тН] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Дэталі [д]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "н" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "д" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Больш не падтрымліваецца: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Выдаліць: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Усталяваць: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Абнавіць: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Працягнуць [Тн] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Каб завяршыць абнаўленне, спатрэбіцца перазагрузка.\n" "Калі вы абярэце «т», сістэма будзе перазагружана." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Загрузка файла %(current)li з %(total)li з хуткасцю %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Загрузка файла %(current)li з %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Паказваць прагрэс для асобных файлаў" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "Ска_саваць абнаўленне" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Пра_цягваць абнаўленне" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Скасаваць працэс абнаўлення?\n" "\n" "Калі вы перапыніце абнаўленне, сістэма можа апынуцца ў непрацаздольным " "стане. Настойліва рэкамендуецца працягваць абнаўленне." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "За_пусціць абнаўленне" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "За_мяніць" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Розьніца паміж файламі" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "Па_ведаміць аб памылцы" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Працягнуць" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Пачаць абнаўленне?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Перазагрузіце сістэму, каб завяршыць абнаўленне\n" "\n" "Калі ласка, захавайце Вашу працу перад працягам." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Абнавіць дыстрыбутыў" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Усталёўка новых крыніц праграмнага забеспячэння" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Перазапуск кампутара" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Тэрмінал" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Абнавіць" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Даступная новая версія Ubuntu. Хочаце абнавіць?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Не абнаўляць" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Спытаць пазней" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Так, Абнавіць зараз" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Вы адмовіліся ад абнаўлення да новай версіі Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Паказаць версію і выйсці" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Тэчка, якая ўтрымлівае файлы дадзеных" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Запусціць пазначаны інтэрфейс" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Ідзе частковае абнаўленне" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Спампоўваецца праграма для абнаўлення дыстрыбутыва" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Праверка магчымасці абнаўлення да апошняй нестабільнай версіі дыстрыбутыва" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Паспрабуйце абнавіцца да самага апошняга выпуска з дапамогай $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Запусьціць у спэцыяльным рэжыме абнаўлення.\n" "Зараз падтрымліваецца рэгулярнае абнаўленьне для «настольных» і «серверных» " "сістэм." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Пратэставаць абнаўленне ў бяспечным рэжыме" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Правяраць наяўнасць новай версіі дыстрыбутыва і вярнуць вынік з дапамогай " "кода выхаду" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Ваш выпуск Ubuntu больш не падтрымліваецца." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Каб атрымаць інфармацыю аб абнаўленні, наведайце:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Новы выпуск ня знойдзены" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Абнаўленьне выпуску зараз немагчымае" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Абнаўленне рэлізу цяпер не можа быць выканана, паспрабуйце пазней. Сервер " "паведаміў: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Даступны новы выпуск '%s'." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Выканайце «do-release-upgrade», каб абнавіцца да яго." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Даступнае абнаўленне Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Вы адмовіліся ад абнаўлення да Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ka.po0000644000000000000000000017261212431225715014755 0ustar # translation of po_update-manager-ka.po to Georgian # Georgian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # # FIRST AUTHOR , 2006. # Vladimer Sichinava , 2006. # Vladimer Sichinava ვლადიმერ სიჭინავა , 2008. msgid "" msgstr "" "Project-Id-Version: po_update-manager-ka\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ka\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "სერვერი %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "მთავარი სერვერი" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "საკუთარი სერვერები" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "შეუძლებელი გახდა sources.list-ის ელემენტთა დათვლა" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "პაკეტების ფაილები ვერ მოინახა, იქნებ ეს არ არის Ubuntu-ს დისკი ან არასწორი " "არქიტეკტურაა?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "ვერ განხორციელდა CD-ს დამატება" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "შეცდომა CD-ს დამატებისას; განახლების პროცესი შეწყვეტილია. თუ დარწმუნებული " "ხართ, რომ ეს უბუნტუს CD-ს ბრალი არ არის, შეატყობინეთ ამ ხარვეზის შესახებ.\n" "\n" "ინფორმაცია ხარვეზის შესახებ:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "დაზიანებული პაკეტების მოშორება" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "პაკეტი '%s' არასრულყოფილია და საჭიროებს გადაყენებას, მაგრამ შეუძლებელია მისი " "არქივის პოვნა. გნებავთ ამ პაკეტის მყისვე მოშორება და გაგრძელება?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "შესაძლოა ფაილ-სერვერი გადატვირთულია" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "დაზიანებული პაკეტები" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "თქვენს სისტემაში არის დაზიანებული პაკეტები, რომელთა გამართვა ვერ ხერხდება ამ " "პროგრამით. ჯერ გამართეთ დაზიანებული პაკეტები (synaptic-ის ან apt-get-ის " "საშუალებით) და შემდეგ გააგრძელეთ." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "ამის მიზეზი შეიძლება იყოს:\n" "%s\n" "\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "შესაძლოა დროებითი პრობლემის ბრალი იყოს. სცადეთ მოგვიანებით." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "სისტემა ვერ მომზადდა განახლებისათვის" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "ზოგიერთი პაკეტის ავთენთიფიკაციის შეცდომა" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "ვერ ხერხდება ზოგიერთი პაკეტის აუთენთიფიკაცია. ეს შეიძლება იყოს კავშირის " "ხარვეზი. სცადეთ მოგვიანებით. ქვევით იხილეთ არააუთენთიფიცირებული პაკეტების " "სია." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' ვერ დაყენდა" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "მეტა-პაკეტი ვერ შეირჩა" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "თქვენს სისტემაში არ მოიძებნა ubuntu-desktop, kubuntu-desktop ან edubuntu-" "desktop პაკეტი, რის გამოც უბუნტუს ვერსიის დადგენა ვერ ხერხდება. \n" " სანამ გააგრძელებდეთ, დააყენეთ რომელიმე მათგანი synaptic ან apt-get-ის " "მეშვეობით." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "ქეშის კითხვა" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "შეუძლებელია ექსკლუზიური ბლოკის ჩატარება" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "ეს ნიშნავს რომ გაშვებულია სხვა პაკეტების მენეჯმენტის პროგრამა (როგორიცაა apt-" "get ან aptitude). ჯერ დახურეთ მოცემული პროგრამა." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "გავაგრძელოთ SSH-ს გამოყენებით?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "დამატებითი sshd-ს გაშვება" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "შეცდომის შემთხევაში პრობლემის ადვილად გადაჭრისათვის, გაეშვება დამატებითი " "sshd პორტზე '%s'. იმ შემთხვევაში თუ მიმდინარე ssh სესია არ იქნება " "ხელმისაწვდომი, თქვენ მაინც შეძლებთ დაუკავშირდეთ რომელიმე დამატებითს.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "შეუძლებელია განახლების ჩატარება" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "'%s'-დან '%s'-ზე განახლება არ არის მხარდაჭერილი მოცემული სერვისული პროგრამის " "მიერ." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "თქვენი python-ის ინსტალაცია დაზიანებულია. შეასწორეთ \"/usr/bin/python' " "სიმბოლური ბბული." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "პაკეტი 'debsig-verify' დაყენებულია" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "დაყენებულ პაკეტზე განახლება ვერ გაგრძელდება.\n" "გთხოვთ წაშალოთ ის ჯერ სინაპტიკით ან 'apt-get remove debsig-verify' ჯერ, " "შემდეგ კვლავ გაუშვით განახლება." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "გნებავთ ინტერნეტიდან უკანასკნელი განახლებების დამატება?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "არ მოინახა შესაბამისი სარკე" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "გავუშვათ ნაგულისხმევი წყაროების გენერაცია?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "რეპოზიტორიების ინფორმაცია არასწორია" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "დამატებითი წყაროები გამორთულია" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "ზოგი დამატებითი წყარო sources.list-ში გამორთულია. განახლების შემდეგ " "შეგეძლებათ მათი ჩართვა ინსტრუმენტ 'software-properties'-ით ან პაკეტების " "მოურავის საშუალებით." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "პაკეტი არამდგრად მდგომარეობაშია" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "შეცდომა განახლებისას" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "განახლებისას დაიშვა შეცდომა. როგორც წესი ეს ქსელური კავშირის პრობლემაა, " "გეთაყვა შეამოწმეთ თქვენი კავშირი და სცადეთ კიდევ ერთხელ." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "დისკზე არ არის საკმარისი თავისუფალი ადგილი" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "ცვლილებების გამოთვლა" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "განახლებების ჩამოტვირთვა ვერ ხერხდება" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "შეცდომა გადაცემისას" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "სისტემის საწყისი მდგომარეობის აღდგენა" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "განახლებების დაყენება ვერ ხერხდება" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "წავშალოთ მოძველებული პაკეტები?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_შენარჩუნება" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_წაშლა" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "შეცდომა გასუფთავებისას. დაწვრილებით იხილეთ ქვემოთ. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "საჭირო დამოკიდებულებები არ არის დაყენებული" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "საჭირო დამოკიდებულება '%s' არ არის დაყენებული. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "პაკეტების მოურავის შემოწმება" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "შეცდომა განახლების მომზადებისას" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "შეცდომა განახლების რეკვიზიტების მომზადებისას" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "რეპოზიტორიის ინფორმაციის განახლება" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "ინფორმაცია პაკეტის შესახებ არასწორია" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "ჩამოტვირთვა" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "მიმდინარეობს განახლება" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "განახლება დასრულებულია" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "მოძველებული პროდუქტების ძებნა" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "სისტემის განახლება დასრულებულია." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "ვერ მოინახა ჩანაწერი გამოშვების შესახებ" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "შესაძლებელია სერვერი გადატვირთულია. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "შეუძლებელია ვერსიის შენიშვნების გადმოწერა" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "შეამოწმეთ ინტერნეტ-კავშირი." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "განახლების პროგრამა ვერ გაიშვა" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "განახლების პროგრამის ხელმოწერა" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "განახლების პროგრამა" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "მიღება ვერ მოხერხდა" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "ვერ მოხერხდა განახლების მიღება. შესაძლოა ქსელის პრობლემა იყოს. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "აუთენტიფიკაცია ვერ მოხერხდა" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "განახლების აუთენტიფიკაცია ვერ მოხერხდა. შესაძლოა ქსელის ან სერვერის პრობლემა " "იყოს. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "განარქივება ვერ განხორციელდა" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "განახლების განარქივება ვერ განხორციელდა. შესაძლოა ქსელის ან სერვერის " "პრობლემა იყოს. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "განახლების შეჯერება წარუმატებლად დამთავრდა. შესაძლოა პრობლემა ქსელის ან " "სერვერის მიერ არის გამოწვეული. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "გამოშვების მონაცემები" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "ჩადევით '%s' '%s'-ში" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "მედიის შეცვლა" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "განახლების პაკეტებიანი cdrom-ის მოსაძებნად ისარგებლეთ მითითებული მისამართით" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "კომპონენტების გამოყენება. ხელმისაწვდომია სერვერზე: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "ნაწილობრივი განახლების ჩატარება (sources.list ხელმეორედ არ გადაიწერება)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "მონაცემთა დასტის დაყენება" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "ჩატვირთვა დასრულებულია" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "დარჩა დაახლოებით %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "იტვირთება %li ფაილი %li-დან" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "ცვლილებების დამტკიცება" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "ვერ დადგა '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "გადავაწეროთ ადრინდელს განახლებული კონფიგურაციის ფაილი\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "თუ დაეთანხმებით, კონფიგურაციის ფაილში თქვენს მიერ ადრე შეტანილი ცვლილებები " "დაიკარგება." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "'diff' ბრძანება ვერ მოინახა" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "დაიშვა ფატალური შეცდომა" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "დახურეთ გახსნილი პროგრამები და დოკუმენტები, მონაცემების დაკარგვის თავიდან " "ასაცილებლად." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "სხვაობის ჩვენება >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< სხვაობის დამალვა" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "შეცდომა" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&დახურვა" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "ტერმინალის ჩვენება >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< ტერმინალის დამალვა" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "ინფორმაცია" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "ცნობები" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "წაშლა %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "დაყენება %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "განახლდება %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "საჭიროებს გადატვირთვას" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "გადატვირთეთ სისტემა განახლების დასასრულებლად" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_გადატვირთვა" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "გნებავთ განახლების შეწყვეტა?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "მოცემული ჩამოტვირთვისთვის საჭიროა, დაახლოებით %s. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "განახლებისთვის მომზადება" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "პროგრამების მიღების არხების შეცვლა" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "ახალი პაკეტების მიღება" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "განახლებების დაყენება" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "გასუფთავება" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "წაიშლება %d პაკეტი." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "დადგება %d ახალი პაკეტი." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "განახლდება %d პაკეტი." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "სულ გადმოიტვირთება %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "თქვენი სისტემისათვის ვერ მოინახა განახლებები. პროცედურა შეწყვეტილია." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "საჭიროა გადატვირთვა" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "განახლება დასრულებულია და საჭიროებს გადატვირთვას. გნებავთ მყისვე გადატვირთვა?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "შეწყვეტა" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "წაშლა:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "გაგრძელება [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "ცნობები [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "წაშლა: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "დაყენება: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "განახლება: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "განახლების დასრულებისთვის, გადატვირთვაა საჭირო.\n" "\"დიახ\"-ის ამორჩევის შემთხვევაში, სისტემა გადაიტვირთება." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "მე-%(current)li ფაილის გადმოწერა %(total)li-დან. სიჩქარე - %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "მე-%(current)li ფაილის გადმოწერა %(total)li-დან" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "ცალკეული ფაილებისათვის თვალყურის დევნა" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "განახლების _შეწყვეტა" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "განახლების _გაგრძელება" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "შევწყვიტოთ განახლების პროცესი?\n" "\n" "განახლების შეწყვეტამ შესაძლებელია სისტემაზე ცუდად იმოქმედოს. გირჩევთ არ " "შეწყვიტოთ განახლების პროცესი." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "განახლების _დაწყება" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_ჩანაცვლება" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "განსხვავება ფაილებს შორის" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_ხარვეზის ანგარიშის გაგზავნა" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_გაგრძელება" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "გნებავთ განახლების დაწყება?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "დისტრიბუტივის განახლება" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "პროგრამების მიღების არხების შეცვლა" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "სისტემის გადატვირთვა" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "ტერმინალი" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_განახლება" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "ვერსიის ჩვენება და გასვლა" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "მითითებული ფრონტენდის გაშვება" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "ნაწილობრივი განახლების დაწყება" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "შეამოწმება, არის თუ არა შესაძლებელი ბოლო განვითარებად გამოცემაზე გადასვლა" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "სწადეთ განაახლოთ $distro-proposed -ზე" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "გაუშვით განახლების სპეც რეჟიმი.\n" "'desktop' ჩვეულებრივი სამაგიდო სისტემების განახლებისთვის, ხოლო 'server' " "სერვერ სისტემებისთვის." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "არავითარი ახალი გამოცემა" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/mhr.po0000644000000000000000000013020412431225715015137 0ustar # Mari (Meadow) translation for ubuntu-release-upgrader # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the ubuntu-release-upgrader package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Mari (Meadow) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:54+0000\n" "X-Generator: Launchpad (build 16985)\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/lv.po0000644000000000000000000020137112431225715014776 0ustar # translation of lp-upd-manager-lv.po to Latvian # Latvian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # # FIRST AUTHOR , 2006. # Raivis Dejus , 2006. # Rūdolfs Mazurs , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: lp-upd-manager-lv\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:43+0000\n" "Last-Translator: Iain Lane \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: lv\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "% serveris" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Galvenais serveris" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Pielāgotie serveri" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Neizdevās aprēķināt sources.list ierakstu" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Neizdevās atrast pakotņu datnes. Varbūt šis nav Ubuntu disks, vai izvēlēta " "nepareiza sistēmas arhitektūra?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Neizdevās pievienot CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Pievienojot CD, gadījās kļūda, tāpēc atjaunināšana tiks pārtraukta. Lūdzu, " "ziņojiet par šo kļūdu, ja šis ir īsts Ubuntu CD.\n" "\n" "Kļūdas paziņojums bija:\n" "“%s”" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Izņemt pakotni, kas ir sliktā stāvoklī" msgstr[1] "Izņemt pakotnes, kas ir sliktā stāvoklī" msgstr[2] "Izņemt pakotnes, kas ir sliktā stāvoklī" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Pakotne “%s” atrodas neatbilstīgā stāvoklī, un tā ir jāpārinstalē, taču tās " "arhīvu nevar atrast. Vai vēlaties to noņemt, lai turpinātu?" msgstr[1] "" "Pakotnes “%s” atrodas neatbilstīgā stāvoklī, un tās ir nepieciešams " "pārinstalēt, taču to arhīvu nevar atrast. Vai vēlaties tās noņemt, lai " "turpinātu?" msgstr[2] "" "Pakotnes “%s” atrodas neatbilstīgā stāvoklī, un tās ir nepieciešams " "pārinstalēt, taču to arhīvu nevar atrast. Vai vēlaties tās noņemt, lai " "turpinātu?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Iespējams, ka serveris ir pārslogots" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Bojātas pakotnes" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Jūsu sistēmā ir bojātas pakotnes, kuras nevar salabot ar šo programmu. Pirms " "turpināt, lūdzu, salabojiet tās, izmantojot synaptic vai apt-get rīkus." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Parādījusies neatrisināma problēma, aprēķinot uzlabojumu:\n" "%s\n" "\n" " To varētu būt izraisījis kāds no šiem iemesliem:\n" " * Uzlabošana uz pirmslaidiena Ubuntu versiju\n" " * Pašreizējās pirmslaidiena Ubuntu versijas lietošana\n" " * Neoficiālas programmu pakotnes, kuru piegādātājs nav Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Šī, visdrīzāk, ir īslaicīga problēma. Lūdzu, mēģiniet vēlāk vēlreiz." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Ja no tā visa nekas nav attiecināms, lūdzu, ziņojiet par šo kļūdu, " "izmantojot termināļa komandu “ubuntu-bug ubuntu-release-upgrader-core”." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Nevarēja aprēķināt uzlabojumu" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Kļūda, autentificējot dažas pakotnes" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Neizdevās autentificēt dažas pakotnes. Šī varētu būt īslaicīga tīkla " "problēma. Pamēģiniet atkārtot šo darbību vēlāk. Skatiet neautentificēto " "pakotņu sarakstu zemāk." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Pakotne “%s” ir atzīmēta kā izņemama, bet tā ir izņemšanas melnajā sarakstā." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Būtiska pakotne “%s” ir atzīmēta izņemšanai." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Mēģina instalēt versiju “%s”, kas atrodas melnajā sarakstā" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Neizdodas instalēt “%s”" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Nevarēja uzinstalēt vajadzīgās pakotnes. Lūdzu, ziņojiet par šo kļūdu, " "izmantojot termināļa komandu “ubuntu-bug ubuntu-release-upgrader-core”." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Neizdodas uzminēt meta-pakotni" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Šajā sistēmā nav instalēta neviena no ubuntu-desktop, kubuntu-desktop, " "xubuntu-desktop vai edubuntu-desktop darbvirsmas pakotnēm, un neizdevās " "noteikt, kāda ir Ubuntu versija.\n" "Pirms turpināt, lūdzu, instalējiet vienu no augstākminētajām pakotnēm, " "izmantojot synaptic vai apt-get rīkus." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Lasa kešatmiņu" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Neizdevās iegūt ekskluzīvu pieeju" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Tas parasti nozīmē, ka jau darbojas cita pakotņu pārvaldības lietotne " "(piemēram apt-get vai aptitude). Lūdzu, vispirms tās aizveriet." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Nav atbalstīta uzlabošana, izmantojot attālināto savienojumu" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Jūs veicat uzlabošanu, izmantojot attālinātu ssh savienojumu ar priekšpusi, " "kas šādu darbību neatļauj. Lūdzu, mēģiniet uzlabošanu teksta režīmā ar “do-" "release-upgrade” komandu.\n" "\n" "Uzlabošana tagad tiks pārtraukta. Lūdzu, mēģiniet bez ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Turpināt, izmantojot SSH savienojumu?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Izskatās, ka šī sesija ir palaista, izmantojot ssh. Nav ieteicams veikt " "uzlabošanu, izmantojot ssh, jo neveiksmes gadījumā būs grūtāk atgūties.\n" "\n" "Ja turpināsiet, tiks palaists papildu ssh dēmons, kas izmantos portu “%s”.\n" "Vai vēlaties turpināt?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Palaiž papildu sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Lai neveiksmes gadījumā atvieglotu atgūšanos, uz “%s” porta tiks palaists " "papildu sshd. Ja kaut kas noiet greizi ar pašreizējo ssh, joprojām varēsiet " "savienoties ar papildu ssh.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Ja jūs izmantojat ugunsmūri, jums vajadzēs uz brīdi atvērt šo portu. Tā kā " "tas ir potenciāli bīstami, tas netiek darīts automātiski. Jūs varat atvērt " "portu ar, piemēram:\n" "“%s”" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Neizdodas uzlabot" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "“%s” uzlabošana uz “%s” netiek atbalstīta, izmantojot šo rīku." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Smilškastes iestatīšana neizdevās" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Neizdevās izveidot smilškastes vidi." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Smilškastes režīms" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Šis atjauninājums tiek izpildīts smilšu kastē (testa režīmā). Visas izmaiņas " "tiek ierakstītas “%s” un nesaglabāsies pēc pārstartēšanas.\n" "*Nekādas* izmaiņas, kas tiek ierakstītas sistēmas mapē kopš šī brīža līdz " "pārstartēšanai, nav pastāvīgas." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Jūsu python instalācija ir bojāta. Lūdzu, salabojiet “/usr/bin/python” " "simbolisko saiti." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pakotne “debsig-verify” ir uzinstalēta" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Uzlabošanu nevar turpināt, kamēr šī pakotne nav noņemta.\n" "Lūdzu, noņemiet to izmantojot Synaptic vai “apt-get remove debsig-verify” un " "tad palaidiet uzlabošanu vēlreiz." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Nevar rakstīt “%s”" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Nevar rakstīt sistēmas mapē “%s” un turpināt atjauninājuma uzlikšanu. \n" "Pārbaudiet, vai sistēmas mapē ir rakstāma." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Iekļaut pēdējās izmaiņas no Interneta?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Uzlabošanas sistēma var izmantot Internetu, lai automātiski lejupielādētu " "jaunākos atjauninājumus un instalēt tos uzlabošanas laikā. To ir ļoti " "ieteicams darīt, ja ir tīkla savienojums.\n" "\n" "Uzlabošana aizņems ilgāku laiku, bet pēc pabeigšanas sistēma būs pilnībā " "aktuāla. Jūs varat izvēlēties to nedarīt, bet tad jums vajadzētu instalēt " "pēdējos atjauninājumus pēc uzlabošanas pabeigšanas.\n" "Ja šeit atbildēsiet “nē”, tad tīkls netiks izmantots vispār." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "deaktizivēts, uzlabojot uz %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Netika atrasts derīgs spoguļserveris" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Skenējot jūsu krātuvju informāciju, neizdevās atrast uzlabošanas spoguļa " "ierakstu. Tas var notikt, ja jūs darbināt iekšējo spoguli vai arī spoguļa " "informācija ir novecojusi.\n" "\n" "Vai tomēr vēlaties pārrakstīt “sources.list” datni? Ja izvēlēsieties “Jā”, " "tad tas atjauninās visus “%s” ierakstus uz “%s”.\n" "Ja izvēlēsieties “Nē”, uzlabošana tiks atcelta." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Izveidot noklusējuma avotus?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Skenējot jūsu “sources.list”, netika atrasts derīgs “%s” ieraksts.\n" "\n" "Vai nepieciešams pievienot noklusējuma “%s” ierakstus? Ja izvēlēsieties " "“Nē”, uzlabošana tiks atcelta." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Informācija par krātuvēm ir nederīga" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Atjauninot krātuves informāciju, izveidojās nederīga datne, tāpēc tiek " "uzsākts kļūdu ziņošanas process." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Neatkarīgie avoti deaktivēti" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Daži neatkarīgo avotu ieraksti jūsu “sources.list” datnē tika deaktivēti. " "Pēc sistēmas uzlabošanas tos varat atkal aktivēt ar “software-properties” " "rīku vai pakotņu pārvaldnieku." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pakotne nekonsekventā stāvoklī" msgstr[1] "Pakotnes nekonsekventā stāvoklī" msgstr[2] "Pakotnes nekonsekventā stāvoklī" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Pakotne “%s” atrodas nekonsekventā stāvoklī un to jāpārinstalē, taču tās " "arhīvu nevar atrast. Lūdzu, pašrocīgi pārinstalējiet vai noņemiet to no " "sistēmas." msgstr[1] "" "Pakotnes “%s” atrodas nekonsekventā stāvoklī un tās ir jāpārinstalē, taču to " "arhīvu nevar atrast. Lūdzu, pašrocīgi pārinstalējiet vai noņemiet tās no " "sistēmas." msgstr[2] "" "Pakotnes “%s” atrodas nekonsekventā stāvoklī un tās ir jāpārinstalē, taču to " "arhīvu nevar atrast. Lūdzu, pašrocīgi pārinstalējiet vai noņemiet tās no " "sistēmas." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Kļūda, veicot atjaunināšanu" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Atjaunināšanas laikā radusies problēma. Parasti tā ir kāda tīkla problēma. " "Lūdzu, pārbaudiet jūsu tīkla savienojumu un mēģiniet vēlreiz." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Diskā nav pietiekoši daudz brīvas vietas" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Uzlabošana tika pārtraukta. Uzlabošanai kopā nepieciešams %s brīvās vietas " "“%s” diskā. Lūdzu, atbrīvojiet vismaz papildu %s uz “%s” diska. Iztukšojiet " "savu miskasti un noņemiet iepriekšējo instalēšanu pagaidu pakotnes " "izmantojot “sudo apt-get clean” komandu." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Aprēķina izmaiņas" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Vai vēlaties sākt uzlabošanu?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Uzlabošana atcelta" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Uzlabošana tagad tiks atcelta. Tiks atjaunots sākotnējais sistēmas " "stāvoklis. Jūs varēsiet turpināt vēlāk." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Neizdevās lejupielādēt uzlabojumus" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Atjaunināšana tika apturēta. Lūdzu, pārbaudiet savu interneta savienojumu " "vai instalēšanas vidi un mēģiniet atkal. Visas līdz šim lejupielādētās " "datnes tiek paturētas." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Kļūda apstiprināšanas laikā" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Atjauno sākotnējo sistēmas stāvokli" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Neizdevās instalēt uzlabojumus" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Uzlabošana ir pārtraukta. Sistēma varētu būt nelietojamā stāvoklī. Tagad " "tiks veikta atgūšanās (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Lūdzu, ziņojiet par šo problēmu ar pārlūku adresē " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug un " "kļūdas ziņojumam pievienojiet datnes no /var/log/dist-upgrade/.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Uzlabošana tika pārtraukta. Lūdzu, pārbaudiet savu Interneta savienojumu vai " "instalēšanas datu nesēju un mēģiniet vēlreiz. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Vai aizvākt novecojušās pakotnes?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Paturēt" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Izņemt" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Uzkopšanas laikā gadījās kļūda. Lūdzu, izlasiet zemāk redzamo ziņojumu, lai " "iegūtu sīkāku informāciju. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Nav instalētās nepieciešamās atkarības" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Nav instalēta nepieciešamā atkarība “%s”. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Pārbauda pakotņu pārvaldnieku" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Neizdevās sagatavot uzlabošanu" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Sistēmas sagatavošana atjaunināšanai neizdevās, tāpēc tiek uzsākts kļūdu " "ziņošanas process." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Neizdevās iegūt uzlabošanas priekšnosacījumus" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Sistēmai neizdevās iegūt uzlabošanas priekšnosacījumus. Uzlabošana tiks " "tagad pārtraukta un sistēma tiks atjaunota uz iepriekšējo stāvokli.\n" "\n" "Papildus tiek uzsākts kļūdu ziņošanas process." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Atjaunina krātuvju informāciju" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Neizdevās pievienot cdrom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Diemžēl neizdevās pievienot cdrom." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Nederīga informācija par pakotnēm" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Iegūst" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Uzlabo" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Uzlabošana pabeigta" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Uzlabošana ir pabeigta, bet tās laikā bija kļūdas." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Meklē novecojušu programmatūru" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Sistēmas uzlabošana ir pabeigta." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Daļējā uzlabošana pabeigta." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Neizdevās atrast piezīmes par laidienu" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Serveris varētu būt pārslogots. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Neizdevās lejupielādēt laidiena piezīmes" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Lūdzu, pārbaudiet savu Interneta savienojumu." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "autentificēt “%(file)s” ar “%(signature)s” " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "atarhivē “%s”" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Neizdevās palaist uzlabošanas rīku" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Tā visdrīzāk ir kļūda uzlabošanas rīkā. Lūdzu, ziņojiet par to kā par kļūdu, " "izmantojot komandu “ubuntu-bug ubuntu-release-upgrader-core”." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Uzlabošanas rīka paraksts" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Uzlabošanas rīks" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Neizdevās iegūt" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Neizdevās iegūt uzlabojumus. Tā varētu būt tīkla problēma. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Neizdevās autentificēties" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Neizdevās autentificēt uzlabojumu. Tā varētu būt gan tīkla, gan servera " "problēma. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Neizdevās atarhivēt" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Neizdevās atarhivēt uzlabojumu. Tā varētu būt gan tīkla, gan servera " "problēma. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Pārbaude neizdevās" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Neizdevās pārbaudīt uzlabojumu. Tā varētu būt gan tīkla, gan servera " "problēma. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Neizdodas palaist uzlabošanu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "To parasti izraisa sistēma, kurā /tmp tiek montēta ar noexec opciju. Lūdzu, " "pārmontējiet bez noexec un uzlabojiet sistēmu atkal." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Kļūdas paziņojums ir “%s”." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Uzlabot" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Laidiena piezīmes" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Lejupielādē papildu pakotņu datnes..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Datne %s no %s ar ātrumu %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Datne %s no %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Lūdzu, ievietojiet “%s” diskdzinī “%s”" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Datu nesēja maiņa" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "Tiek izmantots evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Jūsu sistēma izmanto “evms” sējumu pārvaldnieku /proc/mounts. “Evms” " "programmatūra vairs nav atbalstīta, tāpēc, lūdzu, izslēdziet to un palaidiet " "uzlabošanu vēlreiz." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Jūs grafikas aparatūra pilnībā neatbalsta “unity” darbvirsmas vides " "darbināšanu. Pēc atjaunināšanas vide darbosies ļoti lēni. Mēs iesakām " "pagaidām paturēt LTS versiju. Lai uzzinātu vairāk, skatiet " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Vai vēl " "aizvien vēlaties uzlabot?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Iespējams, ka Ubuntu 12.04 LTS vairs neatbalsta jūsu grafikas aparatūru." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Intel grafikas aparatūras atbalsts Ubuntu 12.04 LTS ir ierobežots un pēc " "atjauninājuma varētu būt problēmas. Vairāk informācijai skatiet " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Vai vēlaties " "turpināt atjaunināšanu?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Atjaunināšana var samazināt darbvirsmas efektus, datora veiktspēju spēlēs " "vai citās grafiski prasīgās programmās." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Šis dators izmanto NVIDIA “nvidia” videokartes draiveri. Diemžēl Ubuntu " "10.04 LTS nav pieejama šī draivera versija, kas strādātu ar jūsu aparatūru.\n" "\n" "Vai vēlaties turpināt?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Šis dators izmanto AMD “fglrx” videokartes draiveri. Diemžēl Ubuntu 10.04 " "LTS nav pieejama šī draivera versija, kas strādātu ar jūsu aparatūru.\n" "\n" "Vai jūs vēlaties turpināt?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Nav i686 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sistēma izmanto i586 CPU vai CPU kuram nav “cmov” paplašinājuma. Visas " "pakotnes tika būvētas ar optimizācijām, kurām ir nepieciešams i686 kā " "minimālā arhitektūra. Ar esošo aparatūru nav iespējams uzlabot Ubuntu uz " "jaunu laidienu." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Nav ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Jūsu sistēma izmanto ARM CPU, kas ir vecāks kā ARMv6 arhitektūra. Visas " "karmic pakotnes tika būvētas ar optimizācijām, kas pieprasa ARMv6 kā " "minimālo arhitektūru. Diemžēl nav iespējams uzlabot jūsu sistēmu uz jaunāko " "Ubuntu versiju ar šo aparatūru." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Nav pieejams init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Jūsu sistēma šķiet ir virtualizēta vide bez init dēmona, piemēram, Linux-" "VServer. Ubuntu 10.04 LTS nevar darboties šādā vidē, tāpēc jums vispirms " "vajadzēs atjaunināt savas virtuālās mašīnas konfigurāciju.\n" "\n" "Vai tiešām vēlaties turpināt?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Smilškastes uzlabošana, izmantojot aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Izmantot doto ceļu, lai meklētu CD-ROM disku ar uzlabojamām pakotnēm" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Lietot saskarni. Šobrīd pieejamās: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*NOVECOJIS* šī opcija tiks ignorēta" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Veikt tikai daļēju atjaunināšanu (nepārrakstīt sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Deaktivēt GNU ekrāna atbalstu" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Iestatīt datu mapi" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Pakotnes ir iegūtas" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Iegūst datni %li no %li ar %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Atlikušas aptuveni %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Iegūst datni %li no %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Pielieto izmaiņas" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "atkarību problēmas — atstāj nekonfigurētu" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Neizdevās instalēt “%s”" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Uzlabošana tiks turpināta, bet “%s” pakotne varētu nebūt darba kārtībā. " "Lūdzu, apsveriet ziņot par šo kļūdu." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Aizvietot pielāgoto konfigurācijas datni\n" "“%s”?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Jūs zaudēsiet visas izmaiņas, kuras esat veicis šajā konfigurācijas datnē, " "ja aizvietosiet to ar jaunāku versiju." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Netika atrasta komanda “diff”" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Gadījās fatāla kļūda" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Lūdzu, ziņojiet par šo kā par kļūdu (ja vien neesat to jau izdarījis) un " "iekļaujiet datnes /var/log/dist-upgrade/main.log un /var/log/dist-" "upgrade/apt.log savā ziņojumā. Uzlabošana ir apturēta.\n" "Sākotnējā sources.list datne tika saglabāta " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Nospiests Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Tas pārtrauks darbību un var atstāt jūsu sistēmu bojātā stāvoklī. Vai tiešām " "vēlaties to darīt?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Aizveriet lietotnes un dokumentus, lai izvairītos no datu zudumiem." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Canonical vairs neatbalsta (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Pazemina (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Izņemt (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Vairs nav vajadzīgi (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instalēt (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Uzlabot (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Rādīt atšķirības >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Slēpt atšķirības" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Kļūda" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Aizvērt" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Rādīt termināli >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Slēpt termināli" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informācija" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Sīkāka informācija" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Vairs netiek atbalstīts %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Izņemt %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Izņemt (tika instalēts automātiski) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instalēt %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Uzlabot %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Nepieciešama pārstartēšana" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Lai pabeigtu uzlabošanu, pārstartējiet datoru" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Pā_rstartēt tagad" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Atsaukt notiekošo uzlabošanu?\n" "\n" "Ja pārtrauksiet uzlabošanu, sistēma var kļūt nelietojama. Jums būtu vēlams " "turpināt uzlabošanas procesu." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Atcelt uzlabošanu?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dienu" msgstr[1] "%li dienas" msgstr[2] "%li dienu" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li stundu" msgstr[1] "%li stundas" msgstr[2] "%li stundu" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minūti" msgstr[1] "%li minūtes" msgstr[2] "%li minūšu" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekundi" msgstr[1] "%li sekundes" msgstr[2] "%li sekunžu" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Lejupielāde aizņems apmēram %s ar 1Mbit DSL savienojumu un apmēram %s ar 56k " "modemu." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Lejupielāde aizņems apmēram %s ar jūsu savienojumu. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Gatavojas uzlabošanai" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Saņem jaunus programmatūras kanālus" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Saņem jaunās pakotnes" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Instalē uzlabojumus" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Uzkopj" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Canonical vairs neatbalsta %(amount)d instalētu pakotni. Vēl aizvien var " "dabūt atbalstu no kopienas." msgstr[1] "" "Canonical vairs neatbalsta %(amount)d instalētas pakotnes. Vēl aizvien var " "dabūt atbalstu no kopienas." msgstr[2] "" "Canonical vairs neatbalsta %(amount)d instalētu pakotņu. Vēl aizvien var " "dabūt atbalstu no kopienas." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakotne tiks izņemta." msgstr[1] "%d pakotnes tiks izņemtas." msgstr[2] "%d pakotņu tiks izņemtas." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d pakotne tiks instalēta." msgstr[1] "%d pakotnes tiks instalētas." msgstr[2] "%d pakotņu tiks instalētas." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakotne tiks uzlabota." msgstr[1] "%d pakotnes tiks uzlabotas." msgstr[2] "%d pakotņu tiks uzlabotas." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Kopā jālejupielādē %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Atjauninājumu instalēšana var aizņemt vairākas stundas. Kolīdz lejupielāde " "ir pabeigta, atjauninājumu instalēšanu vairs nevar atcelt." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Atjauninājumu saņemšana un instalēšana var aizņemt vairākas stundas. Kolīdz " "lejupielāde ir pabeigta, atjauninājumu instalēšanu vairs nevar atcelt." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Pakotņu izņemšana var aizņemt vairākas stundas. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Programmatūra šajā datorā ir aktuāla." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Jūsu sistēmai uzlabojumi nav pieejami. Uzlabošana tagad tiks pārtraukta." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Nepieciešama pārstartēšana" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Uzlabošana ir pabeigta un ir nepieciešama sistēmas pārstartēšana. Vai " "vēlaties to veikt tagad?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Lūdzu, ziņojiet par to kā par kļūdu un iekļaujiet datnes /var/log/dist-" "upgrade/main.log un /var/log/dist-upgrade/apt.log savā ziņojumā. Uzlabošana " "ir pārtraukta.\n" "Sākotnējais sources.list tika saglabāts /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Pārtrauc" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Pazemināta:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Lai turpinātu, piespiediet [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Turpināt [jN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Sīkāka informācija [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "j" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Vairs netiek atbalstīts — %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Izņem — %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instalē — %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Uzlabo — %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Turpināt [Jn} " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Lai pabeigtu uzlabošanu, ir nepieciešama pārstartēšana.\n" "Ja izvēlēsieties “j”, sistēma tiks pārstartēta." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Lejupielādē datni %(current)li no %(total)li ar ātrumu %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Lejupielādē datni %(current)li no %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Rādīt katras datnes progresu" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "At_celt uzlabošanu" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Tu_rpināt uzlabošanu" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Pārtraukt pašlaik notiekošo uzlabošanu?\n" "\n" "Ja pārtrauksiet uzlabošanu, sistēma var kļūt nelietojama. Jums būtu vēlams " "turpināt uzlabošanas procesu." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Sākt uzlabošanu" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Aizvietot" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Atšķirība starp datnēm" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Ziņot par kļūdu" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Turpināt" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Sākt uzlabošanu?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Pārstartējiet sistēmu, lai pabeigtu uzlabošanu\n" "\n" "Lūdzu, saglabājiet savu darbu, pirms turpināt." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Distributīva uzlabošana" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Modernizē uz Ubuntu 13.04 versiju" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Iestata jaunos programmatūras kanālus" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Pārstartē datoru" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminālis" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Uzlabot" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Ir pieejama jauna Ubuntu versija. Vai vēlaties uzlabot savu sistēmu?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Neuzlabot" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Pajautājiet man vēlāk" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Jā, uzlabot tagad" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" "Jūs esat atteicies no savas sistēmas uzlabošanas uz jauno Ubuntu versiju" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Jūs varat uzlabot vēlāk, atberot programmatūras atjauninātāju un spiežot " "“Uzlabot”." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Veikt laidiena uzlabošanu" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Lai modernizet Ubuntu, jums ir jaautentificejas." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Veikt daļēju uzlabošanu" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Lai veikt daleju atjauninajumu, jums ir jaautentificejas." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Parāda versiju un iziet" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Mape, kas satur datu datnes" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Darbināt norādīto saskarni" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Darbojas daļēja uzlabošana" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Lejupielādē laidiena uzlabošanas rīku" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Pārbaudīt, vai ir iespējama uzlabošana uz jaunāko izstrādes laidienu" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Mēģiniet uzlabot uz jaunāko laidienu, izmantojot $distro-proposed " "uzlabošanas rīku" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Palaist īpašā uzlabošanas režīmā.\n" "Šobrīd ir pieejamas šādas iespējas — “desktop”, lai uzlabotu parastas " "darbstacijas sistēmu un “server”, lai uzlabotu serverus." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testēt uzlabošanu ar smilškastes aufs pārklājumu" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Tikai pārbaudīt, vai jaunais distribūcijas laidiens ir pieejams, un paziņot " "rezultātu ar izejas kodu" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Pārbauda, vai pieejams jaunāks Ubuntu laidiens" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Jūsu Ubuntu versija vairs netiek atbalstīta." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Informāciju par uzlabošanu meklējiet:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Jauns laidiens netika atrasts" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Laidiena uzlabošana šobrīd nav iespējama" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Šobrīd nevar veikt laidiena uzlabošanu, lūdzu, mēģiniet vēlāk. Serveris " "ziņoja — “%s”" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Ir pieejams jauns laidiens “%s”." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Palaidiet “do-release-upgrade”, lai uz to uzlabotu sistēmu." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Pieejams Ubuntu sistēmas uzlabojums uz %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Jūs esat atteicies no sistēmas uzlabošanas uz Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Pievienot atkļūdošanas izvadi" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Nepieciešama autentifikācija, lai veiktu laidiena uzlabošanu" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Nepieciešama autentifikācija, lai veiktu daļēju uzlabošanu" ubuntu-release-upgrader-0.220.10/po/ubuntu-release-upgrader.pot0000644000000000000000000013031612431225715021310 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:207 ../DistUpgrade/distro.py:437 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:225 ../DistUpgrade/distro.py:231 #: ../DistUpgrade/distro.py:247 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:251 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:151 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:154 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:255 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:368 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:703 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:706 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:711 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:762 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:763 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:783 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:787 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:796 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:914 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:915 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:926 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:927 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:719 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:752 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:773 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:774 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:809 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:810 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:817 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:818 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:860 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:863 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:911 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:912 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:951 #: ../DistUpgrade/DistUpgradeController.py:1733 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:983 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1056 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1057 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1063 #: ../DistUpgrade/DistUpgradeController.py:1187 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1064 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1138 #: ../DistUpgrade/DistUpgradeController.py:1175 #: ../DistUpgrade/DistUpgradeController.py:1280 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1140 #: ../DistUpgrade/DistUpgradeController.py:1177 #: ../DistUpgrade/DistUpgradeController.py:1319 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1141 #: ../DistUpgrade/DistUpgradeController.py:1156 #: ../DistUpgrade/DistUpgradeController.py:1178 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1146 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at http://bugs.launchpad.net/ubuntu/" "+source/ubuntu-release-upgrader/+filebug and attach the files in /var/log/" "dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1268 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1269 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1269 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1281 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1357 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1358 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1626 #: ../DistUpgrade/DistUpgradeController.py:1691 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1631 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1632 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1646 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1647 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1675 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1682 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1683 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1714 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1715 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1739 #: ../DistUpgrade/DistUpgradeController.py:1795 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1745 #: ../DistUpgrade/DistUpgradeController.py:1799 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1750 #: ../DistUpgrade/DistUpgradeController.py:1801 #: ../DistUpgrade/DistUpgradeController.py:1808 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1751 #: ../DistUpgrade/DistUpgradeController.py:1802 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1758 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1771 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1820 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:117 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:512 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:514 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Do you still want to continue with the " "upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:536 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:538 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:560 #: ../DistUpgrade/DistUpgradeQuirks.py:588 #: ../DistUpgrade/DistUpgradeQuirks.py:615 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:619 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:649 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:650 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:686 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:687 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:707 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:708 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:138 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:155 #: ../DistUpgrade/DistUpgradeViewGtk3.py:312 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:158 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:189 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:215 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:220 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:221 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:238 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:239 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:259 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:480 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:481 msgid "" "Please report this as a bug (if you haven't already) and include the files /" "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:498 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:499 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:632 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:650 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:651 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:576 #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-upgrade/main." "log and /var/log/dist-upgrade/apt.log in your report. The upgrade has " "aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:8 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 ../check-new-release-gtk:133 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:194 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:198 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:104 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:151 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:204 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ast.po0000644000000000000000000017667312431225715015164 0ustar # Asturian translation for update-manager # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2008. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:43+0000\n" "Last-Translator: ivarela \n" "Language-Team: Asturian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ast\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Sirvidores pa %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Sirvidor principal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Sirvidores personalizaos" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Nun pudo calculase la entrada sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Nun puede llocalizase dengún paquete, seique nun ye un discu d'Ubuntu o nun " "ye l'arquiteutura correuta." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Falló amestar el CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Asocedió un erru al amestar el CD; Torgóse l'anovamientu. Por favor, informe " "d'esto como un fallu si esti ye un CD válidu d'Ubuntu.\n" "\n" "El mensax d'error foi:\n" "«%s»" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Desaniciar paquete en mal estáu" msgstr[1] "Desaniciar paquetes en mal estáu" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "El paquete «%s» ta nun estáu inconsistente y hai de reinstalalu, pero nun " "s'alcuentra en dengún repositoriu. ¿Quies desinstalar esti paquete agora pa " "continuar?" msgstr[1] "" "Los paquetes «%s» tán nun estáu inconsistente y hai de reinstalalos, pero " "nun s'alcuentren en dengún repositoriu. ¿Quies desinstalar estos paquete " "agora pa continuar?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "El sirvidor puede tar sobrocargáu" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paquetes frayaos" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "El to sistema contién paquetes frayaos que nun pueden iguase con esti " "software. Por favor ígualo enantes d'usar synaptic o apt-get" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Hebo un problema ensin solución al calcular l'anovamientu:\n" "%s\n" "\n" " L'orixe pue ser por cuenta de:\n" " * Anovar a una versión pre-llanzamientu d'Ubuntu\n" " * Tener yá instalada la versión pre-llanzamientu actual d'Ubuntu\n" " * Paquetes de software non oficiales que Ubuntu nun ufre\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Dablemente seya un problema transitoriu, téntelo otra vegada más sero." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Si nada d'esto aplica, informa d'esti fallu usando la orde «ubuntu-bug " "ubuntu-release-upgrader-core» nuna terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Nun pue calculase l'anovamientu de versión" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Error autentificando dalgunos paquetes" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Nun se foi quien a autenticar dalgunos paquetes. Esto pue debese a un " "problema transitoriu na rede. Pruebe otra vegada más sero. Vea abaxo una " "llista de los paquetes non autenticaos." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "El paquete '%s' ta conseñáu pa desaniciar, pero ta na llista de non " "desaniciables." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "El paquete esencial '%s' ta conseñáu pa desaniciar." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Intentando instalar la versión prohibida «%s»" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Nun puede instalase '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Nun foi dable instalar un paquete requeríu. Informa d'esto como un fallu " "usando «ubuntu-bug ubuntu-release-upgrader-core» nuna terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Nun pudo determinase'l meta-paquete" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "El to sistema nun contién un paquete ubuntu-desktop, kubuntu-desktop, " "xubuntu-desktop o edubuntu-desktop y nun foi dable detectar qué versión " "d'Ubuntu tas executando.\n" " Por favor, instala un de los paquetes d'abaxo enantes d'usar Synaptic o apt-" "get." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Lleendo cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Nun pudo obtenese un bloquéu esclusivu" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Esto normalmente quier dicir que yá ta executándose otra aplicación de " "xestión de paquetes (como apt-get o aptitude). Por favor, pieslla esa " "aplicación primero." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Nun hai sofitu p'anovar per conexón remota" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Tas executando l'anovamientu sobre una conexón ssh remota con una interface " "d'usuariu que nun lo permite. Intenta anovar en mou testu con «do-release-" "upgrade».\n" "\n" "L'anovamientu va parase agora. Inténtalo ensin ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "¿Continuar executando baxo SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Esta sesión paez tar executándose baxo ssh. Nun ye recomendable facer agora " "un anovamientu sobre ssh, porque en caso de fallu faise bien abegoso la " "recuperación.\n" "\n" "Si sigues, aniciaráse un degorriu ssh adicional nel puertu «%s».\n" "¿Quies siguir?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Aniciando sshd adicional" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Pa facer más fácil la recuperación en casu de fallu, aniciaráse un sshd " "estra nel puertu «%s». Si daqué va mal col ssh n'execución, entá podrás " "coneutate al estra.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Si executes un tornafueos, pues necesitar abrir esti puertu temporalmente. " "Como esto ye potencialmente peligroso, nun se fai automáticamente. Pues " "abrir el puertu con:\n" "«%s»" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Nun se pue anovar" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Esta ferramienta nun soporta anovamientos de «%s» a «%s»." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Falló la configuración de Sandbox" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Nun foi dable crear un entornu sandbox." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Mou Sandbox" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Esti anovamientu ta faciéndose nel mou (prueba) «sandbox». Tolos cambeos " "escríbense en «%s» y van perdese nel siguiente arranque.\n" "\n" "*Dengún* de los cambeos escritos nel direutoriu de sistema va ser " "permanente, dende agora hasta'l siguiente arranque." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "La so instalación de python ta toyida. Por favor, igüe l'enllaz simbólicu " "«/usr/bin/python»." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "El paquete 'debsig-verify' ta instaláu" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "L'anovamientu nun pue continuar con esi paquete instaláu.\n" "Desinstálalu con synaptic o «apt-get remove debsig-verify» primero y executa " "l'anovamientu otra vegada." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Nun pue escribise en «%s»" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Nun ye dable escribir el direutoriu de sistema «%s» nel to sistema. " "L'anovamientu nun pue continuar.\n" "Asegúrate de que'l direutoriu de sistema permite escribir." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "¿Incluyir los caberos anovamientos dende Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "El sistema d'anovamientu a una nueva versión puede usar Internet pa baxar " "automáticamente los anovamientos más recientes ya instalalos durante'l " "procesu. Si dispones d'una conexón a la rede, esto encamiéntase enforma.\n" "\n" "L'anovamientu llevará más tiempu, pero en terminando, el sistema tará " "dafechu anováu. Puedes escoyer nun facelo, pero vas tener d'instalar los " "nuevos anovamientos darréu de pasar a la nueva versión.\n" "Si respuendes «non» agora, la rede nun s'usará pa nada." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "deshabilitáu nel anovamientu a %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nun s'atopó un espeyu válidu" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Mientres s'esploraba la información del so repositoriu, nun s'alcontró " "denguna entrada pa la réplica de l'anovamientu. Esto puede ocurrir si cuerre " "una réplica interna o si la información de la réplica ye antigua.\n" "\n" "¿Deseya reescribir el so ficheru «sources.list» de toes formes? Si escueye " "«Sí» anovaránse toles entraes «%s» a «%s».\n" "Si escueye «Non» encaboxaráse l'anovamientu." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "¿Xenerar fontes predeterminaes?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Dempués de desaminar el to 'sources.list' nun s'alcontró denguna entrada " "válida pa '%s'.\n" "\n" "Tendríen d'amestase les entraes predeterminaes pa '%s'? Si respuendes 'Non', " "encaboxaráse l'anovamientu." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Información del repositoriu non válida" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "L'anovamientu de la información del repositoriu dio como resultáu un ficheru " "inválidu polo que ta aniciándose un procesu de notificación d'errores." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Desactivar fontes de terceres partes" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Desautiváronse delles entraes de terceros nel to «sources.list». Pues tornar " "a activales tres l'anovamientu cola ferramienta «Oríxenes del software», o " "col xestor de paquetes." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paquete nun estáu inconsistente" msgstr[1] "Paquetes nun estáu inconsistente" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "El paquete «%s» ta nun estáu inconsistente y hai de reinstalalu, pero nun " "s'alcuentra en dengún repositoriu. Por favor, reinstale'l paquete " "manualmente o desinstálelu del sistema" msgstr[1] "" "Los paquetes «%s» tán nun estáu inconsistente y hai de reinstalalos, pero " "nun s'alcuentren en dengún repositoriu. Por favor, reinstale los paquetes " "manualmente o desinstálelos del sistema" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Fallu durante l'anovamientu" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Hebo un fallu durante l'anovamientu. Davezu suel ser un tipu de problema na " "rede, polo qu'encamentámoste que compruebes la conexón de rede y tornes a " "intentalo." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Nun hai suficiente espaciu llibre en discu" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Encaboxóse l'anovamientu. L'anovamientu necesita un total de %s d'espaciu " "llibre nel discu «%s». Lliber a lo menos %s d'espaciu nel discu «%s». Prueba " "vaciando la papelera y desaniciando paquetes temporales d'antigües " "instalaciones usando la orde «sudo apt-get clean»." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Calculando los cambeos" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "¿Quies aniciar l'anovamientu?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Anovamientu encaboxáu" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "L'anovamientu va encaboxase agora y el sistema va volver al so estáu " "orixinal. Pues reanudar l'anovamientu más sero." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Nun se puede descargar les actualizaciones" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Encaboxóse l'anovamientu. Comprueba la conexón a Internet o los medios " "d'instalación y vuelvi a intentalo. Van caltenese tolos ficheros descargaos " "hasta'l momentu." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Error durante la confirmación" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Restaurando al estau del sistema orixinal" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Nun pudieron instalase los anovamientos" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Encaboxóse l'anovamientu. Pue que'l sistema quedare nun estáu non usable. " "Agora, va facese una recuperación (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Informa d'esti fallu usando un navegador pa dir a " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug y " "axunta los ficheros en /var/log/dist-upgrade/ al informe.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Encaboxóse l'anovamientu. Por favor, comprueba la conexón a Internet o el " "sofitu d'instalación y vuelvi a intentalo. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "¿Desaniciar paquetes obsoletos?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Caltener" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Esborrar" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Hebo un fallu durante'l llimpiáu. Por favor, llea'l mensax siguiente pa más " "información. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Dependencia requería nun ta instalada" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "La dependencia requería «%s» nun ta instalada. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Comprobando'l xestor de paquetes" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Falló la tresna del anovamientu" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Hebo un fallu al preparar el sistema pal anovamientu poro, ta arrancando un " "procesu de notificación de fallos." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Falló la tresna del anovamientu" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "El sistema nun foi a obtener los requisitos previos pal anovamientu. " "L'anovamientu va encaboxase agora y va restaurase l'estáu orixinal del " "sistema.\n" "\n" "Adicionalmente, ta aniciándose un procesu de notificación d'errores." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Anovando información del repositoriu" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Fallu al amestar el CDROM" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Sentímoslo, nun pudo amestase'l CDROM" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Información del paquete nun válida" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Descargando" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Anovando" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Completóse l'anovamientu" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "L'anovamientu completóse pero hebo fallos durante'l procesu." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Buscando software obsoletu" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "anovamientu del sistema completáu" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "L'anovamientu parcial completóse." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Nun s'alcontraron les notes de publicación" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Puede que'l sirvidor tea sobrocargáu. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Nun pudieron descargase les notes d'espublización" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Por favor, comprueba la conexón a Internet." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "autentificar «%(file)s» escontra «%(signature)s» " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "estrayendo «%s»" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Nun pudo executase la ferramienta d'anovamientu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Lo más probable ye qu'esto seya un fallu na ferramienta d'anovamientos. " "Informa d'esto cola orde «ubuntu-bug ubuntu-release-upgrader-core»." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Robla de la ferramienta d'anovamientu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Ferramienta d'anovamientu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Fallu al descargar" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Falló la baxada del anovamientu. Pue haber un problema cola rede. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Falló l'autentificación" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Falló l'autentificación de l'anovamientu. Ye dable qu'heba un problema cola " "rede o col sirvidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Fallu al sacar" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Falló la estraición del anovamientu. Pue haber un problema cola rede o col " "sirvidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Falló la verificación" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Falló la verificación del anovamientu. Pue haber un problema cola rede o col " "sirvidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Nun puede executase l'anovamientu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Esto davezu cáusalo un sistema nel que /tmp se montó como non executable. " "Vuelvi a montalu ensin «noexec» y executa otra vuelta l'anovamientu." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "El mensax de fallu ye «%s»" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Anovar" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Notes de la versión" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Descargando ficheros de paquetes adicionales..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Ficheru %s de %s a %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Ficheru %s de %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Por favor, inserta '%s' nel dispositivu '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Cambéu de preséu" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "Ta usándose «evms»" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "El to sistema ta usando'l xestor de volúmenes «evms» en /proc/mounts. El " "software «evms» yá nun ta sofitáu; por favor, desactívalu y torna a executar " "de nuevo l'anovamientu." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "L'entornu d'escritoriu n'execución «Unity» nun ye compatible dafechu col to " "hardware de gráficos. Seique termines nun entornu mui lentu dempués del " "anovamientu. El nuesu conseyu ye caltener por agora la versión LTS. Pa " "obtener más información, consulta " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D ¿Aínda quies " "siguir col anovamientu?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "El hardware de gráficos nun ye compatible dafechu con Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "La compatibilidá n'Ubuntu 12.04 LTS pal hardware de gráficos Intel ta " "llimitada y pues atopar problemes tres l'anovamientu. Pa tener más " "información llei https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx " "¿Quies siguir col anovamientu?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "L'anovamientu pue amenorgar los efeutos d'escritoriu, asina como'l " "rendimientu de los xuegos y otros programes qu'usen gráficos de mou " "intensivu." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Esti equipu ta usando'l controlador gráficu «nvidia» de NVIDIA. Nun " "s'alcuentra disponible n'Ubuntu 10.04 LTS una versión d'esti controlador que " "funcione col so hardware.\n" "\n" "¿Quier continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Esti equipu ta usando'l controlador gráficu «fglrx» de AMD. Nun s'alcuentra " "disponible n'Ubuntu 10.04 LTS una versión d'esti controlador que funcione " "col so hardware.\n" "\n" "¿Quier continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "La CPU nun ye i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "El sistema usa una CPU i586 o una CPU que nun tien la estensión «cmov». " "Construyéronse tolos paquetes con meyores que necesiten un i686 como " "arquiteutura mínima. Nun ye posible anovar el sistema a una versión nueva " "d'Ubuntu con esti hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "No ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "El so sistema usa una CPU ARM que ye más antigua que l'arquiteutura ARMv6. " "Tolos paquetes en karmic construyéronse con optimizaciones que necesiten de " "ARMv6 como arquiteutura mínima. Nun ye dable anovar el so sistema a la nueva " "versión d'Ubuntu con esti hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "El degorriu init nun ta disponible" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Paez ser que'l sistema ye un entornu virtualizáu ensin un degorriu init (un " "Linux-VServer, p.ex.). Ubuntu 10.04 LTS nun puede furrular nesta triba " "d'entornu, polo que primero requierse un anovamientu de la configuración de " "la to máquina virtual.\n" "\n" "¿Daveres que quies siguir?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Anovamientu de prueba usando aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Usar la ruta pa guetar un cdrom con paquetes d'anovación" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Usar interfaz d'usuariu. Anguaño disponibles: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*OBSOLETU* esta opción va inorase" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Facer namái un anovamientu parcial (nun se reescribirá el «sources.list»)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Desactiva'l sofitu de pantalla GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Afitar datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "La descarga completóse" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Descargando ficheru %li de %li a %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Falten al rodiu de %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Descargando ficheru %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Aplicando cambeos" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemes de dependencies - déxase ensin configurar" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Nun puede istalase '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "L'anovamientu continuará, pero'l paquete '%s', nun paez tar en bon estáu. " "Por favor, considera unviar un informe col fallu tocante a esti problema." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "¿Deseya sustituyir el ficheru de configuración modificáu«%s»?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Perderá tolos cambeos que tenga fecho nesi ficheru de configuración si " "decide sustituyilu por una nueva versión." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "El comandu 'diff' nun fue atopau" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ocurrió un error fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Informa d'esti fallu (si aínda nun lo fexesti) ya inclúi los ficheros " "/var/log/dist-upgrade/main.log y /var/log/dist-upgrade/apt.log nel informe. " "L'anovamientu encaboxóse.\n" "El ficheru sources.list orixinal guardóse en " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Calcóse Ctrl-C" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Esto encaboxará la operación y puede dexar al sistema nun estáu defeutuosu. " "¿Daveres que quier facer eso?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pa prevenir la perda de datos, zarra toles aplicaciones y documentos " "abiertos." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Yá nun ta sofitáu téunicamente por Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Desanovar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Desaniciar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Yá nun fai falta (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instalar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Anovar (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Amosar diferencies >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Soverar diferencies" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Fallu" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Zarrar" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Amosar terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Soverar terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Información" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detalles" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Yá nun ta sofitáu %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Esaniciar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Desaniciar (autoinstalóse) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instalar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Anovar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Necesítase reaniciar" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Reanicia'l sistema pa completar l'anovamientu" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Reaniciar agora" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "¿Encaboxar l'anovamientu en cursu?\n" "\n" "El sistema podría quedar nun estáu non usable si encaboxa l'anovamientu. " "Encamentámos-y que siga col anovamientu." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "¿Encaboxar l'anovamientu?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li día" msgstr[1] "%li díes" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hora" msgstr[1] "%li hores" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minutu" msgstr[1] "%li minutos" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li segundu" msgstr[1] "%li segundos" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Esta descarga va llevar %s aproximadamente con una conexón DSL de 1Mbit y %s " "aproximadamente con un módem de 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Esta descarga va tardar aproximadamente %s cola conexón actual. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Tresnando l'anovamientu" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Obteniendo nuevos canales de software" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Obteniendo paquetes nuevos" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Instalando los anovamientos" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Llimpiando" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Hai %(amount)d paquete instaláu que yá nun ta sofitáu por Canonical. Pues " "siguir obteniendo sofitu de la comunidá." msgstr[1] "" "Hai %(amount)d paquetes instalaos que yá nun tán sofitaos por Canonical. " "Pues siguir obteniendo sofitu de la comunidá." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Va desinstalase %d paquete." msgstr[1] "Van desinstalase %d paquetes." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Va instalase %d paquete nuevu." msgstr[1] "Van instalase %d paquetes nuevos." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Va a anovase %d paquete." msgstr[1] "Van a anovase %d paquetes." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Tienes de descargar un total de %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Esti anovamientu pue llevar delles hores. Una vegada fine la descarga, el " "procesu nun pue encaboxase." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Obtener ya instalar l'anovamientu pue llevar delles hores. Una vegada que " "fine la descarga, el procesu nun pue encaboxase." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "La desinstalación de los paquetes pue llevar delles hores. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "El software d'esti equipu ta anováu" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Nun hai anovamientos disponibles pal sistema. Encaboxóse l'anovamientu." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Necesítase reaniciar" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "L'anovamientu finó y necesítase reaniciar l'equipu. ¿Quies facelo agora?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Informa d'esti fallu ya inclúi los ficheros /var/log/dist-upgrade/main.log y " "/var/log/dist-upgrade/apt.log nel informe. L'anovamientu encaboxóse.\n" "El ficheru sources.list original atroxóse en " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Albortando" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Pa quitar:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Pa continuar, calca Intro" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Siguir [sN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detalles [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "s" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Yá nun ta sofitáu: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Quitar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instalar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Anovar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continuar [Sn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Pa finar l'anovamientu necesítase reaniciar.\n" "Si escueyes «s» el sistema reaniciaráse." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Descargando ficheru %(current)li de %(total)li a %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Descargando ficheru %(current)li de %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Amosar el progresu de cada ficheru individual" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Encaboxar l'anovamientu" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Siguir col anovamientu" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "¿Encaboxar l'anovamientu en cursu?\n" "\n" "El sistema podría quedar nun estáu non usable si encaboxes l'anovamientu. " "Encamentámoste que sigas col anovamientu." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Aniciar l'anovamientu" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Trocar" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Diferencia ente los ficheros" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Informar d'un fallu" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Siguir" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "¿Aniciar l'anovamientu?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Reanicia'l sistema pa completar l'anovamientu\n" "\n" "Por favor guarda tolos trabayos enantes de continuar." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Anovamientu de la distribución" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Configurando nuevos canales de software" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Reaniciando l'equipu" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Anovar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Hai disponible una nueva versión d'Ubuntu. ¿Prestaríate anovar?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Non anovar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Entrugar más sero" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Sí, anovar agora" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Decidisti non anovar a la nueva versión d'Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Pues anovaar más sero diendo al Anovador de software y calcando n'«Anovar»." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Facer un anovamientu de la versión" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "P'anovar Ubuntu, necesites autenticate." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Facer un anovamientu parcial" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Pa facer un anovamientu parcial, necesites autenticate." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Amosar la versión y salir" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Direutoriu que contién los ficheros de datos" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Executar la interface especificada" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Executando un anovamientu parcial" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Descargar la ferramienta d'anovamientu del llanzamientu" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Comprobar si ye dable anovar a la cabera versión de desendolcu" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Intenta anovar a la cabera versión usando l'anovador de $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Executar nun mou especial d'anovamientu.\n" "Anguaño sofiténse los moos «desktop» (p'anovamientos normales d'un sistema " "d'escritoriu) y «server» (pa sirvidores)." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Comprobar l'anovamientu nuna capa aufs de caxa de sable (sandbox)" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Namái comprueba si ta disponible una nueva versión de la distribución ya " "informa del resultáu per aciu d'un códigu de salida" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Comprobar si hai una versión nueva d'Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "La to versión d'Ubuntu yá nun tien sofitu téunicu." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Pa saber más tocante a esti anovamientu, visita:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Nun s'alcontró denguna edición nueva" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "L'anovamientu de versión nun ye posible nesti intre" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "L'anovamientu de versión nun ye posible nesti intre, inténtalo más sero. El " "sirvidor informó: «%s»" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Ta disponible la nueva versión «%s»." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Executar 'do-release-upgrade' p'anovase a élli." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ta disponible l'anovamientu de versión a Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Decidisti nun anovar a Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Amestar resultáu de la depuración" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Pa facer un anovamientu parcial, necesites autenticate" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "P'anovar la distribución, necesites autenticate" ubuntu-release-upgrader-0.220.10/po/is.po0000644000000000000000000016035512431225715014776 0ustar # Icelandic translation for update-manager # Copyright (c) 2006 Rosetta Contributors and Canonical Ltd 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Sigurpáll Sigurðsson \n" "Language-Team: Icelandic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: is\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Netþjónn fyrir %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Aðalnetþjónn" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Sérsniðnir netþjónar" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Tölvan fann engar pakkaskrár, er þetta örugglega Ubuntu-diskur eða kannski " "vitlausa gerðin?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Gat ekki bætt við geisladisknum" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Það kom upp villa við að bæta geisladisknum við, uppfærslan mun nú hætta. " "Vinsamlegast tilkynntu þetta sem lús ef þetta er gildur Ubuntu-" "geisladiskur.\n" "\n" "Villuskilaboðin voru:\n" "‚%s‘" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Fjarlægja pakka sem er í slæmu ástandi" msgstr[1] "Fjarlægja pakka sem eru í slæmu ástandi" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Pakkinn ‚%s‘ er í lélegu ástandi og það er mikilvægt að hann verði settur " "aftur upp, en hann fannst ekki í neinu gangasafni. Viltu eyða honum og halda " "áfram?" msgstr[1] "" "Pakkarnir ‚%s‘ eru í lélegu ástandi og það er mikilvægt að þeir verði settir " "aftur upp, en þeir fundust ekki í neinu gangasafni. Viltu eyða þeim og halda " "áfram?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Netþjónninn gæti verið undir miklu álagi" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Bilaðir pakkar" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Kerfið þitt inniheldur bilaða pakka sem ekki var hægt að laga með þessum " "hugbúnaði. Reyndu að laga þá með ‚synaptic‘ eða ‚apt-get‘ áður en lengra er " "haldið." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Villa kom upp við að reikna út uppfærsluna:\n" "%s\n" "\n" " Nokkrar ástæður geta ollið þessu:\n" " * Þú ert að uppfæra yfir í prufuútgáfu af Ubuntu\n" " * Þú ert að nota prufuútgáfu af Ubuntu\n" " * Þú hefur náð í hugbúnaðarpakka sem eru ekki á vegum Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Þetta er væntanlega tímabundið vandamál. Reyndu aftur síðar." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Gat ekki reiknað út uppfærsluna" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Villa kom upp við auðkenningu nokkra pakka" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Það tókst ekki að staðfesta nokkra pakka, þetta gæti verið tímabundið " "netvandamál- reyndu aftur síðar. Að neðan er listi yfir þá pakka sem ekki " "tókst að staðfesta." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Gefin var skipun um að fjarlægja pakkann ‚%s‘ en það er bannað að fjarlægja " "hann." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Það á að fjarlægja pakkann ‚%s‘ en hann er ómissandi." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Reyni að setja upp svartlistaða útgáfu ‚%s‘" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Gat ekki sett upp ‚%s‘" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Get ekki giskað á lýsipakka" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Kerfið þitt inniheldur hvorki pakkann ‚ubuntu-desktop‘, ‚kubuntu-desktop‘, " "‚xubuntu-desktop‘ né ‚edubuntu-desktop‘- og ekki tókst að bera kennsl á " "hvaða tegund af Ubuntu þú ert að nota.\n" " Settu upp einn af áðurnefndum pökkum með því að nota Synaptic-pakkastjórann " "eða með því að nota apt-get áður en þú heldur áfram." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Les skyndiminni" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Fékk ekki útilokunarlæsingu" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Þetta þýðir líklega að annar pakkastjóri (eins og ‚apt-get‘ eða ‚aptitude‘) " "sé í gangi. Vinsamlegast lokaðu því forriti fyrst." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Uppfærslur yfir fjartengingu eru óstuddar" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Viltu halda áfram að nota SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Ræsi annað sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Til að auðvelda bata þá mun auka sshd keyra í tenginum ‚%s‘. Ef eitthvað fer " "úrskeyðis við að keyra SSH þá er hægt að tengjast við hina tenginguna.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Get ekki uppfært" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Þú getur ekki uppfært frá ‚%s‘ yfir í ‚%s' með þessu forriti." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Uppsetning sandkassa mistókst" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Það tókst ekki að búa til sandkassann." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandkassahamur" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Það er eitthvað að python uppsetningunni þinni. Reyndu að laga " "‚/usr/bin/python‘-vísunina." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pakkinn 'debsig-verify' er uppsettur" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Uppfærslan getur ekki haldið áfram á meðan þessi pakki er á tölvunni.\n" "Fjarlægðu hann með synaptic pakkastjóranum eða með því að nota ‚apt-get " "remove debsig-verify‘ fyrst og keyra uppfærsluna aftur." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Getur ekki skrifað í '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Viltu láta nýjar uppfærslur af netinu fylgja með?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Uppfærslukerfið getur notað netið til að sækja nýjar uppfærslur sjálfkrafa " "og að setja þær upp á meðan á uppfærslunni stendur. Þetta er ráðlagt ef þú " "hefur nettengingu.\n" "\n" "Það tekur lengri tíma ef þú sækir uppfærslur af netinu, en á móti verður " "tölvan af nýjustu gerð að uppfærslunni lokinni. Þú getur valið um að gera " "þetta ekki en þú ættir að uppfæra kerfið þegar samt sem áður.\n" "Netið verður ekki notað ef þú velur að gera þetta ekki." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "óvirkt að uppfæra til %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Enginn spegill fannst" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Búa til sjálfgefnar uppsprettur?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Engin færsla fyrir ‚%s‘ fannst í ‚sources.list‘ skránni þinni.\n" "\n" "Viltu að tölvan bæti inn færslu fyrir ‚%s‘ eða viltu velja ‚Nei‘ og hætta " "við uppfærsluna?" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Ógildar upplýsingar um gagnahirslu" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Frumgögn frá þriðja aðila voru gerð óvirk" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Einhverjir innslættir þriðju aðila voru gerðir óvirkir í skránni " "‚sources.list‘. Þú getur virkjað þá seinna með tólinu ‚software-properties‘ " "eða með pakkastjóranum þínum." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pakkinn er í versnandi ásigkomulagi" msgstr[1] "Pakkarnir eru í versnandi ásigkomulagi" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Það þarf að setja pakkann ‚%s‘ upp aftur þar sem hann er í ójafnvægi en hann " "fannst hins vegar ekki í gagnahirslunni. Þú verður því að setja hann upp " "handvirkt eða fjarlægja af tölvunni." msgstr[1] "" "Það þarf að setja pakkana ‚%s‘ upp aftur þar sem þeir eru í ójafnvægi en " "þeir fundust hins vegar ekki í gagnahirslunni. Þú verður því að setja þá upp " "handvirkt eða fjarlægja af tölvunni." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Villa kom upp í uppfærslu" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Það kom upp villa við að uppfæra tölvuna. Þetta er oftast vandamál með netið " "þannig að best væri að athuga nettenginguna og reyna aftur." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Ekki er nóg pláss á tölvunni" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Reikna út breytingar" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Viltu hefja uppfærsluna?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Það var hætt við uppfærsluna" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Gat ekki sótt uppfærslurnar" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Villa við staðfestingu" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Gat ekki sett upp uppfærslurnar" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Viltu fjarlægja úrelta pakka?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Halda" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Fjarlægja" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Það kom upp vandamál við að hreinsa til. Lestu skilaboðin fyrir neðan til að " "fá frekari upplýsingar. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Það er ekki búið að setja upp nauðsynleg ákvæði" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Það er ekki búið að setja upp ákvæðið ‚%s‘ sem er nauðsynlegt. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Athuga pakkastjórann" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Undirbúningur fyrir uppfærslu mistókst" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Það tókst ekki að útvega forsendur uppfærslunnar" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Uppfæri upplýsingar um gagnahirslur" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Gat ekki bætt við geisladisknum" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Ógildar pakkaupplýsingar" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Sæki" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Uppfæri" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Uppfærslu lokið" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Leita að úreltum hugbúnaði" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Stýrikerfisuppfærslu er lokið." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Takmarkaðri uppfærslu er lokið." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Fann ekki upplýsingar um útgáfu" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Það er mögulega mikið álag á netþjóninum. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Gat ekki sótt upplýsingar um útgáfuna" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Vinsamlegast athugaðu nettenginguna þína" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Gat ekki keyrt uppfærslutólið" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Auðkenni uppfærslutóls" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Uppfærsluforrit" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Ekki tókst að sækja" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Það tókst ekki að sækja uppfærsluna. Þetta gæti verið vandamál með netið. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Auðkenning mistókst" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Það tókst ekki að auðkenna uppfærsluna. Þetta er mögulega vandamál við " "nettenginguna eða netþjóninn. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Gat ekki afþjappað" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Það mistókst að nálgast upplýsingarnar um uppfærsluna. Þetta er mögulega " "vandamál við nettenginguna eða netþjóninn. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Staðfesting mistókst" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Það tókst ekki að staðfesta uppfærsluna. Það gæti verið vandamál með " "nettenginguna eða netþjóninn. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Get ekki keyrt uppfærsluna" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Villuskilaboðið er ‚%s‘." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Uppfæra" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Upplýsingar um útgáfu" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Sæki aukapakka..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Skrá %s af %s á %sB/sek." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Skrá %s af %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Settu ‚%s‘ í drifið ‚%s‘" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Breyta miðli" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "‚evms‘ í notkun" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Kerfið þitt notar ‚evms‘-gagnamiðilsstjóra í ‚/proc/mounts‘-möppunni. " "Hugbúnaðurinn ‚evms‘ er ekki lengur studdur, slökktu á honum og keyrðu " "uppfærsluna aftur að því loknu." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Þá má vera að brellur, leikir og önnur forrit sem nota skjákortið mikið " "virki ekki eins vel að uppfærslu lokinni." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Þessi tölva er sem stendur að notast við NVIDIA ‚nvidia‘-rekilinn fyrir " "grafík. Það er ekki til nein útgáfa af reklinum sem virkar með skjákortinu " "þínu í Ubuntu 10.04 LTS\n" "\n" "Viltu halda áfram?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Þessi tölva er sem stendur að notast við AMD ‚fglrx‘-rekilinn fyrir grafík. " "Það er ekki til nein útgáfa af þessum rekli sem virkar með vélbúnaði þínum í " "Ubuntu 10.04 LTS.\n" "\n" "Viltu halda áfram?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Enginn ARMv6-örgjörvi" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Tölva þín notar ARM-örgjörva sem er eldri en ARMv6 (útgáfa 6). Allir pakkar " "í karmic þurfa að lágmarki örgjörva af útgáfu ARMv6. Það er ekki hægt að " "uppfæra stýrikerfi þitt yfir í nýja útgáfu af Ubuntu með þessum vélbúnaði." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "‚init‘ fannst ekki" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Uppfærsla í sandkassanum með ‚aufs‘" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Nota þessa slóð til að leita að geisladiski með pökkum sem hægt er að " "uppfæra með" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Nota framenda. Nú þegar tiltækir: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Ekki uppfæra allt (mun ekki skrifa yfir ‚sources.list‘)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Ákveða ‚datadir‘" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Búið að sækja" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Sæki skrá %li af %li á %sB/sek." #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Um það bil %s eftir" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Sæki skrá %li af %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Virki breytingar" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "vandamál með ákvæði - skil eftir óstillt" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Gat ekki sett upp ‚%s‘" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Uppfærslan mun halda áfram en pakkinn ‚%s‘ er líklega í ólagi. Vinsamlegast " "sentu inn upplýsingar um þessa bilun." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Skipta út sérsniðnu stillingarskráni\n" " ‚%s‘?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Þú munt tapa öllu sem þú hefur breytt í þessari stillingarskrá ef þú ákveður " "að skipta henni út fyrir nýja útgáfu." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Skipunin ‚diff‘ fannst ekki" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Það kom upp grafalvarleg villa" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ýtt á ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Þetta mun stöðva aðgerðina og skilja kerfið eftir bilað. Ertu viss um að þú " "viljir halda áfram?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Til að fyrirbyggja tap á gögnum skaltu loka öllum forritum og skrám." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Sýna mun >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Fela mun" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Villa" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Loka" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Sýna útstöðina >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Fela útstöðina" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Upplýsingar" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Frekari upplýsingar" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Ekki lengur stutt %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Fjarlægja %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Fjarlægja (var sett upp sjálfvirkt) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Setja upp %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Uppfæra %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Það þarf að endurræsa tölvuna" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Endurræsa kerfið til að ljúka uppfærslunni" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Endurræsa núna" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Viltu hætta við uppfærsluna?\n" "\n" "Það getur verið að tölvan þín verði ónothæf ef þú hættir núna. Það er " "stranglega mælt með því að halda áfram." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Viltu hætta við uppfærsluna?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dagur" msgstr[1] "%li dagar" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li klukkutími" msgstr[1] "%li klukkutímar" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li mínúta" msgstr[1] "%li mínútur" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekúnda" msgstr[1] "%li sekúndur" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Þetta niðurhal mun taka um %s með 1Mbit DSL tengingu og um %s með 56k " "símalínutengingu." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Þetta mun taka um %s með þinni tengingu. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Undirbý að uppfæra" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Sæki nýjar hugbúnaðarrásir" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Sæki nýja pakka" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Set upp uppfærslurnar" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Hreinsa til" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakki mun vera fjarlægður." msgstr[1] "%d pakkar munu vera fjarlægðir." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nýr pakki mun vera uppsettur." msgstr[1] "%d nýir pakkar munu vera uppsettir." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakki mun vera uppfærður." msgstr[1] "%d pakkar munu vera uppfærðir." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Þú þarft að sækja samtals %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Það eru engar uppfærslur fáanlegar fyrir kerfið þitt. Uppfærslu verður nú " "hætt." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Þú þarft að endurræsa tölvuna" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Uppfærslum er lokið og nú þarf að endurræsa tölvuna. Viltu gera það núna?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Hætti við" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Lækkað í tign:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Viltu halda áfram [jN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Frekari upplýsingar [u]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "j" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "u" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Ekki lengur stutt: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Fjarlægja: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Setja upp: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Uppfæra: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Viltu halda áfram [Jn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Til að ljúka við uppfærsluna þarf að endurræsa tölvuna.\n" "Ef þú velur ‚j‘ mun hún endurræsa sig." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Sæki skrá %(current)li af %(total)li á %(speed)s/sek." #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Sæki skrá %(current)li af %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Skoða framvindu einstakra skráa" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Hætta við uppfærslu" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Halda uppfærslu áfram" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Hætta við þá uppfærslu sem er í gangi?\n" " \n" "Kerfið gæti orðið ónothæft ef þú hættir við uppfærlsuna núna. Það er " "stranglega mælt með að þú haldir áfram með uppfærsluna." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Hefja uppfærslu" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Skipta út" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Munur á skránum" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Tilkynna villu" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Halda áfram" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Hefja uppfærslu?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Endurræstu tölvuna til að ljúka uppfærslunni\n" " \n" "Mundu eftir því að vista öll gögn áður en þú heldur áfram." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Kerfisuppfærsla" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Ákveð nýjar hugbúnaðarrásir" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Endurræsi tölvuna" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Útstöð" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Uppfæra" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Ný útgáfa Ubuntu er tiltæk. Viltu uppfæra í hana núna?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Ekki uppfæra" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Spyrja síðar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Já, uppfæra núna" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Þú hefur hafnað uppfærslu í nýja útgáfu af Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Sýna útgáfu og hætta" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Mappan sem inniheldur gagnaskrárnar" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Keyra tiltekið viðmót" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Keyra hlutauppfærslu" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Sækir uppfærslutólið fyrir útgáfuna" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Athuga hvort hægt sé að uppfæra í nýjustu þróunarútgáfuna" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Engar nýjar útgáfur fundust" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Útgáfuuppfærsla ekki möguleg í augnablikinu." #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Nýja útgáfan ‚%s‘ fannst." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Keyrðu ‚do-release-upgrade‘ til að hefja uppfærsluna." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Uppfærsla í Ubuntu %(version)s er tiltæk" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Þú hefur hafnað uppfærslu í Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/crh.po0000644000000000000000000017124412431225715015136 0ustar # Crimean Turkish; Crimean Tatar translation for update-manager # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the update-manager package. # # Reşat SABIQ , 2010, 2011. msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Reşat SABIQ \n" "Language-Team: QIRIMTATARCA (Qırım Türkçesi) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s içün sunucı" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Ana Sunucı" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Şahsiyleştirilgen sunucılar" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list kirişi esaplanamadı" # tr #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Hiçbir paket dosyasının yeri belirlenemedi, belki de bu bir Ubuntu Diski " "değildir ya da yanlış bir mimaridir?" # tr #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CD eklemede hata" # tr #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD eklenirken bir hata oluştu, yükseltme durduruluyor. Eğer geçerli bir " "Ubuntu CD'si kullanıyorsanız bunu bir hata olarak bildirin.\n" "Hata iletisi:'%s'" # tr #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Hatali durumdaki paket(ler)i kaldır" # tr #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "%s paket(ler)i tutarsız bir durumda ve yeniden yüklenmesi gerekiyor fakat bu " "paket(ler) için uygun arşiv dosyaları bulunamadı. Devam etmek için bu " "paket(ler)i şimdi silmek ister misiniz?" # tr #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Server'a fazla yüklenmiş olabilir" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Sınıq paketler" # tr #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sisteminiz bu yazılım ile düzeltilemeyen bozuk paketler içeriyor. Devam " "etmeden önce lütfen bunları synaptic veya apt-get kullanarak düzeltin." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Üst-qademe esaplanğanda hal etilmez bir hata meydanğa keldi:\n" "%s \n" "Sebebi aşağıdakiler olabilir:\n" " * Ubuntu'nıñ bir çıqarılışaldı sürümine üst-qademelev\n" " * Ubuntu'nıñ cari çıqarılışaldı sürümini çaptıruv\n" " * Ubuntu tarafından temin etilmegen ğayrı resmiy yazılım paketleri\n" "\n" # tr #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Bu geçici bir problem gibi gözüküyor, lütfen daha sonra tekrar deneyiniz." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Üst-qademeleme esaplanamadı" # tr #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Bazı paketlerin doğrulamasında hata oluştu" # tr #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Bazı paketler doğrulanamadı. Bu geçici bir ağ sorunu olabilir. Daha sonra " "tekrar deneyebilirsiniz. Doğrulanamamış paketlerin listesi için aşağıya " "bakınız." # tr #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "'%s' paketi kaldırılması için işaretlenmiş ancak paket kaldırma kara listesi " "içinde." # tr #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Temel '%s' paketi kaldırılma için işaretlenmiş." # tr #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Kara listede olan '%s' sürümü yüklenmeye çalışılıyor" # tr #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "\"%s\" yüklenemiyor" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" # tr #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Meta-paket tahmin edilemiyor" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Sistemiñiz bir ubuntu-desktop, kubuntu-desktop yaki edubuntu-desktop paketi " "ihtiva etmey ve angi Ubuntu sürümini qullanğanıñız tesbit etilamadı.\n" " Lütfen devam etmezden evel, synaptic yaki apt-get qullanaraq yuqarıdaki " "paketlerden birini quruñız." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Öghafiza oqula" # tr #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Özel kilide erişilemiyor" # tr #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Bu, genelde apt-get ya da aptitude gibi başka bir paket yönetimi " "uygulamasının çalıştığı anlamına gelir. Lütfen öncelikle bu uygulamayı " "kapatın." # tr #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Uzaktan bağlantı ile yükseltme desteklenmiyor" # tr #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Bir uzak ssh bağlantısı üzerinden bunu desteklemeyen bir ön uç ile yükseltme " "işlemini gerçekleştiriyorsunuz. Lütfen 'do-release-upgrade' komutu ile " "beraber metin tabanlı bir yükseltme deneyin.\n" "Yükseltme işlemi iptal edilecek. Lütfen ssh kullanmadan tekrar deneyin." # tr #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH altında çalışmaya devam edilsin mi?" # tr #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Bu oturum ssh altında çalışır halde görünüyor. Bir hata oluşması durumunda " "düzeltilmesinin zor olması nedeniyle, yükseltmeyi ssh üzerinden " "gerçekleştirmeniz tavsiye edilmez.\n" "\n" "Devam ederseniz, ek bir ssh art hizmeti '%s' bağlantı noktasında " "başlatılacak.\n" "Devam etmek istiyor musunuz?" # tr #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Yeni bir sshd başlatılıyor" # tr #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Hata durumunda düzeltme daha kolay olsun diye ek bir sshd '%s' portunda " "başlatılacak. Eğer çalışmakta olan ssh ile ilgili herhangi bir sorun " "oluşursa ek birine bağlanabilirsiniz.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Eger bir ateş-divarı qullana iseñiz, bu limannı muvaqqat olaraq açmañız " "kerekebilir. Potensial olaraq telükeli olğanından dolayı, bu avtomatik " "olaraq yapılmay. Limannı meselâ bunıñ ile açabilirsiñiz:\n" "'%s'" # tr #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Yükseltilemiyor" # tr #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Bu araçla, '%s' sürümünden '%s' sürümüne bir yükseltme desteklenmiyor." # tr #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Çalışma dizini kurulumu başarısız" # tr #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Çalışma dizini ortamı oluşturmak mümkün değil." # tr #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Çalışma dizini kipi" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" # tr #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Python kurulumunuzda hata var. Lütfen '/usr/bin/python' sembolik bağını " "onarın." # tr #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "'debsig-verify' paketi kuruldu" # tr #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Bu paket kuruluyken güncelleme devam edemez.\n" "Lütfen önce synaptic veya 'apt-get remove debsig-verify' ile paketi kaldırın " "ve güncellemeyi tekrar çalıştırın." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "İnternetten en soñki yañartmalar da dahil etilsinmi?" # tr #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Güncelleme sistemi interneti kullanarak en son güncellemeleri otomatik " "olarak indirebilir ve yükseltme sırasında güncellemeleri kurabilir. Eğer bir " "ağ bağlantınız varsa şiddetle önerilir.\n" "\n" "Güncelleme uzun sürebilir fakat tamamlandığında sisteminiz tamamıyla güncel " "olacak. Güncelleştirmeleri şu anda yapmayabilirsiniz ama güncelleştirmeyi " "sisteminizi yükselttikten hemen sonra yapmanız tavsiye edilir.\n" "Eğer cevabınız 'hayır' ise , ağ bağlantısı kullanılmadan devam edilecek." # tr #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "%s güncelleştirilmesi iptal edildi." # tr #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Geçerli yansı bulunamadı" # tüklü #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Repo malümatıñız taranğanda üst-qademe içün bir küzgü kirişi tapılmadı. Bu, " "dahiliy bir küzgü qullansañız yaki küzgü malümatı küncel degil ise sudur " "etebilir.\n" "\n" "'sources.list' dosyeñizni kene de kene yazmağa isteysiñizmi? Eger mında " "'Ebet' saylasañız, '%s' kirişleriniñ episi '%s' olaraq yañartılacaq.\n" "Eger 'Hayır' saylasañız üst-qademeden vazgeçilecek." # tr #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Öntanımlı depolar oluşturulsun mu?" # tr #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "'sources.list' dosyanız tarandıktan sonra '%s' için geçerli bir kayıt " "bulunamadı.\n" "'%s' için öntanımlı kayıtlar eklensin mi? Eğer 'Hayır' seçerseniz, yükseltme " "iptal edilecek." # tr #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Depo bilgisi geçersiz" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" # tr #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Üçüncü taraf kaynaklar devre dışı bırakıldı" # tr #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "sources.list dosyasındaki bazı üçüncü taraf girdiler etkisiz hale getirildi. " "Yükseltmenin ardından bu girdileri 'Yazılım Kaynakları' aracını ya da paket " "yöneticinizi kullanarak yeniden etkinleştirebilirsiniz." # tr #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paket tutarsız durumda" # tr #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "'%s' paketi tutarsız durumda ve tekrar kurulmalı, fakat bunun için herhangi " "bir arşiv bulunamadı. Lütfen paketi elle tekrar kurun ya da sistemden " "kaldırın." # tr #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Güncelleme sırasında hata" # tr #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Güncelleştirme sırasında bir hata oluştu. Bu genellikle bir ağ sorunudur, " "lütfen ağ bağlantınızı denetleyin ve tekrar deneyin." # tr #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Yeterince boş disk alanı yok" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Üst-qademeleme abortlandı. Üst-qademeleme '%s' diski üzerinde topyekün %s " "boş fezağa muhtacdır. Lütfen '%s' diski üzerinde eñ az ek %s fezanı azat " "etiñiz. Çöpüñizni temizleñiz ve 'sudo apt-get clean' qullanaraq evelki " "qurulumlarnıñ muvaqqat paketlerini siliñiz." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Deñişiklikler esaplana" # tr #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" # tr #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Yükseltme iptal edildi" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Üst-qademeleme şimdi lâğu etecek ve özgün sistem durumı keri tiklenecek. Üst-" "qademelemeni soñraki bir zamanda devam etebilirsiñiz." # tr #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Yükseltmeler indirilemedi" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" # tr #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "İşlem sırasında hata oluştu" # tr #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Özgün sistem durumuna geri dönülüyor" # tr #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Yükseltmeler kurulamadı" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Üst-qademeleme abortlandı. Sistemiñiz qullanılalmaz bir durumda olabilir. " "Şimdi bir qurtarma çaptırılacaq (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Üst-qademeleme abortlandı. Lütfen İnternet bağlantıñıznı ya da qurulım " "vasatıñıznı teşkeriñiz ve tekrar deñeñiz. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Eskirgen paketler çetleştirilsinmi?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Qoru" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Çetleştir" # tr #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Temizlik sırasında bazı sorunlar oluştu. Daha fazla bilgi için lütfen " "aşağıdaki iletiye bakın. " # tr #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Gerekli bağımlılıklar kurulu değil" # tr #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Gerekli bağımlılık '%s' kurulu değil. " # tr #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Paket yöneticisi denetleniyor" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Üst-qademeleme azırlığı muvafaqiyetsiz edi" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" # tr #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Güncelleme önkoşullarının alınması başarısız" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" # tr #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Depo bilgileri güncelleniyor" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Kompakt disk faqat-oqulır hazifa (cdrom) eklenamadı" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" "Afu etiñiz, kompakt disk faqat-oqulır hazifanıñ (cdrom) eklenmesi " "muvafaqiyetli degil edi." # tr #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Geçersiz paket bilgisi" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Ketirile" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Üst-qademelene" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Üst-qademeleme tamam" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Üst-qademeleme tamamlanğandır faqat üst-qademeleme ketişatı esnasında " "hatalar bar edi." # tr #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Kullanılmayan yazılımlar aranıyor" # tr #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." # tr #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Kısmi yükseltme tamamlandı." # tr #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Yayım notları bulunamadı" # tr #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Sunucu aşırı yüklenmiş olabilir. " # tr #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Yayım notları indirilemedi" # tr #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Lütfen internet bağlantınızı denetleyin." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Yükseltme aracı çalıştırılamadı." #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Yükseltme aracı imzası" # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Yükseltme aracı" # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Getirme başarısız" # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Yükseltme indirilemedi. Ağda bir sorun olabilir. " # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Kimlik denetimi başarısız oldu" # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Yükseltme için kimlik doğrulama başarısız oldu. Ağda veya sunucuda bir sorun " "olabilir. " # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Çıkarılamadı" # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "Yükseltme açılamadı. Ağda ya da sunucunuda bir sorun olabilir. " # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Doğrulama başarısız oldu" # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "Yükseltme onaylanamadı. Ağda ya da sunucuda bir sorun olabilir. " # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Yükseltme çalıştırılamıyor" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" # tr #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Hata mesajı '%s'" # tr #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Yükselt" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Çıqarılış Notları" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Ek paket dosyeleri endirile..." # tr #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Dosya %s / %s, %sB/s hızla" # tr #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Dosya %s / %s" # tr #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Lütfen \"%2s\" sürücüsüne \"%1s\" takın" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Vasat Deñişimi" # tr #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms kullanımda" # tr #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Sisteminiz /proc/mounts içindeki 'evms' birim yöneticisini kullanıyor. " "'evms' yazılımı artık desteklenmiyor, lütfen 'evms'yi kapattıktan sonra, bu " "bittiğinde yükseltmeyi yeniden çalıştırın." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" # tr #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Yükseltme, masaüstü efektlerini, oyunların ve diğer yoğun grafik kullanan " "uygulamaların başarımını düşürebilir." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Bu bilgisayar al-azırda NVIDIA 'nvidia' grafik sürücisini qullana. Bu " "sürüciniñ Ubuntu 10.04 LTS'te video kartıñız ile çalışacaq faydalanışlı bir " "sürümi yoq.\n" "\n" "Devam etmege isteysiñizmi?" # tr #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Bu bilgisayar al-azırda AMD 'fglrx' grafik sürücisini qullana. Bu sürüciniñ " "Ubuntu 10.04 LTS'te donanımıñız ile çalışacaq faydalanışlı bir sürümi yoq.\n" "\n" "Devam etmege isteysiñizmi?" # tüklü #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "i686 prosessorı yoq" # tr #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sistemiñiz, bir i586 prosessorını yaki 'cmov' uzantısı olmağan bir " "prosessornı qullana. Paketlerniñ episi asğariy olaraq i686 mimarlığını zarur " "etken optimalleştirmeler ile inşa etilgendir. Bu donanım ile, sistemiñizni " "yañı bir Ubuntu çıqarılışına üst-qademelemek mümkün degildir." # tr #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "ARMv6 İşlemci Yok" # tr #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sisteminiz, ARMv6 mimarisinden daha eski bir ARM işlemci kullanıyor. " "Karmic'teki tüm paketler, en az ARMv6 mimarisini gerektirecek iyileştirmeler " "ile oluşturulmuştur. Bu donanım ile, sisteminizi yeni bir Ubuntu sürümüne " "yükseltmek mümkün değil." # tr #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Başlatıcı mevcut değil" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Sistemiñiz başlanğıç cını olmağan sanallaştırılğan bir çevre, meselâ Linux-" "VServer, kibi körüne. Ubuntu 10.04 bu tür çevre içerisinde çalışalmaz; evelâ " "sanal maşnañıznıñ yapılandırılışınıñ yañartılması şarttır.\n" "\n" "Devam etmege istegeniñizden eminsiñizmi?" # tr #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Çalışma dizini yükseltmesi 'aufs' kullanıyor" # tr #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Yükseltilebilir paketler içeren bir cdrom'u aramak için verilen yolu kullan" # tr #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Önyüzü kullan. Şu anda kullanılabilir olanlar: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" # tr #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Sadece kısmi yükseltme yap (source.list dosyası yeniden yazılmadan)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU ekran destegini ğayrıqabilleştir" # tr #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Veri dizinini ayarla" # tr #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Getirme tamamlandı" # tr #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "%li / %li dosya %sB/s hızla alınıyor" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Taqriben %s qala" # tr #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Dosyalar inidiriliyor. İnen: %li Toplam: %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Deñişiklikler uyğulana" # tr #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "bağımlılık sorunları - yapılandırılmadan bırakılıyor." # tr #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "\"%s\" kurulamadı" # tr #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Yükseltme devam edecek fakat '%s' paketi çalışır durumda olmayabilir. Lütfen " "bununla ilgili bir hata raporlayın." # tr #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Özelleştirilmiş yapılandırma dosyası\n" "'%s' değiştirilsin mi?" # tr #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Eğer bu yapılandırma dosyasını yeni sürümüyle değiştirecekseniz bu dosyaya " "yapmış olduğunuz değişiklikleri kaybedeceksiniz." # tr #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "\"diff\" komutu bulunamadı" # tr #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ölümcül bir hata oluştu" # tr #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Lütfen bunı (eger yapmağan iseñiz) bir illet olaraq raportlañız ve " "raportıñızda /var/log/dist-upgrade/main.log ve /var/log/dist-upgrade/apt.log " "dosyelerini dahil etiñiz. Üst-qademeleme abortlanğandır.\n" "Özgün menba listeñiz /etc/apt/sources.list.distUpgrade içinde saqlandı." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c basıldı" # tr #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Bu, işlemi iptal edecektir ve sistemi bozuk bir durumda bırakabilir. Bunu " "yapmak istediğinizden emin misiniz ?" # tr #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Veri kaybını önlemek için açık olan tüm uygulamaları ve belgeleri kapatın." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Canonical tarafından artıq desteklenmey (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Alt-qademele (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Çetleştir (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Artıq kerekmey (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Qur (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Üst-qademele (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Farqnı Köster >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Farqnı Gizle" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Hata" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Qapat" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Terminalnı Köster >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Terminalnı Gizle" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Malümat" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Tafsilât" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Artıq desteklenmey %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s çetleştirilsin" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "%s çetleştirilsin (avto qurulğan edi)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s qurulsın" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s üst-qademelensin" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Kene başlatuv şarttır" # tr #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Yükseltmeyi tamamlamak için sistemi yeniden başlatın" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Şimdi _Kene Başlat" # tr #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Devam eden yükseltmeyi iptal etmek mi istiyorsunuz ?\n" "Yükseltmeyi iptal ederseniz sistem kullanılamaz duruma gelebilir. " "Yükseltmeye devam etmeniz ısrarla tavsiye edilir." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Üst-qademelemeden Vazgeçilsinmi?" # tr #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li gün" # tr #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li saat" # tr #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li dakika" # tr #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li saniye" # tr #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" # tr #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" # tr #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Bu indirme işlemi 1Mbit DSL bağlantısıyla yaklaşık %s ve 56k bir modemle " "yaklaşık %s sürecektir." # tr #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" "Bu indirme işlemi sizin bağlantınızla yaklaşık olarak %s kadar sürecektir. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Üst-qademelemege azırlanıla" # tr #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Yeni yazılım kanalları alınıyor" # tr #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Yeni paketler alınıyor" # tr #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Yükseltmeler yükleniyor" # tr #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Temizlik yapılıyor" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d qurulğan paket artıq Canonical tarafından desteklenmey. Kene de " "toplulıqtan destek alabilirsiñiz." # tr #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket kaldırılacak." # tr #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d yeni paket kurulacak." # tr #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket yükseltilecek." # tr #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Toplam %s indirmeniz gerekmektedir. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" # tr #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Sisteminiz için olası herhangi bir yükseltme yok. Yükseltme işlemi şimdi " "iptal edilecek." # tr #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Sistemi yeniden başlatmanız gerekiyor" # tr #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Yükseltme tamamlandı. Sistemi yeniden başlatmanız gerekiyor. Bunu şimdi " "yapmak ister misiniz?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Lütfen bunı bir illet olaraq raportlañız ve raportıñızda /var/log/dist-" "upgrade/main.log ve /var/log/dist-upgrade/apt.log dosyelerini dahil etiñiz. " "Üst-qademeleme abortlanğandır.\n" "Özgün menba listeñiz /etc/apt/sources.list.distUpgrade içinde saqlandı." # tüklü #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Vazgeçile" # tr #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Kaldırıldı:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Devam etmek içün lütfen [ENTER] basıñız" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Devam [eH] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Tafsilât [t]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "e" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "h" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "t" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Artıq desteklenmey: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Çetleştir: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Qur: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Üst-qademele: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Devam Et [eH] " # tr #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Güncellemeyi tamamlamak için yeniden başlatınız.\n" "Eğer 'y' tuşuna basarsanız yeniden başlatılacaktır." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "Dosye %(current)li endirile (topyekün: %(total)li; sur'at: %(speed)s/s)" # tüklü #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Dosye %(current)li endirile (topyekün: %(total)li)" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Ferdiy dosyelerniñ teraqqiyatını köster" # tr #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Yükseltmeyi İptal Et" # tr #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Yükseltmeye _Devam Et" # tr #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Yükseltme iptal edilsin mi?\n" "\n" "Yükseltmeyi iptal ederseniz, sistem, kullanılamaz bir konumda kalabilir. " "Yükseltmeyi devam ettirmeniz şiddetle önerilir." # tr #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Yükseltmeye Başla" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_İvaz Et" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Dosyeler arasındaki farq" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_İlletni Maruza Et" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Devam Et" # tr #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Yükseltme başlatılsın mı?" # tr #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Yükseltme işlemini tamamlamak için sistemi yeniden " "başlatın\n" "Devam etmeden önce lütfen çalışmalarınızı kaydedin." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Dağıtım Üst-qademelemesi" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" # tr #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " # tr #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Yeni yazılım kanalları ayarlanıyor" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Bilgisayar kene başlatıla" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Üst-qademele" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Ubuntu'nıñ yañı bir sürümi faydalanışlıdır. Üst-qademelemege ister " "ediñizmi?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Üst-qademeleme" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Maña Soñra Sora" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ebet, Şimdi Üst-qademele" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Yañı Ubuntu'ğa üst-qademelemeni red ettiñiz" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" # tr #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Sürümü göster ve çık" # tr #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Veri dosyalarını içeren dizin" # tr #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Belirlenmiş önyüzü çalıştır" # tr #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "_Yükseltmeye başla" # tr #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Sürüm güncelleme aracı indiriliyor" # tr #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "En son geliştirme sürümüne yükseltme olasılığını denetle" # tr #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "$distro-proposed 'daki güncelleyiciyi kullanarak en son duyuruya " "güncellemeyi deneyin" # tr #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Özel bir güncelleme kipinde çalış.\n" "Şu anda, bir masaüstü sisteminin düzenli güncellemeleri için 'masaüstü' ve " "sunucu sistemlerinin düzenli güncellemeleri için 'sunucu' desteklenmektedir." # tr #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Yükseltmeyi, bir çalışma dizini 'aufs' yer paylaşımıyla sına" # tr #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Sadece eğer yeni dağıtım güncellemesi kullanılabildiğinde kontrol et ve " "sonucu çıkış koduyla bildir." #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Ubuntu sürümiñiz artıq desteklenmey" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Üst-qademeleme malümatı içün, lütfen ziyaret etiñiz:\n" "%(url)s\n" # tr #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Yeni sürüm bulunamadı" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Çıqarılış üst-qademelemesi şu ande mümkün degil" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Çıqarılış üst-qademelemesi al-azırda icra etilalmay, lütfen soñra yañıdan " "deñeñiz. Sunucı raportladı: '%s'" # tr #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Yeni sürüm çıktı ('%s')." # tr #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Yükseltmek için 'do-release-upgrade' çalıştırın." # tr #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s Yükseltmesi Mevcut" # tr #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Ubuntu %s sürümüne yükseltmeyi reddettiniz" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/POTFILES.skip0000644000000000000000000000032312431225715016124 0ustar tests/interactive_fetch_release_upgrader.py tests/interactive_fetch_release_upgrader.py tests/test_xorg_fix_intrepid.py DistUpgrade/DistUpgradeViewKDE3.py data/glade/UpdateManager.glade check_new_release_gtk.py ubuntu-release-upgrader-0.220.10/po/lo.po0000644000000000000000000013017112431225715014766 0ustar # Lao translation for update-manager # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2008. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Terry \n" "Language-Team: Lao \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/hi.po0000644000000000000000000023532512431225715014763 0ustar # Hindi translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Manish Kumar \n" "Language-Team: Hindi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: hi\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s का सर्वर" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "मुख्य सर्वर" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "विनिर्मित सर्वर" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list प्रविष्टि क़ी गणना नहीँ हो सकी" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "पैकेज संचिकाएँ नहीं मिलीं, संभवत: यह उबुंतू डिस्क नहीं है या स्थापत्य " "अनुपयुक्त है." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "सी.डी. योजन असफल रहा." #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "सीoडीo योजन में त्रुटि हुई, उन्नयन की प्रक्रिया बन्द होगी | यदि यह वैध " "उबुंतू सीoडo | है तो कृपया इस घटना को बग रिपोर्ट करें |\n" "त्रुटि संदेश था:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "अवांछित स्थिति के पैकेज हटाएँ." msgstr[1] "अवांछित पैकेजों को हटाएँ" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "पैकेज '%s' असंगत स्थिति में है और इसके पुनर्स्थापन की आवश्यकता है, किंतु " "इसके लिए कोई आलेख नहीं मिला. क्या जारी रखने के लिए आप इस पैकेज को हटाना " "चाहेंगें?" msgstr[1] "" "एकाधिक पैकेज '%s' असंगत स्थिति में हैं और इनके पुनर्स्थापन की आवश्यकता है, " "किंतु इनके लिए आलेख नहीं मिले. क्या जारी रखने के लिए आप इन पैकेज को हटाना " "चाहेंगें?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "हो सकता है की सर्वर अतिभारित है" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "अवांछित पैकेज" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "आपके सिस्टम में अवांछित पैकेज है जो इस सॉफ्टवेयर के साथ ठीक नहीं किए जा सकते " "है | कृपया उन्हें आगे बढ़ने से पहले सिनेपटिक या apt-get के साथ ठीक करे |" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "अद्यतन की गणना करते समय अनसुलझी समस्या उत्पन्न हो गई है:\n" "%s\n" "\n" " यह इस कारण हो सकता है:\n" " * उबुन्टू के पूर्व-प्रकाशित वर्जन को अद्यतन करने के कारण\n" " * वर्तमान में उबुन्टू के पूर्व-प्रकाशित वर्जन के चलने के कारण\n" " * गैरकार्यालयी साफ्टवेयर पैकेज जो उबुन्टू द्वारा प्रदत्त नहीं है\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "बहुत सम्भव है कि यह अस्थायी समस्या है, कृपया बाद में पुनः प्रयास करें |" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "नवीनीकरण की गणना नहीं की जा सकी" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "कुछ पैकेज के सत्यापन में त्रुटि" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "यह सम्भव है कि कुछ पैकेज के प्रामाणित करना सम्भव नहीं है। यह नेटवर्क का " "अस्थायी समस्या हो सकता है | आप बाद में पुनः प्रयास कर सकते है | प्रमाणित " "पैकेज सूची के लिए नीचे देखें |" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "पैकेज '%s' को हटाने के लिए चिह्नित किया गया है लेकिन यह हटाए जाने वाली " "कालीसूची में है |" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "अत्यावश्यक पैकेज '%s' को हटाने हेतु चिह्नित किया गया है |" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "कालीसुचित वर्जन '%s' संस्थापित करने की कोशिश कर रहा है" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "%s संस्थापित नहीं हो सका" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "मेटा-पैकेज का अनुमान न करें" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "आपके तंत्र में उबुन्टू डेक्सटाप, कुबुन्टू डेक्सटाप, झुबुन्टू डेक्सटाप या " "एडुबन्टू डेक्सटाप पैकेज नहीं है तथा यह पता करना संभव नहीं है कि आप उबुन्टू " "का कौन सा वर्जन इस्तेमाल कर रहे हैं |\n" "कृपया प्रक्रिया के पूर्व उपरोक्त में से किसी एक का पहले संस्थापन सिनेपटिक या " "apt-get का उपयोग कर करें |" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "कैची पढ़ रहा है" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "अपवर्जित ताला प्राप्त करने में अक्षम" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "इसका मतलब यह हुआ कि दूसरा पैकेज प्रबंधक अनुप्रयोग (जैसे apt-get या aptitude) " "पहले से चल रहा है |" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "दूरस्थ संयोजन द्वारा अद्यतन समर्थित नहीं है" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "आप अग्रछोड़ पर दूरस्थ ssh संयोजन द्वारा अद्यतन चला रहे हैं जो इसे समर्थित " "नहीं करता है | कृपया पाठ पद्धति से 'do-release-upgrade' द्वारा अद्यतन करें " "|\n" "\n" "अद्यतन छोड़ रहा है. कृपया बिना ssh के प्रयास करें |" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH के अंतर्गत आगे चलाएं?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "यह सत्र ssh के अंतर्गत चल रहा है. सलाह दी जाती है कि वर्तमान में ssh द्वारा " "अद्यतन न करें क्योंकि असफल होने की स्थिति में पुनःप्राप्ति संभव नहीं है |\n" "यदि आप जारी रखते है, तो अतिरिक्त ssh डेमन '%s' पोर्ट पर आरंभ हो जाएगा |" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "अतिरिक्त sshd आरंभ हो रहा है" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "असफल होने की स्थिति में समुत्थान हेतु, एक अतिरिक्त sshd का आरंभ पोर्ट '%s' " "पर हो जाएगा | यदि चल रहे ssh में कुछ गड़बड़ी होती है तो आप अतिरिक्त एक और के " "साथ संयोजित रहेगें |\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "यदि आप फ़ायरवॉल चला रहे हैं, तो आप इस पोर्ट को अस्थायी रुप से खोलना होगा | " "यह स्वचालित रुप से नहीं हुआ क्योंकि ऐसा करना खतरनाक हो सकता है | आप पोर्ट " "खोल सकते है उदा. के लिए:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "अद्यतन नहीं हो सका" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "अद्यतन '%s' से '%s' तक इस औजार द्वारा समर्थित नहीं है |" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "सैंडबाक्स सेटअप असफल" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "सैंडबाक्स वातावरण का निर्माण संभव नहीं है" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "सैंडबाक्स विधि" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "आपका संस्थापित पायथन विकृत है. कृपया '/usr/bin/python' symlink को ठीक करें |" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "'debsig-verify' पैकेज संस्थापित है" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "संस्थापित पैकेज के साथ अद्यतन सम्भव नहीं है |\n" "कृपया इसे सिनेपटिक या 'apt-get remove debsig-verify' द्वारा पहले हटाएं तब " "पुनः अद्यतन करें |" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "'%s' में नहीं लिख सकते" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "अंतर्जाल से नवीनतम अद्यतन समाहित करें?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "अद्यतन तंत्र अंतर्जाल का उपयोग कर स्वतः ही नवीनतम अद्यतन को डाउनलोड कर लेगा " "तथा अद्यतन के दौरान उसे संस्थापित कर देगा यदि आपके पास अंतर्जाल संयोजन है " "इसकी पुरजोर सिफारिश की जाती है\n" "\n" "अद्यतन लंबा समय लेगा लेकिन जब यह पूर्ण हो जाएगा, आपका तंत्र पूर्णतः अद्यतन " "रहेगा. आप चाहे. ऐसा न हो. चुन सकते है लेकिन आप अद्यतन करने के पश्चात " "यथाशीध्र नवीनतम अद्यतन को संस्थापित करने हेतु चुन सकते हैं |\n" "यदि आपका जबाब यहाँ पर 'नहीं' होता है तो संजाल को पूर्णतः उपयोग नहीं होता |" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "%s को अद्यतन हेतु अशक्त करें" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "वैध मिरर नहीं पाया गया" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "आपके भण्डार सूचना की जाँच करते समय अद्यतन हेतु कोई भी मिरर की प्रविष्टि नहीं " "पाई गई | यह तभी हो सकता है जब आप आंतरिक मिरर चला रहे हो या फिर मिरर सूचना " "पुराना हो |\n" "क्या आप अपने 'sources.list को पुनःलिखना चाहगें? यदि आपने 'हाँ' चुना तो यह " "सभी '%s' से '%s' तक की प्रविष्टि का अद्यतन हो जाएगा.\n" "यदि आपने 'नहीं' चुना तो अद्यतन निरस्त हो जाएगा |" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "डिफाल्ट स्त्रोत बनाएं?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "आपके 'sources.list' की जाँच करने के पश्चात कोई भी वैध प्रविष्टि '%s' हेतु " "नहीं पाई गई |\n" "\n" "\n" "क्या '%s' हेतु डिफाल्ट प्रविष्टि जोड़ा जाए? यदि आप 'नहीं' चूनते है तो अद्यतन " "निरस्त हो जाएगा|" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "भण्डार सूचना अवैध है" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "तृतीय पक्ष स्त्रोत अशक्त है" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "आपके source.list कुछ तृतीय पक्ष प्रविष्टि अशक्त है | आप इसे अद्यतन के पश्चात " "अपने पैकेज प्रबंधक द्वारा या 'software-properties' उपकरण द्वारा पुनःसशक्त कर " "सकते हैं |" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "पैकेज असंगत स्थिति में है" msgstr[1] "पैकेज असंगत स्थिति में है" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "'%s' पैकेज असंगत स्थिति में है तथा पुनःसंस्थापित करने की जरुरत है, लेकिन " "इसके लिए कोई अभिलेख प्राप्त नहीं हुआ है | कृपया पैकेज को हस्तगत (मैनुअली) " "पुनःसंस्थापित करें या इसे तंत्र से हटा दें |" msgstr[1] "" "'%s' पैकेज असंगत स्थिति में है तथा पुनःसंस्थापित करने की जरुरत है, लेकिन " "इनके लिए कोई अभिलेख प्राप्त नहीं हुआ है | कृपया पैकेज को हस्तगत (मैनुअली) " "पुनःसंस्थापित करें या इन सबको तंत्र से हटा दें |" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "अद्यतन के दौरान त्रुटि" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "अद्यतन के दौरान एक त्रुटि पाई गयी | यह समान्यतः संजाल समस्या के कारण हो सकता " "है, कृपया संजाल संयोजन की जाँच करें तथा पुनः प्रयास करें |" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "डिस्क प्रयाप्त खाली जगह नहीं है" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "उन्नयन निष्फल हो गया | उन्नयन हेतु कुल %s मुक्त स्थान डिस्क '%s' पर चाहिए | " "कृपया कम से कम अतरिक्त %s डिस्क स्थान '%s' पर खाली करें | अपने रद्दी को खाली " "करें तथा पुर्ववर्ति संस्थापना के अस्थायी पैकेज को 'sudo apt-get clean' का " "उपयोग कर हटाएँ |" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "परिवर्तन की गणना कर रहा है" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "आप अद्यतन आरंभ करना चाहते हैं?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "अद्यतन निरस्त" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "यह उन्नयन अब निरस्त हो जाएगा तथा मूल तंत्र स्थिति लौट आएगा | आप उन्नयन को " "बाद में कभी पुनःशुरु कर सकते हैं |" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "अद्यतन डाउनलोड नहीं कर सका" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "बचनबद्धता के दौरान त्रुटि" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "मूल तंत्र स्थिति को पुनःसंगृहित कर रहा है" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "अद्यतन को संस्थापित नहीं कर सका" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "उन्नयन निष्फल हो गया. आपका तंत्र अनुपयोगी स्थिति में आ सकता है | एक समुत्थान " "अब चलेगा (dpkg --configure -a) |" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "उन्नयन निष्फल हो गया | कृपया अपने अंतर्जाल संयोजन या संस्थापना मिडिया की " "जाँच कर लें तथा पुनः प्रयास करें | " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "अप्रचलित पैकेज को हटाएं?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "बनाए रखें (_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "हटाएँ (_R)" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "सफाई के दौरान समस्या उत्पन्न हो गई| अधिक जानकारी के लिए कृपया निम्न सूचना को " "देखें | " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "आवश्यक निर्भर संस्थापित नहीं है" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "आवश्यक निर्भरता '%s' संस्थापित नहीं है. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "पैकेज प्रबंधक की जाँच करें" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "अद्यतन की तैयारी असफल" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "पूर्वापेक्षित अद्यतन को प्राप्त करने में असफल" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "भण्डार सूचना का अद्यतन हो रहा है" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "सीडीरोम जोड़ने में असफल" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "खेद है, सीडीरोम सफलतापूर्वक नहीं जोड़ा जा सका |" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "पैकेज सूचना अवैध" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "आकर्षित कर रहा है" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "अद्यतन कर रहा है" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "अद्यतन पूर्ण" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "उन्नयन पुरा हुआ लेकिम उन्नयन प्रक्रिया के दौरान त्रुटि हुई |" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "अप्रचलित साफ्टवेयर को खोज रहा है" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "तंत्र का अद्यतन पूर्ण |" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "आंशिक अद्यतन पूर्ण हुआ |" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "प्रकाशन सूचना नहीं पाया गया" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "सर्वर अतिभारित है. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "प्रकाशन सूचना डाउनलोड नहीं कर सका" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "अंतर्जाल संयोजन की जाँच करें." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "'% s' निकला जा रहा है" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "अद्यतन उपकरण को नहीं चला सका" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "अद्यतन उपकरण हस्ताक्षर" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "अद्यतन उपकरण" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "मिलान करने में असफल" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "अद्यतन का मिलान असफल. यह संजाल समस्या के कारण हो सकता है " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "प्रमाणीकरण असफल" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "अद्यतन का प्रमाणिकरण निष्फल. यह आपके संजाल या सर्वर के साथ समस्या के काऱण हो " "सकता है. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "अवतरण करने में असफल" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "अद्यतन का अवतरण करने में असफल. यह संजाल या सर्वर के साथ समस्या के कारण हो " "सकता है. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "प्रमाणीकरण असफल" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "अद्यतन का प्रमाणीकरण असफल. यह संजाल या सर्वर के साथ समस्या के कारण हो सकता " "है. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "अद्यतन नहीं हो सकता" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "त्रुटि संदेश '%s' है." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "उन्नत बनाएं" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "प्रकाशन सूचना" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "अतिरिक्त पैकेज संचिका को डाउनलोड कर रहा है..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "संचिका %s है %s में से %sB/s की दर से" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "संचिका %s है %s में से" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "कृपया '%s' को ड्राइव '%s' में डालें" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "मिडिया परिवर्तन" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms का उपयोग हो रहा है" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "आपका तंत्र /proc/mounts मे 'evms' आयतन प्रबंधन का उपयोग कर रहा है. 'evms' " "साफ्टवेयर अब समर्थित नहीं है, कृपया इसे बंद कर दे तत्पश्चात पुनः अद्यतन करें." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "अद्यतन डेक्सटाप तथा खेल निष्पादन तथा अन्य चित्रादि वाले कार्यक्रम को के " "प्रभाव को कम कर देगा." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "यह कंप्यूटर वर्तमान में एऩविडिया का 'एनविडिया' चित्रादि ड्राइवर इस्तेमाल कर " "रहा है. उबून्टू 10.04 LTS में आपके विडियो कार्ड के साथ कार्य करने हेतु इसका " "कोई भी संस्करण उपलब्ध नहीं है.\n" "\n" "क्या आप आगे बढ़ना चाहते हैं?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "यह कंप्यूटर वर्तमान में एएमडी का 'fglrx' चित्रादि ड्राइवर इस्तेमाल कर रहा " "है. उबून्टू 10.04 LTS में आपके हार्डवेयर के साथ कार्य करने हेतु इसका कोई भी " "संस्करण उपलब्ध नहीं है.\n" "\n" "क्या आप आगे बढ़ना चाहते हैं?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "i686 सीपीयु नहीं" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "आपका तंत्र एक i586 सीपीयु या एक सीपीयु की तरह उपयोग हो रहा है जिसमें 'cmov' " "विस्तारक नहीं हैं. सभी पैकेज i686 के आवश्यकता के अनुकूल न्यूनतम स्थापत्य है. " "यह सम्भव नही है कि आपके तंत्र का उन्नयन इस हार्डवेयर के साथ नए प्रकाशित " "उबुन्टू में किया जा सके." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "ARMv6 सीपीयु नहीं है" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "आपका तंत्र ARM सीपीयु का उपयोग कर रहा है जो ARMv6 संरचना से ज्यादा पुराना " "है. 'कार्मिक' के सभी पैकेज इस आशावादिता के साथ बनाए गए है कि न्यूनतम संरचना " "ARMv6 की आवश्यकता होगी. इन हार्डवेयर के साथ उबुन्टू के नए प्रकाशन द्वारा " "अपने तंत्र को उन्नत करना संभव नहीं है." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "init उपलब्ध नहीं है" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "आपका तंत्र आभासी वातावरण में बिना किसी inti डेमन अर्थात लाईनेक्स-Vसर्वर के " "कार्य कर रहा है. उबुन्टू 10.04 LTS इस प्रकार के वातावरण में कार्य नहीं कर " "सकता, पहले अपने आभासी मशीन को अद्यतन करने की जरुरत है." #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "सैंंडबाक्स अद्यतन aufs का उपयोग कर रहा है" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "रास्ता (पाथ) प्रदान कर अद्यतन पैकेज वाले सीडीरोम को खोजें" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "अग्रछोड़ का उपयोग करें. वर्तमान में उपलब्ध: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "केवल आंशिक अद्यतन करें (source.list का पुनःलेखन नहीं)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU स्क्रीन समर्थन असमर्थ करें" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "datadir नियत करें" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "आकर्षण समाप्त हुआ" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "आकर्षित संचिका %li है %li का %sB/s की दर से" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "शेष %s के बारे में" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "आकर्षित संचिका %li है %li का" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "बदलाव लागू कर रहा है" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "निर्भरता समस्ता- विन्यास छोड़ रहा है" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' को संस्थापित नहीं कर सका" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "अद्यतन जारी है लेकिन पैकेज '%s' कार्य करने की स्थिति में नहीं है. कृपया इसके " "बारे में बग रिपोर्ट भेंजे." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "customized विन्यास संचिका को प्रतिस्थापित करें\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "यदि आपने नए वर्जन से प्रतिस्थापित किया तो इस विन्यास संचिका में किए गए किसी " "भी परिवर्तन को आप खो देंगें." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "'diff' कमांड नहीं पाया गया" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "घातक त्रुटि पायी गई" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "कृपया इसे बग के रुप में रिपोर्ट करें (यदि आप पहले से नहीं किया है) तथा अपने " "रिपोर्ट में संचिका /var/log/dist-upgrade/main.log and /var/log/dist-" "upgrade/apt.log को समाहित करें. उन्नयन निष्फल हुआ.\n" "आपका मुल sources.list को /etc/apt/sources.list.distUpgrade में सहेजा हुआ है." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c दबाएं" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "यह प्रक्रिया निष्फल है तथा तंत्र को खंडित स्थिति में छोड़ रहा है. सुनिश्चित " "करें कि आप इसे करना चाहते हैं?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "आंकड़े को खोने से बचाने हेतु सभी खुले हुए अनुप्रयोगों एंव दस्तावेजों को बंद " "करें." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "कैनेनिकल (%s) द्वारा अब समर्थित नहीं है" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "अवन्नयन (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "हटाएँ (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "अब और आवश्यकता नहीं है (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "संस्थापित करें (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "उन्नयन (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "अंतर दिखाएं >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< अंतर छुपाएं" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "त्रुटि" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "बंद करें (&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "टर्मिनल दिखाएं >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< टर्मिनल छुपाएं" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "सूचना" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "विवरण" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "अब और समर्थित नहीं है (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s को हटाएं" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "%s (स्वतः संस्थापित) हटाएं" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s को संस्थापित करें" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s को अद्यतन करें" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "पुनःआरंभ की जरुरत है" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "अद्यतन पूर्ण करने हेतु तंत्र को पुनःआरंभ करें" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "अभी पुनःआरंभ करें (_R)" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "हो रहे अद्यतन को रद्द करें?\n" "\n" "यदि आप अद्यतन को रद्द करते हैं तो तंत्र अस्थायी स्थिति में आ जाएगा. आपसे " "प्रबल सलाह दि जाती है कि अद्यतन को पुनःशुरु करें." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "अद्यतन रद्द करें?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li दिवस" msgstr[1] "%li दिवसों" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li घंटा" msgstr[1] "%li घंटे" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li मिनट" msgstr[1] "%li मिनटों" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li सेकेण्ड" msgstr[1] "%li सेकेण्ड" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "इसे डाउनलोड करने में 1मे.ब. DSL संयोजन द्वारा %s तथा 56कि. मोडेम द्वारा %s " "समय लगेगा." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "आपके संयोजन द्वारा इसे डाउनलोड होने में %s समय लगेगा. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "अद्यतन हेतु तैयार हो रहा है" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "नए साफ्टवेयर चैनल प्राप्त कर रहा है" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "नया पैकेज प्राप्त कर रहा है" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "अद्यतन संस्थापित कर रहा है" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "साफ कर रहा है" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d संस्थापित पैकेज अब और कैनेनिकल द्वारा समर्थित नहीं है. आप इस " "समुदाय से समर्थन प्राप्त कर सकते हैं." msgstr[1] "" "%(amount)d संस्थापित पैकेज अब और कैनेनिकल द्वारा समर्थित नहीं है. आप इस " "समुदाय से समर्थन प्राप्त कर सकते हैं." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d पैकेज हटाया जा रहा है." msgstr[1] "%d पैकेज हटाया जा रहा है" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d नए पैकेज संस्थापित होने जा रहा है." msgstr[1] "%d नए पैकेज संस्थापित होने जा रहा है." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d पैकेज उन्नत होने जा रहा है." msgstr[1] "%d पैकेज उन्नत होने जा रहा है." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "आप कुल %s डानलोड करेंगें. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "इस कंप्यूटर पर सॉफ्टवेयर अप टू डेट है |" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "आपके तंत्र हेतु अद्यतन उपलब्ध नहीं है. अद्यतन रद्द हो रहा है." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "पुनःबूट की आवश्यकता है" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "अद्यतन पूरा हो गया तथा पुनःबूट की जरुरत है. क्या आप इसे करना चाहते हैं?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "कृपया इसे बग के रुप रिपोर्ट करें तथा अपने रिपोर्ट में संचिका /var/log/dist-" "upgrade/main.log तथा /var/log/dist-upgrade/apt.log को समाहित करें. उन्नयन " "निष्फल हो गया.\n" "आपका मूल sources.list को /etc/apt/sources.list.distUpgrade में सहेजा गया है." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "निष्फल हो गया" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "पदावनत कियाः\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "जारी रखने के लिए कृपया [ENTER] कुंजी दबाएँ" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "जारी [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "विस्तृत [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "हाँ" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "न" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "विस्तृत" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "अब और समर्थित नहीं: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "हटाएं: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "संस्थापन: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "अद्यतन: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "जारी [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "अद्यतन समाप्त होने के पश्चात पुनःआरंभ की जरुरत होगी.\n" "यदि आपने 'हां' चुना तो तंत्र पुनःआरंभ हो जाएगा." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "संचिका डाउनलोड कर रहा है %(current)li को %(total)li में से %(speed)s/s गति से" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "संचिका डाउनलोड कर रहा है %(current)li का %(total)li में से" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "व्यक्तिगत संचिकाओं की प्रगति दिखाएं" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "अद्यतन निरस्त (_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "अद्यतन दोबारा शुरु करें (_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "अद्यतन को निरस्त करें?\n" "\n" "यदि आपने अद्यतन को निरस्त कर दिया तो तंत्र अस्वाभाविक स्थिति में आ जाएगा. " "आपसे पुरजोर आग्रह है कि अद्यतन को पुनःशुरु करें." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "उन्नत शुरु करें (_S)" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "प्रतिस्थापित करें (_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "संचिकाओं में अंतर" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "बग कर रिपोर्ट करें (_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "जारी रखें (_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "अद्यतन आरंभ करें?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "अद्यतन पुरा करने हेतु तंत्र को पुनःआरंभ करे\n" "\n" "कृपया आगे बढ़ने के पूर्व अपने कार्य को संचित करें." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "वितरण अद्यतन" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "नये साफ्टवेयर चैनल का विन्यास करें" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "कंप्यूटर को पुनःआरंभ कर रहा है" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "टर्मिनल" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "उन्नत (_U)" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "उबुन्टू का एक नया संस्करण उपलब्ध है. क्या आप उन्नत करना चाहेंगे?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "उन्नत न करें" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "बाद में मुझे बताएं" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "हाँ, अब उन्नत करें" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "आपने नए उबुन्टू में उन्नत करने से अस्वीकार कर दिया है" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "संस्करण दिखाएँ और बाहर निकलें" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "निर्देशिका जिसमे आंकड़ा संचिका हो" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "विशिष्ट अग्रछोड़ को चलाएं" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "आंशिक कोटि-उन्नयन चलाएं" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "प्रकाशित अद्यतन औजार को डाउनलोड करें" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "जाँच करे कि नविनतम डेवेल प्रकाशन में कोटि उन्नयन संभव है या नहीं" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "$distro-proposed द्वारा उन्नयनक्रर्ता का उपयोग कर नविनतम प्रकाशन में कोटि " "उन्नयन की चेष्टा करें" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "विशिष्ट कोटि-उन्नयन में चलाएं.\n" "डेक्सटॉप तंत्र का नियमित कोटि उन्नयन हेतु वर्तमान में 'डेक्सटॉप' है तथा " "सर्वर तेत्र हेतु 'सर्वर' समर्थित है." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "सैंडबॉक्स aufs overlay द्वारा उन्नयन करने की जाँच करें" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "जब केवल नया वितरण प्रकाशन उपलब्ध हो तभी जाँच करें तथा परिणाम को exit कोड " "द्वारा दें" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "आपका उबुन्टू प्रकाशन अब और समर्थित नहीं रहा." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "सूचना उन्नयन हेतु, कृपया देखें:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "नया प्रकाशन नहीं पाया गया" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "प्रकाशित उन्नयन अब सम्भव नहीं है" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "प्रकाशित उन्नयन वर्तमान में नहीं किया जा सकता है, कृपया बाद में पुनः प्रयास " "करें. सर्वर रिपोर्ट कर रहा है: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "नया प्रकाशन '%s' उपलब्ध है." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "कोटि उन्नयन हेतु 'do-release-upgrade' को चलाएं." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "उबुन्टू %(version)s कोटि-उन्नयन हेतु उपलब्ध है" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "आपने उबुन्टू %s का कोटि-उन्नयन का अवनति किया है" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "डिबग आउटपुट जोड़ें" ubuntu-release-upgrader-0.220.10/po/ms.po0000644000000000000000000017700412431225715015001 0ustar # Malay translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-25 23:25+0000\n" "Last-Translator: abuyop \n" "Language-Team: Malay \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "X-Poedit-Country: MALAYSIA\n" "Language: ms\n" "X-Poedit-Language: Malay\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Pelayan untuk %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Pelayan Utama" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Pelayan Suai" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Tidak dapat mengira masukan sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Tidak boleh mengenalpasti sebarang fail pakej, mungkin ini bukan Cakera " "Ubuntu atau arkitektur yang sesuai?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Gagal menyenaraikan CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Terdapat ralat semasa menyenaraikan CD, penataran dihenti paksa. Sekiranya " "ini adalah CD Ubuntu yang sah, sila laporkan ralat ini sebagai pepijat.\n" "Mesej ralat adalah:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Buang pakej yang rosak" msgstr[1] "Buang pakej-pakej yang rosak" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Pakej '%s' ini tidak lengkap/bermasalah dan perlu dipasang semula, malangnya " "tiada arkib yang sepadan ditemui. Adakah anda ingin membatalkan tindakan " "ini, dan meneruskan pilihan yang lain?" msgstr[1] "" "Pakej '%s' ini tidak lengkap/bermasalah dan perlu dipasang semula, malangnya " "tiada arkib yang sepadan ditemui. Adakah anda ingin membatalkan tindakan " "ini, dan meneruskan pilihan yang lain?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Kemungkinan pelayan melebihi had" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Pakej rosak" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sistem anda mengandungi pakej yang rosak dan tidak boleh diperbetulkan oleh " "perisian ini. Sila gunakan synaptic atau apt-get untuk membuat pembetulan " "sebelum meneruskan tindakan yang lain." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Masalah yang tidak dapat diselesaikan timbul semasa pengiraan naiktaraf:\n" "%s\n" " Ini boleh berlaku disebabkan oleh:\n" " *Penaiktarafan kepada pra-keluaran versi Ubuntu\n" " *Menggunakan pra-keluaran terbaru versi Ubuntu\n" " *Pakej perisian yang tidak rasmi tidak disokong oleh Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Kemungkinan ini adalah masalah sementara sahaja. Sila cuba lagi kemudian." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Jika tiada dilaksanakan, sila laporkan pepijat ini menggunakan perintah " "'ubuntu-bug ubuntu-release-upgrader-core' didalam terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Tidak dapat mengira penataran" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Ralat mengesahkan sesetengah pakej" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Tidak mungkin untuk mengesahkan sesetengah pakej. Ini mungkin disebabkan " "masalah sementara rangkaian. Anda mungkin mahu mencuba lagi kemudian. Lihat " "dibawah untuk pakej-pakej yang belum disahkan." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Pakej '%s' telah ditanda untuk pembuangan tetapi ia ada di dalam senarai " "hitam pembuangan." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Pakej yang diperlukan '%s' telah ditanda untuk dibuang" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Cubaan untul memasang versi '%s' yang disenarai hitam" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat memasang '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Adalah mustahil memasang pakej yang diperlukan. Sila laporkan pepijat ini " "menggunakan perintah 'ubuntu-bug ubuntu-release-upgrader-core' didalam " "terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Pakej meta tidak dapat diduga." #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Sistem anda tidak mempunyai pakej ruang kerja-ubuntu, ruang kerja-kubuntu, " "ruang kerja-xubuntu atau ruang kerja-edubuntu dan adalah mustahil untuk " "mengesan versi Ubuntu yang mana anda sedang guna.\n" " Sila pasang salah satu dari pakej diatas terlebih dahulu menggunakan " "synaptic atau apt-get sebelum teruskan." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Membaca cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Tidak boleh mengunci secara eksklusif" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Ini menunjukkan terdapat program pengurusan pakej yang lain sedang " "dijalankan (seperti apt-get atau aptitude). Sila hentikan program tersebut " "dahulu." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Penataran melalui sambungan jauh tidak disokong." #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Anda sedang menjalankan penataran melalui sambungan jauh ssh dengan " "frontend(gui) yang tidak menyokong ini. Sila cuba mod menatar teks dengan " "'do-release-upgrade'.\n" "Penataran akan digugurkan sekarang. Sila cuba tanpa ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Teruskan perlaksanaan dengan SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Sesi ini kelihatan dijalankan dibawah ssh. Tidak dicadangkan melakukan " "penataran dibawah ssh buat masa ini kerana jika berlaku kegagalan boleh " "menyukarkan pemulihan semula.\n" "\n" "Jika anda teruskan, daemon ssh tambahan akan dimulakan pada port '%s'.\n" "Adakah anda ingin meneruskan?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Memulakan sshd tambahan" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Untuk melakukan pemulihan jika berlaku kegagalan, sshd tambahan akan " "dimulakan pada port '%s'. JIka terdapat masalah semasa menjalankan ssh anda " "masih boleh membuat sambungan ke satu lagi tambahan sshd.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Jika anda jalankan dinding api, anda mungkin buka port ini secara sementara. " "Oleh kerana berpotensi merbahaya jika tidak dilakukan secara automatik. Anda " "boleh buka port dengan cth.:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Tidak boleh menatar" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Penataran dari '%s' ke '%s' tidak disokong menggunakan alat ini." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Pemasangan kotak pasir gagal" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Tidak mungkin boleh mencipta persekitaran kotak paisr." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Mod kotak pasir" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Penataran ini dijalankan dalam mod kotak pasir. Semua perubahan akan ditulis " "ke '%s' dan hilang pada but semula berikutnya.\n" "\n" "*Tiada* perubahan ditulis ke direktori sistem mulai sekarang hinggalah but " "semula adalah kekal." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Pemasangan python anda telah rosak. Sila baiki symlink di 'usr/bin/python'." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pakej 'debsig-verify' telah dipasang" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Penataran tidak boleh diteruskan dengan pakej yang dipasang.\n" "Sila buangnya dengan synaptic atau 'apt-get remove debsig-verify' terlebih " "dahulu dan mulakan penataran sekali lagi." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Tidak dapat tulis ke '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Adalah mustahil menulis ke direktori sistem '%s' pada sistem anda. Penataran " "tidak boleh diteruskan.\n" "Sila pastikan direktori sistem adalah boleh-tulis." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Sertakan kemaskini yang terkini dari internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Sistem penataran boleh menggunakan internet secara automatik memuat turun " "kemaskini yang terkini dan memasangnya semasa proses dijalakankan. Jika anda " "mempunyai sambungan rangkaian, ia sangat dicadangkan.\n" "\n" "Penataran akan mengambil masa yang lama, tetapi jika ia selesai, sistem anda " "akan dikemaskini sepenuhnya. Anda boleh pilih untuk tidak melakukannya, " "tetapi anda seharusnya memasang kemaskini yang terkini selepas menatar.\n" "Jika jawapan anda 'tidak', rangkaian tidak akan digunakan langsung." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "dilumpuhkan semasa menatar kepada %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Tiada mirror yang sah ditemui" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Semasa mengimbas maklumat repositori anda tiada masukan mirror untuk " "penataran ditemui. Perkara ini berlaku jika anda jalankan mirror dalaman " "atau maklumat mirror sudah lapuk.\n" "\n" "Adakah anda ingin menulis semula fail 'sources.list' anda? Jika anda pilih " "'Ya' ia akan mengemaskini semua masukan '%s' ke '%s'.\n" "Jika anda pilih 'Tidak' penataran akan dibatalkan." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Janakan sumber lalai?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Selepas mengimbas source.list anda tiada masukan sah untuk '%s' ditemui\n" "\n" "Adakah masukan lalai untuk '%s' ditambah? Jika anda pilih 'Tidak', penataran " "akan dibatalkan." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Maklumat repositori tidak sah" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Penataran maklumat repositori menyebabkan fail tidak sah jadi proses " "melaporkan pepijat dimulakan." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Sumber pihak ketiga dilumpuhkan." #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Sebahagian masukan pihak ketiga didalam source.list anda dilumpuhkan. Anda " "boleh membenarkannya semula selepas penataran melalui alat 'software-" "properties' atau pengurus pakej anda." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Keadaan pakej berada dalam keadaan tidak konsisten" msgstr[1] "Keadaan pakej berada dalam keadaan tidak konsisten" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Pakej '%s' berada dalam keadaan tidak konsisten dan perlu dipasang semula, " "tetapi tiada arkib yang berkenaan dengannya ditemui. Sila pasang semula " "pakej tersebut secara manual atau buangkannya dari sistem." msgstr[1] "" "Pakej '%s' berada dalam keadaan tidak konsisten dan perlu dipasang semula, " "tetapi tiada arkib yang berkenaan dengannya ditemui. Sila pasang semula " "pakej tersebut secara manual atau buangkannya dari sistem." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Ralat semasa pengemaskinian." #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Masalah muncul semasa proses pengemaskinian. Ini disebabkan beberapa masalah " "berkaitan dengan rangkaian, sila semak sambungan rangkaian dan cuba sekali " "lagi." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Ruang cakera keras tidak mencukupi." #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Penataran telah diabaikan. Penataran memerlukan sejumlah %s ruang bebas pada " "cakera '%s'. Sila kosongkan sekurang-kurangnya %s ruang cakera pada '%s'. " "Kosongkan tong sampah dan buang pakej sementara bagi pemasangan lalu melalui " "'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Mengira perubahan" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Anda mahu mulakan penataran?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Penataran dibatalkan" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Penataran akan dibatalkan sekarang dan keadaan sistem asal akan dipulihkan. " "Anda boleh sambung semula penataran dilain masa." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Pakej-pakej penaikan taraf tidak dapat dicapai." #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Penataran telah dihenti paksa. Sila semak sambungan internet anda atau media " "pemasangan dan cuba lagi. Semua fail dimuat turun setakat ini selamat " "didalam simpanan." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Ralat semasa perlaksanaan" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Mengembalikan sistem ke keadaan asal." #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Pakej-pakej gagal dinaiktaraf." #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Penataran telah diabaikan. Sistem anda mungkin dalam keadaan tidak stabil. " "Pemulihan akan dijalankan )dkpg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Sila laporkan pepijat ini dalam pelayar di " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "dan lampirkan fail yang ada dalam /var/log/dist-upgrade/ ke dalam laporan " "pepijat.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Penataran telah diabaikan. Sila semak sambungan Internet atau media " "pemasangan anda dan cuba lagi. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Buang pakej luput?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Kekalkan" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Buang" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Masalah muncul semasa proses pembersihan. Sila rujuk mesej dibawah untuk " "maklumat lanjut. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Keperluan yang diperlukan tidak dipasang" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Dependensi %s yang diperlukan tidak dipasang. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Memeriksa pengurus pakej" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Persediaan penataran telah gagal" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Penyediaan sistem untuk tatar gagal maka proses pelaporan pepijat sedang " "dimulakan." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Mendapatkan prasyarat penataran gagal" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Sistem tidak boleh dapatkan prasyarat penataran. Penataran akan dihenti " "paksa sekarang dan pulih semula keadaan sistem yang asal.\n" "\n" "Disamping itu, satu proses pelaporan pepijat dimulakan." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Mengemaskini maklumat repositori" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Gagal menambah ke cdrom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Maaf, penambahan ke cdrom tidak berjaya." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Maklumat pakej tidah sah" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Selepas mengemaskini maklumat pakej, pakej penting '%s' tidak dapat dicari. " "Ia mungkin kerana anda tidak mempunyai cermin rasmi yang tersenarai dalam " "sumber perisian anda, atau kerana muatan berlebihan pada cermin yang anda " "gunakan. Rujuk /etc/apt/sources.list untuk senarai semasa sumber perisian " "terkonfigur.\n" "Dalam kes cermin terlebih muatan, anda boleh tatar kemudian." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Mengambil" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Menatarkan" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Penataran Selesai" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Penataran selesai tetapi terdapat ralat semasa proses penataran." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Menggelintar perisian luput" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Penataran sistem telah selesai." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Penataran separa telah selesai." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Tidak dapat mendapatkan nota pelepasan" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Pelayan mungkin terlalu sibuk. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Tidak dapat memuat turun nota pelepasan" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Sila semak sambungan internet anda." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "sahihkan '%(file)s' terhadap '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "mengekstrak '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Tidak dapat menjalankan alat penataran" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Ia berkemungkinan pepijat dalam alat tatar. sila laporkan pepijat ini " "menggunakan perintah 'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Tandatangan alat penataran" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Alat penataran" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Gagal mengambil" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Proses memperoleh penataran gagal. Mungkin terdapat masalah rangkaian. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Penyahihan gagal" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Pengesahan menatar gagal. Mungkin terdapat masalah dengan rangkaian atau " "dengan pelayan. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Gagal mengekstrak" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Proses mengekstrak penataran gagal. Mungkin terdapat masalah dengan " "rangkaian atau dengan pelayan. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Pengesahan gagal" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Pengesahan menatar gagal. Mungkin terdapat masalah dengan rangkaian atau " "dengan pelayan. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Tidak dapat menjalankan penataran" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Ini biasanya disebabkan oleh sistem yang mana /tmp melekapkan noexec. Sila " "nyahlekap noexec dan jalankan tatar lagi." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Mesej ralat ialah '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Penataran" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Nota pelepasan" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Memuat turun fail pakej tambahan..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Fail %s dari %s pada kelajuan %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Fail %s dari %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Sila masukkan '%s' kedalam pemacu '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Perubahan Media" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms sedang digunakan" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Sistem anda menggunakan pengurus volum 'evms' dalam /proc/mounts. Perisian " "'evms' tidak lagi disokong, sila tutupkannya dan jalankan penataran sekali " "lagi bila tindakan ini selesai dijalankan." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "Perkakasan grafik anda tidak sepenuhnya disokong dalam Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Menjalankan persekitaran desktop 'unity' adalah tidak disokong sepenuhnya " "oleh perkakasan grafik anda. Anda akan mengalami persekitaran yang sangat " "lambat selepas penataran. Saranan kami adalah kekalkan penggunaan versi LTS " "buat masa ini. Untuk maklumat lanjut rujuk " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Anda masih " "mahu teruskan penataran?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Perkakasan grafik anda tidak menyokong sepenuhnya Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Sokongan Ubuntu 12.04 LTS menggunakan perkakasan grafik Intel anda adalah " "terhad dan anda mungkin menghadapi masalah selepas penataran. Untuk maklumat " "lanjut rujuk https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Anda " "hendak teruskan penataran?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Penataran akan mengurangkan kesan desktop, dan prestasi didalam permainan " "serta program bergrafik tinggi yang lain." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Komputer ini buat masa ini menggunakan pemacu grafik 'nvidia' NVIDIA. Tiada " "pemacu versi ini yang sesuai dengan kad video anda didalam Ubuntu 10.04 " "LTS.\n" "\n" "Adakah anda ingin meneruskannya?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Komputer ini buat masa ini menggunakan pemacu grafik 'fglrx' AMD. Tiada " "pemacu versi ini yang sesuai dengan kad video anda didalam Ubuntu 10.04 " "LTS.\n" "\n" "Adakah anda ingin meneruskannya?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "CPU No i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sistem anda menggunakan CPU i586 atau CPU yang tidak mempunyai sambungan " "'cmov'. Semua pakej dibina dengan pengoptimuman yang memerlukan i686 sebagai " "senibina minimum. Adalah tidak mungkin menatar sistem anda kepada pelepasan " "Ubuntu baru dengan perkakasan ini." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Tiada CPU ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sistem anda menggunakan CPU ARM yang lebih tua dari senibina ARMv6. Semua " "pakej didalam karmic dibina dengan pengoptimuman yang memerlukan ARMv6 " "sebagai senibina yang minimum. Adalah tidak mungkin sistem anda boleh " "ditatarkan kepada pelepasan Ubuntu yang terbaru menggunakan perkakasan ini." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Tiada init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Sistem anda kelihatan sebagai persekitaran termaya tanpa init daemon, cth. " "Linux-VServer. Ubuntu 10.04 LTS tidak boleh berfungsi didalam persekitaran " "ini, ia memerlukan kemaskini konfigurasi mesin maya anda terlebih dahulu.\n" "\n" "Adakah anda ingin meneruskannya?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Tatar kotak pasir menggunakan aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Gunakan laluan yang diberikan untuk menggelintar cdrom dengan pakej boleh " "tatar" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Guna bahagian hadapan. Ada buat masa ini: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*LAPUK* pilihan ini akan diabaikan" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Lakukan penataran separa sahaja (tiada sources.list ditulis semula)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Lumpuhkan sokongan skrin GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Tetapkan datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Pengambilan Selesai" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Memperoleh fail %li dari %li pada kelajuan %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Kira-kira %s berbaki" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Memperoleh fail %li dari %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Melaksanakan perubahan" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "Masalah dependensi - dibiarkan tidak berkonfigurasi" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Tidak dapat memasang '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Penataran akan diteruskan tetapi pakej '%s' mungkin tidak boleh berfungsi. " "Sila serahkan laporan pepijat mengenainya." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Ganti fail konfigurasi tersuai\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Akan akan kehilangan perubahan yang anda lakukan pada fail konfigurasi ini " "jika anda memilih untuk menggantikannya dengan versi yang terbaru." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Perintah 'diff' tidak ditemui" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ralat mati berlaku" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Sila laporkan ini sebagai pepijat (jika anda belum lakukannya) dan sertakan " "fail /var/log/dist-upgrade/main.log dan /var/log/dist-upgrade/apt.log " "didalam laporan anda. Penataran telah diabaikan.\n" "Sources.list asal anda telah disimpan didalam " "etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c ditekan" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Tindakan ini akan menghenti paksa operasi dan mungkin tinggalkan sistem " "dalam keadaan rosak. Adakah anda pasti ingin melakukannya?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Untuk mengelakkan kehilangan data tutup semua aplikasi dan dokumen." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Tidak lagi disokong oleh Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Turun Taraf (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Buang (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Tidak lagi diperlukan (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Pasang (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Tatar (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Papar Perubahan >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Sembunyi Perubahan" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Ralat" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Batal" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Tutup" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Papar Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Sembunyi Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Maklumat" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Perincian" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Tidak lagi disokong %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Buang %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Buang (dipasang secara automatik) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Pasang %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Tatar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Mula semula diperlukan" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Mula semula sistem untuk melengkapkan penataran" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Mula Semula Sekarang" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Hendak membatalkan penataran yang dijalankan?\n" "\n" "Sistem mungkin tidak stabil jika anda batalkan penataran. Anda sangat " "disarankan menyambung semula penataran tersebut." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Batalkan Penataran?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li hari" msgstr[1] "%li hari" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li jam" msgstr[1] "%li jam" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minit" msgstr[1] "%li minit" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li saat" msgstr[1] "%li saat" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Muat turun ini akan mengambil masa kira-kira %s dengan sambungan DSL 1Mbit " "dan kira-kira %s dengan modem 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" "Muat turun ini akan mengambil masa kira-kira %s dengan sambungan anda. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Persediaan untuk penataran" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Mendapatkan saluran perisian baru" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Mendapatkan pakej baru" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Memasang tatar" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Membersihkan" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d pakej yang dipasang tidak lagi disokong oleh Canonical. Anda " "boleh dapatkan sokongan dari komuniti." msgstr[1] "" "%(amount)d pakej yang dipasang tidak lagi disokong oleh Canonical. Anda " "boleh dapatkan sokongan dari komuniti." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakej yang akan dibuang." msgstr[1] "%d pakej yang akan dibuang." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d pakej baru yang akan dipasang." msgstr[1] "%d pakej baru yang akan dipasang." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakej yang akan ditatarkan." msgstr[1] "%d pakej yang akan ditatarkan." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Anda mesti memuat sejumlah %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Pemasangan tatar boleh mengambil masa beberapa jam. Bilamana muat turun " "selesai, proses tidak boleh dibatalkan." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Mendapatkan dan memasang tatar boleh mengambil masa beberapa jam. Bila muat " "turun selesai, proses tidak boleh dibatalkan." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Pembuangan pakej boleh mengambil masa beberapa jam. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Perisian pada komputer ini sudah dikemaskini." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Tiada penataran ada untuk sistem anda. Penataran akan dibatalkan sekarang." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "But semula Diperlukan" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Penataran sudah selesai dan but semula diperlukan. Adakah anda ingin " "melakukannya sekarang?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Sila laporkan ini sebagai pepijat dan sertakan fail /var/log/dist-" "upgrade/main.log dan /var/log/dist-upgrade/apt.log didalam laporan anda. " "Penataran telah diabaikan.\n" "Sources.list asal anda telah disimpan didalam " "etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Dihenti Paksa" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Turun Taraf:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Untuk teruskan tekan [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Teruskan [yT] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Perincian [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Tidak lagi disokong: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Buang: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Pasang: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Tatar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Teruskan [Yt] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Untuk menyelesaikan penataran, mula semula diperlukan.\n" "Jika anda pilih 'y' sistem akan dimulakan semula." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "Memuat turun fail %(current)li dari %(total)li dengan kelajuan %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Memuat turun fail %(current)li dari %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Papar perkembangan fail secara individu" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Batalkan Penataran" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Sambung Semula Penataran" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Hendak membatalkan penataran yang dijalankan?\n" "\n" "Sistem mungkin tidak boleh berfungsi jika anda batalkan penataran. Anda " "sangat disarankan menyambung semula penataran tersebut." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Mulakan Penataran" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Gantikan" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Perbezaan antara fail" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Laporkan Pepijat" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Teruskan" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Mulakan penataran?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Mula semula sistem untuk menyelsaikan penataran\n" "\n" "Sila simpan kerja anda sebelum meneruskannya." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Tatar Distribusi" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Menatar Ubuntu ke versi 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Menetapkan saluran perisian baru" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Mulakan semula komputer" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Tatar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Versi baru Ubuntu sudah ada. Adakah anda ingin melakukan penataran?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Jangan Tatar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Tanya Saya Kemudian" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ya, Tatar Sekarang" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Anda telah menolak untuk menatar ke Ubuntu baru" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Anda boleh tatar kemudian dengan membuka Pengemaskini Perisian dan klik " "\"Tatar\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Buat penataran pelepasan" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Untuk menatar Ubuntu, anda perlu sahihkan." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Buat penataran separa" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Untuk membuat penataran separa, anda perlu sahihkan." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Papar versi dan keluar" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Direktori yang mengandungi fail data" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Jalankan bahagian hadapan (frontend) yang ditentukan" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Menjalankan penataran separa" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Memuat turun alat pelepasan tatar" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Semak jika menatar ke pelepasan devel terkini jika boleh" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Cuba menatar pelepasan terkini menggunakan penatar dari $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Jalankan dalam mod penataran khas.\n" "Buat masa ini penataran biasa sistem desktop untuk 'desktop' dan sistem " "pelayan untuk 'pelayan' disokong." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Uji penataran dengan tindihan atas aufs bagi kotak pasir" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Semak jika pelepasan distribusi baru sudah ada dan laporkan keputusan " "melalui kod keluar." #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Menyemak keluaran Ubuntu baru" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Pelepasan Ubuntu anda tidak lagi disokong." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Maklumat penataran, sila lawati:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Tiada pelepasan terbaru ditemui" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Pelepasan penataran adalah tidak mungkin buat masa ini" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Pelepasan penataran tidak boleh dilakukan buat masa ini, sila cuba lagi " "dilain masa. Pelayan melaporkan: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Pelepasan terbaru '%s' ada." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Jalankan 'do-release-upgrade' untuk menatarkannya." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Penataran Ubuntu %(version)s Sudah Ada" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Anda telah menolak penataran Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Tambah output nyahpepijat" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Pengesahihan diperlukan untuk membuat penataran pelepasan" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Pengesahihan diperlukan untuk membuat penataran separa" ubuntu-release-upgrader-0.220.10/po/ja.po0000644000000000000000000021511012431225715014743 0ustar # Ubuntu-ja translation of update-manager. # Copyright (C) 2006 THE update-manager'S COPYRIGHT HOLDER # This file is distributed under the same license as the update-manager package. # Ikuya Awashiro , 2006. # Hiroyuki Ikezoe , 2005 # # msgid "" msgstr "" "Project-Id-Version: update-manager 0.42.4\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:44+0000\n" "Last-Translator: Mitsuya Shibata \n" "Language-Team: Ubuntu Japanese Team \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s にあるサーバー" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "メインサーバー" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "カスタムサーバー群" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.listのエントリーから作業内容を見積もれません" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "パッケージファイルが見つかりません。UbuntuのCDではないか、異なるアーキテクチャー向けのCDかもしれません。" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CDの追加に失敗しました" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD をリソースとして追加できなかったため、アップグレードは終了されます。この CD が正規の Ubuntu CD " "の場合は、このことをバグとして報告してください。\n" "\n" "エラーメッセージ:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "壊れた状態のパッケージを削除する" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "パッケージ '%s' は 矛盾した状態にあり再インストールが必要ですが、そのためのアーカイブを見つけることができません。 " "このパッケージを削除して先に進めますか?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "サーバーが過負荷状態にある可能性があります" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "壊れたパッケージ" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "システムにはこのソフトウェアでは修復できない壊れたパッケージが含まれています。 Synaptic や apt-get を使って最初に修正してください。" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "アップグレードの見積もり中に解決できない問題が発生しました:\n" "%s\n" "\n" " 以下の原因が考えられます:\n" " * Ubuntu のリリース前バージョンへアップグレードしようとしている。\n" " * Ubuntu のリリース前バージョンを使っている。\n" " * Ubuntu が提供していない、非公式なパッケージを利用している。\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "これは一時的な問題のようです。後でもう一度試してください。" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "いずれかにも当てはまらない場合には、端末上から 'ubuntu-bug ubuntu-release-upgrader-core' " "を実行してこのバグを報告してください。" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "アップグレード作業を見積もれません" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "パッケージの認証において、エラーがありました" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "いくつかのパッケージが認証できませんでした。これは一時的なネットワークの問題かもしれません。あとで再び試してみてください。以下に認証できなかったパッケージ" "のリストが表示されます。" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "パッケージ'%s'は「削除」と指定されていますが、削除ブラックリストに入っています。" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "必須パッケージ'%s'に「削除」マークがついています。" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "ブラックリストに入っているバージョン '%s' をインストールしようとしています" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s'をインストールすることができません。" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "必要なパッケージをインストールできませんでした。端末上から 'ubuntu-bug ubuntu-release-upgrader-core' " "を実行し、これをバグとして報告してください。" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "メタパッケージを推測できません" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "システムに ubuntu-desktop, kubuntu-desktop, xubuntu-desktop, もしくはedubuntu-desktop " "パッケージが含まれていません。このため、実行している ubuntu のバージョンが検出できません。 \n" " 続ける前に、Synaptic や apt-get を使用して、まずは上記のパッケージのうちのいずれかをインストールしてください。" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "キャッシュを読み込み中" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "排他的なロックができません" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "パッケージマネージャーは一度にひとつしか起動できません。apt-getやaptitudeなどのような、他のパッケージマネージャーを終了してください。" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "リモート接続経由でのアップグレードはサポートされていません" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "このアップグレード処理は、リモートSSH経由で実行されたフロントエンドGUIから実行されているようです。\n" "このツールはそうした処理をサポートしていません。\n" "\n" "もしリモートからのアップグレードを望むなら、テキストモードでのアップグレード 'do-release-upgrade' を試してみてください。\n" "\n" "アップグレードは中断されます。SSHを経由しない起動方法で実行してください。" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH経由で実行していますが、続けますか?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "このセッションはSSH上で実行されているようです。アップグレードをSSH越しに行うことは推奨されません。アップグレードに失敗した時の復元が困難になるからで" "す。\n" "\n" "続行する場合、追加のSSHデーモンをポート '%s' で起動します。\n" "本当に作業を進めてよろしいですか?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "予備のsshdを開始します" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "障害が起こったときに復旧しやすくするため、ポート '%s' でもう一つの sshd " "を開始します。現在実行中のsshにおかしなことが起きても、もう一方のポートに接続することができます。\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "ファイアウォールを実行している場合、このポートを一時的に開く必要があります。この操作は、潜在的な危険があるため自動的には行われません。以下の例のようにして" "ポートを開けます:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "アップグレードできません" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "'%s' から '%s' へのアップグレードは、このツールではサポートされていません。" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "サンドボックス環境のセットアップに失敗しました" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "サンドボックス環境を構築することができませんでした。" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "サンドボックスモード" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "このアップグレードはサンドボックス(テスト)モードで実行中です。すべての変更は '%s' に書きこまれ、次に再起動したときに破棄されます。\n" "\n" "現時点から次に再起動するまでの間にシステムディレクトリに書き込まれた変更は、破棄されます。" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "インストールされたPythonが破損しています。シンボリックリンク'/usr/bin/python'を修正してください。" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "'debsig-verify'パッケージがインストールされています" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "'debsig-verify'パッケージがインストールされていると、アップグレードを継続することができません。\n" "Synapticパッケージマネージャーか 'apt-get remove debsig-verify' " "で削除した後で、再度アップグレードを実行してください。" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "'%s' に書き込みできません" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "システムディレクトリ '%s' に書き込みできないため、アップグレードを続行できません。\n" "システムディレクトリが書き込み可能かどうか確認してください。" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "インターネットからの最新のアップデート情報を取得しますか?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "アップグレードシステムは、ネットワークを利用したシステムのアップグレードに対応しています。最新のパッケージを自動的にダウンロードし、アップグレード時に併せ" "てインストールできるため、ネットワークへの接続が可能なら、この方法を使うことを強く推奨します。\n" "\n" "アップグレードには時間がかかりますが、ネットワークを利用すれば、完了時に最新のアップデータが導入された状態になります。ネットワークを利用しないアップグレー" "ドも可能ですが、この場合はアップグレードが完了した後で、さらにアップデータをインストールする必要があります。\n" "ここで「いいえ」を選択すると、アップグレードにネットワークを利用しません。" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "%sへのアップグレード時に無効化されました" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "利用可能なミラーが見つかりません" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "システムに設定されたリポジトリ情報を確認しましたが、アップグレードに利用可能なミラーサーバーのエントリが見つかりませんでした。プライベートなミラーサーバー" "を利用していたり、ミラー情報が古い可能性があります。\n" "\n" "ミラーサーバーの設定ファイル 'sources.list' をとにかく編集しますか? 「はい」を選択すると、'%s' エントリは '%s' " "に置き換わります。\n" "「いいえ」を選択すると、アップグレードをキャンセルします。" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "標準のリポジトリ設定ファイルを生成しますか?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "システムの 'sources.list' を確認しましたが、有効な '%s' のためのエントリが見つかりません。\n" "\n" "'%s' のためのデフォルト設定エントリを追加しますか? 「いいえ」を選択すると、アップグレードはキャンセルされます。" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "リポジトリ情報が無効です" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "リポジトリの情報を更新した際にファイルが破損しました。それによりバグ報告のプロセスが開始されました。" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "サードパーティが提供するリポジトリを使わない設定にしました" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "sources.list にあるサードパーティが提供するリポジトリを使わない設定にしました。アップグレード完了後、'ソフトウェアソース' " "ツールもしくはパッケージマネージャーを使って再び利用可能な設定にすることができます。" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "矛盾した状態のパッケージ" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "パッケージ '%s' は " "矛盾した状態にあり再インストールが必要ですが、そのためのアーカイブを見つけることができません。パッケージを手動で再インストールするか、システムからパッケー" "ジを削除してください。" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "アップデート中にエラーが発生しました" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "アップデート中に問題が発生しました。通常、これはネットワークにおける何らかの問題です。ネットワーク接続が可能であることをチェックし、あらためて試してくださ" "い。" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "ディスクの空き領域が足りません" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "アップグレードを中断しました。アップグレードを行うには、 %s の空き容量がディスク %s に必要です。少なくともあと %s の空き容量をディスク %s " "に作ってください。ゴミ箱を空にしたり、'sudo apt-get clean' を実行して今までにインストールした一時パッケージを削除してください。" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "変更点を確認中" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "アップグレードを開始しますか?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "アップグレードをキャンセルしました" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "アップグレードはすぐにキャンセルされ、システムは元の状態に戻ります。後でアップグレードをやり直すことができます。" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "アップグレードに必要なデータをダウンロードできません" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "アップグレードを中断しました。インターネット接続またはインストールメディアを確認して再度試してください。これまでにダウンロードしたすべてのファイルは保存さ" "れています。" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "反映中にエラーが発生しました" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "システムを元に戻しています" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "アップグレードをインストールできません" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "アップグレードを中断しました。システムが不安定な状態の可能性があります。今からリカバリーを実行します。(dpkg --configure -a)" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "ブラウザから http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-" "upgrader/+filebug を開き /var/log/dist-upgrade/ にあるファイルを添付し、このバグを報告してください。\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "アップグレードを中断しました。インターネット接続またはインストールメディアを確認して、もう一度実行してください。 " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "サポートが中止された(あるいはリポジトリに存在しない)パッケージを削除しますか?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "そのまま(_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "削除(_R)" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "クリーンアップ中に問題が発生しました。詳細情報は下記のメッセージを参照してください。 " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "依存するパッケージがインストールされていません" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "依存するパッケージ '%s' がインストールされていません。 " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "パッケージマネージャーをチェック中です" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "アップグレードの準備に失敗しました" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "アップグレードのための準備に失敗しました。それによりバグ報告のプロセスが開始されました。" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "アップグレードの事前作業に失敗しました" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "アップグレードに必要なものを取得できませんでした。アップグレードはすぐに中止され、システムは以前の状態に戻されます。\n" "\n" "同時にバグ報告のプロセスが開始されました。" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "リポジトリ情報のアップデート" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "cdromの追加に失敗しました" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "cdrom の追加に失敗しました。" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "利用できないパッケージ情報です" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "取得中" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "アップグレード中です" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "アップグレードが完了しました" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "アップグレードは完了しましたが、アップグレード中にいくつかのエラーが発生しました。" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "古いソフトウェアを検索しています" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "システムのアップグレードが完了しました。" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "部分的なアップグレードが完了しました。" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "リリースノートが見つかりません" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "サーバーに大きな負荷がかかっています。 " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "リリースノートをダウンロードできません" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "インターネット接続を確認してください。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "「%(signature)s」を用いて「%(file)s」の認証を行ないます " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "'%s' の展開中" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "アップグレード・ツールを実行できません" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "これはアップグレードツールのバグと思われます。これを 'ubuntu-bug ubuntu-release-upgrader-core' " "というコマンドを実行してバグとして報告してください。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "ツールの署名のアップグレード" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "ツールのアップグレード" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "取得に失敗しました" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "アップグレードの取得に失敗しました。おそらくネットワークの問題です。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "認証に失敗しました" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "アップグレードの認証に失敗しました。おそらくネットワークまたはサーバーの問題です。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "抽出に失敗しました" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "アップグレードの展開に失敗しました。おそらくネットワークまたはサーバーの問題です。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "認証に失敗しました" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "アップグレードの検証に失敗しました。ネットワーク接続もしくはサーバーに問題があるかもしれません。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "アップグレードを実行できません" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "この現象は、通常/tmpがnoexecでマウントされている場合にシステムで発生します。noexecを付けずに再マウントして、再度アップグレードを実行してく" "ださい。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "エラーメッセージは'%s'です。" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "アップグレード" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "リリースノート" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "追加パッケージのダウンロード..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "ファイル %s / %s (%sB/s)" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "ファイル %s / %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "メディア '%s' をドライブ '%s' に挿入してください" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "メディアの交換" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms は使用中です" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "システムは/proc/mountsでボリュームマネジャとして 'evms' を使っています。'evms' " "ソフトウェアはもうサポートされていません。オフにしてからアップグレードしてください。" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "'unity' " "デスクトップ環境は、お使いのグラフィックハードウェアによるサポートが不完全です。アップグレード後にとても遅い環境になるかもしれません。現時点での私たちのア" "ドバイスは、LTSバージョンのままにしておくことです。詳細は " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D " "を確認してください。それでもアップグレードを続けますか?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "現在使用中のグラフィックハードウェアのサポートは Ubuntu 12.04 LTS では不完全な可能性があります。" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "現在使用中の Intel 製グラフィックハードウェアは Ubuntu 12.04 LTS " "では制限付きのサポートとなっているため、アップグレード後に不具合が発生する可能性があります。詳しくは " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx " "をご覧ください。アップグレードを続行しますか?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "アップグレードによって、デスクトップ効果(3Dデスクトップ)やゲーム、グラフィックに強く依存するその他のプログラムなどのパフォーマンスが低下するかもしれま" "せん。" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "現在、このコンピューターはNVIDIA 'nvidia' グラフィックドライバーを利用しています。Ubuntu 10.04 LTS " "では、このハードウェアで動作可能なドライバーのバージョンはありません。\n" "\n" "作業を続けますか?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "現在、このコンピューターはAMD 'fglrx' グラフィックドライバーを利用しています。Ubuntu 10.04 LTS " "では、このハードウェアで動作可能なドライバーのバージョンはありません。\n" "\n" "作業を続けますか?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "i686 CPU ではありません" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "あなたのコンピューターは、i586 CPU または 'cmov' 拡張命令に対応していない CPU " "を使用しています。すべてのパッケージは、最低限のアーキテクチャとして i686 " "を必要とする最適化でビルドされています。このハードウェアでは、新しいバージョンの Ubuntu にアップグレードすることができません。" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "ARMv6 準拠ではない CPU です" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "このシステムでは ARM CPU が使われていますが、ARMv6 アーキテクチャより古いもののようです。karmic の全てのパッケージは、ARMv6 " "アーキテクチャへの対応が必須な最適化オプションを利用してビルドされています。このハードウェアでは新しい Ubuntu " "のリリースにアップグレードできません。" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "initデーモンが見つかりません" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "このシステムは、initデーモンの関与なしで稼働している仮想環境のようです(例:Linux-VServer)。 Ubuntu 10.04 LTS " "ではこのタイプの環境を稼働させることができません。アップグレードの前に、仮想マシン設定を設定しなおす必要があります。\n" "\n" "本当に作業を進めてよろしいですか?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "aufsを使用したサンドボックスアップグレード" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "アップグレードパッケージが含まれたCD-ROMへのパスを指定してください" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "フロントエンドを使用してください。現在利用可能なもの: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*DEPRECATED* このオプションは無視されます" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "部分アップグレードだけを実行します(sources.listを書き換えません)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU screen のサポートを無効にする" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "datadirを設定" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "取得が完了しました" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "%li / %li を取得中(%s B/s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "残り時間 約%s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "%li / %li を取得中です" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "変更を適用しています" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "依存関係の問題 - 設定を見送ります" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' がインストールできません" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "アップグレードを続けますが、'%s' パッケージが動かない状態にある可能性があります。この件に関してバグレポートを送信することを検討してください。" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "以下のカスタマイズ済みの設定ファイルを置き換えますか?\n" "'%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "より新しいバージョンと入れ換えた場合、この構成ファイルへの変更内容は失われます。" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "'diff' コマンドが見つかりません" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "致命的なエラーが起こりました" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "(まだ報告されていなければ)この現象をバグとして報告してください。報告には /var/log/dist-upgrade/main.log と " "/var/log/dist-upgrade/apt.log を添付する必要があります。アップグレードは完了しませんでした。\n" "変更前のsources.listは/etc/apt/sources.list.distUpgradeに保存されています。" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c が入力されました" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "これは操作を中断することになり、システムを壊れた状態にしてしまうかもしれません。本当に実行しますか?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "データが失われることを避けるため、利用中のアプリケーションとドキュメントを閉じてください。" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Canonical によってサポートされなくなりました (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "ダウングレード (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "削除 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "もう不要なもの (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "インストール (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "アップグレード (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "差分を表示 >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< 差分を隠す" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "エラー" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "閉じる(&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "端末を表示 >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< 端末を隠す" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "情報" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "詳細" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "サポートされなくなりました %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s を削除" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "(自動インストールされた) %s を削除" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "インストール %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "アップグレード %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "再起動が必要です" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "アップグレードを完了するには、システムの再起動が必要です" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "すぐに再起動(_R)" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "実行中のアップグレードをキャンセルしますか?\n" "\n" "アップグレードをキャンセルしてしまうと、システムが不安定な状態になる恐れがあります。アップグレードを再開することを強くお勧めします。" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "アップグレードをキャンセルしますか?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li 日" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li 時間" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li 分" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li 秒" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "このダウンロードは 1Mbit DSL 接続で約 %s 、56k モデムで約 %s かかります。" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "このダウンロードは約 %s かかります。 " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "アップグレードの準備" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "新しいソフトウェア・チャンネルの取得" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "新しいパッケージの取得" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "アップグレードのインストール" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "クリーンアップ" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d 個のインストール済みパッケージは Canonical " "によってサポートされなくなりました。ただしコミュニティからのサポートは受けることができます。" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d 個のパッケージが削除されます。" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d 個の新規パッケージがインストールされます。" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d 個のパッケージがアップグレードされます。" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "合計 %s をダウンロードする必要があります。 " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "アップグレードをインストールするのに数時間かかることがあります。ダウンロードが完了してしまうと、処理はキャンセルできません。" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "アップグレードの取得とインストールには数時間かかることがあります。ダウンロードが完了してしまうと、処理はキャンセルできません。" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "パッケージの削除に数時間かかることがあります。 " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "このコンピューターのソフトウェアは最新です。" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "システムに適用可能なアップグレードはありません。アップグレードは中止されます。" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "再起動が必要です" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "アップグレードが終了しました。再起動が必要です。今すぐ自動で再起動しますか?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "この現象をバグとして報告してください。報告には /var/log/dist-upgrade/main.log と /var/log/dist-" "upgrade/apt.log を添付する必要があります。アップグレードは完了しませんでした。\n" "変更前のsources.listは/etc/apt/sources.list.distUpgradeに保存されています。" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "中断します" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "サポートレベルの格下げ:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "続けるには [ENTER] キーを押してください" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "続行する[yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "詳細 [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "サポートされなくなりました: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "削除: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "インストール: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "アップグレード: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "続ける [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "アップグレードを完了するには再起動が必要です。\n" "'Y' を選択すると再起動します。" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "ファイル %(current)li / %(total)li をダウンロード中 (%(speed)s/秒)" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "ファイル %(current)li / %(total)li をダウンロード中" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "個別のファイルの進捗を表示" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "アップグレードをキャンセル(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "アップグレードを再開(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "アップグレードをキャンセルしますか?\n" "\n" "アップグレードをキャンセルすると、おそらくシステムは不安定な状態になります。アップグレードを再開することを強くおすすめします。" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "アップグレードを開始(_S)" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "置き換える(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "ファイル同士の差異" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "バグを報告する(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "続行する(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "アップグレードを開始しますか?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "アップグレードを完了するには再起動してください\n" "\n" "先へ進む前に、他のアプリケーションで行っているすべての作業を保存してください。" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "ディストリビューションのアップグレード" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "新しいソフトウェア・チャンネルを設定しています" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "コンピューターの再起動" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "端末" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "アップグレード(_U)" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "新しいバージョンの Ubuntu が利用可能です。アップグレードしますか?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "アップグレードしない" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "次回にたずねる" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "今すぐアップグレードする" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "新しいUbuntuへのアップグレードを拒絶" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "後でアップグレードするには、ソフトウェアアップデーターを開き \"アップグレード\" をクリックします。" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "リリースアップグレードを実行する" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Ubuntuをアップグレードするには、認証が必要です。" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "部分アップグレードを行う" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "部分的なアップグレードを実行するには、認証が必要です。" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "バージョンを表示して終了" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "データファイルの含まれるディレクトリ" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "特定のフロントエンドで実行" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "部分的なアップグレードを実行" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "リリースアップグレードツールのダウンロード" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "最新の開発リリースへのアップデートが利用可能かどうかチェックする" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "アップグレードソフトウェアを使って $distro-proposed から最新のリリースへのアップグレードを試す" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "特別なアップグレードモードで実行する。\n" "現在、デスクトップシステムの標準的なアップグレードを行う 'desktop' オプションと、サーバーシステム向けの 'server' " "オプションがサポートされています。" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "aufsオーバレイを実験環境に用いてのテストアップグレード" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "新しいディストリビューション・リリースが利用可能かどうかチェックし、終了コードで結果を通知する" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "新しい Ubuntu のリリースをチェックしています" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "このバージョンのUbuntuは既にサポートが打ち切られています。" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "アップグレード情報は以下を参照:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "新しくリリースされたものはありません" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "今はリリースアップグレードができません。" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "リリースアップグレードが現在実行できないので後でもう一度試してください。サーバーの報告は以下のとおりです: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "新しいリリース '%s' が利用可能になっています。" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "'do-release-upgrade' を実行してアップグレードしてください" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s のアップグレードが利用可能です" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Ubuntu %s へのアップグレードを拒絶" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "デバッグ出力を追加" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "部分アップグレードを行うのに認証が必要です" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "リリースアップグレードを行うのに認証が必要です" ubuntu-release-upgrader-0.220.10/po/sd.po0000644000000000000000000013043512431225715014765 0ustar # Sindhi translation for update-manager # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Terry \n" "Language-Team: Sindhi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: sd\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "سي ڊي شامل ڪرڻ ۾ ناڪامي" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "ٽٽل بنڊل" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "تجديد ماپي نه سگهيو" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "’%s‘ تنسيب نه ٿو ٿي سگهي" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "ڪئشي پڙهندي" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/pt.po0000644000000000000000000017314612431225715015010 0ustar # Portuguese translation of update-manager. # Copyright (C) 2005 Free Software Foundation, Inc. # This file is distributed under the same license as the update-manager package. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Ubuntu Portuguese Team \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Servidor para %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Servidor principal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Servidores personalizados" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Não foi possivel calcular a entrada sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Não foi possível localizar ficheiros de pacotes, talvez isto não seja um " "Disco Ubuntu ou é de uma outra arquitectura?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Falha ao adicionar o CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Ocorreu um erro ao adicionar o CD, a actualização de versão será abortada. \n" "Por favor relate este erro caso este seja um CD válido do Ubuntu.\n" "\n" "A mensagem de erro foi:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Remover o pacote em mau estado" msgstr[1] "Remover os pacotes em mau estado" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "O pacote '%s' está num estado inconsistente e precisa de ser reinstalado mas " "não é possível encontrar nenhum arquivo para ele. Deseja remover este pacote " "agora para continuar?" msgstr[1] "" "Os pacotes '%s' estão num estado inconsistente e precisam de ser " "reinstalados mas não é possível encontrar nenhum arquivo para eles. Deseja " "remover estes pacotes agora para continuar?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "O servidor pode estar sobrecarregado" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Pacotes quebrados" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "O seu sistema contém pacotes quebrados que não puderam ser corrigidos com " "este software. Por favor corrija-os usando o synaptic ou apt-get antes de " "continuar." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Ocorreu um erro irresolúvel durante o cálculo da actualização de versão " "(upgrade):\n" "%s\n" " Isto pode ser causado por:\n" " * Pretender actualizar o sistema para uma versão de pré-lançamento do " "Ubuntu\n" " * Estar a usar uma versão de pré-lançamento do Ubuntu\n" " * Pacotes de software não oficial e não disponibilizadas pelo Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Isto é provavelmente um problema temporário, por favor tente mais tarde." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Impossível calcular a actualização de versão" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Erro ao autenticar alguns pacotes" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Não foi possível autenticar alguns pacotes. Este pode ser um problema de " "rede temporário. Tente novamente mais tarde. Verifique abaixo uma lista de " "pacotes não autenticados." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "O pacote '%s' está marcado para remoção mas está na lista negra de remoção." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "O pacote essencial '%s' está marcado para remoção." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Tentando instalar a versão '%s' da lista negra" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Impossível instalar '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Impossível descobrir meta-pacote" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "O seu sistema não contém o pacote ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop ou edubuntu-desktop, portanto não é possível detectar qual a versão " "do ubuntu que está a executar.\n" " Por favor instale um dos pacotes acima mencionados usando o synaptic ouo " "apt-get antes de continuar." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "A ler a cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Incapaz de obter o acesso exclusivo ao sistema" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Isto geralmente significa que existe outro gestor de pacotes (como o apt-get " "ou o aptitude) em execução. Tem de sair dessa aplicação primeiro antes de " "continuarmos." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "A actualização através de uma ligação remota não é suportada" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Está a executar a actualização através de uma ligação SSH, porém o seu " "interface não suporta isto. Por favor tente uma actualização de versão em " "modo texto com 'do-release-upgrade'.\n" "\n" "A actualização de versão vai ser cancelada. Por favor tente sem SSH." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Continuar a correr sobre SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Esta sessão parece estar a ser executada sob SSH. Não é recomendado efectuar " "actualizações de versão numa ligação SSH pois em caso de falha será mais " "difícil reparar. \n" "\n" "Se continuar, um daemon SSH adicional será iniciado na porta '%s'.\n" "Deseja continuar ?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "A iniciar um sshd adicional" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Para recuperar facilmente em caso de falha, um sshd adicional arrancará na " "porta '%s'. Se alguma coisa correr mal com o ssh actual, você poderá ligar-" "se ao adicional.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Se tem uma firewall, pode precisar de abrir temporariamente esta porta. Como " "esta acção é pode ser perigosa, não é feita automaticamente. Pode abrir a " "porta com:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Impossível actualizar a versão" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Uma actualização de versão de '%s' para '%s' não é suportada por esta " "ferramenta." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "A configuração sandbox (teste) falhou" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Não foi possível criar um ambiente sandbox (teste)" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Modo sandbox" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "A sua instalação de python está corrompida. Por favor corriga a ligação " "simbólica para '/usr/bin/python'" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "O pacote 'debsig-verify' está instalado" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "A actualização de versão não pode continuar se esse pacote estiver " "instalado.\n" "Por favor remova-o primeiro com o Synaptic ou 'apt-get remove debsig-verify' " "e inicie a actualização de versão novamente." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Incluir últimas actualizações a partir da Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "O processo de actualização da distribuição pode fazer a transferência das " "últimas actualizações e instalá-las durante o processo de actualização. Se " "tem uma ligação de rede esta opção é muito recomendável.\n" "\n" "Neste caso, a actualização de versão irá demorar mais tempo, mas quando " "estiver concluída, o sistema ficará completamente actualizado.\n" "\n" "Se responder 'não' aqui, a ligação à rede não será usada. Se escolher não " "fazer isto, terá de instalar as últimas actualizações depois de ter sido " "actualizada a distribuição." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "desactivada na actualização para a versão %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrado" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Ao procurar a informação, não foi encontrada a informação sobre a " "actualização de versão no seu repositório-espelho. Isto pode acontecer se " "possuir um repositório-espelho interno ou se a informação do espelho não " "estiver actualizada.\n" "\n" "Deseja reescrever o ficheiro 'sources.list' de qualquer forma? Se escolher " "'Sim' aqui, então irão ser actualizadas todas as entradas de '%s' até '%s'.\n" "Se escolher 'Não', a actualização será cancelada." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Gerar as fontes padrão?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Depois de rastrear 'sources.list' não foi encontrada uma entrada válida para " "'%s'.\n" "\n" "Devem ser adicionadas as entradas predefinidas de '%s' ? Se escolher 'Não', " "a actualização de versão será cancelada." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Informação de repositório inválida" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Fontes de terceiros desactivadas" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Algumas entradas de terceiros em sources.list foram desactivadas. Depois da " "actualização de versão, pode reactivá-las com uns dos seus gestores de " "pacotes (synaptic, apt)." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "O pacote está num estado inconsistente" msgstr[1] "Os pacotes estão num estado inconsistente" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "O pacote '%s' está num estado inconsistente e necessita de ser reinstalado, " "mas não é possível encontrar um arquivo para ele. Por favor reinstale este " "pacote manualmente ou remova-o do sistema." msgstr[1] "" "Os pacotes '%s' estão num estado inconsistente e necessitam de ser " "reinstalados, mas não é possível encontrar um arquivo para eles. Por favor " "reinstale estes pacotes manualmente ou remova-os do sistema." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Erro durante a actualização" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Ocorreu um problema durante a actualização. Habitualmente trata-se de algum " "problema na rede, por favor verifique a sua ligação à rede e tente novamente." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Não existe espaço livre suficiente em disco" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "A actualização de versão foi abortada. A actualização necessita de um total " "de %s espaço livre no disco '%s'. Por favor liberte no mínimo %s de espaço " "adicional no disco '%s'. Esvazie a sua reciclagem e remova pacotes " "temporários de instalações anteriores utilizando 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "A aplicar as alterações" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Deseja iniciar a actualização de versão?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Actualização de versão cancelada" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "A actualização vai ser cancelada e o sistema original será restaurado. Pode " "retomar esta actualização posteriormente." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Impossível descarregar as actualizações" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "A atualização foi abortada. Por favor, verifique a sua ligação à Internet ou " "o suporte de instalação e tente novamente. Todos os ficheiros descarregados " "até então foram mantidos." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Erro ao submeter" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "A restaurar o estado original do sistema" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Impossível instalar as actualizações" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "A actualização foi abortada. O seu sistema pode encontrar-se num estado não " "utilizável. Uma recuperação vai correr agora (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "A actualização de versão foi abortada. Por favor verifique a sua ligação à " "Internet ou o seu meio de instalação e tente novamente. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Remover pacotes obsoletos?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Manter" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Remover" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Ocorreu algum problema durante a limpeza. Por favor verifique a mensagem " "abaixo para mais informações. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "A dependência requerida não foi instalada" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "A dependência '%s' requerida não foi instalada. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "A verificar gestor de pacotes" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "A preparação da actualização de versão falhou" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Falhou a obtenção do pré-requisitos da actualização de versão" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "A actualizar informação de repositórios" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Falhou a adicionar o CD-ROM" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Desculpe, mas a adição do CD-ROM não foi bem sucedida." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Informação de pacotes inválida" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "A recolher" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "A actualizar" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Actualização concluída" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "A actualização da versão do sistema foi concluída, mas ocorreram erros " "durante o processo." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "À procura de software obsoleto" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "A actualização da versão do sistema foi concluída." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "A actualização parcial de versão foi concluída." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Impossível encontrar notas de lançamento" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "O servidor poderá estar sobrecarregado. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Impossível descarregar as notas de lançamento" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Por favor verifique a sua ligação à internet." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Impossível de executar a ferramenta de actualização" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Assinatura da ferramenta de actualização" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Ferramenta de actualização de versão" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Falha a obter" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Falhou ao obter a actualização de versão. Poderá existir um problema de " "rede. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Autenticação falhou" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Autenticação da actualização falhou. Poderá existir um problema com a rede " "ou com o servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Falhou ao extrair" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Extracção da actualização de versão falhou. Poderá existir um problema com a " "rede ou com o servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "A verificação falhou" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "A verificação da actualização falhou. Poderá existir um problema com a rede " "ou com o servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Impossível executar a actualização" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Isto é normalmente causado por um sistema onde /tmp está montado noexec. Por " "favor, remonte sem noexec e corra a atualização novamente." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "A mensagem de erro é '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Actualizar" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Notas de Lançamento" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "A descarregar pacotes adicionais..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Ficheiro %s de %s a %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Ficheiro %s de %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Por favor insira '%s' no leitor '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Alterar Media" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms em uso" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "O seu sistema utiliza o gestor de volumes \"evms\" em /proc/mounts. O " "software \"evms\" já não tem suporte. Por favor desactive-o e faça a " "actualização novamente quando esta acção estiver terminada." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Actualizar pode reduzir os efeitos do ambiente de trabalho, bem como o " "desempenho em jogos e outros programas graficamente exigentes." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Este computador utiliza o driver gráfico NVIDIA 'nvidia'. Não está " "disponível nenhuma versão deste driver que funcione com o seu hardware no " "Ubuntu 10.04 LTS.\n" "\n" "Pretende continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Este computador utiliza o driver gráfico AMD 'fglrx'. Não está disponível " "nenhuma versão deste driver que funcione com o seu hardware no Ubuntu 10.04 " "LTS.\n" "\n" "Pretende continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Nenhum CPU i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "O seu sistema usa um CPU i586 ou um que não possui a extensão 'cmov'. Todos " "os pacotes são construídos para usar optimizações que requerem a " "arquitectura i686 mínima. Não é possível actualizar o seu systema para a " "nova versão do Ubuntu com o hardware actual." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Sem CPU ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "O seu sistema usa um CPU ARM que é anterior à arquitectura ARMv6. Todos os " "pacotes do karmic foram construídos e optimizados para ARMv6 como " "arquitectura mínima. Não é possível fazer upgrade para uma nova versão de " "Ubuntu com este hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Sem inicialização disponível" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "O seu sistema aparente ser um ambiente virtual sem um daemon de " "inicialização, por ex. o Linux-VServer. O Ubuntu 10.04 LTS não pode " "funcionar neste tipo de ambiente, sendo necessário actualizar primeiro a " "configuração da sua máquina virtual.\n" "\n" "De certeza que quer continuar?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Actualização em 'Sandbox' usando o aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Utilize o caminho fornecido para pesquisar os pacotes actualizáveis no " "leitor de cds" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Utilize o frontend. Actualmente disponíveis: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*OBSOLETO* esta opção será ignorada" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Executar apenas uma actualização parcial (não se irá escrever no " "sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Deactivar o suporte de Ecrã GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Definir datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "A transferência está completa" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "A obter o ficheiro %li de %li a %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Cerca de %s restantes" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "A obter o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "A aplicar as alterações" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemas com dependências - a deixar por configurar" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Impossível instalar '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "A actualização irá continuar mas o pacote '%s' pode não estar a funcionar. " "Por favor considere entregar um relatório de erro sobre ele." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Substituir ficheiro de configuração personalizado\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Perderá todas as alterações que fez a este ficheiro de configuração caso o " "substitua por uma versão mais recente." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ocorreu um erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Por favor reporte isto como um erro (caso ainda não o tenha feito) e inclua " "os ficheiros /var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log " "no seu relatório. A actualização de versão foi abortada.\n" "A sua sources.list foi guardada em /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Foi pressionado Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Isto irá abortar a operação e pode deixar o sistema num estado " "inconsistente. Tem a certeza que o deseja fazer?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir a perda de dados feche todas as aplicações e documentos " "abertos." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Não é suportado pela Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Desactualizar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Remover (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Não mais necessário (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instalar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Actualizar versão (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Mostrar Diferença >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Esconder Diferença" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Erro" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Fechar" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Mostrar Consola >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Esconder Consola" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informação" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detalhes" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Já não é suportado %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Remover %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Remover (foi instalado automaticamente) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instalar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Actualizar versão %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "É necessário reiniciar" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Reinicie o sistema para completar a actualização" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Reiniciar agora" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Cancelar a actualização de versão em curso?\n" "\n" "O sistema poderá ser deixado num estado inutilizável se cancelar a " "actualização. É aconselhado a prosseguir com a actualização de versão." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Cancelar a actualização de versão?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dia" msgstr[1] "%li dias" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hora" msgstr[1] "%li horas" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuto" msgstr[1] "%li minutos" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li segundo" msgstr[1] "%li segundos" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "O download irá demorar cerca de %s com uma ligação DSL de 1 Mbit e cerca de " "%s com um modem de 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Esta transferência irá consumir aproximadamente %s da sua ligação. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "A preparar para actualizar" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "A obter novos canais de software" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "A obter novos pacotes" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "A instalar as actualizações" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "A efectuar a limpeza" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d pacote instalado já não é suportado pela Canonical. Ainda assim, " "pode obter suporte através da comunidade." msgstr[1] "" "%(amount)d pacotes instalados já não são suportados pela Canonical. Ainda " "assim, pode obter suporte através da comunidade." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "o pacote %d irá ser removido." msgstr[1] "os pacotes %d serão removidos." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novo pacote irá ser instalado." msgstr[1] "%d novos pacotes serão instalados." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacote irá ser actualizado." msgstr[1] "%d pacotes serão actualizados." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Terá de descarregar um total de %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Não há actualizações disponíveis para o seu sistema. A actualização irá ser " "cancelada." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Necessário reiniciar" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "A actualização terminou e é necessário reiniciar. Deseja reiniciar agora?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Por favor report isto como um erro e inclua o ficheiro /var/log/dist-" "upgrade/main.log e /var/log/dist-upgrade/apt.log no seu relatório. A " "actualização de versão foi abortada." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "A abortar" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Despromovido:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Para continuar por favor pressione [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "_Continuar [sN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detalhes [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "s" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Não é mais suportado: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Remover %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instalar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Actualizar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continuar [Sn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Para finalizar a actualização, é necessário reiniciar o sistema.\n" "Se você escolher 's' o sistema irá ser reiniciado." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "A descarregar ficheiro %(current)li de %(total)li a %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "A descarregar ficheiro %(current)li de %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Mostrar progresso dos ficheiros individuais" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Cancelar a Actualização" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Retomar Actualização" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Cancelar a actualização de versão em curso?\n" "\n" "O sistema poderá ser deixado num estado inutilizável se cancelar a " "actualização. É aconselhado a prosseguir com a actualização de versão." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Iniciar Actualização" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Substituir" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Diferença entre os ficheiros" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Reportar um erro" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continuar" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Iniciar a actualização?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Reinicie o sistema para completar a actualização de " "versão\n" "\n" "Por favor guarde o seu trabalho antes de continuar." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Actualização de Versão da Distribuição" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "A definir novos canais de software" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "A reiniciar o computador" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Consola" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Actualizar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Uma nova versão do Ubuntu está disponível. Gostaria de actualizar?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Não actualizar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Perguntar-me Depois" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Sim, actualizar agora" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Você declinou a actualização para o novo Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Para atualizar o Ubuntu, tem que se autenticar." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Para realizar uma atualização parcial, tem que se autenticar." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Mostrar a versão e sair" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Directório que contém os ficheiros de dados" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Executar o frontend específico" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "A executar actualização parcial" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "A descarregar a ferramenta de actualização da nova versão" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Verifique se é possível actualizar para a última versão em desenvolvimento" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Tente actualizar para a última versão com o programa de actualização do " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Execute no modo de actualização especial.\n" "Actualmente 'desktop' para actualizações regulares do sistema desktop e " "'server' para o sistema servidor são suportados." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testar actualização com uma sobreposição de aufs na área segura" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Verificar apenas se está disponível uma nova versão da distribuição e " "comunicar o resultado através do código de saída" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Este lançamento do Ubuntu já não é suportado." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Para informações sobre a actualização de versão (upgrade), por favor " "visite:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Não existem novos lançamentos" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Não é possível neste momento fazer a actualização de versão" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "A actualização da versão não pode ser executada agora, por favor tente " "novamente mais tarde. o servidor reportou: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Nova versão '%s' disponível." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" "Correr 'do-release-upgrade' para actualizar para o lançamento mais recente." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Actualização Ubuntu %(version)s Disponível" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Você não aceitou a actualização para o Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/he.po0000644000000000000000000020745012431225715014755 0ustar # translation of update-manager.HEAD.po to Hebrew # This file is distributed under the same license as the PACKAGE package. # Yuval Tanny, 2005. # Yuval Tanny, 2005. # Yuval Tanny, 2005. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # Yuval Tanny, 2005. # msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:44+0000\n" "Last-Translator: Yaron \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: he\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "שרת עבור %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "השרת הראשי" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "שרתים מותאמים" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "לא ניתן לחשב את הרשומה בקובץ sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "לא ניתן לאתר כלל קובצי חבילות, היתכן שזהו אינו התקליטור של אובונטו או " "שהארכיטקטורה שגויה?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "הוספת התקליטור נכשלה" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "אירעה שגיאה בהוספת התקליטור, לכן השדרוג בוטל. נא לדווח על כך כתקלה אם מדובר " "בתקליטור אובונטו תקני.\n" "\n" "הודעת השגיאה הייתה:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "הסרת חבילה במצב רע" msgstr[1] "הסרת חבילות במצב רע" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "החבילה '%s' נמצאת במצב בלתי רציף ויש להתקינה מחדש, אך לא ניתן למצוא עבורה " "ארכיון. האם ברצונך להסיר חבילה זו כעת ולהמשיך?" msgstr[1] "" "החבילות '%s' אינן במצב רציף ויש להתקינן מחדש, אך לא ניתן למצוא עבורן ארכיון. " "האם ברצונך להסיר חבילות אלו כעת ולהמשיך?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "יתכן שהשרת נתון תחת עומס יתר" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "חבילות פגומות" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "במערכת שלך נמצאות חבילות פגומות שתכנה זו לא יכולה לתקן. נא לתקן אותן באמצעות " "synaptic או apt-get לפני המשך התהליך." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "אירעה שגיאה שאינה ניתנת לפתרון בעת חישוב השדרוג:\n" "%s\n" "\n" " מצב זה יכול להיגרם על ידי:\n" " * שדרוג להפצה טרומית של אובונטו\n" " * הרצת ההפצה הטרומית הנוכחית של אובונטו\n" " * חבילות תכנה לא רשמיות שאינן מסופקות על ידי אובונטו\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "כנראה שזוהי בעיה זמנית, נא לנסות שוב מאוחר יותר." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "אם אף אחד מאלה לא חל, נא לדווח על כך כתקלה באמצעות הפקודה 'ubuntu-bug ubuntu-" "release-upgrader-core' במסוף." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "לא ניתן לחשב את השדרוג" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "שגיאה באימות חלק מהחבילות" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "לא ניתן היה לאמת מספר חבילות. יתכן כי מדובר בבעיית רשת זמנית. ניתן לנסות שוב " "במועד מאוחר יותר. רשימת החבילות שלא אומתו מופיעה להלן." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "החבילה '%s' מסומנת להסרה אך חבילה זו נמצאת ברשימה הצנזורה להסרות." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "החבילה החיונית '%s' מסומנת להסרה." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "מתבצע ניסיון להתקנת גרסה מצונזרת '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "לא ניתן להתקין את '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "פעולת התקנת החבילה הנדרשת התגלתה כבלתי אפשרית. נא לדווח על כך כתקלה באמצעות " "הפקודה 'ubuntu-bug ubuntu-release-upgrader-core' במסוף." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "לא ניתן לזהות מהי חבילת העל" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "אף אחת מהחבילות ubuntu-desktop,‏ kubuntu-desktop או edubuntu-desktop אינה " "מותקנת במערכת שלך, לכן לא ניתן לזהות באיזו גרסה של אובונטו נעשה שימוש.\n" "נא להתקין אחת מהחבילות הנ״ל בעזרת Synaptic או apt-get לפני המשך התהליך." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "המטמון נקרא" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "לא ניתן להשיג נעילה בלעדית" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "בדרך כלל משמעות הדבר היא שמנהל חבילות אחר (למשל apt-get או aptitude) כבר " "פועל. נא לסגור היישום הנ״ל תחילה." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "לא קיימת תמיכה לשדרוג מחיבור מרוחק" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "מתבצע ניסיון להרצת שדרוג באמצעות חיבור SSH מרוחק עם מנשק שאינו תומך בזה. יש " "לנסות שוב לשדרג במצב טקסט עם '‎do-release-upgrade'.\n" "\n" "השדרוג יבוטל כעת. נא לנסות ללא SSH." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "להמשיך לרוץ תחת SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "נראה כי התחברות זו מופעלת דרך SSH. לא מומלץ לבצע שדרוג באמצעות SSH נכון " "לעכשיו כיוון שבמקרה של תקלה קשה יותר לשקם את המערכת.\n" "\n" "אם תמשיך, יופעל סוכן SSH נוסף בפתחה '%s'.\n" "האם ברצונך להמשיך?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "sshd נוסף מופעל" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "כדי להקל על השחזור במקרה של כשל, יופעל סוכן ssh נוסף בפתחה '%s'. במידה שמשהו " "משתבש עם התחברות ה־ssh הנוכחית עדיין ניתן להשתמש בהתחברות הנוספת.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "אם החיבור שלך נמצא מאחורי חומת־אש, יתכן שיהיה עליך לפתוח פתחה זו באופן זמני. " "כיוון שמדובר בסכנת אבטחה פעולה זו אינה מתבצעת אוטומטית. ניתן לפתוח את הפתחה " "עם פקודה כגון:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "לא ניתן לשדרג" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "לא ניתן לשדרג מ־'%s' ל־'%s' על ידי כלי זה." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "הגדרת Sandbox נכשלה" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "לא ניתן ליצור את סביבת ה־sandbox." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "מצב Sandbox" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "שדרוג זה מופעל במצב ארגז חול (בדיקה). כל השינויים ייכתבו אל '%s' ויאבדו עם " "הפעלת המחשב מחדש.\n" "\n" "*שום* שינוי שיתבצע בתיקיית המערכת מעתה ועד להפעלת המחשב מחדש בפעם הבאה יישאר " "קבוע." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "התקנת ה־python שלך פגומה. נא לתקן את הקישור הסימבולי '‎/usr/bin/python'" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "החבילה 'debsig-verify' מותקנת" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "לא ניתן להמשיך בשדרוג כל עוד חבילה זו מותקנת.\n" "נא להסיר אותה קודם לכן באמצעות synaptic או 'apt-get remove debsig-verify' " "ולהפעיל את השדרוג מחדש." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "לא ניתן לכתוב אל '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "לא ניתן לכתוב אל תיקיית המערכת '%s' שבמערכת שלך. השדרוג יופסק.\n" "נא לוודא שניתן לכתוב אל תיקיית המערכת." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "האם לכלול עדכונים חדשים מהאינטרנט?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "מערכת השדרוגים יכולה להשתמש באינטרנט כדי להוריד אוטומטית את העדכונים החדשים " "ביותר ולהתקין אותם במהלך השדרוג. במידה שיש לך חיבור לאינטרנט אפשרות זו " "מומלצת בחום.\n" "\n" "השדרוג יארוך זמן רב יותר, אך לאחר סיומו, המערכת שלך תהיה עדכנית יותר. ניתן " "שלא לבחור בפעולה זו, אך יהיה עליך להתקין את העדכונים העדכניים ביותר במהירות " "האפשרית מיד לאחר השדרוג.\n" "אם לא יתקבל אישור, לא יעשה כלל שימוש ברשת." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "בוטל בשדרוג ל־%s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "לא נמצא אתר מראה תקין" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "בעת סריקת נתוני המאגרים שלך לא נמצאה רשומת מראה של השדרוג. בעיה זו עלולה " "להיגרם עקב הרצה של שרת מראה פנימי או אם נתוני המראה אינם בתוקף.\n" "\n" "האם לשכתב את קובץ ה־'sources.list' בכל מקרה? אם 'כן' יבחר כאן יעודכנו כל " "הרשומות של '%s' ל־'%s'.\n" "\n" "אם יבחר 'לא' השדרוג יבוטל." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "לייצר את מקורות בררת המחדל?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "לאחר סריקת קובץ ה־'sources.list' לא נמצאה רשומה תקנית עבור '%s'.\n" "\n" "האם להוסיף את רשומות בררת המחדל עבור '%s'? אם 'לא' יבחר, השדרוג יבוטל." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "נתוני המאגרים לא תקינים" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "שדרוג נתוני המאגרים גרם לקובץ פגום ולכן החל תהליך של דיווח על תקלה." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "מקורות של ספקי צד שלישי בוטלו" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "כמה מקורות צד שלישי ברשימת ה־sources.list נוטרלו. ניתן לאפשר אותם שוב לאחר " "השדרוג באמצעות הכלי 'software-properties' או בעזרת מנהל החבילות שלך." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "חבילה במצב לא רציף" msgstr[1] "חבילות במצב לא רציף" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "החבילה '%s' הנה במצב בלתי רציף ויש להתקינה מחדש, אך לא ניתן למצוא עבורה " "ארכיון. יש להתקין חבילה זו מחדש ידנית או להסיר אותה מהמערכת." msgstr[1] "" "החבילות'%s' הנן במצב בלתי רציף ויש להתקינן מחדש, אך לא ניתן למצוא עבורן " "ארכיון. יש להתקין חבילות אלו מחדש ידנית או להסיר אותן מהמערכת." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "שגיאה במהלך העדכון" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "התעוררה בעיה בתהליך העדכון. בדרך כלל זוהי בעיית רשת, נא לבדוק את חיבור הרשת " "שלך ולנסות שנית." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "אין די שטח בכונן הקשיח" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "השדרוג בוטל. כדי לשדרג יש צורך בסך של %s מקום פנוי בכונן '%s'. נא לפנות " "לפחות %s של נפח אחסון בכונן '%s'. כדאי לרוקן את פח האשפה ולהסיר חבילות " "זמניות מהתקנות קודמות באמצעות 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "השינויים מחושבים" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "האם ברצונך להתחיל את השדרוג?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "השדרוג בוטל" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "השדרוג יבוטל כעת והמערכת תחזור למצבה המקורי. ניתן להמשיך את השדרוג במועד " "מאוחר יותר." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "לא ניתן להוריד את השדרוג" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "תהליך השדרוג בוטל. נא לבדוק את החיבור שלך לאינטרנט או את אמצעי ההתקנה ולנסות " "שוב. כל הקבצים שהתקבלו עד כה נשמרו." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "שגיאה במהלך הביצוע" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "המערכת מוחזרת למצבה המקורי" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "לא ניתן להתקין את השדרוגים" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "השדרוג בוטל. המערכת שלך עלולה להיות בלתי שמישה. כעת תתבצע פעולת שחזור (dpkg -" "-configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "נא לדווח על תקלה באמצעות הדפדפן " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "ולצרף את הקבצים שתחת /var/log/dist-upgrade/ לדיווח על התקלה.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "השדרוג בוטל. נא לבדוק את החיבור לאינטרנט ואת אמצעי ההתקנה ולנסות שוב. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "האם להסיר חבילות מיושנות?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_שמירה" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "ה_סרה" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "התרחשה תקלה במהלך הפינוי. נא לעיין בהודעה שלהלן למידע נוסף. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "החבילות הדרושות להתקנה אינן מותקנות" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "החבילה '%s' הדרושה להתקנה אינה מותקנת " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "מנהל החבילות נבדק" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "תהליך הכנת השדרוג נכשל" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "תהליך הכנת המערכת לשדרוג נכשל ולכן יופעל תהליך דיווח על תקלה." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "קבלת דרישות הקדם לשדרוג נכשלה" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "המערכת לא הצליחה לקבל את דרישות הקדם לשדרוג. תהליך השדרוג יבוטל כעת והמערכת " "תשוחזר למצב המקורי.\n" "\n" "בנוסף על כך, יופעל תהליך הדיווח על תקלות." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "נתוני המאגרים מתעדכנים" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "אירע כשל בהוספת כונן התקליטורים" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "הוספת התקליטור לא הצליחה, עמך הסליחה" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "פרטי החבילה אינם תקינים" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "מתקבל" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "בשדרוג" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "השדרוג הושלם" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "השדרוג הושלם אך צצו שגיאות במהלך השדרוג." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "מתבצע חיפוש אחר תכנה מיושנת" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "שדרוג המערכת הושלם." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "השדרוג החלקי הושלם." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "הערות השחרור הנוכחי לא נמצאו" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "יתכן שהשרת עמוס מדי. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "לא ניתן להוריד את הערות השחרור" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "נא לבדוק את החיבור לאינטרנט." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "אימות '%(file)s' כנגד '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "'%s' מחולץ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "לא ניתן להפעיל את כלי השדרוג" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "זו היא כפי הנראה תקלה בכלי השדרוג. נא לדווח על כך כתקלה באמצעות הפקודה " "'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "חותמת כלי השדרוג" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "כלי השדרוג" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "ההורדה נכשלה" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "הורדת השדרוג נכשלה. יתכן שישנה תקלה ברשת. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "האימות נכשל" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "אימות השדרוג נכשל. יתכן שישנה בעיה ברשת או בשרת. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "החילוץ נכשל" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "חילוץ השדרוג נכשל. עלולה להיות בעיה עם הרשת או השרת. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "האימות נכשל" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "אימות השדרוג נכשל. יתכן שישנה תקלה ברשת או בשרת. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "לא ניתן לבצע את השדרוג" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "תקלה זו נגרמת לרוב כאשר במערכת התיקייה ‎/tmp מוגדרת כ־noexec. נא לעגון שוב " "ללא noexec ולהריץ את השדרוג פעם נוספת." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "הודעת השגיאה היא '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "שדרוג" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "הערות השחרור" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "מתקבלים קובצי חבילות נוספים..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "קובץ %s מתוך %s ב־%s ב/ש׳" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "קובץ %s מתוך %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "נא להכניס את '%s' לכונן '%s'." #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "החלפת מדיה" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms נמצא בשימוש" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "המערכת שלך משתמשת במנהל הכרכים 'evms' תחת ‎/proc/mounts. התוכנה 'evms' אינה " "נתמכת עוד, נא לכבות אותה ולהפעיל שוב את השדרוג עם סיום הפעולה." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "הפעלת סביבת שולחן העבודה 'unity' אינה נתמכת במלואה על ידי חומרת הגרפיקה שלך. " "יתכן שסביבת המערכת תהיה אטית מאוד לאחר השדרוג. עצתנו היא להישאר עם הגרסה " "בעלת התמיכה לטווח ארוך (LTS) לעת עתה. למידע נוסף ניתן לקרוא בכתובת " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D, האם בכל זאת " "להמשיך בשדרוג?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "חומרת הגרפיקה שלך אינה נתמכת במלואה על ידי אובונטו 12.04 עם תמיכה לטווח ארוך " "(LTS)." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "התמיכה של אובונטו 12.04 LTS בכרטיס הגרפי שלך מבית אינטל מוגבלת ויתכן שיופיעו " "בעיות לאחר השדרוג. למידע נוסף יש לעיין בכתובת " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx האם ברצונך להמשיך " "בשדרוג?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "שדרוג עלול לפגוע באפקטים של שולחן העבודה ובביצועים של משחקים ותכניות עמוסות " "מבחינה גרפית." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "מחשב זה משתמש כעת במנהל ההתקן הגרפי 'nvidia' מבית NVIDIA. אין גרסה של מנהל " "התקן זה שתפעל עם החומרה שלך תחת אובונטו 10.04 LTS.\n" "\n" "האם ברצונך להמשיך?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "מחשב זה משתמש במנהל ההתקן הגרפי 'fglrx' מבית AMD. אין גרסה של מנהל התקן זה " "שעובדת עם החומרה שלך תחת אובונטו 10.04 LTS.\n" "\n" "האם ברצונך להמשיך?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "המעבד אינו מסוג i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "המערכת שלך משתמשת במעבד מסוג i586 או במעבד שאין לו את ההרחבה 'cmov'. כל " "החבילות נבנו עם שיפורים הדורשים לכל הפחות את האכיטקטורה i686. לא ניתן לשדרג " "את המערכת שלך להפצה חדשה יותר של אובונטו עם חומרה זו." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "אין מעבד מסוג ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "המערכת שלך משתמשת במעבד מסוג ARM שהוא ישן יותר מהארכיטקטורה ARMv6. כל " "החבילות ב־Karmic נבנו עם שיפורים מיוחדים הדורשים את ARMv6 כארכיטקטורה " "מינימלית. לא ניתן לשדרג את המערכת להפצת אובונטו חדשה עם חומרה זו." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "אין init זמין" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "נראה כאילו המערכת שלך היא סביבה וירטואלית ללא סוכן הפעלה, כמו לדוגמה Linux-" "VServer. אובונטו 10.04 LTS לא יכולה לעבוד עם סביבה שכזאת, ולכן נדרש שדרוג של " "תצורת המכונה הווירטואלית תחילה.\n" "\n" "האם ברצונך להמשיך?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "שידרוג Sandbox בעזרת aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "יש להשתמש בנתיב הנתון כדי לחפש אחר תקליטור עם חבילות הניתנות לשדרוג" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "שימוש במנשק גרפי. זמינים נכון לעכשיו: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*נפסקה* אפשרות זו לא תילקח בחשבון" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "ביצוע שדרוג חלקי בלבד (ללא שכתוב הקובץ sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "ביטול התמיכה ב־GNU screen" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "הגדרת תיקיית נתונים" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "ההורדה הושלמה" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "מתקבל קובץ %li מתוך %li ב־%s בתים לשנייה." #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "נותרו כ־%s." #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "מתקבל קובץ %li מתוך %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "השינויים חלים" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "בעיות תלות - נותר בלתי מוגדר" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "לא ניתן להתקין את \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "העדכון ימשיך אך החבילה '%s' עלולה להיות במצב בלתי פעיל. נא לשקול להגיש על כך " "דיווח על שגיאה." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "האם להחליף את קובץ התצורה שהותאם אישית\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "שינויים שבוצעו בקובץ תצורה זה יאבדו אם יוחלט להחליפו בגרסה חדשה יותר." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "הפקודה 'diff' לא נמצאה" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "אירעה שגיאה חמורה" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "נא לדווח על זאת כבאג (אם לא עשית זאת עד כה) תוך כדי הוספת הקבצים " "‎/var/log/dist-upgrade/main.log ו־‎/var/log/dist-upgrade/apt.log לדיווח. " "השדרוג בוטל.\n" "קובץ ה־sources.list המקורי שלך נשמר תחת השם " "‎/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "נלחץ Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "בקשה זו תבטל את הפעולה ותשאיר את המערכת שלך במצב לא יציב. האם ברצונך לעשות " "זאת?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "כדי למנוע אבדן מידע יש לסגור את כל המסמכים והיישומים הפתוחים." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "לא נתמכת עוד על ידי קנוניקל (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "הורדת גרסה (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "הסרה (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "לא נחוצות עוד (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "התקנה (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "שדרוג (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "הצגת שינויים >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< הסתרת השינויים" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "שגיאה" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "ס&גירה" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "הצגת מסוף >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< הסתרת מסוף" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "פרטים" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "פרטים" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "לא נתמך עוד %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "הסרת %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "הסרת (הותקנה אוטומטית) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "התקנת %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "שדרוג %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "נדרשת הפעלה מחדש" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "האם להפעיל מחדש את המערכת כדי להשלים את השדרוג?" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "ה_פעלה מחדש כעת" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "האם לבטל את השדרוג המתבצע?\n" "\n" "המערכת עלולה להיות בלתי שמישה אם השדרוג יבוטל. מומלץ ביותר להמשיך בשדרוג." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "האם לבטל את השדרוג?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "יום אחד" msgstr[1] "%li ימים" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "שעה אחת" msgstr[1] "%li שעות" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "דקה אחת" msgstr[1] "%li דקות" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "שנייה אחת" msgstr[1] "%li שניות" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "הורדה זו תארוך בערך %s באמצעות חיבור DSL של 1 מסל״ש ובערך %s עם מודם במהירות " "56 קסל״ש." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "ההורדה תארוך בערך %s עם מהירות החיבור שלך. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "השדרוג בהכנות" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "מתקבלים ערוצי תכנה חדשים" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "מתקבלות חבילות חדשות" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "השדרוגים מותקנים" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "מתבצע סדר וניקיון" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "אחת החבילות המותקנות אינה נתמכת עוד על ידי קנוניקל. עדיין ניתן לקבל תמיכה " "מהקהילה." msgstr[1] "" "%(amount)d מהחבילות המותקנות אינן נתמכות עוד על ידי קנוניקל. עדיין ניתן לקבל " "תמיכה מהקהילה." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "חבילה אחת תוסר." msgstr[1] "%d חבילות יוסרו." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "תותקן חבילה אחת חדשה." msgstr[1] "%d חבילות חדשות יותקנו." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "חבילה אחת תשודרג." msgstr[1] "%d חבילות תשודרגנה." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "יש להוריד %s בסך הכול. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "התקנת השדרוג עלולה לארוך מספר שעות. לאחר השלמת ההורדה לא ניתן לבטל את התהליך." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "הקבלה וההתקנה של השדרוג יכולים לארוך מספר שעות. לאחר שההורדה מסתיימת, לא " "ניתן לבטל את התהליך." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "הסרת החבילות עלולה להימשך מספר שעות. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "התכניות במחשב זה עדכניות." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "אין שדרוגים זמינים למערכת שלך. השדרוג יתבטל כעת." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "נדרשת הפעלה מחדש" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "השדרוג הסתיים ונדרשת הפעלה מחדש. האם ברצונך לעשות זאת כעת?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Aborting" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Demoted:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "To continue please press [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Continue [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Details [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "No longer supported: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Remove: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Install: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Upgrade: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continue [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "מתקבל קובץ %(current)li מתוך %(total)li במהירות %(speed)s/ש׳" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "מתקבל קובץ %(current)li מתוך %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "הצגת התקדמות כל קובץ" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_ביטול השדרוג" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "ה_משך בשדרוג" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "האם לבטל את השדרוג המתבצע כעת?\n" "\n" "המערכת עלולה להיות בלתי שמישה אם השדרוג יבוטל. מומלץ בחום להמשיך בשדרוג." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "ה_תחלת השדרוג" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "ה_חלפה" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "ההבדל בין הקבצים" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_דיווח על תקלה" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "ה_משך" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "האם להתחיל בשדרוג?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "יש להפעיל את המחשב מחדש כדי להשלים את השדרוג\n" "\n" "נא לשמור את עבודותיך בטרם המשך הפעולה." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "שדרוג ההפצה" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "ערוצי התכנה החדשים מוגדרים" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "המחשב מופעל מחדש" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "מסוף" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_שדרוג" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "ישנה גרסה חדשה של אובונטו זמינה להורדה. האם ברצונך לשדרג?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "לא לשדרג" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "הצגת השאלה מאוחר יותר" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "כן, לשדרג כעת" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "דחית את השדרוג לגרסה החדשה של אובונטו" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "ניתן לשדרג במועד מאוחר יותר על ידי פתיחת מעדכן התוכנות ולחיצה על „שדרוג“." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "ביצוע שדרוג מהדורה" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "כדי לשדרג את אובונטו, יהיה עליך להזדהות." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "ביצוע שדרוג חלקי" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "כדי לבצע שדרוג חלקי, יהיה עליך להזדהות." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "הצגת הגרסה ויציאה" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "תיקייה המכילה את קובצי הנתונים" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "הרצת מנשק המשתמש הנבחר" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "השדרוג החלקי פועל" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "מתבצעת הורדת כלי שדרוג ההפצה" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "יש לבדוק האם שדרוג לגרסת הפיתוח העדכנית ביותר אפשרי" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "מתבצע ניסיון לשדרג להפצה האחרונה בעזרת המעדכן מ־$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "הרצה במצב שדרוג מיוחד.\n" "נכון לעכשיו נתמכים המצבים 'desktop' עבור שדרוגים רציפים למערכות שולחניות " "ו־'server' עבור מערכות לשרתים." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "בדיקת השדרוג עם שכבת sandbox aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "יש לבדוק רק אם זמינה הפצה חדשה ולדווח על התוצאה באמצעות קוד יציאה." #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "מתבצעת בדיקה להימצאות גרסה חדשה של אובונטו" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "גרסת האובונטו שלך אינה נתמכת עוד." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "לפרטים על השדרוג, נא לבקר בכתובת:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "לא נמצאה גרסה חדשה" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "שדרוג ההפצה אינו זמין כעת" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "לא ניתן לבצע בשלב זה את שדרוג ההפצה, נא לנסות שוב במועד מאוחר יותר. השרת " "דיווח: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "הפצה חדשה '%s' זמינה." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "יש להריץ את הפקודה 'do-release-upgrade' כדי לשדרג אליה." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "שדרוג לאובונטו %(version)s זמין כעת" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "דחית את השדרוג לגרסה %s של אובונטו" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "הוספת פלט לניפוי שגיאות" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "נדרש אימות על מנת לבצע שדרוג חלקי" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "נדרש אימות כדי לבצע שדרוג מהדורה" ubuntu-release-upgrader-0.220.10/po/ko.po0000644000000000000000000020430512431225715014766 0ustar # Korean translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # darehanl , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2014-03-16 18:07+0000\n" "Last-Translator: Kim Boram \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ko\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s 서버" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "주 서버" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "사용자 정의 서버" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list 항목을 계산할 수 없습니다." #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "어떤 패키지 파일도 찾을 수 없습니다. 우분투 디스크가 아니거나 올바르지 않은 아키텍처인 것은 아닙니까?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CD 추가 실패" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD를 추가할 때 오류가 발생하여 업그레이드를 중단합니다. 올바른 우분투 CD를 사용했다면 이 버그를 보고해 주십시오.\n" "\n" "오류 메시지:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "오류가 있는 패키지 제거" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "'%s' 패키지는 불완전한 상태이며 다시 설치해야 하지만, 저장소에서 찾을 수 없습니다. 이 패키지를 제거한 후 계속하시겠습니까?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "서버가 과부화 상태인 것 같습니다" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "망가진 패키지" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "이 소프트웨어로 고칠 수 없는 망가진 패키지가 있습니다. 진행하기 전에 시냅틱이나 apt-get 명령으로 복구하십시오." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "업데이트를 계산하는 중 해결할 수 없는 문제가 생겼습니다.:\n" "%s\n" "\n" " 이것의 원인은 다음 중 하나일 수 있습니다:\n" " * 차기 버전의 우분투 업그레이드로 업그레이드하는 중이거나\n" " * 차기 버전의 우분투를 사용하고 있거나\n" " * 써드 파티 소프트웨어를 사용 중입니다.\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "이것은 아마도 일시적인 문제일 것입니다. 나중에 다시 시도해주십시오." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "이 중 어떤 것도 적용할 수 없는 경우에는 터미널에서 'ubuntu-bug ubuntu-release-upgrader-core' 명령을 " "사용해 버그를 보고해주십시오." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "업그레이드를 계산할 수 없습니다." #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "일부 패키지를 인증할 수 없습니다." #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "몇몇 패키지를 인증할 수 없습니다. 일시적인 네트워크 문제일 수 있으므로 나중에 대시 시도해주십시오. 인증하지 못한 패키지의 목록은 " "다음과 같습니다." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "패키지 '%s'은(는) 제거 차단 목록에 기록되어 있어 제거할 수 없습니다." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "필수 패키지 '%s'을(를) 제거할 항목으로 표시했습니다." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "차단 목록 상의 버전 '%s'을(를) 설치합니다" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s'을(를) 설치할 수 없음" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "필요한 패키지를 설치할 수 없습니다. 터미널에서 'ubuntu-bug ubuntu-release-upgrader-core' 명령을 사용해 " "버그를 보고해주십시오." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "메타 패키지를 추측할 수 없음" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "시스템에 ubuntu-desktop이나 kubuntu-desktop이나 xubuntu-desktop 또는 edubuntu-desktop " "패키지가 없으며, 현재 실행 중인 우분투의 버전을 알아낼 수 없습니다.\n" "우선 위의 패키지 중 하나를 시냅틱이나 apt-get 명령으로 설치하시기 바랍니다." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "캐시 읽는 중" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "배타적으로 잠글 수 없음" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "이것은 보통 또 다른 패키지 관리 프로그램(예를 들어 apt-get이나 aptitude)을 이미 실행하고 있는 것을 의미 합니다. 우선 " "해덩 프로그램을 종료하십시오." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "원격 접속을 통한 업그레이드를 지원하지 않음" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "원격 SSH접속을 통한 업그레이드를 지원하지 않는 SS H프론트엔드를 사용하여 업그레이드를 실행하고 있습니다. 'do-release-" "upgrade' 명령으로 텍스트모드 업그레이드를 사요해주십시오.\n" "\n" "업그레이드를 중지될 것입니다. SSH를 사용하지 않고 다시 시도하십시오." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH를 통해 계속 진행하시겠습니까?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "현재 세션은 SSH에서 돌아가고 있습니다. SSH를 이용한 세션에서 업그레이드를 하는 것은 추천하지 않습니다. 업그레이드에 실패할 경우 " "복구하기가 힘들어 집니다.\n" "\n" "진행하시면 '%s' 포트로 추가 SSH데몬을 시작할 것입니다.\n" "계속 진행하시겠습니까?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "추가 sshd 시작" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "문제가 발생했을 때 복구를 쉽게 할 수 있도록 sshd 데몬을 포트 '%s'에 추가로 실행합니다. 현재 실행 중인 ssh에 문제가 " "발생해도 추가로 실행한 데몬을 통해 접속할 수 있습니다.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "방화벽을 사용 중이시라면 임시로 이 포트를 열어 주셔야 합니다. 포트를 여는 것은 잠재적으로 위험하기 때문에 자동으로 실행되지 않습니다. " "아래와 같이 포트를 여실 수 있습니다 : '%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "업그레이드할 수 없음" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "이 도구로 '%s'에서 '%s'(으)로 업그레이드할 수 없습니다." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "샌드박스 설정 실패" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "샌드박스 환경을 만들 수 없습니다." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "샌드박스 모드" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "이 업그레이드는 샌드 박스(테스트) 모드에서 실행하고 있습니다. 모든 바뀐 내용은 '%s'에 기록하며 다시 시작하게 되면 유실됩니다.\n" "\n" "지금부터 다음 다시 시작할 때까지 어떤 바뀐 내용도 시스템 디렉터리에 기록하지 않습니다." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "파이썬 설치가 잘못되었습니다. '/usr/bin/python' 심볼릭 링크를 수정하십시오." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "'debsig-verify' 패키지를 설치했습니다." #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "해당 패키지를 설치한 상태로는 업그레이드를 계속할 수 없습니다.\n" "시냅틱이나 'apt-get remove debsig-verify' 명령으로 제거한 후 다시 업그레이드를 수행하십시오." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "'%s'에 기록할 수 없습니다" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "사용자 시스템의 시스템 디렉터리 '%s'에 기록할 수 없습니다. 업그레이드를 계속할 수 없습니다.\n" "시스템 디렉터리에 기록할 수 있는 권한이 있는지 확인하십시오." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "인터넷으로 최신 업데이트를 설치하시겠습니까?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "업그레이드 프로그램은 업그레이드 중 인터넷을 이용해 자동으로 최신 업데이트를 다운로드해 설치할 수 있습니다. 인터넷에 연결되어 있다면 " "가급적 설치하는 것이 좋습니다.\n" "\n" "업그레이드는 더 오래 걸리겠지만 완료 후에는 시스템이 완전히 최신 상태가 됩니다. 지금 설치를 하지 않기로 했다면 업그레이드를 마친 다음 " "즉시 최신 업데이트를 설치해야 합니다.\n" "'아니오'를 선택하면 네트워크를 이용하지 않습니다." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "%s(으)로 업그레이드 하지 않음" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "올바른 미러 서버를 찾지 못함" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "저장소 정보를 찾아봤지만 업그레이드를 위한 미러 항목을 찾을 수 없습니다. 내부 미러를 운영 중이거나 혹은 미러 정보가 최신이 아닐 수 " "있습니다.\n" "\n" "그래도 'sources.list' 파일을 다시 작성 하시겠습니까? 여기서 '예'를 선택하면 모든 '%s' 항목을 '%s'(으)로 " "업데이트합니다.\n" "'아니오'를 선택하면 업그레이드를 취소합니다." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "기본 소스 목록을 만드시겠습니까?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "'sources.list' 파일을 찾아봤지만 '%s'에 대한 항목을 찾을 수 없습니다.\n" "'%s'에 대한 기본 항목을 추가하시겠습니까? '아니오'를 선택하면 업그레이드를 취소합니다." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "저장소 정보가 올바르지 않습니다" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "저장소 정보를 업데이트한 결과 올바르지 않은 파일이 생성되었습니다. 버그 보고 작업을 시작합니다." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "서드 파티 소스는 사용할 수 없습니다" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "souces.list에서 서드 파티 목록의 일부를 이용할 수 없습니다. 업그레이드를 마친 후 '소프트웨어 소스' 도구나 패키지 관리자를 " "이용해 다시 사용 할 수 있습니다." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "패키지 상태가 불완전함" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "'%s' 패키지는 불완전한 상태이며 다시 설치해야합니다만, 저장소에서 찾을 수 없습니다. 이 패키지를 직접 다시 설치하거나 시스템에서 " "제거하십시오." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "업데이트 중 오류 발생" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "업데이트 중 문제가 발생했습니다. 보통 네트워크 문제인 경우가 많습니다.네트워크의 연결 상태를 확인하시고 다시 시도하십시오." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "디스크 여유 공간이 충분하지 않습니다." #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "업그레이드를 중단했습니다. 이 업그레이드는 %s의 용량이 드라이브 '%s'에 필요합니다.최소한 %s의 용량을 '%s'에 확보해주십시오. " "휴지통을 비워주시고 'sudo apt-get clean' 명령으로 이전에 설치하며 만들어진 임시 패키지를 제거하십시오." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "바뀐 내용을 계산하는 중" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "업그레이드 취소함" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "업그레이드를 취소합니다. 시스템은 업그레이드 이전 상태로 돌아가며 업그레이드는 이후에도 언제든지 다시 할 수 있습니다." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "업그레이드 파일을 다운로드 할 수 없음" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "업그레이드를 중단했습니다. 인터넷 연결이나 설치 매체를 확인한 후 다시 시도하십시오. 다운로드한 파일은 계속 보존합니다." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "커밋 작업 중 오류 발생" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "시스템을 이전의 상태로 복구하고 있습니다" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "업그레이드를 설치하지 못했습니다." #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "업그레이드를 중단했습니다. 시스템에 치명적인 오류가 발생했을 수 있습니다.복구(dpkg --configure -a) 명령을 실행하겠습니다." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "브라우저에서 http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-" "upgrader/+filebug and attach the files in /var/log/dist-upgrade/ 페이지를 방문해 " "버그를 보고해주십시오.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "업그레이드를 중단했습니다. 인터넷 연결이나 설치 매체를 확인한 후 다시 시도하십시오. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "사용하지 못하게 된 패키지를 제거하시겠습니까?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "유지(_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "제거(_R)" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "정리하는 도중에 문제가 발생하였습니다. 다음 메시지를 통해 더 많은 정보를 확인할 수 있습니다. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "필요한 의존 프로그램을 설치하지 않았습니다." #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "필요한 의존 프로그램 '%s'을(를) 설치하지 않습니다. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "패키지 관리자 확인 중" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "업그레이드 준비에 실패했습니다" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "시스템 업그레이드 준비를 실패했습니다. 버그 보고 작업을 시작합니다." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "업그레이드 사전 작업에 실패했습니다" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "시스템에서 업그레이드 사전 작업을 할 수 없습니다. 업그레이드를 취소한 후 이전 시스템 상태로 되돌립니다.\n" "\n" "추가적으로, 버그 보고 작업을 시작합니다." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "저장소 정보 업데이트 중" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "cdrom을 추가할 수 없음" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "죄송합니다. cdrom을 추사할 수 없습니다." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "올바르지 않은 패키지 정보" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "패키지 정보를 업데이트한 후 핵심 패키지'%s'을(를) 찾을 수 없습니다..소프트웨어에 공식 미러가 없거나 사용 중인 미러에 과부하로 " "인해 발생할 수 있습니다. /etc/apt/sources.list 파일을 통해 현재 목록에 설정된 소스프ㅌ웨어 소스를 확인할 수 " "있습니다.\n" "과도한 부하로 인해 발생한 경우에는 잠시 후 다시 업그레이드를 시작해주십시오." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "가져오는 중" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "업그레이드 중" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "업그레이드 완료" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "업그레이드를 완료했지만 업그레이드 과정 중 오류가 발생하였습니다." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "못 쓰게 된 소프트웨어를 검색하는 중" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "시스템 업그레이드를 완료했습니다." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "부분 업그레이드를 완료했습니다." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "릴리즈 정보를 찾을 수 없습니다." #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "서버에 접속자가 너무 많습니다. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "릴리즈 정보를 다운로드 할 수 없습니다." #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "인터넷 연결 상태를 확인하십시오." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "'%(signature)s'(으)로 '%(file)s' 파일 인증 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "'%s' 압축 해제 중" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "업그레이드 도구를 실행할 수 없습니다." #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "이 것은 업그레이드 도구의 버그일 가능성이 높습니다. 'ubuntu-bug ubuntu-release-upgrader-core' 명령을 " "이용해 버그를 보고해주십시오." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "업그레이드 도구 서명" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "업그레이드 도구" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "가져오기 실패" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "업그레이드를 가져올 수 없습니다. 네트워크에 문제가 있을 수 있습니다. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "인증 실패" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "업그레이드를 인증할 수 없습니다.네트워크나 서버에 문제가 있을 수 있습니다. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "압축 해체 실패" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "업그레이드의 압축을 해체할 수 없습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "검증 실패" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "업그레이드를 검증할 수 없습니다. 네트워크나 서버에 문제가 있을 수 있습니다. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "업그레이드를 할 수 없습니다." #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "이 것은 보통 /tmp 디렉터리를 noexec로 마운트한 시스템에서 발생합니다. noexec 없이 다시 마운트한 후 업그레이드를 " "시작하십시오." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "오류 메시지는 '%s'입니다." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "업그레이드" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "릴리즈 정보" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "추가 패키지 파일 다운로드 중..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "파일 %s / %s, 속도 %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "파일 %s / %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "'%s'(을)를 '%s' 드라이브에 넣어주십시오." #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "미디어 바꾸기" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms 사용 중" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "이 시스템은 /proc/mounts 안에 'evms' 볼륨 매니저를 사용하고 있습니다. 'evms'은 더 이상 지원되지 않으므로, 종료 " "후 업그레이드를 다시 실행하십시오." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "사용자의 그래픽 하드웨어가 우분투 13.04를 완벽하게 지원하지 않을 수 있습니다." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "그래픽 하드웨어가 '유니티' 데스크톱 환경을 완벽하게 지원하지 않습니다. 업그레이드 후 매우 느린 환경을 이용하게 될 수 있으니 LTS " "버전을 이용할 것을 추천합니다. 더 많은 정보는 " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D 페이지를 확인하십시오. " "업그레이드를 계속하시겠습니까?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "그래픽 카드가 우분투 12.04 장기 지원판을 지원하지 않습니다." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "인텔 그래픽 카드가 우분투 12.04 장기 지원판을 완전하게 지원하지 않아 업그레이드 후 문제가 발생할 수 있습니다. 더 자세한 내용은 " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx 페이지를 확인해주십시오. " "업그레이드를 계속 진행하시겠습니까?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "업그레이드로 인해 데스크탑 효과나 게임, 그래픽 관련 프로그램의 성능이 줄어들 수 있습니다." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "이 컴퓨터는 현재 NVIDIA사의 'nvidia' 그래픽 드라이버를 사용하고 있습니다. 이 드라이버는 우분투 10.04 LTS을 지원하는 " "버전이 없습니다.\n" "계속 진행하시겠습니까?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "이 컴퓨터는 현재 AMD사의 'fglrx' 그래픽 드라이버를 사용하고 있습니다. 이 드라이버는 우분투 10.04 LTS을 지원하는 버전이 " "없습니다.\n" "계속 진행하시겠습니까?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "i686 CPU 아님" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "현 시스템은 i586 호환 CPU가 아니거나, 'cmov' 기능이 없는 CPU를 사용하고 있습니다. 모든 패키지는 최소 i686 호환 " "CPU가 필요합니다. 현 시스템에서 새로운 우분투 버전으로 업그레이드 할 수 없습니다." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "ARMv6 CPU 아님" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "시스템이 ARMv6 보다 더 오래된 아키텍처의 ARM CPU를 사용하고 있습니다. 우분투 karmic의 모든 꾸러미는 ARMv6에 최적화 " "되어있기 때문에 최소 CPU로 ARMv6이 필요합니다. 현재 하드웨어로는 새로운 우분투 버전으로 시스템을 업그레이드 할 수 없습니다." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "init 사용 불가" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "현재 시스템은 init 데몬(예:Linux-VServer)가 없는 가상 환경인 것으로 감지되었습니다. 우분투 10.04 LTS는 이러한 " "환경에서 제대로 동작할 수 없으며 우선 가상 환경의 설정을 조정해야합니다.\n" "\n" "계속 진행하시겠습니까?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "aufs로 샌드박스 업그레이드" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "주어진 경로로 업그레이드할 수 있는 패키지가 있는 시디롬을 검색합니다." #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "프론트 엔드를 사용합니다. 현재 사용할 수 있는 것은 다음과 같습니다: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*삭제된 옵션* 이 항목은 무시합니다." #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "부분 업그레이드만 실행합니다.(sources.list 파일은 바꾸지 않음)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU 화면 지원 사용하지 않음" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "datadir 설정" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "가져오기 완료" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "%li번째 파일(전체 %li개)을 %sB/s의 속로로 가져오는 중" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "약 %s 남음" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "%li번째 파일(전체 %li개)을 가져오는 중" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "바뀐 내용을 적용하는 중" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "의존성 오류 - 설정하지 않은 채로 남겨둡니다." #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s'(을)를 설치할 수 없음" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "업그레이드는 계속 진행하지만 '%s' 패키지가 동작하지 않을 수도 있습니다. 이 버그를 보고해주십시오." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "사용자가 작접 설정한 설정 파일 '%s'을(를)\n" "바꾸시겠습니까?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "새로운 버전으로 바꾸기를 선택하면 이전 설정 파일의 바뀐 내용을 잃게 됩니다." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "'diff' 명령을 찾을 수 없습니다" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "치명적인 오류 발생" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "이 버그를 /var/log/dist-upgrade/main.log와 /var/log/dist-upgrade/apt.log를 첨부하여 " "보고해주십시오. 업그레이드를 중단했습니다.\n" "기존 sources.list 파일은 /etc/apt/sources.list.distUpgrade 파일로 저장했습니다." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "컨트롤-C 누름" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "이 작업을 취소하면 시스템을 사용할 수 없게 될 수도 있습니다. 정말 취소하시겠습니까?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "데이터 손실을 막으려면 열려있는 모든 프로그램과 문서를 닫으십시오." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "캐노니컬에서 더 이상 지원하지 않습니다 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "다운그레이드 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "지우기 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "더 이상 필요하지 않음 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "설치 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "업그레이드(%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "차이점 보이기 >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< 차이점 숨기기" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "오류" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "취소 (&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "닫기(&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "터미널 보이기 >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< 터미널 숨기기" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "정보" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "자세한 내용" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "지원하지 않음 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "제거 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "제거 (자동으로 설치함) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "설치 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "업그레이드 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "다시 시작해야 합니다." #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "업그레이드를 완료하기 위해 시스템을 다시 시작합니다." #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "지금 다시 시작(_R)" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "진행 중인 업그레이드를 취소하시겠습니까?\n" "\n" "업그레이드 중간에 취소하면 시스템을 사용할 수 없게 될 수 있습니다. 업그레이드를 계속 진행할 것을 강력하게 추천합니다." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "업그레이드를 취소하겠습니까?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li 일" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li 시간" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li 분" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li 초" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "이 다운로드는 1Mbit DSL 연결로는 약 %s, 56k 모뎀으로는 약 %s 정도 가 필요합니다." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "현재 연결 상태로는 다운로드 과정에 약 %s 정도가 필요합니다. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "업그레이드를 준비하는 중" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "새 소프트웨어 채널을 가져오는 중" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "새 패키지를 가져오는 중" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "업그레이드 설치하는 중" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "마무리 중" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "설치한 패키지 중 %(amount)d개는 더 이상 캐노니컬이 지원하지 않습니다.하지만 공동체는 계속 지원합니다." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "패키지 %d개를 제거할 것입니다." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "새 패키지 %d개를 설치할 것입니다." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "패키지 %d개를 업그레이드 할 것입니다." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "모두 %s개의 패키지를 다운로드해야 합니다.. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "업그레이드를 다운로드하고 설치하는 것은 긴 시간이 필요할 수도 있으며, 한번 다운로드가 끝나면 취소할 수 없습니다." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "업그레이드를 다운로드하고 설치하는 것은 수 시간이 필요할 수도 있으며, 한번 다운로드가 끝나면 취소할 수 없습니다." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "패키지 제거는 수 시간이 걸릴 수 있습니다. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "이 컴퓨터의 소프트웨어를 모두 업데이트했습니다." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "시스템에 업그레이드할 것이 없습니다. 업그레이드를 취소합니다." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "다시 시작해야합니다." #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "업그레이드가 끝났으며 다시 시작해야 합니다. 지금 하시겠습니까?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "버그를 /var/log/dist-upgrade/main.log 파일과 /var/log/dist-upgrade/apt.log파일을 보고서에 " "첨부하여 보고해주십시오. 업그레이드를 취소합니다.\n" "원본 소스 목록을 /etc/apt/sources.list.distUpgrade 파일에 저장했습니다." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "중지하는 중" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "강등됨:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "계속 하시려면 [엔터] 키를 눌러 주십시오" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "계속 [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "자세한 내용 [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "더 이상 지원하지 않음: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "지우기: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "설치: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "업그레이드: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "계속하겠습니까? [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "업그레이드를 완료하시려면 다시 시작해야합니다.\n" "'y'를 선택하시면 시스템이 다시 시작합니다." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "%(total)li개 중 %(current)li번째 파일을 %(speed)s/s의 속도로 받는 중" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "%(total)li개 중 %(current)li번째 파일을 다운로드 중" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "각 파일의 진행 상태 표시" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "업그레이드 취소(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "업그레이드 계속(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "실행 중인 업그레이드를 취소하시겠습니까?\n" "\n" "업그레이드를 취소하면 시스템을 사용할 수 없을 가능성이 있습니다.업그레이드를 계속 하는 것을 강력히 추천합니다." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "업그레이드 시작(_S)" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "바꾸기(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "파일 간의 차이점" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "버그 보고(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "계속(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "업그레이드를 시작하시겠습니까?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "시스템을 다시 시작 하면 업데이트를 완료합니다.\n" "\n" "계속하기 전에 작업을 저장해 주십시오." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "배포판 업그레이드" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "우분투를 13.04 버전으로 업그레이드" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "새 소프트웨어 채널을 설정하는 중" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "시스템 다시 시작" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "터미널" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "업그레이드(_U)" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "새 버전의 우분투를 사용할 수 있습니다. 업그레이드 하시겠습니까?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "업그레이드하지 않음" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "나중에 묻기" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "지금 업그레이드" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "새 우분투로 업그레이드 하는 것을 취소했습니다." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "이후 언제라도 소프트웨어 업데이트 도구를 연 후 \"업그레이드\"를 선택해 업그레이드할 수 있습니다." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "배포판 업그레이드 실행" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "우분투를 업그레이드하려면 인증을 해주십시오." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "부분 업그레이드 실행" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "부분 업그레이드를 수행하려면 인증을 해주십시오." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "버전을 표시하고 끝내기" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "데이터 파일이 저장된 디렉터리" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "지정한 프론트엔드를 실행" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "부분 업그레이드 실행" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "배포판 업그레이드 도구 다운로드 중" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "최신 개발 버전으로 업그레이드할 수 있는지 확인합니다" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "업그레이드 도구를 이용하여 $distro-proposed에서 최신 배포판으로 업그레이드를 시도합니다" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "특별 업그레이드 모드에서 실행합니다.\n" "현재는 데스크톱 시스템의 일반적인 업그레이드를 위한 'desktop' 모드와 서버 시스템을 위한 'server' 모드를 지원합니다." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "샌드박스 aufs 오버레이로 시험 업그레이드" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "새 배포판이 있을 경우에만 확인하기. 결과는 끝내기 코드를 통해 반환" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "새 우분투 배포판 확인" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "현재 사용 중인 우분투 배포판은 더 이상 지원하지 않습니다." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "업그레이드 정보를 확인하려면, 아래 주소를 방문하세요:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "새 배포판이 없습니다." #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "배포판을 업그레이드할 수 없습니다." #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "지금 배포판을 업그레이드할 수 없습니다. 나중에 다시 시도해주십시오.서버의 보고: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "새 배포판 '%s'을(를) 사용할 수 있습니다." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "업그레이드를 하시려면 'do-release-upgrade' 명령을 실행하세요." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "우분투 %(version)s(으)로 업그레이드할 수 있습니다." #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "우분투 %s(으)로 업그레이드하는 것을 취소했습니다." #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "디버그 출력 추가" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "부분 업그레이드를 실행하려면 인증이 필요합니다." #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "배포판을 업그레이드하려면 인증이 필요합니다." ubuntu-release-upgrader-0.220.10/po/ps.po0000644000000000000000000013020712431225715014776 0ustar # Pushto translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Terry \n" "Language-Team: Pushto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n!=1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ckb.po0000644000000000000000000013027312431225715015116 0ustar # Kurdish (Sorani) translation for update-manager # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2008. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: jwtear nariman \n" "Language-Team: Kurdish (Sorani) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:54+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "ناتوانێت جێگیری بکات '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/Makefile0000644000000000000000000000131712431225715015453 0ustar top_srcdir=`pwd`/.. DOMAIN=ubuntu-release-upgrader PO_FILES := $(wildcard *.po) CONTACT=sebastian.heinlein@web.de XGETTEXT_ARGS = --msgid-bugs-address=$(CONTACT) XGETTEXT_ARGS += --keyword=unicode_gettext:2 --keyword=unicode_ngettext:2,3 all: update-po # update the pot $(DOMAIN).pot: XGETTEXT_ARGS="$(XGETTEXT_ARGS)" intltool-update -p -g $(DOMAIN) # merge the new stuff into the po files merge-po: $(PO_FILES) XGETTEXT_ARGS="$(XGETTEXT_ARGS)" intltool-update -r -g $(DOMAIN); # create mo from the pos %.mo : %.po mkdir -p mo/$(subst .po,,$<)/LC_MESSAGES/ msgfmt $< -o mo/$(subst .po,,$<)/LC_MESSAGES/$(DOMAIN).mo # dummy target update-po: $(DOMAIN).pot merge-po $(patsubst %.po,%.mo,$(wildcard *.po)) ubuntu-release-upgrader-0.220.10/po/si.po0000644000000000000000000013606212431225715014774 0ustar # Sinhalese translation for update-manager # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2008. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Sinhalese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s සඳහා සර්වරය" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "ප්‍රධාන සර්වරය" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "ව්‍යවහාර සර්වරයන්" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list ඇතුලු කිරීම ගණනය කළනොහැක." #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "ඔබේ පද්ධතියට ගැලපෙන මෘදුකාංග පැකේජය සොයාගැනීමට නොහැකිවිය, සමහරවිට ඔබ ඇතුලත් " "කර ඇත්තේ උබුන්ටු වල සංගත තැටිය නොවන්නට ඇති එසේ නොමැති නම් මේ මෘදුකාංගය ඔබේ " "පරිගණක පද්ධතියට නොගැලපෙන එකක් විය හැක." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "සුසංහිත තැටිය එක් කිරීම අසාර්ථක වුණි" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "අයහපත් තත්වයේ තිබෙන පැකේජය ඉවත් කරන්න" msgstr[1] "අයහපත් තත්වයේ තිබෙන පැකේජයන් ඉවත් කරන්න" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "සමහරවිට සර්වරය අතිබැර වී ඇත" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "බිදුණු පැකේජ" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "උසස් කෙරුම ගණනය කල නොහැක" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' ස්ථාපනය කල නොහැක" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "ගබඩාව කියවමින්" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "උසස් කල නොහැක" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "වැලිපිල්ල සැකසීම අසාර්ථකයි" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "වැලිපිල්ල ක්‍රමය" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "'%s' වෙත ලිවිය නොහැක" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "කෝෂ්ඨාගාරයේ තොරතුරු වලංගු නොවේ" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "යාවත්කාලීනය අතරතුර දෝෂය" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "ප්‍රමාණවත් තරම් නිදහස් අවකාශයක් නොමැත" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "වෙනස්කම් ගණනය කරමින්" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "උසස් කිරීම ආරම්භ කිරීමට ඔබට අවශ්‍යද?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "උසස් කිරීම අහෝසි කරන ලදී" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "උසස් කිරීම් බාගැනීමට නොහැකි විය" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "උසස් කිරීම් ස්ථාපනය කිරීමට නොහැකි විය" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_තබාගන්න" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "ඉවත් කරන්න" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "කෝෂ්ඨාගාරයේ තොරතුරු යාවත්කාලීන කරමින්" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "වලංගු නොවන පැකේජ තොරතුරු" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "පමුණුවමින්" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "උසස් කරමින්" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "උසස් කිරීම සම්පූර්ණයි" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "පද්ධතියේ උසස් කිරීම සම්පූර්ණයි." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "'%s' උපුටමින්" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "උසස් කිරීම් මෙවලම" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "සත්‍යවත් කිරීම අසාර්ථකයි" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "උසස් කරන්න" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "නිකුතු සටහන්" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "අතිරේක පැකේජ ගොනු බාගනිමින්..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "මාධ්‍ය වෙනස" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "%s පමණ ඉතිරියි" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' ස්ථාපනය කල නොහැක" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "පහතලන්න (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/tg.po0000644000000000000000000013147612431225715014777 0ustar # Tajik translation for ubuntu-release-upgrader # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the ubuntu-release-upgrader package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tajik \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Такмилдиҳӣ тавассути пайвасти дурдаст дастгирӣ намешавад" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Омодасозии такмилдиҳӣ қатъ шуд" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Такмилдиҳӣ ба анҷом расид" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Такмилдиҳии система ба анҷом расид." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Бозёбии файли %li аз %li дар %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Такмилдиҳиро бекор мекунед?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Омодасозии такмилдиҳӣ" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Идома медиҳед [ҳа(y)Не(N)] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Гузориш додан дар бораи хатогӣ" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Барои такмил додани Ubuntu, шумо бояд ворид шавед." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Барои татбиқ кардани такмили ҷузъӣ, шумо бояд ворид шавед." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/eu.po0000644000000000000000000017523012431225715014772 0ustar # Basque translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: eu\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "'%s'(e)rako zerbitzaria" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Zerbitzari nagusia" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Zerbitzari pertsonalizatuak" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Ezin izan da sources.list sarrera kalkulatu" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Ezin izan da pakete-fitxategirik aurkitu, agian hau ez da Ubuntu disko bat " "edo okerreko arkitekturarentzako da?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Huts egin du CDa gehitzeak" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Errore bat gertatu da CDa gehitzean, eguneraketa bertan behera utzi da. " "Baliozko Ubuntu CD bat bada hau, eman ezazu errore honen berri.\n" "\n" "Errorearen mezua:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Egoera txarrean dagoen paketea kendu" msgstr[1] "Egoera txarrean dauden paketeak kendu" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "'%s' paketearen egoera ez da egokia eta berriz instalatu behar da, baina " "ezin da bere fitxategia aurkitu. Jarraitu ahal izateko pakete hau ezabatu " "nahi duzu?" msgstr[1] "" "'%s' paketeen egoera ez da egokia eta berriz instalatu behar dira, baina " "ezin dira euren fitxategia aurkitu. Jarraitu ahal izateko pakete hauek " "ezabatu nahi duzu?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Zerbitzaria gainkargatuta egon liteke" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Hautsitako paketeak" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Zure sistemak hautsitako paketeak ditu eta ezin izan dira konpondu aplikazio " "honekin. Lehenbailehen konpon itzazu synaptic edo apt-get erabiliz." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Errore konponezin bat gertatu da eguneraketa kalkulatzean:\n" "%s\n" "\n" " Arrazoi posible batzuk:\n" " * Ubunturen aurre-argitaratutako bertsio batera eguneratzen ari zinen\n" " * Ubunturen aurre-argitaratutako bertsio bat darabilzu orain\n" " * Zerbait gertatu da Ubuntuk hornitu ez dizun software-pakete ez ofizial " "baten erruz\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Arazo iragankor bat izango da hau ziurrekin, saia zaitez berriro " "beranduxeago." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Hauetako bat ere ez bada arrazoia, eman arazo honen berri terminal batean " "'ubuntu-bug ubuntu-release-upgrader-core' agindua erabiliz." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Ezin izan da eguneraketa kalkulatu" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Errorea pakete batzuk egiaztatzerakoan" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Pakete batzuk ezin izan dira egiaztatu. Sareko arazo iragankorra izan " "daiteke. Saiatu berriro beranduago. Begiratu azpian egiaztatu ezin izan " "diren paketeen zerrenda." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Kentzeko markatuta dago '%s' paketea, baina kentze-zerrenda beltzan dago." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Kentzeko markatuta dago funtsezko '%s' paketea." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Zerrenda beltzeko '%s' bertsioa instalatzen saiatzen" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Ezin da '%s' instalatu" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Ezin izan da meta-paketea zehaztu" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Zure sisteman ez dago ubuntu-desktop, kubuntu-desktop, xubuntu-desktop edo " "edubuntu-desktop paketerik eta ezin izan da detektatu zein Ubuntu bertsio " "erabiltzen ari zaren.\n" " Mesedez, jarraitu aurretik, aurreko paketeetakoren bat instalatu ezazu " "synaptic edo apt-get erabiltzen." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Cache-a irakurtzen" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Ezin izan da blokeo esklusiboa lortu" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Baliteke paketeak kudeatzeko beste aplikazio bat (apt-get edo aptitude " "gisakoa) exekutatzen aritzea. Mesedez, itxi ezazu aplikazio hori." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Ezin da urruneko konexio baten bidez bertsio-berritu" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Urruneko ssh konexio baten bidez bertsio-berritzen zabiltza, hau onartzen ez " "duen erabiltzaile-interfaze batekin. Saiatu testu-moduan bertsio-berritzen " "'do-release-upgrade' aginduarekin.\n" "\n" "Bertsio-berritzea bertan behera geldituko da. Saiatu ssh gabe." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH erabiliz jarraitu nahi al duzu?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Saio hau ssh-pean exekutatzen ari dela dirudi. Ez da gomendagarria bertsio-" "berritze bat ssh bidez burutzea, eragiketak huts eginez gero berreskuratzea " "zailagoa delako.\n" "\n" "Aurrera jarraitzen baduzu, aparteko ssh daemon bat abiaraziko da '%s' " "atakan.\n" "Jarraitu nahi duzu?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Aparteko sshd abiarazten" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Arazoren bat badago berreskurapena errazagoa izan dadin, aparteko sshd bat " "abiaraziko da '%s' atakan. Orain martxan dagoen ssh konexioarekin arazoren " "bat badago, aipatutako bigarren horretara konekta zaitezke.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Suebaki bat badarabilzu, ataka hau une batez ireki beharko duzu. Hau " "arriskutsua izan daitekeenez automatikoki burutzen da. Ataka irekitzeko " "adibidea:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Ezin da bertsio-berritu" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Ezin da '%s'(e)tik '%s'(e)ra bertsio-berritu tresna hau erabiliz." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandbox-en konfigurazioak huts egin du" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Ezin izan da sandbox ingurunea sortu." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox modua" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Bertsio-berritze hau modu seguruan (test) exekutatzen ari da. Aldaketa " "guztiak '%s'-n idatziko dira eta hurrengo aldiz berrabiaraztean galdu egungo " "dira.\n" "\n" "Momentu honetatik hurrengo berrabiaraztera egingo diren aldaketak *ez* dira " "behin-betikoak." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Zure python instalazioa oker dago. Mesedez, zuzendu ezazu '/usr/bin/python' " "esteka sinbolikoa." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Instalatuta dago 'debsig-verify' paketea" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Bertsio-berritzeak ezin du jarraitu pakete hori instalatuta dagoen " "bitartean.\n" "Synaptic edo 'apt-get remove debsig-verify' erabil ezazu pakete hori " "ezabatzeko, eta abiarazi berriro bertsio-berritzea." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Ezin izan da '%s'(e)n idatzi" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Internet bidez azken eguneraketak barne hartu?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Bertsio-berritze sistemak Internet erabil dezake azken eguneraketak " "deskargatu eta instalatzeko bertsio-berritzean zehar. Sare konexioa baduzu " "aukera hau guztiz gomendatzen dizugu.\n" "Bertsio-berritzeko denbora gehiago beharko da, baina bukatzean, zure sistema " "guztiz eguneratuta egongo da. Hau ez egitea aukeratu dezakezu, baina horrela " "bada bertsio-berritzea amaitu bezain laster instalatu beharko zenituzke " "azken eguneraketak.\n" "'Ez' erantzuten baduzu, sarea ez da ezertarako erabiliko." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "ezgaituta %s(e)ra bertsio-berritzean" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Ez da baliozko ispilurik aurkitu" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Zure errepositorio-informazioa arakatzean ez da bertsio-berritzerako " "ispilurik aurkitu. Baliteke hau barneko ispilu bat darabilzulako eta " "ispiluaren informazioa zaharkituta dagoelako izatea.\n" "\n" "Edonola ere, nahi al duzu 'sources.list' fitxategia berridaztea? 'Bai' " "aukeratzen baduzu '%s'(e)tik '%s'(e)rako sarrera guztiak eguneratuko dira.\n" "'Ez' aukeratzen baduzu bertsio-berritzea bertan behera utziko da." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Lehenetsitako jatorriak sortu?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Zure 'sources.list' fitxategia arakatu ondoren ez da '%s'(r)entzako baliozko " "sarrerarik aurkitu.\n" "\n" "Nahi al duzu '%s'(r)entzako jatorri lehenetsiak gehitzea? 'Ez' aukeratzen " "baduzu, bertsio-berritzea bertan behera utziko da." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Errepositorio-informazio baliogabea" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Hirugarrengoen jatorriak ezgaituta" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Zure 'sources.list' fitxategiko hirugarrengoen sarrera batzuk ezgaitu dira. " "Berriro gaitu ditzakezu bertsio-berritzearen ondoren, 'software-properties' " "tresna edo zure pakete-kudeatzailea erabiliz." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paketea egoera ezegonkorrean" msgstr[1] "Paketeak egoera ezegonkorrean" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "'%s' paketearen egoera ezegonkorra da eta berriz instalatu behar da, baina " "ezin da bere artxiboa aurkitu. Instalatu pakete hori eskuz edo ezabatu " "sistematik." msgstr[1] "" "'%s' paketeen egoera ezegonkorra da eta berriz instalatu behar dira, baina " "ezin dira haien artxiboak aurkitu. Instalatu pakete horiek eskuz edo ezabatu " "sistematik." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Errorea eguneraketan" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Arazo bat gertatu da eguneraketan zehar. Gehienetan sareko arazoren baten " "ondorio izaten da, egiaztatu ezazu zure sare-konexioa eta saiatu berriro." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Ez dago behar beste leku libre diskoan" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Eguneraketa bertan behera gelditu da. Eguneraketak %s libre behar ditu '%s' " "diskoan. Utzi libre gutxienez beste %s '%s' diskoan. Hustu zakarrontzia eta " "ezabatu aurreko instalazioetako fitxategiak 'sudo apt-get clean' erabiliz." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Aldaketak kalkulatzen" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Bertsio-berritzea abiarazi nahi al duzu?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Bertsio-berritzea ezeztatuta" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Ezin izan dira bertsio-berritzeak deskargatu" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Errorea egiaztapenean" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Sistemaren jatorrizko egoera berreskuratzen" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Ezin izan dira bertsio-berritzeak instalatu" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Eguneraketa bertan behera gelditu da. Zure ordenagaila erabili-ezin den " "egoeran geldituko zen agian. Sistema berreskuratzen saiatuko gara oraintxe " "bertan (dpkg --configure -a)" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Mesedez, eman arazo honen berri nabigatzailea erabiliz " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "helbidean, eta atxiki /var/log/dist-upgrade/ direktorioko fitxategiak " "txostenean.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Eguneraketa bertan behera gelditu da. Egiaztatu zure Internet konexioa edo " "instalazioa egiteko erabili duzun euskarria eta saiatu berriro. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Zaharkitutako paketeak ezabatu?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Mantendu" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Ezabatu" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Arazo bat izan da garbiketan. Informazio gehiago eskuratzeko, irakurri ezazu " "azpiko mezua. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Beharrezko menpekotasunen bat ez dago instalatua" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Beharrezko '%s' menpekotasuna ez dago instalatua. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Pakete-kudeatzailea egiaztatzen" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Huts egin du bertsio-berritzea prestatzeak" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Huts egin du bertsio-berritzerako aurrebaldintzak eskuratzeak" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Sistemak ezin izan ditu bertsio-berritzerako aurretiko beharrak eskuratu. " "Bertsio-berritzea bertan behera geldituko da orain, eta sistema jatorrizko " "egoerara itzuliko da.\n" "\n" "Gainera, arazoaren berri emateko prozesua abiaraziko da." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Errepositorio-informazioa eguneratzen" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Errorea cdrom-a gehitzean" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Barkatu, cdrom-a gehitzea ez da arrakastatsua izan" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Pakete-informazio baliogabea" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Paketeen informazioa eguneratu ondoren, '%s' oinarrizko paketea ezin izan da " "aurkitu. Baliteke zure software-jatorrien zerrendan ispilu ofizialik ez " "izatea, edo darabilzun ispiluak karga handiegia izatea une honetan. Ikusi " "/etc/apt/sources.list une honetan konfiguratutako software-jatorrien " "zerrenda ezagutzeko." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Eskuratzen" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Bertsio-berritzen" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Bertsio-berritzea burututa" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Bertsio-berritzea burutu da, baina prozesuan erroreak egon dira." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Software zaharkitua bilatzen" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Sistemaren bertsio-berritzea burutu da." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Bertsio-berritze partziala burutu da." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Ezin izan dira bertsio-oharrak aurkitu" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Zerbitzaria gainkargaturik egon liteke. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Ezin izan dira bertsio-oharrak deskargatu" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Egiaztatu ezazu zure Internet konexioa, mesedez." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "egiaztatu '%(file)s' '%(signature)s'(r)ekin " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "'%s' erauzten" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Ezin izan da bertsio-berritzeko tresna abiarazi" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Ziurrenik hau bertsio-berritze tresnaren arazo bat da. Eman arazoaren berri " "'ubuntu-bug ubuntu-release-upgrader-core' agindua erabiliz." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Bertsio-berritzeko tresnaren sinadura" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Bertsio-berritzeko tresna" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Errorea eskuratzean" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Ezin izan da bertsio-berritzea eskuratu. Sarearekin arazoren bat egon " "liteke. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Autentifikazioak huts egin du" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Ezin izan da bertsio-berritzea autentifikatu. Sarearekin edo " "zerbitzariarekin arazoren bat egon liteke. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Erauzteak huts egin du" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Ezin izan da bertsio-berritzea erauzi. Sare edo zerbitzariarekin arazoren " "bat egon liteke. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Egiaztapenak huts egin du" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Ezin izan da bertsio-berritzea egiaztatu. Sarearekin edo zerbitzariarekin " "arazoren bat egon liteke. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Ezin da bertsio-berritzea abiarazi" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Hau normalean /tmp noexec bezala muntatuta dagoen sistemetan gertatzen da. " "Muntatu berriro noexec gabe eta exekutatu bertsio-berritzea berriz." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Hau da errorearen mezua: '%s'" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Bertsio-berritu" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Bertsio-oharrak" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Pakete-fitxategi gehigarriak deskargatzen..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "%s fitxategitik %s.a %sB/s abiaduran" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "%s fitxategitik %s.a" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Mesedez, sartu '%s' '%s' unitatean" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Euskarri aldaketa" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms erabilpean" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Zure sistemak 'evms' bolumen-kudeatzailea darabil '/proc/mounts'-en. Jadanik " "ez dago 'evms' softwarearentzako sostengurik; mesedez, itzali ezazu eta " "eguneraketa berrabiarazi ezazu." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Zure grafikoen hardwareak ez du guztiz sostengatzen 'unity' mahaigain-" "ingurunea. Baliteke bertsio-berritzearen ondoren ingurune oso motela izatea. " "Oraingoz LTS bertsioa mantentzea gomendatzen dizugu. Informazio gehiagorako " "ikusi https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D. Hala " "ere, bertsio-berritzearekin aurrera egin nahi duzu?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Bertsio-berritzeak mahaigaineko efektuak murriztu dezake, edo jokoen eta " "grafikoen erabilera intentsibodun programen errendimendua gutxitu." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Ordenagailu honek une honetan NVIDIA \"nvidia\" kontrolatzaile grafikoa " "erabiltzen ari da. Ez da aurkitu kontrolatzaile honen bertsiorik zure bideo " "txartelarekin Ubuntu 10.04 LTS-en funtzionatzen duena.\n" "\n" "Jarraitu nahi duzu?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Ordenagailu honek une honetan AMD \"fglrx\" kontrolatzaile grafikoa " "erabiltzen ari da. Ez da aurkitu kontrolatzaile honen bertsiorik zure bideo " "txartelarekin Ubuntu 10.04 LTS-en funtzionatzen duena.\n" "\n" "Jarraitu nahi duzu?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Ez da i686 PUZa¡" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Zure sistemak i586 edo 'cmov' luzapena erabiltzen ez duen PUZ bat dauka. " "Pakete guztiak i686 behar duten optimizazioak eginez sortu dira. Ez da " "posible zure sistema Ubuntu banaketa berrira eguneratzea." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Ez dago ARMv6 PUZik" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Zure sistemak ARM PUZ bat darabil, ARMv6 arkitektura baino zaharragokoa. " "Karmic-erako pakete guztiak ARMv6 gutxieneko arkitektura gisa hartuz eraiki " "ziren. Ezin da sistema Ubunturen bertsio berri batera bertsio-berritu " "hardware honekin." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Ez dago init-ik" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Zure sistemak init daemon bat ez duen giro birtualizatu bat dirudi, ad. " "Linux-VServer. Ubuntu 10.04 LST ezin da funtzionatu giro honen barruan, zure " "makina birtualaren konfigurazioaren eguneraketa bat behar izan gabe " "lehenik.\n" "\n" "Ziur al zaude jarraitu nahi duzula?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandbox eguneratu aufs erabiliz" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Erabili emandako bide-izena pakete bertsio-berrigarriak dituen CDROMa " "bilatzeko" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Erabiltzaile-interfazea erabili. Orain erabilgarriak: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Bertsio-berritze partziala bakarrik (ez da sources.list berridatziko)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Desgaitu GNU pantailen sostengua" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Datu-karpeta ezarri" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Deskarga amaitu da" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "%li / %li fitxategia eskuratzen %sB/s abiaduran" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "%s inguru falta da" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "%li / %li fitxategia eskuratzen" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Aldaketak aplikatzen" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "menpekotasun arazoak - konfiguratu gabe utzi da" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Ezin izan da '%s' instalatu" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Bertsio-berritzearekin jarraituko da baina '%s' paketeak agian ez du ongi " "funtzionatuko. Kasu horretan kontsideratu akatsaren berri ematea mesedez." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Konfigurazio-fitxategi pertsonalizatu hau ordezkatu nahi al duzu?\n" "'%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Konfigurazio-fitxategi honi egindako aldaketa guztiak galduko dituzu bertsio " "berriago batekin ordezkatzen baduzu." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Ez da 'diff' agindua aurkitu" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Errore larria gertatu da" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Mesedez, gehitu ezazu hau bug bat bezala (jada egin ez baduzu) eta atxikitu " "/var/log/dist-upgrade/main.log eta /var/log/dist-upgrade/apt.log fitxategiak " "zure mezuan. Eguneraketa bertan behera gelditu da.\n" "Zure jatorrizko sources.list fitxategia /etc/apt/sources.list.distUpgrade-n " "gorde dugu." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ktrl+C sakaturik" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Honek eragiketa bertan behera utziko ditu eta sistema egoera ezegonkorrean " "utz dezake. Ziur zaude hori egitea nahi duzula?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Datuen galera saihesteko, itxi itzazu irekitako aplikazio eta dokumentu " "guztiak." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Canonicalek ez du sostengatzen (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Atzerantz-eguneratu (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Ezabatu (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Ez da gehiago behar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instalatu (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Eguneratu (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Ezberdintasunak erakutsi >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Ezberdintasunak ezkutatu" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Errorea" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Itxi" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Terminala erakutsi >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Terminala ezkutatu" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informazioa" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Xehetasunak" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Ez dago sostengatuta %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s ezabatu" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "%s ezabatu (automatikoki instalatu zen)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s instalatu" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s bertsio-berritu" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Berrabiaraztea beharrezkoa" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Berrabiarazi sistema bertsio-berritzea burutu dadin" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Berrabiarazi orain" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Bertsio-berritzea bertan behera utzi?\n" "\n" "Sistema erabili ezineko moduan gera daiteke bertsio-berritzea bertan behera " "uzten baduzu. Bertsio-berritzearekin jarraitzea biziki gomendatzen dizugu." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Bertsio-berritzea ezeztatu?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "Egun bat" msgstr[1] "%li egun" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "ordubete" msgstr[1] "%li ordu" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "minutu bat" msgstr[1] "%li minutu" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "segundo bat" msgstr[1] "%li segundo" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s eta %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s eta %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Deskarga honek '%s' beharko du 1Mbit-eko DSL konexio batekin eta %s 56k-eko " "modem batekin." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Deskarga honek %s inguru iraungo du zure konexioarekin. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Bertsio-berritzeko prestatzen" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Software-kanal berriak eskuratzen" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Pakete berriak eskuratzen" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Bertsio-berritzeak instalatzen" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Garbitzen" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Instalatutako pakete %(amount)d ez du jada Canonical-ek sostengatzen. " "Komunitateak, ordea, sostengatzen du." msgstr[1] "" "Instalatutako %(amount)d pakete ez ditu jada Canonical-ek sostengatzen. " "Komunitateak, ordea, sostengatzen ditu." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Pakete %d ezabatuko da." msgstr[1] "%d pakete ezabatuko dira." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Pakete berri %d instalatuko da." msgstr[1] "%d pakete berri instalatuko dira." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Pakete %d bertsio-berrituko da." msgstr[1] "%d pakete bertsio-berrituko dira." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "%s deskargatu beharko dituzu guztira. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Bertsio-berritzearen instalazioa hainbat orduz luza daiteke. Behin deskarga " "amaitzen denean, prozesua ezin da bertan behera utzi." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Bertsio-berritzearen deskarga eta instalazioa hainbat orduz luza daiteke. " "Behin deskarga amaitzen denean, prozesua ezin da bertan behera utzi." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Paketeen ezabaketa hainbat orduz luza daiteke. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Ordenagailu honetako softwarea eguneratuta dago." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Ez dago bertsio-berritzerik zure sistemarako. Bertsio-berritzea bertan " "behera utziko da." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Berrabiaraztea beharrezkoa" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Bertsio-berritzea burutu da eta ordenagailua berrabiarazteko beharra dago. " "Orain egin nahi al duzu?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Eman ezazu honen berri errore edo bug gisa eta mezuarekin batera gehitu " "/var/log/dist-upgrade/main.log eta /var/log/dist-upgrade/apt.log fitxategia. " "Eguneraketa bertan behera gelditu da.\n" "Zure jatorrizko sources.list fitxategia hemen gorde da: " "/etc/apt/sources.list.distUpgrade" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Bertan behera uzten" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Degradatuta:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Jarraitzeko sakatu [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Jarraitu [bE] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Xehetasunak [x]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "b" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "e" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "x" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Ez dago sostengatuta: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "%s ezabatu\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "%s instalatu\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Bertsio-berritu: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Jarraitu [Be] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Bertsio-berritzea amaitzeko, beharrezkoa da berrabiaraztea.\n" "'b' hautatzen baduzu, sistema berrabiaraziko da." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "%(current)li / %(total)li fitxategia deskargatzen - %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "%(current)li / %(total)li fitxategia deskargatzen" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Fitxategi bakoitzaren aurreratzea erakutsi" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "E_zeztatu bertsio-berritzea" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Berrekin bertsio-berritzea" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Bertsio-berritzea bertan behera utzi?\n" "\n" "Bertsio-berritzea bertan behera uzten baduzu, erabiltezin utz dezakezu " "sistema. Erabat gomendagarria da bertsio-berritzearekin jarraitzea." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Hasi bertsio-berritzea" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Ordezkatu" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Fitxategien arteko ezberdintasunak" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Errorearen berri eman" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Jarraitu" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Bertsio-berritzea abiarazi?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Berrabiarazi sistema bertsio-berritzea burutzeko\n" "\n" "Gorde zure lana jarraitu baino lehen." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Banaketaren bertsio-berritzea" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Software-kanal berriak ezartzen" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Ordenagailua berrabiarazten" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminala" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Bertsio-berritu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Ubunturen bertsio berri bat eskuragarri dago. Bertsio-berritu nahi " "duzu?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Ez bertsio-berritu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Galdetu beranduago" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Bai, bertsio-berritu orain" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Ubuntu berrira bertsio-berritzea baztertu duzu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Ubuntu bertsio-berritzeko, autentifikatu beharra duzu." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Bertsio-berritze partzial bat burutzeko, autentifikatu beharra duzu." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Bertsioa erakutsi, eta irten" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Datu-fitxategiak dituen direktorioa" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Zehaztutako erabiltzaile-interfazea exekutatu" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Bertsio-berritze partziala exekutatzen" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Bertsio-berritzeko tresna deskargatzen" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Azken garapen-bertsiora eguneratzea posible den egiaztatu" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Saiatu azken bertsiora bertsio-berritzen $distro-proposed(r)en bertsio-" "berritzailea erabiliz" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Bertsio-berritzeko modu berezian exekutatu.\n" "Momentuz 'desktop' (mahaigaineko sistema baten ohiko bertsio-" "berritzeentzako) eta 'server' (zerbitzarientzat) jasaten dira." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Bertsio berria probatu sandbox aufs gainjartze batekin" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Bakarrik bilatu bertsioaren distribuzio berri bat erabilgarria dagoenean eta " "bidali emaitza irteera-kodigoa erabiliz" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Ubunturen bertsio berri baten bila" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Darabilzun Ubunturen bertsioak ez du sostengurik dagoeneko." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Bertsio-berritzearen informazio gehiago:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Ez da bertsio berririk aurkitu" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Ezin da banaketa une honetan eguneratu" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Banaketa eguneraketa ezin da orain egin, saiatu beranduago. Zerbitzariak " "zera esan du: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "'%s' bertsio berria eskuragarri dago." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Exekutatu 'do-release-upgrade' bertsio-berritzeko." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s(r)en bertsio-berritzea eskuragarri" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Ubuntu %s bertsio berria ezetsi duzu." #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Erroreak arazteko irteera-mezuak gehitu." ubuntu-release-upgrader-0.220.10/po/fo.po0000644000000000000000000013411212431225715014757 0ustar # Faroese translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Faroese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: fo\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Ambætari fyri %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Høvuðs ambætari" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Ser ambætarar" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Kundi ei útrokna keldulistanna skráseting" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Ikki før fyri at finna nakrar pakkfílur, møguliga er hettar ikki ein Ubuntu " "fløga, ella skeivt byggilag?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Var ikki før fyri at leggja fløguna afturat" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Tak burtur pakkar í ringum standi" msgstr[1] "Tak burtur pakka r í ringum standi" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Ambætarin kann vera ovbyrðaður" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Brotnir pakkar" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Títt kervi hevur brotnir pakkar, ið ikki kundi bøtast við hesum ritbúnaði. " "Vinarliga bøt um teir fyrst, við at nýta Synaptic ell apt-get áðrenn tú " "heldur á." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Hettar er helst ein bráfeingis trupulleiki, vinarliga royn aftur seinni." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Kundi ikki rokna út uppstiganinna" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Villa við at staðfesta summir pakkar" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Tað var ikki gjørligt at staðfesta summir pakkar. Hettar kann vera ein " "farandi net trupulleiki. Tygum kunnu royna aftur seinni. Hygg niðanfyri " "eftir einum lista við óstaðfestum pakkum." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Pakkin '%s' er merktur til burturtøku, men er á burturtøku svartalista." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Avgerðandi pakkin '%s' er merktur til burturtøku." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Royni at leggja inn svartlistaða útgávu '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Ksnn ikki leggja inn '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Kann ikki gita meta-pakka" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Lesi kova" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Hettar merkir vanliga at ein onnur pakka-leiðara nýtsluskipan (so sum apt-" "get ella aptitude) longu koyrir. Vinarliga sløkk tí nýtsluskipaninna fyrst." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Uppstigan yvir fjar sambinding ikki undirstyðja" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Halda á undir SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Byrji eyka sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Kann ikki uppstiga" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Ein uppstigan frá '%s' til '%s' er ikki styðja við hesum tóli." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandkassa uppsetan miseydnaðist" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Tað lat sewg ikki gera at skapa eitt sandkassa umhvørvi." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandkassa standur" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pakki 'debsig-verify' er lagdur inn" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Tak við tær seinastu dagførslurnar úr Alnetinum?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Brek undir dagføring" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Ikki nokk av tøkum diskplássi" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Rokni út broytingarnar" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Vil tú byrja uppstiganinna?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Uppstigan avlýst" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Kundi ikki taka uppstigingarnar niður" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Endurstovni frum kervis stand" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Kundi ikki leggja inn uppstigingar" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Varðveita" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Tak burtur" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Kanni pakka leiðara" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Fyrireiking av uppstigan miseydanðist" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Uppstigi" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Uppstigan liðug" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Kervis uppstigan er liðug" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/uk.po0000644000000000000000000022630412431225715014777 0ustar # translation of uk(5).po to Ukrainian # Maxim Dziumanenko , 2005. # Vadim Abramchuck , 2006. # Ukrainian translation of update-manager. # Copyright (C) 2005, 2006 Free Software Foundation, Inc. msgid "" msgstr "" "Project-Id-Version: uk(5)\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:39+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: uk\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Сервер для %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Основний сервер" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Сервери користувача" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Неможливо підрахувати запис sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Не вдалося знайти жодного файлу пакунків; можливо, це не диск Ubuntu або " "диск для іншої архітектури?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Не вдалося додати компакт-диск" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Виникла помилка при додаванні компакт-диску, оновлення буде припинено. Будь-" "ласка, повідомте про цю помилку, якщо це правильний компакт-диск Ubuntu.\n" "Повідомлення про помилку:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Вилучити пакунок, що знаходиться в поганому стані" msgstr[1] "Вилучити пакунки, що знаходяться в поганому стані" msgstr[2] "Вилучити пакунки, що знаходяться в поганому стані" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Пакунок '%s' знаходиться у несумісному стані і повинен бути " "перевстановлений, але не знайдено жодного архіву для нього. Чи ви бажаєте " "видалити цей пакунок зараз, щоб продовжити?" msgstr[1] "" "Пакунки'%s' знаходяться у несумісному стані і повинні бути перевстановлені, " "але не знайдено жодного архіву для них. Чи ви бажаєте видалити ці пакунки " "зараз, щоб продовжити?" msgstr[2] "" "Пакунки '%s' знаходяться у несумісному стані і повинні бути перевстановлені, " "але не знайдено жодного архіву для них. Чи ви бажаєте видалити ці пакунки " "зараз, щоб продовжити?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Схоже, що сервер перенавантажений" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Пошкоджені пакунки" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Ваша система містить пошкоджені пакунки, котрі не можуть бути виправлені " "цією програмою. Будь-ласка, виправіть їх програмами synaptic або apt-get." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Виникла невиправна помилка при розрахунку оновлення:\n" "%s\n" "\n" " Причиною можуть бути:\n" " * Оновлення Ubuntu до версії pre-release\n" " * Використання поточної pre-release-версії Ubuntu\n" " * Неофіційні пакунки програм, що не підтримуються Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Перелік змін ще не готовий, спробуйте пізніше." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Не вдалося розрахувати оновлення" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Помилка аутенфікації деяких пакетів" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Не вдалося перевірити деякі пакети. Це може бути викликано проблемами в " "мережі. Можливо, Ви захочете спробувати пізніше. Список не перевірених " "пакетів надано нижче." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Пакунок '%s' помічено для видалення, але він в чорному списку видалення." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Важливий пакунок '%s' помічено для видалення." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Спроба встановити версію '%s' чорного списку" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Не можливо встановити '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Не можливо підібрати meta-пакунок" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Ваша система не містить пакунків ubuntu-desktop, kubuntu-deskto, xubuntu-" "desktop або edubuntu-desktop, через що не вдалося встановити, яку версію " "Ubuntu ви використовуєте.\n" " Будь ласка, спочатку встановіть один з цих пакунків, використовуючи " "synaptic або apt-get." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Зчитування кешу" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Не вдалося отримати ексклюзивне блокування" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Це зазвичай значить, що запущено інший менеджер пакунків (наприклад, apt-get " "або aptitude). Будь ласка, спочатку закрийте цю програму." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Віддалене оновлення системи більше не підтримується" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Ви намагаєтесь виконати оновлення через ssh-з'єднання з непідтримуваним " "клієнтом. Оновіться у текстовому режимі через \"do-release-upgrade\".\n" "\n" "Оновлення зупинене. Спробуйте без ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Продовжити роботу через SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Ця сесія, скоріш за все, працює через ssh. Наполегливо рекомендуємо не " "виконувати оновлення через ssh через те, що в разі невдачі буде важче " "відновитись.\n" "\n" "Якщо Ви продовжите, буде запущено додаткову службу ssh на порті '%s'.\n" "Чи бажаєте продовжити?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Запуск додаткового sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Щоб зробити відновлення легшим у разі поломки, на порті '%s' буде запущений " "додатковий sshd. Якщо щось піде не так із запуском ssh, Ви все ще зможете " "під'єднатись до другого.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Якщо брандмауер увімкнений, треба тимчасово відкрити цей порт. Це потенційно " "небезпечно, тому потребує втручання користувача. Ви можете відкрити порт " "наступним чином:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Оновлення неможливе" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Оновлення з '%s' до '%s' цією програмою не підтримується." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Помилка встановлення в пісочниці" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Не вдалося створити середовище для пісочниці" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Режим пісочниці" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Це оновлення запускається у режимі пісочниці (випробовуваному). Всі зміни " "записуються у '%s' і будуть втрачені при наступному перезапуску.\n" "\n" "*Ні* зміни записані до системної директорії з цього моменту до наступного " "перезапуску будуть постійні." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Ваше встановлення пакету python пошкоджене. Виправте посилання " "'/usr/bin/python'." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Пакунок 'debsig-verify' встановлено" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Оновлення не може бути продовжене, якщо цей пакунок встановлено.\n" "Будь ласка, спочатку вилучіть його за домогою synaptic або командою 'apt-get " "remove debsig-verify' та спробуйте запустити оновлення знову." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Неможливо виконати запис в '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Неможливо виконати запис в системний каталог '%s' у Вашій системі. Оновлення " "не може бути продовженим.\n" "Переконайтеся, що системний каталог доступний для запису." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Додати останні оновлення з Інтернету?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Система оновлення може використовувати Інтернет для автоматичного " "завантаження останніх оновлень та встановлювати їх під час оновлення " "системи. Якщо у вас є мережеве підключення — це наполегливо рекомендується.\n" "\n" "Оновлення буде більш тривалим, проте коли завершиться, Ваша система буде " "повністю оновлена. Ви можете відмовитись від цього, але ви маєте встановити " "останні оновлення одразу після завершення процесу оновлення.\n" "Якщо Ви тут відповісте 'ні', мережа не буде використовуватись взагалі." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "відключено під час оновлення до %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Не знайдено правильного дзеркала" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Під час сканування інформації у репозиторію не було знайдено запису про " "дзеркало для оновлення. Це може трапитися, якщо ви використовуєте внутрішнє " "дзеркало або інформація про дзеркала застаріла.\n" "\n" "Ви все ж таки бажаєте перезаписати 'sources.list'? Якщо ви оберете 'Так', то " "це оновить усі '%s' з '%s' записи.\n" "Якщо ви оберете 'Ні' оновлення не відбудеться." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Створити типові джерела?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Після сканування вашого 'sources.list' не було знайдено дійсного запису для " "'%s'.\n" "\n" "Додати типовий запис для '%s'? Якщо ви оберете 'Ні', оновлення буде " "скасовано." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Помилка в даних про сховище" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Оновлення інформації про репозиторій закінчилося невдачею (недійсний файл), " "тому запустився процес звітування про помилку." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Сторонні джерела відключені" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Деякі сторонні джерела у Вашому sources.list були відключені. Ви можете " "знову включити їх після оновлення за допомогою програми 'software-" "properties' чи менеджера пакунків." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Пакунок у незадовільному стані" msgstr[1] "Пакунки у незадовільному стані" msgstr[2] "Пакунків у незадовільному стані" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Пакунок '%s' знаходиться в несумісному стані і повинен бути " "перевстановлений, але не знайдено жодного архіву для нього. Будь ласка, " "перевстановіть пакунок вручну чи вилучіть його з системи." msgstr[1] "" "Пакунки '%s' знаходяться в несумісному стані, було б добре їх " "перевстановити, та не вдається знайти для них ніяких архівів. Будь ласка, " "перевстановіть пакунки вручну чи вилучіть їх із системи." msgstr[2] "" "Пакунки '%s' знаходяться в несумісному стані і повинні бути перевстановлені, " "але не знайдено жодного архіву для них. Будь ласка, перевстановіть пакунки " "вручну чи вилучіть їх з системи." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Помилка під час оновлення" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Під час оновлення сталася помилка. Це зазвичай викликано проблемами у " "мережі, будь ласка, перевірте Ваше мережеве з’єднання та спробуйте знову." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Недостатньо місця на диску" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Оновлення було перервано. Для оновлення необхідно %s вільного місця на диску " "'%s'. Будь ласка, звільніть додатково хоча б %s дискового простору на '%s'. " "Очистіть кошик та вилучіть тимчасові пакунки з попередніх установок, " "використовуючи 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Проводиться аналіз змін" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Бажаєте почати оновлення системи?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Оновлення скасовано" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Оновлення буде скасовано та систему буде відновлено до попереднього стану. " "Ви зможете продовжити оновлення пізніше." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Неможливо завантажити пакунки для оновлення системи" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Оновлення було перервано. Будь ласка, перевірте ваше інтернет-з'єднання чи " "носій, з якого здійснюється встановлення, та спробуйте знову. Всі " "завантажені файли будуть збережені." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Помилка при фіксації" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Відновлення первісного стану системи" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Неможливо провести оновлення системи" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Оновлення було перервано. Ваша система може бути в нестабільному стані. " "Зараз буде запущено процес відновлення (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Оновлення було перервано. Будь ласка, перевірте Ваше з'єднання з Інтернетом " "чи носій для встановлення та спробуйте знову. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Видалити застарілі пакунки?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Залишити" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "Видалити" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "При очищенні системи виникли проблеми. Прочитайте детальнішу інформацію " "нижче. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Необхідний пакет (залежність) не встановлений" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Необхідний пакет (залежність) '%s' не встановлений. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Перевірка програми управління пакунками" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Підготовка до оновлення не вдалася" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Підготовка системи до оновлення закінчилася невдало. Почато процес " "звітування про помилку." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Помилка отримання необхідних файлів для оновлення" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Системі не вдалося отримати попередні конфігурації для повного оновлення. " "Зараз процес оновлення буде перервано і буде відновлено початковий стан " "системи.\n" "\n" "Також почато процес звітування про помилку." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Оновлення інформації про сховище" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Помилка при підключенні CD-ROM" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "На жаль, не вдалося підключити CD-ROM" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Невірна інформація про пакунок" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Отримання" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Процес оновлення" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Оновлення завершено" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Оновлення було завершено, але в його процесі виникли деякі помилки." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Пошук застарілих програм" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Оновлення системи завершено." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Часткове оновлення завершене." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Не вдалося знайти примітки випуску." #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Сервер може бути перенавантажений. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Не вдалося завантажити примітки випуску." #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Будь ласка, перевірте ваше з'єднання з Інтернетом." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "автентифікувати '%(file)s' замість '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "видобування '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Неможливо провести апргрейд системи" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Підпис інструменту оновлення" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Інструмент оновлення" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Не вдалося отримати" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Не вдалося отримати оновлення. Це може бути викликано проблемою у мережі. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Помилка аутентифікації" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Автентифікація оновлення зазнала краху. Це може бути викликано проблемою з " "мережею або сервером. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Не вдалося розпакувати" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Не вдалося розпакувати оновлення. Можливо, виникла проблема в мережі або на " "сервері. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Перевірка не вдала" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Не вдалося перевірити наявність оновлень. Можливо, виникла проблема в мережі " "або на сервері. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Не вдається почати оновлення" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Це, зазвичай, виникає в системах з /tmp змонтованому з noexec. Перемонтуйте, " "будь-ласка, без noexec та виконайте оновлення знов." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Повідомлення про помилку: '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Оновлення" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Відомості про релізе" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Завантаження додаткових файлів пакунків..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Файл %s з %s при %sБ/с" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Файл %s з %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Вставте '%s' в привід '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Зміна носія" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "використовується evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Ваша система використовує менеджер томів 'evms' в /proc/mounts. Програма " "'evms' більше не підтримується, будь ласка, вимкніть її та запустіть " "оновлення знову." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ваш графічний пристрій підтримується Ubuntu 12.04 LTS не повністю." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Підтримку Вашого графічного адаптера Intel в Ubuntu 12.04 LTS обмежено, і Ви " "можете стикнутися з проблемами після оновлення. Для отримання детальної " "інформації відвідайте " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Ви дійсно бажаєте " "продовжити оновлення?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Оновлення може уповільнити ефекти робочого столу, продуктивність роботи в " "іграх та інших графічно складних програмах." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Цей комп'ютер зараз використовує графічний драйвер NVIDIA 'nvidia'. Нема " "доступних версій драйверів, які б працювали з вашим обладнанням на Ubuntu " "10.04 LTS.\n" "\n" "Чи хочете ви продовжувати?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Цей комп'ютер зараз використовує графічний драйвер AMD 'fglrx'. Нема " "доступних версій драйверів, які б працювали з вашим обладнанням на Ubuntu " "10.04 LTS.\n" "\n" "Чи хочете ви продовжувати?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Немає процесора i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "У вашому комп’ютері стоїть процесор i586 або інший, що не має розширення " "'cmov'. Усі ж пакети було зібрано з оптимізацією, що вимагає мінімум i686-" "архітектуру. Неможливо оновити систему до нової версії Ubuntu на цьому " "комп’ютері." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Немає ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ваша система використовує процесор ARM з архітектурою, старішою за ARMv6. " "Всі пакети у karmic були скомпільовані з оптимізаціями, які вимагають ARMv6 " "як мінімум. Оновлення вашої системи до нового випуску Ubuntu неможливе на " "даному обладнанні." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Служба init недоступна" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Схоже, що ваша система є віртуалізованим оточенням без служби init, " "наприклад Linux-VServer. Ubuntu 10.04 LTS не може працювати в такому типі " "оточення, ви повинні спочатку виправити конфігурацію своєї віртуальної " "машини.\n" "\n" "Ви впевнені, що хочете продовжити?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Оновлення Sandbox з використанням aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Вживати наступний шлях для пошуку компакт-диска з пакунками оновлення" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Використовувати інтерфейс. В наявності: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*ЗАСТАРІЛЕ* Цю опцію буде проігноровано" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Виконати лише часткове оновлення (без перезапису sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Вимкнути підтримку GNU screen" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Вказати каталог з даними" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Отримання завершено" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Отримання файлу %li з %li на швидкості %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Приблизно '%s' залишилось" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Отримання файлу %li з %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Застосування змін" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "проблеми з залежностями - залишається неналаштованим" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Не вдалося встановити '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Обновлення продовжиться, але пакет '%s' може бути в неробочому стані. Будь " "ласка, надішліть звіт про помилку." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Замінити змінений користувачем конфігураційний файл\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Ви втратите всі зроблені Вами у цьому конфігураційному файлі зміни якщо " "заміните його новою версією." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Команда 'diff' не знайдена" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Виникла невиправна помилка" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Будь ласка, повідомте про цю помилку (якщо ви ще це не зробили) та додайте " "фали /var/log/dist-upgrade/main.log та /var/log/dist-upgrade/apt.log до " "вашого звіту. Оновлення було перервано.\n" "Ваш оригінальний sources.list було збережено в " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Натиснено Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Операція буде скасована, що може залишити систему в несправному стані. Ви " "все ще хочете це зробити?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Для запобігання втрати інформації закрийте усі програми та документи." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Більше не підтримується Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Встановлення старої версії (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Видалити (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Більш не потрібен (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Встановлення (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Оновлення (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Показати відмінності >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Сховати відмінності" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Помилка" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Закрити" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Показати Термінал >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Сховати Термінал" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Інформація" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Деталі" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Більш не підтримується %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Видалити %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Видалити (був автоматично інстальований) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Встановити %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Оновити %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Необхідне перезавантаження" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Перезавантажте систему для завершення оновлення" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Перезапустити зараз" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Скасувати запущене оновлення?\n" "\n" "Система може потрапити у непридатний стан, якщо скасувати оновлення. Вам " "наполегливо рекомендується продовжити оновлення." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Скасувати оновлення?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li день" msgstr[1] "%li дні" msgstr[2] "%li днів" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li година" msgstr[1] "%li години" msgstr[2] "%li годин" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li хвилина" msgstr[1] "%li хвилини" msgstr[2] "%li хвилин" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li секунда" msgstr[1] "%li секунди" msgstr[2] "%li секунд" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Це завантаження триватиме близько %s з 1Mбіт DSL-з'єднанням та біля %s з 56k " "модемом." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Це завантаження триватиме приблизно %s. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Підготовка до оновлення" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Отримання нових каналів програм" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Отримання нових пакунків" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Встановлення оновлень" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Очищення" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d установлений пакет більш не підтримується Canonical. Ви можете " "отримати підтримку у спільноти." msgstr[1] "" "%(amount)d установлених пакетів більш не підтримуються Canonical. Ви можете " "отримати підтримку у спільноти." msgstr[2] "" "%(amount)d установлених пакетів більш не підтримуються Canonical. Ви можете " "отримати підтримку у спільноти." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" "Copy text \t\r\n" "%d пакет буде видалено." msgstr[1] "%d пакети буде видалено." msgstr[2] "%d пакетів буде видалено." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Буде встановлено %d новий пакет." msgstr[1] "Буде встановлено %d нових пекети." msgstr[2] "Буде встановлено %d нових пекетів." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Буде оновлено %d пакунок." msgstr[1] "Буде оновлено %d пакунки." msgstr[2] "Буде оновлено %d пакунків." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Вам треба завантажити всього %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Встановлення оновлень може зайняти декілька годин. Після завершення " "завантаження процес неможливо скасувати." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Отримання та встановлення оновлень може зайняти декілька годин. Після " "завершення завантаження процес неможливо скасувати." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Видалення пакунків може зайняти декілька годин. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Програмне забезпечення на цьому комп'ютері актуальне." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Немає оновлень для Вашої системи. Оновлення буде скасовано." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Необхідно перезавантажити систему" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Виконання оновлення завершено. Необхідно перезавантажити систему. " "Перезавантажити зара?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Будь ласка, повідомте про цю помилку та додайте файли /var/log/dist-" "upgrade/main.log та /var/log/dist-upgrade/apt.log до вашого звіту. Оновлення " "було перервано.\n" "Ваш оригінальний sources.list було збережено в " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Перервано" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Понижено версію:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Щоб продовжити натисніть [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Продовжити [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Подробиці [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Більше не підтримується: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Видалити: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Встановити %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Оновити %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Продовжити [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Потрібне перезавантаження для завершення оновлення.\n" "Оберіть 'y' для перезавантаження." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "Завантаження файлу %(current)li з %(total)li із швидкістю %(speed)s/с" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Завантаження файлу %(current)li з %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Показувати прогрес для окремих файлів" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Скасувати оновлення" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Продовжити оновлення" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Відмінити оновлення системи?\n" "\n" "Зауважте, що якщо Ви скасуєте оновлення, це може призвести до нестабільного " "стану системи. Дуже рекомендується продовжити оновлення." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Почати оновлення" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Замінити" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Різниця між файлами" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "Повідомити про помилку" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "Пр_одовжити" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Почати оновлення?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Перезавантажте Вашу систему для завершення оновлення\n" "\n" "Будь ласка, збережіть Вашу дані перед продовженням." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Оновлення дистрибутивів" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Встановлення нових каналів програм" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Перезавантаження системи" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Термінал" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Оновлення" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Доступна нова версія Ubuntu. Хочете оновити?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Не оновлювати" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Запитати пізніше" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Так, оновити зараз" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Ви відмовилось від оновлення Ubuntu до нової версії" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Для оновлення Ubuntu, потрібна автентифікація." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Для часткового оновлення, ви повинні пройти автентифікацію" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Показати версію та вийти" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Каталог, який вміщує файли даних." #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Запустити вказаний інтерфейс оболонки" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Проводиться часткове оновлення" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Завантаження засобу оновлення випуску" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Перевірити можливість оновлення до останнього випуску, що перебуває в стані " "розробки" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Спробуйте оновитись до останньої версії за допомогою $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Запустити в особливому режимі оновлення.\n" "Наразі підтримуються режим \"стільниця\" для регулярного оновлення " "персональних робочих станцій та \"сервер\" для серверних систем." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Протестувати оновлення в безпечному режимі" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Перевіряти доступність нової версії дистрибутива і повертати результат за " "допомогою кода виходу." #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Перевіряється наявність нового випуску Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Ваша версія Ubuntu вже не підтримується." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Для отримання інформації щодо оновлення, будь ласка, відвідайте:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Нової версії не знайдено" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Оновлення реліза зараз неможливо." #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Оновлення реліза не може бути виконано зараз, будь ласка, спробуйте пізніше. " "Сервер повідомив: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Доступний новий реліз '%s' ." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Виконайте команду 'do-release-upgrade' для оновлення." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Доступне оновлення Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Ви відмовились від оновлення до Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Додати результати відладки" ubuntu-release-upgrader-0.220.10/po/gv.po0000644000000000000000000013060312431225715014770 0ustar # Manx translation for update-manager # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Manx \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : (n == 2 ? 1 : 2);\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: gv\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Serveryn son %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Server cadjin" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "serveryn lesh reihghyn" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Cha noddym co`earroodaghey enmys rolley.bunneyn" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Cha noddym feddyn coadanyn bundeilyn er chor erbee, foddee cha nel shoh ny " "disk Ubuntu ny fodee cha nel yn troggal kiart echey?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Cha doddym cur er CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/xh.po0000644000000000000000000013031212431225715014770 0ustar # Xhosa translation of update-notifier # Copyright (C) 2005 Canonical Ltd. # This file is distributed under the same license as the update-notifier package. # Translation by Canonical Ltd with thanks to # Translation World CC in South Africa, 2005. # msgid "" msgstr "" "Project-Id-Version: update-notifier\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Terry \n" "Language-Team: Xhosa \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: xh\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/km.po0000644000000000000000000030606012431225715014765 0ustar # translation of po_update-manager-km.po to Khmer # Khmer translation for update-manager # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2010. # Khoem Sokhem , 2012. msgid "" msgstr "" "Project-Id-Version: po_update-manager-km\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" "X-Language: km-KH\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "ម៉ាស៊ីន​មេ​សម្រាប់ %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "ម៉ាស៊ីន​មេ​ចម្បង" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "ម៉ាស៊ីន​មេ​ផ្ទាល់​ខ្លួន" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "មិន​អាច​គណនា​ធាតុ sources.list បាន​ឡើយ" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "មិន​អាច​រក​ឃើញទីតាំង​ឯកសារ​កញ្ចប់​ណាមួយ​ឡើយ " "ប្រហែល​វា​មិនមែន​ជា​ថាស​អ៊ូប៊ុនទូ ឬ​ស្ថាបត្យកម្ម​ដែល​ត្រឹមត្រូវ​ទេ ?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បន្ថែម​ស៊ីឌី" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "មាន​កំហុស​ក្នុង​ការ​បន្ថែម​ស៊ីឌី ការ​ធ្វើឲ្យ​ប្រសើរ​នឹង​ត្រូវ​​បោះបង់ ។ " "សូម​រាយការណ៍​វា​ជា​កំហុស ប្រសិនបើ​វា​ជា​ស៊ីឌី​អ៊ូប៊ុនទូ​ត្រឹមត្រូវ ។\n" "\n" "សារ​កំហុស​គឺ ៖\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "យក​កញ្ចប់​ដែល​ស្ថិត​ក្នុង​ស្ថានភាព​មិនត្រឹមត្រូវ​ចេញ" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "កញ្ចប់ '%s' ស្ថិត​នៅ​ក្នុង​ស្ថានភាព​មិន​ឆបគ្នា និង​ទាមទារឲ្យ​ដំឡើង​ឡើងវិញ " "ប៉ុន្តែ​រក​មិន​ឃើញ​ប័ណ្ណសារ​សម្រាប់​វា​ទេ ។ " "តើ​អ្នក​​ចង់​យក​កញ្ចប់​នេះ​ចេញ​ឥឡូវ ដើម្បីបន្ត​ឬ ?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "ម៉ាស៊ីន​បម្រើ​អាច​នឹង​ផ្ទុក​លើស" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "កញ្ចប់​​ខូច" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "ប្រព័ន្ធ​របស់​អ្នក​មាន​កញ្ចប់​ខូច​ " "ដែល​មិន​អាច​ជួសជុល​ដោយ​ប្រើ​កម្មវិធី​នេះ​បានទេ ។ សូម​ជួសជុល​ពួកវា​សិន " "ដោយ​ប្រើ synaptic ឬ apt-get មុន​នឹង​បន្ត ។" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "បញ្ហា​ដែល​មិន​អាច​ដោះស្រាយ​បាន​កើតឡើង ខណៈ​ពេល​កំពុង​គណនា​ការ​ធ្វើឲ្យ​ប្រសើរ " "៖\n" "%s\n" "\n" " វា​អាច​បណ្ដាល​មកពី ៖\n" " * ការ​ធ្វើឲ្យ​ប្រសើរ​ទៅ​កាន់​កំណែ​ចេញ​ផ្សាយ​មុន​របស់​អ៊ូប៊ុនទូ\n" " * ការ​ដំណើរការ​កំណែ​ចេញផ្សាយ​មុន​របស់​អ៊ូប៊ុនទូ\n" " * កញ្ចប់​កម្មវិធី​មិន​ផ្លូវការ​មិន​ត្រូវ​បាន​ផ្ដល់​ដោយ​អ៊ូប៊ុនទូ\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "វា​អាច​នឹង​ជា​បញ្ហា​បណ្ដោះអាសន្ន​ប៉ុណ្ណោះ សូម​ព្យាយាម​ម្ដងទៀត​នៅ​ពេលក្រោយ ។" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "ប្រសិនបើ​គ្មាន​ការ​អនុវត្ត​នេះ​ទេ " "បន្ទាប់​សូម​រាយការណ៍​កំហុស​ដោយ​ប្រើ​ពាក្យ​បញ្ជាក់ 'ubuntu-bug ubuntu-release-" "upgrader-core' នៅ​ក្នុង​ស្ថានីយ។" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "មិន​អាច​គណនា​ការ​ធ្វើឲ្យ​ប្រសើរ​បាន​ឡើយ" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "កំហុស​​ការ​ផ្ទៀងផ្ទាត់​កញ្ចប់​មួយ​ចំនួន" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "មិន​អាច​ផ្ទៀងផ្ទាត់​ភាព​ត្រឹមត្រូវ​របស់​កញ្ចប់​មួយ​ចំនួន​បាន​ទេ ។ " "វា​អាច​នឹង​ជា​បញ្ហា​បណ្ដាញ​​បណ្ដោះ​អាសន្ន​តែប៉ុណ្ណោះ ។ " "អ្នក​ប្រហែលជា​ចង់​ព្យាយាម​ម្ដងទៀត​នៅពេលក្រោយ ។ " "សូម​មើល​ខាងក្រោម​នេះ​សម្រាប់​បញ្ជី​បញ្ចប់​ដែល​ពុំ​ទាន់​បាន​ផ្ទៀងផ្ទាត់​ភាព​ត្" "រឹមត្រូវ ។" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "កញ្ចប់ '%s' ត្រូវ​បាន​សម្គាល់​សម្រាប់​ការ​យកចេញ " "ប៉ុន្តែ​វា​ស្ថិត​នៅ​ក្នុង​បញ្ជី​ខ្មៅ ។" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "កញ្ចប់​ដែល​ចាំបាច់ '%s' ត្រូវ​បាន​សម្គាល់​សម្រាប់​ការ​យកចេញ ។" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "សាកល្បងដំឡើង​កំណែ​ក្នុង​បញ្ជី​ខ្មៅ '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "មិន​អាច​ដំឡើង '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "វា​មិន​អាច​ដំឡើង​កញ្ចប់​ដែល​ទាមទារ​បាន​ទេ។ សូម​រាយការណ៍​កំហុស​ដោយ​ប្រើ​ " "'ubuntu-bug ubuntu-release-upgrader-core' នៅ​ក្នុង​ស្ថានីយ។" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "មិន​អាច​ទាញ​កញ្ចប់​មេតា​បាន​ទេ" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "ប្រព័ន្ធ​របស់​អ្នក​មិន​មាន​កញ្ចប់​ ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop ឬ​កញ្ចប់ edubuntu-desktop ទេ " "ហើយ​វា​ក៏​មិន​អាច​រក​ឃើញ​កំណែ​អ៊ូប៊ុនទូ​ណាមួយ​ដែល​អ្នក​កំពុងតែ​ដំណើរការ​ផង​ដែ" "រ ។\n" " សូម​ដំឡើង​កញ្ចប់​ណាមួយ​នៅ​ខាងលើ​នេះ​សិន ដោយ​ប្រើ synaptic ឬ apt-get " "មុន​នឹង​បន្ត ។" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "អាន​ឃ្លាំង" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "មិន​អាច​ចាក់សោ​កញ្ចប់​បាន​ឡើយ" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "ជាទូទៅ មាន​ន័យ​ថា​កម្មវិធី​គ្រប់គ្រង​កញ្ចប់​ផ្សេងទៀត (ដូចជា apt-get ឬ " "aptitude) កំពុងតែ​បាន​ដំណើរការ​រួចហើយ ។ សូម​បិទ​កម្មវិធី​នោះ​ជាមុន​សិន ។" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" "ការ​ធ្វើឲ្យ​ប្រសើរ​តាម​រយៈ​ការ​តភ្ជាប់​ពី​ចម្ងាយ​មិន​ត្រូវ​បាន​គាំទ្រ" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "អ្នក​កំពុងតែ​ដំណើរការ​ការ​ធ្វើឲ្យ​ប្រសើរ​តាម​រយៈ​ការ​តភ្ជាប់ ssh " "ពី​ចម្ងាយ​ជាមួយ​ផ្នែក​​ខាងមុខ​ដែល​មិន​គាំទ្រ​វា ។ " "សូម​ព្យាយាម​ប្រើ​ការ​ធ្វើឲ្យ​ប្រសើរ​របៀប​អត្ថបទ​ដោយ​ប្រើ​ពាក្យ​បញ្ជា 'do-" "release-upgrade' ។\n" "\n" "ការ​ធ្វើឲ្យ​ប្រសើរ​នឹង​ត្រូវ​បោះបង់​ឥឡូវ​នេះ ។ សូម​ព្យាយាម​ដោយ​មិន​ប្រើ ssh ។" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "បន្ត​ការ​ដំណើរការ​នៅ​ក្រោម SSH ?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "សម័យ​នេះ​ទំនងជា​កំពុង​ដំណើរការ​ក្រោម ssh ។ " "អ្នក​មិន​ត្រូវ​បាន​ផ្ដល់​អនុសាសន៍​ឲ្យ​អនុវត្ត​ការ​ធ្វើឲ្យ​ប្រសើរ​តាម​រយៈ​ " "ssh ទេ ពីព្រោះ​បើសិនជា​មាន​កំហុស វា​អាច​នឹង​កាន់តែ​ពិបាក​ក្នុង​ការ​សង្គ្រោះ " "។\n" "\n" "ប្រសិនបើ​អ្នក​បន្ត ដេមិន ssh បន្ថែម​នឹង​ត្រូវ​បាន​ចាប់ផ្ដើម​នៅ​ត្រង់​ច្រក " "'%s' ។\n" "តើ​អ្នក​ចង់​បន្ត​ដែរ​ឬ​ទេ ?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "ចាប់ផ្ដើម sshd បន្ថែម" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "ដើម្បី​ធ្វើឲ្យ​ការ​សង្គ្រោះ​កាន់តែ​មាន​ភាព​ងាយស្រួល​ក្នុង​ករណី​ដែល​មាន​កំហុស " " sshd បន្ថែម​នឹង​ត្រូវ​បាន​ចាប់ផ្ដើម​នៅ​លើ​ច្រក '%s' ។ " "ប្រសិនបើ​មាន​អ្វី​មួយ​មិន​ត្រឹមត្រូវ​ជាមួយ​នឹង​ការ​ដំណើរការ ssh " "អ្នក​នៅតែ​អាច​តភ្ជាប់​ទៅកាន់ sshd បន្ថែម​បាន​ដដែល ។\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "ប្រសិនបើ​អ្នក​ដំណើរការ​ជញ្ជាំង​ភ្លើង " "អ្នក​ចាំបាច់​ត្រូវតែ​បើក​ច្រក​នេះ​ជា​បណ្ដោះអាសន្ន ។ " "ដោយ​សារ​តែ​ការ​ធ្វើ​ដូច្នេះ​មាន​គ្រោះថ្នាក់​ខ្លាំង " "វា​មិន​ត្រូវ​បាន​ធ្វើ​ដោយស្វ័យប្រវត្តិ​ទេ ។ អ្នក​អាច​បើក​ច្រក​ជាមួយ ឧ. ៖\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "មិន​អាច​ធ្វើ​បច្ចុប្បន្នភាព​បាន​​ឡើយ" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "ការ​ធ្វើឲ្យ​ប្រសើរ​ពី '%s' ទៅជា '%s' " "មិន​ត្រូវ​បាន​គាំទ្រ​ជាមួយ​ឧបករណ៍​នេះ​ឡើយ ។" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​រៀបចំ Sandbox" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "មិន​អាច​បង្កើត​បរិស្ថាន sandbox បាន​ឡើយ ។" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "របៀប Sandbox" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "ការ​ធ្វើឲ្យ​ប្រសើរ​កំពុងតែ​ដំណើរការ​នៅ​ក្នុង​របៀប (សាកល្បង) sandbox ។ " "រាល់​ការ​ផ្លាស់ប្ដូរ​ទាំងអស់​នឹង​ត្រូវ​បាន​សរសេរ​ទៅកាន់ '%s' " "ហើយ​នឹង​ត្រូវ​បាត់បង់​នៅ​ពេល​ចាប់ផ្ដើម​ឡើង​វិញ​ពេលក្រោយ ។\n" "\n" "*គ្មាន* ការ​ផ្លាស់ប្ដូរ​ត្រូវ​បាន​សរសេរ​ទៅកាន់​ថត​ប្រព័ន្ធ​ចាប់ពី​ពេលនេះ​ " "រហូត​ទាល់តែ​​ការ​ចាប់ផ្ដើម​ឡើងវិញ​ពេលក្រោយ​មាន​លក្ខណៈ​អចិន្ត្រៃយ៍ ។" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "ការ​ដំឡើង python របស់​អ្នក​បាន​ខូច ។ សូម​ជួសជុល​តំណ​និមិត្តសញ្ញា " "'/usr/bin/python' ។" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "កញ្ចប់ 'debsig-verify' ត្រូវ​បាន​ដំឡើង" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "ការ​ធ្វើឲ្យ​ប្រសើរ​មិន​អាច​បន្ត​ជាមួយ​កញ្ចប់​ដែល​បាន​ដំឡើង​នោះ​ទេ ។\n" "សូម​យក​វា​ចេញ​ដោយ​ប្រើ synaptic ឬ 'apt-get remove debsig-verify' ជាមុន​សិន " "រួច​ហើយ​ដំណើរការ​ការ​ធ្វើឲ្យ​ប្រសើរ​ម្ដងទៀត ។" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "មិន​អាច​សរសេរ​ទៅ​កាន់ '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "មិន​អាច​សរសេរ​ទៅកាន់​ថត​ប្រព័ន្ធ '%s' នៅ​លើ​ប្រព័ន្ធ​របស់​អ្នក​បាន​ទេ ។ " "ការ​ធ្វើឲ្យ​ប្រសើរ​មិន​អាច​បន្ត​បាន​ទេ ។\n" "សូម​ប្រាកដ​ថា​ថត​ប្រព័ន្ធ​អាច​សរសេរ​បាន ។" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "រួម​បញ្ចូល​បច្ចុប្បន្នភាព​ចុងក្រោយ​ពី​អ៊ីនធឺណិត​​ឬ ?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "ប្រព័ន្ធ​ធ្វើឲ្យ​ប្រសើរ​អាច​ប្រើ​អ៊ីនធឺណិត " "ដើម្បី​ទាញ​យក​បច្ចុប្បន្នភាព​ចុងក្រោយ " "និង​ដំឡើង​ពួកវា​ដោយ​ស្វ័យប្រវត្តិ​ក្នុង​អំឡុង​ពេល​ធ្វើឲ្យ​ប្រសើរ ។ " "អ្នក​នឹង​ត្រូវ​បាន​ផ្ដល់​អនុសាសន៍​ឲ្យ​ធ្វើ​ដូច្នេះ " "ប្រសិនបើ​អ្នក​បាន​តភ្ជាប់​បណ្ដាញ ។\n" "\n" "ការ​ធ្វើឲ្យ​ប្រសើរ​នឹង​ចំណាយ​ពេល​យូរ​បន្តិច ប៉ុន្តែ​នៅ​ពេល​បាន​បញ្ចប់ " "ប្រព័ន្ធ​​របស់​អ្នក​នឹង​ទាន់សម័យ​ ។ អ្នក​អាច​ជ្រើស​មិន​ធ្វើ​ដូច្នេះ​បាន " "ប៉ុន្តែ​អ្នក​គួរតែ​ដំឡើង​បច្ចុប្បន្នភាព​ចុងក្រោយ​ឲ្យ​បាន​ភ្លាមៗ " "បន្ទាប់ពី​បាន​បញ្ចប់​ការ​ធ្វើឲ្យ​ប្រសើរ ។\n" "ប្រសិនបើ​អ្នក​ឆ្លើយ​ថា 'ទេ' នៅ​ទីនេះ " "បណ្ដាញ​របស់​អ្នក​នឹង​មិន​ត្រូវ​បាន​ប្រើឡើយ ។" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "បិទ​នៅ​ពេល​ធ្វើឲ្យ​ប្រសើរ​ទៅកាន់ %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "រក​មិន​ឃើញ​ទីតាំង​ត្រឹមត្រូវ" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "ខណៈ​ពេល​កំពុង​វិភាគ​រក​ព័ត៌មាន​ឃ្លាំង​របស់​អ្នក " "គ្មាន​ធាតុ​ទីតាំង​សម្រាប់​ការ​ធ្វើឲ្យ​ប្រសើរ​ត្រូវ​បាន​រក​ឃើញ​ទេ ។ " "វា​អាច​កើតឡើង​បាន ប្រសិនបើ​អ្នក​ដំណើរការ​ទីតាំង​ខាងក្នុង " "ឬ​ប្រសិនបើ​ព័ត៌មាន​អំពី​ទីតាំង​ហួសសម័យ ។\n" "\n" "តើ​អ្នក​ចង់​សរសេរ​ឯកសារ 'sources.list' របស់​អ្នក​ឡើងវិញ​ឬ ? " "ប្រសិនបើ​អ្នក​ជ្រើស 'បាទ/ចាស' នៅ​ទីនេះ វា​នឹង​ធ្វើ​បច្ចុប្បន្ន '%s' " "ទាំងអស់​ទៅកាន់​ធាតុ '%s' ។\n" "ប្រសិនបើ​អ្នក​ជ្រើស 'ទេ' ការ​ធ្វើឲ្យ​ប្រសើរ​នឹង​បោះបង់ ។" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "បង្កើត​ប្រភព​លំនាំដើម​ឬ ?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "បន្ទាប់ពី​បាន​វិភាគ​រក 'sources.list' របស់​អ្នក​រួច " "គ្មាន​ធាតុ​ត្រឹមត្រូវ​សម្រាប់ '%s' ត្រូវ​បាន​រក​ឃើញ​ទេ ។\n" "\n" "តើ​គួរតែ​បន្ថែម​ធាតុ​លំនាំដើម​សម្រាប់ '%s' ដែរ​ឬ​ទេ ? ប្រសិនបើ​អ្នក​ជ្រើស " "'ទេ' ការ​ធ្វើឲ្យ​ប្រសើរ​នឹង​បោះបង់ ។" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "ព័ត៌មាន​ឃ្លាំង​មិន​ត្រឹមត្រូវ" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "ការ​ធ្វើឲ្យ​ព័ត៌មាន​ឃ្លាំង​ប្រសើរ​ឡើង​បណ្ដាល​ឲ្យ​មាន​ឯកសារ​មិន​ត្រឹមត្រូវ " "ដូច្នេះ​ដំណើរការ​ក្នុង​ការ​រាយការណ៍​កំហុស​កំពុងតែ​ត្រូវ​បាន​ចាប់ផ្ដើម ។" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "ប្រភព​របស់​ភាគី​ទីបី​ត្រូវ​បាន​បិទ" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "ធាតុ​របស់​ភាគី​ទីបី​មួយ​ចំនួន​ដែល​នៅ​ក្នុង sources.list " "របស់​អ្នក​ត្រូវ​បាន​បិទ ។ អ្នក​អាច​បើក​ពួកវា​ឡើងវិញ " "បន្ទាប់ពី​បាន​បញ្ចប់​ការ​ធ្វើឲ្យ​ប្រសើរ​ដោយ​ប្រើ​ឧបករណ៍ 'software-" "properties' ឬ​កម្មវិធី​គ្រប់គ្រង​កញ្ចប់ ។" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "កញ្ចប់​ស្ថិត​នៅ​ក្នុង​ស្ថានភាព​មិនឆបគ្នា" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "កញ្ចប់ '%s' ស្ថិតនៅក្នុង​ស្ថានភាព​មិន​ឆប​គ្នា និង​ទាមទារ​ឲ្យ​ដំឡើង​ឡើងវិញ " "ប៉ុន្តែ​រក​មិនឃើញ​ឃ្លាំង​សម្ងាត់​សម្រាប់​វាទេ ។ សូម​ដំឡើង​កញ្ចប់ដោយដៃ " "ឬ​យក​វា​ចេញ​ពី​ប្រព័ន្ធ ។" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "កំហុស​ក្នុង​​អំឡុង​ពេល​ធ្វើ​បច្ចុប្បន្នភាព" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "បញ្ហា​បាន​កើតឡើង​ក្នុង​អំឡុង​ពេល​ធ្វើ​បច្ចុប្បន្នភាព ។ " "ជាទូទៅ​បណ្ដាលមក​ពី​បញ្ហា​បណ្ដាញ​ខ្លះ​ៗ " "សូម​ពិនិត្យមើល​ការ​តភ្ជាប់​បណ្ដាញ​របស់​អ្នក រួច​ព្យាយាម​ម្ដងទៀត ។" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "គ្មាន​ទំហំ​ថាស​គ្រប់គ្រាន់" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "ការ​ធ្វើឲ្យ​ប្រសើរ​ត្រូវ​បាន​បោះបង់ ។ " "ការ​ធ្វើឲ្យ​ប្រសើរ​ត្រូវការ​ទំហំ​ថាស​សរុប %s '%s' ។ " "សូម​ធ្វើឲ្យ​ទំហំ​ថាស​ទំនេរ​បន្ថែម​យ៉ាងហោចណាស់​ត្រឹម %s នៅ​លើ '%s' ។ " "សម្អាត​ធុងសំរាម​របស់​អ្នក " "និង​យក​កញ្ចប់​បណ្ដោះអាសន្ន​ដែល​បាន​ដំឡើង​ពីមុន​ចេញ​ដោយ​ប្រើ​ពាក្យ​បញ្ជា " "'sudo apt-get clean' ។" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "គណនា​ការ​ផ្លាស់ប្ដូរ" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "តើ​អ្នក​ចង់​ចាប់ផ្ដើម​ការ​ធ្វើឲ្យ​ប្រសើរ​ដែរ​ឬ​ទេ ?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "ការ​ធ្វើឲ្យ​ប្រសើរ​ត្រូវ​បាន​បោះបង់" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "ការ​ធ្វើឲ្យ​ប្រសើរ​នឹង​បោះបង់​ឥឡូវនេះ " "ហើយ​ស្ថានភាព​ប្រព័ន្ធ​លំនាំដើម​នឹង​ត្រូវ​បាន​ស្ដារ ។ " "អ្នក​អាច​បន្ត​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​នៅ​ពេល​ក្រោយ​បាន ។" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "មិន​អាច​ទាញ​យក​ការ​ធ្វើឲ្យ​ប្រសើរ​បាន​ឡើយ" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "បាន​បោះបង់​ការ​ធ្វើឲ្យ​ប្រសើរ ។ សូម​ពិនិត្យមើល​ការ​​តភ្ជាប់​អ៊ីនធឺណិត " "ឬ​មេឌៀ​ដំឡើង​របស់​អ្នក រួច​ព្យាយាម​ម្ដងទៀត ។ " "គ្រប់​ឯកសារ​ដែល​បាន​ទាញ​យក​ត្រូវ​បាន​រក្សាទុក ។" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "កំហុស​ក្នុង​អំឡុង​ពេល​ប្រតិបត្តិ" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "ស្ដារ​ស្ថានភាព​ប្រព័ន្ធ​លំនាំដើម" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "មិន​អាច​ដំឡើង​ការ​ធ្វើ​ឲ្យ​ប្រសើរ" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "ការ​ធ្វើឲ្យ​ប្រសើរ​បាន​បោះបង់ ។ " "ប្រព័ន្ធ​របស់​អ្នក​អាច​ស្ថិត​នៅ​ក្នុង​ស្ថានភាព​មិន​អាច​ប្រើ​បាន​ ។ " "ការ​សង្គ្រោះ​នឹង​ដំណើរការ​ឥឡូវនេះ (dpkg --configure -a) ។" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "ការ​ធ្វើឲ្យ​ប្រសើរ​បាន​បោះបង់ ។ សូម​ពិនិត្យមើល​ការ​តភ្ជាប់​អ៊ីនធឺណិត " "ឬ​មេឌៀ​ដំឡើង​របស់​អ្នក រួច​ព្យាយាម​ម្ដងទៀត ។ " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "លុប​កញ្ចប់​​​ផុត​សម័យ​ចេញ?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "រក្សាទុក" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "លុប​ចេញ" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "បញ្ហា​បាន​កើតឡើង​ក្នុង​អំឡុង​ពេល​សម្អាត ។ ចំពោះ​ព័ត៌មាន​បន្ថែម " "សូម​មើល​សារ​ខាងក្រោម​នេះ ។ " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "ភាព​អាស្រ័យ​ដែល​បាន​ទាមទារ​មិន​ត្រូវ​បាន​ដំឡើង" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "ភាព​អាស្រ័យ​ដែល​បាន​ទាមទារ '%s' មិន​ត្រូវ​បាន​ដំឡើង ។ " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "ពិនិត្យមើល​កម្មវិធី​គ្រប់គ្រង​កញ្ចប់" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​រៀបចំ​ធ្វើ​បច្ចុប្បន្នភាព" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "រៀបចំ​ប្រព័ន្ធ សម្រាប់​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង​បាន​បរាជ័យ " "ដូច្នេះ​ដំណើរការ​រាយការណ៍​កំហុស​កំពុង​ត្រូវ​បាន​ចាប់ផ្ដើម ។" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" "បាន​បរាជ័យ​ក្នុង​ការ​ទទួលយក​តម្រូវការ​ជាមុន​សម្រាប់​ការ​​ធ្វើឲ្យ​ប្រសើរ" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "ប្រព័ន្ធ​មិន​អាច​ទទួល​យក​តម្រូវការ​ជាមុន​សម្រាប់​ការ​ធ្វើឲ្យ​ប្រសើរ​បាន​ទេ ។ " "ការ​ធ្វើឲ្យ​ប្រសើរ​នឹង​បោះបង់​ឥឡូវនេះ " "ហើយ​នឹង​ស្ដារ​ស្ថានភាព​ប្រព័ន្ធ​លំនាំដើម ។\n" "\n" "លើសពី​នេះ ដំណើរការ​រាយការណ៍​កំហុស​កំពុង​ត្រូវ​បាន​ចាប់ផ្ដើម ។" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "កំពុង​ធ្វើ​បច្ចុប្បន្នភាព​ព័ត៌មាន​ឃ្លាំង" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បន្ថែម cdrom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "សូម​អភ័យទោស ការ​បន្ថែម cdrom មិន​ទទួល​ជោគជ័យ​ទេ ។" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "ព័ត៌មាន​កញ្ចប់​មិន​ត្រឹមត្រូវ" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "បន្ទាប់​ពី​ធ្វើ​បច្ចុប្បន្នភាព​កញ្ចប់​ព័ត៌មាន​របស់​អ្នក កញ្ចប់​សំខាន់ '%s' " "មិន​​អាច​ត្រូវ​បាន​រក​ឃើញ​ឡើយ។ " "វា​អាច​ដោយ​សារ​តែ​អ្នក​​មិន​បាន​​​រាយ​បញ្ជី​ជា​ផ្លូវ​ការ​នៅ​ក្នុង​ប្រភព​កម្មវ" "ិធី ឬ​ដោយ​សារ​តែ​ផ្ទុក​​លើស​កម្រិត​លើ​កញ្ចប់​ដែល​អ្នក​កំពុង​ប្រើ។ សូម​មើល " "/etc/apt/sources.list " "ចំពោះ​បញ្ជី​​​នៃ​ប្រភព​កម្មវិធី​ដែល​បាន​កំណត់​រចនាសម្ព័ន្ធ​បច្ចុប្បន្ន។\n" "នៅ​ក្នុង​​នៃ​កញ្ចក់​ដែល​បាន​ផ្ទុក​នៅ​លើ " "អ្នក​អាច​ព្យាយាម​ធ្វើ​បច្ចុប្បន្នភាព​ម្ដងទៀត​ពេល​ក្រោយ។" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "ទៅ​ប្រមូលយក" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "ធ្វើឲ្យ​ប្រសើរ" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "បាន​បញ្ចប់​ការ​ធ្វើឲ្យ​ប្រសើរ" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "បាន​បញ្ចប់​ការ​ធ្វើឲ្យ​ប្រសើរ " "ប៉ុន្តែ​មាន​កំហុស​ក្នុង​អំឡុង​ពេល​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង ។" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "ស្វែងរក​កម្មវិធី​ដែល​ហូសសម័យ" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "បាន​បញ្ចប់​ការ​ធ្វើឲ្យ​ប្រព័ន្ធ​ប្រសើរ ។" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "បាន​បញ្ចប់​ការ​ធ្វើឲ្យ​ប្រសើរ​ដោយ​ផ្នែក ។" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "រក​មិន​ឃើញ​ឯកសារ​ចេញផ្សាយ​ទេ" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "ម៉ាស៊ីន​បម្រើ​អាច​ផ្ទុក​លើស​ចំណុះ ។ " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "មិន​អាច​ទាញ​យក​ឯកសារ​ចេញផ្សាយ​បាន​ទេ" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "សូម​ពិនិត្យមើល​ការ​តភ្ជាប់​អ៊ីនធឺណិត​របស់​អ្នក ។" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "ផ្ទៀងផ្ទាត់​ភាព​ '%(file)s' ទល់នឹង '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "ស្រង់ចេញ '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "មិន​អាច​ដំណើរការ​ឧបករណ៍​ធ្វើឲ្យ​ប្រសើរ​ទេ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "វា​ប្រហែល​ជា​មាន​​កំហុស​នៅ​ក្នុង​ឧបករណ៍​ដែល​​បាន​បច្ចុប្បន្នភាព។ " "សូម​រាយ​ការណ៍​កំហុស​ដោយ​ប្រើ​ពាក្យ​បញ្ជា 'ubuntu-bug ubuntu-release-upgrader-" "core' ។" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "ហត្ថលេខា​ឧបករណ៍​ធ្វើឲ្យ​ប្រសើរ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "ឧបករណ៍​ធ្វើឲ្យ​ប្រសើរ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូលយក" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "បាន​បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូល​យក​ការ​ធ្វើឲ្យ​ប្រសើរ ។ អាច​មាន​បញ្ហា​បណ្ដាញ " "។ " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ផ្ទៀងផ្ទាត់" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "បាន​បរាជ័យ​ក្នុង​ការ​ផ្ទៀងផ្ទាត់​ភាព​​​អំពី​ការ​ធ្វើឲ្យ​ប្រសើរ ។ " "អាច​មាន​បញ្ហា​ជាមួយ​បណ្ដាញ ឬ​ជាមួយ​ម៉ាស៊ីន​​មេ ។ " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ស្រង់​ចេញ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "បាន​បរាជ័យ​ក្នុង​ការ​ស្រង់​ចេញ​ការ​ធ្វើឲ្យ​ប្រសើរ ។ " "អាច​មាន​បញ្ហា​ជាមួយ​បណ្ដាញ ឬ​ជាមួយ​ម៉ាស៊ីន​​មេ ។ " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ផ្ទៀងផ្ទាត់" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "បាន​បរាជ័យ​ក្នុង​ការ​ផ្ទៀងផ្ទាត់​ការ​ធ្វើឲ្យ​ប្រសើរ ។ " "អាច​មាន​បញ្ហា​ជាមួយ​បណ្ដាញ ឬ​ជាមួយ​ម៉ាស៊ីន​បម្រើ ។ " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "មិន​អាច​ដំណើរការ​ការ​ធ្វើឲ្យ​ប្រសើរ​បាន​ទេ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "ជាទូទៅ​វា​បណ្ដាល​មក​ពី​បញ្ហា​ប្រព័ន្ធ​ដែល /tmp ត្រូវ​បាន​ម៉ោន​​ដោយ​ប្រើ " "noexec ។ សូម​ម៉ោន​ឡើងវិញ​ដោយ​មិន​ប្រើ noexec " "រួច​ដំណើរការ​ការ​ធ្វើឲ្យ​ប្រសើរ​ម្ដងទៀត ។" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "សារ​កំហុស​គឺ '%s' ។" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "ធ្វើ​បច្ចុប្បន្នភាព" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "ឯកសារ​ចេញផ្សាយ" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "កំពុង​ទាញ​យក​ឯកសារ​កញ្ចប់​បន្ថែម..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "ឯកសារ %s នៃ %s នៅ %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "ឯកសារ %s នៃ %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "សូម​បញ្ចូល '%s' ទៅ​ក្នុង​ដ្រាយ '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "ការ​ផ្លាស់ប្ដូរ​មេឌៀ" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms កំពុង​ត្រូវ​បាន​ប្រើ" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "ប្រព័ន្ធ​របស់​អ្នក​ប្រើ​កម្មវិធី​គ្រប់គ្រង​ភាគ 'evms' នៅ​ក្នុង /proc/mounts " "។ កម្មវិធី 'evms' មិន​ត្រូវ​បាន​គាំទ្រ​ទៀត​ទេ សូម​បិទ​វា " "រួច​ដំណើរការ​ការ​ធ្វើឲ្យ​ប្រសើរ​ម្ដងទៀត នៅ​ពេល​វា​ត្រូវ​បាន​បញ្ចប់ ។" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "ផ្នែក​រឹង​ក្រាហ្វិក​របស់​អ្នក​​អាច​មិន​ត្រូវ​បាន​គាំទ្រ​ពេញ​លេញ​នៅ​ក្នុង​អ៊ូប" "៊ុនទូ ១៣.០៤ ។" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "កំពុង​ដំណើរការ​បរិស្ថាន​ផ្ទៃតុ 'unity' " "មិន​ត្រូវ​បាន​គាំទ្រ​ដោយ​​ផ្នែក​រឹង​ក្រាហ្វិក​របស់​អ្នក។ " "អ្នក​នឹង​អាច​បញ្ចប់​​នៅ​ក្នុង​បរិស្ថាន​យឺត​បន្ទាប់​ពី​ធ្វើ​បច្ចុប្បន្នភាព។ " "ឧបករណ៍​របស់​ពួក​យើង​នៅ​តែ​រក្សា​កំណែ LTS នៅ​ពេល​បច្ចុប្បន្ន។ " "មើល​ព័ត៌មាន​បន្ថែម​សូម​មើល " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D " "តើ​អ្នក​នៅ​តែ​ចង់​បន្ត​ជាមួយ​បច្ចុប្បន្នភាព​នេះ​ឬ?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "ផ្នែក​រឹង​ក្រាហ្វិក​របស់​អ្នក​អាច​គាំទ្រ​មិន​ពេញលេញ​នៅ​ក្នុង​អ៊ូប៊ុនទូ 12.04 " "LTS  ។" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "កា​រគាំទ្រ​នៅ​ក្នុង​អ៊ូប៊ូទូ 12.04 LTSសម្រាប់​ផ្នែក​រឹង​ក្រាហ្វិក Intel " "របស់​អ្នក​ត្រូវ​បានកំណត់ " "ហើយ​អ្នក​អាច​ជួប​ប្រទះ​បញ្ហា​បន្ទាប់​ពី​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង ។ " "ចំពោះ​ព័ត៌មាន​បន្ថែម សូម​មើល " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx " "តើ​អ្នក​ចង់​បន្ត​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង​ដែរឬទេ ?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "ការ​ធ្វើឲ្យ​ប្រសើរ​អាច​កាត់បន្ថយ​បែបផែន​ផ្ទៃតុ " "សមត្ថភាព​នៅ​ក្នុង​ល្បែង​កម្សាន្ត និងកម្មវិធីដែល​ប្រើ​ក្រាហ្វិក​ផ្សេងទៀត ។" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "បច្ចុប្បន្ន កុំព្យូទ័រ​នេះ​ប្រើ​កម្មវិធី​បញ្ជា​ក្រាហ្វិក NVIDIA 'nvidia' ។ " "គ្មាន​កំណែ​កម្មវិធី​បញ្ជា​ណាមួយ​ដែល​ដំណើរការ​ជាមួយ​កាត​វីដេអូ​របស់​អ្នក​នៅ​ក្" "នុង​អ៊ូប៊ុនទូ ១០.០៤ LTS ទេ ។\n" "\n" "តើ​អ្នក​ចង់​បន្ត​ដែរ​ឬ​ទេ ?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "បច្ចុប្បន្ន កុំព្យូទ័រ​នេះ​ប្រើ​កម្មវិធី​បញ្ជា​ក្រាហ្វិក AMD 'fglrx' ។ " "គ្មាន​កំណែ​កម្មវិធី​បញ្ជា​ណាមួយ​ដែល​ដំណើរការ​ជាមួយ​ផ្នែក​រឹង​នៅ​ក្នុង​អ៊ូប៊ុន" "ទូ ១០.០៤ LTS ។\n" "\n" "តើ​អ្នក​ចង់​បន្ត​ដែរ​ឬ​ទេ ?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "គ្មាន​ស៊ីភីយូ i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "ប្រព័ន្ធ​របស់​អ្នក​ប្រើ​ស៊ីភីយូ i586 ឬ​ស៊ីភីយូ​ដែល​មិន​មាន​កន្ទុយ 'cmov' ។ " "រាល់​កញ្ចប់​ទាំងអស់​ត្រូវ​បាន​ស្ថាបនា​ជាមួយ​ការ​ធ្វើឲ្យ​ប្រសើរ​ដែល​ទាមទារ " "i686 ជា​ស្ថាបត្យកម្ម​អប្បបរមា ។ " "អ្នក​មិន​អាច​ធ្វើឲ្យ​ប្រព័ន្ធ​របស់​អ្នក​ប្រសើរ​ទៅជា​កំណែ​ចេញផ្សាយ​អ៊ូប៊ុនទូ​ថ" "្មី​ដោយ​ប្រើ​ផ្នែក​រឹង​នេះ​បាន​ឡើយ ។" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "គ្មាន​ស៊ីភីយូ ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "ប្រព័ន្ធ​របស់​អ្នក​ប្រើ​ស៊ីភីយូ ARM ដែល​ចាស់​ជាង​ស្ថាបត្យកម្ម ARMv6 ។ " "រាល់​កញ្ចប់​ទាំងអស់​នៅ​ក្នុង karmic " "ត្រូវ​បាន​ស្ថាបនា​ជាមួយ​ការ​ធ្វើឲ្យ​ប្រសើរ​ដែល​ទាមទារ ARMv6 " "ជា​ស្ថាបត្យកម្ម​អប្បបរមា ។ " "អ្នក​មិន​អាច​ធ្វើឲ្យ​ប្រព័ន្ធ​របស់​អ្នក​ប្រសើរ​ទៅជា​កំណែ​ចេញ​ផ្សាយ​អ៊ូប៊ុនទូ​" "ថ្មី​ដោយ​ប្រើ​ផ្នែក​រឹង​នេះ​បាន​ឡើយ ។" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "គ្មាន init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "ប្រព័ន្ធ​របស់​អ្នក​មាន​លក្ខណៈ​ដូចជា​បរិស្ថាន​និម្មិត​ដែល​គ្មាន​ដេមិន init ឧ. " "Linux-VServer ។ អ៊ូប៊ុនទូ ១០.០៤ LTS " "មិន​អាច​​ដំណើរការ​នៅ​ក្នុង​បរិស្ថាន​ប្រភេទ​នេះ​បាន​ទេ " "ហើយ​វា​ទាមទារ​ឲ្យ​អ្នក​ធ្វើ​បច្ចុប្បន្នភាព​ចំពោះ​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊" "ីន​និម្មិត​របស់​អ្នក​ជាមុន​សិន ។\n" "\n" "តើ​អ្នក​ចង់​បន្ត​ទេ ?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "ការ​ធ្វើឲ្យ Sandbox ប្រសើរ​ដោយ​ប្រើ aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "ប្រើ​ផ្លូវ​ដែល​បាន​ផ្ដល់ ដើម្បី​ស្វែងរក cdrom " "ដែល​មាន​កញ្ចប់​ដែល​អាច​ធ្វើ​ឲ្យ​ប្រសើរ​បាន" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "ប្រើ​ផ្នែក​ខាងមុខ ។ អាច​ប្រើ​ក្នុង​ពេល​បច្ចុប្បន្នបាន ៖\n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*DEPRECATED* ជម្រើស​នេះ​នឹង​ត្រូវ​បាន​មិន​អើពើ" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "អនុវត្ត​ការ​ធ្វើឲ្យ​ប្រសើរ​ដោយ​ផ្នែក​ប៉ុណ្ណោះ (គ្មាន​ការ​សរសេរ sources.list " "ឡើង​វិញ​ទេ)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "បិទ​ការ​គាំទ្រ​អេក្រង់ GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "កំណត់​ថត​ទិន្នន័យ" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "បាន​បញ្ចប់​ការ​ទៅ​ប្រមូល​យក" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "ទៅ​ប្រមូល​យក​ឯកសារ %li នៃ %li នៅ %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "នៅសល់​ប្រហែល %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "ទៅ​ប្រមូល​យក​ឯកសារ %li នៃ %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "អនុវត្ត​ការ​ផ្លាស់ប្ដូរ" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "បញ្ហា​ភាព​អាស្រ័យ - មិន​កំណត់​រចនាសម្ព័ន្ធ" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "មិន​អាច​ដំឡើង '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "ការ​ធ្វើឲ្យ​ប្រសើរ​នឹង​បន្ត ប៉ុន្តែ​កញ្ចប់ '%s' " "អាច​នឹង​មិន​ស្ថិត​នៅ​ក្នុង​ស្ថានភាព​ដំណើរការ ។ " "សូម​ដាក់​ស្នើ​របាយការណ៍​កំហុស​អំពី​វា ។" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "ជំនួស​ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ​ដែល​បាន​ប្ដូរ​តាម​បំណង\n" "'%s'ឬ ?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "អ្នក​នឹង​បាត់បង់​ការ​ផ្លាស់ប្ដូរ​ណាមួយ​ដែល​អ្នក​បាន​ធ្វើ​ទៅ​លើ​ឯកសារ​កំណត់​រច" "នាសម្ព័ន្ធ​នេះ ប្រសិនបើ​អ្នក​ជ្រើស​ជំនួស​វា​ជាមួយ​កំណែ​ថ្មី​ជាងនេះ ។" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "រក​មិន​ឃើញ​ពាក្យ​បញ្ជា 'diff' ទេ" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "កំហុស​ធ្ងន់ធ្ងរ​បាន​កើតឡើង" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "សូម​រាយការណ៍​វា​ជា​កំហុស (ប្រសិនបើ​អ្នក​ពុំ​ទាន់​បាន​ធ្វើ) " "និង​រួមបញ្ចូល​ឯកសារ /var/log/dist-upgrade/main.log និង /var/log/dist-" "upgrade/apt.log ទៅ​ក្នុង​របាយការណ៍​​របស់​អ្នក ។ " "ការ​ធ្វើឲ្យ​ប្រសើរ​បាន​បោះបង់ ។\n" " sources.list ដើម​របស់​អ្នក​ត្រូវ​បាន​រក្សាទុក​ក្នុង " "/etc/apt/sources.list.distUpgrade ។" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "ចុច​បញ្ជា (Ctrl)-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "វា​នឹង​បោះបង់​ប្រតិបត្តិការ​នេះ " "ហើយ​អាច​រក្សាទុក​ប្រព័ន្ធ​ក្នុង​ស្ថានភាព​ខូច​ដដែល ។ " "តើ​អ្នក​ពិតជា​ចង់​ធ្វើ​ដូច្នោះ​ឬ ?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "ដើម្បី​ការពារ​កុំឲ្យ​បាត់បង់​ទិន្នន័យ បិទ​កម្មវិធី " "និង​ឯកសារ​ដែល​បាន​បើក​ទាំងអស់ ។" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "មិន​​ត្រូវ​បាន​គាំទ្រ​ដោយ Canonical (%s) ទៀត​ឡើយ" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "បន្ទាប (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "លុប​ចេញ (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "លែង​ត្រូវការ (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "ដំឡើង (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "ធ្វើឲ្យ​ប្រសើរ (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "បង្ហាញ​ភាព​ខុសគ្នា >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< លាក់​ភាព​ខុសគ្នា" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "កំហុស" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "បិទ" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "បង្ហាញ​ស្ថានីយ >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< លាក់​ស្ថានីយ" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "ព័ត៌មាន" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "សេចក្ដី​លម្អិត" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "មិន​ត្រូវ​បាន​គាំទ្រ​ទៀត​ទេ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "យកចេញ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "យកចេញ (ត្រូវ​បាន​ដំឡើង​ស្វ័យប្រវត្តិ) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "ដំឡើង %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "ធ្វើឲ្យ​ប្រសើរ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "ទាមទារឲ្យ​ចាប់ផ្ដើម​ឡើងវិញ" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "ចាប់ផ្ដើម​ប្រព័ន្ធ​ឡើងវិញ ដើម្បី​បញ្ចប់​ការ​ធ្វើឲ្យ​ប្រសើរ" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "ចាប់ផ្ដើម​ឡើងវិញ​ឥឡូវនេះ" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "បោះបង់​ការ​ធ្វើឲ្យ​ប្រសើរ​ដែល​កំពុង​ដំណើរការ​ឬ ?\n" "\n" "ប្រព័ន្ធ​អាច​ស្ថិត​ក្នុង​ស្ថានភាព​ដែល​មិន​អាច​ប្រើ​បាន " "ប្រសិនបើ​អ្នក​បោះបង់​ការ​ធ្វើឲ្យ​ប្រសើរ ។ " "អ្នក​ត្រូវ​បាន​ផ្ដល់​អនុសាសន៍​ឲ្យ​បន្ត​ការ​ធ្វើឲ្យ​ប្រសើរ ។" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "បោះបង់​ការ​ធ្វើឲ្យ​ប្រសើរ​ឬ ?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li ថ្ងៃ" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li ម៉ោង" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li នាទី" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li វិនាទី" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "ការ​ទាញ​យក​នេះ​នឹង​ចំណាយ​ពេល​ប្រហែល %s ជាមួយ​នឹង​ការ​តភ្ជាប់ DSL 1Mbit " "និង​ប្រហែល %s ជាមួយ​ម៉ូដឹម 56k ។" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "ការ​ទាញ​យក​នេះ​នឹង​ចំណាយ​ពេល​ប្រហែល %s ជាមួយ​ការ​តភ្ជាប់ ។ " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "រៀបចំ​ធ្វើឲ្យ​ប្រសើរ" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "ទទួលយក​ឆានែល​កម្មវិធី​ថ្មី" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "ទទួល​យក​កញ្ចប់​ថ្មី" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "ដំឡើង​ការ​ធ្វើឲ្យ​ប្រសើរ" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "សម្អាត" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d កញ្ចប់​ដែល​បាន​ដំឡើង​មិន​ត្រូវ​បាន​គាំទ្រ​ដោយ Canonical ទៀត​ទេ ។ " "អ្នក​នៅតែ​អាច​ទទួលយក​ការ​គាំទ្រ​ពី​សហគមន៍ ។" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d កញ្ចប់​នឹង​ត្រូវ​បាន​លុប​​ចេញ ។" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d កញ្ចប់​ថ្មី​នឹង​ត្រូវ​បាន​ដំឡើង ។" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d កញ្ចប់​នឹង​ត្រូវ​បាន​ធ្វើឲ្យ​ប្រសើរ ។" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "អ្នក​ត្រូវតែ​ទាញ​យក​សរុប​ត្រឹម %s ។ " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "ដំឡើង​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង​អាច​ចំណាយ​ពេល​ច្រើន​ម៉ោង ។ " "នៅ​ពេល​ដែល​ការ​ទាញយក​បាន​បញ្ចប់ ដំណើរការ​មិន​អាច​ត្រូវ​បាន​បោះបង់បាន​ទេ ។" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "ការ​ទៅ​យក និង​ដំឡើង​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង​អាច​ចំណាយ​ពេល​រាប់​ម៉ោង ។ " "នៅពេល​ដែល​កា​រទាញយក​បាន​បញ្ចប់ ដំណើរការ​មិន​អាច​ត្រូ​វបាន​​បោះបង់​ទេ ។" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "ការ​យក​កញ្ចប់ចេញ​អាច​ចំណាយ​ពេល​ច្រើន​ម៉ោង ។ " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "កម្មវិធី​នៅ​លើ​កុំព្យូទ័រ​នេះ​ទាន់​សម័យ ។" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "គ្មាន​ការ​ធ្វើឲ្យ​ប្រសើរ​សម្រាប់​ប្រព័ន្ធ​របស់​អ្នក​ទេ ។ " "ការ​ធ្វើឲ្យ​ប្រសើរ​នឹង​ត្រូវ​បាន​បោះបង់​ឥឡូវនេះ ។" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "ទាមទារ​ឲ្យ​ចាប់ផ្ដើម​ឡើងវិញ" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "ការ​ធ្វើឲ្យ​ប្រសើរ​បាន​បញ្ចប់ ហើយ​វា​ទាមទារ​ឲ្យ​ចាប់ផ្ដើម​ឡើងវិញ ។ " "តើ​ចង់​ធ្វើ​ដូច្នេះ​ឥឡូវ​នេះ​ឬ ?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "សូម​រាយការណ៍​វា​ជា​កំហុស​ ហើយ​រួមបញ្ចូល​ឯកសារ​ /var/log/dist-" "upgrade/main.log និង /var/log/dist-upgrade/apt.log " "ទៅ​ក្នុង​របាយការណ៍​របស់​អ្នក ។ ការ​ធ្វើឲ្យ​ប្រសើរ​ត្រូវ​បាន​បោះបង់ ។\n" " sources.list របស់​អ្នក​ត្រូវ​បាន​រក្សាទុក​នៅ​ក្នុង " "/etc/apt/sources.list.distUpgrade ។" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "បោះបង់" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "បន្ថយ ៖\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "ដើម្បី​បន្ត ចុច [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "បន្ត [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "សេចក្ដីលម្អិត [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "បាទ/ចាស" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "ទេ" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "សេចក្ដីលម្អិត" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "មិន​ត្រូវ​បាន​គាំទ្រ​ទៀតទេ ៖ %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "លុប​ចេញ ៖ %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "ដំឡើង ៖ %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "ធ្វើឲ្យ​ប្រសើរ៖ %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "បន្ត [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "ដើម្បី​បញ្ចប់​ការ​ធ្វើឲ្យ​ប្រសើរ ទាមទារ​ឲ្យ​ចាប់ផ្ដើម​ឡើងវិញ ។\n" "ប្រសិនបើ​អ្នក​ជ្រើស 'បាទ/ចាស' ប្រព័ន្ធ​នឹង​ត្រូវ​ចាប់ផ្ដើម​ឡើងវិញ ។" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "ទាញ​យក​ឯកសារ %(current)li នៃ %(total)li ដោយ %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "ទាញយក​ឯកសារ %(current)li នៃ %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "បង្ហាញ​វឌ្ឍនភាព​នៃ​ឯកសារ​នីមួយៗ" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "បោះបង់​ការ​ធ្វើឲ្យ​ប្រសើរ" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "បន្ត​ការ​ធ្វើឲ្យ​ប្រសើរ" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "បោះបង់​ការ​ធ្វើឲ្យ​ប្រសើរ​ដែល​កំពុង​ដំណើរការ ?\n" "\n" "ប្រព័ន្ធ​អាច​ស្ថិត​ក្នុង​ស្ថាន​ភាព​ដែល​មិន​អាច​ប្រើ​បាន " "ប្រសិនបើ​អ្នក​បោះបង់​ការ​ធ្វើឲ្យ​ប្រសើរ ។ " "អ្នក​ត្រូវ​បាន​ផ្ដល់​អនុសាសន៍​ឲ្យ​បន្ត​ការ​ធ្វើឲ្យ​ប្រសើរ ​​។" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "ចាប់ផ្ដើម​ការ​ធ្វើឲ្យ​ប្រសើរ" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "ជំនួស" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "ភាព​ខុស​គ្នា​រវាង​ឯកសារ" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "រាយការណ៍​កំហុស" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "បន្ត" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "ចាប់ផ្ដើម​ការ​ធ្វើឲ្យ​ប្រសើរ​ឬ ?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "ចាប់ផ្ដើម​ប្រព័ន្ធ​ឡើងវិញ " "ដើម្បី​បញ្ចប់​ការ​ធ្វើឲ្យ​ប្រសើរ\n" "\n" "សូម​រក្សាទុក​ការងារ​របស់​អ្នក មុននឹង​បន្ត ។" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "ធ្វើឲ្យ​ការ​ចែកចាយ​ប្រសើរ" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "ធ្វើ​បច្ចុប្បន្នភាព​អ៊ូប៊ុនទូ​ទៅ​កាន់​កំណែ 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "ការ​កំណត់​ឆានែល​កម្មវិធី​ថ្មី" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "ចាប់ផ្ដើម​កុំព្យូទ័រ​ឡើងវិញ" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "ស្ថានីយ" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "ធ្វើឲ្យ​ប្រសើរ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "កំណែ​ថ្មី​របស់​អ៊ូប៊ុនទូ​អាច​ប្រើបាន ។ តើ​អ្នក​ចង់​ធ្វើឲ្យ​ប្រសើរ​ទេ ?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "កុំ​ធ្វើឲ្យ​ប្រសើរ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "សួរ​ខ្ញុំ​នៅ​ពេលក្រោយ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "បាទ/ចាស ធ្វើឲ្យ​ប្រសើរ​ឥឡូវនេះ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "អ្នក​បាន​បដិសេធ​មិន​ធ្វើឲ្យ​ប្រសើរ​ចំពោះ​អ៊ូប៊ុនទូ​ថ្មី" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "អ្នក​អាច​ធ្វើ​បច្ចុប្បន្នភាព​នៅ​ពេល​ក្រោយ​ដោយ​បើក​កម្មវិធី​ធ្វើ​បច្ចុប្បន្នភា" "ព និង​ចុច​លើ \"ធ្វើ​បច្ចុប្បន្នភាព\"។" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "ធ្វើ​បច្ចុប្បន្នភាព​ការ​ចេញ​ផ្សាយ" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "ដើម្បី​ធ្វើ​បច្ចុប្បន្នភាព​​អ៊ូប៊ុនទូ អ្នក​ចាំបាច់​ផ្ទៀងផ្ទាត់។" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "ធ្វើ​បច្ចុប្បន្នភាព​តាម​ផ្នែក" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "ធ្វើ​បច្ចុប្បន្នភាព​តាម​ផ្នែក អ្នក​ចាំបាច់​ផ្ទៀងផ្ទាត់" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "បង្ហាញ​កំណែ រួច​ចាកចេញ" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "ថត​ដែល​មាន​ឯកសារ​ទិន្នន័យ" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "ដំណើរការ​ផ្នែក​ខាងមុខ​ដែល​បាន​បញ្ជាក់" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "ដំណើរការ​ការ​ធ្វើឲ្យ​ប្រសើរ​ដោយ​ផ្នែក" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "ទាញ​យក​ឧបករណ៍​ធ្វើឲ្យ​ការ​ចេញផ្សាយ​ប្រសើរ​ឡើង" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "ពិនិត្យមើល​ថា​តើ​ការ​ធ្វើឲ្យ​ប្រសើរ​ចំពោះ​ឯកសារ​ចេញផ្សាយ devel " "ចុងក្រោយ​អាច​ធ្វើ​បាន​ដែរ​ឬ​ទេ" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "សាកល្បង​ធ្វើឲ្យ​ប្រសើរ​ទៅកាន់​ឯកសារ​ចេញផ្សាយ​ចុងក្រោយ​ដោយ​ប្រើ​កម្មវិធី​ធ្វើឲ" "្យ​ប្រសើរ​ពី $distro ដែល​បាន​ស្នើ" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "ដំណើរការ​នៅ​ក្នុង​របៀប​ធ្វើឲ្យ​ប្រសើរ​ពិសេស ។\n" "បច្ចុប្បន្ន 'ផ្ទៃតុ' " "សម្រាប់​ការ​ធ្វើឲ្យ​ប្រសើរ​​តាម​ធម្មតា​ចំពោះ​ប្រព័ន្ធ​ផ្ទៃតុ និង " "'ម៉ាស៊ីន​បម្រើ' សម្រាប់​ប្រព័ន្ធ​ម៉ាស៊ីន​បម្រើ​ដែល​ត្រូវ​បាន​គាំទ្រ ។" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "សាកល្បង​ធ្វើឲ្យ​ប្រសើរ​ដោយ​ប្រើ sandbox aufs overlay" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "ពិនិត្យមើល​ថា​តើ​ការ​ចេញផ្សាយ​ការ​ចែកចាយ​អាច​មាន​ដែរ​ឬ​ទេ " "រួច​រាយការណ៍​លទ្ធផល​តាម​រយៈ​កូដ​ចាកចេញ" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "ពិនិត្យ​មើល​ការ​ចេញ​ផ្សាយ​អ៊ូប៊ុនទូ​ថ្មី" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "ឯកសារ​ចេញផ្សាយ​អ៊ូប៊ុនទូ​របស់​អ្នក​មិន​ត្រូវ​បាន​គាំទ្រ​ទៀតទេ ។" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "សម្រាប់​ព័ត៌មាន​អំពី​ការ​ធ្វើឲ្យ​ប្រសើរ សូម​ចូល​មើល ៖\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "រក​មិន​ឃើញ​ឯកសារ​ចេញ​ផ្សាយ​ថ្មី​ទេ" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" "ការ​ធ្វើឲ្យ​ការ​ចេញផ្សាយ​ប្រសើរ​ឡើង​មិន​អាច​ធ្វើ​ទៅ​បាន​ក្នុង​ពេល​ឥឡូវនេះ​ទេ" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "ការ​ធ្វើឲ្យ​ការ​ចេញផ្សាយ​ប្រសើរ​ឡើង​មិន​អាច​ត្រូវ​បាន​អនុវត្ត​ក្នុង​ពេលនេះ​ទេ" " សូម​ព្យាយាម​ម្ដងទៀត​នៅ​ពេលក្រោយ ។ ម៉ាស៊ីន​បម្រើ​បាន​រាយការណ៍ ៖ '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "មាន​ឯកសារ​ចេញផ្សាយ​ថ្មី '%s' ។" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" "ប្រើ​ពាក្យ​បញ្ជា 'do-release-upgrade' ដើម្បី​ធ្វើឲ្យ​ប្រសើរ​ចំពោះ​វា ។" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "ការ​ធ្វើឲ្យ​ប្រសើរ %(version)s អ៊ូប៊ុនទូ​អាច​ប្រើបាន" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "អ្នក​បាន​បដិសេធ​ការ​ធ្វើឲ្យ​ប្រសើរ​ទៅ​អ៊ូប៊ុនទូ %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "បន្ថែម​ទិន្នន័យ​បំបាត់​កំហុស" ubuntu-release-upgrader-0.220.10/po/nb.po0000644000000000000000000017752012431225715014764 0ustar # translation of nb.po to Norwegian Bokmal # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # Terance Edward Sola , 2005. # msgid "" msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-06-19 12:32+0000\n" "Last-Translator: Åka Sikrom \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: nb\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Tjener for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Hovedtjener" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Egendefinerte tjenere" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Klarte ikke å regne ut oppføringen i sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Fant ingen pakkefiler. Kanskje dette ikke er en Ubuntu-disk, eller korrekt " "arkitektur?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Klarte ikke å legge til CD-plata" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Det oppstod en feil ved lesing av CD-plata. Oppgraderinga avbrytes. Vi ber " "om at du rapporter dette som en feil hvis du bruker en gyldig Ubuntu-CD/-" "DVD/-USB.\n" "\n" "Feilmeldinga var som følger:\n" "«%s»" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Fjerne pakke som er i ustand" msgstr[1] "Fjern pakker som er i ustand" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Pakken '%s' er ødelagt og bør reinstalleres, men ingen av de nødvendige " "arkivene ble funnet. Vil du fjerne pakken ogfortsette?" msgstr[1] "" "Pakkene '%s' er ødelagte og bør reinstalleres, men ingen av de nødvendige " "arkivene ble funnet. Vil du fjerne pakkene og fortsette?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Tjeneren kan være opptatt" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Ødelagte pakker" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Systemet ditt inneholder skadede og/eller ødelagte pakker som ikke kan " "repareres med dette programmet. Rett opp feilen(e) ved å bruke Synaptic " "eller kommandoen «apt-get» før du fortsetter." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Mens oppgraderingen ble beregnet oppstod et problem som ikke kunne løses " "automatisk:\n" "%s\n" "\n" " Dette kan skyldes:\n" " * Oppgradering til en tidlig utgave (før-utgaven) av en versjon av Ubuntu\n" " * Oppgradering fra den nyeste tidlige utgaven av en versjon av Ubuntu\n" " * Uoffisielle programpakker som ikke kommer fra Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Dette er sannsynligvis et midlertidig problem. Prøv igjen senere." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Hvis det overnevnte er irrelevant, ber vi om at du rapporterer feilen ved å " "skrive kommandoen «ubuntu-bug ubuntu-release-upgrader-core» i en terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Klarte ikke å forberede oppgraderinga" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Feil ved autentisering av enkelte pakker" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Noen av pakkekildene kunne ikke bekreftes. Dette kan være et midlertidig " "nettverksproblem, så du bør prøve igjen senere. Se lista over aktuelle " "pakker nedenfor." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Pakka «%s» er merket for fjerning, men er også svartelistet mot fjerning." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Den essensielle pakka «%s» er merket for fjerning." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Prøver å installere den svartelistede versjonen «%s»" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Klarer ikke å installere «%s»" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Det ser ut til å være umulig å installere en påkrevet programpakke. " "Vennligst rapporter dette som en feil ved å skrive «ubuntu-bug ubuntu-" "release-upgrader-core» i et terminalvindu." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Klarer ikke å gjette meta-pakke" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Systemet ditt inneholder ingen av pakkene ubuntu-desktop, kubuntu-desktop " "eller edubuntu-desktop og det var ikke mulig å finne ut hvilken ubuntu-" "versjon du bruker.\n" "Installer én av de nevnte pakkene ved å bruke synaptic eller apt-get før du " "fortsetter." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Leser mellomlager" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Klarte ikke å få eksklusiv tilgang" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Dette betyr vanligvis at et annet pakkehåndteringsprogram, som f.eks. apt-" "get eller aptitude, kjører allerede. Lukk det aktuelle programmet først." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Oppgradering over fjerntilkobling støttes ikke" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Du er i ferd med å oppgradere via en ssh-tilkobling, med et grensesnitt som " "ikke støtter dette.\n" "\n" "Oppgraderinga avbrytes. Prøv uten ssh, eller oppgrader i tekstmodus med «do-" "release-upgrade»." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Vil du fortsette å kjøre via SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Denne økten kjører over SSH. Du frarådes å oppgradere på denne måten, fordi " "det er vanskeligere å gjenopprette systemet hvis det oppstår feil.\n" "\n" "Hvis du fortsetter, vil en ekstra SSH-tjeneste startes på port «%s».\n" "Vil du fortsette?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Starter en ekstra SSHD" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "En ekstra SSHD startes på port %s for å gjøre det lettere å gjenoppta økten, " "og evt. starte gjenoppretting. Slik har du fremdeles tilgang til maskina i " "tilfelle noe skulle gå galt med SSH-økten du kjører nå.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Hvis du kjører en brannmur, er det viktig at du lar denne porten stå åpen " "under oppgraderinga. Med tanke på at åpning av porter er potensielt farlig, " "gjøres ikke dette automatisk. Du kan f.eks. åpne porten ved å bruke følgende " "kommando:\n" "«%s»" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Klarte ikke å oppgradere" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Oppgradering fra «%s» til «%s» støttes ikke av dette verktøyet." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandkasseoppsett var mislykket" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Klarte ikke å lage sandkassemiljøet." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandkassemodus" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Oppgraderinga kjører nå i sandkasse(test-)modus. Alle endringer skrives til " "«%s», og går tapt neste gang du starter maskina på nytt.\n" "\n" "*Alle* endringer som gjøres i systemmapper fra nå av, og frem til neste " "omstart, går tapt." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Python-installasjonen din er ødelagt. Du må rette opp den symbolske lenka " "«/usr/bin/python»." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pakka «debsig-verify» er installert" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Oppgraderinga kan ikke fortsette så lenge denne pakka er installert.\n" "Fjern den med synaptic eller «apt-get remove debsig-verify» først, og kjør " "deretter oppgradering på nytt." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Klarte ikke å skrive til «%s»" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Det er ikke mulig å skrive til systemmappa «%s» på systemet ditt. " "Oppgraderinga kan således ikke fortsette.\n" "Sjekk at systemmappa ikke er skrivebeskyttet." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Vil du hente de siste oppdateringene fra Internett?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Oppgraderingssystemet kan bruke Internett til å laste ned de nyeste " "oppdateringene automatisk, og installere dem under oppgraderinga. Dette " "anbefales hvis du har en internettforbindelse.\n" "\n" "Oppgraderinga vil ta lengre tid, men når den er fullført, vil systemet ditt " "være helt oppdatert. Du kan velge å ikke gjøre dette, men i så fall bør du " "installere de siste oppdateringene så fort som mulig etter at oppgraderinga " "er ferdig.\n" "Svarer du «nei» her, brukes ikke Internett underveis i det hele tatt." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "deaktivert under oppgradering til %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Ingen gyldige tjenere ble funnet" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Det ble ikke funnet noen gyldige tjenere for oppgradering under gjennomgåing " "av pakkekildeinformasjonen din. Dette kan skje hvis du kjører et internt " "speil eller hvis tjenerlisten er utdatert.\n" "\n" "Vil du omskrive 'sources.list' likevel? Hvis du velger 'ja' her, så vil det " "oppgradere alle '%s' innslag til '%s' innslag. Hvis du velger 'nei', så vil " "oppgraderingen avbrytes." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Vil du bruke standardkilder?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Fant ingen gyldig oppføring for «%s» etter å ha lest gjennom «sources.list»-" "filen din.\n" "\n" "Vil du bruke standardverdier for «%s»? Oppgraderinga avbrytes hvis du velger " "«nei» her." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Ugyldig informasjon om pakkekilder" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Oppgradering av informasjon om pakkebrønner førte til en ugyldig fil. " "Starter feilrapportering." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Tredjepartskilder er deaktivert" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Enkelte tredjepartslinjer i sources.list-fila di ble deaktivert. Du kan " "aktivere dem igjen etter oppgraderinga med verktøyet «Programvarekilder», " "eller med Synaptic." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pakke er ufullstendig" msgstr[1] "Pakker er ufullstendige" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Pakka «%s» er ufullstendig, og bør installeres på nytt, men ingen av de " "nødvendige arkivene ble funnet. Installer pakken på nytt manuelt, eller " "fjern den fra systemet." msgstr[1] "" "Pakkene «%s» er ufullstendige, og bør installeres på nytt, men ingen av de " "nødvendige arkivene ble funnet. Installer pakkene på nytt manuelt, eller " "fjern dem fra systemet." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Feil under oppdatering" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Det oppstod et problem under oppdateringen. Dette skyldes vanligvis et " "problem med nettverket. Sjekk nettverkstilkoblingen din, og prøv på nytt." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Ikke nok ledig diskplass" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Oppgraderinga ble avbrutt. Du må ha minst %s ledig plass på disken «%s» for " "å oppgradere. Frigjør minst %s diskplass på «%s». Tøm papirkurven og fjern " "midlertidige pakker fra tidligere installasjoner ved hjelp av «sudo apt-get " "clean»." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Beregner endringene" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Vil du oppgradere nå?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Oppgradering ble avbrutt" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Oppgraderinga avbrytes, og den opprinnelige systemtilstanden gjenopprettes. " "Du kan vende tilbake til oppgraderinga når som helst." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Klarte ikke å laste ned oppgraderingene" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Oppgraderinga ble avbrutt. Sjekk at du er koblet til Internett, eller at " "installasjonsmediet er tilkoblet, og prøv deretter på nytt. Alle filer som " "er lastet ned hittil, beholdes." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Feil under innsending" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Gjenoppretter systemets opprinnelige tilstand" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Klarte ikke å installere oppgraderingene" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Oppgraderinga ble avbrutt. Systemet ditt kan være ubukelig inntil videre. " "Gjenoppretting startes nå (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Vi ber om at du går til http://bugs.launchpad.net/ubuntu/+source/ubuntu-" "release-upgrader/+filebug i en nettleser og rapporter denne programfeilen. " "Filene i «/var/log/dist-upgrade/» bør legges ved feilrapporten.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Oppgraderinga ble avbrutt. Kontroller internettilkoblingen eller " "installasjonsmediet, og prøv igjen. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Vil du fjerne utdaterte pakker?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Behold" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Fjern" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Det oppstod et problem under oppryddingen. Se meldingen under for mer " "informasjon. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Nødvendige avhengigheter er ikke installert" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Den nødvendige avhengigheten «%s» er ikke installert. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Sjekker pakkehåndterer" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Klarte ikke å forberede oppgraderinga" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Noe gikk galt under forberedelser til systemoppgradering. Starter " "feilrapportering." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Nedlasting av programavhengigheter mislyktes" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Systemet klarte ikke å hente forberedelsesprogrammer. Oppgraderinga " "avbrytes, og systemet stilles tilbake til opprinnelig tilstand.\n" "\n" "I tillegg blir programfeilen innrapportert." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Oppdaterer informasjon om pakkekilder" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Klarte ikke å legge til CD-stasjonen" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Klarte ikke å legge til CD-stasjonen." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Fant ikke den essensielle pakka «%s» etter å ha oppdatert pakkeoversikten " "din. Dette kan skyldes at du ikke har ført opp offisielle speiltjenere som " "programvarekilder, eller at speiltjeneren du bruker har stor pågang. Sjekk " "/etc/apt/sources.list for å kontrollere hvilke speil du bruker som " "programvarekilder.\n" "Hvis det er sannsynlig at speiltjeneren er overbelastet, bør du forsøke å " "kjøre oppgraderinga på nytt senere." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Henter" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Oppgraderer" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Oppgraderinga er fullført" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Oppgraderinga er ferdig, men det oppstod feil underveis." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Søker etter utdatert programvare" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Systemet er oppgradert." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Delvis oppgradering er fullført." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Klarte ikke å finne utgivelsesmerknadene" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Tjeneren kan være overbelastet. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Klarte ikke å laste ned utgivelsesmerknadene" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Kontoller internettforbindelsen." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "godkjenne «%(file)s» mot «%(signature)s» " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "pakker ut «%s»" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Klarte ikke å kjøre oppgraderingsverktøyet" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Dette er sannsynligvis en programfeil i oppgraderingsverktøyet. Rapporter " "feilen ved å kjøre kommandoen «ubuntu-bug ubuntu-release-upgrader-core»." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Signatur for oppgraderingsverktøyet" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Oppgraderingsverktøy" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Klarte ikke å hente" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Klarte ikke å hente oppgraderinga. Dette kan skyldes nettverksproblemer. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Identitetsbekreftelsen mislyktes" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Klarte ikke å bekrefte identiteten til oppgraderinga. Dette kan skyldes et " "problem med nettverket eller tjeneren. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Utpakking mislyktes" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Klarte ikke å pakke ut oppgraderinga. Det kan skyldes et problem med " "nettverket eller tjeneren. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Kontroll mislyktes" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Klarte ikke å bekrefte oppgraderinga. Dette kan skyldes en feil med " "nettverket eller tjeneren. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Klarte ikke å sette i gang oppgraderinga" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Dette skyldes vanligvis at /tmp er montert med valget «noexec». Monter /tmp " "på nytt uten «noexec», og start deretter oppgraderinga på nytt." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Feilmeldingen er «%s»." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Oppgrader" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Utgivelsesmerknader" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Laster ned ekstra pakkefiler …" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Fil %s av %s ved %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Fil %s av %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Sett inn «%s» i «%s»-leseren" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Medieendring" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms i bruk" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Systemet ditt bruker «evms» for behandling av dataområde i «/proc/mounts». " "Programvaren til «evms» er ikke lenger støttet, vennligst slå den av og kjør " "oppdateringen på nytt." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "Det er ikke sikkert at grafikkortet ditt støttes optimalt i Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Skrivebordsmiljøet Unity støtter ikke grafikkortet ditt optimalt. " "Oppgraderinga kan altså føre til at skrivebordsmiljøet kjører veldig tregt. " "Vi anbefaler at du beholder LTS - din langtidsstøttede versjon - inntil " "videre. Se https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D for " "mer informasjon. Vil du fortsette med å oppgradere likevel?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Det er ikke sikkert at grafikkortet ditt støttes optimalt i Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Intel-grafikkortet ditt har begrenset støtte i Ubuntu 12.04 LTS, og du kan " "møte problemer etter oppgraderingen. Se " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx for mer " "informasjon. Vil fortsette med å oppgradere likevel?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Å oppgradere kan gå på bekostning av skrivebordseffekter, samt ytelse i " "spill og andre grafikkintensive programmer." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Denne datamaskinen benytter for øyeblikket NVIDIA 'nvidia' grafikkdriver. " "Ingen versjoner av denne driveren er tilgjengelig for skjermkortet ditt for " "Ubuntu 10.04 LTS.\n" "\n" "Ønsker du å fortsette?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Denne datamaskina benytter for øyeblikket AMDs «fglrx»-grafikkdriver. Ingen " "versjoner av denne driveren er tilgjengelig til systemet ditt for Ubuntu " "10.04 LTS.\n" "\n" "Vil du fortsette?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Ikke en i686 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Systemet ditt bruker en i586-prosessor eller en annen type som ikke støtter " "«cmov». Alle programvarepakker er bygget med i686-typen som minstekrav. Det " "er ikke mulig å oppgradere dette systemet til en ny versjon av Ubuntu med " "denne maskinvaren." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Ingen ARMv6-prosessor" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Systemet ditt bruker en ARM-prossesor som er eldre enn ARMv6-arkitekturen. " "Alle pakker i karmic er bygget med optimaliseringer som krever minst ARMv6. " "Det er ikke mulig å oppgradere systemet ditt til en ny Ubuntu-versjon med " "denne maskinvaren." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Ingen oppstartsprogrammer (init) tilgjengelig" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Systemet ditt ser ut til å være installert i et virtualisert miljø uten " "oppstartsprogram (init). Dette er typisk for f.eks. Linux-VServer. Ubuntu " "10.04 LTS fungerer ikke i slike miljøer, og krever at verten oppdaterer " "oppsettet for den virtuelle maskina først.\n" "\n" "Vil du fortsette likevel?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandkasseoppgradering ved bruk av aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Bruk den angitte stien til å søke etter en CD-plate med pakker som kan " "oppgraderes" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Bruk et grafisk grensesnitt. Tilgjengelige: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*FORELDET* dette valget ignoreres" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Gjør kun en delvis oppgradering (overskriver ikke sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Skru av GNU-skjermstøtte" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Velg datamappe" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Ferdig med å hente" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Henter fil %li av %li ved %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Omtrent %s gjenstår" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Henter fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Utfører endringer" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "avhengighetsproblem - pakka blir ikke satt opp" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Klarte ikke å installere «%s»" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Oppgraderinga fortsetter, men det er mulig at pakka «%s» ikke fungerer " "skikkelig. Du bør vurdere å sende inn en feilrapport om dette." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Vil du erstatte den egendefinerte konfigurasjonsfilen\n" "«%s»?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Du mister endringer du har gjort i denne konfigureringsfila hvis du velger å " "bruke en nyere versjon." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Kommandoen «diff» ble ikke funnet" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Det oppstod en kritisk feil" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapporter dette som en feil (med mindre du allerede har gjort det), og " "inkluder filene /var/log/dist-upgrade/main.log og /var/log/dist-" "upgrade/apt.log i rapporten. Oppgraderinga er avbrutt.\n" "Den opprinnelige sources.list-fila ble lagret i " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c trykket" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Dette avbryter operasjonen, og du risikerer å sette systemet ditt i en " "ubrukelig tilstand. Er du sikker på at du vil fortsette?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Du bør lukke alle åpne programmer og dokumenter for å forhindre datatap." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Støttes ikke lenger av Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Nedgrader (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Fjern (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Ikke nødvendig lenger (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Installer (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Oppgrader (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Vis forskjell >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Skjul forskjell" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Feil" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Avbryt" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Lukk" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Vis Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Skjul Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informasjon" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detaljer" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Støttes ikke lenger (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Fjern %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Fjern (ble installert automatisk) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Installer %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Oppgrader %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Omstart er nødvendig" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Start systemet på nytt for å fullføre oppgraderinga" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Start maskina på nytt nå" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Vil du avbryte oppgraderinga som kjører nå?\n" "\n" "Systemet ditt kan bli ustabilt hvis du avbryter. Vi anbefaler på det " "sterkeste at du fortsetter." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Vil du avbryte oppgraderinga?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dag" msgstr[1] "%li dager" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li time" msgstr[1] "%li timer" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minutt" msgstr[1] "%li minutter" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekund" msgstr[1] "%li sekunder" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Nedlastinga tar cirka %s med en DSL-tilkobling på 1Mbit, og cirka %s med et " "56k-modem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Denne nedlastinga tar ca. %s med denne forbindelsen. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Forbereder oppgradering" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Henter nye programvarekanaler." #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Henter nye programpakker" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installerer oppgraderinger" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Rydder opp" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d installert pakke støttes ikke lenger av Canonical. Du kan " "fremdeles få støtte fra nettsamfunnet." msgstr[1] "" "%(amount)d installerte pakker støttes ikke lenger av Canonical. Du kan " "fremdeles få støtte fra nettsamfunnet." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakke fjernes." msgstr[1] "%d pakker fjernes." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d pakke installeres." msgstr[1] "%d pakker installeres." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakke oppgraderes." msgstr[1] "%d pakker oppgraderes." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Du må laste ned totalt %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Det kan ta flere timer å installere oppgraderingen. Så snart nedlastingen er " "ferdig, kan oppgraderingen ikke lenger avbrytes." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Det kan ta flere timer å laste ned og installere oppgraderinga. Du kan ikke " "avbryte oppgraderinga etter at nedlastinga er ferdig." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Det kan ta flere timer å fjerne pakkene. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Programvaren på denne maskina er oppdatert." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Det finnes ingen tilgjengelige oppgraderinger for systemet. Oppgraderinga " "avbrytes." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Systemet må startes på nytt" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Oppgradering er fullført, og du må starte systemet på nytt for at alt skal " "fungere skikkelig. Vil du gjøre dette nå?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapporter dette som en feil og inkluder filene /var/log/dist-" "upgrade/main.log og /var/log/dist-upgrade/apt.log i rapporten. Oppgraderinga " "er avbrutt.\n" "Den opprinnelige «sources.list»-fila ble lagret i " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Avbryter" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Nedgradert:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Trykk [ENTER] for å fortsette" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "_Fortsett [jN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detaljer [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "j" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Støttes ikke lenger: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Fjern %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Installer %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Oppgrader %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Fortsett [Jn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Du må starte maskina på nytt for å fullføre oppgraderinga.\n" "Datamaskina startes på nytt hvis du svarer «j»." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Laster ned filen %(current)li av %(total)li med %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Laster ned fil %(current)li av %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Vis framdrift for enkeltfiler" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Avbryt oppgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Fortsett oppgraderinga" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Vil du avbryte oppgraderinga?\n" "\n" "Systemet kan bli ubrukelig hvis du avbryter. Vi anbefaler på det sterkeste " "at du fortsetter." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "Start _oppgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Erstatt" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Forskjell mellom filene" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Rapporter feil" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Fortsett" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Vil du starte oppgraderinga?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Start systemet på nytt for å fullføre oppgraderinga\n" "\n" "Husk å lagre arbeidet ditt før du fortsetter." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Distribusjonsoppgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Oppgraderer Ubuntu til versjon 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Endrer kanalene for programvare" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Starter systemet på nytt" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Oppgrader" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Det har kommet en ny versjon av Ubuntu. Vil du oppgradere til denne " "versjonen?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Ikke oppgrader" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Spør meg senere" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ja, oppgrader nå" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Du har avslått å oppgradere til en ny versjon av Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Du kan oppgradere senere ved å åpne oppdateringsverktøyet og klikke på " "«Oppgrader»." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Gjør en versjonsoppgradering av hele systemet" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Du må autentisere deg for å oppgradere Ubuntu." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Utfør en deloppgradering" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Du må autentisere deg for å utføre en deloppgradering." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Vis versjon og avslutt" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Mappe som inneholder datafilene" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Kjør valgt brukergrensesnitt" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Kjører deloppgradering" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Laster ned oppgraderingsverktøyet for utgivelsen" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Sjekk om systemet kan oppgraderes til den nyeste utviklingsversjonen" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Prøv å oppgradere til den nyeste utgivelsen ved å bruke " "oppgraderingsverktøyet til $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Kjør i en spesiell oppgraderingsmodus.\n" "For øyeblikket støttes «desktop» for oppgradering av vanlige " "arbeidsstasjoner, og «server» for tjenersystemer." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Prøv ut oppgraderingen i en sandkasse (aufs testdekke)" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Sjekk bare om en ny versjonsoppgradering er tilgjengelig, og gi resultatet " "som en avslutningskode." #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Ser etter ny utgivelse av Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Din Ubuntu-utgivelse støttes ikke lenger." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Besøk følgende adresse for oppgraderingsinformasjon:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Fant ingen nye utgivelser" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Du kan ikke oppgradere til en ny utgave akkurat nå" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Du kan ikke oppgradere til en ny utgave akkurat nå. Prøv igjen senere. " "Tjeneren svarte med følgende melding: «%s»" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Den nye utgaven «%s» er tilgjengelig." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Kjør «do-release-upgrade» for å oppgradere systemet til denne." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Oppgradering til Ubuntu %(version)s er tilgjengelig" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Du har avslått å oppgradere til Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Legg til en utskrift av feilsøkingsdata" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Du må autentisere deg for å utføre en versjonsoppgradering" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Du må autentisere deg for å utføre en deloppgradering." ubuntu-release-upgrader-0.220.10/po/ky.po0000644000000000000000000013015512431225715015001 0ustar # Kirghiz translation for update-manager # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kirghiz \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ky\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/fa.po0000644000000000000000000013447512431225715014755 0ustar # Persian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: fa\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "کارگزاران برای %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "کارگزار اصلی" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "کارگزاران سفارشی" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "مدخل sources.list محاسبه نشد" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "هیچ بسته‌ای پیدا نشد، شاید این لوح اوبونتو نیست و یا معماری آن متفاوت است." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "بسته(های) '%s' در وضعیتی نا استوار است(هستند) و نیاز به نصب مجدد دارد(دارند) " "، اما هیچ بسته ای برای نصب مجدد یافت نمی شود آیا حالا مایل به حذف بسته(ها) " "برای ادامه هستید؟" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "یک مشکل حل نشدنی حین محاسبه ارتقا رخ داد:\n" "%s\n" "\n" " این می‌توانند ایجاد شده باشد به‌وسیله:\n" " * ارتقا به نگارش پیش از انتشار اوبونتو\n" " * اجرای نگارش پیش از انتشار اوبونتو در حال حاضر\n" " *بسته‌های نرم‌افزاری غیر رسمی که توسط اوبوونتو آماده نشده\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "بسته '%s' برای حذف علامتگذاری شده است اما در لیست سیاه حذفیات است." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "بسته حیاتی '%s' برای حذف علامتگذاری شده است." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "ارتقا با اتصال دوردست پشتیبانی نشده است" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "نصب sandbox شکست خورد" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "ایجاد محیط sandbox امکان پذیر نبود." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "حالت sandbox" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "غیر فعال شده بر ارتقا به %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "بسته(های) '%s' در یک وضعیت ناسازگار است و نیاز به نصب مجدد دارد، اما هیچ " "آرشیوی برای آن یافت نشد. لطفاً بسته را به صورت دستی مجدد نصب کنید یا از " "سیستم حذفش کنید." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms در حال استفاده" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "سیستم شما از مدیر حجم 'evms'در /proc/mounts استفاده می‌کند. نرم‌افزار دیگر " "'evms' پشتیبانی نیمشود، لطفا آن را خاموش کنید و هنگامی‌که تمام شد دوباره " "ارتقا را اجراکنید." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "ارتقا Sandbox با استفاده از aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "این بارگیری با یک اتصال امگی DSL حدود %s و با یک مودم ۵۶ک تقریبا %s به طول " "می‌انجامد." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/POTFILES.in0000644000000000000000000000167612431225715015600 0ustar [encoding: UTF-8] DistUpgrade/distro.py DistUpgrade/dist-upgrade.py DistUpgrade/DistUpgradeAptCdrom.py DistUpgrade/DistUpgradeCache.py DistUpgrade/DistUpgradeController.py DistUpgrade/DistUpgradeFetcher.py DistUpgrade/DistUpgradeFetcherCore.py DistUpgrade/DistUpgradeFetcherKDE.py DistUpgrade/DistUpgradeQuirks.py DistUpgrade/DistUpgradeMain.py DistUpgrade/DistUpgradeViewGtk.py DistUpgrade/DistUpgradeViewGtk3.py DistUpgrade/DistUpgradeViewKDE.py DistUpgrade/DistUpgradeView.py DistUpgrade/DistUpgradeViewText.py DistUpgrade/GtkProgress.py DistUpgrade/ReleaseNotesViewer.py DistUpgrade/ReleaseNotesViewerWebkit.py [type: gettext/glade]data/gtkbuilder/AcquireProgress.ui [type: gettext/glade]data/gtkbuilder/DistUpgrade.ui [type: gettext/glade]data/gtkbuilder/ReleaseNotes.ui [type: gettext/glade]data/gtkbuilder/UpgradePromptDialog.ui [type: gettext/xml]data/com.ubuntu.release-upgrader.policy.in do-partial-upgrade do-release-upgrade check-new-release-gtk ubuntu-release-upgrader-0.220.10/po/mn.po0000644000000000000000000013507212431225715014773 0ustar # Mongolian translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Н.Энхбат \n" "Language-Team: Mongolian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: mn\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s улсын сервер" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Төв сервер" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list бичлэгийг тооцоолж чадсангүй" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Ямар нэг багц файл олдсонгүй. Үбүнтүгийн диск биш эсвэл буруу бүтэцтэй байж " "магадгүй." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "СD-г нэмэхэд алдаа гарлаа" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Буруу төлөвт байгаа багцыг устгах" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Эвдэрхий боодол" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Таны системд эвдэрсэн боодол байгаа тул энэ прогамаар засагдахгүй. " "Үргэлжлүүлэхээс өмнө synaptic эсвэл apt-get хэрэглэн тэднийг засна уу" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Энэ бол хамгийн боломжтой тогтворгүй асуудал. Дараа дахин оролдоно уу." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Шинэчлэлийг тооцоолж чадахгүй байна" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Баталгаажуулж байгаа зарим боодолд алдаа гарлаа" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Зарим боодлыг баталгаажуулах боломжгүй байсан. Энэ магадгүй сүлжээний түр " "зуурын алдаа байсан байх. Та магадгүй хүсвэл дараа дахин оролдож болно. Доор " "баталгаажаагүй боодлуудыг харуулав." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s'-ийг суулгаж чадахгүй байна" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "meta-боодлыг таамаглаж чадахгүй байна" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Нөөцийг уншиж байна" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Онцгой түгжээг өгөх чадваргүй" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH-д тохируулахгүй үргэлжлүүлэн ажиллуулах уу?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Нэмэлт sshd ажиллаж эхлэж байна" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Шинэчлэгдэж чадахгүй байна" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "'debsig-verify' гэх боодол суусан" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Интернэтээс хамгийн сүүлийн үеийн шинэчлэлийг авах уу?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "3 дах хэсгийн үүсвэрүүд гэмтсэн байна." #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Таны эхний жагсаалт дах 3 дах хэсгийн зарим нь гэмтсэн байна. Та 'software-" "properties' хэрэгсэл болох таны багцын менежерийг сайжруулсны дараа дахин " "ажиллуулж болно." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Тохиромжгүй төлөв дэх багц" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Шинэчлэх үед алдаа гарав" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Өгсөн замыг хэрэглэн СД уншигчнаас шинэчлэх боодлыг хай" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Зөвхөн хэсэгчилсэн шинэчлэлийг гүйцэтгэнэ" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "datadir -ыг байрлуул" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/pl.po0000644000000000000000000020577012431225715014777 0ustar # Polish translation of Update Manager. # This file is distributed under the same license as the update-manager package. # Copyright (c) 2006 Sebastian Heinlein # 2007 Canonical # Polish translation by: # Zygmunt Krynicki , 2005-2006 # Tomasz Dominikowski , 2006-2008 # Wiktor Wandachowicz , 2008 # # Nazewnictwo i spójność tłumaczeń programów apt, aptitude, synaptic i innych: # http://wiki.debian.org/PolishL10N/PackageInstallers msgid "" msgstr "" "Project-Id-Version: update-manager 0.87\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-11-08 16:24+0000\n" "Last-Translator: GTriderXC \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: pl\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Serwer dla kraju %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Główny serwer" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Inne serwery" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Nie można obliczyć wpisu w sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Nie można odnaleźć żadnych plików z pakietami. Może nie jest to płyta z " "Ubuntu lub architektura komputera jest nieprawidłowa?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Nie udało się dodać płyty CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Wystąpił błąd podczas dodawania płyty CD. Aktualizacja systemu zostanie " "przerwana. Proszę zgłosić to jako błąd, jeśli jest to oficjalna płyta " "Ubuntu.\n" "\n" "Komunikat błędu jest następujący:\n" "„%s”" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Usuwanie uszkodzonego pakietu" msgstr[1] "Usuwanie uszkodzonych pakietów" msgstr[2] "Usuwanie uszkodzonych pakietów" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Pakiet \"%s\" znajduje się w niezgodnym stanie i musi zostać zainstalowany " "ponownie, ale nie odnaleziono żadnego archiwum tego pakietu. Usunąć pakiet " "teraz aby kontynuować?" msgstr[1] "" "Pakiety \"%s\" znajdują się w niezgodnym stanie i muszą zostać zainstalowane " "ponownie, ale nie odnaleziono żadnego archiwum tych pakietów. Usunąć pakiety " "teraz aby kontynuować?" msgstr[2] "" "Pakiety \"%s\" znajdują się w niezgodnym stanie i muszą zostać zainstalowane " "ponownie, ale nie odnaleziono żadnego archiwum tych pakietów. Usunąć pakiety " "teraz aby kontynuować?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Serwer może być przeciążony" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Uszkodzone pakiety" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "System zawiera uszkodzone pakiety, które nie mogły zostać naprawione. Przed " "kontynuowaniem należy je naprawić używając programu Synaptic lub apt-get." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Wystąpił nierozwiązywalny problem podczas obliczania aktualizacji:\n" "%s\n" "\n" " Może to być spowodowane przez:\n" " * aktualizowanie do testowej wersji Ubuntu,\n" " * użytkowanie bieżącej testowej wersji Ubuntu,\n" " * użytkowanie nieoficjalnych pakietów spoza repozytoriów Ubuntu.\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Wystąpiły przejściowe trudności. Proszę spróbować później." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Jeśli żadna z wymienionych sytuacji nie ma miejsca, proszę zgłosić ten błąd " "wprowadzając w terminalu polecenie „ubuntu-bug ubuntu-release-upgrader-core”." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Nie można przetworzyć aktualizacji" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Błąd uwierzytelenienia pakietów" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Uwierzytelnienie niektórych pakietów nie było możliwe. Może to oznaczać " "chwilowy błąd sieci. Można spróbować ponownie później. Poniżej znajduje się " "lista nieuwierzytelnionych pakietów." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Pakiet \"%s\" jest oznaczony do usunięcia, lecz znajduje się na liście " "pakietów, których nie należy usuwać." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Niezbędny pakiet \"%s\" jest oznaczony do usunięcia." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" "Próbowanie zainstalowania wersji „%s”, znajdującej się na czarnej liście" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Nie można zainstalować „%s”" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Zainstalowanie wymaganego pakietu było niemożliwe. Proszę zgłosić ten błąd " "wprowadzając w terminalu polecenie „ubuntu-bug ubuntu-release-upgrader-core”." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Nie można określić meta-pakietu" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "System nie zawiera pakietów ubuntu-desktop, kubuntu-desktop, xubuntu-desktop " "lub edubuntu-desktop i nie jest możliwe wykrycie używanej wersji Ubuntu.\n" " Proszę zainstalować jeden z tych pakietów używając programu Synaptic lub " "apt-get przed kontynuowaniem." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Odczytywanie pamięci podręcznej" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Nie można uzyskać blokady na wyłączność" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Zazwyczaj oznacza to, że uruchomiony jest inny program zarządzający " "pakietami (jak apt-get lub aptitude). Należy najpierw zakończyć działanie " "tego programu." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" "Aktualizacja za pośrednictwem połączenia zdalnego nie jest obsługiwana" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Uruchomiono aktualizację za pośrednictwem zdalnego połączenia ssh, przy " "użyciu interfejsu, który nie obsługuje takiego połączenia. Proszę spróbować " "aktualizacji w trybie tekstowym z opcją „do-release-upgrade”.\n" "\n" "Aktualizacja zostanie przerwana. Proszę spróbować ponownie z pominięciem " "połączenia ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Kontynuować połączenie SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Uruchomiona sesja działa z pod kontrolą ssh. Obecnie nie zaleca się " "dokonywania uaktualnień za pośrednictwem ssh, ponieważ w przypadku błędu " "przywracanie systemu może być trudniejsze.\n" "\n" "W przypadku kontynuowania, uruchomiony zostanie dodatkowy demon ssh na " "porcie „%s”.\n" "Kontynuować?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Uruchamianie dodatkowego demona sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Dodatkowy demon sshd zostanie uruchomiony na porcie '%s', aby ułatwić " "odzyskiwanie w razie problemów z bieżącą usługą ssh. W przypadku " "niepowodzenia z aktualną sesją ssh, wciąż można podłączyć się do sesji " "dodatkowej.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Jeśli używana jest zapora firewall, może okazać się konieczne tymczasowe " "otwarcie tego portu. Czynność ta jest potencjalnie niebezpieczna, dlatego " "nie zostanie wykonana automatycznie. Port może zostać otwarty między innymi " "za pomocą:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Nie można zaktualizować" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Aktualizacja z wersji \\\"%s\\\" do \\\"%s\\\" nie jest możliwa przy użyciu " "tego narzędzia." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Ustawienie trybu testowego nie powiodło się" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Utworzenie testowego środowiska nie było możliwe." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Tryb testowy" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Niniejsza aktualizacja wersji pracuje w trybie testowym (sandbox). Wszystkie " "zmiany zapisywane są do '%s' i zostaną utracone po ponownym uruchomieniu " "komputera.\n" "\n" "Od tej chwili *żadne* zmiany tworzone w katalogu systemu nie są trwałe, " "dopóki komputer nie zostanie uruchomiony ponownie." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Instalacja python jest uszkodzona. Proszę naprawić dowiązanie do " "\"/usr/bin/python\"." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pakiet \"debsig-verify\" jest zainstalowany" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Aktualizacja nie może być kontynuowana, podczas gdy ten pakiet jest " "zainstalowany.\n" "Proszę najpierw usunąć go używając programu Synaptic lub \"apt-get remove " "debsig-verify\", a następnie uruchomić ponownie aktualizację\"." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Nie można zapisać do „%s”" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Zapisywanie do katalogu systemowego „%s” nie jest możliwe. Aktualizacja " "zostanie przerwana.\n" "Aby spróbować ponownie, należy upewnić się, że dokonywanie zmian w katalogu " "systemu jest możliwe." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Dołączyć najnowsze aktualizacje z Internetu?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "System aktualizacji może połączyć się z internetem, aby automatycznie pobrać " "i zainstalować najnowsze aktualizacje. Jeśli masz połączenie sieciowe, jest " "to opcja zalecana.\n" "\n" "Aktualizacja zabierze trochę czasu, ale gdy zostanie zakończona, system " "będzie w pełni aktualny. Można tego zaniechać, jednak zalecana jest " "instalacja najnowszych aktualizacji.\n" "Jeśli teraz odpowiesz \"NIE\", sieć nie zostanie użyta." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "wyłączony podczas aktualizacji do %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nie odnaleziono poprawnego serwera lustrzanego" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Podczas przetwarzania informacji o repozytoriach nie odnaleziono wpisu " "serwera lustrzanego do aktualizacji. Może się tak zdarzyć, gdy używamy " "wewnętrznego serwera lustrzanego lub jeśli informacje o serwerach są " "nieaktualne.\n" "\n" "Przepisać plik \"sources.list\" mimo to? Wybranie \"Tak\" oznacza " "aktualizację wszystkich wpisów \"%s\" do \"%s\".\n" "Wybranie \"Nie\" anuluje aktualizację." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Wygenerować domyślne źródła?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Podczas przetwarzania informacji o repozytoriach nie odnaleziono poprawnego " "wpisu dla \"%s\".\n" "\n" "Dodać domyślne wpisy dla \"%s\"? Wybranie \"Nie\" przerwie aktualizację." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Błędne informacje o repozytoriach" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "W wyniku uaktualnienia informacji o repozytoriach, uzyskano nieprawidłowy " "plik. Uruchomiono proces zgłaszania błędów." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Źródła niezależnych dostawców zostały wyłączone" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Niektóre wpisy niezależnych dostawców w pliku \"sources.list\" zostały " "wyłączone. Można ponownie je włączyć po aktualizacji używając narzędzia " "\"software-properties\" lub programu Synaptic." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pakiet w niezgodnym stanie" msgstr[1] "Pakiety w niezgodnym stanie" msgstr[2] "Pakiety w niezgodnym stanie" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Pakiet \"%s\" znajduje się w niezgodnym stanie i musi zostać zainstalowany " "ponownie, ale nie odnaleziono żadnego archiwum tego pakietu. Proszę " "zainstalować pakiet ręcznie lub usunąć go z systemu." msgstr[1] "" "Pakiety \"%s\" znajdują się w niezgodnym stanie i muszą zostać zainstalowane " "ponownie, ale nie odnaleziono żadnego archiwum tych pakietów. Proszę " "zainstalować pakiety ręcznie lub usunąć je z systemu." msgstr[2] "" "Pakiety \"%s\" znajdują się w niezgodnym stanie i muszą zostać zainstalowane " "ponownie, ale nie odnaleziono żadnego archiwum tych pakietów. Proszę " "zainstalować pakiety ręcznie lub usunąć je z systemu." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Błąd podczas aktualizacji" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Wystąpił problem podczas aktualizacji. Zazwyczaj wynika to z problemów z " "siecią, proszę sprawdzić połączenie sieciowe i spróbować ponownie." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Zbyt mało miejsca na dysku" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Aktualizacja została przerwana. Aktualizacja wymaga ogółem %s wolnego " "miejsca na dysku \"%s\". Proszę uwolnić przynajmniej %s dodatkowego wolnego " "miejsca na \"%s\". Należy opróżnić kosz i usunąć tymczasowe pakiety z " "poprzednich instalacji używając polecenia \"sudo apt-get clean\"." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Przetwarzanie zmian" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Rozpocząć aktualizację?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Aktualizacja anulowana" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Aktualizacja zostanie teraz anulowana, a system przywrócony do pierwotnego " "stanu. W późniejszym czasie można ponowić próbę aktualizacji wydania." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Pobranie aktualizacji było niemożliwe" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Proces aktualizacji został przerwany. Proszę sprawdzić stan połączenia " "sieciowego lub nośników instalacyjnych i spróbować ponownie. Wszystkie " "dotychczas pobrane pliki zostały zachowane." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Błąd podczas zatwierdzania" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Przywracanie pierwotnego stanu systemu" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Nie można zainstalować aktualizacji" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Aktualizacja została przerwana. System może znajdować się w stanie " "nienadającym się do użytku. Zostanie teraz uruchomione odzyskiwanie (dpkg --" "configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Proszę zgłosić ten błąd poprzez przeglądarkę internetową, pod adresem: " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Aktualizacja została przerwana. Proszę sprawdzić połączenie internetowe lub " "nośnik instalacyjny i spróbować ponownie. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Usunąć przestarzałe pakiety?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Zachowaj" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Usuń" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "Wystąpił problem podczas czyszczenia. Więcej informacji poniżej. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Wymagana zależność nie jest zainstalowana." #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Wymagana zależność \"%s\" nie jest zainstalowana. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Sprawdzanie menedżera pakietów" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Przygotowanie aktualizacji nie powiodło się" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Przygotowanie systemu do aktualizacji nie powiodło się. Zostanie uruchomiony " "proces raportowania błędów." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Pobranie elementów wymaganych do aktualizacji nie powiodło się" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Nie odnaleziono wszystkich potrzebnych informacji do aktualizacji systemu. " "Proces zostanie przerwany, a system powróci do pierwotnego stanu.\n" "\n" "Następnie uruchomiony zostanie proces raportowania błędów." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Aktualizowanie informacji o repozytoriach" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Dodanie CD-ROM nieudane" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Dodanie napędu CD-ROM zakończone niepowodzeniem" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Błędne informacje o pakietach" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Po aktualizacji informacji o pakietach, wymagany pakiet '%s' nie został " "znaleziony. Może to być spowodowane tym, że w Twoich źródłach oprogramowania " "nie ma zawartych oficjalnych serwerów lustrzanych lub tym, że te, których " "używasz są przeciążone. Przejrzyj /etc/apt/sources.list, by zobaczyć " "aktualną listę skonfigurowanych źródeł oprogramowania.\n" "W przypadku przeciążenia serwerów lustrzanych, warto spróbować uaktualnienia " "później." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Pobieranie" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Aktualizacja w toku" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Aktualizacja ukończona" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Aktualizacja została zakończona, lecz wystąpiły błędy podczas tego procesu." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Wyszukiwanie przestarzałego oprogramowania" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Aktualizacja systemu zakończona powodzeniem." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Częściowa aktualizacja została ukończona" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Nie można było odnaleźć informacji o wydaniu" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Serwer może być przeciążony. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Pobranie informacji o wydaniu było niemożliwe" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Proszę sprawdzić połączenie sieciowe." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "uwierzytelnianie '%(file)s' przed '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "Wypakowywanie '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Nie można było uruchomić narzędzia aktualizacji" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Prawdopodobnie wystąpił błąd narzędzia aktualizacji. Proszę zgłosić go, " "używając komendy \"ubuntu-bug ubuntu-release-upgrader-core\"" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Podpis narzędzia aktualizacji" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Narzędzie aktualizacji" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Pobieranie nie powiodło się" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Pobieranie aktualizacji nie powiodło się. Może to oznaczać problem z siecią. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Uwierzytelnienie nie powiodło się" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Uwierzytelnienie aktualizacji nie powiodło się. Mógł wystąpić problem z " "siecią lub z serwerem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Rozpakowywanie nie powiodło się" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Rozpakowywanie aktualizacji nie powiodło się. Mógł wystąpić problem z siecią " "lub z serwerem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Weryfikacja nie powiodła się" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Weryfikacja aktualizacji nie powiodła się. Mógł wystąpić problem z siecią " "lub z serwerem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Nie można rozpocząć aktualizacji" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Taka sytuacja ma najczęściej miejsce w systemie gdzie katalog /tmp jest " "zamontowany z opcją noexec. Proszę zamontować go ponownie bez opcji noexec i " "uruchomić aktualizację ponownie." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Treść komunikatu błędu: \\\"%s\\\"" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Aktualizuj" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Informacje o wydaniu" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Pobieranie dodatkowych plików pakietów..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Plik %s z %s z prędkością %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Plik %s z %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Proszę włożyć \"%s\" do napędu \"%s\"" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Zmiana nośnika" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "EVMS w użyciu" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Twój system używa managera woluminów EVMS w /proc/mounts. Oprogramowanie " "EVMS nie jest więcej wspierane. W związku z tym należy je wyłączyć i " "zaktualizować, a po jej zakończeniu włączyć go ponownie." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "W Ubuntu 13.04 urządzenia grafiki tego komputera mogą nie być w pełni " "obsługiwane." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Używanie środowiska Unity może spowodować niepełną obsługę zasobów grafiki " "tego komputera. Aktualizacji wersji systemu operacyjnego mogą zakończyć się " "niesatysfakcjonującym wynikiem w postaci spowolnionej reakcji komputera. " "Tymczasowo zalecane jest zachowanie wersji LTS. Więcje informacji na " "stronie: https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Czy " "pomimo to kontynuować proces aktualizacji?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Bieżąca karta graficzna może nie być w pełni obsługiwana przez Ubuntu 12.04 " "LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Obsługa obecnej w komputerze karty graficznej Intel w Ubuntu 12.04 LTS jest " "ograniczona i mogą wystąpić z nią problemy po przeprowadzeniu aktualizacji. " "Aby uzyskać więcej informacji, proszę odwiedzić stronę " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Kontynuować " "aktualizację?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Aktualizacja może ograniczyć wydajność systemu dla efektów pulpitu, gier " "oraz innych programów obciążających zasoby graficzne." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Komputer korzysta ze sterownika grafiki NVIDIA \"nvidia\". Brak wersji " "sterownika z którą współpracowałby ten sprzęt w Ubuntu 10.04 LTS.\n" "\n" "Kontynuować?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Komputer korzysta ze sterownika grafiki AMD \"fglrx\". Brak wersji " "sterownika z którą współpracowałby ten sprzęt w Ubuntu 10.04 LTS.\n" "\n" "Kontynuować?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Brak procesora o architekturze i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Twój system używa procesora o architekturze i586 lub twój procesor nie " "posiada rozszerzenia 'cmov'. Wszystkie pakiety zostały zbudowane w oparciu o " "optymalizacje wymagające minimum architektury i686. Na tym sprzęcie " "niemożliwa jest aktualizacja twojego systemu do nowego wydania Ubuntu." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Brak procesora ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ten system korzysta z procesora ARM o architekturze starszej niż ARMv6. " "Optymalizacje wszystkich pakietów w wydaniu Karmic wymagają minimalnie " "architektury ARMv6. Nie ma możliwości aktualizacji systemu do nowego wydania " "na tym sprzęcie." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Brak dostępnego procesu init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Wygląda na to, że system jest uruchomiony w środowisku wirtualnym bez " "procesu init, np. Linux-VServer. System Ubuntu 10.04 LTS nie może pracować z " "tym typem środowiska, wymagając najpierw aktualizacji konfiguracji maszyny " "wirtualnej." #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Aktualizacja testowa używając aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Użycie podanej ścieżki do wyszukiwania CD-ROMu z pakietami aktualizacyjnymi" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Użycie nakładki graficznej. Obecnie dostępne: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*PRZESTARZAŁE* ta opcja zostanie zignorowana" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Wykonaj tylko częściową aktualizację (bez nadpisywania sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Wyłącz wsparcie ekranu GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Ustaw ścieżkę do danych" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Pobieranie zakończone" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Pobieranie %li pliku z %li z prędkością %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Pozostało około %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Pobieranie pliku %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Zatwierdzanie zmian" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemy z zależnościami - pozostawiony nieskonfigurowany" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Nie można było zainstalować \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Aktualizacja będzie kontynuowana, ale pakiet \"%s\" może znajdować się w " "stanie nienadającym się do pracy. Proszę rozważyć zgłoszenie raportu błędu " "na ten temat." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Zastąpić własny plik konfiguracji\n" "\"%s\"?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Zostaną utracone wszystkie zmiany wprowadzone w tym pliku konfiguracyjnym, " "jeśli zostanie wybrana jego zamiana na nowszą wersję." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Polecenie \"diff\" nie zostało odnalezione" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Wystąpił błąd krytyczny" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Proszę wypełnić raport błędu (jeśli nie zostało to jeszcze zrobione) i " "dołączyć w nim pliki var/log/dist-upgrade/main.log i /var/log/dist-" "upgrade/apt.log. Aktualizacja została przerwana.\n" "Pierwotny plik sources.list został zapisany w " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Wciśnięto Ctrl-C" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Działanie zostanie przerwane i może pozostawić system w uszkodzonym stanie. " "Na pewno chcesz to zrobić?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Aby zapobiec utracie danych proszę zamknąć wszystkie otwarte programy i " "dokumenty." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Już nie jest wspierane przez firmę Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Zainstaluj poprzednią wersję (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Usuń (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Już nie jest potrzebne (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Zainstaluj (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Zaktualizuj (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Wyświetl różnicę >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Ukryj różnicę" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Wystąpił błąd" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Anuluj" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Zakończ" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Wyświetl terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Ukryj terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informacje" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Szczegóły" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Już nie jest obsługiwane (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Usuń %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Usuń (było automatycznie zainstalowane) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instaluj %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Aktualizuj %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Wymagane ponowne uruchomienie komputera" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Uruchom ponownie komputer w celu zakończenia aktualizacji" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Uruchom ponownie" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Czy przerwać bieżącą aktualizację ?\n" "\n" "System może utracić stabilność jeśli przerwiesz aktualizację. Wskazane jest " "wznowienie aktualizacji." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Anulować aktualizację?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dzień" msgstr[1] "%li dni" msgstr[2] "%li dni" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li godzina" msgstr[1] "%li godziny" msgstr[2] "%li godzin" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuta" msgstr[1] "%li minuty" msgstr[2] "%li minut" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekunda" msgstr[1] "%li sekundy" msgstr[2] "%li sekund" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Pobieranie potrwa około %s używając połączenia 1 Mbit DSL lub około %s " "używając połączenia modemowego 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Pobieranie może potrwać około %s w przypadku tego łącza. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Przygotowywanie do aktualizacji" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Pobieranie nowych kanałów oprogramowania" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Pobieranie nowych pakietów" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Instalowanie aktualizacji" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Czyszczenie" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d zainstalowany pakiet nie jest już obsługiwany przez firmę " "Canonical. Nadal można uzyskać wsparcie od społeczności." msgstr[1] "" "%(amount)d zainstalowane pakiety nie są już obsługiwane przez firmę " "Canonical. Nadal można uzyskać wsparcie od społeczności." msgstr[2] "" "%(amount)d zainstalowanych pakietów nie jest już obsługiwanych przez firmę " "Canonical. Nadal można uzyskać wsparcie od społeczności." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakiet zostanie usunięty." msgstr[1] "%d pakiety zostaną usunięte." msgstr[2] "%d pakietów zostanie usuniętych." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nowy pakiet zostanie zainstalowany." msgstr[1] "%d nowe pakiety zostaną zainstalowane." msgstr[2] "%d nowych pakietów zostanie zainstalowanych." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakiet zostanie zaktualizowany." msgstr[1] "%d pakiety zostaną zaktualizowane." msgstr[2] "%d pakietów zostanie zaktualizowanych." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Konieczne pobranie w sumie %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Aktualizowanie systemu może potrwać kilka godzin. Procesu nie będzie można " "anulować po zakończeniu pobierania danych." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Pobieranie i aktualizowanie systemu może potrwać kilka godzin. Procesu nie " "będzie można anulować po zakończeniu pobierania danych." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Usuwanie pakietów może potrwać kilka godzin. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Oprogramowanie tego komputera jest w pełni zaktualizowane" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Brak dostępnych aktualizacji. Aktualizacja zostanie anulowana." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Wymagane ponowne uruchomienie komputera" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Aktualizacja została ukończona i należy ponownie uruchomić komputer. " "Uruchomić ponownie teraz?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Proszę wypełnić raport błędu i dołączyć do niego pliki /var/log/dist-" "upgrade/main.log i /var/log/dist-upgrade/apt.log. Aktualizacja została " "przerwana.\n" "Pierwotny plik sources.list został zapisany w " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Anulowanie" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Zdegradowane:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Aby kontynuować, naciśnij ENTER" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Kontynuuj [tN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Szczegóły [s]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "t" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "s" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Już nie jest obsługiwane: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Usuń: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instaluj: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Aktualizuj: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Kontynuować [Tn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Aby ukończyć aktualizację należy uruchomić ponownie komputer.\n" "Po wybraniu \"t\" komputer zostanie uruchomiony ponownie." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Pobieranie pliku %(current)li z %(total)li z prędkością %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Pobieranie pliku %(current)li z %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Postęp pobierania poszczególnych plików" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Przerwij aktualizację" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Wznów aktualizację" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Przerwać trwającą aktualizację?\n" "\n" "System może stać się niezdatny do użytku jeśli aktualizacja zostanie " "przerwana. Zalecane jest kontynuowanie aktualizacji." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Rozpocznij aktualizację" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Zas_tąp" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Różnice pomiędzy plikami" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "Zgłoś _błąd" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "K_ontynuuj" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Rozpocząć aktualizację?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Uruchom ponownie komputer w celu zakończenia aktualizacji\n" "\n" "Proszę zapisać swoją pracę przed kontynuacją." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Aktualizacja dystrybucji" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Aktualizacja wersji Ubuntu do wersji 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Ustawianie nowych kanałów oprogramowania" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Ponowne uruchamianie komputera" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Aktualizuj" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Nowa wersja Ubuntu jest dostępna. Dokonać aktualizacji?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Nie aktualizuj" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Spytaj później" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Tak, zaktualizuj teraz" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Zrezygnowano z aktualizacji do nowego wydania Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Można podjąć aktualizację później, otwierając program Aktualizacje " "oprogramowania i klikając przycisk „Zaktualizuj”." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Zaktualizuj wydanie" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Aby zaktualizować Ubuntu, musisz podać hasło." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Zaktualizuj wydanie częściowo" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Aby przeprowadzić częściową aktualizację, musisz podać hasło." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Wypisuje informacje o wersji i kończy" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Katalog zawierający pliki danych" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Uruchom określoną nakładkę" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Częściowa aktualizacja w toku" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Pobieranie narzędzia aktualizacji wydania" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Sprawdź możliwość aktualizacji do najnowszej wersji testowej" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Zaktualizuj do najnowszej wersji, używając aktualizatora z $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Uruchom w specjalnym trybie aktualizacji.\n" "Obecnie obsługiwane są tryby \"desktop\" dla komputerów biurkowych i " "\"server\" dla aktualizacji serwerów." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Aktualizacja testowa z nakładką sandbox aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Sprawdź tylko, czy nowa wersja dystrybucji jest dostępna i przekaż rezultat " "poprzez kod wyjścia" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Sprawdzanie dostępności nowego wydania Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Bieżące wydanie Ubuntu nie jest już obsługiwane." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Aby uzyskać informacje o aktualizacji, proszę odwiedzić adres:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Nie odnaleziono nowego wydania" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Zaktualizowanie wydania jest teraz niemożliwe" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Aktualizacja dystrybucji nie może zostać wykonana, proszę spróbować później. " "Komunikat serwera: \"%s\"" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Dostępne nowe wydanie „%s”" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Proszę uruchomić \"do-release-upgrade\", aby zaktualizować." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Dostępna jest aktualizacja do Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Zrezygnowano z aktualizacji do Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Dodaj informacje wyjściowe debugowania" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Wymagane jest uwierzytelnienie w celu zaktualizowania wydania" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "" #~ "Wymagane jest uwierzytelnienie w celu częściowego zaktualizowania wydania" ubuntu-release-upgrader-0.220.10/po/kn.po0000644000000000000000000013103512431225715014764 0ustar # Kannada translation for update-manager # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2008. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Vogt \n" "Language-Team: Kannada \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: kn\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s ಗಾಗಿ ಸರ್ವರ್" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "ಮುಖ್ಯ ಸರ್ವರ್" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "ವಿಶೇಷ ಸರ್ವರ್ ಗಳು" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "server.list ಅನ್ನು ಲೆಕ್ಕ ಹಾಕಲಾಗಲಿಲ್ಲ" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "ಈ ತೊಂದರೆ ಬಹುತೇಕ ಕ್ಷಣಿಕವಾದದ್ದು, ನಂತರ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s'ನ್ನು ಸಂಸ್ಥಾಪಿಸಲು ಆಗುವುದಿಲ್ಲ" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/an.po0000644000000000000000000014043712431225715014760 0ustar # Aragonese translation for update-manager # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Daniel Martinez \n" "Language-Team: Aragonese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: an\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Servidor ta %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Servidor prencipal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Servidors presonalizaus" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "No se puet calcular a dentrada sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Imposible localizar garra paquete, a lo millor no ye un disco d'Ubuntu u no " "ye l'arquitectura correcta" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Error al adibir o CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Ha habiu una error al adibir o CD; s'ha aturau a instalación. Por favor , " "informe d'isto como un fallo si iste ye ye un CD valido d'Ubuntu.\n" "O mensache d'error estió:\n" "«%s»" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Eliminar paquete en mal estau" msgstr[1] "Eliminar paquetes en mal estau" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "O paquete «%s» ye en un estau inconscién y ha de reinstalar-se, pero no se " "puet trobar garra archivo ta él. Deseya eliminar iste paquete agora ta " "continar?" msgstr[1] "" "Os paquetz «%s» son en un estau inconscién y han de reinstalar-se, pero no " "se puet trobar garra archivo ta ellos. Deseya eliminar istos paquetes agora " "ta continar?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "O servidor puet estar sobrecargau" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paquetz crebaus" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "O suyo sistema ha paquetz crebaus que no pueden ser apanyaus con iste " "software. Por favor, apanyelos primero emplegando Synaptic o apt-get antis " "de continar." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Ha ocurriu una error irresoluble tanimientres se calculaba l'actualización\n" "%s\n" "Isto puet deber-se a:\n" "* Que se ye actualizando a una versión d'Ubuntu encara no publicada\n" "* Que se ye emplegando l'actual versión encara no plicada d'Ubuntu\n" "* Paquetz de software no oficials, no suministraus por Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Probablemén siga un problema pasachero, prebe de nuevo mas tardi." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "No s'ha puesto calcular l'esvielle" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Error autenticando bels paquetz" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "No ha estau capable autenticar bels paquetz. Isto puet estar debiu a un " "problema pasachero en o rete. prebe de nuevo mas tardi. veiga abaixo un " "listau d'os paquetz no autenticaus." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "O paquet «%s» ye marcau ta desinstalar-se pero ye en a lista negra de " "desinstalación" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "O paquet esencial «%s» ha estau marcau ta la suya desinstalación" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Prebando d'instalar a versión vedada «%s»" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "No se ha puesto instalar «%s»" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "No s'ha puesto determinar o meta-paquet" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "O suyo sistema no ha o paquet ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop u edubuntu-desktop, y no ha estau capable detectar que versión " "d'Ubuntu ye echecutando\n" "Por favor, instale uno d'os paquetz anteriors emplegando Synaptic o apt-get " "antis de prencipiar." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Leyindo caché" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "No s'ha puesto obtener un bloqueo exclusivo" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Isto normalmén significa que ya se ye echecutando atra aplicación de " "chestión de paquetz (como apt-get u aptitude). Por favor, zarre ixa " "aplicación en primeras." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Actualizando sobre conixión lexana no soportada" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Ye echecutando l'esvielle dencima d'una conexión ssh lexana con una interfaz " "d'usuario que no en permite. Prebe d'actualizar en modo texto con «do-" "release-upgrade».\n" "L'esvielle s'aturará agora. Prebe sin de ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "¿Continar a echecución baixo SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Ista echecución parix estar echecutandose baixo ssh. No ye recomendable fer " "un esvielle sobre ssh actualmént, porque si bi ha un fallo ye muito dificil " "de recuperar.\n" "Si contina, escomencipiará un diaple ssh adicinal en o puerto «%s».\n" "¿Deseya continar?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Prencipiando sshd adicional" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Ta facilitar a recuperación si bi ha fallo, prencipiará un ssh adicional en " "o puerto «%s». Si bella cosa va mal con o ssh en echecución, encara podrá " "conectar-se a o puerto adicional.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "No se puet esviellar" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Ista aina no soporta esvielles de «%s» a «%s»." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Falló a configuración d'a caixa d'arena" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "No s'ha puesto creyar un entorno de caixa d'arena" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Modo caixa d'arena" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "A suya instalación de python ye danyada. Faiga a favor, atecle l'enrrastre " "simbolico «/usr/bin/python»." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "O paquet «debsig-verify» ye instalau" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "L'esvielle no puet continar con ixe paquet instalau." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "¿Anyadir as zagueras actualizacións dende internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "O sistema d'esvielle a una nueva versión puet emplegar internet ta descargar " "automáticament esvielles más recientz y instalarlas mientres o proceso.si ha " "una conexión o rete, isto en ye prou recomendable.\n" "\n" "L'esvielle llevará más tiempo, pero una vegada rematada, o sistema bi será " "esviellau de raso. Puet eslechir no fer-lo, pero deberá instalar os nuevos " "esvielles a l'inte de pasar a la nueva versión.\n" "Si responde «no» agora, o rete no se emplegará ta brenca." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "(desactivau en l'esvielle a %s)" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Esviellar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ta.po0000644000000000000000000013624312431225715014766 0ustar # Tamil translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: mano-மனோ \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ta\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s விற்கான சேவையகம்" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "மெயின் சர்வர்" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "தனிபயன் சேவையகங்கள்" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Sources.list நுழைவு கணக்கிட முடியவில்லை" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "எந்த தொகுப்பு கோப்புகளையும் கண்டுபிடிக்க முடியவில்லை, ஒருவேளை இந்த ஒரு " "உபுண்டு டிஸ்க் அல்ல அல்லது தவறான கட்டமைப்பு" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "குறுவட்டு சேர்க்க தோல்வி" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "மோசமான நிலையில் இருக்கும் தொகுப்பை நீக்கவும்" msgstr[1] "மோசமான நிலையில் இருக்கும் தொகுப்புகளை நீக்கவும்" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "சர்வர் ஓவர்லோட் இருக்கலாம்" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "சிதைந்த தொகுப்புகள்" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "உங்கள் கணினியை இந்த மென்பொருள் மூலம் சரி செய்யப்பட்டது முடியாது அந்த உடைந்த " "தொகுப்புகளை கொண்டிருக்கிறது. இன்னும் முதல் இணைவளைவு அல்லது முன் apt-get " "பயன்படுத்தி சரி செய்யவும்." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "இது பெரும்பாலும் ஒரு நிலையற்ற பிரச்சனை, பின்னர் மீண்டும் முயற்சி செய்யுங்கள்." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "சிலத் தொகுப்புகளை அங்கீகரிப்பதில் பிழை" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' நிறுவமுடியவில்லை" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "மேம்படுத்த முடியவில்லை" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "புதுப்பிக்கும் பொழுது பிழை ஏற்பட்டுள்ளது" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "வட்டில் போதுமான காலி இடம் இல்லை" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "மேம்பாடு ரத்து செய்யப்பட்டுள்ளது" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "மேம்பாடுகளைப் பதிவிறக்க முடியவில்லை" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "மேம்பாடுகளை நிறுவ முடியவில்லை" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "வைத்துக்கொள்க (_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "நீக்குக (_R)" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "களஞ்சியத்தின் தகவல் புதுப்பிக்கப்படுகிறது" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "தவறான தொகுப்பு தகவல்" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "மேம்படுத்துகிறது" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "மேம்படுத்துதல் முடிவடைந்தது" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "கணிணி மேம்பாடு முடிந்தது." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' நிறுவ முடியவில்லை" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "'diff' என்ற கட்டளை இல்லை" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s நிறுவு" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s மேம்படுத்து" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "மறு தொடக்கம் தேவைப்படுகிறது" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/sco.po0000644000000000000000000013426212431225715015145 0ustar # Scots translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Scots \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Main server" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Custom servers" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Couldna calculate sources.list entry" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Unable tae find ony package files, perhaps this isnae a Ubuntu Disc or the " "wrang architecture?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Failed tae add the CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "There wus a error addin the CD, the upgrade wull abort. Please report this " "as a bug if this is a legit Ubuntu CD.\n" "\n" "The error message wus:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Remove package in bad state" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "The package '%s' is in a jiggert state an hus tae be reinstalled, but nae " "archive cun be fun fur it. Dae ye want tae remove it noo tae continue?" msgstr[1] "" "The packages '%s' ur in a jiggert state an huv tae be reinstalled, but nae " "archive cun be fun fur it. Dae ye want tae remove it noo tae continue?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "The server mey be overloaded" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Browkn Packages" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Yur system hus browkn packages that couldnay be sortet wae this software. " "Please fix 'em first using synaptic or apt-get afore gan on." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "An unresolvable problem uccured while calculatin the upgrade:\n" "%s\n" "\n" " This cun be caused by:\n" " * Upgradin tae a pre-release version o Ubuntu\n" " * Runnin the current pre-release version o Ubuntu\n" " * Unofficial software packages no provided by Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "This is mæ'st likely tae be a transient problem, try it again later." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Couldnae calculate the upgrade" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Error authenticatin some o the packages" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "It wusnae possible tae authenticate some o the packages. This might be a " "transient network problem. Ye might want tae try it again later. See below " "fur a list o unauthenticated packages." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "The packæ'ge '%s' is marked fur removal but it's in the removal blacklist." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Continue runnin uner SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Starting additional sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Cannae upgrade" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sanbox setup failed" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "It wisnae possible tae create the sandbox environment." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox mode" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Package 'debsig-verify' is installed" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Include latest updates fae the Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "disabled on upgrade tae %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nae valid mirror fun" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Generate default sources?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Repository information invalid" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Third party sources disabled" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Some third party entries in yer sources.list were disabled. Ye cun re-enable " "them after the upgrade wae the 'software-properies' tool or yer package " "manager." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Package in jiggert state" msgstr[1] "Packages in jiggert state" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/hy.po0000644000000000000000000013023712431225715014777 0ustar # Armenian translation for update-manager # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2010. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Serj Safarian \n" "Language-Team: Armenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: hy\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Հիմնակամ սպասարկիչ" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/gl.po0000644000000000000000000020036312431225715014757 0ustar # translation of gl.po to galician # translation of update-manager-gl.po to galician # This file is distributed under the same license as the update-manager package. # Copyright (c) 2004 Canonical # 2004 Michiel Sikkes # Mar Castro , 2006. # msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-06-26 08:47+0000\n" "Last-Translator: Marcos Lans \n" "Language-Team: galician\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Servidor desde %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Servidor principal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Servidores personalizados" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Non e posíbel calcular a entrada do sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Non é posíbel localizar ningún ficheiro de paquete; se cadra este non é un " "disco de Ubuntu ou a arquitectura non é a correcta." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Non foi posíbel engadir o CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Produciuse un erro ao engadir o CD e hai que cancelar a anovación. Informe " "deste erro se se trata dun CD correcto de Ubuntu.\n" "\n" "A mensaxe de erro foi:\n" "«%s»" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Retirar o paquete en mal estado" msgstr[1] "Retirar os paquetes en mal estado" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "O paquete «%s» ten un estado inconsistente e precisa ser reinstalado pero " "non se atopa ningún ficheiro para facelo. Quere eliminar este paquete e " "continuar?" msgstr[1] "" "Os paquetes «%s» teñen un estado inconsistente e precisan ser reinstalados " "pero non se atopa ningún ficheiro para facelo. Quere eliminar estes paquetes " "e continuar?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "O servidor quizais estea saturado" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paquetes rotos" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "O seu sistema contén paquetes rotos que non poden ser arranxados con este " "software. Por favor, arránxeos primeiro usando Synaptic ou apt-get antes de " "continuar." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Un problema irresolúbel ocorreu mentres se calculaba a anovación:\n" "%s\n" " Isto pode ser causado por:\n" " * Anovar desde unha versión de prelanzamento de Ubuntu\n" " * Executar a versión actual de prelanzamento de Ubuntu\n" " * Paquetes de software non oficiais non fornecidos por Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Trátase, o máis seguro, dun problema temporal. Ténteo máis tarde." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Se ningún destes se pode aplicar, informe de este erro usando a orde «ubuntu-" "gub ubuntu-release-upgrade-core» no seu terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Non foi posíbel calcular a anovación" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Produciuse un erro ao autenticar algúns paquetes" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Non foi posíbel autenticar algúns paquetes. Isto pode ser debido a un " "problema transitorio na rede. Probe de novo máis tarde. Vexa abaixo unha " "lista dos paquetes non autenticados." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "O paquete «%s» está marcado para a súa eliminación pero está na lista negra " "de paquetes eliminábeis." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "O paquete esencial «%s» está marcado para a súa eliminación" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Tentando instalar a versión da lista negra «%s»" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Non foi posíbel instalar «%s»" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Non foi posíbel instalar un paquete requirido. Informe deste erro usando " "«ubuntu-bug ubuntu-release-upgrade-core» no seu terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Non foi posíbel determinar o meta-paquete" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "O seu sistema non contén os paquetes ubuntu-desktop, kubuntu-desktop ou " "edubuntu-desktop e non foi posíbel detectar cal é a versión de ubuntu que se " "está a executar.\n" " Instale un dos paquetes mencionados usando synaptic ou apt-get antes de " "continuar." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Lendo a caché" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Foi imposíbel obter un bloqueo exclusivo" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Isto normalmente significa que outro xestor de paquetes (como apt-get ou " "aptitude) xa se está executando. Peche este aplicativo antes de continuar." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "A actualización mediante unha conexión remota non é posíbel" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Está executando a anovación a través dunha conexión SSH cunha interface que " "non é compatíbel con esta. Por favor, tente unha anovación en modo de texto " "con «do-release-upgrade».\n" "\n" "A anovación vai ser cancelada agora. Por favor, ténteo sen ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Continuar a execución con SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Esta sesión semella estar executandose baixo SSH. Na actualidade non se " "recomenda facer unha anovación a través de ssh porque no caso de fracaso, é " "máis difícil de recuperar.\n" "\n" "Se continúa, iniciarase un daemon ssh adicional no porto «%s».\n" "Desexa continuar?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Iniciando un sshd adicional" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Para que resulte máis doada a recuperación no caso de fallo, iniciarase un " "sshd adicional no porto «%s». Se algo sae mal co ssh en execución, aínda " "poderá conectarse co adicional.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Se executa unha devasa, pode necesitar abrir este porto temporalmente. Como " "isto é potencialmente perigoso, non se fai automaticamente. Pode abrir o " "porto con, p.ex.:\n" "«%s»" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Non é posíbel anovar" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Con esta ferramenta non se pode anovar de «%s» a «%s»" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "A configuración da zona de probas fallou" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Non foi posíbel crear o contorno da zona de probas." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Modo zona de probas" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Esta anovación está executándose en modo «caixa de area» (proba). Todos os " "cambios escribiránse en «%s» e perderanse no seguinte \n" "\n" "Os cambios no sistema de ficheiros serán permanentes ate que reinicie." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "A súa instalación de Python é defectuosa. Arranxe a ligazón simbólica " "«/usr/bin/python»." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "O paquete «debsig-verify» está instalado" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "A anovación non pode continuar con ese paquete instalado.\n" "Retíreo con synaptic ou «apt-get remove debsig-verify» primeiro e faga a " "anovación de novo." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Non é posíbel escribir en «%s»" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Non é posíbel escribir no directorio do sistema «%s» deste sistema. A " "actualización non pode continuar.\n" "Comprobe que se pode escribir no directorio do sistema." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Incluír as actualizacións máis recentes desde a Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "O sistema de anovación pode descargar automaticamente as actualizacións máis " "recentes da Internet e instalalas durante a anovación. Se ten unha conexión " "de banda larga, isto é moi recomendábel.\n" "\n" "A anovación levará máis tempo, mais unha vez rematada, o seu sistema estará " "completamente actualizado. Pode escoller non facelo, mais debería instalar " "as actualizacións máis recentes antes de actualizar o sistema.\n" "Se dis que «non» aquí, non se usará a conexión para nada." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "desactivado na anovación a %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Non se atopou ningunha réplica correcta" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Non se atopou unha entrada na réplica para a anovación ao examinar a " "información do repositorio. Isto pode acontecer se se executa unha réplica " "interna ou se a información da réplica estivera anticuada.\n" "\n" "Quere substituír «sources.list» igual? Se escoller «Si» aquí, actualizaranse " "todas as entradas «%s» a «%s».\n" "Se seleccionar «Non», cancelarase a actualización." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Xerar as fontes predeterminadas?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Unha vez examinado «sources.list», non se atopou ningunha entrada correcta " "para «%s».\n" "\n" "Deberíanse engadir as entradas por omisión de «%s»? Se escolle «Non», " "anularase a anovación." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "A información do repositorio non é correcta" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "A anovación da información do respositoriu produciu un ficheiro erróneo, " "polo que se está a iniciar un proceso de informe de erros." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Orixes de terceiros desactivadas" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Desactiváronse algunhas entradas de terceiras partes no seu sources.list. " "Pódeas volver a activar coa ferramenta «software-properties» ou co xestor de " "paquetes." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paquete en estado inconsistente" msgstr[1] "Paquetes en estado inconsistente" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "O paquete «%s» ten un estado inconsistente e precisa ser reinstalado pero " "non se atopa ningún ficheiro para facelo. Reinstale o paquete manualmente ou " "elimíneo do sistema." msgstr[1] "" "Os paquetes «%s» teñen un estado inconsistente e precisan ser reinstalados " "pero non se atopa ningún ficheiro para facelo. Reinstale os paquete " "manualmente ou elimíneos do sistema." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Produciuse un erro durante a actualización" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Ocorreu un problema durante a actualización. Normalmente é debido a algún " "tipo de problema na rede. Por favor, comprobe a súa conexión de rede e " "vólvao a intentar." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Non hai espazo abondo no disco" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Cancelouse a anovación. A anovación precisa un total de %s de espazo libre " "no disco «%s». Libere cando menos %s de espazo on disco «%s». Libere o lixo " "e elimine os paquetes temporais das instalacións anterioers usando «sudo apt-" "get clean»." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Calculando os cambios" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Desexa comezar a anovación?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Anulouse a anovación" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Agora vaise cancelar a anovación e o sistema volverá ao seu estado orixinal. " "Pode retomar a actualización máis adiante." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Non se puideron descargar as anovacións" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Abortouse a actualización. Comprobe a súa conexión a Internet ou medio de " "instalación e ténteo de novo. Tódolos ficheiros descargados serán mantidos." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Produciuse un erro durante a remisión" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Restaurando o estado orixinal do sistema" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Non se puideron instalar as anovacións" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Abortouse a anovación. O seu sistema pode estar nun estado non usábel. Vaise " "executar agora a recuperación (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Informe de este erro usando o seu navegador " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug e " "anexe os ficheiros existentes en /var/log/dist-upgrade/ ao informe do erro.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Cancelouse a actualización. Comprobe a súa conexión a Internet ou o " "dispositivo de instalación e volva a tentalo. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Retirar os paquetes obsoletos?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Conservar" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Retirar" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Ocorreu algún problema durante a limpeza. Por favor, vexa a mensaxe inferior " "para obter máis información. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Non está instalado depends, que é necesario" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "A dependencia requirida «%s» non está instalada. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Comprobando o xestor de paquetes" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Fallou a preparación da anovación" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Produciuse un fallo ao preparar o sistema para a anovación polo que estase " "iniciando un proceso de informe de erro." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Fallou a preparación da anovación" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "O sistema non cumpre os prerequisitos para a súa anovación. A anovación " "cancelarase agora e restaurarase o estado orixinal do sistema.\n" "\n" "Ademais, estase iniciando un proceso de informe de erro." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Actualizando a información do repositorio" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Produciuse un fallo ao engadir o CDROM" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Sentímolo, non foi posíbel engadir o CDROM" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Información de paquete incorrecta" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Despois de anovar a súa información de paquetes, non foi posíbel atopar o " "paquete esencial «%s». Isto pode deberse a que non ten os mirror oficiais na " "lista de orixes de software, ou porque hai unha carga excesiva no mirror que " "está empregando. Olle a lista de orixes de software configurada actualmente " "en /etc/apt/sources.list.\n" "No caso de que sexa por mor dun mirror saturado, debería anovar un pouco " "máis tarde." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Obtendo" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Anovando" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Completouse a anovación" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "A actualización completouse mais producíronse erros durante o proceso." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Completouse a anovación do sistema." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Completouse a anovación parcial do sistema." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Non foi posíbel atopar as notas da versión" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Poida que o servidor estea sobrecargado. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Non foi posíbel descargar as notas da versión" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Por favor, comprobe a conexión á Internet." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "autenticar «%(file)s» contra «%(signature)s» " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "a extraer «%s»" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Non foi posíbel executar a ferramenta de anovación" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Isto semella ser un erro na ferramenta de anovación. Informe deste erro " "usando a orde «ubuntu-bug ubuntu-release-upgrader-core»." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Sinatura da ferramenta de anovación" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Ferramenta de anovación" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Erro ao obter" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Fallou a obtención da anovación. Pode haber un problema coa rede. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Fallou a autenticación" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Fallou a autenticación da anovación. Pode haber un problema coa rede ou co " "servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Erro ao extraer" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Fallou a extracción da anovación. Pode haber un problema coa rede ou co " "servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Fallou a verificación" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Fallou a verificación da anovación. Pode haber un problema coa rede ou co " "servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Non foi posíbel executar a anovación" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Isto a miúdo é causado por un sistema onde /tmp está montado como parámetro " "«noexec». Remónte a partición sen o parámetro noexec antes de realizar a " "anovación." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "A mensaxe do erro é «%s»." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Anovar" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Notas da versión" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Descargando os ficheiros de paquetes adicionais..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Ficheiro %s de %s a %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Ficheiro %s de %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Por favor, introduza «%s» na unidade «%s»" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Cambio de medio" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms en uso" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "O sistema emprega o xestor de volumes «evms» en /proc/mounts. O software " "«evms» non ten asistencia; apágueo e execute de novo a anovación ao rematar." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "O seu hardware gráfico podería non ser compatíbel con Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "O hardware de gráficos non admite de todo a execución do ambiente de " "escritorio «unity». Pode que, unha vez rematada a actualización, o ambiente " "sexa moi lento. Recomendamos que, de momento, fique coa versión TLS. Para " "máis información, consulte " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D. Desexa " "proseguir coa actualización?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "O seu hardware de gráficos non é completamente compatíbel con Ubuntu 12.04 " "LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "A compatibilidade en Ubuntu 12.04 LTS para o seu hardware de gráficos Intel " "está limitada e pode atopar problemas trala actualización. Para ter máis " "información vexa https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx " "¿Desexa continuar coa anovación?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "A anovación pode reducir os efectos do escritorio, o rendemento nos xogos e " "noutros programas que fagan un emprego intensivo dos gráficos." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Este computador emprega o controlador gráfico «nvidia» de NVIDIA. Non se " "conta cun controlador que funcione co seu hardware en Ubuntu 10.04 LTS.\n" "\n" "Está seguro de que desexa continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Este computador emprega o controlador gráfico «fglrx» de AMD. Non se conta " "cun controlador que funcione co seu hardware en Ubuntu 10.04 LTS.\n" "\n" "Está seguro de que desexa continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Non é unha CPU i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "O seu sistema usa unha CPU i586 ou unha CPU que non ten a extensión «cmov». " "Todos os paquetes foron construídos con optimizacións que requiren i686 como " "arquitectura mínima. Non é posíbel actualizar o seu sistema á nova versión " "de Ubuntu con este hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Non é unha CPU ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "O seu sistema emprega unha CPU ARM que é máis antiga que a arquitectura " "ARMv6. Todos os paquetes en karmic foron construídos coas optimizacións que " "require ARMv6 como arquitectura mínima. Non é posíbel anovar o seu sistema a " "unha versión de Ubuntu con esta arquitectura." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "O «daemon» init non está dispoñíbel" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Semella que o seu sistema é un contorno virtualizado sen un daemon init (un " "Linux-VServer, p.ex.). Ubuntu 10.04 LTS non pode funcionar neste tipo de " "contorno, polo que require unha actualización da configuración da súa " "máquina virtual.\n" "\n" "Está seguro de que desexa continuar?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Anovación da área de probas usando aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Usar a ruta dada para buscar un CD-ROM con paquetes de actualización" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Usar a interface gráfica. Dispoñíbeis neste momento: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*OBSOLETO* esta opción será ignorada" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Realizar só unha anovación parcial (sen reescribir o sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Desactivar a compatibilidade de pantalla GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Estabelecer datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Rematou a obtención" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Obtendo o ficheiro %li de %li a %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Restan aproximadamente %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Obtendo o ficheiro %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Aplicando os cambios" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemas de dependencias - déixase sen configurar" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Non foi posíbel instalar «%s»" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "A anovación continuará mais o paquete «%s» podería estar instalado " "incorrectamente. Considere o envío dun informe de erro sobre iso." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Substituír o ficheiro de configuración personalizado\n" "«%s»?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Perderá as modificacións feitas neste ficheiro de configuración se escolle " "substituílo por unha versión máis nova." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Non se atopou a orde «diff»" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Produciuse un erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Informe deste fallo (se aínda non o fixo) e inclúa os ficheiros " "/var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log no informe. A " "actualización foi cancelada.\n" "O seu ficheiro sources.list orixinal foi gardado en " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl+C premido" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Isto interromperá a operación e podería deixar o sistema estragado. Seguro " "que quere facelo?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para previr a perda de datos peche todos os aplicativos e documentos." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Sen máis asistencia por parte de Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Desactualizar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Retirar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Non se necesita máis (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instalar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Anovar (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Mostrar a diferenza >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Agochar a diferenza" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Erro" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Cancelar" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Pechar" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Mostrar o terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Agochar o terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Información" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detalles" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Sen máis asistencia (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Retirar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Retirar (instalado automaticamente) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instalar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Anovar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Cómpre reiniciar" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Reinicie o sistema para completar a anovación" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Reiniciar agora" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Anular a anovación en curso?\n" "\n" "O sistema podería quedar inutilizado se anula a anovación. Recomendámoslle " "encarecidamente que continúe a anovación." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Anular a anovación?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li día" msgstr[1] "%li días" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hora" msgstr[1] "%li horas" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuto" msgstr[1] "%li minutos" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li segundo" msgstr[1] "%li segundos" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Esta descarga durará arredor de %s nunha conexión DSL a 1Mbit e sobre %s " "nunha conexión de módem a 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Esta descarga levará aproximadamente %s coa súa conexión. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Preparando a anovación" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Obtendo as canles de software novas" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Obtendo os paquetes novos" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Instalando as anovacións" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Limpando" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d paquete instalado non seguirá tendo asistencia de Canonical. " "Aínda así, pode obter asistencia desde a comunidade." msgstr[1] "" "%(amount)d paquetes instalados non seguirán tendo asistencia de Canonical. " "Aínda así, pode obter asistencia desde a comunidade." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Retirarase %d paquete." msgstr[1] "Retiraranse %d paquetes." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Instalarase %d paquete novo." msgstr[1] "Instalaranse %d paquetes novos." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Anovarase %d paquete." msgstr[1] "Anovaranse %d paquetes." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Ten que descargar un total de %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "A instalación da anovación pode levar varias horas. En canto remate a " "descarga, o proceso non se pode cancelar." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Obter e instalar a anovación pode levar varias horas. En canto remate a " "descarga, o proceso non se pode cancelar." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "A eliminación dos paquetes pode levar varias horas. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "O software deste computador está actualizado." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Non hai anovacións dispoñíbeis para o seu sistema. Anularase a anovación." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Cómpre reiniciar" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "A anovación finalizou e cómpre reiniciar. Quere facelo agora?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Informe deste fallo e inclúa os ficheiros /var/log/dist-upgrade/main.log e " "/var/log/dist-upgrade/apt.log no informe. A actualización foi cancelada.\n" "O seu ficheiro sources.list orixinal gardouse en " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Interrompendo" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Degradado:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Para continuar prema [INTRO]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Continuar [sN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detalles [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "s" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Sen máis asistencia: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Retirar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instalar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Anovar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continuar [Sn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Para concluír a anovación compre reiniciar.\n" "Se selecciona «s» o sistema reiniciarase." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Descargando o ficheiro %(current)li de %(total)li a %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Descargando o ficheiro %(current)li de %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Mostrar o progreso de cada ficheiro individual" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Anular a anovación" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Continuar a anovación" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Cancelar a anovación en curso?\n" "\n" "O sistema podería quedar nun estado non usábel se anula a anovación. " "Recomendámoslle encarecidamente que continúe a anovación." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Iniciar a anovación" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Substituír" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Diferenza entre os ficheiros" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Informar dun fallo" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continuar" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Comezar a anovación?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Reinicie o sistema para completar a anovación\n" "\n" "Garde o seu traballo antes de continuar." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Anovación da distribución" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Anovando Ubuntu á versión 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Estabelecendo novas canles de software" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Reiniciando o computador" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "A_novar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Existe unha nova versión de Ubuntu dispoñíbel. Desexa anovar?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Non anovar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Preguntarme máis tarde" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Si, anovar agora" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Vostede rexeitou a anovación ao novo Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Pode anovarse no futuro abrindo o Actualizador de software e premer en " "«Anovar»." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Realizar unha anovación de versión" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Para anovar Ubuntu, é preciso que se autentifique." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Realizar unha anovación parcial" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Para realizar unha anovación parcial, é preciso que se autentifique." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Mostrar a versión e saír" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Directorio que contén os ficheiros de datos" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Execute a interface gráfica indicada" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Executando unha anovación parcial" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Descargando a ferramenta de anovación" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Comprobar se resulta posíbel anovar á versión en desenvolvemento máis recente" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Tente anovarse á última versión usando o anovador desde $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Executar nun modo de anovación especial.\n" "Actualmente existen «desktop» para actualizacións normais dun sistema de " "escritorio e «server» para sistemas servidores." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "O test de anovación con área de probas aufs devolve superposición" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Comprobar só se está dispoñíbel unha nova versión da distribución e informar " "do resultado mediante o código de saída." #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Buscando novas publicacións de Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "A súa versión de Ubuntu xa non está asistida." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Para obter máis información sobre esta anovación, visite:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Non se atopou unha versión nova" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Non é posíbel actualizar a versión neste momento" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Non é posíbel realizar a actualización de versión neste momento, probe de " "novo máis tarde. O servidor informou: «%s»" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Unha versión nova «%s» dispoñíbel" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Execute «do-release-upgrade» para anovarse." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Está dispoñíbel unha anovación á %(version)s de Ubuntu" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Vostede rexeitou a anovación a Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Engadir a saída de depuración" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Requírese autenticación para levar a cabo unha anovación de versión" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Requírese autenticación para levar a cabo unha anovación parcial" ubuntu-release-upgrader-0.220.10/po/en_GB.po0000644000000000000000000017452412431225715015340 0ustar # English (British) translation. # Copyright (C) 2005 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Abigail Brady , Bastien Nocera , 2005. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-27 11:46+0000\n" "Last-Translator: Anthony Harrington \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Main server" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Custom servers" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Could not calculate the sources.list entry" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Unable to locate any package files, perhaps this is not an Ubuntu Disc or " "the wrong architecture?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Failed to add the CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Remove package in bad state" msgstr[1] "Remove packages in bad state" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgstr[1] "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "The server may be overloaded" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Broken packages" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "This is most likely a temporary problem, please try again later." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Could not determine the upgrade" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Error authenticating some packages. Continue?" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "The package '%s' is marked for removal but it is in the removal blacklist." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "The essential package '%s' is marked for removal." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Trying to install blacklisted version '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Can't install '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Reading cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Unable to get exclusive lock" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "This usually means that another package management application (like apt-get " "or aptitude) is already running. Please close that application first." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Upgrading over remote connection not supported" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "You are running the upgrade over a remote SSH connection with a front-end " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without SSH." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Continue running under SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "This session appears to be running under SSH. It is not recommended to " "perform a upgrade over SSH currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional SSH daemon will be started at port '%s'.\n" "Do you want to continue?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Starting additional sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Cannot upgrade" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "An upgrade from \"%s\" to \"%s\" is not supported with this tool." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandbox setup failed" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "It was not possible to create the sandbox environment." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox mode" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Package 'debsig-verify' is installed" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Can not write to '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Include latest updates from the Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "The upgrade system can use the internet to automatically download the latest " "updates and install them. If you have a network connection this is highly " "recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates as soon as possible after upgrading.\n" "If you answer 'no' here, the network is not used at all." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "disabled on upgrade to %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "No valid mirror found" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run an internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Generate default sources?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Repository information invalid" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Upgrading the repository information resulted in an invalid file, so a bug " "reporting process is being started." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Third party sources disabled" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Package in inconsistent state" msgstr[1] "Packages in inconsistent state" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgstr[1] "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Error during update" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Not enough free disk space" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Calculating the changes" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Upgrade cancelled" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Error during commit" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Restoring original system state" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Keep" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Remove" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "A problem occured during the clean-up. Please see the below message for more " "information. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Required depends are not installed" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "The required dependency '%s' is not installed. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Checking package manager" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Preparing the upgrade failed" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Preparing the system for the upgrade failed, so a bug reporting process is " "being started." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Getting upgrade prerequisites failed" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Updating repository information" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Failed to add the CDROM" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Sorry, adding the CDROM was not successful." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Invalid package information" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Fetching" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Upgrading" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Upgrade complete" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "The upgrade has completed but there were errors during the upgrade process." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "System upgrade is complete." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "The partial upgrade was completed." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Could not find the release notes" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "The server may be overloaded. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Could not download the release notes" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Please check your internet connection." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "authenticate '%(file)s' against '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "extracting '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Upgrade tool signature" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Upgrade tool" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Failed to fetch" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Fetching the upgrade failed. There may be a network problem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Authentication failed" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Failed to extract" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verification failed" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Cannot run the upgrade" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "The error message is '%s'" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Upgrade" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Release Notes" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Downloading additional package files..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "File %s of %s at %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "File %s of %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Please insert '%s' into the drive '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Media Change" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms in use" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please disable 'evms' and then run the " "upgrade again." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "Your graphics hardware may not be fully supported in Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Running the 'Unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. A " "version of this driver that works with your hardware is not available in " "Ubuntu 10.04 LTS.\n" "\n" "Do you wish to continue?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "This computer is currently using the AMD 'fglrx' graphics driver. A version " "of this driver that works with your hardware is not available in Ubuntu " "10.04 LTS.\n" "\n" "Do you wish to continue?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "No i686 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimisations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "No ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in Ubuntu 9.10 were built with optimisations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "No init available" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandbox upgrade using aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Use the given path to search for a CD-ROM with upgradeable packages" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*DEPRECATED* this option will be ignored" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Perform a partial upgrade only (no sources.list rewriting)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Disable GNU screen support" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Set datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Fetching is complete" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Fetching file %li of %li at %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "About %s remaining" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Applying changes" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "dependency problems - leaving unconfigured" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Could not install '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Replace the customised configuration file\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "A fatal error occurred" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-C pressed" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "This will end the operation and may leave the system in a broken state. Are " "you sure that you want to do that?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "No longer supported by Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Downgrade (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Remove (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "No longer needed (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Install (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Upgrade (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Show Difference >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Hide Difference" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Error" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Cancel" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Close" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Show Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Hide Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Information" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Details" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "No longer supported %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Remove %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Remove (was auto installed) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Install %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Restart required" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Restart the system to complete the upgrade" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Restart Now" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Cancel the running upgrade?\n" "\n" "Stopping the upgrade may render your system unusable. It is recommended that " "the upgrade is resumed and allowed to complete." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Cancel Upgrade?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li day" msgstr[1] "%li days" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hour" msgstr[1] "%li hours" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minute" msgstr[1] "%li minutes" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li second" msgstr[1] "%li seconds" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "This download should take about %s with your connection. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Preparing to upgrade" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Getting new software channels" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Getting new packages" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installing the upgrades" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Cleaning up" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgstr[1] "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d package is going to be removed." msgstr[1] "%d packages are going to be removed." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d new package is going to be installed." msgstr[1] "%d new packages are going to be installed." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d package is going to be upgraded." msgstr[1] "%d packages are going to be upgraded." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "You have to download a total of %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be cancelled." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be cancelled." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Removing the packages can take several hours. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "The software on this computer is up to date." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "There are no upgrades available for your system. The upgrade will now be " "cancelled." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Reboot required" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "The upgrade is finished and a reboot is required. Do you want to do this now?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Aborting" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Demoted:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "To continue please press [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Continue [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Details [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "No longer supported: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Remove: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Install: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Upgrade: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continue? [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "To complete the upgrade, a system restart is required.\n" "If you select 'y' the system will be restarted." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Downloading file %(current)li of %(total)li with %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Downloading file %(current)li of %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Show the progress of individual files" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Cancel Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Resume Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Cancel the running upgrade?\n" "\n" "The system could be left in an unusable state if you cancel the upgrade. You " "are strongly adviced to resume the upgrade." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Start Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Replace" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Difference between the files" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Report Bug" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continue" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Start the upgrade?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing with the upgrade." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Distribution Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Upgrading Ubuntu to version 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Setting new software channels" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Restarting the computer" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Upgrade" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "A new version of Ubuntu is available. Would you like to upgrade?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Don't Upgrade" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Ask Me Later" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Yes, Upgrade Now" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "You have declined to upgrade to the new Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Perform a release upgrade" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "To upgrade Ubuntu, you need to authenticate." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Perform a partial upgrade" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "To perform a partial upgrade, you need to authenticate." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Show version and exit" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Directory that contains the data files" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Run the specified frontend" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Running partial upgrade" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Downloading the release upgrade tool" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Check if upgrading to the latest devel release is possible" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Try upgrading to the latest release using the upgrader from $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Test upgrade with a sandbox aufs overlay" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Check only if a new distribution release is available and report the result " "via the exit code" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Checking for a new Ubuntu release" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Your Ubuntu release is not supported anymore." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "For upgrade information, please visit:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "No new release found" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Release upgrade not possible right now" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "The release upgrade cannot be performed currently, please try again later. " "The server reported: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "New release '%s' available." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Run 'do-release-upgrade' to upgrade to it." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s Upgrade Available" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "You have declined the upgrade to Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Add debug output" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Authentication is required to perform a release upgrade" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Authentication is required to perform a partial upgrade" ubuntu-release-upgrader-0.220.10/po/oc.po0000644000000000000000000020335512431225715014762 0ustar # Occitan (post 1500) translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:39+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Servidor per %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Servidor principal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Servidors personalizats" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Impossible d'avalorar la linha de source.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Impossible de localizar los fichièrs dels paquets. Benlèu es pas un disc " "Ubuntu, o alara es previst per una autra arquitectura." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Impossible d'apondre lo CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "I a agut una error al moment d'apondre lo CD, anam anullar la mesa a jorn. " "Raportatz aquò coma una anomalia s'es un CD valid d'Ubuntu.\n" "\n" "Lo messatge d'error èra :\n" "« %s »" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Suprimir lo paquet damatjat" msgstr[1] "Suprimir los paquets damatjats" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Lo paquet « %s » es dins un estat incoerent e deu èsser reïnstallat, mas cap " "d'archiu lo contenent es pas estat trobat. Volètz suprimir aqueste paquet " "ara e contunhar ?" msgstr[1] "" "Los paquets « %s » son dins un estat incoerent e deu èsser reïnstallat, mas " "cap d'archiu lo contenent es pas estat trobat. Volètz suprimir aqueste " "paquet ara e contunhar ?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Benlèu que lo servidor es subrecarga" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paquets copats" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Vòstre sistèma conten de paquets corromputs que lo logicial pòt pas " "corregir. Corrigissètz-los amb synaptic o apt-get abans de contunhar." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Un problèma insolvable s'es produch al moment del calcul de la mesa a " "jorn :\n" "%s\n" "\n" " Aquò pòt èsser degut a :\n" " * una mesa a nivèl cap a una preversion d'Ubuntu ;\n" " * l'utilizacion de la preversion actuala d'Ubuntu ;\n" " * un paquet logicial pas oficial, pas provesit per Ubuntu.\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Aquò se sembla fòrça a un problèma temporari. Tornatz ensajar pus tard." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Se res de tot aquò s'aplica pas, senhalatz aqueste bug en utilizant la " "comanda 'ubuntu-bug ubuntu-release-upgrader-core' dins un terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Impossible de calcular la mesa a jorn" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Error al moment de l'autentificacion d'unes paquets" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Es estat impossible d'autentificar d'unes paquets. Aquò pòt provenir d'un " "problèma temporari de la ret. Pòt èsser util de tornar ensajar mai tard. " "Trobaretz çaijós una lista dels paquets pas autentificats." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Lo paquet « %s » es marcat per supression mas es dins la lista negra de las " "supressions." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Lo paquet essencial « %s » es marcat per supression." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Temptativa d'installacion de la version en lista d'exclusion « %s »" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Impossible d'installar « %s »" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "L'installacion d'un paquet requerís èra impossibla. Senhalatz aqueste bug en " "utilizant la comanda 'ubuntu-bug ubuntu-release-upgrader-core' dins un " "terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Impossible de determinar lo metapaquet" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Vòstre sistèma conten pas los paquets ubuntu-desktop, kubuntu-desktop, " "xubuntu-desktop o edubuntu-desktop. Per consequéncia, es pas estat possible " "de detectar la version d'Ubuntu qu'utilizatz.\n" " Installatz un dels paquets çaisús, en utilizant Synaptic o apt-get, abans " "de contunhar." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Lectura de l'amagatal" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Impossible d'obténer un varrolh exclusiu" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Significa generalament qu'una autra aplicacion de gestion de paquets (coma " "apt-get o aptitude) ja es en cors d'execucion. D'en primièr, tampatz aquesta " "aplicacion." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "La mesa a nivèl via una connexion distanta es pas presa en carga" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Fasètz la mesa a jorn a travèrs una connexion distanta ssh amb una " "interfàcia que lo pren pas en carga. Ensajatz una mesa a jorn en mòde tèxte " "amb 'do-release-upgrade'.\n" "\n" "Ara, la mesa a jorn va èsser anullada. Ensajatz sens ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Contunhar dins una sesilha SSH ?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Aquesta sesilha sembla virar a travèrs ssh. Actualament, es pas recomandat " "de far una mesa a jorn a travèrs ssh perque en cas de fracàs, es pus " "complicat de reparar.\n" "Se contunhatz, un servici ssh novèl serà aviat sul pòrt « %s ».\n" "Volètz contunhar?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Aviada d'un processús sshd suplementari" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Per far mai aisida la recuperacion en cas de disfoncionament, un sshd " "suplementari serà aviat sul pòrt « %s ». En cas de problèma amb l'ssh " "existent, vos poiretz encara connectar amb l'autre.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "S'utilizatz un parafuòc, benlèu que vos caldriá dobrir temporàriament " "aqueste pòrt. Es pas fach automaticament perque es potencialament dangierós. " "Podètz dobrir lo pòrt amb, per exemple :\n" "« %s »" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Impossible de metre a jorn" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "La mesa a nivèl de « %s » cap a « %s » es pas presa en carga per aqueste " "esplech." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "La configuracion de l'espaci protegit (sandbox) a fracassat" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" "Es estat impossible de crear l'environament per l'espaci protegit (sandbox)" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Mòde espaci protegit (sandbox)" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "La mesa a nivèl es executada en mòde tèst. Totes los cambiaments son " "escriches dins \"%s\" e seràn perduts a l'amodament que ven.\n" "Entre ara e l'amodament que ven, *cap* de cambiament escrich dins un dorsièr " "sistèma serà pas permanent." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Vòstra installacion de Python es damatjada. Reparatz lo ligam simbolic " "« /usr/bin/python »." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Lo paquet « debsig-verify » es installat" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "La mesa a nivèl pòt pas contunhar s'aqueste paquet es installat.\n" "Suprimissètz-lo amb synaptic o amb « apt-get remove debsig-verify », puèi " "reaviatz la mesa a jorn." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Impossible d'escriure dins '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Impossible d'escriure dins lo dorsièr '%s' de vòstre sistèma. La mesa a jorn " "pòt pas contunhar.\n" "Asseguratz-vos que lo dorsièr sistèma es accessible en escritura." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Inclure las darrièras mesas a jorn d'Internet ?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Lo sistèma de mesa a nivèl pòt utilizar l'Internet per telecargar " "automaticament las darrièras versions dels paquets e las installar pendent " "lo processus. S'avètz una connexion a la ret, aquò es fòrtament recomandat.\n" "\n" "La mesa a nivèl prendrà mai de temps, mas un còp acabada, vòstre sistèma " "serà completament a jorn. Podètz causir d'o far pas, mas vos caldrà " "installar las darrièras versions dels paquets rapidament aprèp la mesa a " "jorn.\n" "Se respondètz « non », la ret serà pas brica utilizada." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "desactivat per la mesa a nivèl cap a %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Cap de miralh valable pas trobat" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Cap d' entrada de miralh per la mesa a nivèl es pas estada trobada al moment " "de l'analisi de vòstras informacions suls depauses. Aquò pòt arribar " "s'utilizatz un miralh local o un miralh vengut obsolèt.\n" "\n" "Volètz tornar crear vòstre fichièr « sources.list » ? Se causissètz « òc » " "las entradas « %s » seràn cambiadas en « %s ».\n" "Se causissètz « non » la mesa a nivèl serà anullada." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Generar las fonts per defaut ?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Cap d'entrada valabla per « %s » es pas estada trobada al moment de " "l'analisi de vòstre fichièr « sources.list ».\n" "\n" "Las entradas per defaut per « %s » devon èsser apondudas ? Se causissètz " "« non » la mesa a nivèl serà anullada." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Informacions suls depauses pas valablas" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "La mesa a nivèl de las informacions dels depauses a renviat un fichièr " "invalid, un rapòrt de bug va èsser mandat." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Fonts que provenon de partidas tèrças desactivadas" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "D'unas entradas de vòstre fichièr sources.list, concernent de partidas " "tèrças, son estadas desactivadas. Las podètz reactivar aprèp la mesa a nivèl " "amb l'esplech « Gestionari de canals logicials » o amb Synaptic." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paquet en estat incoerent" msgstr[1] "Paquets en estat incoerent" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Lo paquet « %s » es dins un estat incoerent e deu èsser reïnstallat, mas cap " "d'archiu que lo contenga es pas estat trobat. Tornatz installar aqueste " "paquet manualament o suprimissètz-lo de vòstre sistèma." msgstr[1] "" "Los paquets « %s » son dins un estat incoerent e devon èsser reïnstallats, " "mas cap d'archiu que los contenga es pas estat trobat. Tornatz installar " "aquestes paquets manualament o suprimissètz-los de vòstre sistèma." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Error al moment de la mesa a jorn" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Un problèma s'es produch al moment de la mesa a jorn. Aquò es generalament " "degut a un problèma de ret. Verificatz vòstra connexion a la ret e tornatz " "ensajar." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Pas pro d'espaci liure sul disc" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "La mesa a nivèl a fracassat. La mesa a nivèl a besonh de %s d'espaci liure " "sul disc « %s ». Liberatz un espaci suplementari de %s sul disc « %s ». " "Voidatz l'escobilhièr e suprimètz los paquets logicials temporaris amb " "l'ajuda de l'aplicacion Sistèma > Administracion > Netejatge del sistèma, o " "en picant la comanda seguenta dins un terminal : « sudo apt-get clean »." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Calcul de las modificacions" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Volètz començar la mesa a jorn ?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Mesa a nivèl anullada" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Ara, la mesa a nivèl va èsser anullada e l’estat original del sistèma " "restablit. La podètz reprene pus tard." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Impossible de telecargar las mesas a jorn" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "La mesa a nivèl es estada arrestada. Verificatz vòstra connexion internet o " "vòstre mèdia d'installacion e tornatz ensajar. Totes los fichièrs que son " "telecargats ja son estats salvats." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Error pendent la somission" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Restabliment del sistèma dins son estat d'origina" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Impossible d'installar las mesas a jorn" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "La mesa a nivèl a fracassat. Vòstre sistèma poiriá èsser inutilizable. Ara, " "una temptativa de recuperacion se va debanar (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Senhalatz aqueste bug dins un navigador a l'adreça " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug e " "jonhètz al rapòrt los fichièrs que se tròban dins /var/log/dist-upgrade/ .\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "La mesa a nivèl a fracassat. Verificatz vòstra connexion Internet e lo " "supòrt d'installacion abans de tornar ensajar. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Suprimir los paquets obsolets ?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Conservar" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Suprimir" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Un problèma s'es produch al moment del netejatge. Reportatz-vos al messatge " "çaijós per mai d'informacions. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Dependéncia requesida pas installada" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "La dependéncia requesida « %s » es pas installada. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Verificacion del gestionari de paquets" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Preparacion de la mesa a jorn impossibla" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "La preparacion del sistèma per la mesa a nivèl a fracassat. Un processus de " "rapòrt d'incident es doncas inicializat." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Impossible d'obténer los prerequesits necessaris a la mesa a jorn" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Lo sistèma a pas capitat d'obténer los prerequesits per la mesa a nivèl. La " "mesa a nivèl se va arrestar e restablir lo sistèma dins son estat inicial.\n" "En complement, un processus de rapòrt d'incident es inicializat." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Mesa a jorn de las informacions suls depauses" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Impossible d'apondre lo CD" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "O planhèm, l'apondon del CD a fracassat." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Informacions suls paquets invalidas" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Recuperacion" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Mesa a nivèl" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Mesa a nivèl acabada" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "La mesa a nivèl es acabada, mas d'errors se son produchas al moment " "d'aqueste processus de mesa a nivèl." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Recèrca de logicials obsolets" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "La mesa a nivèl del sistèma es acabada." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "La mesa a nivèl parciala del sistèma es acabada." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Impossible de trobar las nòtas de publicacion" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Benlèu que lo servidor es subrecargat. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Impossible de telecargar las nòtas de publicacion" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Verificatz vòstra connexion internet." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "autentificacion de '%(file)s' amb '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "extraccion de '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Impossible d'aviar l'esplech de mesa a nivèl" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Aquò's probablament un bug dins l'aisina de mesa a nivèl. Senhalatz-lo coma " "un bug en utilizant la comanda 'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Signatura de l'esplech de mesa a jorn" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Esplech de mesa a jorn" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Recuperacion impossibla" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "La recuperacion de la mesa a nivèl a fracassat. Benlèu qu'i a un problèma de " "ret. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "L'autentificacion a fracassat" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "L'autentificacion de la mesa a nivèl a fracassat. Benlèu qu'i a un problèma " "de ret o de servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Extraccion impossibla" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "L'extraccion de la mesa a nivèl a fracassat. Benlèu qu'i a un problèma de " "ret o de servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "La verificacion a fracassat" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "La verificacion de la mesa a nivèl a fracassat. Benlèu qu'i a un problèma de " "ret o de servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Impossible d'aviar la mesa a nivèl" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "De costuma, aquò es degut a un sistèma o /tmp montat en mòde noexec. " "Remontatz-lo sens l'opcion noexec e metètz a jorn tornarmai." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Lo messatge d'error es « %s »." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Metre a nivèl" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Nòtas de version" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Telecargament dels paquets suplementaris..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Fichièr %s sus %s a %s octets/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Fichièr %s sus %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Inserissètz « %s » dins lo lector « %s »" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Cambiament de mèdia" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms es en cors d'utilizacion" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Vòstre sistèma utiliza lo gestionari de volum « evms » dins /proc/mounts. Lo " "logicial « evms » es pas pus pres en carga. Desactivatz-lo abans d'executar " "tornarmai la mesa a nivèl." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "L'utilizacion de l'environament de burèu « Unity » es pas completament presa " "en carga per vòstra carta grafica. Riscatz de vos retrobar amb un " "environament fòrça lent aprèp la mesa a nivèl. Pel moment, vos conselham de " "conservar la version LTS. Per mai d'informacion, rendètz-vos sus " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Volètz " "contunhar la mesa a nivèl ?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Es possible que vòstra carta grafica siá pas entièrament presa en carga per " "Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "La presa en carga per Ubuntu 12.04 LTS de vòstra carta grafica Intel es " "limitada e es possible que rencontriatz de problèmas aprèp la mesa a nivèl. " "Per mai d'informacion, rendètz-vos sus " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Volètz contunhar " "la mesa a nivèl ?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Es possible que la mesa a nivèl reduisca los efièches visuals e las " "performàncias pels jòcs e autres programas exigents en tèrmes de grafismes." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Aqueste ordenador utiliza actualament lo pilòt grafic « nvidia » de NVIDIA. " "I a pas cap de version d'aqueste pilòt per Ubuntu 10.04 LTS que foncione amb " "vòstre material.\n" "\n" "Volètz contunhar ?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Aqueste ordenador utiliza actualament lo pilòt grafic « fglrx » d'AMD. I a " "pas cap de version d'aqueste pilòt per Ubuntu 10.04 LTS que foncione amb " "vòstre material.\n" "\n" "Volètz contunhar ?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Pas de processor i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Vòstre sistèma utiliza un processor i586 o un processor qu'a pas l'extension " "'cmov'. Totes los paquets son estats compilats amb d'optimizacions " "qu'exigisson que l'arquitectura minimala siá i686. Es pas possible de metre " "a jorn vòstre sistèma cap a una novèla version d'Ubuntu amb vòstre material " "actual." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Pas de processor ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Vòstre sistèma utiliza un processor ARM mai ancian que la generacion ARMv6. " "Totes los paquets de karmic son estats construches amb d'optimizacions que " "necessitan al minimum una arquitectura ARMv6. Es impossible de metre a nivèl " "vòstre sistèma cap a la version novèla d'Ubuntu." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Inicializacion indisponibla" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Sembla que vòstre sistèma es un environament virtualizat sens demòni " "d'inicializacion (coma Linux-VServer). Ubuntu 10.04 LTS pòt foncionar dins " "aqueste tipe d'environament e requerís al prealable una mesa a jorn de la " "configuracion de vòstra maquina virtuala.\n" "\n" "Sètz segur que volètz contunhar ?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Mesa a nivèl en espaci protegit (sandbox) en utilizant aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Utilizar lo camin balhar per recercar un CD-ROM que conten de paquets de " "metre a jorn" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Utilizar una de las interfàcias disponiblas actualament : \n" " DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*OBSOLÈT* aquesta opcion serà ignorada" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Efectuar pas qu'una mesa a jorn parciala (pas de remplaçament de " "sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Desactivar la presa en carga de GNU screen" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Definir l'emplaçament de las donadas" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "La recuperacion dels fichièrs es acabada" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Recuperacion del fichièr %li sus %li a %s octets/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Demòra(n) environ %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Telecargament del fichièr %li sus %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Aplicacion dels cambiaments" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problèmas de dependéncias - daissat pas configurat" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Impossible d'installar « %s »" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "La mesa a nivèl va contunhar mas lo paquet « %s » poiriá èsser pas " "foncional. Senhalatz aquò coma un bug." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Remplaçar lo fichièr de configuracion personalizat\n" "« %s » ?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Totas las modificacions aportadas a aqueste fichièr de configuracion seràn " "perdudas se decidètz de lo remplaçar per una version mai recenta." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Impossible de trobar la comanda « diff »" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Una error fatala s'es producha" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Senhalatz aqueste problèma coma un bug (s'es pas encara fach), e incluissètz-" "i los fichièrs /var/log/dist-upgrade/main.log e /var/log/dist-" "upgrade/apt.log. La mese a nivèl a fracassat.\n" "Vòstre fichièr souce.list original es estat enregistrat dins " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Quichada de Ctrl+C" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Aquò anullarà l'operacion en cors e poiriá daissar lo sistèma dins un estat " "inutilizable. Sètz segur que volètz far aquò ?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per evitar tota pèrda de donadas, Tampatz totas las aplicacions e documents " "dobèrts." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Es pas pus mantengut per Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Installar en version anteriora (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Suprimir (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Es pas pus necessari (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Installar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Mettre à jour (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Afichar las diferéncias >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Amagar las diferéncias" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Error" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Tampar" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Afichar lo terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Amagar lo terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informacions" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detalhs" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Es pas pus mantengut (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Suprimir %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Suprimir (èra estat installat automaticament) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Installar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Metre a nivèl %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Vos cal tornar amodar l'ordenador" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Tornatz aviar lo sistèma per acabar la mesa a jorn" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Tornar amodar ara" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Anullar la mesa a nivèl en cors ?\n" "\n" "Lo sistèma poiriá venir inutilizable s'anullatz la mesa a nivèl. Vos es " "fòrtament recomandat de tornar prene la mesa a jorn." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "_Anullar la mesa a nivèl ?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li jorn" msgstr[1] "%li jorns" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li ora" msgstr[1] "%li oras" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuta" msgstr[1] "%li minutas" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li segonda" msgstr[1] "%li segondas" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Aqueste telecargament prendrà environ %s amb una connexion (A)DSL 1 Mbit e " "environ %s amb un modèm 56K." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Aqueste telecargament prendrà environ %s amb vòstra connexion. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Preparacion de la mesa a nivèl" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Obtencion de depauses logicials novèls" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Obtencion de paquets novèls" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installacion de las mesas a jorn" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Netejatge" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d paquet installat es pas pus mantengut per Canonical. Podètz " "totjorn obténer una assisténcia de la part de la comunautat." msgstr[1] "" "%(amount)d paquets installats son pas pus mantenguts per Canonical. Podètz " "totjorn obténer una assisténcia de la part de la comunautat." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paquet va èsser suprimit." msgstr[1] "%d paquets van èsser suprimits" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d paquet novèl va èsser installat." msgstr[1] "%d paquets novèls van èsser installats." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paquet va èsser mes a jorn." msgstr[1] "%d paquets van èsser meses a jorn." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Vos cal telecargar un total de %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "L'installacion de la mesa a nivèl pòt prene mantuna ora. Un còp lo " "telecargament acabat, aqueste processus pòt pas èsser anullat." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Obténer e installar la mesa a nivèl pòt prene mantuna ora. Un còp lo " "telecargament acabat, aqueste processus pòt pas èsser anullat." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Suprimir los paquets pòt prene mantuna ora. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Los logicials sus aqueste ordenador son a jorn." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Cap de mesa a nivèl es pas disponibla per vòstre sistèma. Ara, la mesa a " "nivèl va èsser anullada." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Vos cal tornar amodar l'ordenador" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "La mesa a nivèl es acabada e l'ordenador deu èsser reamodat. O volètz far " "tre ara ?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Senhalatz aqueste problèma coma un bug e incluissètz-i los fichièrs " "/var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. La mesa a " "nivèl a fracassat.\n" "Vòstre fichièr souce.list original es estat enregistrat dins " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Anullacion" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Relegat :\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Quichatz sus [Entrada] per contunhar" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "_Contunhar [oN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detalhs [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "o" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "j" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Es pas pus mantengut : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Suprimir : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Installar : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Metre a jorn : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Contunhar [On] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Un reamodament es necessari per completar la mesa a nivèl.\n" "Se caussisètz « o », lo sistèma serà reaviat." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Telecargament del fichièr %(current)li sus %(total)li a %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Telecargament del fichièr %(current)li sus %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Afichar l'avançament de cada fichièr" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Anullar la mesa a jorn" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Contunhar la mesa a jorn" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Anullar la mesa a nivèl en cors ?\n" "\n" "Lo sistèma poiriá èsser inutilizable s'anullatz la mesa a jorn. Vos es " "fòrtament conselhat de tornar prene la mesa a jorn." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Aviar la mesa a jorn" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Remplaçar" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Diferéncia entre los fichièrs" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Raportar una anomalia" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Contunhar" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Aviar la mesa a jorn ?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Reamodatz lo sistèma per acabar la mesa a jorn\n" "\n" "Enregistratz vòstres trabalhs abans de contunhar." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Mesa a jorn de la distribucion" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Definicion de depauses logicials novèls" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Reaviada del sistèma" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Metre a jorn" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Una version novèla d'Ubuntu es disponibla. Volètz metre a jorn vòstre " "sistèma ?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Metre pas a jorn" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Lo me demandar pus tard" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Òc, metre a jorn ara" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Avètz declinada la mesa a jorn cap a la version novèla d'Ubuntu." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Podètz far la mesa a nivèl mai tard en dobrissent lo gestionari de mesas a " "jorn e en clicant sus \"Mesa a nivèl\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Efectuar una mesa a nivèl de version" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Per metre a nivèl Ubuntu, vos cal vos identificar." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Efectuar una mesa a nivèl parciala" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Per far una mesa a nivèl parciala, vos cal vos identificar." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Afichar lo numèro de version e tampar" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Dorsièr que conten los fichièrs de donadas" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Aviar l'interfàcia especificada" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Aviada d'una mesa a nivèl parciala" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Telecargament de l'esplech de mesa a jorn de distribucion" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Verificar se la mesa a nivèl cap a la darrièra version de desvolopament es " "possibla" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Ensajar de metre a nivèl cap a la darrièra version disponibla en utilizant " "l'esplech de mesa a jorn de $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Aviar dins un mòde especial de mesa a nivèl.\n" "Los mòdes disponibles actualament son « desktop » per las mesas a nivèl " "estandardas d'un ordenador de burèu e « server » per las installacions de " "tipe servidor." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testar la mesa a nivèl dins un environament protegit (sandbox aufs)" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Verificar solament se una distribucion novèla es disponibla e afichar lo " "resultat en sortida." #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Recèrca d'una novèla version d'Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Vòstra version d'Ubuntu es pas pus presa en carga." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Per mai d'entresenhas sus la mesa a jorn, visitatz :\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Cap de version novèla pas trobada" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Mesa a nivèl impossibla pel moment." #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "La mesa a nivèl de la distribucion se pòt pas executar pel moment. Tornatz " "ensajar pus tard. Lo servidor a renviat : « %s »" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Version novèla « %s » disponibla." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Aviar « do-release-upgrade » per metre a nivèl cap a aquesta." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Mesa a nivèl cap a Ubuntu %(version)s disponibla" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Avètz declinada la mesa a jorn cap a Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Apondre la sortida de desbugatge" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "" #~ "L'autentificacion es requesida per efectuar una mesa a nivèl parciala" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "" #~ "L'autentificacion es requesida per efectuar una mesa a nivèl de version" ubuntu-release-upgrader-0.220.10/po/fy.po0000644000000000000000000013246512431225715015002 0ustar # Frisian translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Sense Egbert Hofstede \n" "Language-Team: Frisian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Tsjinner foar %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Haadtsjinner" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Oanpaste tsjinners" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Koe sources.list ynfier net berekkenje" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Koe gjin pakket-triemen fine, miskien is dit gjin Ubuntu skiif of de " "ferkearde arsjitektuer?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Tafoegjen fan de skiif mislearre" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Der wie in flater by it tafoegjen fan de skiif, de opwurdearing sil ophâlde. " "Ferstjoer dit asjebleaft as brek as dit in goede Ubuntu skiif is.\n" "\n" "It flater berjocht wie:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Pakket yn minne tastân fuortsmite." msgstr[1] "Pakketten yn minne tastân fuortsmite." #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "It pakket '%s' is yn ynkomplete staat en moat opnij ynstallearje wurde, mar " "der is gjin argyftriem fûn foar dit pakket. Wolle jo fiedergean?" msgstr[1] "" "De pakketten '%s' binne yn ynkomplete staat en moatte opnij ynstallearje " "wurde, mar der is gjin argyftriem fûn foar dizze pakketten. Wolle jo " "fiedergean?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "De tsjinner kin oerbelêstige wêze" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Brutsen pakketten" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Dit is wierskynlik" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Koe de opwurdearing net berekkenje" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Flater bei it bepalen fan de echtheid fan sommige pakketten" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "It pakket '%s' is markearre foar ferwiderje, mar it stjit op de swarte list " "foar ferwiderje." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "It nedige pakket '%s' is markearre foar ferwiderjen." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Kin '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Kin it meta-pakket net riede" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Tydlike opslach ynlêze" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Kin gjin eksklusyfe fêstsetting krije" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/pa.po0000644000000000000000000015270712431225715014765 0ustar # translation of pa.po to Punjabi # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # # Amanpreet Singh Alam , 2005. # A S Alam , 2010. msgid "" msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: A S Alam \n" "Language-Team: testLokalize \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s ਲਈ ਸਰਵਰ" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "ਮੇਨ ਸਰਵਰ" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "ਪਸੰਦੀਦਾ ਸਰਵਰ" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list ਐਂਟਰੀ ਗਿਣੀ ਨਹੀਂ ਜਾ ਸਕੀ" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "ਕੋਈ ਵੀ ਪੈਕੇਜ ਫਾਇਲ ਲੱਭੀ ਨਹੀਂ ਜਾ ਸਕੀ, ਸ਼ਾਇਧ ਇਹ ਉਬਤੂੰ ਡਿਸਕ ਨਹੀਂ ਹੈ ਜਾਂ ਗਲਤ " "ਢਾਂਚਾ ਹੈ?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "ਸੀਡੀ ਜੋੜਨ ਲਈ ਫੇਲ੍ਹ ਹੈ" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "ਖਰਾਬ ਹਾਲਤ ਦੇ ਪੈਕੇਜ ਹਟਾਓ" msgstr[1] "ਖਰਾਬ ਹਾਲਤ ਦੇ ਪੈਕੇਜ ਹਟਾਓ" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "ਖ਼ਰਾਬ ਪੈਕੇਜ" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "ਲਾਜ਼ਮੀ ਪੈਕੇਜ '%s' ਹਟਾਉਣ ਲਈ ਨਿਸ਼ਾਨਬੱਧ ਕੀਤਾ ਗਿਆ ਹੈ।" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "ਬਲੈਕ-ਲਿਸਟ ਕੀਤਾ ਵਰਜਨ '%s' ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "ਕੈਸ਼ ਪੜ੍ਹੀ ਜਾ ਰਹੀ ਹੈ" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "ਖਾਸ ਲਾਕ ਲੈਣ ਲਈ ਅਸਮਰੱਥ" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "ਇਸ ਦਾ ਅਰਥ ਹੈ ਕਿ ਹੋਰ ਪੈਕੇਜ ਪਰਬੰਧ ਐਪਲੀਕੇਸ਼ਨ (ਜਿਵੇਂ apt-get ਜਾਂ aptitude ਆਦਿ) " "ਪਹਿਲਾਂ ਹੀ ਵਰਤਿਆ ਜਾ ਰਿਹਾ ਹੈ। ਪਹਿਲਾਂ ਉਹ ਐਪਲੀਕੇਸ਼ਨ ਬੰਦ ਕਰੋ।" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "ਰਿਮੋਟ ਕੁਨੈਕਸ਼ਨ ਰਾਹੀਂ ਅੱਪਗਰੇਡ ਕਰਨ ਸਹਾਇਕ ਨਹੀਂ ਹੈ" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "ਅੱਪਗਰੇਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "ਸੈਂਡਬਾਕਸ ਮੋਡ" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "'%s' ਉੱਤੇ ਲਿਖਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "ਇੰਟਰਨੈੱਟ ਤੋਂ ਤਾਜ਼ਾ ਅੱਪਡੇਟ ਸ਼ਾਮਲ ਕਰਨੇ ਹਨ?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "ਰਿਪੋਜ਼ਟਰੀ ਜਾਣਕਾਰੀ ਗਲਤ ਹੈ" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "ਸੁਤੰਤਰ ਧਿਰ ਸਰੋਤ ਬੰਦ ਹਨ" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "ਪੈਕੇਜ ਖਰਾਬ ਹਾਲਤ ਵਿੱਚ ਹੈ" msgstr[1] "ਪੈਕੇਜ ਖਰਾਬ ਹਾਲਤ ਵਿੱਚ ਹਨ" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "ਅੱਪਡੇਟ ਦੌਰਾਨ ਗਲਤੀ" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "ਅੱਪਡੇਟ ਕਰਨ ਦੌਰਾਨ ਸਮੱਸਿਆ ਆਈ ਹੈ। ਇਹ ਅਕਸਰ ਨੈੱਟਵਰਕ ਸਮੱਸਿਆ ਕਰਕੇ ਹੋ ਸਕਦਾ ਹੈ, ਆਪਣੇ " "ਨੈੱਟਵਰਕ ਨੂੰ ਚੈੱਕ ਕਰਕੇ ਮੁੜ-ਕੋਸ਼ਿਸ਼ ਕਰੋ।" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "ਲੋੜੀਦੀ ਖਾਲੀ ਡਿਸਕ ਥਾਂ ਨਹੀਂ ਹੈ" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "ਬਦਲਾਅ ਲਈ ਗਿਣਤੀ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "ਕੀ ਤੁਸੀਂ ਅੱਪਗਰੇਡ ਸ਼ੁਰੂ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "ਅੱਪਗਰੇਡ ਰੱਦ ਕੀਤਾ ਗਿਆ" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "ਅੱਪਗਰੇਡ ਡਾਊਨਲੋਡ ਨਹੀਂ ਕੀਤੇ ਜਾ ਸਕੇ" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "ਕਮਿਟ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "ਸਿਸਟਮ ਅਸਲੀ ਹਾਲਤ ਵਿੱਚ ਮੁੜ-ਸਟੋਰ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "ਅੱਪਗਰੇਡ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤੇ ਜਾ ਸਕੇ" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "ਰੱਖੋ(_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "ਹਟਾਓ(_R)" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "ਸਾਫ਼ ਕਰਨ ਦੇ ਦੌਰਾਨ ਸਮੱਸਿਆ ਆਈ। ਹੋਰ ਜਾਣਕਾਰੀ ਲਈ ਹੇਠ ਦਿੱਤਾ ਸੁਨੇਹਾ ਵੇਖੋ ਜੀ। " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "ਲੋੜੀਦੀ ਨਿਰਭਰਤਾ ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "ਪੈਕੇਜ ਮੈਨੇਜਰ ਚੈੱਕ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "ਅੱਪਗਰੇਡ ਲਈ ਤਿਆਰ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "ਰਿਪੋਜ਼ਟਰੀ ਜਾਣਕਾਰੀ ਅੱਪਡੇਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "ਗਲਤ ਪੈਕੇਜ ਜਾਣਕਾਰੀ" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "ਲਈ ਜਾ ਰਹੀ ਹੈ" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "ਅੱਪਗਰੇਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "ਅੱਪਗਰੇਡ ਪੂਰਾ ਹੋਇਆ" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "ਅੱਪਗਰੇਡ ਪੂਰਾ ਚੁੱਕਾ ਹੈ, ਪਰ ਅੱਪਗਰੇਡ ਕਾਰਵਾਈ ਦੌਰਾਨ ਗਲਤੀਆਂ ਆਈਆਂ ਹਨ।" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "ਸਿਸਟਮ ਅੱਪਗਰੇਡ ਪੂਰਾ ਹੋਇਆ।" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "ਆਪਣਾ ਇੰਟਰਨੈੱਟ ਕੁਨੈਕਸ਼ਨ ਚੈੱਕ ਕਰੋ ਜੀ।" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "ਅੱਪਗਰੇਡ ਟੂਲ ਦਸਤਖਤ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "ਅੱਪਗਰੇਡ ਟੂਲ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "ਗਲਤੀ ਸੁਨੇਹਾ '%s' ਹੈ।" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "ਅੱਪਗਰੇਡ" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "ਰੀਲਿਜ਼ ਨੋਟਿਸ" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "ਹੋਰ ਪੈਕੇਜ ਫਾਇਲਾਂ ਡਾਊਨਲੋਡ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "ਮੀਡਿਆ ਬਦਲੋ" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "ARMv6 CPU ਨਹੀਂ" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "ਲਗਭਗ %s ਬਾਕੀ" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "ਬਦਲਾਅ ਲਾਗੂ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "ਘਾਤਕ ਗਲਤੀ ਆਈ ਹੈ" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c ਦੱਬਿਆ" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "ਡਾਊਨਗਰੇਡ (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "ਹਟਾਓ (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "ਇੰਸਟਾਲ (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "ਅੱਪਗਰੇਡ (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "ਅੰਤਰ ਵੇਖਾਓ >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< ਅੰਤਰ ਓਹਲੇ ਕਰੋ" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "ਗਲਤੀ" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "ਬੰਦ ਕਰੋ(&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "ਟਰਮੀਨਲ ਵੇਖਾਓ >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< ਟਰਮੀਨਲ ਓਹਲੇ ਕਰੋ" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "ਜਾਣਕਾਰੀ" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "ਵੇਰਵਾ" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "%s ਹੁਣ ਸਹਾਇਕ ਨਹੀਂ ਹੈ" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s ਹਟਾਓ" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s ਇੰਸਟਾਲ" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s ਅੱਪਗਰੇਡ" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "ਮੁੜ-ਚਾਲੂ ਕਰਨਾ ਪਵੇਗਾ" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "ਅੱਪਗਰੇਡ ਪੂਰਾ ਕਰਨ ਲਈ ਸਿਸਟਮ ਮੁੜ-ਚਾਲੂ ਕਰੋ" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "ਹੁਣੇ ਮੁੜ-ਚਾਲੂ ਕਰੋ(_R)" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "ਅੱਪਗਰੇਡ ਰੱਦ ਕਰਨਾ ਹੈ?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li ਦਿਨ" msgstr[1] "%li ਦਿਨ" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li ਘੰਟਾ" msgstr[1] "%li ਘੰਟੇ" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li ਮਿੰਟ" msgstr[1] "%li ਮਿੰਟ" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li ਸਕਿੰਟ" msgstr[1] "%li ਸਕਿੰਟ" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "ਇਹ ਡਾਊਨਲੋਡ 1Mbit DSL ਕੁਨੈਕਸ਼ਨ ਉੱਤੇ %s ਲਵੇਗਾ ਅਤੇ 56k ਮਾਡਮ ਨਾਲ %s।" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "ਇਹ ਡਾਊਨਲੋਡ ਤੁਹਾਡੇ ਕੁਨੈਕਸ਼ਨ ਉੱਤੇ ਲਗਭਗ %s ਲਵੇਗਾ। " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "ਅੱਪਗਰੇਡ ਲਈ ਤਿਆਰ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "ਨਵੇਂ ਸਾਫਟਵੇਅਰ ਚੈਨਲ ਲਏ ਜਾ ਰਹੇ ਹਨ" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "ਨਵੇਂ ਪੈਕੇਜ ਲਏ ਜਾ ਰਹੇ ਹਨ" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "ਅੱਪਗਰੇਡ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "ਸਾਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d ਪੈਕੇਜ ਹਟਾਇਆ ਜਾਵੇਗਾ।" msgstr[1] "%d ਪੈਕੇਜ ਹਟਾਏ ਜਾਣਗੇ।" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d ਪੈਕੇਜ ਅੱਪਗਰੇਡ ਕੀਤਾ ਜਾਵੇਗਾ।" msgstr[1] "%d ਪੈਕੇਜ ਅੱਪਗਰੇਡ ਕੀਤੇ ਜਾਣਗੇ।" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "ਤੁਸੀਂ ਕੁੱਲ ਵਿੱਚੋਂ %s ਡਾਊਨਲੋਡ ਕਰ ਲਿਆ ਹੈ। " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "ਤੁਹਾਡੇ ਸਿਸਟਮ ਲਈ ਅੱਪਗਰੇਡ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ। ਅੱਪਗਰੇਡ ਨੂੰ ਹੁਣ ਰੱਦ ਕੀਤਾ ਜਾਵੇਗਾ।" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "ਮੁੜ-ਚਾਲੂ ਕਰਨਾ ਪਵੇਗਾ" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "ਅੱਪਗਰੇਡ ਪੂਰਾ ਹੋ ਗਿਆ ਹੈ ਅਤੇ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ। ਕੀ ਤੁਸੀਂ ਹੁਣੇ ਕਰਨਾ " "ਚਾਹੁੰਦੇ ਹੋ?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "ਅਧੂਰਾ ਛੱਡਿਆ" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "ਜਾਰੀ ਰੱਖਣਾ [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "ਵੇਰਵਾ [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "ਹੁਣ ਸਹਾਇਕ ਨਹੀਂ: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "ਹਟਾਓ: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "ਇੰਸਟਾਲ: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "ਅੱਪਗਰੇਡ: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "ਜਾਰੀ ਰੱਖਣਾ [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "ਅੱਪਗਰੇਡ ਨੂੰ ਪੂਰਾ ਕਰਨ ਲਈ ਮੁੜ-ਚਾਲੂ ਕਰਨਾ ਪਵੇਗਾ।\n" "ਜੇ ਤੁਸੀਂ ਸਿਸਟਮ ਨੂੰ ਮੁੜ-ਚਾਲੂ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ ਤਾਂ 'y' ਚੁਣੋ।" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "ਫਾਇਲ %(current)li, %(total)li ਵਿੱਚੋਂ ਡਾਊਨਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "ਵੱਖ ਵੱਖ ਫਾਇਲਾਂ ਦੀ ਤਰੱਕੀ ਵੇਖੋ" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "ਅੱਪਗਰੇਡ ਰੱਦ ਕਰੋ(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "ਅੱਪਗਰੇਡ ਜਾਰੀ ਰੱਖੋ(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "ਅੱਪਗਰੇਡ ਸ਼ੁਰੂ ਕਰੋ(_S)" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "ਬਦਲੋ(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "ਫਾਇਲਾਂ 'ਚ ਅੰਤਰ" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "ਬੱਗ ਰਿਪੋਰਟ ਕਰੋ(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "ਜਾਰੀ ਰੱਖੋ(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "ਅੱਪਗਰੇਡ ਸ਼ੁਰੂ ਕਰਨਾ ਹੈ?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "ਅੱਪਗਰੇਡ ਪੂਰਾ ਕਰਨ ਲਈ ਸਿਸਟਮ ਮੁੜ-ਚਾਲੂ\n" "\n" "ਜਾਰੀ ਰੱਖਣ ਤੋਂ ਪਹਿਲਾਂ ਆਪਣਾ ਕੰਮ ਸੰਭਾਲ ਲਵੋ ਜੀ।" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "ਨਵੇਂ ਸਾਫਟਵੇਅਰ ਚੈਨਲ ਸੈਟਅੱਪ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "ਕੰਪਿਊਟਰ ਮੁੜ-ਚਾਲੂ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "ਟਰਮੀਨਲ" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "ਅੱਪਗਰੇਡ ਕਰੋ(_U)" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "ਉਬਤੂੰ ਦਾ ਨਵਾਂ ਵਰਜਨ ਆ ਗਿਆ ਹੈ। ਕੀ ਤੁਸੀਂ ਅੱਪਗਰੇਡ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "ਅੱਪਗਰੇਡ ਨਾ ਕਰੋ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "ਮੈਨੂੰ ਬਾਅਦ 'ਚ ਪੁੱਛੋ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "ਹਾਂ, ਹੁਣੇ ਅੱਪਗਰੇਡ ਕਰੋ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "ਤੁਸੀਂ ਨਵੇਂ ਉਬਤੂੰ ਲਈ ਅੱਪਗਰੇਡ ਕਰਨ ਤੋਂ ਇਨਕਾਰ ਕਰ ਦਿੱਤਾ ਹੈ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "ਵਰਜਨ ਵੇਖਾ ਕੇ ਬੰਦ ਕਰੋ" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "ਡਾਇਰੈਕਟਰੀ, ਜੋ ਕਿ ਡਾਟਾ ਫਾਇਲਾਂ ਰੱਖਦੀ ਹੈ" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "ਰੀਲਿਜ਼ ਅੱਪਗਰੇਡ ਟੂਲ ਡਾਊਨਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "ਕੋਈ ਨਵਾਂ ਰੀਲਿਜ਼ ਨਹੀਂ ਲੱਭਾ" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "ਹੁਣ ਰੀਲਿਜ਼ ਅੱਪਗਰੇਡ ਸੰਭਵ ਨਹੀਂ ਹੈ" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "ਨਵਾਂ ਵਰਜਨ '%s' ਉਪਲੱਬਧ ਹੈ।" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "ਉਬਤੂੰ %(version)s ਅੱਪਗਰੇਡ ਲਈ ਉਪਲੱਬਧ ਹੈ" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ug.po0000644000000000000000000022443412431225715014775 0ustar # Uighur translation for update-manager # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the update-manager package. # Gheyret T.Kenji , 2008. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:46+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Uyghur Computer Science Association \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s نىڭ مۇلازىمېتىرى" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "باش مۇلازىمېتىر" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Custom مۇلازىمېتىرلار" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list دىكى مەزمۇنلارنى ھېسابلىغىلى بولمىدى" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "بوغچا ھۆججىتى يوقكەن. قارىغاندا بۇ ئۇبۇنتۇ دىسكىسى ئەمەس ئوخشايدۇ، ياكى " "نەشرى خاتا ئوخشايدۇ." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CDنى قوشۇش مەغلۇپ بولدى" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD قوشۇۋاتقانلا خاتالىق كۆرۈلدى. يۈكسەلدۈرۈش توختىتىلىدۇ. ئەگەر بۇ CD رەسمىي " "ئۇبۇنتۇنىڭ CD سى بولسا، بۇنى كەمتۈك مەلۇماتى قىلىپ يوللاڭ\n" "\n" "خاتالىق تۆۋەندىكىچە:\n" "\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "بۇزۇلغان بوغچىلارنى ئۆچۈر" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "بوغچا '%s' (لار) زىددىيەتلىك ھالەتتە ئىكەن، قايتا ئورنىتىش زۆرۈر ئىكەن. " "بىراق ئۇنىڭ ئارخىپى تېپىلمىدى. بۇ بوغچى(لار)نى ئۆچۈرۈپ مەشغۇلاتنى " "داۋاملاشتۇرامسىز؟" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "مۇلازىمېتىرنىڭ يۈكى ئېشىپ كەتكەندەك قىلىدۇ." #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "بۇزۇلغان بوغچىلار" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "سىستېمىڭىزدا بۇ پروگرامما بىلەن تۈزەتكىلى بولمايدىغان بۇزۇلغان بوغچىلار بار " "ئىكەن. مەشغۇلاتنى داۋام قىلىشتىن ئاۋۋال بۇ مەسىلىنى synaptic ياكى apt-get نى " "ئىشلىتىپ تۈزىتىڭ." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "يۈكسەلدۈرۈشنى ھېسابلاۋاتقاندا ھەل قىلغىلى بولمايدىغان مەسىلە كۆرۈلدى:\n" "%s\n" "\n" " بۇ تۆۋەندىكى سەۋەبلەردىن بولۇشى مۇمكىن:\n" " * ئۇبۇنتۇنىڭ pre-release نى ئورنىتىش\n" " * ئۇبۇنتۇنىڭ pre-release نى ئىجرا قىلىش\n" " * ئۇبۇنتۇ تەمىنلىمىگەن يۇمشاق دېتال بوغچىسىنى ئىشلىتىش\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "بۇ ۋاقىتلىق مەسىلىدەك قىلىدۇ، كېيىن يەنە قايتا سىناپ كۆرۈڭ." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "ھېچقايسى ئىشلىمىسە، تېرمىنالدا تۇرۇپ ‹ubuntu-bug ubuntu-release-upgrader-" "core› بۇيرۇقىنى ئىشلىتىپ كەمتۈك مەلۇم قىلىڭ." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "يۈكسەلدۈرۈشنى ھېسابلاش مەغلۇپ بولدى" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "بەزى بوغچىلارنى دەلىللەشتە خاتالىق كۆرۈلدى." #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "بىر قىسىم بوغچىلارنى دەلىللىگىلى بولمىدى. بۇ ۋاقىتلىق مەسىلە. كېيىن يەنە " "سىناپ كۆرسىڭىز بولىدۇ. دەلىللەش مۇمكىن بولمىغان بوغچىلار تۆۋەندىكىچە:" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "بوغچا '%s' غا ئۆچۈرۈش بەلگىسى قويۇلۇپتۇ، بىراق ئۇ ئۆچۈرۈش قارا تىزىملىكىدە " "بار ئىكەن." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "زۆرۈر بولغان '%s' بوغچىغا ئۆچۈرۈش بەلگىسى قويۇلۇپتۇ." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "قارا تىزىملىكتىكى نەشرى '%s' نى ئورناتماقچى بولۇۋاتىدۇ" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' نى قاچىلىيالمىدى" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "تەلەپ قىلىنغان بوغچىنى ئورناتقىلى بولمىدى. تېرمىنالدا «ubuntu-bug ubuntu-" "release-upgrader-core» بۇيرۇقىنى ئىجرا قىلىپ، كەمتۈك مەلۇماتى يوللاڭ." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "meta بوغچىلارنى قىياس قىلغىلى بولمىدى" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "سىستېمىڭىزدا ubuntu-desktop، kubuntu-desktop، xubuntu-desktop ياكى edubuntu-" "desktop بوغچىلىرى يوق ئىكەن ھەم ئۇبۇنتۇنىڭ قايسى نەشرى ئىكەنلىكىنىمۇ بىلگىلى " "بولمىدى.\n" "پروگرامما synaptic ياكى apt-get نى ئىشلىتىپ يۇقىرىقىلارنىڭ بىرەرىنىڭ " "بوغچىلىرىنى ئورنىتىپ مەشغۇلاتنى داۋاملاشتۇرۇڭ." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "غەملەكنى ئوقۇۋاتىدۇ" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "باشقىلارنى چەتكە قاقىدىغان قۇلۇپقا ئېرىشەلمىدى" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "بۇ باشقا بىر بوغچا باشقۇرۇش پروگراممىسى(apt-get ياكى aptitude)نىڭ ئىجرا " "بولۇۋاتقانلىقىدىن دېرەك بېرىدۇ. ئاۋۋال شۇنى ئاخىرلاشتۇرۇڭ." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "يىراقتىن باغلىنىپ يېڭىلاشنى قوللىمايدۇ" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "ssh باغلىنىشى ئارقىلىق يۈكسەلدۈرۈش قىلىۋېتىپسىز بىراق، بۇ پروگرامما ssh " "باغلىنىشىنى قوللىمايدۇ. تېكىست ھالەتتە(تېرمىنالدا) 'do-release-upgrade' نى " "ئىجرا قىلىڭ.\n" "\n" "يۈكسەلدۈرۈش ھازىر ئەمەلدىن قالدۇرىدۇ. ssh نى ئىشلەتمەي سىناپ كۆرۈڭ." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH نى ئىشلىتىپ ئىجرا قىلىۋاتىدۇ، داۋاملاشتۇرامسىز؟" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "بۇ session ssh نى ئىشلىتىپ ئىجرا قىلىنىۋېتىپتۇ. يۈكسەلدۈرۈش مەشغۇلاتىنى ssh " "نى ئىسلىتىپ ئېلىپ بېرىش تەۋسىيە قىلىنمايدۇ. چۈنكى خاتالىق چىقىپ قالسا " "ئەسلىگە كەلتۈرمەك قىيىن.\n" "\n" "ئەگەر داۋاملاشتۇرۇلسا، باشقا بىر ssh dمۇئەككەلنى '%s' نومۇرلۇق ئېغىزدا ئىجرا " "قىلىنىدۇ.\n" "داۋاملاشتۇرامسىز؟" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "باشقا بىر ssh مۇئەككەلنى قوزغىلىۋاتىدۇ." #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "خاتالىق چىققاندا ئەسلىگە كەلتۈرۈشكە ئوڭاي بولسۇن ئۈچۈن، باشقا بىر sshd '%s' " "نومۇرلۇق ئېغىزدا قوزغىتىلىدۇ. ھازىرقى ئىجرا بولۇۋاتقان ssh دا خاتالىق " "كۆرۈلسىمۇ بۇ يېڭى قوشۇلغان ssh غا باغلىنىپ مەشغۇلاتنى داۋاملاشتۇرغىلى " "بولىدۇ.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "ئەگەر سىز توساقتام(firewall) نى ئىجرا قىلىۋاتقان بولسىڭىز، ۋاقتىنچە بۇ " "ئېغىزنى ئېچىۋېتىشىڭىز كېرەك. بۇ خەتەرلىك بولغاچقا ئاپتوماتىك قىلغىلى " "بولمايدۇ. تۆۋەندىكىدەك قىلسىڭىز بۇ ئېغىزنى ئېچىۋېتەلەيسىز:\n" "«%s»" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "يېڭىلىغىلى بولمايدۇ" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "بۇ قورال %s' دىن '%s' غا يۈكسەلدۈرۈشنى قوللىمايدۇ." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandbox مۇھىتىنى تەڭشەش مەغلۇپ بولدى" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Sandbox مۇھىتىنى قۇرۇش مۇمكىن بولمىدى" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox ھالىتى" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "يۈكسەلدۈرۈش مەشغۇلاتى Sandbox(سىناق) ھالىتىدە ئىجرا قىلىنىۋاتىدۇ. ھەممە " "ئۆزگىرىشلەر '%s' غا يېزىلىدۇ. قايتا قوزغىتىلغاندا ھەممىسى يوقىلىدۇ.\n" "\n" "قايتا قوزغىتىلغۇچە بولغان ئارىلىقتا systemdir غا يېزىلغان نەرسىلەر ھەممىسى " "ۋاقىتلىقتۇر." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "ئورنىتىلغان python سىستېمىسى بۇزۇلۇپتۇ. '/usr/bin/python' دېگەن symlink نى " "تۈزىتىڭ." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "'debsig-verify' دېگەن بوغچا ئورنىتىلىپتۇ." #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "ئاۋۇ ئورنىتىلغان بوغچىلار بار ھالەتتە يۈكسەلدۈرۈشنى داۋاملاشتۇرغىلى بولمايدۇ " ".\n" "ئاۋۋال ئۇنى synaptic ياكى 'apt-get remove debsig-verify' دېگەن بۇيرۇق " "ئارقىلىق ئۆچۈرۈۋېتىپ ئاندىن يۈكسەلدۈرۈشنى ئىجرا قىلىڭ." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "‹%s› يازغىلى بولمىدى." #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "سىستېما مۇندەرىجىسى %s غا يازغىلى بولمىدى. يېڭىلاشنى داۋاملاشتۇرغىلى " "بولمايدۇ.\n" "سىستېما مۇندەرىجىسىگە يازغىلى بولىدىغان-بولمايدىغانلىقىنى تەكشۈرۈڭ." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "ئەڭ يېڭى يېڭىلانما ئۇچۇرلىرىنى ئىنتېرنېتتىن ئالامسىز؟" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "يۈكسەلدۈرۈش سىستېمىسى يۈكسەلدۈرۈۋاتقاندا ئەڭ يېڭى يېڭىلاشلارنى ئىنتېرنېتتىن " "ئاپتوماتىك چۈشۈرىدۇ ۋە ئۇنى ئورنىتىدۇ. ئىنتېرنېت باغلىنىشى بولسا بۇ بەكمۇ " "ئاددىي ھەم سىزگە بۇنى تەۋسىيە قىلىمىز\n" "\n" "يۈكسەلدۈرۈشكە ئۇزۇن ۋاقىت كېتىدۇ، بىراق تاماملانغاندا، سىزنىڭ سىستېمىڭىز " "تولۇق ئەڭ يېڭى ھالەتتە بولغان بولىدۇ. سىز بۇنداق قىلماسلىقنىمۇ " "تاللىيالايسىز. بىراق يۈكسەلدۈرۈش تاماملانغاندا ئەڭ يېڭى يېڭىلاشلارنى " "ئورنىتىشىڭىز كېرەك.\n" "ئەگەر بۇ يەردە «ياق(no)» دەپ جاۋاب بەرسىڭىز، ئىنتېرنېت ئىشلىتىلمەيدۇ." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "%s غا يۈكسەلدۈرۈش چەكلەنگەن" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "ئىناۋەتلىك تەسۋىر تېپىلمىدى" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "خەزىنە ئۇچۇردىن يۈكسەلدۈرۈش ئۈچۈن ئىشىتىلىدىغان ئەينەك مۇلازىمېتىرنى تاپقىلى " "بولمىدى. بۇ ئىچكى ئەينەك مۇلازىمېتىر ئىشلىتىش ياكى ئەينەك مۇلازىمېتىر ئۇچۇرى " "كونىراپ قېلىشتىن كېلىپ چىقىدۇ.\n" "\n" "'sources.list' نى قايتا يازسۇنمۇ؟ ئەگەر 'Yes' تاللانسا، '%s' لارنىڭ ھەممىسى " "'%s' يېڭىلىنىدۇ.\n" "ئەگەر 'No' تاللانسا يۈكسەلدۈرۈش ئەمەلدىن قالدۇرۇلىدۇ." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "كۆڭۈلدىكى مەنبەلەرنى قۇرسۇنمۇ؟" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "'sources.list' نى تەكشۈرۈش ئارقىلىق، ئۇنىڭدىن '%s' مۇناسىۋەتلىك مەزمۇن " "تېپىلمىدى.\n" "\n" "'%s' نىڭغا مۇناسىۋەتلىك كۆڭۈلدىكى مەزمۇننى قوشۇلسۇنمۇ؟ جاۋابىڭىز 'No'«ياق» " "بولسا، يۈكسەلدۈرۈش ئەمەلدىن قالدۇرۇلىدۇ." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "خەزىنە ئۇچۇرى ئىناۋەتسىز" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "خەزىنە ئۇچۇرلىرىنى يېڭىلاۋاتقاندا بىر ئىناۋەتسىز ھۆججەت بايقالدى شۇڭا كەمتۈك " "مەلۇم قىلىش جەريانى باشلىنىۋاتىدۇ." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "ئۈچىنچى تەرەپ يۇمشاق دېتاللىرى تاقالغان" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "sources.list ئىچىدىكى بىر قىسىم ئۈچىنچى تەرەپ مەزمۇنلىرى ئىناۋەتسىز قىلىندى. " "يۈكسەلدۈرۈش تاماملانغاندا ئۇنى 'software-properties' قورالى ياكى بوغچا باشقۇ " "بىلەن قايتا ئىناۋەتلىك قىلغىلى بولىدۇ." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "بوغچىلار باغلاشمىغان ھالەتتە" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "بوغچا '%s' (لار) باغلاشمىغان ھالەتتە ئىكەن، ئۇ(لار)نى قايتا ئورنىتىش كېرەك " "ئىدى. بىراق، ئۇنىڭ ئارخىپى تېپىلمىدى. ئۇنى قولدا قايتا ئورنىتىڭ ياكى " "سىستېمىدىن ئۆچۈرۈۋېتىڭ." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "يېڭىلاش جەريانىدا ئازراق مەسىلە كۆرۈلدى. بۇ كوپ ھاللاردا تورنىڭ سەۋەبىدىن " "كېلىپ چىقىدۇ. تور باغلىنىشىنى تەكشۈرۈپ قايتا قىلىڭ." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "دىسكىدىكى بىكار بوشلۇق يېتەرلىك ئەمەس" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "يۈكسەلدۈرۈش توختىتىلدى. يۈكسەلدۈرۈش ئۈچۈن جەمئىي %s بىكار بوشلۇق '%s' " "دىسكىدا بولۇشى كېرەك. ئەڭ ئاز دېگەندە يەنە %s بىكار بوشلۇقنى دىسكا '%s' دا " "پەيدا قىلىڭ. بۇنىڭ ئۈچۈن ئەخلەت ساندۇقنى تازىلاڭ، 'sudo apt-get clean' نى " "ئىشلىتىپ ۋاقىتلىق بوغچىلارنى ئۆچۈرۈڭ." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "ئۆزگىرىشلەرنى ئېنىقلاۋاتىدۇ" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "يۈكسەلدۈرۈشنى باشلامسىز؟" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "يۈكسەلدۈرۈشنى ئەمەلدىن قالدۇردى" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "يۈكسەلدۈرۈش مەشغۇلاتى ئەمەلدىن قالدۇرۇلۇپ، ئەسلى سىستېما ئەسلىگە " "كەلتۈرۈلىدۇ. يۈكسەلدۈرۈش مەشغۇلاتىنى كېيىن يەنە قىلگىلى بولىدۇ." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "يۈكسەلدۈرمىلەرنى چۈشۈرگىلى بولمىدى" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "يۈكسەلدۈرۈش ئۈزۈلۈپ قالدى. ئىنتېرنېت باغلىنىشىنى ياكى ئورنىتىش دىسكىسىنى " "تەكشۈرۈڭ ۋە قايتا سىناڭ. چۈشۈرۈلگەن بارلىق ھۆججەتلەر ساقلىنىپ قالىدۇ." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "commit قىلىۋاتقاندا خاتالىق كۆرۈلدى" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "ئەسلىدىكى سىستېما ھالىتىگە قايتۇرۇش" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "يېڭىلىنىش قاچىلانمىدى" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "يۈكسەلدۈرۈش توختىتىلدى. سىستېمىڭىز ئىشلەتكىلى بولمايدىغان ھالەتكە چۈشۈپ " "قالىدۇ. ئەسلىگە كەلتۈرۈش مەشغۇلاتى(dpkg --configure -a) ھازىرلا ئېلىپ " "بېرىلىدۇ." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "مەزكۇر كەمتۈكنى توركۆرگۈدە http://bugs.launchpad.net/ubuntu/+source/ubuntu-" "release-upgrader/+filebug گە مەلۇم قىلىڭ ۋە /var/log/dist-upgrade/ دىكى " "ھۆججەتلەرنى مەلۇماتقا قوشۇپ ئەۋەتىڭ.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "يۈكسەلدۈرۈش توختىتىلدى. ئىنتېرنېت باغلىنىشىنى ياكى ئورنىتىش دىسكىسىنى " "تەكشۈرۈڭ ۋە قايتا قىلىڭ. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "كېرەكسىز بوغچىلارنى ئۆچۈرسۇنمۇ؟" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "تەگمە(_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "چىقىرىۋەت(_R)" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "تازىلاۋاتقاندا مەسىلە كۆرۈلدى. تەپسىلىي ئەھۋالنى تۆۋەندىكى ئۇچۇردىن كۆرۈڭ " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "زۆرۈر بېقىنمىلار ئورنىتىلمىغان" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "زۆرۈر بېقىنما '%s' ئورنىتىلمىغان. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "بوغچا باشقۇرغۇچنى تەكشۈرۈۋاتىدۇ" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "يېڭىلاشقا تەييارلىنىش مەغلۇپ بولدى" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "سىستېمىنى يۈكسەلدۈرۈش تەييارلىقى مەغلۇپ بولدى، شۇڭا كەمتۈك مەلۇم قىلىش " "مەشغۇلاتى باشلىنىدۇ." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "يۈكسەلدۈرۈشكە زۆرۈر بولغان مەزمۇنلارنى ئېلىش مەغلۇپ بولدى." #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "يېڭىلاشقا زۆرۈر بولغانلارنى ئېلىش مۇمكىن بولمىدى. يېڭىلاش توختىتىلىپ " "ئەسلىدىكى سىستېما ئەسلىگە كەلتۈرۈلىدۇ.\n" "\n" "يەنە كەمتۈك مەلۇم قىلىش جەريانى باشلىنىۋاتىدۇ." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "خەزىنە ئۇچۇرىنى يېڭىلاۋاتىدۇ" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "cdrom نى قوشۇش مەغلۇپ بولدى." #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "كەچۈرۈڭ، cdrom قوشۇش مۇۋەپپەقىيەتلىك بولمىدى." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "ئىناۋەتسىز بوغچا ئۇچۇرى" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "تۇتۇۋاتىدۇ" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "يۈكسەلدۈرۈۋاتىدۇ" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "يۈكسەلدۈرۈش تامام" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "نەشرنى ئۆرلىتىش تاماملاندى، بىراق نەشرىنى ئۆرلىتىش جەريانىدا خاتالىق كۆرۈلدى." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "كېرەكسىز دېتاللارنى ئىزدەۋاتىدۇ" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "سىستېمىنى يۈكسەلدۈرۈش تاماملاندى." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "قىسمى يۈكسەلدۈرۈش تاماملاندى." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "نەشر ئۇچۇرلىرى تېپىلمىدى" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "مۇلازىمېتىرنىڭ يۈكى ئېشىپ كەتكەندەك قىلىدۇ. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "نەشر ئۇچۇرلىرى چۈشۈرەلمىدى" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "ئىنتېرنېت باغلىنىشىنى تەكشۈرۈڭ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "'%(signature)s' غا قارتا '%(file)s' نى دەلىللەش " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "يېيىۋاتقىنى ‹%s›" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "يۈكسەلدۈرۈش قورالىنى ئىجرا قىلغىلى بولمىدى" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "يۈكسەلدۈرۈش قورالىدا كەمتۈك باردەك قىلىدۇ. بۇ كەمتۈكنى ‹ubuntu-bug ubuntu-" "release-upgrader-core› بۇيرۇقىنى ئىشلىتىپ مەلۇم قىلىڭ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "يۈكسەلدۈرۈش قورالى ئىمزاسى" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "يۈكسەلدۈرۈش قورالى" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "ئېلىش مەغلۇپ بولدى" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "يۈكسەلدۈرمىنى ئېلىش مەغلۇپ بولدى. توردا مەسىلە باردەك قىلىدۇ. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "سالاھىيەت دەلىللەش مەغلۇپ بولدى" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "يۈكسەلدۈرمىنى دەلىللەش مەغلۇپ بولدى. تور ياكى مۇلازىمېتىردا مەسىلە باردەك " "قىلىدۇ. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "يېيىش مەغلۇپ بولدى" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "يۈكسەلدۈرمىنى يېيىش مەغلۇپ بولدى. توردا ياكى مۇلازىمېتىردا مەسىلە باردەك " "قىلىدۇ. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "ئىسپاتلاش مەغلۇپ بولدى" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "يۈكسەلدۈرمىنى تەكشۈرۈش مەغلۇپ بولدى. تور ياكى مۇلازىمېتىردا مەسىلە باردەك " "قىلىدۇ. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "يۈكسەلدۈرۈشنى ئىجرا قىلغىلى بولمىدى" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "سىستېما /tmp نى noexec تاللانمىسى بىلەن ئېگەرلىگەن بولسا، مۇشۇنداق ئەھۋال " "كۆرۈلىدۇ./tmp نى noexec ئىشلەتمەي قايتا ئېگەرلەڭ ۋە يۈكسەلدۈرۈشنى قايتا " "ئىجرا قىلىڭ." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "خاتالىق ئۇچۇرى '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "يۈكسەلدۈر" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "تارقىتىش چۈشەندۈرۈشى" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "قوشۇمچە بوغچا ھۆججەتلىرىنى چۈشۈرۈۋاتىدۇ..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "ھۆججەت%s / %s (%sB/s)" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "ھۆججەت %s / %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "'%s' نى قوزغاتقۇچ '%s' غا سېلىڭ" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "ۋاسىتە ئۆزگەرتىش" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms ئىشلىتىلىۋاتىدۇ" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "سىستېمىدىكى /proc/mounts دا 'evms' دىسكا باشقۇرغۇ ئىشلىتىلىپتۇ. 'evms' " "يۇمشاق دېتالىنى بۇنىڭدىن ئىشلەتكىلى بولمايدۇ، ئۇنى ئېتىۋېتىپ، ئاندىن " "يۈكسەلدۈرۈشنى قايتا ئىجرا قىلىڭ." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "كومپيۇتېرىدىكى كۆرسىتىش كارتىسىنى ئۇبۇنتۇ 12.04 LTS تولۇق قوللىمايدۇ." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "ئۇبۇنتۇ 12.04 LTS دا Intel كۆرسىتىل كارتىسىنى تولۇق قوللاش تېخى ئەمەلگە " "ئاشمىدى، شۇڭا يۈكسەلدۈرۈلسە مەسىلە كېلىپ چىقىش ئېھتىماللىقى بار. تەپسىلىي " "ئۇچۇرلارنى https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx دىن " "كۆرۈشكە بولىدۇ. يۈكسەلدۈرۈشنى داۋاملاشتۇرامسىز؟" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "يۈكسەلدۈرۈلسە ئۈستەلئۈستى ئۈنۈمى، ئويۇنلار ۋە باشقا گرافىكىلىق " "پروگراممىلارنىڭ ئىقتىدارىدا ئاجىزلاش بولىدۇ." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "كومپيۇتېرىڭىزدا NVIDIA 'nvidia' گرافىك قوزغىتىش پروگراممىسى " "ئىشلىتىلىۋېتىپتۇ. ئۇبۇنتۇ 10.04 LTS نەشرىدە بۇنىڭغا ماس كېلىدىغان قوزغىتىش " "پروگراممىسى يوق. .\n" "\n" "داۋاملاشتۇرامسىز?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "كومپيۇتېرىڭىزدا AMD 'fglrx' گرافىك قوزغىتىش پروگراممىسى ئىشلىتىلىۋېتىپتۇ. " "ئۇبۇنتۇ 10.04 LTS نەشرىدە بۇنىڭغا ماس كېلىدىغان قوزغىتىش پروگراممىسى يوق. .\n" "\n" "داۋاملاشتۇرامسىز?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "i686 تىپلىق CPU ئەمەس" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "سىستېمىڭىزدىكى CPU نىڭ تىپى i586 ئىكەن، بۇنىڭدا 'cmov' كېڭەيتىلمىسى يوق. " "بارلىق بوغچىلار i686 تىپلىق CPU نى ئىشلىتىپ ئەلالاشتۇرۇش ئىقتىدارىنى " "ئىشلىتىپ قۇرۇلغان. بۇ كومپيۇتېرىڭىزدا، سىستېمىڭىزنى ئۇبۇنتۇنىڭ يېڭى نەشرىگە " "يۈكسەلدۈرەلەيسىز." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "ARMv6 تىپىدىكى CPU ئەمەس" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "سىزنىڭ كومپيۇتېرىڭىز ARM CPU نى ئىشلىتىۋېتىپتۇ، بۇ ARMv6 architecture دىن " "كونا. karmic تىكى بارلىق بوغچىلار ARMv6 غا ماسلاشتۇرۇلغان بولۇپ، " "كومپيۇتېرىڭىزدا ئىشلەتكىلى بولمايدۇ. شۇڭا سىستېمىنى يېڭىلىيالمايسىز." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "init يوقكەن" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "سىستېمىڭىز init مۇئەككەلى يوق، مەۋھۇم مۇھىتتەك قىلىدۇ يەنى e.g. Linux-" "VServer دەك. ئۇبۇنتۇ 10.04 LTS دا بۇنداق مۇھىتتا ئىشلىمەيدۇ. ئالدى بىلەن " "مەۋھۇم ماشىنىنىڭ تەڭشىكىنى يېڭىلاش تەلەپ قىلىنىدۇ.\n" "\n" "داۋاملاشتۇرامسىز?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "aufs نى ئىشلىتىپ Sandbox يۈكسەلدۈرۈش" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "يۈكسەلدۈرۈگىلى بولىدىغان بوغچا بار cdrom نى ئىزدەش ئۈچۈن بېرىلگەن يولنى " "ئىشلەتسۇن" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "ئالدىئۇچ ئىشلىتىڭ. ھازىر ئىشلەتكىلى بولىدىغان پروگراممىلار: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*DEPRECATED* تاللانمىسىغا پەرۋا قىلمايدۇ" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "پەقەتلا قىسمى يۈكسەلدۈرۈش(sources.list نى ئۆزگەرتمەيدۇ)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU screen قوللىشىنى ئىناۋەتسىز قىل" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "datadir نى تەڭشەش" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "ئېلىش تاماملاندى" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "ھۆججەت ئېلىۋاتىدۇ %li / %li(تېزلىك %sB/s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "تەخمىنەن %s قالدى" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "ھۆججەت ئېلىۋاتىدۇ %li / %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "ئۆزگەرتىشلەرنى قوللىنىۋاتىدۇ" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "بېقىنىش مەسىلىسى - سەپلەنمىدى" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' ئورناتقىلى بولمىدى" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "يۈكسەلدۈرۈش داۋاملاشتۇرۇلىدۇ، بىراق بوغچا '%s' ئىشلىمەسلىكى مۇمكىن. بۇ ھەقتە " "كەمتۈك دوكلاتى يوللاشنى ئويلىشىپ كۆرۈڭ." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "customize قىلىنغان سەپلىمە ھۆججەت '%s'\n" "نى ئالماشتۇرسۇنمۇ؟" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "سەپلىمە ھۆججەتنى يېڭى نەشرگە ئالماشتۇرۇشنى تاللىسىڭىز، كونىسىدىكى " "ئۆزگىرىشلەرنىڭ ھەممىسى يوق بولىدۇ." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "'diff' بۇيرۇقى تېپىلمىدى" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "ئېغىر خاتالىق يۈز بەردى" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "بۇنى كەمتۈك دەپ قاراپ مەلۇم قىلىڭ. ھەم مەلۇماتقا /var/log/dist-" "upgrade/main.log ۋە /var/log/dist-upgrade/apt.log نى قوشۇپ ئەۋەتىڭ. " "يۈكسەلدۈرۈش توختىتىلدى.\n" "ئەسلىدىكى sources.list ھۆججىتى /etc/apt/sources.list.distUpgrade قىلىپ " "ساقلاندى." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c بېسىلدى" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "بۇ مەشغۇلاتنى بىكار قىلىشى ھەمدە سىستېمىنى پالەچ ھالغا چۈشۈرۈپ قويۇشى " "مۇمكىن. مەشغۇلاتىڭىزنى جەزملەشتۈرەمسىز؟" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "سانلىق-مەلۇماتلارنىڭ يوقالماسلىقى ئۈچۈن بارلىق پروگرامما ۋە پۈتۈكلەرنى " "ئېتىۋېتىڭ" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Canonical (%s) ئەمدى تېخنىكىلىق ياردەم بەرمەيدۇ" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "نەشرىنى تۆۋەنلىتىش (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "ئۆچۈرۈش (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "ئەمدى زۆرۈر ئەمەس (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "ئورنىتىش (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "يۈكسەلدۈرۈش(%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "پەرقنى كۆرسىتىش" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< پەرقنى يوشۇرۇش" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "خاتالىق" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "ياپ(&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "تېرمىنالنى كۆرسىتىش >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< تېرمىنالنى يوشۇرۇش" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "ئۇچۇر" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "تەپسىلاتلار" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "ئەمدى تېخنىكىلىق ياردەم بېرىلمەيدۇ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s نى ئۆچۈرۈش" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "(ئاپتوماتىك ئورنىتىلغان)%s نى ئۆچۈرۈش" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s نى ئورنىتىش" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s نى يۈكسەلدۈرۈش" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "قايتا قوزغىتىش زۆرۈر" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "يۈكسەلدۈرۈشنى تاماملاش ئۈچۈن سىستېمىنى قايتا قوزغىتىش زۆرۈر" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "ھازىر قايتا قوزغات(_R)" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "سىستېمىڭىز ئىشلەتكىلى بولمايدىغان ھالەتكە چۈشۈپ قالىدۇ. يۈكسەلدۈرۈشنى " "داۋاملاشتۇرۇشىڭىزنى كۈچلۈك تەۋسىيە قىلىمىز." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "يۈكسەلدۈرۈشنى ئەمەلدىن قالدۇرامسىز؟" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li كۈن" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li سائەت" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li مىنۇت" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li سېكۇنت" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "چۈشۈرۈشكە كېتىدىغان ۋاقىت: 1 مېگابىتلىق DSL دا تەخمىنەن %s، 56k مودېمدا " "تەخمىنەن %s" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "چۈشۈرۈشكە تەخمىنەن %s كېتىدۇ. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "يۈكسەلدۈرۈشكە تەييارلىنىۋاتىدۇ" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "يېڭى يۇمشاق دېتال قانىلىغا ئېرىشىش" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "يېڭى بوغچىغا ئېرىشىش" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "يۈكسەلدۈرمىلەرنى ئورنىتىش" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "تازىلاۋاتىدۇ" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "ئورنىتىلغان %(amount)d بوغچىغا Canonical ئەمدى تېخنىكىلىق ياردەم بەرمەيدۇ، " "ياردەمنى ئۇبۇنتۇ جامائىتى بېرىدۇ." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d دانە بوغچا ئۆچۈرۈلمەكچى" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d دانە يېڭى بوغچا ئورنىتىلماقچى" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d دانە يېڭى بوغچا يۈكسەلدۈرۈلىدۇ." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "جەمئىي %s چۈشۈرۈش زۆرۈر " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "يېڭىلانمىلارنى ئورنىتىشقا بىر نەچچە سائەت كېتىدۇ. چۈشۈرۈش تاماملانغاندىن " "كېيىن، مەشغۇلاتنى ئەمەلدىن قالدۇرغىلى بولمايدۇ." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "يېڭىلانمىلارنى ئېلىپ كېلىش ۋە ئورنىتىشقا بىر نەچچە سائەت كېتىدۇ. چۈشۈرۈش " "تاماملانغاندىن كېيىن، مەشغۇلاتنى ئەمەلدىن قالدۇرغىلى بولمايدۇ." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "بوغچىلارنى چىقىرىۋېتىشكە بىر نەچچە سائەت كېتىدۇ. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "كومپيۇتېردىكى بارلىق يۇمشاق دېتاللار ئەڭ يېڭى ھالەتتە." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "سىستېمىڭىزنى يۈكسەلدۈرۈشنىڭ ھاجىتى يوق. يۈكسەلدۈرۈش توختىتىلىدۇ" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "قايتا قوزغىتىش زۆرۈر" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "قىلىش تاماملاندى، قايتا قوزغىتىش زۆرۈر. قايتا قوزغىتامسىز؟" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "بۇنى كەمتۈك دەپ قاراپ مەلۇم قىلىڭ. ھەم مەلۇماتقا /var/log/dist-" "upgrade/main.log ۋە /var/log/dist-upgrade/apt.log نى قوشۇپ ئەۋەتىڭ. " "يۈكسەلدۈرۈش توختىتىلدى.\n" "ئەسلىدىكى sources.list ھۆججىتى /etc/apt/sources.list.distUpgrade قىلىپ " "ساقلاندى." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "توختىتىۋاتىدۇ" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "تۆۋەنلىتىلدى:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "داۋاملاشتۇرۇش ئۈچۈن [ENTER] نى بېسىڭ" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "داۋاملاشتۇرۇش[yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "تەپسىلاتلار[d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "بۇنىڭدىن كېيىن ئىشلەتكىلى بولمايدۇ: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "ئۆچۈرۈش: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "ئورنىتىش: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "يۈكسەلدۈرۈش: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "داۋاملاشتۇرۇش: [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "يۈكسەلدۈرۈش تاماملاش ئۈچۈن قايتا قوزغىتىش زۆرۈردۇر.\n" "'y' نى تاللىسىڭىز سىستېما قايتا قوزغىلىدۇ." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "ھۆججەت چۈشۈرۈۋاتىدۇ %(current)li / %(total)li تېزلىكى %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "ھۆججەت چۈشۈرۈۋاتىدۇ %(current)li / %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "ھەر بىر ھۆججەتنىڭ بىر تەرەپ قىلىش جەريانىنى كۆرسەتسۇن" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "يۈكسەلدۈرۈشنى ئەمەلدىن قالدۇر(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "يۈكسەلدۈرۈشنى داۋاملاشتۇر" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "ئىجرا قىلىۋاتقان يۈكسەلدۈرۈشنى ئەمەلدىن قالدۇرامسىز؟\n" "\n" "ئەگەر ئەمەلدىن قالدۇرسىڭىز سىستېمىڭىز ئىشلەتكىلى بولمايدىغان ھالەتكە چۈشۈپ " "قالىدۇ. يۈكسەلدۈرۈشنى داۋاملاشتۇرۇشىڭىزنى كۈچلۈك تەۋسىيە قىلىمىز." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "يۈكسەلدۈرۈشنى باشلا(_S)" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "ئالماشتۇر(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "ھۆججەتلەر ئارىسىدىكى پەرق" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "كەمتۈك مەلۇم قىلىش(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "داۋاملاشتۇر(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "يۈكسەلدۈرۈشنى باشلامسىز؟" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "يۈكسەلدۈرۈشنى تاماملاش ئۈچۈن سىستېمىنى قايتا قوزغىتىدۇ.\n" "\n" "شۇڭا ئاۋۋال ھازىرقى ساقلاشقا تېگىشلىك مەزمۇنلارنى ساقلىۋېلىڭ." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "تارقىتىلمىنى يۈكسەلدۈرۈش" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "يېڭى يۇمشاق دېتال قانىلىنى تەڭشەش" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "كومپيۇتېرنى قايتا قوزغىتىش" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "تېرمىنال" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "يۈكسەلدۈر(_U)" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "ئۇبۇنتۇنىڭ يېڭى نەشرى بار ئىكەن، يۈكسەلدۈرەمسىز؟" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "يۈكسەلدۈرمە" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "كېيىن سورىغىن" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "ھەئە، ھازىرلا يۈكسەلدۈر" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "يېڭى ئۇبۇنتۇغا يۈكسەلدۈرۈشنى رەت قىلدىڭىز" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "يۇمشاق دېتال يېڭىلىغۇدىكى «يۈكسەلدۈر» نى چېكىش ئارقىلىق كېيىن يەنە " "يۈكسەلدۈرەلەيسىز." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "تولۇق يۈكسەلدۈرۈش" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "ئۇبۇنتۇنى يۈكسەلدۈرۈش ئۈچۈن كىملىك دەلىللەش زۆرۈر." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "قىسمى يۈكسەلدۈرۈش" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "قىسمى يۈكسەلدۈرۈش ئۈچۈن كىملىك دەلىللەش زۆرۈر." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "نەشرىنى كۆرسىتىپ چېكىنىش" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "سانلىق-مەلۇمات ھۆججەتلىرىنى ئوز ئىچىگە ئالغان مۇندەرىجە" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "بەلگىلەنگەن ئالدىئۇچنى ئىجرا قىلىش" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "قىسمى يۈكسەلدۈرۈشنى ئىجرا قىلىۋاتىدۇ" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "نەشر يۈكسەلدۈرۈش قورالىنى چۈشۈرۈۋاتىدۇ" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "مۇمكىن ئىجادىيەت باسقۇچىدىكى نەشرنى تەكشۈرسۇن" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "$distro-proposed دىكى يۈكسەلدۈرگۈچنى ئىشلىتىپ ئەڭ يېڭى نەشرىگە يۈكسەلدۈرۈپ " "بېقىڭ." #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "ئالاھىدە يۈكسەلدۈرۈش ھالىتىدە ئىجرا قىلىش.\n" "نۆۋەتتە ئۈستەلئۈستى نەشرىدە 'desktop' دېگەن تاللانمىنى، مۇلازىمېتىر نەشرىدە " "'server' دېگەن تاللانمىنى قوللايدۇ." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "sandbox aufs overlay بىلەن يۈكسەلدۈرۈشنى سىناپ بېقىش" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "ئۇبۇنتۇنىڭ يېڭى نەشرىنىڭ بار-يوقلۇقىنىلا تەكشۈرۈپ، نەتىجىنى exit code مەلۇم " "قىلىش" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "ئۇبۇنتۇنىڭ يېڭى نەشرىنى تەكشۈرۈش" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "سىز ئىشلىتىۋاتقان ئۇبۇنتۇغا ئەمدى تېخنىكىلىق ياردەم تەمىنلەنمەيدۇ." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "يېڭىلانمىلار ھەققىدىكى ئۇچۇرلارنى بىلىش ئۈچۈن تۆۋەندىكى تورتۇرانى زىيارەت " "قىلىڭ:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "يېڭى نەشرى يوقكەن" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "ھازىر يۈكسەلدۈرۈش مۇمكىن ئەمەس" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "نۆۋەتتە يۈكسەلدۈرۈش مەشغۇلاتىنى ئېلىپ بېرىشقا بولمىدى. كېيىن قايتا سىناپ " "كۆرۈڭ. مۇلازىمېتىر تۆۋەندىكىنى مەلۇم قىلدى: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "يېڭى نەشرى '%s' بار ئىكەن." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "يۈكسەلدۈرۈش ئۈچۈن 'do-release-upgrade' نى ئىجرا قىلىڭ." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "ئۇبۇنتۇ %(version)s نىڭ يۈكسەلدۈرمىسى بار ئىكەن" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "ئۇبۇنتۇ %s غا يۈكسەلدۈرۈشنى رەت قىلدىڭىز" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "سازلاش نەتىجىلىرىنى چىقىرىشنى قوشۇش" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "قىسمى يۈكسەلدۈرۈش ئۈچۈن كىملىك دەلىللەش زۆرۈر" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "تولۇق يۈكسەلدۈرۈش ئۈچۈن كىملىك دەلىللەش زۆرۈر" ubuntu-release-upgrader-0.220.10/po/zh_CN.po0000644000000000000000000016460412431225715015365 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Funda Wang , 2005. # # YunQiang Su , 2012. # msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-07-20 01:56+0000\n" "Last-Translator: Wang Dianjin \n" "Language-Team: Chinese (simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:54+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s 的服务器" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "主服务器" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "自定义服务器" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "无法计算 sources.list 条目" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "无法定位任何软件包文件,也许这张不是 Ubuntu 光盘,或者其架构错误?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "添加 CD 失败" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "添加 CD 时出错,升级中止。如果这是一张有效的 Ubuntu CD,请您报告这个错误。\n" "\n" "错误信息是:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "卸载状态异常的软件包" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "软件包“%s”处于不一致的状态,需要重新安装,但是没有找到对应的存档。您希望现在删除这个软件包以进行下一步吗?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "服务器可能已过载" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "破损的软件包" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "您的系统包含有本软件不能修复的破损软件包,在您继续前请先用新立得或者 apt-get 修复它们。" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "在准备升级时发生了一个无法解决的问题:\n" "%s\n" "\n" " 这可能是由以下原因引起的:\n" " * 升级到了预发行 Ubuntu 版本\n" " * 正在运行当前的预发行 Ubuntu 版本\n" " * 非 Ubuntu 提供的非官方软件包\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "很可能发生了一个传输问题,请稍后重试。" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "如果这些都不生效,请在终端中使用命令 'ubuntu-bug ubuntu-release-upgrader-core' 来报告 bug。" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "无法计算升级" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "一些软件包认证出错" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "一些软件包无法通过签名验证。这可能是暂时的网络问题,您可以在稍后再试。以下是未认证软件包的列表。" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "软件包“%s”标记为可移除,但它已在移除黑名单中。" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "必要的软件包“%s”被标记为移除。" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "尝试安装黑名单版本“%s”" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "无法安装 '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "无法安装所需的软件包。请在终端使用“ubuntu-bug ubuntu-release-upgrader-core”将其报为 bug。" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "无法猜出元软件包" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "您的系统没有安装 ubuntu-desktop,kubuntu-desktop 或 eubuntu-desktop 软件包所以无法确定运行的 " "ubuntu 的版本。\n" " 请先用新立得或 APT 安装以上所举软件包中的一个。" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "正在读取缓存" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "无法获得排它锁" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "这通常意味着另一个软件包管理程序(如 apt-get 或 aptitude)正在运行。请先关闭那个程序。" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "不支持通过远程连接升级" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "您正在通过远程 SSH 升级,而前端程序不支持这种方式。请尝试在文本模式下通过 'do-release-upgrade' 命令进行升级。\n" "\n" "现在将退出升级。请试试不使用 ssh 的方式。" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "继续在 SSH 下执行?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "此会话似乎是在 SSH 下运行。目前不推荐通过 SSH 执行升级,因为升级失败时较难恢复。\n" "\n" "如果您选择继续,将在 '%s' 端口上建立额外的 SSH 守护进程。\n" "您想要继续吗?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "正在启用额外的 ssh 守护进程" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "为了在失败时更容易恢复,将在端口“%s”开启一个额外的 ssh 守护进程。如果当前运行的 ssh 发生错误,您仍能够通过该额外的 ssh 进行连接。\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "如果您运行了一个防火墙,可能需要临时打开这个端口。这可能有些危险,因此没有自动进行这个操作。您可以通过类似这样的命令打开端口:\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "无法升级" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "此工具不支持从 '%s' 到 ‘%s' 的升级。" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "安装沙盒失败" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "不能创建沙盒环境" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "沙盒模式" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "本次更新运行在沙盘(测试)模式,所有变更都将写入 '%s' 并会在重启后丢失。\n" "\n" "从现在起对系统目录的变更重启后都将 *不复存在* 。" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "您的 python 安装错误,请修复“/usr/bin/python”符号链接。" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "已安装软件包“debsig-verify”" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "由于安装了上述软件包而无法继续升级。\n" "请使用新立得软件包管理器来移除它,或者先使用 “sudo apt-get remove debsig-verify”卸载后再重新尝试升级。" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "无法写入 '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "无法写入您的系统目录 %s ,升级无法继续。\n" "请确保系统目录可写。" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "包括网络上的最新更新?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "升级系统能够从网络上自动下载最新的更新文件并自动安装。如果网络连接可用,强烈建议启用此选项。\n" "\n" "升级时间可能加长,但升级结束后,您的系统将是最新的。您也可以选择在升级结束后再进行系统更新。\n" "如果选择\"否\",就不会使用网络。" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "已禁止升级到 %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "未找到可用的镜像" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "扫描仓库时未发现升级信息。可能您使用的是内部镜像或者镜像信息已经过期。\n" "\n" "是否依然重写 \"sources.list\" 文件?如果选择“是”,将会把所有 “%s” 升级到 “%s”。" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "生成默认的源?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "扫描“sources.list”后未发现用于“%s”的可用项。\n" "\n" "是否为“%s”添加默认项?如果选择“否”,将会取消升级。" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "仓库信息无效" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "更新软件源时返回了无效文件,已启动错误报告进程。" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "第三方源被禁用" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "您的 sources.list 中的一些第三方源被禁用。您可以在升级后用\"软件源\"工具或包管理器来重新启用它们。" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "软件包存在冲突" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "软件包“%s”处于冲突状态,需要重新安装, 但是没能找到它的存档。请重新手动安装这个软件包或者将其从系统中删除。" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "升级时出错" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "升级过程中出错。这通常是一些网络问题,请检查您的网络连接后再试" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "磁盘空间不足" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "升级已被中断。此次升级需要有 %s 的可用空间在磁盘 %s 上。请释放至少 %s 的空间在磁盘 %s 上。您可以清空回收站并使用“sudo apt-" "get clean”命令以清除之前安装操作留下的临时文件。" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "正在计算变更" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "您要开始升级么?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "升级已取消" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "升级将会取消,系统会恢复到原始状态。您可以在之后继续升级。" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "无法下载升级包" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "已中止升级。请检查您的互联网连接或安装媒体并重试。所有已下载的文件都已保存。" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "确认时出错" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "正在恢复原始系统状态" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "无法安装升级" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "更新已取消。您的系统可能处在不稳定状态。正在恢复 (dpkg --configure -a)。" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "请将问题报告至 http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-" "upgrader/+filebug 并将 /var/log/dist-upgrade/ 文件作为附件上传到问题报告。\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "更新已取消。请检查您的因特网连接或安装媒体,然后再试一遍。 " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "删除陈旧的软件包?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "保持(_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "删除(_R)" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "清理时出现问题。更多信息请查看以下消息。 " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "需要的依赖关系未安装" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "需要的依赖关系“%s”未安装 。 " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "正在检查软件包管理器" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "升级准备失败" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "更新时的系统准备失败,已启动错误报告进程。" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "准备升级失败" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "系统不能满足升级先决条件。现在会中止升级并恢复原来的系统状态。\n" "\n" "此外,错误报告进程也将启动。" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "正在更新软件仓库信息" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "添加光驱失败" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "对不起,没有成功添加光驱。" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "无效的软件包信息" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "正在获取" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "正在升级" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "升级完成" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "升级已完成,但其间出现错误。" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "正在搜索废弃的软件" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "系统升级完成" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "部分升级完成。" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "无法找到发行注记" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "服务器可能已过载。 " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "无法下载发行说明" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "请检查您的互联网连接。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "使用 '%(signature)s' 对 '%(file)s' 进行验证 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "正在提取 '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "不能运行升级工具" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "这很有可能是升级工具中的一个 bug。请使用命令“ubuntu-bug ubuntu-release-upgrader-core”将其报为 bug。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "升级工具签名" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "升级工具" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "下载失败" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "获取升级信息失败。可能网络有问题。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "认证失败" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "认证升级信息失败。可能是网络或服务器的问题。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "提取失败" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "提取升级信息失败。可能是网络或服务器的问题。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "验证失败" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "验证升级程序失败。可能是网络或服务器的问题。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "不能运行升级" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "可能的原因是系统的 /tmp 目录无可执行权限。请以可执行权限重新挂载该目录,重新升级。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "错误信息是“%s”。" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "升级" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "发行注记" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "正在下载附加软件包..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "文件 %s/%s 速度: %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "文件 %s/%s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "请将 '%s' 插入光驱 '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "改变介质" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms 使用中" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "您的系统在 /proc/mounts 中使用“evms”卷管理器。“evms”软件不再被支持,请关闭它并重新运行升级。" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "您的图形硬件不完全支持运行 'unity' 桌面环境。升级可能会产生一个非常缓慢的环境。我们建议暂时保持 LTS 版本。要获取更多信息,请访问 " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D 您是否要继续升级?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ubuntu 12.04 LTS 可能无法完全支持您的显卡。" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Ubuntu 12.04 LTS 对 Intel 图形硬件的支持有限制,升级后您可能会遭遇问题。更多信息,请查看 " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx 。仍然想要继续升级吗?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "升级过程可能会降低桌面特效,游戏性能以及对显示要求高的程序。" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "此计算机正在使用 NVIDIA “nvidia”显卡驱动。该驱动在 Ubuntu 10.04 LTS 中没有与您的硬件相适应的版本。\n" "\n" "您想继续吗?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "此计算机正在使用 AMD “fglrx”显卡驱动。该驱动在 Ubuntu 10.04 LTS 中没有与您的硬件相适应的版本。\n" "\n" "您想继续吗?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "非 i686 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "您的系统使用的是 i586 或是没有“cmov”扩展的 CPU。所有优化生成的软件包都需要最低 i686 的架构。这样的硬件无法升级到新的 Ubuntu " "发行版。" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "没有 ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "您的系统使用的是比 ARMv6 架构旧的 ARM CPU。karmic 中所有软件包构建时进行的优化都需要至少 ARMv6 的 CPU " "架构。在这种硬件基础上无法将您的系统升级到一个新的 Ubuntu 发行版。" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "无可用的 init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "您的系统似乎运行在一个没有 init daemon 的虚拟化环境中(如 Linux-VServer),Ubuntu 10.04 LTS " "无法在这种环境中运行,您需要先更新您的虚拟机配置。\n" "\n" "您确定要继续吗?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "使用 aufs 进行沙盒升级" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "使用所给的路径查找带升级包的 CD-ROM" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "使用前端。当前可用的有: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*已废弃* 这个选项将被忽略" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "仅执行部分升级(不重写 sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "关闭对 GNU screen 的支持" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "设置数据目录" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "下载完成" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "正在下载文件 %li/%li 速度 %s/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "大约还要 %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "下载第 %li 个文件(共 %li 个文件)" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "正在应用更改" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "依赖关系问题 - 保持未配置状态" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "无法安装“%s”" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "升级将继续进行,但“%s”可能没有工作。请考虑提交关于它的错误报告。" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "替换自定义配置文件\n" "“%s”吗?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "如果选择替换为新版本的配置文件,您将会失去所有已做的修改。" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "找不到 diff 命令" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "出现致命错误" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "请报告这个错误(如果还没有的话)并在报告中包括文件 /var/log/dist-upgrade/main.log 和 /var/log/dist-" "upgrade/apt.log 。升级已取消。\n" "您的原始 sources.list 已保存在 /etc/apt/sources.list.distUpgrade 。" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Crtl+C 被按下" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "这将取消本次操作且可能使系统处于被破坏的状态。您确定要这样做?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "为防止数据丢失,请关闭所有打开的应用程序和文档。" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "不再被 Canonical 支持 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "降级 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "卸载 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "不再需要 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "安装 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "升级 (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "显示差别 >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< 隐藏差别" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "错误" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "取消(&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "关闭(&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "显示终端 >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< 隐藏终端" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "信息" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "细节" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "不再支持 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "移除 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "移除(被自动安装的) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "安装 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "升级 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "需要重启" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "重新启动系统以完成升级" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "现在重启(_R)" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "取消正在运行的升级?\n" "\n" "如果取消升级系统可能不稳定,强烈建议您继续升级。" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "取消升级?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li 天" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li 小时" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li 分钟" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li 秒" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "使用 1Mbit 的 DSL 连接下载需要大约 %s 秒的时间, 使用 56K 的调制解调器连接大约需要 %s 秒时间。" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "根据您的连接速度,这次下载将要用大约 %s 的时间 " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "正在准备升级" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "获得新的软件源" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "获取新的软件包" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "正在安装升级" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "正在清理" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "%(amount)d 个已安装的软件包不再被 Canonical 支持。您仍然可以获得社区支持。" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "将删除 %d 个软件包。" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "将安装 %d 个新的软件包。" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "将升级 %d 个软件包。" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "您共需下载 %s。 " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "安装升级可能会耗费几小时的时间。一旦下载完毕就不能取消该进程。" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "升级文件的获取和安装可能会耗费几小时的时间。一旦下载完毕就不能取消该进程。" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "包的删除可能会耗费几小时的时间。 " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "此计算机中的软件是最新软件。" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "你的系统没有可用升级。升级被取消。" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "需要重启" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "升级已经完成并需要重启。您要现在重启么?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "请报告这个错误并在报告中包括文件 /var/log/dist-upgrade/main.log 和 /var/log/dist-" "upgrade/apt.log 。升级已取消。\n" "您的原始 sources.list 已保存在 /etc/apt/sources.list.distUpgrade 。" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "中止" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "降级:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "按 [ENTER] 键以继续" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "继续 [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "详细信息[d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "详" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "不再支持:%s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "移除:%s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "安装:%s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "升级:%s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "继续 [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "为了完成升级,必须重新启动。\n" "如果你选择“是”,系统将会重新启动。" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "正在下载文件 %(current)li/%(total)li 速度 %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "正在下载文件 %(current)li/%(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "显示单个文件进度" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "取消升级(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "恢复升级(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "取消正在运行的升级?\n" "如果您取消升级,系统可能不稳定。强烈建议您继续升级。" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "开始升级(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "替换(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "文件之间的差别" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "报告 Bug(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "继续(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "开始升级?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "重启系统以完成升级\n" "\n" "请在继续前保存你的工作。" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "发行版升级" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "设定新的软件源" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "系统正在重新启动" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "终端" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "升级(_U)" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "有新版本的 Ubuntu 可用。您想升级吗?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "不升级" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "稍后询问" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "是的,现在就升级" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "您已经拒绝升级到新版本的 Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "您可以稍后升级,打开软件更新器并点击“升级”即可。" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "执行版本升级" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "升级 Ubuntu 版本前,您需要授权该操作。" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "执行部分升级" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "进行部分升级前,您需要授权该操作。" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "显示版本并退出" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "包含数据文件的文件夹" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "运行指定的前端" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "运行部分升级" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "正在下载发布升级工具" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "验证是否能够升级到最新版本" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "尝试通过 $distro-proposed 更新到最新版本。" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "以特定模式升级。\n" "目前支持:用“桌面”为桌面系统,“服务器”为服务器系统升级。" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "进行带沙盒 aufs 隔离层的测试升级" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "仅在有新的发行版发布时检查,并通过退出码(exit code)报告结果" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "正在检查新版 Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "不再提供您的 Ubuntu 版本的支持。" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "要获得关于升级的信息,请访问:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "未发现新版本" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "版本升级目前不可用" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "发行版目前无法更新,请再试一次。服务器报告:'%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "有新版本“%s”可供使用" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "运行“do-release-upgrade”来升级到新版本。" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s 升级可用" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "您已经拒绝升级到 Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "添加调试输出" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "执行版本升级需要授权" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "执行部分升级需要授权" ubuntu-release-upgrader-0.220.10/po/kk.po0000644000000000000000000021532012431225715014761 0ustar # Kazakh translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Kazakh \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: kk\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s үшін сервер" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Негізгі сервер" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Өзіңіздің серверлеріңіз" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list элементін санау мүмкін емес" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Пакеттер файлдарын табу мүмкін емес, мүмкін бұл Ubuntu дистрибутивының " "дискісі да емес, немесе бұрыс сәулетті диск шығар?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CD дискі қосу сәтсіз аяқталды" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD дискіні қосу кезінде қате туындады, жаңарту тоқтатылатын болады. Егер бұл " "дұрыс Ubuntu CD дискісі болған жағдайда, осы қате туралы хабарлауыңызды " "сұраймыз.\n" "\n" "Қате туралы мәлімдеме:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Қате етіп белгіленген пакетті жою" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "\"%s\" пакеті (немесе пакеттері) үйлесімді емес, оны (оларды) қайта орнату " "қажет, бірақ та оның (олардың) архивті файл(дары) табылмады. Әрі қарай " "жалғастыру үшін осы пакетті (пакеттерді) жойғыңыз келеді ме?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Мүмкін сервер асыра тиелген" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Бұзылған пакеттер" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Жүйеде, осы бағдарламамен жөндеу мүмкін емес, бұзылған пакеттер бар. Әрі " "қарай жалғастыру үшін оларды synaptic немесе apt-get бағдарламасының " "біреуінің көмегімен жөндеңіз." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Жаңартуды есептеу кезінде шешілмейтін қате пайда болды:\n" "%s\n" "\n" " Ол келесіден шығуы мүмкін:\n" " * Ubuntu-ның пререлизді нұсқасына дейін жаңартылуыдан\n" " * Ubuntu-ның ағымдағы пререлизді нұсқасын жүктелуінен\n" " * Ubuntu қолдау көрсетпейтін ресми емес бағдарламалар пакеттерінен\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Мүмкін бұл уақытша мәселе, кейінірек тағы байқап көріңіз." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Жүйенің жаңартуын есептеу мүмкін емес" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Кейбір пакеттердің растығын тексеру кезінде қате туындады" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Кейбір пакеттердің шынайлығын тексеру мүмкін емес. Мүмкін бұл желімен қысқа " "уақытты мәселе, кейінірек тағы қайталап көріңіз. Төменде шынайлығы тексеріле " "алынбаған пакеттер тізімі көрсетілген." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "\"%s\" пакеті жойылуға тиісті етіп белгіленген, бірақ ол жойылуға тыйым " "салынған тізімде." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "\"%s\" негізгі пакеті жойылуға тиісті етіп белгіленген." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" "Қара тізімге кірістірілген '%s' нұсқасының орнатылу мүмкіндігі орындалуда" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "\"%s\" орнату мүмкін емес" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Мета-пакетті теріп алынбады" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Сіздің жүйеңізде ubuntu-desktop, kubuntu-desktop, xubuntu-desktop немесе " "edubuntu-desktop пакеттері орнатылмаған, сондықтан сізде қандай Ubuntu " "жүйесі жүктелінгенін анықтау мүмкін емес.\n" " Алдымен, жоғары аталған пакеттердің біреуін, synaptic немесе apt-get " "бағдарламасының көмегімен орнатыңыз." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Кэшті оқу" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Ерекше бөгеттеу (блокировка) алу мүмкін емес" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Әдетте, бұл, пакеттерді басқару бағдарламаның (мысалыға, apt-get aptitude) " "басқа көшірмесі жұмыс істегінін білдіреді. Әрі қарай осы бағдарламамен жұмыс " "істеу үшін, басқа бағдарлама көшірмесін жабыңыз." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Алыстаған қосылыста жаңартуға тыйым салынған" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Сіз жаңарту мүмкіндігі жоқ клиенттік бағдарлама көмегімен ssh-қосылыспенен " "орындағыңыз келіп тұр. Текстік режимде \"do-release-upgrade\" қолданып " "жаңартыңыз.\n" "\n" "Жаңарту тоқтатылды. Жаңартуды ssh қолданбай-ақ жасап көріңіз." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH астында жұмысты жалғастыру қажет пе?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Бұл сеанс ssh арқылы жүруде. Жаңарту барысы сәтсіз болып қалатын болса, " "жүйені бұрыңғы қалыпқа келтіру қиынға соғады,\n" "сондықтан жаңартуларды ssh арқылы жасаумауға ескертеміз.\n" "\n" "Егер жалғастырамын десеңіз, ssh қосымша қызметі \"%s\" портында жұмыс " "істейтін болады.\n" "Әрі қарай жалғастырасыз ба?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Қосымша sshd қосылуы" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Қайта қалпына келтіруді жеңілдету үшін, қосымша sshd қызмет '%s' портында " "жүктелінеді. Егер бірдеңе болып қалса, осы қызметке ssh көмегімен қосыла " "аласыз.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Егер сізде бранмауэр қосылған болса, сізге осы портты уақытша ашуыңыз қажет " "болатын шығар. Бұл қауіпті ықтимал болғандықтан, порт автоматты ашылмайтын " "болады. Сіз оны өзіңіз келедей ашуыңызға болады:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Жаңарту мүмкін емес" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "'%s', '%s' дейін осы қосымша құралмен мүмкін емес." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "\"Құмсалғыш\" (песочница) орнату сәтсіз" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Қауіпсіз орта (құмсалғыш (песочница)) құру мүмкін емес." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "\"Құмсалғыш\" (песочница) режимі (қауіпсіз орта)" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Python дұрыс емес орнатылған. \"/usr/bin/python\" символдық сілтемені " "жөндеңіз." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "\"debsig-verify\" пакеті орнатылған" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Егер де осы пакет орнатылмаған болса, жаңарту жалғасу мүмкін емес.\n" "Ең алдымен оны Synaptic немесе 'apt-get remove debsig-verify' арқылы " "жойыңыз, кейін жаңартуды басынан жасап көріңіз." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Соңғы жаңартуларды Интернет желісінен жүктейін бе?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Соңғы жаңартулар интернеттен жүктеліну мүмкін емес және жүйенің толық " "жаңарту кезіндегі орнатыла алынбайды. Егер де сіз интернетке қосылған " "болсаңыз, оны қатаң түрде ұсынамыз.\n" "\n" "Жүйенің жаңартылуы ұзақ уақыт үрдіс, одан кейін сіздің жүйеңіз актуальды " "күйде болады. Сіз оны жасамауыңыз болады, бірақ та біз соңғы жаңартуларды " "тезірек орнатуыңызға ұсынамыз.\n" "Егер де сіз 'Жоқ' деп жауап берсеңіз, жаңартулар интернеттен жүктелінбейтін " "болады." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "%s дейін жаңарту кезінде бөгеттелген" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Дұрыс жұмыс істейтін айна табылмады" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Сіздің репозиторий туралы ақпаратты оқу кезінде, дистрибутивті жаңарту " "айналары табылмады. Бұл ішкі айнаны қолдану немесе айналар туралы ақпарат " "ескірген кезде болуы мүмкін.\n" "\n" "Сіз 'sources.list' қайта жазуыңызды қалайсыз ба? Егер 'Иә' таңдасаңыз, " "барлық '%s' жазу '%s' дейін жаңартылатын болады.\n" "Егер де 'Жоқ' таңдасаңыз, жаңарту тоқтатылады." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Қалыпты қайнар көздерді генерациялайын ба?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "'sources.list' файлындағы '%s' үшін жазу табылмады.\n" "\n" "'%s' үшін қалыпты жазуды қосу қажет пе? Егер 'Жоқ' таңдалғаны жаңартудан бас " "тартқаныңыз." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Репозиторий туралы ақпарат қате" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Үшінші жақты бағдарламалар қайнар көзі өшірілді" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "'sources.list' файлындағы қайнарлары қарастырылмайтын етіп белгіленген. " "Кейінірек сіз оларды қайтадан «Бағдарламалар қайнар көздер» қосымша " "бағдарламасында немесе сіздің пакеттер менеджерінде оларды оң етіп белгілеу " "арқылы қолданылуыңыз мүмкін." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Пакет(тер) тұрақсыз күйде" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "жаңартылатын \"%s\" пакеті толық емес және қайта орнатылуға тиіс, бірақ оған " "қатысты мұрағат файлы (архивный файл) табылмады. Бұл пакетті жекешелей " "жаңартыңыз немесе жойыңыз." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Жаңарту кезінде қате туындады" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Жаңарту кезіндегі мәселе туындады. Әдетте бұл желідегі мәселелерінің " "кесірінен болуы мүмкін. Желілік қосылыстарды тексеріп, қайталап көріңіз." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Дискіде қажетті бос орын жоқ" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Жаңарту үзілді. Жаңарту үшін \"%s\" дискісінде %s бос орын қажет. Ең аз " "дегенде \"%s\" дискісінде қосымша %s орын босатыңыз. Қоқыс шелегін босатыңыз " "және \"sudo apt-get clean\" команда орындау арқылы, алдыңғы орнатулардың " "уақытша жүктелген пакеттерін жойыңыз." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Өзгертулерді есептеу" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Жүйенің жаңартуын бастау қажет пе?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Жаңарту болдырылмады" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Бұл жаңарту тоқтатылып, жүйе бастапқы күйге келтірілетін болады. Жаңартуды " "кейінірек жалғастыруыңызға болады." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Жаңартуларды жүктеу мүмкін емес" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Жаңарту үзілді. Интернетпен қосылысыңызды не орнатушы дискісін тексеріңіз " "де, жаңартуды қайтадан орындап көріңіз. Барлық жүктелген файлдар " "сақталынатын болады." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Іске асыру кезінде қате туындады" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Жүйені бастапқы қалпына келтіру" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Жаңартуларды орнату мүмкін емес" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Жаңарту үзілді. Сіздің жүйеңіз бұзылып, қолдануға жарамсыз болуы мүмкін. " "Қазір қайта қалпына келтіру үрдісі орындалатын болады (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Жаңарту үзілді. Интернетпен қосылысыңызды не орнатушы дискісін тексеріңіз " "де, жаңартуды қайтадан орындап көріңіз. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Ескірген пакеттерді жоя қажет пе?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Қалдыру" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Жою" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Тазарту кезінді, мәселе туындады. Толық ақпарат төменде сипатталған. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Қажетті тәуелділіктер орнатылмаған" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Қажетті \"%s\" тәуелділігі орнатылмаған. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Пакеттер менеджері тексеру" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Жаңартуға дайындық сәтсіз аяқталды" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Жаңартуға дайындық сәтсіз аяқталды" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Репозиторий туралы ақпаратын жаңарту" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Дискті қосу сәтсіз аяқталды" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Кешіріңіз, дискті қосу сәтсіз аяқталды." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Пакет туралы дұрыс емес ақпарат" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Жүктелу" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Жаңартылу" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Жаңарту аяқталды" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Жаңарту аяқталды, бірақ жаңарту кезінде қателер пайда болды." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Ескерген бағдарламаларды іздеу" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Жүйенің жаңартылуы аяқталды." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Жарым-жартылай жаңарту аяқталды." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Релиз туралы мәліметтері табылмады" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Мүмкін сервер аса жүктеулі. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Релиз туралы мәліметтері жүктеу мүмкін емес" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Өзіңіздің интернетпен қосылысыңызды тексеріңіз." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Жаңарту құралын ашу мүмкін емес" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Жаңарту құралын баспасы" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Жаңарту құралы" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Алу мүмкін емес" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Жаңартуларды алу мүмкін сәтсіз аяқталды. Желілік мәселелер болуы мүмкін. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Аутентификация сәтсіз" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "жаңартулардың шынайлығын растау сәтсіз аяқталды. Желімен не сервермен " "мәселелер болуы мүмкін. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Шығарып алу (извлечь) сәтсіз" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Жаңартуларды шығарып алу сәтсіз аяқталды. Желімен не сервермен мәселелер " "болуы мүмкін. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Тексеріліс сәтсіз" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Тексеріліс сәтсіз аяқталды. Желімен не сервермен мәселелер болуы мүмкін. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Жаңарту процессін ашу мүмкін емес" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Бұл әдетте /tmp нүктесі noexec параметрімен тіркелген жүйелерде пайда " "болады. Нүктені noexec параметрсіз қайта тіркеңіз де, қайтадан жаңартып " "көріңіз." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Қате туралы хабарлама \"%s\"." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Жаңарту" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Релиз туралы мәлімет" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Пакеттердің қосымша файлдары жүктелуде..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "%sб/с жылдамдықпен %s файлдың %s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "%s файлдың %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "\"%s\" приводына \"%s\" салыңыз" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Сақтауышты ауыстыру" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms қолданыста" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Жүйеңіз /proc/mounts ішінде \"evms\" дискілік бөлім менеджерін қолданып " "жатыр. Ендігәрі \"evms\" бағдарламалық қамтамасыздандыруға қолдау " "көрсетілмейді. Оны жауып жаңартуды қайтадан жасап көріңіз." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Жаңарту, жұмыс үстелінің эффектерінің сапасының, графикамен белсенді жұмыс " "істейтін ойындар мен бағдарламалардың өнімділігін төмендеуіне әкеліп " "соқтыруы мүмкін." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Бұл жүйеде NVIDIA \"nvidia\" драйвері қолданылуда. Ubuntu 10.04 LTS сіздің " "бейнекартаңызбен жұмыс істейтін осындай драйверлер нұсқалары жетімсіз.\n" "\n" "Жалғастыру қажет пе?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Бұл жүйеде AMD \"fglrx\" драйвері қолданылуда. Ubuntu 10.04 LTS сіздің " "бейнекартаңызбен жұмыс істейтін осындай драйверлер нұсқалары жетімсіз.\n" "\n" "Жалғастыру қажет пе?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "i686 сәулетімен үйлесімді орталық процессор жоқ" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Сіздің жүйеңізде \"cmov\" кеңейтуі жоқ немесе i586 сәулетімен үйлесімді " "орталық процессор қолданылып тұр. Пакеттердің барлығы ең аз дегенде i686 " "сәулетімен үйлесімді орталық процессорлармен тиімді жұмыс істеу үшін етіп " "жиналған." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "ARMv6 орталық процессоры (CPU) жоқ" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Сіздің жүйеңіз ARMv6 сәулетінен төмен, ARM сәулет процессорын қолданып " "жатыр. karmic ішіндегі барлық пакеттер ARMv6 сәулетінен төмен емес " "сәулеттерге арналып қалыпқа келтірілген. Ағымдағы құралдар жабдықтармен, " "жүйеңізді Ubuntu жаңа релизіне дейін жаңарту мүмкін емес." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "init қызметі жетімсіз" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Сіздің жүйеңіз init қызметінсіз, мысалыға Linux-VServer жоқ, " "виртуализацияланған орта секілді. Ubuntu 10.04 LTS осындай түрлі ортада " "жұмыс істей алмайды, қажет болса, сіз өзіңіздің виртуалды машинаңыздың " "баптауларын сәйкесінше қалыпқа келтіруіңіз қажет.\n" "\n" "Жалғастыруды қалайсыз ба?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "aufs қолданып, қауіпсіз ортада (құмсалғышта) жаңарту" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Жаңартулар пакеттері бар CD/DVD дискілерін көрсетілген жерден іздеу" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Интерфейсті қолдану. Қазір жетімділер: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "Бұл параметр ЕСКЕРДІ және қолданылмайтын болады" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Тек жартылай жаңартуларды дайындау (sources.list үстінен басылмайтын болады)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU экранның қолдауын алып тастау" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Мәліметтер бумасын орнату" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Жүктеу аяқталды" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "%li файлдың %li, %sбайт/сек жылдамдығымен жүктелінді" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Шамамен %s қалды" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "%li ішінен %li файл жүктелуде" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Өзгерістерді қолдану" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "тәуелділік қателері - қалыпқа келтірмеген етіп қалдыру" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "\"%s\" орнату мүмкін емес" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Жаңарту әрі қарай жалғасатын болады, бірақта \"%s\" пакет(тер) жұмыс " "істемейтін күйге келтірілуі мүмкін. Осы қате жайлы хабарлау туралы " "ойластыруыңызды сұраймыз." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "\"%s\"\n" "өзгертілген баптау файлды үстінен басып сақтайын ба?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Егер баптау файлдың бұрыңғы нұсқасын жаңа нұсқасымен алмастытатын болсаңыз, " "онда ол баптау файлдағы өзгертулеріңіздің барлығы жоғалады." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "\"diff\" командасы табылмады" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Аса ауыр қате туындады" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Осы жайлы қате ретінде хабарлаңыз (егер де түк жасамаған болсаңыз) да, " "/var/log/dist-upgrade/main.log мен /var/log/dist-upgrade/apt.log файлдарды " "есепке тиеп қойыңыз. Жаңарту үзілді.\n" "sources.list файлыңыздың көшірмесі осы жерде сақталынған " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c басылды" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Операция тоқтатылатын болады, жүйеңіз жұмысқа жарамайтын болып қалуы мүмкін. " "Жалғастырасыз ба?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Мәліметтерді жоғалтуын болдырмау үшін, барлық ашық бағдарламалар мен " "құжаттарды жабыңыз." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Ендігәрі Canonical (%s) компаниясымен қолдау көрсетілмейді" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Ескірген нұсқаны орнату (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Жою (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Ендігәрі қажет емес (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Орнату (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Жаңарту (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Айырмашылықтарды көрсету >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Айырмашылықтарды жасыру" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Қате" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Жабу" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Терминалды көрсету >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Терминалды жасыру" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Мәлімет" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Көбірек білу" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Қолдау көрсетілмейді (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s жою" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "%s жою (автоматты орнатылған)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s орнату" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s жаңарту" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Компьютерді қайта жүктеу қажет" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Жаңартуды аяқтау үшін компьютерді қайта жүктеңіз" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Қазір қайта жүктеу" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Жаңартулды үзесіз бе?\n" "Егер де сіз жаңартуды үзетін болсаңыз, жүйе тұрақсыз жұмыс істеуі мүмкін. " "Жаңартуды әрі қарай жалғастыруды қадала жасауға ұсынамыз." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Жаңартуды болдырмау қажет пе?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li күн" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li сағат" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li минут" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li секунд" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Жүктеу, қосылыстың 1Мбит DSL жылдамдығында шамамен %s және модемдік 56Кбит " "Dial-up жылдамдығында шамамен %s алатын болады." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Сіздің қосылысыңызда жүктеу шамамен %s алатын болады. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Жаңартуға дайындалу" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Бағдарламалар қайнар көздерін өзгерту" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Жаңа пакеттерді алу" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Жаңартуларды орнату" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Тазарту" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Ендігәрі %(amount)d пакетке/пакеттерге Canonical қолдау көрсетпейді. Бірақ " "та сіз қоғамдастықтың қолдауын ала аласыз." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d жойылатын болады." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d пакеті(тері) орнатылатын болады." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d пакеті(тері) жаңартылатын болады." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Жалпы %s жүктеу қажет. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Сіздің жүйеңізге ешбір жаңарту жетімді емес. Жаңарту кері қайтатын болады." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Компьютерді қайта жүктеу қажет" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Жаңарту аяқталды және қайта жүктеу қажет. Қазір қайта жүктеу орындайсыз ба?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Осы жайлы қате ретінде хабарлаңыз да, /var/log/dist-upgrade/main.log мен " "/var/log/dist-upgrade/apt.log файлдарды есепке тиеп қойыңыз. Жаңарту " "үзілді.\n" "sources.list файлыңыздың көшірмесі осы жерде сақталынған " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Тоқтатып жатырмын" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Төмендетілген:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Жалғастыру үшін [ENTER] пернесін басыңыз" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Жалғастыру [иЖ] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Толық ақпарат [т]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "и" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "ж" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "т" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Қолдау көрсетілмейді: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Жоюға: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Орнатуға: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Жаңартуға: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Жалғастыру [Иж] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Жаңартуды аяқтау үшін, компьютерді қайта жүктеу қажет.\n" "Егер сіз \"и\" таңдасаңыз, жүйе қайта жүктелетін болады." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "%(speed)s/с жылдамдықпен %(total)li файлдың %(current)li жүктелінуде" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "%(total)li файлдың %(current)li жүктелінуде" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Бөлек файлдарға барысын көрсету" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "Жаңартуды _болдырмау" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Жаңартуды _жалғастыру" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Ағымдағы жаңартуды үзу қажет пе?\n" "\n" "Егер жаңартуды үзетін болсаңыз, жүйеңіз жұмыс істемейтін күйге айналуы " "мүмкін. Жаңартуды қадала жалғастыруды сұраймыз." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "Жаңартуды _бастау" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Алмастыру" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Файлдар арасындағы айырмашылықтар" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Қате туралы есепті жіберу" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Жалғастыру" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Жаңартуды бастайын ба?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Жаңартуды аяқтау үшін жүйеңізді қайта жүктеңіз.\n" "\n" "Жалғастыру алдында өзіңіздің құжаттарыңызды сақтаңыз." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Дистрибутивті жаңарту" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Бағдарламалардың жаңа қайнар көздерін қосу" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Компьютер қайта жүктелуде" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Терминал" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Жаңарту" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Ubuntu жаңа нұсқасы жетімді. Жаңартасыз ба?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Жаңартпау" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Кейінірек сұрау" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Иә, қазір жаңарту" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Сіз Ubuntu-ның келесі нұсқасына дейін жаңартуды кері қайтардыңыз" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Үлгісін көрсету және шығу" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Мәліммет файлдары бар бума" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Көрсетілген интерфейсті ашу" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Жарым-жартылай жаңарту жасалынуда" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Дистрибутивті жаңарту құралы жүктелуде" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Дистрибутивтің соңғы тұрақсыз үлгісіне дейін жаңарту мүмкіндігін тексеру" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "$distro-proposed бұтағындағы жаңарту құралын қолданып, соңғы релизге дейін " "жаңартып көріңіз" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Жаңартуды арнайы режимін ашу.\n" "Қазіргі уақытта жүйелі жаңартулар \"***настольный***\" және \"серверлік\" " "жүйелерге жетімді." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Жаңартуларды қауіпсіз режимінде тестілеу" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Дистрибутивтің жаңа нұсқасының жетімдігін тексеріп, нәтижесін шығу кодымен " "шығару" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Сіздің Ubuntu нұсқаңызға қолдау ендігәрі көрсетілмейді." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Жаңарту жайлы мәліметті осы жерден таба аласыз:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Жаңа релиз табылмады" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Дәл қазір релизді жаңартуы мүмкін емес" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Релиздың жаңартуын қазір орындауға болмайды, кейінірек қайта жасап көріңіз. " "Сервер жауабы: \"%s\"" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "\"%s\" жаңа релизі жетімді" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" "Сол релизге дейін жаңартылу үшін \"do-release-upgrade\" командасын орындаңыз." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s жаңартуы жетімді" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Сіз Ubuntu-ды %s дейін жаңартуды кері қайтардыңыз" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/id.po0000644000000000000000000016700312431225715014754 0ustar # Indonesian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Bagus Herlambang \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: id\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server untuk %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Server utama" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Server custom" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Tidak dapat mengkalkulasi masukan sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Tidak dapat menemukan berkas paket apapun, mungkin ini bukan Disk Ubuntu " "atau arsitektur yang salah?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Gagal untuk menambahkan CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Terjadi kesalahan dalam menambahkan CD, peningkatan versi akan dibatalkan. " "Silahkan laporkan ini sebagai bug jika CD Ubuntu yang dipakai benar.\n" "\n" "Pesan kesalahan adalah: \n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Hapus paket yang kondisinya buruk" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Paket '%s' berada dalam status tidak konsisten dan perlu untuk diinstal " "ulang, tapi tak ada arsip yang ditemukan untuk mereka. Anda ingin menghapus " "paket ini sekarang untuk melanjutkan?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Server mungkin kelebihan beban" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paket rusak" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sistem anda mengandung paket rusak yang tidak dapat diperbaiki dengan " "perangkat lunak ini. Silakan perbaiki terlebih dahulu dengan menggunakan " "synaptic atau apt-get sebelum melanjutkan hal ini." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Sebuah masalah yang tidak terselesaikan terjadi ketika mengkalkulasi proses " "pemutakhiran:\n" "%s\n" "\n" " Hal ini bisa disebabkan oleh:\n" " * Proses pemutakhiran ke sebuah versi Ubuntu pra-rilis\n" " * Menjalankan versi Ubuntu pra-rilis\n" " * Perangkat lunak yang tidak secara resmi disediakan oleh Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Ini sepertinya masalah sementara saja, coba lagi nanti." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Tidak dapat menghitung peningkatan versi" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Kesalahan membuktikan keabsahan beberapa paket" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Tidak memungkinkan untuk membuktikan keabsahan dari beberapa paket. Ini " "mungkin karena masalah pada jaringan. Anda dapat mencobanya beberapa saat " "lagi. Lihat senarai dari paket yang belum terbukti keabsahannya dibawah ini." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Paket '%s' ditandai untuk dibuang namun paket tersebut berada pada daftar " "hitam buangan." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Paket penting '%s' ditandai untuk dibuang" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Mencoba memasang versi '%s' yang dicekal" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Tidak dapat memasang '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Tidak dapat menebak paket-meta" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Sistem anda tidak mengandung paket ubuntu-desktop, kubuntu-desktop atau " "edubuntu-desktop dan tidak memungkinkan untuk mendeteksi versi ubuntu yang " "anda jalankan.\n" " Silakan pasang terlebih dahulu salah satu paket di atas dengan menggunakan " "synaptic atau apt-get sebelum melanjutkan." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Membaca cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Tidak bisa memperoleh penguncian eksklusif" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Hal ini pada umumnya berarti bahwa aplikasi manajemen paket lainnya sedang " "berjalan (seperti apt-get atau aptitude). Harap tutup aplikasi tersebut " "terlebih dahulu." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Pemutakhiran melalui koneksi jarak jauh tidak didukung" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Anda menjalankan peningkatan melalui koneksi remote ssh dengan aplikasi yang " "tidak mendukung ini. Silakan coba dengan mode teks dengan mengetikkan " "perintah 'do-release-upgrade'.\n" "\n" "Peningkatan akan dibatalkan sekarang. Silakan coba lagi tanpa ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Lanjutkan menjalankan di bawah SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Sesi ini tampaknya dijalankan dengan ssh. Tidak disarankan untuk melakukan " "peningkatan melalui ssh karena sistem akan sulit dikembalikan seperti semula " "jika terjadi kegagalan.\n" "\n" "Jika Anda lanjutkan, daemon ssh tambahan akan dijalankan di port '%s'.\n" "Tetap lanjutkan peningkatan?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Memulai sshd tambahan" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Agar pemulihan, dalam kasus kegagalan, lebih mudah, sshd tambahan akan " "dijalankan pada port '%s'. Jika terjadi kesalahan dengan ssh yang berjalan " "Anda tetap dapat menyambung ke ssh tambahan.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Jika Anda menjalankan firewall, Anda mungkin perlu membuka port ini untuk " "sementara. Mengingat hal ini secara potensial berbahaya maka tidak dilakukan " "secara otomatis. Anda dapat membuka port dengan mis.:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Tidak dapat meningkatkan versi" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Naik tingkat dari '%s' ke '%s' tidak didukung oleh perkakas ini." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Pengaturan Sandbox gagal" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Tidak bisa menciptakan lingkungan Sandbox" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Modus Sandbox" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Instalasi python anda rusak. Silahkan perbaiki symlink '/usr/bin/python'." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Paket 'debsig-verify' dipasang" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Peningkatan tidak dapat dilanjutkan ketika paket itu terpasang.\n" "Silahkan menghapusnya dengan menjalankan terlebih dahulu synaptic atau 'apt-" "get remove debsig-verify' dan jalankan peningkatan lagi." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Ikutkan juga pembaruan terakhir dari Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Peningkatan sistem dapat menggunakan internet untuk secara otomatis " "mengunduh pemutakhiran terkini dan menginstalnya selama proses peningkatan. " "Jika Anda memiliki koneksi jaringan maka ini sangat direkomendasikan.\n" "\n" "Peningkatan akan memakan waktu lebih lama, tapi ketika telah selesai, sistem " "Anda akan sepenuhnya termutakhirkan. Anda dapat memilih untuk tidak " "melakukan hal ini, tapi Anda harus menginstal pemutakhiran terkini segera " "setelah peningkatan.\n" "Jika Anda menjawab 'tidak' di sini, jaringan tidak akan digunakan sama " "sekali." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "dimatikan untuk melakukan peningkatan ke %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Tidak menemukan mirror yang valid" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Ketika memindai informasi repositori anda tidak ditemukan entri bagi " "peningkatan. Ini dapat terjadi bila anda menjalankan mirror internal atau " "bila informasi mirror usang.\n" "\n" "Apakah anda ingin tetap menulis ulang berkas 'sources.list' anda? Bila anda " "memilih 'Ya' di sini maka semua entri '%s' akan diperbarui menjadi '%s'.\n" "Bila anda memilih 'Tidak' peningkatan akan dibatalkan." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Membuat sumber baku?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Setelah memindai 'sources.list' Anda, tidak ditemukan entri valid bagi " "'%s'.\n" "\n" "Perlukah entri baku bagi '%s' ditambahkan? Bila Anda memilih 'Tidak', " "peningkatan akan dibatalkan." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Informasi gudang tidak valid" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Sumber dari pihak ketiga dimatikan" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Entri pihak ketiga di dalam berkas sources.list tidak difungsikan. Anda " "dapat mengaktifkan kembali setelah peningkatan versi dengan alat 'software-" "properties' atau pengelola paket anda." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paket dalam keadaan tidak konsisten" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Paket '%s' berada dalam keadaan tidak konsisten dan perlu dipasang ulang, " "tapi tidak ditemukan arsip untuknya. Silakan pasang ulang paket secara " "manual atau hapuslah dari sistem." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Kesalahan pada waktu pemutakhiran" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Terjadi masalah pada waktu pemutakhiran. Ini biasanya karena masalah " "jaringan, silakan periksa koneksi jaringan anda dan ulangi." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Kapasitas cakram tidak mencukupi" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Peningkatan telah dibatalkan. Peningkatan membutuhkan total %s ruang kososng " "pada piringan '%s'. Mohon tambahkan %s ruang kosong pada '%s\". Kosongkan " "tempat sampah anda dan hapus paket temporer dari pemasangan terdahulu dengan " "menggunakan perintah 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Menghitung perubahan" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Apakah anda ingin memulai pemutakhiran?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Peningkatan dibatalkan" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Peningkatan kini akan dibatalkan dan keadaan sistem asli akan dikembalikan. " "Anda dapat meneruskan peningkatan di lain waktu." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Tidak dapat mengunduh pemutakhiran" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Peningkatan telah digugurkan. Silakan periksa koneksi Internet atau media " "pemasangan Anda dan coba lagi. Semua berkas yang telah diunduh sampai kini " "masih disimpan." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Kesalahan pada waktu commit" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Sistem dikembalikan ke keadaan awal" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Tidak dapat menginstal pemutakhiran" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Peningkatan telah digugurkan. Sistem Anda mungkin dalam keadaan yang tak " "dapat dipakai. Suatu pemulihan akan dijalankan sekarang (dpkg --configure -" "a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Peningkatan telah digugurkan. Silakan periksa koneksi Internet atau media " "pemasangan Anda dan coba lagi. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Hapus paket usang?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Simpan" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Hapus" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Kesalahan terjadi selama pembersihan. Silakan lihat pesan di bawah untuk " "informasi lebih lanjut. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Dependensi yang dibutuhkan belum terpasang." #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Dependensi yang dibutuhkan '%s' belum terpasang. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Memeriksa manajer paket" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Persiapan peningkatan versi gagal" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Gagal mendapatkan persiapan upgrade" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Memutakhirkan informasi gudang" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Gagal untuk menambahkan ke cdrom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Maaf, penambahan cdrom tidak berhasil." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Informasi paket tidak valid" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Menjemput" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Meng-upgrade" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Peningkatan versi selesai" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Peningkatan telah lengkap tetapi ada masalah selama proses peningkatan." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Mencari perangkat lunak usang" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Upgrade sistem telah selesai." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Pemutakhiran parsial selesai." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Tidak dapat menemukan catatan luncuran" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Server mungkin kelebihan muatan " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Tidak dapat mengunduh catatan luncuran" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Silakan periksa koneksi internet anda." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Tidak dapat menjalankan alat upgrade" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Tanda tangan peralatan upgrade" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Peralatan upgrade" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Gagal untuk fetch" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Gagal meng-fetch upgrade. Terjadi masalah pada jaringan. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Otentikasi gagal" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Otentikasi upgrade gagal. Mungkin terjadi masalah dengan jaringan atau " "dengan server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Gagal mengekstrak" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Gagal mengekstrak upgrade. Mungkin terjadi masalah dengan jaringan atau " "dengan server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verifikasi gagal" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Pemeriksaan peningkatan gagal. Mungkin ada masalah jaringan atau server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Tak dapat menjalankan pemutakhiran" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Ini biasanya disebabkan oleh sistem dimana /tmp dikait noexec. Silakan kait " "ulang tanpa noexec dan jalankan peningkatan lagi." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Pesan kesalahannya adalah '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Upgrade" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Catatan Luncuran" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Mengunduh berkas paket tambahan..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Berkas %s dari %s pada %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Berkas %s dari %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Silakan masukkan '%s' ke dalam penggerak '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Perubahan Media" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms sedang dipakai" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Sistem Anda memakai manajer volume 'evms' pada /proc/mounts. Perangkat lunak " "'evms' tidak didukung lagi, silakan mematikannya dan jalankan lagi " "peningkatan setelahnya." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Peningkatan mungkin mengurangi efek-efek desktop, dan kinerja pada permainan " "dan program-program lain yang intensif grafis." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Komputer ini kini menggunakan driver grafis NVIDIA 'nvidia'. Tidak tersedia " "driver versi ini yang bisa bekerja dengan kartu video Anda di Ubuntu 10.04 " "LTS.\n" "\n" "Anda ingin melanjutkan?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Komputer ini kini menggunakan driver grafis AMD 'fglrx'. Tidak tersedia " "driver versi ini yang bisa bekerja dengan kartu video Anda di Ubuntu 10.04 " "LTS.\n" "\n" "Anda ingin melanjutkan?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "CPU i686 tidak ditemukan" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sistem Anda menggunakan CPU i586 atau sebuah CPU yang tidak memiliki " "ekstensi \"cmov\". Semua paket dibangun dengan optimasi yang membutuhkan " "i686 sebagai arsitektur minimal. Tak mungkin untuk meningkatkan sistem Anda " "ke rilis Ubuntu yang baru dengan perangkat keras yang ada." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "CPU ARMv6 tidak ada" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sistem Anda memakai CPU ARM yang lebih tua daripada arsitektur ARMv6. Semua " "paket di karmic dibangun dengan optimasi yang memerlukan ARMv6 sebagai " "arsitektur minimal. Tidak mungkin meningkatkan sistem Anda ke rilis baru " "Ubuntu dengan perangkat keras ini." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Tidak ada 'init' yang tersedia" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Sistem anda tampaknya adalah lingkungan virtual tanpa init daemon, misal " "Linux-VServer. Ubuntu 10.04 LTS tidak berfungsi dalam lingkungan seperti " "ini. Anda harus memutakhirkan konfigurasi mesin virtual anda lebih dulu.\n" "\n" "Anda yakin akan melanjutkan?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Peningkatan Sandbox menggunakan aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Pakai path yang diberikan untuk mencari cdrom dengan paket-paket yang dapat " "ditingkatkan versinya" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Gunakan frontend. Kini tersedia: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*KEDALUARSA* opsi ini akan diabaikan" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Melakukan pemutakhiran sebagian (tidak perlu menulis ulang sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Matikan dukungan screen GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Tentukan datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Pengunduhan selesai" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Mengambil berkas %li dari %li pada %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Tersisa sekitar %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Mengunduh berkas %li dari %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Sahkan perubahan" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "masalah ketergantungan - dibiarkan tidak terkonfigurasi" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Tidak dapat instal '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Peningkatan akan dilanjutkan tapi paket '%s' mungkin tidak dalam keadaan " "bekerja. Silakan pertimbangkan mengirim laporan kutu tentangnya." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Menimpa berkas konfigurasi yang telah diubah\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Anda akan kehilangan semua perubahan yang telah dibuat di dalam berkas " "konfigurasi apabila anda memilih untuk menimpanya dengan versi yang lebih " "baru." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Perintah 'diff' tidak dapat ditemukan" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Terjadi kesalahan fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Mohon laporkan ini sebagai kutu (jika Anda belum) dan sertakan berkas " "/var/log/dist-upgrade/main.log dan /var/log/dist-upgrade/apt.log dalam " "laporan Anda. Peningkatan telah dibatalkan.\n" "sources.list asli Anda telah disimpan dalam " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c ditekan" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Ini akan membatalkan operasi dan dapat membiarkan sistem dalam keadaan " "rusak. Apakah Anda yakin ingin melakukannya?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Untuk mencegah kehilangan data silakan tutup seluruh aplikasi dan dokumen." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Tidak lagi didukung oleh Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Turun Tingkatkan (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Hapus (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Tidak lagi dibutuhkan (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Pasang (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Tingkatkan (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Tunjukkan Perbedaan >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Sembunyikan Perbedaan" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Kesalahan" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Tutup" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Tampilkan Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Sembunyikan Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informasi" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Rincian" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Tidak lagi didukung %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Hapus %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Hilangkan (sebelumnya diinstall otomatis) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instal %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Diperlukan reboot" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Mulai ulang sistem untuk menyelesaikan upgrade" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Mulai Ulang Sekarang" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Batalkan pemutakhiran yang sedang berjalan?\n" "\n" "Sistem bisa berada dalam kondisi tidak dapat digunakan jika anda membatalkan " "pemutakhiran. Anda sangat disarankan untuk melanjutkan pemutakhiran." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Batalkan Peningkatan Versi?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li hari" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li jam" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li menit" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li detik" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Proses pengunduhan ini akan memakan waktu sekitar %s dengan koneksi DSL " "1Mbit dan sekitar %s dengan modem 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Pengunduhan akan mengambil sekitar %s koneksi Anda. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Persiapan untuk naik tingkat" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Sedang mendapatkan kanal-2 perangkat lunak baru" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Sedang mendapatkan paket-2 baru" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Memasang upgrade" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Membersihkan" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d paket yang terpasang sudah tidak lagi didukung oleh Canonical. " "Anda masih dapat memperoleh dukungan dari komunitas." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket akan dihapus." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d paket baru akan dipasang." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket akan diupgrade." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Anda harus mengunduh sebanyak %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Tidak ada peningkatan versi yang tersedia untuk sistem anda. Proses " "peningkatan versi akan dibatalkan." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Diperlukan reboot" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Upgrade telah selesai dan sistem harus direboot. Apakah anda ingin melakukan " "ini sekarang" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Silakan laporkan hal ini sebagai kutu dan sertakan berkas /var/log/dist-" "upgrade/main.log dan /var/log/dist-upgrade/apt.log dalam laporan Anda. " "Peningkatan telah digugurkan.\n" "sources.list asli Anda disimpan di /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Membatalkan" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Turun tingkat:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Untuk melanjutkan silakan tekan [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Lanjutkan [yT] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Rincian [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "t" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Tidak lagi didukung: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Hapus: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Pasang: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Upgrade: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Lanjutkan [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Untuk menyelesaikan penaiktingkatan, perlu restart.\n" "Jika Anda memilih 'y' sistem akan di-restart." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Mengunduh berkas %(current)li dari %(total)li dengan %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Mengunduh berkas %(current)li dari %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Tampilkan kemajuan masing-masing berkas" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "Batalkan Peningkatan Versi" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Lanjutkan Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Batalkan upgrade yang sedang berjalan?\n" "\n" "Jika anda membatalkan upgrade sistem dapat menjadi tidak bisa digunakan. " "Anda disarankan untuk melanjutkan upgrade." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "Mulai Peningkatan Versi" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Ganti" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Perbedaan diantara berkas" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Laporkan Bug" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Lanjut" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Mulai upgrade?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Restart komputer untuk menyelesaikan peningkatan\n" "\n" "Simpan pekerjaan Anda sebelum melanjutkan." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Upgrade Distribusi" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Sedang mengisi kanal-2 perangkat lunak baru" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Sedang memulai ulang komputer" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "Tingkatkan" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Versi Ubuntu baru sudah tersedia. Apakah Anda akan melakukan " "peningkatan?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Jangan Tingkatkan" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Tanya Saya Nanti" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ya, Tingkatkan Sekarang." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Anda sudah menolak peningkatan ke Ubuntu yang baru." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Untuk meningkatkan Ubuntu, Anda perlu mengotentikasi." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Untuk melakukan peningkatan sebagian, Anda perlu mengotentikasi." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Pelihatkan versi dan keluar" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Direktori yang berisi berkas data tersebut" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Jalankan frontend yang dinyatakan" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Menjalankan peningkatan versi sebagian" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Sedang mengunduh alat peningkatan rilis" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Memeriksa bila menaikkan versi ke rilis pengembangan terakhir mungkin" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Coba penaiktingkatan ke rilis terakhir menggunakan penaik tingkat dari " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Jalankan dlm mode naik tingkat khusus.\n" "Saat ini, 'desktop' untuk naik tingkat reguler dari sistem desktop dan " "'server' untuk sistem server adalah didukung." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Coba peningkatan dengan suatu overlay aufs sandbox" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Hanya cek jika distribusi terbaru sudah tersedia dan laporkan hasilnya " "melalui kode keluar." #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Rilis Ubuntu Anda sudah tidak didukung lagi." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Untuk informasi peningkatan, silakan kunjungi:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Tidak ada rilis baru yang ditemukan" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Peningkatan rilis saat ini tak mungkin" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Peningkatan rilis kini tak bisa dilakukan, silakan coba lagi nanti. Server " "melaporkan: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Rilis baru '%s' sudah tersedia." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Jalankan 'do-release-upgrade' untuk meningkatkannya." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Peningkatan ke Ubuntu %(version)s Tersedia" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Anda telah menolak peningkatan ke Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/mk.po0000644000000000000000000015623712431225715014776 0ustar # translation of mk.po to Macedonian # This file is distributed under the same license as the PACKAGE package. # Copyright (C) 2005 THE PACKAGE'S COPYRIGHT HOLDER. # Арангел Ангов , 2005. # msgid "" msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Јован Наумовски \n" "Language-Team: Macedonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: mk\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Сервер за %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Главен сервер" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Други сервери" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Не можам да го додадам CD-то" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Имаше грешка во додавањето на CD-то, надградбата ќе прекине. Ве молам, " "пријавете го ова како бубачка ако CD-то е валидно Ubuntu CD.\n" "\n" "Пораката со грешка беше:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Отстрани го пакетот во лоша состојба" msgstr[1] "Отстрани ги пакетите во лоша состојба" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Оштетени пакети" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Вашиот систем содржи оштетени пакети кои не може да се поправат со овој " "софтвер. Ве молам поправете ги со Синаптик или apt-get пред да продолжите." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Ова најверојатно е минлив проблем, пробајте подоцна." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Не може да се одреди надградбата" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Грешка при автентикација на некои пакети" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Не можат да се автентицираат некои пакети. Може да има мрежни пречки. " "Обидете се повторно. Видете подолу за листа на неавтентицирани пакети." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Не може да се инсталира %s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Не може да се погоди мета пакетот" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Вашиот систем не содржи ни еден од пакетите ubuntu-desktop, kubuntu-desktop, " "xubuntu-desktop или edubuntu-desktop и затоа беше невозможно да се одреди " "која верзија на Ubuntu извршувате.\n" " Ве молам, инсталирајте еден од пакетите погоре со synaptic или apt-get пред " "да продолжите." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Читање на кешот" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Не можам да добијам ексклузивно заклучување" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Ова најчесто значи дека моментално работи друга апликација за менаџмент на " "пакети (како apt-get или aptitude). Ве молам прво затворете ја таа " "апликација." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Да продолжам да се извршувам под SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Стартувам додатен sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Не можам да извршам надградба" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Надградбата од „%s“ во „%s“ не е поддржано со оваа алатка." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Вашата инсталација на python e расипана. Ве молам, поправете ја симболичката " "врска „/usr/bin/python“." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Да ги вклучам најновите ажурирања од Интернет?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Не е пронајден валиден помошен сервер" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Да ги генерирам стандардните извори?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Информациите за складиштето се невалидни" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Додатните извори се оневозможени" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Некои од додатните записи во sources.list беа оневозможени. Можете да ги " "овозможите повторно по надградбата со алатката „software-properties“ или со " "Вашиот менаџер на пакети." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Пакет во неправилна состојба" msgstr[1] "Пакети во неправилна состојба" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Грешка при ажурирањето" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Се случи проблем при надградбата. Ова е обично некој проблем со мрежата и Ве " "молиме да ја проверете Вашата мрежна врска и да се обидете повторно." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Нема доволно место на дискот" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Ги проценувам промените" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Дали сакате да ја започнете надградбата?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Не можам да ги симнам надградбите" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Грешка при испраќањето" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Ја враќам првичната состојба на системот" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Не можам да ги инсталирам надградбите" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Да ги отстранам застарените пакети?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Чувај" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Отстрани" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Се случи некој проблем при расчистувањето. Видете ја пораката подолу за " "повеќе информации. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Не се инсталирани потребните зависности" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Потребната зависност „%s“ не е инсталирана. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Проверете го менаџерот за пакети" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Подготвувањето на надградбата не успеа" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Земањето на почетните потребни пакети не успеа" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Ги ажурирам информациите за складиштето" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Невалидни информации за пакетот" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Земам" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Надградувам" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Надградбата е завршена" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Барам застарен софтвер" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Надградбата на системот е завршена." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Не можам да ги најдам белешките за изданието" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Серверот може да е преоптоварен. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Не можам да ги преземам белешките за изданието" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Ве молам проверете ја Вашата интернет врска." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Не можам да ја извршам алатката за надградба" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Потпис на алатката за надградба" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Алатка за надградба" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Не можам да симнам" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Симнувањето на надградбите не успеа. Можеби има проблем со мрежата. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Проверката беше неуспешна" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Проверката на автентичност на надградбата не успеа. Можеби има проблем со " "мрежата или серверот. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Не можам да отпакувам" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Отпакувањето на надградбата не успеа. Можеби има проблем со мрежата или " "серверот. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Проверката на надградбата не успеа. Можеби има проблем со мережата или со " "серверот. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Белешки за изданието" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Внесете '%s' во драјвот '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Промена на медиум" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Користи ја дадената патека за пребарување на cdrom со пакети за надградба" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Користи фронтенд. Моментално достапни: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Земањето заврши" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Преостануваат околу %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Земам датотека %li од %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Применувам промени" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Не можам да инсталирам '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Да ја заменам сопствената конфигурациска датотека\n" "„%s“?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Ќе ги загубите сите промени кои ги направивте на оваа конфигурациска " "датотека ако изберете да ја замените со понова верзија." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Командата „diff“ не беше пронајдена" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Се случи фатална грешка" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да спречите загуба на податоци, затворете ги сите отворени апликации и " "документи." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Покажи ја разликата >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Скриј ја разлаката" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Покажи терминал >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Скриј го терминалот" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Детали" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Отстрани го %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Инсталирај %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Надгради %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Потребно е рестартирање" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Рестартирајте го системот за да ја завршите надградбата" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Рестартирај сега" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Да ја прекинам надградбата?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Ова преземање ќе трае околу %s со Вашата врска. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Ја подготвувам надградбата" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Земам нови софтверски канали" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Земам нови пакети" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Ги инсталирам надградбите" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Расчистувам" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Ќе биде отстранет %d пакет." msgstr[1] "Ќе бидат отстранети %d пакети." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Ќе се инсталира %d нов пакет." msgstr[1] "Ќе се инсталираат %d нови пакети." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Ќе се надгради %d пакет." msgstr[1] "Ќе се надградат %d пакети." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Мора да преземете вкупно %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Нема достапни надградби за Вашиот систем. Надградбата сега ќе се прекине." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Потребно е рестартирање" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Надградбата е завршена и потребно е рестартирање. Дали сакате да го " "направите сега?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Прекинувам" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Снижено:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Продолжи [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Детали [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Отстрани го: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Инсталирај: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Надгради: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Потребно е рестартирање за да заврши надградбата.\n" "Ако изберете „y“, системот ќе се рестартира." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Ја преземам датотеката %(current)li од %(total)li со %(speed)s/сек." #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Ја преземам датотеката %(current)li од %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Покажувај го напредокот на поединечните датотеки" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Прекини ја надградбата" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Продолжи со надградбата" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Да ја прекинам тековната надградба?\n" "\n" "Системот може да е во неупотреблива состојба ако ја прекинете надградбата. " "Строго препорачливо е да надградбата да продолжи." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Започни со надградбата" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Замени" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Разлика помеѓу датотеките" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Пријави бубачка" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "Продолжи" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Да ја започнам надградбата?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Надградба на дистрибуцијата" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Ги поставувам новите софтверски канали" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Го рестартирам системот" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Терминал" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "Н_адгради" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Прикажи верзија и излези" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Изврши го одредениот фронтенд" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Извршувам парцијална надградба" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Провери дали е можна надградбата до најновата развојна верзија" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Пробајте да го надградите системот до најновото издание со користење на " "надградувачот од $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Се извршувам во специјален режим за надградба.\n" "Моментално се поддржани „desktop“ за регуларни надградби за десктоп систем и " "„server“ за серверски системи." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Не е пронајдено ново издание" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ar.po0000644000000000000000000022134612431225715014763 0ustar # translation of po_update-manager-ar.po to Arabic # Arabic translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # # FIRST AUTHOR , 2006. # OsamaKhalid , 2009. msgid "" msgstr "" "Project-Id-Version: po_update-manager-ar\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-09-14 07:54+0000\n" "Last-Translator: Ibrahim Saed \n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n % 100 >= " "3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "خادوم %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "الخادوم الرئيسي" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "خواديم مخصصة" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "تعذر حساب مدخلة source.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "تعذّر إيجاد أي ملفات حزم، لعل هذا ليس قرص أوبونتو أو البنية الخطأ؟" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "فشلت إضافة الاسطوانة" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "حدث خطأ بإضافة القرص، ستلغى عملية الترقية. من فضلك قم بالإبلاغ عن هذا كعلّة " "إذا كانت هذه إسطوانة صالحة لأوبونتو.\n" "\n" "رسالة الخطأ كانت:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "أزل الحزمة التي في حالة سيئة" msgstr[1] "أزل الحزمة التي في حالة سيئة" msgstr[2] "أزل الحزمتين اللتين في حالة سيئة" msgstr[3] "أزل الحزم التي في حالة سيئة" msgstr[4] "أزل الحزم التي في حالة سيئة" msgstr[5] "أزل الحزم التي في حالة سيئة" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "حالة الحزمة '%s' متضاربة وتحتاج أن يعاد تثبيتها، لكن لا أرشيف وجد لها. أتريد " "إزالة هذه الحزمة الآن للمتابعة؟" msgstr[1] "" "حالة الحزمة '%s' متضاربة وتحتاج أن يعاد تثبيتها، لكن لا أرشيف وجد لها. أتريد " "إزالة هذه الحزمة الآن للمتابعة؟" msgstr[2] "" "حالة الحزمتين '%s' متضاربة وتحتاجان أن يعاد تثبيتهما، لكن لا أرشيف وجد لهما. " "أتريد إزالة هذين الحزمتين الآن للمتابعة؟" msgstr[3] "" "حالة الحزم '%s' متضاربة وتحتاج أن يعاد تثبيتها، لكن لا أرشيف وجد لها. أتريد " "إزالة هذه الحزم الآن للمتابعة؟" msgstr[4] "" "حالة الحزم '%s' متضاربة وتحتاج أن يعاد تثبيتها، لكن لا أرشيف وجد لها. أتريد " "إزالة هذه الحزم الآن للمتابعة؟" msgstr[5] "" "حالة الحزم '%s' متضاربة وتحتاج أن يعاد تثبيتها، لكن لا أرشيف وجد لها. أتريد " "إزالة هذه الحزم الآن للمتابعة؟" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "قد يكون الخادوم مثقلاً." #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "حزم معطوبة" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "نظامك يحوي حزما مكسورة لا يمكن إصلاحها بهذه البرمجية. أصلحها مستخدما سينابتك " "أو apt-get قبل المواصلة." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "صودفت مشكلة غير قابلة للحل أثناء إحصاء الترقية:\n" "%s\n" "\n" " قد يكون هذا ناتج عن:\n" " * الترقية إلى نسخة ما قبل الإصدار من أبونتو\n" " * تشغيل نسخة ما قبل الإصدار الحالية من أبونتو\n" " * حزم برمجيات غير رسمية ليست مقدمة من أبونتو\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "هذا على الأغلب عطل عابر، من فضلك حاول لاحقا." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "إذا لم يكن أي من هذه مفيدًا، رجاءً أبلغ عن هذه العلة باستخدام الأمر 'ubuntu-" "bug ubuntu-release-upgrader-core' في طرفية." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "تعذّر حساب الترقية" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "خطأ في استيثاق بعض الحزم" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "تعذّر استيثاق بعض الحزم. قد تكون هذه مشكلة عابرة في الشبكة، وقد تفلح " "المحاولة مجددا لاحقا. طالع قائمة الحزم غير المتوثقة أدناه." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "الحزمة '%s' معلّمة للإزالة لكنها في قائمة الحذف السوداء." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "الحزمة الأساسية '%s' معلّمة للإزالة." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "يحاول تثبيت نسخة في القائمة السوداء '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "تعذّر تثبيت '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "كان من المستحيل تثبيت حزمة مطلوبة. رجاءً أبلغ عن هذه العلة باستخدام الأمر " "'ubuntu-bug ubuntu-release-upgrader-core' في طرفية." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "تعذّرت معرفة الحزمة الفوقية" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "نظامك لا يحتوي أيا من الحزم ubuntu-desktop أو kubuntu-desktop أو xubuntu-" "desktop أو edubuntu-desktop و لم يمكن الكشف عن نسخة أوبونتو التي تستعملها.\n" " رجاءً ثبت إحدى الحزم المذكورة أعلاه باستخدام synaptic أو apt-get قبل " "المواصلة." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "يقرأ المخبئية" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "تعذّر على الحصول على قفل كامل" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "يعني هذا عادة أن تطبيق إدارة حزم آخر (مثل apt-get أو aptitude) يعمل حاليًا. " "يرجى علق ذالك التطبيق أولًا." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "الترقية عبر اتصال بعيد غير مدعومة" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "لقد قمت بتشغيل الترقية عبر اتصال الغطاء الأمني عن بعد مع واجهة لا تدعم هذا. " "الرجاء محاولة ترقية في وضع النص مع'do-release-upgrade'.\n" "\n" "سيتم الخروج من عملية الترقية الآن. الرجاء المحاولة بدون الغطاء الأمني." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "أتريد مواصلة العمل تحت SSH؟" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "يبدو أن هذه الجلسة تعمل خلال الغطاء الأمني. لا يوصَى بإجراء الترقية عبر " "الغطاء الأمني حاليا لأنه في حال الفشل سيكون استرداده أصعب.\n" "إذا استمررت، سيتم بدأ عفريت غطاء أمني إضافي على منفذ '%s'.\n" "هل تريد الاستمرار؟" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "يشغّل sshd إضافي" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "لتسهيل الإصلاح في حالة الفشل فإن sshd إضافيا سيُشغّل على المنفذ '%s'. إذا " "حدث عطل في ssh المشتغل حاليا يمكنك الاتصال بالإضافي.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "إذا كان الجدار الناري يعمل، فربما تحتاج إلى فتح هذا المنفذ مؤقتاً. وحيث من " "المحتمل أن يكون هذا خطراً لا يتم فتحه تقائياً. بإمكانك فتح المنفذ عن طريق:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "تعذّرت الترقية" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "ترقية من '%s' إلى '%s' غير مدعومة بهذه الأداة." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "فشل إعداد صندوق الرمل" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "تعذّر إنشاء بيئة محاطة (صندوق رمل)" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "طور صندوق الرمل" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "هذه الترقية تعمل في نمط المرملة (الاختبار). جميع التغييرات تُكتب إلى '%s' " "وستُفقد عند إعادة التشغيل التالي.\n" "\n" "*لن* تُكتب أي تغييرات إلى مجلد النظام من الآن حتى إعادة التشغيل التالي." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "تثبيتة python الحالية معطوبة. رجاءً أصلح الرابط الرمزي '/usr/bin/python'." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "حزمة 'debsig-verify' مثبتة" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "لا يمكن مواصة الترقية و تلك الحزمة مثبّتة.\n" "أزلها باستخدام synaptic أو 'apt-get' ثم أجر الترقية مجددا." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "لا يمكن الكتابة إلى '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "لا يمكن الكتابة إلى مُجلد النظام '%s' على نظامك. لا يُمكن مُتابعة الترقية.\n" "رجاءً تأكد أن مُجلد النظام قابل للكتابة." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "أأضمن آخر التحديثات من الإنترنت؟" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "نظام الترقية يمكن أن يستخدم الإنرتنت للتنزيل التلقائي لآخر التحديثات ويثبتها " "أثناء الترقية. إذا كنت تمتلك اتصال شبكة هذا موصى به بشدة.\n" "\n" "الترقية سوف تستغرق وقتا أطول، لكن عندما تكتمل، سيكون نظامك محدث تماما. " "تستطيع اختيار عدم فعل ذلك، لكن يتعيّن عليك تثبيت آخر التحديثات بعد الترقية " "مباشرة.\n" "إذا كانت إجابتك 'لا' هنا، لن تستخدم الشبكة مطلقا." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "عُطّل عند الترقية إلى %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "لم يُعثر على رابط بديل سليم" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "تعذر إيجاد رابط بديل للترقية أثناء البحث في معلومات المستودعات في حاسوبك. قد " "يحدث هذا إن استخدمت رابط بديل داخلي أو إن كانت معلومات الرابط البديل قديمة.\n" "\n" "هل تود التعديل على ملف 'sources.list' لديك على أية حال؟ إذا أجبت ﺑـ'نعم' " "فستُحدّث كل '%s' إلى '%s'. وإن أجبت ﺑـ'ﻻ' فستُلغى عملية الترقية." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "أأولد المصادر المبدئية؟" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "تعذر إيجاد مدخلة صالحة لـ'%s' أثناء البحث في ملف 'sources.list' في حاسوبك.\n" "\n" "هل تود إضافة المدخلات الافتراضية لـ'%s'؟ إن أجبت ﺑ'ﻻ' فستُلغى عملية الترقية." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "معلومات المستودع غير صحيحة" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "ترقية معلومات المستودعات أسفرت عن ملف غير صالح، لذلك يجري بدء عملية للإبلاغ " "عن العلّة." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "مصادر الأطراف الخارجية عُطّلت" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "بعض مدخلات الأطراف الخارجية في sources.list قد عطلت. يمكنك إعادة تفعيلها بعد " "الترقية، باستخدام أداة 'software-properties' في مدير الحزم." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "لا حزم في حالة غير متسقة" msgstr[1] "حزمة واحدة في حالة غير متسقة" msgstr[2] "حزمتان في حالة غير متسقة" msgstr[3] "حزم في حالة غير متسقة" msgstr[4] "حزم في حالة غير متسقة" msgstr[5] "حزم في حالة غير متسقة" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "حالة الحزمة '%s' متضاربة وتحتاج أن يعاد تثبيتها، لكن لا أرشيف وجد لها. من " "فضلك أعد تثبيت الحزمة يدويا أو أزلها من النظام." msgstr[1] "" "حالة الحزمة '%s' متضاربة وتحتاج أن يعاد تثبيتها، لكن لا أرشيف وجد لها. من " "فضلك أعد تثبيت الحزمة يدويا أو أزلها من النظام." msgstr[2] "" "حالة الحزمتين '%s' متضاربة وتحتاجان أن يعاد تثبيتهما، لكن لا أرشيف وجد لهما. " "من فضلك أعد تثبيت الحزمتين يدويا أو أزلهما من النظام." msgstr[3] "" "حالة الحزم '%s' متضاربة وتحتاج أن يعاد تثبيتها، لكن لا أرشيف وجد لها. من " "فضلك أعد تثبيت الحزم يدويا أو أزلها من النظام." msgstr[4] "" "حالة الحزم '%s' متضاربة وتحتاج أن يعاد تثبيتها، لكن لا أرشيف وجد لها. من " "فضلك أعد تثبيت الحزم يدويا أو أزلها من النظام." msgstr[5] "" "حالة الحزم '%s' متضاربة وتحتاج أن يعاد تثبيتها، لكن لا أرشيف وجد لها. من " "فضلك أعد تثبيت الحزم يدويا أو أزلها من النظام." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "عطل أثناء التحديث" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "طرأت مشكلة أثناء التحديث. عادة ما يكون هذا نتيجة مشكلة ما في الشبكة، تحقق من " "اتصالك الشبكي وحاول مجددا." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "لا توجد مساحة كافية على القرص" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "لقد أُجهضت الترقية. تحتاج الترقية إلى %s مساحة خالية على القرص '%s'. من فضلك " "أفرغ %s على الأقل من مساحة القرص '%s'. أفرغ المهملات وأزل الحزم المؤقتة من " "التثبيتات السابقة باستخدام 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "يُحصي التغيرات" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "أتريد بدء التحديث الآن؟" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "أُلغيت الترقية" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "الترقية ستلغى وسيتم استعادة الحالة الأصلية للنظام. بإمكانك استئناف الترقية " "في وقت لاحق." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "تعذّر تنزيل الترقيات" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "تم إلغاء الترقية. رجاءً افحص اتصالك بالإنترنت أو وسيط التثبيت وحاول مجددا. " "جميع الملفات التي نزلت تم حفظها." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "عطل أثناء الإيداع" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "يسترجع الحالة الأصلية للنظام" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "تعذّر تثبيت الترقيات" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "لقد أُجهضت الترقية. قد يصبح نظامك في خالة غير مستقرة. سيُشغل الاستعفاء الآن " "(dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "رجاء أبلغ عن هذه العلة عبر المتصفح على العنوان " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "وأرفق الملفات الموجودة في /var/log/dist-upgrade/ في تقرير العلة.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "لقد تم إلغاء الترقية. تحقق من اتصالك بالإنترنت أو وسيط التثبيت وحاول مجددا. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "أأزيل الحزم المبطلة؟" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "ا_ستبق" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "أ_زل" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "طرأت مشكلة أثناء التنظيف. طالع الرسالة أدناه لمزيد من المعلومات. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "اعتمادات مطلوبة غير مثبتة" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "الاعتمادية المطلوبة '%s' ليست مثبتة. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "يفحص مدير الحزم" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "فشل تجهيز الترقية" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "فشل تحضير النظام للترقية، لذلك يجري بدء عملية للإبلاغ عن العلّة." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "فشل جلب متطلبات الترقية" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "تعذّر على النظام الحصول على المتطلبات الأساسية للترقية. ستُلغى عملية الترقية " "الآن، وسيُعاد النظام للحالة الأصلية.\n" "\n" "بالإضافة إلى ذلك، يجرى بدء عملية للإبلاغ عن العلّة." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "يحدّث معلومات المستودعات" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "فشل في إضافة القرص المدمج" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "عفواً، لم يتم إضافة القرص المدمج بنجاح." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "معلومات حزم غير صحيحة" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "بعد تحديث معلومات الحزمة، تعذّر تحديد موقع الحزمة الأساسية '%s' . قد يكون " "هذا بسبب عدم وجود روابط بديلة في قائمة مصادر البرمجيات، أو بسبب الحِمل " "الزائد على الروابط البديلة التي تستخدمها. أنظر في القائمة الحالية لمصادر " "البرمجيات /etc/apt/sources.list .\n" "\n" "إذا كانت المشكلة بسبب الحِمل الزائد على الروابط البديلة، فربما عليك محاولة " "الترقية لاحقا." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "يجلب" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "تجري الترقية" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "اكتملت الترقية" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "الترقية اكتملت، ولكن كان هناك أخطاء أثناء عملية الترقية." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "يبحث عن برمجيات قديمة" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "تمت ترقية النظام." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "اكتملت الترقية الجزئية." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "تعذّر العثور على ملاحظات الإصدارة" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "قد يكون الخادوم محملا فوق طاقته. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "تعذّر تنزيل ملاحظات الإصدارة" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "رجاءً تحقق من اتصالك بالإنترنت." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "توثيق '%(file)s' باستخدام البصمة '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "يستخرج '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "تعذّر تشغيل أداة الترقية" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "على الأرجح، هذا خطأ في أداة الترقية. رجاءً أبلغ عن هذه العلة باستخدام الأمر " "'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "توقيع أداة الترقية" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "أداة الترقية" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "فشل الجلب" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "فشل جلب الترقية، قد تكون هناك مشكلة في الشبكة. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "فشل الاستيثاق" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "فشل استيثاق الترقية. قد توجد مشكلة في الشبكة أو في الخادوم. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "فشل الاستخراج" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "فشل استخلاص الترقية، قد تكون هناك مشكلة في الشبكة أو الخادوم. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "فشل التحقق" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "فشل التحقق من الترقية. قد توجد مشكلة في الشبكة أو في الخادوم. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "لا يمكن اجراء الترقية" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "غالبًا ما يحدث هذا إذا ما تم تحميل /tmp بإشارة nonexec. رجاءً أعد التحميل " "بدون nonexec ثم أعد تشغيل الترقية." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "رسالة الخطأ هي '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "رقّ" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "ملاحظات الإصدار" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "تنزيل ملفات الحزم الإضافية..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "الملف %s من %s بسرعة %s ب/ث" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "ملف %s من %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "رجاء أدرج '%s' في محرك الأقراص '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "تغيير الوسائط" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms قيد الاستخدام" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "يستخدم نظامك مدير الصوت 'evms' في /proc/mounts. برمجيات 'evms' لم تعد " "مدعومة، من فضلك أغلقه ونفذ الترقية مجددا عندما ينتهي." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "قد يكون عتاد الرسوميات في جهازك ليس مدعوما بالكامل في أوبونتو 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "تشغيل بيئة سطح المكتب \"يونتي\" ليس مدعوما بالكامل من عتاد الرسوميات الخاص " "بك. قد ينتهي بك الأمر في بيئة بطيئة جدا بعد الترقية. ننصحك بإبقاء الإصدارة " "الحالية في الوقت الراهن. لمزيد من المعلومات، انظر: " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D\r\n" "هل ما زلت ترغب بالاستمرار في الترقية؟" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "قد يكون عتاد الرسوميات في جهازك غير مدعوم بالكامل في أوبنتو 12.04." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "دعم أوبنتو 12.04 لعتاد الرسوميات في جهازك محدود وقد تواجه مشاكل بعد الترقية. " "لمزيد من المعلومات انظر: " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx هل تود الاستمرار " "في الترقية؟" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "قد تقلل الترقية من تأثيرات سطح المكتب، وأداء الألعاب وبرامج الرسوميات " "المكثفة الأخرى." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "يستخدم حاسوبك حاليا مشغل 'nvidia' لرسوميات NVIDIA. لا توجد نسخة من هذا " "المشغل متوافقة مع عتادك في أوبونتو 10.04 LTS.\n" "\n" "أتريد المواصلة؟" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "يستخدم حاسوبك حاليا مشغل 'fglrx' لرسوميات AMD. لا توجد نسخة من هذا المشغل " "متوافقة مع عتادك في أوبونتو 10.04 LTS.\n" "\n" "أتريد المواصلة؟" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "لا يوجد معالج i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "نظامك يستخدم وحدة معالجة مركزية من طراز i586 لا تملك ملحق cmov. تم بناء كل " "الحزم متطلبةً لبنية i686 كحد أدنى. ليس من الممكن ترقية نظامك إلى إصدارة " "أوبونتو الجديدة مع هذا العتاد." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "لا معالج ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "نظامك يستخدم معالج ARM أقدم من معمارية ARMv6. إن جميع الحزم في النسخة karmic " "مبنية لتعمل على الطراز ARMv6 كحد أدنى. من غير الممكن ترقية نظامك إلى إصدارة " "أوبونتو حديثة مع هذا العتاد." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "لا يوجد عفريت مدير للعمليات" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "يبدو أن نظامك يعمل في بيئة ظاهرية بدون عفريت بدأ، مثلاً Linux-VServer. لا " "يستطيع أوبنتو 10.04 د.ط.أ (دعم طويل الأمد) العمل في هذا النوع من بيئات " "العمل، يتطلب تحديثًا لإعدادات الألة الظاهرية أولاً.\n" "\n" "هل حقاً تريد الاستمرار؟" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "ترقية في بيئة محكومة (صندوق رمل)" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "ابحث في المسار المعطى عن قرص مدمج يحوي حزم ترقية" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "استخدم واجهة. المتاح حاليا:\n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKD" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*مهجور* سيتم تجاهل هذا الخيار" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "قم بترقية جزئية فقط (لا كتابة فوق sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "عطل دعم شاشة جنو" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "حدد مجلد البيانات" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "اكتمل الجلب" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "يجلب الملف %li من %li بـ %s.بايت/ثانية" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "بقي %s تقريبا" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "يجلب الملف %li من %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "يطبّق التغييرات" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "مشكلة اعتمادية - سأغادر بدون إعداد" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "تعذّر تثبيت '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "ستواصل الترقية لكن حزمة '%s' قد لا تعمل. من فضلك أبلغ عن هذه العلة." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "أأستبدل الملف المطوع\n" "'%s'؟" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "ستفقد أي تغيرات كنت قد أحدثتها في ملف التضبيطات هذا إن اخترت استبداله " "بإصدارة أحدث." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "تعذّر العثور على أمر 'diff'" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "حدث خطأ فادح" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "رجاءً أبلغ عن هذا كعلّة (إذا لم تكن قد فعلت) و أرفق الملفان /var/log/dist-" "upgrade/main.log و /var/log/dist-upgrade/apt.log في البلاغ. تم الخروج من " "الترقية.\n" "ملف sources.list الأصلي حُفِظَ في /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "ضُغط Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "هذا سيجهض العملية وقد يترك النظام في حالة معطوبة. أمتأكد أنك تريد فعل ذلك؟" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "لتلافي فقد البيانات أغلق جميع التطبيقات والمستندات." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "لم تعد كانونيكال تدعمها (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "إلى إصدارة أقدم (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "أزل (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "لم تعد مطلوبة (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "تثبيت (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "ترقية (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "أظهر الفرق >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< أخف الفرق" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "خطأ" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "أل&غِ" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "أ&غلق" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "أظهر الطرفية >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< أخف الطرفية" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "معلومات" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "التّفاصيل" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "لم تعد مدعومة %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "أزل %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "أزل %s (ثبّت تلقائيا)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "ثبّت %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "رقِّ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "إعادة التشغيل مطلوبة" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "أعد تشغيل النظام لإتمام الترقية" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "أ_عد التشغيل الآن" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "أألغ الترقية الجارية ؟\n" "\n" "قد يصبح النظام في حالة غير صالحة للاستعمال إذا ألغيت الترقية. ننصح بشدة " "استئناف الترقية." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "أألغي الترقية؟" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "لا أيام" msgstr[1] "يوم واحد" msgstr[2] "يومان" msgstr[3] "%li أيام" msgstr[4] "%li يوما" msgstr[5] "%li يوم" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "لا ساعات" msgstr[1] "ساعة واحدة" msgstr[2] "ساعاتان" msgstr[3] "%li ساعات" msgstr[4] "%li ساعة" msgstr[5] "%li ساعة" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "لا دقائق" msgstr[1] "دقيقة واحدة" msgstr[2] "دقيقتان" msgstr[3] "%li دقائق" msgstr[4] "%li دقيقة" msgstr[5] "%li دقيقة" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "لا ثوان" msgstr[1] "ثانية واحدة" msgstr[2] "ثانيتان" msgstr[3] "%li ثوان" msgstr[4] "%li ثانية" msgstr[5] "%li ثانية" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "سيأخذ التنزيل حوالي %s على اتصال بسرعة 1م.بايت، وحوالي %s على مودم 56ك." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "سيستغرق التنزيل حوالي %s بسرعة اتصالك. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "يحضّر للترقية" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "يجلب قنوات البرمجيات الجديدة" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "يجلب الحزم الجديدة" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "يثبّت الترقيات" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "ينظّف" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "ليس أي من الحزم المثبتة لم تعد كانونيكال تدعمه. مازال بإمكانك الحصول على " "الدعم من المجتمع." msgstr[1] "" "واحدة من الحزم المثبتة لم تعد كانونيكال تدعمه. مازال بإمكانك الحصول على " "الدعم من المجتمع." msgstr[2] "" "اثنتان من الحزم المثبتة لم تعد كانونيكال تدعمه. مازال بإمكانك الحصول على " "الدعم من المجتمع." msgstr[3] "" "%(amount)d حزم من المثبتة لم تعد كانونيكال تدعمه. مازال بإمكانك الحصول على " "الدعم من المجتمع." msgstr[4] "" "%(amount)d حزمة من المثبتة لم تعد كانونيكال تدعمه. مازال بإمكانك الحصول على " "الدعم من المجتمع." msgstr[5] "" "%(amount)d حزمة من المثبتة لم تعد كانونيكال تدعمه. مازال بإمكانك الحصول على " "الدعم من المجتمع." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "لن تزال أية حزمة." msgstr[1] "ستزال حزمة واحدة." msgstr[2] "ستزال حزمتان." msgstr[3] "ستزال %d حزم." msgstr[4] "ستزال %d حزمة." msgstr[5] "ستزال %d حزمة." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "لن تثبت أي حزم جديدة." msgstr[1] "ستثبت حزمة واحدة جديدة." msgstr[2] "ستثبت حزمتان جديدتان." msgstr[3] "ستثبت %d حزم جديدة." msgstr[4] "ستثبت %d حزمة جديدة." msgstr[5] "ستثبت %d حزمة جديدة." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "لن ترقى أي حزم جديدة." msgstr[1] "سترقى حزمة واحدة جديدة." msgstr[2] "سترقى حزمتان جديدتان." msgstr[3] "سترقى %d حزم جديدة." msgstr[4] "سترقى %d حزمة جديدة." msgstr[5] "سترقى %d حزمة جديدة." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "تحتاج لتنزيل ما مجمله %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "تثبيت الترقية قد يأخذ بضع ساعات. حالما ينتهي التنزيل، فلا يمكن إلغاء العملية." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "جلب وتثبيت الترقية قد يأخذ بضع ساعات. حالما ينتهي التنزيل، لا يمكن إلغاء " "العملية." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "إزالة الحزم قد يأخذ بضع ساعات. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "البرمجيات على هذا الحاسوب مُحدّثة." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "لا توجد أي ترقيات متوفرة لنظامك. ستلغى الترقية الآن." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "إعادة التشغيل مطلوبة" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "لقد انتهت الترقية وإعادة التشغيل مطلوبة. هل تود القيام بذلك الآن؟" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "رجاءً أبلغ عن هذا كعلّة وأرفق الملفان /var/log/dist-upgrade/main.log و " "/var/log/dist-upgrade/apt.log في البلاغ. تم الخروج من الترقية.\n" "ملف sources.list الأصلي حُفِظَ في /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "يُجهض" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "حطّت رتبته:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "للإستمرار اضغط على [Enter]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "استمر [ن(ل)] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "التّفاصيل [ف]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "ن" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "ل" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "ف" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "لم تعد مدعومة: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "إزالة: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "تثبيت: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "ترقية: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "تابع [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "لإتمام الترقية تنبغي إعادة تشغيل النظام.\n" "إن اخترت 'ن' فإن النظام سيعاد تشغيله." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "ينزّل الملف %(current)li من %(total)li بسرعة %(speed)s/ثانية" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "ينزّل الملف %(current)li من %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "أظهر تقدّم الملفات المفردة" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "أ_لغ الترقية" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "أ_كمل التحديث" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "أألغي الترقية الجارية؟\n" "\n" "إن ألغيت الترقية فقد يبقى نظامك في حالة غير صالحة للاستخدام. نحثك بشدة أن " "تواصل الترقية." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "اب_دأ الترقية" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_استبدل" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "الفرق بين الملفات" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "أ_بلغ عن علّة" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "ا_ستمر" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "أأبدأ الترقية؟" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "أعد تشغيل النظام لإكمال عملية الترقية\n" "\n" "من فضلك احفظ أي عمل كنت تقوم به أولا." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "ترقية التوزيعة" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "ترقية أوبونتو إلى الإصدارة 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "يضبط قنوات البرمجيات الجديدة" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "يعيد تشغيل الحاسوب" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "طرفية" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "تر_قية" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "تتوفر إصدارة جديدة من أوبونتو، أترغب في الترقية؟" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "لا أرغب" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "اسألني لاحقا" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "نعم، رقِّ الآن" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "لقد رفضت الترقية إلى أوبونتو الجديدة" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "يمكنك ترقية الإصدارة في وقت لاحق عن طريق فتح محدث البرمجيات والنقر على " "\"رق\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "أجر ترقية للإصدارة" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "تحتاج للاستيثاق لترقية أوبونتو." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "أجر ترقية جزئية" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "تحتاج للاستيثاق لتنفيذ الترقية الجزئية." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "اعرض الإصدارة واخرج" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "المجلد الذي يحتوي ملفات البيانات" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "يشغل الواجهة المحددة" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "يُجري ترقية جزئية" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "ينزّل أداة الترقية" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "يتحقق إن كانت الترقية ممكنة إلى أحدث إصدارة تطوير" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "حاول الترقية إلى أحدث إصدارة باستخدام المحدِّث من $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "يعمل في طور ترقية خاص.\n" "حاليا الطوران المدعومان هما 'desktop' للترقية الاعتيادية لنظام سطح مكتب، و " "'server' لنظم الخواديم." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "اختبر الترقية في بيئة محكومة (صندوق رمل)" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "تحقق فقط إذا كان هناك إصدار جديد من التوزيعة متوفرا و أرسل تقريرا خلال كود " "الخروج" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "يتحقق من وجود إصدارة جديدة من أبونتو" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "نسختك من أبونتو لم تعد مدعومة بعد الآن." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "لمعلومات عن الترقية، رجاءً قم بزيارة:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "لا توجد إصدارات أحدث" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "يتعذّر ترقية الإصدارة حاليا" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "تعذّر ترفية الإصدارة حاليا، أعد المحاولة لاحقا. رد الخادوم: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "لا تتوفر إصدارات '%s'" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "شغّل 'do-release-upgrade' للترقية إليه." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "يتوفر ترقية إلى أوبونتو %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "لقد رفضت الترقية إلى أوبونتو %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "أضف مُخرَجات التنقيح" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "الاستيثاق مطلوب لإجراء ترقية جزئية" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "الاستيثاق مطلوب لترقية الإصدارة" ubuntu-release-upgrader-0.220.10/po/pt_BR.po0000644000000000000000000020101512431225715015356 0ustar # Portuguese Brazilian translation for update-manager # This file is distributed under the same licence as the update-manager package. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:42+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Ubuntu-BR \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "X-Poedit-Country: BRAZIL\n" "Language: \n" "X-Poedit-Language: Portuguese\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Servidor para %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Servidor principal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Servidores personalizados" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Não foi possível calcular a entrada de source.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Não foi possível localizar qualquer arquivo do pacote. Talvez este não seja " "um disco do Ubuntu ou tenha uma arquitetura diferente?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Falha ao adicionar o CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Ocorreu um erro ao adicionar o CD, a atualização será abortada. Por favor, " "relate isto como um erro caso este seja um CD válido do Ubuntu.\n" "\n" "Mensagem de erro:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Remover pacote danificado" msgstr[1] "Remover pacotes danificados" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "O pacote '%s' está em um estado inconsistente e precisa ser reinstalado, " "porém nenhum arquivo foi encontrado para ele. Deseja remover este pacote " "agora para continuar?" msgstr[1] "" "Os pacotes '%s' estão em um estado inconsistente e precisam ser " "reinstalados, porém nenhum arquivo foi encontrado para eles. Deseja remover " "estes pacotes agora para continuar?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "O servidor pode estar sobrecarregado" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Pacotes quebrados" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Seu sistema possui pacotes quebrados que não puderam ser consertados com " "este programa. Por favor, arrume-os primeiro usando o Synaptic ou apt-get " "antes de continuar." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Um problema sem solução ocorreu enquanto calculava a atualização:\n" "%s\n" "\n" " Isso pode ser causado por:\n" " * Atualização para uma versão de pré-lançamento do Ubuntu\n" " * Rodar a versão atual de pré-lançamento do Ubuntu\n" " * Pacotes não-oficiais não fornecidos pelo Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Provavelmente este problema é temporário. Por favor, tente mais tarde." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Se nada disso se aplicar, relate esse erro usando o comando 'ubuntu-bug " "ubuntu-release-upgrader-core' no terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Não foi possível calcular a atualização" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Erro na autenticação de alguns pacotes" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Não foi possível autenticar alguns pacotes. Isso pode ser devido a um " "problema na rede. Você pode tentar novamente mais tarde. Veja abaixo uma " "lista dos pacotes não-autenticados." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "O pacote '%s' está marcado para remoção, mas ele está na lista-negra de " "remoção." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "O pacote essencial '%s' está marcado para remoção." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Tentando instalar uma versão marcada como banida: '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Não é possível instalar '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Foi impossível instalar o pacote requerido. Por favor, relate esse erro " "usando 'ubuntu-bug ubuntu-release-upgrader-core' no terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Não foi possível adivinhar o meta-pacote" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Seu sistema não possui nenhum dos pacotes ubuntu-desktop, kubuntu-desktop, " "xubuntu-desktop ou edubuntu-desktop, e não foi possível detectar qual versão " "do Ubuntu você está executando.\n" " Por favor, instale um dos pacotes acima usando o synaptic, ou o apt-get, " "antes de continuar." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Lendo cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Não foi possível obter trava exclusiva" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Isso normalmente significa que um outro aplicativo de gerenciamento de " "pacotes (como o apt-get ou aptitude) já está em execução. Por favor, feche " "esse aplicativo primeiro." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Atualização através de conexão remota não é suportada" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Você está executando uma atualização sobre uma conexão ssh com uma interface " "que não suporta isso. Por favor tente uma atualização em modo texto com 'do-" "release-upgrade'\n" "A atualização será abortada agora. Por favor, tente sem ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Continuar executando sob SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Esta sessão parece estar sendo executada sobre ssh. Não é recomendado " "efetivar uma uma atualização sobre ssh atualmente porque, em caso de falha, " "é mais difícil uma recuperação. \n" "Se você prosseguir, um daemon ssh será iniciado na porta '%s'.\n" "Você quer prosseguir?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Iniciando sshd adicional" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Para recuperar mais facilmente em caso de falha, um sshd adicional será " "iniciado na porta '%s'. Se algo ocorrer errado com o ssh em execução, você " "poderá ainda conectar pelo adicional.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Se você executa um firewall, talvez seja necessário abrir temporariamente " "esta porta. Como abri-la pode ser potencialmente perigoso, isso não é feito " "automaticamente. Por exemplo, você pode fazê-lo com:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Não é possível atualizar" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Uma atualização de '%s' para '%s' não é suportada através desta ferramenta." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "A configuração da área segura falhou" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Não foi possível criar o ambiente de área segura." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Modo área segura" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Esta atualização está sendo executada em modo de área local (teste). Todas " "as mudanças são escritas para '%s' e serão perdidas na próxima " "reinicialização.\n" "\n" "*Nenhuma* mudança escrita no diretório do sistema de agora até a próxima " "reinicialização é permanente." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Sua instalação do python está corrompida. Por favor conserte o link " "simbólico '/usr/bin/python'." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "O Pacote 'debsig-verify' está instalado" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "A atualização não pode prosseguir com esse pacote instalado.\n" "Por favor, remova o pacote utilizando o synaptic ou 'apt-get remove debsig-" "verify' e tente executar a atualização novamente" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Não foi possível gravar em '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Não é possível escrever no diretório do sistema '%s' no seu sistema. A " "atualização não pode continuar.\n" "Por favor, tenha certeza que o diretório do sistema é gravável." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Incluir as últimas atualizações através da Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "O sistema de upgrade pode usar a internet para baixar automaticamente as " "últimas atualizações e instalá-las durante o upgrade. Se você tem uma " "conexão de rede, é altamente recomendado.\n" "\n" "O upgrade irá demorar, mas quando estiver completo, todo o seu sistema " "estará totalmente atualizado. Você pode escolher não fazer isso agora, mas " "você pode instalar as últimas atualizações depois do upgrade.\n" "Se você responder 'não' aqui, a rede não será utilizada." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "desabilitado na atualização para %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nenhum repositório válido encontrado" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Enquanto verificava suas informações do repositório nenhuma entrada de " "espelho para atualização foi encontrada. Isto pode acontecer se você executa " "um espelho interno ou se as informações do espelho estiverem " "desatualizadas.\n" "\n" "Você quer reescrever seu arquivo 'sources.list' de qualquer maneira? Se você " "escolher 'Sim' serão atualizadas todas as entradas '%s' para '%s'.\n" "Se você selecionar 'Não' a atualização será cancelada." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Gerar sources padrão?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Após verificar seu 'sources.list' nenhuma entrada válida para '%s' foi " "encontrada.\n" "\n" "Deveriam as entradas padrões para '%s' serem adicionadas? Se você selecionar " "'Não', a atualização será cancelada." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Informação de repositório inválida" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "A atualização das informações do repositório resultou em um arquivo inválido " "então um processo de relatório de erros e está sendo iniciado." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Fontes de terceiros desabilitadas" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Algumas entradas de terceiros em seu sources.list foram desabilitadas. Você " "pode reabilitá-las após a atualização com a ferramenta 'software-properties' " "ou com o seu gerenciador de pacotes." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pacote em estado inconsistente" msgstr[1] "Pacotes em estado inconsistente" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "O pacote '%s' está em um estado inconsistente e precisa ser reinstalado, " "porém nenhum arquivo foi encontrado para ele. Por favor reinstale o pacote " "manualmente ou remova-o do sistema." msgstr[1] "" "Os pacotes '%s' estão em um estado inconsistente e precisam ser " "reinstalados, porém nenhum arquivo foi encontrado para eles. Por favor " "reinstale os pacotes manualmente ou remova-os do sistema." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Erro durante a atualização" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Um problema ocorreu durante a atualização. Isso geralmente pode ser por " "problemas de rede, por favor verifique a sua conexão de rede e tente " "novamente." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Não há espaço suficiente no disco" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "A atualização foi abortada. A atualização precisa de um total de %s de " "espaço livre no disco '%s'. Por favor, libere pelo menos %s adicionais de " "espaço em disco '%s'. Esvazie seu lixo e remova pacotes temporários de " "instalações anteriores usando 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Calculando as mudanças" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Você quer iniciar a atualização?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Atualização cancelada" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "A atualização será cancelada agora e o estado original do sistema será " "restaurado. Você pode continuá-la em um outro momento." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Não foi possível baixar as atualizações" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "A atualização foi abortada. Por favor, verifique sua conexão à Internet ou " "mídia de instalação e tente novamente. Todos os arquivos baixados até agora " "foram mantidos." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Erro ao aplicar as mudanças" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Restaurando o estado original do sistema" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Não foi possível instalar as atualizações" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "A atualização foi cancelada. Seu sistema pode estar inutilizável. Um " "processo de recuperação será executado agora (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Por favor, relate este erro usando um navegador em " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug e " "anexe os arquivos em /var/log/dist-upgrade/ ao relatório de erro.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "A atualização foi cancelada. Por favor verifique sua conexão com a internet " "ou a mídia de instalação e tente novamente " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Remover pacotes obsoletos?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Manter" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Remover" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Um problema ocorreu durante a limpeza. Por favor veja as mensagens abaixo " "para mais informações. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Dependências requeridas não estão instaladas" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "A dependência requerida '%s' não está instalada. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Verificando o Gerenciador de pacotes" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "A preparação para a atualização falhou" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Falha na preparação do sistema para atualização, portanto um processo de " "relatório de erros está sendo iniciado." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Falha ao obter os pré-requisitos para atualização" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "O sistema não conseguiu baixar os pré-requisitos para a atualização. A " "atualização foi abortada e o sistema será restaurado ao estado original.\n" "\n" "Além disso, um processo de relatório de erro está sendo iniciado." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Atualizando informação do repositório" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Falha ao adicionar cd-rom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Desculpe, a inclusão do cd-rom não foi bem sucedida." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Informação do pacote inválida" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Obtendo" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Atualizando" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Atualização completa" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "A atualização foi concluída mas houve erros durante o processo de " "atualização." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Buscando programas obsoletos" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "A atualização do sistema está completa." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "A atualização parcial está completa." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Não foi possível encontrar as notas de lançamento" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "O servidor pode estar sobrecarregado. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Não foi possível obter as notas de lançamento" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Por favor, verifique sua conexão à Internet." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "autenticar os '%(file)s' contra as '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "extraindo '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Não foi possível executar a ferramenta de atualização" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Esse é mais provavelmente um erro na ferramenta de atualização. Por favor, " "reporte-o como um erro usando o comando 'ubuntu-bug ubuntu-release-upgrader-" "core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Assinatura da ferramenta de atualização" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Ferramenta de atualização" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Falha ao obter" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Falha ao obter a atualização. Pode ser algum problema com a rede. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Falha na autenticação" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Falha ao autenticar a atualização. Pode ser um problema com a rede ou com o " "servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Falha ao extrair" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Falha ao extrair a atualização. Pode ser um problema com a rede ou com o " "servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Falha na verificação" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Falha ao verificar atualização. Pode ser um problema com a rede ou com o " "servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Não foi possível executar a ferramenta de atualização" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Isso é causado normalmente por um sistema onde /tmp é montado com noexec. " "Por favor, remonte sem noexec e execute a atualização novamente." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "A mensagem de erro é '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Atualizar" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Notas de lançamento" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Baixando arquivos de pacotes adicionais..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Arquivo %s de %s a %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Arquivo %s de %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Por favor insira '%s' na unidade '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Mudança de mídia" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms em uso" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Seu sistema está utilizando o gerenciador de volumes 'evms' em " "/proc/mounts. O software 'evms' não é mais suportado, por favor desative-o e " "execute a atualização novamente quando isto for feito." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "A execução do ambiente de trabalho 'unity' não é completamente suportada por " "sua placa de vídeo. Você poderá terminar com um ambiente muito lento após a " "atualização. Nosso conselho é manter a versão LTS por enquanto. Para maiores " "informações veja " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Você tem " "certeza de que deseja continuar com a atualização?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Seu hardware de gráficos pode não ser totalmente suportado no Ubuntu 12.04 " "LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "O suporte para o seu hardware gráfico Intel no Ubuntu 12.04 LTS é limitado e " "você pode encontrar problemas após a atualização. Para mais informações veja " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Você deseja " "continuar com a atualização?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Atualizar pode reduzir efeitos da área de trabalho e performance em jogos e " "outros programas que usam gráficos intensamente." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Este computador está atualmente usando o driver de vídeo 'nvidia', da " "NVIDIA. Nenhuma versão deste driver, que funcione com sua placa de vídeo no " "Ubuntu 10.04 LTS, está disponível.\n" "\n" "Você deseja continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Este computador está atualmente usando o driver de vídeo 'fglrx', da AMD. " "Nenhuma versão deste driver, que funcione com seu hardware no Ubuntu 10.04 " "LTS, está disponível.\n" "\n" "Você deseja continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Sem processador i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Seu sistema usa um processador i586 ou um processador que não possui a " "extensão 'cmov'. Todos os pacotes foram construídos com otimizações que " "requerem i686 como arquitetura mínima. Não é possível atualizar seu sistema " "para uma nova versão do Ubuntu nesse computador." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Nenhuma CPU ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "O seu sistema utiliza uma CPU ARM mais antiga do que a arquitetura ARMv6. " "Todos os pacotes no Karmic foram criados com otimizações que requerem no " "mínimo a arquitetura ARMv6. Não é possível atualizar seu sistema para uma " "versão mais nova do Ubuntu com este hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Sem inicialização disponível" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Seu sistema aparenta ser um ambiente virtualizado sem um daemon de " "inicialização, e.g. Linux-Vserver. O Ubuntu 10.04 LTS não pode funcionar " "neste tipo de ambiente, requerendo uma atualização da configuração de sua " "máquina virtual primeiro.\n" "\n" "Você tem certeza que deseja continuar?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Atualização da área de segurança utilizando aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Use o caminho dado para buscar por um cdrom com pacotes atualizáveis" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Usar a interface gráfica. Disponível atualmente: \n" "DistUpgradeviewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*OBSOLETO* esta opção será ignorada" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Executando somente uma atualização parcial (sem reescrever o sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Desabilitar suporte de tela GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Configurar diretório de dados" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "A busca está completa" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Obtendo arquivo %li de %li a %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Restam aproximadamente %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Obtendo arquivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Aplicando mudanças" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemas de dependência - deixando desconfigurado" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Não foi possível instalar '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "A atualização irá continuar, mas o pacote '%s' pode não estar em um estado " "funcional. Por favor considere o envio de um relatório de erro a respeito." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Substituir o arquivo de configurações personalizadas\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Você irá perder qualquer mudança que tenha feito nesse arquivo de " "configuração se você escolher substituí-lo por uma versão mais nova." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "O comando 'diff' não foi encontrado" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ocorreu um erro fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Por favor, relate isso como um erro (se já não o fez) e inclua os arquivos " "/var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log em seu " "relatório. A atualização foi cancelada.\n" "Seu arquivo sources.list original foi salvo em " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c pressionado" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Isto irá abortar a operação e deixar o sistema em broken state. Tem certeza " "de que deseja fazer isto?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Para evitar perda de dados, feche todos os aplicativos e documentos." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Não é mais suportado pela Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Desatualizar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Remover (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Não é mais necessário (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instalar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Atualizar (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Mostrar a diferença >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Ocultar diferença" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Erro" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "Fe&char" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Mostrar Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Ocultar terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informação" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detalhes" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Não é mais suportado %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Remover %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Remover (foi auto-instalado) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instalar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Atualizar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Reinicialização necessária" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Reinicie o sistema para finalizar a atualização" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Reiniciar agora" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Cancelar a atualização em progresso?\n" "\n" "O sistema pode ficar inutilizável se você cancelar a atualização. É " "altamente recomendável que você prossiga com a atualização." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Cancelar atualização?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dia" msgstr[1] "%li dias" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hora" msgstr[1] "%li horas" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuto" msgstr[1] "%li minutos" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li segundo" msgstr[1] "%li segundos" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Este download demorará em torno de %s numa conexão DSL de 1 Mbit e em torno " "de %s em um modem de 56K." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Este download irá levar cerca de %s com sua conexão. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Preparando para atualizar" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Obtendo novos canais de software" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Obtendo novos pacotes" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Instalando as atualizações" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Limpando" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d pacote instalado e não tem mais suporte da Canonical. Você pode " "continuar com o suporte da comunidade." msgstr[1] "" "%(amount)d pacotes instalados e não têm mais suporte da Canonical. Você pode " "continuar com o suporte da comunidade." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pacote será removido." msgstr[1] "%d pacotes serão removidos." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novo pacote será instalado." msgstr[1] "%d novos pacotes serão instalados." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacote será atualizado." msgstr[1] "%d pacotes serão atualizados." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Você tem que baixar um total de %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Instalar a atualização pode demorar várias horas. Uma vez terminado o " "download, o processo não pode ser cancelado." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Buscar e instalar a atualização pode levar algumas horas. Uma vez terminado " "de baixá-la, o processo não pode ser cancelado." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Remover os pacotes podem demorar várias horas. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "O software em seu computador está atualizado." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Não há atualizações disponíveis para o seu sistema. A atualização será " "cancelada agora." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Reinicialização necessária" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "A atualização terminou e é necessário reiniciar o computador. Você deseja " "fazer isso agora?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Por favor, relate isso como um erro e inclua os arquivos /var/log/dist-" "upgrade/main.log e /var/log/dist-upgrade/apt.log em seu relatório. A " "atualização foi cancelada.\n" "Seu arquivo sources.list original foi salvo em " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Abortando" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Rebaixado:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Por favor, para continuar pressione [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Continuar [sN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detalhes [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "s" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Não mais suportado: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Remover: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instalar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Atualizar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continuar [Sn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Para terminar a atualização, é necessário reiniciar.\n" "Se você selecionar 's' o sistema será reiniciado." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Baixando arquivo %(current)li de %(total)li a %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Baixando arquivo %(current)li de %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Exibir o progresso de cada arquivo individualmente" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Cancelar atualização" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Continua_r atualização" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Cancelar a atualização em progresso?\n" "\n" "O sistema pode ficar inutilizável se você cancelar a atualização. É " "altamente recomendável que você prossiga com a atualização." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Iniciar atualização" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Substitui_r" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Diferenças entre os arquivos" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Relatar erro" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continuar" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Iniciar a atualização?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Reinicie o sistema para completar a atualização\n" "Por favor, salve o seu trabalho antes de continuar." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Atualização da distribuição" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Definindo os novos canais de software" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Reiniciando o sistema" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "At_ualizar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Uma nova versão do Ubuntu esta disponível. Você gostaria de atualizar?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Não atualize" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Perguntar-me mais tarde" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Sim, Atualize agora" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Você se recusou a atualização para o novo Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Você poderá atualizar mais tarde abrindo o Atualizador de programas e " "clicando em \"Atualizar\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Realizar uma atualização de versão" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Para atualizar o Ubuntu, você precisa autenticar-se." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Executar uma atualização parcial" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Para efetuar uma atualização parcial, você precisa autenticar-se." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Mostrar a versão e sair" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Diretório que contém os arquivos de dados" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Executar a interface especificada" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Executando uma atualização parcial" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Baixando a ferramenta de atualização" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Verificar se é possível atualizar para a versão de desenvolvimento mais " "recente" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Tente atualizar para a última versão usando o atualizador de $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Executar um método especial de atualização.\n" "Atualmente são suportadas 'desktop' para atualizações apartir de um sistema " "desktop e 'server' para sistema tipo servidor." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testar atualização com uma sobreposição de aufs na área segura." #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Somente verificar se um novo lançamento da distribuição está disponível e " "informe o resultado através do código de saída" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Verificando por uma nova versão do Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Não há mais suporte para a sua versão do Ubuntu." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Para informações sobre atualização, visite:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Nenhuma nova versão encontrada" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Não é possível fazer a atualização de versão agora" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Não é possível executar a atualização de versão no momento. Por favor, tente " "novamente mais tarde. O servidor relatou: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Novo lançamento '%s' está disponível." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Execute 'do-release-upgrade' para atualizá-lo." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Atualização do Ubuntu %(version)s disponível" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Você desistiu de atualizar para o Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Adicionar saída de depuração" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Autenticação é necessária para uma atualização de versão" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Autenticação é necessária para realizar uma atualização parcial" ubuntu-release-upgrader-0.220.10/po/ro.po0000644000000000000000000020374412431225715015003 0ustar # Romanian translation of update-manager. # Copyright (C) 2005 Free Software Foundation, Inc. # This file is distributed under the same license as the update-manager package. # Dan Damian , 2005. # Lucian Adrian Grijincu , 2010, 2011. msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Marian Vasile \n" "Language-Team: Romanian Gnome Team \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n % 100 > 19) || ((n % 100 " "== 0) && (n != 0))) ? 2: 1));\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ro\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server pentru %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Server principal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Servere preferențiale" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Nu s-a putut calcula intrarea sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Nu s-au găsit pachete, poate că acesta nu e un disc Ubuntu sau este pentru o " "altă arhitectură?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Adăugarea CD-ului a eșuat" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "A apărut o eroare la adăugarea CD-ului; înnoirea va fi abandonată. Raportați " "o defecțiune dacă acest CD Ubuntu este unul valid.\n" "\n" "Mesajul de eroare a fost:\n" "„%s”" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Șterge pachetul aflat într-o stare eronată" msgstr[1] "Șterge pachetele aflate într-o stare eronată" msgstr[2] "Șterge pachetele aflate într-o stare eronată" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Pachetul „%s” este într-o stare inconsecventă și trebuie să fie reinstalat, " "dar nu poate fi găsită nicio arhivă pentru el. Doriți să eliminați acest " "pachet acum pentru a continua?" msgstr[1] "" "Pachetele „%s” sunt în stări inconsecvente și trebuie să fie reinstalate, " "dar nu pot fi găsite arhive pentru ele. Doriți să eliminați aceste pachete " "acum pentru a continua?" msgstr[2] "" "Pachetele „%s” sunt în stări inconsecvente și trebuie să fie reinstalate, " "dar nu pot fi găsite arhive pentru ele. Doriți să eliminați aceste pachete " "acum pentru a continua?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "S-ar putea ca serverul să fie suprasolicitat" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Pachete deteriorate" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sistemul conține pachete deteriorate care nu au putut fi reparate cu acest " "program. Înainte de a continua, remediați-le utilizând Synaptic sau apt-get." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "O problemă nerezolvabilă a apărut la calcularea înnoirii:\n" "%s\n" "\n" " Aceasta poate fi cauzată de:\n" " * o înnoire către o versiune încă nelansată de Ubuntu,\n" " * folosirea unei versiuni încă nelansate de Ubuntu,\n" " * pachete de programe neoficiale care nu provin din Ubuntu.\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Cel mai probabil este o problemă trecătoare, încercați mai târziu." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Dacă niciunul din cazurile enumerate nu se aplică, vă rugăm să raportați " "acest defect de programare utilizând în Terminal comanda „ubuntu-bug ubuntu-" "release-upgrader-core”." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Nu s-a putut calcula înnoirea" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Eroare la validarea unor pachete" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Nu s-au putut autentifica unele pachete. Aceasta se poate datora unor " "probleme temporare ale rețelei. Puteți încerca mai târziu. Aveți mai jos o " "listă a pachetelor neautentificate." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Pachetul „%s” este marcat pentru eliminare, dar este pe lista de interzicere " "de eliminare." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Pachetul esențial „%s” este marcat pentru eliminare." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" "Se încearcă instalarea versiunii „%s” care este pe lista versiunilor " "interzise la instalare" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Nu s-a putut instala „%s”" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Instalarea unui pachet necesar nu a fost posibilă. Vă rugăm să raportați " "acest defect de programare utilizând în Terminal comanda „ubuntu-bug ubuntu-" "release-upgrader-core”." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Nu s-a putut ghici meta-pachetul" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Sistemul nu conține un pachet ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop sau edubuntu-desktop, nu se poate determina versiunea Ubuntu " "folosită.\n" "Înainte de a continua, instalați unul din pachetele de mai sus folosind " "Synaptic sau apt-get." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Se citește cache-ul" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Nu s-a putut obține accesul exclusiv" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Aceasta de obicei înseamnă că mai rulează o altă aplicație de administrare a " "pachetelor (ca apt-get sau aptitude). Închideți mai întâi acea aplicație." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" "Înnoirile prin intermediul conexiunilor de la distanță nu sunt suportate" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Efectuați o înnoire printr-o conexiune ssh la distanță, utilizând o " "interfață care nu suportă acest lucru. Încercați o înnoire în mod text " "utilizând „do-release-upgrade”.\n" "\n" "Înnoirea va fi abandonată. Încercați fără ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Continuați rularea în SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Se pare că această sesiune rulează prin ssh. Nu este recomandat să realizați " "acum o înnoire prin ssh, deoarece recuperarea după un eșec este mai " "dificilă.\n" "\n" "Dacă veți continua, un nou daemon ssh va fi pornit pe portul „%s”.\n" "Doriți să continuați?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Se pornește serviciul sshd adițional" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Pentru a face mai ușoară recuperarea în caz de eroare, un serviciu sshd " "adițional va fi pornit pe portul „%s”. Dacă merge ceva prost cu serviciul " "ssh care rulează acum, puteți în continuare să vă conectați la cel " "adițional.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Dacă executați un parafoc (firewall), trebuie să deschideți temporar acest " "port. Deoarece deschiderea portului poate fi periculoasă, nu este făcută " "automat. De ex., aveți posibilitatea să deschideți un port cu:\n" "'% s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Nu s-a putut înnoi" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Înnoirea de la „%s” la „%s” nu este suportată cu acest program." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Inițializarea cutiei de nisip a eșuat" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Nu s-a putut crea mediul cutiei de nisip." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Mod cutie de nisip" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Această actualizare rulează în modul sandbox (test). Toate modificările sunt " "scrise în '%s' dar vor fi pierdute la următoarea repornire.\n" "\n" "*Nicio* modificare scrisă în dosarele de sistem de-acum până la următoarea " "repornire nu este permanentă." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Python-ul instalat este deteriorat. Reparați legătura simbolică " "„/usr/bin/python”." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pachetul „debsig-verify” este instalat" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Actualizarea nu mai poate continua cu acest pachet instalat.\n" "Dezinstalați-l cu Synaptic sau tastați comanda „apt-get remove debsig-" "verify” și reluați înnoirea." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Nu se poate scrie în '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Nu se poate scrie în dosarul de sistem '%s' de pe sistemul dumneavoastră. " "Actualizarea nu poate continua.\n" "Asigurați-vă că dosarul de sistem nu este în modul doar citire." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Includeți ultimele actualizări de pe Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Sistemul de înnoire poate folosi internetul pentru a descărca automat cele " "mai noi actualizări și pentru a le instala în timpul înnoirii. Dacă aveți o " "conexiune la rețea acest lucru este recomandat.\n" "\n" "Înnoirea va dura mai mult, dar când se va încheia, sistemul dumneavoastră va " "fi complet la zi. Puteți alege să nu faceți acest lucru, dar va trebui să " "instalați ultimele actualizări curând după înnoirea sistemului.\n" "Dacă răspunsul aici este „nu”, rețeaua nu va fi folosită deloc." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "dezactivat la înnoirea la %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nu s-a găsit niciun site oglindă valid" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "După scanarea informațiilor despre arhivele de programe, nu a fost găsită " "nicio referință la înnoire. Această situație poate apărea în cazul în care " "rulați un site oglindă intern sau dacă informațiile despre siteul oglindă " "sunt învechite.\n" "\n" "Doriți să rescrieți oricum fișierul „sources.list”? Dacă alegeți acum „Da” " "vor fi actualizate toate intrările de la „%s” la „%s”.\n" "Dacă alegeți „Nu” înnoirea va fi anulată." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Generați surse implicite?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "După ce s-a scanat „sources.list” nu s-a găsit nicio intrare validă pentru " "„%s”.\n" "\n" "Doriți să se adauge o intrare implicită pentru „%s”? Dacă selectați „Nu”, " "înnoirea va fi anulată." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Informațiile despre depozite nu sunt valide" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Actualizarea informațiilor despre arhive a creat un fișier nevalid, așa că a " "fost inițiat un raport pentru defecte de programare." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Surse terțe dezactivate" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Câteva înregistrări de la părți terțe din fișierul sources.list au fost " "dezactivate. Le puteți reactiva după înnoire cu aplicația „software-" "properties” sau din administratorul de pachete." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pachet aflat într-o stare inconsecventă" msgstr[1] "Pachete aflate în stări inconsecvente" msgstr[2] "Pachete aflate în stări inconsecvente" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Pachetul „%s” este într-o stare inconsecventă și trebuie să fie reinstalat, " "dar nu poate fi găsită nicio arhivă pentru el. Reinstalați manual pachetul " "sau eliminați-l din sistem." msgstr[1] "" "Pachetele „%s” sunt în stări inconsecvente și trebuie să fie reinstalate, " "dar nu pot fi găsite arhive pentru ele. Reinstalați manual pachetele sau " "eliminați-le din sistem." msgstr[2] "" "Pachetele „%s” sunt în stări inconsecvente și trebuie să fie reinstalate, " "dar nu pot fi găsite arhive pentru ele. Reinstalați manual pachetele sau " "eliminați-le din sistem." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Eroare în timpul actualizării" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "A apărut o problemă în timpul actualizării. De obicei este legată de " "probleme de rețea, verificați conexiunea și încercați din nou." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Spațiu liber pe disc insuficient" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Înnoirea a fost abandonată. Înnoirea necesită în total %s spațiu liber pe " "discul „%s”. Eliberați încă %s de spațiu pe discul „%s”. Goliți coșul de " "gunoi și ștergeți pachetele temporare ale actualizărilor mai vechi folosind " "comanda „sudo apt-get clean”." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Se calculează modificările" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Doriți să porniți înnoirea?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Înnoire anulată" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Înnoirea va fi anulată și se va restaura starea originală a sistemului. " "Puteți relua înnoirea mai târziu." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Nu s-au putut descărca înnoirile" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Actualizarea a fost anulată. Vă rugăm verificaţi conexiuna la Internet sau " "mediul de instalare și încercaţi din nou. Toate fişierele descărcate până la " "momentul apariției erorii au fost păstrate." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Eroare în timpul comiterii" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Se revine la starea inițială a sistemului" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Nu s-au putut instala înnoirile" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Înnoirea a fost abandonată. Sistemul dumneavoastră ar putea fi într-o stare " "inutilizabilă. Va fi executată o recuperare (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Raportați această eroare la adresa " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "atașând raportului și fișierele din /var/log/dist-upgrade/.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Înnoirea a fost abandonată. Verificați conexiunea la internet sau mediile de " "instalare și reîncercați. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Ștergeți pachetele învechite?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Păstrează" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Elimină" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "A apărut o problemă în timpul acțiunii de curățare. Pentru informații " "suplimentare, consultați mesajul de mai jos. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "O dependență necesară nu este instalată." #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Dependență necesară „%s” nu este instalată. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Se verifică managerul de pachete" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Pregătirea înnoirii a eșuat" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Pregătirea sistemului în vederea actualizării a eșuat, astfel că se pornește " "un proces pentru raportarea defecțiunilor." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Obținerea cerințelor pentru înnoire a eșuat" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Nu pot fi asigurate condițiile pentru actualizarea sistemului. Înnoirea va " "fi abandonată iar sistemul va fi adus la starea originală.\n" "\n" "În plus, a fost inițiat un raport pentru defecte de programare." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Se actualizează informațiile despre depozite" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Nu s-a putut adăuga CDROM-ul" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Nu s-a putut adăuga CDROM-ul" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Informații despre pachete nevalide" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "După actualizarea informațiilor despre pachete, nu se poate localiza " "pachetul esențial '%s'. Acest lucru poate fi cauzat de lipsa unor surse " "oficiale în lista de surse software, sau de încărcarea excesivă a site-ului " "utilizat. Verificați lista cu sursele software configurate în " "/etc/apt/sources.list.\n" "În cazul unei surse încărcate de trafic, ați putea încerca să actualizați " "mai târziu." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Se descarcă" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Se înnoiește" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Înnoire finalizată" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Înnoirea s-a terminat, dar au existat erori în timpul procesului de înnoire." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Se caută aplicații învechite" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Înnoirea sistemului este completă." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Înnoirea parțială a fost încheiată." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Nu s-au putut găsi notițele de lansare" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Serverul ar putea fi supraîncărcat. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Nu s-a putut descărca notițele de lansare" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Verificați conexiunea la internet." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "'%(file)s' fișiere autentificate prin '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "se extrage '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Nu s-a putut executa programul de înnoire" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Cel mai probabil există o eroare în pachetul de actualizare. Raportați " "această eroare folosind comanda 'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Înnoiește semnătura utilitarului" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Program de înnoire" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Descărcare eșuată" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Descărcarea înnoirii a eșuat. Ar putea exista o problemă la rețea. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Autentificare eșuată" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Autentificarea înnoirii a eșuat. Ar putea exista o problemă cu rețeaua sau " "cu serverul. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Nu s-a putut extrage" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Extragerea înnoirii a eșuat. Ar putea exista o problemă cu rețeaua sau cu " "serverul. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verificarea a eșuat" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Verificarea înnoirii a eșuat. S-ar putea să fie o problemă cu rețeaua sau cu " "serverul. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Nu s-a putut executa înnoirea" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Apare de regulă pe sisteme în care /tmp este montat noexec. Remontați fără " "opțiunea noexec și rulați din nou actualizarea." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Mesajul de eroare este „%s”." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Înnoiește" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Notițe de lansare" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Se descarcă pachete adiționale..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Fișierul %s din %s la %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Fișierul %s din %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Introduceți „%s” în unitatea „%s”" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Modificare mediu de stocare" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms în uz" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Sistemul dumneavoastră folosește gestionarul de volume „evms” în " "/proc/mounts. Programul „evms” nu mai beneficiază de asistență. Dezactivați-" "l și apoi reporniți procesul de înnoire." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Placa video poate face ca rularea mediului desktop 'unity' să fie groaie. " "Există posibilitatea ca după actualizare să rezulte un mediu grafic foarte " "încet. Sfatul nostru este acela de a păstra versiunea curentă. Pentru mai " "multe informații mergeți la " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Doriți să " "continuați actualizarea?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Există posibilitatea ca funcțiile plăcii grafice să nu fie recunoscute pe " "deplin în Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Suportul pentru dispozitivele grafice Intel este limitat în Ubuntu 12.04 " "LTS, de aceea este posibil să aveți unele probleme după actualizare. Pentru " "mai multe informații consultați " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx. Doriți să " "continuați actualizarea?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Înnoirea ar putea reduce efectele vizuale, performanța în jocuri și a altor " "aplicații intensive din punct de vedere grafic." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Acest calculator folosește driverul grafic pentru plăci NVIDIA numit " "„nvidia”. Nu există în Ubuntu 10.04 LTS nicio versiune a acestui driver care " "să funcționeze cu placa video din calculator.\n" "\n" "Doriți să continuați?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Acest calculator folosește driverul grafic pentru plăci AMD numit „fglrx”. " "Nu există în Ubuntu 10.04 LTS nicio versiune a acestui driver care să " "funcționeze cu placa video din calculator.\n" "\n" "Doriți să continuați?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Niciun CPU i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sistemul dumneavoastră folosește un CPU i586 sau un CPU care nu are extensia " "„cmov”. Toate pachetele au fost construite cu optimizări ce necesită i686 ca " "arhitectură minimă. Nu este posibilă actualizarea sistemului dumneavoastră " "la o nouă versiune Ubuntu cu acest hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Nu există nici un procesor ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sistemul dumneavoastră folosește un procesor ARM care este mai vechi decât " "arhitectura ARMv6. Toate pachetele din karmic au fost realizate cu " "optimizări care necesită ARMv6, ca arhitectură minimă. Cu acest hardware, nu " "se poate înnoi sistemul la noua versiune Ubuntu." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Nu există niciun serviciu „init” disponibil" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Sistemul dumneavoastră pare să fie un mediu virtualizat fără un serviciu " "„init”, de ex. Linux-VServer. Ubuntu 10.04 LTS nu poate funcționa în acest " "tip de mediu, necesitând mai întâi o actualizare a configurațiilor mașinii " "virtuale.\n" "\n" "Sigur doriți să continuați?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Înnoire de tip „cutie de nisip” folosind aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Folosește calea primită pentru a căuta un cdrom cu pachete ce pot fi înnoite" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Folosește interfața. Disponibile: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*ÎNVECHIT* această opțiune va fi ignorată" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Execută doar o înnoire parțială (fără rescrierea fișierului sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Dezactivează suportul pentru „GNU screen”" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Stabilește datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Descărcarea este completă" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Se descarcă fișierul %li din %li cu %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Mai rămân aproximativ %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Se descarcă fișierul %li din %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Se aplică modificările" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "probleme de dependențe - lăsat neconfigurat" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Nu s-a putut instala „%s”" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Înnoirea va continua, dar pachetul „%s” s-ar putea să nu fie funcțional. " "Raportați această eroare." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Înlocuiți fișierul de configurare particularizat\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Veți pierde orice schimbări făcute la acest fișier de configurare dacă " "alegeți să îl înlocuiți cu o versiune nouă." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Comanda „diff” nu a putut fi localizată" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "S-a produs o eroare fatală" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Raportați acest defect (dacă nu ați raportat încă) și includeți fișierele " "/var/log/dist-upgrade/main.log și /var/log/dist-upgrade/apt.log în raport. " "Înnoirea a fost abandonată. Fișierul sources.list original a fost salvat în " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c apăsat" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Aceasta va abandona operația și poate lăsa sistemul într-o stare " "deteriorată. Siguri doriți să faceți asta?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pentru a preveni pierderea datelor, salvați documentele și închideți toate " "aplicațiile." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Nu mai este suportat de Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Regresie (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Elimină (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Nu mai este necesar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instalează (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Actualizează (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Afișează diferențele >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Ascunde diferențele" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Eroare" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "În&chide" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Afișează terminalul >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Ascunde terminalul" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informații" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detalii" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Nu mai este suportat %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Șterge %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Șterge %s (a fost instalat automat)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instalează %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Înnoiește %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Este necesară repornirea" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Reporniți sistemul pentru ca înnoirea să se încheie" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Repornește acum" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Anulați înnoirea aflată în execuție?\n" "\n" "În cazul în care anulați această înnoire este posibil ca sistemul să rămână " "într-o stare neutilizabilă. Este foarte indicat să continuați înnoirea." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Anulați înnoirea?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li zi" msgstr[1] "%li zile" msgstr[2] "%li de zile" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li oră" msgstr[1] "%li ore" msgstr[2] "%li de ore" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minut" msgstr[1] "%li minute" msgstr[2] "%li de minute" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li secundă" msgstr[1] "%li secunde" msgstr[2] "%li de secunde" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Descărcarea va dura aproximativ %s pentru o conexiune de tip DSL de 1Mbit și " "aproximativ %s pentru un modem de 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" "Acestă descărcare va dura aproximativ %s cu conexiunea dumneavoastră. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Se pregătește înnoirea" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Se obțin noi canale software" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Se obțin pachete noi" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Se instalează înnoirile" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Se curăță" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Un pachet instalat nu mai este suportat de Canonical. Puteți cere în " "continuare ajutor comunității." msgstr[1] "" "%(amount)d pachete instalate nu mai sunt suportate de Canonical. Puteți cere " "în continuare ajutor comunității." msgstr[2] "" "%(amount)d de pachete instalate nu mai sunt suportate de Canonical. Puteți " "cere în continuare ajutor comunității." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pachet va fi șters." msgstr[1] "%d pachete vor fi șterse." msgstr[2] "%d de pachete vor fi șterse." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d pachet nou va fi instalat." msgstr[1] "%d pachete noi vor fi instalate." msgstr[2] "%d de pachete noi vor fi instalate." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pachet va fi înnoit." msgstr[1] "%d pachete vor fi înnoite." msgstr[2] "%d de pachete vor fi înnoite." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Trebuie să descărcați un total de %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Instalarea actualizărilor poate dura câteva ore. Odată ce descărcarea este " "terminată, procesul nu mai poate fi anulat." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Aducerea și instalarea actualizărilot poate dura câteva ore. Odată ce " "descărcarea acestora este terminată, procesul nu mai poate fi anulat." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Ștergerea pachetelor poate dura câteva ore. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Programele din acest calculator sunt la zi." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Nu există înnoiri disponibile sistemului dumneavoastră. Înnoirea va fi " "anulată." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Este necesară repornirea" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Înnoirea s-a încheiat și este necesară repornirea calculatorului. Doriți să " "faceți acest lucru acum?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Raportați acest defect și includeți fișierele /var/log/dist-upgrade/main.log " "și /var/log/dist-upgrade/apt.log în raport. Înnoirea a fost abandonată. " "Fișierul sources.list original a fost salvat în " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Se abandonează" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Retrogradat:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Pentru a continua apăsați [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Continuă [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detalii [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Nu mai sunt suportate: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Șterge: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instalează: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Înnoiește: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continuă [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Pentru a finaliza înnoirea este necesară repornirea sistemului.\n" "Dacă alegeți „y” sistemul va fi repornit." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Se descarcă fișierul %(current)li din %(total)li cu %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Se descarcă fișierul %(current)li din %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Afișează progresul pentru fiecare fișier în parte" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Anulează înnoirea" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Continuă înnoirea" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Anulați înnoirea aflată în execuție?\n" "\n" "Este posibil ca sistemul să fie inoperabil dacă anulați înnoirea. Vă " "recomandăm să continuați actualizarea." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Pornește înnoirea" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "În_locuiește" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Diferențele dintre fișiere" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Raportează eroarea" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continuă" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Porniți înnoirea?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Reporniți sistemul pentru a finaliza înnoirea\n" "\n" "Salvați toate lucrările deschise înainte de a continua." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Înnoire distribuție" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Se configurează canalele software noi" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Se repornește calculatorul" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "Î_nnoiește" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "O nouă versiune Ubuntu este disponibilă. Doriți să înnoiți sistemul la " "această versiune?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Nu înnoi" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Întreabă-mă mai târziu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Da, înnoiește acum" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Ați refuzat înnoirea la cea mai nouă versiune Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Puteți realiza mai târziu actualizarea sistemului deschizând programul " "Actualizare software și selectând \"Actualizare\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Se realizează o actualizare de versiune" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Pentru a actualiza Ubuntu trebuie să vă autentificați." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Se realizează o actualizare parțială" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Pentru a realiza o actualizare parțială trebuie să vă autentificați." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Afișează versiunea și ieși" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Dosarul care conține fișierele cu date" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Lansează interfața specificată" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Se execută înnoirea parțială" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Se descarcă utilitarul de înnoire" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Verifică dacă este posibilă înnoirea la cea mai recentă versiune în " "dezvoltare" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Încercați o înnoire la ultima versiune folosind utilitarul de înnoire din " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Rulează într-un mod special de înnoire.\n" "Momentan sunt suportate „desktop” pentru o actualizare normală a unui sistem " "de birou sau „server” pentru actualizarea unui sistem de tip server." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testează înnoirea într-o cutie de nisip cu aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Verifică doar dacă o nouă versiune de distribuție este disponibilă și " "raportează rezultatul prin codul de ieșire" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Se verifică dacă există versiuni noi pentru Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Această versiune Ubuntu nu mai primește asistență." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Pentru informații despre înnoire, vizitați:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Nu s-a găsit o versiune nouă" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Înnoirea la o nouă versiune nu este posibilă acum" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Înnoirea la o nouă versiune nu este posibilă acum, încercați mai târziu. " "Serverul a raportat: „%s”" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "O nouă versiune „%s” disponibilă." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Executați „do-release-upgrade” pentru a o aplica." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Înnoire disponibilă pentru Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Ați refuzat înnoirea la Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Adaugă informații pentru depanare" ubuntu-release-upgrader-0.220.10/po/qu.po0000644000000000000000000013025512431225715015004 0ustar # Quechua translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Terry \n" "Language-Team: Quechua \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: qu\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ca@valencia.po0000644000000000000000000017415712431225715016556 0ustar # Catalan translation for update-manager # Copyright (C) 2006 # This file is distributed under the same license as the update-manager package. # Jordi Irazuzta Cardús , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Joan Duran \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:54+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ca\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Servidor per %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Servidor principal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Servidors personalitzats" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "No s'ha pogut calcular l'entrada del fitxer sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "No s'ha pogut trobar cap paquet, esteu utilitzat un disc de l'Ubuntu per a " "l'arquitectura adequada?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "No s'ha pogut afegir el CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "S'ha produït un error en afegir el CD i l'actualització s'ha cancel·lat. " "Informeu d'este error si això ha passat amb un CD d'Ubuntu vàlid.\n" "\n" "El missatge d'error ha estat:\n" "«%s»" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Elimina el paquet en mal estat" msgstr[1] "Elimina els paquets en mal estat" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "El paquet «%s» es troba en un estat inconsistent i s'ha de tornar a " "instal·lar, però no s'ha trobat l'arxiu per a fer-ho. Voleu eliminar este " "paquet i continuar?" msgstr[1] "" "Els paquets «%s» es troben en un estat inconsistent i s'han de tornar a " "instal·lar, però no s'ha trobat els arxius per a fer-ho. Voleu eliminar " "estos paquets i continuar?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Pot ser que el servidor estiga sobrecarregat" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paquets trencats" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "El vostre sistema conté paquets trencats que no es poden arreglar amb esta " "aplicació. Utilitzeu el Synaptic o l'apt-get abans de continuar." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "S'ha produït un problema irresoluble mentre es calculava l'actualització:\n" "%s\n" "\n" "Això pot ser degut a:\n" " * l'actualització a una versió en desenvolupament de l'Ubuntu\n" " * l'execució de l'actual versió en desenvolupament de l'Ubuntu\n" " * la instal·lació de paquets no oficials de programari i no proporcionats " "per l'Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Això és probablement un problema transitori, torneu a provar-ho més tard." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "No s'ha pogut calcular l'actualització" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "S'ha produït un error en autenticar alguns paquets" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "No s'han pogut autenticar alguns paquets. Potser hi ha un problema temporal " "amb la xarxa. Podeu provar-ho més tard. A continuació es mostra la llista " "amb els paquets no autenticats." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "El paquet «%s» està marcat per a eliminar-lo, però apareix a la llista negra " "de fitxers a eliminar." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "El paquet essencial «%s» està marcat per a ésser eliminat." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "S'està intentant instal·lar la versió «%s» de la llista negra" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "No s'ha pogut instal·lar «%s»" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "No s'ha pogut conjecturar el metapaquet" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "No teniu instal·lats el paquet ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop o edubuntu-desktop i no s'ha pogut detectar la versió de l'Ubuntu " "que esteu utilitzant.\n" "Instal·leu un d'aquests paquets abans de continuar; per fer-ho podeu " "utilitzar el Synaptic o l'apt-get" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "S'està llegint la memòria cau" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "No s'ha pogut obtindre un bloqueig exclusiu" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Normalment això es deu al fet que teniu un altre gestor de paquets en " "execució (com ara l'apt-get o l'aptitude) i cal que abans el tanqueu." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "No és possible actualitzar a través d'una connexió remota" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Esteu duent a terme l'actualització a través d'una connexió SSH remota amb " "un frontal que no admet esta funció. Intenteu realitzar una actualització en " "mode text amb l'orde «do-release-upgrade». \n" "\n" "S'interromprà l'actualització. Torneu-ho a intentar sense SSH." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Voleu continuar treballant via SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Pareix ser que esta sessió s'està executant amb SSH. Actualment no és " "recomanable realitzar una actualització a través d'SSH, atès que en cas de " "fallada la recuperació és més difícil.\n" "\n" "Si continueu, s'iniciarà un dimoni addicional al port «%s».\n" "Voleu continuar?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "S'està iniciant un sshd addicional" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Per facilitar la recuperació en cas de fallada, s'iniciarà un sshd " "addicional al port «%s». Si alguna cosa anés malament amb l'ssh en ús, podeu " "fer servir l'addicional.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Si feu servir un tallafocs, necessitareu obrir temporalment este port. Atès " "que això és potencialment perillós, no es fa automàticament. Per exemple, " "podeu obrir el port amb:\n" "«%s»" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "No es pot actualitzar" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Esta eina no permet l'actualització de «%s» a «%s»." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Ha fallat la configuració d'un entorn de proves" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "No ha estat possible crear un entorn de proves." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Mode de prova" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "La vostra instal·lació del Python està malmesa. Reviseu l'enllaç simbòlic " "«/usr/bin/python»." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "El paquet «debsig-verify» està instal·lat" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "L'actualització no pot continuar amb este paquet instal·lat.\n" "Elimineu-lo amb el Synaptic o amb l'orde «apt-get remove debsig-verify» i " "torneu a executar l'actualització." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Voleu incloure les darreres actualitzacions d'Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "El sistema d'actualitzacions pot utilitzar Internet per baixar i instal·lar " "automàticament les darreres actualitzacions. Si disposeu d'una connexió de " "xarxa, esta opció és molt recomanable.\n" "\n" "L'actualització trigarà més, però en acabar tindreu un sistema completament " "actualitzat. Podeu optar per no fer-ho, però en breu haureu d'actualitzar el " "sistema.\n" "Si responeu «no» la xarxa no s'utilitzarà per a res." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "desactivat en actualitzar a %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "No s'ha trobat cap rèplica vàlida" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "No s'ha trobat cap entrada de rèplica per a l'actualització a la vostra " "informació sobre els dipòsits. Això pot ésser degut a què estigueu executant " "una rèplica interna o que les dades de les rèpliques no estiguen " "actualitzades.\n" "\n" "Voleu sobreescriure el fitxer «sources.list» de totes maneres? Si trieu que " "«Sí», totes les entrades «%s» s'actualitzaran a «%s». Si trieu que «No», es " "cancel·larà l'actualització." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Voleu generar les fonts per defecte?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "No s'ha trobat cap entrada vàlida per a «%s» en analitzar el fitxer " "«sources.list».\n" "\n" "Voleu que s'afigen entrades per a «%s»? Si trieu que «No», es cancel·larà " "l'actualització." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "La informació dels dipòsits no és vàlida" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "S'han desactivat les fonts de tercers" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "S'han desactivat algunes entrades de tercers. Les podeu reactivar després de " "l'actualització des de l'eina «software-properties» en el vostre gestor de " "paquets." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paquet en estat inconsistent" msgstr[1] "Paquets en estat inconsistent" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "El paquet «%s» es troba en un estat inconsistent i s'ha de tornar a " "instal·lar, però no s'ha trobat l'arxiu per a fer-ho. Torneu-lo a instal·lar " "manualment o suprimiu-lo del sistema." msgstr[1] "" "Els paquets «%s» es troben en un estat inconsistent i s'han de tornar a " "instal·lar, però no s'ha trobat els arxius per a fer-ho. Torneu-los a " "instal·lar manualment o suprimiu-los del sistema." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "S'ha produït un error en l'actualització" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "S'ha produït un error mentre s'actualitzava el vostre sistema. Normalment " "això es degut a problemes de xarxa. Comproveu la vostra connexió de xarxa i " "torneu a intentar-ho." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "No disposeu de suficient espai al disc" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "S'ha interromput l'actualització. Cal un total de %s d'espai lliure al disc " "«%s», per la qual cosa hauríeu d'alliberar un mínim de %s d'espai addicional " "al disc «%s». Buideu la paperera i suprimiu els paquets temporals " "d'anteriors instal·lacions utilitzant l'orde «sudo apt-get clean»." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "S'estan calculant els canvis" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Voleu iniciar l'actualització?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "S'ha cancel·lat l'actualització" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Ara es cancel·larà l'actualització i es restaurarà a l'estat original del " "sistema. Podeu continuar l'actualització més tard." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "No s'han pogut baixar les actualitzacions" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "S'ha interromput l'actualització. Comproveu la connexió a Internet o els " "suports d'instal·lació i torneu-ho a provar. S'han mantingut tots els " "fitxers baixats fins ara." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "S'ha produït un error durant l'enviament" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "S'està restaurant l'estat original del sistema" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "No s'han pogut instal·lar les actualitzacions" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "S'ha interromput l'actualització. Pot ser que el vostre sistema haja quedat " "en un estat inestable. Ara s'executarà un procés de recuperació (dpkg --" "configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "S'ha interromput l'actualització. Verifiqueu la vostra connexió a Internet o " "el suport d'instal·lació i torneu-ho a intentar. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Voleu suprimir els paquets obsolets?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Manté" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "Sup_rimeix" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "S'ha produït un error durant el procés de neteja. Vegeu el següent missatge " "per a més informació. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Les dependències requerides no estan instal·lades" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "La dependència requerida «%s» no està instal·lada. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "S'està comprovant el gestor de paquets" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "S'ha produït un error en la preparació de l'actualització" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" "S'ha produït un error en obtindre els prerequisits de l'actualització" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "S'està actualitzant la informació dels dipòsits" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "No s'ha pogut afegir el CD-ROM" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "No s'ha pogut afegir el CD-ROM correctament." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "La informació dels paquets no és valida" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Després d'actualitzar la informació dels paquets, no s'ha pogut localitzar " "el paquet essencial «%s». Això pot ser degut a que no teniu cap rèplica " "oficial al llistat de fonts de programari o perquè hi ha una carrega " "excessiva en la rèplica que esteu utilitzant. Vegeu /etc/apt/sources.list " "per veure la llista actual de fonts de programari.\n" "En cas de rèplica amb sobrecàrrega, podeu intentar actualitzar més tard." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "S'està recollint" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "S'està actualitzant" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "S'ha completat l'actualització" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "S'ha completat l'actualització, però s'han produït errors durant este procés." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "S'està cercant programari obsolet" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "S'ha completat l'actualització del sistema." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "L'actualització parcial s'ha completat." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "No s'han trobat les notes de la versió" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "El servidor potser està sobrecarregat. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "No s'han pogut baixar les notes de la versió" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Comproveu la vostra connexió a Internet" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "No es pot executar l'eina d'actualització" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Signatura de l'eina d'actualització" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Eina d'actualització" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Ha fallat la baixada" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Ha fallat l'obtenció de l'actualització. Pot ser que hi haja algun problema " "a la xarxa. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Ha fallat l'autenticació" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Ha fallat l'autenticació de l'actualització. Pot ser que hi haja algun " "problema a la xarxa o al servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Ha fallat l'extracció" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Ha fallat l'extracció de l'actualització. Pot ser que hi haja algun problema " "a la xarxa o al servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Ha fallat la verificació" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Ha fallat la verificació de l'actualització. Pot ser que hi haja algun " "problema a la xarxa o al servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "No es pot executar l'actualització" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Normalment això està provocat per un sistema on /tmp s'ha muntat com a no " "executable. Torneu-lo a muntar sense l'opció de no executable i torneu a " "executar l'actualització." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "El missatge d'error és «%s»." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Actualització" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Notes de la versió" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "S'estan baixant els fitxers de paquet addicionals..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Fitxer %s de %s a %s B/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Fitxer %s de %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Inseriu «%s» a la unitat «%s»" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Canvi de suport" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "S'està utilitzant l'evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "El vostre sistema utilitza el gestor de volum «evms» a /proc/mounts. Este " "programari no es mantindrà més, desconnecteu-lo i torneu a executar " "l'actualització." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "L'actualització pot reduir els efectes d'escriptori i el rendiment en jocs i " "altres programes que facen un ús exhaustiu de processament gràfic." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Este ordinador utilitza el controlador gràfic «nvidia» d'NVIDIA. No hi ha " "cap versió disponible d'este controlador que funcione amb el vostre " "maquinari a l'Ubuntu 10.04 LTS.\n" "\n" "Voleu continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Este ordinador utilitza el controlador gràfic «fglrx» d'AMD. No hi ha cap " "versió disponible d'este controlador que funcione amb el vostre maquinari a " "l'Ubuntu 10.04 LTS.\n" "\n" "Voleu continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Sense CPU i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "El vostre sistema utilitza una CPU i586 o una CPU que no té l'extensió " "«cmov». Tots els paquets s'han construït amb optimitzacions que requereixen " "un i686 com a arquitectura mínima. No és possible actualitzar el sistema a " "una versió nova de l'Ubuntu amb este maquinari." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "No és una CPU ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "El vostre sistema utilitza una CPU ARM que és més antiga que l'arquitectura " "ARMv6. Tots els paquets del Karmic s'han creat amb optimitzacions que " "requereixen l'ARMv6 com a arquitectura mínima. No és possible actualitzar el " "vostre sistema a una versió nova de l'Ubuntu amb este maquinari." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "No hi ha cap sistema d'inicialització disponible" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Pareix ser que el vostre sistema és un entorn virtual sense un dimoni " "d'inicialització «init», com ara un servidor virtual de Linux (Linux-" "VServer). L'Ubuntu 10.04 no pot funcionar en este tipus d'entorn - abans cal " "fer una actualització de la configuració de la màquina virtual.\n" "\n" "Segur que voleu continuar?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Actualització en entorn de proves utilitzant aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Utilitza el camí especificat per cercar un CDROM amb paquets actualitzables" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Utilitzeu un frontal. Actualment es disposa de: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*OBSOLET* esta opció s'ignorarà" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Realitza només una actualització parcial (sense reescriure el sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Inhabilita la compatibilitat amb el GNU screen" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Estableix el «datadir» (directori de dades)" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "S'ha completat el recull" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "S'està obtenint el fitxer %li de %li a %s B/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Queden %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "S'està obtenint el fitxer %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "S'estan aplicant els canvis" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemes de dependències - es deixarà sense configurar" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "No s'ha pogut instal·lar «%s»" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "L'actualització continuarà, però pot ser que el paquet «%s» no siga " "funcional. Hauríeu de considerar l'enviament d'un informe d'error sobre este " "fet." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Voleu reemplaçar el fitxer de\n" "configuració personalitzat «%s»?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Perdreu tots els canvis realitzats en el fitxer de configuració si trieu " "reemplaçar-lo per una versió més nova." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "No s'ha trobat l'orde «diff»" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "S'ha produït un error greu" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Informeu d'això com un error (si no és que ja ho heu fet) i adjunteu els " "fitxers /var/log/dist-upgrade/main.log i /var/log/dist-upgrade/apt.log al " "vostre informe. S'ha interromput l'actualització.\n" "S'ha alçat el vostre fitxer sources.list original a " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "S'ha premut Ctrl+C" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Això interromprà l'operació, amb la qual cosa pot ser que es malmeti el " "sistema. Esteu segur que ho voleu fer?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Per a evitar una possible pèrdua de dades, tanqueu tots els documents i " "aplicacions." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Ja no mantinguts per Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Es desactualitzaran (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Se suprimiran (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Ja no són necessaris (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "S'instal·laran (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "S'actualitzaran (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Mostra les diferències >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Oculta les diferències" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "S'ha produït un error" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Tanca" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Mostra el terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Oculta el terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informació" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detalls" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Ja no es mantenen %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Suprimeix %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Suprimeix %s (s'havia instal·lat automàticament)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instal·la %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Actualitza %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Cal que reinicieu el sistema" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Reinicieu el sistema per a completar l'actualització" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Reinicia" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Voleu cancel·lar l'actualització en curs?\n" "\n" "El sistema pot quedar inusable si la cancel·leu. És molt recomanable " "continuar amb l'actualització." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Voleu cancel·lar l'actualització?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dia" msgstr[1] "%li dies" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hora" msgstr[1] "%li hores" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minut" msgstr[1] "%li minuts" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li segon" msgstr[1] "%li segons" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "La baixada trigarà aproximadament %s amb una connexió ADSL d'1Mb, i " "aproximadament %s amb un mòdem de 56k" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "La baixada trigarà aproximadament %s amb la vostra connexió. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "S'està preparant l'actualització" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "S'estan obtenint canals de programari nous" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "S'estan obtenint els paquets nous" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "S'estan instal·lant les actualitzacions" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "S'està netejant" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d paquet instal·lat ja no està mantingut per Canonical. Així i tot, " "encara podeu obtindre assistència de la comunitat." msgstr[1] "" "%(amount)d dels paquets instal·lats ja no estan mantinguts per Canonical. " "Així i tot, encara podeu obtindre assistència de la comunitat." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Se suprimirà %d paquet." msgstr[1] "Se suprimiran %d paquets." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "S'instal·larà %d paquet nou" msgstr[1] "S'instal·laran %d paquets nous" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "S'actualitzarà %d paquet" msgstr[1] "S'actualitzaran %d paquets" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Heu de baixar un total de %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "No hi ha actualitzacions disponibles per al vostre sistema. L'actualització " "es cancel·larà" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Cal que reinicieu el sistema" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "L'actualització ha finalitzat i cal reiniciar el sistema. Voleu fer-ho ara?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Informeu d'això com un error i adjunteu els fitxers /var/log/dist-" "upgrade/main.log i /var/log/dist-upgrade/apt.log al vostre informe. S'ha " "interromput l'actualització.\n" "S'ha alçat el vostre fitxer sources.list original a " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "S'està interrompent" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Degradat:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Premeu la tecla de retorn per continuar" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Continua [sN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detalls [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "s" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Ja no es mantenen: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Suprimeix: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instal·la: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Actualitza: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continua [Sn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Cal reiniciar el sistema per a finalitzar l'actualització.\n" "Si seleccioneu «s», es reiniciarà el sistema." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "S'està baixant el fitxer %(current)li de %(total)li a %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "S'està baixant el fitxer %(current)li de %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Mostra el progrés dels fitxers individuals" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Cancel·la l'actualització" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Reprén l'actualització" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Voleu cancel·lar l'actualització?\n" "\n" "Si ho feu, pot ser que el sistema siga inutilitzable. És extremament " "recomanable continuar amb l'actualització." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Comença l'actualització" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Reemplaça" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Diferències entre els fitxers" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Informa de l'error" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continua" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Voleu iniciar l'actualització?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Reinicieu el sistema per a completar l'actualització\n" "\n" "Alceu la vostra faena abans de continuar." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Actualització de la distribució" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "S'estan configurant els canals de programari nous" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "S'està reiniciant l'ordinador" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Actualitza" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Hi ha disponible una versió nova de l'Ubuntu. Voleu actualitzar el vostre " "sistema?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "No actualitzis" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Demana-m'ho més tard" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Actualitza" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Heu triat no actualitzar a la versió nova de l'Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Cal que vos autentiqueu per actualitzar l'Ubuntu." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Cal que vos autentiqueu per fer una actualització parcial." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Mostra la versió i ix" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "El directori que conté els fitxers de dades" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Executa el frontal especificat" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "S'està executant una actualització parcial" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "S'està baixant l'eina d'actualització a una versió nova" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Comprova si és possible actualitzar a la darrera versió de desenvolupament" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Proveu d'actualitzar a l'última versió fent servir l'actualitzador de " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Executeu un mode d'actualització especial.\n" "Actualment disposeu del mode «desktop» per a actualitzacions de sistemes " "d'escriptori i del mode «server» per a sistemes servidors." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Prova d'actualitzar en un entorn de proves amb aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Només verifica si hi ha disponible una versió nova i informa del resultat " "mitjançant el codi d'eixida" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "La vostra versió de l'Ubuntu ja no està mantinguda." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Per obtindre més informació sobre actualitzacions, aneu a:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "No s'ha trobat cap versió nova" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "En estos moments no es pot efectuar l'actualització de versió" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "En estos moments no es pot efectuar l'actualització de versió. Torneu-ho a " "provar més tard. El servidor ha respost: «%s»" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "La versió nova «%s» ja està disponible" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Executeu «do-release-upgrade» per actualitzar a la nova versió." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Hi ha disponible una actualitzacio de l'Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Heu triat no actualitzar a l'Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/shn.po0000644000000000000000000013017012431225715015143 0ustar # Shan translation for update-manager # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Shan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n == 1) ? 0 : 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: shn\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/dv.po0000644000000000000000000013156412431225715014774 0ustar # Divehi translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Huxain \n" "Language-Team: Divehi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: dv\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s ގެ ސަރވަރ" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "މައި ސަރވަރ" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "އެހެނިހެން ސަރވަރތައް" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "އެއްވެސް ސޯރސް ލިސްޓް އެންޓްރީއެއް ނުފެނުނު" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "އެއްވެސް ޕެކޭޖެއް ނުފެނުނު، މިއީ އުބުންޓުގެ ނިސްކެއް ނޫން ނުވަތަ މި ޑިސްކް " "އެލުލަވާލެވިފައިވަނީ ރަނގަޅަކަށް ނޫން" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "ސީޑީ އެއް ނުކުރެވި ފޭލްވެއްޖެ" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' އިންސްޓޯލެއް ނުކުރެވުނު" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "އަޕްގްރޭޑް ނުކުރެވުނު" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_ބަހައްޓާ" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "އުނިކު_ރޭ" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "އަޕްގްރޭޑް" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "ރިލީސް ނޯޓު" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "ބަދަލުތައް ހުށައަޅަނީ" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "މައްސަލަ" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "މަޢުލޫމާތު" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "ތަފްޞީލްތައް" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "އ" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "ނ" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "ތ" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_ބަދަލުކުރޭ (ރިޕްލޭސް)" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "ޓާރމިނަލް" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/am.po0000644000000000000000000015376512431225715014767 0ustar # Amharic translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Amharic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: am\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "ሰርቨር ለ %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "ዋናው ሰርቨር" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "ልማዳዊ ሰርቨሮች" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "የምንጩን ዝርዝር አገባብ ማስላት አልተቻለም" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "የጥቅል ፋይሎችን ማግኘት አልተቻለም ፡ ምናልባት ይህ የኡቡንቱ ዲስክ ላይሆን ይችላል ወይም የተሳሳተ አሰራር ይሆን?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "ሲዲ መጨመር አልተቻለም" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "ሲዲው ሲጨመር ስህተት ተፈጥሯል ፡ ማሻሻሉ ይቋረጣል ፡ እባክዎን ይህን ችግር ያመልክቱ ፡ ይህ ትክክለኛ የኡቡንቱ ሲዲ " "ከሆነ \n" "የስህተቱ መልእክት \n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "በመጥፎ ሁኔታ ላይ ያለን ጥቅል ማስወገጃ" msgstr[1] "በመጥፎ ሁኔታ ላይ ያሉትን ጥቅሎች ማስወገጃ" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "ሰርቨሩ ከአቅሙ በላይ ተጭኗል" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "የተሰበሩ ጥቅሎች" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "ስርአቱ የያዘው ጥቅል የተሰበረ ነው ፤ በዚህ ሶፍትዌር መጠገን አይቻልም ፤ እባክዎ በመጀመሪያ ሲናፕቲክ ወይንም አፕት-" "ጌትን በመጠቀም ስብራቱን ያስተካክሉ" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "ይህ ትንሽ ጊዜ የሚቆይ ችግር ነው ፤ እባክዎ እንደገና ይሞክሩ ትንሽ ቆይተው" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "ማሻሻያውን ማስላት አልተቻለም" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "ስህተት በማረጋገጥ ላይ አንዳንድ ጥቅሎችን" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "ጥቅሉ '%s' ምልክት ተድርጎበታል ለማስወገድ ነገር ግን ከሚወገዱት ዝርዝሮች ውስጥ አለ" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "በጣም አስፈላጊ ጥቅል '%s' ለማስወገድ ምልክት ተደርጎበታል" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "ለመግጠም በመሞከር ላይ በመጥፎ ዝርዝር እትም ውስጥ ካሉ '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "መግጠም አልተቻለም '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "ስለ-ጥቅል መገመት አልተቻለም" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "ስርአቱ ውስጥ ኡቡንቱ-ዴስክቶፕ ፤ ኩቡንቱ-ዴስክቶፕ ፤ ዙቡንቱ-ዴስክቶፕ ወይም ኤዱቡንቱ-ዴስክቶፕ ጥቅል አልተገኘም ። " "የትኛውን የኡቡንቱ እትም እንደሚያስኬዱም አልታወቀም ። \n" "እባክዎን በመጀመሪያ አንዱን ጥቅል እላይ ከተጠቀሱት መካከል ይግጠሙ ሲናፕቴክን ወይም አፕት-ጌትን በመጠቀም ከመቀጠሎ በፊት" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "ካሽን በማንበብ ላይ" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "ማሻሻል በርቀት ግንኙነት የተደገፈ አይደለም" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "በመጀመር ላይ ተጨማሪ sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "ማሻሻል አልተቻለም" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "ማሻሻያ ከ '%s' ወደ '%s' በዚህ እቃ የተደገፈ አይደለም" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "መሞከሪያ የአሸዋ ሳጥን ማሰናዳት ወድቋል" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "መሞከሪያ የአሸዋ ሳጥን አካባቢ ማሰናዳት አልተቻለም" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "መሞከሪያ የአሸዋ ሳጥን ዘዴ" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "ከኢንተርኔት ዘመናዊ ማሻሻያዎችን ልጨምር?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "ያልተቻለ ለማሻሻል ወደ %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "ዋጋ ያለው mirror አልተገኘም" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "ነባር ምንጮችን ላመንጭ?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "የማስቀመጫው መረጃ ዋጋ የለውም" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "የ3ኛ ፓርቲ ምንጮችን አለማስቻል" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "ስህተት በማሻሻል ላይ" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "ስህተት ተፈጥሯል በማሻሻል ላይ ፡ ይህ ምናልባት የኔትዎርክ ችግር ይሆናል ፡ እባክዎ የኔትዎርክ ግንኙነትዎን ይመርምሩና " "እንደገና ይሞክሩ" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "በቂ ባዶ ቦታ ዲስኩ ላይ የለም" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "ለውጦቹን በማስላት ላይ" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "ማሻሻሉን አሁን መጀመር ይፈልጋሉ?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "ማሻሻሉ ተሰርዟል" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "የማሻሻያውን ጭነት ማውረድ አልተቻለም" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "በመፈጸም ላይ ስህተት" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "መጀመሪያ ወደነበረበት ስርአት መመለሰ" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "ማሻሻያውን መግጠም አልተቻለም" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "ላስወግዳቸው አሮጌ ጥቅሎችን?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_ማስቀመጥ" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_ማስወገጃ" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "ማጽዳት በሚካሄድበት ጊዜ ችግር ተፈጥሯል ፤ እባክዎ ከስር ያለውን መረጃ ይመልከቱ በበለጠ ለመረዳት " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "የሚያስፈልጉት ጥገኞች አልተገጠሙም" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "የሚያስፈልጉት ጥገኞች '%s' አልተገጠሙም " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "የጥቅል አስተዳዳሪን በመመርመር ላይ" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "ማሻሻያውን ማሰናዳት አልተቻለም" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "የማስቀመጫውን መረጃ በማሻሻል ላይ" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "ሲዲ ራም መጨመር አልተቻለም" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "አዝናለሁ ሲዲ ራም መጨመሩ አልተሳካም" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "ዋጋ የሌለው የጥቅል መረጃ" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "ሄዶ ማምጣት" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "በማሻሻል ላይ" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "ማሻሻሉ ተጠናቋል" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "ጊዜው ያለፈበትን ሶፍትዌር በመፈለግ ላይ" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "ስርአቱን ማሻሻል ተጠናቋል" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "በከፊል ማሻሻሉ ተጠናቋል" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "የመልቀቂያ ማስታወሻዎችን ማግኘት አልተቻለም" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "ሰርቨሩ ምናልባት ካቅሙ በላይ ተጭኗል " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "የመልቀቂያ ማስታወሻዎችን ማውረድ አልተቻለም" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "እባክዎ የኢንተርኔት ግንኙነትዎን ይመርምሩ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "የማሻሻያውን መሳሪያዎች ማስኬድ አልተቻለም" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "የማሻሻያዎች መሳሪያዎች ፊርማ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "ማሻሻያ መሳሪያዎች" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "ሄዶ ማምጣት ወድቋል" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "ማሻሻያውን ሄዶ ማምጣት ወድቋል ፤ ምናልባት የኔትዎርክ ችግር ሊሆን ይችላል " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "ማጽደቂያው ወድቋል" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "ለይቶ ማውጣት ወድቋል" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "ማሻሻያውን ለይቶ ማውጣት ወድቋል ፤ ምናልባት የኔትዎርክ ወይም የሰርቨር ችግር ሊሆን ይችላል " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "ማረጋገጫው ወድቋል" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "ማሻሻያውን ማስኬድ አልተቻለም" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "የስህተቱ መልእክት ነው '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "ማሻሻል" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "የተለቀቀ ማስታወሻ" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "ጭነት ማውረድ ተጨማሪ የጥቅል ፋይሎች" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "ፋይል %s ከ %s በ %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "ፋይል %s ከ %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "እባክዎ ያስገቡ '%s' በመንጂያው ውስጥ '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "የሜዲያ ለውጥ" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "i686 ሲፒዩ አይደለም" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "ሄዶ ማምጣት ተጠናቋል" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "ፋይል ሄዳ በማምጣት ላይ %li ከ %li ወደ %sቢ/ሰ" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "ስለ %s ቀሪው" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "ፋይል ሄዶ ማምጣት %li ከ %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "ለውጦችን በመፈጸም ላይ" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "መግጠም አልተቻለም '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "አደገኛ ስህተት ተፈጥሯል" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "ኮንትሮል-ሲ መጫን" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "ይህ ተግባሩን ያቋርጣል እና ስርአቱን በተሰበረ ሁኔታ ላይ ይተወዋል ፤ በእርግጥ ይህን ማድረግ ይፈልጋሉ?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "የተከፈቱ መተግበሪያዎች እና ሰነዶችን ይዝጉ ዳታዎች እንዳይጠፉ ለመከላከል" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "ማስወገጃ (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "መግጠሚያ (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "ማሻሻያ (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "ልዩነቱን ማሳያ >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< ልዩነቱን መደበቂያ" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "ስህተት" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&መዝጊያ" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "ተርሚናልን ማሳያ >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< ተርሚናልን መደበቂያ" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "መረጃ" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "ዝርዝሮች" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "ማስወገጃ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "ማስወገድ (በራሱ ተገጥሟል) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "መግጠሚያ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "ማሻሻያ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "እንደገና ማስጀመር ያስፈልጋል" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "እንደገና ማስጀመር ያስፈልጋል ማሻሻያውን ለማጠናቀቅ" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_አሁን እንደገና ላስጀምር" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "እየተካሄደ ያለውን ማሻሻል ልሰረዝ ?\n" "\n" "ማሻሻሉን ከሰረዙት ስርአቱ ባልተረጋጋ ሁኔታ ላይ ይሆናል ፤ ማሻሻሉን አንዲቀጥሉ አጥብቀን እናሳስባለን" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "ማሻሻሉን ልሰረዝ?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li ቀን" msgstr[1] "%li ቀኖች" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li ሰአት" msgstr[1] "%li ሰአቶች" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li ደቂቃ" msgstr[1] "%li ደቂቆች" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li ሴኮንድ" msgstr[1] "%li ሴኮንዶች" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "ይህ ማውረድ የሚወስደው ጊዜ በግምት %s በ 1ሜጋ ቢት በዲኤስኤል ግንኙነት እና በግምት %s በ 56ኬ ሞደም" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "ማውረዱ የሚወስደው ጊዜ በግምት %s በእርስዎ ግንኙነት " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "ለማሻሻል በዝግጅት ላይ" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "አዲስ የሶፍትዌር መገናኛዎች ስለ ማግኘት" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "አዲስ ጥቅሎችን ስለ ማግኘት" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "ማሻሻያውን በመግጠም ላይ" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "በማጽዳት ላይ" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d ጥቅሉ ይወገዳል" msgstr[1] "%d ጥቅሎቹ ይወገዳሉ" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d አዲሱ ጥቅል ይገጠማል" msgstr[1] "%d አዲሶቹ ጥቅሎች ይገጠማሉ" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d ጥቅሉ ይሻሻላል" msgstr[1] "%d ጥቅሎቹ ይሻሻላሉ" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "በድምሩ ማውረድ ያለብዎት ከ %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "ለእርስዎ ስርአት ማሻሻያ የለም ፡ ማሻሻያው አሁን ይሰረዛል" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "እንደገና ማስጀመር ያስፈልጋል" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "ይህ ማሻሻያ ተፈጽሟል እና እንደገና ማስነሳት ያስፈልጋል ፡ ይህን አሁን ማድረግ ይፈልጋሉ?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "በማቋረጥ ላይ" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "ዝቅ ማድረጊያ :\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "እባክዎን ለመቀጠል ማስገቢያውን ይጫኑ" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "መቀጠል [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "ዝርዝሮች [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "አዎ" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "አይ" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "ዝርዝር" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "የተደገፈ አይደለም : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "ማስወገጃ : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "መግጠሚያ : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "ማሻሻያ : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "መቀጠል [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "ማሻሻሉን ለመጨረስ እንደገና ማስጀመር ያስፈልጋል \n" "'ዋይን' ከመረጡ ስርአቱ እንደገና ይጀምራል" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "ማሳየት የየአንዳንዱን ፋይሎች እድገት" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "ማሻሻያውን _መሰረዣ" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "ማሻሻያውን _መቀጠያ" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "ማሻሻያውን _መጀመሪያ" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_መተኪያ" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "በፋይሎች መሀል ያለው ልዩነት" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_ችግሩን ማመልከት" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_ይቀጥሉ" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "ማሻሻያውን ልጀምር?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "ማሻሻሉን ለመጨረስ ስርአቱን እንደገና ማስጀመር ያስፈልጋል\n" "\n" "እባክዎን ከመቀጠልዎት በፊት ስራዎቾን ያስቀምጡ" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "የማሻሻያ ስርጭት" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "አዲስ የሶፍትዌር መገናኛ በማሰናዳት ላይ" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "ኮምፒዩተሩን እንደገና በማስጀመር ላይ" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "ተርሚናል" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_ማሻሻል" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "አዲስ የኡቡንቱ እትም ዝግጁ ነው ፤ ማሻሻል ይፈልጋሉ?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "ማሻሻል አልፈልግም" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "በኋላ አስታውሰኝ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "አዎን አሁን አሻሽል" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "እትሙን አሳይቶ መውጣት" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "በከፊል ማሻሻያውን ማስኬድ" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "በማውረድ ላይ የተለቀቀውን የማሻሻያ መሳሪያ" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "የእርስዎ ኡቡንቱ የተደገፈ አይደለም" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "ላማሻሻያ መረጃ እባክዎን ይህን ይጎብኙ :\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "አዲስ የተለቀቀ እትም የለም" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "አዲሱ እትም '%s' ዝግጁ ነው" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "የኡቡንቱ %(version)s ማሻሻያ ዝግጁ ነው" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/hr.po0000644000000000000000000017514212431225715014774 0ustar # Croatian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: hr\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Poslužitelj za %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Glavni poslužitelj" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Osobni poslužitelji" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Izračun sources.list stavke nije moguć." #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Nije moguće locirati bilo kakve paketne datoteke. Ovo možda nije Ubuntu " "medij ili se radi o krivoj arhitekturi." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Dodavanje CDa nije uspjelo" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Došlo je do greške prilikom dodavanja CD-a zbog kojeg će nadogradnja biti " "prekinuta. Molim prijavite ovo kao grešku, ako je ovo ispravan Ubuntu CD.\n" "\n" "Poruka je bila:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Ukloni paket koji je u lošem stanju" msgstr[1] "Ukloni paketa koji su u lošem stanju" msgstr[2] "Ukloni pakete koji su u lošem stanju" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Paket '%s' je u nedosljednom stanju i treba biti ponovno instaliran, no nije " "pronađena nikakva arhiva za njega. Želite li ovaj paket ukloniti odmah kako " "biste nastaviti?" msgstr[1] "" "Paketi '%s' su u nedosljednom stanju i trebaju biti ponovno instalirani, no " "nije pronađena nikakva arhiva za njih. Želite li ovaj paket ukloniti odmah " "kako biste nastaviti?" msgstr[2] "" "Paketi '%s' su u nedosljednom stanju i trebaju biti ponovno instalirani, no " "nije pronađena nikakva arhiva za njih. Želite li ovaj paket ukloniti odmah " "kako biste nastaviti?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Moguće je da je poslužitelj preopterećen" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Neispravni paketi" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Vaš sistem sadrži neispravne pakete koji nisu mogli biti popravljeni s ovim " "programom. Popravite ih koristeći synaptic ili apt-get prije nastavljanja." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Došlo je do neobradive greške prilikom izračunavanja nadogradnje:\n" "%s\n" "\n" " Mogući uzroci problema:\n" " * nadogradnja na razvojnu inačicu Ubuntua\n" " * korištenje razvojne inačice Ubuntua\n" " * neslužbeni softverski paketi koji ne dolaze uz Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Ovo je vjerovatno privremeni problem, pokušajte ponovo kasnije." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Izračunavanje nadogradnje nije bilo moguće" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Greška pri autentifikaciji nekih paketa" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Autentifikacija nekih paketa nije moguća. Možda se radi o privremenom " "problemu s mrežom, stoga pokušajte ponovno kasnije. Popis neautentificiranih " "paketa dostupan je u nastavku." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Paket '%s' je označen za uklanjanje, ali se nalazi na crnoj listi uklanjanja." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Neophodan paket '%s' je označen za uklanjanje." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Pokušaj instalacije inačice '%s' s crne liste" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Ne mogu instalirati '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Pretpostavljanje meta-paketa nije bilo moguće" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Vaš sustav ne sadrži ubuntu-desktop, kubuntu-desktop xubuntu-desktop ili " "edubuntu-desktop paket i nije bilo moguće odrediti koju verziju Ubuntua " "koristite.\n" " Prije nastavka, molim instalirajte jedan od gore navedenih paketa koristeći " "synaptic ili apt-get." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Čitam spremnik" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Isključivo zaključavanje nije uspjelo" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Ovo obično znači da je neki drugi program za upravljanje paketima već " "pokrenut (npr. apt-get ili aptitude). Molimo, prvo zatvorite taj program." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Nadogradnja putem udaljene veze nije podržano" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Pokrenuli ste nadogradnju putem udaljene ssh veze sa sučeljem koje to ne " "podržava. Molim pokušajte obaviti nadogradnju iz tekstualnog sučelja " "naredbom 'do-release-upgrade'.\n" "\n" "Nadogradnja će se prekinuti. Molim pokušajte bez SSH-a." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Nastaviti rad pod SSHom?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Čini se da je ova prijava pokrenuta pod SSH-om. Nadogradnju nije " "preporučljivo obavljati putem SSH-a, jer je oporavak u slučaju neuspjeha " "vrlo težak.\n" "\n" "Ako nastavite, dodatan SSH pozadinski servis će biti pokrenut pri ulazu " "'%s'.\n" "Želite li nastaviti?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Pokreni dodatni sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Da bi oporavak u slučaju greške bio lakši, dodatni sshd će biti pokrenut pri " "portu '%s'. Ukoliko nešto pođe po zlu s pokrenutim SSH-om, tada ćete se moći " "povezati na dodatni.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Ako pokrenete vatrozid, možda ćete privremeno trebati otvoriti ovaj port. " "Ovo je pontencijalno opasno pa se ne izvodi automatski. Možete otvoriti port " "sa npr.:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Nadogradnja nije moguća" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Nadogradnja iz '%s' u '%s' nije podržana ovim alatom." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Podešavanje sandboxa nije uspjelo" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Nije bilo moguće stvoriti sandbox okruženje." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox način rada" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Ova nadogradnja se izvršava u sandbox (test) načinu rada. Sve promjene će " "biti zapisane u '%s' i bit će izgubljene prilikom idućeg ponovnog " "pokretanja.\n" "\n" "*Nikakve* promjene zapisane u direktorij sustava od ovog trenutka, pa do " "idućeg ponovnog pokretanja nisu trajne." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Vaša instalacija Pythona je neispravna. Popravite simboličku poveznicu " "'/usr/bin/python'." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Paket 'debsig-verify' je instaliran" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Nadogradnja se ne može nastaviti ako je taj paket instaliran.\n" "Molim, najprije ga uklonite uz pomoć synaptica ili naredbe 'apt-get remove " "debsig-verify' i potom ponovno pokrenite nadogradnju." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Nije moguće zapisivati u '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Nije moguće zapisati u sistemski direktorij '%s' na vašem sustavu. " "Nadogradnja se ne može nastaviti.\n" "Provjerite da je u sistemski direktorij moguće zapisivati." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Uključi posljednje nadogradnje sa interneta?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Sustav za nadogradnju može koristiti Internet za automatsko preuzimanje " "posljednjih ažuriranja i njihovu instalaciju prilikom nadogradnje. Ovo je " "vrlo preporučljivo ukoliko ste povezani na mrežu.\n" "\n" "Nadogradnja će trajati duže, ali vaše će računalo po završetku biti u " "potpunosti ažurirano. Ovo možete preskočiti, ali trebali biste instalirati " "najnovija ažuriranja odmah po završetku nadogradnje.\n" "Ako ovdje odgovorite 'ne', to znači da se mreža uopće ne koristi." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "onemogućeno kod nadogradnje na %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nisam našao ispravan zrcalni poslužitelj" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Prilikom skeniranja vaših informacija o repozitorijima, nije pronađen " "nijedan zapis o zrcalnom poslužitelju za nadogradnju. To se može dogoditi " "ako imate interni zrcalni poslužitelj ili su informacije o zrcalnom " "poslužitelju zastarjele.\n" "\n" "Želite li svejedno prepisati vašu 'sources.list' datoteku? Ako odaberete " "'Da' svi zapisi '%s' će biti zamijenjeni zapisom '%s'.\n" "Ako odaberete 'Ne', nadogradnja će biti otkazana." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Kreirati uobičajene izvore?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Nakon skeniranja vaše 'sources.list' datoteke nije pronađen nijedan valjani " "zapis za '%s'.\n" "\n" "Da li bi zadani zapisi za '%s' trebali biti dodani? Ako odaberete 'Ne', " "nadogradnja će biti otkazana." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Podaci repozitorija neispravni" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Nadogradnja informacija o repozitorijima je rezultirala neispravnom " "datotekom, stoga se pokreće proces za prijavu greške." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Izvori trećih strana su isključeni" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Neki unosi trećih strana u vašoj sources.list datoteci su isključeni. Možete " "ih uključiti nakon nadogradnje sa 'software-properties' alatom ili sa " "upraviteljem paketa." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paket u proturječnom stanju" msgstr[1] "Paketi u proturječnom stanju" msgstr[2] "Paketi u proturječnom stanju" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Paket '%s' je u nedosljednom stanju i treba biti ponovno instaliran, no nije " "pronađena nikakva arhiva za njega. Molim, paket ponovno instalirajte ručno " "ili ga uklonite iz sustava." msgstr[1] "" "Paketi '%s' je u nedosljednom stanju i trebaju biti ponovno instalirani, no " "nije pronađena nikakva arhiva za njih. Molim, pakete ponovno instalirajte " "ručno ili ih uklonite iz sustava." msgstr[2] "" "Paketi '%s' je u nedosljednom stanju i trebaju biti ponovno instalirani, no " "nije pronađena nikakva arhiva za njih. Molim, pakete ponovno instalirajte " "ručno ili ih uklonite iz sustava." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Greška prilikom nadogradnje" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Došlo je do problema prilikom nadogradnje. Najčešće se radi o nekakvom " "problemu s mrežom, stoga molim da provjerite svoju vezu na mrežu i pokušate " "ponovno." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Nema dovoljno praznog mjesta na disku" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Nadogradnja je prekinuta. Za nadogradnju je potrebno %s slobodnog prostora " "na disku '%s'. Molim oslobodite barem %s diskovnog prostora na '%s'. " "Ispraznite smeće i uklonite privremene pakete prijašnjih instalacija " "koristeći naredbu 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Analiza promjena" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Nadogradnja otkazana" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Nadogradnja će se prekinuti i prijašnje stanje sustava će se vratiti. " "Nadogradnju možete nastaviti kasnije." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Nadogradnje nisu mogle biti preuzete" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Nadogradnja je otkazana. Provjerite svoju Internet vezu ili instalacijski " "medij, te pokušajte ponovno. Sve preuzete datoteke su zadržane." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Greška prilikom čina" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Nisam mogao instalirati nadogradnje" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Nadogradnja je prekinuta. Vaš sustav bi mogao biti u neupotrebljivom stanju. " "Popravak će upravo biti pokrenut (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Nadogradnja je prekinuta. Vaš sustav bi mogao biti u neupotrebljivom stanju. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Ukloniti zastarjele pakete?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Zadrži" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Ukloni" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Neki problemi su se pojavili prilikom čišćenja. Molim pogledajte poruku za " "više informacija. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Potrebna zavisnost nije instalirana" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Potrebna zavisnost '%s' nije instalirana. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Provjeravam upravitelja paketima" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Neuspjelo pripremanje nadogradnje" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Priprema sustava za nadogradnju nije uspjela, stoga se pokreće proces za " "prijavu greške." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Neuspjelo pripremanje nadogradnje" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Sustav nije mogao dobiti preduvjete za nadogradnju. Nadogradnja će se " "prekinuti, a sustav će biti vraćen u izvorno stanje.\n" "\n" "Dodatno, pokrenut će se proces za prijavu greške." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Nadograđujem podatke repozitorija" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Neuspjelo dodavanje CD-ROM-a" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Isprike, dodavanje CD-ROM-a nije uspjelo." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Neispravni podaci paketa" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Dohvaćanje" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Nadograđujem" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Nadogradnja dovršena" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Nadogradnja je dovršena, ali evidentirane su greške prilikom procesa " "nadogradnje." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Tražim zastarjele programe" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Nadogradnja sustava je završena." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Djelomična nadogradnja dovršena" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Nisam mogao naći bilješke izdanja" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Poslužitelj bi mogao biti preopterećen. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Nisam mogao dohvatiti bilješke izdanja" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Molim, provjerite vašu internet vezu." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "autentifikacija '%(file)s' protiv '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "raspakiravanje '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Nisam mogao pokrenuti alat za nadogradnju" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Potpis alata za nadogradnju" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Alat za nadogradnju" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Preuzimanje nije uspjelo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Preuzimanje nadogradnje nije uspjelo. Vjerojatno je problem u mreži. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Autorizacija nije uspjela" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Autorizacija nadogradnje nije uspjela. Vjerojatno je problem u mreži ili s " "poslužiteljem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Raspakiravanje nije uspjelo." #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Raspakiravanje nadogradnje nije uspjelo. Vjerojatno je problem u mreži ili " "na poslužitelju. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verifikacija nije uspjela" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Provjera nadogradnje nije uspjela. Vjerojatno je problem u mreži ili s " "poslužiteljem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Pokretanje nadogradnje nije moguće" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Ovo najčešće uzrokuje sustav na kojemu je /tmp montiran s noexec direktivom. " "Montirajte particiju ponovno bez noexec direktive i još jednom pokrenite " "nadogradnju." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Poruka greške je '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Nadogradnja" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Bilješke izdanja" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Preuzimanje dodatnih paketnih datoteka..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Datoteka %s od %s pri %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Datoteka %s od %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Molim, ubacite '%s' u uređaj '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Promjena medija" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms u upotrebi" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Vaš sustav koristi 'evms' upravitelja uređajima u /proc/mounts. 'evms' " "softver više nije podržan, molim isključite gam te ponovno pokrenite " "nadogradnju.." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Vaš grafički hardver možda neće biti u potpunosti podržan u Ubuntuu 12.04 " "LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Podrška za vaš Intel grafički hardver u Ubuntuu 12.04 LTS je ograničen i " "možda neće naići na probleme nakon nadogradnje. Za više informacija " "posjetite https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Želite " "li nastaviti s nadogradnjom?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Nadogradnja može umanjiti efekte radne površine i performanse u igrama i " "ostalim grafički zahtjevnim programima." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Ovo računalo trenutno koristi NVIDIA 'nvidia' upravljački program za " "grafičku karticu. U Ubuntuu 10.04 LTS ne postoji nijedna inačica " "upravljačkog programa koja funkcionira s vašom grafičkom karticom.\n" "\n" "Želite li nastaviti?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Ovo računalo trenutno koristi AMS 'fglrx' upravljački program za grafičku " "karticu. U Ubuntuu 10.04 LTS ne postoji nijedna inačica upravljačkog " "programa koja funkcionira s vašom grafičkom karticom.\n" "\n" "Želite li nastaviti?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Nema i686 procesora" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Vaš sustav koristi i586 procesor ili procesor bez 'cmov' proširenja. Svi " "paketi su napravljeni uz pomoć optimizacije koja zahtijeva i686 kao " "minimalnu arhitekturu. S ovim hardverom nije moguće obaviti nadogradnju na " "novu inačicu Ubuntua." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Nedostaje ARMv6 procesor" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Vaš sustav koristi ARM procesor koji je stariji od ARMv6 arhitekture. Svi " "paketi u Karmicu su izrađeni s optimizacijom koja zahtijeva ARMv6 kao " "minimalnu arhitekturu. Nadogradnja vašeg sustava na novo izdanje Ubuntua " "nije moguće na ovom hardveru." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Nema dostupnog inita" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Čini se da je vaš sustav u virtualiziranom okružju bez init pozadinskog " "servisa, npr. Linux-VServer. Ubuntu 10.04 LTS ne može funkcionirati unutar " "ovakve vrste okružja, te je najprije potrebno ažuriranje konfiguracije vašeg " "virtualnog stroja.\n" "\n" "Želite li nastaviti?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandbox nadogradnja uporabom aufs-a" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Koristi danu putanju za traženje CD-ROM-a s paketima za nadogradnju" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Koristi grafičko sučelje. Trenutno su dostupna: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*ZASTARJELO* ova će mogućnost biti ignorirana" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Izvrši samo djelomičnu nadogradnju (sources.list se ne prepisuje)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Onemogući podršku za GNU screen" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Postavi datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Preuzimanje je završeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Preuzimanje datoteke %li od %li pri %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Otprilike je ostalo %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Preuzimam datoteku %li od %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Primjenjujem promjene" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemi zavisnosti - ostavljam nepodešeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Instalacija '%s' nije moguća" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Nadogradnja će se nastaviti, ali paket '%s' možda neće biti u radnom stanju. " "Molim uzmite u obzir slanje izvještaja o grešci." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Zamijeniti konfiguracijsku datoteku\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Izgubit ćete sve promjene napravljene na ovoj konfiguracijskoj datoteci ako " "odaberete izmjenu s novijom verzijom programa." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Nisam našao naredbu 'diff'" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Pojavila se ozbiljna greška" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ako već niste, molim prijavite ovo kao grešku i uz prijavu priložite " "datoteke /var/log/dist-upgrade/main.log i /var/log/dist-upgrade/apt.log. " "Nadogradnja je prekinuta.\n" "Izvorna inačica datoteke sources.list je spremljena u " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Pritisnuta kombinacija tipki Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Ovo će prekinuti operaciju, što može ostaviti sustav u neispravnom stanju. " "Jeste li sigurni da to želite učiniti?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Više ne podržava Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Povratak na stariju inačicu (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Ukloni (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Nepotrebno (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instaliraj (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Nadogradi (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Prikaži razliku >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Sakrij razliku" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Greška" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Zatvori" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Prikaži Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Sakrij Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informacije" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detalji" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Nepodržano %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Ukloni %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Ukloni (bilo je instalirano automatski) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instaliraj %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Nadogradi %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Potrebno je ponovno pokretanje" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Ponovno pokretanje računala potrebno je za završetak " "nadogradnje" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Ponovno pok_reni računalo" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Otkazati trenutnu nadogradnju?\n" "\n" "Ako otkažete nadogradnju, sustav može ostati u nestabilnom stanju. " "Savjetujemo vam da nastavite nadogradnju." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Otkazati nadogradnju?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dan" msgstr[1] "%li dana" msgstr[2] "%li dan" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li sat" msgstr[1] "%li sati" msgstr[2] "%li sat" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuta" msgstr[1] "%li minuta" msgstr[2] "%li minuta" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekunda" msgstr[1] "%li sekundi" msgstr[2] "%li sekunda" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Ovo preuzimanje će potrajati oko %s s DLS vezom od 1Mbit, te oko %s s 56k " "modemom." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Preuzimanje će trajati oko %s s vašom vezom. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Pripremam za nadogradnju" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Dobivam nove softverske kanale" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Dobivanje novih paketa" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Instalacija nadogradnji" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Čišćenje" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d instaliran paket više nije podržan od strane Canonicala. Podršku " "još uvijek možete dobiti od zajednice." msgstr[1] "" "%(amount)d instalirana paketa više nisu podržana od strane Canonicala. " "Podršku još uvijek možete dobiti od zajednice." msgstr[2] "" "%(amount)d instaliran paket više nije podržan od strane Canonicala. Podršku " "još uvijek možete dobiti od zajednice." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket će biti uklonjen." msgstr[1] "%d paketa će biti uklonjena." msgstr[2] "%d paketa će biti uklonjeno." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novi paket će biti instaliran." msgstr[1] "%d nova paketa će biti instalirana." msgstr[2] "%d novih paketa će biti instalirano." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket će biti nadograđen." msgstr[1] "%d paketa će biti nadograđena." msgstr[2] "%d paketa će biti nadograđeno." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Morate preuzeti ukupno %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Instalacija nadogradnje može potrajati nekoliko sati. Nakon što preuzimanje " "završi, proces se ne može otkazati." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Preuzimanje i instalacija nadogradnje može potrajati nekoliko sati. Nakon " "što preuzimanje završi, proces se ne može otkazati." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Uklanjanje paketa može potrajati nekoliko sati. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Softver na ovome računalu je ažuriran." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Nema nadogradnji za vaš sustav. Nadogradnja će biti otkazana." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Potrebno je ponovno pokretanje računala" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Nadogradnja je završena i potrebno je ponovo pokrenuti računalo. Želite li " "to učiniti sada?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Molim prijavite ovo kao grešku i uz prijavu priložite datoteke /var/log/dist-" "upgrade/main.log i /var/log/dist-upgrade/apt.log. Nadogradnja je prekinuta.\n" "Izvorna inačica datoteke sources.list je spremljena u " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Odustajanje" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Degradirano:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Za nastavak pritisnite [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Nastavi [dN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detalji [e]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "d" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "a" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Nepodržano: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Ukloni: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instaliraj: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Nadogradi: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Nastavi [Dn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Za završetak nadogradnje, potrebno je ponovno pokretanje.\n" "Ako izaberete 'd' sustav će se ponovno pokrenuti." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Preuzimanje datoteke %(current)li od %(total)li brzinom %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Preuzimam datoteku %(current)li od %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Prikaži napredak pojedinačnih datoteka" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Prekini nadogradnju" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Nastavi nadogradnju" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Prekinuti nadogradnju u tijeku?\n" "\n" "Sustav bi mogao biti u neupotrebljivom stanju ako prekinete nadogradnju. " "Preporuka je da nastavite nadogradnju." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Pokreni nadogradnju" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Za_mijeni" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Razlike između datoteka" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Prijavi grešku" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Nastavi" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Pokrenuti nadogradnju?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Za dovršetak nadogradnje, ponovno pokrenite sustav.\n" "\n" "Molim spremite svoj radi prije nastavka." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Nadogradnja distribucije" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Postavljanje novih programskih kanala" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Ponovno pokretanje računala" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "Na_dogradnja" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Dostupna je nova inačica Ubuntua. Želite li pokrenuti nadogradnju?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Nemoj nadograditi" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Pitaj me kasnije" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Da, nadogradi sada" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Odbili ste nadograditi na novu inačicu Ubuntua" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Prikaži verziju i izađi" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Direktorij koji sadrži podatkovne datoteke" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Pokreni odabrano sučelje" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Izvršavanje djelomične nadogradnje" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Preuzimanje alata za nadogradnju izdanja" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Provjera mogućnosti nadogradnje na noviju razvojnu verziju" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Pokušaj nadogradnju na najnovije izdanje koristeći nadograditelja iz $distro-" "proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Pokreni u posebnom načinu nadogradnje.\n" "Trenutačno se podržani 'desktop' za sustave stolnih računala i 'server' za " "poslužiteljske sustave." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testna nadogradnja sa sandbox aufs prekrivanjem" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Provjeri je li novo izdanje distribucije dostupno i javi rezultat pute " "izlaznog kôda" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Provjera dostupnosti novog izdanja Ubuntua" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Vaša inačica Ubuntua više nije podržana." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Za informacije o nadogradnji posjetite:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Ne postoji novo izadnje" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Nadogradnja izdanja trenutno nije moguća" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Nadogradnju izdanja trenutno nije moguće obaviti, molim pokušajte ponovno. " "Poslužitelj je odgovorio: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Novo '%s' izdanje dostupno." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Pokrenite 'do-release-upgrade' za nadogradnju na novu inačicu." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Dostupna nadogradnja Ubuntu %(version)" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Odbili ste nadogradnju na Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Dodaj informacije za otklanjanje grešaka" ubuntu-release-upgrader-0.220.10/po/zh_HK.po0000644000000000000000000016557312431225715015375 0ustar msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-12-21 14:47+0000\n" "Last-Translator: Walter Cheuk \n" "Language-Team: Chinese (Hong Kong) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: zh_HK\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s伺服器" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "主伺服器" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "自訂伺服器" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "無法推算 sources.list 項目" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "找不到套件檔案;也許這不是 Ubuntu 光碟,又或者處理器架構不對?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "加入光碟失敗" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "加入光碟時發生錯誤,升級將終止。若確定光碟沒有問題,請將此匯報為臭蟲。\n" "\n" "錯誤訊息:\n" "「%s」" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "移除有問題套件" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "這個套件 '%s' 狀態不一致而需要重新安裝,但找不到其存檔。要移除這個套件然後繼續嗎?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "伺服器可能負載過大" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "損毀的套件" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "系統有一些本軟件無法修正的損毀套件。請先以「Synaptic 套件管理員」或 apt-get 修正再繼續。" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "為升級進行推算時有問題無法解決:\n" "%s\n" "\n" " 原因可能是:\n" " * 要升級至測試版 Ubuntu\n" " * 正使用的是測試版 Ubuntu\n" " * 非 Ubuntu 官方軟件套件的問題\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "這通常只是暫時性的問題。請稍候再試。" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "非以上所述者,請在終端機使用「ubuntu-bug ubuntu-release-upgrader-core」報告此問題。" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "無法為升級進行推算" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "核實一些套件時發生錯誤" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "系統無法核實一些套件。這可能是由於短暫的網絡問題;您可以稍後再試。以下為沒有核實的套件。" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "套件「%s」標記作移除,但它在移除黑名單中。" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "必備套件「%s」被標記作移除。" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "正在嘗試安裝已列入黑名單的「%s」版本" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "無法安裝「%s」" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "無法安裝所需套件。請在終端機使用「ubuntu-bug ubuntu-release-upgrader-core」報告此問題。" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "您的系統沒有安裝 ubuntu-desktop、kubuntu-desktop、xubuntu-desktop 或 edubuntu-desktop " "套件,因此無法偵測正在使用那個版本的 Ubuntu。\n" " 請先以「Synaptic 套件管理員」或 apt-get 安裝上述其中一個套件再繼續。" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "正在讀取快取" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "無法取得(使用)排他鎖定" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "這通常表示有其他的套件管理員程式(如 apt-get 或 aptitude)正在執行。請先關閉這些應用程式。" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "不支援透過遠端連線升級" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "正在透過遠端 ssh 連線的前端介面執行更新,而此介面不支援。請試試純文字模式下以 'do-release-upgrade' 進行更新。\n" "\n" "目前更新將會中止。請透過非 ssh 連線重試。" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "繼續執行於 SSH 中?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "此連線階段似乎是在 ssh 下執行。目前不建議在 ssh 連線下進行升級,因為若發生失敗將會較難以修復。\n" "\n" "若您繼續,一個額外的 ssh 背景程序將會啟動在 '%s' 連接埠。\n" "您想要繼續嗎?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "啟動後備 sshd 中" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "為在失敗時更易進行修復,一個後備 sshd 將在‘%s’埠被啟動。如果使用中的 ssh 有任何問題,您仍可以連接後備的 sshd 。\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "若有執行防火牆,可能需要暫時開啟此連接埠。由於此動作有潛在危險,系統不會自動執行。可以這樣開啟連接埠:\n" "「%s」" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "無法升級" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "這個工具不支援從‘%s’到‘%s’的升級" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "沙堆(Sandbox)架設失敗" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "不可能建立沙堆(sandbox)環境。" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "沙堆(Sandbox)模式" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "此升級程序正以沙箱 (測試) 模式執行。所有的變更會寫入「%s」,下次重新開機後會消失。\n" "\n" "從現在起直到下次重新開機前,任何寫入系統目錄的變更都「不會」被留存。" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "您的 python 安裝已毀損。請修正 ‘/usr/bin/python’ 的符號連結。" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "套件 'debsig-verify' 安裝完成。" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "該已安裝套件令升級無法繼續,請先以「Synaptic 套件管理員」或「apt-get remove debsig-verify」指令將其移除再進行升級。" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "無法寫入「%s」" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "無法寫入您的系統目錄「%s」。升級程序無法繼續。\n" "請確認該系統目錄可以寫入。" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "包括互聯網上的最新更新嗎?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "升級系統可自動由互聯網下載最新更新並在升級時安裝。如有網絡連線,建議使用這方法。\n" "\n" "升級的時間會比較久,但完成後,系統就會完全在最新狀態。您可以選擇現在不進行這工作,但是在升級後,應該要盡快安裝最新的更新。\n" "如在此回答「否」,將完全不會使用網絡。" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "因升級至 %s 停用" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "找不到有效的鏡像站" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "掃描套件庫資料時沒有發現可提供升級的鏡像站。如果使用的是內部鏡像站或鏡像站資料已經過時,就會發生這種情況。\n" "\n" "是否無論如何都希望覆寫 'sources.list' 檔案?如果在此選擇「是」則會將所有 '%s' 項目更新成 '%s'。\n" "如果選擇「否」,則會取消更新。" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "產生預設的來源?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "在掃描您的 'sources.list' 後,沒找到與 '%s' 有效的項目。\n" "\n" "要新增 '%s' 的預設項目嗎?如果選擇「否」,則會取消升級。" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "套件庫資料無效" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "因更新套件庫資料導致檔案無效,故啟動錯誤報告程序。" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "已停用第三方軟件來源" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "已經停用部份在 sources.list 的第三方軟件來源。升級完成後可以「軟件來源」工具或套件管理員將之重新啟用。" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "套件在不一致狀態" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "這個套件 '%s' 狀態不一致而需要重新安裝,但找不到其存檔套件。請手動重新安裝或將其由系統移除。" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "更新時發生錯誤" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "更新時發生錯誤。這可能是某些網絡問題,請檢查網絡連線後再試。" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "磁碟空間不足" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "已放棄升級。升級程序總共需要 %s 可用空間於磁碟「%s」。請釋放至少額外 %s 的磁碟空間於磁碟「%s」。清理您的回收筒,並使用 'sudo apt-" "get clean' 來移除之前安裝時的暫時性套件。" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "正在推算改動" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "想要開始更新嗎?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "取消升級" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "現在會取消升級,並將系統恢復至原來狀態。之後可以繼續升級。" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "無法下載升級套件" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "升級已中止。請檢查您的互聯網連線,或安裝媒體並重試。所有目前已下載的檔案都會被保留。" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "提交時發生錯誤" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "回復原有系統狀態" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "無法安裝升級套件" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "已放棄升級。系統可能會處於不穩定狀態。現在會執行復原程序 (dpkg --configure -a)。" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "請打開瀏覽器,到 http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-" "upgrader/+filebug 報告此問題,並將 /var/log/dist-upgrade/ 內的檔案附加在問題報告。\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "已放棄升級。請檢查您的互聯網連線或安裝媒體,接著再試一次。 " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "是否移除淘汰的套件?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "保留(_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "移除(_R)" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "進行清理時發生問題。詳情請參閱以下訊息。 " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "必需的相依套件未安裝" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "必需的相依套件「%s」未安裝。 " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "正在檢查套件管理員" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "準備升級失敗" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "準備系統以供升級的動作失敗,所以正在啟動臭蟲報告程序。" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "取得升級先決元件失敗" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "本系統無法達到升級的先決條件。升級會立刻中止並還原至原來的系統狀態。\n" "\n" "此外還會啟動臭蟲報告程序。" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "更新套件庫資料" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "加入光碟失敗" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "很抱歉,沒有成功加入光碟。" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "套件資訊無效" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "在更新你的套件資訊之後,找不到必要套件「%s」的位置。這可能因為你沒有在軟件來源列出官方鏡像站,或者是因為你正使用的鏡像站正忙碌超載。請見 " "/etc/apt/sources.list 以瞭解目前設定的軟件來源列表。" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "提取中" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "升級中" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "升級完成" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "升級已經完成,但在升級過程中有發生錯誤。" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "正搜尋淘汰的軟件" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "系統升級完成。" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "完成部份升級。" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "找不到發行公告" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "伺服器可能負荷過重。 " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "無法下載發行公告" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "請檢查您的互聯網連線。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "以「%(signature)s」核實「%(file)s」 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "正在抽取「%s」" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "這個問題極可能來自升級工具。請使用「ubuntu-bug ubuntu-release-upgrader-core」報告此問題。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "升級工具簽署" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "升級工具" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "提取失敗" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "提取升級套件失敗。可能是網絡問題。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "未能核實" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "未能核實升級套件。可能是因為跟伺服器的網絡連線出現問題。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "解壓失敗" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "升級套件解壓失敗。可能是因為網絡或伺服器出現問題。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "驗證失敗" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "驗證升級套件失敗。可能是因為網絡或伺服器出現問題。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "不能進行升級" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "這通常是由使用 noexec 掛載 /tmp 的系統引致的。請不要使用 noexec 重新掛載,並再次進行升級。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "錯誤訊息 '%s'。" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "升級" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "發行公告" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "正在下載額外的套件檔案..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "檔案 %s / %s (速度:%sB/秒)" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "檔案 %s / %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "請將‘%s’放入光碟機‘%s’" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "媒體變更" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "有軟件正使用 evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "您的系統於 /proc/mounts 使用 'evms' volume 管理程式。'evms' 軟件已不受支援,請將其關閉再執行升級工作。" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "Ubuntu 13.04 未必能完全支援你的圖像卡硬件。" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "你的顯示卡硬件無法完整支援「unity」桌面環境的執行。你可能在升級之後遭遇異常緩慢的環境。我們目前建議你繼續維持使用 LTS " "版本。若要瞭解更多資訊,請見 https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D " "。你仍想要繼續升級嗎?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ubuntu 12.04 LTS 未必能完全支援你的圖像卡硬件。" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Ubuntu 12.04 LTS 對你的 Intel 圖像卡硬件支援有限,升級之後你可能會碰到一些問題。更多資訊可以查看 " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx 。你仍想要繼續升級嗎?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "升級可能減低桌面特效和遊戲及其他著重圖形程式的表現。" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "這個電腦目前正使用 NVIDIA 的「nvidia」圖形驅動程式。這個驅動程式沒有任何版本可在 Ubuntu 10.04 LTS 中正常驅動您的硬件。\n" "\n" "是否要繼續?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "這個電腦目前正使用 AMD 的「fglrx」圖形驅動程式。這個驅動程式沒有任何版本可在 Ubuntu 10.04 LTS 中正常驅動您的硬件。\n" "\n" "是否要繼續?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "非 i686 處理器" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "您的系統使用 i586 處理器,或是不支援「cmov」擴充功能的處理器。所有套件都以 i686 架構為最佳化目標來建置,所以處理器至少需要有 i686 " "等級。對於目前的硬件來說,無法將系統升級到新的 Ubuntu 發行版。" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "非 ARMv6 處理器" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "您系統使用的 ARM 處理器舊於 ARMv6 架構。所有 karmic 套件都以 ARMv6 架構為最佳化目標來建置,所以處理器至少需要有 ARMv6 " "等級。對於目前的硬件來說,無法將系統升級到新的 Ubuntu 發行版。" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "無法初始化" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "您的系統似乎在虛擬化環境中且無初始化程序,例如 Linux-VServer。Ubuntu 10.04 LTS " "無法在此環境中執行,需要先更新您的虛擬機器設定。\n" "\n" "您確定想要繼續?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "使用 aufs 作為沙堆升級" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "使用指定路徑搜尋附有升級套件的光碟" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "使用前端介面。可供選擇的有: \n" "DistUpgradeViewText (純文字), DistUpgradeViewGtk (GTK+), DistUpgradeViewKDE " "(KDE)" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*已棄用* 這個選項會被忽略" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "只進行部份升級 (無須修改 sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "停用 GNU screen 支援" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "設定資料目錄" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "完成提取" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "正提取第 %li 個檔案 (共 %li 個),速度為每秒 %sB" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "大約還有 %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "正提取第 %li 個檔案 (共 %li 個)" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "正在套用改動" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "相依關係問題 - 仍未被設定" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "無法安裝‘%s’" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "更新會繼續,但 '%s' 套件可能無法運作。請考慮提交關於該套件的臭蟲報告。" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "是否取代已有的設定檔案\n" "「%s」?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "如選擇以新版取代,會失去您改動過的設定。" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "找不到‘diff’指令" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "發生嚴重錯誤" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "請回報此錯誤 (若您尚未回報) 並將檔案 /var/log/dist-upgrade/main.log 與 /var/log/dist-" "upgrade/apt.log 附在報告。升級程序已中止。\n" "您原先的 sources.list 儲存於 /etc/apt/sources.list.distUpgrade" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "按下 Ctrl+c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "這將會中止操作並可能令系統在不完整的狀態。您確定要進行嗎?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "為免遺失資料,請關閉所有已開啟的程式及文件。" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "不再受 Canonical 支援 (%s 個)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "降級 (%s 個)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "移除 (%s 個)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "不再需要 (%s 個)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "安裝 (%s 個)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "升級 (%s 個)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "顯示差異 >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< 隱藏差異" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "錯誤" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "取消(&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "關閉(&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "顯示終端畫面 >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< 隱藏終端畫面" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "資訊" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "詳情" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "不再受支援 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "移除 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "移除 (自動安裝的) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "安裝 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "升級 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "需要重新開機" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "升級會在重新啟動系統後完成" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "馬上重新啟動(_R)" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "要取消進行中的升級嗎?\n" "\n" "如果取消升級,系統可能會變得不穩定。強烈建議繼續升級工作。" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "要取消升級嗎?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li 日" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li 小時" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li 分鐘" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li 秒" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s零 %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s又 %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "這次下載所需時間在 1M 寬頻連線大約要 %s,用 56k 數據機大約要 %s。" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "按照您的連線速度,此下載會花約 %s。 " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "準備升級" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "取得新軟件頻道中" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "取得新套件" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "安裝升級" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "清理" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "已安裝套件中有 %(amount)d 個不再受 Canonical 支援。您仍可以取得來自社羣的支援。" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "將會移除 %d 個套件。" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "將會安裝 %d 個新套件。" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "將會升級 %d 個套件。" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "總共要下載 %s。 " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "安裝升級可能會花上幾個鐘頭。一旦下載完成,升級程序就無法中途取消。" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "升級的擷取與安裝可能花上數個鐘頭。一旦下載完成,升級程序就無法中途取消。" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "移除套件可能會花上幾個鐘頭。 " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "這台電腦的軟件已處最新狀態。" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "系統已在最新狀態。現在會取消升級工作。" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "需要重新開機" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "升級已經完成及需要重新啟動。要馬上重新啟動嗎?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "請回報此錯誤並將檔案 /var/log/dist-upgrade/main.log 與 /var/log/dist-upgrade/apt.log " "附在報告。升級程序已中止。\n" "您原先的 sources.list 儲存於 /etc/apt/sources.list.distUpgrade" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "正在中止" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "降等:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "若要繼續請按 [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "繼續 [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "詳情 [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "不再支援:%s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "移除: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "安裝: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "升級: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "繼續 [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "需要重新開機才能完成更新。\n" "如果您選擇 'y' 系統將會重新開機。" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "共 %(total)li 個檔案,正下載第 %(current)li 個 (速度為每秒 %(speed)s)" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "共 %(total)li 個檔案,正下載第 %(current)li 個" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "顯示個別檔案進度" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "取消升級(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "繼續升級(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "要取消正在執行的升級嗎?\n" "\n" "如果取消升級可能會導致系統不穩定。強烈建議繼續升級。" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "開始升級(_S)" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "取代(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "檔案差異" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "匯報錯誤(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "繼續(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "開始升級嗎?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "升級會在重新啟動系統後完成\n" "\n" "繼續前請先儲存你正在進行的工作。" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "發行版升級" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "將 Ubuntu 升級至 13.04 版" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "設定新的軟件來源頻道" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "重新啟動系統" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "終端" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "升級(_U)" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "有新版本 Ubuntu。是否升級?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "不升級" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "稍後再問我" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "是,馬上升級" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "您已拒絕升級至新版 Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "你之後若要升級,可以開啟「軟件更新」,再點擊「升級」。" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "執行發行版升級" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "要先核證身分才能升級 Ubuntu。" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "進行部份升級" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "要先核證身分才能進行部份升級。" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "顯示版本並結束" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "含有資料檔案的目錄" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "執行指定的前端" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "執行部份升級" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "正在下載發行版更新工具" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "檢查能否升級至最新測試版" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "嘗試使用 $distro-proposed 的升級程式來升級至最新的發行版本" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "以特殊升級模式進行。\n" "目前只支援以 'desktop' 模式升級桌面版本的系統,以及以 'server' 模式升級伺服器版的系統。" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "使用沙堆 aufs 層測試升級" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "檢查是否有新的發行版並以結束碼報告結果" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "檢查是否有新的 Ubuntu 發行版" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "您的 Ubuntu 發行版本已經不再支援。" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "若要取得升級資訊,請參訪:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "找不到新發行版" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "目前不能升級發行版" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "目前無法升級發行版,請稍後重試。該伺服器回報:「%s」。" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "有新發行版 '%s' 提供。" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "執行 ‘do-release-upgrade’ 進行升級工作。" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "可以升級至 Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "您已拒絕升級至 Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "加入除錯輸出" ubuntu-release-upgrader-0.220.10/po/jv.po0000644000000000000000000013021012431225715014765 0ustar # Javanese translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Rahman Yusri Aftian \n" "Language-Team: Javanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: jv\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/nds.po0000644000000000000000000013564112431225715015147 0ustar # German, Low translation for update-manager # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: ncfiedler \n" "Language-Team: German, Low \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server für %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Hauptserver" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Eegene Server" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Künn de Indrag sources.list nich bereknen" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Das Hinzufügen der CD ist fehlgeschlagen" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Ein Fehler beim Hinzufügen der CD ist aufgetreten. Das Upgrade wird " "abgebrochen. Bitte berichten sie diesen Fehler, wenn es sich um eine " "originale Ubuntu CD handelt.\n" "\n" "Die Fehlermeldung lautete:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Defekte Pakete löschen" msgstr[1] "Defekte Pakete löschen" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Defekte Pakete" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Die Aktualisierung konnte nicht berechnet werden." #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Fehler beim authentifizieren einiger Pakete" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Es war nicht möglich einige Pakete zu authentifizieren. Möglicher Weise ist " "das ein vorübergehendes Netzwerkproblem. Versuchen sie es später noch " "einmal. Untenstehend ist die Liste der nicht authentifizierten Pakete." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Installation von '%s' nicht möglich" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Ihr System enthällt kein ubuntu-desktop, kubuntu-desktop, xubuntu-desktop " "oder edubuntu-desktop Paket. Es war nicht möglich die von ihnen genutzte " "Ubuntu Version zu erkennen.\n" " Bitte installieren sie eines der oben genannten Pakete, mit Synaptic oder " "apt-get bevor sie fortfahren." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Lese Twüschenspieker" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Dies bedeutet üblicherweise, dass ein anderes Paketverwaltungsprogramm (wie " "apt-get oder aptitude) bereits läuft. Bitte beenden Sie zuerst das laufende " "Programm." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Weiter unter SSH schreiben?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Zusätzlicher SSH-Server wird gestartet" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Upgrade kann nicht durchgeführt werden." #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Eine Aktualisierung von '%s' zu '%s' wird von diesem Programm nicht " "unterstützt." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Die letzten Updates aus dem Internet einbinden?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Kein funktionierender Mirror gefunden." #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Fehler während des Updates." #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Nicht genügend freier Speicherplatz vorhanden." #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Möchtest du das Upgrade starten?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Aktualisierung abgebrochen" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Kann die Upgrades nicht downloaden." #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Upgrade kann nicht installiert werden." #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Veraltete Pakete löschen?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Löschen" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Paketmanager wird überprüft" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Falsche Paketinformation" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Suche nach veralteter Software" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Systemupgrade fertiggestellt." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Upgradeprogramm kann nicht ausgeführt werden" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Keen Togang" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verifikatschoon fehlslagen" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Aktualisierung" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Keen init verföögbar" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Nutze den angegebenen Pfad, um nach einer CD-ROM mit aktualisierbaren " "Paketen zu suchen." #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Veränderungen werden aktualisiert" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' kann nicht installiert werden" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Der Befehl 'diff' wurde nicht gefunden" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ein fataler Fehler ist aufgetreten" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" "Copy text \t\r\n" "Zeige Unterschiede >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Verstecke Unterschiede" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Zeige Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Verstecke Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informatschoon" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Details" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Lösche %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" "Copy text \t\r\n" "Installiere %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Nu nej starten" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Upgrade abbrechen?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Dieser Download wird mit einer 1-MBit-DSL-Verbindung etwa %s dauern oder " "ungefähr %s mit einem 56K-Modem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Es es ist kein Upgrade für dein System verfügbar. Upgrade wird beendet." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Neustart erforderlich" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Das Upgrade wurde fertiggestellt und ein Neustart ist erforderlich. Möchtest " "du jetzt neu starten?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Brek av" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "Abbruch des Upgradeprozesses?" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Överschrieven" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Wietermaken" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/fur.po0000644000000000000000000014014112431225715015146 0ustar # Friulian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Marco Londero \n" "Language-Team: Friulian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: fur\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Servidôr par %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Servidôr princpâl" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Servidôrs personalitâts" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "No pues calcolâ la vôs sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "No puedi cjatà nissun file dai pachets, forsit no isal un Disc Ubuntu o le " "architeture sbaliade ?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "No rivât a zontà al CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Ven a stai un erôr zontant il CD, al inzornament falìs. Par plasè ripuarte " "chest come une fale (bug) se chest al è un valit CD di Ubuntu.\n" "\n" "Al messaç di erôr e jere:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Gjave il pacut ravuinât" msgstr[1] "Gjave i pacuts ravuinâts" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Il pachet '%s' a son in un stat inconsistent e an di bisugne di jessi di " "gnûf instalât, ma no si pues cjatà nissun archivi. Vuelistu tirà vie chest " "pachet cumò par continuà ?" msgstr[1] "" "I pachets '%s' a son in un stat inconsistent e an di bisugne di jessi di " "gnûf instalâts, ma no si pues cjatà nissun archivi. Vuelistu tirà vie " "chestis pachets cumò par continuà ?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Al servidôr pôl jessi sorecjariât" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "pacuts ravuinâts" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "al to sisteme al a pacs ruvinaz ca no puedin esi comedas cun cist " "software.\r\n" "comedilu cun synaptic o cun apt-get prime di la indenant" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Un probleme no risolvibii al è capitât mentri che si calcolave al " "inzornament:\n" "%s\n" "\n" "Chest pôl jessi provocât di:\n" " * Avanzament a une version di Ubuntu pre-release\n" " * Zirà sun tune version di Ubuntu pre-release\n" " * Pachets di software no ufiziâi no furnîts di Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Chest al è a la plui un probleme momentani, riprove par plasè plui tart." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "No si pues calcolâ l'avançament" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Erôr tal autenticà un pôcs di pachets" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Nol è stat pussibil autenticà un pôcs di pachets. Chest pôl jessi sta un un " "momentani probleme di ret. Pôl jessi che tu vuelis riprovà plui tart. Ciale " "sote par une liste dai pachets no autenticâts." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Il pachet '%s' al è segnât di rimovilu ma al è ta liste nere di rimozion." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Il pachet indispensabil '%s' al è segnât pa rimozion." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Cirint di instalà la version '%s' in liste nere" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "No si pues instalâ '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Daûr a lei la cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "No si pues vê il bloc esclusîf" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Chest par solit al vûl dî che une altre aplicazion pe gjestion dai pacuts " "(par esempli apt-get o aptitude) e je in esecuzion. Siere prime chê " "aplicazion." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "No si pues inzornâ" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Vuelistu includi i ultins inzornaments di Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nissun mirror valit cjatât" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Informazions sul dipuesit no validis" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Risultivis di tierce part disativadis" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Erôr dilunc l'inzornament" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Nol è vonde spazi libar sul disc" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Daûr a calcolâ i cambiaments" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Vuelistu scomençâ l'inzornament?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "No si pues discjamâ i inzornaments" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Daûr a tornâ al stât origjinâl dal sisteme" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "No si pues instalâ i inzornaments" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Vuelistu gjavâ i pacuts vecjos?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Ten" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Gjave" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Lis dipendencis necessaris no son instaladis" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "La dipendence necessarie '%s' no je instalade. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Daûr a controlâ il gjestôr di pacuts" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Preparazion dal avançament di version falide" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Daûr a inzornâ lis informazions dal dipuesit" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Informazions di pacut no validis" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Daûr a recuperâ" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Daûr a inzornâ" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Avançament di version finît" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Avançament di version dal sistem finît." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Imprest pal inzornament" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Autenticazion falide" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "A mancjin cirche %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Daûr a recuperâ il file %li su %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Daûr a aplicâ i cambiaments" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "No si pues instalâ '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Comant 'diff' no cjatât" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Mostre difarencis >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Plate difarencis" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Mostre terminâl >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Plate terminâl" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detais" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Gjave %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instale %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Avanze %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Covente tornâ a inviâ l'ordenadôr" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Scancelâ l'avançament di version?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Daûr a recuperâ i gnûfs pacuts" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Daûr a instalâ i inzornaments" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pacut al sta par jessi gjavât." msgstr[1] "%d pacuts a stan par jessi gjavâts." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d gnûf pacut al sta par jessi instalât." msgstr[1] "%d gnûfs pacuts a stan par jessi instalâts." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacut al sta par jessi inzornât." msgstr[1] "%d pacuts a stan par jessi inzornâts." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Tu scugnis discjamâ un totâl di %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Covente tornâ a inviâ l'ordenadôr" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "L'inzornament al è finît e si scugne tornâ a inviâ l'ordenadôr. Vuelistu " "fâlu cumò?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detais [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Gjave: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instale: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Inzorne: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Mostre progrès dai singui files" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Sostituìs" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Difarencis tra i files" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Indenant" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminâl" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "In_zornament" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Mostre la version e va fûr" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Invie il frontend specificât" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Esecuzion di un avançament di version parziâl" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Nissune gnove version cjatade" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/sr.po0000644000000000000000000023360312431225715015004 0ustar # translation of update-manager.po to # Marko Uskokovic , 2007, 2008. # Serbian linux distribution cp6Linux # Copyright (C) 2007 Marko Uskokovic # Marko Uskokovic , 2009. # Мирослав Николић , 17.12.2010, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Мирослав Николић \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: sr\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Земља сервера %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Главни сервер" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Ручно подешени сервери" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Не могу да урачунам ставку „sources.list“ (списак извора)" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Не могу да пронађем ниједну датотеку пакета, можда ово није Убунту диск или " "је погрешна архитектура?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Нисам успео да додам ЦД диск" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Дошло је до грешке приликом додавања ЦД-а, надоградња ће бити прекинута. " "Молим пријавите ово као грешку ако је ово исправан Убунту диск.\n" "\n" "Грешка беше:\n" "„%s“" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Уклони пакет у лошем стању" msgstr[1] "Уклони пакете у лошем стању" msgstr[2] "Уклони пакете у лошем стању" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Пакет „%s“ је у несагласном стању и треба га опет инсталирати, али није " "пронађена архива за њега. Да ли желите да уклоните овај пакет како бисте " "наставили?" msgstr[1] "" "Пакети „%s“ су у несагласном стању и треба их опет инсталирати, али нису " "пронађене архиве за њих. Да ли желите да уклоните ове пакете како бисте " "наставили?" msgstr[2] "" "Пакети „%s“ су у несагласном стању и треба их опет инсталирати, али нису " "пронађене архиве за њих. Да ли желите да уклоните ове пакете како бисте " "наставили?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Сервер је можда преоптерећен" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Оштећени пакети" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "У вашем систему постоје оштећени пакети који не могу бити поправљени овим " "софтвером. Поправите их прво користећи синаптик или апт-гет пре него што " "наставите." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Дошло је до нерешивог проблема приликом планирања надоградње.\n" "%s\n" "\n" "Ово може бити изазвано:\n" " * Надоградњом на рано издање дистрибуције\n" " * Извршавањем раног издања дистрибуције\n" " * Употребом незваничних пакета софтвера\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Ово је највероватније пролазни проблем, касније покушајте поново." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Уколико ништа од предложеног не може да се примени онда поднесите извештај о " "грешци користећи наредбу „ubuntu-bug ubuntu-release-upgrader-core“ у " "терминалу." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Не могу да испланирам надоградњу" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Грешка приликом провере веродостојности неких пакета" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Провера веродостојности неких пакета није била могућа. Ово може бити " "пролазни мрежни проблем, те уколико желите, можете пробати још једном " "касније. Испод се налази списак пакета који нису проверени." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Пакет „%s“ је означен за уклањање али се налази на списку пакета који не " "треба да се уклањају." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Кључни пакет „%s“ је означен за уклањање." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Покушавам да инсталирам издање „%s“ са списка забрана" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Не могу да инсталирам „%s“" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Није могуће инсталирати жељени пакет. Поднесите извештај о грешци користећи " "наредбу „ubuntu-bug ubuntu-release-upgrader-core“ у терминалу." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Не могу да погодим мета пакет" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Ваш систем не садржи убунту-десктоп, кубунту-десктоп, хубунту-десктоп или " "едубунту-десктоп пакет и није могуће одредити које издање Убунту " "дистрибуције користите.\n" " Молим инсталирајте прво један од тих пакета користећи синаптик или апт-гет " "пре него што наставите." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Читам оставу" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Искључиво закључавање није успело" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Ово најчешће значи да је покренут неки други програм за управљање пакета " "(рецимо „apt-get“ или „aptitude“). Као прво затворите тај програм." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Надоградња преко удаљен везе није подржана" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Извршавате надоградњу преко удаљене везе безбедне шкољке помоћу челника који " "не подржава ту могућност. Молим пробајте текстуални начин надоградње " "користећи „do-release-upgrade“.\n" "\n" "Надоградња ће сада бити прекинута. Пробајте без безбедне шкољке." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Да наставим са радом у безбедној шкољци?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Чини се да ова сесија ради под безбедном шкољком. Није препоручљиво вршити " "надоградњу преко исте, јер је у случају неуспеха много теже преправити.\n" "\n" "Ако наставите, додатни демон безбедне шкољке ће бити покренут на прикључнику " "„%s“.\n" "Да ли желите да наставите?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Покрећем додатног демона безбедне шкољке" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Да олакшате опоравак у случају неуспеха, додатни демон безбедне шкољке ће " "бити покренут на прикључнику „%s“. Ако било шта пође непланирано са текућом " "безбедном шкољком, можете се повезати на додатну.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Ако користите мрежну баријеру, можда ће бити потребно да привремено отворите " "овај прикључник. Пошто је ово потенцијално опасно није урађено аутоматски. " "Можете да отворите прикључник са нпр.:\n" "„%s“" # Надоградња није могућа? #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Не могу да извршим надоградњу" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Ова алатка не подржава надоградњу са „%s“ на „%s“." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Нисам успео да поставим тест окружења" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Није било могуће направити тест окружење." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Режим тест окружења" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Ова надоградња се обавља у режиму испробавања. Све промене су записане у " "„%s“ и биће изгубљене при следећем учитавању.\n" "\n" "*Никакве* измене записане у системском директоријуму од сада све до следећег " "поновног учитавања неће бити сталне." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Питонова инсталација је оштећена. Молим оправите симболичку везу " "„/usr/bin/python“." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Пакет „debsig-verify“ је инсталиран" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Надоградња се не може наставити док је тај пакет инсталиран.\n" "Прво га уклоните синаптиком или у терминалу извршите „apt-get remove debsig-" "verify“ и затим поново покрените надоградњу." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Не могу да пишем у „%s“" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Није могуће уписивање у системском директоријуму „%s“ на вашем систему. " "Надоградња не може бити настављена.\n" "Проверите да ли је могуће уписивање у системски директоријум." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Да укључим најновије исправке са интернета?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Систем за надоградњу може користити интернет да сам преузме најновије " "исправке и да их инсталира за време надоградње. Ако имате везу ка мрежи, ово " "се препоручује.\n" "\n" "Надоградња ће трајати дуже, али када се заврши, ваш систем ће бити потпуно " "освежен. Можете одабрати да ово не урадите, али ћете ускоро морати да " "инсталирате најновије исправке након надоградње.\n" "Ако овде изаберете „не“, мрежа неће бити коришћена." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "искљученo приликом надоградње на %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Нисам пронашао важеће огледало" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "За време скенирања информација Ваше ризнице нисам пронашао ставку мирора за " "надоградњу. Ово може да се догоди ако сте покренули унутрашњи мирор или су " "информације о мирору застареле.\n" "\n" "Да ли свеједно желите да препишете Вашу „sources.list“ датотеку? Ако овде " "изаберете „Да“ то ће ажурирати све ставке „%s“ у „%s“.\n" "Ако изаберете „Не“ надоградња ће бити отказана." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Да створим основне изворе?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Након прегледања датотеке „sources.list“ нисам пронашао важећу ставку за " "„%s“.\n" "\n" "Требају ли бити додате подразумеване ставке за „%s“? Ако изаберете „Не“, " "надоградња ће бити отказана." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Неисправна информација ризнице" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Надограђивање података о ризници је резултирало неисправном датотеком тако " "да је покренут процес за извештавање о грешци." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Искључени су извори трећих лица" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Неке ставке о изворима трећих лица у вашој датотеци „sources.list“ су " "искључене. Након надоградње можете их поново укључити помоћу алата „software-" "properties“ или вашим управником пакета." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Пакет је у несагласном стању" msgstr[1] "Пакети су у несагласном стању" msgstr[2] "Пакети су у несагласном стању" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Пакет „%s“ је у несагласном стању и мора бити поново инсталиран, али нема " "архива за њега. Инсталирајте га ручно или га уклоните са система." msgstr[1] "" "Пакети „%s“ су у несагласном стању и морају бити поново инсталирани, али " "нема архива за њих. Инсталирајте их ручно или их уклоните са система." msgstr[2] "" "Пакети „%s“ су у несагласном стању и морају бити поново инсталирани, али " "нема архива за њих. Инсталирајте их ручно или их уклоните са система." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Грешка приликом ажурирања" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Дошло је до проблема током ажурирања. Ово је обично нека врста мрежног " "проблема, проверите вашу мрежну везу и покушате поново." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Нема довољно слободног простора на диску" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Надоградња је обустављена. За надоградњу је потребно укупно %s слободног " "простора на диску „%s“. Ослободите најмање %s простора на диску „%s“. " "Испразните корпу и уклоните привремене пакете претходних инсталација " "користећи наредбу „sudo apt-get clean“." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Срачунавам измене" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Да ли желите да започнете надоградњу?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Надоградња је отказана" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Надоградња ће сада бити отказана и биће враћено оригинално стање система. " "Можете да наставите надоградњу касније." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Нисам могао да преузмем надоградње" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Надоградња је прекинута. Проверите вашу везу на интернет или инсталациони " "медијум и покушајте опет. Све датотеке до сада преузете су задржане." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Грешка приликом слања" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Враћам оригинално стање система" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Нисам могао да инсталирам надоградње" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Надоградња је прекинута. Ваш систем би могао бити у неупотребљивом стању. " "Сада ће почети процес опоравка (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Поднесите извештај о грешци на адреси " "„http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug“ " "користећи прегледника и приложите уз извештај датотеке које се налазе у " "„/var/log/dist-upgrade/“.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Надоградња је прекинута. Проверите вашу Интернет везу или инсталациони " "медијум и покушајте поново. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Да уклоним застареле пакете?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Задржи" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Уклони" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Дошло је до грешке током чишћења. Погледајте следећу поруку за више " "информација. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Неопходна зависност није инсталирана" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Неопходна зависност „%s“ није инсталирана. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Проверавам управника пакета" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Припрема надоградње није успела" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Припрема система за надоградњу није успела тако да је покренут процес за " "извештавање о грешци." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Набављање предуслова надоградње није успело" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Систем није могао да добави предуслове за надоградњу. Надоградња ће сада " "бити прекинута и биће враћено пређашње стање система.\n" "\n" "Уз ово, покренут је и процес за извештавање о грешци." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Ажурирам информације ризница" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Нисам успео да додам ЦД-РОМ" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Извините, додавање ЦД-РОМа није било успешно." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Неисправне информације пакета" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Након ажурирања података о пакетима, откривено је да основни пакет „%s“ " "недостаје. Узрок томе може бити то што немате званичне ризнице у вашим " "изворима програма или зато што је сервер који користите тренутно под већим " "оптерећењем. Погледајте „/etc/apt/sources.list“. Ту се налазе подаци о " "тренутно подешеним изворима програма.\n" "Уколико је проблем превелико оптерећење на серверу, покушајте надоградњу " "мало касније." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Добављам" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Надограђујем" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Надоградња је завршена" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Надоградња је завршена, али је било грешака током процеса надоградње." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Тражим застарели софтвер" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Надоградња система је завршена." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Делимична надоградња је завршена." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Не могу да пронађем белешке о издању" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Сервер је можда преоптерећен. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Не могу да преузмем белешке о издању" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Проверите вашу интернет везу." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "потврди идентитет „%(file)s“ за потпис „%(signature)s“ " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "извлачим „%s“" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Нисам могао да покренем алатку за надоградњу" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Ово је највероватније грешка у алатки за надограђивање. Поднесите извештај о " "овој грешци користећи наредбу „ubuntu-bug ubuntu-release-upgrader-core“ у " "терминалу." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Потпис алатке за надоградњу" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Алатка за надоградњу" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Добављање није успело" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Нисам успео да добавим надоградњу. Можда је проблем у мрежи. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Потврђивање идентитета није успело" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Нисам успео да потврдим идентитет. Можда је проблем са мрежом или сервером. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Распакивање није успело" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Нисам успео да распакујем надоградњу. Можда постоји проблем са мрежом или " "сервером. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Проверавање није успело" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Нисам успео да извршим проверу надоградње. Можда је проблем са мрежом или " "сервером. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Не могу да покренем надоградњу" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Ово је обично проузроковано системом када је „/tmp“ прикачен без могућности " "извршавања (noexec). Поново прикачите без „noexec“-а и покрените надоградњу " "опет." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Порука грешке је „%s“." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Надоградња" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Белешке о издању" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Преузимам додатне датотеке пакета..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Датотека број %s од укупно %s брзином %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Датотека број %s од укупно %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Молим убаците „%s“ у оптички уређај „%s“" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Промена медијума" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "„evms“ у употреби" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Ваш систем користи „evms“ управника волумена у „/proc/mounts“. Софтвер " "„evms“ више није подржан, молим искључите га и поново покрените надоградњу " "када то урадите." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Коришћење графичког окружења „јунити“ није у потпуности подржано за ваш " "хардвер. Највероватније да ћете имати веома спор систем након надоградње. " "Саветујемо вам да се за сада држите дугорочног (ЛТС) издања. Више података о " "овоме можете наћи на " "„https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D“. Да ли и " "даље желите да наставите са надоградњом?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Подршка за Интелову графичку картицу на дугорочном Убунту 12.04 (ЛТС) " "систему је ограничена и можете наићи на проблеме након надоградње. Више " "информација на „https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx“. " "Да ли желите да наставите са надоградњом?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Надоградња може смањити ефекте радне површине, перформансе игрица и других " "графички захтевних програма." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Овај рачунар тренутно користи НВИДИА „nvidia“ графички дајвер. Нема доступне " "верзије овог драјвера која ради са Вашом видео картицом у Убунту 10.04 LTS.\n" "\n" "Да ли желите да наставите?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Овај рачунар тренутно користи АМД „fglrx“ графички управљачки програм. Нема " "доступног издања овог управљачког програма која ради са вашом картицом у " "Убунту 10.04 ЛТС.\n" "\n" "Да ли желите да наставите?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Нема „i686“ процесора" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ваш систем користи „i586“ процесор или процесор који нема „cmov“ проширење. " "Сви пакети су саграђени са оптимизацијама захтевајући „i686“ као минималну " "архитектуру. Није могуће надоградити ваш систем на ново Убунту издање са " "овим хардвером." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Нема „ARMv6“ процесора" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ваш систем користи АРМ процесор који је старији од АРМв6 архитектуре. Сви " "пакети у кармику су саграђени са оптимизацијама захтевајући АРМв6 као " "минималну архитектуру. Није могуће надоградити ваш систем на ново Убунту " "издање са овим хардвером." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Инит није доступан" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Ваш систем изгледа да је виртуелизовано окружење без инит демона, нпр. " "Линукс-ВСервер. Убунту 10.04 LTS не може радити унутар оваквог окружења, " "захтевајући прво ажурирање подешавања ваше виртуелне машине.\n" "\n" "Да ли сте сигурни да желите на наставите?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Надоградња тестирања коришћењем „aufs“" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Потражи диск са пакетима за надоградњу на датој путањи" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Користи сучеље. Тренутно је доступно: \n" "„DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE“" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*ЗАСТАРЕЛО* ова опција ће бити занемарена" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Изврши само делимичну надоградњу (без преписивања „sources.list“ датотеке)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Онемогући подршку ГНУ екрана" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Подеси директоријум података" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Добављање је завршено" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Преузимам %li. датотеку од укупно %li брзином %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Око %s је преостало" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Добављам датотеку %li oд %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Примењујем измене" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "Проблем са међузависностима — остављам неподешено" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Не могу да инсталирам „%s“" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Надоградња ће се наставити али „%s“ пакет можда неће бити у радном стању. " "Размотирите подношење извештаја о грешци." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Да заменим прилагођену датотеку подешавања\n" "„%s“?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Изгубићете све измене које сте направили у овој датотеци подешавања ако " "одлучите да је замените новијом." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Нисам пронашао наредбу разлика — „diff“" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Дошло је до кобне грешке" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Пријавите ово као грешку (ако већ нисте) и укључите датотеке „/var/log/dist-" "upgrade/main.log“ и „/var/log/dist-upgrade/apt.log“ у ваш извештај. " "Надоградња је прекинута.\n" "Ваша оригинална датотека „sources.list“ је сачувана у " "„/etc/apt/sources.list.distUpgrade“." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Притиснули сте „Ктрл-ц“" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Ово ће прекинути операцију и може оставити систем у оштећеном стању. Да ли " "сте сигурни да желите то?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Да спречите губитак података затворите све активне програме и документа." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Каноникал не подржава више (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Разгради (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Уклони (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Више није потребно (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Инсталирај (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Надогради (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Прикажи разлике >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Сакриј разлике" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Грешка" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Затвори" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Прикажи терминал >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Сакриј терминал" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Информације" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Детаљи" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Није више подржан %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Уклони %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Уклони (беше аутоинсталиран) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Инсталирај %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Надогради %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Потребно је поновно покретање" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Поново покрените систем да довршите надоградњу" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Поново покрени _сада" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Да поништим текућу надоградњу?\n" "\n" "Систем би могао да буде у неупотребљивом стању ако поништите надоградњу. " "Препоручује вам се да наставите надоградњу." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Да поништим надоградњу?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li дан" msgstr[1] "%li дана" msgstr[2] "%li дана" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li сат" msgstr[1] "%li сата" msgstr[2] "%li сати" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li минут" msgstr[1] "%li минута" msgstr[2] "%li минута" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li секунда" msgstr[1] "%li секунде" msgstr[2] "%li секунди" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Ово преузимање ће „1Mbit DSL“ везом трајати око %s, а 56к модемом око %s." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Ово преузимање ће вашом везом трајати око %s. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Припремам надоградњу" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Набављам нове канале софтвера" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Набављам нове пакете" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Инсталирам надоградње" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Чистим" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d инсталирани пакет није више подржан од стране Каноникала. Али још " "увек можете добити подршку од заједнице." msgstr[1] "" "%(amount)d инсталирана пакета нису више подржана од стране Каноникала. Али " "још увек можете добити подршку од заједнице." msgstr[2] "" "%(amount)d инсталираних пакета није више подржано од стране Каноникала. Али " "још увек можете добити подршку од заједнице." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d пакет ће бити уклоњен." msgstr[1] "%d пакета ће бити уклоњена." msgstr[2] "%d пакета ће бити уклоњено." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d нови пакет ће бити инсталиран." msgstr[1] "%d нова пакета ће бити инсталирана." msgstr[2] "%d нових пакета ће бити инсталирано." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d пакет ће бити ажуриран." msgstr[1] "%d пакета ће бити ажурирана." msgstr[2] "%d пакета ће бити ажурирано." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "За преузимање имате укупно %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Инсталација надоградње може да потраје неколико сати. Након завршеног " "преузимања, процес не може бити отказан." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Довлачење и инсталација надоградње може да потраје неколико сати. Након " "завршеног преузимања, процес не може бити отказан." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Уклањање пакета може да потраје неколико сати. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Софтвер на овом рачунару је ажуриран." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Нема доступних надоградњи за ваш систем. Надоградња ће сада бити отказана." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Неопходно је поновно покретање" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Надоградња је завршена и неопходно је поново покренути рачунар. Да ли желите " "да то учините сада?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Молим пријавите ово као грешку и укључите датотеке „/var/log/dist-" "upgrade/main.log“ и „/var/log/dist-upgrade/apt.log“ у ваш извештај. " "Надоградња је прекинута.\n" "Ваша оригинална датотека „sources.list“ је сачувана у " "„/etc/apt/sources.list.distUpgrade“." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Прекидам" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Премештено:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Да наставите притисните [УНЕСИ]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Наставити [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Појединости [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Није више подржан: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Уклонити: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Инсталирати: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Надоградити: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Да наставим? [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Да би се надоградња завршила, потребно је поново покренути рачунар.\n" "Ако изаберете „y“ систем ће бити поново покренут." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "Преузимам %(current)li. датотеку oд укупно %(total)li брзином %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Преузимам %(current)li. датотеку oд укупно %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Прикажи напредак појединачних датотека" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Откажи надоградњу" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Настави надоградњу" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Да откажем започету надоградњу?\n" "\n" "Систем би могао да буде у неупотребљивом стању ако откажете надоградњу. " "Препоручује вам се да наставите надоградњу." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "За_почни надоградњу" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "За_мени" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Разлике између датотека" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Пријави грешку" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Настави" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Да започнем надоградњу?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Поново покрените систем да довршите надоградњу\n" "\n" "Сачувајте ваш рад пре него што наставите." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Надоградња дистрибуције" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Постављам нове канале софтвера" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Поново покрећем рачунар" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Терминал" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Надогради" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Доступно је ново издање Убунтуа. Да ли желите да надоградите?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Не надограђуј" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Питај ме касније" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Да, надогради сада" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Одбили сте да надоградите на ново издање Убунтуа" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Можете касније надоградити систем тако што ћете у ажурирању система изабрати " "„Надоградња“." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Изврши надоградњу издања" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Да надоградите Убунту, морате да потврдите идентитет" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Да извршите делимичну надоградњу, морате да потврдите идентитет." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Приказује издање и излази" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Приказује директоријум који садржи датотеке података" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Покреће назначеног челника" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Покреће делимичну надоградњу" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Преузима алат надоградње издања" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Проверава да ли је могуће надоградити на најновије развојно издање" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Пробајте са надоградњом на најновије издање коришћењем програма из „$distro-" "proposed“" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Покреће у посебном режиму надоградње.\n" "Тренутно су подржани „desktop“ за редовне надоградње радних станица и " "„server“ за системе сервера." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Тестира ажурирање помоћу „aufs“" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Проверава само да ли је доступно ново издање дистрибуције и извести о " "резултату путем излазног кода" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Проверавам за новим издањем Убунтуа" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Ваше издање Убунтуа више није подржано." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "За информације о надоградњи, посетите:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Нема нових издања" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Надоградња издања није тренутно могућа" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Надоградња издања тренутно не може бити извршена, покушајте касније. Сервер " "је известио: „%s“" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Доступно је ново издање „%s“." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Покрените наредбу „do-release-upgrade“ да надоградите на то издање." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Доступна је надоградња на Убунту %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Одбили сте надоградњу на Убунту %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Додај излаз прочишћавања" ubuntu-release-upgrader-0.220.10/po/ga.po0000644000000000000000000013023212431225715014741 0ustar # Irish translation for update-manager # Copyright (c) 2006 Rosetta Contributors and Canonical Ltd 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Irish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ga\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Pacáistí Briste" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/uz.po0000644000000000000000000013761212431225715015021 0ustar # Uzbek translation for update-manager # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2008. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 15:22+0000\n" "Last-Translator: Akmal Xushvaqov \n" "Language-Team: Uzbek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: uz\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s учун сервер" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Асосий сервер" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Бошқа серверлар" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list элементларини ҳисоблаб бўлмади." #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Пакет файллари жойлашган ерни аниқлаб бўлмади. Балки, у \"Ubuntu\" диски " "эмасдир ёки хато архитектура?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CD қўшишда хато" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD қўшишда хато юз берди, янгилаш бекор қилинди. Илтимос, агар Ubuntu CD " "яроқли бўлса, дастур носозлиги сифатида хабар беринг.\n" "\n" "Хато хабари:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Ёмон ҳолатдаги пакетни олиб ташлаш" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "'%s' пакети тўғри келмайдиган ҳолатда ва уни қайта ўрнатиш керак, аммо " "бунинг учун архив топилмади. Ҳозир давом этиш учун ушбу пакетни олиб " "ташлашни хоҳлайсизми?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Сервер қайта юкланган бўлиши мумкин" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Бузилган пакетлар" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Тизимингизда ушбу дастур билан тўғрилаб бўлмайдиган бузилган пакетлар бор. " "Давом этишдан олдин уларни \"synaptic\" дастури ёки apt-get буйруғидан " "фойдаланиб, тўғриланг." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Янгиланишлар чамаланаётганда ҳал этиб бўлмайдиган муаммо юз берди:\n" "%s\n" "\n" " Бунга қуйидагилар сабаб бўлган бўлиши мумкин:\n" " * Ubuntu'нинг янги релизидан олдинги версиясига янгилаш\n" " * Ubuntu'нинг жорий янги релизидан олдинги версиясисини ишга тушириш\n" " * Ubuntu томонидан рўйхатдан ўтмаган норасмий дастур пакетлари\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Бу вақтинчалик муаммо бўлиши мумкин, илтимос, сал кейинроқ қайтадан уриниб " "кўринг." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Янгилашни чамалаб бўлмади" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Баъзи пакетларни тасдиқдан ўтказишда хато" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Бир қанча пакетларни тасдиқдан ўтказиб бўлмади. Бунга сабаб тармоқдаги " "вақтинчалик муаммо бўлиши мумкин. Қуйида тасдиқдан ўтмаган пакетлар рўйхати " "келтирилган." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "'%s' пакети олиб ташлаш учун белгиланди, аммо у олиб ташлаш рўйхатида эмас." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "'%s' муҳим пакетлар ўчириш учун белгиланди." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Қора рўйхатга киритилган '%s' версиясини ўрнатишга уриниш" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s'ни ўрнатиб бўлмайди" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "meta-package'ни аниқлаб бўлмади" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Тизимингизда ubuntu-desktop, kubuntu-desktop, xubuntu-desktop ёки edubuntu-" "desktop пакетлари мавжуд эмас, шунинг учун Ubuntu'нинг қайси версиясидан " "фойдаланаётганлигингизни аниқлаб бўлмади.\n" "Аввал, \"synaptic\" дастуридан ёки apt-get буйруғидан фойдаланиб, юқоридаги " "пакетлардан бирини ўрнатинг." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Кэш ўқилмоқда" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Махсус қулфланишни олиб бўлмади" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Бу одатда бошқа пакет бошқарувчиси (apt-get ёки aptitude'га ўхшаган) " "аллақачон ишга туширилганлигини билдиради. Илтимос, аввал ўша дастурни ёпинг." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Масофавий уланиб янгилаш қўллаб-қуватланмайди." #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/tl.po0000644000000000000000000015211112431225715014771 0ustar # Tagalog translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Ariel S. Betan \n" "Language-Team: Tagalog \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: tl\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server para sa %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Pangunahing server" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Custom servers" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Hindi makalkula ang sources.list entry" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Hindi makita ang lokasyon ng alin mang files ng pakete, malamang na hindi " "ito isang Disc pang-Ubuntu o mali ang arkitektura?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Hindi naidagdag ang CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "May problema sa pagdagdag ng CD, ang upgrade ay hindi itutuloy. Paki-report " "ito bilang isang bug kung ito ay isang tunay na Ubuntu CD.\n" "\n" "Ang error message ay:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Tanggalin ang paketeng nasa di-mabuting katayuan" msgstr[1] "Tanggalin ang mga paketeng nasa di-mabuting katayuan" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Maaaring overloaded ang server" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Sirang mga pakete" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Ang iyong sistema ay nagtataglay ng mga sirang pakete na hindi maisasaayos " "ng software na ito. Mangyari lamang na ayusin muna ang mga ito sa " "pamamagitan ng synaptic o apt-get bago magpatuloy." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Malaki ang posibilidad na ito ay pansamantalang problema lamang, Mangyaring " "subukan sa muling pagkakataon." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Hindi matantiya ang laki ng upgrade" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Error sa pagtiyak na tama ang ilang mga pakete" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Hindi posibleng matiyak ang ilang mga pakete. Baka dulot ito ng isang " "pansamantalang problema sa network. Maari mong subukang muli mamaya. Tingnan " "sa ibaba ang listahan ng hindi matiyak na mga pakete." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Ang paketeng '%s' ay minarkahan upang tanggalin ngunit ito'y nasa blacklist " "ng mga tatanggalin." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Ang kailangang paketeng '%s' ay minarkahang tatanggalin." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Tinatangkang i-install ang blacklisted na bersyong '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Hindi ma-install '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Hindi malaman ang meta-pakete" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Ang iyong sistema ay hindi nagtataglay ng paketeng ubuntu-desktop, kubuntu-" "desktop, xubuntu-desktop o edubuntu-desktop at hindi posibleng malaman kung " "anong bersyon ng Ubuntu ang pinatatakbo.\n" " Pinakikiusap na mag-install muna ng isa sa mga nabanggit na pakete sa " "pamamagitan ng synaptic o apt-get bago magpatuloy." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Nagbabasa ng cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Hindi makuha ang exclusive lock" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Kadalasan, ang ibig-sabihin nito ay may iba pang package management " "application (tulad ng apt-get o aptitude) ang tumatakbo na. Paki-sara muna " "ang application na iyon." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Ang pag-upgrade para sa remote na koneksyon ay hindi suportado" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Ituloy ang pagpapatakbo sa ilalim ng SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Nagbubukas ng karagdagang sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Hindi ma-upgrade" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Ang pag-upgrade mula '%s' tungong '%s' ay hindi sinusuportahan ng tool na " "ito." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Bigo ang pag-setup ng Sandbox" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Hindi posible ang pag-likha ng sandbox environment" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Nasa modang Sandbox" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Ang python install ay nasira. Mangyari lamang na ayusin ang " "'/usr/bin/python' symlink." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Ang paketeng 'debsig-verify' ay naka-install" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Ang upgrade ay di maipagpatuloy dahil sa paketeng nakainstall.\n" "Mangyari lamang na tanggalin muna ito sa pamamagitan ng synaptic o 'apt-get " "remove debsig-verify' at patakbuhin muli." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Isama ang pinakabagong mga updates mula sa Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "disabled ang upgrade sa %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Walang makitang tamang mirror" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Lilikha ng default sources?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Hindi balido ang impormasyon sa sisidlan" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Hindi muna pinagana ang third party sources" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "May ilang third party entries sa iyong sources.list na naka-disable. Maaari " "mong i-re-enable sila pagkatapos ng upgrade sa: 'software-properties' tool o " "sa package manager." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paketeng wala sa maayos na kalagayan" msgstr[1] "Mga paketeng wala sa maayos na kalagayan" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Error habang nag-a-update" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Nagka-problema habang nag-a-update. Malimit na dulot ito ng isang problema " "sa network, pinakikiusap na suriin ang inyong network connection at subukang " "muli." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Hindi sapat ang libreng disk space" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Tinatantya ang mga pagbabago" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Gusto mo na bang simulan ang upgrade?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Kinansela ang upgrade" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Hindi ma-download ang mga upgrades" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Error sa pagtakda" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Ibinabalik sa orihinal na kalagayang sistema" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Hindi ma-install ang mga upgrades" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Tanggalin ang mga luma at hindi na kailangang pakete?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Itira" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Tanggalin" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "May problemang naganap habang naglilinis. Pinakikiusapang basahin ang " "mensahe sa ibaba para sa karagdagang impormasyon. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Kailangang depends ay hindi na install" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Ang kinakailangang dependency '%s' ay hindi naka-intall. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Sinusuri ang manager ng pakete" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Nabigo sa paghahanda ng upgrade" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Nabigo sa pagkuha ng mga pre-requisite pangupgrade" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Ina-update ang impormasyon ng sisidlan" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Hindi balidong impormasyon ng pakete" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Kinukuha" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Nag-a-upgrade" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Kumpleto na ang pag-upgrade" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Naghahanap ng luma at hindi na kailangang software" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Kumpleto na ang pagupgrade sa sistema" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Natapos na ang partial upgrade" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Hindi makita ang mga release notes" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Maaaring overloaded ang server. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Hindi ma-download ang mga release notes" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Mangyaring suriin ang inyong internet connection" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Hindi mapatakbo ang upgrade tool" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Signature ng upgrade tool" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Upgrade tool" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Bigo sa pag-fetch" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Bigo sa pag-fetch ng upgrade. Maaaring may problema sa network. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Bigo sa awtentikasyon." #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "Bigo sa awtentikasyon. Maaaring may problema sa network o server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Bigo sa pag-extract" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Bigo sa pag-extract ng upgrade. Maaaring may problema sa network o sa " "server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Bigo ang pag-beripika" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Tinitiyak na bigo ang upgrade. Maaaring may suliranin sa network o sa " "server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Hindi mapatakbo ang proseso ng pagbabago" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Ang mensahe ng pagkakamali ay '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "I-Upgrade" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Release Notes" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Kinukuha ang mga karagdagang files ng pakete" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "File %s ng %s sa %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "File %s ng %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Mangyari na ipasok ang '%s' sa drive '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Binagong Media" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms na gamit" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Maaaring mabawasan ang desktop effects, at performance ng mga games at iba " "pang graphically intensive programs." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Walang ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Walang init na available" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Upgrade ng Sandbox gamit ang aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Gamitin ang binigay na path para hanapin ang cdrom na may mga babaguhing " "pakete" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Gamitin ang frontend. Kasalukuyang maaaring gamitin: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Magsagawa ng partial upgrade lamang (walang muling pagsulat sa sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Itakda ang datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Ang pagkuha ay tapos na" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Kinukuha ang file %li ng %li sa %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Mga %s ang nalalabi" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Kinukuha file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Ina-aplay ang mga pagbabago" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problema sa dependensiya - iniwanang hindi nakaayos" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Hindi ma-install ang '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Magpapatuloy ang upgrade ngunit maaaring hindi gumagana ang '%s' package . " "Mangyaring mag-sumite ng bug report tungkol dito." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Palitan ang customized configuration file\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Mawawala ang mga pagbabagong ginawa mo sa configuration file na ito kapag " "pinili mong palitan ito ng bagong bersyon." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Hindi makita ang 'diff' command" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "isang matinding error ang naganap" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c napindot" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Ititigil nito ang operasyon at maaring iwan nito ang sistema sa isang di-" "maayos na estado. Talaga bang nais mong isagawa ito?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Upang maiwasan ang pagkawala ng data isara muna ang mga nakabukas na " "applications at dokumento." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Ipakita ang Kaibahan >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Itago Kaibahan" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Mali" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Isara" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Ipakita Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Itago Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Impormasyon" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Mga Detalye" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Tanggalin %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Tinanggal (dating auto installed) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "I-install ang %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "I-upgrade ang %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Nangangailangan ng pag-restart" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "I-restart ang sistema upang makumpleto ang pag-upgrade" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_I-restart Ngayon" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Itigil ang Upgrade" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li araw" msgstr[1] "%li mga araw" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li oras" msgstr[1] "%li mga oras" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuto" msgstr[1] "%li mga minuto" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li segundo" msgstr[1] "%li mga segundo" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Ang download na ito ay tatagal ng mga %s sa inyong connection. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Naghahanda para sa upgrade" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Kumkuha ng mga bagong software channels" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Kumukuha ng mga bagong pakete" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Nag-i-install ng mga upgrades" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Naglilinis" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakete ay tatanggalin." msgstr[1] "%d mga pakete ay tatanggalin." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d bagong pakete ang i-install." msgstr[1] "%d bagong mga pakete ang i-install." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakete ang i-upgrade." msgstr[1] "%d mga pakete ang i-upgrade." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Kailangang mag-download ng total na %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Wala pang upgrade na para sa inyong sistema. Ititigil na ang upgrade." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Nangangailangan ng pag reboot" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Natapos na ang pag-upgrade at nangangailangan ng pag-reboot. Gusto mo bang " "gawin na ito ngayon?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Hihinto" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Ibinaba:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Itutuloy [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Mga Detalye [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Tanggalin: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Install ang: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "I-upgrade ang: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Ipagpatuloy muli? [Oh] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Upang matapos ang upgrade, kinakailangang mag-restart.\n" "Kung pinili mo ang \"y\" ang sistema ay mag-re-restart." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Nagda-Download ng file %(current)li ng %(total)li ng may %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Nagda-Download ng file %(current)li ng %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Ipakita ang progreso ng bawat files" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Itigil ang Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Ipagpatuloy ang Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Kanselahin ang kasalukuyang pag-a-upgrade?\n" "\n" "Maaaring hindi gumana ang sistema kung kakanselahin ang upgrade. Mariing " "ipinapayo na ipagpatuloy ang upgrade." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Simulan ang Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Palitan" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Pagkakaiba sa pagitan ng mga files" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Ipagbigay alam ang Bug" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Ituloy" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Simulan ang upgrade?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "PagUpgrade ng Distribution" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Binabago ang mga software channels" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Ini-rerestart ang kompyuter" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Upgrade" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Mayroong bagong bersyon ng Ubuntu. Nais mo bang mag-upgrade?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Huwag mag-Upgrade" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Tanungin mo ako mamaya" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Oo, mag-Upgrade ka na ngayon" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Hindi mo tinanggap ang alok na na mag-upgrade sa bagong Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Ipakita ang bersyon at tapusin na" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Direktoryo na naglalaman ng mga data files" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Patakbuhin ang piniling frontend" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Tumatakbong bahagiang upgrade" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Dina-download ang release upgrade tool" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Tignan kung ang pag-upgrade sa pinakabagong devel release ay maaari" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Subukang mag-upgrade sa pinakabagong release gamit ang upgrader mula $distro-" "proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Patakbuhin sa isang espesyal na moda.\n" "Kasalukuyang 'desktop' para sa mga regular na upgrades ng isang sistemang " "desktop at 'server' para sa sistemang server na suportado." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Walang nakitang bagong release" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Mayroon ng bagong release '%s'." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" "Patakbuhin ang 'do-release-upgrade' upang mag-upgrade patungo sa dito." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Mayroong Ubuntu %(version)s Upgrade" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/en_CA.po0000644000000000000000000017400512431225715015325 0ustar # Canadian English translation for update-manager # Copyright (C) 2005 Adam Weinberger and the GNOME Foundation # This file is distributed under the same licence as the update-manager package. # Adam Weinberger , 2005. # # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Daniel LeBlanc \n" "Language-Team: Canadian English \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:54+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Main server" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Custom servers" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Could not calculate sources.list entry" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Failed to add the CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Remove package in bad state" msgstr[1] "Remove packages in bad state" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgstr[1] "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "The server may be overloaded" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Broken packages" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "This is most likely a transient problem. Please try again later." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Could not calculate the upgrade" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Error authenticating some packages" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "The package '%s' is marked for removal but it is in the removal blacklist." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "The essential package '%s' is marked for removal." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Trying to install blacklisted version '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Can't install '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Reading cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Unable to get exclusive lock" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Upgrading over remote connection not supported" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Continue running under SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Starting additional sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh, you can " "still connect to the additional one.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Cannot upgrade" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "An upgrade from '%s' to '%s' is not supported with this tool." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandbox setup failed" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "It was not possible to create the sandbox environment." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox mode" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Package 'debsig-verify' is installed" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Can not write to '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Include latest updates from the Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "The upgrade system can use the Internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection, this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up-to-date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "disabled on upgrade to %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "No valid mirror found" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run an internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Generate default sources?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Repository information invalid" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Third party sources disabled" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Package in inconsistent state" msgstr[1] "Packages in inconsistent state" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgstr[1] "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Error during update" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Not enough free disk space" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Calculating the changes" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Do you want to start the upgrade?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Upgrade canceled" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Could not download the upgrades" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Error during commit" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Restoring original system state" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Could not install the upgrades" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Remove obsolete packages?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Keep" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Remove" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "A problem occurred during the clean-up. Please see the below message for " "more information. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Required depends is not installed" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "The required dependency '%s' is not installed. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Checking package manager" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Preparing the upgrade failed" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Getting upgrade prerequisites failed" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Updating repository information" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Failed to add the cdrom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Sorry, adding the cdrom was not successful." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Invalid package information" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Fetching" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Upgrading" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Upgrade complete" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "The upgrade has completed but there were errors during the upgrade process." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Searching for obsolete software" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "System upgrade is complete." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "The partial upgrade was completed." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Could not find the release notes" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "The server may be overloaded. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Could not download the release notes" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Please check your internet connection." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "authenticate '%(file)s' against '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "extracting '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Could not run the upgrade tool" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Upgrade tool signature" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Upgrade tool" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Failed to fetch" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Fetching the upgrade failed. There may be a network problem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Authentication failed" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Failed to extract" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verification failed" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Can not run the upgrade" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "The error message is '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Upgrade" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Release Notes" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Downloading additional package files..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "File %s of %s at %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "File %s of %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Please insert '%s' into the drive '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Media Change" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms in use" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "Your graphics hardware may not be fully supported in Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Upgrading may reduce desktop effects and performance in games and other " "graphically-intensive programs." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "No i686 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "No ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "No init available" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandbox upgrade using aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Use the given path to search for a cdrom with upgradable packages" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*DEPRECATED* this option will be ignored" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Perform a partial upgrade only (no sources.list rewriting)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Disable GNU screen support" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Set datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Fetching is complete" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Fetching file %li of %li at %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "About %s remaining" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Fetching file %li of %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Applying changes" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "dependency problems - leaving unconfigured" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Could not install '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Replace the customized configuration file\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "The 'diff' command was not found" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "A fatal error occurred" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c pressed" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "To prevent data loss close all open applications and documents." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "No longer supported by Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Downgrade (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Remove (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "No longer needed (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Install (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Upgrade (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Show Difference >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Hide Difference" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Error" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Close" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Show Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Hide Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Information" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Details" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "No longer supported %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Remove %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Remove (was auto installed) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Install %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Restart required" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Restart the system to complete the upgrade" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Restart Now" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Cancel Upgrade?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li day" msgstr[1] "%li days" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hour" msgstr[1] "%li hours" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minute" msgstr[1] "%li minutes" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li second" msgstr[1] "%li seconds" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "This download will take about %s with your connection. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Preparing to upgrade" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Getting new software channels" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Getting new packages" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installing the upgrades" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Cleaning up" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgstr[1] "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d package is going to be removed." msgstr[1] "%d packages are going to be removed." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d new package is going to be installed." msgstr[1] "%d new packages are going to be installed." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d package is going to be upgraded." msgstr[1] "%d packages are going to be upgraded." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "You have to download a total of %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Removing the packages can take several hours. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "The software on this computer is up to date." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "There are no upgrades available for your system. The upgrade will now be " "canceled." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Reboot required" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "The upgrade is finished and a reboot is required. Do you want to do this now?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Aborting" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Demoted:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "To continue please press [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Continue [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Details [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "No longer supported: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Remove: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Install: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Upgrade: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continue [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Downloading file %(current)li of %(total)li with %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Downloading file %(current)li of %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Show progress of individual files" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Cancel Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Resume Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Start Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Replace" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Difference between the files" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Report Bug" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continue" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Start the upgrade?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Distribution Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Upgrading Ubuntu to version 13.10" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Setting new software channels" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Restarting the computer" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Upgrade" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "A new version of Ubuntu is available. Would you like to upgrade?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Don't Upgrade" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Ask Me Later" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Yes, Upgrade Now" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "You have declined to upgrade to the new Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Perform a release upgrade" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "To upgrade Ubuntu, you need to authenticate." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Perform a partial upgrade" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "To perform a partial upgrade, you need to authenticate." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Show version and exit" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Directory that contains the data files" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Run the specified frontend" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Running partial upgrade" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Downloading the release upgrade tool" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Check if upgrading to the latest devel release is possible" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Try upgrading to the latest release using the upgrader from $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Test upgrade with a sandbox aufs overlay" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Check only if a new distribution release is available and report the result " "via the exit code" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Checking for a new Ubuntu release" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Your Ubuntu release is not supported anymore." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "For upgrade information, please visit:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "No new release found" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Release upgrade not possible right now" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "New release '%s' available." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Run 'do-release-upgrade' to upgrade to it." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s Upgrade Available" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "You have declined the upgrade to Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Add debug output" ubuntu-release-upgrader-0.220.10/po/hu.po0000644000000000000000000020212412431225715014766 0ustar # Hungarian translation of update-manager # This file is distributed under the same license as the update-manager package. # Copyright (C) 2005, Free Software Foundation, Inc. # Gabor Kelemen , 2005. # msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:43+0000\n" "Last-Translator: Gabor Kelemen \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: hu\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Kiszolgáló a következőhöz: %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Fő kiszolgáló" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Egyéni kiszolgálók" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Nem határozható meg a sources.list bejegyzés" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Egyetlen csomagfájl sem található! Lehet, hogy nem Ubuntu lemezt, vagy más " "architektúrához tartozót helyezett a meghajtóba." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "A CD hozzáadása meghiúsult" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Hiba történt a CD hozzáadása során, a frissítés félbeszakad. Jelentse ezt " "hibaként, ha ez egy érvényes Ubuntu CD.\n" "\n" "A hibaüzenet:\n" "„%s”" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Hibás állapotban levő csomag eltávolítása" msgstr[1] "Hibás állapotban levő csomagok eltávolítása" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "A(z) „%s” nevű csomag hibás! Újratelepítése szükséges, azonban nem található " "hozzá megfelelő archívum. El kívánja távolítani ezt a csomagot a " "folytatáshoz?" msgstr[1] "" "A(z) „%s” nevű csomagok hibásak! Újratelepítésük szükséges, azonban nem " "található hozzájuk megfelelő archívum. El kívánja távolítani ezeket a " "csomagokat a folytatáshoz?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Lehet, hogy a kiszolgáló túlterhelt" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Törött csomagok" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "A rendszere törött csomagokat tartalmaz, amelyek ezzel az alkalmazással nem " "javíthatóak. Kérem, először javítsa ki őket a synaptic vagy az apt-get " "segítségével." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Megoldhatatlan probléma adódott a frissítés előkészítése közben:\n" "%s\n" "\n" " Ezt az alábbiak okozhatták:\n" " * frissítés egy kiadás előtti Ubuntu verzióra\n" " * Ön jelenleg egy kiadás előtti Ubuntu verziót használ\n" " * az Ubuntu által nem támogatott csomagok\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Ez valószínűleg átmeneti probléma, próbálkozzon később." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Ha a felsoroltak egyike sem áll fenn, akkor jelentse ezt a hibát a " "terminálban kiadott „ubuntu-bug ubuntu-release-upgrader-core” paranccsal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "A frissítés előkészítése sikertelen" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Hiba történt néhány csomag hitelesítése közben" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Néhány csomagot nem sikerült hitelesíteni. Lehetséges, hogy ezt átmeneti " "hálózati probléma okozza, ezért érdemes később újra megpróbálni. Az alábbi " "felsorolás a hitelesíthetetlen csomagokat tartalmazza." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "A(z) „%s” nevű csomagot eltávolításra jelölte ki, de ez rajta van az " "eltávolítási feketelistán." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "A létfontosságú „%s” csomagot eltávolításra jelölte ki." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Kísérlet a feketelistára tett „%s” verzió telepítésére" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "„%s” nem telepíthető" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Az igényelt csomag telepítése lehetetlen volt. Jelentse ezt a hibát a " "terminálban kiadott „ubuntu-bug ubuntu-release-upgrader-core” paranccsal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "A meta-csomag megállapítása sikertelen" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "A rendszere nem tartalmazza az ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop vagy edubuntu-desktop csomagok egyikét sem, és nem lehetett " "megállapítani, hogy az Ubuntu mely változatát használja.\n" " A folytatás előtt telepítse a fenti csomagok egyikét a synaptic vagy az apt-" "get használatával." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Gyorsítótár beolvasása" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "A kizárolagos zárolás nem lehetséges" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Ez általában azt jelenti, hogy már fut egy másik csomagkezelő alkalmazás " "(például apt-get vagy aptitude). Kérem először zárja be azt az alkalmazást." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "A frissítés nem támogatott távoli kapcsolaton keresztül" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Távoli SSH-kapcsolaton keresztül futtatja a frissítést olyan felület " "használatával, amely nem támogatja ezt. Próbálja meg szöveges módban " "végrehajtani a frissítést a „do-release-upgrade” parancs segítségével.\n" "\n" "A frissítés most megszakad. Próbálja SSH nélkül." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Folytatja a futtatást SSH alatt?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Úgy tűnik, ez a munkamenet SSH alatt fut. Jelenleg nem ajánlott, hogy SSH " "kapcsolaton keresztül hajtsa végre a frissítést, ugyanis hiba esetén így " "nehezebb a helyreállítás.\n" "\n" "Ha folytatja, egy újabb SSH-démon indul az alábbi porton: %s.\n" "Szeretné folytatni?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Új sshd indítása" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "A hiba esetén történő helyreállítás megkönnyítése érdekében egy újabb sshd " "indul a(z) %s porton. Ha bármiféle probléma lép fel az aktuális SSH futása " "során, Ön továbbra is kapcsolódni tud majd a másik segítségével.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Ha tűzfalat használ, akkor lehetséges, hogy ideiglenesen szükséges megnyitni " "ezt a portot. Mivel a port megnyitása lehetséges veszélyforrás, nem " "történik automatikusan. A port megnyitható például a következő módon:\n" "„%s”" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Nem lehet frissíteni" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Ez az eszköz nem támogatja a frissítést „%s” rendszerről „%s” rendszerre." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "A tesztkörnyezet beállítása meghiúsult" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Nem sikerült létrehozni a tesztkörnyezetet." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Teszt mód" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Ez a frissítés sandbox (teszt) módban fut. A(z) „%s” összes változása el fog " "veszni a következő újraindításnál.\n" "\n" "A mostantól a következő újraindításig a rendszerkönyvtárakban történő " "változások *nem* lesznek állandó érvényűek." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "A Python telepítése sérült. Javítsa ki a „/usr/bin/python” szimbolikus " "linket." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "A „debsig-verify” csomag telepítve van" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "A frissítés nem folytatódhat, ha ez a csomag telepítve van.\n" "Távolítsa el a Synaptic vagy az „apt-get remove debsig-verify” parancs " "kiadásával és futtassa újra a frissítést." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "%s nem írható" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "A(z) „%s” rendszerkönyvtár nem írható. A frissítés nem folytatódhat.\n" "Biztosítsa a rendszerkönyvtár írhatóságát." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Használja az interneten elérhető legújabb frissítéseket?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "A frissítőrendszer használhatja az internetet a legújabb frissítések " "letöltéséhez és telepítheti azokat a frissítés közben. Ha rendelkezik " "internetkapcsolattal, ez a beállítás erősen ajánlott.\n" "\n" "A frissítés hosszabb ideig is eltarthat, a folyamat végeztével a rendszere " "teljesen naprakész lesz. Választhatja e funkció mellőzését is, azonban " "ajánlott a legújabb frissítések telepítését elvégezni a rendszerfrissítés " "után nem sokkal.\n" "Ha a „Nem”-et választja, a telepítő nem fogja használni internetkapcsolatát." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "letiltva a(z) %s változatra frissítéskor" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nem található érvényes tükör" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "A tárolóinformációk elemzése során a program nem talált tükörbejegyzést a " "frissítéshez. Ez akkor fordulhat elő, ha belső tükröt használ, vagy a " "tükörinformációk elavultak.\n" "\n" "Mindenképpen újra kívánja írni a sources.list fájlt? Ha az „Igen” gombot " "választja, akkor az összes „%s” bejegyzés „%s” bejegyzéssé lesz frissítve. A " "„Nem” kiválasztása megszakítja a frissítést." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Alapértelmezett források ismételt előállítása?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "A „sources.list” átnézése után sem található érvényes bejegyzés a " "következőről: %s.\n" "\n" "Hozzáadja az alap bejegyzéseket a következőhöz: „%s”? A „Nem” kiválasztása " "megszakítja a frissítést." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Érvénytelen tárolóinformációk" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "A tároló frissítése érvénytelen fájlt eredményezett, ezért most elindul egy " "hibajelentési folyamat." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "A külső források letiltva" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "A sources.list néhány harmadik féltől származó forrása le lett tiltva. A " "frissítés után újraengedélyezheti őket a Szoftverforrások eszközzel, vagy a " "csomagkezelővel." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Nem konzisztens állapotú csomag" msgstr[1] "Nem konzisztens állapotú csomagok" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "A(z) „%s” nevű csomag hibás! Újratelepítése szükséges, azonban nem található " "hozzá megfelelő archívum. Telepítse újra a csomagot saját kezűleg, vagy " "távolítsa el a rendszerről." msgstr[1] "" "A(z) „%s” nevű csomagok hibásak! Újratelepítésük szükséges, azonban nem " "található hozzájuk megfelelő archívum. Telepítse újra a csomagot saját " "kezűleg, vagy távolítsa el a rendszerről." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Hiba történt a frissítés közben" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Hiba lépett fel a frissítés közben. Ez többnyire hálózati problémára utal. " "Kérem, ellenőrizze a hálózati kapcsolatot és próbálja újra." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Nincs elég szabad hely a merevlemezen" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "A frissítés megszakadt. A frissítéshez %s szabad hely szükséges a(z) „%s” " "lemezen. Szabadítson fel további %s lemezterületet a(z) „%s” eszközön. " "Ürítse a Kukát és törölje a korábbi telepítések átmeneti fájljait a „sudo " "apt-get clean” parancs kiadásával." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Módosítások előkészítése" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Biztosan el szeretné kezdeni a frissítést?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Frissítés megszakítva" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "A frissítés visszavonásra kerül, és az eredeti rendszerállapot lesz " "visszaállítva. A frissítést később lehet folytatni." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "A frissítések nem tölthetők le" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "A frissítés félbeszakadt. Kérjük ellenőrizze internet kapcsolatát vagy a " "telepítő adathordozót, és próbálja újra. Az eddig letöltött fájlok " "megmaradnak." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Hiba a módosítások rögzítése közben" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "A rendszer eredeti állapotának helyreállítása" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "A frissítések nem telepíthetők" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "A frissítés megszakadt. A rendszer használhatatlan állapotban lehet. A " "helyreállítás azonnal indul (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Jelentse ezt a hibát böngészőben a " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "címre, és csatolja a fájlokat a /var/log/dist-upgrade/ mappából.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "A frissítés megszakadt. Ellenőrizze az internetkapcsolatát vagy a telepítési " "adathordozót, és próbálja újra. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Eltávolítja az elavult csomagokat?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Megtartás" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Eltávolítás" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "A frissítés befejező fázisa közben hiba lépett fel. Az alábbi üzenet további " "információkat tartalmaz a hibára vonatkozóan. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "A szükséges függőségek nincsenek telepítve" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "A következő függőség nincs telepítve: %s. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Csomagkezelő ellenőrzése" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "A frissítés előkészítése meghiúsult" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "A rendszer előkészítése a frissítésre sikertelen, emiatt elindul egy " "hibajelentési folyamat." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "A frissítés előfeltételeinek lekérése meghiúsult" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "A rendszer nem volt képes a frissítés előfeltételeinek lekérésére. A " "frissítés ezért most megszakad, és a rendszer eredeti állapotába áll " "vissza.\n" "\n" "Ezen kívül elindul egy hibajelentési folyamat is." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Tárolóinformációk frissítése" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Nem sikerült a CD-ROM hozzáadása" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Elnézést, a CD-ROM hozzáadása sikertelen." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Érvénytelen csomaginformációk" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Letöltés" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Frissítés" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "A frissítés befejeződött" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "A frissítés befejeződött, de hibák történtek a frissítési folyamat alatt." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Elavult szoftverek keresése" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "A rendszer frissítése befejeződött." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Az intelligens frissítés sikeresen befejeződött." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Nem érhetők el a kiadási megjegyzések" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "A kiszolgáló túl lehet terhelve. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "A kiadási megjegyzések nem tölthetők le" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Kérjük ellenőrizze az internetkapcsolatát." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "„%(file)s” hitelesítése ezzel: „%(signature)s” " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "„%s” kicsomagolása" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Nem sikerült futtatni a frissítőeszközt" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Ez valószínűleg egy hiba a frissítési eszközben. Jelentse a hibát az „ubuntu-" "bug ubuntu-release-upgrader-core” paranccsal." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Frissítőeszköz aláírása" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Frissítőeszköz" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "A letöltés meghiúsult" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "A frissítés letöltése meghiúsult. Lehetséges, hogy hálózati probléma áll " "fenn. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Hitelesítés sikertelen" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "A frissítés hitelesítése meghiúsult. Probléma lehet a hálózattal vagy a " "kiszolgálóval. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "A kibontás meghiúsult" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "A frissítés kibontása meghiúsult. Probléma lehet a hálózattal vagy a " "kiszolgálóval. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Az ellenőrzés meghiúsult" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "A frissítés ellenőrzése meghiúsult. Probléma lehet a hálózattal vagy a " "kiszolgálóval. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "A frissítés nem futtatható!" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Ez a hiba általában akkor jön elő, ha a /tmp mappa noexec kapcsolóval van " "felcsatolva. Kérjük csatolja újra nooexec kapcsolóval, majd próbálja újból a " "frissítést." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "A hibaüzenet: „%s”." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Frissítés" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Kiadási megjegyzések" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "További csomagfájlok letöltése..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "%s. fájl, összesen %s. Sebesség: %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "%s. fájl, összesen %s." #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Helyezze be a(z) „%s” adathordozót a(z) „%s” meghajtóba." #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Adathordozó-csere" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "Az evms használatban van" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "A rendszer az „evms” kötetkezelőt használja a /proc/mounts alatt. Az „evms” " "szoftver már nem támogatott, kapcsolja ki és futtassa újra a frissítést." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Az Ön grafikus hardvere nem támogatja teljesen a „unity” asztali környezet " "futtatását. Várhatóan a frissítés után nagyon lassú környezetet fog kapni. " "Azt tanácsoljuk, most még tartsa meg az LTS változatot. További " "információért látogassa meg a " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D oldalt. Még " "így is szeretné folytatni a frissítést?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Videokártyája nem biztos, hogy teljesen támogatott lesz Ubuntu 12.04 LTS " "alatt." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Az Ubuntu 12.04 LTS támogatása az Intel videokártyájához korlátozott, és " "problémákba ütközhet a frissítés után. További információkért olvassa el a " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx oldalt. Folytatni " "szeretné a frissítést?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "A frissítés visszafoghatja a vizuális effektusokat, a játékok és a sok " "grafikai számítást igénylő alkalmazások teljesítményét." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Ez a számítógép jelenleg az NVIDIA „nvidia” grafikus meghajtóját használja. " "Ennek a meghajtónak nem érhető el a videokártyáját az Ubuntu 10.04 LTS alatt " "kezelni képes verziója.\n" "\n" "Biztosan folytatja?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Ez a számítógép jelenleg az AMD „fglrx” grafikus meghajtóját használja. " "Ennek a meghajtónak nem érhető el a hardverét az Ubuntu 10.04 LTS alatt " "kezelni képes verziója.\n" "\n" "Biztosan folytatja?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Nem i686-os CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "A rendszere i586-os CPU-t, vagy a „cmov” kiterjesztéssel nem rendelkező CPU-" "t használ. Minden csomag a minimális architektúraként az i686-ot megkövetelő " "optimalizációkkal készült. Rendszere ezzel a hardverrel nem frissíthető új " "Ubuntu kiadásra." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Nem ARMv6 processzor" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "A számítógépe ARMv6-nál régebbi ARM architektúrájú processzorral " "rendelkezik. A Karmicban minden csomag legalább ARMv6-ot igénylő " "optimalizációkkal készült. Ezen a hardveren nem frissíthető a rendszer új " "Ubuntu kiadásra." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Nem érhető el init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Úgy tűnik, hogy a rendszere egy virtualizált környezet init démon nélkül, " "például Linux-VServer. Az Ubuntu 10.04 nem képes működni ebben a " "környezetben, előbb frissítenie kell a virtuális gép beállításait.\n" "\n" "Biztosan folytatja?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Tesztfrissítés aufs használatával" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "A megadott útvonalat használja frissíthető csomagokat tartalmazó CD lemez " "kereséséhez" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Használja a kezelőfelületet. Jelenleg elérhető: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*IDEJÉTMÚLT * ez az opció figyelmen kívül lesz hagyva" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Csak intelligens frissítés végrehajtása (nem írja újra a sources.list fájlt)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU Screen támogatás kikapcsolása" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Adatkönyvtár beállítása" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "A letöltés befejeződött" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Fájl letöltése: %li / %li, (%sB/s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Kb. %s van hátra" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "%li. fájl letöltése (összesen: %li)" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Módosítások alkalmazása" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "függőségi hibák - a csomag beállítatlan maradt" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "„%s” nem telepíthető" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "A frissítés folytatódik, de a(z) „%s” csomag működésképtelen állapotban " "lehet. Ezzel kapcsolatban küldjön be hibajelentést." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Lecseréli a személyre szabott\n" "„%s”\n" "konfigurációs fájlt?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "A beállítófájl összes módosítása elvész, ha lecseréli az újabb verzióra." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "A „diff” parancs nem található" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Végzetes hiba történt" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Jelentse ezt a hibát (ha eddig még nem tette volna) és csatolja a " "/var/log/dist-upgrade/main.log és /var/log/dist-upgrade/apt.log nevű " "fájlokat. A frissítés megszakadt. Az eredeti sources.list " "/etc/apt/sources.list.distUpgrade néven került mentésre." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl+C billentyűkombináció lenyomva" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Ez megszakítja a műveletet, és törött állapotban hagyhatja a rendszert. " "Biztos, hogy ezt akarja tenni?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Az esetleges adatvesztés elkerülése érdekében zárjon be minden nyitott " "alkalmazást és dokumentumot." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "A Canonical már nem támogatja (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Visszafejlesztendő (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Eltávolítandó (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Már nem szükséges (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Telepítendő (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Frissítendő (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Különbség megjelenítése >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Különbség elrejtése" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Hiba" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Bezárás" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Terminál megjelenítése >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Terminál elrejtése" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Információ" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Részletek" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Már nem támogatott: %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s eltávolítása" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "%s eltávolítása (automatikusan telepített)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s telepítése" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s frissítése" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Újraindítás szükséges" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Indítsa újra a rendszert a frissítés befejezéséhez" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Újrain_dítás most" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Megszakítja a frissítést?\n" "\n" "Lehet, hogy a rendszer használhatatlanná válik, ha most megszakítja a " "frissítést. Erősen ajánlott a frissítés folytatása!" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Megszakítja a frissítést?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li nap" msgstr[1] "%li nap" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li óra" msgstr[1] "%li óra" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li perc" msgstr[1] "%li perc" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li másodperc" msgstr[1] "%li másodperc" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "A letöltés körülbelül %s alatt fejeződik be 1 megabites DSL kapcsolaton, és " "%s alatt 56k-s modem használatával." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "A letöltés körülbelül %s alatt fejeződik be ezen a kapcsolaton. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Felkészülés a frissítésre" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Új szoftvercsatornák lekérése" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Új csomagok letöltése" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "A frissítések telepítése" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Frissítés befejezése" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d szoftvercsomagot a Canonical már nem támogat. A közösségtől " "továbbra is kaphat támogatást." msgstr[1] "" "%(amount)d szoftvercsomagot a Canonical már nem támogat. A közösségtől " "továbbra is kaphat támogatást." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d csomag el lesz távolítva." msgstr[1] "%d csomag el lesz távolítva." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d új csomag lesz telepítve." msgstr[1] "%d új csomag lesz telepítve." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d csomag lesz frissítve." msgstr[1] "%d csomag lesz frissítve." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Összes letöltendő adatmennyiség: %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "A frissítések telepítése órákat vehet igénybe. Ha a letöltés befejeződött, a " "folyamat már nem állítható meg." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "A frissítések letöltése és telepítése órákat vehet igénybe. Ha a letöltés " "befejeződött, a folyamat már nem állítható meg." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "A csomagok eltávolítása órákig is eltarthat. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "A szoftverek a számítógépen naprakészek." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Nem állnak rendelkezésre frissítések a rendszeréhez. A frissítés most " "megszakad." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Újraindítás szükséges" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "A frissítés elkészült, de a befejezéshez újra kell indítani a rendszert. " "Újraindítja most?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Jelentse ezt hibaként és a hibajelentéshez mellékelje a /var/log/dist-" "upgrade/main.log és /var/log/dist-upgrade/apt.log fájlokat. A frissítés " "megszakadt. Az eredeti sources.list /etc/apt/sources.list.distUpgrade néven " "került mentésre." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Megszakítás" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Lefokozott:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "A folytatáshoz nyomja meg az [ENTER] billentyűt" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Folytatja? [i/N] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Részletek [r]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "i" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "r" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Már nem támogatott: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Eltávolítandó: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Telepítendő: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Frissítendő: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Folytatja? [I/n] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "A frissítés befejezéséhez a rendszer újraindítása szükséges. \n" "Az „i” választása esetén a rendszer újraindul." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "%(current)li. fájl letöltése, összesen: %(total)li, sebesség: %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "%(current)li. fájl letöltése, összesen: %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Egyes fájlok állapotának mutatása" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "Frissítés _megszakítása" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Frissítés _folytatása" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Megszakítja a folyamatban lévő frissítést?\n" "\n" "A rendszer használhatatlan állapotban maradhat, ha megszakítja a frissítést. " "Erősen javasoljuk, hogy folytassa a frissítést." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "Frissítés _indítása" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Csere" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Fájlok közti különbség" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Hibabejelentés" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Folytatás" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Megkezdi a frissítést?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "A frissítés befejezéséhez újraindítás szükséges\n" "\n" "Kérem, mentse el munkáját mielőtt folytatná!" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Disztribúciófrissítés" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Új szoftvercsatornák beállítása" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "A számítógép újraindítása" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminál" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Frissítés" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Elérhető az Ubuntu egy új változata. Szeretné frissíteni?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Ne frissítse" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Kérdezzen rá később" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Igen, frissítse most" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Ön elutasította az Ubuntu új változatára történő frissítést." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Később is frissíthet a Frissítéskezelő megnyitásával, majd a „Frissítés” " "gombra kattintva." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Kiadásfrissítés végrehajtása" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "A frissítéshez hitelesítés szükséges." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Részleges frissítés végrehajtása" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Részleges frissítés elvégzéséhez hitelesítés szükséges." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Verziószám kiírása és kilépés" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Az adatfájlokat tartalmazó könyvtár" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "A megadott előtét futtatása" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Intelligens frissítés futtatása" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "A kiadásfrissítő eszköz letöltése" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Ellenőrzi, hogy lehetséges-e frissíteni a legújabb fejlesztői kiadásra" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Kísérlet a legfrissebb kiadásra való áttérésre $distro-proposed kiadásról a " "frissítő használatával" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Futtatás speciális frissítő módban.\n" "Jelenleg a „desktop” (asztali rendszerek szabályos frissítése) és a „server” " "(kiszolgálórendszerek frissítése) módok támogatottak." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Tesztfrissítés tesztkörnyezetben aufs használatával" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Csak akkor ellenőrizze, ha egy új kiadás elérhetővé válik, az eredményt " "jelenítse meg a kimeneti értékben" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Új Ubuntu kiadás keresése" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Az Ön Ubuntu kiadása már nem támogatott." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Frissítési információkért lásd:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Nem található új kiadás" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "A kiadás frissítése most nem lehetséges" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "A kiadás frissítése jelenleg nem hajtható végre, próbálja újra később. A " "kiszolgáló üzenete: „%s”" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Elérhető az új „%s” kiadás." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "A frissítéshez futassa a „do-release-upgrade” parancsot." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s frissítés érhető el" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Ön elutasította az Ubuntu %s kiadásra történő frissítést" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Hibakeresési kimenet hozzáadása" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "A kiadásfrissítéshez hitelesítés szükséges" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Hitelesítés szükséges a részleges kiadásfrissítéshez" ubuntu-release-upgrader-0.220.10/po/bo.po0000644000000000000000000023215512431225715014761 0ustar # Tibetan translation for update-manager # Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Tibetan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: bo\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s ཡི་ཞབས་ཞུ་བ" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "ཞབས་ཞུ་བ་གཙོ་བོ" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "རང་བཟོས་ཞབས་ཞུ་བ" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "གཏེར་མཛོད་གྲངས་ཐོ་བརྩི་མི་ཐུབ" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "ཡིག་ཆ་ཐུམ་བུ་གནས་སྟོན་ཐུབ་མི་འདུག " "འདི་ཕལ་ཆེར་མ་ལག་Ubuntu་མཛོད་སྡེར་རེད་མི་འདུག་ཡང་ན་སྒྲིག་བཟོ་ " "ཡང་དག་པ་རེད་མི་འདུག" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "་་CD་་འོད་སྡེར་ནང་ཚན་ཁ་སྣོན་ཐུབ་མ་བྱུང་།" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "་་CD་་འོད་སྡེར་ནང་ཚན་ཁ་སྣོན་དུས་སྐྱོན་བྱུང་སོང་། རིམ་སྤར་མཚམས་བཅད་ངེས། " "འདི་གལ་སྲིད་ནུས་ལྡན་གྱི་མ་ལག་Ubuntu " "་་CD་་སྒྲིག་སྡེར་ཡིན་ན་སྐྱོན་འདིའི་སྐོར་ཡ་ལན་སྤྲོད་རོགས\n" "\n" "ནོར་འཁྲུལ་ཡི་གེ་ནི། \n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "སྐྱོན་ཅན་གྱི་ཐུམ་བུ་བསུབ་པ" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "'%s'ཐུམ་བུ་མཉམ་དུ་སྒྲིལ་མི་འདུག་པས་ཡང་བསྐྱར་སྒྲིག་འཇུག་དགོས " "་ཡིནའང་འོས་མཚམས་ཀྱི་ཡིག་ཚགས་རྙེད་མ་བྱུང་བས་ཁྱོད་ཀྱིས་ཐུམ་བུ་བསུབ་པ་མུ་མཐུད་དག" "ོས་སམ།" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "ཕལ་ཆེར་དྲ་ཞབས་ཞུ་བ་འདིར་ཁུར་པོ་ལྗིད་དྲག་འདུག" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "སྐྱོན་ཤོར་བའི་ཐུམ་བུ" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "ཁྱོད་ཀྱི་མ་ལག་ནང་མཉེན་ཆས་འདིས་བཟོ་བཅོས་མི་ཐུབ་པའི་ཐུམ་བུ་སྐྱོན་ཅན་འདུག " "མདུན་སྐྱོད་མ་བྱས་གོང་synaptic་འམ་ཡང་ན་apt-" "get་བེད་སྤྱོད་གཏོང་ནས་བཟོ་བཅོས་བྱེད་རོགས" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "%s་རིམ་སྤོར་རྩིས་འདངས་རྒྱག་དུསབསྐྱར་གསོ་བྱེད་མི་ཐུབ་པའི་གནོད་སྐྱོན་བྱུང་བ\n" "\n" " གནོད་སྐྱོན་འབྱུང་རྐྱེན།\n" " * མ་ལག་Ubuntu་སྔོན་མའི་པར་གཞི་ཞིག་ལ་རིམ་སྤོར་བྱེད་པ\n" " * མ་ལག་Ubuntu་སྔོན་མའི་པར་གཞི་ཞིག་དང་ཐོག་བཀོལ་སྤྱོད་བཞིན་པ\n" " * མ་ལག་Ubuntu་ཀྱིས་མཁོ་སྤྲོད་མ་བྱས་པའི་གཞུང་བཟོས་མཉེན་ཆས་ཐུམ་བུ་མིན་པ\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "This is most likely a transient problem. Please try again later." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "རིམ་སྤོར་རྩིས་འདངས་རྒྱག་མི་ཐུབ་པ" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "ཐུམ་བུ་འགའ་ངོས་འཛིན་བྱེད་པ་ནོར་འཁྲུལ་" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "རྟགས་'%s'འདི་འཁོད་ཡོད་པ་ཚང་མ་བསུབ་དགོས་ཀྱང་འདི་བསུབ་རྒྱུའི་དེབ་ཐོ་ནང་དུ་མི་འད" "ུག" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "གལ་ཆེན་ཐུམ་བུ'%s' འདིར་བསུབ་དགོས་པའི་རྟགས་འཁོད་འདུག" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "རྟགས་ངན་ཅན་པར་གཞི་'%s་སྒྲིག་འཇུག་ཚོད་ལྟ་བཞིན་པ'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s'སྒྲིག་འཇུག་མི་ཐུབ་པ" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "meta-package་ཚོད་དཔགས་མི་ཐུབ་པ" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "ཁྱོད་ཀྱི་མ་ལག་ནང་Your system does not contain a ubuntu-སྒྲོག་སྟེགས, kubuntu-" "སྒྲོག་སྟེགས, xubuntu-སྒྲོག་སྟེགས་ཡང་ན་edubuntu-" "སྒྲོག་སྟེགས་ཐུམ་བུ་ཞིག་འདུས་མེད་པས་སྤྱོད་བཞིན་པའི་པར་གཞི་རྩིས་བཤེར་བྱེད་པ་འགྲ" "ུབ་མི་སྲིད \n" "མདུན་སྐྱོད་མ་བྱས་གོང་synaptic་དང་ཡང་ན་ apt-" "get་བེད་སྤྱོད་ནས་གོང་གི་ཐུམ་བུ་ཞིག་སྒྲིག་འཇུག་བྱེད་རོགས" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "དྲ་ཤུལ་ཀློག་བཞིན་པ" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "གཅིག་འགྱུར་གྱི་ཟྭ་མ་ཐོབ་པ" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "རྒྱང་འབྲེལ་སྦྲེལ་མཐུད་རིམ་སྤོར་བྱེད་པ་རྒྱབ་སྐྱོར་མེད" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "ཁྱོད་ཀྱི་རིམ་སྤོར་འདི་མདུན་ངོས་མཐུད་སྣེའི་རམ་འདེགས་མེད་པའི་རྒྱང་འབྲེལ་ssh " "སྦྲེལ་མཐུད་ཐོག་འཁོར་སྐྱོད་བྱེད་བཞིན་འདུག ཁྱོད་ཀྱིས'do-release-" "upgrade'སྤྱད་ནས་ཡི་གེ་རྣམ་པ་ཅན་གྱི་རིམ་སྤོར་ལ་ཚོད་ལྟ་བྱེད་རོགས།\n" "\n" "རིམ་སྤོར་འདི་ད་ལྟ་མཚམས་བཅད་རྒྱུ་ཡིན་པ་དང་sshམ་སྤྱད་པ་ཚོད་ལྟ་བྱེད་རོགས" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Starting additional sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh, you can " "still connect to the additional one.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "ཁྱོད་ཉེན་འགོག་ཆས་སྤྱད་ན་གནས་སྐབས་རིང་མཐུད་སྣེ་འདི་ཁ་འབྱེད་དགོས་ཉེན་ཆེ། " "འདིར་ཉེན་ཁ་ཅུང་ཡོད་པས་རང་འགུལ་གྱིས་བཟོས་མེད། " "ཁྱོད་ཀྱིས་འདི་སྤྱད་ནས་མཐུད་སྣེ་ཁ་འབྱེད་ཆོག་པ། དཔེར་ན:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Cannot upgrade" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "An upgrade from '%s' to '%s' is not supported with this tool." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandbox setup failed" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "It was not possible to create the sandbox environment." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox mode" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Package 'debsig-verify' is installed" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Include latest updates from the Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "The upgrade system can use the Internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection, this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up-to-date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "disabled on upgrade to %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "No valid mirror found" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run an internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Generate default sources?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "གསོག་མཛོད་ཆ་འཕྲིན་ཕན་ནུས་མེད་པ" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "གཉེར་མཁན་གསུམ་པའི་འབྱུང་ཁུངས་ནུས་མེད་སྒྱུར" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "འཐུམ་སྒྲིལ་མཉམ་སྒྲིལ་མིན་པ" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "'%s' འཐུམ་སྒྲིལ་ནི་མཉམ་དུ་སྦྲེལ་མི་འདུག་པས་ཡང་བསྐྱར་སྒྲིག་འཇུག་གནང་རོགས། " "ཡིནའང་སྒྲིག་འཇུག་ཡིག་ཚགས་ཀྱང་རྙེད་མི་འདུག་པས་འཐུམ་སྒྲིལ་ལག་པས་སྒྲིག་འཇུག་བཤིག" "ས་པའམ་མ་ལག་ཐོག་ནས་འདོར་དགོས" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "གསར་སྒྱུར་གྱི་ནོར་འཁྲུལ" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "གསར་སྒྱུར་སྐབས་ནོར་འཁྲུལ་བྱུང་བ། ནམ་རྒྱུན་འདི་ནི་དྲ་བའི་གནོད་སྐྱོན་ཡིན་པས་ " "problem, please check your network connection and retry." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "བླུགས་སྡེར་འདངས་བ་མེད་པ" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "རིམ་སྤོར་འདི་འདོར་ཚར་བ རིམས་སྤོར་འདི་ལ་གསོག་སྡེར་%s ཐོག་བར་སྟོང་ '%s'དགོས་པ " "ཁྱོད་ཀྱིས་ཉུང་ཤོས་ཡང་གསོག་སྡེར%s ཐོག་བར་སྟོང་'%s'བཟོ་དགོས " "སྙིགས་སྣོད་སྟོང་བར་བཟོ་བ་དང་སྔོན་ནས་སྒྲིག་འཇུག་བྱས་པའི་ཐུམ་བུའི་གནས་སྐབས་ཐུམ་" "བུ་འདོར་དགོས་ན'sudo apt-get clean'བེད་སྤྱོད་བྱེད་རོགས" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "བཟོ་བཅོས་འདི་བརྩི་འདངས་རྒྱག་བཞིན་པ" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "རིམ་སྤོར་འགོ་འཛུགས་དགོས་སམ" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "རིམ་སྤོར་རྩིས་མེད་གཏོང" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "རིམ་སྤོར་རྩིས་མེད་གཏོང་ནས་མ་ལག་ཐོག་མའི་གནས་སྟངས་བསྐྱར་གསོས་བྱེད་རྒྱུ " "ཁྱོད་ཀྱིས་རྗེས་སུ་རིམ་སྤོར་དེ་མི་མཐུད་ཐུབ" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "རིམ་སྤོར་ལེན་འཇུག་མི་ཐུབ་པ" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "ངོས་འཛིན་སྐབས་སྐྱོན་བྱུང་བ" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "མ་ལག་ཐོག་མའི་གནས་སྟངས་བསྐྱར་གསོ་བཞིན་པ" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "རིམ་སྤོར་སྒྲིག་འཇུག་མི་ཐུབ་པ" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "རིམ་སྤོར་ཆད་སོང་། ཁྱོད་ཀྱི་མ་ལག་དེ་སྤྱོད་མི་རུང་བའི་གནས་ལ་ལྷུང་འགྲོ་ཉེན་ཆེ། " "ད་ལྟ་སྐྱོན་གསོ་བྱེད་ཞིག་འཁོར་སྐྱོད་བྱེད་པ (dpkg --configure -a)" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "གསར་སྒྱུར་དེ་ཆད་སོང་། " "ཁྱོད་ཀྱི་དྲ་བ་སྦྲེལ་མཐུད་དང་ཡང་ན་སྒྲིག་འཇུག་འཇུག་ཟམ་ལ་ཞིབ་བཤེར་བྱས་ནས་ཡང་བསྐྱ" "ར་ཚོད་ལྟ་བྱེད་རོགས " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "དུས་ཡོལ་འཐུམ་སྒྲིལ་བསུབ་པ" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "ཉར་འཇོག_K" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "བསུབ་པ_R" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "གཙང་མ་བཟོ་དུས་སྐྱོན་ཞིག་འབྱུང་སོང་། གཤམ་གྱི་བརྡ་འཕྲིན་ཀློག་ནས་ གསལ་བཤད་བཏོན། " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "དགོས་མཁོའི་ཞོལ་གཏོགས་སྒྲིག་འཇུག་བྱས་མི་འདུག" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "དགོས་མཁོའི་ཞོལ་གཏོགས་'%s' སྒྲིག་འཇུག་མི་འདུག " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "འཐུམ་སྒྲིལ་དོ་དམ་པ་ཞིབ་བཤེར་བཞིན་པ" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "ལེགས་འགྲུབ་མ་ཐུབ་པའི་རིམ་སྤོར་ལ་གྲ་སྒྲིག་བཞིན་པ" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "སྔོན་འགྲོའི་ཆ་རྐྱེན་ཐོབ་མ་ཐུབ་པ" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "གསོག་མཛོད་གྱི་གནས་ཚུལ་གསར་སྒྱུར་བཞིན་པ" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "་་CD་་འོད་སྡེར་བཀོལ་ཆས་ཁ་སྣོན་མ་ཐུབ" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "དགོངས་དག འོད་སྡེར་འཇུག་གནས་སྣོན་མ་ཐུབ་པ" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "འཐུམ་སྒྲིལ་གནས་ཚུལ་ཕན་ནུས་མེད་པ" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "ལེན་བཞིན་པ" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "རིམ་སྤོར་བཞིན་པ" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "རིམ་སྤོར་ལེགས་འགྲུབ" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "རིམ་སྤོར་ལེགས་འགྲུབ་ཚར་ནའང་རིམ་སྤོར་སྐྱོད་བཞིན་པའི་སྐབས་ནོར་འཁྲུལ་ཞིག་འདུག" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "དུས་ཡོལ་གྱི་མཉེན་ཆས་འཚོལ་བཞིན་པ" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "མ་ལག་རིམ་སྤོར་ལེགས་འགྲུབ་ཚར" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "ཆ་ཤས་རིམ་སྤོར་ཞིག་ལེགས་འགྲུབ་ཚར" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "པར་བསྐྲུན་གསལ་བཤད་རྙེད་མི་འདུག" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "དྲ་བ་ཞབས་ཞུ་བ་ལ་ཁུར་པོ་ལྗི་དྲགས་པ " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "པར་བསྐྲུན་གསལ་བཤད་གེན་འཇུག་མི་ཐུབ" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "ཁྱོད་ཀྱི་དྲ་བ་སྦྲེལ་མཐུད་ལ་ལྟ་ཞིབ་བྱེད་རོགས" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "རིམ་སྤོར་སྤྱོད་ཆས་འཁོར་སྐྱོད་བྱེད་མི་ཐུབ་པ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "རིམ་སྤོར་སྤྱོད་ཆས་གྱི་ས་ཡིག" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "རིམ་སྤོར་སྤྱོད་ཆས" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "ལེན་འཇུག་མ་ཐུབ་པ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "རིམ་སྤོར་ལེན་འཇུག་མ་ཐུབ་པ། འདི་ནི་དྲ་བའི་གནོད་སྐྱོན་ཞིག་ཕལ་ཆེར་རེད " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "བདེན་དཔངས་མ་ཐུབ་པ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "རིམ་སྤོར་བདེན་དཔངས་མ་ཐུབ་པ། འདི་ཕལ་ཆེར་དྲ་བའམ་དྲ་བ་ཞབས་ཞུ་བའི་སྐྱོན་ཡིན་ངེས " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "ཕྱིར་རུ་འདོན་མི་ཐུབ་" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "རིམ་སྤོར་ཕྱིར་རུ་འདོན་མི་ཐུབ་པ། " "འདི་ཕལ་ཆེར་དྲ་བའམ་དྲ་བ་ཞབས་ཞུ་བའི་སྐྱོན་ཡིན་ངེས " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "ར་སྤྲོད་མ་ཐུབ་པ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "རིམ་སྤོར་ར་སྤྲོད་མ་ཐུབ་པ། འདི་ཕལ་ཆེར་དྲ་བའམ་དྲ་བ་ཞབས་ཞུ་བའི་སྐྱོན་ཡིན་ངེས " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "རིམ་སྤོར་འཁོར་སྐྱོད་མི་ཐུབ་པ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "ནོར་འཁྲུལ་བརྡ་འཕྲིན་ '%s'" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "རིམ་སྤོར" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "པར་བསྐྲུན་གསལ་བཤད" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "ཐུམ་བུ་ཡིག་ཆ་ཁ་སྣོན་དུ་ལེན་འཇུག་བཞིན་པ་་་" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "ཡིག་ཆ་ %2s ་ནང་གི་ %1s ་ཚད་ %s ཚིག་/སྐར་ཆ" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "ཡིག་ཆ་ %2s ནང་གི་ %1s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "སྒུལ་ཆས་'%2s'ནང་དུ་'%1s'འཇུག་རོགས" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "འཇུག་ཟམ་བརྗེ་བ" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms་སྤྱོད་བཞིན་པ" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "ཁྱོད་ཀྱི་མ་ལག་གིས་/proc/mounts་ནང་གི'evms'འཇུག་སྣོད་དོ་དམ་ཆས་སྤྱོད་པ 'evms' " "ལ་རམ་འདེགས་མེད་པས་འདིར་གློག་སྒོ་བརྒྱབ་ནས་རིམ་སྤོར་ཞིག་ཡང་བསྐྱར་བྱེད་དགོས" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "རིམ་སྤོར་གྱིས་མདུན་ངོས་ཀྱི་རྣམ་པ་དང་རྩེད་རིགས་ཀྱི་འགྲོ་སྟངས། " "པར་རིས་མང་པོ་ཡོད་པའི་བྱ་རིམ་ལ་འགྱུར་ལྡོག་ཡོད་ཉེན་ཆེཨ" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "རྩིས་འཁོར་འདིས་ཁNVIDIA་གཟུགས་རིས་སྒུལ་སློང་བ་བེད་སྤྱོད་བཞིན་ཡོད་པས་ Ubuntu " "10.04 LTS་ནང་གི་བརྙན་རིས་བྱང་བུ་ལ་སྤྱོད་རུང་བའི་གཟུགས་རིས་སྒུལ་སློང་བ་མེད་པ\n" "\n" "ཁྱོད་ཀྱིས་མུ་མཐུད་འདོད་དམ" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "རྩིས་འཁོར་འདིས་ད་ལྟ་AMD " "'fglrx'་གཟུགས་རིས་སྒུལ་སློང་བ་བེད་སྤྱོད་བཞིན་ཡོད།འདིའི་པར་གཞི་གང་ཡང་Ubuntu " "10.04 LTS་སྲ་ཆས་སྤྱོད་མི་རུང་།\n" "\n" "ཁྱོད་ཀྱིས་མུ་མཐུད་དགོས་སམ" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "i686 CPU་མེད་པ" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "ARMv6 CPU་མེད་པ" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "init ་མེད་པ" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "aufs་བེད་སྤྱོད་ནསSandbox རིམ་སྤོར་བྱེད་པ" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "རྒྱུད་ཁོངས་དེ་སྤྱོད་ནས་རིམ་སྤོར་ཐུམ་བུ་ཡོད་པའི་འོད་སྡེར་སྒུལ་སྐྱོད་པ་འཚོལ་བཤེ" "ར་བྱེད་པ" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "རིམ་སྤོར་དུམ་བུ་ཞིག་ཁོ་ན་བྱེད་པ (འབྱུང་ཁུངས་ཐོ་འགོད་བསྐྱར་འབྲི་མི་བྱེད་པ)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNUའཆར་ངོས་རམ་འདེགས་ནུས་མེད་བསྒྱུར" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "datadir་སྒྲིག་འཛུགས་བྱེད་པ" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "ལེན་འཇུག་ལེགས་འགྲུབ" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "ཡིག་ཆ་ %2li ནང་ནས་ %1li ཚད་ %s B/s ཐོག་ལེན་འཇུག་བྱེད་བཞིན་པ" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "ཕལ་ཆེར་ %s ་ལྷགས་ཡོད" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "ཡིག་ཆ་ %2li ནང་ནས་ %1li ལེན་འཇུག་བཞིན་པ" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "བཟོ་བཅོས་འདོན་བཞིན་པ" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "འཁོར་གཏོགས་སྐོར་སྐྱོན - སྒྲིག་བཟོ་མེད་པ་སྐྱུར་ཡོད་པ" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Could not install '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "རིམ་སྤོར་འདི་མུ་མཐུད་རྒྱུ་ཡིན་ཡང་ " "'%s'་ཐུམ་བུ་དེ་ཕན་ནུས་མེད་པའི་ལནས་སྟངས་ལ་ལྷུངས་ཚར་ཉེན་ཆེ། " "འདིའི་སྐོར་སྐྱོན་ཞིག་ཡར་ཞུ་དགོས་མིན་བསམ་གཞིགས་གནང་རོགས" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "རང་བཟོས་སྒྲིག་བཟོ་ཡིག་ཆ་\n" "'%s'བརྗེ་དགོས་སམ" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "ཁྱོད་ཀྱིས་གལ་སྲིད་སྒྲིག་བཟོ་ཡིག་ཆ་དེ་པར་གཞི་གསར་པ་ཞིག་གིས་ཚབས་བཅུག་ན་ " "དེ་སྔར་དེའི་ཐོག་སྒྲིག་བཟོ་བྱས་པ་རྣམས་བཀླགས་འགྲོའོ།" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "'diff'བཀའ་བརྡ་མ་རྙེད་པ" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "ནོར་འཁྲུལ་ཚབས་ཆེན་ཞིག་བྱུང་བ" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "(གལ་སྲིད་ཁྱོད་ཀྱིས་སྤྲོད་མེད་ན་)སྐྱོན་འདིའི་སྐོར་ཡར་ཞུ་སྤྲོད་པ་དང་ " "/var/log/dist-upgrade/main.log དང་ /var/log/dist-upgrade/apt.log " "ཡང་མཉམ་དུ་སྤྲོད་རོགས། རིམ་སྤོར་འདི་ད་ལྟ་བར་མཚམས་བཞག་འགྲོའོ།\n" "ཁྱོད་ཀྱི་ཐོག་མའི་འབྱུང་ཁུངས་མིང་ཐོ " "/etc/apt/sources.list.distUpgrade་གསོག་འཇོག་བྱས་ཡོད།" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c ་གནོན་བྱུང་།" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "འདིས་བྱ་འགུལ་འདི་མཚམས་གཅོད་པ་དང་མ་ལག་ལའང་སྐྱོན་གཏོང་ངེས་ཡིན།ཁྱོད་ཀྱིས་འདི་བྱེ" "ད་པར་གཏན་ཁེལ་ཡིན་ནམ།" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "ཆ་འཕྲིན་གྲངས་མི་བརླགས་པའི་ཆེད་དུ་ཉེར་སྤྱོད་དང་ཡིག་གེ་ཡོངས་རྫོགས་སྒོ་རྒྱག་དགོས" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Canonical (%s)ཡིས་རམ་འདེགས་མི་བྱེད་པ" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "རིམ་ཆགས (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "(%s)འདོར་བ" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "འདི་མི་དགོས་པ(%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "(%s)སྒྲིག་འཇུག་བྱེད་པ" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "(%s)་རིམ་སྤོར" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "ཁྱད་པར་མངོན་པ>>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< ཁྱད་པར་སྐུངས་པ" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "ནོར་འཁྲུལ" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "སྒོ་རྒྱག་ &C" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "འཇུག་སྒོ་སྟོན་པ >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< འཇུག་སྒོ་སྐུངས་པ" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "གནས་ཚུལ" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "ཞིབ་ཕྲ" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "འདི་ལ་རམ་འདེགས་མི་བྱེད་པ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s་འདོར་བ" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "%s་འདོར་བ (རང་འགུལ་སྒྲིག་འཇུག་བྱས་པ)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s་སྒྲིག་འཇུག་བྱེད་པ" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s་རིམ་སྤོར" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "འགོ་བསྐྱར་འཛུགས་དགོས་པ" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "་མ་ལག་འགོ་བསྐྱར་འཛུགས་བྱས་ནས་རིམ་སྤོར་ལེགས་འགྲུབ་བྱེད་པ" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "ད་ལྟ་འགོ་བསྐྱར་འཛུགས_R" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "རིམ་སྤོར་འདི་རྩིས་མེད་གཏོང་དགོས་སམ།\n" "\n" "རིམ་སྤོར་རྩིས་མེད་གཏོང་ན་མ་ལག་སྤྱོད་མི་རུང་བ་འགྱུར་ཉེན་ཡོད་པས་རིམ་སྤོར་ " "མུ་མཐུད་ན་དགའ་ངོས་ཡིན" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "རིམ་སྤོར་རྩིས་མེད་གཏོང་དགོས་སམ" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "ཉིན་%li" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "ཆུ་ཚོད་%li" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "སྐར་མ་%li" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "སྐར་ཆ་%li" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "ལེན་འཇུག་འདི་ལ་ས་ཡ་ཚིག་1་ཅན་DSL སྦྲེལ་མཐུད་དང་56k ་དྲ་འཇུག་སྣེ%s་ཅན་ཚད་ཀྱིས་ " "དུས་ཚོད་%s་དགོས།" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "ཁྱོད་ཀྱི་སྦྲེལ་མཐུད་ཀྱིས་ལེན་འཇུག་འདི་བྱེད་པར་དུས་ཚོད་ %s་དགོས " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "རིམ་སྤོར་གྲལ་སྒྲིག་བཞིན་པ" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "མཉེན་ཆས་རྩ་འཛུགས་གསར་བ་འདོན་བཞིན་པ" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "ཐུམ་བུ་གསར་བ་འདོན་བཞིན་པ" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "རིམ་སྤོར་སྒྲིག་འཇུག་བཞིན་པ" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "གཙང་དག་བཟོ་བཞིན་པ" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "སྒྲིག་འཇུག་བྱས་པ་ཐུམ་བུ་%(amount)d ལCanonical་ཡིས་རྒྱབ་སྐྱོར་མེད " "ཁྱོད་ཀྱིས་མཁོ་སྤྱོད་ཚོགས་ལས་རྒྱབ་སྐྱོར་ཐོབ་ཐུབ" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "ཐུམ་བུ་%d་བསུབ་འགྲོ་ངེས།" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "ཐུམ་སྒྲིལ་གསར་བ་%d་སྒྲིག་འཇུག་བྱེད་ངེས" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "ཐུམ་སྒྲིལ་གསར་བ་%d་རིམ་སྤོར་བྱེད་ངེས" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "ཁྱོད་ཀྱིས་ཁྱོན་བསྡོམས་ལེན་འཇུག་དགོས་པའི་ཚད %s " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "ཁྱོད་ཀྱི་མ་ལག་ལ་རིམ་སྤོར་མེད་པས་རིམ་སྤོར་འདི་ད་ལྟ་རྩིས་མེད་གཏོང་རྒྱུ་ཡིན" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "འགོ་བསྐྱར་འཛུགས་དགོས་པ" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "རིམ་སྤོར་མཇུག་རྫོགས་ཚར་བ་དང་འགོ་བསྐྱར་འཛུགས་དགོས་པ། " "ད་ལྟ་འདི་བྱེད་དགོས་པ་ཡིན་ནམ" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "སྐྱོན་འདི་དང་/var/log/dist-upgrade/main.log་ད་དུང་ཡིག་ཆ /var/log/dist-" "upgrade/apt.log མཉམ་དུ་ཡར་ཞུ་སྤྲོད་རོགས། རིམ་སྤོར་འདི་འདོར་ཚར་བ\n" "ཁྱོད་ཀྱི་ཐོག་མའི་འབྱུང་ཁུངས་མིང་ཐོ་ནི /etc/apt/sources.list.distUpgrade " "གསོག་འཇོག་ཡོད་པ" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "བར་གཅོད་བཞིན་པ" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "རིམ་ཆགས་ཟིན་པ:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "མུ་མཐུད་དགོས་ན [ENTER]མནན་རོགས" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "མུ་མཐུད་པ་[ཡིན/མིན] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "ཞིབ་ཕྲ [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "ཡིན" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "མིན" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "ཞིབ་ཕྲ" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "རམ་འདེགས་མེད་པ: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "བསུབ་པ: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "སྒྲིག་འཇུག: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "རིམ་སྤོར: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "མུ་མཐུད་ [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "རིམ་སྤོར་མཇུག་རྫོགས་པར་འགོ་བསྐྱར་འཛུགས་དགོས་པ\n" "ཁྱོད་ཀྱིས་གལ་སྲིད་'y'་་ཡིན་་གདམ་ན་མ་ལག་འགོ་བསྐྱར་འཛུགས་བྱེད་དོ" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "ཁྱོན་ཡོངས་%(total)li་ནང་ནས་ཡིག་ཆ་%(current)li་ལེན་འཇུག་བཞིན་པ་ ་ཚད " "%(speed)s/སྐར་ཆ" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "ཁྱོན་ཡོངས་%(total)li་ནང་ནས་ཡིག་ཆ་%(current)li་ལེན་འཇུག་བཞིན་པ་" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "རང་སྒེར་གྱི་འཕེལ་རིམ་མངོན་པ" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "རིམ་སྤོར་རྩིས་མེད་གཏོང་_C" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "རིམ་སྤོར་མུ་མཐུད་པ_R" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "འཁོར་སྐྱོད་དགོས་པའི་རིམ་སྤོར་རྩིས་མེད་གཏོང་དགོས་སམ\n" "\n" "གལ་སྲིད་རིམ་སྤོར་རཙིས་མེད་གཏོང་ན་མ་ལག་སྤྱོད་མི་རུང་གནས་ལ་ལྷུང་སྲིད། " "ཁྱོད་ཀྱིས་ རིམ་སྤོར་མུ་མཐུད་པར་སྐུལ་མ་ཡོད" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "རིམ་སྤོར་འགོ་འཛུགས་པ_S" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "ཚབ་འཇོག་པ_R" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "ཡིག་ཆ་བར་གྱི་ཁྱད་པ" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "སྐྱོན་ཡར་ཞུ_R" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "མུ་མཐུད་པ_C" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "རིམ་སྤོར་འགོ་འཛུགས་དགོས་སམ" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "མ་ལག་འགོ་བསྐྱར་འཛུགས་བྱས་ནས་རིམ་སྤོར་མཇུག་རྫོགས་པ\n" "\n" "མུ་མཐུད་མ་སྐྱོད་གོང་ཁྱོད་ཀྱི་ལས་ཀ་གསོག་འཇོག་བྱེད་དགོས" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "འགྲེམ་སྤེལ་རིམ་སྤོར" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "མཉེན་ཆས་རྩ་འཛུགས་གསར་བ་སྒྲིག་འཛུགས་བཞིན་པ" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "རྩིས་འཁོར་འགོ་བསྐྱར་འཛུགས་བྱེད་བཞིན་པ" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "རིམ་སྤོར_U" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Ubuntu ཡི་པར་གཞི་གསར་པ་ཞིག་ཡོད་པས་ཁྱོད་ཀྱིས་རིམ་སྤོར་དགོས་སམ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "རིམ་སྤོར་མ་བྱེད" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "རྗེས་ནས་དྲིས་ཤོག" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "དགོས། རིམ་སྤོར་ད་་ལྟ་བྱེད།" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "ཁྱོད་ཀྱིས་Ubuntuགསར་པར་རིམ་སྤོར་བྱེད་པར་འདོར་ཚར" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "པར་གཞི་མངོན་ནས་ཕྱིར་འདོན" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Directory that contains the data filesཆ་འཕྲིན་གྲངས་ཡིག་ཆའི་འཇུག་སྣོད" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "དམིགས་བསལ་ཅན་གྱི་མདུན་སྣེ་འཁོར་སྐྱོད" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "རིམ་སྤོར་ཚོ་གཅིག་འཁོར་སྐྱོད་བཞིན་པ" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "རིམ་སྤོར་འགྲེམས་སྤེལ་སྤྱོད་ཆས་ལེན་འཇུག་བཞིན་པ" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Check if upgrading to the latest devel release is " "possibleཐེངས་རྗེས་མའི་འགྲེམ་སྤེལ་ལ་རིམ་སྤོར་ཐུབ་མིན་རྟགས་བཤེར" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "$distro-" "proposedཡི་རིམ་སྤོར་ཆས་སྤྱོད་ནས་ཐེངས་རྗེས་མའི་པར་གཞི་ལ་རིམ་སྤོར་བྱེད་པ" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "དམིགས་བསལ་གྱི་རིམ་སྤོར་རྣམ་པ་འཁོར་སྐྱོད་བྱེད་པ།\n" "དང་ཐོག་གི་གཙོ་ངོས་མ་ལག་ལ་་གཙོ་ངོས་་ཀྱི་ཚད་ལྡན་རིམ་སྤོར་དང་ཞབས་ཞུ་བའི་མ་ལག་ལ་ " "ཞབས་ཞུ་བའི་རམ་འདེགས་ཡོད་པ།" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "sandbox aufs ཕྱི་རིམ་ཞིག་གིས་རིམ་སྤོར་ཚོད་ལྟ་བ" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "འགྲེམས་སྤེལ་གསར་པ་ཁོ་ན་ཡོད་མིན་འཚོར་བཤེར་བྱེད་པ་དང་ཕྱིར་ཐོན་ཨང་རྟགས་བརྒྱུད་ནས" "་འདིའི་མཇུག་འབྲས་ཡར་ཞུ་བྱེད་དགོས" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "ཁྱོད་ཀྱི་Ubuntu པར་གཞི་འདིར་རྒྱབ་སྐྱོར་མེད་པ།" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "རིམ་སྤོར་སྐོར་འདིར་འདྲི་ཞིབ་བྱེད་རོགས:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "འགྲེམ་སྤེལ་གསར་པ་མ་རྙེད" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "ད་ལྟ་འགྲེམས་སྤེལ་གསར་པའི་རིམ་སྤོར་བྱེད་མི་ཐུབ" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "འགྲེམས་སྤེལ་གསར་པའི་རིམ་སྤོར་ད་ལྟ་སྒྲུབ་མི་ཐུབ " "རྗེས་སུ་ཡང་བསྐྱར་ཚོད་ལྟ་གནོང་རོགས ཞབས་ཞུ་བས་ཡར་ཞུ། '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "འགྲེམ་སྤེལ་གསར་པ་'%s' སྤྱོད་རུང་བ" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" "'do-release-" "upgrade'འགྲེལ་སྤེལ་རིམ་སྤོར་བྱོས་་འཁོར་སྤྱོད་བྱས་ནས་དེ་ལ་རིམ་སྤོར་བྱེད་པ" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(པར་གཞི་)་ལ་རིམ་སྤོར་ཆོག་པ" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Ubuntu %s་རིམ་སྤོར་བྱེད་པར་ཁྱོད་ཀྱིས་འདོར་ཚར" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ne.po0000644000000000000000000013377712431225715014775 0ustar # translation of update-manager.HEAD.po to Nepali # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # Pawan Chitrakar , 2005. # Jaydeep Bhusal , 2005. # msgid "" msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Nepali \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ne\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s को लागि सर्भर" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "मुख्य सर्भर" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "पसन्द सर्भरहरू" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "श्रोत हरु calculate गर्न सकियेना अन्तिम खाका" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "package files हरु कहाँ छन् पत्ता लगाउना सकियेना साएद को उबुन्टु को CD होइन" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "सीडी जोड्न अक्षम" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "खराब हालतको प्याकेज हटाउनुहोस्" msgstr[1] "खराब हालतको प्याकेजहरू हटाउनुहोस्" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "server ले थेग्न नसके जस्तो छ" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "टुक्रिएका प्याकेजहरू" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "तपाई को सिस्टम मा टुक्रिएका प्याकेजहरू हरु छन् तेस्लाई बनौन सकियेना कृपया " "पहिला synaptic अथवा apt-get प्रयोग गर्नु होला" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Upgrade calculate गर्न खोज्दा एउटा सम्हाल्न नसकिने समस्या आयो\n" "%s\n" "ई कारण ले हुन सकछन\n" "*pre-release उबुन्टु upgrade गर्न खोज्दा\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "साएद समस्या थाही हैन होला फेरी प्रयास गर्नु होला" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "upgrade calculate गर्न सकियेना" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "कालो सुची मा परेको version '%s' प्रतिस्थापन गर्न खोजि दै छ" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' प्रतिस्थापन गर्न सकिएन" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "स्तरोन्नत गर्न सकिएन" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "कुनै वैध प्रतिबिम्ब फेला परेन" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "स्तरोन्नति रद्द भयो" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/zh_TW.po0000644000000000000000000016627612431225715015426 0ustar msgid "" msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-10-18 13:47+0000\n" "Last-Translator: Walter Cheuk \n" "Language-Team: Chinese (Taiwan) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:54+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s伺服器" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "主伺服器" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "自訂伺服器" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "無法推算 sources.list 項目" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "找不到套件檔,也許這不是 Ubuntu 光碟,或者處理器架構不對。" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "無法加入光碟" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "加入光碟時發生錯誤,升級將終止。若您確定光碟沒有問題,請將此匯報為臭蟲。\n" "\n" "錯誤訊息:\n" "「%s」" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "移除有問題套件" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "「%s」套件狀態不一致而需要重新安裝,但找不到其存檔。是否馬上移除此套件並繼續?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "伺服器可能負載過大" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "損毀套件" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "本軟體無法修正閣下系統某有損毀套件。請先使用 synaptic 或 apt-get 修正才繼續。" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "準備升級時發生不能解決的問題:\n" "%s\n" "\n" " 這可能由以下原因造成:\n" " * 正升級至非正式發佈版本的 Ubuntu\n" " * 正使用非正式發佈版本的 Ubuntu\n" " * 安裝了非由 Ubuntu 官方提供的軟體套件\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "很可能只是暫時有問題。請稍候再試。" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "非以上所述者,請在終端機使用「ubuntu-bug ubuntu-release-upgrader-core」通報此問題。" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "無法推算升級" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "核對一些套件時發生錯誤" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "無法核對部份套件。可能是因為短時間的網路問題。您可以稍候再試一次。下面是未核對的套件清單。" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "套件「%s」標記作移除,但它在移除黑名單中。" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "必要套件「%s」被標記作移除。" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "正在嘗試安裝已列入黑名單的「%s」版本" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "無法安裝「%s」" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "無法安裝所需套件。請在終端機使用「ubuntu-bug ubuntu-release-upgrader-core」通報此問題。" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "無法估計元套件 (meta-package)" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "您的系統沒有安裝 ubuntu-desktop、kubuntu-desktop、xubuntu-desktop 或 edubuntu-desktop " "套件,因此無法偵測正在使用哪個版本的 Ubuntu。\n" " 請先使用 synaptic 或 apt-get 安裝上述其中一個套件再繼續作業。" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "正在讀取快取" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "無法取得(使用)排他鎖定" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "這通常表示有其他的套件管理員程式(如 apt-get 或 aptitude)正在執行。請先關閉這些應用程式。" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "不支援透過遠端連線升級" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "您正在透過遠端 ssh 連線的前端介面執行更新,而此介面不支援。請試試純文字模式下以 'do-release-upgrade' 進行更新。\n" "\n" "目前更新將會中止。請透過非 ssh 連線重試。" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "繼續執行於 SSH 中?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "此連線階段似乎是在 ssh 下執行。目前不建議在 ssh 連線下進行升級,因為若發生失敗將會較難以修復。\n" "\n" "若您繼續,一個額外的 ssh 背景程序將會啟動在 '%s' 連接埠。\n" "您想要繼續嗎?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "啟動後備 sshd 中" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "為在失敗時更易進行修復,一個後備 sshd 將在‘%s’埠被啟動。如果使用中的 ssh 有任何問題,您仍可以連接後備的 sshd 。\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "若您有執行防火牆,您可能需要暫時開啟此連接埠。由於此動作存在潛在危險,系統不會自動執行。您可以這樣開啟連接埠:\n" "「%s」" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "無法升級" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "這個工具不支援從‘%s’到‘%s’的升級" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "沙堆(Sandbox)架設失敗" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "不可能建立沙堆(sandbox)環境。" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "沙堆(Sandbox)模式" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "此升級程序正以沙箱 (測試) 模式執行。所有的變更會寫入「%s」,下次重新開機後會消失。\n" "\n" "從現在起直到下次重新開機前,任何寫入系統目錄的變更都*不會*留存。" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "您的 python 安裝已毀損。請修正 ‘/usr/bin/python’ 的符號連結。" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "套件 'debsig-verify' 安裝完成。" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "此已安裝的套件令升級無法繼續,請使用 synaptic 或 apt-get remove debsig-verify 指令將其移除後再次進行升級。" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "無法寫入「%s」" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "無法寫入您的系統目錄「%s」。升級程序無法繼續。\n" "請確認該系統目錄可以寫入。" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "要否包括來自網際網路的最新更新?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "升級系統可自動由網際網路下載最新更新並於升級時安裝。如您有網路連線,建議使用這方法。\n" "\n" "升級時間會較長,但完成後,您的系統就會完全在最新狀態。您可以選擇現在不進行這工作,但是在升級後,您應該要盡快安裝最新的更新。\n" "如果您在此回答「否」,將完全不會使用網路。" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "因升級至 %s 停用" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "找不到有效的鏡像站" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "掃描閣下套件庫時沒有發現升級映射項目資訊。如果您運行內部映射或者映射資訊已經過期,就會發生這種情況。\n" "\n" "是否無論如何都希望覆寫您的「sources.list」檔案?如選「是」則將會將所有「%s」更新成「%s」項目。\n" "如選「否」則會取消更新。" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "產生預設的來源?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "在掃描您的「sources.list」後,沒找到與「%s」有效的項目。\n" "\n" "要新增「%s」的預設項目嗎?如果您選擇「否」則會取消升級。" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "套件庫資料無效" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "升級套件庫資訊導致檔案無效,因此正在啟動臭蟲回報程序" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "已停用第三方來源" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "sources.list 中的某些第三方項目已停用。升級完成後可以「軟體來源」工具或套件管理員將之重新啟用。" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "套件在不一致狀態" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "這個套件 '%s' 狀態不一致而需要重新安裝,但找不到它的套件。請手動地重新安裝套件或將它由系統中移除。" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "更新時發生錯誤" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "更新時發生錯誤。這可能是某些網路問題,試檢查網路連線後再試。" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "磁碟空間不足" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "已放棄升級。升級程序總共需要 %s 可用空間於磁碟「%s」。請釋放至少額外 %s 的磁碟空間於磁碟「%s」。清理您的回收筒,並使用 'sudo apt-" "get clean' 來移除之前安裝時的暫時性套件。" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "正在推算所有的更動" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "要開始升級嗎?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "升級取消了" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "現在將取消升級,並且將系統還原至原來狀態。您可以在之後再進行升級。" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "無法下載升級套件" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "升級已中止。請檢查您的網際網路連線,或安裝媒體並重試。所有目前已下載的檔案都會被保留。" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "提交時發生錯誤" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "回復原有系統狀態" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "無法安裝升級" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "已放棄升級。您的系統可能處於不穩定狀態。現在將執行復原程序 (dpkg --configure -a)。" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "請打開瀏覽器,到 http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-" "upgrader/+filebug 通報此問題,並將 /var/log/dist-upgrade/ 內的檔案附加在問題報告上。\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "已放棄升級。請檢查您的網際網路連線或安裝媒體,接著再試一次。 " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "移除廢棄的套件?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "保留(_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "移除(_R)" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "在清理時發生一些問題。詳情請參閱以下訊息。 " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "必需的相依套件未被安裝" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "必需的相依套件‘%s’未被安裝。 " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "正在檢查套件管理員" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "準備升級失敗" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "準備系統以供升級的動作失敗,所以正在啟動臭蟲回報程序。" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "取得升級先決元件失敗" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "本系統無法達到升級的先決條件。升級會馬上中止並且將系統還原至原來狀態。\n" "\n" "此外,臭蟲回報程序正在啟動中。" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "正在更新套件庫資訊" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "無法加入光碟" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "很抱歉,沒有成功加入光碟。" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "無效的套件資訊" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "在更新您的套件資訊之後,無法定位必要的套件「%s」。這可能因為您沒有在軟體來源中列出官方鏡像站,或者是因為您正使用的鏡像站正忙碌超載。請見 " "/etc/apt/sources.list 以瞭解目前設定的軟體來源列表。\n" "若鏡像站正處於超載狀態,您可以過一段時間後再試著更新。" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "接收中" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "升級中" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "升級完成" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "升級已經完成,但在升級過程中有發生錯誤。" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "搜尋廢棄的軟體中" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "系統升級完成。" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "部份升級完成。" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "找不到發行公告" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "伺服器可能負荷過重。 " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "無法下載發行公告" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "請檢查您的網際網路連線。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "以「%(signature)s」核對「%(file)s」 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "正在抽出「%s」" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "無法執行升級工具" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "這個問題極可能來自升級工具。請使用「ubuntu-bug ubuntu-release-upgrader-core」通報此問題。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "升級工具簽署" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "升級工具" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "接收失敗" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "接收升級套件失敗。可能是網路問題。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "核對失敗" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "核對升級套件失敗。可能是因為跟伺服器的網路連線出現問題。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "解壓失敗" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "升級套件解壓失敗。可能是因為網路或伺服器出現問題。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "檢驗失敗" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "檢驗升級套件失敗。可能是因為網路或伺服器出現問題。 " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "不能進行升級" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "這通常是由使用 noexec 掛載 /tmp 的系統引致的。請不要使用 noexec 重新掛載,並再次進行升級。" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "錯誤訊息 '%s'。" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "升級" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "發行公告" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "正在下載額外的套件檔案..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "檔案 %s / %s (速度:%s 位元組/秒)" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "檔案 %s / %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "請將‘%s’放入光碟機‘%s’" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "媒體變更" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "有軟體正使用 evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "您的系統於 /proc/mounts 使用 'evms' volume 管理程式。'evms' 軟體已不受支援,請將其關閉再執行升級工作。" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "您的圖形顯示硬體在 Ubuntu 13.04 中可能未有完整支援。" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "您的顯示卡硬體無法完整支援「unity」桌面環境的執行。您可能在升級之後遭遇異常緩慢的環境。我們目前建議您繼續維持使用 LTS " "版本。若要瞭解更多資訊,請見 https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D " "您仍想要繼續升級嗎?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "您的繪圖硬體可能無法被 Ubuntu 12.04 LTS 完整支援。" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Ubuntu 12.04 LTS 對您的 Intel 繪圖硬體的支援有限,升級之後您可能會碰到一些問題。更多資訊可以查看 " "\"https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx\"。您是否要繼續升級?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "升級可能減低桌面特效和遊戲及其他著重圖形程式的表現。" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "這個電腦目前正使用 NVIDIA 的「nvidia」圖形驅動程式。這個驅動程式沒有任何版本可在 Ubuntu 10.04 LTS 中正常驅動您的硬體。\n" "\n" "是否要繼續?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "這個電腦目前正使用 AMD 的「fglrx」圖形驅動程式。這個驅動程式沒有任何版本可在 Ubuntu 10.04 LTS 中正常驅動您的硬體。\n" "\n" "是否要繼續?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "無 i686 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "您的系統使用 i586 CPU,或是不支援 'cmov' 擴充功能的 CPU。所有套件都以 i686 架構為最佳化目標來建置,所以 CPU 至少需要有 " "i686 等級。對於您目前的硬體來說,您無法將系統升級到最新的 Ubuntu 發行。" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "無 ARMv6 處理器" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "您系統使用的 ARM 處理器舊於 ARMv6 架構。所有 karmic 套件都是以 ARMv6 " "為最低架構優化建造的。所以伴隨此硬體無法升級您的系統到新的 Ubuntu 版本。" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "無法初始化" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "您的系統似乎處於虛擬化環境且無初始化程序,例如 Linux-VServer。Ubuntu 10.04 LTS " "無法於此環境執行,需要先更新您的虛擬機器設定。\n" "\n" "您確定想要繼續?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "使用 aufs 作為沙堆升級" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "使用指定路徑搜尋附有升級套件的光碟" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "使用前端介面。可供選擇的有: \n" "DistUpgradeViewText (純文字), DistUpgradeViewGtk (GTK+), DistUpgradeViewKDE " "(KDE)" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*已棄用* 這個選項會被忽略" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "只進行部份升級 (無須修改 sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "停用 GNU 螢幕支援" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "設定資料目錄" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "接收完成" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "接收第 %li 個檔案 (共 %li 個,速度為 %sB/s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "大約剩下 %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "接收第 %li 個檔案 (共 %li 個)" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "正在套用變更" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "相依問題 - 保留為未設定" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "無法安裝‘%s’" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "此次更新將繼續但是 '%s' 套件可能無法運作。請考慮提交關於該套件的臭蟲報告。" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "是否要覆蓋自訂的設定檔案\n" "‘%s’?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "如果選擇以新版覆蓋,那麼將會失去您改變過的設定。" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "找不到‘diff’指令" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "發生嚴重錯誤" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "請回報此錯誤 (若您尚未回報) 並將檔案 /var/log/dist-upgrade/main.log 與 /var/log/dist-" "upgrade/apt.log 附在您的報告中。升級程序已取消。\n" "您原先的 sources.list 儲存於 /etc/apt/sources.list.distUpgrade。" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "按下 Ctrl+c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "操作將被中止。這可能會造成系統的不完整。你確定要進行嗎?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "為避免遺失資料,請關閉所有開啟的程式及文件。" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "不再受 Canonical 支援 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "降級 (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "移除 (%s 個)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "不再需要 (%s 個)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "安裝 (%s 個)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "升級 (%s 個)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "顯示差異 >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< 隱藏差異" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "錯誤" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "取消(&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "關閉(&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "顯示終端畫面 >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< 隱藏終端畫面" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "資訊" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "詳情" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "不再支援 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "移除 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "移除 (曾是自動安裝的) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "安裝 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "升級 %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "需要重新開機" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "重新啟動系統以完成更新" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "馬上重新啟動(_R)" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "是否取消正進行的升級?\n" "\n" "如果您取消升級,系統可能會在不穩定的狀態。強烈建議您繼續升級工作。" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "要取消升級嗎?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li 日" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li 小時" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li 分鐘" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li 秒" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s又 %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "這次下載所需時間在 1M DSL 連線大約要 %s,用 56k 數據機大約要 %s。" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "依照您的連線速度,此下載需要約 %s。 " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "準備升級" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "正取得新軟體頻道" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "取得新套件" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "安裝升級" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "清理" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "%(amount)d 個已安裝套件不再受 Canonical 支援。您仍可以取得來自社群的支援。" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "即將移除 %d 個套件。" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "即將安裝 %d 個新套件。" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "即將升級 %d 個套件。" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "要下載共 %s。 " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "安裝升級可能會花上幾個鐘頭。一旦下載完成,程序便無法取消。" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "升級的擷取與安裝可能花上數個鐘頭。一旦下載完成,升級程序無法取消。" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "移除套件可能會花上幾個鐘頭。 " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "這臺電腦上的軟體已處最新狀態。" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "您的系統已在最新狀態。現在會取消升級動作。" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "需要重新開機" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "升級已經完成並需要重新開機。是否馬上重新開機?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "請回報此錯誤並將檔案 /var/log/dist-upgrade/main.log 與 /var/log/dist-upgrade/apt.log " "附在您的報告中。升級程序已取消。\n" "您原先的 sources.list 儲存於 /etc/apt/sources.list.distUpgrade。" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "正在中止" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "降級:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "若要繼續請按 [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "繼續 [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "詳情 [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "不再支援:%s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "移除: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "安裝: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "升級: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "繼續 [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "需要重新開機才能完成升級。\n" "如果您選擇「y」系統將會重新開機。" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "共 %(total)li 個檔案,正下載第 %(current)li 個 (速度:%(speed)s/秒)" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "共 %(total)li 個檔案,正下載第 %(current)li 個" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "顯示單一檔案的進度" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "取消升級(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "繼續升級(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "是否取消正執行的升級?\n" "\n" "如果取消升級可能會導致系統不穩定。強烈建議您繼續升級。" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "開始升級(_S)" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "取代(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "檔案間的差別" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "回報錯誤(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "繼續(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "開始升級嗎?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "重新啟動系統以完成升級\n" "\n" "請在繼續前先儲存您的作業。" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "發行版升級" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "將 Ubuntu 升級至 13.04 版" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "設定新軟體頻道" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "重新啟動系統" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "終端" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "升級(_U)" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "有新版本 Ubuntu。要否升級?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "不升級" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "稍後再問我" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "是,馬上升級" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "您已拒絕升級至新的 Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "您之後若要升級,可以開啟「軟體更新」,再點擊「升級」。" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "執行發行版升級" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "要先核對身分才能升級 Ubuntu。" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "執行部份升級" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "要先核對身分才能為 Ubuntu 進行部分升級。" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "顯示版本後結束" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "含有資料檔案的目錄" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "執行指定的前端" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "執行部份升級" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "正下載發行版更新工具" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "檢查能否升級至最新開發發行版" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "試著使用 $distro-proposed 的套件升級程式來升級到最新的發行版本" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "在特殊升級模式執行。\n" "目前只支援以 'desktop' 模式升級桌面版本的系統,以及以 'server' 模式升級伺服器版的系統。" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "使用沙堆 aufs 層測試升級" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "檢查有否新發行版並以結束碼報告結果" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "檢查是否有新的 Ubuntu 發行" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "您的 Ubuntu 發行版本已經不再支援。" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "若要取得升級資訊,請參訪:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "沒找到新發行版" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "目前不能升級發行版" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "發行版升級升級目前無法執行,請稍後重試。該伺服器回報:「%s」。" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "有新版「%s」提供。" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "執行 ‘do-release-upgrade’ 進行升級工作。" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "可以升級至 Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "您已拒絕升級至 Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "加入除錯輸出" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "執行部分升級需要核對" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "執行發行版升級需要核對" ubuntu-release-upgrader-0.220.10/po/es.po0000644000000000000000000020304212431225715014761 0ustar # translation of update-manager to Spanish # This file is distributed under the same license as the update-manager package. # Copyright (c) 2004 Canonical # 2004 Michiel Sikkes # Jorge Bernal , 2005. # Jorge Bernal , 2005. # Paco Molinero , 2011. # msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-12-13 17:12+0000\n" "Last-Translator: Paco Molinero \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: es\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Servidor para %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Servidor principal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Servidores personalizados" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "No se puede calcular la entrada en sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "No se pudo localizar ningún paquete, quizá no es un disco de Ubuntu o no es " "la arquitectura correcta." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Error al añadir el CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Ha habido un error al añadir el CD; se ha interrumpido la actualización. " "Informe de esto como un fallo si este es un CD válido de Ubuntu.\n" "\n" "El mensaje de error fue:\n" "«%s»" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Desinstalar paquete en mal estado" msgstr[1] "Desinstalar paquetes en mal estado" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "El paquete «%s» está en un estado inconsistente y debe reinstalarse, pero no " "se encuentra en ningún repositorio. ¿Quiere desinstalar este paquete ahora " "para continuar?" msgstr[1] "" "Los paquetes «%s» están en un estado inconsistente y deben reinstalarse, " "pero no se encuentran en ningún repositorio. ¿Quiere desinstalar estos " "paquetes ahora para continuar?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "El servidor puede estar sobrecargado" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paquetes rotos" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Su sistema contiene paquetes rotos que no se pueden reparar con este " "software. Repárelos primero mediante Synaptic o apt-get antes de continuar." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Ha ocurrido un error irresoluble mientras se calculaba la actualización:\n" "%s\n" "\n" " Esto puede deberse a:\n" " * Que se está actualizando a una versión de Ubuntu aún no publicada\n" " * Que se está usando la actual versión aún no publicada de Ubuntu\n" " * Paquetes de software no oficiales, no suministrados por Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Probablemente sea un problema transitorio, inténtelo de nuevo más tarde." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Si nada de esto aplica, informe de este error usando la orden «ubuntu-bug " "ubuntu-release-upgrader-core» en una terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "No se ha podido calcular la actualización" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Error al autenticar algunos paquetes" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "No ha sido posible autenticar algunos paquetes. Esto puede ser debido a un " "problema transitorio en la red. Pruebe de nuevo más tarde. Vea abajo una " "lista de los paquetes no autenticados." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "El paquete «%s» está marcado para desinstalarse pero está en la lista negra " "de desinstalación." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "El paquete esencial «%s» ha sido marcado para su desinstalación." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Intentando instalar la versión prohibida «%s»" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "No se ha podido instalar «%s»" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Fue imposible instalar un paquete requerido. Informe de esto como un error " "usando «ubuntu-bug ubuntu-release-upgrader-core» en una terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "No se ha podido determinar el metapaquete" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Su sistema no contiene el paquete ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop o edubuntu-desktop, y no ha sido posible detectar qué versión de " "Ubuntu está ejecutando.\n" " Instale uno de los paquetes anteriores usando Synaptic o apt-get antes de " "proceder." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Leyendo la caché" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "No se ha podido obtener un bloqueo exclusivo" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Esto normalmente significa que ya se está ejecutando otra aplicación de " "gestión de paquetes (como apt-get o aptitude). Cierre esa aplicación primero." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Actualizando sobre conexión remota no compatible" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Está ejecutando la actualización sobre una conexión ssh remota con una " "interfaz de usuario que no lo permite. Intente actualizar en modo texto con " "«do-release-upgrade».\n" "\n" "La actualización se detendrá ahora. Pruebe sin ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "¿Continuar la ejecución bajo SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Esta sesión parece estar ejecutándose bajo ssh. No es recomendable hacer una " "actualización sobre ssh actualmente, porque en caso de fallo es muy difícil " "recuperarla.\n" "\n" "Si continua, se iniciará un demonio ssh adicional en el puerto «%s».\n" "¿Quiere continuar?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Iniciando sshd adicional" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Para facilitar la recuperación en caso de fallo, se iniciará un sshd " "adicional en el puerto «%s». Si algo va mal con el ssh en ejecución, aún " "podrá conectarse al adicional.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Si ejecuta un cortafuegos, puede necesitar abrir este puerto temporalmente. " "Como esto es potencialmente peligroso, no se hace automáticamente. Puede " "abrir el puerto con:\n" "«%s»" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "No se puede actualizar" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Esta herramienta no permite actualizaciones de «%s» a «%s»." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Falló la configuración de prueba" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "No ha sido posible crear un entorno de prueba." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Modo de prueba" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Esta actualización se esta realizando en el modo (prueba) «sandbox». Todos " "los cambios se escriben en «%s» y se perderán en el siguiente arranque.\n" "\n" "*Ninguno* de los cambios escritos en el directorio de sistema desde ahora " "hasta el siguiente arranque son permanentes." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Su instalación de python está dañada. Repare el enlace simbólico " "«/usr/bin/python»." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "El paquete «debsig-verify» está instalado" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "La actualización no puede continuar con ese paquete instalado.\n" "Desinstálelo con synaptic o «apt-get remove debsig-verify» primero y luego " "intente actualizar nuevamente." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "No se puede escribir en «%s»" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "No es posible escribir el directorio de sistema «%s» en su sistema. La " "actualización no puede continuar.\n" "Asegúrese de que el directorio de sistema permite escribir." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "¿Incluir las últimas actualizaciones desde Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "El sistema de actualización a una nueva versión puede usar Internet para " "descargar automáticamente las actualizaciones más recientes e instalarlas " "durante el proceso. Si dispone de una conexión a la red, esto es muy " "recomendable.\n" "\n" "La actualización llevará más tiempo, pero una vez terminada, el sistema " "estará completamente actualizado. Puede elegir no hacerlo, pero deberá " "instalar las nuevas actualizaciones inmediatamente después de pasar a la " "nueva versión.\n" "Si responde «no» ahora, la red no se usará para nada." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "(desactivado al actualizar a %s)" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "No se ha encontrado un servidor espejo válido" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Mientras se exploraba la información de su repositorio, no se encontró " "ninguna entrada para la réplica de la actualización. Esto puede ocurrir si " "corre una réplica interna o si la información de la réplica es antigua.\n" "\n" "¿Quiere reescribir su archivo «sources.list» de todos modos? Si elige «Sí» " "se actualizarán todas las entradas «%s» a «%s».\n" "Si selecciona «No» la actualización se cancelará." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "¿Generar orígenes predeterminados?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Después de explorar su «sources.list» no se encontraron entradas válidas " "para «%s».\n" "\n" "¿Se deben añadir entradas predeterminadas para «%s»? Si selecciona «No», la " "actualización se cancelará." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Información de repositorio no válida" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "La actualización de la información del repositorio dio como resultado un " "archivo no válido por lo que se está iniciando un proceso de notificación de " "errores." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Desactivados los orígenes de terceros" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Se han desactivado algunas entradas de otros proveedores en su " "«sources.list». Puede volver a activarlas tras la actualización con la " "herramienta «Orígenes del software», o con su gestor de paquetes." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paquete en un estado inconsistente" msgstr[1] "Paquetes en un estado inconsistente" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "El paquete «%s» está en un estado inconsistente y debe reinstalarse, pero no " "se encuentra en ningún repositorio. Reinstale el paquete manualmente o " "desinstálelo del sistema." msgstr[1] "" "Los paquetes «%s» están en un estado inconsistente y deben reinstalarse, " "pero no se encuentran en ningún repositorio. Reinstale los paquetes " "manualmente o desinstálelos del sistema." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Error durante la actualización" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Ocurrió un problema durante la actualización. Normalmente es debido a algún " "tipo de problema en la red, por lo que le recomendamos que compruebe su " "conexión de red y vuelva a intentarlo." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "No hay espacio suficiente en el disco" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "La actualización se canceló. La actualización necesita un total de %s de " "espacio libre en el disco «%s». Libere al menos %s de espacio en el disco " "«%s». Pruebe vaciando su papelera y borrando paquetes temporales de antiguas " "instalaciones usando la orden «sudo apt-get clean»." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Calculando los cambios" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "¿Quiere comenzar la actualización?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Actualización cancelada" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "La actualización se cancelará ahora y el sistema volverá a su estado " "original. Puede reanudar la actualización posteriormente." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "No se han podido descargar las actualizaciones" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "La actualización se ha anulado. Compruebe su conexión a Internet o los " "medios de instalación y vuelva a intentarlo. Todos los archivos descargados " "hasta el momento se han mantenido." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Error durante la confirmación" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Restaurando el estado original del sistema" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "No se han podido instalar las actualizaciones" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "La actualización se ha cancelado. Su sistema podría haber quedado en un " "estado no utilizable. Ahora se llevará a cabo una recuperación (dpkg --" "configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Informe de este error usando un navegador para ir a " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug y " "adjunte los archivos en /var/log/dist-upgrade/ al informe.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "La actualización se ha cancelado. Compruebe su conexión a Internet o el " "soporte de instalación y vuelva a intentarlo. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "¿Desinstalar los paquetes obsoletos?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Conservar" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Eliminar" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Ha ocurrido algún problema durante el limpiado. Lea el mensaje siguiente " "para tener más información. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "La dependencia requerida no está instalada" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "La dependencia requerida «%s» no está instalada. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Comprobando el gestor de paquetes" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Falló la preparación de la actualización" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Falló la preparación del sistema para actualizarse, de manera que se ha " "iniciado el proceso de informe de errores." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" "Ha fallado la obtención de los requisitos previos de la actualización" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "El sistema fue incapaz de obtener los requisitos previos para la " "actualización. La actualización se interrumpirá ahora y se restaurará el " "estado original del sistema.\n" "\n" "Adicionalmente, se está iniciando un proceso de notificación de errores." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Actualizando la información del repositorio" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Fallo al añadir el CDROM" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Lo sentimos, no se pudo añadir el CDROM" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Información sobre los paquetes no válida" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Después de actualizar la información de paquete, el paquete esencial «%s» no " "se puede localizar. Esto puede deberse a que no tiene las réplicas oficiales " "listadas en sus de orígenes de software o por una carga excesiva en la " "réplica que está usando. Vea /etc/apt/sources.list para conocer la " "configuración de lista actual de orígenes de software.\n" "En caso de tratarse de una sobrecarga de la réplica, debe esperar para " "reintentar la actualización más tarde." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Descargando" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Actualizando" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Actualización completada" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "La actualización se completó pero hubo errores durante el proceso." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Buscando paquetes obsoletos" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "La actualización del sistema se ha completado." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "La actualización parcial se ha completado." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "No se han podido encontrar las notas de publicación" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Puede que el servidor esté sobrecargado. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "No se han podido descargar las notas de publicación" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Por favor, compruebe su conexión a Internet." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "autenticar «%(file)s» contra «%(signature)s» " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "extrayendo «%s»" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "No se ha podido ejecutar la herramienta de actualización" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Lo más probable es que esto sea un error en la herramienta de actualización. " "Informe de esto con la orden «ubuntu-bug ubuntu-release-upgrader-core»." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Firma de la herramienta de actualización" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Herramienta de actualización" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Error al descargar" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Ha fallado la descarga de la actualización. Puede haber un problema con la " "red. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Error de autenticación" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Ha fallado la autenticación de la actualización. Es posible que exista un " "problema con la red o el servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Error al extraer" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Ha fallado la extracción de la actualización. Puede haber un problema con la " "red o el servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Falló la verificación" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Ha fallado la verificación de la actualización. Puede haber un problema con " "la red o con el servidor. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "No se ha podido ejecutar la actualización" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Esto normalmente ocurre en un sistema donde /tmp se ha montado como no " "ejecutable. Vuelva a montarlo sin «noexec» y ejecute de nuevo la " "actualización." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "El mensaje de error es «%s»" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Actualizar" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Notas de la versión" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Descargando archivos de paquetes adicionales..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Archivo %s de %s a %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Archivo %s de %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Inserte «%s» en la unidad «%s»" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Cambio de soporte" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "Se está usando «evms»" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Su sistema está usando el gestor de volúmenes «evms» en /proc/mounts. El " "software «evms» ya no está soportado; por favor, desactívelo y vuelva a " "ejecutar de nuevo la actualización." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "Su hardware de gráficos podría no ser compatible completamente con Ubuntu " "13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "El entorno de escritorio en ejecución «Unity» no es totalmente compatible " "con su hardware de gráficos. Tal vez terminé en un entorno muy lento después " "de la actualización. Nuestro consejo es mantener la versión LTS, por ahora. " "Para obtener más información, consulte " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D ¿Aún desea " "continuar con la actualización?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Su hardware de gráficos no es plenamente compatible con Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "La compatibilidad en Ubuntu 12.04 LTS para su hardware de gráficos Intel " "está limitada y puede encontrar problemas tras la actualización. Para tener " "más información vea " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx ¿Quiere continuar " "con la actualización?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "La actualización puede reducir los efectos de escritorio, así como el " "rendimiento de los juegos y otros programas que usen gráficos de forma " "intensiva." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Este equipo está usando el controlador gráfico «nvidia» de NVIDIA. No se " "encuentra disponible en Ubuntu 10.04 LTS una versión de este controlador que " "funcione con su hardware.\n" "\n" "¿Quiere continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Este equipo está usando el controlador gráfico «fglrx» de AMD. No se " "encuentra disponible en Ubuntu 10.04 LTS una versión de este controlador que " "funcione con su hardware.\n" "\n" "¿Quiere continuar?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Sin CPU i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Su sistema usa una CPU i586 CPU o una CPU que no tiene la extensión «cmov». " "Todos los paquetes se han construido con optimizaciones que requieren i686 " "como arquitectura mínima. No es posible actualizar su sistema a la nueva " "versión de Ubuntu con este hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "No hay CPU ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Su sistema usa una CPU ARM que es más antigua que la arquitectura ARMv6. " "Todos los paquetes en karmic han sido construidos con optimizaciones que " "requieren ARMv6 como arquitectura mínima. No es posible actualizar sus " "sistema a la nueva versión de Ubuntu con este hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "El demonio init no está disponible" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Parece que su sistema es un entorno virtualizado sin un demonio init (un " "Linux-VServer, p.ej.). Ubuntu 10.04 LTS no puede funcionar en este tipo de " "entorno, por lo que primero se requiere una actualización de la " "configuración de su máquina virtual.\n" "\n" "¿Está seguro de que quiere continuar?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Actualización de prueba usando aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Usar la ruta dada para buscar un CD-ROM con paquetes actualizables" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Usar interfaz de usuario. Actualmente disponibles: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*OBSOLETO* esta opción se ignorará" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Realizar solo una actualización parcial (no se reescribirá el «sources.list»)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Desactive el soporte de pantalla GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Establecer datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "La descarga se ha completado" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Descargando archivo %li de %li a %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Faltan alrededor de %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Descargando archivo %li de %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Aplicando los cambios" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemas de dependencias - se deja sin configurar" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "No se ha podido instalar «%s»" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "La actualización continuará, pero es posible que el paquete «%s» no se " "encuentre en un estado funcional. Considere la posibilidad de enviar un " "informe de error acerca de esto." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "¿Quiere sustituir el archivo de configuración modificado\n" "«%s»?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Perderá todos los cambios que haya realizado en este archivo de " "configuración si decide sustituirlo por una nueva versión." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "No se ha encontrado la orden «diff»" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ha ocurrido un error fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Informe de este fallo (si todavía no lo ha hecho) e incluya los archivos " "/var/log/dist-upgrade/main.log y /var/log/dist-upgrade/apt.log en el " "informe. La actualización se ha cancelado.\n" "Su archivo sources.list original se guardó en " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Se ha pulsado Ctrl-C" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Esto cancelará la operación y puede dejar al sistema en un estado " "defectuoso. ¿Seguro que quiere hacer eso?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para prevenir la pérdida de datos, cierre todas las aplicaciones y " "documentos." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Ya no está soportado por Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Desactualizar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Eliminar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Ya no es necesario (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instalar (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Actualizar (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Mostrar diferencias >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Ocultar diferencias" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Error" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Cancelar" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Cerrar" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Mostrar terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Ocultar terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Información" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detalles" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Ya no está soportado %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Eliminar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Eliminar (fue autoinstalado) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instalar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Actualizar %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Se requiere reiniciar" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Reinicie el sistema para completar la actualización" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Reiniciar ahora" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "¿Cancelar la actualización en curso?\n" "\n" "El sistema podría quedar en un estado no utilizable si cancela la " "actualización. Le recomendamos encarecidamente que continúe la actualización." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "¿Cancelar la actualización?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li día" msgstr[1] "%li días" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hora" msgstr[1] "%li horas" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuto" msgstr[1] "%li minutos" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li segundo" msgstr[1] "%li segundos" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Esta descarga tardará %s aproximadamente con una conexión DSL de 1Mbit y %s " "aproximadamente con un módem de 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Esta descarga tardará aproximadamente %s con su conexión actual. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Preparando la actualización" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Obteniendo nuevos canales de software" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Obteniendo paquetes nuevos" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Instalando las actualizaciones" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Limpiando" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d paquete instalado ya no está soportado por Canonical. Puede " "seguir obteniendo soporte de la comunidad." msgstr[1] "" "%(amount)d paquetes instalados ya no están soportados por Canonical. Puede " "seguir obteniendo soporte de la comunidad." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Se va a desinstalar %d paquete." msgstr[1] "Se van a desinstalar %d paquetes." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Se va a instalar %d paquete nuevo." msgstr[1] "Se van a instalar %d paquetes nuevos." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Se va a actualizar %d paquete." msgstr[1] "Se van a actualizar %d paquetes." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Debe descargar un total de %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Esta actualización puede tardar varias horas. Una vez finalice la descarga, " "el proceso no se podrá cancelar." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Recoger e instalar la actualización puede llevar varias horas. Una vez que " "la descarga haya terminado, el proceso no se puede cancelar." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "La desinstalación de los paquetes puede tardar varias horas. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "El software de este equipo está actualizado." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "No hay actualizaciones disponibles para su sistema. Se ha cancelado la " "actualización." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Se requiere reiniciar el equipo" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "La actualización ha finalizado y se necesita reiniciar el equipo. ¿Quiere " "hacerlo ahora?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Informe de este fallo e incluya los archivos /var/log/dist-upgrade/main.log " "y /var/log/dist-upgrade/apt.log en el informe. La actualización ha sido " "cancelada.\n" "Su archivo sources.list original se guardó en " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Cancelando" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Para quitar:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Para continuar, pulse Intro" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Continuar [sN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detalles [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "s" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Ya no está soportado: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Desinstalar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instalar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Actualizar: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continuar [Sn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Para finalizar la actualización se necesita reiniciar.\n" "Si selecciona «s» el sistema reiniciará." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Descargando archivo %(current)li de %(total)li a %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Descargando archivo %(current)li de %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Mostrar el progreso de cada archivo individual" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Cancelar la actualización" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Continuar la actualización" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "¿Cancelar la actualización en curso?\n" "\n" "El sistema podría quedar en un estado no utilizable si cancela la " "actualización. Le recomendamos encarecidamente que continúe la actualización." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Iniciar la actualización" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Sustituir" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Diferencia entre los archivos" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Informar de un error" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continuar" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "¿Comenzar la actualización?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Reinicie el sistema para completar la actualización\n" "\n" "Guarde su trabajo antes de continuar." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Actualización completa de la distribución" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Actualizando Ubuntu a la versión 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Configurando nuevos canales de software" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Reiniciando el equipo" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Actualizar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Está disponible una nueva versión de Ubuntu. ¿Le gustaría actualizar?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "No actualizar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Preguntar más tarde" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Sí, actualizar ahora" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Ha decidido no actualizarse a la nueva versión de Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Puede actualizar posteriormente yendo a la Actualización de software y " "pulsando en «Actualizar»." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Realizar una actualización de la versión" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Para actualizar Ubuntu, necesita autenticarse." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Realizar una actualización parcial" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Para realizar una actualización parcial necesita autenticarse." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Mostrar la versión y salir" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Directorio que contiene los archivos de datos" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Ejecutar la interfaz especificada" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Ejecutando una actualización parcial" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Descargando la herramienta de actualización de la versión" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Comprobar si es posible actualizar a la última versión de desarrollo" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Intente actualizar a la última versión usando el actualizador de $distro-" "proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Ejecutar en un modo especial de actualización.\n" "Actualmente se permiten los modos «desktop» (para actualizaciones normales " "de un sistema de escritorio) y «server» (para servidores)." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Comprobar la actualización en una capa aufs de prueba" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Comprueba únicamente si está disponible una nueva versión de la distribución " "e informa del resultado mediante un código de salida" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Comprobar si hay una nueva versión de Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Su versión de Ubuntu ya no tiene soporte." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Para saber más sobre esta actualización, visite:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "No se ha encontrado ninguna edición nueva" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "En este momento no es posible la actualización de versión" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "La actualización de versión no se puede realizar en este momento, inténtelo " "de nuevo después. El servidor informó: «%s»" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Está disponible la nueva versión «%s»." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Ejecute «do-release-upgrade» para actualizarse a ella." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Está disponible la actualización a Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Ha decidido no actualizarse a Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Añadir resultado de la depuración" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Para realizar una actualización parcial, necesita autenticarse" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Para actualizar la distribución, necesita autenticarse" ubuntu-release-upgrader-0.220.10/po/da.po0000644000000000000000000017720312431225715014747 0ustar # Danish translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # Anders Jenbo , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-06-19 19:08+0000\n" "Last-Translator: Aputsiaq Niels Janussen \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: da\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Hovedserver" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Brugerdefinerede servere" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Kunne ikke beregne sources.list-linje" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Kunne ikke finde nogen pakkefiler, måske er dette ikke en Ubuntu-disk eller " "også er det en forkert arkitektur?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Kunne ikke tilføje cd" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Der opstod en fejl ved tilføjelse af cd'en, opgraderingen afbrydes. " "Rapportér venligst dette som en fejl, hvis dette er en gyldig Ubuntu-cd.\n" "\n" "Fejlmeddelelsen var:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Fjern pakke som er i en dårlig tilstand" msgstr[1] "Fjern pakker som er i en dårlig tilstand" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Pakken \"%s\" er usammenhængende og skal geninstalleres, men intet arkiv " "kunne findes til denne. Ønsker du at fjerne denne pakke nu for at fortsætte?" msgstr[1] "" "Pakkerne \"%s\" er usammenhængende og skal geninstalleres, men intet arkiv " "kunne findes til disse. Ønsker du at fjerne disse pakker nu for at fortsætte?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Serveren er muligvis overbelastet" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Ødelagte pakker" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Dit system indeholder ødelagte pakker, som ikke kan repareres med dette " "program. Reparér dem venligst med synaptic eller apt-get før du fortsætter." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Et uløseligt problem opstod under beregning af opgraderingen:\n" "%s\n" "\n" "Det kan ske, hvis man:\n" " * Opgraderer til en udviklingsudgave af Ubuntu\n" " * Kører den nuværende udviklingsudgave af Ubuntu\n" " * Bruger uofficielle software-pakker, der ikke leveres af Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Dette er højst sandsynligt et forbigående problem, prøv igen senere." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Hvis intet af dette gælder, så rapportér venligst denne fejl med brug af " "kommandoen \"ubuntu-bug ubuntu-release-upgrader-core\" i en terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Kunne ikke beregne opgraderingen" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Fejl ved godkendelse af nogle pakker" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Nogle pakker kunne ikke godkendes. Dette kan skyldes et forbigående problem " "med netværket. Det anbefales, at du prøver igen senere. Se længere nede " "listen over pakker som ikke kunne godkendes." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Pakken \"%s\" er markeret til fjernelse, men den er i listen over pakker, " "der ikke må fjernes." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Den nødvendige pakke \"%s\" er markeret til fjernelse." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Forsøger at installere sortlistet version \"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Kan ikke installere \"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Det var umuligt at installere en påkrævet pakke. Rapportér venligst dette " "som en fejl ved at angive 'ubuntu-bug ubuntu-release-upgrader-core' i en " "terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Kan ikke gætte meta-pakke" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Dit system indeholder ikke en ubuntu-desktop-, kubuntu-desktop-, xubuntu-" "desktop- eller edubuntu-desktop-pakke, og det var ikke muligt at genkende, " "hvilken Ubuntu-udgave du kører.\n" "\n" "Installér venligst en af ovenfor nævnte pakker ved hjælp af synaptic eller " "apt-get, før du fortsætter." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Læser cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Kan ikke opnå eksklusiv lås" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Det skyldes sandsynligvis, at et andet pakkehåndterings-program (såsom apt-" "get eller aptitude) allerede kører. Luk venligst det program først." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Opgradering over fjernforbindelse er ikke understøttet" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Du kører opgraderingen over en ekstern ssh-forbindelse med en grænseflade, " "der ikke understøtter dette. Prøv en teksttilstandopgradering med \"do-" "release-upgrade\".\n" "\n" "Opgraderingen vil afbryde nu. Prøv uden ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Forsæt med at køre over SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Denne session kører over ssh. Det er ikke anbefalet at udføre en opgradering " "over ssh i øjeblikket, da det i tilfælde af en fejl er sværere at genskabe.\n" "\n" "Hvis du vil fortsætte, vil en ekstra ssh-tjeneste blive startet på port " "\"%s\"\n" "Vil du fortsætte?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Starter ekstra sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "For at sikre nemmere genetablering i tilfælde af fejl, vil en ekstra sshd " "blive startet på port \"%s\". Hvis noget går galt med den kørende ssh, kan " "du stadig forbinde til den ekstra.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Hvis du har en firewall, kan det være nødvendigt midlertidigt at åbne denne " "port. Da der potentielt kan være fare forbundet med dette, vil det ikke " "blive gjort automatisk. Du kan åbne porten med f.eks.:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Kan ikke opgradere" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "En opgradering fra \"%s\" til \"%s\" er ikke understøttet med dette værktøj." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Testopsætning mislykkedes" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Det var ikke muligt at oprette testmiljøet." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Testtilstand" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Denne opgradering kører i sandkassetilstand (test). Alle ændringer skrives " "til \"%s\" og vil gå tabt efter næste genstart.\n" "\n" "*Ingen* ændringer, der skrives til et systemkatalog fra nu af og indtil " "næste genstart, er permanente." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Din python-installation er beskadiget. Ret venligst det symbolske link i " "\"/usr/bin/python\"." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pakken \"debsig-verify\" er installeret" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Opgraderingen kan ikke fortsætte med den pakke installeret.\n" "Fjern den først med synaptic eller \"apt-get remove debsig-verify\" og kør " "så opgraderingen igen." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Kan ikke skrive til \"%s\"" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Det er ikke muligt at skrive til systemkataloget \"%s\" på dit system. " "Opgraderingen kan ikke fortsætte.\n" "Kontrollér venligst der kan skrives til systemkataloget." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Inkludér de seneste opdateringer fra internettet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Opgraderingssystemet kan bruge internettet til automatisk at hente de " "seneste opdateringer, samt installere dem. Dette anbefales kraftigt, hvis du " "har en netværksforbindelse.\n" "\n" "Opgraderingen vil tage længere tid, men når den er færdig, vil dit system " "være fuldt opdateret. Du kan vælge ikke at gøre dette, men du bør installere " "de nyeste opdateringer snarest efter opgradering.\n" "Hvis du svarer \"nej\" her, benyttes netværket slet ikke." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "slået fra under opgradering til %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Ingen gyldige kilder fundet" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Under scanning af dine softwarekilder blev et filspejl til opgraderingen " "ikke fundet. Dette kan ske, hvis du anvender et internt filspejl, eller hvis " "filspejlets oplysninger er forældede.\n" "\n" "Vil du ændre filen \"sources.list\" alligevel? Hvis du vælger \"Ja\" her vil " "den opdatere alle \"%s\" til \"%s\" poster.\n" "Hvis du vælger \"Nej\" annulleres opgraderingen." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Generér standardkilder?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Under scanning af din \"sources.list\" blev ingen gyldig værdi for \"%s\" " "fundet.\n" "\n" "Skal standardværdier for \"%s\" tilføjes? Hvis du vælger \"Nej\", annulleres " "opgraderingen." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Arkivinformation ugyldig" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Opgradering af arkivinformationerne resulterede i en ugyldig fil, så der " "startes nu en fejlrapporteringsproces." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Trediepartskilder er fravalgt" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Nogle tredjepartselementer i din sources.list blev deaktiveret. Du kan " "genaktivere dem efter opgraderingen med værktøjet \"Softwarekilder\" eller " "med pakkehåndtering." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pakke i inkonsistent tilstand" msgstr[1] "Pakker i inkonsistent tilstand" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Pakkerne \"%s\" er usammenhængende og skal geninstalleres, men der blev ikke " "fundet nogen tilhørende arkiver. Geninstallér venligst pakkerne manuelt " "eller fjern dem fra systemet." msgstr[1] "" "Pakkerne \"%s\" er usammenhængende og skal geninstalleres, men der blev ikke " "fundet et tilhørende arkiv. Geninstallér venligst pakkerne manuelt eller " "fjern dem fra systemet." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Fejl under opdatering" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "En fejl forekom under opdateringen. Dette skyldes som regel et " "netværksproblem, kontrollér venligst din netværksforbindelse og prøv igen." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Der er ikke nok fri diskplads" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Opgraderingen er blevet afbrudt. Opgraderingen kræver samlet %s fri " "diskplads på disken \"%s\". Frigør venligst mindst yderligere %s diskplads " "på \"%s\". Tøm papirkurven og fjern midlertidige pakker fra tidligere " "installationer ved hjælp af kommandoen \"sudo apt-get clean\"." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Udregner ændringerne" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Vil du starte opgraderingen?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Opgradering annulleret" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Denne opgradering vil nu blive annulleret, og den originale tilstand for " "systemet vil blive gendannet. Du kan genoptage opgraderingen på et senere " "tidspunkt." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Kunne ikke hente opgraderingerne" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Opgraderingen blev afbrudt. Kontroller venligst din internetforbindelse " "eller installationsmedie og prøv igen. Alle filer der blev hentet indtil " "videre er blevet gemt." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Fejl under gennemførelse" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Genskaber oprindelig systemtilstand" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Kunne ikke installere opgraderingerne" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Opgraderingen er blevet afbrudt. Dit system kan være ude af stand til at " "starte. Der vil nu blive kørt en genoprettelse (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Rapportér venligst denne fejl i en browser via " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug og " "vedhæft filerne i /var/log/dist-upgrade/ til fejlrapporten.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Opgraderingen er blevet afbrudt. Kontroller venligst din internetforbindelse " "og installationsmedie og prøv igen. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Fjern forældede pakker?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Behold" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Fjern" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Et problem opstod under oprydningen. Se venligst beskeden nedenfor for mere " "information. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Påkrævede afhængigheder er ikke installeret" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Den påkrævede afhængighed \"%s\" er ikke installeret. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Kontrollerer pakkehåndtering" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Klargøring af opgraderingen fejlede" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Forberedelse af systemet til opgradering mislykkedes, så der startes nu en " "fejlrapporteringsproces." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Hentning af opgraderingsforudsætninger fejlede" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Systemet kunne ikke finde forudsætningerne for en opgradering. Opgraderingen " "vil nu afbryde, og gendanne den oprindelige systemtilstand.\n" "\n" "Der ud over startes en fejlrapporteringsproces." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Opdaterer arkivinformation" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Fejl under tilføjelse af cd-rom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Beklager, tilføjelse af cd-rom'en mislykkedes." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Ugyldig pakkeinformation" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Efter opdatering af dine pakkeinformationer, blev den grundlæggende pakke " "\"%s\" ikke fundet. Dette kan skyldes, at du ikke har officielle " "spejlservere i dine softwarekilder, eller at der for høj belastning på " "spejlserveren, du anvender. Se i /etc/apt/sources.list for at finde den " "nuværende liste over softwarekilder.\n" "I tilfælde af en overbelastet spejlserver, kan du forsøge at opgradere igen " "senere." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Henter" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Opgraderer" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Opgradering gennemført" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Opgraderingen er afsluttet, men der opstod fejl under opgraderingsprocessen." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Søger efter forældet software" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Systemopgradering er fuldført." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Den delvise opgradering er færdig." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Kunne ikke finde udgivelsesnoterne" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Serveren kan være overbelastet. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Kunne ikke hente udgivelsesnoterne" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Kontrollér venligst din internetforbindelse." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "godkend '%(file)s' mod '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "pakker \"%s\" ud" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Kunne ikke køre opgraderingsværktøjet" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Dette er højst sandsynligt en fejl i opgraderingsværktøjet. Rapportér " "venligst dette som en fejl, med brug af kommandoen \"ubuntu-bug ubuntu-" "release-upgrader-core\"." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Opgradér værkstøjets signatur" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Opgraderingsværktøj" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Fejl ved hentning" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Hentning af opgraderingen fejlede. Dette kan skyldes et netværksproblem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Godkendelse mislykkedes" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Godkendelse af opgraderingen fejlede. Der er muligvis et problem med " "netværket eller med serveren. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Fejl ved udpakning" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Udpakning af opgraderingen fejlede. Dette kan skyldes et problem med " "netværket eller med serveren. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verifikation mislykkedes" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Efterprøvning af opgraderingen fejlede. Det skyldes muligvis et problem med " "netværket eller serveren. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Kan ikke køre opgraderingen" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Dette er normalt forårsaget af et system hvor /tmp er monteret noexec. " "Montér venligst uden noexec og kør opgraderingen igen." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Fejlmeddelelsen er \"%s\"." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Opgradér" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Udgivelsesnoter" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Henter yderligere pakkefiler..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Fil %s ud af %s ved %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Fil %s ud af %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Indsæt venligst \"%s\" i drevet \"%s\"" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Medieskift" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms er i brug" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Dit system bruger diskområdehåndteringen \"evms\" i /proc/mounts. \"evms\"-" "softwaren understøttes ikke længere. Slå den venligst fra og kør " "opgraderingen igen, når dette er gjort." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "Dit grafikudstyr understøttes muligvis ikke fuldt ud i Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Kørsel af skrivebordsmiljøet \"unity\" understøttes ikke fuldt ud af dit " "grafikudstyr. Du vil muligvis ende med et meget langsomt miljlø efter " "opgraderingen. Vores anbefaling er at bevare LTS-versionen indtil videre. " "For mere information, se " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D . Ønsker du " "stadig at fortsætte med opgraderingen?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Din grafikhardware understøttes muligvis ikke fuldt ud i Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Der er begrænset understøttelse af din Inter-grafikhardware i Ubuntu 12.04, " "og du vil måske få problemer efter opgraderingen. Yderligere oplysninger kan " "findes på https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx . Vil " "du fortsætte med opgraderingen?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Opgradering kan reducere skrivebordseffekter, ydelse i spil og " "grafikintensive programmer." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Denne computer benytter i øjeblikket NVIDIA's \"nvidia\"-grafikdriver. Der " "er ingen version af denne driver tilgængelig, som fungerer sammen med dit " "grafikkort i Ubuntu 10.04 LTS.\n" "\n" "Vil du fortsætte?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Denne computer benytter i øjeblikket AMD's \"fglrx\"-grafikdriver. Der er " "ingen version af denne driver tilgængelig, som fungerer sammen med dit " "grafikkort i Ubuntu 10.04 LTS.\n" "\n" "Vil du fortsætte?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Ikke en i686 cpu" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Dit system bruger en i586 cpu eller en cpu, der ikke har \"cmov-" "udvidelsen\". Alle pakker er bygget med optimeringer, der kræver i686 som et " "minimum. Det er ikke muligt at opgradere dit system til en nyere udgave af " "Ubuntu med denne hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Ingen ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Dit system bruger en ARM CPU, der er ældre end ARMv6-arkitekturen. Alle " "pakker i karmic blev bygget med optimeringer der kræver ARMv6 som den " "minimale arkitektur. Det er ikke muligt at opgradere dit system til en ny " "Ubuntu-udgave med denne hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Ingen tilgængelig init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Dit system synes at være et virtualiseret miljø uden en init-dæmon, f.eks. " "Linux-VServer. Ubuntu 10.04 LTS kan ikke fungere i denne type miljø, hvilket " "nødvendiggør en opdatering af din virtuelle maskines konfiguration.\n" "\n" "Er du sikker på at du vil fortsætte?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Kør opgraderingen i et lukket miljø via aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Brug den angivne sti til at søge efter en cdrom med pakker der kan opgraderes" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Brug brugerinterface. Tilgængelige i øjeblikket: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*UDFASET* dette valg vil blive ignoreret" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Udfør kun en delvis opgradering (ingen genskrivning af sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Slå understøttelse af GNU screen fra." #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Indstil datamappe" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Hentning er gennemført" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Henter fil %li ud af %li ved %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Omkring %s tilbage" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Henter fil %li af %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Udfører ændringer" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "afhængighedsproblemer - forlader ukonfigureret" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Kunne ikke installere \"%s\"" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Opgraderingen vil fortsætte, men pakken \"%s\" er muligvis ikke i en " "fungerende tilstand. Overvej at indsende en fejlrapport om det." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Udskift den tilpassede konfigurationsfil\n" "\"%s\"?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Du mister alle ændringer, du har lavet til denne konfigurationsfil, hvis du " "vælger at erstatte den med en nyere udgave." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Kommandoen \"diff\" blev ikke fundet" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "En alvorlig fejl opstod" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapporter venligst dette som en fejl (hvis du ikke allerede har gjort det) " "og inkluder filerne /var/log/dist-upgrade/main.log og /var/log/dist-" "upgrade/apt.log i din rapport. Opgraderingen er blevet afbrudt.\n" "Din originale sources.list blev gemt i /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c trykket" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Dette vil afbryde handlingen og kan efterlade systemet i en ødelagt " "tilstand. Er du sikker på at du vil gøre det?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Luk alle åbne programmer og dokumenter for at undgå tab af data." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Ikke længere understøttet af Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Nedgrader (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Fjern (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Ikke længere nødvendig (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Installér (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Opgrader (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Vis forskel >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Skjul forskel" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Fejl" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Luk" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Vis terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Skjul terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Oplysninger" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detaljer" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Ikke længere understøttet %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Fjern %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Fjern (var installeret automatisk) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Installér %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Opgradér %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Genstart påkrævet" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Genstart systemet for at fuldføre opgraderingen" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Genstart nu" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Annullér den igangværende opgradering?\n" "\n" "Systemet kan ende i en ubrugelig tilstand, hvis du annullerer opgraderingen. " "Du opfordres kraftigt til at genoptage opgraderingen." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Afbryd Opgradering?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dag" msgstr[1] "%li dage" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li time" msgstr[1] "%li timer" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minut" msgstr[1] "%li minutter" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekund" msgstr[1] "%li sekunder" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Denne overførsel vil tage omkring %s med en 1Mbit DSL-forbindelse og omkring " "%s med et 56k modem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Denne overførsel vil tage omkring %s med din forbindelse. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Gør klar til opgradering" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Indhenter nye softwarekanaler" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Henter nye pakker" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installerer opgraderingerne" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Rydder op" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d installeret pakke understøttes ikke længere af Canonical. Du kan " "stadig få support fra fællesskabet." msgstr[1] "" "%(amount)d installerede pakker understøttes ikke længere af Canonical. Du " "kan stadig få support fra fællesskabet." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakke vil blive fjernet." msgstr[1] "%d pakker vil blive fjernet." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d ny pakke vil blive installeret." msgstr[1] "%d nye pakker vil blive installeret." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakke vil blive opgraderet." msgstr[1] "%d pakker vil blive opgraderet." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Du skal i alt hente %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Det kan tage flere timer at installere opgraderingen. Når først filerne er " "hentet, kan processen ikke afbrydes." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Det kan tage flere timer at hente og installere opgraderingen. Når først " "filerne er hentet, kan processen ikke afbrydes." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Det kan tage flere timer at fjerne pakkerne. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Softwaren på denne computer er fuldt opdateret." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Der er ingen opgraderinger tilgængelige for dit system. Opgraderingen vil nu " "blive afbrudt." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Genstart af maskinen er påkrævet" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Opgraderingen er afsluttet og et genstart af maskinen er påkrævet. Vil du " "gøre dette nu?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapporter venligst dette som en fejl og inkluder filerne /var/log/dist-" "upgrade/main.log og /var/log/dist-upgrade/apt.log i din rapport. " "Opgraderingen er blevet afbrudt.\n" "Din originale sources.list blev gemt i /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Afbryder" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Nedgraderede:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Tryk [ENTER] for at fortsætte" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Fortsæt [jN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detaljer [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "j" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Ikke længere understøttet %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Fjern: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Installér: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Opgradér: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Fortsæt [Jn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "For at færdiggøre opgradering er en genstart påkrævet.\n" "Hvis du vælger \"j\" vil systemet blive genstartet." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Henter fil %(current)li af %(total)li med %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Henter fil %(current)li af %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Vis fremgang for individuelle filer" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Afbryd opgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Genoptag opgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Afbryd den igangværende opgradering?\n" "\n" "Systemet kan ende i en ubrugelig tilstand, hvis du afbryder opgraderingen. " "Det anbefales kraftigt, at du fortsætter opgraderingen." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Begynd opgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Erstat" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Forskel mellem filerne" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Rapportér fejl" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Fortsæt" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Start opgraderingen?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Genstart systemet for at fuldføre opgraderingen\n" "\n" "Gem dit arbejde, før du fortsætter." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Distributionsopgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Opgraderer Ubuntu til version 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Konfigurerer nye softwarekanaler" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Genstarter computeren" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Opgradér" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "En ny udgave af Ubuntu er tilgængelig. Ønsker du at opgradere?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Opgradér ikke" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Spørg mig senere" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ja, opgradér nu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Du har afslået at opgradere til den nye Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Du kan opgradere på et senere tidspunkt ved at åbne Software-opdateringen og " "klikke på \"Opgradér\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Udfør en opgradering af udgivelse" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Du skal godkende for at opgradere Ubuntu." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Udfør en delvis opgradering" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Du skal godkende for at udføre en delvis opgradering." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Vis version og afslut" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Mappe, der indeholder datafilerne" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Kør den specificerede brugergrænseflade" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Udfører delvis opgradering" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Hent værktøjet til udgivelsesopgraderingen" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Undersøg om det er muligt at opgradere til den seneste udviklerudgivelse" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Prøv at opgradere til den seneste udgivelse ved hjælp af " "opgraderingsprogrammet fra $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Kør i en speciel opgraderingstilstand.\n" "I øjeblikket understøttes \"desktop\" til almindelig opgradering af en " "hjemmecomputer og \"server\" til servere." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Udfør en testopgradering med et aufs-testtilstandslag" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Kontrollér kun om en ny distributionsudgave er tilgængelig, og rapportér " "resultatet via afslutningskoden" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Kontrollerer for ny udgave af Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Din Ubuntu-udgave understøttes ikke længere." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Se venligst følgende link for opgraderingsinformation:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Ingen ny udgave fundet" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Udgivelsesopgradering er ikke mulig i øjeblikket" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Opgraderingen af udgivelsen kan ikke udføres i øjeblikket. Prøv venligst " "igen senere. Serveren svarede: \"%s\"" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Ny udgivelse \"%s\" tilgængelig." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Kør \"do-release-upgrade\" for at opgradere til den." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Opgradering til Ubuntu %(version)s er tilgængelig" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Du har afslået at opgradere til Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Tilføj fejlsøgningsuddata" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Der kræves godkendelse for at udføre opgradering af udgivelse" ubuntu-release-upgrader-0.220.10/po/mus.po0000644000000000000000000013021012431225715015152 0ustar # Creek translation for update-manager # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2008. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Vogt \n" "Language-Team: Creek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/fi.po0000644000000000000000000017725112431225715014764 0ustar # update-manager's Finnish translation. # Copyright (C) 2005-2006 Timo Jyrinki # This file is distributed under the same license as the update-manager package. # Timo Jyrinki , 2005-2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 17:33+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: fi\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Palvelin maalle %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Pääpalvelin" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Määrittele palvelin" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list-riviä ei voi laskea" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Pakettitiedostoja ei löytynyt. Käytettävä levy ei ehkä ole Ubuntu-levy tai " "käyttöjärjestelmälaji voi olla väärä." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CD-levyä ei voitu lisätä" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD-levyä lisättäessä tapahtui virhe, päivitys keskeytyy. Jos käytössä oleva " "levy on toimiva Ubuntu-CD, tee tästä virheraportti.\n" "\n" "Virheilmoitus oli:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Poista huonossa tilassa oleva paketti" msgstr[1] "Poista huonossa tilassa olevat paketit" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Paketti ”%s” on ristiriitaisessa tilassa ja se tulee asentaa uudelleen, " "mutta sen pakettitiedostoa ei löydy. Haluatko poistaa tämän paketin nyt " "jatkaaksesi?" msgstr[1] "" "Paketit ”%s” ovat ristiriitaisessa tilassa ja ne tulee asentaa uudelleen, " "mutta niiden pakettitiedostoja ei löydy. Haluatko poistaa nämä paketit nyt " "jatkaaksesi?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Palvelin saattaa olla ylikuormitettu" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Rikkinäisiä paketteja" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Järjestelmä sisältää rikkinäisiä paketteja, joita ei voitu korjata tällä " "ohjelmalla. Korjaa ne käyttämällä synapticia tai apt-get -komentoa ennen " "jatkamista." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Päivitystä määriteltäessä tapahtui ratkaisematon ongelma:\n" "%s\n" "\n" " Tämä voi johtua:\n" " * Päivittämisestä Ubuntun julkaisemattomaan kehitysversioon\n" " * Ubuntun tämänhetkisen kehitysversion käyttämisestä\n" " * Ubuntuun kuulumattomien, epävirallisten ohjelmapakettien käyttämisestä\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Tämä on luultavasti hetkellinen ongelma. Yritä myöhemmin uudelleen." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Jos mikään näistä ei päde, raportoi aiheesta virheraportti kirjoittamalla " "päätteeseen seuraava komento:\"ubuntu-bug ubuntu-release-upgrader-core\"." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Tarvittavia päivitykseen liittyviä tarkistuksia ei voitu tehdä" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Joitain paketteja todennettaessa tapahtui virhe" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Joitain paketteja ei voitu todentaa. Tämä voi olla ohimenevä verkko-ongelma. " "Voit yrittää myöhemmin uudelleen. Alla on luettelo todentamattomista " "paketeista." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Paketti \"%s\" on merkitty poistettavaksi, mutta se on poistojen " "estolistalla." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Pakollinen paketti \"%s\" on merkitty poistettavaksi." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Paketista yritetään asentaa mustalla listalla olevaa versiota \"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Ei voitu asentaa pakettia \"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Vaaditun paketin asennus ei ollut mahdollista. Ilmoita tästä viasta " "kirjoittamalla päätteeseen \"ubuntu-bug ubuntu-release-upgrader-core\"." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Metapakettia ei voitu arvata" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Järjestelmääsi ei ole asennettu ubuntu-desktop-, kubuntu-desktop-, xubuntu-" "desktop- tai edubuntu-desktop-pakettia, joten käytössä olevaa Ubuntun " "versiota ei voitu tunnistaa.\n" "Asenna jokin luetelluista paketeista synapticilla tai apt-get-ohjelmalla " "ennen jatkamista." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Luetaan välimuistia" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Ei saatu haluttua lukitusta" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Tämä tarkoittaa yleensä, että toinen pakettienhallintaohjelma (kuten apt-get " "tai aptitude) on jo käynnissä. Sulje tämä toinen ohjelma ensin." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Päivittäminen etäyhteyden yli ei ole tuettu" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Versiopäivitys ssh-yhteyden välityksellä ei ole tuettu. Jos haluat tehdä " "versiopäivityksen ssh-yhteyden välityksellä, kirjoita komentoriville 'do-" "release-upgrade'.\n" "\n" "Päivitys sulkeutuu nyt. Jos mahdollista, suorita päivitys käyttämättä ssh-" "yhteyttä." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Jatka käyttäen SSH:ta?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Nykyinen istunto on muodostettu ssh-protokollan välityksellä. Päivitys ssh:n " "välityksellä ei ole suositeltavaa, sillä mahdollisessa virhetilanteessa " "palautuminen saattaa olla vaikeaa.\n" "\n" "Jos jatkat, ylimääräinen ssh-palvelu avataan porttiin '%s'.\n" "Haluatko jatkaa?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Käynnistän ylimääräisen SSH-palvelimen" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Jotta toipuminen ongelmatilanteesta olisi helpompaa, käynnistetään porttiin " "\"%s\" ylimääräinen SSH-palvelin. Jos jokin menee pieleen nykyisen SSH-" "istunnon kanssa, voit silti yhdistää tähän uuteen.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Jos käytössäsi on palomuuri, tämän portin avaaminen väliaikaisesti saattaa " "olla tarpeen. Koska portin avaus saattaa aiheuttaa tietoturvauhan, porttia " "ei avata automaattisesti. Voit avata portin seuraavasti:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Päivitys ei onnistu" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Tämä työkalu ei tue päivitystä \"%s\" -> \"%s\"." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Hiekkalaatikon asettaminen epäonnistui" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Hiekkalaatikkoympäristöä ei ollut mahdollista luoda." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Hiekkalaatikko-tila" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Päivitys ajetaan rajoitetussa hiekkalaatikko- eli testiympäristössä. " "Muutokset tallennetaan hakemistoon '%s' ja ne katoavat seuraavan " "uudelleenkäynnistyksen yhteydessä.\n" "\n" "*Mitään* muuotoksia ei tallenneta järjestelmähakemistoon tästä hetkestä " "lähtien seuraavaan uudelleenkäynnistykseen" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Python-asennuksesi on viallinen. Korjaa symbolinen linkki " "\"/usr/bin/python\"." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Paketti \"debsig-verify\" on asennettu" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Päivitys ei voi jatkua kyseisen paketin ollessa asennettu.\n" "Poista paketti Synaptic-ohjelmalla tai komennolla \"apt-get remove debsig-" "verify\" ja käynnistä päivitys uudelleen." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Ei voida kirjoittaa kohteeseen \"%s\"" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Hakemistoon '%s' ei voida tehdä muutoksia. Päivitystä ei voida jatkaa.\n" "Varmista, että kansiolla on kirjoitusoikeudet." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Sisällytä uusimmat päivitykset Internetistä?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Päivitysjärjestelmä voi ladata Internetistä uusimmat päivitykset " "automaattisesti ja asentaa ne päivityksen aikana. Jos sinulla on " "verkkoyhteys käytettävissä, tämä on hyvin suositeltavaa.\n" "\n" "Päivitys kestää tällöin pidempään, mutta valmistuttuaan järjestelmä on " "täysin ajan tasalla. Jos et tee tätä nyt, uusimmat päivitykset tulee joka " "tapauksessa ladata pian päivityksen jälkeen.\n" "Jos vastaat \"ei\" tähän, verkkoa ei käytetä lainkaan." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "otettu pois käytöstä päivitettäessä versioon %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Sopivaa peilipalvelinta ei löytynyt" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Ohjelmalähteen tietoja luettaessa ei löytynyt merkintää päivityksestä. Tämä " "voi tapahtua jos käytössäsi on yksityinen ohjelmalähde tai ohjelmalähteen " "tiedot eivät ole ajan tasalla.\n" "\n" "Korvataanko \"sources.list\"-tiedosto joka tapauksessa? Jos valitset " "\"Kyllä\", jokainen \"%s\" muutetaan muotoon \"%s\"." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Lisätäänkö oletusohjelmalähteet?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "”sources.list”-tiedostosta ei löytynyt kelvollista riviä lähteelle ”%s”.\n" "\n" "Tulisiko lähteen ”%s” oletusrivit lisätä? Jos valitse ”Ei”, päivitys " "keskeytyy." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Virhe ohjelmalähdetiedoissa" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Ohjelmistolähdetietojen päivitys tuotti virheellisen tiedoston, joten " "vianilmoitusprosessi käynnistetään." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Kolmannen osapuolen ohjelmalähteet poissa käytöstä" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Jotkin kolmannen osapuolen lähteet sources.list-tiedostossa ovat nyt poissa " "käytöstä. Voit ottaa ne uudelleen käyttöön päivityksen jälkeen " "\"Ohjelmalähteet\"-työkalulla tai pakettienhallintaohjelmalla." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paketti ristiriitaisessa tilassa" msgstr[1] "Paketteja ristiriitaisessa tilassa" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Paketti ”%s” on ristiriitaisessa tilassa ja se tulee asentaa uudelleen, " "mutta sen pakettitiedostoa ei löydy. Asenna paketti uudelleen käsin tai " "poista se järjestelmästä." msgstr[1] "" "Paketit ”%s” ovat ristiriitaisessa tilassa ja ne tulee asentaa uudelleen, " "mutta niiden pakettitiedostoja ei löydy. Asenna paketit uudelleen käsin tai " "poista ne järjestelmästä." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Virhe päivitettäessä" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Päivitettäessä tapahtui virhe. Tämä on yleensä jonkinlainen verkko-ongelma. " "Tarkista verkkoyhteytesi toiminta ja yritä uudelleen." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Levytilaa ei ole riittävästi" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Päivitys on keskeytynyt. Päivitys vaatii yhteensä %s vapaata tilaa levyllä " "”%s”. Vapauta siis vähintään %s lisää tilaa levyllä ”%s”. Tyhjennä roskakori " "sekä poista aiempien asennusten väliaikaiset tiedostot komennolla ”sudo apt-" "get clean”." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Lasketaan muutoksia" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Haluatko aloittaa päivityksen?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Päivitys peruttiin" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Päivitys perutaan ja järjestelmän alkuperäinen tila palautetaan. Voit jatkaa " "päivitystä halutessasi myöhemmin." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Päivityksiä ei voitu noutaa" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Päivitys on keskeytynyt. Tarkista Internet-yhteytesi tai asennusmedia ja " "yritä uudelleen. Kaikki ladatut tiedostot on toistaiseksi pidetty." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Virhe suoritettaessa" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Palautetaan alkuperäistä järjestelmän tilaa" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Päivityksiä ei voitu asentaa" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Päivitys on keskeytynyt. Järjestelmä saattaa olla epävakaassa tilassa. " "Palautuskomento suoritetaan nyt (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Ilmoita tästä viasta menemällä selaimella osoitteeseen " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug ja " "liittämällä polussa /var/log/dist-upgrade/ olevat tiedostot " "vikailmoitukseen.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Päivitys on keskeytynyt. Tarkista Internet-yhteytesi tai asennusmediasi ja " "yritä uudelleen. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Poistetaanko vanhentuneet paketit?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Säilytä" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Poista" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Siistimisvaiheessa ilmeni ongelma. Lisätietoja alla olevassa viestissä. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Vaadittuja riippuvuuksia ei ole asennettu" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Vaadittu riippuvuus \"%s\" ei ole asennettu. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Tarkistetaan pakettienhallintaa" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Päivityksen valmistelu epäonnistui" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Järjestelmän valmistelu versiopäivitystä varten epäonnistui, joten " "vianilmoitusprosessi käynnistetään." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Päivityksen esivaatimusten nouto epäonnistui" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Päivityksen esivaatimuksia ei saatu, ja päivitys lopetetaan. Järjestelmä " "palautetaan alkuperäiseen tilaansa.\n" "\n" "Virheraportointityökalu käynnistetään." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Päivitetään ohjelmalähdetietoja" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "CD-levyn lisääminen ei onnistunut" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "CD-levyn lisääminen ei onnistunut" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Pakettitiedot viallisia" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Noudetaan" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Päivitetään" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Päivitys on valmis" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Päivitys valmistui, mutta päivityksen yhteydessä tapahtui virheitä." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Etsitään vanhentuneita ohjelmistoja" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Järjestelmän päivitys on valmis." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Osittainen päivitys valmistui." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Julkaisutietoja ei löytynyt" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Palvelin voi olla ylikuormitettu. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Julkaisutietoja ei voitu noutaa" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Tarkista Internet-yhteytesi toimivuus." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "todentaa '%(file)s' vastaan '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "puretaan \"%s\"" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Päivitystyökalua ei voitu suorittaa" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Tämä johtuu todennäköisesti päivitysohjelmistossa olevasta ongelmasta. Tee " "vikailmoitus komennolla \"ubuntu-bug ubuntu-release-upgrader-core\"." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Päivitystyökalun allekirjoitus" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Päivitystyökalu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Nouto epäonnistui" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Päivityksen noutaminen epäonnistui. Tämä voi johtua verkko-ongelmasta. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Todennus epäonnistui" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Päivityksen todennus epäonnistui. Tämä voi johtua ongelmasta " "verkkoyhteydessä tai palvelimessa. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Purku epäonnistui" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Päivityksen purkaminen epäonnistui. Tämä voi johtua ongelmasta " "verkkoyhteydessä tai palvelimessa. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Varmennus epäonnistui" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Päivityksen tarkistaminen epäonnistui. Tämä voi johtua ongelmasta " "verkkoyhteydessä tai palvelimessa. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Päivitystä ei voi suorittaa" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Tämä johtuu yleensä siitä, että /tmp on liitetty noexec-valintaa käyttäen. " "Liitä /tmp uudelleen ilman noexec-valintaa ja suorita päivitys uudelleen." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Virheviesti oli \"%s\"." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Päivitä" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Julkaisutiedot" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Noudetaan tarvittavia pakettitiedostoja..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Tiedosto %s/%s nopeudella %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Tiedosto %s/%s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Aseta \"%s\" asemaan \"%s\"" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Median vaihto" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms on käytössä" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "/proc/mounts -tiedoston mukaan järjestelmässäsi on käytössä evms-" "taltionhallinta. evms-ohjelmistoa ei enää tueta, joten ole hyvä ja poista se " "käytöstä ja suorita päivitys uudelleen." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "Näytönohjaimesi ei välttämättä ole täysin tuettu Ubuntun 13.04-versiossa." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Unity-työpöytäympäristö ei ole täysin tuettu näytönohjaimellasi. Saatat " "huomata päivityksen jälkeen järjestelmän olevan erittäin hidas. " "Suosittelemme pitäytymään pitkäaikaisesti tuetussa LTS-versiossa " "toistaiseksi. Lue lisätietoja osoitteessa " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D - Haluatko " "kaikesta huolimatta jatkaa päivitystä?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Näytönohjaimesi ei välttämättä ole täysin tuettu Ubuntu 12.04 LTS -versiossa." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Intel-näytönohjaimesi tuki on rajoittunut Ubuntu 12.04 LTS -versiossa, joten " "saatat havaita ongelmia päivityksen jälkeen. Lisätietoja englanniksi: " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx - Haluatko jatkaa " "päivitystä?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Päivitys saattaa poistaa käytöstä visuaalisia tehosteita ja huonontaa " "joidenkin pelien ja graafisesti raskaiden ohjelmien suorituskykyä." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Tämä tietokone käyttää tällä hetkellä NVIDIAn ”nvidia”-näyttöajuria. " "Näytönohjaimesi kanssa toimivaa versiota tästä ajurista ei ole saatavilla " "Ubuntu 10.04 LTS:lle.\n" "\n" "Haluatko jatkaa?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Tämä tietokone käyttää tällä hetkellä AMD:n ”fglrx”-näyttöajuria. " "Näytönohjaimesi kanssa toimivaa versiota tästä ajurista ei ole saatavilla " "Ubuntu 10.04 LTS:lle.\n" "\n" "Haluatko jatkaa?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Ei i686-suoritin" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Järjestelmäsi käyttää i586-suoritinta tai muuta suoritinta, jossa ei ole " "cmov-laajennusta. Kaikki paketit on käännetty asetuksin, jotka vaativat " "vähintään i686-suorittimen. Nykyistä laitteistoasi ei siis ole mahdollista " "päivittää uudempaan Ubuntu-versioon." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Ei ARMv6-suoritinta" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Järjestelmässäsi on ARM-suoritin jonka arkkitehtuuri on vanhempi kuin ARMv6. " "Kaikki Karmicin ohjelmapaketit on optimoitu siten, että ne vaativat " "vähintään ARMv6-arkkitehtuuria tukevan suorittimen. Tästä syystä " "järjestelmäsi päivittäminen uuteen Ubuntun julkaisuun ei ole mahdollista." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Init-palvelua ei löydy" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Järjestelmäsi vaikuttaisi toimivan virtualisoidussa ympäristössä, jossa ei " "ole init-taustaohjelmaa. Tällaisia ovat esimerkiksi Linux-VServer. Ubuntu " "10.04 LTS ei toimi tällaisessa ympäristössä, vaan vaatii ensin " "virtuaalikoneen asetusten päivitystä.\n" "\n" "Haluatko varmasti jatkaa?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Hiekkalaatikkopäivitys aufs:ää käyttäen" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Käytä annettua polkua päivitettyjen pakettien etsimiseksi CD-levyltä." #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Valitse käyttöliittymä. Tällä hetkellä valittavissa ovat: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*VANHENNETTU* tämä valitsin ohitetaan" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Suorita vain osittainen päivitys (ei sources.list-uudelleenkirjoitusta)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Poista käytöstä GNU screen -tuki" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Aseta datahakemisto" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Nouto on valmis" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Noudetaan tiedostoa %li/%li nopeudella %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Noin %s jäljellä" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Noudetaan tiedostoa %li/%li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Muutoksia toteutetaan" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "riippuvuusongelmia - jätetään asetukset säätämättä" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Pakettia \"%s\" ei voitu asentaa" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Päivitys jatkuu mutta paketti %s ei välttämättä toimi päivityksen jälkeen. " "Harkitse vikailmoituksen tekemistä virheestä." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Korvataanko alkuperäisestä muutettu asetustiedosto\n" "\"%s\"?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Tähän asetustiedostoon tehdyt muutokset menetetään, jos se korvataan " "uudemmalla versiolla." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Komentoa 'diff' ei löytynyt" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Tapahtui vakava virhe" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ilmoita tästä virheraportilla (jos et ole niin jo tehnyt) ja sisällytä " "siihen tiedostot /var/log/dist-upgrade/main.log ja /var/log/dist-" "upgrade/apt.log. Päivitys on keskeytynyt.\n" "Alkuperäinen sources.list tallennettiin nimellä " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c painettu" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Tämä keskeyttää toiminnon ja saattaa jättää järjestelmän rikkinäiseen " "tilaan. Haluatko varmasti tehdä sen?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Jottei tietoja häviäisi, sulje kaikki avoinna olevat ohjelmat ja asiakirjat." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Canonical ei enää tue seuraavia (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Varhenna (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Poista (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Ei enää tarpeellinen (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Asenna (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Päivitä (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Näytä erot >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Piilota erot" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Virhe" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Peru" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Sulje" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Näytä pääte >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Piilota pääte" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Tiedot" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Yksityiskohdat" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Ei enää tuettu %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Poista %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Poistetaan (oli automaattisesti asennettu) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Asenna %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Päivitä %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Uudelleenkäynnistys vaaditaan" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Käynnistä järjestelmä uudelleen päivityksen " "viimeistelemiseksi" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Uudelleenkäynnistä nyt" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Peru käynnissä oleva päivitys?\n" "\n" "Järjestelmä voi olla käyttökelvottomassa tilassa, jos perut päivityksen. " "Päivityksen jatkaminen on erittäin suositeltavaa." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Peru päivitys?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li päivä" msgstr[1] "%li päivää" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li tunti" msgstr[1] "%li tuntia" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuutti" msgstr[1] "%li minuuttia" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekunti" msgstr[1] "%li sekuntia" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Nouto kestää noin %s 1Mbit-DSL-yhteydellä ja noin %s 56kbit-modeemilla." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Nouto kestää yhteydelläsi noin %s. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Valmistellaan päivitystä" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Noudetaan uusia ohjelmalähteitä" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Haetaan uusia paketteja" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Asennetaan päivityksiä" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Siistitään" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Canonical ei enää tue %(amount)d asennettua pakettia. Voit edelleen " "vastaanottaa yhteisön tarjoaman tuen." msgstr[1] "" "Canonical ei enää tue %(amount)d asennettua pakettia. Voit edelleen " "vastaanottaa yhteisön tarjoaman tuen." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paketti tullaan poistamaan." msgstr[1] "%d pakettia tullaan poistamaan." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d uusi paketti asennetaan." msgstr[1] "%d uutta pakettia asennetaan." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paketti päivitetään." msgstr[1] "%d pakettia päivitetään." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Noudettavaa yhteensä %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Versiopäivityksen asennus saattaa kestää useita tunteja. Kun lataus on " "valmis, prosessia ei ole mahdollista perua." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Päivitysten lataaminen ja asentaminen voi kestää useita tunteja. Lataamisen " "valmistuttua päivitystä ei voi peruuttaa." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Pakettien poisto saattaa kestää useita tunteja. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Tämän tietokoneen ohjelmistot on päivitetty." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Päivityksiä ei ole saatavilla järjestelmälle. Päivitys keskeytyy." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Uudelleenkäynnistys vaaditaan" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Päivitys on valmis ja uudelleenkäynnistys vaaditaan. Haluatko käynnistää " "tietokoneen uudelleen nyt?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ilmoita tästä virheraportilla ja sisällytä siihen tiedostot /var/log/dist-" "upgrade/main.log ja /var/log/dist-upgrade/apt.log. Päivitys on keskeytynyt.\n" "Alkuperäinen sources.list tallennettiin nimellä " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Peruutetaan" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Alennettu:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Jatka painamalla Enter" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Jatka [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Yksityiskohdat [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Ei enää tuettu: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Poista: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Asenna: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Päivitä: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Jatka [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Uudelleenkäynnistys vaaditaan päivityksen saattamiseksi loppuun.\n" "Jos valitset \"y\" (\"yes\" eli \"kyllä\") järjestelmä käynnistetään " "uudelleen." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Noudetaan tiedostoa %(current)li/%(total)li nopeudella %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Noudetaan tiedostoa %(current)li/%(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Näytä tiedostojen edistyminen" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Peru päivitys" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Jatka päivitystä" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Peruuta käynnissä oleva päivitys?\n" "\n" "Järjestelmä voi olla käyttökelvottomassa tilassa, jos peruutat päivityksen. " "Päivityksen jatkaminen on erittäin suositeltavaa." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Aloita päivitys" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Korvaa" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Tiedostojen väliset erot" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Tee virheraportti" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Jatka" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Aloitetaanko päivitys?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Käynnistä järjestelmä uudelleen, jotta päivitys valmistuu\n" "\n" "Tallenna työsi ennen jatkamista." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Jakelupäivitys" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Päivitetään Ubuntu versioon 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Asetetaan uusia ohjelmalähteitä" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Käynnistetään tietokone uudelleen" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Pääte" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Päivitä" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Uusi Ubuntun versio on saatavilla. Haluatko aloittaa päivityksen?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Älä päivitä" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Kysy myöhemmin uudestaan" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Kyllä, päivitä nyt" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Valitsin päivittämisen uuteen Ubuntun versioon" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Päivitys voidaan suorittaa myös myöhemmin avaamalla Ohjelmistopäivitykset ja " "napsauttamalla \"Päivitä\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Suorita järjestelmäpäivitys" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Ubuntun versiopäivitys vaatii tunnistautumisen." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Suorita osittainen päivitys" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Osittainen päivitys vaatii tunnistautumisen." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Näytä versio ja poistu" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Datatiedostoja sisältävä hakemisto" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Aja määritetty edustaohjelma" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Suoritetaan osittaista päivitystä" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Noudetaan julkaisupäivitystyökalua" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Tarkista onko päivittäminen uusimpaan kehitysversioon mahdollista" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Yritä päivittää uusimpaan julkaisuun käyttäen päivitysohjelmaa kohteesta " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Suorita erityisessä päivitystilassa.\n" "Tällä hetkellä tuettuina ovat \"desktop\" työpöytäjärjestelmän ja \"server\" " "palvelinjärjestelmän päivittämiseen." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testaa päivitystä hiekkalaatikossa aufs-peitekerroksella" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Tarkista vain onko uusi jakelujulkaisu saatavilla, ja kerro tulos " "poistumiskoodilla" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Etsitään uutta Ubuntu-julkaisua" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Ubuntu-versiosi ei ole enää tuettu." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Lisätietoja päivityksestä osoitteessa\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Uutta julkaisua ei löytynyt" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Julkaisupäivitystä ei ole mahdollista suorittaa juuri nyt" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Julkaisupäivitystä ei voi suorittaa juuri nyt, koeta myöhemmin uudelleen. " "Palvelimen vastaus: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Uusi julkaisu ”%s” saatavilla." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Aja \"do-release-upgrade\" päivittääksesi siihen." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Päivitys versioon Ubuntu %(version)s on saatavilla" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Voit valita päivityksen Ubuntun versioon %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Lisää virheenjäljitystiedot" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Järjestelmäpäivityksen suorittaminen vaatii tunnistautumisen" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Osittaisen päivityksen suorittaminen vaatii tunnistautumisen" ubuntu-release-upgrader-0.220.10/po/sv.po0000644000000000000000000020027712431225715015011 0ustar # Swedish messages for update-manager. # Copyright (C) 2005 Free Software Foundation, Inc. # Daniel Nylander , 2006. # Christian Rose , 2005. # # $Id: sv.po,v 1.5 2005/04/04 08:49:52 mvogt Exp $ # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-08-19 22:27+0000\n" "Last-Translator: Joachim Johansson \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: sv\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server för %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Huvudserver" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Anpassade servrar" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Kunde inte beräkna post för sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Kunde inte hitta några paketfiler. Kanske är detta inte en Ubuntu-skiva " "eller felaktig arkitektur?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Misslyckades med att lägga till cd-skivan" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Det inträffade ett fel när cd-skivan lades till, uppgraderingen kommer att " "avbrytas. Rapportera detta som ett fel om det gäller en giltig Ubuntu-cd.\n" "\n" "Felmeddelandet var:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Ta bort paket i dåligt tillstånd" msgstr[1] "Ta bort paket i dåligt tillstånd" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Paketet ”%s” är i ett inkonsekvent tillstånd och behöver installeras om, men " "inget arkiv kan hittas för det. Vill du ta bort detta paket nu för att " "fortsätta?" msgstr[1] "" "Paketen ”%s” är i ett inkonsekvent tillstånd och behöver installeras om, men " "inga arkiv kan hittas för dem. Vill du ta bort dessa paket nu för att " "fortsätta?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Servern kan vara överbelastad" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Trasiga paket" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Ditt system innehåller trasiga paket som inte kunde repareras med det här " "programmet. Reparera dem först med synaptic eller apt-get innan du " "fortsätter." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Ett problem utan lösning inträffade vid beräkning av uppgraderingen:\n" "%s\n" "\n" " Detta kan orsakas av:\n" " * Uppgradering till en för-utgåva av Ubuntu\n" " * Körning av aktuell för-utgåva av Ubuntu\n" " * Inofficiella programpaket som inte kommer från Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Det här är antagligen ett temporärt problem. Försök igen senare." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Om inget stämmer i ditt fall, rapportera felet med kommandot 'ubuntu-bug " "ubuntu-release-upgrader-core' i en terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Kunde inte beräkna uppgraderingen" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Det gick inte att autentisera vissa paket" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Det gick inte att autentisera vissa paket. Det kan vara ett tillfälligt " "nätverksfel. Det kan hjälpa med att försöka senare. Se nedan för en lista " "med icke-autentiserade paket." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Paketet ”%s” är markerat för borttagning men det är svartlistat för att " "förhindra borttagning." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Det systemkritiska paketet ”%s” har markerats för borttagning." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Försöker att installera svartlistade versionen ”%s”" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Kan inte installera ”%s”" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Det gick inte att installera ett nödvändigt paket. Rapportera det som ett " "fel genom att använda kommandot 'ubuntu-bug ubuntu-release-upgrader-core' i " "en terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Kan inte gissa metapaket" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Ditt system innehåller inte något av paketen ubuntu-desktop, kubuntu-" "desktop, xubuntu-desktop eller edubuntu-desktop och det var inte möjligt att " "identifiera vilken version av Ubuntu som du kör.\n" " Installera först ett av paketen ovan med Synaptic eller apt-get innan du " "fortsätter." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Läser cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Kunde inte få exklusivt lås" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Det betyder oftast att en annan pakethanterare (som apt-get eller aptitude) " "redan kör. Stäng det programmet först." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Uppgradering över fjärranslutning stöds inte" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Du kör uppgraderingen över en fjärranslutning med ssh med ett " "användargränssnitt som inte har stöd för detta. Prova en uppgradering i " "textläge med kommandot ”do-release-upgrade”.\n" "\n" "Uppgraderingen kommer att avbrytas nu. Prova utan ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Fortsätt köra under SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Denna session verkar köras under ssh. Det rekommenderas inte att genomföra " "en uppgradering över ssh därför att om något går fel så är det svårt att " "rätta till detta.\n" "\n" "Om du fortsätter så kommer ytterligare en ssh-daemon att startas på port " "\"%s\".\n" "Vill du fortsätta?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Startar ytterligare sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "För att återhämta sig efter ett fel kommer ytterligare en sshd att startas " "på port ”%s”. Om någonting går fel med den körande ssh-sessionen kan du " "fortfarande ansluta till den nya.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Om du kör en brandvägg så kanske du behöver öppna denna port temporärt. " "Eftersom detta är potentiellt farligt så sker detta inte med automatik. Du " "kan öppna porten med t.ex.:\n" "”%s”" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Kan inte uppgradera" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "En uppgradering från ”%s” till ”%s” stöds inte med det här verktyget." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Konfiguration av sandlåda misslyckades" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Det var inte möjligt att skapa sandlådsmiljön." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandlådsläge" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Denna uppgradering körs i sandlådeläge (test). Alla ändringar skrivs till " "”%s” och kommer inte att sparas vid en omstart.\n" "\n" "*Inga* ändringar som skrivs till en systemkatalog från och med nu tills " "nästa omstart kommer att sparas." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Din python-installation är skadad. Rätta till den symboliska länken " "”/usr/bin/python”." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Paketet ”debsig-verify” är installerat" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Uppgraderingen kan inte fortsätta med det paketet installerat.\n" "Ta bort det med synaptic eller ”apt-get remove debsig-verify” först och kör " "uppgraderingen igen." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Kan inte skriva till ”%s”" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Det är inte möjligt att skriva till systemkatalogen ”%s” på ditt system. " "Uppgraderingen kan inte fortsätta.\n" "Försäkra dig om att det går att skriva till systemkatalogen." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Inkludera de senaste uppdateringarna från Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Uppgraderingssystemet kan automatiskt hämta de senaste uppdateringarna och " "installera dem under uppgraderingen. Om du har en nätverksanslutning så " "rekommenderas detta starkt.\n" "\n" "Uppgraderingen kommer att ta längre tid men ditt system kommer att vara " "fullständigt uppdaterat när den är färdig. Du kan välja att inte göra det " "men du bör installera de senaste uppdateringarna så snart som möjligt efter " "uppgraderingen.\n" "Om du svarar nej här kommer nätverket inte att användas alls." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "inaktiverad vid uppgradering till %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Hittade ingen giltig serverspegel" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Vid genomsökning av din förrådsinformation så hittades inga spegelposter för " "uppgraderingen. Detta kan ske om du kör en intern spegel eller om " "spegelinformationen är utdaterad.\n" "\n" "Vill du skriva om din \"sources.list\"-fil ändå? Om du väljer \"Ja\" här så " "kommer alla \"%s\" att uppdateras till \"%s\"-poster.\n" "Om du väljer \"Nej\" så kommer uppgraderingen att avbrytas." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Generera standardkällor?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Efter genomsökning av din ”sources.list” så hittades ingen giltig post för " "”%s”.\n" "\n" "Ska standardposter för ”%s” läggas till? Om du väljer ”Nej” så kommer " "uppgraderingen att avbrytas." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Förrådsinformationen är ogiltig" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Uppgradering av förrådsinformationen resulterade i en ogiltig fil, därför " "startas en felrapporteringsprocess." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Tredjepartskällor inaktiverade" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Vissa tredjepartsposter i din sources.list blev inaktiverade. Du kan " "återaktivera dem efter uppgraderingen med verktyget ”software-properties” " "eller med din pakethanterare." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paket i inkonsekvent tillstånd" msgstr[1] "Paket i inkonsekvent tillstånd" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Paketet ”%s” är i ett inkonsekvent tillstånd och behöver installeras om, men " "inget arkiv kan hittas för det. Installera om paketet manuellt eller ta bort " "det från systemet." msgstr[1] "" "Paketen ”%s” är i ett inkonsekvent tillstånd och behöver installeras om, men " "inga arkiv kan hittas för dem. Installera om paketen manuellt eller ta bort " "dem från systemet." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Fel under uppdatering" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Ett problem inträffade under uppdateringen. Detta beror oftast på någon form " "av nätverksproblem, var god kontrollera din nätverksanslutning och försök " "igen." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Inte tillräckligt med ledigt diskutrymme" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Uppgraderingen har avbrutits. Uppgraderingen behöver totalt %s ledigt " "utrymme på disk ”%s”. Frigör åtminstone ytterligare %s diskutrymme på ”%s”. " "Töm din papperskorg och ta bort temporära paket från tidigare installationer " "med kommandot ”sudo apt-get clean”." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Beräknar ändringarna" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Vill du starta uppgraderingen?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Uppgraderingen avbröts" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Uppgraderingen kommer att avbrytas nu och det ursprungliga systemtillståndet " "kommer att återställas. Du kan återuppta uppgraderingen vid en senare " "tidpunkt." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Det gick inte att hämta uppgraderingarna" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Uppgraderingen har avbrutits. Kontrollera din internetanslutning eller " "installationsmedia och försök igen. Alla filer som har hämtats än så länge " "har behållits." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Fel inträffade vid verkställandet" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Återställer ursprungligt systemtillstånd" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Det gick inte att installera uppgraderingarna" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Uppgraderingen har avbrutits. Ditt system kan befinna sig i ett oanvändbart " "tillstånd. En återställning kommer nu att köras (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Rapportera felet i en webbläsare på " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "och bifoga filerna i /var/log/dist-upgrade/ tillsammans med felrapporten.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Uppgraderingen har avbrutits. Kontrollera din internetanslutning eller " "installationsmedia och försök igen. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Ta bort föråldrade paket?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Behåll" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Ta bort" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Ett problem inträffade under upprensningen. Se nedanstående meddelande för " "mer information. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Nödvändiga beroenden är inte installerade" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Det nödvändiga beroendet ”%s” är inte installerat. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Kontrollerar pakethanterare" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Förberedelse av uppgradering misslyckades" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Förberedelse av systemet för uppgradering misslyckades, därför startas en " "felrapporteringsprocess." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Hämtning av uppgraderingsförutsättningar misslyckades" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Systemet kunde inte hämta förutsättningarna för uppgraderingen. " "Uppgraderingen avbryts nu och återställer systemet till dess ursprungliga " "tillstånd.\n" "\n" "Dessutom startas en felrapporteringsprocess." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Uppdaterar förrådsinformation" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Misslyckades med att lägga till cd-rom-skivan" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Tyvärr, misslyckades med att lägga till cd-rom-skivan." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Ogiltig paketinformation" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Efter att din paketinformation uppdaterades gick inte det systemkritiska " "paketet ”%s” att hitta. Det kan bero på att du inte har några officiella " "spegelservrar i dina listor över mjukvarukällor, eller på att spegelservern " "du försöker använda är tungt belastad. Se /etc/apt/sources.list för den " "aktuella listan över inställda mjukvarukällor.\n" "Om spegeln är överlastad, försök uppgradera vid ett senare tillfälle." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Hämtar" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Uppgraderar" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Uppgraderingen är färdig" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Uppgraderingen har färdigställts men det inträffade några fel under " "uppgraderingsprocessen." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Söker efter föråldrad programvara" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Systemuppdateringen är klar." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Den delvisa uppgraderingen färdigställdes." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Det gick inte att hitta versionsfaktan" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Servern kan vara överbelastad. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Det gick inte att hämta versionsfaktan" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Kontrollera din Internetanslutning." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "autentisera ”%(file)s” mot ”%(signature)s” " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "extraherar ”%s”" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Det gick inte att köra uppgraderingsverktyget" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Det här är antagligen ett fel i uppgraderingsverktyget. Rapportera det som " "ett fel med kommandot ”ubuntu-bug ubuntu-release-upgrader-core”." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Uppgraderingsverktygets signatur" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Uppgraderingsverktyg" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Misslyckades med att hämta" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Hämtningen av uppgraderingen misslyckades. Det kan vara ett problem med " "nätverket. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Autentisering misslyckades" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Autentisering av uppgraderingen misslyckades. Det kan vara ett problem med " "nätverket eller med servern. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Misslyckades med att extrahera" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Extraheringen av uppgraderingen misslyckades. Det kan vara ett problem med " "nätverket eller med servern. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verifieringen misslyckades" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Validering av uppgraderingen misslyckades. Det kan finnas ett problem i " "nätverket eller med servern. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Kan inte köra uppgraderingen" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Detta inträffar oftast av ett system där /tmp är monterad som noexec. " "Montera om utan noexec och kör uppgraderingen igen." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Felmeddelandet är ”%s”." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Uppgradera" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Versionsfakta" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Hämtar ytterligare paketfiler..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Fil %s av %s i %s B/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Fil %s av %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Mata in ”%s” i enheten ”%s”" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Mediabyte" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms används" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Ditt system använder volymhanteraren \"evms\" i /proc/mounts. Programvaran " "\"evms\" stöds inte längre. Stäng av den och kör uppgraderingen igen." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "Din grafikhårdvara kanske inte kommer ha fullt stöd i Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Din grafikhårdvara har inte fullt stöd för att köra skrivbordsmiljön " "”Unity”. Du kanske får ett mycket långsamt skrivbord efter uppgraderingen. " "Vi rekommenderar att du behåller LTS-versionen tills vidare. För ytterligare " "information, se " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Vill du " "fortsätta uppgraderingen?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ditt grafikkort kanske inte stöds fullt ut i Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Stödet i Ubuntu 12.04 LTS för ditt Intel-grafikkort är begränsat och du kan " "påträffa problem efter uppgraderingen. Se " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx för mer " "information. Vill du fortsätta med uppgraderingen?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Uppgradering kan minska skrivbordseffekter och prestandan i spel och andra " "grafikintensiva program." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Denna datorn använder för närvarande NVIDIA-grafikdrivrutinen \"nvidia\". " "Ingen version av denna drivrutin finns tillgänglig som fungerar med din " "hårdvara i Ubuntu 10.04 LTS.\n" "\n" "Vill du fortsätta?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Denna datorn använder för närvarande AMD-grafikdrivrutinen ”fglrx”. Ingen " "version av denna drivrutin finns tillgänglig som fungerar med din hårdvara i " "Ubuntu 10.04 LTS.\n" "\n" "Vill du fortsätta?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Ingen i686-processor" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ditt system använder en i586-processor eller en processor som inte har " "”cmov”-tillägget. Alla paket som byggdes med optimeringar kräver i686 som " "minsta arkitektur. Det är inte möjligt att uppgradera ditt system till en ny " "Ubuntu-utgåva med denna maskinvara." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Ingen ARMv6-processor" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ditt system använder en ARM-processor som är äldre än ARMv6-arkitekturen. " "Alla paket i karmic byggdes med optimeringar som kräver ARMv6 som minsta " "arkitektur. Det är inte möjligt att uppgradera ditt system till en ny Ubuntu-" "utgåva med denna hårdvara." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Ingen init finns tillgänglig" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Ditt system verkar köras i en virtualiserad miljö utan en init-demon, t.ex. " "Linux-VServer. Ubuntu 10.04 LTS kan inte fungera i denna typ av miljö och " "kräver en uppdatering av konfigurationen av din virtuella maskin först.\n" "\n" "Är du säker på att du vill fortsätta?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandlådsuppgradering med aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Använd angiven sökväg för att söka efter en cd-rom med uppgraderingspaket" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Använd gränssnitt: Tillgängliga för närvarande: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*FÖRÅLDRAD* denna flagga kommer att ignoreras" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Genomför endast en delvis uppgradering (ingen omskrivning av sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Inaktivera stöd för GNU screen" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Ange datakatalog" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Hämtningen är färdig" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Hämtar fil %li av %li med %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Ungefär %s återstår" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Hämtar fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Verkställer ändringar" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "beroendeproblem - lämnar okonfigurerad" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Kunde inte installera ”%s”" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Uppgraderingen kommer att fortsätta men paketet ”%s” kanske inte kommer att " "fungera. Skicka gärna in en felrapport om detta problem." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Ersätt den anpassade konfigurationsfilen\n" "”%s”?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Du kommer att förlora de ändringar du har gjort i den här " "konfigurationsfilen om du väljer att ersätta den med en senare version." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Kommandot ”diff” hittades inte" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ett ödesdigert fel uppstod" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapportera detta som ett fel (om du inte redan har gjort det) och inkludera " "filerna /var/log/dist-upgrade/main.log samt /var/log/dist-upgrade/apt.log i " "din rapport. Uppgraderingen har avbrutits.\n" "Din ursprungliga sources.list sparades i /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c trycktes" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Detta kommer att avbryta åtgärden och kan leda till att systemet befinner " "sig i ett trasigt tillstånd. Är du säker på att du vill göra det?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Stäng alla öppna program och dokument för att förhindra dataförlust." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Stöds inte längre av Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Nedgradera (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Ta bort (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Inte längre nödvändiga (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Installera (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Uppgradera (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Visa skillnader >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Dölj skillnader" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Fel" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Avbryt" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "S&täng" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Visa terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Dölj terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Information" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Mer information" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Stöds inte längre %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Ta bort %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Ta bort (var automatiskt installerad) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Installera %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Uppgradera %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Omstart krävs" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Starta om systemet för att färdigställa uppgraderingen" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Starta om nu" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Avbryt pågående uppgradering?\n" "\n" "Systemet kan hamna i ett oanvändbart tillstånd om du avbryter " "uppgraderingen. Det rekommenderas starkt att du återupptar uppgraderingen." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Avbryt uppgradering?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dag" msgstr[1] "%li dagar" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li timme" msgstr[1] "%li timmar" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minut" msgstr[1] "%li minuter" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekund" msgstr[1] "%li sekunder" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Denna hämtning kommer att ta ungefär %s med en 1 Mbit DSL-anslutning och " "ungefär %s med ett 56k-modem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Den här hämtningen kommer att ta ungefär %s med din anslutning. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Förbereder uppgradering" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Hämtar nya programvarukanaler" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Hämtar nya paket" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installerar uppgraderingarna" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Rensar upp" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d installerat paket stöds inte längre av Canonical. Du kan " "fortfarande få support från gemenskapen." msgstr[1] "" "%(amount)d installerade paket stöds inte längre av Canonical. Du kan " "fortfarande få support från gemenskapen." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket kommer att tas bort." msgstr[1] "%d paket kommer att tas bort." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nytt paket kommer att installeras." msgstr[1] "%d nya paket kommer att installeras." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket kommer att uppgraderas." msgstr[1] "%d paket kommer att uppgraderas." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Du måste hämta totalt %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Det kan ta flera timmar att installera uppgraderingen. När hämtningen har " "slutförts så kan processen inte avbrytas." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Hämta och installera uppgraderingen kan ta flera timmar. När hämtningen har " "slutförts så kan processen inte avbrytas." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Borttagning av paketen kan ta flera timmar. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Programvaran på datorn är uppdaterad." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Det finns inga tillgängliga uppgraderingar för ditt system. Uppgraderingen " "kommer nu att avbrytas." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Omstart krävs" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Uppgraderingen är klar och datorn behöver startas om. Vill du göra det nu?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapportera detta som ett fel och inkludera filerna /var/log/dist-" "upgrade/main.log samt /var/log/dist-upgrade/apt.log i din rapport. " "Uppgraderingen har avbrutits.\n" "Din ursprungliga sources.list sparades i /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Avbryter" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Nedprioriterad:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Tryck på [ENTER] för att fortsätta" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Fortsätt [jN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detaljer [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "j" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Stöds inte längre: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Ta bort: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Installera: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Uppgradera: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Fortsätt [Jn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "En omstart krävs för att färdigställa uppgraderingen.\n" "Om du väljer ”j” kommer systemet att startas om." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Hämtar fil %(current)li av %(total)li med %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Hämtar fil %(current)li av %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Visa förlopp för individuella filer" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Avbryt uppgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Å_teruppta uppgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Avbryt pågående uppgradering?\n" "\n" "Systemet kan hamna i ett oanvändbart tillstånd om du avbryter " "uppgraderingen. Det rekommenderas starkt att du fortsätter uppgraderingen." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Starta uppgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Ersätt" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Skillnad mellan filerna" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Rapportera fel" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Fortsätt" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Starta uppgraderingen?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Starta om systemet för att färdigställa uppgraderingen\n" "\n" "Spara ditt arbete innan du fortsätter." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Uppgradering av distribution" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Uppgraderar Ubuntu till version 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Ställer in nya programvarukanaler" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Startar om datorn" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Uppgradera" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "En ny version av Ubuntu finns tillgänglig. Vill du uppgradera till " "den?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Uppgradera inte" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Fråga igen senare" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ja, uppgradera nu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Du valde att inte uppgradera till nya Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Du kan uppgradera senare genom att öppna Programuppdateringar och klicka på " "\"Uppgradera\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Utför en uppgradering av utgåva" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "För att uppgradera Ubuntu måste din identitet kontrolleras." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Utför en delvis uppgradering" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" "För att utföra en delvis uppgradering måste din identitet kontrolleras." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Visa version och avsluta" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Katalog som innehåller datafilerna" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Kör den angivna pakethanteraren" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Kör delvis uppgradering" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Hämtar uppgraderingsverktyget för utgåvan" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Kontrollera om uppgradering till den senaste utvecklingsutgåvan är möjlig" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Prova att uppgradera till senaste utgåvan med hjälp av uppgraderingen från " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Kör i ett speciellt uppgraderingsläge.\n" "För närvarande stöds endast ”desktop” för vanliga uppgraderingar av ett " "skrivbordssystem samt ”server” för serversystem." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testa uppgraderingen i en sandlåda" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Kontrollera endast om en ny distributionsutgåva finns tillgänglig och " "rapportera resultatet via avslutningskoden" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Letar efter en ny Ubuntu-utgåva" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Din Ubuntu-utgåva stöds inte längre." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "För uppgraderingsinformation så kan du besöka:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Ingen ny utgåva hittades" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Uppgradering av utgåva är inte möjlig just nu" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Uppgradering av utgåvan kan inte genomföras för närvarande. Försök igen " "senare. Servern rapporterade: ”%s”" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Nya utgåvan ”%s” finns tillgänglig." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Kör ”do-release-upgrade” för att uppgradera till den." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Uppgradering till Ubuntu %(version)s finns tillgänglig" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Du valde att inte uppgradera till Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Lägg till felsökningsutdata" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Behörighetskontroll krävs för att utföra en delvis uppgradering" ubuntu-release-upgrader-0.220.10/po/cy.po0000644000000000000000000017004112431225715014767 0ustar # Welsh translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Owen Llywelyn \n" "Language-Team: Welsh \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : (n != 8 && n != 11) ? " "2 : 3;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: cy\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Gweinydd ar gyfer %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Prif weinydd" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Gweinyddion addasiedig" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Methu cyfrifo cofnod sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Methu cael hyd i ffeiliau pecynnau, efallai mai nid disg Ubuntu yw hwn, " "neu'r math o adeiladaeth anghywir?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Methu ychwanegu'r CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Roedd gwall wrth ychwanegu'r CD, bydd yr uwchraddiad yn terfynu. Adrodd hwn " "fel chwilen os yw hwn yn CD Ubuntu dilys.\n" "\n" "Y neges gwall oedd:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Tynnu pecyn mewn cyflwr gwael" msgstr[1] "Tynnu pecynnau mewn cyflwr gwael" msgstr[2] "Tynnu pecynnau mewn cyflwr gwael" msgstr[3] "Tynnu pecynnau mewn cyflwr gwael" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Mae pecyn '%s' mewn cyflwr anghyson a rhaid ei ailsefydlu, ond does dim modd " "cael hyd i archif ar ei gyfer. Wyt ti eisiau tynnu'r pecyn hwn nawr i barhau?" msgstr[1] "" "Mae pecynnau '%s' mewn cyflwr anghyson a rhaid eu hailsefydlu, ond does dim " "modd cael hyd i archifau ar eu cyfer. Wyt ti eisiau tynnu'r pecynnau hyn " "nawr i barhau?" msgstr[2] "" "Mae pecynnau '%s' mewn cyflwr anghyson a rhaid eu hailsefydlu, ond does dim " "modd cael hyd i archifau ar eu cyfer. Wyt ti eisiau tynnu'r pecynnau hyn " "nawr i barhau?" msgstr[3] "" "Mae pecynnau '%s' mewn cyflwr anghyson a rhaid eu hailsefydlu, ond does dim " "modd cael hyd i archifau ar eu cyfer. Wyt ti eisiau tynnu'r pecynnau hyn " "nawr i barhau?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Efallai bod gormod o lwyth ar y gweinydd" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Pecynnau wedi torri" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Mae dy system yn cynnwys pecynnau nad oedd modd eu trwsio gyda'r meddalwedd " "hwn. Trwsia nhw'n gyntaf drwy ddefnyddio synaptic neu apt-get cyn parhau." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Digwyddodd problem nad oes modd ei datrys wrth gynllunio'r uwchraddiad:\n" "%s\n" "\n" " Gall y canlynol achosi hyn:\n" " * Uwchraddio i fersiwn cyn rhyddhau o Ubuntu\n" " * Rhedeg fersiwn cyn rhyddhau o Ubuntu\n" " * Pecynnau meddalwedd answyddogol sydd ddim yn cael eu darparu gan Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Mwy na thebyg mai problem dros dro yw hon, rho gynnig arall arni'n hwyrach." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Methu cyfrifo'r uwchraddiad" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Gwall wrth ddilysu rhai pecynnau" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Doedd hi ddim yn bosib dilysu rhai pecynnau. Efallai mai problem rhwydwaith " "dros dro yw hon. Rho gynnig arni wedyn. Gweler isod am restr o becynnau sydd " "heb eu dilysu." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Marciwyd pecyn '%s' ar gyfer ei dynnu ond mae yn rhestr ddu pecynnau i'w " "tynnu." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Marciwyd y pecyn hanfodol '%s' i'w dynnu." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Ceisio gosod fersiwn rhestr ddu '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Methu gosod '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Methu dyfalu pecyn-meta" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Nid yw dy system yn cynnwys pecyn ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop na edubuntu-desktop, a doedd hi ddim yn bosib canfod pa fersiwn o " "Ubuntu rwyt ti'n ei rhedeg.\n" " Gosoda un o'r pecynnau uchod yn gyntaf drwy synaptic neu apt-get cyn parhau." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Yn darllen storfa" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Methu cael clo unigryw" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Mae hyn fel arfer yn golygu bod rhaglen rheoli pecynnau arall (fel apt-get " "neu aptitude) eisoes yn rhedeg. Mae angen cau'r rhaglen honno'n gyntaf." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Nid yw uwchraddio dros gysylltiad o bell yn cael ei gefnogi" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Rwyt ti'n rhedeg uwchraddiad dros gysylltiad ssh o bell drwy rhyngwyneb " "blaen sydd ddim yn cefnogi hyn. Tria uwchraddiad modd testun gyda 'do-" "release-upgrade'.\n" "\n" "Bydd yr uwchraddiad yn dod i ben nawr. Tria heb ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Parhau i redeg dan SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Ymddengys bod y sesiwn yn rhedeg dan ssh. Dyw hi ddim yn ddoeth uwchraddio " "drwy ssh ar hyn o bryd oherwydd ei bod yn anoddach ei adfer os yw'n methu.\n" "\n" "Os wnei di barhau, bydd daemon ssh yn cychwyn ar borth '%s'.\n" "Wyt ti eisiau parhau?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Cychwyn sshd ychwanegol" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "I adfer pethau'n haws os fydd yn methu, bydd sshd ychwanegol yn cychwyn ar " "borth '%s'. Os fydd rhywbeth yn mynd o'i le wrth redeg ssh bydd modd i ti " "gysylltu drwy'r un ychwanegol.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Methu uwchraddio" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Nid yw uwchraddio o '%s' i '%s' yn cael ei gefnogi gan y rhaglen hon." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Methwyd creu blwch tywod" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Doedd hi ddim yn bosib creu amgylchedd blwch tywod" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Modd blwch tywod" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Mae dy osodiad o python wedi llygru. Trwsia'r ddolen symbolig " "'/usr/bin/python' ." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Mae pecyn 'debsig-verify' wedi ei osod" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Does dim modd i'r uwchraddiad barhau gyda'r pecyn yna wedi ei osod.\n" "Tynna hwn drwy synaptic neu 'apt-get remove debsig-verify' yn gyntaf a " "rhedeg yr uwchraddiad eto." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Cynnwys diweddariadau mwyaf newydd o'r Rhyngrwyd?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Gall y system uwchraddio ddefnyddio'r rhyngrwyd i lawrlwytho a gosod y " "diweddariadau mwyaf newydd yn ystod yr uwchraddiad. Os oes gen ti gysylltiad " "rhwydwaith mae hyn yn syniad da.\n" "\n" "Bydd yr uwchraddiad yn cymryd mwy o amser, ond wedi iddo orffen bydd dy " "system yn fwy cyfredol. Gallet ddewis peidio gwneud hyn, ond dylet felly " "osod y diweddariadau mwyaf newydd yn fuan wedi uwchraddio.\n" "Os wyt ti'n ateb 'na' fan hyn, fydd y rhwydwaith ddim yn cael ei ddefnyddio " "o gwbl." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "analluogwyd wrth uwchraddio i %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Heb ganfod drych dilys" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Methwyd canfod cofnod drych ar gyfer yr uwchraddiad wrth sganio dy wybodaeth " "cronfa. Gall hyn ddigwydd os wyt ti'n rhedeg drych mewnol neu os yw'r " "wybodaeth drych wedi dyddio.\n" "\n" "Wyt ti eisiau ailysgrifennu ffeil 'sources.list' beth bynnag? Os wnei di " "ddewis 'Ie' fan hyn bydd yn diweddaru pob cofnod '%s' i '%s'.\n" "Os wnei di ddewis 'Na' bydd yr uwchraddiad yn terfynu." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Creu cronfeydd diofyn" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Wedi sganio 'sources.list' methwyd canfod cofnod dilys i '%s'.\n" "\n" "A ddylid ychwanegu cofnod '%s' diofyn? Os wnei di ddewis 'Na' bydd yr " "uwchraddiad yn terfynu." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Gwybodaeth cronfeydd annilys" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Cronfeydd trydydd plaid wedi'u hanalluogi" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Analluogwyd rhai cofnodion trydydd plaid yn sources.list. Galli di eu " "galluogi eto wedi'r uwchraddiad gyda'r teclyn 'priodweddau-meddalwedd' yn dy " "reolwr pecynnau." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pecyn mewn cyflwr anghyson" msgstr[1] "Pecynnau mewn cyflwr anghyson" msgstr[2] "Pecynnau mewn cyflwr anghyson" msgstr[3] "Pecynnau mewn cyflwr anghyson" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Mae pecyn '%s' mewn cyflwr anghyson a bydd angen ei ailosod, ond methwyd " "canfod archif ar ei gyfer. Ailosoda'r pecyn eto gyda llaw neu ei dynnu o'r " "system." msgstr[1] "" "Mae pecynnau '%s' mewn cyflwr anghyson a bydd angen eu hailosod, ond methwyd " "canfod archif ar eu cyfer. Ailosoda'r pecynnau eto gyda llaw neu eu tynnu " "o'r system." msgstr[2] "" "Mae pecynnau '%s' mewn cyflwr anghyson a bydd angen eu hailosod, ond methwyd " "canfod archif ar eu cyfer. Ailosoda'r pecynnau eto gyda llaw neu eu tynnu " "o'r system." msgstr[3] "" "Mae pecynnau '%s' mewn cyflwr anghyson a bydd angen eu hailosod, ond methwyd " "canfod archif ar eu cyfer. Ailosoda'r pecynnau eto gyda llaw neu eu tynnu " "o'r system." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Gwall wrth ddiweddaru" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Digwyddodd gwall wrth ddiweddaru. Problem rhwydwaith sy'n achosi hyn fel " "arfer. Gwiria dy gysylltiad rhwydwaith a cheisio eto." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Dim digon o le disg rhydd" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Terfynwyd yr uwchraddiad. Mae angen %s o le rhydd ar ddisg '%s' i " "uwchraddio. Rhyddha o leiaf %s o le ar ddisg '%s'. Gwagia'r sbwriel a thynnu " "pecynnau dros dro eraill drwy ddefnyddio 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Cyfrifo'r newidiadau" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Wyt ti eisiau dechrau uwchraddio?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Terfynwyd yr uwchraddiad" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Methu lawrthwytho'r uwchraddiad" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Gwall wrth gyflwyno" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Adfer cyflwr gwreiddiol y system" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Methu gosod yr uwchraddiad" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Mae'r uwchraddiad wedi terfynu. Efallai fod cyflwr nad oes modd ei " "ddefnyddio ar dy system. Bydd adferiad yn rhedeg nawr (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Mae'r uwchraddiad wedi terfynu. Gwiria dy gysylltiad rhyngrwyd neu gyfrwng " "gosod a thrio eto. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Tynnu pecynnau darfodedig?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Cadw" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Tynnu" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Digwyddodd problem wrth lanhau. Gweler y neges isod am fwy o wybodaeth. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Dyw'r dibyniaeth angenrheidiol '%s' ddim wedi ei osod. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Gwirio rheolwr pecynnau" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Methwyd paratoi'r uwchraddiad" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Methwyd paratoi rhagblaen ar gyfer uwchraddio" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Diweddaru gwybodaeth cronfeydd" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Gwybodaeth pecyn annilys" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Cyrchu" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Uwchraddio" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Uwchraddiad wedi cwblhau" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Mae'r uwchraddiad wedi cwblhau ond roedd gwallau yn ystod y broses." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Chwilio am feddalwedd darfodedig" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Uwchraddio'r sytem wedi cwblhau." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Uwchraddiad rhannol wedi cwblhau." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Methu canfod nodiadau rhyddhau" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Gall fod pwysau ar y gweinydd. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Methu lawrlwytho'r nodiadau rhyddhau" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Gwiria dy gysylltiad rhyngrwyd." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Methu rhedeg y teclyn uwchraddio" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Llofnod teclyn uwchraddio" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Teclyn uwchraddio" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Methwyd cyrchu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Methwyd cyrchu'r uwchraddiad. Efallai bod problem rhwydwaith. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Methwyd dilysu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Methwyd cadarnhau dilysrwydd yr uwchraddiad. Efallai bod problem gyda'r " "rhwydwaith neu'r gweinydd. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Methwyd echdynnu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Methwyd echdynnu'r uwchraddiad. Efallai bod problem gyda'r rhwydwaith neu'r " "gweinydd. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Methwyd dilysu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Methwyd dilysu'r uwchraddiad. Efallai bod problem gyda'r rhwydwaith neu'r " "gweinydd. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Methu rhedeg yr uwchraddiad" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Y neges gwall yw '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Uwchraddio" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Nodiadau Ryddhau" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Lawrlwytho ffeiliau pecynnau ychwanegol..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Ffeil %s o %s ar %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Ffeil %s o %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Rho '%s' mewn i yrriant '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Newid Cyfrwng" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms yn cael ei ddefnyddio" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Mae dy system yn defnyddio rheolwr cyfrol 'evms' yn /proc/mounts. Nid yw " "meddalwedd 'evms' yn derbyn cefnogaeth bellach. Diffodda hwn a rhedeg yr " "uwchraddiad eto wedyn." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Gall uwchraddio leihau effeithiau penbwrdd a pherfformiad gyda gêmau a " "rhaglenni eraill sy'n drwm ar graffeg." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Mae'r cyfrifiadur hwn yn defnyddio gyrrwr graffeg NVIDIA 'nvidia' ar hyn o " "bryd. Does dim fersiwn o'r gyrrwr hwn sy'n gweithio gyda dy gerdyn fideo yn " "Ubuntu 10.04 LTS ar gael.\n" "\n" "Wyt ti eisiau parhau?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Mae'r cyfrifiadur hwn yn defnyddio gyrrwr graffeg AMD 'fglrx'. Does dim " "fersiwn o'r gyrrwr hwn ar gael sy'n gweithio gyda dy galedwedd yn Ubuntu " "10.04 LTS.\n" "\n" "Wyt ti eisiau parhau?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Dim CPU i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Mae dy system yn defnyddio CPU i586 neu CPU sydd heb estyniad 'cmov'. Crewyd " "y pecynnau fel eu bod angen o leiaf adeiladaeth i686 cyn eu bod yn gweithio. " "Nid yw'n bosib uwchraddio dy system i fersiwn newydd o Ubuntu gyda'r " "caledwedd hwn." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Dim CPU ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Mae dy system yn defnyddio CPU ARM sydd ddim mor newydd ag adeiladaeth " "ARMv6. Crewyd y pecynnau fel eu bod angen o leiaf adeiladaeth ARMv6 cyn eu " "bod yn gweithio. Nid yw'n bosib uwchraddio dy system i fersiwn newydd o " "Ubuntu gyda'r caledwedd hwn." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Dim init ar gael" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Ymddengys mai amgylchedd rhithiol heb daemon init yw dy system, e.e. Linux-" "VServer. Nid yw Ubuntu 10.04 LTS yn medru gweithredu mewn amgylchedd fel hwn " "ac mae angen uwchraddio cyfluniad dy beiriant rhithiol yn gyntaf.\n" "\n" "Wyt ti'n siwr dy fod eisiau parhau?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Uwchraddiad bocs tywod yn defnyddio aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Defnyddia'r llwybr roddwyd i chwilio am cdrom gyda phecynnau uwchraddio" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Defnyddio blaen. Ar gael ar hyn o bryd: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Perfformio uwchraddiad rhannol yn unig (dim ailysgrifennu sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Analluogi cefnogaeth sgrin GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Gosod datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Wedi gorffen cyrchu" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Yn cyrchu ffeil %li o %li ar %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Tua %s yn weddill" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Yn cyrchu ffeil %li o %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Yn gweithredu newidiadau" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemau dibyniaeth - yn gadael heb ei gyflunio" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Methu gosod '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Bydd yr uwchraddiad yn parhau ond efallai na fydd pecyn '%s' yn gweithio. " "Ystyria gyflwyno adroddiad chwilen am hwn." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Amnewid y ffeil cyfluniad addasiedig\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Fe fyddi di'n colli unrhyw newidiadau wnaed i'r ffeil cyfluniad yma os wyt " "ti'n ei amnewid am fersiwn mwy newydd." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Methwyd canfod gorchymyn 'diff'" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Digwyddodd gwall marwol" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Adrodda hwn fel chwilen (os nad wyt ti eisoes wedi gwneud) gan gynnwys " "ffeiliau /var/log/dist-upgrade/main.log a /var/log/dist-upgrade/apt.log yn " "dy adroddiad. Mae'r uwchraddiad wedi terfynu.\n" "Cadwyd dy sources.list gwreiddiol yn /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Gwasgwyd Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Bydd hyn yn terfynu'r weithred a gadael y system mewn cyflwr wedi torri. Wyt " "ti'n siwr dy fod eisiau gwneud hyn?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Cau pob rhaglen a dogfen i osgoi colli data." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Ddim yn derbyn cefnogaeth Canonical bellach (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Israddio (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Tynnu (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Dim angen rhagor (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Gosod (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Uwchraddio (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Dangos Gwahaniaeth >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Cuddio Gwahaniaeth" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Gwall" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Cau" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Dangos Terfynell >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Cuddio Terfynell" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Gwybodaeth" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Manylion" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Ddim bellach yn cefnogi %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Tynnu %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Tynnu (wedi ei osod yn awtomatig) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Gosod %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Uwchraddio %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Angen ailgychwyn" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Ailgychwyn y system i gwblhau'r uwchraddiad" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Ailgychwyn Nawr" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Canslo'r uwchraddiad sy'n rhedeg?\n" "\n" "Efallai na fydd modd defnyddio'r system os wnei di ganslo'r uwchraddiad. " "Cynghorir ti yn gryf i ailgychwyn yr uwchraddiad." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Canslo Uwchraddiad?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li diwrnod" msgstr[1] "%li diwrnod" msgstr[2] "%li diwrnod" msgstr[3] "%li diwrnod" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li awr" msgstr[1] "%li awr" msgstr[2] "%li awr" msgstr[3] "%li awr" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li munud" msgstr[1] "%li munud" msgstr[2] "%li munud" msgstr[3] "%li munud" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li eiliad" msgstr[1] "%li eiliad" msgstr[2] "%li eiliad" msgstr[3] "%li eiliad" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Bydd lawrlwytho yn cymryd tua %s gyda chysylltiad DSL 1Mbit a thua %s gyda " "modem 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Bydd lawrlwytho yn cymrud tua %s gyda dy gysylltiad di. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Paratoi i uwchraddio" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Cyrchu sianeli meddalwedd newydd" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Cyrchu pecynnau newydd" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Gosod yr uwchraddiad" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Yn glanhau" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Nid yw %(amount)d pecyn sydd wedi ei osod bellach yn derbyn cefnogaeth gan " "Canonical. Bydd modd i ti gael cefnogaeth o hyd gan y gymuned." msgstr[1] "" "Nid yw %(amount)d o becynnau sydd wedi eu gosod bellach yn derbyn cefnogaeth " "gan Canonical. Bydd modd i ti gael cefnogaeth o hyd gan y gymuned." msgstr[2] "" "Nid yw %(amount)d o becynnau sydd wedi eu gosod bellach yn derbyn cefnogaeth " "gan Canonical. Bydd modd i ti gael cefnogaeth o hyd gan y gymuned." msgstr[3] "" "Nid yw %(amount)d o becynnau sydd wedi eu gosod bellach yn derbyn cefnogaeth " "gan Canonical. Bydd modd i ti gael cefnogaeth o hyd gan y gymuned." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Mae %d pecyn yn mynd i gael ei dynnu." msgstr[1] "Mae %d o becynnau yn mynd i gael eu tynnu." msgstr[2] "Mae %d o becynnau yn mynd i gael eu tynnu." msgstr[3] "Mae %d o becynnau yn mynd i gael eu tynnu." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bydd %d pecyn newydd yn cael ei osod." msgstr[1] "Bydd %d o becynnau newydd yn cael eu gosod." msgstr[2] "Bydd %d o becynnau newydd yn cael eu gosod." msgstr[3] "Bydd %d o becynnau newydd yn cael eu gosod." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bydd %d pecyn yn cael ei uwchraddio." msgstr[1] "Bydd %d o becynnau yn cael eu huwchraddio." msgstr[2] "Bydd %d o becynnau yn cael eu huwchraddio." msgstr[3] "Bydd %d o becynnau yn cael eu huwchraddio." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Rwyt ti wedi lawrlwytho cyfanswm o %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Does dim uwchraddiad ar gael ar gyfer dy system. Bydd yr uwchraddiad yn cael " "ei ganslo." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Angen ailgychwyn" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Mae'r uwchraddiad wedi gorffen ac mae angen ailgychwyn. Wyt ti eisiau gwneud " "hyn nawr?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Adrodda hwn fel chwilen gan gynnwys ffeiliau /var/log/dist-upgrade/main.log " "a /var/log/dist-upgrade/apt.log yn dy adroddiad. Terfynwyd yr uwchraddiad.\n" "Cadwyd y ffeil sources.list gwreiddiol yn /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Yn terfynu" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Diraddiwyd:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Parhau [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Manylion [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "i" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "m" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Ddim yn derbyn cefnogaeth bellach: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Tynnu: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Gosod: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Uwchraddio: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Parhau [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "I gwblhau'r uwchraddiad, mae angen ailgychwyn.\n" "Os wnei di ddewis 'i' bydd y system yn ailgychwyn." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Lawrlwytho ffeil %(current)li o %(total)li gyda %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Lawrlwytho ffeil %(current)li o %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Dangos cynnydd ffeiliau unigol" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Canslo Uwchraddiad" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Ailgychwyn Uwchraddiad" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Canslo'r uwchraddiad sy'n rhedeg?\n" "\n" "Gallai'r system fod yn ansefydlog os wnei di ganslo'r uwchraddiad. Y cyngor " "yw i ti ailgychwyn uwchraddio." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Dechrau Uwchraddiad" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Amnewid" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Y gwahaniaeth rhwng y ffeiliau" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Adrodd Chwilen" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Parhau" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Dechrau'r uwchraddiad?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Ailgychwyn y system i gwblhau'r uwchraddiad\n" "\n" "Cofia gadw dy waith cyn parhau." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Uwchraddio Dosbarthiad" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Gosod sianeli meddalwedd newydd" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Ailgychwyn y cyfrifiadur" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terfynell" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Uwchraddio" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Mae fersiwn newydd o Ubuntu ar gael. Wyt ti eisiau uwchraddio?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Peidio Uwchraddio" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Gofyn Wedyn" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ydw, Uwchraddio Nawr" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Rwyt ti wedi penderfynu peidio uwchraddio i'r Ubuntu newydd" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Dangos fersiwn a gadael" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Cyfeiriadur sy'n cynnwys y ffeiliau data" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Yn rhedeg uwchraddiad rhannol" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Lawrlwytho'r teclyn uwchraddio fersiwn" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Gwirio i weld os yw'n bosib uwchraddio i'r fersiwn datblygol diweddaraf" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "Ceisio uwchraddio i'r fersiwn diweddaraf o $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Rhedeg fel uwchraddiad arbennig.\n" "Ar hyn o bryd mae 'desktop' ar gyfer uwchraddio system penbwrdd arferol a " "'server' ar gyfer systemau gweinydd yn cael eu cefnogi." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Profi uwchraddiad gyda throshaeniad blwch tywod aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Gwirio dim ond os oes fersiwn newydd ar gael ac adrodd y canlyniad drwy'r " "cod gadael" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Nid yw dy fersiwn o Ubuntu'n derbyn cefnogaeth bellach." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Am wybodaeth am uwchraddio, cer i:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Dim fersiwn newydd wedi ei ganfod" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Uwchraddiad fersiwn ddim yn bosib ar hyn o bryd" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Nid yw'n bosib uwchraddio'r fersiwn ar hyn o bryd, tria eto yn nes ymlaen. " "Adroddodd y gweinydd: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Fersiwn newydd '%s' ar gael." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Rheda 'do-release-upgrade' i uwchraddio i hwn." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Uwchraddiad i Ubuntu %(version)s Ar Gael" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Rwyt ti wedi penderfynu peidio uwchraddio i Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ku.po0000644000000000000000000014672412431225715015006 0ustar # Kurdish translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Amed Çeko Jiyan \n" "Language-Team: Kurdish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ku\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Pêşkêşkera %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Pêşkêşkera Mak" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Pêşkêşkera taybet" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Hesibandina ketana sources.list biserneket" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Tu pelên pakêtan nayên bicîkirin, pêkan e ku ev ne Diskeke Ubuntuyê be an jî " "avabûneke çewt be?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Di têxistina CD'yê de çewtî" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Di têxistina CD'yê de çewtî, bilindkirin dê bisekine. Heke CD'ya te CD'yeke " "derbasdar a Ubuntuyê be vê çewtiyê ragihîne.\n" "\n" "Peyama çewtiyê:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Pakêta di rewşa nebaş de rake" msgstr[1] "Pakêtên di rewşa nebaş de rake" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Pakêta '%s' ne hevgirtî ye û divê ji nû ve bê sazkirin, lê ji bo wê tu arşîv " "nayê dîtin. Ji bo dewam bikî dixwazî vê pakêtê niha rakî?" msgstr[1] "" "Pakêtên '%s' ne hevgirtî ne û divê ji nû ve bên sazkirin, lê ji bo wan tu " "arşîv nayê dîtin. Ji bo dewam bikî dixwazî van pakêtan niha rakî?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Dibe ku li ser pêşkêşkarê pir hatibe barkirin" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Pakêtên şikestî" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Pergala te tevî vê nivîsbariyê hin pakêtên xerabe yên ku nayên sererastkirin " "dihewîne. Berî ku tu berdewam bikî ji kerema xwe re van bernameyan bi " "synaptic an jî i apt-getê sererast bike." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Di hesabkirina rojanekirinê de pirsgirêkeke nayê çareserkirin rû da:\n" "%s\n" "\n" " Dibe ku sedem yek ji van be:\n" " * Bilindkirina ji bo pêş-guhertoyeke Ubuntuyê\n" " * Xebitandina pêş-guhertoya Ubuntuyê ya niha\n" " * Pakêtên bernameyên nenavendî ji hêla Ubuntuyê ve nayên peydakirin\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Ev wekî pirsgirêkeke demdemî xuya dike, tika ye dîsa biceribîne." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Bilindkirin nehat hesabkirin" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Di piştrastkirina çend paketan de çewtî derket" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Hin pakêt nehatin piştrastkirin. Dibe ku ev pirsgirêkeke derbasdar a torê " "be. Ji bo lîsteya pakêtên ku nehatine piştrastkirin li jêr binihêre." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Pakêta '%s' ji bo rakirinê hate nîşankirin lê di lîsteya reş a rakirinê de " "ye." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Pakêta bingehîn '%s' ji bo rakirinê hate nîşankirin." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Sazkirina guhertoya '%s' a lîsteya reş diceribîne" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Nikare '%s' saz bike" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Pakêta meta nehate texmînkirin" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Pergala te tu pakêtên ubuntu-desktop, kubuntu-desktop, xubuntu-desktop an " "edubuntu-desktop nahundirîne û nehate tespîtkirin ku tu kîjan guhertoya " "Ubuntuyê bikar tînî.\n" " Ji kerema xwe re berî ku tu berdewam bikî, bi synaptic an jî bi apt-getê " "yek ji pakêtên ku li jor in saz bike." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Pêşbîr tê xwendin" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Kilîtkirina eksklusîv nayê çêkirin" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Wateya vê ew e ku, niha sepana rêveberiya pakêteke din dixebite (apt-get an " "jî aptitude). Ji kerema xwe re berê wê sepanê bigire." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Bilindkirina li ser girêdana ji dûr ve nayê destekirin" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Bila xebitandina bin SSH'yê were domandin?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "sshdyeke nû tê destpêkirin" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Bilinkirin çênabe" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Ev amûr piştgiriya bilindkirina ji '%s' ber ve '%s nade." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Di sazkirina te ya Pythonê de çewtî heye. Ji kerema xwe re girêdana " "'/usr/bin/python' a sembolîk tamîr bike." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" "Bila rojanekirinên herî dawîn yên di înternetê de lê werine zêdekirin?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Neynikeke derbasdar nehate dîtin." #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Bila depoyên pêşsalixbûyî bên çêkirin?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Agahiya depoyê ne derbasdar e" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Ji çavkaniyên partiyên sêyemîn têkilî hate birîn." #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Ketanên aligirên sêyemîn yên di pelê sources.list de neçalak in. Piştî " "bilindkirinê tu dikarî van ketanan bi amûra 'software-properties' yan jî bi " "rêvebirê pakêtan dîsa çalak bikî." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Di rojanekirinê de çewtî derket" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Cihê vala yê diskê têr nake" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Guherandin tê hesibandin" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Tu dixwazî dest bi bilindkirinê bikî?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Bilindkirin hate betalkirin" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Daxistina bilindkirinan bi ser neket" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Çewtî di dema xebitandinê de" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Vedigere rewşa pergala orjînal" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Sazkirina bilindkirinan bi ser neket" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Bila pakêtên ku nayên bikaranîn werin rakirin?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "Bi_parêze" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Jêbirin" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Divêtiyên pêwîst ne barkirî ne" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Divêtiya pêwîst '%s' ne barkirî ye " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Rêvebiriya paketan tê kontrol kirin" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Amadekirinên nûjenkirinê bi ser neketin" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Amadekirinên bilindkirinê bi ser neketin" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Agahiyên çavkaniyan tên rojanekirin" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Agahiya pakêtê nederbasdar e" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Tê daxistin" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Tê bilindkirin" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Bilindkirin temam bû" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Li nivîsbariya kevin tê gerandin" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Bilindkirina pergalê temam bû." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "nîşeyên derxistinan nayên dîtin" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Dibe ku barê pêşkêşkerê pir zêde be " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Nîşeyên weşanê nehate daxistin" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Ji kerema xwe girêdana înternetê kontrol bike." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Amûra bilindkirinê nikaribû bimeşîne" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Destnîşana amûra bilindkirinê" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Amûra bilindkirinê" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Anîn biserneket" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Anîna bilindkirinê biserneket. Dibe ku pirsgirêkeke torê hebe. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Naskirin lê nehat" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Naskirina bilindkirnê lê nehat. Dibe ku pirsgirekeke tor an pêşkêşkarê hebe. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Derxistin biserneket" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Derxistina bilindkirinê biserneket. Dibe ku pirsgirekeke tor an pêşkêşkarê " "hebe. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Di dema erêkirina bilindkirinê de çewtî. Dibe ku yan di torê de yan jî di " "pêşkêşkerê de pirsgirêk hebe " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Bilindkirin nayê xebitandin" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Peyama çewtiyê '%s' e." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Nîşeyên Weşanê" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Ji kerema xwe '%s' bixe nav ajokera '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Guhartina Medyayê" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "CPU ya ARMv6 tune" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Ji bo lêgerîna cdroma ku tê de pakêtên bilindbar hene, rêça ku hatiye " "destnîşankirin bikar bîne" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Rojanekirin temam bû" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Pelê %li ji %li bi %sB/ç tê anîn" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Nêzîka %s ma" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Pelê %li ji %li tê daxistin" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Guherandin tê bi kar anîn" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "pirsgirêkên girêdanan - bê veavakirinê dimîne" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Nikarî '%s' saz bike" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Pelgeha veavakirinan ya hatiye taybetkirin ya\n" "'%s' bila were guherandin?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Heke tu vê guhertoyê bi yeke nû biguherînî tu yê hemû guhertinên xwe yên di " "pelê mîhengkirinê de winda bikî." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Fermana 'diff' nehatiye dîtin" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Çewtiyeke cîdî derket holê" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Ji bo ku dane winda nebin hemû sepan û pelgeyên ku vekirî ne bigire." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Cudahiyan Nîşân bide >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Cudahiyan veşêre" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Çewtî" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Girtin" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Termînalê Nîşân bide >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "Termînalê veşêre" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Agahî" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Kîtekît" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s rake" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s saz bike" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s bilind bike" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Destpêkirina nû pêwîst e" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Ji bo bidawîanîna bilindkirinê pergalê ji nû ve bide " "destpêkirin" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Niha _ji nû ve bide destpêkirin" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Ji Bilindkirinê derkeve?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li roj" msgstr[1] "%li roj" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li demjimêr" msgstr[1] "%li demjimêr" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li xulek" msgstr[1] "%li xulek" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li çirke" msgstr[1] "%li çirke" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Bi girêdana te, daxistin dê %s biajo. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Bilinkirin amade dibe" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Çavkaniyên nû yên nivîsbariyê tên anîn" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Pakêtên nû tên anîn" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Bilindkirin tên sazkirin" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Tê pakij kirin" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakêt dê were rakirin." msgstr[1] "%d pakêt dê werine rakirin." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Dê %d pakêta nû were sazkirin." msgstr[1] "Dê %d pakêtên nû werine sazkirin." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Dê %d pakêt were bilindkirin" msgstr[1] "Dê %d pakêt werine bilindkirin" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Pêwîst e tu %s bi tevahî daxî. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Ji bo pergala te bilindkirin tuneye. Karê bilindkirinê wê a niha were " "betalkirin." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Destpêkirina nû pêwîst e" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Bilindkirin bi dawî bû û destpêkirina nû pêwîst e. Tu dixwazî niha bikî?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Tê betalkirin" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Domandin [eN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Kîtekît [k]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "e" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "k" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Rakirin: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Sazkirin: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Bilindkirin: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Ji bo temamkirina rojanekirina, nûdestpêkek pêwist e.\n" "Heke 'e' hilbijêrî pergal ji nû ve dê dest pê bike." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Pelê %(current)li ji %(total)li bi %(speed)s/ç tê daxistin" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Pelê %(current)li ji %(total)li tê daxistin" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Pêşketina pelan yek bi yek nîşan bide" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Ji Bilindkirinê derkeve" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Bilindkirinan _Bidomînî" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Bilindkirina çalak bila were betal kirin?\n" "\n" "Dibe ku pergal neyê bikaranîn. Pêşniyar ew e ku bilindkirin were dewamkirin." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Destpêkirina nûjenkirinê" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Bide _ser" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Cudahiyên navbera pelan" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "Çewtiyê _Ragihîne" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Bidomîne" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Dest bi bilindkirinê were kirin?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Bilindkirina Distrîbusiyonê" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Kanalên nivîsbariyê yên nû tên nivîsîn" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Kompute tê nûdestpêkirin" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Termînal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Bilindkirin" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Guhartoyê nîşan bide û derkeve" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Bilindkirina qismen tê xebitandin" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Kontrol bike ma bilindkirina bi weşana pêşdebiran ya dawî gengaz e an na" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Weşaneke nû nehat dîtin" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/vi.po0000644000000000000000000020547412431225715015003 0ustar # Vietnamese translation for Update Manager. # Copyright © 2005 Gnome i18n Project for Vietnamese. # Clytie Siddall , 2005. # msgid "" msgstr "" "Project-Id-Version: update-manager Gnome HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:39+0000\n" "Last-Translator: Hai Lang \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: vi\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Máy chủ dành cho %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Máy chủ chính" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Tự chọn máy chủ" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Không thể thống kê các mục trong sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Không tìm thấy các gói phần mềm, có thể do không đúng đĩa cài Ubuntu hoặc " "sai hệ thống?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Lỗi đọc dữ liệu từ CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Có lỗi khi đọc dữ liệu từ CD, quá trình nâng cấp sẽ được hủy bỏ. Vui lòng " "thông báo lại lỗi này nếu đây là đĩa CD Ubuntu hợp lệ.\n" "Thông báo lỗi là:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Gỡ bỏ các gói ở tình trạng xấu" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Gói '%s' ở trong trạng thái xung đột và cần cài đặt lại, nhưng không tìm " "thấy lưu trữ nào của gói này. Bạn có muốn gỡ bỏ gói này bây giờ để tiếp tục?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Máy chủ có thể bị quá tải" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Gói bị lỗi" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Hệ thống của bạn chứa các gói tin bị lỗi và không thể sửa được bằng phần mềm " "này. Hãy sửa chúng bằng phần mềm synaptic hoặc apt-get trước khi tiếp tục." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Có lỗi xảy ra khi nâng cấp:\n" "%s\n" "\n" " Nguyên nhân có thể do:\n" " * Nâng cấp phiên bản đang trong giai đoạn phát triển\n" " * Đang sử dụng phiên bản đang trong giai đoạn phát triển\n" " * Phần mềm không được cung cấp chính thức bởi Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Nhiều khả năng đây chỉ là vấn đề tạm thời, vui lòng thử lại sau." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Nếu không cái nào trong chúng được áp dụng, xin hãy báo cáo lỗi này bằng " "cách sử dụng tác lệnh 'ubuntu-bug ubuntu-release-upgrader-core' ở trong trạm." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Không thể tính được dung lượng cần nâng cấp" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Gặp lỗi khi đang xác thực một số gói" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Không thể xác thực một số gói, có thể do lỗi tạm thời của hệ thống mạng. Bạn " "vui lòng thử lại sau. Bên dưới là danh sách các gói chưa được xác thực đầy " "đủ." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Gói phần mềm '%s' được đánh dấu đề gỡ bỏ nhưng nó nằm trong danh sách các " "phần mềm không thể gỡ bỏ." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Gói phần mềm quan trọng '%s' sẽ bị gỡ bỏ." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Đang cố gắng để cài đặt phiên bản danh sách đen '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Không thể cài đặt '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Không thể cài đặt gói theo yêu cầu. Xin hãy báo cáo lỗi này bằng cách sử " "dụng tác lệnh 'ubuntu-bug ubuntu-release-upgrader-core' ở trong trạm." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Không thể đoán được gói gốc" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Không thể xác định được phiên bản Ubuntu bạn đang sử dụng, do hệ thống không " "tìm thấy các gói tin cài đặt giao diện người dùng như ubuntu-desktop, " "kubuntu-desktop, xubuntu-desktop hoặc là edubuntu-desktop.\n" " Xin vui lòng cài đặt một trong các gói trên trước, thông qua ứng dụng " "synaptic hoặc apt-get." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Đang đọc bộ nhớ đệm" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Không thể tạo khóa độc quyền" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Điều này thường có nghĩa là một chương trình quản lý gói khác đang chạy (vd " "như apt-get hay aptitude). Xin hãy đóng chương trình đó trước." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Nâng cấp qua kết nối từ xa (remote connection) chưa được hỗ trợ" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Bạn đang chạy việc nâng cấp qua kết nối ssh từ xa với một giao diện điều " "khiển không hỗ trợ chuyện này. Hãy thử chế độ văn bản và cập nhật với 'do-" "release-upgrade'.\n" "Nâng cấp sẽ bị huỷ bỏ ngay bây giờ. Hãy thử lại mà không dùng ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Tiếp tục chạy với SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Phiên làm việc này có vẻ như đang được thực hiện thông qua ssh. Việc cập " "nhật thông qua ssh hiện tại không được khuyến khích vì khó phục hồi trong " "trường hợp gặp lỗi.\n" "\n" "Nếu bạn muốn tiếp tục, một trình nền ssh bổ sung sẽ được khởi động ở cổng " "'%s'.\n" "Bạn có muốn tiếp tục không?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Đang khởi động tiến trình sshd dự phòng" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Để dễ dàng phục hồi trong trường hợp có sự cố, dịch vụ sshd dự phòng sẽ " "được chạy ở cổng '%s'. Nếu gặp sự cố với phiên làm việc ssh hiện tại, bạn có " "thể kết nối lại thông qua dịch vụ dự phòng nêu trên.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Nếu bạn dùng tường lửa, có thể bạn cần tạm thời mở cổng này. Việc này không " "được tiến hành tự động vì có thể gây nguy hiểm. Bạn có thể mở cổng với:\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Không thể nâng cấp" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Quá trình nâng cấp từ '%s' lên '%s' không được hỗ trợ với công cụ này." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Có lỗi khi khởi tạo trong chế độ kiểm tra lỗi" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Không tạo được chế độ kiểm tra lỗi" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Chế độ kiểm tra lỗi" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Bản nâng cấp này đang chạy trong chế độ hộp cát (thử nghiệm). Tất cả các " "thay đổi sẽ được ghi vào '%s' và sẽ bị mất khi khởi động lại.\n" "\n" "Từ giờ đến lần khởi động lại tiếp theo, *không* thay đổi nào được ghi vào " "thư mục hệ thống một cách vĩnh viễn." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Bản cài đặt python của bạn bị lỗi. Vui lòng sửa lại liên kết " "'/usr/bin/python'." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Gói 'debsig-verify' đã được cài đặt" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Việc nâng cấp không thể thực hiện nếu gói debsig-verify đã được cài.\n" "Vui lòng gỡ bỏ nó bằng phần mềm synaptic hoặc bằng lệnh 'apt-get remove " "debsig-verify' rồi thực hiện lại việc nâng cấp." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Không thể ghi vào '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Không thể ghi vào thư mục hệ thống '%s' trong hệ thống của bạn. Không thể " "tiếp tục việc nâng cấp.\n" "Vui lòng kiểm tra lại rằng thư mục hệ thống của bạn cho ghi vào." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Bao gồm các cập nhật mới nhất từ Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Quá trình nâng cấp sẽ tải và cài đặt các phần mềm mới nhất qua kết nối " "internet. Đây là cách nâng cấp tốt nhất.\n" "\n" "Thời gian nâng cấp có thể lâu hơn, nhưng hệ thống của bạn sẽ được cập nhật " "hoàn toàn. Bây giờ bạn có thể bỏ qua, nhưng sau khi nâng cấp thành công, bạn " "nên tiến hành cài đặt các bản cập nhật mới nhất.\n" "Nếu bạn chọn \"Không\", sẽ không có gì được tải từ trên mạng." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "bị hủy khi nâng cấp %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Không tìm thấy nguồn cập nhật hợp lệ" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Trong khi quét thông tin kho của bạn, chương trình không tìm thấy tên máy " "nhân bản cho việc cập nhật. Có thể bạn đang chạy một máy nhân bản nội bộ hay " "thông tin máy nhân bản đã cũ.\n" "\n" "Bạn có muốn ghi đè tập tin '/etc/apt/sources.list' của bạn không? Nếu bạn " "chọn 'Có' ở đây tất cả các mục '%s' sẽ thành '%s'.\n" "Nếu bạn chọn 'Không' thì việc cập nhật sẽ bị hủy bỏ." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Tạo ra các nguồn cập nhật mặc định?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Sau khi quét '/etc/apt/sources.list' của bạn, chương trình không tìm thấy " "mục hợp lệ cho '%s'.\n" "\n" "Bạn có muốn thêm mục mặc định '%s' không? Nếu bạn chọn 'Không', việc nâng " "cấp sẽ bị huỷ bỏ." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Thông tin về các nguồn cập nhật không hợp lệ" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Việc nâng cấp thông tin kho đã tạo ra một tập tin không hợp lệ nên một tiến " "trình báo cáo lỗi đang được bắt đầu." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Không cho phép sử dụng các nguồn cập nhật bên ngoài" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Một số nguồn bên ngoài trong tập tin sources.list của bạn đã bị cấm. Bạn có " "thể cho phép sử dụng chúng sau khi nâng cấp bằng công cụ 'tính-năng-của-phần-" "mềm' hay bằng trình quản lý gói." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Gói ở tình trạng không ổn định" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Gói '%s' ở trong trạng thái xung đột và cần được cài đặt lại, nhưng không có " "lưu trữ nào cho gói này. Vui lòng cài đặt lại gói bằng cách thủ công hoặc gỡ " "bỏ nó khỏi hệ thống." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Gặp lỗi trong quá trình cập nhật" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Đã có lỗi xuất hiện trong quá trình cập nhật. Thông thường là do các vấn đề " "về mạng, hãy kiểm tra kết nối mạng và thử lại." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Không còn không gian đĩa trống" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Quá trình nâng cấp bị hủy ngang. Cần tổng cộng %s chỗ trống trên đĩa cứng " "'%s'. Bạn cần có thêm %s dung lượng trống trên đĩa '%s'. Dọn sạch rác và các " "gói tạm hay các gói đã dùng để cài đặt chương trình mà bạn không cần nữa " "bằng lệnh 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Tính toán các thay đổi cần thực hiện" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Bạn có muốn bắt đầu nâng cấp?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Nâng cấp bị huỷ bỏ" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Bây giờ việc nâng cấp sẽ bị hủy và hệ thống sẽ được trả về trạng thái ban " "đầu. Sau này bạn có thể tiếp tục việc nâng cấp." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Không thể tải các gói nâng cấp xuống" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Đã huỷ nâng cấp. Hãy kiểm tra kết nối mạng của bạn hay thiết bị cài đặt và " "thử lại. Tất cả tập tin đã tải đều được giữ lại." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Lỗi trong quá trình thực hiện" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Khôi phục hệ thống về trạng thái ban đầu" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Không thể cài đặt các gói nâng cấp" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Quá trình nâng cấp bị hủy bỏ. Trạng thái của hệ thống không thể sử dụng " "được. Chạy hồi phục ngay (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Xin hãy báo cáo lỗi này bằng một trình duyệt nào đó với địa chỉ " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug và " "đính kèm tệp ở đường dẫn /var/log/dist-upgrade/ cho trình báo cáo lỗi.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Quá trình nâng cấp bị hủy bỏ. Xin kiểm tra lại kết nối Internet hay cài đặt " "các phương tiện và thử lại. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Xóa các gói không còn dùng nữa" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Giữ lại" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Xóa bỏ" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Có lỗi trong quá trình kết thúc nâng cấp. Vui lòng xem thông tin bên dưới. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Các gói phụ thuộc chưa được cài đặt" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Gói phụ thuộc '%s' chưa được cài đặt. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Đang kiểm tra trình quản lý gói" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Quá trình chuẩn bị để nâng cấp thất bại" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Gặp lỗi trong việc chuẩn bị hệ thống cho việc nâng cấp nên một tiến trình " "báo cáo lỗi đang được bắt đầu." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Quá trình tải các gói phụ thuộc cần thiết để nâng cấp thất bại" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Hệ thống không thể lấy các điều kiện tiên quyết cho việc nâng cấp. Việc nâng " "cấp sẽ bị hủy ngang và phục hội trạng thái hệ thống ban đầu.\n" "\n" "Ngoài ra, một tiến trình báo cáo lỗi đang được bắt đầu." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Cập nhật thông tin về các nguồn cập nhật" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Không thể thêm cdrom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Rất tiếc, việc thêm CD/DVD không thành công." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Thông tin gói không hợp lệ" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Đang lấy về" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Đang nâng cấp" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Nâng cấp hoàn tất" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Việc nâng cấp đã hoàn thành nhưng có vài lỗi đã xảy ra." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Đang tìm các phần mềm không còn dùng nữa" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Quá trình nâng cấp hệ thống đã hoàn thành" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Quá trình nâng cấp từng phần kết thúc." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Không tìm thấy bản chú giải phát hành" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Máy chủ có thể đang quá tải. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Không thể tải về bản chú giải phát hành" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Hãy kiểm tra kết nối internet của bạn." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "xác thực '%(file)s' với '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "giải nén '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Không thể chạy công cụ nâng cấp" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Có lẽ đây là lỗi trong trình nâng cấp. Xin hãy báo cáo lỗi bằng cách sử dụng " "tác lệnh 'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Chữ ký của công cụ nâng cấp" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Công cụ nâng cấp" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Lỗi tải xuống" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Lỗi tải xuống bản nâng cấp. Có thể là do vấn đề về mạng. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Lỗi xác thực" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Lỗi xác thực bản nâng cấp. Có thể có vấn đề về mạng hoặc với máy chủ. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Lỗi giải nén" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Lỗi giải nén bản nâng cấp. Có thể có vấn đề về mạng hoặc với máy chủ. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Việc xác nhận thất bại" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Lỗi xác minh gói nâng cấp. Có thể có vấn đề về mạng hoặc với máy chủ. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Không thể thực hiện quá trình nâng cấp" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Điều này thường bị gây ra bởi một hệ thống có /tmp được gắn với tuỳ chọn " "noexec. Hãy gắn lại mà không có noexec rồi chạy lại nâng cấp." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Thông báo lỗi: '%s'" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Nâng cấp" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Bản chú giải phát hành" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Đang tải các gói bổ sung..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Tập tin %s / %s, tốc độ %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Tập tin %s / %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Vui lòng đưa đĩa '%s' vào ổ '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Đổi đĩa" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "đang dùng evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Hệ thống cũ dùng hệ thống quản lí tập tin 'evms' trong /proc/mounts. 'evms' " "không còn được hỗ trợ, hãy tắt nó và thực hiện lại quá trình nâng cấp." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Việc vận hành môi trường làm việc chính 'unity' không được phần cứng về đồ " "họa của bạn hỗ trợ đầy đủ. Bạn có thể phải chịu kết cục với môi trường làm " "việc rất chậm sau khi nâng cấp. Lời khuyên của chúng tôi là vẫn cứ giữ phiên " "bản Hỗ trợ dài hạn (LTS). Thông tin chi tiết xem tại " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Bạn còn muốn " "tiếp tục nâng cấp không?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Phần cứng đồ họa của bạn có thể không được hỗ trợ đầy đủ trong Ubuntu 12.04 " "LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Sự hỗ trợ cho phần cứng đồ họa của bạn rất hạn chế trong Ubuntu 12.04 LTS và " "bạn có thể gặp các vấn đề sau khi nâng cấp. Hãy xem thêm thông tin tại " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx . Bạn có muốn " "tiếp tục nâng cấp không?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Quá trình nâng cấp có thể làm giảm hiệu ứng đồ họa, hiệu năng các trò chơi " "và các chương trình khác yêu cầu đồ họa cao." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Máy tính sử dụng trình điều kiển đồ hoạ NVIDIA 'nvidia' . Không có phiên bản " "của trình điều khiển tương đương nào việc với phần cứng của bạn trong Ubuntu " "10.04 LTS\n" "\n" "Bạn có muốn tiếp tục?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Máy tính sử dụng trình điều kiển đồ hoạ AMD 'fglrx'. Không có phiên bản của " "trình điều khiển tương đương nào làm việc với phần cứng của bạn trong Ubuntu " "10.04 LTS\n" "\n" "Bạn có muốn tiếp tục?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Không dùng bộ xử lý i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Hệ thống của bạn sử dụng bộ xử lý i586 hoặc bộ xử lý không hỗ trợ phần mở " "rọng 'cmov'. Tất cả các gói được built với dẫn tối ưu hóa đều yêu cầu phần " "cứng với bộ xử lý tối thiểu là i686. Bạn không thể nâng cấp hệ thống lên đến " "bản Ubuntu tiếp theo với cấu hình phần cứng này." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Không có ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Hệ thống của bạn sử dụng một CPU ARM là kiến trúc cũ hơn ARMv6. Tất cả các " "gói trong karmic được xây dựng với yêu cầu tối ưu ARMv6 như kiến trúc tối " "thiểu. Không thể để nâng cấp hệ thống của bạn với một bản phát hành Ubuntu " "mới với phần cứng này." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Không init nào có sẵn" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Hệ thống của bạn dường như là một môi trường mà không có một virtualised " "init daemon, ví dụ: Linux-VServer. Ubuntu 10.04 LTS không có chức năng này " "trong vòng loại của môi trường, đòi hỏi một cập nhật cho cấu hình máy ảo của " "bạn đầu tiên.\n" "\n" "Bạn có chắc chắn muốn tiếp tục không?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sanbox nâng cấp sử dụng aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Dùng đường dẫn sau để tìm các gói nâng cấp trên CD/DVD" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Dùng trình có giao diện đồ họa. Các trình có thể dùng: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*ĐÃ LOẠI BỎ* tuỳ chọn này sẽ bị bỏ qua" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Thực hiện nâng cấp từng phần (không ghi lại tệp tin sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Tắt hỗ trợ màn hình GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Thiết lập datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Quá trình tải cập nhật đã hoàn thành" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Đang tải file %li / %li tốc độ %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Còn khoảng %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Đang tải tập tin %li của %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Đang áp dụng các thay đổi" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "có lỗi với các gói phụ thuộc - bỏ qua không cấu hình" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Không thể cài đặt '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Việc nâng cấp sẽ tiếp tục nhưng gói '%s' có thể không hoạt động. Xin vui " "lòng gửi một báo cáo lỗi về việc này." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Thay thế tập tin cấu hình đã sửa đổi\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Bạn sẽ mất tất cả các thay đổi đã chỉnh sửa trong tập tin cấu hình này nếu " "bạn chọn thay thế nó bởi phiên bản mới." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Không tìm thấy lệnh 'diff'" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Gặp lỗi nghiêm trọng" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Xin hãy báo cáo lỗi này (nếu như bạn chưa làm) và bao gồm các tập tin " "/var/log/dist-upgrade/main.log và /var/log/dist-upgrade/apt.log trong bản " "báo cáo. Quá trình nâng cấp bị hủy bỏ." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Nhắp Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Nó sẽ hủy bỏ hành động này và rời khỏi hệ thống trong một trạng thái xấu. " "Bạn có chắc chắn muốn thực hiện nó." #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Để tránh mất mát dữ liệu, hãy đóng các ứng dụng và tài liệu đang mở." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Không còn được hỗ trợ bởi Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Hạ cấp (Downgrade) (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Loại bỏ (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Không còn cần thiết (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Cài đặt (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Nâng cấp (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Hiện khác biệt >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Ẩn khác biệt" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Lỗi" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "Đó&ng" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Hiện cửa sổ dòng lệnh >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Ẩn cửa sổ dòng lệnh" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Thông tin" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Chi tiết" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Không còn hỗ trợ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Xóa %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Xóa %s (được cài tự động)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Cài đặt %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Nâng cấp %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Cần phải khởi động lại hệ thống" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Khởi động lại hệ thống để hoàn tất nâng cấp" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Khởi động lại ngay" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Hủy bỏ quá trình nâng cấp?\n" "\n" "Hệ thống sẽ không làm việc ổn định nếu bạn hủy bỏ quá trình này. Khuyến cáo: " "bạn hãy tiếp tục quá trình nâng cấp." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Hủy quá trình nâng cấp?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li ngày" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li giờ" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li phút" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li giây" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Thời gian tải khoảng %s với kết nối DSL tốc độ 1Mbit và khoảng %s với modem " "tốc độ 65k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Quá trình tải xuống sẽ mất %s với tốc độ kết nối hiện tại của bạn. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Đang chuẩn bị nâng cấp" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Đang sửa đổi các kênh cài đặt phần mềm" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Đang lấy các gói mới" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Đang cài đặt các bản nâng cấp" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Đang dọn dẹp hệ thống" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Có %(amount)d gói không còn được hỗ trợ bởi Canonical. Tuy vậy, bạn có thể " "nhận được sự hỗ trợ từ cộng đồng." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d gói sẽ được xóa khỏi hệ thống." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d gói mới sẽ được cài đặt." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d gói sẽ được nâng cấp." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Bạn đã tải về tổng cộng %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Việc cài đặt bản nâng cấp này có thể mất vài giờ. Ngay khi hoàn thành việc " "tải xuống, tiến trình nâng cấp không thể bị hủy bỏ." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Việc lấy về và cài đặt bản nâng cấp này có thể mất vài giờ. Ngay khi hoàn " "thành việc tải xuống, tiến trình nâng cấp không thể bị hủy bỏ." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Việc gỡ bỏ các gói có thể mất vài giờ/ " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Phần mềm trên máy tính này đã được cập nhật." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Hiện không có bản nâng cấp nào cho hệ thống. Quá trình nâng cấp sẽ được hủy " "bỏ." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Cần phải khởi động lại hệ thống" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Quá trình nâng cấp đã hoàn thành và hệ thống cần được khởi động lại. Bạn có " "muốn thực hiện ngay không?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Xin hãy báo cáo lỗi này và bao gồm các tập tin /var/log/dist-" "upgrade/main.log và /var/log/dist-upgrade/apt.log trong bản báo cáo. Quá " "trình nâng cấp bị hủy bỏ.\n" "Tập tin gốc sources.list đã được lưu ở /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Đang dừng lại" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Đã chuyển xuống phiên bản cũ:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Để tiếp tục, hãy nhấn [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "_Tiếp tục " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Chi tiết [t]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "k" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Không còn hỗ trợ: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Gỡ bỏ: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Cài mới: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Nâng cấp: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Tiếp tục [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Để hoàn tất việc nâng cấp, bạn phải khởi động lại máy.\n" "Nếu bạn chọn 'd' hệ thống sẽ được khởi động lại." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Đang tải tập tin %(current)li của %(total)li với tốc độ %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Đang tải tập tin %(current)li của %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Hiện tiến trình của từng tập tin đơn lẻ" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Hủy bỏ nâng cấp" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Tiếp tục Nâng cấp" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Hủy bỏ nâng cấp đang thực hiện?\n" "\n" "Hệ thống có thể ở trong tình trạng không ổn định nếu bạn hủy nâng cấp này. " "Tốt nhất bạn nên tiếp tục nâng cấp." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Bắt đầu Nâng cấp" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Thay thế" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Khác biệt giữa hai tập tin" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Thông báo lỗi" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Tiếp tục" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Bắt đầu quá trình nâng cấp?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Khởi động lại hệ thống để tiếp tục nâng cấp\n" "\n" "Hãy lưu những việc bạn đang làm trước khi tiếp tục." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Nâng cấp bản phân phối" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Cài đặt các kênh phần mềm mới" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Đang khởi động lại máy tính" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Cửa sổ dòng lệnh" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Nâng cấp" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Một phiên bản mới của Ubuntu đã sẵn sàng. Bạn có muốn nâng cấp không?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Không nâng cấp" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Hỏi lại tôi sau" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Vâng, nâng cấp ngay bây giờ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Bạn vừa từ chối nâng cấp lên Ubuntu mới" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Bạn có thể nâng cấp vào lúc khác bằng cách mở Trình cập nhật phần mềm và " "nhấn \"Nâng cấp\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Thực hiện bản nâng cấp được đưa ra" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Thực hiện nâng cấp từng phần" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Hiển thị phiên bản và thoát" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Thư mục chứa các tập tin dữ liệu" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Thực thi một trình quản lý chỉ định" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Thực hiện nâng cấp một phần" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Đang tải công cụ nâng cấp bản phát hành" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Kiểm tra nếu có bản mới nhất phát hành trong giai đoạn phát triển" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Đang thử nâng cấp tới các phiên bản phát hành mới nhất sử dụng trình nâng " "cấp từ $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Chạy trong một chế độ nâng cấp đặc biệt.\n" "Hiện nay 'desktop' cho nâng cấp thường xuyên của một hệ thống máy tính để " "bàn và 'máy chủ' cho các hệ thống máy chủ được hỗ trợ." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Thử nghiệm nâng cấp với một aufs chỗ thử bao" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Kiểm tra chỉ khi một bản phân phối mới có sẵn và thông báo kết quả thông qua " "lệnh thoát" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Đang tìm bản phát hành Ubuntu mới" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Phiên bản Ubuntu của bạn không còn được hỗ trợ." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Để xem thông tin nâng cấp, vui lòng truy cập:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Chưa có bản phát hành mới nào" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Không thể nâng cấp bản phát hành ngay được" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Không thể tiến hành nâng cấp bản phát hành ngay được, xin thử lại sau. Máy " "chủ báo cáo: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Phiên bản mới '%s' sẵn sàng." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Chạy 'do-release-upgrade' để nâng cấp." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s hiện đang sẵn sàng" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Bạn đã từ chối việc nâng cấp lên Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Thêm kết xuất tìm lỗi" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Yêu cầu phải xác thực để thực hiện nâng cấp từng phần" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Yêu cầu phải xác thực để thực hiện bản nâng cấp được đưa ra" ubuntu-release-upgrader-0.220.10/po/rw.po0000644000000000000000000013117712431225715015013 0ustar # translation of update-manager to Kinyarwanda. # Copyright (C) 2005 Free Software Foundation, Inc. # This file is distributed under the same license as the update-manager package. # Steve Murphy , 2005 # Steve performed initial rough translation from compendium built from translations provided by the following translators: # Philibert Ndandali , 2005. # Viateur MUGENZI , 2005. # Noëlla Mupole , 2005. # Carole Karema , 2005. # JEAN BAPTISTE NGENDAHAYO , 2005. # Augustin KIBERWA , 2005. # Donatien NSENGIYUMVA , 2005.. # msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Kinyarwanda \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n!=1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: rw\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/it.po0000644000000000000000000020172112431225715014770 0ustar # Italian translation for update-manager # Copyright (c) (c) 2005 Canonical Ltd, and Rosetta Contributors 2005 # This file is distributed under the same license as the update-manager package. # Fabio Marzocca , 2005. # # # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:44+0000\n" "Last-Translator: Alessandro Ranaldi \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: it\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server in %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Server principale" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Server personalizzati" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Impossibile calcolare la voce di sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Impossibile trovare alcun pacchetto. È probabile che non sia stato " "selezionato un disco di Ubuntu o che l'architettura installata sia " "differente." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Aggiunta del CD non riuscita" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Si è verificato un errore nell'aggiungere il CD, l'avanzamento di versione " "verrà interrotto. Segnalare questo evento come un bug se si tratta di un CD " "Ubuntu valido.\n" "\n" "Il messaggio di errore è stato:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Rimuovi il pacchetto danneggiato" msgstr[1] "Rimuovi i pacchetti danneggiati" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Il pacchetto «%s» è in uno stato inconsistente e deve essere reinstallato, " "ma non è stato trovato alcun archivio. Rimuovere il pacchetto per continuare?" msgstr[1] "" "I pacchetti «%s» sono in uno stato inconsistente e devono essere " "reinstallati, ma non è stato trovato alcun archivio. Rimuovere i pacchetti " "per continuare?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Il server potrebbe essere sovraccarico" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Pacchetti danneggiati" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Il sistema contiene pacchetti non integri che non possono essere corretti " "con questo software. Prima di procedere, correggere tali pacchetti con " "«synaptic» o «apt-get»." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Si è verificato un problema durante il calcolo dell'avanzamento:\n" "%s\n" "\n" " Le cause possono essere:\n" " * Avanzamento a una versione di pre-rilascio di Ubuntu\n" " * Utilizzo di una versione di pre-rilascio di Ubuntu\n" " * Pacchetti software non ufficiali non forniti da Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Si tratta molto probabilmente di un problema momentaneo, riprovare in un " "secondo momento." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Se non vengono installati, segnalare il problema usando il comando «ubuntu-" "bug ubuntu-release-upgrader-core» in un terminale." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Impossibile calcolare l'avanzamento" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Errore nell'autenticare alcuni pacchetti" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Non è stato possibile autenticare alcuni pacchetti. Questo potrebbe essere " "un problema di rete passeggero, è possibile riprovare più tardi. Segue " "l'elenco dei pacchetti non autenticati." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Il pacchetto «%s» è selezionato per la rimozione, ma è nella blacklist per " "la rimozione." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Il pacchetto essenziale «%s» è selezionato per la rimozione." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" "Tentativo di installazione della versione «%s» presente nella blacklist" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Impossibile installare «%s»" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Non è stato possibile installare un pacchetto necessario. Segnalare il " "problema usando il comando «ubuntu-bug ubuntu-release-upgrader-core» in un " "terminale." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Impossibile indovinare il meta-pacchetto" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Il sistema non contiene alcun pacchetto «ubuntu-desktop», «kubuntu-desktop», " "«xubuntu-desktop» oppure «edubuntu-desktop» e non è stato possibile rilevare " "la versione di Ubuntu in esecuzione.\n" " Prima di procedere, usare «synaptic» o «apt-get» per installare uno dei " "pacchetti sopra menzionati." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Lettura della cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Impossibile ottenere un blocco esclusivo" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Questo solitamente significa che un'altra applicazione di gestione dei " "pacchetti (come «apt-get» o «aptitude») è già in esecuzione. Chiudere " "l'altra applicazione prima di continuare." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Avanzamento tramite connessione remota non supportato" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Si sta effettuando l'avanzamento tramite una connessione SSH con " "un'interfaccia che non la supporta. Provare a eseguire un avanzamento in " "modalità testuale con il comando «do-release-upgrade».\n" "\n" "L'avanzamento è stato interrotto. Riprovare senza SSH." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Continuare la sessione con SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Questa sessione sembra essere stata avviata con SSH. Non è consigliato " "eseguire un avanzamento con SSH perché, in caso di errore, il recupero " "risulta più difficile.\n" "\n" "Continuando verrà avviato un demone SSH aggiuntivo sulla porta «%s».\n" "Continuare?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Avvio demone sshd addizionale" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Per facilitare il ripristino in caso di errori, verrà avviato un demone sshd " "aggiuntivo sulla porta «%s». Qualora si verifichino malfunzionamenti con il " "servizio ssh in esecuzione, sarà ancora possibile collegarsi a quello " "aggiuntivo.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Se si sta utilizzando un firewall, potrebbe essere necessario aprire questa " "porta temporaneamente. Questa operazione non viene effettuata " "automaticamente perché è potenzialmente pericolosa. Un possibile comando per " "aprire la porta è:\n" "«%s»" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Impossibile eseguire l'avanzamento" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Questo strumento non supporta l'avanzamento dalla versione «%s» alla " "versione «%s»." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Impostazione della sandbox non riuscita." #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Impossibile creare l'ambiente sanbox." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Modalità sandbox" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Questo avanzamento viene eseguito in modalità \"sandbox\" (di prova). Tutte " "le modifiche vengono scritte in «%s» e al prossimo riavvio andranno perse.\n" "\n" "Nessuna modifica salvata in una cartella di sistema, da ora al prossimo " "riavvio, è permanente." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "La propria installazione di python è danneggiata. Correggere il collegamento " "simbolico «/usr/bin/python»." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Il pacchetto «debsig-verify» è installato" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Non è possibile eseguire l'avanzamento con tale pacchetto installato.\n" "Rimuoverlo usando Synaptic oppure col comando \"apt-get remove debsig-" "verify\" quindi eseguire nuovamente l'avanzamento." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Impossibile scrivere su «%s»" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Impossibile scrivere nella directory di sistema «%s». L'aggiornamento non " "può continuare.\n" "Assicurarsi che la directory di sistema sia accessibile in scrittura." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Includere ultimi aggiornamenti da Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Gli aggiornamenti più recenti possono essere scaricati automaticamente da " "Internet e installati durante l'avanzamento. Se è presente una connessione " "di rete, questo è altamente consigliato.\n" "\n" "L'avanzamento durerà più a lungo, ma quando sarà completo, il sistema sarà " "completamente aggiornato. È possibile non farlo, ma è comunque consigliato " "installare gli ultimi aggiornamenti al termine dell'avanzamento.\n" "Rispondendo «no», la rete non verrà utilizzata." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "disabilitato durante l'avanzamento a %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Non è stato trovato alcun mirror valido" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Durante l'analisi delle informazioni sui repository non è stata trovata " "alcuna voce di mirror per l'avanzamento. Questo può essere provocato " "dall'esecuzione del mirror in locale o da dati sui mirror non recenti.\n" "\n" "Sovrascrivere il file «sources.list» comunque? Scegliendo «Sì» verranno " "sostituite le voci «%s» in «%s».\n" "Scegliendo «No» l'avanzamento verrà annullato." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Generare le sorgenti predefinite?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Non è stata trovata alcuna voce per «%s» nel file «sources.list».\n" "\n" "Aggiungere le voci predefinite per «%s»? Scegliendo «No» l'avanzamento verrà " "annullato." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Informazioni sul repository non valide" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "L'aggiornamento delle informazioni sui repository ha creato un file non " "valido. Sarà ora possibile segnalare questo problema." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Sorgenti di terze parti disabilitate" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Sono state disabilitate alcune voci di terze parti nel file «sources.list». " "È possibile abilitarle di nuovo dopo l'avanzamento di versione con lo " "strumento «software-properties» o con il gestore di pacchetti." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pacchetto in uno stato inconsistente" msgstr[1] "Pacchetti in uno stato inconsistente" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Il pacchetto «%s» è in uno stato inconsistente e deve essere reinstallato, " "ma non è stato trovato alcun archivio. Reinstallare il pacchetto manualmente " "o rimuoverlo dal sistema." msgstr[1] "" "I pacchetti «%s» sono in uno stato inconsistente e devono essere " "reinstallati, ma non è stato trovato alcun archivio. Reinstallare i " "pacchetti manualmente o rimuoverli dal sistema." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Errore durante l'aggiornamento" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Si è verificato un problema durante l'aggiornamento. Solitamente si tratta " "di problemi di rete, controllare la connessione di rete e riprovare." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Spazio libero su disco insufficiente" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "L'avanzamento si è interrotto: sono necessari %s di spazio libero sul disco " "«%s», liberare almeno altri %s di spazio sul disco «%s». Svuotare il cestino " "e rimuovere pacchetti temporanei di installazioni precedenti con il comando " "«sudo apt-get clean»." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Calcolo delle modifiche" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Avviare l'avanzamento di versione?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Avanzamento annullato" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "L'avanzamento di versione verrà annullato e sarà ripristinato lo stato " "originale del sistema. È possibile riprendere l'avanzamento di versione in " "un secondo momento." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Impossibile scaricare gli avanzamenti di versione" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "L'avanzamento si è interrotto. Controllare la connessione a Internet o il " "supporto di installazione e riprovare. Tutti i file scaricati finora saranno " "conservati." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Errore durante il commit" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Ripristino dello stato originale del sistema" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Impossibile installare gli avanzamenti di versione" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "L'avanzamento si è interrotto: il sistema potrebbe essere in uno stato " "inutilizzabile. Verrà avviato un ripristino (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Segnalare questo problema aprendo il browser al'indirizzo " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug e " "allegando alla segnalazione i file presenti in /var/log/dist-upgrade/.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "L'avanzamento si è interrotto: controllare la connessione a Internet o il " "supporto di installazione e riprovare. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Rimuovere i pacchetti obsoleti?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Mantieni" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Rimuovi" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Si è verificato un problema durante la pulizia. Leggere il messaggio " "seguente per maggiori informazioni. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Le dipendenze richieste non sono installate" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "La dipendenza richiesta «%s» non è installata. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Controllo gestore dei pacchetti" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Preparazione dell'avanzamento di versione non riuscita" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "La preparazione del sistema per l'avanzamento non è riuscita. Sarà ora " "possibile segnalare questo problema." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Recupero dei prerequisiti per l'avanzamento di versione non riuscito" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Non è stato possibile recuperare i prerequisiti per l'avanzamento. Verrà ora " "ripristinato lo stato originario del sistema.\n" "\n" "Sarà ora possibile segnalare questo problema." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Aggiornamento delle informazioni sui repository" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Aggiunta CD-ROM non riuscita" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "L'aggiunta del CD-ROM non è avvenuta con successo." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Informazioni di pacchetto non valide" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Recupero file" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Avanzamento versione" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Avanzamento di versione completato" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "L'avanzamento di versione è stato completato, ma durante l'operazione si " "sono verificati degli errori." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Ricerca di software obsoleto" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "L'avanzamento di versione del sistema è stato completato." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "L'avanzamento parziale è stato completato." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Impossibile trovare le note di rilascio" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Il server potrebbe essere sovraccarico. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Impossibile scaricare le note di rilascio" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Controllare la propria connessione a internet." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "autenticazione di «%(file)s» con «%(signature)s» " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "estrazione di «%s»" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Impossibile eseguire lo strumento di avanzamento versione" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Si tratta molto probabilmente di un problema dello strumento di " "aggiornamento. Segnalarlo usando il comando «ubuntu-bug ubuntu-release-" "upgrader-core» in un terminale." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Firma dello strumento di avanzamento versione" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Strumento di avanzamento versione" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Recupero non riuscito" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Il recupero dei file per l'avanzamento di versione non è riuscito. Potrebbe " "dipendere da un problema di rete. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Autenticazione non riuscita" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Non è riuscita l'autenticazione dell'avanzamento di versione. Potrebbe " "dipendere da un problema con la connessione di rete o con il server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Estrazione non riuscita" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Non è riuscita l'estrazione dell'aggiornamento. Potrebbe dipendere da un " "problema con la connesione di rete o con il server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verifica non riuscita" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Non è riuscita la verifica dell'avanzamento di versione. Potrebbe dipendere " "da un problema con la connessione di rete o con il server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Impossibile eseguire l'avanzamento" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Questo di solito succede se /tmp è montata in modalità noexec. Montarla " "senza modalità noexec ed eseguire nuovamente l'avanzamento." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Il messaggio di errore è «%s»." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Avanza" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Note di rilascio" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Scaricamento pacchetti aggiuntivi..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "File %s di %s a %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "File %s di %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Inserire «%s» nell'unità «%s»" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Cambio del supporto" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "È in uso evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Il sistema sta utilizzando il gestore di volumi «evms» in /proc/mounts. Il " "software «evms» non è più supportato, disattivarlo e rieseguire " "l'avanzamento." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "L'esecuzione dell'ambiente desktop «unity» non è completamente supportata " "dal proprio hardware. Dopo l'aggiornamento ci si troverà in un ambiente " "molto rallentato. Si consiglia di mantenere la versione LTS per il momento. " "Per ulteriori informazioni consultare la pagina " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D. Continuare " "comunque con l'aggiornamento?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "La scheda video potrebbe non essere pienamente supportata in Ubuntu 12.04 " "LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Il supporto per le schede video Intel in Ubuntu 11.10 è limitato e " "potrebbero esserci dei problemi dopo l'avanzamento. Per ulteriori " "informazioni andare su " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Continuare?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "L'avanzamento di versione potrebbe compromettere gli effetti visivi e le " "prestazioni di giochi e di altri programmi che fanno un uso intensivo della " "grafica." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Sono in uso i driver grafici NVidia «nvidia». In Ubuntu 10.04 LTS non ci " "sono driver funzionanti con la scheda video in uso.\n" "\n" "Continuare comunque?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Sono in uso i driver grafici AMD «fglrx». In Ubuntu 10.04 LTS non ci sono " "driver funzionanti con la scheda video in uso.\n" "\n" "Continuare comunque?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "CPU non compatibile" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Questo sistema è provvisto di un processore (o CPU) di tipo i586 oppure che " "non presenta l'estensione \"cmov\". Tutti i pacchetti sono stati creati con " "ottimizzazioni che richiedono come architettura minima quella di tipo i686. " "A causa di tale configurazione hardware non è possibile aggiornare questo " "sistema a un nuovo rilascio di Ubuntu." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Nessuna CPU ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Il sistema utilizza una CPU ARM antecedente all'architettura ARMv6. Tutti i " "pacchetti nella versione 9.10 sono stati creati con ottimizzazioni che " "richiedono ARMv6 come architettura minima. Non è possibile avanzare il " "sistema a un nuovo rilascio di Ubuntu con l'hardware attuale." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "\"init\" non disponibile" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Il proprio sistema sembra essere un ambiente di virtualizzazione privo di un " "demone \"init\" (come Linux-VServer). Ubuntu 10.04 LTS non può funzionare in " "questo tipo di ambiente ed è prima richiesto un aggiornamento della macchina " "virtuale.\n" "\n" "Continuare comunque?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Avanzamento in ambiente sandbox con file system aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Utilizzare il percorso fornito per cercare un CD-ROM contenente pacchetti da " "far avanzare." #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Frontend da usare. Disponibili al momento: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*DEPRECATA* Questa opzione sarà ignorata" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Esegue solo un avanzamento parziale (nessuna riscrittura di sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Disabilita la schermata GNU di supporto" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Imposta datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Recupero file completato" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Recupero file %li di %li a %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Circa %s rimanenti" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Recupero file %li di %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Applicazione delle modifiche" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemi con le dipendenze - lasciato non configurato" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Impossibile installare «%s»" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "L'avanzamento procederà, ma il pacchetto «%s» potrebbe non essere in uno " "stato funzionante. Segnalare questo evento come bug." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Sostituire il file di configurazione personalizzato\n" "«%s»?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Se si decide di sostituire il file di configurazione con una versione più " "recente, tutte le modifiche apportate andranno perse." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Il comando «diff» non è stato trovato" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Si è verificato un errore fatale" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Se non è già stato fatto, segnalare questo bug includendo nella segnalazione " "i file /var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. " "L'avanzamento si è interrotto.\n" "Il file sources.list originale è stato salvato come " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Premuto Ctrl-C" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Questo terminerà l'operazione e potrebbe lasciare il sistema in uno stato " "d'errore. Confermare l'operazione?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Chiudere tutte le applicazioni e i documenti aperti per prevenire la perdita " "di dati." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Non più supportati da Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Da retrocedere (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Da rimuovere (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Non più necessari (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Da installare (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Da aggiornare (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Mostra differenze >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Nascondi differenze" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Errore" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Chiudi" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Mostra terminale >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Nascondi terminale" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informazioni" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Dettagli" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Non più supportato %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Rimuovere %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Rimuovere %s (installato automaticamente)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Installare %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Avanzare %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Riavvio richiesto" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Riavviare il sistema per completare l'avanzamento" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Riavvia ora" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Annullare l'avanzamento in corso?\n" "\n" "Se viene annullato l'avanzamento, il sistema può rimanere in uno stato " "instabile. È fortemente consigliato riprendere l'avanzamento." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Annullare l'avanzamento di versione?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li giorno" msgstr[1] "%li giorni" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li ora" msgstr[1] "%li ore" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuto" msgstr[1] "%li minuti" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li secondo" msgstr[1] "%li secondi" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s e %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Lo scaricamento richiede circa %s con una connessione DSL da 1Mbit e circa " "%s con un modem 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Questo scaricamento richiederà circa %s con la propria connessione. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Preparazione all'avanzamento di versione" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Recupero nuovi canali software" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Recupero nuovi pacchetti" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installazione degli aggiornamenti" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Pulizia" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d pacchetto installato non è più supportato da Canonical. È " "possibile continuare a ottenere supporto dalla comunità." msgstr[1] "" "%(amount)d pacchetti installati non sono più supportati da Canonical. È " "possibile continuare a ottenere supporto dalla comunità." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pacchetto sta per essere rimosso." msgstr[1] "%d pacchetti stanno per essere rimossi." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nuovo pacchetto sta per essere installato." msgstr[1] "%d nuovi pacchetti stanno per essere installati." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pacchetto sta per essere aggiornato." msgstr[1] "%d pacchetti stanno per essere aggiornati." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "È necessario scaricare un totale di %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "L'installazione degli avanzamenti di versione può richiedere diverse ore e " "non è possibile annullarlo in un momento successivo." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Il recupero dei file e l'installazione degli avanzamenti di versione possono " "richiedere diverse ore e non è possibile annullarli in un momento successivo." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "La rimozione dei pacchetti può richiedere diverse ore. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Il software è aggiornato." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Non ci sono avanzamenti di versione disponibili per questo sistema. " "L'avanzamento sarà annullato." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Riavvio richiesto" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "L'avanzamento di versione è stato completato ed è richiesto un riavvio. " "Riavviare ora?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Se non è già stato fatto, segnalare questo bug includendo nella segnalazione " "i file /var/log/dist-upgrade/main.log e /var/log/dist-upgrade/apt.log. " "L'avanzamento si è interrotto.\n" "Il file sources.list originale è stato salvato come " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Interruzione" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Retrocesso:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Per continuare premere [INVIO]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Continua [sN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Dettagli [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "s" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Non più supportato: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Rimuove: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Installa: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Avanza: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continua [Sn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Per completare l'avanzamento è necessario riavviare il computer.\n" "Selezionando \"s\" il sistema sarà riavviato." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Scaricamento del file %(current)li di %(total)li a %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Scaricamento del file %(current)li di %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Mostra avanzamento dei singoli file" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "A_nnula avanzamento" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Riprendi avanzamento" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Annullare l'avanzamento di versione in corso?\n" "\n" "Annullando l'avanzamento, il sistema potrebbe trovarsi in uno stato " "inutilizzabile. È fortemente consigliato riprendere l'avanzamento di " "versione." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Avvia avanzamento" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Sostituisci" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Differenze tra i file" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Segnala bug" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continua" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Avviare l'avanzamento di versione?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Riavviare il sistema per completare l'avanzamento\n" "\n" "Salvare il proprio lavoro prima di proseguire." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Avanzamento distribuzione" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Impostazione nuovi canali software" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Riavvio del sistema" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminale" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Esegui avanzamento" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "È disponibile una nuova versione di Ubuntu. Effettuare l'avanzamento?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Non avanzare" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Ricorda in seguito" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Esegui avanzamento" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Avanzamento alla nuova versione di Ubuntu rifiutato" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "È possibile eseguire l'aggiornamento in un secondo momento aprendo " "«Aggiornamenti software» e facendo clic su «Aggiorna»." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Eseguire un avanzamento di versione" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Per eseguire l'aggiornamento di Ubuntu, è necessario autenticarsi." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Eseguire un avanzamento parziale" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Per eseguire un aggiornamento parziale, è necessario autenticarsi." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Mostra la versione ed esce" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Directory contenente i file di dati" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Esegue il frontend specificato" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Esecuzione avanzamento di versione parziale" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Scaricamento dello strumento di avanzamento versione" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Verifica se è possibile avanzare all'ultima versione di sviluppo" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Tentativo di avanzamento all'ultimo rilascio usando lo strumento di " "avanzamento da $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Eseguire in modalità speciale di avanzamento.\n" "Attualmente sono supportati «desktop» per un avanzamento normale di sistemi " "desktop e «server» per sistemi server." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" "Prova di avanzamento in ambiente sandbox con sovrapposizione di file system " "aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Controlla se è dispoibile un nuovo rilascio della distribuzione e riporta il " "risultato tramite un codice d'uscita" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Verifica un nuovo rilascio di ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Il rilascio di Ubuntu in uso non è più supportato." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Per informazioni sull'avanzamento consultare:\n" "$(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Nessun nuovo rilascio trovato" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Avanzamento di versione impossibile in questo momento" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "L'avanzamento di versione non può essere eseguito, riprovare in un secondo " "momento. Il messaggio del server è stato: «%s»" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Nuovo rilascio «%s» disponibile." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Lanciare «do-release-upgrade» per eseguire l'avanzamento." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Disponibile avanzamento a Ubuntu &(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "È stato rifiutato l'avanzamento alla versione %s di Ubuntu" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Abilitare le informazioni di debug" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "È necessaria l'autenticazione per eseguire un avanzamento parziale" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "" #~ "È necessaria l'autenticazione per eseguire un avanzamento di versione" ubuntu-release-upgrader-0.220.10/po/sq.po0000644000000000000000000020235412431225715015002 0ustar # Albanian translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:43+0000\n" "Last-Translator: Vilson Gjeci \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: sq\n" "X-Poedit-Bookmarks: 126,-1,-1,-1,-1,-1,-1,-1,-1,-1\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Serveri për %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Serveri Kryesor" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Servera të personalizuar" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Nuk mundëm të llogarisim hyrjen sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "I pamundur lokalizimi i skedarëve të paketave, ndoshta ky nuk është një disk " "i Ubuntu ose është në arkitekturë e gabuar?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Futja e CD dështoi" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Pati një gabim në shtimin e CD, përditësimi do të abortohet. Ju lutemi " "raportojeni këtë si një defekt nëse ky është një CD i vlefshëm i Ubuntu.\n" "\n" "Mesazhi i gabimit ishte:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Fshije paketën në gjendje të keqe" msgstr[1] "Fshiji paketat në gjendje të keqe" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Paketa '%s' është në një gjendje të paqëndrueshme dhe ka nevojë të " "riinstalohet, por nuk është gjetur asnjë arkiv për të. Dëshironi ta hiqni " "këtë paketë tani për të vazhduar?" msgstr[1] "" "Paketat '%s' janë në një gjendje të paqëndrueshme dhe kanë nevojë të " "riinstalohen, por nuk është gjetur asnjë arkiv për to. Dëshironi t'i hiqni " "këto paketa tani për të vazhduar?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Serveri mund të jetë i mbingarkuar" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paketat e dëmtuara" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sistemi juaj përmban paketa defekt, të cilat nuk mund të riparohen me këtë " "softuer.Ju lutemi riparoni këtë me Synaptic ose apt-get, para se të shkoni " "përpara." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Ndodhi një problem i pazgjidhshëm ndërkohë që po llogarisnim përditësimin:\n" "%s\n" "\n" " Kjo mund të shkaktohet nga:\n" " * Përditësimi në një version testimi të Ubuntu\n" " * Nisja e versionit të testimit të Ubuntu\n" " * Paketa jo zyrtare të programeve që nuk jepen nga Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Ky ka mundësi të jetë një problem kalimtar, ju lutemi provojeni përsëri më " "vonë." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Nëse asnjë nga këto nuk aplikohet, atëherë ju lutemi ta raportoni këtë gabim " "duke përdorur komandën 'ubuntu-bug ubuntu-release-upgrader-core' në një " "terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Nuk mundëm të llogarisim përditësimin" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Gabim gjatë vërtetimit të origjinalitetit të disa paketave." #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Disa paketa nuk mund të vërtetoheshin për origjinalitet.Kjo ka si pasojë " "problemet me rrjetin.Ju lutemi provoni më vonë edhe një herë.Paketat e " "mëposhtme nuk mund të vërtetohen për nga origjinaliteti." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Paketa '%s' është shënuar për tu hequr, por është në listën e zezë të heqjes." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Paketa thelbësore '%s' është shënuar për tu hequr." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Duke u përpjekur të istaloj versionin e listës së zezë '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' nuk mund të instalohet" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Ishte i pamundur instalimi i një pakete të kërkuar. Ju lutemi ta raportoni " "këtë si një gabim duke përdorur 'ubuntu-bug ubuntu-release-upgrader-core' në " "një terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Can't guess meta-package" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Sistemi juaj nuk prëmban një paketë ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop ose edubuntu-desktop dhe nuk kemi mundësi të dallojmë cilin version " "të Ubuntu dispononi.\n" " Ju lutemi instaloni fillimisht një nga paketat e mësipërme duke përdorur " "synaptic apo apt-get para proçedimit." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Duke lexuar depozitën" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Është e pamundur të merret një hyrje ekskluzive" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Kjo dmth se me siguri, një tjetër Paketmanager është aktiv (si psh apt-get " "ose aptitude). Ju lutemi mbylleni së pari këtë aplikacion." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Përditësimi nga një lidhje e largët nuk suportohet" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Ju po e nisni përditësimin nga një lidhje e largët ssh me një frontend që " "nuk e suporton atë. Ju lutemi të provoni një përditësim në mënyrë teksti me " "'do-release-upgrade'.\n" "\n" "Përditësimi do të mbyllet tani. Ju lutemi provojeni pa ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Të vazhdojmë punën nën SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Ky seksion duket se është nisur me ssh. Nuk rekomandohet për momentin të " "kryeni një përditësim me ssh sepse në rast dështimi është e vështirë të " "rekuperoni.\n" "\n" "Nëse vazhdoni, një ssh daemon shtesë do të nisë në portin '%s'.\n" "Dëshironi të vazhdoni?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Po nisim sshd shtesë" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Për ta bërë riparimin më të lehtë në rastin e ndonjë dështimi, një sshd " "shtesë do të nisë në portin '%s'. Nëse diçka nuk shkon si duhet me ssh e " "nisur, ju mund të vazhdoni të lidheni me atë shtesë.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Nëse keni një firewall ju duhet që përkohësisht ta hapni këtë port. Duke " "qenë se kjo është potencialisht e rrezikshme nuk bëhet automatikisht. Ju " "mund ta hanpi portin me p.sh.:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Nuk mund të aktualizoj" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Një përditësim nga '%s' në '%s' nuk suportohet me këtë mjet." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Instalimi i Sandbox dështoi" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Nuk qe e mundur të krijohej ambienti i sandbox." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Mënyra Sandbox" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Ky përditësim është nisur në mënyrën e kutisë së rërës (testimi). Të gjitha " "ndryshimet janë shkruar tek '%s' dhe do të humbasin pas rindezjes.\n" "\n" "*Asnjë* ndryshim i shkruajtur në një drejtori të sistemit nga tani e deri në " "rindezje nuk do të jetë i përhershëm." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Instalimi juaj i python është i dëmtuar. Ju lutemi rregulloni " "'/usr/bin/python' symlink." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Paketa 'debsig-verify' është instaluar" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Përditësimi nuk mund të vazhdojë me atë paketë të instaluar.\n" "Ju lutemi hiqeni paraprakisht me synaptic ose 'apt-get remove debsig-verify' " "dhe nisni përditësimin përsëri." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Nuk mund të shkruaj tek '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Nuk është e mundur të shkruaj në drejtorinë e sistemit '%s' në sistemin " "tuaj. Përditësimi nuk mund të vazhdojë.\n" "Ju lutemi ta bëni të shkruajtshme drejtorinë tuaj të sistemit." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Të përfshijmë edhe përditësimet e fundit nga Interneti?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Sistemi i përditësimit mund të përdorë internetin për të shkarkuar " "automatikisht përditësimet e fundit dhe për t'i instaluar ato gjatë " "përditësimit. Nëse keni një lidhje me rrjetin j'ua rekomandojmë nxehtësisht " "këtë.\n" "\n" "Përditësimi do të zgjasë më shumë, por kur të kompletohet, sistemi juaj do " "të jetë tërësisht i përditësuar. Ju mund të zgjidhni të mos e bëni këtë, por " "ju duhet të instaloni përditësimet e fundit me njëherë pas instalimit.\n" "Nëse përgjigjeni 'jo' këtu, rrjeti nuk do të përdoret fare." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "u çaktivizua në përditësimin e %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nuk u gjet asnjë lidhje e vlefshme" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Ndërkohë që po skanonim informacionin e magazinave tuaja nuk u gjet një " "pasqyrë për përditësim. Kjo mund të ndodhë kur ju keni një pasqyrë të " "brendshme ose kur informacioni i pasqyrës nuk është i përditësuar.\n" "Dëshironi ta rishkruani gjithësesi skedarin tuaj 'sources.list'? Nëse " "zgjidhni 'Po' këtu ai do t'i përditësojë të gjitha hyrjet '%s' tek '%s'.\n" "Nëse zgjidhni 'Jo' përditësimi do të anullohet." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Të gjenerojmë resurset e parazgjedhura?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Pasi skanuam 'sources.list' nuk u gjet një hyrje e vlefshme '%s'.\n" "\n" "A duhet të shtohen hyrjet e parazgjedhura për '%s'? Nëse zgjidhni 'Jo', " "përditësimi do të anullohet." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Informacioni i magazinës është i pavlefshëm" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Përditësimi i informacionit të magazinës krijoi një skedar të apvlefshëm " "kështu që një proçes i raportimit të gabimit u krijua." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Burimet e palëve të treta janë çaktivizuar" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Disa hyrje nga palë të treta në sources.list u çaktivizuan. Ju mund t'i " "riaktivizoni ato pas përditësimit me mjetin 'parametrat e programeve' ose me " "menaxhuesin tuaj të paketave." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paketë në gjendje të paqëndrueshme" msgstr[1] "Paketa në gjendje të paqëndrueshme" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Paketa '%s' është në një gjendje jo të qëndrueshme dhe duhet riinstaluar, " "por për të nuk mund të gjendet asnjë arkiv. ju lutemi riinstalojeni paketën " "në mënyrë manuale ose hiqeni nga sistemi." msgstr[1] "" "Paketat '%s' janë në një gjendje jo të qëndrueshme dhe duhen riinstaluar, " "por për to nuk mund të gjendet asnjë arkiv. ju lutemi riinstalojini paketat " "në mënyrë manuale ose hiqini nga sistemi." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Gabim gjatë përditësimit" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Ndodhi një problem gjatë përditësimit. Ky zakonisht është një lloj problemi " "me rrjetin, ju lutemi kontrolloni lidhjen tuaj me rrjetin dhe provojeni " "përsëri." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Nuk ka hapësirë të lirë sa duhet" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Ky përditësim u anullua. Përditësimi ka nevojë për një total prej %s " "hapësirë të lirë në diskun '%s'. Ju lutemi të lironi të paktën %s hapësirë " "shtesë në diskun '%s'. Zbrazni koshin e mbeturinave dhe hiqni paketat e " "përkohshme të instalimeve të mëparshme duke përdorur 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Duke llogaritur ndryshimet" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Dëshironi të nisni përditësimin?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Përditësimi u anullua" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Përditësimi do të anullohet tani dhe do të kthehet gjendja origjinale e " "sistemit. Ju mund ta rinisni përditësimin më vonë." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Nuk mund të aktualizohen, shkarkimet" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Përditësimi u anullua. Ju lutemi të kontrolloni lidhjen tuaj me internatin " "apo median tuaj të instalimit dhe ta provoni përsëri. Të gjithë skedarët e " "shkarkuar deri në këtë moment janë mbajtur." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Gabim gjatë vendosjes" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Duke kthyer gjendjen origjinale të sistemit" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Nuk mund të instalohen, aktualizimet" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Përditësimi u anullua. Sistemi juaj mund të jetë në një gjendje të " "paqëndrueshme. Tani do të nisë rekuperimi (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Ju lutemi ta raportoni këtë gabim në një shfletues interneti tek " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "dhe bashkangjitni skedarët tek /var/log/dist-upgrade/ në raportin e " "gabimit.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Përditësimi u anullua. Ju lutemi të kontrolloni lidhjen tuaj me internetin " "apo median e instalimit dhe të provoni përsëri. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Ti heqim paketat e vjetra?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Mbaj" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Hiqe" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Një problem ndodhi gjatë pastrimit. ju lutemi shikoni mesazhin e mësipërm " "për më tepër informacion. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Vartësitë e kërkuara nuk janë instaluar" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Vartësia e kërkuar '%s' nuk është instaluar. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Duke kontrolluar menaxhuesin e paketave" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Përgatitja e përditësimit dështoi" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Përgatitja e sistemit për përditësim dështoi ndaj një proçes i raportimit të " "gabimit po niset." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Marrja e kërkesave të përditësimit dështoi" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Sistemi nuk ishte në gjendje të merrte kërkesat paraprake përpërditësim. " "Përditësimi tani do të abortohet dhe do të kthejë gjendje origjinale të " "sistemit.\n" "\n" "Gjithashtu, një proçes i raportimit të gabimit do të niset." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Duke përditësuar informacionin e magazinës" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Dështova në shtimin e cdrom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Më vjen keq, shtimi i cdrom nuk qe i suksesshëm." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Informacion i pavlefshëm i paketave" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Duke mbledhur" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Aktualizo" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Aktualizimi përfundoi" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Përditësimi u kompletua por pati gabime gjatë proçesit të përditësimit." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Duke kërkuar për programe të vjetra" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Aktualizimi i sistemit është komplet" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Përditësimi i pjesshëm nuk u kompletua." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Nuk mund të gjejmë shënimet e versionit" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Serveri mund të jetë i mbingarkuar. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Nuk mund të shkarkojmë shënimet e versionit" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Ju lutemi kontrolloni lidhjen tuaj me internetin." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "identifiko '%(file)s' kundrejt '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "duke ekstraktuar '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Nuk mund ta nisim mjetin e përditësimit" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Ky ka mundësi të jetë një gabim në mjetin e përditësimit. Ju lutemi ta " "raportoni si një gabim duke përdorur komandën 'ubuntu-bug ubuntu-release-" "upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Përditësoni firmën e mjeteve" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Mjeti përditësues" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Dështuam në marrje" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Marrja e përditësimit dështoi. Mund të jetë një problem rrjeti. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Identifikimi dështoi" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Identifikimi i përditësimit dështoi. Mund të ketë një problem me rrjetin ose " "me serverin. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Dështuam në nxjerrje" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Nxjerrja e përditësimit dështoi. Mund të ketë një problem me rrjetin apo me " "serverin. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verifikimi dështoi" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Verifikimi i përditësimit dështoi. Mund të ketë një problem me rrjetin apo " "me serverin. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Nuk mund të nisim përditësimin" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Kjo zakonisht shkaktohet nga një sistem ku /tmp montohet noexec. Ju lutemi " "ta rimontoni pa noexec dhe nisni përditësimin përsëri." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Mesazhi i gabimit është '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Aktualizo" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Shënime Mbi Versionin" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Duke shkarkuar skedarë shtesë të paketave..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Skedari %s nga %s në %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "skedari %s nga %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Ju lutem Fut '%s' Në ngases '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Ndryshim i Medias" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms është në përdorim" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Sistemi juaj përdor menaxhuesin e volumit 'evms' në /proc/mounts. Programi " "'evms' nuk suportohet më, ju lutemi fikeni atë dhe nisni përditësimin " "përsëri kur të keni mbaruar." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Nisja e ambientit të desktopit 'unity' nuk suportohet plotësisht nga " "hardware juaj i grafikëve. Ndoshta mund të përfundoni në një ambient shumë " "të ngadaltë pas përditësimit. Këshilla jonë është të mbani versionin LTS për " "momentin. Për më tepër informacion shikoni " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D. Prapëseprapë " "a dëshironi të vazhdoni me përditësimin?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Grafikët tuaj mund të mos suportohen plotësisht në Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Mbështetja në Ubuntu 12.04 LTS pëe hardware tuaj të grafikëve Intel është e " "kufizuar dhe ju mund të hansi në probleme pas përditësimit. Për më tepër " "informacion shikoni " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Dëshironi të " "vazhdoni me përditësimin?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Përditësimi mund të pakësojë efektet e desktopit, performancën e lojërave " "dhe të programeve të tjerë me grafikë intensivë." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Ky kompjuter për momentin po përdorin driverin e grafikëve NVIDIA 'nvidia'. " "Nuk ka një version të disponueshëm të këtij driveri që të punojë me kartën " "tuaj video në Ubuntu 10.04 LTS.\n" "\n" "Dëshironi të vazhdoni?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Ky kompjuter për momentin po përdorin driverin e grafikëve AMD 'fglrx'. Nuk " "ka një version të disponueshëm të këtij driveri që të punojë me kartën tuaj " "video në Ubuntu 10.04 LTS.\n" "\n" "Dëshironi të vazhdoni?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Jo i686 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sistemi juaj përdor një CPU i586 ose një CPU që nuk e ka zgjatimin 'cmov'. " "Të gjitha paketat janë ndërtuar me përmirësime që kërkojnë i686 si " "arkitekturë minimale. Nuk është e mundur ta përditësoni sistemin tuaj në një " "version të ri të Ubuntu me këtë hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Jo ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sistemi juaj përdor një ARM CPU i cili është më i vjetër se arkitektura " "ARMv6. Të gjitha paketat në KArmic janë ndërtuar me përmirësime që kërkojnë " "ARMv6 si arkitekturë minimale. Nuk është e mundur ta përditësoni sistemin " "tuaj në një version të ri të Ubuntu me këtë hardware." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Nuk ka init të disponueshëm" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Sistemi juaj duket se është një ambient i virtulizuar pa një init daemon, " "pra Linux-VServer. Ubuntu 10.04 LTS nuk mund të funksionojë brenda këtij " "lloj ambienti, sepse kërkon që fillimisht ju t'i bëni një përditësim " "konfigurimit të makinës suaj virtuale.\n" "\n" "Jeni i sigurtë që dëshironi të vazhdoni?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Po përditësojmë Sandbox duke përdorur aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Përdor shkurtoren e dhënë për të kërkuar për një cdrom me paketa të " "përditësueshme" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Përdor frontend. E disponueshme për momentin: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*DEPRECATED* ky opsion do të shpërfillet." #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Kryej një përditësim të pjesshëm (pa rishkruar sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Çaktivizo mbështetjen për ekranin e GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Vendos datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Marrja u kompletua" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Duke marrë skedarin %li e %li në %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Rreth %s të mbetura" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Duke marrë skedarin %li të %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Duke aplikuar ndryshimet" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "probleme vartësie - po e lëmë të pakonfiguruar" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Nuk mund të instalojmë '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Përditësimi do të vazhdojë por paketa '%s' mund të mos jetë në gjendje pune. " "ju lutemi të konsideroni lëshimin e një raporti të defektit rreth saj." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Zëvendëso skedarin e përshtatur të konfigurimit\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Ju do të humbisni çdo ndryshim që i keni bërë këtij skedari konfigurimi nëse " "vendosni që ta zëvendësoni atë me një version më të ri." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Komanda 'diff' nuk u gjet" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ndodhi një gabim fatal" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ju lutemi ta raportoni këtë gabim (nëse nuk e keni bërë tashmë) dhe " "përfshini skedarët /var/log/dist-upgrade/main.log dhe /var/log/dist-" "upgrade/apt.log në raportin tuaj. Përditësimi u anullua.\n" "Origjinali i sources.list u ruajt tek /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c i shtypur" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Kjo mund të ndërpresë këtë operacion dhe bërë që sistemi të jetë jo i " "qëndrueshëm. A jeni të sigurtë, se dëshironi ta bëni këtë?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Për të parandaluar humbjen e të dhënave mbyllni të gjitha programet dhe " "dokumentat e hapura." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Nuk suportohet më nga Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Ulje në Shkallë (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Hiqe (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Nuk nevojitet më (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instalo (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Përditëso (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Shfaq Ndryshimin >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Fshihe Ndryshimin" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Gabim" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Mbylle" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Trego Terminalin >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Fshihe Terminalin" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informacion" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detajet" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Nuk suportohet më %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Largo %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Hiqe (ishte vetë instaluar) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instalo %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Aktualizo %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Kërkohet rinisja" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Rinisni sistemin për të kompletuar përditësimin" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Rinis tani" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Ta anullojmë përditësimin që po kryhet?\n" "\n" "Sistemi mund të ngelet në një gjendje të paqëndrueshme nëse e anulloni " "përditësimin. Ju këshillojmë që ta vazhdoni përditësimin." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Anullo Aktualizimin?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li ditë" msgstr[1] "%li ditët" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li orë" msgstr[1] "%li orë" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minutë" msgstr[1] "%li minuta" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekondë" msgstr[1] "%li sekonda" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Ky shkarkim do të zgjasë rreth %s me një lidhje 1Mbit DSL dhe rreth %s me " "një modem 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Ky shkarkim do të dojë %s me lidhjen tuaj. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Duke u përgatitur për përditësim" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Duke marrë kanalet e reja të programeve" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Duke marrë paketat e reja" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Duke instaluar përditësimet" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Duke pastruar" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d paketa e instaluar nuk suportohet më nga Canonical. Ju mund të " "merrni prapëseprapë mbështetje nga bashkësia." msgstr[1] "" "%(amount)d paketat e instaluara nuk suportohen më nga Canonical. Ju mund të " "merrni prapëseprapë mbështetje nga bashkësia." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paketë do të hiqet." msgstr[1] "%d paketa do të hiqen." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d paketë e re do të instalohet." msgstr[1] "%d paketa të reja do të instalohen." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paketë do të përditësohet." msgstr[1] "%d paketa do të përditësohen." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Juve ju duhet të shkarkoni një total prej %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Instalimi i përditësimit mund të zgjasë disa orë. Pasi shkarkimi të ketë " "përfunduar, proçesi nuk mund të anullohet." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Marrja dhe instalimi i përditësimit mund të zgjasë disa orë. Pasi shkarkimi " "të ketë përfunduar, proçesi nuk mund të anullohet." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Heqja e paketave mund të zgjasë disa orë. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Programet në këtë kompjuter janë të përditësuara." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Ato aktualizime nuk jan te gatshem per sistemin tuaj. Aktualizimet nuk mun " "te largohen." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Kërkohet rinisja" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Përditësimi përfundoi dhe kërkohet një rindezje. Dëshironi ta bëni këtë tani?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ju lutemi ta raportoni këtë gabim dhe përfshini skedarët /var/log/dist-" "upgrade/main.log dhe /var/log/dist-upgrade/apt.log në raportin tuaj. " "Përditësimi u anullua.\n" "Origjinali i sources.list u ruajt tek /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Duke Ndërprerë" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Demoted:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Për të vazhduar ju lutemi të shtypni [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Vazhdo [pJ] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detajet [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "p" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "j" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Nuk suportohet më: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Fshij: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instalo: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Aktualizo: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Vazhdo [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Për të mbaruar aktualizimin, kërkohet një rinisje.\n" "Në qoftëse ju zgjithni 'y' sistemi do të rinis." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Duke shkarkuar skedarin %(current)li nga %(total)li me %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Duke shkarkuar skedarin %(current)li nga %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Shfaq progresin e skedarëve individualë" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Ndërprej aktualizimin" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Duke Rinisur Përditësimin" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Ta fshijmë përditësimin e nisur?\n" "\n" "Sistemi mund të gjendet në një gjendje të paqëndrushme nëse e anulloni " "përditësimin. ju këshillojmë nxehtësisht që ta rinisni përditësimin." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Starto Aktualizimin" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Zevëndëso" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Dallimet në mes të të dhënave" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Raporto Bug" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Vazhdo" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Ta nisim përditësimin?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Rindizni sistemin për të kompletuar përditësimin\n" "\n" "Ju lutemi të ruani punën tuaj para se të vezhdoni." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Përditësim i Distribucionit" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Duke vendosur kanale të reja të programeve" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Duke rinisur kompjuterin" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminali" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Përditëso" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Është i disponueshëm një version i ri i ubuntu. Do të donit ta " "përditësonit?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Mos e Përditëso" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Më Pyet Më Vonë" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Po, Përditësoje Tani" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Ju e keni mohuar përditësimin për Ubuntu-n e ri" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Ju mund të përditësoni më vonë duke hapur Përditësuesin e Programeve dhe " "duke klikuar mbi \"Përditëso\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Bëni një përditësim të versionit." #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Për të përditësuar Ubuntu, ju duhet të identifikoheni." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Kryej një përditësim të pjesshëm" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Për të kryer një përditësim të pjesshëm, ju duhet të identifikoheni." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Shfaq versionin dhe dil" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Direktori që përmban skedarët e të dhënave" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Nis hapin e specifikuar" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Duke nisur një përditësim të pjesshëm" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Duke shkarkuar mjetin për përditësimin e versionit" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Kontrollo nëse përditësimi në versionin e fundit dlevel është i disponueshëm" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Përpiqu të përditësosh në versionin e fundit duke përdorur përditësuesin nga " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Nise në një mënyrë speciale përditësimi.\n" "Për momentin suportohet 'desktop' për përditësimet e rregullta dhe 'server' " "për sistemet server." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testoje përditësimin me mbivedosjen e sandbox aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Kontrollo vetëm nëse një version i ri i distribucionit është i disponueshëm " "dhe raporto rezultatin me anë të kodit në dalje" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Duke kontrolluar për një version të ri të Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Versioni juaj i Ubuntu nuk suportohet më." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Për informacionin e përditësimeve, ju lutemi të vizitoni:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Nuk u gjet asnjë version i ri" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Përditësimi i versionit nuk është i mundur për momentin." #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Përditësimi i versionit nuk mund të bëhet siç duhet. Ju lutemi ta provoni " "përsëri më vonë. Serveri raportoi: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Versioni i ri '%s' i disponueshëm." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Nis 'do-release-upgrade' për të përditësuar atë." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(versioni)s Përditësim i Disponueshëm" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Ju e keni mohuar përditësimin tek ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Shto daljen e kontrollit të gabimeve" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Për të kryer një përditësim të pjesshëm kërkohet identifikimi" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Kërkohet identifikimi për të bërë një përditësim të versionit" ubuntu-release-upgrader-0.220.10/po/az.po0000644000000000000000000013737112431225715014777 0ustar # Azerbaijani translation for update-manager # Copyright (c) 2006 Rosetta Contributors and Canonical Ltd 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Emin Mastizadeh \n" "Language-Team: Azerbaijani \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: az\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s üçün Server" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Əsas server" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Şəxsi Server" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Heçbir paket faylı tapılmadı, bu ya Ubuntu Diski deyil ya da quruluşu " "səhvdir." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CD-ni əlavə etmək mümkün olmadı" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD-ni əlavə edərkən xəta oldu, yeniləmə yarımçıq dayandırılacaq. Əgər bu " "həqiqi Ubuntu CD-sidirsə, xaiş olunur bunu xəta olaraq bildirəsiniz.\n" "\n" "Xəta məlumatı bu idi:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Pis (xarab) vəziyyətdə olan paketi sil." msgstr[1] "Pis (xarab) vəziyyətdə olan paketləri sil." #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "'%s' paketi işlək vəziyyətdə deyil və yenidən yüklənməsi tələb olunur, amma " "bunun üçün lazım olan arxiv tapılmadı. Davam etmək üçün bu paketin " "silinməsini istəyirsinizmi?" msgstr[1] "" "'%s' paketləri işlək vəziyyətdə deyillər və yenidən yüklənmələri tələb " "olunur, amma bunun üçün lazım olan arxivlər tapılmadı. Davam etmək üçün bu " "paketlərin silinməsini istəyirsinizmi?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Server həddən artıq yüklənmiş ola bilər" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Xarab paketlər" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sisteminizdə bu proqramla düzəldilə bilməyən xarab paketlər var. Xaiş olunur " "əvvəlcə onları synaptic və ya apt-get ilə düzəldin." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Təzələmə hesablanarkən həlli mümkün olmayan xəta yarandı:\n" "%s\n" "\n" "Səbələri aşağıdakılardan biri ola bilər:\n" "* Ubuntunu erkən-buraxılışa təzələmək\n" "* Ubuntunun hazırkı erkən-buraxılışını işlətmək\n" "* Ubuntu tərəfəindən təmin olunmayan qeyrirəsmi proqram paketləri\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Böyük ehtimalla, bu keçici problemdir. Xahiş edirik 1 az sonra cəhd edin" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Təzələmə hesablana bilmədi" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' qurula bilmir" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Meta-paketlər müəyyən olunabilmədi" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Arxiv oxunur" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Eksklüziv Qıfılı almaq olmur" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Bu adətən başqa bir paket idarəçisi proqramının (apt-get və ya aptitude " "kimi) artıq işlədiyi mənasına gəlir. Xahiş olunur əvvəlcə o programı " "bağlayın." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Uzaqdan idarəetmə ilə yenilənmə mümkün deyildir" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH altında işləməyə davam edilsin?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Əlavə sshd başladılır" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Yenilənmək mümkün deyil" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Saxlanc məlumatı xətalıdır" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Yeniləmə vaxtı xəta" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Kifayət qədər boş disk sahəsi yoxdur" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Sistemin yenilənməsini başlamaq istəyirsinizmi?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Yeniləmələr endirilə bilmədi" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Yeniləmələr qurula bilmədi" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Saxla" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Sil" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Paket idarəçisi yoxlanır" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Yeniləmənin hazırlanması alınmadı" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Saxlanc məlumatı yenilənir" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Xətalı paket məlumatı" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Yenilənir" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Sistemin yenilənməsi başa çatdı." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Buraxılış qeydləri tapılmadı" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Server yüklənmiş ola bilər. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Buraxılış qeydləri endirilə bilmədi" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "İnternet əlaqənizi yoxlayın." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Təzələmə alətini işlətmək olmadı" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Təzələmə aləti" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Alına bilmədi" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "İxrac edilə bilmədi" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Xaiş olunur '%s' mənbəyini '%s' sürücüsünə yerləşdirin" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Paketlərin alınması başa çatdı" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Təxminən %s qalıb" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Dəyişikliklər tətbiq olunur" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' qurula bilmədi" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "'%s'\n" "xüsusiləşdirilmiş quraşdırma faylı əvəz edilsin?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "'dif' əmri tapılmadı" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Terminalı Göstər >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Təfsilatlar" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s paketini təzələ" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Təzələməni başa çatdırmaq üçün sistemi yenidən başladın" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "İndi _yenidən başlad" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Təzələmə Dayandırılsın?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Təmizlənir" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket silinəcək" msgstr[1] "%d paket silinəcək" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d yeni paket qurulacaq" msgstr[1] "%d yeni paket qurulacaq" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket təzələnəcək" msgstr[1] "%d paket təzələnəcək" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Sisteminiz üçün heç bir təzələmə yoxdur. Təzələmə indi dayandırılacaq." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Sistemin yenidən başladılması vacibdir" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Təzələmə başa çatdı sistemi təzədən başlatmaq lazımdır. Siz bunu indi etmək " "istəyirsinizmi?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "%(total)li fayldan %(current)li endirilir" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "Təzələməni _Ləğv Et" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Təzələməni _Davam Etdir" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "Təzələməni _Başla" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Əvəz e_t" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Fayllar arasında fərqlər" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "Proqramdakı Xətanı _Bildir" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Davam Et" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Təzələmə başladılsın?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Təzələ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ur.po0000644000000000000000000013062012431225715015001 0ustar # Urdu translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Vogt \n" "Language-Team: Urdu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ur\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "مرکزی سرور" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "سی ڈی شامل کرنے میں ناکام" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "ہوسکتا ہے کہ سرور پر حد سے ‍ذیادہ بھار آگیا ھو۔" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "ٹوٹا ہوا پیکج" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "کسی نقص کی باعث کئی پیکجوں کی تصدیق نہیں ہوسکی" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/te.po0000644000000000000000000020310212431225715014757 0ustar # Telugu translation for update-manager # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Praveen Illa \n" "Language-Team: Telugu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: te\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s కొరకు సేవిక" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "ప్రధాన సేవిక" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "అనురూపిత సేవికలు" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list పద్దును గణించలేకపోతుంది" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "ఏ ప్యాకేజీ ఫైళ్ళను కనుగొనలేకపోతుంది, బహుశా ఇది ఉబుంటు డిస్కు కాకపోవడమో లేక " "వేరే నిర్మానానికి చెందినదై ఉండొచ్చు?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CDని జతచేయుటలో విఫలమైంది" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CDని జతచేయుటలో దోషము వచ్చింది, ఉన్నతీకరణ మధ్యలోరద్దుచేయబడుతుంది. ఒకవేళ ఇది " "సరియైన ఉబుంటూ CD అయితే, దయచేసి దీనిన ఒక బగ్ వలె నివేదించండి.\n" "దోష సందేశం ఏమిటంటే:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "పనికిరాని స్థితిలో ఉన్న ప్యాకేజీని తొలగించండి" msgstr[1] "పనికిరాని స్థితిలో ఉన్న ప్యాకేజీలను తొలగించండి" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "%s ప్యాకేజీ అస్థిర స్థితిలో ఉంది మరియు దీనిని పునఃప్రతిష్టించవలసియుంది, కాని " "దీని కొరకు ఎలాంటి ఆర్కైవ్ దొరకలేదు. కొనసాగడానికి ఈ ప్యాకేజీని తొలగించమందురా?" msgstr[1] "" "%s ప్యాకేజీలు అస్థిర స్థితిలో ఉన్నాయి మరియు వీటిని పునఃప్రతిష్టించవలసియుంది, " "కాని వీటి కొరకు ఎలాంటి ఆర్కైవ్లు దొరకలేదు. కొనసాగడానికి ఈ ప్యాకేజీలను " "తొలగించమందురా?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "సర్వర్ పై భారం ఎక్కువగా ఉన్నట్టుంది" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "విరిగిన ప్యాకేజీలు" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "మీ వ్యవస్థలో ఈ సాఫ్టువేరుతో సరిచేయ వీలులేని విరిగిన ప్యాకేజీలు ఉన్నాయి. " "ముందుకు సాగే ముందు, దయచేసి synaptic లేదా apt-get ను ఉపయోగించి వీటిని " "సరిచేయండి." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "నవీకరణను గణించడంలో పరిష్కరించలేని సమస్య వచ్చింది: %s\n" "\n" "దీనికి కారణము క్రింది వాటిలో ఏదో ఒకదాని వల్ల కావచ్చు:\n" "* ముందు-విడుదల వెర్షను ఉబుంటూకి నవీకరించడం\n" "* ప్రస్తుత ముందు-విడుదల వెర్షను ఉబుంటూని నడపడం\n" "* ఉబుంటూ అందించని అనధికారిక సాఫ్టువేరు\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "ఇది బహుశః ఒక అశాశ్వత సమస్య, దయచేసి మళ్ళీ ప్రయత్నించండి." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "ఉన్నతీకరణను గణించడం వీలుకాదు" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "కొన్ని ప్యాకేజీలను ధృవీకరించుటలో దోషము" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "కొన్ని ప్యాకేజీలను ధృవీకరించటం సాధ్యపడదు. ఇది ఒక అశాశ్వత నెట్వర్కు సమస్య " "కావచ్చు. మీరు తర్వాత మళ్ళీ ప్రయత్నించవచ్చు. ధృవీకరించని ప్యాకేజీల కోసం " "క్రింద జాబితా చూడండి." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "'%s' ప్యాకేజీ తొలగించడానికి గుర్తుపెట్టబడింది కాని ఇది తొలగింపు బ్లాక్ " "లిస్టులో ఉంది." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "ముఖ్యమైన ప్యాకేజి '%s' తొలగించుటకు గుర్తుపెట్టబడింది." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "బ్లాక్ లిస్ట్ చేయబడిన వెర్షను '%s'ను స్థాపించుటకు ప్రయత్నిస్తున్నారు" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s'ను స్థాపించడం కుదరదు" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "meta-package ను నిదానించలేదు" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "మీ వ్యవస్థలో ubuntu-desktop, kubuntu-desktop, xubuntu-desktop లేదా edubuntu-" "desktop ప్యాకేజీ లేదు మరియు మీరు ఏ వెర్షను ఉబుంటూ నడుపుతున్నరో " "గుర్తించడానికి సాధ్యపడలేదు.\n" " ముందుకు కొనసాగే ముందు, దయచేసి synaptic లేదా apt-get సహాయంతో, పై వాటిలో ఏదో " "ఒక ప్యాకేజీని ప్రతిష్టించండి." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "క్యాచీను చదువుతోంది" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "ప్రత్యేకమైన తాళాన్ని పొందలేకపోతుంది" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "సాధారణంగా ఇది అంటే ముందే నడుస్తున్న మరో ప్యాకేజీ నిర్వహణ అనువర్తనము (apt-get " "లేదా aptitude లాగా). దయచేసి మొదట ఆ అనువర్తనమును మూసివేయండి." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "దూరస్థ అనుసంధానం మీదుగా ఉన్నతీకరించుటకు మద్ధతులేదు" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "మీరు ఏ దూరస్థ ssh అనుసంధానం నుండి ఉన్నతీకరణ చేస్తున్నారో, దాని ఫ్రంట్-ఎండ్ " "ఉన్నతీకరణని అనుమతించదు. దయచేసి పాఠ్య విధంలో 'do-release-upgrade' తో " "ఉన్నతీకరించడానికి ప్రయత్నించండి.\n" "\n" "ఉన్నతీకరణ ఇక్కడితో ఆగిపోతుంది. దయచేసి ssh లేకుండా ప్రయత్నించండి." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH క్రింద ఇంకా నడవాలా?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "ఈ సెషన్ ssh ద్వారా నడుస్తున్నట్టుగా ఉంది. ssh మీదుగా ఉన్నతీకరణ చేయడం మంచిది " "కాదు, అది విఫలం ఐతే తిరిగి పూర్వస్థితికి రావడం చాలా కష్టం.\n" "\n" "మీరు కొనసాగినట్టైతే, అదనపు ssh డీమన్ ను \"%s\" పోర్టు వద్ద పురిగొల్పుతాము.\n" "మీరు కొనసాగాలనుకుంటున్నారా?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "అదనపు sshd ని ప్రారంభిస్తోంది" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "ఒక వేళ విఫలమైతే చేసే రికవరీని సులభం చేయడానికి, '%s' పోర్టుపై ఒక అదనపు sshd " "ప్రారంభమౌతుంది. ఒక వేళ నడుస్తున్నssh తో ఏదైనా తప్పు జరిగినప్పటికీ మీరు " "మరోదానితో అనుసంధానం చేయవచ్చు.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "ఉన్నతీకరణ సాధ్యపడదు" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "ఈ సాధనంతో '%s' నుండి '%s' కి ఉన్నతీకరణ సాధ్యపడదు." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandbox అమరిక విఫలమైంది" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "స్యాండ్ బాక్ను ఆవరణను సృష్టించడం సాధ్యపడలేదు." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "సాండ్ బాక్స్ విధం" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "మీ python స్థాపన చెడిపోయింది. దయచేసి '/usr/bin/python' లింకును సరిచేయండి." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "'debsig-verify' ప్యాకేజీ స్థాపించబడింది" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "ఆ ప్యాకేజీ స్థాపించి ఉంటే ఉన్నతీకరణ కొనసాగించుట సాధ్యంకాదు.\n" "దయచేసి మొదట synaptic లేదా 'apt-get remove debsig-verify' సహాయంతో తొలగించి, " "ఉన్నతీకరణను మళ్ళీ నడపండి." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "'%s' కు వ్రాయుట వీలుకాదు" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "ఇంటర్నెట్ నుండి సరిక్రొత్త నవీకరణలను కలపమందురా?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "%s కి ఉన్నతీకరణ అచేతనమైంది" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "సరియైన మిర్రర్ కనపడలేదు" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "అప్రమేయ మూలాధారాలను ఉత్పత్తిచేయమంటారా?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "భండాగార సమాచారం చెల్లనిది" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "థర్డ్ పార్టీ మూలాధారాలు అచేతనంచేయబడినవి" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "అస్థిర స్థితిలో ప్యాకేజీ" msgstr[1] "అస్థిర స్థితిలో ప్యాకేజీలు" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "నవీకరణ జరుగుతున్నపుడు దోషం" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "నవీకరణ చేసేటప్పుడు ఒక సమస్య వచ్చింది. ఇది సాధారణంగా నెట్వర్క్ లాంటి సమస్య, " "దయచేసి మీ నెట్వర్క్ అనుసంధానాన్ని పరిశీలించి తిరిగి ప్రయత్నించండి." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "సరిపడినంత ఖాళీ డిస్కు స్థలము లేదు" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "మార్పులను గణిస్తోంది" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "ఉన్నతీకరణను ప్రారంభించాలనుకుంటున్నారా?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "ఉన్నతీకరణ రద్దు చేయబడింది" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "ఉన్నతీకరణలను డౌన్‌లోడ్ చేయడం సాధ్యపడదు" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "యదా విధంగా అసలు వ్యవస్థ స్థితికి వస్తోంది" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "ఉన్నతీకరణలు స్థాపించుటకు వీలుకాదు" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "ఉన్నతీకరణ మధ్యలో రద్దుచేయబడింది. మీ వ్యవస్థ వాడటానికి వీలుకాని స్థితిలో " "ఉండవచ్చు. ఇపుడు ఒక రికవరీ నడుపబడుతుంది (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "ఉన్నతీకరణ మధ్యలో రద్దుచేయబడింది. దయచేసి మీ అంతర్జాల అనుసంధానాన్ని లేదా " "స్థాపక మాధ్యమాన్ని పరీక్షించి మరలా ప్రయత్నించండి. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "కాలంచెల్లిన ప్యాకేజీలను తొలగించాలా?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "ఉంచు(_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "తొలగించు(_R)" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "శుభ్రంచేసేటపుడు ఒక సమస్య సంభవించినది. మరింత సమాచారం కోసం దయచేసి కింది " "సందేశాన్ని చూడండి. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "అవసరమైన అశ్రితాలు స్థాపించబడలేదు" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "కావలసిన అశ్రితం '%s' స్థాపించబడలేదు. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "ప్యాకేజీ నిర్వాహకి పరీక్షిస్తోంది" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "ఉన్నతీకరణకు సిద్ధంచేయుటలో విఫలమైంది" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "భాండాగార సమాచారాన్ని నవీకరిస్తోంది" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "cdrom ని జతచేయుటలో విఫలమైంది" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "క్షమించండి, cdromని జతచేయుటలో విఫలమైనది." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "చెల్లని ప్యాకేజీ సమాచారం" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "సాధిస్తోంది" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "ఉన్నతీకరిస్తోంది" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "ఉన్నతీకరణ పూర్తియింది" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "ఉన్నతీకరణ పూర్తయింది కాని ఉన్నతీకరణ ప్రక్రియ జరుగుతుండగా కొన్ని దోషాలు " "సంభవించాయి." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "కాలంచెల్లిన సాఫ్ట్‍వేర్ కోసం వెతుకుతోంది" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "వ్యవస్థ ఉన్నతీకరణ పూర్తయింది." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "పాక్షిక ఉన్నతీకరణ పూర్తయింది." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "విడుదల నివేదికని కనుగొనలేకపోయింది" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "విడుదల నివేదికని డౌన్‌లోడ్ చేయుట సాధ్యపడదు" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "దయచేసి మీ అంతర్జాల అనుసంధానాన్ని సరిచూడండి." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "ఉన్నతీకరణ సాధనాన్ని నడుపుట వీలుకాదు" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "ఉన్నతీకరణ సాధనం సంతకం" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "ఉన్నతీకరణ సాధనం" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "తెచ్చుటలో విఫలమైంది" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "ధృవీకరణ విఫలమైంది" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "సంగ్రహించుటలో విఫలమైంది" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "ప్రమాణీకరణ విఫలమైంది" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "ఉన్నతీకరణని నడుపుట సాధ్యంకాదు" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "దోష సందేశమేమిటంటే '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "ఉన్నతీకరించు" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "విడుదల నివేదిక" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "అదనపు ప్యాకేజీ ఫైళ్ళను డౌన్‌లోడ్ చేస్తోంది..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "మీడియా మార్పు" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms వాడుకలో ఉన్నాయి" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "ఉన్నతీకరించడం వలన డెస్క్ టాప్ ప్రభావాలు, మరియు ఆటలలో ప్రదర్శనను మరియు ఇతర " "గ్రాఫిక్స్ తో కూడిన పెద్ద ప్రోగాంల మీద ప్రభావం చూపి వాటి ప్రదర్శనను " "తగ్గించవచ్చు." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "ఈ కంప్యూటర్ ప్రస్తుతం NVIDIA 'nvidia' గ్రాఫిక్స్ డ్రైవర్ వాడుతోంది. ఈ " "డ్రైవర్ కు సంభందించిన ఏ వెర్షను మీ వీడియో కార్డుతో పనిచేసేది ఉబుంటు 10.04 " "LTS లో లభ్యతలో లేదు.\n" "\n" "మీరు కొనసాగాలనుకుంటున్నారా?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "i686 CPU లేదు" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "ARMv6 CPU లేదు" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "ఎటువంటి init లభ్యతలో లేదు" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "aufs వాడి సాండ్‌బాక్స్ ఉన్నతీకరించు" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "కేవలం పాక్షిక ఉన్నతీకరణ మాత్రమే చేయి (no sources.list rewriting)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU తెర మద్ధతును అచేతనంచేయి" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "datadir అమర్చు" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "తెచ్చుట పూర్తయింది" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "ఇంకా %s మిగిలిఉంది" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "మార్పులను అనువర్తిస్తోంది" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "డిపెండెన్సి సమస్యలు - కాన్ఫిగర్ చేయకుండా వదిలివేస్తుంది" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' స్థాపించుట సాధ్యం కాదు" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "ఒక ఫెటల్ దోషం సంభవించింది" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c నొక్కబడింది" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "డౌన్‌గ్రేడ్ (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "(%s) తొలగించు" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "ఇక ఏమాత్రం అవసరంలేనివి (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "(%s) స్థాపించు" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "(%s) ఉన్నతీకరించు" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "తేడాను చూపించు >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< తేడాను దాచిపెట్టు" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "దోషం" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "మూసివేయి(&C)" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "టెర్మినల్ చూపించు >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< టెర్మినల్ దాచిపెట్టు" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "సమాచారం" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "వివరాలు" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "ఇక ఏమాత్రం తోట్పాటు లభించనివి %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s ని తొలగించు" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "%s తొలగించు (స్వ యంగా స్థాపించబడినది)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s స్థాపించు" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s ని నవీకరించు" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "పునఃప్రారంభం అవసరం" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "ఉన్నతీకరణ పూర్తిచేయుటకు వ్యవస్థను పునఃప్రారంభించు" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "ఇప్పుడు పున:ప్రారంభించు(_R)" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "నడుస్తున ఉన్నతీకరణను రద్దుచేయాలా?\n" "\n" "ఒకవేళ మీరు ఉన్నతీకరణను రద్దుచేసినట్టయితే వ్యవస్థ వాడటానికి వీలులేని స్థితిలో " "ఉండొచ్చు. ఉన్నతీకరణ తిరిగికొనసాగించాలని మేము సలహాఇస్తున్నాం." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "ఉన్నతీకరణను రద్దుచేయాలా?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li రోజు" msgstr[1] "%li రోజులు" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li గంట" msgstr[1] "%li గంటలు" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li నిముషం" msgstr[1] "%li నిముషాలు" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li సెకను" msgstr[1] "%li సెకండ్లు" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "మీ అనుసంధానముతో దీనిని డౌన్‌లోడ్ చేయటానికి సుమారు %s తీసుకుంటుంది. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "ఉన్నతీకరణకు సిద్ధమవుతోంది" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "కొత్త సాఫ్ట్‍వేర్ ఛానళ్ళను పొందుతోంది" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "కొత్త ప్యాకేజీలను పొందుతోంది" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "ఉన్నతీకరణలు స్థాపించబడుతున్నాయి" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "శుభ్రపరుస్తోంది" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "మీ వ్యవస్థకు ఎటువంటి ఉన్నతీకరణలు అందుబాటులో లేవు. ఉన్నతీకరణ ఇపుడు " "రద్దుచేయబడుతుంది." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "రీబూట్ అవసరం" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "మధ్యలోరద్దుచేయబడుతోంది" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "కొనసాగు [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "వివరాలు [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "తొలగించు: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "స్థాపించు: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "ఉన్నతీకరించు: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "కొనసాగు [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "ఉన్నతీకరణ పూర్తిచేయుటకు , ఒక పునఃప్రారంభం అవసరం.\n" "మీరు 'y' ఎంచుకున్నట్టయితే వ్యవస్థ పునఃప్రారంభమవుతుంది." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "ఫైళ్ళ వ్యక్తిగత ప్రగతిని చూపించు" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "ఉన్నతీకరణను రద్దుచేయి(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "ఉన్నతీకరణను తిరిగికొనసాగించు(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "నడుస్తున్న ఉన్నతీకరణని రద్దుచేయాలా?\n" "\n" "ఒకవేళ మీరు ఉన్నతీకరణను రద్దుచేసినట్టయితే వ్యవస్థను వాడటానికి వీలుకాని " "స్థితిలో ఉండవచ్చు. ఉన్నతీకరణని తిరిగి ప్రారంభించమని మిమ్మల్ని దృఢంగా " "కోరుతున్నాము." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "ఉన్నతీకరణను ప్రారంభించు(_S)" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "పునఃస్థాపించు(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "ఫైళ్ళ మధ్యలో తేడా" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "బగ్ నివేదించు(_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "కొనసాగించు(_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "ఉన్నతీకరణ ప్రారంభించాలా?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "ఉన్నతీకరణ పూర్తిచేయుటకు వ్యవస్థను పునఃప్రారంభించండి\n" "\n" "కొనసాగేముందు మీ పనిని భద్రపరుచుకోండి." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "పంపిణీ ఉన్నతీకరణ" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "కొత్త సాప్ట్‍వేర్ ఛానళ్ళు అమర్చబడుతున్నాయి" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "కంప్యూటర్ పునఃప్రారంభించబడుతోంది" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "టెర్మినల్" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "ఉన్నతీకరించు(_U)" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "ఉబుంటు యొక్క ఒక కొత్త వెర్షన్ లభ్యతలో ఉంది. ఉన్నతీకరించుటకు " "ఇష్టపడుతున్నారా?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "ఉన్నతీకరించవద్దు" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "నన్ను తరువాత అడుగు" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "అవును, ఇపుడు ఉన్నతీకరించు" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "విడుదల ఉన్నతీకరణ సాధనాన్ని డౌన్‌లోడ్ చేస్తోంది" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "మీ ఉబుంటు విడుదలకు ఇక ఏమాత్రంమద్ధతు ఉండదు." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "కొత్త విడుదలలేమీ లేవు" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "విడుదల ఉన్నతీకరణ ఇపుడు సాధ్యపడదు" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/zu.po0000644000000000000000000013023712431225715015015 0ustar # Zulu translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Xolani1990 \n" "Language-Team: Zulu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: zu\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Izihuqulo eziphile" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Londa" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Susa" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Vala" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/cs.po0000644000000000000000000020446312431225715014767 0ustar # Czech translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-12-16 20:46+0000\n" "Last-Translator: Tadeáš Pařík \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: cs\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server pro zemi „%s“" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Hlavní server" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Uživatelem vybrané servery" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Nebylo možné vypočítat záznam v sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Nelze najít žádné soubory balíčků, pravděpodobně toto není disk Ubuntu nebo " "obsahuje nesprávnou architekturu?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Selhalo přidávání CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Vyskytla se chyba při přidávání CD, přechod na vyšší verzi bude přerušen. " "Prosím nahlaste tuto situaci jako chybu (pokud používáte správné CD s " "Ubuntu).\n" "\n" "Chybová zpráva byla:\n" "„%s“" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Odstranit balíček ve špatném stavu" msgstr[1] "Odstranit balíčky ve špatném stavu" msgstr[2] "Odstranit balíčky ve špatném stavu" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Balíček „%s“ je v nekonzistentním stavu a vyžaduje přeinstalování, ale nebyl " "pro něj nalezen žádný archiv. Chcete nyní pokračovat odstraněním tohoto " "balíčku?" msgstr[1] "" "Balíčky „%s“ jsou v nekonzistentním stavu a vyžadují přeinstalování, ale " "nebyl pro ně nalezen žádný archiv. Chcete nyní pokračovat odstraněním těchto " "balíčků?" msgstr[2] "" "Balíčky „%s“ jsou v nekonzistentním stavu a vyžadují přeinstalování, ale " "nebyl pro ně nalezen žádný archiv. Chcete nyní pokračovat odstraněním těchto " "balíčků?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Server je možná přetížený" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Poškozené balíčky" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Váš systém obsahuje poškozené balíčky, které nemohou být tímto programem " "opraveny. Před pokračováním je prosím opravte použitím programu synaptic " "nebo apt-get." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Během plánování povýšení systému nastal neřešitelný problém:\n" "%s\n" "\n" " Možné příčiny:\n" " * Povyšování na předprodukční verzi Ubuntu\n" " * Spuštěný systém je předprodukční verze Ubuntu\n" " * V systému jsou neoficiální softwarové balíčky neposkytované od Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Toto je pravděpodobně pouze dočasný problém, prosím zkuste to znovu později." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Pokud se nic z toho nezdaří, nahlaste prosím chybu pomocí příkazu 'ubuntu-" "bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Nelze vypočítat přechod na vyšší verzi" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Chyba při ověřování některých balíčků" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Nebylo možné ověřit pravost některých balíčků. Důvodem může být přechodný " "problém v síti. Zkuste to prosím později. Níže je uveden seznam postižených " "balíčků." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Balíček „%s“ je označen k odstranění, ale přitom je uveden v seznamu " "neodstranitelných." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Stěžejní balíček „%s“ je označen k odstranění." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Pokus o instalaci zakázané verze „%s“" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Nelze nainstalovat „%s“" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Nebylo možné nainstalovat požadovaný balík. Prosím, nahlaste chybu pomocí " "zadání \"ubuntu-bug ubuntu-release-upgrader-core\" do terminálu." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Nelze odhadnout meta-balíček" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Váš systém neobsahuje žádný z balíčků ubuntu-desktop, kubuntu-desktop, " "xubuntu-desktop nebo edubuntu-desktop a nebylo možné zjistit, kterou verzi " "Ubuntu používáte.\n" " Před tím, než budete pokračovat, si prosím nejprve nainstalujte jeden z " "uvedených balíčků pomocí programu synapticu nebo apt-get." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Probíhá čtení mezipaměti" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Nelze získat exkluzivní přístup" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Tohle obvykle znamená, že jiný správce balíčků (jako apt-get nebo aptitude) " "již běží. Nejdříve jej prosím ukončete." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Aktualizace přes vzdálené připojení není podporována" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Spouštíte povýšení systému přes vzdálené připojení ssh s nadstavbou, která " "toto nepodporuje. Zkuste prosím povýšení v textovém režimu pomocí „do-" "release-upgrade“.\n" "\n" "Povýšení systému se nyní přeruší. Zkuste to prosím bez ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Pokračovat s během pod SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Zdá se, že toto sezení běží pod ssh. Aktuálně není doporučeno provádět " "povýšení systému přes ssh, neboť v případě havárie je komplikované provést " "obnovu.\n" "\n" "Pokud budete pokračovat, dodatečný ssh démon bude spuštěn na portu „%s“.\n" "Chcete pokračovat?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Spouští se dodatečné sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Aby byla obnova případné havárie lehčí, bude na portu „%s“ spuštěn dodatečný " "sshd. Pokud nastane nějaká chyba s běžícím ssh, můžete se stále připojit na " "ten dodatečný.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Pokud máte spuštěný firewall, budete možná muset dočasně tento port otevřít. " "Jelikož je to potenciálně nebezpečné, neprovádí se to automaticky. Tento " "port můžete otevřít např. takto:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Nelze přejít na vyšší verzi" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Povýšení systému z „%s“ na „%s“ není tímto nástrojem podporované." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Selhalo nastavení zabezpečeného prostředí" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Nebylo možné vytvořit zabezpečené prostředí." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Režim zabezpečeného prostředí" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Toto povýšení běží v testovacím režimu (sandbox). Všechny změny jsou zapsány " "do '%s' a budou ztraceny při následujícím restartu.\n" "Žádné změny zapsané do systémového adresáře do následujícího restartu nejsou " "trvalé!" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Vaše instalace pythonu je poškozena. Prosím opravte symbolický odkaz " "„/usr/bin/python“." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Balíček „debsig-verify“ je nainstalován" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Aktualizace nemůže pokračovat, dokud je tento balíček nainstalován.\n" "Nejprve prosím odstraňte balíček pomocí programu Synaptic nebo „apt-get " "remove debsig-verify“ a poté spusťte aktualizaci znovu." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Nelze zapisovat do '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Ve vašem systému není možné zapisovat do systémového adresáře '%s'. Povýšení " "nemůže pokračovat.\n" "Prosím, ujistěte se, že systémový adresář je zapisovatelný." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Včetně nejnovějších aktualizací z internetu?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Aktualizační systém může automaticky stáhnout nejnovější aktualizace a " "nainstalovat je během povyšování. Pokud máte síťové připojení, pak je toto " "vřele doporučeno.\n" "\n" "Povyšování bude trvat déle, ale po skončení budete mít zcela aktuální " "systém. Nemusíte to provádět, ale brzo po povýšení systému byste měli " "nainstalovat nejnovější aktualizace.\n" "Pokud zde odpovíte „ne“, tak nebude síť vůbec použita." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "zakázáno při povýšení na %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nebyl nalezen platný zrcadlový server" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Během prohledávání informací o vašich zdrojích nebylo nalezeno žádné zrcadlo " "pro povýšení. Toto může nastat, pokud provozujete lokální zrcadlo nebo pokud " "jsou informace na zrcadlu zastaralé.\n" "\n" "Chcete přesto přepsat váš soubor „sources.list“? Pokud zvolíte „Ano“, " "aktualizuje to všech „%s“ na „%s“ položek.\n" "Pokud zvolíte „Ne“, povýšení se zruší." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Vygenerovat výchozí zdroje?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Po prohledání vašeho souboru „sources.list“ nebyla nalezena žádná platná " "položka pro „%s“.\n" "\n" "Mají být přidány výchozí položky pro „%s“? Pokud zvolíte „Ne“, přechod na " "vyšší verzi bude zrušen." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Neplatná informace o repozitáři" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Povýšení informace o repozitáři vyústilo v neplatný soubor, zahajuje se " "proces hlášení chyby." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Zdroje třetích stran zakázány" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Některé položky třetích stran ve vašem souboru sources.list byly zakázány. " "Můžete je znovu povolit po aktualizaci nástrojem „software-properties“ nebo " "svým správcem balíčků." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Balíček je v nekonzistentním stavu" msgstr[1] "Balíčky jsou v nekonzistentním stavu" msgstr[2] "Balíčky jsou v nekonzistentním stavu" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Balíček „%s“ je v nekonzistentním stavu a vyžaduje přeinstalování, ale nebyl " "pro něj nalezen žádný archiv. Přeinstalujte prosím balíček ručně nebo jej " "odeberte ze systému." msgstr[1] "" "Balíčky „%s“ jsou v nekonzistentním stavu a vyžadují přeinstalování, ale " "nebyl pro ně nalezen žádný archiv. Přeinstalujte prosím balíčky ručně nebo " "je odeberte ze systému." msgstr[2] "" "Balíčky „%s“ jsou v nekonzistentním stavu a vyžadují přeinstalování, ale " "nebyl pro ně nalezen žádný archiv. Přeinstalujte prosím balíčky ručně nebo " "je odeberte ze systému." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Chyba během aktualizace" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Během aktualizace se vyskytl problém. Obvykle to bývá způsobeno chybou " "síťového připojení. Zkontrolujte prosím své připojení k síti a zkuste to " "znovu." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Nedostatek volného místa na disku" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Přechod na novější vydání byl přerušen. Přechod na novější vydání vyžaduje " "celkem %s volného místa na disku „%s“. Uvolněte prosím přinejmenším dalších " "%s místa na disku „%s“. Vyprázdněte koš a odstraňte dočasné balíčky z " "dřívějších instalací příkazem „sudo apt-get clean“." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Propočítávají se změny" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Chcete spustit aktualizaci?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Přechod na vyšší verzi zrušen" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Přechod na vyšší verzi bude nyní zrušen a dojde k obnovení systému do " "původního stavu. Pokračovat v přechodu na vyšší verzi můžete později." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Nepodařilo se stáhnout novější vydání" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Upgrade byl přerušen. Prosím zkontrolujte vaše internetové připojení nebo " "instalační médium a zkuste to znovu. Všechny prozatím stažené soubory jsou " "podrženy." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Chyba při potvrzování" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Obnovuje se původní stav systému" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Nepodařilo se nainstalovat aktualizace" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Přechod na novější vydání byl přerušen. Váš systém by mohl být v " "nepoužitelném stavu. Nyní bude spuštěna obnova (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Prosíme, navštivte stránku http://bugs.launchpad.net/ubuntu/+source/ubuntu-" "release-upgrader/+filebug nahlaste zde chybu ke svému hlášení přiložte " "soubory z /var/log/dist-upgrade/ \n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Přechod na novější vydání byl přerušen. Zkontrolujte prosím své internetové " "připojení nebo instalační média a zkuste to znovu. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Odstranit zastaralé balíčky?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Ponechat" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "Odst_ranit" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Během úklidu se vyskytl problém. Pro více informací si prosím přečtěte níže " "uvedenou zprávu. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Požadované závislosti nejsou nainstalovány" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Požadovaná závislost „%s“ není nainstalována. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Kontroluje se správce balíčků" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Příprava přechodu na vyšší verzi selhala" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "Příprava systému na povýšení selhala, proces hlášení chyby zahájen." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Získání potřebných prostředků pro povýšení systému selhalo" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Systém nemohl obdržet požadavky pro povýšení. Povýšení bude nyní ukončeno a " "bude obnoven výchozí stav systému.\n" "\n" "Navíc byl zahájen proces hlášení chyby." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Aktualizují se informace o repozitářích" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Nepodařilo se přidat cdrom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Promiňte, přidání cdrom nebylo úspěšné." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Neplatná informace o balíčku" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Po aktualizaci informací o balíčcích nebyl nalezen nezbytný balík '%s'. To " "může být způsobeno tím, že máte ve Zdrojích softwaru neoficiální zrcadla a " "nebo kvůli přetížení zrcadla, které používáte. Prohlédněte " "/etc/apt/sources.list pro aktuální seznam zdrojů softwaru.\n" "V případě přetíženého zrcadla zkuste provést aktualizaci později." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Získává se" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Probíhá přechod na vyšší verzi" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Povýšení systému hotovo" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Přechod na vyšší verzi byl dokončen, ale během povyšování nastaly chyby." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Vyhledává se zastaralý software" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Přechod na vyšší verzi systému je dokončen." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Částečné povýšení systému bylo dokončeno." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Nebyly nalezeny poznámky k vydání" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Server může být přetížen. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Nelze stáhnout poznámky k vydání" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Zkontrolujte prosím své připojení k internetu." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "ověřit '%(file)s' proti '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "rozbaluje se '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Nelze spustit nástroj pro aktualizaci" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Toto vypadá jako chyba v průvodci aktualizací. Prosím, nahlaste chybu " "příkazem \"ubuntu-bug ubuntu-release-upgrader-core\"." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Podpis aktualizačního nástroje" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Aktualizační nástroj" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Stahování selhalo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Stažení aktualizace selhalo. Pravděpodobně je problém se sítí. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Selhalo ověření pravosti" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Ověření pravosti aktualizace selhalo. Může jít o problém se sítí nebo se " "serverem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Rozbalení selhalo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Rozbalení aktualizace selhalo. Může být problém se sítí nebo se serverem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Ověření selhalo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Ověření aktualizace selhalo. Může jít o problém se sítí nebo se serverem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Nelze spustit povýšení systému" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Toto se obvykle stává v pokud je /tmp připojen jako noexec. Prosím připojte " "/tmp bez noexec a spusťte upgrade znovu." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Chybová zpráva zní „%s“." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Přejít na vyšší verzi" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Poznámky k vydání" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Stahují se dodatečné balíčky…" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Soubor %s z %s při %s B/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Soubor %s z %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Vložte prosím „%s“ do mechaniky „%s“" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Změna média" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "používán evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Váš systém používá správce svazků „evms“ v /proc/mounts. Jelikož software " "„evms“ již není nadále podporován, vypněte jej prosím, a poté spusťte " "aktualizaci znovu." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "Váš grafický hardware nemusí být v Ubuntu 13.04 plně podporován." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Váš grafický hardware plně nepodporuje prostředí 'Unity'. Po přechodu na " "novější verzi systému by vaše pracovní prostředí mohlo být velmi pomalé. " "Doporučujeme prozatím zůstat u LTS vydání. Pro více informací navštivte " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Přejete si " "stále pokračovat v přechodu na novější verzi systému?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Vaše grafická karta nemusí být v Ubuntu 12.04 LTS plně podporována." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Podpora vaší grafické karty Intel v Ubuntu 12.04 LTS je omezena a po " "přechodu se můžete setkat s problémy. Pro více informací navštivte " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Přejete si " "pokračovat v přechodu na novější vydání?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Povýšení může omezit grafické efekty prostředí a snížit výkon ve hrách a " "jiných graficky náročných aplikacích." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Tento počítač v současné době používá grafický ovladač „nvidia“ od NVIDIA. V " "Ubuntu 10.04 LTS není k dispozici žádná verze tohoto ovladače, která by " "pracovala s vaší grafickou kartou.\n" "\n" "Přejete si pokračovat?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Tento počítač v současné době používá grafický ovladač „fglrx“ od AMD. V " "Ubuntu 10.04 LTS není k dispozici žádná verze tohoto ovladače, která by " "pracovala s vaším hardwarem.\n" "\n" "Přejete si pokračovat?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Nenalezeno CPU i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Váš systém používá CPU i586 nebo CPU, které nemá rozšíření „cmov“. Veškeré " "balíky byly sestaveny s optimalizací vyžadující minimální architekturu i686. " "S tímto hardwarem není možné povýšit váš systém na nové vydání Ubuntu." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Nemáte procesor ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Váš systém používá procesor ARM, který je starší než architektura ARMv6. " "Všechny balíčky ve vydání Karmic byly sestaveny s optimalizacemi " "požadujícími minimálně architekturu ARMv6. S tímto hardwarem není možné " "povýšit váš systém na nové vydání Ubuntu." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Není k dispozici žádný démon init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Zdá se, že váš systém běží ve virtualizovaném prostředí bez démona init, " "např. Linux-VServer. Ubuntu 10.04 LTS nemůže v takovémto typu prostředí " "pracovat. Proveďte prosím nejprve požadovanou aktualizaci virtuálního " "stroje.\n" "\n" "Opravdu chcete pokračovat?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Aktualizace v chráněném prostředí za pomoci aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Použij danou cestu k vyhledání cdrom s aktualizovatelnými balíčky" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Používat nadstavbu. Aktuálně dostupné :\n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*ZASTARALÉ* tato volba bude ignorována" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Provést pouze částečné povýšení (bez přepisování sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Zakázat podporu GNU screen" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Nastavit datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Stahování je dokončeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Stahování souboru %li z %li při %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Zbývá zhruba %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Stahování souboru %li z %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Provádějí se změny" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problém se závislostmi - ponecháno nenastavené" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Nelze nainstalovat „%s“" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Přechod na vyšší verzi bude pokračovat, ale balíček „%s“ nemusí pracovat " "správně. Zvažte prosím odeslání hlášení o chybě." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Nahradit upravený soubor s nastavením\n" "„%s“?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Pokud zvolíte nahrazení novější verzí, ztratíte veškeré lokální změny tohoto " "konfiguračního souboru." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Příkaz „diff“ nebyl nalezen" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Došlo ke kritické chybě" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Toto prosím nahlaste jako chybu (pokud jste tak již neučinili) a přidejte ke " "své zprávě soubory /var/log/dist-upgrade/main.log a /var/log/dist-" "upgrade/apt.log. Přechod na novější vydání byl přerušen.\n" "Váš původní soubor sources.list byl uložen do " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Stisknuto Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Toto přeruší operaci a může zanechat systém v rozbitém stavu. Jste si jisti, " "že to chcete provést?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Pro zamezení ztráty dat uzavřete všechny aplikace a dokumenty." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Již není podporováno společností Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Přejít na nižší verzi (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Odstranit (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Již není potřeba (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Nainstalovat (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Přejít na vyšší verzi (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Zobrazit rozdíl >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Skrýt rozdíl" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Chyba" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Zrušit" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Zavřít" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Zobrazit terminál >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Skrýt terminál" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informace" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Podrobnosti" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Již není podporováno %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Odstranit %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Odstranit (byl automaticky nainstalován) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Nainstalovat %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Aktualizovat %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Je nutný restart" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Pro dokončení přechodu na vyšší verzi systému restartujte " "počítač" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Restartovat nyní" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Zrušit probíhající povýšení systému?\n" "\n" "Zrušení povýšení může systém uvést do nepoužitelného stavu. Důrazně " "doporučujeme v povýšení pokračovat." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Zrušit povyšování systému?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li den" msgstr[1] "%li dny" msgstr[2] "%li dní" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li hodina" msgstr[1] "%li hodiny" msgstr[2] "%li hodin" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuta" msgstr[1] "%li minuty" msgstr[2] "%li minut" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekunda" msgstr[1] "%li sekundy" msgstr[2] "%li sekund" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Stahování zabere přibližně %s s 1Mbit připojením DSL a přibližně %s s 56k " "modemem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Stahování bude s vaším připojením trvat cca %s. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Připravuje se povýšení systému" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Získávají se nové softwarové kanály" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Získávají se nové balíčky" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Instalují se aktualizace" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Probíhá úklid" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d nainstalovaný balík již není podporován společností Canonical. " "Stále však můžete získat podporu od komunity." msgstr[1] "" "%(amount)d nainstalované balíky již nejsou podporovány společností " "Canonical. Stále však můžete získat podporu od komunity." msgstr[2] "" "%(amount)d nainstalovaných balíků již není podporováno společností " "Canonical. Stále však můžete získat podporu od komunity." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d balíček bude odstraněn." msgstr[1] "%d balíčky budou odstraněny." msgstr[2] "%d balíčků bude odstraněno." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nový balíček bude nainstalován." msgstr[1] "%d nové balíčky budou nainstalovány." msgstr[2] "%d nových balíčků bude nainstalováno." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d balíček bude nahrazen vyšší verzí." msgstr[1] "%d balíčky budou nahrazeny vyšší verzí." msgstr[2] "%d balíčků bude nahrazeno vyšší verzí." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Bude staženo celkem %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Instalace aktualizací může zabrat až několik hodin. Jakmile bude dokončeno " "stahování, nelze proces ukončit." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Stažení a instalace aktualizací může zabrat až několik hodin. Jakmile bude " "dokončeno stahování, nelze proces ukončit." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Mazání balíků může trvat několik hodin. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Software v tomto počítači je aktuální" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Pro váš systém nejsou k dispozici žádné aktualizace. Přechod na vyšší verzi " "bude nyní zrušen." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Je nutné restartovat počítač" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Přechod na vyšší verzi byl dokončen a nyní je nutné restartovat počítač. " "Chcete jej restartovat nyní?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Nahlaste prosím toto jako chybu a přidejte ke své zprávě soubory " "/var/log/dist-upgrade/main.log a /var/log/dist-upgrade/apt.log. Přechod na " "novější vydání byl přerušen.\n" "Váš původní soubor sources.list byl uložen do " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Přerušuje se" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Odrazováno:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Chcete-li pokračovat, stiskněte prosím [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Pokračovat [aN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Podrobnosti [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "a" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Již není podporováno: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Odstranit: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Nainstalovat: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Aktualizovat: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Pokračovat [An] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Pro dokončení povýšení systému je nutné jej restartovat.\n" "Pokud zvolíte „a“, tak bude systém restartován." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Stahuje se %(current)li. souboru z %(total)li rychlostí %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Stahuje se %(current)li. souboru z %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Zobrazit průběh jednotlivých souborů" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Zrušit přechod na vyšší verzi" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Pok_račovat v přechodu na vyšší verzi" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Zrušit probíhající aktualizaci?\n" "\n" "Zrušení aktualizace může systém uvést do nepoužitelného stavu. " "Důrazně se doporučuje v aktualizaci pokračovat." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Začít přechod na vyšší verzi" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Nah_radit" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Rozdíl mezi soubory" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Oznámit chybu" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Pokračovat" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Spustit přechod na vyšší verzi systému?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Pro dokončení povýšení systému restartujte počítač\n" "\n" "Prosím, uložte si před pokračováním svou práci." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Přechod na vyšší verzi distribuce" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Probíhá přechod na Ubuntu 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Nastavují se nové softwarové kanály" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Restartuje se počítač" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminál" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Přejít na vyšší verzi" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Je k dispozici nové vydání Ubuntu. Chcete přejít na vyšší verzi?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Nepřecházet" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Dotázat se později" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ano, přejít nyní" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Odmítli jste přechod na nové Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Přejít na novější vydání můžete i později pomocí Správce aktualizací a volby " "\"Povýšit\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Zahájit přechod na novější vydání" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Pro povýšení Ubuntu se musíte autorizovat." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Provést částečné povýšení" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Pro provedení částečného povýšení se musíte autorizovat." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Zobrazit verzi a skončit" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Složka, která obsahuje datové soubory" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Spustit určenou nádstavbu" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Probíhá částečné povýšení systému" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Stahuje se nástroj pro přechod na novější vydání" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Zkontrolovat, zda je možné povýšit systém na nejnovější vývojové vydání" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Zkuste povýšit na poslední vydání pomocí aktualizačního systému z $distro-" "proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Spustit ve speciálním režimu povýšení systému.\n" "V současné době je podporováno „desktop“ pro systémy na osobních počítačích " "a „server“ pro systémy na serverech." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Otestovat aktualizaci se zabezpečeným prostředím aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Zkontrolovat, jen pokud je k dispozici nové vydání distribuce a výsledek " "oznámit přes kód ukončení" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Probíhá pokus o nalezení nové verze Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Vaše vydání Ubuntu již není podporováno." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Pro informace o přechodu na vyšší verzi prosím navštivte:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Nenalezeno žádné nové vydání" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Přechod na novější vydání není v tuto chvíli možný" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Povýšení na novější vydání nemůže být v současné době provedeno. Zkuste to " "prosím později znovu. Server oznámil: „%s“" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Dostupné nové vydání „%s“." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Spusťte „do-release-upgrade“ pro povýšení systému na toto vydání." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Přechod na Ubuntu %(version)s k dispozici" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Odmítli jste přechod na Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Přidat ladící výstup" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "K provedení částečného povýšení je třeba autorizace" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "K přechodu na novější vydání je vyžadováno ověření" ubuntu-release-upgrader-0.220.10/po/de.po0000644000000000000000000021075712431225715014755 0ustar # German translation of update-manager. # Copyright (C) 2005 Michiel Sikkes # This file is distributed under the same license as the update-manager package. # Initial version by an unknown artist. # Frank Arnold , 2005. # # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-06-04 08:35+0000\n" "Last-Translator: Hendrik Knackstedt \n" "Language-Team: German GNOME Translations \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server für %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Hauptserver" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Benutzerdefinierte Server" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Eintrag für sources.list konnte nicht erstellt werden" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Es konnten keine Paketdateien gefunden werden, möglicherweise ist dies keine " "Ubuntu-CD oder die falsche Architektur?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Hinzufügen der CD gescheitert" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Beim Hinzufügen der CD trat ein Fehler auf. Die Systemaktualisierung wird " "abgebrochen. Bitte melden Sie dies als einen Fehler, wenn Sie eine " "offizielle Ubuntu-CD verwendet haben.\n" "\n" "Die Fehlermeldung war:\n" "%s" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Defektes Paket entfernen" msgstr[1] "Defekte Pakete entfernen" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Das Paket »%s« befindet sich in einem inkonsistenten Zustand und muss neu " "installiert werden, allerdings kann dafür kein Archiv gefunden werden. " "Möchten Sie das Paket nun entfernen, um fortzufahren?" msgstr[1] "" "Die Pakete »%s« befinden sich in einem inkonsistenten Zustand und müssen neu " "installiert werden, allerdings können dafür keine Archive gefunden werden. " "Wollen Sie diese Pakete nun entfernen, um fortzufahren?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Der Server ist möglicherweise überlastet" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Defekte Pakete" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Ihr System enhält defekte Pakete, die mit dieser Anwendung nicht repariert " "werden können. Bitte verwenden Sie »Synaptic« oder »apt-get« zur Reparatur " "der Pakete, bevor Sie fortfahren." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Ein unlösbares Problem ist während der Systemaktualisierung aufgetreten:\n" "%s\n" "\n" " Dies kann folgende Ursachen haben:\n" " * Sie möchten auf eine Vorabveröffentlichung von Ubuntu aktualisieren\n" " * Sie benutzen eine Vorabveröffentlichung von Ubuntu\n" " * Sie benutzen Softwarepakete, die nicht aus einer offiziellen Ubuntu-" "Quelle stammen\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Dies ist wahrscheinlich ein vorübergehendes Problem.\n" "Bitte versuchen Sie es zu einem späteren Zeitpunkt erneut." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Falls nichts von dem zutrifft, melden Sie diesen Fehler bitte, indem Sie den " "Befehl »ubuntu-bug ubuntu-release-upgrader-core« in einem Terminal ausführen." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" "Es konnte nicht ermittelt werden, welche Systemaktualisierungen verfügbar " "sind" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Fehler bei der Echtheitsprüfung einiger Pakete" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Die Echtheit einiger Pakete konnte nicht bestätigt werden. Dies kann an " "vorübergehenden Netzwerkproblemen liegen. Bitte versuchen Sie es zu einem " "späteren Zeitpunkt noch einmal. Unten stehend sehen Sie eine Liste " "derjenigen Pakete, deren Echtheit nicht bestätigt werden konnte." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Das Paket »%s« ist zum Löschen vorgesehen, wurde aber durch das System " "gesperrt." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Das unbedingt notwendige Paket »%s« ist zum Löschen vorgesehen." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" "Es wird versucht, die auf der schwarzen Liste stehende Version »%s« zu " "installieren" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "»%s« kann nicht installiert werden" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Es war nicht möglich, ein erforderliches Paket zu installieren. Bitte melden " "Sie diesen Fehler, indem Sie im Terminal den Befehl »ubuntu-bug ubuntu-" "release-upgrader-core« eingeben." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Metapaket konnte nicht bestimmt werden" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Ihr System enthält weder ein »ubuntu-desktop«-, ein »kubuntu-desktop«-, noch " "ein »edubuntu-desktop«-Paket und es war nicht möglich zu ermitteln, welche " "Ubuntu-Version Sie verwenden.\n" " Bitte installieren Sie eines der oben genannten Pakete über Synaptic oder " "apt-get bevor Sie fortfahren." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Zwischenspeicher wird gelesen" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Kein exklusiver Zugriff möglich" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Dies bedeutet üblicherweise, dass die Aktualisierungsverwaltung oder eine " "andere Paketverwaltung, wie z.B. »Synaptic«, »apt-get« oder »aptitude«, " "bereits läuft. Bitte beenden Sie zuerst die laufende Anwendung." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" "Die Systemaktualisierung über eine entfernte Verbindung wird nicht " "unterstützt" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Sie versuchen die Systemaktualisierung über eine entfernte ssh-Verbindung " "mit einer Oberfläche durchzuführen, die dies nicht unterstützt. Bitte " "versuchen Sie die textbasierte Systemaktualisierung mittels »do-release-" "upgrade«.\n" "\n" "Die Systemaktualisierung wird nun beendet. Bitte versuchen Sie es ohne ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Soll die Sitzung über SSH fortgesetzt werden?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Diese Sitzung läuft offenbar über SSH. Es wird davon abgeraten, eine " "Systemaktualisierung über SSH durchzuführen, da im Fehlerfall eine " "Wiederherstellung schwierig sein kann.\n" "\n" "Wenn Sie fortfahren, wird ein zusätzlicher SSH-Dienst auf Port »%s« " "gestartet.\n" "Sind Sie sicher, dass Sie fortfahren möchten?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Zusätzlicher SSH-Server wird gestartet" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Um eine Wiederherstellung im Fall einer Fehlfunktion zu vereinfachen, wird " "ein zusätzlicher sshd-Prozess auf Port »%s« gestartet. Wenn es Probleme mit " "dem aktuellen sshd-Prozess gibt, können Sie sich mit dem zusätzlichen " "Prozess verbinden.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Wenn Sie gerade eine Firewall ausführen, müssen Sie diesen Port vielleicht " "manuell öffnen. Da es möglicherweise gefährlich ist, wird dies nicht " "automatisch gemacht. Sie können den Port z.B. so öffnen:\n" "»%s«" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Systemaktualisierung kann nicht durchgeführt werden" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Eine Systemaktualisierung von »%s« auf »%s« wird von diesem Werkzeug nicht " "unterstützt." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Einrichten der Sandbox gescheitert" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Die Sandbox-Umgebung konnte nicht erstellt werden." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox-Modus" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Diese Systemaktualisierung wird in einer Testumgebung (im Sandbox-Modus) " "ausgeführt. Alle Änderungen werden in »%s« gespeichert und beim nächsten " "Neustart verloren sein.\n" "*Alle* von jetzt an bis zum nächsten Neustart gemachten Änderungen in System-" "Verzeichnissen – *sind nicht permanent*." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Ihre Python-Installation ist beschädigt. Bitte korrigieren Sie die " "Verknüpfung »/usr/bin/python«." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Das Paket »debsig-verify« ist installiert" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Die Systemaktualisierung kann ohne die Entfernung dieses Paketes nicht " "fortgesetzt werden. \n" "Bitte entfernen Sie es zunächst mit Synaptic oder »apt-get remove debsig-" "verify« und starten Sie danach die Systemaktualisierung neu." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Auf »%s« kann nicht geschrieben werden." #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Die Systemaktualisierung kann nicht fortgesetzt werden, da es nicht möglich " "ist, in das System-Verzeichnis »%s« zu schreiben.\n" "Stellen Sie bitte sicher, dass das System-Verzeichnis beschreibbar ist." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Die neuesten Aktualisierungen aus dem Internet mit einbeziehen?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Das Aktualisierungssystem kann auf das Internet zugreifen, um die neuesten " "Pakete automatisch herunterzuladen und diese während der " "Systemaktualisierung zu installieren. Falls Sie eine Netzwerkverbindung " "haben, ist das dringend empfohlen.\n" "\n" "Die Systemaktualisierung wird länger dauern, allerdings ist das System nach " "der Fertigstellung auf dem neuesten Stand. Sie können sich dagegen " "entscheiden, sollten aber die neuesten Aktualisierungen möglichst bald nach " "der Systemaktualisierung installieren.\n" "Falls Sie sich für »Nein« entscheiden, wird auf das Netzwerk nicht " "zugegriffen." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "Bei Aktualisierung zu %s deaktiviert" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Es wurde kein gültiger Spiegelserver gefunden" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Beim Überprüfen Ihrer Softwarequelleninformationen wurde kein " "Spiegelservereintrag für die Systemaktualisierung gefunden. Dies kann " "passieren, wenn Sie einen internen Spiegelserver verwenden oder wenn dessen " "Informationen veraltet sind.\n" "\n" "Soll Ihre »sources.list« trotzdem neu geschrieben werden? Wenn Sie »Ja« " "wählen, werden alle Einträge von »%s« auf »%s« aktualisiert.\n" "Wählen Sie hingegen »Nein«, wird die Systemaktualisierung abgebrochen." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Sollen die Standardeinträge für Paketquellen eingetragen werden?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Nach dem Überprüfen Ihrer »sources.list« wurde kein gültiger Eintrag für " "»%s« gefunden.\n" "Sollen Standardeinträge für »%s« hinzugefügt werden? Wenn Sie »Nein« wählen, " "wird die Systemaktualisierung abgebrochen." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Die Informationen über verfügbare Paketquellen sind ungültig" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Das Aktualisieren der Paketquellen-Informationen ließ eine ungültige Datei " "entstehen, weshalb der Fehlermeldevorgang gestartet wird." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Paketquellen von Drittanbietern deaktiviert" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Einige Paketquellen von Drittanbietern wurden deaktiviert. Sie können diese " "nach der Systemaktualisierung mit dem Programm »Software-Paketquellen« oder " "mit »Synaptic« wieder aktivieren." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paket in inkonsistentem Zustand" msgstr[1] "Pakete in inkonsistentem Zustand" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Das Paket »%s« ist in einem inkonsistentem Zustand und muss neu installiert " "werden, aber es wurde kein Archiv dafür gefunden. Bitte installieren Sie das " "Paket erneut manuell oder entfernen Sie es vom System." msgstr[1] "" "Die Pakete »%s« sind in einem inkonsistentem Zustand und müssen neu " "installiert werden, aber es wurden keine Archive dafür gefunden. Bitte " "installieren Sie die Pakete erneut manuell oder entfernen Sie sie vom System." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Fehler während der Aktualisierung" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Bei der Aktualisierung trat ein Problem auf. Dies ist häufig auf " "Netzwerkprobleme zurückzuführen. Bitte überprüfen Sie Ihre " "Netzwerkverbindung und versuchen Sie es erneut." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Nicht genug freier Festplattenspeicher verfügbar" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Die Aktualisierung wurde abgebrochen. Die Aktualisierung benötigt insgesamt " "%s freien Speicherplatz auf Laufwerk »%s«. Bitte geben Sie noch mindestens " "%s Speicherplatz auf dem Laufwerk »%s« frei. Leeren Sie den Müll und " "entfernen Sie temporäre Pakete von früheren Installationen, indem sie »sudo " "apt-get clean« ausführen." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Änderungen werden berechnet" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Möchten Sie die Systemaktualisierung starten?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Systemaktualisierung abgebrochen" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Die Systemaktualisierung wird jetzt abgebrochen und der ursprüngliche " "Zustand des Systems wiederhergestellt. Sie können die Systemaktualisierung " "später fortsetzen." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Die Aktualisierungen konnten nicht heruntergeladen werden" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Die Systemaktualisierung wurde abgebrochen. Bitte überprüfen Sie Ihre " "Internetverbindung oder Ihr Installationsmedium und versuchen Sie es erneut. " "Alle bis jetzt heruntergeladenen Dateien wurden gespeichert." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Fehler beim Anwenden" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Ursprünglicher Systemzustand wird wieder hergestellt" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Die Aktualisierungen konnten nicht installiert werden" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Die Systemaktualisierung wurde abgebrochen. Ihr System könnte sich in einem " "nicht verwendbaren Zustand befinden. Eine Wiederherstellung wird gestartet " "(»dpkg --configure -a«)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Bitte melden Sie diesen Fehler in einem Browser unter " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "und hängen Sie die Dateien in /var/log/dist-upgrade/ an den Problembericht " "an.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Die Systemaktualisierung wurde abgebrochen. Bitte prüfen Sie Ihre " "Internetverbindung oder Ihr Installationsmedium und versuchen Sie es erneut. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Veraltete Pakete entfernen?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Beibehalten" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Entfernen" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Während des Aufräumens trat ein Problem auf. Bitte lesen Sie die unten " "stehende Meldung für weitere Informationen. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" "Die aufgrund von Abhängigkeiten notwendigen Pakete sind nicht installiert." #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" "Das aufgrund von Abhängigkeiten erforderliche Paket »%s« ist nicht " "installiert. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Paketverwaltung wird überprüft" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Vorbereitung der Systemaktualisierung gescheitert" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Die Vorbereitung des Systems zur Aktualisierung ist fehlgeschlagen, die " "Fehlerberichterstattung wurde somit gestartet." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Beziehen der Erfordernisse für die Systemaktualisierung gescheitert" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Das System konnte nicht die Erfordernisse für die Systemaktualisierung " "beziehen. Die Systemaktualisierung wird nun abgebrochen und das " "ursprüngliche System wiederhergestellt.\n" "\n" "Außerdem wird der Fehlermeldevorgang gestartet." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Informationen zu Paketquellen werden aktualisiert" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "CD-ROM konnte nicht hinzugefügt werden" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Entschuldigung, das Hinzufügen der CD-ROM ist fehlgeschlagen." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Ungültige Paketinformationen" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Das benötigte Paket »%s« wurde nach der Aktualisierung Ihrer " "Paketinformationen nicht gefunden. Dies kann daran liegen, dass Sie keine " "offiziellen Spiegel-Server in Ihren Paketquellen eingetragen haben oder ein " "Spiegel-Server überlastet ist.\n" "Ihre derzeit eingerichteten Paketquellen finden Sie in " "/etc/apt/sources.list. Im Falle eines überlasteten Spiegel-Servers können " "Sie es später erneut versuchen." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Herunterladen" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Systemaktualisierung wird durchgeführt" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Systemaktualisierung wurde abgeschlossen" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Die Systemaktualisierung wurde vollständig abgeschlossen, jedoch traten " "während der Systemaktualisierung Fehler auf." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Es wird nach veralteter Software gesucht" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Die Systemaktualisierung ist abgeschlossen." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Teilweise Systemaktualisierung abgeschlossen." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Versionshinweise konnten nicht gefunden werden" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Der Server ist möglicherweise überlastet. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Versionshinweise konnten nicht heruntergeladen werden" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Bitte überprüfen Sie Ihre Internetverbindung." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "»%(file)s« wird gegenüber »%(signature)s« legitimiert " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "»%s« wird entpackt" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Die Aktualisierungsanwendung konnte nicht gestartet werden" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Hierbei handelt es sich sehr wahrscheinlich im einen Fehler im " "Aktualisierungswerkzeug. Bitter berichten Sie den Fehler mit dem Befehl " "»ubuntu-bug ubuntu-release-upgrader-core«." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Signatur der Aktualisierungsanwendung" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Aktualisierungsanwendung" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Herunterladen gescheitert" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Das Herunterladen der Systemaktualisierung ist gescheitert. Möglicherweise " "gibt es ein Netzwerkproblem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Legitimierung gescheitert" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Die Systemaktualisierung konnten nicht auf ihre Echtheit überprüft werden. " "Möglicherweise gibt es Probleme mit dem Netzwerk oder mit dem Server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Entpacken gescheitert" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Die Systemaktualisierung konnte nicht entpackt werden. Möglicherweise gibt " "es ein Problem mit dem Netzwerk oder mit dem Server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Überprüfung gescheitert" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Die Überprüfung der Systemaktualisierung ist gescheitert. Möglicherweise " "gibt es ein Problem mit dem Netzwerk oder mit dem Server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Systemaktualisierung kann nicht durchgeführt werden" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Dies tritt normalerweise bei einem System auf, in dem /tmp als noexec " "eingehängt ist. Bitte hängen Sie /tmp ohne noexec ein und führen Sie die " "Aktualisierung erneut aus." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Die Fehlermeldung lautet »%s«." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Systemaktualisierung" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Veröffentlichungshinweise" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Zusätzliche Pakete werden heruntergeladen …" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Datei %s von %s mit %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Datei %s von %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Bitte legen Sie »%s« in das Laufwerk »%s« ein" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Medienwechsel" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms ist in Verwendung" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Ihr System verwendet die »evms«-Datenträgerverwaltung in /proc/mounts. Die " "Anwendung »evms« wird nicht mehr unterstützt. Bitte schalten Sie »emvs« ab " "und starten Sie die Systemaktualisierung danach erneut." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "Ihre Grafik-Hardware wird möglicherweise von Ubuntu 13.04 nicht vollständig " "unterstützt." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Das Ausführen der »Unity«-Arbeitsumgebung wird nicht vollständig von Ihrer " "Grafik-Hardware unterstützt. Dies könnte nach der Aktualisierung zu einer " "sehr langsamen Umgebung führen. Wir raten Ihnen, statdessen die LTS-Version " "zu benutzen. Für weitere Informationen besuchen Sie: " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Möchten Sie " "die Aktualisierung trotzdem fortsetzen?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Ihre Grafik-Hardware wird möglicherweise nicht vollständig von Ubuntu 12.04 " "LTS unterstützt." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Ihre Intel-Grafik-Hardware wird in Ubuntu 12.04 LTS nur begrenzt unterstützt " "und Sie werden nach der Systemaktualisierung möglicherweise auf Probleme " "stoßen. Weitere Informationen dazu finden Sie unter " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Möchten Sie die " "Systemaktualisierung fortsetzen?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Eine Systemaktualisierung kann zu eingeschränkten visuellen Effekte führen " "und die Geschwindigkeit in Spielen und anderen grafikintensiven Anwendungen " "herabsetzen." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Der Recher verwendet derzeit den Gafiktreiber »nvidia« von NVIDIA. Es ist " "keine Version dieses Treiber verfügbar, die mit Ihrer Grafikkarte in Ubuntu " "10.04 LTS arbeiten kann.\n" "\n" "Möchten Sie fortfahren?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Der Rechner verwendet derzeit den Grafiktreiber »fglrx« von AMD. Es ist " "keine Version dieses Treiber verfügbar, die mit Ihrer Hardware in Ubuntu " "10.04 LTS arbeiten kann.\n" "\n" "Möchten Sie fortfahren?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Kein i686-Prozessor vorhanden" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ihr Rechner verwendet einen i586-Prozessor oder einen Prozessor, der keine " "CMOV-Instruktionen unterstützt. Alle Pakete wurden jedoch so optimiert, dass " "sie mindestens einen i686-Prozessor erfordern. Deshalb ist es mit dieser " "Hardware nicht möglich, Ihren Rechner auf eine neue Ubuntu-Version zu " "aktualisieren." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Kein ARMv6-Prozessor" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ihr System verwendet eine ARM-CPU mit einer älteren Architektur als ARMv6. " "Alle Softwarepakete in Karmic wurden mit Optimierungen erstellt, die ARMv6 " "als minimale Architektur erfordern. Es ist nicht möglich, mit dieser " "Hardware Ihr System auf eine neue Ubuntu-Version zu aktualisieren." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Kein init verfügbar" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Ihr System scheint eine virtuelle Umgebung ohne init-daemon zu sein, z.B. " "Linux-VServer. Ubuntu 10.04 LTS läuft in dieser Art von Umgebung nicht, " "sondern benötigt zuerst eine Aktualisierung der Konfiguration Ihrer " "virtuellen Maschine.\n" "\n" "Sind Sie sicher, dass Sie fortfahren möchten?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandbox-Systemaktualisierung mit »aufs«" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Den angegebenen Pfad benutzen, um nach einer CD-ROM mit aktualisierbaren " "Paketen zu suchen." #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Grafische Benutzeroberfläche verwenden. Momentan verfügbar: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*VERALTET* diese Option wird ignoriert" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Nur teilweise Systemaktualisierung durchführen (ohne sources.list erneut zu " "schreiben)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU-Bildschirmunterstützung deaktivieren" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Datenverzeichnis festlegen" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Dateien wurden vollständig heruntergeladen" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Datei %li von %li wird mit %sB/s heruntergeladen" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Es verbleiben ungefähr %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Datei %li von %li wird heruntergeladen" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Änderungen werden übernommen" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "Abhängigkeitsprobleme - beende unkonfiguriert" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "»%s« konnte nicht installiert werden" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Die Systemaktualisierung wird fortgesetzt, aber das Paket »%s« könnte sich " "in einem nicht funktionsfähigen Zustand befinden. Bitte ziehen Sie in " "Betracht, diesen Fehler zu melden." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Soll die manuell angepasste Konfigurationsdatei\n" "%s ersetzt werden?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Alle Änderungen an dieser Konfigurationsdatei gehen verloren, wenn Sie diese " "durch eine neuere Version ersetzen." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Das Programm »diff« konnte nicht gefunden werden" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ein schwerwiegender Fehler ist aufgetreten" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Bitte erstellen Sie einen Fehlerbericht (wenn sie dies noch nicht getan " "haben) und fügen Sie die Dateien /var/log/dist-upgrade/main.log und " "/var/log/dist-upgrade/apt.log hinzu. Die Systemaktualisierung wurde " "abgebrochen. Ihre ursprüngliche sources.list wurde unter " "/etc/apt/sources.list.distUpgrade gespeichert." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Strg-C wurde gedrückt" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Dies führt zum Abbruch der Operation und eventuell zu einem instabilen " "System. Sind Sie sicher, dass Sie das tun möchten?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Schließen Sie bitte alle offenen Anwendungen und Dokumente, um Datenverluste " "zu vermeiden." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Nicht mehr von Canonical unterstützt (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Mit älterer Version ersetzen (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Entfernen (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Nicht mehr benötigt (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Installieren (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Aktualisieren (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Unterschiede anzeigen >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Unterschiede ausblenden" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Fehler" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "Ab&brechen" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Schließen" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Terminal anzeigen >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Terminal ausblenden" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Information" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Details" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Nicht mehr unterstützt (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Entferne %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Entferne (wurde automatisch installiert): %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Installiere %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Aktualisiere %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Neustart erforderlich" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Das System zum Abschluss der Systemaktualisierung neu " "starten" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Jetzt _neu starten" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Die laufende Systemaktualisierung abbrechen?\n" "\n" "Das System kann sich in einem unbenutzbaren Zustand befinden, wenn Sie die " "Aktualisierung abbrechen. Es wird dringend empfohlen, die " "Systemaktualisierung fortzusetzen." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Systemaktualisierung abbrechen?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li Tag" msgstr[1] "%li Tage" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li Stunde" msgstr[1] "%li Stunden" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li Minute" msgstr[1] "%li Minuten" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li Sekunde" msgstr[1] "%li Sekunden" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Dieser Download wird mit einer 1-MBit-DSL-Verbindung etwa %s dauern oder " "ungefähr %s mit einem 56K-Modem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Das Herunterladen wird bei Ihrer Netzwerkverbindung etwa %s dauern. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Systemaktualisierung wird vorbereitet" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Neue Paketquellen werden abgefragt" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Aktualisierungen werden heruntergeladen" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Aktualisierungen werden installiert" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Aufräumen" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d Paket wird nicht mehr von Canonical unterstützt. Sie können " "allerdings immer noch Hilfe von der Gemeinschaft erhalten." msgstr[1] "" "%(amount)d Pakete werden nicht mehr von Canonical unterstützt. Sie können " "allerdings immer noch Hilfe von der Gemeinschaft erhalten." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d Paket wird entfernt." msgstr[1] "%d Pakete werden entfernt." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d neues Paket wird installiert." msgstr[1] "%d neue Pakete werden installiert." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d Paket wird aktualisiert." msgstr[1] "%d Pakete werden aktualisiert." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Insgesamt müssen %s heruntergeladen werden. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Die Installieren der Systemaktualisierung kann mehrere Stunden dauern. " "Sobald das Herunterladen abgeschlossen wurde, kann der Vorgang nicht " "abgebrochen werden." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Das Herunterladen und Installieren der Systemaktualisierung kann mehrere " "Stunden dauern. Sobald das Herunterladen abgeschlossen ist, kann der Vorgang " "nicht mehr abgebrochen werden." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Das Entfernen der Pakete kann mehrere Stunden dauern. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Die Anwendungen auf diesem Rechner sind aktuell." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Es sind keine Aktualisierungen für das System verfügbar. Der Vorgang wird " "nun beendet." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Neustart erforderlich" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Die Systemaktualisierung ist abgeschlossen und ein Neustart ist " "erforderlich. Möchten Sie den Computer jetzt neu starten?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Bitte erstellen Sie einen Fehlerbericht und fügen Sie die Dateien " "/var/log/dist-upgrade/main.log und /var/log/dist-upgrade/apt.log hinzu. Die " "Systemaktualisierung wurde abgebrochen.\n" "Ihre ursprüngliche sources.list wurde in /etc/apt/sources.list.distUpgrade " "gesichert." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Wird abgebrochen" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Zurückgesetzt:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Um fortzufahren, drücken Sie [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Fortsetzen [j/N] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Details [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "j" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Nicht mehr unterstützt: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "»%s« wird entfernt\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "»%s« wird installiert\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "»%s« wird aktualisiert\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Fortsetzen [J/n] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Um die Systemaktualisierung abzuschließen, ist ein Neustart erforderlich.\n" "Wenn Sie »j« wählen, wird das System neu gestartet." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "Datei %(current)li von %(total)li wird mit %(speed)s/s heruntergeladen" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Datei %(current)li von %(total)li wird heruntergeladen" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Fortschritt der einzelnen Dateien anzeigen" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "Systemaktualisierung abbre_chen" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "System_aktualisierung fortsetzen" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Soll die laufende Systemaktualisierung abgebrochen " "werden?\n" "\n" "Das System könnte in einem unbenutzbaren Zustand verbleiben. Es wird " "dringend geraten, die Systemaktualisierung fortzusetzen." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "Systemaktualisierung _beginnen" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Ersetzen" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Unterschiede zwischen den Dateien" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Fehlerbericht erstellen" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Fortsetzen" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Mit der Systemaktualisierung beginnen?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Das System muss neu gestartet werden, um die Aktualisierung " "abzuschließen.\n" "\n" "Bitte sichern Sie alle offenen Arbeiten, bevor Sie fortfahren." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Systemaktualisierung" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Aktualisierung von Ubuntu auf Version 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Neue Paketquellen werden eingerichtet" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Rechner wird neu gestartet" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Befehlsfenster" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_System aktualisieren" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Eine neue Ubuntu-Version ist verfügbar. Möchten Sie Ihr System " "aktualisieren?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "System nicht aktualisieren" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Später erneut fragen" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "System jetzt aktualisieren" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" "Sie haben die Systemaktualisierung auf eine neue Ubuntu-Veresion abgelehnt" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Sie können die Aktualisierung auch später durchführen, indem Sie die " "Anwendung »Aktualisierungen« öffnen und dort auf »Aktualisieren« klicken." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Eine Systemaktualisierung durchführen" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Um Ubuntu zu aktualisieren, müssen Sie sich authentifizieren." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Eine teilweise Systemaktualisierung durchführen" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" "Um eine teilweise Systemaktualisierung durchzuführen, müssen Sie sich " "authentifizieren." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Version anzeigen und Programm schließen" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Verzeichnis, das die Datendateien enthält" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Angegebene Oberfläche verwenden" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Teilweise Systemaktualisierung wird durchgeführt" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Das Freigabeaktualisierungswerkzeug wird heruntergeladen" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Möglichkeit einer Aktualisierung auf die aktuelle Entwicklungsversion prüfen" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Versuchen Sie, mit der Aktualisierungsverwaltung von $distro-proposed auf " "die neueste Version zu aktualisieren." #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Verwendung eines besonderen Systemaktualisierungsmodus\n" "Aktuell werden die Modi »desktop« für die allgemeine Systemaktualisierung " "von Desktop-Systemen und »server« für Server-Systeme unterstützt." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testen der Systemaktualisierung mit einem Sandbox-aufs-Overlay" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Nur auf neue Systemfreigabe prüfen und das Ergebnis im Exit-Code angebe" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Neue Veröffentlichungen von Ubuntu werden gesucht" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Ihre Ubuntu-Version wird nicht länger unterstützt." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Bitte rufen Sie diese Webseite auf, um Informationen zur " "Systemaktualisierung zu erhalten:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Keine neue Freigabe gefunden" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Eine Systemaktualisierung ist momentan nicht möglich" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Die Systemaktualisierung kann im Moment nicht durchgeführt werden, bitte " "versuchen Sie es später erneut. Server-Meldung: »%s«" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Neue Freigabe »%s« verfügbar." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" "Führen Sie den Befehl »do-release-upgrade« aus, um auf die neue Ubuntu-" "Freigabe zu aktualisieren." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s-Systemaktualisierung verfügbar" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Sie haben die Systemaktualisierung auf Ubuntu %s abgelehnt" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Fehlerdiagnoseausgabe hinzufügen" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "" #~ "Für die teilweise Systemaktualisierung ist eine Legitimation erforderlich" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Für die Systemaktualiserung ist eine Legitimation erforderlich" ubuntu-release-upgrader-0.220.10/po/fil.po0000644000000000000000000015412112431225715015127 0ustar # Filipino translation for update-manager # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: JeanAustinR \n" "Language-Team: Filipino \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:54+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: fil\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Mga Server para sa %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Pangunahing server" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Mga pasadyang server" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Hindi makalkula ang nakatala sa sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Walang paketeng natagpuan, maaaring hindi ito Ubuntu Disc o ang arkitektura " "nito ay mali?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Hindi naidagdag ang CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "May problema sa pagdagdag ng CD, ang upgrade ay hindi itutuloy. Paki-report " "ito bilang isang bug kung ito ay isang tunay na Ubuntu CD.\n" "\n" "Ang error message ay:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Alisin ang mga paketeng nasa masamang kalagayan" msgstr[1] "Alisin ang mga package na masama ang lagay" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Ang paketeng '%s' ay na sa hindi magandang kalagayan at kinakailangan muling " "i-install, ngunit walang matagpuang archive para dito. Nais mo bang " "tanggalin ang paketeng ito upang makapagpatuloy?" msgstr[1] "" "Ang mga paketeng '%s' ay na sa hindi magandang kalagayan at kinakailangan " "muling i-install, ngunit walang matagpuang archive para sa kanila. Nais mo " "bang tanggalin ang mga paketeng ito upang makapagpatuloy?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Baka sobrang kargado ang server" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Mga sirang package" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Nagtataglay ang iyong sistema ng mga sirang pakete na hindi na kayang ayusin " "ng software na ito. Maaaring ayusin ang mga ito gamit ang synaptic o apt -" "get bago magpatuloy." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "May isang di-malunasang problemang lumitaw habang kinakalkula ang upgrade:\n" "%s\n" "\n" " Mga maaaring kadahilanan:\n" " * Pag-upgrade sa isang di pa nailalabas na bersyon ng Ubuntu\n" " * Ginagamit ang di pa nailalabas na bersyon ng Ubuntu\n" " * Hindi opisyal na paketeng software na di mula sa Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Malamang sa malamang, ito ay isang mapaparam na suliraning. Mangyaring " "pakisubukan muli mamaya." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Hindi makalkula ang upgrade" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "May problema sa pagkilala sa ibang mga package" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "May ibang mga package na hindi makilala. Marahil ito'y isang lumilipas na " "problema sa network. Maaari kayong sumubok muli mamaya. Ang mga sumusunod ay " "ang mga package na hindi makilala." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Ang paketeng '%s' ay namarkahan upang matanggal ngunit ito ay na sa talaan " "ng mga paketeng hindi maaaring tanggalin." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Ang mahalagang paketeng '%s' ay namarkahan upang matanggal." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Sinusubukang i-install ang naka-blacklist na bersyong '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Hindi ma-install ang '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Hindi mahulaan ang meta-package" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Ang inyong sistema ay hindi naglalaman ng ubuntu-desktop, kubuntu-desktop, " "xubuntu-desktop o edubuntu-desktop package at hindi posibleng makita ang " "bersyon ng Ubuntu na ginagamit ninyo.\n" " Mag-install muna ng isa sa mga nabanggit na package gamit ang synaptic o " "apt-get bago magtuloy." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Binabasa ang cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Hindi makuha ang exclusive lock" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Kadalasan, ang ibig-sabihin niyo ay may iba pang package management " "application (tulad ng apt-get o aptitude) ang tumatakbo na. Paki-sara muna " "ang application na iyon." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Walang suporta para sa pag-upgrade mula sa isang remote connection" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Ituloy ang pagpapatakbo sa ilalim ng SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Nagbubukas ng karagdagang sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Upang mapadali ang recovery kung sakaling mabigo ang upgrade, may isang " "karagdagang sshd na bubuksan sa port '%s'. Kung may mangyayari mang hindi " "maganda sa tumatakbong ssh, maaari niyong gamitin ang bagong idinagdag.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Hindi makapag-upgrade" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Ang pag-upgrade mula '%s' patungong '%s' ay hindi suportado ng kagamitang " "ito." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Nagbigo ang pagsasaayos ng Sandbox" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Hindi naging posible ang paggawa ng sandbox environment." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox mode" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Sira ang inyong python install. Paki-ayos ang '/usr/bin/python' symlink." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Ang package na 'debsig-verify' ay naka-install" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Ang upgrade ay hindi makakapag-patuloy kung ang package na iyon ay naka-" "install.\n" "Paki-alis lamang ito mula sa Synaptic, o kaya 'apt-get remove debsig-verify' " "muna, at gawin muli ang upgrade." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Isama ang pinakabagong update mula sa Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Maaring gamitin ng upgrade system ang internet upang awtomatiko nitong " "makuha ang mga pinakabagong update at ma-install ang mga ito habang " "tumatakbo ang upgrade. Kung mayroon kayong network connection, ito ay aming " "ipinapayo.\n" "\n" "Mas magtatagal ang upgrade ngunit kapag ito ay natapos, magiging ganap na up-" "to-date ang iyong sistema. Maaari ninyo itong huwag gawin ngunit dapat na i-" "install ninyo ang mga pinakabagong update pagkatapos ng upgrade.\n" "Kung 'hindi' ang inyong pipiliin, ang network ay hindi gagamitin." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "disabled sa pag-upgrade patungong %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Walang mirror na natagpuan" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Gumawa ng default sources?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Repository information invalid" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Hindi gagamitin ang third party sources" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "May ibang third party entries sa inyong sources.list ang hindi ginagamit. " "Maaari ninyo itong gamitin pagkatapos ng upgrade gamit ang 'software-" "properties' tool o ang inyong package manager." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Mayroong mali sa package" msgstr[1] "Mayroong mali sa mga package" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Problema habang nagu-update" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "May problemang nangyari habang nag-a-update. Ito ay karaniwang uri ng " "problema sa network, mangyaring tiyakin ang inyong koneksyon sa network at " "subukan muli." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Kulang sa libreng disk space" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Kinakalkula ang mga pagbabago" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Simulan na ba ang upgrade?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Ikinansela ang upgrade" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Ang upgrade ay makakansel na ngayon at ang orihinal na kalagayan ng sistema " "ay ibabalik. Ang upgrade ay maaari mong ituloy sa susunod." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Hindi ma-download ang mga upgrade" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Error during commit" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Ibinabalik ang orihinal na kalagayan ng sistema" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Hindi ma-install ang mga upgrade" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Tanggalin ang mga lumang package?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Itago" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Tanggalin" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "May problemang naganap habang naglilinis. Mangyaring tingnan ang mensahe sa " "ibaba para sa karagdagang impormasyon. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Ang mga kinakailangang depend ay hindi naka-install" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Ang kinakailangang dependency '%s' ay hindi naka-intall. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Sinusuri ang package manager" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Nabigo sa paghahanda ng upgrade" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Nabigong kunin ang mga pangangailangan para sa pag-upgrade" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Ina-update ang repository information" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Invalid package information" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Kinukuha" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Nagu-upgrade" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Tapos na ang upgrade" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Naghahanap ng mga lumang software" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Tapos na ang System upgrade." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Ang bahagyang upgrade ay tapos na." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Hindi matagpuan ang release notes" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Maaaring overloaded ang server. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Hindi ma-download ang release notes" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Suriin ang inyong internet connection." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Hindi matagpuan ang upgrade tool" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Upgrade tool signature" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Upgrade tool" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Nabigo sa pagkuha" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Nabigo sa pagkuha ng upgrade. Marahil ay may problema sa network. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Nabigo ang authentication" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Nabigo ang authentication ng upgrade. Marahil ay may problema sa network o " "sa server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Nabigo sa pag-extract" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Nabigo sa pag-extract ng upgrade. Marahil ay may problema sa network o sa " "server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Nabigo ang verification. Marahil ay may problema sa network o sa server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Hindi mapatakbo ang upgrade" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Ang mensahe ng pagkakamali ay '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Upgrade" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Release Notes" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Kumukuha ng mga karagdagang file ng mga pakete..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "File %s ng %s sa bilis na %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "File %s ng %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Pakipasok ang '%s' sa loob ng drive '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Pagpapalit ng Media" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "Kasalukuyang ginagamit ang evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Ginagamit ng inyong sistema ang 'evms' volume manager sa /proc/mounts. Ang " "software na 'evms' ay hindi na sinusuportahan, pakipatay lamang ito at " "muling simulan ang upgrade." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Maaaring mabawasan ng pag-upgrade ang desktop effects, at mapabagal ang mga " "laro at mga programang magamit sa graphic." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandbox upgrade gamit ang aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Gamitin ang nabanggit na path para hanapin ang cdrom na may mga upgradable " "package" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Gamitin ang frontend. Mga maaaring gamitin: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Magsagawa ng bahagyang pagsasangayon (update) lamang (no sources.list " "rewriting)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "I-set ang datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Ang pagkuha ay tapos na" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Kinukuha ang file %li ng %li sa bilis na %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Mga %s ang nalalabi" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Kinukuha ang file %li ng %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Ginagawa ang mga pagbabago" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Hindi ma-install ang '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Palitan ang binagong configuration file\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Mawawala ang mga pagbabagong ginawa ninyo dito sa configuration file na ito " "kung pipiliin ninyong palitan ito ng mas bagong bersyon." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Ang 'diff' command ay hindi natagpuan" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Isang fatal error ang nangyari" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Pinindot ang Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Patitigilin nito ang operasyon at maaari itong ikasira ng inyong sistema. " "Sigurado ba kayong nais niyong gawin ito?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Para maiwasan ang pagkawala ng data, isara ang mga nakabukas na application " "at mga dokumento." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Ipakita ang Pagkakaiba >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Itago ang Pagkakaiba" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Pagkakamali" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Isara" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Ipakita ang Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Itago ang Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Impormasyon" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Mga detalye" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Tanggalin %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Install %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Upgrade %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Kinakailangang mag-restart" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "I-restart ang sistema para tapusin ang upgrade" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Mag-restart Ngayon" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Ikansela ang tumatakbong upgrade?\n" "\n" "Maaaring masira ang sistema kung ikakansela ang upgrade. Ipinapayong " "ipagpatuloy ang upgrade." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Itigil ang Upgrade?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li araw" msgstr[1] "%li mga araw" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li oras" msgstr[1] "%li mga oras" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuto" msgstr[1] "%li mga minuto" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li segundo" msgstr[1] "%li mga segundo" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Ang download na ito ay magtatagal ng mga %s gamit ang 1Mbit DSL at mga %s " "gamit ang 56k modem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" "Ang download na ito ay magtatagal ng mga %s gamit ang inyong koneksyon. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Naghahanda sa pag-upgrade" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Kinukuha ang mga bagong software channel" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Kinukuha ang mga bagong pakete" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Ini-install ang mga upgrade" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Naglilinis" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d package ay tatanggalin." msgstr[1] "%d mga package ay tatanggalin." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d bagong package ang ii-install." msgstr[1] "%d mga baong package ang ii-install." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d package ang iu-upgrade." msgstr[1] "%d mga package ang iu-upgrade." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Ang kabubuhan niyong kinakailangang i-download ay %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Wala pang upgrade na para sa inyong sistema. Ititigil na ang upgrade." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Kailangang mag-reboot" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Tapos na ang upgrade at kailangang mag-reboot. Gusto niyo ba itong gawin na?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Itinitigil" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Demoted:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Magpatuloy [oH] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Mga detalye [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "o" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "h" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Tanggalin: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "I-install: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "I-upgrade: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Magpatuloy [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Upang matapos ang upgrade, kinakailangang mag-restart.\n" "Magre-restart ang sistema kung pipiliin ang 'o'." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Idina-download ang file %(current)li ng %(total)li sa %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Idina-download ang file %(current)li ng %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Itigil ang Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Ipagpatuloy ang Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Itigil ang tumatakbong upgrade?\n" "\n" "Ang sistema ay maaaring maging hindi kapakipakinabang kung ititigil niyo ang " "upgrade. Madiin na ipinapayong ipagpatuloy ninyo ang upgrade." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Simulan ang Upgrade" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Palitan" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Pagkakaiba sa pagitang ng mga file" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_I-report ang Bug" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Ipagpatuloy" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Simulan ang upgrade?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Pag-upgrade ng Distribution" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Itinatakda ang mga bagong software channels" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Inire-restart ang computer" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Upgrade" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Ipakita ang bersyon at lumabas" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Patakbuhin ang piniling frontend" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Tumatakbong bahagiang upgrade" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Tignan kung ang pag-upgrade sa pinakabagong devel release ay maaari" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Walang nakitang bagong release" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/nl.po0000644000000000000000000020172312431225715014767 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:39+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Nederlands \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: \n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server voor %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Hoofdserver" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Aangepaste servers" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Kan sources.list-vermelding niet berekenen" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Kan geen pakketbestanden vinden, mogelijk is dit geen Ubuntu-medium of " "beschikt u niet over de juiste hardware-architectuur." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Toevoegen van de cd is mislukt" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Er is een fout opgetreden tijdens het toevoegen van de cd, waardoor de " "opwaardering onderbroken zal worden. Gelieve deze fout te rapporteren indien " "dit een geldige Ubuntu-cd is.\n" "\n" "De foutmelding was:\n" "‘%s’" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Pakket dat in slechte staat is verwijderen" msgstr[1] "Pakketten die in slechte staat zijn verwijderen" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Het pakket ‘%s’ verkeert in een inconsistente staat en moet opnieuw " "geïnstalleerd worden. Er is echter geen archiefbestand gevonden voor dit " "pakket. Wilt u verdergaan en het pakket verwijderen?" msgstr[1] "" "De pakketten ‘%s’ verkeren in een inconsistente staat en moeten opnieuw " "geïnstalleerd worden. Er zijn echter geen archiefbestanden gevonden voor " "deze pakketten. Wilt u verdergaan en de pakketten verwijderen?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "De server is mogelijk overbelast" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Niet-werkende pakketten" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Uw systeem bevat niet-werkende pakketten die niet hersteld kunnen worden met " "deze software. Herstel deze eerst met synaptic of apt-get voordat u " "verdergaat." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Er deed zich een onoplosbaar probleem voor tijdens het berekenen van de " "opwaardering:\n" "%s\n" "\n" " Dit kan veroorzaakt worden door:\n" " * het opwaarderen naar een nog niet uitgebrachte versie van Ubuntu\n" " * het gebruik van de huidige niet-uitgebrachte versie van Ubuntu\n" " * onofficiële programma's, niet geleverd door Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Dit is waarschijnlijk een tijdelijk probleem.\r\n" "Probeer het later nog eens." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Indien niets van dit alles van toepassing is, meld deze fout dan a.u.b. met " "behulp van de terminalopdracht 'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Kon de opwaardering niet berekenen" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Fout bij het bepalen van de echtheid van sommige pakketten" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Het was niet mogelijk om de echtheid van sommige pakketten vast te stellen. " "Dit kan liggen aan een tijdelijk netwerkprobleem. U kunt het later opnieuw " "proberen. Hieronder vindt u een lijst met pakketten waarvan de echtheid niet " "vastgesteld is." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Het pakket ‘%s’ is gemarkeerd voor verwijdering, maar het staat op de zwarte " "lijst voor verwijderen." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Het essentiële pakket ‘%s’ is gemarkeerd voor verwijdering." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" "Pakket (versie ‘%s’) dat op de zwarte lijst staat proberen te installeren" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Kan ‘%s’ niet installeren" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Het was onmogelijk om een vereist pakket te installeren. Meld deze fout " "a.u.b. met behulp van de terminalopdracht 'ubuntu-bug ubuntu-release-" "upgrader-core'." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Kan het metapakket niet raden" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Uw systeem bevat geen ubuntu-desktop-, kubuntu-desktop-, xubuntu-desktop- of " "edubuntu-desktop-pakket waardoor het niet mogelijk was om te bepalen welke " "variant van Ubuntu u heeft.\n" " Installeer eerst één van de bovenstaande pakketten met synaptic of apt-get " "voordat u verder gaat." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Tijdelijke opslag inlezen" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Kon geen exclusieve blokkering verkrijgen" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Dit betekent meestal dat een andere pakketbeheerder (zoals apt-get of " "aptitude) actief is. Gelieve die toepassing eerst te sluiten." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Opwaarderen via een externe verbinding wordt niet ondersteund" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "U voert de opwaardering uit via een ssh-verbinding op afstand, met een " "bedieningsschil die dit niet ondersteunt. Probeer een opwaardering in " "tekstmodus met 'do-release-upgrade'.\n" "\n" "De opwaardering wordt nu afgebroken. Probeer het a.u.b. opnieuw zonder ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Doorgaan met uitvoeren via ssh?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Deze sessie lijkt onder ssh te draaien. Het wordt momenteel niet aangeraden " "om een opwaardering via ssh uit te voeren, omdat een mislukte opwaardering " "dan moeilijk te herstellen is.\n" "\n" "Als u verdergaat, zal er een extra ssh-achtergronddienst gestart worden op " "poort '%s'.\n" "Wilt u verdergaan?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Bezig met starten van extra sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Om bij fouten een hersteloperatie te vergemakkelijken, zal een extra sshd " "gestart worden op poort ‘%s’. Indien er iets misgaat met de ssh die in " "gebruik was, kunt u nog steeds verbinden met de extra sshd.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Als u een firewall heeft draaien kan het zijn dat u tijdelijk deze poort " "dient te openen. Dit wordt niet automatisch gedaan, aangezien dit gevaarlijk " "kan zijn. U kunt de poort openen met bijv.:\n" "‘%s’" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Kan niet opwaarderen" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Een opwaardering van '%s naar '%s' is niet mogelijk met dit gereedschap." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandbox-installatie mislukt" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Kon geen sandbox-omgeving aanmaken." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox-modus" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Deze opwaardering wordt in sandbox (test)-modus uitgevoerd. Alle " "veranderingen worden naar ‘%s’ weggeschreven en zullen verloren gaan als u " "de computer afsluit.\n" "\n" "*Geen enkele* verandering aan een systeemmap vanaf nu totdat u de computer " "opnieuw opstart zal permanent zijn." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Uw python-installatie is beschadigd. Herstel de symbolische link " "‘/usr/bin/python’." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pakket 'debsig-verify' is geïnstalleerd." #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "De opwaardering kan niet worden voortgezet als dat pakket geïnstalleerd is.\n" "Verwijder het eerst met synaptic of 'apt-get remove debsig-verify' en voer " "de opwaardering opnieuw uit." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Kan niet schrijven naar ‘%s’" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Het is niet mogelijk om naar de systeemmap ‘%s’ op uw systeem te schrijven. " "De opwaardering kan niet verder gaan.\n" "Zorg ervoor dat er in de systeemmap geschreven kan worden." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Laatste updates downloaden van het internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Bij de opwaardering kunnen automatisch de laatste updates van het internet " "binnengehaald en geïnstalleerd worden. Als u een netwerkverbinding heeft is " "dit ten zeerste aan te bevelen.\n" "\n" "Het opwaardeerproces zal hierdoor langer duren, maar na afloop is uw systeem " "geheel bijgewerkt. Als u hier niet voor kiest zult u snel na de opwaardering " "de updates moeten installeren.\n" "Als u voor 'nee' kiest, wordt het netwerk helemaal niet gebruikt." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "uitgeschakeld bij opwaardering naar %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Geen geldige spiegelserver gevonden" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Tijdens het doorzoeken van uw beschikbare softwarebronnen is er geen " "spiegelserver voor de opwaardering gevonden. Dit kan gebeuren als u een " "interne spiegelserver heeft of als de spiegelserverinformatie verouderd is.\n" "\n" "Wilt u ‘sources.list’ toch herschrijven? Als u 'Ja' kiest, worden " "spiegelservers ‘%s’ tot ‘%s’ bijgewerkt. Bij ‘Nee’ wordt de opwaardering " "geannuleerd." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "De standaard bronnenlijst aanmaken?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Tijdens het doorzoeken van uw beschikbare softwarebronnen is er geen " "geschikte server voor ’%s’ gevonden.\n" "\n" "Moeten de standaardservers voor ‘%s’ toegevoegd worden? Als u 'Nee' kiest, " "wordt de opwaardering geannuleerd." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "De informatie over de pakketbronnen is ongeldig" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Het updaten van de softwarebron resulteerde in een ongeldig bestand. Er " "wordt automatisch een bug-rapport aangemaakt." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Pakketbronnen van derden uitgeschakeld" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Enkele pakketbronnen van derden in uw sources.list zijn uitgeschakeld. U " "kunt ze na de opwaardering weer inschakelen met het programma ‘software-" "properties’ of met uw pakketbeheerder." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pakket in inconsistente staat" msgstr[1] "Pakketten in inconsistente staat" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Het pakket ‘%s’ verkeert in een inconsistente staat en moet opnieuw " "geïnstalleerd worden. Er zijn echter geen archiefbestanden gevonden voor " "deze pakketten. Gelieve het pakket handmatig te herinstalleren of te " "verwijderen uit het systeem." msgstr[1] "" "De pakketten ‘%s’ bevinden zich in een inconsistente toestand en moeten " "opnieuw geïnstalleerd worden, maar er is geen archief gevonden dat de " "pakketten bevat. U moet de pakketten zelf installeren of u moet ze " "verwijderen uit het systeem." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Fout tijdens het bijwerken" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Tijdens de update heeft zich een probleem voorgedaan. De oorzaak hiervan is " "meestal een netwerkprobleem. Gelieve uw netwerkverbinding te controleren en " "probeer het dan opnieuw." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Niet genoeg vrije schijfruimte" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Het opwaarderen is afgebroken. De installatie heeft in totaal %s vrije " "schijfruimte nodig op schijf ‘%s’. Maak tenminste een extra %s schijfruimte " "vrij op ‘%s’. Maak de prullenbak leeg en verwijder tijdelijke bestanden van " "vorige installaties via de opdracht 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Wijzigingen worden berekend" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Wilt u beginnen met het opwaarderen?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Opwaardering geannuleerd" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "De opwaardering zal nu worden geannuleerd en de originele systeemstatus " "wordt hersteld. U kunt de opwaardering op een later tijdstip hervatten." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Kon de opwaarderingsbestanden niet binnenhalen" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "De opwaardering is afgebroken. Controleer a.u.b. uw internetverbinding of " "installatiemedia en probeer het opnieuw. Alle bestanden die tot nu toe " "binnengehaald zijn zullen bewaard blijven." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Fout bij het toepassen" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "De oorspronkelijke toestand wordt hersteld" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Kon de opwaarderingsbestanden niet installeren" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "De opwaardering is afgebroken. Uw systeem kan zich in een onbruikbare staat " "bevinden. Er zal nu een herstelprocedure uitgevoerd worden (dpkg --configure " "-a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Meld deze fout a.u.b. in een webbrowser op " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and voeg de bestanden in /var/log/dist-upgrade/ toe aan het foutrapport.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "De opwaardering is afgebroken. Controleer a.u.b. uw internetverbinding of " "installatiemedia en probeer het opnieuw. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Verouderde pakketten verwijderen?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Behouden" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Verwijderen" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Tijdens het opruimen heeft zich een probleem voorgedaan. Zie onderstaand " "bericht voor meer informatie. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "De vereiste afhankelijkheden zijn niet geïnstalleerd" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Het vereiste pakket ‘%s’ is niet geïnstalleerd. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Pakketbeheerder controleren" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Voorbereiden van de opwaardering is mislukt" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Het voorbereiden van het systeem op de opwaardering is mislukt, dus wordt er " "een foutrapportageproces gestart." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" "Het verkrijgen van de vooraf benodigde zaken voor de opwaardering, is mislukt" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Het systeem kon de vooraf benodigde zaken voor de opwaardering, niet " "verkrijgen. De opwaardering wordt nu afgebroken en het systeem wordt in de " "originele staat hersteld.\n" "\n" "Daarnaast wordt er een proces gestart voor de foutmelding." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Updaten van de informatie over de pakketbronnen" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Toevoegen van cdrom mislukt" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Helaas is het niet gelukt de cdrom toe te voegen" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Ongeldige pakketinformatie" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Ophalen" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Bezig met opwaarderen" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Opwaardering is voltooid" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "De opwaardering is voltooid, maar er hebben zich fouten voorgedaan tijdens " "het opwaardeerproces." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Zoeken naar verouderde software" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Systeemopwaardering is voltooid." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "De gedeeltelijke opwaardering werd voltooid." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Kon de versie-informatie niet vinden" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "De server is waarschijnlijk overbelast. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Kon de versie-informatie niet downloaden" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Controleer uw internetverbinding." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "'%(file)s' tegen '%(signature)s' verifiëren " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "‘%s’ wordt uitgepakt" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Kon het opwaardeerprogramma niet uitvoeren" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Dit is waarschijnlijk een fout in het opwaardeergereedschap. Meld deze fout " "a.u.b. met behulp van de terminalopdracht 'ubuntu-bug ubuntu-release-" "upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Handtekening opwaardeerprogramma" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Opwaardeerprogramma" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Ophalen is mislukt" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Het ophalen van de opwaardering is mislukt. Er is mogelijk een " "netwerkprobleem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Echtheidscontrole is mislukt" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "De echtheidscontrole van de opwaardering is mislukt. Er is mogelijk een " "probleem met het netwerk of met de server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Uitpakken is mislukt" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Het uitpakken van de opwaardering is mislukt. Er is mogelijk een probleem " "met het netwerk of met de server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verificatie is mislukt" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Het verifiëren van de opwaardering is mislukt. Er is mogelijk een probleem " "met het netwerk of met de server. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Kan de opwaardering niet uitvoeren" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Dit wordt meestal veroorzaakt door een systeem waar /tmp met noexec is " "aangekoppeld. Koppel opnieuw aan zonder noexec en voer de opwaardering weer " "uit." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "De foutmelding is ‘%s’." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Opwaarderen" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Versie-informatie" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Aanvullende pakketbestanden downloaden…" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Bestand %s van %s met %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Bestand %s van %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Plaats ‘%s’ in station ‘%s’" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Medium wisselen" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms wordt gebruikt" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Uw systeem gebruikt de volumebeheerder 'evms' in /proc/mounts. De 'evms'-" "programmatuur wordt niet langer ondersteund, schakel hem a.u.b. uit en voer " "de opwaardering nogmaals uit wanneer dit gebeurd is." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Het draaien van de 'Unity'-werkomgeving wordt niet volledig ondersteund door " "uw videokaart. U zou mogelijk een erg langzaam systeem kunnen krijgen na de " "opwaardering. Ons advies is, om voorlopig bij de LTS-versie te blijven. Meer " "informatie vindt u op " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Wilt u toch " "doorgaan met de opwaardering?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Uw grafische hardware wordt misschien niet volledig ondersteund in Ubuntu " "12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "De ondersteuning in Ubuntu 12.04 LTS voor uw Intel-videokaart is beperkt en " "er kunnen problemen optreden na de opwaardering. Voor meer informatie zie " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Wilt u toch " "verder gaan met de opwaardering?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Opwaarderen zou de bureaubladeffecten kunnen verminderen, alsook de " "prestaties in spellen en andere grafisch intensieve programma's." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Deze computer gebruikt momenteel het grafisch stuurprogramma 'nvidia' van " "NVIDIA. Voor Ubuntu 10.04 LTS is geen stuurprogramma beschikbaar dat met uw " "hardware werkt.\n" "Wilt u doorgaan?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Deze computer gebruikt momenteel het grafisch stuurprogramma 'fglrx' van " "AMD. Voor Ubuntu 10.04 LTS is geen stuurprogramma beschikbaar dat met uw " "hardware werkt.\n" "Wilt u doorgaan?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Geen i686-CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Uw systeem gebruikt een i586-CPU of een CPU die geen ‘cmov’-extensie heeft. " "Alle pakketten zijn gemaakt met optimalisaties die minstens i686 nodig " "hebben. Met deze apparatuur is het niet mogelijk om uw systeem op te " "waarderen naar een nieuwe versie van Ubuntu." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Geen ARMv6-CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Uw systeem gebruikt een ARM-CPU ouder dan de ARMv6-architectuur. Alle " "pakketten zijn gecompileerd voor ARMv6 als de minimale architectuur. Het is " "met uw apparatuur niet mogelijk om uw systeem op te waarderen naar een " "nieuwe versie van Ubuntu." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Geen init beschikbaar" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Het lijkt erop dat uw systeem gevirtualiseerd is zonder een init-daemon, " "bijvoorbeeld Linux-VServer. Ubuntu 10.04 LTS kan niet functioneren in dit " "type virtualisatie. U zult eerst de instellingen van uw virtuele machine " "moeten aanpassen.\n" "\n" "Weet u zeker dat u wilt doorgaan?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandbox-opwaardering via aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Gebruik het opgegeven pad om te zoeken naar een cd-rom met pakketten die " "geüpgraded kunnen worden" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Gebruik een bedieningsschil. Momenteel beschikbaar: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*DEPRECATED* deze optie zal genegeerd worden" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Voer een gedeeltelijke opwaardering uit (sources.list wordt niet herschreven)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU-schermondersteuning uitschakelen" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Datamap instellen" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Het ophalen is voltooid" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Ophalen bestand %li van %li met %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Ongeveer %s resterend" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Bestand %li van %li wordt opgehaald" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Wijzigingen worden doorgevoerd" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "vereistenproblemen - blijft niet ingesteld" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Kon ‘%s’ niet installeren" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "De opwaardering zal doorgaan, maar het pakket '%s' zal mogelijk niet werken. " "Overweeg a.u.b. om er een foutrapport over in te dienen." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Het aangepaste configuratiebestand vervangen?\n" "'%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Wanneer u besluit dit configuratiebestand te vervangen door een nieuwere " "versie zullen al uw gemaakte wijzigingen verloren gaan." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "De opdracht 'diff' is niet gevonden" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Er is een ernstige fout opgetreden" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapporteer dit a.u.b. als een fout (als u dat al niet gedaan heeft) en voeg " "de bestanden /var/log/dist-upgrade/main.log en /var/log/dist-upgrade/apt.log " "bij uw melding. De opwaardering is afgebroken.\n" "Uw oorspronkelijke sources.list is opgeslagen in " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c ingedrukt" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Dit zal de taak onderbreken waardoor uw systeem mogelijk niet meer correct " "werkt. Weet u zeker dat u dit wilt doen?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Sluit alle openstaande toepassingen en documenten om dataverlies te " "voorkomen." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Niet langer ondersteund door Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Downgrade (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Verwijder (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Niet meer nodig (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Installeer (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Opwaarderen (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Verschillen weergeven >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Verschillen verbergen" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Foutmelding" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "Sl&uiten" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Terminalvenster weergeven >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Terminalvenster verbergen" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informatie" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Details" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Niet meer ondersteund %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s verwijderen" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "%s verwijderen (werd automatisch geïnstalleerd)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s installeren" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s opwaarderen" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Herstart vereist" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Herstart het systeem om de opwaardering te voltooien" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Nu herstarten" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "De opwaardering annuleren?\n" "\n" "Het systeem kan onbruikbaar zijn als u de opwaardering annuleert. U wordt " "met nadruk geadviseerd om met de opwaardering door te gaan." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Opwaardering annuleren?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dag" msgstr[1] "%li dagen" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li uur" msgstr[1] "%li uur" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuut" msgstr[1] "%li minuten" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li seconde" msgstr[1] "%li seconden" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Deze download zal ongeveer %s duren met een 1 Mbit DSL-verbinding en " "ongeveer %s met een 56k-modem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Deze download duurt met uw verbinding ongeveer %s. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Opwaardering aan het voorbereiden" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Nieuwe softwarekanalen worden opgehaald" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Ophalen van nieuwe pakketten" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Bezig met installeren van de opwaardeerbestanden" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Opruimen" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d geïnstalleerd pakket wordt niet meer door Canonical ondersteund. " "Updates kunnen door de gemeenschap geleverd worden." msgstr[1] "" "%(amount)d geïnstalleerde pakketten worden niet meer door Canonical " "ondersteund. Updates kunnen door de gemeenschap geleverd worden." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakket zal verwijderd worden." msgstr[1] "%d pakketten zullen verwijderd worden." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nieuw pakket zal geïnstalleerd worden." msgstr[1] "%d nieuwe pakketten zullen geïnstalleerd worden." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakket zal opgewaardeerd worden." msgstr[1] "%d pakketten zullen opgewaardeerd worden." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "U moet in totaal %s downloaden. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Het installeren van een opwaardering kan enkele uren in beslag nemen. Nadat " "het ophalen voltooid is kan het proces niet meer afgebroken worden." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Het ophalen en installeren van de pakketten kan meerdere uren duren. Wanneer " "het ophalen van de pakketten voltooid is kan het proces niet meer afgebroken " "worden." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Het verwijderen van de pakketten kan enkele uren in beslag nemen. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "De software op deze computer is actueel." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Er zijn geen opwaarderingen beschikbaar voor uw systeem. De opwaardering " "wordt nu geannuleerd." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Herstart vereist" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Het opwaarderen is voltooid en herstarten is noodzakelijk. Wilt u dit nu " "doen?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapporteer dit a.u.b. als een fout en voeg de bestanden /var/log/dist-" "upgrade/main.log en /var/log/dist-upgrade/apt.log bij uw melding. De " "opwaardering is afgebroken." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Afbreken" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Gedegradeerd:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Druk op [ENTER] om door te gaan" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "_Doorgaan [jN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Details [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "j" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Niet meer ondersteund: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Verwijderen: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Installeren: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Opwaarderen: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Doorgaan [Jn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Om de opwaardering te voltooien moet u de computer herstarten.\n" "Wanneer u 'j' selecteert zal de computer herstart worden." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Bestand %(current)li van %(total)li wordt gedownload met %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Bestand %(current)li van %(total)li wordt gedownload" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Voortgang van de afzonderlijke pakketten tonen" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "Opwaardering _annuleren" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Opwaardering hervatten" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "De actieve opwaardering annuleren?\n" "\n" "Het systeem wordt mogelijk onbruikbaar als u de opwaardering annuleert. U " "wordt sterk aangeraden om de opwaardering te hervatten." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "Opwaardering _starten" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Vervangen" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Verschillen tussen de bestanden" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Fout rapporteren" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Doorgaan" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Opwaardering starten?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Herstart de computer om de opwaardering te voltooien\n" "\n" "Sla a.u.b. uw werk op alvorens u verdergaat." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Distributie-opwaardering" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Instellen van de nieuwe softwarekanalen" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Computer herstarten" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminalvenster" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Opwaarderen" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Er is een nieuwe versie van Ubuntu beschikbaar. Wilt u opwaarderen?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Niet opwaarderen" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Later opnieuw vragen" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ja, nu opwaarderen" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "U heeft besloten om niet te op te waarderen naar de nieuwe Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "U kunt op een later tijdstip opwaarderen door Updatebeheer te openen en te " "klikken op 'Opwaarderen'." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Voer een versie-opwaardering uit" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Voor een upgrade van Ubuntu is autenticatie vereist." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Voer een gedeeltelijke opwaardering uit" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Voor een gedeeltelijke upgrade is authenticatie vereist." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Versie tonen en afsluiten" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Map die de gegevensbestanden bevat" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "De opgegeven 'frontend' uitvoeren" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Gedeeltelijke opwaardering aan het uitvoeren" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Gereedschap voor versie-opwaardering aan het binnenhalen" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Controleer of opwaarderen naar de nieuwste ontwikkelversie mogelijk is" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Probeer op te waarderen naar de nieuwste versie door gebruik te maken van " "het opwaardeergereedschap van $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Uitvoeren in een speciale opwaardeermodus\n" "Momenteel worden 'desktop' en 'server' ondersteund voor opwaarderen van " "respectievelijk een bureaubladsysteem en een serversysteem." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Opwaardering uitproberen met een sandbox-aufs-overlay" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Alleen controleren wanneer er een nieuwe distributie-uitgave beschikbaar is, " "en het resultaat rapporteren via de afsluitstatus" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Er wordt gecontroleerd of er een nieuwe Ubuntu-uitgave is" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Uw Ubuntu-versie wordt niet langer ondersteund." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Voor opwaardeerinformatie, bezoek:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Geen nieuwe versie gevonden" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Uitgave-opwaardering momenteel niet mogelijk" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "De uitgave-opwaardering kan momenteel niet plaatsvinden, probeer het a.u.b. " "later nog eens. De server gaf als antwoord: ‘%s’" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Nieuwe versie '%s' beschikbaar." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" "Voer 'do-release-upgrade' uit om naar de nieuwe versie op te waarderen." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Opwaardering naar Ubuntu %(version)s beschikbaar" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "U heeft besloten om niet te op te waarderen naar Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Debug-uitvoer toevoegen" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "" #~ "Authenticatie is vereist om een gedeeltelijke opwaardering uit te voeren" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Authenticatie is vereist om een versie-opwaardering uit te voeren" ubuntu-release-upgrader-0.220.10/po/ml.po0000644000000000000000000015331112431225715014765 0ustar # Malayalam translation for update-manager # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: nithin_aneesh \n" "Language-Team: Malayalam \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: ml\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s -ന്റെ സര്‍വര്‍" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "പ്രധാന സര്‍വര്‍" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "മറ്റെതെങ്ങിലും കേന്ദ്ര കമ്പ്യൂട്ടര്‍" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list ഇല്‍ കണക്കാക്കാന്‍ കഴിഞ്ഞില്ല" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "ആവശ്യമായ സോഫ്റ്റ്‌വെയര്‍ കണ്ടെത്താന്‍ കഴിയുന്നില്ല! നിങ്ങള്‍ 'Ubuntu' " "വിന്റെ ഡിസ്ക് തന്നെയാണൊ ഉപയോഗിക്കുന്നത് ?! അതോ, മറ്റൊരു processor ആണോ " "ഉപയോഗിക്കുന്നത്?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "സി ഡി(CD ) ഉള്‍പ്പെടുത്തുന്നതില്‍ പരാജയപ്പെട്ടു!" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD ഉള്‍പ്പെടുത്തുന്നതില്‍ തകരാറ് സംഭവിച്ചതിനാല്‍ ഈ അപ്ഡേറ്റ് ഇവിടെ " "തടസ്സപ്പെടുകയാണ്! നിങ്ങള്‍ ശരിയായ ഉബുണ്ടു CD തന്നെയാണ് ഉപയോഗിച്ചതെങ്കില് ഈ " "തകരാറ് ഞങ്ങളെ അറിയിക്കുക\n" "\n" "തകരാറിനെ കുറിച്ചുള്ള വിശദീകരണം ഇപ്രകാരമാണ്:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "മോശം നിലയില്‍ ഉള്ള സോഫ്റ്റ്‌വെയര്‍ നീക്കം ചെയ്യുന്നു" msgstr[1] "മോശം നിലയില്‍ ഉള്ള സോഫ്റ്റ്‌വെയറുകള്‍ നീക്കം ചെയ്യുന്നു" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "പാക്കേജ് '%s' സ്ഥിരോപയോഗത്തിന് പറ്റാത്ത നിലയിലാണ്, വീണ്ടും ഇന്‍സ്റ്റാള്‍ " "ചെയ്യേണ്ടതുണ്ട്. പക്ഷേ പാക്കേജ് സംഭരണിയില്‍ പ്രസ്തുത പാക്കേജ് ലഭ്യമല്ല. " "ഇപ്പോള്‍ ഈ പക്കേജ് ഒഴിവാക്കി തുടരേണ്ടതുണ്ടോ?" msgstr[1] "" "പാക്കേജുകള്‍ '%s' സ്ഥിരോപയോഗത്തിന് പറ്റാത്ത നിലയിലാണ്, വീണ്ടും ഇന്‍സ്റ്റാള്‍ " "ചെയ്യേണ്ടതുണ്ട്. പക്ഷേ പാക്കേജ് സംഭരണിയില്‍ പ്രസ്തുത പാക്കേജുകള്‍ ലഭ്യമല്ല. " " ഇപ്പോള്‍ ഈ പക്കേജുകള്‍ ഒഴിവാക്കി തുടരേണ്ടതുണ്ടോ?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "അപൂര്‍ണ്ണമായ പാക്കേജുകള്‍" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "താങ്കളുടെ സിസ്റ്റത്തില്‍ ഈ സോഫ്റ്റവെയര്‍ ഉപയോഗിച്ച് നന്നാക്കാന്‍ സാധിക്കാത്ത " "മുറിഞ്ഞ്പോയ പാക്കേജുകള്‍ ഉണ്ട്. ദയവായി synaptic അല്ലെങ്കില്‍ apt-get " "ഉപയോഗച്ച് അവ ശരിയാക്കിയ ശേഷം തുടരുക." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "അപ്ഗ്രേഡ് കണക്കാക്കുന്നതില്‍ പരിഹരിക്കാനാവാത്ത തകരാറ് സംഭവിച്ചിരിക്കുന്നു:\n" "%s\n" "\n" " താഴെ പറഞ്ഞിരിക്കുന്നതില്‍ ഏതെങ്കിലും ആയിരിക്കാം കാരണം:\n" " *ഇനിയും റിലീസ് ചെയ്തിട്ടില്ലാത്ത ഉബുണ്ടു പതിപ്പിലേക്ക് അപ്ഡേറ്റ് ചെയ്യാന്‍ " "ശ്രമിച്ചത് കൊണ്ട്\n" " *ഇനിയും റിലീസ് ചെയ്തിട്ടില്ലാത്ത ഉബുണ്ടു ഉപയോഗിച്ചത് കൊണ്ട്\n" " *ഉബുണ്ടുവില്‍ ഔദ്യോഗികമായി ഇല്ലാത്ത സോഫ്റ്റ്‌വെയര്‍ ഉപയോഗിച്ചത് കൊണ്ട്\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "ഇരു് മിക്കവാറും താത്കാലികമായ തകരാറ് മാത്രമാണ്, അല്‍പസമയം കഴിഞ്ഞു ശ്രമിക്കുക." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "നവീകരണം കണക്കുകൂട്ടാന്‍ കഴിഞ്ഞില്ല" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "ചില പാക്കേജുകള്‍ അധികാരപ്പെടുത്തുന്നതില്‍ പിഴവ്" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "ചില പാക്കേജുകള്‍ അധികാരപ്പെടുത്താന്‍ സാധിക്കുന്നില്ല. ഇതൊരു താത്കാലിക " "ശ്രിംഖലാ പ്രശ്നമാവാം. താങ്കള്‍ക്ക് പന്നീട് ശ്രമിക്കാവുന്നതാണ്. " "അധികാരപ്പെടുത്തുന്നതില്‍ പിഴവ് പറ്റിയ പാക്കേജുകളുടെ പട്ടിക താഴെ കൊടുക്കുന്നു." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "പാക്കേജ് '%s' ഒഴിവാക്കന്നതിനായി തെരഞ്ഞെടുത്തിരിക്കുന്നു. പക്ഷേ ഈ പാക്കേജ് " "ഒഴിവാക്കല്‍ പ്രതിരോധിക്കുന്ന പട്ടികയില്‍ ഉള്‍പെട്ടതാണ്." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" "അവശ്യം ഉണ്ടായിരിക്കേണ്ട പാക്കേജ് '%s' ഒഴിവാക്കുന്നതിനായി " "തെരെഞ്ഞെടുത്തിരിക്കുന്നു." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" "പ്രതിരോധപ്പട്ടികയില്‍ ഉള്ള പതിപ്പ് '%s' ഇന്‍സ്റ്റാള്‍ ചെയ്യാന്‍ " "ശ്രമിക്കുന്നു." #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' ഇന്‍സ്റ്റാള്‍ ചെയ്യാന്‍ കഴിയില്ല." #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "meta-package അനുമാനിക്കാന്‍ കഴിയില്ല." #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "താങ്കളുടെ സിസ്റ്റം ubuntu-desktop, kubuntu-desktop, xubuntu-desktop " "അല്ലെങ്കില്‍ edubuntu-desktop പാക്കേജ് ഉള്‍പ്പെടുന്നില്ല. അതിനാല്‍ " "ഉബുണ്ടുവിന്റെ ഏത് പതിപ്പാണ് ഉപയോഗിക്കന്നതെന്ന് നിര്‍ണ്ണയിക്കാന്‍ സാധ്യമല്ല. " "\n" " ദയവായി ആദ്യം ഏതെങ്കിലും ഒരു പാക്കേജ് synaptic അല്ലെങ്കില്‍ apt-get " "ഉപയോഗച്ച് ഇന്‍സ്റ്റാള്‍ ചെയ്ത ശേഷം തുടരുക." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "കാഷ് മെമ്മറി വായിക്കുക." #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "എസ്എസ്എച്ചില്‍ തന്നെ തുടരണമോ?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "അപ്ഗ്രേഡ്‌ ചെയ്യാൻ സാധിച്ചില്ലാ" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "പാക്കേജ് '%s' സ്ഥിരോപയോഗത്തിന് പറ്റാത്ത നിലയിലാണ്, വീണ്ടും ഇന്‍സ്റ്റാള്‍ " "ചെയ്യേണ്ടതുണ്ട്. പക്ഷേ പാക്കേജ് സംഭരണിയില്‍ പ്രസ്തുത പാക്കേജ് ലഭ്യമല്ല. " "ദയവായി ഈ പാക്കേജ് സ്വന്തമായി ഇന്‍സ്റ്റാള്‍ ചെയ്യുകയോ സിസ്റ്റത്തില്‍നിന്ന് " "ഒഴിവാക്കുകയോ ചെയ്യുക." msgstr[1] "" "പാക്കേജുകള്‍ '%s' സ്ഥിരോപയോഗത്തിന് പറ്റാത്ത നിലയിലാണ്, വീണ്ടും ഇന്‍സ്റ്റാള്‍ " "ചെയ്യേണ്ടതുണ്ട്. പക്ഷേ പാക്കേജ് സംഭരണിയില്‍ പ്രസ്തുത പാക്കേജുകള്‍ ലഭ്യമല്ല. " " ദയവായി ഈ പാക്കേജുകള്‍ സ്വന്തമായി ഇന്‍സ്റ്റാള്‍ ചെയ്യുകയോ " "സിസ്റ്റത്തില്‍നിന്ന് ഒഴിവാക്കുകയോ ചെയ്യുക." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "അപ്ഡേറ്റ് ചെയ്യുന്നതിനിടയില്‍ തകരാറ് സംഭവിച്ചിരിക്കുന്നു" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "അപ്ഡേറ്റ് ചെയ്യുന്നതിനിടയില്‍ തകരാറ് സംഭവിച്ചിരിക്കുന്നു. ഇത് മിക്കവാറും " "നെറ്റ്‍വര്‍ക്ക് പ്രശ്നമാവാം, താങ്കളുടെ നെറ്റ്‍വര്‍ക്കുമായുള്ള ബന്ധം " "പരിശോധിച്ച ശേഷം വീണ്ടും ശ്രമിക്കുക." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "ഡിസ്കില്‍ വേണ്ടത്ര സ്ഥലമില്ല" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "മാറ്റങ്ങള്‍ കണക്കാക്കന്നു." #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "അപ്ഗ്രേഡ് ആരംഭിക്കട്ടെ?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "സൂക്ഷിക്കുക (_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_നീക്കം ചെയ്യുക (Remove)" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/af.po0000644000000000000000000015106212431225715014744 0ustar # Afrikaans translation for update-manager # Copyright (c) 2007 Rosetta Contributors and Canonical Ltd 2007 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2007. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Afrikaans \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: af\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Bediener vir %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Hoofbediener" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Gebruikersspesifieke bedieners" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Kon nie sources.list inskrywing bereken nie" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Kon nie enige pakkette opspoor nie. Hierdie is dalk nie 'n Ubuntu Skyf nie " "of van die verkeerde argitektuur?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Misluk om die CD toe te voeg" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Daar was 'n probleem met die toevoeging van die CD. Die opgradering sal nou " "staak. Rapporteer asseblief hierdie gebeurtenis as 'n fout indien dit 'n " "geldige Ubuntu CD is.\n" "Die foutboodskap was:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Verwyder pakket in swak toestand" msgstr[1] "Verwyder pakette in swak toestand" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Die pakket '%s' is in 'n inkonsekwente toestand en benodig herinstallasie, " "maar geen argief kan daarvoor gevind word nie. Wil u die pakket nou verwyder " "om voort te gaan?" msgstr[1] "" "Die pakkette '%s' is in 'n inkonsekwente toestand en benodig herinstallasie, " "maar geen argief kan daarvoor gevind word nie. Wil u die pakkette nou " "verwyder om voort te gaan?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Die bediener is dalk oorlaai" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Gebroke pakette" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "U stelsel bevat gebroke pakette wat nie deur middel van hierdie sagteware " "reggemaak kon word nie. Gebruik asseblief synaptic of apt-get om dit reg te " "maak voordat u voort gaan." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "'n Onoplosbare probleem het onstaan terwyl die volgende opgradering bereken " "is:\n" "%s\n" "\n" "Dit kan veroorsaak word deur:\n" "*Opgradering na 'n vooruitgawe van Ubuntu\n" "*Gebruik van die huidige vooruitgawe van Ubuntu\n" "*Nie-amptelike sagtewarepakkette, nie deur Ubuntu gelewer nie\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Hierdie is heel waarskynlik 'n tydelike probleem, probeer asseblief later " "weer." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Kon nie die opgradering bereken nie" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Fout by bepaling van die egtheid van sommige pakkette" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Dit was nie moontlik om somige pakkette te staaf nie. Hierdie is moontlik 'n " "tydelike netwerkprobleem. Probeer later weer. Sien hieronder vir 'n lys van " "ongestaafde pakkette." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Die pakket '%s' is gemerk vir verwydering, maar dit is op die verwyderings-" "swartlys." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Die noodsaaklike pakket '%s' is gemerk vir verwydering." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Probeer tans om die swartlys weergawe '%s' te installeer." #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Kan nie '%s' installeer nie." #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Kan nie 'n meta-paket raai nie" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "U stelsel bevat nie die ubuntu-desktop, kubuntu-desktop, xubuntu-desktop of " "edubuntu-desktop paket nie en dit was nie moontlik om jou weergawe van " "Ubuntu te bepaal nie." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Lees geheuekas" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Kan nie 'n eksklusiewe slot bekom nie" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Hierdie beteken gewoonlik dat 'n ander pakketbestuurder (soos apt-get of " "aptitude) alreeds loop. Maak asseblief eers daardie program toe." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Opgradering oor 'n afstandsverbinding word nie ondersteun nie" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "U is besig om die opgradering te doen oor 'n ssh-afstandsverbinding met 'n " "voorkant wat dit nie ondersteun nie. Probeer asseblief 'n teksmodus " "opgradering met 'do-release-upgrade'.\n" "\n" "Die opgradering gaan nou staak. Probeer asseblief weer sonder ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Voortgaan met die uitvoer van SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Dit kom voor of hierdie sessie onder ssh loop. Opgradering oor ssh word " "huidiglik nie aanbeveel nie: in geval 'n probleem ontstaan is dit moeiliker " "om te herstel.\n" "\n" "Indien u voortgaan sal 'n bykomende ssh prosess in die agtergrond op poort " "'%s' begin word.\n" "Wil u voortgaan?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Begin bykomende sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Om herstelling in die geval van 'n probleem te vergemaklik, sal 'n bykomende " "sshd op poort '%s' begin word. Indien iets sou verkeerd loop, kan u steeds " "deur middel van hierdie bykomende sshd konnekteer.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Kan nie opgradeer nie" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Opgradering van '%s' na '%s' is nie met hierdie nutsprogram moontlik nie." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandpit opstelling het misluk" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Dit was nie moontlik om 'n sandpit omgewing te skep nie." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandpit-modus" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "U python installasie is korrup. Maak asseblief die '/usr/bin/python' " "simboliese skakel reg." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pakket 'debsig-verify' is geÏnstalleer" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Met daardie pakket geÏnstalleer, kan die opgradering nie voortgaan nie.\n" "Verwyder asseblief eers die pakket met synaptic of `apt-get remove debsig-" "verify' en begin dan weer die opgradering." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Moet die nuutste opdaterings vanaf die Internet ingesluit word?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Die opgraderingsisteem kan die Internet gebruik om outomaties die nuutste " "opdaterings af te laai en gedurende die opgradering te installeer. Indien u " "'n netwerkverbinding het, word hierdie opsie hoogs aanbeveel.\n" "\n" "Die opgradering sal langer neem, maar sodra dit afgehandel is, sal u sisteem " "ten volle op datum wees. U kan kies om nie hierdie roete te volg nie, maar u " "word dan aangeraai om die nuutste opdaterings na die opgradering te " "installeer.\n" "Indien u hier 'nee' kies' sal die netwerk glad nie gebruik word nie." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "versper op opgradering na %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Geldige spieëlbediener nie gevind nie" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Stoorplek inligting ongeldig" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Derde-party bronne versper" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Sekere derde-party inskrywings in u sources.list is versper. U kan hul na " "die opgradering herstel deur gebruik te maak van die 'software-properties' " "nutsprogram of u pakket bestuurder." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pakket in inkonsekwente toestand" msgstr[1] "Pakkette in inkonsekwente toestand" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Fout gedurende opdatering" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "'n Probleem het tydens die opgradering ontstaan. Dit is gewoonlik as gevolg " "van 'n probleem met die netwerkverbing. Kontrolleer asseblief u " "netwerkverbinding en probeer weer." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Onvoldoende skyfspasie beskikaar" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Bereken die veranderinge" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Begin met opgradering?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Opgradering gekanselleer" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Kon nie die opgraderings aflaai nie" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Oorspronklike stelseltoestand word herstel" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Kon nie die opgraderings installeer nie" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Verouderde pakkette verwyder?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Behou" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "Sk_rap" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "'n Probleem het tydens die skoonmaak-proses ontstaan. Sien asseblief die " "onderstaande boodskap vir verdere inligting. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Kontrolleer pakketbestuurder" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Misluk om die opgradering voor te berei" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Stoorplek inligting word opgedateer" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Ongeldige pakketinligting" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Haal tans" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Besig om op te gradeer" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Opgradering voltooi" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Soek na verouderde sagteware" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Sisteem-opgradering voltooi." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Die gedeeltelike opgradering is voltooi." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Die bediener is dalk oorlaai. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Kontrolleer asseblief u Internet-verbinding." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Kon nie die opgradering-nutsprogram loop nie." #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Opgradering-nutsprogram" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Stawing het misluk" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Stawing van die opgradering het misluk. Daar is moontlik 'n probleem met die " "netwerkverbinding of die bediener. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verifikasie het misluk" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Verifikasie van die opgradering het misluk. Daar is moontlik 'n probleem met " "die netwerkverbinding of die bediener. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Kan nie die opgradering loop nie" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Die foutboodskap is '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Gradeer op" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Laai bykomende pakketlêers af..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Lêer %s van %s teen %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Lêer %s van %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Plaas asseblief '%s' in dryf '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Media verwisseling" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms in gebruik" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Geen ARMv6 verwerker" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandpit-opgradering deur gebruik van aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Gebruik die gegewe aanwysing om 'n CD-ROM te soek met opdaterende pakette" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "Gebruik koppelvlak. Tans beskikbaar." #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Voer slegs 'n gedeeltelike opgradering uit (sources.list nie herskryf)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Stel datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Haal lêer %li van %li teen %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Haal lêer %li van %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Pas veranderings toe" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Kon nie '%s' installeer nie" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Die opgradering sal voortgaan maar die '%s' pakket is moontlik nie in 'n " "werkende toestand nie. Oorweeg dit asseblief om hierdie fout te rapporteer." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "U sal enige veranderinge wat u aan hierdie instellingslêer gemaak het " "verloor indien u kies om dit met 'n nuwer weergawe te vervang." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Die 'diff' bevel is nie gevind nie" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "'n Fatale fout het voorgekom" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c gedruk" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Om dataverlies te voorkom, sluit asseblief alle toepassings en dokumente." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Toon verskil >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Versteek verskil" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Fout" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Sluit" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Inligting" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Besonderhede" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Verwyder %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Verwyder (is outomaties geïinstalleer) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Installeer %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Opgradeer %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Herlaai benodig" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Herlaai die sisteem om die opgradering te voltooi" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "He_rlaai nou" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Opgradering kanselleer?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dag" msgstr[1] "%li dae" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li uur" msgstr[1] "%li ure" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuut" msgstr[1] "%li minute" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekond" msgstr[1] "%li sekondes" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Maak gereed vir opgradering" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Verkry nuwe pakkette" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installeer die opgraderings" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Besig om skoon te maak" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakket gaan verwyder word." msgstr[1] "%d pakkette gaan verwyder word." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nuwe pakket gaan geïinstalleer word." msgstr[1] "%d nuwe pakkette gaan geïinstalleer word." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakket gaan opgegradeer word." msgstr[1] "%d pakkette gaan opgegradeer word." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "U moet in totaal %s aflaai. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Daar is geen opdaterings vir u sisteem beskikbaar nie. Die opgradering word " "nou gekanselleer." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Herlaai benodig" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Besig om te kanselleer" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Voortgaan [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Besonderhede [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "j" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Verwyder: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Installeer: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Opgradeer: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Voortgaan [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Laai lêer %(current)li van %(total)li af teen %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Laai lêer %(current)li van %(total)li af" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Kanselleer opgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "He_rvat opgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Begin opgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Ve_rvang" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Verskil tussen die lêers" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Rapporteer fout" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Gaan voort" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Begin met opgradering?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Herlaai die sisteem om die opgradering te voltooi\n" "\n" "Stoor asseblief u werk voordat u voortgaan." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Herlaai die rekenaar" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminaal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "'n Nuwe weergawe van Ubuntu is beskikbaar. Wil u graag opgradeer?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Moenie opgradeer nie" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ja, Opgradeer Nou" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Toon weergawe en sluit af" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Gids wat die datalêers bevat" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s opgradering beskikbaar" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/nn.po0000644000000000000000000016663312431225715015003 0ustar # Norwegian Nynorsk translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Åsmund Skjæveland \n" "Language-Team: Norwegian Nynorsk \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: nn\n" "X-Language: nn_NO\n" "X-Source-Language: C\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Tenar for %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Hovudtenar" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Eigendefinerte tenarar" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Klarte ikkje å rekna ut oppføringa i sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Klarte ikkje å finna nokon pakkefiler. Kanskje dette ikkje er ein Ubuntu-" "disk eller rett arkitektur?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Klarte ikkje å leggja til CD-en" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Det oppstod ein feil under lesing av CD-en, oppgraderinga vert avbroten. " "Dette lyt rapporterast som ein feil, dersom dette er ein gyldig Ubuntu-CD.\n" "\n" "Feilmeldinga var:\n" "\"%s\"" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Fjern dårleg pakke" msgstr[1] "Fjern dårlege pakkar" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Pakken '%s' er øydelagd, og lyt leggjast inn på nytt, men ingen av dei " "nødvendige arkiva vart funne. Vil du fjerna pakken no og halda fram?" msgstr[1] "" "Pakkene '%s' er ødelagde, og lyt leggjast inn på nytt, men ingen av dei " "nødvendige arkiva vart funne. Vil du fjerna pakkene no og halda fram?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Tenaren kan vera oppteken" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Skadde pakkar" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Systemet ditt inneheld øydelagde pakkar som ikkje kunne reparerast med denne " "programvara. Reparer dei med synaptic eller apt-get før du held fram." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Eit problem som ikkje kan løysast automatisk oppstod medan oppgraderinga " "vart førebudd:\n" "%s\n" "\n" " Dette kan vera årsakene:\n" " * Oppgradering til ei tidleg utgåve (før-utgåva) av ein Ubuntu-versjon\n" " * Bruken av den noverande før-utgavå av ein Ubuntu-versjon\n" " * Uoffisielle programpakkar som ikkje kjem frå Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Dette er truleg berre eit kortvarig problem. Prøv om att seinare." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Klarte ikkje å førebu oppgraderinga" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Klarte ikkje å stadfesta identiteten åt somme pakkar" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Somme pakkar kunne ikkje verta godkjende. Dette kan vera eit kortvarig " "nettverksproblem, så du bør prøve om att seinare. Sjå under for lista over " "pakkar som ikkje kunne godkjennast." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Pakken '%s' er merkt for fjerning, men er i svartelista for fjerning." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Den nødvendige pakken «%s» er merkt for fjerning." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Freistar å installera den svartelista versjon '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Kan ikkje installera '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Klarte ikkje å gjetta på meta-pakke" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Systemet ditt inneheld ingen av pakkane ubuntu-desktop, kubuntu-desktop " "eller edubuntu-desktop og det var ikkje mogeleg å finna ut kva ubuntu-" "versjon du brukar.\n" "Installer ein av desse pakkane ved å bruka synaptic eller apt-get før du " "fortset." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Les mellomlager" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Klarte ikkje å få einerett" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Dette tyder vanlegvis på at eit anna pakkehandsamingsprogram (slik som apt-" "get eller aptitude) køyrer. Avslutt det programmet først." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Å oppgradera over fjerntilkobling er ikkje støtta" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Du køyrer oppgraderinga over ei ssh-tilkopling med grensesnitt som ikkje " "støttar dette. Freist ei oppgradering i tekstmodus med 'do-release-" "upgrade'.\n" "\n" "Oppgraderinga vil no avbrytast. Prøv utan ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Forsett køyringa under SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Denne økta køyrer over ssh. Det er ikkje tilrådd å oppgradera på denne " "måten, sia systemet vanskeleg let seg retta opp att ved feil.\n" "\n" "Viss du held fram, vil ei ekstra ssh-teneste bli starta på port '%s'.\n" "Ønskjer du å halda fram?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Startar endå ein sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "For å gjera gjenoppretting etter ein systemfeil lettare, vil ein ekstra sshd " "verta starta på port '%s'. Dersom noko går gale med ssh-en som køyrer, kan " "du framleis kopla til den nye.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Viss du sit bak ein brannmur, må du kanskje opna denne porten mellombels. " "Sia dette er potensielt farleg, vert det ikkje gjort automatisk. Du kan opna " "porten med t.d. \n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Klarte ikkje å oppgradera" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Å oppgradera frå «%s» til «%s» er ikkje støtta av dette verktøyet." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandkasseoppsett var mislukka" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Klarte ikkje å oppretta sandkassemiljøet." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandkassemodus" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Python-installasjonen din er øydelagd. Den symbolske lenkja " "«/usr/bin/python» må reparerast." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pakken «debsig-verify» er installert" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Oppgraderinga kan ikkje halda fram med den pakken installert.\n" "Fjern han med «synaptic» eller «apt-get remove debsig-verify» fyrst og køyr " "oppdateringa om att." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Inkluder dei siste oppdateringane frå Internett?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Oppgraderingsystemet kan bruka internett til å installera dei nyaste " "oppdateringane under oppgraderinga. Har du internettsamband er dette sterkt " "tilrådd.\n" "\n" "Oppgraderinga vil ta lenger tid, men systemet vil vera heilt oppdatert når " "oppgraderinga er ferdig. Du kan velja ikkje å gjera dette, men du bør " "installera dei siste oppdateringane så fort som mogleg etter oppgraderinga.\n" "Svarar du «nei» her, vert ikkje nettet brukt i det heile." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "deaktivert under oppgradering til %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Fann ikkje noko gyldig spegl" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Det vart ikkje funne tenarar for oppgradering i arkivinformasjonen din. " "Dette kan skje om du køyrer ein intern tenar eller viss tenarlista er " "utdatert.\n" "\n" "Vil du skriva om «sources.list»? Om du vel «Ja» her, så vert alle " "oppføringane frå «%s» til «%s» oppdaterte. Vel du «Nei», vert oppdateringa " "avbroten." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Vil du oppretta standardkjelder?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Ingen gyldige oppføringar for «%s» vart funne i «sources.list».\n" "\n" "Skal standardoppføringar for «%s» leggjast til? Vel du «Nei», vert " "oppgraderinga avbroten." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Ugyldig arkivinformasjon" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Tredjepartskjelder er deaktiverte" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Somme tredjeparts pakkekjelder verkar ikkje lenger. Du kan halda fram med å " "bruka dei etter oppdateringa gjennom «Eigenskapar for programvare» eller med " "Synaptic." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pakke i dårleg stand" msgstr[1] "Pakkar i dårleg stand" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Pakken «%s» er ufullstendig og må installerast på nytt, men ingen av dei " "nødvendige arkiva vart funne. Installer pakken på nytt manuelt, eller fjern " "han frå systemet." msgstr[1] "" "Pakkane «%s» er ufullstendige og må installerast på nytt, men ingen av dei " "nødvendige arkiva vart funne. Installer pakkane på nytt manuelt, eller fjern " "dei frå systemet." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Feil under oppdatering" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Eit problem oppstod under oppdateringa. Dette er vanlegvis ei form for " "nettverksproblem. Sjekk nettverkstilkoplinga di og prøv om att." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Ikkje nok ledig diskplass" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Oppgraderinga vart avbroten. Det trengst totalt %s ledig plass på disken " "«%s». Frigjer minst %s diskplass på «%s». Tøm papirkorga og fjern " "mellombelse pakkar frå tidlegare installasjonar ved hjelp av «sudo apt-get " "clean»." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Reknar ut endringane" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Vil du starta oppdateringa?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Oppgradering avbroten" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Oppgraderinga vil no bli avbroten, og det opphavlege systemet vil verta " "atterreist. Du kan venda tilbake til oppgraderinga når som helst." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Klarte ikkje å lasta ned oppgraderingane" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Oppgraderinga vart avbroten. Kontroller internettilkoplinga eller " "installasjonsmediet og prøv på nytt. Filene som er lasta ned så langt er " "tekne vare på." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Feil under innsending" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Gjenopprettar systemet til sin opphavlege tilstand" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Klarte ikkje å installera oppgraderingane" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Oppgraderinga vart avbroten. Systemet ditt kan vera ubrukeleg. Ei " "gjenoppretting vert no køyrd (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Oppgraderinga vart avbroten. Kontroller internett-tilkoplinga eller " "installasjonsmediet og prøv på nytt. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Ønskjer du å fjerna utdaterte pakkar?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Ta vare på" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Fjern" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Eit problem oppstod under oppryddinga. Sjå meldinga under for meir " "informasjon. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Nødvendige avhengnader er ikkje installerte" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Den nødvendige avhengnaden \"%s\" er ikkje installert. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Sjekkar pakkehandsamaren" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Klarte ikkje å førebu oppgraderinga" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Klarte ikkje å lasta ned oppgraderingskrava" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Oppdaterer informasjon om arkivet" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Klarte ikkje å leggja til CD-en" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Beklagar, å leggja til CD-en var mislukka." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Ugyldig pakkeinformasjon" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Hentar" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Oppgraderer" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Oppgradering fullført" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Oppgraderinga er ferdig, men nokre feil dukka opp under prosessen." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Søkjer etter utdatert programvare" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Systemoppgraderinga er fullført." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Delvis oppgradering er ferdig." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Klarte ikkje å finna versjonsnotata" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Tenaren kan vera overbelasta. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Klarte ikkje å lasta ned versjonsnotata" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Sjekk internettilkoplinga di." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Klarte ikkje å køyra oppgraderingsverktøyet" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Signaturen til oppgraderingsvertøyet" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Oppgraderingsvertøy" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Klarte ikkje å henta" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Klarte ikkje å henta oppgraderinga. Det kan vera eit nettverksproblem. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Å stadfesta identiteten mislukkast" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Klarte ikkje å stadfesta identiteten til oppgraderinga. Det kan vere feil " "med nettverket eller tenaren. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Mislukkast i å pakka ut" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Klarte ikkje å pakka ut oppgraderinga. Det kan vera eit problem med " "netverket eller tenaren. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Verifiseringsfeil" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Å verifisera oppgraderinga mislukkast. Det kan vera ein feil med nettverket " "eller tenaren. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Klarte ikkje å køyra oppgradering" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Dette skjer vanlegvis i system der mappa /tmp er montert med køyreløyve. " "Monter på nytt utan køyreløyve og køyr oppgraderinga på nytt." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Feilmeldinga er «%s»." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Oppgrader" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Versjonsnotat" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Lastar ned ekstra pakkefiler..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Fil %s av %s, %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Fil %s av %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Sett '%s' i stasjonen '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Medieendring" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "«evms» i bruk" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Systemet ditt brukar «evms» for å handsama dataområde i «/proc/mounts». " "«evms»-programvaren er ikkje lenger støtta, slå henne av og køyr " "oppgraderinga på nytt." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Å oppgradera kan redusera skrivebordseffekter, samt ytinga i spel og andre " "grafikkintensive program." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Datamaskina brukar NVIDIA «nvidia»-grafikkdrivaren. Ingen tilgjengelege " "versjonar av denne drivaren verkar med skjermkortet ditt i Ubuntu 10.04 LTS. " "\n" "\n" "Vil du halda fram?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Datamaskina brukar AMD «fglrx»-grafikkdrivaren. Ingen tilgjengelege " "versjonar av denne drivaren verkar med maskinvaren din i Ubuntu 10.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Ikkje ein i686-prosessor" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Systemet brukar ein i586-prosessor, eller ein prosessor som ikkje har «cmov»-" "utvidinga. Alle pakkane krev minimum i686-arkitektur. Det er ikkje mogleg å " "oppgradera systemet ditt til den nyaste Ubuntu-utgjevinga med den noverande " "maskinvaren." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Ingen ARMv6-prosessor" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Systemet brukar ein ARM-prosessor som er eldre enn ARMv6-arkitekturen. Alle " "pakkane i karmic krev minimum ARMv6. Det er ikkje mogleg å oppgradera " "systemet ditt til den nyaste Ubuntu-utgjevinga med den noverande maskinvaren." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Ingen oppstartsprogram (init) er tilgjengelege" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Systemet ditt ser ut til å vera i eit virtualisert miljø utan " "oppstartsprogram (init), til dømes Linux-VServer. Ubuntu 10.04 LTS fungerer " "ikkje i slike miljø, og krev ei oppdatering av innstillingane i den " "virtuelle maskina først.\n" "\n" "Er du sikker på at du vil halda fram?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandkasseoppgradering ved bruk av aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Bruk den oppgjevne stien til å søkja etter ei CD-plate med pakkar som kan " "oppgraderast" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Bruk eit grafisk grensesnitt. Tilgjengelege er: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*FORELDA* dette valet vil verta ignorert" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Gjennomfør berre ei delevis oppgradering (inga omskriving av sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Skru av GNU-skjermstøtte" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Vel datamappe" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Ferdig med å henta" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Hentar fil %li av %li ved %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Omtrent %s igjen" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Hentar fil %li av %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Utfører endringar" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problem med avhengnader – set ikkje opp pakken" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Kunne ikkje installere '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Oppgraderinga vil halda fram, men pakken «%s» vil kanskje ikkje fungera. " "Vurder å senda inn ei feilmelding om dette." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Vil du erstatta den egendefinerte oppsettsfila\n" "\"%s\"?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Du vil mista forandringar du har gjort i denne konfigurasjonsfila om du vel " "å byte den ut med ein nyare versjon." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Kommandoen \"diff\" vart ikkje funnen" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ein kritisk feil oppstod" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapporter dette som ein feil (om du ikkje allereie har gjort det), og " "inkluder filene /var/log/dist-upgrade/main.log og /var/log/dist-" "upgrade/apt.log i rapporten. Oppgraderinga er avbroten.\n" "Den opphavlege sources.list er lagra i /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl + C trykt" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Dette vil avbryta operasjonen og kanskje setja systemet ditt i ein ubrukeleg " "tilstand. Er du sikker på at du vil gjera dette?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "For å hindra tap av data, bør du lukke alle program og dokument." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Ikkje lenger støtta av Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Nedgrader (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Fjern (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Ikkje lenger nødvendig (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Installer (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Oppgrader (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Vis forskjellar >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Skjul forskjellar" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Feil" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Lukk" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Syn terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Gøym terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informasjon" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detaljar" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Ikkje lenger støtta %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Fjern %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Fjern (vart installert automatisk) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Installer %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Oppgrader %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Omstart er nødvendig" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Start systemet på ny for å fullføra oppgraderinga" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Start på nytt no" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Vil du avbryte den køyrande oppgraderinga?\n" "\n" "Systemet kan verta ubrukeleg viss du avbryt oppgraderinga. Det er sterkt " "tilrådd å fullføra oppgraderinga." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Avbryt oppgradering?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dag" msgstr[1] "%li dagar" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li time" msgstr[1] "%li timar" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minutt" msgstr[1] "%li minutt" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekund" msgstr[1] "%li sekund" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Nedlastinga vil ta omlag %s med ei DSL-tilkopling på 1 Mbit og omlag %s med " "eit 56k-modem." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Denne nedlastinga vil ta ca. %s med tilkoplinga di. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Førebur oppgraderinga" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Hentar nye programvarekanalar" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Hentar nye programvarepakkar" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installerer oppgraderingane" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Ryddar opp" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d installert pakke er ikkje lenger støtta av Canonical. Du kan " "framleis få støtte frå fellesskapet." msgstr[1] "" "%(amount)d installerte pakkar er ikkje lenger støtta av Canonical. Du kan " "framleis få støtte frå fellesskapet." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d-pakka vil fjernast." msgstr[1] "%d pakkar vil fjernast." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d-pakka vil verta installert." msgstr[1] "%d pakker vil verta installerte." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d-pakka vil verta oppgradert." msgstr[1] "%d pakkar vil verta oppgraderte." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Du må laste ned totalt %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Det er ingen oppgraderingar tilgjengelege for ditt system. Oppgraderinga vil " "no verta avbroten." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Omstart er nødvendig" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Oppgraderinga er ikkje fullført og ein omstart er nødvendig. Vil du gjera " "dette no?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Rapporter dette som ein feil og inkluder filene /var/log/dist-" "upgrade/main.log og /var/log/dist-upgrade/apt.log i rapporten. Oppgraderinga " "er avbroten. \n" "Den opphavlege sources.list er lagra i /etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Avbryt" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Degradert:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Trykk Enter for å halda fram" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Hald fram [jN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detaljar [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "j" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Ikkje lenger støtta: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Fjern %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Installer: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Oppgrader %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Hald fram [Jn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "For å fullføra oppgraderinga, er ein omstart av datamaskina nødvendig.\n" "Dersom du svarar 'j', vil datamaskinen starta på nytt." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Lastar ned fil %(current)li av %(total)li med %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Lastar ned fila %(current)li av %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Syn framdrift for enkeltfiler" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Avbryt oppgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Forsett oppgraderinga" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Vil du avbryta oppgraderinga?\n" "Systemet kan bli ubrukeleg om du avbryt oppgraderinga. Du er oppmoda på det " "sterkaste å forsetja oppgraderinga." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Start oppgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Erstatt" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Skilnad mellom filene" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Rapporter ein feil" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Hald fram" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Start oppgraderinga?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Start systemet på nytt for å fullføra oppgraderinga" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Distribusjonsoppgradering" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Endrar kanalene for programvare" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Startar systemet på nytt" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Oppgrader" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Ein ny versjon av Ubuntu er tilgjengeleg. Vil du oppgradera?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Ikkje oppgrader" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Spør meg seinare" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Oppgrader no" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Du har takka nei til å oppgradera til eit nytt Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Syn versjonen og avslutt" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Mappe som inneheld datafilene" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Køyr vald grenseflate" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Køyrer delvis oppgradering" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Lastar ned oppgraderingverktøyet" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Sjekk om ei oppgradering til den siste utviklarversjonen er mogeleg" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Forsøk å oppgradera til den nyaste utgjevinga ved å bruka " "oppgraderingsverktøyet frå $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Køyr i ein spesiell oppgraderingsmodus.\n" "No vert 'desktop' støtta for oppgradering av vanlege arbeidsstasjonar, og " "'server' for tenarsystem." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Test oppgraderinga i ei aufs-sandkasse" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Berre sjekk om ei ny distribusjonsutgjeving er tilgjengeleg, og returner " "resultatet via avsluttingskoden." #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Di utgåve av Ubuntu er ikkje lenger støtta." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "For informasjon om oppgradering, vitj:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Fann ingen nye utgjevingar" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Å oppgradere til ny utgåve er ikkje mogleg akkurat no" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Klarte ikkje å oppgradera til den nye versjonen akkurat no. Prøv på nytt " "seinare. Tenaren svarte: «%s»" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Ei ny utgjeving, «%s», er tilgjengeleg." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Køyr «do-release-upgrade» for å oppgradera til henne." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Oppgradering tilgjengeleg: Ubuntu %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Du har takka nei til å oppgradera åt Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/fr_CA.po0000644000000000000000000020200612431225715015323 0ustar # French (Canada) translation for ubuntu-release-upgrader # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 # This file is distributed under the same license as the ubuntu-release-upgrader package. # FIRST AUTHOR , 2014. # msgid "" msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2014-02-03 16:28+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (Canada) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Serveur pour %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Serveur principal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Serveurs personnalisés" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Imposible de calculer une entrée de sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Impossible de localiser les fichiers des paquets. Ceci n'est peut-être pas " "un disque Ubuntu ou l'architecture est erronée." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Échec lors de l'ajout du CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Il y a eu une erreur lors de l'ajout du CD et la mise à niveau va être " "interrompue. Veuillez rapporter ceci comme bogue s'il s'agit d'un CD Ubuntu " "valide.\n" "\n" "Le message d'erreur était :\n" "« %s »" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Enlever le paquet en mauvais état" msgstr[1] "Enlever les paquets en mauvais état" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Le paquet « %s » est dans un état incompatible et doit être réinstallé, mais " "aucune archive n'a été trouvée pour lui. Voulez-vous enlever ce paquet " "maintenant pour continuer?" msgstr[1] "" "Les paquets « %s » sont dans un état incompatible et doivent être " "réinstallés, mais aucune archive n'a été trouvée pour eux. Voulez-vous " "enlever ces paquets maintenant pour continuer?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Le serveur est peut-être surchargé" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paquets brisés" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Votre système contient des paquets brisés qui n'ont pas pu être réparés avec " "ce logiciel. Veuillez d'abord les réparer avec Synaptic ou apt-get avant de " "continuer." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Ceci semble être un problème passager, veuillez ressayer plus tard." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Si rien de tout cela ne s'applique, veuillez rapporter ce bogue en utilisant " "la commande « ubuntu-bug ubuntu-release-upgrader-core » dans un terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Impossible de calculer la mise à niveau" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Il n'était pas possible d'authentifier certains paquets. Ceci peut être un " "problème réseau passager. Vous pourriez ressayer plus tard. Voyez ci-dessous " "une liste des paquets non authentifiés." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Le paquet « %s » est marqué pour suppression mais il est dans la liste " "noire des suppressions." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Le paquet essentiel « %s » est marqué pour suppression." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" "Tentative d'installation de la version « %s » se trouvant dans la liste noire" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Impossible d'installer « %s »" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Il était impossible d'installer un paquet exigé. Veuillez rapporter ceci " "comme bogue en utilisant « ubuntu-bug ubuntu-release-upgrader-core » dans un " "terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Impossible de deviner le méta-paquet" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Lecture du cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Impossible d'obtenir un verrou exclusif" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Habituellement, ceci veut dire qu'une autre application de gestion de " "paquets (telle que apt-get ou aptitude) tourne déjà. Veuillez d'abord fermer " "cette application." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "La mise à niveau par connexion à distance n'est pas prise en charge" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Vous effectuez la mise à niveau à travers une connexion à distance SSH avec " "un frontal qui ne le prend pas en charge. Veuillez essayer une mise à niveau " "en mode texte avec « do-release-upgrade ».\n" "\n" "La mise à niveau va maintenant s'interrompre. Veuillez essayer sans SSH." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Continuer l'exécution sous SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Cette session semble tourner sous SSH. Il n'est présentement pas recommandé " "d'effectuer une mise à niveau à travers SSH car en cas d'échec, il est plus " "difficile de récupérer.\n" "\n" "Si vous continuez, un démon SSH supplémentaire va être démarré sur le port « " "%s ».\n" "Voulez-vous continuer?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Démarrage du sshd supplémentaire" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Pour rendre la récupération en cas d'échec plus facile, un sshd " "supplémentaire sera démarré sur le port « %s ». Si quelque chose allait mal " "avec le SSH en cours, vous pourriez toujours vous connecter avec le " "supplémentaire.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Si vous exécutez un coupe-feu, vous aurez peut-être à ouvrir ce port " "temporairement. Comme ceci peut représenter un danger, ce n'est pas fait " "automatiquement. Vous pouvez par ex. ouvrir le port avec :\n" "« %s »" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Mise à niveau impossible" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Une mise à niveau de « %s » vers « %s » n'est pas prise en charge avec cet " "outil." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Échec lors de la configuration du bac à sable" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Il n'a pas été possible de créer l'environnment en bac à sable" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Mode en bac à sable" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Cette mise à niveau est tourne en mode bac à sable (test). Tous les " "changements sont écrits vers « %s » et seront perdus au prochain " "redémarrage.\n" "*Aucun* changement écrit dans un répertoire système entre maintenant et le " "prochain redémarrage n'est permanent." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Votre installation de Python est corrompue. Veuillez corriger le lien " "symbolique « /usr/bin/python »." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Le paquet « debsig-verify » est installé" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "La mise à niveau ne peut pas continuer si ce paquet est installé.\n" "Veuillez l'enlever avec synaptic ou « apt-get remove debsig-verify », puis " "exécuter la mise à jour de nouveau." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Impossible d'écrire dans « %s »" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Il est impossible d'écrire dans le dossier « %s » sur votre système. La mise " "à niveau ne peut pas continuer.\n" "Veuillez d'abord vous assurer que le répertoire système est accessible en " "écriture." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Inclure les dernières mises à jour depuis Internet?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Le système de mise à niveau peut utiliser Internet pour télécharger " "automatiquement les dernières mises à jour et les installer durant la mise à " "niveau. Si vous avez une connexion réseau, ceci est fortement recommandé.\n" "\n" "La mise à niveau durera plus longtemps, mais une fois terminée, votre " "système sera totalement à jour. Vous pouvez choisir de ne pas le faire, mais " "vous devriez installer les dernières mises à jour peu après la mise à " "niveau.\n" "Si vous répondez « non » ici, le réseau n'est pas du tout utilisé." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "désactivé durant la mise à niveau vers %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Aucun miroir valide trouvé" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Générer les sources par défaut?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Après analyse de votre « sources.list», aucune entrée valide n'a été trouvée " "pour « %s ».\n" "\n" "Les entrées par défaut pour « %s » devraient-elles être ajoutées? Si vous " "choisissez « Non », la mise à niveau sera annulée." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Les Informations de dépôt sont invalides" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "La mise à niveau des informations de dépôt a donnée un fichier invalide. Un " "processus de rapport de bogue va être lancé." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Les sources tierces sont désactivées" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Certaines entrées tierces de votre sources.list ont été désactivées. Vous " "pouvez les réactiver après la mise à niveau avec l'outil « Logiciels & mises " "à jour » ou avec votre gestionnaire de paquets." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paquet dans un état incompatible" msgstr[1] "Paquets dans un état incompatible" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Le paquet « %s » est dans un état incompatible et doit être réinstallé, mais " "aucune archive n'a pu être trouvée pour lui. Veuillez réinstaller le paquet " "manuellement ou l'enlever de votre système.." msgstr[1] "" "Les paquets « %s » sont dans un état incompatible et doivent être " "réinstallés, mais aucune archive n'a pu être trouvée pour eux. Veuillez " "réinstaller les paquets manuellement ou les enlever de votre système.." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Erreur pendant la mise à jour" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Un problème est apparu pendant la mise à jour. C'est habituellement quelque " "problème de réseau. Veuillez vérifier votre connexion réseau et ressayer." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "L'espace disque libre est insuffisant" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "La mise à niveau s'est interrompue. La mise à niveau a besoin d'un espace " "libre de %s sur le disque « %s ». Veuillez libérer au moins %s d'espace " "disque supplémentaire sur « %s ». Videz votre corbeille et enlevez les " "paquets temporaires d'installations précédentes en lançant « sudo apt-get " "clean »." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Calcul des changements" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à niveau?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Mise à niveau annulée" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "La mise à niveau va maintenant être annulée et l’état original du système " "sera restauré. Vous pouvez reprendre la mise à niveau plus tard." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Impossible de télécharger les mises à niveau" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "La mise à niveau a été interrompue. Veuillez vérifier votre connexion " "internet ou votre support d'installation et ressayez. Tous les fichiers déjà " "téléchargés ont été sauvegardés." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Erreur pendant la validation" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Restauration de l'état original du système" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Impossible d'installer les mises à niveau" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "La mise à niveau a été interrompue. Votre système pourrait être dans un état " "inutilisable. Une récupération sera lancée maintenant (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Veuillez rapporter ce bogue dans un navigateur à " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug et " "joindre les fichiers dans /var/log/dist-upgrade/ au rapport de bogue.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "La mise à niveau a été interrompue. Veuillez vérifier votre connexion " "Internet ou le support d'installation et ressayer. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Enlever les paquets obsolètes?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Garder" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Enlever" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Un problème s'est produit pendant le nettoyage. Veuillez lire le message ci-" "dessous pour plus d'informations. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Dépendance exigée non installée" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "La dépendance exigée « %s » n'est pas installée. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Vérification du gestionnaire de paquets" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Échec lors de la préparation de la mise à niveau" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "La préparation du système pour la mise à niveau a échoué et un processus de " "rapport de bogue est en cours." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Échec lors de l'obtention des prérequis de la mise à niveau" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Le système n'a pas été capable d'obtenir les prérequis pour la mise à " "niveau. La mise à niveau va maintenant s'interrompre et restaurer l'état " "d'origine du système.\n" "De plus, un processus de rapport de bogue est en cours." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Mise à jour des informations sur les dépôts" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Échec lors de l'ajout du cédérom" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Désolé, l'ajout du cédérom n'a pas réussi." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Informations de paquets invalides" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Après la mise à jour de vos informations de paquets, le paquet essentiel « " "%s » n'a pas pu être trouvé. Vous n'avez peut-être pas de miroir officiel " "dans vos sources de logiciels, ou le miroir que vous utilisez reçoit une " "charge excessive. Voir /etc/apt/sources.list pour la liste actuelle de vos " "sources de logiciels.\n" "Dans le cas d'un miroir surchargé, vous pourriez ressayer la mise à niveau " "plus tard." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Récupération" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Mise à niveau" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Mise à niveau terminée" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "La mise à niveau est terminée, mais il y a eu des erreurs pendant le " "processus de mise à niveau." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Recherche de logiciels obsolètes" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "La mise à niveau du système est terminée." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "La mise à niveau partielle est terminée." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Impossible de trouver les notes de mise à jour" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Le serveur est peut-être surchargé. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Impossible de télécharger les notes de mise à jour" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Veuillez vérifier votre connexion Internet." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "authentifier « %(file)s » avec « %(signature)s » " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "extraction de « %s »" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Impossible d'exécuter l'outil de mise à niveau" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Ceci est probablement un bogue dans l'outil de mise à niveau. Veuillez le " "rapporter comme un bogue en utilisant la commande « ubuntu-bug ubuntu-" "release-upgrader-core »." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Signature de l'outil de mise à niveau" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Outil de mise à niveau" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Récupération impossible" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "La récupération de la mise à niveau à échoué. Il y a peut-être un problème " "de réseau. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Échec lors de l'authentification" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "L'authentification de la mise à niveau a échoué. Il y a peut-être un " "problème avec le réseau ou avec le serveur. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Échec lors de l'extraction" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "L'extraction de la mise à niveau a échoué. Il y a peut-être un problème avec " "le réseau ou avec le serveur. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Échec lors de la vérification" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "La vérification de la mise à niveau a échoué. Il y a peut-être un problème " "avec le réseau ou avec le serveur. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Impossible d'exécuter la mise à niveau" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Ceci est habituellement causé par un système ou /tmp est monté noexec. " "Veuillez remonter sans noexec et exécuter la mise à niveau à nouveau." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Le message d'erreur est « %s »." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Mettre à niveau" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Notes de mise à jour" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Téléchargement des fichiers de paquets supplémentaires..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Fichier %s sur %s à %s o/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Fichier %s sur %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Veuillez insérer « %s » dans le lecteur « %s »" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Changement de support" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "L'exécution de l'environnement de bureau « unity » n'est pas complètement " "prise en charge par votre matériel graphique. Vous pourriez finir avec un " "environnement très lent après la mise à niveau. Notre conseil est de garder " "la version LTS pour l'instant. Pour plus d'informations, voir " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Voulez-vous " "quand même poursuivre la mise à niveau?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Votre matériel graphique n'est peut-être pas complètement prise en charge " "par Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "La prise en charge de votre matériel graphique Intel est limitée dans Ubuntu " "12.04 LTS et vous pourriez rencontrer des problèmes après la mise à niveau. " "Pour plus d'informations, voir " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Voulez-vous " "continuer la mise à niveau?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "La mise à niveau pourrait diminuer les effets du bureau, la performance dans " "les jeux et les autres programmes gourmands au niveau graphique." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Cet ordinateur utilise actuellement le pilote graphique AMD « fglrx ». " "Aucune version de ce pilote n'est disponible qui fonctionne avec Ubuntu " "10.04 LTS.\n" "\n" "Voulez-vous continuer?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Pas d'UCT i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Votre système utilise une UCT i586 ou une UCT qui n'a pas l'extension « cmov " "]». Tous les paquets ont été compilés avec des optimisations exigeant que " "l'architecture minimale soit i686. Il est impossible de mettre à niveau " "votre système vers une nouvelle version d'Ubuntu avec ce matériel." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Pas d'UCT ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Votre système utilise une UCT ARM qui est plus ancienne que l'architecture " "ARMv6. Tous les paquets de karmic ont été construit avec des optimisations " "exigeant que l'architecture minimale soit ARMv6. Il est impossible de mettre " "à niveau votre système vers une nouvelle version d'Ubuntu avec ce matériel." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Aucun init de disponible" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Il semble que votre système soit un environnement virtualisé sans démon " "init, par ex. Linux-VServer. Ubuntu 10.04 LTS ne peut pas fonctionner dans " "ce type d'environnement, exigeant d'abord une mise à jour de la " "configuration de votre machine virtuelle.\n" "\n" "Voulez-vous vraiment poursuivre?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Mise à niveau dans un bac à sable en utilisant aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Utiliser le chemin donné pour rechercher un cédérom contenant des paquets à " "mettre à niveau" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Utiliser un frontal. Actuellement disponibles : \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*OBSOLÈTE* cette option sera ignorée" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Effectuer seulement une mise à niveau partielle (sources.list ne sera pas " "réécrit)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Désactiver la prise en charge d'écran GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Définir le dossier des données" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Récupération terminée" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Récupération du fichier %li sur %li à %s o/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Environ %s restant" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Téléchargement du fichier %li sur %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Application des changements" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problèmes de dépendances - laissé non configuré" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Impossible d'installer « %s »" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "La mise à niveau va continuer mais le paquet « %s » pourrait ne pas être " "dans un état fonctionnel. Veuillez penser à envoyer un rapport de bogue à ce " "sujet.." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Remplacer le fichier de configuration personnalisé\n" "« %s »?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Vous perdrez tout changement fait à ce fichier de configuration si vous " "choisissez de le remplacer par une nouvelle version." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "La commande « diff » n'a pas être trouvée" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Une erreur fatale est survenue" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Veuillez rapporter ceci comme un bogue (si vous ne l'avez pas déjà fait) et " "inclure les fichiers /var/log/dist-upgrade/main.log et /var/log/dist-" "upgrade/apt.log à votre rapport. La mise a niveau a été interrompue.\n" "Votre fichier souce.list original a été enregistré dans " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Vous avez pesé sur Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Ceci interrompra l'opération et pourrait laisser le système dans un état " "inutilisable . Êtes-vous sûr de vouloir le faire?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pour prévenir la perte de données, veuillez fermer toutes les applications " "et documents ouverts." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "N'est plus pris en charge par Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Mise à niveau inférieur (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Enlever (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "N'est plus nécessaire (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Installer (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Mettre à jour (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Afficher les différences >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Cacher les différences" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Erreur" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Fermer" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Montrer le terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Cacher le terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informations" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Détails" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "N'est plus pris en charge (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Enlever %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Enlever (avait été installé automatiquement) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Installer %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Mettre à niveau %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Redémarrage exigé" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Redémarrer le système pour terminer la mise à niveau" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Redémarrer maintenant" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Annuler la mise à niveau en cours?\n" "\n" "Le système pourrait être dans un état inutilisable si vous annulez la mise à " "niveau. Il vous est fortement conseillé de reprendre le mise à jour.." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "_Annuler la mise à niveau?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li jour" msgstr[1] "%li jours" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li heure" msgstr[1] "%li heures" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minute" msgstr[1] "%li minutes" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li seconde" msgstr[1] "%li secondes" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Ce téléchargement prendra environ %s avec une connexion DSL d'1 Mbit et " "environ %s avec un modem 56 k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Ce téléchargement prendra environ %s avec votre connexion. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Préparation de la mise à niveau" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Obtention de nouveaux canaux logiciels" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Obtention de nouveaux paquets" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installation des mises à niveau" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Nettoyage" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d paquet installé n'est plus pris en charge par Canonical. Vous " "pouvez encore obtenir du soutien de la communauté." msgstr[1] "" "%(amount)d paquets installés ne sont plus pris en charge par Canonical. Vous " "pouvez encore obtenir du soutien de la communauté." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paquet va être enlevé." msgstr[1] "%d paquet vont être enlevés." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nouveau paquet va être installé." msgstr[1] "%d nouveaux paquets vont être installés." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paquet va être mis à niveau." msgstr[1] "%d paquets vont être mis à niveau." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Vous devez télécharger un total de %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Installer la mise à niveau peut prendre plusieurs heures. Une fois le " "téléchargement terminé, le processus ne peut pas être annulé." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Récupérer et installer la mise niveau peut prendre plusieurs heures. Une " "fois le téléchargement terminé, le processus ne peut pas être annulé." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Enlever les paquets peut prendre plusieurs heures. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Les logiciels sur cet ordinateur sont à jour." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Il n'y a aucune mise à niveau disponible pour votre système. La mise à " "niveau va maintenant être annulée." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Redémarrage nécessaire" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "La mise à jour est terminée et un redémarrage est nécessaire. Voulez-vous le " "faire maintenant?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Veuillez rapporter ce problème comme un bogue et inclure les fichiers " "/var/log/dist-upgrade/main.log et /var/log/dist-upgrade/apt.log à votre " "rapport. La mise a niveau a été interrompue.\n" "Votre souce.list original a été enregistré dans " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Interruption" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Rétrogradé :\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Veuillez peser sur [Entrée] pour continuer" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "_Continuer [oN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Détails [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "o" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "N'est plus pris en charge : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Supprimer : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Installer : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Mettre à niveau : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continuer [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Pour finir la mise à niveau, un redémarrage est nécessaire.\n" "Si vous choisissez « o », le système sera redémarré." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Téléchargement du fichier %(current)li sur %(total)li à %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Téléchargement du fichier %(current)li sur %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Afficher l'avancement de chaque fichier" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Annuler la mise à niveau" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Reprendre la mise à niveau" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Annuler la mise à niveau en cours?\n" "\n" "Le système pourrait être dans un état inutilisable si vous annulez la mise à " "niveau. Il vous est fortement conseillé de reprendre la mise à jour." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Démarrer la mise à jour" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Remplacer" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Différence entre les fichiers" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Rapporter un bogue" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continuer" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Démarrer la mise à niveau?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Redémarrez le système pour terminer la mise à niveau\n" "\n" "Veuillez enregistrer vos travaux avant de poursuivre." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Mise à niveau de la distribution" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Définition des nouveaux canaux logiciels" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Redémarrage de l'ordinateur" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "Mettre à _niveau" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Une nouvelle version d'Ubuntu est disponible. Voudriez-vous mettre à " "niveau?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Ne pas mettre à niveau" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Me le demander plus tard" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Oui, mettre à niveau maintenant" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Vous avez refusé de mettre à niveau vers le nouvel Ubuntu." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Vous pouvez mettre à niveau ultérieurement en ouvrant le gestionnaire de " "mises à jour et en cliquant sur « Mettre à niveau »." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Effectuer une mise à niveau de version" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Pour mettre à niveau Ubuntu, vous devez vous authentifier." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Effectuer une mise à niveau partielle" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" "Pour effectuer une mise à niveau partielle, vous devez vous authentifier.." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Montrer la version et quitter" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Répertoire contenant les fichiers de données" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Lancer le frontal spécifié" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Exécution de la mise à niveau partielle" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Téléchargement de l'outil de mise à niveau de version" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Vérifier s'il est possible de mettre à niveau vers la dernière version de " "dév." #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Essayer de mettre à niveau vers la version la plus récente en utilisant " "l'outil de mise à niveau de $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Exécuter dans un mode spécial de mise à niveau.\n" "Présentement, sont pris en charge « desktop » pour les mises à niveau " "régulière d'un ordinateur de bureau et « server » pour les serveurs." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Tester la mise à niveau dans un bac à sable aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Vérifier seulement si une nouvelle distribution est disponible et afficher " "le résultat par le code de sortie" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Vérification de la disponibilité d'une nouvelle version d'Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Votre version d'Ubuntu n'est plus prise en charge." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Pour des informations sur la mise à niveau, veuillez visiter :\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Aucune nouvelle version n'a été trouvée" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "La mise à niveau de version est impossible pour l'instant." #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "La mise à niveau de version ne peut pas être effectuée présentement. " "Veuillez ressayer plus tard. Le serveur a retourné : « %s »" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "La nouvelle version « %s » est disponible." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Exécuter « do-release-upgrade » pour mettre à niveau." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "La mise à niveau vers Ubuntu %(version)s est disponible" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Vous avez refusé la mise à niveau vers Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Ajouter la sortie de débogage" ubuntu-release-upgrader-0.220.10/po/sc.po0000644000000000000000000013050212431225715014757 0ustar # Sardinian translation for update-manager # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Borealis \n" "Language-Team: Sardinian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n!=1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: sc\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server pro %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Server printzipale" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Server personalitzados" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Impossibile agatare files de pachetes. Forsis custu no est unu discu de " "Ubuntu, o est pro una architetura diferente." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Annanta de su CD no arrenèschida." #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" msgstr[1] "" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "" #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "" msgstr[1] "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "" #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "" msgstr[1] "" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/ChangeLog0000644000000000000000000001125112431225715015563 0ustar 2005-04-04 Michael Vogt * xh.po: added Xhosa translation 2005-04-04 Jorge Bernal 'Koke' * es.po: Updated Spanish translation. 2005-04-03 Adam Weinberger * en_CA.po: Updated Canadian English translation. 2005-04-03 Gabor Kelemen * hu.po: Hungarian translation updated. 2005-04-02 Adam Weinberger * en_CA.po: Updated Canadian English translation. 2005-04-02 Frank Arnold * de.po: Updated German translation. 2005-04-01 Steve Murphy * rw.po: Added Kinyarwanda translation. 2005-03-31 Jorge Bernal 'Koke' * es.po: Spanish translation updated. 2005-03-30 Gabor Kelemen * hu.po: Hungarian translation updated. 2005-03-30 Gabor Kelemen * hu.po: Hungarian translation updated. 2005-03-30 Michiel Sikkes * nl.po: Updated Dutch translation. 2005-03-30 Frank Arnold * de.po: Updated German translation. 2005-03-30 Ilkka Tuohela * fi.po: Updated Finnish translation, (translated by Timo Jyrinki). 2005-03-29 Adam Weinberger * en_CA.po: Updated Canadian English translation. 2005-03-29 Raphael Higino * pt_BR.po: Added Brazilian Portuguese translation. 2005-03-29 Gabor Kelemen * hu.po: Hungarian translation updated. 2005-03-28 Gabor Kelemen * hu.po: Hungarian translation updated. 2005-03-28 Martin Willemoes Hansen * da.po: Updated Danish translation. 2005-03-26 Christian Rose * sv.po: Updated Swedish translation. 2005-03-25 Michiel Sikkes * nl.po: Updated Dutch translation. 2005-03-25 Frank Arnold * de.po: Updated German translation. 2005-03-24 Adam Weinberger * en_CA.po: Updated Canadian English translation. 2005-03-24 Jorge Bernal * es.po: Updated spanish translation. 2005-03-24 Michiel Sikkes * ja.po: Added Japanese translation by Hiroyuki Ikezoe . 2005-03-24 Ilkka Tuohela * fi.po: Updated Finnish translation, (translated by Timo Jyrinki). 2005-03-23 Adam Weinberger * en_CA.po: Updated Canadian English translation. 2005-03-23 Michiel Sikkes * es.po: Updated Spanish translation by Jorge Bernal 2005-03-23 Frank Arnold * de.po: Updated German translation. 2005-03-22 Gabor Kelemen * hu.po: Hungarian translation added. 2005-03-22 Adam Weinberger * en_CA.po: Updated Canadian English translation. 2005-03-22 Frank Arnold * de.po: Updated German translation. 2005-03-21 Funda Wang * zh_CN.po: Added Simplified Chinese translation. 2005-03-21 Martin Willemoes Hansen * da.po: Updated Danish translation. 2005-03-21 Frank Arnold * de.po: Updated German translation. 2005-03-21 Adam Weinberger * en_CA.po: Added Canadian English translation. 2005-03-21 Christian Rose * update-manager.pot: Removed this file. It is a generated file that does not belong in CVS. * .cvsignore: Added this. * POTFILES.in: Added missing file, sorted, and added comment. * sv.po: Added Swedish translation. 2005-03-18 Martin Willemoes Hansen * da.po: Updated Danish translation. 2005-03-14 Martin Willemoes Hansen * da.po: Updated Danish translation. 2005-03-12 Martin Willemoes Hansen * da.po: Updated Danish translation. 2005-03-11 Michiel Sikkes * el.po: Added Greek translation by Kostas Papadimas 2005-03-03 Dan Damian * ro.po: Added Romanian translation. 2005-03-10 Zygmunt Krynicki * pl.po: Added Polish translation. 2005-02-13 Michiel Sikkes * nl.po: Added Dutch translation. * fr.po: Updated French translation by Jean Privat 2005-02-19 Martin Willemoes Hansen * da.po: Updated Danish translation. 2005-02-18 Martin Willemoes Hansen * da.po: Updated Danish translation. 2005-01-28 Michiel Sikkes * Added fr by Jean Privat 2004-10-25 Michiel Sikkes * Initial release. ubuntu-release-upgrader-0.220.10/po/bn.po0000644000000000000000000025222312431225715014756 0ustar # po/bn.po # Bengali translation for Shotwell # Copyright (C) 2009-2010 Yorba Foundation # This file is distributed under the GNU LGPL, version 2.1. # Ummey Salma , 2011. # Zenat Rahnuma , 2011. # Ayesha Akhtar , 2012. # Mahay Alam Khan , 2012. # Robin Mehdee , 2012. msgid "" msgstr "" "Project-Id-Version: shotwell-0.7.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Bengali \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: en\n" "X-Language: bn_BD\n" "X-Poedit-Language: Bengali\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s-এর জন্য সার্ভার" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "প্রধান সার্ভার" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "কাস্টম সার্ভারসমূহ" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "sources.list ভুক্তি গননা করা সম্ভব নয়" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "কোন প্যাকেজ ফাইল পাওয়া যায়নি, সম্ভবত এটি উবুন্টু ডিস্ক নয়, নাকি এটি ভুল " "আর্কিটেকচারের?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "সিডি যোগ করা সম্ভব হয়নি" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "সিডি যোগ করতে অসুবিধার কারণে আপডেট প্রক্রিয়া বন্ধ রাখা হয়েছে। এটি যদি সঠিক " "উবুন্টু সিডি হয়ে থাকে তাহলে একটি বাগ রিপোর্ট করুন। \n" "\n" "ত্রুটির বার্তাটি হল:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "খারাপ অবস্থায় থাকা প্যাকেজ সরাও" msgstr[1] "খারাপ অবস্থায় থাকা প্যাকেজগুলো সরাও" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "'%s'প্যাকেজটি অসঙ্গতিপূর্ণ অবস্থায় আছে এবং পুনরায় ইনস্টল করা প্রয়োজন, কিন্তু " "এর জন্য কোনো আর্কাইভ পাওয়া যায়নি। আপনি কি প্যাকেজটি অপসারন করে এগিয়ে যেতে " "চান?" msgstr[1] "" "'%s'প্যাকেজগুলো অসঙ্গতিপূর্ণ অবস্থায় আছে এবং পুনরায় ইনস্টল করা প্রয়োজন, " "কিন্তু এর জন্য কোনো আর্কাইভ পাওয়া যায়নি। আপনি কি প্যাকেজটি অপসারন করে এগিয়ে " "যেতে চান?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "সার্ভারে সম্ভবত অত্যাধিক চাপ পড়েছে" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "ভাঙা প্যাকেজসমূহ" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "আপনার সিস্টেমে এমন কিছু ভাঙ্গা (বা বিচ্ছিন্ন) প্যাকেজ আছে যা এই সফটওয়্যারের " "মাধ্যমে ঠিক করা সম্ভব না। দয়া করে সিনাপটিক বা apt-get ব্যবহার করে ঠিক করে " "অগ্রসর হোন।" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "আপগ্রেডের পরিমাণ নির্ণয় করার সময় সমাধান সম্ভব নয় এমন সমস্যা হয়েছে %s:\n" " এটা হতে পারে:\n" "*উবুন্টুর কোন প্রকাশিতব্য সংস্করণে আপগ্রেডের চেষ্টার জন্য\n" "*বর্তমান প্রকাশিতব্য সংস্করণে চালানোর জন্য\n" "*আনঅফিসিয়াল সফটওয়্যার প্যাকেজ চালানোর জন্য যা উবুন্টুর নয়।\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "এটি হয়তো একটি অস্থায়ী সমস্যা, অনুগ্রহ করে পরবর্তীতে আবার চেষ্টা করুন।" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "আপগ্রেডের পরিমাণ নির্ণয় করা যাচ্ছে না।" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "কিছু প্যাকেজের পরিচয় প্রমাণে ত্রুটি হয়েছে" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "কিছু প্যাকেজের পরিচয় প্রমাণ করা সম্ভব হয়নি। এটা হয়তো নেটওয়ার্কের অস্থায়ী কোন " "ত্রুটি। আপনি পরবর্তীতে আবার চেষ্টা করতে পারেন। পরিচয় অপ্রমাণিত প্যাকেজের " "তালিকার জন্য নিচে দেখুন।" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "'%s' প্যাকেজটিকে অপসারনের জন্য চিহ্নিত করা হয়েছে কিন্তু এটি অপসারনের জন্য " "কাল তালিকা ভুক্ত।" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "গুরুত্বপূর্ণ প্যাকেজ '%s' মুছে ফেলার জন্য চিহ্নিত করা হয়েছে।" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "কালো তালিকাভুক্ত সংস্করন '%s' ইনস্টলের চেষ্টা করা হচ্ছে" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' ইন্সটল করা যাচ্ছে না" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "meta-package অনুমান করা যাচ্ছ না" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "আপনার সিস্টেমে ubuntu-desktop, kubuntu-desktop, xubuntu-desktop কিংবা " "edubuntu-desktop প্যাকেজ পাওয়া যায় নি এবং আপনার চালানো উবুন্টুর ভার্সন " "সনাক্ত করা সম্ভব হয় নি।\n" " অনুগ্রহ করে প্রথমে উপরোল্লিখিত প্যাকেজগুলি synaptic কিংবা apt-get ব্যবহার " "করে ইন্সটল করুন।" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "cache পড়া হচ্ছে" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "exclusive লক পাওয়া যায়নি" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "এইটি সাধারণত বুঝায় যে অন্য একটি package management application (apt-get " "অথবা aptitude . .) ইতিমধ্যে চলছে। অনুগ্রহ করে ঔ অ্যাপলিকেশন বন্ধ করুন প্রথম।" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "দূরবর্তী সংযোগের মধ্যদিয়ে আপগ্রেড করা সমর্থিত নয়" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "আপনি আপগ্রেড সংস্করণটি দূরবর্তী ssh সংযোগের উপর চালাচ্ছেন যার ফ্রন্টএন্ড এটা " "সমর্থন করে না। অনুগ্রহ করে 'do-release-upgrade' দিয়ে টেক্সট মোড আপগ্রেড করার " "চেষ্টা করুন।\n" "\n" "আপগ্রেড এখন বাতিল করা হবে। অনুগ্রহ করে ssh ছাড়া চেষ্টা করুন।" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH এর অধীনে এগিয়ে যেতে চান?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "এই সেশনটি সম্ভবত ssh এর অধীনে চলছে। এই মুহূর্তে ssh এর উপর আপগ্রেড না " "চালানোর জন্য সুপারিশ করা যাচ্ছে কারণ তা ব্যর্থ হলে পুনরুদ্ধার করা কঠিন হয়ে " "যাবে।\n" "\n" "আপনি যদি চালিয়ে যান, '%s' পোর্টে একটি অতিরিক্ত ssh ডিমন আরম্ভ হবে।\n" "আপনি কি চালিয়ে যেতে চান?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "অতিরিক্ত sshd শুরু করা হচ্ছে" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "আপগ্রেড ব্যর্থ হলে পুনরুদ্ধার সহজ করার জন্য, '%s' পোর্টে অতিরিক্ত একটি sshd " "আরম্ভ হবে। ssh চালানোর সময় কোন সমস্যা দেখা দিলেও আপনি এটির সাথে সংযোগ করতে " "পারবেন।\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "আপনি যদি কোনো ফায়ারওয়াল চালান তবে আপনাকে অস্থায়ীভাবে এ পোর্ট বন্ধ করতে হবে। " "এটা কিছুটা বিপদজ্জনক কারণ এটা স্বয়ংক্রিয়ভাবে করা নেই। উদাহরণস্বরূপ, আপনি যা " "দিয়ে পোর্ট খুলতে পারেন:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "আপডেট করা সম্ভব নয়" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "'%s' হতে '%s' এ আপগ্রেড এই টুল দ্বারা সমর্থিত নয়।" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandbox সেটআপ ব্যর্থ" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "স্যান্ডবক্স এনভায়রনমেন্ট তৈরি করা সম্ভব হয়নি।" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox মোড" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "এই উন্নীতকরণে স্যান্ডবক্সের (পরীক্ষামূলক) মোড সচল করা হচ্ছে। '%s' তে সব " "পরিবর্তন লেখা হচ্ছে এবং পরবর্তী পুনরায় বুটে হারিয়ে যাবে।\n" "\n" "*No* এখন থেকে সিস্টেম ডিরেক্টরির লিখিত পরিবর্তন হবে যতক্ষন না পরবর্তী পুনরায় " "বুট স্থায়ী করা হবে।" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "আপনার python ইনস্টল ত্রুটিপূর্ণ। অনুগ্রহ করে '/usr/bin/python' সিমলিংকটি ঠিক " "করুন।" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "'debsig-verify' প্যাকেজটি ইন্সটল করা হয়েছে" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "ইনস্টলকৃত প্যাকেজে আপগ্রেড কাজ করছে না।\n" "অনুগ্রহ করে synaptic বা 'apt-get remove debsig-verify' ব্যবহার করে অপসারন " "করুন এরপর আপগ্রেড আবার চালান।" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "'%s' তে লেখা যাবেনা" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "আপনার সিস্টেমে সিস্টেম ডিরেক্টরি '%s' লেখা সম্ভব নয়। উন্নীতকরণ চালানো " "যাবেনা।\n" "অনুগ্রহ করে নিশ্চিত করুন সিস্টেম ডিরেক্টরি লিখনযোগ্য।" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "ইন্টারনেট থেকে সর্বশেষ হালনাগাদ অন্তর্ভূক্ত করতে চান?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "আপগ্রেড সিস্টেম সর্বশেষ হালনাগাদ স্বয়ংক্রিয়ভাবে ডাউনলোড করে আপগ্রেডের সময় " "ইনস্টল করার জন্য ইন্টারনেট ব্যবহার করতে পারে। আপনার কোন নেটওয়ার্ক সংযোগ " "থাকলে এটা জরুরীভাবে সুপারিশ করা যাচ্ছে।\n" "\n" "আপগ্রেড হতে সময় লাগবে, কিন্তু একবার এটি সম্পন্ন হয়ে গেলে, আপনার সিস্টেম " "সম্পূর্ণরূপে হালনাগাদকৃত হবে। আপনি হয়ত এখন এটা নাও করতে পারেন, কিন্তু " "আপগ্রেড করার পরই আপনাকে সর্বশেষ হালনাগাদসমূহ ইনস্টল করতে হবে।\n" "আপনি এখানে 'না' বললে, কোথাও নেটওয়ার্ক ব্যবহার করা হবে না।" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "%s তে আপগ্রেডে নিষ্ক্রিয়" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "কোন সঠিক মিরর পাওয়া যায় নি" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "আপনার রিপোজিটরির তথ্য স্ক্যান করার সময় আপগ্রেডের জন্য কোন মিরর খুঁজে পাওয়া " "যায়নি। আপনি অভ্যন্তরীণ মিরর ব্যবহার করলে অথবা মিররের তথ্যাবলী মেয়াদউত্তীর্ণ " "হয়ে থাকলে এমনটি হতে পারে।\n" "\n" "আপনি কি যেকোনভাবে আপনার 'sources.list' ফাইলটি পুনর্লিখন করতে চান? আপনি " "'হ্যাঁ' নির্বাচন করলে, সব '%s' ভুক্তিকে '%s' এ হালনাগাদ করা হবে।\n" "'না' নির্বাচন করা হলে আপগ্রেড বাতিল হয়ে যাবে।" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "ডিফল্ট sources তৈরি করে?" # snigdha #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "উৎস তালিকা স্ক্যান করে '%s' এর জন্য কোনো কার্যকরী এন্ট্রি পাওয়া যায়নি।\n" "\n" " '%s' এর জন্য পূর্বনির্ধারিত এন্ট্রিগুলো যোগ করে দেয়া উচিৎ? 'না' অপশন " "নির্বাচন করলে হালনাগাদকরণ প্রক্রিয়া বাতিল হয়ে যাবে।" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "রিপোজিটরির তথ্য সঠিক নয়" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "উন্নীতকরণ রিপোজিটরী তথ্য অকার্যকর ফাইলে পরিণত করা হয়েছে তাই বাগ প্রতিবেদন " "করার প্রক্রিয়া শুরু করা হচ্ছে।" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "তৃতীয় পার্টির উত্স নিষ্ক্রিয়" # snigdha #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "সোর্স.লিস্টে থার্ড পার্টির কিছু এন্ট্রি নিষ্ক্রয় করা আছে। প্যাকেজ ম্যানেজার " "বা 'সফট্ওয়্যার-প্রপার্টিজ' টুল এর সাহায্যে আপগ্রেড করে আপনি সেগুলোকে পুনরায় " "সক্রিয় করতে পারবেন।" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "অসঙ্গতিপূর্ন অবস্থায় প্যাকেজ" msgstr[1] "অসঙ্গতিপূর্ন অবস্থায় প্যাকেজ" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "প্যাকেজ '%s' অসঙ্গতিপূর্ণ অবস্থায় আছে এবং পুনরায় ইনস্টল করা প্রয়োজন, কিন্তু " "এর জন্য কোনো আর্কাইভ পাওয়া যায়নি। অনুগ্রহ করে প্যাকেজটি পুনরায় ইনস্টল করুন " "বা সিস্টেম থেকে ম্যানুয়ালি অপসারন করুন।" msgstr[1] "" "প্যাকেজ '%s' অসঙ্গতিপূর্ণ অবস্থায় আছে এবং পুনরায় ইনস্টল করা প্রয়োজন, কিন্তু " "এর জন্য কোনো আর্কাইভ পাওয়া যায়নি। অনুগ্রহ করে প্যাকেজ পুনরায় ইনস্টল করুন বা " "সিস্টেম থেকে ম্যানুয়ালি অপসারন করুন।" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "আপগ্রেড করার সময় সমস্যা" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "হালনাগাদ করার সময় একটি সমস্যা হয়েছে। সম্ভবত এটি কোনো নেটওয়ার্ক সমস্যা, " "অনুগ্রহ করে আপনার নেটওয়ার্ক সংযোগ পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন।" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "ডিস্কে যথেস্ট ফাঁকা জায়গা নেই" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "আপগ্রেড বন্ধ। আপগ্রেডের জন্য ডিস্কে '%s' সর্বমোট %s অব্যবহৃত জায়গা থাকা " "দরকার। অনুগ্রহ করে, '%s' এ %s পরিমান ডিস্কের জায়গা ফাঁকা করা উচিত। আপনার " "ট্র্যাশ ফাঁকা করুন এবং 'sudo apt-get clean' ব্যবহার করে অস্থায়দ প্যাকেজ " "অপসারণ।" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "পরিবর্তন হিসাব করা হচ্ছে" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "আপনি কি আপগ্রেড শুরু করতে চান?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "আপগ্রেড বাতিল করা হয়েছে" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "এখন আপগ্রেড বাতিল হয়ে যাবে এবং মূল সিস্টেম স্টের পুনরূদ্ধার হবে। আপনি পরে যে " "কোনো সময়ে আপগ্রেড বন্ধ করে দিতে পারেন।" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "আপগ্রেড ডাউনলোড করা যায় নি" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "উন্নীত করণ ব্যর্থ হয়েছে। অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ অথবা ইনস্টলেশন " "মিডিয়া পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন। এখন পর্যন্ত সব ডাউনলোডকৃত ফাইল " "রাখা হয়েছে।" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "প্রেরণ করার সময় সমস্যা" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "সিস্টেমটি রিস্টার্ট করছি" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "আপগ্রেড ইন্সটল করা যায় নি" # snigdha #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "আপগ্রেড বন্ধ করে দেয়া হয়েছে। সিস্টেমটি এখন ব্যবহার করা নাও যেতে পারে। এখন " "পুনরূদ্ধারকরণ প্রক্রিয়া চলতে থাকবে (dpkg --configure -a)" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "আপগ্রেড প্রত্যাখ্যান করা হয়েছে। অনুগ্রহ করে ইন্টারনেট সংযোগ বা ইনস্টলেশন " "মিডিয়া পরীক্ষা করুন এবং পুনরায় চেষ্টা করুন। " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "অপ্রচলিত প্যাকেজগুলো মুছে ফেলা হবে?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "রাখো (_K)" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "সরাও (_স)" # snigdha #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "পরিষ্কার করার সময় সমস্যা হয়েছিল। আরও তথ্যের জন্য অনুগ্রহ করে নিমোক্তটি " "বার্তাটি পড়ুন। " # snigdha #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "প্রয়োজনীয় ডিপেন্ডেন্সী ইন্সটল করা হয়নি" # snigdha #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "প্রয়োজনীয় ডিপেন্ডেন্সী '%s' ইন্সটল করা হয়নি। " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "প্যাকেজ ম্যানেজার পরীক্ষা করা হচ্ছ" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "আপগ্রেডের প্রস্তুতি ব্যর্থ" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "সিস্টেমকে হালনাগাদের জন্য প্রস্তুতকরণ ব্যর্থ হয়েছে, তাই একটি ত্রুটি রিপোর্ট " "করার প্রক্রিয়া শুরু হয়েছে" # prb-snigdha #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "আপগ্রেডের জন্য প্রয়োজনীয় তথ্য পেতে ব্যার্থ" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "সিস্টেম উন্নীত করার জন্য প্রয়োজনীয় বিষয়বস্তু পেতে অসমর্থ। উন্নীতকরণ " "পরিত্যাগ করা হবে এবং প্রকৃত সিস্টেমের অবস্থা পুনরুদ্ধার করা হবে।\n" "\n" "উপরন্তু, বাগ প্রতিবেদন করার প্রক্রিয়া শুরু করা হচ্ছে।" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "রিপজিটরির তথ্য আপডেট করা হচ্ছে" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "সিডি রোম যোগ করতে ব্যর্থ" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "দুঃখিত, সিডি রোম সফল হয়নি।" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "ভুল প্যাকেজ তথ্য" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "টেনে আনা হচ্ছে" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "আপগ্রেড করা হচ্ছে" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "হালনাগাদ সম্পন্ন হয়েছে" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "আপগ্রেড সম্পন্ন কিন্তু আপগ্রেড প্রসেসের সময় ত্রুটি ঘটে।" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "অপ্রচলিত সফ্টওয়্যার অনুসন্ধান করা হচ্ছে" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "সিস্টেম আপগ্রেড সম্পন্ন।" # snigdha #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "আংশিক আপগ্রেড সম্পন্ন হয়েছে।" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "রিলিজ নোট পাওয়া যায় নি" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "সার্ভারটি মনে হয় ব্যস্ত। " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "রিলিজ নোট ডাউনলোড করা যায় নি" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "অনুগ্রহ করে আপনার ইন্টারনেট সংযোগ পরীক্ষা করুন।" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "প্রমাণীকরণ '%(file)s' বিনিময়ে '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "'%s' নিষ্কর্ষ করা হচ্ছে" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "আপগ্রেড টুলটি চালানো যায় নি" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "আপগ্রেড টুল স্বাক্ষর" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "আপগ্রেড টুল" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "আনতে ব্যর্থ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "আপগ্রেডটি আনতে ব্যর্থ। নেটওয়ার্কে কোন সমস্যা থাকতে পারে। " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "অনমোদন প্রক্রিয়া ব্যর্থ" # snigdha #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "আপগ্রেড পরীক্ষা করা ব্যর্থ হয়েছে। নেটওয়ার্ক বা সার্ভারে কোনো সমস্যা হতে " "পারে। " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "এক্সট্রাক্ট করতে ব্যর্থ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "আপগ্রেডটি এক্সট্রাক্ট করতে ব্যর্থ। নেটওয়ার্ক অথবা সার্ভারে সমস্যা থাকতে " "পারে। " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "যাচাই ব্যর্থ" # snigdha #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "আপগ্রেড পরীক্ষা করা ব্যর্থ হয়েছে। নেটওয়ার্ক বা সার্ভারে কোনো সমস্যা থাকতে " "পারে। " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "আপগ্রেড চালানো যায় নি" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "এটি সাধারণত সিস্টেম দিয়ে সংঘটিত হয়েছে যেখানে /tmp mounted noexec। অনুগ্রহ " "করে noexec ছাড়া পুনরায় মাউন্ট করুন এবং উন্নীত করণ আবার চালান।" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "ত্রুটি বার্তাটি হল '%s'।" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "আপগ্রেড" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "রিলিজ নোট" # snigdha #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "অতিরিক্ত প্যাকেজ ফাইলগুলো ডাউনলোড করা হচ্ছে..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "%sB/s এ ফাইল %s এর %s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "ফাইল %s এর %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "দয়া করে '%s' ড্রাইভে '%s' প্রবেশ করান" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "মিডিয়া পরিবর্তন" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms ব্যবহার করা হচ্ছে" # snigdha #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "আপনার সিস্টেমে /proc/mounts এ 'evms' ভলিউম ব্যবস্থাপক ব্যবহার করা হয়। 'evms' " "সফট্ওয়্যার এখন আর সমর্থন করে না, তাই অনুগ্রহ করে এটি বন্ধ করুন এবং আপগ্রেড " "সম্পন্ন হয়ে গেলে তা চালু করুন।" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "আপনার গ্রাফিক্স হার্ডওয়্যার উবুন্টু ১২.০৪ (LTS) এ সম্ভবত পুরোপুরি ভাবে " "সমর্থন করবে না।" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "উবুন্টু ১২.০৪ এ আপনার ইন্টেল গ্রাফিক্স হার্ডওয়্যারের সমর্থন সীমিত এবং উন্নীত " "করার পর আপনি সমস্যার সম্মুখীন হতে পারেন। বিস্তারিত জানতে দেখুন " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx আপনি কি উন্নীতকরণ " "করতে চান?" # snigdha #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "আপগ্রেড করার ফলে গ্রাফিক ভিত্তিক প্রোগ্রাম ও গেমস্ ব্যবহার করার সময় " "ডেক্সটপের প্রভাব ও কার্যকারীতা কিছুটা কমে যাবে।" # snigdha #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "এই কম্পিউটারে বর্তমানে NVIDIA 'nvidia' গ্রাফিক্স ড্রাইভার ব্যবহার করা হচ্ছে। " "আপনার Ubuntu 10.04 LTS এ ভিডিও কার্ডে চলে, ড্রাইভােরর এমন কোনো সংস্করণই " "পাওয়া যাচ্ছে না।\n" "\n" " আপনি কি চালিয়ে যেতে চান?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "এই কম্পিউটারে বর্তমানে AMD 'fglrx' গ্রাফিক্স ড্রাইভার ব্যবহার করা হচ্ছে। " "আপনার Ubuntu 10.04 LTS হার্ডওয়্যারে চলে, ড্রাইভােরর এমন কোনো সংস্করণই পাওয়া " "যাচ্ছে না।\n" "\n" " আপনি কি চালিয়ে যেতে চান?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "কোনো i686 CPU নেই" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "আপনার সিস্টেম i586 CPU বা CPU ব্যবহার করে যা 'cmov' বর্ধিতাংশ নেই। " "কার্মিকের সব প্যাকেজ সর্বনিম্ন i686 আর্কিটেকচারে নির্মাণ করা হয়েছে। এই " "হার্ডওয়্যার সহকারে আপনার সিস্টেমকে নতুন উবুন্টু সংস্করণে আপগ্রেড করা সম্ভব " "নয়।" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "কোনো ARMv6 CPU নেই" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "আপনার সিস্টেম ARM CPU ব্যবহার করে যা ARMv6 আর্কিটেকচারের চাইতে পুরোনো। " "কার্মিকের সব প্যাকেজ সর্বনিম্ন ARMv6 আর্কিটেকচারে নির্মাণ করা হয়েছে। এই " "হার্ডওয়্যার সহকারে আপনার সিস্টেমকে নতুন উবুন্টু সংস্করণে আপগ্রেড করা সম্ভব " "নয়।" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "কোনো init নেই" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "আপনার সিস্টেমটি init ডিমনহীন ভার্চুয়ালাইজড এনভায়রনমেন্ট বলে মনে হচ্ছে, যেমন: " "লিনাক্স-VServer। উবুন্টু ১০.০৪ LTS এই এনভায়রনমেন্টে কাজ করে না, আপনার " "ভার্চুয়াল মেশিনের কনফিগারেশন হালনাগাদ করা প্রয়োজন।\n" "\n" "আপনি কি নিশ্চিত আপনি এগিয়ে যেতে চান?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "aufs ব্যবহার করে স্যান্ডবক্স আপগ্রেড করা হবে" # snigdha #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "আপগ্রেডেকৃত প্যাকেজসহ cdrom খুঁজে বের করতে দিয়ে দেয়া পাথ ব্যবহার করুন" # snigdha #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "ফ্রন্টেন্ড ব্যবহার করুন। বর্তমানে পাওয়া যাচ্ছে: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*অবলোপ* এই অপশনটি উপেক্ষা করা হবে" # snigdha #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "শুধুমাত্র আংশিক আপগ্রেড কাজ করে ( কোনো উৎস তালিকা পুনর্লিিখত হয় না)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU স্ক্রিন সাপোর্ট নিষ্ক্রিয়" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "datadir নির্ধারণ" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "টেনে আনা সম্পূর্ণ" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "ফাইল আনা হচ্ছে %li এর %li %sB/s এ" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "%s বাকি আছে" # prb #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "%li এর %li ফাইল নিয়ে আসা হয়" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "পরিবর্তনগুলো প্রয়োগ করছি" # snigdha #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "ডিপেন্ডেন্সী সমস্যা - আনকনফিগার হিসাবে রয়েছে" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' ইন্সটল করা যায় নি" # snigdha #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "আপগ্রেড হওয়া চলতে থাকবে কিন্তু '%s' প্যাকেজ কার্যকর নাও হতে পারে। অনুগ্রহ " "করে এই সম্পর্কে একটি বাগ রিপোর্ট করুন।" # snigdha #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "স্বনির্বাচিত কনফিগারেশন ফাইল \n" "'%s' প্রতিস্থাপন?" # snigdha #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "আপনি যদি নতুন সংস্করণ দ্বারা এটি প্রতিস্থাপন করেন তবে কনফিগারেশন ফাইলে কোনো " "পরিবর্তন করে থাকলে তা চলে যাবে।" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "'diff' কমান্ডটি পাওয়া যায় নি" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "একটি মারাত্মক সমস্যা সংঘটিত হয়েছে" # snigdha #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "অনুগ্রহ করে এটি বাগ হিসাবে রিপোর্ট করুন (যদি আগে করে না থাকেন) এবং রিপোর্টে " "/var/log/dist-upgrade/main.log এবং /var/log/dist-upgrade/apt.log ফাইলসমূহ " "সংযুক্ত করুন। আপগ্রেড বন্ধ আছে।\n" "আপনার মূল উৎস তালিকা /etc/apt/sources.list.distUpgrade এ সংরক্ষিত আছে।" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c চাপা হয়েছে" # snigdha #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "এর ফলে অপারেশনটি বন্ধ হয়ে যাবে এবং সিস্টেমকে একটি অসম্পূর্ন অবস্থায় রেখে " "দিবে। আপনি কি নিশ্চিত যে আপনি এমন করতে চান?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "ক্যানোনিক্যাল দ্বারা আর সমর্থিত নয় (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "ডাউনগ্রেড (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "(%s) অপসারণ" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "আর প্রয়োজন নেই (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "(%s) ইন্সটল" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "(%s) আপগ্রেড" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "পার্থক্য প্রদর্শন >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< পার্থক্য আড়াল করা" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "ত্রুটি" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" # confused..coz here & seems not a shortcut #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "ও বন্ধ" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "টার্মিনাল প্রদর্শন >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< টার্মিনাল আড়াল করা" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "তথ্য" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "বিস্তারিত" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "আর সমর্থিত নয় %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "%s অপসারণ" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "%s অপসারণ (যা স্বয়ংক্রিয় ভাবে ইনস্টল করা হয়েছিল)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "%s ইন্সটল" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "%s আপগ্রেড" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "পুনরায় শুরু করা প্রয়োজন" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "আপগ্রেড সম্পন্ন করতে সিস্টেমটি রিস্টার্ট করুন" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "এক্ষুনি রিস্টার্ট (_R)" # snigdha #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "চলমান আপগ্রেড বাতিল করতে চান?\n" "\n" "আপগ্রেড বন্ধ করলে সিস্টেম অকার্যকর হয়ে পড়বে। আপনাকে অবশ্যই আপগ্রেড চালিয়ে " "যেতে বলা হচ্ছে।" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "আপগ্রেড বাতিল করা হবে কি?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li দিন" msgstr[1] "%li দিন" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li ঘন্টা" msgstr[1] "%li ঘন্টা" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li মিনিট" msgstr[1] "%li মিনিট" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li সেকেন্ড" msgstr[1] "%li সেকেন্ড" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" # snigdha #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "ডাউনলোডটি সম্পন্ন করতে 1Mbit DSL সংযোগের সাহায্যে %s এবং 56k মডেম এর " "সাহায্যে %s সময় লাগবে।" # snigdha #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "আপনার যে সংযোগটি আছে তাতে এই ডাউনলোডটি সম্পন্ন হতে %s সময় নিবে। " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "আপগ্রেড প্রস্তুত করা হচ্ছে" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "নতুন সফটওয়্যার চ্যানেল গ্রহন করা হচ্ছে" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "নতুন প্যাকেজ গ্রহন করা হচ্ছে" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "আপগ্রেড ইনস্টল করা হচ্ছে" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "পরিস্কার করছি" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d সফটওয়্যার প্যাকেজগুলো ক্যানোনিক্যাল আর সরবরাহ করছে না। আপনি " "কমিউনিটি থেকে এখনও সহায়তা পেতে পারেন।" msgstr[1] "" "%(amount)d সফটওয়্যার প্যাকেজগুলো ক্যানোনিক্যাল আর সরবরাহ করছে না। আপনি " "কমিউনিটি থেকে এখনও সহায়তা পেতে পারেন।" # snigdha #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d প্যাকেজটি অপসারিত হতে যাচ্ছে।" msgstr[1] "%d প্যাকেজসমূহ অপসারিত হতে যাচ্ছে।" # snigdha #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d নতুন প্যাকেজ ইন্সটল করা হবে।" msgstr[1] "%d নতুন প্যাকেজসমূহ ইন্সটল করা হবে।" # snigdha #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d প্যাকেজ আপগ্রেড করা হবে।" msgstr[1] "%d প্যাকেজসমূহ আপগ্রেড করা হবে।" # snigdha #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "আপনাকে সম্পূর্ণ %s ডাউনলোড করতে হবে। " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "আপগ্রেড ইন্সটল করতে বেশ কয়েক ঘন্টা লাগতে পারে। ডাউনলোড শেষ হওয়ার পর আপনি " "এটিকে থামাতে পারবেন না।" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "উন্নীতকরণ আনয়ন এবং ইনস্টল করতে কয়েক ঘন্টা সময় লাগতে পারে। একবার ডাউনলোড " "সমাপ্ত হলে, প্রক্রিয়া বাতিল করা যাবেনা।" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "প্যাকেজগুলো অপসরণ করতে বেশ কিছু ঘন্টা লাগতে পারে। " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "এই কম্পিউটারের সফটওয়্যার হালনাগাদকৃত।" # snigdha #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "আপনার সিস্টেমের জন্য কোনো আপগ্রেড পাওয়া যাচ্ছে না। এখন আপগ্রেডটি বাতিল করা " "হবে।" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "রিবুট করা প্রয়োজন" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "আপগ্রেডটি সম্পন্ন এবং রিবুট করা প্রয়োজন। আপনি কি এক্ষুনি তা করতে চান?" # snigdha #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "অনুগ্রহ করে একে বাগ হিসাবে রিপোর্ট করুন এবং /var/log/dist-upgrade/main.log " "এবং /var/log/dist-upgrade/apt.log ফাইলসমূহ রিেপোর্টের সাথে সংযুক্ত করে দিন। " "বর্তমানে আপগ্রেডটি বন্ধ আছে।\n" "আপনার মূল উৎস তালিকা /etc/apt/sources.list.distUpgrade এ সংরক্ষিত আছে।" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "প্রত্যাখ্যান করা হচ্ছে" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "নীচে নামানো:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "চালিয়ে যেতে অনুগ্রহ করে [ENTER] চাপুন" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "এগিয়ে যাওয়া [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "বিস্তারিত [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "হ্যাঁ" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "না" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "বিস্তা" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "আর সমর্থিত নয়: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "অপসারণ: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "ইনস্টল: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "আপগ্রেড: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "এগিয়ে যাওয়া [Yn] " # snigdha #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "আপগ্রেড সম্পন্ন করার জন্য কম্পিউটার পুনরায় চালু করতে হবে।\n" "'y' নির্বাচন করে সিস্টেমটি পুনরায় চালু করতে পারেন।" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "%(total)li এর %(current)li ডাউনলোড করা হচ্ছে %(speed)s/s এ" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "%(total)li এর %(current)li ডাউনলোড করা হচ্ছে" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "প্রতিটি ফাইলের অগ্রগতি প্রদর্শন" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "আপগ্রেড বাতিল (_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "পুনরায় আপগ্রেড শুরু (_R)" # snigdha #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "চলমান আপগ্রেডটি কি বাতিল করতে চান?\n" "\n" "আপগ্রেড বাতিল করে দিলে সিস্টেম অকার্যকর হয়ে পড়তে পারে। অবশ্যই আপনাকে আপগ্রেড " "চালিয়ে যেতে বলা হচ্ছে।" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "আপগ্রেড আরম্ভ (_S)" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "প্রতিস্হাপন (_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "ফাইলগুলোর মধ্যে পার্থক্য" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "বাগ রিপোর্ট (_R)" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "এগিয়ে যাও (_C)" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "আপগ্রেড শুরু করবো?" # snigdha #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "আপগ্রেড সম্পন্ন করতে সিস্টেম রিস্টার্ট করুন\n" "\n" "আপগ্রেডটি চালিয়ে যাওয়ার পূর্বে আপনার কাজগুলো কম্পিউটারে সংরক্ষণ করে নিন।" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "ডিস্ট্রিবিউশন আপগ্রেড" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "নতুন সফটওয়্যার চ্যানেল সেট করা হচ্ছে" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "কম্পিউটারটি পুনরায় শুরু করা হচ্ছে" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "টার্মিন্যাল" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "আপগ্রেড (_U)" # snigdha #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "উবুন্টুর নতন সংস্করণ পাওয়া যাচ্ছে। আপনি কি আপগ্রেড করতে চান?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "আপগ্রেড করা হবে না" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "আমাকে পরবর্তীতে জিজ্ঞেস করা হবে" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "হ্যাঁ, এখনই আপগ্রেড করুন" # snigdha #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "আপনি উবুন্টুর নতুন সংস্করণ আপগ্রেড করতে অসম্মত হয়েছেন" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "সংস্করণ প্রদর্শন এবং প্রস্থান" # snigdha #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "যে ডিরেক্টরীতে ডাটা ফাইল থাকে" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "উল্লেখিত ফ্রন্টএন্ড চালনা" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "আংশিক আপগ্রেড চালানো হচ্ছে" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "রিলিজ আপগ্রেড টুল ডাউনলোড করা হচ্ছে" # snigdha #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "সর্বশেষ ডেভেল রিলিজ আপগ্রেড করা সম্ভব কিনা তা পরীক্ষা করে দেখুন" # snigdha #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "$distro-প্রস্তাবিত থেকে আপগ্রেডারের সাহায্যে সর্বশেষ রিলিজে আপগ্রেড করুন" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "বিশেষ আপগ্রেড মোডে চালানো হবে।\n" "বর্তমানে ডেস্কটপ সিস্টেমের নিয়মিত আপগ্রেডের জন্য 'desktop' এবং সার্ভার " "সিস্টেমের জন্য 'server'।" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "স্যান্ডবক্স aufs ওভারলে দিয়ে আপগ্রেড পরীক্ষা করা" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "নতুন কোনো ডিস্ট্রিবিউশন রিলিজ বিদ্যমান কি না পরীক্ষা করুন এবং exit কোডের " "মাধ্যে রিপোর্ট করুন" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "নতুন উবুন্টু রিলিজের জন্য খোঁজ নেয়া হচ্ছে" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "আপনার উবুন্টু রিলিজ এখন আর সমর্থিত নয়।" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "তথ্য আপগ্রেডের জন্য, অনুগ্রহ করে দেখুন:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "নতুন কোন সংস্করণ পাওয়া যায় নি" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "এখন রিলিজ উন্নীত করা সম্ভব নয়" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "বর্তমানে রিলিজ আপগ্রেড সমভব নয়, অনুগ্রহ করে একটু পর আবার চেষ্টা করুন। " "সার্ভারের প্রতিবেদন: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "নতুন রিলিজ '%s' বিদ্যমান।" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "আপগ্রেড করতে 'do-release-upgrade' চালান।" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "উবুন্টু %(version)s আপগ্রেড বিদ্যমান" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "আপনি উবুন্টু %s তে আপগ্রেড করতে চেয়েছেন" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "ডিবাগ আউটপুট সংযুক্ত করুন" ubuntu-release-upgrader-0.220.10/po/th.po0000644000000000000000000022535112431225715014774 0ustar # Thai translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # Roys Hengwatanakul , 2006. # Theppitak Karoonboonyanan , 2009. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: th\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "เซิร์ฟเวอร์สำหรับ %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "เซิร์ฟเวอร์หลัก" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "เซิร์ฟเวอร์กำหนดเอง" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "ไม่สามารถคำนวนรายการใน sources.list ได้" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "ไม่พบแพคเกจใดเลย บางทีนี่อาจไม่ใช่แผ่น Ubuntu หรือแผ่นอาจเสียหาย?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "ไม่สามารถเพิ่มซีดีได้" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "มีปัญหาในการเพิ่มซีดี การปรับปรุงรุ่นจะถูกยกเลิก " "กรุณารายงานปัญหานี้ถ้าเป็นซีดีที่ถูกต้องของ Ubuntu\n" "\n" "ปัญหาคือ : \n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "ลบแพกเกจส่วนที่ใช้การไม่ได้" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "แพคเกจ '%s' อยู่ในสถานะที่ไม่ถูกต้องและต้องทำการติดตั้งใหม่ " "แต่ไม่สามารถหาข้อมูลมาแก้ไขได้ " "คุณต้องการที่จะลบแพคเกจนี้ออกก่อนเพื่อดำเนินการต่อหรือไม่?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "เซิร์ฟเวอร์อาจทำงานหนักเกินไป" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "แพกเกจมีปัญหา" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "ระบบของคุณมีแพกเกจที่มีปัญหาที่ไม่สามารถซ่อมได้ด้วยโปรแกรมนี้ " "กรุณาซ่อมโดยใช้โปรแกรม synaptic หรือ apt-get ก่อนดำเนินการต่อไป" #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "มีปัญหาที่แก้ไม่ได้ขณะวางแผนในการปรับปรุง:\n" "%s\n" "\n" " ปัญหาอาจมาจาก:\n" " * ปรับรุ่นขึ้นไปเป็นรุ่น pre-release ของ Ubuntu\n" " * ขณะนี้กำลังใช้รุ่น pre-release ของ Ubuntu อยู่\n" " * ไม่ใช่ซอฟต์แวร์แพคเกจที่มาจาก Ubuntu อย่างเป็นทางการ\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "ปัญหานี้ดูเหมือนว่าจะเป็นปัญหาชั่วคราว, กรุณาลองใหม่อีกครั้งภายหลัง" #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "ไม่สามารถคำนวนการปรับปรุงได้" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "ผิดพลาดในการยืนยันของจริงในบางแพกเกจ" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "ไม่สามารถยืนยันความถูกต้องของบางแพกเกจได้ นี่อาจเกี่ยวกับปัญหาด้านเครือข่าย " "คุณอาจลองอีกครั้งได้ในภายหลัง กรุณาตรวจดูรายการของแพกเกจที่ไม่ผ่านการยืนยัน" #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "แพกเกจ '%s' ถูกกาไว้เพื่อถอดถอนแต่แพกเกจนี้อยู่ในรายชื่อที่ไม่ให้ลบออก" #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "แพกเกจที่จำเป็น '%s' ถูกกำหนดไว้เพื่อลบออก" #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "พยายามติดตั้งรุ่นที่ถูกขึ้นบัญชีดำ '%s'" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "ไม่สามารถติดตั้ง '%s' ได้" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "ไม่สามารถเดาเมตาแพกเกจได้" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "ระบบของคุณไม่ได้ประกอบด้วย Ubuntu-desktop, Kubuntu-desktop, Xubuntu-desktop " "หรือ Edubuntu-desktop และไม่สามารถตรวจสอบได้ว่าคุณใช้ Ubuntu รุ่นอะไรอยู่\n" " กรุณาติดตั้งแพกเกจด้านบนอย่างใดอย่างหนึ่งก่อนโดยใช้โปรแกรม Synaptic หรือ " "apt-get ก่อนจะดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "กำลังอ่านแคช" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "ไม่สามารถเอาล็อคแต่ผู้เดียวได้" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "ปกติแล้วหมายความว่ามีโปรแกรมจัดการแพ็กเกจอื่นๆ(เช่น apt-get หรือ aptitude) " "กำลังทำงานอยู่ กรุณาออกจากโปรแกรมนั้นก่อน" #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "ไม่สนับสนุนการปรับรุ่นผ่านการติดต่อระยะไกล" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "คุณกำลังเรียกใช้การปรับรุ่นผ่านการเชื่อมต่อระยะไกลด้วย SSH " "ส่วนติดต่อไม่สนับสนุนการกระทำนี้ โปรดลองโหมดข้อความด้วย 'do-release-" "upgrade'\n" "\n" "การปรับปรุ่นจะยกเลิกเดี๋ยวนี้ โปรดลองโดยไม่ใช้ SSH" #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "ใช้งานภายใต้ SSH ต่อไปหรือไม่?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "วาระนี้ดูเหมือนจะทำงานภายใต้ SSH ซึ่งไม่แนะนำที่จะทำการอัพเกรดผ่าน SSH " "เพราะถ้ามีปัญหาเกิดขึ้นมันยากที่จะกู้คืน\n" "\n" "ถ้าคุณต้องการทำต่อ ให้เพิ่มที่ดีมอน ssh ด้วยพอร์ต '%s'\n" "คุณต้องการที่จะต่อหรือไม่" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "กำลังเพิ่ม sshd อีก" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "เพื่อให้การกู้ระบบคืนสู่สภาพเดิมง่ายขึ้นในกรณีที่มีปัญหา โปรแกรมจะเริ่ม sshd " "อีกอันหนึ่งที่พอร์ต '%s' ถ้ามีปัญหาเกิดขึ้นกับโปรแกรม ssh " "ที่ใช้อยู่คุณยังสามารถติดต่อผ่านอีกอันหนึ่งได้\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "ถ้าคุณใช้งานไฟร์วอลล์ คุณควรจะเปิดพอร์ตนี้ชั่วคราว " "เนื่องจากเป็นสิ่งที่ไม่ปลอดภัยถ้าทำการเปิดพอร์ตทำโดยอัตโนมัติ " "คุณสามารถเปิดพอร์ตด้วย\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "ไม่สามารถปรับปรุงรุ่น" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "เครื่องมือนี้ไม่รองรับการปรับปรุงรุ่นจาก '%s' ไปเป็น '%s'" #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "การเตรียมกล่องทรายสำหรับทดลองมีปัญหา" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "ไม่สามารถสร้างสภาพแวดล้อมของกล่องทรายได้" #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "แบบกล่องทรายสำหรับทดลอง" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "โปรแกรม python ที่คุณติดตั้งไว้ไม่สามารถใช้ได้ กรุณาแก้ไข้ symlink " "'/usr/bin/python'" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "แพคเกจ 'debsig-verify' ถูกติดตั้งไว้แล้ว" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "ไม่สามารถอัปเกรดต่อไปได้ถ้ามีแพคเกจนั้นติดตั้งอยู่.\n" "โปรดลบมันด้วย synaptic หรือ apt-get remove debsig-verify " "เสียก่อนแล้วอัปเกรดอีกครั้ง" #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "รวมการปรับปรุงล่าสุดจากอินเตอร์เน็ตด้วยหรือไม่?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "โปรแกรมปรับปรุงระบบสามารถใช้อินเทอร์เน็ตดาวน์โหลดโปรแกรมต่างๆ " "รุ่นล่าสุดและทำการติดตั้งโดยอัตโนมัติขณะทำการปรับปรุง " "ถ้าคุณมีระบบเครือข่ายอินเทอร์เน็ต นี่เป็นแนวทางที่แนะนำให้ใช้\n" "\n" "การปรับปรุงจะใช้เวลานานขึ้น " "แต่เมื่อเสร็จแล้วระบบของคุณจะเป็นรุ่นล่าสุดทั้งหมด " "คุณสามารถที่จะเลือกไม่ทำเช่นนี้ " "แต่คุณควรจะทำการติดตั้งรุ่นล่าสุดโดยเร็วหลังจากเสร็จการปรับปรุงแล้ว\n" "ถ้าคุณเลือก 'ไม่' ระบบเครือข่ายอินเทอร์เน็ตจะไม่ถูกใช้เลย" #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "หยุดใช้งานเมื่อปรับปรุงเป็น %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "ไม่เจอเซิรฟ์เวอร์เสริม(mirror)" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "ในขณะที่สแกนที่คลังข้อมูลของคุณไม่พบรายการที่สำรองสำหรับปรับรุ่น " "นี้สามารถเกิดขึ้นได้ถ้าคุณเรียกใช้ที่สำรองภายในหรือหากข้อมูลหมดอายุแล้ว\n" "\n" "คุณต้องการที่จะเขียนแฟ้ม 'sources.list' ใหม่หรือไม่ หากคุณเลือกที่ 'ใช่' " "จะทำการปรับปรุง '%s' ทั้งหมดไปเป็น '%s'\n" "หากคุณเลือก 'ไม่' การปรับรุ่นที่จะยกเลิก" #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "สร้าง default sources?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "หลังจากตรวจแฟ้ม 'sources.list' ของคุณแล้วไม่พบรายการ '%s' ที่ต้องการใช้\n" "\n" "ควรเพิ่มรายการ '%s' หรือไม่? ถ้าคุณเลือก 'ไม่' กระบวนการปรับรุ่นจะถูกยกเลิก" #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "ข้อมูลเกี่ยวกับแหล่งเก็บข้อมูลใช้ไม่ได้" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "แหล่งอื่นๆใช้ไม่ได้" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "บางรายการใน souces.list ของคุณถูกปิดไว้ " "คุณสามารถเปลี่ยนให้ใช้ได้หลังการปรับปรุงด้วยเครื่องมือ 'software-properties' " "หรือด้วยโปรแกรมจัดการแพ็กเกจ" #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "แพคเกจเกิดความขัดแย้ง" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "แพคเกจ '%s' อยู่ในสถานะที่ไม่แน่นอนและต้องทำการติดตั้งใหม่ " "แต่ไม่สามารถหาข้อมูลเก่าได้ กรุณาติดตั้งใหม่อีกครั้งหรือลบออกจากระบบ" #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "เกิดข้อผิดพลาดขณะปรับปรุง" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "มีปัญหาเกิดขึ้นขณะทำการปรับปรุง โดยปกติจะเป็นปัญหาในระบบเครือข่าย " "กรุณาตรวจสอบการทำงานของระบบเครือข่ายแล้วลองใหม่อีกครั้ง" #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "ไม่มีพื้นที่ว่างในดิสก์เพียงพอ" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "กำลังคำนวนปริมาณการเปลี่ยนแปลง" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "คุณต้องการที่จะเริ่มการปรับปรุงหรือไม่?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "การปรับรุ่นถูกยกเลิก" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "การปรับรุ่นจะถูกยกเลิกเดี๋ยวนี้ และระบบดังเดิมจะถูกกู้คืน " "คุณสามารถปรับรุ่นต่อได้ในภายหลัง" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "ไม่สามารถดาวน์โหลดข้อมูลปรับปรุงรุ่น" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "การปรับรุ่นถูกยกเลิก " "โปรดตรวจดูการเชื่อมต่ออินเทอร์เน็ตของคุณหรือการติดตั้งสื่อแล้วลองใหม่ ทุก ๆ " "แฟ้มที่ดาว์โหลดจะถูกเก็บไว้ก่อน" #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "เกิดข้อผิดพลาดขณะแก้ไขปรับปรุง" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "คืนระบบสู่สถานะแรกเริ่ม" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "ไม่สามารถปรับปรุงได้" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "การปรับรุ่นถูกเพิกเฉย โปรดตรวจสอบการเชื่อมต่ออินเทอร์เน็ต " "หรือสื่อที่ใช้ติดตั้งและลองใหม่ " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "ลบแพจเกจที่ล้าสมัยทิ้งหรือไม่?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "คงไว้" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "เอาออก" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "มีปัญหาเกิดขึ้นขณะทำการเก็บกวาด กรุณาอ่านข้อมูลข้างล่างสำหรับรายละเอียด " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "โปรแกรมที่ต้องการไม่ได้ถูกติดตั้ง" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "โปรแกรม '%s' ที่ต้องการไม่ได้ถูกติดตั้ง " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "กำลังตรวจสอบโปรแกรมจัดการแพกเกจ" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "การเตรียมการปรับปรุงรุ่นมีปัญหา" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "เอาแพคเกจที่จำเป็นก่อนการปรับปรุงมาไม่ได้" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "ปรับปรุงข้อมูลของแหล่งข้อมูล" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "เพิ่มแผ่นซีดีล้มเหลว" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "ขออภัยด้วย, ทำการเพิ่มแผ่นซีดีไม่สำเร็จ" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "ข้อมูลของแพกเกจไม่ถูกต้อง" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "กำลังดึงข้อมูล" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "กำลังปรับปรุง" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "ปรับปรุงเสร็จแล้ว" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "การปรับรุ่นสมบูรณ์ แต่เกิดข้อผิดพลาดในระหว่างขั้นตอนการปรับรุ่น" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "ค้นหาซอฟแวร์ที่ล้าสมัย" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "ปรับปรุงระบบเสร็จแล้ว" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "การปรับปรุงรุ่นบางส่วนเสร็จสมบูรณ์" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "ไม่สามารถหาบันทึกการปล่อย" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "เซิรฟ์เวอร์อาจจะทำงานเกินพิกัด " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "ไม่สามารถดาวน์โหลดบันทึกการปล่อย" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "กรุณาตรวจสอบการสื่อสารทางอินเตอร์เน็ตของคุณ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "ไม่สามารถเรียกใช้เครื่องมือปรับปรุง" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "รายเซ็นของเครื่องมือปรับปรุง" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "เครื่องมือปรับปรุงรุ่น" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "ไม่สามารถเอามาได้" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "ไม่สามารถดาวน์โหลดข้อมูลปรับปรุงได้ อาจจะเป็นปัญหาในเครือข่าย " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "ไม่สามารถยืนยันว่าเป็นของจริงได้" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "ยืนยันการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "ไม่สามารถเอาออกมาได้" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "ไม่สามารถแกะข้อมูลปรับปรุงออกมาได้ " "อาจจะเป็นปัญหาในเครือข่ายหรือที่เซิรฟ์เวอร์ " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "การตรวจสอบล้มเหลว" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "ตรวจทานการปรับปรุงไม่สำเร็จ อาจจะมีปัญหาในเครือข่ายหรือที่เซิร์ฟเวอร์ " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "ไม่สามารถเริ่มโปรแกรมปรับปรุงได้" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "นี้มักจะเกิดโดยที่ระบบ /tmp เชื่อมต่อด้วย noexec " "โปรดเชื่อมต่อใหม่โดยไม่ต้องใช้ noexec และเรียกใช้ปรับรุ่นอีกครั้ง" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "ข้อผิดพลาดคือ '%s'" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "ปรับปรุง" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "บันทึกรายการปรับปรุง" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "กำลังดาวน์โหลดไฟล์ของแพคเกจเพิ่มเติม..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "ไฟล์ที่ %s จากทั้งหมด %s ด้วยความเร็ว %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "ไฟล์ที่ %s จากทั้งหมด %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "โปรดใส่ '%s' ลงใน '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "เปลี่ยนสื่อ" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms ใช้งานอยู่" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "ระบบของคุณใช้โปรแกรมจัดการโวลุ่ม 'evms' ใน /proc/mounts ซอฟต์แวร์ 'evms' " "ไม่มีการสนับสนุนแล้ว กรุณาหยุดใช้และทำการปรับปรุงใหม่อีกครั้ง" #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "การปรับปรุงอาจจะลดลูกเล่นของพื้นโต๊ะ และประสิทธิภาพในเกมและโปรแกมอื่นๆ " "ที่ต้องใช้กราฟิกมาก" #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "คอมพิวเตอร์ตัวนี้ใช้กราฟิกไดรเวอร์ของ NVIDIA 'nvidia' " "ไม่พบรุ่นของไดรเวอร์ที่ทำงานกับการ์ดวิดีโอของคุณใน Ubuntu 10.04 LTS\n" "\n" "คุณต้องการทำต่อ?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "คอมพิวเตอร์ตัวนี้ใช้กราฟิกไดรเวอร์ของ NVIDIA 'nvidia' " "ไม่พบรุ่นของไดรเวอร์ที่ทำงานกับการ์ดวิดีโอของคุณใน Ubuntu 10.04 LTS\n" "\n" "คุณต้องการทำต่อ?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "ไม่มี CPU i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "ระบบของคุณใช้ i586 CPU หรือ CPU ที่ไม่มีส่วนขยาย 'cmov' " "แพคเกจทั้งหมดถูกสร้างขึ้นด้วยการเพิ่มประสิทธิภาพต้องเป็นสถาปัตยกรรม i686 " "น้อยที่สุด มันเป็นไปไม่ได้ที่จะปรุบรุ่นระบบ Ubuntu ของคุณกับฮาร์ดแวร์ใหม่นี้" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "ไม่พบ CPU ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "ไม่พบ init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "กล่องทรายทดลองปรับปรุงโดยใช้ aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "ใช้พาธ(path)ที่ให้ในการค้นหาซีดีรอมที่มีแพ็กเกจที่สามารถปรับปรุงได้" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "ใช้ส่วนหน้า(frontend) ปัจจุบันมี่ให้เลือก: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*ไม่สนับสนุนให้ใช้* ตัวเลือกนี้จะไม่ถูกสนใจ" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "ทำการปรับปรุงบางส่วนเท่านั้น (sources.list จะไม่ถูกบันทึก)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "ปิดการทำงานหน้าจอ GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "ตั้งค่า datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "ดึงข้อมูลเสร็จสิ้นแล้ว" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "กำลังเอาไฟล์ที่ %li จากทั้งหมด %li ด้วยความเร็ว %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "เหลือประมาณ %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "กำลังดึงข้อมูลแฟ้ม %li จาก %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "กำลังเปลี่ยนแปลง" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ - จะทิ้งไว้โดยไม่ตั้งค่า" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "ไม่สามารถติดตั้ง '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "การปรับรุ่นจะดำเนินการต่อไป แต่แพคเกจ '%s' อาจจะไม่สามารถทำงานได้ " "โปรดตรวจสอบและส่งรายการข้อผิดพลาดที่เกี่ยวกับมัน" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "เปลี่ยนไฟล์ปรับแต่งที่แก้ไขเอง\n" "'%s' หรือไม่?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "คุณจะสูญเสียข้อมูลปรับแต่งที่ได้ทำไว้ในไฟล์ปรับแต่งถ้าคุณเลือกที่จะเปลี่ยนไปใ" "ช้ไฟล์รุ่นใหม่กว่านี้" #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "ไม่เจอคำสั่ง 'diff'" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "เกิดข้อผิดพลาดอย่างร้ายแรง" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c ถูกกดแล้ว" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "การกดนี้จะยกเลิกการทำงานของโปรแกรม " "และอาจทำให้ระบบของคุณอยู่ในสภาพใช้การไม่ได้ คุณแน่ใจหรือไม่ว่าจะหยุด?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "เพื่อป้องกันข้อมูลสูญหายกรุณาออกจากทุกโปรแกรมและเอกสารที่เปิดอยู่" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "เลิกให้การสนับสนุนโดย Canonical แล้ว (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "ปรับรุ่นลง (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "ถอดถอน (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "ไม่ต้องการอีกต่อไป (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "ติดตั้ง (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "ปรับรุ่น (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "แสดงความแตกต่าง >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< ซ่อนความแตกต่าง" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "ผิดพลาด" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&ปิด" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "แสดงเทอร์มินัล >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< ซ่อนเทอร์มินัล" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "รายละเอียด" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "รายละเอียด" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "เลิกให้การสนับสนุนแล้ว %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "ลบ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "ถอดถอน %s (ที่ถูกติดตั้งโดยอัตโนมัติ)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "ติดตั้ง %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "ปรับปรุงรุ่น %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "ต้องการเริ่มระบบใหม่" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "เริ่มระบบใหม่เพื่อที่จะให้การปรับปรุงเสร็จสิ้น" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "เริ่มระบบใหม่เดี๋ยวนี้" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "ยกเลิกการปรับปรุงนี้หรือไม่?\n" "\n" "ระบบของคุณจะอยู่ในสภาพที่ใช้การไม่ได้ถ้าคุณยกเลิกการปรับปรุง. " "ขอแนะนำให้ดำเนินการต่อไป" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "ยกเลิกการปรับปรุงรุ่นหรือไม่?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li วัน" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li ชั่วโมง" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li นาที" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li วินาที" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "ดาวน์โหลดนี้จะใช้เวลาประมาณ %s ถ้าใช้สาย 1Mbit DSL หรือประมาณ %s ถ้าใช้ 56k " "โมเด็ม." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "การดาวน์โหลดนี้จะใช้เวลาประมาณ %s จากการเชื่อมต่อของคุณ " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "กำลังเตรียมการปรับปรุง" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "ตรวจหาช่องซอฟต์แวร์ใหม่" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "กำลังรับแพคเกจใหม่" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "กำลังทำการปรับปรุงรุ่น" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "กำลังเก็บกวาด" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d แพกเกจที่ติดตั้งแล้วนี้ Canonical ไม่ได้ดูแลอีกต่อไป " "แต่คุณยังได้รับการสนับสนุนจากชุมชนอื่น ๆ ได้อีก" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d แพกเกจจะถูกลบออก" #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d แพกเกจใหม่จะถูกติดตั้ง" #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d แพกเกจจะถูกปรับปรุงรุ่น" #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "คุณจะต้องดาวน์โหลดทั้งหมด %s " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "ไม่มีข้อมูลปรับปรุงรุ่นสำหรับระบบของคุณ การปรับปรุงรุ่นจึงถูกยกเลิก" #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "ต้องเริ่มระบบใหม่" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "การปรับปรุงเสร็จสิ้นแล้วและต้องการที่จะเริ่มระบบใหม่ " "คุณต้องการที่จะทำเดี๋ยวนี้หรือเปล่า?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "กำลังยกเลิก" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "ปรับลง:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "ทำต่อโปรดกด [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "ดำเนินการต่อไป[ชม] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "รายละเอียด[ร]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "ช" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "ม" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "ร" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "เลิกให้การสนับสนุนแล้ว: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "ลบออก: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "ติดตั้ง: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "ปรับปรุง: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "ทำต่อไป [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "คุณจำเป็นต้องเริ่มระบบใหม่เพื่อทำให้การอัพเกรดเสร็จสมบูรณ์\n" "หากคุณเลือก 'y' จะเป็นการเริ่มระบบใหม่" #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li ด้วยความเร็ว " "%(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "กำลังดาวน์โหลดไฟล์ที่ %(current)li จากทั้งหมด %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "แสดงความคืบหน้าของแแต่ละแฟ้ม" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "ยกเลิกการปรับปรุงรุ่น" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "ปรับปรุงรุ่นต่อจากคราวที่แล้ว" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "ต้องการยกเลิกการปรับปรุงที่กำลังทำอยู่หรือไม่?\n" "\n" "ระบบอาจจะไม่มั่นคงถ้าคุณยกเลิกการปรับปรุง " "ขอแนะนำเป็นอย่างยิ่งให้คุณดำเนินการปรับปรุงต่อไป" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "เริ่มการปรับปรุงรุ่น" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "แทนที่" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "ข้อแตกต่างระหว่างไฟล์" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "ส่งรายงานปัญหา" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "ดำเนินการต่อไป" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "เริ่มการปรับปรุงหรือไม่?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "เริ่มระบบใหม่เพื่อให้การปรับรุ่นสมบูรณ์\n" "โปรดบันทึกงานของท่านก่อนดำเนินการต่อ" #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "ปรับปรุงชุดเผยแพร่" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "กำลังตั้งค่าช่องซอฟต์แวร์ใหม่" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "เริ่มเครื่องคอมพิวเตอร์ใหม่" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "เทอร์มินัล" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "ปรับปรุงรุ่น" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "สามารถปรับรุ่นเป็น Ubuntu รุ่นใหม่ได้แล้ว " "คุณต้องการปรับรุ่นเลยหรือไม่?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "ไม่ต้องปรับรุ่น" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "ถามฉันในครั้งหน้า" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "ใช่ ดำเนินการปรับรุ่นตอนนี้" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "คุณได้ตัดสินใจไม่ปรับรุ่น Ubuntu เป็นรุ่นใหม่" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "แสดงรุ่นและออกจากโปรแกรม" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "ไดเรกทอรีมีแฟ้มข้อมูล" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "เริ่มส่วนหน้า(frontend)ที่กำหนดไว้" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "เริ่มการปรับปรุงรุ่นบางส่วน" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "กำลังดาวน์โหลดเครื่องมือปรับรุ่น" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "ตรวจสอบว่าสามารถปรับปรุงไปสู่รุ่นพัฒนาล่าสุด(latest devel release)ได้หรือไม่" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "ทดลองอัพเกรดเป็นรุ่นล่าสุดด้วยตัวอัปเกรดจาก $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "ใช้งานโหมดการอัพเกรดแบบพิเศษ\n" "ขณะนี้สามารถใช้ 'desktop' สำหรับการอัปเกรดปกติของระบบ Desktop และ 'server' " "สำหรับระบบแม่ขาย" #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "ทดลองการปรับปรุงด้วย sandbox aufs overlay" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "ตรวจสอบเฉพาะตอนมีรุ่นใหม่ออกและรายงานผลผ่านทางรหัสออก" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Ubuntu รุ่นที่คุณใช้ไม่ให้การสนับสนุนอีกต่อไป" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "สำหรับข้อมูลการปรับรุ่น โปรดดู:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "ไม่เจอรุ่นล่าสุด" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "ยังไม่พร้อมที่จะปรับรุ่นในตอนนี้" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "มี '%s' รุ่นใหม่ที่ใช้ได้" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "เรียก 'do-release-upgrade' เพื่อที่จะทำการปรับปรุง" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s สามารถปรับรุ่นได้แล้ว" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "คุณได้ตัดสินใจไม่ปรับเป็นรุ่น Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/el.po0000644000000000000000000024235012431225715014757 0ustar # translation of el.po to Greek # This file is distributed under the same license as the PACKAGE package. # Copyright (C) 2005 THE PACKAGE'S COPYRIGHT HOLDER. # # Kostas Papadimas , 2005, 2006. # Fotis Tsamis , 2010. msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-25 14:24+0000\n" "Last-Translator: Simos Xenitellis \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: el\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Εξυπηρετητής για %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Κύριος εξυπηρετητής" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Προσαρμοσμένοι εξυπηρετητές" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Δεν μπορεί να υπολογιστεί η εισαγωγή του sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Αδυναμία εύρεσης πακέτων. Ενδεχομένως αυτός δεν είναι ένας δίσκος Ubuntu ή η " "αρχιτεκτονική είναι λανθασμένη;" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Αποτυχία προσθήκης του CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Υπήρξε σφάλμα κατά την προσθήκη του CD και η αναβάθμιση θα τερματιστεί. " "Παρακαλώ αναφέρετε το ως σφάλμα αν αυτό είναι ένα έγκυρο Ubuntu CD.\n" "\n" "Το μήνυμα σφάλματος ήταν:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Απομάκρυνση πακέτου που βρίσκεται σε κακή κατάσταση" msgstr[1] "Απομάκρυνση πακέτων που βρίσκονται σε κακή κατάσταση" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Το πακέτο '%s' βρίσκεται σε μια ασταθή κατάσταση και χρειάζεται " "επανεγκατάσταση, αλλά κανένα αποθετήριο δεν μπορεί να βρεθεί για αυτό. " "Θέλετε να αφαιρέσετε αυτό το πακέτο και να συνεχίσετε;" msgstr[1] "" "Τα πακέτα '%s' βρίσκονται σε μια ασταθή κατάσταση και χρειάζονται " "επανεγκατάσταση, αλλά κανένα αποθετήριο δεν μπορεί να βρεθεί για αυτά. " "Θέλετε να αφαιρέσετε αυτά τα πακέτα και να συνεχίσετε;" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "διακομιστής μπορεί να είναι υπερφορτωμένος" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Κατεστραμμένα πακέτα" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Το σύστημα σας περιέχει κατεστραμμένα πακέτα τα οποία δεν μπορούν να " "διορθωθούν με αυτό το λογισμικό. Παρακαλώ διορθώστε τα μέσω synaptic ή apt-" "get για να συνεχίσετε." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Κατά την προετοιμασία της αναβάθμισης προέκυψε ένα πρόβλημα που δεν μπορεί " "να επιλυθεί:\n" "%s\n" "\n" "Αυτό μπορεί να προκλήθηκε από:\n" "* Αναβάθμιση σε μια προέκδοση του Ubuntu\n" "* Εκτέλεση της τρέχουσας προέκδοσης του Ubuntu\n" "* Ανεπίσημα πακέτα λογισμικού που δεν παρέχονται από το Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Η λίστα των αλλαγών δεν είναι ακόμα διαθέσιμη.\n" "Προσπαθήστε ξανά αργότερα." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Αν δεν ισχύει τίποτα από αυτά, τότε παρακαλούμε αναφέρετε αυτό το σφάλμα " "χρησιμοποιώντας σε ένα τερματικό την εντολή 'ubuntu-bug ubuntu-release-" "upgrader-core'." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Αδυναμία υπολογισμού της αναβάθμισης" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Σφάλμα πιστοποίησης κάποιων πακέτων" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Δεν ήταν δυνατή η πιστοποίηση κάποιων πακέτων. Αυτό μπορεί να οφείλεται και " "σε ένα πρόβλημα δικτύου. Προσπαθήστε αργότερα. Δείτε παρακάτω τη λίστα των " "μη πιστοποιημένων πακέτων." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Το πακέτο '%s' σημειώθηκε για απομάκρυνση αλλά είναι στη μαύρη λίστα " "απομάκρυνσης." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Το απαραίτητο πακέτο '%s' έχει σημειωθεί για απομάκρυνση." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Προσπάθεια εγκατάστασης έκδοσης '%s' καταχωρημένης σε μαύρη λίστα" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Αδυναμία εγκατάστασης '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Ήταν αδύνατη η εγκατάσταση ενός απαραίτητου πακέτου. Παρακαλούμε αναφέρετέ " "το ως σφάλμα χρησιμοποιώντας 'ubuntu-bug ubuntu-release-upgrader-core' σε " "ένα τερματικό." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Αδυναμία εύρεσης μετα-πακέτου" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Το σύστημα σας δεν περιέχει κάποιο από τα πακέτα ubuntu-desktop, kubuntu-" "desktop, xubuntu-desktop ή edubuntu-desktop και έτσι δεν είναι δυνατός ο " "εντοπισμός της έκδοσης Ubuntu που χρησιμοποιείτε.\n" "\n" " Εγκαταστήστε ένα από αυτά τα πακέτα πρώτα μέσω synaptic ή apt-get πριν να " "συνεχίσετε." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Ανάγνωση λανθάνουσας μνήμης" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Αδυναμία λήψης αποκλειστικού κλειδώματος" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Αυτό συνήθως σημαίνει ότι εκτελείται ήδη μια άλλη εφαρμογή διαχείρισης " "πακέτων (όπως το apt-get ή το aptitude). Παρακαλώ κλείστε πρώτα αυτή την " "εφαρμογή." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Η αναβάθμιση μέσω απομακρυσμένης σύνδεσης δεν υποστηρίζεται." #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Εκτελείτε την αναβάθμιση μέσω μιας απομακρυσμένης σύνδεσης ssh από ένα " "περιβάλλον που δεν το υποστηρίζει. Παρακαλώ δοκιμάστε αναβάθμιση από γραμμή " "εντολών με «do-release-upgrade».\n" "\n" "Η αναβάθμιση τώρα θα ματαιωθεί. Παρακαλώ δοκιμάστε χωρίς ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Συνέχεια εκτέλεσης μέσω SSH;" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Αυτή η συνεδρία φαίνεται να εκτελείται μέσω ssh. Δε συνίσταται να " "αναβαθμίζετε μέσω ssh γιατί σε περίπτωση αποτυχίας είναι δυσκολότερη η " "επαναφορά.\n" "\n" "Αν συνεχίσετε θα ξεκινήσει μια επιπλέον υπηρεσία ssh στη θύρα «%s».\n" "Θέλετε να συνεχίσετε;" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Εκκίνηση πρόσθετου sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Για να διευκολύνετε την επαναφορά του συστήματος σε περίπτωση προβλήματος, " "μια επιπρόσθετη υπηρεσία τύπου sshd θα εκκινηθεί στην θύρα '%s'. Αν υπάρξει " "πρόβλημα στην υπάρχουσα υπηρεσία ssh μπορείτε να χρησιμοποιήσετε την " "επιπρόσθετη.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Αν βρίσκεστε πίσω από τείχος προστασίας, μπορεί να χρειαστεί να ανοίξετε " "προσωρινά αυτή τη θύρα. Καθώς αυτό είναι δυνητικά επικίνδυνο δεν γίνεται " "αυτόματα. Μπορείτε να ανοίξετε τη θύρα με π.χ.:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Δεν είναι δυνατή η αναβάθμιση" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Η αναβάθμιση από το '%s' στο '%s' δεν υποστηρίζεται με αυτό το εργαλείο." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Η ρύθμιση της δοκιμαστικής κατάστασης (sandbox) απέτυχε." #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" "Δεν ήταν δυνατή η δημιουργία περιβάλλοντος δοκιμαστικής κατάστασης (sandbox)." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Δοκιμαστική κατάσταση (sandbox)" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Αυτή η αναβάθμιση εκτελείτε σε δοκιμαστικό χώρο. Όλες οι αλλαγές γράφονται " "στο «%s» και θα χαθούν στην επόμενη επανεκκίνηση.\n" "\n" "*Καμία* αλλαγή που θα γραφτεί σε κατάλογο συστήματος από τώρα μέχρι την " "επόμενη επανεκκίνηση δε θα είναι μόνιμη." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Η εγκατάστασταση του python είναι κατεστραμένη. Παρακαλώ διορθώστε το " "symlink '/usr/bin/python'." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Το πακέτο 'debsig-verify' εγκαταστάθηκε" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Η αναβάθμιση δεν θα συνεχιστεί με το πακέτο αυτό εγκατεστημένο.\n" "Παρακαλούμε απεγκαταστήστε το με τον Synaptic ή με την εντολή 'apt-get " "remove debsig-verify' και μετά εκκινήστε την αναβάθμιση ξανά." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Δεν είναι δυνατή η εγγραφή στο '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Δεν είναι δυνατή η εγγραφή στον κατάλογο του συστήματος '%s' στο σύστημά " "σας. Η αναβάθμιση δε μπορεί να συνεχιστεί.\n" "Παρακαλώ σιγουρευτείτε ότι ο κατάλογος του συστήματος είναι εγγράψιμος" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Να συμπεριληφθούν οι τελευταίες ενημερώσεις από το δίκτυο;" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Το σύστημα μπορεί να χρησιμοποιήσει το διαδίκτυο για να κατεβάσει αυτόματα " "τις πιο πρόσφατες ενημερώσεις και να τις εγκαταστήσει κατά την διάρκεια της " "αναβάθμισης. Εάν έχετε σύνδεση στο διαδίκτυο αυτό συστήνεται.\n" "\n" "Η αναβάθμιση θα διαρκέσει περισσότερο, αλλά όταν ολοκληρωθεί, το σύστημα σας " "θα είναι ενημερωμένο. Μπορείτε να διαλέξετε να μην το κάνετε αυτό, αλλά " "πρέπει να εγκαταστήσετε τις καινούριες ενημερώσεις αμέσως μετά την " "αναβάθμιση.\n" "Αν απαντήσετε 'Όχι' εδώ, το δίκτυο δεν θα χρησιμοποιηθεί καθόλου." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "απενεργοποιημένο κατά την αναβάθμιση σε %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Δεν βρέθηκε έγκυρη εναλλακτική τοποθεσία αρχείων" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Ερευνώντας τις πληροφορίες αποθετηρίου σας, δεν βρέθηκε καταχώρηση ειδώλου " "διακομιστή για την αναβάθμιση. Αυτό μπορεί να συμβεί αν χρησιμοποιείτε " "εσωτερικό είδωλο ή οι πληροφορίες του ειδώλου διακομιστή έχουν λήξει.\n" "\n" "Θέλετε να επανεγγράψετε το αρχείο 'sources.list' οπωσδήποτε; Αν επιλέξετε " "'Ναί' εδώ θα αναβαθμιστούν όλες οι καταχωρήσεις από '%s' έως '%s'.\n" "Αν επιλέξετε 'Οχι' η αναβάθμιση θα ακυρωθεί." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Δημιουργία προεπιλεγμένων πηγών;" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Μετά από αναζήτηση στο αρχείο 'sources.list' δε βρέθηκε έγκυρη καταχώρηση " "για τον όρο '%s'.\n" "\n" "Θέλετε να προστεθούν οι προεπιλεγμένες καταχωρήσεις για '%s'; Αν επιλέξετε " "«Όχι», η αναβάθμιση θα ακυρωθεί." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Μη έγκυρες πληροφορίες αποθετηρίου" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Η αναβάθμιση των πληροφοριών αποθετηρίου είχε ως αποτέλεσμα ένα μη έγκυρο " "αρχείο, έτσι μια διαδικασία αναφοράς σφαλμάτων τίθεται σε λειτουργία." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Απενεργοποιήθηκαν πηγές τρίτων" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Μερικές καταχωρίσεις τρίτων έχουν απενεργοποιηθεί στο αρχείο souces.list. " "Μπορείτε να τις ενεργοποιήσετε μετά την αναβάθμιση με το εργαλείο 'software-" "properties' ή με τον διαχειριστή πακέτων σας." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Το πακέτο βρίσκεται σε αντιφατική κατάσταση" msgstr[1] "Τα πακέτα βρίσκονται σε αντιφατική κατάσταση" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Το πακέτο '%s' βρίσκεται σε ασταθή κατάσταση και χρειάζεται να εγκατασταθεί " "ξανά, αλλά κανένα αποθετήριο δεν μπορεί να βρεθεί για αυτό. Παρακαλούμε να " "επανεγκαταστήσετε το πακέτο χειροκίνητα ή να το απομακρύνετε από το σύστημα." msgstr[1] "" "Το πακέτα '%s' βρίσκονται σε ασταθή κατάσταση και χρειάζονται να " "εγκατασταθούν ξανά, αλλά κανένα αποθετήριο δεν μπορεί να βρεθεί για αυτά. " "Παρακαλούμε να επανεγκαταστήσετε τα πακέτα χειροκίνητα ή να τα απομακρύνετε " "από το σύστημα." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Σφάλμα κατά την ενημέρωση" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Δημιουργήθηκε ένα πρόβλημα κατά την ενημέρωση. Αυτό είναι συνήθως κάποιο " "πρόβλημα δικτύου. Παρακαλώ ελέγξτε τη σύνδεση δικτύου σας και προσπαθήστε " "ξανά." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Δεν υπάρχει αρκετός χώρος στο δίσκο" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Η αναβάθμιση διακόπηκε. Η αναβάθμιση χρειάζεται συνολικά %s ελεύθερο χώρο " "στον δίσκο '%s'. Παρακαλώ ελευθερώστε επιπλέον %s χώρου στον δίσκο '%s'. " "Αδειάστε τον κάδο απορριμμάτων και αφαιρέστε προσωρινά πακέτα από " "παλαιότερες εγκαταστάσεις χρησιμοποιώντας την εντολή «sudo apt-get clean»." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Έλεγχος των αλλαγών" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Θέλετε να ξεκινήσετε την αναβάθμιση;" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Η αναβάθμιση ακυρώθηκε" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Η αναβάθμιση θα ακυρωθεί τώρα και θα αποκατασταθεί το σύστημα στην αρχική " "κατάσταση. Μπορείτε να συνεχίσετε την αναβάθμιση αργότερα." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Αδυναμία λήψης των αναβαθμίσεων" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Η αναβάθμιση έχει ακυρωθεί. Ελέγξτε τη σύνδεσή σας στο διαδίκτυο ή τα μέσα " "εγκατάστασης και προσπαθήστε ξανά. Όλα τα αρχεία που έχουν ληφθεί μέχρι τώρα " "έχουν διατηρηθεί." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Σφάλμα κατά την υποβολή" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Γίνεται επαναφορά αρχικής κατάστασης συστήματος" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Αδυναμία εγκατάστασης των αναβαθμίσεων" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Εγκατάλειψη αναβάθμισης. Είναι πιθανόν να έχει αχρηστευθεί το σύστημά σας. " "Θα εκτελεστεί η εφαρμογή ανάκτησης (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Παρακαλούμε αναφέρετε αυτό το σφάλμα σε κάποιον περιηγητή στην διεύθυνση " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "και επισυνάψτε στην αναφορά του σφάλματος τα αρχεία που βρίσκονται στην θέση " "/var/log/dist-upgrade/ .\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Εγκατάλειψη αναβάθμισης. Παρακαλώ ελέγξτε την σύνδεσή σας στο διαδίκτυο ή το " "μέσο εγκατάστασης και δοκιμάστε ξανά. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Αφαίρεση παρωχημένων πακέτων;" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Διατήρηση" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Απομάκρυνση" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Παρουσιάστηκε ένα πρόβλημα κατά την εκκαθάριση. Παρακαλώ δείτε το παρακάτω " "μήνυμα για περισσότερες πληροφορίες. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Οι απαιτούμενες εξαρτήσεις δεν έχουν εγκατασταθεί" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Η απαιτούμενη εξάρτηση '%s' δεν έχει εγκατασταθεί. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Έλεγχος διαχειριστή πακέτων" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Απέτυχε η προετοιμασία της αναβάθμισης" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Η προετοιμασία του συστήματος για αναβάθμιση απέτυχε οπότε εκκινείται η " "διαδικασία αναφοράς σφάλματος." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Απέτυχε η λήψη των προαπαιτούμενων για την αναβάθμιση" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Το σύστημα δεν κατάφερε να λάβει όλες τις εξαρτήσεις που απαιτούνται για την " "αναβάθμιση. Η αναβάθμιση θα τερματιστεί τώρα και το σύστημα θα επαναφερθεί " "στην αρχική κατάσταση.\n" "\n" "Επιπροσθέτως, έχει ξεκινήσει η διαδικασία αναφορά του σφάλματος." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Ενημέρωση πληροφοριών αποθετηρίου" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Αποτυχία προσθήκης του CD-ROM" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Λυπούμαστε , η προσθήκη του CD-ROM δεν ήταν επιτυχής." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Μη έγκυρες πληροφορίες πακέτου" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Μετά την ενημέρωση της λίστας των πακέτων, το απαραίτητο πακέτο «%s» δε " "μπόρεσε να εντοπιστεί. Μπορεί να οφείλεται στην απουσία επίσημων πηγών για " "το πακέτο στις Πηγές λογισμικού ή στη προσωρινή απώλεια πρόσβασης σε πηγή " "που είναι ήδη ρυθμισμένη. Δείτε το /etc/apt/sources.list για τη τρέχουσα " "λίστα των ρυθμισμένων πηγών λογισμικού.\n" "Σε περίπτωση προσωρινής απώλειας πρόσβασης σε πηγή, μπορείτε να δοκιμάσετε " "ξανά την αναβάθμιση αργότερα." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Γίνεται λήψη" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Γίνεται αναβάθμιση" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Η αναβάθμιση ολοκληρώθηκε" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Η αναβάθμιση έχει ολοκληρωθεί αλλά υπήρξαν σφάλματα κατά τη διαδικασία της " "αναβάθμισης." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Γίνεται αναζήτηση για παρωχημένο λογισμικό" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Η αναβάθμιση συστήματος ολοκληρώθηκε." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Η μερική αναβάθμιση ολοκληρώθηκε." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Αδυναμία εύρεσης σημειώσεων έκδοσης" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Ο εξυπηρετητής μπορεί να είναι υπερφορτωμέμος " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Αδυναμία λήψης των σημειώσεων έκδοσης" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Παρακαλώ ελέγξτε τη σύνδεση σας με το διαδίκτυο." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "ταυτοποίηση «%(file)s» έναντι «%(signature)s» " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "αποσυμπίεση '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Αδυναμία εκτέλεσης του εργαλείου αναβαθμίσεων" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Είναι πιθανό αυτό να είναι ένα σφάλμα στο εργαλείο αναβάθμισης. Παρακαλούμε " "αναφέρετέ το ως σφάλμα χρησιμοποιώντας την εντολή 'ubuntu-bug ubuntu-release-" "upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Υπογραφή εργαλείου αναβάθμισης" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Εργαλείο αναβάθμισης" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Αποτυχία λήψης" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Η λήψη της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Η πιστοποίηση απέτυχε" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Η πιστοποίηση της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου ή " "εξυπηρετητή. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Αποτυχία αποσυμπίεσης" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Η αποσυμπίεση της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου ή " "εξυπηρετητή. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Η επαλήθευση απέτυχε" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Η επαλήθευση της αναβάθμισης απέτυχε. Πιθανόν να υπάρχει πρόβλημα δικτύου ή " "εξυπηρετητή. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Δεν μπορεί να εκτελεστεί η αναβάθμιση" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Αυτό συμβαίνει τυπικά από σύστημα όπου το /tmp έχει προσαρτηθεί με τη σημαία " "noexec (μη εκτελέση). Παρακαλώ προσαρτήστε ξανά δίχως τη σημαία noexec και " "εκτελέστε πάλι τη διαδικασία αναβάθμισης." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Το μύνημα λάθους είναι '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Αναβάθμιση" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Σημειώσεις έκδοσης" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Μεταφόρτωση πρόσθετων πακέτων αρχείων..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Αρχείο %s από %s στα %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Αρχείο %s από %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Παρακαλώ εισάγετε τον δίσκο '%s' στον οδηγό '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Αλλαγή μέσου" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms σε χρήση" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Το σύστημα σας χρησιμοποιεί τον 'evms' διαχειριστή για την ένταση ήχου στο " "/proc/mounts. Το 'evms' λογισμικό πλέον δεν υποστηρίζεται, παρακαλούμε " "απενεργοποιήστε το και τρέξτε την αναβάθμιση ξανά όταν απενεργοποιηθεί." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "Η κάρτα γραφικών σας μπορεί να μην υποστηρίζεται πλήρως στο Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Η χρήση του γραφικού περιβάλλοντος «unity» δεν υποστηρίζεται πλήρως από την " "κάρτα γραφικών σας. Ίσως καταλήξετε σε ένα πολύ αργό περιβάλλον μετά την " "αναβάθμιση. Η συμβουλή μας είναι να κρατήσετε την έκδοση LTS του Ubuntu προς " "το παρόν. Για περισσότερες πληροφορίες δείτε " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Θέλετε ακόμα " "να συνεχίσετε με την αναβάθμιση;" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Η κάρτα γραφικών σας ίσως να μην υποστηρίζεται πλήρως στο Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Η υποστήριξη στο Ubuntu 12.04 LTS για τις κάρτες γραφικών της Intel είναι " "περιορισμένη και ίσως αντιμετωπίσετε προβλήματα μετά την αναβάθμιση. Για " "περισσότερες πληροφορίες δείτε στο σύνδεσμο " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Θέλετε να " "συνεχίσετε την αναβάθμιση;" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Η αναβάθμιση μπορεί να μειώσει την απόδοση των εφέ, των παιχνιδιών και άλλων " "απαιτητικών προγραμμάτων." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Αυτή τη στιγμή, ο υπολογιστής σας χρησιμοποιεί τον οδηγό γραφικών 'nvidia' " "της NVIDIA. Δεν υπάρχει διαθέσιμη έκδοση του οδηγού αυτού που να λειτουργεί " "με την κάρτα γραφικών σας στο Ubuntu 10.04 LTS.\n" "\n" "Θέλετε να συνεχίσετε;" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Αυτή τη στιγμή, ο υπολογιστής σας χρησιμοποιεί τον οδηγό γραφικών 'fglrx' " "της AMD. Δεν υπάρχει διαθέσιμη έκδοση του οδηγού αυτού που να λειτουργεί με " "το υλικό σας στο Ubuntu 10.04 LTS.\n" "\n" "Θέλετε να συνεχίσετε;" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Όχι i686 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Το σύστημά σας χρησιμοποιεί ένα i586 CPU ή CPU που δεν έχει την επέκταση " "'cmov'. Όλα τα πακέτα χτίστηκαν με βελτιστοποιήσεις που απαιτούν i686 ως η " "ελάχιστη αρχιτεκτονική. Δεν είναι δυνατόν να αναβαθμίσετε το σύστημά σας σε " "μια νέα έκδοση του Ubuntu με αυτό το υλικό." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Δεν υπάρχει ARMv6 CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Το σύστημά σας χρησιμοποιεί ARM CPU που είναι παλαιότερος από την " "αρχιτεκτονική ARMv6. Όλα τα πακέτα του karmic έχουν κατασκευαστεί με " "βελτιώσεις που απαιτούν τουλάχιστον την ARMv6 ως αρχιτεκτονική. Δεν είναι " "δυνατή η αναβάθμιση του συστήματός σας στη νέα Ubuntu διανομή με αυτό το " "υλικό." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Αρχικοποίηση μη διαθέσιμη" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Το σύστημά σας φαίνεται πως είναι ένα εικονικοποιημένο περιβάλλον χωρίς " "δαίμονα εκκίνησης, π.χ. Linux-VServer. Το Ubuntu 10.04 LTS δεν μπορεί να " "λειτουργήσει με αυτόν τον τύπο περιβάλλοντος, αφού χρειάζεται πρώτα μια " "ενημέρωση της ρύθμισης της εικονικής μηχανής.\n" "\n" "Θέλετε σίγουρα να συνεχίσετε;" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Δοκιμαστική αναβάθμιση (sandbox) με χρήση aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Χρήση της διαδρομής για αναζήτηση ενός cdrom με πακέτα για αναβάθμιση" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Χρήση περιβάλλοντος διασύνδεσης. Διαθέσιμα μέχρι στιγμής:\n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*ΔΕΝ ΠΡΟΤΕΙΝΕΤΑΙ ΠΙΑ* αυτή η επιλογή θα αγνοηθεί" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Εκτέλεση μιας μερικής αναβάθμιση (δεν θα αλλαχθεί το αρχείο sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Απενεργοποίηση οθόνης υποστήριξης GNU" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Ρύθμιση του datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Η λήψη ολοκληρώθηκε" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Λήψη αρχείου %li από %li με %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Απομένουν περίπου %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Λήψη αρχείου %li από %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Γίνεται εφαρμογή αλλαγών" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "προβλήματα εξαρτήσεων - αφήνεται μη ρυθμισμένο" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Αδυναμία εγκατάστασης '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Η αναβάθμιση θα συνεχιστεί αλλά το πακέτο '%s' μπορεί να μην λειτουργεί. " "Παρακαλούμε εξετάστε το ενδεχόμενο αν θέλετε να καταθέσετε αναφορά σφάλματος " "σχετικά με αυτό." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Αντικατάσταση προσαρμοσμένου αρχείου ρύθμισης\n" "'%s';" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Οι αλλαγές που έχετε κάνει σε αυτό το αρχείο ρυθμίσεων θα χαθούν αν " "επιλέξετε να το αντικαταστήσετε με μια νεότερη έκδοση." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Η εντολή 'diff' δεν βρέθηκε" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Προέκυψε μοιραίο σφάλμα" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Παρακαλώ αναφέρετε αυτό σαν σφάλμα (αν δεν το έχετε ήδη κάνει) και " "συμπεριλάβετε τα αρχεία /var/log/dist-upgrade/main.log και /var/log/dist-" "upgrade/apt.log στην αναφορά σας. Εγκατάλειψη αναβάθμισης." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Πατήθηκε το Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Αυτό θα ακυρώσει την τρέχουσα λειτουργία και μπορεί να αφήσει σφάλματα στο " "σύστημα. Είστε βέβαιοι για την επιλογή αυτή;" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Για να αποφύγετε απώλεια δεδομένων, κλείστε όλες τις ανοικτές εφαρμογές και " "έγγραφα." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Δεν υποστηρίζεται πλέον από την Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Υποβάθμιση (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Αφαίρεση (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Δεν χρειάζεται πλέον (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Εγκατάσταση (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Αναβάθμιση (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Εμφάνιση διαφορών >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Απόκρυψη διαφορών" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Σφάλμα" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Ακύρωση" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Κλείσιμο" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Εμφάνιση τερματικού >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Απόκρυψη τερματικού" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Πληροφορίες" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Λεπτομέρειες" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Δεν υποστηρίζεται πλέον (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Απομάκρυνση %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Αφαίρεση (ήταν εγκατεστημένο αυτόματα) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Εγκατάσταση %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Αναβάθμιση %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Απαιτείται επανεκκίνηση" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Επανεκκινήστε το σύστημα για να ολοκληρωθεί η αναβάθμιση" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Επανε_κκίνηση τώρα" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Θέλετε να ακυρώσετε την αναβάθμιση;\n" "\n" "Το σύστημα μπορεί να μην είναι χρησιμοποιήσιμο, αν ακυρώσετε την αναβάθμιση. " "Προτείνεται οπωσδήποτε να την συνεχίσετε." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Ακύρωση αναβάθμισης;" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li ημέρα" msgstr[1] "%li ημέρες" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li ώρα" msgstr[1] "%li ώρες" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li λεπτό" msgstr[1] "%li λεπτά" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li δευτερόλεπτο" msgstr[1] "%li δευτερόλεπτα" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Αυτή η μεταφόρτωση θα χρειαστεί περίπου %s με μια σύνδεση 1Mbit DSL και " "περίπου %s με ένα 56k μόντεμ." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Αυτή η λήψη θα διαρκέσει περίπου %s με την σύνδεση σας. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Γίνεται προετοιμασία της αναβάθμισης" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Απόκτηση νέων καναλιών λογισμικού" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Γίνεται λήψη νέων πακέτων" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Γίνεται εγκατάσταση των αναβαθμίσεων" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Εκκαθάριση" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d εγκατεστημένο πακέτο δεν υποστηρίζεται πλέον από την Canonical. " "Μπορείτε όμως να βρείτε υποστήριξη από την κοινότητα." msgstr[1] "" "%(amount)d εγκατεστημένα πακέτα δεν υποστηρίζονται πλέον από την Canonical. " "Μπορείτε όμως να βρείτε υποστήριξη από την κοινότητα." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d πακέτο πρόκειται να απομακρυνθεί." msgstr[1] "%d πακέτα πρόκειται να απομακρυνθούν." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d νέο πακέτο πρόκειται να εγκατασταθεί." msgstr[1] "%d νέα πακέτα πρόκειται να εγκατασταθούν." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d πακέτο πρόκειται να αναβαθμιστεί." msgstr[1] "%d πακέτα πρόκειται να αναβαθμιστούν." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Θα πρέπει να κάνετε συνολική λήψη %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Η εγκατάσταση της αναβάθμισης ενδέχεται να διαρκέσει αρκετές ώρες. Από τη " "στιγμή που θα ολοκληρωθεί η λήψη, η διαδικασία δε γίνεται να ματαιωθεί." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Η λήψη και εγκατάσταση μιας αναβάθμισης μπορεί να διαρκέσει μερικές ώρες. " "Από τη στιγμή που θα ολοκληρωθεί η λήψη, η διαδικασία της αναβάθμισης δε " "μπορεί να διακοπεί." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Η απομάκρυνση των πακέτων ενδέχεται να διαρκέσει αρκετές ώρες. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Το λογισμικό σε αυτό τον υπολογιστή είναι ενημερωμένο." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Δεν υπάρχουν διαθέσιμες αναβαθμίσεις για το σύστημα σας. Η αναβάθμιση θα " "ακυρωθεί." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Απαιτείται επανεκκίνηση" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Η αναβάθμιση ολοκληρώθηκε και απαιτείται επανεκκίνηση. Θέλετε να γίνει " "επανεκκίνηση τώρα;" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Παρακαλώ αναφέρετε σαν σφάλμα και συμπεριλάβετε τα αρχεία /var/log/dist-" "upgrade/main.log και /var/log/dist-upgrade/apt.log στην αναφορά σας. Η " "αναβάθμιση ματαιώθηκε.\n" "Το αρχικό sources.list σας αποθηκεύτηκε στο " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Εγκατάλειψη" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Υποβαθμίστηκε:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Για να συνεχίσετε πιέστε [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Συνέχεια [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Λεπτομέρειες [λ]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "ν" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "ο" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "λ" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Δεν υποστηρίζεται πλέον: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Απομάκρυνση: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Εγκατάσταση: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Αναβάθμιση: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Συνέχεια [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Για να ολοκληρωθεί η αναβάθμιση, απαιτείται επανεκκίνηση.\n" "Αν επιλέξετε 'y' ο υπολογιστής θα επανεκκινήσει." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Λήψη αρχείου %(current)li από %(total)li με %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Λήψη αρχείου %(current)li από %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Εμφάνιση προόδου μοναδικών αρχείων" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "Α_κύρωση αναβάθμισης" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Συνέχεια αναβάθμισης" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Ακύρωση της αναβάθμισης που εκτελείται;\n" "\n" "Το σύστημα σας μπορεί να γίνει ασταθές αν ακυρώσετε την αναβάθμιση. Σας " "συστήνουμε τα συνεχίσετε την αναβάθμιση." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "Έναρ_ξη αναβάθμισης" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Αντικατά_σταση" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Διαφορά μεταξύ των αρχείων" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "Ανα_φορά σφάλματος" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Συνέχεια" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Έναρξη της αναβάθμισης;" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Επανεκκινήστε το σύστημα για να ολοκληρωθεί η αναβάθμιση\n" "\n" "Παρακαλούμε να αποθηκεύσετε τις εργασίες σας πριν συνεχίσετε." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Αναβάθμιση διανομής" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Αναβάθμιση του Ubuntu στην έκδοση 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Γίνεται καθορισμός νέων καναλιών λογισμικού" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Γίνεται επανεκκίνηση του υπολογιστή" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Τερματικό" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Αναβάθμιση" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Μια νέα έκδοση του Ubuntu είναι διαθέσιμη. Θα θέλετε να αναβαθμίσετε το " "σύστημα; " #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Να μην γίνει αναβάθμιση" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Ερώτηση αργότερα" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ναι, αναβάθμιση τώρα" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Αρνηθήκατε να αναβαθμίσετε στο νέο Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Μπορείτε να αναβαθμίσετε αργότερα ανοίγοντας την Ενημέρωση λογισμικού και " "κάνοντας κλικ στην επιλογή «Αναβάθμιση»." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Εκτέλεση μιας αναβάθμισης της έκδοσης της διανομής σας" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" "Για να αναβαθμίσετε το Ubuntu, πρέπει να επιβεβαιώσετε με τον κωδικό σας." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Εκτέλεση μιας μερικής αναβάθμισης" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" "Για να εκτελέσετε μια μερική αναβάθμιση, πρέπει να επιβεβαιώσετε με τον " "κωδικό σας." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Εμφάνιση έκδοσης και έξοδος" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Κατάλογος που περιέχει αρχεία δεδομένων" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Τρέξε το συγκεκριμένο κέλυφος" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Γίνεται εκτέλεση της μερικής αναβάθμισης" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Λήψη του εργαλείου αναβάθμισης έκδοσης" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Έλεγχος για την δυνατότητα αναβάθμισης στην τελευταία έκδοση ανάπτυξης" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Δοκιμάστε να κάνετε αναβάθμιση στην τελευταία έκδοση χρησιμοποιώντας τον " "αναβαθμιστή από το $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Εκτέλεση σε ειδική λειτουργία αναβάθμισης.\n" "Υποστηρίζεται μέχρι στιγμής το 'desktop' για συνηθισμένη αναβάθμιση ενός " "υπολογιστή γραφείου και 'server' για εξυπηρετητές." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Δοκιμαστική αναβάθμιση με χρήση sandbox aufs overlay" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Έλεγξε μόνο αν μια νέα έκδοση της διανομής είναι διαθέσιμη και ανέφερε τα " "αποτελέσματα μέσω του κωδικού εξόδου" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Γίνεται έλεγχος για νέα έκδοση του Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Η έκδοσή σας του Ubuntu δεν υποστηρίζεται πλέον." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Για πληροφορίες αναβάθμισης, παρακαλούμε επισκεφθείτε:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Δε βρέθηκε καμία νέα έκδοση" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Η αναβάθμιση της διανομής δεν είναι δυνατή αυτήν την στιγμή." #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Η αναβάθμιση της διανομής δεν είναι δυνατή αυτήν την στιγμή, παρακαλώ " "δοκιμάστε αργότερα. Ο εξυπηρετητής ανέφερε: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Μια νέα έκδοση '%s' είναι διαθέσιμη." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" "Εκτελέστε την εντολή 'do-release-upgrade' για να αναβαθμίσετε σε αυτήν." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Η αναβάθμιση του Ubuntu %(version)s είναι διαθέσιμη" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Αρνηθήκατε τη αναβάθμιση σε Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Προσθήκη εξόδου εκσφλαμάτωσης" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Απαιτείται πιστοποίηση για να εκτελέσετε μια μερική αναβάθμιση" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "" #~ "Απαιτείται πιστοποίηση για να εκτελέσετε μια αναβάθμιση έκδοσης της διανομής " #~ "σας" ubuntu-release-upgrader-0.220.10/po/eo.po0000644000000000000000000017243712431225715014772 0ustar # Esperanto translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:44+0000\n" "Last-Translator: Michael Moroni \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: eo\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Servilo por %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Ĉefa servilo" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Propraj serviloj" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Ne eblis kalkuli eron de sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Neeblas trovi ajnan pakaĵdosieron. Ĉu eble ĉi tiu ne estas Ubuntu-disko aŭ " "neĝustas ĝia arkitekturo?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Malsukcesis aldoni la KD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Estis eraro dum aldono de la KD, la aktualigo ĉesos. Bonvolu raporti ĉi tion " "kiel cimon, se ĉi tio estas valida Ubuntu-KD.\n" "\n" "La erarmesaĝo estis:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Forigi pakaĵon en erara stato" msgstr[1] "Forigi pakaĵojn en erara stato" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "La pakaĵo '%s' estas en nekohera stato kaj estas reinstalenda, sed neniu " "arkivo estas trovebla por ĝi. Ĉu vi volas forigi ĉi tiun pakaĵon nun por " "daŭrigi?" msgstr[1] "" "La pakaĵoj '%s' estas en nekohera stato kaj estas reinstalendaj, sed neniu " "arkivo estas trovebla por ili. Ĉu vi volas forigi ĉi tiujn pakaĵojn nun por " "daŭrigi?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Eble la servilo estas superŝarĝita" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Difektaj pakaĵoj" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Via sistemo enhavas difektajn pakaĵojn, kiujn ĉi tiu programo ne povas " "ripari. Bonvolu ripari ilin per Synaptic aŭ Apt-get antaŭ ol daŭrigi." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Nesolvebla problemo okazis dum kalkulado de la ĝisdatigo:\n" "%s\n" "\n" " Ĉi tio estas kaŭzebla de:\n" " * Ĝisdatigado al antaŭeldona versio de Ubuntu\n" " * Rulado de la nuna antaŭeldona versio de Ubuntu\n" " * Neoficiala programaraj pakaĵoj ne provizitaj de Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Ĉi tio probable estas maldaŭra problemo, bonvolu reprovi poste." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Ne eblas kalkuli la ĝisdatigon" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Eraro dum aŭtentigado de iuj pakaĵoj" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Ne eblis aŭtentigi iujn pakaĵojn, eble pro maldaŭra reta problemo. Eble vi " "volas reprovi poste. Vidu malsupre por listo de neaŭtentigitaj pakaĵoj." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "La pakaĵo '%s' estas markita por forigi sed ĝi estas en la nigra listo por " "forigoj." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "La esenca pakaĵo '%s' estas markita por forigi." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Provo instali version '%s', kiu estas en la nigra listo" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Ne eblis instalo de '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Ne eblas diveni meta-pakaĵon" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Via sistemo ne enhavas pakaĵon ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop aŭ edubuntu-desktop kaj ne eblis detekti kiun version de Ubuntu vi " "rulas.\n" " Bonvolu unue instali iun el la suprajn pakaĵojn uzante synaptic aŭ apt-get " "antaŭ ol daŭrigi." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Legado de kaŝmemoro" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Ne eblas ekskluzive ŝlosi." #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Tio plej ofte signifas ke alia pakaĵomastruma aplikaĵo (eble apt-get aŭ " "aptitude) jam ruliĝas. Bonvolu unue fermi tiun aplikaĵon." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Promociado trans fora konekto ne subtenata" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Vi ĝisdatigas laŭ fora ssh-konekto per fasado kiu ne subtenas tion. Bonvolu " "provi ĝisdatigadi en teksta reĝimo per 'do-release-upgrade'.\n" "\n" "La ĝisdatigado nun ĉesos. Bonvolu reprovi sen ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Ĉu daŭrigi ruladon sub SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Ŝajnas, ke ĉi tiu seanco ruliĝas laŭ ssh. Ne estas rekomendate ĝisdatigadi " "laŭ ssh nun ĉar kaze de eraro estas pli malfacile ripari ĝin.\n" "\n" "Se vi daŭrigas, aldona ssh-demono estos lanĉata je pordo '%s\n" "Ĉiu vi volas daŭrigi?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Lanĉante ekstran sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Por plifaciligi la riparon en kazo de fiasko, aldona sshd estos startigata " "je pordo '%s'. Se io ajn fiaskas pri la ruliĝanta ssh, vi ankoraŭ povos " "konekti al la aldona.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Se vi uzas fajroŝirmilon, eble vi devas provizore malfermi tiun ĉi pordon. " "Pro la potenciala danĝero tio ne aŭtomate okazas. Vi povas malfermi la " "pordon per ekz.:\n" "‘%s’" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Ne povas ĝisdatigi" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Ĉi tiu ilo ne ebligas ĝisdatigon de '%s' al '%s'." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Instalo de la testludejo malsukcesis." #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Estis neeble krei la testludejan medion." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Testludeja reĝimo" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Ĉi tiu promociado estas plenumata en proveja reĝimo. Ĉiuj ŝanĝoj estos " "konservataj al ‘%s’ kaj ili estos perditaj post la sekva restartigo.\n" "\n" "Ekde nun ĝis la sekva restartigo, *neniu* ŝanĝo al sistemdosierujo estos " "permanenta." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Via pitona instalado estas damaĝita. Bonvolu ripari la simbolan ligilon " "'/usr/bin/python'." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Pakaĵo 'debsig-verify' estas instalita." #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "La ĝisdatigo ne povas progresi, dum ke tiu pakaĵo restas instalita.\n" "Bonvolu unue forigi ĝin per synaptic aŭ 'apt-get remove debsig-verify' kaj " "re-ruli la aktualigon." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Ne povis konservi al ‘%s’" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Ne eblas konservi al la sistemdosierujo ‘%s’ sur via sistemo. Ne eblas " "daŭrigi la promociadon.\n" "Bonvolu certigi ke la sistemdosierujo estas skribebla." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Ĉu inkluzivi la plej lastajn ĝisdatigojn el la interreto?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "La ĝisdatigsistemo povas per la Interreto aŭtomate elŝuti la plej novajn " "ĝisdatigojn kaj tuj instali ilin. Se vi posedas retaliron, ĉi tiu metodo " "estas ege rekomendita.\n" "\n" "La ĝisdatigo daŭros pli longe, sed kiam ĝi estos preta, via sistemo estos " "tute ĝisdatigita. Vi povas elekti ne fari ĉi tion, sed tiukaze vi prefere " "instalu la plej novajn ĝisdatigojn baldaŭ post ĝisdatigo. Se vi respondas " "'ne' ĉi tie, la reto estos entute ne uzata." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "malaktivigita dum ĝisdatigo al %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Ne eblis trovi validan spegulejon" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Serĉado en via deponejinformo ne trovis spegulan valoron por la ĝisdatigo. " "Tio povas okazi, se vi rulas internan spegulon aŭ se la spegul-informo estas " "eksdata.\n" "\n" "Ĉu vi tamen volas reskribi vian dosieron 'sources.list\"? Se vi decidas, ke " "'jes', ĉiuj '%s'-valoroj iĝos '%s'-valoroj.\n" "Se vi decidas, ke 'ne', la ĝisdatigo ĉesos." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Generi defaŭltajn fontojn?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Serĉado en via dosiero 'sources.list' ne trovis valoron por '%s'.\n" "\n" "Ĉu vi volas aldoni normajn valorojn por '%s'? Se vi decidas, ke 'ne', la " "ĝisdatigo nuliĝos." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Deponeja informo ne valida" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "La promociado de la deponejaj informoj rezultiĝis en nevalidan dosieron, do " "cimraportaĵo estas aŭtomate farata." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Aliulaj fontoj malŝaltitaj" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Kelkaj triapartiaj elementoj en via sources.list-o estis malŝaltitaj. Vi " "povas reŝalti ilin post la ĝisdatigo per la ilo 'software-properties' aŭ per " "via pakaĵadministrilo." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pakaĵo en nekohera stato" msgstr[1] "Pakaĵoj en nekohera stato" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "La stato de pakaĵo '%s' estas malkonsekvenca kaj ĝi devas esti reinstalita, " "sed ne troviĝas arkivo por ĝi. Bonvolu reinstali la pakaĵon permane aŭ " "forigi ĝin." msgstr[1] "" "La stato de pakaĵoj '%s' estas malkonsekvenca kaj ili devas esti " "reinstalitaj, sed ne troviĝas arkivo por ili. Bonvolu reinstali la pakaĵojn " "permane aŭ forigi ilin." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Eraro dum ĝisdatigo" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Problemo okazis dum la ĝisdatigo. Kutime tio okazas pro iu reta problemo, " "bonvolu kontroli vian retan konekton kaj reprovi." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Ne estas sufiĉa libera loko en disko" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "La ĝisdatigo ĉesiĝis. La ĝisdatigo bezonas entute %s da libera spaco sur " "disko '%s'. Bonvolu liberigi almenaŭ %s da plia diskspaco sur '%s'. " "Malplenigu vian rubujon kaj forigu provizorajn pakaĵojn de antaŭaj instaloj " "uzante 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Kalkulado de la ŝanĝoj" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Ĉu vi volas komenci la ĝisdatigon?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Ĝisdatigo nuligita" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "La ĝisdatigado nun ĉesos kaj la originala sistemstato estos restaŭrita. Vi " "povas daŭrigi la ĝisdatigadon je alia fojo." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Ne eblis elŝuti la ĝisdatigojn" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "La ĝisatigo estas ĉesigita. Bonvolu kontroli vian interretan kontekton aŭ " "instalan datumportilon kaj provu denove. Ĉiuj ĝis nun elŝutitaj dosieroj " "estas mantenataj." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Eraro dum farado" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Restarigante originan sisteman staton" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Ne eblis instali la ĝisdatigojn" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "La ĝisdatigo ĉesiĝis. Via sistemo povas esti en neuzebla stato. " "Riparproceduro nun ruliĝos (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Bonvole raportu ĉi tiun cimon en retumilo ĉe " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "kaj alkroĉi la dosierojn en /var/log/dist-upgrade/ en la raporto de cimo.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "La ĝisdatigo ĉesiĝis. Bonvolu kontroli vian retkonekton aŭ instal-" "datumportilojn kaj reprovu. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Ĉu forigi arkaikajn pakaĵojn?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "Konservi" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "Forigi" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Problemo okazis dum la purigado. Bonvolu vidi la ĉi-suban mesaĝon por pliaj " "informoj. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Bezonataj dependaĵoj ne estas instalitaj" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "La bezonata dependaĵo '%s' ne estas instalita. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Kontrolado de pakaĵa direktisto" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Preparado de la ĝisdatigo malsukcesis" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Pretigado de la sistemo por la ĝisdatigo fiaskis, do raporto de cimo estas " "startigota." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Akirado de risursoj bezonataj por la ĝisdatigo malsukcesis" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "La sistemo ne povis akiri la postulaĵojn por la promocio. La promociado nun " "estas ĉesata kaj la sistemo restariĝos al la originala stato.\n" "\n" "Aldone, cimraportaĵo estas farata." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Ĝisdatigo de deponeja informo" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Fiaskis aldoni la lumdiskon" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Bedaŭrinde la aldono de la lumdisko fiaskis." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Nevalida pakaĵa informo" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Prenado" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Aktualigo" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Ĝisdatigo finita" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "La ĝisdatigo kompletiĝis sed okazis eraroj dum la ĝisdatigado." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Serĉado de ne plu uzataj programaroj" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Sistema ĝisdatigo estas kompleta." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "La parta ĝisdatigo finiĝis." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Ne eblis trovi la eldonajn notojn" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "La servilo eble estas tro uzata. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Ne eblis elŝuti la eldonajn notojn" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Bonvolu kontroli vian interretan konekton." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "aŭtentigi '%(file)s' per '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "eltiras ‘%s’" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Ne eblis ruli la ĝisdatigilon" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Ĝisdatigu ilan subskribon" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Ĝisdatigilo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Malsukcesis alporti" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Malsukcesis alporti la ĝisdatigon. Eble okazis reta problemo. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Malsukcesis aŭtentikigi" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Malsukcesis aŭtentikigi la ĝisdatigon. Eble okazis problemo pri la reto aŭ " "pri la servilo. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Malsukcesis ekstrakti" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Malsukcesis malpaki la ĝisdatigon. Eble okazis problemo pri la reto aŭ pri " "la servilo. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Fiaskis la programkontrolo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Konfirmado de la ĝisdatigo malsukcesis. Eble estas problemo pri la reto aŭ " "servilo. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Ne povas ruli la ĝisdatigon" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Tio kutime estas kaŭzata pro sistemo kiam /tmp estas surmetita kun noexec. " "Bonvolu resurmeti sen noexec kaj ruli la promocion denove." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "La erarmesaĝo estas '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Promocii" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Eldonaj Notoj" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Elŝutas aldonajn pakaĵdosierojn..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Bestand %s van %s met %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Dosiero %s el %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Bonvolu enmeti je '%s' en ingon '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Ŝanĝo de Datumportilo" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms uzata" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Via sistemo uzas la datumportilan mastrumilon 'evms' en /proc/mounts. La " "programaro 'evms' ne plu estas subtenata, bonvolu malŝalti ĝin kaj poste " "denove rulu la ĝisdatigon." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Via grafika aparataro eble ne estas tute subtenata de Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "La subteno de Ubuntu 12.04 LTS por via grafika aparataro de Intel estas " "limigita kaj vi povas trovi problemojn post la promocio. Por pliaj informoj, " "vidu https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Ĉu vi volas " "daŭrigi kun la promocio?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Promociado povas redukti labortablajn efektojn, kaj rendimenton en ludoj kaj " "aliaj grafike intensaj programoj." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Tiu ĉi komputilo nun uzas la grafikan pelilon 'nvidia' de NVIDIA. Ne " "disponeblas versio de tiu ĉi pelilo, kiu funkcias kun via ekrankarto en " "Ubuntu 10.04 LTS.\n" "Ĉu vi volas daŭrigi?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Tiu ĉi komputilo nun uzas la AMD 'fglrx'-grafikan pelilon. Ne haveblas " "versio de tiu pelilo kiu funkcias per via aparataro en Ubuntu 10.04 LTS.\n" "Ĉu vi volas daŭrigi?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Neniu i686-procesoro" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Via sistemo uzas i586-procesoron aŭ procesoron sen la 'cmov'-etendaĵo. Ĉiuj " "pakaĵoj kunmetiĝis kun optimigoj kiuj postulas minimume i686-procesoron. Ne " "eblas ĝisdatigi vian sistemon al nova Ubuntu-eldono kun ĉi tiu aparataro." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Ne estas ARMv6-CPU" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Via sistemo uzas ARM-ĉefprocesoron kiu pli aĝas ol la ARMv6-arkitekturo. " "Ĉiuj pakaĵoj en karmic estas kompilitaj kun optimumigoj kiuj minimume " "postulas la ARMv6-arkitekturon. Ne eblas ĝisdatigi vian sistemon al nova " "Ubuntu-eldono kun ĉi tiu aparataro." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Ne disponeblas 'init'" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Ŝajne via sistemo estas virtuala medio sen 'init'-demono, ekzemple Linux-" "VServer. Ubuntu 10.04 ne povas funkcii en tia medio. Unue vi ĝisdatigu la " "agordojn de via virtuala maŝino.\n" "Ĉu vi vere volas daŭrigi?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Proveja ĝisdatigo uzanta aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Uzu la donitan vojprefikson por serĉi lumdiskon kun aktualigeblaj pakaĵoj" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Uzu fasadon. Aktuale disponeblaj: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*EVITINDA* ĉi tiu opcio estos ignorata" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Ĝisdatigu nur parte (ne rekonservu la dosieron sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Malŝalti GNU-ekransubtenon" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Agordi datendosierujon" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Prenado estas preta" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Prenas dosieron %li el %li per %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Ĉirkaŭ %s restas" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Prenante dosieron %li el %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Aplikanta ŝanĝojn" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "dependecaj problemoj - agordado ne farita" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Ne eblis instali '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "La ĝisdatigo daŭros sed la pakaĵo '%s' eble ne funkcios. Bonvolu konsideri " "sendi cim-raportaĵon pri ĝi." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Ĉu anstataŭigi la modifitan agordan dosieron\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Vi perdos ĉiujn ŝanĝojn, kiujn vi faris pri ĉi tiu agorda dosiero, se vi " "elektas anstataŭigi ĝin per pli nova versio." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "La komando 'diff' ne estis trovita" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Neriparebla eraro okazis" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Bonvolu fari cimraporton (se vi ne jam faris) kaj aldoni la dosierojn " "/var/log/dist-upgrade/main.log kaj /var/log/dist-upgrade/apt.log en via " "raporto. La ĝisdatigo ĉesiĝis.\n" "Via originala sources.list estis konservita en " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Stir-c premita" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Ĉi tio ĉesigos la operacion kaj povas lasi vian sistemon en rompita stato. " "Ĉu vi certas ke vi volas fari tion?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Por preventi datuman perdon, fermu ĉiujn malfermitajn aplikaĵojn kaj " "dokumentojn." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Ne plu subtenata de Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Malĝisdatigi (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Forigi (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Ne plu nepra (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instali (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Ĝisdatigi (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Montru la diferencon >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Kaŝu la diferencon" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Eraro" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "F&ermu" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Vidigu Terminalon >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Kaŝu Terminalon" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informoj" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detaloj" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Ne plu subtenata %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Forigi %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Forigi %s (estis aŭtomate instalita)" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instali je %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Ĝisdatigi %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Necesas restartigo" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Restartigu la sistemon por kompletigi la ĝisdatigon" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Restartigi nun" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Ĉu ni haltigu la ruliĝantan ĝisdatigon?\n" "\n" "La sistemo povas esti neuzebla, se la ĝisdatigo estas interrompita nun. " "Estas rekomendite daŭrigi la ĝisdatigon." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Rezigni ĝisdatigadon?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li tago" msgstr[1] "%li tagoj" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li horo" msgstr[1] "%li horoj" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuto" msgstr[1] "%li minutoj" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekundo" msgstr[1] "%li sekundoj" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Tiu ĉi elŝuto daŭros proksimume %s per DSL-konekto de 1 Mbit kaj proksimume " "%s per 56k-modemo." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Ĉi-tiu elŝuto daŭros ĉirkaŭ %s tra via konekto. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Pretigi por ĝisdatigi" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Akirado de novaj programaraj kanaloj" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Prenado de novaj pakaĵoj" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Intstalanta ĝisdatigojn" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Fina purigado" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d instalita pakaĵo ne plu estas subtenata de Canonical. Vi povas " "ankoraŭ akiri subtenon de la komunumo." msgstr[1] "" "%(amount)d instalitaj pakaĵoj ne plu estas subtenataj de Canonical. Vi povas " "ankoraŭ akiri subtenon de la komunumo." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d pakaĵo estas forigota." msgstr[1] "%d pakaĵoj estas forigotaj." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nova pakaĵo estas instalota." msgstr[1] "%d novaj pakaĵoj estas instalotaj." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d pakaĵo estas ĝisdatigota." msgstr[1] "%d pakaĵoj estas ĝisdatigotaj." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Vi devas elŝuti totalon de %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "La instalado de promocio povas daŭri plurajn horojn. Post la fino de la " "elŝutado, ne plu eblos nuligi la procezon." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "La akirado kaj instalado de la promocio povas daŭri plurajn horojn. Post la " "fino de la elŝutado, ne plu eblos nuligi la procezon." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "La forigo de la pakaĵoj povas daŭri plurajn horojn. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "La programaro sur ĉi tiu komputilo estas ĝisdata." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Neniuj aktualigoj estas disponeblaj por via sistemo. La ĝisdatigo nun ĉesos." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Necesas restartigo" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "La ĝisdatigado finiĝis kaj restartigo bezonatas. Ĉu vi volas nun fari tion?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Bonvolu fari cimraporton kaj aldonu la dosierojn /var/log/dist-" "upgrade/main.log kaj /var/log/dist-upgrade/apt.log en via raporto. La " "ĝisdatigo ĉesiĝis.\n" "Via originala sources.list estis konservita en " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Ĉesante" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Malĝisdatigi:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Por daŭrigi premu [ENIGKLAVON]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Daŭrigi [jN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detaloj [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "j" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Ne plu subtenata: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Forigi: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instali: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Ĝisdatigi: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Daŭrigi [Jn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Por kompletigi la ĝisdatigon necesas restartigo.\n" "Se vi elektas 'J', la sistemo restartos." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Elŝutante dosieron %(current)li el %(total)li per %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Elŝutante dosieron %(current)li el %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Vidigi progreson de unuopaj dosieroj" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "Nuligu ĝisdatigon" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Daŭ_rigi ĝisdatigon" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Ĉu nuligi la ruliĝantan ĝisdatigon?\n" "\n" "Se vi nuligos la ĝisdatigon, la sistemo eble estos neuzebla. Ni forte " "konsilas daŭrigi la ĝisdatigon." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "Komencu ĝi_sdatigon" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Anstataŭigi" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Diferenco inter la dosieroj" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "Raporti cimon" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Daŭrigu" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Ĉu komenci la ĝisdatigon?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Restartigu la sistemon por kompletigi la ĝisdatigadon\n" "\n" "Bonvolu konservi vian laboron antaŭ ol daŭrigi." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Ĝisdatigo de la distribuaĵo" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Agordado de novaj programaraj kanaloj" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "La komputilo estas restartigata" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminalo" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "Ĝisdatig_u" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Nova versio de Ubuntu disponeblas. Ĉu vi volas ĝisdatigi?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Ne ĝisdatigu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Demandi al mi poste" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Jes, ĝisdatigu nun" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Vi decidis ne ĝisdatigi al la nova Ubuntu" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Efektivigi ĝisdatigon de eldono" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Efektivigi partan ĝisdatigon" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Montru la version kaj ĉesu" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Dosierujo kiu enhavas la datumdosierojn" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Ruli la specifitan fasadon" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Rulanta partan ĝisdatigon" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Elŝutaanta la ilon por eldonĝisdatigi" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Kontroli ĉu aktualigo al la plej nova disvolva eldono eblas" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Provu ĝisdatigi al la plej nova eldono uzante la ĝisdatigilon de $distro-" "proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Ruli en speciala ĝisdatiga reĝimo.\n" "Aktuale 'labortablo' por normalaj labortabl-sistemaj ĝisdatigoj kaj " "'servilo' por servilaj sistemoj estas subtenataj." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testi ĝisdatigon per proveja aufs-surmeto" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Nur kontroli ĉu haveblas nova distribu-eldono kaj raporti la rezulton per la " "elira kodo" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Kontrolas por nova eldono de Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Via Ubuntu-eldono estas ne plu subtenata." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Por informoj pri ĝisdatigado, bonvolu viziti:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Neniu nova eldono trovita" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Eldonĝisdatigo aktuale ne eblas" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "La eldonĝisdatigo aktuale ne eblas, bonvolu reprovi poste. La servilo " "raportis: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Nova eldono '%s' disponebla." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Rulu 'do-release-upgrade' por ĝisdatigi al ĝi" #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ĝisdatigoj por Ubuntu %(version)s disponeblas" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Vi decidis ne ĝisdatigi al Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Aldoni eligon de sencimigo" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Aŭtentigo necesas por efektivigi ĝisdatigon de eldono" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Atentigo necesas por efektivigi partan ĝisdatigon" ubuntu-release-upgrader-0.220.10/po/tr.po0000644000000000000000000020111212431225715014773 0ustar # Turkish translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-10-03 13:37+0000\n" "Last-Translator: Volkan Gezer \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:53+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: tr\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s sunucusu" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Ana sunucu" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Özel sunucular" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "'sources.list' girdisi hesaplanamadı" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Hiçbir paket dosyası bulunamadı, bu bir Ubuntu Diski olmayabilir veya " "işlemci mimarisi yanlış seçilmiş olabilir mi?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "CD ekleme başarısız oldu" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "CD eklenirken bir hata oluştu, yükseltme durduruluyor. Eğer geçerli bir " "Ubuntu CD'si kullanıyorsanız bunu bir hata olarak bildirin.\n" "\n" "Hata iletisi:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Hatalı durumdaki paketi kaldır" msgstr[1] "Hatalı durumdaki paketleri kaldır" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "'%s' paketi tutarsız durumda ve yeniden kurulması gerekiyor, fakat bunun " "için herhangi bir arşiv bulunamadı. Devam etmek için bu paketi kaldırmak " "ister misiniz?" msgstr[1] "" "'%s' paketleri tutarsız durumda ve yeniden kurulmaları gerekiyor, fakat " "bunlar için herhangi bir arşiv bulunamadı. Devam etmek için bu paketleri " "kaldırmak ister misiniz?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Sunucu aşırı yüklenmiş olabilir" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Bozuk paketler" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Sisteminiz bu yazılım ile düzeltilemeyen bozuk paketler içeriyor. Devam " "etmeden önce lütfen bunları Synaptic veya apt-get kullanarak düzeltin." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Yükseltme hesaplanırken çözülemeyen bir hata meydana geldi:\n" "%s \n" "Neden olabilecek etkenler:\n" "* Ubuntu'yu bir önsürüme yükseltmek\n" "* Ubuntu'nun mevcut önsürümünü çalıştırmak\n" "* Ubuntu tarafından sağlanmamış resmi olmayan yazılım paketleri\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Bu geçici bir sorun gibi gözüküyor, lütfen daha sonra tekrar deneyiniz." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Eğer bunlardan hiçbiri olmazsa lütfen bu hatayı uçbirimden izleyen komut ile " "bildirin: 'ubuntu-bug ubuntu-release-upgrader-core'." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Yükseltme hesaplanamadı" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Bazı paketlerin doğrulanmasında hata oluştu" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Bazı paketler doğrulanamadı. Bu geçici bir ağ sorunu olabilir. Daha sonra " "tekrar deneyebilirsiniz. Doğrulanamamış paketlerin listesi için aşağıya " "bakınız." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "'%s' paketi kaldırılması için işaretlenmiş ancak paket kaldırma kara listesi " "içinde." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Temel '%s' paketi kaldırılma için işaretlenmiş." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Kara listede olan '%s' sürümü kurulmaya çalışılıyor" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "'%s' kurulamıyor" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Gerekli bir paketin kurulumu imkansızdı. Lütfen uçbirimde 'ubuntu-bug " "ubuntu-release-upgrader-core' kullanarak bunu bir hata (bug) olarak bildirin." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Üstveri paketi tahmin edilemiyor" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Sisteminiz bir ubuntu-desktop, kubuntu-desktop veya edubuntu-desktop paketi " "içermiyor ve hangi Ubuntu sürümünü kullandığınız tespit edilemedi.\n" " Lütfen devam etmeden önce, synaptic veya apt-get kullanarak yukarıdaki " "paketlerden birini kurun." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Önbellek okunuyor" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Özel kilide erişilemiyor" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Bu, genelde başka bir paket yönetimi uygulamasının (apt-get veya aptitude " "gibi) zaten çalıştığı anlamına gelir. Lütfen öncelikle bu uygulamayı kapatın." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Uzaktan bağlantı ile yükseltme desteklenmiyor" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Bir uzak ssh bağlantısı üzerinden bunu desteklemeyen bir ön uç ile yükseltme " "işlemini gerçekleştiriyorsunuz. Lütfen 'do-release-upgrade' komutu ile " "beraber metin tabanlı bir yükseltme deneyin.\n" "Yükseltme işlemi iptal edilecek. Lütfen ssh kullanmadan tekrar deneyin." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "SSH altında çalışmaya devam edilsin mi?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Bu oturum ssh altında çalışır halde görünüyor. Bir hata oluşması durumunda " "düzeltilmesinin zor olması nedeniyle, yükseltmeyi ssh üzerinden " "gerçekleştirmeniz tavsiye edilmez.\n" "\n" "Devam ederseniz, ek bir ssh art hizmeti '%s' bağlantı noktasında " "başlatılacak.\n" "Devam etmek istiyor musunuz?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Yeni bir sshd başlatılıyor" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Hata durumunda düzeltme daha kolay olsun diye ek bir sshd '%s' bağlantı " "noktasında başlatılacak. Eğer çalışmakta olan ssh ile ilgili herhangi bir " "sorun oluşursa ek birine bağlanabilirsiniz.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Eğer bir güvenlik duvarı açarsanız, bu bağlantı noktasını geçici olarak " "açmanız gerekebilir. Tehlikeli olma ihtimalinden dolayı otomatik olarak " "yapılmamaktadır. Bağlantı noktasını bu şekilde açabilirsiniz:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Yükseltilemiyor" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Bu araçla, '%s' sürümünden '%s' sürümüne bir yükseltme desteklenmiyor." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Çalışma dizini kurulumu başarısız" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Çalışma dizini ortamı oluşturmak mümkün değil." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Çalışma dizini kipi" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Bu yükseltme, kum havuzu (sınama) kipinde çalışıyor. Bütün değişiklikler " "'%s' konumuna yazılacak ve bir sonraki yeniden başlatmada silinecek.\n" "\n" "Bir sonraki yeniden başlatmaya kadar şu andan itibaren sistem dizinlerinde " "yapılacak *hiçbir* değişiklik kalıcı olmayacak." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Python kurulumunuzda hata var. Lütfen '/usr/bin/python' sembolik bağını " "onarın." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "'debsig-verify' paketi kuruldu" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Bu paket kuruluyken yükseltme devam edemez.\n" "Lütfen önce synaptic veya 'apt-get remove debsig-verify' ile paketi kaldırın " "ve yükseltmeyi tekrar çalıştırın." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Üzerine yazılamıyor: '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "'%s' sistem hedef dizini yazılamıyor. Güncelleme devam edemeyecek.\n" "Lütfen dosyanın yazılabilir olduğuna emin olun." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "İnternetteki en son güncelleştirmeler de eklensin mi?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Güncelleştirme sistemi interneti kullanarak en son güncelleştirmeleri " "otomatik olarak indirebilir ve yükseltme sırasında güncelleştirmeleri " "kurabilir. Eğer bir ağ bağlantınız varsa şiddetle önerilir.\n" "\n" "Güncelleştirme uzun sürebilir, fakat tamamlandığında sisteminiz tamamıyla " "güncel olacaktır. Güncelleştirmeleri şu anda yapmayabilirsiniz ama " "güncelleştirmeyi sisteminizi yükselttikten hemen sonra yapmanız tavsiye " "edilir.\n" "Eğer cevabınız 'hayır' ise, ağ bağlantısı kullanılmadan devam edilecek." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "%s yükseltmesi iptal edildi." #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Geçerli yansı bulunamadı" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Paket deposu bilgileriniz taranırken yükseltme için hiç bir yansı bilgisi " "bulunamadı. Bu durum, iç yansı kullanıyorsanız veya yansı bilgisi " "güncelliğini yitirmişse oluşabilir.\n" "'sources.list' dosyanızı yeniden yazmak istiyor musunuz? Eğer 'Evet' " "seçerseniz, tüm '%s' girdileri '%s' olarak güncelleştirilecek.\n" "Eğer 'Hayır' seçerseniz yükseltme iptal edilecek." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Öntanımlı depolar oluşturulsun mu?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "'sources.list' dosyanız tarandıktan sonra '%s' için geçerli bir kayıt " "bulunamadı.\n" "'%s' için öntanımlı kayıtlar eklensin mi? Eğer 'Hayır' seçerseniz, yükseltme " "iptal edilecek." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Depo bilgisi geçersiz" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Depo bilgisinin yükseltilmesi geçersiz bir dosya ile sonuçlandı bu yüzden " "bir hata raporu oluşturuluyor." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Üçüncü taraf kaynaklar devre dışı bırakıldı" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "'sources.list' dosyasındaki bazı üçüncü taraf girdiler etkisiz hale " "getirildi. Yükseltmenin ardından bu girdileri 'Yazılım Kaynakları' aracını " "veya paket yöneticinizi kullanarak yeniden etkinleştirebilirsiniz." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paket tutarsız durumda" msgstr[1] "Paketler tutarsız durumda" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "'%s' paketi tutarsız durumda ve tekrar kurulmalı, fakat bunun için herhangi " "bir arşiv bulunamadı. Lütfen paketi elle tekrar kurun veya sistemden " "kaldırın." msgstr[1] "" "'%s' paketleri tutarsız durumda ve tekrar kurulmalı, fakat bunlar için " "herhangi bir arşiv bulunamadı. Lütfen paketleri elle tekrar kurun veya " "sistemden kaldırın." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Güncelleştirme sırasında hata" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Güncelleştirme sırasında bir hata oluştu. Bu genellikle bir ağ sorunudur, " "lütfen ağ bağlantınızı denetleyin ve tekrar deneyin." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Yeterince boş disk alanı yok" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Yükseltme iptal edildi. Yükseltmenin '%s' disk üzerinde %s boş alana " "ihtiyacı var. Lütfen '%s' diski üzerinde en az %s alan açınız. Çöpü " "boşaltabilir ve 'sudo apt-get clean' komutu ile önceki yüklemelerinizin " "kullanılmayan paketlerini temizleyebilirsiniz." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Değişiklikler hesaplanıyor" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Yükseltmeyi başlatmak istiyor musunuz?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Yükseltmeden vazgeçildi" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Güncelleme iptal edilecek ve sistem eski haline döndürülecek. Sonraki bir " "zamanda güncellemeye devam edebilirsiniz." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Yükseltmeler indirilemedi" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Güncelleme durduruldu. Lütfen genel ağ bağlantınızı veya kurulum ortamınızı " "kontrol ederek tekrar deneyin. Şimdiye kadar indirilmiş tüm dosyalar " "tutulmaya devam edilecek." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "İşlem sırasında hata oluştu" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Özgün sistem durumuna geri dönülüyor" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Yükseltmeler kurulamadı" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Yükseltme iptal edildi. Sisteminiz kullanılmaz bir durumda olabilir. Şimdi " "bir kurtarma işlemi çalıştırılacak (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Lütfen bu hatayı izleyen adresi tarayıcıda açarak bildirin " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug ve " "/var/log/dist-upgrade/ dizini içindeki dosyaları hata bildirimi için " "ekleyin.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Yükseltme iptal edildi. İnternet bağlantınızı veya kurulum ortamınızı " "denetleyip tekrar deneyin. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Kullanılmayan paketler kaldırılsın mı?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Koru" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Kaldır" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Temizlik sırasında bazı sorunlar oluştu. Daha fazla bilgi için lütfen " "aşağıdaki iletiye bakın. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Gerekli bağımlılıklar kurulu değil" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Gerekli bağımlılık '%s' kurulu değil. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Paket yöneticisi denetleniyor" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Yükseltme işlemine hazırlanma başarısız oldu" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Sistemi yükseltme girişimi başarısız olduğundan bir hata raporu " "oluşturuluyor." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Güncelleme önkoşullarının alınması başarısız" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Sistem yükseltme için öngereklilileri sağlamıyor. Yükselme iptal edilecek ve " "eski sistem geri yüklenecek.\n" "\n" "Buna ek olarak, hata raporu oluşturuluyor." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Depo bilgisi güncelleştiriliyor" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Cdrom eklenmesi başarısız" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Üzgünüz, cdrom ekleme işlemi başarılı değil." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Geçersiz paket bilgisi" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Paket bilginizi güncelledikten sonra, gerekli paket '%s' konumlandırılamadı. " "Bunun sebebi yazılım kaynaklarınızda resmi yansıların olmaması veya " "kullandığınız yansılardaki aşırı yoğunluk olabilir. Yapılandırılmış yazılım " "kaynaklarının güncel listesi için /etc/apt/sources.list dosyasına göz atın.\n" "Aşırı yüklenmiş bir yansı durumunda, yükseltmeyi daha sonra tekrar deneyin." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Getiriliyor" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Yükseltiliyor" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Yükseltme tamamlandı" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Yükseltme tamamlandı, fakat yükseltme esnasında bazı hatalar oluştu." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Kullanılmayan yazılımlar aranıyor" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Sistem yükseltmesi tamamlandı." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Kısmi yükseltme tamamlandı." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Sürüm notları bulunamadı" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Sunucu aşırı yüklenmiş olabilir. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Sürüm notları indirilemedi" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Lütfen internet bağlantınızı denetleyin." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "'%(file)s' dosyasını '%(signature)s' imzasına karşı yetkilendir " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "'%s' çıkartılıyor" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Yükseltme aracı çalıştırılamadı." #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Bu, yükseltme aracında bulunan büyük ihtimalle bir hata. Lütfen bunun bir " "hata olduğunu izleyen komut ile bildirin: 'ubuntu-bug ubuntu-release-" "upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Yükseltme aracı imzası" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Yükseltme aracı" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Getirme başarısız" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Yükseltme indirilemedi. Ağda bir sorun olabilir. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Kimlik denetimi başarısız oldu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Yükseltme için kimlik doğrulama başarısız oldu. Ağda veya sunucuda bir sorun " "olabilir. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Çıkarılamadı" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Yükseltme çıkartılamadı. Ağ veya sunucu ile ilgili bir sorun olabilir. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Doğrulama başarısız oldu" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "Yükseltme onaylanamadı. Ağda ya da sunucuda bir sorun olabilir. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Yükseltme çalıştırılamıyor" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Bu genelde /tmp deki noexec biçiminde bağlanmış bir sistem tarafından " "kaynaklanır. Lütfen noexec olmadan yeniden bağlayınız ve yükseltmeyi tekrar " "çalıştırınız." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Hata iletisi '%s'" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Yükselt" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Sürüm Notları" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Ek paket dosyaları indiriliyor..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Dosya: %s / %s, Hız: %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Dosya: %s / %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Lütfen \"%2s\" sürücüsüne \"%1s\" ortamını takın" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Ortam Değişimi" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms kullanımda" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Sisteminiz /proc/mounts içindeki 'evms' birim yöneticisini kullanıyor. " "'evms' yazılımı artık desteklenmiyor, lütfen 'evms'yi kapattıktan sonra, bu " "bittiğinde yükseltmeyi yeniden çalıştırın." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "Grafik donanımınız Ubuntu 13.04'te tam olarak desteklenmiyor olabilir." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "'Unity' masaüstü ortamını çalıştırmak ekran kartınız tarafından tam olarak " "desteklenmiyor. Yükseltmeden işleminiz çok yavaş bir ortamla sonuçlanabilir. " "Tavisyemiz şimdilik LTS sürümünde kalmanız yönündedir. Daha fazla bilgi için " " https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D adresini " "ziyaret edin. Yine de yükseltme işlemine devam etmek istiyor musunuz?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Ekran kartınız Ubuntu 12.04 sürümünde tam olarak desteklenmiyor olabilir." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Ubuntu 12.04 LTS (Uzun Süreli Destek) sürümünün sizde bulunan Intel ekran " "kartı için desteği sınırlıdır ve yükseltmeden sonra sorunlarla " "karşılaşabilirsiniz. Daha fazla bilgi için " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx bağlantısına göz " "atınız. Yükseltmeye devam etmek istiyor musunuz?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Yükseltme; masaüstü efektlerini, oyunların ve diğer yoğun grafik kullanan " "uygulamaların başarımını düşürebilir." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Bu bilgisayar NVIDIA 'nvidia' ekran kartı sürücüsü kullanmaktadır. Ubuntu " "10.04 LTS'de ekran kartınızla uyumlu hiç bir sürücü bulunmamaktadır.\n" "\n" "Devam etmek istiyor musunuz?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Bu bilgisayar AMD 'fglrx' ekran kartı sürücüsü kullanmaktadır. Ubuntu 10.04 " "LTS'de ekran kartınızla uyumlu hiç bir sürücü bulunmamaktadır.\n" "\n" "Devam etmek istiyor musunuz?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "i686 işlemci bulunamadı" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sisteminiz bir i586 veya 'cmov' eklentisine sahip olmayan bir işlemci " "kullanıyor. Tüm paketler en düşük i686 mimarisiyle çalışacak biçimde " "iyileştirilerek inşa edilmiştir. Bu donanımla yeni bir Ubuntu sürümüne " "yükseltme yapmanız mümkün değildir." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "ARMv6 İşlemci Yok" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Sisteminiz, ARMv6 mimarisinden daha eski bir ARM işlemci kullanıyor. " "Karmic'teki tüm paketler, en az ARMv6 mimarisini gerektirecek iyileştirmeler " "ile oluşturulmuştur. Bu donanım ile, sisteminizi yeni bir Ubuntu sürümüne " "yükseltmek mümkün değil." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Başlatıcı mevcut değil" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Sisteminiz başlatıcı özelliği bulunmayan sanallaştırılmış bir ortam gibi " "görünüyor, Linux-VServer gibi.Ubuntu 10.04 LTS bu tür ortamda çalışamaz, " "öncelikle sanal makinenizin ayarlarını güncelleştirmeniz gerekiyor.\n" "Devam etmek istediğinizden emin misiniz?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Çalışma dizini yükseltmesi 'aufs' kullanıyor" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Yükseltilebilir paketler içeren bir cdrom'u aramak için verilen yolu kullan" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Önyüzü kullan. Şu anda kullanılabilir olanlar: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*KULLANILMAYAN* bu seçenek gözardı edilebilir" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Yalnızca kısmi bir yükseltme gerçekleştir (sources.list yeniden yazılmaz)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "GNU ekran desteğini devre dışı bırak" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Veri dizinini ayarla" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Getirme tamamlandı" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Getirilen dosya: %li / %li Hız: %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Yaklaşık %s kaldı" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Getirilen dosya: %li / %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Değişiklikler uygulanıyor" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "bağımlılık sorunları - yapılandırılmadan çıkılıyor" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "'%s' kurulamadı" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Yükseltme devam edecek fakat '%s' paketi çalışır durumda olmayabilir. Lütfen " "bununla ilgili bir hata raporlayın." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Özelleştirilmiş yapılandırma dosyası\n" "'%s' değiştirilsin mi?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Eğer bu yapılandırma dosyasını yeni sürümüyle değiştirecekseniz bu dosyaya " "yapmış olduğunuz değişiklikleri kaybedeceksiniz." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "\"diff\" komutu bulunamadı" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Ölümcül bir hata oluştu" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Lütfen bu durum için bir hata bildirimi yapın (eğer daha önce yapmadıysanız) " "ve bildiriminize /var/log/dist-upgrade/main.log ve /var/log/dist-" "upgrade/apt.log dosyalarını da ekleyin. Yükseltme iptal edildi.\n" "Özgün sources.list dosyanız /etc/apt/sources.list.distUpgrade konumuna " "kaydedildi." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c'ye basıldı" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Bu, işlemi iptal edecektir ve sistemi bozuk bir durumda bırakabilir. Bunu " "yapmak istediğinizden emin misiniz ?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Veri kaybını önlemek için açık olan tüm uygulamaları ve belgeleri kapatın." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Canonical tarafından artık desteklenmiyor (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Sürüm Düşürme (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Kaldır (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Artık gereksinim duyulmuyor (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Kur (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Yükselt (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Farkı Göster >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Farkı Gizle" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Hata" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&İptal" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Kapat" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Uçbirimi Göster >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Uçbirimi Gizle" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Bilgi" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Ayrıntılar" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "%s artık desteklenmiyor" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Kaldır %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Kaldır (otomatik olarak kurulmuş): %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Kur: %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Yükselt: %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Yeniden başlatma gerekiyor" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Yükseltmeyi tamamlamak için sistemi yeniden başlatın" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Şimdi _Yeniden Başlat" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Devam eden yükseltmeden vazgeçmek mi istiyorsunuz ?\n" "\n" "Yükseltmeden vazgeçerseniz sistem kulanılamaz duruma gelebilir. Yükseltmeye " "devam etmenizi öneriyoruz." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Yükseltme İptal Edilsin mi?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li gün" msgstr[1] "%li gün" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li saat" msgstr[1] "%li saat" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li dakika" msgstr[1] "%li dakika" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li saniye" msgstr[1] "%li saniye" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Bu indirme işlemi 1Mbit DSL bağlantısıyla yaklaşık %s ve 56k bir modemle " "yaklaşık %s sürecektir." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Bu indirme işlemi sizin bağlantınızla yaklaşık %s sürecektir. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Yükseltmeye hazırlanıyor" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Yeni yazılım kanalları alınıyor" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Yeni paketler alınıyor" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Yükseltmeler kuruluyor" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Temizleniyor" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Kurulu %(amount)d paket artık Canonical tarafından desteklenmiyor. Topluluk " "tarafından hala destek alabilirsiniz." msgstr[1] "" "Kurulu %(amount)d paket artık Canonical tarafından desteklenmiyor. Topluluk " "tarafından hala destek alabilirsiniz." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket kaldırılacak." msgstr[1] "%d paket kaldırılacak." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d yeni paket kurulacak." msgstr[1] "%d yeni paket yüklenecek." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket yükseltilecek." msgstr[1] "%d paket yükseltilecek." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Toplam indirmeniz gereken: %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Yükseltme kurulumu birkaç saat alabilir. İndirme tamamlandıktan sonra işlem " "iptal edilemez." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Yükseltmeyi indirme ve kurma işlemi birkaç saat sürebilir. İndirme " "tamamlandıktan sonra işlem iptal edilemez." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Paketleri kaldırmak birkaç saat alabilir. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Bu bilgisayardaki yazılımlar günceldir." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Sisteminiz için olası herhangi bir yükseltme yok. Yükseltme işlemi şimdi " "iptal edilecek." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Sistemi yeniden başlatmanız gerekiyor" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Yükseltme tamamlandı. Sistemi yeniden başlatmanız gerekiyor. Bunu şimdi " "yapmak ister misiniz?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Lütfen bu durum için bir hata bildirimi yapın ve bildiriminize /var/log/dist-" "upgrade/main.log ve /var/log/dist-upgrade/apt.log dosyalarını da ekleyin. " "Yükseltme iptal edildi.\n" "Özgün sources.list dosyanız /etc/apt/sources.list.distUpgrade konumuna " "kaydedildi." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "İptal Ediliyor" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Kaldırıldı:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Devam etmek için lütfen [ENTER] tuşuna basın" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Devam [eH] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Ayrıntılar [a]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "e" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "h" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "a" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Artık desteklenmiyor: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Kaldır: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Kur: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Yükselt: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Devam [Eh] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Yükseltmeyi tamamlamak için yeniden başlatınız.\n" "Eğer 'y' tuşuna basarsanız yeniden başlatılacaktır." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "İndirilen dosya: %(current)li / %(total)li Hız: %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "İndirilen dosya: %(current)li / %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Tekil dosyaların ilerleyişini göster" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Yükseltmeyi İptal Et" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "Yükseltmeye _Devam Et" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Yükseltme iptal edilsin mi?\n" "\n" "Yükseltmeyi iptal ederseniz, sistem, kullanılamaz bir konumda kalabilir. " "Yükseltmeyi devam ettirmeniz şiddetle önerilir." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Yükseltmeye Başla" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Değiştir" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Dosyalar arasındaki fark" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Hata Bildir" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Devam" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Yükseltme başlatılsın mı?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Yükseltme işlemini tamamlamak için sistemi yeniden " "başlatın\n" "Devam etmeden önce lütfen çalışmalarınızı kaydedin." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Dağıtım Yükseltimi" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Ubuntu'yu 13.04 sürümüne yükseltme" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Yeni yazılım kanalları ayarlanıyor" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Bilgisayar yeniden başlatılıyor" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Uçbirim" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Yükselt" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Ubuntu'nun yeni bir sürümü mevcut. Sürüm yükseltmek ister misiniz?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Yükseltme Yapma" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Daha Sonra Sor" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Evet, Şimdi Yükselt" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Yeni Ubuntu'ya yükseltmeyi reddettiniz" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Daha sonra Yazılım Güncelleştirici'yi açıp \"Yükselt\" tuşuna tıkladığınız " "zaman yükseltme yapabilirsiniz." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Sürüm yükseltmeyi gerçekleştir" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Ubuntu'yu yükseltmek için kimlik doğrulamanız gerekiyor." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Kısmi bir yükseltme gerçekleştir" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Kısmi yükseltme için kimlik doğrulamanız gerekiyor." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Sürümü göster ve çık" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Veri dosyalarını içeren dizin" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Belirlenmiş önyüzü çalıştır" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Kısmi yükseltme yapılıyor" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Sürüm yükseltme aracı indiriliyor" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "En son geliştirme sürümüne yükseltme olasılığını denetle" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "$distro-proposed sürümündeki yükselticiyi kullanarak en son sürüme " "yükseltmeyi deneyin" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Özel bir güncelleştirme kipinde çalış.\n" "Şu anda, bir masaüstü sisteminin düzenli güncelleştirmeleri için 'masaüstü' " "ve sunucu sistemlerinin düzenli güncelleştirmeleri için 'sunucu' " "desteklenmektedir." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Yükseltmeyi, bir çalışma dizini 'aufs' yer paylaşımıyla sına" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Sadece yeni bir dağıtım sürümü mevcut olduğunda denetle ve sonucu çıkış " "koduyla bildir." #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Yeni Ubuntu sürümü denetleniyor" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Ubuntu sürümünüz artık desteklenmiyor." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Güncelleme bilgisi için, lütfen ziyaret ediniz:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Yeni sürüm bulunamadı" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Sürüm yükseltme şu anda olası değil" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Sürüm yükseltmesi şu an yapılamıyor, lütfen daha sonra yeniden deneyin. " "Sunucu raporu: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Yeni sürüm çıktı ('%s')." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Yükseltmek için 'do-release-upgrade' çalıştırın." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Ubuntu %(version)s Yükseltmesi Mevcut" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Ubuntu %s sürümüne yükseltmeyi reddettiniz" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Hata ayıklama çıktısını ekle" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Sürüm yükseltmeyi gerçekleştirmek için yetkilendirme gerekli" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Kısmi bir yükseltme gerçekleştirmek için kimlik doğrulama gerekiyor" ubuntu-release-upgrader-0.220.10/po/br.po0000644000000000000000000016437712431225715014776 0ustar # Breton translation for update-manager # Copyright (c) (c) 2006 Canonical Ltd, and Rosetta Contributors 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Breton \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: br\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Dafariad evit %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Penndafariad" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Dafariadoù personelaet" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "N'eus ket tu da jediñ enankad sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "N'eo ket gouest da zelec'hiañ tamm restr pakad ebet, marteze n'eo ket ur " "gantenn Ubuntu pe an adeiladezh fall ?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "C'hwitadenn war ouzhpennañ ar CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Degouezhet ez eus bet ur fazi e-pad ma oa oc'h ouzhpennañ ar CD, dilezet e " "vo an hizivaat. Mar plij, kasit un danevell fazioù mard eo ur gantenn Ubutu " "talvoudek.\n" "Kemennadenn ar fazi a oa :\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Dilemel ar pakad en ur stad fall" msgstr[1] "Dilemel ar pakadoù en ur stad fall" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "En ur stad digeverlec'h eo ar pakad '%s' ha ret eo dezhañ bezañ adstaliet, " "ne gaver ket dielloù evitañ avat. Ha fellout a ra deoc'h dilemel ar pakad-" "mañ bremañ evit kenderc'hel ?" msgstr[1] "" "En ur stad digeverlec'h eo ar pakadoù '%s' ha ret eo dezho bezañ adstaliet, " "ne gaver ket dielloù evito avat. Ha fellout a ra deoc'h dilemel ar pakadoù-" "mañ bremañ evit kenderc'hel ?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Marteze ez eo an dafariad dreistkarget" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Pakadoù torr" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Pakadoù torr n'hallont ket bezañ ratreet gant ar meziant-mañ ez eus gant ho " "reizhiad. Mar plij, ratreit i da gentañ dre arverañ synaptic pe apt-get kent " "an argerzh." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Degouezhet ez eus bet ur fazi pa oa o jediñ an hizivadenn :\n" "%s\n" "\n" "Dougezhet eo en abet da :\n" " * Hizivadur ur rakhandelv eus Ubuntu\n" " * Erounezadur eus ar rakhandelv eus Ubuntu\n" " * Pakadoù meziantoù ankefridiel ket pourchaset gant Ubuntu\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Stumm ur gudenn badennek zo warni, klaskit diwezhatoc'h, mar plij." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "N'eo ket gouest da jediñ an hizivadenn" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Fazi gant dilesa pakadoù zo" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Ne oa ket tro da zilesa pakadoù zo. Moarvat ez eo ur gudenn badennek. " "Marteze ho po c'hoant da glask diwezhatoc'h. Taolit ur sell amañ dindan war " "ur rollad pakadoù andilesaet." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Merket eo ar pakad '%s' da vezañ dilamet, war roll du an dilemel emañ " "koulskoude." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Merket eo ar pakad pennañ '%s' da vezañ dilamet." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Klask da staliañ an handelv '%s' a zo war ar roll du" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "N'hall ket staliañ '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "N'hall ket dinoiñ ar metapakad" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Gant ho reizhiad n'eus pakad ebet o tont eus ubuntu-desktop, kubuntu-" "desktop, xubuntu-desktop pe edubuntu-desktop ha n'eo ket bet evit dinoiñ " "peseurt handelv eus Ubuntu emaoc'h o ober ganti.\n" " Mar plij, staliit unan eus ar pakadoù meneget a-us en ur obr gant synaptic " "pe apt-get kent mont war-raok." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "O lenn ar grubuilh" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "N'eo ket gouest da gaout un unprenn" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Dre voaz e talv ez eus un arload ardeiñ evit ar pakadoù (evel apt-get pe " "aptitude) war erounit. Mar plij, serrit an arload-mañ da gentañ." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "N'eo ket skoret an hizivaat dre ur c'hennask a-bell" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Emaoc'h oc'h erounit an hizivaat dre ur c'hennask a-bell mod ssh gant un " "urzhiataer-tal na skor ket an dra-se. Mar plij, klaskit an hizivaat dre vod " "testenn gant 'do-release-upgrade'.\n" "\n" "Dilezet e vo an hizivaat bremañ. Klaskit hep ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Kenderc'hel da erounit gant SSH ?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "An estez-mañ a hañval bezañ war erounit gant SSH. N'eo ket erbedet seveniñ " "an hizivaat dre SSH bremañ rak mar bet ur c'hwitadenn e vo diaesoc'h da " "adtapout.\n" "\n" "Mar kendalc'hot e vo loc'het ur gwazerezh SSH ouzhpenn dre ar porzh '%s'.\n" "Ha fellout a ra deoc'h kenderc'hel ?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "O loc'hañ SSHD ouzhpenn" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "A-benn ma vo aesoc'h an atoriñ mar degouezho ur c'hwitadenn e loc'ho SSHS " "ouzhpenn dre ar porzh '%s'. Mar degouezho un dra bennak fall gant SSH war " "erounit e c'hallot kennaskañ ouzh unan ouzhpenn.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "N'hall ket hizivaat" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "Un hizivadur diouzh '%s' betek '%s' n'eo ket skoret gant ar benveg-mañ." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "C'hwitadenn war kefluniadur ar rannvaez gwarezet (sandbox)" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "N'eus ket bet tro da grouiñ endro ar rannvaez gwarezet (sandbox)." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Mod ar rannvaez gwarezet (sandbox)" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Kontronet eo ho staliadenn evit Python. Ratreañ an ere aouezek " "'/usr/bin/python'" #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Staliet eo ar pakad 'debsig-verify'" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "An hizivaat n'hall ket kenderc'hel gant ar pakad staliet-mañ.\n" "Dilamit ar pakad gant synaptic pe 'apt-get remove debsig-verify' da gentañ " "ha lañsit an hizivaat en-dro." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Enkorfañ an hizivadennoù diwezhañ diouzh Internet ?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Barrek eo ar reizhiad hizivaat d'ober gant an internet a-benn pellgargañ ent " "emgefreek an hizivadennoù diwezhañ hag a-benn o staliañ e-pad an hizivaat. " "Mard ez eus ur c'hennask ouzh ur rouedad ez eo erbedet kenañ.\n" "\n" "Hiroc'h e pado an hizivaat met drezi e vo ho reizhiad eus an nevesañ. Tro ez " "eus deoc'h chom hep ober an dra-mañ, koulskoude e vefe gwell staliañ an " "hizivadennoù diwezhañ tost war-lec'h an hizivaat.\n" "Mar respontot 'ket' ne vo ket arveret ar rouedad, tamm ebet." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "diweredekaet evit an hizivaat da %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "N'eus ket bet kavet ur velezour talvoudek" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "E-pad ma oa o c'hwilerviñ stlennoù ho mirlec'h n'eus ket bet kavet enankad " "melezour ebet evit an hizivaat. Degouezhout a ra an dra-mañ mard arverit ur " "melezour diabarzh pe mard eo diamzeret stlennoù ar melezour.\n" "\n" "Ha fellout a ra deoc'h adsevel ho restr 'sources.list' memestra ? Mar " "dibabot 'Ya' amañ e vo hizivaet an holl '%s' da enankadoù '%s'.\n" "Mar dibabot 'Ket' e vo dilamet an hizivaat." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Genel an tarzhioù dre ziouer ?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Goude bezañ c'hwilervet ho restr 'sources.list' n'eus ket bet kavet enankad " "talvoudek ebet evit'%s'.\n" "\n" "Ha ret e vefe ouzhpennañ an enankadoù dre ziouer evit '%s' ? Mar dibabot " "'Ket' e vo dilamet an hizivaat." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Stlennoù ar mirlec'h didalvoudek" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Diweredekaet eo an tarzhioù a-berzh un trede" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Diweredekaet eo bet enankadoù zo a-berzh un trede en ho restr sources.list. " "Adgweredekaet e vezont goude an hizivaat gant ar benveg 'perzhioù-ar-" "meziant' pe hoc'h ardoer pakadoù." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Pakad en ur stad digeverlec'h" msgstr[1] "Pakadoù en ur stad digeverlec'h" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "En ur stad digeverlec'h eo ar pakad '%s' ha ret eo dezhañ bezañ adstaliet, " "ne gaver ket dielloù evitañ avat. Mar plij, adstaliit ar pakad dre zorn pe " "zilamit ar pakad-mañ diouzh ar reizhiad." msgstr[1] "" "En ur stad digeverlec'h eo ar pakadoù '%s' ha ret eo dezhañ bezañ adstaliet, " "ne gaver ket dielloù evitañ avat. Mar plij, adstaliit ar pakadoù dre zorn pe " "zilamit ar pakad-mañ diouzh ar reizhiad." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Fazi e-pad an hizivaat" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Degouezhet ez eus bet ur fazi e-pad an hizivaat. Dre voaz e teu en abeg d'ur " "gudenn gant ar rouedad, mar plij, gwiriit ho kennask ouzh ar rouedad ha " "klaskit en-dro." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "N'eus ket egor dieub a-walc'h war ho kantenn" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "O jediñ ar c'hemmoù" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "C'hoant hoc'h eus da gregiñ un hivizadur?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Dilezet eo bet an hizivadur" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "N'haller ket pellgargañ an hizivadennoù" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" # drebadek : permanent #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Fazi e-pad ma oa o lakaat da zrebadek" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Oc'h adsevel stad orin ar reizhiad" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "N'haller ket staliañ an hizivadennoù" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Dilemel ar pakadoù dispredet ?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Mirout" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Dilemel" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Degouezhet ez eus bet ur fazi e-pad ar skarzhañ. Mar plij, taolit ur sell " "war ar gemennadenn amañ dindan evit gouzout hiroc'h. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "N'eo ket bet staliet diazalc'hadennoù azgoulennet" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "N'eo ket bet staliet an diazalc'hadenn '%s' azgoulennet. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "O wiriañ ardoer ar pakadoù" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "C'hwitadenn war prientiñ an hizivaat" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "C'hwitadenn war kaout ar meziantoù rakgoulennet ret d'an hizivaat" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "O hizivaat stlennoù ar mirlec'h" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Stlennoù ar pakadoù didalvoudek" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "O tastum" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "O hizivaat" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Echu eo an hizivaat" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "O klask meziantoù dispredet" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Echu eo hizivadur ar rezizhiad" #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Peurechu eo an hizivaat darnel" #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "N'hall ket kavout notennoù an handelv" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Marteze ez eo soulgarget an dafariad. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "N'hall ket pellgargañ notennoù an handelv" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Mar plij, gwiriit ho kennask internet." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "N'hall ket erounit ar benveg da hizivaat" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Sinadur ar benveg da hizivaat" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Benveg da hizivaat" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "C'hwitadenn war an dastum" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "C'hwitadenn war dastum an hizivadenn. Marteze ez eus ur gudenn gant ar " "rouedad. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "C'hwitadet eo an dilesa" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "C'hwitadenn war dilesa an hizivadenn. Marteze ez eo en abeg d'ur gudenn gant " "ar rouedad pe gant an dafariad. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "C'hwitet eo an eztennañ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "C'hwitadenn war an eztennañ. Marteze ez eo en abeg d'ur gudenn gant ar " "rouedad pe gant an dafariad. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "C'hwitet eo ar gwiriañ" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "C'hwitadenn war gwiriañ an hizivadennoù. Marteze ez eo en abeg d'ur gudenn " "gant ar rouedad pe gant an dafariad. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "N'hall ket seveniñ an hizivaat" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Ar gemennadenn fazi zo '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Hiziavaat" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Notennoù an handelv" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "O pellgargañ restroù pakadoù ouzhpenn..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Restr %s eus %s da %sB/eilenn" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Restr %s eus %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Mar plij, enlakait '%s' el lenner '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Kemm ar media" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms war arver" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Ho reizhiad a ra gant ardoer ar pezhiennoù 'evms' e /proc/mounts. N'eo ket " "skoret ar meziant 'evms' ken. Mar plij, lazhit eñ ha loc'hit an hizivaat en-" "dro goude." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Dre an hizivaat e vo gwashaet efedoù ar burev marteze, an digonadoù evit ar " "c'hoarioù hag ar gouvlevioù a c'houlenn kalz a-fet kevregadoù." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Gant ar stur kevregat 'nvidia' savet gant NVIDIA e ra hoc'h urzhiataer. " "N'eus stur hegerz ebet hag a yafe en-dro gant ho kartenn gevregat e Ubuntu " "10.04 LTS.\n" "\n" "Ha fellout a ra deoc'h kenderc'hel ?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Gant ar stur kevregat 'nvidiafglrx savet gant AMD e ra hoc'h urzhiataer. " "N'eus stur hegerz ebet hag a yafe en-dro gant ho kartenn gevregat e Ubuntu " "10.04 LTS.\n" "\n" "Ha fellout a ra deoc'h kenderc'hel ?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Korrgewerier ARMv6 ebet" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Ur c'horrgewerier ARM a zo koshoc'h eget an adeiladezh ARMv6 zo arveret gant " "ho reizhiad. Savet e oa bet an holl bakadoù e karmic gant gwellekadurioù a " "c'houlenne da gaout ARMv6 evit adeiladezh izek. N'eus ket tro da hizivaat ho " "reizhiad da handelv nevez Ubuntu gant ar periant-mañ." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "an deraouekaat n'eo ket hegerz" # daemon : argerzh en drekva #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Ho reizhiad a hañval bezañ un endro galloudekaet hep un argerzh deraouekaat " "en drekva (daemon) evel Linux-VServer. N'hall ket Ubuntu 10.04 LTS mont en-" "dro gant un endro a seurt-se hag a c'houlenn ma vo hizivaet hoc'h ijinenn " "gefluniañ galloudel da gentañ.\n" "Ha fellout a ra deoc'h kenderc'hel ?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Hizivaat ar rannvaez gwarezet (sandbox) en ur ober gant aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Implij an treug lavaret evit klask ur CD-ROM gant pakadoù da hizivadus" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Implij ur c'hetal kevregat, setu ar pezh a zo hegerz : \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Seveniñ an hizivaat gant un doare darnel hepken (arabat skrivañ war " "sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Arventennañ kavlec'hiad ar roadennoù" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Echu eo an dastum" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "O tastum ar restr %li eus %li da %s eizhbit/eilenn" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Chom a ra tro dro %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "O tastum ar restr %li eus %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "O seveniñ ar c'hemmoù" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "Kudennoù gant an diazalc'hadennoù - laosket eo bet ankefluniet" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "N'eo ket bet gouest da staliañ '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Kenderc'hel a ray an hizivaat koulskoude ne vo ket ar pakad '%s\" en ur stad " "da vont en-dro. Mar plij, savit un danevell a-fet beugoù diwar e benn." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Amsaviñ ar restr kefluniañ personelaet\n" "'%s' ?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Kollet e vo an holl gemmoù graet ganeoc'h d'ar restr kefluniañ-mañ mar " "dibabot da amsaviñ ar restr-mañ gant unan nevesoc'h." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "N'eo ket bet kavet an arc'had 'diff'" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Degouezhet ez eus bet ur fazi lazhus" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c pouezet" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Dilamet e vo ar gwezhiadur gant an dra-mañ ha marteze e chomo ho reizhiad " "gant ur stad torr. Ha sur oc'h e fell deoc'h ober an dra-mañ ?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "A-benn mirout ouzh koll roadennoù e vefe gwell serriñ an arloadoù digor hag " "an teulioù :" #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Dilemel (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Staliañ (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Hiziavaat (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Diskouez an disheñvelder >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Kuzhat an disheñvelder" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Fazi" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Serriñ" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Diskouez an dermenell >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Kuzhat an dermenell" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Titouroù" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Munudoù" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "N'eo ket skoret ken %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Dilemel %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Dilemel (staliet e oa bet emgefreek) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Staliañ %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Hizivaat %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Ret eo adloc'hañ" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "Adloc'hañ ar reizhiad evit echuiñ an hizivadenn" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Adloc'hañ diouzhtu" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Dilezel an hizivaat war erounit ?\n" "\n" "Marteze e vo distabil ar reizhiad mar dilezot an hizivaat. Gwell e vefe " "deoc'h adloc'hañ an hizivaat." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Nullañ an hizivadenn ?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li deiz" msgstr[1] "%li a zezioù" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li eur" msgstr[1] "%li eur" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li vunutenn" msgstr[1] "%li a vunutennoù" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li eilenn" msgstr[1] "%li eilenn" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Tro-dro %s e pado ar pellgargañ gant ur c'hennask mod DSL1 Me ha tro-dro %s " "gant ur modem 56k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Tro-dro %s e pado ar pellgargañ gant ho kennask. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "O prientiñ da hizivaat" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "O kaout dastumlec'hioù meziantoù nevez" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "O tapout pakadoù nevez" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "O staliañ an hizivadennoù" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Naetadur" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" msgstr[1] "" #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Emañ %d pakad o vont da vezañ dilamet." msgstr[1] "Emañ %d a bakadoù o vont da vezañ dilamet." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Emañ %d pakad nevez o vont da vezañ staliet." msgstr[1] "Emañ %d a bakadoù nevez o vont da vezañ staliet." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Emañ %d pakad o vont da vezañ hizivaet." msgstr[1] "Emañ %d a bakadoù o vont da vezañ hizivaet." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Ur sammad a %s ez eus da bellgargañ " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "" #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "" #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "N'eus hizivadenn ebet hegerz evit ho reizhiad. Dilezet e vo an hizivaat " "bremañ." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Ret eo deoc'h adloc'hañ an urzhiataer" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Echu eo an hizivadenn ha ret eo adloc'hañ an urzhiataer. Ha c'hoant ho-peus " "d'ober se diouzhtu ?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "O tilezel" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Izelaet e renk :\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Kenderc'hel [yK] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Munudoù [m]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "k" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "m" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "N'eo ket skoret ken : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Dilemel : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Staliañ : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Hizivaat : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Kenderc'hel [Yk] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "A-benn peurechuiñ an hizivaat ez eo ret adloc'hañ.\n" "Mar diuzot 'y' e vo adloc'het ar reizhiad." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "" "O pellgargañ ar restr %(current)li eus %(total)li da %(speed)s/eilenn" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "O pellgargañ ar restr %(current)li eus %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Diskouez araokadurioù ar restroù hiniennel" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Nullañ hizivadenn" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Adloc'hañ an hizivaat" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Dilezel an hizivaat war erounit ?\n" "\n" "Marteze e vo ar reizhiad en ur stad diarveradus mar bez dilezet an hizivaat " "ganeoc'h. Erbedet oc'h, gant un doare pouezus, da adloc'hañ an hizivaat." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Kregiñ an hizivadur" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Am_saviñ" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Disheñvelder etre ar restroù" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Sevel un danevell a-fet beugoù" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Kenderc'hel" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Kregiñ an hizivadur ?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Adloc'hañ ar reizhiad a-benn peurechuiñ an hizivaat\n" "\n" "Mar plij, enrollit ho labourioù kent kenderc'hel." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Hizivadur an dasparzhadenn" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Oc'h arventennañ dastumlec'hioù meziantoù nevez" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Oc'h adloc'hañ an urzhiataer" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Termenell" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Hizivaat" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Hegerz ez eus un handelv nevez eus Ubuntu. Ha fellout a ra deoc'h hizvaat " "?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Arabat hizivaat" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Goulenn diwezhatoc'h" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Ya, hizivaat brmañ" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "N'hoc'h eus ket bet c'hoant da hizivaat betek handelv Ubutu nevez" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "" #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Diskouez an handelv ha mont kuit" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Kavlec'hiad gant ar restroù roadennoù ennañ" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Erounit ar c'hetal erspizet" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Oc'h erounit un hizivaat darnel" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "O pellgargañ an ostilh da hizivaat an handelvoù" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Gwiriañ hag-eñ ez eus tro da hizivaat d'an handelv diorren" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Klask hizivaat d'an handelv diwezhañ en ur ober gant ar meziant hizivaat eus " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Erounit ur mod hizivaat arbennik.\n" "Bremañ e vez skoret 'desktop evit hizivaat reol reizhiad ar burev ha " "'server' evit reizhiad un dafariad." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Prouadiñ an hizivaat gant ur rannvaez gwarezet (sandbox aufs)" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Gwiriañ hag-eñ ez eus un handelv nevez evit an dasparzhdenn ha sevel un " "danevell dre ar voneg ec'hankañ" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "" #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Handelv nevez ebet bet kavet" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Un handelv nevez '%s' hegerz." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Erounit 'do-release-upgrade' a-benn hizivaat." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Hizivadenn Ubuntu %(version)s hegerz" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Nac'hac'het hoc'h eus hizivaat da Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "" ubuntu-release-upgrader-0.220.10/po/bs.po0000644000000000000000000017715012431225715014770 0ustar # Bosnian translation for update-manager # Copyright (c) 2006 Rosetta Contributors and Canonical Ltd 2006 # This file is distributed under the same license as the update-manager package. # FIRST AUTHOR , 2006. # msgid "" msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 02:43+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: bs\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Server za zemlju %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Glavni server" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Podešeni serveri" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Nemoguće izračunati sources.list unos" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Nemoguće pronaći pakete, možda ovo nije Ubuntu Instalacijski Disk ili " "pogrešna Unix arhitektura?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Nemoguće dodati CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Došlo je do greške prilikom dodavanja CD-a zbog kojeg će nadogradnja biti " "prekinuta. Molim prijavite ovo kao grešku, ako je ovo ispravan Ubuntu CD.\n" "\n" "Poruka je bila:\n" "'%s'" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Ukloni paket u lošem stanju" msgstr[1] "Ukloni pakete u lošem stanju" msgstr[2] "Ukloni pakete u lošem stanju" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "paket '%s' je u nesigurnom stanju i treba biti ponovo instaliran, ali ne " "moze se naci arhiv za njega. Da li zelite sada ukloniti ovaj paket da bi ste " "nastavili?" msgstr[1] "" "paketi '%s' su u nesigurnom stanju i trebaju biti ponovo instaliran, ali ne " "moze se naci arhiv za njih. Da li zelite sada ukloniti ove pakete da bi ste " "nastavili?" msgstr[2] "" "paketi '%s' su u nesigurnom stanju i trebaju biti ponovo instaliran, ali ne " "moze se naci arhiv za njih. Da li zelite sada ukloniti ove pakete da bi ste " "nastavili?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Server je možda preopterećen" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Neispravni paketi" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Vaš sistem sadrži neispravne pakete koji nisu mogli biti popravljeni s ovim " "programom. Popravite ih koristeći synaptic ili apt-get prije nastavljanja." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Javio se nerješiv problem prilikom planiranja nadogradnje.\n" "%s\n" "\n" "Ovo može biti izazvano:\n" " * Nadogradnjom na rano izdanje distribucije\n" " * Izvršavanjem ranog izdanja distribucije\n" " * U upotrebi su nezvanični paketi softvera\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Ovo je najverovatnije prolazni problem, molimo pokušajte ponovo kasnije." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Ako ništa od ovog nije slučaj, u terminalu otkucajte komandu 'ubuntu-bug " "ubuntu-release-upgrader-core' da prijavite grešku." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Nemoguće izračunati nadogradnju" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Greška kod autentikacije nekih paketa" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Nije bilo moguće identificirati neke pakete. Ovo bi mogao biti privremeni " "problem s mrežom i trebali biste pokušati ponovo kasnije. Pogledajte spisak " "neidentificiranih paketa." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Paket '%s' je označen za uklanjanje azli se nalazi na crnoj listi uklanjanja." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Neophodni paket '%s' je označen za uklanjanje." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Покушавам да инсталирам верзију '%s' из црне листе" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Nemoguće instalirati '%s'" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Nemoguće instalirati potrebne pakete. Instalirajte 'ubuntu-bug ubuntu-" "release-upgrader-core' u terminalu." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Nisam mogao odrediti meta-paket" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Vas sistem ne sadrzi ubuntu-desktop, kubuntu-desktop, xubuntu-desktop ili " "edubuntu-desktop paket i nije bilo moguce otkriti koju verziju Ubuntu-a " "koristite.Molim Vas da prvo instalirate neke od gornjih paketa koristeci " "synaptic ili apt-get prije nego nastavite." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Čitam spremnik" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Nemoguće dobiti isključivo zaključavanje" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Ovo najčešće znači da je pokrenut neki drugi upravnik paketa (recimo apt-" "get ili aptitude). Molim vas prvo zatvorite tu aplikaciju pa onda pokrenite " "ovu." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Ažuriranje preko udaljenog računara nije podržano" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Izvršavate nadogradnju preko udaljene veze koristeći protokol ssh pomoću " "hardvera koji ne podržava tu mogućnost. Molim probajte tekstualni način " "nadogradnje koristeći 'do-release-upgrade'.\n" "\n" "Nadogradnja će sada biti prekinuta. Molim probajte bez SŠ protokola - (ssh)." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Nastavi rad pod SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Čini se da ova sesija radi pod ssh protokolom. Nije preporučljivo vršiti " "nadogradnju preko istog, jer je u slučaju neuspjeha mnogo teže prepraviti.\n" "\n" "Ako nastavite, dodatni ssh demon će biti pokrenut na portu '%s'.\n" "Da li želite da nastavite?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Pokretanje dodatnog sshd" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Da bi olakšali povratak na prvobitno stanje u slucaju greske, dodatni sshd " "ce biti pokrenut na portu '%s'. Ukoliko se nešto loše desi sa aktivnim ssh " "vi se još uvijek možete priključiti na dodatni.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Ako koristite zaštitni zid, možda će biti potrebno da privremeno otvaranje " "ovog porta. Pošto je ovo potencijalno opasno to nije urađeno automatski. " "Možete da otvorite port sa npr:\n" "'%s'" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Nemoguće nadograditi" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Nadogradnja sa '%s' na '%s' nije podržana sa ovim alatom." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Podešavanje test okruženja nije uspjelo" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Nije bilo moguće napraviti test okruženje." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Režim testnog okruženja" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Ova nadogradnja se obavlja u režimu isprobavanja. Sve promjene su zapisane u " "„%s“ i biće izgubljene pri sledećem učitavanju.\n" "\n" "*Nikakve* izmene zapisane u sistemskom direktorijumu od sada sve do " "sljedećeg ponovnog učitavanja neće biti stalne." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Python instalacija je oštećena. Popravite simbolički link „/usr/bin/python“." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Paket 'debsig-verify' je instaliran" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Nadogradnja se ne može nastaviti dok je taj paket instaliran.\n" "Molim vas da alatkom „synaptic“ „apt-get“uklonite paket „debsig-verify“ i " "onda pokrenete nadogradnju." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Ne mogu da pišem u „%s“" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Nije moguće upisivanje u sistemskom direktorijumu „%s“ na vašem sistemu. " "Nadogradnja ne može biti nastavljena.\n" "Provjerite da li je moguće upisivanje u sistemski direktorijum." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Uključi najnovije nadogradnje sa Interneta?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Sistem nadogradnje može koristiti internet da automatski skida zadnje " "nadogradnje i da ih instalira tokom nadogradnje. Ukoliko imate internet " "konekciju ovo je veoma preporučljivo.\n" "\n" "Nadogradnja ce trajati duže, ali kada bude gotova, Vaš sistem ce biti " "potpuno aktuelan. Vi možete odabrati da ovo ne učinite ali Vi bi trebali " "instalirati zadnje aktualizacije ubrzo nakon nadogradnje.\n" "Ukoliko sada odgovorite sa 'ne' , internet se neće uopste koristiti." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "onemogućeno pri nadogradnji na %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nisam pronašao ispravan mirror" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Za vrijeme skeniranja informacija vašeg repozitorijuma nije pronađen unos " "mirora za nadogradnju. Ovo se može dogoditi ako pokrenete unutrašnji miror " "ili je informacija o miroru zastarela.\n" "\n" "Da li svejedno želite da prepišete vašu 'sources.list' datoteku? Ako ovde " "izaberete 'Da' to će ažurirati sve '%s' u '%s' unose.\n" "Ako izaberete 'Ne' nadogradnja će se otkazati." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Kreirati uobičajene izvore?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Nakon skeniranja datoteke 'sources.list' nije pronađen važeći unos za '%s'.\n" "\n" "Trebaju li biti dodati podrazumijevani unosi za '%s'? Ako izaberete 'Ne', " "nadograđivanje će se otkazati." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Podaci repozitorija neispravni" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Nadograđivanje podataka o repozitoriju je rezultiralo neispravnom datotekom " "tako da je pokrenut proces za izvještavanje o grešci." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Izvori trećih strana su isključeni" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Neke stavke o izvorima trećih lica u vašem fajlu „sources.list“ su " "onemogućene. Nakon nadogradnje ih možete ponovo omogućiti pomoću alata " "„software-properties“ ili vašim upravnikom paketa." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paket u nekonzistentnom stanju" msgstr[1] "Paketi u nekonzistentnom stanju" msgstr[2] "Paketi u nekonzistentnom stanju" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Пакет „%s“ је у неконзистентном стању и мора бити реинсталиран, али нема " "архива за њега. Молим вас да га инсталирате ручно или да га уклоните са " "система." msgstr[1] "" "Paketi „%s“ su u nekonzistentnom stanju i moraju biti reinstalirani, ali " "nema arhiva za njih. Molim vas da ih instalirate ručno ili da ih uklonite sa " "sistema." msgstr[2] "" "Paketi „%s“ su u nekonzistentnom stanju i moraju biti reinstalirani, ali " "nema arhiva za njih. Molim vas da ih instalirate ručno ili da ih uklonite sa " "sistema." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Greška prilikom nadogradnje" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Nastao je problem tokom nadogradnje. Ovo je uobicajeno neka vrsta problema " "sa mrezom, molim Vas da provjerite Vasu mreznu vezu i pokusajte ponovo." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Nema dovoljno praznog mjesta na disku" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Nadogradnja je prekinuta. Za nadogradnju je potrebno %s slobodnog prostora " "na disku '%s'. Molim oslobodite barem %s diskovnog prostora na '%s'. " "Ispraznite smeće i uklonite privremene pakete prijašnjih instalacija " "koristeći naredbu 'sudo apt-get clean'." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Izračunavanje promjena" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Želite li pokrenuti nadogradnju?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Nadogradnja prekinuta" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Nadrgradnja će sada otkazati i originalno stanje sistema će biti obnovljen. " "Možete da nastavite nadogradnju kasnije." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Nisam mogao preuzeti nadogradnje" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Nadogradnja je prekinuta. Provejrite svoju Internet vezu, ili instalacioni " "medijum i pokušajte ponovo. Sve datoteke preuzete do sada su zadržani." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Javila se greška tokom upisivanja" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Vraćam u početno stanje" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Nisam mogao instalirati nadogradnje" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Nadogradnja je prekinuta. Vaš sistem bi mogao biti u neupotrebljivom stanju. " "Popravak će upravo biti pokrenut (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Prijavi browser grešku na http://bugs.launchpad.net/ubuntu/+source/ubuntu-" "release-upgrader/+filebug i dodaj datoteke na /var/log/dist-upgrade/ za " "prijavu greške.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Nadogradnja je prekinuta. Vaš sistem bi mogao biti u neupotrebljivom stanju. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Ukloniti zastarjele pakete?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Zadrži" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Ukloni" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Javila se greška tokom čišćenja. Pogledajte sljedeću poruku za više " "informacija. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Neophodna međuzavisnost nije instlirana." #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Neophodna međuzavisnost „%s“ nije instlirana. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Provjeravam menadžera paketa" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Neuspjelo pripremanje nadogradnje" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Priprema sistema za nadogradnju nije uspjela tako da je pokrenut proces za " "izvještavanje o greški." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Neuspjelo dobavljanje preduslova za nadogradnju" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Sistem nije mogao da dobavi preduslove za nadogradnju. Nadogradnja će sada " "biti prekinuta i biće vraćeno pređašnje stanje sistema.\n" "\n" "Uz ovo, pokrenut je i proces za izvještavanje o grešci." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Nadograđujem podatke repozitorija" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Neuspjelo dodavanje CD ROM-a" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Nažalost, dodavanje CD-roma nije uspjelo." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Neispravni podaci paketa" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Dobavljanje" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Nadograđujem" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Nadogradnja završena" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "Nadogradnja je završila, ali su bile greške tokom postupka nadogradnje." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Tražim zastarjele programe" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Nadogradnja sistema je završena." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Djelimična nadogradnja završena." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Nisam mogao naći bilješke izdanja" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Server bi mogao biti preopterećen. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Nisam mogao preuzeti bilješke izdanja" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Molim, provjerite vašu internet konekciju." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "potvrdi identitet „%(file)s“ za potpis „%(signature)s“ " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "izvlačim „%s“" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Nisam mogao pokrenuti alat za nadogradnju" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Ovo je greška u alatu za nadogradnju. Prijavite je na 'ubuntu-bug ubuntu-" "release-upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Potpis alata za nadogradnju" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Alat za nadogradnju" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Preuzimanje nije uspjelo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Preuzimanje nadogradnje nije uspjelo. Vjerojatno je problem u mreži. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Provjera identiteta nije uspjela." #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Autorizacija nadogradnje nije uspjela. Vjerojatno je problem u mreži ili s " "serverom. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Raspakivanje nije uspelo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Ne mogu da raspakujem nadogradnju. Možda postoji problem sa mrežom ili " "serverom. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Provjera vjerodostojnosti nije uspjela" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Provjera nadogradnje nije uspjela. Vjerojatno je problem u mreži ili s " "serverom. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Nemoguće izvršiti nadogradnju" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Ovo je vjerovatno izazvano sistemom gdje je /tmp montiran sa noexec-om. " "Molim remontirajte bez noexec-a i izvršite ažuriranje ponovo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Poruka greške je '%s'." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Nadogradi" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Bilješke izdanja" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Preuzimanje dodatnih zapakovanih datoteka ..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Datoteka %s od %s na %sB/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Datoteka %s od %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Molim, ubacite '%s' u uređaj '%s'" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Izmjena Medija" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms у употреби" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Vaš sistem koristi 'evms' menadžer zvuka u /proc/mounts. Softver „evms“ više " "nije podržan, molim vas da ga isključite i ponovo pokrenete nadogradnju kada " "to uradite." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Pokretanje 'unity' okruženja nije podržano vašim grafičkim hardverom. " "Okruženje će možda biti vrlo sporo nakon nadogradnje. Naš savjet je da " "sačuvate LTS verziju. Za više informacija pogledajte " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Želite li " "nastaviti s nadogradnjom?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Vaš grafički hardver možda nije potpuno podržan u Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Podrška u Ubuntu 12.04 LTS za vaš Intelov grafički hardver je ograničena i " "može biti problema nakon nadogradnje. Za više informacija posjetite " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Želite li " "nastaviti sa nadogradnjom?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Nadogradnja može reducirati desktop efekte i učinak u igrama i drugim " "grafički zahtjevnim programima." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Ovaj računar trenutno koristi NVIDIA 'nvidia' grafički dajver. Nema dostupne " "verzija ovog drajvera koja radi sa vašom video karticom u Ubuntu 10.04 LTS.\n" "\n" "Da li želite da nastavite?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Ovaj računar trenutno koristi AMD 'fglrx' grafički dajver. Nema dostupne " "verzija ovog drajvera koja radi sa vašim hardverom u Ubuntu 10.04 LTS.\n" "\n" "Da li želite da nastavite?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Nema i686 procesora" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Vaš sistem koristi i586 CPU ili CPU koji nema 'cmov' naredbe. Svi paketi su " "kompajlirani s optimizacijama koje zahtijevaju i686 kao minimalnu " "arhitekturu. Nije moguće nadograditi sistem na novo Ubuntu izdanje s ovim " "hardverom." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Nema ARMv6 procesora" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Vaš sistem koristi ARM procesor koji je starija od ARMv6 arhitekture. Svi " "paketi u karmic-u su sagrađeni sa optimizacijama zahtijevajući ARMv6 kao " "minimalnu arhitekturu. Nije moguće nadograditi vaš sistem na novo Ubuntu " "izdanje sa ovim hardverom." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "init nije dostupan" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Vaš sistem izgleda da je virtualizovano okruženje bez init demona, npr. " "Linux-VServer. Ubuntu 10.04 LTS ne može raditi unutar ovakvog okruženja, " "zahtjevajući ažuriranje konfiguracije viruelne mašine prvo.\n" "\n" "Da li ste sigurni da želite na nastavite?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Testiranje nadogradnje korišćenjem aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "Koristiti datu putanju za traženje CD-roma sa nadogradivim paketima" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Koristi pročelje. Trenutno su dostupni:\n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*ZASTARJELO* ova opcija će biti ignorisana" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "izvrši samo djelimičnu nadogradnju (bez ponovnog ispisivanja sources.list )" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Onemogući GNU ekransku podršku" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Postavi datadir" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Preuzimanje je završeno" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Preuzimam datoteku broj %li od ukupno %li brzinom %sB/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Otprilike je ostalo %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Preuzimam datoteku %li od %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Primijenjujem promjene" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problemi sa međuzavisnostima - ostavljam nekonfigurisano" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Nisam mogao instalirati '%s'" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Nadogradnja će se nastaviti ali '%s' paket možda nije u radnom stanju. Molim " "razmotirite podnošenje izveštaja o grešci." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Zamijeniti konfiguracijsku datoteku\n" "'%s'?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Izgubit ćete sve promjene napravljene na ovoj konfiguracijskoj datoteci ako " "odaberete izmjenu s novijom verzijom programa." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Nisam našao naredbu 'diff'" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Pojavila se ozbiljna greška" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Ako već niste, molim prijavite ovo kao grešku i uz prijavu priložite " "datoteke /var/log/dist-upgrade/main.log i /var/log/dist-upgrade/apt.log. " "Nadogradnja je prekinuta.\n" "Izvorna inačica datoteke sources.list je spremljena u " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Pritisnuto Ctrl-c" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "ovo će prekinuti operaciju i može ostaviti sistem u neiskoristivom stanju. " "Da li ste sigurni da to želite učiniti?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Više ne podržava Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Povratak na stariju verziju (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Ukloni (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Nije više potrebno (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Instaliraj (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Nadogradi (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Pokaži Razliku >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Sakrij Razliku" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Greška" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Zatvori" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Pokaži Terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Sakrij Terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Obavještenje" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Detalji" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Nije više podržano %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Ukloni %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Ukloni (bio autoinstaliran) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Instaliraj %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Nadogradi %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Potreban restart" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Ponovno pokretanje računara potrebno je za završetak " "nadogradnje" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "Ponovno pok_reni računar" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "otkaži tekuću nadogradnju?" #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Poništi Nadogradnju?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li dan" msgstr[1] "%li dana" msgstr[2] "%li dana" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li sat" msgstr[1] "%li sata" msgstr[2] "%li sati" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minuta" msgstr[1] "%li minute" msgstr[2] "%li minuta" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekunda" msgstr[1] "%li sekunde" msgstr[2] "%li sekundi" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Ovo preuzimanje će 1Mbit DSL vezom trajati oko %s, a 56k modemom oko %s." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Ovo preuzimanje će vašom vezom trajati oko %s. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Priprema za nadogradnju" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Preuzima nove kanale softvera" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Preuzima nove pakete" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Instaliranje nadogradnji" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Čišćenje" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "Canonical više ne podržava %(amount)d instaliran paket . Možete još imati " "podršku od zajednice." msgstr[1] "" "Canonical više ne podržava %(amount)d instalirana paketa . Možete još imati " "podršku od zajednice." msgstr[2] "" "Canonical više ne podržava %(amount)d instaliranih paketa . Možete još imati " "podršku od zajednice." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paket će biti uklonjen." msgstr[1] "%d paket će biti uklonjen." msgstr[2] "%d paket će biti uklonjen." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d novi paket će biti instaliran." msgstr[1] "%d novi paket će biti instaliran." msgstr[2] "%d novi paket će biti instaliran." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paket će biti nadograđen." msgstr[1] "%d paket će biti nadograđen." msgstr[2] "%d paket će biti nadograđen." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Morate preuzeti ukupno %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Instalacija nadogradnje može da potraje nekoliko sati. Nakon završenog " "preuzimanja, proces ne može biti otkazan." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Dovlačenje i instalacija nadogradnje može da potraje nekoliko sati. Nakon " "završenog preuzimanja, proces ne može biti otkazan." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Uklanjanje paketa može da potraje nekoliko sati. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Softver na ovom računaru je ažuriran." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Nema nadogradnji za vaš sistem. Nadogradnja će biti otkazana." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Potrebno je ponovno pokretanje računara" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Nadogradnja je završena i potrebno je ponovo pokrenuti računar. Želite li to " "učiniti sada?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Molim prijavite ovo kao grešku i uz prijavu priložite datoteke /var/log/dist-" "upgrade/main.log i /var/log/dist-upgrade/apt.log. Nadogradnja je prekinuta.\n" "Izvorna verzija datoteke sources.list je spremljena u " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Prekidanje" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Degradirano:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Za nastavak pritisnite [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Nastavi [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Detalji [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Nije više podržano: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Ukloni: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Instaliraj: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Nadogradi: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Nastaviti? [Dn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Da bi se nadogradnja završila, potrebno je restartovati računar.Ako " "izaberete „d“ sistem će biti ponovno pokrenut." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Preuzimanje datoteke %(current)li od %(total)li brzinom %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Preuzimam datoteku %(current)li od %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Pokaži progres pojedinačnih datoteka" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Prekini nadogradnju" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Nastavi nadogradnju" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Prekinuti nadogradnju u toku?\n" "\n" "Sistem bi mogao biti u neupotrebljivom stanju ako prekinete nadogradnju. " "Preporuka je da nastavite nadogradnju." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Pokreni nadogradnju" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Zamijeni" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Razlike između datoteka" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Prijavi grešku" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Nastavi" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Pokrenuti nadogradnju?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Restartujte sistem da bi ste upotpunili nadogradnju\n" "\n" "Molim sačuvajte vaš rad pre nego što nastavite." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Nadogradnja Distribucije" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Postavljanje novih programskih kanala" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Ponovno pokretanje računara" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Nadogradnja" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Nova Ubuntu verzija je dostupna. Da li želite da nadogradite?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Ne nadograđuj" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Pitaj me kasnije" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Da, nadogradi sada" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Odbili ste da nadogradite na novu Ubuntu verziju" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Kasnije možete pokrenuti program za nadogradnju softvera i kliknuti na " "\"Nadogradi\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Obavi nadogradnju izdanja" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Da nadogradite Ubuntu, trebate se prijaviti." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Obavi dodatnu nadogradnju" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Da djelomično nadogradite , trebate se prijaviti." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Prikaži verziju i izađi" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Direktorijum koji sadrži datoteke podataka" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Izvrši naznačeni prednji prikaz" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Pokretanje djelomične nadogradnje" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Preuzimanje alatke izdanja nadogradnje" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "Provjeri da li je moguće nadograditi na najnovije razvojno izdanje" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Pokušaj nadogradnju na zadnje izdanje koristeći alat za nadogradnju iz " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Pokreni nadogradnju u specijalnom režimu.\n" "Trenutno su dostupni režimi „desktop“ za redovne nadogradnje radnih stanica " "i „server“ za ažuriranje serverskih sistema." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Testiraj ažuriranje pomoću aufs" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Provjeri samo da li je dostupno novo izdanje distribucije i izvesti o " "rezultatu putem izlaznog koda" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Provjeravam za novim izdanjem Ubuntua" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Vaš Ubuntu izdanje nije podržano više." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Za informacije o ažuriranjima posjetite:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Nema novih izdanja" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Nadogradnja izdanja trenutno nije moguća" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Nadogradnju izdanja trenutno nije moguće obaviti, molim pokušajte ponovo. " "Server je odgovorio: '%s'" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Dostupno je novo izdanje „%s“" #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "" "Pokrenite komandu „do-release-upgrade“ da biste prešli na to izdanje." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Dostupna je Ubuntu %(version)s nadogradnja" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Odbili ste nadogradnju na Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Dodaj izlaz za uklanjanje grešaka" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Prijava je potrebna da se obavi djelomična nadogradnja" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Prijava je potrebna da se obavi nadogradnja verzije" ubuntu-release-upgrader-0.220.10/po/fr.po0000644000000000000000000020663112431225715014770 0ustar # french translation of update-manager. # Copyright (C) 2005 THE update-manager'S COPYRIGHT HOLDER # This file is distributed under the same license as the update-manager package. # Jean Privat , 2005. # Vincent Carriere , 2005 # msgid "" msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-05-23 18:15+0000\n" "Last-Translator: Pierre Slamich \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:51+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: fr\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Serveur pour %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Serveur principal" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Serveurs personnalisés" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Impossible d'évaluer la ligne de source.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Impossible de localiser les fichiers des paquets. Ce n'est peut-être pas un " "disque Ubuntu ou alors il est prévu pour une autre architecture." #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Impossible d'ajouter le CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Une erreur est survenue lors de l'ajout du CD. La mise à niveau va être " "annulée. Veuillez signaler ce bogue s'il s'agit d'un CD Ubuntu valable.\n" "\n" "Le message d'erreur est :\n" "« %s »" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Supprimer le paquet endommagé" msgstr[1] "Supprimer les paquets endommagés" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Le paquet « %s » est dans un état incohérent et doit être réinstallé, mais " "aucune archive le contenant n'a été trouvée. Voulez-vous supprimer ce paquet " "maintenant et continuer ?" msgstr[1] "" "Les paquets « %s » sont endommagés et doivent être réinstallés, mais aucune " "archive n'a été trouvé pour cela. Voulez-vous supprimer ces paquets " "maintenant pour pouvoir continuer ?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Le serveur est peut-être surchargé" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Paquets cassés" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Votre système contient des paquets cassés qui n'ont pu être réparés avec ce " "logiciel. Veuillez d'abord les réparer à l'aide de Synaptic ou d'apt-get " "avant de continuer." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Un problème irrémédiable est survenu lors de l'évaluation de la mise à " "niveau :\n" "%s\n" "\n" " Cela peut-être dû à :\n" " * une mise à niveau vers une pré version d'Ubuntu ;\n" " * l'utilisation de la pré version actuelle d'Ubuntu ;\n" " * un paquet logiciel non officiel, non fourni par Ubuntu.\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Cela ressemble fort à un problème temporaire. Veuillez réessayer plus tard." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Si rien de tout cela ne s'applique, veuillez signaler ce bogue en utilisant " "la commande 'ubuntu-bug ubuntu-release-upgrader-core' dans un terminal." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Impossible d'évaluer la mise à niveau" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Erreur lors de l'authentification de certains paquets" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Certains paquets n'ont pas pu être authentifiés. Cela peut provenir d'un " "problème temporaire du réseau. Veuillez dans ce cas réessayer " "ultérieurement. Vous trouverez ci-dessous une liste des paquets non " "authentifiés." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Le paquet « %s » est marqué pour suppression mais il est dans la liste noire " "des suppressions." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Le paquet essentiel « %s » est marqué pour suppression." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Tentative d'installation de la version en liste noire « %s »" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Impossible d'installer « %s »" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "L'installation d'un paquet requis était impossible. Veuillez signaler ce " "bogue en utilisant la commande 'ubuntu-bug ubuntu-release-upgrader-core' " "dans un terminal." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Impossible de déterminer le méta-paquet" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Votre système ne contient aucun des paquets ubuntu-desktop, kubuntu-desktop, " "xubuntu-desktop ou edubuntu-desktop. La version d'Ubuntu que vous utilisez " "n'a pas pu être détectée.\n" " Veuillez d'abord installer l'un des paquets ci-dessus en utilisant Synaptic " "ou apt-get avant de continuer." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Lecture du cache" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Impossible d'obtenir un verrou exclusif" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Ceci signifie généralement qu'une autre application de gestion de paquets " "(telle que apt-get ou aptitude) est déjà en cours d'exécution. Veuillez " "d'abord fermer cette application." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "" "La mise à niveau via une connexion distante n'est pas prise en charge" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Vous effectuez la mise à niveau à travers une connexion distante SSH avec " "une interface qui ne le prend pas en charge. Veuillez essayer une mise à " "niveau en mode texte avec « do-release-upgrade ».\n" "\n" "La mise à niveau va maintenant être annulée. Veuillez essayer sans SSH." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Continuer dans une session SSH ?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Cette session semble tourner à travers SSH. Il n'est actuellement pas " "recommandé de faire une mise à niveau à travers SSH car en cas d'échec, il " "est plus difficile d'effectuer une réparation.\n" "\n" "Si vous continuez, un nouveau service SSH va être lancé sur le port « %s ».\n" "Voulez-vous continuer ?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Lancement d'un processus sshd supplémentaire" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Pour rendre plus facile la récupération en cas de dysfonctionnement, un sshd " "supplémentaire sera lancé sur le port « %s ». En cas de problème avec le SSH " "existant, vous pourrez toujours vous connecter avec l'autre.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Si vous utilisez un pare-feu, vous devrez peut-être ouvrir temporairement ce " "port. Ce n'est pas fait automatiquement car c'est potentiellement dangereux. " "Vous pouvez ouvrir le port avec par exemple :\n" "« %s »" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Mise à niveau impossible" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "" "La mise à niveau de « %s » vers « %s » n'est pas prise en charge par cet " "outil." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "La configuration de l'espace protégé (sandbox) a échoué" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "" "La création de l'environnement pour l'espace protégé (sandbox) n'a pas été " "possible." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Mode espace protégé (sandbox)" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "La mise à niveau est exécutée en mode test. Tous les changements sont écrits " "dans \"%s\" et seront perdus au prochain redémarrage.\n" "Entre maintenant et le prochain redémarrage, *aucun* changement écrit dans " "un dossier système ne sera permanent." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Votre installation de Python est endommagée. Veuillez réparer le lien " "symbolique « /usr/bin/python »." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Le paquet « debsig-verify » est installé" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "La mise à niveau ne peut pas continuer si ce paquet est installé.\n" "Veuillez le supprimer avec Synaptic ou avec « apt-get remove debsig-" "verify », puis relancez la mise à jour." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Impossible d'écrire dans '%s'" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Impossible d'écrire dans le dossier '%s' de votre système. La mise à jour ne " "peut pas continuer.\n" "Veuillez vous assurer que le dossier système est accessible en écriture." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Inclure les dernières mises à jour en provenance d'Internet ?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Le système de mise à niveau peut utiliser Internet pour télécharger " "automatiquement les dernières versions des paquets et les installer durant " "le processus. Si vous avez une connexion au réseau, ceci est fortement " "recommandé.\n" "\n" "La mise à niveau prendra plus de temps, mais une fois terminée, votre " "système sera complètement à jour. Vous pouvez choisir de ne pas faire cela " "mais vous devriez installer les dernières versions des paquets rapidement " "après la mise à jour.\n" "Si vous répondez « non », le réseau ne sera pas utilisé du tout." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "désactivé pour la mise à niveau vers %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Aucun miroir valable trouvé" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Aucune entrée de miroir pour la mise à niveau n'a été trouvée lors de " "l'analyse de vos informations sur le dépôt. Ceci peut arriver si vous " "utilisez un miroir local ou un miroir devenu obsolète.\n" "\n" "Voulez-vous recréer votre fichier « sources.list » ? Si vous choisissez " "« oui », les entrées « %s » seront changées en « %s ». Si vous choisissez " "« non », la mise à niveau sera annulée." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Générer les sources par défaut ?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Aucune entrée valable pour « %s » n'a été trouvée lors de l'analyse de votre " "fichier « sources.list ».\n" "\n" "Les entrées par défaut pour « %s » doivent-elles être ajoutées ? Si vous " "choisissez « non », la mise à niveau sera annulée." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Informations sur les dépôts non valables" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "La mise à niveau des informations des dépôts a renvoyé un fichier invalide, " "un rapport de bug va être envoyé." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Sources provenant de tiers désactivées" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Certaines entrées de votre fichier sources.list, concernant des tierces " "parties, ont été désactivées. Vous pouvez les réactiver après la mise à " "niveau avec l'outil « Sources de logiciels » ou avec Synaptic." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paquet dans un état incohérent" msgstr[1] "Paquets dans un état incohérent" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Le paquet « %s » est dans un état incohérent et doit être réinstallé, mais " "aucune archive le contenant n'a été trouvée. Veuillez réinstaller ce paquet " "manuellement ou le supprimer de votre système." msgstr[1] "" "Les paquets « %s » sont dans un état incohérent et doivent être réinstallés, " "mais aucune archive les contenant n'a été trouvée. Veuillez réinstaller ces " "paquets manuellement ou les supprimer de votre système." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Erreur lors de la mise à jour" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Un problème est survenu lors de la mise à jour. Ceci est généralement dû à " "un problème de réseau. Veuillez vérifier votre connexion au réseau et " "réessayer." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Espace libre insuffisant sur le disque" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "La mise à niveau a échoué. La mise à niveau a besoin de %s d'espace libre " "sur le disque « %s ». Veuillez libérer un espace supplémentaire de %s sur le " "disque « %s ». Videz la corbeille et supprimez les paquets logiciels " "temporaires à l'aide de l'application Système > Administration > Nettoyage " "du système, ou en tapant la commande suivante dans un terminal : « sudo apt-" "get clean »." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Calcul des modifications en cours" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Voulez-vous commencer la mise à niveau ?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Mise à niveau annulée" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "La mise à niveau va maintenant être annulée et l’état originel du système " "restauré. Vous pouvez la reprendre plus tard." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Impossible de télécharger les mises à jour" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "La mise à niveau a été interrompue. Vérifiez votre connexion internet ou " "votre média d'installation et réessayez. Tous les fichiers déjà téléchargés " "ont été sauvegardés." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Erreur pendant la soumission" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Restauration du système dans son état d'origine" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Impossible d'installer les mises à niveau" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "La mise à niveau a échoué. Votre système pourrait être inutilisable. Une " "tentative de récupération va maintenant avoir lieu (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Veuillez signaler ce bogue dans un navigateur à l'adresse " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug et " "joignez au rapport les fichiers qui se trouvent dans /var/log/dist-upgrade/ " ".\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "La mise à niveau a échoué. Veuillez vérifier votre connexion Internet et le " "support d'installation avant de réessayer. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Supprimer les paquets obsolètes ?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Conserver" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Supprimer" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Un problème est survenu lors du nettoyage. Veuillez vous reporter au message " "ci-dessous pour plus d'informations. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Dépendance nécessaire non installée" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "La dépendance nécessaire « %s » n'est pas installée. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Vérification du gestionnaire de paquets" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Échec lors de la préparation de la mise à niveau" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "La préparation du système pour la mise à niveau a échoué. Un processus de " "rapport d'incident est donc initialisé." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Impossible d'obtenir les pré-requis nécessaires à la mise à niveau" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Le système n'a pas réussi à obtenir les prérequis pour la mise à niveau. La " "mise à niveau va s'arrêter et restaurer le système dans son état initial.\n" "En complément, un processus de rapport d'incident est initialisé." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Mise à jour des informations sur les dépôts" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Impossible d'ajouter le CD" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Désolé, l'ajout du CD a échoué." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Informations sur les paquets non valables" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "Après la mise à jour de vos informations de paquet, le paquet essentiel " "« %s » n'a pu être localisé. Ceci peut se produire parce que vous n'avez pas " "de miroir officiel dans vos sources de logiciels, ou en raison d'une charge " "excessive du miroir que vous utilisez. Voir /etc/apt/sources.list pour la " "liste actuelle de vos sources de logiciels.\n" "Dans le cas d'un miroir surchargé, vous pourrez de nouveau essayer la mise à " "jour plus tard." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Récupération" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Mise à niveau" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Mise à niveau terminée" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "" "La mise à niveau est terminée, mais des erreurs se sont produites lors de ce " "processus." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Recherche de logiciels obsolètes" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "La mise à niveau du système est terminée." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "La mise à niveau partielle est terminée." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Impossible de trouver les notes de version" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Le serveur est peut-être surchargé. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Impossible de télécharger les notes de version" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Veuillez vérifier votre connexion Internet." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "authentification de '%(file)s' avec '%(signature)s' " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "extraction de '%s'" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Impossible de lancer l'outil de mise à niveau" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Ceci est probablement un bogue dans l'outil de mise à niveau. Veuillez le " "signaler comme un bogue en utilisant la commande 'ubuntu-bug ubuntu-release-" "upgrader-core'." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Signature de l'outil de mise à niveau" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Outil de mise à niveau" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Récupération impossible" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "La récupération de la mise à niveau à échoué. Il y a peut-être un problème " "de réseau. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Échec de l'authentification" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "L'authentification de la mise à niveau a échoué. Il y a peut-être un " "problème de réseau ou de serveur. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Extraction impossible" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "L'extraction de la mise à niveau a échoué. Il y a peut-être un problème de " "réseau ou de serveur. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "La vérification a échoué" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "La vérification de la mise à niveau a échoué. Il y a peut-être un problème " "de réseau ou de serveur. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Impossible de lancer la mise à niveau" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Ceci est habituellement dû a un système ou /tmp est monté en mode noexec. " "Veuillez remonter sans l'option noexec et mettre à jour à nouveau." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Le message d'erreur est « %s »." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Mettre à niveau" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Notes de version" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Téléchargement des paquets supplémentaires..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Fichier %s sur %s à %s octets/s" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Fichier %s sur %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Veuillez insérer « %s » dans le lecteur « %s »" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Changement de média" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms est en cours d'utilisation" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Votre système utilise le gestionnaire de volume « evms » dans /proc/mounts. " "Le logiciel « evms » n’est plus pris en charge. Veuillez le désactiver avant " "d'exécuter à nouveau la mise à niveau." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "Votre matériel graphique peut ne pas être entièrement pris en charge par " "Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "L'utilisation de l'environnement de bureau « Unity » n'est pas complètement " "prise en charge par votre carte graphique. Vous risquez de vous retrouver " "avec un environnement très lent après la mise à niveau. Pour le moment, nous " "vous conseillons de conserver la version LTS. Pour plus d'information, " "rendez-vous sur " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Voulez-vous " "poursuivre la mise à niveau ?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Il est possible que votre carte graphique ne soit pas entièrement prise en " "charge par Ubuntu 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "La prise en charge par Ubuntu 12.04 LTS de votre carte graphique Intel est " "limitée et il se peut vous rencontriez des problèmes après la mise à niveau. " "Pour plus d'information, rendez-vous sur " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Voulez-vous " "poursuivre la mise à niveau ?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Il se peut que la mise à niveau réduise les effets visuels et les " "performances pour les jeux et autres programmes exigeants au niveau " "graphique." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Cet ordinateur utilise actuellement le pilote graphique « nvidia » de " "NVIDIA. Il n'y a aucune version de ce pilote pour Ubuntu 10.04 LTS " "fonctionnant avec votre matériel.\n" "\n" "Voulez-vous continuer ?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Le système utilise actuellement le pilote graphique AMD « fglrx ». Aucune " "version de ce pilote pour votre matériel n'est disponible pour Ubuntu 10.04 " "LTS.\n" "\n" "Voulez-vous continuer ?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Pas de processeur i686" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Votre système utilise un processeur i586 ou un processeur qui n'a pas " "l'extension « cmov ». Tous les paquets ont été compilés avec des " "optimisations exigeant que l'architecture minimale soit i686. Il est " "impossible de mettre à niveau votre système vers une nouvelle version " "d'Ubuntu avec votre matériel actuel." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Pas de processeur ARMv6" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Votre système utilise un processeur ARM plus ancien que la génération ARMv6. " "Tous les paquets de Ubuntu 10.04 ont été construit avec des optimisations " "nécessitant au minimum une architecture ARMv6. Il est impossible de mettre à " "niveau votre système vers la nouvelle version d'Ubuntu." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Initialisation indisponible" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Il semble que votre système soit un environnement virtualisé sans démon " "d'initialisation (comme Linux-VServer). Ubuntu 10.04 LTS ne peut pas " "fonctionner dans ce type d'environnement et requiert au préalable une mise à " "jour de la configuration de votre machine virtuelle.\n" "\n" "Voulez-vous vraiment continuer ?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Mise à niveau en espace protégé (sandbox) en utilisant aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Utiliser l'emplacement spécifié pour rechercher un CD-ROM contenant des " "paquets à mettre à niveau" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Utiliser une des interfaces actuellement disponibles : \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*OBSOLÈTE* cette option sera ignorée" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Effectuer une mise à niveau partielle uniquement (sources.list ne sera pas " "remplacé)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Désactiver la prise en charge de GNU screen" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Définir l'emplacement des données" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Récupération des fichiers terminée" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Récupération du fichier %li sur %li à %s octets/s" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Temps restant : environ %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Téléchargement du fichier %li sur %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Application des changements" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "problèmes de dépendances - laissé non configuré" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Impossible d'installer « %s »" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "La mise à niveau va continuer mais le paquet « %s » pourrait ne pas être " "fonctionnel. Veuillez signaler ceci comme un bogue." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Remplacer le fichier de configuration personnalisé\n" "« %s » ?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Toutes les modifications apportées à ce fichier de configuration seront " "perdues si vous décidez de le remplacer par une version plus récente." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "La commande « diff » n'a pas été trouvée" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Une erreur fatale est survenue" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Veuillez signaler ce problème comme un bogue (si ce n'est déjà fait), et y " "inclure les fichiers /var/log/dist-upgrade/main.log et /var/log/dist-" "upgrade/apt.log. La mise a niveau a échoué.\n" "Votre fichier souce.list original a été enregistré dans " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl+C détecté" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Ceci annulera l'opération en cours et pourrait laisser le système dans un " "état inutilisable. Voulez-vous vraiment faire cela ?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Pour éviter toute perte de données, veuillez fermer toutes les applications " "et documents ouverts." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "N'est plus maintenu par Canonical (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Installer en version antérieure (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Supprimer (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "N'est plus nécessaire (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Installer (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Mettre à jour (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Afficher les différences >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Masquer les différences" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Erreur" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Fermer" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Afficher le terminal >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Masquer le terminal" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informations" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Détails" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "N'est plus maintenu (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Supprimer %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Supprimer (avait été installé automatiquement) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Installer %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Mettre à niveau %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Redémarrage nécessaire de l'ordinateur" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Redémarrez le système pour terminer la mise à niveau" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Redémarrer maintenant" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Annuler la mise à niveau en cours ?\n" "\n" "Le système pourrait devenir inutilisable suite à l'annulation de la mise à " "niveau. Il vous est fortement recommandé de reprendre celle-ci." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "_Annuler la mise à niveau ?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li jour" msgstr[1] "%li jours" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li heure" msgstr[1] "%li heures" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minute" msgstr[1] "%li minutes" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li seconde" msgstr[1] "%li secondes" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Ce téléchargement prendra environ %s avec une connexion (A)DSL 1 Mbit et " "environ %s avec un modem 56 k." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Ce téléchargement prendra environ %s avec votre connexion. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Préparation de la mise à niveau" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Obtention de nouveaux dépôts logiciels" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Obtention de nouveaux paquets" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Installation des mises à niveau" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Nettoyage" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d paquet installé n'est plus maintenu par Canonical. Vous pouvez " "toujours obtenir une assistance de la part de la communauté." msgstr[1] "" "%(amount)d paquets installés ne sont plus maintenus par Canonical. Vous " "pouvez toujours obtenir une assistance de la part de la communauté." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d paquet va être supprimé." msgstr[1] "%d paquets vont être supprimés." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d nouveau paquet va être installé." msgstr[1] "%d nouveaux paquets vont être installés." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d paquet va être mis à jour." msgstr[1] "%d paquets vont être mis à jour." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Vous devez télécharger au total %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "L'installation de la mise à niveau peut prendre plusieurs heures. Une fois " "le téléchargement terminé, ce processus ne peut être annulé." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Obtenir et installer la mise niveau peut prendre plusieurs heures. Une fois " "le téléchargement terminé, ce processus ne peut être annulé." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Supprimer les paquets peut prendre plusieurs heures. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Les logiciels sur cet ordinateur sont à jour." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Aucune mise à niveau n'est disponible pour votre système. La mise à niveau " "va maintenant être annulée." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Redémarrage nécessaire de l'ordinateur" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "La mise à niveau est terminée et l'ordinateur doit être redémarré. Voulez-" "vous le faire dès maintenant ?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Veuillez signaler ce problème comme un bogue et y inclure les fichiers " "/var/log/dist-upgrade/main.log et /var/log/dist-upgrade/apt.log. La mise a " "niveau a échoué.\n" "Votre fichier souce.list original a été enregistré dans " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Annulation" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Rétrogradé :\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Veuillez appuyer sur [Entrée] pour continuer" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "_Continuer [oN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Détails [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "o" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "N'est plus maintenu : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Supprimer : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Installer : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Mettre à niveau : %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Continuer [o/n] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Un redémarrage est nécessaire pour terminer la mise à niveau.\n" "Si vous choisissez « o », le système sera redémarré." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Téléchargement du fichier %(current)li sur %(total)li à %(speed)s/s" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Téléchargement du fichier %(current)li sur %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Afficher l'avancement de chaque fichier" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "Ann_uler la mise à niveau" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Reprendre la mise à niveau" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Annuler la mise à niveau en cours ?\n" "\n" "Le système pourrait devenir inutilisable suite à l'annulation de la mise à " "niveau. Il vous est fortement conseillé de reprendre celle-ci." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "Lancer la mi_se à niveau" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Re_mplacer" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Différence entre les fichiers" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "Signale_r un bogue" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Continuer" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Lancer la mise à niveau ?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Redémarrez le système pour terminer la mise à niveau\n" "\n" "Veuillez enregistrer vos travaux avant de poursuivre." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Mise à niveau de la distribution" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Mise à niveau d'Ubuntu vers la version 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Définition de nouveaux dépôts logiciels" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Redémarrage du système" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminal" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "Mettre à _niveau" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Une nouvelle version d'Ubuntu est disponible. Souhaitez-vous mettre à " "niveau votre système ?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Ne pas mettre à niveau" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Me le demander plus tard" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Oui, mettre à niveau maintenant" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Vous avez refusé la mise à niveau vers la nouvelle version d'Ubuntu." #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Vous pouvez faire la mise à niveau plus tard en ouvrant le gestionnaire de " "mises à jour et en cliquant sur \"Mise à niveau\"." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Effectuer une mise à niveau de version" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Pour mettre à niveau Ubuntu, vous devez vous identifier." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Effectuer une mise à niveau partielle" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Pour faire une mise à niveau partielle, vous devez vous identifier." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Afficher le numéro de version et fermer" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Dossier contenant les fichiers de données" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Lancer l'interface spécifiée" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Lancement d'une mise à niveau partielle" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Téléchargement de l'outil de mise à niveau de distribution" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Vérifier si la mise à niveau vers la dernière version de développement est " "possible" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Essayer de mettre à niveau vers la dernière version disponible en utilisant " "l'outil de mise à niveau de $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Lancer dans un mode spécial de mise à niveau.\n" "Les modes disponibles actuellement sont « desktop » pour les mises à niveau " "standard d'un ordinateur de bureau et « server » pour les installations de " "type serveur." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Tester la mise à niveau dans un environnement protégé (sandbox aufs)" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Vérifier seulement si une nouvelle distribution est disponible et afficher " "le résultat en sortie" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Recherche d'une nouvelle version d'Ubuntu" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Votre version d'Ubuntu n'est plus prise en charge." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Pour plus d'informations sur la mise à jour, veuillez visiter :\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Aucune nouvelle version trouvée" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Mise à niveau impossible dans l'immédiat." #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "La mise à niveau de la distribution ne peut s'exécuter pour le moment. " "Veuillez réessayer plus tard. Le serveur a renvoyé : « %s »" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Nouvelle version « %s » disponible." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Lancer « do-release-upgrade » pour mettre à niveau vers celle-ci." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Mise à niveau vers Ubuntu %(version)s disponible" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Vous avez refusé la mise à niveau vers Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Ajouter la sortie de débogage" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "" #~ "L'authentification est requise pour effectuer un mise à niveau de version" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "" #~ "L'authentification est requise pour effectuer une mise à niveau partielle" ubuntu-release-upgrader-0.220.10/po/lt.po0000644000000000000000000020075712431225715015003 0ustar # Lithuanian translation for Update Manager package. # Copyright (C) 2005, 2009 the Free Software Foundation, Inc. # This file is distributed under the same license as the update-manager package. # Žygimantas Beručka , 2005. # Žygimantas Beručka , 2009. msgid "" msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-07-07 19:13+0000\n" "Last-Translator: Aurimas Fišeras \n" "Language-Team: Lithuanian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "(n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Launchpad-Export-Date: 2014-04-23 06:52+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: lt\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "%s serveris" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Pagrindinis serveris" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Pasirinktiniai serveriai" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Nepavyko apskaičiuoti sources.list įrašo" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Nepavyko rasti jokių paketų failų, galbūt tai ne Ubuntu diskas arba ne ta " "architektūra?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Nepavyko įtraukti CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Pridedant CD įvyko klaida, todėl atnaujinimas bus nutrauktas. Praneškite " "apie klaidą, jei tai buvo tinkamas Ubuntu CD.\n" "\n" "Klaidos pranešimas:\n" "„%s“" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Pašalinti paketą blogoje būsenoje" msgstr[1] "Pašalinti paketus blogoje būsenoje" msgstr[2] "Pašalinti paketą blogoje būsenoje" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Paketas „%s“ yra nesuderinamoje būsenoje ir turi būti įdiegtas iš naujo, bet " "nerasta tam reikalingas archyvas. Ar norite tęsti pašalindami šį paketą?" msgstr[1] "" "Paketai „%s“ yra nesuderinamoje būsenoje ir turi būti įdiegti iš naujo, bet " "nerasta tam reikalingų archyvų. Ar norite tęsti pašalindami šiuo paketus?" msgstr[2] "" "Paketai „%s“ yra nesuderinamoje būsenoje ir turi būti įdiegti iš naujo, bet " "nerasta tam reikalingų archyvų. Ar norite tęsti pašalindami šiuo paketus?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Serveris gali būti labai apkrautas" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Sugadinti paketai" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Jūsų sistemoje yra sugadintų paketų, kurie negali būti pataisyti šia " "programa. Prieš tęsdami pirmiausia sutaisykite juos naudodami „synaptic“ " "arba „apt-get“." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "Apskaičiuojant atnaujinimą iškilo neišsprendžiama:\n" "%s\n" "\n" " Tai galėjo įvykti dėl:\n" " * Atnaujinimo į dar neišleistą Ubuntu versiją\n" " * To, kad naudojama dar neišleista Ubuntu versija\n" " * Neoficialių programinės įrangos, kurios neteikia Ubuntu, paketų\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "Tai greičiausiai yra laikina problema, pabandykite vėliau dar kartą." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Jei niekas netinka, tada praneškite apie šią klaidą naudodami komandą " "„ubuntu-bug ubuntu-release-upgrader-core“ terminale." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Nepavyko apskaičiuoti atnaujinimo" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Klaida nustatant kai kurių paketų tapatybę" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Nepavyko nustatyti kai kurių paketų tapatybės. Tai gali būti laikina tinklo " "problema. Galite pabandyti vėliau. Žemiau parodytas paketų, kurių tapatybė " "nepatvirtinta, sąrašas." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Paketas „%s“ pažymėtas pašalinimui, tačiau jis yra juodajame šalinimo sąraše." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Esminis paketas „%s“ pažymėtas pašalinimui." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Bandoma įdiegti juodajame sąraše įtrauką versiją „%s“" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Negalima įdiegti „%s“" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Neįmanoma įdiegti reikalingo paketo. Praneškite apie šią klaidą naudodami " "„ubuntu-bug ubuntu-release-upgrader-core“ terminale." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Nepavyko atspėti metapaketo" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Jūsų sistemoje nėra „ubuntu-desktop“, „kubuntu-desktop“, „xubuntu-desktop“ " "ar „edubuntu-desktop“ paketų ir nepavyko nustatyti, kokią „Ubuntu“ versiją " "naudojate.\n" " Prieš tęsdami pirmiausia įdiekite vieną iš šių paketų naudodamiesi " "„synaptic“ arba „apt-get“ priemonėmis." #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Skaitomas podėlis" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Nepavyko gauti išskirtinio užrakto" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Tai dažniausiai reiškia, kad jau veikia kita programų paketų tvarkymo " "programa (pvz., apt-get arba aptitude). Pirma užverkite tą programą." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Atnaujinimas naudojant nuotolinį prisijungimą nepalaikomas" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Jūs vykdote atnaujinimą per nuotolinį ssh susijungimą su sąsaja, kuri to " "nepalaiko. Prašome pamėginti atnaujinimą tekstiniame režime su „do-release-" "upgrade“.\n" "\n" "Atnaujinimas bus nutrauktas. Mėginkite be ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Tęsti naudojant SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Panašu, kad šis seansas paleistas per ssh. Nerekomenduojama atlikti " "atnaujinimo per ssh, nes įvykus klaidai yra sunkiau atkurti.\n" "\n" "Jei tęsite, papildoma ssh tarnyba bus paleista su prievadu „%s“.\n" "Ar norite tęsti?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Paleidžiamas papildomas nuotolinio prisijungimo serveris (sshd)" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "Siekiant palengvinti taisymą, „%s“ prievade bus paleista papildoma sshd " "kopija. Jei kažkas atsitiks veikiančiam ssh, vis dar galėsite prisijungti " "prie to papildomo.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Jei naudojate ugniasienę, jums gali reikėti laikinai atverti šį prievadą. " "Kadangi tai yra potencialiai pavojinga, tai nedaroma automatiškai. Jūs " "galite atverti prievadą, pavyzdžiui, su:\n" "„%s“" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Negalima atnaujinti" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Šis įrankis negali atnaujinti nuo „%s“ iki „%s“." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Sandbox sąranka nesėkminga" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Buvo neįmanoma sukurti sandbox aplinkos." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Sandbox veiksena" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Šis atnaujinimas vykdomas smėlio dėžės (testavimo) veiksena. Visi pakeitimai " "yra rašomi į „%s“ ir bus prarasti kito paleidimo iš naujo metu.\n" "\n" "*Jokie* pakeitimai įrašyti į sistemos katalogą nuo dabar iki kito paleidimo " "iš naujo nėra pastovūs." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Jūsų python įdiegtas netinkamai. Pataisykite „/usr/bin/python“ simbolinę " "nuorodą." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Paketas „debsig-verify“ įdiegtas" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Atnaujinimas negali būti tęsiamas, kol įdiegtas tas paketas.\n" "Iš pradžių pašalinkite jį su synaptic ar „apt-get remove debsig-verify“ ir " "paleiskite atnaujinimą iš naujo." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Negalima rašyti į „%s“" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Nėra įmanoma rašyti į sistemos katalogą „%s“ jūsų sistemoje. Atnaujinimas " "negali tęstis.\n" "Įsitikinkite, kad į sistemos katalogą galima rašyti." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Įtraukti naujausius atnaujinimus iš interneto?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Atnaujinimų sistema atnaujinimo metu gali naudodamasi internetu atsiųsti ir " "įdiegti naujausius atnaujinimus. Jei turite tinklo ryšį, tai ypač " "rekomenduojama.\n" "\n" "Atnaujinimas truks ilgiau, bet jam pasibaigus jūsų sistema bus visiškai " "atnaujinta. Galite to nedaryti, tačiau turėtumėte įdiegti šiuos naujausius " "atnaujinimus po atnaujinimo.\n" "Jei pasirinksite „Ne“, tinklo ryšiu nebus naudojamasi." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "išjungtas atnaujinant į %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Nerasta tinkamų programinės įrangos saugyklų (veidrodžių)" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "Peržvelgiant saugyklų informaciją nerasta jokių atnaujinimų dubliuojamų " "saugyklų įrašų. Tai gali atsitikti, jei naudojate vidinę dubliuojamąją " "saugyklą arba jei dubliuojamųjų saugyklų informacija yra pasenusi.\n" "Ar vis tiek norite perrašyti „sources.list“ failą? Jei čia pasirinksite " "„Taip“, bus atnaujinti visi „%s“ įrašai į „%s“.\n" "Jei pasirinksite „Ne“, atnaujinimas bus nutrauktas." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Sugeneruoti numatytąsias saugyklas?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "Peržvelgus „sources.list“ nerasta tinkamų „%s“ įrašų.\n" "\n" "Ar pridėti numatytuosius „%s“ įrašus? Jei pasirinksite „Ne“, atnaujinimas " "bus nutrauktas." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Saugyklų informacija netinkama" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Saugyklos informacijos atnaujinimas baigėsi neteisingu failu, todėl " "paleidžiamas pranešimo apie klaidą procesas." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Trečiųjų šalių programinės įrangos saugyklos išjungtos" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Kai kurie trečiųjų šalių įrašai jūsų programinės įrangos saugyklų nustatymų " "faile „sources.list“ buvo išjungti. Juos galėsite vėl įjungti, kai baigsite " "atnaujinimą, su „programinės įrangos saugyklų“ įrankiu arba paketų " "tvarkytuve." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Paketas nesuderinamoje būsenoje" msgstr[1] "Paketai nesuderinamoje būsenoje" msgstr[2] "Paketai nesuderinamoje būsenoje" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Paketas „%s“ yra nesuderinamoje būsenoje ir turi būti įdiegtas iš naujo, " "tačiau nerastas tam reikalingas archyvas. Iš naujo įdiekite jį rankiniu būdu " "arba pašalinkite iš sistemos." msgstr[1] "" "Paketai „%s“ yra nesuderinamoje būsenoje ir turi būti įdiegti iš naujo, " "tačiau nerasta tam reikalingų archyvų. Iš naujo įdiekite juos rankiniu būdu " "arba pašalinkite iš sistemos." msgstr[2] "" "Paketai „%s“ yra nesuderinamoje būsenoje ir turi būti įdiegti iš naujo, " "tačiau nerasta tam reikalingų archyvų. Iš naujo įdiekite juos rankiniu būdu " "arba pašalinkite iš sistemos." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Klaida atnaujinant" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Atnaujinant kilo problema. Tai greičiausiai kokia nors su tinklu susijusi " "problema; patikrinkite savo tinklo ryšį ir bandykite dar kartą." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Diske nepakanka laisvos vietos" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Atnaujinimas nutrauktas. Atnaujinimui reikia iš viso %s laisvos vietos diske " "„%s“. Atlaisvinkite mažiausiai %s papildomos vietos diske „%s“. Išvalykite " "šiukšlinę ir pašalinkite laikinus paketus iš ankstesnių įdiegimų naudodami " "„sudo apt-get clean“." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Apskaičiuojami pakeitimai" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Ar norite pradėti atnaujinimą?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Atnaujinimas atšauktas" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Atnaujinimas bus nutrauktas dabar ir bus atkurta originali sistemos būsena. " "Galite pratęsti atnaujinimą vėliau." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Nepavyko atsiųsti atnaujinimų" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Atnaujinimas buvo nutrauktas. Prašome patikrinti savo Interneto ryšį ar " "kompiuterio laikmeną ir pabandyti iš naujo. Visi atsisiųsti failai yra " "palikti, todėl jų nereiks siųstis iš naujo." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Klaida vykdant" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Atstatoma pradinė sistemos būsena" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Nepavyko įdiegti atnaujinimų" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Atnaujinimas nutrauktas. Jūsų sistema gali būti netinkamoje naudoti " "būsenoje. Dabar bus paleistas atkūrimas (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Praneškite apie šią klaidą naršyklėje adresu " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug ir " "prikabinkite failus esančius /var/log/dist-upgrade/ prie pranešimo apie " "klaidą.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Atnaujinimas nutrauktas. Patikrinkite savo interneto ryšį ar diegimo " "laikmeną ir bandykite dar kartą. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Pašalinti pasenusius paketus?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Palikti" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "P_ašalinti" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Valymo metu iškilo problema. Daugiau informacijos rasite žemiau esančiame " "pranešime. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Reikalaujamos priklausomybės neįdiegtos" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Reikalaujama priklausomybė „%s“ neįdiegta. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Tikrinama paketų tvarkyklė" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Nepavyko paruošti atnaujinimo" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Sistemos paruošimas atnaujinimui nepavyko, todėl paleidžiamas pranešimo apie " "klaidą procesas." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Nepavyko gauti išankstinių atnaujinimo sąlygų" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Sistemai nepavyko gauti visų būtinų sąlygų atnaujinimui. Atnaujinimas bus " "dabar nutrauktas ir atkurta originali sistemos būsena.\n" "\n" "Papildomai paleidžiamas pranešimo apie klaidą procesas." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Atnaujinama saugyklų informacija" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Nepavyko pridėti kompaktinio disko" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Atsiprašome, kompaktinio disko pridėjimas nesėkmingas." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Netinkama paketo informacija" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Atsiunčiama" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Atnaujinama" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Atnaujinimas užbaigtas" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Atnaujinimas baigtas, bet atnaujinimo proceso metu įvyko klaidų." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Ieškoma pasenusios programinės įrangos" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Sistemos atnaujinimas baigtas." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Dalinis atnaujinimas baigtas." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Nepavyko rasti laidos informacijos" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Serveris gali būti labai apkrautas. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Nepavyko atsiųsti laidos informacijos" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Patikrinkite savo interneto ryšį." #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "nustatyti „%(file)s“ tapatumą pagal „%(signature)s“ " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "išskleidžiama „%s“" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Nepavyko paleisti atnaujinimo įrankio" #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Labiausiai tikėtina, kad tai klaida atnaujinimo įrankyje. Praneškite apie ją " "naudodami komandą „ubuntu-bug ubuntu-release-upgrader-core“." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Atnaujinimo įrankio parašas" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Atnaujinimo įrankis" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Atsiųsti nepavyko" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "Nepavyko gauti atnaujinimo. Tai gali būti tinklo problema. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Nepavyko nustatyti tapatybės" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Nepavyko nustatyti atnaujinimo tapatybės. Gali būti tinklo arba serverio " "problema. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Nepavyko išpakuoti" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Nepavyko išpakuoti atnaujinimo. Gali būti tinklo arba serverio problema. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Nepavyko patikrinti" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Nepavyko patikrinti atnaujinimo. Tai gali būti ryšio arba serverio problema. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Negalima paleisti atnaujinimo" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Paprastai tai būna sukelta sistemos kur /tmp prijungta su „noexec“ " "parametru. Prašau prijunkite iš naujo be „noexec“ parametro ir atnaujinkite " "dar kartą." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Klaidos pranešimas yra „%s“." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Atnaujinti" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Laidos informacija" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Atsisiunčiami papildomi paketai..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "%s failas iš %s %sB/s greičiu" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "%s failas iš %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Įdėkite „%s“ į įrenginį „%s“" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Laikmenos keitimas" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "Naudojamas evms" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Jūsų sistema /proc/mounts naudoja „evms“ laikmenų valdyklę. „evms“ " "programinė įranga nebepalaikoma, prašome ją išjungti ir paleisti atnaujinimą " "iš naujo." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "Jūsų grafikos aparatinė įranga gali būti ne visiškai palaikoma Ubuntu 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "„Unity“ darbalaukio aplinkos vykdymas nėra visiškai palaikomas jūsų grafikos " "aparatinės įrangos. Po atnaujinimo tikriausiai turėsite labai lėtą aplinką. " "Mūsų patarimas yra kol kas naudoti LTS versiją. Daugiau informacijos rasite " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Ar vis dar " "norite tęsti atnaujinimą?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Jūsų grafikos aparatinė įranga gali būti nevisiškai palaikoma Ubuntu 12.04 " "LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Jūsų Intel grafikos aparatinės įrangos palaikymas Ubuntu 12.04 LTS yra " "ribotas, todėl galite susidurti su problemomis po atnaujinimo. Daugiau " "informacijos rasite " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Ar norite tęsti " "atnaujinimą?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Atlikus atnaujinimą gali sumažėti darbo aplinkos efektų, žaidimų ir kitų " "grafiškai reiklių programų našumas." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Šis kompiuteris dabar naudoja NVIDIA „nvidia“ grafikos tvarkyklę. Ubuntu " "10.04 LTS nėra šios tvarkyklės versijos, veikiančios su jūsų aparatine " "įranga.\n" "\n" "Ar norite tęsti?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Šis kompiuteris dabar naudoja AMD „fglrx“ grafikos tvarkyklę. Ubuntu 10.04 " "LTS nėra šios tvarkyklės versijos, veikiančios su jūsų aparatine įranga.\n" "\n" "Ar norite tęsti?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Ne i686 CP" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Jūsų sistema naudoja i586 CP ar CP, kuris neturi „cmov“ plėtinio. Visi " "paketai buvo sukurti su optimizavimais reikalaujančiais mažiausiai i686 " "architektūros. Su šia aparatine įranga neįmanoma atnaujinti jūsų sistemos į " "naują Ubuntu laidą." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Ne ARMv6 procesorius" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Jūsų sistema naudoja ARM procesorių, kuris yra senesnės, nei ARMv6 " "architektūros. Visi karmic paketai buvo sukurti optimizuojant ne senesnei, " "negu ARMv6 architektūra. Su šia aparatine įranga negalima atnaujinti jūsų " "sistemos į naują Ubuntu laidą." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Neprieinamas init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Panašu, kad jūsų sistema – tai virtualizuota aplinka be init paslaugos, " "pvz., Linux-VServer. Ubuntu 10.04 LTS negali veikti šio tipo aplinkoje, " "todėl jums pirma reikia atnaujinti savo virtualios mašinos konfigūraciją.\n" "\n" "Ar tikrai norite tęsti?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandbox atnaujinimas naudojant aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Naudoti nurodytą kelią CD įrenginio su naujintinais paketais paieškai" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Naudokite sąsają. Šiuo metu prieinamos: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*PASENUS* ši pasirinktis bus ignoruojama" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "Atlikti tik dalinį atnaujinimą (neperrašant sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Išjungti „GNU screen“ palaikymą" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Nustatyti duomenų katalogą" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Siuntimas baigtas" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Atsiunčiamas %li failas iš %li %sB/s greičiu" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Liko apie %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Atsiunčiamas %li failas iš %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Pritaikomi pakeitimai" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "priklausomybių problemos – paliekama nekonfigūruota" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Nepavyko įdiegti „%s“" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Atnaujinimas bus tęsiamas, tačiau paketas „%s“ gali neveikti. Praneškite " "apie šią klaidą." #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Ar pakeisti pakeistą konfigūracijos failą\n" "„%s“?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Jei pakeisite šį failą naujesne versija, jūs prarasite visus faile padarytus " "pakeitimus." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Komanda „diff“ nerasta" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Įvyko lemtinga klaida" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Praneškite apie taip kaip klaidą (jei to jau nepadarėte) ir į pranešimą " "įdėkite failus /var/log/dist-upgrade/main.log ir /var/log/dist-" "upgrade/apt.log. Atnaujinimas nutrauktas.\n" "Jūsų originalus „sources.list“ buvo išsaugotas kaip " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Paspausta Ctrl-C" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Tai nutrauks šią operaciją ir sistema gali likti sugadinta. Ar tikrai norite " "tai padaryti?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "Norėdami išvengti duomenų praradimo turite užverti visas atvertas programas " "ir dokumentus." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Canonical daugiau nepalaikoma (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Pasendinti (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "Pašalinti (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Daugiau nebereikalingi (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "Įdiegti (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "Atnaujinti (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Rodyti skirtumus >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Slėpti skirtumus" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Klaida" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Atsisakyti" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Užverti" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Rodyti terminalą >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Slėpti terminalą" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Informacija" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Išsami informacija" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Daugiau nepalaikoma %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Pašalinti %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Pašalinti (buvo automatiškai įdiegta) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Įdiegti %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Atnaujinti %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Reikia paleisti iš naujo" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Norėdami užbaigti atnaujinimą paleiskite operacinę sistemą iš " "naujo" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Paleisti iš naujo dabar" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Atšaukti vykdomą atnaujinimą?\n" "\n" "Sistema gali likti sugadinta, jei nutrauksite atnaujinimą. Labai " "rekomenduojama tęsti atnaujinimą." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Atšaukti atnaujinimą?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li diena" msgstr[1] "%li dienos" msgstr[2] "%li dienų" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li valanda" msgstr[1] "%li valandos" msgstr[2] "%li valandų" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li minutė" msgstr[1] "%li minutės" msgstr[2] "%li minučių" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li sekundė" msgstr[1] "%li sekundės" msgstr[2] "%li sekundžių" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Atsiuntimas užtruks maždaug %s su 1Mbit DSL ryšiu ir maždaug %s su 56k " "modemu." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Naudojant jūsų ryšį šis siuntimas užtruks apie %s. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Ruošiamasi atnaujinimui" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Gaunami nauji programinės įrangos kanalai" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Gaunami nauji paketai" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Diegiami atnaujinimai" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Išvaloma" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d įdiegtas paketas Canonical daugiau nepalaikomas. Jūs vis dar " "galite gauti palaikymą iš bendruomenės." msgstr[1] "" "%(amount)d įdiegti paketai Canonical daugiau nepalaikomi. Jūs vis dar galite " "gauti palaikymą iš bendruomenės." msgstr[2] "" "%(amount)d įdiegtų paketų Canonical daugiau nepalaikomi. Jūs vis dar galite " "gauti palaikymą iš bendruomenės." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "Bus pašalintas %d paketas." msgstr[1] "Bus pašalinti %d paketai." msgstr[2] "Bus pašalinta %d paketų." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "Bus įdiegtas %d naujas paketas." msgstr[1] "Bus įdiegti %d nauji paketai." msgstr[2] "Bus įdiegta %d naujų paketų." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "Bus atnaujintas %d paketas." msgstr[1] "Bus atnaujinti %d paketai." msgstr[2] "Bus atnaujinta %d paketų." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Iš viso reikia atsiųsti %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Atnaujinimo įdiegimas gali užtrukti kelias valandas. Kai atsiuntimas bus " "baigtas, proceso nebebus galima nutraukti." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Gauti ir įdiegti atnaujinimą gali užtrukti kelias valandas. Kai atsiuntimas " "baigtas, procesas negali būti nutrauktas." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Paketų pašalinimas gali užtrukti keletą valandų. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Programinė įranga šiame kompiuteryje yra atnaujinta." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "Šiuo metų sistemos atnaujinimų nėra. Atnaujinimas atšaukiamas." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Reikia paleisti kompiuterį iš naujo" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Atnaujinimas baigtas ir reikia paleisti kompiuterį iš naujo. Ar norite tai " "atlikti dabar?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Praneškite apie taip kaip klaidą ir į pranešimą įdėkite failus /var/log/dist-" "upgrade/main.log ir /var/log/dist-upgrade/apt.log. Atnaujinimas nutrauktas.\n" "Jūsų originalus „sources.list“ buvo išsaugotas kaip " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Nutraukiama" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Pažemintas:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "Norėdami tęsti spauskite [ĮVEDIMAS]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Tęsti [tN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Išsami informacija [i]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "t" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "i" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Daugiau nepalaikoma: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Pašalinti: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Įdiegti: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Atnaujinti: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Tęsti [Tn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "Norint baigti atnaujinimą, reikia paleisti kompiuterį iš naujo.\n" "Jei pasirinksite „t“, sistema bus paleista iš naujo." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Atsiunčiamas %(current)li failas iš %(total)li, %(speed)s/s greičiu" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Atsiunčiamas %(current)li failas iš %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Rodyti paskirų failų pažangą" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Atšaukti atnaujinimą" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Tęsti atnaujinimą" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Ar nutraukti vykdomą atnaujinimą?\n" "\n" "Jei nutrauksite atnaujinimą, sistema gali būti sugadinta. Labai patariama " "tęsti atnaujinimą." #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Pradėti atnaujinimą" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "Pa_keisti" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Skirtumai tarp failų" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Pranešti apie klaidą" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Tęsti" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Pradėti atnaujinimą?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Paleiskite kompiuterį iš naujo atnaujinimo užbaigimui\n" "\n" "Prašome išsaugoti savo darbus prieš tęsiant." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Distributyvo atnaujinimas" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Atnaujinama Ubuntu į 13.04 versiją" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Nustatomi nauji programinės įrangos saugyklų kanalai" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Kompiuteris paleidžiamas iš naujo" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Terminalas" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Atnaujinti" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "Prieinama nauja Ubuntu versija. Ar norėtumėte atnaujinti?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Neatnaujinti" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Paklausti vėliau" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Taip, atnaujinti dabar" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Jūs atsisakėte atnaujinti Ubuntu į naują versiją" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Jūs galite atnaujinti vėliau atverdami Programinės įrangos atnaujinimo " "įrankį ir paspausdami „Atnaujinti“." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Atlikti laidos atnaujinimą" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "Norint atnaujinti Ubuntu, reikia autentifikuotis." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Atlikti dalinį atnaujinimą" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "Prieš atliekant dalinį atnaujinimą, reikia autentifikuotis." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Rodyti versiją ir išeiti" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Katalogas, kuriame saugomi duomenų failai" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Paleisti nurodytą sąsają" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Vykdomas dalinis atnaujinimas" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Atsiunčiamas laidos atnaujinimo įrankis" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Patikrinti, ar galima atnaujinti iki naujausios dar neišleistos versijos." #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Bandykite atnaujinti į naujausią laidą naudodami atnaujinimo programą iš " "$distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Paleisti specialioje atnaujinimo veiksenoje.\n" "Šiuo metu yra palaikomos „desktop“ – reguliarūs atnaujinimai staliniams " "kompiuteriams – ir „server“ – atnaujinimai serverių sistemoms." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Išbandyti atnaujinimą su sandbox aufs perdanga" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Patikrinti ar yra nauja distributyvo laida ir pranešti rezultatą pabaigos " "kodu" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Ieškoma naujos Ubuntu laidos" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Jūsų Ubuntu laida daugiau nepalaikoma." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "Atnaujinimų informacijai gauti aplankykite:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Naujų laidų nerasta" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Laidos atnaujinimas dabar negalimas" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Laidos atnaujinimas dabar negalimas, mėginkite vėliau. Serveris pranešė: „%s“" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Yra nauja laida „%s“." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "Norėdami atnaujinti į ją, paleiskite „do-release-upgrade“." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Prieinamas Ubuntu %(version)s atnaujinimas" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Jūs atsisakėte atnaujinti į Ubuntu %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Pridėti derinimo išvedimą" #~ msgid "Authentication is required to perform a release upgrade" #~ msgstr "Laidos atnaujinimui atlikti reikalingas tapatumo nustatymas" #~ msgid "Authentication is required to perform a partial upgrade" #~ msgstr "Daliniam atnaujinimui atlikti reikalingas tapatumo nustatymas" ubuntu-release-upgrader-0.220.10/po/bg.po0000644000000000000000000023535012431225715014751 0ustar # Bulgarian translation of update manager. # Copyright (C) 2005 THE update manager'S COPYRIGHT HOLDER # This file is distributed under the same license as the update manager package. # Rostislav "zbrox" Raykov , 2005. # # msgid "" msgstr "" "Project-Id-Version: update manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" "POT-Creation-Date: 2013-05-22 21:30+0100\n" "PO-Revision-Date: 2013-11-21 16:08+0000\n" "Last-Translator: Atanas Kovachki \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Launchpad-Export-Date: 2014-04-23 06:50+0000\n" "X-Generator: Launchpad (build 16985)\n" "Language: bg\n" #. TRANSLATORS: %s is a country #: ../DistUpgrade/distro.py:211 ../DistUpgrade/distro.py:441 #, python-format msgid "Server for %s" msgstr "Сървър за %s" #. More than one server is used. Since we don't handle this case #. in the user interface we set "custom servers" to true and #. append a list of all used servers #: ../DistUpgrade/distro.py:229 ../DistUpgrade/distro.py:235 #: ../DistUpgrade/distro.py:251 msgid "Main server" msgstr "Основен сървър" #: ../DistUpgrade/distro.py:255 msgid "Custom servers" msgstr "Сървъри по избор" #: ../DistUpgrade/DistUpgradeAptCdrom.py:142 msgid "Could not calculate sources.list entry" msgstr "Не може да пресметне запис в sources.list" #: ../DistUpgrade/DistUpgradeAptCdrom.py:251 msgid "" "Unable to locate any package files, perhaps this is not a Ubuntu Disc or the " "wrong architecture?" msgstr "" "Намирането на програмни пакети не бе успешно. Вероятно това не е диск с " "Убунту или е с неподходяща архитектура за вашата система?" #: ../DistUpgrade/DistUpgradeAptCdrom.py:294 msgid "Failed to add the CD" msgstr "Грешка при добавяне на CD" #: ../DistUpgrade/DistUpgradeAptCdrom.py:295 #, python-format msgid "" "There was a error adding the CD, the upgrade will abort. Please report this " "as a bug if this is a valid Ubuntu CD.\n" "\n" "The error message was:\n" "'%s'" msgstr "" "Възникна грешка при добавянето на компактдиска, надграждането ще бъде " "прекратено. Моля, докладвайте това като грешка ако става въпрос за " "оригинален Убунту компактдиск.\n" "\n" "Съобщението за грешка беше:\n" "«%s»" #: ../DistUpgrade/DistUpgradeCache.py:152 msgid "Remove package in bad state" msgid_plural "Remove packages in bad state" msgstr[0] "Премахни пакета в лошо състояние" msgstr[1] "Премахни пакетите в лошо състояние" #: ../DistUpgrade/DistUpgradeCache.py:155 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Do you want to remove this package now " "to continue?" msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archives can be found for them. Do you want to remove these packages " "now to continue?" msgstr[0] "" "Пакетът «%s» не е инсталиран до край и трябва да се преинсталира, но не може " "да се намери съответният архив за него. Искате ли да премахнете този пакет " "сега, за да продължите?" msgstr[1] "" "Пакетите «%s» не са инсталирани до край и трябва да се преинсталират, но не " "могат да се намерят съответните архиви за тях. Искате ли да ги премахнете " "сега, за да продължите?" #. FIXME: not ideal error message, but we just reuse a #. existing one here to avoid a new string #: ../DistUpgrade/DistUpgradeCache.py:256 msgid "The server may be overloaded" msgstr "Сървърът може би е претоварен" #: ../DistUpgrade/DistUpgradeCache.py:369 msgid "Broken packages" msgstr "Повредени пакети" #: ../DistUpgrade/DistUpgradeCache.py:370 msgid "" "Your system contains broken packages that couldn't be fixed with this " "software. Please fix them first using synaptic or apt-get before proceeding." msgstr "" "Системата ви съдържа повредени пакети, които не могат да бъдат поправени с " "този софтуер. Моля, поправете ги със Synaptic или apt-get преди да " "продължите." #. FIXME: change the text to something more useful #: ../DistUpgrade/DistUpgradeCache.py:693 #, python-format msgid "" "An unresolvable problem occurred while calculating the upgrade:\n" "%s\n" "\n" " This can be caused by:\n" " * Upgrading to a pre-release version of Ubuntu\n" " * Running the current pre-release version of Ubuntu\n" " * Unofficial software packages not provided by Ubuntu\n" "\n" msgstr "" "При изчисляване на надграждането възникна нерешим проблем:\n" "%s\n" "\n" " Това може да се случи от:\n" " * Надграждане до преиздадена версия на Убунту\n" " * Изпълняване на преиздадена версия на Убунту\n" " * Неофициални пакети, които не са предоставени от Убунту\n" "\n" #: ../DistUpgrade/DistUpgradeCache.py:648 msgid "This is most likely a transient problem, please try again later." msgstr "" "Това най-вероятно е временен проблем. Моля, опитайте отново по-късно." #: ../DistUpgrade/DistUpgradeCache.py:651 msgid "" "If none of this applies, then please report this bug using the command " "'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Ако нито едно от горепосочените не е подходящо, моля съобщете за грешката, " "като изпълните командата «ubuntu-bug ubuntu-release-upgrader-core» в " "терминала." #: ../DistUpgrade/DistUpgradeCache.py:656 msgid "Could not calculate the upgrade" msgstr "Не може да бъде изчислено надграждането" #: ../DistUpgrade/DistUpgradeCache.py:707 msgid "Error authenticating some packages" msgstr "Грешка при удостоверяване на автентичността за някои пакети" #: ../DistUpgrade/DistUpgradeCache.py:708 msgid "" "It was not possible to authenticate some packages. This may be a transient " "network problem. You may want to try again later. See below for a list of " "unauthenticated packages." msgstr "" "Не беше възможно да се удостовери автентичността на някои пакети. Това може " "да е временен проблем с мрежата. Може би бихте искали да опитате отново по-" "късно. Вижте по-долу списъка на неудоствоерените пакети." #: ../DistUpgrade/DistUpgradeCache.py:728 #, python-format msgid "" "The package '%s' is marked for removal but it is in the removal blacklist." msgstr "" "Пакетът «%s» е маркиран за премахване, но той е в черния списък за " "премахване." #: ../DistUpgrade/DistUpgradeCache.py:732 #, python-format msgid "The essential package '%s' is marked for removal." msgstr "Основният пакет «%s» е маркиран за премахване." #: ../DistUpgrade/DistUpgradeCache.py:741 #, python-format msgid "Trying to install blacklisted version '%s'" msgstr "Опит на инсталиране на внесена в черния списък версия «%s»" #: ../DistUpgrade/DistUpgradeCache.py:859 #, python-format msgid "Can't install '%s'" msgstr "Не може да се инсталира «%s»" #: ../DistUpgrade/DistUpgradeCache.py:860 msgid "" "It was impossible to install a required package. Please report this as a bug " "using 'ubuntu-bug ubuntu-release-upgrader-core' in a terminal." msgstr "" "Невъзможно е да се инсталира изискваният пакет. Моля съобщете за грешката, " "като изпълните командата «ubuntu-bug ubuntu-release-upgrader-core» в " "терминала." #. FIXME: provide a list #: ../DistUpgrade/DistUpgradeCache.py:871 msgid "Can't guess meta-package" msgstr "Не могат да бъдат предположени мета-пакети" #: ../DistUpgrade/DistUpgradeCache.py:872 msgid "" "Your system does not contain a ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop or edubuntu-desktop package and it was not possible to detect which " "version of Ubuntu you are running.\n" " Please install one of the packages above first using synaptic or apt-get " "before proceeding." msgstr "" "Системата Ви няма инсталиран ubuntu-desktop, kubuntu-desktop, xubuntu-" "desktop или edubuntu-desktop пакет и не бе възможно засичането на версията " "на Убунту, която ползвате.\n" " Моля, преди да продължите, първо инсталирайте един от тези пакети, като " "използвате synaptic или apt-get!" #: ../DistUpgrade/DistUpgradeController.py:126 msgid "Reading cache" msgstr "Четене от кеша" #: ../DistUpgrade/DistUpgradeController.py:230 msgid "Unable to get exclusive lock" msgstr "Неуспешно получаване на изключителни права" #: ../DistUpgrade/DistUpgradeController.py:231 msgid "" "This usually means that another package management application (like apt-get " "or aptitude) already running. Please close that application first." msgstr "" "Това обикновено означава, че е стартирана друга система за управление на " "пакети (например apt-get или aptitude). Първо спрете тази програма, за да " "продължите." #: ../DistUpgrade/DistUpgradeController.py:289 msgid "Upgrading over remote connection not supported" msgstr "Надграждането през отдалечена връзка не се поддържа" #: ../DistUpgrade/DistUpgradeController.py:290 msgid "" "You are running the upgrade over a remote ssh connection with a frontend " "that does not support this. Please try a text mode upgrade with 'do-release-" "upgrade'.\n" "\n" "The upgrade will abort now. Please try without ssh." msgstr "" "Вие стартирате надграждане през отдалечена ssh връзка с фронтенд, който не " "поддържа това. Моля опитайте надграждане в текстов режим с «do-release-" "upgrade».\n" "\n" "Надграждането сега ще бъде спряно. Моля опитайте отново без ssh." #: ../DistUpgrade/DistUpgradeController.py:304 msgid "Continue running under SSH?" msgstr "Да продължи ли работата чрез SSH?" #: ../DistUpgrade/DistUpgradeController.py:305 #, python-format msgid "" "This session appears to be running under ssh. It is not recommended to " "perform a upgrade over ssh currently because in case of failure it is harder " "to recover.\n" "\n" "If you continue, an additional ssh daemon will be started at port '%s'.\n" "Do you want to continue?" msgstr "" "Тази сесия изглежда работи под ssh. Не е препоръчително да се изпълнява " "надграждане през ssh в момента, защото в случай на неуспех възстановяването " "е по-трудно. \n" "\n" "Ако продължите, допълнителен ssh демон ще бъде стартиран на порт «%s».\n" "Искате ли да продължите?" #: ../DistUpgrade/DistUpgradeController.py:319 msgid "Starting additional sshd" msgstr "Стартира допълнителен SSHD" #: ../DistUpgrade/DistUpgradeController.py:320 #, python-format msgid "" "To make recovery in case of failure easier, an additional sshd will be " "started on port '%s'. If anything goes wrong with the running ssh you can " "still connect to the additional one.\n" msgstr "" "За да направите възстановяването по-лесно в случай на загуба на данни, ще " "бъде стартиран допълнителен sshd на порт «%s». Ако нещо се обърка с " "изпълняващия се ssh, ще можете да се свържете към допълнителния ssh.\n" #: ../DistUpgrade/DistUpgradeController.py:328 #, python-format msgid "" "If you run a firewall, you may need to temporarily open this port. As this " "is potentially dangerous it's not done automatically. You can open the port " "with e.g.:\n" "'%s'" msgstr "" "Ако използвате защитна стена, може да се наложи временно да отворите този " "порт. Тъй като това е потенциално опасно, не е направено автоматично. Можете " "да отворите порта по следния начин:\n" "«%s»" #: ../DistUpgrade/DistUpgradeController.py:400 #: ../DistUpgrade/DistUpgradeController.py:445 msgid "Can not upgrade" msgstr "Надграждането е невъзможно" #: ../DistUpgrade/DistUpgradeController.py:401 #, python-format msgid "An upgrade from '%s' to '%s' is not supported with this tool." msgstr "Надграждане от «%s» на «%s» не се поддържа с този инструмент." #: ../DistUpgrade/DistUpgradeController.py:410 msgid "Sandbox setup failed" msgstr "Настройката на ограничителен режим е неуспешна" #: ../DistUpgrade/DistUpgradeController.py:411 msgid "It was not possible to create the sandbox environment." msgstr "Не беше възможно да се създаде среда за ограничителен режим." #: ../DistUpgrade/DistUpgradeController.py:417 msgid "Sandbox mode" msgstr "Ограничителен режим" #: ../DistUpgrade/DistUpgradeController.py:418 #, python-format msgid "" "This upgrade is running in sandbox (test) mode. All changes are written to " "'%s' and will be lost on the next reboot.\n" "\n" "*No* changes written to a system directory from now until the next reboot " "are permanent." msgstr "" "Това надграждане е стартирано в безопасна (тестова) среда. Всички промени се " "записват в «%s» и ще бъдат загубени след като рестартирате.\n" "\n" "До следващото рестартиране, *няма* да се правят каквито и да е било промени " "в системният каталог." #: ../DistUpgrade/DistUpgradeController.py:446 msgid "" "Your python install is corrupted. Please fix the '/usr/bin/python' symlink." msgstr "" "Python е инсталиран неправилно. Моля, коригирайте символната връзка " "«/usr/bin/python»." #: ../DistUpgrade/DistUpgradeController.py:472 msgid "Package 'debsig-verify' is installed" msgstr "Пакетът «debsig-verify» е инсталиран" #: ../DistUpgrade/DistUpgradeController.py:473 msgid "" "The upgrade can not continue with that package installed.\n" "Please remove it with synaptic or 'apt-get remove debsig-verify' first and " "run the upgrade again." msgstr "" "Надграждането не може да продължи, ако е инсталиран този пакет.\n" "Моля, премахнете го със Synaptic или «apt-get remove debsig-verify» и после " "отново стартирайте надграждането." #: ../DistUpgrade/DistUpgradeController.py:485 #, python-format msgid "Can not write to '%s'" msgstr "Не може да се изпълни записването в «%s»" #: ../DistUpgrade/DistUpgradeController.py:486 #, python-format msgid "" "Its not possible to write to the system directory '%s' on your system. The " "upgrade can not continue.\n" "Please make sure that the system directory is writable." msgstr "" "Няма достъп до системната директория «%s» във вашата система. Надграждането " "не може да продължи.\n" "Моля, уверете се в наличието на достъп към системната директория." #: ../DistUpgrade/DistUpgradeController.py:497 msgid "Include latest updates from the Internet?" msgstr "Да се изтеглят ли най-новите актуализации от интернет?" #: ../DistUpgrade/DistUpgradeController.py:498 msgid "" "The upgrade system can use the internet to automatically download the latest " "updates and install them during the upgrade. If you have a network " "connection this is highly recommended.\n" "\n" "The upgrade will take longer, but when it is complete, your system will be " "fully up to date. You can choose not to do this, but you should install the " "latest updates soon after upgrading.\n" "If you answer 'no' here, the network is not used at all." msgstr "" "Системата за надграждане може автоматично да използва интернет, за да " "изтегли най-новите актуализации и да ги инсталира по време на надграждането. " "Ако имате интернет връзка, това се препоръчва.\n" "\n" "Това надграждане ще отнеме повече време, но когато завърши, вашата система " "ще бъде с инсталирани най-новите актуализации. Може да не искате да " "направите това, но трябва да инсталирате най-новите актуализации след като " "надграждането завърши.\n" "\n" "Ако отговора ви е «Не», тогава изобщо няма да се използва интернет." #: ../DistUpgrade/DistUpgradeController.py:729 #, python-format msgid "disabled on upgrade to %s" msgstr "забранен при надграждане до %s" #: ../DistUpgrade/DistUpgradeController.py:762 msgid "No valid mirror found" msgstr "Не е открит валиден огледален сървър" #: ../DistUpgrade/DistUpgradeController.py:753 #, python-format msgid "" "While scanning your repository information no mirror entry for the upgrade " "was found. This can happen if you run a internal mirror or if the mirror " "information is out of date.\n" "\n" "Do you want to rewrite your 'sources.list' file anyway? If you choose 'Yes' " "here it will update all '%s' to '%s' entries.\n" "If you select 'No' the upgrade will cancel." msgstr "" "При сканирането на хранилището, не беше намерено огледало за надграждане. " "Това може да се случи, когато използвате вътрешно огледало или информацията " "за огледалото е изтекла.\n" "\n" "Искате ли въпреки това да презапишете файла 'sources.list'? Ако натиснете " "'Да' ще се актуализират всички '%s' до '%s' записи.\n" "Ако натиснете 'Не', няма да се извърши надграждане." #. hm, still nothing useful ... #: ../DistUpgrade/DistUpgradeController.py:783 msgid "Generate default sources?" msgstr "Да се генерират ли източници по подразбиране?" #: ../DistUpgrade/DistUpgradeController.py:784 #, python-format msgid "" "After scanning your 'sources.list' no valid entry for '%s' was found.\n" "\n" "Should default entries for '%s' be added? If you select 'No', the upgrade " "will cancel." msgstr "" "След сканирането на «sources.list», не беше намерен валиден запис за «%s».\n" "\n" "Да се добавят ли записите по подразбиране за «%s»? Ако натиснете «Не», няма " "да се извърши надграждане." #: ../DistUpgrade/DistUpgradeController.py:819 msgid "Repository information invalid" msgstr "Информацията от хранилището е невалидна" #: ../DistUpgrade/DistUpgradeController.py:820 msgid "" "Upgrading the repository information resulted in a invalid file so a bug " "reporting process is being started." msgstr "" "Обновяването на информацията за хранилищата, доведе до създаването на " "повреден файл. Стартира се процеса за докладване на грешки." #: ../DistUpgrade/DistUpgradeController.py:827 msgid "Third party sources disabled" msgstr "Изключени са източници от трети страни" #: ../DistUpgrade/DistUpgradeController.py:828 msgid "" "Some third party entries in your sources.list were disabled. You can re-" "enable them after the upgrade with the 'software-properties' tool or your " "package manager." msgstr "" "Някои записи на трети страни във вашия «sources.list» бяха изключени. Можете " "да ги разрешите отново след надграждането чрез инструмента «Програми и " "актуализации» или от вашият мениджър на пакети." #: ../DistUpgrade/DistUpgradeController.py:870 msgid "Package in inconsistent state" msgid_plural "Packages in inconsistent state" msgstr[0] "Пакет в несъвместимо състояние" msgstr[1] "Пакети в несъвместимо състояние" #: ../DistUpgrade/DistUpgradeController.py:873 #, python-format msgid "" "The package '%s' is in an inconsistent state and needs to be reinstalled, " "but no archive can be found for it. Please reinstall the package manually or " "remove it from the system." msgid_plural "" "The packages '%s' are in an inconsistent state and need to be reinstalled, " "but no archive can be found for them. Please reinstall the packages manually " "or remove them from the system." msgstr[0] "" "Пакетът «%s» е в несъвместимо състояние и трябва да се преинсталира, но не " "може да се намери архивният му файл. Моля, преинсталирайте пакета ръчно или " "го премахнете от системата." msgstr[1] "" "Пакетите «%s» са в несъвместимо състояние и трябва да се преинсталират, но " "не могат да се намерят архивните им файлове. Моля, преинсталирайте пакетите " "ръчно или ги премахнете от системата." #: ../DistUpgrade/DistUpgradeController.py:921 msgid "Error during update" msgstr "Грешка по време на актуализиране" #: ../DistUpgrade/DistUpgradeController.py:922 msgid "" "A problem occurred during the update. This is usually some sort of network " "problem, please check your network connection and retry." msgstr "" "Възникна проблем при актуализиране. Това обикновено се дължи на мрежов " "проблем. Моля, проверете вашата мрежова връзка и опитайте отново." #: ../DistUpgrade/DistUpgradeController.py:931 msgid "Not enough free disk space" msgstr "Недостатъчно свободно място на диска" #: ../DistUpgrade/DistUpgradeController.py:932 #, python-format msgid "" "The upgrade has aborted. The upgrade needs a total of %s free space on disk " "'%s'. Please free at least an additional %s of disk space on '%s'. Empty " "your trash and remove temporary packages of former installations using 'sudo " "apt-get clean'." msgstr "" "Надграждането бе прекъснато. Необходими са %s свободно пространство на диска " "«%s». Моля, освободете поне %s допълнително пространство на «%s». Изчистете " "си кошчето и премахнете временните пакети от предишни инсталации използвайки " "«sudo apt-get clean»." #. calc the dist-upgrade and see if the removals are ok/expected #. do the dist-upgrade #: ../DistUpgrade/DistUpgradeController.py:961 #: ../DistUpgrade/DistUpgradeController.py:1743 msgid "Calculating the changes" msgstr "Пресмятане на промените" #. ask the user #: ../DistUpgrade/DistUpgradeController.py:993 msgid "Do you want to start the upgrade?" msgstr "Желаете ли да започне надграждането?" #: ../DistUpgrade/DistUpgradeController.py:1066 msgid "Upgrade canceled" msgstr "Надграждането е отменено" #: ../DistUpgrade/DistUpgradeController.py:1067 msgid "" "The upgrade will cancel now and the original system state will be restored. " "You can resume the upgrade at a later time." msgstr "" "Сега надграждането ще бъде отказано и ще се възстанови оригиналното " "състояние на системата. Можете да продължите надграждането по-късно." #: ../DistUpgrade/DistUpgradeController.py:1073 #: ../DistUpgrade/DistUpgradeController.py:1197 msgid "Could not download the upgrades" msgstr "Не могат да бъдат свалени надгражданията" #: ../DistUpgrade/DistUpgradeController.py:1074 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. All files downloaded so far have been kept." msgstr "" "Надграждането бе прекъснато. Моля, проверете вашата интернет връзка или " "инсталационни носители и опитайте отново. Всички свалени файлове са " "съхранени." #. FIXME: strings are not good, but we are in string freeze #. currently #: ../DistUpgrade/DistUpgradeController.py:1148 #: ../DistUpgrade/DistUpgradeController.py:1185 #: ../DistUpgrade/DistUpgradeController.py:1290 msgid "Error during commit" msgstr "Грешка при прехвърляне" #. generate a new cache #: ../DistUpgrade/DistUpgradeController.py:1150 #: ../DistUpgrade/DistUpgradeController.py:1187 #: ../DistUpgrade/DistUpgradeController.py:1329 msgid "Restoring original system state" msgstr "Възстановяване на първоначалното състояние на системата" #: ../DistUpgrade/DistUpgradeController.py:1151 #: ../DistUpgrade/DistUpgradeController.py:1166 #: ../DistUpgrade/DistUpgradeController.py:1188 msgid "Could not install the upgrades" msgstr "Не можаха да бъдат инсталирани надгражданията" #. invoke the frontend now and show a error message #: ../DistUpgrade/DistUpgradeController.py:1156 msgid "" "The upgrade has aborted. Your system could be in an unusable state. A " "recovery will run now (dpkg --configure -a)." msgstr "" "Надграждането бе прекъснато. Системата ви може да е в нестабилно състояние. " "Сега ще се извърши възстановяване (dpkg --configure -a)." #: ../DistUpgrade/DistUpgradeController.py:1161 #, python-format msgid "" "\n" "\n" "Please report this bug in a browser at " "http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-upgrader/+filebug " "and attach the files in /var/log/dist-upgrade/ to the bug report.\n" "%s" msgstr "" "\n" "\n" "Моля, докладвайте тази грешка, като отворете страницата в браузъра си на " "адрес http://bugs.launchpad.net/ubuntu/+source/ubuntu-release-" "upgrader/+filebug и прикачете файлове от папката «/var/log/dist-upgrade/» " "към доклада си.\n" "%s" #: ../DistUpgrade/DistUpgradeController.py:1198 msgid "" "The upgrade has aborted. Please check your Internet connection or " "installation media and try again. " msgstr "" "Надграждането бе прекъснато. Моля, проверете интернет връзката или " "инсталационната среда и опитайте отново. " #: ../DistUpgrade/DistUpgradeController.py:1278 msgid "Remove obsolete packages?" msgstr "Да премахна ли остарелите пакети?" #: ../DistUpgrade/DistUpgradeController.py:1279 #: ../data/gtkbuilder/DistUpgrade.ui.h:8 msgid "_Keep" msgstr "_Задържи" #: ../DistUpgrade/DistUpgradeController.py:1279 msgid "_Remove" msgstr "_Премахни" #: ../DistUpgrade/DistUpgradeController.py:1291 msgid "" "A problem occurred during the clean-up. Please see the below message for " "more information. " msgstr "" "Възникна проблем при почистването. Моля, вижте съобщението отдолу за повече " "информация. " #. FIXME: instead of error out, fetch and install it #. here #: ../DistUpgrade/DistUpgradeController.py:1367 msgid "Required depends is not installed" msgstr "Не са инсталирани необходимите зависимости" #: ../DistUpgrade/DistUpgradeController.py:1368 #, python-format msgid "The required dependency '%s' is not installed. " msgstr "Необходимата зависимост «%s» не е инсталирана. " #. sanity check (check for ubuntu-desktop, brokenCache etc) #. then open the cache (again) #: ../DistUpgrade/DistUpgradeController.py:1636 #: ../DistUpgrade/DistUpgradeController.py:1701 msgid "Checking package manager" msgstr "Проверка на мениджъра на пакети" #: ../DistUpgrade/DistUpgradeController.py:1641 msgid "Preparing the upgrade failed" msgstr "Подготовката за надграждането бе неуспешна" #: ../DistUpgrade/DistUpgradeController.py:1642 msgid "" "Preparing the system for the upgrade failed so a bug reporting process is " "being started." msgstr "" "Възникна грешка по време на подготовката на системата към пълноценно " "надграждане. Стартира процеса за докладване на грешки." #: ../DistUpgrade/DistUpgradeController.py:1656 msgid "Getting upgrade prerequisites failed" msgstr "Грешка при получаване на изискванията за надграждане" #: ../DistUpgrade/DistUpgradeController.py:1657 msgid "" "The system was unable to get the prerequisites for the upgrade. The upgrade " "will abort now and restore the original system state.\n" "\n" "Additionally, a bug reporting process is being started." msgstr "" "Системата не може да получи предварителни предпоставки за извършване на " "пълно надграждане. Сега ще бъде прекъснато пълното надграждане и ще се " "изпълни възстановяване на първоначалното състояние на системата.\n" "\n" "Стартират системните съобщения за неизправност." #: ../DistUpgrade/DistUpgradeController.py:1685 msgid "Updating repository information" msgstr "Актуализиране на информацията от хранилището" #: ../DistUpgrade/DistUpgradeController.py:1692 msgid "Failed to add the cdrom" msgstr "Неуспешно добавяне на компактдиск" #: ../DistUpgrade/DistUpgradeController.py:1693 msgid "Sorry, adding the cdrom was not successful." msgstr "Съжаляваме, добавянето на компактдиск бе неуспешно." #: ../DistUpgrade/DistUpgradeController.py:1724 msgid "Invalid package information" msgstr "Невалидна информация за пакета" #: ../DistUpgrade/DistUpgradeController.py:1725 #, python-format msgid "" "After updating your package information, the essential package '%s' could " "not be located. This may be because you have no official mirrors listed in " "your software sources, or because of excessive load on the mirror you are " "using. See /etc/apt/sources.list for the current list of configured software " "sources.\n" "In the case of an overloaded mirror, you may want to try the upgrade again " "later." msgstr "" "След актуализиране на информацията за пакетите не е намерен необходимият " "пакет «%s». Възможно е във вашите източници на приложения да отсъстват " "официалните огледала или има превишено натоварване на огледалото, което " "използвате. Проверете списъка с източниците на приложения " "/etc/apt/sources.list\n" "В случай на голямо натоварване на огледалото може да опитате да надградите " "по-късно." #: ../DistUpgrade/DistUpgradeController.py:1749 #: ../DistUpgrade/DistUpgradeController.py:1805 msgid "Fetching" msgstr "Получаване" #: ../DistUpgrade/DistUpgradeController.py:1755 #: ../DistUpgrade/DistUpgradeController.py:1809 msgid "Upgrading" msgstr "Надграждане" #. don't abort here, because it would restore the sources.list #: ../DistUpgrade/DistUpgradeController.py:1760 #: ../DistUpgrade/DistUpgradeController.py:1811 #: ../DistUpgrade/DistUpgradeController.py:1818 #: ../DistUpgrade/DistUpgradeController.py:1829 msgid "Upgrade complete" msgstr "Надграждането завърши" #: ../DistUpgrade/DistUpgradeController.py:1761 #: ../DistUpgrade/DistUpgradeController.py:1812 #: ../DistUpgrade/DistUpgradeController.py:1819 msgid "" "The upgrade has completed but there were errors during the upgrade process." msgstr "Надграждането завърши, но възникнаха грешки по време на този процес." #: ../DistUpgrade/DistUpgradeController.py:1768 msgid "Searching for obsolete software" msgstr "Търсене на остарял софтуер" #: ../DistUpgrade/DistUpgradeController.py:1781 msgid "System upgrade is complete." msgstr "Надграждането на системата завърши." #: ../DistUpgrade/DistUpgradeController.py:1830 msgid "The partial upgrade was completed." msgstr "Частичното надграждане завърши." #: ../DistUpgrade/DistUpgradeFetcher.py:123 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:119 msgid "Could not find the release notes" msgstr "Не бяха открити бележки към изданието" #: ../DistUpgrade/DistUpgradeFetcher.py:124 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:120 msgid "The server may be overloaded. " msgstr "Сървърът може да е претоварен. " #: ../DistUpgrade/DistUpgradeFetcher.py:136 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:124 msgid "Could not download the release notes" msgstr "Неуспешно сваляне на бележките към изданието" #: ../DistUpgrade/DistUpgradeFetcher.py:137 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:125 msgid "Please check your internet connection." msgstr "Моля, проверете интернет връзката си!" #: ../DistUpgrade/DistUpgradeFetcherCore.py:75 #, python-format msgid "authenticate '%(file)s' against '%(signature)s' " msgstr "идентифициране на «%(file)s» вместо «%(signature)s'» " #: ../DistUpgrade/DistUpgradeFetcherCore.py:136 #, python-format msgid "extracting '%s'" msgstr "разархивиране на «%s»" #: ../DistUpgrade/DistUpgradeFetcherCore.py:157 #: ../DistUpgrade/DistUpgradeFetcherCore.py:158 msgid "Could not run the upgrade tool" msgstr "Не може да бъде стартирана помощната програма за надграждане." #: ../DistUpgrade/DistUpgradeFetcherCore.py:159 msgid "" "This is most likely a bug in the upgrade tool. Please report it as a bug " "using the command 'ubuntu-bug ubuntu-release-upgrader-core'." msgstr "" "Най-вероятно това е грешка в надграждането на програмата. Моля да ни " "уведомите за това, като изпълните следната команда «ubuntu-bug ubuntu-" "release-upgrader-core» в терминала." #: ../DistUpgrade/DistUpgradeFetcherCore.py:236 msgid "Upgrade tool signature" msgstr "Подпис на помощната програма за надграждане" #: ../DistUpgrade/DistUpgradeFetcherCore.py:243 msgid "Upgrade tool" msgstr "Помощна програма за надграждане" #: ../DistUpgrade/DistUpgradeFetcherCore.py:277 msgid "Failed to fetch" msgstr "Грешка при доставянето" #: ../DistUpgrade/DistUpgradeFetcherCore.py:278 msgid "Fetching the upgrade failed. There may be a network problem. " msgstr "" "Доставянето на надграждането бе неуспешно. Възможно е да има проблем с " "мрежата. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:282 msgid "Authentication failed" msgstr "Идентификацията е неуспешна" #: ../DistUpgrade/DistUpgradeFetcherCore.py:283 msgid "" "Authenticating the upgrade failed. There may be a problem with the network " "or with the server. " msgstr "" "Идентификацията на надграждането е неуспешна. Възможно е да има проблем с " "мрежата или сървъра. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:288 msgid "Failed to extract" msgstr "Грешка при извличането" #: ../DistUpgrade/DistUpgradeFetcherCore.py:289 msgid "" "Extracting the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Извличането на надграждането бе неуспешно. Възможно е да има проблем с " "мрежата или сървъра. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:294 msgid "Verification failed" msgstr "Проверката е неуспешна" #: ../DistUpgrade/DistUpgradeFetcherCore.py:295 msgid "" "Verifying the upgrade failed. There may be a problem with the network or " "with the server. " msgstr "" "Проверката на надграждането се провали. Възможно е да има проблем с мрежата " "или със сървъра. " #: ../DistUpgrade/DistUpgradeFetcherCore.py:309 #: ../DistUpgrade/DistUpgradeFetcherCore.py:315 msgid "Can not run the upgrade" msgstr "Не може да се изпълни надграждане" #: ../DistUpgrade/DistUpgradeFetcherCore.py:310 msgid "" "This usually is caused by a system where /tmp is mounted noexec. Please " "remount without noexec and run the upgrade again." msgstr "" "Това обикновено е причинено от система, където /tmp е монтиран noexec. Моля " "ремонтирайте без noexec и стартирайте надграждането отново." #: ../DistUpgrade/DistUpgradeFetcherCore.py:316 #, python-format msgid "The error message is '%s'." msgstr "Съобщението с грешка е «%s»." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:70 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:101 msgid "Upgrade" msgstr "Надграждане" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:105 #: ../data/gtkbuilder/ReleaseNotes.ui.h:1 msgid "Release Notes" msgstr "Бележки към изданието" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:147 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:160 msgid "Downloading additional package files..." msgstr "Изтегляне на допълнителни пакетни файлове..." #: ../DistUpgrade/DistUpgradeFetcherKDE.py:162 #, python-format msgid "File %s of %s at %sB/s" msgstr "Файл %s от %s с %sБ/с" #: ../DistUpgrade/DistUpgradeFetcherKDE.py:166 #, python-format msgid "File %s of %s" msgstr "Файл %s от %s" #. print("mediaChange %s %s" % (medium, drive)) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:173 #: ../DistUpgrade/DistUpgradeViewGtk.py:114 #: ../DistUpgrade/DistUpgradeViewGtk3.py:115 #: ../DistUpgrade/DistUpgradeViewKDE.py:196 #, python-format msgid "Please insert '%s' into the drive '%s'" msgstr "Моля, поставете диск «%s» в устройство «%s»" #. change = QMessageBox.question(None, _("Media Change"), msg, #. QMessageBox.Ok, QMessageBox.Cancel) #: ../DistUpgrade/DistUpgradeFetcherKDE.py:176 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:177 #: ../DistUpgrade/DistUpgradeViewKDE.py:197 msgid "Media Change" msgstr "Смяна на носител" #: ../DistUpgrade/DistUpgradeQuirks.py:208 msgid "evms in use" msgstr "evms се използва" #: ../DistUpgrade/DistUpgradeQuirks.py:209 msgid "" "Your system uses the 'evms' volume manager in /proc/mounts. The 'evms' " "software is no longer supported, please switch it off and run the upgrade " "again when this is done." msgstr "" "Вашата система използва мениджър на устройства 'evms' в /proc/mounts. " "Софтуерът 'evms' вече не се поддържа. Моля изключете го и изпълнете " "надграждането отново." #: ../DistUpgrade/DistUpgradeQuirks.py:511 msgid "Your graphics hardware may not be fully supported in Ubuntu 13.04." msgstr "" "Вашият графичен хардуер може да не се поддържа напълно в Убунту 13.04." #: ../DistUpgrade/DistUpgradeQuirks.py:248 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " "the upgrade. Our advice is to keep the LTS version for now. For more " "information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Do you still " "want to continue with the upgrade?" msgstr "" "Стартирането на Юнити ще се поддържа от вашия графичен хардуер само " "частично. Затова след надграждането, можете да получите много бавна система. " "Ние ви съветваме засега да останете на LTS версията. За повече информация " "посетете https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D. Все " "още ли искате да започнете с надграждането?" #: ../DistUpgrade/DistUpgradeQuirks.py:272 msgid "" "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Вашият графичен хардуер може да не се поддържа напълно в Убунту 12.04 LTS." #: ../DistUpgrade/DistUpgradeQuirks.py:274 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" msgstr "" "Поддръжката в Убунту 12.04 LTS за вашият графичен хардуер от Intel е " "ограничена и можете да срещнете проблеми след надграждането. За повече " "информация вижте https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx. " "Искате ли да продължите с надграждането?" #: ../DistUpgrade/DistUpgradeQuirks.py:294 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "Надграждането може да намали ефектите на работния плот и производителността " "в игрите и други графични програми." #: ../DistUpgrade/DistUpgradeQuirks.py:564 #: ../DistUpgrade/DistUpgradeQuirks.py:592 msgid "" "This computer is currently using the NVIDIA 'nvidia' graphics driver. No " "version of this driver is available that works with your video card in " "Ubuntu 10.04 LTS.\n" "\n" "Do you want to continue?" msgstr "" "Този компютър в момента използва графичния драйвер NVIDIA 'nvidia''. Няма " "версия на този драйвер, която да работи с вашата видео карта под Убунту " "10.04 LTS.\n" "\n" "Искате ли да продължите?" #: ../DistUpgrade/DistUpgradeQuirks.py:298 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS.\n" "\n" "Do you want to continue?" msgstr "" "Този компютър използва графичния драйвер AMD «fglrx». Няма версия на този " "драйвер, която да работи с вашия хардуер под Убунту 10.04 LTS.\n" "\n" "Искате ли да продължите?" #: ../DistUpgrade/DistUpgradeQuirks.py:333 msgid "No i686 CPU" msgstr "Няма i686 процесор" #: ../DistUpgrade/DistUpgradeQuirks.py:334 msgid "" "Your system uses an i586 CPU or a CPU that does not have the 'cmov' " "extension. All packages were built with optimizations requiring i686 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Вашата система използва i586 процесор или такъв който няма разширение " "«cmov». Всички пакети са създадени с оптимизации, изискващи i686 като " "минимална архитектура. Не е възможно да надградите система си до ново " "издание на Убунту с този хардуер." #: ../DistUpgrade/DistUpgradeQuirks.py:370 msgid "No ARMv6 CPU" msgstr "Няма ARMv6 процесор" #: ../DistUpgrade/DistUpgradeQuirks.py:371 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." msgstr "" "Вашата система ползва ARM CPU, която е по-стара от ARMv6 архитектура. Всички " "пакети в Karmic бяха оптимизрани с изискване минимум ARMv6 архитектура. Не е " "възможно да надградите система си до ново издание на Убунту с този хардуер." #: ../DistUpgrade/DistUpgradeQuirks.py:391 msgid "No init available" msgstr "Няма достъпен init" #: ../DistUpgrade/DistUpgradeQuirks.py:392 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " "environment, requiring an update to your virtual machine configuration " "first.\n" "\n" "Are you sure you want to continue?" msgstr "" "Вашата система изглежда, че е виртуализирана среда без init процес, т.е. " "Linux-VServer. Убунту 10.04 LTS не може да функционира в този тип среда, " "изисква се, актуализиране на настройката на виртуалната ви машина.\n" "Сигурни ли сте, че искате да продължите?" #: ../DistUpgrade/DistUpgradeMain.py:64 msgid "Sandbox upgrade using aufs" msgstr "Sandbox надграждане с помощта на aufs" #: ../DistUpgrade/DistUpgradeMain.py:66 msgid "Use the given path to search for a cdrom with upgradable packages" msgstr "" "Ползване на зададения път за търсене на компактдискове с надграждаеми пакети" #: ../DistUpgrade/DistUpgradeMain.py:72 msgid "" "Use frontend. Currently available: \n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" msgstr "" "Ползване на фронтенд. Текущо налични:\n" "DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE" #: ../DistUpgrade/DistUpgradeMain.py:75 msgid "*DEPRECATED* this option will be ignored" msgstr "*НЕПРЕПОРЪЧИТЕЛНО* тази опция ще бъде игнорирана" #: ../DistUpgrade/DistUpgradeMain.py:78 msgid "Perform a partial upgrade only (no sources.list rewriting)" msgstr "" "Извършване само на частично надграждане (без презаписване на sources.list)" #: ../DistUpgrade/DistUpgradeMain.py:81 msgid "Disable GNU screen support" msgstr "Изключи поддръжката на GNU екрана" #: ../DistUpgrade/DistUpgradeMain.py:83 msgid "Set datadir" msgstr "Задай директорията за данни" #: ../DistUpgrade/DistUpgradeViewGtk.py:135 #: ../DistUpgrade/DistUpgradeViewGtk3.py:136 #: ../DistUpgrade/DistUpgradeViewKDE.py:210 msgid "Fetching is complete" msgstr "Изтеглянето е завършено" #: ../DistUpgrade/DistUpgradeViewGtk.py:149 #: ../DistUpgrade/DistUpgradeViewGtk3.py:151 #: ../DistUpgrade/DistUpgradeViewKDE.py:226 #, python-format msgid "Fetching file %li of %li at %sB/s" msgstr "Изтегляне на файл %li от %li с %sБ/с" #: ../DistUpgrade/DistUpgradeViewGtk.py:151 #: ../DistUpgrade/DistUpgradeViewGtk.py:298 #: ../DistUpgrade/DistUpgradeViewGtk3.py:153 #: ../DistUpgrade/DistUpgradeViewGtk3.py:310 #: ../DistUpgrade/DistUpgradeViewKDE.py:227 #: ../DistUpgrade/DistUpgradeViewKDE.py:375 #, python-format msgid "About %s remaining" msgstr "Остават около %s" #: ../DistUpgrade/DistUpgradeViewGtk.py:154 #: ../DistUpgrade/DistUpgradeViewGtk3.py:156 #: ../DistUpgrade/DistUpgradeViewKDE.py:229 #, python-format msgid "Fetching file %li of %li" msgstr "Изтегляне на файл %li от %li" #. FIXME: add support for the timeout #. of the terminal (to display something useful then) #. -> longer term, move this code into python-apt #: ../DistUpgrade/DistUpgradeViewGtk.py:185 #: ../DistUpgrade/DistUpgradeViewGtk3.py:187 #: ../DistUpgrade/DistUpgradeViewKDE.py:266 msgid "Applying changes" msgstr "Прилагане на промените" #. we do not report followup errors from earlier failures #: ../DistUpgrade/DistUpgradeViewGtk.py:210 #: ../DistUpgrade/DistUpgradeViewGtk3.py:213 #: ../DistUpgrade/DistUpgradeViewKDE.py:279 msgid "dependency problems - leaving unconfigured" msgstr "проблеми със зависимости - остава не конфигуриран" #: ../DistUpgrade/DistUpgradeViewGtk.py:215 #: ../DistUpgrade/DistUpgradeViewGtk3.py:218 #: ../DistUpgrade/DistUpgradeViewKDE.py:281 #, python-format msgid "Could not install '%s'" msgstr "Не можеше да бъде инсталиран «%s»" #: ../DistUpgrade/DistUpgradeViewGtk.py:216 #: ../DistUpgrade/DistUpgradeViewGtk3.py:219 #: ../DistUpgrade/DistUpgradeViewKDE.py:282 #, python-format msgid "" "The upgrade will continue but the '%s' package may not be in a working " "state. Please consider submitting a bug report about it." msgstr "" "Надграждането ще продължи, но пакетът «%s» може да не работи. Моля помислете " "за представянето на грешки" #. self.expander.set_expanded(True) #: ../DistUpgrade/DistUpgradeViewGtk.py:233 #: ../DistUpgrade/DistUpgradeViewGtk3.py:236 #: ../DistUpgrade/DistUpgradeViewKDE.py:303 #, python-format msgid "" "Replace the customized configuration file\n" "'%s'?" msgstr "" "Да се замени ли персонализирания конфигурационен файл\n" "«%s»?" #: ../DistUpgrade/DistUpgradeViewGtk.py:234 #: ../DistUpgrade/DistUpgradeViewGtk3.py:237 #: ../DistUpgrade/DistUpgradeViewKDE.py:304 msgid "" "You will lose any changes you have made to this configuration file if you " "choose to replace it with a newer version." msgstr "" "Ще изгубите всички промени, които сте направили в този конфигурационен файл " "ако изберете да го замените с по-нова версия." #: ../DistUpgrade/DistUpgradeViewGtk.py:253 #: ../DistUpgrade/DistUpgradeViewGtk3.py:257 #: ../DistUpgrade/DistUpgradeViewKDE.py:327 msgid "The 'diff' command was not found" msgstr "Командата «diff» не бе намерена" #: ../DistUpgrade/DistUpgradeViewGtk.py:466 #: ../DistUpgrade/DistUpgradeViewGtk3.py:478 #: ../DistUpgrade/DistUpgradeViewText.py:100 msgid "A fatal error occurred" msgstr "Възникна фатална грешка" #: ../DistUpgrade/DistUpgradeViewGtk.py:467 #: ../DistUpgrade/DistUpgradeViewGtk3.py:479 msgid "" "Please report this as a bug (if you haven't already) and include the files " "/var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your " "report. The upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Моля, докладвайте това като бъг (ако вече не сте) и включете файловете " "/var/log/dist-upgrade/main.log и /var/log/dist-upgrade/apt.log в доклада. " "Надграждането бе прекъснато.\n" "Оригиналният файл sources.list бе запазен в " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewGtk.py:484 #: ../DistUpgrade/DistUpgradeViewGtk3.py:496 msgid "Ctrl-c pressed" msgstr "Ctrl-c натиснат" #: ../DistUpgrade/DistUpgradeViewGtk.py:485 #: ../DistUpgrade/DistUpgradeViewGtk3.py:497 msgid "" "This will abort the operation and may leave the system in a broken state. " "Are you sure you want to do that?" msgstr "" "Това ще прекрати операцията и може да остави системата в повредено " "състояние. Сигурни ли сте, че искате да направите това?" #. append warning #: ../DistUpgrade/DistUpgradeViewGtk.py:633 #: ../DistUpgrade/DistUpgradeViewGtk3.py:630 msgid "To prevent data loss close all open applications and documents." msgstr "" "За да предотвратите загуба на данни, затворете всички отворени приложения и " "документи." #: ../DistUpgrade/DistUpgradeViewGtk.py:647 #: ../DistUpgrade/DistUpgradeViewGtk3.py:644 #, python-format msgid "No longer supported by Canonical (%s)" msgstr "Вече не се поддържа от Каноникал. (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:648 #: ../DistUpgrade/DistUpgradeViewGtk3.py:645 #, python-format msgid "Downgrade (%s)" msgstr "Инсталиране на по-стара версия (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:649 #: ../DistUpgrade/DistUpgradeViewGtk3.py:646 #, python-format msgid "Remove (%s)" msgstr "За премахване (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:650 #: ../DistUpgrade/DistUpgradeViewGtk3.py:647 #, python-format msgid "No longer needed (%s)" msgstr "Вече не са необходими (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:651 #: ../DistUpgrade/DistUpgradeViewGtk3.py:648 #, python-format msgid "Install (%s)" msgstr "За инсталиране (%s)" #: ../DistUpgrade/DistUpgradeViewGtk.py:652 #: ../DistUpgrade/DistUpgradeViewGtk3.py:649 #, python-format msgid "Upgrade (%s)" msgstr "За надграждане (%s)" #: ../DistUpgrade/DistUpgradeViewKDE.py:339 msgid "Show Difference >>>" msgstr "Покажи разликите >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:342 msgid "<<< Hide Difference" msgstr "<<< Скрий разликите" #: ../DistUpgrade/DistUpgradeViewKDE.py:558 msgid "Error" msgstr "Грешка" #: ../DistUpgrade/DistUpgradeViewKDE.py:572 msgid "&Cancel" msgstr "&Отмени" #: ../DistUpgrade/DistUpgradeViewKDE.py:817 msgid "&Close" msgstr "&Затвори" #: ../DistUpgrade/DistUpgradeViewKDE.py:622 msgid "Show Terminal >>>" msgstr "Покажи терминала >>>" #: ../DistUpgrade/DistUpgradeViewKDE.py:625 msgid "<<< Hide Terminal" msgstr "<<< Скрий терминала" #: ../DistUpgrade/DistUpgradeViewKDE.py:705 msgid "Information" msgstr "Информация" #: ../DistUpgrade/DistUpgradeViewKDE.py:755 #: ../DistUpgrade/DistUpgradeViewKDE.py:800 #: ../DistUpgrade/DistUpgradeViewKDE.py:803 #: ../data/gtkbuilder/DistUpgrade.ui.h:7 msgid "Details" msgstr "Детайли" #: ../DistUpgrade/DistUpgradeViewKDE.py:781 #, python-format msgid "No longer supported %s" msgstr "Вече не се поддържа %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:783 #, python-format msgid "Remove %s" msgstr "Премахване на %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:785 #: ../DistUpgrade/DistUpgradeViewText.py:194 #, python-format msgid "Remove (was auto installed) %s" msgstr "Премахване (на автоматично инсталиран) %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:787 #, python-format msgid "Install %s" msgstr "Инсталиране на %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:789 #, python-format msgid "Upgrade %s" msgstr "Надграждане на %s" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 #: ../DistUpgrade/DistUpgradeViewText.py:242 msgid "Restart required" msgstr "Изисква рестартиране" #: ../DistUpgrade/DistUpgradeViewKDE.py:813 msgid "Restart the system to complete the upgrade" msgstr "" "Рестратирайте системата, за да завършите надграждането" #: ../DistUpgrade/DistUpgradeViewKDE.py:816 #: ../data/gtkbuilder/DistUpgrade.ui.h:14 msgid "_Restart Now" msgstr "_Рестартирай сега" #. FIXME make this user friendly #: ../DistUpgrade/DistUpgradeViewKDE.py:834 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly advised to resume the upgrade." msgstr "" "Отказвате ли се от изпълняващото се надграждане?\n" "\n" "Ако откажете надграждането системата може да остане в състояние, в което е " "неизползваема. Силно ви препоръчваме да продължите надграждането." #: ../DistUpgrade/DistUpgradeViewKDE.py:838 msgid "Cancel Upgrade?" msgstr "Да отменим ли надграждането?" #: ../DistUpgrade/DistUpgradeView.py:73 #, python-format msgid "%li day" msgid_plural "%li days" msgstr[0] "%li ден" msgstr[1] "%li дни" #: ../DistUpgrade/DistUpgradeView.py:75 #, python-format msgid "%li hour" msgid_plural "%li hours" msgstr[0] "%li час" msgstr[1] "%li часа" #: ../DistUpgrade/DistUpgradeView.py:77 #, python-format msgid "%li minute" msgid_plural "%li minutes" msgstr[0] "%li минута" msgstr[1] "%li минути" #: ../DistUpgrade/DistUpgradeView.py:78 #, python-format msgid "%li second" msgid_plural "%li seconds" msgstr[0] "%li секунда" msgstr[1] "%li секунди" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_days)s %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:94 #, python-format msgid "%(str_days)s %(str_hours)s" msgstr "%(str_days)s %(str_hours)s" #. TRANSLATORS: you can alter the ordering of the remaining time #. information here if you shuffle %(str_hours)s %(str_minutes)s #. around. Make sure to keep all '$(str_*)s' in the translated string #. and do NOT change anything appart from the ordering. #. #. %(str_hours)s will be either "1 hour" or "2 hours" depending on the #. plural form #. #. Note: most western languages will not need to change this #: ../DistUpgrade/DistUpgradeView.py:112 #, python-format msgid "%(str_hours)s %(str_minutes)s" msgstr "%(str_hours)s %(str_minutes)s" #. 56 kbit #. 1Mbit = 1024 kbit #: ../DistUpgrade/DistUpgradeView.py:163 #, python-format msgid "" "This download will take about %s with a 1Mbit DSL connection and about %s " "with a 56k modem." msgstr "" "Това изтегляне ще отнеме около %s с 1Мбит DSL връзка и около %s с модемна " "връзка при 56Кбит скорост." #. if we have a estimated speed, use it #: ../DistUpgrade/DistUpgradeView.py:167 #, python-format msgid "This download will take about %s with your connection. " msgstr "Това изтегляне ще отнеме около %s с вашата връзка. " #. Declare these translatable strings from the .ui files here so that #. xgettext picks them up. #: ../DistUpgrade/DistUpgradeView.py:271 #: ../data/gtkbuilder/DistUpgrade.ui.h:21 msgid "Preparing to upgrade" msgstr "Подготовка за надграждане" #: ../DistUpgrade/DistUpgradeView.py:272 msgid "Getting new software channels" msgstr "Получаване на нови софтуерни канали" #: ../DistUpgrade/DistUpgradeView.py:273 #: ../data/gtkbuilder/DistUpgrade.ui.h:23 msgid "Getting new packages" msgstr "Получаване на нови пакети" #: ../DistUpgrade/DistUpgradeView.py:274 #: ../data/gtkbuilder/DistUpgrade.ui.h:26 msgid "Installing the upgrades" msgstr "Инсталиране на надгражданията" #: ../DistUpgrade/DistUpgradeView.py:275 #: ../data/gtkbuilder/DistUpgrade.ui.h:25 msgid "Cleaning up" msgstr "Почистване" #: ../DistUpgrade/DistUpgradeView.py:360 #, python-format msgid "" "%(amount)d installed package is no longer supported by Canonical. You can " "still get support from the community." msgid_plural "" "%(amount)d installed packages are no longer supported by Canonical. You can " "still get support from the community." msgstr[0] "" "%(amount)d инсталирания пакет вече не се поддържа от Каноникал. Все още " "можете да получите поддръжка от обществеността." msgstr[1] "" "%(amount)d инсталираните пакети вече не се поддържат от Каноникал. Все още " "можете да получите поддръжка от обществеността." #. FIXME: make those two separate lines to make it clear #. that the "%" applies to the result of ngettext #: ../DistUpgrade/DistUpgradeView.py:369 #, python-format msgid "%d package is going to be removed." msgid_plural "%d packages are going to be removed." msgstr[0] "%d пакет ще бъде премахнат." msgstr[1] "%d пакета ще бъдат премахнати." #: ../DistUpgrade/DistUpgradeView.py:374 #, python-format msgid "%d new package is going to be installed." msgid_plural "%d new packages are going to be installed." msgstr[0] "%d нов пакет ще бъде инсталиран." msgstr[1] "%d нови пакета ще бъдат инсталирани." #: ../DistUpgrade/DistUpgradeView.py:380 #, python-format msgid "%d package is going to be upgraded." msgid_plural "%d packages are going to be upgraded." msgstr[0] "%d пакет ще бъде надграден." msgstr[1] "%d нови пакета ще бъдат надградени." #: ../DistUpgrade/DistUpgradeView.py:388 #, python-format msgid "" "\n" "\n" "You have to download a total of %s. " msgstr "" "\n" "\n" "Трябва да бъдат изтеглени общо %s. " #: ../DistUpgrade/DistUpgradeView.py:393 msgid "" "Installing the upgrade can take several hours. Once the download has " "finished, the process cannot be canceled." msgstr "" "Инсталирането на надграждането може да отнеме няколко часа. След като " "приключи изтеглянето, процесът не може да бъде спрян." #: ../DistUpgrade/DistUpgradeView.py:397 msgid "" "Fetching and installing the upgrade can take several hours. Once the " "download has finished, the process cannot be canceled." msgstr "" "Свалянето и инсталирането на надграждането може да отнеме няколко часа. След " "като приключи свалянето, процесът не може да бъде спрян." #: ../DistUpgrade/DistUpgradeView.py:402 msgid "Removing the packages can take several hours. " msgstr "Премахването на пакетите може да отнеме няколко часа. " #. FIXME: this should go into DistUpgradeController #: ../DistUpgrade/DistUpgradeView.py:407 msgid "The software on this computer is up to date." msgstr "Софтуерът на този компютър е в актуално състояние." #: ../DistUpgrade/DistUpgradeView.py:408 msgid "" "There are no upgrades available for your system. The upgrade will now be " "canceled." msgstr "" "Няма налични надграждания за вашата система. Надграждането ще бъде " "прекратено." #: ../DistUpgrade/DistUpgradeView.py:421 msgid "Reboot required" msgstr "Изисква рестартиране" #: ../DistUpgrade/DistUpgradeView.py:422 msgid "" "The upgrade is finished and a reboot is required. Do you want to do this now?" msgstr "" "Надграждането завърши и се изисква рестартиране на системата. Искате ли да " "направите това сега?" #: ../DistUpgrade/DistUpgradeViewText.py:101 msgid "" "Please report this as a bug and include the files /var/log/dist-" "upgrade/main.log and /var/log/dist-upgrade/apt.log in your report. The " "upgrade has aborted.\n" "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade." msgstr "" "Моля, докладвайте това като бъг и включете файловете /var/log/dist-" "upgrade/main.log и /var/log/dist-upgrade/apt.lo в доклада. Надграждането бе " "прекъснато.\n" "Оригиналният файл sources.list бе запазен в " "/etc/apt/sources.list.distUpgrade." #: ../DistUpgrade/DistUpgradeViewText.py:125 msgid "Aborting" msgstr "Прекратяване" #: ../DistUpgrade/DistUpgradeViewText.py:130 msgid "Demoted:\n" msgstr "Понижен:\n" #: ../DistUpgrade/DistUpgradeViewText.py:137 msgid "To continue please press [ENTER]" msgstr "За да продължите моля натиснете [ENTER]" #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 #: ../DistUpgrade/DistUpgradeViewText.py:215 msgid "Continue [yN] " msgstr "Продъжаване [yN] " #: ../DistUpgrade/DistUpgradeViewText.py:169 #: ../DistUpgrade/DistUpgradeViewText.py:208 msgid "Details [d]" msgstr "Детайли [d]" #. TRANSLATORS: the "y" is "yes" #. TRANSLATORS: first letter of a positive (yes) answer #: ../DistUpgrade/DistUpgradeViewText.py:174 #: ../DistUpgrade/DistUpgradeViewText.py:218 msgid "y" msgstr "y" #. TRANSLATORS: the "n" is "no" #. TRANSLATORS: first letter of a negative (no) answer #: ../DistUpgrade/DistUpgradeViewText.py:177 #: ../DistUpgrade/DistUpgradeViewText.py:225 msgid "n" msgstr "n" #. TRANSLATORS: the "d" is "details" #: ../DistUpgrade/DistUpgradeViewText.py:180 msgid "d" msgstr "d" #: ../DistUpgrade/DistUpgradeViewText.py:185 #, python-format msgid "No longer supported: %s\n" msgstr "Вече не се поддържа: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:190 #, python-format msgid "Remove: %s\n" msgstr "Премахване на %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:200 #, python-format msgid "Install: %s\n" msgstr "Инсталиране на: %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:205 #, python-format msgid "Upgrade: %s\n" msgstr "Надграждане на %s\n" #: ../DistUpgrade/DistUpgradeViewText.py:222 msgid "Continue [Yn] " msgstr "Продължи [Yn] " #: ../DistUpgrade/DistUpgradeViewText.py:243 msgid "" "To finish the upgrade, a restart is required.\n" "If you select 'y' the system will be restarted." msgstr "" "За приключите надграждането е необходимо рестартиране.\n" "Ако изберете «y» системата ще се рестартира." #: ../DistUpgrade/GtkProgress.py:73 #, python-format msgid "Downloading file %(current)li of %(total)li with %(speed)s/s" msgstr "Изтегляне на файл %(current)li от %(total)li при %(speed)s/сек" #: ../DistUpgrade/GtkProgress.py:79 #, python-format msgid "Downloading file %(current)li of %(total)li" msgstr "Изтегляне на файл %(current)li от %(total)li" #: ../data/gtkbuilder/AcquireProgress.ui.h:1 #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:7 msgid "Show progress of individual files" msgstr "Покажи напредъка за индивидулните файлове" #: ../data/gtkbuilder/DistUpgrade.ui.h:1 msgid "_Cancel Upgrade" msgstr "_Отмени надграждането" #: ../data/gtkbuilder/DistUpgrade.ui.h:2 msgid "_Resume Upgrade" msgstr "_Поднови надграждането" #: ../data/gtkbuilder/DistUpgrade.ui.h:3 msgid "" "Cancel the running upgrade?\n" "\n" "The system could be in an unusable state if you cancel the upgrade. You are " "strongly adviced to resume the upgrade." msgstr "" "Да се отмени ли протичащото надграждане?\n" "\n" "Системата ви може да се окаже в неизползваемо състояние, ако отмените " "надграждането. Силно препоръчвано е да възобновите надграждането!" #: ../data/gtkbuilder/DistUpgrade.ui.h:6 msgid "_Start Upgrade" msgstr "_Стартирай надграждането" #: ../data/gtkbuilder/DistUpgrade.ui.h:9 msgid "_Replace" msgstr "_Замени" #: ../data/gtkbuilder/DistUpgrade.ui.h:10 msgid "Difference between the files" msgstr "Разлика между файловете" #: ../data/gtkbuilder/DistUpgrade.ui.h:11 msgid "_Report Bug" msgstr "_Съобщи за грешка" #: ../data/gtkbuilder/DistUpgrade.ui.h:12 msgid "_Continue" msgstr "_Продължи" #: ../data/gtkbuilder/DistUpgrade.ui.h:13 msgid "Start the upgrade?" msgstr "Да започне ли надграждането?" #: ../data/gtkbuilder/DistUpgrade.ui.h:15 msgid "" "Restart the system to complete the upgrade\n" "\n" "Please save your work before continuing." msgstr "" "Рестартирайте системата за да завършите надграждането\n" "\n" "Моля запишете текущата си работа преди да продължите." #: ../data/gtkbuilder/DistUpgrade.ui.h:18 msgid "Distribution Upgrade" msgstr "Надграждане на дистрибуцията" #: ../data/gtkbuilder/DistUpgrade.ui.h:19 msgid "Upgrading Ubuntu to version 13.04" msgstr "Актуализиране на Убунту до версия 13.04" #: ../data/gtkbuilder/DistUpgrade.ui.h:20 msgid " " msgstr " " #: ../data/gtkbuilder/DistUpgrade.ui.h:22 msgid "Setting new software channels" msgstr "Настройване на нови софтуерни канали" #: ../data/gtkbuilder/DistUpgrade.ui.h:24 msgid "Restarting the computer" msgstr "Рестартиране на компютъра" #: ../data/gtkbuilder/DistUpgrade.ui.h:27 msgid "Terminal" msgstr "Терминал" #: ../data/gtkbuilder/ReleaseNotes.ui.h:2 msgid "_Upgrade" msgstr "_Надгради" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:1 msgid "" "A new version of Ubuntu is available. Would you like to upgrade?" msgstr "" "Налична е нова версия на Убунту. Бихте ли искали да надградите?" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:2 msgid "Don't Upgrade" msgstr "Не надграждай" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:3 msgid "Ask Me Later" msgstr "Напомни по късно" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:4 msgid "Yes, Upgrade Now" msgstr "Да, надгради сега" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:5 msgid "You have declined to upgrade to the new Ubuntu" msgstr "Вие сте отхвърлили надграждането до нова версия на Убунту" #: ../data/gtkbuilder/UpgradePromptDialog.ui.h:6 msgid "" "You can upgrade at a later time by opening Software Updater and click on " "\"Upgrade\"." msgstr "" "Можете да се надградите по-късно, като отворите центъра за актуализации и " "щракнете върху «Обнови»." #: ../data/com.ubuntu.release-upgrader.policy.in.h:1 msgid "Perform a release upgrade" msgstr "Стартирай надграждането на изданието" #: ../data/com.ubuntu.release-upgrader.policy.in.h:2 msgid "To upgrade Ubuntu, you need to authenticate." msgstr "За да надградите Убунту, ще трябва да се идентифицирате." #: ../data/com.ubuntu.release-upgrader.policy.in.h:3 msgid "Perform a partial upgrade" msgstr "Изпълни частично надграждане" #: ../data/com.ubuntu.release-upgrader.policy.in.h:4 msgid "To perform a partial upgrade, you need to authenticate." msgstr "За извършване на частично надграждане, ще трябва да се представите." #: ../do-partial-upgrade:67 ../do-release-upgrade:69 msgid "Show version and exit" msgstr "Покажи версията и излез" #: ../do-partial-upgrade:70 ../do-release-upgrade:76 msgid "Directory that contains the data files" msgstr "Папка, която съдържа файловете с данни" #: ../do-partial-upgrade:73 ../do-release-upgrade:89 msgid "Run the specified frontend" msgstr "Стартирай определения фронтенд" #: ../do-partial-upgrade:90 msgid "Running partial upgrade" msgstr "Протичане на частично надграждане" #: ../do-release-upgrade:31 msgid "Downloading the release upgrade tool" msgstr "Сваляне на инструмента за награждане на изданието" #: ../do-release-upgrade:72 ../check-new-release-gtk:177 msgid "Check if upgrading to the latest devel release is possible" msgstr "" "Провери дали е възможно надграждането до последното нестабилно издание в " "разработка" #: ../do-release-upgrade:79 ../check-new-release-gtk:181 msgid "" "Try upgrading to the latest release using the upgrader from $distro-proposed" msgstr "" "Опитайте се да надградите до най-новото издание, използвайки $distro-proposed" #: ../do-release-upgrade:83 msgid "" "Run in a special upgrade mode.\n" "Currently 'desktop' for regular upgrades of a desktop system and 'server' " "for server systems are supported." msgstr "" "Изпълнение в специален режим за надграждане.\n" "Текущо се поддържат 'работен плот' за редовно актуализиране на настолни " "системи и 'сървър' за сървърни системи." #: ../do-release-upgrade:91 msgid "Test upgrade with a sandbox aufs overlay" msgstr "Тествай надграждането в безопасен режим" #: ../do-release-upgrade:94 msgid "" "Check only if a new distribution release is available and report the result " "via the exit code" msgstr "" "Провери за наличие на нова версия на дистрибуцията и докладвай резултата с " "помощта на кода за излизане" #: ../do-release-upgrade:108 msgid "Checking for a new Ubuntu release" msgstr "Проверка за наличие ново издание на Убунту" #: ../do-release-upgrade:121 msgid "Your Ubuntu release is not supported anymore." msgstr "Вашата версия на Убунту вече не се поддържа." #: ../do-release-upgrade:122 msgid "" "For upgrade information, please visit:\n" "%(url)s\n" msgstr "" "За повече информация, моля посетете:\n" "%(url)s\n" #: ../do-release-upgrade:128 msgid "No new release found" msgstr "Не е намерено ново издание" #: ../do-release-upgrade:133 msgid "Release upgrade not possible right now" msgstr "Надграждането на изданието сега е невъзможно" #: ../do-release-upgrade:134 #, c-format msgid "" "The release upgrade can not be performed currently, please try again later. " "The server reported: '%s'" msgstr "" "Надграждането към ново издание понастоящем не може да се извърши, моля " "опитайте по-късно. Сървърът върна: «%s»" #: ../do-release-upgrade:140 #, c-format msgid "New release '%s' available." msgstr "Достъпно е ново издание на «%s»." #: ../do-release-upgrade:141 msgid "Run 'do-release-upgrade' to upgrade to it." msgstr "За да се надградите до него, изпълнете «do-release-upgrade»." #: ../check-new-release-gtk:113 msgid "Ubuntu %(version)s Upgrade Available" msgstr "Достъпно е надграждане на Убунту %(version)s" #: ../check-new-release-gtk:144 #, c-format msgid "You have declined the upgrade to Ubuntu %s" msgstr "Вие сте отказали надграждането до Убунту %s" #: ../check-new-release-gtk:186 msgid "Add debug output" msgstr "Добави резултатите за отстраняване на грешки" ubuntu-release-upgrader-0.220.10/check-new-release-gtk0000755000000000000000000001544112431225715017373 0ustar #!/usr/bin/python3 # check-new-release-gtk - this is called periodically in the background # (currently by update-notifier every 48h) to # gather information about new releases of Ubuntu # or to nag about no longer supported versions # # Copyright (c) 2010,2011 Canonical # # Author: Michael Vogt # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA from __future__ import print_function from gi.repository import Gio from gi.repository import GLib from gi.repository import Gtk import locale import logging import os import subprocess import sys import time import gettext from optparse import OptionParser from UpdateManager.Core.utils import init_proxy from DistUpgrade.DistUpgradeFetcher import DistUpgradeFetcherGtk from UpdateManager.MetaReleaseGObject import MetaRelease from DistUpgrade.SimpleGtk3builderApp import SimpleGtkbuilderApp #FIXME: Workaround a bug in optparser which doesn't handle unicode/str # correctly, see http://bugs.python.org/issue4391 # Should be resolved by Python3 gettext.bindtextdomain("ubuntu-release-upgrader", "/usr/share/locale") gettext.textdomain("ubuntu-release-upgrader") translation = gettext.translation("ubuntu-release-upgrader", fallback=True) if sys.version >= '3': _ = translation.gettext else: _ = translation.ugettext # overwrite default upgrade fetcher and make it not show the # release notes by default class DistUpgradeFetcher(DistUpgradeFetcherGtk): def showReleaseNotes(self): # nothing to do return True class CheckNewReleaseGtk(SimpleGtkbuilderApp): """ Gtk version of the release notes check/download """ # the timeout until we give up FETCH_TIMEOUT = 20 def __init__(self, options): self.options = options self.datadir = options.datadir self.new_dist = None logging.debug("running with devel=%s proposed=%s" % ( options.devel_release, options.proposed_release)) m = MetaRelease(useDevelopmentRelease=options.devel_release, useProposed=options.proposed_release) m.connect("new-dist-available", self.new_dist_available) GLib.timeout_add_seconds(self.FETCH_TIMEOUT, self.timeout, None) def _run_dialog(self, dialog): window = Gtk.Window() window.set_title(_("Software Updater")) window.set_icon_name("system-software-update") window.set_position(Gtk.WindowPosition.CENTER) window.set_resizable(False) window.add(dialog) dialog.start() window.show_all() Gtk.main() def new_dist_available(self, meta_release, new_dist): logging.debug("new_dist_available: %s" % new_dist) self.new_dist = new_dist client = Gio.Settings("com.ubuntu.update-manager") ignore_dist = client.get_string("check-new-release-ignore") # only honor the ignore list if the distro is still supported, otherwise # go into nag mode if (ignore_dist == new_dist.name and meta_release.no_longer_supported is None): logging.warn("found new dist '%s' but it is on the ignore list" % new_dist.name) sys.exit() # show alert on unsupported distros if meta_release.no_longer_supported is not None: subprocess.call(['update-manager', '--no-update']) Gtk.main_quit() else: self.build_ui() self.window_main.set_title(_("Ubuntu %(version)s Upgrade Available") % {'version': new_dist.version}) self.window_main.show() def close(self): self.window_main.destroy() Gtk.main_quit() def build_ui(self): SimpleGtkbuilderApp.__init__(self, self.datadir+"/gtkbuilder/UpgradePromptDialog.ui", "ubuntu-release-upgrader") def on_button_upgrade_now_clicked(self, button): logging.debug("upgrade now") extra_args = "" if options.devel_release: extra_args = extra_args + " --devel-release" if options.proposed_release: extra_args = extra_args + " --proposed" os.execl("/bin/sh", "/bin/sh", "-c", "/usr/bin/pkexec /usr/bin/do-release-upgrade " "--frontend=DistUpgradeViewGtk3%s" % extra_args) def on_button_ask_me_later_clicked(self, button): logging.debug("ask me later") # check again in a week next_check = time.time() + 7*24*60*60 client = Gio.Settings("com.ubuntu.update-notifier") client.set_uint("release-check-time", int(next_check)) Gtk.main_quit() def on_button_dont_upgrade_clicked(self, button): #print("don't upgrade") s = _("You have declined the upgrade to Ubuntu %s") % self.new_dist.version self.dialog_really_do_not_upgrade.set_markup("%s" % s) if self.dialog_really_do_not_upgrade.run() == Gtk.ResponseType.OK: client = Gio.Settings("com.ubuntu.update-manager") client.set_string("check-new-release-ignore", self.new_dist.name) Gtk.main_quit() def on_linkbutton_release_notes_clicked(self, linkbutton): # gtk will do the right thing if uri is set pass def window_delete_event_cb(self, window, event): Gtk.main_quit() def timeout(self, user_data): if self.new_dist is None: logging.warn("timeout reached, exiting") Gtk.main_quit() if __name__ == "__main__": Gtk.init_check(sys.argv) try: locale.setlocale(locale.LC_ALL, "") except: pass init_proxy() parser = OptionParser() parser.add_option ("-d", "--devel-release", action="store_true", dest="devel_release", default=False, help=_("Check if upgrading to the latest devel release " "is possible")) parser.add_option ("-p", "--proposed", action="store_true", dest="proposed_release", default=False, help=_("Try upgrading to the latest release using " "the upgrader from $distro-proposed")) # mostly useful for development parser.add_option ("", "--datadir", default="/usr/share/ubuntu-release-upgrader") parser.add_option ("", "--debug", action="store_true", default=False, help=_("Add debug output")) (options, args) = parser.parse_args() if options.debug: logging.basicConfig(level=logging.DEBUG) # create object cnr = CheckNewReleaseGtk(options) Gtk.main() ubuntu-release-upgrader-0.220.10/setup.py0000755000000000000000000000300212431225715015103 0ustar #!/usr/bin/env python import glob from distutils.core import setup from subprocess import check_output from DistUtilsExtra.command import ( build_extra, build_i18n) for line in check_output('dpkg-parsechangelog --format rfc822'.split(), universal_newlines=True).splitlines(): header, colon, value = line.lower().partition(':') if header == 'version': version = value.strip() break else: raise RuntimeError('No version found in debian/changelog') setup(name='ubuntu-release-upgrader', version=version, packages=[ 'DistUpgrade', ], scripts=[ "do-partial-upgrade", "do-release-upgrade", "kubuntu-devel-release-upgrade", "check-new-release-gtk", ], data_files=[ ('share/ubuntu-release-upgrader/gtkbuilder', glob.glob("data/gtkbuilder/*.ui") ), ('share/ubuntu-release-upgrader/', glob.glob("data/*.cfg")+ glob.glob("DistUpgrade/*.ui") ), ('share/man/man8', glob.glob('data/*.8') ), ('../etc/update-manager/', # intentionally use old name ['data/release-upgrades', 'data/meta-release']), ], cmdclass = { "build" : build_extra.build_extra, "build_i18n" : build_i18n.build_i18n } )